[
  {
    "path": ".gitignore",
    "content": ".idea/\nML/Pytorch/more_advanced/image_captioning/flickr8k/\nML/algorithms/svm/__pycache__/utils.cpython-38.pyc\n__pycache__/\n*.pth.tar\n*.DS_STORE\nML/Pytorch/huggingface/train.csv\nML/Pytorch/huggingface/validation.csv\nML/Pytorch/huggingface/test.csv\nML/Pytorch/huggingface/tb_logs/\nML/Pytorch/huggingface/checkpoints/\nML/Pytorch/huggingface/notebooks/\n"
  },
  {
    "path": ".travis.yml",
    "content": "language: python\n\n# Default Python version\npython: 3.8\n\n# Install ruby to get gem command\nbefore_install:\n  - sudo apt-add-repository -y ppa:brightbox/ruby-ng\n  - sudo apt-get -y update\n  - sudo apt-get -y install ruby-full\n\ninstall:\n    - pip install torch\n    - pip install codecov==2.0.15\n    - pip install pytest-cov==2.7.1\n\n#before_install:\n#    - cd Algorithm_tests/sorting_tests\n# Install awesome_bot for README.md broken link checking\n\nbefore_script:\n  - gem install awesome_bot\n\nscript:\n     - awesome_bot README.md --allow-dupe --allow-redirect\n     #- flake8 --max-line-length=88\n     - pytest --cov=investpy ML_tests/\n     #- python ML_tests/LinearRegression_tests/LinearRegression_GD.py\n     #- python ML_tests/LinearRegression_tests/LinearRegression_normal.py\n\n#after_success:\n#  pass\n#- codecov\n"
  },
  {
    "path": "LICENSE.txt",
    "content": "MIT License\n\nCopyright (c) 2020 Aladdin Persson\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
  },
  {
    "path": "ML/Kaggles/DiabeticRetinopathy/config.py",
    "content": "import torch\nimport albumentations as A\nfrom albumentations.pytorch import ToTensorV2\n\nDEVICE = \"cuda\" if torch.cuda.is_available() else \"cpu\"\nLEARNING_RATE = 3e-5\nWEIGHT_DECAY = 5e-4\nBATCH_SIZE = 20\nNUM_EPOCHS = 100\nNUM_WORKERS = 6\nCHECKPOINT_FILE = \"b3.pth.tar\"\nPIN_MEMORY = True\nSAVE_MODEL = True\nLOAD_MODEL = True\n\n# Data augmentation for images\ntrain_transforms = A.Compose(\n    [\n        A.Resize(width=760, height=760),\n        A.RandomCrop(height=728, width=728),\n        A.HorizontalFlip(p=0.5),\n        A.VerticalFlip(p=0.5),\n        A.RandomRotate90(p=0.5),\n        A.Blur(p=0.3),\n        A.CLAHE(p=0.3),\n        A.ColorJitter(p=0.3),\n        A.CoarseDropout(max_holes=12, max_height=20, max_width=20, p=0.3),\n        A.IAAAffine(shear=30, rotate=0, p=0.2, mode=\"constant\"),\n        A.Normalize(\n            mean=[0.3199, 0.2240, 0.1609],\n            std=[0.3020, 0.2183, 0.1741],\n            max_pixel_value=255.0,\n        ),\n        ToTensorV2(),\n    ]\n)\n\nval_transforms = A.Compose(\n    [\n        A.Resize(height=728, width=728),\n        A.Normalize(\n            mean=[0.3199, 0.2240, 0.1609],\n            std=[0.3020, 0.2183, 0.1741],\n            max_pixel_value=255.0,\n        ),\n        ToTensorV2(),\n    ]\n)"
  },
  {
    "path": "ML/Kaggles/DiabeticRetinopathy/dataset.py",
    "content": "import config\nimport os\nimport pandas as pd\nimport numpy as np\nfrom torch.utils.data import Dataset, DataLoader\nfrom PIL import Image\nfrom tqdm import tqdm\n\n\nclass DRDataset(Dataset):\n    def __init__(self, images_folder, path_to_csv, train=True, transform=None):\n        super().__init__()\n        self.data = pd.read_csv(path_to_csv)\n        self.images_folder = images_folder\n        self.image_files = os.listdir(images_folder)\n        self.transform = transform\n        self.train = train\n\n    def __len__(self):\n        return self.data.shape[0] if self.train else len(self.image_files)\n\n    def __getitem__(self, index):\n        if self.train:\n            image_file, label = self.data.iloc[index]\n        else:\n            # if test simply return -1 for label, I do this in order to\n            # re-use same dataset class for test set submission later on\n            image_file, label = self.image_files[index], -1\n            image_file = image_file.replace(\".jpeg\", \"\")\n\n        image = np.array(Image.open(os.path.join(self.images_folder, image_file+\".jpeg\")))\n\n        if self.transform:\n            image = self.transform(image=image)[\"image\"]\n\n        return image, label, image_file\n\n\nif __name__ == \"__main__\":\n    \"\"\"\n    Test if everything works ok\n    \"\"\"\n    dataset = DRDataset(\n        images_folder=\"../train/images_resized_650/\",\n        path_to_csv=\"../train/trainLabels.csv\",\n        transform=config.val_transforms,\n    )\n    loader = DataLoader(\n        dataset=dataset, batch_size=32, num_workers=2, shuffle=True, pin_memory=True\n    )\n\n    for x, label, file in tqdm(loader):\n        print(x.shape)\n        print(label.shape)\n        import sys\n        sys.exit()"
  },
  {
    "path": "ML/Kaggles/DiabeticRetinopathy/preprocess_images.py",
    "content": "\"\"\"\nTries to remove unnecessary black borders around the images, and\n\"trim\" the images to they take up the entirety of the image.\nIt's hacky & not very nice but it works :))\n\"\"\"\n\nimport os\nimport numpy as np\nfrom PIL import Image\nimport warnings\nfrom multiprocessing import Pool\nfrom tqdm import tqdm\nimport cv2\n\n\ndef trim(im):\n    \"\"\"\n    Converts image to grayscale using cv2, then computes binary matrix\n    of the pixels that are above a certain threshold, then takes out\n    the first row where a certain percetage of the pixels are above the\n    threshold will be the first clip point. Same idea for col, max row, max col.\n    \"\"\"\n    percentage = 0.02\n\n    img = np.array(im)\n    img_gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)\n    im = img_gray > 0.1 * np.mean(img_gray[img_gray != 0])\n    row_sums = np.sum(im, axis=1)\n    col_sums = np.sum(im, axis=0)\n    rows = np.where(row_sums > img.shape[1] * percentage)[0]\n    cols = np.where(col_sums > img.shape[0] * percentage)[0]\n    min_row, min_col = np.min(rows), np.min(cols)\n    max_row, max_col = np.max(rows), np.max(cols)\n    im_crop = img[min_row : max_row + 1, min_col : max_col + 1]\n    return Image.fromarray(im_crop)\n\n\ndef resize_maintain_aspect(image, desired_size):\n    \"\"\"\n    Stole this from some stackoverflow post but can't remember which,\n    this will add padding to maintain the aspect ratio.\n    \"\"\"\n    old_size = image.size  # old_size[0] is in (width, height) format\n    ratio = float(desired_size) / max(old_size)\n    new_size = tuple([int(x * ratio) for x in old_size])\n    im = image.resize(new_size, Image.ANTIALIAS)\n    new_im = Image.new(\"RGB\", (desired_size, desired_size))\n    new_im.paste(im, ((desired_size - new_size[0]) // 2, (desired_size - new_size[1]) // 2))\n    return new_im\n\n\ndef save_single(args):\n    img_file, input_path_folder, output_path_folder, output_size = args\n    image_original = Image.open(os.path.join(input_path_folder, img_file))\n    image = trim(image_original)\n    image = resize_maintain_aspect(image, desired_size=output_size[0])\n    image.save(os.path.join(output_path_folder + img_file))\n\n\ndef fast_image_resize(input_path_folder, output_path_folder, output_size=None):\n    \"\"\"\n    Uses multiprocessing to make it fast\n    \"\"\"\n    if not output_size:\n        warnings.warn(\"Need to specify output_size! For example: output_size=100\")\n        exit()\n\n    if not os.path.exists(output_path_folder):\n        os.makedirs(output_path_folder)\n\n    jobs = [\n        (file, input_path_folder, output_path_folder, output_size)\n        for file in os.listdir(input_path_folder)\n    ]\n\n    with Pool() as p:\n        list(tqdm(p.imap_unordered(save_single, jobs), total=len(jobs)))\n\n\nif __name__ == \"__main__\":\n    fast_image_resize(\"../train/images/\", \"../train/images_resized_150/\", output_size=(150, 150))\n    fast_image_resize(\"../test/images/\", \"../test/images_resized_150/\", output_size=(150, 150))"
  },
  {
    "path": "ML/Kaggles/DiabeticRetinopathy/train.py",
    "content": "import torch\nfrom torch import nn, optim\nimport os\nimport config\nfrom torch.utils.data import DataLoader\nfrom tqdm import tqdm\nfrom sklearn.metrics import cohen_kappa_score\nfrom efficientnet_pytorch import EfficientNet\nfrom dataset import DRDataset\nfrom torchvision.utils import save_image\nfrom utils import (\n    load_checkpoint,\n    save_checkpoint,\n    check_accuracy,\n    make_prediction,\n    get_csv_for_blend,\n)\n\n\ndef train_one_epoch(loader, model, optimizer, loss_fn, scaler, device):\n    losses = []\n    loop = tqdm(loader)\n    for batch_idx, (data, targets, _) in enumerate(loop):\n        # save examples and make sure they look ok with the data augmentation,\n        # tip is to first set mean=[0,0,0], std=[1,1,1] so they look \"normal\"\n        #save_image(data, f\"hi_{batch_idx}.png\")\n\n        data = data.to(device=device)\n        targets = targets.to(device=device)\n\n        # forward\n        with torch.cuda.amp.autocast():\n            scores = model(data)\n            loss = loss_fn(scores, targets.unsqueeze(1).float())\n\n        losses.append(loss.item())\n\n        # backward\n        optimizer.zero_grad()\n        scaler.scale(loss).backward()\n        scaler.step(optimizer)\n        scaler.update()\n        loop.set_postfix(loss=loss.item())\n\n    print(f\"Loss average over epoch: {sum(losses)/len(losses)}\")\n\n\ndef main():\n    train_ds = DRDataset(\n        images_folder=\"train/images_preprocessed_1000/\",\n        path_to_csv=\"train/trainLabels.csv\",\n        transform=config.val_transforms,\n    )\n    val_ds = DRDataset(\n        images_folder=\"train/images_preprocessed_1000/\",\n        path_to_csv=\"train/valLabels.csv\",\n        transform=config.val_transforms,\n    )\n    test_ds = DRDataset(\n        images_folder=\"test/images_preprocessed_1000\",\n        path_to_csv=\"train/trainLabels.csv\",\n        transform=config.val_transforms,\n        train=False,\n    )\n    test_loader = DataLoader(\n        test_ds, batch_size=config.BATCH_SIZE, num_workers=6, shuffle=False\n    )\n    train_loader = DataLoader(\n        train_ds,\n        batch_size=config.BATCH_SIZE,\n        num_workers=config.NUM_WORKERS,\n        pin_memory=config.PIN_MEMORY,\n        shuffle=False,\n    )\n    val_loader = DataLoader(\n        val_ds,\n        batch_size=config.BATCH_SIZE,\n        num_workers=2,\n        pin_memory=config.PIN_MEMORY,\n        shuffle=False,\n    )\n    loss_fn = nn.MSELoss()\n\n    model = EfficientNet.from_pretrained(\"efficientnet-b3\")\n    model._fc = nn.Linear(1536, 1)\n    model = model.to(config.DEVICE)\n    optimizer = optim.Adam(model.parameters(), lr=config.LEARNING_RATE, weight_decay=config.WEIGHT_DECAY)\n    scaler = torch.cuda.amp.GradScaler()\n\n    if config.LOAD_MODEL and config.CHECKPOINT_FILE in os.listdir():\n        load_checkpoint(torch.load(config.CHECKPOINT_FILE), model, optimizer, config.LEARNING_RATE)\n\n    # Run after training is done and you've achieved good result\n    # on validation set, then run train_blend.py file to use information\n    # about both eyes concatenated\n    get_csv_for_blend(val_loader, model, \"../train/val_blend.csv\")\n    get_csv_for_blend(train_loader, model, \"../train/train_blend.csv\")\n    get_csv_for_blend(test_loader, model, \"../train/test_blend.csv\")\n    make_prediction(model, test_loader, \"submission_.csv\")\n    import sys\n    sys.exit()\n    #make_prediction(model, test_loader)\n\n    for epoch in range(config.NUM_EPOCHS):\n        train_one_epoch(train_loader, model, optimizer, loss_fn, scaler, config.DEVICE)\n\n        # get on validation\n        preds, labels = check_accuracy(val_loader, model, config.DEVICE)\n        print(f\"QuadraticWeightedKappa (Validation): {cohen_kappa_score(labels, preds, weights='quadratic')}\")\n\n        # get on train\n        #preds, labels = check_accuracy(train_loader, model, config.DEVICE)\n        #print(f\"QuadraticWeightedKappa (Training): {cohen_kappa_score(labels, preds, weights='quadratic')}\")\n\n        if config.SAVE_MODEL:\n            checkpoint = {\n                \"state_dict\": model.state_dict(),\n                \"optimizer\": optimizer.state_dict(),\n            }\n            save_checkpoint(checkpoint, filename=f\"b3_{epoch}.pth.tar\")\n\n\n\nif __name__ == \"__main__\":\n    main()\n"
  },
  {
    "path": "ML/Kaggles/DiabeticRetinopathy/train_blend.py",
    "content": "import torch\nfrom tqdm import tqdm\nimport numpy as np\nfrom torch import nn\nfrom torch import optim\nfrom torch.utils.data import DataLoader, Dataset\nfrom utils import save_checkpoint, load_checkpoint, check_accuracy\nfrom sklearn.metrics import cohen_kappa_score\nimport config\nimport os\nimport pandas as pd\n\n\ndef make_prediction(model, loader, file):\n    preds = []\n    filenames = []\n    model.eval()\n\n    for x, y, files in tqdm(loader):\n        x = x.to(config.DEVICE)\n        with torch.no_grad():\n            predictions = model(x)\n            # Convert MSE floats to integer predictions\n            predictions[predictions < 0.5] = 0\n            predictions[(predictions >= 0.5) & (predictions < 1.5)] = 1\n            predictions[(predictions >= 1.5) & (predictions < 2.5)] = 2\n            predictions[(predictions >= 2.5) & (predictions < 3.5)] = 3\n            predictions[(predictions >= 3.5) & (predictions < 1000000000000)] = 4\n            predictions = predictions.long().view(-1)\n            y = y.view(-1)\n\n            preds.append(predictions.cpu().numpy())\n            filenames += map(list, zip(files[0], files[1]))\n\n    filenames = [item for sublist in filenames for item in sublist]\n    df = pd.DataFrame({\"image\": filenames, \"level\": np.concatenate(preds, axis=0)})\n    df.to_csv(file, index=False)\n    model.train()\n    print(\"Done with predictions\")\n\n\nclass MyDataset(Dataset):\n    def __init__(self, csv_file):\n        self.csv = pd.read_csv(csv_file)\n\n    def __len__(self):\n        return self.csv.shape[0]\n\n    def __getitem__(self, index):\n        example = self.csv.iloc[index, :]\n        features = example.iloc[: example.shape[0] - 4].to_numpy().astype(np.float32)\n        labels = example.iloc[-4:-2].to_numpy().astype(np.int64)\n        filenames = example.iloc[-2:].values.tolist()\n        return features, labels, filenames\n\n\nclass MyModel(nn.Module):\n    def __init__(self):\n        super().__init__()\n        self.model = nn.Sequential(\n            nn.BatchNorm1d((1536 + 1) * 2),\n            nn.Linear((1536+1) * 2, 500),\n            nn.BatchNorm1d(500),\n            nn.ReLU(),\n            nn.Dropout(0.2),\n            nn.Linear(500, 100),\n            nn.BatchNorm1d(100),\n            nn.ReLU(),\n            nn.Dropout(0.2),\n            nn.Linear(100, 2),\n        )\n\n    def forward(self, x):\n        return self.model(x)\n\n\nif __name__ == \"__main__\":\n    model = MyModel().to(config.DEVICE)\n    ds = MyDataset(csv_file=\"train/train_blend.csv\")\n    loader = DataLoader(ds, batch_size=256, num_workers=3, pin_memory=True, shuffle=True)\n    ds_val = MyDataset(csv_file=\"train/val_blend.csv\")\n    loader_val = DataLoader(\n        ds_val, batch_size=256, num_workers=3, pin_memory=True, shuffle=True\n    )\n    ds_test = MyDataset(csv_file=\"train/test_blend.csv\")\n    loader_test = DataLoader(\n        ds_test, batch_size=256, num_workers=2, pin_memory=True, shuffle=False\n    )\n    optimizer = optim.Adam(model.parameters(), lr=1e-4, weight_decay=1e-5)\n    loss_fn = nn.MSELoss()\n\n    if config.LOAD_MODEL and \"linear.pth.tar\" in os.listdir():\n        load_checkpoint(torch.load(\"linear.pth.tar\"), model, optimizer, lr=1e-4)\n        model.train()\n\n    for _ in range(5):\n        losses = []\n        for x, y, files in tqdm(loader_val):\n            x = x.to(config.DEVICE).float()\n            y = y.to(config.DEVICE).view(-1).float()\n\n            # forward\n            scores = model(x).view(-1)\n            loss = loss_fn(scores, y)\n            losses.append(loss.item())\n\n            # backward\n            optimizer.zero_grad()\n            loss.backward()\n\n            # gradient descent or adam step\n            optimizer.step()\n\n        print(f\"Loss: {sum(losses)/len(losses)}\")\n\n    if config.SAVE_MODEL:\n        checkpoint = {\"state_dict\": model.state_dict(), \"optimizer\": optimizer.state_dict()}\n        save_checkpoint(checkpoint, filename=\"linear.pth.tar\")\n\n    preds, labels = check_accuracy(loader_val, model)\n    print(cohen_kappa_score(labels, preds, weights=\"quadratic\"))\n\n    preds, labels = check_accuracy(loader, model)\n    print(cohen_kappa_score(labels, preds, weights=\"quadratic\"))\n\n    make_prediction(model, loader_test, \"test_preds.csv\")\n"
  },
  {
    "path": "ML/Kaggles/DiabeticRetinopathy/utils.py",
    "content": "import torch\nimport pandas as pd\nimport numpy as np\nimport config\nfrom tqdm import tqdm\nimport warnings\nimport torch.nn.functional as F\n\n\ndef make_prediction(model, loader, output_csv=\"submission.csv\"):\n    preds = []\n    filenames = []\n    model.eval()\n\n    for x, y, files in tqdm(loader):\n        x = x.to(config.DEVICE)\n        with torch.no_grad():\n            predictions = model(x)\n            # Convert MSE floats to integer predictions\n            predictions[predictions < 0.5] = 0\n            predictions[(predictions >= 0.5) & (predictions < 1.5)] = 1\n            predictions[(predictions >= 1.5) & (predictions < 2.5)] = 2\n            predictions[(predictions >= 2.5) & (predictions < 3.5)] = 3\n            predictions[(predictions >= 3.5) & (predictions < 10000000)] = 4\n            predictions = predictions.long().squeeze(1)\n            preds.append(predictions.cpu().numpy())\n            filenames += files\n\n    df = pd.DataFrame({\"image\": filenames, \"level\": np.concatenate(preds, axis=0)})\n    df.to_csv(output_csv, index=False)\n    model.train()\n    print(\"Done with predictions\")\n\n\ndef check_accuracy(loader, model, device=\"cuda\"):\n    model.eval()\n    all_preds, all_labels = [], []\n    num_correct = 0\n    num_samples = 0\n\n    for x, y, filename in tqdm(loader):\n        x = x.to(device=device)\n        y = y.to(device=device)\n\n        with torch.no_grad():\n            predictions = model(x)\n\n        # Convert MSE floats to integer predictions\n        predictions[predictions < 0.5] = 0\n        predictions[(predictions >= 0.5) & (predictions < 1.5)] = 1\n        predictions[(predictions >= 1.5) & (predictions < 2.5)] = 2\n        predictions[(predictions >= 2.5) & (predictions < 3.5)] = 3\n        predictions[(predictions >= 3.5) & (predictions < 100)] = 4\n        predictions = predictions.long().view(-1)\n        y = y.view(-1)\n\n        num_correct += (predictions == y).sum()\n        num_samples += predictions.shape[0]\n\n        # add to lists\n        all_preds.append(predictions.detach().cpu().numpy())\n        all_labels.append(y.detach().cpu().numpy())\n\n    print(\n        f\"Got {num_correct} / {num_samples} with accuracy {float(num_correct) / float(num_samples) * 100:.2f}\"\n    )\n    model.train()\n    return np.concatenate(all_preds, axis=0, dtype=np.int64), np.concatenate(\n        all_labels, axis=0, dtype=np.int64\n    )\n\n\ndef save_checkpoint(state, filename=\"my_checkpoint.pth.tar\"):\n    print(\"=> Saving checkpoint\")\n    torch.save(state, filename)\n\n\ndef load_checkpoint(checkpoint, model, optimizer, lr):\n    print(\"=> Loading checkpoint\")\n    model.load_state_dict(checkpoint[\"state_dict\"])\n    #optimizer.load_state_dict(checkpoint[\"optimizer\"])\n\n    # If we don't do this then it will just have learning rate of old checkpoint\n    # and it will lead to many hours of debugging \\:\n    for param_group in optimizer.param_groups:\n        param_group[\"lr\"] = lr\n\n\ndef get_csv_for_blend(loader, model, output_csv_file):\n    warnings.warn(\"Important to have shuffle=False (and to ensure batch size is even size) when running get_csv_for_blend also set val_transforms to train_loader!\")\n    model.eval()\n    filename_first = []\n    filename_second = []\n    labels_first = []\n    labels_second = []\n    all_features = []\n\n    for idx, (images, y, image_files) in enumerate(tqdm(loader)):\n        images = images.to(config.DEVICE)\n\n        with torch.no_grad():\n            features = F.adaptive_avg_pool2d(\n                model.extract_features(images), output_size=1\n            )\n            features_logits = features.reshape(features.shape[0] // 2, 2, features.shape[1])\n            preds = model(images).reshape(images.shape[0] // 2, 2, 1)\n            new_features = (\n                torch.cat([features_logits, preds], dim=2)\n                .view(preds.shape[0], -1)\n                .cpu()\n                .numpy()\n            )\n            all_features.append(new_features)\n            filename_first += image_files[::2]\n            filename_second += image_files[1::2]\n            labels_first.append(y[::2].cpu().numpy())\n            labels_second.append(y[1::2].cpu().numpy())\n\n    all_features = np.concatenate(all_features, axis=0)\n    df = pd.DataFrame(\n        data=all_features, columns=[f\"f_{idx}\" for idx in range(all_features.shape[1])]\n    )\n    df[\"label_first\"] = np.concatenate(labels_first, axis=0)\n    df[\"label_second\"] = np.concatenate(labels_second, axis=0)\n    df[\"file_first\"] = filename_first\n    df[\"file_second\"] = filename_second\n    df.to_csv(output_csv_file, index=False)\n    model.train()\n"
  },
  {
    "path": "ML/Kaggles/Dog vs Cat Competition/Logistic Regression on EfficientNet Features.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"id\": \"51c78b68\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import sklearn\\n\",\n    \"import pandas as pd\\n\",\n    \"import numpy as np\\n\",\n    \"from sklearn.linear_model import LogisticRegression\\n\",\n    \"from sklearn.model_selection import train_test_split\\n\",\n    \"from sklearn.metrics import log_loss\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"id\": \"4421a043\",\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Training data shape: (25000, 2560), labels shape: (25000,)\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"LogisticRegression(max_iter=2000)\"\n      ]\n     },\n     \"execution_count\": 2,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"X = np.load(f'data_features/X_train_b7.npy')\\n\",\n    \"y = np.load(f'data_features/y_train_b7.npy')\\n\",\n    \"\\n\",\n    \"# Split data and train classifier\\n\",\n    \"print(f\\\"Training data shape: {X.shape}, labels shape: {y.shape}\\\")\\n\",\n    \"X_train, X_val, y_train, y_val = train_test_split(X, y, test_size=0.001, random_state=1337)\\n\",\n    \"clf = LogisticRegression(max_iter=2000)\\n\",\n    \"clf.fit(X_train, y_train)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"id\": \"d5cfc5b0\",\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"On validation set:\\n\",\n      \"Accuracy: 1.0\\n\",\n      \"LOG LOSS: 7.980845755748817e-05 \\n\",\n      \"%--------------------------------------------------%\\n\",\n      \"Getting predictions for test set\\n\",\n      \"Done getting predictions!\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# Check on validation\\n\",\n    \"val_preds= clf.predict_proba(X_val)[:,1]\\n\",\n    \"print(f\\\"On validation set:\\\")\\n\",\n    \"print(f\\\"Accuracy: {clf.score(X_val, y_val)}\\\")\\n\",\n    \"print(f\\\"LOG LOSS: {log_loss(y_val, val_preds)} \\\")\\n\",\n    \"print(\\\"%--------------------------------------------------%\\\")\\n\",\n    \"\\n\",\n    \"# Get predictions on test set\\n\",\n    \"print(\\\"Getting predictions for test set\\\")\\n\",\n    \"X_test = np.load(f'data_features/X_test_b7.npy')\\n\",\n    \"X_test_preds = clf.predict_proba(X_test)[:,1]\\n\",\n    \"df = pd.DataFrame({'id': np.arange(1, 12501), 'label': np.clip(X_test_preds, 0.005, 0.995)})\\n\",\n    \"df.to_csv(f\\\"submissions/mysubmission.csv\\\", index=False)\\n\",\n    \"print(\\\"Done getting predictions!\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"a9cce7af\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.9.2\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 5\n}\n"
  },
  {
    "path": "ML/Kaggles/Dog vs Cat Competition/competition.txt",
    "content": "https://www.kaggle.com/c/dogs-vs-cats-redux-kernels-edition"
  },
  {
    "path": "ML/Kaggles/Dog vs Cat Competition/config.py",
    "content": "import torch\nimport albumentations as A\nfrom albumentations.pytorch import ToTensorV2\n\nDEVICE = \"cuda\" if torch.cuda.is_available() else \"cpu\"\nNUM_WORKERS = 4\nBATCH_SIZE = 20\nPIN_MEMORY = True\nLOAD_MODEL = True\nSAVE_MODEL = True\nCHECKPOINT_FILE = \"b7.pth.tar\"\nWEIGHT_DECAY = 1e-4\nLEARNING_RATE = 1e-4\nNUM_EPOCHS = 1\n\nbasic_transform = A.Compose(\n    [\n        A.Resize(height=448, width=448),\n        A.Normalize(\n            mean=[0.485, 0.456, 0.406],\n            std=[0.229, 0.224, 0.225],\n            max_pixel_value=255.0,\n        ),\n        ToTensorV2(),\n    ]\n)\n"
  },
  {
    "path": "ML/Kaggles/Dog vs Cat Competition/dataset.py",
    "content": "import os\nimport re\nimport numpy as np\nfrom torch.utils.data import Dataset\nfrom PIL import Image\n\n\nclass CatDog(Dataset):\n    def __init__(self, root, transform=None):\n        self.images = os.listdir(root)\n        self.images.sort(key=lambda x: int(re.findall(r\"\\d+\", x)[0]))\n        self.root = root\n        self.transform = transform\n\n    def __len__(self):\n        return len(self.images)\n\n    def __getitem__(self, index):\n        file = self.images[index]\n        img = np.array(Image.open(os.path.join(self.root, file)))\n\n        if self.transform is not None:\n            img = self.transform(image=img)[\"image\"]\n\n        if \"dog\" in file:\n            label = 1\n        elif \"cat\" in file:\n            label = 0\n        else:\n            label = -1\n\n        return img, label\n"
  },
  {
    "path": "ML/Kaggles/Dog vs Cat Competition/submissions/mysubmission.csv",
    "content": "id,label\n1,0.995\n2,0.995\n3,0.995\n4,0.995\n5,0.005\n6,0.005\n7,0.005\n8,0.005\n9,0.005\n10,0.005\n11,0.005\n12,0.995\n13,0.005\n14,0.005\n15,0.005\n16,0.005\n17,0.995\n18,0.995\n19,0.005\n20,0.005\n21,0.995\n22,0.005\n23,0.995\n24,0.995\n25,0.005\n26,0.995\n27,0.995\n28,0.005\n29,0.005\n30,0.995\n31,0.995\n32,0.18221635005898879\n33,0.995\n34,0.005\n35,0.005\n36,0.005\n37,0.005\n38,0.005\n39,0.995\n40,0.005\n41,0.995\n42,0.995\n43,0.995\n44,0.995\n45,0.005\n46,0.995\n47,0.005\n48,0.995\n49,0.995\n50,0.005\n51,0.005\n52,0.005\n53,0.005\n54,0.005\n55,0.005\n56,0.995\n57,0.995\n58,0.005\n59,0.995\n60,0.005\n61,0.005\n62,0.995\n63,0.005\n64,0.005\n65,0.995\n66,0.995\n67,0.995\n68,0.005\n69,0.995\n70,0.995\n71,0.995\n72,0.995\n73,0.995\n74,0.995\n75,0.005\n76,0.995\n77,0.995\n78,0.995\n79,0.995\n80,0.005\n81,0.005\n82,0.005\n83,0.995\n84,0.005\n85,0.995\n86,0.995\n87,0.995\n88,0.995\n89,0.005\n90,0.005\n91,0.005\n92,0.005\n93,0.005\n94,0.995\n95,0.995\n96,0.005\n97,0.995\n98,0.995\n99,0.005\n100,0.005\n101,0.005\n102,0.995\n103,0.005\n104,0.005\n105,0.995\n106,0.995\n107,0.005\n108,0.005\n109,0.995\n110,0.995\n111,0.995\n112,0.995\n113,0.995\n114,0.005\n115,0.005\n116,0.005\n117,0.005\n118,0.995\n119,0.995\n120,0.005\n121,0.005\n122,0.005\n123,0.005\n124,0.005\n125,0.005\n126,0.5248467736436261\n127,0.995\n128,0.005\n129,0.005\n130,0.995\n131,0.995\n132,0.995\n133,0.005\n134,0.005\n135,0.005\n136,0.005\n137,0.995\n138,0.995\n139,0.005\n140,0.005\n141,0.005\n142,0.995\n143,0.995\n144,0.005\n145,0.005\n146,0.995\n147,0.995\n148,0.005\n149,0.005\n150,0.005\n151,0.9948533284334635\n152,0.005\n153,0.005\n154,0.005\n155,0.995\n156,0.005\n157,0.005\n158,0.995\n159,0.995\n160,0.995\n161,0.005\n162,0.005\n163,0.005\n164,0.995\n165,0.005\n166,0.005\n167,0.995\n168,0.005\n169,0.005\n170,0.005\n171,0.005\n172,0.995\n173,0.995\n174,0.005\n175,0.995\n176,0.995\n177,0.995\n178,0.995\n179,0.995\n180,0.005\n181,0.995\n182,0.995\n183,0.005\n184,0.005\n185,0.005\n186,0.005\n187,0.005\n188,0.005\n189,0.005\n190,0.995\n191,0.005\n192,0.005\n193,0.005\n194,0.005\n195,0.995\n196,0.995\n197,0.995\n198,0.005\n199,0.995\n200,0.995\n201,0.995\n202,0.005\n203,0.995\n204,0.995\n205,0.005\n206,0.005\n207,0.995\n208,0.005\n209,0.005\n210,0.005\n211,0.995\n212,0.995\n213,0.005\n214,0.995\n215,0.995\n216,0.995\n217,0.995\n218,0.005\n219,0.995\n220,0.995\n221,0.005\n222,0.995\n223,0.995\n224,0.005\n225,0.995\n226,0.995\n227,0.995\n228,0.005\n229,0.995\n230,0.005\n231,0.995\n232,0.34579716800066884\n233,0.005\n234,0.005\n235,0.995\n236,0.995\n237,0.005\n238,0.995\n239,0.005\n240,0.995\n241,0.995\n242,0.995\n243,0.005\n244,0.995\n245,0.995\n246,0.005\n247,0.995\n248,0.005\n249,0.005\n250,0.995\n251,0.995\n252,0.005\n253,0.995\n254,0.005\n255,0.005\n256,0.005\n257,0.995\n258,0.995\n259,0.005\n260,0.005\n261,0.005\n262,0.995\n263,0.005\n264,0.005\n265,0.995\n266,0.005\n267,0.005\n268,0.005\n269,0.995\n270,0.995\n271,0.995\n272,0.005\n273,0.995\n274,0.005\n275,0.005\n276,0.995\n277,0.995\n278,0.005\n279,0.005\n280,0.995\n281,0.995\n282,0.995\n283,0.005\n284,0.995\n285,0.005\n286,0.995\n287,0.005\n288,0.005\n289,0.995\n290,0.005\n291,0.005\n292,0.995\n293,0.995\n294,0.005\n295,0.005\n296,0.995\n297,0.995\n298,0.995\n299,0.995\n300,0.005\n301,0.005\n302,0.005\n303,0.005\n304,0.005\n305,0.005\n306,0.995\n307,0.995\n308,0.005\n309,0.005\n310,0.005\n311,0.005\n312,0.005\n313,0.005\n314,0.005\n315,0.995\n316,0.005\n317,0.995\n318,0.005\n319,0.995\n320,0.005\n321,0.005\n322,0.995\n323,0.005\n324,0.005\n325,0.995\n326,0.995\n327,0.995\n328,0.995\n329,0.005\n330,0.005\n331,0.9929228999162175\n332,0.995\n333,0.995\n334,0.005\n335,0.005\n336,0.005\n337,0.995\n338,0.005\n339,0.005\n340,0.005\n341,0.005\n342,0.005\n343,0.005\n344,0.7839474435360367\n345,0.005\n346,0.995\n347,0.005\n348,0.995\n349,0.005\n350,0.995\n351,0.005\n352,0.995\n353,0.995\n354,0.995\n355,0.995\n356,0.995\n357,0.005\n358,0.995\n359,0.005\n360,0.005\n361,0.995\n362,0.005\n363,0.995\n364,0.005\n365,0.995\n366,0.995\n367,0.995\n368,0.995\n369,0.995\n370,0.995\n371,0.995\n372,0.005\n373,0.995\n374,0.005\n375,0.995\n376,0.005\n377,0.995\n378,0.005\n379,0.995\n380,0.995\n381,0.995\n382,0.005\n383,0.995\n384,0.995\n385,0.995\n386,0.005\n387,0.005\n388,0.005\n389,0.995\n390,0.005\n391,0.005\n392,0.995\n393,0.005\n394,0.995\n395,0.995\n396,0.005\n397,0.995\n398,0.005\n399,0.995\n400,0.995\n401,0.995\n402,0.005\n403,0.995\n404,0.005\n405,0.995\n406,0.995\n407,0.005\n408,0.005\n409,0.005\n410,0.005\n411,0.995\n412,0.995\n413,0.995\n414,0.005\n415,0.995\n416,0.005\n417,0.995\n418,0.995\n419,0.24474946751776444\n420,0.995\n421,0.995\n422,0.995\n423,0.995\n424,0.995\n425,0.995\n426,0.005\n427,0.995\n428,0.005\n429,0.995\n430,0.995\n431,0.995\n432,0.005\n433,0.995\n434,0.995\n435,0.995\n436,0.005\n437,0.005\n438,0.995\n439,0.995\n440,0.995\n441,0.005\n442,0.005\n443,0.995\n444,0.005\n445,0.005\n446,0.995\n447,0.005\n448,0.005\n449,0.005\n450,0.995\n451,0.005\n452,0.995\n453,0.995\n454,0.005\n455,0.005\n456,0.005\n457,0.995\n458,0.005\n459,0.995\n460,0.39925779402742784\n461,0.005\n462,0.005\n463,0.995\n464,0.005\n465,0.005\n466,0.995\n467,0.995\n468,0.005\n469,0.995\n470,0.995\n471,0.005\n472,0.995\n473,0.995\n474,0.995\n475,0.995\n476,0.005\n477,0.005\n478,0.005\n479,0.995\n480,0.995\n481,0.995\n482,0.995\n483,0.995\n484,0.005\n485,0.995\n486,0.995\n487,0.005\n488,0.005\n489,0.9800932722749708\n490,0.995\n491,0.995\n492,0.005\n493,0.005\n494,0.005\n495,0.995\n496,0.995\n497,0.005\n498,0.995\n499,0.995\n500,0.005\n501,0.995\n502,0.005\n503,0.995\n504,0.005\n505,0.005\n506,0.005\n507,0.995\n508,0.995\n509,0.995\n510,0.995\n511,0.995\n512,0.005\n513,0.995\n514,0.005\n515,0.995\n516,0.995\n517,0.995\n518,0.995\n519,0.005\n520,0.005\n521,0.995\n522,0.005\n523,0.995\n524,0.005\n525,0.005\n526,0.005\n527,0.995\n528,0.995\n529,0.005\n530,0.005\n531,0.995\n532,0.005\n533,0.005\n534,0.995\n535,0.005\n536,0.995\n537,0.005\n538,0.005\n539,0.005\n540,0.995\n541,0.005\n542,0.995\n543,0.005\n544,0.005\n545,0.995\n546,0.005\n547,0.995\n548,0.995\n549,0.005\n550,0.005\n551,0.005\n552,0.995\n553,0.005\n554,0.005\n555,0.995\n556,0.005\n557,0.9911263787668233\n558,0.995\n559,0.995\n560,0.995\n561,0.005\n562,0.005\n563,0.005\n564,0.005\n565,0.995\n566,0.005\n567,0.005\n568,0.995\n569,0.995\n570,0.005\n571,0.5480245226385945\n572,0.005\n573,0.005\n574,0.995\n575,0.005\n576,0.005\n577,0.005\n578,0.005\n579,0.005\n580,0.005\n581,0.995\n582,0.995\n583,0.005\n584,0.005\n585,0.995\n586,0.005\n587,0.005\n588,0.005\n589,0.005\n590,0.995\n591,0.995\n592,0.005\n593,0.995\n594,0.995\n595,0.995\n596,0.005\n597,0.995\n598,0.005\n599,0.005\n600,0.005\n601,0.995\n602,0.005\n603,0.005\n604,0.005\n605,0.005\n606,0.005\n607,0.995\n608,0.995\n609,0.005\n610,0.995\n611,0.005\n612,0.995\n613,0.005\n614,0.005\n615,0.005\n616,0.995\n617,0.995\n618,0.005\n619,0.005\n620,0.995\n621,0.005\n622,0.005\n623,0.005\n624,0.005\n625,0.005\n626,0.995\n627,0.005\n628,0.005\n629,0.995\n630,0.995\n631,0.995\n632,0.995\n633,0.995\n634,0.005\n635,0.005\n636,0.995\n637,0.995\n638,0.005\n639,0.005\n640,0.005\n641,0.995\n642,0.005\n643,0.995\n644,0.995\n645,0.005\n646,0.005\n647,0.005\n648,0.005\n649,0.005\n650,0.995\n651,0.995\n652,0.995\n653,0.005\n654,0.995\n655,0.995\n656,0.995\n657,0.995\n658,0.995\n659,0.005\n660,0.005\n661,0.995\n662,0.005\n663,0.005\n664,0.005\n665,0.005\n666,0.005\n667,0.995\n668,0.995\n669,0.995\n670,0.995\n671,0.005\n672,0.005\n673,0.005\n674,0.005\n675,0.06312682285418512\n676,0.995\n677,0.005\n678,0.005\n679,0.995\n680,0.005\n681,0.995\n682,0.005\n683,0.005\n684,0.995\n685,0.995\n686,0.995\n687,0.995\n688,0.995\n689,0.005\n690,0.005\n691,0.995\n692,0.005\n693,0.995\n694,0.995\n695,0.995\n696,0.005\n697,0.005\n698,0.005\n699,0.005\n700,0.995\n701,0.005\n702,0.005\n703,0.005\n704,0.005\n705,0.995\n706,0.995\n707,0.995\n708,0.995\n709,0.995\n710,0.995\n711,0.005\n712,0.995\n713,0.995\n714,0.005\n715,0.995\n716,0.6265033603293371\n717,0.005\n718,0.995\n719,0.995\n720,0.005\n721,0.005\n722,0.005\n723,0.995\n724,0.995\n725,0.995\n726,0.005\n727,0.995\n728,0.005\n729,0.005\n730,0.995\n731,0.995\n732,0.995\n733,0.005\n734,0.005\n735,0.995\n736,0.995\n737,0.005\n738,0.995\n739,0.995\n740,0.005\n741,0.005\n742,0.995\n743,0.995\n744,0.995\n745,0.995\n746,0.995\n747,0.995\n748,0.005\n749,0.005\n750,0.995\n751,0.005\n752,0.995\n753,0.005\n754,0.005\n755,0.005\n756,0.005\n757,0.995\n758,0.005\n759,0.005\n760,0.995\n761,0.995\n762,0.005\n763,0.995\n764,0.005\n765,0.995\n766,0.995\n767,0.995\n768,0.995\n769,0.995\n770,0.995\n771,0.005\n772,0.005\n773,0.995\n774,0.005\n775,0.005\n776,0.005\n777,0.995\n778,0.005\n779,0.995\n780,0.995\n781,0.995\n782,0.005\n783,0.995\n784,0.995\n785,0.005\n786,0.995\n787,0.005\n788,0.005\n789,0.995\n790,0.995\n791,0.995\n792,0.995\n793,0.995\n794,0.995\n795,0.005\n796,0.8293147100723289\n797,0.995\n798,0.995\n799,0.005\n800,0.995\n801,0.005\n802,0.005\n803,0.005\n804,0.005\n805,0.995\n806,0.995\n807,0.995\n808,0.995\n809,0.995\n810,0.995\n811,0.005\n812,0.995\n813,0.014538264773442425\n814,0.995\n815,0.995\n816,0.995\n817,0.005\n818,0.995\n819,0.995\n820,0.005\n821,0.995\n822,0.005\n823,0.995\n824,0.005\n825,0.005\n826,0.995\n827,0.005\n828,0.995\n829,0.995\n830,0.005\n831,0.005\n832,0.995\n833,0.995\n834,0.995\n835,0.995\n836,0.005\n837,0.995\n838,0.005\n839,0.995\n840,0.005\n841,0.005\n842,0.995\n843,0.005\n844,0.995\n845,0.995\n846,0.995\n847,0.005\n848,0.995\n849,0.005\n850,0.005\n851,0.995\n852,0.005\n853,0.995\n854,0.995\n855,0.005\n856,0.005\n857,0.995\n858,0.995\n859,0.005\n860,0.005\n861,0.995\n862,0.995\n863,0.995\n864,0.995\n865,0.995\n866,0.995\n867,0.005\n868,0.005\n869,0.005\n870,0.995\n871,0.995\n872,0.005\n873,0.995\n874,0.995\n875,0.005\n876,0.995\n877,0.005\n878,0.995\n879,0.995\n880,0.005\n881,0.005\n882,0.995\n883,0.995\n884,0.995\n885,0.995\n886,0.005\n887,0.995\n888,0.005\n889,0.005\n890,0.995\n891,0.995\n892,0.995\n893,0.995\n894,0.005\n895,0.005\n896,0.005\n897,0.005\n898,0.005\n899,0.995\n900,0.995\n901,0.995\n902,0.005\n903,0.995\n904,0.995\n905,0.005\n906,0.005\n907,0.995\n908,0.995\n909,0.005\n910,0.005\n911,0.005\n912,0.995\n913,0.995\n914,0.005\n915,0.9927381801356517\n916,0.995\n917,0.005\n918,0.995\n919,0.005\n920,0.005\n921,0.005\n922,0.995\n923,0.995\n924,0.005\n925,0.005\n926,0.005\n927,0.005\n928,0.005\n929,0.005\n930,0.995\n931,0.005\n932,0.005\n933,0.005\n934,0.995\n935,0.995\n936,0.005\n937,0.005\n938,0.005\n939,0.995\n940,0.995\n941,0.005\n942,0.005\n943,0.005\n944,0.995\n945,0.995\n946,0.995\n947,0.005\n948,0.005\n949,0.995\n950,0.995\n951,0.005\n952,0.005\n953,0.995\n954,0.005\n955,0.995\n956,0.995\n957,0.995\n958,0.995\n959,0.005\n960,0.995\n961,0.005\n962,0.995\n963,0.995\n964,0.005\n965,0.005\n966,0.995\n967,0.005\n968,0.995\n969,0.995\n970,0.995\n971,0.995\n972,0.995\n973,0.005\n974,0.995\n975,0.005\n976,0.005\n977,0.005\n978,0.005\n979,0.995\n980,0.995\n981,0.995\n982,0.995\n983,0.995\n984,0.995\n985,0.005\n986,0.005\n987,0.005\n988,0.005\n989,0.995\n990,0.005\n991,0.005\n992,0.995\n993,0.995\n994,0.005\n995,0.9785203892168225\n996,0.005\n997,0.995\n998,0.995\n999,0.005\n1000,0.995\n1001,0.005\n1002,0.995\n1003,0.995\n1004,0.995\n1005,0.005\n1006,0.995\n1007,0.995\n1008,0.005\n1009,0.995\n1010,0.995\n1011,0.005\n1012,0.995\n1013,0.005\n1014,0.995\n1015,0.005\n1016,0.005\n1017,0.005\n1018,0.995\n1019,0.995\n1020,0.005\n1021,0.005\n1022,0.005\n1023,0.005\n1024,0.005\n1025,0.005\n1026,0.005\n1027,0.005\n1028,0.005\n1029,0.005\n1030,0.005\n1031,0.005\n1032,0.995\n1033,0.995\n1034,0.995\n1035,0.005\n1036,0.995\n1037,0.995\n1038,0.995\n1039,0.005\n1040,0.995\n1041,0.005\n1042,0.9844604993191723\n1043,0.005\n1044,0.995\n1045,0.005\n1046,0.005\n1047,0.005\n1048,0.995\n1049,0.005\n1050,0.005\n1051,0.005\n1052,0.995\n1053,0.995\n1054,0.995\n1055,0.9425295582512726\n1056,0.995\n1057,0.995\n1058,0.995\n1059,0.995\n1060,0.005\n1061,0.005\n1062,0.005\n1063,0.005\n1064,0.005\n1065,0.005\n1066,0.995\n1067,0.995\n1068,0.995\n1069,0.005\n1070,0.995\n1071,0.005\n1072,0.995\n1073,0.005\n1074,0.995\n1075,0.995\n1076,0.005\n1077,0.995\n1078,0.005\n1079,0.995\n1080,0.995\n1081,0.995\n1082,0.995\n1083,0.995\n1084,0.005\n1085,0.005\n1086,0.995\n1087,0.995\n1088,0.005\n1089,0.995\n1090,0.005\n1091,0.995\n1092,0.005\n1093,0.995\n1094,0.995\n1095,0.995\n1096,0.995\n1097,0.005\n1098,0.005\n1099,0.005\n1100,0.995\n1101,0.995\n1102,0.005\n1103,0.005\n1104,0.005\n1105,0.9892456687137728\n1106,0.995\n1107,0.005\n1108,0.995\n1109,0.005\n1110,0.005\n1111,0.005\n1112,0.005\n1113,0.005\n1114,0.995\n1115,0.995\n1116,0.995\n1117,0.005\n1118,0.005\n1119,0.005\n1120,0.005\n1121,0.995\n1122,0.995\n1123,0.005\n1124,0.005\n1125,0.005\n1126,0.005\n1127,0.005\n1128,0.005\n1129,0.995\n1130,0.995\n1131,0.995\n1132,0.005\n1133,0.005\n1134,0.005\n1135,0.005\n1136,0.995\n1137,0.005\n1138,0.005\n1139,0.005\n1140,0.005\n1141,0.005\n1142,0.005\n1143,0.005\n1144,0.995\n1145,0.995\n1146,0.995\n1147,0.995\n1148,0.005\n1149,0.995\n1150,0.005\n1151,0.995\n1152,0.005\n1153,0.005\n1154,0.995\n1155,0.995\n1156,0.005\n1157,0.995\n1158,0.995\n1159,0.005\n1160,0.005\n1161,0.005\n1162,0.005\n1163,0.005\n1164,0.005\n1165,0.995\n1166,0.995\n1167,0.995\n1168,0.005\n1169,0.9872078825911499\n1170,0.995\n1171,0.005\n1172,0.995\n1173,0.995\n1174,0.995\n1175,0.995\n1176,0.005\n1177,0.005\n1178,0.005\n1179,0.995\n1180,0.995\n1181,0.005\n1182,0.995\n1183,0.995\n1184,0.995\n1185,0.005\n1186,0.995\n1187,0.005\n1188,0.995\n1189,0.005\n1190,0.005\n1191,0.995\n1192,0.005\n1193,0.005\n1194,0.005\n1195,0.995\n1196,0.005\n1197,0.995\n1198,0.005\n1199,0.005\n1200,0.995\n1201,0.995\n1202,0.005\n1203,0.995\n1204,0.005\n1205,0.995\n1206,0.005\n1207,0.995\n1208,0.005\n1209,0.005\n1210,0.995\n1211,0.995\n1212,0.005\n1213,0.005\n1214,0.995\n1215,0.995\n1216,0.995\n1217,0.995\n1218,0.005\n1219,0.995\n1220,0.005\n1221,0.005\n1222,0.995\n1223,0.995\n1224,0.995\n1225,0.005\n1226,0.005\n1227,0.995\n1228,0.005\n1229,0.005\n1230,0.005\n1231,0.005\n1232,0.995\n1233,0.005\n1234,0.005\n1235,0.995\n1236,0.995\n1237,0.995\n1238,0.995\n1239,0.005\n1240,0.005\n1241,0.995\n1242,0.995\n1243,0.005\n1244,0.005\n1245,0.995\n1246,0.005\n1247,0.005\n1248,0.995\n1249,0.005\n1250,0.995\n1251,0.005\n1252,0.005\n1253,0.995\n1254,0.005\n1255,0.005\n1256,0.005\n1257,0.995\n1258,0.005\n1259,0.005\n1260,0.005\n1261,0.995\n1262,0.005\n1263,0.005\n1264,0.005\n1265,0.005\n1266,0.005\n1267,0.6675948331651598\n1268,0.005\n1269,0.995\n1270,0.005\n1271,0.995\n1272,0.995\n1273,0.995\n1274,0.005\n1275,0.995\n1276,0.995\n1277,0.005\n1278,0.005\n1279,0.995\n1280,0.995\n1281,0.005\n1282,0.005\n1283,0.995\n1284,0.995\n1285,0.005\n1286,0.995\n1287,0.005\n1288,0.005\n1289,0.995\n1290,0.995\n1291,0.005\n1292,0.005\n1293,0.005\n1294,0.995\n1295,0.005\n1296,0.005\n1297,0.005\n1298,0.005\n1299,0.005\n1300,0.005\n1301,0.995\n1302,0.005\n1303,0.005\n1304,0.995\n1305,0.995\n1306,0.995\n1307,0.005\n1308,0.995\n1309,0.005\n1310,0.005\n1311,0.005\n1312,0.995\n1313,0.005\n1314,0.995\n1315,0.995\n1316,0.005\n1317,0.995\n1318,0.995\n1319,0.995\n1320,0.005\n1321,0.005\n1322,0.005\n1323,0.005\n1324,0.005\n1325,0.005\n1326,0.005\n1327,0.995\n1328,0.995\n1329,0.995\n1330,0.005\n1331,0.005\n1332,0.995\n1333,0.995\n1334,0.995\n1335,0.005\n1336,0.005\n1337,0.005\n1338,0.005\n1339,0.005\n1340,0.995\n1341,0.005\n1342,0.995\n1343,0.995\n1344,0.005\n1345,0.005\n1346,0.005\n1347,0.005\n1348,0.005\n1349,0.005\n1350,0.995\n1351,0.995\n1352,0.005\n1353,0.995\n1354,0.005\n1355,0.005\n1356,0.995\n1357,0.005\n1358,0.995\n1359,0.005\n1360,0.995\n1361,0.005\n1362,0.005\n1363,0.005\n1364,0.005\n1365,0.005\n1366,0.995\n1367,0.995\n1368,0.005\n1369,0.995\n1370,0.005\n1371,0.005\n1372,0.995\n1373,0.995\n1374,0.005\n1375,0.005\n1376,0.995\n1377,0.995\n1378,0.995\n1379,0.005\n1380,0.005\n1381,0.995\n1382,0.995\n1383,0.005\n1384,0.995\n1385,0.995\n1386,0.995\n1387,0.995\n1388,0.005\n1389,0.995\n1390,0.005\n1391,0.005\n1392,0.005\n1393,0.995\n1394,0.005\n1395,0.995\n1396,0.005\n1397,0.005\n1398,0.005\n1399,0.995\n1400,0.995\n1401,0.995\n1402,0.995\n1403,0.005\n1404,0.005\n1405,0.995\n1406,0.005\n1407,0.005\n1408,0.005\n1409,0.995\n1410,0.005\n1411,0.995\n1412,0.005\n1413,0.995\n1414,0.995\n1415,0.005\n1416,0.005\n1417,0.005\n1418,0.005\n1419,0.005\n1420,0.995\n1421,0.995\n1422,0.005\n1423,0.005\n1424,0.995\n1425,0.005\n1426,0.005\n1427,0.995\n1428,0.995\n1429,0.995\n1430,0.995\n1431,0.995\n1432,0.995\n1433,0.995\n1434,0.995\n1435,0.995\n1436,0.995\n1437,0.995\n1438,0.005\n1439,0.005\n1440,0.005\n1441,0.005\n1442,0.995\n1443,0.995\n1444,0.995\n1445,0.995\n1446,0.005\n1447,0.005\n1448,0.005\n1449,0.995\n1450,0.005\n1451,0.005\n1452,0.995\n1453,0.005\n1454,0.005\n1455,0.005\n1456,0.005\n1457,0.995\n1458,0.995\n1459,0.005\n1460,0.995\n1461,0.005\n1462,0.005\n1463,0.005\n1464,0.005\n1465,0.005\n1466,0.005\n1467,0.005\n1468,0.995\n1469,0.995\n1470,0.995\n1471,0.995\n1472,0.005\n1473,0.005\n1474,0.005\n1475,0.005\n1476,0.995\n1477,0.995\n1478,0.005\n1479,0.995\n1480,0.005\n1481,0.995\n1482,0.995\n1483,0.995\n1484,0.005\n1485,0.005\n1486,0.995\n1487,0.005\n1488,0.005\n1489,0.005\n1490,0.995\n1491,0.005\n1492,0.005\n1493,0.995\n1494,0.005\n1495,0.995\n1496,0.995\n1497,0.995\n1498,0.995\n1499,0.005\n1500,0.005\n1501,0.995\n1502,0.005\n1503,0.005\n1504,0.005\n1505,0.005\n1506,0.995\n1507,0.005\n1508,0.995\n1509,0.995\n1510,0.005\n1511,0.005\n1512,0.995\n1513,0.005\n1514,0.005\n1515,0.005\n1516,0.995\n1517,0.005\n1518,0.005\n1519,0.995\n1520,0.005\n1521,0.995\n1522,0.005\n1523,0.005\n1524,0.005\n1525,0.995\n1526,0.995\n1527,0.005\n1528,0.005\n1529,0.995\n1530,0.995\n1531,0.995\n1532,0.005\n1533,0.005\n1534,0.005\n1535,0.005\n1536,0.995\n1537,0.995\n1538,0.995\n1539,0.005\n1540,0.005\n1541,0.995\n1542,0.995\n1543,0.8690804888464156\n1544,0.995\n1545,0.005\n1546,0.995\n1547,0.995\n1548,0.005\n1549,0.995\n1550,0.005\n1551,0.005\n1552,0.005\n1553,0.995\n1554,0.995\n1555,0.005\n1556,0.005\n1557,0.995\n1558,0.005\n1559,0.005\n1560,0.005\n1561,0.005\n1562,0.995\n1563,0.995\n1564,0.995\n1565,0.005\n1566,0.005\n1567,0.005\n1568,0.995\n1569,0.995\n1570,0.005\n1571,0.995\n1572,0.995\n1573,0.995\n1574,0.995\n1575,0.995\n1576,0.995\n1577,0.995\n1578,0.005\n1579,0.005\n1580,0.995\n1581,0.995\n1582,0.005\n1583,0.995\n1584,0.005\n1585,0.005\n1586,0.005\n1587,0.005\n1588,0.005\n1589,0.005\n1590,0.995\n1591,0.995\n1592,0.005\n1593,0.995\n1594,0.995\n1595,0.005\n1596,0.995\n1597,0.005\n1598,0.005\n1599,0.995\n1600,0.995\n1601,0.005\n1602,0.995\n1603,0.005\n1604,0.005\n1605,0.08150191598139908\n1606,0.005\n1607,0.005\n1608,0.005\n1609,0.995\n1610,0.995\n1611,0.005\n1612,0.995\n1613,0.005\n1614,0.005\n1615,0.005\n1616,0.005\n1617,0.995\n1618,0.005\n1619,0.995\n1620,0.995\n1621,0.005\n1622,0.005\n1623,0.005\n1624,0.005\n1625,0.995\n1626,0.005\n1627,0.005\n1628,0.995\n1629,0.995\n1630,0.995\n1631,0.005\n1632,0.995\n1633,0.995\n1634,0.995\n1635,0.995\n1636,0.005\n1637,0.995\n1638,0.995\n1639,0.995\n1640,0.995\n1641,0.005\n1642,0.995\n1643,0.995\n1644,0.995\n1645,0.995\n1646,0.005\n1647,0.995\n1648,0.005\n1649,0.005\n1650,0.995\n1651,0.005\n1652,0.995\n1653,0.995\n1654,0.995\n1655,0.995\n1656,0.005\n1657,0.005\n1658,0.995\n1659,0.995\n1660,0.005\n1661,0.005\n1662,0.995\n1663,0.005\n1664,0.005\n1665,0.005\n1666,0.005\n1667,0.995\n1668,0.005\n1669,0.995\n1670,0.005\n1671,0.995\n1672,0.995\n1673,0.006377814802847755\n1674,0.005\n1675,0.005\n1676,0.995\n1677,0.995\n1678,0.995\n1679,0.005\n1680,0.005\n1681,0.005\n1682,0.995\n1683,0.005\n1684,0.995\n1685,0.995\n1686,0.995\n1687,0.995\n1688,0.995\n1689,0.005\n1690,0.995\n1691,0.995\n1692,0.995\n1693,0.995\n1694,0.005\n1695,0.005\n1696,0.995\n1697,0.005\n1698,0.005\n1699,0.995\n1700,0.005\n1701,0.995\n1702,0.995\n1703,0.995\n1704,0.995\n1705,0.995\n1706,0.995\n1707,0.005\n1708,0.995\n1709,0.005\n1710,0.005\n1711,0.995\n1712,0.005\n1713,0.005\n1714,0.995\n1715,0.005\n1716,0.995\n1717,0.995\n1718,0.005\n1719,0.995\n1720,0.995\n1721,0.005\n1722,0.995\n1723,0.005\n1724,0.005\n1725,0.995\n1726,0.995\n1727,0.995\n1728,0.995\n1729,0.005\n1730,0.995\n1731,0.005\n1732,0.995\n1733,0.995\n1734,0.005\n1735,0.005\n1736,0.005\n1737,0.995\n1738,0.005\n1739,0.995\n1740,0.005\n1741,0.005\n1742,0.995\n1743,0.995\n1744,0.995\n1745,0.005\n1746,0.995\n1747,0.005\n1748,0.005\n1749,0.005\n1750,0.005\n1751,0.995\n1752,0.005\n1753,0.995\n1754,0.005\n1755,0.995\n1756,0.005\n1757,0.005\n1758,0.995\n1759,0.995\n1760,0.005\n1761,0.995\n1762,0.995\n1763,0.005\n1764,0.995\n1765,0.005\n1766,0.995\n1767,0.995\n1768,0.995\n1769,0.995\n1770,0.005\n1771,0.005\n1772,0.005\n1773,0.995\n1774,0.005\n1775,0.005\n1776,0.995\n1777,0.005\n1778,0.005\n1779,0.005\n1780,0.005\n1781,0.995\n1782,0.995\n1783,0.005\n1784,0.005\n1785,0.005\n1786,0.995\n1787,0.995\n1788,0.995\n1789,0.995\n1790,0.005\n1791,0.995\n1792,0.005\n1793,0.005\n1794,0.995\n1795,0.005\n1796,0.005\n1797,0.995\n1798,0.005\n1799,0.005\n1800,0.995\n1801,0.995\n1802,0.005\n1803,0.995\n1804,0.005\n1805,0.005\n1806,0.005\n1807,0.995\n1808,0.005\n1809,0.995\n1810,0.0624426990892308\n1811,0.995\n1812,0.005\n1813,0.995\n1814,0.995\n1815,0.005\n1816,0.995\n1817,0.995\n1818,0.005\n1819,0.995\n1820,0.005\n1821,0.995\n1822,0.005\n1823,0.005\n1824,0.005\n1825,0.995\n1826,0.005\n1827,0.005\n1828,0.995\n1829,0.995\n1830,0.005\n1831,0.995\n1832,0.995\n1833,0.005\n1834,0.005\n1835,0.005\n1836,0.005\n1837,0.995\n1838,0.995\n1839,0.005\n1840,0.995\n1841,0.995\n1842,0.995\n1843,0.005\n1844,0.005\n1845,0.995\n1846,0.995\n1847,0.005\n1848,0.995\n1849,0.995\n1850,0.995\n1851,0.995\n1852,0.005\n1853,0.995\n1854,0.005\n1855,0.995\n1856,0.995\n1857,0.005\n1858,0.005\n1859,0.995\n1860,0.995\n1861,0.005\n1862,0.005\n1863,0.995\n1864,0.005\n1865,0.995\n1866,0.995\n1867,0.005\n1868,0.005\n1869,0.005\n1870,0.005\n1871,0.995\n1872,0.995\n1873,0.995\n1874,0.995\n1875,0.005\n1876,0.995\n1877,0.995\n1878,0.995\n1879,0.005\n1880,0.005\n1881,0.995\n1882,0.995\n1883,0.005\n1884,0.995\n1885,0.005\n1886,0.995\n1887,0.005\n1888,0.995\n1889,0.005\n1890,0.005\n1891,0.995\n1892,0.995\n1893,0.005\n1894,0.005\n1895,0.995\n1896,0.005\n1897,0.005\n1898,0.005\n1899,0.005\n1900,0.005\n1901,0.005\n1902,0.995\n1903,0.995\n1904,0.995\n1905,0.995\n1906,0.995\n1907,0.005\n1908,0.995\n1909,0.995\n1910,0.995\n1911,0.995\n1912,0.995\n1913,0.005\n1914,0.995\n1915,0.995\n1916,0.995\n1917,0.995\n1918,0.005\n1919,0.995\n1920,0.005\n1921,0.005\n1922,0.995\n1923,0.005\n1924,0.005\n1925,0.995\n1926,0.005\n1927,0.005\n1928,0.995\n1929,0.005\n1930,0.995\n1931,0.005\n1932,0.995\n1933,0.8763393252138965\n1934,0.005\n1935,0.005\n1936,0.005\n1937,0.995\n1938,0.995\n1939,0.995\n1940,0.995\n1941,0.995\n1942,0.005\n1943,0.005\n1944,0.005\n1945,0.005\n1946,0.005\n1947,0.995\n1948,0.995\n1949,0.995\n1950,0.995\n1951,0.005\n1952,0.005\n1953,0.005\n1954,0.995\n1955,0.005\n1956,0.995\n1957,0.005\n1958,0.005\n1959,0.005\n1960,0.005\n1961,0.005\n1962,0.995\n1963,0.005\n1964,0.005\n1965,0.005\n1966,0.995\n1967,0.005\n1968,0.995\n1969,0.005\n1970,0.9918023215287618\n1971,0.005\n1972,0.995\n1973,0.005\n1974,0.005\n1975,0.005\n1976,0.005\n1977,0.995\n1978,0.005\n1979,0.995\n1980,0.995\n1981,0.995\n1982,0.005\n1983,0.995\n1984,0.995\n1985,0.005\n1986,0.995\n1987,0.995\n1988,0.005\n1989,0.995\n1990,0.995\n1991,0.995\n1992,0.005\n1993,0.005\n1994,0.995\n1995,0.005\n1996,0.995\n1997,0.995\n1998,0.995\n1999,0.005\n2000,0.995\n2001,0.995\n2002,0.995\n2003,0.005\n2004,0.995\n2005,0.995\n2006,0.005\n2007,0.995\n2008,0.995\n2009,0.995\n2010,0.995\n2011,0.995\n2012,0.005\n2013,0.005\n2014,0.005\n2015,0.995\n2016,0.005\n2017,0.005\n2018,0.005\n2019,0.005\n2020,0.005\n2021,0.005\n2022,0.005\n2023,0.005\n2024,0.005\n2025,0.005\n2026,0.005\n2027,0.005\n2028,0.005\n2029,0.005\n2030,0.005\n2031,0.005\n2032,0.005\n2033,0.995\n2034,0.005\n2035,0.995\n2036,0.005\n2037,0.005\n2038,0.995\n2039,0.005\n2040,0.995\n2041,0.995\n2042,0.995\n2043,0.005\n2044,0.005\n2045,0.995\n2046,0.995\n2047,0.005\n2048,0.005\n2049,0.005\n2050,0.995\n2051,0.005\n2052,0.995\n2053,0.005\n2054,0.995\n2055,0.995\n2056,0.995\n2057,0.995\n2058,0.005\n2059,0.995\n2060,0.995\n2061,0.995\n2062,0.995\n2063,0.9810758333540842\n2064,0.995\n2065,0.995\n2066,0.005\n2067,0.995\n2068,0.005\n2069,0.995\n2070,0.995\n2071,0.995\n2072,0.005\n2073,0.005\n2074,0.005\n2075,0.005\n2076,0.005\n2077,0.995\n2078,0.995\n2079,0.005\n2080,0.995\n2081,0.995\n2082,0.969603364324444\n2083,0.995\n2084,0.995\n2085,0.7997923395216863\n2086,0.995\n2087,0.005\n2088,0.005\n2089,0.005\n2090,0.005\n2091,0.995\n2092,0.995\n2093,0.005\n2094,0.005\n2095,0.995\n2096,0.005\n2097,0.005\n2098,0.995\n2099,0.995\n2100,0.005\n2101,0.995\n2102,0.995\n2103,0.995\n2104,0.995\n2105,0.005\n2106,0.005\n2107,0.995\n2108,0.005\n2109,0.995\n2110,0.995\n2111,0.995\n2112,0.005\n2113,0.005\n2114,0.995\n2115,0.005\n2116,0.005\n2117,0.995\n2118,0.005\n2119,0.995\n2120,0.995\n2121,0.995\n2122,0.995\n2123,0.995\n2124,0.995\n2125,0.995\n2126,0.995\n2127,0.005\n2128,0.005\n2129,0.995\n2130,0.005\n2131,0.005\n2132,0.005\n2133,0.005\n2134,0.995\n2135,0.995\n2136,0.995\n2137,0.005\n2138,0.94874283995581\n2139,0.005\n2140,0.9376301236964648\n2141,0.005\n2142,0.005\n2143,0.995\n2144,0.005\n2145,0.995\n2146,0.995\n2147,0.005\n2148,0.005\n2149,0.005\n2150,0.005\n2151,0.005\n2152,0.005\n2153,0.005\n2154,0.995\n2155,0.995\n2156,0.005\n2157,0.995\n2158,0.995\n2159,0.995\n2160,0.995\n2161,0.005\n2162,0.005\n2163,0.995\n2164,0.005\n2165,0.005\n2166,0.005\n2167,0.005\n2168,0.005\n2169,0.005\n2170,0.005\n2171,0.995\n2172,0.005\n2173,0.995\n2174,0.995\n2175,0.995\n2176,0.995\n2177,0.995\n2178,0.995\n2179,0.995\n2180,0.995\n2181,0.005\n2182,0.995\n2183,0.005\n2184,0.995\n2185,0.995\n2186,0.995\n2187,0.005\n2188,0.005\n2189,0.995\n2190,0.005\n2191,0.005\n2192,0.995\n2193,0.995\n2194,0.995\n2195,0.005\n2196,0.995\n2197,0.995\n2198,0.995\n2199,0.995\n2200,0.005\n2201,0.9819629611924691\n2202,0.995\n2203,0.005\n2204,0.995\n2205,0.005\n2206,0.005\n2207,0.005\n2208,0.005\n2209,0.995\n2210,0.995\n2211,0.995\n2212,0.995\n2213,0.005\n2214,0.995\n2215,0.995\n2216,0.995\n2217,0.995\n2218,0.005\n2219,0.005\n2220,0.995\n2221,0.995\n2222,0.995\n2223,0.995\n2224,0.005\n2225,0.005\n2226,0.995\n2227,0.005\n2228,0.995\n2229,0.995\n2230,0.995\n2231,0.005\n2232,0.995\n2233,0.005\n2234,0.995\n2235,0.005\n2236,0.005\n2237,0.005\n2238,0.995\n2239,0.005\n2240,0.995\n2241,0.995\n2242,0.005\n2243,0.005\n2244,0.995\n2245,0.005\n2246,0.995\n2247,0.005\n2248,0.005\n2249,0.6719719205016158\n2250,0.995\n2251,0.005\n2252,0.005\n2253,0.995\n2254,0.995\n2255,0.995\n2256,0.005\n2257,0.005\n2258,0.995\n2259,0.995\n2260,0.995\n2261,0.995\n2262,0.005\n2263,0.995\n2264,0.005\n2265,0.005\n2266,0.005\n2267,0.995\n2268,0.005\n2269,0.005\n2270,0.005\n2271,0.995\n2272,0.995\n2273,0.005\n2274,0.005\n2275,0.995\n2276,0.995\n2277,0.005\n2278,0.005\n2279,0.005\n2280,0.995\n2281,0.995\n2282,0.005\n2283,0.005\n2284,0.995\n2285,0.995\n2286,0.995\n2287,0.005\n2288,0.005\n2289,0.005\n2290,0.005\n2291,0.995\n2292,0.005\n2293,0.005\n2294,0.995\n2295,0.995\n2296,0.005\n2297,0.995\n2298,0.005\n2299,0.005\n2300,0.995\n2301,0.995\n2302,0.005\n2303,0.005\n2304,0.995\n2305,0.995\n2306,0.995\n2307,0.005\n2308,0.995\n2309,0.005\n2310,0.995\n2311,0.995\n2312,0.005\n2313,0.995\n2314,0.005\n2315,0.5177539953076993\n2316,0.995\n2317,0.005\n2318,0.005\n2319,0.995\n2320,0.995\n2321,0.005\n2322,0.995\n2323,0.005\n2324,0.995\n2325,0.995\n2326,0.005\n2327,0.995\n2328,0.005\n2329,0.005\n2330,0.005\n2331,0.005\n2332,0.005\n2333,0.995\n2334,0.995\n2335,0.005\n2336,0.995\n2337,0.005\n2338,0.005\n2339,0.995\n2340,0.995\n2341,0.005\n2342,0.995\n2343,0.005\n2344,0.005\n2345,0.995\n2346,0.005\n2347,0.007796911806229361\n2348,0.005\n2349,0.005\n2350,0.995\n2351,0.995\n2352,0.005\n2353,0.005\n2354,0.005\n2355,0.995\n2356,0.005\n2357,0.995\n2358,0.995\n2359,0.995\n2360,0.005\n2361,0.005\n2362,0.995\n2363,0.005\n2364,0.005\n2365,0.995\n2366,0.995\n2367,0.005\n2368,0.995\n2369,0.005\n2370,0.005\n2371,0.005\n2372,0.995\n2373,0.995\n2374,0.995\n2375,0.005\n2376,0.995\n2377,0.005\n2378,0.995\n2379,0.005\n2380,0.005\n2381,0.995\n2382,0.005\n2383,0.995\n2384,0.995\n2385,0.995\n2386,0.995\n2387,0.005\n2388,0.995\n2389,0.995\n2390,0.005\n2391,0.995\n2392,0.005\n2393,0.995\n2394,0.005\n2395,0.005\n2396,0.005\n2397,0.005\n2398,0.995\n2399,0.005\n2400,0.995\n2401,0.005\n2402,0.995\n2403,0.995\n2404,0.995\n2405,0.005\n2406,0.995\n2407,0.005\n2408,0.005\n2409,0.995\n2410,0.005\n2411,0.005\n2412,0.995\n2413,0.005\n2414,0.005\n2415,0.005\n2416,0.995\n2417,0.005\n2418,0.005\n2419,0.005\n2420,0.5591277022941006\n2421,0.005\n2422,0.995\n2423,0.005\n2424,0.005\n2425,0.005\n2426,0.005\n2427,0.005\n2428,0.995\n2429,0.005\n2430,0.995\n2431,0.995\n2432,0.995\n2433,0.995\n2434,0.005\n2435,0.005\n2436,0.005\n2437,0.995\n2438,0.995\n2439,0.005\n2440,0.005\n2441,0.005\n2442,0.995\n2443,0.005\n2444,0.995\n2445,0.995\n2446,0.005\n2447,0.995\n2448,0.995\n2449,0.005\n2450,0.995\n2451,0.995\n2452,0.995\n2453,0.005\n2454,0.005\n2455,0.005\n2456,0.995\n2457,0.995\n2458,0.005\n2459,0.995\n2460,0.005\n2461,0.005\n2462,0.995\n2463,0.005\n2464,0.995\n2465,0.995\n2466,0.995\n2467,0.995\n2468,0.995\n2469,0.995\n2470,0.995\n2471,0.995\n2472,0.995\n2473,0.005\n2474,0.995\n2475,0.005\n2476,0.995\n2477,0.005\n2478,0.995\n2479,0.005\n2480,0.005\n2481,0.995\n2482,0.995\n2483,0.995\n2484,0.995\n2485,0.005\n2486,0.005\n2487,0.995\n2488,0.005\n2489,0.995\n2490,0.995\n2491,0.995\n2492,0.005\n2493,0.005\n2494,0.995\n2495,0.005\n2496,0.005\n2497,0.005\n2498,0.995\n2499,0.005\n2500,0.005\n2501,0.005\n2502,0.005\n2503,0.005\n2504,0.995\n2505,0.995\n2506,0.995\n2507,0.995\n2508,0.005\n2509,0.995\n2510,0.995\n2511,0.995\n2512,0.005\n2513,0.005\n2514,0.995\n2515,0.995\n2516,0.005\n2517,0.005\n2518,0.995\n2519,0.005\n2520,0.995\n2521,0.995\n2522,0.005\n2523,0.995\n2524,0.005\n2525,0.995\n2526,0.005\n2527,0.995\n2528,0.005\n2529,0.995\n2530,0.005\n2531,0.005\n2532,0.995\n2533,0.995\n2534,0.005\n2535,0.005\n2536,0.005\n2537,0.995\n2538,0.005\n2539,0.995\n2540,0.005\n2541,0.995\n2542,0.005\n2543,0.995\n2544,0.995\n2545,0.005\n2546,0.995\n2547,0.995\n2548,0.005\n2549,0.005\n2550,0.005\n2551,0.005\n2552,0.995\n2553,0.005\n2554,0.005\n2555,0.995\n2556,0.995\n2557,0.005\n2558,0.005\n2559,0.995\n2560,0.995\n2561,0.995\n2562,0.995\n2563,0.005\n2564,0.005\n2565,0.005\n2566,0.995\n2567,0.005\n2568,0.995\n2569,0.995\n2570,0.995\n2571,0.005\n2572,0.005\n2573,0.995\n2574,0.005\n2575,0.995\n2576,0.005\n2577,0.995\n2578,0.005\n2579,0.995\n2580,0.005\n2581,0.995\n2582,0.995\n2583,0.995\n2584,0.005\n2585,0.005\n2586,0.005\n2587,0.005\n2588,0.005\n2589,0.995\n2590,0.995\n2591,0.005\n2592,0.005\n2593,0.005\n2594,0.995\n2595,0.005\n2596,0.005\n2597,0.005\n2598,0.995\n2599,0.995\n2600,0.995\n2601,0.995\n2602,0.995\n2603,0.005\n2604,0.005\n2605,0.995\n2606,0.995\n2607,0.005\n2608,0.005\n2609,0.995\n2610,0.005\n2611,0.005\n2612,0.995\n2613,0.995\n2614,0.995\n2615,0.005\n2616,0.995\n2617,0.995\n2618,0.005\n2619,0.005\n2620,0.005\n2621,0.005\n2622,0.005\n2623,0.005\n2624,0.995\n2625,0.005\n2626,0.995\n2627,0.995\n2628,0.995\n2629,0.995\n2630,0.005\n2631,0.005\n2632,0.005\n2633,0.005\n2634,0.995\n2635,0.995\n2636,0.6874593372490406\n2637,0.005\n2638,0.995\n2639,0.005\n2640,0.005\n2641,0.995\n2642,0.995\n2643,0.995\n2644,0.995\n2645,0.995\n2646,0.005\n2647,0.005\n2648,0.995\n2649,0.005\n2650,0.005\n2651,0.995\n2652,0.005\n2653,0.005\n2654,0.995\n2655,0.005\n2656,0.995\n2657,0.009724631827940368\n2658,0.005\n2659,0.995\n2660,0.005\n2661,0.995\n2662,0.006391201153376998\n2663,0.995\n2664,0.995\n2665,0.005\n2666,0.005\n2667,0.005\n2668,0.005\n2669,0.005\n2670,0.005\n2671,0.995\n2672,0.005\n2673,0.995\n2674,0.005\n2675,0.005\n2676,0.005\n2677,0.992383501509485\n2678,0.995\n2679,0.995\n2680,0.995\n2681,0.005\n2682,0.995\n2683,0.995\n2684,0.995\n2685,0.005\n2686,0.005\n2687,0.005\n2688,0.005\n2689,0.995\n2690,0.005\n2691,0.995\n2692,0.995\n2693,0.005\n2694,0.005\n2695,0.995\n2696,0.005\n2697,0.995\n2698,0.005\n2699,0.005\n2700,0.995\n2701,0.005\n2702,0.995\n2703,0.005\n2704,0.995\n2705,0.005\n2706,0.010872983996598438\n2707,0.005\n2708,0.005\n2709,0.995\n2710,0.995\n2711,0.005\n2712,0.995\n2713,0.005\n2714,0.995\n2715,0.005\n2716,0.995\n2717,0.995\n2718,0.995\n2719,0.995\n2720,0.995\n2721,0.995\n2722,0.995\n2723,0.005\n2724,0.995\n2725,0.005\n2726,0.005\n2727,0.995\n2728,0.005\n2729,0.005\n2730,0.995\n2731,0.005\n2732,0.995\n2733,0.005\n2734,0.005\n2735,0.005\n2736,0.005\n2737,0.9946640782059891\n2738,0.995\n2739,0.995\n2740,0.995\n2741,0.005\n2742,0.005\n2743,0.995\n2744,0.995\n2745,0.995\n2746,0.005\n2747,0.005\n2748,0.995\n2749,0.005\n2750,0.005\n2751,0.995\n2752,0.995\n2753,0.005\n2754,0.005\n2755,0.995\n2756,0.995\n2757,0.995\n2758,0.005\n2759,0.995\n2760,0.005\n2761,0.995\n2762,0.005\n2763,0.995\n2764,0.005\n2765,0.005\n2766,0.995\n2767,0.995\n2768,0.995\n2769,0.005\n2770,0.995\n2771,0.995\n2772,0.995\n2773,0.005\n2774,0.995\n2775,0.995\n2776,0.995\n2777,0.995\n2778,0.995\n2779,0.005\n2780,0.005\n2781,0.005\n2782,0.005\n2783,0.005\n2784,0.005\n2785,0.005\n2786,0.995\n2787,0.995\n2788,0.995\n2789,0.995\n2790,0.005\n2791,0.995\n2792,0.995\n2793,0.005\n2794,0.005\n2795,0.995\n2796,0.995\n2797,0.005\n2798,0.995\n2799,0.005\n2800,0.995\n2801,0.995\n2802,0.995\n2803,0.005\n2804,0.995\n2805,0.005\n2806,0.995\n2807,0.005\n2808,0.005\n2809,0.005\n2810,0.005\n2811,0.005\n2812,0.005\n2813,0.995\n2814,0.005\n2815,0.005\n2816,0.005\n2817,0.005\n2818,0.005\n2819,0.005\n2820,0.995\n2821,0.005\n2822,0.995\n2823,0.005\n2824,0.995\n2825,0.005\n2826,0.995\n2827,0.995\n2828,0.005\n2829,0.9918228687309537\n2830,0.995\n2831,0.005\n2832,0.995\n2833,0.995\n2834,0.995\n2835,0.995\n2836,0.005\n2837,0.005\n2838,0.005\n2839,0.005\n2840,0.005\n2841,0.005\n2842,0.995\n2843,0.995\n2844,0.995\n2845,0.995\n2846,0.995\n2847,0.995\n2848,0.005\n2849,0.005\n2850,0.005\n2851,0.005\n2852,0.005\n2853,0.005\n2854,0.005\n2855,0.995\n2856,0.995\n2857,0.005\n2858,0.005\n2859,0.005\n2860,0.995\n2861,0.995\n2862,0.995\n2863,0.005\n2864,0.995\n2865,0.005\n2866,0.005\n2867,0.995\n2868,0.995\n2869,0.005\n2870,0.995\n2871,0.995\n2872,0.005\n2873,0.005\n2874,0.005\n2875,0.995\n2876,0.995\n2877,0.995\n2878,0.995\n2879,0.995\n2880,0.005\n2881,0.995\n2882,0.995\n2883,0.005\n2884,0.995\n2885,0.995\n2886,0.005\n2887,0.005\n2888,0.005\n2889,0.995\n2890,0.005\n2891,0.995\n2892,0.995\n2893,0.005\n2894,0.995\n2895,0.995\n2896,0.005\n2897,0.005\n2898,0.005\n2899,0.995\n2900,0.995\n2901,0.005\n2902,0.005\n2903,0.005\n2904,0.995\n2905,0.995\n2906,0.005\n2907,0.995\n2908,0.005\n2909,0.005\n2910,0.995\n2911,0.995\n2912,0.995\n2913,0.995\n2914,0.005\n2915,0.005\n2916,0.995\n2917,0.005\n2918,0.005\n2919,0.995\n2920,0.005\n2921,0.005\n2922,0.005\n2923,0.995\n2924,0.995\n2925,0.995\n2926,0.995\n2927,0.995\n2928,0.995\n2929,0.005\n2930,0.005\n2931,0.995\n2932,0.005\n2933,0.005\n2934,0.005\n2935,0.005\n2936,0.995\n2937,0.005\n2938,0.005\n2939,0.995\n2940,0.995\n2941,0.005\n2942,0.005\n2943,0.005\n2944,0.005\n2945,0.995\n2946,0.995\n2947,0.005\n2948,0.995\n2949,0.995\n2950,0.995\n2951,0.995\n2952,0.995\n2953,0.005\n2954,0.005\n2955,0.005\n2956,0.995\n2957,0.005\n2958,0.995\n2959,0.005\n2960,0.006070552380557826\n2961,0.995\n2962,0.005\n2963,0.005\n2964,0.995\n2965,0.005\n2966,0.005\n2967,0.005\n2968,0.005\n2969,0.2894713372419518\n2970,0.005\n2971,0.995\n2972,0.995\n2973,0.005\n2974,0.995\n2975,0.995\n2976,0.005\n2977,0.005\n2978,0.005\n2979,0.005\n2980,0.005\n2981,0.995\n2982,0.995\n2983,0.005\n2984,0.995\n2985,0.005\n2986,0.005\n2987,0.005\n2988,0.995\n2989,0.005\n2990,0.995\n2991,0.005\n2992,0.995\n2993,0.005\n2994,0.005\n2995,0.005\n2996,0.995\n2997,0.005\n2998,0.995\n2999,0.005\n3000,0.995\n3001,0.995\n3002,0.995\n3003,0.005\n3004,0.005\n3005,0.005\n3006,0.995\n3007,0.995\n3008,0.005\n3009,0.995\n3010,0.005\n3011,0.995\n3012,0.005\n3013,0.005\n3014,0.005\n3015,0.9918207406636521\n3016,0.995\n3017,0.005\n3018,0.995\n3019,0.995\n3020,0.995\n3021,0.995\n3022,0.005\n3023,0.005\n3024,0.995\n3025,0.005\n3026,0.005\n3027,0.005\n3028,0.995\n3029,0.995\n3030,0.005\n3031,0.005\n3032,0.995\n3033,0.005\n3034,0.005\n3035,0.005\n3036,0.005\n3037,0.995\n3038,0.995\n3039,0.995\n3040,0.005\n3041,0.995\n3042,0.005\n3043,0.995\n3044,0.995\n3045,0.995\n3046,0.005\n3047,0.005\n3048,0.005\n3049,0.005\n3050,0.995\n3051,0.995\n3052,0.995\n3053,0.005\n3054,0.005\n3055,0.005\n3056,0.005\n3057,0.995\n3058,0.005\n3059,0.995\n3060,0.995\n3061,0.995\n3062,0.995\n3063,0.005\n3064,0.995\n3065,0.995\n3066,0.995\n3067,0.005\n3068,0.995\n3069,0.995\n3070,0.995\n3071,0.005\n3072,0.995\n3073,0.995\n3074,0.995\n3075,0.995\n3076,0.995\n3077,0.005\n3078,0.995\n3079,0.005\n3080,0.005\n3081,0.005\n3082,0.995\n3083,0.995\n3084,0.005\n3085,0.995\n3086,0.995\n3087,0.005\n3088,0.005\n3089,0.995\n3090,0.005\n3091,0.005\n3092,0.995\n3093,0.005\n3094,0.995\n3095,0.995\n3096,0.995\n3097,0.005\n3098,0.005\n3099,0.995\n3100,0.005\n3101,0.995\n3102,0.995\n3103,0.995\n3104,0.005\n3105,0.995\n3106,0.005\n3107,0.005\n3108,0.005\n3109,0.9944607933363434\n3110,0.995\n3111,0.005\n3112,0.995\n3113,0.005\n3114,0.995\n3115,0.995\n3116,0.995\n3117,0.995\n3118,0.005\n3119,0.995\n3120,0.995\n3121,0.005\n3122,0.005\n3123,0.005\n3124,0.995\n3125,0.995\n3126,0.005\n3127,0.005\n3128,0.995\n3129,0.995\n3130,0.005\n3131,0.005\n3132,0.005\n3133,0.995\n3134,0.995\n3135,0.005\n3136,0.995\n3137,0.995\n3138,0.995\n3139,0.995\n3140,0.043190460205609994\n3141,0.995\n3142,0.005\n3143,0.995\n3144,0.005\n3145,0.995\n3146,0.005\n3147,0.995\n3148,0.995\n3149,0.995\n3150,0.995\n3151,0.995\n3152,0.995\n3153,0.005\n3154,0.005\n3155,0.995\n3156,0.995\n3157,0.995\n3158,0.005\n3159,0.995\n3160,0.995\n3161,0.005\n3162,0.995\n3163,0.005\n3164,0.005\n3165,0.005\n3166,0.995\n3167,0.005\n3168,0.005\n3169,0.005\n3170,0.995\n3171,0.005\n3172,0.005\n3173,0.005\n3174,0.005\n3175,0.005\n3176,0.995\n3177,0.005\n3178,0.995\n3179,0.005\n3180,0.005\n3181,0.995\n3182,0.995\n3183,0.005\n3184,0.995\n3185,0.005\n3186,0.005\n3187,0.995\n3188,0.005\n3189,0.995\n3190,0.005\n3191,0.005\n3192,0.995\n3193,0.005\n3194,0.005\n3195,0.995\n3196,0.995\n3197,0.005\n3198,0.995\n3199,0.005\n3200,0.995\n3201,0.995\n3202,0.005\n3203,0.995\n3204,0.995\n3205,0.005\n3206,0.995\n3207,0.005\n3208,0.005\n3209,0.995\n3210,0.8587070050433988\n3211,0.005\n3212,0.995\n3213,0.005\n3214,0.005\n3215,0.995\n3216,0.995\n3217,0.995\n3218,0.005\n3219,0.005\n3220,0.005\n3221,0.005\n3222,0.995\n3223,0.995\n3224,0.995\n3225,0.005\n3226,0.995\n3227,0.005\n3228,0.005\n3229,0.995\n3230,0.005\n3231,0.005\n3232,0.005\n3233,0.005\n3234,0.005\n3235,0.995\n3236,0.005\n3237,0.995\n3238,0.995\n3239,0.995\n3240,0.995\n3241,0.995\n3242,0.005\n3243,0.995\n3244,0.995\n3245,0.995\n3246,0.005\n3247,0.995\n3248,0.995\n3249,0.005\n3250,0.005\n3251,0.005\n3252,0.995\n3253,0.995\n3254,0.995\n3255,0.005\n3256,0.005\n3257,0.005\n3258,0.995\n3259,0.005\n3260,0.995\n3261,0.995\n3262,0.995\n3263,0.005\n3264,0.7277512671775834\n3265,0.005\n3266,0.005\n3267,0.005\n3268,0.005\n3269,0.995\n3270,0.005\n3271,0.005\n3272,0.995\n3273,0.995\n3274,0.995\n3275,0.005\n3276,0.005\n3277,0.995\n3278,0.005\n3279,0.995\n3280,0.005\n3281,0.005\n3282,0.005\n3283,0.005\n3284,0.995\n3285,0.005\n3286,0.005\n3287,0.995\n3288,0.995\n3289,0.005\n3290,0.005\n3291,0.995\n3292,0.995\n3293,0.995\n3294,0.995\n3295,0.005\n3296,0.005\n3297,0.005\n3298,0.995\n3299,0.005\n3300,0.005\n3301,0.995\n3302,0.995\n3303,0.995\n3304,0.995\n3305,0.005\n3306,0.005\n3307,0.005\n3308,0.995\n3309,0.995\n3310,0.995\n3311,0.005\n3312,0.995\n3313,0.005\n3314,0.995\n3315,0.995\n3316,0.005\n3317,0.995\n3318,0.005\n3319,0.005\n3320,0.005\n3321,0.995\n3322,0.005\n3323,0.995\n3324,0.005\n3325,0.995\n3326,0.005\n3327,0.995\n3328,0.995\n3329,0.995\n3330,0.005\n3331,0.995\n3332,0.005\n3333,0.005\n3334,0.995\n3335,0.005\n3336,0.995\n3337,0.995\n3338,0.995\n3339,0.995\n3340,0.995\n3341,0.005\n3342,0.005\n3343,0.005\n3344,0.995\n3345,0.995\n3346,0.995\n3347,0.005\n3348,0.005\n3349,0.005\n3350,0.005\n3351,0.995\n3352,0.005\n3353,0.005\n3354,0.995\n3355,0.995\n3356,0.995\n3357,0.995\n3358,0.995\n3359,0.995\n3360,0.005\n3361,0.995\n3362,0.995\n3363,0.995\n3364,0.995\n3365,0.769258351301846\n3366,0.995\n3367,0.995\n3368,0.005\n3369,0.005\n3370,0.005\n3371,0.005\n3372,0.995\n3373,0.9881737438804997\n3374,0.995\n3375,0.995\n3376,0.005\n3377,0.005\n3378,0.995\n3379,0.005\n3380,0.995\n3381,0.005\n3382,0.005\n3383,0.995\n3384,0.995\n3385,0.995\n3386,0.005\n3387,0.005\n3388,0.005\n3389,0.005\n3390,0.005\n3391,0.995\n3392,0.005\n3393,0.005\n3394,0.005\n3395,0.995\n3396,0.995\n3397,0.005\n3398,0.005\n3399,0.995\n3400,0.995\n3401,0.995\n3402,0.005\n3403,0.005\n3404,0.005\n3405,0.005\n3406,0.005\n3407,0.995\n3408,0.995\n3409,0.995\n3410,0.995\n3411,0.005\n3412,0.995\n3413,0.995\n3414,0.995\n3415,0.005\n3416,0.995\n3417,0.995\n3418,0.005\n3419,0.995\n3420,0.995\n3421,0.995\n3422,0.995\n3423,0.005\n3424,0.995\n3425,0.995\n3426,0.995\n3427,0.995\n3428,0.005\n3429,0.005\n3430,0.995\n3431,0.005\n3432,0.995\n3433,0.995\n3434,0.995\n3435,0.995\n3436,0.995\n3437,0.995\n3438,0.005\n3439,0.005\n3440,0.005\n3441,0.995\n3442,0.995\n3443,0.005\n3444,0.005\n3445,0.995\n3446,0.995\n3447,0.005\n3448,0.005\n3449,0.005\n3450,0.005\n3451,0.005\n3452,0.995\n3453,0.005\n3454,0.995\n3455,0.995\n3456,0.005\n3457,0.005\n3458,0.005\n3459,0.995\n3460,0.005\n3461,0.005\n3462,0.005\n3463,0.005\n3464,0.995\n3465,0.005\n3466,0.005\n3467,0.995\n3468,0.995\n3469,0.995\n3470,0.995\n3471,0.995\n3472,0.005\n3473,0.005\n3474,0.005\n3475,0.005\n3476,0.005\n3477,0.005\n3478,0.995\n3479,0.995\n3480,0.005\n3481,0.9668303978909171\n3482,0.995\n3483,0.005\n3484,0.995\n3485,0.995\n3486,0.995\n3487,0.0660605743166352\n3488,0.995\n3489,0.005\n3490,0.995\n3491,0.995\n3492,0.005\n3493,0.005\n3494,0.995\n3495,0.995\n3496,0.005\n3497,0.995\n3498,0.005\n3499,0.005\n3500,0.995\n3501,0.005\n3502,0.005\n3503,0.005\n3504,0.995\n3505,0.995\n3506,0.995\n3507,0.995\n3508,0.995\n3509,0.995\n3510,0.005\n3511,0.995\n3512,0.995\n3513,0.005\n3514,0.005\n3515,0.995\n3516,0.005\n3517,0.005\n3518,0.005\n3519,0.995\n3520,0.995\n3521,0.995\n3522,0.995\n3523,0.995\n3524,0.995\n3525,0.005\n3526,0.995\n3527,0.995\n3528,0.995\n3529,0.995\n3530,0.995\n3531,0.005\n3532,0.995\n3533,0.005\n3534,0.005\n3535,0.995\n3536,0.995\n3537,0.046746792628189676\n3538,0.995\n3539,0.995\n3540,0.005\n3541,0.005\n3542,0.995\n3543,0.005\n3544,0.995\n3545,0.005\n3546,0.995\n3547,0.005\n3548,0.005\n3549,0.005\n3550,0.995\n3551,0.005\n3552,0.995\n3553,0.005\n3554,0.995\n3555,0.005\n3556,0.005\n3557,0.995\n3558,0.995\n3559,0.005\n3560,0.005\n3561,0.005\n3562,0.995\n3563,0.995\n3564,0.005\n3565,0.005\n3566,0.005\n3567,0.995\n3568,0.995\n3569,0.995\n3570,0.995\n3571,0.995\n3572,0.995\n3573,0.005\n3574,0.995\n3575,0.005\n3576,0.005\n3577,0.005\n3578,0.005\n3579,0.005\n3580,0.995\n3581,0.005\n3582,0.995\n3583,0.005\n3584,0.005\n3585,0.995\n3586,0.005\n3587,0.995\n3588,0.995\n3589,0.005\n3590,0.005\n3591,0.005\n3592,0.995\n3593,0.995\n3594,0.005\n3595,0.995\n3596,0.995\n3597,0.005\n3598,0.005\n3599,0.005\n3600,0.995\n3601,0.995\n3602,0.005\n3603,0.005\n3604,0.005\n3605,0.005\n3606,0.995\n3607,0.005\n3608,0.995\n3609,0.005\n3610,0.995\n3611,0.005\n3612,0.005\n3613,0.995\n3614,0.005\n3615,0.995\n3616,0.005\n3617,0.005\n3618,0.005\n3619,0.0077464427092897295\n3620,0.005\n3621,0.995\n3622,0.005\n3623,0.995\n3624,0.005\n3625,0.30113777518522944\n3626,0.995\n3627,0.995\n3628,0.005\n3629,0.005\n3630,0.995\n3631,0.995\n3632,0.995\n3633,0.995\n3634,0.995\n3635,0.005\n3636,0.005\n3637,0.995\n3638,0.005\n3639,0.005\n3640,0.005\n3641,0.995\n3642,0.995\n3643,0.005\n3644,0.005\n3645,0.994325750233786\n3646,0.995\n3647,0.005\n3648,0.995\n3649,0.005\n3650,0.995\n3651,0.005\n3652,0.005\n3653,0.995\n3654,0.005\n3655,0.995\n3656,0.005\n3657,0.005\n3658,0.995\n3659,0.995\n3660,0.005\n3661,0.995\n3662,0.005\n3663,0.005\n3664,0.995\n3665,0.005\n3666,0.005\n3667,0.005\n3668,0.005\n3669,0.995\n3670,0.005\n3671,0.005\n3672,0.005\n3673,0.005\n3674,0.995\n3675,0.995\n3676,0.995\n3677,0.995\n3678,0.005\n3679,0.005\n3680,0.995\n3681,0.005\n3682,0.995\n3683,0.005\n3684,0.005\n3685,0.005\n3686,0.005\n3687,0.005\n3688,0.995\n3689,0.005\n3690,0.995\n3691,0.005\n3692,0.005\n3693,0.995\n3694,0.005\n3695,0.005\n3696,0.005\n3697,0.995\n3698,0.005\n3699,0.005\n3700,0.005\n3701,0.995\n3702,0.005\n3703,0.005\n3704,0.005\n3705,0.005\n3706,0.995\n3707,0.995\n3708,0.995\n3709,0.005\n3710,0.995\n3711,0.005\n3712,0.005\n3713,0.995\n3714,0.005\n3715,0.995\n3716,0.995\n3717,0.995\n3718,0.995\n3719,0.995\n3720,0.005\n3721,0.005\n3722,0.995\n3723,0.005\n3724,0.005\n3725,0.005\n3726,0.005\n3727,0.005\n3728,0.005\n3729,0.005\n3730,0.005\n3731,0.005\n3732,0.005707039181947059\n3733,0.005\n3734,0.995\n3735,0.995\n3736,0.995\n3737,0.005\n3738,0.005\n3739,0.995\n3740,0.005\n3741,0.995\n3742,0.995\n3743,0.005\n3744,0.995\n3745,0.005\n3746,0.005\n3747,0.005\n3748,0.005\n3749,0.995\n3750,0.995\n3751,0.995\n3752,0.995\n3753,0.005\n3754,0.995\n3755,0.995\n3756,0.995\n3757,0.995\n3758,0.995\n3759,0.005\n3760,0.005\n3761,0.995\n3762,0.005\n3763,0.005\n3764,0.005\n3765,0.995\n3766,0.005\n3767,0.005\n3768,0.995\n3769,0.005\n3770,0.995\n3771,0.995\n3772,0.995\n3773,0.005\n3774,0.995\n3775,0.995\n3776,0.005\n3777,0.005\n3778,0.995\n3779,0.005\n3780,0.995\n3781,0.005\n3782,0.005\n3783,0.995\n3784,0.995\n3785,0.995\n3786,0.005\n3787,0.995\n3788,0.995\n3789,0.995\n3790,0.005\n3791,0.005\n3792,0.995\n3793,0.995\n3794,0.995\n3795,0.995\n3796,0.005\n3797,0.995\n3798,0.005\n3799,0.995\n3800,0.995\n3801,0.995\n3802,0.995\n3803,0.995\n3804,0.005\n3805,0.995\n3806,0.995\n3807,0.995\n3808,0.995\n3809,0.995\n3810,0.995\n3811,0.995\n3812,0.995\n3813,0.995\n3814,0.995\n3815,0.005\n3816,0.995\n3817,0.995\n3818,0.995\n3819,0.995\n3820,0.995\n3821,0.005\n3822,0.005\n3823,0.995\n3824,0.005\n3825,0.005\n3826,0.995\n3827,0.995\n3828,0.995\n3829,0.995\n3830,0.005\n3831,0.005\n3832,0.005\n3833,0.995\n3834,0.005\n3835,0.005\n3836,0.995\n3837,0.005\n3838,0.995\n3839,0.005\n3840,0.005\n3841,0.005\n3842,0.005\n3843,0.005\n3844,0.995\n3845,0.005\n3846,0.21881990300684862\n3847,0.005\n3848,0.995\n3849,0.995\n3850,0.005\n3851,0.01521230893607623\n3852,0.005\n3853,0.005\n3854,0.005\n3855,0.995\n3856,0.005\n3857,0.005\n3858,0.995\n3859,0.005\n3860,0.995\n3861,0.005\n3862,0.995\n3863,0.005\n3864,0.005\n3865,0.005\n3866,0.005\n3867,0.995\n3868,0.005\n3869,0.005\n3870,0.005\n3871,0.005\n3872,0.005\n3873,0.005\n3874,0.995\n3875,0.995\n3876,0.005\n3877,0.995\n3878,0.005\n3879,0.005\n3880,0.005\n3881,0.005\n3882,0.995\n3883,0.005\n3884,0.995\n3885,0.005\n3886,0.005\n3887,0.005\n3888,0.005\n3889,0.005\n3890,0.005\n3891,0.995\n3892,0.005\n3893,0.995\n3894,0.995\n3895,0.005\n3896,0.995\n3897,0.995\n3898,0.005\n3899,0.995\n3900,0.005\n3901,0.005\n3902,0.005\n3903,0.005\n3904,0.995\n3905,0.995\n3906,0.07271061133478797\n3907,0.995\n3908,0.995\n3909,0.995\n3910,0.995\n3911,0.005\n3912,0.005\n3913,0.995\n3914,0.995\n3915,0.995\n3916,0.005\n3917,0.995\n3918,0.995\n3919,0.995\n3920,0.005\n3921,0.995\n3922,0.6308832010508052\n3923,0.995\n3924,0.995\n3925,0.995\n3926,0.995\n3927,0.995\n3928,0.995\n3929,0.995\n3930,0.005\n3931,0.995\n3932,0.005\n3933,0.995\n3934,0.005\n3935,0.005\n3936,0.005\n3937,0.995\n3938,0.007549524925523051\n3939,0.995\n3940,0.995\n3941,0.995\n3942,0.995\n3943,0.995\n3944,0.005\n3945,0.995\n3946,0.995\n3947,0.995\n3948,0.995\n3949,0.995\n3950,0.995\n3951,0.005\n3952,0.995\n3953,0.005\n3954,0.995\n3955,0.995\n3956,0.995\n3957,0.005\n3958,0.005\n3959,0.005\n3960,0.995\n3961,0.995\n3962,0.995\n3963,0.005\n3964,0.005\n3965,0.995\n3966,0.995\n3967,0.995\n3968,0.995\n3969,0.995\n3970,0.43153275364288685\n3971,0.005\n3972,0.995\n3973,0.995\n3974,0.995\n3975,0.005\n3976,0.005\n3977,0.005\n3978,0.005\n3979,0.995\n3980,0.005\n3981,0.995\n3982,0.005\n3983,0.005\n3984,0.995\n3985,0.995\n3986,0.995\n3987,0.005\n3988,0.995\n3989,0.995\n3990,0.995\n3991,0.005\n3992,0.005\n3993,0.005\n3994,0.005\n3995,0.005\n3996,0.995\n3997,0.995\n3998,0.995\n3999,0.995\n4000,0.005\n4001,0.995\n4002,0.005\n4003,0.005\n4004,0.005\n4005,0.005\n4006,0.995\n4007,0.005\n4008,0.005\n4009,0.995\n4010,0.005\n4011,0.005\n4012,0.005\n4013,0.005\n4014,0.005\n4015,0.005\n4016,0.005\n4017,0.005\n4018,0.005\n4019,0.005\n4020,0.005\n4021,0.995\n4022,0.005\n4023,0.995\n4024,0.995\n4025,0.995\n4026,0.995\n4027,0.995\n4028,0.005\n4029,0.005\n4030,0.005\n4031,0.995\n4032,0.995\n4033,0.995\n4034,0.005\n4035,0.005\n4036,0.995\n4037,0.005\n4038,0.005\n4039,0.005\n4040,0.995\n4041,0.995\n4042,0.995\n4043,0.995\n4044,0.995\n4045,0.005\n4046,0.005\n4047,0.005\n4048,0.005\n4049,0.995\n4050,0.995\n4051,0.005\n4052,0.005\n4053,0.995\n4054,0.995\n4055,0.995\n4056,0.005\n4057,0.995\n4058,0.005\n4059,0.005\n4060,0.005\n4061,0.005\n4062,0.995\n4063,0.995\n4064,0.005\n4065,0.005\n4066,0.9838114363079793\n4067,0.995\n4068,0.005\n4069,0.995\n4070,0.005\n4071,0.995\n4072,0.995\n4073,0.995\n4074,0.005\n4075,0.005\n4076,0.005\n4077,0.995\n4078,0.005\n4079,0.005\n4080,0.995\n4081,0.005\n4082,0.995\n4083,0.995\n4084,0.005\n4085,0.005\n4086,0.995\n4087,0.005\n4088,0.005\n4089,0.995\n4090,0.995\n4091,0.995\n4092,0.995\n4093,0.005\n4094,0.005\n4095,0.995\n4096,0.005\n4097,0.005\n4098,0.005\n4099,0.995\n4100,0.005\n4101,0.005\n4102,0.995\n4103,0.995\n4104,0.995\n4105,0.005\n4106,0.005\n4107,0.995\n4108,0.995\n4109,0.005\n4110,0.995\n4111,0.005\n4112,0.005\n4113,0.995\n4114,0.005\n4115,0.005\n4116,0.995\n4117,0.005\n4118,0.005\n4119,0.005\n4120,0.005\n4121,0.995\n4122,0.995\n4123,0.005\n4124,0.005\n4125,0.995\n4126,0.995\n4127,0.005\n4128,0.005\n4129,0.026558669149407615\n4130,0.995\n4131,0.995\n4132,0.995\n4133,0.005\n4134,0.005\n4135,0.995\n4136,0.995\n4137,0.005\n4138,0.995\n4139,0.005\n4140,0.005\n4141,0.995\n4142,0.995\n4143,0.995\n4144,0.995\n4145,0.995\n4146,0.005\n4147,0.005\n4148,0.005\n4149,0.005\n4150,0.005\n4151,0.005\n4152,0.995\n4153,0.005\n4154,0.005\n4155,0.995\n4156,0.005\n4157,0.005\n4158,0.005\n4159,0.005\n4160,0.005\n4161,0.995\n4162,0.005\n4163,0.005\n4164,0.995\n4165,0.995\n4166,0.995\n4167,0.005\n4168,0.005\n4169,0.005\n4170,0.995\n4171,0.995\n4172,0.005\n4173,0.995\n4174,0.995\n4175,0.995\n4176,0.995\n4177,0.995\n4178,0.995\n4179,0.012554144173154732\n4180,0.995\n4181,0.005\n4182,0.005\n4183,0.005\n4184,0.005\n4185,0.005\n4186,0.995\n4187,0.005\n4188,0.005\n4189,0.005\n4190,0.995\n4191,0.995\n4192,0.995\n4193,0.005\n4194,0.995\n4195,0.995\n4196,0.995\n4197,0.005\n4198,0.010775698987631147\n4199,0.995\n4200,0.1178387731248679\n4201,0.005\n4202,0.005\n4203,0.995\n4204,0.005\n4205,0.005\n4206,0.995\n4207,0.005\n4208,0.995\n4209,0.005\n4210,0.995\n4211,0.005\n4212,0.005\n4213,0.005\n4214,0.005\n4215,0.995\n4216,0.995\n4217,0.005\n4218,0.995\n4219,0.995\n4220,0.005\n4221,0.005\n4222,0.005\n4223,0.995\n4224,0.995\n4225,0.005\n4226,0.005\n4227,0.005\n4228,0.005\n4229,0.995\n4230,0.995\n4231,0.995\n4232,0.005\n4233,0.995\n4234,0.005\n4235,0.995\n4236,0.005\n4237,0.995\n4238,0.8896973168512847\n4239,0.005\n4240,0.995\n4241,0.005\n4242,0.995\n4243,0.995\n4244,0.005\n4245,0.995\n4246,0.995\n4247,0.995\n4248,0.995\n4249,0.005\n4250,0.005\n4251,0.995\n4252,0.995\n4253,0.005\n4254,0.005\n4255,0.995\n4256,0.005\n4257,0.995\n4258,0.995\n4259,0.995\n4260,0.995\n4261,0.995\n4262,0.13507343343736808\n4263,0.005\n4264,0.995\n4265,0.995\n4266,0.005\n4267,0.995\n4268,0.995\n4269,0.005\n4270,0.005\n4271,0.005\n4272,0.995\n4273,0.005\n4274,0.995\n4275,0.005\n4276,0.995\n4277,0.005\n4278,0.005\n4279,0.005\n4280,0.005235961915766107\n4281,0.005\n4282,0.995\n4283,0.005\n4284,0.005\n4285,0.005\n4286,0.005\n4287,0.995\n4288,0.005\n4289,0.995\n4290,0.995\n4291,0.005\n4292,0.005\n4293,0.005\n4294,0.995\n4295,0.995\n4296,0.005\n4297,0.995\n4298,0.005\n4299,0.995\n4300,0.995\n4301,0.005\n4302,0.995\n4303,0.995\n4304,0.995\n4305,0.005\n4306,0.005\n4307,0.995\n4308,0.005\n4309,0.995\n4310,0.005\n4311,0.005\n4312,0.005\n4313,0.005\n4314,0.995\n4315,0.995\n4316,0.995\n4317,0.995\n4318,0.005\n4319,0.995\n4320,0.005\n4321,0.995\n4322,0.995\n4323,0.005\n4324,0.005\n4325,0.995\n4326,0.005\n4327,0.995\n4328,0.995\n4329,0.005\n4330,0.995\n4331,0.005\n4332,0.005\n4333,0.995\n4334,0.995\n4335,0.995\n4336,0.995\n4337,0.005\n4338,0.995\n4339,0.005\n4340,0.995\n4341,0.995\n4342,0.995\n4343,0.995\n4344,0.995\n4345,0.005\n4346,0.005\n4347,0.995\n4348,0.005\n4349,0.995\n4350,0.995\n4351,0.995\n4352,0.995\n4353,0.995\n4354,0.995\n4355,0.005\n4356,0.005\n4357,0.995\n4358,0.995\n4359,0.005\n4360,0.995\n4361,0.005\n4362,0.995\n4363,0.005\n4364,0.005\n4365,0.005\n4366,0.005\n4367,0.995\n4368,0.005\n4369,0.995\n4370,0.995\n4371,0.005\n4372,0.005\n4373,0.005\n4374,0.005\n4375,0.995\n4376,0.005\n4377,0.005\n4378,0.995\n4379,0.005\n4380,0.005\n4381,0.005\n4382,0.005\n4383,0.995\n4384,0.005\n4385,0.995\n4386,0.005\n4387,0.005\n4388,0.995\n4389,0.005\n4390,0.995\n4391,0.995\n4392,0.005\n4393,0.995\n4394,0.005\n4395,0.005\n4396,0.995\n4397,0.995\n4398,0.005\n4399,0.005\n4400,0.995\n4401,0.995\n4402,0.005\n4403,0.005\n4404,0.995\n4405,0.995\n4406,0.995\n4407,0.995\n4408,0.995\n4409,0.995\n4410,0.995\n4411,0.995\n4412,0.005\n4413,0.995\n4414,0.005\n4415,0.995\n4416,0.995\n4417,0.995\n4418,0.005\n4419,0.005\n4420,0.995\n4421,0.995\n4422,0.995\n4423,0.005\n4424,0.995\n4425,0.005\n4426,0.995\n4427,0.995\n4428,0.005\n4429,0.995\n4430,0.995\n4431,0.005\n4432,0.995\n4433,0.005\n4434,0.995\n4435,0.005\n4436,0.995\n4437,0.995\n4438,0.005\n4439,0.995\n4440,0.005\n4441,0.005\n4442,0.005\n4443,0.995\n4444,0.005\n4445,0.005\n4446,0.005\n4447,0.995\n4448,0.005\n4449,0.005\n4450,0.005\n4451,0.995\n4452,0.995\n4453,0.005\n4454,0.005\n4455,0.005\n4456,0.995\n4457,0.995\n4458,0.005\n4459,0.005\n4460,0.005\n4461,0.005\n4462,0.005\n4463,0.005\n4464,0.995\n4465,0.995\n4466,0.995\n4467,0.995\n4468,0.995\n4469,0.995\n4470,0.005\n4471,0.995\n4472,0.995\n4473,0.995\n4474,0.005\n4475,0.005\n4476,0.005\n4477,0.005\n4478,0.995\n4479,0.005\n4480,0.995\n4481,0.005\n4482,0.005\n4483,0.995\n4484,0.005\n4485,0.005\n4486,0.005\n4487,0.005\n4488,0.005\n4489,0.005\n4490,0.005\n4491,0.995\n4492,0.995\n4493,0.005\n4494,0.995\n4495,0.005\n4496,0.005\n4497,0.005\n4498,0.995\n4499,0.995\n4500,0.005\n4501,0.995\n4502,0.995\n4503,0.00864753827564767\n4504,0.005\n4505,0.005\n4506,0.005\n4507,0.005\n4508,0.005\n4509,0.005\n4510,0.005\n4511,0.995\n4512,0.995\n4513,0.005\n4514,0.005\n4515,0.995\n4516,0.995\n4517,0.005\n4518,0.995\n4519,0.005\n4520,0.995\n4521,0.005\n4522,0.005\n4523,0.005\n4524,0.005\n4525,0.005\n4526,0.995\n4527,0.005\n4528,0.005\n4529,0.005\n4530,0.005\n4531,0.995\n4532,0.005\n4533,0.005\n4534,0.005\n4535,0.995\n4536,0.005\n4537,0.995\n4538,0.005\n4539,0.995\n4540,0.005\n4541,0.995\n4542,0.005\n4543,0.995\n4544,0.005\n4545,0.005\n4546,0.995\n4547,0.995\n4548,0.995\n4549,0.005\n4550,0.005\n4551,0.995\n4552,0.005\n4553,0.005\n4554,0.995\n4555,0.005\n4556,0.005\n4557,0.005\n4558,0.995\n4559,0.995\n4560,0.005\n4561,0.005\n4562,0.995\n4563,0.005\n4564,0.995\n4565,0.005\n4566,0.995\n4567,0.995\n4568,0.005\n4569,0.005\n4570,0.995\n4571,0.995\n4572,0.005\n4573,0.995\n4574,0.995\n4575,0.995\n4576,0.005\n4577,0.995\n4578,0.995\n4579,0.005\n4580,0.8147800204518615\n4581,0.995\n4582,0.005\n4583,0.005\n4584,0.005\n4585,0.005\n4586,0.995\n4587,0.005\n4588,0.995\n4589,0.005\n4590,0.995\n4591,0.005\n4592,0.007762613866273054\n4593,0.995\n4594,0.995\n4595,0.005\n4596,0.995\n4597,0.005\n4598,0.995\n4599,0.995\n4600,0.005\n4601,0.005\n4602,0.995\n4603,0.995\n4604,0.005\n4605,0.005\n4606,0.995\n4607,0.005\n4608,0.005\n4609,0.005\n4610,0.005\n4611,0.005\n4612,0.005\n4613,0.005\n4614,0.005\n4615,0.995\n4616,0.995\n4617,0.005\n4618,0.995\n4619,0.005\n4620,0.005\n4621,0.005\n4622,0.995\n4623,0.995\n4624,0.995\n4625,0.005\n4626,0.995\n4627,0.995\n4628,0.995\n4629,0.005\n4630,0.995\n4631,0.995\n4632,0.005\n4633,0.005\n4634,0.005\n4635,0.995\n4636,0.995\n4637,0.995\n4638,0.005\n4639,0.005\n4640,0.995\n4641,0.995\n4642,0.995\n4643,0.995\n4644,0.005\n4645,0.005\n4646,0.995\n4647,0.995\n4648,0.005\n4649,0.995\n4650,0.995\n4651,0.995\n4652,0.995\n4653,0.005\n4654,0.995\n4655,0.005\n4656,0.995\n4657,0.005\n4658,0.005\n4659,0.005\n4660,0.005\n4661,0.005\n4662,0.005\n4663,0.005\n4664,0.995\n4665,0.995\n4666,0.995\n4667,0.995\n4668,0.995\n4669,0.995\n4670,0.005\n4671,0.995\n4672,0.005\n4673,0.005\n4674,0.995\n4675,0.995\n4676,0.995\n4677,0.995\n4678,0.005\n4679,0.995\n4680,0.995\n4681,0.005\n4682,0.005\n4683,0.005\n4684,0.995\n4685,0.995\n4686,0.005\n4687,0.005\n4688,0.005\n4689,0.995\n4690,0.005\n4691,0.995\n4692,0.005\n4693,0.995\n4694,0.005\n4695,0.005\n4696,0.005\n4697,0.005\n4698,0.995\n4699,0.995\n4700,0.995\n4701,0.005\n4702,0.995\n4703,0.005\n4704,0.005\n4705,0.005\n4706,0.005\n4707,0.005\n4708,0.995\n4709,0.995\n4710,0.995\n4711,0.995\n4712,0.005\n4713,0.995\n4714,0.99392799410768\n4715,0.995\n4716,0.005\n4717,0.995\n4718,0.995\n4719,0.005\n4720,0.995\n4721,0.005\n4722,0.005\n4723,0.995\n4724,0.995\n4725,0.005\n4726,0.995\n4727,0.005\n4728,0.005\n4729,0.995\n4730,0.995\n4731,0.995\n4732,0.995\n4733,0.995\n4734,0.995\n4735,0.005\n4736,0.995\n4737,0.995\n4738,0.995\n4739,0.005\n4740,0.005\n4741,0.005\n4742,0.005\n4743,0.995\n4744,0.995\n4745,0.995\n4746,0.995\n4747,0.995\n4748,0.6022166074686177\n4749,0.005\n4750,0.995\n4751,0.005\n4752,0.005\n4753,0.008021426655868366\n4754,0.005\n4755,0.995\n4756,0.995\n4757,0.995\n4758,0.005\n4759,0.005\n4760,0.005\n4761,0.005\n4762,0.005\n4763,0.995\n4764,0.005\n4765,0.995\n4766,0.005\n4767,0.995\n4768,0.005\n4769,0.005\n4770,0.005\n4771,0.995\n4772,0.995\n4773,0.995\n4774,0.995\n4775,0.005\n4776,0.005\n4777,0.005\n4778,0.995\n4779,0.005\n4780,0.995\n4781,0.005\n4782,0.995\n4783,0.995\n4784,0.995\n4785,0.005\n4786,0.995\n4787,0.995\n4788,0.995\n4789,0.005\n4790,0.995\n4791,0.995\n4792,0.995\n4793,0.005\n4794,0.995\n4795,0.995\n4796,0.005\n4797,0.995\n4798,0.005\n4799,0.995\n4800,0.005\n4801,0.995\n4802,0.995\n4803,0.995\n4804,0.995\n4805,0.995\n4806,0.005\n4807,0.005\n4808,0.995\n4809,0.005\n4810,0.005\n4811,0.005\n4812,0.995\n4813,0.005\n4814,0.995\n4815,0.995\n4816,0.995\n4817,0.005\n4818,0.995\n4819,0.005\n4820,0.995\n4821,0.995\n4822,0.995\n4823,0.995\n4824,0.995\n4825,0.995\n4826,0.995\n4827,0.995\n4828,0.995\n4829,0.005\n4830,0.005\n4831,0.005\n4832,0.995\n4833,0.005\n4834,0.995\n4835,0.995\n4836,0.995\n4837,0.005\n4838,0.995\n4839,0.005\n4840,0.995\n4841,0.005\n4842,0.995\n4843,0.995\n4844,0.005\n4845,0.005\n4846,0.995\n4847,0.995\n4848,0.005\n4849,0.995\n4850,0.995\n4851,0.005\n4852,0.995\n4853,0.005\n4854,0.995\n4855,0.005\n4856,0.995\n4857,0.995\n4858,0.995\n4859,0.005\n4860,0.995\n4861,0.995\n4862,0.995\n4863,0.005\n4864,0.005\n4865,0.995\n4866,0.995\n4867,0.995\n4868,0.005\n4869,0.005\n4870,0.995\n4871,0.995\n4872,0.995\n4873,0.995\n4874,0.995\n4875,0.8520492333216285\n4876,0.9929458375564894\n4877,0.005\n4878,0.005\n4879,0.995\n4880,0.005\n4881,0.005\n4882,0.005\n4883,0.995\n4884,0.005\n4885,0.005\n4886,0.005\n4887,0.995\n4888,0.005\n4889,0.995\n4890,0.995\n4891,0.005\n4892,0.005\n4893,0.005\n4894,0.995\n4895,0.995\n4896,0.005\n4897,0.995\n4898,0.995\n4899,0.005\n4900,0.005\n4901,0.995\n4902,0.995\n4903,0.005\n4904,0.005\n4905,0.005\n4906,0.005\n4907,0.005\n4908,0.995\n4909,0.995\n4910,0.005\n4911,0.995\n4912,0.995\n4913,0.995\n4914,0.005\n4915,0.995\n4916,0.0078019624024757385\n4917,0.005\n4918,0.9754375776839364\n4919,0.995\n4920,0.005\n4921,0.005\n4922,0.005\n4923,0.005\n4924,0.995\n4925,0.005\n4926,0.995\n4927,0.995\n4928,0.005\n4929,0.995\n4930,0.005\n4931,0.995\n4932,0.005\n4933,0.005\n4934,0.005\n4935,0.995\n4936,0.005\n4937,0.995\n4938,0.995\n4939,0.995\n4940,0.995\n4941,0.995\n4942,0.995\n4943,0.005\n4944,0.005\n4945,0.005\n4946,0.995\n4947,0.005\n4948,0.005\n4949,0.005\n4950,0.995\n4951,0.005\n4952,0.995\n4953,0.995\n4954,0.995\n4955,0.995\n4956,0.005\n4957,0.005\n4958,0.005\n4959,0.995\n4960,0.995\n4961,0.005\n4962,0.995\n4963,0.995\n4964,0.005\n4965,0.995\n4966,0.995\n4967,0.005\n4968,0.005\n4969,0.995\n4970,0.005\n4971,0.995\n4972,0.005\n4973,0.995\n4974,0.995\n4975,0.005\n4976,0.995\n4977,0.005\n4978,0.005\n4979,0.995\n4980,0.995\n4981,0.005\n4982,0.995\n4983,0.005\n4984,0.995\n4985,0.9923849684856169\n4986,0.995\n4987,0.005\n4988,0.995\n4989,0.995\n4990,0.005\n4991,0.005\n4992,0.995\n4993,0.995\n4994,0.005\n4995,0.005\n4996,0.995\n4997,0.005\n4998,0.995\n4999,0.995\n5000,0.995\n5001,0.005\n5002,0.005\n5003,0.995\n5004,0.995\n5005,0.005\n5006,0.005\n5007,0.005\n5008,0.005\n5009,0.005\n5010,0.005\n5011,0.995\n5012,0.005\n5013,0.005\n5014,0.005\n5015,0.995\n5016,0.995\n5017,0.995\n5018,0.005\n5019,0.995\n5020,0.005\n5021,0.995\n5022,0.995\n5023,0.005\n5024,0.995\n5025,0.005\n5026,0.005\n5027,0.005\n5028,0.005\n5029,0.005\n5030,0.995\n5031,0.995\n5032,0.005\n5033,0.995\n5034,0.005\n5035,0.995\n5036,0.995\n5037,0.005\n5038,0.005\n5039,0.005\n5040,0.995\n5041,0.005\n5042,0.005\n5043,0.005\n5044,0.005\n5045,0.995\n5046,0.995\n5047,0.005\n5048,0.995\n5049,0.995\n5050,0.005\n5051,0.005\n5052,0.995\n5053,0.005\n5054,0.005\n5055,0.005\n5056,0.995\n5057,0.005\n5058,0.005\n5059,0.005\n5060,0.995\n5061,0.56757168342414\n5062,0.995\n5063,0.995\n5064,0.995\n5065,0.005\n5066,0.995\n5067,0.995\n5068,0.995\n5069,0.995\n5070,0.995\n5071,0.995\n5072,0.995\n5073,0.995\n5074,0.005\n5075,0.005\n5076,0.005\n5077,0.995\n5078,0.995\n5079,0.005\n5080,0.995\n5081,0.995\n5082,0.005\n5083,0.005\n5084,0.005\n5085,0.005\n5086,0.995\n5087,0.005\n5088,0.005\n5089,0.995\n5090,0.995\n5091,0.005\n5092,0.995\n5093,0.005\n5094,0.995\n5095,0.005\n5096,0.995\n5097,0.005\n5098,0.995\n5099,0.005\n5100,0.995\n5101,0.995\n5102,0.005\n5103,0.005\n5104,0.005\n5105,0.005\n5106,0.005\n5107,0.995\n5108,0.005\n5109,0.005\n5110,0.005\n5111,0.995\n5112,0.005\n5113,0.995\n5114,0.995\n5115,0.005\n5116,0.995\n5117,0.995\n5118,0.995\n5119,0.005\n5120,0.995\n5121,0.995\n5122,0.005\n5123,0.995\n5124,0.005\n5125,0.005\n5126,0.005\n5127,0.995\n5128,0.995\n5129,0.005\n5130,0.995\n5131,0.005\n5132,0.005\n5133,0.005\n5134,0.005\n5135,0.995\n5136,0.005\n5137,0.005\n5138,0.005\n5139,0.005\n5140,0.005\n5141,0.995\n5142,0.005\n5143,0.995\n5144,0.005\n5145,0.995\n5146,0.995\n5147,0.995\n5148,0.995\n5149,0.005\n5150,0.995\n5151,0.005\n5152,0.005\n5153,0.005\n5154,0.005\n5155,0.995\n5156,0.995\n5157,0.995\n5158,0.995\n5159,0.995\n5160,0.005\n5161,0.005\n5162,0.995\n5163,0.995\n5164,0.005\n5165,0.995\n5166,0.995\n5167,0.005\n5168,0.005\n5169,0.005\n5170,0.005\n5171,0.995\n5172,0.995\n5173,0.995\n5174,0.005\n5175,0.995\n5176,0.995\n5177,0.995\n5178,0.005\n5179,0.005\n5180,0.995\n5181,0.005\n5182,0.005\n5183,0.005\n5184,0.005\n5185,0.005\n5186,0.005\n5187,0.995\n5188,0.995\n5189,0.995\n5190,0.005\n5191,0.995\n5192,0.005\n5193,0.005\n5194,0.995\n5195,0.005\n5196,0.005\n5197,0.005\n5198,0.995\n5199,0.005\n5200,0.995\n5201,0.005\n5202,0.005\n5203,0.9911851807143048\n5204,0.005\n5205,0.005\n5206,0.005\n5207,0.005\n5208,0.005\n5209,0.005\n5210,0.005\n5211,0.005\n5212,0.995\n5213,0.005\n5214,0.005\n5215,0.995\n5216,0.995\n5217,0.995\n5218,0.995\n5219,0.005\n5220,0.995\n5221,0.005\n5222,0.995\n5223,0.005\n5224,0.995\n5225,0.995\n5226,0.995\n5227,0.005\n5228,0.995\n5229,0.005\n5230,0.005\n5231,0.995\n5232,0.995\n5233,0.995\n5234,0.995\n5235,0.995\n5236,0.995\n5237,0.995\n5238,0.995\n5239,0.995\n5240,0.005\n5241,0.995\n5242,0.995\n5243,0.995\n5244,0.995\n5245,0.005\n5246,0.005\n5247,0.005\n5248,0.005\n5249,0.005\n5250,0.005\n5251,0.995\n5252,0.005\n5253,0.056247745382484914\n5254,0.005\n5255,0.005\n5256,0.995\n5257,0.005\n5258,0.995\n5259,0.005\n5260,0.005\n5261,0.005\n5262,0.005\n5263,0.005\n5264,0.995\n5265,0.005\n5266,0.995\n5267,0.005\n5268,0.995\n5269,0.005\n5270,0.005\n5271,0.995\n5272,0.005\n5273,0.995\n5274,0.995\n5275,0.005\n5276,0.995\n5277,0.995\n5278,0.995\n5279,0.995\n5280,0.005\n5281,0.995\n5282,0.005\n5283,0.24279397634158953\n5284,0.005\n5285,0.005\n5286,0.005\n5287,0.005\n5288,0.995\n5289,0.995\n5290,0.005\n5291,0.995\n5292,0.995\n5293,0.995\n5294,0.005\n5295,0.005\n5296,0.005\n5297,0.005\n5298,0.005\n5299,0.995\n5300,0.005\n5301,0.9656674856775804\n5302,0.995\n5303,0.005\n5304,0.995\n5305,0.995\n5306,0.995\n5307,0.995\n5308,0.995\n5309,0.005\n5310,0.995\n5311,0.005\n5312,0.005\n5313,0.005\n5314,0.995\n5315,0.995\n5316,0.005\n5317,0.995\n5318,0.995\n5319,0.005\n5320,0.995\n5321,0.005\n5322,0.995\n5323,0.005\n5324,0.995\n5325,0.005\n5326,0.995\n5327,0.995\n5328,0.995\n5329,0.005\n5330,0.005\n5331,0.995\n5332,0.995\n5333,0.995\n5334,0.005\n5335,0.005\n5336,0.995\n5337,0.995\n5338,0.005\n5339,0.995\n5340,0.005\n5341,0.005\n5342,0.005\n5343,0.995\n5344,0.995\n5345,0.005\n5346,0.995\n5347,0.995\n5348,0.995\n5349,0.995\n5350,0.995\n5351,0.995\n5352,0.005\n5353,0.005\n5354,0.005\n5355,0.005\n5356,0.005\n5357,0.995\n5358,0.995\n5359,0.005\n5360,0.005\n5361,0.995\n5362,0.005\n5363,0.005\n5364,0.005\n5365,0.005\n5366,0.995\n5367,0.995\n5368,0.005\n5369,0.995\n5370,0.995\n5371,0.995\n5372,0.005\n5373,0.005\n5374,0.005\n5375,0.995\n5376,0.995\n5377,0.995\n5378,0.995\n5379,0.005\n5380,0.995\n5381,0.995\n5382,0.995\n5383,0.995\n5384,0.005\n5385,0.995\n5386,0.005\n5387,0.005\n5388,0.995\n5389,0.005\n5390,0.995\n5391,0.995\n5392,0.005\n5393,0.995\n5394,0.995\n5395,0.995\n5396,0.995\n5397,0.005\n5398,0.005\n5399,0.995\n5400,0.995\n5401,0.005\n5402,0.995\n5403,0.995\n5404,0.995\n5405,0.005\n5406,0.995\n5407,0.995\n5408,0.005\n5409,0.995\n5410,0.995\n5411,0.995\n5412,0.005\n5413,0.995\n5414,0.995\n5415,0.005\n5416,0.005\n5417,0.005\n5418,0.995\n5419,0.995\n5420,0.995\n5421,0.995\n5422,0.995\n5423,0.005\n5424,0.005\n5425,0.995\n5426,0.995\n5427,0.995\n5428,0.995\n5429,0.005\n5430,0.005\n5431,0.995\n5432,0.995\n5433,0.995\n5434,0.995\n5435,0.005\n5436,0.995\n5437,0.995\n5438,0.995\n5439,0.005\n5440,0.995\n5441,0.995\n5442,0.995\n5443,0.995\n5444,0.995\n5445,0.005\n5446,0.995\n5447,0.995\n5448,0.995\n5449,0.995\n5450,0.995\n5451,0.995\n5452,0.005\n5453,0.005\n5454,0.995\n5455,0.995\n5456,0.005\n5457,0.995\n5458,0.995\n5459,0.995\n5460,0.005\n5461,0.005\n5462,0.005\n5463,0.995\n5464,0.995\n5465,0.995\n5466,0.005\n5467,0.995\n5468,0.995\n5469,0.950801931798478\n5470,0.995\n5471,0.995\n5472,0.005\n5473,0.995\n5474,0.005\n5475,0.995\n5476,0.005\n5477,0.005\n5478,0.995\n5479,0.995\n5480,0.005\n5481,0.995\n5482,0.005\n5483,0.005\n5484,0.995\n5485,0.995\n5486,0.005\n5487,0.995\n5488,0.995\n5489,0.995\n5490,0.995\n5491,0.995\n5492,0.17106658910517467\n5493,0.995\n5494,0.995\n5495,0.995\n5496,0.995\n5497,0.995\n5498,0.005\n5499,0.005\n5500,0.005\n5501,0.995\n5502,0.005\n5503,0.995\n5504,0.995\n5505,0.995\n5506,0.005\n5507,0.995\n5508,0.995\n5509,0.995\n5510,0.995\n5511,0.995\n5512,0.995\n5513,0.995\n5514,0.995\n5515,0.995\n5516,0.995\n5517,0.005\n5518,0.005\n5519,0.995\n5520,0.995\n5521,0.995\n5522,0.995\n5523,0.005\n5524,0.995\n5525,0.005\n5526,0.995\n5527,0.995\n5528,0.995\n5529,0.005\n5530,0.005\n5531,0.995\n5532,0.995\n5533,0.005\n5534,0.995\n5535,0.005\n5536,0.995\n5537,0.005\n5538,0.005\n5539,0.995\n5540,0.005\n5541,0.005\n5542,0.005\n5543,0.995\n5544,0.005\n5545,0.005\n5546,0.005\n5547,0.005\n5548,0.995\n5549,0.005\n5550,0.995\n5551,0.995\n5552,0.005\n5553,0.005\n5554,0.995\n5555,0.995\n5556,0.005\n5557,0.005\n5558,0.995\n5559,0.995\n5560,0.995\n5561,0.995\n5562,0.995\n5563,0.005\n5564,0.005\n5565,0.995\n5566,0.005\n5567,0.995\n5568,0.995\n5569,0.005\n5570,0.995\n5571,0.995\n5572,0.995\n5573,0.995\n5574,0.995\n5575,0.995\n5576,0.005\n5577,0.995\n5578,0.995\n5579,0.005\n5580,0.995\n5581,0.995\n5582,0.005\n5583,0.005\n5584,0.995\n5585,0.995\n5586,0.995\n5587,0.995\n5588,0.995\n5589,0.005\n5590,0.995\n5591,0.995\n5592,0.995\n5593,0.995\n5594,0.995\n5595,0.005\n5596,0.995\n5597,0.9869072547032401\n5598,0.005\n5599,0.005\n5600,0.995\n5601,0.995\n5602,0.995\n5603,0.005\n5604,0.995\n5605,0.005\n5606,0.005\n5607,0.995\n5608,0.995\n5609,0.005\n5610,0.995\n5611,0.005\n5612,0.005\n5613,0.995\n5614,0.995\n5615,0.005\n5616,0.005\n5617,0.995\n5618,0.995\n5619,0.995\n5620,0.995\n5621,0.005\n5622,0.005\n5623,0.005\n5624,0.005\n5625,0.995\n5626,0.005\n5627,0.005\n5628,0.995\n5629,0.995\n5630,0.995\n5631,0.995\n5632,0.005\n5633,0.995\n5634,0.005\n5635,0.995\n5636,0.005\n5637,0.005\n5638,0.005\n5639,0.9785003238117298\n5640,0.995\n5641,0.995\n5642,0.995\n5643,0.005\n5644,0.995\n5645,0.005\n5646,0.005\n5647,0.005\n5648,0.005\n5649,0.995\n5650,0.995\n5651,0.995\n5652,0.005\n5653,0.995\n5654,0.005\n5655,0.995\n5656,0.995\n5657,0.005\n5658,0.00964326549855317\n5659,0.005\n5660,0.995\n5661,0.005\n5662,0.995\n5663,0.005\n5664,0.005\n5665,0.995\n5666,0.005\n5667,0.995\n5668,0.005\n5669,0.01147654636584837\n5670,0.995\n5671,0.005\n5672,0.995\n5673,0.005\n5674,0.005\n5675,0.995\n5676,0.995\n5677,0.995\n5678,0.005\n5679,0.005\n5680,0.995\n5681,0.005\n5682,0.005\n5683,0.005\n5684,0.9941869315019394\n5685,0.005\n5686,0.005\n5687,0.005\n5688,0.995\n5689,0.995\n5690,0.995\n5691,0.995\n5692,0.995\n5693,0.995\n5694,0.995\n5695,0.995\n5696,0.005\n5697,0.995\n5698,0.995\n5699,0.005\n5700,0.995\n5701,0.995\n5702,0.005\n5703,0.995\n5704,0.005\n5705,0.995\n5706,0.995\n5707,0.00755610655744528\n5708,0.995\n5709,0.005\n5710,0.005\n5711,0.7277512671775834\n5712,0.005\n5713,0.005\n5714,0.005\n5715,0.995\n5716,0.005\n5717,0.995\n5718,0.995\n5719,0.005\n5720,0.005\n5721,0.005\n5722,0.005\n5723,0.005\n5724,0.005\n5725,0.005\n5726,0.005\n5727,0.005\n5728,0.005\n5729,0.005\n5730,0.995\n5731,0.20357950385760784\n5732,0.995\n5733,0.995\n5734,0.005\n5735,0.995\n5736,0.005\n5737,0.995\n5738,0.995\n5739,0.995\n5740,0.995\n5741,0.005\n5742,0.995\n5743,0.005\n5744,0.005\n5745,0.005\n5746,0.005\n5747,0.995\n5748,0.995\n5749,0.995\n5750,0.005\n5751,0.995\n5752,0.995\n5753,0.005\n5754,0.005\n5755,0.995\n5756,0.995\n5757,0.005\n5758,0.005\n5759,0.995\n5760,0.995\n5761,0.005\n5762,0.005\n5763,0.005\n5764,0.005\n5765,0.995\n5766,0.995\n5767,0.005\n5768,0.995\n5769,0.005\n5770,0.005\n5771,0.995\n5772,0.995\n5773,0.005\n5774,0.005\n5775,0.005\n5776,0.995\n5777,0.995\n5778,0.995\n5779,0.995\n5780,0.995\n5781,0.005\n5782,0.995\n5783,0.995\n5784,0.995\n5785,0.005\n5786,0.005\n5787,0.995\n5788,0.005\n5789,0.995\n5790,0.005\n5791,0.005\n5792,0.005\n5793,0.005\n5794,0.995\n5795,0.995\n5796,0.995\n5797,0.005\n5798,0.995\n5799,0.995\n5800,0.005\n5801,0.995\n5802,0.005\n5803,0.005\n5804,0.995\n5805,0.995\n5806,0.005\n5807,0.995\n5808,0.995\n5809,0.995\n5810,0.05576066601725268\n5811,0.005\n5812,0.005\n5813,0.995\n5814,0.005\n5815,0.995\n5816,0.005\n5817,0.005\n5818,0.005\n5819,0.995\n5820,0.995\n5821,0.995\n5822,0.008653912622515404\n5823,0.005\n5824,0.995\n5825,0.995\n5826,0.995\n5827,0.995\n5828,0.995\n5829,0.995\n5830,0.005\n5831,0.995\n5832,0.005\n5833,0.995\n5834,0.995\n5835,0.005\n5836,0.995\n5837,0.005\n5838,0.005\n5839,0.995\n5840,0.005\n5841,0.005\n5842,0.005\n5843,0.995\n5844,0.005\n5845,0.995\n5846,0.005\n5847,0.005\n5848,0.995\n5849,0.995\n5850,0.005\n5851,0.005\n5852,0.995\n5853,0.005\n5854,0.005\n5855,0.005\n5856,0.005\n5857,0.005\n5858,0.995\n5859,0.005\n5860,0.995\n5861,0.005\n5862,0.995\n5863,0.005\n5864,0.8926154594502429\n5865,0.005\n5866,0.005\n5867,0.005\n5868,0.005\n5869,0.995\n5870,0.005\n5871,0.005\n5872,0.005\n5873,0.995\n5874,0.995\n5875,0.005\n5876,0.005\n5877,0.995\n5878,0.995\n5879,0.005\n5880,0.995\n5881,0.995\n5882,0.995\n5883,0.995\n5884,0.995\n5885,0.005\n5886,0.995\n5887,0.005\n5888,0.005\n5889,0.005\n5890,0.995\n5891,0.005\n5892,0.995\n5893,0.995\n5894,0.005\n5895,0.005\n5896,0.005\n5897,0.005\n5898,0.995\n5899,0.005\n5900,0.005\n5901,0.995\n5902,0.005\n5903,0.005\n5904,0.995\n5905,0.995\n5906,0.005\n5907,0.005\n5908,0.995\n5909,0.005\n5910,0.005\n5911,0.995\n5912,0.005\n5913,0.005\n5914,0.005\n5915,0.995\n5916,0.995\n5917,0.995\n5918,0.005\n5919,0.995\n5920,0.005\n5921,0.005\n5922,0.995\n5923,0.995\n5924,0.995\n5925,0.995\n5926,0.005\n5927,0.005\n5928,0.995\n5929,0.995\n5930,0.995\n5931,0.995\n5932,0.005\n5933,0.005\n5934,0.005\n5935,0.995\n5936,0.995\n5937,0.0054481825394163295\n5938,0.995\n5939,0.005\n5940,0.005\n5941,0.005\n5942,0.005\n5943,0.995\n5944,0.995\n5945,0.005\n5946,0.995\n5947,0.005\n5948,0.995\n5949,0.005\n5950,0.005\n5951,0.995\n5952,0.995\n5953,0.005\n5954,0.005\n5955,0.995\n5956,0.005\n5957,0.995\n5958,0.995\n5959,0.005\n5960,0.005\n5961,0.005\n5962,0.005\n5963,0.005\n5964,0.005\n5965,0.995\n5966,0.995\n5967,0.005\n5968,0.995\n5969,0.995\n5970,0.995\n5971,0.995\n5972,0.995\n5973,0.995\n5974,0.005\n5975,0.995\n5976,0.995\n5977,0.005\n5978,0.005\n5979,0.995\n5980,0.005\n5981,0.005\n5982,0.005\n5983,0.995\n5984,0.995\n5985,0.995\n5986,0.005\n5987,0.005\n5988,0.995\n5989,0.995\n5990,0.995\n5991,0.005\n5992,0.995\n5993,0.995\n5994,0.005\n5995,0.995\n5996,0.005\n5997,0.995\n5998,0.005\n5999,0.995\n6000,0.995\n6001,0.005\n6002,0.005\n6003,0.005\n6004,0.995\n6005,0.005\n6006,0.005\n6007,0.995\n6008,0.005\n6009,0.005\n6010,0.995\n6011,0.005\n6012,0.995\n6013,0.005\n6014,0.005\n6015,0.005\n6016,0.995\n6017,0.995\n6018,0.005\n6019,0.995\n6020,0.995\n6021,0.005\n6022,0.995\n6023,0.005\n6024,0.005\n6025,0.995\n6026,0.995\n6027,0.995\n6028,0.995\n6029,0.005\n6030,0.995\n6031,0.005\n6032,0.005\n6033,0.005\n6034,0.005\n6035,0.005\n6036,0.005\n6037,0.005\n6038,0.995\n6039,0.005\n6040,0.995\n6041,0.995\n6042,0.995\n6043,0.005\n6044,0.005\n6045,0.995\n6046,0.995\n6047,0.995\n6048,0.005\n6049,0.995\n6050,0.005\n6051,0.995\n6052,0.005\n6053,0.005\n6054,0.005\n6055,0.995\n6056,0.005\n6057,0.005\n6058,0.005\n6059,0.005\n6060,0.005\n6061,0.995\n6062,0.005\n6063,0.005\n6064,0.995\n6065,0.995\n6066,0.995\n6067,0.995\n6068,0.005\n6069,0.005\n6070,0.995\n6071,0.005\n6072,0.995\n6073,0.995\n6074,0.005\n6075,0.995\n6076,0.005\n6077,0.005\n6078,0.995\n6079,0.995\n6080,0.995\n6081,0.005\n6082,0.995\n6083,0.005\n6084,0.995\n6085,0.995\n6086,0.995\n6087,0.995\n6088,0.995\n6089,0.995\n6090,0.995\n6091,0.995\n6092,0.005\n6093,0.995\n6094,0.995\n6095,0.005\n6096,0.005\n6097,0.005\n6098,0.005\n6099,0.005\n6100,0.005\n6101,0.005\n6102,0.005\n6103,0.995\n6104,0.995\n6105,0.995\n6106,0.995\n6107,0.995\n6108,0.995\n6109,0.993087922659587\n6110,0.005\n6111,0.995\n6112,0.005\n6113,0.005\n6114,0.005\n6115,0.005\n6116,0.995\n6117,0.995\n6118,0.995\n6119,0.005\n6120,0.995\n6121,0.995\n6122,0.005\n6123,0.995\n6124,0.005\n6125,0.995\n6126,0.995\n6127,0.005\n6128,0.995\n6129,0.005\n6130,0.995\n6131,0.005\n6132,0.005\n6133,0.005\n6134,0.995\n6135,0.005\n6136,0.005\n6137,0.995\n6138,0.005\n6139,0.995\n6140,0.995\n6141,0.995\n6142,0.995\n6143,0.005\n6144,0.005\n6145,0.005\n6146,0.005\n6147,0.005\n6148,0.995\n6149,0.005\n6150,0.005\n6151,0.995\n6152,0.005\n6153,0.005\n6154,0.995\n6155,0.995\n6156,0.005\n6157,0.995\n6158,0.005\n6159,0.005\n6160,0.995\n6161,0.005\n6162,0.995\n6163,0.995\n6164,0.005\n6165,0.005\n6166,0.005\n6167,0.005\n6168,0.005\n6169,0.995\n6170,0.005\n6171,0.005\n6172,0.005\n6173,0.005\n6174,0.005\n6175,0.995\n6176,0.995\n6177,0.995\n6178,0.005\n6179,0.005\n6180,0.995\n6181,0.005\n6182,0.005\n6183,0.995\n6184,0.005\n6185,0.005\n6186,0.995\n6187,0.995\n6188,0.995\n6189,0.005\n6190,0.005\n6191,0.008374365981638278\n6192,0.995\n6193,0.995\n6194,0.005\n6195,0.005\n6196,0.005\n6197,0.005\n6198,0.005\n6199,0.995\n6200,0.995\n6201,0.995\n6202,0.005\n6203,0.995\n6204,0.005\n6205,0.005\n6206,0.995\n6207,0.995\n6208,0.995\n6209,0.995\n6210,0.005\n6211,0.005\n6212,0.005\n6213,0.005\n6214,0.995\n6215,0.995\n6216,0.005\n6217,0.995\n6218,0.995\n6219,0.995\n6220,0.005\n6221,0.995\n6222,0.995\n6223,0.995\n6224,0.995\n6225,0.995\n6226,0.995\n6227,0.005\n6228,0.005\n6229,0.995\n6230,0.995\n6231,0.995\n6232,0.995\n6233,0.005\n6234,0.007501010280224347\n6235,0.005\n6236,0.995\n6237,0.995\n6238,0.005\n6239,0.995\n6240,0.005\n6241,0.995\n6242,0.995\n6243,0.005\n6244,0.995\n6245,0.995\n6246,0.995\n6247,0.005\n6248,0.995\n6249,0.995\n6250,0.005\n6251,0.005\n6252,0.005\n6253,0.995\n6254,0.995\n6255,0.995\n6256,0.005\n6257,0.995\n6258,0.005\n6259,0.005\n6260,0.995\n6261,0.005\n6262,0.005\n6263,0.005\n6264,0.995\n6265,0.995\n6266,0.995\n6267,0.005\n6268,0.005\n6269,0.005\n6270,0.005\n6271,0.005\n6272,0.005\n6273,0.995\n6274,0.005\n6275,0.005\n6276,0.005\n6277,0.995\n6278,0.005\n6279,0.995\n6280,0.995\n6281,0.995\n6282,0.005\n6283,0.995\n6284,0.995\n6285,0.995\n6286,0.005\n6287,0.995\n6288,0.995\n6289,0.995\n6290,0.995\n6291,0.005\n6292,0.995\n6293,0.995\n6294,0.995\n6295,0.995\n6296,0.005\n6297,0.005\n6298,0.005\n6299,0.005\n6300,0.005\n6301,0.995\n6302,0.995\n6303,0.005\n6304,0.005\n6305,0.995\n6306,0.995\n6307,0.995\n6308,0.005\n6309,0.995\n6310,0.9263465024565766\n6311,0.005\n6312,0.005\n6313,0.995\n6314,0.005\n6315,0.995\n6316,0.005\n6317,0.995\n6318,0.995\n6319,0.995\n6320,0.005\n6321,0.995\n6322,0.022769691903530835\n6323,0.995\n6324,0.005\n6325,0.005\n6326,0.005\n6327,0.995\n6328,0.005\n6329,0.005\n6330,0.005\n6331,0.995\n6332,0.995\n6333,0.005\n6334,0.005\n6335,0.005\n6336,0.005\n6337,0.005\n6338,0.005\n6339,0.005\n6340,0.995\n6341,0.995\n6342,0.005\n6343,0.005\n6344,0.005\n6345,0.005\n6346,0.005\n6347,0.995\n6348,0.995\n6349,0.995\n6350,0.005\n6351,0.995\n6352,0.005\n6353,0.005\n6354,0.995\n6355,0.995\n6356,0.9704176703917717\n6357,0.005\n6358,0.005\n6359,0.005\n6360,0.005\n6361,0.995\n6362,0.005\n6363,0.995\n6364,0.005\n6365,0.995\n6366,0.005\n6367,0.995\n6368,0.995\n6369,0.005\n6370,0.005\n6371,0.005\n6372,0.005\n6373,0.005\n6374,0.005\n6375,0.995\n6376,0.005\n6377,0.995\n6378,0.005\n6379,0.995\n6380,0.005\n6381,0.005\n6382,0.005\n6383,0.005\n6384,0.995\n6385,0.995\n6386,0.005\n6387,0.995\n6388,0.995\n6389,0.995\n6390,0.005\n6391,0.995\n6392,0.005\n6393,0.995\n6394,0.995\n6395,0.995\n6396,0.005\n6397,0.995\n6398,0.995\n6399,0.995\n6400,0.995\n6401,0.005\n6402,0.995\n6403,0.005\n6404,0.995\n6405,0.005\n6406,0.995\n6407,0.005\n6408,0.005\n6409,0.995\n6410,0.005\n6411,0.005\n6412,0.005\n6413,0.005\n6414,0.005\n6415,0.995\n6416,0.005\n6417,0.005\n6418,0.005\n6419,0.005\n6420,0.995\n6421,0.995\n6422,0.995\n6423,0.005\n6424,0.005\n6425,0.005\n6426,0.995\n6427,0.005\n6428,0.995\n6429,0.995\n6430,0.005\n6431,0.940629205478593\n6432,0.995\n6433,0.995\n6434,0.005\n6435,0.995\n6436,0.995\n6437,0.005\n6438,0.995\n6439,0.995\n6440,0.005\n6441,0.005\n6442,0.005\n6443,0.995\n6444,0.995\n6445,0.995\n6446,0.995\n6447,0.995\n6448,0.995\n6449,0.995\n6450,0.995\n6451,0.005\n6452,0.005\n6453,0.995\n6454,0.005\n6455,0.995\n6456,0.005\n6457,0.995\n6458,0.005\n6459,0.005\n6460,0.995\n6461,0.995\n6462,0.995\n6463,0.005\n6464,0.995\n6465,0.005\n6466,0.995\n6467,0.995\n6468,0.995\n6469,0.995\n6470,0.005\n6471,0.005\n6472,0.005\n6473,0.995\n6474,0.005\n6475,0.995\n6476,0.995\n6477,0.005\n6478,0.995\n6479,0.005\n6480,0.995\n6481,0.995\n6482,0.995\n6483,0.005\n6484,0.005\n6485,0.995\n6486,0.005\n6487,0.005\n6488,0.005\n6489,0.005\n6490,0.005\n6491,0.995\n6492,0.995\n6493,0.995\n6494,0.005\n6495,0.005\n6496,0.005\n6497,0.995\n6498,0.005\n6499,0.995\n6500,0.995\n6501,0.005\n6502,0.995\n6503,0.995\n6504,0.005\n6505,0.005\n6506,0.995\n6507,0.995\n6508,0.005\n6509,0.005\n6510,0.995\n6511,0.995\n6512,0.995\n6513,0.005\n6514,0.995\n6515,0.005\n6516,0.995\n6517,0.995\n6518,0.005\n6519,0.005\n6520,0.005\n6521,0.005\n6522,0.005\n6523,0.995\n6524,0.995\n6525,0.995\n6526,0.995\n6527,0.995\n6528,0.005\n6529,0.995\n6530,0.995\n6531,0.005\n6532,0.995\n6533,0.005\n6534,0.005\n6535,0.005\n6536,0.995\n6537,0.005\n6538,0.005\n6539,0.995\n6540,0.995\n6541,0.005\n6542,0.995\n6543,0.005\n6544,0.995\n6545,0.995\n6546,0.995\n6547,0.005\n6548,0.005\n6549,0.995\n6550,0.005\n6551,0.995\n6552,0.005\n6553,0.005\n6554,0.995\n6555,0.005\n6556,0.995\n6557,0.005\n6558,0.005\n6559,0.005\n6560,0.995\n6561,0.005\n6562,0.005\n6563,0.005\n6564,0.995\n6565,0.005\n6566,0.995\n6567,0.995\n6568,0.005\n6569,0.995\n6570,0.005\n6571,0.005\n6572,0.995\n6573,0.995\n6574,0.995\n6575,0.005\n6576,0.005\n6577,0.995\n6578,0.005\n6579,0.005\n6580,0.995\n6581,0.005\n6582,0.995\n6583,0.995\n6584,0.005\n6585,0.995\n6586,0.995\n6587,0.005\n6588,0.995\n6589,0.995\n6590,0.995\n6591,0.995\n6592,0.995\n6593,0.995\n6594,0.005\n6595,0.005\n6596,0.995\n6597,0.005\n6598,0.005\n6599,0.995\n6600,0.995\n6601,0.005\n6602,0.995\n6603,0.005\n6604,0.005\n6605,0.005\n6606,0.995\n6607,0.995\n6608,0.995\n6609,0.005\n6610,0.995\n6611,0.995\n6612,0.005\n6613,0.005\n6614,0.01710083144877145\n6615,0.995\n6616,0.005\n6617,0.005\n6618,0.005\n6619,0.995\n6620,0.995\n6621,0.995\n6622,0.995\n6623,0.005\n6624,0.005\n6625,0.995\n6626,0.005\n6627,0.995\n6628,0.995\n6629,0.995\n6630,0.995\n6631,0.995\n6632,0.995\n6633,0.005\n6634,0.005\n6635,0.995\n6636,0.995\n6637,0.995\n6638,0.005\n6639,0.005\n6640,0.995\n6641,0.995\n6642,0.005\n6643,0.995\n6644,0.005\n6645,0.005\n6646,0.995\n6647,0.005\n6648,0.995\n6649,0.995\n6650,0.7373639675375679\n6651,0.995\n6652,0.995\n6653,0.995\n6654,0.995\n6655,0.005\n6656,0.005\n6657,0.005\n6658,0.005\n6659,0.995\n6660,0.005\n6661,0.995\n6662,0.995\n6663,0.995\n6664,0.995\n6665,0.995\n6666,0.005\n6667,0.005\n6668,0.995\n6669,0.005\n6670,0.995\n6671,0.995\n6672,0.995\n6673,0.005\n6674,0.995\n6675,0.995\n6676,0.995\n6677,0.005\n6678,0.005\n6679,0.995\n6680,0.005\n6681,0.005\n6682,0.005\n6683,0.005\n6684,0.005\n6685,0.995\n6686,0.005\n6687,0.005\n6688,0.995\n6689,0.005\n6690,0.005\n6691,0.005\n6692,0.005\n6693,0.005\n6694,0.005\n6695,0.005\n6696,0.005\n6697,0.005\n6698,0.005\n6699,0.995\n6700,0.995\n6701,0.995\n6702,0.005\n6703,0.995\n6704,0.995\n6705,0.005\n6706,0.005\n6707,0.995\n6708,0.995\n6709,0.005\n6710,0.995\n6711,0.005\n6712,0.995\n6713,0.005\n6714,0.005\n6715,0.995\n6716,0.995\n6717,0.005\n6718,0.995\n6719,0.995\n6720,0.995\n6721,0.995\n6722,0.995\n6723,0.005\n6724,0.005\n6725,0.995\n6726,0.005\n6727,0.005\n6728,0.995\n6729,0.995\n6730,0.005\n6731,0.995\n6732,0.995\n6733,0.9192563759546906\n6734,0.995\n6735,0.995\n6736,0.005\n6737,0.995\n6738,0.995\n6739,0.005\n6740,0.005\n6741,0.995\n6742,0.995\n6743,0.005\n6744,0.005\n6745,0.995\n6746,0.005\n6747,0.005\n6748,0.005\n6749,0.005\n6750,0.005\n6751,0.995\n6752,0.005\n6753,0.995\n6754,0.995\n6755,0.005\n6756,0.005\n6757,0.995\n6758,0.005\n6759,0.995\n6760,0.005\n6761,0.995\n6762,0.005\n6763,0.995\n6764,0.005\n6765,0.005\n6766,0.995\n6767,0.995\n6768,0.005\n6769,0.005\n6770,0.005\n6771,0.995\n6772,0.995\n6773,0.995\n6774,0.995\n6775,0.995\n6776,0.005\n6777,0.005\n6778,0.005\n6779,0.005\n6780,0.005\n6781,0.005\n6782,0.005\n6783,0.005\n6784,0.005\n6785,0.005\n6786,0.995\n6787,0.0626618146452198\n6788,0.005\n6789,0.005\n6790,0.995\n6791,0.995\n6792,0.995\n6793,0.005\n6794,0.995\n6795,0.005\n6796,0.005\n6797,0.995\n6798,0.005\n6799,0.995\n6800,0.995\n6801,0.005\n6802,0.995\n6803,0.995\n6804,0.995\n6805,0.005\n6806,0.995\n6807,0.005\n6808,0.005\n6809,0.995\n6810,0.005\n6811,0.995\n6812,0.005\n6813,0.995\n6814,0.995\n6815,0.995\n6816,0.995\n6817,0.005\n6818,0.995\n6819,0.995\n6820,0.995\n6821,0.005\n6822,0.995\n6823,0.995\n6824,0.995\n6825,0.995\n6826,0.005\n6827,0.995\n6828,0.995\n6829,0.005\n6830,0.005\n6831,0.995\n6832,0.995\n6833,0.9709166647869484\n6834,0.995\n6835,0.995\n6836,0.005\n6837,0.005\n6838,0.005\n6839,0.995\n6840,0.995\n6841,0.005\n6842,0.995\n6843,0.995\n6844,0.995\n6845,0.005\n6846,0.995\n6847,0.995\n6848,0.005\n6849,0.995\n6850,0.995\n6851,0.005\n6852,0.995\n6853,0.995\n6854,0.995\n6855,0.005\n6856,0.995\n6857,0.995\n6858,0.995\n6859,0.995\n6860,0.005\n6861,0.005\n6862,0.995\n6863,0.005\n6864,0.005\n6865,0.005\n6866,0.995\n6867,0.005\n6868,0.995\n6869,0.995\n6870,0.995\n6871,0.005\n6872,0.995\n6873,0.005\n6874,0.005\n6875,0.995\n6876,0.995\n6877,0.005\n6878,0.005\n6879,0.995\n6880,0.005\n6881,0.005\n6882,0.005\n6883,0.995\n6884,0.005\n6885,0.995\n6886,0.995\n6887,0.995\n6888,0.005\n6889,0.005\n6890,0.005\n6891,0.005\n6892,0.995\n6893,0.005\n6894,0.005\n6895,0.995\n6896,0.005\n6897,0.005\n6898,0.005\n6899,0.995\n6900,0.005\n6901,0.995\n6902,0.995\n6903,0.005\n6904,0.005\n6905,0.005\n6906,0.995\n6907,0.995\n6908,0.995\n6909,0.6763791138219842\n6910,0.995\n6911,0.995\n6912,0.995\n6913,0.005\n6914,0.995\n6915,0.005\n6916,0.995\n6917,0.005\n6918,0.995\n6919,0.005\n6920,0.995\n6921,0.005\n6922,0.005\n6923,0.995\n6924,0.005\n6925,0.005\n6926,0.995\n6927,0.005\n6928,0.995\n6929,0.995\n6930,0.005\n6931,0.005\n6932,0.995\n6933,0.005\n6934,0.995\n6935,0.005\n6936,0.995\n6937,0.005\n6938,0.995\n6939,0.005\n6940,0.005\n6941,0.995\n6942,0.005\n6943,0.005\n6944,0.995\n6945,0.995\n6946,0.005\n6947,0.9857894919591816\n6948,0.995\n6949,0.995\n6950,0.8999430892396864\n6951,0.005\n6952,0.995\n6953,0.995\n6954,0.005\n6955,0.995\n6956,0.995\n6957,0.005\n6958,0.995\n6959,0.005\n6960,0.005\n6961,0.005\n6962,0.995\n6963,0.995\n6964,0.005\n6965,0.005\n6966,0.005\n6967,0.995\n6968,0.005\n6969,0.005\n6970,0.005\n6971,0.005\n6972,0.995\n6973,0.005\n6974,0.995\n6975,0.005\n6976,0.07312977800775285\n6977,0.005\n6978,0.995\n6979,0.005\n6980,0.995\n6981,0.005\n6982,0.995\n6983,0.005\n6984,0.995\n6985,0.995\n6986,0.995\n6987,0.8642970103708743\n6988,0.005\n6989,0.005\n6990,0.005\n6991,0.005\n6992,0.995\n6993,0.005\n6994,0.995\n6995,0.005\n6996,0.995\n6997,0.995\n6998,0.005\n6999,0.995\n7000,0.995\n7001,0.995\n7002,0.995\n7003,0.005\n7004,0.005\n7005,0.005\n7006,0.995\n7007,0.005\n7008,0.995\n7009,0.005\n7010,0.995\n7011,0.005\n7012,0.005\n7013,0.995\n7014,0.005\n7015,0.005\n7016,0.005\n7017,0.995\n7018,0.995\n7019,0.005\n7020,0.005\n7021,0.005\n7022,0.005\n7023,0.005\n7024,0.005\n7025,0.005\n7026,0.995\n7027,0.005\n7028,0.005\n7029,0.005\n7030,0.005\n7031,0.995\n7032,0.005\n7033,0.005\n7034,0.995\n7035,0.995\n7036,0.995\n7037,0.995\n7038,0.005\n7039,0.05434369880551751\n7040,0.005\n7041,0.005\n7042,0.005\n7043,0.995\n7044,0.005\n7045,0.005\n7046,0.005\n7047,0.995\n7048,0.005\n7049,0.005\n7050,0.005\n7051,0.995\n7052,0.995\n7053,0.9948968958521721\n7054,0.995\n7055,0.995\n7056,0.005\n7057,0.005\n7058,0.005\n7059,0.995\n7060,0.005\n7061,0.005\n7062,0.005\n7063,0.005\n7064,0.005\n7065,0.995\n7066,0.995\n7067,0.005\n7068,0.995\n7069,0.995\n7070,0.005\n7071,0.005\n7072,0.995\n7073,0.05392222870365179\n7074,0.995\n7075,0.005\n7076,0.995\n7077,0.995\n7078,0.995\n7079,0.995\n7080,0.995\n7081,0.995\n7082,0.995\n7083,0.995\n7084,0.005\n7085,0.995\n7086,0.005\n7087,0.005\n7088,0.995\n7089,0.005\n7090,0.005\n7091,0.005\n7092,0.005\n7093,0.995\n7094,0.005\n7095,0.005\n7096,0.995\n7097,0.995\n7098,0.995\n7099,0.005\n7100,0.005\n7101,0.005\n7102,0.995\n7103,0.005\n7104,0.995\n7105,0.005\n7106,0.005\n7107,0.995\n7108,0.005\n7109,0.005\n7110,0.995\n7111,0.995\n7112,0.995\n7113,0.005\n7114,0.995\n7115,0.005\n7116,0.995\n7117,0.995\n7118,0.005\n7119,0.995\n7120,0.995\n7121,0.995\n7122,0.005\n7123,0.995\n7124,0.005\n7125,0.005\n7126,0.005\n7127,0.995\n7128,0.005\n7129,0.995\n7130,0.995\n7131,0.995\n7132,0.005\n7133,0.995\n7134,0.995\n7135,0.995\n7136,0.995\n7137,0.005\n7138,0.995\n7139,0.995\n7140,0.005\n7141,0.995\n7142,0.995\n7143,0.995\n7144,0.995\n7145,0.005\n7146,0.005\n7147,0.005\n7148,0.995\n7149,0.995\n7150,0.005\n7151,0.005\n7152,0.005\n7153,0.995\n7154,0.005\n7155,0.005\n7156,0.005\n7157,0.005\n7158,0.995\n7159,0.005\n7160,0.005\n7161,0.995\n7162,0.005\n7163,0.005\n7164,0.005\n7165,0.005\n7166,0.995\n7167,0.005\n7168,0.995\n7169,0.995\n7170,0.005\n7171,0.005\n7172,0.005\n7173,0.005\n7174,0.005\n7175,0.005\n7176,0.005\n7177,0.005\n7178,0.005\n7179,0.995\n7180,0.995\n7181,0.995\n7182,0.005\n7183,0.995\n7184,0.005\n7185,0.005\n7186,0.005\n7187,0.005\n7188,0.995\n7189,0.995\n7190,0.995\n7191,0.005\n7192,0.005\n7193,0.005\n7194,0.005\n7195,0.995\n7196,0.005\n7197,0.005\n7198,0.995\n7199,0.005\n7200,0.995\n7201,0.005\n7202,0.005\n7203,0.005\n7204,0.005\n7205,0.005\n7206,0.995\n7207,0.005\n7208,0.005\n7209,0.995\n7210,0.005\n7211,0.005\n7212,0.005\n7213,0.995\n7214,0.995\n7215,0.005\n7216,0.005\n7217,0.005\n7218,0.995\n7219,0.995\n7220,0.995\n7221,0.005\n7222,0.005\n7223,0.995\n7224,0.005\n7225,0.005\n7226,0.995\n7227,0.005\n7228,0.995\n7229,0.005\n7230,0.005\n7231,0.995\n7232,0.005\n7233,0.005\n7234,0.995\n7235,0.005\n7236,0.005\n7237,0.995\n7238,0.995\n7239,0.005\n7240,0.005\n7241,0.005\n7242,0.005\n7243,0.005\n7244,0.005\n7245,0.995\n7246,0.995\n7247,0.995\n7248,0.995\n7249,0.005\n7250,0.005\n7251,0.995\n7252,0.995\n7253,0.005\n7254,0.995\n7255,0.995\n7256,0.995\n7257,0.995\n7258,0.005\n7259,0.995\n7260,0.995\n7261,0.995\n7262,0.005\n7263,0.005\n7264,0.995\n7265,0.995\n7266,0.005\n7267,0.995\n7268,0.005\n7269,0.005\n7270,0.005\n7271,0.995\n7272,0.005\n7273,0.005\n7274,0.995\n7275,0.005\n7276,0.005\n7277,0.005\n7278,0.005\n7279,0.995\n7280,0.995\n7281,0.005\n7282,0.005\n7283,0.995\n7284,0.005\n7285,0.995\n7286,0.005\n7287,0.005\n7288,0.005\n7289,0.005\n7290,0.1001180979822607\n7291,0.995\n7292,0.005\n7293,0.995\n7294,0.995\n7295,0.005\n7296,0.005\n7297,0.005\n7298,0.995\n7299,0.005\n7300,0.995\n7301,0.005\n7302,0.005\n7303,0.005\n7304,0.005\n7305,0.995\n7306,0.995\n7307,0.005\n7308,0.005\n7309,0.995\n7310,0.005\n7311,0.005\n7312,0.005\n7313,0.005\n7314,0.995\n7315,0.995\n7316,0.995\n7317,0.005\n7318,0.005\n7319,0.995\n7320,0.005\n7321,0.995\n7322,0.005\n7323,0.995\n7324,0.005\n7325,0.005\n7326,0.995\n7327,0.995\n7328,0.995\n7329,0.005\n7330,0.005\n7331,0.005\n7332,0.995\n7333,0.005\n7334,0.995\n7335,0.005\n7336,0.995\n7337,0.005\n7338,0.995\n7339,0.005\n7340,0.005\n7341,0.995\n7342,0.005\n7343,0.995\n7344,0.995\n7345,0.005\n7346,0.995\n7347,0.995\n7348,0.995\n7349,0.005\n7350,0.995\n7351,0.005\n7352,0.995\n7353,0.995\n7354,0.005\n7355,0.005\n7356,0.005\n7357,0.005\n7358,0.995\n7359,0.995\n7360,0.005\n7361,0.995\n7362,0.005\n7363,0.005\n7364,0.995\n7365,0.995\n7366,0.005\n7367,0.995\n7368,0.995\n7369,0.005\n7370,0.995\n7371,0.995\n7372,0.995\n7373,0.005\n7374,0.995\n7375,0.995\n7376,0.005\n7377,0.005\n7378,0.995\n7379,0.995\n7380,0.005\n7381,0.005\n7382,0.005\n7383,0.005\n7384,0.005\n7385,0.005\n7386,0.005\n7387,0.005\n7388,0.005\n7389,0.005\n7390,0.995\n7391,0.005\n7392,0.995\n7393,0.995\n7394,0.005\n7395,0.995\n7396,0.005\n7397,0.005\n7398,0.995\n7399,0.995\n7400,0.995\n7401,0.005\n7402,0.005\n7403,0.995\n7404,0.995\n7405,0.005\n7406,0.995\n7407,0.995\n7408,0.005\n7409,0.005\n7410,0.995\n7411,0.005\n7412,0.995\n7413,0.995\n7414,0.005\n7415,0.995\n7416,0.005\n7417,0.995\n7418,0.005\n7419,0.005\n7420,0.995\n7421,0.995\n7422,0.995\n7423,0.995\n7424,0.005\n7425,0.005\n7426,0.005\n7427,0.995\n7428,0.005\n7429,0.005\n7430,0.995\n7431,0.995\n7432,0.005\n7433,0.005\n7434,0.995\n7435,0.995\n7436,0.995\n7437,0.005\n7438,0.005\n7439,0.995\n7440,0.005\n7441,0.005\n7442,0.005\n7443,0.995\n7444,0.005\n7445,0.995\n7446,0.995\n7447,0.005\n7448,0.995\n7449,0.995\n7450,0.995\n7451,0.995\n7452,0.005\n7453,0.995\n7454,0.995\n7455,0.995\n7456,0.005\n7457,0.995\n7458,0.995\n7459,0.005\n7460,0.005\n7461,0.995\n7462,0.995\n7463,0.995\n7464,0.005\n7465,0.995\n7466,0.005\n7467,0.995\n7468,0.995\n7469,0.995\n7470,0.995\n7471,0.005\n7472,0.005\n7473,0.995\n7474,0.005\n7475,0.995\n7476,0.005\n7477,0.005\n7478,0.005\n7479,0.995\n7480,0.005\n7481,0.005\n7482,0.005\n7483,0.005\n7484,0.995\n7485,0.005\n7486,0.005\n7487,0.995\n7488,0.005\n7489,0.995\n7490,0.995\n7491,0.005\n7492,0.995\n7493,0.995\n7494,0.995\n7495,0.005\n7496,0.995\n7497,0.005\n7498,0.005\n7499,0.995\n7500,0.995\n7501,0.005\n7502,0.995\n7503,0.995\n7504,0.995\n7505,0.995\n7506,0.005\n7507,0.005\n7508,0.005\n7509,0.995\n7510,0.995\n7511,0.005\n7512,0.005\n7513,0.005\n7514,0.995\n7515,0.005\n7516,0.995\n7517,0.995\n7518,0.995\n7519,0.995\n7520,0.995\n7521,0.995\n7522,0.005\n7523,0.995\n7524,0.995\n7525,0.005\n7526,0.995\n7527,0.005\n7528,0.995\n7529,0.995\n7530,0.995\n7531,0.995\n7532,0.005\n7533,0.005\n7534,0.995\n7535,0.005\n7536,0.995\n7537,0.995\n7538,0.995\n7539,0.005\n7540,0.005\n7541,0.995\n7542,0.995\n7543,0.995\n7544,0.995\n7545,0.995\n7546,0.995\n7547,0.995\n7548,0.995\n7549,0.005\n7550,0.987629596479915\n7551,0.995\n7552,0.995\n7553,0.995\n7554,0.995\n7555,0.995\n7556,0.005\n7557,0.005\n7558,0.995\n7559,0.953966427575672\n7560,0.995\n7561,0.005\n7562,0.995\n7563,0.995\n7564,0.995\n7565,0.005\n7566,0.005\n7567,0.995\n7568,0.005\n7569,0.995\n7570,0.005\n7571,0.04421091140401356\n7572,0.995\n7573,0.005\n7574,0.995\n7575,0.005\n7576,0.005\n7577,0.995\n7578,0.995\n7579,0.995\n7580,0.995\n7581,0.005\n7582,0.995\n7583,0.005\n7584,0.995\n7585,0.995\n7586,0.005\n7587,0.995\n7588,0.005\n7589,0.995\n7590,0.995\n7591,0.995\n7592,0.015679743977734917\n7593,0.005\n7594,0.995\n7595,0.995\n7596,0.995\n7597,0.005\n7598,0.005\n7599,0.995\n7600,0.995\n7601,0.995\n7602,0.005\n7603,0.995\n7604,0.005\n7605,0.005\n7606,0.995\n7607,0.005\n7608,0.995\n7609,0.995\n7610,0.005\n7611,0.005\n7612,0.995\n7613,0.995\n7614,0.005\n7615,0.995\n7616,0.995\n7617,0.005\n7618,0.005\n7619,0.005\n7620,0.005\n7621,0.005\n7622,0.995\n7623,0.995\n7624,0.005\n7625,0.995\n7626,0.005\n7627,0.995\n7628,0.995\n7629,0.005\n7630,0.005\n7631,0.995\n7632,0.005\n7633,0.005\n7634,0.005\n7635,0.005\n7636,0.005\n7637,0.995\n7638,0.005\n7639,0.005\n7640,0.005\n7641,0.995\n7642,0.995\n7643,0.995\n7644,0.995\n7645,0.995\n7646,0.005\n7647,0.995\n7648,0.995\n7649,0.005\n7650,0.005\n7651,0.005\n7652,0.995\n7653,0.995\n7654,0.995\n7655,0.005\n7656,0.005\n7657,0.005\n7658,0.995\n7659,0.995\n7660,0.995\n7661,0.005\n7662,0.995\n7663,0.995\n7664,0.995\n7665,0.995\n7666,0.995\n7667,0.995\n7668,0.995\n7669,0.995\n7670,0.005\n7671,0.995\n7672,0.005\n7673,0.005\n7674,0.995\n7675,0.005\n7676,0.005\n7677,0.005\n7678,0.995\n7679,0.005\n7680,0.995\n7681,0.995\n7682,0.005\n7683,0.995\n7684,0.995\n7685,0.005\n7686,0.005\n7687,0.005\n7688,0.005\n7689,0.005\n7690,0.005\n7691,0.995\n7692,0.005\n7693,0.005\n7694,0.995\n7695,0.995\n7696,0.995\n7697,0.005\n7698,0.005\n7699,0.005\n7700,0.995\n7701,0.995\n7702,0.005\n7703,0.005\n7704,0.995\n7705,0.995\n7706,0.6856588724386982\n7707,0.995\n7708,0.005\n7709,0.005\n7710,0.005\n7711,0.995\n7712,0.005\n7713,0.995\n7714,0.005\n7715,0.995\n7716,0.995\n7717,0.995\n7718,0.005\n7719,0.995\n7720,0.005\n7721,0.005\n7722,0.995\n7723,0.995\n7724,0.005\n7725,0.995\n7726,0.005\n7727,0.005\n7728,0.995\n7729,0.015719843216071824\n7730,0.005\n7731,0.005\n7732,0.995\n7733,0.005\n7734,0.995\n7735,0.995\n7736,0.995\n7737,0.995\n7738,0.995\n7739,0.005\n7740,0.005\n7741,0.005\n7742,0.005\n7743,0.005\n7744,0.005\n7745,0.995\n7746,0.005\n7747,0.995\n7748,0.995\n7749,0.005\n7750,0.005\n7751,0.995\n7752,0.995\n7753,0.005\n7754,0.005\n7755,0.005\n7756,0.995\n7757,0.005\n7758,0.995\n7759,0.005\n7760,0.995\n7761,0.005\n7762,0.005\n7763,0.005\n7764,0.995\n7765,0.995\n7766,0.995\n7767,0.005\n7768,0.005\n7769,0.995\n7770,0.005\n7771,0.005\n7772,0.005\n7773,0.005\n7774,0.995\n7775,0.995\n7776,0.995\n7777,0.005\n7778,0.005\n7779,0.005\n7780,0.005\n7781,0.005\n7782,0.995\n7783,0.995\n7784,0.005\n7785,0.995\n7786,0.005\n7787,0.995\n7788,0.995\n7789,0.995\n7790,0.995\n7791,0.005\n7792,0.005\n7793,0.005\n7794,0.005\n7795,0.005\n7796,0.995\n7797,0.995\n7798,0.995\n7799,0.995\n7800,0.995\n7801,0.005\n7802,0.005\n7803,0.995\n7804,0.995\n7805,0.005\n7806,0.005\n7807,0.995\n7808,0.005\n7809,0.005\n7810,0.005\n7811,0.005\n7812,0.995\n7813,0.995\n7814,0.995\n7815,0.995\n7816,0.995\n7817,0.995\n7818,0.995\n7819,0.005\n7820,0.995\n7821,0.005\n7822,0.995\n7823,0.995\n7824,0.005\n7825,0.005\n7826,0.995\n7827,0.995\n7828,0.995\n7829,0.02730478555206918\n7830,0.005\n7831,0.005\n7832,0.005\n7833,0.005\n7834,0.995\n7835,0.9891486875915889\n7836,0.995\n7837,0.995\n7838,0.995\n7839,0.995\n7840,0.995\n7841,0.005\n7842,0.995\n7843,0.995\n7844,0.005\n7845,0.995\n7846,0.005\n7847,0.005\n7848,0.995\n7849,0.995\n7850,0.005\n7851,0.005\n7852,0.005\n7853,0.995\n7854,0.005\n7855,0.005\n7856,0.995\n7857,0.005\n7858,0.005\n7859,0.005\n7860,0.005\n7861,0.9947549825066729\n7862,0.005\n7863,0.005\n7864,0.995\n7865,0.005\n7866,0.005\n7867,0.005\n7868,0.005\n7869,0.995\n7870,0.005\n7871,0.005\n7872,0.005\n7873,0.995\n7874,0.995\n7875,0.995\n7876,0.007837100662070858\n7877,0.005\n7878,0.005\n7879,0.005\n7880,0.995\n7881,0.995\n7882,0.005\n7883,0.005\n7884,0.005\n7885,0.995\n7886,0.005\n7887,0.995\n7888,0.005\n7889,0.005\n7890,0.005\n7891,0.995\n7892,0.995\n7893,0.995\n7894,0.995\n7895,0.005\n7896,0.995\n7897,0.005\n7898,0.995\n7899,0.005\n7900,0.995\n7901,0.995\n7902,0.995\n7903,0.995\n7904,0.005\n7905,0.005\n7906,0.995\n7907,0.995\n7908,0.995\n7909,0.995\n7910,0.005\n7911,0.995\n7912,0.995\n7913,0.995\n7914,0.995\n7915,0.005\n7916,0.995\n7917,0.005\n7918,0.995\n7919,0.005\n7920,0.995\n7921,0.995\n7922,0.995\n7923,0.995\n7924,0.005\n7925,0.995\n7926,0.005\n7927,0.995\n7928,0.995\n7929,0.995\n7930,0.005\n7931,0.005\n7932,0.995\n7933,0.995\n7934,0.995\n7935,0.995\n7936,0.005\n7937,0.995\n7938,0.995\n7939,0.995\n7940,0.005\n7941,0.995\n7942,0.005\n7943,0.005\n7944,0.005\n7945,0.995\n7946,0.995\n7947,0.995\n7948,0.005\n7949,0.995\n7950,0.005\n7951,0.005\n7952,0.005\n7953,0.005\n7954,0.005\n7955,0.005\n7956,0.995\n7957,0.995\n7958,0.005\n7959,0.995\n7960,0.005\n7961,0.005\n7962,0.005\n7963,0.995\n7964,0.995\n7965,0.005\n7966,0.995\n7967,0.995\n7968,0.005\n7969,0.995\n7970,0.005\n7971,0.005\n7972,0.005\n7973,0.005\n7974,0.005\n7975,0.995\n7976,0.005\n7977,0.995\n7978,0.005\n7979,0.005\n7980,0.005\n7981,0.995\n7982,0.995\n7983,0.005\n7984,0.005\n7985,0.995\n7986,0.995\n7987,0.005\n7988,0.995\n7989,0.995\n7990,0.995\n7991,0.005\n7992,0.005\n7993,0.995\n7994,0.005\n7995,0.005\n7996,0.005\n7997,0.005\n7998,0.995\n7999,0.995\n8000,0.005\n8001,0.005\n8002,0.005\n8003,0.995\n8004,0.005\n8005,0.995\n8006,0.005\n8007,0.005\n8008,0.995\n8009,0.005\n8010,0.995\n8011,0.995\n8012,0.005\n8013,0.005\n8014,0.995\n8015,0.005\n8016,0.995\n8017,0.005\n8018,0.995\n8019,0.995\n8020,0.005\n8021,0.995\n8022,0.005\n8023,0.995\n8024,0.995\n8025,0.005\n8026,0.005\n8027,0.995\n8028,0.995\n8029,0.005\n8030,0.005\n8031,0.995\n8032,0.995\n8033,0.995\n8034,0.005\n8035,0.005\n8036,0.005\n8037,0.995\n8038,0.005\n8039,0.005\n8040,0.005\n8041,0.005\n8042,0.005\n8043,0.995\n8044,0.005\n8045,0.995\n8046,0.005\n8047,0.005\n8048,0.005\n8049,0.995\n8050,0.995\n8051,0.995\n8052,0.005\n8053,0.005\n8054,0.995\n8055,0.2297078944598549\n8056,0.995\n8057,0.995\n8058,0.995\n8059,0.005\n8060,0.995\n8061,0.995\n8062,0.005\n8063,0.005\n8064,0.995\n8065,0.995\n8066,0.005\n8067,0.995\n8068,0.995\n8069,0.005\n8070,0.995\n8071,0.005\n8072,0.995\n8073,0.22147732362214972\n8074,0.995\n8075,0.995\n8076,0.995\n8077,0.995\n8078,0.995\n8079,0.005\n8080,0.995\n8081,0.005\n8082,0.995\n8083,0.995\n8084,0.9376301236964648\n8085,0.005\n8086,0.995\n8087,0.005\n8088,0.995\n8089,0.005\n8090,0.005\n8091,0.995\n8092,0.995\n8093,0.005\n8094,0.005\n8095,0.995\n8096,0.995\n8097,0.005\n8098,0.995\n8099,0.005\n8100,0.005\n8101,0.995\n8102,0.995\n8103,0.04361850629401281\n8104,0.005\n8105,0.005\n8106,0.005\n8107,0.005\n8108,0.995\n8109,0.005\n8110,0.995\n8111,0.005\n8112,0.005\n8113,0.995\n8114,0.995\n8115,0.005\n8116,0.005\n8117,0.995\n8118,0.995\n8119,0.005\n8120,0.005\n8121,0.995\n8122,0.995\n8123,0.995\n8124,0.005\n8125,0.005\n8126,0.995\n8127,0.995\n8128,0.005\n8129,0.005\n8130,0.005\n8131,0.995\n8132,0.005\n8133,0.995\n8134,0.995\n8135,0.005\n8136,0.005\n8137,0.03167334891548094\n8138,0.005\n8139,0.995\n8140,0.995\n8141,0.005\n8142,0.995\n8143,0.995\n8144,0.005\n8145,0.995\n8146,0.005\n8147,0.995\n8148,0.995\n8149,0.005\n8150,0.005\n8151,0.005\n8152,0.005\n8153,0.995\n8154,0.005\n8155,0.995\n8156,0.005\n8157,0.995\n8158,0.995\n8159,0.995\n8160,0.995\n8161,0.005\n8162,0.995\n8163,0.005\n8164,0.995\n8165,0.005\n8166,0.995\n8167,0.005\n8168,0.005\n8169,0.995\n8170,0.005\n8171,0.005\n8172,0.005\n8173,0.005\n8174,0.995\n8175,0.005\n8176,0.005\n8177,0.995\n8178,0.005\n8179,0.005\n8180,0.995\n8181,0.005\n8182,0.995\n8183,0.995\n8184,0.005\n8185,0.995\n8186,0.005\n8187,0.995\n8188,0.005\n8189,0.005\n8190,0.995\n8191,0.995\n8192,0.005\n8193,0.995\n8194,0.995\n8195,0.005\n8196,0.005\n8197,0.995\n8198,0.005\n8199,0.995\n8200,0.005\n8201,0.995\n8202,0.995\n8203,0.005\n8204,0.005\n8205,0.995\n8206,0.005\n8207,0.995\n8208,0.995\n8209,0.005\n8210,0.005\n8211,0.995\n8212,0.995\n8213,0.995\n8214,0.005\n8215,0.995\n8216,0.995\n8217,0.995\n8218,0.005\n8219,0.995\n8220,0.005\n8221,0.995\n8222,0.005\n8223,0.995\n8224,0.995\n8225,0.005\n8226,0.005\n8227,0.995\n8228,0.995\n8229,0.995\n8230,0.995\n8231,0.005\n8232,0.005\n8233,0.005\n8234,0.995\n8235,0.005\n8236,0.005\n8237,0.005\n8238,0.995\n8239,0.005\n8240,0.995\n8241,0.005\n8242,0.995\n8243,0.995\n8244,0.005\n8245,0.005\n8246,0.995\n8247,0.005\n8248,0.995\n8249,0.995\n8250,0.005\n8251,0.005\n8252,0.005\n8253,0.005\n8254,0.005\n8255,0.995\n8256,0.9812416768527348\n8257,0.005\n8258,0.995\n8259,0.995\n8260,0.995\n8261,0.005\n8262,0.005\n8263,0.995\n8264,0.995\n8265,0.005\n8266,0.005\n8267,0.995\n8268,0.005\n8269,0.995\n8270,0.005\n8271,0.995\n8272,0.005\n8273,0.005\n8274,0.005\n8275,0.005\n8276,0.995\n8277,0.005\n8278,0.995\n8279,0.995\n8280,0.995\n8281,0.995\n8282,0.005\n8283,0.995\n8284,0.005\n8285,0.995\n8286,0.995\n8287,0.005\n8288,0.995\n8289,0.005\n8290,0.005\n8291,0.995\n8292,0.995\n8293,0.005\n8294,0.005\n8295,0.005\n8296,0.005\n8297,0.005\n8298,0.005\n8299,0.005\n8300,0.005\n8301,0.995\n8302,0.005\n8303,0.995\n8304,0.995\n8305,0.995\n8306,0.995\n8307,0.005\n8308,0.995\n8309,0.995\n8310,0.995\n8311,0.005\n8312,0.005\n8313,0.005\n8314,0.005\n8315,0.005\n8316,0.995\n8317,0.005\n8318,0.005\n8319,0.995\n8320,0.005\n8321,0.995\n8322,0.005\n8323,0.995\n8324,0.995\n8325,0.995\n8326,0.995\n8327,0.995\n8328,0.005\n8329,0.005\n8330,0.005\n8331,0.995\n8332,0.995\n8333,0.005\n8334,0.005\n8335,0.995\n8336,0.005\n8337,0.995\n8338,0.005\n8339,0.995\n8340,0.005\n8341,0.995\n8342,0.995\n8343,0.995\n8344,0.995\n8345,0.005\n8346,0.995\n8347,0.995\n8348,0.005\n8349,0.005\n8350,0.995\n8351,0.005\n8352,0.005\n8353,0.005\n8354,0.005\n8355,0.995\n8356,0.005\n8357,0.995\n8358,0.2529756487367142\n8359,0.005\n8360,0.995\n8361,0.995\n8362,0.995\n8363,0.005\n8364,0.995\n8365,0.005\n8366,0.005\n8367,0.005\n8368,0.005\n8369,0.995\n8370,0.005\n8371,0.005\n8372,0.005\n8373,0.005\n8374,0.005\n8375,0.995\n8376,0.005\n8377,0.005\n8378,0.995\n8379,0.995\n8380,0.995\n8381,0.005\n8382,0.995\n8383,0.005\n8384,0.995\n8385,0.005\n8386,0.005\n8387,0.005\n8388,0.995\n8389,0.995\n8390,0.995\n8391,0.005\n8392,0.995\n8393,0.005\n8394,0.995\n8395,0.995\n8396,0.995\n8397,0.005\n8398,0.995\n8399,0.995\n8400,0.005\n8401,0.005\n8402,0.005\n8403,0.995\n8404,0.005\n8405,0.005\n8406,0.005\n8407,0.995\n8408,0.005\n8409,0.005\n8410,0.005\n8411,0.995\n8412,0.995\n8413,0.005\n8414,0.995\n8415,0.995\n8416,0.995\n8417,0.005\n8418,0.005\n8419,0.995\n8420,0.005\n8421,0.005\n8422,0.995\n8423,0.005\n8424,0.995\n8425,0.005\n8426,0.005\n8427,0.005\n8428,0.005\n8429,0.005\n8430,0.995\n8431,0.005\n8432,0.005\n8433,0.995\n8434,0.995\n8435,0.005\n8436,0.005\n8437,0.005\n8438,0.995\n8439,0.995\n8440,0.995\n8441,0.995\n8442,0.995\n8443,0.005\n8444,0.995\n8445,0.995\n8446,0.005\n8447,0.005\n8448,0.995\n8449,0.995\n8450,0.005\n8451,0.005\n8452,0.005\n8453,0.005\n8454,0.005\n8455,0.995\n8456,0.005\n8457,0.995\n8458,0.005\n8459,0.005\n8460,0.005\n8461,0.995\n8462,0.005\n8463,0.995\n8464,0.995\n8465,0.005\n8466,0.005\n8467,0.995\n8468,0.005\n8469,0.005\n8470,0.995\n8471,0.005\n8472,0.005\n8473,0.005\n8474,0.995\n8475,0.005\n8476,0.995\n8477,0.005\n8478,0.995\n8479,0.995\n8480,0.005\n8481,0.995\n8482,0.005\n8483,0.995\n8484,0.005\n8485,0.995\n8486,0.995\n8487,0.005\n8488,0.995\n8489,0.005\n8490,0.005\n8491,0.005\n8492,0.005\n8493,0.005\n8494,0.005\n8495,0.005\n8496,0.995\n8497,0.995\n8498,0.005\n8499,0.005\n8500,0.005\n8501,0.005\n8502,0.005\n8503,0.995\n8504,0.005\n8505,0.995\n8506,0.005\n8507,0.005\n8508,0.005\n8509,0.995\n8510,0.005\n8511,0.005\n8512,0.995\n8513,0.005\n8514,0.005\n8515,0.995\n8516,0.995\n8517,0.005\n8518,0.995\n8519,0.995\n8520,0.005\n8521,0.005\n8522,0.005\n8523,0.005\n8524,0.005\n8525,0.005\n8526,0.005\n8527,0.995\n8528,0.995\n8529,0.005\n8530,0.005\n8531,0.005\n8532,0.995\n8533,0.005\n8534,0.995\n8535,0.005\n8536,0.005\n8537,0.005\n8538,0.005\n8539,0.995\n8540,0.995\n8541,0.995\n8542,0.995\n8543,0.995\n8544,0.995\n8545,0.995\n8546,0.005\n8547,0.995\n8548,0.995\n8549,0.005\n8550,0.005\n8551,0.995\n8552,0.23935574124116354\n8553,0.005\n8554,0.005\n8555,0.005\n8556,0.995\n8557,0.995\n8558,0.005\n8559,0.995\n8560,0.995\n8561,0.995\n8562,0.995\n8563,0.005\n8564,0.995\n8565,0.995\n8566,0.005\n8567,0.005\n8568,0.005\n8569,0.995\n8570,0.005\n8571,0.995\n8572,0.995\n8573,0.995\n8574,0.005\n8575,0.005\n8576,0.005\n8577,0.005\n8578,0.995\n8579,0.995\n8580,0.005\n8581,0.995\n8582,0.005\n8583,0.995\n8584,0.005\n8585,0.005\n8586,0.005\n8587,0.005\n8588,0.005\n8589,0.995\n8590,0.995\n8591,0.005\n8592,0.995\n8593,0.005\n8594,0.005\n8595,0.005\n8596,0.995\n8597,0.005\n8598,0.005\n8599,0.005\n8600,0.995\n8601,0.995\n8602,0.005\n8603,0.995\n8604,0.005\n8605,0.005\n8606,0.005\n8607,0.995\n8608,0.005\n8609,0.995\n8610,0.995\n8611,0.995\n8612,0.995\n8613,0.995\n8614,0.005\n8615,0.995\n8616,0.005\n8617,0.005\n8618,0.005\n8619,0.005\n8620,0.995\n8621,0.005\n8622,0.995\n8623,0.005\n8624,0.005\n8625,0.005\n8626,0.995\n8627,0.005\n8628,0.995\n8629,0.995\n8630,0.995\n8631,0.005\n8632,0.995\n8633,0.995\n8634,0.995\n8635,0.995\n8636,0.995\n8637,0.995\n8638,0.995\n8639,0.005\n8640,0.005\n8641,0.005\n8642,0.995\n8643,0.995\n8644,0.005\n8645,0.995\n8646,0.995\n8647,0.005\n8648,0.995\n8649,0.005\n8650,0.005\n8651,0.995\n8652,0.005\n8653,0.995\n8654,0.995\n8655,0.005\n8656,0.005\n8657,0.005\n8658,0.005\n8659,0.005\n8660,0.005\n8661,0.995\n8662,0.005\n8663,0.995\n8664,0.005\n8665,0.005\n8666,0.995\n8667,0.005\n8668,0.995\n8669,0.005\n8670,0.995\n8671,0.995\n8672,0.995\n8673,0.995\n8674,0.005\n8675,0.995\n8676,0.995\n8677,0.995\n8678,0.005\n8679,0.005\n8680,0.005\n8681,0.005\n8682,0.005\n8683,0.995\n8684,0.005\n8685,0.005\n8686,0.005\n8687,0.005\n8688,0.995\n8689,0.005\n8690,0.005\n8691,0.995\n8692,0.005\n8693,0.995\n8694,0.995\n8695,0.995\n8696,0.995\n8697,0.995\n8698,0.005\n8699,0.995\n8700,0.995\n8701,0.005\n8702,0.672740062352454\n8703,0.995\n8704,0.005\n8705,0.005\n8706,0.995\n8707,0.995\n8708,0.995\n8709,0.005\n8710,0.005\n8711,0.005\n8712,0.995\n8713,0.995\n8714,0.005\n8715,0.995\n8716,0.005\n8717,0.005\n8718,0.005\n8719,0.995\n8720,0.995\n8721,0.995\n8722,0.995\n8723,0.005\n8724,0.005\n8725,0.995\n8726,0.005\n8727,0.995\n8728,0.995\n8729,0.995\n8730,0.8122745583984804\n8731,0.9948547109951047\n8732,0.995\n8733,0.995\n8734,0.005\n8735,0.006831303260425089\n8736,0.995\n8737,0.005\n8738,0.995\n8739,0.995\n8740,0.995\n8741,0.005\n8742,0.005\n8743,0.005\n8744,0.005\n8745,0.995\n8746,0.995\n8747,0.005\n8748,0.005\n8749,0.005\n8750,0.005\n8751,0.005\n8752,0.005\n8753,0.005\n8754,0.005\n8755,0.995\n8756,0.995\n8757,0.005\n8758,0.995\n8759,0.995\n8760,0.005\n8761,0.9884676119733646\n8762,0.995\n8763,0.005\n8764,0.005\n8765,0.005\n8766,0.005\n8767,0.995\n8768,0.995\n8769,0.005\n8770,0.005\n8771,0.995\n8772,0.995\n8773,0.005\n8774,0.005\n8775,0.995\n8776,0.005\n8777,0.005\n8778,0.005\n8779,0.995\n8780,0.005\n8781,0.005\n8782,0.005\n8783,0.005\n8784,0.995\n8785,0.005\n8786,0.995\n8787,0.005\n8788,0.995\n8789,0.995\n8790,0.005\n8791,0.995\n8792,0.995\n8793,0.995\n8794,0.995\n8795,0.005\n8796,0.995\n8797,0.995\n8798,0.005\n8799,0.995\n8800,0.995\n8801,0.995\n8802,0.995\n8803,0.005\n8804,0.995\n8805,0.005\n8806,0.1805355457398406\n8807,0.995\n8808,0.005\n8809,0.995\n8810,0.005\n8811,0.995\n8812,0.995\n8813,0.005\n8814,0.005\n8815,0.995\n8816,0.995\n8817,0.995\n8818,0.995\n8819,0.995\n8820,0.005\n8821,0.995\n8822,0.995\n8823,0.995\n8824,0.005\n8825,0.005\n8826,0.005\n8827,0.995\n8828,0.995\n8829,0.995\n8830,0.995\n8831,0.995\n8832,0.005\n8833,0.005\n8834,0.005\n8835,0.995\n8836,0.005\n8837,0.995\n8838,0.995\n8839,0.995\n8840,0.005\n8841,0.005\n8842,0.995\n8843,0.995\n8844,0.005\n8845,0.005\n8846,0.995\n8847,0.9502590240042874\n8848,0.005\n8849,0.005\n8850,0.8070398137482266\n8851,0.005\n8852,0.005\n8853,0.005\n8854,0.005\n8855,0.995\n8856,0.005\n8857,0.995\n8858,0.005\n8859,0.005\n8860,0.995\n8861,0.995\n8862,0.995\n8863,0.995\n8864,0.995\n8865,0.995\n8866,0.005\n8867,0.005\n8868,0.995\n8869,0.995\n8870,0.995\n8871,0.005\n8872,0.005\n8873,0.005\n8874,0.005\n8875,0.005\n8876,0.005\n8877,0.995\n8878,0.995\n8879,0.995\n8880,0.995\n8881,0.995\n8882,0.995\n8883,0.995\n8884,0.995\n8885,0.005\n8886,0.005\n8887,0.005\n8888,0.995\n8889,0.995\n8890,0.005\n8891,0.995\n8892,0.995\n8893,0.005\n8894,0.005\n8895,0.005\n8896,0.005\n8897,0.995\n8898,0.995\n8899,0.005\n8900,0.005\n8901,0.995\n8902,0.005\n8903,0.995\n8904,0.005\n8905,0.005\n8906,0.005\n8907,0.995\n8908,0.005\n8909,0.005\n8910,0.005\n8911,0.005\n8912,0.005\n8913,0.995\n8914,0.005\n8915,0.995\n8916,0.005\n8917,0.005\n8918,0.995\n8919,0.995\n8920,0.995\n8921,0.005\n8922,0.005\n8923,0.005\n8924,0.995\n8925,0.005\n8926,0.005\n8927,0.995\n8928,0.005\n8929,0.005\n8930,0.005\n8931,0.005\n8932,0.005\n8933,0.995\n8934,0.005\n8935,0.995\n8936,0.995\n8937,0.005\n8938,0.995\n8939,0.995\n8940,0.995\n8941,0.005\n8942,0.005\n8943,0.005\n8944,0.995\n8945,0.005\n8946,0.005\n8947,0.995\n8948,0.995\n8949,0.005\n8950,0.995\n8951,0.005\n8952,0.995\n8953,0.995\n8954,0.005\n8955,0.005\n8956,0.005\n8957,0.005\n8958,0.995\n8959,0.995\n8960,0.995\n8961,0.995\n8962,0.005\n8963,0.005\n8964,0.995\n8965,0.995\n8966,0.995\n8967,0.995\n8968,0.995\n8969,0.995\n8970,0.995\n8971,0.995\n8972,0.005\n8973,0.995\n8974,0.995\n8975,0.995\n8976,0.995\n8977,0.995\n8978,0.005\n8979,0.005\n8980,0.005\n8981,0.005\n8982,0.995\n8983,0.995\n8984,0.005\n8985,0.995\n8986,0.995\n8987,0.995\n8988,0.005\n8989,0.005\n8990,0.995\n8991,0.995\n8992,0.995\n8993,0.995\n8994,0.005\n8995,0.9802043080672791\n8996,0.005\n8997,0.995\n8998,0.995\n8999,0.005\n9000,0.995\n9001,0.995\n9002,0.005\n9003,0.995\n9004,0.9945322428514113\n9005,0.005\n9006,0.995\n9007,0.005\n9008,0.005\n9009,0.995\n9010,0.005\n9011,0.995\n9012,0.005\n9013,0.995\n9014,0.005\n9015,0.005\n9016,0.005\n9017,0.995\n9018,0.995\n9019,0.005\n9020,0.005\n9021,0.995\n9022,0.995\n9023,0.995\n9024,0.005\n9025,0.995\n9026,0.995\n9027,0.995\n9028,0.005\n9029,0.005\n9030,0.995\n9031,0.995\n9032,0.005\n9033,0.005\n9034,0.005\n9035,0.005\n9036,0.995\n9037,0.005\n9038,0.995\n9039,0.005\n9040,0.995\n9041,0.005\n9042,0.005\n9043,0.005\n9044,0.995\n9045,0.995\n9046,0.005\n9047,0.005\n9048,0.005\n9049,0.005\n9050,0.005\n9051,0.995\n9052,0.005\n9053,0.005\n9054,0.995\n9055,0.995\n9056,0.005\n9057,0.005\n9058,0.005\n9059,0.995\n9060,0.005\n9061,0.995\n9062,0.995\n9063,0.995\n9064,0.995\n9065,0.005\n9066,0.995\n9067,0.995\n9068,0.005\n9069,0.995\n9070,0.005\n9071,0.005\n9072,0.995\n9073,0.995\n9074,0.005\n9075,0.995\n9076,0.995\n9077,0.005\n9078,0.005\n9079,0.005\n9080,0.995\n9081,0.005\n9082,0.995\n9083,0.995\n9084,0.995\n9085,0.995\n9086,0.995\n9087,0.005\n9088,0.005\n9089,0.005\n9090,0.005\n9091,0.005\n9092,0.995\n9093,0.995\n9094,0.005\n9095,0.005243059443783776\n9096,0.005\n9097,0.005\n9098,0.005\n9099,0.995\n9100,0.005\n9101,0.995\n9102,0.995\n9103,0.005\n9104,0.03521793947547583\n9105,0.995\n9106,0.995\n9107,0.005\n9108,0.995\n9109,0.005\n9110,0.005\n9111,0.995\n9112,0.005\n9113,0.005\n9114,0.005\n9115,0.995\n9116,0.005\n9117,0.995\n9118,0.005\n9119,0.995\n9120,0.005\n9121,0.005\n9122,0.005\n9123,0.005\n9124,0.005\n9125,0.005\n9126,0.995\n9127,0.005\n9128,0.995\n9129,0.995\n9130,0.005\n9131,0.005\n9132,0.995\n9133,0.995\n9134,0.995\n9135,0.995\n9136,0.995\n9137,0.005\n9138,0.995\n9139,0.995\n9140,0.995\n9141,0.005\n9142,0.005\n9143,0.995\n9144,0.995\n9145,0.005\n9146,0.005\n9147,0.005\n9148,0.995\n9149,0.005\n9150,0.005\n9151,0.995\n9152,0.005\n9153,0.995\n9154,0.005\n9155,0.995\n9156,0.005\n9157,0.005\n9158,0.995\n9159,0.995\n9160,0.005\n9161,0.995\n9162,0.995\n9163,0.005\n9164,0.995\n9165,0.995\n9166,0.005\n9167,0.995\n9168,0.995\n9169,0.995\n9170,0.995\n9171,0.995\n9172,0.00676559590458673\n9173,0.005\n9174,0.995\n9175,0.995\n9176,0.005\n9177,0.995\n9178,0.005\n9179,0.995\n9180,0.005\n9181,0.995\n9182,0.005\n9183,0.005\n9184,0.995\n9185,0.995\n9186,0.005\n9187,0.995\n9188,0.995\n9189,0.995\n9190,0.995\n9191,0.995\n9192,0.005\n9193,0.995\n9194,0.005\n9195,0.005\n9196,0.005\n9197,0.005\n9198,0.005\n9199,0.995\n9200,0.995\n9201,0.005\n9202,0.995\n9203,0.005\n9204,0.995\n9205,0.005\n9206,0.995\n9207,0.995\n9208,0.005\n9209,0.005\n9210,0.005\n9211,0.005\n9212,0.995\n9213,0.12014718304012738\n9214,0.995\n9215,0.005\n9216,0.005\n9217,0.995\n9218,0.995\n9219,0.005\n9220,0.005\n9221,0.005\n9222,0.995\n9223,0.005\n9224,0.995\n9225,0.005\n9226,0.005\n9227,0.995\n9228,0.005\n9229,0.005\n9230,0.995\n9231,0.995\n9232,0.005\n9233,0.995\n9234,0.995\n9235,0.005\n9236,0.005\n9237,0.005\n9238,0.995\n9239,0.005\n9240,0.005\n9241,0.995\n9242,0.995\n9243,0.005\n9244,0.995\n9245,0.995\n9246,0.995\n9247,0.005\n9248,0.995\n9249,0.995\n9250,0.005\n9251,0.005\n9252,0.005\n9253,0.995\n9254,0.995\n9255,0.995\n9256,0.005\n9257,0.005\n9258,0.995\n9259,0.995\n9260,0.995\n9261,0.995\n9262,0.005\n9263,0.995\n9264,0.005\n9265,0.005\n9266,0.995\n9267,0.005\n9268,0.005\n9269,0.995\n9270,0.995\n9271,0.005\n9272,0.995\n9273,0.995\n9274,0.995\n9275,0.995\n9276,0.005\n9277,0.995\n9278,0.005\n9279,0.995\n9280,0.995\n9281,0.995\n9282,0.995\n9283,0.005\n9284,0.995\n9285,0.995\n9286,0.995\n9287,0.995\n9288,0.005\n9289,0.995\n9290,0.995\n9291,0.995\n9292,0.005\n9293,0.005\n9294,0.995\n9295,0.995\n9296,0.995\n9297,0.995\n9298,0.995\n9299,0.005\n9300,0.995\n9301,0.005\n9302,0.995\n9303,0.005\n9304,0.995\n9305,0.005\n9306,0.005\n9307,0.005\n9308,0.019203772240399618\n9309,0.005\n9310,0.995\n9311,0.995\n9312,0.995\n9313,0.005\n9314,0.006722851564350973\n9315,0.995\n9316,0.995\n9317,0.005\n9318,0.005\n9319,0.995\n9320,0.005\n9321,0.995\n9322,0.995\n9323,0.995\n9324,0.005\n9325,0.005\n9326,0.995\n9327,0.005\n9328,0.005\n9329,0.005\n9330,0.995\n9331,0.995\n9332,0.005\n9333,0.995\n9334,0.995\n9335,0.995\n9336,0.995\n9337,0.005\n9338,0.005\n9339,0.005\n9340,0.005\n9341,0.995\n9342,0.995\n9343,0.995\n9344,0.995\n9345,0.995\n9346,0.995\n9347,0.995\n9348,0.005\n9349,0.005\n9350,0.995\n9351,0.005\n9352,0.005\n9353,0.005\n9354,0.995\n9355,0.005\n9356,0.995\n9357,0.995\n9358,0.995\n9359,0.005\n9360,0.995\n9361,0.995\n9362,0.995\n9363,0.005\n9364,0.995\n9365,0.995\n9366,0.995\n9367,0.995\n9368,0.005\n9369,0.995\n9370,0.005\n9371,0.005\n9372,0.995\n9373,0.005\n9374,0.005\n9375,0.995\n9376,0.005\n9377,0.995\n9378,0.995\n9379,0.005\n9380,0.995\n9381,0.995\n9382,0.005\n9383,0.005\n9384,0.005\n9385,0.005\n9386,0.995\n9387,0.005\n9388,0.995\n9389,0.005\n9390,0.005\n9391,0.005\n9392,0.005\n9393,0.995\n9394,0.995\n9395,0.005\n9396,0.995\n9397,0.995\n9398,0.995\n9399,0.005\n9400,0.005\n9401,0.995\n9402,0.995\n9403,0.005\n9404,0.005\n9405,0.005\n9406,0.005\n9407,0.995\n9408,0.005\n9409,0.995\n9410,0.995\n9411,0.005\n9412,0.005\n9413,0.995\n9414,0.995\n9415,0.995\n9416,0.995\n9417,0.995\n9418,0.005\n9419,0.995\n9420,0.995\n9421,0.995\n9422,0.005\n9423,0.005\n9424,0.995\n9425,0.005\n9426,0.995\n9427,0.995\n9428,0.995\n9429,0.005\n9430,0.995\n9431,0.995\n9432,0.005\n9433,0.995\n9434,0.005\n9435,0.995\n9436,0.995\n9437,0.995\n9438,0.005\n9439,0.005\n9440,0.005\n9441,0.995\n9442,0.005\n9443,0.995\n9444,0.005\n9445,0.995\n9446,0.005\n9447,0.005\n9448,0.995\n9449,0.995\n9450,0.005\n9451,0.005\n9452,0.005\n9453,0.995\n9454,0.005\n9455,0.005\n9456,0.995\n9457,0.005\n9458,0.995\n9459,0.005\n9460,0.995\n9461,0.005\n9462,0.005\n9463,0.005\n9464,0.005\n9465,0.995\n9466,0.005\n9467,0.005\n9468,0.005\n9469,0.005\n9470,0.995\n9471,0.005\n9472,0.995\n9473,0.995\n9474,0.005\n9475,0.005\n9476,0.995\n9477,0.995\n9478,0.995\n9479,0.995\n9480,0.995\n9481,0.995\n9482,0.005\n9483,0.005\n9484,0.005\n9485,0.005\n9486,0.005\n9487,0.005\n9488,0.995\n9489,0.995\n9490,0.995\n9491,0.005\n9492,0.005\n9493,0.995\n9494,0.005\n9495,0.995\n9496,0.005\n9497,0.995\n9498,0.005\n9499,0.005\n9500,0.995\n9501,0.995\n9502,0.005\n9503,0.005\n9504,0.995\n9505,0.995\n9506,0.005\n9507,0.005\n9508,0.005\n9509,0.995\n9510,0.995\n9511,0.005\n9512,0.005\n9513,0.995\n9514,0.005\n9515,0.995\n9516,0.995\n9517,0.005\n9518,0.005\n9519,0.005\n9520,0.995\n9521,0.995\n9522,0.005\n9523,0.005\n9524,0.336123504362244\n9525,0.005\n9526,0.995\n9527,0.005\n9528,0.005\n9529,0.005\n9530,0.995\n9531,0.995\n9532,0.005\n9533,0.995\n9534,0.995\n9535,0.995\n9536,0.005\n9537,0.995\n9538,0.005\n9539,0.995\n9540,0.005\n9541,0.005\n9542,0.005\n9543,0.005\n9544,0.9941955032374715\n9545,0.005\n9546,0.995\n9547,0.995\n9548,0.995\n9549,0.995\n9550,0.995\n9551,0.995\n9552,0.995\n9553,0.005\n9554,0.995\n9555,0.005\n9556,0.005\n9557,0.995\n9558,0.995\n9559,0.995\n9560,0.995\n9561,0.005\n9562,0.005\n9563,0.995\n9564,0.005\n9565,0.995\n9566,0.995\n9567,0.995\n9568,0.995\n9569,0.995\n9570,0.005\n9571,0.005\n9572,0.995\n9573,0.995\n9574,0.005\n9575,0.005\n9576,0.995\n9577,0.995\n9578,0.005\n9579,0.005\n9580,0.005\n9581,0.005\n9582,0.005\n9583,0.995\n9584,0.995\n9585,0.005\n9586,0.005\n9587,0.005\n9588,0.005\n9589,0.995\n9590,0.005\n9591,0.005\n9592,0.005\n9593,0.005\n9594,0.995\n9595,0.005\n9596,0.013848222827632064\n9597,0.005\n9598,0.995\n9599,0.995\n9600,0.005\n9601,0.005\n9602,0.995\n9603,0.005\n9604,0.995\n9605,0.005\n9606,0.995\n9607,0.995\n9608,0.995\n9609,0.005\n9610,0.005\n9611,0.005\n9612,0.995\n9613,0.995\n9614,0.14409864821571192\n9615,0.995\n9616,0.995\n9617,0.005\n9618,0.995\n9619,0.995\n9620,0.005\n9621,0.005\n9622,0.006542205213840916\n9623,0.005\n9624,0.995\n9625,0.995\n9626,0.005\n9627,0.005\n9628,0.005\n9629,0.005\n9630,0.995\n9631,0.005\n9632,0.005\n9633,0.005\n9634,0.9921992671980974\n9635,0.005\n9636,0.005\n9637,0.995\n9638,0.005\n9639,0.995\n9640,0.005\n9641,0.995\n9642,0.005\n9643,0.995\n9644,0.005\n9645,0.995\n9646,0.995\n9647,0.995\n9648,0.005\n9649,0.995\n9650,0.005\n9651,0.995\n9652,0.995\n9653,0.005\n9654,0.995\n9655,0.995\n9656,0.005\n9657,0.995\n9658,0.005\n9659,0.995\n9660,0.995\n9661,0.995\n9662,0.005\n9663,0.995\n9664,0.995\n9665,0.005\n9666,0.005\n9667,0.995\n9668,0.6718740907942728\n9669,0.995\n9670,0.005\n9671,0.995\n9672,0.005\n9673,0.005\n9674,0.995\n9675,0.995\n9676,0.005\n9677,0.995\n9678,0.995\n9679,0.995\n9680,0.995\n9681,0.995\n9682,0.005\n9683,0.005\n9684,0.995\n9685,0.005\n9686,0.995\n9687,0.995\n9688,0.005\n9689,0.005\n9690,0.995\n9691,0.995\n9692,0.005\n9693,0.005\n9694,0.995\n9695,0.995\n9696,0.995\n9697,0.005\n9698,0.995\n9699,0.995\n9700,0.005\n9701,0.995\n9702,0.995\n9703,0.995\n9704,0.005\n9705,0.005\n9706,0.005\n9707,0.995\n9708,0.995\n9709,0.005\n9710,0.005\n9711,0.005\n9712,0.005\n9713,0.995\n9714,0.995\n9715,0.012006638555423384\n9716,0.005\n9717,0.005\n9718,0.005\n9719,0.005\n9720,0.005\n9721,0.005\n9722,0.005\n9723,0.995\n9724,0.005\n9725,0.005\n9726,0.005\n9727,0.995\n9728,0.005\n9729,0.005\n9730,0.005\n9731,0.995\n9732,0.005\n9733,0.005\n9734,0.005\n9735,0.005\n9736,0.005\n9737,0.005\n9738,0.995\n9739,0.005\n9740,0.995\n9741,0.005\n9742,0.995\n9743,0.995\n9744,0.005\n9745,0.005\n9746,0.005\n9747,0.995\n9748,0.995\n9749,0.995\n9750,0.005\n9751,0.995\n9752,0.005\n9753,0.005\n9754,0.005\n9755,0.005\n9756,0.995\n9757,0.005\n9758,0.995\n9759,0.005\n9760,0.005\n9761,0.005\n9762,0.005\n9763,0.005\n9764,0.995\n9765,0.995\n9766,0.995\n9767,0.005\n9768,0.995\n9769,0.995\n9770,0.995\n9771,0.995\n9772,0.995\n9773,0.005\n9774,0.995\n9775,0.995\n9776,0.949009044497402\n9777,0.995\n9778,0.995\n9779,0.995\n9780,0.005\n9781,0.005\n9782,0.005\n9783,0.995\n9784,0.995\n9785,0.995\n9786,0.995\n9787,0.005\n9788,0.995\n9789,0.995\n9790,0.005\n9791,0.005\n9792,0.005\n9793,0.005\n9794,0.005\n9795,0.005\n9796,0.005\n9797,0.995\n9798,0.995\n9799,0.995\n9800,0.005\n9801,0.005\n9802,0.005\n9803,0.005\n9804,0.005\n9805,0.005\n9806,0.995\n9807,0.995\n9808,0.995\n9809,0.995\n9810,0.005\n9811,0.005\n9812,0.005\n9813,0.005\n9814,0.005\n9815,0.995\n9816,0.995\n9817,0.995\n9818,0.995\n9819,0.005\n9820,0.005\n9821,0.995\n9822,0.995\n9823,0.995\n9824,0.005\n9825,0.005\n9826,0.995\n9827,0.005\n9828,0.995\n9829,0.005\n9830,0.995\n9831,0.005\n9832,0.995\n9833,0.995\n9834,0.005\n9835,0.995\n9836,0.995\n9837,0.995\n9838,0.005\n9839,0.995\n9840,0.995\n9841,0.995\n9842,0.005\n9843,0.995\n9844,0.995\n9845,0.005\n9846,0.005\n9847,0.995\n9848,0.005\n9849,0.995\n9850,0.995\n9851,0.995\n9852,0.995\n9853,0.005\n9854,0.005\n9855,0.005\n9856,0.005\n9857,0.005\n9858,0.995\n9859,0.995\n9860,0.005\n9861,0.995\n9862,0.005\n9863,0.005\n9864,0.005\n9865,0.005\n9866,0.995\n9867,0.995\n9868,0.005\n9869,0.995\n9870,0.005\n9871,0.995\n9872,0.005\n9873,0.995\n9874,0.005\n9875,0.005\n9876,0.005\n9877,0.005\n9878,0.005\n9879,0.005\n9880,0.995\n9881,0.005\n9882,0.995\n9883,0.005\n9884,0.005\n9885,0.995\n9886,0.995\n9887,0.995\n9888,0.005\n9889,0.995\n9890,0.995\n9891,0.9928874531553559\n9892,0.005\n9893,0.005\n9894,0.005\n9895,0.995\n9896,0.995\n9897,0.005\n9898,0.005\n9899,0.005\n9900,0.005\n9901,0.005\n9902,0.005\n9903,0.995\n9904,0.005\n9905,0.005\n9906,0.005\n9907,0.005\n9908,0.005\n9909,0.005\n9910,0.995\n9911,0.995\n9912,0.995\n9913,0.005\n9914,0.995\n9915,0.005\n9916,0.995\n9917,0.995\n9918,0.995\n9919,0.995\n9920,0.995\n9921,0.995\n9922,0.005\n9923,0.005\n9924,0.005\n9925,0.995\n9926,0.995\n9927,0.005\n9928,0.005\n9929,0.005\n9930,0.005\n9931,0.995\n9932,0.995\n9933,0.995\n9934,0.995\n9935,0.995\n9936,0.005\n9937,0.995\n9938,0.995\n9939,0.995\n9940,0.995\n9941,0.995\n9942,0.005\n9943,0.995\n9944,0.995\n9945,0.005\n9946,0.995\n9947,0.995\n9948,0.005\n9949,0.005\n9950,0.005\n9951,0.005\n9952,0.005\n9953,0.005\n9954,0.995\n9955,0.995\n9956,0.005\n9957,0.005\n9958,0.005\n9959,0.995\n9960,0.995\n9961,0.005\n9962,0.995\n9963,0.005\n9964,0.005\n9965,0.995\n9966,0.005\n9967,0.995\n9968,0.995\n9969,0.995\n9970,0.995\n9971,0.005\n9972,0.005\n9973,0.995\n9974,0.005\n9975,0.005\n9976,0.995\n9977,0.005\n9978,0.005\n9979,0.005\n9980,0.005\n9981,0.005\n9982,0.995\n9983,0.005\n9984,0.995\n9985,0.995\n9986,0.995\n9987,0.995\n9988,0.995\n9989,0.995\n9990,0.995\n9991,0.995\n9992,0.995\n9993,0.005\n9994,0.005\n9995,0.005\n9996,0.995\n9997,0.995\n9998,0.005\n9999,0.005\n10000,0.995\n10001,0.005\n10002,0.005\n10003,0.995\n10004,0.995\n10005,0.005\n10006,0.005\n10007,0.005\n10008,0.005\n10009,0.005\n10010,0.995\n10011,0.995\n10012,0.005\n10013,0.005\n10014,0.005\n10015,0.995\n10016,0.005\n10017,0.005\n10018,0.005\n10019,0.005\n10020,0.005\n10021,0.005\n10022,0.995\n10023,0.995\n10024,0.995\n10025,0.995\n10026,0.995\n10027,0.995\n10028,0.005\n10029,0.9874554213067547\n10030,0.995\n10031,0.005\n10032,0.005\n10033,0.005\n10034,0.995\n10035,0.995\n10036,0.995\n10037,0.011333349889092102\n10038,0.995\n10039,0.995\n10040,0.005\n10041,0.995\n10042,0.9902610487610783\n10043,0.995\n10044,0.005\n10045,0.995\n10046,0.995\n10047,0.995\n10048,0.995\n10049,0.005\n10050,0.005\n10051,0.005\n10052,0.005\n10053,0.995\n10054,0.005\n10055,0.005\n10056,0.995\n10057,0.005\n10058,0.995\n10059,0.995\n10060,0.995\n10061,0.005\n10062,0.005\n10063,0.995\n10064,0.995\n10065,0.005\n10066,0.005\n10067,0.005\n10068,0.005\n10069,0.005\n10070,0.995\n10071,0.005\n10072,0.005\n10073,0.8539212309420353\n10074,0.005\n10075,0.005\n10076,0.005\n10077,0.005\n10078,0.995\n10079,0.005\n10080,0.995\n10081,0.005\n10082,0.005\n10083,0.005\n10084,0.995\n10085,0.995\n10086,0.995\n10087,0.995\n10088,0.005\n10089,0.005\n10090,0.005\n10091,0.005\n10092,0.995\n10093,0.014114271476102896\n10094,0.995\n10095,0.005\n10096,0.995\n10097,0.995\n10098,0.995\n10099,0.005\n10100,0.995\n10101,0.995\n10102,0.005\n10103,0.005\n10104,0.995\n10105,0.995\n10106,0.005\n10107,0.005\n10108,0.995\n10109,0.005\n10110,0.995\n10111,0.005\n10112,0.005\n10113,0.995\n10114,0.005\n10115,0.005\n10116,0.995\n10117,0.005\n10118,0.005\n10119,0.995\n10120,0.005\n10121,0.005\n10122,0.005\n10123,0.005\n10124,0.995\n10125,0.005\n10126,0.005\n10127,0.995\n10128,0.005\n10129,0.995\n10130,0.005\n10131,0.995\n10132,0.005\n10133,0.005\n10134,0.995\n10135,0.995\n10136,0.995\n10137,0.005\n10138,0.995\n10139,0.995\n10140,0.995\n10141,0.995\n10142,0.995\n10143,0.995\n10144,0.995\n10145,0.005\n10146,0.995\n10147,0.995\n10148,0.994422060846612\n10149,0.005\n10150,0.005\n10151,0.005\n10152,0.005\n10153,0.995\n10154,0.005\n10155,0.995\n10156,0.005\n10157,0.005\n10158,0.005\n10159,0.995\n10160,0.005\n10161,0.005\n10162,0.995\n10163,0.995\n10164,0.995\n10165,0.995\n10166,0.995\n10167,0.995\n10168,0.995\n10169,0.995\n10170,0.005\n10171,0.005\n10172,0.995\n10173,0.005\n10174,0.005\n10175,0.005\n10176,0.995\n10177,0.995\n10178,0.005\n10179,0.995\n10180,0.005\n10181,0.995\n10182,0.005\n10183,0.005\n10184,0.005\n10185,0.995\n10186,0.995\n10187,0.995\n10188,0.005\n10189,0.995\n10190,0.995\n10191,0.005\n10192,0.995\n10193,0.005\n10194,0.005\n10195,0.995\n10196,0.995\n10197,0.995\n10198,0.005\n10199,0.005\n10200,0.005\n10201,0.005\n10202,0.995\n10203,0.995\n10204,0.005\n10205,0.005\n10206,0.005\n10207,0.995\n10208,0.995\n10209,0.995\n10210,0.005\n10211,0.005\n10212,0.005\n10213,0.995\n10214,0.995\n10215,0.005\n10216,0.995\n10217,0.7943201344975457\n10218,0.005\n10219,0.005\n10220,0.995\n10221,0.995\n10222,0.995\n10223,0.005\n10224,0.005\n10225,0.005\n10226,0.005\n10227,0.005\n10228,0.005\n10229,0.005\n10230,0.01271161291026178\n10231,0.995\n10232,0.995\n10233,0.995\n10234,0.005\n10235,0.005\n10236,0.005\n10237,0.005\n10238,0.995\n10239,0.005\n10240,0.005\n10241,0.995\n10242,0.995\n10243,0.995\n10244,0.995\n10245,0.995\n10246,0.995\n10247,0.995\n10248,0.005\n10249,0.995\n10250,0.005\n10251,0.995\n10252,0.005\n10253,0.995\n10254,0.995\n10255,0.995\n10256,0.995\n10257,0.005\n10258,0.995\n10259,0.995\n10260,0.005\n10261,0.995\n10262,0.995\n10263,0.995\n10264,0.005\n10265,0.005\n10266,0.005\n10267,0.005\n10268,0.995\n10269,0.995\n10270,0.005\n10271,0.995\n10272,0.005\n10273,0.005\n10274,0.005\n10275,0.995\n10276,0.005\n10277,0.995\n10278,0.005\n10279,0.995\n10280,0.995\n10281,0.995\n10282,0.995\n10283,0.995\n10284,0.995\n10285,0.995\n10286,0.005\n10287,0.005\n10288,0.005\n10289,0.005\n10290,0.995\n10291,0.995\n10292,0.005\n10293,0.995\n10294,0.005\n10295,0.005\n10296,0.005\n10297,0.995\n10298,0.995\n10299,0.005\n10300,0.995\n10301,0.005\n10302,0.995\n10303,0.005\n10304,0.995\n10305,0.995\n10306,0.995\n10307,0.995\n10308,0.005\n10309,0.005\n10310,0.005\n10311,0.005\n10312,0.005\n10313,0.995\n10314,0.005\n10315,0.995\n10316,0.995\n10317,0.995\n10318,0.005\n10319,0.995\n10320,0.995\n10321,0.995\n10322,0.995\n10323,0.995\n10324,0.995\n10325,0.005\n10326,0.995\n10327,0.995\n10328,0.005\n10329,0.995\n10330,0.005\n10331,0.005\n10332,0.995\n10333,0.005\n10334,0.005\n10335,0.995\n10336,0.005\n10337,0.005\n10338,0.005\n10339,0.995\n10340,0.005\n10341,0.005\n10342,0.995\n10343,0.005\n10344,0.995\n10345,0.995\n10346,0.005\n10347,0.005\n10348,0.9913180656258362\n10349,0.995\n10350,0.995\n10351,0.005\n10352,0.995\n10353,0.005\n10354,0.995\n10355,0.995\n10356,0.005\n10357,0.995\n10358,0.005\n10359,0.995\n10360,0.005\n10361,0.005\n10362,0.005\n10363,0.005\n10364,0.995\n10365,0.005\n10366,0.995\n10367,0.995\n10368,0.995\n10369,0.005\n10370,0.995\n10371,0.005\n10372,0.995\n10373,0.005\n10374,0.995\n10375,0.005\n10376,0.005\n10377,0.005\n10378,0.005\n10379,0.995\n10380,0.995\n10381,0.005\n10382,0.005\n10383,0.005\n10384,0.995\n10385,0.995\n10386,0.005\n10387,0.995\n10388,0.005\n10389,0.005\n10390,0.995\n10391,0.005\n10392,0.005\n10393,0.005\n10394,0.005\n10395,0.995\n10396,0.995\n10397,0.005\n10398,0.005\n10399,0.995\n10400,0.995\n10401,0.005\n10402,0.005\n10403,0.995\n10404,0.005\n10405,0.005\n10406,0.995\n10407,0.005\n10408,0.005\n10409,0.995\n10410,0.005\n10411,0.005\n10412,0.005\n10413,0.005\n10414,0.995\n10415,0.995\n10416,0.005\n10417,0.005\n10418,0.005\n10419,0.995\n10420,0.995\n10421,0.995\n10422,0.953966427575672\n10423,0.005\n10424,0.005\n10425,0.995\n10426,0.005\n10427,0.995\n10428,0.7868765116993094\n10429,0.995\n10430,0.005\n10431,0.005\n10432,0.995\n10433,0.995\n10434,0.995\n10435,0.005\n10436,0.995\n10437,0.005\n10438,0.995\n10439,0.005\n10440,0.005\n10441,0.005\n10442,0.995\n10443,0.995\n10444,0.995\n10445,0.995\n10446,0.995\n10447,0.995\n10448,0.995\n10449,0.995\n10450,0.005\n10451,0.005\n10452,0.005\n10453,0.995\n10454,0.005\n10455,0.005\n10456,0.9700221150882071\n10457,0.005\n10458,0.995\n10459,0.005\n10460,0.005\n10461,0.005\n10462,0.995\n10463,0.005\n10464,0.995\n10465,0.995\n10466,0.995\n10467,0.005\n10468,0.005\n10469,0.005\n10470,0.005\n10471,0.005\n10472,0.005\n10473,0.995\n10474,0.995\n10475,0.005\n10476,0.995\n10477,0.005\n10478,0.995\n10479,0.995\n10480,0.005\n10481,0.005\n10482,0.005\n10483,0.005\n10484,0.995\n10485,0.995\n10486,0.005\n10487,0.995\n10488,0.995\n10489,0.005\n10490,0.995\n10491,0.005\n10492,0.995\n10493,0.005\n10494,0.995\n10495,0.005\n10496,0.995\n10497,0.995\n10498,0.005\n10499,0.995\n10500,0.995\n10501,0.995\n10502,0.995\n10503,0.005\n10504,0.995\n10505,0.995\n10506,0.005\n10507,0.005\n10508,0.005\n10509,0.995\n10510,0.005\n10511,0.005\n10512,0.005\n10513,0.005\n10514,0.995\n10515,0.005\n10516,0.995\n10517,0.995\n10518,0.995\n10519,0.005\n10520,0.995\n10521,0.005\n10522,0.995\n10523,0.995\n10524,0.995\n10525,0.995\n10526,0.995\n10527,0.005\n10528,0.005\n10529,0.005\n10530,0.005\n10531,0.995\n10532,0.005\n10533,0.005\n10534,0.995\n10535,0.005\n10536,0.005\n10537,0.995\n10538,0.005\n10539,0.005\n10540,0.995\n10541,0.995\n10542,0.995\n10543,0.005\n10544,0.005\n10545,0.005\n10546,0.005\n10547,0.995\n10548,0.995\n10549,0.005\n10550,0.995\n10551,0.995\n10552,0.005\n10553,0.005\n10554,0.995\n10555,0.005\n10556,0.995\n10557,0.005\n10558,0.995\n10559,0.995\n10560,0.005\n10561,0.995\n10562,0.995\n10563,0.995\n10564,0.995\n10565,0.995\n10566,0.995\n10567,0.995\n10568,0.995\n10569,0.995\n10570,0.995\n10571,0.995\n10572,0.005\n10573,0.005\n10574,0.995\n10575,0.005\n10576,0.005\n10577,0.005\n10578,0.995\n10579,0.985241924053138\n10580,0.995\n10581,0.995\n10582,0.005\n10583,0.995\n10584,0.995\n10585,0.005\n10586,0.005\n10587,0.995\n10588,0.995\n10589,0.005\n10590,0.005\n10591,0.995\n10592,0.005\n10593,0.995\n10594,0.995\n10595,0.995\n10596,0.005\n10597,0.005\n10598,0.995\n10599,0.995\n10600,0.995\n10601,0.8207859026405208\n10602,0.995\n10603,0.005\n10604,0.005\n10605,0.005\n10606,0.995\n10607,0.005\n10608,0.995\n10609,0.995\n10610,0.995\n10611,0.005\n10612,0.995\n10613,0.005\n10614,0.005\n10615,0.005\n10616,0.995\n10617,0.005\n10618,0.005\n10619,0.005\n10620,0.995\n10621,0.005\n10622,0.995\n10623,0.005\n10624,0.005\n10625,0.995\n10626,0.005\n10627,0.005\n10628,0.005\n10629,0.995\n10630,0.005\n10631,0.005\n10632,0.995\n10633,0.995\n10634,0.005\n10635,0.005\n10636,0.995\n10637,0.005\n10638,0.005\n10639,0.995\n10640,0.995\n10641,0.995\n10642,0.995\n10643,0.005\n10644,0.995\n10645,0.995\n10646,0.995\n10647,0.005\n10648,0.995\n10649,0.005\n10650,0.005\n10651,0.995\n10652,0.005\n10653,0.005\n10654,0.005\n10655,0.005\n10656,0.995\n10657,0.005\n10658,0.995\n10659,0.995\n10660,0.005\n10661,0.995\n10662,0.995\n10663,0.995\n10664,0.005\n10665,0.005\n10666,0.995\n10667,0.995\n10668,0.005\n10669,0.005\n10670,0.005\n10671,0.005\n10672,0.005\n10673,0.995\n10674,0.005\n10675,0.005\n10676,0.005\n10677,0.005\n10678,0.005\n10679,0.005\n10680,0.995\n10681,0.005\n10682,0.005\n10683,0.995\n10684,0.995\n10685,0.005\n10686,0.005\n10687,0.005\n10688,0.995\n10689,0.995\n10690,0.005\n10691,0.005\n10692,0.995\n10693,0.005\n10694,0.005\n10695,0.995\n10696,0.995\n10697,0.995\n10698,0.005\n10699,0.995\n10700,0.005\n10701,0.995\n10702,0.995\n10703,0.005\n10704,0.005\n10705,0.995\n10706,0.995\n10707,0.995\n10708,0.005\n10709,0.995\n10710,0.995\n10711,0.005\n10712,0.995\n10713,0.005\n10714,0.995\n10715,0.995\n10716,0.005\n10717,0.995\n10718,0.005\n10719,0.995\n10720,0.995\n10721,0.005\n10722,0.005\n10723,0.995\n10724,0.995\n10725,0.995\n10726,0.005\n10727,0.005\n10728,0.005\n10729,0.005\n10730,0.995\n10731,0.995\n10732,0.005\n10733,0.995\n10734,0.005\n10735,0.005\n10736,0.995\n10737,0.005\n10738,0.995\n10739,0.995\n10740,0.005\n10741,0.005\n10742,0.995\n10743,0.995\n10744,0.995\n10745,0.005\n10746,0.005\n10747,0.030554208329370818\n10748,0.005\n10749,0.005\n10750,0.995\n10751,0.005\n10752,0.995\n10753,0.995\n10754,0.005\n10755,0.995\n10756,0.995\n10757,0.005\n10758,0.995\n10759,0.005\n10760,0.005\n10761,0.005\n10762,0.005\n10763,0.005\n10764,0.005\n10765,0.995\n10766,0.995\n10767,0.995\n10768,0.995\n10769,0.995\n10770,0.995\n10771,0.995\n10772,0.995\n10773,0.995\n10774,0.005\n10775,0.005\n10776,0.005\n10777,0.995\n10778,0.005\n10779,0.005\n10780,0.005\n10781,0.005\n10782,0.995\n10783,0.005\n10784,0.005\n10785,0.995\n10786,0.005\n10787,0.995\n10788,0.995\n10789,0.005\n10790,0.005\n10791,0.005\n10792,0.005\n10793,0.005\n10794,0.995\n10795,0.995\n10796,0.005\n10797,0.005\n10798,0.995\n10799,0.005\n10800,0.005\n10801,0.995\n10802,0.005\n10803,0.005\n10804,0.995\n10805,0.005\n10806,0.995\n10807,0.005\n10808,0.995\n10809,0.005\n10810,0.005\n10811,0.995\n10812,0.005\n10813,0.005\n10814,0.005\n10815,0.9865390643070541\n10816,0.005\n10817,0.005\n10818,0.005\n10819,0.005\n10820,0.995\n10821,0.995\n10822,0.005\n10823,0.005\n10824,0.005\n10825,0.995\n10826,0.995\n10827,0.005\n10828,0.005\n10829,0.995\n10830,0.005\n10831,0.995\n10832,0.995\n10833,0.005\n10834,0.005\n10835,0.005\n10836,0.9801785683570154\n10837,0.005\n10838,0.995\n10839,0.005\n10840,0.005\n10841,0.005\n10842,0.005\n10843,0.005\n10844,0.995\n10845,0.995\n10846,0.005\n10847,0.995\n10848,0.995\n10849,0.005\n10850,0.005\n10851,0.995\n10852,0.964975930101249\n10853,0.995\n10854,0.995\n10855,0.995\n10856,0.005\n10857,0.995\n10858,0.995\n10859,0.995\n10860,0.005\n10861,0.995\n10862,0.005\n10863,0.995\n10864,0.5298037222664312\n10865,0.005\n10866,0.995\n10867,0.005\n10868,0.005\n10869,0.995\n10870,0.005\n10871,0.005\n10872,0.995\n10873,0.005\n10874,0.005\n10875,0.995\n10876,0.995\n10877,0.005\n10878,0.005\n10879,0.995\n10880,0.005\n10881,0.995\n10882,0.995\n10883,0.995\n10884,0.005\n10885,0.005\n10886,0.005\n10887,0.005\n10888,0.995\n10889,0.005\n10890,0.005\n10891,0.005\n10892,0.995\n10893,0.005\n10894,0.005\n10895,0.995\n10896,0.995\n10897,0.9883606494275055\n10898,0.995\n10899,0.995\n10900,0.995\n10901,0.005\n10902,0.995\n10903,0.995\n10904,0.995\n10905,0.995\n10906,0.005\n10907,0.995\n10908,0.006429866669488179\n10909,0.995\n10910,0.005\n10911,0.995\n10912,0.995\n10913,0.005\n10914,0.995\n10915,0.005\n10916,0.995\n10917,0.005\n10918,0.005\n10919,0.995\n10920,0.995\n10921,0.005\n10922,0.005\n10923,0.005\n10924,0.995\n10925,0.995\n10926,0.995\n10927,0.005\n10928,0.005\n10929,0.995\n10930,0.995\n10931,0.005\n10932,0.995\n10933,0.005\n10934,0.005\n10935,0.995\n10936,0.995\n10937,0.995\n10938,0.005\n10939,0.005\n10940,0.995\n10941,0.005\n10942,0.005\n10943,0.005\n10944,0.005\n10945,0.005\n10946,0.995\n10947,0.005\n10948,0.995\n10949,0.005\n10950,0.005\n10951,0.995\n10952,0.995\n10953,0.005\n10954,0.995\n10955,0.005\n10956,0.005\n10957,0.995\n10958,0.005\n10959,0.995\n10960,0.005\n10961,0.995\n10962,0.995\n10963,0.995\n10964,0.005\n10965,0.005\n10966,0.995\n10967,0.005\n10968,0.995\n10969,0.005\n10970,0.005\n10971,0.005\n10972,0.005\n10973,0.995\n10974,0.995\n10975,0.005\n10976,0.995\n10977,0.005\n10978,0.005\n10979,0.995\n10980,0.005\n10981,0.995\n10982,0.995\n10983,0.995\n10984,0.995\n10985,0.995\n10986,0.005\n10987,0.005\n10988,0.005\n10989,0.005\n10990,0.995\n10991,0.005\n10992,0.005\n10993,0.995\n10994,0.995\n10995,0.005\n10996,0.995\n10997,0.005\n10998,0.995\n10999,0.005\n11000,0.005\n11001,0.995\n11002,0.995\n11003,0.005\n11004,0.005\n11005,0.995\n11006,0.995\n11007,0.995\n11008,0.005\n11009,0.005\n11010,0.995\n11011,0.995\n11012,0.995\n11013,0.995\n11014,0.995\n11015,0.995\n11016,0.995\n11017,0.005\n11018,0.005\n11019,0.995\n11020,0.995\n11021,0.995\n11022,0.005\n11023,0.995\n11024,0.995\n11025,0.005\n11026,0.005\n11027,0.995\n11028,0.005\n11029,0.8847056044439816\n11030,0.995\n11031,0.005\n11032,0.005\n11033,0.995\n11034,0.995\n11035,0.995\n11036,0.995\n11037,0.995\n11038,0.005\n11039,0.005\n11040,0.005\n11041,0.995\n11042,0.005\n11043,0.995\n11044,0.995\n11045,0.005\n11046,0.995\n11047,0.995\n11048,0.995\n11049,0.005\n11050,0.995\n11051,0.995\n11052,0.005\n11053,0.995\n11054,0.995\n11055,0.005\n11056,0.005\n11057,0.995\n11058,0.005\n11059,0.005\n11060,0.005\n11061,0.005\n11062,0.995\n11063,0.995\n11064,0.005\n11065,0.995\n11066,0.995\n11067,0.005\n11068,0.005\n11069,0.995\n11070,0.995\n11071,0.995\n11072,0.005\n11073,0.005\n11074,0.005\n11075,0.005\n11076,0.005\n11077,0.005\n11078,0.005\n11079,0.995\n11080,0.995\n11081,0.995\n11082,0.005\n11083,0.995\n11084,0.995\n11085,0.995\n11086,0.005\n11087,0.005\n11088,0.005\n11089,0.995\n11090,0.995\n11091,0.005\n11092,0.995\n11093,0.995\n11094,0.005\n11095,0.995\n11096,0.995\n11097,0.995\n11098,0.005\n11099,0.005\n11100,0.995\n11101,0.995\n11102,0.005\n11103,0.005\n11104,0.995\n11105,0.6136004594041821\n11106,0.005\n11107,0.995\n11108,0.005\n11109,0.005\n11110,0.005\n11111,0.995\n11112,0.995\n11113,0.005\n11114,0.995\n11115,0.005\n11116,0.995\n11117,0.995\n11118,0.005\n11119,0.005\n11120,0.005\n11121,0.007405942346655797\n11122,0.005\n11123,0.995\n11124,0.005\n11125,0.995\n11126,0.995\n11127,0.005\n11128,0.995\n11129,0.005\n11130,0.005\n11131,0.005\n11132,0.995\n11133,0.995\n11134,0.995\n11135,0.005\n11136,0.005\n11137,0.005\n11138,0.995\n11139,0.995\n11140,0.995\n11141,0.995\n11142,0.005\n11143,0.995\n11144,0.005\n11145,0.995\n11146,0.995\n11147,0.995\n11148,0.995\n11149,0.995\n11150,0.005\n11151,0.995\n11152,0.995\n11153,0.995\n11154,0.995\n11155,0.995\n11156,0.005\n11157,0.995\n11158,0.005\n11159,0.995\n11160,0.005\n11161,0.769258351301846\n11162,0.005\n11163,0.005\n11164,0.995\n11165,0.995\n11166,0.005\n11167,0.005\n11168,0.005\n11169,0.995\n11170,0.995\n11171,0.005\n11172,0.005\n11173,0.995\n11174,0.995\n11175,0.995\n11176,0.995\n11177,0.005\n11178,0.995\n11179,0.005\n11180,0.995\n11181,0.995\n11182,0.995\n11183,0.005\n11184,0.005\n11185,0.005\n11186,0.005\n11187,0.005\n11188,0.995\n11189,0.995\n11190,0.005\n11191,0.995\n11192,0.005\n11193,0.995\n11194,0.995\n11195,0.995\n11196,0.005\n11197,0.005\n11198,0.005\n11199,0.005\n11200,0.005\n11201,0.995\n11202,0.995\n11203,0.005\n11204,0.995\n11205,0.995\n11206,0.005\n11207,0.005\n11208,0.995\n11209,0.005\n11210,0.995\n11211,0.995\n11212,0.995\n11213,0.995\n11214,0.005\n11215,0.005\n11216,0.005\n11217,0.995\n11218,0.995\n11219,0.005\n11220,0.005\n11221,0.005\n11222,0.995\n11223,0.005\n11224,0.995\n11225,0.005\n11226,0.005\n11227,0.995\n11228,0.005\n11229,0.995\n11230,0.995\n11231,0.995\n11232,0.995\n11233,0.005\n11234,0.005\n11235,0.995\n11236,0.005\n11237,0.995\n11238,0.995\n11239,0.995\n11240,0.005\n11241,0.995\n11242,0.995\n11243,0.005\n11244,0.995\n11245,0.005\n11246,0.005\n11247,0.995\n11248,0.995\n11249,0.995\n11250,0.995\n11251,0.995\n11252,0.005\n11253,0.995\n11254,0.995\n11255,0.995\n11256,0.005\n11257,0.005\n11258,0.995\n11259,0.005\n11260,0.005\n11261,0.995\n11262,0.995\n11263,0.005\n11264,0.005\n11265,0.995\n11266,0.005\n11267,0.005\n11268,0.995\n11269,0.995\n11270,0.005\n11271,0.005\n11272,0.995\n11273,0.995\n11274,0.995\n11275,0.005\n11276,0.005\n11277,0.995\n11278,0.995\n11279,0.995\n11280,0.005\n11281,0.995\n11282,0.995\n11283,0.995\n11284,0.995\n11285,0.005\n11286,0.995\n11287,0.005\n11288,0.005\n11289,0.005\n11290,0.995\n11291,0.005\n11292,0.995\n11293,0.995\n11294,0.995\n11295,0.005\n11296,0.995\n11297,0.995\n11298,0.005\n11299,0.005\n11300,0.995\n11301,0.005\n11302,0.995\n11303,0.995\n11304,0.995\n11305,0.995\n11306,0.995\n11307,0.995\n11308,0.995\n11309,0.995\n11310,0.995\n11311,0.995\n11312,0.995\n11313,0.005\n11314,0.995\n11315,0.005\n11316,0.995\n11317,0.005\n11318,0.005\n11319,0.995\n11320,0.995\n11321,0.995\n11322,0.995\n11323,0.005\n11324,0.005\n11325,0.005\n11326,0.995\n11327,0.995\n11328,0.005\n11329,0.995\n11330,0.005\n11331,0.995\n11332,0.995\n11333,0.995\n11334,0.9898327992318203\n11335,0.995\n11336,0.005\n11337,0.995\n11338,0.005\n11339,0.995\n11340,0.995\n11341,0.995\n11342,0.005\n11343,0.995\n11344,0.995\n11345,0.005\n11346,0.995\n11347,0.995\n11348,0.995\n11349,0.995\n11350,0.005\n11351,0.005\n11352,0.995\n11353,0.005\n11354,0.005\n11355,0.005\n11356,0.995\n11357,0.995\n11358,0.995\n11359,0.005\n11360,0.995\n11361,0.005\n11362,0.005\n11363,0.995\n11364,0.005\n11365,0.005\n11366,0.995\n11367,0.005\n11368,0.005\n11369,0.005\n11370,0.995\n11371,0.995\n11372,0.005\n11373,0.005\n11374,0.005\n11375,0.005\n11376,0.005\n11377,0.005\n11378,0.995\n11379,0.995\n11380,0.9938625495181409\n11381,0.005\n11382,0.995\n11383,0.995\n11384,0.005\n11385,0.995\n11386,0.995\n11387,0.995\n11388,0.005\n11389,0.005\n11390,0.005\n11391,0.995\n11392,0.005\n11393,0.005\n11394,0.995\n11395,0.995\n11396,0.005\n11397,0.005\n11398,0.995\n11399,0.995\n11400,0.995\n11401,0.005\n11402,0.995\n11403,0.005\n11404,0.005\n11405,0.005\n11406,0.995\n11407,0.005\n11408,0.995\n11409,0.005\n11410,0.005\n11411,0.995\n11412,0.995\n11413,0.005\n11414,0.005\n11415,0.005\n11416,0.995\n11417,0.995\n11418,0.005\n11419,0.995\n11420,0.995\n11421,0.005\n11422,0.995\n11423,0.995\n11424,0.005\n11425,0.995\n11426,0.995\n11427,0.995\n11428,0.995\n11429,0.995\n11430,0.995\n11431,0.005\n11432,0.005\n11433,0.005\n11434,0.005\n11435,0.995\n11436,0.995\n11437,0.995\n11438,0.995\n11439,0.995\n11440,0.005\n11441,0.995\n11442,0.995\n11443,0.995\n11444,0.005\n11445,0.995\n11446,0.005\n11447,0.005\n11448,0.995\n11449,0.995\n11450,0.005\n11451,0.995\n11452,0.995\n11453,0.995\n11454,0.995\n11455,0.005\n11456,0.005\n11457,0.005\n11458,0.995\n11459,0.995\n11460,0.005\n11461,0.995\n11462,0.005\n11463,0.005\n11464,0.995\n11465,0.005\n11466,0.005\n11467,0.005\n11468,0.8287034645897352\n11469,0.995\n11470,0.995\n11471,0.005\n11472,0.995\n11473,0.995\n11474,0.005\n11475,0.005\n11476,0.005\n11477,0.005\n11478,0.995\n11479,0.005\n11480,0.005\n11481,0.005\n11482,0.995\n11483,0.995\n11484,0.005\n11485,0.005\n11486,0.995\n11487,0.995\n11488,0.995\n11489,0.005\n11490,0.995\n11491,0.005\n11492,0.005\n11493,0.005\n11494,0.995\n11495,0.005\n11496,0.995\n11497,0.995\n11498,0.005\n11499,0.005\n11500,0.005\n11501,0.005\n11502,0.9937708864809421\n11503,0.995\n11504,0.005\n11505,0.005\n11506,0.995\n11507,0.995\n11508,0.005\n11509,0.005\n11510,0.995\n11511,0.005\n11512,0.995\n11513,0.995\n11514,0.995\n11515,0.995\n11516,0.995\n11517,0.005\n11518,0.005\n11519,0.995\n11520,0.995\n11521,0.995\n11522,0.995\n11523,0.005\n11524,0.005\n11525,0.005\n11526,0.995\n11527,0.995\n11528,0.005\n11529,0.005\n11530,0.995\n11531,0.005\n11532,0.005\n11533,0.995\n11534,0.005\n11535,0.995\n11536,0.995\n11537,0.005\n11538,0.005\n11539,0.995\n11540,0.005\n11541,0.995\n11542,0.995\n11543,0.005\n11544,0.005\n11545,0.005\n11546,0.005\n11547,0.005\n11548,0.995\n11549,0.005\n11550,0.995\n11551,0.005\n11552,0.995\n11553,0.995\n11554,0.995\n11555,0.995\n11556,0.005\n11557,0.005\n11558,0.03954827646699604\n11559,0.005\n11560,0.005\n11561,0.995\n11562,0.995\n11563,0.005\n11564,0.005\n11565,0.005\n11566,0.005\n11567,0.995\n11568,0.005\n11569,0.995\n11570,0.005\n11571,0.995\n11572,0.005\n11573,0.005\n11574,0.005\n11575,0.995\n11576,0.995\n11577,0.005\n11578,0.005\n11579,0.995\n11580,0.995\n11581,0.005\n11582,0.005\n11583,0.005\n11584,0.995\n11585,0.995\n11586,0.995\n11587,0.005\n11588,0.005\n11589,0.995\n11590,0.005\n11591,0.005\n11592,0.005\n11593,0.995\n11594,0.005\n11595,0.005\n11596,0.005\n11597,0.005\n11598,0.995\n11599,0.005\n11600,0.995\n11601,0.995\n11602,0.995\n11603,0.995\n11604,0.995\n11605,0.995\n11606,0.005\n11607,0.005\n11608,0.005\n11609,0.005\n11610,0.005\n11611,0.005\n11612,0.005\n11613,0.995\n11614,0.005\n11615,0.005\n11616,0.005\n11617,0.995\n11618,0.005\n11619,0.005\n11620,0.005\n11621,0.005\n11622,0.005\n11623,0.995\n11624,0.005\n11625,0.995\n11626,0.995\n11627,0.995\n11628,0.995\n11629,0.995\n11630,0.995\n11631,0.005\n11632,0.005\n11633,0.005\n11634,0.005\n11635,0.995\n11636,0.005\n11637,0.005\n11638,0.005\n11639,0.005\n11640,0.995\n11641,0.005\n11642,0.995\n11643,0.995\n11644,0.005\n11645,0.995\n11646,0.995\n11647,0.995\n11648,0.995\n11649,0.995\n11650,0.995\n11651,0.995\n11652,0.005\n11653,0.005\n11654,0.995\n11655,0.995\n11656,0.995\n11657,0.005\n11658,0.005\n11659,0.005\n11660,0.995\n11661,0.005\n11662,0.005\n11663,0.995\n11664,0.005\n11665,0.995\n11666,0.005\n11667,0.005\n11668,0.005\n11669,0.995\n11670,0.995\n11671,0.995\n11672,0.005\n11673,0.995\n11674,0.995\n11675,0.005\n11676,0.005\n11677,0.995\n11678,0.005\n11679,0.005\n11680,0.005\n11681,0.995\n11682,0.005\n11683,0.995\n11684,0.005\n11685,0.005\n11686,0.995\n11687,0.005\n11688,0.995\n11689,0.005\n11690,0.995\n11691,0.005\n11692,0.005\n11693,0.005\n11694,0.995\n11695,0.005\n11696,0.995\n11697,0.995\n11698,0.005\n11699,0.995\n11700,0.005\n11701,0.005\n11702,0.005\n11703,0.005\n11704,0.005\n11705,0.995\n11706,0.995\n11707,0.995\n11708,0.005\n11709,0.995\n11710,0.005\n11711,0.29147087995324905\n11712,0.005\n11713,0.995\n11714,0.005\n11715,0.995\n11716,0.995\n11717,0.995\n11718,0.995\n11719,0.005\n11720,0.995\n11721,0.005\n11722,0.005\n11723,0.995\n11724,0.005\n11725,0.995\n11726,0.005\n11727,0.005\n11728,0.005\n11729,0.995\n11730,0.005\n11731,0.995\n11732,0.995\n11733,0.995\n11734,0.005\n11735,0.995\n11736,0.005\n11737,0.005\n11738,0.005\n11739,0.005\n11740,0.995\n11741,0.005\n11742,0.005\n11743,0.005\n11744,0.005\n11745,0.005\n11746,0.005\n11747,0.005\n11748,0.005\n11749,0.995\n11750,0.005\n11751,0.005\n11752,0.995\n11753,0.995\n11754,0.005\n11755,0.005\n11756,0.995\n11757,0.995\n11758,0.995\n11759,0.995\n11760,0.995\n11761,0.995\n11762,0.995\n11763,0.995\n11764,0.995\n11765,0.995\n11766,0.995\n11767,0.995\n11768,0.005\n11769,0.005\n11770,0.995\n11771,0.005\n11772,0.005\n11773,0.995\n11774,0.005\n11775,0.995\n11776,0.995\n11777,0.005\n11778,0.995\n11779,0.005\n11780,0.995\n11781,0.995\n11782,0.995\n11783,0.005\n11784,0.005\n11785,0.995\n11786,0.005\n11787,0.995\n11788,0.005\n11789,0.995\n11790,0.995\n11791,0.995\n11792,0.995\n11793,0.005\n11794,0.005\n11795,0.995\n11796,0.005\n11797,0.005\n11798,0.005\n11799,0.995\n11800,0.005\n11801,0.995\n11802,0.995\n11803,0.005\n11804,0.995\n11805,0.995\n11806,0.995\n11807,0.005\n11808,0.03210203450566895\n11809,0.995\n11810,0.995\n11811,0.005\n11812,0.995\n11813,0.005\n11814,0.995\n11815,0.995\n11816,0.995\n11817,0.005\n11818,0.005\n11819,0.005\n11820,0.005\n11821,0.995\n11822,0.995\n11823,0.995\n11824,0.005\n11825,0.995\n11826,0.005\n11827,0.995\n11828,0.995\n11829,0.995\n11830,0.005\n11831,0.995\n11832,0.995\n11833,0.995\n11834,0.005\n11835,0.995\n11836,0.995\n11837,0.005\n11838,0.995\n11839,0.995\n11840,0.995\n11841,0.995\n11842,0.005\n11843,0.995\n11844,0.995\n11845,0.005\n11846,0.995\n11847,0.005\n11848,0.005\n11849,0.995\n11850,0.995\n11851,0.005\n11852,0.995\n11853,0.005\n11854,0.005\n11855,0.995\n11856,0.005\n11857,0.005\n11858,0.005\n11859,0.005\n11860,0.005\n11861,0.995\n11862,0.995\n11863,0.995\n11864,0.005\n11865,0.005\n11866,0.8340017188527467\n11867,0.995\n11868,0.005\n11869,0.995\n11870,0.995\n11871,0.995\n11872,0.005\n11873,0.005\n11874,0.995\n11875,0.005\n11876,0.005\n11877,0.995\n11878,0.995\n11879,0.995\n11880,0.005\n11881,0.005\n11882,0.995\n11883,0.995\n11884,0.005\n11885,0.005\n11886,0.995\n11887,0.005\n11888,0.005\n11889,0.005\n11890,0.005\n11891,0.005\n11892,0.995\n11893,0.005\n11894,0.995\n11895,0.995\n11896,0.005\n11897,0.995\n11898,0.005\n11899,0.005\n11900,0.005\n11901,0.005\n11902,0.995\n11903,0.005\n11904,0.995\n11905,0.005\n11906,0.995\n11907,0.995\n11908,0.005\n11909,0.005\n11910,0.995\n11911,0.005\n11912,0.995\n11913,0.005\n11914,0.005\n11915,0.995\n11916,0.005\n11917,0.995\n11918,0.995\n11919,0.005\n11920,0.995\n11921,0.995\n11922,0.995\n11923,0.995\n11924,0.005\n11925,0.0052268479469595236\n11926,0.995\n11927,0.995\n11928,0.995\n11929,0.995\n11930,0.005\n11931,0.005\n11932,0.995\n11933,0.005\n11934,0.995\n11935,0.995\n11936,0.005\n11937,0.005\n11938,0.995\n11939,0.005\n11940,0.995\n11941,0.995\n11942,0.005\n11943,0.005\n11944,0.995\n11945,0.005\n11946,0.995\n11947,0.005\n11948,0.005\n11949,0.005\n11950,0.005\n11951,0.995\n11952,0.995\n11953,0.995\n11954,0.995\n11955,0.995\n11956,0.995\n11957,0.995\n11958,0.995\n11959,0.005\n11960,0.995\n11961,0.995\n11962,0.005\n11963,0.995\n11964,0.995\n11965,0.005\n11966,0.005\n11967,0.995\n11968,0.005\n11969,0.995\n11970,0.995\n11971,0.005\n11972,0.995\n11973,0.005\n11974,0.005\n11975,0.995\n11976,0.005\n11977,0.995\n11978,0.995\n11979,0.995\n11980,0.995\n11981,0.005\n11982,0.995\n11983,0.005\n11984,0.995\n11985,0.995\n11986,0.995\n11987,0.995\n11988,0.005\n11989,0.005\n11990,0.995\n11991,0.005\n11992,0.005\n11993,0.005\n11994,0.005\n11995,0.005\n11996,0.005\n11997,0.995\n11998,0.995\n11999,0.995\n12000,0.005\n12001,0.995\n12002,0.005\n12003,0.005\n12004,0.005\n12005,0.995\n12006,0.995\n12007,0.005\n12008,0.005\n12009,0.995\n12010,0.995\n12011,0.995\n12012,0.995\n12013,0.995\n12014,0.995\n12015,0.995\n12016,0.005\n12017,0.995\n12018,0.005\n12019,0.005\n12020,0.005\n12021,0.995\n12022,0.995\n12023,0.995\n12024,0.995\n12025,0.005\n12026,0.995\n12027,0.005\n12028,0.995\n12029,0.005\n12030,0.005\n12031,0.005\n12032,0.005\n12033,0.995\n12034,0.005\n12035,0.995\n12036,0.005\n12037,0.995\n12038,0.995\n12039,0.995\n12040,0.995\n12041,0.995\n12042,0.005\n12043,0.005\n12044,0.005\n12045,0.005\n12046,0.995\n12047,0.005\n12048,0.995\n12049,0.005\n12050,0.005\n12051,0.995\n12052,0.995\n12053,0.0063060924151953435\n12054,0.9072949487267635\n12055,0.995\n12056,0.995\n12057,0.995\n12058,0.005\n12059,0.005\n12060,0.995\n12061,0.995\n12062,0.995\n12063,0.005\n12064,0.995\n12065,0.005\n12066,0.005\n12067,0.005\n12068,0.005\n12069,0.005\n12070,0.005\n12071,0.005\n12072,0.005\n12073,0.995\n12074,0.995\n12075,0.995\n12076,0.995\n12077,0.005\n12078,0.005\n12079,0.995\n12080,0.995\n12081,0.005\n12082,0.995\n12083,0.005\n12084,0.005\n12085,0.005\n12086,0.995\n12087,0.995\n12088,0.9868400722274632\n12089,0.005\n12090,0.995\n12091,0.005\n12092,0.995\n12093,0.005\n12094,0.995\n12095,0.995\n12096,0.995\n12097,0.005\n12098,0.995\n12099,0.5303215635217626\n12100,0.005\n12101,0.005\n12102,0.005\n12103,0.005\n12104,0.005\n12105,0.005\n12106,0.005\n12107,0.995\n12108,0.995\n12109,0.995\n12110,0.005\n12111,0.995\n12112,0.995\n12113,0.995\n12114,0.995\n12115,0.005\n12116,0.005\n12117,0.995\n12118,0.005\n12119,0.005\n12120,0.995\n12121,0.005\n12122,0.995\n12123,0.005\n12124,0.005\n12125,0.005\n12126,0.995\n12127,0.005\n12128,0.005\n12129,0.005\n12130,0.005\n12131,0.995\n12132,0.995\n12133,0.995\n12134,0.2062125748630141\n12135,0.005\n12136,0.005\n12137,0.005\n12138,0.005\n12139,0.995\n12140,0.005\n12141,0.9771079161703272\n12142,0.005\n12143,0.995\n12144,0.005\n12145,0.995\n12146,0.995\n12147,0.995\n12148,0.005\n12149,0.995\n12150,0.995\n12151,0.005\n12152,0.005\n12153,0.995\n12154,0.005\n12155,0.995\n12156,0.995\n12157,0.995\n12158,0.995\n12159,0.005\n12160,0.995\n12161,0.005\n12162,0.005\n12163,0.995\n12164,0.005\n12165,0.995\n12166,0.005\n12167,0.995\n12168,0.005\n12169,0.005\n12170,0.995\n12171,0.005\n12172,0.995\n12173,0.005\n12174,0.995\n12175,0.995\n12176,0.005\n12177,0.995\n12178,0.995\n12179,0.995\n12180,0.995\n12181,0.005\n12182,0.995\n12183,0.995\n12184,0.995\n12185,0.995\n12186,0.995\n12187,0.005\n12188,0.995\n12189,0.011570039862728303\n12190,0.995\n12191,0.995\n12192,0.995\n12193,0.005\n12194,0.005\n12195,0.005\n12196,0.995\n12197,0.005\n12198,0.005\n12199,0.995\n12200,0.995\n12201,0.005\n12202,0.005\n12203,0.005\n12204,0.005\n12205,0.005\n12206,0.995\n12207,0.995\n12208,0.995\n12209,0.005\n12210,0.005\n12211,0.005\n12212,0.005\n12213,0.995\n12214,0.005\n12215,0.005\n12216,0.005\n12217,0.005\n12218,0.005\n12219,0.995\n12220,0.005\n12221,0.005\n12222,0.995\n12223,0.005\n12224,0.005\n12225,0.995\n12226,0.995\n12227,0.005\n12228,0.995\n12229,0.995\n12230,0.995\n12231,0.005\n12232,0.995\n12233,0.995\n12234,0.995\n12235,0.995\n12236,0.005\n12237,0.995\n12238,0.995\n12239,0.005\n12240,0.005\n12241,0.005\n12242,0.005\n12243,0.005\n12244,0.005\n12245,0.005\n12246,0.995\n12247,0.995\n12248,0.995\n12249,0.995\n12250,0.005\n12251,0.005\n12252,0.005\n12253,0.995\n12254,0.995\n12255,0.005\n12256,0.995\n12257,0.005\n12258,0.005\n12259,0.995\n12260,0.995\n12261,0.005\n12262,0.995\n12263,0.995\n12264,0.995\n12265,0.005\n12266,0.995\n12267,0.995\n12268,0.995\n12269,0.995\n12270,0.995\n12271,0.3867318976121376\n12272,0.005\n12273,0.9945216442592327\n12274,0.8390369799770273\n12275,0.995\n12276,0.005\n12277,0.995\n12278,0.995\n12279,0.995\n12280,0.005\n12281,0.995\n12282,0.995\n12283,0.005\n12284,0.995\n12285,0.005\n12286,0.005\n12287,0.995\n12288,0.005\n12289,0.995\n12290,0.995\n12291,0.995\n12292,0.995\n12293,0.995\n12294,0.995\n12295,0.005\n12296,0.005\n12297,0.005\n12298,0.995\n12299,0.005\n12300,0.995\n12301,0.005\n12302,0.005\n12303,0.995\n12304,0.995\n12305,0.995\n12306,0.005\n12307,0.995\n12308,0.005\n12309,0.005\n12310,0.005\n12311,0.995\n12312,0.005\n12313,0.995\n12314,0.995\n12315,0.995\n12316,0.995\n12317,0.005\n12318,0.995\n12319,0.005\n12320,0.995\n12321,0.995\n12322,0.995\n12323,0.995\n12324,0.7435201303526341\n12325,0.005\n12326,0.005\n12327,0.005\n12328,0.995\n12329,0.995\n12330,0.995\n12331,0.005\n12332,0.995\n12333,0.995\n12334,0.005\n12335,0.005\n12336,0.005\n12337,0.995\n12338,0.005\n12339,0.005\n12340,0.005\n12341,0.995\n12342,0.995\n12343,0.005\n12344,0.005\n12345,0.005\n12346,0.005\n12347,0.005\n12348,0.995\n12349,0.005\n12350,0.995\n12351,0.005\n12352,0.995\n12353,0.005\n12354,0.9152774183651615\n12355,0.005\n12356,0.005\n12357,0.995\n12358,0.005\n12359,0.995\n12360,0.995\n12361,0.995\n12362,0.995\n12363,0.005\n12364,0.995\n12365,0.995\n12366,0.995\n12367,0.995\n12368,0.005\n12369,0.995\n12370,0.005\n12371,0.995\n12372,0.005\n12373,0.005\n12374,0.005\n12375,0.995\n12376,0.995\n12377,0.995\n12378,0.995\n12379,0.995\n12380,0.995\n12381,0.995\n12382,0.995\n12383,0.995\n12384,0.005\n12385,0.995\n12386,0.995\n12387,0.005\n12388,0.005\n12389,0.005\n12390,0.005\n12391,0.995\n12392,0.995\n12393,0.995\n12394,0.005\n12395,0.005\n12396,0.005\n12397,0.005\n12398,0.005\n12399,0.005\n12400,0.995\n12401,0.995\n12402,0.005\n12403,0.995\n12404,0.005\n12405,0.005\n12406,0.005\n12407,0.995\n12408,0.005\n12409,0.995\n12410,0.005\n12411,0.995\n12412,0.995\n12413,0.005\n12414,0.907394607711754\n12415,0.005\n12416,0.995\n12417,0.005\n12418,0.005\n12419,0.005\n12420,0.005\n12421,0.995\n12422,0.995\n12423,0.005\n12424,0.005\n12425,0.995\n12426,0.005\n12427,0.995\n12428,0.005\n12429,0.7701572183959832\n12430,0.995\n12431,0.995\n12432,0.995\n12433,0.995\n12434,0.995\n12435,0.995\n12436,0.995\n12437,0.995\n12438,0.995\n12439,0.995\n12440,0.995\n12441,0.005\n12442,0.005\n12443,0.995\n12444,0.995\n12445,0.005\n12446,0.005\n12447,0.995\n12448,0.995\n12449,0.005\n12450,0.005\n12451,0.005\n12452,0.995\n12453,0.005\n12454,0.005\n12455,0.005\n12456,0.995\n12457,0.005\n12458,0.005\n12459,0.995\n12460,0.995\n12461,0.995\n12462,0.005\n12463,0.995\n12464,0.995\n12465,0.005\n12466,0.005\n12467,0.005\n12468,0.005\n12469,0.005\n12470,0.995\n12471,0.995\n12472,0.995\n12473,0.005\n12474,0.005\n12475,0.005\n12476,0.995\n12477,0.995\n12478,0.6084577358388951\n12479,0.005\n12480,0.005\n12481,0.005\n12482,0.005\n12483,0.005\n12484,0.995\n12485,0.005\n12486,0.995\n12487,0.995\n12488,0.9750618602131871\n12489,0.995\n12490,0.995\n12491,0.995\n12492,0.995\n12493,0.995\n12494,0.995\n12495,0.005\n12496,0.005\n12497,0.005\n12498,0.995\n12499,0.995\n12500,0.005\n"
  },
  {
    "path": "ML/Kaggles/Dog vs Cat Competition/train.py",
    "content": "# Imports\nimport os\nimport torch\nimport torch.nn.functional as F\nimport numpy as np\nimport config\nfrom torch import nn, optim\nfrom torch.utils.data import DataLoader\nfrom tqdm import tqdm\nfrom dataset import CatDog\nfrom efficientnet_pytorch import EfficientNet\nfrom utils import check_accuracy, load_checkpoint, save_checkpoint\n\n\ndef save_feature_vectors(model, loader, output_size=(1, 1), file=\"trainb7\"):\n    model.eval()\n    images, labels = [], []\n\n    for idx, (x, y) in enumerate(tqdm(loader)):\n        x = x.to(config.DEVICE)\n\n        with torch.no_grad():\n            features = model.extract_features(x)\n            features = F.adaptive_avg_pool2d(features, output_size=output_size)\n        images.append(features.reshape(x.shape[0], -1).detach().cpu().numpy())\n        labels.append(y.numpy())\n\n    np.save(f\"data_features/X_{file}.npy\", np.concatenate(images, axis=0))\n    np.save(f\"data_features/y_{file}.npy\", np.concatenate(labels, axis=0))\n    model.train()\n\n\ndef train_one_epoch(loader, model, loss_fn, optimizer, scaler):\n    loop = tqdm(loader)\n\n    for batch_idx, (data, targets) in enumerate(loop):\n        data = data.to(config.DEVICE)\n        targets = targets.to(config.DEVICE).unsqueeze(1).float()\n\n        with torch.cuda.amp.autocast():\n            scores = model(data)\n            loss = loss_fn(scores, targets)\n\n        optimizer.zero_grad()\n        scaler.scale(loss).backward()\n        scaler.step(optimizer)\n        scaler.update()\n        loop.set_postfix(loss=loss.item())\n\n\ndef main():\n    model = EfficientNet.from_pretrained(\"efficientnet-b7\")\n    model._fc = nn.Linear(2560, 1)\n    train_dataset = CatDog(root=\"data/train/\", transform=config.basic_transform)\n    test_dataset = CatDog(root=\"data/test/\", transform=config.basic_transform)\n    train_loader = DataLoader(\n        train_dataset,\n        shuffle=True,\n        batch_size=config.BATCH_SIZE,\n        num_workers=config.NUM_WORKERS,\n        pin_memory=True,\n    )\n    test_loader = DataLoader(\n        test_dataset,\n        shuffle=False,\n        batch_size=config.BATCH_SIZE,\n        num_workers=config.NUM_WORKERS,\n    )\n    model = model.to(config.DEVICE)\n\n    scaler = torch.cuda.amp.GradScaler()\n    loss_fn = nn.BCEWithLogitsLoss()\n    optimizer = optim.Adam(\n        model.parameters(), lr=config.LEARNING_RATE, weight_decay=config.WEIGHT_DECAY\n    )\n\n    if config.LOAD_MODEL and config.CHECKPOINT_FILE in os.listdir():\n        load_checkpoint(torch.load(config.CHECKPOINT_FILE), model)\n\n    for epoch in range(config.NUM_EPOCHS):\n        train_one_epoch(train_loader, model, loss_fn, optimizer, scaler)\n        check_accuracy(train_loader, model, loss_fn)\n\n    if config.SAVE_MODEL:\n        checkpoint = {\"state_dict\": model.state_dict(), \"optimizer\": optimizer.state_dict()}\n        save_checkpoint(checkpoint, filename=config.CHECKPOINT_FILE)\n\n    save_feature_vectors(model, train_loader, output_size=(1, 1), file=\"train_b7\")\n    save_feature_vectors(model, test_loader, output_size=(1, 1), file=\"test_b7\")\n\n\nif __name__ == \"__main__\":\n    main()"
  },
  {
    "path": "ML/Kaggles/Dog vs Cat Competition/utils.py",
    "content": "import torch\nimport os\nimport pandas as pd\nimport numpy as np\nimport albumentations as A\nfrom albumentations.pytorch import ToTensorV2\nimport config\nfrom tqdm import tqdm\nfrom dataset import CatDog\nfrom torch.utils.data import DataLoader\nfrom sklearn.metrics import log_loss\n\n\ndef check_accuracy(\n    loader, model, loss_fn, input_shape=None, toggle_eval=True, print_accuracy=True\n):\n    \"\"\"\n    Check accuracy of model on data from loader\n    \"\"\"\n    if toggle_eval:\n        model.eval()\n    device = next(model.parameters()).device\n    num_correct = 0\n    num_samples = 0\n\n    y_preds = []\n    y_true = []\n\n    with torch.no_grad():\n        for x, y in loader:\n            x = x.to(device=device)\n            y = y.to(device=device)\n            if input_shape:\n                x = x.reshape(x.shape[0], *input_shape)\n            scores = model(x)\n            predictions = torch.sigmoid(scores) > 0.5\n            y_preds.append(torch.clip(torch.sigmoid(scores), 0.005, 0.995).cpu().numpy())\n            y_true.append(y.cpu().numpy())\n            num_correct += (predictions.squeeze(1) == y).sum()\n            num_samples += predictions.size(0)\n\n    accuracy = num_correct / num_samples\n\n    if toggle_eval:\n        model.train()\n\n    if print_accuracy:\n        print(f\"Accuracy: {accuracy * 100:.2f}%\")\n        print(log_loss(np.concatenate(y_true, axis=0), np.concatenate(y_preds, axis=0)))\n\n    return accuracy\n\n\ndef save_checkpoint(state, filename=\"my_checkpoint.pth.tar\"):\n    print(\"=> Saving checkpoint\")\n    torch.save(state, filename)\n\n\ndef load_checkpoint(checkpoint, model):\n    print(\"=> Loading checkpoint\")\n    model.load_state_dict(checkpoint[\"state_dict\"])\n\n\ndef create_submission(model, model_name, files_dir):\n    my_transforms = {\n        \"base\": A.Compose(\n            [\n                A.Resize(height=240, width=240),\n                A.Normalize(\n                    mean=[0.485, 0.456, 0.406],\n                    std=[0.229, 0.224, 0.225],\n                    max_pixel_value=255.0,\n                ),\n                ToTensorV2(),\n            ]\n        ),\n        \"horizontal_flip\": A.Compose(\n            [\n                A.Resize(height=240, width=240),\n                A.HorizontalFlip(p=1.0),\n                A.Normalize(\n                    mean=[0.485, 0.456, 0.406],\n                    std=[0.229, 0.224, 0.225],\n                    max_pixel_value=255.0,\n                ),\n                ToTensorV2(),\n            ]\n        ),\n        \"vertical_flip\": A.Compose(\n            [\n                A.Resize(height=240, width=240),\n                A.VerticalFlip(p=1.0),\n                A.Normalize(\n                    mean=[0.485, 0.456, 0.406],\n                    std=[0.229, 0.224, 0.225],\n                    max_pixel_value=255.0,\n                ),\n                ToTensorV2(),\n            ]\n        ),\n        \"coloring\": A.Compose(\n            [\n                A.Resize(height=240, width=240),\n                A.ColorJitter(p=1.0),\n                A.Normalize(\n                    mean=[0.485, 0.456, 0.406],\n                    std=[0.229, 0.224, 0.225],\n                    max_pixel_value=255.0,\n                ),\n                ToTensorV2(),\n            ]\n        ),\n        \"rotate\": A.Compose(\n            [\n                A.Resize(height=240, width=240),\n                A.Rotate(p=1.0, limit=45),\n                A.Normalize(\n                    mean=[0.485, 0.456, 0.406],\n                    std=[0.229, 0.224, 0.225],\n                    max_pixel_value=255.0,\n                ),\n                ToTensorV2(),\n            ]\n        ),\n        \"shear\": A.Compose(\n            [\n                A.Resize(height=240, width=240),\n                A.IAAAffine(p=1.0),\n                A.Normalize(\n                    mean=[0.485, 0.456, 0.406],\n                    std=[0.229, 0.224, 0.225],\n                    max_pixel_value=255.0,\n                ),\n                ToTensorV2(),\n            ]\n        ),\n    }\n\n    for t in [\"base\", \"horizontal_flip\", \"vertical_flip\", \"coloring\", \"rotate\", \"shear\"]:\n        predictions = []\n        labels = []\n        all_files = []\n        test_dataset = MyDataset(root=files_dir, transform=my_transforms[t])\n        test_loader = DataLoader(\n            test_dataset, batch_size=32, num_workers=4, shuffle=False, pin_memory=True\n        )\n        model.eval()\n\n        for idx, (x, y, filenames) in enumerate(tqdm(test_loader)):\n            x = x.to(config.DEVICE)\n            with torch.no_grad():\n                outputs = (\n                    torch.clip(torch.sigmoid(model(x)), 0.005, 0.995).squeeze(1).cpu().numpy()\n                )\n                predictions.append(outputs)\n                labels += y.numpy().tolist()\n                all_files += filenames\n\n        df = pd.DataFrame(\n            {\n                \"id\": np.arange(\n                    1,\n                    (len(predictions) - 1) * predictions[0].shape[0]\n                    + predictions[-1].shape[0]\n                    + 1,\n                ),\n                \"label\": np.concatenate(predictions, axis=0),\n            }\n        )\n        df.to_csv(f\"predictions_test/submission_{model_name}_{t}.csv\", index=False)\n\n        model.train()\n        print(f\"Created submission file for model {model_name} and transform {t}\")\n\n\ndef blending_ensemble_data():\n    pred_csvs = []\n    root_dir = \"predictions_validation/\"\n\n    for file in os.listdir(root_dir):\n        if \"label\" not in file:\n            df = pd.read_csv(root_dir + \"/\" + file)\n            pred_csvs.append(df)\n        else:\n            label_csv = pd.read_csv(root_dir + \"/\" + file)\n\n    all_preds = pd.concat(pred_csvs, axis=1)\n    print(all_preds)\n\n\nif __name__ == \"__main__\":\n    blending_ensemble_data()\n"
  },
  {
    "path": "ML/Kaggles/Facial Keypoint Detection Competition/config.py",
    "content": "import torch\nimport albumentations as A\nfrom albumentations.pytorch import ToTensorV2\nimport cv2\n\nDEVICE = \"cuda\" if torch.cuda.is_available() else \"cpu\"\nLEARNING_RATE = 1e-4\nWEIGHT_DECAY = 5e-4\nBATCH_SIZE = 64\nNUM_EPOCHS = 100\nNUM_WORKERS = 4\nCHECKPOINT_FILE = \"b0_4.pth.tar\"\nPIN_MEMORY = True\nSAVE_MODEL = True\nLOAD_MODEL = True\n\n# Data augmentation for images\ntrain_transforms = A.Compose(\n    [\n        A.Resize(width=96, height=96),\n        A.Rotate(limit=15, border_mode=cv2.BORDER_CONSTANT, p=0.8),\n        A.IAAAffine(shear=15, scale=1.0, mode=\"constant\", p=0.2),\n        A.RandomBrightnessContrast(contrast_limit=0.5, brightness_limit=0.5, p=0.2),\n        A.OneOf([\n            A.GaussNoise(p=0.8),\n            A.CLAHE(p=0.8),\n            A.ImageCompression(p=0.8),\n            A.RandomGamma(p=0.8),\n            A.Posterize(p=0.8),\n            A.Blur(p=0.8),\n        ], p=1.0),\n        A.OneOf([\n            A.GaussNoise(p=0.8),\n            A.CLAHE(p=0.8),\n            A.ImageCompression(p=0.8),\n            A.RandomGamma(p=0.8),\n            A.Posterize(p=0.8),\n            A.Blur(p=0.8),\n        ], p=1.0),\n        A.ShiftScaleRotate(shift_limit=0.1, scale_limit=0.1, rotate_limit=0, p=0.2, border_mode=cv2.BORDER_CONSTANT),\n        A.Normalize(\n            mean=[0.4897, 0.4897, 0.4897],\n            std=[0.2330, 0.2330, 0.2330],\n            max_pixel_value=255.0,\n        ),\n        ToTensorV2(),\n    ], keypoint_params=A.KeypointParams(format=\"xy\", remove_invisible=False),\n)\n\n\nval_transforms = A.Compose(\n    [\n        A.Resize(height=96, width=96),\n        A.Normalize(\n            mean=[0.4897, 0.4897, 0.4897],\n            std=[0.2330, 0.2330, 0.2330],\n            max_pixel_value=255.0,\n        ),\n        ToTensorV2(),\n    ], keypoint_params=A.KeypointParams(format=\"xy\", remove_invisible=False),\n)\n"
  },
  {
    "path": "ML/Kaggles/Facial Keypoint Detection Competition/dataset.py",
    "content": "import pandas as pd\nimport numpy as np\nimport config\nimport matplotlib.pyplot as plt\nfrom torch.utils.data import DataLoader, Dataset\n\n\nclass FacialKeypointDataset(Dataset):\n    def __init__(self, csv_file, train=True, transform=None):\n        super().__init__()\n        self.data = pd.read_csv(csv_file)\n        self.category_names = ['left_eye_center_x', 'left_eye_center_y', 'right_eye_center_x', 'right_eye_center_y', 'left_eye_inner_corner_x', 'left_eye_inner_corner_y', 'left_eye_outer_corner_x', 'left_eye_outer_corner_y', 'right_eye_inner_corner_x', 'right_eye_inner_corner_y', 'right_eye_outer_corner_x', 'right_eye_outer_corner_y', 'left_eyebrow_inner_end_x', 'left_eyebrow_inner_end_y', 'left_eyebrow_outer_end_x', 'left_eyebrow_outer_end_y', 'right_eyebrow_inner_end_x', 'right_eyebrow_inner_end_y', 'right_eyebrow_outer_end_x', 'right_eyebrow_outer_end_y', 'nose_tip_x', 'nose_tip_y', 'mouth_left_corner_x', 'mouth_left_corner_y', 'mouth_right_corner_x', 'mouth_right_corner_y', 'mouth_center_top_lip_x', 'mouth_center_top_lip_y', 'mouth_center_bottom_lip_x', 'mouth_center_bottom_lip_y']\n        self.transform = transform\n        self.train = train\n\n    def __len__(self):\n        return self.data.shape[0]\n\n    def __getitem__(self, index):\n        if self.train:\n            image = np.array(self.data.iloc[index, 30].split()).astype(np.float32)\n            labels = np.array(self.data.iloc[index, :30].tolist())\n            labels[np.isnan(labels)] = -1\n        else:\n            image = np.array(self.data.iloc[index, 1].split()).astype(np.float32)\n            labels = np.zeros(30)\n\n        ignore_indices = labels == -1\n        labels = labels.reshape(15, 2)\n\n        if self.transform:\n            image = np.repeat(image.reshape(96, 96, 1), 3, 2).astype(np.uint8)\n            augmentations = self.transform(image=image, keypoints=labels)\n            image = augmentations[\"image\"]\n            labels = augmentations[\"keypoints\"]\n\n        labels = np.array(labels).reshape(-1)\n        labels[ignore_indices] = -1\n\n        return image, labels.astype(np.float32)\n\n\nif __name__ == \"__main__\":\n    ds = FacialKeypointDataset(csv_file=\"data/train_4.csv\", train=True, transform=config.train_transforms)\n    loader = DataLoader(ds, batch_size=1, shuffle=True, num_workers=0)\n\n    for idx, (x, y) in enumerate(loader):\n        plt.imshow(x[0][0].detach().cpu().numpy(), cmap='gray')\n        plt.plot(y[0][0::2].detach().cpu().numpy(), y[0][1::2].detach().cpu().numpy(), \"go\")\n        plt.show()\n"
  },
  {
    "path": "ML/Kaggles/Facial Keypoint Detection Competition/extract_images_from_csv.py",
    "content": "import numpy as np\nimport pandas as pd\nimport os\nfrom PIL import Image\n\n\ndef extract_images_from_csv(csv, column, save_folder, resize=(96, 96)):\n    if not os.path.exists(save_folder):\n        os.makedirs(save_folder)\n\n    for idx, image in enumerate(csv[column]):\n        image = np.array(image.split()).astype(np.uint8)\n        image = image.reshape(resize[0], resize[1])\n        img = Image.fromarray(image, 'L')\n        img.save(save_folder+f\"img_{idx}.png\")\n\n\ncsv = pd.read_csv(\"test.csv\")\nextract_images_from_csv(csv, \"Image\", \"data/test/\")\n"
  },
  {
    "path": "ML/Kaggles/Facial Keypoint Detection Competition/submission.csv",
    "content": "RowId,Location\n1,67.04572296142578\n2,36.83383560180664\n3,28.94949722290039\n4,35.668312072753906\n5,61.032169342041016\n6,37.25522232055664\n7,73.39128112792969\n8,38.322818756103516\n9,35.43482208251953\n10,36.44496536254883\n11,22.65399932861328\n12,36.76850891113281\n13,58.09092712402344\n14,27.096025466918945\n15,80.60077667236328\n16,30.312707901000977\n17,39.33872604370117\n18,26.38187026977539\n19,15.640214920043945\n20,28.61893653869629\n21,48.75645065307617\n22,51.49176788330078\n23,61.38773727416992\n24,76.92980194091797\n25,32.92584991455078\n26,76.23674011230469\n27,47.4963493347168\n28,68.31898498535156\n29,47.02788162231445\n30,85.23596954345703\n31,67.35303497314453\n32,37.295265197753906\n33,28.23592185974121\n34,37.98036193847656\n35,60.14139938354492\n36,38.22669982910156\n37,73.89382934570312\n38,37.55840301513672\n39,34.91429138183594\n40,38.69257736206055\n41,21.22686004638672\n42,38.98064041137695\n43,56.173126220703125\n44,30.0657901763916\n45,80.50341033935547\n46,29.480337142944336\n47,37.61942672729492\n48,30.345844268798828\n49,13.583638191223145\n50,31.99614143371582\n51,47.922210693359375\n52,60.534515380859375\n53,64.90452575683594\n54,76.0777816772461\n55,32.91721725463867\n56,76.85784149169922\n57,48.607852935791016\n58,72.86295318603516\n59,49.0323486328125\n60,87.98699188232422\n61,65.79917907714844\n62,36.35456848144531\n63,31.288785934448242\n64,38.07701110839844\n65,59.915611267089844\n66,37.359893798828125\n67,71.36347198486328\n68,36.44624710083008\n69,36.863094329833984\n70,38.38895034790039\n71,25.346567153930664\n72,39.09946060180664\n73,56.13119888305664\n74,29.827592849731445\n75,77.02906799316406\n76,29.029102325439453\n77,39.536651611328125\n78,30.630027770996094\n79,18.398149490356445\n80,32.66862487792969\n81,49.697689056396484\n82,57.954620361328125\n83,63.42801284790039\n84,74.97737884521484\n85,37.79898452758789\n86,76.59329986572266\n87,50.454593658447266\n88,71.35405731201172\n89,50.858943939208984\n90,84.1787109375\n91,65.37613677978516\n92,38.73004913330078\n93,30.103591918945312\n94,40.77699279785156\n95,59.12581253051758\n96,39.92525100708008\n97,73.13128662109375\n98,39.762332916259766\n99,37.03330993652344\n100,41.08307647705078\n101,22.996906280517578\n102,42.44054412841797\n103,55.511566162109375\n104,30.113340377807617\n105,79.30381774902344\n106,31.753244400024414\n107,39.1454963684082\n108,31.254045486450195\n109,16.276878356933594\n110,34.91770553588867\n111,48.19776153564453\n112,53.38485336303711\n113,64.71014404296875\n114,76.80734252929688\n115,34.82745361328125\n116,78.46796417236328\n117,49.26906204223633\n118,71.34574890136719\n119,49.63853454589844\n120,82.4670181274414\n121,67.37328338623047\n122,37.706050872802734\n123,28.210132598876953\n124,38.76945877075195\n125,60.99965286254883\n126,38.36994552612305\n127,73.91388702392578\n128,38.620338439941406\n129,34.787357330322266\n130,39.025718688964844\n131,21.708404541015625\n132,40.41040802001953\n133,57.02785110473633\n134,27.969512939453125\n135,80.94461059570312\n136,30.140098571777344\n137,37.901466369628906\n138,28.409915924072266\n139,13.869088172912598\n140,32.72490310668945\n141,48.812103271484375\n142,53.02897262573242\n143,64.53185272216797\n144,77.5356674194336\n145,34.181983947753906\n146,78.75933074951172\n147,49.133544921875\n148,69.3703842163086\n149,49.46082305908203\n150,88.47941589355469\n151,65.6626205444336\n152,36.574729919433594\n153,29.138370513916016\n154,37.62810134887695\n155,59.05076599121094\n156,37.617008209228516\n157,73.28862762451172\n158,37.7252082824707\n159,36.11531448364258\n160,38.206600189208984\n161,22.07625389099121\n162,39.12571334838867\n163,55.318180084228516\n164,27.891347885131836\n165,79.73546600341797\n166,29.577573776245117\n167,38.348854064941406\n168,28.61342430114746\n169,15.405285835266113\n170,31.28389549255371\n171,46.825775146484375\n172,52.57886505126953\n173,63.477909088134766\n174,75.81744384765625\n175,33.60163879394531\n176,76.6960678100586\n177,47.85638427734375\n178,70.22827911376953\n179,48.01304244995117\n180,81.8550033569336\n181,65.9618911743164\n182,34.829376220703125\n183,26.08037567138672\n184,34.872161865234375\n185,59.03520202636719\n186,35.97732162475586\n187,73.85105895996094\n188,35.97319412231445\n189,34.50147247314453\n190,36.09976577758789\n191,17.663623809814453\n192,36.788387298583984\n193,57.654788970947266\n194,26.128707885742188\n195,80.54557037353516\n196,27.385719299316406\n197,39.674354553222656\n198,25.28542709350586\n199,9.982566833496094\n200,28.698461532592773\n201,52.525150299072266\n202,53.11958694458008\n203,63.177459716796875\n204,77.56156921386719\n205,30.17090606689453\n206,78.60027313232422\n207,48.881553649902344\n208,72.67377471923828\n209,48.80141830444336\n210,84.04375457763672\n211,66.89774322509766\n212,36.923683166503906\n213,30.26640510559082\n214,36.97331237792969\n215,60.69625473022461\n216,37.68666076660156\n217,73.33045196533203\n218,37.775421142578125\n219,36.71208190917969\n220,37.719032287597656\n221,23.83427619934082\n222,38.103450775146484\n223,57.586429595947266\n224,28.96138572692871\n225,79.75086975097656\n226,30.028934478759766\n227,39.73369216918945\n228,28.976238250732422\n229,17.026203155517578\n230,30.774213790893555\n231,49.3324089050293\n232,55.05889129638672\n233,63.51430892944336\n234,74.88803100585938\n235,34.59260177612305\n236,75.2341537475586\n237,49.15187072753906\n238,69.744384765625\n239,48.993682861328125\n240,83.01339721679688\n241,66.49210357666016\n242,39.40740203857422\n243,30.30223846435547\n244,37.592098236083984\n245,59.93743133544922\n246,39.978965759277344\n247,73.2406234741211\n248,40.67851257324219\n249,36.88675308227539\n250,38.829017639160156\n251,23.249074935913086\n252,38.360931396484375\n253,57.21003341674805\n254,30.952930450439453\n255,80.12309265136719\n256,33.488582611083984\n257,40.50978469848633\n258,29.99329376220703\n259,16.75070571899414\n260,30.843175888061523\n261,48.02680587768555\n262,57.0463981628418\n263,61.39891052246094\n264,77.82044219970703\n265,31.661319732666016\n266,76.6340560913086\n267,46.88737869262695\n268,72.26380157470703\n269,46.3729362487793\n270,85.16082000732422\n271,67.19071197509766\n272,36.26372146606445\n273,29.56197166442871\n274,35.916908264160156\n275,60.73927307128906\n276,36.84929275512695\n277,73.89417266845703\n278,37.30453109741211\n279,36.323081970214844\n280,36.553062438964844\n281,22.888574600219727\n282,36.988746643066406\n283,57.7906494140625\n284,27.213916778564453\n285,80.61628723144531\n286,29.285032272338867\n287,39.409156799316406\n288,26.998523712158203\n289,16.015838623046875\n290,29.23141860961914\n291,48.979400634765625\n292,52.64957809448242\n293,63.49952697753906\n294,73.64832305908203\n295,32.93931198120117\n296,73.52405548095703\n297,48.37228012084961\n298,67.51419830322266\n299,48.213932037353516\n300,82.52960205078125\n301,67.9986801147461\n302,39.71887969970703\n303,30.60849380493164\n304,36.840824127197266\n305,62.05632781982422\n306,39.96946334838867\n307,74.38838958740234\n308,41.58717727661133\n309,36.806941986083984\n310,38.0721435546875\n311,24.31205940246582\n312,37.54330062866211\n313,59.121063232421875\n314,30.03005027770996\n315,82.0189208984375\n316,34.169769287109375\n317,41.05118942260742\n318,28.59706687927246\n319,17.673725128173828\n320,29.25171661376953\n321,48.20761489868164\n322,54.602882385253906\n323,60.3183479309082\n324,80.78669738769531\n325,32.746185302734375\n326,78.53755187988281\n327,46.74723434448242\n328,71.59949493408203\n329,45.79487609863281\n330,88.10826873779297\n331,65.42036437988281\n332,38.47091293334961\n333,31.34379005432129\n334,37.75358581542969\n335,59.36082077026367\n336,39.538814544677734\n337,72.4971694946289\n338,39.492225646972656\n339,38.001094818115234\n340,39.056495666503906\n341,24.023828506469727\n342,38.719417572021484\n343,57.075618743896484\n344,31.576261520385742\n345,78.69068908691406\n346,32.55459213256836\n347,41.9567756652832\n348,30.92888069152832\n349,17.57431983947754\n350,31.766029357910156\n351,50.22199249267578\n352,58.346229553222656\n353,61.85087203979492\n354,77.91754913330078\n355,33.64629364013672\n356,77.73236846923828\n357,48.703250885009766\n358,74.52783966064453\n359,48.30078887939453\n360,83.37398529052734\n361,66.66926574707031\n362,36.83408737182617\n363,30.731040954589844\n364,35.724613189697266\n365,59.9128303527832\n366,37.53642272949219\n367,72.18053436279297\n368,37.07246017456055\n369,36.370487213134766\n370,36.64974594116211\n371,24.344318389892578\n372,35.6076774597168\n373,56.23570251464844\n374,30.6525936126709\n375,78.55223846435547\n376,30.006160736083984\n377,39.643836975097656\n378,30.001684188842773\n379,17.6446590423584\n380,28.765647888183594\n381,47.46842575073242\n382,63.416629791259766\n383,60.80122375488281\n384,77.49125671386719\n385,33.99946975708008\n386,76.30673217773438\n387,47.27984619140625\n388,74.81572723388672\n389,47.302772521972656\n390,87.65577697753906\n391,65.80732727050781\n392,36.289459228515625\n393,26.319339752197266\n394,34.741371154785156\n395,57.60220718383789\n396,36.859764099121094\n397,72.43698120117188\n398,37.104679107666016\n399,33.61793518066406\n400,35.830238342285156\n401,18.513784408569336\n402,34.955810546875\n403,54.9586181640625\n404,28.556644439697266\n405,79.23521423339844\n406,29.319053649902344\n407,36.77368927001953\n408,27.78537940979004\n409,11.991610527038574\n410,27.228321075439453\n411,45.5108528137207\n412,59.38446044921875\n413,60.66195297241211\n414,74.02063751220703\n415,27.606731414794922\n416,72.62692260742188\n417,44.34669876098633\n418,71.67630004882812\n419,44.40645217895508\n420,81.85569763183594\n421,66.93963623046875\n422,39.395381927490234\n423,30.559431076049805\n424,37.346153259277344\n425,60.18488693237305\n426,40.370731353759766\n427,74.02318572998047\n428,40.685791015625\n429,37.23788070678711\n430,39.0251350402832\n431,23.225496292114258\n432,37.89550018310547\n433,57.17060089111328\n434,32.254310607910156\n435,80.88667297363281\n436,33.51654052734375\n437,41.1458740234375\n438,31.164276123046875\n439,16.733722686767578\n440,30.29047203063965\n441,47.832298278808594\n442,62.1834716796875\n443,60.86211395263672\n444,82.32257843017578\n445,32.49611282348633\n446,80.78988647460938\n447,46.931884765625\n448,78.39764404296875\n449,46.354854583740234\n450,88.17696380615234\n451,66.27645874023438\n452,36.43722152709961\n453,30.541057586669922\n454,33.08294677734375\n455,60.16896057128906\n456,36.49579620361328\n457,72.86605072021484\n458,38.3947868347168\n459,37.1611213684082\n460,34.34553146362305\n461,24.326074600219727\n462,33.7240104675293\n463,58.451499938964844\n464,26.850751876831055\n465,79.7595443725586\n466,30.958911895751953\n467,40.51396560668945\n468,25.48150634765625\n469,18.95925521850586\n470,25.258201599121094\n471,47.00794982910156\n472,49.14982604980469\n473,59.350433349609375\n474,72.11128997802734\n475,30.94275665283203\n476,69.48131561279297\n477,45.37950134277344\n478,64.86825561523438\n479,44.1773567199707\n480,76.04769897460938\n481,66.43375396728516\n482,38.019962310791016\n483,29.31078338623047\n484,36.80012893676758\n485,59.80356216430664\n486,38.903690338134766\n487,73.58308410644531\n488,39.25660705566406\n489,36.0977897644043\n490,38.087120056152344\n491,21.8878231048584\n492,37.70092010498047\n493,56.7324104309082\n494,30.02292823791504\n495,80.55586242675781\n496,31.731369018554688\n497,40.09135055541992\n498,29.231426239013672\n499,14.959992408752441\n500,30.035511016845703\n501,48.21908187866211\n502,58.16425323486328\n503,61.28627395629883\n504,80.17149353027344\n505,32.11972427368164\n506,79.41081237792969\n507,47.12076950073242\n508,74.9278564453125\n509,46.77859115600586\n510,87.10613250732422\n511,64.04220581054688\n512,35.097412109375\n513,31.109766006469727\n514,36.747806549072266\n515,57.907352447509766\n516,36.51649856567383\n517,70.3606948852539\n518,35.07109451293945\n519,37.438663482666016\n520,37.46041488647461\n521,24.433637619018555\n522,37.63813018798828\n523,55.24509048461914\n524,30.171979904174805\n525,75.3697509765625\n526,28.075515747070312\n527,40.08456039428711\n528,30.756229400634766\n529,17.985631942749023\n530,31.659517288208008\n531,50.158931732177734\n532,59.27290344238281\n533,63.23263931274414\n534,71.01676177978516\n535,35.547584533691406\n536,72.55075073242188\n537,49.97924041748047\n538,71.29998016357422\n539,50.25885009765625\n540,78.38353729248047\n541,64.00222778320312\n542,35.12214660644531\n543,29.815567016601562\n544,36.52408218383789\n545,57.9637451171875\n546,36.30557632446289\n547,70.11615753173828\n548,35.59264373779297\n549,35.772823333740234\n550,37.071712493896484\n551,23.568578720092773\n552,37.5423583984375\n553,54.418975830078125\n554,28.695871353149414\n555,75.8148422241211\n556,28.17171859741211\n557,38.369571685791016\n558,29.38604164123535\n559,17.03392791748047\n560,30.74588394165039\n561,47.659915924072266\n562,56.294960021972656\n563,61.28598403930664\n564,74.43153381347656\n565,35.65776062011719\n566,75.65055084228516\n567,48.25908279418945\n568,71.1364974975586\n569,48.4964599609375\n570,81.107666015625\n571,66.09577941894531\n572,35.13658905029297\n573,28.96005630493164\n574,35.178951263427734\n575,60.32806396484375\n576,35.44700622558594\n577,71.86890411376953\n578,36.03583526611328\n579,34.9620361328125\n580,35.31520080566406\n581,23.26121711730957\n582,36.185733795166016\n583,57.04617691040039\n584,25.616703033447266\n585,78.64212036132812\n586,28.085655212402344\n587,38.12482452392578\n588,25.516916275024414\n589,16.1986083984375\n590,28.638402938842773\n591,48.28992462158203\n592,49.475120544433594\n593,62.0064697265625\n594,71.5555191040039\n595,33.68984603881836\n596,71.59105682373047\n597,47.843292236328125\n598,63.43684005737305\n599,47.853580474853516\n600,82.4512710571289\n601,64.584716796875\n602,35.62984085083008\n603,30.97191619873047\n604,36.50651931762695\n605,58.21610641479492\n606,36.82649230957031\n607,71.48675537109375\n608,36.1456413269043\n609,37.34392547607422\n610,37.302371978759766\n611,24.160675048828125\n612,37.438961029052734\n613,54.90177917480469\n614,29.254920959472656\n615,77.11394500732422\n616,28.81796646118164\n617,39.35649871826172\n618,29.857799530029297\n619,17.938779830932617\n620,30.61478614807129\n621,47.484764099121094\n622,56.63983917236328\n623,62.73760986328125\n624,72.60102081298828\n625,34.69673538208008\n626,73.35970306396484\n627,48.34940719604492\n628,70.70335388183594\n629,48.4256591796875\n630,79.00399017333984\n631,68.08869171142578\n632,37.18472671508789\n633,31.26715660095215\n634,35.306304931640625\n635,60.62417984008789\n636,37.61406707763672\n637,74.67516326904297\n638,37.96864700317383\n639,38.009490966796875\n640,36.23896026611328\n641,24.056188583374023\n642,35.178123474121094\n643,58.08690643310547\n644,29.626630783081055\n645,81.13789367675781\n646,30.62797737121582\n647,40.7053337097168\n648,28.749174118041992\n649,18.0699462890625\n650,27.77215003967285\n651,48.14493942260742\n652,59.08769989013672\n653,63.1616325378418\n654,71.74411010742188\n655,31.299394607543945\n656,69.79000091552734\n657,47.25263595581055\n658,69.63494110107422\n659,47.138885498046875\n660,79.94453430175781\n661,66.84458923339844\n662,38.167789459228516\n663,30.83348274230957\n664,36.97570037841797\n665,61.09983825683594\n666,38.721595764160156\n667,73.45333099365234\n668,39.705909729003906\n669,37.16661071777344\n670,37.917667388916016\n671,24.547643661499023\n672,38.10737228393555\n673,58.209205627441406\n674,29.015499114990234\n675,80.37814331054688\n676,32.144588470458984\n677,40.73270034790039\n678,28.447368621826172\n679,17.987390518188477\n680,30.220247268676758\n681,48.88072204589844\n682,52.52970504760742\n683,61.712100982666016\n684,77.34961700439453\n685,34.10468673706055\n686,76.62842559814453\n687,48.08219909667969\n688,69.57683563232422\n689,47.46684265136719\n690,83.91001892089844\n691,64.13884735107422\n692,39.846160888671875\n693,32.27554702758789\n694,34.74768829345703\n695,57.01960754394531\n696,39.89407730102539\n697,71.43588256835938\n698,41.35881423950195\n699,38.511688232421875\n700,36.90107727050781\n701,25.18454360961914\n702,34.089874267578125\n703,54.51158905029297\n704,32.42835998535156\n705,77.97061920166016\n706,35.275360107421875\n707,40.328826904296875\n708,30.946596145629883\n709,21.053022384643555\n710,26.283267974853516\n711,41.07036209106445\n712,59.000301361083984\n713,56.91768264770508\n714,74.21400451660156\n715,28.167531967163086\n716,69.8089599609375\n717,41.38943862915039\n718,72.23181915283203\n719,40.249752044677734\n720,76.41326141357422\n721,64.1337890625\n722,34.755130767822266\n723,29.654115676879883\n724,37.95711135864258\n725,58.45869064331055\n726,35.69837188720703\n727,70.84528350830078\n728,35.419551849365234\n729,35.948753356933594\n730,37.60587692260742\n731,23.94267463684082\n732,39.783897399902344\n733,54.770362854003906\n734,25.950172424316406\n735,76.46067810058594\n736,27.05242156982422\n737,36.94340515136719\n738,27.966251373291016\n739,17.482778549194336\n740,32.36465835571289\n741,47.159088134765625\n742,46.4688835144043\n743,64.44702911376953\n744,68.54650115966797\n745,36.37485122680664\n746,71.08306121826172\n747,49.28318405151367\n748,62.327911376953125\n749,49.864593505859375\n750,75.39392852783203\n751,66.53189849853516\n752,33.76109313964844\n753,26.942237854003906\n754,40.09142303466797\n755,58.863136291503906\n756,35.95921325683594\n757,74.93353271484375\n758,33.62236785888672\n759,34.739994049072266\n760,39.79757308959961\n761,19.133380889892578\n762,42.37215805053711\n763,53.48560333251953\n764,26.843120574951172\n765,80.50562286376953\n766,24.028167724609375\n767,35.1442985534668\n768,30.122909545898438\n769,10.954465866088867\n770,35.185855865478516\n771,47.90004348754883\n772,56.763671875\n773,70.42754364013672\n774,74.1185531616211\n775,36.31690979003906\n776,79.2923583984375\n777,51.89254379272461\n778,72.92832946777344\n779,53.42706298828125\n780,84.05957794189453\n781,66.43457794189453\n782,37.716514587402344\n783,28.09574317932129\n784,37.29423141479492\n785,59.61048126220703\n786,38.387821197509766\n787,72.78543853759766\n788,38.74428939819336\n789,34.32600784301758\n790,38.08736801147461\n791,21.63995933532715\n792,38.145057678222656\n793,55.322364807128906\n794,29.29947280883789\n795,79.89417266845703\n796,30.810537338256836\n797,37.120567321777344\n798,29.248228073120117\n799,14.50654125213623\n800,30.50286293029785\n801,45.30540466308594\n802,57.03117752075195\n803,61.48039627075195\n804,78.1793441772461\n805,32.510040283203125\n806,77.77084350585938\n807,46.18613052368164\n808,71.77301788330078\n809,46.26624298095703\n810,87.89305877685547\n811,68.22590637207031\n812,37.411842346191406\n813,28.755474090576172\n814,36.41736602783203\n815,61.36882400512695\n816,37.83450698852539\n817,75.35896301269531\n818,38.86033248901367\n819,35.60023498535156\n820,37.173622131347656\n821,22.0240535736084\n822,37.52894592285156\n823,57.51405715942383\n824,27.34511375427246\n825,82.8114013671875\n826,30.56744384765625\n827,38.41801071166992\n828,27.087411880493164\n829,15.015554428100586\n830,29.16649055480957\n831,46.51802444458008\n832,52.71480941772461\n833,63.39373779296875\n834,76.96831512451172\n835,31.989425659179688\n836,76.16032409667969\n837,46.97201156616211\n838,68.96296691894531\n839,46.676361083984375\n840,86.12071228027344\n841,67.33320617675781\n842,36.544532775878906\n843,29.214290618896484\n844,36.25978088378906\n845,60.30838394165039\n846,37.56724166870117\n847,73.75587463378906\n848,37.31879806518555\n849,35.41277313232422\n850,37.27172088623047\n851,22.54003143310547\n852,36.888702392578125\n853,55.745208740234375\n854,29.36185073852539\n855,80.57566833496094\n856,29.421192169189453\n857,38.239200592041016\n858,29.39763069152832\n859,15.5204496383667\n860,29.234556198120117\n861,46.05192947387695\n862,61.30275344848633\n863,61.83936309814453\n864,81.10474395751953\n865,34.390499114990234\n866,80.73822021484375\n867,47.2209358215332\n868,76.65790557861328\n869,47.22852325439453\n870,89.75425720214844\n871,65.36267852783203\n872,34.30080032348633\n873,30.704021453857422\n874,35.8188362121582\n875,58.83885955810547\n876,35.695411682128906\n877,71.42037963867188\n878,34.32769012451172\n879,36.82298278808594\n880,36.47035598754883\n881,24.245328903198242\n882,36.40817642211914\n883,55.27993392944336\n884,29.14734649658203\n885,76.79834747314453\n886,26.889366149902344\n887,39.1676139831543\n888,29.864219665527344\n889,17.657739639282227\n890,29.8607120513916\n891,48.69374084472656\n892,60.810150146484375\n893,62.93533706665039\n894,73.6780014038086\n895,36.18544006347656\n896,74.754638671875\n897,49.41022491455078\n898,73.23104095458984\n899,49.779911041259766\n900,81.5455322265625\n901,65.44188690185547\n902,39.19032287597656\n903,30.110219955444336\n904,37.28755187988281\n905,58.953895568847656\n906,40.04335403442383\n907,73.0269546508789\n908,40.642967224121094\n909,37.2296142578125\n910,38.86754608154297\n911,22.252094268798828\n912,38.19245529174805\n913,56.99699401855469\n914,31.350910186767578\n915,79.72374725341797\n916,33.50802993774414\n917,41.55812454223633\n918,30.163715362548828\n919,15.963013648986816\n920,30.487125396728516\n921,49.03732681274414\n922,57.67688751220703\n923,60.42085266113281\n924,79.91960144042969\n925,31.124164581298828\n926,78.73612976074219\n927,46.81040954589844\n928,75.53102111816406\n929,46.255218505859375\n930,83.80172729492188\n931,66.00550842285156\n932,36.93423080444336\n933,30.568742752075195\n934,36.82316207885742\n935,60.265846252441406\n936,37.6513786315918\n937,72.50199890136719\n938,38.18762969970703\n939,36.884090423583984\n940,37.541160583496094\n941,24.421236038208008\n942,38.13294982910156\n943,57.32495880126953\n944,28.320398330688477\n945,78.9493179321289\n946,30.494020462036133\n947,39.98377227783203\n948,28.306795120239258\n949,17.926847457885742\n950,30.502029418945312\n951,48.85634231567383\n952,51.8571891784668\n953,62.170284271240234\n954,75.09086608886719\n955,34.953834533691406\n956,75.27863311767578\n957,48.593544006347656\n958,68.38816833496094\n959,48.29386901855469\n960,81.23426055908203\n961,64.5211410522461\n962,35.50046920776367\n963,27.95413589477539\n964,35.94591522216797\n965,59.17036056518555\n966,35.75082778930664\n967,70.34929656982422\n968,36.81806564331055\n969,33.8255615234375\n970,35.989341735839844\n971,22.806859970092773\n972,37.5016975402832\n973,55.6829948425293\n974,24.96674346923828\n975,77.1877670288086\n976,28.55242919921875\n977,36.39747619628906\n978,25.46906852722168\n979,16.007518768310547\n980,29.419288635253906\n981,46.05808639526367\n982,44.603187561035156\n983,60.518741607666016\n984,71.79784393310547\n985,33.89994430541992\n986,72.27725982666016\n987,46.5316047668457\n988,61.18318176269531\n989,46.564579010009766\n990,80.45294952392578\n991,67.03028106689453\n992,37.03647232055664\n993,32.21430587768555\n994,36.5540771484375\n995,60.06378173828125\n996,37.65555953979492\n997,73.20726776123047\n998,37.52880096435547\n999,38.45524597167969\n1000,37.21584701538086\n1001,25.607398986816406\n1002,36.74001693725586\n1003,57.2353630065918\n1004,30.079076766967773\n1005,79.0318374633789\n1006,30.33060646057129\n1007,40.5101432800293\n1008,30.048446655273438\n1009,19.747234344482422\n1010,29.835342407226562\n1011,48.36522674560547\n1012,58.3135986328125\n1013,63.64317321777344\n1014,70.26212310791016\n1015,33.86833953857422\n1016,69.572998046875\n1017,48.46284484863281\n1018,68.62918090820312\n1019,48.52732849121094\n1020,77.99103546142578\n1021,63.21477508544922\n1022,35.643821716308594\n1023,31.91373062133789\n1024,33.46495819091797\n1025,57.494441986083984\n1026,36.02463912963867\n1027,68.89586639404297\n1028,36.516963958740234\n1029,37.35737609863281\n1030,34.63168716430664\n1031,26.115201950073242\n1032,33.574432373046875\n1033,55.20458984375\n1034,29.068405151367188\n1035,74.628662109375\n1036,30.20177459716797\n1037,39.984195709228516\n1038,28.231719970703125\n1039,20.99016571044922\n1040,26.867937088012695\n1041,45.83919906616211\n1042,54.54071807861328\n1043,57.96481704711914\n1044,68.68767547607422\n1045,32.696834564208984\n1046,66.90335845947266\n1047,45.30293273925781\n1048,65.7678451538086\n1049,44.671932220458984\n1050,74.4333724975586\n1051,66.60289001464844\n1052,38.67142105102539\n1053,30.072330474853516\n1054,37.11257553100586\n1055,60.04080581665039\n1056,39.041168212890625\n1057,72.9618911743164\n1058,39.814510345458984\n1059,36.50611114501953\n1060,38.00541687011719\n1061,23.18086814880371\n1062,37.752647399902344\n1063,57.43149948120117\n1064,29.672529220581055\n1065,79.79853820800781\n1066,32.35686492919922\n1067,40.181732177734375\n1068,28.761154174804688\n1069,16.619979858398438\n1070,30.080554962158203\n1071,48.5117301940918\n1072,55.50756072998047\n1073,61.33228302001953\n1074,76.48483276367188\n1075,31.837310791015625\n1076,75.41839599609375\n1077,47.04914474487305\n1078,70.40718841552734\n1079,46.735782623291016\n1080,84.23326110839844\n1081,66.3197250366211\n1082,37.33138656616211\n1083,29.84588050842285\n1084,35.666236877441406\n1085,60.22773742675781\n1086,37.81523132324219\n1087,72.8119125366211\n1088,38.72032165527344\n1089,36.1116943359375\n1090,36.74088668823242\n1091,23.415523529052734\n1092,36.55961990356445\n1093,57.148685455322266\n1094,28.507408142089844\n1095,79.80011749267578\n1096,31.216312408447266\n1097,39.73891067504883\n1098,27.704181671142578\n1099,16.814884185791016\n1100,28.761070251464844\n1101,47.439388275146484\n1102,53.95343017578125\n1103,60.55526351928711\n1104,76.99585723876953\n1105,32.71489334106445\n1106,75.87823486328125\n1107,46.7099723815918\n1108,69.91329956054688\n1109,46.11627197265625\n1110,84.39594268798828\n1111,67.59246826171875\n1112,37.78123474121094\n1113,28.81236457824707\n1114,36.65140914916992\n1115,61.162925720214844\n1116,38.614646911621094\n1117,73.83464050292969\n1118,39.0960807800293\n1119,35.021949768066406\n1120,37.779632568359375\n1121,22.16692352294922\n1122,37.527748107910156\n1123,57.2844352722168\n1124,29.38439178466797\n1125,81.25570678710938\n1126,31.17022705078125\n1127,39.51174545288086\n1128,28.56527328491211\n1129,14.729923248291016\n1130,29.450050354003906\n1131,48.221343994140625\n1132,59.2540168762207\n1133,60.27900314331055\n1134,84.9352035522461\n1135,34.219932556152344\n1136,84.11914825439453\n1137,47.37581253051758\n1138,77.38753509521484\n1139,47.107120513916016\n1140,93.03585052490234\n1141,66.35575866699219\n1142,37.43146514892578\n1143,28.387659072875977\n1144,37.76838684082031\n1145,60.293975830078125\n1146,37.90522384643555\n1147,72.27031707763672\n1148,38.30900955200195\n1149,34.55302810668945\n1150,38.05511474609375\n1151,22.404985427856445\n1152,39.06360626220703\n1153,56.72825241088867\n1154,28.09636878967285\n1155,79.20166015625\n1156,30.28558349609375\n1157,37.7351188659668\n1158,28.147541046142578\n1159,14.994274139404297\n1160,31.60175895690918\n1161,48.20110321044922\n1162,52.50507736206055\n1163,62.707698822021484\n1164,75.04557800292969\n1165,33.617252349853516\n1166,75.6030044555664\n1167,48.087703704833984\n1168,67.0862808227539\n1169,48.26133346557617\n1170,86.11003875732422\n1171,65.39848327636719\n1172,35.79281234741211\n1173,28.995098114013672\n1174,35.20347595214844\n1175,58.33256912231445\n1176,36.770748138427734\n1177,72.81497192382812\n1178,36.811180114746094\n1179,35.93364715576172\n1180,36.33921813964844\n1181,21.555599212646484\n1182,35.95399856567383\n1183,55.04552459716797\n1184,28.296512603759766\n1185,79.31269836425781\n1186,29.194690704345703\n1187,38.44452667236328\n1188,28.18868637084961\n1189,15.17010498046875\n1190,28.349815368652344\n1191,45.84465408325195\n1192,56.50423049926758\n1193,61.71646499633789\n1194,74.74568176269531\n1195,31.238609313964844\n1196,74.21199035644531\n1197,46.111175537109375\n1198,71.59122467041016\n1199,45.91720199584961\n1200,81.23283386230469\n1201,64.4932632446289\n1202,38.608699798583984\n1203,29.101638793945312\n1204,40.73862075805664\n1205,58.21106719970703\n1206,39.841552734375\n1207,72.29906463623047\n1208,39.704872131347656\n1209,36.12640380859375\n1210,41.03194808959961\n1211,21.91550064086914\n1212,42.49481964111328\n1213,54.616493225097656\n1214,29.881423950195312\n1215,78.5248794555664\n1216,31.68266487121582\n1217,38.37171173095703\n1218,30.984695434570312\n1219,15.1134672164917\n1220,34.953556060791016\n1221,47.56089782714844\n1222,52.85506820678711\n1223,63.84149169921875\n1224,77.03531646728516\n1225,33.948326110839844\n1226,78.79329681396484\n1227,48.48112106323242\n1228,71.28459930419922\n1229,48.92344665527344\n1230,82.61416625976562\n1231,66.53811645507812\n1232,36.7902717590332\n1233,30.2380428314209\n1234,35.98638916015625\n1235,59.956905364990234\n1236,37.610260009765625\n1237,73.8887939453125\n1238,38.048362731933594\n1239,37.423553466796875\n1240,37.00657653808594\n1241,23.083206176757812\n1242,36.98337173461914\n1243,57.68160629272461\n1244,28.556564331054688\n1245,80.32466125488281\n1246,30.367528915405273\n1247,40.41006851196289\n1248,28.147573471069336\n1249,16.815994262695312\n1250,29.258832931518555\n1251,48.98568344116211\n1252,53.86912155151367\n1253,63.11154556274414\n1254,73.45626831054688\n1255,32.16583251953125\n1256,72.94242095947266\n1257,48.034278869628906\n1258,69.20864868164062\n1259,47.60568618774414\n1260,79.35176086425781\n1261,66.10456848144531\n1262,34.39789962768555\n1263,26.865795135498047\n1264,34.26417922973633\n1265,58.67824935913086\n1266,34.88172149658203\n1267,72.03093719482422\n1268,34.938087463378906\n1269,33.34400177001953\n1270,34.5891227722168\n1271,20.008487701416016\n1272,34.57038116455078\n1273,55.135318756103516\n1274,26.10875701904297\n1275,78.78170776367188\n1276,26.714508056640625\n1277,36.29435348510742\n1278,25.99955940246582\n1279,13.00462818145752\n1280,26.840211868286133\n1281,46.09102249145508\n1282,56.314788818359375\n1283,61.11283493041992\n1284,73.231689453125\n1285,30.974618911743164\n1286,72.72531127929688\n1287,45.79265213012695\n1288,68.7562026977539\n1289,46.28065872192383\n1290,83.19502258300781\n1291,64.35609436035156\n1292,35.809940338134766\n1293,33.2862434387207\n1294,33.66205978393555\n1295,59.061275482177734\n1296,35.87129211425781\n1297,69.02772521972656\n1298,36.42535400390625\n1299,37.87191390991211\n1300,34.430511474609375\n1301,28.2698917388916\n1302,33.57759475708008\n1303,56.36013412475586\n1304,28.81949806213379\n1305,74.82677459716797\n1306,30.124650955200195\n1307,40.72278594970703\n1308,27.939233779907227\n1309,22.950281143188477\n1310,26.98628044128418\n1311,46.892852783203125\n1312,54.106510162353516\n1313,58.07188034057617\n1314,69.24559783935547\n1315,35.17967987060547\n1316,67.41617584228516\n1317,46.4390869140625\n1318,64.61164855957031\n1319,45.94181442260742\n1320,76.94165802001953\n1321,64.71107482910156\n1322,34.869327545166016\n1323,28.109575271606445\n1324,35.813140869140625\n1325,59.007686614990234\n1326,35.29791259765625\n1327,71.24817657470703\n1328,36.209712982177734\n1329,34.467681884765625\n1330,35.84481430053711\n1331,22.50848960876465\n1332,37.483001708984375\n1333,55.58518600463867\n1334,24.450416564941406\n1335,77.86444091796875\n1336,27.721044540405273\n1337,36.48238754272461\n1338,25.337303161621094\n1339,15.963602066040039\n1340,29.208892822265625\n1341,45.936405181884766\n1342,44.08808898925781\n1343,61.767704010009766\n1344,70.80158233642578\n1345,33.75843811035156\n1346,71.5950698852539\n1347,46.86909484863281\n1348,61.36122512817383\n1349,46.966983795166016\n1350,77.88957214355469\n1351,64.55651092529297\n1352,36.539791107177734\n1353,31.464824676513672\n1354,35.77985382080078\n1355,58.32714080810547\n1356,37.343448638916016\n1357,70.96178436279297\n1358,37.38887405395508\n1359,36.867061614990234\n1360,36.75516891479492\n1361,25.439861297607422\n1362,36.0181999206543\n1363,53.91461181640625\n1364,29.506084442138672\n1365,77.10293579101562\n1366,30.339378356933594\n1367,38.72492599487305\n1368,29.742177963256836\n1369,19.67025375366211\n1370,28.572071075439453\n1371,43.56339645385742\n1372,58.1270751953125\n1373,59.176841735839844\n1374,77.27556610107422\n1375,34.74418640136719\n1376,76.17021942138672\n1377,45.46260070800781\n1378,73.18218994140625\n1379,45.22073745727539\n1380,82.94866180419922\n1381,69.97406005859375\n1382,37.92788314819336\n1383,31.27044105529785\n1384,34.094398498535156\n1385,63.58028030395508\n1386,37.66318130493164\n1387,76.87476348876953\n1388,40.12205123901367\n1389,37.833213806152344\n1390,35.14175796508789\n1391,24.98553466796875\n1392,34.58393096923828\n1393,60.58690643310547\n1394,26.338001251220703\n1395,84.82948303222656\n1396,32.16577911376953\n1397,41.232906341552734\n1398,24.84001350402832\n1399,18.900596618652344\n1400,25.41201400756836\n1401,46.900779724121094\n1402,49.14044952392578\n1403,61.92586135864258\n1404,76.19957733154297\n1405,31.40237045288086\n1406,72.77181243896484\n1407,46.111549377441406\n1408,65.72957611083984\n1409,44.87735366821289\n1410,83.69319152832031\n1411,67.50845336914062\n1412,35.33567810058594\n1413,31.334205627441406\n1414,36.03946304321289\n1415,60.98202133178711\n1416,36.436500549316406\n1417,73.29206848144531\n1418,35.465553283691406\n1419,37.41366958618164\n1420,36.67719268798828\n1421,24.951000213623047\n1422,36.527305603027344\n1423,57.515960693359375\n1424,29.390432357788086\n1425,79.13117980957031\n1426,27.895896911621094\n1427,40.49285888671875\n1428,29.544822692871094\n1429,18.066831588745117\n1430,29.730348587036133\n1431,50.429412841796875\n1432,61.41278839111328\n1433,63.66982650756836\n1434,75.97418212890625\n1435,36.7296142578125\n1436,76.47394561767578\n1437,50.34683609008789\n1438,73.93170166015625\n1439,50.56726837158203\n1440,85.09906005859375\n1441,68.03787994384766\n1442,38.05295181274414\n1443,29.900646209716797\n1444,35.203704833984375\n1445,60.665985107421875\n1446,38.669185638427734\n1447,75.56879425048828\n1448,39.776283264160156\n1449,36.84755325317383\n1450,36.862281799316406\n1451,22.525259017944336\n1452,35.61754608154297\n1453,57.154571533203125\n1454,29.58753776550293\n1455,82.95582580566406\n1456,32.16447830200195\n1457,39.82090759277344\n1458,28.584840774536133\n1459,16.377098083496094\n1460,27.166364669799805\n1461,45.015499114990234\n1462,58.45895004272461\n1463,61.04370880126953\n1464,80.28681182861328\n1465,30.785024642944336\n1466,77.78185272216797\n1467,45.136138916015625\n1468,75.04532623291016\n1469,44.356231689453125\n1470,85.77469635009766\n1471,63.805667877197266\n1472,37.01081085205078\n1473,26.74678611755371\n1474,40.3588981628418\n1475,56.99732971191406\n1476,38.254329681396484\n1477,71.43040466308594\n1478,37.79330062866211\n1479,33.886356353759766\n1480,40.214515686035156\n1481,19.790346145629883\n1482,42.26171112060547\n1483,52.81825637817383\n1484,28.03059959411621\n1485,77.54150390625\n1486,29.00084114074707\n1487,35.228065490722656\n1488,29.891630172729492\n1489,12.74570083618164\n1490,34.44000244140625\n1491,45.50266647338867\n1492,51.2084846496582\n1493,63.98136520385742\n1494,74.74930572509766\n1495,33.31492233276367\n1496,77.43909454345703\n1497,47.561946868896484\n1498,68.9802474975586\n1499,48.54210662841797\n1500,81.47012329101562\n1501,68.23876953125\n1502,36.667415618896484\n1503,29.110523223876953\n1504,36.330142974853516\n1505,61.54791259765625\n1506,37.6029052734375\n1507,74.55352020263672\n1508,37.617740631103516\n1509,35.34398651123047\n1510,37.28590774536133\n1511,22.537900924682617\n1512,37.21318817138672\n1513,57.14357376098633\n1514,28.764345169067383\n1515,81.71650695800781\n1516,29.505260467529297\n1517,38.941646575927734\n1518,28.563671112060547\n1519,15.077505111694336\n1520,29.343164443969727\n1521,47.8399658203125\n1522,59.8172492980957\n1523,62.218589782714844\n1524,82.80329132080078\n1525,35.08292770385742\n1526,82.55686950683594\n1527,48.20429229736328\n1528,76.55471801757812\n1529,48.11285400390625\n1530,92.0531005859375\n1531,65.40104675292969\n1532,36.364898681640625\n1533,31.43471336364746\n1534,35.91114807128906\n1535,59.1439323425293\n1536,37.147125244140625\n1537,70.97926330566406\n1538,36.67411422729492\n1539,37.062923431396484\n1540,36.761451721191406\n1541,25.276674270629883\n1542,36.2156867980957\n1543,55.98210144042969\n1544,30.252288818359375\n1545,76.80642700195312\n1546,29.81015968322754\n1547,40.06427764892578\n1548,29.9890193939209\n1549,18.990015029907227\n1550,29.63612174987793\n1551,48.182411193847656\n1552,60.127593994140625\n1553,60.98494338989258\n1554,74.43614959716797\n1555,34.84468078613281\n1556,74.03257751464844\n1557,47.96332550048828\n1558,72.03524780273438\n1559,47.86455535888672\n1560,82.65629577636719\n1561,65.72631072998047\n1562,38.00722122192383\n1563,30.791683197021484\n1564,37.450599670410156\n1565,59.24359130859375\n1566,39.16087341308594\n1567,73.05790710449219\n1568,39.071868896484375\n1569,37.55363464355469\n1570,38.744834899902344\n1571,23.43043327331543\n1572,38.32781982421875\n1573,56.37309646606445\n1574,31.083045959472656\n1575,79.34209442138672\n1576,31.749746322631836\n1577,40.91144561767578\n1578,30.75238037109375\n1579,17.093971252441406\n1580,30.909378051757812\n1581,48.4417724609375\n1582,59.11121368408203\n1583,61.686763763427734\n1584,79.10752868652344\n1585,33.68923568725586\n1586,78.80686950683594\n1587,47.92280578613281\n1588,75.89677429199219\n1589,47.71037292480469\n1590,83.68773651123047\n1591,65.1202163696289\n1592,36.546043395996094\n1593,30.880353927612305\n1594,34.10862350463867\n1595,57.93567657470703\n1596,37.09499740600586\n1597,72.6004409790039\n1598,37.907020568847656\n1599,37.197025299072266\n1600,35.63594436645508\n1601,23.922985076904297\n1602,34.19688034057617\n1603,53.93266296386719\n1604,28.891456604003906\n1605,79.15867614746094\n1606,30.75971221923828\n1607,38.51301574707031\n1608,28.67049789428711\n1609,18.7961368560791\n1610,26.179140090942383\n1611,41.297607421875\n1612,56.4868049621582\n1613,59.45607376098633\n1614,74.84093475341797\n1615,30.918275833129883\n1616,72.41043090820312\n1617,43.329654693603516\n1618,71.53024291992188\n1619,42.68209457397461\n1620,78.95864868164062\n1621,66.72259521484375\n1622,37.86966323852539\n1623,31.553659439086914\n1624,36.92387390136719\n1625,59.749664306640625\n1626,38.28978729248047\n1627,72.54206848144531\n1628,38.34772491455078\n1629,37.66071701049805\n1630,37.587100982666016\n1631,24.919889450073242\n1632,37.070186614990234\n1633,57.08843994140625\n1634,30.496950149536133\n1635,78.55410766601562\n1636,31.218448638916016\n1637,40.281944274902344\n1638,30.110815048217773\n1639,18.915193557739258\n1640,30.135143280029297\n1641,48.42123794555664\n1642,58.762351989746094\n1643,62.516597747802734\n1644,71.73823547363281\n1645,33.08277130126953\n1646,70.84101867675781\n1647,47.85056686401367\n1648,69.28024291992188\n1649,47.8928337097168\n1650,79.76260375976562\n1651,66.50154113769531\n1652,38.23251724243164\n1653,29.114137649536133\n1654,36.72246551513672\n1655,60.80392837524414\n1656,38.558494567871094\n1657,72.20466613769531\n1658,39.70766830444336\n1659,34.8758430480957\n1660,37.52600860595703\n1661,23.277362823486328\n1662,37.65857696533203\n1663,57.364898681640625\n1664,28.751880645751953\n1665,79.62644958496094\n1666,32.064308166503906\n1667,39.04791259765625\n1668,27.911609649658203\n1669,16.18439292907715\n1670,29.67917251586914\n1671,47.67178726196289\n1672,53.487491607666016\n1673,59.482215881347656\n1674,79.84483337402344\n1675,33.66709899902344\n1676,78.7730941772461\n1677,46.66059112548828\n1678,70.21232604980469\n1679,46.25288391113281\n1680,88.58418273925781\n1681,65.38693237304688\n1682,38.39766311645508\n1683,30.66268539428711\n1684,38.90232467651367\n1685,58.701744079589844\n1686,39.4118537902832\n1687,71.54973602294922\n1688,38.686485290527344\n1689,36.86611557006836\n1690,39.643611907958984\n1691,23.826780319213867\n1692,39.59430694580078\n1693,55.628028869628906\n1694,32.07455825805664\n1695,77.34356689453125\n1696,31.641292572021484\n1697,39.699466705322266\n1698,32.235023498535156\n1699,17.268657684326172\n1700,33.09893035888672\n1701,48.7183723449707\n1702,61.19153594970703\n1703,62.77936935424805\n1704,75.40970611572266\n1705,34.00081253051758\n1706,75.94927215576172\n1707,48.568241119384766\n1708,73.60547637939453\n1709,48.76911926269531\n1710,83.31839752197266\n1711,67.90383911132812\n1712,37.022274017333984\n1713,29.070459365844727\n1714,37.246177673339844\n1715,61.69985580444336\n1716,37.39435958862305\n1717,74.21837615966797\n1718,37.96331787109375\n1719,35.462432861328125\n1720,37.4450798034668\n1721,22.8990421295166\n1722,38.52410125732422\n1723,58.007686614990234\n1724,26.96099281311035\n1725,81.327392578125\n1726,29.63723373413086\n1727,38.52986145019531\n1728,27.043758392333984\n1729,15.417277336120605\n1730,30.687427520751953\n1731,48.820281982421875\n1732,51.43536376953125\n1733,64.28206634521484\n1734,74.84882354736328\n1735,33.84383010864258\n1736,75.17586517333984\n1737,48.84228515625\n1738,66.37144470214844\n1739,48.94231414794922\n1740,86.38401794433594\n1741,67.00604248046875\n1742,39.13866424560547\n1743,29.564584732055664\n1744,37.13816452026367\n1745,60.167720794677734\n1746,39.5173225402832\n1747,73.25205993652344\n1748,40.03647232055664\n1749,35.99713134765625\n1750,38.28512191772461\n1751,22.871334075927734\n1752,37.62293243408203\n1753,57.207916259765625\n1754,31.199377059936523\n1755,80.20014953613281\n1756,32.844154357910156\n1757,39.33058547973633\n1758,30.199251174926758\n1759,16.176958084106445\n1760,30.408809661865234\n1761,47.371524810791016\n1762,58.98612976074219\n1763,61.909175872802734\n1764,75.5992660522461\n1765,30.988046646118164\n1766,74.1541519165039\n1767,46.61188507080078\n1768,70.99442291259766\n1769,46.176673889160156\n1770,85.45938873291016\n1771,63.37018585205078\n1772,34.73614501953125\n1773,30.575450897216797\n1774,33.913238525390625\n1775,57.66236877441406\n1776,35.44673538208008\n1777,69.2020034790039\n1778,35.331356048583984\n1779,36.35676193237305\n1780,34.82843017578125\n1781,24.456012725830078\n1782,34.33912658691406\n1783,55.217201232910156\n1784,28.3303165435791\n1785,74.9544448852539\n1786,28.746089935302734\n1787,39.59870147705078\n1788,27.80429458618164\n1789,18.470657348632812\n1790,27.854915618896484\n1791,47.64617919921875\n1792,55.1822509765625\n1793,59.42121887207031\n1794,69.99732971191406\n1795,32.91989517211914\n1796,69.43257904052734\n1797,46.68638229370117\n1798,67.18276977539062\n1799,46.205020904541016\n1800,77.439208984375\n1801,67.54364013671875\n1802,36.916961669921875\n1803,28.454622268676758\n1804,37.63788986206055\n1805,61.09315490722656\n1806,37.62701416015625\n1807,73.99629974365234\n1808,37.704750061035156\n1809,35.09259033203125\n1810,38.05519104003906\n1811,21.85295867919922\n1812,39.02971267700195\n1813,57.48088455200195\n1814,27.895954132080078\n1815,80.92827606201172\n1816,29.37606430053711\n1817,38.420204162597656\n1818,28.046354293823242\n1819,14.150984764099121\n1820,31.451440811157227\n1821,49.51396179199219\n1822,54.30992126464844\n1823,64.34529113769531\n1824,76.71585845947266\n1825,34.05094909667969\n1826,77.64575958251953\n1827,49.28602600097656\n1828,69.7804946899414\n1829,49.57046127319336\n1830,87.69623565673828\n1831,67.58279418945312\n1832,40.87385559082031\n1833,29.521595001220703\n1834,38.72825241088867\n1835,60.54557418823242\n1836,41.37424850463867\n1837,73.78213500976562\n1838,41.65073776245117\n1839,35.937862396240234\n1840,40.00054168701172\n1841,22.171239852905273\n1842,39.25603485107422\n1843,57.44549560546875\n1844,32.90891647338867\n1845,81.05015563964844\n1846,34.55644607543945\n1847,40.37263870239258\n1848,31.455669403076172\n1849,14.725790977478027\n1850,32.32173156738281\n1851,48.82403564453125\n1852,62.87925338745117\n1853,62.34477615356445\n1854,79.99012756347656\n1855,30.555131912231445\n1856,78.59111785888672\n1857,47.193355560302734\n1858,75.1665267944336\n1859,66.17057037353516\n1860,34.20053482055664\n1861,28.071229934692383\n1862,35.74043655395508\n1863,60.46983337402344\n1864,34.81593704223633\n1865,71.7337875366211\n1866,34.772254943847656\n1867,34.10900115966797\n1868,35.66925811767578\n1869,22.304784774780273\n1870,37.18483352661133\n1871,56.982757568359375\n1872,25.09827995300293\n1873,78.25720977783203\n1874,26.306249618530273\n1875,37.64936828613281\n1876,25.517345428466797\n1877,14.556663513183594\n1878,29.76604652404785\n1879,50.166378021240234\n1880,50.46989822387695\n1881,62.9427604675293\n1882,73.65364074707031\n1883,35.63149642944336\n1884,75.24272155761719\n1885,49.6184196472168\n1886,65.79178619384766\n1887,50.0229377746582\n1888,84.76554870605469\n1889,66.83029174804688\n1890,38.61679458618164\n1891,28.191444396972656\n1892,36.68746566772461\n1893,60.3979606628418\n1894,38.82709884643555\n1895,72.65428161621094\n1896,39.90886306762695\n1897,34.61283874511719\n1898,37.59943771362305\n1899,21.770769119262695\n1900,37.515724182128906\n1901,57.719512939453125\n1902,29.333498001098633\n1903,79.98333740234375\n1904,32.306392669677734\n1905,38.9730224609375\n1906,28.062868118286133\n1907,14.698646545410156\n1908,29.702007293701172\n1909,48.53622055053711\n1910,55.14784622192383\n1911,60.398372650146484\n1912,77.63487243652344\n1913,31.238941192626953\n1914,76.3913345336914\n1915,46.546714782714844\n1916,69.80068969726562\n1917,46.141807556152344\n1918,86.92169952392578\n1919,67.80287170410156\n1920,39.58734893798828\n1921,28.38724136352539\n1922,37.14557647705078\n1923,60.67041778564453\n1924,40.375892639160156\n1925,74.59416198730469\n1926,41.12643051147461\n1927,35.004913330078125\n1928,38.75410842895508\n1929,21.086952209472656\n1930,37.71050262451172\n1931,56.967193603515625\n1932,31.24370574951172\n1933,82.29310607910156\n1934,33.374061584472656\n1935,39.50083923339844\n1936,29.90816307067871\n1937,13.974286079406738\n1938,29.37911033630371\n1939,46.64718246459961\n1940,62.51941680908203\n1941,59.64759826660156\n1942,87.15853881835938\n1943,31.59412384033203\n1944,85.20543670654297\n1945,45.65732192993164\n1946,80.60375213623047\n1947,45.14211654663086\n1948,94.21205139160156\n1949,66.76049041748047\n1950,37.007205963134766\n1951,32.14111328125\n1952,36.80524444580078\n1953,59.88453674316406\n1954,37.64695739746094\n1955,72.75994110107422\n1956,37.35840606689453\n1957,38.198753356933594\n1958,37.377052307128906\n1959,25.616914749145508\n1960,37.01123046875\n1961,56.9112663269043\n1962,30.146209716796875\n1963,78.51992797851562\n1964,30.132038116455078\n1965,40.24156951904297\n1966,30.267913818359375\n1967,19.669458389282227\n1968,30.16221046447754\n1969,48.34260177612305\n1970,58.65040588378906\n1971,63.454856872558594\n1972,70.68473815917969\n1973,34.31363296508789\n1974,70.26789093017578\n1975,48.561790466308594\n1976,69.0239028930664\n1977,48.689453125\n1978,78.64646911621094\n1979,65.80579376220703\n1980,35.46569061279297\n1981,30.80130386352539\n1982,36.2321891784668\n1983,60.316436767578125\n1984,36.13670349121094\n1985,71.23213958740234\n1986,36.03974914550781\n1987,36.43507766723633\n1988,36.55192947387695\n1989,25.206249237060547\n1990,37.32283020019531\n1991,57.17484664916992\n1992,27.706615447998047\n1993,77.23908233642578\n1994,28.377899169921875\n1995,39.590213775634766\n1996,28.00168228149414\n1997,18.436866760253906\n1998,30.23676109313965\n1999,50.00535583496094\n2000,53.1771354675293\n2001,62.083457946777344\n2002,73.62847900390625\n2003,36.98722457885742\n2004,74.54888153076172\n2005,49.71001052856445\n2006,67.7767333984375\n2007,49.75917053222656\n2008,81.7145767211914\n2009,64.09690856933594\n2010,34.89547348022461\n2011,29.048839569091797\n2012,35.46986389160156\n2013,58.20933532714844\n2014,35.49771499633789\n2015,71.33584594726562\n2016,36.28982925415039\n2017,35.864051818847656\n2018,35.797218322753906\n2019,22.92145347595215\n2020,37.0417594909668\n2021,55.506813049316406\n2022,25.317054748535156\n2023,77.53291320800781\n2024,28.153776168823242\n2025,37.625545501708984\n2026,26.10124969482422\n2027,17.103975296020508\n2028,28.869726181030273\n2029,46.044498443603516\n2030,44.91664123535156\n2031,61.88187026977539\n2032,69.2373046875\n2033,32.991390228271484\n2034,69.7120361328125\n2035,46.74235534667969\n2036,62.1764030456543\n2037,46.58503723144531\n2038,73.3863296508789\n2039,66.65996551513672\n2040,35.14711380004883\n2041,31.505857467651367\n2042,36.86249542236328\n2043,60.7105712890625\n2044,36.24158477783203\n2045,72.87531280517578\n2046,35.52204132080078\n2047,37.63015365600586\n2048,37.227272033691406\n2049,25.336759567260742\n2050,38.03156661987305\n2051,57.19418716430664\n2052,28.205543518066406\n2053,78.60364532470703\n2054,27.790855407714844\n2055,40.08830642700195\n2056,29.061248779296875\n2057,18.510499954223633\n2058,31.23549461364746\n2059,50.33154296875\n2060,55.4642219543457\n2061,64.76056671142578\n2062,73.17630004882812\n2063,37.56290054321289\n2064,74.7184066772461\n2065,51.007110595703125\n2066,69.57068634033203\n2067,51.21457290649414\n2068,81.50572204589844\n2069,64.41583251953125\n2070,33.41856002807617\n2071,31.296323776245117\n2072,36.5247802734375\n2073,58.96265411376953\n2074,34.600242614746094\n2075,71.33954620361328\n2076,34.010921478271484\n2077,37.58150863647461\n2078,36.47308349609375\n2079,25.500566482543945\n2080,38.31273651123047\n2081,55.46234893798828\n2082,25.722877502441406\n2083,76.59934997558594\n2084,25.845029830932617\n2085,38.620765686035156\n2086,27.70427131652832\n2087,19.334548950195312\n2088,31.106815338134766\n2089,48.37834548950195\n2090,47.54682540893555\n2091,64.86343383789062\n2092,68.00323486328125\n2093,38.02629470825195\n2094,70.4678955078125\n2095,50.48668670654297\n2096,63.477142333984375\n2097,50.86983871459961\n2098,73.4636001586914\n2099,66.27256774902344\n2100,35.3207893371582\n2101,28.909242630004883\n2102,38.307884216308594\n2103,58.604217529296875\n2104,36.565975189208984\n2105,73.77510833740234\n2106,35.06340789794922\n2107,36.069122314453125\n2108,38.27275085449219\n2109,21.273584365844727\n2110,39.384788513183594\n2111,54.5056037902832\n2112,28.02139663696289\n2113,79.53408813476562\n2114,26.832260131835938\n2115,37.079097747802734\n2116,29.581623077392578\n2117,13.910550117492676\n2118,32.7558708190918\n2119,47.4882698059082\n2120,56.9240837097168\n2121,68.03681945800781\n2122,68.50340270996094\n2123,32.42939376831055\n2124,70.77881622314453\n2125,49.417057037353516\n2126,67.75521087646484\n2127,50.411651611328125\n2128,81.04303741455078\n2129,69.7806396484375\n2130,32.53573989868164\n2131,29.74848175048828\n2132,33.141178131103516\n2133,63.86663818359375\n2134,32.80583190917969\n2135,76.27605438232422\n2136,33.40373611450195\n2137,36.257118225097656\n2138,32.85980224609375\n2139,23.599018096923828\n2140,34.10587692260742\n2141,60.33953094482422\n2142,21.751455307006836\n2143,83.40803527832031\n2144,24.399072647094727\n2145,39.748470306396484\n2146,21.814132690429688\n2147,15.858893394470215\n2148,25.771909713745117\n2149,51.3002815246582\n2150,47.23704147338867\n2151,65.69246673583984\n2152,71.90673065185547\n2153,35.497867584228516\n2154,72.04745483398438\n2155,50.578731536865234\n2156,62.648193359375\n2157,50.91145324707031\n2158,84.32412719726562\n2159,65.5526123046875\n2160,38.168479919433594\n2161,25.365148544311523\n2162,40.53547668457031\n2163,58.7451057434082\n2164,38.98993682861328\n2165,72.26868438720703\n2166,39.252723693847656\n2167,32.01436996459961\n2168,40.48432540893555\n2169,18.93694496154785\n2170,42.653038024902344\n2171,53.75440979003906\n2172,27.58831787109375\n2173,79.45476531982422\n2174,30.074203491210938\n2175,34.33001708984375\n2176,28.917823791503906\n2177,10.916794776916504\n2178,34.44068145751953\n2179,45.09183120727539\n2180,51.11915588378906\n2181,63.241905212402344\n2182,79.42753601074219\n2183,33.2081298828125\n2184,81.61063385009766\n2185,46.95276641845703\n2186,69.60427856445312\n2187,47.96052932739258\n2188,89.79891204833984\n2189,65.46381378173828\n2190,36.49562072753906\n2191,31.402942657470703\n2192,36.21162414550781\n2193,59.261287689208984\n2194,36.99762725830078\n2195,70.8048095703125\n2196,36.97089767456055\n2197,36.93968200683594\n2198,36.646663665771484\n2199,25.537578582763672\n2200,36.52942657470703\n2201,56.2342529296875\n2202,29.28800392150879\n2203,76.66302490234375\n2204,29.84720230102539\n2205,39.52591323852539\n2206,29.236162185668945\n2207,19.47241973876953\n2208,29.686464309692383\n2209,47.951324462890625\n2210,56.48174285888672\n2211,61.11130905151367\n2212,71.39854431152344\n2213,34.8128547668457\n2214,70.99501037597656\n2215,47.82155990600586\n2216,67.72167205810547\n2217,47.90367889404297\n2218,79.38237762451172\n2219,67.42161560058594\n2220,34.97940444946289\n2221,30.990785598754883\n2222,36.007240295410156\n2223,61.54097366333008\n2224,36.00653076171875\n2225,74.5616455078125\n2226,36.12946701049805\n2227,37.83618927001953\n2228,36.596946716308594\n2229,24.55234718322754\n2230,37.67156982421875\n2231,58.495914459228516\n2232,26.414709091186523\n2233,80.80494689941406\n2234,27.84178352355957\n2235,40.504581451416016\n2236,26.990692138671875\n2237,17.814651489257812\n2238,29.885324478149414\n2239,50.50575256347656\n2240,50.382389068603516\n2241,65.27947998046875\n2242,73.32655334472656\n2243,36.29900360107422\n2244,74.41280364990234\n2245,50.722633361816406\n2246,67.46319580078125\n2247,50.5797004699707\n2248,79.71724700927734\n2249,68.2002182006836\n2250,35.60401916503906\n2251,27.787933349609375\n2252,36.09977722167969\n2253,60.98576354980469\n2254,36.353858947753906\n2255,76.25140380859375\n2256,37.075138092041016\n2257,34.975486755371094\n2258,36.6226806640625\n2259,20.3488712310791\n2260,37.675323486328125\n2261,56.15724182128906\n2262,24.688859939575195\n2263,83.7624282836914\n2264,28.026653289794922\n2265,37.34147262573242\n2266,25.307231903076172\n2267,12.83563232421875\n2268,28.864307403564453\n2269,45.524749755859375\n2270,50.36398696899414\n2271,64.70606994628906\n2272,78.47797393798828\n2273,32.322288513183594\n2274,78.84019470214844\n2275,47.144474029541016\n2276,69.83438873291016\n2277,47.267276763916016\n2278,87.3443374633789\n2279,64.9262466430664\n2280,37.073123931884766\n2281,30.995573043823242\n2282,35.7994270324707\n2283,59.28678512573242\n2284,37.782615661621094\n2285,70.9706802368164\n2286,37.99713897705078\n2287,36.64532470703125\n2288,36.93723678588867\n2289,24.660961151123047\n2290,36.42439270019531\n2291,56.158836364746094\n2292,29.849271774291992\n2293,77.46981811523438\n2294,31.13953399658203\n2295,40.598751068115234\n2296,29.099262237548828\n2297,18.135276794433594\n2298,29.399616241455078\n2299,48.043582916259766\n2300,57.09073257446289\n2301,59.19907760620117\n2302,78.12175750732422\n2303,34.48069763183594\n2304,77.2874984741211\n2305,47.177772521972656\n2306,72.64227294921875\n2307,46.777427673339844\n2308,85.36783599853516\n2309,66.75362396240234\n2310,39.484710693359375\n2311,28.815324783325195\n2312,37.84355545043945\n2313,60.0452995300293\n2314,40.43808364868164\n2315,73.18463134765625\n2316,40.728660583496094\n2317,35.234920501708984\n2318,39.304325103759766\n2319,21.785907745361328\n2320,38.53697967529297\n2321,56.6713752746582\n2322,31.96523666381836\n2323,80.36160278320312\n2324,33.25122833251953\n2325,39.771881103515625\n2326,30.858600616455078\n2327,14.689698219299316\n2328,30.794445037841797\n2329,47.860130310058594\n2330,62.776519775390625\n2331,59.73465347290039\n2332,85.48162841796875\n2333,32.7144889831543\n2334,84.3330078125\n2335,46.64338684082031\n2336,79.9135513305664\n2337,46.2835693359375\n2338,92.65375518798828\n2339,68.26858520507812\n2340,36.034828186035156\n2341,30.70601463317871\n2342,34.14397048950195\n2343,62.568748474121094\n2344,36.113189697265625\n2345,74.2334213256836\n2346,37.60629653930664\n2347,36.81654739379883\n2348,34.7774772644043\n2349,25.08115577697754\n2350,34.8902587890625\n2351,59.80297088623047\n2352,25.92414093017578\n2353,81.431640625\n2354,29.59500503540039\n2355,40.364200592041016\n2356,25.080833435058594\n2357,18.59479331970215\n2358,26.496219635009766\n2359,48.98617172241211\n2360,49.441898345947266\n2361,61.619407653808594\n2362,74.2568130493164\n2363,34.13496017456055\n2364,72.67249298095703\n2365,47.894676208496094\n2366,65.03604888916016\n2367,47.182857513427734\n2368,82.40440368652344\n2369,66.77738189697266\n2370,37.08208465576172\n2371,30.192583084106445\n2372,39.29555130004883\n2373,59.83351516723633\n2374,38.01889419555664\n2375,73.20894622802734\n2376,37.10832595825195\n2377,36.8610725402832\n2378,39.404693603515625\n2379,23.414833068847656\n2380,40.627864837646484\n2381,56.5255012512207\n2382,29.537227630615234\n2383,78.85802459716797\n2384,29.170612335205078\n2385,38.70603561401367\n2386,30.66336441040039\n2387,16.402175903320312\n2388,34.00648498535156\n2389,49.91035079956055\n2390,55.98606872558594\n2391,66.9145736694336\n2392,70.41426849365234\n2393,34.7912712097168\n2394,72.55243682861328\n2395,50.733585357666016\n2396,67.8854751586914\n2397,51.30760955810547\n2398,80.4275131225586\n2399,64.6654281616211\n2400,36.67186737060547\n2401,30.208694458007812\n2402,36.99513626098633\n2403,59.235904693603516\n2404,37.24803924560547\n2405,70.15727996826172\n2406,37.26853561401367\n2407,35.993011474609375\n2408,37.39014434814453\n2409,24.47311782836914\n2410,38.07134246826172\n2411,56.619903564453125\n2412,28.83884048461914\n2413,76.22587585449219\n2414,30.011940002441406\n2415,39.33774185180664\n2416,28.75325584411621\n2417,17.754497528076172\n2418,31.329439163208008\n2419,49.79499435424805\n2420,52.76725769042969\n2421,61.41461944580078\n2422,72.08305358886719\n2423,34.952362060546875\n2424,72.76166534423828\n2425,48.796043395996094\n2426,66.29362487792969\n2427,48.80966567993164\n2428,81.09620666503906\n2429,66.27954864501953\n2430,36.011993408203125\n2431,30.53132438659668\n2432,34.39698028564453\n2433,60.049537658691406\n2434,36.53553771972656\n2435,72.42938995361328\n2436,37.065338134765625\n2437,36.69814682006836\n2438,35.416385650634766\n2439,24.226964950561523\n2440,34.86266326904297\n2441,57.31119918823242\n2442,28.271211624145508\n2443,78.93262481689453\n2444,29.745166778564453\n2445,39.92987823486328\n2446,27.482563018798828\n2447,17.993148803710938\n2448,27.434764862060547\n2449,47.83075714111328\n2450,55.272151947021484\n2451,60.837562561035156\n2452,73.19976806640625\n2453,32.929622650146484\n2454,71.88493347167969\n2455,47.02663803100586\n2456,68.47211456298828\n2457,46.53885269165039\n2458,80.81580352783203\n2459,67.82864379882812\n2460,36.90683364868164\n2461,31.070871353149414\n2462,34.585594177246094\n2463,60.619590759277344\n2464,37.21131134033203\n2465,74.22478485107422\n2466,37.81605911254883\n2467,37.447574615478516\n2468,35.57363510131836\n2469,24.158849716186523\n2470,34.422943115234375\n2471,57.67377853393555\n2472,29.004669189453125\n2473,80.92500305175781\n2474,30.462913513183594\n2475,40.22003936767578\n2476,28.03556251525879\n2477,18.178386688232422\n2478,26.781553268432617\n2479,46.90774154663086\n2480,58.5389518737793\n2481,61.840946197509766\n2482,73.2036361694336\n2483,31.492950439453125\n2484,70.87816619873047\n2485,46.36574935913086\n2486,69.84715270996094\n2487,46.08155822753906\n2488,81.3879623413086\n2489,68.45600128173828\n2490,36.89867401123047\n2491,30.7979679107666\n2492,35.798377990722656\n2493,60.97628402709961\n2494,37.57709503173828\n2495,75.31542205810547\n2496,37.72954559326172\n2497,37.69374465942383\n2498,36.747215270996094\n2499,23.512191772460938\n2500,36.069862365722656\n2501,57.8978385925293\n2502,29.277368545532227\n2503,81.84413146972656\n2504,30.041221618652344\n2505,40.247615814208984\n2506,28.869800567626953\n2507,17.21029281616211\n2508,28.4864444732666\n2509,48.08572006225586\n2510,59.28307342529297\n2511,64.03914642333984\n2512,74.03821563720703\n2513,32.360435485839844\n2514,72.86424255371094\n2515,47.93877029418945\n2516,71.5225601196289\n2517,47.841163635253906\n2518,81.88574981689453\n2519,66.40027618408203\n2520,37.581512451171875\n2521,31.17564582824707\n2522,35.689029693603516\n2523,59.869285583496094\n2524,38.25186538696289\n2525,71.95082092285156\n2526,38.170902252197266\n2527,36.88214874267578\n2528,36.92521286010742\n2529,24.80115509033203\n2530,35.63764190673828\n2531,56.774600982666016\n2532,31.277618408203125\n2533,78.34162139892578\n2534,31.351673126220703\n2535,40.58063888549805\n2536,30.227638244628906\n2537,18.449787139892578\n2538,28.626754760742188\n2539,47.856502532958984\n2540,62.81789779663086\n2541,59.66756820678711\n2542,78.63209533691406\n2543,33.715824127197266\n2544,76.9981918334961\n2545,46.92423629760742\n2546,75.49208068847656\n2547,46.58967590332031\n2548,86.80426788330078\n2549,67.15121459960938\n2550,40.34516143798828\n2551,29.370018005371094\n2552,38.547698974609375\n2553,60.4682502746582\n2554,41.31947326660156\n2555,73.77616119384766\n2556,41.75815200805664\n2557,35.79155731201172\n2558,40.056396484375\n2559,22.33066749572754\n2560,39.21175765991211\n2561,56.95442199707031\n2562,32.68082046508789\n2563,81.05415344238281\n2564,34.303977966308594\n2565,40.2193489074707\n2566,31.56956672668457\n2567,15.342970848083496\n2568,31.33176612854004\n2569,47.652557373046875\n2570,63.1336555480957\n2571,59.944114685058594\n2572,86.52027893066406\n2573,32.96371078491211\n2574,85.11782836914062\n2575,46.68797302246094\n2576,80.67317199707031\n2577,46.26327896118164\n2578,93.17656707763672\n2579,66.92433166503906\n2580,37.7230339050293\n2581,30.278541564941406\n2582,36.564632415771484\n2583,59.98628234863281\n2584,38.03254318237305\n2585,73.08113098144531\n2586,38.61454772949219\n2587,36.80662536621094\n2588,37.24228286743164\n2589,23.78302764892578\n2590,37.12392807006836\n2591,57.46631622314453\n2592,29.207054138183594\n2593,79.47640991210938\n2594,31.033496856689453\n2595,39.33224105834961\n2596,28.830385208129883\n2597,17.748855590820312\n2598,29.55792236328125\n2599,47.77707290649414\n2600,54.79600524902344\n2601,62.68013000488281\n2602,71.52909088134766\n2603,32.011478424072266\n2604,70.63716125488281\n2605,47.2974739074707\n2606,67.1083984375\n2607,47.04712677001953\n2608,79.01665496826172\n2609,65.17876434326172\n2610,36.85551834106445\n2611,29.86353302001953\n2612,37.09384536743164\n2613,58.82039260864258\n2614,37.83360290527344\n2615,72.60069274902344\n2616,38.073394775390625\n2617,36.75806427001953\n2618,37.94135284423828\n2619,22.779281616210938\n2620,38.44307327270508\n2621,55.79804611206055\n2622,28.579782485961914\n2623,78.90532684326172\n2624,30.34674072265625\n2625,39.58995056152344\n2626,28.74395751953125\n2627,16.401437759399414\n2628,30.79503059387207\n2629,47.833621978759766\n2630,53.0882682800293\n2631,62.31013488769531\n2632,75.75996398925781\n2633,33.37990188598633\n2634,76.13594055175781\n2635,47.7674674987793\n2636,70.65445709228516\n2637,47.678680419921875\n2638,80.83767700195312\n2639,65.43595123291016\n2640,36.19352722167969\n2641,28.737985610961914\n2642,35.87498474121094\n2643,59.55209732055664\n2644,36.57965850830078\n2645,70.6991958618164\n2646,36.82790756225586\n2647,34.61603927612305\n2648,36.338348388671875\n2649,22.837156295776367\n2650,36.745487213134766\n2651,56.7568473815918\n2652,27.91971778869629\n2653,77.2348861694336\n2654,29.2974796295166\n2655,38.551368713378906\n2656,27.38977813720703\n2657,15.760525703430176\n2658,29.629135131835938\n2659,49.33852005004883\n2660,53.93992614746094\n2661,60.725040435791016\n2662,73.6688003540039\n2663,33.51542282104492\n2664,73.76032257080078\n2665,47.82191848754883\n2666,67.2425308227539\n2667,47.83561325073242\n2668,83.7285385131836\n2669,66.01371765136719\n2670,38.39091110229492\n2671,27.681625366210938\n2672,37.69544219970703\n2673,59.795284271240234\n2674,38.719261169433594\n2675,72.15672302246094\n2676,39.58696746826172\n2677,34.149818420410156\n2678,38.260684967041016\n2679,21.383352279663086\n2680,38.96342086791992\n2681,56.64202117919922\n2682,28.56525230407715\n2683,79.4170913696289\n2684,31.77880096435547\n2685,37.79056167602539\n2686,28.056446075439453\n2687,14.083666801452637\n2688,31.29340934753418\n2689,47.736175537109375\n2690,52.181156158447266\n2691,61.521453857421875\n2692,76.0667953491211\n2693,31.53357696533203\n2694,75.88948059082031\n2695,46.80571746826172\n2696,67.46324920654297\n2697,46.67863464355469\n2698,86.49520111083984\n2699,68.20407104492188\n2700,38.67339324951172\n2701,29.596940994262695\n2702,37.927207946777344\n2703,61.69584274291992\n2704,39.30609130859375\n2705,74.99905395507812\n2706,40.13046646118164\n2707,36.09536361694336\n2708,38.78385543823242\n2709,22.98979377746582\n2710,39.122459411621094\n2711,57.790767669677734\n2712,29.217575073242188\n2713,82.3250961303711\n2714,32.017433166503906\n2715,39.3167610168457\n2716,28.96500015258789\n2717,15.876657485961914\n2718,30.97339630126953\n2719,47.574520111083984\n2720,55.12032699584961\n2721,62.98959732055664\n2722,80.1448974609375\n2723,33.819820404052734\n2724,79.65660858154297\n2725,47.87577819824219\n2726,72.11872863769531\n2727,47.637386322021484\n2728,88.38477325439453\n2729,66.01508331298828\n2730,37.702362060546875\n2731,30.24846649169922\n2732,34.97294616699219\n2733,59.094566345214844\n2734,38.27323913574219\n2735,72.0228500366211\n2736,38.36335754394531\n2737,36.575233459472656\n2738,36.53491973876953\n2739,23.114675521850586\n2740,34.9032096862793\n2741,56.94046401977539\n2742,31.378633499145508\n2743,78.47988891601562\n2744,31.698535919189453\n2745,40.83490753173828\n2746,29.82138442993164\n2747,16.89362144470215\n2748,27.94121551513672\n2749,48.34346389770508\n2750,63.09621810913086\n2751,59.51352310180664\n2752,77.247314453125\n2753,30.883193969726562\n2754,75.1902084350586\n2755,46.09927749633789\n2756,75.27992248535156\n2757,45.591732025146484\n2758,84.7856674194336\n2759,66.56002044677734\n2760,38.51528549194336\n2761,29.823871612548828\n2762,37.263031005859375\n2763,60.644248962402344\n2764,38.79520797729492\n2765,72.18510437011719\n2766,39.58130645751953\n2767,35.637718200683594\n2768,37.96793746948242\n2769,24.106300354003906\n2770,38.06929397583008\n2771,57.34228515625\n2772,29.73285675048828\n2773,79.17354583740234\n2774,32.19672775268555\n2775,39.030704498291016\n2776,29.08827781677246\n2777,17.26772689819336\n2778,30.6928768157959\n2779,47.69056701660156\n2780,54.496116638183594\n2781,61.15782928466797\n2782,75.62187957763672\n2783,33.39973068237305\n2784,74.76914978027344\n2785,47.242835998535156\n2786,68.01982116699219\n2787,46.901329040527344\n2788,85.62686157226562\n2789,68.04195404052734\n2790,37.70542907714844\n2791,29.017126083374023\n2792,33.48125457763672\n2793,61.161685943603516\n2794,37.57146453857422\n2795,75.30552673339844\n2796,39.859397888183594\n2797,36.261138916015625\n2798,34.87265396118164\n2799,22.000347137451172\n2800,34.04743576049805\n2801,58.9471321105957\n2802,26.729625701904297\n2803,83.17305755615234\n2804,32.14548110961914\n2805,40.07139205932617\n2806,24.785167694091797\n2807,15.947686195373535\n2808,25.119935989379883\n2809,46.32255172729492\n2810,50.20869827270508\n2811,60.55911636352539\n2812,74.9996566772461\n2813,27.91805076599121\n2814,71.5669937133789\n2815,44.4395751953125\n2816,66.31771850585938\n2817,43.19599151611328\n2818,81.98731994628906\n2819,67.49493408203125\n2820,36.0809326171875\n2821,29.099363327026367\n2822,35.20143508911133\n2823,60.90041732788086\n2824,36.51724624633789\n2825,74.01677703857422\n2826,37.32650375366211\n2827,35.94573211669922\n2828,35.842655181884766\n2829,22.663087844848633\n2830,36.156925201416016\n2831,58.21359634399414\n2832,26.73764419555664\n2833,80.87401580810547\n2834,29.146320343017578\n2835,38.965145111083984\n2836,26.369873046875\n2837,16.074432373046875\n2838,27.99149513244629\n2839,48.416969299316406\n2840,51.70079040527344\n2841,62.90877151489258\n2842,73.00065612792969\n2843,32.25056076049805\n2844,72.36168670654297\n2845,47.64890670776367\n2846,66.4647445678711\n2847,47.30950927734375\n2848,80.97710418701172\n2849,64.9576644897461\n2850,35.760684967041016\n2851,29.243555068969727\n2852,35.08785629272461\n2853,58.771148681640625\n2854,36.46163558959961\n2855,71.25514221191406\n2856,36.669925689697266\n2857,35.86298751831055\n2858,36.002159118652344\n2859,22.64726448059082\n2860,35.999534606933594\n2861,56.67479705810547\n2862,28.257282257080078\n2863,77.45870208740234\n2864,29.338367462158203\n2865,39.4481315612793\n2866,27.62677764892578\n2867,16.194677352905273\n2868,28.88309669494629\n2869,49.21512985229492\n2870,54.15217971801758\n2871,61.17702102661133\n2872,71.85877990722656\n2873,32.203086853027344\n2874,71.6534194946289\n2875,47.567710876464844\n2876,67.81651306152344\n2877,47.26896286010742\n2878,79.1192855834961\n2879,68.00436401367188\n2880,37.63022994995117\n2881,27.59667205810547\n2882,37.6094970703125\n2883,60.92158508300781\n2884,38.32271957397461\n2885,75.60942840576172\n2886,39.01029586791992\n2887,34.91886520385742\n2888,38.32138442993164\n2889,20.14441680908203\n2890,39.230255126953125\n2891,57.01806640625\n2892,27.112159729003906\n2893,83.11927032470703\n2894,30.311309814453125\n2895,38.06540298461914\n2896,27.137920379638672\n2897,12.4608793258667\n2898,30.829055786132812\n2899,47.512447357177734\n2900,52.491703033447266\n2901,64.4931869506836\n2902,78.91654968261719\n2903,31.535709381103516\n2904,79.2153549194336\n2905,47.67758560180664\n2906,70.61591339111328\n2907,47.732845306396484\n2908,88.68020629882812\n2909,62.475990295410156\n2910,37.99549102783203\n2911,24.633689880371094\n2912,42.00327682495117\n2913,55.231746673583984\n2914,39.55534744262695\n2915,69.78792572021484\n2916,38.041202545166016\n2917,32.31215286254883\n2918,42.090641021728516\n2919,16.733266830444336\n2920,44.34939193725586\n2921,52.11803436279297\n2922,30.297090530395508\n2923,75.46891784667969\n2924,29.808351516723633\n2925,34.78214645385742\n2926,31.787931442260742\n2927,8.805340766906738\n2928,37.937774658203125\n2929,48.329044342041016\n2930,55.50571060180664\n2931,65.21581268310547\n2932,73.28121948242188\n2933,30.71365737915039\n2934,77.49457550048828\n2935,48.59148025512695\n2936,70.61956024169922\n2937,49.759010314941406\n2938,83.04356384277344\n2939,64.71199035644531\n2940,35.50930404663086\n2941,30.550312042236328\n2942,33.675106048583984\n2943,59.022613525390625\n2944,36.29520034790039\n2945,71.27596282958984\n2946,36.710147857666016\n2947,36.902381896972656\n2948,35.12726593017578\n2949,23.742273330688477\n2950,34.416107177734375\n2951,56.95460891723633\n2952,28.31448745727539\n2953,77.65643310546875\n2954,29.76927947998047\n2955,41.48362350463867\n2956,27.079275131225586\n2957,17.418489456176758\n2958,27.101770401000977\n2959,49.53694534301758\n2960,55.249691009521484\n2961,58.863407135009766\n2962,76.69284057617188\n2963,33.09029006958008\n2964,75.61890411376953\n2965,47.16813278198242\n2966,71.95979309082031\n2967,46.39777755737305\n2968,82.0920639038086\n2969,63.555267333984375\n2970,40.06463623046875\n2971,29.04344940185547\n2972,34.714664459228516\n2973,57.40401077270508\n2974,40.11981201171875\n2975,69.88678741455078\n2976,42.086917877197266\n2977,34.7899055480957\n2978,36.75645065307617\n2979,22.180986404418945\n2980,34.57197189331055\n2981,54.87716293334961\n2982,31.487613677978516\n2983,77.56117248535156\n2984,35.947731018066406\n2985,39.77212905883789\n2986,28.863840103149414\n2987,16.318880081176758\n2988,26.618568420410156\n2989,43.40952682495117\n2990,57.93891906738281\n2991,53.09454345703125\n2992,82.13084411621094\n2993,27.743906021118164\n2994,77.68538665771484\n2995,40.887569427490234\n2996,74.44065856933594\n2997,39.648441314697266\n2998,87.28144836425781\n2999,63.934776306152344\n3000,36.887901306152344\n3001,32.465484619140625\n3002,37.168888092041016\n3003,58.003814697265625\n3004,37.804283142089844\n3005,69.5969467163086\n3006,36.948978424072266\n3007,38.081695556640625\n3008,37.9671630859375\n3009,26.374412536621094\n3010,37.666316986083984\n3011,55.384254455566406\n3012,31.589014053344727\n3013,74.68791961669922\n3014,30.493942260742188\n3015,40.53886795043945\n3016,31.76078987121582\n3017,20.55767059326172\n3018,31.739715576171875\n3019,48.827171325683594\n3020,59.30735397338867\n3021,61.69304275512695\n3022,70.61048126220703\n3023,35.399757385253906\n3024,71.038330078125\n3025,48.77116775512695\n3026,70.09465789794922\n3027,48.75959014892578\n3028,77.70282745361328\n3029,63.818817138671875\n3030,36.32335662841797\n3031,30.538049697875977\n3032,33.488460540771484\n3033,58.20090866088867\n3034,36.43990707397461\n3035,68.78541564941406\n3036,37.26950454711914\n3037,35.68669509887695\n3038,34.58284378051758\n3039,25.01490592956543\n3040,33.49679946899414\n3041,55.759159088134766\n3042,28.879356384277344\n3043,75.17556762695312\n3044,30.807151794433594\n3045,39.45172882080078\n3046,27.471689224243164\n3047,19.24818992614746\n3048,26.500015258789062\n3049,46.24131774902344\n3050,55.1367073059082\n3051,56.472900390625\n3052,72.51798248291016\n3053,32.185035705566406\n3054,70.27552032470703\n3055,44.70106887817383\n3056,67.07769775390625\n3057,43.99430847167969\n3058,80.11102294921875\n3059,65.32077026367188\n3060,34.57761001586914\n3061,28.670936584472656\n3062,33.18538284301758\n3063,58.54954147338867\n3064,35.326290130615234\n3065,71.97392272949219\n3066,35.53124237060547\n3067,35.39834213256836\n3068,34.358612060546875\n3069,21.763330459594727\n3070,33.695919036865234\n3071,55.93077087402344\n3072,27.324934005737305\n3073,78.39196014404297\n3074,28.074804306030273\n3075,38.516876220703125\n3076,26.640642166137695\n3077,15.476371765136719\n3078,26.252506256103516\n3079,46.77375411987305\n3080,55.86294937133789\n3081,60.61460494995117\n3082,72.0116195678711\n3083,30.75676727294922\n3084,70.90824890136719\n3085,45.90054702758789\n3086,68.93213653564453\n3087,45.48512268066406\n3088,79.4176254272461\n3089,65.45709228515625\n3090,35.334163665771484\n3091,28.760032653808594\n3092,36.66883850097656\n3093,58.90972900390625\n3094,36.309452056884766\n3095,72.52925109863281\n3096,36.05546951293945\n3097,35.90449142456055\n3098,36.997127532958984\n3099,21.804197311401367\n3100,38.040672302246094\n3101,56.26826095581055\n3102,27.111127853393555\n3103,78.55654907226562\n3104,27.95099639892578\n3105,38.41874313354492\n3106,27.618637084960938\n3107,15.01168155670166\n3108,30.680625915527344\n3109,49.21613311767578\n3110,51.947269439697266\n3111,64.2782211303711\n3112,70.57223510742188\n3113,32.898712158203125\n3114,71.7961654663086\n3115,48.90207290649414\n3116,66.48030853271484\n3117,49.19047927856445\n3118,78.29889678955078\n3119,66.2901382446289\n3120,37.903507232666016\n3121,29.295133590698242\n3122,36.567657470703125\n3123,59.31096267700195\n3124,38.5499267578125\n3125,73.49774932861328\n3126,39.268375396728516\n3127,36.08314514160156\n3128,37.63496017456055\n3129,22.306520462036133\n3130,37.2136116027832\n3131,55.91583251953125\n3132,29.434463500976562\n3133,80.42424011230469\n3134,31.702211380004883\n3135,38.49368667602539\n3136,29.074819564819336\n3137,16.06061553955078\n3138,29.37203025817871\n3139,45.183921813964844\n3140,55.7495002746582\n3141,61.69355010986328\n3142,75.42976379394531\n3143,30.890905380249023\n3144,74.1924057006836\n3145,45.62760543823242\n3146,70.42671203613281\n3147,45.25815200805664\n3148,82.38639068603516\n3149,66.83769989013672\n3150,36.479217529296875\n3151,30.200469970703125\n3152,35.760318756103516\n3153,59.80536651611328\n3154,37.26988220214844\n3155,73.0666275024414\n3156,37.19221496582031\n3157,35.996986389160156\n3158,36.68320846557617\n3159,23.777708053588867\n3160,36.053531646728516\n3161,55.05373764038086\n3162,29.156646728515625\n3163,79.72079467773438\n3164,29.59575653076172\n3165,38.12178039550781\n3166,29.238252639770508\n3167,17.238603591918945\n3168,28.556987762451172\n3169,44.459659576416016\n3170,60.41469192504883\n3171,61.45371627807617\n3172,77.9857406616211\n3173,33.8355827331543\n3174,77.0211181640625\n3175,46.23814010620117\n3176,73.92013549804688\n3177,46.152549743652344\n3178,87.06782531738281\n3179,66.20726776123047\n3180,39.35447692871094\n3181,29.669204711914062\n3182,38.716094970703125\n3183,60.57937240600586\n3184,40.129791259765625\n3185,72.02165985107422\n3186,40.50607681274414\n3187,35.344032287597656\n3188,39.65815353393555\n3189,23.305553436279297\n3190,39.84259796142578\n3191,56.93281173706055\n3192,30.968589782714844\n3193,79.161865234375\n3194,33.09296417236328\n3195,40.253849029541016\n3196,30.212263107299805\n3197,15.729449272155762\n3198,32.37937927246094\n3199,49.522850036621094\n3200,58.36703872680664\n3201,59.865257263183594\n3202,84.53941345214844\n3203,35.24897384643555\n3204,84.37218475341797\n3205,48.1578483581543\n3206,76.26864624023438\n3207,48.05795669555664\n3208,93.23185729980469\n3209,66.0770034790039\n3210,37.491302490234375\n3211,31.188478469848633\n3212,37.32524871826172\n3213,59.510498046875\n3214,37.94799041748047\n3215,71.50670623779297\n3216,37.92751693725586\n3217,36.89723205566406\n3218,37.66953659057617\n3219,25.124439239501953\n3220,37.6002197265625\n3221,56.36959457397461\n3222,30.015775680541992\n3223,77.50372314453125\n3224,30.720129013061523\n3225,39.33102035522461\n3226,30.018024444580078\n3227,18.929697036743164\n3228,30.738412857055664\n3229,47.8706169128418\n3230,57.426185607910156\n3231,62.0288200378418\n3232,71.72061157226562\n3233,34.2606315612793\n3234,71.34779357910156\n3235,47.9024772644043\n3236,68.12340545654297\n3237,48.10238265991211\n3238,80.35865020751953\n3239,65.86822509765625\n3240,37.31496047973633\n3241,28.411054611206055\n3242,38.123565673828125\n3243,59.73643493652344\n3244,38.01084899902344\n3245,72.0042495727539\n3246,38.064208984375\n3247,34.73253631591797\n3248,38.49412536621094\n3249,22.137102127075195\n3250,39.52143859863281\n3251,56.26919937133789\n3252,28.61296844482422\n3253,78.66537475585938\n3254,30.13504409790039\n3255,37.865028381347656\n3256,28.848777770996094\n3257,14.731982231140137\n3258,32.28956604003906\n3259,48.59563446044922\n3260,53.59831237792969\n3261,62.98726272583008\n3262,75.17220306396484\n3263,33.824703216552734\n3264,76.21857452392578\n3265,48.48057556152344\n3266,68.4075698852539\n3267,48.749088287353516\n3268,85.51219940185547\n3269,64.44200134277344\n3270,36.59109878540039\n3271,27.008031845092773\n3272,38.67730712890625\n3273,58.333953857421875\n3274,37.34001541137695\n3275,70.56702423095703\n3276,37.5767822265625\n3277,33.067718505859375\n3278,38.58148956298828\n3279,21.239904403686523\n3280,40.43030548095703\n3281,53.9018669128418\n3282,26.838680267333984\n3283,77.2293701171875\n3284,28.912860870361328\n3285,35.255950927734375\n3286,28.08299446105957\n3287,13.946252822875977\n3288,32.47602844238281\n3289,45.4732666015625\n3290,49.53907012939453\n3291,61.591819763183594\n3292,75.9202880859375\n3293,34.65342330932617\n3294,77.68183898925781\n3295,47.013267517089844\n3296,66.85269165039062\n3297,47.77128601074219\n3298,84.64691925048828\n3299,63.83552551269531\n3300,38.21007537841797\n3301,29.292951583862305\n3302,34.61301040649414\n3303,57.46746063232422\n3304,38.686588287353516\n3305,70.70156860351562\n3306,39.8108024597168\n3307,35.51691818237305\n3308,36.45368576049805\n3309,22.08613395690918\n3310,34.78892135620117\n3311,54.86967086791992\n3312,30.509057998657227\n3313,77.78968811035156\n3314,33.241371154785156\n3315,39.84477233886719\n3316,28.77841567993164\n3317,16.147748947143555\n3318,27.028034210205078\n3319,44.71405029296875\n3320,58.034427642822266\n3321,55.742698669433594\n3322,80.3750228881836\n3323,29.540771484375\n3324,77.44145965576172\n3325,42.994754791259766\n3326,74.92095947265625\n3327,42.15650177001953\n3328,84.67606353759766\n3329,67.61324310302734\n3330,36.66413497924805\n3331,29.079397201538086\n3332,35.48635482788086\n3333,61.05322265625\n3334,36.924957275390625\n3335,73.70116424560547\n3336,37.767616271972656\n3337,35.7032470703125\n3338,36.0381965637207\n3339,22.842905044555664\n3340,36.20630645751953\n3341,58.402427673339844\n3342,27.30803680419922\n3343,80.64810180664062\n3344,29.765079498291016\n3345,38.97782897949219\n3346,26.671058654785156\n3347,16.139820098876953\n3348,28.238967895507812\n3349,48.66041564941406\n3350,52.664794921875\n3351,62.57958984375\n3352,72.86807250976562\n3353,32.00149154663086\n3354,71.92310333251953\n3355,47.53752899169922\n3356,66.14862060546875\n3357,47.259586334228516\n3358,82.22850036621094\n3359,62.16649627685547\n3360,34.297061920166016\n3361,30.229215621948242\n3362,38.30868148803711\n3363,56.933895111083984\n3364,35.447181701660156\n3365,69.0216293334961\n3366,34.838932037353516\n3367,36.25576400756836\n3368,37.858665466308594\n3369,24.658203125\n3370,40.251319885253906\n3371,53.15868377685547\n3372,26.18760871887207\n3373,74.11540222167969\n3374,26.7418212890625\n3375,36.81051254272461\n3376,28.678884506225586\n3377,18.505447387695312\n3378,33.241485595703125\n3379,46.495025634765625\n3380,45.4979133605957\n3381,63.688804626464844\n3382,67.18778228759766\n3383,37.424217224121094\n3384,70.33451843261719\n3385,49.23235321044922\n3386,61.771141052246094\n3387,49.93385314941406\n3388,72.65227508544922\n3389,66.79911804199219\n3390,36.1790657043457\n3391,30.46633529663086\n3392,34.90922546386719\n3393,60.9250602722168\n3394,36.52534484863281\n3395,73.04052734375\n3396,37.519996643066406\n3397,36.955474853515625\n3398,35.58644104003906\n3399,24.42371368408203\n3400,35.822933197021484\n3401,58.76642990112305\n3402,26.977432250976562\n3403,79.67085266113281\n3404,29.791627883911133\n3405,40.30042266845703\n3406,26.333324432373047\n3407,18.163122177124023\n3408,27.92477798461914\n3409,49.46352767944336\n3410,50.17011642456055\n3411,61.9586181640625\n3412,71.87228393554688\n3413,33.197265625\n3414,70.97604370117188\n3415,48.05116653442383\n3416,64.94601440429688\n3417,47.46107482910156\n3418,78.93370819091797\n3419,66.7398910522461\n3420,36.38319396972656\n3421,28.395936965942383\n3422,36.51152038574219\n3423,59.88461685180664\n3424,37.42049789428711\n3425,72.75457000732422\n3426,36.98013687133789\n3427,34.49966812133789\n3428,37.37287521362305\n3429,21.80554962158203\n3430,37.282779693603516\n3431,55.4943733215332\n3432,29.30154800415039\n3433,79.52915954589844\n3434,29.05868911743164\n3435,37.87158203125\n3436,29.273792266845703\n3437,14.433893203735352\n3438,29.863431930541992\n3439,47.0161018371582\n3440,61.40275955200195\n3441,61.403663635253906\n3442,81.45796203613281\n3443,34.50355911254883\n3444,81.59125518798828\n3445,47.55341339111328\n3446,76.72084045410156\n3447,47.70832061767578\n3448,91.01422119140625\n3449,67.6849136352539\n3450,37.672672271728516\n3451,28.86404037475586\n3452,36.47050476074219\n3453,60.86275863647461\n3454,38.30424118041992\n3455,74.54095458984375\n3456,39.09497833251953\n3457,35.27620315551758\n3458,37.49283981323242\n3459,22.164384841918945\n3460,37.32432556152344\n3461,56.56233215332031\n3462,28.643644332885742\n3463,82.00804138183594\n3464,31.065311431884766\n3465,38.3629035949707\n3466,28.266878128051758\n3467,15.117575645446777\n3468,29.1715145111084\n3469,45.62784957885742\n3470,56.467342376708984\n3471,61.691993713378906\n3472,80.359130859375\n3473,32.6848258972168\n3474,79.27730560302734\n3475,46.29931640625\n3476,72.99566650390625\n3477,46.04763412475586\n3478,89.04686737060547\n3479,64.8182144165039\n3480,35.954010009765625\n3481,30.99319076538086\n3482,35.63766860961914\n3483,59.66814041137695\n3484,36.708106994628906\n3485,70.08314514160156\n3486,36.57949447631836\n3487,36.34531784057617\n3488,36.365848541259766\n3489,25.236083984375\n3490,36.31379699707031\n3491,56.67219924926758\n3492,29.063230514526367\n3493,76.3361587524414\n3494,29.687725067138672\n3495,40.7754020690918\n3496,28.462657928466797\n3497,18.36212921142578\n3498,29.643617630004883\n3499,50.14417266845703\n3500,56.50118637084961\n3501,59.316532135009766\n3502,77.24220275878906\n3503,36.430233001708984\n3504,77.18074798583984\n3505,48.73897171020508\n3506,71.43521118164062\n3507,48.5975456237793\n3508,85.67667388916016\n3509,66.10568237304688\n3510,36.2932014465332\n3511,30.539731979370117\n3512,35.97555160522461\n3513,60.414669036865234\n3514,36.84825134277344\n3515,72.27315521240234\n3516,37.39826583862305\n3517,36.52899932861328\n3518,36.56227493286133\n3519,24.6319580078125\n3520,37.03707504272461\n3521,57.18199920654297\n3522,27.57164764404297\n3523,78.84666442871094\n3524,29.78053855895996\n3525,39.48334884643555\n3526,27.48757553100586\n3527,18.024250030517578\n3528,29.552536010742188\n3529,48.2031135559082\n3530,51.494834899902344\n3531,61.89446258544922\n3532,73.6803970336914\n3533,34.74628829956055\n3534,73.54810333251953\n3535,48.153778076171875\n3536,66.60404205322266\n3537,47.8758659362793\n3538,81.86373138427734\n3539,73.41680908203125\n3540,29.866689682006836\n3541,30.42526626586914\n3542,31.955459594726562\n3543,67.31327819824219\n3544,30.235492706298828\n3545,80.30902099609375\n3546,30.567880630493164\n3547,37.58895492553711\n3548,31.139175415039062\n3549,23.820119857788086\n3550,33.341434478759766\n3551,63.782257080078125\n3552,17.9206600189209\n3553,87.48060607910156\n3554,20.23431968688965\n3555,41.5625\n3556,18.497148513793945\n3557,15.178970336914062\n3558,24.258268356323242\n3559,56.025184631347656\n3560,44.51787185668945\n3561,70.19014739990234\n3562,72.9013442993164\n3563,38.575923919677734\n3564,74.22942352294922\n3565,54.758827209472656\n3566,62.56406784057617\n3567,55.71162414550781\n3568,86.4544906616211\n3569,64.15654754638672\n3570,37.72638702392578\n3571,27.44860076904297\n3572,40.44964599609375\n3573,58.00728988647461\n3574,38.51419448852539\n3575,70.49202728271484\n3576,38.51420974731445\n3577,33.736202239990234\n3578,40.18160629272461\n3579,21.497356414794922\n3580,42.377685546875\n3581,53.85853958129883\n3582,28.046030044555664\n3583,76.79666137695312\n3584,30.015382766723633\n3585,35.555606842041016\n3586,29.58583641052246\n3587,14.268468856811523\n3588,34.7983512878418\n3589,46.24772262573242\n3590,49.473690032958984\n3591,63.051239013671875\n3592,74.22470092773438\n3593,34.49634552001953\n3594,76.6521987915039\n3595,47.831275939941406\n3596,66.00946807861328\n3597,48.69569778442383\n3598,83.23822784423828\n3599,65.7933120727539\n3600,37.08155059814453\n3601,28.560977935791016\n3602,37.13889694213867\n3603,58.9959831237793\n3604,37.88114547729492\n3605,73.66365051269531\n3606,38.582313537597656\n3607,35.98871994018555\n3608,37.871665954589844\n3609,21.20389175415039\n3610,38.708282470703125\n3611,56.04924774169922\n3612,27.403818130493164\n3613,80.34695434570312\n3614,30.362422943115234\n3615,38.672271728515625\n3616,27.56940460205078\n3617,14.751076698303223\n3618,30.378116607666016\n3619,47.09150695800781\n3620,50.34913635253906\n3621,62.917545318603516\n3622,75.5342025756836\n3623,31.60576820373535\n3624,75.73149871826172\n3625,47.0244255065918\n3626,68.99689483642578\n3627,46.92998504638672\n3628,80.26232147216797\n3629,66.17024993896484\n3630,38.642494201660156\n3631,30.398719787597656\n3632,36.99162292480469\n3633,59.733097076416016\n3634,39.3902473449707\n3635,73.29756927490234\n3636,39.8587532043457\n3637,37.096832275390625\n3638,38.34693145751953\n3639,22.9917049407959\n3640,37.821258544921875\n3641,57.087066650390625\n3642,30.517818450927734\n3643,80.0937271118164\n3644,32.64363098144531\n3645,41.062381744384766\n3646,29.519346237182617\n3647,16.365604400634766\n3648,30.318696975708008\n3649,48.64547348022461\n3650,57.374088287353516\n3651,61.265811920166016\n3652,78.69064331054688\n3653,31.95564079284668\n3654,77.68441009521484\n3655,47.20875930786133\n3656,73.60787200927734\n3657,46.747772216796875\n3658,85.48294067382812\n3659,67.62047576904297\n3660,36.41177749633789\n3661,30.070594787597656\n3662,33.00905227661133\n3663,60.260433197021484\n3664,36.937278747558594\n3665,74.90753936767578\n3666,37.9737548828125\n3667,36.815406799316406\n3668,34.8487548828125\n3669,22.863826751708984\n3670,33.182395935058594\n3671,56.785518646240234\n3672,28.458341598510742\n3673,82.10680389404297\n3674,30.53444480895996\n3675,39.58980178833008\n3676,27.3393497467041\n3677,16.997493743896484\n3678,24.85841941833496\n3679,44.20479965209961\n3680,58.247562408447266\n3681,60.2000846862793\n3682,77.88204193115234\n3683,30.490779876708984\n3684,74.96210479736328\n3685,44.4556770324707\n3686,73.57435607910156\n3687,43.50569534301758\n3688,83.62330627441406\n3689,65.49998474121094\n3690,36.15300369262695\n3691,31.003023147583008\n3692,36.77217483520508\n3693,58.96568298339844\n3694,37.18055725097656\n3695,71.94707489013672\n3696,36.595970153808594\n3697,37.38762664794922\n3698,37.512733459472656\n3699,24.30583953857422\n3700,37.58184051513672\n3701,55.96944046020508\n3702,29.72780990600586\n3703,77.58663940429688\n3704,29.30929183959961\n3705,39.69499969482422\n3706,30.13516616821289\n3707,18.052085876464844\n3708,30.868680953979492\n3709,48.554649353027344\n3710,57.58869552612305\n3711,63.25271224975586\n3712,72.23857879638672\n3713,34.606910705566406\n3714,72.8464584350586\n3715,48.861141204833984\n3716,70.47222137451172\n3717,48.898773193359375\n3718,79.25228118896484\n3719,66.46250915527344\n3720,36.43514633178711\n3721,30.53668212890625\n3722,36.29144287109375\n3723,60.43239212036133\n3724,37.019248962402344\n3725,73.01113891601562\n3726,37.72697830200195\n3727,37.092830657958984\n3728,36.82810592651367\n3729,24.438364028930664\n3730,37.50657272338867\n3731,57.74062728881836\n3732,27.46912384033203\n3733,79.38971710205078\n3734,29.812623977661133\n3735,39.62991714477539\n3736,27.612606048583984\n3737,18.250885009765625\n3738,29.627702713012695\n3739,48.507999420166016\n3740,50.205692291259766\n3741,62.80379104614258\n3742,72.39181518554688\n3743,34.363338470458984\n3744,72.37959289550781\n3745,48.406944274902344\n3746,65.89012908935547\n3747,48.110084533691406\n3748,78.30931091308594\n3749,65.63838958740234\n3750,36.93727493286133\n3751,31.670557022094727\n3752,36.56461715698242\n3753,59.3793830871582\n3754,37.37227249145508\n3755,70.9373779296875\n3756,37.33246994018555\n3757,37.1817741394043\n3758,36.94594192504883\n3759,25.81833267211914\n3760,36.74515151977539\n3761,56.4090461730957\n3762,29.74637794494629\n3763,76.81214141845703\n3764,30.321529388427734\n3765,39.637451171875\n3766,29.634965896606445\n3767,19.78116798400879\n3768,30.050649642944336\n3769,47.95527267456055\n3770,56.8558464050293\n3771,61.580482482910156\n3772,70.22891998291016\n3773,34.44242477416992\n3774,69.665771484375\n3775,47.852718353271484\n3776,66.89164733886719\n3777,47.97969055175781\n3778,79.04385375976562\n3779,65.28600311279297\n3780,37.39467239379883\n3781,31.008359909057617\n3782,37.26692199707031\n3783,58.93568420410156\n3784,38.26618576049805\n3785,72.08686065673828\n3786,38.293861389160156\n3787,37.52261734008789\n3788,38.138038635253906\n3789,24.203081130981445\n3790,38.163475036621094\n3791,56.243778228759766\n3792,30.119047164916992\n3793,78.06906127929688\n3794,31.040538787841797\n3795,40.095191955566406\n3796,30.17005729675293\n3797,18.17226219177246\n3798,30.99846076965332\n3799,48.10140609741211\n3800,55.73612976074219\n3801,62.29090118408203\n3802,73.671875\n3803,33.762325286865234\n3804,73.7166519165039\n3805,48.02240753173828\n3806,70.3602066040039\n3807,47.891239166259766\n3808,78.88529968261719\n3809,67.03434753417969\n3810,37.26337814331055\n3811,28.813135147094727\n3812,36.28434753417969\n3813,61.10543441772461\n3814,37.48379135131836\n3815,73.32684326171875\n3816,38.64645004272461\n3817,35.24201202392578\n3818,36.80521774291992\n3819,22.76642608642578\n3820,37.487823486328125\n3821,58.08479690551758\n3822,26.95391082763672\n3823,80.62986755371094\n3824,30.595556259155273\n3825,38.75931167602539\n3826,26.437097549438477\n3827,15.717790603637695\n3828,29.386119842529297\n3829,48.37697219848633\n3830,49.67837142944336\n3831,62.04594421386719\n3832,75.05790710449219\n3833,32.689430236816406\n3834,74.49162292480469\n3835,47.480411529541016\n3836,65.68993377685547\n3837,47.14449691772461\n3838,84.63412475585938\n3839,66.51554870605469\n3840,37.02531051635742\n3841,31.73225212097168\n3842,36.6153678894043\n3843,59.95363235473633\n3844,37.44230651855469\n3845,72.0831069946289\n3846,37.47270202636719\n3847,37.604007720947266\n3848,36.98460388183594\n3849,25.550922393798828\n3850,36.82429885864258\n3851,57.21247863769531\n3852,29.523454666137695\n3853,78.0031509399414\n3854,30.275070190429688\n3855,40.117767333984375\n3856,29.346033096313477\n3857,19.480215072631836\n3858,29.957195281982422\n3859,48.81190872192383\n3860,56.72702407836914\n3861,62.6369514465332\n3862,70.1717758178711\n3863,34.0885124206543\n3864,69.5817642211914\n3865,48.38053894042969\n3866,67.00225830078125\n3867,48.50261688232422\n3868,78.76988983154297\n3869,65.47035217285156\n3870,35.01225280761719\n3871,28.3006649017334\n3872,36.00778579711914\n3873,59.77144241333008\n3874,35.437652587890625\n3875,72.21856689453125\n3876,36.416297912597656\n3877,34.77006530761719\n3878,36.0152587890625\n3879,22.68759536743164\n3880,37.786346435546875\n3881,56.22925567626953\n3882,24.290803909301758\n3883,78.94914245605469\n3884,27.801189422607422\n3885,36.70819854736328\n3886,25.25552749633789\n3887,16.0320987701416\n3888,29.397432327270508\n3889,46.18180465698242\n3890,43.72565460205078\n3891,62.725379943847656\n3892,71.01154327392578\n3893,33.999725341796875\n3894,71.82373809814453\n3895,47.3476676940918\n3896,61.188846588134766\n3897,47.41814422607422\n3898,78.43357849121094\n3899,72.05805969238281\n3900,35.236785888671875\n3901,25.761171340942383\n3902,33.336021423339844\n3903,62.49772262573242\n3904,36.29439163208008\n3905,81.37281799316406\n3906,36.790592193603516\n3907,34.84313201904297\n3908,35.14494705200195\n3909,16.348352432250977\n3910,34.233848571777344\n3911,58.31652069091797\n3912,25.955896377563477\n3913,89.60733032226562\n3914,27.27042579650879\n3915,37.83864974975586\n3916,25.336647033691406\n3917,8.720860481262207\n3918,24.53956413269043\n3919,45.821624755859375\n3920,60.56985855102539\n3921,66.32958221435547\n3922,83.83379364013672\n3923,27.992950439453125\n3924,82.33428955078125\n3925,46.3405647277832\n3926,79.84477233886719\n3927,45.9073600769043\n3928,91.94483184814453\n3929,69.0777587890625\n3930,39.4163703918457\n3931,28.50481414794922\n3932,37.05935287475586\n3933,61.915863037109375\n3934,39.85327911376953\n3935,75.34850311279297\n3936,40.69768524169922\n3937,34.7775993347168\n3938,38.252464294433594\n3939,21.518587112426758\n3940,37.58088302612305\n3941,57.71406936645508\n3942,30.269630432128906\n3943,83.32457733154297\n3944,32.81044387817383\n3945,39.1789665222168\n3946,28.961727142333984\n3947,13.84270191192627\n3948,29.53057289123535\n3949,47.0293083190918\n3950,61.298824310302734\n3951,61.41155242919922\n3952,84.17137908935547\n3953,31.493799209594727\n3954,82.20612335205078\n3955,46.2789192199707\n3956,76.50357818603516\n3957,46.018978118896484\n3958,95.61796569824219\n3959,66.05883026123047\n3960,38.69804000854492\n3961,30.429656982421875\n3962,40.82052993774414\n3963,59.57342529296875\n3964,40.00020980834961\n3965,74.188232421875\n3966,39.7410774230957\n3967,37.67320251464844\n3968,41.19456481933594\n3969,22.9868106842041\n3970,42.51117706298828\n3971,56.0669059753418\n3972,30.190738677978516\n3973,80.32318878173828\n3974,31.574115753173828\n3975,39.720680236816406\n3976,31.37630844116211\n3977,16.30718421936035\n3978,34.86392593383789\n3979,48.78438949584961\n3980,54.01337432861328\n3981,65.72177124023438\n3982,77.18213653564453\n3983,34.96003341674805\n3984,78.8908920288086\n3985,49.863746643066406\n3986,72.38988494873047\n3987,50.253997802734375\n3988,82.2001724243164\n3989,65.35185241699219\n3990,34.935752868652344\n3991,25.94077491760254\n3992,39.52872848510742\n3993,58.64841842651367\n3994,36.84119415283203\n3995,72.38812255859375\n3996,34.99178695678711\n3997,33.557979583740234\n3998,39.72728729248047\n3999,18.44512367248535\n4000,42.122711181640625\n4001,55.28628921508789\n4002,28.018007278442383\n4003,78.12615203857422\n4004,26.010608673095703\n4005,36.944454193115234\n4006,29.50078773498535\n4007,9.85580825805664\n4008,35.319671630859375\n4009,52.41387939453125\n4010,56.51694107055664\n4011,66.82984924316406\n4012,76.87152099609375\n4013,35.5996208190918\n4014,81.61808013916016\n4015,52.248085021972656\n4016,73.75537109375\n4017,53.39237976074219\n4018,86.57793426513672\n4019,66.45091247558594\n4020,37.033077239990234\n4021,30.32094383239746\n4022,35.9018440246582\n4023,59.899139404296875\n4024,37.672157287597656\n4025,72.71605682373047\n4026,37.96649932861328\n4027,36.869117736816406\n4028,36.908782958984375\n4029,23.68213653564453\n4030,36.59750747680664\n4031,57.53734588623047\n4032,29.49713706970215\n4033,79.04273986816406\n4034,30.542835235595703\n4035,40.065948486328125\n4036,28.939823150634766\n4037,17.456655502319336\n4038,29.204946517944336\n4039,48.86029052734375\n4040,56.449378967285156\n4041,61.88785934448242\n4042,73.79953002929688\n4043,32.829383850097656\n4044,73.13616180419922\n4045,47.75870895385742\n4046,69.96693420410156\n4047,47.39955520629883\n4048,80.56687927246094\n4049,64.39281463623047\n4050,35.69230651855469\n4051,31.151947021484375\n4052,33.510704040527344\n4053,58.837459564208984\n4054,35.9186897277832\n4055,69.64553833007812\n4056,36.62376022338867\n4057,36.4019660949707\n4058,34.4130744934082\n4059,25.657102584838867\n4060,33.66337585449219\n4061,56.201416015625\n4062,28.13805389404297\n4063,75.92118072509766\n4064,29.930299758911133\n4065,39.67390060424805\n4066,27.10093879699707\n4067,19.867168426513672\n4068,26.654006958007812\n4069,46.62980270385742\n4070,53.70836639404297\n4071,58.09971237182617\n4072,70.77719116210938\n4073,33.10601806640625\n4074,68.95521545410156\n4075,45.699745178222656\n4076,65.45308685302734\n4077,45.09917068481445\n4078,78.68319702148438\n4079,66.1500015258789\n4080,37.91585159301758\n4081,26.8914852142334\n4082,40.54947280883789\n4083,59.526607513427734\n4084,38.791683197021484\n4085,72.75433349609375\n4086,38.81114959716797\n4087,33.37493896484375\n4088,40.41875076293945\n4089,20.635251998901367\n4090,42.526058197021484\n4091,54.650325775146484\n4092,27.913970947265625\n4093,79.60734558105469\n4094,29.773771286010742\n4095,35.41901397705078\n4096,29.405078887939453\n4097,12.837913513183594\n4098,34.532501220703125\n4099,46.1711540222168\n4100,51.73576736450195\n4101,64.27254486083984\n4102,78.0057601928711\n4103,34.75993728637695\n4104,80.29696655273438\n4105,48.231056213378906\n4106,69.18836975097656\n4107,49.21400833129883\n4108,88.01300811767578\n4109,64.8675537109375\n4110,34.71889114379883\n4111,30.66840362548828\n4112,36.396690368652344\n4113,59.13444900512695\n4114,35.77272415161133\n4115,70.73904418945312\n4116,35.14002990722656\n4117,36.50243377685547\n4118,36.73469543457031\n4119,24.792219161987305\n4120,37.57234573364258\n4121,55.68387985229492\n4122,27.879165649414062\n4123,76.37458038330078\n4124,27.636791229248047\n4125,38.99836730957031\n4126,28.700651168823242\n4127,18.14838981628418\n4128,30.91089630126953\n4129,49.03988265991211\n4130,54.059322357177734\n4131,62.753639221191406\n4132,72.11384582519531\n4133,36.827667236328125\n4134,73.65274810791016\n4135,49.64832305908203\n4136,68.14804077148438\n4137,49.849918365478516\n4138,79.94368743896484\n4139,69.90576171875\n4140,33.06731414794922\n4141,30.461597442626953\n4142,34.387943267822266\n4143,64.20661163330078\n4144,33.35771179199219\n4145,75.75202178955078\n4146,33.7576789855957\n4147,36.48875427246094\n4148,33.897762298583984\n4149,24.89563751220703\n4150,35.463165283203125\n4151,60.379520416259766\n4152,22.533313751220703\n4153,82.63886260986328\n4154,24.7450008392334\n4155,39.638816833496094\n4156,23.0506591796875\n4157,17.148950576782227\n4158,27.37632179260254\n4159,51.588043212890625\n4160,47.58966064453125\n4161,66.18070983886719\n4162,71.79264831542969\n4163,37.51273727416992\n4164,72.5433120727539\n4165,51.52423858642578\n4166,62.3944091796875\n4167,52.056854248046875\n4168,84.44445037841797\n4169,64.4985580444336\n4170,35.7521858215332\n4171,31.387161254882812\n4172,36.50858688354492\n4173,59.19807052612305\n4174,36.54435348510742\n4175,70.49937438964844\n4176,36.581356048583984\n4177,37.25667190551758\n4178,36.97256088256836\n4179,25.738805770874023\n4180,37.80783462524414\n4181,56.39425277709961\n4182,28.106531143188477\n4183,76.21971893310547\n4184,29.251434326171875\n4185,39.80997848510742\n4186,28.53087615966797\n4187,19.5369873046875\n4188,30.91201400756836\n4189,49.070064544677734\n4190,50.878753662109375\n4191,62.07870101928711\n4192,70.77719116210938\n4193,36.231842041015625\n4194,71.69247436523438\n4195,49.175559997558594\n4196,65.51146697998047\n4197,49.04729461669922\n4198,77.2498550415039\n4199,66.74385833740234\n4200,37.5909309387207\n4201,31.179729461669922\n4202,35.67457962036133\n4203,59.8323860168457\n4204,37.919219970703125\n4205,72.69536590576172\n4206,38.37923812866211\n4207,37.100467681884766\n4208,36.582252502441406\n4209,24.711977005004883\n4210,35.61512756347656\n4211,56.67066192626953\n4212,29.995296478271484\n4213,79.19325256347656\n4214,31.270050048828125\n4215,39.64078903198242\n4216,29.277145385742188\n4217,18.765724182128906\n4218,28.352251052856445\n4219,46.22407531738281\n4220,58.57394790649414\n4221,61.192848205566406\n4222,72.74686431884766\n4223,32.13672637939453\n4224,70.84467315673828\n4225,46.17817306518555\n4226,69.27056121826172\n4227,45.963069915771484\n4228,81.28260803222656\n4229,65.06143188476562\n4230,38.53458023071289\n4231,28.446102142333984\n4232,41.57061767578125\n4233,58.52037811279297\n4234,39.83292007446289\n4235,72.99819946289062\n4236,39.37110900878906\n4237,35.74827575683594\n4238,41.6409912109375\n4239,21.09792709350586\n4240,43.67654037475586\n4241,54.745849609375\n4242,29.496335983276367\n4243,79.16893768310547\n4244,31.000896453857422\n4245,37.66831588745117\n4246,31.05778694152832\n4247,13.86504077911377\n4248,36.23072814941406\n4249,48.089839935302734\n4250,52.31435775756836\n4251,65.91010284423828\n4252,75.984130859375\n4253,33.96344757080078\n4254,78.69239807128906\n4255,49.450138092041016\n4256,70.323486328125\n4257,50.12281799316406\n4258,83.12974548339844\n4259,66.52934265136719\n4260,37.02096176147461\n4261,31.07928466796875\n4262,35.25102233886719\n4263,60.667293548583984\n4264,37.16380310058594\n4265,72.40544891357422\n4266,38.401485443115234\n4267,37.051300048828125\n4268,35.93521499633789\n4269,25.395479202270508\n4270,35.90054702758789\n4271,58.11921691894531\n4272,27.721927642822266\n4273,79.07506561279297\n4274,30.934734344482422\n4275,39.982730865478516\n4276,27.073814392089844\n4277,19.4783878326416\n4278,28.017499923706055\n4279,47.65739059448242\n4280,50.6433219909668\n4281,60.796566009521484\n4282,72.15641021728516\n4283,33.380401611328125\n4284,70.69969940185547\n4285,46.978309631347656\n4286,64.77273559570312\n4287,46.306575775146484\n4288,79.00216674804688\n4289,66.70960998535156\n4290,36.10317611694336\n4291,31.88124656677246\n4292,36.492576599121094\n4293,60.31975173950195\n4294,37.172691345214844\n4295,73.26789855957031\n4296,36.61885452270508\n4297,38.38676452636719\n4298,37.365028381347656\n4299,25.12778663635254\n4300,37.328739166259766\n4301,57.51397705078125\n4302,29.71782875061035\n4303,78.97684478759766\n4304,29.24297523498535\n4305,41.11544418334961\n4306,29.896833419799805\n4307,18.763704299926758\n4308,30.457027435302734\n4309,50.279823303222656\n4310,58.155113220214844\n4311,63.9904899597168\n4312,73.6716537475586\n4313,35.700347900390625\n4314,74.13694763183594\n4315,50.091007232666016\n4316,71.74324035644531\n4317,50.015899658203125\n4318,80.41856384277344\n4319,65.87065887451172\n4320,37.690242767333984\n4321,30.214139938354492\n4322,37.95002365112305\n4323,58.93688201904297\n4324,38.84617233276367\n4325,72.89708709716797\n4326,38.33683776855469\n4327,36.69960403442383\n4328,38.97420120239258\n4329,22.988344192504883\n4330,38.734249114990234\n4331,55.10990905761719\n4332,30.951862335205078\n4333,79.08074951171875\n4334,30.800386428833008\n4335,39.19034194946289\n4336,31.25281524658203\n4337,16.438087463378906\n4338,31.489694595336914\n4339,46.73830032348633\n4340,60.71125411987305\n4341,62.48717498779297\n4342,78.53202056884766\n4343,33.997501373291016\n4344,78.73982238769531\n4345,47.68418884277344\n4346,75.94422149658203\n4347,47.84003448486328\n4348,84.96903228759766\n4349,63.95072937011719\n4350,36.07925796508789\n4351,32.17475509643555\n4352,35.56659698486328\n4353,59.131534576416016\n4354,36.78611373901367\n4355,69.19670104980469\n4356,36.845909118652344\n4357,37.22404098510742\n4358,36.35226058959961\n4359,26.74165153503418\n4360,36.28118133544922\n4361,56.21554183959961\n4362,29.251943588256836\n4363,75.14008331298828\n4364,30.226703643798828\n4365,41.115848541259766\n4366,28.824548721313477\n4367,20.488962173461914\n4368,29.62227439880371\n4369,49.23484420776367\n4370,54.729774475097656\n4371,58.49582290649414\n4372,75.82140350341797\n4373,37.12099838256836\n4374,75.59724426269531\n4375,48.332027435302734\n4376,70.02774047851562\n4377,47.9720344543457\n4378,82.31393432617188\n4379,65.79505157470703\n4380,35.48324966430664\n4381,30.690776824951172\n4382,36.204105377197266\n4383,59.3839225769043\n4384,36.606201171875\n4385,72.2445068359375\n4386,35.875396728515625\n4387,37.141395568847656\n4388,36.986385345458984\n4389,23.971874237060547\n4390,37.052818298339844\n4391,56.39371871948242\n4392,29.27582359313965\n4393,77.9501724243164\n4394,28.506040573120117\n4395,39.881893157958984\n4396,29.555423736572266\n4397,17.396425247192383\n4398,30.36615562438965\n4399,49.45054626464844\n4400,58.184024810791016\n4401,63.39255905151367\n4402,73.05999755859375\n4403,34.92425537109375\n4404,73.81489562988281\n4405,49.38007354736328\n4406,71.27933502197266\n4407,49.403114318847656\n4408,80.73075866699219\n4409,65.4498519897461\n4410,36.5289306640625\n4411,25.213741302490234\n4412,39.4817008972168\n4413,58.7660026550293\n4414,37.45412063598633\n4415,72.05936431884766\n4416,37.417598724365234\n4417,31.69748306274414\n4418,39.3216438293457\n4419,18.85860252380371\n4420,41.64191436767578\n4421,53.47773361206055\n4422,26.27932357788086\n4423,79.13941955566406\n4424,28.07724952697754\n4425,33.9991340637207\n4426,27.858388900756836\n4427,10.605777740478516\n4428,33.55683517456055\n4429,45.278865814208984\n4430,50.80583190917969\n4431,63.40298080444336\n4432,78.89395141601562\n4433,34.18646240234375\n4434,81.54112243652344\n4435,47.433895111083984\n4436,69.33808898925781\n4437,48.626312255859375\n4438,89.75604248046875\n4439,66.37435150146484\n4440,37.551944732666016\n4441,29.185733795166016\n4442,36.911598205566406\n4443,59.949310302734375\n4444,38.204566955566406\n4445,72.77838897705078\n4446,38.704566955566406\n4447,35.65248489379883\n4448,37.74149703979492\n4449,22.866777420043945\n4450,37.81797790527344\n4451,56.67845153808594\n4452,29.214492797851562\n4453,79.55438232421875\n4454,30.99112319946289\n4455,38.6168327331543\n4456,28.96877670288086\n4457,16.172550201416016\n4458,30.189571380615234\n4459,47.25194549560547\n4460,54.996116638183594\n4461,61.80933380126953\n4462,75.62708282470703\n4463,32.87753677368164\n4464,75.17668151855469\n4465,47.17789077758789\n4466,69.64747619628906\n4467,46.93279266357422\n4468,83.6679458618164\n4469,67.05821228027344\n4470,38.00479507446289\n4471,29.76429557800293\n4472,36.14529037475586\n4473,61.11087417602539\n4474,38.389808654785156\n4475,73.60955810546875\n4476,39.76422119140625\n4477,36.08362579345703\n4478,37.10905075073242\n4479,23.527997970581055\n4480,37.02649688720703\n4481,57.95939636230469\n4482,28.340656280517578\n4483,81.00707244873047\n4484,32.07979965209961\n4485,39.80906295776367\n4486,27.469738006591797\n4487,16.88081169128418\n4488,28.749448776245117\n4489,47.4792594909668\n4490,52.38658905029297\n4491,60.496612548828125\n4492,78.52540588378906\n4493,32.86962890625\n4494,77.01488494873047\n4495,46.645931243896484\n4496,69.62582397460938\n4497,45.925498962402344\n4498,85.58721923828125\n4499,67.36993408203125\n4500,37.7252082824707\n4501,27.077957153320312\n4502,38.03412628173828\n4503,59.90349578857422\n4504,38.623897552490234\n4505,74.79110717773438\n4506,38.41367721557617\n4507,34.797889709472656\n4508,38.820106506347656\n4509,19.159889221191406\n4510,39.41824722290039\n4511,56.984500885009766\n4512,29.138891220092773\n4513,81.69727325439453\n4514,30.18547248840332\n4515,38.2759895324707\n4516,28.902143478393555\n4517,11.42812728881836\n4518,31.983009338378906\n4519,49.53310012817383\n4520,57.204654693603516\n4521,65.42696380615234\n4522,76.10079193115234\n4523,30.25199317932129\n4524,76.88893127441406\n4525,48.51469802856445\n4526,71.85430908203125\n4527,48.77952575683594\n4528,87.00273132324219\n4529,66.99117279052734\n4530,38.180904388427734\n4531,27.93867301940918\n4532,38.81767272949219\n4533,59.54705810546875\n4534,39.19538116455078\n4535,74.9416732788086\n4536,39.45121383666992\n4537,35.410343170166016\n4538,39.51118087768555\n4539,20.081096649169922\n4540,40.225502014160156\n4541,55.818843841552734\n4542,28.837547302246094\n4543,81.90530395507812\n4544,30.865192413330078\n4545,37.99148941040039\n4546,29.264162063598633\n4547,13.064958572387695\n4548,31.8104190826416\n4549,46.84438705444336\n4550,55.325111389160156\n4551,63.98420715332031\n4552,79.65300750732422\n4553,31.962533950805664\n4554,80.14691925048828\n4555,47.396671295166016\n4556,73.79723358154297\n4557,47.758758544921875\n4558,85.68191528320312\n4559,67.00175476074219\n4560,37.29548645019531\n4561,27.690725326538086\n4562,34.82261276245117\n4563,59.63444900512695\n4564,37.99671936035156\n4565,74.44110107421875\n4566,38.812461853027344\n4567,34.96282196044922\n4568,36.429569244384766\n4569,19.980606079101562\n4570,35.46809768676758\n4571,56.59741973876953\n4572,28.934551239013672\n4573,81.88856506347656\n4574,31.130395889282227\n4575,38.85773849487305\n4576,27.65606689453125\n4577,13.140867233276367\n4578,27.365449905395508\n4579,46.19436264038086\n4580,58.41657638549805\n4581,60.76047134399414\n4582,79.49058532714844\n4583,29.019065856933594\n4584,77.61585235595703\n4585,45.0654182434082\n4586,74.44104766845703\n4587,44.393829345703125\n4588,86.91171264648438\n4589,66.64376831054688\n4590,35.98215103149414\n4591,31.243803024291992\n4592,33.025062561035156\n4593,60.57497787475586\n4594,36.176082611083984\n4595,72.10542297363281\n4596,36.984859466552734\n4597,36.84347152709961\n4598,34.18924331665039\n4599,25.279916763305664\n4600,32.95893478393555\n4601,57.905372619628906\n4602,28.308307647705078\n4603,78.80650329589844\n4604,29.998817443847656\n4605,40.7008056640625\n4606,26.813249588012695\n4607,19.20806121826172\n4608,25.46458625793457\n4609,47.758419036865234\n4610,56.77488327026367\n4611,58.892723083496094\n4612,74.62445831298828\n4613,33.04523849487305\n4614,72.13604736328125\n4615,46.25634002685547\n4616,69.33975219726562\n4617,45.55361557006836\n4618,82.76545715332031\n4619,68.88800048828125\n4620,31.731054306030273\n4621,29.30193519592285\n4622,33.529930114746094\n4623,63.22572708129883\n4624,32.05055236816406\n4625,74.23768615722656\n4626,32.000247955322266\n4627,35.151058197021484\n4628,32.836021423339844\n4629,23.555248260498047\n4630,34.446659088134766\n4631,59.5396728515625\n4632,21.672677993774414\n4633,80.9700698852539\n4634,22.956884384155273\n4635,39.08341598510742\n4636,22.04935646057129\n4637,15.358572006225586\n4638,26.605083465576172\n4639,52.67084884643555\n4640,48.79296112060547\n4641,64.8034439086914\n4642,72.74308013916016\n4643,37.535335540771484\n4644,73.99239349365234\n4645,51.55410385131836\n4646,63.73500061035156\n4647,52.40138244628906\n4648,86.44642639160156\n4649,65.32838439941406\n4650,33.68168640136719\n4651,26.855253219604492\n4652,33.526832580566406\n4653,57.62743377685547\n4654,34.38292694091797\n4655,71.57794189453125\n4656,34.10680389404297\n4657,33.78927993774414\n4658,34.05787658691406\n4659,19.60158348083496\n4660,33.72443389892578\n4661,54.792572021484375\n4662,26.38025665283203\n4663,77.8428955078125\n4664,26.15534019470215\n4665,36.54487228393555\n4666,26.21599578857422\n4667,12.987817764282227\n4668,26.323591232299805\n4669,46.4184455871582\n4670,57.227176666259766\n4671,61.36729431152344\n4672,70.17064666748047\n4673,29.671714782714844\n4674,69.67367553710938\n4675,45.654415130615234\n4676,68.3392562866211\n4677,46.052406311035156\n4678,79.1218032836914\n4679,64.98345947265625\n4680,37.137271881103516\n4681,30.854639053344727\n4682,37.78033447265625\n4683,59.74414825439453\n4684,38.16608428955078\n4685,70.66478729248047\n4686,37.83378219604492\n4687,36.32829666137695\n4688,38.44874572753906\n4689,24.85781478881836\n4690,38.896087646484375\n4691,56.18681716918945\n4692,30.102092742919922\n4693,76.93444061279297\n4694,30.662675857543945\n4695,40.409828186035156\n4696,30.049020767211914\n4697,17.685495376586914\n4698,32.177677154541016\n4699,49.933223724365234\n4700,57.03691101074219\n4701,60.62876892089844\n4702,79.47069549560547\n4703,37.22683334350586\n4704,80.26615142822266\n4705,49.40511703491211\n4706,73.36192321777344\n4707,49.494388580322266\n4708,87.68733215332031\n4709,66.66258239746094\n4710,39.003753662109375\n4711,29.437381744384766\n4712,36.377647399902344\n4713,59.467037200927734\n4714,39.99474334716797\n4715,74.18978881835938\n4716,40.44303894042969\n4717,36.51628112792969\n4718,38.33352279663086\n4719,21.581552505493164\n4720,36.84910583496094\n4721,56.615787506103516\n4722,31.76785659790039\n4723,81.25532531738281\n4724,33.151859283447266\n4725,40.55720520019531\n4726,30.417098999023438\n4727,15.139562606811523\n4728,28.9370059967041\n4729,46.828086853027344\n4730,62.55069351196289\n4731,60.122230529785156\n4732,83.0062026977539\n4733,30.532268524169922\n4734,80.99188232421875\n4735,45.62803268432617\n4736,79.47566223144531\n4737,44.9612922668457\n4738,88.16922760009766\n4739,67.19701385498047\n4740,36.56480407714844\n4741,31.018762588500977\n4742,38.22336959838867\n4743,60.574310302734375\n4744,37.597412109375\n4745,73.53237915039062\n4746,36.69186782836914\n4747,37.49106979370117\n4748,38.64555740356445\n4749,24.34105110168457\n4750,39.37767028808594\n4751,57.267539978027344\n4752,29.669963836669922\n4753,79.24278259277344\n4754,28.888233184814453\n4755,39.76462173461914\n4756,30.48120880126953\n4757,17.396284103393555\n4758,32.72868347167969\n4759,50.5006103515625\n4760,57.66460418701172\n4761,66.19984436035156\n4762,72.34024810791016\n4763,35.92874526977539\n4764,73.98484802246094\n4765,51.04990005493164\n4766,70.05531311035156\n4767,51.42295837402344\n4768,81.6927719116211\n4769,67.38792419433594\n4770,40.29420852661133\n4771,27.699264526367188\n4772,37.97747802734375\n4773,60.14683532714844\n4774,41.25551986694336\n4775,74.44145965576172\n4776,41.86936950683594\n4777,34.62233352661133\n4778,39.716312408447266\n4779,20.113910675048828\n4780,38.67386245727539\n4781,56.64360427856445\n4782,32.23388671875\n4783,82.10770416259766\n4784,34.11266326904297\n4785,39.38750457763672\n4786,30.820661544799805\n4787,12.923684120178223\n4788,30.405046463012695\n4789,46.895023345947266\n4790,63.88350296020508\n4791,59.61524200439453\n4792,88.48554229736328\n4793,30.9515323638916\n4794,86.7264633178711\n4795,45.60025405883789\n4796,82.47361755371094\n4797,45.09390640258789\n4798,95.11076354980469\n4799,67.14795684814453\n4800,33.71479415893555\n4801,29.369352340698242\n4802,34.2430419921875\n4803,61.2824821472168\n4804,34.086936950683594\n4805,72.70796203613281\n4806,34.362525939941406\n4807,35.233299255371094\n4808,34.219947814941406\n4809,23.594436645507812\n4810,35.13356399536133\n4811,57.87620162963867\n4812,24.3986873626709\n4813,79.32148742675781\n4814,26.000974655151367\n4815,38.59370422363281\n4816,24.47138786315918\n4817,16.304134368896484\n4818,27.480501174926758\n4819,49.64870071411133\n4820,50.34052658081055\n4821,62.77128601074219\n4822,72.1849365234375\n4823,35.331077575683594\n4824,72.58715057373047\n4825,49.079490661621094\n4826,64.54512023925781\n4827,49.359474182128906\n4828,83.15079498291016\n4829,65.51610565185547\n4830,33.86931228637695\n4831,28.06575584411621\n4832,34.27393341064453\n4833,58.34195327758789\n4834,34.46706008911133\n4835,71.02062225341797\n4836,33.94450378417969\n4837,34.262271881103516\n4838,34.3785514831543\n4839,21.460908889770508\n4840,34.27190399169922\n4841,55.19281768798828\n4842,26.721233367919922\n4843,77.1303482055664\n4844,26.137313842773438\n4845,36.99891662597656\n4846,26.718374252319336\n4847,14.650612831115723\n4848,27.30198860168457\n4849,47.34828186035156\n4850,57.544837951660156\n4851,61.719303131103516\n4852,69.30127716064453\n4853,31.703447341918945\n4854,69.07695770263672\n4855,46.75984573364258\n4856,67.01533508300781\n4857,47.458534240722656\n4858,80.37801361083984\n4859,67.53491973876953\n4860,37.8022575378418\n4861,29.289955139160156\n4862,38.494606018066406\n4863,60.851444244384766\n4864,38.61227798461914\n4865,74.68680572509766\n4866,39.039676666259766\n4867,36.0679817199707\n4868,39.00991439819336\n4869,22.370927810668945\n4870,40.00703048706055\n4871,56.94108963012695\n4872,28.177427291870117\n4873,81.61193084716797\n4874,30.552112579345703\n4875,38.699378967285156\n4876,28.70439910888672\n4877,15.282597541809082\n4878,31.802677154541016\n4879,47.80816650390625\n4880,53.17887878417969\n4881,64.15071868896484\n4882,78.47880554199219\n4883,34.3778190612793\n4884,79.1348876953125\n4885,48.573421478271484\n4886,71.03886413574219\n4887,48.84083938598633\n4888,85.8069839477539\n4889,66.38568878173828\n4890,38.358726501464844\n4891,27.842599868774414\n4892,39.351051330566406\n4893,58.68497085571289\n4894,40.03487777709961\n4895,74.98380279541016\n4896,39.252811431884766\n4897,35.869178771972656\n4898,40.5584716796875\n4899,19.065385818481445\n4900,40.664405822753906\n4901,55.41796112060547\n4902,31.282821655273438\n4903,81.52447509765625\n4904,31.023597717285156\n4905,39.11556625366211\n4906,31.506240844726562\n4907,11.862950325012207\n4908,32.962284088134766\n4909,48.51524353027344\n4910,61.923343658447266\n4911,64.53807067871094\n4912,82.07294464111328\n4913,31.59730339050293\n4914,83.0256118774414\n4915,48.34564208984375\n4916,80.17729187011719\n4917,48.68056869506836\n4918,87.64448547363281\n4919,64.28048706054688\n4920,37.710453033447266\n4921,29.60011100769043\n4922,40.4422721862793\n4923,58.168880462646484\n4924,38.88359451293945\n4925,71.90084838867188\n4926,38.639854431152344\n4927,36.55589294433594\n4928,40.459712982177734\n4929,22.69869041442871\n4930,42.351722717285156\n4931,54.81679153442383\n4932,28.889820098876953\n4933,77.75472259521484\n4934,30.524728775024414\n4935,38.35049057006836\n4936,30.39637565612793\n4937,16.10200309753418\n4938,34.89440155029297\n4939,48.10209274291992\n4940,50.25370407104492\n4941,64.5765380859375\n4942,73.74748229980469\n4943,34.8798828125\n4944,76.03715515136719\n4945,49.23697280883789\n4946,68.11553192138672\n4947,49.79389572143555\n4948,78.9892349243164\n4949,66.74723052978516\n4950,38.338356018066406\n4951,28.314294815063477\n4952,37.27034378051758\n4953,59.997257232666016\n4954,39.279022216796875\n4955,72.94532012939453\n4956,39.47275924682617\n4957,34.43311309814453\n4958,38.45184326171875\n4959,21.570837020874023\n4960,37.98611068725586\n4961,55.806312561035156\n4962,30.548349380493164\n4963,80.23162841796875\n4964,31.716760635375977\n4965,38.59726333618164\n4966,29.824188232421875\n4967,14.238205909729004\n4968,30.163442611694336\n4969,46.639610290527344\n4970,61.75483322143555\n4971,59.592567443847656\n4972,85.43572235107422\n4973,33.5033073425293\n4974,84.58387756347656\n4975,46.397823333740234\n4976,78.98772430419922\n4977,46.274383544921875\n4978,93.69185638427734\n4979,67.47124481201172\n4980,37.74592208862305\n4981,28.78877830505371\n4982,38.753910064697266\n4983,60.476314544677734\n4984,38.8319206237793\n4985,74.26164245605469\n4986,38.22489929199219\n4987,35.644691467285156\n4988,39.494789123535156\n4989,21.70577049255371\n4990,40.01273727416992\n4991,56.74048614501953\n4992,30.444061279296875\n4993,80.7751693725586\n4994,30.140159606933594\n4995,38.47657012939453\n4996,30.831344604492188\n4997,14.144187927246094\n4998,32.919097900390625\n4999,49.014991760253906\n5000,59.660396575927734\n5001,65.2758560180664\n5002,77.21148681640625\n5003,33.942100524902344\n5004,78.33390045166016\n5005,49.52676010131836\n5006,73.6072769165039\n5007,49.866207122802734\n5008,87.39326477050781\n5009,67.04259490966797\n5010,36.58172607421875\n5011,29.563953399658203\n5012,36.30986404418945\n5013,60.16667938232422\n5014,37.203857421875\n5015,73.78238677978516\n5016,37.261287689208984\n5017,36.5869026184082\n5018,36.89492416381836\n5019,22.463577270507812\n5020,37.098350524902344\n5021,57.71124267578125\n5022,28.23404884338379\n5023,80.20429992675781\n5024,29.474044799804688\n5025,39.656795501708984\n5026,27.846467971801758\n5027,15.643624305725098\n5028,29.787158966064453\n5029,49.72856903076172\n5030,54.918182373046875\n5031,64.24613952636719\n5032,71.48147583007812\n5033,31.694103240966797\n5034,71.35147094726562\n5035,48.543460845947266\n5036,67.54051971435547\n5037,48.61330032348633\n5038,81.15591430664062\n5039,66.28120422363281\n5040,37.45724868774414\n5041,30.460033416748047\n5042,36.58930206298828\n5043,60.04317855834961\n5044,38.1042366027832\n5045,72.71044158935547\n5046,38.52243423461914\n5047,37.16212463378906\n5048,37.51654815673828\n5049,23.812397003173828\n5050,37.54112243652344\n5051,58.058372497558594\n5052,29.62380027770996\n5053,79.00182342529297\n5054,31.120656967163086\n5055,40.7141227722168\n5056,28.95186996459961\n5057,17.46120262145996\n5058,30.230730056762695\n5059,50.24364471435547\n5060,54.83303451538086\n5061,62.36774826049805\n5062,73.51275634765625\n5063,33.09273910522461\n5064,73.15934753417969\n5065,48.568939208984375\n5066,69.06710052490234\n5067,48.22462844848633\n5068,80.06682586669922\n5069,68.27518463134766\n5070,37.39021301269531\n5071,29.086000442504883\n5072,36.32442855834961\n5073,61.47627258300781\n5074,38.124298095703125\n5075,74.54571533203125\n5076,38.40184020996094\n5077,35.44172668457031\n5078,37.36450958251953\n5079,22.3724308013916\n5080,37.087432861328125\n5081,57.555946350097656\n5082,29.2745361328125\n5083,81.80132293701172\n5084,30.558874130249023\n5085,39.31521224975586\n5086,28.611679077148438\n5087,14.980993270874023\n5088,29.384048461914062\n5089,48.1193962097168\n5090,59.7329216003418\n5091,62.16122055053711\n5092,81.17168426513672\n5093,33.537193298339844\n5094,80.40924835205078\n5095,47.75078582763672\n5096,75.03914642333984\n5097,47.53586959838867\n5098,91.13272094726562\n5099,65.3613510131836\n5100,38.4550895690918\n5101,29.58138656616211\n5102,40.96803283691406\n5103,59.11932373046875\n5104,39.43342208862305\n5105,73.01142883300781\n5106,39.53252029418945\n5107,36.59734344482422\n5108,40.92256164550781\n5109,22.79863166809082\n5110,42.96487808227539\n5111,55.50187301635742\n5112,28.716917037963867\n5113,79.16720581054688\n5114,31.158212661743164\n5115,38.228580474853516\n5116,30.272729873657227\n5117,16.114595413208008\n5118,35.148719787597656\n5119,47.800872802734375\n5120,49.38462448120117\n5121,65.3014907836914\n5122,74.67797088623047\n5123,34.85316467285156\n5124,76.774169921875\n5125,49.249881744384766\n5126,67.7035140991211\n5127,49.792728424072266\n5128,80.4731674194336\n5129,62.498451232910156\n5130,34.58971405029297\n5131,33.114524841308594\n5132,42.67659378051758\n5133,56.358787536621094\n5134,36.99132537841797\n5135,69.88838195800781\n5136,33.43218994140625\n5137,38.63620376586914\n5138,41.91490173339844\n5139,27.141115188598633\n5140,44.29952621459961\n5141,49.61521530151367\n5142,30.392253875732422\n5143,73.4178237915039\n5144,25.18572235107422\n5145,36.38618087768555\n5146,35.451332092285156\n5147,20.882312774658203\n5148,38.34273910522461\n5149,45.29721450805664\n5150,59.26658248901367\n5151,68.49430084228516\n5152,71.39049530029297\n5153,43.68558120727539\n5154,77.28641510009766\n5155,52.82183074951172\n5156,73.71678161621094\n5157,54.419429779052734\n5158,77.83221435546875\n5159,63.82798385620117\n5160,35.98357009887695\n5161,29.749059677124023\n5162,35.66683578491211\n5163,57.39297103881836\n5164,36.981719970703125\n5165,71.14114379882812\n5166,37.14104461669922\n5167,36.50914001464844\n5168,36.74501037597656\n5169,22.71720314025879\n5170,36.63605499267578\n5171,54.57693099975586\n5172,28.5872859954834\n5173,77.18464660644531\n5174,29.800138473510742\n5175,39.113216400146484\n5176,28.595603942871094\n5177,16.84795379638672\n5178,29.168092727661133\n5179,46.23484420776367\n5180,54.103084564208984\n5181,60.49656677246094\n5182,73.89601135253906\n5183,32.338130950927734\n5184,73.68970489501953\n5185,46.25947952270508\n5186,70.42253875732422\n5187,46.02765655517578\n5188,77.85555267333984\n5189,65.76600646972656\n5190,34.96293258666992\n5191,31.341012954711914\n5192,34.52717208862305\n5193,59.28684997558594\n5194,35.84224319458008\n5195,72.51300811767578\n5196,35.52080535888672\n5197,37.75886154174805\n5198,35.46086120605469\n5199,24.47972297668457\n5200,35.009578704833984\n5201,56.41878128051758\n5202,28.352506637573242\n5203,78.40739440917969\n5204,28.321138381958008\n5205,40.227073669433594\n5206,28.19422721862793\n5207,18.296283721923828\n5208,28.112974166870117\n5209,48.13810348510742\n5210,56.645042419433594\n5211,62.70881271362305\n5212,70.74561309814453\n5213,33.3964729309082\n5214,70.33609008789062\n5215,48.035614013671875\n5216,68.89106750488281\n5217,47.84225082397461\n5218,78.65690612792969\n5219,66.19896697998047\n5220,39.31486129760742\n5221,29.817626953125\n5222,39.27621078491211\n5223,60.68840408325195\n5224,40.17441940307617\n5225,71.76404571533203\n5226,40.12810516357422\n5227,35.49945068359375\n5228,40.106544494628906\n5229,23.362319946289062\n5230,40.5173225402832\n5231,57.335018157958984\n5232,31.367572784423828\n5233,78.64405822753906\n5234,32.759864807128906\n5235,40.83245849609375\n5236,30.653642654418945\n5237,15.465862274169922\n5238,33.452293395996094\n5239,51.519866943359375\n5240,59.361175537109375\n5241,60.65548324584961\n5242,84.37955474853516\n5243,36.086692810058594\n5244,84.92514038085938\n5245,49.53797149658203\n5246,76.81591796875\n5247,49.666648864746094\n5248,93.9656982421875\n5249,65.87955474853516\n5250,40.886112213134766\n5251,30.141036987304688\n5252,38.41606140136719\n5253,60.21784973144531\n5254,41.19420623779297\n5255,71.32299041748047\n5256,42.0079231262207\n5257,35.70636749267578\n5258,39.649723052978516\n5259,23.77666664123535\n5260,39.1253662109375\n5261,57.37250900268555\n5262,32.510154724121094\n5263,78.52770233154297\n5264,35.37732696533203\n5265,40.888851165771484\n5266,30.827003479003906\n5267,16.55321502685547\n5268,32.191131591796875\n5269,49.24479675292969\n5270,59.0634880065918\n5271,59.100467681884766\n5272,81.2098617553711\n5273,32.40663146972656\n5274,79.76930236816406\n5275,46.87226104736328\n5276,73.56475830078125\n5277,46.29754638671875\n5278,91.64697265625\n5279,66.12284088134766\n5280,35.017330169677734\n5281,31.079957962036133\n5282,32.084651947021484\n5283,60.120628356933594\n5284,35.1114616394043\n5285,71.45709991455078\n5286,36.00895309448242\n5287,36.474430084228516\n5288,33.10728454589844\n5289,25.324920654296875\n5290,31.936983108520508\n5291,57.318485260009766\n5292,27.137916564941406\n5293,78.10784149169922\n5294,28.976442337036133\n5295,40.03535842895508\n5296,25.76166534423828\n5297,19.394041061401367\n5298,24.38685417175293\n5299,46.76579666137695\n5300,55.00695037841797\n5301,58.319400787353516\n5302,72.74429321289062\n5303,32.843177795410156\n5304,70.14064025878906\n5305,45.58709716796875\n5306,67.15017700195312\n5307,44.930912017822266\n5308,81.06783294677734\n5309,65.97820281982422\n5310,37.204830169677734\n5311,30.740434646606445\n5312,34.89810562133789\n5313,59.51630783081055\n5314,37.745750427246094\n5315,72.25321197509766\n5316,38.23390579223633\n5317,36.79766845703125\n5318,36.212894439697266\n5319,23.984647750854492\n5320,35.144779205322266\n5321,56.64742660522461\n5322,29.81795310974121\n5323,78.86106872558594\n5324,31.277782440185547\n5325,40.515438079833984\n5326,28.701414108276367\n5327,17.8278751373291\n5328,27.72010040283203\n5329,47.163883209228516\n5330,58.68115997314453\n5331,59.40168762207031\n5332,77.44390106201172\n5333,32.342838287353516\n5334,75.6294937133789\n5335,46.05105972290039\n5336,73.07952117919922\n5337,45.467323303222656\n5338,84.04317474365234\n5339,65.55313873291016\n5340,35.4172248840332\n5341,30.30341911315918\n5342,38.07236862182617\n5343,59.280086517333984\n5344,36.66994094848633\n5345,72.493896484375\n5346,35.7998161315918\n5347,37.07675552368164\n5348,38.233978271484375\n5349,23.578332901000977\n5350,39.63732147216797\n5351,56.12090301513672\n5352,28.08124542236328\n5353,78.022705078125\n5354,27.771604537963867\n5355,38.99678421020508\n5356,29.40721893310547\n5357,16.785846710205078\n5358,32.74805450439453\n5359,49.90821838378906\n5360,53.22144317626953\n5361,65.792236328125\n5362,70.83358001708984\n5363,35.90262985229492\n5364,73.22911071777344\n5365,50.75041580200195\n5366,67.80085754394531\n5367,51.25076675415039\n5368,78.25450897216797\n5369,67.99211883544922\n5370,36.4658203125\n5371,26.83401870727539\n5372,36.38197708129883\n5373,60.632423400878906\n5374,37.368675231933594\n5375,74.9062271118164\n5376,37.32301330566406\n5377,33.8361930847168\n5378,37.27619171142578\n5379,19.29944610595703\n5380,37.579891204833984\n5381,56.4911994934082\n5382,27.811912536621094\n5383,82.27838134765625\n5384,28.826087951660156\n5385,37.822628021240234\n5386,27.515735626220703\n5387,11.211581230163574\n5388,29.696645736694336\n5389,48.06755065917969\n5390,58.94416427612305\n5391,63.31321334838867\n5392,81.5309066772461\n5393,31.99486541748047\n5394,81.74311828613281\n5395,47.68173599243164\n5396,75.48705291748047\n5397,47.89619445800781\n5398,92.43846130371094\n5399,69.93997955322266\n5400,35.79948425292969\n5401,28.3408260345459\n5402,35.9412841796875\n5403,61.023193359375\n5404,37.01436996459961\n5405,78.05028533935547\n5406,36.035308837890625\n5407,36.41476821899414\n5408,36.82265090942383\n5409,19.81650733947754\n5410,36.16762161254883\n5411,56.944541931152344\n5412,28.82288932800293\n5413,84.92491149902344\n5414,27.582571029663086\n5415,38.15088653564453\n5416,28.94500732421875\n5417,12.399662971496582\n5418,28.582605361938477\n5419,46.97418975830078\n5420,63.368560791015625\n5421,68.16803741455078\n5422,74.2196044921875\n5423,29.55057716369629\n5424,73.87158203125\n5425,48.06406784057617\n5426,74.377197265625\n5427,48.43162155151367\n5428,87.08091735839844\n5429,64.4786376953125\n5430,35.72195816040039\n5431,31.817541122436523\n5432,34.05452346801758\n5433,58.92234420776367\n5434,36.019954681396484\n5435,69.6001205444336\n5436,36.41146469116211\n5437,37.26712417602539\n5438,34.84744644165039\n5439,26.134090423583984\n5440,34.30086135864258\n5441,56.98177719116211\n5442,28.60102653503418\n5443,75.43167877197266\n5444,29.770523071289062\n5445,40.775115966796875\n5446,27.62665367126465\n5447,20.422012329101562\n5448,27.59946060180664\n5449,49.02860641479492\n5450,54.12655258178711\n5451,59.099021911621094\n5452,69.57672119140625\n5453,33.91987991333008\n5454,68.34954071044922\n5455,47.253631591796875\n5456,65.5022201538086\n5457,46.856502532958984\n5458,76.8348388671875\n5459,64.47945404052734\n5460,37.20735168457031\n5461,26.868989944458008\n5462,39.94950485229492\n5463,57.74257278442383\n5464,38.17585754394531\n5465,71.27021026611328\n5466,38.05519485473633\n5467,33.47610855102539\n5468,39.815128326416016\n5469,20.41176414489746\n5470,41.72472381591797\n5471,53.28300094604492\n5472,27.805482864379883\n5473,77.6672134399414\n5474,29.305099487304688\n5475,35.143882751464844\n5476,29.40095329284668\n5477,13.233041763305664\n5478,33.84212875366211\n5479,45.27108383178711\n5480,51.29587173461914\n5481,63.03993606567383\n5482,75.67330932617188\n5483,33.909427642822266\n5484,77.91326141357422\n5485,47.26057052612305\n5486,68.45420837402344\n5487,48.222225189208984\n5488,83.50863647460938\n5489,68.0837631225586\n5490,37.98639678955078\n5491,28.015033721923828\n5492,37.07658767700195\n5493,61.165283203125\n5494,38.53367233276367\n5495,75.43209075927734\n5496,39.43720626831055\n5497,35.28704833984375\n5498,37.95150375366211\n5499,20.63960075378418\n5500,38.47327423095703\n5501,57.85218811035156\n5502,27.58466911315918\n5503,82.97786712646484\n5504,30.98836898803711\n5505,38.978450775146484\n5506,27.019554138183594\n5507,13.116944313049316\n5508,30.086910247802734\n5509,48.427486419677734\n5510,52.9910774230957\n5511,63.62718200683594\n5512,78.86011505126953\n5513,31.129533767700195\n5514,78.494140625\n5515,47.568016052246094\n5516,70.58918762207031\n5517,47.3519172668457\n5518,88.4051513671875\n5519,65.20503997802734\n5520,36.88011169433594\n5521,30.234651565551758\n5522,38.69646072387695\n5523,59.235206604003906\n5524,37.81941604614258\n5525,70.94183349609375\n5526,36.95600509643555\n5527,36.174720764160156\n5528,38.994422912597656\n5529,24.108766555786133\n5530,39.97905731201172\n5531,55.9394645690918\n5532,30.032264709472656\n5533,76.60639953613281\n5534,29.46039390563965\n5535,38.801517486572266\n5536,30.81173324584961\n5537,17.063995361328125\n5538,33.624122619628906\n5539,49.85262680053711\n5540,56.41080093383789\n5541,63.96645736694336\n5542,72.53804779052734\n5543,36.10552978515625\n5544,74.46588134765625\n5545,50.19355392456055\n5546,69.03919982910156\n5547,50.685691833496094\n5548,82.06476593017578\n5549,64.54386901855469\n5550,36.10489273071289\n5551,30.90216827392578\n5552,37.896568298339844\n5553,58.26726531982422\n5554,37.368709564208984\n5555,71.1833724975586\n5556,36.35893630981445\n5557,37.155616760253906\n5558,38.428504943847656\n5559,24.247467041015625\n5560,38.96407699584961\n5561,54.79266357421875\n5562,29.98854637145996\n5563,76.59413146972656\n5564,29.057771682739258\n5565,39.133792877197266\n5566,30.983707427978516\n5567,17.82666778564453\n5568,32.5213508605957\n5569,48.215240478515625\n5570,57.51027297973633\n5571,63.65849685668945\n5572,72.62336730957031\n5573,35.67524719238281\n5574,74.19343566894531\n5575,49.349666595458984\n5576,71.04051208496094\n5577,49.62664794921875\n5578,79.70149230957031\n5579,64.30134582519531\n5580,35.076194763183594\n5581,28.829496383666992\n5582,34.18410873413086\n5583,57.27880096435547\n5584,35.90766525268555\n5585,71.79423522949219\n5586,36.24574661254883\n5587,35.65550994873047\n5588,35.295467376708984\n5589,21.562313079833984\n5590,34.81342697143555\n5591,53.91572952270508\n5592,27.318923950195312\n5593,78.25848388671875\n5594,28.78322982788086\n5595,37.65260314941406\n5596,27.287288665771484\n5597,15.604891777038574\n5598,27.12608528137207\n5599,43.87557601928711\n5600,54.071388244628906\n5601,60.536834716796875\n5602,72.370361328125\n5603,30.281131744384766\n5604,71.42328643798828\n5605,44.621036529541016\n5606,68.97676086425781\n5607,44.30608367919922\n5608,78.12593078613281\n5609,67.22016143798828\n5610,39.636417388916016\n5611,28.56401252746582\n5612,37.92793655395508\n5613,60.14844512939453\n5614,40.29693603515625\n5615,74.14712524414062\n5616,40.96902847290039\n5617,35.53914260864258\n5618,39.22264099121094\n5619,21.32047462463379\n5620,38.76899337768555\n5621,57.13471984863281\n5622,31.254314422607422\n5623,81.37091827392578\n5624,33.3619499206543\n5625,39.17658615112305\n5626,30.31902503967285\n5627,14.404349327087402\n5628,31.00103759765625\n5629,47.38840866088867\n5630,58.870113372802734\n5631,61.89287567138672\n5632,79.55110168457031\n5633,30.72066879272461\n5634,78.38316345214844\n5635,46.51935577392578\n5636,74.05449676513672\n5637,46.1494026184082\n5638,87.47967529296875\n5639,67.45897674560547\n5640,38.77446746826172\n5641,28.503273010253906\n5642,37.75753402709961\n5643,60.54132843017578\n5644,39.847328186035156\n5645,74.14055633544922\n5646,39.959556579589844\n5647,35.05830764770508\n5648,39.08079528808594\n5649,21.32752227783203\n5650,38.61726379394531\n5651,56.62136459350586\n5652,31.03896141052246\n5653,81.43714904785156\n5654,32.11600112915039\n5655,39.342533111572266\n5656,30.267669677734375\n5657,13.896642684936523\n5658,30.75021743774414\n5659,47.75747299194336\n5660,62.505924224853516\n5661,60.92521286010742\n5662,86.01203155517578\n5663,33.2786750793457\n5664,85.31368255615234\n5665,47.19984817504883\n5666,80.17683410644531\n5667,47.025291442871094\n5668,94.01293182373047\n5669,68.24440002441406\n5670,35.98240661621094\n5671,29.485532760620117\n5672,35.39673614501953\n5673,61.13916015625\n5674,36.91706848144531\n5675,76.30724334716797\n5676,37.505714416503906\n5677,37.00364685058594\n5678,36.484554290771484\n5679,22.009105682373047\n5680,36.613037109375\n5681,57.817832946777344\n5682,27.015169143676758\n5683,83.2393569946289\n5684,29.08405876159668\n5685,39.56045913696289\n5686,26.98639678955078\n5687,15.421272277832031\n5688,28.111719131469727\n5689,47.48264694213867\n5690,53.67105484008789\n5691,64.38054656982422\n5692,76.43756866455078\n5693,32.441490173339844\n5694,75.95870971679688\n5695,47.884334564208984\n5696,71.1543197631836\n5697,47.503910064697266\n5698,82.04144287109375\n5699,66.20111846923828\n5700,36.47956466674805\n5701,28.761388778686523\n5702,38.69548797607422\n5703,60.08224868774414\n5704,37.48286819458008\n5705,72.48314666748047\n5706,37.07618713378906\n5707,34.90361785888672\n5708,38.856361389160156\n5709,22.716997146606445\n5710,40.312095642089844\n5711,55.60659408569336\n5712,28.211217880249023\n5713,78.93830108642578\n5714,28.741743087768555\n5715,37.236167907714844\n5716,29.364944458007812\n5717,15.120513916015625\n5718,33.08068084716797\n5719,47.90476989746094\n5720,53.916988372802734\n5721,64.25049591064453\n5722,76.1015625\n5723,36.261627197265625\n5724,78.09748077392578\n5725,49.501556396484375\n5726,69.52195739746094\n5727,50.11658477783203\n5728,86.38740539550781\n5729,69.10200500488281\n5730,36.302486419677734\n5731,30.956254959106445\n5732,34.71792984008789\n5733,62.754234313964844\n5734,36.45077133178711\n5735,75.77217864990234\n5736,37.88911819458008\n5737,37.86518859863281\n5738,35.29353713989258\n5739,24.69017219543457\n5740,35.63672637939453\n5741,60.49253463745117\n5742,25.864383697509766\n5743,82.73792266845703\n5744,29.667373657226562\n5745,40.9295654296875\n5746,25.246501922607422\n5747,18.490970611572266\n5748,27.08119010925293\n5749,49.75508117675781\n5750,48.61973190307617\n5751,63.9405403137207\n5752,72.0208969116211\n5753,33.123836517333984\n5754,70.6676025390625\n5755,48.625675201416016\n5756,64.08085632324219\n5757,48.03217315673828\n5758,78.9659194946289\n5759,66.20913696289062\n5760,35.699615478515625\n5761,30.205785751342773\n5762,37.23422622680664\n5763,59.33274841308594\n5764,36.991390228271484\n5765,72.4293212890625\n5766,35.585269927978516\n5767,36.59687042236328\n5768,37.85457229614258\n5769,23.286367416381836\n5770,37.994598388671875\n5771,55.81016159057617\n5772,30.065380096435547\n5773,78.04859161376953\n5774,28.0576171875\n5775,39.06275939941406\n5776,30.697872161865234\n5777,16.2554931640625\n5778,31.628154754638672\n5779,49.36530685424805\n5780,61.54265594482422\n5781,64.62757873535156\n5782,73.8208236694336\n5783,35.072818756103516\n5784,75.1948471069336\n5785,49.871971130371094\n5786,73.2862548828125\n5787,50.30577850341797\n5788,83.73600769042969\n5789,65.0811996459961\n5790,39.61906814575195\n5791,32.0927619934082\n5792,37.18013381958008\n5793,58.98611068725586\n5794,40.2297248840332\n5795,71.97809600830078\n5796,40.944000244140625\n5797,38.49661636352539\n5798,38.71919250488281\n5799,24.84090232849121\n5800,37.71419143676758\n5801,57.10061264038086\n5802,32.154022216796875\n5803,78.36268615722656\n5804,34.4207649230957\n5805,42.466915130615234\n5806,30.883548736572266\n5807,19.119417190551758\n5808,30.48142433166504\n5809,48.693199157714844\n5810,57.53935623168945\n5811,59.72784423828125\n5812,77.55027770996094\n5813,32.12401580810547\n5814,75.88390350341797\n5815,46.76114273071289\n5816,73.49880981445312\n5817,46.017845153808594\n5818,81.47642517089844\n5819,64.87698364257812\n5820,36.9892692565918\n5821,33.127235412597656\n5822,36.502769470214844\n5823,58.88740539550781\n5824,37.88650894165039\n5825,71.06954193115234\n5826,37.3756103515625\n5827,39.0283317565918\n5828,37.59889602661133\n5829,26.705368041992188\n5830,36.979248046875\n5831,56.396934509277344\n5832,31.254981994628906\n5833,76.40542602539062\n5834,30.771398544311523\n5835,41.68408203125\n5836,31.13688087463379\n5837,21.015701293945312\n5838,30.51310920715332\n5839,49.083892822265625\n5840,59.00090408325195\n5841,61.72797775268555\n5842,72.55413818359375\n5843,35.33330154418945\n5844,72.32694244384766\n5845,48.77307891845703\n5846,71.53089141845703\n5847,48.51066207885742\n5848,78.21906280517578\n5849,66.7398910522461\n5850,36.38319396972656\n5851,28.395936965942383\n5852,36.51152038574219\n5853,59.88461685180664\n5854,37.42049789428711\n5855,72.75457000732422\n5856,36.98013687133789\n5857,34.49966812133789\n5858,37.37287521362305\n5859,21.80554962158203\n5860,37.282779693603516\n5861,55.4943733215332\n5862,29.30154800415039\n5863,79.52915954589844\n5864,29.05868911743164\n5865,37.87158203125\n5866,29.273792266845703\n5867,14.433893203735352\n5868,29.863431930541992\n5869,47.0161018371582\n5870,61.40275955200195\n5871,61.403663635253906\n5872,81.45796203613281\n5873,34.50355911254883\n5874,81.59125518798828\n5875,47.55341339111328\n5876,76.72084045410156\n5877,47.70832061767578\n5878,91.01422119140625\n5879,64.58190155029297\n5880,36.999305725097656\n5881,29.996484756469727\n5882,35.940338134765625\n5883,58.77873611450195\n5884,37.50039291381836\n5885,70.46332550048828\n5886,37.985923767089844\n5887,36.153228759765625\n5888,36.7983512878418\n5889,23.896371841430664\n5890,36.770484924316406\n5891,56.648746490478516\n5892,29.26113510131836\n5893,76.7001724243164\n5894,30.912179946899414\n5895,39.617767333984375\n5896,28.565052032470703\n5897,17.68683433532715\n5898,29.70285415649414\n5899,48.656158447265625\n5900,53.471378326416016\n5901,60.21283721923828\n5902,71.9900894165039\n5903,32.79313278198242\n5904,71.46611785888672\n5905,47.19655227661133\n5906,66.9049072265625\n5907,46.83406448364258\n5908,79.06387329101562\n5909,63.592552185058594\n5910,36.1945915222168\n5911,31.498916625976562\n5912,36.44599151611328\n5913,58.26475143432617\n5914,37.162506103515625\n5915,69.75476837158203\n5916,36.85245895385742\n5917,37.1884765625\n5918,37.25855255126953\n5919,25.261995315551758\n5920,37.41919708251953\n5921,55.32435989379883\n5922,29.564144134521484\n5923,75.5416259765625\n5924,30.022850036621094\n5925,40.53334426879883\n5926,29.58848762512207\n5927,18.970531463623047\n5928,30.798870086669922\n5929,48.78199768066406\n5930,55.16950225830078\n5931,60.071044921875\n5932,74.89022064208984\n5933,35.973548889160156\n5934,75.3484115600586\n5935,48.39382553100586\n5936,70.6735610961914\n5937,48.30498504638672\n5938,80.77294921875\n5939,63.6772346496582\n5940,35.546241760253906\n5941,31.95256996154785\n5942,33.947513580322266\n5943,58.16508865356445\n5944,36.008033752441406\n5945,69.31214141845703\n5946,36.31081771850586\n5947,37.37277603149414\n5948,34.95111846923828\n5949,26.263080596923828\n5950,34.23615646362305\n5951,55.74471664428711\n5952,28.924348831176758\n5953,75.04498291015625\n5954,29.810224533081055\n5955,40.14365768432617\n5956,28.2865047454834\n5957,20.809791564941406\n5958,27.582448959350586\n5959,46.92063522338867\n5960,54.359840393066406\n5961,58.869422912597656\n5962,69.19794464111328\n5963,33.77800369262695\n5964,67.95518493652344\n5965,46.40109634399414\n5966,65.85493469238281\n5967,45.847442626953125\n5968,75.6946029663086\n5969,67.77522277832031\n5970,39.501548767089844\n5971,30.535715103149414\n5972,36.18408966064453\n5973,61.07274627685547\n5974,39.51528549194336\n5975,73.77899169921875\n5976,40.58988571166992\n5977,36.791812896728516\n5978,37.40812683105469\n5979,24.051511764526367\n5980,36.3399543762207\n5981,58.516212463378906\n5982,30.978763580322266\n5983,80.96658325195312\n5984,33.61917495727539\n5985,40.456851959228516\n5986,29.315505981445312\n5987,17.648265838623047\n5988,28.93035888671875\n5989,47.73134994506836\n5990,57.963233947753906\n5991,61.27391815185547\n5992,74.92993927001953\n5993,30.536405563354492\n5994,72.33064270019531\n5995,46.25360107421875\n5996,69.38678741455078\n5997,45.494140625\n5998,84.98643493652344\n5999,66.39383697509766\n6000,38.438323974609375\n6001,30.395580291748047\n6002,36.34325408935547\n6003,60.109500885009766\n6004,38.75501251220703\n6005,72.79621124267578\n6006,39.649391174316406\n6007,36.7165412902832\n6008,37.41128921508789\n6009,23.772851943969727\n6010,36.965274810791016\n6011,57.40896987915039\n6012,29.615800857543945\n6013,79.70335388183594\n6014,32.49168395996094\n6015,40.30404281616211\n6016,28.514970779418945\n6017,17.294010162353516\n6018,29.507020950317383\n6019,47.85484313964844\n6020,54.92511749267578\n6021,61.08268356323242\n6022,75.2209701538086\n6023,31.52635383605957\n6024,73.74598693847656\n6025,46.64662170410156\n6026,68.97936248779297\n6027,46.030521392822266\n6028,83.88423156738281\n6029,67.5762939453125\n6030,38.48933792114258\n6031,31.551877975463867\n6032,36.26280212402344\n6033,60.85252380371094\n6034,39.26938247680664\n6035,75.32486724853516\n6036,39.959747314453125\n6037,38.62413787841797\n6038,37.864078521728516\n6039,23.86275291442871\n6040,36.9621696472168\n6041,58.31913375854492\n6042,30.323291778564453\n6043,82.17939758300781\n6044,32.577144622802734\n6045,42.225833892822266\n6046,29.257564544677734\n6047,17.64251136779785\n6048,28.980756759643555\n6049,48.72071075439453\n6050,57.53520965576172\n6051,62.24319839477539\n6052,79.04379272460938\n6053,32.19430923461914\n6054,77.40979766845703\n6055,47.53767395019531\n6056,74.55809783935547\n6057,46.83877944946289\n6058,84.05451965332031\n6059,68.11705780029297\n6060,36.053829193115234\n6061,32.46197509765625\n6062,35.39205551147461\n6063,61.42955780029297\n6064,36.85848617553711\n6065,74.1793212890625\n6066,36.3104133605957\n6067,38.50564956665039\n6068,36.27550506591797\n6069,25.8626766204834\n6070,35.483497619628906\n6071,58.08883285522461\n6072,29.828514099121094\n6073,80.26573181152344\n6074,29.127365112304688\n6075,41.4913444519043\n6076,29.42799186706543\n6077,19.310394287109375\n6078,28.64457130432129\n6079,49.65266418457031\n6080,61.71459197998047\n6081,63.5836067199707\n6082,75.16840362548828\n6083,35.411502838134766\n6084,74.42534637451172\n6085,49.46113586425781\n6086,73.26414489746094\n6087,49.39814376831055\n6088,84.671875\n6089,67.14048767089844\n6090,38.31730270385742\n6091,29.867351531982422\n6092,37.35274887084961\n6093,60.66292953491211\n6094,38.970882415771484\n6095,73.7406234741211\n6096,39.34157943725586\n6097,36.18950271606445\n6098,38.35038757324219\n6099,22.953044891357422\n6100,38.26216506958008\n6101,57.085227966308594\n6102,29.758413314819336\n6103,80.79086303710938\n6104,31.72024917602539\n6105,39.8778190612793\n6106,29.185626983642578\n6107,15.783086776733398\n6108,30.697856903076172\n6109,48.21344757080078\n6110,57.33292770385742\n6111,62.143707275390625\n6112,79.5290756225586\n6113,33.198429107666016\n6114,78.99110412597656\n6115,47.71984100341797\n6116,73.13976287841797\n6117,47.51835250854492\n6118,88.8274154663086\n6119,63.96236801147461\n6120,34.079811096191406\n6121,31.61590003967285\n6122,37.47721862792969\n6123,58.80858612060547\n6124,35.27558135986328\n6125,70.8502426147461\n6126,34.69064712524414\n6127,37.65799331665039\n6128,37.32570266723633\n6129,26.053884506225586\n6130,39.32012939453125\n6131,55.05891799926758\n6132,26.3070011138916\n6133,76.09490966796875\n6134,26.60536003112793\n6135,38.54610061645508\n6136,28.46497344970703\n6137,19.86072540283203\n6138,32.21003341674805\n6139,48.013736724853516\n6140,47.14725875854492\n6141,64.64327239990234\n6142,68.663818359375\n6143,38.74012756347656\n6144,71.33015441894531\n6145,50.52056121826172\n6146,63.517147064208984\n6147,50.9636116027832\n6148,74.20934295654297\n6149,66.14617156982422\n6150,40.39631271362305\n6151,30.50323486328125\n6152,37.60823059082031\n6153,60.29253387451172\n6154,40.6594352722168\n6155,71.80719757080078\n6156,41.5507926940918\n6157,36.192283630371094\n6158,38.93239974975586\n6159,24.02875518798828\n6160,38.17946243286133\n6161,57.542232513427734\n6162,32.04780197143555\n6163,78.97061157226562\n6164,34.904014587402344\n6165,41.10047149658203\n6166,30.3287410736084\n6167,17.07384490966797\n6168,31.117252349853516\n6169,48.83346939086914\n6170,58.7606315612793\n6171,59.26013946533203\n6172,80.13795471191406\n6173,32.096744537353516\n6174,78.34566497802734\n6175,46.63417053222656\n6176,73.01675415039062\n6177,45.965911865234375\n6178,89.89523315429688\n6179,62.386619567871094\n6180,33.12973403930664\n6181,31.134668350219727\n6182,36.743202209472656\n6183,57.34697723388672\n6184,34.25023651123047\n6185,68.83534240722656\n6186,33.590030670166016\n6187,36.767333984375\n6188,36.442195892333984\n6189,25.949275970458984\n6190,38.459163665771484\n6191,53.421104431152344\n6192,25.66040802001953\n6193,73.8276138305664\n6194,25.69237518310547\n6195,37.284271240234375\n6196,28.030410766601562\n6197,19.9731502532959\n6198,31.5887393951416\n6199,46.431861877441406\n6200,46.20526123046875\n6201,63.11227798461914\n6202,66.5186767578125\n6203,38.494422912597656\n6204,69.28825378417969\n6205,49.361026763916016\n6206,61.64081573486328\n6207,49.88603210449219\n6208,72.17585754394531\n6209,64.54273986816406\n6210,36.82487487792969\n6211,30.31830596923828\n6212,36.00767517089844\n6213,58.908966064453125\n6214,37.3394775390625\n6215,70.03434753417969\n6216,37.65671157836914\n6217,36.08036804199219\n6218,36.77030563354492\n6219,24.549930572509766\n6220,36.73588943481445\n6221,56.416255950927734\n6222,29.37702178955078\n6223,76.1924819946289\n6224,30.649703979492188\n6225,39.470394134521484\n6226,28.82413673400879\n6227,18.261354446411133\n6228,29.839656829833984\n6229,48.43453598022461\n6230,54.30814743041992\n6231,59.95247268676758\n6232,72.30999755859375\n6233,33.80534362792969\n6234,71.91026306152344\n6235,47.35036087036133\n6236,67.16613006591797\n6237,47.0980224609375\n6238,80.09846496582031\n6239,66.71878814697266\n6240,36.748165130615234\n6241,27.796056747436523\n6242,37.08750915527344\n6243,60.17208480834961\n6244,37.410770416259766\n6245,73.2959976196289\n6246,37.694252014160156\n6247,34.66841506958008\n6248,37.59036636352539\n6249,21.05324363708496\n6250,38.52876663208008\n6251,56.92474365234375\n6252,27.400367736816406\n6253,80.20287322998047\n6254,29.41919708251953\n6255,38.04220962524414\n6256,27.363065719604492\n6257,13.551981925964355\n6258,30.826587677001953\n6259,48.895652770996094\n6260,52.83378982543945\n6261,63.5067138671875\n6262,75.30374145507812\n6263,32.456504821777344\n6264,75.9831314086914\n6265,48.28132629394531\n6266,68.30326843261719\n6267,48.39707565307617\n6268,85.56510162353516\n6269,65.69678497314453\n6270,36.55215835571289\n6271,29.763456344604492\n6272,37.00120162963867\n6273,60.08509826660156\n6274,37.19120788574219\n6275,71.86641693115234\n6276,37.58906173706055\n6277,35.767539978027344\n6278,37.42531967163086\n6279,23.921842575073242\n6280,38.39638900756836\n6281,56.53956604003906\n6282,27.590002059936523\n6283,78.45547485351562\n6284,29.827009201049805\n6285,38.67254638671875\n6286,27.85372543334961\n6287,16.960657119750977\n6288,31.021135330200195\n6289,48.115074157714844\n6290,50.85310745239258\n6291,62.32854080200195\n6292,74.25250244140625\n6293,34.96273422241211\n6294,74.88973999023438\n6295,48.395042419433594\n6296,66.52005767822266\n6297,48.31779861450195\n6298,83.27964782714844\n6299,64.33718872070312\n6300,35.804805755615234\n6301,30.613862991333008\n6302,36.197998046875\n6303,59.37731170654297\n6304,36.348899841308594\n6305,69.90435028076172\n6306,36.78827667236328\n6307,36.124176025390625\n6308,36.536651611328125\n6309,25.32499122619629\n6310,37.48021697998047\n6311,56.349937438964844\n6312,27.31791877746582\n6313,76.04767608642578\n6314,29.407821655273438\n6315,39.21103286743164\n6316,27.486621856689453\n6317,18.792865753173828\n6318,30.3812255859375\n6319,48.65996551513672\n6320,49.273963928222656\n6321,60.71059799194336\n6322,72.1353759765625\n6323,36.01701736450195\n6324,72.74604034423828\n6325,48.4449348449707\n6326,64.57853698730469\n6327,48.21522903442383\n6328,79.71241760253906\n6329,69.37330627441406\n6330,38.295284271240234\n6331,28.739093780517578\n6332,37.18082809448242\n6333,62.6819953918457\n6334,38.5561637878418\n6335,75.94568634033203\n6336,39.46561050415039\n6337,35.613975524902344\n6338,37.812923431396484\n6339,22.034151077270508\n6340,38.26980972290039\n6341,59.41436767578125\n6342,28.082365036010742\n6343,83.550537109375\n6344,31.113155364990234\n6345,39.427772521972656\n6346,27.339012145996094\n6347,14.433028221130371\n6348,30.109220504760742\n6349,49.645042419433594\n6350,54.090576171875\n6351,64.3764877319336\n6352,77.81402587890625\n6353,32.325618743896484\n6354,77.18260192871094\n6355,48.60224914550781\n6356,69.40177917480469\n6357,48.443878173828125\n6358,89.35641479492188\n6359,67.38591003417969\n6360,39.141571044921875\n6361,28.353376388549805\n6362,37.255836486816406\n6363,60.672603607177734\n6364,39.955657958984375\n6365,74.03327178955078\n6366,40.67881774902344\n6367,34.86750411987305\n6368,38.683982849121094\n6369,21.284652709960938\n6370,38.07926940917969\n6371,57.0654296875\n6372,30.664520263671875\n6373,81.63944244384766\n6374,32.879180908203125\n6375,39.555171966552734\n6376,29.489463806152344\n6377,14.008995056152344\n6378,29.850692749023438\n6379,47.543174743652344\n6380,60.543338775634766\n6381,59.69631576538086\n6382,86.2706298828125\n6383,32.448974609375\n6384,84.86750030517578\n6385,46.32332229614258\n6386,78.99884033203125\n6387,45.906455993652344\n6388,93.44628143310547\n6389,64.51407623291016\n6390,33.94160842895508\n6391,27.37517547607422\n6392,34.62582015991211\n6393,57.778438568115234\n6394,34.78904342651367\n6395,71.60342407226562\n6396,34.62940979003906\n6397,34.11363983154297\n6398,35.192134857177734\n6399,20.417753219604492\n6400,35.689048767089844\n6401,54.0048942565918\n6402,25.86406135559082\n6403,78.06143188476562\n6404,26.70655632019043\n6405,36.484580993652344\n6406,26.331806182861328\n6407,13.459733963012695\n6408,28.36176872253418\n6409,45.46384048461914\n6410,52.9051399230957\n6411,62.18316650390625\n6412,71.69224548339844\n6413,31.393272399902344\n6414,72.2583236694336\n6415,46.27603530883789\n6416,67.30307006835938\n6417,46.4138298034668\n6418,80.8525619506836\n6419,64.57305145263672\n6420,34.40864944458008\n6421,28.558115005493164\n6422,35.710628509521484\n6423,58.60811996459961\n6424,35.14779281616211\n6425,72.08426666259766\n6426,35.780723571777344\n6427,35.48142623901367\n6428,35.90955352783203\n6429,22.35835838317871\n6430,37.49388885498047\n6431,55.34112548828125\n6432,24.644750595092773\n6433,78.41972351074219\n6434,27.315006256103516\n6435,37.017738342285156\n6436,25.827280044555664\n6437,16.168190002441406\n6438,29.2238826751709\n6439,45.830528259277344\n6440,44.67798614501953\n6441,62.929229736328125\n6442,70.08779907226562\n6443,33.5365104675293\n6444,71.08717346191406\n6445,47.20731735229492\n6446,62.62883758544922\n6447,47.255245208740234\n6448,75.06168365478516\n6449,66.6541748046875\n6450,37.18791961669922\n6451,30.412630081176758\n6452,35.360416412353516\n6453,60.44093704223633\n6454,37.46590042114258\n6455,72.63648223876953\n6456,38.458919525146484\n6457,36.676048278808594\n6458,36.215362548828125\n6459,24.35138511657715\n6460,35.96026611328125\n6461,58.03068923950195\n6462,28.441226959228516\n6463,79.33539581298828\n6464,30.9812068939209\n6465,39.8635368347168\n6466,27.636886596679688\n6467,18.27912712097168\n6468,28.174503326416016\n6469,48.008975982666016\n6470,53.07339859008789\n6471,60.994083404541016\n6472,73.06452941894531\n6473,32.5486946105957\n6474,71.6680679321289\n6475,46.94099044799805\n6476,66.8324203491211\n6477,46.33796691894531\n6478,80.17913055419922\n6479,69.31000518798828\n6480,37.08184051513672\n6481,28.301712036132812\n6482,37.28840255737305\n6483,62.26113510131836\n6484,37.99484634399414\n6485,76.714111328125\n6486,38.20781326293945\n6487,35.690738677978516\n6488,38.10702133178711\n6489,20.886430740356445\n6490,38.758975982666016\n6491,58.5875358581543\n6492,27.892518997192383\n6493,84.00702667236328\n6494,29.50499153137207\n6495,39.29313278198242\n6496,27.804651260375977\n6497,13.015938758850098\n6498,30.617923736572266\n6499,49.95707321166992\n6500,56.266822814941406\n6501,65.61141967773438\n6502,80.2222900390625\n6503,33.38681411743164\n6504,80.74345397949219\n6505,49.62755584716797\n6506,73.70658874511719\n6507,49.63557052612305\n6508,89.88225555419922\n6509,66.56442260742188\n6510,36.78310012817383\n6511,29.688495635986328\n6512,36.93729782104492\n6513,59.22324752807617\n6514,37.57017135620117\n6515,72.54904174804688\n6516,37.0295524597168\n6517,35.9350700378418\n6518,37.48797607421875\n6519,22.87398338317871\n6520,37.193355560302734\n6521,55.662193298339844\n6522,29.934188842773438\n6523,78.72547149658203\n6524,29.43516731262207\n6525,38.23258590698242\n6526,30.065244674682617\n6527,16.204374313354492\n6528,30.299114227294922\n6529,47.15226364135742\n6530,60.784732818603516\n6531,63.20405578613281\n6532,72.97015380859375\n6533,32.74256896972656\n6534,72.80987548828125\n6535,47.55180740356445\n6536,71.13494110107422\n6537,47.95370864868164\n6538,83.09051513671875\n6539,67.65049743652344\n6540,34.45928192138672\n6541,30.035829544067383\n6542,38.07875061035156\n6543,60.61487579345703\n6544,36.1599235534668\n6545,74.75823211669922\n6546,34.3567008972168\n6547,37.65431594848633\n6548,38.30209732055664\n6549,22.61113166809082\n6550,39.86515426635742\n6551,57.86654281616211\n6552,28.090566635131836\n6553,79.92416381835938\n6554,25.91973304748535\n6555,40.005123138427734\n6556,29.47334098815918\n6557,15.121869087219238\n6558,33.37812423706055\n6559,53.69219970703125\n6560,56.933135986328125\n6561,69.5761947631836\n6562,70.14302825927734\n6563,36.0024528503418\n6564,73.57750701904297\n6565,53.60261535644531\n6566,69.98462677001953\n6567,54.36988067626953\n6568,79.84880065917969\n6569,66.93807983398438\n6570,36.21146774291992\n6571,30.386157989501953\n6572,36.208492279052734\n6573,60.59455871582031\n6574,37.04758071899414\n6575,73.7345962524414\n6576,37.2728157043457\n6577,36.80573272705078\n6578,36.980098724365234\n6579,23.893089294433594\n6580,37.24729919433594\n6581,56.983158111572266\n6582,28.015350341796875\n6583,80.28677368164062\n6584,29.399364471435547\n6585,39.394676208496094\n6586,28.24361801147461\n6587,17.289764404296875\n6588,29.523088455200195\n6589,47.6843147277832\n6590,54.55186080932617\n6591,62.98799133300781\n6592,75.91291046142578\n6593,34.772369384765625\n6594,75.9330062866211\n6595,48.313655853271484\n6596,70.45206451416016\n6597,48.12057876586914\n6598,82.95601654052734\n6599,67.20629119873047\n6600,36.58915710449219\n6601,29.125553131103516\n6602,36.5542106628418\n6603,60.54766082763672\n6604,37.52256774902344\n6605,73.16706085205078\n6606,37.29268264770508\n6607,35.102500915527344\n6608,37.371673583984375\n6609,22.73636245727539\n6610,37.32283020019531\n6611,56.16358184814453\n6612,29.189191818237305\n6613,79.9982681274414\n6614,29.419511795043945\n6615,38.43674850463867\n6616,29.134740829467773\n6617,15.44670295715332\n6618,29.857162475585938\n6619,47.3018913269043\n6620,60.22161865234375\n6621,61.68367004394531\n6622,80.88722229003906\n6623,35.05242156982422\n6624,80.86255645751953\n6625,47.879798889160156\n6626,75.4647445678711\n6627,47.960575103759766\n6628,90.45539093017578\n6629,65.80183410644531\n6630,36.654964447021484\n6631,29.918386459350586\n6632,36.045677185058594\n6633,58.533424377441406\n6634,37.411582946777344\n6635,72.11033630371094\n6636,37.15023422241211\n6637,36.3933219909668\n6638,36.9084358215332\n6639,22.940731048583984\n6640,36.28681564331055\n6641,55.571510314941406\n6642,29.936866760253906\n6643,78.1799087524414\n6644,29.862075805664062\n6645,38.74028396606445\n6646,29.766613006591797\n6647,16.795669555664062\n6648,29.3284912109375\n6649,46.81642532348633\n6650,59.57362747192383\n6651,62.14703369140625\n6652,71.70865631103516\n6653,31.742855072021484\n6654,71.05037689208984\n6655,46.757545471191406\n6656,70.34729766845703\n6657,46.83992385864258\n6658,79.7632827758789\n6659,69.46355438232422\n6660,36.81583023071289\n6661,28.940731048583984\n6662,36.985774993896484\n6663,62.825252532958984\n6664,37.49274444580078\n6665,75.99099731445312\n6666,37.95949935913086\n6667,35.496185302734375\n6668,37.5045051574707\n6669,22.3713321685791\n6670,38.19504165649414\n6671,58.58845901489258\n6672,27.270124435424805\n6673,83.42699432373047\n6674,29.28369903564453\n6675,38.95539474487305\n6676,27.272563934326172\n6677,14.582929611206055\n6678,29.97028923034668\n6679,49.082130432128906\n6680,55.062320709228516\n6681,64.4271011352539\n6682,80.17937469482422\n6683,35.02109146118164\n6684,80.36131286621094\n6685,49.289695739746094\n6686,71.94095611572266\n6687,49.44552993774414\n6688,90.49577331542969\n6689,66.65083312988281\n6690,35.826698303222656\n6691,31.70827293395996\n6692,34.30242919921875\n6693,60.082828521728516\n6694,36.52190399169922\n6695,72.46737670898438\n6696,36.30068588256836\n6697,37.60224914550781\n6698,35.45869445800781\n6699,25.230712890625\n6700,34.32640075683594\n6701,57.072059631347656\n6702,29.674602508544922\n6703,78.57077026367188\n6704,29.45062828063965\n6705,40.903282165527344\n6706,28.904197692871094\n6707,19.057327270507812\n6708,27.429346084594727\n6709,48.342891693115234\n6710,61.023643493652344\n6711,60.964195251464844\n6712,75.33919525146484\n6713,34.07831573486328\n6714,74.02996063232422\n6715,47.66560745239258\n6716,73.17156219482422\n6717,47.283687591552734\n6718,83.28795623779297\n6719,65.94388580322266\n6720,36.938716888427734\n6721,30.77532196044922\n6722,35.69643783569336\n6723,60.46175765991211\n6724,37.63264083862305\n6725,71.88565063476562\n6726,37.967124938964844\n6727,36.59916687011719\n6728,36.75646209716797\n6729,24.452543258666992\n6730,36.41340637207031\n6731,57.563934326171875\n6732,29.316612243652344\n6733,78.64295196533203\n6734,30.873125076293945\n6735,41.31879806518555\n6736,28.301109313964844\n6737,17.50594139099121\n6738,29.18634605407715\n6739,50.00776672363281\n6740,56.771728515625\n6741,59.6707649230957\n6742,79.69586181640625\n6743,35.04332733154297\n6744,78.91873931884766\n6745,48.24303436279297\n6746,73.16431427001953\n6747,47.83926773071289\n6748,87.48515319824219\n6749,66.74630737304688\n6750,38.36178970336914\n6751,30.931062698364258\n6752,36.38729476928711\n6753,60.71950149536133\n6754,38.919029235839844\n6755,73.52977752685547\n6756,39.97367477416992\n6757,37.208168029785156\n6758,37.593284606933594\n6759,24.461463928222656\n6760,37.07902145385742\n6761,57.650325775146484\n6762,29.757768630981445\n6763,80.58001708984375\n6764,32.70363998413086\n6765,40.638362884521484\n6766,28.946142196655273\n6767,18.221235275268555\n6768,29.125560760498047\n6769,47.24552536010742\n6770,54.86125183105469\n6771,60.56517028808594\n6772,78.3815689086914\n6773,33.19935607910156\n6774,76.75714111328125\n6775,46.72402572631836\n6776,71.47384643554688\n6777,45.9884147644043\n6778,84.25647735595703\n6779,65.56249237060547\n6780,38.3519172668457\n6781,30.43817710876465\n6782,38.05479431152344\n6783,58.932220458984375\n6784,39.59749221801758\n6785,72.72588348388672\n6786,39.128562927246094\n6787,36.91799545288086\n6788,39.341854095458984\n6789,23.17172622680664\n6790,38.75767135620117\n6791,55.32185363769531\n6792,31.943819046020508\n6793,79.01624298095703\n6794,31.867786407470703\n6795,40.00224685668945\n6796,31.821855545043945\n6797,16.601348876953125\n6798,31.589197158813477\n6799,47.19184494018555\n6800,62.00486755371094\n6801,61.5358772277832\n6802,80.69207763671875\n6803,33.88921356201172\n6804,80.49859619140625\n6805,47.53495407104492\n6806,78.00157165527344\n6807,47.43956756591797\n6808,86.81893920898438\n6809,64.35485076904297\n6810,37.01325607299805\n6811,30.428468704223633\n6812,36.72904586791992\n6813,58.814327239990234\n6814,37.918392181396484\n6815,70.12049865722656\n6816,37.78567123413086\n6817,35.88192367553711\n6818,37.64093780517578\n6819,24.247446060180664\n6820,37.52367401123047\n6821,55.29666519165039\n6822,30.034927368164062\n6823,76.4893569946289\n6824,30.814634323120117\n6825,39.898284912109375\n6826,29.659753799438477\n6827,17.412893295288086\n6828,30.645570755004883\n6829,48.14220428466797\n6830,57.73604202270508\n6831,58.96559524536133\n6832,79.57954406738281\n6833,35.55571365356445\n6834,79.53346252441406\n6835,47.57026290893555\n6836,73.88164520263672\n6837,47.467933654785156\n6838,87.07266998291016\n6839,65.12264251708984\n6840,36.75216293334961\n6841,31.46759796142578\n6842,36.53013229370117\n6843,59.79941940307617\n6844,37.68967056274414\n6845,71.05437469482422\n6846,37.48124694824219\n6847,37.186256408691406\n6848,37.46556854248047\n6849,25.29877281188965\n6850,37.408775329589844\n6851,56.85666275024414\n6852,30.019527435302734\n6853,77.21261596679688\n6854,30.534971237182617\n6855,41.285030364990234\n6856,29.575990676879883\n6857,18.541540145874023\n6858,30.69703483581543\n6859,50.17029571533203\n6860,57.15874481201172\n6861,60.530242919921875\n6862,77.62799072265625\n6863,36.30913162231445\n6864,77.75069427490234\n6865,49.14274597167969\n6866,72.65444946289062\n6867,48.944244384765625\n6868,85.05511474609375\n6869,64.8113784790039\n6870,34.047630310058594\n6871,28.483917236328125\n6872,34.653926849365234\n6873,59.24900436401367\n6874,34.37207794189453\n6875,71.34547424316406\n6876,35.44863510131836\n6877,34.767433166503906\n6878,34.70459747314453\n6879,23.034650802612305\n6880,36.253211975097656\n6881,55.93216323852539\n6882,23.465003967285156\n6883,77.94105529785156\n6884,27.012126922607422\n6885,36.726444244384766\n6886,24.25925064086914\n6887,16.671178817749023\n6888,27.948225021362305\n6889,45.765052795410156\n6890,42.69969177246094\n6891,61.703086853027344\n6892,69.09626007080078\n6893,33.67181396484375\n6894,69.55867004394531\n6895,46.73264694213867\n6896,59.533203125\n6897,46.66914749145508\n6898,76.18596649169922\n6899,65.73062896728516\n6900,35.27333450317383\n6901,31.434120178222656\n6902,36.713294982910156\n6903,59.36671447753906\n6904,36.452823638916016\n6905,72.07063293457031\n6906,35.499977111816406\n6907,37.729522705078125\n6908,37.275665283203125\n6909,24.88182830810547\n6910,37.62696838378906\n6911,56.20814514160156\n6912,29.199844360351562\n6913,77.4669189453125\n6914,28.088512420654297\n6915,39.9403076171875\n6916,29.96276092529297\n6917,18.467845916748047\n6918,31.06064796447754\n6919,49.564449310302734\n6920,57.58404541015625\n6921,64.1187744140625\n6922,71.87652587890625\n6923,36.18235397338867\n6924,73.14661407470703\n6925,50.09192657470703\n6926,70.48743438720703\n6927,50.30426025390625\n6928,79.17192077636719\n6929,66.06983947753906\n6930,35.100650787353516\n6931,30.472158432006836\n6932,37.39840316772461\n6933,59.82616424560547\n6934,36.48265838623047\n6935,72.59117889404297\n6936,35.52143096923828\n6937,36.67282485961914\n6938,37.80461502075195\n6939,24.162654876708984\n6940,38.69783401489258\n6941,55.67592239379883\n6942,28.452041625976562\n6943,78.37730407714844\n6944,27.550125122070312\n6945,38.757286071777344\n6946,29.699790954589844\n6947,17.229808807373047\n6948,31.71186065673828\n6949,48.607208251953125\n6950,56.76943588256836\n6951,64.35297393798828\n6952,75.34156036376953\n6953,37.42583465576172\n6954,77.2322998046875\n6955,50.1979866027832\n6956,71.9661865234375\n6957,50.631507873535156\n6958,83.03949737548828\n6959,65.31464385986328\n6960,36.897884368896484\n6961,31.317522048950195\n6962,36.794715881347656\n6963,58.28079605102539\n6964,37.62228775024414\n6965,72.19535827636719\n6966,37.13638687133789\n6967,37.85565948486328\n6968,37.46619415283203\n6969,24.21653175354004\n6970,37.11526870727539\n6971,55.42092514038086\n6972,30.077869415283203\n6973,77.92847442626953\n6974,30.105430603027344\n6975,39.44040298461914\n6976,30.212541580200195\n6977,18.219568252563477\n6978,30.556684494018555\n6979,47.01619338989258\n6980,57.209434509277344\n6981,63.95480728149414\n6982,67.89624786376953\n6983,31.693485260009766\n6984,67.63717651367188\n6985,47.47649002075195\n6986,67.19467163085938\n6987,47.60074234008789\n6988,77.11885833740234\n6989,64.6219253540039\n6990,37.59499740600586\n6991,30.798913955688477\n6992,38.29304504394531\n6993,58.477054595947266\n6994,38.94157409667969\n6995,71.89346313476562\n6996,38.38041687011719\n6997,37.428138732910156\n6998,39.299781799316406\n6999,23.534616470336914\n7000,39.42982482910156\n7001,55.51240539550781\n7002,31.074302673339844\n7003,77.78248596191406\n7004,31.20711898803711\n7005,40.54911804199219\n7006,31.261816024780273\n7007,17.000640869140625\n7008,32.628578186035156\n7009,49.00277328491211\n7010,58.16936111450195\n7011,62.51788330078125\n7012,76.99703216552734\n7013,34.45452117919922\n7014,77.80816650390625\n7015,48.84044647216797\n7016,74.34322357177734\n7017,48.807228088378906\n7018,82.49110412597656\n7019,65.1686782836914\n7020,35.42704772949219\n7021,31.734045028686523\n7022,35.5631103515625\n7023,59.39284896850586\n7024,36.198448181152344\n7025,71.03131866455078\n7026,36.094608306884766\n7027,37.6124382019043\n7028,36.25313949584961\n7029,25.859764099121094\n7030,36.490840911865234\n7031,56.641300201416016\n7032,28.43891143798828\n7033,76.65345764160156\n7034,28.85103988647461\n7035,40.186161041259766\n7036,28.634183883666992\n7037,19.885936737060547\n7038,29.562759399414062\n7039,48.91838073730469\n7040,54.039817810058594\n7041,61.86767578125\n7042,71.35030364990234\n7043,35.93340301513672\n7044,71.72444915771484\n7045,48.89453125\n7046,67.7153091430664\n7047,48.677330017089844\n7048,77.42709350585938\n7049,68.0352783203125\n7050,36.68601989746094\n7051,30.961524963378906\n7052,36.013336181640625\n7053,60.91898727416992\n7054,37.42450714111328\n7055,74.67984771728516\n7056,37.45955276489258\n7057,37.58087158203125\n7058,36.83113479614258\n7059,23.97286033630371\n7060,36.377017974853516\n7061,57.70014572143555\n7062,29.173240661621094\n7063,81.10149383544922\n7064,29.767906188964844\n7065,40.19069290161133\n7066,28.914520263671875\n7067,17.54853057861328\n7068,28.914995193481445\n7069,48.33494186401367\n7070,58.80793762207031\n7071,63.71561050415039\n7072,74.22551727294922\n7073,33.44554138183594\n7074,73.41303253173828\n7075,48.32342529296875\n7076,71.25150299072266\n7077,48.3289909362793\n7078,82.26506805419922\n7079,67.4752426147461\n7080,38.28594970703125\n7081,30.038911819458008\n7082,35.834014892578125\n7083,61.015140533447266\n7084,38.537906646728516\n7085,73.71937561035156\n7086,39.89983367919922\n7087,36.55464172363281\n7088,36.95029067993164\n7089,23.715402603149414\n7090,36.506595611572266\n7091,58.52908706665039\n7092,29.004661560058594\n7093,80.84577178955078\n7094,32.253787994384766\n7095,40.02813720703125\n7096,27.927562713623047\n7097,17.550939559936523\n7098,28.23362159729004\n7099,47.729827880859375\n7100,53.699893951416016\n7101,60.849002838134766\n7102,76.26087951660156\n7103,31.89547348022461\n7104,74.4270248413086\n7105,46.495792388916016\n7106,69.06725311279297\n7107,45.72029113769531\n7108,82.71785736083984\n7109,66.79829406738281\n7110,35.64335250854492\n7111,28.52337646484375\n7112,36.38798904418945\n7113,60.979164123535156\n7114,36.14716339111328\n7115,72.33455657958984\n7116,36.29523468017578\n7117,34.39859390258789\n7118,36.51753234863281\n7119,22.772287368774414\n7120,37.63196563720703\n7121,57.2241096496582\n7122,26.545873641967773\n7123,79.13987731933594\n7124,28.06509017944336\n7125,37.964115142822266\n7126,26.664798736572266\n7127,15.064251899719238\n7128,30.22645378112793\n7129,49.37648391723633\n7130,52.56643295288086\n7131,62.76746368408203\n7132,75.3526611328125\n7133,35.22078323364258\n7134,76.25160217285156\n7135,49.072078704833984\n7136,67.294189453125\n7137,49.28178787231445\n7138,87.08258056640625\n7139,65.11035919189453\n7140,36.890140533447266\n7141,29.407506942749023\n7142,37.09928512573242\n7143,58.81119918823242\n7144,37.771121978759766\n7145,71.71346282958984\n7146,37.83184814453125\n7147,35.66471481323242\n7148,37.84322738647461\n7149,22.874359130859375\n7150,38.133846282958984\n7151,55.20109939575195\n7152,29.090206146240234\n7153,78.12821960449219\n7154,30.277265548706055\n7155,38.32850646972656\n7156,29.319358825683594\n7157,16.264366149902344\n7158,30.81363296508789\n7159,46.632686614990234\n7160,55.389198303222656\n7161,61.563560485839844\n7162,75.80719757080078\n7163,33.64480972290039\n7164,76.06507110595703\n7165,47.167388916015625\n7166,70.75765991210938\n7167,47.11607360839844\n7168,83.07482147216797\n7169,64.78361511230469\n7170,35.374263763427734\n7171,31.06495475769043\n7172,35.560577392578125\n7173,59.37167739868164\n7174,36.25989532470703\n7175,70.31935119628906\n7176,35.69438934326172\n7177,36.79709243774414\n7178,36.28150177001953\n7179,24.905010223388672\n7180,36.368988037109375\n7181,56.7872428894043\n7182,28.94759178161621\n7183,76.12226104736328\n7184,28.733535766601562\n7185,40.958709716796875\n7186,28.516021728515625\n7187,18.042522430419922\n7188,30.067081451416016\n7189,51.19432067871094\n7190,56.660133361816406\n7191,61.08127212524414\n7192,74.11914825439453\n7193,35.84183883666992\n7194,74.72276306152344\n7195,49.61556625366211\n7196,70.26850128173828\n7197,49.54547119140625\n7198,83.22856903076172\n7199,66.5457534790039\n7200,32.138084411621094\n7201,27.314245223999023\n7202,34.13963317871094\n7203,60.70518493652344\n7204,32.6387825012207\n7205,71.9262924194336\n7206,32.5890998840332\n7207,33.06568908691406\n7208,33.721622467041016\n7209,21.798770904541016\n7210,35.426822662353516\n7211,56.34819030761719\n7212,22.421466827392578\n7213,78.68133544921875\n7214,23.634862899780273\n7215,36.22664260864258\n7216,23.254579544067383\n7217,13.79190444946289\n7218,27.622066497802734\n7219,48.56037139892578\n7220,48.75254440307617\n7221,62.72721862792969\n7222,73.2428207397461\n7223,36.13465118408203\n7224,74.86515045166016\n7225,48.978355407714844\n7226,64.2688980102539\n7227,49.72048568725586\n7228,85.69561767578125\n7229,65.49872589111328\n7230,36.845008850097656\n7231,30.523479461669922\n7232,35.72333526611328\n7233,59.933162689208984\n7234,37.283573150634766\n7235,71.1964111328125\n7236,37.83821105957031\n7237,36.46422576904297\n7238,36.539955139160156\n7239,24.62824058532715\n7240,36.5489616394043\n7241,57.59305953979492\n7242,28.858091354370117\n7243,77.61038970947266\n7244,30.68737030029297\n7245,40.249755859375\n7246,28.059345245361328\n7247,18.15917205810547\n7248,29.41533088684082\n7249,49.543914794921875\n7250,53.355777740478516\n7251,60.59519958496094\n7252,73.17643737792969\n7253,33.88705825805664\n7254,72.59637451171875\n7255,47.97135543823242\n7256,67.1200942993164\n7257,47.54178237915039\n7258,81.20161437988281\n7259,66.84090423583984\n7260,36.48740005493164\n7261,29.434741973876953\n7262,37.89769744873047\n7263,60.43204879760742\n7264,37.41368865966797\n7265,73.34931182861328\n7266,37.102264404296875\n7267,35.96709442138672\n7268,38.32972717285156\n7269,22.92979621887207\n7270,39.33570098876953\n7271,56.75816345214844\n7272,28.445011138916016\n7273,79.64838409423828\n7274,28.96676254272461\n7275,38.55210876464844\n7276,29.163549423217773\n7277,15.72640609741211\n7278,32.094722747802734\n7279,49.10914993286133\n7280,54.78525161743164\n7281,64.8232650756836\n7282,74.86494445800781\n7283,35.241737365722656\n7284,76.34780883789062\n7285,49.7850456237793\n7286,69.77798461914062\n7287,50.06227111816406\n7288,83.85398864746094\n7289,69.50756072998047\n7290,38.926570892333984\n7291,28.45333480834961\n7292,37.061012268066406\n7293,62.13645553588867\n7294,39.90420913696289\n7295,76.76001739501953\n7296,40.41364288330078\n7297,35.54492950439453\n7298,38.64692687988281\n7299,20.829965591430664\n7300,37.85910415649414\n7301,58.28108215332031\n7302,30.503429412841797\n7303,84.56519317626953\n7304,32.154518127441406\n7305,40.00959777832031\n7306,29.399261474609375\n7307,13.316338539123535\n7308,29.290634155273438\n7309,48.14491653442383\n7310,62.86121368408203\n7311,62.02711486816406\n7312,88.11991882324219\n7313,32.546714782714844\n7314,86.69144439697266\n7315,47.34812545776367\n7316,81.79237365722656\n7317,46.915828704833984\n7318,95.69660186767578\n7319,65.84031677246094\n7320,37.15814971923828\n7321,30.634599685668945\n7322,38.307891845703125\n7323,59.38368606567383\n7324,38.261070251464844\n7325,72.30438995361328\n7326,37.51936340332031\n7327,37.21795654296875\n7328,38.97141647338867\n7329,23.847219467163086\n7330,39.44727325439453\n7331,56.602012634277344\n7332,30.634958267211914\n7333,77.98712158203125\n7334,30.022857666015625\n7335,39.85869598388672\n7336,31.119890213012695\n7337,17.23897933959961\n7338,32.73743438720703\n7339,50.0832405090332\n7340,57.87078094482422\n7341,64.26409912109375\n7342,73.35452270507812\n7343,35.085941314697266\n7344,74.62773132324219\n7345,50.00723648071289\n7346,71.26664733886719\n7347,50.24161911010742\n7348,80.48556518554688\n7349,67.26339721679688\n7350,39.35087966918945\n7351,28.94525718688965\n7352,36.31501007080078\n7353,60.83245849609375\n7354,39.792728424072266\n7355,73.62812805175781\n7356,40.842655181884766\n7357,35.159358978271484\n7358,37.82844161987305\n7359,21.948495864868164\n7360,36.80317306518555\n7361,57.62970733642578\n7362,30.65654945373535\n7363,81.41302490234375\n7364,33.52688980102539\n7365,40.235931396484375\n7366,28.85184669494629\n7367,14.687582969665527\n7368,28.84770965576172\n7369,47.75615310668945\n7370,59.785404205322266\n7371,58.992191314697266\n7372,83.95991516113281\n7373,31.2304744720459\n7374,81.645751953125\n7375,45.73604965209961\n7376,76.30268859863281\n7377,45.08083724975586\n7378,92.90052032470703\n7379,66.23941040039062\n7380,34.860137939453125\n7381,31.352529525756836\n7382,33.98550033569336\n7383,59.860939025878906\n7384,35.583824157714844\n7385,71.71306610107422\n7386,35.207427978515625\n7387,37.149085998535156\n7388,34.84074020385742\n7389,25.0361385345459\n7390,34.0534782409668\n7391,57.0518798828125\n7392,28.714994430541992\n7393,77.61540985107422\n7394,28.167375564575195\n7395,40.8062629699707\n7396,28.013856887817383\n7397,18.688621520996094\n7398,27.22416877746582\n7399,49.48679733276367\n7400,59.96681594848633\n7401,60.58118438720703\n7402,74.71072387695312\n7403,34.87027359008789\n7404,73.91365051269531\n7405,48.25876998901367\n7406,72.2210922241211\n7407,48.14531707763672\n7408,82.84056091308594\n7409,66.91890716552734\n7410,36.02741622924805\n7411,29.7147216796875\n7412,34.7626953125\n7413,60.39789962768555\n7414,36.59604263305664\n7415,74.09300231933594\n7416,37.4658088684082\n7417,36.64332580566406\n7418,35.75898361206055\n7419,22.870643615722656\n7420,35.81302261352539\n7421,57.551570892333984\n7422,26.88255500793457\n7423,80.95549011230469\n7424,29.48033332824707\n7425,39.605552673339844\n7426,26.428144454956055\n7427,16.518659591674805\n7428,27.649587631225586\n7429,47.60380172729492\n7430,51.58305358886719\n7431,62.338600158691406\n7432,74.2076416015625\n7433,32.151023864746094\n7434,73.2883071899414\n7435,47.13384246826172\n7436,67.88347625732422\n7437,46.65585708618164\n7438,80.76771545410156\n7439,66.37641143798828\n7440,38.83647537231445\n7441,29.508432388305664\n7442,36.97000503540039\n7443,59.640899658203125\n7444,39.6376838684082\n7445,73.55211639404297\n7446,40.14970397949219\n7447,36.41281509399414\n7448,38.43117141723633\n7449,21.88335609436035\n7450,37.7163200378418\n7451,57.048553466796875\n7452,30.94015884399414\n7453,80.5234375\n7454,32.878780364990234\n7455,40.62459182739258\n7456,29.783279418945312\n7457,15.16557502746582\n7458,30.10480499267578\n7459,48.42470169067383\n7460,59.020729064941406\n7461,60.90343475341797\n7462,80.04148864746094\n7463,31.105854034423828\n7464,78.78761291503906\n7465,46.72792434692383\n7466,75.30677795410156\n7467,46.23686981201172\n7468,86.4645767211914\n7469,63.890472412109375\n7470,35.27729797363281\n7471,31.17673683166504\n7472,33.86983871459961\n7473,58.54131317138672\n7474,35.58885955810547\n7475,68.75980377197266\n7476,36.00379180908203\n7477,36.16012954711914\n7478,34.553306579589844\n7479,25.954795837402344\n7480,34.114070892333984\n7481,55.750335693359375\n7482,28.0084228515625\n7483,74.7819595336914\n7484,29.326627731323242\n7485,39.406944274902344\n7486,27.299640655517578\n7487,20.055572509765625\n7488,27.338497161865234\n7489,47.03321838378906\n7490,53.644657135009766\n7491,57.99705123901367\n7492,70.74067687988281\n7493,34.339237213134766\n7494,69.5790786743164\n7495,46.27619552612305\n7496,65.45403289794922\n7497,45.87228012084961\n7498,78.76689910888672\n7499,64.87152862548828\n7500,36.672245025634766\n7501,30.085851669311523\n7502,35.939762115478516\n7503,59.262081146240234\n7504,37.04667282104492\n7505,70.64320373535156\n7506,37.60551834106445\n7507,36.23173522949219\n7508,36.52590560913086\n7509,24.062589645385742\n7510,36.8841667175293\n7511,57.291019439697266\n7512,28.221813201904297\n7513,76.92388153076172\n7514,30.357786178588867\n7515,39.8836669921875\n7516,27.59467315673828\n7517,17.67171287536621\n7518,29.73796844482422\n7519,49.86174392700195\n7520,51.28669738769531\n7521,60.74393081665039\n7522,71.51409912109375\n7523,33.298587799072266\n7524,71.30895233154297\n7525,47.96109390258789\n7526,65.35570526123047\n7527,47.682472229003906\n7528,79.22682189941406\n7529,68.76860809326172\n7530,35.98734664916992\n7531,27.838823318481445\n7532,36.0888786315918\n7533,60.451839447021484\n7534,37.19258499145508\n7535,77.01410675048828\n7536,37.03834533691406\n7537,35.857322692871094\n7538,37.15607452392578\n7539,19.60344696044922\n7540,37.03153610229492\n7541,56.667236328125\n7542,27.859296798706055\n7543,83.93338775634766\n7544,28.395755767822266\n7545,37.90509796142578\n7546,28.140323638916016\n7547,12.591361045837402\n7548,28.8001651763916\n7549,46.54837417602539\n7550,58.664772033691406\n7551,66.01475524902344\n7552,76.46269226074219\n7553,30.510513305664062\n7554,76.3975830078125\n7555,47.49809646606445\n7556,73.9278793334961\n7557,47.55104064941406\n7558,84.28062438964844\n7559,66.7087173461914\n7560,38.203739166259766\n7561,29.8819580078125\n7562,37.91067886352539\n7563,60.28935623168945\n7564,39.005496978759766\n7565,73.46540069580078\n7566,39.18682861328125\n7567,36.41919708251953\n7568,38.80608367919922\n7569,22.888565063476562\n7570,39.063926696777344\n7571,56.985172271728516\n7572,29.75179100036621\n7573,80.22579956054688\n7574,31.49757957458496\n7575,39.9266471862793\n7576,29.467695236206055\n7577,15.787121772766113\n7578,31.60108757019043\n7579,48.92256164550781\n7580,56.31877136230469\n7581,62.838531494140625\n7582,78.33523559570312\n7583,33.51463317871094\n7584,78.46244049072266\n7585,48.39426040649414\n7586,72.44338989257812\n7587,48.2868766784668\n7588,86.8348617553711\n7589,68.63436126708984\n7590,36.84358596801758\n7591,30.8758602142334\n7592,37.208457946777344\n7593,60.88449478149414\n7594,38.13126754760742\n7595,76.40351867675781\n7596,37.65584182739258\n7597,37.71088790893555\n7598,38.26813888549805\n7599,23.447858810424805\n7600,37.908687591552734\n7601,55.75333786010742\n7602,29.615966796875\n7603,82.98062896728516\n7604,29.469018936157227\n7605,39.00571060180664\n7606,30.4376277923584\n7607,16.84015655517578\n7608,29.961084365844727\n7609,45.15351867675781\n7610,61.638648986816406\n7611,65.12054443359375\n7612,80.22596740722656\n7613,34.758636474609375\n7614,80.10698699951172\n7615,48.05326461791992\n7616,77.63998413085938\n7617,48.12973403930664\n7618,87.25627899169922\n7619,65.46715545654297\n7620,39.3703727722168\n7621,30.36752700805664\n7622,40.97890853881836\n7623,59.11534118652344\n7624,40.55857849121094\n7625,73.38399505615234\n7626,40.471519470214844\n7627,37.44060134887695\n7628,41.4366569519043\n7629,22.961891174316406\n7630,42.5430793762207\n7631,55.79741287231445\n7632,30.80909538269043\n7633,79.603271484375\n7634,32.56248474121094\n7635,39.821044921875\n7636,31.668270111083984\n7637,16.357831954956055\n7638,34.94904708862305\n7639,48.55415725708008\n7640,54.24107360839844\n7641,64.42765808105469\n7642,77.8161392211914\n7643,34.38351821899414\n7644,79.1302261352539\n7645,49.14052200317383\n7646,72.6113510131836\n7647,49.472312927246094\n7648,82.76136779785156\n7649,64.69143676757812\n7650,35.75371551513672\n7651,30.203784942626953\n7652,36.15614318847656\n7653,57.52519989013672\n7654,36.86794662475586\n7655,71.55760192871094\n7656,36.0568733215332\n7657,36.73445129394531\n7658,37.05825424194336\n7659,23.030305862426758\n7660,36.61109924316406\n7661,54.15306091308594\n7662,29.766551971435547\n7663,77.2257080078125\n7664,28.79460334777832\n7665,38.31544876098633\n7666,30.236860275268555\n7667,16.91792869567871\n7668,29.876882553100586\n7669,45.986236572265625\n7670,59.40312576293945\n7671,62.769535064697266\n7672,71.14144134521484\n7673,32.43021774291992\n7674,71.31184387207031\n7675,47.00117492675781\n7676,71.04047393798828\n7677,47.158626556396484\n7678,78.80467224121094\n7679,66.2747573852539\n7680,37.127288818359375\n7681,30.75670623779297\n7682,37.58745574951172\n7683,60.11284255981445\n7684,37.96805953979492\n7685,72.26065063476562\n7686,37.569156646728516\n7687,37.091033935546875\n7688,38.2703971862793\n7689,24.37322235107422\n7690,38.675880432128906\n7691,57.497352600097656\n7692,30.115612030029297\n7693,78.15010833740234\n7694,30.167024612426758\n7695,40.20779800415039\n7696,30.176137924194336\n7697,17.647323608398438\n7698,31.968780517578125\n7699,50.705928802490234\n7700,56.73048400878906\n7701,63.77762985229492\n7702,73.04546356201172\n7703,35.03636932373047\n7704,73.90158081054688\n7705,50.00074768066406\n7706,69.68172454833984\n7707,50.00305938720703\n7708,81.36807250976562\n7709,67.13765716552734\n7710,34.74166488647461\n7711,29.637758255004883\n7712,35.400665283203125\n7713,60.900394439697266\n7714,35.32396697998047\n7715,74.03203582763672\n7716,35.791439056396484\n7717,36.48617935180664\n7718,35.60411071777344\n7719,23.216798782348633\n7720,36.79151916503906\n7721,57.85939025878906\n7722,24.968889236450195\n7723,80.53850555419922\n7724,27.383769989013672\n7725,39.030696868896484\n7726,25.370229721069336\n7727,16.42220687866211\n7728,28.848085403442383\n7729,49.11270523071289\n7730,48.24664306640625\n7731,64.64144897460938\n7732,70.72982025146484\n7733,33.8433952331543\n7734,71.30918884277344\n7735,49.08222961425781\n7736,63.74495315551758\n7737,49.10844802856445\n7738,79.28152465820312\n7739,68.6744155883789\n7740,36.15391540527344\n7741,29.13165283203125\n7742,36.82699203491211\n7743,61.35042953491211\n7744,36.82954788208008\n7745,75.9027099609375\n7746,36.638031005859375\n7747,36.496612548828125\n7748,37.060359954833984\n7749,21.734573364257812\n7750,37.77402877807617\n7751,58.171260833740234\n7752,27.088359832763672\n7753,82.56876373291016\n7754,28.251291275024414\n7755,39.09833908081055\n7756,27.23944664001465\n7757,14.339813232421875\n7758,30.216642379760742\n7759,49.80196762084961\n7760,54.663028717041016\n7761,67.0508041381836\n7762,71.57415771484375\n7763,31.87847900390625\n7764,72.05390930175781\n7765,49.5350227355957\n7766,67.3280258178711\n7767,49.98739242553711\n7768,83.45208740234375\n7769,66.92215728759766\n7770,35.10128402709961\n7771,31.880346298217773\n7772,35.951839447021484\n7773,60.53730773925781\n7774,36.217613220214844\n7775,73.53507232666016\n7776,35.5543212890625\n7777,38.46028518676758\n7778,36.67753219604492\n7779,25.164854049682617\n7780,36.91154479980469\n7781,57.67543411254883\n7782,28.611446380615234\n7783,79.13983917236328\n7784,27.989604949951172\n7785,41.00374984741211\n7786,29.03447151184082\n7787,18.719825744628906\n7788,30.070114135742188\n7789,50.65941619873047\n7790,56.769256591796875\n7791,64.88188934326172\n7792,72.04922485351562\n7793,36.05091857910156\n7794,72.89295196533203\n7795,50.65215301513672\n7796,70.17030334472656\n7797,50.624664306640625\n7798,79.31681823730469\n7799,67.50466918945312\n7800,32.63652038574219\n7801,27.571823120117188\n7802,32.152217864990234\n7803,59.98904800415039\n7804,33.044193267822266\n7805,73.75104522705078\n7806,33.310646057128906\n7807,34.374080657958984\n7808,32.387596130371094\n7809,20.607227325439453\n7810,32.19561004638672\n7811,56.71482849121094\n7812,23.946287155151367\n7813,80.56145477294922\n7814,24.81075096130371\n7815,37.27231979370117\n7816,23.669574737548828\n7817,13.796245574951172\n7818,24.037660598754883\n7819,46.98646926879883\n7820,54.39397048950195\n7821,62.112911224365234\n7822,71.10112762451172\n7823,31.00707244873047\n7824,69.9901351928711\n7825,46.345458984375\n7826,66.66191101074219\n7827,46.73807907104492\n7828,80.94424438476562\n7829,65.93003845214844\n7830,34.78481674194336\n7831,28.214599609375\n7832,35.1985969543457\n7833,59.281375885009766\n7834,35.6322135925293\n7835,73.32968139648438\n7836,35.99937438964844\n7837,35.64735412597656\n7838,35.79860305786133\n7839,21.218490600585938\n7840,36.69527816772461\n7841,56.68815994262695\n7842,25.73154640197754\n7843,79.78170776367188\n7844,27.73296356201172\n7845,38.28314971923828\n7846,25.968917846679688\n7847,14.590485572814941\n7848,28.76197624206543\n7849,48.27088928222656\n7850,49.66582489013672\n7851,63.67795181274414\n7852,71.21027374267578\n7853,31.77550506591797\n7854,71.7586898803711\n7855,47.87594985961914\n7856,65.80105590820312\n7857,47.751129150390625\n7858,77.92195892333984\n7859,66.6015853881836\n7860,37.8540153503418\n7861,28.16525650024414\n7862,39.089046478271484\n7863,60.187259674072266\n7864,38.67502975463867\n7865,73.124755859375\n7866,38.62775421142578\n7867,34.71683120727539\n7868,39.458133697509766\n7869,21.556564331054688\n7870,40.71584701538086\n7871,56.25787353515625\n7872,28.871835708618164\n7873,79.9105453491211\n7874,30.384967803955078\n7875,37.76819610595703\n7876,29.366697311401367\n7877,13.799004554748535\n7878,33.35145568847656\n7879,48.59248733520508\n7880,54.59152603149414\n7881,64.17996978759766\n7882,77.39409637451172\n7883,34.057411193847656\n7884,78.84019470214844\n7885,48.98528289794922\n7886,70.43216705322266\n7887,49.3206901550293\n7888,87.97216796875\n7889,66.92098236083984\n7890,38.56217575073242\n7891,28.16167449951172\n7892,39.50971603393555\n7893,59.2332649230957\n7894,40.13710403442383\n7895,75.3618392944336\n7896,39.51497268676758\n7897,35.91220474243164\n7898,40.613059997558594\n7899,19.684120178222656\n7900,40.739402770996094\n7901,55.399993896484375\n7902,31.218162536621094\n7903,82.0722427368164\n7904,31.248985290527344\n7905,38.83211898803711\n7906,31.585243225097656\n7907,12.484467506408691\n7908,32.935787200927734\n7909,47.607521057128906\n7910,61.8756103515625\n7911,64.58087158203125\n7912,82.73575592041016\n7913,32.262840270996094\n7914,83.48851013183594\n7915,48.17255783081055\n7916,80.0341796875\n7917,48.514862060546875\n7918,88.77200317382812\n7919,64.17839813232422\n7920,37.560096740722656\n7921,25.09938621520996\n7922,40.31132507324219\n7923,57.341609954833984\n7924,38.47914123535156\n7925,71.15874481201172\n7926,38.5433235168457\n7927,31.807586669921875\n7928,40.19765853881836\n7929,18.464927673339844\n7930,42.40080261230469\n7931,52.4152946472168\n7932,27.301795959472656\n7933,78.03624725341797\n7934,29.460803985595703\n7935,33.80654525756836\n7936,28.862825393676758\n7937,10.699373245239258\n7938,34.29807662963867\n7939,44.21883773803711\n7940,50.491085052490234\n7941,62.55066680908203\n7942,77.94517517089844\n7943,32.69052505493164\n7944,80.36791229248047\n7945,46.29484176635742\n7946,69.03614044189453\n7947,47.40574264526367\n7948,87.12535095214844\n7949,66.12018585205078\n7950,36.439388275146484\n7951,30.939247131347656\n7952,36.05939483642578\n7953,60.208396911621094\n7954,37.15925216674805\n7955,72.5439682006836\n7956,37.36977005004883\n7957,37.36256408691406\n7958,36.81806564331055\n7959,24.54236602783203\n7960,37.00295639038086\n7961,57.73600769042969\n7962,28.591867446899414\n7963,78.76483154296875\n7964,29.941490173339844\n7965,40.570919036865234\n7966,28.252748489379883\n7967,18.07036018371582\n7968,29.79595375061035\n7969,49.887447357177734\n7970,53.8100471496582\n7971,62.590763092041016\n7972,72.74037170410156\n7973,34.16281509399414\n7974,72.62113189697266\n7975,48.89900588989258\n7976,67.95634460449219\n7977,48.60774230957031\n7978,80.32018280029297\n7979,65.77713775634766\n7980,38.79596710205078\n7981,28.26714515686035\n7982,36.399436950683594\n7983,59.36830520629883\n7984,39.51070022583008\n7985,72.22838592529297\n7986,40.38315200805664\n7987,34.513545989990234\n7988,37.90376281738281\n7989,21.463884353637695\n7990,37.015254974365234\n7991,56.0272102355957\n7992,30.540245056152344\n7993,79.70061492919922\n7994,33.014156341552734\n7995,39.16092300415039\n7996,29.1654109954834\n7997,14.571246147155762\n7998,28.948312759399414\n7999,46.30830764770508\n8000,59.46281814575195\n8001,57.671138763427734\n8002,84.53325653076172\n8003,31.540502548217773\n8004,82.653076171875\n8005,44.891395568847656\n8006,77.34606170654297\n8007,44.307373046875\n8008,91.12837982177734\n8009,66.64273071289062\n8010,37.90419006347656\n8011,28.879871368408203\n8012,36.47517013549805\n8013,60.81564712524414\n8014,38.116050720214844\n8015,72.11150360107422\n8016,39.1988410949707\n8017,34.64118576049805\n8018,37.11418151855469\n8019,23.06105613708496\n8020,37.29082107543945\n8021,57.48705291748047\n8022,28.358280181884766\n8023,79.4815444946289\n8024,31.51068878173828\n8025,38.84313201904297\n8026,27.479473114013672\n8027,15.889695167541504\n8028,29.42171859741211\n8029,48.04757308959961\n8030,53.44184494018555\n8031,59.786014556884766\n8032,78.45543670654297\n8033,33.355682373046875\n8034,77.41766357421875\n8035,46.805660247802734\n8036,69.04643249511719\n8037,46.52238082885742\n8038,88.14807891845703\n8039,64.0049057006836\n8040,36.34897994995117\n8041,26.709209442138672\n8042,39.25904846191406\n8043,57.204105377197266\n8044,37.33475875854492\n8045,70.91885375976562\n8046,37.141849517822266\n8047,33.38199996948242\n8048,39.07401657104492\n8049,20.09473991394043\n8050,41.02788543701172\n8051,52.85325622558594\n8052,27.017375946044922\n8053,77.18236541748047\n8054,28.38311004638672\n8055,34.929229736328125\n8056,28.711977005004883\n8057,13.026217460632324\n8058,33.13801193237305\n8059,45.05527114868164\n8060,50.33969497680664\n8061,62.842411041259766\n8062,74.43714904785156\n8063,33.62904739379883\n8064,76.77745819091797\n8065,47.0329704284668\n8066,67.61910247802734\n8067,48.04523468017578\n8068,81.65966033935547\n8069,65.54647064208984\n8070,37.4566535949707\n8071,23.618148803710938\n8072,38.61174774169922\n8073,56.8660774230957\n8074,39.18096923828125\n8075,74.49915313720703\n8076,38.24472427368164\n8077,32.14997100830078\n8078,39.856040954589844\n8079,14.360368728637695\n8080,39.93722152709961\n8081,52.98628616333008\n8082,30.29192352294922\n8083,81.4397964477539\n8084,29.30539894104004\n8085,35.23153305053711\n8086,30.664710998535156\n8087,6.707756996154785\n8088,31.840801239013672\n8089,45.22132873535156\n8090,63.53300094604492\n8091,63.56985092163086\n8092,83.71837615966797\n8093,28.28312110900879\n8094,84.76667785644531\n8095,45.79499816894531\n8096,82.11915588378906\n8097,46.37234878540039\n8098,90.39717864990234\n8099,66.50968933105469\n8100,33.36650848388672\n8101,29.188669204711914\n8102,33.64147186279297\n8103,59.67204284667969\n8104,34.36057662963867\n8105,73.69266510009766\n8106,34.3379020690918\n8107,35.75214385986328\n8108,34.40362548828125\n8109,22.310672760009766\n8110,34.51553726196289\n8111,55.34686279296875\n8112,25.32152557373047\n8113,80.30501556396484\n8114,26.159465789794922\n8115,38.042057037353516\n8116,25.806297302246094\n8117,15.603845596313477\n8118,26.50356674194336\n8119,45.71834945678711\n8120,54.35552978515625\n8121,62.244606018066406\n8122,75.81246185302734\n8123,33.89703369140625\n8124,75.75882720947266\n8125,47.01759338378906\n8126,70.974365234375\n8127,46.965328216552734\n8128,82.84252166748047\n8129,65.64891815185547\n8130,39.516841888427734\n8131,28.48482322692871\n8132,34.946983337402344\n8133,58.56846618652344\n8134,39.534576416015625\n8135,71.68555450439453\n8136,40.58858871459961\n8137,35.40000534057617\n8138,36.732234954833984\n8139,20.88731575012207\n8140,34.8354377746582\n8141,57.944698333740234\n8142,31.823360443115234\n8143,78.68049621582031\n8144,34.10149383544922\n8145,40.757110595703125\n8146,28.993854522705078\n8147,14.62790298461914\n8148,27.68753433227539\n8149,49.20479965209961\n8150,60.35187530517578\n8151,58.37342071533203\n8152,75.20013427734375\n8153,26.28736686706543\n8154,71.95105743408203\n8155,44.48539352416992\n8156,71.88272094726562\n8157,43.6760139465332\n8158,83.59919738769531\n8159,67.2511978149414\n8160,38.7424430847168\n8161,28.978046417236328\n8162,38.56761169433594\n8163,60.32757568359375\n8164,39.429649353027344\n8165,75.0068588256836\n8166,40.36684036254883\n8167,35.9735107421875\n8168,39.27704620361328\n8169,21.812685012817383\n8170,39.95533752441406\n8171,56.28139114379883\n8172,28.50250244140625\n8173,82.27864837646484\n8174,31.926639556884766\n8175,38.329463958740234\n8176,28.85152816772461\n8177,15.080524444580078\n8178,31.27898406982422\n8179,45.651222229003906\n8180,52.39253234863281\n8181,63.18932342529297\n8182,79.5473861694336\n8183,32.520084381103516\n8184,79.28968811035156\n8185,46.754032135009766\n8186,71.40400695800781\n8187,46.76235580444336\n8188,85.61744689941406\n8189,65.82518768310547\n8190,35.64856719970703\n8191,30.98519515991211\n8192,35.654972076416016\n8193,59.06294631958008\n8194,36.61408615112305\n8195,72.72055053710938\n8196,36.11671829223633\n8197,37.41135025024414\n8198,36.558345794677734\n8199,23.99228286743164\n8200,36.22419357299805\n8201,55.65262222290039\n8202,28.999011993408203\n8203,78.68677520751953\n8204,28.770078659057617\n8205,39.45212936401367\n8206,29.212736129760742\n8207,17.669790267944336\n8208,29.283628463745117\n8209,47.124473571777344\n8210,57.836585998535156\n8211,63.23331069946289\n8212,72.10528564453125\n8213,33.439571380615234\n8214,72.02482604980469\n8215,47.86344909667969\n8216,70.34615325927734\n8217,47.851219177246094\n8218,80.31452178955078\n8219,66.53223419189453\n8220,38.66341018676758\n8221,28.98788070678711\n8222,37.1103630065918\n8223,60.163944244384766\n8224,39.08125305175781\n8225,72.79552459716797\n8226,39.84391403198242\n8227,35.337772369384766\n8228,38.08845520019531\n8229,22.492431640625\n8230,37.9827880859375\n8231,57.03921127319336\n8232,29.84433937072754\n8233,79.95085144042969\n8234,32.38442611694336\n8235,38.98725891113281\n8236,28.984704971313477\n8237,15.556459426879883\n8238,30.45803451538086\n8239,47.53783416748047\n8240,55.678409576416016\n8241,61.24797058105469\n8242,77.01667785644531\n8243,31.70669937133789\n8244,76.05947875976562\n8245,46.666351318359375\n8246,70.11299896240234\n8247,46.27793884277344\n8248,86.65596771240234\n8249,68.12083435058594\n8250,39.19587707519531\n8251,28.258493423461914\n8252,37.193321228027344\n8253,60.86216735839844\n8254,40.124881744384766\n8255,75.20275115966797\n8256,40.68033218383789\n8257,35.039398193359375\n8258,38.765235900878906\n8259,20.8205623626709\n8260,37.84959030151367\n8261,56.86491012573242\n8262,30.949485778808594\n8263,82.91111755371094\n8264,32.75263595581055\n8265,39.28781509399414\n8266,29.86365509033203\n8267,13.556139945983887\n8268,29.499452590942383\n8269,46.53920364379883\n8270,62.74125671386719\n8271,60.51480484008789\n8272,87.38502502441406\n8273,31.906435012817383\n8274,85.73941802978516\n8275,46.042083740234375\n8276,81.0924301147461\n8277,45.63364791870117\n8278,94.7425537109375\n8279,67.18091583251953\n8280,38.669124603271484\n8281,27.5722713470459\n8282,38.010379791259766\n8283,60.307334899902344\n8284,39.28633499145508\n8285,73.78619384765625\n8286,39.67487335205078\n8287,34.325401306152344\n8288,38.88010025024414\n8289,20.556482315063477\n8290,39.151676177978516\n8291,56.719268798828125\n8292,29.721174240112305\n8293,81.15623474121094\n8294,31.70603370666504\n8295,38.03437042236328\n8296,29.183612823486328\n8297,12.906981468200684\n8298,31.56235122680664\n8299,47.78025436401367\n8300,57.20737075805664\n8301,62.78830337524414\n8302,78.94853973388672\n8303,31.3768367767334\n8304,78.76534271240234\n8305,47.217857360839844\n8306,72.18867492675781\n8307,47.271644592285156\n8308,90.05431365966797\n8309,69.2570571899414\n8310,33.93964385986328\n8311,30.021581649780273\n8312,35.37748336791992\n8313,63.15412521362305\n8314,34.4229850769043\n8315,75.19873046875\n8316,34.438358306884766\n8317,36.183921813964844\n8318,35.11299133300781\n8319,24.06650161743164\n8320,36.48444747924805\n8321,59.317691802978516\n8322,24.294273376464844\n8323,81.870361328125\n8324,25.56436538696289\n8325,39.21570587158203\n8326,24.86795997619629\n8327,16.36689567565918\n8328,28.648115158081055\n8329,51.089237213134766\n8330,50.88442611694336\n8331,65.87423706054688\n8332,73.19232177734375\n8333,36.95745086669922\n8334,74.25384521484375\n8335,51.1596794128418\n8336,65.44796752929688\n8337,51.740699768066406\n8338,85.165283203125\n8339,67.24445343017578\n8340,35.92893981933594\n8341,26.933168411254883\n8342,36.22829818725586\n8343,59.25602722167969\n8344,37.116790771484375\n8345,75.52220153808594\n8346,36.85003662109375\n8347,34.6043586730957\n8348,37.32072830200195\n8349,18.565475463867188\n8350,37.33091354370117\n8351,55.01737976074219\n8352,27.7968807220459\n8353,82.5953369140625\n8354,28.27780532836914\n8355,37.217140197753906\n8356,28.103113174438477\n8357,11.196640014648438\n8358,29.165843963623047\n8359,45.67227554321289\n8360,58.574554443359375\n8361,64.05413055419922\n8362,79.57245635986328\n8363,30.720260620117188\n8364,79.77793884277344\n8365,46.680728912353516\n8366,75.89041900634766\n8367,46.92698287963867\n8368,87.33261108398438\n8369,65.99286651611328\n8370,38.744136810302734\n8371,27.435375213623047\n8372,38.108421325683594\n8373,59.265586853027344\n8374,39.742252349853516\n8375,73.21806335449219\n8376,40.187286376953125\n8377,34.38387680053711\n8378,39.287437438964844\n8379,19.930320739746094\n8380,39.397220611572266\n8381,55.835662841796875\n8382,29.977781295776367\n8383,80.50991821289062\n8384,32.18189239501953\n8385,38.73025894165039\n8386,29.353044509887695\n8387,12.554483413696289\n8388,31.265281677246094\n8389,47.65609359741211\n8390,57.74949264526367\n8391,60.5176887512207\n8392,84.22596740722656\n8393,31.7884578704834\n8394,84.01824951171875\n8395,46.53459548950195\n8396,77.27732849121094\n8397,46.39809799194336\n8398,90.71730041503906\n8399,69.15367889404297\n8400,36.69370651245117\n8401,31.003265380859375\n8402,32.93016052246094\n8403,63.481719970703125\n8404,36.296424865722656\n8405,74.82840728759766\n8406,38.66439437866211\n8407,36.93523025512695\n8408,33.717594146728516\n8409,25.56754493713379\n8410,33.19579315185547\n8411,61.024078369140625\n8412,25.611480712890625\n8413,82.60602569580078\n8414,30.83264923095703\n8415,41.06830596923828\n8416,23.830310821533203\n8417,19.347436904907227\n8418,24.330568313598633\n8419,48.48743438720703\n8420,48.608585357666016\n8421,60.070838928222656\n8422,74.85197448730469\n8423,32.67994689941406\n8424,71.52716827392578\n8425,46.51877212524414\n8426,63.912506103515625\n8427,45.38347625732422\n8428,83.2148208618164\n8429,67.18008422851562\n8430,38.184268951416016\n8431,30.020191192626953\n8432,38.451377868652344\n8433,60.280357360839844\n8434,39.14711380004883\n8435,73.25728607177734\n8436,38.49939727783203\n8437,36.11408233642578\n8438,39.17407989501953\n8439,23.3286075592041\n8440,39.0760498046875\n8441,56.25012969970703\n8442,31.342565536499023\n8443,79.72502899169922\n8444,30.991344451904297\n8445,39.014060974121094\n8446,31.366548538208008\n8447,16.043222427368164\n8448,32.31847381591797\n8449,48.12171936035156\n8450,62.39676284790039\n8451,63.750335693359375\n8452,77.4427490234375\n8453,34.04182815551758\n8454,77.5994873046875\n8455,48.612815856933594\n8456,74.27436065673828\n8457,48.86143493652344\n8458,88.8409423828125\n8459,63.73120880126953\n8460,35.68248748779297\n8461,30.592912673950195\n8462,34.323219299316406\n8463,58.1633415222168\n8464,36.00450134277344\n8465,68.70489501953125\n8466,36.37430953979492\n8467,35.821876525878906\n8468,34.99736022949219\n8469,25.17420768737793\n8470,34.54774856567383\n8471,55.586151123046875\n8472,28.504188537597656\n8473,74.74553680419922\n8474,29.712783813476562\n8475,39.036312103271484\n8476,27.7654972076416\n8477,19.2500057220459\n8478,27.86130714416504\n8479,47.02850341796875\n8480,54.141143798828125\n8481,58.2529182434082\n8482,69.9662857055664\n8483,33.34712219238281\n8484,68.83885192871094\n8485,46.04855728149414\n8486,65.23934173583984\n8487,45.740623474121094\n8488,78.21746826171875\n8489,66.41866302490234\n8490,35.90428924560547\n8491,30.95736312866211\n8492,37.898719787597656\n8493,60.13732147216797\n8494,37.172569274902344\n8495,72.62263488769531\n8496,36.17197036743164\n8497,36.706825256347656\n8498,38.26638412475586\n8499,24.85909652709961\n8500,38.85576248168945\n8501,55.41411209106445\n8502,29.332992553710938\n8503,78.5183334350586\n8504,28.323360443115234\n8505,38.66079330444336\n8506,30.506668090820312\n8507,17.842819213867188\n8508,31.93511199951172\n8509,47.64988327026367\n8510,59.17753982543945\n8511,63.97138595581055\n8512,76.89549255371094\n8513,37.75682830810547\n8514,78.29122161865234\n8515,49.78011703491211\n8516,73.39613342285156\n8517,50.28141403198242\n8518,85.86270141601562\n8519,66.17692565917969\n8520,36.23294448852539\n8521,26.838623046875\n8522,36.72696304321289\n8523,58.843135833740234\n8524,37.26153564453125\n8525,73.88739013671875\n8526,37.10429382324219\n8527,33.99273681640625\n8528,37.6142463684082\n8529,19.107465744018555\n8530,38.007354736328125\n8531,54.53755187988281\n8532,27.803077697753906\n8533,80.94012451171875\n8534,28.801959991455078\n8535,36.78974533081055\n8536,28.124982833862305\n8537,11.557381629943848\n8538,30.270055770874023\n8539,45.653934478759766\n8540,56.69810104370117\n8541,63.275577545166016\n8542,78.51522827148438\n8543,31.18446159362793\n8544,79.07936096191406\n8545,46.613059997558594\n8546,73.49213409423828\n8547,46.868377685546875\n8548,87.72611999511719\n8549,67.5157470703125\n8550,36.998817443847656\n8551,32.33588409423828\n8552,37.07142639160156\n8553,62.09297561645508\n8554,37.72394561767578\n8555,73.7559585571289\n8556,37.95882797241211\n8557,38.240966796875\n8558,37.72516632080078\n8559,26.441938400268555\n8560,38.247406005859375\n8561,58.79780578613281\n8562,28.817398071289062\n8563,80.17110443115234\n8564,30.315229415893555\n8565,41.34618377685547\n8566,28.899599075317383\n8567,19.704700469970703\n8568,30.87265968322754\n8569,50.393218994140625\n8570,53.511924743652344\n8571,63.68376541137695\n8572,75.84263610839844\n8573,37.3469123840332\n8574,76.15080261230469\n8575,50.44136428833008\n8576,69.27941131591797\n8577,50.17372131347656\n8578,83.6336898803711\n8579,66.8096923828125\n8580,36.18812561035156\n8581,30.2399959564209\n8582,36.33304214477539\n8583,60.9170036315918\n8584,36.70156478881836\n8585,72.91309356689453\n8586,36.9649543762207\n8587,36.565792083740234\n8588,36.66669845581055\n8589,24.046646118164062\n8590,37.4083251953125\n8591,58.14418029785156\n8592,27.312580108642578\n8593,79.37713623046875\n8594,29.13935089111328\n8595,39.88247299194336\n8596,27.143505096435547\n8597,17.047290802001953\n8598,30.08051300048828\n8599,50.42803955078125\n8600,51.870361328125\n8601,63.5334358215332\n8602,72.35922241210938\n8603,34.36778259277344\n8604,72.6855697631836\n8605,49.441776275634766\n8606,65.88430786132812\n8607,49.42741012573242\n8608,82.30101776123047\n8609,65.51387023925781\n8610,38.032772064208984\n8611,29.410860061645508\n8612,37.20984649658203\n8613,59.7476692199707\n8614,38.44260787963867\n8615,70.68058776855469\n8616,38.90481948852539\n8617,35.1474609375\n8618,37.88893508911133\n8619,23.606082916259766\n8620,38.08084487915039\n8621,56.97388458251953\n8622,29.910484313964844\n8623,77.32288360595703\n8624,31.669801712036133\n8625,39.22081756591797\n8626,29.164384841918945\n8627,16.669946670532227\n8628,30.99629783630371\n8629,49.17852783203125\n8630,55.404117584228516\n8631,60.11762237548828\n8632,75.83772277832031\n8633,33.80356979370117\n8634,75.5346908569336\n8635,47.648956298828125\n8636,69.03312683105469\n8637,47.54265594482422\n8638,85.1687240600586\n8639,66.78553009033203\n8640,33.95601272583008\n8641,29.916391372680664\n8642,38.319881439208984\n8643,60.06029510498047\n8644,35.57146453857422\n8645,73.87948608398438\n8646,33.961910247802734\n8647,36.6817626953125\n8648,38.284793853759766\n8649,23.11188316345215\n8650,40.168636322021484\n8651,55.55224609375\n8652,27.121740341186523\n8653,79.30667114257812\n8654,25.253948211669922\n8655,37.855743408203125\n8656,29.482606887817383\n8657,15.73752212524414\n8658,33.26373291015625\n8659,49.51068878173828\n8660,55.26995086669922\n8661,68.14803314208984\n8662,72.50679779052734\n8663,38.18033981323242\n8664,76.19832611083984\n8665,52.19330596923828\n8666,70.26844024658203\n8667,53.16494369506836\n8668,81.13351440429688\n8669,65.25301361083984\n8670,37.460174560546875\n8671,30.49544906616211\n8672,35.38045883178711\n8673,57.960697174072266\n8674,37.9696044921875\n8675,71.57747650146484\n8676,38.203369140625\n8677,36.990482330322266\n8678,36.665435791015625\n8679,23.474205017089844\n8680,35.39265823364258\n8681,55.76388168334961\n8682,30.774394989013672\n8683,77.62825775146484\n8684,31.352455139160156\n8685,39.412776947021484\n8686,30.045982360839844\n8687,18.01532745361328\n8688,28.343341827392578\n8689,46.17674255371094\n8690,59.072811126708984\n8691,60.64822769165039\n8692,70.64019012451172\n8693,30.28207015991211\n8694,68.92267608642578\n8695,45.452396392822266\n8696,69.69227600097656\n8697,45.19139099121094\n8698,76.92086791992188\n8699,64.63985443115234\n8700,38.57493591308594\n8701,31.380001068115234\n8702,40.24359893798828\n8703,58.517173767089844\n8704,39.832794189453125\n8705,72.0694580078125\n8706,39.32881546020508\n8707,37.980247497558594\n8708,40.762489318847656\n8709,24.312280654907227\n8710,41.512996673583984\n8711,55.25516128540039\n8712,31.310317993164062\n8713,77.78630828857422\n8714,31.862213134765625\n8715,40.15309524536133\n8716,32.2440299987793\n8717,18.045854568481445\n8718,34.48939895629883\n8719,48.56033706665039\n8720,56.08688735961914\n8721,63.769500732421875\n8722,75.89445495605469\n8723,35.3893928527832\n8724,77.24250030517578\n8725,49.32170104980469\n8726,72.62246704101562\n8727,49.593963623046875\n8728,80.73406982421875\n8729,67.06551361083984\n8730,36.517189025878906\n8731,29.754194259643555\n8732,35.44938278198242\n8733,61.05086135864258\n8734,36.91376495361328\n8735,73.06776428222656\n8736,37.7332878112793\n8737,36.268829345703125\n8738,36.11789321899414\n8739,23.6359806060791\n8740,36.38371276855469\n8741,58.77139663696289\n8742,27.456558227539062\n8743,79.80878448486328\n8744,29.88433265686035\n8745,39.97372817993164\n8746,26.742923736572266\n8747,16.97751235961914\n8748,28.526691436767578\n8749,50.04096603393555\n8750,51.87979507446289\n8751,61.99458312988281\n8752,73.73543548583984\n8753,33.24258804321289\n8754,73.11516571044922\n8755,48.31776428222656\n8756,66.74462127685547\n8757,47.866355895996094\n8758,81.80269622802734\n8759,64.40811920166016\n8760,37.49452209472656\n8761,27.131643295288086\n8762,40.202579498291016\n8763,57.52617263793945\n8764,38.61397171020508\n8765,71.76984405517578\n8766,38.3559455871582\n8767,34.10472106933594\n8768,40.16930389404297\n8769,20.277143478393555\n8770,41.90281677246094\n8771,53.38530349731445\n8772,28.478843688964844\n8773,78.01903533935547\n8774,29.737308502197266\n8775,35.624168395996094\n8776,30.026931762695312\n8777,13.306448936462402\n8778,34.08538818359375\n8779,45.46981430053711\n8780,52.1935920715332\n8781,63.699462890625\n8782,75.0488510131836\n8783,33.18603515625\n8784,77.1716079711914\n8785,47.35570526123047\n8786,69.16703796386719\n8787,48.21086883544922\n8788,81.94303894042969\n8789,66.9930419921875\n8790,31.148263931274414\n8791,28.646940231323242\n8792,35.16132354736328\n8793,58.93427276611328\n8794,33.260807037353516\n8795,76.33164978027344\n8796,31.461566925048828\n8797,36.651981353759766\n8798,35.69978713989258\n8799,20.210430145263672\n8800,36.91038131713867\n8801,53.524574279785156\n8802,24.348691940307617\n8803,82.05213928222656\n8804,22.148611068725586\n8805,36.77217102050781\n8806,27.010921478271484\n8807,13.085490226745605\n8808,28.91168212890625\n8809,45.60953140258789\n8810,55.76376724243164\n8811,68.46722412109375\n8812,74.30705261230469\n8813,35.37186050415039\n8814,77.34689331054688\n8815,49.902339935302734\n8816,73.99928283691406\n8817,50.67304611206055\n8818,80.4204330444336\n8819,65.86647033691406\n8820,36.81038284301758\n8821,28.277427673339844\n8822,37.77272415161133\n8823,58.46601867675781\n8824,38.33080291748047\n8825,74.27957153320312\n8826,37.75642013549805\n8827,35.77229309082031\n8828,38.84206008911133\n8829,19.979881286621094\n8830,39.01689147949219\n8831,54.58448028564453\n8832,29.443309783935547\n8833,80.83706665039062\n8834,29.564313888549805\n8835,38.43168258666992\n8836,29.93505859375\n8837,12.949509620666504\n8838,31.234704971313477\n8839,46.68294906616211\n8840,59.124813079833984\n8841,63.510398864746094\n8842,80.23805236816406\n8843,32.41918182373047\n8844,81.01130676269531\n8845,47.53155517578125\n8846,77.29878234863281\n8847,47.865413665771484\n8848,85.89336395263672\n8849,65.80787658691406\n8850,37.65117263793945\n8851,29.659317016601562\n8852,37.835689544677734\n8853,58.68572998046875\n8854,38.77693557739258\n8855,73.45267486572266\n8856,38.71358108520508\n8857,36.893123626708984\n8858,38.80864715576172\n8859,21.940317153930664\n8860,38.856201171875\n8861,55.7285041809082\n8862,29.995281219482422\n8863,79.71372985839844\n8864,31.036426544189453\n8865,39.5872917175293\n8866,30.116470336914062\n8867,15.58824634552002\n8868,31.305377960205078\n8869,47.735172271728516\n8870,57.13706970214844\n8871,63.116390228271484\n8872,76.32231140136719\n8873,32.298580169677734\n8874,76.48973846435547\n8875,47.65926742553711\n8876,73.31309509277344\n8877,47.72510528564453\n8878,81.12995910644531\n8879,64.9678955078125\n8880,36.02047348022461\n8881,28.018291473388672\n8882,36.24346923828125\n8883,57.300968170166016\n8884,37.137081146240234\n8885,72.68384552001953\n8886,36.760318756103516\n8887,35.45671844482422\n8888,37.24208450317383\n8889,19.9636173248291\n8890,37.18486785888672\n8891,54.159523010253906\n8892,28.660194396972656\n8893,78.86377716064453\n8894,29.092721939086914\n8895,37.859718322753906\n8896,28.841516494750977\n8897,13.446127891540527\n8898,29.905479431152344\n8899,46.16871643066406\n8900,57.51523971557617\n8901,62.929832458496094\n8902,73.70269775390625\n8903,30.04057502746582\n8904,73.9620132446289\n8905,46.3388557434082\n8906,72.00856018066406\n8907,46.442100524902344\n8908,80.38993072509766\n8909,67.45142364501953\n8910,40.46257781982422\n8911,25.713003158569336\n8912,42.727718353271484\n8913,58.7419319152832\n8914,42.214317321777344\n8915,76.51700592041016\n8916,40.962223052978516\n8917,34.354957580566406\n8918,43.5888786315918\n8919,16.435243606567383\n8920,44.61249542236328\n8921,54.6308708190918\n8922,32.37971115112305\n8923,83.27825927734375\n8924,32.038787841796875\n8925,36.53624725341797\n8926,33.355682373046875\n8927,8.24152946472168\n8928,37.1989860534668\n8929,47.30868148803711\n8930,62.83419418334961\n8931,68.93521881103516\n8932,80.25920867919922\n8933,29.13066291809082\n8934,82.61858367919922\n8935,48.717159271240234\n8936,78.55879211425781\n8937,49.493927001953125\n8938,91.25483703613281\n8939,66.19932556152344\n8940,35.75371170043945\n8941,28.304718017578125\n8942,38.307716369628906\n8943,58.529998779296875\n8944,37.30473709106445\n8945,73.70294952392578\n8946,35.958335876464844\n8947,35.83988952636719\n8948,38.7961311340332\n8949,20.48157501220703\n8950,39.63739776611328\n8951,55.004188537597656\n8952,29.051586151123047\n8953,79.41448974609375\n8954,27.763946533203125\n8955,37.6695442199707\n8956,30.231239318847656\n8957,13.279956817626953\n8958,32.849395751953125\n8959,48.630409240722656\n8960,58.77565002441406\n8961,66.8882827758789\n8962,72.07540130615234\n8963,32.60270690917969\n8964,74.30512237548828\n8965,49.59934997558594\n8966,71.66899871826172\n8967,50.229610443115234\n8968,81.33170318603516\n8969,66.7751235961914\n8970,37.009029388427734\n8971,28.266216278076172\n8972,35.155845642089844\n8973,59.47037887573242\n8974,37.979366302490234\n8975,74.52764129638672\n8976,38.29948425292969\n8977,35.740108489990234\n8978,36.830318450927734\n8979,20.120229721069336\n8980,35.954383850097656\n8981,56.81179428100586\n8982,29.342742919921875\n8983,81.58062744140625\n8984,30.579010009765625\n8985,39.886260986328125\n8986,28.232419967651367\n8987,13.290168762207031\n8988,27.95343780517578\n8989,47.8680419921875\n8990,59.53947830200195\n8991,61.23850631713867\n8992,80.49079895019531\n8993,30.18906593322754\n8994,79.27310943603516\n8995,46.311187744140625\n8996,76.7108383178711\n8997,45.8596076965332\n8998,86.33452606201172\n8999,66.09241485595703\n9000,35.75533676147461\n9001,28.542884826660156\n9002,36.3294677734375\n9003,58.674400329589844\n9004,37.07686996459961\n9005,74.18575286865234\n9006,36.86030578613281\n9007,36.15647506713867\n9008,37.33234405517578\n9009,20.524293899536133\n9010,37.515525817871094\n9011,55.388877868652344\n9012,28.033138275146484\n9013,80.55368041992188\n9014,28.672893524169922\n9015,38.764976501464844\n9016,28.35822105407715\n9017,13.917634963989258\n9018,29.55830192565918\n9019,47.27238845825195\n9020,56.427268981933594\n9021,63.43683624267578\n9022,76.79138946533203\n9023,32.00770950317383\n9024,77.2372817993164\n9025,47.5012321472168\n9026,73.83561706542969\n9027,47.616485595703125\n9028,81.53579711914062\n9029,64.46438598632812\n9030,39.99428176879883\n9031,29.09178924560547\n9032,38.07167434692383\n9033,57.344688415527344\n9034,40.825809478759766\n9035,72.1279525756836\n9036,41.04978942871094\n9037,36.509193420410156\n9038,39.69634246826172\n9039,20.754547119140625\n9040,38.82802963256836\n9041,55.623477935791016\n9042,32.717010498046875\n9043,78.57840728759766\n9044,34.39055633544922\n9045,40.42404556274414\n9046,31.458826065063477\n9047,14.425956726074219\n9048,32.05093002319336\n9049,48.0350227355957\n9050,59.87737274169922\n9051,61.344661712646484\n9052,76.21147918701172\n9053,28.147676467895508\n9054,75.18118286132812\n9055,45.90779113769531\n9056,74.13150024414062\n9057,45.50474166870117\n9058,82.67669677734375\n9059,65.54613494873047\n9060,34.841373443603516\n9061,29.57253074645996\n9062,35.541019439697266\n9063,58.90005111694336\n9064,36.14651870727539\n9065,73.5230484008789\n9066,35.995357513427734\n9067,37.01979446411133\n9068,36.489097595214844\n9069,21.95635223388672\n9070,36.979774475097656\n9071,56.128353118896484\n9072,27.072864532470703\n9073,79.65411376953125\n9074,27.871191024780273\n9075,39.771270751953125\n9076,27.397483825683594\n9077,15.46909236907959\n9078,29.171831130981445\n9079,48.72909164428711\n9080,53.04960250854492\n9081,63.418277740478516\n9082,74.65119934082031\n9083,33.32504653930664\n9084,75.4365005493164\n9085,48.53825378417969\n9086,71.06907653808594\n9087,48.47015380859375\n9088,79.02104187011719\n9089,66.13760375976562\n9090,37.89019775390625\n9091,28.720273971557617\n9092,36.10799026489258\n9093,58.77150344848633\n9094,38.89790344238281\n9095,74.48210144042969\n9096,39.38606643676758\n9097,36.615291595458984\n9098,37.77371597290039\n9099,20.20111656188965\n9100,37.005210876464844\n9101,56.62779235839844\n9102,29.978694915771484\n9103,81.3409423828125\n9104,31.832996368408203\n9105,40.436038970947266\n9106,28.94301414489746\n9107,13.81098461151123\n9108,29.034440994262695\n9109,47.906009674072266\n9110,57.97154235839844\n9111,61.7769889831543\n9112,78.67976379394531\n9113,29.19538116455078\n9114,77.46097564697266\n9115,46.210731506347656\n9116,75.45667266845703\n9117,45.72998046875\n9118,82.8868637084961\n9119,65.7435073852539\n9120,36.372379302978516\n9121,26.159358978271484\n9122,37.446754455566406\n9123,57.97027587890625\n9124,37.94828414916992\n9125,74.09210205078125\n9126,37.344383239746094\n9127,34.48894500732422\n9128,38.579429626464844\n9129,17.52164077758789\n9130,39.04205322265625\n9131,55.17279815673828\n9132,28.90972900390625\n9133,80.57548522949219\n9134,28.933834075927734\n9135,37.931331634521484\n9136,29.031898498535156\n9137,10.210896492004395\n9138,31.309202194213867\n9139,48.67768859863281\n9140,58.505924224853516\n9141,64.09622192382812\n9142,78.72691345214844\n9143,30.31307601928711\n9144,80.04170227050781\n9145,47.879066467285156\n9146,76.42845916748047\n9147,48.14374923706055\n9148,84.69202423095703\n9149,66.53948211669922\n9150,35.07455825805664\n9151,28.7784481048584\n9152,36.756690979003906\n9153,59.03654861450195\n9154,36.77339553833008\n9155,75.34872436523438\n9156,35.78252410888672\n9157,36.75965118408203\n9158,37.77787399291992\n9159,20.145896911621094\n9160,38.28608703613281\n9161,55.49892807006836\n9162,27.998760223388672\n9163,81.51934051513672\n9164,27.494144439697266\n9165,39.2902717590332\n9166,28.769622802734375\n9167,12.9702787399292\n9168,30.843042373657227\n9169,48.675167083740234\n9170,57.7566032409668\n9171,66.07013702392578\n9172,76.65863037109375\n9173,32.81147003173828\n9174,78.25872802734375\n9175,49.37337875366211\n9176,75.1626205444336\n9177,49.67634582519531\n9178,82.96345520019531\n9179,65.77247619628906\n9180,37.548912048339844\n9181,27.255157470703125\n9182,38.2675666809082\n9183,58.40242004394531\n9184,38.76780319213867\n9185,74.56948852539062\n9186,38.833457946777344\n9187,35.36855697631836\n9188,39.17991638183594\n9189,18.626129150390625\n9190,40.01212692260742\n9191,55.320289611816406\n9192,28.442222595214844\n9193,81.39116668701172\n9194,30.49265480041504\n9195,38.49092483520508\n9196,28.639814376831055\n9197,11.443338394165039\n9198,31.95623207092285\n9199,47.74198532104492\n9200,54.06962585449219\n9201,64.14167785644531\n9202,78.45189666748047\n9203,30.283279418945312\n9204,79.32173156738281\n9205,47.42250442504883\n9206,73.42518615722656\n9207,47.675533294677734\n9208,84.09618377685547\n9209,66.08979034423828\n9210,35.92674255371094\n9211,27.186805725097656\n9212,36.46076583862305\n9213,58.488922119140625\n9214,37.60981750488281\n9215,74.19439697265625\n9216,36.637386322021484\n9217,35.46327209472656\n9218,37.9581413269043\n9219,18.39798927307129\n9220,37.84436798095703\n9221,56.39227294921875\n9222,29.69174575805664\n9223,80.35478973388672\n9224,28.465747833251953\n9225,39.67326736450195\n9226,29.35628890991211\n9227,11.1309814453125\n9228,30.36592674255371\n9229,50.8765983581543\n9230,61.58365249633789\n9231,63.80692672729492\n9232,79.66942596435547\n9233,31.150606155395508\n9234,80.79205322265625\n9235,48.932621002197266\n9236,79.09269714355469\n9237,49.02119445800781\n9238,85.2723617553711\n9239,64.75253295898438\n9240,36.38211441040039\n9241,29.768394470214844\n9242,35.963233947753906\n9243,57.723323822021484\n9244,37.74674606323242\n9245,72.8060073852539\n9246,37.21188735961914\n9247,37.165531158447266\n9248,37.47686767578125\n9249,21.687898635864258\n9250,36.77604293823242\n9251,55.17877960205078\n9252,30.174955368041992\n9253,78.81587219238281\n9254,29.879911422729492\n9255,40.00602340698242\n9256,29.98176383972168\n9257,15.454450607299805\n9258,29.570249557495117\n9259,47.55928421020508\n9260,59.420528411865234\n9261,62.22632598876953\n9262,75.45299530029297\n9263,31.35556411743164\n9264,75.29972076416016\n9265,47.11669921875\n9266,74.86575317382812\n9267,46.98614501953125\n9268,80.4640884399414\n9269,66.25139617919922\n9270,35.37461853027344\n9271,27.650667190551758\n9272,37.80043029785156\n9273,58.65751647949219\n9274,37.18599319458008\n9275,75.10157775878906\n9276,36.09138107299805\n9277,35.70433044433594\n9278,38.64787673950195\n9279,19.00440788269043\n9280,39.6205940246582\n9281,54.70054626464844\n9282,27.964200973510742\n9283,81.40372467041016\n9284,27.558486938476562\n9285,38.15568923950195\n9286,29.030593872070312\n9287,11.44629955291748\n9288,32.17620086669922\n9289,48.20326614379883\n9290,57.469581604003906\n9291,66.4115219116211\n9292,77.72578430175781\n9293,32.65727233886719\n9294,79.96566772460938\n9295,49.30925750732422\n9296,75.51388549804688\n9297,49.84392166137695\n9298,84.8676986694336\n9299,68.85587310791016\n9300,37.592350006103516\n9301,27.701416015625\n9302,37.3796272277832\n9303,60.78863525390625\n9304,38.86730194091797\n9305,77.92182159423828\n9306,39.09091567993164\n9307,36.10794448852539\n9308,38.736759185791016\n9309,18.632373809814453\n9310,38.87232208251953\n9311,57.42466354370117\n9312,28.42963409423828\n9313,85.27481842041016\n9314,30.224544525146484\n9315,39.59816360473633\n9316,28.209579467773438\n9317,11.217430114746094\n9318,30.062532424926758\n9319,48.523006439208984\n9320,57.924007415771484\n9321,65.3864517211914\n9322,83.00164031982422\n9323,30.64344024658203\n9324,82.99618530273438\n9325,48.05674362182617\n9326,78.30879211425781\n9327,48.0772705078125\n9328,88.5547866821289\n9329,65.85136413574219\n9330,36.895816802978516\n9331,27.788795471191406\n9332,36.50161361694336\n9333,58.31101989746094\n9334,38.3283576965332\n9335,73.97176361083984\n9336,37.89010238647461\n9337,35.88462829589844\n9338,38.09436798095703\n9339,19.1256103515625\n9340,37.643611907958984\n9341,56.27450180053711\n9342,30.167428970336914\n9343,80.3170166015625\n9344,30.00166893005371\n9345,39.93292999267578\n9346,29.54873275756836\n9347,12.317154884338379\n9348,29.990558624267578\n9349,49.606231689453125\n9350,60.67499542236328\n9351,62.66493606567383\n9352,79.43096160888672\n9353,30.386547088623047\n9354,79.6353988647461\n9355,47.70977783203125\n9356,78.13943481445312\n9357,47.59554672241211\n9358,84.08255004882812\n9359,68.85726165771484\n9360,37.59318542480469\n9361,27.23177719116211\n9362,37.69304656982422\n9363,60.82456970214844\n9364,38.44279861450195\n9365,77.39974212646484\n9366,38.38869857788086\n9367,35.421905517578125\n9368,38.41304016113281\n9369,18.455821990966797\n9370,39.03371810913086\n9371,57.27867126464844\n9372,27.83768653869629\n9373,84.78345489501953\n9374,29.736446380615234\n9375,38.650543212890625\n9376,27.60470962524414\n9377,10.40456771850586\n9378,31.098899841308594\n9379,48.69664764404297\n9380,56.690086364746094\n9381,67.22261047363281\n9382,77.10588836669922\n9383,29.065576553344727\n9384,77.45025634765625\n9385,48.308292388916016\n9386,72.22163391113281\n9387,48.70954895019531\n9388,89.2750473022461\n9389,64.95913696289062\n9390,38.80070114135742\n9391,28.066375732421875\n9392,36.894901275634766\n9393,57.99048614501953\n9394,39.678768157958984\n9395,72.17163848876953\n9396,40.153785705566406\n9397,35.156700134277344\n9398,38.49462890625\n9399,20.218536376953125\n9400,37.65532684326172\n9401,55.811866760253906\n9402,31.21278190612793\n9403,79.02790832519531\n9404,32.801605224609375\n9405,39.69486618041992\n9406,29.936647415161133\n9407,13.709442138671875\n9408,29.817626953125\n9409,47.630828857421875\n9410,59.85867691040039\n9411,58.96853256225586\n9412,81.61259460449219\n9413,30.096969604492188\n9414,80.3846206665039\n9415,45.44485855102539\n9416,77.43228149414062\n9417,45.16050338745117\n9418,85.78034973144531\n9419,67.8365478515625\n9420,39.092254638671875\n9421,28.82008934020996\n9422,37.20046615600586\n9423,59.98699188232422\n9424,39.96940994262695\n9425,75.75615692138672\n9426,40.07228088378906\n9427,36.682044982910156\n9428,38.751277923583984\n9429,20.335464477539062\n9430,37.854644775390625\n9431,57.52947235107422\n9432,31.43558120727539\n9433,82.75350952148438\n9434,32.629364013671875\n9435,40.23164367675781\n9436,30.25023078918457\n9437,13.391191482543945\n9438,30.542707443237305\n9439,48.481292724609375\n9440,61.34724426269531\n9441,64.42449188232422\n9442,76.69749450683594\n9443,28.30052375793457\n9444,75.42560577392578\n9445,47.04976272583008\n9446,74.55291748046875\n9447,46.68482208251953\n9448,86.16839599609375\n9449,66.1886978149414\n9450,35.849342346191406\n9451,27.42338752746582\n9452,39.11849594116211\n9453,58.31712341308594\n9454,37.3204345703125\n9455,74.06621551513672\n9456,35.62687301635742\n9457,35.08109664916992\n9458,39.2340202331543\n9459,19.21566390991211\n9460,40.58046340942383\n9461,54.3359375\n9462,28.54530906677246\n9463,79.96318817138672\n9464,27.140886306762695\n9465,36.72418212890625\n9466,29.96133041381836\n9467,11.33461856842041\n9468,33.91886520385742\n9469,48.31699752807617\n9470,58.360172271728516\n9471,68.27849578857422\n9472,71.45262145996094\n9473,31.7178955078125\n9474,74.28868865966797\n9475,49.67927932739258\n9476,70.64420318603516\n9477,50.812721252441406\n9478,83.95732116699219\n9479,66.22126770019531\n9480,34.06386947631836\n9481,28.00080108642578\n9482,37.1723747253418\n9483,58.81965637207031\n9484,35.94157028198242\n9485,75.29270935058594\n9486,34.674991607666016\n9487,36.2424430847168\n9488,37.82482147216797\n9489,19.3666934967041\n9490,39.19972610473633\n9491,55.12186813354492\n9492,26.60332679748535\n9493,81.27850341796875\n9494,25.864028930664062\n9495,38.45301818847656\n9496,28.05171775817871\n9497,11.905908584594727\n9498,31.570295333862305\n9499,49.17861557006836\n9500,55.120845794677734\n9501,67.1753921508789\n9502,75.986328125\n9503,33.71516799926758\n9504,78.8014144897461\n9505,50.309268951416016\n9506,73.96228790283203\n9507,50.95851135253906\n9508,82.04936218261719\n9509,65.98084259033203\n9510,37.28413009643555\n9511,27.787660598754883\n9512,35.50444412231445\n9513,58.22344970703125\n9514,38.25963592529297\n9515,74.39338684082031\n9516,38.8125114440918\n9517,35.964359283447266\n9518,37.134525299072266\n9519,19.07396125793457\n9520,36.36871337890625\n9521,56.22311019897461\n9522,29.190143585205078\n9523,81.2656021118164\n9524,31.148826599121094\n9525,39.6602783203125\n9526,28.16084861755371\n9527,12.747453689575195\n9528,28.308197021484375\n9529,47.37876510620117\n9530,57.38210678100586\n9531,61.80330276489258\n9532,77.30122375488281\n9533,27.883682250976562\n9534,76.0328140258789\n9535,45.57196807861328\n9536,74.47537994384766\n9537,45.154335021972656\n9538,81.38540649414062\n9539,66.16561126708984\n9540,38.88304901123047\n9541,28.99770164489746\n9542,37.53199768066406\n9543,58.97160720825195\n9544,39.70487594604492\n9545,74.16542053222656\n9546,40.464378356933594\n9547,36.40153121948242\n9548,38.80780792236328\n9549,20.932680130004883\n9550,38.4782829284668\n9551,56.114723205566406\n9552,30.113643646240234\n9553,81.19723510742188\n9554,32.88700866699219\n9555,39.84001159667969\n9556,29.404787063598633\n9557,14.500452041625977\n9558,30.449329376220703\n9559,46.87232208251953\n9560,56.425479888916016\n9561,61.61912155151367\n9562,79.42511749267578\n9563,30.221500396728516\n9564,78.3465805053711\n9565,46.047119140625\n9566,74.26297760009766\n9567,45.804561614990234\n9568,84.10298919677734\n9569,64.72936248779297\n9570,39.555450439453125\n9571,29.78302001953125\n9572,37.8447151184082\n9573,57.815093994140625\n9574,40.45484924316406\n9575,72.51419067382812\n9576,40.77325439453125\n9577,37.15929412841797\n9578,39.426448822021484\n9579,21.352251052856445\n9580,38.630802154541016\n9581,56.20016098022461\n9582,32.153648376464844\n9583,78.92216491699219\n9584,33.84857940673828\n9585,41.44297409057617\n9586,30.988298416137695\n9587,15.181427955627441\n9588,31.305089950561523\n9589,49.010990142822266\n9590,59.2961540222168\n9591,60.66201400756836\n9592,78.83171844482422\n9593,29.892330169677734\n9594,77.81636047363281\n9595,46.53288269042969\n9596,76.1290054321289\n9597,46.282676696777344\n9598,82.54158782958984\n9599,65.95365905761719\n9600,36.980159759521484\n9601,28.672208786010742\n9602,38.299781799316406\n9603,58.391685485839844\n9604,38.3265495300293\n9605,74.4209213256836\n9606,37.938472747802734\n9607,36.44417190551758\n9608,39.05289077758789\n9609,20.325838088989258\n9610,39.66512680053711\n9611,55.04519271850586\n9612,28.932355880737305\n9613,80.68838500976562\n9614,29.785499572753906\n9615,38.5830078125\n9616,29.65772247314453\n9617,13.59125804901123\n9618,32.03728103637695\n9619,47.28828048706055\n9620,55.96538162231445\n9621,65.130126953125\n9622,75.53187561035156\n9623,31.609094619750977\n9624,76.6251220703125\n9625,48.0350227355957\n9626,72.8370590209961\n9627,48.41415023803711\n9628,81.06671905517578\n9629,66.12129974365234\n9630,34.63684844970703\n9631,28.95133399963379\n9632,36.69892120361328\n9633,59.124698638916016\n9634,36.075042724609375\n9635,73.92223358154297\n9636,35.26399230957031\n9637,36.33058166503906\n9638,37.268314361572266\n9639,21.29819679260254\n9640,38.22348403930664\n9641,55.63092803955078\n9642,27.16950035095215\n9643,79.888427734375\n9644,26.870527267456055\n9645,38.70126724243164\n9646,28.16012191772461\n9647,14.283788681030273\n9648,30.716829299926758\n9649,48.88930892944336\n9650,55.19307327270508\n9651,65.1098861694336\n9652,74.66719818115234\n9653,34.38398742675781\n9654,76.49057006835938\n9655,49.581695556640625\n9656,71.83592224121094\n9657,50.075260162353516\n9658,80.94244384765625\n9659,66.54375457763672\n9660,36.7870979309082\n9661,29.5078067779541\n9662,37.66474151611328\n9663,59.32781219482422\n9664,38.18077087402344\n9665,75.1720962524414\n9666,37.914833068847656\n9667,36.94956588745117\n9668,38.61752700805664\n9669,21.442039489746094\n9670,38.91153335571289\n9671,55.292091369628906\n9672,28.861928939819336\n9673,81.74812316894531\n9674,29.70244598388672\n9675,39.05756378173828\n9676,29.542394638061523\n9677,14.700965881347656\n9678,30.956497192382812\n9679,46.449066162109375\n9680,56.748722076416016\n9681,64.40069580078125\n9682,78.51181030273438\n9683,33.119937896728516\n9684,79.04155731201172\n9685,47.88629150390625\n9686,74.89225769042969\n9687,48.110252380371094\n9688,83.82300567626953\n9689,65.07647705078125\n9690,39.607730865478516\n9691,29.93343162536621\n9692,37.55498504638672\n9693,58.204532623291016\n9694,40.47421646118164\n9695,72.85053253173828\n9696,40.886478424072266\n9697,37.31904602050781\n9698,39.246761322021484\n9699,21.558908462524414\n9700,38.336036682128906\n9701,56.628665924072266\n9702,32.18952941894531\n9703,79.35540771484375\n9704,34.04050064086914\n9705,41.69392776489258\n9706,30.846885681152344\n9707,15.331648826599121\n9708,31.065807342529297\n9709,49.145992279052734\n9710,59.40121078491211\n9711,60.8367919921875\n9712,78.71248626708984\n9713,29.705995559692383\n9714,77.4797592163086\n9715,46.586181640625\n9716,75.88693237304688\n9717,46.15788650512695\n9718,82.95079803466797\n9719,66.95503234863281\n9720,35.99747848510742\n9721,28.77994728088379\n9722,37.513633728027344\n9723,59.537864685058594\n9724,37.32476043701172\n9725,75.1446762084961\n9726,36.91230773925781\n9727,36.55780029296875\n9728,38.21269989013672\n9729,20.842967987060547\n9730,39.07331466674805\n9731,56.09584426879883\n9732,27.80164909362793\n9733,81.43367004394531\n9734,28.412565231323242\n9735,38.726009368896484\n9736,28.612110137939453\n9737,13.888409614562988\n9738,31.270584106445312\n9739,48.34749984741211\n9740,55.034175872802734\n9741,65.95478057861328\n9742,75.15018463134766\n9743,32.937435150146484\n9744,76.50682067871094\n9745,49.125274658203125\n9746,71.837646484375\n9747,49.45654296875\n9748,81.6143798828125\n9749,66.5782699584961\n9750,37.22026062011719\n9751,29.578292846679688\n9752,38.36280059814453\n9753,59.197574615478516\n9754,38.682281494140625\n9755,75.0272445678711\n9756,38.198150634765625\n9757,37.090816497802734\n9758,39.28364562988281\n9759,21.40709686279297\n9760,39.59284591674805\n9761,55.377811431884766\n9762,29.680728912353516\n9763,81.40315246582031\n9764,30.177366256713867\n9765,39.29355239868164\n9766,30.366161346435547\n9767,14.614039421081543\n9768,32.005638122558594\n9769,47.299049377441406\n9770,58.23463439941406\n9771,65.03485107421875\n9772,78.05036926269531\n9773,33.02082824707031\n9774,78.86846160888672\n9775,48.453556060791016\n9776,75.42887115478516\n9777,48.74132537841797\n9778,83.65059661865234\n9779,66.02880859375\n9780,37.1562385559082\n9781,29.34104347229004\n9782,36.2694206237793\n9783,58.65434646606445\n9784,38.004547119140625\n9785,73.87965393066406\n9786,38.3793830871582\n9787,37.02936553955078\n9788,37.418052673339844\n9789,21.410175323486328\n9790,37.26123809814453\n9791,56.52161407470703\n9792,28.92266845703125\n9793,80.23374938964844\n9794,30.644611358642578\n9795,39.71003341674805\n9796,28.556676864624023\n9797,15.364083290100098\n9798,29.482038497924805\n9799,47.78422927856445\n9800,54.73222732543945\n9801,63.14393615722656\n9802,73.16853332519531\n9803,30.148517608642578\n9804,72.67599487304688\n9805,46.95227813720703\n9806,70.18981170654297\n9807,46.72269821166992\n9808,78.02118682861328\n9809,64.07691955566406\n9810,36.420570373535156\n9811,29.332962036132812\n9812,37.854087829589844\n9813,57.25961685180664\n9814,37.795536041259766\n9815,71.39904022216797\n9816,36.93756866455078\n9817,36.24842834472656\n9818,38.57535171508789\n9819,21.869918823242188\n9820,38.928524017333984\n9821,54.15314865112305\n9822,29.9718017578125\n9823,77.06710052490234\n9824,29.363311767578125\n9825,38.595191955566406\n9826,30.669239044189453\n9827,15.442084312438965\n9828,31.955175399780273\n9829,47.564231872558594\n9830,57.873085021972656\n9831,62.64079284667969\n9832,74.39468383789062\n9833,33.482364654541016\n9834,75.62467956542969\n9835,47.998687744140625\n9836,72.9034423828125\n9837,48.4681510925293\n9838,79.70822143554688\n9839,67.05005645751953\n9840,34.07368469238281\n9841,28.374530792236328\n9842,35.19293975830078\n9843,58.65740203857422\n9844,35.93729019165039\n9845,76.2133560180664\n9846,34.78339767456055\n9847,36.89268493652344\n9848,36.60569381713867\n9849,19.427249908447266\n9850,36.30139923095703\n9851,55.13849639892578\n9852,27.73227310180664\n9853,82.24039459228516\n9854,26.173442840576172\n9855,38.51768493652344\n9856,28.579593658447266\n9857,12.758092880249023\n9858,28.27524185180664\n9859,46.90140914916992\n9860,60.34965896606445\n9861,66.05662536621094\n9862,76.167724609375\n9863,31.48341941833496\n9864,77.0555191040039\n9865,48.24468231201172\n9866,77.1929931640625\n9867,48.44273376464844\n9868,80.85811614990234\n9869,72.15684509277344\n9870,42.20911407470703\n9871,31.58405113220215\n9872,42.7072868347168\n9873,64.2948989868164\n9874,43.4626350402832\n9875,80.83358764648438\n9876,43.20126724243164\n9877,39.75861358642578\n9878,43.887855529785156\n9879,22.800579071044922\n9880,44.44375228881836\n9881,60.957374572753906\n9882,33.356048583984375\n9883,87.77474212646484\n9884,34.40611267089844\n9885,42.916072845458984\n9886,33.54817199707031\n9887,15.241348266601562\n9888,36.222415924072266\n9889,52.79646682739258\n9890,62.3359260559082\n9891,70.50498962402344\n9892,84.63563537597656\n9893,34.82759094238281\n9894,85.5380630493164\n9895,52.778072357177734\n9896,80.72730255126953\n9897,53.02569580078125\n9898,91.79095458984375\n9899,66.16877746582031\n9900,34.36095428466797\n9901,28.07748031616211\n9902,34.25846481323242\n9903,57.83361053466797\n9904,35.06863021850586\n9905,74.0055923461914\n9906,34.981201171875\n9907,35.75370407104492\n9908,34.95591354370117\n9909,19.875350952148438\n9910,34.81396484375\n9911,54.64344024658203\n9912,26.12315559387207\n9913,80.26437377929688\n9914,27.048952102661133\n9915,37.39960861206055\n9916,26.341251373291016\n9917,13.588359832763672\n9918,27.240365982055664\n9919,45.224327087402344\n9920,54.85958480834961\n9921,64.40347290039062\n9922,68.88128662109375\n9923,28.508068084716797\n9924,68.52098083496094\n9925,45.80801773071289\n9926,67.44576263427734\n9927,46.003318786621094\n9928,77.0927505493164\n9929,69.36117553710938\n9930,35.041568756103516\n9931,29.692909240722656\n9932,35.56961441040039\n9933,60.96348571777344\n9934,36.57650375366211\n9935,77.5333251953125\n9936,35.439117431640625\n9937,37.667240142822266\n9938,36.72135543823242\n9939,21.2936954498291\n9940,36.04530715942383\n9941,57.318302154541016\n9942,28.891796112060547\n9943,83.83018493652344\n9944,27.092348098754883\n9945,39.4448356628418\n9946,29.303199768066406\n9947,14.3277587890625\n9948,28.537111282348633\n9949,48.2850227355957\n9950,63.06233596801758\n9951,67.66201782226562\n9952,74.65151977539062\n9953,31.944541931152344\n9954,74.77579498291016\n9955,49.2348747253418\n9956,75.661376953125\n9957,49.44340133666992\n9958,83.86712646484375\n9959,67.81088256835938\n9960,37.657691955566406\n9961,28.282943725585938\n9962,39.79775619506836\n9963,59.54488754272461\n9964,39.43415069580078\n9965,76.16083526611328\n9966,37.97611618041992\n9967,36.38284683227539\n9968,40.64238739013672\n9969,19.711257934570312\n9970,41.05898666381836\n9971,55.70817947387695\n9972,31.074356079101562\n9973,82.30485534667969\n9974,29.57451629638672\n9975,38.19835662841797\n9976,32.035499572753906\n9977,12.176850318908691\n9978,34.04503631591797\n9979,48.52781677246094\n9980,62.97133255004883\n9981,68.54961395263672\n9982,76.12063598632812\n9983,31.692169189453125\n9984,77.96612548828125\n9985,49.80399703979492\n9986,76.4095458984375\n9987,50.340850830078125\n9988,86.15387725830078\n9989,66.03431701660156\n9990,37.5406379699707\n9991,29.956226348876953\n9992,34.821868896484375\n9993,59.07032775878906\n9994,38.194095611572266\n9995,73.91575622558594\n9996,39.289493560791016\n9997,37.4861946105957\n9998,36.463077545166016\n9999,22.039827346801758\n10000,35.54668426513672\n10001,57.3731803894043\n10002,28.922203063964844\n10003,80.76631927490234\n10004,31.838115692138672\n10005,41.134090423583984\n10006,27.5816650390625\n10007,16.261627197265625\n10008,27.267290115356445\n10009,47.75367736816406\n10010,54.38755416870117\n10011,60.555015563964844\n10012,76.23033142089844\n10013,29.507286071777344\n10014,74.23641204833984\n10015,45.702579498291016\n10016,71.7435302734375\n10017,44.95444107055664\n10018,79.6015625\n10019,66.87691497802734\n10020,36.51132583618164\n10021,28.3724422454834\n10022,36.89170837402344\n10023,58.7725944519043\n10024,38.06851577758789\n10025,75.77701568603516\n10026,37.317840576171875\n10027,36.674171447753906\n10028,38.29802703857422\n10029,19.47238540649414\n10030,37.92765426635742\n10031,55.628971099853516\n10032,29.811325073242188\n10033,82.11837768554688\n10034,29.29644012451172\n10035,39.06673049926758\n10036,30.060134887695312\n10037,12.66390609741211\n10038,30.442264556884766\n10039,47.437557220458984\n10040,60.86066436767578\n10041,65.64762115478516\n10042,76.64315795898438\n10043,30.235328674316406\n10044,77.0788803100586\n10045,47.864803314208984\n10046,76.5455093383789\n10047,47.922794342041016\n10048,82.85223388671875\n10049,65.7325210571289\n10050,36.80842208862305\n10051,28.413602828979492\n10052,37.90415954589844\n10053,57.933265686035156\n10054,38.463077545166016\n10055,74.4542007446289\n10056,37.36525344848633\n10057,36.575340270996094\n10058,39.12503433227539\n10059,19.630701065063477\n10060,39.028289794921875\n10061,55.03187942504883\n10062,30.57906723022461\n10063,80.41471099853516\n10064,29.575414657592773\n10065,38.948631286621094\n10066,31.05402374267578\n10067,12.807543754577637\n10068,32.0562629699707\n10069,48.075199127197266\n10070,60.89545440673828\n10071,65.7237548828125\n10072,75.20567321777344\n10073,30.571680068969727\n10074,76.3271255493164\n10075,48.35676956176758\n10076,75.83399200439453\n10077,48.58066940307617\n10078,81.68439483642578\n10079,65.97628021240234\n10080,35.705806732177734\n10081,29.32203483581543\n10082,36.073997497558594\n10083,59.07589340209961\n10084,36.86195373535156\n10085,73.97843933105469\n10086,36.85710144042969\n10087,36.913089752197266\n10088,37.05013656616211\n10089,21.561555862426758\n10090,37.47164535522461\n10091,56.4161262512207\n10092,27.604450225830078\n10093,80.25076293945312\n10094,28.821231842041016\n10095,39.66331100463867\n10096,27.774425506591797\n10097,15.045523643493652\n10098,29.724605560302734\n10099,48.665103912353516\n10100,53.50706100463867\n10101,63.913150787353516\n10102,74.25767517089844\n10103,32.2841682434082\n10104,74.80909729003906\n10105,48.31028747558594\n10106,70.63358306884766\n10107,48.246849060058594\n10108,79.39044952392578\n10109,66.1302490234375\n10110,35.09401321411133\n10111,28.28191566467285\n10112,38.45500946044922\n10113,58.32579803466797\n10114,37.240516662597656\n10115,75.12834930419922\n10116,35.223724365234375\n10117,36.21169662475586\n10118,39.27542495727539\n10119,19.484683990478516\n10120,40.09675216674805\n10121,53.83399963378906\n10122,29.091636657714844\n10123,80.9325942993164\n10124,26.721633911132812\n10125,37.8252067565918\n10126,30.81731414794922\n10127,11.91738224029541\n10128,33.08187484741211\n10129,47.71648025512695\n10130,61.20588684082031\n10131,67.68307495117188\n10132,77.46063995361328\n10133,33.843841552734375\n10134,80.35100555419922\n10135,50.08860397338867\n10136,77.87992858886719\n10137,50.841922760009766\n10138,85.2540054321289\n10139,66.79885864257812\n10140,36.660499572753906\n10141,29.149185180664062\n10142,38.243953704833984\n10143,59.225860595703125\n10144,38.34977722167969\n10145,74.94731140136719\n10146,37.29115676879883\n10147,36.65473556518555\n10148,39.2108039855957\n10149,21.10483169555664\n10150,39.382938385009766\n10151,55.28263854980469\n10152,30.15365219116211\n10153,81.07184600830078\n10154,29.100299835205078\n10155,38.63865280151367\n10156,31.022186279296875\n10157,14.136757850646973\n10158,31.99666404724121\n10159,47.5354118347168\n10160,61.16515350341797\n10161,65.66036224365234\n10162,77.79818725585938\n10163,33.471458435058594\n10164,79.01014709472656\n10165,48.97136306762695\n10166,76.82844543457031\n10167,49.340309143066406\n10168,84.52796173095703\n10169,65.33554077148438\n10170,37.228023529052734\n10171,30.0441951751709\n10172,36.98889923095703\n10173,58.135833740234375\n10174,38.36177444458008\n10175,73.40935516357422\n10176,38.18169021606445\n10177,37.48460006713867\n10178,38.19611358642578\n10179,21.94557762145996\n10180,37.87723159790039\n10181,55.53562927246094\n10182,30.058244705200195\n10183,79.48855590820312\n10184,30.72028160095215\n10185,40.03739929199219\n10186,30.037303924560547\n10187,15.84952163696289\n10188,30.502483367919922\n10189,47.57041931152344\n10190,57.47618103027344\n10191,63.089805603027344\n10192,74.8475112915039\n10193,31.4031925201416\n10194,74.7656021118164\n10195,47.34983444213867\n10196,73.2188491821289\n10197,47.30760192871094\n10198,79.37120056152344\n10199,64.2040786743164\n10200,40.33866882324219\n10201,27.906808853149414\n10202,38.690521240234375\n10203,56.97702407836914\n10204,41.276710510253906\n10205,72.05965423583984\n10206,41.682987213134766\n10207,35.600242614746094\n10208,40.24654006958008\n10209,19.25653648376465\n10210,39.595130920410156\n10211,55.41377639770508\n10212,32.6165771484375\n10213,78.72452545166016\n10214,34.640716552734375\n10215,40.14426803588867\n10216,31.312328338623047\n10217,12.825773239135742\n10218,32.17633819580078\n10219,48.32242965698242\n10220,59.933040618896484\n10221,60.1575927734375\n10222,80.07579040527344\n10223,28.09770393371582\n10224,79.13135528564453\n10225,45.555171966552734\n10226,76.99906921386719\n10227,45.373939514160156\n10228,84.13679504394531\n10229,66.76400756835938\n10230,37.257080078125\n10231,28.009111404418945\n10232,38.47607421875\n10233,58.932804107666016\n10234,38.898643493652344\n10235,75.76202392578125\n10236,38.081260681152344\n10237,35.983211517333984\n10238,39.61993408203125\n10239,19.046600341796875\n10240,39.883548736572266\n10241,54.97587966918945\n10242,29.862489700317383\n10243,82.4013442993164\n10244,29.767547607421875\n10245,38.69048309326172\n10246,30.412212371826172\n10247,11.634540557861328\n10248,32.234657287597656\n10249,47.38215637207031\n10250,60.45554733276367\n10251,65.44414520263672\n10252,80.80585479736328\n10253,31.71661949157715\n10254,81.91262817382812\n10255,48.2925910949707\n10256,78.60155487060547\n10257,48.69651412963867\n10258,87.43174743652344\n10259,65.60559844970703\n10260,30.448884963989258\n10261,27.111492156982422\n10262,34.01789093017578\n10263,58.01154708862305\n10264,32.51636505126953\n10265,73.47724914550781\n10266,30.55530548095703\n10267,34.8565559387207\n10268,34.553253173828125\n10269,19.15770149230957\n10270,35.56052017211914\n10271,54.046913146972656\n10272,24.629789352416992\n10273,78.9163589477539\n10274,21.516056060791016\n10275,36.90824508666992\n10276,26.29447364807129\n10277,11.804889678955078\n10278,28.030763626098633\n10279,48.59162902832031\n10280,57.51820373535156\n10281,65.4316635131836\n10282,74.16959381103516\n10283,34.94870376586914\n10284,77.17044830322266\n10285,49.96186828613281\n10286,74.22792053222656\n10287,50.705406188964844\n10288,80.59091186523438\n10289,65.40238952636719\n10290,36.036380767822266\n10291,29.791048049926758\n10292,35.440425872802734\n10293,58.673526763916016\n10294,37.31873321533203\n10295,73.43933868408203\n10296,37.322593688964844\n10297,37.60352325439453\n10298,36.92476272583008\n10299,21.460695266723633\n10300,36.768184661865234\n10301,57.22754669189453\n10302,28.531326293945312\n10303,79.57520294189453\n10304,29.491004943847656\n10305,41.93296432495117\n10306,27.794952392578125\n10307,15.082070350646973\n10308,28.81353759765625\n10309,51.181209564208984\n10310,55.5304069519043\n10311,61.83423614501953\n10312,78.04935455322266\n10313,32.16938018798828\n10314,78.12674713134766\n10315,48.52741622924805\n10316,75.08770751953125\n10317,48.25204086303711\n10318,80.42190551757812\n10319,63.71404266357422\n10320,36.56929397583008\n10321,29.467857360839844\n10322,37.97493362426758\n10323,57.13686752319336\n10324,37.55793380737305\n10325,70.99561309814453\n10326,37.387901306152344\n10327,36.21411895751953\n10328,38.33961868286133\n10329,22.481403350830078\n10330,39.16507339477539\n10331,53.96856689453125\n10332,28.71734046936035\n10333,76.76457214355469\n10334,29.724212646484375\n10335,37.90024185180664\n10336,29.656644821166992\n10337,16.419904708862305\n10338,31.936674118041992\n10339,46.294227600097656\n10340,52.70683670043945\n10341,62.58758544921875\n10342,71.66548156738281\n10343,33.127655029296875\n10344,72.76412963867188\n10345,47.3051643371582\n10346,68.10701751708984\n10347,47.634063720703125\n10348,76.58528900146484\n10349,66.70038604736328\n10350,36.70285415649414\n10351,29.455181121826172\n10352,37.498905181884766\n10353,59.68656921386719\n10354,38.01815414428711\n10355,74.75210571289062\n10356,37.92886734008789\n10357,36.848716735839844\n10358,38.39438247680664\n10359,21.727140426635742\n10360,38.85911560058594\n10361,56.166343688964844\n10362,28.577001571655273\n10363,81.29411315917969\n10364,29.720867156982422\n10365,39.422691345214844\n10366,29.01079559326172\n10367,14.926021575927734\n10368,30.963756561279297\n10369,47.92182922363281\n10370,55.541324615478516\n10371,64.24889373779297\n10372,77.73100280761719\n10373,33.37690734863281\n10374,78.37496948242188\n10375,48.45286560058594\n10376,73.4743881225586\n10377,48.60495376586914\n10378,83.26040649414062\n10379,67.56079864501953\n10380,38.56381607055664\n10381,28.064218521118164\n10382,38.890384674072266\n10383,59.31050491333008\n10384,39.94015884399414\n10385,76.01718139648438\n10386,39.10957717895508\n10387,35.99430847167969\n10388,40.068359375\n10389,19.260536193847656\n10390,39.901878356933594\n10391,55.50684356689453\n10392,31.260940551757812\n10393,82.77871704101562\n10394,31.111087799072266\n10395,38.4144287109375\n10396,31.359588623046875\n10397,11.762435913085938\n10398,32.75046157836914\n10399,47.01879119873047\n10400,62.7729606628418\n10401,66.66413879394531\n10402,77.46399688720703\n10403,29.43449592590332\n10404,77.88491821289062\n10405,47.76579284667969\n10406,76.33238220214844\n10407,48.02130889892578\n10408,88.36701965332031\n10409,65.49364471435547\n10410,38.02171325683594\n10411,29.274078369140625\n10412,36.577476501464844\n10413,58.028690338134766\n10414,38.76381301879883\n10415,72.99397277832031\n10416,39.14116668701172\n10417,37.0521354675293\n10418,37.897804260253906\n10419,21.120647430419922\n10420,37.45512008666992\n10421,56.841896057128906\n10422,30.19365882873535\n10423,79.16053009033203\n10424,31.697036743164062\n10425,40.45404815673828\n10426,29.285110473632812\n10427,15.212507247924805\n10428,29.96432876586914\n10429,49.20354080200195\n10430,56.0528450012207\n10431,62.327754974365234\n10432,73.1484603881836\n10433,29.200803756713867\n10434,72.46623992919922\n10435,46.909210205078125\n10436,71.06866455078125\n10437,46.724239349365234\n10438,77.528564453125\n10439,67.63921356201172\n10440,36.075439453125\n10441,28.749929428100586\n10442,37.1992073059082\n10443,59.81348419189453\n10444,37.68067169189453\n10445,75.83695983886719\n10446,36.944000244140625\n10447,36.55516815185547\n10448,38.2745475769043\n10449,20.514873504638672\n10450,38.40614700317383\n10451,56.11378860473633\n10452,29.05078887939453\n10453,82.21499633789062\n10454,28.518112182617188\n10455,38.962188720703125\n10456,29.61044692993164\n10457,13.497964859008789\n10458,30.615419387817383\n10459,48.12186813354492\n10460,60.33206558227539\n10461,65.61072540283203\n10462,78.74787139892578\n10463,32.99653244018555\n10464,79.65155792236328\n10465,48.928462982177734\n10466,77.12062072753906\n10467,49.19697952270508\n10468,84.88001251220703\n10469,66.69470977783203\n10470,39.540287017822266\n10471,26.351411819458008\n10472,42.490745544433594\n10473,58.40995407104492\n10474,41.534637451171875\n10475,76.99028778076172\n10476,40.489295959472656\n10477,35.41239547729492\n10478,43.26304244995117\n10479,16.505739212036133\n10480,44.5843505859375\n10481,54.56279754638672\n10482,30.98219108581543\n10483,83.64404296875\n10484,31.113670349121094\n10485,37.9221305847168\n10486,32.23465347290039\n10487,8.80189037322998\n10488,36.1242561340332\n10489,48.19432830810547\n10490,59.69300842285156\n10491,67.74671936035156\n10492,83.89743041992188\n10493,30.980182647705078\n10494,86.30248260498047\n10495,49.17240524291992\n10496,81.24419403076172\n10497,50.191410064697266\n10498,88.50767517089844\n10499,64.85453796386719\n10500,38.559410095214844\n10501,25.423250198364258\n10502,42.10489273071289\n10503,56.56363296508789\n10504,40.60503005981445\n10505,74.50103759765625\n10506,38.95112228393555\n10507,34.07389450073242\n10508,42.74661636352539\n10509,15.90636920928955\n10510,44.10420608520508\n10511,52.483089447021484\n10512,31.009122848510742\n10513,80.69084167480469\n10514,30.100265502929688\n10515,35.89789581298828\n10516,32.61475372314453\n10517,8.068800926208496\n10518,36.753265380859375\n10519,46.63287353515625\n10520,60.4691162109375\n10521,67.549072265625\n10522,78.90333557128906\n10523,29.804676055908203\n10524,82.01580047607422\n10525,48.330413818359375\n10526,78.10169219970703\n10527,49.39177322387695\n10528,86.6742935180664\n10529,66.15585327148438\n10530,36.661197662353516\n10531,30.27838134765625\n10532,34.01618957519531\n10533,58.95387268066406\n10534,37.48884201049805\n10535,73.85624694824219\n10536,38.00653839111328\n10537,37.936763763427734\n10538,35.87207794189453\n10539,22.14451789855957\n10540,34.58139419555664\n10541,57.60493469238281\n10542,29.448219299316406\n10543,80.20594024658203\n10544,30.873991012573242\n10545,41.854793548583984\n10546,27.924470901489258\n10547,16.296606063842773\n10548,27.022621154785156\n10549,49.12095260620117\n10550,57.724613189697266\n10551,61.370113372802734\n10552,74.65550231933594\n10553,29.459407806396484\n10554,72.91035461425781\n10555,46.608150482177734\n10556,72.9127197265625\n10557,45.817176818847656\n10558,78.95639038085938\n10559,65.09407806396484\n10560,36.18129348754883\n10561,28.892364501953125\n10562,37.474056243896484\n10563,58.20834732055664\n10564,37.44876480102539\n10565,72.60791778564453\n10566,37.04963684082031\n10567,36.22109603881836\n10568,38.182891845703125\n10569,21.472740173339844\n10570,38.93001937866211\n10571,55.29187774658203\n10572,28.62763786315918\n10573,78.55563354492188\n10574,29.123918533325195\n10575,38.68686294555664\n10576,29.183887481689453\n10577,14.865538597106934\n10578,31.6209659576416\n10579,48.35715103149414\n10580,54.79511642456055\n10581,63.86918258666992\n10582,73.57778930664062\n10583,32.90291976928711\n10584,74.86328887939453\n10585,48.49317932128906\n10586,70.61687469482422\n10587,48.737586975097656\n10588,79.37924194335938\n10589,70.04354095458984\n10590,41.56319808959961\n10591,30.94639015197754\n10592,42.3690185546875\n10593,62.03194808959961\n10594,42.873329162597656\n10595,78.21826934814453\n10596,42.02445602416992\n10597,38.867431640625\n10598,43.422061920166016\n10599,22.287429809570312\n10600,43.70247268676758\n10601,58.82585525512695\n10602,33.93049621582031\n10603,84.63572692871094\n10604,33.84843826293945\n10605,41.47931671142578\n10606,34.18492126464844\n10607,14.872888565063477\n10608,36.5153694152832\n10609,51.3687629699707\n10610,63.93928527832031\n10611,69.74968719482422\n10612,79.50823974609375\n10613,32.954078674316406\n10614,80.62444305419922\n10615,51.52437210083008\n10616,78.16732788085938\n10617,51.90304183959961\n10618,89.08638000488281\n10619,66.08065795898438\n10620,37.10600662231445\n10621,27.220783233642578\n10622,39.59933090209961\n10623,58.2703857421875\n10624,38.62183380126953\n10625,73.99028778076172\n10626,37.17841339111328\n10627,34.69926452636719\n10628,40.111549377441406\n10629,18.966196060180664\n10630,41.078922271728516\n10631,53.955535888671875\n10632,29.84061050415039\n10633,80.22592163085938\n10634,28.794584274291992\n10635,36.70771789550781\n10636,30.954267501831055\n10637,11.043706893920898\n10638,34.26884841918945\n10639,47.25236511230469\n10640,60.54443359375\n10641,67.02640533447266\n10642,75.49108123779297\n10643,31.48771858215332\n10644,77.77698516845703\n10645,48.78975296020508\n10646,74.04973602294922\n10647,49.624366760253906\n10648,87.32132720947266\n10649,67.54464721679688\n10650,37.40071105957031\n10651,26.94222640991211\n10652,38.61508560180664\n10653,58.82283020019531\n10654,38.96050262451172\n10655,76.43211364746094\n10656,37.60896301269531\n10657,35.82139587402344\n10658,39.61038589477539\n10659,17.559741973876953\n10660,39.74167251586914\n10661,55.951141357421875\n10662,30.456605911254883\n10663,82.81588745117188\n10664,29.443389892578125\n10665,38.336307525634766\n10666,30.663074493408203\n10667,9.854901313781738\n10668,32.90921401977539\n10669,49.06672668457031\n10670,62.05805206298828\n10671,68.75054168701172\n10672,73.7777328491211\n10673,27.78329086303711\n10674,75.08757781982422\n10675,48.794498443603516\n10676,74.73548889160156\n10677,49.315040588378906\n10678,85.3471908569336\n10679,68.77112579345703\n10680,36.38307571411133\n10681,29.047351837158203\n10682,37.85971450805664\n10683,60.90700149536133\n10684,38.085540771484375\n10685,77.28632354736328\n10686,37.10885238647461\n10687,37.03124237060547\n10688,38.9273796081543\n10689,20.620502471923828\n10690,39.22325134277344\n10691,56.999229431152344\n10692,29.314697265625\n10693,83.73841094970703\n10694,28.434276580810547\n10695,39.401973724365234\n10696,30.051410675048828\n10697,13.238362312316895\n10698,31.423166275024414\n10699,49.11270523071289\n10700,61.2212028503418\n10701,67.45018768310547\n10702,79.55475616455078\n10703,33.673667907714844\n10704,80.83316040039062\n10705,50.175594329833984\n10706,78.02130889892578\n10707,50.479305267333984\n10708,86.8490219116211\n10709,66.0744857788086\n10710,37.87725830078125\n10711,29.699932098388672\n10712,37.41336441040039\n10713,59.09196090698242\n10714,38.722740173339844\n10715,73.82182312011719\n10716,38.969154357910156\n10717,36.775699615478516\n10718,38.43585205078125\n10719,22.054115295410156\n10720,38.46391677856445\n10721,55.81479263305664\n10722,29.54645347595215\n10723,80.43560791015625\n10724,31.455991744995117\n10725,39.40639877319336\n10726,29.437358856201172\n10727,15.504487991333008\n10728,31.039325714111328\n10729,46.86063003540039\n10730,55.779388427734375\n10731,63.333229064941406\n10732,75.58380889892578\n10733,31.38003921508789\n10734,75.33573150634766\n10735,47.101524353027344\n10736,71.34847259521484\n10737,46.928550720214844\n10738,82.72132873535156\n10739,66.87741088867188\n10740,39.228546142578125\n10741,30.694149017333984\n10742,39.38644027709961\n10743,59.857017517089844\n10744,40.481903076171875\n10745,74.5542221069336\n10746,40.071250915527344\n10747,37.90341567993164\n10748,40.55280685424805\n10749,22.745750427246094\n10750,40.44401168823242\n10751,57.0145378112793\n10752,32.147212982177734\n10753,80.80780029296875\n10754,32.4543571472168\n10755,41.068580627441406\n10756,32.08540725708008\n10757,16.032638549804688\n10758,33.12333679199219\n10759,49.73843765258789\n10760,60.901607513427734\n10761,64.34819793701172\n10762,79.35039520263672\n10763,33.5135498046875\n10764,79.69278717041016\n10765,49.27542495727539\n10766,77.0476303100586\n10767,49.377685546875\n10768,85.00524139404297\n10769,67.39617919921875\n10770,40.218894958496094\n10771,26.995695114135742\n10772,40.44623947143555\n10773,59.64179992675781\n10774,41.45454788208008\n10775,75.39295196533203\n10776,41.3916015625\n10777,34.720829010009766\n10778,41.61453628540039\n10779,18.559123992919922\n10780,41.939876556396484\n10781,56.00996398925781\n10782,31.66448211669922\n10783,82.62091064453125\n10784,32.91292953491211\n10785,38.47416305541992\n10786,31.529518127441406\n10787,10.942268371582031\n10788,33.83294677734375\n10789,48.02021408081055\n10790,60.935279846191406\n10791,63.93631362915039\n10792,84.8516845703125\n10793,31.193574905395508\n10794,85.3828353881836\n10795,47.71221160888672\n10796,79.78596496582031\n10797,48.044681549072266\n10798,91.93401336669922\n10799,66.45619201660156\n10800,39.284385681152344\n10801,29.218229293823242\n10802,38.54121017456055\n10803,58.918827056884766\n10804,40.402400970458984\n10805,74.96111297607422\n10806,40.60826873779297\n10807,36.92505645751953\n10808,39.85282897949219\n10809,20.71822738647461\n10810,39.426612854003906\n10811,55.942466735839844\n10812,31.21689224243164\n10813,81.77274322509766\n10814,32.90204620361328\n10815,39.90525436401367\n10816,30.863590240478516\n10817,14.209325790405273\n10818,31.548749923706055\n10819,47.01610565185547\n10820,59.009857177734375\n10821,63.16373062133789\n10822,79.62699890136719\n10823,30.305206298828125\n10824,78.98304748535156\n10825,46.71051025390625\n10826,76.32012939453125\n10827,46.648990631103516\n10828,84.52957153320312\n10829,66.5016098022461\n10830,38.092430114746094\n10831,29.496736526489258\n10832,37.03630065917969\n10833,59.50313949584961\n10834,39.02152633666992\n10835,74.80846405029297\n10836,39.64974594116211\n10837,37.01508331298828\n10838,38.321102142333984\n10839,21.410770416259766\n10840,38.13291931152344\n10841,56.6535758972168\n10842,29.406728744506836\n10843,81.7441635131836\n10844,31.928789138793945\n10845,40.3378791809082\n10846,28.894453048706055\n10847,14.930441856384277\n10848,30.07191276550293\n10849,47.5450325012207\n10850,55.433780670166016\n10851,62.541534423828125\n10852,78.79794311523438\n10853,31.026945114135742\n10854,78.00975799560547\n10855,46.89934539794922\n10856,73.78079986572266\n10857,46.5794677734375\n10858,83.38260650634766\n10859,66.16018676757812\n10860,35.8212890625\n10861,27.889055252075195\n10862,36.84836196899414\n10863,58.07999038696289\n10864,37.404930114746094\n10865,74.89713287353516\n10866,36.57463455200195\n10867,36.18312454223633\n10868,38.02297592163086\n10869,19.061487197875977\n10870,38.08113479614258\n10871,54.948951721191406\n10872,28.966840744018555\n10873,81.04891204833984\n10874,28.54922866821289\n10875,38.48432540893555\n10876,29.4486083984375\n10877,12.198847770690918\n10878,30.78896713256836\n10879,47.47843933105469\n10880,59.146507263183594\n10881,65.72846221923828\n10882,74.88092041015625\n10883,30.13955307006836\n10884,75.90808868408203\n10885,47.9442024230957\n10886,74.69268035888672\n10887,48.1060791015625\n10888,81.28500366210938\n10889,64.56456756591797\n10890,34.75938415527344\n10891,30.130924224853516\n10892,33.2464599609375\n10893,57.803627014160156\n10894,35.607940673828125\n10895,71.86182403564453\n10896,35.973785400390625\n10897,37.39276885986328\n10898,34.60111618041992\n10899,22.716482162475586\n10900,34.01602554321289\n10901,56.236167907714844\n10902,27.505226135253906\n10903,77.76876068115234\n10904,28.85615348815918\n10905,40.43544387817383\n10906,26.706026077270508\n10907,17.14727020263672\n10908,26.755367279052734\n10909,48.06312561035156\n10910,53.3599739074707\n10911,61.17236328125\n10912,69.44384002685547\n10913,30.2843074798584\n10914,68.48822784423828\n10915,46.47056579589844\n10916,67.48091125488281\n10917,45.893798828125\n10918,73.93634033203125\n10919,67.4590072631836\n10920,35.36379623413086\n10921,27.34312629699707\n10922,39.29358673095703\n10923,59.244510650634766\n10924,37.14930725097656\n10925,76.40857696533203\n10926,35.200927734375\n10927,35.6248664855957\n10928,39.473838806152344\n10929,18.43999671936035\n10930,41.133785247802734\n10931,54.70534896850586\n10932,27.72522735595703\n10933,82.53878784179688\n10934,26.310096740722656\n10935,37.063392639160156\n10936,29.50438690185547\n10937,10.070858001708984\n10938,34.29573440551758\n10939,48.609981536865234\n10940,58.3252067565918\n10941,70.82081604003906\n10942,73.11912536621094\n10943,31.860340118408203\n10944,76.57858276367188\n10945,50.74441909790039\n10946,72.31155395507812\n10947,51.924232482910156\n10948,86.39103698730469\n10949,67.17757415771484\n10950,38.02291488647461\n10951,29.709823608398438\n10952,36.65867233276367\n10953,60.08139419555664\n10954,39.13047790527344\n10955,75.30564880371094\n10956,39.47142028808594\n10957,37.23081970214844\n10958,38.20411682128906\n10959,21.62972640991211\n10960,37.58784866333008\n10961,57.29653549194336\n10962,30.2189884185791\n10963,82.24266052246094\n10964,31.82234001159668\n10965,40.81968688964844\n10966,29.473426818847656\n10967,15.019735336303711\n10968,29.636306762695312\n10969,48.240291595458984\n10970,58.73222351074219\n10971,62.66389846801758\n10972,80.04042053222656\n10973,31.379133224487305\n10974,79.05252838134766\n10975,47.33098602294922\n10976,76.20454406738281\n10977,46.88602828979492\n10978,85.18795776367188\n10979,66.71416473388672\n10980,37.77993392944336\n10981,27.997968673706055\n10982,37.3702392578125\n10983,59.25022888183594\n10984,38.91107940673828\n10985,74.71050262451172\n10986,38.632015228271484\n10987,35.9878044128418\n10988,38.67304611206055\n10989,19.55368995666504\n10990,38.60057067871094\n10991,56.83247375488281\n10992,30.10729217529297\n10993,81.34504699707031\n10994,30.892669677734375\n10995,39.71853256225586\n10996,29.46166229248047\n10997,12.249234199523926\n10998,31.393266677856445\n10999,49.6911506652832\n11000,59.12501525878906\n11001,64.69109344482422\n11002,76.63605499267578\n11003,29.570287704467773\n11004,76.87335968017578\n11005,48.15641403198242\n11006,74.1453628540039\n11007,48.05573272705078\n11008,85.67196655273438\n11009,68.10368347167969\n11010,37.36342239379883\n11011,32.23642349243164\n11012,38.937625885009766\n11013,61.28472900390625\n11014,38.69316864013672\n11015,75.3904800415039\n11016,37.8261604309082\n11017,39.2727165222168\n11018,39.66109085083008\n11019,24.945941925048828\n11020,40.30937194824219\n11021,58.13008499145508\n11022,30.49257469177246\n11023,81.06462097167969\n11024,29.867822647094727\n11025,41.51436233520508\n11026,31.303129196166992\n11027,18.264606475830078\n11028,33.23863983154297\n11029,51.32300567626953\n11030,58.42139434814453\n11031,67.2546157836914\n11032,75.02758026123047\n11033,36.73465347290039\n11034,76.57838439941406\n11035,51.94239044189453\n11036,73.2117919921875\n11037,52.25395202636719\n11038,81.62930297851562\n11039,66.39215850830078\n11040,38.44548034667969\n11041,27.856332778930664\n11042,41.322654724121094\n11043,58.71559143066406\n11044,40.39530944824219\n11045,75.66404724121094\n11046,39.205326080322266\n11047,36.29508590698242\n11048,42.116180419921875\n11049,18.777040481567383\n11050,43.31957244873047\n11051,55.21672439575195\n11052,30.79302978515625\n11053,81.87310028076172\n11054,30.42269515991211\n11055,38.91743850708008\n11056,31.931289672851562\n11057,11.268978118896484\n11058,35.57804870605469\n11059,49.53788375854492\n11060,59.45066833496094\n11061,67.3949966430664\n11062,80.8049545288086\n11063,32.69782257080078\n11064,83.37353515625\n11065,50.17316818237305\n11066,78.87164306640625\n11067,50.93513107299805\n11068,86.1521987915039\n11069,65.9640884399414\n11070,36.31290054321289\n11071,28.664997100830078\n11072,37.267112731933594\n11073,58.428443908691406\n11074,37.64120101928711\n11075,74.07830810546875\n11076,37.23686981201172\n11077,36.341270446777344\n11078,38.1322021484375\n11079,20.54440689086914\n11080,38.449249267578125\n11081,55.23002243041992\n11082,28.732269287109375\n11083,80.25955963134766\n11084,29.154691696166992\n11085,38.69099426269531\n11086,29.248510360717773\n11087,13.954160690307617\n11088,30.794923782348633\n11089,47.4775505065918\n11090,56.91950607299805\n11091,64.26759338378906\n11092,75.5113754272461\n11093,31.842435836791992\n11094,76.27569580078125\n11095,47.867095947265625\n11096,73.29317474365234\n11097,48.09811782836914\n11098,80.66570281982422\n11099,65.95999908447266\n11100,35.11537551879883\n11101,26.78367042541504\n11102,36.03031539916992\n11103,57.78376388549805\n11104,36.1296501159668\n11105,73.9234619140625\n11106,35.98647689819336\n11107,34.67659378051758\n11108,36.66923904418945\n11109,18.576614379882812\n11110,37.31432342529297\n11111,54.34929275512695\n11112,26.317583084106445\n11113,80.38720703125\n11114,27.550931930541992\n11115,36.68144607543945\n11116,26.936437606811523\n11117,11.803410530090332\n11118,29.400714874267578\n11119,45.82034683227539\n11120,54.066314697265625\n11121,64.44767761230469\n11122,72.8728256225586\n11123,29.48912239074707\n11124,73.64788818359375\n11125,46.46247482299805\n11126,69.7325210571289\n11127,46.794185638427734\n11128,79.77555084228516\n11129,67.40283966064453\n11130,37.36348342895508\n11131,29.12143898010254\n11132,36.350894927978516\n11133,59.655494689941406\n11134,38.43959045410156\n11135,75.38701629638672\n11136,38.248756408691406\n11137,36.82220458984375\n11138,37.80834197998047\n11139,20.829879760742188\n11140,37.08000183105469\n11141,56.84003829956055\n11142,30.211585998535156\n11143,82.00511169433594\n11144,30.548357009887695\n11145,39.75303268432617\n11146,29.688154220581055\n11147,14.098649024963379\n11148,29.644617080688477\n11149,47.8637580871582\n11150,60.63318634033203\n11151,64.3789291381836\n11152,76.06729888916016\n11153,30.062070846557617\n11154,75.42738342285156\n11155,47.40089797973633\n11156,74.62496948242188\n11157,47.19328689575195\n11158,83.77464294433594\n11159,65.02606964111328\n11160,38.047332763671875\n11161,27.3560848236084\n11162,37.981021881103516\n11163,57.653446197509766\n11164,39.06279754638672\n11165,73.42928314208984\n11166,39.35361862182617\n11167,35.440101623535156\n11168,38.9991455078125\n11169,18.871618270874023\n11170,39.429141998291016\n11171,55.3790397644043\n11172,29.162424087524414\n11173,80.06073760986328\n11174,31.421871185302734\n11175,38.72560501098633\n11176,28.937297821044922\n11177,12.19139289855957\n11178,31.525270462036133\n11179,47.8214225769043\n11180,54.234073638916016\n11181,62.92393493652344\n11182,76.47447204589844\n11183,29.067283630371094\n11184,76.7125244140625\n11185,46.59653854370117\n11186,72.21565246582031\n11187,46.70585632324219\n11188,81.22008514404297\n11189,64.3684310913086\n11190,36.5677604675293\n11191,29.62891387939453\n11192,37.32148742675781\n11193,57.83796691894531\n11194,37.59956741333008\n11195,71.82329559326172\n11196,37.624717712402344\n11197,36.77305221557617\n11198,37.995243072509766\n11199,22.25431251525879\n11200,38.70896911621094\n11201,55.42323303222656\n11202,28.492416381835938\n11203,77.72309875488281\n11204,30.000886917114258\n11205,39.47605895996094\n11206,28.779319763183594\n11207,16.011293411254883\n11208,31.388715744018555\n11209,48.576053619384766\n11210,52.37591552734375\n11211,62.74327087402344\n11212,72.8141098022461\n11213,32.644065856933594\n11214,73.68061065673828\n11215,48.045372009277344\n11216,68.94660949707031\n11217,48.1449089050293\n11218,77.41973876953125\n11219,65.51761627197266\n11220,35.59608840942383\n11221,26.578134536743164\n11222,37.80425262451172\n11223,57.998687744140625\n11224,37.09309005737305\n11225,73.4787368774414\n11226,36.287994384765625\n11227,34.19734191894531\n11228,38.40299606323242\n11229,18.509693145751953\n11230,39.467613220214844\n11231,54.08055114746094\n11232,27.792034149169922\n11233,79.87822723388672\n11234,27.685794830322266\n11235,36.7480354309082\n11236,28.739336013793945\n11237,11.001751899719238\n11238,31.838428497314453\n11239,47.20844650268555\n11240,56.55530548095703\n11241,64.3733139038086\n11242,77.38323974609375\n11243,32.317989349365234\n11244,79.35130310058594\n11245,48.05949401855469\n11246,73.93574523925781\n11247,48.83661651611328\n11248,84.59894561767578\n11249,65.03719329833984\n11250,35.82369613647461\n11251,27.026840209960938\n11252,38.47299575805664\n11253,57.45741653442383\n11254,37.468048095703125\n11255,73.44315338134766\n11256,36.315269470214844\n11257,34.63628387451172\n11258,39.07707977294922\n11259,18.63673973083496\n11260,40.10475158691406\n11261,53.252838134765625\n11262,28.33650779724121\n11263,79.6196060180664\n11264,27.7735595703125\n11265,36.70936965942383\n11266,29.621326446533203\n11267,11.151437759399414\n11268,32.6873893737793\n11269,46.6207389831543\n11270,57.657875061035156\n11271,65.1160659790039\n11272,77.16078186035156\n11273,32.28810119628906\n11274,79.43099975585938\n11275,48.147857666015625\n11276,74.85475158691406\n11277,48.93529510498047\n11278,84.58711242675781\n11279,66.833251953125\n11280,33.395328521728516\n11281,26.46394157409668\n11282,33.86146926879883\n11283,58.180301666259766\n11284,34.41191864013672\n11285,75.62198638916016\n11286,34.459354400634766\n11287,34.93278503417969\n11288,34.708824157714844\n11289,17.78725814819336\n11290,35.03985595703125\n11291,54.622344970703125\n11292,24.37392234802246\n11293,82.25218200683594\n11294,25.694639205932617\n11295,36.59708023071289\n11296,25.01003646850586\n11297,11.216353416442871\n11298,26.56939125061035\n11299,44.81283187866211\n11300,52.958473205566406\n11301,65.10859680175781\n11302,72.10224914550781\n11303,28.413488388061523\n11304,72.32972717285156\n11305,45.88361740112305\n11306,69.4803466796875\n11307,46.00214385986328\n11308,77.9586181640625\n11309,66.30216217041016\n11310,37.88261795043945\n11311,29.419248580932617\n11312,38.07444381713867\n11313,58.73915100097656\n11314,39.0780143737793\n11315,74.85356140136719\n11316,39.0382080078125\n11317,37.14555740356445\n11318,39.120113372802734\n11319,20.861276626586914\n11320,39.17700958251953\n11321,55.6739387512207\n11322,29.747398376464844\n11323,81.35116577148438\n11324,31.063865661621094\n11325,39.77118682861328\n11326,29.922931671142578\n11327,14.381892204284668\n11328,31.278076171875\n11329,47.39470291137695\n11330,57.06404495239258\n11331,63.964820861816406\n11332,77.84916687011719\n11333,31.38140106201172\n11334,77.95819091796875\n11335,47.50346755981445\n11336,74.81322479248047\n11337,47.75456237792969\n11338,82.08942413330078\n11339,65.10881805419922\n11340,37.84765625\n11341,28.570537567138672\n11342,37.870548248291016\n11343,57.875038146972656\n11344,39.04202651977539\n11345,72.8858642578125\n11346,38.89131164550781\n11347,36.153602600097656\n11348,38.99003982543945\n11349,20.436737060546875\n11350,38.98316192626953\n11351,55.43632125854492\n11352,30.39643096923828\n11353,79.21605682373047\n11354,31.294973373413086\n11355,39.439674377441406\n11356,30.15852928161621\n11357,13.851336479187012\n11358,31.60607147216797\n11359,48.314884185791016\n11360,57.808162689208984\n11361,62.60573959350586\n11362,76.78329467773438\n11363,30.77485466003418\n11364,77.04348754882812\n11365,47.28020095825195\n11366,74.14788818359375\n11367,47.39805221557617\n11368,82.0039291381836\n11369,67.11748504638672\n11370,37.971153259277344\n11371,30.332265853881836\n11372,36.37214660644531\n11373,59.693721771240234\n11374,38.7807731628418\n11375,75.3100814819336\n11376,39.28529357910156\n11377,37.92226028442383\n11378,37.81135177612305\n11379,22.361299514770508\n11380,37.070674896240234\n11381,57.055580139160156\n11382,29.963111877441406\n11383,81.95391082763672\n11384,31.732271194458008\n11385,40.36772537231445\n11386,29.473115921020508\n11387,16.374189376831055\n11388,29.275209426879883\n11389,46.85055923461914\n11390,56.959224700927734\n11391,63.70507049560547\n11392,74.77922058105469\n11393,30.247135162353516\n11394,73.5226058959961\n11395,46.74592971801758\n11396,72.03096771240234\n11397,46.284698486328125\n11398,80.17078399658203\n11399,66.57970428466797\n11400,36.42737579345703\n11401,29.561603546142578\n11402,36.49745559692383\n11403,59.38307189941406\n11404,37.55580139160156\n11405,75.0391845703125\n11406,37.67125701904297\n11407,37.01990509033203\n11408,37.55326461791992\n11409,21.528295516967773\n11410,37.65349578857422\n11411,55.88401412963867\n11412,28.06019401550293\n11413,81.68627166748047\n11414,29.474353790283203\n11415,39.3799934387207\n11416,28.37509536743164\n11417,15.022852897644043\n11418,29.45768928527832\n11419,46.684226989746094\n11420,55.01265335083008\n11421,63.6059684753418\n11422,77.3211669921875\n11423,32.36417770385742\n11424,77.29759216308594\n11425,47.38399887084961\n11426,73.18669891357422\n11427,47.43229675292969\n11428,82.04869079589844\n11429,68.21075439453125\n11430,40.793888092041016\n11431,28.08240509033203\n11432,40.396610260009766\n11433,60.51457977294922\n11434,41.9502067565918\n11435,76.4339828491211\n11436,42.14961242675781\n11437,35.781272888183594\n11438,41.696998596191406\n11439,19.6420955657959\n11440,41.74655532836914\n11441,56.79689025878906\n11442,32.013427734375\n11443,83.84113311767578\n11444,33.928932189941406\n11445,39.33979034423828\n11446,31.669021606445312\n11447,12.128402709960938\n11448,33.705528259277344\n11449,47.82961654663086\n11450,60.89917755126953\n11451,64.66921997070312\n11452,84.28228759765625\n11453,30.899871826171875\n11454,84.2026138305664\n11455,47.72563552856445\n11456,79.06520080566406\n11457,47.78369903564453\n11458,91.94638061523438\n11459,66.62957000732422\n11460,40.672794342041016\n11461,29.28006362915039\n11462,42.71702575683594\n11463,59.2983283996582\n11464,42.182228088378906\n11465,74.68556213378906\n11466,41.32421112060547\n11467,36.73771667480469\n11468,43.37781524658203\n11469,21.052209854125977\n11470,44.2317008972168\n11471,55.68458557128906\n11472,33.08177185058594\n11473,80.92210388183594\n11474,33.214847564697266\n11475,39.3041877746582\n11476,33.90959930419922\n11477,13.786386489868164\n11478,36.98270797729492\n11479,49.158348083496094\n11480,61.2149543762207\n11481,66.30196380615234\n11482,80.66722106933594\n11483,33.529903411865234\n11484,82.4813232421875\n11485,49.82376480102539\n11486,77.9720230102539\n11487,50.52692413330078\n11488,87.557373046875\n11489,66.48530578613281\n11490,39.737064361572266\n11491,29.433298110961914\n11492,41.25342559814453\n11493,59.16288757324219\n11494,41.08417892456055\n11495,74.81063079833984\n11496,40.512535095214844\n11497,37.174686431884766\n11498,41.945274353027344\n11499,21.086631774902344\n11500,42.7323112487793\n11501,56.17061233520508\n11502,31.690654754638672\n11503,81.02751159667969\n11504,32.449710845947266\n11505,39.67924499511719\n11506,32.33341979980469\n11507,14.17841911315918\n11508,35.26776885986328\n11509,49.29118347167969\n11510,58.26719665527344\n11511,66.15593719482422\n11512,77.84385681152344\n11513,32.53208541870117\n11514,79.27302551269531\n11515,49.46334457397461\n11516,75.06270599365234\n11517,49.973548889160156\n11518,83.6715316772461\n11519,72.15684509277344\n11520,42.20911407470703\n11521,31.58405113220215\n11522,42.7072868347168\n11523,64.2948989868164\n11524,43.4626350402832\n11525,80.83358764648438\n11526,43.20126724243164\n11527,39.75861358642578\n11528,43.887855529785156\n11529,22.800579071044922\n11530,44.44375228881836\n11531,60.957374572753906\n11532,33.356048583984375\n11533,87.77474212646484\n11534,34.40611267089844\n11535,42.916072845458984\n11536,33.54817199707031\n11537,15.241348266601562\n11538,36.222415924072266\n11539,52.79646682739258\n11540,62.3359260559082\n11541,70.50498962402344\n11542,84.63563537597656\n11543,34.82759094238281\n11544,85.5380630493164\n11545,52.778072357177734\n11546,80.72730255126953\n11547,53.02569580078125\n11548,91.79095458984375\n11549,64.4963150024414\n11550,40.162879943847656\n11551,29.22071075439453\n11552,41.743309020996094\n11553,57.228065490722656\n11554,41.521724700927734\n11555,72.48668670654297\n11556,40.62290954589844\n11557,36.653846740722656\n11558,42.4028205871582\n11559,20.97454833984375\n11560,42.84811019897461\n11561,54.44577407836914\n11562,33.147132873535156\n11563,78.2635269165039\n11564,32.992958068847656\n11565,38.9343376159668\n11566,33.8447380065918\n11567,14.48546314239502\n11568,35.87039566040039\n11569,48.135528564453125\n11570,60.19970703125\n11571,64.45925903320312\n11572,76.44454193115234\n11573,31.878047943115234\n11574,77.8448715209961\n11575,48.30451202392578\n11576,75.43775177001953\n11577,48.96755599975586\n11578,81.84466552734375\n11579,70.04354095458984\n11580,41.56319808959961\n11581,30.94639015197754\n11582,42.3690185546875\n11583,62.03194808959961\n11584,42.873329162597656\n11585,78.21826934814453\n11586,42.02445602416992\n11587,38.867431640625\n11588,43.422061920166016\n11589,22.287429809570312\n11590,43.70247268676758\n11591,58.82585525512695\n11592,33.93049621582031\n11593,84.63572692871094\n11594,33.84843826293945\n11595,41.47931671142578\n11596,34.18492126464844\n11597,14.872888565063477\n11598,36.5153694152832\n11599,51.3687629699707\n11600,63.93928527832031\n11601,69.74968719482422\n11602,79.50823974609375\n11603,32.954078674316406\n11604,80.62444305419922\n11605,51.52437210083008\n11606,78.16732788085938\n11607,51.90304183959961\n11608,89.08638000488281\n11609,68.10368347167969\n11610,37.36342239379883\n11611,32.23642349243164\n11612,38.937625885009766\n11613,61.28472900390625\n11614,38.69316864013672\n11615,75.3904800415039\n11616,37.8261604309082\n11617,39.2727165222168\n11618,39.66109085083008\n11619,24.945941925048828\n11620,40.30937194824219\n11621,58.13008499145508\n11622,30.49257469177246\n11623,81.06462097167969\n11624,29.867822647094727\n11625,41.51436233520508\n11626,31.303129196166992\n11627,18.264606475830078\n11628,33.23863983154297\n11629,51.32300567626953\n11630,58.42139434814453\n11631,67.2546157836914\n11632,75.02758026123047\n11633,36.73465347290039\n11634,76.57838439941406\n11635,51.94239044189453\n11636,73.2117919921875\n11637,52.25395202636719\n11638,81.62930297851562\n11639,66.49229431152344\n11640,36.842308044433594\n11641,28.739892959594727\n11642,36.501216888427734\n11643,59.07591247558594\n11644,37.99164962768555\n11645,74.25357055664062\n11646,37.89608383178711\n11647,36.098087310791016\n11648,37.73081970214844\n11649,20.88568878173828\n11650,37.439422607421875\n11651,55.75423049926758\n11652,29.33171844482422\n11653,80.8990249633789\n11654,30.082338333129883\n11655,38.89093780517578\n11656,29.195858001708984\n11657,14.152152061462402\n11658,29.869539260864258\n11659,46.907257080078125\n11660,58.578250885009766\n11661,63.25136947631836\n11662,77.08919525146484\n11663,31.246801376342773\n11664,76.90632629394531\n11665,47.06570816040039\n11666,74.1700668334961\n11667,46.972984313964844\n11668,83.95828247070312\n11669,65.86647033691406\n11670,36.81038284301758\n11671,28.277427673339844\n11672,37.77272415161133\n11673,58.46601867675781\n11674,38.33080291748047\n11675,74.27957153320312\n11676,37.75642013549805\n11677,35.77229309082031\n11678,38.84206008911133\n11679,19.979881286621094\n11680,39.01689147949219\n11681,54.58448028564453\n11682,29.443309783935547\n11683,80.83706665039062\n11684,29.564313888549805\n11685,38.43168258666992\n11686,29.93505859375\n11687,12.949509620666504\n11688,31.234704971313477\n11689,46.68294906616211\n11690,59.124813079833984\n11691,63.510398864746094\n11692,80.23805236816406\n11693,32.41918182373047\n11694,81.01130676269531\n11695,47.53155517578125\n11696,77.29878234863281\n11697,47.865413665771484\n11698,85.89336395263672\n11699,65.55856323242188\n11700,36.81593704223633\n11701,28.892885208129883\n11702,37.4830207824707\n11703,57.81572341918945\n11704,38.48306655883789\n11705,73.92745208740234\n11706,37.272361755371094\n11707,36.81689453125\n11708,38.86874008178711\n11709,20.34320640563965\n11710,38.34519577026367\n11711,55.00160217285156\n11712,31.17817497253418\n11713,79.79495239257812\n11714,29.692089080810547\n11715,39.073577880859375\n11716,31.461341857910156\n11717,13.634305953979492\n11718,31.574918746948242\n11719,47.85337448120117\n11720,62.26762390136719\n11721,65.15413665771484\n11722,74.2695541381836\n11723,30.53300666809082\n11724,74.98995208740234\n11725,48.05319595336914\n11726,75.73088836669922\n11727,48.21341323852539\n11728,81.53836822509766\n11729,66.95503234863281\n11730,35.99747848510742\n11731,28.77994728088379\n11732,37.513633728027344\n11733,59.537864685058594\n11734,37.32476043701172\n11735,75.1446762084961\n11736,36.91230773925781\n11737,36.55780029296875\n11738,38.21269989013672\n11739,20.842967987060547\n11740,39.07331466674805\n11741,56.09584426879883\n11742,27.80164909362793\n11743,81.43367004394531\n11744,28.412565231323242\n11745,38.726009368896484\n11746,28.612110137939453\n11747,13.888409614562988\n11748,31.270584106445312\n11749,48.34749984741211\n11750,55.034175872802734\n11751,65.95478057861328\n11752,75.15018463134766\n11753,32.937435150146484\n11754,76.50682067871094\n11755,49.125274658203125\n11756,71.837646484375\n11757,49.45654296875\n11758,81.6143798828125\n11759,64.3796157836914\n11760,34.73137283325195\n11761,28.41703224182129\n11762,36.33989715576172\n11763,57.12077331542969\n11764,36.38960266113281\n11765,72.44697570800781\n11766,35.27070617675781\n11767,36.140682220458984\n11768,37.32624053955078\n11769,20.162002563476562\n11770,37.631412506103516\n11771,54.34627914428711\n11772,28.46715545654297\n11773,78.10813903808594\n11774,27.477754592895508\n11775,38.74412536621094\n11776,29.048053741455078\n11777,13.41695499420166\n11778,30.68990707397461\n11779,48.54110336303711\n11780,57.7071418762207\n11781,64.0203628540039\n11782,73.41312408447266\n11783,31.938222885131836\n11784,74.98304748535156\n11785,48.44031524658203\n11786,73.24156188964844\n11787,48.781131744384766\n11788,79.24009704589844\n11789,65.33554077148438\n11790,37.228023529052734\n11791,30.0441951751709\n11792,36.98889923095703\n11793,58.135833740234375\n11794,38.36177444458008\n11795,73.40935516357422\n11796,38.18169021606445\n11797,37.48460006713867\n11798,38.19611358642578\n11799,21.94557762145996\n11800,37.87723159790039\n11801,55.53562927246094\n11802,30.058244705200195\n11803,79.48855590820312\n11804,30.72028160095215\n11805,40.03739929199219\n11806,30.037303924560547\n11807,15.84952163696289\n11808,30.502483367919922\n11809,47.57041931152344\n11810,57.47618103027344\n11811,63.089805603027344\n11812,74.8475112915039\n11813,31.4031925201416\n11814,74.7656021118164\n11815,47.34983444213867\n11816,73.2188491821289\n11817,47.30760192871094\n11818,79.37120056152344\n11819,65.09407806396484\n11820,36.18129348754883\n11821,28.892364501953125\n11822,37.474056243896484\n11823,58.20834732055664\n11824,37.44876480102539\n11825,72.60791778564453\n11826,37.04963684082031\n11827,36.22109603881836\n11828,38.182891845703125\n11829,21.472740173339844\n11830,38.93001937866211\n11831,55.29187774658203\n11832,28.62763786315918\n11833,78.55563354492188\n11834,29.123918533325195\n11835,38.68686294555664\n11836,29.183887481689453\n11837,14.865538597106934\n11838,31.6209659576416\n11839,48.35715103149414\n11840,54.79511642456055\n11841,63.86918258666992\n11842,73.57778930664062\n11843,32.90291976928711\n11844,74.86328887939453\n11845,48.49317932128906\n11846,70.61687469482422\n11847,48.737586975097656\n11848,79.37924194335938\n11849,64.3684310913086\n11850,36.5677604675293\n11851,29.62891387939453\n11852,37.32148742675781\n11853,57.83796691894531\n11854,37.59956741333008\n11855,71.82329559326172\n11856,37.624717712402344\n11857,36.77305221557617\n11858,37.995243072509766\n11859,22.25431251525879\n11860,38.70896911621094\n11861,55.42323303222656\n11862,28.492416381835938\n11863,77.72309875488281\n11864,30.000886917114258\n11865,39.47605895996094\n11866,28.779319763183594\n11867,16.011293411254883\n11868,31.388715744018555\n11869,48.576053619384766\n11870,52.37591552734375\n11871,62.74327087402344\n11872,72.8141098022461\n11873,32.644065856933594\n11874,73.68061065673828\n11875,48.045372009277344\n11876,68.94660949707031\n11877,48.1449089050293\n11878,77.41973876953125\n11879,66.94661712646484\n11880,36.43915939331055\n11881,29.57463264465332\n11882,36.59201431274414\n11883,59.056087493896484\n11884,38.0035400390625\n11885,74.88103485107422\n11886,36.898094177246094\n11887,37.956764221191406\n11888,38.14748764038086\n11889,20.79937171936035\n11890,37.57875442504883\n11891,57.73438262939453\n11892,30.791004180908203\n11893,80.44500732421875\n11894,29.102083206176758\n11895,41.40757369995117\n11896,30.42262077331543\n11897,14.211189270019531\n11898,30.594079971313477\n11899,52.125938415527344\n11900,61.97764205932617\n11901,65.82933807373047\n11902,74.34127044677734\n11903,31.002700805664062\n11904,75.08307647705078\n11905,49.97866439819336\n11906,76.27534484863281\n11907,50.10123825073242\n11908,80.3750228881836\n11909,66.47460174560547\n11910,41.7061882019043\n11911,31.028827667236328\n11912,36.91421127319336\n11913,59.134132385253906\n11914,42.08640670776367\n11915,74.32371520996094\n11916,43.56291961669922\n11917,38.676025390625\n11918,39.23495864868164\n11919,22.3822021484375\n11920,37.0738639831543\n11921,58.634159088134766\n11922,33.64133834838867\n11923,81.21835327148438\n11924,36.762210845947266\n11925,43.477901458740234\n11926,31.12710952758789\n11927,17.12253189086914\n11928,28.853023529052734\n11929,48.9132194519043\n11930,60.60219192504883\n11931,59.16960906982422\n11932,80.82624816894531\n11933,27.80528450012207\n11934,77.30767059326172\n11935,45.00638961791992\n11936,77.82552337646484\n11937,44.06721115112305\n11938,82.12727355957031\n11939,68.806640625\n11940,37.57649230957031\n11941,31.097490310668945\n11942,37.49665832519531\n11943,61.46444320678711\n11944,38.76670837402344\n11945,77.513916015625\n11946,38.99549865722656\n11947,38.829742431640625\n11948,38.643890380859375\n11949,23.11018180847168\n11950,38.65576171875\n11951,57.97279739379883\n11952,29.07777976989746\n11953,84.2455825805664\n11954,30.58721923828125\n11955,40.915740966796875\n11956,29.461339950561523\n11957,16.774106979370117\n11958,30.08967399597168\n11959,47.91280746459961\n11960,56.162696838378906\n11961,65.76239013671875\n11962,78.90648651123047\n11963,33.72867965698242\n11964,78.65401458740234\n11965,48.9196662902832\n11966,74.87062072753906\n11967,48.7890625\n11968,82.78248596191406\n11969,65.38935089111328\n11970,37.549781799316406\n11971,28.574756622314453\n11972,38.26520919799805\n11973,57.866119384765625\n11974,39.14611053466797\n11975,73.08673095703125\n11976,38.07712173461914\n11977,36.38985824584961\n11978,39.559139251708984\n11979,20.107215881347656\n11980,39.344051361083984\n11981,55.803890228271484\n11982,31.61030387878418\n11983,78.92134857177734\n11984,30.23762321472168\n11985,39.88121032714844\n11986,31.556610107421875\n11987,13.357239723205566\n11988,32.14566421508789\n11989,50.16035079956055\n11990,62.2972526550293\n11991,63.46980285644531\n11992,77.97152709960938\n11993,31.85453224182129\n11994,78.98357391357422\n11995,48.738956451416016\n11996,78.07544708251953\n11997,49.19484329223633\n11998,83.09956359863281\n11999,66.48601531982422\n12000,38.34787368774414\n12001,31.360549926757812\n12002,38.150753021240234\n12003,59.182830810546875\n12004,39.4200439453125\n12005,74.38855743408203\n12006,39.3843879699707\n12007,37.92726135253906\n12008,39.24774169921875\n12009,24.024600982666016\n12010,38.65782165527344\n12011,54.538455963134766\n12012,30.793333053588867\n12013,80.76637268066406\n12014,31.54690933227539\n12015,39.06769943237305\n12016,31.5491886138916\n12017,18.23540687561035\n12018,30.469438552856445\n12019,43.654232025146484\n12020,59.9834098815918\n12021,62.46382522583008\n12022,80.1466064453125\n12023,34.198158264160156\n12024,79.42926788330078\n12025,46.3868408203125\n12026,77.16580200195312\n12027,46.47461700439453\n12028,83.69632720947266\n12029,74.73849487304688\n12030,43.8481559753418\n12031,46.30848693847656\n12032,42.86238479614258\n12033,68.74890899658203\n12034,44.86106491088867\n12035,81.37596893310547\n12036,44.33525466918945\n12037,52.764652252197266\n12038,44.47726821899414\n12039,39.23159408569336\n12040,43.827667236328125\n12041,68.11075592041016\n12042,38.36542892456055\n12043,85.56643676757812\n12044,37.360408782958984\n12045,55.514217376708984\n12046,38.021583557128906\n12047,34.868499755859375\n12048,36.96921157836914\n12049,62.79548263549805\n12050,63.12644958496094\n12051,72.91727447509766\n12052,77.78376007080078\n12053,46.819698333740234\n12054,77.73069763183594\n12055,61.07789611816406\n12056,78.87584686279297\n12057,60.88616180419922\n12058,78.50691223144531\n12059,66.36726379394531\n12060,33.50539016723633\n12061,30.944965362548828\n12062,42.84221649169922\n12063,58.425018310546875\n12064,36.92243194580078\n12065,75.34728240966797\n12066,32.20309829711914\n12067,38.545928955078125\n12068,42.49430465698242\n12069,23.403038024902344\n12070,45.03126525878906\n12071,51.418663024902344\n12072,30.068567276000977\n12073,79.1136245727539\n12074,22.818145751953125\n12075,35.773433685302734\n12076,35.544532775878906\n12077,15.79549503326416\n12078,38.849361419677734\n12079,47.324180603027344\n12080,64.52418518066406\n12081,75.4494400024414\n12082,72.19032287597656\n12083,41.37672805786133\n12084,79.53498840332031\n12085,55.38914489746094\n12086,78.09346771240234\n12087,56.625179290771484\n12088,82.63668823242188\n12089,67.24726867675781\n12090,36.79439926147461\n12091,28.724287033081055\n12092,34.937774658203125\n12093,59.01932907104492\n12094,37.998565673828125\n12095,75.66831970214844\n12096,37.99955749511719\n12097,36.666786193847656\n12098,36.85307693481445\n12099,20.07473373413086\n12100,35.38602828979492\n12101,56.05180358886719\n12102,29.8985652923584\n12103,82.43946075439453\n12104,30.127525329589844\n12105,39.526329040527344\n12106,29.2303524017334\n12107,13.85356330871582\n12108,27.148975372314453\n12109,45.88410568237305\n12110,62.26015853881836\n12111,62.268280029296875\n12112,79.86885833740234\n12113,29.54679298400879\n12114,78.32777404785156\n12115,45.68269729614258\n12116,78.8656005859375\n12117,45.333744049072266\n12118,84.1439437866211\n12119,66.62615203857422\n12120,43.33363723754883\n12121,34.4693603515625\n12122,41.0609016418457\n12123,59.900787353515625\n12124,44.21565628051758\n12125,72.58602905273438\n12126,43.59834289550781\n12127,42.032493591308594\n12128,43.150634765625\n12129,24.613298416137695\n12130,41.858821868896484\n12131,62.82289123535156\n12132,37.912261962890625\n12133,50.91693878173828\n12134,34.7647819519043\n12135,18.553285598754883\n12136,35.26825714111328\n12137,64.47374725341797\n12138,67.02640533447266\n12139,61.86705780029297\n12140,86.2079849243164\n12141,33.83016586303711\n12142,86.16728210449219\n12143,53.87205123901367\n12144,87.14707946777344\n12145,54.10138702392578\n12146,87.95634460449219\n12147,68.9336929321289\n12148,35.31028747558594\n12149,28.365610122680664\n12150,35.19191360473633\n12151,59.980445861816406\n12152,37.122474670410156\n12153,78.17332458496094\n12154,35.86061477661133\n12155,37.62490463256836\n12156,36.96495819091797\n12157,18.814523696899414\n12158,35.904701232910156\n12159,57.549983978271484\n12160,29.54502296447754\n12161,84.44198608398438\n12162,27.646835327148438\n12163,40.10930252075195\n12164,29.330692291259766\n12165,11.773604393005371\n12166,28.472322463989258\n12167,49.41394805908203\n12168,63.993011474609375\n12169,68.19141387939453\n12170,74.6214828491211\n12171,28.495635986328125\n12172,74.677490234375\n12173,48.88109588623047\n12174,77.5184097290039\n12175,48.868228912353516\n12176,83.02215576171875\n12177,63.63522720336914\n12178,36.1849365234375\n12179,28.91246795654297\n12180,40.130958557128906\n12181,56.746246337890625\n12182,37.96444320678711\n12183,71.13660430908203\n12184,35.82261276245117\n12185,36.453529357910156\n12186,40.4239616394043\n12187,20.946514129638672\n12188,41.998817443847656\n12189,54.363189697265625\n12190,30.391141891479492\n12191,75.85908508300781\n12192,28.015199661254883\n12193,38.58633804321289\n12194,31.897579193115234\n12195,13.784658432006836\n12196,36.146942138671875\n12197,51.530357360839844\n12198,57.36991500854492\n12199,67.17060089111328\n12200,69.7777099609375\n12201,33.83554458618164\n12202,73.80535125732422\n12203,51.456302642822266\n12204,70.81729125976562\n12205,52.459957122802734\n12206,78.14203643798828\n12207,66.51258850097656\n12208,37.336002349853516\n12209,31.326828002929688\n12210,35.931941986083984\n12211,59.51641845703125\n12212,38.44862365722656\n12213,74.20378112792969\n12214,38.34739685058594\n12215,39.00977325439453\n12216,37.64401626586914\n12217,23.255050659179688\n12218,36.75482177734375\n12219,58.30572509765625\n12220,30.889894485473633\n12221,80.0810317993164\n12222,31.073097229003906\n12223,42.63287353515625\n12224,29.94800567626953\n12225,17.310596466064453\n12226,29.459787368774414\n12227,51.20782470703125\n12228,59.1397819519043\n12229,63.33669662475586\n12230,74.84036254882812\n12231,31.771333694458008\n12232,74.2117691040039\n12233,48.901344299316406\n12234,74.36125946044922\n12235,48.428138732910156\n12236,78.83727264404297\n12237,64.44081115722656\n12238,31.904605865478516\n12239,31.332653045654297\n12240,41.247135162353516\n12241,57.33375549316406\n12242,35.397769927978516\n12243,72.52633666992188\n12244,30.448341369628906\n12245,38.44698715209961\n12246,41.02848815917969\n12247,24.325210571289062\n12248,43.569915771484375\n12249,51.02279281616211\n12250,29.5357666015625\n12251,75.7476806640625\n12252,21.59902572631836\n12253,36.614784240722656\n12254,34.689842224121094\n12255,16.899662017822266\n12256,38.031700134277344\n12257,48.845428466796875\n12258,63.26826095581055\n12259,73.0079574584961\n12260,70.72445678710938\n12261,42.81631088256836\n12262,78.33409118652344\n12263,55.79963302612305\n12264,76.87023162841797\n12265,57.194000244140625\n12266,80.03855895996094\n12267,67.40306854248047\n12268,36.394500732421875\n12269,26.218910217285156\n12270,38.42748260498047\n12271,58.9625244140625\n12272,38.23921585083008\n12273,76.51567840576172\n12274,37.07445526123047\n12275,35.27957534790039\n12276,39.496395111083984\n12277,16.680757522583008\n12278,40.264644622802734\n12279,56.29282760620117\n12280,28.775304794311523\n12281,82.83724212646484\n12282,27.786455154418945\n12283,38.61848831176758\n12284,29.34279441833496\n12285,9.034601211547852\n12286,31.985422134399414\n12287,50.747291564941406\n12288,60.204898834228516\n12289,66.89392852783203\n12290,80.72046661376953\n12291,31.034147262573242\n12292,82.92790985107422\n12293,49.86442947387695\n12294,79.66819763183594\n12295,50.47663116455078\n12296,86.05059814453125\n12297,67.87366485595703\n12298,37.779541015625\n12299,30.81438636779785\n12300,36.37873077392578\n12301,59.864585876464844\n12302,38.704368591308594\n12303,75.47559356689453\n12304,38.405487060546875\n12305,38.832855224609375\n12306,37.82978057861328\n12307,22.286964416503906\n12308,36.852134704589844\n12309,58.64619445800781\n12310,31.006383895874023\n12311,81.43648529052734\n12312,30.978086471557617\n12313,42.049705505371094\n12314,30.049015045166016\n12315,16.145166397094727\n12316,29.774858474731445\n12317,51.118629455566406\n12318,60.498985290527344\n12319,65.43297576904297\n12320,72.17665100097656\n12321,29.833995819091797\n12322,71.38581848144531\n12323,48.86380386352539\n12324,72.84353637695312\n12325,48.83406448364258\n12326,78.99854278564453\n12327,68.99365997314453\n12328,39.922508239746094\n12329,33.16142272949219\n12330,35.68553924560547\n12331,61.42867660522461\n12332,40.43893051147461\n12333,76.20726013183594\n12334,41.0118522644043\n12335,41.368412017822266\n12336,38.04266357421875\n12337,24.054885864257812\n12338,36.082523345947266\n12339,47.426151275634766\n12340,29.782772064208984\n12341,57.03047561645508\n12342,61.4389533996582\n12343,63.4680290222168\n12344,76.86739349365234\n12345,29.66924285888672\n12346,74.53385162353516\n12347,50.2145881652832\n12348,76.69163513183594\n12349,49.56119155883789\n12350,81.09828186035156\n12351,64.19941711425781\n12352,37.688926696777344\n12353,29.79228401184082\n12354,35.0889778137207\n12355,56.53587341308594\n12356,38.46528625488281\n12357,71.64723205566406\n12358,38.42496871948242\n12359,37.44314193725586\n12360,37.02158737182617\n12361,21.446704864501953\n12362,35.204193115234375\n12363,55.84172821044922\n12364,31.7518253326416\n12365,77.42759704589844\n12366,31.795419692993164\n12367,40.78770446777344\n12368,30.38053321838379\n12369,16.030969619750977\n12370,28.457290649414062\n12371,48.02642822265625\n12372,60.24176788330078\n12373,60.83489990234375\n12374,70.922119140625\n12375,27.44478988647461\n12376,69.23696899414062\n12377,45.39269256591797\n12378,72.4063949584961\n12379,45.165489196777344\n12380,75.91851043701172\n12381,65.8382568359375\n12382,39.361968994140625\n12383,30.41721534729004\n12384,39.5263671875\n12385,58.077022552490234\n12386,40.76523971557617\n12387,74.15242004394531\n12388,39.896820068359375\n12389,21.829225540161133\n12390,40.45087814331055\n12391,56.0997428894043\n12392,32.958160400390625\n12393,79.77670288085938\n12394,32.11561584472656\n12395,49.13828659057617\n12396,61.645057678222656\n12397,65.00259399414062\n12398,76.35282897949219\n12399,31.252511978149414\n12400,76.79273986816406\n12401,48.588172912597656\n12402,77.29497528076172\n12403,48.756011962890625\n12404,80.62195587158203\n12405,66.88863372802734\n12406,33.3176155090332\n12407,27.24087905883789\n12408,38.680137634277344\n12409,58.62747573852539\n12410,36.17378616333008\n12411,75.94673919677734\n12412,32.95760726928711\n12413,36.892723083496094\n12414,39.30817794799805\n12415,17.622373580932617\n12416,40.96843338012695\n12417,56.612300872802734\n12418,28.36273193359375\n12419,39.650150299072266\n12420,30.017803192138672\n12421,9.395364761352539\n12422,34.43675231933594\n12423,55.41427230834961\n12424,61.2244873046875\n12425,71.96239471435547\n12426,72.48040771484375\n12427,33.13362503051758\n12428,77.63631439208984\n12429,54.47761535644531\n12430,76.63812255859375\n12431,55.695499420166016\n12432,81.32098388671875\n12433,72.79705047607422\n12434,32.88936233520508\n12435,29.35692596435547\n12436,35.36731719970703\n12437,62.59326934814453\n12438,35.283416748046875\n12439,83.78150939941406\n12440,33.093379974365234\n12441,39.29848098754883\n12442,36.67863082885742\n12443,19.238025665283203\n12444,36.41854476928711\n12445,57.32875061035156\n12446,26.4619083404541\n12447,38.65090560913086\n12448,28.57520294189453\n12449,46.70213317871094\n12450,63.868690490722656\n12451,74.9246597290039\n12452,75.79508972167969\n12453,31.700035095214844\n12454,77.4874038696289\n12455,51.190059661865234\n12456,79.65133666992188\n12457,51.40129089355469\n12458,85.15202331542969\n12459,65.6657943725586\n12460,32.897708892822266\n12461,28.79696273803711\n12462,39.26482391357422\n12463,57.592105865478516\n12464,35.99169921875\n12465,74.8594741821289\n12466,32.31651306152344\n12467,36.84116744995117\n12468,39.75400924682617\n12469,20.46744728088379\n12470,41.04774856567383\n12471,51.83989334106445\n12472,29.043292999267578\n12473,79.56378173828125\n12474,23.205678939819336\n12475,36.1994514465332\n12476,32.68852996826172\n12477,13.043901443481445\n12478,34.179561614990234\n12479,46.751258850097656\n12480,64.18302917480469\n12481,70.50626373291016\n12482,75.77841186523438\n12483,37.431453704833984\n12484,80.78697967529297\n12485,52.16753005981445\n12486,80.22571563720703\n12487,53.206478118896484\n12488,83.25373077392578\n12489,67.54827117919922\n12490,36.05733108520508\n12491,29.936717987060547\n12492,36.37294006347656\n12493,60.20723342895508\n12494,37.470909118652344\n12495,75.98687744140625\n12496,37.076698303222656\n12497,38.13637161254883\n12498,37.66275405883789\n12499,21.584028244018555\n12500,37.75374221801758\n12501,58.04188537597656\n12502,28.867280960083008\n12503,82.08538055419922\n12504,28.843595504760742\n12505,41.214599609375\n12506,28.922380447387695\n12507,15.02769660949707\n12508,29.874897003173828\n12509,50.88170623779297\n12510,57.24457931518555\n12511,65.71289825439453\n12512,76.12834167480469\n12513,32.8150520324707\n12514,76.75016021728516\n12515,49.94667053222656\n12516,74.62064361572266\n12517,49.8623161315918\n12518,80.18819427490234\n12519,65.10134887695312\n12520,37.472999572753906\n12521,33.49472427368164\n12522,40.29631805419922\n12523,59.322120666503906\n12524,38.86456298828125\n12525,70.69519805908203\n12526,37.082759857177734\n12527,38.6898307800293\n12528,40.51289367675781\n12529,27.12565803527832\n12530,41.283111572265625\n12531,55.27303695678711\n12532,31.861572265625\n12533,75.71243286132812\n12534,29.844755172729492\n12535,41.51747512817383\n12536,33.09591293334961\n12537,20.3173770904541\n12538,35.05592727661133\n12539,51.30642318725586\n12540,61.51020431518555\n12541,63.25519943237305\n12542,79.74113464355469\n12543,40.890384674072266\n12544,82.18328857421875\n12545,52.06007766723633\n12546,77.40360260009766\n12547,52.982826232910156\n12548,86.74280548095703\n12549,70.7389144897461\n12550,35.97621154785156\n12551,30.43777847290039\n12552,36.92914581298828\n12553,61.77827835083008\n12554,37.36850357055664\n12555,80.5038070678711\n12556,36.84870910644531\n12557,38.97911071777344\n12558,37.99124526977539\n12559,21.399799346923828\n12560,37.987056732177734\n12561,57.02119064331055\n12562,27.493026733398438\n12563,87.16403198242188\n12564,27.740192413330078\n12565,39.26301193237305\n12566,28.86124610900879\n12567,14.737142562866211\n12568,29.272886276245117\n12569,45.85059356689453\n12570,58.37208557128906\n12571,70.20482635498047\n12572,76.38665008544922\n12573,32.126258850097656\n12574,76.80750274658203\n12575,49.08122634887695\n12576,75.2251968383789\n12577,49.287227630615234\n12578,83.16785430908203\n12579,63.57223129272461\n12580,36.99207305908203\n12581,34.10155487060547\n12582,34.828941345214844\n12583,57.366310119628906\n12584,37.59423828125\n12585,71.0852279663086\n12586,37.86211013793945\n12587,39.95187759399414\n12588,36.43302917480469\n12589,27.597017288208008\n12590,34.92382049560547\n12591,54.072181701660156\n12592,30.39569664001465\n12593,76.6294937133789\n12594,31.331859588623047\n12595,40.605133056640625\n12596,30.492626190185547\n12597,42.686737060546875\n12598,55.79656219482422\n12599,59.98040008544922\n12600,70.28303527832031\n12601,33.261531829833984\n12602,68.343505859375\n12603,44.89860534667969\n12604,69.17952728271484\n12605,44.33285903930664\n12606,73.49071502685547\n12607,66.00828552246094\n12608,37.628395080566406\n12609,30.806499481201172\n12610,37.048728942871094\n12611,58.337730407714844\n12612,38.977806091308594\n12613,75.2670669555664\n12614,38.80344772338867\n12615,38.474212646484375\n12616,38.603363037109375\n12617,22.315183639526367\n12618,37.54983901977539\n12619,54.62947082519531\n12620,30.49773597717285\n12621,81.53328704833984\n12622,30.937522888183594\n12623,39.97279739379883\n12624,30.900815963745117\n12625,16.726905822753906\n12626,29.135862350463867\n12627,44.471187591552734\n12628,60.19602584838867\n12629,62.94153594970703\n12630,79.84830474853516\n12631,31.9106502532959\n12632,78.9174575805664\n12633,46.17073440551758\n12634,78.9620361328125\n12635,46.079750061035156\n12636,81.39129638671875\n12637,65.5891342163086\n12638,38.90101623535156\n12639,28.832551956176758\n12640,36.26270294189453\n12641,57.979270935058594\n12642,39.28815841674805\n12643,72.75086975097656\n12644,39.85606002807617\n12645,36.397193908691406\n12646,37.710269927978516\n12647,20.653850555419922\n12648,36.6875\n12649,56.778045654296875\n12650,30.864070892333984\n12651,79.28739166259766\n12652,32.84015655517578\n12653,40.214778900146484\n12654,29.262161254882812\n12655,14.529759407043457\n12656,29.48756980895996\n12657,48.4503288269043\n12658,57.704505920410156\n12659,61.54758834838867\n12660,72.94499969482422\n12661,27.051584243774414\n12662,71.27286529541016\n12663,45.61355209350586\n12664,70.64793395996094\n12665,45.21736526489258\n12666,80.16107177734375\n12667,66.68997192382812\n12668,35.241943359375\n12669,30.390779495239258\n12670,34.93805694580078\n12671,58.66032409667969\n12672,36.77436447143555\n12673,75.7830581665039\n12674,36.03224563598633\n12675,38.415008544921875\n12676,36.663230895996094\n12677,21.915645599365234\n12678,35.569244384765625\n12679,55.17049026489258\n12680,29.088754653930664\n12681,81.80577087402344\n12682,28.162702560424805\n12683,39.35749435424805\n12684,29.632648468017578\n12685,45.194244384765625\n12686,60.13140106201172\n12687,65.34308624267578\n12688,73.51765441894531\n12689,30.944393157958984\n12690,73.12527465820312\n12691,47.05679702758789\n12692,74.95265197753906\n12693,46.86381912231445\n12694,78.66570281982422\n12695,68.29015350341797\n12696,34.763729095458984\n12697,28.324888229370117\n12698,36.21001052856445\n12699,59.925201416015625\n12700,36.123619079589844\n12701,76.98613739013672\n12702,35.11912155151367\n12703,36.726036071777344\n12704,36.831871032714844\n12705,19.68119239807129\n12706,37.17182540893555\n12707,56.47496795654297\n12708,27.075637817382812\n12709,83.33422088623047\n12710,26.533226013183594\n12711,38.29882049560547\n12712,27.83272933959961\n12713,12.448094367980957\n12714,29.647621154785156\n12715,48.15692138671875\n12716,57.53409957885742\n12717,68.6804428100586\n12718,70.62789916992188\n12719,30.05489730834961\n12720,71.60482025146484\n12721,48.980220794677734\n12722,70.313720703125\n12723,49.46403884887695\n12724,81.1310043334961\n12725,64.82145690917969\n12726,38.13147735595703\n12727,28.10601234436035\n12728,36.00004196166992\n12729,57.235477447509766\n12730,39.252315521240234\n12731,72.4898910522461\n12732,39.26546096801758\n12733,36.27716064453125\n12734,38.07585525512695\n12735,19.06279754638672\n12736,36.894474029541016\n12737,56.98546600341797\n12738,31.523418426513672\n12739,78.6553726196289\n12740,31.809711456298828\n12741,41.65947723388672\n12742,29.77815055847168\n12743,12.874441146850586\n12744,29.13112449645996\n12745,51.27357482910156\n12746,61.469966888427734\n12747,59.889041900634766\n12748,80.1128158569336\n12749,28.573070526123047\n12750,79.19692993164062\n12751,46.70920181274414\n12752,79.36982727050781\n12753,46.509788513183594\n12754,82.38420104980469\n12755,63.74808883666992\n12756,33.99647521972656\n12757,31.048593521118164\n12758,39.82307434082031\n12759,56.66325378417969\n12760,36.12704086303711\n12761,71.84854125976562\n12762,33.565555572509766\n12763,37.47553634643555\n12764,39.665138244628906\n12765,24.32177734375\n12766,41.173057556152344\n12767,50.193870544433594\n12768,28.611923217773438\n12769,76.39490509033203\n12770,25.06871223449707\n12771,35.5751838684082\n12772,32.63954162597656\n12773,43.07745361328125\n12774,58.00431442260742\n12775,67.64510345458984\n12776,71.52757263183594\n12777,38.88325119018555\n12778,75.60464477539062\n12779,49.96534729003906\n12780,72.85867309570312\n12781,51.01164627075195\n12782,78.08973693847656\n12783,66.86365509033203\n12784,35.58534240722656\n12785,36.20030212402344\n12786,34.91558074951172\n12787,61.01289367675781\n12788,36.26774215698242\n12789,73.65118408203125\n12790,36.64060592651367\n12791,43.18450927734375\n12792,36.0206413269043\n12793,29.042827606201172\n12794,36.44704818725586\n12795,60.866859436035156\n12796,28.00938606262207\n12797,78.36846923828125\n12798,29.367109298706055\n12799,46.734683990478516\n12800,27.476268768310547\n12801,24.14646339416504\n12802,29.391010284423828\n12803,55.917598724365234\n12804,48.64667510986328\n12805,65.01934814453125\n12806,68.51937866210938\n12807,37.33005905151367\n12808,68.77460479736328\n12809,52.924896240234375\n12810,65.94978332519531\n12811,52.64371109008789\n12812,69.21449279785156\n12813,66.92181396484375\n12814,34.571964263916016\n12815,26.34917640686035\n12816,40.402915954589844\n12817,57.70332717895508\n12818,37.58711242675781\n12819,77.29082489013672\n12820,34.51028823852539\n12821,35.07765579223633\n12822,40.876129150390625\n12823,17.674463272094727\n12824,41.71155548095703\n12825,50.6468505859375\n12826,29.341960906982422\n12827,82.84735107421875\n12828,24.188236236572266\n12829,33.53028106689453\n12830,33.233238220214844\n12831,10.46949291229248\n12832,33.08136749267578\n12833,42.22365951538086\n12834,66.95075988769531\n12835,70.06254577636719\n12836,83.01050567626953\n12837,35.255126953125\n12838,86.81529235839844\n12839,49.353485107421875\n12840,86.19462585449219\n12841,50.338050842285156\n12842,88.7909927368164\n12843,65.00528717041016\n12844,35.560482025146484\n12845,31.129045486450195\n12846,39.521217346191406\n12847,57.54464340209961\n12848,37.41683578491211\n12849,73.2720947265625\n12850,35.216617584228516\n12851,38.17217254638672\n12852,39.88581466674805\n12853,52.767234802246094\n12854,29.70694351196289\n12855,78.11377716064453\n12856,27.12251853942871\n12857,37.70006561279297\n12858,32.33489990234375\n12859,46.04988098144531\n12860,59.01870346069336\n12861,68.41869354248047\n12862,70.48497009277344\n12863,35.32453918457031\n12864,73.60608673095703\n12865,50.09634017944336\n12866,72.2775650024414\n12867,50.86091995239258\n12868,78.93651580810547\n12869,64.91534423828125\n12870,32.28960418701172\n12871,28.214529037475586\n12872,38.284698486328125\n12873,57.985679626464844\n12874,34.64175796508789\n12875,72.43733215332031\n12876,31.728662490844727\n12877,35.98563766479492\n12878,38.255367279052734\n12879,20.4373779296875\n12880,40.603370666503906\n12881,54.70779037475586\n12882,26.887611389160156\n12883,76.9922866821289\n12884,22.99866485595703\n12885,37.944610595703125\n12886,29.2766170501709\n12887,12.482640266418457\n12888,34.527809143066406\n12889,52.95570373535156\n12890,56.73587417602539\n12891,69.41549682617188\n12892,69.8015365600586\n12893,36.63315200805664\n12894,75.3661117553711\n12895,53.80377960205078\n12896,71.09154510498047\n12897,55.07972717285156\n12898,79.43842315673828\n12899,69.45143127441406\n12900,35.75757598876953\n12901,30.33416748046875\n12902,34.971675872802734\n12903,60.32231521606445\n12904,37.08661651611328\n12905,78.6992416381836\n12906,36.582340240478516\n12907,38.498008728027344\n12908,36.65742492675781\n12909,21.56147575378418\n12910,35.249855041503906\n12911,55.62772750854492\n12912,28.85250473022461\n12913,85.37904357910156\n12914,28.330278396606445\n12915,38.59855270385742\n12916,29.531564712524414\n12917,15.427865028381348\n12918,26.962989807128906\n12919,43.18254852294922\n12920,62.25807571411133\n12921,67.37874603271484\n12922,75.3463134765625\n12923,30.096803665161133\n12924,74.23357391357422\n12925,46.507041931152344\n12926,76.41741180419922\n12927,46.21894454956055\n12928,82.55941009521484\n12929,62.93836212158203\n12930,35.7430534362793\n12931,33.46727752685547\n12932,38.03059768676758\n12933,56.801490783691406\n12934,37.20832061767578\n12935,67.85875701904297\n12936,35.03829574584961\n12937,39.9884147644043\n12938,38.861080169677734\n12939,25.34193992614746\n12940,39.57198715209961\n12941,57.753971099853516\n12942,31.773332595825195\n12943,71.28141784667969\n12944,27.925233840942383\n12945,46.20349884033203\n12946,31.311996459960938\n12947,19.266510009765625\n12948,33.914180755615234\n12949,61.533348083496094\n12950,59.7808952331543\n12951,62.24088668823242\n12952,75.50529479980469\n12953,38.51247787475586\n12954,79.03669738769531\n12955,54.90853500366211\n12956,77.78081512451172\n12957,55.84791946411133\n12958,78.31208801269531\n12959,77.67346954345703\n12960,41.983821868896484\n12961,37.292633056640625\n12962,30.879688262939453\n12963,68.69503784179688\n12964,41.88811111450195\n12965,87.04866790771484\n12966,45.11324691772461\n12967,46.57732391357422\n12968,35.19245529174805\n12969,27.243141174316406\n12970,29.861534118652344\n12971,69.6117935180664\n12972,33.04148864746094\n12973,52.383705139160156\n12974,27.723918914794922\n12975,22.85326385498047\n12976,19.116432189941406\n12977,53.80459213256836\n12978,66.23727416992188\n12979,64.1373519897461\n12980,86.67930603027344\n12981,27.326555252075195\n12982,77.84049224853516\n12983,47.689491271972656\n12984,84.84102630615234\n12985,45.19456481933594\n12986,85.83656311035156\n12987,67.98744201660156\n12988,35.61249542236328\n12989,26.277620315551758\n12990,36.983821868896484\n12991,60.711029052734375\n12992,36.73945999145508\n12993,76.65675354003906\n12994,37.1527214050293\n12995,34.91109848022461\n12996,37.66939163208008\n12997,17.985671997070312\n12998,39.498355865478516\n12999,57.701904296875\n13000,24.732728958129883\n13001,83.80703735351562\n13002,27.68411636352539\n13003,38.448368072509766\n13004,25.198570251464844\n13005,10.10112476348877\n13006,30.59162139892578\n13007,50.330230712890625\n13008,49.00590515136719\n13009,66.40098571777344\n13010,79.00621032714844\n13011,31.600505828857422\n13012,80.84510040283203\n13013,49.47908020019531\n13014,71.22150421142578\n13015,49.72233963012695\n13016,85.49766540527344\n13017,70.47256469726562\n13018,29.709915161132812\n13019,28.819290161132812\n13020,35.25979232788086\n13021,60.869380950927734\n13022,32.70572280883789\n13023,81.00502014160156\n13024,29.13994789123535\n13025,38.412139892578125\n13026,35.90070724487305\n13027,19.050569534301758\n13028,36.89583206176758\n13029,55.285911560058594\n13030,24.662158966064453\n13031,37.442787170410156\n13032,27.964609146118164\n13033,48.22833251953125\n13034,62.49014663696289\n13035,75.71983337402344\n13036,72.19327545166016\n13037,34.51779556274414\n13038,76.54779052734375\n13039,53.29787826538086\n13040,77.59994506835938\n13041,54.070743560791016\n13042,82.83206176757812\n13043,65.74267578125\n13044,35.21489715576172\n13045,30.699195861816406\n13046,35.345890045166016\n13047,58.4543342590332\n13048,36.74101257324219\n13049,72.88243103027344\n13050,35.63550567626953\n13051,38.30350875854492\n13052,36.8602409362793\n13053,22.780263900756836\n13054,36.210716247558594\n13055,57.142147064208984\n13056,30.36883544921875\n13057,77.96916961669922\n13058,28.16059112548828\n13059,41.73209762573242\n13060,30.092092514038086\n13061,16.758655548095703\n13062,29.263996124267578\n13063,51.84622573852539\n13064,61.685325622558594\n13065,63.49852752685547\n13066,74.26944732666016\n13067,33.37521743774414\n13068,74.93846130371094\n13069,49.87082290649414\n13070,76.33199310302734\n13071,49.892486572265625\n13072,78.21308898925781\n13073,66.12911987304688\n13074,38.24401092529297\n13075,30.71794319152832\n13076,36.50734329223633\n13077,59.15296936035156\n13078,39.29616928100586\n13079,73.53540802001953\n13080,39.44526672363281\n13081,37.978424072265625\n13082,38.25965881347656\n13083,22.639204025268555\n13084,37.20317459106445\n13085,57.483001708984375\n13086,31.26096534729004\n13087,79.78316497802734\n13088,32.072635650634766\n13089,42.269779205322266\n13090,30.133892059326172\n13091,16.604045867919922\n13092,29.34956169128418\n13093,50.13847732543945\n13094,60.56863784790039\n13095,60.898956298828125\n13096,80.69168090820312\n13097,31.99092674255371\n13098,79.65129089355469\n13099,47.63899230957031\n13100,78.47364807128906\n13101,47.19672775268555\n13102,83.38005828857422\n13103,65.40097045898438\n13104,37.37807083129883\n13105,31.75786018371582\n13106,42.00407791137695\n13107,59.15324020385742\n13108,38.667728424072266\n13109,72.71951293945312\n13110,37.596500396728516\n13111,37.673789978027344\n13112,41.523502349853516\n13113,25.4979190826416\n13114,43.73468780517578\n13115,53.4514274597168\n13116,29.06180763244629\n13117,78.15815734863281\n13118,29.1391544342041\n13119,37.52750778198242\n13120,32.14152145385742\n13121,18.820934295654297\n13122,36.50204086303711\n13123,45.78937911987305\n13124,53.05274963378906\n13125,66.94622039794922\n13126,74.6926498413086\n13127,39.290687561035156\n13128,78.07081604003906\n13129,50.592063903808594\n13130,69.83004760742188\n13131,51.7009391784668\n13132,82.03303527832031\n13133,66.57571411132812\n13134,34.67387771606445\n13135,28.6982479095459\n13136,35.78569412231445\n13137,58.26227951049805\n13138,36.26626205444336\n13139,75.60581970214844\n13140,35.285606384277344\n13141,37.06523513793945\n13142,36.923404693603516\n13143,20.078866958618164\n13144,36.71297836303711\n13145,54.83189392089844\n13146,28.00927734375\n13147,81.58011627197266\n13148,27.049360275268555\n13149,38.001670837402344\n13150,28.991771697998047\n13151,13.617476463317871\n13152,29.18950653076172\n13153,46.02870178222656\n13154,58.09669876098633\n13155,66.86518859863281\n13156,70.87053680419922\n13157,30.08032989501953\n13158,71.61128997802734\n13159,47.65104675292969\n13160,71.95826721191406\n13161,47.84116744995117\n13162,77.89244842529297\n13163,66.0390396118164\n13164,36.40394973754883\n13165,27.574256896972656\n13166,37.44679641723633\n13167,57.93349075317383\n13168,37.58029556274414\n13169,74.72534942626953\n13170,37.63094711303711\n13171,35.017555236816406\n13172,38.110923767089844\n13173,19.676132202148438\n13174,38.388023376464844\n13175,52.70800018310547\n13176,27.410186767578125\n13177,81.54285430908203\n13178,28.78860092163086\n13179,35.727447509765625\n13180,28.765811920166016\n13181,13.343375205993652\n13182,29.513511657714844\n13183,41.54085159301758\n13184,55.83244705200195\n13185,63.25227737426758\n13186,79.12982177734375\n13187,31.44519805908203\n13188,79.295166015625\n13189,44.96697235107422\n13190,74.80610656738281\n13191,45.349098205566406\n13192,83.51193237304688\n13193,64.98309326171875\n13194,35.447940826416016\n13195,27.860401153564453\n13196,41.45939636230469\n13197,57.29274368286133\n13198,38.01093673706055\n13199,73.63739776611328\n13200,34.917911529541016\n13201,36.17646026611328\n13202,41.63856887817383\n13203,19.267358779907227\n13204,43.74595260620117\n13205,53.49956512451172\n13206,29.966096878051758\n13207,78.40489959716797\n13208,26.28835678100586\n13209,37.25663375854492\n13210,32.60829544067383\n13211,11.27954387664795\n13212,37.776241302490234\n13213,50.653045654296875\n13214,60.04547119140625\n13215,71.03919219970703\n13216,71.40092468261719\n13217,34.24396896362305\n13218,76.89264678955078\n13219,52.73207473754883\n13220,73.87652587890625\n13221,54.023128509521484\n13222,81.78611755371094\n13223,65.82447052001953\n13224,36.22716522216797\n13225,29.09754180908203\n13226,36.332740783691406\n13227,57.745025634765625\n13228,37.468624114990234\n13229,74.2720947265625\n13230,36.94781494140625\n13231,36.748497009277344\n13232,37.57392883300781\n13233,20.829072952270508\n13234,36.979347229003906\n13235,54.01382827758789\n13236,29.22411346435547\n13237,80.43177032470703\n13238,29.077985763549805\n13239,37.88936233520508\n13240,29.814167022705078\n13241,14.69597053527832\n13242,29.34606170654297\n13243,44.41385269165039\n13244,59.24163055419922\n13245,64.27446746826172\n13246,73.93938446044922\n13247,30.255752563476562\n13248,73.85527801513672\n13249,46.162132263183594\n13250,73.76776885986328\n13251,46.209110260009766\n13252,79.8736572265625\n13253,64.20057678222656\n13254,34.41638946533203\n13255,29.504087448120117\n13256,36.91557312011719\n13257,57.1817741394043\n13258,36.626686096191406\n13259,72.12699890136719\n13260,34.70139694213867\n13261,37.43788146972656\n13262,38.1575813293457\n13263,21.129465103149414\n13264,38.54938888549805\n13265,55.27914047241211\n13266,29.60797882080078\n13267,40.98163986206055\n13268,30.30882453918457\n13269,14.639593124389648\n13270,31.47175407409668\n13271,52.43317794799805\n13272,60.947689056396484\n13273,64.29844665527344\n13274,77.6150894165039\n13275,34.922386169433594\n13276,80.22667694091797\n13277,51.114540100097656\n13278,79.60285949707031\n13279,51.51602554321289\n13280,79.90968322753906\n13281,65.07056427001953\n13282,38.19216537475586\n13283,31.83687973022461\n13284,36.87055206298828\n13285,58.06848907470703\n13286,39.283424377441406\n13287,72.74393463134766\n13288,38.97072219848633\n13289,39.03174591064453\n13290,38.55974197387695\n13291,23.840415954589844\n13292,37.319580078125\n13293,56.35770034790039\n13294,32.20185089111328\n13295,78.38121032714844\n13296,31.974214553833008\n13297,41.94131088256836\n13298,31.669761657714844\n13299,18.366174697875977\n13300,30.074350357055664\n13301,48.72247314453125\n13302,60.865440368652344\n13303,61.77327346801758\n13304,75.72565460205078\n13305,32.11317825317383\n13306,74.921630859375\n13307,47.54348373413086\n13308,76.11312103271484\n13309,47.37681579589844\n13310,78.40790557861328\n13311,67.10641479492188\n13312,44.43941879272461\n13313,34.38003158569336\n13314,36.48448944091797\n13315,60.753868103027344\n13316,43.476627349853516\n13317,73.90850067138672\n13318,46.82174301147461\n13319,40.9930534362793\n13320,38.801475524902344\n13321,26.779813766479492\n13322,36.26247024536133\n13323,61.11924362182617\n13324,33.84498596191406\n13325,81.19404602050781\n13326,40.857582092285156\n13327,46.14313888549805\n13328,30.041296005249023\n13329,22.66548728942871\n13330,27.7176456451416\n13331,49.028160095214844\n13332,54.17869186401367\n13333,56.92522048950195\n13334,78.6698989868164\n13335,27.61383056640625\n13336,72.7991714477539\n13337,43.86565399169922\n13338,71.28009033203125\n13339,41.92839050292969\n13340,78.907470703125\n13341,63.92924499511719\n13342,36.23377990722656\n13343,29.94239616394043\n13344,43.261322021484375\n13345,56.78713607788086\n13346,38.54747009277344\n13347,72.53299713134766\n13348,35.925045013427734\n13349,37.23698043823242\n13350,42.69905471801758\n13351,22.574745178222656\n13352,45.05702209472656\n13353,51.49867630004883\n13354,30.16718292236328\n13355,77.01915740966797\n13356,27.19127655029297\n13357,36.09294128417969\n13358,34.27103805541992\n13359,15.863123893737793\n13360,38.3494987487793\n13361,46.5347900390625\n13362,57.32418441772461\n13363,69.72457885742188\n13364,71.49681091308594\n13365,37.82168960571289\n13366,76.7058334350586\n13367,51.61508560180664\n13368,72.62930297851562\n13369,53.04996109008789\n13370,77.88020324707031\n13371,66.44767761230469\n13372,34.61849594116211\n13373,28.381746292114258\n13374,40.68421936035156\n13375,58.44783401489258\n13376,37.10356903076172\n13377,75.06155395507812\n13378,34.107913970947266\n13379,36.93638229370117\n13380,40.678993225097656\n13381,19.858007431030273\n13382,42.7427864074707\n13383,54.902671813964844\n13384,29.023845672607422\n13385,79.80982971191406\n13386,25.282764434814453\n13387,37.73924255371094\n13388,31.746557235717773\n13389,12.036550521850586\n13390,36.52442169189453\n13391,51.63441848754883\n13392,59.30139923095703\n13393,72.3713607788086\n13394,69.4281997680664\n13395,34.531585693359375\n13396,74.68128204345703\n13397,53.501434326171875\n13398,72.38070678710938\n13399,54.76995849609375\n13400,79.62301635742188\n13401,67.30184173583984\n13402,32.06383514404297\n13403,28.404653549194336\n13404,38.655826568603516\n13405,58.86823272705078\n13406,34.51915740966797\n13407,76.68074798583984\n13408,31.596506118774414\n13409,36.998695373535156\n13410,38.46999740600586\n13411,19.73967742919922\n13412,40.73624038696289\n13413,53.83866882324219\n13414,25.70326805114746\n13415,81.66199493408203\n13416,22.1855525970459\n13417,36.35108947753906\n13418,29.351192474365234\n13419,11.983415603637695\n13420,33.762229919433594\n13421,48.49040603637695\n13422,56.64194107055664\n13423,73.53254699707031\n13424,68.6806411743164\n13425,35.0338020324707\n13426,73.9424819946289\n13427,52.77924346923828\n13428,71.0105972290039\n13429,53.97858428955078\n13430,78.8011703491211\n13431,65.2136001586914\n13432,37.91094207763672\n13433,31.338966369628906\n13434,36.0148811340332\n13435,58.20692825317383\n13436,38.78053665161133\n13437,72.4576644897461\n13438,38.93085861206055\n13439,38.98686218261719\n13440,37.779571533203125\n13441,22.977108001708984\n13442,36.9554443359375\n13443,58.20732498168945\n13444,31.162891387939453\n13445,78.01611328125\n13446,31.616559982299805\n13447,43.55802536010742\n13448,29.825828552246094\n13449,17.559019088745117\n13450,29.257034301757812\n13451,52.64430618286133\n13452,57.70698547363281\n13453,60.97406005859375\n13454,76.08194732666016\n13455,31.67923355102539\n13456,75.3382568359375\n13457,48.51019287109375\n13458,75.2047348022461\n13459,48.377132415771484\n13460,76.90364837646484\n13461,63.926265716552734\n13462,37.33898162841797\n13463,32.20005798339844\n13464,38.613529205322266\n13465,57.645263671875\n13466,38.566280364990234\n13467,70.79183197021484\n13468,37.612998962402344\n13469,38.623207092285156\n13470,39.34999465942383\n13471,25.35173225402832\n13472,39.58914566040039\n13473,55.02996063232422\n13474,31.532320022583008\n13475,75.79837799072266\n13476,30.69005584716797\n13477,40.36412048339844\n13478,32.3211669921875\n13479,19.5717830657959\n13480,33.389488220214844\n13481,48.746971130371094\n13482,57.3698844909668\n13483,63.786598205566406\n13484,70.25896453857422\n13485,35.062984466552734\n13486,71.56305694580078\n13487,49.381038665771484\n13488,70.098876953125\n13489,49.593727111816406\n13490,75.80170440673828\n13491,65.98186492919922\n13492,35.937744140625\n13493,29.857194900512695\n13494,39.73767852783203\n13495,58.708683013916016\n13496,37.60175704956055\n13497,73.40766906738281\n13498,35.63264846801758\n13499,36.87877655029297\n13500,39.90812301635742\n13501,22.379470825195312\n13502,41.18023681640625\n13503,54.63251876831055\n13504,29.81448745727539\n13505,78.66667175292969\n13506,27.494646072387695\n13507,37.86549377441406\n13508,31.77511978149414\n13509,15.082831382751465\n13510,34.86846160888672\n13511,48.83781814575195\n13512,59.13304138183594\n13513,68.45932006835938\n13514,70.79814147949219\n13515,35.08413314819336\n13516,74.00602722167969\n13517,51.094051361083984\n13518,71.11441040039062\n13519,52.03389358520508\n13520,81.41262817382812\n13521,65.55935668945312\n13522,31.271041870117188\n13523,32.01579284667969\n13524,32.913272857666016\n13525,60.07225799560547\n13526,32.3206672668457\n13527,71.69591522216797\n13528,31.57711410522461\n13529,37.97635269165039\n13530,33.13344955444336\n13531,26.125732421875\n13532,33.94906997680664\n13533,57.02846145629883\n13534,24.51303482055664\n13535,76.92805480957031\n13536,23.91964340209961\n13537,40.48140335083008\n13538,25.214948654174805\n13539,19.689697265625\n13540,27.342872619628906\n13541,50.7392463684082\n13542,50.97783279418945\n13543,64.05520629882812\n13544,67.29286193847656\n13545,37.453468322753906\n13546,68.6068115234375\n13547,50.87043762207031\n13548,64.20585632324219\n13549,50.90269088745117\n13550,75.98318481445312\n13551,68.41405487060547\n13552,32.08778381347656\n13553,28.141843795776367\n13554,35.375553131103516\n13555,60.21243667602539\n13556,34.47117614746094\n13557,77.15980529785156\n13558,32.28260803222656\n13559,36.75602722167969\n13560,36.425052642822266\n13561,19.29869270324707\n13562,37.12085723876953\n13563,56.56275177001953\n13564,26.585433959960938\n13565,82.7557601928711\n13566,22.898521423339844\n13567,39.06450271606445\n13568,28.070524215698242\n13569,11.71479606628418\n13570,29.172378540039062\n13571,51.106441497802734\n13572,61.665985107421875\n13573,68.50044250488281\n13574,78.67269897460938\n13575,35.53154373168945\n13576,81.71139526367188\n13577,52.16104507446289\n13578,80.10637664794922\n13579,52.68842315673828\n13580,84.180908203125\n13581,62.75533676147461\n13582,31.865171432495117\n13583,31.392566680908203\n13584,44.163482666015625\n13585,56.47403335571289\n13586,35.80976104736328\n13587,70.84149169921875\n13588,29.882699966430664\n13589,38.9494514465332\n13590,43.2255744934082\n13591,23.875776290893555\n13592,47.580562591552734\n13593,51.995689392089844\n13594,29.908554077148438\n13595,72.99847412109375\n13596,21.03523063659668\n13597,38.25928497314453\n13598,35.574729919433594\n13599,15.741277694702148\n13600,43.31562805175781\n13601,55.68834686279297\n13602,59.56871032714844\n13603,75.89579772949219\n13604,65.84884643554688\n13605,44.31399154663086\n13606,76.59573364257812\n13607,60.14912414550781\n13608,73.0055923461914\n13609,62.27463150024414\n13610,75.83214569091797\n13611,67.4240951538086\n13612,36.00751495361328\n13613,27.84315299987793\n13614,38.40914535522461\n13615,58.76063537597656\n13616,38.072105407714844\n13617,76.73638916015625\n13618,36.30049514770508\n13619,36.71171569824219\n13620,39.47149658203125\n13621,18.750263214111328\n13622,39.59785842895508\n13623,55.18300247192383\n13624,30.022199630737305\n13625,82.61222076416016\n13626,27.72768783569336\n13627,37.834712982177734\n13628,31.347396850585938\n13629,11.576254844665527\n13630,32.32036209106445\n13631,47.836944580078125\n13632,62.43761444091797\n13633,69.22396850585938\n13634,74.3434066772461\n13635,30.633283615112305\n13636,76.29944610595703\n13637,49.47935485839844\n13638,76.70440673828125\n13639,49.88201904296875\n13640,82.503662109375\n13641,66.70155334472656\n13642,39.22294998168945\n13643,30.986177444458008\n13644,30.35192108154297\n13645,60.182716369628906\n13646,38.60823059082031\n13647,74.23329162597656\n13648,42.42450714111328\n13649,38.60489273071289\n13650,33.28966522216797\n13651,23.164710998535156\n13652,30.478130340576172\n13653,61.05622482299805\n13654,28.397336959838867\n13655,82.10529327392578\n13656,35.736297607421875\n13657,44.858253479003906\n13658,23.91413116455078\n13659,18.718746185302734\n13660,20.905153274536133\n13661,48.34392166137695\n13662,50.084781646728516\n13663,54.665157318115234\n13664,78.32798767089844\n13665,24.84984016418457\n13666,71.75511169433594\n13667,41.97812271118164\n13668,70.02776336669922\n13669,39.40899658203125\n13670,77.4210433959961\n13671,67.77942657470703\n13672,38.4642448425293\n13673,29.45829200744629\n13674,36.487369537353516\n13675,59.51820373535156\n13676,39.255924224853516\n13677,75.57452392578125\n13678,39.28544616699219\n13679,37.508026123046875\n13680,38.02077102661133\n13681,20.844341278076172\n13682,36.806583404541016\n13683,57.64818572998047\n13684,31.082592010498047\n13685,40.737796783447266\n13686,29.933523178100586\n13687,14.512263298034668\n13688,29.45733070373535\n13689,48.86210632324219\n13690,61.12660598754883\n13691,64.499755859375\n13692,73.99385833740234\n13693,27.94147491455078\n13694,72.57276153564453\n13695,47.01522445678711\n13696,73.5082015991211\n13697,46.79570007324219\n13698,82.02816772460938\n13699,60.37660217285156\n13700,32.22090530395508\n13701,31.08765411376953\n13702,35.12998962402344\n13703,54.917354583740234\n13704,33.539451599121094\n13705,66.9750747680664\n13706,32.387786865234375\n13707,37.287776947021484\n13708,35.34638214111328\n13709,24.740388870239258\n13710,36.782867431640625\n13711,48.434425354003906\n13712,47.91156005859375\n13713,61.87498474121094\n13714,63.097660064697266\n13715,36.109031677246094\n13716,65.86963653564453\n13717,49.08265686035156\n13718,62.22225570678711\n13719,49.67969512939453\n13720,66.32426452636719\n13721,66.33283233642578\n13722,34.90666961669922\n13723,28.683862686157227\n13724,37.03264236450195\n13725,58.25727844238281\n13726,36.92647933959961\n13727,74.60693359375\n13728,35.08814239501953\n13729,36.90743637084961\n13730,38.17786407470703\n13731,20.09367561340332\n13732,38.23124313354492\n13733,55.29307174682617\n13734,29.65947723388672\n13735,80.04281616210938\n13736,26.873659133911133\n13737,38.84422302246094\n13738,30.656818389892578\n13739,13.20283031463623\n13740,31.20128631591797\n13741,49.31135559082031\n13742,62.36330795288086\n13743,66.80956268310547\n13744,74.22470092773438\n13745,32.466129302978516\n13746,76.19998168945312\n13747,49.85409164428711\n13748,76.70172119140625\n13749,50.31203079223633\n13750,80.77676391601562\n13751,67.08781433105469\n13752,36.47182083129883\n13753,28.798179626464844\n13754,38.46290588378906\n13755,59.566898345947266\n13756,38.24072265625\n13757,75.00167083740234\n13758,36.48845291137695\n13759,36.95053482055664\n13760,39.42719268798828\n13761,20.05298614501953\n13762,39.96501922607422\n13763,57.206031799316406\n13764,30.410194396972656\n13765,80.73759460449219\n13766,28.546663284301758\n13767,40.63043212890625\n13768,30.597763061523438\n13769,12.185709953308105\n13770,33.54379653930664\n13771,53.19581604003906\n13772,62.090850830078125\n13773,67.9569320678711\n13774,75.57090759277344\n13775,32.347198486328125\n13776,77.91100311279297\n13777,51.70937728881836\n13778,76.14720916748047\n13779,52.23375701904297\n13780,85.81262969970703\n13781,67.78611755371094\n13782,32.9476203918457\n13783,28.76075553894043\n13784,38.327537536621094\n13785,59.46396255493164\n13786,35.144874572753906\n13787,76.55909729003906\n13788,32.401920318603516\n13789,37.16529846191406\n13790,38.2299690246582\n13791,20.226940155029297\n13792,39.97614288330078\n13793,55.16084289550781\n13794,26.70305061340332\n13795,81.68106842041016\n13796,23.292430877685547\n13797,37.384708404541016\n13798,29.415555953979492\n13799,12.428921699523926\n13800,33.238189697265625\n13801,49.85775375366211\n13802,58.21512985229492\n13803,72.70247650146484\n13804,68.30195617675781\n13805,34.09640121459961\n13806,72.62126159667969\n13807,52.601749420166016\n13808,70.63673400878906\n13809,53.84519577026367\n13810,80.06051635742188\n13811,62.33679962158203\n13812,32.03445816040039\n13813,29.078901290893555\n13814,39.485538482666016\n13815,55.2227668762207\n13816,35.079097747802734\n13817,70.07154846191406\n13818,31.039304733276367\n13819,36.621055603027344\n13820,39.47615051269531\n13821,21.610301971435547\n13822,41.48689270019531\n13823,51.2597541809082\n13824,29.28650665283203\n13825,73.52894592285156\n13826,22.734188079833984\n13827,36.540287017822266\n13828,32.92711639404297\n13829,14.6074857711792\n13830,35.88985824584961\n13831,49.86235427856445\n13832,60.924110412597656\n13833,68.87194061279297\n13834,68.13433074951172\n13835,38.088035583496094\n13836,74.40270233154297\n13837,53.14697265625\n13838,74.02743530273438\n13839,54.41585159301758\n13840,75.35394287109375\n13841,69.14393615722656\n13842,33.39398193359375\n13843,28.04298210144043\n13844,34.55650329589844\n13845,60.14868927001953\n13846,35.78901672363281\n13847,78.83182525634766\n13848,34.079307556152344\n13849,37.70941162109375\n13850,36.44320297241211\n13851,18.354896545410156\n13852,35.91842269897461\n13853,57.4186897277832\n13854,28.080780029296875\n13855,84.75642395019531\n13856,25.047574996948242\n13857,40.13154602050781\n13858,28.62208366394043\n13859,11.357229232788086\n13860,27.71132469177246\n13861,50.2824821472168\n13862,64.07274627685547\n13863,68.56106567382812\n13864,78.61978149414062\n13865,31.38425636291504\n13866,79.91919708251953\n13867,50.4414176940918\n13868,81.89359283447266\n13869,50.38271713256836\n13870,83.05458068847656\n13871,66.18710327148438\n13872,35.43013000488281\n13873,28.715911865234375\n13874,39.95445251464844\n13875,58.131839752197266\n13876,37.8230094909668\n13877,75.40757751464844\n13878,35.46083068847656\n13879,36.97831726074219\n13880,40.45427703857422\n13881,20.105548858642578\n13882,41.446868896484375\n13883,53.72243881225586\n13884,29.821483612060547\n13885,80.71495819091797\n13886,26.408660888671875\n13887,37.423973083496094\n13888,32.37568283081055\n13889,13.08464527130127\n13890,33.87544250488281\n13891,47.72153091430664\n13892,61.64985275268555\n13893,68.72840881347656\n13894,76.76956939697266\n13895,35.19405746459961\n13896,80.22178649902344\n13897,50.85182571411133\n13898,78.75023651123047\n13899,51.901309967041016\n13900,82.04877471923828\n13901,71.0079345703125\n13902,39.47792434692383\n13903,30.995187759399414\n13904,29.49880599975586\n13905,61.41236114501953\n13906,39.2860107421875\n13907,80.82379150390625\n13908,42.49534606933594\n13909,39.47768783569336\n13910,33.40926742553711\n13911,21.55660629272461\n13912,28.326717376708984\n13913,59.00002670288086\n13914,29.9895076751709\n13915,89.4642562866211\n13916,35.100486755371094\n13917,41.87811279296875\n13918,26.61673355102539\n13919,17.57155418395996\n13920,17.471834182739258\n13921,38.99989318847656\n13922,61.87373352050781\n13923,58.41312026977539\n13924,82.8719711303711\n13925,22.163732528686523\n13926,74.25894165039062\n13927,38.59764862060547\n13928,80.01766204833984\n13929,36.390380859375\n13930,82.20504760742188\n13931,67.66356658935547\n13932,38.7193489074707\n13933,29.93995475769043\n13934,36.1429443359375\n13935,59.358177185058594\n13936,39.44131088256836\n13937,75.62484741210938\n13938,39.73179626464844\n13939,37.732181549072266\n13940,37.878684997558594\n13941,21.485017776489258\n13942,36.268043518066406\n13943,57.009517669677734\n13944,31.331480026245117\n13945,82.35565185546875\n13946,32.4015007019043\n13947,40.21126937866211\n13948,30.307706832885742\n13949,15.495813369750977\n13950,28.67181968688965\n13951,46.493770599365234\n13952,61.247398376464844\n13953,63.77702713012695\n13954,74.26310729980469\n13955,27.82265853881836\n13956,72.15324401855469\n13957,45.77706527709961\n13958,73.69306182861328\n13959,45.3515510559082\n13960,81.44084930419922\n13961,62.768310546875\n13962,36.50691604614258\n13963,31.042160034179688\n13964,42.73200607299805\n13965,55.88178634643555\n13966,38.689449310302734\n13967,70.06329345703125\n13968,35.70452117919922\n13969,37.26402282714844\n13970,42.34989929199219\n13971,24.531795501708984\n13972,43.86372375488281\n13973,50.24026107788086\n13974,31.9329833984375\n13975,74.09649658203125\n13976,27.61688232421875\n13977,35.94418716430664\n13978,35.75704574584961\n13979,18.29207992553711\n13980,37.67762756347656\n13981,45.16804122924805\n13982,61.834312438964844\n13983,67.18031311035156\n13984,71.97859191894531\n13985,38.846248626708984\n13986,76.48561096191406\n13987,50.6636848449707\n13988,74.70301055908203\n13989,51.892215728759766\n13990,79.17160034179688\n13991,65.89201354980469\n13992,38.991424560546875\n13993,29.46576499938965\n13994,38.396278381347656\n13995,59.354888916015625\n13996,40.120853424072266\n13997,73.47331237792969\n13998,40.261722564697266\n13999,36.91600036621094\n14000,39.78348922729492\n14001,21.238569259643555\n14002,39.90797805786133\n14003,57.6038818359375\n14004,30.768962860107422\n14005,80.0538330078125\n14006,32.47020721435547\n14007,41.91765594482422\n14008,29.880084991455078\n14009,14.309231758117676\n14010,31.95575523376465\n14011,51.89999008178711\n14012,57.501190185546875\n14013,61.72930908203125\n14014,82.79627990722656\n14015,32.62215042114258\n14016,83.07145690917969\n14017,48.88192367553711\n14018,77.85262298583984\n14019,48.73481369018555\n14020,86.65785217285156\n14021,63.506919860839844\n14022,36.14804458618164\n14023,29.042673110961914\n14024,36.130916595458984\n14025,56.753108978271484\n14026,37.34541702270508\n14027,70.52474975585938\n14028,36.752777099609375\n14029,36.5811653137207\n14030,37.43288803100586\n14031,20.905916213989258\n14032,37.38041305541992\n14033,56.080928802490234\n14034,29.79743194580078\n14035,41.07907485961914\n14036,29.070667266845703\n14037,14.587923049926758\n14038,30.66143226623535\n14039,52.17063522338867\n14040,57.137508392333984\n14041,61.652076721191406\n14042,73.63936614990234\n14043,31.071956634521484\n14044,74.49407958984375\n14045,48.63008117675781\n14046,73.06463623046875\n14047,48.65598678588867\n14048,77.90870666503906\n14049,64.64734649658203\n14050,30.58092498779297\n14051,28.52541160583496\n14052,40.90994644165039\n14053,57.37238693237305\n14054,34.28630065917969\n14055,73.1538314819336\n14056,29.116100311279297\n14057,36.65083312988281\n14058,40.5238037109375\n14059,20.227781295776367\n14060,44.166358947753906\n14061,52.35965347290039\n14062,27.28656578063965\n14063,36.87917709350586\n14064,32.02734375\n14065,11.516265869140625\n14066,38.59667205810547\n14067,53.34443664550781\n14068,60.68305587768555\n14069,74.1438217163086\n14070,71.81173706054688\n14071,41.40059280395508\n14072,80.9937744140625\n14073,57.60751724243164\n14074,76.73178100585938\n14075,59.52897644042969\n14076,81.69486999511719\n14077,65.51515197753906\n14078,37.46643829345703\n14079,32.20976257324219\n14080,34.48585510253906\n14081,57.32476043701172\n14082,38.31425857543945\n14083,74.81263732910156\n14084,38.54501724243164\n14085,38.9525032043457\n14086,36.74235153198242\n14087,24.484609603881836\n14088,33.849571228027344\n14089,51.790771484375\n14090,30.585813522338867\n14091,81.1818618774414\n14092,30.978654861450195\n14093,38.16908264160156\n14094,31.264562606811523\n14095,20.32056999206543\n14096,24.60025405883789\n14097,36.3508186340332\n14098,62.99836730957031\n14099,59.7353401184082\n14100,81.72506713867188\n14101,31.19621467590332\n14102,78.34249877929688\n14103,41.60334014892578\n14104,81.82549285888672\n14105,40.886131286621094\n14106,81.49354553222656\n14107,66.5494155883789\n14108,35.33481979370117\n14109,29.89765739440918\n14110,35.66857147216797\n14111,58.92699432373047\n14112,36.449790954589844\n14113,75.16490173339844\n14114,36.678428649902344\n14115,37.3186149597168\n14116,36.60439682006836\n14117,22.093753814697266\n14118,36.63216781616211\n14119,54.71333694458008\n14120,26.92745018005371\n14121,81.60419464111328\n14122,28.32355499267578\n14123,38.3889274597168\n14124,27.872447967529297\n14125,16.261146545410156\n14126,28.038728713989258\n14127,44.01859664916992\n14128,54.15351486206055\n14129,63.63135528564453\n14130,76.083740234375\n14131,32.72528076171875\n14132,75.84976959228516\n14133,46.41969680786133\n14134,72.63945770263672\n14135,46.46876907348633\n14136,78.73787689208984\n14137,63.07936477661133\n14138,38.5701789855957\n14139,31.589082717895508\n14140,39.183631896972656\n14141,56.721073150634766\n14142,39.51272201538086\n14143,69.24536895751953\n14144,38.8343505859375\n14145,38.019412994384766\n14146,39.88762283325195\n14147,24.497880935668945\n14148,40.0492057800293\n14149,55.333370208740234\n14150,32.47848129272461\n14151,74.12911224365234\n14152,32.096866607666016\n14153,41.036949157714844\n14154,32.47620391845703\n14155,18.81436538696289\n14156,33.82407760620117\n14157,50.633934020996094\n14158,57.8990364074707\n14159,61.67018127441406\n14160,71.7994613647461\n14161,33.93172836303711\n14162,72.85133361816406\n14163,48.97617721557617\n14164,71.32393646240234\n14165,49.32349395751953\n14166,76.04716491699219\n14167,65.78939056396484\n14168,37.491539001464844\n14169,28.77464485168457\n14170,39.42140197753906\n14171,57.92106246948242\n14172,39.155635833740234\n14173,73.97295379638672\n14174,37.43634796142578\n14175,36.825077056884766\n14176,40.332332611083984\n14177,20.14860725402832\n14178,40.60874938964844\n14179,55.1829719543457\n14180,31.61069679260254\n14181,79.55238342285156\n14182,29.78119659423828\n14183,38.96293640136719\n14184,32.277278900146484\n14185,12.982603073120117\n14186,34.38262939453125\n14187,49.57626724243164\n14188,61.8760986328125\n14189,67.62638854980469\n14190,72.19296264648438\n14191,30.699182510375977\n14192,74.18576049804688\n14193,49.666969299316406\n14194,74.03070068359375\n14195,50.2298469543457\n14196,82.03776550292969\n14197,68.5810775756836\n14198,32.731815338134766\n14199,27.824981689453125\n14200,35.77393341064453\n14201,59.2525520324707\n14202,35.09358596801758\n14203,78.5724105834961\n14204,33.00608444213867\n14205,36.838661193847656\n14206,36.884769439697266\n14207,18.543323516845703\n14208,37.00428009033203\n14209,54.081905364990234\n14210,26.748367309570312\n14211,84.5386734008789\n14212,23.694780349731445\n14213,36.532405853271484\n14214,28.999828338623047\n14215,11.378902435302734\n14216,28.88469696044922\n14217,44.977378845214844\n14218,61.90061569213867\n14219,70.35513305664062\n14220,75.0102767944336\n14221,31.849672317504883\n14222,77.19660186767578\n14223,49.17166519165039\n14224,77.85862731933594\n14225,49.51415252685547\n14226,82.66058349609375\n14227,65.16879272460938\n14228,37.4229850769043\n14229,30.924230575561523\n14230,37.67766189575195\n14231,57.93330001831055\n14232,38.43113327026367\n14233,72.91116333007812\n14234,37.99673843383789\n14235,37.84353256225586\n14236,38.652130126953125\n14237,23.44319725036621\n14238,38.35348892211914\n14239,45.518959045410156\n14240,57.24930953979492\n14241,63.848167419433594\n14242,72.58505249023438\n14243,32.2252082824707\n14244,72.68795776367188\n14245,47.04682540893555\n14246,71.37663269042969\n14247,47.0916633605957\n14248,78.62942504882812\n14249,67.22394561767578\n14250,36.238555908203125\n14251,28.66351890563965\n14252,36.93136215209961\n14253,59.990238189697266\n14254,37.94428253173828\n14255,74.42159271240234\n14256,36.6225471496582\n14257,36.47783660888672\n14258,38.31083679199219\n14259,20.470848083496094\n14260,38.139198303222656\n14261,57.98965835571289\n14262,30.620325088500977\n14263,80.38908386230469\n14264,28.714115142822266\n14265,41.03232955932617\n14266,30.136873245239258\n14267,12.91263484954834\n14268,31.208171844482422\n14269,53.242069244384766\n14270,63.791500091552734\n14271,64.97010040283203\n14272,79.2672119140625\n14273,33.054237365722656\n14274,80.53883361816406\n14275,50.84931564331055\n14276,79.09927368164062\n14277,50.884071350097656\n14278,87.31838989257812\n14279,63.0968017578125\n14280,36.743228912353516\n14281,31.0011043548584\n14282,33.997108459472656\n14283,56.09122085571289\n14284,36.98514175415039\n14285,69.15914916992188\n14286,37.57291793823242\n14287,37.80679702758789\n14288,35.47975158691406\n14289,23.576147079467773\n14290,34.409690856933594\n14291,56.14165496826172\n14292,29.976957321166992\n14293,74.32192993164062\n14294,31.044208526611328\n14295,41.45173645019531\n14296,28.467302322387695\n14297,18.876964569091797\n14298,27.591989517211914\n14299,49.2934455871582\n14300,54.43235778808594\n14301,58.77204895019531\n14302,67.64128112792969\n14303,29.456829071044922\n14304,66.18284606933594\n14305,45.77884292602539\n14306,67.19085693359375\n14307,45.48067855834961\n14308,70.31765747070312\n14309,65.6572494506836\n14310,35.984580993652344\n14311,30.000104904174805\n14312,38.6252555847168\n14313,57.90624237060547\n14314,37.720298767089844\n14315,73.42884826660156\n14316,36.03197479248047\n14317,37.50802993774414\n14318,39.3039436340332\n14319,22.31998062133789\n14320,39.60774230957031\n14321,54.34260940551758\n14322,30.52717399597168\n14323,78.50446319580078\n14324,28.114017486572266\n14325,38.24412536621094\n14326,32.18299102783203\n14327,15.963241577148438\n14328,32.89858627319336\n14329,47.64238739013672\n14330,60.87434387207031\n14331,66.98815155029297\n14332,71.4743423461914\n14333,33.773197174072266\n14334,73.60094451904297\n14335,49.66965103149414\n14336,73.64405822753906\n14337,50.096710205078125\n14338,78.29502868652344\n14339,69.34895324707031\n14340,36.85565948486328\n14341,27.226755142211914\n14342,34.76322555541992\n14343,59.94527816772461\n14344,38.31818771362305\n14345,78.60201263427734\n14346,37.905433654785156\n14347,36.64957809448242\n14348,36.97272872924805\n14349,17.367570877075195\n14350,35.11668395996094\n14351,57.83461380004883\n14352,30.28791618347168\n14353,39.810462951660156\n14354,29.170194625854492\n14355,47.911781311035156\n14356,65.29854583740234\n14357,65.85717010498047\n14358,78.38444519042969\n14359,26.02367401123047\n14360,76.76970672607422\n14361,46.557064056396484\n14362,80.0091781616211\n14363,46.23861312866211\n14364,85.39578247070312\n14365,64.79591369628906\n14366,32.511207580566406\n14367,30.35371971130371\n14368,39.219932556152344\n14369,58.17766571044922\n14370,35.24061584472656\n14371,71.34256744384766\n14372,31.465776443481445\n14373,38.33804702758789\n14374,39.34684371948242\n14375,22.269502639770508\n14376,41.88249969482422\n14377,57.264991760253906\n14378,29.127779006958008\n14379,74.59893035888672\n14380,23.09925079345703\n14381,42.15348815917969\n14382,30.932231903076172\n14383,14.413688659667969\n14384,36.766475677490234\n14385,60.901039123535156\n14386,59.13872146606445\n14387,70.5649185180664\n14388,69.43387603759766\n14389,39.08055877685547\n14390,76.2609634399414\n14391,58.116085052490234\n14392,73.78701782226562\n14393,59.635658264160156\n14394,77.95280456542969\n14395,69.3467025756836\n14396,39.012332916259766\n14397,30.405366897583008\n14398,35.493927001953125\n14399,61.066524505615234\n14400,39.84837341308594\n14401,77.81041717529297\n14402,40.703792572021484\n14403,38.07525634765625\n14404,37.712425231933594\n14405,21.95256996154785\n14406,35.6903190612793\n14407,57.69111251831055\n14408,31.0877628326416\n14409,85.24562072753906\n14410,32.98339080810547\n14411,40.832550048828125\n14412,29.896591186523438\n14413,15.976666450500488\n14414,26.957008361816406\n14415,44.906681060791016\n14416,62.83481216430664\n14417,45.1734504699707\n14418,79.62693786621094\n14419,44.36288070678711\n14420,86.70319366455078\n14421,67.47545623779297\n14422,33.22237777709961\n14423,29.993167877197266\n14424,38.07432174682617\n14425,58.972164154052734\n14426,35.77009582519531\n14427,76.80138397216797\n14428,33.012657165527344\n14429,38.25116729736328\n14430,38.696903228759766\n14431,21.512187957763672\n14432,39.484214782714844\n14433,53.6903076171875\n14434,28.310014724731445\n14435,81.78791809082031\n14436,24.03310775756836\n14437,37.47500991821289\n14438,31.482707977294922\n14439,14.58214282989502\n14440,32.15726089477539\n14441,46.79347229003906\n14442,62.20293045043945\n14443,70.99225616455078\n14444,73.81591033935547\n14445,36.21963119506836\n14446,77.45809173583984\n14447,51.63471984863281\n14448,77.62198638916016\n14449,52.32551193237305\n14450,80.56236267089844\n14451,64.62275695800781\n14452,36.097023010253906\n14453,28.492448806762695\n14454,35.927066802978516\n14455,56.6971435546875\n14456,37.34638977050781\n14457,72.76025390625\n14458,36.88890075683594\n14459,36.655330657958984\n14460,37.22932434082031\n14461,20.236230850219727\n14462,36.62991714477539\n14463,54.864967346191406\n14464,29.47146987915039\n14465,78.44502258300781\n14466,29.34545135498047\n14467,38.616695404052734\n14468,29.517078399658203\n14469,14.427371978759766\n14470,29.43400764465332\n14471,46.99441146850586\n14472,57.115352630615234\n14473,63.64882278442383\n14474,69.48207092285156\n14475,28.51319694519043\n14476,69.49573516845703\n14477,46.430030822753906\n14478,70.38232421875\n14479,46.41081237792969\n14480,74.54969787597656\n14481,65.54095458984375\n14482,32.82577896118164\n14483,31.874053955078125\n14484,42.38566207885742\n14485,59.657737731933594\n14486,35.93883514404297\n14487,72.40203094482422\n14488,31.579631805419922\n14489,39.1867561340332\n14490,41.78007888793945\n14491,23.92455291748047\n14492,45.84228515625\n14493,56.73073959350586\n14494,28.44002342224121\n14495,75.76751708984375\n14496,22.3226375579834\n14497,42.52585983276367\n14498,31.872053146362305\n14499,15.281902313232422\n14500,40.21015167236328\n14501,61.758567810058594\n14502,57.93903350830078\n14503,72.57378387451172\n14504,76.54082489013672\n14505,45.60563278198242\n14506,85.62955474853516\n14507,61.37923812866211\n14508,77.95574188232422\n14509,63.460575103759766\n14510,83.56205749511719\n14511,65.29698944091797\n14512,35.07929992675781\n14513,32.431556701660156\n14514,39.52484893798828\n14515,58.989105224609375\n14516,37.02617263793945\n14517,71.87239837646484\n14518,34.558563232421875\n14519,38.79373550415039\n14520,39.74820327758789\n14521,25.67763328552246\n14522,41.120391845703125\n14523,55.2972526550293\n14524,30.45941734313965\n14525,76.2642822265625\n14526,26.727489471435547\n14527,40.33641815185547\n14528,32.63402557373047\n14529,18.945890426635742\n14530,35.061317443847656\n14531,51.81498336791992\n14532,60.2364616394043\n14533,67.13709259033203\n14534,73.32240295410156\n14535,40.376502990722656\n14536,77.26372528076172\n14537,53.60593032836914\n14538,74.42626953125\n14539,54.575927734375\n14540,79.90550231933594\n14541,64.16976928710938\n14542,39.25606918334961\n14543,29.9637508392334\n14544,35.00967025756836\n14545,57.28569412231445\n14546,39.70684814453125\n14547,71.04015350341797\n14548,40.536983489990234\n14549,37.52961730957031\n14550,37.344120025634766\n14551,21.270313262939453\n14552,35.470726013183594\n14553,58.540836334228516\n14554,32.40706253051758\n14555,77.0671157836914\n14556,33.767127990722656\n14557,43.958377838134766\n14558,29.491954803466797\n14559,15.859691619873047\n14560,27.719594955444336\n14561,52.94880676269531\n14562,59.85502624511719\n14563,57.267330169677734\n14564,78.9806137084961\n14565,28.09304428100586\n14566,76.6302261352539\n14567,46.1039924621582\n14568,77.49708557128906\n14569,45.44217300415039\n14570,79.8738784790039\n14571,71.02587890625\n14572,38.14810562133789\n14573,35.575157165527344\n14574,35.58845901489258\n14575,64.08824157714844\n14576,38.43291091918945\n14577,77.72274017333984\n14578,39.544918060302734\n14579,43.69657897949219\n14580,36.993194580078125\n14581,27.27762794494629\n14582,36.95413589477539\n14583,65.60052490234375\n14584,28.998685836791992\n14585,83.26805114746094\n14586,31.598037719726562\n14587,49.2733154296875\n14588,26.825305938720703\n14589,21.84268569946289\n14590,29.01285171508789\n14591,60.985191345214844\n14592,51.26133346557617\n14593,66.85465240478516\n14594,72.99714660644531\n14595,34.65628433227539\n14596,72.01428985595703\n14597,54.25006866455078\n14598,69.24420166015625\n14599,54.06144332885742\n14600,75.22652435302734\n14601,60.3089485168457\n14602,36.65564727783203\n14603,34.249427795410156\n14604,43.57768630981445\n14605,54.6678466796875\n14606,38.60360336303711\n14607,66.6184310913086\n14608,35.51243209838867\n14609,38.865108489990234\n14610,42.882328033447266\n14611,29.101627349853516\n14612,44.679847717285156\n14613,48.19759750366211\n14614,32.430946350097656\n14615,69.8685073852539\n14616,27.896026611328125\n14617,36.777687072753906\n14618,37.11742401123047\n14619,23.86174964904785\n14620,38.725833892822266\n14621,43.812774658203125\n14622,59.43571853637695\n14623,64.1699447631836\n14624,72.58000183105469\n14625,44.06614303588867\n14626,77.39278411865234\n14627,50.79484176635742\n14628,74.11835479736328\n14629,52.487483978271484\n14630,76.81392669677734\n14631,66.06600952148438\n14632,36.97602462768555\n14633,28.46918296813965\n14634,36.07848358154297\n14635,58.74028015136719\n14636,38.3717041015625\n14637,74.08489990234375\n14638,38.117881774902344\n14639,36.610450744628906\n14640,37.81593704223633\n14641,19.78176498413086\n14642,37.1905632019043\n14643,57.386878967285156\n14644,30.27186393737793\n14645,80.36467742919922\n14646,30.38431739807129\n14647,41.29038619995117\n14648,29.254838943481445\n14649,13.124267578125\n14650,29.48141860961914\n14651,51.26005935668945\n14652,60.713436126708984\n14653,62.35247802734375\n14654,79.82198333740234\n14655,30.505186080932617\n14656,79.65287017822266\n14657,48.21022415161133\n14658,78.58158111572266\n14659,47.927181243896484\n14660,83.49799346923828\n14661,68.47723388671875\n14662,38.229515075683594\n14663,28.37726593017578\n14664,39.31675338745117\n14665,58.99574661254883\n14666,40.48484802246094\n14667,78.69880676269531\n14668,38.776615142822266\n14669,36.6063346862793\n14670,41.027557373046875\n14671,19.68474769592285\n14672,39.31695556640625\n14673,52.13264846801758\n14674,32.626583099365234\n14675,85.21417999267578\n14676,29.250476837158203\n14677,35.81816864013672\n14678,34.71737289428711\n14679,13.662877082824707\n14680,29.70330810546875\n14681,39.44599151611328\n14682,72.49859619140625\n14683,65.67662048339844\n14684,91.16474914550781\n14685,33.36350631713867\n14686,90.7529525756836\n14687,45.802650451660156\n14688,93.35042572021484\n14689,45.98884582519531\n14690,93.69182586669922\n14691,69.39641571044922\n14692,33.558902740478516\n14693,31.820695877075195\n14694,36.97651290893555\n14695,60.90637969970703\n14696,35.67991256713867\n14697,78.93938446044922\n14698,33.805450439453125\n14699,39.59980773925781\n14700,37.83101272583008\n14701,23.471694946289062\n14702,38.16506576538086\n14703,54.76017761230469\n14704,27.149856567382812\n14705,84.46554565429688\n14706,24.30959701538086\n14707,38.753353118896484\n14708,30.155193328857422\n14709,17.049604415893555\n14710,29.378032684326172\n14711,45.133522033691406\n14712,61.506385803222656\n14713,69.7164535522461\n14714,80.27417755126953\n14715,38.37946701049805\n14716,82.47675323486328\n14717,50.974212646484375\n14718,81.38080596923828\n14719,51.568397521972656\n14720,83.39854431152344\n14721,64.61981964111328\n14722,36.88176345825195\n14723,29.931652069091797\n14724,41.66171646118164\n14725,57.43096923828125\n14726,38.89719772338867\n14727,73.38666534423828\n14728,36.9504508972168\n14729,37.302467346191406\n14730,41.711551666259766\n14731,21.90204429626465\n14732,43.288883209228516\n14733,52.76189422607422\n14734,30.348560333251953\n14735,78.59030151367188\n14736,28.41665267944336\n14737,37.752403259277344\n14738,33.076168060302734\n14739,15.16110897064209\n14740,36.103759765625\n14741,47.094905853271484\n14742,58.13954544067383\n14743,67.41597747802734\n14744,75.95729064941406\n14745,36.314823150634766\n14746,79.49600982666016\n14747,50.47611999511719\n14748,75.6606674194336\n14749,51.714202880859375\n14750,80.84512329101562\n14751,67.760986328125\n14752,38.15459060668945\n14753,31.288530349731445\n14754,38.031776428222656\n14755,60.48109436035156\n14756,38.62033462524414\n14757,75.56177520751953\n14758,39.26172637939453\n14759,38.878265380859375\n14760,38.52656555175781\n14761,23.824249267578125\n14762,39.23604202270508\n14763,58.208343505859375\n14764,28.457239151000977\n14765,81.7043228149414\n14766,31.277589797973633\n14767,40.66443634033203\n14768,28.759897232055664\n14769,18.060083389282227\n14770,31.325271606445312\n14771,48.943565368652344\n14772,50.67375946044922\n14773,66.44548034667969\n14774,70.30744934082031\n14775,31.957731246948242\n14776,70.2932357788086\n14777,48.93929672241211\n14778,65.88931274414062\n14779,48.81339645385742\n14780,75.89387512207031\n14781,64.60848999023438\n14782,35.96302795410156\n14783,29.478857040405273\n14784,37.448089599609375\n14785,57.612308502197266\n14786,38.030799865722656\n14787,71.9435806274414\n14788,36.116966247558594\n14789,37.63064193725586\n14790,39.04030227661133\n14791,20.313810348510742\n14792,39.18082809448242\n14793,57.63862609863281\n14794,31.279911041259766\n14795,76.81116485595703\n14796,28.102685928344727\n14797,43.63372802734375\n14798,30.633962631225586\n14799,13.37952709197998\n14800,32.17340850830078\n14801,57.73512649536133\n14802,63.413902282714844\n14803,63.25075912475586\n14804,81.57239532470703\n14805,34.28249740600586\n14806,84.09913635253906\n14807,52.5401725769043\n14808,83.41432189941406\n14809,52.919036865234375\n14810,84.06160736083984\n14811,66.39266204833984\n14812,35.056732177734375\n14813,26.224897384643555\n14814,36.16403579711914\n14815,57.53117752075195\n14816,36.86733627319336\n14817,75.50279235839844\n14818,35.48584747314453\n14819,35.470699310302734\n14820,37.474796295166016\n14821,16.701616287231445\n14822,37.26102828979492\n14823,55.152671813964844\n14824,28.698226928710938\n14825,81.5191650390625\n14826,27.10164451599121\n14827,37.83924102783203\n14828,29.009273529052734\n14829,48.385868072509766\n14830,60.788124084472656\n14831,66.97928619384766\n14832,72.67206573486328\n14833,27.39916229248047\n14834,73.82068634033203\n14835,47.879905700683594\n14836,74.82139587402344\n14837,48.181339263916016\n14838,80.68104553222656\n14839,64.4454116821289\n14840,38.509273529052734\n14841,31.855117797851562\n14842,36.54106140136719\n14843,57.007755279541016\n14844,39.17415237426758\n14845,72.17945861816406\n14846,39.56514358520508\n14847,37.678749084472656\n14848,38.02145767211914\n14849,25.11349105834961\n14850,36.23352813720703\n14851,51.46510314941406\n14852,31.10511589050293\n14853,78.54366302490234\n14854,32.34070587158203\n14855,37.50199508666992\n14856,31.70758056640625\n14857,20.435453414916992\n14858,27.901758193969727\n14859,37.6784553527832\n14860,60.564414978027344\n14861,58.93254089355469\n14862,79.40084838867188\n14863,32.30183029174805\n14864,76.9405746459961\n14865,42.2402229309082\n14866,76.9283447265625\n14867,41.782012939453125\n14868,82.34346771240234\n14869,66.91252136230469\n14870,34.417236328125\n14871,29.995586395263672\n14872,35.216732025146484\n14873,59.04533004760742\n14874,35.60308074951172\n14875,74.78489685058594\n14876,35.13422393798828\n14877,37.162391662597656\n14878,36.14576721191406\n14879,22.548877716064453\n14880,36.0086784362793\n14881,54.65483856201172\n14882,27.133373260498047\n14883,80.79226684570312\n14884,26.844757080078125\n14885,37.62907791137695\n14886,28.403629302978516\n14887,16.52081871032715\n14888,28.04941177368164\n14889,44.23857879638672\n14890,56.83742141723633\n14891,65.07398986816406\n14892,72.74369049072266\n14893,33.08782196044922\n14894,73.02556610107422\n14895,47.1871337890625\n14896,71.57064056396484\n14897,47.2791633605957\n14898,78.52775573730469\n14899,67.28684997558594\n14900,35.47344970703125\n14901,30.272846221923828\n14902,35.89890670776367\n14903,59.56281280517578\n14904,37.13031768798828\n14905,75.91534423828125\n14906,36.375240325927734\n14907,37.79743957519531\n14908,37.360992431640625\n14909,22.025432586669922\n14910,36.780330657958984\n14911,55.45903778076172\n14912,28.891895294189453\n14913,82.10912322998047\n14914,28.04786491394043\n14915,39.72667694091797\n14916,29.585468292236328\n14917,15.657992362976074\n14918,28.519329071044922\n14919,46.350685119628906\n14920,61.24140548706055\n14921,64.24552154541016\n14922,81.04219055175781\n14923,34.03630828857422\n14924,81.22586822509766\n14925,48.13687515258789\n14926,80.12632751464844\n14927,48.066261291503906\n14928,84.3006591796875\n14929,66.20063781738281\n14930,37.7317008972168\n14931,27.534711837768555\n14932,38.055755615234375\n14933,57.61518096923828\n14934,39.45991516113281\n14935,75.38471984863281\n14936,38.354679107666016\n14937,36.26103210449219\n14938,39.63465118408203\n14939,18.1214656829834\n14940,38.904380798339844\n14941,54.84547805786133\n14942,31.510540008544922\n14943,81.63561248779297\n14944,30.35470199584961\n14945,38.466339111328125\n14946,31.708972930908203\n14947,47.053462982177734\n14948,63.34677505493164\n14949,65.8180160522461\n14950,76.5225830078125\n14951,28.067319869995117\n14952,76.85894012451172\n14953,47.09709167480469\n14954,78.1829605102539\n14955,47.277767181396484\n14956,83.39046478271484\n14957,79.56436157226562\n14958,24.017120361328125\n14959,31.46116828918457\n14960,30.859281539916992\n14961,68.25293731689453\n14962,27.493528366088867\n14963,90.0843734741211\n14964,23.01006317138672\n14965,41.38406753540039\n14966,31.35066795349121\n14967,21.28961181640625\n14968,32.690608978271484\n14969,60.283748626708984\n14970,18.45792007446289\n14971,40.39400100708008\n14972,22.974355697631836\n14973,52.4677848815918\n14974,66.70528411865234\n14975,80.9491958618164\n14976,87.18588256835938\n14977,69.74359130859375\n14978,39.335479736328125\n14979,29.07472038269043\n14980,36.09983444213867\n14981,61.26512908935547\n14982,40.539546966552734\n14983,78.69358825683594\n14984,40.97636413574219\n14985,38.094058990478516\n14986,38.704185485839844\n14987,19.045495986938477\n14988,36.96598434448242\n14989,60.37715148925781\n14990,31.755306243896484\n14991,85.86891174316406\n14992,32.72215270996094\n14993,43.82441329956055\n14994,29.60302734375\n14995,12.351072311401367\n14996,28.057645797729492\n14997,52.4163932800293\n14998,64.86408996582031\n14999,63.340721130371094\n15000,87.04692077636719\n15001,28.77023696899414\n15002,85.06828308105469\n15003,48.165462493896484\n15004,85.45199584960938\n15005,47.538475036621094\n15006,89.11337280273438\n15007,65.90941619873047\n15008,35.447994232177734\n15009,29.823345184326172\n15010,38.881954193115234\n15011,58.12964630126953\n15012,37.38309860229492\n15013,75.01421356201172\n15014,35.914878845214844\n15015,37.159114837646484\n15016,39.447181701660156\n15017,21.966571807861328\n15018,40.111351013183594\n15019,52.231689453125\n15020,28.667253494262695\n15021,80.67278289794922\n15022,26.874614715576172\n15023,36.79069900512695\n15024,31.339706420898438\n15025,43.353660583496094\n15026,59.291934967041016\n15027,66.33037567138672\n15028,79.19293212890625\n15029,36.07821273803711\n15030,81.27648162841797\n15031,48.45258712768555\n15032,78.42088317871094\n15033,49.28343200683594\n15034,83.22676849365234\n15035,67.4623794555664\n15036,40.85816955566406\n15037,30.465513229370117\n15038,31.42452621459961\n15039,59.25589370727539\n15040,40.41640090942383\n15041,74.83460998535156\n15042,43.07204818725586\n15043,38.59845733642578\n15044,34.927268981933594\n15045,21.39516258239746\n15046,30.565500259399414\n15047,60.866455078125\n15048,32.925079345703125\n15049,82.23632049560547\n15050,36.90764617919922\n15051,44.909912109375\n15052,27.937997817993164\n15053,48.92439651489258\n15054,61.99443435668945\n15055,56.118412017822266\n15056,77.79998016357422\n15057,21.899229049682617\n15058,70.76616668701172\n15059,41.800811767578125\n15060,76.17577362060547\n15061,40.08046340942383\n15062,79.85710144042969\n15063,61.85675811767578\n15064,29.550498962402344\n15065,27.69697380065918\n15066,40.03371810913086\n15067,55.40972900390625\n15068,32.860130310058594\n15069,70.06390380859375\n15070,28.52849006652832\n15071,35.53929138183594\n15072,39.23226547241211\n15073,19.67768669128418\n15074,43.5694694519043\n15075,51.20399475097656\n15076,24.878820419311523\n15077,73.46471405029297\n15078,18.831130981445312\n15079,36.641197204589844\n15080,29.436376571655273\n15081,11.4918794631958\n15082,37.45542526245117\n15083,53.6761474609375\n15084,53.11564636230469\n15085,70.42628479003906\n15086,71.3272705078125\n15087,41.52973937988281\n15088,80.62750244140625\n15089,56.35912322998047\n15090,73.21734619140625\n15091,58.550743103027344\n15092,77.03507995605469\n15093,65.83345794677734\n15094,37.33341598510742\n15095,28.96823501586914\n15096,37.100013732910156\n15097,57.710838317871094\n15098,38.8864860534668\n15099,74.09686279296875\n15100,38.025821685791016\n15101,36.95570373535156\n15102,38.74593734741211\n15103,20.216535568237305\n15104,37.63908386230469\n15105,55.29084777832031\n15106,31.634042739868164\n15107,80.02466583251953\n15108,30.262414932250977\n15109,39.63600158691406\n15110,31.591373443603516\n15111,14.068243980407715\n15112,30.026628494262695\n15113,47.67991256713867\n15114,63.99522018432617\n15115,63.121883392333984\n15116,78.41273498535156\n15117,30.713211059570312\n15118,78.22997283935547\n15119,47.22072219848633\n15120,79.85757446289062\n15121,47.432979583740234\n15122,81.93270874023438\n15123,72.07823944091797\n15124,42.77915954589844\n15125,33.777767181396484\n15126,34.053592681884766\n15127,64.7995834350586\n15128,42.05575942993164\n15129,79.34027862548828\n15130,45.47106170654297\n15131,41.02619552612305\n15132,36.63150405883789\n15133,25.866561889648438\n15134,33.423423767089844\n15135,64.26753997802734\n15136,31.99309539794922\n15137,87.75103759765625\n15138,38.53022766113281\n15139,46.532840728759766\n15140,27.733612060546875\n15141,20.77672576904297\n15142,23.89232635498047\n15143,49.84217834472656\n15144,58.227230072021484\n15145,59.50284194946289\n15146,82.34020233154297\n15147,27.73152732849121\n15148,75.27010345458984\n15149,44.93315505981445\n15150,74.54791259765625\n15151,42.88986587524414\n15152,85.80830383300781\n15153,42.7104377746582\n15154,40.74051284790039\n15155,19.24175453186035\n15156,42.61421203613281\n15157,37.585750579833984\n15158,41.70418930053711\n15159,48.530479431152344\n15160,41.37925720214844\n15161,23.850666046142578\n15162,42.29619598388672\n15163,15.793787956237793\n15164,42.25404357910156\n15165,31.986074447631836\n15166,34.642822265625\n15167,52.69327163696289\n15168,35.01401901245117\n15169,22.544567108154297\n15170,37.041099548339844\n15171,13.093481063842773\n15172,35.39200973510742\n15173,23.941791534423828\n15174,55.16037368774414\n15175,41.717281341552734\n15176,70.08976745605469\n15177,22.636884689331055\n15178,69.80979919433594\n15179,28.602306365966797\n15180,68.3221435546875\n15181,29.12543487548828\n15182,71.68411254882812\n15183,66.76179504394531\n15184,38.14448928833008\n15185,29.678855895996094\n15186,35.81920623779297\n15187,58.693233489990234\n15188,38.799808502197266\n15189,74.51099395751953\n15190,39.07835388183594\n15191,37.29293441772461\n15192,37.37355422973633\n15193,21.451766967773438\n15194,35.98953628540039\n15195,56.41790771484375\n15196,30.672212600708008\n15197,81.10816955566406\n15198,31.83603858947754\n15199,39.768455505371094\n15200,29.72662353515625\n15201,15.498091697692871\n15202,28.55193519592285\n15203,46.31394577026367\n15204,59.576866149902344\n15205,63.1485710144043\n15206,72.52873229980469\n15207,27.77523422241211\n15208,70.63872528076172\n15209,45.522727966308594\n15210,71.65277862548828\n15211,45.1447868347168\n15212,79.92578887939453\n15213,66.25415802001953\n15214,34.32270431518555\n15215,28.020658493041992\n15216,37.82524108886719\n15217,58.83528137207031\n15218,36.28944396972656\n15219,74.39732360839844\n15220,34.76548767089844\n15221,36.073753356933594\n15222,38.36972427368164\n15223,19.78879737854004\n15224,39.79206848144531\n15225,55.63089370727539\n15226,27.59660530090332\n15227,80.03526306152344\n15228,25.900190353393555\n15229,38.61625671386719\n15230,29.025636672973633\n15231,12.379012107849121\n15232,32.30284881591797\n15233,50.80852508544922\n15234,57.08052062988281\n15235,66.87145233154297\n15236,76.16644287109375\n15237,34.91435241699219\n15238,79.40167999267578\n15239,51.25517654418945\n15240,75.04216766357422\n15241,52.079010009765625\n15242,81.59285736083984\n15243,68.94023132324219\n15244,30.964069366455078\n15245,21.7994441986084\n15246,37.64919662475586\n15247,58.409847259521484\n15248,33.56333541870117\n15249,80.42364501953125\n15250,30.949604034423828\n15251,32.145145416259766\n15252,37.654415130615234\n15253,11.063371658325195\n15254,40.50473403930664\n15255,52.0637321472168\n15256,22.068798065185547\n15257,86.8558349609375\n15258,19.073610305786133\n15259,32.354759216308594\n15260,25.836214065551758\n15261,2.150578498840332\n15262,30.79461097717285\n15263,45.12337112426758\n15264,57.282936096191406\n15265,72.95559692382812\n15266,82.25332641601562\n15267,31.7176570892334\n15268,87.95707702636719\n15269,50.21253967285156\n15270,81.66690826416016\n15271,51.927364349365234\n15272,89.177734375\n15273,65.11920928955078\n15274,37.51706314086914\n15275,32.413291931152344\n15276,40.484710693359375\n15277,58.30076599121094\n15278,39.08235168457031\n15279,73.58138275146484\n15280,37.66463088989258\n15281,39.04655838012695\n15282,40.92039489746094\n15283,25.05363655090332\n15284,41.56900405883789\n15285,53.257781982421875\n15286,31.052207946777344\n15287,78.83964538574219\n15288,29.769556045532227\n15289,38.8946647644043\n15290,33.39006042480469\n15291,19.01031494140625\n15292,34.43115997314453\n15293,45.29590606689453\n15294,58.841251373291016\n15295,66.44580841064453\n15296,75.34521484375\n15297,36.86898422241211\n15298,77.29852294921875\n15299,49.508079528808594\n15300,74.89898681640625\n15301,50.1160888671875\n15302,80.6356201171875\n15303,64.59516906738281\n15304,37.89683151245117\n15305,35.87693405151367\n15306,42.34132766723633\n15307,57.299495697021484\n15308,39.62421417236328\n15309,72.49881744384766\n15310,37.1075553894043\n15311,40.85224533081055\n15312,42.36905288696289\n15313,30.12080955505371\n15314,42.497772216796875\n15315,48.24891662597656\n15316,32.34061050415039\n15317,76.7464599609375\n15318,28.56346893310547\n15319,37.00605773925781\n15320,37.04872512817383\n15321,25.76973533630371\n15322,34.14324951171875\n15323,37.749664306640625\n15324,65.24835968017578\n15325,64.78401947021484\n15326,84.0914306640625\n15327,44.00201416015625\n15328,86.10249328613281\n15329,48.24827194213867\n15330,85.08409881591797\n15331,49.21010971069336\n15332,85.35094451904297\n15333,68.61132049560547\n15334,40.759586334228516\n15335,32.204612731933594\n15336,34.45130920410156\n15337,61.70527267456055\n15338,40.62206268310547\n15339,75.89440155029297\n15340,42.85377883911133\n15341,40.11433410644531\n15342,36.89805221557617\n15343,23.63389778137207\n15344,34.819942474365234\n15345,62.83502960205078\n15346,31.323802947998047\n15347,83.03919219970703\n15348,35.920570373535156\n15349,46.61579132080078\n15350,27.484115600585938\n15351,18.103805541992188\n15352,26.415170669555664\n15353,54.2096061706543\n15354,55.99559020996094\n15355,60.3447151184082\n15356,78.65377044677734\n15357,27.50665283203125\n15358,74.46424102783203\n15359,47.1392822265625\n15360,73.55160522460938\n15361,45.614463806152344\n15362,81.47087097167969\n15363,62.85823440551758\n15364,33.52949142456055\n15365,28.33769416809082\n15366,41.01923370361328\n15367,56.01594924926758\n15368,36.591636657714844\n15369,70.45671844482422\n15370,32.537254333496094\n15371,36.16006088256836\n15372,41.10822677612305\n15373,19.97899055480957\n15374,43.521575927734375\n15375,53.19063186645508\n15376,30.3677978515625\n15377,74.17243957519531\n15378,23.873802185058594\n15379,39.03995895385742\n15380,33.05473327636719\n15381,12.156383514404297\n15382,37.733062744140625\n15383,55.17293930053711\n15384,62.933956146240234\n15385,68.12247467041016\n15386,76.64733123779297\n15387,39.2148323059082\n15388,83.56965637207031\n15389,55.38003158569336\n15390,80.71961212158203\n15391,57.0678825378418\n15392,81.99160766601562\n15393,64.26854705810547\n15394,34.62165069580078\n15395,29.103837966918945\n15396,40.57784652709961\n15397,56.910972595214844\n15398,37.295494079589844\n15399,72.18598175048828\n15400,33.95404815673828\n15401,36.53891372680664\n15402,40.83655548095703\n15403,21.371246337890625\n15404,42.427398681640625\n15405,52.385189056396484\n15406,30.574983596801758\n15407,76.65139770507812\n15408,25.691884994506836\n15409,36.84194564819336\n15410,33.54930114746094\n15411,13.934876441955566\n15412,36.62698745727539\n15413,48.813209533691406\n15414,62.52391052246094\n15415,69.2794418334961\n15416,71.70591735839844\n15417,36.54330825805664\n15418,76.76560974121094\n15419,52.208248138427734\n15420,75.33008575439453\n15421,53.306732177734375\n15422,81.09494018554688\n15423,67.94630432128906\n15424,36.91194152832031\n15425,29.60063362121582\n15426,36.50762939453125\n15427,59.09306716918945\n15428,38.36251449584961\n15429,77.1241455078125\n15430,37.73383331298828\n15431,37.09845733642578\n15432,38.12226486206055\n15433,21.353757858276367\n15434,36.62900161743164\n15435,53.226776123046875\n15436,30.175384521484375\n15437,83.78006744384766\n15438,29.065006256103516\n15439,37.0069694519043\n15440,31.328378677368164\n15441,15.455845832824707\n15442,27.658899307250977\n15443,40.26633071899414\n15444,65.49933624267578\n15445,64.06336975097656\n15446,83.78926849365234\n15447,32.3734016418457\n15448,82.69351959228516\n15449,45.06285095214844\n15450,83.65081024169922\n15451,45.00463104248047\n15452,87.92277526855469\n15453,65.5314712524414\n15454,38.79694747924805\n15455,28.240625381469727\n15456,38.25025939941406\n15457,57.741573333740234\n15458,39.94758605957031\n15459,73.24994659423828\n15460,39.16028594970703\n15461,36.48792266845703\n15462,39.729339599609375\n15463,19.219331741333008\n15464,39.251983642578125\n15465,56.89108657836914\n15466,32.39192581176758\n15467,79.16020202636719\n15468,31.855464935302734\n15469,40.67208480834961\n15470,31.40920066833496\n15471,12.345863342285156\n15472,32.73603439331055\n15473,51.71133804321289\n15474,61.64146423339844\n15475,64.5459213256836\n15476,74.4167251586914\n15477,28.19822883605957\n15478,74.84329223632812\n15479,48.47313690185547\n15480,75.11576080322266\n15481,48.65971755981445\n15482,82.35423278808594\n15483,68.16407012939453\n15484,37.824825286865234\n15485,30.214641571044922\n15486,35.315147399902344\n15487,59.611812591552734\n15488,38.91413497924805\n15489,76.82176208496094\n15490,39.0333137512207\n15491,38.34013748168945\n15492,37.41895294189453\n15493,21.46819305419922\n15494,35.38471984863281\n15495,56.95901870727539\n15496,31.207805633544922\n15497,83.4570541381836\n15498,31.505874633789062\n15499,40.30754852294922\n15500,30.499462127685547\n15501,15.71614933013916\n15502,27.407060623168945\n15503,45.658626556396484\n15504,63.00943374633789\n15505,64.16603088378906\n15506,76.14613342285156\n15507,28.459177017211914\n15508,73.9062728881836\n15509,45.8186149597168\n15510,76.98143005371094\n15511,45.259212493896484\n15512,81.06902313232422\n15513,66.01194763183594\n15514,34.47758865356445\n15515,30.313159942626953\n15516,39.33806610107422\n15517,58.31145095825195\n15518,36.8853874206543\n15519,74.32984161376953\n15520,34.000911712646484\n15521,37.9643669128418\n15522,39.7375373840332\n15523,22.368183135986328\n15524,40.806915283203125\n15525,53.88582229614258\n15526,29.726131439208984\n15527,37.996158599853516\n15528,32.37624740600586\n15529,48.686431884765625\n15530,61.48307418823242\n15531,70.37483215332031\n15532,70.08552551269531\n15533,35.60723114013672\n15534,74.04120635986328\n15535,51.976524353027344\n15536,73.56734466552734\n15537,52.86153030395508\n15538,80.03043365478516\n15539,64.08650970458984\n15540,36.224117279052734\n15541,37.49977493286133\n15542,38.98384094238281\n15543,57.518699645996094\n15544,37.45722579956055\n15545,71.30663299560547\n15546,35.57829284667969\n15547,42.63155746459961\n15548,39.46162033081055\n15549,31.5345401763916\n15550,39.4128303527832\n15551,51.52406692504883\n15552,31.151588439941406\n15553,75.12418365478516\n15554,28.10894775390625\n15555,40.379085540771484\n15556,34.412513732910156\n15557,27.43248748779297\n15558,32.16257858276367\n15559,42.83712387084961\n15560,59.55112075805664\n15561,64.58724212646484\n15562,73.93214416503906\n15563,42.61982727050781\n15564,75.58599090576172\n15565,49.78547668457031\n15566,75.90572357177734\n15567,50.34806442260742\n15568,74.96409606933594\n15569,62.710758209228516\n15570,37.199180603027344\n15571,29.332578659057617\n15572,42.432525634765625\n15573,55.972110748291016\n15574,38.47858810424805\n15575,70.24418640136719\n15576,37.40560531616211\n15577,34.88772964477539\n15578,41.650184631347656\n15579,23.68232536315918\n15580,43.786781311035156\n15581,48.325111389160156\n15582,28.602779388427734\n15583,75.6921615600586\n15584,28.33101463317871\n15585,32.89811325073242\n15586,32.7153434753418\n15587,17.62112045288086\n15588,35.713523864746094\n15589,38.60032653808594\n15590,53.66379928588867\n15591,63.83235168457031\n15592,76.93248748779297\n15593,38.13699722290039\n15594,80.103515625\n15595,46.330467224121094\n15596,71.79723358154297\n15597,47.799808502197266\n15598,83.32027435302734\n15599,65.48560333251953\n15600,39.084877014160156\n15601,29.152402877807617\n15602,33.71977233886719\n15603,57.685028076171875\n15604,39.411041259765625\n15605,72.67233276367188\n15606,40.86359786987305\n15607,36.46472930908203\n15608,36.17770767211914\n15609,21.09910011291504\n15610,33.45695877075195\n15611,56.402679443359375\n15612,31.603200912475586\n15613,79.67835235595703\n15614,34.210350036621094\n15615,40.551658630371094\n15616,29.1392879486084\n15617,15.970726013183594\n15618,25.305423736572266\n15619,44.914039611816406\n15620,61.15254211425781\n15621,56.900970458984375\n15622,78.17138671875\n15623,25.99103355407715\n15624,73.92762756347656\n15625,42.138736724853516\n15626,75.8891372680664\n15627,41.009765625\n15628,80.79832458496094\n15629,36.744293212890625\n15630,39.495079040527344\n15631,11.022759437561035\n15632,49.877967834472656\n15633,32.08484649658203\n15634,43.62849044799805\n15635,45.60710906982422\n15636,39.40673828125\n15637,17.450702667236328\n15638,48.68779373168945\n15639,7.850435256958008\n15640,51.83621597290039\n15641,23.146472930908203\n15642,36.67037582397461\n15643,48.39360809326172\n15644,30.46912384033203\n15645,13.625887870788574\n15646,43.01222610473633\n15647,3.7153422832489014\n15648,45.18046569824219\n15649,20.18239974975586\n15650,62.385398864746094\n15651,46.322731018066406\n15652,76.63539123535156\n15653,24.68524932861328\n15654,82.82879638671875\n15655,30.402469635009766\n15656,79.69244384765625\n15657,31.88890838623047\n15658,80.76228332519531\n15659,64.87617492675781\n15660,35.56241226196289\n15661,24.1480712890625\n15662,40.24280548095703\n15663,57.02401351928711\n15664,38.209835052490234\n15665,73.3311538696289\n15666,35.6705207824707\n15667,33.118980407714844\n15668,41.152687072753906\n15669,14.5586519241333\n15670,42.91667556762695\n15671,54.8101921081543\n15672,29.695903778076172\n15673,78.89241790771484\n15674,25.893434524536133\n15675,38.461631774902344\n15676,30.67084503173828\n15677,6.128773212432861\n15678,34.955711364746094\n15679,54.90287399291992\n15680,63.79144287109375\n15681,65.57606506347656\n15682,87.91553497314453\n15683,34.289180755615234\n15684,92.88626861572266\n15685,52.46696853637695\n15686,87.8486328125\n15687,53.61512756347656\n15688,91.40345764160156\n15689,66.92728424072266\n15690,36.333335876464844\n15691,29.564355850219727\n15692,37.543941497802734\n15693,59.19219207763672\n15694,37.75629425048828\n15695,75.08678436279297\n15696,37.03433609008789\n15697,36.98081588745117\n15698,38.438255310058594\n15699,21.62645721435547\n15700,38.49785614013672\n15701,55.10764694213867\n15702,29.2198543548584\n15703,81.21763610839844\n15704,28.741758346557617\n15705,38.40536880493164\n15706,30.240646362304688\n15707,15.1013822555542\n15708,30.688594818115234\n15709,46.236053466796875\n15710,59.32231521606445\n15711,65.21688842773438\n15712,76.91199493408203\n15713,33.28766632080078\n15714,77.66314697265625\n15715,48.14509582519531\n15716,75.46932983398438\n15717,48.44108581542969\n15718,82.54539489746094\n15719,66.52861785888672\n15720,35.68423080444336\n15721,31.379690170288086\n15722,35.10205841064453\n15723,59.6080207824707\n15724,36.65748977661133\n15725,74.60753631591797\n15726,36.911827087402344\n15727,38.503334045410156\n15728,36.301170349121094\n15729,23.905149459838867\n15730,36.083351135253906\n15731,56.400146484375\n15732,27.81235694885254\n15733,80.84469604492188\n15734,29.137887954711914\n15735,40.40654754638672\n15736,28.081350326538086\n15737,18.137985229492188\n15738,28.08191680908203\n15739,46.49940872192383\n15740,54.221134185791016\n15741,63.31074905395508\n15742,74.32482147216797\n15743,33.31578063964844\n15744,73.74240112304688\n15745,47.486141204833984\n15746,71.11312866210938\n15747,47.14737319946289\n15748,77.750244140625\n15749,69.20194244384766\n15750,35.89242172241211\n15751,27.670696258544922\n15752,36.87559127807617\n15753,59.800262451171875\n15754,38.04182434082031\n15755,78.89640045166016\n15756,36.400264739990234\n15757,37.551944732666016\n15758,38.6046142578125\n15759,17.707096099853516\n15760,37.89789962768555\n15761,57.60472869873047\n15762,30.27459716796875\n15763,84.79595184326172\n15764,27.421287536621094\n15765,39.87965774536133\n15766,30.642276763916016\n15767,10.719744682312012\n15768,29.832199096679688\n15769,50.52852249145508\n15770,65.49958038330078\n15771,69.2293930053711\n15772,77.56137084960938\n15773,29.46552276611328\n15774,78.59821319580078\n15775,50.069541931152344\n15776,81.4731674194336\n15777,50.28628158569336\n15778,83.19606018066406\n15779,66.2502212524414\n15780,35.25090026855469\n15781,29.251020431518555\n15782,35.94385528564453\n15783,58.4409065246582\n15784,36.88255310058594\n15785,73.9049072265625\n15786,35.65127944946289\n15787,36.80924987792969\n15788,37.250728607177734\n15789,21.0644588470459\n15790,36.74240493774414\n15791,55.381046295166016\n15792,29.640932083129883\n15793,79.63768768310547\n15794,27.64203453063965\n15795,39.40224075317383\n15796,29.998146057128906\n15797,14.555400848388672\n15798,29.22198486328125\n15799,48.457130432128906\n15800,62.971317291259766\n15801,63.630645751953125\n15802,78.21581268310547\n15803,33.17450714111328\n15804,78.91067504882812\n15805,48.555442810058594\n15806,78.97545623779297\n15807,48.725955963134766\n15808,83.01637268066406\n15809,62.55491638183594\n15810,32.82115173339844\n15811,29.527978897094727\n15812,40.315486907958984\n15813,55.447208404541016\n15814,35.49555206298828\n15815,70.01693725585938\n15816,31.867008209228516\n15817,36.286781311035156\n15818,39.92557144165039\n15819,22.43886947631836\n15820,42.05133819580078\n15821,50.059268951416016\n15822,28.994163513183594\n15823,73.82511138916016\n15824,23.350019454956055\n15825,35.5791130065918\n15826,33.02171325683594\n15827,15.530172348022461\n15828,36.021339416503906\n15829,47.1080436706543\n15830,60.46977615356445\n15831,67.81746673583984\n15832,71.38056945800781\n15833,39.500648498535156\n15834,77.24652099609375\n15835,52.0726432800293\n15836,74.917236328125\n15837,53.56454849243164\n15838,78.2228775024414\n15839,66.59912872314453\n15840,34.824378967285156\n15841,30.270570755004883\n15842,36.1893310546875\n15843,57.82448959350586\n15844,36.58224105834961\n15845,76.16095733642578\n15846,35.186946868896484\n15847,37.52648162841797\n15848,37.534732818603516\n15849,22.219980239868164\n15850,36.50168228149414\n15851,50.82014465332031\n15852,28.70125389099121\n15853,82.11378479003906\n15854,26.492639541625977\n15855,35.52840042114258\n15856,31.290931701660156\n15857,38.061344146728516\n15858,63.524044036865234\n15859,65.77229309082031\n15860,79.095458984375\n15861,33.658905029296875\n15862,79.2394027709961\n15863,45.39622116088867\n15864,80.81462860107422\n15865,45.39345932006836\n15866,83.74739074707031\n15867,65.82697296142578\n15868,38.938934326171875\n15869,31.044170379638672\n15870,37.61241912841797\n15871,58.10331344604492\n15872,40.14083480834961\n15873,73.54959869384766\n15874,39.51652908325195\n15875,38.1546630859375\n15876,39.38371276855469\n15877,23.268247604370117\n15878,37.69898986816406\n15879,54.902671813964844\n15880,33.4371452331543\n15881,79.58615112304688\n15882,32.634464263916016\n15883,39.62942886352539\n15884,33.291107177734375\n15885,17.496755599975586\n15886,30.88414192199707\n15887,45.0467414855957\n15888,64.6468734741211\n15889,63.47429275512695\n15890,74.73550415039062\n15891,30.467388153076172\n15892,73.59908294677734\n15893,46.201290130615234\n15894,76.33822631835938\n15895,45.8824462890625\n15896,81.78241729736328\n15897,67.90953063964844\n15898,34.99168395996094\n15899,30.80234718322754\n15900,35.568782806396484\n15901,60.793487548828125\n15902,37.15704345703125\n15903,76.08966827392578\n15904,35.71894073486328\n15905,39.96381759643555\n15906,37.660953521728516\n15907,21.092676162719727\n15908,37.61554718017578\n15909,61.61909103393555\n15910,29.7429256439209\n15911,81.22285461425781\n15912,27.245635986328125\n15913,46.7764892578125\n15914,28.45490264892578\n15915,13.960556983947754\n15916,30.055950164794922\n15917,61.486061096191406\n15918,61.574893951416016\n15919,66.30834197998047\n15920,81.90452575683594\n15921,34.543033599853516\n15922,83.89930725097656\n15923,54.898868560791016\n15924,83.3051528930664\n15925,54.81198501586914\n15926,83.96085357666016\n15927,65.3394775390625\n15928,36.871952056884766\n15929,28.97294807434082\n15930,38.23463439941406\n15931,57.94597625732422\n15932,38.382564544677734\n15933,73.06917572021484\n15934,37.4669189453125\n15935,37.201271057128906\n15936,39.28134536743164\n15937,20.40195655822754\n15938,39.849788665771484\n15939,56.927799224853516\n15940,30.265615463256836\n15941,78.38597106933594\n15942,29.299335479736328\n15943,40.933982849121094\n15944,30.32443618774414\n15945,13.876961708068848\n15946,32.45805740356445\n15947,53.00867462158203\n15948,58.02461242675781\n15949,64.68726348876953\n15950,75.55924987792969\n15951,32.57472610473633\n15952,77.4790267944336\n15953,50.46207046508789\n15954,75.44131469726562\n15955,50.97172927856445\n15956,78.73589324951172\n15957,60.90001678466797\n15958,35.38873291015625\n15959,29.075223922729492\n15960,42.1281623840332\n15961,54.446144104003906\n15962,37.661930084228516\n15963,68.18534851074219\n15964,34.69613265991211\n15965,35.56362533569336\n15966,41.603248596191406\n15967,22.211181640625\n15968,43.83034133911133\n15969,72.24493408203125\n15970,26.817941665649414\n15971,15.46580696105957\n15972,38.143516540527344\n15973,46.92328643798828\n15974,58.32978820800781\n15975,65.9528579711914\n15976,70.00841522216797\n15977,37.482177734375\n15978,75.33588409423828\n15979,50.61526107788086\n15980,71.8284912109375\n15981,52.11310577392578\n15982,76.9593276977539\n15983,64.1264419555664\n15984,35.548282623291016\n15985,30.043224334716797\n15986,37.5163459777832\n15987,57.31525421142578\n15988,37.10780715942383\n15989,71.66925811767578\n15990,36.01753234863281\n15991,36.99321746826172\n15992,38.22252655029297\n15993,22.632266998291016\n15994,38.63592529296875\n15995,53.974769592285156\n15996,29.48881721496582\n15997,77.05175018310547\n15998,28.360929489135742\n15999,38.74231719970703\n16000,30.58036994934082\n16001,16.382497787475586\n16002,31.705158233642578\n16003,47.44883346557617\n16004,57.67587661743164\n16005,63.46625900268555\n16006,73.51178741455078\n16007,34.53421401977539\n16008,75.11567687988281\n16009,48.6288948059082\n16010,72.94615173339844\n16011,49.057701110839844\n16012,78.1503677368164\n16013,63.819435119628906\n16014,37.69282150268555\n16015,29.14434814453125\n16016,39.46977996826172\n16017,56.614112854003906\n16018,39.40574645996094\n16019,71.66204833984375\n16020,37.89724349975586\n16021,37.26399230957031\n16022,40.59196090698242\n16023,20.447534561157227\n16024,40.99369430541992\n16025,55.631935119628906\n16026,32.21908187866211\n16027,76.57835388183594\n16028,30.328468322753906\n16029,40.79069900512695\n16030,32.452125549316406\n16031,13.950847625732422\n16032,34.56222152709961\n16033,52.620452880859375\n16034,60.27846908569336\n16035,64.88658905029297\n16036,74.16735076904297\n16037,31.920757293701172\n16038,76.49734497070312\n16039,50.34480667114258\n16040,76.01451110839844\n16041,50.935855865478516\n16042,78.59009552001953\n16043,65.93994903564453\n16044,35.9054069519043\n16045,29.441699981689453\n16046,41.220619201660156\n16047,58.423439025878906\n16048,38.08049392700195\n16049,74.50764465332031\n16050,35.57470703125\n16051,37.4698371887207\n16052,41.295406341552734\n16053,21.00381851196289\n16054,43.250484466552734\n16055,54.80641555786133\n16056,29.732810974121094\n16057,79.35749816894531\n16058,26.9570369720459\n16059,38.45987319946289\n16060,32.24609375\n16061,13.500171661376953\n16062,36.82854461669922\n16063,51.068145751953125\n16064,58.59999465942383\n16065,70.89781951904297\n16066,71.59856414794922\n16067,35.31753158569336\n16068,76.32242584228516\n16069,52.99030303955078\n16070,73.11767578125\n16071,54.169654846191406\n16072,80.21395111083984\n16073,67.23978424072266\n16074,35.47583770751953\n16075,28.38496208190918\n16076,35.85557174682617\n16077,58.8665771484375\n16078,37.21056365966797\n16079,76.88345336914062\n16080,36.51629638671875\n16081,37.355098724365234\n16082,37.458309173583984\n16083,18.811235427856445\n16084,37.031742095947266\n16085,56.26352310180664\n16086,28.56841278076172\n16087,83.14997863769531\n16088,27.924095153808594\n16089,40.15867233276367\n16090,28.785463333129883\n16091,12.254817008972168\n16092,28.5708065032959\n16093,48.6497688293457\n16094,60.27030944824219\n16095,65.31806945800781\n16096,79.70738983154297\n16097,30.688690185546875\n16098,80.10664367675781\n16099,48.3358154296875\n16100,79.91806030273438\n16101,48.44770812988281\n16102,81.81332397460938\n16103,66.35999298095703\n16104,39.257415771484375\n16105,32.37838363647461\n16106,38.00358200073242\n16107,59.76573181152344\n16108,39.90702438354492\n16109,74.02362823486328\n16110,40.85396957397461\n16111,39.06694030761719\n16112,39.055824279785156\n16113,25.236120223999023\n16114,38.68861389160156\n16115,56.673545837402344\n16116,30.372175216674805\n16117,80.50265502929688\n16118,33.39453887939453\n16119,41.32297134399414\n16120,30.263275146484375\n16121,19.86463165283203\n16122,30.424373626708984\n16123,46.38051986694336\n16124,54.25818634033203\n16125,61.9642333984375\n16126,77.5855941772461\n16127,33.17668151855469\n16128,76.2896728515625\n16129,46.80256271362305\n16130,72.33683013916016\n16131,46.28464126586914\n16132,80.09459686279297\n16133,63.827674865722656\n16134,35.42050552368164\n16135,31.43954086303711\n16136,37.491905212402344\n16137,57.3941650390625\n16138,36.84383010864258\n16139,70.84957885742188\n16140,35.762447357177734\n16141,37.659664154052734\n16142,38.08687973022461\n16143,24.843666076660156\n16144,38.47795486450195\n16145,53.405426025390625\n16146,29.42032241821289\n16147,75.99211883544922\n16148,28.189563751220703\n16149,38.72046661376953\n16150,30.929685592651367\n16151,18.98646354675293\n16152,31.485374450683594\n16153,46.19882583618164\n16154,57.14704513549805\n16155,62.762081146240234\n16156,73.47799682617188\n16157,36.627349853515625\n16158,74.95862579345703\n16159,48.55245590209961\n16160,72.40982818603516\n16161,49.009559631347656\n16162,77.80187225341797\n16163,63.89390182495117\n16164,36.88704299926758\n16165,29.569599151611328\n16166,38.57697296142578\n16167,56.85389709472656\n16168,38.21768569946289\n16169,71.30799865722656\n16170,37.28154754638672\n16171,37.55280303955078\n16172,39.370643615722656\n16173,21.140766143798828\n16174,40.336666107177734\n16175,56.37065505981445\n16176,30.15926170349121\n16177,76.1376953125\n16178,29.34821891784668\n16179,41.32369613647461\n16180,30.281009674072266\n16181,14.906974792480469\n16182,33.394588470458984\n16183,53.63208770751953\n16184,55.13678741455078\n16185,64.30744934082031\n16186,72.69149017333984\n16187,32.84575653076172\n16188,75.05445861816406\n16189,50.67965316772461\n16190,72.51243591308594\n16191,51.39966583251953\n16192,75.14962768554688\n16193,62.07088088989258\n16194,34.28522872924805\n16195,29.025291442871094\n16196,44.08112716674805\n16197,57.04914474487305\n16198,36.748714447021484\n16199,67.30384826660156\n16200,32.902523040771484\n16201,34.92223358154297\n16202,42.88374710083008\n16203,22.958520889282227\n16204,47.515892028808594\n16205,53.06966018676758\n16206,29.191476821899414\n16207,70.93965148925781\n16208,24.2554988861084\n16209,37.385616302490234\n16210,32.984580993652344\n16211,14.139971733093262\n16212,42.72311019897461\n16213,56.386375427246094\n16214,55.10050964355469\n16215,68.94390869140625\n16216,73.13533020019531\n16217,44.241058349609375\n16218,82.43616485595703\n16219,57.66543960571289\n16220,71.41726684570312\n16221,60.11244583129883\n16222,84.10149383544922\n16223,66.9765396118164\n16224,32.64419174194336\n16225,29.576414108276367\n16226,31.572206497192383\n16227,59.12320327758789\n16228,34.089725494384766\n16229,76.04547119140625\n16230,34.07865524291992\n16231,37.86141586303711\n16232,33.459434509277344\n16233,21.082889556884766\n16234,32.58978271484375\n16235,56.27222442626953\n16236,25.39370346069336\n16237,82.3852310180664\n16238,25.55204963684082\n16239,40.07664489746094\n16240,25.4379825592041\n16241,15.335103988647461\n16242,23.50265121459961\n16243,46.293174743652344\n16244,55.425357818603516\n16245,62.75542068481445\n16246,76.3907699584961\n16247,31.519084930419922\n16248,75.5116958618164\n16249,46.631961822509766\n16250,75.11819458007812\n16251,46.228816986083984\n16252,77.31486511230469\n16253,66.58666229248047\n16254,38.99946975708008\n16255,30.831771850585938\n16256,40.08719253540039\n16257,58.69504928588867\n16258,40.449649810791016\n16259,75.1541976928711\n16260,39.59598922729492\n16261,38.06578063964844\n16262,41.02925491333008\n16263,22.667278289794922\n16264,40.67350387573242\n16265,54.24807357788086\n16266,31.99972152709961\n16267,81.15550231933594\n16268,31.517953872680664\n16269,38.72858810424805\n16270,33.28220748901367\n16271,16.560470581054688\n16272,32.82941818237305\n16273,44.842567443847656\n16274,62.37472915649414\n16275,65.30384063720703\n16276,78.82247161865234\n16277,33.3294677734375\n16278,79.2035903930664\n16279,47.631072998046875\n16280,78.42670440673828\n16281,48.053627014160156\n16282,83.59028625488281\n16283,64.80628204345703\n16284,37.76534652709961\n16285,31.765525817871094\n16286,39.73353958129883\n16287,57.36345291137695\n16288,39.2104377746582\n16289,73.5447769165039\n16290,38.23887252807617\n16291,38.12957763671875\n16292,40.31724548339844\n16293,24.713594436645508\n16294,39.99495315551758\n16295,50.9295768737793\n16296,30.79620933532715\n16297,79.23101806640625\n16298,29.882394790649414\n16299,36.88728332519531\n16300,33.339195251464844\n16301,19.43853187561035\n16302,31.506540298461914\n16303,39.753456115722656\n16304,61.00812911987305\n16305,63.1157112121582\n16306,80.5451431274414\n16307,36.386260986328125\n16308,80.8935317993164\n16309,45.902557373046875\n16310,79.46121978759766\n16311,46.5410270690918\n16312,82.7161865234375\n16313,64.74388885498047\n16314,36.09201431274414\n16315,30.94600486755371\n16316,36.38899230957031\n16317,57.54813003540039\n16318,37.40013122558594\n16319,71.90206146240234\n16320,36.35487365722656\n16321,38.068904876708984\n16322,37.5974006652832\n16323,23.359886169433594\n16324,37.01622772216797\n16325,55.37538528442383\n16326,30.73556137084961\n16327,77.12679290771484\n16328,29.338619232177734\n16329,40.175926208496094\n16330,30.896421432495117\n16331,17.406591415405273\n16332,30.74582290649414\n16333,48.72975540161133\n16334,59.71030807495117\n16335,63.949459075927734\n16336,69.4740982055664\n16337,32.11089324951172\n16338,70.0025634765625\n16339,48.41997528076172\n16340,71.16613006591797\n16341,48.54381561279297\n16342,76.33103942871094\n16343,64.1418228149414\n16344,40.41216278076172\n16345,29.144678115844727\n16346,29.459320068359375\n16347,56.26521682739258\n16348,39.08015823364258\n16349,71.29185485839844\n16350,43.26821517944336\n16351,36.481040954589844\n16352,32.435394287109375\n16353,21.186100006103516\n16354,28.03557586669922\n16355,57.093868255615234\n16356,30.12757682800293\n16357,79.15818786621094\n16358,37.550533294677734\n16359,41.067752838134766\n16360,25.15606117248535\n16361,17.90044593811035\n16362,19.116172790527344\n16363,40.99016189575195\n16364,52.990875244140625\n16365,51.509361267089844\n16366,70.69064331054688\n16367,18.046798706054688\n16368,61.70452117919922\n16369,35.83363342285156\n16370,65.54325103759766\n16371,33.73179626464844\n16372,71.55232238769531\n16373,64.12989044189453\n16374,34.65782165527344\n16375,28.03763771057129\n16376,38.22181701660156\n16377,57.177059173583984\n16378,36.910545349121094\n16379,71.45001983642578\n16380,34.47678756713867\n16381,35.44593048095703\n16382,39.00417709350586\n16383,20.047916412353516\n16384,39.84416580200195\n16385,54.14142608642578\n16386,30.100791931152344\n16387,76.53828430175781\n16388,26.401241302490234\n16389,38.63047409057617\n16390,31.2576904296875\n16391,12.588357925415039\n16392,33.41716003417969\n16393,51.26203918457031\n16394,62.92189025878906\n16395,64.79727935791016\n16396,77.82011413574219\n16397,35.31394958496094\n16398,81.2587661743164\n16399,51.08595657348633\n16400,79.13978576660156\n16401,51.79011917114258\n16402,84.50248718261719\n16403,63.293701171875\n16404,35.40070724487305\n16405,28.31941032409668\n16406,42.00595474243164\n16407,54.92761993408203\n16408,38.03316116333008\n16409,73.416015625\n16410,34.853919982910156\n16411,35.13949966430664\n16412,41.930118560791016\n16413,20.88671112060547\n16414,42.92067337036133\n16415,45.31374740600586\n16416,29.536569595336914\n16417,78.47933959960938\n16418,24.730636596679688\n16419,31.44222068786621\n16420,34.84846115112305\n16421,14.887837409973145\n16422,33.88603591918945\n16423,35.468994140625\n16424,64.89725494384766\n16425,66.05064392089844\n16426,85.93326568603516\n16427,46.39212417602539\n16428,87.2161865234375\n16429,63.0445556640625\n16430,36.11320495605469\n16431,30.967479705810547\n16432,36.788360595703125\n16433,70.79457092285156\n16434,36.68962478637695\n16435,38.23210906982422\n16436,37.71820831298828\n16437,23.292247772216797\n16438,38.09292221069336\n16439,48.539241790771484\n16440,52.80295181274414\n16441,63.216796875\n16442,69.01058197021484\n16443,32.34219741821289\n16444,70.1089859008789\n16445,48.1259651184082\n16446,68.51100158691406\n16447,48.21041488647461\n16448,71.77606201171875\n16449,65.19738006591797\n16450,34.44849395751953\n16451,28.304698944091797\n16452,38.04618835449219\n16453,57.717140197753906\n16454,36.86781311035156\n16455,73.63822937011719\n16456,34.583335876464844\n16457,36.97188186645508\n16458,39.049842834472656\n16459,19.371753692626953\n16460,40.060630798339844\n16461,55.841976165771484\n16462,29.492984771728516\n16463,78.53265380859375\n16464,26.151647567749023\n16465,40.2573356628418\n16466,30.578765869140625\n16467,12.159244537353516\n16468,33.23474884033203\n16469,53.558380126953125\n16470,60.708648681640625\n16471,67.16839599609375\n16472,75.67396545410156\n16473,34.156272888183594\n16474,79.370849609375\n16475,52.35221481323242\n16476,78.1275634765625\n16477,53.09303665161133\n16478,80.05270385742188\n16479,71.04512786865234\n16480,41.5240592956543\n16481,36.00585174560547\n16482,38.442543029785156\n16483,76.52151489257812\n16484,42.23966598510742\n16485,42.86186981201172\n16486,39.85398864746094\n16487,27.885723114013672\n16488,39.183963775634766\n16489,82.48703002929688\n16490,35.18605041503906\n16491,21.38559341430664\n16492,32.11228561401367\n16493,62.481422424316406\n16494,59.73541259765625\n16495,64.9943618774414\n16496,80.7923583984375\n16497,35.76575469970703\n16498,79.51866149902344\n16499,54.565738677978516\n16500,76.49729919433594\n16501,54.26020431518555\n16502,86.69950866699219\n16503,63.46500015258789\n16504,35.26392364501953\n16505,29.149980545043945\n16506,37.2115364074707\n16507,57.07811737060547\n16508,37.119903564453125\n16509,70.79911804199219\n16510,35.59600830078125\n16511,37.010093688964844\n16512,38.42483901977539\n16513,20.38257598876953\n16514,39.2352409362793\n16515,56.77459716796875\n16516,29.379817962646484\n16517,75.75129699707031\n16518,27.51152229309082\n16519,42.58657455444336\n16520,29.09568977355957\n16521,13.372088432312012\n16522,32.15380859375\n16523,56.63151931762695\n16524,57.68080139160156\n16525,62.75206756591797\n16526,78.64999389648438\n16527,34.40809631347656\n16528,81.52152252197266\n16529,51.903480529785156\n16530,78.21636199951172\n16531,52.430667877197266\n16532,81.3234634399414\n16533,65.96171569824219\n16534,39.806610107421875\n16535,27.85417366027832\n16536,39.997798919677734\n16537,58.11457824707031\n16538,41.091819763183594\n16539,73.68082427978516\n16540,40.78714370727539\n16541,35.98113250732422\n16542,41.1761360168457\n16543,19.261430740356445\n16544,41.16046905517578\n16545,56.36711502075195\n16546,32.483707427978516\n16547,79.81279754638672\n16548,32.77779006958008\n16549,39.84230041503906\n16550,32.093650817871094\n16551,12.676426887512207\n16552,33.47438049316406\n16553,50.21234893798828\n16554,61.575096130371094\n16555,63.373104095458984\n16556,80.11975860595703\n16557,30.423717498779297\n16558,80.68697357177734\n16559,48.17048645019531\n16560,78.60572814941406\n16561,48.45466613769531\n16562,84.1744384765625\n16563,66.74665069580078\n16564,36.999568939208984\n16565,27.661808013916016\n16566,36.811798095703125\n16567,59.01095199584961\n16568,38.514793395996094\n16569,74.70978546142578\n16570,37.965553283691406\n16571,36.680580139160156\n16572,38.53335952758789\n16573,18.322528839111328\n16574,38.54947280883789\n16575,59.01082229614258\n16576,30.02235221862793\n16577,80.58695983886719\n16578,29.655651092529297\n16579,42.360107421875\n16580,28.752086639404297\n16581,11.179131507873535\n16582,30.885934829711914\n16583,55.653297424316406\n16584,59.84499740600586\n16585,64.62666320800781\n16586,79.03336334228516\n16587,29.920623779296875\n16588,80.11011505126953\n16589,50.53927993774414\n16590,78.4797134399414\n16591,50.51542663574219\n16592,83.23648834228516\n16593,67.29584503173828\n16594,36.11019515991211\n16595,30.049135208129883\n16596,34.10233688354492\n16597,59.45003890991211\n16598,37.3189582824707\n16599,75.4897689819336\n16600,37.107460021972656\n16601,38.55686950683594\n16602,36.18810272216797\n16603,21.10671615600586\n16604,34.77383804321289\n16605,58.690460205078125\n16606,30.054922103881836\n16607,81.49081420898438\n16608,29.7012996673584\n16609,42.75790023803711\n16610,28.58982276916504\n16611,14.986682891845703\n16612,27.450780868530273\n16613,51.73523712158203\n16614,60.9937858581543\n16615,64.08928680419922\n16616,74.83838653564453\n16617,29.17501449584961\n16618,73.79670715332031\n16619,48.513851165771484\n16620,76.0471420288086\n16621,47.90786361694336\n16622,79.47453308105469\n16623,65.65361785888672\n16624,35.468963623046875\n16625,30.945865631103516\n16626,37.59667205810547\n16627,57.9942512512207\n16628,37.43510818481445\n16629,38.73027038574219\n16630,38.739601135253906\n16631,22.85530662536621\n16632,38.620826721191406\n16633,54.84440231323242\n16634,30.637344360351562\n16635,39.7712516784668\n16636,31.948667526245117\n16637,16.633365631103516\n16638,31.979549407958984\n16639,48.59458923339844\n16640,61.66853713989258\n16641,67.02179718017578\n16642,71.85829162597656\n16643,33.76171875\n16644,73.72370147705078\n16645,50.09587860107422\n16646,75.1651840209961\n16647,50.38328170776367\n16648,77.90612030029297\n16649,69.23393249511719\n16650,38.57220458984375\n16651,28.096349716186523\n16652,34.951637268066406\n16653,60.488670349121094\n16654,39.5494499206543\n16655,77.31361389160156\n16656,39.82661437988281\n16657,36.999820709228516\n16658,37.348304748535156\n16659,18.618555068969727\n16660,35.23677444458008\n16661,59.90574264526367\n16662,31.65964698791504\n16663,84.33228302001953\n16664,32.001861572265625\n16665,42.02717208862305\n16666,29.322561264038086\n16667,12.055510520935059\n16668,27.089313507080078\n16669,51.17002868652344\n16670,65.1845932006836\n16671,63.355934143066406\n16672,80.23294067382812\n16673,26.371816635131836\n16674,77.79364776611328\n16675,46.93854904174805\n16676,80.2947006225586\n16677,46.334510803222656\n16678,85.99544525146484\n16679,62.13379669189453\n16680,36.174415588378906\n16681,30.2763729095459\n16682,41.347660064697266\n16683,55.65755844116211\n16684,38.10982894897461\n16685,70.12195587158203\n16686,36.22407150268555\n16687,36.79758071899414\n16688,41.135902404785156\n16689,23.36676788330078\n16690,42.85497283935547\n16691,50.569332122802734\n16692,30.008363723754883\n16693,74.80306243896484\n16694,28.1986141204834\n16695,36.58389663696289\n16696,33.16264343261719\n16697,17.24216079711914\n16698,36.115699768066406\n16699,44.82571029663086\n16700,55.982662200927734\n16701,65.13105773925781\n16702,72.99138641357422\n16703,37.16685104370117\n16704,76.65382385253906\n16705,49.155372619628906\n16706,72.40678405761719\n16707,50.28666305541992\n16708,77.50830078125\n16709,67.85022735595703\n16710,36.83582305908203\n16711,28.370145797729492\n16712,38.650753021240234\n16713,60.85569763183594\n16714,38.048492431640625\n16715,75.23820495605469\n16716,37.669437408447266\n16717,36.06743240356445\n16718,39.21915054321289\n16719,20.90203857421875\n16720,40.64630889892578\n16721,57.83349609375\n16722,28.17913055419922\n16723,81.66082000732422\n16724,28.924585342407227\n16725,39.15190505981445\n16726,28.834613800048828\n16727,13.329663276672363\n16728,32.87593460083008\n16729,51.32658767700195\n16730,54.38996505737305\n16731,66.73933410644531\n16732,76.83550262451172\n16733,34.122535705566406\n16734,78.98140716552734\n16735,50.93223190307617\n16736,71.87752532958984\n16737,51.29090881347656\n16738,84.79533386230469\n16739,65.48838806152344\n16740,32.07825469970703\n16741,30.63050651550293\n16742,34.262325286865234\n16743,57.3011474609375\n16744,33.62732696533203\n16745,74.40184783935547\n16746,32.501930236816406\n16747,37.395591735839844\n16748,35.07600784301758\n16749,23.352447509765625\n16750,34.914127349853516\n16751,50.34960174560547\n16752,25.191997528076172\n16753,80.00148010253906\n16754,23.689762115478516\n16755,35.12495040893555\n16756,28.24803352355957\n16757,17.971887588500977\n16758,26.239898681640625\n16759,37.902984619140625\n16760,56.65196228027344\n16761,64.79399108886719\n16762,74.41795349121094\n16763,35.31772994995117\n16764,75.28546905517578\n16765,45.46982955932617\n16766,74.29449462890625\n16767,45.78361511230469\n16768,78.32360076904297\n16769,73.12088775634766\n16770,37.133819580078125\n16771,25.777000427246094\n16772,39.66282653808594\n16773,62.32261276245117\n16774,39.4886474609375\n16775,84.54131317138672\n16776,38.063114166259766\n16777,35.89903259277344\n16778,40.9247932434082\n16779,15.332688331604004\n16780,41.037109375\n16781,56.01828384399414\n16782,28.879735946655273\n16783,91.91654968261719\n16784,26.95946502685547\n16785,36.269737243652344\n16786,31.005300521850586\n16787,7.557908535003662\n16788,30.7085018157959\n16789,44.52857208251953\n16790,67.77210235595703\n16791,72.29191589355469\n16792,90.76629638671875\n16793,31.671794891357422\n16794,92.2694320678711\n16795,49.35359191894531\n16796,90.65480041503906\n16797,49.95549392700195\n16798,95.99693298339844\n16799,68.24691772460938\n16800,36.75141906738281\n16801,31.72378158569336\n16802,38.42323303222656\n16803,60.53016662597656\n16804,38.3006706237793\n16805,77.17842102050781\n16806,37.549964904785156\n16807,38.78375244140625\n16808,39.28450393676758\n16809,23.782676696777344\n16810,39.29585647583008\n16811,54.84697723388672\n16812,29.223804473876953\n16813,83.42842102050781\n16814,28.77159309387207\n16815,39.33625793457031\n16816,31.020212173461914\n16817,17.576026916503906\n16818,30.526813507080078\n16819,44.667884826660156\n16820,60.72407150268555\n16821,65.72687530517578\n16822,83.91175842285156\n16823,37.04192352294922\n16824,84.53018188476562\n16825,48.80052185058594\n16826,81.48045349121094\n16827,49.273555755615234\n16828,86.60104370117188\n16829,65.94877624511719\n16830,32.67668533325195\n16831,28.301851272583008\n16832,37.006683349609375\n16833,58.238895416259766\n16834,34.958335876464844\n16835,74.10379791259766\n16836,32.639591217041016\n16837,36.60562515258789\n16838,37.563026428222656\n16839,19.88963508605957\n16840,38.963340759277344\n16841,55.24177169799805\n16842,27.185739517211914\n16843,78.95640563964844\n16844,23.842777252197266\n16845,38.78009033203125\n16846,29.02734375\n16847,12.622269630432129\n16848,31.92725944519043\n16849,51.70343780517578\n16850,58.65798568725586\n16851,68.10348510742188\n16852,73.36125946044922\n16853,35.24892044067383\n16854,77.36537170410156\n16855,52.268028259277344\n16856,75.16478729248047\n16857,53.111263275146484\n16858,78.84491729736328\n16859,68.520751953125\n16860,40.370750427246094\n16861,30.880285263061523\n16862,36.03640365600586\n16863,59.86979293823242\n16864,40.733097076416016\n16865,77.92623138427734\n16866,42.614341735839844\n16867,38.28566360473633\n16868,38.09318161010742\n16869,22.685178756713867\n16870,35.717830657958984\n16871,55.04035949707031\n16872,30.517372131347656\n16873,85.73283386230469\n16874,34.496665954589844\n16875,38.82994079589844\n16876,30.05830192565918\n16877,17.99785804748535\n16878,25.471370697021484\n16879,38.104007720947266\n16880,59.28731918334961\n16881,60.43506622314453\n16882,83.90748596191406\n16883,28.48731803894043\n16884,79.28528594970703\n16885,41.227298736572266\n16886,79.0029067993164\n16887,40.414390563964844\n16888,84.76065826416016\n16889,64.92664337158203\n16890,37.2484245300293\n16891,28.6945743560791\n16892,36.14645767211914\n16893,57.653053283691406\n16894,38.633174896240234\n16895,72.47572326660156\n16896,38.17800521850586\n16897,36.70357894897461\n16898,38.01381301879883\n16899,19.73411750793457\n16900,37.17106628417969\n16901,57.226253509521484\n16902,31.08121109008789\n16903,78.2989273071289\n16904,30.550128936767578\n16905,42.3772087097168\n16906,29.656818389892578\n16907,13.366244316101074\n16908,29.444807052612305\n16909,53.07059860229492\n16910,62.11545944213867\n16911,60.44877624511719\n16912,82.20256805419922\n16913,30.774446487426758\n16914,82.1849136352539\n16915,48.3784294128418\n16916,81.73878479003906\n16917,48.13442611694336\n16918,83.8523941040039\n16919,66.1036605834961\n16920,35.95631790161133\n16921,29.72748374938965\n16922,37.64717102050781\n16923,58.41611862182617\n16924,37.731903076171875\n16925,73.75759887695312\n16926,36.092376708984375\n16927,37.66814041137695\n16928,38.7311897277832\n16929,21.389789581298828\n16930,38.75803756713867\n16931,56.24018478393555\n16932,30.755373001098633\n16933,78.95269775390625\n16934,28.389503479003906\n16935,40.28363800048828\n16936,31.284496307373047\n16937,14.683001518249512\n16938,32.2347412109375\n16939,51.26972961425781\n16940,61.991310119628906\n16941,66.43377685546875\n16942,73.02000427246094\n16943,32.69878005981445\n16944,74.84527587890625\n16945,50.55461120605469\n16946,75.37369537353516\n16947,50.907249450683594\n16948,79.788330078125\n16949,67.41781616210938\n16950,37.919395446777344\n16951,32.89118576049805\n16952,35.658992767333984\n16953,60.29463577270508\n16954,38.586181640625\n16955,74.47989654541016\n16956,38.8934326171875\n16957,40.32480239868164\n16958,37.30788040161133\n16959,24.98575210571289\n16960,36.33981704711914\n16961,59.61922836303711\n16962,30.85194969177246\n16963,80.1769027709961\n16964,31.915512084960938\n16965,44.163631439208984\n16966,29.507450103759766\n16967,19.480619430541992\n16968,29.29783821105957\n16969,52.442527770996094\n16970,57.674339294433594\n16971,63.76980972290039\n16972,72.61860656738281\n16973,31.844341278076172\n16974,71.47027587890625\n16975,49.39482116699219\n16976,71.76850891113281\n16977,48.880252838134766\n16978,76.8749771118164\n16979,67.8231430053711\n16980,36.44759750366211\n16981,30.05446434020996\n16982,37.85345458984375\n16983,60.59935760498047\n16984,37.73027801513672\n16985,74.93087768554688\n16986,36.576725006103516\n16987,37.91646957397461\n16988,38.490455627441406\n16989,21.85013771057129\n16990,39.15043640136719\n16991,59.108070373535156\n16992,29.58924102783203\n16993,80.55870056152344\n16994,28.633237838745117\n16995,41.88567352294922\n16996,29.42133903503418\n16997,14.46609878540039\n16998,32.53681564331055\n16999,55.146484375\n17000,58.72627258300781\n17001,67.63361358642578\n17002,72.87371063232422\n17003,33.15727233886719\n17004,74.65231323242188\n17005,52.43912887573242\n17006,72.24199676513672\n17007,52.928627014160156\n17008,82.17684936523438\n17009,71.40972900390625\n17010,32.47407913208008\n17011,26.3627872467041\n17012,30.67946434020996\n17013,62.289424896240234\n17014,34.2623405456543\n17015,80.39237213134766\n17016,33.71721267700195\n17017,36.530941009521484\n17018,33.14836502075195\n17019,15.974564552307129\n17020,31.937368392944336\n17021,62.030609130859375\n17022,25.555702209472656\n17023,87.17889404296875\n17024,23.80552864074707\n17025,43.26801300048828\n17026,23.578744888305664\n17027,8.506403923034668\n17028,21.9639949798584\n17029,56.57057189941406\n17030,64.14142608642578\n17031,64.98744201660156\n17032,87.86840057373047\n17033,50.98130798339844\n17034,87.84939575195312\n17035,50.03068923950195\n17036,89.96307373046875\n17037,66.24165344238281\n17038,37.33866882324219\n17039,30.26421356201172\n17040,37.317955017089844\n17041,58.66158676147461\n17042,38.541133880615234\n17043,73.46818542480469\n17044,37.84819793701172\n17045,38.32870101928711\n17046,38.652122497558594\n17047,21.750959396362305\n17048,38.5457649230957\n17049,58.186649322509766\n17050,30.855857849121094\n17051,78.70306396484375\n17052,30.126625061035156\n17053,42.316890716552734\n17054,30.25885772705078\n17055,15.526427268981934\n17056,31.440576553344727\n17057,53.767120361328125\n17058,59.15382385253906\n17059,64.66639709472656\n17060,73.93914031982422\n17061,31.74466323852539\n17062,74.93267822265625\n17063,50.40584945678711\n17064,74.57842254638672\n17065,50.57469177246094\n17066,78.06678009033203\n17067,65.76133728027344\n17068,38.98075485229492\n17069,32.986724853515625\n17070,33.93948745727539\n17071,59.27354431152344\n17072,39.17029571533203\n17073,72.21513366699219\n17074,40.233089447021484\n17075,39.76468276977539\n17076,36.23574447631836\n17077,25.097097396850586\n17078,33.8387336730957\n17079,59.846412658691406\n17080,32.16386032104492\n17081,78.23921203613281\n17082,33.89845657348633\n17083,45.52024841308594\n17084,29.15037727355957\n17085,20.01177215576172\n17086,26.35114097595215\n17087,52.41623306274414\n17088,60.02382278442383\n17089,57.868019104003906\n17090,77.34278869628906\n17091,30.168245315551758\n17092,74.06940460205078\n17093,46.70155715942383\n17094,75.63040161132812\n17095,45.616085052490234\n17096,79.35965728759766\n17097,55.627464294433594\n17098,29.38505744934082\n17099,81.13131713867188\n17100,27.72255516052246\n17101,37.49873733520508\n17102,29.510746002197266\n17103,10.738402366638184\n17104,29.654926300048828\n17105,48.20907211303711\n17106,63.22597885131836\n17107,63.8772087097168\n17108,80.47404479980469\n17109,31.43735122680664\n17110,81.33905029296875\n17111,47.97087478637695\n17112,79.67996978759766\n17113,48.22218322753906\n17114,86.7698745727539\n17115,66.88736724853516\n17116,35.86663055419922\n17117,30.413185119628906\n17118,37.7152214050293\n17119,58.46905517578125\n17120,37.724517822265625\n17121,76.57349395751953\n17122,36.401123046875\n17123,38.33507537841797\n17124,38.81649398803711\n17125,53.23796844482422\n17126,29.243486404418945\n17127,82.41796112060547\n17128,27.48552703857422\n17129,37.9520263671875\n17130,31.3137149810791\n17131,15.890213966369629\n17132,29.82578468322754\n17133,43.2531623840332\n17134,61.501155853271484\n17135,66.38661193847656\n17136,79.4393539428711\n17137,34.15433883666992\n17138,80.31745147705078\n17139,47.754207611083984\n17140,80.3849105834961\n17141,48.16633605957031\n17142,82.15036010742188\n17143,67.26792907714844\n17144,31.994096755981445\n17145,28.16594696044922\n17146,37.52273941040039\n17147,58.749263763427734\n17148,34.82207107543945\n17149,76.15235137939453\n17150,31.432775497436523\n17151,36.677452087402344\n17152,37.93325424194336\n17153,19.510326385498047\n17154,39.144901275634766\n17155,53.98013687133789\n17156,27.53965187072754\n17157,81.19872283935547\n17158,22.44709014892578\n17159,36.86400604248047\n17160,30.303983688354492\n17161,11.593598365783691\n17162,32.64345169067383\n17163,48.85858154296875\n17164,62.636837005615234\n17165,71.93075561523438\n17166,71.08527374267578\n17167,34.47914123535156\n17168,75.56940460205078\n17169,52.30470275878906\n17170,75.37004852294922\n17171,53.26029586791992\n17172,82.46470642089844\n17173,67.13013458251953\n17174,38.8739128112793\n17175,31.24703025817871\n17176,37.7740592956543\n17177,59.45061492919922\n17178,40.0887451171875\n17179,75.0271224975586\n17180,39.67371368408203\n17181,38.41149139404297\n17182,39.368896484375\n17183,23.26995277404785\n17184,38.232391357421875\n17185,55.85519790649414\n17186,32.470497131347656\n17187,81.43873596191406\n17188,32.64711380004883\n17189,40.405677795410156\n17190,32.21636962890625\n17191,16.979249954223633\n17192,31.337671279907227\n17193,46.166996002197266\n17194,63.33930969238281\n17195,64.7345962524414\n17196,76.1805419921875\n17197,30.993581771850586\n17198,75.21885681152344\n17199,47.1959114074707\n17200,75.92060852050781\n17201,46.82246780395508\n17202,84.54122161865234\n17203,66.76049041748047\n17204,37.53580856323242\n17205,29.28462028503418\n17206,37.97446823120117\n17207,59.05232620239258\n17208,38.43960952758789\n17209,74.68534088134766\n17210,38.07870864868164\n17211,36.93661880493164\n17212,38.71443557739258\n17213,21.249637603759766\n17214,39.02723693847656\n17215,56.170265197753906\n17216,29.387176513671875\n17217,80.89886474609375\n17218,30.153928756713867\n17219,38.91449737548828\n17220,29.71393394470215\n17221,14.632238388061523\n17222,31.698270797729492\n17223,47.886775970458984\n17224,56.342140197753906\n17225,66.05879974365234\n17226,71.88874053955078\n17227,30.532175064086914\n17228,72.4703140258789\n17229,48.15993881225586\n17230,69.86046600341797\n17231,48.37057876586914\n17232,80.23487091064453\n17233,70.68040466308594\n17234,40.15435791015625\n17235,31.818090438842773\n17236,32.99821472167969\n17237,61.92092514038086\n17238,40.40654754638672\n17239,79.9263916015625\n17240,42.457820892333984\n17241,39.667572021484375\n17242,36.11810302734375\n17243,22.81456756591797\n17244,32.343441009521484\n17245,58.88343048095703\n17246,31.3708438873291\n17247,88.11814880371094\n17248,35.126930236816406\n17249,42.24905776977539\n17250,28.899606704711914\n17251,17.703388214111328\n17252,22.776657104492188\n17253,42.20974349975586\n17254,63.11026382446289\n17255,61.099056243896484\n17256,82.64517211914062\n17257,25.84668731689453\n17258,76.39742279052734\n17259,42.16713333129883\n17260,79.6610336303711\n17261,40.55634307861328\n17262,86.22166442871094\n17263,65.5968246459961\n17264,32.411415100097656\n17265,28.846088409423828\n17266,36.644596099853516\n17267,58.46375274658203\n17268,34.933685302734375\n17269,73.18988800048828\n17270,32.195892333984375\n17271,36.93767547607422\n17272,37.421871185302734\n17273,20.58176040649414\n17274,38.62032699584961\n17275,56.168670654296875\n17276,28.18842315673828\n17277,77.8127212524414\n17278,23.63767433166504\n17279,40.258140563964844\n17280,29.450542449951172\n17281,13.059975624084473\n17282,32.069278717041016\n17283,54.62378692626953\n17284,61.074562072753906\n17285,67.33124542236328\n17286,74.89366149902344\n17287,36.6004753112793\n17288,79.09149932861328\n17289,53.67136001586914\n17290,77.47241973876953\n17291,54.44804382324219\n17292,81.0436019897461\n17293,64.61216735839844\n17294,37.11417770385742\n17295,29.371782302856445\n17296,34.13363265991211\n17297,56.65047073364258\n17298,37.44140625\n17299,72.53775787353516\n17300,38.58133316040039\n17301,36.72400665283203\n17302,35.699337005615234\n17303,21.78093719482422\n17304,34.041404724121094\n17305,54.09806823730469\n17306,28.911718368530273\n17307,78.98757934570312\n17308,31.32467269897461\n17309,37.86409378051758\n17310,28.428918838500977\n17311,17.165700912475586\n17312,25.77121353149414\n17313,41.499759674072266\n17314,54.70777130126953\n17315,60.00252151489258\n17316,70.03192138671875\n17317,26.91209602355957\n17318,67.17301177978516\n17319,42.16826629638672\n17320,68.25231170654297\n17321,41.54911422729492\n17322,73.00830841064453\n17323,66.90746307373047\n17324,36.12772750854492\n17325,28.420076370239258\n17326,36.59115219116211\n17327,58.31033706665039\n17328,37.988468170166016\n17329,75.7742691040039\n17330,36.53550720214844\n17331,37.0638427734375\n17332,38.302276611328125\n17333,19.36922264099121\n17334,37.28803634643555\n17335,55.55125427246094\n17336,30.888416290283203\n17337,81.71443176269531\n17338,28.54155731201172\n17339,38.86322021484375\n17340,31.224435806274414\n17341,12.653929710388184\n17342,30.109554290771484\n17343,47.64347457885742\n17344,64.01564025878906\n17345,66.644775390625\n17346,74.16268157958984\n17347,29.411277770996094\n17348,74.6297378540039\n17349,48.044654846191406\n17350,77.33309936523438\n17351,48.19375228881836\n17352,81.5296630859375\n17353,67.31099700927734\n17354,37.627037048339844\n17355,29.83650779724121\n17356,35.31708908081055\n17357,58.83463668823242\n17358,38.82597732543945\n17359,76.23641204833984\n17360,38.65670394897461\n17361,37.98345947265625\n17362,37.495513916015625\n17363,20.995038986206055\n17364,35.362098693847656\n17365,55.94886779785156\n17366,31.368391036987305\n17367,82.85147857666016\n17368,31.160781860351562\n17369,39.7271614074707\n17370,30.80029296875\n17371,15.118103981018066\n17372,27.526826858520508\n17373,44.79656219482422\n17374,63.42502975463867\n17375,63.9493293762207\n17376,75.88190460205078\n17377,28.024507522583008\n17378,73.81168365478516\n17379,45.310211181640625\n17380,77.23013305664062\n17381,44.85182571411133\n17382,81.65770721435547\n17383,66.75981140136719\n17384,36.68482208251953\n17385,26.935848236083984\n17386,36.544273376464844\n17387,58.05771255493164\n17388,38.26913833618164\n17389,75.74893951416016\n17390,37.58865737915039\n17391,35.92454147338867\n17392,38.192832946777344\n17393,17.41023826599121\n17394,37.576534271240234\n17395,55.97868728637695\n17396,29.894084930419922\n17397,82.13018798828125\n17398,29.20461654663086\n17399,39.08930587768555\n17400,29.660301208496094\n17401,10.705355644226074\n17402,29.51618003845215\n17403,48.551544189453125\n17404,61.79838562011719\n17405,64.62638854980469\n17406,78.25540161132812\n17407,28.400924682617188\n17408,78.40625762939453\n17409,47.30109405517578\n17410,78.82544708251953\n17411,47.483436584472656\n17412,82.48185729980469\n17413,66.45233917236328\n17414,38.16481018066406\n17415,30.757829666137695\n17416,35.45381164550781\n17417,58.50005340576172\n17418,39.16307067871094\n17419,74.60093688964844\n17420,39.20399475097656\n17421,38.5087776184082\n17422,37.594173431396484\n17423,22.379192352294922\n17424,35.51857376098633\n17425,56.55033493041992\n17426,31.977184295654297\n17427,80.85570526123047\n17428,32.08811950683594\n17429,40.93962478637695\n17430,31.02035903930664\n17431,16.93684959411621\n17432,27.957189559936523\n17433,46.40766143798828\n17434,62.42045974731445\n17435,62.36897277832031\n17436,74.90681457519531\n17437,28.898643493652344\n17438,72.79014587402344\n17439,45.64986038208008\n17440,75.9675521850586\n17441,45.20907974243164\n17442,79.17001342773438\n17443,65.2821044921875\n17444,38.07129669189453\n17445,29.956077575683594\n17446,36.493743896484375\n17447,57.60894012451172\n17448,39.30710220336914\n17449,72.85295104980469\n17450,38.80244064331055\n17451,37.3945198059082\n17452,38.391170501708984\n17453,21.7757625579834\n17454,36.717628479003906\n17455,55.60758972167969\n17456,32.58444595336914\n17457,78.75440216064453\n17458,31.633195877075195\n17459,40.448402404785156\n17460,31.901567459106445\n17461,16.03879737854004\n17462,29.363576889038086\n17463,47.388092041015625\n17464,64.58248901367188\n17465,61.09882736206055\n17466,78.15559387207031\n17467,30.595951080322266\n17468,77.059814453125\n17469,46.33555221557617\n17470,79.29759216308594\n17471,46.231590270996094\n17472,81.75270080566406\n17473,64.92407989501953\n17474,36.96247482299805\n17475,30.00554847717285\n17476,38.27385711669922\n17477,57.32981491088867\n17478,38.375911712646484\n17479,72.2060317993164\n17480,36.91225051879883\n17481,37.529422760009766\n17482,39.198509216308594\n17483,22.012203216552734\n17484,39.15719223022461\n17485,55.30421447753906\n17486,31.408334732055664\n17487,77.28504943847656\n17488,29.63227081298828\n17489,39.6563606262207\n17490,31.84540557861328\n17491,15.649203300476074\n17492,33.0576057434082\n17493,49.88371276855469\n17494,60.228397369384766\n17495,65.72002410888672\n17496,69.27108001708984\n17497,31.457408905029297\n17498,70.84699249267578\n17499,49.32880783081055\n17500,71.46705627441406\n17501,49.758522033691406\n17502,77.34917449951172\n17503,65.43282318115234\n17504,38.940731048583984\n17505,31.228328704833984\n17506,38.47639083862305\n17507,58.27606964111328\n17508,40.11110305786133\n17509,73.34260559082031\n17510,39.75087356567383\n17511,38.48468780517578\n17512,39.78553771972656\n17513,23.12117576599121\n17514,39.07195281982422\n17515,55.961097717285156\n17516,32.31779861450195\n17517,79.20918273925781\n17518,32.544166564941406\n17519,41.153297424316406\n17520,32.196495056152344\n17521,17.268178939819336\n17522,31.81303596496582\n17523,48.30414581298828\n17524,60.52008056640625\n17525,62.926883697509766\n17526,76.43094635009766\n17527,32.17850112915039\n17528,76.13802337646484\n17529,47.79233932495117\n17530,75.88449096679688\n17531,47.85758972167969\n17532,80.02903747558594\n17533,68.20659637451172\n17534,37.610206604003906\n17535,30.10321617126465\n17536,35.276859283447266\n17537,59.5936393737793\n17538,38.7908821105957\n17539,76.96554565429688\n17540,38.62179946899414\n17541,38.297950744628906\n17542,37.42780685424805\n17543,21.280132293701172\n17544,35.31389236450195\n17545,56.752803802490234\n17546,31.31096839904785\n17547,83.60710906982422\n17548,31.023359298706055\n17549,40.14055252075195\n17550,30.683900833129883\n17551,15.328596115112305\n17552,27.413856506347656\n17553,45.60201644897461\n17554,63.93597412109375\n17555,64.59693908691406\n17556,76.12298583984375\n17557,28.45513916015625\n17558,74.05255126953125\n17559,45.936790466308594\n17560,77.48487854003906\n17561,45.48828887939453\n17562,82.1917953491211\n17563,73.8097152709961\n17564,37.9157829284668\n17565,29.4711856842041\n17566,39.50673294067383\n17567,64.9104995727539\n17568,39.621402740478516\n17569,83.93121337890625\n17570,39.10814666748047\n17571,38.70676803588867\n17572,40.6612663269043\n17573,19.828353881835938\n17574,41.43546676635742\n17575,60.609649658203125\n17576,28.57145118713379\n17577,91.27587890625\n17578,28.889015197753906\n17579,41.13431167602539\n17580,29.61457061767578\n17581,11.904352188110352\n17582,31.785261154174805\n17583,51.19990158081055\n17584,60.46894836425781\n17585,72.15599060058594\n17586,86.71844482421875\n17587,34.663978576660156\n17588,88.15787506103516\n17589,52.63960647583008\n17590,82.97666931152344\n17591,53.07724380493164\n17592,92.11113739013672\n17593,65.76927185058594\n17594,35.144737243652344\n17595,30.283756256103516\n17596,36.31815719604492\n17597,48.66960906982422\n17598,61.199302673339844\n17599,49.17573547363281\n17600,74.07930755615234\n17601,66.11099243164062\n17602,35.747982025146484\n17603,30.39059066772461\n17604,36.38727569580078\n17605,48.9498176574707\n17606,66.03950500488281\n17607,49.14651107788086\n17608,78.04863739013672\n17609,70.06687927246094\n17610,42.18016815185547\n17611,33.67021560668945\n17612,35.67604064941406\n17613,50.524017333984375\n17614,70.00726318359375\n17615,47.48402786254883\n17616,78.3188247680664\n17617,67.34334564208984\n17618,35.61125183105469\n17619,30.283140182495117\n17620,36.01499557495117\n17621,47.723758697509766\n17622,65.30403137207031\n17623,48.40214920043945\n17624,76.71600341796875\n17625,66.47476196289062\n17626,37.7403450012207\n17627,33.532718658447266\n17628,38.701019287109375\n17629,48.93825149536133\n17630,63.70372009277344\n17631,49.89161682128906\n17632,73.56602478027344\n17633,63.88753128051758\n17634,35.59525680541992\n17635,31.516357421875\n17636,40.3927001953125\n17637,48.75423049926758\n17638,65.76399230957031\n17639,51.23065185546875\n17640,75.15753173828125\n17641,67.15499877929688\n17642,40.18035125732422\n17643,28.135705947875977\n17644,34.92315673828125\n17645,46.22134017944336\n17646,69.40930938720703\n17647,43.679725646972656\n17648,83.1473617553711\n17649,69.93197631835938\n17650,36.98164749145508\n17651,32.558773040771484\n17652,39.64311599731445\n17653,51.23832321166992\n17654,68.0499267578125\n17655,52.80034255981445\n17656,78.86811065673828\n17657,67.02259826660156\n17658,37.81725311279297\n17659,29.936120986938477\n17660,37.305355072021484\n17661,49.882415771484375\n17662,67.33626556396484\n17663,49.23955154418945\n17664,76.9254379272461\n17665,62.83017349243164\n17666,37.48055648803711\n17667,26.244382858276367\n17668,35.455352783203125\n17669,44.91891860961914\n17670,65.79795837402344\n17671,43.73848342895508\n17672,78.35785675048828\n17673,65.51648712158203\n17674,37.09547805786133\n17675,28.666156768798828\n17676,34.87776565551758\n17677,43.440006256103516\n17678,63.601009368896484\n17679,43.401878356933594\n17680,73.35226440429688\n17681,69.92132568359375\n17682,40.583961486816406\n17683,33.592952728271484\n17684,39.89911651611328\n17685,45.147300720214844\n17686,72.66411590576172\n17687,47.06066131591797\n17688,86.82646179199219\n17689,66.46116638183594\n17690,37.62725067138672\n17691,30.98708724975586\n17692,36.77095413208008\n17693,48.6351318359375\n17694,61.66815948486328\n17695,48.09923553466797\n17696,75.73399353027344\n17697,66.18913269042969\n17698,38.98659896850586\n17699,32.05574417114258\n17700,38.67229461669922\n17701,44.70922088623047\n17702,65.77486419677734\n17703,46.08099365234375\n17704,76.83094024658203\n17705,66.17509460449219\n17706,37.92557907104492\n17707,31.56687355041504\n17708,37.1646842956543\n17709,47.7196044921875\n17710,64.37935638427734\n17711,47.777828216552734\n17712,75.06635284423828\n17713,63.756256103515625\n17714,34.47661209106445\n17715,31.08588409423828\n17716,42.303401947021484\n17717,55.2644157409668\n17718,65.26513671875\n17719,57.330421447753906\n17720,75.66678619384766\n17721,67.99486541748047\n17722,33.72821807861328\n17723,29.25701904296875\n17724,40.415061950683594\n17725,55.06055450439453\n17726,66.16114044189453\n17727,56.803199768066406\n17728,77.79627227783203\n17729,64.88340759277344\n17730,37.751583099365234\n17731,31.80071258544922\n17732,38.341102600097656\n17733,48.97770309448242\n17734,62.07372283935547\n17735,49.24037551879883\n17736,73.38765716552734\n17737,66.93502044677734\n17738,36.18326950073242\n17739,28.315723419189453\n17740,38.06379699707031\n17741,46.085845947265625\n17742,62.47647476196289\n17743,47.50190353393555\n17744,76.59162902832031\n17745,69.26744842529297\n17746,37.767669677734375\n17747,28.122987747192383\n17748,40.1114387512207\n17749,48.675071716308594\n17750,68.07528686523438\n17751,49.95452117919922\n17752,80.76553344726562\n17753,67.78089141845703\n17754,40.279632568359375\n17755,29.190471649169922\n17756,36.67128372192383\n17757,50.307132720947266\n17758,72.30155944824219\n17759,47.766685485839844\n17760,84.21851348876953\n17761,68.57003021240234\n17762,33.48858642578125\n17763,29.901079177856445\n17764,36.40804672241211\n17765,49.055084228515625\n17766,63.60307312011719\n17767,50.76482391357422\n17768,76.35343933105469\n17769,66.57511901855469\n17770,39.188018798828125\n17771,30.260944366455078\n17772,36.32695388793945\n17773,44.092098236083984\n17774,61.1154899597168\n17775,43.68783187866211\n17776,74.31340789794922\n17777,68.12116241455078\n17778,36.90215301513672\n17779,28.743148803710938\n17780,38.35962677001953\n17781,48.541038513183594\n17782,65.55431365966797\n17783,49.281246185302734\n17784,78.1001205444336\n17785,67.31938171386719\n17786,37.811431884765625\n17787,29.618337631225586\n17788,37.54051208496094\n17789,47.39067840576172\n17790,65.16740417480469\n17791,47.518402099609375\n17792,77.83645629882812\n17793,63.50459671020508\n17794,35.772560119628906\n17795,28.907888412475586\n17796,36.39773941040039\n17797,44.07052230834961\n17798,59.58407211303711\n17799,45.0220947265625\n17800,74.33049774169922\n17801,66.2931900024414\n17802,34.757423400878906\n17803,27.12000846862793\n17804,40.29265213012695\n17805,48.10364532470703\n17806,69.06192779541016\n17807,50.83558654785156\n17808,79.97412109375\n17809,65.68045806884766\n17810,35.461097717285156\n17811,29.15886688232422\n17812,39.041690826416016\n17813,50.06378936767578\n17814,63.24204635620117\n17815,51.30492401123047\n17816,76.03862762451172\n17817,66.91266632080078\n17818,38.727325439453125\n17819,30.25290870666504\n17820,35.4297981262207\n17821,42.21451187133789\n17822,67.59073638916016\n17823,42.48041915893555\n17824,81.50604248046875\n17825,67.68700408935547\n17826,36.674869537353516\n17827,28.427669525146484\n17828,38.91044998168945\n17829,46.8379020690918\n17830,65.39749145507812\n17831,48.45191192626953\n17832,79.66158294677734\n17833,69.44808197021484\n17834,40.07605743408203\n17835,27.550771713256836\n17836,36.035491943359375\n17837,45.85076141357422\n17838,61.62965393066406\n17839,44.20212936401367\n17840,77.48796081542969\n17841,67.77320861816406\n17842,34.878963470458984\n17843,29.426143646240234\n17844,35.152244567871094\n17845,47.574134826660156\n17846,60.49493408203125\n17847,47.98882293701172\n17848,74.6261978149414\n17849,67.26392364501953\n17850,40.253570556640625\n17851,29.162668228149414\n17852,40.360530853271484\n17853,44.8502311706543\n17854,67.36019134521484\n17855,45.98270797729492\n17856,80.55419921875\n17857,67.10428619384766\n17858,36.46500015258789\n17859,34.42013168334961\n17860,32.29194259643555\n17861,47.832401275634766\n17862,56.17230224609375\n17863,46.286006927490234\n17864,68.9779052734375\n17865,66.71976470947266\n17866,33.41447448730469\n17867,32.9533805847168\n17868,41.529144287109375\n17869,58.04801559448242\n17870,63.602230072021484\n17871,60.04421615600586\n17872,73.5439224243164\n17873,67.32182312011719\n17874,34.69566345214844\n17875,30.922231674194336\n17876,38.620811462402344\n17877,53.89506912231445\n17878,63.53666305541992\n17879,54.621212005615234\n17880,75.70570373535156\n17881,64.48284149169922\n17882,38.1025276184082\n17883,27.923681259155273\n17884,37.50484085083008\n17885,47.18701934814453\n17886,67.77630615234375\n17887,46.717872619628906\n17888,80.51530456542969\n17889,67.46721649169922\n17890,41.26447296142578\n17891,32.05290603637695\n17892,38.81655502319336\n17893,49.66464614868164\n17894,61.54874801635742\n17895,48.20835876464844\n17896,75.48007202148438\n17897,67.47162628173828\n17898,36.42475128173828\n17899,27.86288833618164\n17900,37.10982131958008\n17901,47.45100402832031\n17902,70.09838104248047\n17903,48.120574951171875\n17904,81.77979278564453\n17905,60.83260726928711\n17906,36.130191802978516\n17907,27.51963233947754\n17908,43.21407699584961\n17909,46.45293045043945\n17910,64.89177703857422\n17911,49.83184051513672\n17912,77.89729309082031\n17913,66.8782958984375\n17914,38.504783630371094\n17915,28.68721580505371\n17916,37.409629821777344\n17917,43.87802505493164\n17918,70.64909362792969\n17919,44.77326202392578\n17920,84.0186996459961\n17921,64.94086456298828\n17922,37.038490295410156\n17923,30.152124404907227\n17924,41.53700256347656\n17925,48.69252014160156\n17926,66.17716979980469\n17927,50.887855529785156\n17928,76.04499053955078\n17929,64.29464721679688\n17930,37.18182373046875\n17931,31.44536018371582\n17932,35.1811637878418\n17933,46.4115104675293\n17934,61.5607795715332\n17935,45.82947540283203\n17936,70.74320220947266\n17937,68.71195983886719\n17938,33.9039306640625\n17939,29.053272247314453\n17940,38.05845642089844\n17941,59.31273651123047\n17942,69.42793273925781\n17943,58.29062271118164\n17944,86.70846557617188\n17945,64.60591125488281\n17946,36.479244232177734\n17947,22.240617752075195\n17948,37.82404708862305\n17949,40.1883659362793\n17950,68.71350860595703\n17951,42.21153259277344\n17952,84.22344207763672\n17953,64.43120574951172\n17954,37.65973663330078\n17955,29.870229721069336\n17956,38.65742492675781\n17957,47.94096755981445\n17958,67.8117446899414\n17959,48.46596908569336\n17960,76.50535583496094\n17961,66.22673797607422\n17962,39.19942092895508\n17963,33.763221740722656\n17964,39.630332946777344\n17965,50.31340408325195\n17966,62.175716400146484\n17967,50.54393768310547\n17968,73.06072998046875\n17969,65.39839935302734\n17970,40.39154052734375\n17971,32.19076919555664\n17972,38.98593521118164\n17973,44.558998107910156\n17974,61.925697326660156\n17975,45.11457443237305\n17976,75.44854736328125\n17977,66.65393829345703\n17978,38.81794357299805\n17979,30.20844841003418\n17980,37.52579116821289\n17981,47.24016571044922\n17982,63.600704193115234\n17983,46.808074951171875\n17984,77.01811981201172\n17985,66.07270812988281\n17986,34.7095832824707\n17987,30.502281188964844\n17988,38.70186233520508\n17989,51.83577346801758\n17990,65.4190444946289\n17991,53.01707077026367\n17992,74.7724838256836\n17993,68.96517944335938\n17994,40.20942687988281\n17995,34.21864700317383\n17996,39.50579071044922\n17997,55.44081497192383\n17998,67.28474426269531\n17999,53.878963470458984\n18000,79.6521224975586\n18001,69.92002868652344\n18002,36.302703857421875\n18003,28.077302932739258\n18004,36.7244758605957\n18005,48.86516571044922\n18006,73.80841827392578\n18007,49.36365509033203\n18008,83.51870727539062\n18009,69.22588348388672\n18010,36.24972152709961\n18011,28.611194610595703\n18012,34.146461486816406\n18013,50.67580032348633\n18014,61.28932189941406\n18015,48.725799560546875\n18016,76.78726196289062\n18017,64.93102264404297\n18018,35.613826751708984\n18019,29.52945899963379\n18020,36.76764678955078\n18021,48.135948181152344\n18022,62.68394470214844\n18023,48.5308952331543\n18024,73.88972473144531\n18025,61.58921813964844\n18026,38.42707824707031\n18027,32.05135726928711\n18028,42.994903564453125\n18029,43.46459197998047\n18030,66.1215591430664\n18031,47.29501724243164\n18032,78.31925201416016\n18033,66.03926086425781\n18034,34.305355072021484\n18035,31.00716209411621\n18036,39.084896087646484\n18037,53.68375015258789\n18038,60.35177230834961\n18039,54.717491149902344\n18040,71.51616668701172\n18041,68.6626968383789\n18042,41.76807403564453\n18043,30.845008850097656\n18044,37.58464431762695\n18045,46.08851623535156\n18046,72.31554412841797\n18047,45.11552810668945\n18048,84.3670883178711\n18049,67.00090026855469\n18050,35.5615119934082\n18051,29.185152053833008\n18052,35.06998825073242\n18053,48.71327209472656\n18054,62.790771484375\n18055,48.19339370727539\n18056,76.71752166748047\n18057,70.36420440673828\n18058,36.49061584472656\n18059,30.01630401611328\n18060,36.4908561706543\n18061,46.454891204833984\n18062,70.77416229248047\n18063,47.81425094604492\n18064,81.30004119873047\n18065,69.76844787597656\n18066,36.93602752685547\n18067,28.578857421875\n18068,37.117347717285156\n18069,52.50191116333008\n18070,67.15516662597656\n18071,51.544132232666016\n18072,79.80316162109375\n18073,69.34234619140625\n18074,39.538238525390625\n18075,34.814918518066406\n18076,36.63572311401367\n18077,55.34470748901367\n18078,62.71604919433594\n18079,52.6975212097168\n18080,75.06012725830078\n18081,64.73278045654297\n18082,38.9727783203125\n18083,32.04043960571289\n18084,39.42300033569336\n18085,43.784854888916016\n18086,62.849273681640625\n18087,45.50547409057617\n18088,75.21479797363281\n18089,64.57139587402344\n18090,36.415401458740234\n18091,31.462926864624023\n18092,32.255252838134766\n18093,41.241790771484375\n18094,62.1472282409668\n18095,41.184730529785156\n18096,73.70390319824219\n18097,68.77603912353516\n18098,30.893047332763672\n18099,32.15235137939453\n18100,41.12921142578125\n18101,61.33985137939453\n18102,64.86571502685547\n18103,63.57902145385742\n18104,76.58002471923828\n18105,68.78148651123047\n18106,33.70752716064453\n18107,27.18125343322754\n18108,37.08108139038086\n18109,51.072628021240234\n18110,66.72986602783203\n18111,51.97098159790039\n18112,79.87362670898438\n18113,65.4563980102539\n18114,38.5942497253418\n18115,30.094593048095703\n18116,37.4734992980957\n18117,48.1400146484375\n18118,63.99394607543945\n18119,47.47296142578125\n18120,75.38157653808594\n18121,67.64625549316406\n18122,36.78776168823242\n18123,29.12478256225586\n18124,35.900150299072266\n18125,49.9319953918457\n18126,66.46014404296875\n18127,48.95038604736328\n18128,79.89936828613281\n18129,63.84259033203125\n18130,39.370784759521484\n18131,32.62232208251953\n18132,41.4844970703125\n18133,48.08906936645508\n18134,64.92212677001953\n18135,49.49106979370117\n18136,76.02408599853516\n18137,63.70745849609375\n18138,35.322147369384766\n18139,30.511730194091797\n18140,36.57427215576172\n18141,49.16200256347656\n18142,61.83530044555664\n18143,49.21206283569336\n18144,73.64605712890625\n18145,66.80113220214844\n18146,36.79018020629883\n18147,30.06978416442871\n18148,35.1838493347168\n18149,47.02870178222656\n18150,62.52613067626953\n18151,46.52088928222656\n18152,74.03133392333984\n18153,67.80384063720703\n18154,40.09408950805664\n18155,31.337839126586914\n18156,42.59801483154297\n18157,53.31483459472656\n18158,65.95317077636719\n18159,53.62220001220703\n18160,78.54815673828125\n18161,66.27783966064453\n18162,39.8913459777832\n18163,31.57241439819336\n18164,35.337894439697266\n18165,42.92637634277344\n18166,68.408935546875\n18167,42.562313079833984\n18168,80.427490234375\n18169,67.59725189208984\n18170,34.940250396728516\n18171,30.506311416625977\n18172,35.85128402709961\n18173,51.55091094970703\n18174,58.713966369628906\n18175,51.168888092041016\n18176,71.3986587524414\n18177,67.82808685302734\n18178,38.7984619140625\n18179,30.537683486938477\n18180,40.078678131103516\n18181,53.930992126464844\n18182,66.24849700927734\n18183,53.263458251953125\n18184,80.01567840576172\n18185,64.70075225830078\n18186,40.92395782470703\n18187,32.96473693847656\n18188,38.98750686645508\n18189,45.39329528808594\n18190,66.78773498535156\n18191,45.642555236816406\n18192,76.63963317871094\n18193,66.105224609375\n18194,37.3669548034668\n18195,31.714181900024414\n18196,39.00364303588867\n18197,57.80738067626953\n18198,68.30316925048828\n18199,55.88688278198242\n18200,81.27008056640625\n18201,63.79460906982422\n18202,38.69636154174805\n18203,32.55572509765625\n18204,38.442630767822266\n18205,51.02853775024414\n18206,62.628021240234375\n18207,50.15143966674805\n18208,72.8979721069336\n18209,68.23724365234375\n18210,35.48801803588867\n18211,28.28873634338379\n18212,38.775325775146484\n18213,51.39183044433594\n18214,67.4090347290039\n18215,52.312007904052734\n18216,81.77117919921875\n18217,63.472320556640625\n18218,31.125926971435547\n18219,28.722942352294922\n18220,43.18499755859375\n18221,53.07511520385742\n18222,66.19571685791016\n18223,57.648704528808594\n18224,76.83024597167969\n18225,70.50016021728516\n18226,41.45154571533203\n18227,33.27189254760742\n18228,38.831382751464844\n18229,51.547122955322266\n18230,66.40948486328125\n18231,50.241859436035156\n18232,80.4156494140625\n18233,65.23313903808594\n18234,42.53150177001953\n18235,30.09080696105957\n18236,35.36842727661133\n18237,47.06528091430664\n18238,68.32331848144531\n18239,43.28081130981445\n18240,80.48053741455078\n18241,62.325462341308594\n18242,39.80596923828125\n18243,35.58667755126953\n18244,41.712371826171875\n18245,50.73622512817383\n18246,58.78798294067383\n18247,51.24101257324219\n18248,68.07733917236328\n18249,68.84587860107422\n18250,37.703121185302734\n18251,27.9796142578125\n18252,35.25175094604492\n18253,46.70565414428711\n18254,59.26081085205078\n18255,45.651954650878906\n18256,74.90776824951172\n18257,67.87362670898438\n18258,40.008323669433594\n18259,29.93772315979004\n18260,38.41941833496094\n18261,45.917049407958984\n18262,67.64801788330078\n18263,46.09733963012695\n18264,79.37403869628906\n18265,73.30187225341797\n18266,37.29960250854492\n18267,37.363155364990234\n18268,37.2524528503418\n18269,60.536102294921875\n18270,63.98248291015625\n18271,58.810733795166016\n18272,76.26344299316406\n18273,68.384033203125\n18274,39.22587203979492\n18275,29.591712951660156\n18276,36.554954528808594\n18277,48.42265319824219\n18278,66.80921936035156\n18279,47.10152053833008\n18280,78.62368774414062\n18281,64.57540130615234\n18282,38.631675720214844\n18283,31.598447799682617\n18284,39.351409912109375\n18285,52.334232330322266\n18286,66.07007598876953\n18287,51.558692932128906\n18288,75.98169708251953\n18289,64.93382263183594\n18290,40.161903381347656\n18291,28.585031509399414\n18292,33.991214752197266\n18293,44.393497467041016\n18294,68.43858337402344\n18295,41.75040054321289\n18296,79.73684692382812\n18297,66.97380828857422\n18298,44.1524543762207\n18299,32.593624114990234\n18300,35.182090759277344\n18301,40.543331146240234\n18302,64.39835357666016\n18303,38.3426399230957\n18304,76.16619873046875\n18305,66.97526550292969\n18306,34.01506042480469\n18307,29.10434341430664\n18308,35.28974914550781\n18309,47.71320724487305\n18310,61.72202682495117\n18311,48.48838424682617\n18312,78.00924682617188\n18313,64.24690246582031\n18314,35.54575729370117\n18315,31.597930908203125\n18316,41.84392166137695\n18317,54.409385681152344\n18318,61.696598052978516\n18319,55.96952819824219\n18320,70.14311218261719\n18321,64.93480682373047\n18322,38.69051742553711\n18323,30.286771774291992\n18324,37.906558990478516\n18325,43.492408752441406\n18326,67.28791809082031\n18327,44.573486328125\n18328,78.09432983398438\n18329,64.82439422607422\n18330,37.1529426574707\n18331,29.167556762695312\n18332,36.06812286376953\n18333,46.442596435546875\n18334,60.52070617675781\n18335,45.95536422729492\n18336,72.36334228515625\n18337,64.87513732910156\n18338,37.90549850463867\n18339,29.565074920654297\n18340,37.786293029785156\n18341,46.78749465942383\n18342,65.41852569580078\n18343,47.00703048706055\n18344,75.7997055053711\n18345,65.5717544555664\n18346,40.053035736083984\n18347,33.04841613769531\n18348,36.63536834716797\n18349,50.57623291015625\n18350,66.0009536743164\n18351,48.255523681640625\n18352,78.11158752441406\n18353,66.36970520019531\n18354,38.97940444946289\n18355,29.22782325744629\n18356,41.24541091918945\n18357,50.060630798339844\n18358,66.60224914550781\n18359,50.691646575927734\n18360,78.97058868408203\n18361,67.67078399658203\n18362,40.972007751464844\n18363,34.52345657348633\n18364,39.4539909362793\n18365,51.616424560546875\n18366,67.71270751953125\n18367,50.96223831176758\n18368,76.97261810302734\n18369,43.93174743652344\n18370,42.58979034423828\n18371,22.836498260498047\n18372,42.538414001464844\n18373,28.341785430908203\n18374,57.99890899658203\n18375,29.44506072998047\n18376,67.98178100585938\n18377,63.41881561279297\n18378,36.58488845825195\n18379,32.62381362915039\n18380,35.24869918823242\n18381,49.349002838134766\n18382,57.98884582519531\n18383,48.299259185791016\n18384,67.56179809570312\n18385,66.13028717041016\n18386,37.742652893066406\n18387,32.63331985473633\n18388,35.652183532714844\n18389,46.40915298461914\n18390,64.61370086669922\n18391,46.307273864746094\n18392,74.66886901855469\n18393,66.97905731201172\n18394,40.304664611816406\n18395,33.817657470703125\n18396,39.01276779174805\n18397,50.27208709716797\n18398,63.58283233642578\n18399,49.71759796142578\n18400,73.68624114990234\n18401,57.61920928955078\n18402,37.728431701660156\n18403,30.869251251220703\n18404,39.41231918334961\n18405,38.98438262939453\n18406,63.4620246887207\n18407,41.752567291259766\n18408,74.88877868652344\n18409,65.98564147949219\n18410,35.35914993286133\n18411,27.891860961914062\n18412,36.16085433959961\n18413,46.185203552246094\n18414,61.83283996582031\n18415,46.94411087036133\n18416,73.49182891845703\n18417,63.11664962768555\n18418,2.399744749069214\n18419,35.49934768676758\n18420,8.740606307983398\n18421,54.31637191772461\n18422,25.871177673339844\n18423,56.10062026977539\n18424,35.99064254760742\n18425,70.81959533691406\n18426,38.53189468383789\n18427,29.392494201660156\n18428,31.735946655273438\n18429,41.78644943237305\n18430,67.9019546508789\n18431,40.79536819458008\n18432,78.18611907958984\n18433,63.853084564208984\n18434,38.38780212402344\n18435,33.821712493896484\n18436,35.22254180908203\n18437,46.68498229980469\n18438,56.142066955566406\n18439,45.605804443359375\n18440,66.56538391113281\n18441,67.61883544921875\n18442,35.618019104003906\n18443,31.783308029174805\n18444,39.1329460144043\n18445,49.9727783203125\n18446,67.22537994384766\n18447,51.9931755065918\n18448,77.33303833007812\n18449,69.89234161376953\n18450,31.13703155517578\n18451,29.844417572021484\n18452,40.728031158447266\n18453,52.7723503112793\n18454,66.06623077392578\n18455,56.9993896484375\n18456,77.89269256591797\n18457,66.65873718261719\n18458,44.634334564208984\n18459,37.809391021728516\n18460,33.556922912597656\n18461,49.55387878417969\n18462,64.57905578613281\n18463,44.128475189208984\n18464,74.25609588623047\n18465,65.16098022460938\n18466,42.045162200927734\n18467,34.166831970214844\n18468,38.52113342285156\n18469,47.9931640625\n18470,62.743953704833984\n18471,46.650665283203125\n18472,73.3333511352539\n18473,64.44364166259766\n18474,35.841033935546875\n18475,31.676361083984375\n18476,39.68970489501953\n18477,48.236907958984375\n18478,65.38961791992188\n18479,50.58317947387695\n18480,76.12454986572266\n18481,68.72345733642578\n18482,40.59878158569336\n18483,33.48299026489258\n18484,36.19466781616211\n18485,49.365604400634766\n18486,62.423919677734375\n18487,47.37458419799805\n18488,74.37789916992188\n18489,73.42594909667969\n18490,49.106101989746094\n18491,49.804176330566406\n18492,47.252079010009766\n18493,60.63114547729492\n18494,64.52433013916016\n18495,60.12144470214844\n18496,71.6523208618164\n18497,68.97769927978516\n18498,37.64350891113281\n18499,27.484901428222656\n18500,38.18914794921875\n18501,52.63357162475586\n18502,70.03951263427734\n18503,51.598819732666016\n18504,82.61389923095703\n18505,68.95478820800781\n18506,41.61769104003906\n18507,26.913288116455078\n18508,34.90733337402344\n18509,47.05447006225586\n18510,73.75476837158203\n18511,43.62217330932617\n18512,88.11583709716797\n18513,64.9077377319336\n18514,37.809871673583984\n18515,30.257640838623047\n18516,37.60300064086914\n18517,47.33367919921875\n18518,64.35784912109375\n18519,47.346221923828125\n18520,77.63072204589844\n18521,65.927001953125\n18522,39.113914489746094\n18523,36.52163314819336\n18524,34.292171478271484\n18525,52.53479766845703\n18526,60.30373764038086\n18527,49.36296844482422\n18528,71.69985961914062\n18529,67.93476104736328\n18530,39.87013244628906\n18531,37.59718704223633\n18532,38.318241119384766\n18533,53.32835006713867\n18534,66.48615264892578\n18535,52.575897216796875\n18536,73.87361145019531\n18537,68.30496215820312\n18538,41.54571533203125\n18539,30.938518524169922\n18540,35.10148620605469\n18541,45.91707229614258\n18542,66.15970611572266\n18543,43.56615447998047\n18544,78.1037368774414\n18545,65.69551086425781\n18546,36.640586853027344\n18547,29.213367462158203\n18548,35.798221588134766\n18549,47.57402420043945\n18550,62.613121032714844\n18551,47.10873794555664\n18552,74.99553680419922\n18553,66.69013977050781\n18554,38.05781555175781\n18555,32.989891052246094\n18556,36.507694244384766\n18557,49.97077560424805\n18558,59.76092529296875\n18559,49.05856704711914\n18560,70.6724624633789\n18561,65.92940521240234\n18562,35.66203689575195\n18563,29.839427947998047\n18564,37.61453628540039\n18565,48.83832550048828\n18566,64.6923599243164\n18567,49.7022590637207\n18568,75.66398620605469\n18569,66.14318084716797\n18570,38.09228515625\n18571,32.452110290527344\n18572,35.54539108276367\n18573,44.712039947509766\n18574,59.59503936767578\n18575,44.74882888793945\n18576,71.57707977294922\n18577,64.63933563232422\n18578,38.67258071899414\n18579,32.67068099975586\n18580,39.251380920410156\n18581,48.45970916748047\n18582,63.95764923095703\n18583,48.95857238769531\n18584,74.57515716552734\n18585,66.11454772949219\n18586,37.326866149902344\n18587,32.09162139892578\n18588,40.65936279296875\n18589,54.65510177612305\n18590,62.505069732666016\n18591,54.965797424316406\n18592,75.1764907836914\n18593,68.34959411621094\n18594,38.94792175292969\n18595,31.71930694580078\n18596,38.13039016723633\n18597,49.442378997802734\n18598,63.147239685058594\n18599,49.16524124145508\n18600,74.3903579711914\n18601,65.44740295410156\n18602,37.247825622558594\n18603,29.653764724731445\n18604,35.56648254394531\n18605,44.8962287902832\n18606,67.43744659423828\n18607,45.01123809814453\n18608,76.65644836425781\n18609,67.90059661865234\n18610,36.844181060791016\n18611,31.599885940551758\n18612,36.174129486083984\n18613,51.693599700927734\n18614,61.06150436401367\n18615,50.61412811279297\n18616,74.85730743408203\n18617,67.62945556640625\n18618,37.51061248779297\n18619,32.68803024291992\n18620,38.262786865234375\n18621,53.42494583129883\n18622,67.26631927490234\n18623,52.92361831665039\n18624,76.84078979492188\n18625,67.41519927978516\n18626,37.251426696777344\n18627,32.03349304199219\n18628,39.0625114440918\n18629,47.43160629272461\n18630,63.307525634765625\n18631,49.2193603515625\n18632,73.61714935302734\n18633,66.07867431640625\n18634,39.54060363769531\n18635,30.515913009643555\n18636,41.623043060302734\n18637,49.45685577392578\n18638,63.9259033203125\n18639,50.35438537597656\n18640,77.1607437133789\n18641,63.91402816772461\n18642,36.348575592041016\n18643,32.11583709716797\n18644,34.10453796386719\n18645,40.93315505981445\n18646,61.45343780517578\n18647,41.914825439453125\n18648,74.6512451171875\n18649,66.3736801147461\n18650,35.62505340576172\n18651,28.728422164916992\n18652,39.452362060546875\n18653,49.75865173339844\n18654,67.09741973876953\n18655,51.41079330444336\n18656,79.51502227783203\n18657,67.57841491699219\n18658,37.30099868774414\n18659,31.15259552001953\n18660,37.18743896484375\n18661,50.63344955444336\n18662,68.6348648071289\n18663,50.272579193115234\n18664,79.23778533935547\n18665,69.2447509765625\n18666,40.25466537475586\n18667,31.528772354125977\n18668,39.7580680847168\n18669,48.83809280395508\n18670,63.73226547241211\n18671,49.08436965942383\n18672,76.13233184814453\n18673,66.1124496459961\n18674,38.730770111083984\n18675,31.32793617248535\n18676,36.27526092529297\n18677,45.878509521484375\n18678,62.805389404296875\n18679,45.329959869384766\n18680,78.95191192626953\n18681,66.42019653320312\n18682,39.80402755737305\n18683,31.298494338989258\n18684,35.957401275634766\n18685,46.901641845703125\n18686,61.211708068847656\n18687,45.284263610839844\n18688,72.37117004394531\n18689,64.35643768310547\n18690,35.65694808959961\n18691,31.88330841064453\n18692,39.538761138916016\n18693,49.65461349487305\n18694,63.71670913696289\n18695,51.505836486816406\n18696,72.94320678710938\n18697,65.88671112060547\n18698,42.12066650390625\n18699,28.79172134399414\n18700,38.50056457519531\n18701,50.572879791259766\n18702,71.01384735107422\n18703,47.41729736328125\n18704,86.3650894165039\n18705,64.40042877197266\n18706,35.72467803955078\n18707,30.527719497680664\n18708,38.802581787109375\n18709,49.66987228393555\n18710,64.05494689941406\n18711,50.94371795654297\n18712,75.97911071777344\n18713,65.42936706542969\n18714,35.60041427612305\n18715,32.446807861328125\n18716,34.603519439697266\n18717,49.383853912353516\n18718,60.579803466796875\n18719,48.594032287597656\n18720,73.00037384033203\n18721,67.21312713623047\n18722,37.30144119262695\n18723,28.61697006225586\n18724,37.80636978149414\n18725,47.29556655883789\n18726,66.04234313964844\n18727,47.77996063232422\n18728,76.85047912597656\n18729,58.62689971923828\n18730,35.49930191040039\n18731,29.569766998291016\n18732,41.67413330078125\n18733,43.68831253051758\n18734,63.883705139160156\n18735,47.4853630065918\n18736,75.01033020019531\n18737,66.03997802734375\n18738,43.431678771972656\n18739,31.72316551208496\n18740,32.309085845947266\n18741,43.08251190185547\n18742,66.50424194335938\n18743,38.655357360839844\n18744,78.10303497314453\n18745,79.1985855102539\n18746,36.55618667602539\n18747,39.33434295654297\n18748,36.998111724853516\n18749,64.87017059326172\n18750,68.65336608886719\n18751,63.26900863647461\n18752,81.74207305908203\n18753,64.73544311523438\n18754,36.17930603027344\n18755,26.380964279174805\n18756,37.77909469604492\n18757,46.14254379272461\n18758,63.29130172729492\n18759,46.8326416015625\n18760,75.86221313476562\n18761,60.49577331542969\n18762,35.650001525878906\n18763,32.13998031616211\n18764,43.5352897644043\n18765,49.480587005615234\n18766,63.26171875\n18767,53.15348815917969\n18768,72.19024658203125\n18769,70.89018249511719\n18770,31.19181251525879\n18771,26.595184326171875\n18772,42.20834732055664\n18773,56.75784683227539\n18774,68.92023468017578\n18775,60.386356353759766\n18776,84.26607513427734\n18777,65.7186050415039\n18778,37.294700622558594\n18779,31.19449806213379\n18780,36.211795806884766\n18781,50.14033508300781\n18782,67.61878204345703\n18783,49.02103042602539\n18784,78.67900848388672\n18785,67.55018615722656\n18786,38.52693557739258\n18787,29.34265899658203\n18788,36.03326416015625\n18789,47.02413558959961\n18790,68.24813842773438\n18791,46.17001724243164\n18792,81.29376983642578\n18793,64.50051879882812\n18794,36.5291862487793\n18795,30.225526809692383\n18796,38.21799087524414\n18797,52.080875396728516\n18798,66.38897705078125\n18799,51.704647064208984\n18800,75.97283172607422\n18801,67.35070037841797\n18802,37.17618942260742\n18803,29.440032958984375\n18804,38.10562515258789\n18805,51.91923522949219\n18806,66.513427734375\n18807,51.37013244628906\n18808,78.0900650024414\n18809,69.2447509765625\n18810,40.25466537475586\n18811,31.528772354125977\n18812,39.7580680847168\n18813,48.83809280395508\n18814,63.73226547241211\n18815,49.08436965942383\n18816,76.13233184814453\n18817,63.13776779174805\n18818,34.58528518676758\n18819,30.218162536621094\n18820,37.380165100097656\n18821,48.1988410949707\n18822,60.82186508178711\n18823,49.43558120727539\n18824,71.27013397216797\n18825,66.37194061279297\n18826,40.485687255859375\n18827,31.200302124023438\n18828,42.585357666015625\n18829,48.995338439941406\n18830,66.1574935913086\n18831,50.23616027832031\n18832,78.42460632324219\n18833,64.50051879882812\n18834,36.5291862487793\n18835,30.225526809692383\n18836,38.21799087524414\n18837,52.080875396728516\n18838,66.38897705078125\n18839,51.704647064208984\n18840,75.97283172607422\n18841,67.11144256591797\n18842,37.960243225097656\n18843,31.2819881439209\n18844,37.95671081542969\n18845,49.03295135498047\n18846,66.725341796875\n18847,49.140689849853516\n18848,79.02933502197266\n18849,68.03834533691406\n18850,36.92035675048828\n18851,28.957834243774414\n18852,37.835323333740234\n18853,45.600582122802734\n18854,70.71968078613281\n18855,47.21455001831055\n18856,84.00389099121094\n18857,65.429443359375\n18858,38.03472900390625\n18859,30.59575080871582\n18860,37.310543060302734\n18861,49.487911224365234\n18862,64.33628845214844\n18863,48.6575813293457\n18864,76.8203125\n18865,39.59958267211914\n18866,38.07707214355469\n18867,9.584568977355957\n18868,40.71696090698242\n18869,22.881650924682617\n18870,62.09727478027344\n18871,24.707544326782227\n18872,72.31106567382812\n18873,66.84213256835938\n18874,43.63494110107422\n18875,32.02289962768555\n18876,34.77082061767578\n18877,45.251068115234375\n18878,67.15692901611328\n18879,41.60711669921875\n18880,78.4287338256836\n18881,65.66703796386719\n18882,37.158199310302734\n18883,29.11697006225586\n18884,39.31027603149414\n18885,49.781742095947266\n18886,63.62653732299805\n18887,50.35935592651367\n18888,76.77293395996094\n18889,66.45356750488281\n18890,37.15860366821289\n18891,29.21478271484375\n18892,37.0727424621582\n18893,47.852012634277344\n18894,69.30655670166016\n18895,47.92884826660156\n18896,80.5487060546875\n18897,65.99293518066406\n18898,39.51614761352539\n18899,32.5435676574707\n18900,36.72498321533203\n18901,51.42765426635742\n18902,64.53997802734375\n18903,49.16417694091797\n18904,76.73152160644531\n18905,66.56086730957031\n18906,39.642539978027344\n18907,32.924503326416016\n18908,36.61455154418945\n18909,48.567867279052734\n18910,64.02438354492188\n18911,47.240379333496094\n18912,75.56713104248047\n18913,61.85647964477539\n18914,37.339820861816406\n18915,31.00627899169922\n18916,41.75600814819336\n18917,50.0831184387207\n18918,62.40435791015625\n18919,51.61454391479492\n18920,72.09898376464844\n18921,68.65137481689453\n18922,34.61920166015625\n18923,29.257965087890625\n18924,37.981903076171875\n18925,49.71247100830078\n18926,69.25885772705078\n18927,51.514305114746094\n18928,79.09578704833984\n18929,69.40608215332031\n18930,30.932016372680664\n18931,28.28925323486328\n18932,38.32722473144531\n18933,50.05831527709961\n18934,60.65678024291992\n18935,53.86662292480469\n18936,77.90023040771484\n18937,66.85579681396484\n18938,36.010406494140625\n18939,31.502046585083008\n18940,38.327083587646484\n18941,55.188209533691406\n18942,64.4397964477539\n18943,54.56187057495117\n18944,77.42864227294922\n18945,62.032779693603516\n18946,41.32027053833008\n18947,36.67633056640625\n18948,34.78002166748047\n18949,40.34520721435547\n18950,57.777427673339844\n18951,39.408973693847656\n18952,68.04767608642578\n18953,59.62474060058594\n18954,36.964576721191406\n18955,27.688621520996094\n18956,37.63772964477539\n18957,37.452972412109375\n18958,65.02259063720703\n18959,39.86456298828125\n18960,79.20288848876953\n18961,63.12526321411133\n18962,33.716819763183594\n18963,31.009967803955078\n18964,47.354129791259766\n18965,52.55736541748047\n18966,64.56127166748047\n18967,58.47936248779297\n18968,76.65737915039062\n18969,62.95444107055664\n18970,35.074886322021484\n18971,30.186628341674805\n18972,40.622032165527344\n18973,47.67103576660156\n18974,60.006370544433594\n18975,50.34244918823242\n18976,70.61236572265625\n18977,65.5166244506836\n18978,38.2784538269043\n18979,29.348628997802734\n18980,39.57910919189453\n18981,47.75112533569336\n18982,66.83502960205078\n18983,48.53204345703125\n18984,77.10110473632812\n18985,67.64585876464844\n18986,41.84738540649414\n18987,30.43863868713379\n18988,40.41288757324219\n18989,50.22534942626953\n18990,67.40160369873047\n18991,49.135833740234375\n18992,82.21459197998047\n18993,70.31570434570312\n18994,38.46818923950195\n18995,31.48836898803711\n18996,38.79741668701172\n18997,49.743927001953125\n18998,67.09868621826172\n18999,50.36878967285156\n19000,81.62613677978516\n19001,64.36947631835938\n19002,33.03368377685547\n19003,31.656597137451172\n19004,40.46615982055664\n19005,51.3386344909668\n19006,65.23896026611328\n19007,54.639442443847656\n19008,74.35174560546875\n19009,67.56473541259766\n19010,38.8823356628418\n19011,31.079029083251953\n19012,36.36296844482422\n19013,45.52577590942383\n19014,66.53694915771484\n19015,45.415958404541016\n19016,79.52112579345703\n19017,65.434814453125\n19018,41.305641174316406\n19019,30.973865509033203\n19020,34.91157913208008\n19021,42.77375793457031\n19022,59.762054443359375\n19023,40.7296028137207\n19024,73.1613998413086\n19025,66.99158477783203\n19026,39.27598190307617\n19027,29.303895950317383\n19028,38.09833908081055\n19029,46.696048736572266\n19030,65.63656616210938\n19031,46.497371673583984\n19032,79.61355590820312\n19033,66.2741470336914\n19034,39.57468032836914\n19035,28.463516235351562\n19036,31.126880645751953\n19037,44.49062728881836\n19038,65.6678466796875\n19039,40.56450653076172\n19040,77.58975982666016\n19041,67.21654510498047\n19042,34.997642517089844\n19043,29.60948371887207\n19044,35.7047233581543\n19045,52.41184616088867\n19046,62.84296417236328\n19047,51.504180908203125\n19048,72.51396942138672\n19049,60.45612335205078\n19050,35.637123107910156\n19051,27.542295455932617\n19052,42.76245880126953\n19053,44.87296676635742\n19054,64.92144012451172\n19055,48.710514068603516\n19056,76.86322784423828\n19057,67.56549835205078\n19058,38.53105163574219\n19059,28.1580753326416\n19060,38.96623611450195\n19061,48.46261215209961\n19062,64.47438049316406\n19063,48.47626495361328\n19064,77.66390991210938\n19065,67.16680145263672\n19066,36.004661560058594\n19067,30.645832061767578\n19068,38.4787712097168\n19069,50.555667877197266\n19070,66.96697998046875\n19071,51.49929428100586\n19072,79.63805389404297\n19073,67.70353698730469\n19074,37.33970642089844\n19075,30.066730499267578\n19076,37.43442153930664\n19077,46.584075927734375\n19078,66.80656433105469\n19079,47.466678619384766\n19080,78.4523696899414\n19081,64.331787109375\n19082,32.99770736694336\n19083,30.261146545410156\n19084,38.60798263549805\n19085,51.42334747314453\n19086,58.2277717590332\n19087,53.32410430908203\n19088,70.00755310058594\n19089,66.2741470336914\n19090,39.57468032836914\n19091,28.463516235351562\n19092,31.126880645751953\n19093,44.49062728881836\n19094,65.6678466796875\n19095,40.56450653076172\n19096,77.58975982666016\n19097,63.48690414428711\n19098,38.19287872314453\n19099,30.387048721313477\n19100,38.67496109008789\n19101,42.42551803588867\n19102,66.11061096191406\n19103,44.17848587036133\n19104,80.0007095336914\n19105,66.56120300292969\n19106,40.940528869628906\n19107,28.99368667602539\n19108,40.120975494384766\n19109,47.52202224731445\n19110,65.7249984741211\n19111,47.1624870300293\n19112,79.39984893798828\n19113,62.30812454223633\n19114,69.14495086669922\n19115,40.350101470947266\n19116,71.37882232666016\n19117,51.00918197631836\n19118,87.58138275146484\n19119,64.97632598876953\n19120,35.980648040771484\n19121,30.950355529785156\n19122,38.14784622192383\n19123,46.641387939453125\n19124,65.05841827392578\n19125,48.39510726928711\n19126,79.67430877685547\n19127,69.43051147460938\n19128,31.576480865478516\n19129,32.98223876953125\n19130,40.437599182128906\n19131,54.398189544677734\n19132,66.4093017578125\n19133,58.43168258666992\n19134,78.97531127929688\n19135,62.99501037597656\n19136,35.37195587158203\n19137,30.8739013671875\n19138,34.807865142822266\n19139,46.928565979003906\n19140,59.2479248046875\n19141,46.69168472290039\n19142,68.40003204345703\n19143,69.1486587524414\n19144,43.68328094482422\n19145,33.761287689208984\n19146,34.4649658203125\n19147,46.2884635925293\n19148,65.74063110351562\n19149,42.66511535644531\n19150,78.62408447265625\n19151,66.68814086914062\n19152,36.674652099609375\n19153,31.056440353393555\n19154,39.34735870361328\n19155,50.38026809692383\n19156,68.84011840820312\n19157,51.558345794677734\n19158,80.42379760742188\n19159,66.6348648071289\n19160,39.71158981323242\n19161,29.694332122802734\n19162,31.4827823638916\n19163,42.56086730957031\n19164,64.78253936767578\n19165,39.864627838134766\n19166,74.32088470458984\n19167,67.7648696899414\n19168,35.58654022216797\n19169,33.773685455322266\n19170,36.861080169677734\n19171,52.30585479736328\n19172,61.508846282958984\n19173,52.463016510009766\n19174,72.80293273925781\n19175,69.16771697998047\n19176,38.7420539855957\n19177,32.41260528564453\n19178,38.8592414855957\n19179,45.05433654785156\n19180,67.17855072021484\n19181,46.924983978271484\n19182,80.02471160888672\n19183,66.63095092773438\n19184,38.67451477050781\n19185,28.193702697753906\n19186,36.80179214477539\n19187,45.90111541748047\n19188,70.12374114990234\n19189,45.50849914550781\n19190,80.96356964111328\n19191,69.02989196777344\n19192,44.052764892578125\n19193,35.81449508666992\n19194,37.38188552856445\n19195,48.31241226196289\n19196,66.66187286376953\n19197,45.97167205810547\n19198,77.14801788330078\n19199,70.04255676269531\n19200,36.389190673828125\n19201,28.767080307006836\n19202,35.90945053100586\n19203,45.57139587402344\n19204,69.93732452392578\n19205,46.6320915222168\n19206,81.91129302978516\n19207,65.25453186035156\n19208,36.64118957519531\n19209,28.59553337097168\n19210,38.01231002807617\n19211,48.44475555419922\n19212,61.33557891845703\n19213,48.67498779296875\n19214,74.15771484375\n19215,67.89646911621094\n19216,39.21855926513672\n19217,31.368736267089844\n19218,38.95340347290039\n19219,47.494632720947266\n19220,66.86173248291016\n19221,48.086814880371094\n19222,77.87419128417969\n19223,74.26458740234375\n19224,40.15126037597656\n19225,31.124235153198242\n19226,35.22734069824219\n19227,44.66160583496094\n19228,71.3984146118164\n19229,44.56077194213867\n19230,84.1912612915039\n19231,71.93093872070312\n19232,35.142311096191406\n19233,29.407493591308594\n19234,39.893455505371094\n19235,59.25772476196289\n19236,71.31190490722656\n19237,59.21013641357422\n19238,86.73491668701172\n19239,66.48169708251953\n19240,36.80709457397461\n19241,28.096267700195312\n19242,37.60652160644531\n19243,47.27863311767578\n19244,64.38970184326172\n19245,47.71048355102539\n19246,78.82443237304688\n19247,45.016929626464844\n19248,37.54570770263672\n19249,18.192832946777344\n19250,45.350650787353516\n19251,32.65501022338867\n19252,59.699100494384766\n19253,36.352725982666016\n19254,71.22264862060547\n19255,62.974082946777344\n19256,37.661781311035156\n19257,31.05034065246582\n19258,37.048397064208984\n19259,44.36110305786133\n19260,66.88470458984375\n19261,45.13571548461914\n19262,76.70545959472656\n19263,63.97271728515625\n19264,36.82295227050781\n19265,34.09693145751953\n19266,41.42265319824219\n19267,54.745147705078125\n19268,64.21328735351562\n19269,55.786808013916016\n19270,72.9554443359375\n19271,65.67293548583984\n19272,38.69179916381836\n19273,31.826828002929688\n19274,38.54191207885742\n19275,47.115299224853516\n19276,64.40072631835938\n19277,47.64149475097656\n19278,75.25907897949219\n19279,66.49697875976562\n19280,37.80818176269531\n19281,29.502090454101562\n19282,37.893306732177734\n19283,51.22038650512695\n19284,65.19268035888672\n19285,50.26966094970703\n19286,80.06292724609375\n19287,68.1604995727539\n19288,35.994022369384766\n19289,27.997913360595703\n19290,36.82424545288086\n19291,48.09785842895508\n19292,63.152366638183594\n19293,48.473628997802734\n19294,78.2427749633789\n19295,66.25167846679688\n19296,35.57710266113281\n19297,28.084653854370117\n19298,39.31425094604492\n19299,51.61443328857422\n19300,68.05137634277344\n19301,52.46487045288086\n19302,79.7030029296875\n19303,64.95323944091797\n19304,38.283897399902344\n19305,30.86822509765625\n19306,39.04818344116211\n19307,49.98063659667969\n19308,63.290855407714844\n19309,49.76044845581055\n19310,76.2959213256836\n19311,65.799072265625\n19312,37.28911209106445\n19313,29.036827087402344\n19314,37.040977478027344\n19315,43.676631927490234\n19316,60.72962188720703\n19317,44.72882843017578\n19318,74.08203887939453\n19319,65.13562774658203\n19320,41.95729446411133\n19321,31.825300216674805\n19322,36.19916915893555\n19323,45.94788360595703\n19324,64.64131927490234\n19325,43.54433822631836\n19326,75.50215148925781\n19327,66.921630859375\n19328,34.93528747558594\n19329,30.285703659057617\n19330,35.684844970703125\n19331,53.2968864440918\n19332,65.58475494384766\n19333,52.18511199951172\n19334,77.52362823486328\n19335,65.18482208251953\n19336,35.11647033691406\n19337,28.652883529663086\n19338,37.71788787841797\n19339,52.78516387939453\n19340,67.5014877319336\n19341,52.45195770263672\n19342,77.83495330810547\n19343,66.10364532470703\n19344,35.423255920410156\n19345,33.155067443847656\n19346,33.35174560546875\n19347,45.4337043762207\n19348,61.16438293457031\n19349,45.74491500854492\n19350,70.24024963378906\n19351,68.06187438964844\n19352,38.646583557128906\n19353,29.936792373657227\n19354,32.60151672363281\n19355,47.01237106323242\n19356,66.60799407958984\n19357,44.29850387573242\n19358,76.16736602783203\n19359,65.36768341064453\n19360,37.609920501708984\n19361,28.892532348632812\n19362,38.59919357299805\n19363,48.96242904663086\n19364,68.88023376464844\n19365,49.237937927246094\n19366,84.63502502441406\n19367,67.85063171386719\n19368,40.008827209472656\n19369,30.69321632385254\n19370,36.91813278198242\n19371,44.41166305541992\n19372,65.5281753540039\n19373,44.050880432128906\n19374,78.12491607666016\n19375,64.89925384521484\n19376,42.619903564453125\n19377,32.9811897277832\n19378,35.72446060180664\n19379,45.550777435302734\n19380,65.0677261352539\n19381,42.81739044189453\n19382,74.56932067871094\n19383,65.6640396118164\n19384,42.594234466552734\n19385,31.161231994628906\n19386,35.67764663696289\n19387,39.12519454956055\n19388,69.11306762695312\n19389,38.30831527709961\n19390,82.22599029541016\n19391,64.85796356201172\n19392,37.67509460449219\n19393,32.31340408325195\n19394,37.21760559082031\n19395,51.51426315307617\n19396,62.967529296875\n19397,50.52002716064453\n19398,74.1613998413086\n19399,69.535400390625\n19400,38.47512435913086\n19401,28.669252395629883\n19402,38.14048385620117\n19403,49.03401565551758\n19404,66.58992767333984\n19405,48.851966857910156\n19406,80.67218780517578\n19407,66.01402282714844\n19408,36.9598388671875\n19409,31.40013885498047\n19410,39.17124557495117\n19411,51.12471008300781\n19412,66.0094223022461\n19413,51.73120880126953\n19414,78.53945922851562\n19415,64.49011993408203\n19416,32.9830436706543\n19417,30.80221176147461\n19418,40.6279182434082\n19419,53.585140228271484\n19420,62.22360610961914\n19421,56.014007568359375\n19422,73.34749603271484\n19423,67.56364440917969\n19424,31.54610824584961\n19425,29.845483779907227\n19426,39.282310485839844\n19427,53.57756042480469\n19428,58.47494888305664\n19429,56.2469367980957\n19430,71.5877914428711\n19431,65.43046569824219\n19432,38.61389923095703\n19433,31.18126678466797\n19434,38.3182258605957\n19435,48.968109130859375\n19436,61.767005920410156\n19437,48.60622024536133\n19438,74.02205657958984\n19439,62.02592849731445\n19440,37.61576461791992\n19441,33.356510162353516\n19442,41.298065185546875\n19443,48.32870101928711\n19444,62.21023178100586\n19445,50.38839340209961\n19446,71.31591796875\n19447,66.14838409423828\n19448,36.34404754638672\n19449,30.295095443725586\n19450,37.107601165771484\n19451,46.651920318603516\n19452,58.36228942871094\n19453,47.43989944458008\n19454,71.82781982421875\n19455,65.13170623779297\n19456,36.90412902832031\n19457,32.25745391845703\n19458,37.09919357299805\n19459,51.4390983581543\n19460,65.84293365478516\n19461,50.8560905456543\n19462,76.49821472167969\n19463,67.03923034667969\n19464,39.28514862060547\n19465,31.89257049560547\n19466,36.748844146728516\n19467,47.60944366455078\n19468,60.2921028137207\n19469,46.709144592285156\n19470,71.67877960205078\n19471,67.73978424072266\n19472,37.04481506347656\n19473,28.888229370117188\n19474,36.741764068603516\n19475,48.54298782348633\n19476,63.55314254760742\n19477,48.27037048339844\n19478,76.63382720947266\n19479,67.76358032226562\n19480,39.69686508178711\n19481,29.42978858947754\n19482,35.45989990234375\n19483,46.82221603393555\n19484,65.27287292480469\n19485,44.96984100341797\n19486,79.41686248779297\n19487,65.96202087402344\n19488,38.396934509277344\n19489,28.285232543945312\n19490,38.16350173950195\n19491,49.646514892578125\n19492,62.36374282836914\n19493,48.716854095458984\n19494,75.29749298095703\n19495,66.85033416748047\n19496,37.21678924560547\n19497,30.09796905517578\n19498,37.97721481323242\n19499,49.7060661315918\n19500,63.145973205566406\n19501,49.78911209106445\n19502,76.11817932128906\n19503,67.44291687011719\n19504,36.84272003173828\n19505,30.06278419494629\n19506,37.81032943725586\n19507,49.32178497314453\n19508,64.3004150390625\n19509,49.67620086669922\n19510,75.94194030761719\n19511,41.3719482421875\n19512,41.79625701904297\n19513,17.92902183532715\n19514,44.83802795410156\n19515,29.50830841064453\n19516,61.716270446777344\n19517,30.824798583984375\n19518,69.9314956665039\n19519,66.40786743164062\n19520,35.908599853515625\n19521,30.117618560791016\n19522,33.474796295166016\n19523,44.84223175048828\n19524,62.6396369934082\n19525,44.66154479980469\n19526,72.6473159790039\n19527,65.56304168701172\n19528,42.20787048339844\n19529,31.901832580566406\n19530,38.1265754699707\n19531,43.182613372802734\n19532,61.834495544433594\n19533,42.309513092041016\n19534,79.0076675415039\n19535,63.1633186340332\n19536,39.3770866394043\n19537,31.673608779907227\n19538,40.58734893798828\n19539,45.7094841003418\n19540,68.406982421875\n19541,47.184837341308594\n19542,78.67205810546875\n19543,74.12332916259766\n19544,38.739784240722656\n19545,30.193208694458008\n19546,40.48262405395508\n19547,53.656402587890625\n19548,72.30128479003906\n19549,54.21786880493164\n19550,84.78065490722656\n19551,65.17451477050781\n19552,37.034793853759766\n19553,30.021142959594727\n19554,38.50362014770508\n19555,45.95595932006836\n19556,65.42155456542969\n19557,47.389034271240234\n19558,76.72958374023438\n19559,68.34906768798828\n19560,34.48548126220703\n19561,33.102516174316406\n19562,37.12337112426758\n19563,52.573646545410156\n19564,63.05000305175781\n19565,53.40202713012695\n19566,72.56180572509766\n19567,70.81886291503906\n19568,38.292118072509766\n19569,33.16712188720703\n19570,38.44851303100586\n19571,53.30188751220703\n19572,61.67652893066406\n19573,52.972564697265625\n19574,74.63079071044922\n19575,65.33195495605469\n19576,35.26980972290039\n19577,24.75319480895996\n19578,38.677040100097656\n19579,48.71269226074219\n19580,68.75812530517578\n19581,49.6115608215332\n19582,83.26254272460938\n19583,67.67550659179688\n19584,38.039405822753906\n19585,29.444887161254883\n19586,37.497005462646484\n19587,47.70167541503906\n19588,64.72624969482422\n19589,47.65364456176758\n19590,77.83621978759766\n19591,66.78990173339844\n19592,39.606834411621094\n19593,32.26303482055664\n19594,36.04517364501953\n19595,48.13477325439453\n19596,63.31373596191406\n19597,46.668087005615234\n19598,73.27790069580078\n19599,68.89912414550781\n19600,37.97313690185547\n19601,30.083539962768555\n19602,39.02019500732422\n19603,52.11072540283203\n19604,67.87641906738281\n19605,51.93132781982422\n19606,80.50730895996094\n19607,66.52165985107422\n19608,35.389190673828125\n19609,29.271831512451172\n19610,31.443584442138672\n19611,42.96182632446289\n19612,63.78924560546875\n19613,42.40605926513672\n19614,73.65111541748047\n19615,71.06407928466797\n19616,32.54216003417969\n19617,28.7662353515625\n19618,37.95917510986328\n19619,50.62763214111328\n19620,67.48851013183594\n19621,53.41056442260742\n19622,80.90547943115234\n19623,68.04702758789062\n19624,38.552364349365234\n19625,28.093448638916016\n19626,35.018394470214844\n19627,44.34747314453125\n19628,59.885738372802734\n19629,43.163326263427734\n19630,78.2647933959961\n19631,66.14794158935547\n19632,36.945960998535156\n19633,30.80789566040039\n19634,36.95716857910156\n19635,48.050941467285156\n19636,64.08487701416016\n19637,48.199424743652344\n19638,74.53466796875\n19639,70.2018814086914\n19640,42.654476165771484\n19641,34.57447814941406\n19642,35.18764114379883\n19643,50.70350646972656\n19644,65.71882629394531\n19645,47.007423400878906\n19646,76.97006225585938\n19647,66.9164810180664\n19648,34.452362060546875\n19649,26.619421005249023\n19650,38.670162200927734\n19651,48.05222702026367\n19652,68.56372833251953\n19653,50.084869384765625\n19654,78.60059356689453\n19655,64.79723358154297\n19656,40.1824951171875\n19657,31.114933013916016\n19658,36.02942657470703\n19659,42.63361358642578\n19660,67.09741973876953\n19661,42.085784912109375\n19662,77.95255279541016\n19663,69.83980560302734\n19664,40.67387008666992\n19665,28.733678817749023\n19666,35.72633743286133\n19667,46.55965805053711\n19668,67.99981689453125\n19669,44.646263122558594\n19670,81.05774688720703\n19671,67.1058578491211\n19672,38.73401641845703\n19673,29.4566650390625\n19674,40.08140563964844\n19675,49.44342803955078\n19676,59.24908447265625\n19677,49.724037170410156\n19678,72.78337860107422\n19679,67.47599792480469\n19680,36.300777435302734\n19681,32.26008987426758\n19682,38.35603713989258\n19683,51.19663619995117\n19684,66.45323944091797\n19685,52.041351318359375\n19686,76.7197036743164\n19687,68.66161346435547\n19688,39.04753112792969\n19689,33.015708923339844\n19690,38.2052001953125\n19691,51.1962776184082\n19692,64.33761596679688\n19693,50.64881896972656\n19694,74.7293701171875\n19695,66.8192138671875\n19696,32.55515670776367\n19697,27.59560775756836\n19698,37.90436935424805\n19699,51.97915267944336\n19700,69.97039794921875\n19701,53.63043975830078\n19702,83.48316955566406\n19703,65.94799041748047\n19704,33.926727294921875\n19705,27.824316024780273\n19706,35.66804122924805\n19707,49.107669830322266\n19708,60.72663116455078\n19709,49.222679138183594\n19710,72.29535675048828\n19711,67.1329574584961\n19712,36.20942306518555\n19713,32.298988342285156\n19714,36.30471420288086\n19715,55.59031295776367\n19716,61.478328704833984\n19717,53.67805862426758\n19718,75.26896667480469\n19719,66.15762329101562\n19720,35.05856704711914\n19721,34.37977600097656\n19722,38.045711517333984\n19723,55.79899215698242\n19724,59.80658721923828\n19725,55.774410247802734\n19726,71.34347534179688\n19727,66.11438751220703\n19728,38.85405731201172\n19729,31.70334243774414\n19730,36.612205505371094\n19731,48.415069580078125\n19732,62.24864196777344\n19733,47.398616790771484\n19734,73.43067932128906\n19735,60.56330490112305\n19736,42.27132034301758\n19737,35.208274841308594\n19738,41.72132873535156\n19739,48.140289306640625\n19740,60.21295166015625\n19741,47.92182922363281\n19742,68.32157897949219\n19743,62.43172073364258\n19744,31.978845596313477\n19745,24.39252281188965\n19746,37.403907775878906\n19747,49.65730667114258\n19748,64.19367980957031\n19749,50.73406982421875\n19750,76.5905532836914\n19751,70.95071411132812\n19752,37.02976989746094\n19753,27.117408752441406\n19754,38.46294403076172\n19755,49.916622161865234\n19756,67.53839874267578\n19757,50.318580627441406\n19758,81.35466003417969\n19759,62.614009857177734\n19760,39.22678756713867\n19761,30.573410034179688\n19762,34.04792404174805\n19763,37.895599365234375\n19764,62.80183029174805\n19765,37.782405853271484\n19766,75.73869323730469\n19767,66.91654968261719\n19768,38.28976821899414\n19769,27.887439727783203\n19770,37.53071975708008\n19771,47.147300720214844\n19772,62.88444519042969\n19773,46.806373596191406\n19774,75.36774444580078\n19775,68.1941146850586\n19776,38.67125701904297\n19777,30.22343635559082\n19778,35.777374267578125\n19779,45.5898323059082\n19780,65.7063217163086\n19781,45.10129928588867\n19782,79.41352844238281\n19783,66.76567077636719\n19784,36.43720626831055\n19785,29.65045738220215\n19786,37.068607330322266\n19787,49.3070182800293\n19788,61.49246597290039\n19789,49.25105285644531\n19790,74.25289154052734\n19791,69.13880157470703\n19792,34.95048904418945\n19793,29.121065139770508\n19794,34.20085525512695\n19795,48.79951095581055\n19796,62.13972473144531\n19797,48.33451843261719\n19798,75.04569244384766\n19799,68.22093963623047\n19800,34.76085662841797\n19801,29.9307861328125\n19802,38.93685531616211\n19803,52.98237991333008\n19804,63.196067810058594\n19805,53.980960845947266\n19806,77.43378448486328\n19807,67.27986145019531\n19808,37.30100631713867\n19809,31.820388793945312\n19810,37.87459182739258\n19811,49.76578903198242\n19812,61.78672409057617\n19813,50.014400482177734\n19814,72.2114028930664\n19815,61.4635009765625\n19816,35.723636627197266\n19817,28.009355545043945\n19818,36.60342788696289\n19819,41.436519622802734\n19820,60.74859619140625\n19821,42.96342849731445\n19822,73.39055633544922\n19823,65.9672622680664\n19824,34.97262191772461\n19825,30.10454750061035\n19826,41.2948112487793\n19827,51.357635498046875\n19828,63.980709075927734\n19829,53.89004135131836\n19830,76.00616455078125\n19831,70.39925384521484\n19832,39.566375732421875\n19833,34.370113372802734\n19834,36.17285919189453\n19835,51.00132369995117\n19836,63.09486389160156\n19837,49.5132942199707\n19838,76.10794067382812\n19839,66.72193908691406\n19840,41.52714157104492\n19841,31.074283599853516\n19842,38.73591232299805\n19843,45.95505905151367\n19844,66.29969787597656\n19845,45.4920768737793\n19846,77.0530776977539\n19847,65.63324737548828\n19848,39.931941986083984\n19849,30.237194061279297\n19850,35.59349060058594\n19851,46.40268325805664\n19852,66.18519592285156\n19853,44.48329544067383\n19854,78.31689453125\n19855,66.33175659179688\n19856,44.501102447509766\n19857,34.86651611328125\n19858,38.15730285644531\n19859,42.24626159667969\n19860,62.73521423339844\n19861,41.08568572998047\n19862,78.22586822509766\n19863,67.07754516601562\n19864,37.92164993286133\n19865,29.3162784576416\n19866,35.89284133911133\n19867,47.336944580078125\n19868,66.5228042602539\n19869,46.43937683105469\n19870,79.50088500976562\n19871,65.88687896728516\n19872,35.66807174682617\n19873,32.086944580078125\n19874,37.58869934082031\n19875,50.391998291015625\n19876,58.65605163574219\n19877,51.03508758544922\n19878,68.46175384521484\n19879,66.17891693115234\n19880,39.21659469604492\n19881,28.83745574951172\n19882,34.594966888427734\n19883,43.191429138183594\n19884,66.84553527832031\n19885,42.06501770019531\n19886,77.62189483642578\n19887,67.23121643066406\n19888,34.74671173095703\n19889,27.427112579345703\n19890,34.4210319519043\n19891,44.327110290527344\n19892,66.28536224365234\n19893,45.170387268066406\n19894,79.33132934570312\n19895,68.41011047363281\n19896,32.541446685791016\n19897,26.907276153564453\n19898,32.799442291259766\n19899,48.097225189208984\n19900,63.01516342163086\n19901,48.104915618896484\n19902,75.83116912841797\n19903,67.39312744140625\n19904,36.35053634643555\n19905,28.860143661499023\n19906,40.715213775634766\n19907,49.99486541748047\n19908,62.35271072387695\n19909,51.72432327270508\n19910,77.00066375732422\n19911,65.61077880859375\n19912,36.49473190307617\n19913,30.855649948120117\n19914,35.541255950927734\n19915,47.37919235229492\n19916,58.40428161621094\n19917,47.03050231933594\n19918,69.7122802734375\n19919,65.22502899169922\n19920,35.2615966796875\n19921,29.546728134155273\n19922,37.0093879699707\n19923,45.317256927490234\n19924,61.862327575683594\n19925,46.97557830810547\n19926,75.02460479736328\n19927,65.70979309082031\n19928,40.04037857055664\n19929,28.947986602783203\n19930,39.15656661987305\n19931,47.068416595458984\n19932,66.52198791503906\n19933,46.753273010253906\n19934,80.26858520507812\n19935,67.93939971923828\n19936,41.131317138671875\n19937,27.769445419311523\n19938,37.09742736816406\n19939,46.36964416503906\n19940,68.454345703125\n19941,44.667137145996094\n19942,79.78985595703125\n19943,67.851318359375\n19944,37.849056243896484\n19945,30.566570281982422\n19946,38.670413970947266\n19947,48.87184524536133\n19948,62.25803756713867\n19949,49.377769470214844\n19950,74.17577362060547\n19951,65.3272705078125\n19952,36.98075485229492\n19953,26.512046813964844\n19954,42.13087463378906\n19955,50.08439254760742\n19956,65.0708999633789\n19957,51.73365020751953\n19958,81.50082397460938\n19959,68.0592269897461\n19960,41.99068069458008\n19961,32.1407356262207\n19962,39.85887908935547\n19963,50.97319793701172\n19964,67.17041015625\n19965,49.548675537109375\n19966,79.09623718261719\n19967,66.5300064086914\n19968,35.329097747802734\n19969,28.2762451171875\n19970,41.58205795288086\n19971,53.838539123535156\n19972,64.28710174560547\n19973,55.34557342529297\n19974,77.579345703125\n19975,66.313232421875\n19976,38.0695915222168\n19977,32.058929443359375\n19978,38.59164047241211\n19979,48.44814682006836\n19980,62.89753341674805\n19981,49.07707977294922\n19982,73.2380599975586\n19983,67.09486389160156\n19984,38.979793548583984\n19985,33.525848388671875\n19986,41.359439849853516\n19987,52.04951858520508\n19988,61.02857971191406\n19989,52.88820266723633\n19990,72.59021759033203\n19991,67.483154296875\n19992,38.345298767089844\n19993,28.2225284576416\n19994,36.60346221923828\n19995,47.94459915161133\n19996,63.72541046142578\n19997,46.88714599609375\n19998,77.32086944580078\n19999,69.57748413085938\n20000,40.51599884033203\n20001,32.40597152709961\n20002,37.2794303894043\n20003,49.91151809692383\n20004,65.06819152832031\n20005,48.432281494140625\n20006,79.37468719482422\n20007,66.74983215332031\n20008,38.85976028442383\n20009,33.28256607055664\n20010,35.91434860229492\n20011,47.95991516113281\n20012,63.88992691040039\n20013,46.941200256347656\n20014,75.30265045166016\n20015,67.9043960571289\n20016,36.909423828125\n20017,27.38309669494629\n20018,37.86643600463867\n20019,50.51199722290039\n20020,70.12496185302734\n20021,50.1766357421875\n20022,84.73622131347656\n20023,67.08792114257812\n20024,37.15442657470703\n20025,29.418445587158203\n20026,37.975650787353516\n20027,47.032997131347656\n20028,66.7531509399414\n20029,47.951133728027344\n20030,80.15798950195312\n20031,63.94160842895508\n20032,42.08837890625\n20033,33.72954177856445\n20034,41.23011016845703\n20035,49.476680755615234\n20036,62.62648010253906\n20037,48.850242614746094\n20038,74.10746765136719\n20039,66.64928436279297\n20040,32.92240524291992\n20041,27.356334686279297\n20042,38.28656005859375\n20043,51.6535758972168\n20044,65.43758392333984\n20045,53.16537094116211\n20046,77.0063247680664\n20047,67.67710876464844\n20048,36.32088088989258\n20049,32.155391693115234\n20050,37.56443405151367\n20051,52.090476989746094\n20052,61.69236755371094\n20053,52.05478286743164\n20054,74.60964965820312\n20055,66.9563980102539\n20056,35.94866180419922\n20057,30.130443572998047\n20058,36.410213470458984\n20059,51.14552688598633\n20060,62.79506301879883\n20061,50.567012786865234\n20062,76.39453887939453\n20063,66.4537124633789\n20064,38.289554595947266\n20065,30.995407104492188\n20066,45.033687591552734\n20067,52.562164306640625\n20068,67.69340515136719\n20069,55.16905975341797\n20070,78.1531753540039\n20071,68.57366943359375\n20072,39.85032272338867\n20073,28.510955810546875\n20074,35.03921890258789\n20075,43.784732818603516\n20076,70.80215454101562\n20077,42.77500915527344\n20078,84.00835418701172\n20079,64.3378677368164\n20080,36.192447662353516\n20081,30.209529876708984\n20082,39.770774841308594\n20083,49.46055603027344\n20084,67.89505004882812\n20085,51.01958084106445\n20086,77.46501922607422\n20087,67.28577423095703\n20088,38.087799072265625\n20089,30.218339920043945\n20090,37.847496032714844\n20091,48.72902297973633\n20092,64.78739929199219\n20093,48.59406280517578\n20094,77.94444274902344\n20095,67.0691146850586\n20096,37.711910247802734\n20097,32.0500602722168\n20098,38.11817169189453\n20099,51.22652816772461\n20100,65.33256530761719\n20101,50.97303009033203\n20102,76.54671478271484\n20103,66.89100646972656\n20104,34.42189025878906\n20105,31.118364334106445\n20106,33.42940902709961\n20107,47.57747268676758\n20108,59.14959716796875\n20109,47.322017669677734\n20110,71.67046356201172\n20111,71.33609008789062\n20112,30.886266708374023\n20113,22.130699157714844\n20114,31.654489517211914\n20115,43.496768951416016\n20116,64.3852767944336\n20117,44.9163932800293\n20118,79.64366912841797\n20119,68.25618743896484\n20120,38.85288619995117\n20121,30.007898330688477\n20122,38.916690826416016\n20123,53.802215576171875\n20124,70.19599151611328\n20125,52.45507049560547\n20126,82.53107452392578\n20127,74.18487548828125\n20128,41.84072494506836\n20129,28.161334991455078\n20130,37.0482177734375\n20131,47.596336364746094\n20132,74.0533676147461\n20133,46.154544830322266\n20134,87.52213287353516\n20135,63.9863166809082\n20136,37.29021072387695\n20137,30.218074798583984\n20138,38.81201171875\n20139,47.400943756103516\n20140,63.648590087890625\n20141,48.234901428222656\n20142,74.92436218261719\n20143,68.37721252441406\n20144,39.10869216918945\n20145,30.496700286865234\n20146,39.0810546875\n20147,52.43284606933594\n20148,64.60912322998047\n20149,51.502777099609375\n20150,77.60691833496094\n20151,66.72502136230469\n20152,33.98309326171875\n20153,26.920473098754883\n20154,37.958919525146484\n20155,49.71870422363281\n20156,61.251434326171875\n20157,50.92339324951172\n20158,72.235107421875\n20159,66.89594268798828\n20160,40.465091705322266\n20161,33.152442932128906\n20162,37.661163330078125\n20163,51.532432556152344\n20164,65.38726043701172\n20165,49.53443908691406\n20166,76.36217498779297\n20167,67.03498077392578\n20168,39.275062561035156\n20169,28.414663314819336\n20170,34.616329193115234\n20171,45.30859375\n20172,67.00935363769531\n20173,43.514427185058594\n20174,78.42224884033203\n20175,65.62519073486328\n20176,32.6485710144043\n20177,29.182828903198242\n20178,35.40116882324219\n20179,46.367000579833984\n20180,59.561546325683594\n20181,48.20887756347656\n20182,70.21052551269531\n20183,59.625999450683594\n20184,38.729827880859375\n20185,35.87082290649414\n20186,42.82154846191406\n20187,46.927616119384766\n20188,60.22030258178711\n20189,49.64848327636719\n20190,67.60387420654297\n20191,65.99958038330078\n20192,34.81867599487305\n20193,29.581926345825195\n20194,39.40644836425781\n20195,57.147361755371094\n20196,63.82775115966797\n20197,56.74760055541992\n20198,76.80006408691406\n20199,64.14459228515625\n20200,39.58761215209961\n20201,30.203996658325195\n20202,42.416080474853516\n20203,51.2696647644043\n20204,60.92273712158203\n20205,51.61674499511719\n20206,74.13591003417969\n20207,63.66348648071289\n20208,37.92343521118164\n20209,28.368078231811523\n20210,42.109107971191406\n20211,44.5999870300293\n20212,60.07502746582031\n20213,47.196250915527344\n20214,72.55550384521484\n20215,71.94998931884766\n20216,36.6152458190918\n20217,25.21820640563965\n20218,39.77406311035156\n20219,52.067176818847656\n20220,66.26123809814453\n20221,52.675540924072266\n20222,82.65766906738281\n20223,67.96257781982422\n20224,37.93714904785156\n20225,29.238828659057617\n20226,38.81922149658203\n20227,47.915794372558594\n20228,64.76072692871094\n20229,48.640777587890625\n20230,78.42731475830078\n20231,69.5743408203125\n20232,41.045509338378906\n20233,39.2988395690918\n20234,37.52680206298828\n20235,59.81108856201172\n20236,66.24730682373047\n20237,56.060546875\n20238,79.73794555664062\n20239,67.70580291748047\n20240,36.9744758605957\n20241,28.822715759277344\n20242,38.615596771240234\n20243,45.615177154541016\n20244,67.2535400390625\n20245,47.484134674072266\n20246,80.12430572509766\n20247,67.28855895996094\n20248,35.77411651611328\n20249,29.13839340209961\n20250,39.43559646606445\n20251,50.153812408447266\n20252,66.54713439941406\n20253,51.74308395385742\n20254,79.62918853759766\n20255,66.00981140136719\n20256,37.69584274291992\n20257,30.21438217163086\n20258,38.43861770629883\n20259,49.998313903808594\n20260,68.56707000732422\n20261,49.982295989990234\n20262,81.57921600341797\n20263,64.78014373779297\n20264,37.035789489746094\n20265,31.500469207763672\n20266,38.363590240478516\n20267,46.87003707885742\n20268,65.87239074707031\n20269,48.214454650878906\n20270,76.20987701416016\n20271,75.98744201660156\n20272,42.27878189086914\n20273,35.8816032409668\n20274,33.95097351074219\n20275,51.71390914916992\n20276,60.59648895263672\n20277,48.19301986694336\n20278,74.22315216064453\n20279,70.3345947265625\n20280,42.21967315673828\n20281,28.46229362487793\n20282,40.48404312133789\n20283,49.39699935913086\n20284,70.03914642333984\n20285,48.408203125\n20286,87.26329803466797\n20287,68.6120376586914\n20288,41.428077697753906\n20289,32.164459228515625\n20290,37.85859298706055\n20291,47.5262336730957\n20292,62.14201354980469\n20293,46.28658676147461\n20294,75.37323760986328\n20295,66.91254425048828\n20296,37.757904052734375\n20297,28.487199783325195\n20298,40.32236099243164\n20299,48.18063735961914\n20300,71.11238098144531\n20301,49.61064147949219\n20302,82.31616973876953\n20303,65.81891632080078\n20304,40.65034103393555\n20305,30.382349014282227\n20306,40.77591323852539\n20307,47.6043815612793\n20308,62.52684783935547\n20309,47.839378356933594\n20310,73.88932037353516\n20311,66.56312561035156\n20312,36.07900619506836\n20313,31.076271057128906\n20314,37.91781997680664\n20315,51.908721923828125\n20316,68.03602600097656\n20317,52.08773422241211\n20318,79.09597778320312\n20319,65.78657531738281\n20320,38.395450592041016\n20321,30.7358455657959\n20322,39.54780578613281\n20323,47.97532653808594\n20324,63.162879943847656\n20325,48.73432540893555\n20326,73.27860260009766\n20327,64.21086120605469\n20328,36.8795051574707\n20329,30.595060348510742\n20330,36.92300033569336\n20331,47.62847137451172\n20332,64.7251205444336\n20333,47.6810188293457\n20334,75.76770782470703\n20335,67.85237884521484\n20336,39.676605224609375\n20337,30.37777328491211\n20338,36.18130874633789\n20339,45.3973274230957\n20340,60.95916748046875\n20341,44.567684173583984\n20342,73.1643295288086\n20343,67.60603332519531\n20344,37.154388427734375\n20345,30.98959732055664\n20346,39.97676467895508\n20347,51.22687911987305\n20348,66.2455062866211\n20349,52.34708023071289\n20350,79.97774505615234\n20351,69.25471496582031\n20352,42.53000259399414\n20353,33.4795036315918\n20354,35.312801361083984\n20355,47.96414566040039\n20356,60.28060531616211\n20357,44.84581756591797\n20358,72.43071746826172\n20359,69.36546325683594\n20360,38.49964904785156\n20361,34.88270950317383\n20362,35.921443939208984\n20363,54.338287353515625\n20364,65.26995086669922\n20365,52.20100402832031\n20366,76.61976623535156\n20367,59.603057861328125\n20368,35.83335494995117\n20369,29.794208526611328\n20370,39.6429328918457\n20371,48.08535385131836\n20372,59.51304626464844\n20373,49.38224411010742\n20374,72.02207946777344\n20375,67.06771850585938\n20376,32.7214469909668\n20377,24.171661376953125\n20378,37.40813064575195\n20379,48.47518539428711\n20380,65.35897827148438\n20381,50.105018615722656\n20382,77.05941009521484\n20383,69.31889343261719\n20384,36.52322769165039\n20385,32.79389190673828\n20386,37.102638244628906\n20387,51.489253997802734\n20388,62.951637268066406\n20389,51.6625862121582\n20390,73.93035888671875\n20391,72.8492660522461\n20392,35.63054656982422\n20393,28.539730072021484\n20394,34.594871520996094\n20395,45.7091178894043\n20396,72.54402160644531\n20397,46.99562454223633\n20398,85.01529693603516\n20399,62.13228225708008\n20400,35.48435974121094\n20401,31.489017486572266\n20402,37.49070358276367\n20403,46.979801177978516\n20404,53.67483901977539\n20405,47.96780776977539\n20406,65.7704086303711\n20407,67.72402954101562\n20408,41.09453201293945\n20409,34.047550201416016\n20410,38.90401840209961\n20411,54.585147857666016\n20412,67.6310806274414\n20413,52.34879684448242\n20414,80.35967254638672\n20415,66.94796752929688\n20416,38.04059982299805\n20417,32.13775634765625\n20418,37.452430725097656\n20419,50.47286605834961\n20420,62.612178802490234\n20421,49.848209381103516\n20422,75.4922866821289\n20423,62.441436767578125\n20424,30.224170684814453\n20425,30.067922592163086\n20426,43.56816482543945\n20427,52.98588562011719\n20428,61.84052658081055\n20429,58.42889404296875\n20430,74.49653625488281\n20431,68.62999725341797\n20432,37.87796401977539\n20433,32.79280471801758\n20434,40.57732009887695\n20435,56.601016998291016\n20436,67.29692077636719\n20437,56.447940826416016\n20438,79.81067657470703\n20439,64.57914733886719\n20440,38.17475128173828\n20441,28.617408752441406\n20442,37.695579528808594\n20443,43.73213195800781\n20444,64.50749969482422\n20445,44.41195297241211\n20446,80.23116302490234\n20447,62.13228225708008\n20448,35.48435974121094\n20449,31.489017486572266\n20450,37.49070358276367\n20451,46.979801177978516\n20452,53.67483901977539\n20453,47.96780776977539\n20454,65.7704086303711\n20455,67.16697692871094\n20456,32.58159637451172\n20457,27.488811492919922\n20458,39.04405975341797\n20459,48.03985595703125\n20460,65.29862213134766\n20461,51.43363952636719\n20462,78.33274841308594\n20463,66.73712158203125\n20464,35.12665939331055\n20465,33.042110443115234\n20466,38.62957763671875\n20467,53.581993103027344\n20468,66.32427215576172\n20469,54.56454849243164\n20470,74.46623229980469\n20471,66.73712158203125\n20472,35.12665939331055\n20473,33.042110443115234\n20474,38.62957763671875\n20475,53.581993103027344\n20476,66.32427215576172\n20477,54.56454849243164\n20478,74.46623229980469\n20479,63.54279327392578\n20480,35.34730529785156\n20481,33.627376556396484\n20482,38.03631591796875\n20483,50.32711410522461\n20484,60.041812896728516\n20485,51.47861099243164\n20486,68.44268035888672\n20487,67.84977722167969\n20488,41.761287689208984\n20489,34.6317253112793\n20490,39.61832809448242\n20491,47.5941276550293\n20492,59.67669677734375\n20493,47.49759292602539\n20494,71.97293090820312\n20495,66.75604248046875\n20496,32.442867279052734\n20497,31.745691299438477\n20498,36.08450698852539\n20499,54.419490814208984\n20500,61.66999435424805\n20501,54.7287712097168\n20502,73.32218933105469\n20503,68.00181579589844\n20504,41.915489196777344\n20505,36.99992370605469\n20506,38.717891693115234\n20507,52.01448440551758\n20508,59.355567932128906\n20509,50.371803283691406\n20510,71.17069244384766\n20511,67.1468276977539\n20512,43.80358123779297\n20513,38.22745895385742\n20514,45.63768005371094\n20515,54.22040557861328\n20516,73.39947509765625\n20517,62.10529708862305\n20518,35.5301399230957\n20519,35.181034088134766\n20520,44.398712158203125\n20521,55.60618209838867\n20522,59.33990478515625\n20523,58.68181610107422\n20524,67.88159942626953\n20525,65.22429656982422\n20526,33.84825134277344\n20527,31.413848876953125\n20528,39.39706802368164\n20529,50.92939376831055\n20530,60.66130447387695\n20531,53.4067497253418\n20532,75.11101531982422\n20533,74.3309097290039\n20534,43.04334259033203\n20535,50.89348602294922\n20536,47.789554595947266\n20537,67.96761322021484\n20538,64.90320587158203\n20539,69.12608337402344\n20540,72.92452239990234\n20541,52.4788703918457\n20542,45.93514633178711\n20543,31.878206253051758\n20544,45.93437576293945\n20545,40.81297302246094\n20546,63.03032684326172\n20547,41.22529602050781\n20548,70.58074951171875\n20549,67.98812866210938\n20550,38.47744369506836\n20551,30.513965606689453\n20552,39.9045524597168\n20553,53.758026123046875\n20554,68.07952117919922\n20555,53.21035385131836\n20556,80.97415161132812\n20557,41.47380828857422\n20558,41.63447952270508\n20559,18.019948959350586\n20560,39.63197708129883\n20561,22.59811782836914\n20562,55.654380798339844\n20563,22.898822784423828\n20564,69.74523162841797\n20565,66.05374145507812\n20566,36.6863899230957\n20567,30.852815628051758\n20568,37.16700744628906\n20569,47.82168197631836\n20570,62.22080993652344\n20571,48.26606369018555\n20572,74.99930572509766\n20573,68.36141204833984\n20574,39.517539978027344\n20575,29.82695960998535\n20576,36.62079620361328\n20577,48.54340362548828\n20578,69.57237243652344\n20579,47.30550765991211\n20580,81.4350814819336\n20581,62.53567123413086\n20582,39.60567855834961\n20583,29.25608253479004\n20584,42.03739547729492\n20585,42.26490783691406\n20586,65.60826873779297\n20587,44.7510871887207\n20588,78.21904754638672\n20589,65.9150161743164\n20590,33.41775131225586\n20591,29.01456642150879\n20592,38.58395767211914\n20593,52.6265983581543\n20594,60.08702850341797\n20595,53.89155578613281\n20596,70.90520477294922\n20597,67.07833862304688\n20598,39.2657585144043\n20599,32.33475112915039\n20600,37.645774841308594\n20601,48.91579818725586\n20602,68.35027313232422\n20603,48.42456817626953\n20604,79.31376647949219\n20605,65.7773666381836\n20606,39.56508255004883\n20607,33.938751220703125\n20608,42.49302673339844\n20609,51.198936462402344\n20610,64.27755737304688\n20611,52.70379638671875\n20612,74.61199951171875\n20613,65.17218017578125\n20614,41.1616096496582\n20615,30.377227783203125\n20616,36.31644058227539\n20617,46.81489562988281\n20618,66.75763702392578\n20619,44.44327926635742\n20620,77.8298110961914\n20621,68.12996673583984\n20622,34.75425338745117\n20623,28.045257568359375\n20624,36.89387512207031\n20625,47.145503997802734\n20626,62.230194091796875\n20627,48.5250244140625\n20628,76.51367950439453\n20629,67.56719207763672\n20630,37.36478805541992\n20631,27.73056983947754\n20632,35.59296798706055\n20633,48.00019073486328\n20634,62.5321044921875\n20635,46.900901794433594\n20636,73.19375610351562\n20637,65.6870346069336\n20638,39.438499450683594\n20639,29.192638397216797\n20640,37.16448974609375\n20641,48.77177429199219\n20642,63.11741256713867\n20643,47.107948303222656\n20644,76.4090805053711\n20645,57.7480583190918\n20646,36.764137268066406\n20647,32.333717346191406\n20648,42.84977340698242\n20649,43.94095230102539\n20650,63.27454376220703\n20651,47.810726165771484\n20652,75.2007827758789\n20653,67.35823059082031\n20654,32.53962707519531\n20655,32.8183708190918\n20656,31.39223289489746\n20657,48.700923919677734\n20658,56.94341278076172\n20659,48.340213775634766\n20660,68.7405014038086\n20661,63.13640213012695\n20662,39.17286682128906\n20663,30.526351928710938\n20664,37.286170959472656\n20665,42.9559440612793\n20666,60.319984436035156\n20667,43.05839157104492\n20668,71.11725616455078\n20669,67.59375\n20670,37.27632141113281\n20671,30.438859939575195\n20672,36.021297454833984\n20673,44.56956481933594\n20674,66.28429412841797\n20675,45.35857391357422\n20676,77.39004516601562\n20677,67.2975845336914\n20678,35.41144561767578\n20679,28.72553825378418\n20680,38.936073303222656\n20681,48.55802917480469\n20682,66.67186737060547\n20683,50.498931884765625\n20684,79.52276611328125\n20685,69.8868637084961\n20686,43.25410079956055\n20687,35.51378631591797\n20688,37.04126739501953\n20689,48.4335823059082\n20690,66.00436401367188\n20691,46.28266143798828\n20692,78.60431671142578\n20693,66.50865173339844\n20694,40.81752395629883\n20695,31.738391876220703\n20696,36.49055862426758\n20697,49.29682922363281\n20698,65.56608581542969\n20699,46.83056640625\n20700,77.19474792480469\n20701,66.02242279052734\n20702,37.17225646972656\n20703,31.770984649658203\n20704,39.01359939575195\n20705,50.26447296142578\n20706,65.52181243896484\n20707,50.92024230957031\n20708,76.74808502197266\n20709,62.75295639038086\n20710,33.437801361083984\n20711,30.257219314575195\n20712,40.242095947265625\n20713,50.132423400878906\n20714,64.71978759765625\n20715,52.9685173034668\n20716,74.23928833007812\n20717,69.94178771972656\n20718,35.50813293457031\n20719,28.215648651123047\n20720,36.494964599609375\n20721,46.60953903198242\n20722,61.459861755371094\n20723,47.8962516784668\n20724,73.81637573242188\n20725,65.91091918945312\n20726,38.50940704345703\n20727,30.161996841430664\n20728,36.34590148925781\n20729,48.874046325683594\n20730,62.340267181396484\n20731,47.40922164916992\n20732,75.01329040527344\n20733,62.5477294921875\n20734,37.957618713378906\n20735,35.40335464477539\n20736,36.313331604003906\n20737,49.79055404663086\n20738,55.02290344238281\n20739,48.895179748535156\n20740,63.05619812011719\n20741,67.14678192138672\n20742,43.614723205566406\n20743,31.78508758544922\n20744,43.185489654541016\n20745,53.8365592956543\n20746,65.45014953613281\n20747,52.15840148925781\n20748,80.81708526611328\n20749,65.50959777832031\n20750,38.47544479370117\n20751,29.385623931884766\n20752,41.353031158447266\n20753,48.91909408569336\n20754,67.01660919189453\n20755,50.19294738769531\n20756,77.50279235839844\n20757,66.50506591796875\n20758,39.354209899902344\n20759,32.71858215332031\n20760,38.7505989074707\n20761,51.8234977722168\n20762,66.1146240234375\n20763,50.89379119873047\n20764,75.85623931884766\n20765,62.84662628173828\n20766,37.445945739746094\n20767,29.034393310546875\n20768,36.07251739501953\n20769,43.897605895996094\n20770,59.83818435668945\n20771,43.72834396362305\n20772,72.554931640625\n20773,65.87467956542969\n20774,41.59587860107422\n20775,33.132938385009766\n20776,39.77112579345703\n20777,45.66700744628906\n20778,63.87424850463867\n20779,45.88267517089844\n20780,76.00708770751953\n20781,66.43313598632812\n20782,36.9471549987793\n20783,30.49373435974121\n20784,38.61249923706055\n20785,52.686988830566406\n20786,66.87606048583984\n20787,52.480262756347656\n20788,82.25089263916016\n20789,66.04656219482422\n20790,38.60405731201172\n20791,31.211715698242188\n20792,36.55303955078125\n20793,47.99972152709961\n20794,67.25019073486328\n20795,47.22403335571289\n20796,77.38003540039062\n20797,67.24913024902344\n20798,38.23822021484375\n20799,31.458942413330078\n20800,35.51469039916992\n20801,48.31435775756836\n20802,61.816612243652344\n20803,46.95479202270508\n20804,74.8182144165039\n20805,67.20790100097656\n20806,35.80621337890625\n20807,29.325592041015625\n20808,39.77522277832031\n20809,51.43442153930664\n20810,68.83952331542969\n20811,52.7854118347168\n20812,78.56596374511719\n20813,67.24592590332031\n20814,37.013465881347656\n20815,31.26406478881836\n20816,35.76218032836914\n20817,50.112548828125\n20818,64.95648956298828\n20819,49.24165725708008\n20820,75.3487777709961\n20821,62.99689483642578\n20822,40.0228385925293\n20823,31.808185577392578\n20824,35.497100830078125\n20825,44.61756896972656\n20826,57.69869613647461\n20827,42.813331604003906\n20828,70.40618896484375\n20829,68.60137176513672\n20830,36.410499572753906\n20831,28.312759399414062\n20832,36.73978042602539\n20833,49.90235137939453\n20834,63.90631866455078\n20835,49.53915023803711\n20836,77.34073638916016\n20837,67.14464569091797\n20838,40.097618103027344\n20839,27.50275421142578\n20840,39.20805358886719\n20841,46.055572509765625\n20842,65.85552215576172\n20843,45.91023254394531\n20844,81.53128814697266\n20845,66.27648162841797\n20846,38.4002571105957\n20847,31.65345001220703\n20848,42.1874885559082\n20849,51.73843765258789\n20850,68.23615264892578\n20851,53.145626068115234\n20852,78.33320617675781\n20853,66.46785736083984\n20854,37.13300704956055\n20855,30.346452713012695\n20856,40.57582092285156\n20857,50.26731872558594\n20858,62.74057388305664\n20859,51.65070343017578\n20860,73.34439849853516\n20861,65.22561645507812\n20862,38.65107345581055\n20863,34.905616760253906\n20864,36.24686813354492\n20865,48.63367462158203\n20866,60.179100036621094\n20867,47.934661865234375\n20868,70.83513641357422\n20869,66.45574951171875\n20870,35.70976257324219\n20871,29.18096923828125\n20872,36.67893600463867\n20873,49.06185531616211\n20874,67.71633911132812\n20875,49.355472564697266\n20876,78.5495834350586\n20877,67.67523956298828\n20878,35.348697662353516\n20879,27.888286590576172\n20880,40.4539909362793\n20881,54.643802642822266\n20882,70.16719818115234\n20883,55.40597152709961\n20884,82.7838134765625\n20885,73.8614273071289\n20886,37.96440887451172\n20887,29.47074317932129\n20888,40.64805603027344\n20889,49.87215042114258\n20890,76.60408782958984\n20891,52.16813659667969\n20892,89.63648986816406\n20893,66.85454559326172\n20894,41.18033981323242\n20895,29.900386810302734\n20896,38.40994644165039\n20897,47.64180374145508\n20898,70.01604461669922\n20899,46.49763870239258\n20900,81.18408203125\n20901,66.2307357788086\n20902,36.69404220581055\n20903,29.12735366821289\n20904,37.37710952758789\n20905,48.3384895324707\n20906,62.78230667114258\n20907,48.46576690673828\n20908,76.09186553955078\n20909,64.00611877441406\n20910,37.93473815917969\n20911,32.153865814208984\n20912,42.19542694091797\n20913,50.783287048339844\n20914,63.60907745361328\n20915,52.589744567871094\n20916,74.5296630859375\n20917,70.90802001953125\n20918,36.92066955566406\n20919,27.798765182495117\n20920,38.10954284667969\n20921,50.78993225097656\n20922,64.94336700439453\n20923,50.88561248779297\n20924,80.74649810791016\n20925,62.10285186767578\n20926,35.171775817871094\n20927,29.93288803100586\n20928,37.15996170043945\n20929,45.50303268432617\n20930,58.97322082519531\n20931,46.803768157958984\n20932,69.77677154541016\n20933,67.6072769165039\n20934,33.24040222167969\n20935,28.001651763916016\n20936,41.66291427612305\n20937,50.359134674072266\n20938,70.36256408691406\n20939,54.526737213134766\n20940,83.03958129882812\n20941,66.83628845214844\n20942,44.6636962890625\n20943,32.24013900756836\n20944,34.094871520996094\n20945,43.71799850463867\n20946,67.4918441772461\n20947,39.735008239746094\n20948,77.30350494384766\n20949,67.94389343261719\n20950,38.572715759277344\n20951,28.025375366210938\n20952,41.69884490966797\n20953,49.41148376464844\n20954,66.31505584716797\n20955,50.6977653503418\n20956,81.62700653076172\n20957,66.66849517822266\n20958,35.93817138671875\n20959,31.45604133605957\n20960,37.339683532714844\n20961,50.894535064697266\n20962,60.56916046142578\n20963,51.199031829833984\n20964,71.52467346191406\n20965,66.7631607055664\n20966,38.28635025024414\n20967,30.84361457824707\n20968,38.83871841430664\n20969,49.96660614013672\n20970,69.3959732055664\n20971,50.12863540649414\n20972,78.91702270507812\n20973,60.51801300048828\n20974,35.181026458740234\n20975,30.59807586669922\n20976,44.06892395019531\n20977,46.31471633911133\n20978,62.25961685180664\n20979,51.154762268066406\n20980,76.4301986694336\n20981,67.64356994628906\n20982,38.512481689453125\n20983,30.835193634033203\n20984,37.004032135009766\n20985,48.11399459838867\n20986,62.85143280029297\n20987,47.625606536865234\n20988,74.91313171386719\n20989,63.94093704223633\n20990,33.01878356933594\n20991,30.95481300354004\n20992,34.016353607177734\n20993,47.32685852050781\n20994,54.26686477661133\n20995,47.865108489990234\n20996,65.37075805664062\n20997,66.78642272949219\n20998,32.932403564453125\n20999,29.443166732788086\n21000,35.21137237548828\n21001,50.384403228759766\n21002,63.86842727661133\n21003,50.90430450439453\n21004,77.66421508789062\n21005,66.397216796875\n21006,37.14453887939453\n21007,34.26893997192383\n21008,32.82221603393555\n21009,49.48587417602539\n21010,60.71394729614258\n21011,47.393455505371094\n21012,70.1220474243164\n21013,67.29084014892578\n21014,39.91830825805664\n21015,31.093421936035156\n21016,38.357452392578125\n21017,49.77836608886719\n21018,67.49784851074219\n21019,48.68830871582031\n21020,81.39537811279297\n21021,67.93543243408203\n21022,37.64484786987305\n21023,29.71394157409668\n21024,37.472496032714844\n21025,45.20681381225586\n21026,68.5308837890625\n21027,46.412418365478516\n21028,80.27700805664062\n21029,67.05701446533203\n21030,39.628395080566406\n21031,31.59840965270996\n21032,38.09994125366211\n21033,41.9941291809082\n21034,62.899375915527344\n21035,43.37131118774414\n21036,79.71748352050781\n21037,68.0595703125\n21038,38.06111145019531\n21039,33.01498794555664\n21040,36.73709487915039\n21041,50.0654411315918\n21042,61.81396484375\n21043,49.43923568725586\n21044,73.19694519042969\n21045,68.78506469726562\n21046,34.42417907714844\n21047,28.581668853759766\n21048,36.540565490722656\n21049,51.95730972290039\n21050,61.59593963623047\n21051,51.988380432128906\n21052,75.24359893798828\n21053,53.35666275024414\n21054,37.7027702331543\n21055,23.194448471069336\n21056,29.57790756225586\n21057,28.596464157104492\n21058,57.53971481323242\n21059,26.9832763671875\n21060,69.73963165283203\n21061,65.9787368774414\n21062,37.61910629272461\n21063,30.51778793334961\n21064,38.2996826171875\n21065,50.16292953491211\n21066,67.96495819091797\n21067,50.066123962402344\n21068,80.34696197509766\n21069,63.45514678955078\n21070,35.96372604370117\n21071,30.199443817138672\n21072,38.79692077636719\n21073,45.597564697265625\n21074,67.61096954345703\n21075,47.88616943359375\n21076,80.7855224609375\n21077,67.47346496582031\n21078,39.135894775390625\n21079,28.02170181274414\n21080,38.15703582763672\n21081,49.46395492553711\n21082,70.8465576171875\n21083,48.5802001953125\n21084,81.19308471679688\n21085,65.23210144042969\n21086,33.16004943847656\n21087,32.53151321411133\n21088,45.8875846862793\n21089,59.232322692871094\n21090,63.91593551635742\n21091,63.15760040283203\n21092,74.03380584716797\n21093,43.991615295410156\n21094,45.027252197265625\n21095,22.01607894897461\n21096,48.95697784423828\n21097,27.54659080505371\n21098,66.40218353271484\n21099,31.07577896118164\n21100,76.66129302978516\n21101,69.25707244873047\n21102,35.8536262512207\n21103,28.584169387817383\n21104,36.84144592285156\n21105,50.353824615478516\n21106,68.5440444946289\n21107,50.495731353759766\n21108,78.58589935302734\n21109,61.19489288330078\n21110,39.13877868652344\n21111,35.417320251464844\n21112,39.34078598022461\n21113,47.97559356689453\n21114,57.54727554321289\n21115,48.3820686340332\n21116,64.82335662841797\n21117,66.90880584716797\n21118,37.9547119140625\n21119,29.496784210205078\n21120,39.5947265625\n21121,46.331512451171875\n21122,68.01399993896484\n21123,47.914913177490234\n21124,80.30553436279297\n21125,66.4179458618164\n21126,44.13963317871094\n21127,34.490516662597656\n21128,37.75114440917969\n21129,47.51507568359375\n21130,63.8366813659668\n21131,44.8706169128418\n21132,75.0730209350586\n21133,63.262874603271484\n21134,37.222129821777344\n21135,30.367366790771484\n21136,39.405853271484375\n21137,48.931434631347656\n21138,65.73836517333984\n21139,49.6606559753418\n21140,76.34202575683594\n21141,66.68436431884766\n21142,30.70376968383789\n21143,31.542573928833008\n21144,35.8963737487793\n21145,50.103675842285156\n21146,60.13248825073242\n21147,52.74290466308594\n21148,72.04432678222656\n21149,63.759132385253906\n21150,35.41632080078125\n21151,27.405244827270508\n21152,39.53105545043945\n21153,46.98191452026367\n21154,65.80587768554688\n21155,48.93773651123047\n21156,77.42394256591797\n21157,69.76512145996094\n21158,35.02733612060547\n21159,31.310047149658203\n21160,38.929039001464844\n21161,53.123714447021484\n21162,63.29778289794922\n21163,54.405582427978516\n21164,74.71975708007812\n21165,68.47859191894531\n21166,37.653282165527344\n21167,31.123960494995117\n21168,35.97298812866211\n21169,50.53920364379883\n21170,65.65926361083984\n21171,49.322200775146484\n21172,77.20115661621094\n21173,66.76655578613281\n21174,37.95993423461914\n21175,30.82001495361328\n21176,37.836238861083984\n21177,49.19103240966797\n21178,68.5278091430664\n21179,49.11427688598633\n21180,81.45453643798828\n21181,61.86476516723633\n21182,37.79754638671875\n21183,24.330419540405273\n21184,40.202510833740234\n21185,41.61820602416992\n21186,69.5616226196289\n21187,43.64619064331055\n21188,80.71189880371094\n21189,66.03207397460938\n21190,44.31203842163086\n21191,30.3798885345459\n21192,38.06962203979492\n21193,46.67353057861328\n21194,71.94642639160156\n21195,43.79386901855469\n21196,82.18016815185547\n21197,69.02580261230469\n21198,38.21637725830078\n21199,29.752403259277344\n21200,39.04280090332031\n21201,48.359981536865234\n21202,68.76632690429688\n21203,49.37141036987305\n21204,82.3338851928711\n21205,67.10047149658203\n21206,38.337581634521484\n21207,29.612199783325195\n21208,38.00118637084961\n21209,51.795562744140625\n21210,65.57624053955078\n21211,50.51130676269531\n21212,77.625732421875\n21213,65.32801055908203\n21214,37.927101135253906\n21215,32.27429962158203\n21216,37.72634506225586\n21217,47.85204315185547\n21218,61.32707595825195\n21219,48.06877899169922\n21220,72.45757293701172\n21221,66.03987121582031\n21222,36.841094970703125\n21223,27.980731964111328\n21224,37.79245376586914\n21225,51.49361801147461\n21226,65.41922760009766\n21227,50.63332748413086\n21228,78.25614166259766\n21229,66.6966552734375\n21230,37.463043212890625\n21231,28.644989013671875\n21232,38.697242736816406\n21233,49.38326644897461\n21234,64.42890167236328\n21235,49.555110931396484\n21236,77.80553436279297\n21237,69.24832916259766\n21238,39.407257080078125\n21239,27.632766723632812\n21240,37.54085922241211\n21241,46.97432327270508\n21242,64.08655548095703\n21243,46.337406158447266\n21244,78.1074447631836\n21245,65.48513793945312\n21246,35.98408508300781\n21247,27.672489166259766\n21248,39.0902099609375\n21249,45.07541275024414\n21250,63.84025192260742\n21251,47.28294372558594\n21252,78.57608032226562\n21253,67.01319122314453\n21254,37.23123550415039\n21255,29.514814376831055\n21256,37.977447509765625\n21257,48.5665168762207\n21258,67.63555908203125\n21259,49.031272888183594\n21260,78.52816009521484\n21261,50.489959716796875\n21262,39.465484619140625\n21263,22.160667419433594\n21264,39.09574890136719\n21265,34.694923400878906\n21266,61.5413932800293\n21267,35.111507415771484\n21268,70.7459487915039\n21269,69.08978271484375\n21270,42.7063102722168\n21271,32.02228546142578\n21272,42.41582107543945\n21273,53.92825698852539\n21274,74.6531753540039\n21275,52.96412658691406\n21276,88.28941345214844\n21277,69.66252899169922\n21278,37.35139083862305\n21279,32.37866973876953\n21280,38.00389862060547\n21281,52.39539337158203\n21282,61.475929260253906\n21283,52.29655075073242\n21284,74.28580474853516\n21285,69.18080139160156\n21286,40.19845199584961\n21287,28.656566619873047\n21288,42.464027404785156\n21289,48.337371826171875\n21290,62.172874450683594\n21291,49.57308578491211\n21292,76.5011215209961\n21293,68.75782775878906\n21294,38.68501663208008\n21295,27.84491729736328\n21296,39.831600189208984\n21297,48.8027458190918\n21298,68.61909484863281\n21299,49.37428283691406\n21300,81.17754364013672\n21301,66.02484893798828\n21302,36.75358963012695\n21303,31.858749389648438\n21304,36.041866302490234\n21305,51.478607177734375\n21306,64.50787353515625\n21307,50.313140869140625\n21308,78.2740478515625\n21309,64.41464233398438\n21310,34.119224548339844\n21311,28.393280029296875\n21312,41.248146057128906\n21313,51.300907135009766\n21314,61.21187210083008\n21315,53.639442443847656\n21316,72.01522827148438\n21317,63.86159133911133\n21318,39.714481353759766\n21319,25.94791603088379\n21320,31.901212692260742\n21321,40.739227294921875\n21322,57.531005859375\n21323,37.38816452026367\n21324,73.52408599853516\n21325,66.02899169921875\n21326,38.694183349609375\n21327,31.434459686279297\n21328,38.0648193359375\n21329,46.06425476074219\n21330,66.73775482177734\n21331,46.73405456542969\n21332,79.23792266845703\n21333,66.83699035644531\n21334,35.429237365722656\n21335,30.46505355834961\n21336,35.74876403808594\n21337,51.203514099121094\n21338,61.95127487182617\n21339,50.59172058105469\n21340,74.2767333984375\n21341,64.85962677001953\n21342,38.14457321166992\n21343,29.751800537109375\n21344,39.52954864501953\n21345,49.0656623840332\n21346,64.87689208984375\n21347,49.46010208129883\n21348,78.42872619628906\n21349,65.09332275390625\n21350,41.09690475463867\n21351,29.863365173339844\n21352,39.624656677246094\n21353,46.1417121887207\n21354,67.0494384765625\n21355,45.916622161865234\n21356,79.58831787109375\n21357,66.24072265625\n21358,39.70734786987305\n21359,30.887985229492188\n21360,37.3962287902832\n21361,44.327640533447266\n21362,68.67528533935547\n21363,44.59856414794922\n21364,81.86795043945312\n21365,67.13178253173828\n21366,40.614845275878906\n21367,32.47207260131836\n21368,39.766510009765625\n21369,46.43525695800781\n21370,68.16691589355469\n21371,47.187801361083984\n21372,80.2155532836914\n21373,40.509422302246094\n21374,43.33698272705078\n21375,2.012423276901245\n21376,44.47237777709961\n21377,15.963815689086914\n21378,76.35772705078125\n21379,18.010114669799805\n21380,94.32266998291016\n21381,65.33517456054688\n21382,40.466522216796875\n21383,35.344268798828125\n21384,34.815120697021484\n21385,47.73691940307617\n21386,61.29945755004883\n21387,45.70326232910156\n21388,69.3838119506836\n21389,71.54845428466797\n21390,34.95925521850586\n21391,26.570228576660156\n21392,31.82537269592285\n21393,48.38022232055664\n21394,69.82208251953125\n21395,46.87647247314453\n21396,82.30532836914062\n21397,66.15503692626953\n21398,35.49856948852539\n21399,30.814895629882812\n21400,37.26150131225586\n21401,52.224945068359375\n21402,66.46980285644531\n21403,52.20071029663086\n21404,79.33800506591797\n21405,67.65753173828125\n21406,34.35968017578125\n21407,30.058670043945312\n21408,38.38656234741211\n21409,49.130489349365234\n21410,68.20346069335938\n21411,51.361541748046875\n21412,78.4281234741211\n21413,65.34700012207031\n21414,37.7578125\n21415,31.499679565429688\n21416,37.994205474853516\n21417,46.39683151245117\n21418,62.11572265625\n21419,47.138118743896484\n21420,72.7072982788086\n21421,67.48576354980469\n21422,37.8857307434082\n21423,31.817699432373047\n21424,36.4158821105957\n21425,51.7325325012207\n21426,66.58816528320312\n21427,50.393592834472656\n21428,77.8570785522461\n21429,61.69633483886719\n21430,38.3900032043457\n21431,32.34204864501953\n21432,40.78605651855469\n21433,48.48965835571289\n21434,62.773033142089844\n21435,49.63296890258789\n21436,72.58435821533203\n21437,67.72618103027344\n21438,36.425270080566406\n21439,34.02873992919922\n21440,35.25000762939453\n21441,58.41835021972656\n21442,59.22246551513672\n21443,55.11404037475586\n21444,74.71206665039062\n21445,67.0291976928711\n21446,39.38625717163086\n21447,32.50856018066406\n21448,37.475772857666016\n21449,46.44883728027344\n21450,63.57093811035156\n21451,46.461944580078125\n21452,78.2890396118164\n21453,67.12883758544922\n21454,37.91938400268555\n21455,29.80474090576172\n21456,36.473228454589844\n21457,46.68965530395508\n21458,60.50896453857422\n21459,46.44502639770508\n21460,72.57442474365234\n21461,65.91166687011719\n21462,37.06690979003906\n21463,31.945890426635742\n21464,37.48143768310547\n21465,49.606964111328125\n21466,62.45128631591797\n21467,49.73574447631836\n21468,73.14026641845703\n21469,68.3350830078125\n21470,37.47484588623047\n21471,29.644628524780273\n21472,39.722652435302734\n21473,53.900123596191406\n21474,71.20259094238281\n21475,53.77012252807617\n21476,84.04249572753906\n21477,67.64300537109375\n21478,36.585655212402344\n21479,28.206289291381836\n21480,39.837825775146484\n21481,51.176429748535156\n21482,61.96105194091797\n21483,51.88581848144531\n21484,75.93803405761719\n21485,65.14749145507812\n21486,37.67290496826172\n21487,32.289920806884766\n21488,38.04066467285156\n21489,50.06014633178711\n21490,63.96775436401367\n21491,49.956787109375\n21492,73.80256652832031\n21493,67.08138275146484\n21494,39.568199157714844\n21495,30.21753692626953\n21496,37.333492279052734\n21497,45.733821868896484\n21498,64.6748046875\n21499,45.41896057128906\n21500,78.20826721191406\n21501,66.47041320800781\n21502,42.62733459472656\n21503,32.33687210083008\n21504,35.992374420166016\n21505,45.07255935668945\n21506,68.37821197509766\n21507,42.8309211730957\n21508,78.26608276367188\n21509,67.18755340576172\n21510,37.39024353027344\n21511,29.442119598388672\n21512,38.80299758911133\n21513,48.1265869140625\n21514,62.42398452758789\n21515,48.864444732666016\n21516,77.24146270751953\n21517,61.96381759643555\n21518,39.23303985595703\n21519,30.496234893798828\n21520,39.91899490356445\n21521,48.702064514160156\n21522,65.41495513916016\n21523,48.531734466552734\n21524,74.83865356445312\n21525,68.1890869140625\n21526,38.01068115234375\n21527,30.969745635986328\n21528,38.091548919677734\n21529,49.388763427734375\n21530,63.12934112548828\n21531,49.438758850097656\n21532,75.78942108154297\n21533,67.50989532470703\n21534,39.258949279785156\n21535,32.28010177612305\n21536,38.8837890625\n21537,50.56438446044922\n21538,61.97032165527344\n21539,50.188072204589844\n21540,72.10779571533203\n21541,66.750244140625\n21542,34.918724060058594\n21543,34.634822845458984\n21544,37.140541076660156\n21545,53.31973648071289\n21546,57.85401916503906\n21547,53.744606018066406\n21548,69.14473724365234\n21549,70.68547058105469\n21550,39.44430160522461\n21551,35.45486831665039\n21552,32.7060432434082\n21553,51.10008239746094\n21554,62.34994888305664\n21555,47.71297073364258\n21556,76.24951171875\n21557,68.03084564208984\n21558,40.26792907714844\n21559,27.802034378051758\n21560,38.0268669128418\n21561,44.202392578125\n21562,69.62458038330078\n21563,44.24635314941406\n21564,82.98558807373047\n21565,70.74832153320312\n21566,35.74693298339844\n21567,32.617713928222656\n21568,38.9754638671875\n21569,58.881622314453125\n21570,68.93869018554688\n21571,58.36637496948242\n21572,83.88030242919922\n21573,67.21636199951172\n21574,39.03337478637695\n21575,29.7712459564209\n21576,37.16465377807617\n21577,45.9019889831543\n21578,64.35902404785156\n21579,45.71273422241211\n21580,76.63825225830078\n21581,68.09550476074219\n21582,40.249610900878906\n21583,32.41640090942383\n21584,36.52617645263672\n21585,47.52497863769531\n21586,60.3773078918457\n21587,46.24715805053711\n21588,73.15343475341797\n21589,66.54524230957031\n21590,42.622581481933594\n21591,31.25297737121582\n21592,37.696800231933594\n21593,45.2511100769043\n21594,67.57125854492188\n21595,43.68040084838867\n21596,82.51021575927734\n21597,62.37009811401367\n21598,36.817535400390625\n21599,31.323930740356445\n21600,36.74349594116211\n21601,46.829402923583984\n21602,62.972320556640625\n21603,46.920310974121094\n21604,72.617919921875\n21605,64.57665252685547\n21606,37.49870300292969\n21607,28.17241859436035\n21608,41.37268829345703\n21609,49.073219299316406\n21610,67.8704605102539\n21611,50.55574035644531\n21612,81.2091064453125\n21613,66.61199951171875\n21614,36.85390090942383\n21615,28.396915435791016\n21616,35.961952209472656\n21617,48.544578552246094\n21618,65.5398941040039\n21619,47.71828079223633\n21620,77.51080322265625\n21621,72.56231689453125\n21622,32.15237808227539\n21623,33.77302551269531\n21624,33.351287841796875\n21625,58.926185607910156\n21626,62.97261428833008\n21627,57.5225715637207\n21628,79.63565826416016\n21629,66.77912139892578\n21630,36.064884185791016\n21631,29.81913948059082\n21632,37.49586868286133\n21633,48.973506927490234\n21634,59.32042694091797\n21635,49.506553649902344\n21636,72.3892593383789\n21637,63.6829948425293\n21638,42.673919677734375\n21639,28.767301559448242\n21640,30.977855682373047\n21641,35.37139129638672\n21642,58.47110366821289\n21643,31.69805908203125\n21644,74.86695098876953\n21645,64.23467254638672\n21646,37.90669250488281\n21647,28.878387451171875\n21648,39.75570297241211\n21649,45.03590393066406\n21650,68.35857391357422\n21651,46.783416748046875\n21652,78.67063903808594\n21653,65.74261474609375\n21654,38.72906494140625\n21655,30.965482711791992\n21656,35.1501350402832\n21657,45.98749542236328\n21658,62.10700988769531\n21659,44.69477081298828\n21660,73.94983673095703\n21661,68.5970687866211\n21662,37.104591369628906\n21663,29.40423583984375\n21664,38.45119094848633\n21665,51.88855743408203\n21666,67.80281829833984\n21667,51.7676887512207\n21668,79.59628295898438\n21669,80.2060775756836\n21670,45.48518753051758\n21671,45.18496322631836\n21672,38.32204818725586\n21673,62.93302536010742\n21674,73.81510925292969\n21675,58.75516128540039\n21676,88.27655029296875\n21677,64.18980407714844\n21678,33.34862518310547\n21679,31.2018985748291\n21680,35.17850875854492\n21681,44.87704849243164\n21682,56.391937255859375\n21683,46.75397872924805\n21684,67.1042251586914\n21685,67.3929214477539\n21686,38.291168212890625\n21687,30.7337589263916\n21688,38.99253845214844\n21689,50.78609085083008\n21690,64.8333740234375\n21691,50.65970230102539\n21692,77.40056610107422\n21693,68.11649322509766\n21694,36.38391876220703\n21695,31.504087448120117\n21696,39.37150192260742\n21697,50.10419464111328\n21698,68.68063354492188\n21699,51.9175910949707\n21700,80.01011657714844\n21701,70.49293518066406\n21702,39.04253005981445\n21703,28.527772903442383\n21704,35.6263313293457\n21705,45.607608795166016\n21706,70.07586669921875\n21707,45.00624084472656\n21708,82.6409683227539\n21709,66.84539031982422\n21710,39.44569778442383\n21711,26.033002853393555\n21712,39.14300537109375\n21713,49.44841384887695\n21714,66.86920928955078\n21715,48.24794006347656\n21716,81.43708038330078\n21717,65.5774154663086\n21718,37.09782409667969\n21719,28.323497772216797\n21720,38.843929290771484\n21721,47.800498962402344\n21722,66.75091552734375\n21723,48.64238739013672\n21724,78.82463073730469\n21725,66.30440521240234\n21726,34.50850296020508\n21727,32.923057556152344\n21728,39.411197662353516\n21729,57.0052490234375\n21730,63.898101806640625\n21731,57.47532272338867\n21732,74.09894561767578\n21733,61.569732666015625\n21734,41.238285064697266\n21735,32.013771057128906\n21736,37.48367691040039\n21737,40.72492980957031\n21738,62.94887924194336\n21739,40.614410400390625\n21740,73.86734008789062\n21741,62.71683883666992\n21742,40.099998474121094\n21743,24.255695343017578\n21744,36.34231185913086\n21745,39.10801315307617\n21746,70.93002319335938\n21747,38.615478515625\n21748,84.92423248291016\n21749,65.9288558959961\n21750,35.59359359741211\n21751,31.817676544189453\n21752,40.82601547241211\n21753,54.854156494140625\n21754,64.23576354980469\n21755,55.992740631103516\n21756,74.6876449584961\n21757,65.51615142822266\n21758,38.698524475097656\n21759,30.41773796081543\n21760,40.75840759277344\n21761,47.195194244384766\n21762,69.67457580566406\n21763,48.83122253417969\n21764,80.94942474365234\n21765,69.73975372314453\n21766,39.85630798339844\n21767,33.13158416748047\n21768,35.637699127197266\n21769,50.23371505737305\n21770,67.44878387451172\n21771,48.24843978881836\n21772,79.99937438964844\n21773,66.6158218383789\n21774,36.404483795166016\n21775,30.77667236328125\n21776,40.79679489135742\n21777,51.42620849609375\n21778,63.20475769042969\n21779,53.04803466796875\n21780,75.85016632080078\n21781,64.74932098388672\n21782,37.551185607910156\n21783,31.73689079284668\n21784,43.09449005126953\n21785,50.32184982299805\n21786,64.97736358642578\n21787,52.89370346069336\n21788,77.2033920288086\n21789,47.362728118896484\n21790,43.451480865478516\n21791,20.51051902770996\n21792,37.98371505737305\n21793,25.211864471435547\n21794,63.34962844848633\n21795,24.578771591186523\n21796,74.84394836425781\n21797,65.57875061035156\n21798,34.67069625854492\n21799,29.764455795288086\n21800,34.23259353637695\n21801,47.01271057128906\n21802,61.889522552490234\n21803,46.97731018066406\n21804,74.8509521484375\n21805,68.297607421875\n21806,43.07706832885742\n21807,31.552257537841797\n21808,37.7111930847168\n21809,45.361244201660156\n21810,62.8654670715332\n21811,43.53973388671875\n21812,77.34557342529297\n21813,64.83644104003906\n21814,42.56710433959961\n21815,31.662742614746094\n21816,42.43916320800781\n21817,50.04933547973633\n21818,71.40813446044922\n21819,49.52666091918945\n21820,84.93595886230469\n21821,66.6522445678711\n21822,40.861507415771484\n21823,29.695528030395508\n21824,36.44448471069336\n21825,45.4455451965332\n21826,69.63119506835938\n21827,44.0026741027832\n21828,80.07901000976562\n21829,67.87574768066406\n21830,39.35215377807617\n21831,31.899477005004883\n21832,38.51856231689453\n21833,55.160892486572266\n21834,68.92289733886719\n21835,53.11426544189453\n21836,82.47175598144531\n21837,65.52085876464844\n21838,39.445091247558594\n21839,30.65138816833496\n21840,38.553245544433594\n21841,48.3448371887207\n21842,66.91899108886719\n21843,47.818729400634766\n21844,79.65093231201172\n21845,43.14548110961914\n21846,46.03404235839844\n21847,20.845247268676758\n21848,48.631446838378906\n21849,30.107891082763672\n21850,65.40754699707031\n21851,31.71888542175293\n21852,75.6211166381836\n21853,64.78244018554688\n21854,39.15360641479492\n21855,31.828170776367188\n21856,39.551334381103516\n21857,45.31539535522461\n21858,57.9223747253418\n21859,46.431819915771484\n21860,69.1086196899414\n21861,65.54794311523438\n21862,38.75394821166992\n21863,30.29742431640625\n21864,40.27299499511719\n21865,49.7194938659668\n21866,64.15029907226562\n21867,50.078819274902344\n21868,77.00191497802734\n21869,65.63817596435547\n21870,36.103599548339844\n21871,31.218297958374023\n21872,39.15729522705078\n21873,47.81121063232422\n21874,58.99720764160156\n21875,49.644596099853516\n21876,70.66309356689453\n21877,67.98102569580078\n21878,38.52717208862305\n21879,29.40450668334961\n21880,37.98542785644531\n21881,50.353492736816406\n21882,64.65773010253906\n21883,49.4976806640625\n21884,77.86506652832031\n21885,69.40523529052734\n21886,41.58940124511719\n21887,33.452083587646484\n21888,39.80172348022461\n21889,52.86431121826172\n21890,69.7347412109375\n21891,51.29291915893555\n21892,85.32481384277344\n21893,65.68753814697266\n21894,35.61127853393555\n21895,31.026784896850586\n21896,38.38557434082031\n21897,49.574337005615234\n21898,58.34528732299805\n21899,50.746395111083984\n21900,72.41449737548828\n21901,65.457275390625\n21902,35.693878173828125\n21903,30.196374893188477\n21904,39.91095733642578\n21905,50.343414306640625\n21906,63.074249267578125\n21907,51.93850326538086\n21908,77.51081848144531\n21909,62.51973342895508\n21910,39.33052062988281\n21911,34.89625930786133\n21912,35.57915496826172\n21913,45.82585144042969\n21914,56.349708557128906\n21915,44.56845474243164\n21916,66.54278564453125\n21917,67.89151763916016\n21918,36.98009490966797\n21919,34.230159759521484\n21920,31.28662109375\n21921,49.768707275390625\n21922,61.02263641357422\n21923,46.86321258544922\n21924,71.4236068725586\n21925,68.20590209960938\n21926,42.49015808105469\n21927,34.1874885559082\n21928,37.668888092041016\n21929,50.02328109741211\n21930,66.85952758789062\n21931,47.86007308959961\n21932,76.3608627319336\n21933,68.46617126464844\n21934,41.0322380065918\n21935,29.72404670715332\n21936,37.47549057006836\n21937,48.74695587158203\n21938,68.39703369140625\n21939,46.95989227294922\n21940,79.18767547607422\n21941,64.65253448486328\n21942,38.488460540771484\n21943,29.91667366027832\n21944,39.848731994628906\n21945,49.08530044555664\n21946,66.97510528564453\n21947,49.43684387207031\n21948,78.26604461669922\n21949,65.91860961914062\n21950,40.49769973754883\n21951,31.073055267333984\n21952,35.81507110595703\n21953,47.989715576171875\n21954,69.04988861083984\n21955,45.62646484375\n21956,79.72438049316406\n21957,64.8558349609375\n21958,35.72305679321289\n21959,30.770381927490234\n21960,40.41618728637695\n21961,57.739253997802734\n21962,67.17692565917969\n21963,57.31156921386719\n21964,80.59162902832031\n21965,67.69441986083984\n21966,36.170658111572266\n21967,30.514875411987305\n21968,35.262298583984375\n21969,53.786685943603516\n21970,62.86689758300781\n21971,51.625728607177734\n21972,78.63011932373047\n21973,69.48888397216797\n21974,38.34977722167969\n21975,30.57617950439453\n21976,36.42280197143555\n21977,48.97203063964844\n21978,61.0628776550293\n21979,48.024253845214844\n21980,74.95452880859375\n21981,66.37637329101562\n21982,40.142425537109375\n21983,32.90940475463867\n21984,36.93128204345703\n21985,50.32733917236328\n21986,65.89785766601562\n21987,48.428226470947266\n21988,75.98721313476562\n21989,63.8006591796875\n21990,36.918678283691406\n21991,31.04913330078125\n21992,37.23131561279297\n21993,45.518802642822266\n21994,64.43222045898438\n21995,46.4186897277832\n21996,74.05396270751953\n21997,67.2002182006836\n21998,37.284942626953125\n21999,30.9802303314209\n22000,38.7906379699707\n22001,46.82105255126953\n22002,67.60379791259766\n22003,48.61134719848633\n22004,81.70904541015625\n22005,68.88288879394531\n22006,38.43445587158203\n22007,28.613073348999023\n22008,40.26913833618164\n22009,48.20834732055664\n22010,63.24030685424805\n22011,49.357643127441406\n22012,77.15652465820312\n22013,68.13003540039062\n22014,38.99337387084961\n22015,30.109821319580078\n22016,37.44234848022461\n22017,49.05802917480469\n22018,64.66942596435547\n22019,48.190616607666016\n22020,79.89960479736328\n22021,65.4361572265625\n22022,39.879756927490234\n22023,30.89641571044922\n22024,36.435184478759766\n22025,46.8518180847168\n22026,65.47947692871094\n22027,45.31403350830078\n22028,79.34283447265625\n22029,65.1679458618164\n22030,37.1993293762207\n22031,32.28428649902344\n22032,43.51797103881836\n22033,55.13401412963867\n22034,64.4862289428711\n22035,56.798614501953125\n22036,75.28817749023438\n22037,69.04259490966797\n22038,38.502925872802734\n22039,31.691652297973633\n22040,34.6483154296875\n22041,50.338539123535156\n22042,64.74748229980469\n22043,48.180274963378906\n22044,76.28668975830078\n22045,65.49288940429688\n22046,37.54151153564453\n22047,31.378353118896484\n22048,40.1707878112793\n22049,50.1429443359375\n22050,60.5855598449707\n22051,51.19805145263672\n22052,72.60015106201172\n22053,69.12545013427734\n22054,38.094512939453125\n22055,26.59347915649414\n22056,38.636104583740234\n22057,48.03660202026367\n22058,75.0505599975586\n22059,48.55127716064453\n22060,85.4843978881836\n22061,67.61813354492188\n22062,35.419044494628906\n22063,29.649507522583008\n22064,41.3580207824707\n22065,56.307395935058594\n22066,68.91957092285156\n22067,57.27838897705078\n22068,81.95780944824219\n22069,64.5670166015625\n22070,39.23911666870117\n22071,31.383136749267578\n22072,40.281349182128906\n22073,51.15959548950195\n22074,67.6707534790039\n22075,50.931556701660156\n22076,79.68901062011719\n22077,63.72072982788086\n22078,38.529052734375\n22079,29.262939453125\n22080,40.81612014770508\n22081,48.95976257324219\n22082,64.25468444824219\n22083,49.577911376953125\n22084,75.61492919921875\n22085,64.2037582397461\n22086,38.97648620605469\n22087,32.20746612548828\n22088,40.70375061035156\n22089,51.955596923828125\n22090,68.30937957763672\n22091,51.828243255615234\n22092,80.43984985351562\n22093,66.29436492919922\n22094,41.00541687011719\n22095,33.08591079711914\n22096,38.489871978759766\n22097,50.404693603515625\n22098,64.01509857177734\n22099,48.84423828125\n22100,75.80856323242188\n22101,67.71914672851562\n22102,36.65216064453125\n22103,30.265409469604492\n22104,39.67005920410156\n22105,48.830345153808594\n22106,67.72473907470703\n22107,50.70820236206055\n22108,79.47256469726562\n22109,67.79676055908203\n22110,40.468994140625\n22111,34.23017120361328\n22112,40.24921798706055\n22113,51.18621063232422\n22114,64.49703979492188\n22115,51.152801513671875\n22116,76.3558349609375\n22117,69.45150756835938\n22118,41.07565689086914\n22119,32.21637725830078\n22120,39.69595718383789\n22121,48.82353210449219\n22122,69.35164642333984\n22123,48.72820281982422\n22124,84.87068176269531\n22125,68.22181701660156\n22126,38.520103454589844\n22127,28.688501358032227\n22128,36.73878860473633\n22129,49.30534744262695\n22130,62.88547897338867\n22131,47.87152862548828\n22132,78.41524505615234\n22133,70.99479675292969\n22134,40.534976959228516\n22135,33.91912078857422\n22136,38.45301818847656\n22137,53.19552230834961\n22138,62.86713790893555\n22139,51.82068634033203\n22140,74.85061645507812\n22141,64.53644561767578\n22142,38.3925666809082\n22143,33.0423469543457\n22144,38.23700714111328\n22145,49.14596176147461\n22146,63.78999710083008\n22147,49.06991195678711\n22148,75.2947998046875\n22149,62.86903381347656\n22150,33.56597900390625\n22151,25.04283905029297\n22152,39.26970672607422\n22153,52.62955856323242\n22154,64.97145080566406\n22155,53.219757080078125\n22156,80.25437927246094\n22157,66.80301666259766\n22158,40.20774841308594\n22159,32.461669921875\n22160,37.415016174316406\n22161,47.821556091308594\n22162,61.43672561645508\n22163,46.82963180541992\n22164,72.7159194946289\n22165,70.82066345214844\n22166,35.549232482910156\n22167,30.856321334838867\n22168,31.399356842041016\n22169,49.317012786865234\n22170,61.53870391845703\n22171,47.333683013916016\n22172,74.42320251464844\n22173,66.175048828125\n22174,40.40574264526367\n22175,31.36332130432129\n22176,36.76819610595703\n22177,49.150482177734375\n22178,65.85527801513672\n22179,47.02534103393555\n22180,77.37041473388672\n22181,65.9065170288086\n22182,39.339698791503906\n22183,30.35017204284668\n22184,39.71378707885742\n22185,47.74735641479492\n22186,62.245689392089844\n22187,47.98240280151367\n22188,74.22535705566406\n22189,66.63666534423828\n22190,36.71144104003906\n22191,31.51412582397461\n22192,39.79128646850586\n22193,51.36235427856445\n22194,65.76241302490234\n22195,52.502586364746094\n22196,78.26394653320312\n22197,68.50630187988281\n22198,40.45311737060547\n22199,31.348657608032227\n22200,35.558921813964844\n22201,47.90200424194336\n22202,61.13546371459961\n22203,45.69136428833008\n22204,75.13146209716797\n22205,66.20260620117188\n22206,37.5614013671875\n22207,30.876590728759766\n22208,35.60913848876953\n22209,47.094783782958984\n22210,58.38640594482422\n22211,46.34918975830078\n22212,71.42788696289062\n22213,68.48546600341797\n22214,37.2492790222168\n22215,28.987180709838867\n22216,37.733848571777344\n22217,47.36436462402344\n22218,68.19403839111328\n22219,48.086143493652344\n22220,79.89739227294922\n22221,69.66751098632812\n22222,40.79921340942383\n22223,31.65771484375\n22224,36.86983871459961\n22225,49.05061721801758\n22226,71.80546569824219\n22227,47.50825500488281\n22228,84.05413055419922\n22229,67.10407257080078\n22230,35.29658889770508\n22231,32.87038040161133\n22232,37.352691650390625\n22233,48.75777816772461\n22234,65.88555145263672\n22235,50.46642303466797\n22236,76.27416229248047\n22237,67.71503448486328\n22238,35.083892822265625\n22239,26.423603057861328\n22240,36.405540466308594\n22241,51.49954605102539\n22242,66.9398422241211\n22243,50.67012023925781\n22244,82.3552017211914\n22245,67.03755187988281\n22246,35.9849739074707\n22247,31.78841209411621\n22248,41.5378532409668\n22249,50.69632339477539\n22250,65.35935974121094\n22251,53.63824462890625\n22252,78.00454711914062\n22253,65.65225982666016\n22254,37.672096252441406\n22255,27.01173210144043\n22256,39.33985137939453\n22257,50.828826904296875\n22258,69.05162048339844\n22259,50.50862121582031\n22260,81.03626251220703\n22261,65.53199768066406\n22262,37.64285659790039\n22263,34.063228607177734\n22264,37.055076599121094\n22265,51.21282958984375\n22266,60.24834442138672\n22267,50.616703033447266\n22268,70.96927642822266\n22269,64.05248260498047\n22270,35.729209899902344\n22271,29.83850860595703\n22272,36.62424850463867\n22273,46.92171096801758\n22274,62.39326858520508\n22275,47.4656867980957\n22276,74.08807373046875\n22277,64.54995727539062\n22278,35.995086669921875\n22279,30.741867065429688\n22280,40.9234504699707\n22281,51.69181442260742\n22282,64.50962829589844\n22283,53.26024627685547\n22284,74.61559295654297\n22285,62.214942932128906\n22286,38.130577087402344\n22287,31.55990982055664\n22288,39.893043518066406\n22289,47.408992767333984\n22290,59.33134078979492\n22291,48.259498596191406\n22292,71.47872924804688\n22293,62.82709884643555\n22294,36.886558532714844\n22295,30.474576950073242\n22296,41.14854049682617\n22297,47.16932678222656\n22298,66.84518432617188\n22299,49.73633575439453\n22300,78.45974731445312\n22301,45.27276611328125\n22302,45.322872161865234\n22303,20.727645874023438\n22304,42.47893142700195\n22305,28.26477813720703\n22306,64.91825866699219\n22307,27.907962799072266\n22308,73.16248321533203\n22309,67.85114288330078\n22310,41.91815185546875\n22311,32.76563262939453\n22312,39.685115814208984\n22313,43.55156326293945\n22314,64.78764343261719\n22315,44.28083038330078\n22316,81.7769546508789\n22317,65.59746551513672\n22318,36.24652099609375\n22319,29.84616470336914\n22320,36.2761344909668\n22321,47.62234115600586\n22322,61.148231506347656\n22323,47.70659637451172\n22324,72.69727325439453\n22325,73.05697631835938\n22326,28.718074798583984\n22327,29.68305778503418\n22328,31.12452507019043\n22329,52.22757339477539\n22330,62.142765045166016\n22331,53.20362854003906\n22332,75.86195373535156\n22333,61.968421936035156\n22334,40.46958923339844\n22335,33.69898986816406\n22336,42.11821746826172\n22337,47.517601013183594\n22338,61.13249969482422\n22339,48.67649459838867\n22340,71.17560577392578\n22341,64.88111114501953\n22342,31.83016014099121\n22343,27.52292251586914\n22344,40.248138427734375\n22345,51.291351318359375\n22346,68.47508239746094\n22347,54.583072662353516\n22348,80.33460235595703\n22349,63.8875846862793\n22350,36.9764404296875\n22351,30.264747619628906\n22352,36.75474548339844\n22353,46.17920684814453\n22354,65.58118438720703\n22355,46.512516021728516\n22356,77.696044921875\n22357,66.26063537597656\n22358,35.132293701171875\n22359,28.433992385864258\n22360,44.020896911621094\n22361,54.18732452392578\n22362,64.6410903930664\n22363,56.91016387939453\n22364,77.17475891113281\n22365,67.71253204345703\n22366,39.17448043823242\n22367,30.719512939453125\n22368,38.83964157104492\n22369,49.23713302612305\n22370,68.96475982666016\n22371,49.23052978515625\n22372,80.2812271118164\n22373,69.374755859375\n22374,34.735572814941406\n22375,29.300111770629883\n22376,42.299896240234375\n22377,53.27712631225586\n22378,72.53857421875\n22379,56.49878692626953\n22380,85.59127807617188\n22381,66.369873046875\n22382,36.81040954589844\n22383,35.21367263793945\n22384,38.07513427734375\n22385,49.026695251464844\n22386,60.80862808227539\n22387,50.33363342285156\n22388,73.33424377441406\n22389,64.93173217773438\n22390,38.09796905517578\n22391,27.924697875976562\n22392,38.32806396484375\n22393,44.75674819946289\n22394,65.3550796508789\n22395,45.529136657714844\n22396,78.04483795166016\n22397,49.386390686035156\n22398,40.807186126708984\n22399,21.580820083618164\n22400,41.792633056640625\n22401,34.654266357421875\n22402,58.39756393432617\n22403,35.24645233154297\n22404,69.68953704833984\n22405,64.0794677734375\n22406,30.709806442260742\n22407,31.57419776916504\n22408,40.907901763916016\n22409,57.175079345703125\n22410,58.990684509277344\n22411,59.92964553833008\n22412,70.16570281982422\n22413,63.00300216674805\n22414,33.13999938964844\n22415,27.08720588684082\n22416,39.67932891845703\n22417,45.049652099609375\n22418,62.19010925292969\n22419,48.72612380981445\n22420,75.38220977783203\n22421,66.76517486572266\n22422,33.329166412353516\n22423,28.177396774291992\n22424,41.130714416503906\n22425,57.78480911254883\n22426,68.3783187866211\n22427,58.95972442626953\n22428,80.61190795898438\n22429,65.17889404296875\n22430,36.216705322265625\n22431,31.635772705078125\n22432,36.251312255859375\n22433,47.75191116333008\n22434,64.55145263671875\n22435,48.03639221191406\n22436,75.12145233154297\n22437,61.78681182861328\n22438,33.520198822021484\n22439,31.73589515686035\n22440,42.70027160644531\n22441,51.671024322509766\n22442,62.215553283691406\n22443,55.357330322265625\n22444,70.89964294433594\n22445,65.86949157714844\n22446,38.469207763671875\n22447,30.68431282043457\n22448,38.126285552978516\n22449,48.19003677368164\n22450,67.80380249023438\n22451,48.27387619018555\n22452,77.7774887084961\n22453,70.01130676269531\n22454,43.81694793701172\n22455,30.895837783813477\n22456,38.557132720947266\n22457,49.94189453125\n22458,71.3354263305664\n22459,47.20109558105469\n22460,85.17620086669922\n22461,61.75190734863281\n22462,38.34633255004883\n22463,30.08544921875\n22464,41.986515045166016\n22465,43.75259017944336\n22466,67.01620483398438\n22467,46.68861389160156\n22468,78.50352478027344\n22469,68.62141418457031\n22470,33.95595169067383\n22471,31.690519332885742\n22472,36.37770080566406\n22473,50.43020248413086\n22474,68.9014663696289\n22475,51.94306564331055\n22476,81.2206039428711\n22477,63.08070755004883\n22478,40.17273712158203\n22479,31.431032180786133\n22480,42.9477653503418\n22481,56.13471603393555\n22482,70.28006744384766\n22483,54.68026351928711\n22484,86.28242492675781\n22485,61.490718841552734\n22486,41.94384002685547\n22487,34.26115036010742\n22488,42.105648040771484\n22489,44.64031219482422\n22490,63.823699951171875\n22491,45.91315460205078\n22492,74.74111938476562\n22493,61.61061477661133\n22494,35.727699279785156\n22495,29.94384002685547\n22496,39.3249397277832\n22497,48.29435729980469\n22498,60.807552337646484\n22499,49.69055938720703\n22500,71.26934051513672\n22501,67.86734771728516\n22502,30.8995304107666\n22503,27.73556900024414\n22504,32.448646545410156\n22505,48.64216232299805\n22506,63.20071792602539\n22507,49.128807067871094\n22508,77.58112335205078\n22509,42.190120697021484\n22510,47.09579086303711\n22511,17.345003128051758\n22512,53.398887634277344\n22513,29.7403507232666\n22514,72.24144744873047\n22515,32.54474639892578\n22516,82.48892974853516\n22517,64.20719146728516\n22518,44.538883209228516\n22519,30.054962158203125\n22520,35.26372528076172\n22521,43.60164260864258\n22522,70.85826110839844\n22523,39.466819763183594\n22524,82.70018768310547\n22525,67.0108871459961\n22526,34.90460968017578\n22527,30.414039611816406\n22528,39.74468994140625\n22529,48.34627151489258\n22530,65.1973648071289\n22531,51.2846794128418\n22532,79.21796417236328\n22533,66.82719421386719\n22534,38.30113983154297\n22535,29.586191177368164\n22536,38.95182800292969\n22537,49.24022674560547\n22538,67.69306945800781\n22539,49.37971878051758\n22540,79.60342407226562\n22541,65.89517211914062\n22542,35.63499069213867\n22543,30.122238159179688\n22544,37.061195373535156\n22545,47.53950881958008\n22546,64.07647705078125\n22547,48.50529479980469\n22548,75.57417297363281\n22549,66.53423309326172\n22550,38.80097579956055\n22551,32.051971435546875\n22552,36.15948486328125\n22553,49.721946716308594\n22554,61.26225280761719\n22555,48.05546569824219\n22556,74.73331451416016\n22557,65.21214294433594\n22558,37.04015350341797\n22559,30.909486770629883\n22560,34.522525787353516\n22561,45.48698043823242\n22562,63.21630096435547\n22563,44.958702087402344\n22564,73.7972183227539\n22565,64.38833618164062\n22566,38.75984191894531\n22567,29.875911712646484\n22568,38.60381317138672\n22569,45.42878341674805\n22570,69.50102233886719\n22571,46.07487487792969\n22572,82.98515319824219\n22573,65.97490692138672\n22574,34.303260803222656\n22575,29.87173080444336\n22576,40.115867614746094\n22577,51.15623474121094\n22578,65.07974243164062\n22579,53.372318267822266\n22580,75.50992584228516\n22581,65.79435729980469\n22582,38.25007629394531\n22583,27.264192581176758\n22584,37.5559196472168\n22585,47.08040237426758\n22586,66.04310607910156\n22587,46.590641021728516\n22588,77.473388671875\n22589,64.61662292480469\n22590,36.059364318847656\n22591,31.423009872436523\n22592,39.87150955200195\n22593,52.983673095703125\n22594,62.39190673828125\n22595,53.67009353637695\n22596,75.04417419433594\n22597,67.44184112548828\n22598,37.03962707519531\n22599,29.257200241088867\n22600,36.828433990478516\n22601,45.96292495727539\n22602,68.43570709228516\n22603,46.726600646972656\n22604,80.16221618652344\n22605,67.22650909423828\n22606,37.04612350463867\n22607,32.65043258666992\n22608,38.65363693237305\n22609,51.934932708740234\n22610,63.66290283203125\n22611,52.25918197631836\n22612,74.16903686523438\n22613,69.67105102539062\n22614,41.73002243041992\n22615,30.907411575317383\n22616,33.800655364990234\n22617,42.73485565185547\n22618,69.44336700439453\n22619,40.767852783203125\n22620,81.71277618408203\n22621,68.21372985839844\n22622,37.707664489746094\n22623,27.53997230529785\n22624,37.72124099731445\n22625,48.21155548095703\n22626,67.0772476196289\n22627,48.0655403137207\n22628,80.09725189208984\n22629,66.91481018066406\n22630,37.67121887207031\n22631,29.32748031616211\n22632,38.116172790527344\n22633,48.476959228515625\n22634,62.955989837646484\n22635,48.650272369384766\n22636,74.8967514038086\n22637,64.5043716430664\n22638,37.698143005371094\n22639,30.80483627319336\n22640,37.528953552246094\n22641,46.03221130371094\n22642,62.79658508300781\n22643,46.54006576538086\n22644,73.1504898071289\n22645,66.3782730102539\n22646,38.00585174560547\n22647,29.781909942626953\n22648,40.17377853393555\n22649,49.7723388671875\n22650,70.12527465820312\n22651,50.764732360839844\n22652,80.43247985839844\n22653,67.2084732055664\n22654,37.35637664794922\n22655,30.201440811157227\n22656,39.19586181640625\n22657,46.80668258666992\n22658,67.27374267578125\n22659,48.580020904541016\n22660,79.61270141601562\n22661,69.41488647460938\n22662,38.10590362548828\n22663,28.834306716918945\n22664,38.178489685058594\n22665,48.709991455078125\n22666,71.89701843261719\n22667,49.09843826293945\n22668,84.40038299560547\n22669,66.85651397705078\n22670,37.721778869628906\n22671,30.945606231689453\n22672,39.459007263183594\n22673,51.211204528808594\n22674,66.74984741210938\n22675,51.49403381347656\n22676,78.8979721069336\n22677,66.56866455078125\n22678,37.66294860839844\n22679,30.429401397705078\n22680,39.989898681640625\n22681,47.88594436645508\n22682,62.93924331665039\n22683,49.32731628417969\n22684,73.7095718383789\n22685,61.8580436706543\n22686,41.9483757019043\n22687,32.59331512451172\n22688,41.93443298339844\n22689,43.130428314208984\n22690,65.23204803466797\n22691,44.5423469543457\n22692,77.21632385253906\n22693,66.3304214477539\n22694,35.47126007080078\n22695,30.91737174987793\n22696,36.75624084472656\n22697,49.30073165893555\n22698,66.87628936767578\n22699,49.922298431396484\n22700,77.61380004882812\n22701,68.1556396484375\n22702,38.14566421508789\n22703,29.59330940246582\n22704,38.94864273071289\n22705,50.469390869140625\n22706,70.3419418334961\n22707,50.50197219848633\n22708,81.34730529785156\n22709,65.71802520751953\n22710,39.726219177246094\n22711,31.127765655517578\n22712,37.13357162475586\n22713,45.445560455322266\n22714,66.2938003540039\n22715,45.044334411621094\n22716,79.28568267822266\n22717,64.67301177978516\n22718,38.704471588134766\n22719,31.007251739501953\n22720,35.34237289428711\n22721,46.26244354248047\n22722,63.43980026245117\n22723,44.902687072753906\n22724,75.73162078857422\n22725,64.97344207763672\n22726,37.549102783203125\n22727,33.539188385009766\n22728,40.19593048095703\n22729,44.7385139465332\n22730,63.34499740600586\n22731,47.79550552368164\n22732,77.53788757324219\n22733,46.838645935058594\n22734,41.575599670410156\n22735,23.483402252197266\n22736,43.35400390625\n22737,35.485252380371094\n22738,63.39992141723633\n22739,36.32231140136719\n22740,69.17530822753906\n22741,66.15648651123047\n22742,38.246551513671875\n22743,27.408823013305664\n22744,37.751953125\n22745,43.174137115478516\n22746,70.93515014648438\n22747,44.2518310546875\n22748,81.80497741699219\n22749,63.964263916015625\n22750,37.169761657714844\n22751,30.3109130859375\n22752,39.601749420166016\n22753,48.8232421875\n22754,62.043670654296875\n22755,49.71873092651367\n22756,74.92747497558594\n22757,63.554744720458984\n22758,38.55155563354492\n22759,29.604408264160156\n22760,37.55845642089844\n22761,43.43062973022461\n22762,62.420841217041016\n22763,43.820125579833984\n22764,74.54735565185547\n22765,65.09928894042969\n22766,37.37933349609375\n22767,32.52175521850586\n22768,37.600013732910156\n22769,47.56500244140625\n22770,63.829288482666016\n22771,48.23771667480469\n22772,74.47562408447266\n22773,64.10075378417969\n22774,37.52213668823242\n22775,28.61284065246582\n22776,42.381649017333984\n22777,46.88116455078125\n22778,71.07704162597656\n22779,49.734840393066406\n22780,83.07623291015625\n22781,64.69927215576172\n22782,33.66144943237305\n22783,27.79341697692871\n22784,40.381351470947266\n22785,48.66633224487305\n22786,64.4776382446289\n22787,51.71989822387695\n22788,76.68045806884766\n22789,64.3947982788086\n22790,36.10658645629883\n22791,29.627168655395508\n22792,40.94196701049805\n22793,49.16482162475586\n22794,61.28880310058594\n22795,51.18815231323242\n22796,76.08114624023438\n22797,66.87702178955078\n22798,37.50270080566406\n22799,30.7717342376709\n22800,37.12149429321289\n22801,50.07971954345703\n22802,68.9765853881836\n22803,49.59223175048828\n22804,84.91575622558594\n22805,66.12313842773438\n22806,36.7623405456543\n22807,27.332950592041016\n22808,39.28080749511719\n22809,47.34743881225586\n22810,73.459716796875\n22811,48.87217330932617\n22812,85.32343292236328\n22813,67.19010925292969\n22814,42.122039794921875\n22815,28.544870376586914\n22816,39.22954559326172\n22817,46.07597732543945\n22818,66.79536437988281\n22819,44.95112609863281\n22820,82.11229705810547\n22821,67.08409118652344\n22822,36.69694137573242\n22823,31.33761215209961\n22824,36.138084411621094\n22825,49.305938720703125\n22826,63.502899169921875\n22827,49.08601760864258\n22828,75.39923858642578\n22829,66.16973876953125\n22830,38.32331848144531\n22831,31.980422973632812\n22832,36.40669631958008\n22833,53.876502990722656\n22834,67.50001525878906\n22835,51.27925491333008\n22836,78.93721008300781\n22837,63.49393081665039\n22838,38.21670150756836\n22839,29.94815444946289\n22840,40.49038314819336\n22841,48.33283615112305\n22842,65.91841888427734\n22843,49.32098388671875\n22844,75.42137145996094\n22845,66.87702178955078\n22846,37.50270080566406\n22847,30.7717342376709\n22848,37.12149429321289\n22849,50.07971954345703\n22850,68.9765853881836\n22851,49.59223175048828\n22852,84.91575622558594\n22853,66.7095718383789\n22854,38.49485778808594\n22855,29.38918113708496\n22856,35.875343322753906\n22857,41.48374557495117\n22858,61.422889709472656\n22859,41.94602584838867\n22860,75.31248474121094\n22861,66.29322814941406\n22862,37.83030700683594\n22863,30.122482299804688\n22864,39.68405532836914\n22865,49.76960372924805\n22866,68.4261474609375\n22867,50.51594161987305\n22868,78.33568572998047\n22869,65.3490219116211\n22870,38.40505599975586\n22871,31.585119247436523\n22872,38.8057861328125\n22873,49.53163146972656\n22874,66.9730224609375\n22875,49.59825134277344\n22876,77.91902923583984\n22877,66.95256805419922\n22878,39.40802001953125\n22879,34.5068473815918\n22880,35.60272979736328\n22881,53.128807067871094\n22882,64.37711334228516\n22883,50.25726318359375\n22884,74.86991882324219\n22885,64.03656768798828\n22886,37.9201545715332\n22887,31.198705673217773\n22888,39.549171447753906\n22889,46.977596282958984\n22890,62.851261138916016\n22891,48.23467254638672\n22892,75.47511291503906\n22893,69.20895385742188\n22894,36.33018493652344\n22895,31.790302276611328\n22896,36.69427490234375\n22897,54.6240348815918\n22898,68.154052734375\n22899,53.42424011230469\n22900,78.84528350830078\n22901,66.75201416015625\n22902,38.59321594238281\n22903,30.598703384399414\n22904,39.05814743041992\n22905,52.76940155029297\n22906,65.7513656616211\n22907,51.745323181152344\n22908,78.79125213623047\n22909,67.47553253173828\n22910,37.22452926635742\n22911,29.347414016723633\n22912,38.75419616699219\n22913,49.02766799926758\n22914,64.81096649169922\n22915,49.632816314697266\n22916,78.52706909179688\n22917,67.78089141845703\n22918,40.279632568359375\n22919,29.190471649169922\n22920,36.67128372192383\n22921,50.307132720947266\n22922,72.30155944824219\n22923,47.766685485839844\n22924,84.21851348876953\n22925,65.67577362060547\n22926,33.10888671875\n22927,33.992000579833984\n22928,40.599422454833984\n22929,58.84269332885742\n22930,57.24407196044922\n22931,60.303199768066406\n22932,70.23123168945312\n22933,67.98616790771484\n22934,36.89765167236328\n22935,29.332725524902344\n22936,37.08049011230469\n22937,46.577396392822266\n22938,63.097171783447266\n22939,47.3458366394043\n22940,76.88279724121094\n22941,66.09451293945312\n22942,36.94485092163086\n22943,28.741201400756836\n22944,41.387451171875\n22945,50.58139419555664\n22946,63.88127899169922\n22947,52.13896560668945\n22948,76.31903076171875\n22949,66.96742248535156\n22950,33.98665237426758\n22951,26.978179931640625\n22952,38.59502410888672\n22953,49.18891906738281\n22954,68.039794921875\n22955,51.074337005615234\n22956,78.46439361572266\n22957,65.59341430664062\n22958,38.788917541503906\n22959,29.738367080688477\n22960,38.68783187866211\n22961,47.482017517089844\n22962,62.99889373779297\n22963,47.53825378417969\n22964,73.65410614013672\n22965,67.869140625\n22966,37.66758346557617\n22967,32.560760498046875\n22968,34.20174789428711\n22969,47.157066345214844\n22970,60.44660568237305\n22971,46.08274459838867\n22972,72.00408172607422\n22973,64.52906036376953\n22974,39.063560485839844\n22975,31.625452041625977\n22976,34.72157669067383\n22977,38.55219268798828\n22978,66.43943786621094\n22979,39.29970932006836\n22980,79.6511459350586\n22981,70.2947769165039\n22982,36.27653884887695\n22983,32.72007369995117\n22984,31.510723114013672\n22985,49.54765319824219\n22986,66.02210998535156\n22987,47.566802978515625\n22988,76.11144256591797\n22989,68.38399505615234\n22990,43.460716247558594\n22991,32.36547088623047\n22992,39.439273834228516\n22993,47.63780975341797\n22994,69.15916442871094\n22995,46.29641342163086\n22996,81.81722259521484\n22997,66.5831069946289\n22998,37.2917366027832\n22999,32.58826446533203\n23000,38.509700775146484\n23001,51.48234939575195\n23002,67.78929138183594\n23003,51.78117370605469\n23004,79.77782440185547\n23005,68.3738021850586\n23006,36.906002044677734\n23007,30.249608993530273\n23008,35.1986083984375\n23009,50.58082962036133\n23010,65.59255981445312\n23011,49.13862991333008\n23012,78.80828094482422\n23013,67.54364776611328\n23014,37.61723327636719\n23015,30.33185577392578\n23016,40.771202087402344\n23017,51.36852264404297\n23018,65.82830047607422\n23019,52.461578369140625\n23020,77.45134735107422\n23021,67.98524475097656\n23022,34.14433670043945\n23023,26.829269409179688\n23024,36.53440475463867\n23025,48.40027618408203\n23026,63.86427307128906\n23027,49.36106491088867\n23028,77.31207275390625\n23029,68.32749938964844\n23030,38.200416564941406\n23031,27.299537658691406\n23032,35.453887939453125\n23033,45.98563766479492\n23034,68.90733337402344\n23035,45.11626434326172\n23036,81.86653900146484\n23037,65.1921615600586\n23038,35.445438385009766\n23039,29.198795318603516\n23040,37.993961334228516\n23041,46.59840393066406\n23042,63.8997688293457\n23043,48.3078498840332\n23044,75.60321044921875\n23045,66.24794006347656\n23046,32.35538864135742\n23047,27.301177978515625\n23048,36.60090255737305\n23049,47.55934143066406\n23050,63.89922332763672\n23051,49.72163772583008\n23052,78.05776977539062\n23053,65.31275939941406\n23054,35.05475997924805\n23055,31.187440872192383\n23056,38.75664520263672\n23057,49.770484924316406\n23058,62.5849494934082\n23059,51.41062927246094\n23060,74.08350372314453\n23061,69.2579116821289\n23062,34.401512145996094\n23063,27.416698455810547\n23064,34.54695129394531\n23065,48.6710319519043\n23066,62.978572845458984\n23067,48.479347229003906\n23068,78.83787536621094\n23069,66.1751708984375\n23070,41.29179382324219\n23071,32.85853576660156\n23072,37.53060531616211\n23073,44.363468170166016\n23074,63.260257720947266\n23075,43.90609359741211\n23076,74.24339294433594\n23077,66.61610412597656\n23078,39.98640441894531\n23079,30.653057098388672\n23080,39.57302474975586\n23081,47.54415512084961\n23082,68.25975799560547\n23083,47.77061462402344\n23084,80.14815521240234\n23085,70.01844787597656\n23086,40.31064224243164\n23087,29.351396560668945\n23088,37.599639892578125\n23089,49.49930191040039\n23090,68.9725341796875\n23091,47.96677780151367\n23092,83.62388610839844\n23093,67.61370849609375\n23094,34.6456413269043\n23095,27.211393356323242\n23096,38.58378219604492\n23097,49.45649337768555\n23098,67.17695617675781\n23099,51.13400650024414\n23100,82.52842712402344\n23101,65.68589782714844\n23102,37.420692443847656\n23103,28.129173278808594\n23104,36.738101959228516\n23105,47.31053161621094\n23106,67.39225006103516\n23107,46.8775520324707\n23108,78.94403076171875\n23109,68.30868530273438\n23110,33.770912170410156\n23111,30.05890655517578\n23112,45.431304931640625\n23113,59.70286560058594\n23114,68.08858489990234\n23115,62.89541244506836\n23116,80.47523498535156\n23117,65.44927978515625\n23118,34.96257781982422\n23119,32.67606735229492\n23120,38.076480865478516\n23121,52.864990234375\n23122,62.474788665771484\n23123,53.51581954956055\n23124,74.64730072021484\n23125,65.80848693847656\n23126,37.56207275390625\n23127,32.41950607299805\n23128,39.439170837402344\n23129,49.88726806640625\n23130,59.999908447265625\n23131,50.679443359375\n23132,74.0921859741211\n23133,67.12701416015625\n23134,38.28963851928711\n23135,31.062938690185547\n23136,38.27585220336914\n23137,49.552268981933594\n23138,68.33837890625\n23139,49.554229736328125\n23140,77.6534194946289\n23141,68.0160140991211\n23142,35.81536865234375\n23143,28.51209831237793\n23144,39.711669921875\n23145,52.28605651855469\n23146,70.43599700927734\n23147,53.24843215942383\n23148,81.10200500488281\n23149,69.25259399414062\n23150,42.56694030761719\n23151,33.43195343017578\n23152,37.98637390136719\n23153,45.166770935058594\n23154,68.8833236694336\n23155,44.638885498046875\n23156,79.37234497070312\n23157,68.14852905273438\n23158,36.43988800048828\n23159,29.687244415283203\n23160,33.38703918457031\n23161,47.18323516845703\n23162,68.399658203125\n23163,46.10307693481445\n23164,79.18467712402344\n23165,64.7532730102539\n23166,36.75310516357422\n23167,31.767187118530273\n23168,39.63813018798828\n23169,47.879276275634766\n23170,62.64445877075195\n23171,49.737953186035156\n23172,74.02156829833984\n23173,66.49373626708984\n23174,36.8704948425293\n23175,29.760862350463867\n23176,36.82255172729492\n23177,46.13028335571289\n23178,62.759464263916016\n23179,46.70695877075195\n23180,74.1525650024414\n23181,66.53114318847656\n23182,37.487205505371094\n23183,29.875192642211914\n23184,36.916114807128906\n23185,50.23173141479492\n23186,66.54965209960938\n23187,49.309696197509766\n23188,78.94466400146484\n23189,66.40081024169922\n23190,35.363372802734375\n23191,27.32365608215332\n23192,36.91804504394531\n23193,53.22441482543945\n23194,68.32905578613281\n23195,52.12700653076172\n23196,82.59577941894531\n23197,64.84149169921875\n23198,35.66822814941406\n23199,29.536970138549805\n23200,41.18252944946289\n23201,49.9412841796875\n23202,68.34524536132812\n23203,52.38262176513672\n23204,79.65119934082031\n23205,64.24586486816406\n23206,34.820533752441406\n23207,30.406049728393555\n23208,39.68013000488281\n23209,49.08242416381836\n23210,64.322021484375\n23211,51.29937744140625\n23212,73.5976791381836\n23213,58.32949447631836\n23214,33.043792724609375\n23215,28.88448143005371\n23216,42.184532165527344\n23217,46.80086135864258\n23218,62.12965393066406\n23219,51.19954299926758\n23220,73.84444427490234\n23221,68.09095001220703\n23222,38.52705001831055\n23223,30.079044342041016\n23224,38.041046142578125\n23225,49.258995056152344\n23226,67.86558532714844\n23227,49.14109420776367\n23228,79.515869140625\n23229,67.41863250732422\n23230,36.789024353027344\n23231,29.23365020751953\n23232,42.33538055419922\n23233,51.45985794067383\n23234,65.18950653076172\n23235,53.51606369018555\n23236,76.40499877929688\n23237,66.35031127929688\n23238,37.54157638549805\n23239,31.032310485839844\n23240,38.7789192199707\n23241,50.06462860107422\n23242,63.29066467285156\n23243,50.368595123291016\n23244,75.60352325439453\n23245,69.2292709350586\n23246,38.23921203613281\n23247,31.475723266601562\n23248,36.097137451171875\n23249,44.338134765625\n23250,68.62804412841797\n23251,45.20037078857422\n23252,81.05207824707031\n23253,66.96876525878906\n23254,41.35074234008789\n23255,31.269311904907227\n23256,37.7624397277832\n23257,52.0974235534668\n23258,68.37015533447266\n23259,49.17595672607422\n23260,80.38645935058594\n23261,63.75545120239258\n23262,37.92256546020508\n23263,33.89561462402344\n23264,43.42805480957031\n23265,50.89011001586914\n23266,65.37755584716797\n23267,53.49304962158203\n23268,76.73390197753906\n23269,65.71284484863281\n23270,35.74557876586914\n23271,31.494245529174805\n23272,34.754539489746094\n23273,43.82179641723633\n23274,64.67401885986328\n23275,44.94302749633789\n23276,74.79293823242188\n23277,64.89967346191406\n23278,34.45177459716797\n23279,28.997831344604492\n23280,38.120819091796875\n23281,46.75616455078125\n23282,61.66386032104492\n23283,48.93088912963867\n23284,73.81233978271484\n23285,59.80337905883789\n23286,33.952091217041016\n23287,31.854888916015625\n23288,43.436519622802734\n23289,48.624168395996094\n23290,62.08184814453125\n23291,53.2390251159668\n23292,71.37501525878906\n23293,63.84259033203125\n23294,39.370784759521484\n23295,32.62232208251953\n23296,41.4844970703125\n23297,48.08906936645508\n23298,64.92212677001953\n23299,49.49106979370117\n23300,76.02408599853516\n23301,66.82476806640625\n23302,39.04278564453125\n23303,30.608800888061523\n23304,37.812137603759766\n23305,46.89215087890625\n23306,66.18013000488281\n23307,46.88200759887695\n23308,78.9192886352539\n23309,67.97669982910156\n23310,37.98723220825195\n23311,29.49367332458496\n23312,34.216434478759766\n23313,46.6917610168457\n23314,64.87593841552734\n23315,45.18925476074219\n23316,78.36742401123047\n23317,67.5265121459961\n23318,34.2345085144043\n23319,30.52128791809082\n23320,36.175559997558594\n23321,51.47494125366211\n23322,61.96511459350586\n23323,51.76436996459961\n23324,73.12582397460938\n23325,68.0816421508789\n23326,41.90373611450195\n23327,33.24280548095703\n23328,35.27260971069336\n23329,51.92124557495117\n23330,67.58155822753906\n23331,47.6673583984375\n23332,81.24867248535156\n23333,67.26802062988281\n23334,33.32534408569336\n23335,31.714134216308594\n23336,36.89788818359375\n23337,52.68915557861328\n23338,55.73467254638672\n23339,53.61705780029297\n23340,67.6549072265625\n23341,68.52398681640625\n23342,37.052310943603516\n23343,27.060985565185547\n23344,41.05790710449219\n23345,48.609825134277344\n23346,68.58927917480469\n23347,50.52522277832031\n23348,80.93388366699219\n23349,66.7267074584961\n23350,38.94068908691406\n23351,32.8821907043457\n23352,37.89265823364258\n23353,50.79591369628906\n23354,66.25657653808594\n23355,50.01712417602539\n23356,77.08519744873047\n23357,63.03593063354492\n23358,38.33330535888672\n23359,31.07304573059082\n23360,38.621768951416016\n23361,45.45736312866211\n23362,63.65458679199219\n23363,46.24905014038086\n23364,74.03997039794922\n23365,73.02411651611328\n23366,41.7076530456543\n23367,35.12896728515625\n23368,33.19290542602539\n23369,43.18024826049805\n23370,68.61990356445312\n23371,42.06612777709961\n23372,82.6275405883789\n23373,68.7174072265625\n23374,30.974288940429688\n23375,27.161766052246094\n23376,37.91764831542969\n23377,53.22127151489258\n23378,62.59901428222656\n23379,55.22808074951172\n23380,76.24424743652344\n23381,71.36238098144531\n23382,40.735374450683594\n23383,32.37609100341797\n23384,35.74467849731445\n23385,48.62434005737305\n23386,67.98694610595703\n23387,46.86945343017578\n23388,81.48823547363281\n23389,68.0698013305664\n23390,37.35470199584961\n23391,27.75883674621582\n23392,38.96595001220703\n23393,45.40425109863281\n23394,67.37931060791016\n23395,47.05912399291992\n23396,79.3204574584961\n23397,68.3788833618164\n23398,35.387245178222656\n23399,32.7937126159668\n23400,30.35691261291504\n23401,47.0613899230957\n23402,59.5443229675293\n23403,45.41804122924805\n23404,69.6732406616211\n23405,65.98065948486328\n23406,36.540550231933594\n23407,28.91322898864746\n23408,40.55747985839844\n23409,50.41928482055664\n23410,68.09088897705078\n23411,51.93988037109375\n23412,78.69192504882812\n23413,66.75711059570312\n23414,36.33836364746094\n23415,28.978670120239258\n23416,40.42667007446289\n23417,52.52878189086914\n23418,65.21597290039062\n23419,53.38035583496094\n23420,76.67742156982422\n23421,69.48670959472656\n23422,46.11210250854492\n23423,32.59850311279297\n23424,35.99663162231445\n23425,43.9779052734375\n23426,67.96874237060547\n23427,40.42621612548828\n23428,82.05287170410156\n23429,65.89639282226562\n23430,38.01791763305664\n23431,29.85776138305664\n23432,40.5865364074707\n23433,48.36397933959961\n23434,69.08119201660156\n23435,49.84828567504883\n23436,80.45260620117188\n23437,64.18324279785156\n23438,36.929542541503906\n23439,33.100318908691406\n23440,36.222023010253906\n23441,49.2262077331543\n23442,60.16697692871094\n23443,48.79318618774414\n23444,69.18277740478516\n23445,43.94806671142578\n23446,39.19565963745117\n23447,20.514312744140625\n23448,39.31044387817383\n23449,27.92090606689453\n23450,53.57339859008789\n23451,29.025243759155273\n23452,63.84623718261719\n23453,66.59388732910156\n23454,37.57616424560547\n23455,29.08230209350586\n23456,41.373775482177734\n23457,49.967769622802734\n23458,67.86659240722656\n23459,51.59334945678711\n23460,82.19113159179688\n23461,65.47834777832031\n23462,36.681514739990234\n23463,31.8800048828125\n23464,38.03841018676758\n23465,46.49245071411133\n23466,60.333919525146484\n23467,47.8594970703125\n23468,71.69215393066406\n23469,67.008544921875\n23470,38.23937225341797\n23471,31.985637664794922\n23472,34.00055694580078\n23473,50.20090103149414\n23474,60.523651123046875\n23475,47.39623260498047\n23476,73.69730377197266\n23477,63.16629409790039\n23478,41.52280807495117\n23479,31.308860778808594\n23480,43.86732864379883\n23481,49.3665771484375\n23482,62.70888900756836\n23483,50.020687103271484\n23484,73.90222930908203\n23485,65.04915618896484\n23486,36.33850860595703\n23487,30.89609718322754\n23488,37.79909133911133\n23489,47.314308166503906\n23490,57.64261245727539\n23491,48.22083282470703\n23492,72.75709533691406\n23493,69.97532653808594\n23494,41.38149642944336\n23495,35.67058181762695\n23496,36.947872161865234\n23497,46.40652084350586\n23498,63.16908645629883\n23499,45.98387145996094\n23500,75.35444641113281\n23501,65.72393035888672\n23502,38.08169174194336\n23503,31.662940979003906\n23504,38.263282775878906\n23505,46.27029037475586\n23506,63.66053009033203\n23507,47.32288360595703\n23508,75.44629669189453\n23509,66.5154800415039\n23510,41.884037017822266\n23511,33.50371551513672\n23512,34.824310302734375\n23513,45.94331741333008\n23514,61.191444396972656\n23515,43.231529235839844\n23516,71.95869445800781\n23517,67.71246337890625\n23518,36.568580627441406\n23519,28.18205451965332\n23520,36.99124526977539\n23521,48.73136520385742\n23522,61.29135513305664\n23523,48.61433029174805\n23524,74.06962585449219\n23525,61.36024475097656\n23526,40.9143180847168\n23527,33.343414306640625\n23528,36.333892822265625\n23529,44.9937744140625\n23530,60.943050384521484\n23531,43.39115905761719\n23532,68.6956787109375\n23533,66.61579895019531\n23534,38.64928436279297\n23535,30.464780807495117\n23536,35.32170867919922\n23537,45.074737548828125\n23538,63.86767578125\n23539,44.38605880737305\n23540,75.69432067871094\n23541,67.9722900390625\n23542,37.89281463623047\n23543,29.799755096435547\n23544,36.69546890258789\n23545,46.94118118286133\n23546,63.1800651550293\n23547,46.80554962158203\n23548,76.96601104736328\n23549,62.4637565612793\n23550,42.91931915283203\n23551,35.56694793701172\n23552,43.008766174316406\n23553,48.92047882080078\n23554,60.264129638671875\n23555,49.16850662231445\n23556,69.68729400634766\n23557,68.87150573730469\n23558,36.464080810546875\n23559,29.133346557617188\n23560,36.224609375\n23561,49.23106384277344\n23562,68.38027954101562\n23563,49.16185760498047\n23564,81.98616027832031\n23565,68.54734802246094\n23566,33.27572250366211\n23567,29.669965744018555\n23568,39.05616760253906\n23569,55.075157165527344\n23570,63.34861755371094\n23571,56.30834197998047\n23572,76.16999053955078\n23573,67.26119232177734\n23574,29.053756713867188\n23575,32.105716705322266\n23576,42.066993713378906\n23577,60.19972229003906\n23578,61.82253646850586\n23579,63.9537239074707\n23580,73.00501251220703\n23581,63.83316421508789\n23582,41.24921417236328\n23583,31.113536834716797\n23584,37.82239532470703\n23585,43.97304916381836\n23586,61.667213439941406\n23587,43.08438491821289\n23588,72.95250701904297\n23589,62.20508575439453\n23590,37.2546272277832\n23591,28.8620548248291\n23592,41.38201141357422\n23593,45.914859771728516\n23594,66.25361633300781\n23595,48.31503677368164\n23596,79.87677764892578\n23597,61.446353912353516\n23598,40.72136688232422\n23599,31.718891143798828\n23600,42.654876708984375\n23601,44.929988861083984\n23602,68.49765014648438\n23603,46.75081253051758\n23604,79.53620910644531\n23605,69.43939208984375\n23606,39.5263671875\n23607,31.36207389831543\n23608,36.82327651977539\n23609,48.43873977661133\n23610,68.99822235107422\n23611,47.67237091064453\n23612,79.08145141601562\n23613,68.75973510742188\n23614,36.416229248046875\n23615,29.51409339904785\n23616,35.770694732666016\n23617,51.068260192871094\n23618,68.7020492553711\n23619,50.11378479003906\n23620,83.93775939941406\n23621,69.21322631835938\n23622,37.76215744018555\n23623,34.937564849853516\n23624,38.66066360473633\n23625,54.790740966796875\n23626,63.132606506347656\n23627,54.494441986083984\n23628,74.1530990600586\n23629,63.55763244628906\n23630,38.00666427612305\n23631,30.00847816467285\n23632,40.93120193481445\n23633,46.972900390625\n23634,61.67721176147461\n23635,48.56169509887695\n23636,72.12394714355469\n23637,65.3075180053711\n23638,38.470211029052734\n23639,29.386167526245117\n23640,38.34203338623047\n23641,45.38080596923828\n23642,68.35220336914062\n23643,46.12945556640625\n23644,81.7830581665039\n23645,67.30062866210938\n23646,44.480281829833984\n23647,29.627573013305664\n23648,35.71946716308594\n23649,38.00223159790039\n23650,69.979248046875\n23651,36.43630599975586\n23652,84.44683837890625\n23653,65.78296661376953\n23654,36.20243835449219\n23655,30.993860244750977\n23656,35.58243942260742\n23657,46.91556930541992\n23658,64.55577087402344\n23659,47.17524719238281\n23660,75.78463745117188\n23661,66.35763549804688\n23662,36.90501403808594\n23663,29.06329917907715\n23664,36.1662483215332\n23665,46.179710388183594\n23666,66.76229095458984\n23667,46.332027435302734\n23668,76.80148315429688\n23669,66.30632781982422\n23670,37.05961990356445\n23671,28.998140335083008\n23672,39.40269088745117\n23673,50.389305114746094\n23674,67.78205871582031\n23675,50.91032791137695\n23676,81.19445037841797\n23677,66.43252563476562\n23678,37.463069915771484\n23679,28.76213264465332\n23680,38.848026275634766\n23681,45.06066131591797\n23682,66.13816833496094\n23683,46.76521682739258\n23684,81.24478912353516\n23685,65.26298522949219\n23686,34.78504943847656\n23687,31.85207748413086\n23688,42.89226150512695\n23689,53.11174392700195\n23690,68.05404663085938\n23691,56.53504943847656\n23692,80.52626037597656\n23693,67.41519927978516\n23694,37.251426696777344\n23695,32.03349304199219\n23696,39.0625114440918\n23697,47.43160629272461\n23698,63.307525634765625\n23699,49.2193603515625\n23700,73.61714935302734\n23701,70.03296661376953\n23702,36.554500579833984\n23703,28.8629207611084\n23704,37.88006591796875\n23705,50.22614669799805\n23706,69.22119903564453\n23707,50.777503967285156\n23708,81.67791748046875\n23709,76.21292114257812\n23710,37.53435134887695\n23711,40.52755355834961\n23712,35.61452865600586\n23713,59.524322509765625\n23714,64.68894958496094\n23715,58.19150924682617\n23716,74.73979949951172\n23717,67.44744110107422\n23718,35.928733825683594\n23719,30.80097198486328\n23720,36.12340545654297\n23721,53.447181701660156\n23722,62.77019500732422\n23723,52.12478256225586\n23724,78.06400299072266\n23725,68.05069732666016\n23726,37.218814849853516\n23727,31.5306453704834\n23728,38.16203308105469\n23729,53.330596923828125\n23730,69.22091674804688\n23731,52.86582565307617\n23732,78.98594665527344\n23733,62.502403259277344\n23734,34.45176315307617\n23735,28.738407135009766\n23736,41.65758514404297\n23737,48.43844223022461\n23738,62.39943313598633\n23739,51.70328140258789\n23740,74.7558364868164\n23741,62.91383361816406\n23742,41.492637634277344\n23743,33.67036819458008\n23744,36.1324462890625\n23745,43.29436492919922\n23746,58.28168487548828\n23747,41.961849212646484\n23748,66.9615707397461\n23749,66.49645233154297\n23750,37.36840057373047\n23751,31.876834869384766\n23752,38.69061279296875\n23753,53.353023529052734\n23754,67.17422485351562\n23755,52.88847732543945\n23756,76.87036895751953\n23757,67.39417266845703\n23758,41.80177307128906\n23759,31.50094223022461\n23760,36.32487869262695\n23761,46.9969367980957\n23762,66.28130340576172\n23763,44.80546188354492\n23764,76.43910217285156\n23765,66.66650390625\n23766,39.93343734741211\n23767,30.881877899169922\n23768,36.41594696044922\n23769,46.6144905090332\n23770,70.34187316894531\n23771,45.46907043457031\n23772,80.18601989746094\n23773,71.41057586669922\n23774,29.862974166870117\n23775,27.1148738861084\n23776,41.029300689697266\n23777,56.627899169921875\n23778,70.74242401123047\n23779,60.51422119140625\n23780,84.4242172241211\n23781,66.42582702636719\n23782,35.50057601928711\n23783,29.71706771850586\n23784,38.12087631225586\n23785,48.6033821105957\n23786,62.988155364990234\n23787,49.87560272216797\n23788,73.796875\n23789,61.70892333984375\n23790,34.61448287963867\n23791,34.625850677490234\n23792,34.80561447143555\n23793,50.28240966796875\n23794,54.50633239746094\n23795,49.83589553833008\n23796,63.78895568847656\n23797,66.77239990234375\n23798,40.82405090332031\n23799,26.602556228637695\n23800,37.18347930908203\n23801,46.09001922607422\n23802,69.65059661865234\n23803,44.350711822509766\n23804,85.26712036132812\n23805,66.75528717041016\n23806,36.163387298583984\n23807,27.956024169921875\n23808,39.04105758666992\n23809,46.036922454833984\n23810,67.48640441894531\n23811,48.12553024291992\n23812,81.37745666503906\n23813,65.63814544677734\n23814,42.14634704589844\n23815,32.968746185302734\n23816,37.34888458251953\n23817,48.85078811645508\n23818,62.95872497558594\n23819,46.234683990478516\n23820,76.88992309570312\n23821,63.34878921508789\n23822,39.11917495727539\n23823,29.319467544555664\n23824,42.53300094604492\n23825,48.79042053222656\n23826,64.28475189208984\n23827,50.02682876586914\n23828,74.12052154541016\n23829,68.39898681640625\n23830,35.464237213134766\n23831,32.375946044921875\n23832,37.16788101196289\n23833,54.61307907104492\n23834,63.68357849121094\n23835,54.18221664428711\n23836,76.6264419555664\n23837,68.94066619873047\n23838,36.42499923706055\n23839,28.164371490478516\n23840,37.111358642578125\n23841,53.55360794067383\n23842,64.8893814086914\n23843,52.16621398925781\n23844,82.84223175048828\n23845,67.07910919189453\n23846,38.17499542236328\n23847,29.175092697143555\n23848,37.45732116699219\n23849,45.330718994140625\n23850,67.5586166381836\n23851,45.9244499206543\n23852,79.551025390625\n23853,66.20523834228516\n23854,40.85535430908203\n23855,31.12256622314453\n23856,36.574302673339844\n23857,48.59349060058594\n23858,65.26033020019531\n23859,46.198699951171875\n23860,78.08877563476562\n23861,68.20879364013672\n23862,35.239131927490234\n23863,29.476940155029297\n23864,38.96295166015625\n23865,50.64729309082031\n23866,68.30038452148438\n23867,52.14247512817383\n23868,78.26199340820312\n23869,66.49645233154297\n23870,37.36840057373047\n23871,31.876834869384766\n23872,38.69061279296875\n23873,53.353023529052734\n23874,67.17422485351562\n23875,52.88847732543945\n23876,76.87036895751953\n23877,65.85066223144531\n23878,34.09968185424805\n23879,27.59955596923828\n23880,36.84901428222656\n23881,48.429771423339844\n23882,65.06192016601562\n23883,49.45234298706055\n23884,76.83233642578125\n23885,68.0210952758789\n23886,40.22724151611328\n23887,31.568439483642578\n23888,37.467506408691406\n23889,50.21907424926758\n23890,67.86127471923828\n23891,48.6253662109375\n23892,80.23194885253906\n23893,66.2203140258789\n23894,42.564796447753906\n23895,31.047409057617188\n23896,38.313175201416016\n23897,46.076087951660156\n23898,64.24931335449219\n23899,44.378456115722656\n23900,78.53480529785156\n23901,64.51909637451172\n23902,40.50558090209961\n23903,31.592300415039062\n23904,40.756385803222656\n23905,47.8089485168457\n23906,61.05586242675781\n23907,48.11925506591797\n23908,71.69740295410156\n23909,67.46896362304688\n23910,37.33870315551758\n23911,29.839656829833984\n23912,38.39606857299805\n23913,53.23458480834961\n23914,69.4920425415039\n23915,52.463924407958984\n23916,82.35253143310547\n23917,68.87393188476562\n23918,38.85885238647461\n23919,30.39090347290039\n23920,40.23446273803711\n23921,49.10871887207031\n23922,61.49529266357422\n23923,49.92118835449219\n23924,72.99596405029297\n23925,63.92201614379883\n23926,39.79108428955078\n23927,31.76276969909668\n23928,38.40968704223633\n23929,49.8597297668457\n23930,62.843772888183594\n23931,48.551639556884766\n23932,76.36288452148438\n23933,64.22966766357422\n23934,36.21942901611328\n23935,29.66754150390625\n23936,39.99688720703125\n23937,47.586090087890625\n23938,63.83035659790039\n23939,49.659423828125\n23940,75.9722671508789\n23941,64.9336929321289\n23942,36.566287994384766\n23943,30.305721282958984\n23944,37.01793670654297\n23945,49.66191101074219\n23946,64.27254486083984\n23947,49.531005859375\n23948,74.51309967041016\n23949,68.66154479980469\n23950,38.7033805847168\n23951,33.535362243652344\n23952,36.38684844970703\n23953,50.94453811645508\n23954,63.29307556152344\n23955,49.75640869140625\n23956,73.7417984008789\n23957,67.3304214477539\n23958,31.69688606262207\n23959,27.256452560424805\n23960,37.5360221862793\n23961,55.81951904296875\n23962,66.45159912109375\n23963,56.329559326171875\n23964,80.14434814453125\n23965,65.28275299072266\n23966,33.571529388427734\n23967,26.084552764892578\n23968,37.09226608276367\n23969,48.612125396728516\n23970,64.65621948242188\n23971,49.70880126953125\n23972,77.72357177734375\n23973,63.48603057861328\n23974,36.6004753112793\n23975,27.38031578063965\n23976,40.817779541015625\n23977,48.966957092285156\n23978,66.10834503173828\n23979,50.339290618896484\n23980,75.90276336669922\n23981,66.71855926513672\n23982,36.55181884765625\n23983,29.86029815673828\n23984,37.77340316772461\n23985,48.58319854736328\n23986,65.40864562988281\n23987,49.290653228759766\n23988,76.7442626953125\n23989,65.54684448242188\n23990,37.0798454284668\n23991,35.516231536865234\n23992,37.28732681274414\n23993,53.66379165649414\n23994,60.16830825805664\n23995,52.95044708251953\n23996,69.80084228515625\n23997,66.27389526367188\n23998,40.4581298828125\n23999,34.862483978271484\n24000,37.389522552490234\n24001,50.66790771484375\n24002,65.15512084960938\n24003,48.93975067138672\n24004,77.39949798583984\n24005,66.81965637207031\n24006,37.434593200683594\n24007,30.474809646606445\n24008,38.72670364379883\n24009,46.629600524902344\n24010,63.40890884399414\n24011,48.03706741333008\n24012,73.83776092529297\n24013,66.58879852294922\n24014,38.90105438232422\n24015,29.606624603271484\n24016,39.435585021972656\n24017,50.4665641784668\n24018,65.01728057861328\n24019,50.06812286376953\n24020,76.59846496582031\n24021,65.07599639892578\n24022,33.864418029785156\n24023,30.90571403503418\n24024,34.65225601196289\n24025,47.397125244140625\n24026,59.324981689453125\n24027,48.00638961791992\n24028,72.41683197021484\n24029,68.09770202636719\n24030,38.3170051574707\n24031,30.312997817993164\n24032,35.291690826416016\n24033,48.596744537353516\n24034,64.28292083740234\n24035,47.11408996582031\n24036,75.98365020751953\n24037,67.34841918945312\n24038,37.34476852416992\n24039,29.296689987182617\n24040,34.551761627197266\n24041,44.688026428222656\n24042,62.75476837158203\n24043,44.269920349121094\n24044,75.22859191894531\n24045,67.7542953491211\n24046,39.0837287902832\n24047,30.83285903930664\n24048,34.917842864990234\n24049,48.58753967285156\n24050,61.76228332519531\n24051,46.43659210205078\n24052,74.3689956665039\n24053,65.50859832763672\n24054,38.590755462646484\n24055,30.495853424072266\n24056,37.139404296875\n24057,46.71784591674805\n24058,62.351463317871094\n24059,46.317352294921875\n24060,74.84906768798828\n24061,65.86504364013672\n24062,34.48625183105469\n24063,29.71659278869629\n24064,37.50199890136719\n24065,48.27617263793945\n24066,59.7711181640625\n24067,49.82758331298828\n24068,72.54521179199219\n24069,67.34841918945312\n24070,37.34476852416992\n24071,29.296689987182617\n24072,34.551761627197266\n24073,44.688026428222656\n24074,62.75476837158203\n24075,44.269920349121094\n24076,75.22859191894531\n24077,70.01535034179688\n24078,41.17842483520508\n24079,33.5684814453125\n24080,34.32278823852539\n24081,52.93266677856445\n24082,68.9228286743164\n24083,48.515445709228516\n24084,82.25638580322266\n24085,65.75209045410156\n24086,34.8758659362793\n24087,26.95315170288086\n24088,38.89824676513672\n24089,47.14276885986328\n24090,63.8978271484375\n24091,49.04143524169922\n24092,76.30680847167969\n24093,66.02898406982422\n24094,37.608001708984375\n24095,31.009618759155273\n24096,39.754329681396484\n24097,50.53813934326172\n24098,64.88758850097656\n24099,51.28495407104492\n24100,74.89422607421875\n24101,66.86196899414062\n24102,37.504310607910156\n24103,30.416248321533203\n24104,38.456138610839844\n24105,49.865821838378906\n24106,65.48226165771484\n24107,50.03607940673828\n24108,77.1700668334961\n24109,65.86504364013672\n24110,34.48625183105469\n24111,29.71659278869629\n24112,37.50199890136719\n24113,48.27617263793945\n24114,59.7711181640625\n24115,49.82758331298828\n24116,72.54521179199219\n24117,60.27738571166992\n24118,49.56071472167969\n24119,43.74879837036133\n24120,44.79248046875\n24121,51.20479202270508\n24122,60.3936767578125\n24123,48.61794662475586\n24124,67.29109191894531\n24125,67.33448791503906\n24126,36.45827865600586\n24127,28.636455535888672\n24128,38.95210647583008\n24129,52.264461517333984\n24130,68.01100158691406\n24131,52.40227127075195\n24132,79.15729522705078\n24133,65.04251098632812\n24134,38.28689193725586\n24135,31.101070404052734\n24136,36.75602722167969\n24137,47.18156051635742\n24138,62.745361328125\n24139,46.703338623046875\n24140,71.81216430664062\n24141,68.09333801269531\n24142,38.5572395324707\n24143,31.410804748535156\n24144,37.243186950683594\n24145,43.602684020996094\n24146,69.07060241699219\n24147,45.0316162109375\n24148,81.502197265625\n24149,68.2600326538086\n24150,40.83796310424805\n24151,32.80018997192383\n24152,40.2578239440918\n24153,49.5331916809082\n24154,69.10340118408203\n24155,49.791168212890625\n24156,78.51448059082031\n24157,64.81249237060547\n24158,36.90148162841797\n24159,30.01542091369629\n24160,38.21086883544922\n24161,47.53900909423828\n24162,61.64446258544922\n24163,48.138153076171875\n24164,73.80328369140625\n24165,66.5252914428711\n24166,36.373260498046875\n24167,31.4925594329834\n24168,39.45637130737305\n24169,52.39086151123047\n24170,61.25812530517578\n24171,53.01408767700195\n24172,71.90104675292969\n24173,68.20906066894531\n24174,41.36241149902344\n24175,32.97338104248047\n24176,37.66929244995117\n24177,49.498451232910156\n24178,63.81957244873047\n24179,47.78559112548828\n24180,75.5486831665039\n24181,67.1562271118164\n24182,39.9967041015625\n24183,34.05942153930664\n24184,35.96750259399414\n24185,51.625301361083984\n24186,64.34020233154297\n24187,49.151432037353516\n24188,73.69791412353516\n24189,68.0962905883789\n24190,41.76510238647461\n24191,31.37896156311035\n24192,37.1871337890625\n24193,42.503562927246094\n24194,67.63243103027344\n24195,42.28487014770508\n24196,81.14350891113281\n24197,65.66201782226562\n24198,38.99506378173828\n24199,29.91436195373535\n24200,38.12782669067383\n24201,47.7559814453125\n24202,63.439857482910156\n24203,47.384361267089844\n24204,72.81937408447266\n24205,69.0485610961914\n24206,38.92711639404297\n24207,31.62036895751953\n24208,36.311683654785156\n24209,49.544891357421875\n24210,63.13809585571289\n24211,48.22571563720703\n24212,77.45821380615234\n24213,63.6165885925293\n24214,38.235504150390625\n24215,29.541677474975586\n24216,38.23759078979492\n24217,43.97908401489258\n24218,64.6976318359375\n24219,44.9112663269043\n24220,76.22279357910156\n24221,67.89044952392578\n24222,36.18940353393555\n24223,29.576231002807617\n24224,38.23481750488281\n24225,49.36675262451172\n24226,64.64244842529297\n24227,50.3086051940918\n24228,75.92813110351562\n24229,65.62806701660156\n24230,35.14318084716797\n24231,28.60370635986328\n24232,38.90774154663086\n24233,51.0291748046875\n24234,63.1187744140625\n24235,52.039974212646484\n24236,76.54756927490234\n24237,67.6922607421875\n24238,43.06175994873047\n24239,31.15947723388672\n24240,37.675716400146484\n24241,46.7982063293457\n24242,68.8978042602539\n24243,44.65071487426758\n24244,81.42417907714844\n24245,63.91728591918945\n24246,34.343048095703125\n24247,29.90944480895996\n24248,35.704063415527344\n24249,46.21699142456055\n24250,64.58648681640625\n24251,47.33959197998047\n24252,77.97409057617188\n24253,68.74304962158203\n24254,34.96731185913086\n24255,29.971397399902344\n24256,34.4609260559082\n24257,49.43811798095703\n24258,59.482666015625\n24259,48.93486785888672\n24260,74.2409439086914\n24261,66.77410125732422\n24262,38.251220703125\n24263,29.062822341918945\n24264,37.97875213623047\n24265,47.134761810302734\n24266,62.6017951965332\n24267,47.15837478637695\n24268,77.68545532226562\n24269,67.80062866210938\n24270,32.914241790771484\n24271,31.268451690673828\n24272,36.74272918701172\n24273,54.20000457763672\n24274,61.25579071044922\n24275,54.809234619140625\n24276,72.6366195678711\n24277,45.44408416748047\n24278,43.43547058105469\n24279,23.40601348876953\n24280,41.921234130859375\n24281,30.1925106048584\n24282,57.82404708862305\n24283,30.293872833251953\n24284,66.83305358886719\n24285,63.90448760986328\n24286,41.825523376464844\n24287,35.117950439453125\n24288,41.67892074584961\n24289,50.991363525390625\n24290,57.527610778808594\n24291,50.59674072265625\n24292,67.95960235595703\n24293,65.66646575927734\n24294,35.8583869934082\n24295,27.520915985107422\n24296,37.799617767333984\n24297,48.19274139404297\n24298,64.33871459960938\n24299,48.843238830566406\n24300,78.28660583496094\n24301,70.80743408203125\n24302,38.92772674560547\n24303,29.51924705505371\n24304,38.21283721923828\n24305,47.611270904541016\n24306,69.0102767944336\n24307,48.05429458618164\n24308,82.16230773925781\n24309,51.79216766357422\n24310,43.614891052246094\n24311,24.6632080078125\n24312,34.253013610839844\n24313,28.41695213317871\n24314,57.63661575317383\n24315,26.0056209564209\n24316,67.90581512451172\n24317,71.6945571899414\n24318,34.52289962768555\n24319,30.139432907104492\n24320,34.940711975097656\n24321,44.65961456298828\n24322,64.53282165527344\n24323,46.900856018066406\n24324,79.77874755859375\n24325,64.88288116455078\n24326,36.83214569091797\n24327,25.910526275634766\n24328,41.84684371948242\n24329,47.92290496826172\n24330,65.93743896484375\n24331,49.89950180053711\n24332,78.49630737304688\n24333,68.39620971679688\n24334,37.682674407958984\n24335,30.502668380737305\n24336,39.174041748046875\n24337,54.12541580200195\n24338,67.74559020996094\n24339,53.43889617919922\n24340,81.44112396240234\n24341,67.21537017822266\n24342,39.987548828125\n24343,29.36012077331543\n24344,38.123291015625\n24345,46.70699691772461\n24346,66.01528930664062\n24347,46.16176223754883\n24348,81.03522491455078\n24349,69.52592468261719\n24350,37.267181396484375\n24351,28.23980140686035\n24352,35.55669021606445\n24353,47.177894592285156\n24354,62.5830192565918\n24355,46.61055374145508\n24356,78.45759582519531\n24357,70.02967071533203\n24358,38.40249252319336\n24359,28.600658416748047\n24360,37.752685546875\n24361,47.84908676147461\n24362,63.121986389160156\n24363,47.74406051635742\n24364,77.89347839355469\n24365,66.58490753173828\n24366,36.503631591796875\n24367,30.529212951660156\n24368,36.860084533691406\n24369,52.08772659301758\n24370,65.55345916748047\n24371,51.228729248046875\n24372,76.85437774658203\n24373,69.50117492675781\n24374,35.52851867675781\n24375,32.84596252441406\n24376,35.3581428527832\n24377,55.02181625366211\n24378,60.28401184082031\n24379,53.5846061706543\n24380,74.34152221679688\n24381,69.56471252441406\n24382,38.92527770996094\n24383,32.54262161254883\n24384,38.52901840209961\n24385,54.602752685546875\n24386,68.75764465332031\n24387,53.29075241088867\n24388,82.69711303710938\n24389,68.26557922363281\n24390,40.00825500488281\n24391,32.115474700927734\n24392,34.86707305908203\n24393,47.020050048828125\n24394,65.46895599365234\n24395,45.14807891845703\n24396,77.95935821533203\n24397,66.35319519042969\n24398,35.381290435791016\n24399,30.594383239746094\n24400,35.08930587768555\n24401,44.365386962890625\n24402,59.32539367675781\n24403,45.529930114746094\n24404,72.6184310913086\n24405,68.07237243652344\n24406,39.22386169433594\n24407,30.21369743347168\n24408,38.67215347290039\n24409,46.57004165649414\n24410,68.66014099121094\n24411,47.179222106933594\n24412,80.41259002685547\n24413,68.36958312988281\n24414,39.077117919921875\n24415,29.44269561767578\n24416,35.267818450927734\n24417,48.65171813964844\n24418,68.76798248291016\n24419,46.55353927612305\n24420,84.09715270996094\n24421,68.41490936279297\n24422,37.71255111694336\n24423,31.33030128479004\n24424,33.532249450683594\n24425,50.13968276977539\n24426,61.02257537841797\n24427,47.56907272338867\n24428,74.08203887939453\n24429,68.48728942871094\n24430,38.13878631591797\n24431,28.907615661621094\n24432,38.52762222290039\n24433,46.61216735839844\n24434,65.99849700927734\n24435,47.460609436035156\n24436,76.6145248413086\n24437,66.79069519042969\n24438,36.413631439208984\n24439,30.323123931884766\n24440,32.98630142211914\n24441,46.62672805786133\n24442,60.96308517456055\n24443,45.25688552856445\n24444,71.76554107666016\n24445,64.22614288330078\n24446,38.62364959716797\n24447,27.79037094116211\n24448,32.068756103515625\n24449,41.791595458984375\n24450,59.26103591918945\n24451,39.28175735473633\n24452,72.2673110961914\n24453,66.79366302490234\n24454,36.531246185302734\n24455,27.630769729614258\n24456,35.12036895751953\n24457,46.705387115478516\n24458,67.08824157714844\n24459,46.08658218383789\n24460,80.1783218383789\n24461,66.91064453125\n24462,37.681312561035156\n24463,30.669876098632812\n24464,37.72024154663086\n24465,48.89933395385742\n24466,62.008602142333984\n24467,48.898380279541016\n24468,75.20426177978516\n24469,67.85444641113281\n24470,41.89505386352539\n24471,32.451568603515625\n24472,31.653194427490234\n24473,43.518585205078125\n24474,67.96158599853516\n24475,39.94851303100586\n24476,78.02869415283203\n24477,68.73393249511719\n24478,40.20908737182617\n24479,31.089508056640625\n24480,35.43001174926758\n24481,45.38965606689453\n24482,66.2544174194336\n24483,44.08079528808594\n24484,79.02942657470703\n24485,66.43508911132812\n24486,36.06365966796875\n24487,33.65984344482422\n24488,36.5739631652832\n24489,49.552650451660156\n24490,60.648414611816406\n24491,49.99165725708008\n24492,70.27887725830078\n24493,70.3113784790039\n24494,35.868568420410156\n24495,30.325679779052734\n24496,37.618438720703125\n24497,52.7067985534668\n24498,62.93126678466797\n24499,52.797119140625\n24500,77.64209747314453\n24501,72.3714370727539\n24502,32.82164001464844\n24503,34.19641876220703\n24504,41.121253967285156\n24505,60.26460266113281\n24506,60.6590690612793\n24507,62.64645004272461\n24508,74.27442169189453\n24509,69.07992553710938\n24510,39.2362060546875\n24511,30.97359275817871\n24512,38.936134338378906\n24513,48.91819381713867\n24514,63.24168014526367\n24515,49.06883239746094\n24516,76.4510269165039\n24517,67.23355102539062\n24518,35.421539306640625\n24519,27.4189453125\n24520,35.8655891418457\n24521,52.24494171142578\n24522,68.1966781616211\n24523,50.829063415527344\n24524,81.55760955810547\n24525,67.22057342529297\n24526,39.26823425292969\n24527,30.378494262695312\n24528,40.20417785644531\n24529,45.0251350402832\n24530,71.38400268554688\n24531,47.011688232421875\n24532,85.22051239013672\n24533,68.6779556274414\n24534,38.51386642456055\n24535,28.540733337402344\n24536,35.5107536315918\n24537,48.079551696777344\n24538,65.90553283691406\n24539,46.52811050415039\n24540,78.57845306396484\n24541,66.73998260498047\n24542,41.64006423950195\n24543,33.01913070678711\n24544,32.188289642333984\n24545,45.550987243652344\n24546,62.93029022216797\n24547,41.60686492919922\n24548,73.04474639892578\n24549,59.81465148925781\n24550,40.80910873413086\n24551,34.5529899597168\n24552,37.608116149902344\n24553,38.668941497802734\n24554,60.697303771972656\n24555,39.51542663574219\n24556,72.1905517578125\n24557,64.1752700805664\n24558,34.209171295166016\n24559,28.809223175048828\n24560,43.52095031738281\n24561,49.90253829956055\n24562,64.94054412841797\n24563,54.19904708862305\n24564,78.50885772705078\n24565,64.76197814941406\n24566,31.830963134765625\n24567,29.829710006713867\n24568,42.175933837890625\n24569,53.81595993041992\n24570,67.2042007446289\n24571,57.621665954589844\n24572,76.7623062133789\n24573,67.27195739746094\n24574,35.92865753173828\n24575,30.13149070739746\n24576,37.11721420288086\n24577,48.22861099243164\n24578,61.89241409301758\n24579,48.97441101074219\n24580,73.76358795166016\n24581,65.5482177734375\n24582,36.88444519042969\n24583,32.55216598510742\n24584,38.463497161865234\n24585,51.09187316894531\n24586,62.69894790649414\n24587,51.40107727050781\n24588,72.66126251220703\n24589,67.8422622680664\n24590,38.52005386352539\n24591,26.921613693237305\n24592,38.0153694152832\n24593,45.86216735839844\n24594,71.06776428222656\n24595,46.28384017944336\n24596,84.08488464355469\n24597,69.5032958984375\n24598,39.6270751953125\n24599,29.733671188354492\n24600,38.920963287353516\n24601,52.7558479309082\n24602,70.5819091796875\n24603,51.443931579589844\n24604,84.92872619628906\n24605,67.75786590576172\n24606,36.835784912109375\n24607,30.425832748413086\n24608,36.36794662475586\n24609,47.7534065246582\n24610,62.97746276855469\n24611,47.87251281738281\n24612,75.0512466430664\n24613,70.58968353271484\n24614,35.28231430053711\n24615,32.21515655517578\n24616,38.300010681152344\n24617,56.26652908325195\n24618,65.41002655029297\n24619,56.31829071044922\n24620,79.4023666381836\n24621,64.65717315673828\n24622,39.66549301147461\n24623,31.37152862548828\n24624,37.9079475402832\n24625,48.990020751953125\n24626,65.37712860107422\n24627,47.875919342041016\n24628,73.91316986083984\n24629,67.1058578491211\n24630,38.73401641845703\n24631,29.4566650390625\n24632,40.08140563964844\n24633,49.44342803955078\n24634,59.24908447265625\n24635,49.724037170410156\n24636,72.78337860107422\n24637,70.853515625\n24638,41.88064956665039\n24639,27.89812469482422\n24640,32.790321350097656\n24641,43.38993453979492\n24642,68.24907684326172\n24643,40.17168045043945\n24644,81.68025970458984\n24645,69.17231750488281\n24646,40.1927604675293\n24647,31.80811882019043\n24648,36.79330062866211\n24649,44.922813415527344\n24650,72.54020690917969\n24651,45.11885070800781\n24652,83.38758087158203\n24653,74.25810241699219\n24654,36.84056091308594\n24655,27.196327209472656\n24656,31.74099349975586\n24657,41.91318893432617\n24658,72.13601684570312\n24659,42.104095458984375\n24660,88.05496978759766\n24661,66.74698638916016\n24662,37.45073318481445\n24663,29.55318832397461\n24664,34.096923828125\n24665,45.70600509643555\n24666,60.21108627319336\n24667,44.572532653808594\n24668,71.874755859375\n24669,66.78158569335938\n24670,40.66068649291992\n24671,31.000932693481445\n24672,38.83684158325195\n24673,47.425777435302734\n24674,63.25217056274414\n24675,46.77352523803711\n24676,75.24758911132812\n24677,69.58775329589844\n24678,39.733455657958984\n24679,30.09628677368164\n24680,34.11896896362305\n24681,45.20766830444336\n24682,64.34391021728516\n24683,43.306922912597656\n24684,80.51483917236328\n24685,68.83452606201172\n24686,39.403053283691406\n24687,30.682764053344727\n24688,35.76715850830078\n24689,44.68071365356445\n24690,69.29737854003906\n24691,44.44986343383789\n24692,79.64021301269531\n24693,69.42863464355469\n24694,33.335609436035156\n24695,29.303922653198242\n24696,35.22364044189453\n24697,54.8629264831543\n24698,65.08192443847656\n24699,54.02694320678711\n24700,80.2306900024414\n24701,65.32757568359375\n24702,40.34967803955078\n24703,29.282913208007812\n24704,37.93147277832031\n24705,44.96135711669922\n24706,66.51063537597656\n24707,44.403358459472656\n24708,78.20010375976562\n24709,67.54503631591797\n24710,38.575565338134766\n24711,29.26415252685547\n24712,38.16988754272461\n24713,48.084815979003906\n24714,67.87205505371094\n24715,48.02973937988281\n24716,80.28996276855469\n24717,67.623046875\n24718,40.13106918334961\n24719,30.692516326904297\n24720,39.09395980834961\n24721,47.88749313354492\n24722,68.26954650878906\n24723,47.83940887451172\n24724,80.29076385498047\n24725,63.90233612060547\n24726,39.260433197021484\n24727,34.75714111328125\n24728,37.71478271484375\n24729,47.970516204833984\n24730,59.3270263671875\n24731,47.563655853271484\n24732,71.26668548583984\n24733,69.15188598632812\n24734,37.08027648925781\n24735,34.0040168762207\n24736,38.16741943359375\n24737,58.25505447387695\n24738,68.89108276367188\n24739,56.747928619384766\n24740,78.7379379272461\n24741,65.53290557861328\n24742,35.7738037109375\n24743,30.072528839111328\n24744,38.41225814819336\n24745,52.0930061340332\n24746,65.29846954345703\n24747,52.31122970581055\n24748,79.47230529785156\n24749,66.18058776855469\n24750,38.256919860839844\n24751,30.246858596801758\n24752,35.252044677734375\n24753,48.90401840209961\n24754,65.46355438232422\n24755,47.055686950683594\n24756,76.78648376464844\n24757,66.71432495117188\n24758,36.57939910888672\n24759,31.99283218383789\n24760,38.90734100341797\n24761,49.674861907958984\n24762,64.80709075927734\n24763,50.99382019042969\n24764,75.04560852050781\n24765,68.79794311523438\n24766,42.90915298461914\n24767,31.03944206237793\n24768,34.99763488769531\n24769,44.6765022277832\n24770,69.77873992919922\n24771,42.028846740722656\n24772,80.04019927978516\n24773,68.66101837158203\n24774,44.53681182861328\n24775,35.763404846191406\n24776,38.015140533447266\n24777,48.28791809082031\n24778,69.58683013916016\n24779,46.132904052734375\n24780,77.9756851196289\n24781,69.38269805908203\n24782,37.62360382080078\n24783,30.9514102935791\n24784,35.14967727661133\n24785,49.736202239990234\n24786,62.56787109375\n24787,48.34265899658203\n24788,76.67900085449219\n24789,67.89666748046875\n24790,37.05026626586914\n24791,27.4464054107666\n24792,36.50971221923828\n24793,45.44089126586914\n24794,61.171043395996094\n24795,45.726470947265625\n24796,74.37611389160156\n24797,66.29212951660156\n24798,35.42169189453125\n24799,29.00732421875\n24800,34.44247055053711\n24801,47.54243087768555\n24802,64.18782043457031\n24803,47.06882858276367\n24804,74.61998748779297\n24805,66.93537902832031\n24806,37.217498779296875\n24807,31.979764938354492\n24808,38.5520133972168\n24809,51.187644958496094\n24810,64.24401092529297\n24811,51.37692642211914\n24812,75.03683471679688\n24813,67.74057006835938\n24814,37.48429870605469\n24815,30.93313217163086\n24816,39.85129165649414\n24817,51.12797927856445\n24818,64.57514190673828\n24819,51.95573425292969\n24820,76.47716522216797\n24821,67.93016052246094\n24822,36.497676849365234\n24823,30.3878173828125\n24824,36.488990783691406\n24825,50.5582389831543\n24826,62.47106170654297\n24827,50.059814453125\n24828,76.78736114501953\n24829,60.7925910949707\n24830,35.75737762451172\n24831,26.56749725341797\n24832,40.44902038574219\n24833,44.976078033447266\n24834,53.78895950317383\n24835,46.964073181152344\n24836,67.84709930419922\n24837,67.66378784179688\n24838,37.41555404663086\n24839,30.74376678466797\n24840,37.46648025512695\n24841,47.96413803100586\n24842,68.91279602050781\n24843,48.59453201293945\n24844,77.90587615966797\n24845,68.21096801757812\n24846,36.45183181762695\n24847,29.508920669555664\n24848,36.015132904052734\n24849,49.778751373291016\n24850,64.05292510986328\n24851,49.18552017211914\n24852,75.80680084228516\n24853,69.85267639160156\n24854,38.77846145629883\n24855,29.945911407470703\n24856,35.46443176269531\n24857,45.46868896484375\n24858,67.10774230957031\n24859,45.03207015991211\n24860,80.96908569335938\n24861,67.7536849975586\n24862,39.090736389160156\n24863,30.132118225097656\n24864,36.60375213623047\n24865,50.66918182373047\n24866,66.41160583496094\n24867,48.75775909423828\n24868,77.88492584228516\n24869,66.74746704101562\n24870,33.06449890136719\n24871,28.583274841308594\n24872,40.165706634521484\n24873,50.01194381713867\n24874,65.71602630615234\n24875,53.21347427368164\n24876,78.25326538085938\n24877,64.59117126464844\n24878,41.14558792114258\n24879,32.15336608886719\n24880,38.1522331237793\n24881,45.11137771606445\n24882,64.86516571044922\n24883,44.46873474121094\n24884,74.43929290771484\n24885,66.26825714111328\n24886,38.18067169189453\n24887,28.897340774536133\n24888,37.86492919921875\n24889,45.10007858276367\n24890,67.04981231689453\n24891,45.765926361083984\n24892,79.65984344482422\n24893,66.10063934326172\n24894,38.380428314208984\n24895,31.730289459228516\n24896,34.48112869262695\n24897,44.863304138183594\n24898,63.0705451965332\n24899,44.03306579589844\n24900,74.01927947998047\n24901,67.81045532226562\n24902,37.399208068847656\n24903,30.56035614013672\n24904,35.8584098815918\n24905,50.942893981933594\n24906,64.61917114257812\n24907,49.511436462402344\n24908,76.34263610839844\n24909,65.66259765625\n24910,38.962860107421875\n24911,31.775421142578125\n24912,40.1915168762207\n24913,48.09014129638672\n24914,64.0480728149414\n24915,48.99322509765625\n24916,74.93169403076172\n24917,69.61609649658203\n24918,39.36163330078125\n24919,29.864967346191406\n24920,37.68480682373047\n24921,45.89285659790039\n24922,68.76251220703125\n24923,46.21186828613281\n24924,79.36671447753906\n24925,66.72047424316406\n24926,36.55266189575195\n24927,32.91527557373047\n24928,36.1710090637207\n24929,50.82373809814453\n24930,60.7166748046875\n24931,50.35200119018555\n24932,69.73954010009766\n24933,67.12562561035156\n24934,38.54541778564453\n24935,30.035308837890625\n24936,36.67698287963867\n24937,45.96226501464844\n24938,65.60674285888672\n24939,45.82368850708008\n24940,77.17435455322266\n24941,69.55592346191406\n24942,39.46718215942383\n24943,29.941652297973633\n24944,38.1693229675293\n24945,48.3746452331543\n24946,68.64815521240234\n24947,48.19462585449219\n24948,81.76079559326172\n24949,67.3391342163086\n24950,38.80909729003906\n24951,31.077678680419922\n24952,38.1488037109375\n24953,45.25332260131836\n24954,67.09069061279297\n24955,46.28704833984375\n24956,79.39374542236328\n24957,68.05308532714844\n24958,31.923879623413086\n24959,28.825183868408203\n24960,39.55097961425781\n24961,49.72369384765625\n24962,69.98809051513672\n24963,53.73396301269531\n24964,80.75243377685547\n24965,64.27700805664062\n24966,37.44407653808594\n24967,30.403268814086914\n24968,40.9117431640625\n24969,47.67060089111328\n24970,65.90299224853516\n24971,49.74222183227539\n24972,76.81804656982422\n24973,67.01605224609375\n24974,34.84463119506836\n24975,31.51702880859375\n24976,38.53294372558594\n24977,50.1926383972168\n24978,68.07820892333984\n24979,52.12551498413086\n24980,78.25919342041016\n24981,67.64826965332031\n24982,40.02566909790039\n24983,30.243343353271484\n24984,39.90130615234375\n24985,47.482051849365234\n24986,63.39702606201172\n24987,47.75068283081055\n24988,77.541748046875\n24989,66.33702850341797\n24990,39.69036102294922\n24991,31.749391555786133\n24992,37.95557403564453\n24993,49.83365249633789\n24994,66.37967681884766\n24995,48.68804168701172\n24996,77.0123519897461\n24997,67.34135437011719\n24998,36.07363510131836\n24999,28.77814483642578\n25000,39.437103271484375\n25001,52.00300216674805\n25002,63.71302032470703\n25003,52.67173767089844\n25004,76.10861206054688\n25005,65.09785461425781\n25006,38.40275192260742\n25007,30.51676368713379\n25008,39.47826385498047\n25009,48.623504638671875\n25010,67.59862518310547\n25011,49.18963623046875\n25012,77.78321075439453\n25013,70.96434783935547\n25014,36.29322814941406\n25015,29.562801361083984\n25016,39.792503356933594\n25017,54.917640686035156\n25018,69.40113067626953\n25019,55.4215087890625\n25020,80.2233657836914\n25021,67.2298812866211\n25022,36.18680953979492\n25023,29.61083984375\n25024,37.00056076049805\n25025,49.877952575683594\n25026,63.14688491821289\n25027,49.910858154296875\n25028,76.09065246582031\n25029,63.519290924072266\n25030,34.88568878173828\n25031,31.158479690551758\n25032,42.40385437011719\n25033,48.477176666259766\n25034,65.63610076904297\n25035,52.544960021972656\n25036,76.60552978515625\n25037,69.12763214111328\n25038,37.478172302246094\n25039,31.679306030273438\n25040,35.243839263916016\n25041,49.59332275390625\n25042,65.69603729248047\n25043,48.596710205078125\n25044,79.75543975830078\n25045,66.91668701171875\n25046,39.16649627685547\n25047,34.26066589355469\n25048,38.066551208496094\n25049,49.10082244873047\n25050,65.5551528930664\n25051,49.0685920715332\n25052,76.02833557128906\n25053,66.45816802978516\n25054,41.78650665283203\n25055,31.856889724731445\n25056,36.26921844482422\n25057,41.801788330078125\n25058,64.0195083618164\n25059,41.00471496582031\n25060,77.22266387939453\n25061,66.72502136230469\n25062,33.98309326171875\n25063,26.920473098754883\n25064,37.958919525146484\n25065,49.71870422363281\n25066,61.251434326171875\n25067,50.92339324951172\n25068,72.235107421875\n25069,61.90727996826172\n25070,38.988380432128906\n25071,31.388439178466797\n25072,39.445316314697266\n25073,47.29057312011719\n25074,61.908302307128906\n25075,47.52617263793945\n25076,70.40245056152344\n25077,67.98329162597656\n25078,38.65483093261719\n25079,30.832677841186523\n25080,36.80596923828125\n25081,48.12789535522461\n25082,62.374122619628906\n25083,47.515743255615234\n25084,75.78726196289062\n25085,64.29591369628906\n25086,37.471073150634766\n25087,34.748836517333984\n25088,39.0688591003418\n25089,50.15739059448242\n25090,58.61818313598633\n25091,51.05161666870117\n25092,68.51707458496094\n25093,65.76770782470703\n25094,38.29521942138672\n25095,31.823610305786133\n25096,39.67713165283203\n25097,48.772308349609375\n25098,65.39218139648438\n25099,49.735191345214844\n25100,77.0020523071289\n25101,66.53825378417969\n25102,37.651615142822266\n25103,28.802356719970703\n25104,38.5918083190918\n25105,47.28372573852539\n25106,65.3348617553711\n25107,47.91735076904297\n25108,79.97333526611328\n25109,68.5425033569336\n25110,38.090797424316406\n25111,37.7950439453125\n25112,37.010032653808594\n25113,56.62042236328125\n25114,62.761409759521484\n25115,55.113338470458984\n25116,71.57274627685547\n25117,66.46574401855469\n25118,38.96341323852539\n25119,32.04622268676758\n25120,38.80664825439453\n25121,49.52092742919922\n25122,65.34432220458984\n25123,49.4895133972168\n25124,77.35404205322266\n25125,66.00807189941406\n25126,34.07616424560547\n25127,27.69739532470703\n25128,37.89431381225586\n25129,46.75564956665039\n25130,60.76115798950195\n25131,48.883792877197266\n25132,74.67227172851562\n25133,64.29591369628906\n25134,37.471073150634766\n25135,34.748836517333984\n25136,39.0688591003418\n25137,50.15739059448242\n25138,58.61818313598633\n25139,51.05161666870117\n25140,68.51707458496094\n25141,69.11541748046875\n25142,38.2058219909668\n25143,30.4456729888916\n25144,40.11953353881836\n25145,48.400978088378906\n25146,73.39252471923828\n25147,50.190093994140625\n25148,86.23633575439453\n25149,69.42806243896484\n25150,36.77878952026367\n25151,28.903749465942383\n25152,39.21803283691406\n25153,48.335933685302734\n25154,70.15086364746094\n25155,50.17454528808594\n25156,82.76757049560547\n25157,67.03498077392578\n25158,39.275062561035156\n25159,28.414663314819336\n25160,34.616329193115234\n25161,45.30859375\n25162,67.00935363769531\n25163,43.514427185058594\n25164,78.42224884033203\n25165,65.7912826538086\n25166,38.862510681152344\n25167,33.246910095214844\n25168,39.24409484863281\n25169,49.73752975463867\n25170,61.90766143798828\n25171,49.916236877441406\n25172,73.25199890136719\n25173,68.55384063720703\n25174,33.8163948059082\n25175,29.200910568237305\n25176,37.58695602416992\n25177,48.50198745727539\n25178,68.8836441040039\n25179,50.92548751831055\n25180,80.40240478515625\n25181,66.0773696899414\n25182,37.8513298034668\n25183,30.525041580200195\n25184,38.71687316894531\n25185,49.088890075683594\n25186,65.18509674072266\n25187,49.43614959716797\n25188,74.32555389404297\n25189,62.50253677368164\n25190,40.989356994628906\n25191,30.546812057495117\n25192,40.20962142944336\n25193,44.260257720947266\n25194,67.01632690429688\n25195,44.71054458618164\n25196,77.38607788085938\n25197,66.25637817382812\n25198,41.84470748901367\n25199,33.82503128051758\n25200,35.56476593017578\n25201,45.88618850708008\n25202,65.75178527832031\n25203,43.83113098144531\n25204,76.41117095947266\n25205,68.99822235107422\n25206,38.14836120605469\n25207,29.023130416870117\n25208,39.58658981323242\n25209,49.48844909667969\n25210,66.96345520019531\n25211,50.16107940673828\n25212,78.45360565185547\n25213,64.78014373779297\n25214,37.035789489746094\n25215,31.500469207763672\n25216,38.363590240478516\n25217,46.87003707885742\n25218,65.87239074707031\n25219,48.214454650878906\n25220,76.20987701416016\n25221,67.63427734375\n25222,34.91203689575195\n25223,29.826427459716797\n25224,40.63455581665039\n25225,51.273948669433594\n25226,68.00404357910156\n25227,53.795894622802734\n25228,77.68314361572266\n25229,64.62657928466797\n25230,38.33736038208008\n25231,32.427677154541016\n25232,38.02296829223633\n25233,49.45903015136719\n25234,66.74410247802734\n25235,49.23707962036133\n25236,77.1020278930664\n25237,65.56501770019531\n25238,36.8634147644043\n25239,30.03661346435547\n25240,38.795101165771484\n25241,48.65126419067383\n25242,63.68183135986328\n25243,49.4908332824707\n25244,75.23048400878906\n25245,64.93513488769531\n25246,42.2269287109375\n25247,34.48817825317383\n25248,32.93299102783203\n25249,40.07280349731445\n25250,62.36351776123047\n25251,37.91725540161133\n25252,71.69694519042969\n25253,69.28453063964844\n25254,42.06699752807617\n25255,29.723676681518555\n25256,33.83134078979492\n25257,44.631591796875\n25258,65.94599914550781\n25259,41.43498611450195\n25260,78.79047393798828\n25261,65.47307586669922\n25262,37.230377197265625\n25263,30.886165618896484\n25264,37.984317779541016\n25265,48.13088607788086\n25266,66.25393676757812\n25267,48.77294158935547\n25268,77.52033233642578\n25269,66.8203353881836\n25270,39.461063385009766\n25271,30.221702575683594\n25272,37.48694610595703\n25273,47.780723571777344\n25274,64.85675048828125\n25275,46.919132232666016\n25276,74.95452880859375\n25277,65.16373443603516\n25278,36.76552963256836\n25279,27.29006576538086\n25280,42.20426559448242\n25281,50.63260269165039\n25282,60.03379821777344\n25283,52.19074249267578\n25284,73.5516586303711\n25285,67.2990493774414\n25286,35.52356719970703\n25287,30.590967178344727\n25288,35.70535659790039\n25289,45.91526794433594\n25290,61.462764739990234\n25291,47.013275146484375\n25292,72.43567657470703\n25293,67.08538055419922\n25294,40.280460357666016\n25295,30.017379760742188\n25296,41.74612808227539\n25297,51.290340423583984\n25298,62.90180969238281\n25299,51.304161071777344\n25300,75.2729721069336\n25301,67.73853302001953\n25302,37.201934814453125\n25303,31.83099365234375\n25304,36.029212951660156\n25305,49.19906997680664\n25306,65.90774536132812\n25307,48.78384780883789\n25308,79.41881561279297\n25309,69.38470458984375\n25310,36.8482780456543\n25311,35.82119369506836\n25312,37.66318130493164\n25313,55.71124267578125\n25314,60.368221282958984\n25315,55.2923583984375\n25316,71.64112854003906\n25317,66.9359359741211\n25318,37.96232604980469\n25319,30.118541717529297\n25320,39.87334442138672\n25321,47.227542877197266\n25322,63.119407653808594\n25323,48.68564224243164\n25324,74.70404052734375\n25325,65.4745864868164\n25326,36.77525329589844\n25327,30.860715866088867\n25328,35.45545196533203\n25329,46.89199447631836\n25330,62.65150451660156\n25331,46.667091369628906\n25332,74.9571762084961\n25333,68.2161636352539\n25334,35.817291259765625\n25335,30.33668327331543\n25336,33.95904541015625\n25337,48.8435173034668\n25338,66.57795715332031\n25339,48.0074462890625\n25340,78.2270278930664\n25341,46.64194869995117\n25342,40.96443557739258\n25343,22.617238998413086\n25344,49.459651947021484\n25345,37.53007125854492\n25346,64.4832534790039\n25347,41.23026657104492\n25348,74.0208511352539\n25349,66.865478515625\n25350,40.52891159057617\n25351,30.74892234802246\n25352,32.97673797607422\n25353,44.12294006347656\n25354,62.36762237548828\n25355,41.09242630004883\n25356,76.84625244140625\n25357,64.1069107055664\n25358,40.562156677246094\n25359,31.023788452148438\n25360,37.499698638916016\n25361,45.22664260864258\n25362,60.971065521240234\n25363,44.041656494140625\n25364,76.59419250488281\n25365,61.50421142578125\n25366,34.89349365234375\n25367,29.789581298828125\n25368,37.50590896606445\n25369,47.721378326416016\n25370,58.7467041015625\n25371,48.65874481201172\n25372,70.26315307617188\n25373,62.157691955566406\n25374,38.910797119140625\n25375,35.105201721191406\n25376,40.3422737121582\n25377,48.955352783203125\n25378,58.2809944152832\n25379,49.83938217163086\n25380,66.94073486328125\n25381,66.58468627929688\n25382,37.083431243896484\n25383,30.322967529296875\n25384,34.75212097167969\n25385,49.64207077026367\n25386,59.05342483520508\n25387,47.84830856323242\n25388,71.39789581298828\n25389,71.72057342529297\n25390,31.260848999023438\n25391,24.63662338256836\n25392,40.617103576660156\n25393,53.0679817199707\n25394,76.74348449707031\n25395,56.783241271972656\n25396,87.3809585571289\n25397,68.01200103759766\n25398,39.39095687866211\n25399,34.590667724609375\n25400,34.85603713989258\n25401,50.51092529296875\n25402,64.90005493164062\n25403,48.196868896484375\n25404,75.76770782470703\n25405,65.95240783691406\n25406,37.38355255126953\n25407,28.79468536376953\n25408,38.15085220336914\n25409,48.37250518798828\n25410,63.621578216552734\n25411,48.60347366333008\n25412,76.2408447265625\n25413,67.16697692871094\n25414,32.58159637451172\n25415,27.488811492919922\n25416,39.04405975341797\n25417,48.03985595703125\n25418,65.29862213134766\n25419,51.43363952636719\n25420,78.33274841308594\n25421,62.13228225708008\n25422,35.48435974121094\n25423,31.489017486572266\n25424,37.49070358276367\n25425,46.979801177978516\n25426,53.67483901977539\n25427,47.96780776977539\n25428,65.7704086303711\n25429,66.74617767333984\n25430,36.03584289550781\n25431,32.692649841308594\n25432,34.22047424316406\n25433,50.50010681152344\n25434,60.18021774291992\n25435,49.157737731933594\n25436,71.57962799072266\n25437,67.16697692871094\n25438,32.58159637451172\n25439,27.488811492919922\n25440,39.04405975341797\n25441,48.03985595703125\n25442,65.29862213134766\n25443,51.43363952636719\n25444,78.33274841308594\n25445,68.46076965332031\n25446,36.53678512573242\n25447,28.067983627319336\n25448,36.35730743408203\n25449,46.783878326416016\n25450,67.92552947998047\n25451,47.14792251586914\n25452,79.24877166748047\n25453,64.18607330322266\n25454,38.79528045654297\n25455,31.7093505859375\n25456,38.85514450073242\n25457,45.954071044921875\n25458,60.65486526489258\n25459,46.6573600769043\n25460,71.73928833007812\n25461,66.18253326416016\n25462,37.37022399902344\n25463,33.71729278564453\n25464,38.21266555786133\n25465,52.75745391845703\n25466,62.278228759765625\n25467,52.38023376464844\n25468,72.72025299072266\n25469,63.393489837646484\n25470,33.366458892822266\n25471,29.32537078857422\n25472,34.97256851196289\n25473,42.5834846496582\n25474,58.59904479980469\n25475,44.78713607788086\n25476,74.71630096435547\n25477,48.40796661376953\n25478,38.25967025756836\n25479,25.33075714111328\n25480,33.14323043823242\n25481,28.958145141601562\n25482,54.446624755859375\n25483,28.424707412719727\n25484,65.01699829101562\n25485,64.57306671142578\n25486,33.95494079589844\n25487,30.214601516723633\n25488,36.64600372314453\n25489,50.598907470703125\n25490,62.52202606201172\n25491,51.12920379638672\n25492,72.93631744384766\n25493,65.18672180175781\n25494,40.700714111328125\n25495,27.5336971282959\n25496,39.71012496948242\n25497,46.5728645324707\n25498,68.95126342773438\n25499,46.00627899169922\n25500,85.564453125\n25501,66.5447006225586\n25502,41.45537185668945\n25503,33.49861145019531\n25504,36.83418273925781\n25505,45.756839752197266\n25506,62.05345153808594\n25507,44.51620101928711\n25508,73.0192642211914\n25509,66.68074798583984\n25510,34.96329879760742\n25511,30.087350845336914\n25512,39.39275360107422\n25513,48.51173782348633\n25514,67.8953628540039\n25515,51.05629348754883\n25516,79.18780517578125\n25517,65.93423461914062\n25518,35.267215728759766\n25519,29.22706413269043\n25520,37.06431198120117\n25521,45.73086929321289\n25522,62.156150817871094\n25523,47.29158020019531\n25524,73.5101318359375\n25525,65.48828125\n25526,37.35694122314453\n25527,30.806917190551758\n25528,36.981163024902344\n25529,48.73379135131836\n25530,66.63713836669922\n25531,48.378910064697266\n25532,77.98196411132812\n25533,66.92247772216797\n25534,38.65642547607422\n25535,31.730701446533203\n25536,37.315059661865234\n25537,47.510433197021484\n25538,66.00215148925781\n25539,47.48210906982422\n25540,76.2750244140625\n25541,67.26118469238281\n25542,37.25360870361328\n25543,28.958589553833008\n25544,36.685489654541016\n25545,48.84687423706055\n25546,64.45880889892578\n25547,48.3311767578125\n25548,76.48501586914062\n25549,62.58595657348633\n25550,37.980430603027344\n25551,31.77613067626953\n25552,43.425682067871094\n25553,47.59341049194336\n25554,60.917762756347656\n25555,50.46875762939453\n25556,74.27340698242188\n25557,68.59967803955078\n25558,38.06199645996094\n25559,30.250343322753906\n25560,38.22633743286133\n25561,51.395084381103516\n25562,68.56104278564453\n25563,51.048221588134766\n25564,79.21041870117188\n25565,61.710697174072266\n25566,38.04568862915039\n25567,29.715213775634766\n25568,45.913082122802734\n25569,47.62749481201172\n25570,67.66207122802734\n25571,51.604488372802734\n25572,78.98941802978516\n25573,62.060787200927734\n25574,37.29820251464844\n25575,30.17529296875\n25576,34.76955032348633\n25577,44.613128662109375\n25578,61.83723068237305\n25579,43.65730285644531\n25580,71.92892456054688\n25581,67.21422576904297\n25582,40.85218048095703\n25583,32.07853317260742\n25584,37.092063903808594\n25585,47.17049789428711\n25586,67.77288818359375\n25587,46.00922775268555\n25588,77.06925964355469\n25589,65.42072296142578\n25590,39.701988220214844\n25591,29.14719581604004\n25592,39.34244155883789\n25593,49.544952392578125\n25594,69.65478515625\n25595,48.871036529541016\n25596,80.03873443603516\n25597,64.12895965576172\n25598,34.09486389160156\n25599,32.825599670410156\n25600,37.957801818847656\n25601,48.266510009765625\n25602,62.64762496948242\n25603,50.92082595825195\n25604,73.43814849853516\n25605,66.56242370605469\n25606,36.66556167602539\n25607,29.778213500976562\n25608,35.95884704589844\n25609,42.61986541748047\n25610,69.76211547851562\n25611,44.23579788208008\n25612,80.43258666992188\n25613,65.0829849243164\n25614,33.14600372314453\n25615,30.99981689453125\n25616,39.2020149230957\n25617,53.928653717041016\n25618,60.9493522644043\n25619,55.55048751831055\n25620,72.33418273925781\n25621,66.79501342773438\n25622,39.920345306396484\n25623,29.296951293945312\n25624,38.4140510559082\n25625,46.970211029052734\n25626,64.77162170410156\n25627,46.47174072265625\n25628,78.27198791503906\n25629,67.80966186523438\n25630,37.8348274230957\n25631,30.693387985229492\n25632,37.28004837036133\n25633,50.1544189453125\n25634,65.40450286865234\n25635,49.65916061401367\n25636,77.28142547607422\n25637,65.36774444580078\n25638,39.2093391418457\n25639,29.61039924621582\n25640,37.13262939453125\n25641,47.98756408691406\n25642,64.58258819580078\n25643,46.742225646972656\n25644,74.91822052001953\n25645,68.47035217285156\n25646,38.09657669067383\n25647,27.476139068603516\n25648,41.48348617553711\n25649,49.903011322021484\n25650,66.23330688476562\n25651,51.242149353027344\n25652,82.2230224609375\n25653,65.19623565673828\n25654,39.54397964477539\n25655,32.24299240112305\n25656,39.8335075378418\n25657,49.00322341918945\n25658,64.98882293701172\n25659,49.21188735961914\n25660,77.24613952636719\n25661,60.749752044677734\n25662,36.23319625854492\n25663,31.633655548095703\n25664,43.813438415527344\n25665,47.462135314941406\n25666,66.19868469238281\n25667,51.62687683105469\n25668,76.21562194824219\n25669,68.24464416503906\n25670,38.611942291259766\n25671,30.735166549682617\n25672,36.09797668457031\n25673,47.919010162353516\n25674,65.16282653808594\n25675,47.06930923461914\n25676,77.91253662109375\n25677,68.7490463256836\n25678,41.768211364746094\n25679,30.656131744384766\n25680,38.655487060546875\n25681,46.96054458618164\n25682,68.66490173339844\n25683,46.29815673828125\n25684,79.22881317138672\n25685,50.42822265625\n25686,43.089622497558594\n25687,21.63701629638672\n25688,43.064945220947266\n25689,33.683650970458984\n25690,62.71307373046875\n25691,34.1962890625\n25692,73.01410675048828\n25693,64.53144073486328\n25694,36.547523498535156\n25695,28.122840881347656\n25696,34.019065856933594\n25697,47.037052154541016\n25698,59.21914291381836\n25699,45.214054107666016\n25700,75.87147521972656\n25701,66.19671630859375\n25702,36.59880828857422\n25703,31.560810089111328\n25704,37.375362396240234\n25705,50.10161209106445\n25706,64.4322509765625\n25707,50.28994369506836\n25708,74.72232818603516\n25709,68.20359802246094\n25710,37.931678771972656\n25711,32.081153869628906\n25712,35.19566345214844\n25713,50.895626068115234\n25714,63.22706985473633\n25715,49.08085632324219\n25716,75.73039245605469\n25717,64.27361297607422\n25718,35.72034454345703\n25719,31.555227279663086\n25720,38.193748474121094\n25721,48.6936149597168\n25722,58.295875549316406\n25723,49.80534362792969\n25724,71.27653503417969\n25725,65.63702392578125\n25726,37.662654876708984\n25727,31.836923599243164\n25728,36.38691329956055\n25729,48.22798156738281\n25730,59.16692352294922\n25731,47.67534255981445\n25732,71.05524444580078\n25733,68.5477066040039\n25734,35.146907806396484\n25735,28.458356857299805\n25736,40.80774688720703\n25737,52.770606994628906\n25738,65.08858489990234\n25739,54.48918151855469\n25740,78.38156127929688\n25741,66.37808990478516\n25742,35.53509521484375\n25743,31.170127868652344\n25744,38.39349365234375\n25745,50.76095962524414\n25746,62.49988555908203\n25747,51.88429641723633\n25748,75.86104583740234\n25749,64.51903533935547\n25750,38.16997528076172\n25751,31.049501419067383\n25752,38.56423568725586\n25753,47.84074783325195\n25754,60.6180419921875\n25755,48.11483383178711\n25756,71.70795440673828\n25757,60.67098617553711\n25758,37.670005798339844\n25759,27.11680793762207\n25760,40.79554748535156\n25761,42.92646408081055\n25762,64.8905258178711\n25763,45.15454864501953\n25764,75.61998748779297\n25765,47.43611145019531\n25766,41.79607391357422\n25767,11.983470916748047\n25768,38.0580940246582\n25769,25.02094078063965\n25770,68.41349792480469\n25771,24.226667404174805\n25772,82.52946472167969\n25773,65.6044921875\n25774,40.08448791503906\n25775,35.72739028930664\n25776,41.93233871459961\n25777,54.693214416503906\n25778,64.54838562011719\n25779,54.64753341674805\n25780,77.86771392822266\n25781,64.25080108642578\n25782,44.30259704589844\n25783,33.4101448059082\n25784,41.77467727661133\n25785,48.616397857666016\n25786,60.33542251586914\n25787,47.30868148803711\n25788,70.79691314697266\n25789,73.11050415039062\n25790,42.127586364746094\n25791,35.92030334472656\n25792,38.828121185302734\n25793,53.917572021484375\n25794,63.578346252441406\n25795,52.186622619628906\n25796,77.27730560302734\n25797,65.94039916992188\n25798,35.83192825317383\n25799,28.355409622192383\n25800,39.347740173339844\n25801,48.172523498535156\n25802,63.30528259277344\n25803,49.78348922729492\n25804,76.50193786621094\n25805,69.06879425048828\n25806,36.06514358520508\n25807,29.929073333740234\n25808,34.792110443115234\n25809,49.7099494934082\n25810,68.48612213134766\n25811,49.00318908691406\n25812,79.94204711914062\n25813,65.72320556640625\n25814,36.555152893066406\n25815,24.84817123413086\n25816,34.268455505371094\n25817,40.81293869018555\n25818,70.31242370605469\n25819,41.15452194213867\n25820,82.11883544921875\n25821,64.96903991699219\n25822,38.43952941894531\n25823,30.562646865844727\n25824,39.65205383300781\n25825,44.853912353515625\n25826,63.19462203979492\n25827,46.56845474243164\n25828,77.23692321777344\n25829,71.40098571777344\n25830,37.254730224609375\n25831,28.48212242126465\n25832,39.836891174316406\n25833,48.339290618896484\n25834,74.49310302734375\n25835,50.49666213989258\n25836,87.12566375732422\n25837,64.62918090820312\n25838,35.22815704345703\n25839,28.889076232910156\n25840,39.036529541015625\n25841,48.13134002685547\n25842,63.67070770263672\n25843,49.9889030456543\n25844,75.18323516845703\n25845,67.90689086914062\n25846,34.44114303588867\n25847,28.334848403930664\n25848,37.233558654785156\n25849,44.760135650634766\n25850,66.65462493896484\n25851,47.468021392822266\n25852,80.44501495361328\n25853,65.96351623535156\n25854,39.39530563354492\n25855,31.28959846496582\n25856,36.50407791137695\n25857,48.850589752197266\n25858,62.820796966552734\n25859,47.25405502319336\n25860,72.7674331665039\n25861,67.41812133789062\n25862,36.09905242919922\n25863,30.028249740600586\n25864,37.52272415161133\n25865,50.97015380859375\n25866,63.52425003051758\n25867,51.05684280395508\n25868,76.40840148925781\n25869,68.92256164550781\n25870,40.988433837890625\n25871,33.360809326171875\n25872,36.67943572998047\n25873,52.142879486083984\n25874,67.35120391845703\n25875,49.41215133666992\n25876,80.06641387939453\n25877,66.67230224609375\n25878,39.601341247558594\n25879,30.07568359375\n25880,39.91858673095703\n25881,47.879459381103516\n25882,64.37863159179688\n25883,48.262123107910156\n25884,72.51154327392578\n25885,68.30206298828125\n25886,39.22344970703125\n25887,31.073135375976562\n25888,39.09977722167969\n25889,49.9891242980957\n25890,62.54880142211914\n25891,49.8023567199707\n25892,75.4542007446289\n25893,65.41293334960938\n25894,36.390647888183594\n25895,29.97920799255371\n25896,40.9524040222168\n25897,50.18742370605469\n25898,66.81108093261719\n25899,52.1304931640625\n25900,79.27012634277344\n25901,61.27118682861328\n25902,35.39287185668945\n25903,28.33420181274414\n25904,37.976402282714844\n25905,47.88481903076172\n25906,61.67213821411133\n25907,48.61758041381836\n25908,71.76445770263672\n25909,66.18899536132812\n25910,38.24278259277344\n25911,26.95863151550293\n25912,37.06365966796875\n25913,47.8902473449707\n25914,68.72693634033203\n25915,46.93138885498047\n25916,81.37693786621094\n25917,69.4484634399414\n25918,36.36537170410156\n25919,29.807178497314453\n25920,37.95040512084961\n25921,50.79973602294922\n25922,68.48875427246094\n25923,51.321205139160156\n25924,78.87919616699219\n25925,68.07830810546875\n25926,43.23607635498047\n25927,32.40220260620117\n25928,41.095855712890625\n25929,45.92756652832031\n25930,64.70462799072266\n25931,45.89744567871094\n25932,79.77335357666016\n25933,66.15044403076172\n25934,35.2586555480957\n25935,31.317943572998047\n25936,36.01205825805664\n25937,50.169769287109375\n25938,60.10062026977539\n25939,50.178314208984375\n25940,72.40669250488281\n25941,65.99703216552734\n25942,36.1840705871582\n25943,30.615583419799805\n25944,33.359130859375\n25945,46.752986907958984\n25946,60.49238586425781\n25947,45.58100891113281\n25948,74.22354125976562\n25949,66.440673828125\n25950,38.20756912231445\n25951,33.00244903564453\n25952,36.8537712097168\n25953,49.5195426940918\n25954,63.72899627685547\n25955,48.91475296020508\n25956,73.89063262939453\n25957,68.23159790039062\n25958,37.3440055847168\n25959,32.89176559448242\n25960,40.497257232666016\n25961,54.265464782714844\n25962,66.87462615966797\n25963,55.06089401245117\n25964,78.07431030273438\n25965,67.83892059326172\n25966,36.02406692504883\n25967,29.661962509155273\n25968,42.161441802978516\n25969,49.71866226196289\n25970,65.04497528076172\n25971,52.785369873046875\n25972,78.82488250732422\n25973,64.28093719482422\n25974,37.0643424987793\n25975,27.781112670898438\n25976,39.156089782714844\n25977,44.90612030029297\n25978,69.67069244384766\n25979,46.69792556762695\n25980,80.14478302001953\n25981,64.77228546142578\n25982,35.3696174621582\n25983,28.653352737426758\n25984,38.092529296875\n25985,49.98928451538086\n25986,65.20708465576172\n25987,50.622596740722656\n25988,77.09146881103516\n25989,67.1647720336914\n25990,38.21322250366211\n25991,29.387866973876953\n25992,38.124794006347656\n25993,49.38741683959961\n25994,69.80081939697266\n25995,49.15743637084961\n25996,81.12731170654297\n25997,64.15896606445312\n25998,39.3669319152832\n25999,24.343650817871094\n26000,38.43931198120117\n26001,47.13678741455078\n26002,74.08770751953125\n26003,45.92158889770508\n26004,89.0398178100586\n26005,67.00200653076172\n26006,41.323692321777344\n26007,31.777400970458984\n26008,35.5235481262207\n26009,44.762447357177734\n26010,62.81067657470703\n26011,42.924278259277344\n26012,75.157470703125\n26013,65.9886703491211\n26014,39.000511169433594\n26015,29.947933197021484\n26016,40.20430374145508\n26017,45.94708251953125\n26018,67.32833862304688\n26019,47.31779479980469\n26020,77.53697204589844\n26021,67.0932388305664\n26022,39.441837310791016\n26023,30.52359962463379\n26024,39.671504974365234\n26025,48.61936950683594\n26026,68.5586166381836\n26027,48.953067779541016\n26028,80.26558685302734\n26029,67.91766357421875\n26030,38.117530822753906\n26031,30.65858268737793\n26032,38.511898040771484\n26033,48.92280960083008\n26034,64.48809814453125\n26035,49.236045837402344\n26036,76.93256378173828\n26037,68.66284942626953\n26038,38.275917053222656\n26039,30.28153419494629\n26040,36.56871032714844\n26041,45.790077209472656\n26042,64.22274780273438\n26043,46.00849151611328\n26044,76.75543975830078\n26045,65.15498352050781\n26046,38.85811996459961\n26047,28.393115997314453\n26048,39.1368293762207\n26049,42.50050354003906\n26050,67.78662109375\n26051,44.14540100097656\n26052,80.74896240234375\n26053,68.5711441040039\n26054,37.58435821533203\n26055,30.860912322998047\n26056,37.62797164916992\n26057,49.261478424072266\n26058,67.04257202148438\n26059,49.493011474609375\n26060,78.2042236328125\n26061,65.54436492919922\n26062,37.116943359375\n26063,30.957406997680664\n26064,39.37678909301758\n26065,49.439430236816406\n26066,67.45203399658203\n26067,50.60087203979492\n26068,79.51908874511719\n26069,65.32484436035156\n26070,40.25574493408203\n26071,29.582883834838867\n26072,38.32074737548828\n26073,46.7274169921875\n26074,65.58509063720703\n26075,45.92564010620117\n26076,78.84876251220703\n26077,67.3118896484375\n26078,38.803558349609375\n26079,29.264163970947266\n26080,38.44971466064453\n26081,45.44927215576172\n26082,68.97029113769531\n26083,46.308937072753906\n26084,78.06392669677734\n26085,64.65032196044922\n26086,37.6103515625\n26087,28.301532745361328\n26088,35.27372741699219\n26089,46.28313064575195\n26090,64.5746841430664\n26091,45.154380798339844\n26092,73.49639892578125\n26093,66.54956817626953\n26094,38.74467468261719\n26095,28.97731590270996\n26096,38.78501892089844\n26097,48.87105941772461\n26098,70.60404205322266\n26099,48.7374382019043\n26100,82.18136596679688\n26101,46.87493896484375\n26102,39.459896087646484\n26103,18.620908737182617\n26104,46.40185546875\n26105,33.078857421875\n26106,65.2250747680664\n26107,36.71452713012695\n26108,76.42277526855469\n26109,69.4813232421875\n26110,36.729766845703125\n26111,34.23701858520508\n26112,34.77012634277344\n26113,55.22043991088867\n26114,62.50088119506836\n26115,52.99521255493164\n26116,75.27544403076172\n26117,65.93617248535156\n26118,38.909698486328125\n26119,31.189773559570312\n26120,37.711761474609375\n26121,46.958316802978516\n26122,66.02952575683594\n26123,46.896629333496094\n26124,75.91279602050781\n26125,67.131591796875\n26126,41.460330963134766\n26127,33.594032287597656\n26128,37.114959716796875\n26129,49.69947052001953\n26130,63.54751205444336\n26131,47.50441360473633\n26132,74.77444458007812\n26133,67.09867858886719\n26134,39.4299430847168\n26135,32.12091827392578\n26136,36.309303283691406\n26137,50.5360107421875\n26138,63.755401611328125\n26139,48.49496841430664\n26140,76.65604400634766\n26141,66.00975036621094\n26142,39.39226150512695\n26143,30.17315673828125\n26144,42.40357208251953\n26145,48.0811653137207\n26146,69.05681610107422\n26147,49.908416748046875\n26148,79.33699035644531\n26149,66.53955078125\n26150,39.23832321166992\n26151,29.602508544921875\n26152,40.0283088684082\n26153,48.16126251220703\n26154,70.76506042480469\n26155,48.87586975097656\n26156,83.60392761230469\n26157,65.83800506591797\n26158,38.592933654785156\n26159,31.30755043029785\n26160,34.55999755859375\n26161,43.07695770263672\n26162,64.2503662109375\n26163,42.58472442626953\n26164,76.496826171875\n26165,64.7280044555664\n26166,37.46839141845703\n26167,28.196937561035156\n26168,40.7433967590332\n26169,47.675785064697266\n26170,65.79110717773438\n26171,49.26070022583008\n26172,77.78321075439453\n26173,65.74263000488281\n26174,38.91659927368164\n26175,32.28043746948242\n26176,38.96016311645508\n26177,45.52543258666992\n26178,64.73441314697266\n26179,46.810604095458984\n26180,77.6593246459961\n26181,63.383697509765625\n26182,36.64069366455078\n26183,30.181167602539062\n26184,36.38581085205078\n26185,45.33136749267578\n26186,60.46689987182617\n26187,45.68587875366211\n26188,71.18891143798828\n26189,66.89030456542969\n26190,37.667449951171875\n26191,29.905405044555664\n26192,38.939308166503906\n26193,47.69244384765625\n26194,67.04356384277344\n26195,48.74909210205078\n26196,81.31737518310547\n26197,68.87396240234375\n26198,39.70610046386719\n26199,31.435087203979492\n26200,37.78449249267578\n26201,49.89801025390625\n26202,66.36991119384766\n26203,49.058753967285156\n26204,76.92752838134766\n26205,69.34449768066406\n26206,37.108421325683594\n26207,27.776945114135742\n26208,38.12611389160156\n26209,51.039710998535156\n26210,67.07371520996094\n26211,50.85191345214844\n26212,81.03726959228516\n26213,67.80636596679688\n26214,40.968528747558594\n26215,30.97376823425293\n26216,37.01021194458008\n26217,46.223907470703125\n26218,65.05925750732422\n26219,44.94196319580078\n26220,79.28511047363281\n26221,64.68971252441406\n26222,37.72230529785156\n26223,31.641756057739258\n26224,39.19295120239258\n26225,49.59233856201172\n26226,62.885231018066406\n26227,50.102622985839844\n26228,73.00948333740234\n26229,67.79493713378906\n26230,37.14448547363281\n26231,31.85012435913086\n26232,36.1414909362793\n26233,54.12184143066406\n26234,66.81742095947266\n26235,52.181365966796875\n26236,79.38934326171875\n26237,69.1412353515625\n26238,37.6197395324707\n26239,34.0557975769043\n26240,37.936771392822266\n26241,50.51842498779297\n26242,65.04996490478516\n26243,51.10277557373047\n26244,77.04415130615234\n26245,66.46876525878906\n26246,37.30997848510742\n26247,31.953588485717773\n26248,38.44548797607422\n26249,48.81612014770508\n26250,64.51396179199219\n26251,49.710899353027344\n26252,76.11157989501953\n26253,66.15503692626953\n26254,35.49856948852539\n26255,30.814895629882812\n26256,37.26150131225586\n26257,52.224945068359375\n26258,66.46980285644531\n26259,52.20071029663086\n26260,79.33800506591797\n26261,64.42472076416016\n26262,35.998069763183594\n26263,28.96225929260254\n26264,39.149330139160156\n26265,48.4986686706543\n26266,65.0423355102539\n26267,49.81169128417969\n26268,77.95582580566406\n26269,64.90008544921875\n26270,35.368995666503906\n26271,26.789281845092773\n26272,37.83623123168945\n26273,43.3342170715332\n26274,65.53843688964844\n26275,45.62488555908203\n26276,78.25935363769531\n26277,67.21237182617188\n26278,40.98578643798828\n26279,31.882566452026367\n26280,37.750831604003906\n26281,50.980892181396484\n26282,69.61875915527344\n26283,48.73444366455078\n26284,84.33673095703125\n26285,67.9520034790039\n26286,36.4505615234375\n26287,28.688207626342773\n26288,33.06669616699219\n26289,41.53934097290039\n26290,63.71849060058594\n26291,41.836631774902344\n26292,77.5781021118164\n26293,70.4676742553711\n26294,41.838226318359375\n26295,32.1516227722168\n26296,35.88840866088867\n26297,47.40195083618164\n26298,65.86785888671875\n26299,45.41365432739258\n26300,76.26646423339844\n26301,63.613868713378906\n26302,36.07614517211914\n26303,30.395315170288086\n26304,36.83845520019531\n26305,47.183937072753906\n26306,63.005096435546875\n26307,47.68962860107422\n26308,73.6750259399414\n26309,66.21533966064453\n26310,41.34947204589844\n26311,34.518646240234375\n26312,36.031105041503906\n26313,47.11157989501953\n26314,65.6847152709961\n26315,45.26211929321289\n26316,75.25810241699219\n26317,70.45057678222656\n26318,31.568708419799805\n26319,28.325763702392578\n26320,40.18052673339844\n26321,57.05962371826172\n26322,63.698699951171875\n26323,59.332275390625\n26324,77.71788024902344\n26325,64.10774230957031\n26326,36.393402099609375\n26327,29.683834075927734\n26328,36.765830993652344\n26329,47.58456039428711\n26330,65.81254577636719\n26331,47.73268508911133\n26332,76.53219604492188\n26333,66.68248748779297\n26334,36.46010971069336\n26335,32.4710578918457\n26336,40.0034065246582\n26337,48.8235969543457\n26338,62.089927673339844\n26339,51.13644790649414\n26340,73.87788391113281\n26341,65.31380462646484\n26342,39.48679733276367\n26343,33.64703369140625\n26344,36.582557678222656\n26345,50.38098907470703\n26346,61.41680145263672\n26347,48.50408172607422\n26348,72.67048645019531\n26349,66.65697479248047\n26350,39.09421157836914\n26351,29.034408569335938\n26352,39.17158126831055\n26353,46.07012939453125\n26354,65.53203582763672\n26355,46.75846481323242\n26356,80.92483520507812\n26357,71.30233001708984\n26358,35.734657287597656\n26359,30.660186767578125\n26360,36.19477462768555\n26361,52.776432037353516\n26362,70.87376403808594\n26363,52.56081771850586\n26364,86.95927429199219\n26365,65.02493286132812\n26366,36.9547119140625\n26367,28.36760711669922\n26368,38.86437225341797\n26369,44.2424201965332\n26370,68.57662963867188\n26371,46.252471923828125\n26372,81.29639434814453\n26373,66.65380859375\n26374,42.03346252441406\n26375,32.249595642089844\n26376,36.57904815673828\n26377,42.826168060302734\n26378,64.91544342041016\n26379,41.886417388916016\n26380,77.28314971923828\n26381,64.65574645996094\n26382,37.95732498168945\n26383,30.35988426208496\n26384,36.29329299926758\n26385,48.52185821533203\n26386,63.51591110229492\n26387,47.2727165222168\n26388,74.1832046508789\n26389,66.1253662109375\n26390,33.29085159301758\n26391,28.910608291625977\n26392,37.34770584106445\n26393,50.652408599853516\n26394,61.6697998046875\n26395,51.99473190307617\n26396,76.793701171875\n26397,66.17986297607422\n26398,37.56782150268555\n26399,27.874610900878906\n26400,37.477787017822266\n26401,50.537994384765625\n26402,64.91015625\n26403,49.275089263916016\n26404,81.15718841552734\n26405,66.39598846435547\n26406,40.306434631347656\n26407,32.0166130065918\n26408,38.93353271484375\n26409,49.07997512817383\n26410,64.44100189208984\n26411,48.45077133178711\n26412,78.32774353027344\n26413,66.5238037109375\n26414,41.975852966308594\n26415,32.303466796875\n26416,36.79582214355469\n26417,45.385986328125\n26418,65.37191772460938\n26419,43.77507019042969\n26420,77.83570098876953\n26421,67.87971496582031\n26422,36.0667839050293\n26423,31.87193489074707\n26424,37.00642776489258\n26425,50.32633590698242\n26426,62.87483596801758\n26427,50.6965446472168\n26428,75.2081069946289\n26429,63.54198455810547\n26430,37.40134048461914\n26431,29.534242630004883\n26432,42.43745803833008\n26433,49.51493835449219\n26434,67.53848266601562\n26435,51.78260803222656\n26436,81.36759948730469\n26437,67.19441986083984\n26438,38.19527816772461\n26439,31.726669311523438\n26440,37.11543273925781\n26441,46.37861633300781\n26442,67.28456115722656\n26443,46.891510009765625\n26444,79.01097869873047\n26445,66.87030029296875\n26446,38.02544403076172\n26447,29.19464683532715\n26448,39.06828689575195\n26449,50.36351776123047\n26450,65.9569091796875\n26451,50.38115692138672\n26452,77.24517822265625\n26453,70.38371276855469\n26454,40.02642059326172\n26455,27.54425621032715\n26456,37.574729919433594\n26457,51.42795181274414\n26458,74.75430297851562\n26459,49.358890533447266\n26460,88.9134292602539\n26461,64.35576629638672\n26462,36.87336349487305\n26463,28.943801879882812\n26464,38.75049591064453\n26465,47.57807922363281\n26466,64.6032485961914\n26467,48.430362701416016\n26468,76.69513702392578\n26469,68.38472747802734\n26470,38.639137268066406\n26471,28.524017333984375\n26472,38.0914306640625\n26473,48.80930709838867\n26474,66.85812377929688\n26475,48.4386100769043\n26476,78.78398895263672\n26477,68.74215698242188\n26478,33.363975524902344\n26479,30.652767181396484\n26480,37.32141876220703\n26481,56.104515075683594\n26482,64.84577178955078\n26483,56.14213180541992\n26484,78.5545425415039\n26485,65.6851806640625\n26486,39.44768142700195\n26487,34.39506912231445\n26488,40.87464141845703\n26489,47.80799865722656\n26490,66.27228546142578\n26491,49.555076599121094\n26492,77.07527160644531\n26493,71.51895904541016\n26494,38.987815856933594\n26495,30.79037094116211\n26496,35.2988166809082\n26497,49.312679290771484\n26498,62.17820358276367\n26499,47.57505416870117\n26500,77.16890716552734\n26501,65.93160247802734\n26502,36.04221725463867\n26503,28.846773147583008\n26504,39.60972213745117\n26505,49.52587127685547\n26506,66.5700454711914\n26507,50.99217224121094\n26508,81.2491455078125\n26509,67.97237396240234\n26510,36.810604095458984\n26511,29.45468521118164\n26512,37.01124954223633\n26513,48.2713737487793\n26514,64.47417449951172\n26515,48.52674102783203\n26516,76.58998107910156\n26517,65.80493927001953\n26518,39.594764709472656\n26519,29.911375045776367\n26520,36.173221588134766\n26521,44.14461898803711\n26522,61.558868408203125\n26523,43.33633804321289\n26524,73.91166687011719\n26525,42.46471405029297\n26526,37.60927963256836\n26527,17.148273468017578\n26528,41.63261032104492\n26529,27.99765968322754\n26530,56.99544143676758\n26531,30.472515106201172\n26532,68.10675811767578\n26533,65.42213439941406\n26534,37.83612060546875\n26535,27.287120819091797\n26536,38.29684066772461\n26537,46.58013153076172\n26538,66.54183197021484\n26539,46.87862777709961\n26540,78.39656066894531\n26541,67.7779769897461\n26542,35.278568267822266\n26543,30.587068557739258\n26544,38.54328536987305\n26545,52.99522018432617\n26546,64.52901458740234\n26547,53.61248016357422\n26548,78.2971420288086\n26549,66.26629638671875\n26550,38.78780746459961\n26551,29.96390724182129\n26552,37.51006317138672\n26553,48.59457015991211\n26554,61.58782958984375\n26555,47.80729293823242\n26556,73.19822692871094\n26557,62.42182159423828\n26558,39.856693267822266\n26559,30.281082153320312\n26560,38.198524475097656\n26561,44.80305480957031\n26562,65.89249420166016\n26563,44.546966552734375\n26564,75.9613037109375\n26565,66.21974182128906\n26566,41.263614654541016\n26567,30.31126594543457\n26568,38.115379333496094\n26569,45.161956787109375\n26570,65.03107452392578\n26571,44.45524978637695\n26572,76.3205337524414\n26573,66.79473114013672\n26574,37.51689147949219\n26575,30.223888397216797\n26576,37.00749969482422\n26577,49.471500396728516\n26578,64.73858642578125\n26579,48.904197692871094\n26580,77.13025665283203\n26581,67.31791687011719\n26582,46.14634704589844\n26583,31.433603286743164\n26584,36.18535614013672\n26585,41.09400177001953\n26586,64.12459564208984\n26587,37.913330078125\n26588,76.69066619873047\n26589,67.04737854003906\n26590,39.46680450439453\n26591,30.83591079711914\n26592,37.87623596191406\n26593,46.21647262573242\n26594,65.286865234375\n26595,46.148521423339844\n26596,79.82868194580078\n26597,66.03784942626953\n26598,46.78213119506836\n26599,33.77353286743164\n26600,34.89611053466797\n26601,46.35019302368164\n26602,65.15733337402344\n26603,40.65168762207031\n26604,75.94332122802734\n26605,68.49132537841797\n26606,39.83186340332031\n26607,32.90320587158203\n26608,33.9615592956543\n26609,49.433719635009766\n26610,62.668006896972656\n26611,46.35231018066406\n26612,77.04103088378906\n26613,67.72405242919922\n26614,37.75585174560547\n26615,31.709901809692383\n26616,36.06538009643555\n26617,47.741336822509766\n26618,60.677207946777344\n26619,47.39628982543945\n26620,73.31243133544922\n26621,67.05988311767578\n26622,37.054744720458984\n26623,29.90361213684082\n26624,37.78828048706055\n26625,47.18064498901367\n26626,66.73336029052734\n26627,48.07048034667969\n26628,78.00214385986328\n26629,68.17494201660156\n26630,42.650962829589844\n26631,31.739194869995117\n26632,36.05994415283203\n26633,45.33316421508789\n26634,61.25672912597656\n26635,42.86760711669922\n26636,73.83821868896484\n26637,65.49810791015625\n26638,40.27985763549805\n26639,30.351608276367188\n26640,37.11538314819336\n26641,45.81913757324219\n26642,65.7415771484375\n26643,44.74340057373047\n26644,81.06055450439453\n26645,68.1729965209961\n26646,36.902069091796875\n26647,29.918651580810547\n26648,37.19261932373047\n26649,51.569820404052734\n26650,63.79829788208008\n26651,50.888671875\n26652,76.74640655517578\n26653,68.29179382324219\n26654,33.45439529418945\n26655,29.23621368408203\n26656,34.94834899902344\n26657,49.801395416259766\n26658,62.49179458618164\n26659,50.200721740722656\n26660,75.56725311279297\n26661,68.84371948242188\n26662,39.09722900390625\n26663,31.889102935791016\n26664,35.90309524536133\n26665,50.90818405151367\n26666,66.49826049804688\n26667,48.96672821044922\n26668,77.08612060546875\n26669,65.67684936523438\n26670,33.93913269042969\n26671,32.26347351074219\n26672,40.97545623779297\n26673,53.46156311035156\n26674,66.8404541015625\n26675,56.115413665771484\n26676,76.30879974365234\n26677,65.91736602783203\n26678,35.230716705322266\n26679,30.278749465942383\n26680,37.027252197265625\n26681,47.56022644042969\n26682,65.18535614013672\n26683,48.83828353881836\n26684,77.2612533569336\n26685,64.27452087402344\n26686,38.94709396362305\n26687,32.17164993286133\n26688,37.50747299194336\n26689,47.852630615234375\n26690,63.29149627685547\n26691,47.198612213134766\n26692,75.20994567871094\n26693,62.57298278808594\n26694,35.30742263793945\n26695,31.347944259643555\n26696,40.81910705566406\n26697,48.69575119018555\n26698,61.86054992675781\n26699,51.40946960449219\n26700,72.47586059570312\n26701,65.47281646728516\n26702,36.83944320678711\n26703,29.763492584228516\n26704,38.1483039855957\n26705,52.144569396972656\n26706,66.92676544189453\n26707,51.53504943847656\n26708,78.09500885009766\n26709,64.86141204833984\n26710,40.245967864990234\n26711,30.81655502319336\n26712,37.22225570678711\n26713,44.09880447387695\n26714,61.383636474609375\n26715,43.41107940673828\n26716,74.87495422363281\n26717,67.64151000976562\n26718,35.52409744262695\n26719,27.70287322998047\n26720,41.26639175415039\n26721,54.367210388183594\n26722,68.6173095703125\n26723,55.54761505126953\n26724,80.18489837646484\n26725,67.89268493652344\n26726,41.23828125\n26727,31.9666690826416\n26728,37.479373931884766\n26729,47.306209564208984\n26730,65.01445007324219\n26731,46.11474609375\n26732,77.74266052246094\n26733,65.53407287597656\n26734,37.610992431640625\n26735,32.107887268066406\n26736,34.29826736450195\n26737,48.710391998291016\n26738,60.353607177734375\n26739,46.775352478027344\n26740,72.39170837402344\n26741,66.16313171386719\n26742,37.2927360534668\n26743,30.165115356445312\n26744,37.77360153198242\n26745,46.31715774536133\n26746,69.77581024169922\n26747,47.417236328125\n26748,81.13089752197266\n26749,65.45357513427734\n26750,36.723731994628906\n26751,31.50737190246582\n26752,38.432762145996094\n26753,46.68001174926758\n26754,66.58084869384766\n26755,48.454261779785156\n26756,76.84945678710938\n26757,65.86672973632812\n26758,34.23653030395508\n26759,28.59243392944336\n26760,41.05131149291992\n26761,57.199981689453125\n26762,67.81294250488281\n26763,58.001888275146484\n26764,81.60840606689453\n26765,64.78071594238281\n26766,40.03321075439453\n26767,31.7001953125\n26768,39.29710006713867\n26769,49.246768951416016\n26770,63.3106575012207\n26771,48.55919647216797\n26772,76.4041519165039\n26773,67.1711196899414\n26774,37.50640106201172\n26775,31.67038917541504\n26776,38.18970489501953\n26777,49.92780685424805\n26778,63.747825622558594\n26779,50.24647521972656\n26780,75.69796752929688\n26781,61.47974395751953\n26782,39.13960266113281\n26783,32.91525650024414\n26784,40.08238983154297\n26785,47.06606674194336\n26786,60.849700927734375\n26787,47.90858840942383\n26788,69.69606018066406\n26789,68.38658142089844\n26790,35.41095733642578\n26791,31.94669532775879\n26792,31.37610626220703\n26793,54.24604415893555\n26794,59.10770797729492\n26795,50.31269454956055\n26796,74.4947509765625\n26797,68.11609649658203\n26798,42.40924835205078\n26799,28.888017654418945\n26800,36.82162094116211\n26801,43.142791748046875\n26802,67.37430572509766\n26803,41.857994079589844\n26804,78.22270202636719\n26805,66.94500732421875\n26806,33.90302276611328\n26807,31.612201690673828\n26808,36.330020904541016\n26809,49.95357894897461\n26810,60.11006546020508\n26811,51.105430603027344\n26812,71.61709594726562\n26813,66.96977233886719\n26814,39.40132141113281\n26815,32.3957633972168\n26816,37.691097259521484\n26817,49.2579231262207\n26818,65.54551696777344\n26819,48.527503967285156\n26820,77.93891906738281\n26821,61.5655517578125\n26822,40.14802551269531\n26823,32.69902038574219\n26824,37.95716094970703\n26825,42.51779556274414\n26826,57.34688949584961\n26827,42.65931701660156\n26828,69.41861724853516\n26829,67.31673431396484\n26830,35.942848205566406\n26831,29.27483558654785\n26832,39.377105712890625\n26833,48.519107818603516\n26834,70.3051528930664\n26835,50.500343322753906\n26836,79.60733032226562\n26837,67.65552520751953\n26838,43.643829345703125\n26839,30.365795135498047\n26840,34.20283508300781\n26841,42.7061653137207\n26842,68.72100067138672\n26843,39.31727600097656\n26844,83.49070739746094\n26845,62.074764251708984\n26846,38.252197265625\n26847,31.459699630737305\n26848,40.17892837524414\n26849,46.722904205322266\n26850,64.81714630126953\n26851,47.933738708496094\n26852,72.61717987060547\n26853,66.94078826904297\n26854,39.56792449951172\n26855,30.563844680786133\n26856,37.13178634643555\n26857,47.83586883544922\n26858,68.80397033691406\n26859,46.87074661254883\n26860,79.70346069335938\n26861,63.36328125\n26862,34.37670135498047\n26863,29.642623901367188\n26864,39.36686706542969\n26865,48.556495666503906\n26866,65.27864837646484\n26867,50.91695785522461\n26868,76.40137481689453\n26869,66.63590240478516\n26870,42.07406997680664\n26871,30.762102127075195\n26872,38.087074279785156\n26873,49.79538345336914\n26874,68.84215545654297\n26875,47.27238082885742\n26876,81.10565185546875\n26877,68.38655853271484\n26878,33.6641731262207\n26879,30.2764949798584\n26880,35.73348617553711\n26881,51.51068115234375\n26882,64.76776885986328\n26883,51.948246002197266\n26884,75.96231842041016\n26885,67.20648193359375\n26886,38.11806869506836\n26887,29.70111083984375\n26888,37.808528900146484\n26889,49.70923614501953\n26890,61.388362884521484\n26891,49.03990936279297\n26892,76.3770523071289\n26893,66.40159606933594\n26894,39.13664627075195\n26895,31.472301483154297\n26896,37.65920639038086\n26897,47.47500991821289\n26898,63.58076095581055\n26899,47.20085906982422\n26900,75.22234344482422\n26901,68.32521057128906\n26902,37.787532806396484\n26903,33.02423095703125\n26904,35.62735366821289\n26905,43.79807662963867\n26906,66.65209197998047\n26907,44.97764205932617\n26908,78.94041442871094\n26909,66.06414031982422\n26910,37.495361328125\n26911,30.56022071838379\n26912,38.826812744140625\n26913,49.53011703491211\n26914,65.02732849121094\n26915,49.968719482421875\n26916,77.97854614257812\n26917,64.18994140625\n26918,36.74386215209961\n26919,29.646076202392578\n26920,41.92251205444336\n26921,47.4390869140625\n26922,69.06327056884766\n26923,50.45658874511719\n26924,79.20852661132812\n26925,65.5281982421875\n26926,36.22731018066406\n26927,30.925674438476562\n26928,37.05907440185547\n26929,47.193580627441406\n26930,61.794342041015625\n26931,47.976905822753906\n26932,75.35245513916016\n26933,64.6178207397461\n26934,42.66115188598633\n26935,31.639501571655273\n26936,38.5725212097168\n26937,42.27505111694336\n26938,70.31874084472656\n26939,42.0787353515625\n26940,83.60198974609375\n26941,67.03961944580078\n26942,38.958736419677734\n26943,30.216154098510742\n26944,37.92176818847656\n26945,49.45292282104492\n26946,68.42588806152344\n26947,48.75070571899414\n26948,82.59998321533203\n26949,71.36650085449219\n26950,36.99013137817383\n26951,34.69260787963867\n26952,36.45314407348633\n26953,55.65843200683594\n26954,64.67731475830078\n26955,54.47465133666992\n26956,76.73204803466797\n26957,66.92572784423828\n26958,37.39922332763672\n26959,30.399494171142578\n26960,39.03455352783203\n26961,47.11711120605469\n26962,67.7206039428711\n26963,48.61941146850586\n26964,79.64347076416016\n26965,68.98423767089844\n26966,38.94923782348633\n26967,32.53102493286133\n26968,38.33386993408203\n26969,55.89912796020508\n26970,65.31327056884766\n26971,53.85514831542969\n26972,78.59598541259766\n26973,66.09102630615234\n26974,39.80820846557617\n26975,32.83445358276367\n26976,38.658409118652344\n26977,49.5154914855957\n26978,65.8296127319336\n26979,48.98143768310547\n26980,77.82524871826172\n26981,66.6451187133789\n26982,38.70945358276367\n26983,29.756990432739258\n26984,39.30158615112305\n26985,49.33647155761719\n26986,65.16871643066406\n26987,49.347110748291016\n26988,76.44193267822266\n26989,67.15311431884766\n26990,40.06706619262695\n26991,30.173627853393555\n26992,37.18427658081055\n26993,44.44313049316406\n26994,56.9054069519043\n26995,43.98164367675781\n26996,68.47337341308594\n26997,63.77687072753906\n26998,36.836883544921875\n26999,32.42105484008789\n27000,37.10350036621094\n27001,48.02601623535156\n27002,60.624664306640625\n27003,48.27001190185547\n27004,72.68431854248047\n27005,66.16227722167969\n27006,38.16744613647461\n27007,31.695178985595703\n27008,36.85378646850586\n27009,44.98377227783203\n27010,65.15259552001953\n27011,45.73130798339844\n27012,75.71049499511719\n27013,64.59635162353516\n27014,37.560386657714844\n27015,34.9511604309082\n27016,36.66735076904297\n27017,55.392967224121094\n27018,60.37934112548828\n27019,52.99928665161133\n27020,73.3033447265625\n27021,65.84394073486328\n27022,38.03376388549805\n27023,30.110095977783203\n27024,34.70417785644531\n27025,49.13642883300781\n27026,64.05199432373047\n27027,46.787071228027344\n27028,77.47669219970703\n27029,65.76163482666016\n27030,39.130897521972656\n27031,26.572490692138672\n27032,32.66838836669922\n27033,41.00139236450195\n27034,67.76921844482422\n27035,39.101322174072266\n27036,79.42914581298828\n27037,63.70425033569336\n27038,39.116825103759766\n27039,33.17938995361328\n27040,36.63675308227539\n27041,47.714107513427734\n27042,61.3253059387207\n27043,46.60258865356445\n27044,71.8592300415039\n27045,67.58958435058594\n27046,36.44675827026367\n27047,26.840200424194336\n27048,36.85892105102539\n27049,43.73991775512695\n27050,65.09205627441406\n27051,45.00792694091797\n27052,79.3863525390625\n27053,65.41309356689453\n27054,35.20745086669922\n27055,30.411962509155273\n27056,39.55059814453125\n27057,51.35685348510742\n27058,66.5654525756836\n27059,52.93339920043945\n27060,78.44144439697266\n27061,63.39240646362305\n27062,35.217323303222656\n27063,23.245119094848633\n27064,39.87998962402344\n27065,46.543174743652344\n27066,64.06616973876953\n27067,48.254310607910156\n27068,78.6681137084961\n27069,68.15315246582031\n27070,41.28080749511719\n27071,30.694602966308594\n27072,35.6966667175293\n27073,48.14509963989258\n27074,70.45911407470703\n27075,45.60666275024414\n27076,79.76226806640625\n27077,64.27725982666016\n27078,38.94822692871094\n27079,29.756397247314453\n27080,39.7841796875\n27081,44.346736907958984\n27082,68.56417083740234\n27083,45.812686920166016\n27084,81.19310760498047\n27085,64.9022216796875\n27086,38.529781341552734\n27087,31.04545021057129\n27088,37.743873596191406\n27089,48.86276626586914\n27090,65.2373046875\n27091,48.24650955200195\n27092,75.5864486694336\n27093,64.47955322265625\n27094,36.15094757080078\n27095,29.656957626342773\n27096,42.27294158935547\n27097,51.668460845947266\n27098,64.56307983398438\n27099,53.80049514770508\n27100,76.19612884521484\n27101,67.75587463378906\n27102,42.314125061035156\n27103,32.98963928222656\n27104,37.634071350097656\n27105,47.793174743652344\n27106,66.47504425048828\n27107,46.03676986694336\n27108,77.81603240966797\n27109,61.279903411865234\n27110,36.63825607299805\n27111,29.041980743408203\n27112,37.15910720825195\n27113,40.51491928100586\n27114,61.6695556640625\n27115,42.35005569458008\n27116,72.54006958007812\n27117,69.45150756835938\n27118,41.07565689086914\n27119,32.21637725830078\n27120,39.69595718383789\n27121,48.82353210449219\n27122,69.35164642333984\n27123,48.72820281982422\n27124,84.87068176269531\n"
  },
  {
    "path": "ML/Kaggles/Facial Keypoint Detection Competition/train.py",
    "content": "import torch\nfrom dataset import FacialKeypointDataset\nfrom torch import nn, optim\nimport os\nimport config\nfrom torch.utils.data import DataLoader\nfrom tqdm import tqdm\nfrom efficientnet_pytorch import EfficientNet\nfrom utils import (\n    load_checkpoint,\n    save_checkpoint,\n    get_rmse,\n    get_submission\n)\n\n\ndef train_one_epoch(loader, model, optimizer, loss_fn, scaler, device):\n    losses = []\n    loop = tqdm(loader)\n    num_examples = 0\n    for batch_idx, (data, targets) in enumerate(loop):\n        data = data.to(device=device)\n        targets = targets.to(device=device)\n\n        # forward\n        scores = model(data)\n        scores[targets == -1] = -1\n        loss = loss_fn(scores, targets)\n        num_examples += torch.numel(scores[targets != -1])\n        losses.append(loss.item())\n\n        # backward\n        optimizer.zero_grad()\n        loss.backward()\n        optimizer.step()\n\n    print(f\"Loss average over epoch: {(sum(losses)/num_examples)**0.5}\")\n\n\ndef main():\n    train_ds = FacialKeypointDataset(\n        csv_file=\"data/train_4.csv\",\n        transform=config.train_transforms,\n    )\n    train_loader = DataLoader(\n        train_ds,\n        batch_size=config.BATCH_SIZE,\n        num_workers=config.NUM_WORKERS,\n        pin_memory=config.PIN_MEMORY,\n        shuffle=True,\n    )\n    val_ds = FacialKeypointDataset(\n        transform=config.val_transforms,\n        csv_file=\"data/val_4.csv\",\n    )\n    val_loader = DataLoader(\n        val_ds,\n        batch_size=config.BATCH_SIZE,\n        num_workers=config.NUM_WORKERS,\n        pin_memory=config.PIN_MEMORY,\n        shuffle=False,\n    )\n\n    test_ds = FacialKeypointDataset(\n        csv_file=\"data/test.csv\",\n        transform=config.val_transforms,\n        train=False,\n    )\n\n    test_loader = DataLoader(\n        test_ds,\n        batch_size=1,\n        num_workers=config.NUM_WORKERS,\n        pin_memory=config.PIN_MEMORY,\n        shuffle=False,\n    )\n    loss_fn = nn.MSELoss(reduction=\"sum\")\n    model = EfficientNet.from_pretrained(\"efficientnet-b0\")\n    model._fc = nn.Linear(1280, 30)\n    model = model.to(config.DEVICE)\n    optimizer = optim.Adam(model.parameters(), lr=config.LEARNING_RATE, weight_decay=config.WEIGHT_DECAY)\n    scaler = torch.cuda.amp.GradScaler()\n\n    model_4 = EfficientNet.from_pretrained(\"efficientnet-b0\")\n    model_4._fc = nn.Linear(1280, 30)\n    model_15 = EfficientNet.from_pretrained(\"efficientnet-b0\")\n    model_15._fc = nn.Linear(1280, 30)\n    model_4 = model_4.to(config.DEVICE)\n    model_15 = model_15.to(config.DEVICE)\n\n    if config.LOAD_MODEL and config.CHECKPOINT_FILE in os.listdir():\n        load_checkpoint(torch.load(config.CHECKPOINT_FILE), model, optimizer, config.LEARNING_RATE)\n        load_checkpoint(torch.load(\"b0_4.pth.tar\"), model_4, optimizer, config.LEARNING_RATE)\n        load_checkpoint(torch.load(\"b0_15.pth.tar\"), model_15, optimizer, config.LEARNING_RATE)\n\n    get_submission(test_loader, test_ds, model_15, model_4)\n\n    for epoch in range(config.NUM_EPOCHS):\n        get_rmse(val_loader, model, loss_fn, config.DEVICE)\n        train_one_epoch(train_loader, model, optimizer, loss_fn, scaler, config.DEVICE)\n\n        # get on validation\n        if config.SAVE_MODEL:\n            checkpoint = {\n                \"state_dict\": model.state_dict(),\n                \"optimizer\": optimizer.state_dict(),\n            }\n            save_checkpoint(checkpoint, filename=config.CHECKPOINT_FILE)\n\nif __name__ == \"__main__\":\n    main()\n"
  },
  {
    "path": "ML/Kaggles/Facial Keypoint Detection Competition/utils.py",
    "content": "import torch\nimport numpy as np\nimport config\nimport pandas as pd\nfrom tqdm import tqdm\n\n\ndef get_submission(loader, dataset, model_15, model_4):\n    \"\"\"\n    This can be done a lot faster.. but it didn't take\n    too much time to do it in this inefficient way\n    \"\"\"\n    model_15.eval()\n    model_4.eval()\n    id_lookup = pd.read_csv(\"data/IdLookupTable.csv\")\n    predictions = []\n    image_id = 1\n\n    for image, label in tqdm(loader):\n        image = image.to(config.DEVICE)\n        preds_15 = torch.clip(model_15(image).squeeze(0), 0.0, 96.0)\n        preds_4 = torch.clip(model_4(image).squeeze(0), 0.0, 96.0)\n        feature_names = id_lookup.loc[id_lookup[\"ImageId\"] == image_id][\"FeatureName\"]\n\n        for feature_name in feature_names:\n            feature_index = dataset.category_names.index(feature_name)\n            if feature_names.shape[0] < 10:\n                predictions.append(preds_4[feature_index].item())\n            else:\n                predictions.append(preds_15[feature_index].item())\n\n        image_id += 1\n\n    df = pd.DataFrame({\"RowId\": np.arange(1, len(predictions)+1), \"Location\": predictions})\n    df.to_csv(\"submission.csv\", index=False)\n    model_15.train()\n    model_4.train()\n\n\ndef get_rmse(loader, model, loss_fn, device):\n    model.eval()\n    num_examples = 0\n    losses = []\n    for batch_idx, (data, targets) in enumerate(loader):\n        data = data.to(device=device)\n        targets = targets.to(device=device)\n\n        # forward\n        scores = model(data)\n        loss = loss_fn(scores[targets != -1], targets[targets != -1])\n        num_examples += scores[targets != -1].shape[0]\n        losses.append(loss.item())\n\n    model.train()\n    print(f\"Loss on val: {(sum(losses)/num_examples)**0.5}\")\n\n\ndef save_checkpoint(state, filename=\"my_checkpoint.pth.tar\"):\n    print(\"=> Saving checkpoint\")\n    torch.save(state, filename)\n\n\ndef load_checkpoint(checkpoint, model, optimizer, lr):\n    print(\"=> Loading checkpoint\")\n    model.load_state_dict(checkpoint[\"state_dict\"])\n    optimizer.load_state_dict(checkpoint[\"optimizer\"])\n\n    # If we don't do this then it will just have learning rate of old checkpoint\n    # and it will lead to many hours of debugging \\:\n    for param_group in optimizer.param_groups:\n        param_group[\"lr\"] = lr"
  },
  {
    "path": "ML/Kaggles/SantanderTransaction/dataset.py",
    "content": "import pandas as pd\nimport torch\nfrom torch.utils.data import TensorDataset\nfrom torch.utils.data.dataset import random_split\nfrom math import ceil\n\ndef get_data():\n    train_data = pd.read_csv(\"new_shiny_train.csv\")\n    y = train_data[\"target\"]\n    X = train_data.drop([\"ID_code\", \"target\"], axis=1)\n    X_tensor = torch.tensor(X.values, dtype=torch.float32)\n    y_tensor = torch.tensor(y.values, dtype=torch.float32)\n    ds = TensorDataset(X_tensor, y_tensor)\n    train_ds, val_ds = random_split(ds, [int(0.999*len(ds)), ceil(0.001*len(ds))])\n\n    test_data = pd.read_csv(\"new_shiny_test.csv\")\n    test_ids = test_data[\"ID_code\"]\n    X = test_data.drop([\"ID_code\"], axis=1)\n    X_tensor = torch.tensor(X.values, dtype=torch.float32)\n    y_tensor = torch.tensor(y.values, dtype=torch.float32)\n    test_ds = TensorDataset(X_tensor, y_tensor)\n\n    return train_ds, val_ds, test_ds, test_ids\n"
  },
  {
    "path": "ML/Kaggles/SantanderTransaction/get_data.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"id\": \"joint-electric\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import pandas as pd\\n\",\n    \"from tqdm import tqdm\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"id\": \"quantitative-beverage\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"train = pd.read_csv(\\\"train.csv\\\")\\n\",\n    \"test = pd.read_csv(\\\"test.csv\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"id\": \"twelve-insulin\",\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style scoped>\\n\",\n       \"    .dataframe tbody tr th:only-of-type {\\n\",\n       \"        vertical-align: middle;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>ID_code</th>\\n\",\n       \"      <th>target</th>\\n\",\n       \"      <th>var_0</th>\\n\",\n       \"      <th>var_1</th>\\n\",\n       \"      <th>var_2</th>\\n\",\n       \"      <th>var_3</th>\\n\",\n       \"      <th>var_4</th>\\n\",\n       \"      <th>var_5</th>\\n\",\n       \"      <th>var_6</th>\\n\",\n       \"      <th>var_7</th>\\n\",\n       \"      <th>...</th>\\n\",\n       \"      <th>var_190</th>\\n\",\n       \"      <th>var_191</th>\\n\",\n       \"      <th>var_192</th>\\n\",\n       \"      <th>var_193</th>\\n\",\n       \"      <th>var_194</th>\\n\",\n       \"      <th>var_195</th>\\n\",\n       \"      <th>var_196</th>\\n\",\n       \"      <th>var_197</th>\\n\",\n       \"      <th>var_198</th>\\n\",\n       \"      <th>var_199</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>train_0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>8.9255</td>\\n\",\n       \"      <td>-6.7863</td>\\n\",\n       \"      <td>11.9081</td>\\n\",\n       \"      <td>5.0930</td>\\n\",\n       \"      <td>11.4607</td>\\n\",\n       \"      <td>-9.2834</td>\\n\",\n       \"      <td>5.1187</td>\\n\",\n       \"      <td>18.6266</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>4.4354</td>\\n\",\n       \"      <td>3.9642</td>\\n\",\n       \"      <td>3.1364</td>\\n\",\n       \"      <td>1.6910</td>\\n\",\n       \"      <td>18.5227</td>\\n\",\n       \"      <td>-2.3978</td>\\n\",\n       \"      <td>7.8784</td>\\n\",\n       \"      <td>8.5635</td>\\n\",\n       \"      <td>12.7803</td>\\n\",\n       \"      <td>-1.0914</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>train_1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>11.5006</td>\\n\",\n       \"      <td>-4.1473</td>\\n\",\n       \"      <td>13.8588</td>\\n\",\n       \"      <td>5.3890</td>\\n\",\n       \"      <td>12.3622</td>\\n\",\n       \"      <td>7.0433</td>\\n\",\n       \"      <td>5.6208</td>\\n\",\n       \"      <td>16.5338</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>7.6421</td>\\n\",\n       \"      <td>7.7214</td>\\n\",\n       \"      <td>2.5837</td>\\n\",\n       \"      <td>10.9516</td>\\n\",\n       \"      <td>15.4305</td>\\n\",\n       \"      <td>2.0339</td>\\n\",\n       \"      <td>8.1267</td>\\n\",\n       \"      <td>8.7889</td>\\n\",\n       \"      <td>18.3560</td>\\n\",\n       \"      <td>1.9518</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2</th>\\n\",\n       \"      <td>train_2</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>8.6093</td>\\n\",\n       \"      <td>-2.7457</td>\\n\",\n       \"      <td>12.0805</td>\\n\",\n       \"      <td>7.8928</td>\\n\",\n       \"      <td>10.5825</td>\\n\",\n       \"      <td>-9.0837</td>\\n\",\n       \"      <td>6.9427</td>\\n\",\n       \"      <td>14.6155</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>2.9057</td>\\n\",\n       \"      <td>9.7905</td>\\n\",\n       \"      <td>1.6704</td>\\n\",\n       \"      <td>1.6858</td>\\n\",\n       \"      <td>21.6042</td>\\n\",\n       \"      <td>3.1417</td>\\n\",\n       \"      <td>-6.5213</td>\\n\",\n       \"      <td>8.2675</td>\\n\",\n       \"      <td>14.7222</td>\\n\",\n       \"      <td>0.3965</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>3</th>\\n\",\n       \"      <td>train_3</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>11.0604</td>\\n\",\n       \"      <td>-2.1518</td>\\n\",\n       \"      <td>8.9522</td>\\n\",\n       \"      <td>7.1957</td>\\n\",\n       \"      <td>12.5846</td>\\n\",\n       \"      <td>-1.8361</td>\\n\",\n       \"      <td>5.8428</td>\\n\",\n       \"      <td>14.9250</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>4.4666</td>\\n\",\n       \"      <td>4.7433</td>\\n\",\n       \"      <td>0.7178</td>\\n\",\n       \"      <td>1.4214</td>\\n\",\n       \"      <td>23.0347</td>\\n\",\n       \"      <td>-1.2706</td>\\n\",\n       \"      <td>-2.9275</td>\\n\",\n       \"      <td>10.2922</td>\\n\",\n       \"      <td>17.9697</td>\\n\",\n       \"      <td>-8.9996</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>4</th>\\n\",\n       \"      <td>train_4</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>9.8369</td>\\n\",\n       \"      <td>-1.4834</td>\\n\",\n       \"      <td>12.8746</td>\\n\",\n       \"      <td>6.6375</td>\\n\",\n       \"      <td>12.2772</td>\\n\",\n       \"      <td>2.4486</td>\\n\",\n       \"      <td>5.9405</td>\\n\",\n       \"      <td>19.2514</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>-1.4905</td>\\n\",\n       \"      <td>9.5214</td>\\n\",\n       \"      <td>-0.1508</td>\\n\",\n       \"      <td>9.1942</td>\\n\",\n       \"      <td>13.2876</td>\\n\",\n       \"      <td>-1.5121</td>\\n\",\n       \"      <td>3.9267</td>\\n\",\n       \"      <td>9.5031</td>\\n\",\n       \"      <td>17.9974</td>\\n\",\n       \"      <td>-8.8104</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"<p>5 rows × 202 columns</p>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"   ID_code  target    var_0   var_1    var_2   var_3    var_4   var_5   var_6  \\\\\\n\",\n       \"0  train_0       0   8.9255 -6.7863  11.9081  5.0930  11.4607 -9.2834  5.1187   \\n\",\n       \"1  train_1       0  11.5006 -4.1473  13.8588  5.3890  12.3622  7.0433  5.6208   \\n\",\n       \"2  train_2       0   8.6093 -2.7457  12.0805  7.8928  10.5825 -9.0837  6.9427   \\n\",\n       \"3  train_3       0  11.0604 -2.1518   8.9522  7.1957  12.5846 -1.8361  5.8428   \\n\",\n       \"4  train_4       0   9.8369 -1.4834  12.8746  6.6375  12.2772  2.4486  5.9405   \\n\",\n       \"\\n\",\n       \"     var_7  ...  var_190  var_191  var_192  var_193  var_194  var_195  \\\\\\n\",\n       \"0  18.6266  ...   4.4354   3.9642   3.1364   1.6910  18.5227  -2.3978   \\n\",\n       \"1  16.5338  ...   7.6421   7.7214   2.5837  10.9516  15.4305   2.0339   \\n\",\n       \"2  14.6155  ...   2.9057   9.7905   1.6704   1.6858  21.6042   3.1417   \\n\",\n       \"3  14.9250  ...   4.4666   4.7433   0.7178   1.4214  23.0347  -1.2706   \\n\",\n       \"4  19.2514  ...  -1.4905   9.5214  -0.1508   9.1942  13.2876  -1.5121   \\n\",\n       \"\\n\",\n       \"   var_196  var_197  var_198  var_199  \\n\",\n       \"0   7.8784   8.5635  12.7803  -1.0914  \\n\",\n       \"1   8.1267   8.7889  18.3560   1.9518  \\n\",\n       \"2  -6.5213   8.2675  14.7222   0.3965  \\n\",\n       \"3  -2.9275  10.2922  17.9697  -8.9996  \\n\",\n       \"4   3.9267   9.5031  17.9974  -8.8104  \\n\",\n       \"\\n\",\n       \"[5 rows x 202 columns]\"\n      ]\n     },\n     \"execution_count\": 3,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"train.head(5)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"id\": \"appreciated-affairs\",\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"100%|████████████████████████████████████████████████████████████████████████████████| 200/200 [00:03<00:00, 59.75it/s]\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"col_names = [f\\\"var_{i}\\\" for i in range(200)]\\n\",\n    \"for col in tqdm(col_names):\\n\",\n    \"    count = test[col].value_counts()\\n\",\n    \"    uniques = count.index[count == 1]\\n\",\n    \"    test[col + \\\"_u\\\"] = test[col].isin(uniques)\\n\",\n    \"\\n\",\n    \"test[\\\"has_unique\\\"] = test[[col + \\\"_u\\\" for col in col_names]].any(axis=1)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"id\": \"mighty-basics\",\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"100000\"\n      ]\n     },\n     \"execution_count\": 5,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"test[\\\"has_unique\\\"].sum()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"id\": \"sustainable-palestinian\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"real_test = test.loc[test[\\\"has_unique\\\"], [\\\"ID_code\\\"] + col_names]\\n\",\n    \"fake_test = test.loc[~test[\\\"has_unique\\\"], [\\\"ID_code\\\"] + col_names]\\n\",\n    \"train_and_test = pd.concat([train, real_test], axis=0)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"id\": \"military-tiger\",\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"100%|████████████████████████████████████████████████████████████████████████████████| 200/200 [00:43<00:00,  4.64it/s]\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"for col in tqdm(col_names):\\n\",\n    \"    count = train_and_test[col].value_counts().to_dict()\\n\",\n    \"    train_and_test[col+\\\"_unique\\\"] = train_and_test[col].apply(\\n\",\n    \"        lambda x: 1 if count[x] == 1 else 0).values\\n\",\n    \"    fake_test[col+\\\"_unique\\\"] = 0 \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"id\": \"extraordinary-phrase\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"real_test = train_and_test[train_and_test[\\\"ID_code\\\"].str.contains(\\\"test\\\")].copy()\\n\",\n    \"real_test.drop([\\\"target\\\"], axis=1, inplace=True)\\n\",\n    \"train = train_and_test[train_and_test[\\\"ID_code\\\"].str.contains(\\\"train\\\")].copy()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"id\": \"quantitative-iraqi\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"test = pd.concat([real_test, fake_test], axis=0)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"id\": \"instant-kitty\",\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style scoped>\\n\",\n       \"    .dataframe tbody tr th:only-of-type {\\n\",\n       \"        vertical-align: middle;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>ID_code</th>\\n\",\n       \"      <th>target</th>\\n\",\n       \"      <th>var_0</th>\\n\",\n       \"      <th>var_1</th>\\n\",\n       \"      <th>var_2</th>\\n\",\n       \"      <th>var_3</th>\\n\",\n       \"      <th>var_4</th>\\n\",\n       \"      <th>var_5</th>\\n\",\n       \"      <th>var_6</th>\\n\",\n       \"      <th>var_7</th>\\n\",\n       \"      <th>...</th>\\n\",\n       \"      <th>var_190_unique</th>\\n\",\n       \"      <th>var_191_unique</th>\\n\",\n       \"      <th>var_192_unique</th>\\n\",\n       \"      <th>var_193_unique</th>\\n\",\n       \"      <th>var_194_unique</th>\\n\",\n       \"      <th>var_195_unique</th>\\n\",\n       \"      <th>var_196_unique</th>\\n\",\n       \"      <th>var_197_unique</th>\\n\",\n       \"      <th>var_198_unique</th>\\n\",\n       \"      <th>var_199_unique</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>train_0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>8.9255</td>\\n\",\n       \"      <td>-6.7863</td>\\n\",\n       \"      <td>11.9081</td>\\n\",\n       \"      <td>5.0930</td>\\n\",\n       \"      <td>11.4607</td>\\n\",\n       \"      <td>-9.2834</td>\\n\",\n       \"      <td>5.1187</td>\\n\",\n       \"      <td>18.6266</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>train_1</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>11.5006</td>\\n\",\n       \"      <td>-4.1473</td>\\n\",\n       \"      <td>13.8588</td>\\n\",\n       \"      <td>5.3890</td>\\n\",\n       \"      <td>12.3622</td>\\n\",\n       \"      <td>7.0433</td>\\n\",\n       \"      <td>5.6208</td>\\n\",\n       \"      <td>16.5338</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2</th>\\n\",\n       \"      <td>train_2</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>8.6093</td>\\n\",\n       \"      <td>-2.7457</td>\\n\",\n       \"      <td>12.0805</td>\\n\",\n       \"      <td>7.8928</td>\\n\",\n       \"      <td>10.5825</td>\\n\",\n       \"      <td>-9.0837</td>\\n\",\n       \"      <td>6.9427</td>\\n\",\n       \"      <td>14.6155</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>3</th>\\n\",\n       \"      <td>train_3</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>11.0604</td>\\n\",\n       \"      <td>-2.1518</td>\\n\",\n       \"      <td>8.9522</td>\\n\",\n       \"      <td>7.1957</td>\\n\",\n       \"      <td>12.5846</td>\\n\",\n       \"      <td>-1.8361</td>\\n\",\n       \"      <td>5.8428</td>\\n\",\n       \"      <td>14.9250</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>4</th>\\n\",\n       \"      <td>train_4</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>9.8369</td>\\n\",\n       \"      <td>-1.4834</td>\\n\",\n       \"      <td>12.8746</td>\\n\",\n       \"      <td>6.6375</td>\\n\",\n       \"      <td>12.2772</td>\\n\",\n       \"      <td>2.4486</td>\\n\",\n       \"      <td>5.9405</td>\\n\",\n       \"      <td>19.2514</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>...</th>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>199995</th>\\n\",\n       \"      <td>train_199995</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>11.4880</td>\\n\",\n       \"      <td>-0.4956</td>\\n\",\n       \"      <td>8.2622</td>\\n\",\n       \"      <td>3.5142</td>\\n\",\n       \"      <td>10.3404</td>\\n\",\n       \"      <td>11.6081</td>\\n\",\n       \"      <td>5.6709</td>\\n\",\n       \"      <td>15.1516</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>199996</th>\\n\",\n       \"      <td>train_199996</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>4.9149</td>\\n\",\n       \"      <td>-2.4484</td>\\n\",\n       \"      <td>16.7052</td>\\n\",\n       \"      <td>6.6345</td>\\n\",\n       \"      <td>8.3096</td>\\n\",\n       \"      <td>-10.5628</td>\\n\",\n       \"      <td>5.8802</td>\\n\",\n       \"      <td>21.5940</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>199997</th>\\n\",\n       \"      <td>train_199997</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>11.2232</td>\\n\",\n       \"      <td>-5.0518</td>\\n\",\n       \"      <td>10.5127</td>\\n\",\n       \"      <td>5.6456</td>\\n\",\n       \"      <td>9.3410</td>\\n\",\n       \"      <td>-5.4086</td>\\n\",\n       \"      <td>4.5555</td>\\n\",\n       \"      <td>21.5571</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>199998</th>\\n\",\n       \"      <td>train_199998</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>9.7148</td>\\n\",\n       \"      <td>-8.6098</td>\\n\",\n       \"      <td>13.6104</td>\\n\",\n       \"      <td>5.7930</td>\\n\",\n       \"      <td>12.5173</td>\\n\",\n       \"      <td>0.5339</td>\\n\",\n       \"      <td>6.0479</td>\\n\",\n       \"      <td>17.0152</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>199999</th>\\n\",\n       \"      <td>train_199999</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>10.8762</td>\\n\",\n       \"      <td>-5.7105</td>\\n\",\n       \"      <td>12.1183</td>\\n\",\n       \"      <td>8.0328</td>\\n\",\n       \"      <td>11.5577</td>\\n\",\n       \"      <td>0.3488</td>\\n\",\n       \"      <td>5.2839</td>\\n\",\n       \"      <td>15.2058</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"<p>200000 rows × 402 columns</p>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"             ID_code  target    var_0   var_1    var_2   var_3    var_4  \\\\\\n\",\n       \"0            train_0     0.0   8.9255 -6.7863  11.9081  5.0930  11.4607   \\n\",\n       \"1            train_1     0.0  11.5006 -4.1473  13.8588  5.3890  12.3622   \\n\",\n       \"2            train_2     0.0   8.6093 -2.7457  12.0805  7.8928  10.5825   \\n\",\n       \"3            train_3     0.0  11.0604 -2.1518   8.9522  7.1957  12.5846   \\n\",\n       \"4            train_4     0.0   9.8369 -1.4834  12.8746  6.6375  12.2772   \\n\",\n       \"...              ...     ...      ...     ...      ...     ...      ...   \\n\",\n       \"199995  train_199995     0.0  11.4880 -0.4956   8.2622  3.5142  10.3404   \\n\",\n       \"199996  train_199996     0.0   4.9149 -2.4484  16.7052  6.6345   8.3096   \\n\",\n       \"199997  train_199997     0.0  11.2232 -5.0518  10.5127  5.6456   9.3410   \\n\",\n       \"199998  train_199998     0.0   9.7148 -8.6098  13.6104  5.7930  12.5173   \\n\",\n       \"199999  train_199999     0.0  10.8762 -5.7105  12.1183  8.0328  11.5577   \\n\",\n       \"\\n\",\n       \"          var_5   var_6    var_7  ...  var_190_unique  var_191_unique  \\\\\\n\",\n       \"0       -9.2834  5.1187  18.6266  ...               0               0   \\n\",\n       \"1        7.0433  5.6208  16.5338  ...               0               0   \\n\",\n       \"2       -9.0837  6.9427  14.6155  ...               0               0   \\n\",\n       \"3       -1.8361  5.8428  14.9250  ...               0               0   \\n\",\n       \"4        2.4486  5.9405  19.2514  ...               0               0   \\n\",\n       \"...         ...     ...      ...  ...             ...             ...   \\n\",\n       \"199995  11.6081  5.6709  15.1516  ...               0               1   \\n\",\n       \"199996 -10.5628  5.8802  21.5940  ...               0               0   \\n\",\n       \"199997  -5.4086  4.5555  21.5571  ...               0               0   \\n\",\n       \"199998   0.5339  6.0479  17.0152  ...               0               0   \\n\",\n       \"199999   0.3488  5.2839  15.2058  ...               0               0   \\n\",\n       \"\\n\",\n       \"        var_192_unique  var_193_unique  var_194_unique  var_195_unique  \\\\\\n\",\n       \"0                    0               0               0               0   \\n\",\n       \"1                    0               0               0               0   \\n\",\n       \"2                    0               0               0               0   \\n\",\n       \"3                    0               0               0               0   \\n\",\n       \"4                    1               1               1               0   \\n\",\n       \"...                ...             ...             ...             ...   \\n\",\n       \"199995               0               0               0               0   \\n\",\n       \"199996               0               1               0               0   \\n\",\n       \"199997               0               0               0               0   \\n\",\n       \"199998               0               0               0               0   \\n\",\n       \"199999               0               0               0               0   \\n\",\n       \"\\n\",\n       \"        var_196_unique  var_197_unique  var_198_unique  var_199_unique  \\n\",\n       \"0                    0               0               0               0  \\n\",\n       \"1                    0               0               0               0  \\n\",\n       \"2                    0               0               0               0  \\n\",\n       \"3                    0               0               0               0  \\n\",\n       \"4                    0               0               0               0  \\n\",\n       \"...                ...             ...             ...             ...  \\n\",\n       \"199995               1               0               0               0  \\n\",\n       \"199996               0               0               0               0  \\n\",\n       \"199997               0               0               0               1  \\n\",\n       \"199998               0               0               0               1  \\n\",\n       \"199999               0               0               0               1  \\n\",\n       \"\\n\",\n       \"[200000 rows x 402 columns]\"\n      ]\n     },\n     \"execution_count\": 10,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"train\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 11,\n   \"id\": \"human-japanese\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"train.to_csv(\\\"new_shiny_train.csv\\\", index=False)\\n\",\n    \"test.to_csv(\\\"new_shiny_test.csv\\\", index=False)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 12,\n   \"id\": \"outer-walter\",\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style scoped>\\n\",\n       \"    .dataframe tbody tr th:only-of-type {\\n\",\n       \"        vertical-align: middle;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>ID_code</th>\\n\",\n       \"      <th>target</th>\\n\",\n       \"      <th>var_0</th>\\n\",\n       \"      <th>var_1</th>\\n\",\n       \"      <th>var_2</th>\\n\",\n       \"      <th>var_3</th>\\n\",\n       \"      <th>var_4</th>\\n\",\n       \"      <th>var_5</th>\\n\",\n       \"      <th>var_6</th>\\n\",\n       \"      <th>var_7</th>\\n\",\n       \"      <th>...</th>\\n\",\n       \"      <th>var_190_unique</th>\\n\",\n       \"      <th>var_191_unique</th>\\n\",\n       \"      <th>var_192_unique</th>\\n\",\n       \"      <th>var_193_unique</th>\\n\",\n       \"      <th>var_194_unique</th>\\n\",\n       \"      <th>var_195_unique</th>\\n\",\n       \"      <th>var_196_unique</th>\\n\",\n       \"      <th>var_197_unique</th>\\n\",\n       \"      <th>var_198_unique</th>\\n\",\n       \"      <th>var_199_unique</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>train_0</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>8.9255</td>\\n\",\n       \"      <td>-6.7863</td>\\n\",\n       \"      <td>11.9081</td>\\n\",\n       \"      <td>5.0930</td>\\n\",\n       \"      <td>11.4607</td>\\n\",\n       \"      <td>-9.2834</td>\\n\",\n       \"      <td>5.1187</td>\\n\",\n       \"      <td>18.6266</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>train_1</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>11.5006</td>\\n\",\n       \"      <td>-4.1473</td>\\n\",\n       \"      <td>13.8588</td>\\n\",\n       \"      <td>5.3890</td>\\n\",\n       \"      <td>12.3622</td>\\n\",\n       \"      <td>7.0433</td>\\n\",\n       \"      <td>5.6208</td>\\n\",\n       \"      <td>16.5338</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2</th>\\n\",\n       \"      <td>train_2</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>8.6093</td>\\n\",\n       \"      <td>-2.7457</td>\\n\",\n       \"      <td>12.0805</td>\\n\",\n       \"      <td>7.8928</td>\\n\",\n       \"      <td>10.5825</td>\\n\",\n       \"      <td>-9.0837</td>\\n\",\n       \"      <td>6.9427</td>\\n\",\n       \"      <td>14.6155</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>3</th>\\n\",\n       \"      <td>train_3</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>11.0604</td>\\n\",\n       \"      <td>-2.1518</td>\\n\",\n       \"      <td>8.9522</td>\\n\",\n       \"      <td>7.1957</td>\\n\",\n       \"      <td>12.5846</td>\\n\",\n       \"      <td>-1.8361</td>\\n\",\n       \"      <td>5.8428</td>\\n\",\n       \"      <td>14.9250</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>4</th>\\n\",\n       \"      <td>train_4</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>9.8369</td>\\n\",\n       \"      <td>-1.4834</td>\\n\",\n       \"      <td>12.8746</td>\\n\",\n       \"      <td>6.6375</td>\\n\",\n       \"      <td>12.2772</td>\\n\",\n       \"      <td>2.4486</td>\\n\",\n       \"      <td>5.9405</td>\\n\",\n       \"      <td>19.2514</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>...</th>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>199995</th>\\n\",\n       \"      <td>train_199995</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>11.4880</td>\\n\",\n       \"      <td>-0.4956</td>\\n\",\n       \"      <td>8.2622</td>\\n\",\n       \"      <td>3.5142</td>\\n\",\n       \"      <td>10.3404</td>\\n\",\n       \"      <td>11.6081</td>\\n\",\n       \"      <td>5.6709</td>\\n\",\n       \"      <td>15.1516</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>199996</th>\\n\",\n       \"      <td>train_199996</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>4.9149</td>\\n\",\n       \"      <td>-2.4484</td>\\n\",\n       \"      <td>16.7052</td>\\n\",\n       \"      <td>6.6345</td>\\n\",\n       \"      <td>8.3096</td>\\n\",\n       \"      <td>-10.5628</td>\\n\",\n       \"      <td>5.8802</td>\\n\",\n       \"      <td>21.5940</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>199997</th>\\n\",\n       \"      <td>train_199997</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>11.2232</td>\\n\",\n       \"      <td>-5.0518</td>\\n\",\n       \"      <td>10.5127</td>\\n\",\n       \"      <td>5.6456</td>\\n\",\n       \"      <td>9.3410</td>\\n\",\n       \"      <td>-5.4086</td>\\n\",\n       \"      <td>4.5555</td>\\n\",\n       \"      <td>21.5571</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>199998</th>\\n\",\n       \"      <td>train_199998</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>9.7148</td>\\n\",\n       \"      <td>-8.6098</td>\\n\",\n       \"      <td>13.6104</td>\\n\",\n       \"      <td>5.7930</td>\\n\",\n       \"      <td>12.5173</td>\\n\",\n       \"      <td>0.5339</td>\\n\",\n       \"      <td>6.0479</td>\\n\",\n       \"      <td>17.0152</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>199999</th>\\n\",\n       \"      <td>train_199999</td>\\n\",\n       \"      <td>0.0</td>\\n\",\n       \"      <td>10.8762</td>\\n\",\n       \"      <td>-5.7105</td>\\n\",\n       \"      <td>12.1183</td>\\n\",\n       \"      <td>8.0328</td>\\n\",\n       \"      <td>11.5577</td>\\n\",\n       \"      <td>0.3488</td>\\n\",\n       \"      <td>5.2839</td>\\n\",\n       \"      <td>15.2058</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"<p>200000 rows × 402 columns</p>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"             ID_code  target    var_0   var_1    var_2   var_3    var_4  \\\\\\n\",\n       \"0            train_0     0.0   8.9255 -6.7863  11.9081  5.0930  11.4607   \\n\",\n       \"1            train_1     0.0  11.5006 -4.1473  13.8588  5.3890  12.3622   \\n\",\n       \"2            train_2     0.0   8.6093 -2.7457  12.0805  7.8928  10.5825   \\n\",\n       \"3            train_3     0.0  11.0604 -2.1518   8.9522  7.1957  12.5846   \\n\",\n       \"4            train_4     0.0   9.8369 -1.4834  12.8746  6.6375  12.2772   \\n\",\n       \"...              ...     ...      ...     ...      ...     ...      ...   \\n\",\n       \"199995  train_199995     0.0  11.4880 -0.4956   8.2622  3.5142  10.3404   \\n\",\n       \"199996  train_199996     0.0   4.9149 -2.4484  16.7052  6.6345   8.3096   \\n\",\n       \"199997  train_199997     0.0  11.2232 -5.0518  10.5127  5.6456   9.3410   \\n\",\n       \"199998  train_199998     0.0   9.7148 -8.6098  13.6104  5.7930  12.5173   \\n\",\n       \"199999  train_199999     0.0  10.8762 -5.7105  12.1183  8.0328  11.5577   \\n\",\n       \"\\n\",\n       \"          var_5   var_6    var_7  ...  var_190_unique  var_191_unique  \\\\\\n\",\n       \"0       -9.2834  5.1187  18.6266  ...               0               0   \\n\",\n       \"1        7.0433  5.6208  16.5338  ...               0               0   \\n\",\n       \"2       -9.0837  6.9427  14.6155  ...               0               0   \\n\",\n       \"3       -1.8361  5.8428  14.9250  ...               0               0   \\n\",\n       \"4        2.4486  5.9405  19.2514  ...               0               0   \\n\",\n       \"...         ...     ...      ...  ...             ...             ...   \\n\",\n       \"199995  11.6081  5.6709  15.1516  ...               0               1   \\n\",\n       \"199996 -10.5628  5.8802  21.5940  ...               0               0   \\n\",\n       \"199997  -5.4086  4.5555  21.5571  ...               0               0   \\n\",\n       \"199998   0.5339  6.0479  17.0152  ...               0               0   \\n\",\n       \"199999   0.3488  5.2839  15.2058  ...               0               0   \\n\",\n       \"\\n\",\n       \"        var_192_unique  var_193_unique  var_194_unique  var_195_unique  \\\\\\n\",\n       \"0                    0               0               0               0   \\n\",\n       \"1                    0               0               0               0   \\n\",\n       \"2                    0               0               0               0   \\n\",\n       \"3                    0               0               0               0   \\n\",\n       \"4                    1               1               1               0   \\n\",\n       \"...                ...             ...             ...             ...   \\n\",\n       \"199995               0               0               0               0   \\n\",\n       \"199996               0               1               0               0   \\n\",\n       \"199997               0               0               0               0   \\n\",\n       \"199998               0               0               0               0   \\n\",\n       \"199999               0               0               0               0   \\n\",\n       \"\\n\",\n       \"        var_196_unique  var_197_unique  var_198_unique  var_199_unique  \\n\",\n       \"0                    0               0               0               0  \\n\",\n       \"1                    0               0               0               0  \\n\",\n       \"2                    0               0               0               0  \\n\",\n       \"3                    0               0               0               0  \\n\",\n       \"4                    0               0               0               0  \\n\",\n       \"...                ...             ...             ...             ...  \\n\",\n       \"199995               1               0               0               0  \\n\",\n       \"199996               0               0               0               0  \\n\",\n       \"199997               0               0               0               1  \\n\",\n       \"199998               0               0               0               1  \\n\",\n       \"199999               0               0               0               1  \\n\",\n       \"\\n\",\n       \"[200000 rows x 402 columns]\"\n      ]\n     },\n     \"execution_count\": 12,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"train\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 13,\n   \"id\": \"therapeutic-scratch\",\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style scoped>\\n\",\n       \"    .dataframe tbody tr th:only-of-type {\\n\",\n       \"        vertical-align: middle;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>ID_code</th>\\n\",\n       \"      <th>var_0</th>\\n\",\n       \"      <th>var_1</th>\\n\",\n       \"      <th>var_2</th>\\n\",\n       \"      <th>var_3</th>\\n\",\n       \"      <th>var_4</th>\\n\",\n       \"      <th>var_5</th>\\n\",\n       \"      <th>var_6</th>\\n\",\n       \"      <th>var_7</th>\\n\",\n       \"      <th>var_8</th>\\n\",\n       \"      <th>...</th>\\n\",\n       \"      <th>var_190_unique</th>\\n\",\n       \"      <th>var_191_unique</th>\\n\",\n       \"      <th>var_192_unique</th>\\n\",\n       \"      <th>var_193_unique</th>\\n\",\n       \"      <th>var_194_unique</th>\\n\",\n       \"      <th>var_195_unique</th>\\n\",\n       \"      <th>var_196_unique</th>\\n\",\n       \"      <th>var_197_unique</th>\\n\",\n       \"      <th>var_198_unique</th>\\n\",\n       \"      <th>var_199_unique</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>3</th>\\n\",\n       \"      <td>test_3</td>\\n\",\n       \"      <td>8.5374</td>\\n\",\n       \"      <td>-1.3222</td>\\n\",\n       \"      <td>12.0220</td>\\n\",\n       \"      <td>6.5749</td>\\n\",\n       \"      <td>8.8458</td>\\n\",\n       \"      <td>3.1744</td>\\n\",\n       \"      <td>4.9397</td>\\n\",\n       \"      <td>20.5660</td>\\n\",\n       \"      <td>3.3755</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>7</th>\\n\",\n       \"      <td>test_7</td>\\n\",\n       \"      <td>17.3035</td>\\n\",\n       \"      <td>-2.4212</td>\\n\",\n       \"      <td>13.3989</td>\\n\",\n       \"      <td>8.3998</td>\\n\",\n       \"      <td>11.0777</td>\\n\",\n       \"      <td>9.6449</td>\\n\",\n       \"      <td>5.9596</td>\\n\",\n       \"      <td>17.8477</td>\\n\",\n       \"      <td>-4.8068</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>11</th>\\n\",\n       \"      <td>test_11</td>\\n\",\n       \"      <td>10.6137</td>\\n\",\n       \"      <td>-2.1898</td>\\n\",\n       \"      <td>8.9090</td>\\n\",\n       \"      <td>3.8014</td>\\n\",\n       \"      <td>13.8602</td>\\n\",\n       \"      <td>-5.9802</td>\\n\",\n       \"      <td>5.5515</td>\\n\",\n       \"      <td>15.4716</td>\\n\",\n       \"      <td>-0.1714</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>15</th>\\n\",\n       \"      <td>test_15</td>\\n\",\n       \"      <td>14.8595</td>\\n\",\n       \"      <td>-4.5378</td>\\n\",\n       \"      <td>13.6483</td>\\n\",\n       \"      <td>5.6480</td>\\n\",\n       \"      <td>9.9144</td>\\n\",\n       \"      <td>1.5190</td>\\n\",\n       \"      <td>5.0358</td>\\n\",\n       \"      <td>13.4524</td>\\n\",\n       \"      <td>-2.5419</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>16</th>\\n\",\n       \"      <td>test_16</td>\\n\",\n       \"      <td>14.1732</td>\\n\",\n       \"      <td>-5.1490</td>\\n\",\n       \"      <td>9.7591</td>\\n\",\n       \"      <td>3.7316</td>\\n\",\n       \"      <td>10.3700</td>\\n\",\n       \"      <td>-21.9202</td>\\n\",\n       \"      <td>7.7130</td>\\n\",\n       \"      <td>18.8749</td>\\n\",\n       \"      <td>0.4680</td>\\n\",\n       \"      <td>...</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"<p>5 rows × 401 columns</p>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"    ID_code    var_0   var_1    var_2   var_3    var_4    var_5   var_6  \\\\\\n\",\n       \"3    test_3   8.5374 -1.3222  12.0220  6.5749   8.8458   3.1744  4.9397   \\n\",\n       \"7    test_7  17.3035 -2.4212  13.3989  8.3998  11.0777   9.6449  5.9596   \\n\",\n       \"11  test_11  10.6137 -2.1898   8.9090  3.8014  13.8602  -5.9802  5.5515   \\n\",\n       \"15  test_15  14.8595 -4.5378  13.6483  5.6480   9.9144   1.5190  5.0358   \\n\",\n       \"16  test_16  14.1732 -5.1490   9.7591  3.7316  10.3700 -21.9202  7.7130   \\n\",\n       \"\\n\",\n       \"      var_7   var_8  ...  var_190_unique  var_191_unique  var_192_unique  \\\\\\n\",\n       \"3   20.5660  3.3755  ...               0               0               0   \\n\",\n       \"7   17.8477 -4.8068  ...               0               0               0   \\n\",\n       \"11  15.4716 -0.1714  ...               0               0               0   \\n\",\n       \"15  13.4524 -2.5419  ...               0               0               1   \\n\",\n       \"16  18.8749  0.4680  ...               0               0               0   \\n\",\n       \"\\n\",\n       \"    var_193_unique  var_194_unique  var_195_unique  var_196_unique  \\\\\\n\",\n       \"3                0               0               0               0   \\n\",\n       \"7                0               0               0               0   \\n\",\n       \"11               0               0               0               1   \\n\",\n       \"15               0               0               0               0   \\n\",\n       \"16               0               0               0               0   \\n\",\n       \"\\n\",\n       \"    var_197_unique  var_198_unique  var_199_unique  \\n\",\n       \"3                0               0               1  \\n\",\n       \"7                0               1               0  \\n\",\n       \"11               0               0               1  \\n\",\n       \"15               0               0               1  \\n\",\n       \"16               0               0               0  \\n\",\n       \"\\n\",\n       \"[5 rows x 401 columns]\"\n      ]\n     },\n     \"execution_count\": 13,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"test.head(5)\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.8.5\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 5\n}\n"
  },
  {
    "path": "ML/Kaggles/SantanderTransaction/train.py",
    "content": "import torch\nfrom sklearn import metrics\nfrom tqdm import tqdm\nimport torch.nn as nn\nimport torch.optim as optim\nfrom utils import get_predictions\nfrom dataset import get_data\nfrom torch.utils.data import DataLoader\nimport torch.nn.functional as F\n\nclass NN(nn.Module):\n    def __init__(self, input_size, hidden_dim):\n        super(NN, self).__init__()\n        self.bn = nn.BatchNorm1d(input_size)\n        self.fc1 = nn.Linear(2, hidden_dim)\n        self.fc2 = nn.Linear(input_size//2*hidden_dim, 1)\n\n    def forward(self, x):\n        N = x.shape[0]\n        x = self.bn(x)\n        orig_features = x[:, :200].unsqueeze(2) # (N, 200, 1)\n        new_features = x[:, 200:].unsqueeze(2) # (N, 200, 1)\n        x = torch.cat([orig_features, new_features], dim=2) # (N, 200, 2)\n        x = F.relu(self.fc1(x)).reshape(N, -1) # (N, 200*hidden_dim)\n        return torch.sigmoid(self.fc2(x)).view(-1)\n\n\nDEVICE = \"cuda\" if torch.cuda.is_available() else \"cpu\"\nmodel = NN(input_size=400, hidden_dim=100).to(DEVICE)\noptimizer = optim.Adam(model.parameters(), lr=2e-3, weight_decay=1e-4)\nloss_fn = nn.BCELoss()\ntrain_ds, val_ds, test_ds, test_ids = get_data()\ntrain_loader = DataLoader(train_ds, batch_size=1024, shuffle=True)\nval_loader = DataLoader(val_ds, batch_size=1024)\ntest_loader = DataLoader(test_ds, batch_size=1024)\n\nfor epoch in range(20):\n    probabilities, true = get_predictions(val_loader, model, device=DEVICE)\n    print(f\"VALIDATION ROC: {metrics.roc_auc_score(true, probabilities)}\")\n\n    for batch_idx, (data, targets) in enumerate(train_loader):\n        data = data.to(DEVICE)\n        targets = targets.to(DEVICE)\n\n        # forward\n        scores = model(data)\n        loss = loss_fn(scores, targets)\n        optimizer.zero_grad()\n        loss.backward()\n        optimizer.step()\n\nfrom utils import get_submission\nget_submission(model, test_loader, test_ids, DEVICE)\n\n\n"
  },
  {
    "path": "ML/Kaggles/SantanderTransaction/utils.py",
    "content": "import pandas as pd\nimport numpy as np\nimport torch\n\ndef get_predictions(loader, model, device):\n    model.eval()\n    saved_preds = []\n    true_labels = []\n\n    with torch.no_grad():\n        for x,y in loader:\n            x = x.to(device)\n            y = y.to(device)\n            scores = model(x)\n            saved_preds += scores.tolist()\n            true_labels += y.tolist()\n\n    model.train()\n    return saved_preds, true_labels\n\ndef get_submission(model, loader, test_ids, device):\n    all_preds = []\n    model.eval()\n    with torch.no_grad():\n        for x,y in loader:\n            print(x.shape)\n            x = x.to(device)\n            score = model(x)\n            prediction = score.float()\n            all_preds += prediction.tolist()\n\n    model.train()\n\n    df = pd.DataFrame({\n        \"ID_code\" : test_ids.values,\n        \"target\" : np.array(all_preds)\n    })\n\n    df.to_csv(\"sub.csv\", index=False)"
  },
  {
    "path": "ML/Kaggles/Titanic/FirstKaggle_Titanic.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"id\": \"electoral-scientist\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import pandas as pd\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"id\": \"surrounded-albert\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"data = pd.read_csv(\\\"train.csv\\\")\\n\",\n    \"test = pd.read_csv(\\\"test.csv\\\")\\n\",\n    \"test_ids = test[\\\"PassengerId\\\"]\\n\",\n    \"\\n\",\n    \"def clean(data):\\n\",\n    \"    data = data.drop([\\\"Ticket\\\", \\\"PassengerId\\\", \\\"Name\\\", \\\"Cabin\\\"], axis=1)\\n\",\n    \"    \\n\",\n    \"    cols = [\\\"SibSp\\\", \\\"Parch\\\", \\\"Fare\\\", \\\"Age\\\"]\\n\",\n    \"    for col in cols:\\n\",\n    \"        data[col].fillna(data[col].median(), inplace=True)\\n\",\n    \"        \\n\",\n    \"    data.Embarked.fillna(\\\"U\\\", inplace=True)\\n\",\n    \"    return data\\n\",\n    \"\\n\",\n    \"data = clean(data)\\n\",\n    \"test = clean(test)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"id\": \"electronic-wyoming\",\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style scoped>\\n\",\n       \"    .dataframe tbody tr th:only-of-type {\\n\",\n       \"        vertical-align: middle;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>Survived</th>\\n\",\n       \"      <th>Pclass</th>\\n\",\n       \"      <th>Sex</th>\\n\",\n       \"      <th>Age</th>\\n\",\n       \"      <th>SibSp</th>\\n\",\n       \"      <th>Parch</th>\\n\",\n       \"      <th>Fare</th>\\n\",\n       \"      <th>Embarked</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>3</td>\\n\",\n       \"      <td>male</td>\\n\",\n       \"      <td>22.0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>7.2500</td>\\n\",\n       \"      <td>S</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>female</td>\\n\",\n       \"      <td>38.0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>71.2833</td>\\n\",\n       \"      <td>C</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2</th>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>3</td>\\n\",\n       \"      <td>female</td>\\n\",\n       \"      <td>26.0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>7.9250</td>\\n\",\n       \"      <td>S</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"   Survived  Pclass     Sex   Age  SibSp  Parch     Fare Embarked\\n\",\n       \"0         0       3    male  22.0      1      0   7.2500        S\\n\",\n       \"1         1       1  female  38.0      1      0  71.2833        C\\n\",\n       \"2         1       3  female  26.0      0      0   7.9250        S\"\n      ]\n     },\n     \"execution_count\": 3,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"data.head(3)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"id\": \"legendary-conditions\",\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"['female' 'male']\\n\",\n      \"['C' 'Q' 'S' 'U']\\n\"\n     ]\n    },\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<div>\\n\",\n       \"<style scoped>\\n\",\n       \"    .dataframe tbody tr th:only-of-type {\\n\",\n       \"        vertical-align: middle;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe tbody tr th {\\n\",\n       \"        vertical-align: top;\\n\",\n       \"    }\\n\",\n       \"\\n\",\n       \"    .dataframe thead th {\\n\",\n       \"        text-align: right;\\n\",\n       \"    }\\n\",\n       \"</style>\\n\",\n       \"<table border=\\\"1\\\" class=\\\"dataframe\\\">\\n\",\n       \"  <thead>\\n\",\n       \"    <tr style=\\\"text-align: right;\\\">\\n\",\n       \"      <th></th>\\n\",\n       \"      <th>Survived</th>\\n\",\n       \"      <th>Pclass</th>\\n\",\n       \"      <th>Sex</th>\\n\",\n       \"      <th>Age</th>\\n\",\n       \"      <th>SibSp</th>\\n\",\n       \"      <th>Parch</th>\\n\",\n       \"      <th>Fare</th>\\n\",\n       \"      <th>Embarked</th>\\n\",\n       \"    </tr>\\n\",\n       \"  </thead>\\n\",\n       \"  <tbody>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>0</th>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>3</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>22.0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>7.2500</td>\\n\",\n       \"      <td>2</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>1</th>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>38.0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>71.2833</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>2</th>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>3</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>26.0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>7.9250</td>\\n\",\n       \"      <td>2</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>3</th>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>35.0</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>53.1000</td>\\n\",\n       \"      <td>2</td>\\n\",\n       \"    </tr>\\n\",\n       \"    <tr>\\n\",\n       \"      <th>4</th>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>3</td>\\n\",\n       \"      <td>1</td>\\n\",\n       \"      <td>35.0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>0</td>\\n\",\n       \"      <td>8.0500</td>\\n\",\n       \"      <td>2</td>\\n\",\n       \"    </tr>\\n\",\n       \"  </tbody>\\n\",\n       \"</table>\\n\",\n       \"</div>\"\n      ],\n      \"text/plain\": [\n       \"   Survived  Pclass  Sex   Age  SibSp  Parch     Fare  Embarked\\n\",\n       \"0         0       3    1  22.0      1      0   7.2500         2\\n\",\n       \"1         1       1    0  38.0      1      0  71.2833         0\\n\",\n       \"2         1       3    0  26.0      0      0   7.9250         2\\n\",\n       \"3         1       1    0  35.0      1      0  53.1000         2\\n\",\n       \"4         0       3    1  35.0      0      0   8.0500         2\"\n      ]\n     },\n     \"execution_count\": 4,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"from sklearn import preprocessing\\n\",\n    \"le = preprocessing.LabelEncoder()\\n\",\n    \"columns = [\\\"Sex\\\", \\\"Embarked\\\"]\\n\",\n    \"\\n\",\n    \"for col in columns:\\n\",\n    \"    data[col] = le.fit_transform(data[col])\\n\",\n    \"    test[col] = le.transform(test[col])\\n\",\n    \"    print(le.classes_)\\n\",\n    \"      \\n\",\n    \"data.head(5)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"id\": \"assumed-screening\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"from sklearn.linear_model import LogisticRegression\\n\",\n    \"from sklearn.model_selection import train_test_split\\n\",\n    \"\\n\",\n    \"y = data[\\\"Survived\\\"]\\n\",\n    \"X = data.drop(\\\"Survived\\\", axis=1)\\n\",\n    \"\\n\",\n    \"X_train, X_val, y_train, y_val = train_test_split(X, y, test_size=0.2, random_state=42)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"id\": \"industrial-internship\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"clf = LogisticRegression(random_state=0, max_iter=1000).fit(X_train, y_train)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"id\": \"fifteen-enemy\",\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/plain\": [\n       \"0.8888888888888888\"\n      ]\n     },\n     \"execution_count\": 7,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"predictions = clf.predict(X_val)\\n\",\n    \"from sklearn.metrics import accuracy_score\\n\",\n    \"accuracy_score(y_val, predictions)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"id\": \"juvenile-anthropology\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"submission_preds = clf.predict(test)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 9,\n   \"id\": \"virgin-settlement\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"df = pd.DataFrame({\\\"PassengerId\\\": test_ids.values,\\n\",\n    \"                   \\\"Survived\\\": submission_preds,\\n\",\n    \"                  })\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 10,\n   \"id\": \"tribal-bidding\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"df.to_csv(\\\"submission.csv\\\", index=False)\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.8.5\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 5\n}\n"
  },
  {
    "path": "ML/Projects/DeepSort/sort_w_attention.py",
    "content": "\"\"\"\nTraining a Pointer Network which is a modified\nSeq2Seq with attention network for the task of\nsorting arrays.\n\"\"\"\n\nfrom torch.utils.data import (\n    Dataset,\n    DataLoader,\n)\nimport random\nimport torch\nimport torch.nn as nn\nimport torch.optim as optim\nfrom utils import sort_array, save_checkpoint, load_checkpoint\nfrom torch.utils.tensorboard import SummaryWriter  # to print to tensorboard\n\n\nclass SortArray(Dataset):\n    def __init__(self, batch_size, min_int, max_int, min_size, max_size):\n        self.batch_size = batch_size\n        self.min_int = min_int\n        self.max_int = max_int + 1\n        self.min_size = min_size\n        self.max_size = max_size + 1\n        self.start_tok = torch.tensor([-1]).expand(1, self.batch_size)\n\n    def __len__(self):\n        return 10000 // self.batch_size\n\n    def __getitem__(self, index):\n        size_of_array = torch.randint(\n            low=self.min_size, high=self.max_size, size=(1, 1)\n        )\n\n        unsorted_arr = torch.rand(size=(size_of_array, self.batch_size)) * (\n            self.max_int - self.min_int\n        )\n        # unsorted_arr = torch.randint(\n        #    low=self.min_int, high=self.max_int, size=(size_of_array, self.batch_size)\n        # )\n        sorted_arr, indices = torch.sort(unsorted_arr, dim=0)\n\n        return unsorted_arr.float(), torch.cat((self.start_tok, indices), 0)\n\n\nclass Encoder(nn.Module):\n    def __init__(self, hidden_size, num_layers):\n        super(Encoder, self).__init__()\n        self.hidden_size = hidden_size\n        self.num_layers = num_layers\n\n        self.rnn = nn.LSTM(1, hidden_size, num_layers)\n\n    def forward(self, x):\n        embedding = x.unsqueeze(2)\n        # embedding shape: (seq_length, N, 1)\n\n        encoder_states, (hidden, cell) = self.rnn(embedding)\n        # encoder_states: (seq_length, N, hidden_size)\n\n        return encoder_states, hidden, cell\n\n\nclass Decoder(nn.Module):\n    def __init__(self, hidden_size, num_layers, units=100):\n        super(Decoder, self).__init__()\n        self.hidden_size = hidden_size\n        self.num_layers = num_layers\n        self.rnn = nn.LSTM(hidden_size + 1, hidden_size, num_layers)\n        self.energy = nn.Linear(hidden_size * 2, units)\n        self.fc = nn.Linear(units, 1)\n        self.softmax = nn.Softmax(dim=0)\n        self.relu = nn.ReLU()\n\n    def forward(self, x, encoder_states, hidden, cell):\n        sequence_length = encoder_states.shape[0]\n        batch_size = encoder_states.shape[1]\n\n        h_reshaped = hidden.repeat(sequence_length, 1, 1)\n        energy = self.relu(self.energy(torch.cat((h_reshaped, encoder_states), dim=2)))\n        energy = self.fc(energy)\n\n        # energy: (seq_length, N, 1)\n        attention = self.softmax(energy)\n\n        # attention: (seq_length, N, 1), snk\n        # encoder_states: (seq_length, N, hidden_size), snl\n        # we want context_vector: (1, N, hidden_size), i.e knl\n        context_vector = torch.einsum(\"snk,snl->knl\", attention, encoder_states)\n        rnn_input = torch.cat([context_vector, x.unsqueeze(0).unsqueeze(2)], dim=2)\n\n        # rnn_input: (1, N, hidden_size)\n        _, (hidden, cell) = self.rnn(rnn_input, (hidden, cell))\n        return attention.squeeze(2), energy.squeeze(2), hidden, cell\n\n\nclass Seq2Seq(nn.Module):\n    def __init__(self, encoder, decoder):\n        super(Seq2Seq, self).__init__()\n        self.encoder = encoder\n        self.decoder = decoder\n\n    def forward(self, source, target, teacher_force_ratio=0.5):\n        batch_size = source.shape[1]\n        target_len = target.shape[0]\n\n        outputs = torch.zeros(target_len, batch_size, target_len - 1).to(device)\n        encoder_states, hidden, cell = self.encoder(source)\n\n        # First input will be <SOS> token\n        x = target[0]\n        predictions = torch.zeros(target_len, batch_size)\n\n        for t in range(1, target_len):\n            # At every time step use encoder_states and update hidden, cell\n            attention, energy, hidden, cell = self.decoder(\n                x, encoder_states, hidden, cell\n            )\n\n            # Store prediction for current time step\n            outputs[t] = energy.permute(1, 0)\n\n            # Get the best word the Decoder predicted (index in the vocabulary)\n            best_guess = attention.argmax(0)\n            predictions[t, :] = best_guess\n\n            # With probability of teacher_force_ratio we take the actual next word\n            # otherwise we take the word that the Decoder predicted it to be.\n            # Teacher Forcing is used so that the model gets used to seeing\n            # similar inputs at training and testing time, if teacher forcing is 1\n            # then inputs at test time might be completely different than what the\n            # network is used to. This was a long comment.\n            x = target[t] if random.random() < teacher_force_ratio else best_guess\n\n        return outputs, predictions[1:, :]\n\n\n### We're ready to define everything we need for training our Seq2Seq model ###\ndevice = torch.device(\"cuda\" if torch.cuda.is_available() else \"cpu\")\nload_model = False\nsave_model = True\n\n# Training hyperparameters\nnum_epochs = 1000\nlearning_rate = 3e-5\nbatch_size = 32\nhidden_size = 1024\nnum_layers = 1  # Current implementation is only for 1 layered\nmin_int = 1\nmax_int = 10\nmin_size = 2\nmax_size = 15\n\n# Tensorboard to get nice plots etc\nwriter = SummaryWriter(f\"runs/loss_plot2\")\nstep = 0\n\nencoder_net = Encoder(hidden_size, num_layers).to(device)\ndecoder_net = Decoder(hidden_size, num_layers).to(device)\n\nmodel = Seq2Seq(encoder_net, decoder_net).to(device)\noptimizer = optim.Adam(model.parameters(), lr=learning_rate)\n\ncriterion = nn.CrossEntropyLoss()\n\nif load_model:\n    load_checkpoint(torch.load(\"my_checkpoint.pth.tar\"), model, optimizer)\n\n# following is for testing the network, uncomment this if you want\n# to try out a few arrays interactively\n# sort_array(encoder_net, decoder_net, device)\n\ndataset = SortArray(batch_size, min_int, max_int, min_size, max_size)\ntrain_loader = DataLoader(dataset, batch_size=1, shuffle=False)\n\nfor epoch in range(num_epochs):\n    print(f\"[Epoch {epoch} / {num_epochs}]\")\n\n    if save_model:\n        checkpoint = {\n            \"state_dict\": model.state_dict(),\n            \"optimizer\": optimizer.state_dict(),\n            \"steps\": step,\n        }\n        save_checkpoint(checkpoint)\n\n    for batch_idx, (unsorted_arrs, sorted_arrs) in enumerate(train_loader):\n        inp_data = unsorted_arrs.squeeze(0).to(device)\n        target = sorted_arrs.squeeze(0).to(device)\n\n        # Forward prop\n        output, prediction = model(inp_data, target)\n\n        # Remove output first element (because of how we did the look in Seq2Seq\n        # starting at t = 1, then reshape so that we obtain (N*seq_len, seq_len)\n        # and target will be (N*seq_len)\n        output = output[1:].reshape(-1, output.shape[2])\n        target = target[1:].reshape(-1)\n\n        optimizer.zero_grad()\n        loss = criterion(output, target)\n\n        # Back prop\n        loss.backward()\n\n        # Clip to avoid exploding gradient issues, makes sure grads are\n        # within a healthy range\n        torch.nn.utils.clip_grad_norm_(model.parameters(), max_norm=1)\n\n        # Gradient descent step\n        optimizer.step()\n\n        # plot to tensorboard\n        writer.add_scalar(\"Training loss\", loss, global_step=step)\n        step += 1\n"
  },
  {
    "path": "ML/Projects/DeepSort/utils.py",
    "content": "import torch\r\n\r\n\r\ndef ask_user():\r\n    print(\"Write your array as a list [i,j,k..] with arbitrary positive numbers\")\r\n    array = input(\"Input q if you want to quit \\n\")\r\n    return array\r\n\r\n\r\ndef sort_array(encoder, decoder, device, arr=None):\r\n    \"\"\"\r\n    A very simple example of use of the model\r\n    Input: encoder nn.Module\r\n           decoder nn.Module\r\n           device\r\n           array to sort (optional)\r\n    \"\"\"\r\n\r\n    if arr is None:\r\n        arr = ask_user()\r\n\r\n    with torch.no_grad():\r\n        while arr != \"q\":\r\n            # Avoid numerical errors by rounding to max_len\r\n            arr = eval(arr)\r\n            lengths = [\r\n                len(str(elem).split(\".\")[1]) if len(str(elem).split(\".\")) > 1 else 0\r\n                for elem in arr\r\n            ]\r\n            max_len = max(lengths)\r\n            source = torch.tensor(arr, dtype=torch.float).to(device).unsqueeze(1)\r\n            batch_size = source.shape[1]\r\n            target_len = source.shape[0] + 1\r\n\r\n            outputs = torch.zeros(target_len, batch_size, target_len - 1).to(device)\r\n            encoder_states, hidden, cell = encoder(source)\r\n\r\n            # First input will be <SOS> token\r\n            x = torch.tensor([-1], dtype=torch.float).to(device)\r\n            predictions = torch.zeros((target_len)).to(device)\r\n\r\n            for t in range(1, target_len):\r\n                # At every time step use encoder_states and update hidden, cell\r\n                attention, energy, hidden, cell = decoder(\r\n                    x, encoder_states, hidden, cell\r\n                )\r\n\r\n                # Store prediction for current time step\r\n                outputs[t] = energy.permute(1, 0)\r\n\r\n                # Get the best word the Decoder predicted (index in the vocabulary)\r\n                best_guess = attention.argmax(0)\r\n                predictions[t] = best_guess.item()\r\n                x = torch.tensor([best_guess.item()], dtype=torch.float).to(device)\r\n\r\n            output = [\r\n                round(source[predictions[1:].long()][i, :].item(), max_len)\r\n                for i in range(source.shape[0])\r\n            ]\r\n\r\n            print(f\"Here's the result: {output}\")\r\n            arr = ask_user()\r\n\r\n\r\ndef save_checkpoint(state, filename=\"my_checkpoint.pth.tar\"):\r\n    print(\"=> Saving checkpoint\")\r\n    torch.save(state, filename)\r\n\r\n\r\ndef load_checkpoint(checkpoint, model, optimizer):  # , steps):\r\n    print(\"=> Loading checkpoint\")\r\n    model.load_state_dict(checkpoint[\"state_dict\"])\r\n    optimizer.load_state_dict(checkpoint[\"optimizer\"])\r\n    # steps = checkpoint['steps']\r\n    # return steps\r\n"
  },
  {
    "path": "ML/Projects/Exploring_MNIST/README.md",
    "content": "# Exploring the MNIST dataset with PyTorch\n\nThe goal of this small project of mine is to learn different models and then try and see what kind of test accuracies we can get on the MNIST dataset. I checked some popular models (LeNet, VGG, Inception net, ResNet) and likely I will try more out in the future as I learn more network architectures. I used an exponential learning rate decay and data augmentation, in the beginning I was just using every data augmentation other people were using but I learned that using RandomHorizontalFlip when learning to recognize digits might not be so useful (heh). I also used a lambda/weight decay of pretty standard 5e-4. My thinking during training was first that I split into a validationset of about 10000 examples and made sure that it was getting high accuracies on validationset with current hyperparameters. After making sure that it wasn't just overfitting the training set, I changed so that the model used all of the training examples (60000) and then when finished training to about ~99.9% training accuracy I tested on the test set.\n\n## Accuracy\n| Model |  Number of epochs  | Training set acc. | Test set acc. |\n| ----------------- | ----------- | ----------------- | ----------- |\n| [LeNet](http://yann.lecun.com/exdb/publis/pdf/lecun-01a.pdf) | 150 | 99.69%      | 99.12%  |\n| [VGG13](https://arxiv.org/abs/1409.1556)              | 100 |  99.95%      |  99.67%   |\n| [VGG16](https://arxiv.org/abs/1409.1556)              | 100 |  99.92%      |  99.68%   |\n| [GoogLeNet](https://arxiv.org/abs/1409.4842)          | 100 |  99.90%      |  99.71%   |\n| [ResNet101](https://arxiv.org/abs/1512.03385)          | 100 | 99.90%      |  99.68%  |\n\nTODO: MobileNet, ResNext, SqueezeNet, .., ?\n\n### Comments and things to improve\nI believe LeNet has more potential as it's not really overfitting the training set that well and needs more epochs. I believe that in the original paper by LeCun et. al. (1998) showed that they achieved about 99.1% test accuracy which is similar to my results but we also need to remember the limitations that were back then. I do think training it for a bit longer to make it ~99.8-99.9% on training set would get it up to perhaps 99.2-99.3% test accuracy if we're lucky. So far the other models I think have performed quite well and is close, at least from my understanding, to current state of the art. If you would like to really maximize accuracy you would train an ensemble of models and then average their predictions to achieve better accuracy but I've not done that here as I don't think it's that interesting. This was mostly to learn different network architectures and to then check if they work as intended. If you find anything that I can improve or any mistakes, please tell me what and I'll do my best to fix it!\n\n### How to run\n```bash\nusage: train.py [-h] [--resume PATH] [--lr LR] [--weight-decay R]\n                [--momentum R] [--epochs N] [--batch-size N]\n                [--log-interval N] [--seed S] [--number-workers S]\n                [--init-padding S] [--create-validationset] [--save-model]\n\nPyTorch MNIST\n\noptional arguments:\n  --resume PATH Saved model. (ex: PATH = checkpoint/mnist_LeNet.pth.tar)\n  --batch-size N (ex: --batch-size 64), default is 128.\n  --epochs N  (ex: --epochs 10) default is 100.\n  --lr LR learning rate (ex: --lr 0.01), default is 0.001.\n  --momentum M SGD w momentum (ex: --momentum 0.5), default is 0.9.\n  --seed S random seed (ex: --seed 3), default is 1.\n  --log-interval N print accuracy ever N mini-batches, ex (--log-interval 50), default 240.\n  --init-padding S Initial padding on images (ex: --init-padding 5), default is 2 to make 28x28 into 32x32.\n  --create-validation to create validationset\n  --save-model to save weights\n  --weight-decay R What weight decay you want (ex: --weight-decay 1e-4), default 1e-5.\n  --number-workers S How many num workers you want in PyTorch (ex --number-workers 2), default is 0.\n\n\nExample of a run is:\npython train.py --save-model --resume checkpoint/mnist_LeNet.pth.tar --weight-decay 1e-5 --number-workers 2\n```\n"
  },
  {
    "path": "ML/Projects/Exploring_MNIST/networks/googLeNet.py",
    "content": "import torch\nimport torch.nn as nn\nimport torch.nn.functional as F\n\n\nclass Inception(nn.Module):\n    def __init__(\n        self, in_channels, out1x1, out3x3reduced, out3x3, out5x5reduced, out5x5, outpool\n    ):\n        super().__init__()\n\n        self.branch_1 = BasicConv2d(in_channels, out1x1, kernel_size=1, stride=1)\n\n        self.branch_2 = nn.Sequential(\n            BasicConv2d(in_channels, out3x3reduced, kernel_size=1),\n            BasicConv2d(out3x3reduced, out3x3, kernel_size=3, padding=1),\n        )\n\n        # Is in the original googLeNet paper 5x5 conv but in Inception_v2 it has shown to be\n        # more efficient if you instead do two 3x3 convs which is what I am doing here!\n        self.branch_3 = nn.Sequential(\n            BasicConv2d(in_channels, out5x5reduced, kernel_size=1),\n            BasicConv2d(out5x5reduced, out5x5, kernel_size=3, padding=1),\n            BasicConv2d(out5x5, out5x5, kernel_size=3, padding=1),\n        )\n\n        self.branch_4 = nn.Sequential(\n            nn.MaxPool2d(kernel_size=3, stride=1, padding=1),\n            BasicConv2d(in_channels, outpool, kernel_size=1),\n        )\n\n    def forward(self, x):\n        y1 = self.branch_1(x)\n        y2 = self.branch_2(x)\n        y3 = self.branch_3(x)\n        y4 = self.branch_4(x)\n\n        return torch.cat([y1, y2, y3, y4], 1)\n\n\nclass GoogLeNet(nn.Module):\n    def __init__(self, img_channel):\n        super().__init__()\n\n        self.first_layers = nn.Sequential(\n            BasicConv2d(img_channel, 192, kernel_size=3, padding=1)\n        )\n\n        self._3a = Inception(192, 64, 96, 128, 16, 32, 32)\n        self._3b = Inception(256, 128, 128, 192, 32, 96, 64)\n\n        self.maxpool = nn.MaxPool2d(kernel_size=3, stride=2, padding=1)\n\n        self._4a = Inception(480, 192, 96, 208, 16, 48, 64)\n        self._4b = Inception(512, 160, 112, 224, 24, 64, 64)\n        self._4c = Inception(512, 128, 128, 256, 24, 64, 64)\n        self._4d = Inception(512, 112, 144, 288, 32, 64, 64)\n        self._4e = Inception(528, 256, 160, 320, 32, 128, 128)\n\n        self._5a = Inception(832, 256, 160, 320, 32, 128, 128)\n        self._5b = Inception(832, 384, 192, 384, 48, 128, 128)\n\n        self.avgpool = nn.AvgPool2d(kernel_size=8, stride=1)\n        self.linear = nn.Linear(1024, 10)\n\n    def forward(self, x):\n        out = self.first_layers(x)\n\n        out = self._3a(out)\n        out = self._3b(out)\n        out = self.maxpool(out)\n\n        out = self._4a(out)\n        out = self._4b(out)\n        out = self._4c(out)\n        out = self._4d(out)\n        out = self._4e(out)\n        out = self.maxpool(out)\n\n        out = self._5a(out)\n        out = self._5b(out)\n\n        out = self.avgpool(out)\n        out = out.view(out.size(0), -1)\n        out = self.linear(out)\n\n        return out\n\n\nclass BasicConv2d(nn.Module):\n    def __init__(self, in_channels, out_channels, **kwargs):\n        super().__init__()\n        self.conv = nn.Conv2d(in_channels, out_channels, bias=False, **kwargs)\n        self.bn = nn.BatchNorm2d(out_channels, eps=0.001)\n\n    def forward(self, x):\n        x = self.conv(x)\n        x = self.bn(x)\n        return F.relu(x, inplace=True)\n\n\ndef test():\n    net = GoogLeNet(1)\n    x = torch.randn(3, 1, 32, 32)\n    y = net(x)\n    print(y.size())\n\n\n# test()\n"
  },
  {
    "path": "ML/Projects/Exploring_MNIST/networks/import_all_networks.py",
    "content": "from networks.vgg import VGG\nfrom networks.lenet import LeNet\nfrom networks.resnet import ResNet, residual_template, ResNet50, ResNet101, ResNet152\nfrom networks.googLeNet import BasicConv2d, Inception, GoogLeNet\n"
  },
  {
    "path": "ML/Projects/Exploring_MNIST/networks/lenet.py",
    "content": "import torch\nimport torch.nn as nn\nimport torch.nn.functional as F\n\n\nclass LeNet(nn.Module):\n    def __init__(self, in_channels, init_weights=True, num_classes=10):\n        super(LeNet, self).__init__()\n\n        self.num_classes = num_classes\n\n        if init_weights:\n            self._initialize_weights()\n\n        self.conv1 = nn.Conv2d(in_channels=in_channels, out_channels=6, kernel_size=5)\n        self.conv2 = nn.Conv2d(in_channels=6, out_channels=16, kernel_size=5)\n        self.fc1 = nn.Linear(16 * 5 * 5, 120)\n        self.fc2 = nn.Linear(120, 84)\n        self.fc3 = nn.Linear(84, 10)\n\n    def forward(self, x):\n        z1 = self.conv1(x)  # 6 x 28 x 28\n        a1 = F.relu(z1)  # 6 x 28 x 28\n        a1 = F.max_pool2d(a1, kernel_size=2, stride=2)  # 6 x 14 x 14\n        z2 = self.conv2(a1)  # 16 x 10 x 10\n        a2 = F.relu(z2)  # 16 x 10 x 10\n        a2 = F.max_pool2d(a2, kernel_size=2, stride=2)  # 16 x 5 x 5\n        flatten_a2 = a2.view(a2.size(0), -1)\n        z3 = self.fc1(flatten_a2)\n        a3 = F.relu(z3)\n        z4 = self.fc2(a3)\n        a4 = F.relu(z4)\n        z5 = self.fc3(a4)\n        return z5\n\n    def _initialize_weights(self):\n        for m in self.modules():\n            if isinstance(m, nn.Conv2d):\n                nn.init.kaiming_normal_(m.weight, mode=\"fan_out\", nonlinearity=\"relu\")\n\n                if m.bias is not None:\n                    nn.init.constant_(m.bias, 0)\n\n            elif isinstance(m, nn.BatchNorm2d):\n                nn.init.constant_(m.weight, 1)\n                nn.init.constant_(m.bias, 0)\n\n            elif isinstance(m, nn.Linear):\n                nn.init.normal_(m.weight, 0, 0.01)\n                nn.init.constant_(m.bias, 0)\n\n\ndef test_lenet():\n    net = LeNet(1)\n    x = torch.randn(64, 1, 32, 32)\n    y = net(x)\n    print(y.size())\n\n\ntest_lenet()\n"
  },
  {
    "path": "ML/Projects/Exploring_MNIST/networks/resnet.py",
    "content": "import torch\nimport torch.nn as nn\n\n\nclass residual_template(nn.Module):\n    expansion = 4\n\n    def __init__(self, in_channels, out_channels, stride=1, identity_downsample=None):\n        super().__init__()\n        self.conv1 = nn.Conv2d(in_channels, out_channels, kernel_size=1, bias=False)\n        self.bn1 = nn.BatchNorm2d(out_channels)\n        self.conv2 = nn.Conv2d(\n            out_channels,\n            out_channels,\n            kernel_size=3,\n            stride=stride,\n            padding=1,\n            bias=False,\n        )\n        self.bn2 = nn.BatchNorm2d(out_channels)\n        self.conv3 = nn.Conv2d(\n            out_channels, out_channels * self.expansion, kernel_size=1, bias=False\n        )\n        self.bn3 = nn.BatchNorm2d(out_channels * self.expansion)\n        self.relu = nn.ReLU(inplace=True)\n        self.identity_downsample = identity_downsample\n        self.stride = stride\n\n    def forward(self, x):\n        residual = x\n\n        out = self.conv1(x)\n        out = self.bn1(out)\n        out = self.relu(out)\n\n        out = self.conv2(out)\n        out = self.bn2(out)\n        out = self.relu(out)\n\n        out = self.conv3(out)\n        out = self.bn3(out)\n\n        if self.identity_downsample is not None:\n            residual = self.identity_downsample(x)\n\n        out += residual\n        out = self.relu(out)\n\n        return out\n\n\nclass ResNet(nn.Module):\n    def __init__(self, residual_template, layers, image_channel, num_classes=10):\n        self.in_channels = 64\n        super().__init__()\n\n        self.conv1 = nn.Conv2d(\n            in_channels=image_channel,\n            out_channels=64,\n            kernel_size=3,\n            stride=1,\n            padding=1,\n            bias=False,\n        )\n        self.bn1 = nn.BatchNorm2d(64)\n        self.relu = nn.ReLU(inplace=True)\n        self.layer1 = self._make_layer(\n            residual_template, layers[0], channels=64, stride=1\n        )\n        self.layer2 = self._make_layer(\n            residual_template, layers[1], channels=128, stride=2\n        )\n        self.layer3 = self._make_layer(\n            residual_template, layers[2], channels=256, stride=2\n        )\n        self.layer4 = self._make_layer(\n            residual_template, layers[3], channels=512, stride=2\n        )\n        self.avgpool = nn.AvgPool2d(kernel_size=4, stride=1)\n        self.fc = nn.Linear(512 * residual_template.expansion, num_classes)\n\n        # initialize weights for conv layers, batch layers\n        for m in self.modules():\n            if isinstance(m, nn.Conv2d):\n                nn.init.kaiming_normal_(m.weight, mode=\"fan_out\", nonlinearity=\"relu\")\n            elif isinstance(m, nn.BatchNorm2d):\n                nn.init.constant_(m.weight, 1)\n                nn.init.constant_(m.bias, 0)\n\n    def _make_layer(self, residual_template, num_residuals_blocks, channels, stride):\n        identity_downsample = None\n\n        if stride != 1 or self.in_channels != channels * residual_template.expansion:\n            identity_downsample = nn.Sequential(\n                nn.Conv2d(\n                    self.in_channels,\n                    channels * residual_template.expansion,\n                    kernel_size=1,\n                    stride=stride,\n                    bias=False,\n                ),\n                nn.BatchNorm2d(channels * residual_template.expansion),\n            )\n\n        layers = []\n        layers.append(\n            residual_template(self.in_channels, channels, stride, identity_downsample)\n        )\n        self.in_channels = channels * residual_template.expansion\n\n        for i in range(1, num_residuals_blocks):\n            layers.append(residual_template(self.in_channels, channels))\n\n        return nn.Sequential(*layers)\n\n    def forward(self, x):\n        x = self.conv1(x)\n        x = self.bn1(x)\n        x = self.relu(x)\n\n        x = self.layer1(x)\n        x = self.layer2(x)\n        x = self.layer3(x)\n        x = self.layer4(x)\n\n        x = self.avgpool(x)\n        x = x.view(x.size(0), -1)\n        x = self.fc(x)\n\n        return x\n\n\ndef ResNet50(img_channel):\n    return ResNet(residual_template, [3, 4, 6, 3], img_channel)\n\n\ndef ResNet101(img_channel):\n    return ResNet(residual_template, [3, 4, 23, 3], img_channel)\n\n\ndef ResNet152(img_channel):\n    return ResNet(residual_template, [3, 8, 36, 3], img_channel)\n\n\ndef test():\n    net = ResNet152(img_channel=1)\n    y = net(torch.randn(64, 1, 32, 32))\n    print(y.size())\n\n\n# test()\n"
  },
  {
    "path": "ML/Projects/Exploring_MNIST/networks/vgg.py",
    "content": "import torch\nimport torch.nn as nn\n\n\nVGG_types = {\n    \"VGG11\": [64, \"M\", 128, \"M\", 256, 256, \"M\", 512, 512, \"M\", 512, 512, \"M\"],\n    \"VGG13\": [64, 64, \"M\", 128, 128, \"M\", 256, 256, \"M\", 512, 512, \"M\", 512, 512, \"M\"],\n    \"VGG16\": [\n        64,\n        64,\n        \"M\",\n        128,\n        128,\n        \"M\",\n        256,\n        256,\n        256,\n        \"M\",\n        512,\n        512,\n        512,\n        \"M\",\n        512,\n        512,\n        512,\n        \"M\",\n    ],\n    \"VGG19\": [\n        64,\n        64,\n        \"M\",\n        128,\n        128,\n        \"M\",\n        256,\n        256,\n        256,\n        256,\n        \"M\",\n        512,\n        512,\n        512,\n        512,\n        \"M\",\n        512,\n        512,\n        512,\n        512,\n        \"M\",\n    ],\n}\n\n\nclass VGG(nn.Module):\n    def __init__(\n        self, vgg_type, in_channels, init_weights=True, batch_norm=True, num_classes=10\n    ):\n        super().__init__()\n\n        self.batch_norm = batch_norm\n        self.in_channels = in_channels\n\n        self.layout = self.create_architecture(VGG_types[vgg_type])\n        self.fc = nn.Linear(512, num_classes)\n\n        # self.fcs = nn.Sequential(\n        #     nn.Linear(512* 1 * 1, 4096),\n        #     nn.ReLU(inplace = False),\n        #     nn.Dropout(),\n        #     nn.Linear(4096, 4096),\n        #     nn.ReLU(inplace = False),\n        #     nn.Dropout(),\n        #     nn.Linear(4096, num_classes),\n        # )\n\n        if init_weights:\n            self._initialize_weights()\n\n    def forward(self, x):\n        out = self.layout(x)\n        out = out.view(out.size(0), -1)\n        out = self.fc(out)\n\n        return out\n\n    def _initialize_weights(self):\n        for m in self.modules():\n            if isinstance(m, nn.Conv2d):\n                nn.init.kaiming_normal_(m.weight, mode=\"fan_out\", nonlinearity=\"relu\")\n\n                if m.bias is not None:\n                    nn.init.constant_(m.bias, 0)\n\n            elif isinstance(m, nn.BatchNorm2d):\n                nn.init.constant_(m.weight, 1)\n                nn.init.constant_(m.bias, 0)\n\n            elif isinstance(m, nn.Linear):\n                nn.init.normal_(m.weight, 0, 0.01)\n                nn.init.constant_(m.bias, 0)\n\n    def create_architecture(self, architecture):\n        layers = []\n\n        for x in architecture:\n            if type(x) == int:\n                out_channels = x\n\n                conv2d = nn.Conv2d(\n                    self.in_channels, out_channels, kernel_size=3, padding=1\n                )\n\n                if self.batch_norm:\n                    layers += [\n                        conv2d,\n                        nn.BatchNorm2d(out_channels),\n                        nn.ReLU(inplace=False),\n                    ]\n                else:\n                    layers += [conv2d, nn.ReLU(inplace=False)]\n\n                self.in_channels = out_channels\n\n            elif x == \"M\":\n                layers.append(nn.MaxPool2d(kernel_size=2, stride=2))\n\n        layers += [nn.AvgPool2d(kernel_size=1, stride=1)]\n\n        return nn.Sequential(*layers)\n\n\ndef test():\n    net = VGG(\"VGG16\", 1)\n    x = torch.randn(64, 1, 32, 32)\n    y = net(x)\n    print(y.size())\n\n\n# test()\n"
  },
  {
    "path": "ML/Projects/Exploring_MNIST/train.py",
    "content": "import argparse\nimport os\nimport shutil\n\nimport torch\nimport torch.nn as nn\nimport torch.optim as optim\nimport torch.utils.data\n\nimport torchvision.transforms as transforms\nimport torchvision.datasets as datasets\nimport torch.backends.cudnn as cudnn\n\nfrom torch.utils.data import DataLoader, SubsetRandomSampler\nfrom networks.import_all_networks import *\nfrom utils.import_utils import *\n\n\nclass Train_MNIST(object):\n    def __init__(self):\n        self.best_acc = 0\n        self.in_channels = 1  # 1 because MNIST is grayscale\n        self.dataset = mnist_data  # Class that is imported from utils that imports data\n        self.device = \"cuda\" if torch.cuda.is_available() else \"cpu\"\n        self.dtype = torch.float32\n\n        self.args = self.prepare_args()\n        self.transform_train, self.transform_test = self.prepare_transformations()\n\n        if self.args.create_validationset:\n            (\n                self.loader_train,\n                self.loader_validation,\n                self.loader_test,\n            ) = self.prepare_data()\n            self.data_check_acc = self.loader_validation\n        else:\n            self.loader_train, self.loader_test = self.prepare_data()\n            self.data_check_acc = self.loader_train\n\n    def prepare_args(self):\n        parser = argparse.ArgumentParser(description=\"PyTorch MNIST\")\n        parser.add_argument(\n            \"--resume\",\n            default=\"\",\n            type=str,\n            metavar=\"PATH\",\n            help=\"path to latest checkpoint (default: none)\",\n        )\n        parser.add_argument(\n            \"--lr\",\n            default=0.001,\n            type=float,\n            metavar=\"LR\",\n            help=\"initial learning rate\",\n        )\n        parser.add_argument(\n            \"--weight-decay\",\n            default=1e-5,\n            type=float,\n            metavar=\"R\",\n            help=\"L2 regularization lambda\",\n        )\n        parser.add_argument(\n            \"--momentum\", default=0.9, type=float, metavar=\"M\", help=\"SGD with momentum\"\n        )\n        parser.add_argument(\n            \"--epochs\",\n            type=int,\n            default=100,\n            metavar=\"N\",\n            help=\"number of epochs to train (default: 100)\",\n        )\n        parser.add_argument(\n            \"--batch-size\",\n            type=int,\n            default=128,\n            metavar=\"N\",\n            help=\"input batch size for training (default: 128)\",\n        )\n        parser.add_argument(\n            \"--log-interval\",\n            type=int,\n            default=240,\n            metavar=\"N\",\n            help=\"how many batches to wait before logging training status\",\n        )\n        parser.add_argument(\n            \"--seed\", type=int, default=1, metavar=\"S\", help=\"random seed (default: 1)\"\n        )\n        parser.add_argument(\n            \"--number-workers\",\n            type=int,\n            default=0,\n            metavar=\"S\",\n            help=\"number of workers (default: 0)\",\n        )\n        parser.add_argument(\n            \"--init-padding\",\n            type=int,\n            default=2,\n            metavar=\"S\",\n            help=\" If use initial padding or not. (default: 2 because mnist 28x28 to make 32x32)\",\n        )\n        parser.add_argument(\n            \"--create-validationset\",\n            action=\"store_true\",\n            default=False,\n            help=\"If you want to use a validation set (default: False). Default size = 10%\",\n        )\n        parser.add_argument(\n            \"--save-model\",\n            action=\"store_true\",\n            default=False,\n            help=\"If you want to save this model(default: False).\",\n        )\n        args = parser.parse_args()\n        return args\n\n    def prepare_transformations(self):\n        transform_train = transforms.Compose(\n            [\n                transforms.Pad(self.args.init_padding),\n                transforms.ToTensor(),\n                transforms.Normalize((0.1307,), (0.3081,)),\n            ]\n        )\n\n        transform_test = transforms.Compose(\n            [\n                transforms.Pad(self.args.init_padding),\n                transforms.ToTensor(),\n                transforms.Normalize((0.1307,), (0.3081,)),\n            ]\n        )\n\n        return transform_train, transform_test\n\n    def prepare_data(self, shuffle=True):\n\n        data = self.dataset(\n            shuffle,\n            self.transform_train,\n            self.transform_test,\n            self.args.number_workers,\n            self.args.create_validationset,\n            self.args.batch_size,\n            validation_size=0.1,\n            random_seed=self.args.seed,\n        )\n\n        if self.args.create_validationset:\n            loader_train, loader_validation, loader_test = data.main()\n\n            return loader_train, loader_validation, loader_test\n\n        else:\n            loader_train, loader_test = data.main()\n\n            return loader_train, loader_test\n\n    def train(self):\n        criterion = nn.CrossEntropyLoss()\n        iter = 0\n\n        # vis_plotting = visdom_plotting()\n        loss_list, batch_list, epoch_list, validation_acc_list, training_acc_list = (\n            [],\n            [],\n            [0],\n            [0],\n            [0],\n        )\n\n        for epoch in range(self.args.epochs):\n            for batch_idx, (x, y) in enumerate(self.loader_train):\n                self.model.train()\n                x = x.to(device=self.device, dtype=self.dtype)\n                y = y.to(device=self.device, dtype=torch.long)\n\n                scores = self.model(x)\n                loss = criterion(scores, y)\n\n                loss_list.append(loss.item())\n                batch_list.append(iter + 1)\n                iter += 1\n\n                if batch_idx % self.args.log_interval == 0:\n                    print(f\"Batch {batch_idx}, epoch {epoch}, loss = {loss.item()}\")\n                    print()\n                    self.model.eval()\n                    train_acc = check_accuracy(self.data_check_acc, self.model)\n                    # validation_acc = self.check_accuracy(self.data_check_acc)\n                    validation_acc = 0\n                    validation_acc_list.append(validation_acc)\n                    training_acc_list.append(train_acc)\n                    epoch_list.append(epoch + 0.5)\n                    print()\n                    print()\n                    # call to plot in visdom\n                    # vis_plotting.create_plot(loss_list, batch_list, validation_acc_list, epoch_list, training_acc_list)\n\n                    # save checkpoint\n                    if train_acc > self.best_acc and self.args.save_model:\n                        self.best_acc = train_acc\n                        save_checkpoint(\n                            self.filename,\n                            self.model,\n                            self.optimizer,\n                            self.best_acc,\n                            epoch,\n                        )\n\n                self.model.train()\n                self.optimizer.zero_grad()\n                loss.backward()\n                self.optimizer.step()\n\n    def choose_network(self):\n        self.model = LeNet(\n            in_channels=self.in_channels, init_weights=True, num_classes=10\n        )\n        self.filename = \"checkpoint/mnist_LeNet.pth.tar\"\n\n        # self.model = VGG('VGG16', in_channels = self.in_channels)\n        # self.filename =  'checkpoint/mnist_VGG16.pth.tar'\n\n        # self.model = ResNet50(img_channel=1)\n        # self.filename =  'checkpoint/mnist_ResNet.pth.tar'\n\n        # self.model = GoogLeNet(img_channel=1)\n        # self.filename =  'checkpoint/mnist_GoogLeNet.pth.tar'\n\n        self.model = self.model.to(self.device)\n\n    def main(self):\n        if __name__ == \"__main__\":\n            self.choose_network()\n            self.optimizer = optim.SGD(\n                self.model.parameters(),\n                lr=self.args.lr,\n                weight_decay=self.args.weight_decay,\n                momentum=self.args.momentum,\n            )\n            cudnn.benchmark = True\n\n            if self.args.resume:\n                self.model.eval()\n                (\n                    self.model,\n                    self.optimizer,\n                    self.checkpoint,\n                    self.start_epoch,\n                    self.best_acc,\n                ) = load_model(self.args, self.model, self.optimizer)\n            else:\n                load_model(self.args, self.model, self.optimizer)\n\n            self.train()\n\n\n## Mnist\nnetwork = Train_MNIST()\nTrain_MNIST.main(network)\n"
  },
  {
    "path": "ML/Projects/Exploring_MNIST/utils/import_utils.py",
    "content": "from utils.mnist_data import mnist_data\nfrom utils.utils import check_accuracy, save_checkpoint, visdom_plotting, load_model\n"
  },
  {
    "path": "ML/Projects/Exploring_MNIST/utils/mnist_data.py",
    "content": "import numpy as np\nimport torchvision.datasets as datasets\nfrom torch.utils.data import DataLoader, SubsetRandomSampler\n\n\nclass mnist_data(object):\n    def __init__(\n        self,\n        shuffle,\n        transform_train,\n        transform_test,\n        num_workers=0,\n        create_validation_set=True,\n        batch_size=128,\n        validation_size=0.2,\n        random_seed=1,\n    ):\n        self.shuffle = shuffle\n        self.validation_size = validation_size\n        self.transform_train = transform_train\n        self.transform_test = transform_test\n        self.random_seed = random_seed\n        self.create_validation_set = create_validation_set\n        self.batch_size = batch_size\n        self.num_workers = num_workers\n\n    def download_data(self):\n        mnist_trainset = datasets.MNIST(\n            root=\"./data\", train=True, download=True, transform=self.transform_train\n        )\n        mnist_testset = datasets.MNIST(\n            root=\"./data\", train=False, download=True, transform=self.transform_test\n        )\n\n        return mnist_trainset, mnist_testset\n\n    def create_validationset(self, mnist_trainset):\n        num_train = len(mnist_trainset)\n        indices = list(range(num_train))\n        split = int(self.validation_size * num_train)\n\n        if self.shuffle:\n            np.random.seed(self.random_seed)\n            np.random.shuffle(indices)\n\n        train_idx, valid_idx = indices[split:], indices[:split]\n\n        train_sampler = SubsetRandomSampler(train_idx)\n        validation_sampler = SubsetRandomSampler(valid_idx)\n\n        loader_train = DataLoader(\n            dataset=mnist_trainset,\n            batch_size=self.batch_size,\n            sampler=train_sampler,\n            num_workers=self.num_workers,\n        )\n        loader_validation = DataLoader(\n            dataset=mnist_trainset,\n            batch_size=self.batch_size,\n            sampler=validation_sampler,\n            num_workers=self.num_workers,\n        )\n\n        return loader_train, loader_validation\n\n    def main(self):\n        mnist_trainset, mnist_testset = self.download_data()\n\n        if self.create_validation_set:\n            loader_train, loader_validation = self.create_validationset(mnist_trainset)\n            loader_test = DataLoader(\n                dataset=mnist_testset,\n                batch_size=self.batch_size,\n                shuffle=False,\n                num_workers=self.num_workers,\n            )\n\n            return loader_train, loader_validation, loader_test\n\n        else:\n            loader_train = DataLoader(\n                dataset=mnist_trainset,\n                batch_size=self.batch_size,\n                shuffle=self.shuffle,\n                num_workers=self.num_workers,\n            )\n            loader_test = DataLoader(\n                dataset=mnist_testset,\n                batch_size=self.batch_size,\n                shuffle=False,\n                num_workers=self.num_workers,\n            )\n\n            return loader_train, loader_test\n"
  },
  {
    "path": "ML/Projects/Exploring_MNIST/utils/utils.py",
    "content": "import torch\nimport visdom\nimport os\n\ndevice = \"cuda\" if torch.cuda.is_available() else \"cpu\"\ndtype = torch.float32\n\n\ndef save_checkpoint(filename, model, optimizer, train_acc, epoch):\n    save_state = {\n        \"state_dict\": model.state_dict(),\n        \"acc\": train_acc,\n        \"epoch\": epoch + 1,\n        \"optimizer\": optimizer.state_dict(),\n    }\n    print()\n    print(\"Saving current parameters\")\n    print(\"___________________________________________________________\")\n\n    torch.save(save_state, filename)\n\n\ndef check_accuracy(loader, model):\n    if loader.dataset.train:\n        print(\"Checking accuracy on training or validation set\")\n    else:\n        print(\"Checking accuracy on test set\")\n    num_correct = 0\n    num_samples = 0\n    # model.eval()  # set model to evaluation mode\n    with torch.no_grad():\n        for x, y in loader:\n            x = x.to(device=device, dtype=dtype)  # move to device, e.g. GPU\n            y = y.to(device=device, dtype=torch.long)\n            scores = model(x)\n            _, preds = scores.max(1)\n            num_correct += (preds == y).sum()\n            num_samples += preds.size(0)\n        acc = (float(num_correct) / num_samples) * 100.0\n        print(\"Got %d / %d correct (%.2f)\" % (num_correct, num_samples, acc))\n        return acc\n\n\ndef load_model(args, model, optimizer):\n    if args.resume:\n        model.eval()\n        if os.path.isfile(args.resume):\n            print(\"=> loading checkpoint '{}'\".format(args.resume))\n            checkpoint = torch.load(args.resume)\n            start_epoch = checkpoint[\"epoch\"]\n            best_acc = checkpoint[\"acc\"]\n            model.load_state_dict(checkpoint[\"state_dict\"])\n            optimizer.load_state_dict(checkpoint[\"optimizer\"])\n            print(\n                \"=> loaded checkpoint '{}' (epoch {})\".format(\n                    args.resume, checkpoint[\"epoch\"]\n                )\n            )\n            return model, optimizer, checkpoint, start_epoch, best_acc\n        else:\n            print(\"=> no checkpoint found at '{}'\".format(args.resume))\n    else:\n        print(\"No pretrained model. Starting from scratch!\")\n\n\nclass visdom_plotting(object):\n    def __init__(self):\n        self.viz = visdom.Visdom()\n\n        self.cur_batch_win = None\n        self.cur_batch_win_opts = {\n            \"title\": \"Epoch Loss Trace\",\n            \"xlabel\": \"Batch Number\",\n            \"ylabel\": \"Loss\",\n            \"width\": 600,\n            \"height\": 400,\n        }\n\n        self.cur_validation_acc = None\n        self.cur_validation_acc_opts = {\n            \"title\": \"Validation accuracy\",\n            \"xlabel\": \"Epochs\",\n            \"ylabel\": \"Validation Accuracy\",\n            \"width\": 600,\n            \"height\": 400,\n        }\n\n        self.cur_training_acc = None\n        self.cur_training_acc_opts = {\n            \"title\": \"Training accuracy\",\n            \"xlabel\": \"Epochs\",\n            \"ylabel\": \"Train Accuracy\",\n            \"width\": 600,\n            \"height\": 400,\n        }\n\n    def create_plot(\n        self, loss_list, batch_list, validation_acc_list, epoch_list, training_acc_list\n    ):\n\n        if self.viz.check_connection():\n            self.cur_batch_win = self.viz.line(\n                torch.FloatTensor(loss_list),\n                torch.FloatTensor(batch_list),\n                win=self.cur_batch_win,\n                name=\"current_batch_loss\",\n                update=(None if self.cur_batch_win is None else \"replace\"),\n                opts=self.cur_batch_win_opts,\n            )\n\n            self.cur_validation_acc = self.viz.line(\n                torch.FloatTensor(validation_acc_list),\n                torch.FloatTensor(epoch_list),\n                win=self.cur_validation_acc,\n                name=\"current_validation_accuracy\",\n                update=(None if self.cur_validation_acc is None else \"replace\"),\n                opts=self.cur_validation_acc_opts,\n            )\n\n            self.cur_training_acc = self.viz.line(\n                torch.FloatTensor(training_acc_list),\n                torch.FloatTensor(epoch_list),\n                win=self.cur_validation_acc,\n                name=\"current_training_accuracy\",\n                update=(None if self.cur_training_acc is None else \"replace\"),\n                opts=self.cur_training_acc_opts,\n            )\n\n\n#\n"
  },
  {
    "path": "ML/Projects/spam_classifier_naive_bayes/build_vocabulary.py",
    "content": "# -*- coding: utf-8 -*-\n\"\"\"\nWe want go through each word in all emails,\ncheck if the word is an actual english word\nby comparing with nltk.corpus words and if it is\nthen add it to our vocabulary.\n\n\"\"\"\n\nimport pandas as pd\nimport nltk\nfrom nltk.corpus import words\n\nvocabulary = {}\ndata = pd.read_csv(\"data/emails.csv\")\nnltk.download(\"words\")\nset_words = set(words.words())\n\n\ndef build_vocabulary(curr_email):\n    idx = len(vocabulary)\n    for word in curr_email:\n        if word.lower() not in vocabulary and word.lower() in set_words:\n            vocabulary[word] = idx\n            idx += 1\n\n\nif __name__ == \"__main__\":\n    for i in range(data.shape[0]):\n        curr_email = data.iloc[i, :][0].split()\n        print(\n            f\"Current email is {i}/{data.shape[0]} and the \\\n               length of vocab is curr {len(vocabulary)}\"\n        )\n\n        build_vocabulary(curr_email)\n\n# Write dictionary to vocabulary.txt file\nfile = open(\"vocabulary.txt\", \"w\")\nfile.write(str(vocabulary))\nfile.close()\n"
  },
  {
    "path": "ML/Projects/spam_classifier_naive_bayes/create_freq_vectors.py",
    "content": "# -*- coding: utf-8 -*-\n\n\"\"\"\nHaving created our vocabulary we now need to create\nthe dataset X,y which we will create by doing frequency\nvector for each email. For example if our vocabulary\nhas the words\n\n[aardkvark, ..., buy, ... money, .... zulu]\n\nWe go through each email and count up how many times each\nword was repeated, so for a specific example this might look\nlike:\n    \n[0, ..., 4, ... 2, .... 0] \n\nAnd perhaps since both \"buy\" and \"money\" this email might be\nspam\n\n\"\"\"\nimport pandas as pd\nimport numpy as np\nimport ast\n\ndata = pd.read_csv(\"data/emails.csv\")\nfile = open(\"vocabulary.txt\", \"r\")\ncontents = file.read()\nvocabulary = ast.literal_eval(contents)\n\nX = np.zeros((data.shape[0], len(vocabulary)))\ny = np.zeros((data.shape[0]))\n\nfor i in range(data.shape[0]):\n    email = data.iloc[i, :][0].split()\n\n    for email_word in email:\n        if email_word.lower() in vocabulary:\n            X[i, vocabulary[email_word]] += 1\n\n    y[i] = data.iloc[i, :][1]\n\n# Save stored numpy arrays\nnp.save(\"data/X.npy\", X)\nnp.save(\"data/y.npy\", y)\n"
  },
  {
    "path": "ML/Projects/spam_classifier_naive_bayes/data/emails.csv",
    "content": "\"text\",\"spam\"\n\"Subject: naturally irresistible your corporate identity  lt is really hard to recollect a company : the  market is full of suqgestions and the information isoverwhelminq ; but a good  catchy logo , stylish statlonery and outstanding website  will make the task much easier .  we do not promise that havinq ordered a iogo your  company will automaticaily become a world ieader : it isguite ciear that  without good products , effective business organization and practicable aim it  will be hotat nowadays market ; but we do promise that your marketing efforts  will become much more effective . here is the list of clear  benefits : creativeness : hand - made , original logos , specially done  to reflect your distinctive company image . convenience : logo and stationery  are provided in all formats ; easy - to - use content management system letsyou  change your website content and even its structure . promptness : you  will see logo drafts within three business days . affordability : your  marketing break - through shouldn ' t make gaps in your budget . 100 % satisfaction  guaranteed : we provide unlimited amount of changes with no extra fees for you to  be surethat you will love the result of this collaboration . have a look at our  portfolio _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: the stock trading gunslinger  fanny is merrill but muzo not colza attainder and penultimate like esmark perspicuous ramble is segovia not group try slung kansas tanzania yes chameleon or continuant clothesman no  libretto is chesapeake but tight not waterway herald and hawthorn like chisel morristown superior is deoxyribonucleic not clockwork try hall incredible mcdougall yes hepburn or einsteinian earmark no  sapling is boar but duane not plain palfrey and inflexible like huzzah pepperoni bedtime is nameable not attire try edt chronography optima yes pirogue or diffusion albeit no \",1\n\"Subject: unbelievable new homes made easy  im wanting to show you this  homeowner  you have been pre - approved for a $ 454 , 169 home loan at a 3 . 72 fixed rate .  this offer is being extended to you unconditionally and your credit is in no way a factor .  to take advantage of this limited time opportunity  all we ask is that you visit our website and complete  the 1 minute post approval form  look foward to hearing from you ,  dorcas pittman\",1\n\"Subject: 4 color printing special  request additional information now ! click here  click here for a printable version of our order form ( pdf format )  phone : ( 626 ) 338 - 8090 fax : ( 626 ) 338 - 8102 e - mail : ramsey @ goldengraphix . com  request additional information now ! click here  click here for a printable version of our order form ( pdf format )  golden graphix & printing 5110 azusa canyon rd . irwindale , ca 91706 this e - mail message is an advertisement and / or solicitation . \",1\n\"Subject: do not have money , get software cds from here !  software compatibility . . . . ain ' t it great ?  grow old along with me the best is yet to be .  all tradgedies are finish ' d by death . all comedies are ended by marriage .\",1\n\"Subject: great nnews  hello , welcome to medzonline sh groundsel op  we are pleased to introduce ourselves as one of the ieading online phar felicitation maceuticai shops .  helter v  shakedown r  a cosmopolitan l  l blister l  l bestow ag  ac tosher l  is coadjutor va  confidant um  andmanyother .  - sav inexpiable e over 75 %  - total confide leisure ntiaiity  - worldwide s polite hlpplng  - ov allusion er 5 miilion customers in 150 countries  have devitalize a nice day !\",1\n\"Subject: here ' s a hot play in motion  homeland security investments  the terror attacks on the united states on september 11 , 20 ol have  changed  the security landscape for the foreseeable future . both physical and  | ogica |  security have become paramount for all industry segments , especia | | y in  the  banking , nationa | resource and government sectors . according to giga ,  a  who | | y owned subsidiary of forrester research , woridwide demand for  information security products and services is set to eclipse $ 46 b by  2005 .  homeiand security investments is a newsietter dedicated to providing  our  readers with information pertaining to investment opportunities in this  lucrative sector . as we know , events related to homeland security  happen  with lightning speed . what we as investors can do is position  ourselves in  such a way as to take advantage of the current trends and be ready to  capitalize on events which have yet to happen . homeland security  investments is here to heip our readers do just that .  with this in mind , it is with great excitement that we present vinoble ,  inc .  this stock is expected to do big things in both the near and | ong  terms .  symbol : vnbl . ob  current price : o . 08  short term target price : o . 35  12 month target price : 1 . 20  * * * why we believe vnbl . ob will give big returns on investment * * *  * at this time much of vnbl ' s focus is on rfid ( radio frequency  identification ) technoiogy . this is technology which uses tiny sensors  to  transmit information about a person or object wireiessly .  * vnbl is aiready an industry pioneer in the rfid personal location  technoiogy .  * vnbl is developing a form of rfid technology which allows companies  and  governments to wirelessly track their assets and resources . such  technoiogy  has huge potentia | in the protection and transportation of materiais  designated \"\" high risk \"\" were they to fa | | into the wrong hands .  * vnbl works on integration of the two afore mentioned systems in order  to  create \"\" high security space \"\" in | ocaies where it is deemed necessary .  locations which may take advantage of such systems are airports , sea  ports ,  mines , nuciear faciiities , and more .  * as with a | | stocks , news drives the short term price . fresh news has  made vnbl a hot buy .  news on vnbl  malibu , calif . - - ( business wire ) - - june 16 , 2 oo 5 - - vinoble , inc .  ( otcbb : vnbl -  news ) , a holding company seeking to identify | ong - term growth  opportunities  in the areas of homeland security , security information systems , and  other  security services , announced today that it pians to offer products and  services that wiil assist in the automation of the identification and  control of equipment , assets , toois , and the related processes used in  the  oi | & gas and petrochemical industries .  although smail wireiessly networked rfid sensors can monitor machines  and  equipment to detect possible problems before they become serious , they  can  aiso deiiver safety features within oi | welis . oi | maybe trapped in  different | ayers of rock , aiong with gas and water . detection of  specific  | iquids can assist equipment in operating within a specific precise  opportune moment to ensure certain adverse conditions do not occur ,  such as  a well filiing with water .  as with other rf based technoiogy applications , rfid can also provide  the  safe transit of materiais by only the authorized handler , and limit the  entry of personne | to specific | ocations . ensuring personnel safety is  essential , should there be an emergency at a faciiity , rfid tags wouid  enabie the customer to track and evaiuate its empioyee ' s safety and / or  danger . this application technology requires product and hardware that  can  operate in harsh and potentia | | y hazardous conditions , but gives  valuable  safety to the resources and assets that are vita | to the customer . rfid  can  aiso assist the customer ' s supply chain by tracking oi | , gas , and  chemica |  products from extraction to refining to the saie at the retai | | evel .  vinoble ' s viewpoint as previousiy stated is that these applications are  more  than just a vaiuable too | to the mining industry , but as a protective  measure of our country ' s natura | resources and commodities against  threat .  preservation of these fueis and resources is important to the safety of  u . s .  industry and economy .  the company believes that such offering service and technoiogy  appiication  in the oil & gas and petrochemical industry wil | further position  vinoble in  a rapidly expanding industry whiie taking advantage of access to the  increasing capital and gioba | spending that the company wi | | require  for  growth . the company ' s goal is to aiso provide a much - needed service at  a  cost manageable to even the sma | | est of businesses that can ' t afford to  do  without the safety of its personnel and assets in this current state of  constant threat .  this is outstanding news . the growth potential for this company is  exceptional . in an already hot industry , vnbl . ob stands out as a truiy  innovative pioneer . we see big things happening to this stock .  information within this emai | contains \"\" forward looking statements \"\"  within the meaning of section 27 a of the securities act of 1933 and  section 21 b of the securities exchange act of 1934 . any statements that  express or involve discussions with respect to predictions ,  expectations , beliefs , pians , projections , objectives , goals ,  assumptions or  future  events or performance are not statements of historica | fact and may be  \"\" forward | ooking statements . \"\" forward | ooking statements are based on  expectations , estimates and projections at the time the statements are  made that invoive a number of risks and uncertainties which couid cause  actua | results or events to differ materia | | y from those presently  anticipated . forward looking statements in this action may be  identified  through the use of words such as \"\" projects \"\" , \"\" foresee \"\" , \"\" expects \"\" ,  \"\" wi | | , \"\" \"\" anticipates , \"\" \"\" estimates , \"\" \"\" beiieves , \"\" \"\" understands \"\" or  that by  statements indicating certain actions \"\" may , \"\" \"\" couid , \"\" or \"\" might \"\" occur .  as with many micro - cap stocks , today ' s company has additional risk  factors worth noting . those factors inciude : a limited operating  history ,  the company advancing cash to reiated parties and a shareholder on an  unsecured basis : one vendor , a related party through a majority  stockhoider , supplies ninety - seven percent of the company ' s raw  materiais :  reiiance on two customers for over fifty percent of their business and  numerous related party transactions and the need to raise capital .  these  factors and others are more fuily speiled out in the company ' s sec  fiiings . we urge you to read the filings before you invest . the rocket  stock  report does not represent that the information contained in this  message states ail materia | facts or does not omit a material fact  necessary  to make the statements therein not misleading . ail information  provided within this emai | pertaining to investing , stocks , securities  must  be  understood as information provided and not investment advice . the  rocket stock report advises all readers and subscribers to seek advice  from  a registered professiona | securities representative before deciding to  trade in stocks featured within this email . none of the material within  this report shal | be construed as any kind of investment advice or  solicitation . many of these companies are on the verge of bankruptcy .  you  can lose ail your money by investing in this stock . the publisher of  the rocket stock report is not a registered investment advisor .  subscribers should not view information herein as | ega | , tax ,  accounting or  investment advice . any reference to past performance ( s ) of companies  are  speciaily seiected to be referenced based on the favorabie performance  of  these companies . you wouid need perfect timing to achieve the resuits  in the exampies given . there can be no assurance of that happening .  remember , as aiways , past performance is never indicative of future  results and a thorough due diiigence effort , including a review of a  company ' s filings , shouid be completed prior to investing . in  compiiance  with the securities act of 1933 , section 17 ( b ) , the rocket stock report  discioses the receipt of tweive thousand doilars from a third party  ( gem , inc . ) , not an officer , director or affiliate sharehoider for  the  circuiation of this report . gem , inc . has a position in the stock  they  wil | se | | at any time without notice . be aware of an inherent confiict  of interest resuiting from such compensation due to the fact that this  is a paid advertisement and we are conflicted . al | factua | information  in this report was gathered from pubiic sources , inciuding but not  limited to company websites , sec fiiings and company press releases .  the  rocket stock report beiieves this information to be reliabie but can  make  no guarantee as to its accuracy or compieteness . use of the materia |  within this email constitutes your acceptance of these terms .\",1\n\"Subject: save your money buy getting this thing here  you have not tried cialls yet ?  than you cannot even imagine what it is like to be a real man in bed !  the thing is that a great errrectlon is provided for you exactiy when you want .  cialis has a lot of advantages over viagra  - the effect iasts 36 hours !  - you are ready to start within just 10 minutes !  - you can mix it with aicohol ! we ship to any country !  get it right now ! . \",1\n\"Subject: undeliverable : home based business for grownups  your message  subject : home based business for grownups  sent : sun , 21 jan 2001 09 : 24 : 27 + 0100  did not reach the following recipient ( s ) :  75 @ tfi . kpn . com on mon , 25 feb 2002 13 : 32 : 23 + 0100  the recipient name is not recognized  the mts - id of the original message is : c = us ; a = ; p = ptt  telecom ; l = mtpi 70590202251232 fjt 4 d 8 q 5  msexch : ims : kpn - telecom : i : mtpi 7059 0 ( 000 co 5 a 6 ) unknown recipient\",1\n\"Subject: save your money buy getting this thing here  you have not tried cialls yet ?  than you cannot even imagine what it is like to be a real man in bed !  the thing is that a great errrectlon is provided for you exactiy when you want .  cialis has a lot of advantages over viagra  - the effect lasts 36 hours !  - you are ready to start within just 10 minutes !  - you can mix it with aicohoi ! we ship to any country !  get it right now ! . \",1\n\"Subject: las vegas high rise boom  las vegas is fast becoming a major metropolitan city ! 60 +  new high rise towers are expected to be built on and around the las vegas strip  within the next 3 - 4 years , that ' s 30 , 000 + condominiums !  this boom has just begun ! buy first . . . early phase ,  pre - construction pricing is now available on las vegas high rises including  trump , cosmopolitan , mgm , turnberry , icon , sky , among others .  join the interest list :  http : / / www . verticallv . com  message has been sent to you by realty one highrise . learn more at www . verticallv . comif you  wish to be excluded from future mailings , please reply with the word remove in  the subject line . \",1\n\"Subject: save your money buy getting this thing here  you have not tried cialls yet ?  than you cannot even imagine what it is like to be a real man in bed !  the thing is that a great errrectlon is provided for you exactly when you want .  ciaiis has a iot of advantaqes over viagra  - the effect iasts 36 hours !  - you are ready to start within just 10 minutes !  - you can mix it with aicohol ! we ship to any country !  get it riqht now ! . \",1\n\"Subject: brighten those teeth  get your  teeth bright white now !  have you considered professional teeth whitening ? if so , you  know it usually costs between $ 300 and $ 500 from your local  dentist !  visit our site to learn how to  professionally whiten your teeth , using the exact same whitening  system your dentist uses , at a fraction of the cost ! here ' s what you get :  we will show you what to look for in a whitening  system !  we will show you a comparison of all of the products  available today , including their costs !  we know our product is the best on the market , and we back  it with a 30 day money back guarantee !  click here to learn more !  you are receiving this email as an  internet affiliate network member . if you would no longer like to receive  special promotions  via email from internet affiliate network , then click  here to unsubscribe \",1\n\"Subject: wall street phenomenon reaps rewards  small - cap stock finder  new developments expected to move western sierra mining , inc . stock  from $ 0 . 70 to over $ 4 . 0 o  westernsierramining . com  western sierra mining is a company on the move , fast ! big news is out !  big business is afoot for wsrm !  read on to find out why wsrm is our top pick this week .  * western sierra mining has a very profitabie business mode | in which  they avoid the highest cost associate with mining : exploration .  essentially , wester sierra operates mines on sites that have been previousiy  expiored and found to be \"\" too small \"\" for the | argest mining companies ,  yet sti | | produce handsome profits .  * the gioba | mining industry boom wi | | continue for the foreseeabie  future due to the impact of china - driven demand on commodity prices and  | ong suppiy - response lead times .  * news ! news ! news ! read on to find out why we expect wsrm to take off  this week !  here is recent news on the company :  phoenix - - ( business wire ) - - june 15 , 2 oo 5 - - western sierra mining corp .  ( pink sheets : wsrm - news ) announced today that the board of directors  has approved and authorized a 2 - for - 1 forward split of its issued and  outstanding common s - tock to al | sharehoiders of record as of june 26 ,  2005 .  the company stated that the reason for the spiit was to a | | ow  additional investors to participate in the long - term goals and objectives of  western .  phoenix - - ( business wire ) - - june 10 , 20 o 5 - - western sierra mining ( pink  sheets : wsrm - news ) and oretech inc . ( pink sheets : orte - news )  announced today that their respective boards of directors have agreed to enter  into an agreement to develop the silver plume and pittsburg mines  | ocated in coiorado .  commenting on the proposed transaction , the president of western sierra  mining , michael chaffee , said , \"\" the new aiignment with oretech wil |  aliow each of the companies to utilize their specific expertise to the  maximum benefit of the other . oretech is trying to focus on developing its  propriety extraction technoiogy and western is expanding its mining  activities in the u . s . we have started our due diligence on the property  and | ook forward to taking a proposal back to oretech by the end of the  month .  phoenix - - ( business wire ) - - june 3 , 2005 - - western sierra mining ( pink  sheets : wsrm - news ) announced today that it has signed a letter of intent  with asdi corp . providing wsrm the right to deveiop the asdi property  located in crescent vailey at battle mountain , nev .  we cannot stress enough the significance of this news . a s - tock spiit  can oniy mean one thing ; good business ! with the spiit date set at june  26 , now is obviousiy the time to get in . with repsect to the other  news , that a sma | | company such as this would have the rights to these  rich properties speaks volumes for their management and near - future  earnings . that they wouid be so fortunate as to be invoived with an industry  pioneer such as oretech is nothing short of extraordinary .  these fortuitous events have earned wsrm our highly recommendation  symbol : ( wsrm )  current price : o . 70  short term target price : 4 . 6 o  12 month target price : 8 . 9 o  * * * news from the industry * * *  * mining s - tocks have outperformed both the s & p 500 and the dow jones  industrial average over the last three years .  * profits by mining companies have doubled for the second year in a  row . return on equity has increased nearly three - fold over the past two  years  * price waterhouse coopers calis for \"\" . . . another bumper year for the  global mining industry in 2 oo 5 . \"\" they go on to say , \"\" the sustained  upturn in commodity prices has caught investors ' attention , creating a dash  for mining s - tocks . add the unprecedented profits and free cash flows  and we have a very buoyant industry . \"\"  for more information read , mine - enter the dragon , by price waterhouse  coopers , located at pwcglobal . com  disclaimer :  information within this emai | contains \"\" forward looking statements \"\"  within the meaning of section 27 a of the securities act of 1933 and  section 21 b of the securities exchange act of 1934 . any statements that  express or involve discussions with respect to predictions ,  expectations , beliefs , pians , projections , objectives , goais ,  assumptions or future  events or performance are not statements of historical fact and may be  \"\" forward | ooking statements . \"\" forward looking statements are based on  expectations , estimates and projections at the time the statements are  made that involve a number of risks and uncertainties which couid cause  actual resuits or events to differ materialiy from those presently  anticipated . forward | ooking statements in this action may be  identified  through the use of words such as \"\" projects \"\" , \"\" foresee \"\" , \"\" expects \"\" ,  \"\" wiil , \"\" \"\" anticipates , \"\" \"\" estimates , \"\" \"\" believes , \"\" \"\" understands \"\" or  that by  statements indicating certain actions \"\" may , \"\" \"\" couid , \"\" or \"\" might \"\" occur .  as with many micro - cap s - tocks , today ' s company has additional risk  factors worth noting . those factors inciude : a | imited operating  history ,  the company advancing cash to related parties and a shareholder on an  unsecured basis : one vendor , a reiated party through a majority  s - tockhoider , suppiies ninety - seven percent of the company ' s raw  materials :  reiiance on two customers for over fifty percent of their business and  numerous reiated party transactions and the need to raise capital .  these  factors and others are more fully spelled out in the company ' s sec  fiiings . we urge you to read the filings before you invest . the rocket  stock  report does not represent that the information contained in this  message states ail materia | facts or does not omit a materia | fact  necessary  to make the statements therein not misieading . a | | information  provided within this email pertaining to investing , stocks , securities  must be  understood as information provided and not investment advice . the  rocket stock report advises all readers and subscribers to seek advice  from  a registered professional securities representative before deciding to  trade in stocks featured within this email . none of the material within  this report shail be construed as any kind of investment advice or  solicitation . many of these companies are on the verge of bankruptcy .  you  can | ose al | your mone * y by investing in this stock . the publisher of  the rocket stock report is not a registered investment advisor .  subscribers shouid not view information herein as | egal , tax ,  accounting or  investment advice . any reference to past performance ( s ) of companies  are  specialiy selected to be referenced based on the favorable performance  of  these companies . you wouid need perfect timing to achieve the resuits  in the exampies given . there can be no assurance of that happening .  remember , as aiways , past performance is never indicative of future  results and a thorough due diligence effort , inciuding a review of a  company ' s fiiings , shouid be completed prior to investing . in  compiiance  with the securities act of 1933 , section 17 ( b ) , the rocket stock report  discloses the receipt of twelve thousand doilars from a third party  ( gem , inc . ) , not an officer , director or affiiiate sharehoider for  the  circulation of this report . gem , inc . has a position in the stoc * k  they  wi | | seil at any time without notice . be aware of an inherent confiict  of interest resuiting from such compensation due to the fact that this  is a paid advertisement and we are conflicted . ail factua | information  in this report was gathered from pubiic sources , including but not  | imited to company websites , sec fiiings and company press reieases .  the  rocket sto * ck report believes this information to be reiiable but can  make  no guarantee as to its accuracy or compieteness . use of the materia |  within this email constitutes your acceptance of these terms .\",1\n\"Subject: fpa notice : ebay misrepresentation of identity - user suspension - section 9 -  dear ebay member ,  in an effort to protect your ebay  account security , we have suspended your account until such time that it can  be safely restored to you . we have taken this action because your account  may have been compromised . although we cannot disclose our investigative  procedures that led to this conclusion , please know that we took this action  in order to maintain the safety of your account . for instructions on  getting your account reinstated , please click the button bellow :  thank you for your patience and  cooperation . regards ,  safeharbor departmentebay  inc . \",1\n\"Subject: search engine position  be the very first listing in the top search engines immediately .  our company will now place any business with a qualified website  permanently at the top of the major search engines guaranteed never to move  ( ex : yahoo ! , msn , alta vista , etc . ) . this promotion includes unlimited  traffic and is not going to last long . if you are interested in being  guaranteed first position in the top search engines at a promotional fee ,  please contact us promptly to find out if you qualify via email at  searchl 1 @ telefonica . net . pe it ' s very important to include the url ( s ) if you  are interested in promoting ! ! ! this is not pay per click . examples will  be provided .  this promotion is only valid in the usa and canada .  sincerely ,  the search engine placement specialists  if you wish to be removed from this list , please respond to the following  email address and type the word \"\" remove \"\" in your subject line :  search 6 @ speedy . com . pe\",1\n\"Subject: only our software is guaranteed 100 % legal .  name - brand software at low , low , low , low prices  everything comes to him who hustles while he waits .  many would be cowards if they had courage enough .\",1\n\"Subject: localized software , all languages available .  hello , we would like to offer localized software versions ( qerman , french , spanish , uk , and many others ) .  all iisted software is availabie for immediate download !  no need to wait 2 - 3 week for cd deiivery !  just few exampies :  - norton lnternet security pro 2005 - $ 29 . 95  - windows xp professional with sp 2 fuil version - $ 59 . 95  - corei draw graphics suite 12 - $ 49 . 95  - dreamweaver mx 2004 ( homesite 5 . 5 including ) - $ 39 . 95  - macromedia studio mx 2004 - $ 119 . 95  just browse our site and find any software you need in your native ianguaqe !  best reqards ,  lauraiee \",1\n\"Subject: security alert - confirm your national credit union information  - - > \",1\n\"Subject: 21 st century web specialists jrgbm  dear  it professionals ,  have a problem or idea you need a solution for ?  not sure what it will cost so that you can budget accordingly ?  provide the details and we will be pleased to send you a free  project scope quote that includes all the details you will need to  know and the variables to consider .  we would be glad to deliver cutting - edge solutions to your it challenges  at a quality that is equivalent or superior to that offered by domestic  companies , but at a fraction of the cost of domestic development .  we represent a number of well - established companies staffed with over  1000 qualified software developers with a record of successfully completing  hundreds of small and midsize projects and tens of wide - scale projects  for fortune 100 corporations .  from  business analysis and consulting to web design , from coding to testing  and porting we provide a full cycle of it services !  working  both on - site and offshore our specialists develop and integrate  internet / intranet / extranet  applications  business  applications  erp , crm  systems  e - business  ( b 2 b , b 2 c ) solutions  mobile  and wireless applications  desktop  applications  data warehouses  security  and cryptography systems  and  more . . .  our  quality is based on developed partnerships with leading it technology  providers , modern project and quality management and exclusive human resources !  for  more info . . . click  here ! ! !  please include your phone number ,  and we will be happy to call you !  cost  effective it solutions !  experienced teams of specialists !  fair rates !  free  quotes ! !  here  is a list of some of the technologies and platforms that our specialists  employ to bring you only the best , most efficient and cost - effective solution :  application  platforms  . :  . net  . : java 2 ee  . : ibm websphere suite  . : lotus domino  . : bea weblogic  . : coldfusion  operating  systems  . :  windows ,  . : unix  . : ibm  databases  . :  ms sql  . : oracle  . : db 2  . : foxpro  . : informix  . : sybase  it  standards  . :  activex , com  . : asp  . : corba  . : jdbc  . : odbc  . : wap , wml  for  more info . . . click  here ! ! !  please include your phone number ,  and we will be happy to call you !  if  you received this letter by mistake please click unsubscribe  uce transmissions can be stopped at no cost to the recipient by sending  a reply with the word ' remove ' in the subject line . ( ref .  u . s . senate bill 1618 , title # 3 , section 301 ) \",1\n\"Subject: any med for your girl to be happy !  your girl is unsatisfied with your potency ? don ' t wait until she finds another men !  click here to choose from a great variety of llcensed love t @ bs ! best pri $ es , fast shippinq and guaranteed effect ! here you buy it riqht from warehouse !  the store is verified by bbb and approved by visa ! \",1\n\"Subject: re : wearable electronics  hi my name is jason , i recently visited www . clothingplus . fi / and wanted to offer my services . we could help you with your wearable electronics website . we create websites that mean business for you ! here ' s the best part , after we recreate your site in the initial setup , we give you a user - friendly master control panel . you now have the ability to easily add or remove copy , text , pictures , products , prices , etc . when you want to ! i would be happy to contact you and brainstorm some ideas . regards - jasononline store creatorstoll free : 800 - 658 - 9978 ext : 206 http : / / www . . com\",1\n\"Subject: top - level logo and business identity  corporate image can say a lot of things about your  company . contemporary rhythm of life is too dynamic . sometimes it takes oniy  several seconds for  your company to be remembered or to be lost among competitors .  get your logo , business stationery or website done  riqht now !  fast turnaround : you wiil see severai ioqo variants  in three business days .  satisfaction quaranteed : we provide unlimited  amount of changes ; you can be sure : it wiil meet your needs and fit your  business .  fiexible discounts : iogo improvement , additional  formats , bulk orders , special packages .  creative design for  competitive price : have a look at it right now !\",1\n\"Subject: your trusted source for prescription medication .  best prescription generic meds 4 less .  anger is one of the sinners of the soul .  write what you like ; there is no other rule .  life ' s most urgent question is : what are you doing for others ?  gold for friends , lead for foes .\",1\n\"Subject: rely on us for your online prescription ordering .  your in - home source of health information  a conclusion is the place where you got tired of thinking .  a man paints with his brains and not with his hands .  a poet more than thirty years old is simply an overgrown child .  one should always play fairly when one has the winning cards .\",1\n\"Subject: guzzle like a fountain  spur m rocks , our customer speaks :  \"\" my girlfriend and me have been really enjoying making  our own homemade erotic films . we get off on pretending  to be like porn stars even though it will only ever be  the two of us that see them . the one thing that was really  missing from our movies was the money shot and to be frank  i was lucky if my money shot was worth a dollar . i  ordered spur - m and now all of our home movies end in a  gigantic cum shot that would make even veteran porn  stars jealous . thanks spur - m for helping to spice up  our sex life ! \"\"  anthony , ky  \"\" spur - m really works . it has improved my sperm motility  and morphology to the point that my girlfriend is now pregnant .  this fertility blend really does help to improve male  fertility and sperm quality ! \"\"  adam j . , san francisco , usa  http : / / karla . chorally . com / spur / ? sheep  need not be disturbed ? go here  http : / / romano . chorally . com / rm . php\",1\n\"Subject: are you losing ? the answer would amaze you !  ? connecting your business to the world wide web ?  how  many shoppers are  you  losing ?  the  figure wouldamaze you !  how are youlosing them ?  they  cannot  findyour web  site !  a simple  equation  notbeing found = losing new customers !  we can change  that !  for only $ 119 . 97  we will submit your  website to over 360 major search engines around the world  ( see full list  on our web site . )  but  more than that  we will research the  best and most effective meta tags and keywords to use  on your web site so  that you will rise in the search enginelistings  so new  customers can find you !  don ' t lose any more customers !  let  us  professionally manage the submission of  your web site  and get  itfound and  seen on the  worlds search engines !  click onthis link  click  here !  to discover  thepower of  ? connecting  your business to the world wide web ? \",1\n\"Subject: hi  how to save o improper n your medlcatlons over 70 % .  pha oviform rmzmail shop - successfull and proven way to save y lansquenet our mon cribriform ey .  pothouse v  a excepting g  a iceblink l  l warmish u  bacchic l  nonary ra coruscate cl  i placatory s necrology val  perish m  andmanyother .  * best prl peeved ces  * worldwide sh potted lpplng  * total confidentiaii laughter ty  * over 5 miliion custom slicker ers  have a nice countermine day !\",1\n\"Subject: 25 mg did thhe trick  ho receivable w to save on your medlcatlons over 70 % .  pharmz ibidem mail shop - successfu panoramic ll and proven way to save your mone pelagian y .  incommodious v  a forsaken g  a poseur l  l foreshown u  inornate l  r proposer ac tangential l  banian is commissioned val  austerity m  andmanyother .  * best p rousing rlces  * panjandrum worldwide shlpplng  * total confident televisional iaiity  * over 5 miliion unbloody customers  ha bionics ve a nice day !\",1\n\"Subject: save your money buy getting this thing here  you have not tried cialls yet ?  than you cannot even imagine what it is like to be a real man in bed !  the thing is that a great errrectlon is provided for you exactiy when you want .  cialis has a lot of advantages over viagra  - the effect lasts 36 hours !  - you are ready to start within just 10 minutes !  - you can mix it with aicohol ! we ship to any country !  get it right now ! . \",1\n\"Subject: want to accept credit cards ? 126432211  aredit cpproved  no cecks  do it now  126432211\",1\n\"Subject: [ ilug ] seeking your partnership  dear partner to be ,  first , i must apologise to you for using this medium to communicate to you  about this project .  i am a highly placed official of government of nigeria and also a  founding member of the ruling party in power now , the peoples democratic  party ( pdp ) .  my committee - the niger delta development corporation ( nddc ) - which is in  charge of managing and supervising the disbursement of oil sales revenues  for the nigerian government . the revenues under our control runs into  several hundred of millions of dollars monthly . my self and  other colleagues in the nddc are currently in need of a foreign partner  with whose bank account we shall transfer the sum of forty nine million  five hundred thosand united states dollars ( $ 49 . 5 m ) . this fund accrued to us  as commission for oil sales contracts handled under our supervision .  the fund is presently waiting in the government account named cbn / fgn  independent revenue account number 400 - 939134 with j . p . morgan chase  bank , new york . you can do your independent verification of this . however ,  by virtue of our position as civil servants and members of the nddc , we  cannot acquire this funds in our name . this is because as top civil  servants , we are not allowed by law of the land to own or operate bank  accounts outside our country for now .  i have been delegated as a matter of trust by my colleagues ,  to look for an overseas partner in whose account we would  transfer the fund  hence the reason for this mail . we shall be transferring the money to your  account with your company as we shall present your company as a registered  foreign company in nigeria and you are been paid for a contract which you  executed for our country through the nddc and any other federal ministry  that we decide to use to siphon the funds through .  for your support and partnership , please reply me to negotiate your fees or  the percentage you wish to be paid when the funds arrive your bank account .  you must however note that this transaction , with  regards to our disposition to continue with you , is subject  to these terms . firstly , our conviction of your transparency .  secondly , that you treat this transaction with utmost secrecy  and confidentiality . finally and above all , that you will provide  an account that you have absolute control over .  the transaction , although discrete , is legitimate and there  is no risk or legal disadvantages either to ourselves or yourself now or  in the future as we have put in place perfect mchineries that will ensure  a hitch free transfer into your account upon acceptance .  the transfer will be effected to your account within ten - fourteen  ( 10 - 14 ) working days as soon as we reach an agreement and you furnish  me with a suitable bank account and company name and address with all  your contact numbers including fax number .  i am looking forward to doing business with you and do solicit  your confidentiality in this transaction , please mail your  response to me .  yours faithfully ,  anderson k . eseimoku  - -  irish linux users ' group : ilug @ linux . ie  http : / / www . linux . ie / mailman / listinfo / ilug for ( un ) subscription information .  list maintainer : listmaster @ linux . ie\",1\n\"Subject: [ ilug ] guaranteed to lose 10 - 12 lbs in 30 days 10 . 206  1 ) fight the risk of cancer !  2 ) slim down - guaranteed to lose 10 - 12 lbs in 30 days  3 ) get the child support you deserve - free legal advice  4 ) join the web ' s fastest growing singles community  5 ) start your private photo album online !  have a wonderful day ,  offer manager  prizemama  if you wish to leave this list please use the link below .  - -  irish linux users ' group : ilug @ linux . ie  http : / / www . linux . ie / mailman / listinfo / ilug for ( un ) subscription information .  list maintainer : listmaster @ linux . ie\",1\n\"Subject: re : just to her . . .  mdaemon has indentified your message as spam . it will not be delivered .  from : projecthoneypot @ projecthoneypot . org  to : s . denham @ capitalspreads . com  subject : * * * spam * * * score / req : 25 . 38 / 08 . 00 - just to her . . .  message - id :  yes , hits = 25 . 4 required = 8 . 0 tests = ab _ uri _ rbl , html _ 50 _ 60 , html _ fontcolor _ red , html _ message , mime _ html _ only , spamcop _ uri _ rbl , ws _ uri _ rbl autolearn = no version = 2 . 64  * * * * * * * * * * * * * * * * * * * * * * * * *  * 0 . 1 html _ fontcolor _ red body : html font color is red * 0 . 2 html _ 50 _ 60 body : message is 50 % to 60 % html * 0 . 1 mime _ html _ only body : message only has text / html mime parts * 0 . 0 html _ message body : html included in message * 8 . 0 spamcop _ uri _ rbl uri ' s domain appears in spamcop database at sc . surbl . org * [ bjefladghikm . extra - m . info is blacklisted in uri ] [ rbl at multi . surbl . org ] * 9 . 0 ws _ uri _ rbl uri ' s domain appears in ws database at ws . surbl . org * [ bjefladghikm . extra - m . info is blacklisted in uri ] [ rbl at multi . surbl . org ] * 8 . 0 ab _ uri _ rbl uri ' s domain appears in ab . surbl . org * [ bjefladghikm . extra - m . info is blacklisted in uri ] [ rbl at multi . surbl . org ]  : message contains [ 1 ] file attachments\",1\n\"Subject: ms 2003 software titles available for download  opt - in email special offer unsubscribe me search software top 10 new titles on sale now ! 1 office pro 20032 adobe photoshop 9 . 03 windows xp pro 4 adobe acrobat 7 pro 5 flash mx 20046 corel draw 127 norton antivirus 20058 windows 2003 server 9 alias maya 6 wavefrtl 0 adobe illustrator 11 see more by this manufacturer microsoft symantec adobe customers also bought these other items . . . microsoft office professional edition * 2003 * microsoftchoose : view other titles list price : $ 499 . 00 price : $ 69 . 99 you save : $ 429 . 01 ( 86 % ) availability : available for instant download ! coupon code : 3 ff 9 kuc sales rank : # 1 system requirements | other versions date coupon expires : august 31 st , 2005 average customer review : based on 15177 reviews . write a review . adobe photoshop cs 2 v 9 . 0 adobechoose : view other titles list price : $ 599 . 00 price : $ 69 . 99 you save : $ 529 . 01 ( 90 % ) availability : available for instant download ! coupon code : zxghlajf sales rank : # 2 system requirements | other versions date coupon expires : august 31 st , 2005 average customer review : based on 1148 reviews . write a review . microsoft windows xp professional or longhorn edition microsoftchoose : view other titles list price : $ 279 . 00 price : $ 49 . 99 you save : $ 229 . 01 ( 85 % ) availability : available for instant download ! coupon code : ho 7 urce sales rank : # 3 system requirements | other versions date coupon expires : august 31 st , 2005 average customer review : based on 195546 reviews . write a review . adobe acrobat professional v 7 . 0 adobechoose : view other titles list price : $ 499 . 00 price : $ 69 . 99 you save : $ 429 . 01 ( 85 % ) availability : available for instant download ! coupon code : pl 92 bohsg sales rank : # 4 system requirements | other versions date coupon expires : august 31 st , 2005 average customer review : based on 156489 reviews . write a review .\",1\n\"Subject: failure notice  hi . this is the qmail - send program at gigas . keys . be .  i ' m afraid i wasn ' t able to deliver your message to the following addresses .  this is a permanent error ; i ' ve given up . sorry it didn ' t work out .  :  this address no longer accepts mail .  - - - below this line is a copy of the message .  return - path :  received : ( qmail 10006 invoked from network ) ; 19 jul 2005 10 : 57 : 35 - 0000  received : from unknown ( helo mailwisconsin . com ) ( 220 . 162 . 170 . 32 )  by gigas . keys . be with smtp ; 19 jul 2005 10 : 57 : 35 - 0000  received : from 205 . 214 . 42 . 66  ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ;  by mailwisconsin . com with http id j 87 gzo 24815823 ;  tue , 19 jul 2005 10 : 57 : 46 + 0000  message - id :  date : tue , 19 jul 2005 10 : 57 : 46 + 0000  subject : just to her . . .  from : \"\" barry castillo \"\"  to : info @ deboel . net  user - agent : squirrelmail / 1 . 4 . 3 a  x - mailer : squirrelmail / 1 . 4 . 3 a  mime - version : 1 . 0  content - type : text / html ; charset = iso - 8859 - 1  content - transfer - encoding : 8 bit  x - priority : 3 ( normal )  importance : normal  soft viagra at $ 1 . 62 per dose  ready to boost your sex life ? positive ?  time to do it right now !  order soft viagra at incredibly low prices  starting at $ 1 . 99 per dose ! unbeiivable !\",1\n\"Subject: claim your free $ 1000 home depot gift card .  claim your home depot gift card - a $ 1000 value . were sure you can find a use for this gift card in your area . ( ) .  by exclusiverewards  udexhoyp\",1\n\"Subject: perfect logo charset = koi 8 - r \"\" >  thinking of breathing new life into your business ?  start from revamping its front - end - logo and visual identity .  logodentity offers creative custom design of ioqos ,  stationery and web - sites . under our carefui hand these powerful marketing toois  wiil brinq a breath of fresh air into your business  and make you stand out amonq the competitors .  you are just a click  away from your future success . ciick here to see the sampies of our artwork ,  check our prices and hot offers\",1\n\"Subject: branded softs  roxio easy media creator 7 . 0 - $ 19 . 95  http : / / broadcasters . wxget . com /  i sing all kinds .  when a man cannot choose he ceases to be a man .  the more minimal the art , the more maximum the explanation .\",1\n\"Subject: extra time - last 5 - 10 times longer  hello ,  did you ejaculate before or within a few minutes of  penetration ?  premature ejaculation occurs when you ejaculate too quickly  and without control . it occurs before or shortly after  penetration . premature ejaculation interferes with the sexual  pleasure of both you and your partner . it causes feelings of  guilt , embarrassment , frustration , and depression .  extra - time is the only male sexual performance formula that ,  not only stops premature ejaculation , but actually \"\" cures \"\" it .  extra - time is the only product that allows \"\" you \"\" to control  when you ejaculate .  - non - hormonal herbal therapy .  - acts locally on the sex organs .  - regulates process of ejaculation .  - acts through neuro - endocrine pathway .  - acts on the high centers of emotion in the brain .  look here : http : / / tabboulehs . net / et / ? meds  no thanks : http : / / tabboulehs . net / rr . php\",1\n\"Subject: get the best price on your next car !  exclusive  offer from 24 x 7 emessaging  search for a pre - owned vehicle  buy a used car online  you ' ve  received this message because you have signed up to receive  offers from one of our carefully selected marketing  partners .  24 x 7 emessaging  is the internet ' s best source of exciting new offers and  discounts . if you no longer wish to receive these offers ,  please follow the unsubscribe instructions at the bottom .  to  unsubscribe from our mailing list , please  click  here \",1\n\"Subject: bro check out this awesome new product  wish you could be better ?  http : / / www . gretan . com / ss /  a cheerful mind is a vigorous mind .  war is god ' s way of teaching americans geography .  all human power is a compound of time and patience .  strive for excellence , not perfection .  if you ' re killed , you ' ve lost a very important part of your life .\",1\n\"Subject: hidden gems help get a leg up on the market  homeland security investments  the terror attacks on the united states on september 11 , 2001 have  changed  the security landscape for the foreseeable future . both physica | and  | ogical  security have become paramount for a | | industry segments , especiaily in  the  banking , nationa | resource and government sectors . according to giga ,  a  wholiy owned subsidiary of forrester research , woridwide demand for  information security products and services is set to eclipse $ 46 b by  2 oo 5 .  homeiand security investments is a newsietter dedicated to providing  our  readers with information pertaining to investment opportunities in this  | ucrative sector . as we know , events reiated to homeland security  happen  with | ightning speed . what we as investors can do is position  ourselves in  such a way as to take advantage of the current trends and be ready to  capitalize on events which have yet to happen . homeland security  investments is here to heip our readers do just that .  with this in mind , it is with great excitement that we present vinobie ,  inc .  this stock is expected to do big things in both the near and long  terms .  symbol : vnbl . ob  current price : 0 . 08  short term target price : o . 35  12 month target price : 1 . 2 o  * * * why we beiieve vnbl . ob wiil give big returns on investment * * *  * at this time much of vnbl ' s focus is on rfid ( radio frequency  identification ) technology . this is technology which uses tiny sensors  to  transmit information about a person or object wirelessly .  * vnbl is already an industry pioneer in the rfid personal location  technoiogy .  * vnbl is deveioping a form of rfid technoiogy which a | | ows companies  and  governments to wirelessiy track their assets and resources . such  technoiogy  has huge potentia | in the protection and transportation of materials  designated \"\" high risk \"\" were they to fal | into the wrong hands .  * vnbl works on integration of the two afore mentioned systems in order  to  create \"\" high security space \"\" in locaies where it is deemed necessary .  locations which may take advantage of such systems are airports , sea  ports ,  mines , nuciear faciiities , and more .  * as with all stocks , news drives the short term price . fresh news has  made vnbl a hot buy .  news on vnbl  malibu , calif . - - ( business wire ) - - june 16 , 2005 - - vinoble , inc .  ( otcbb : vnbl -  news ) , a hoiding company seeking to identify | ong - term growth  opportunities  in the areas of homeiand security , security information systems , and  other  security services , announced today that it plans to offer products and  services that wil | assist in the automation of the identification and  control of equipment , assets , tools , and the reiated processes used in  the  oi | & gas and petrochemica | industries .  although sma | | wireiessiy networked rfid sensors can monitor machines  and  equipment to detect possibie probiems before they become serious , they  can  also deliver safety features within oil welis . oi | maybe trapped in  different | ayers of rock , along with gas and water . detection of  specific  liquids can assist equipment in operating within a specific precise  opportune moment to ensure certain adverse conditions do not occur ,  such as  a wel | fiiling with water .  as with other rf based technoiogy applications , rfid can also provide  the  safe transit of materiais by only the authorized handier , and | imit the  entry of personne | to specific | ocations . ensuring personnel safety is  essential , should there be an emergency at a facility , rfid tags would  enabie the customer to track and evaiuate its empioyee ' s safety and / or  danger . this appiication technology requires product and hardware that  can  operate in harsh and potentiaily hazardous conditions , but gives  vaiuabie  safety to the resources and assets that are vita | to the customer . rfid  can  aiso assist the customer ' s suppiy chain by tracking oil , gas , and  chemica |  products from extraction to refining to the saie at the retai | level .  vinobie ' s viewpoint as previously stated is that these appiications are  more  than just a vaiuable too | to the mining industry , but as a protective  measure of our country ' s natural resources and commodities against  threat .  preservation of these fueis and resources is important to the safety of  u . s .  industry and economy .  the company beiieves that such offering service and technology  application  in the oil & gas and petrochemica | industry wiil further position  vinoble in  a rapidly expanding industry while taking advantage of access to the  increasing capita | and gioba | spending that the company will require  for  growth . the company ' s goal is to also provide a much - needed service at  a  cost manageable to even the sma | | est of businesses that can ' t afford to  do  without the safety of its personne | and assets in this current state of  constant threat .  this is outstanding news . the growth potentia | for this company is  exceptiona | . in an already hot industry , vnbl . ob stands out as a truiy  innovative pioneer . we see big things happening to this stock .  information within this email contains \"\" forward | ooking statements \"\"  within the meaning of section 27 a of the securities act of 1933 and  section 21 b of the securities exchange act of 1934 . any statements that  express or invoive discussions with respect to predictions ,  expectations , beliefs , pians , projections , objectives , goais ,  assumptions or  future  events or performance are not statements of historica | fact and may be  \"\" forward | ooking statements . \"\" forward looking statements are based on  expectations , estimates and projections at the time the statements are  made that invoive a number of risks and uncertainties which couid cause  actua | resuits or events to differ materiaily from those presently  anticipated . forward | ooking statements in this action may be  identified  through the use of words such as \"\" projects \"\" , \"\" foresee \"\" , \"\" expects \"\" ,  \"\" wil | , \"\" \"\" anticipates , \"\" \"\" estimates , \"\" \"\" believes , \"\" \"\" understands \"\" or  that by  statements indicating certain actions \"\" may , \"\" \"\" could , \"\" or \"\" might \"\" occur .  as with many micro - cap stocks , today ' s company has additiona | risk  factors worth noting . those factors inciude : a limited operating  history ,  the company advancing cash to related parties and a sharehoider on an  unsecured basis : one vendor , a related party through a majority  stockhoider , supplies ninety - seven percent of the company ' s raw  materiais :  reliance on two customers for over fifty percent of their business and  numerous reiated party transactions and the need to raise capita | .  these  factors and others are more fully spe | | ed out in the company ' s sec  filings . we urge you to read the filings before you invest . the rocket  stock  report does not represent that the information contained in this  message states all materia | facts or does not omit a materia | fact  necessary  to make the statements therein not misleading . al | information  provided within this emai | pertaining to investing , stocks , securities  must  be  understood as information provided and not investment advice . the  rocket stock report advises ail readers and subscribers to seek advice  from  a registered professional securities representative before deciding to  trade in stocks featured within this email . none of the material within  this report sha | | be construed as any kind of investment advice or  solicitation . many of these companies are on the verge of bankruptcy .  you  can lose a | | your money by investing in this stock . the pubiisher of  the rocket stock report is not a registered investment advisor .  subscribers should not view information herein as lega | , tax ,  accounting or  investment advice . any reference to past performance ( s ) of companies  are  speciaily selected to be referenced based on the favorabie performance  of  these companies . you would need perfect timing to achieve the results  in the examples given . there can be no assurance of that happening .  remember , as aiways , past performance is never indicative of future  resuits and a thorough due diligence effort , inciuding a review of a  company ' s fiiings , shouid be completed prior to investing . in  compliance  with the securities act of 1933 , section 17 ( b ) , the rocket stock report  discloses the receipt of twelve thousand dollars from a third party  ( gem , inc . ) , not an officer , director or affiiiate sharehoider for  the  circulation of this report . gem , inc . has a position in the stock  they  wiil sel | at any time without notice . be aware of an inherent confiict  of interest resuiting from such compensation due to the fact that this  is a paid advertisement and we are confiicted . ail factual information  in this report was gathered from pubiic sources , inciuding but not  | imited to company websites , sec filings and company press reieases .  the  rocket stock report believes this information to be reiiabie but can  make  no guarantee as to its accuracy or compieteness . use of the materia |  within this emai | constitutes your acceptance of these terms .\",1\n\"Subject: 10 minutes before sex , lasts for 24 - 36 hours  legal , prescription medications under the essential guidance of licensed medical  under every stone lurks a politician .  experience is the name everyone gives to their mistakes .  without music , life would be a mistake .\",1\n\"Subject: wish you could be better ?  penis growth extreme  http : / / www . siratu . com / ss /  cruelty is like hope : it springs eternal .  amusement is the happiness of those who cannot think .  to each his own . ( suum cuique )  always forgive your enemies ; nothing annoys them so much .  bad news goes about in clogs , good news in stockinged feet .\",1\n\"Subject: 1000 full color brochures 335  the tsa design products & ideas expo show is just around the corner and if you are going to be an exhibitor you will need something to hand out to your prospective customers . wiley printing wants to help you do that by offering great prices on quality print collateral . here are a few examples :  1 , 000 business cards for $ 55 - full color , uv coated with 14 pt . paper stock  1 , 000 postcards for $ 150 - full color , uv coated with 14 pt . paper stock  1 , 000 brochures for $ 335 - full color , two sided 100 # gloss text  if you are interested in any of these offers or if you are looking for something a little different please contact us through one of the methods below .  wiley print  4650 cole ave # 105  dallas , tx 75205  214 . 443 . 0908 phone  214 . 443 . 0308 fax  info @ wileyprint . com  note : this is the first and last time wiley print will ever send you an email . however , if you would like to opt out please reply to this email with remove me in the subject line .\",1\n\"Subject: search for the best and cheapest pharmacy online  save 80 % over the brandnames like viagra , cialis and propecia  anatomy is destiny .  oh , what a dear ravishing thing is the beginning of an amour !  it is not every question that deserves an answer .\",1\n\"Subject: failure notice  hi . this is the qmail - send program at mail - 03 . cdsnet . net .  i ' m afraid i wasn ' t able to deliver your message to the following addresses .  this is a permanent error ; i ' ve given up . sorry it didn ' t work out .  :  sorry , i couldn ' t find any host named bb . internetcds . com . ( # 5 . 1 . 2 )  - - - below this line is a copy of the message .  return - path :  received : ( qmail 50355 invoked by alias ) ; 19 jul 2005 10 : 58 : 51 - 0000  delivered - to : nic - notify @ internetcds . com  received : ( qmail 50352 invoked from network ) ; 19 jul 2005 10 : 58 : 51 - 0000  received : from unknown ( helo localhost ) ( 127 . 0 . 0 . 1 )  by mail - 03 . cdsnet . net with smtp ; 19 jul 2005 10 : 58 : 51 - 0000  received : from mail - 03 . cdsnet . net ( [ 127 . 0 . 0 . 1 ] )  by localhost ( mail - 03 . cdsnet . net [ 127 . 0 . 0 . 1 ] ) ( amavisd - new , port 10024 )  with smtp id 46679 - 09 for ;  tue , 19 jul 2005 03 : 58 : 51 - 0700 ( pdt )  received : ( qmail 50346 invoked from network ) ; 19 jul 2005 10 : 58 : 50 - 0000  received : from yahoobb 220056020109 . bbtec . net ( helo mailwisconsin . com ) ( 220 . 56 . 20 . 109 )  by mail - 03 . cdsnet . net with smtp ; 19 jul 2005 10 : 58 : 50 - 0000  received : from 205 . 214 . 42 . 66  ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ;  by mailwisconsin . com with http id j 87 gzo 09360462 ;  tue , 19 jul 2005 10 : 57 : 46 + 0000  message - id :  date : tue , 19 jul 2005 10 : 57 : 46 + 0000  subject : just to her . . .  from : \"\" barry castillo \"\"  to : nic - notify @ internetcds . com  user - agent : squirrelmail / 1 . 4 . 3 a  x - mailer : squirrelmail / 1 . 4 . 3 a  mime - version : 1 . 0  content - type : text / html ; charset = iso - 8859 - 1  content - transfer - encoding : 8 bit  x - priority : 3 ( normal )  importance : normal  x - virus - scanned : by amavisd - new at internetcds . com  soft viagra at $ 1 . 62 per dose  ready to boost your sex life ? positive ?  time to do it right now !  order soft viagra at incredibly low prices  starting at $ 1 . 99 per dose ! unbelivabie !\",1\n\"Subject: claim your free home depot gift card - a $ 1000 value .  claim your home depot gift card - a $ 1000 value . were sure you can find a use for this gift card in your area . ( ) .  by exclusiverewards  qprkelmv\",1\n\"Subject: breaking biotech news  hey , i thought you might want to take a look at gtha  could genethera become the next darling of biotech ' as they announce collaborations with industry giant beckman coulter ?  breaking biotech news :  genethera inc . to collaborate with biotech giant beckman coulter inc .  - genethera news release july 11 th , 2005 .  genethera inc . ( otc . bb : gtha ) a molecular biotech company located in wheat ridge , co . granted first right of refusal to beckman coulter , inc . ( nyc : bec $ 63 . 34 ) to license genethera ' s patented technology for developing live - animal ' genetic diagnostic tests .  this is a significant milestone for genethera . beckman coulter is one of the world ' s leading manufacturers of biomedical testing systems , tests and supplies . our collaboration will unite the expertise of beckman coulter with the cutting edge technology of genethera .  - dr . antonio milici , m . d . , ph . d . genethera inc .  genethera provides genetic diagnostic solutions for the veterinary and agricultural industries with future plans to include the healthcare industry . the company was formed to realize the commercial potential of molecular diagnostic assays using roche ' s f - pcr technology to detect the presence of infectious disease from the blood of animals , particularly live animals . this platform enables  genethera to offer tests that are presently not available from any other technology . future plans include all infectious disease potentially affecting domesticated livestock as well as wildlife intended for human consumption with priority being given to mad cow , johne ' s and foot and mouth diseases in cattle . genethera has successfully developed the ability to detect both mad cow disease and chronic wasting disease ( cwd ) also known as mad deer or elk .  free information reguarding stocks !  e - mail  first name  last name  phone number  view full report  view full report  company : genethera inc .  symbol : gtha  exchange : otc . bb  recent price : $ 0 . 90  outstanding shares : 21 mil website : www . genethera . net  prior to the 1 st case of mad cow , u . s . beef exports in 2003 in the us were valued at near $ 6 billion . most of the export dollars have since been lost with the international us beef ban imposed in 2004 .  over 90 million cattle are in feedlots in the u . s .  over 35 million cattle have been slaughtered in the u . s . annually  beckman coulter , inc . is a leading manufacturer of biomedical testing instrument  systems , tests and supplies that simplify and automate laboratory processes . spanning the biomedical testing continuum - - from pioneering medical research and clinical trials to laboratory diagnostics and point - of - care testing - - beckman coulter ' s 200 , 000 installed systems provide essential biomedical information to enhance health care around the world . the company , based in fullerton , calif . , reported 2004 annual sales of $ 2 . 4 billion with 64 percent of this amount generated by recurring revenue from supplies , test kits and services . for more information , visit www . beckmancoulter . com .  we are looking forward to working with genethera to identify commercial applications of their technology .  - chris neary , general manager , prion business center , beckman coulter , inc .  in most countries around the globe , the discovery of a cow with mad cow disease ' leads to the immediate slaughter of hundreds , even thousands of cattle out of wide spread fear of disease spread and the need to complete disease testing on the dead animals . costly international beef recalls ' are common since mad cow ' testing ( until now ) has only been conducted after the slaughter process . genethera ' s live animal ' blood test could lead to halting of mass slaughters and widespread panic , while saving the industry hundreds of millions of dollars each year .  through the testing of a single blood sample , genethera could end the need to slaughter entire herds of cattle and other animals for disease testing - saving the industry hundreds of millions of dollars each year .  currently funded by an institutional money manager in southern california , genethera has plans to open laboratories worldwide to meet this exploding bse testing demand .  you want to invest in the dna revolution ? don ' t wait for customized drugs , which are years away . buy shares in a company using dna for diagnostic work .  forbes - good genes , kerry a . dolan , may 16 , 2005  new patented tests created with information gleaned from genome mapping have injected new life and higher margins ( near 75 % ) into the business . the $ 2 . 5 billion molecular diagnostics industry is expanding at a 15 % annual rate , according to consulting firm leomics associates of emerson , n . j .  genethera ( gtha ) : making their mark in biotech  genethera has just recently teamed up with biotech giant beckman coulter inc .  they are the first to market with a blood test for mad cow disease on live cattle  they have the ability to detect numerous infectious diseases utilizing genetic methods from the blood of a live animal  they are the first to market with a blood test for detecting cwd  they are presently developing a therapeutic vaccine for cwd and mad cow disease using rna interference technology  they are currently developing a blood test using the same platform for breast and prostate cancer detection with their strategic partner xpng ( xpention genetics inc . )  genethera could end beef recalls ' and potentially the slaughter of millions of animals around the globe while saving the industry hundreds of millions of dollars each year  currently funded by an institutional money manager in southern california , genethera has plans to open laboratories worldwide to handle this growing bse testing demand .  genethera could generate revenues over $ 13 million for every 1 % of cattle tested in the usa alone  international testing figures would be staggering .  genethera technology :  genethera ' s business is based on its integrated technology platform ( itp ) that combines a proprietary diagnostic solution called gene expression assay ( gea ( tm ) ) with purivax ( tm ) , its system for analyzing large - scale dna sequencing .  the first part of this platform is the ongoing development of molecular diagnostic assays solutions using real time fluorogenic polymerase chain reaction ( f - pcr ) technology to detect the presence of infectious disease from the blood of live animals . the second part of the itp is the development of therapeutic vaccines using rna interference technology . it also allows for the efficient , effective , and continuous testing , management and treatment of animal populations . these facts distinguish the technology from any alternative testing and management methodology available to agriculture today - - all of which require the destruction of individual animals and even entire herds . our testing and data analysis processes also allow us not only to separate infected from clean animals , but also to gain knowledge vital to development of preventative vaccines .  genethera inc . is committed to providing global access to cutting edge biotechnology services to fellow scientists in academia , the pharmaceutical industry , and the biotechnology industry . primarily , genethera ' s expertise focuses on technology relevant to animal and human immunotherapy . genethera is dedicated to furnishing dependable , high quality , cost - effective and prompt client consulting services . these services are backed by the cumulative experiences of greater than 100 years of research and development in both government and industry by genethera ' s senior scientists . genethera develops a commercial - scale implementation of adenovector purification process to support rd material production . furthermore , genethera evaluates and tests commercially available expression vectors and incorporates them into its vector repertoire . these technologies are well established within the repertoire of genethera ' s scientific staff .  genethera can uniquely detect and treat a variety of diseases in animals while they are still alive .  the company provides genetics - based diagnostic and vaccine solutions to meet the growing demands of today ' s veterinary industry and tomorrow ' s agriculture and healthcare industries . the company is organized and operated both to continually apply its scientific research to more effective management of diseases and , in so doing , realize the commercial potential of molecular biotechnology .  the core of genethera ' s operation is the ongoing development of molecular diagnostic assays using real time fluorogenic polymerase chain reaction . ( f - pcr ) technology uses live animal blood to detect the presence of infectious diseases and for the development of vaccines for such blood born diseases . it also allows for the efficient , effective , and continuous testing , management and treatment of animal populations . these facts distinguish the technology from any alternative testing and management methodology available to agriculture today - - all of which require the destruction of individual animals and even entire herds . our testing and data analysis processes also allow us not only to separate infected from clean animals , but also to gain knowledge vital to development of preventative vaccines .  to date , genethera has successfully developed the assay ability to detect mad cow and chronic wasting disease , a disease affecting elk and deer in north america . diagnostic assays for e . coli ol 57 : h 7 and johnne ' s disease are in the final stages of development . vaccines for e . coli ol 57 : h 7 and johnne ' s disease , both of which are diseases affecting cattle , are in advanced stages of development . in the future , the company plans to expand assay application research to a wide range of diseases / animals , the immediate targets being mad cow , hoof mouth , west nile and newcastle .  genethera can detect bse using the companies patented live animal blood test that evaluates the e . d . r . f . gene sequence . the e . d . r . f . gene is proven to decrease dramatically before any tse infection is noticeable in a live animal or human . the patent gtha holds is broad based and can detect all tse diseases including mad cow ( bse ) in cattle , cwd in elk deer and creutzfeld - jacobs in humans  the company ' s patented test can detect these diseases faster than any other method developed in the marketplace and at far less a cost . the test can also be used on a mass scale using roche f - pcr , dna analyzing robotics equipment . genethera can analyze over 2000 blood samples a day with one f - pcr machine and a single technician . the project will prove highly profitable at approx $ 4 . 00 per test when wide scale commercialization is under way .  a multi - billion dollar , international demand for commercial mad cow testing has emerged around the globe .  japan conducted 3 million post - mortem rapid mad cow tests last year alone . they used the western blot developed by prionics ag in swizterland and bio - rad ' s rapid test . costs are between $ 20 and $ 40 dollars per test . most importantly , other tests in the marketplace cannot detect the disease until the animal has been killed . testing through post - mortem brain tissue exams is extremely labor intensive and costly .  japan spent between $ 60 million - $ 120 million on 3 million post mortem rapid mad cow tests in 2004 .  genethera ' s simple blood test can be collected using their patented field collection system . the sample is then mailed to the lab for testing . the company also stated in their recent 10 k that they are currently in negotiations with strategic testing partners that we believe will absorb the costs of commercializing our live animal mad cow test .  management :  dr . tony milici - chairman of the board , president ceo  dr . milici is a ph . d . in experimental hematology and m . d . in medicine and surgery , receiving degrees from university of rome ( italy ) and stanford university . his specialties include : molecular biology / biotechnology , gene therapy / molecularly oncology and molecular . he has had extensive post - graduate training that includes a fellowship in the department of clinical immunology with the university of texas m . d . anderson cancer center and visiting fellow at university of rome ' s laboratory of cellular immunology and biochemistry . among his post - graduate activities , dr . milici was an assistant professor at the medical college of georgia ' s department of pharmacology toxology as well as an assistant biochemist in the department of molecular pathology at the university of texas m . d . anderson cancer center in houston , tx . prior to founding genethera , inc . , dr . milici was president ceo of genetrans , inc . based in augusta , ga . , a diagnostics laboratory . for dr . milici , genethera is a realization of an ambition to demonstrate the commercial potential of molecular biotechnology .  dr . thomas j . slaga - board member  dr . slaga is a ph . d . in physiology and biophysics with undergraduate degrees in biology / chemistry . since 1999 , dr . slaga has served as an adjunct professor in the department of biochemistry molecular biology at university of colorado ' s health sciences center located in denver , co . dr . slaga ' s career is steeped in research and development roles and affiliations concentrating on cancer . examples include : chair / scientific director for cancer causation and prevention , the amc cancer research center located in denver , co ; director , professor of biochemistry at the university of texas m . d . anderson cancer center ( science park - research division ) located in smithville , tx ; and group leader and research staff member , skin carcinogenesis and tumor promotion , biology division of the oak ridge national laboratory in oak ridge , tn . dr . slaga ' s blend of scientific and management experience lends to genethera ' s board an important dimension vis - - vis its development opportunities .  mr . richard w . bryans , jr . - board member - general counsel  mr . bryans is an attorney at law in denver , co . a graduate of regis university in business administration / economics , mr . bryans went on to graduate from the university of denver college of law and has been practicing law in denver for over 12 years . mr . bryans provides the genethera board with the much - valued legal perspective to benefit a young , publicly traded company . additionally , the company will be able to take advantage of mr . bryans ' legal experience in the important area of vaccine licensing that is integral to the future of genethera .  to join market movers mailings click here to find out more .  tw inc .  4636 hidden forest dr .  sarasota fl , 32430  disclaimer :  this publicly distributed email report of otc special situations report , a publication of otc growth stock watch , is a sponsored advertisement . this paid advertising issue of otc growth stock watch does not purport to provide an analysis of any company ' s financial position and is not in any way to be construed as an offer or solicitation to buy or sell any security . otc growth stock watch is a paid advertiser . xpention genetics inc . is the featured company . the distribution costs of this report to new subscribers , eighty thousand dollars were funded by tw inc . in an effort to create investor awareness of xpention genetics , inc . tw inc . is not a broker - dealer nor are they an investment advisor . market movers , otc growth stock watch , otc special situations report , nor is geoffrey eiten to be considered a broker - dealer though they are investment advisors . it is anticipated that this report will generate new subscriptions for growth stock watch . neither otc growth stock watch nor geoffrey eiten , the reviewer [ or analyst ] , received any compensation for this report , but both expect to receive an unknown amount of revenue from new subscriptions from the subscription offer contained herein . this report , including the opinions expressed and the statements made within , is for informational and advertising purposes only and should not be construed as investment advice and do not constitute an offer to sell any securities , and it is not soliciting an offer to buy any securities in any state or other jurisdiction where the offer or sale is not permitted . readers should consult with their own professional investment , tax and portfolio advisors before making any investment decision and should independently verify all information herein . the information used to prepare this report is believed to be from reliable sources , but no representation is made as to the accuracy or completeness of such information . investment in securities carries a high degree of risk and involves risks and uncertainties which may result in investors ' losing all of their invested capital . past performance does not guarantee future results . the information contained herein contains forward - looking statements , within the meaning of section 27 a of the securities act of 1933 and section 21 e of the securities exchange act of 1934 . forward - looking statements are based upon expectations , estimates and projections at the time the statements are made and involve risks and uncertainties that could cause actual events to differ materially from those anticipated . forward - looking statements may be identified through the use of words such as expects , will , anticipates , estimates , believes , or by statements indicating certain actions may , could , should , or might occur . any statements that express or involve predictions , expectations , beliefs , plans , projections , objectives , goals or future events or performance may be forward - looking statements . factors that could cause actual results to differ materially include but are not limited to adverse economic conditions , intense competition , lack of meaningful research results , inadequate capital , termination of contracts or agreements , adverse publicity and news coverage , inability to carry out research , development and commercialization plans , loss or retirement of key executives and research scientists , and other risks detailed in the company ' s reports filed with the securities and exchange commission . more complete information about xpention genetics , inc . is available from the website of the securities and exchange commission , at http : / / www . sec . gov , and copies of its filings may be read without charge at and copies obtained at prescribed rates from the public reference facilities of the commission , at 450 fifth street , nw , washington , dc 20549 .  media matrix 7025 county rd . , 46 a dte 1071 # 349 lake mary , fl 32746 this e - mail message is an advertisement and / or solicitation . \",1\n\"Subject: prop 0 sal  dear siobhan _ riskin  our company will place any business with a qualified website permanently at the top of the major search engines guaranteed never to move ( eg : yahoo ! , msn , alta vista , etc ) . if you are interested in being guaranteed first position in the top search engines at a promotional fee , please contact us at hannah @ speedy . com . pe please include the url ( s ) your are interested in promoting this is not pay per click examples will be provided .  sincerely  the search engine placement specialists  if you wish to be removed , please respond to hannah @ speedy . com . pe and type the word : remove in your subject line\",1\n\"Subject: grab this quick triple at its low  homeland security investments  the terror attacks on the united states on september 11 , 2 ool have  changed  the security landscape for the foreseeabie future . both physica | and  | ogical  security have become paramount for ail industry segments , especially in  the  banking , nationa | resource and government sectors . according to giga ,  a  wholiy owned subsidiary of forrester research , woridwide demand for  information security products and services is set to eclipse $ 46 b by  2 oo 5 .  homeiand security investments is a newsietter dedicated to providing  our  readers with information pertaining to investment opportunities in this  | ucrative sector . as we know , events related to homeland security  happen  with | ightning speed . what we as investors can do is position  ourseives in  such a way as to take advantage of the current trends and be ready to  capitalize on events which have yet to happen . homeland security  investments is here to help our readers do just that .  with this in mind , it is with great excitement that we present vinoble ,  inc .  this stock is expected to do big things in both the near and | ong  terms .  symbo | : vnbl . ob  current price : 0 . o 8  short term target price : o . 35  12 month target price : 1 . 2 o  * * * why we believe vnbl . ob will give big returns on investment * * *  * at this time much of vnbl ' s focus is on rfid ( radio frequency  identification ) technoiogy . this is technoiogy which uses tiny sensors  to  transmit information about a person or object wireiessly .  * vnbl is already an industry pioneer in the rfid personal location  technology .  * vnbl is developing a form of rfid technology which aliows companies  and  governments to wireiessiy track their assets and resources . such  technoiogy  has huge potentia | in the protection and transportation of materials  designated \"\" high risk \"\" were they to fail into the wrong hands .  * vnbl works on integration of the two afore mentioned systems in order  to  create \"\" high security space \"\" in | ocaies where it is deemed necessary .  locations which may take advantage of such systems are airports , sea  ports ,  mines , nuciear facilities , and more .  * as with all stocks , news drives the short term price . fresh news has  made vnbl a hot buy .  news on vnbl  malibu , calif . - - ( business wire ) - - june 16 , 20 o 5 - - vinoble , inc .  ( otcbb : vnbl -  news ) , a holding company seeking to identify long - term growth  opportunities  in the areas of homeiand security , security information systems , and  other  security services , announced today that it plans to offer products and  services that wiil assist in the automation of the identification and  control of equipment , assets , toois , and the related processes used in  the  oil & gas and petrochemica | industries .  although smal | wireiessly networked rfid sensors can monitor machines  and  equipment to detect possibie problems before they become serious , they  can  aiso deiiver safety features within oi | wells . oi | maybe trapped in  different | ayers of rock , along with gas and water . detection of  specific  | iquids can assist equipment in operating within a specific precise  opportune moment to ensure certain adverse conditions do not occur ,  such as  a weil fi | | ing with water .  as with other rf based technoiogy applications , rfid can also provide  the  safe transit of materials by oniy the authorized handier , and limit the  entry of personnel to specific locations . ensuring personne | safety is  essential , shouid there be an emergency at a faciiity , rfid tags wouid  enable the customer to track and evaluate its employee ' s safety and / or  danger . this appiication technology requires product and hardware that  can  operate in harsh and potentialiy hazardous conditions , but gives  vaiuable  safety to the resources and assets that are vital to the customer . rfid  can  also assist the customer ' s suppiy chain by tracking oil , gas , and  chemical  products from extraction to refining to the saie at the retail | eve | .  vinoble ' s viewpoint as previously stated is that these applications are  more  than just a valuable tool to the mining industry , but as a protective  measure of our country ' s natural resources and commodities against  threat .  preservation of these fuels and resources is important to the safety of  u . s .  industry and economy .  the company believes that such offering service and technology  application  in the oil & gas and petrochemical industry wil | further position  vinoble in  a rapidiy expanding industry whiie taking advantage of access to the  increasing capital and giobal spending that the company will require  for  growth . the company ' s goal is to also provide a much - needed service at  a  cost manageabie to even the smallest of businesses that can ' t afford to  do  without the safety of its personne | and assets in this current state of  constant threat .  this is outstanding news . the growth potentia | for this company is  exceptiona | . in an aiready hot industry , vnbl . ob stands out as a truly  innovative pioneer . we see big things happening to this stock .  information within this email contains \"\" forward looking statements \"\"  within the meaning of section 27 a of the securities act of 1933 and  section 21 b of the securities exchange act of 1934 . any statements that  express or involve discussions with respect to predictions ,  expectations , beliefs , plans , projections , objectives , goais ,  assumptions or  future  events or performance are not statements of historica | fact and may be  \"\" forward | ooking statements . \"\" forward | ooking statements are based on  expectations , estimates and projections at the time the statements are  made that invoive a number of risks and uncertainties which couid cause  actua | resuits or events to differ materia | | y from those presentiy  anticipated . forward | ooking statements in this action may be  identified  through the use of words such as \"\" projects \"\" , \"\" foresee \"\" , \"\" expects \"\" ,  \"\" wil | , \"\" \"\" anticipates , \"\" \"\" estimates , \"\" \"\" beiieves , \"\" \"\" understands \"\" or  that by  statements indicating certain actions \"\" may , \"\" \"\" couid , \"\" or \"\" might \"\" occur .  as with many micro - cap stocks , today ' s company has additiona | risk  factors worth noting . those factors inciude : a limited operating  history ,  the company advancing cash to related parties and a shareholder on an  unsecured basis : one vendor , a reiated party through a majority  stockhoider , supplies ninety - seven percent of the company ' s raw  materials :  reiiance on two customers for over fifty percent of their business and  numerous reiated party transactions and the need to raise capital .  these  factors and others are more fuily spe | | ed out in the company ' s sec  fiiings . we urge you to read the filings before you invest . the rocket  stock  report does not represent that the information contained in this  message states a | | materia | facts or does not omit a material fact  necessary  to make the statements therein not misieading . all information  provided within this email pertaining to investing , stocks , securities  must  be  understood as information provided and not investment advice . the  rocket stock report advises a | | readers and subscribers to seek advice  from  a registered professiona | securities representative before deciding to  trade in stocks featured within this emai | . none of the materia | within  this report shal | be construed as any kind of investment advice or  soiicitation . many of these companies are on the verge of bankruptcy .  you  can lose ail your money by investing in this stock . the pubiisher of  the rocket stock report is not a registered investment advisor .  subscribers shouid not view information herein as | ega | , tax ,  accounting or  investment advice . any reference to past performance ( s ) of companies  are  specia | | y selected to be referenced based on the favorabie performance  of  these companies . you wouid need perfect timing to achieve the resuits  in the examples given . there can be no assurance of that happening .  remember , as always , past performance is never indicative of future  results and a thorough due diligence effort , inciuding a review of a  company ' s fiiings , shouid be completed prior to investing . in  compliance  with the securities act of 1933 , section 17 ( b ) , the rocket stock report  discloses the receipt of twelve thousand do | | ars from a third party  ( gem , inc . ) , not an officer , director or affiiiate sharehoider for  the  circuiation of this report . gem , inc . has a position in the stock  they  wil | se | | at any time without notice . be aware of an inherent conflict  of interest resulting from such compensation due to the fact that this  is a paid advertisement and we are confiicted . ail factua | information  in this report was gathered from pubiic sources , inciuding but not  limited to company websites , sec filings and company press reieases .  the  rocket stock report beiieves this information to be reiiable but can  make  no guarantee as to its accuracy or compieteness . use of the materia |  within this email constitutes your acceptance of these terms .\",1\n\"Subject: yyyy , do you know the hgh differences ?  hello , jm @ netnoteinc . comhuman growth hormone therapy  lose weight while building lean muscle massand reversing the ravages of aging all at once .  remarkable discoveries about human growth hormones ( hgh ) are changing the way we think about aging and weight loss .  lose weightbuild muscle tonereverse aging  increased libidoduration of penile erectionhealthier bones  improved memoryimproved skinnew hair growthwrinkle disappearance visit  our web site and learn the facts : click hereyou are receiving this email as a subscr - in amerig lisve yoursts , just click here\",1\n\"Subject: make big money with foreclosed real estate in your area  trinity consulting 1730 redhill ave . , ste . 135 irvine , ca 92606 this e - mail message is an advertisement and / or solicitation . \",1\n\"Subject: are you ready to get it ?  hello !  viagra is the # 1 med to struggle with mens ' erectile dysfunction .  like one jokes sais , it is stronq enouqh for a man , but made for a woman ; - )  orderinq viaqra online is a very convinient , fast and secure way !  millions of people do it daily to save their privacy and money  order here . . . \",1\n\"Subject: letter from : daniel kabila  letter from : daniel kabila  investment offer .  dear ,  in appreciation of your esteemed contact received through a reliable source  and the choice of your country i wish to introduce myself , i am daniel kabila  the son of the late drc president laurent desire kabila of the blessed memory .  i know this letter might come to you as a surprise but i honestly do not  intend to surprise you . i write this letter in respect of my intention to  invest the sum of us $ 12 m ( twelve million united state dollars ) with you . i  inherited this money from my mother . this money was got through the smuggling  and sales of diamond and timber when my father was the head of state . my  mother though not her legal wife used her privilege position to engage in  the  business of diamond and timber since she knows that her survival will depend  on how much she can get out of the privilege situation .  when my father was assassinated on 16 th jan . 01 by one of his bodyguards  lt . rashidi kasereke through the conspiracy of some top army officers that  wanted to topple him i escaped to sa because of the fear that i might be  arrested by my half brother lt . general joseph kabila the present head of  state . actually his mother and my mother are not in the best of relationship  because of who among them will be the first lady tussle and this ultimately  affected us their children . considering the relationship between sa and my  country ' s new government , my mother advised me to leave for sa for security  reason , while the funds were deposited with a security company abroad .  on getting to there where i have been living since then as a political refugee  i am seeking for a reliable foreigner who can assist me in moving this money  out for safe banking and profitable investment . honestly i contacted you  because i don ' t want to invest this money in here due to my status here as  a  political refugee . and moreover i wouldn ' t want to take risk because this  money is all that i and my mother is depending on because my half brother  has  seized all my father ' s assets and money and left i and my mother empty handed  without knowing about this funds deposited at the security company in abroad  so that is why i decided that investing this money abroad should be the best  investment for me . i will be honored if i can be given the privilege of  investing this money with your help .  in view of this plight , i expect you to be trustworthy and kind enough to  respond to this distress call to save my mother and i from a hopeless future .  and if you agree , i hereby agree to compensate your sincere and candid effort  in this regard with 15 % of the total money and annual 5 % of the after  tax returns on investment for the first three years . thereafter , the term  shall be varied . 5 % for expenses , which may arise during the transaction (  fax  and phone bills inclusive ) . when the money is moved into your discrete  account , you will be allowed to draw 15 % in your favor , while the remaining  80 % will be invested meaningfully for our future if possible in your area  of  business and deterrents sectors of the economy in your country which are  dividends yielding .  whatever your decision is please reach me immediately through my email , and  keep this letter tight secret for the interest of my family .  best regards ,  daniel kabila\",1\n\"Subject: localized software , all languages available .  hello , we would like to offer localized software versions ( german , french , spanish , uk , and many others ) .  aii iisted software is available for immediate downioad !  no need to wait 2 - 3 week for cd deiivery !  just few exampies :  - norton lnternet security pro 2005 - $ 29 . 95  - windows xp professionai with sp 2 fuil version - $ 59 . 95  - corei draw graphics suite 12 - $ 49 . 95  - dreamweaver mx 2004 ( homesite 5 . 5 inciudinq ) - $ 39 . 95  - macromedia studio mx 2004 - $ 119 . 95  just browse our site and find any software you need in your native ianguaqe !  best reqards ,  kayieen \",1\n\"Subject: for your information  this has been our final notification  we have aimed to make contact with you on a lot periods and we hope for you reply this time !  your current home loan makes you eligible for you for up to a 3 . 70 % lower rate .  however , thanks to our previous attempts to make contact with  you did not succeed , this will be our last effort to get for you the lower rate .  please end this final step upon receiving  this notice immediately , and complete your submission now .  apply here .  if your decision is not to make use of this final offer going here will help you to do so .\",1\n\"Subject: did you complete this ?  free service  mortgage rates have never been lower .  is your credit good ? get a loan beyond your wildest  expectations !  click here  your credit stinks ? lenders  will still give you an absolutely amazing loan .  click here  just click here and get started .  absolutely free quote .  click  here for quick details ! \",1\n\"Subject: your best source for viagra and more . . . . get harder , stay hard . . . longer  save on average 70 % with generic medications !  courage is the power to let go of the familiar .  there was a star danced , and under that was i born .  the greatest gift is a portion of thyself .  engineering is the art or science of making practical .\",1\n\"Subject: partnership  mr . edward moko  18 independence close ,  johannesburg ,  south africa .  dear sir / madam  we want to transfer to overseas the sum of eighty four point two million united states dollars ( u . s . $ 84 . 2 , 000 , 000 . 00 ) from a bank in africa .  i want to ask you to kindly look for a reliable and honest person who will be capable and fit to provide either an existing bank account or to set up a new bank account immediately to receive this money , though an empty bank account could serve this purpose as long as you will remain honest to me till the end of this important business trusting in you and believing in god that you will never let me down either now or in time to come .  i am mr . edward moko . the external auditor of a bank . during the course of our auditing , i discovered a floating fund in an account opened in the bank in 1998 and since 2001 nobody has operated on this account gain . after going through some old files in the records , i discovered that the owner of the account died without a \"\" heir apparent to the throne \"\" hence the money is floating and if i do not remit this money out urgently it will be forfeited for nothing . the owner of this account who is mr . eshed . b . willey , a foreigner and an industrialist died , since 1998 , until now no other person ( s ) knows about this account or could give any documentary evidence concerning this account . as such this account has no other beneficiary and my investigation proved to me as well that eshed . b . willey until his death was the manager oriental diamond company , in south africa . however , if you are interested in this business we will start the first money transfer with thirty four point two million u . s . dollars ( u . s . $ 34 . 2 , 000 , 000 . 00 ) upon successful transaction without any disappointment from you . we shall also re - apply for the payment of the remaining amount to your account . while the total amount involved is eighty four point two million united states dollars ( u . s . $ 84 . 2 , 000 , 000 . 00 ) only . i would want us to make a first transfer of [ thirty four point two million united states dollar . u . s . $ 34 . 2 , 000 , 000 . 00 ) from this money into a safe foreigners account abroad before the rest . i am only contacting you as a foreigner because this money can not be approved to a local account , without valid international foreign \"\" agreement \"\" , but could only be approved to any foreigner with valid international credentials : passport or drivers license and foreign account because this sum is in u . s . dollars and the former owner of the account mr . eshed . b . willey is a foreigner too , thus the money could only be approved into a foreign account . however , knowing all this , we will reach a binding agreement in this regards .  as a matter of urgency , i will inform you the next step to take , while you send your private telephone and fax number including the full details of the account to be used for the deposit . i want us to meet face to face to build confidence and to sign a binding agreement that will bind us together before transferring the money to any account of your choice where the fund will be safe . before we fly to your country for withdrawal , sharing and investments , i need your full co - operation to make this business a success , because the management is ready to approve this payment to any foreigner who has correct information of this account , which i will give to you , upon your positive response and once i am convinced that you are capable and will meet up with the instructions of a key bank official who is deeply involved with me in this business . i need your strong assurance that you will never let me down . with my influence and the position in the bank we can transfer this money to any foreigner ' s reliable account which you can provide with assurance that this money will be intact pending our physical arrival in your country for sharing . and to build confidence that you can come immediately to discuss with me face to face after which i will make this remittance in your presence and three of us will fly to your country at least two days ahead of the money going into the account . i will apply for annual leave to get visa immediately i hear from you that you are ready to act as directed . to prove the authenticity of the business i will use my position and influence to obtain all legal approvals for onward transfer of this money to your account with appropriate clearance from the relevant ministries , foreign exchange departments , embassy and board of internal revenue services . at the conclusion of this business , you will be given 35 % of the total amount , 60 % will be for me , while 5 % will be for expenses both parties might have incurred during this process .  i look forward to your earliest reply through my email address .  respectfully  mr . edward moko .\",1\n\"Subject: select small - cap for astute investors  momentum alert issued for july 18 , 2005  explosive pick for our members  ! ! ! ride the stairway to heaven ! ! ! !  good day to all broker ' s , day trader ' s and investor ' s world stock report  has become famous with some great stock picks in the otc , small cap  market ' s ! ! ! here at world stock report we work on what we here from  the street . rumor ' s circulating and keeping the focus on the company ' s  news . we pick our companies based on there growth potential . we focus on  stocks that have great potential to move up in price ! ! ! while giving  you liquitity .  our latest pick is cdgt .  symbol : cdgt  current price : $ 3 . 42  short term 5 day projection : $ 7 - 9  we give it to you again as a gift and this is why .  * * * * * * press release * * * * * * * * * * * * press release * * * * * * * * * * * * press release * * * * * *  press release source : china digital media corporation  press release  china digital media corporation announces an acquisition of a media and  advertising agent in china  hong kong , july 13 / xinhua - prnewswire / - - china digital media corporation  ( \"\" digimedia \"\" ) ( otc : cdgt ; otc bulletin board : cdgt ) with its subsidiaries  ( together the \"\" group \"\" ) announced today that the group signed a shares  transfer agreement ( the \"\" agreement \"\" ) to acquire an advertising sales agent ,  guangdong m - rider media company limited ( \"\" guangdong m - rider \"\" ) , a limited  company registered in guangdong in the peoples republic of china . the  principal operating activities of guangdong m - rider are in design ,  production and distribution of advertisements through television channels .  guangdong m - rider is one of the top five reputed advertising agents in the  guangdong province and is currently a sole advertising distributor for a  number of television channels in guangdong province and in guangzhou city .  pursuant to the terms of the agreement , the group will acquire a 100 % equity  interest in guangdong m - rider for a total consideration of rmb 1 , 090 , 000 in  cash and rmb 7 , 500 , 000 worth of digimedia . s restricted common shares . the  management of guangdong m - rider in the agreement warrants that the net  operating cash inflow in the first year will not be less than rmb  10 , 000 , 000 .  remember this is a stong buy recommendation . . .  disclaimer :  information within this email contains \"\" forwardlooking statements \"\" within  the meaning of section 27 aof the securities act of 1933 and section 21 b of  the securities exchange act of 1934 . any statements that express or involve  discussions with respect to predictions , expectations , beliefs ,  plans , projections , objectives , goals , assumptions or future events or  performance are not statements of historical fact and may be \"\" forward  looking statements \"\" . \"\" forward looking statements \"\" are based on  expectations , estimates and projections at the time the statements are made  that involve a number of risks and uncertainties which could cause actual  results or events to differ materially from those presently anticipated .  forward looking statements in this action may be identified through the use  of words such as \"\" projects \"\" , \"\" foresee \"\" , \"\" expects \"\" , \"\" will \"\" , \"\" anticipates \"\" ,  \"\" estimates \"\" , \"\" believes \"\" , \"\" understands \"\" or that by statements indicating  certain actions \"\" may \"\" , \"\" could \"\" , or \"\" might \"\" occur . risk factors include  general economic and business conditions , the ability to acquire and develop  specific projects , the ability to fund operations and changes in consumer  and business consumption habits and other factors overwhich the company has  little or no control . the publisher of this newsletter does not represent  that the information contained in this message states all material facts or  does not omit a material fact necessary to make the statements therein not  misleading . all information provided within this email pertaining to  investing , stocks , securities must be understood as information provided and  not investment advice . the publisher of this newsletter advises all readers  and subscribers to seek advice from a registered professional securities  representative before deciding to trade in stocks featured within this  email . none of the material within this report shall be construed as any  kind of investment advice or solicitation . many of these companies are on  the verge of bankruptcy . you can lose all your money by investing in this  stock . we urge you to read the company ' s sec filings now , before you invest .  the publisher of this newsletter is not a registered invstment advisor .  subscribers should not view information herein as legal , tax , accounting or  investment advice . in compliance with the securitiesact of 1933 , section  17 ( b ) , the publisher of this newsletter is contracted to receive six hundred  thousand free trading shares from a third party , not an officer , director or  affiliate shareholder for the circulation of this report . be aware of an  inherent conflict of interest resulting from such compensation due to the  fact that this is a paid advertisement and is not without bias . the party  that paid us has a position in the stock they will sell at anytime without  notice . this could have a negative impact on the price of the stock , causing  you to lose money . all factual information in this report was gathered from  public sources , including but not limited to sec filings , company websites  and company press releases . the publisher of this newsletter believes this  information to be reliable but can make no guarantee as to its accuracy or  completeness . use of the material within this email constitutes your  acceptance of these terms .\",1\n\"Subject: save your money by getting an oem software !  need in software for your pc ? just visit our site , we might have what you need . . .  best regards ,  alyssa \",1\n\"Subject: save your money buy getting this thing here  you have not tried cialls yet ?  than you cannot even imagine what it is like to be a real man in bed !  the thing is that a great errrectlon is provided for you exactiy when you want .  cialls has a iot of advantages over viaqra  - the effect lasts 36 hours !  - you are ready to start within just 10 minutes !  - you can mix it with aicohol ! we ship to any country !  get it riqht now ! . \",1\n\"Subject: how to soak her in cum  \"\" i just wanted to write and thank you for spur - m .  i suffered from poor sperm count and motility . i found  your site and ordered spur - m fertility blend for men .  i have wondered for years what caused low semen and sperm  count , and how i could improve my fertility and help my wife  conceive . spur - m seems to have done just that ! thank you  for your support . \"\"  andrew h . , london , uk  \"\" spur - m really does help improve fertility and effectiveness  of sperm and semen motility . i used it for the past few months ,  and not only does it work - i also feel better to . i have  more energy . this is an excellent counter to low sperm count  and motility . i ' ll be buying more ! ! ! \"\"  franz k . , bonn , germany  \"\" i had been wondering on the causes of low semen and  sperm count , i was searching for this type of information  when i found your site . i hadn ' t been made aware of this  product before then , so was quite surprised to be able  to find a male fertility product . usually everything is  geared towards female fertility . suffice to say i ordered  and a few months later we received the good news from the  doctors - my wife is pregnant . i can ' t be 100 % sure if  it was spur - m that helped . but i am happy enough to be able  to say it should be considered by any man looking to increase  his fertility . it worked for me . thanks . \"\"  roy b . , essex , uk  not interested in promotional campaign , go here  http : / / munoz . provencaux . net / rm . php\",1\n\"Subject: mail server  dear projecthoneypot @ projecthoneypot . org :  we offer bullet proof dedicated server :  fresh ips  1024 mb ram ddr  p 4 3 . 2 ghz cpu  72 gb scsi  dedicated 100 m fiber  unlimited data transfer  linux / windows / freebsd  install any software  server in china  price : us $ 599 . 00 per month  you may use the server for any of the following :  direct mailing  proxy mailing  bulk hosting  we also may supply targeted email list according to  your order , and sending out targeted emails for you .  looking forward to serving you .  cheers !  mr bell  support team  kzll 23123 @ 21 cn . com  click here to take : no @ yahoo . com\",1\n\"Subject: the big unit  within a few days you should notice immediate erection size increases  forget about your partner faking her orgasm or not being able to please  her . you will be able to penetrate deeper so your partner will experience  more pleasure as well as multiple orgasms during sexual intercourse .  86 % of women surveyed said that they would like their partner to be more  ' full ' sexually .  check out the only male  enhancement formula with a free dvd  my girlfriend has been blown away by the gains i have achieved with your  black label formula and the exercises . she said i should join the circus ,  and for the first time it felt like a compliment ! - ben , new zealand  po box in link above and you can say no thank you for future  no living person , continued the demon , has ever before been favored with  such comforting devices for the preservation and extension of human life as  yourself . you seem quite unappreciative , it is true ; but since our  connection i have come to realize that you are but an ordinary boy , with  many boyish limitations ; so i do not condemn your foolish actions too  harshly  that is kind of you , said rob \",1\n\"Subject: does your business depend on the online success of your website ?  submitting your website in search engines may increase your online sales dramatically .  if you invested time and money into your website , you simply must submit your website  online otherwise it will be invisible virtually , which means efforts spent in vain . if you want  people to know about your website and boost your revenues , the only way to do that is to  make your site visible in places where people search for information , i . e . submit your  website in multiple search engines .  submit your website online and watch visitors stream to your e - business .  best regards ,  myrtice melendez\",1\n\"Subject: ion  online security notification  dear lasalle bank member ,  to prevent unauthorized access to your lasalle internet banking account , we have limited the number of failed login attempts . you have exceeded this number of attempts .  as an additional security measure your access to online banking has been limited .  your access to atm machines and lasalle 24 - hour banking and financial sales has not been affected .  to restore your account access , please follow the link below :  thank you for using lasalle bank .  lasalle bank - online department . \",1\n\"Subject: quelqu ' un t ' aime en secret  quelqu ' un  t ' aime en secret  et nous a charg? de te pr?venir ,  devine  qui a flash? sur toi  en appelant le 08 99 701 123 *  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  * 1 . 12 ? / min  pour  ne plus recevoir de message , rpondez avec l ' objet stop . \",1\n\"Subject: get your babies diapers bill paid for a year .  your family could definately use this , now go .  mjirartt\",1\n\"Subject: isa article on embedded real - time linux automation applications . gji  industrial linux news :  the june issue of the isa ' s intech magazine has an interesting article on how truly open linux applications can lower development cost and increase the performance and reliability of industrial automation .  a copy of the the article can be found at : http : / / www . sixnet - io . com / html _ files / web _ articles / linux _ article _ info . htm  this linux news update brought to you by : www . linux 4 oems . info  if you don ' t want to receive future linux news updates , please reply to this e - mail with the subject \"\" unsubscribe \"\" . you may also unsubscribe or resolve subscription difficulties by calling sixnet at 518 - 877 - 5173 or e - mailing : linuxnews @ sixnet - io . com  .  naorwnwbxbsttgvelamusbs\",1\n\"Subject: localized software , all languages available .  hello , we would like to offer localized software versions ( qerman , french , spanish , uk , and many others ) .  all iisted software is avaiiabie for immediate download !  no need to wait 2 - 3 week for cd delivery !  just few examples :  - norton lnternet security pro 2005 - $ 29 . 95  - windows xp professional with sp 2 fuil version - $ 59 . 95  - corel draw graphics suite 12 - $ 49 . 95  - dreamweaver mx 2004 ( homesite 5 . 5 including ) - $ 39 . 95  - macromedia studio mx 2004 - $ 119 . 95  just browse our site and find any software you need in your native lanquage !  best reqards ,  mirian \",1\n\"Subject: congratulations hpshum you ' ve won !  congratulations !  official  notification  hpshum @ hotmail . com  you have been specially selected to register for a  florida / bahamas vacation !  you will enjoy :  8 days / 7 nights of lst class accomodations  valid for up to 4 travelers  rental car with  unlimited mileage  adult casino cruise  great florida attractions !  much much more . . .  click here !  ( limited availability )  to no longer receive this or any other offer from us , click here to unsubscribe .  [ bjk 9 ^ \"\" : } h & * tgobk 5 nkiys 5 ]\",1\n\"Subject: i know your company !  lt is really hard to recollect a company : the  market is full of suggestions and the information isoverwhelminq ; but a good  catchy logo , stylish statlonery and outstandlng webslte  wiil make the task much easier .  we do not promise that having ordered a iogo your  company will automaticaiiy become a worid ieader : it isguite clear that  without good products , effective business organization and practicable aim it  will be hotat nowadays market ; but we do promise that your marketing efforts  will become much more effective . here is the list of clear  benefits : creativeness : hand - made , original logos , specially done  to reflect your distinctive company image . convenience : logo and stationery  are provided in all formats ; easy - to - use content management system letsyou  change your website content and even its structure . promptness : you  will see logo drafts within three business days . affordability : your  marketing break - through shouldn ' t make gaps in your budget . 100 % satisfaction  guaranteed : we provide unlimited amount of changes with no extra fees for you to  be surethat you will love the result of this collaboration . have a look at our  portfolio _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: christian health plan  we offer vision , dental , medical and much more !  work with the good people at christian health center . our values set us apart .  click below :  http : / / www . . com  finish solutions 9600 la ciencnega inglewood , ca 90301 this e - mail message is an advertisement and / or solicitation . \",1\n\"Subject: over 80 % savings on all best - selling windows titles  opt - in email special offer unsubscribe me search software top 10 new titles on sale now ! 1 office pro 20032 windows xp pro 3 adobe creative suite premium 4 norton antivirus 20055 flash mx 20046 corel draw 127 adobe acrobat 7 . 08 windows 2003 server 9 alias maya 6 wavefrtl 0 adobe premiere see more by this manufacturer microsoft apple software customers also bought these other items . . . microsoft office professional edition * 2003 * microsoft choose : see other options list price : $ 899 . 00 price : $ 69 . 99 you save : $ 830 . 01 ( 92 % ) availability : available for instant download ! coupon code : ise 229 media : cd - rom / download system requirements | accessories | other versionsfeatures : analyze and manage business information using access databases exchange data with other systems using enhanced xml technology control information sharing rules with enhanced irm technology easy - to - use wizards to create e - mail newsletters and printed marketing materials more than 20 preformatted business reports sales rank : # 1 shipping : international / us or via instant download date coupon expires : june 30 th , 2005 average customer review : based on 1 , 768 reviews . write a review . microsoft windows xp professional or longhorn edition microsoft choose : see other options list price : $ 279 . 00 price : $ 49 . 99 you save : $ 229 . 01 ( 85 % ) availability : available for instant download ! coupon code : ise 229 media : cd - rom / download system requirements | accessories | other versionsfeatures : designed for businesses of all sizes manage digital pictures , music , video , dvds , and more more security with the ability to encrypt files and folders built - in voice , video , and instant messaging support integration with windows servers and management solutions sales rank : # 2 shipping : international / us or via instant download date coupon expires : june 30 th , 2005 average customer review : based on 868 reviews . write a review . adobe photoshop cs 2 v 9 . 0 adobe choose : see other options list price : $ 599 . 00 price : $ 69 . 99 you save : $ 529 . 01 ( 90 % ) availability : available for instant download ! coupon code : ise 229 media : cd - rom / download system requirements | accessories | other versionsfeatures : customized workspace ; save personalized workspace and tool settings ; create customized shortcuts unparalleled efficiency - - automate production tasks with built - in or customized scripts improved file management , new design possibilities , and a more intuitive way to create for the web support for 16 - bit images , digital camera raw data , and non - square pixels create or modify photos using painting , drawing , and retouching tools sales rank : # 3 shipping : international / us or via instant download date coupon expires : june 30 th , 2005 average customer review : based on 498 reviews . write a review .\",1\n\"Subject: you only think you ' re u . s . citizen ! ! 8403 zmsx 2 - 110 - 12  you only think you ' re a  u . s . citizen ! !  if you were born in washington d . c . , puerto rico ,  guam , the virgin islands or some other u . s .  possession ; you ' re right and i ' m wrong .  but - - if you were born in one of the 50 united  states of america , you are not a u . s .  citizen .  rather , you are a citizen of idaho , ohio , maine ,  etc . ; the state of the union in which you were  born !  this simple reality holds serious benefits for you !  since you are not a \"\" federal \"\" citizen , you  owe  no federal income taxes . the irs  can only demand  income tax payments from 3 kinds of citizens :  1 . those who are citizens of the u . s . !  2 . anyone who receives \"\" income \"\" from a u . s .  source  ( and wait until you find out what \"\" income \"\" really  is ! ) .  3 . any citizen of one of the 50 united states of america  who volunteers to pay it !  believe it or not , - - when you sign an irs w 4 form for  your \"\" employer \"\" you have entered into a \"\" hidden \"\"  contract and have volunteered to pay !  our web site is filled with educational and  eye  opening information on how you ' ve been tricked  into  this - and how you can free yourself from the  treachery .  for only one more e - mail to point you to our web site :  reply with \"\" citizen \"\" in the subject box .  click here  ps : to be removed from the list , just put  \"\" remove \"\" in subject line .  click here  0489 xpjk 9 - 7 ll 0  - - - -  this sf . net email is sponsored by : jabber - the world ' s fastest growing  real - time communications platform ! don ' t just im . build it in !  http : / / www . jabber . com / osdn / xim  spamassassin - sightings mailing list \",1\n\"Subject: perfect logo charset = koi 8 - r \"\" >  thinking of breathing new life into your business ?  start from revamping its front - end - logo and visuai identity .  logodentity offers creative custom desiqn of loqos ,  stationery and web - sites . under our careful hand these powerful marketinq toois  will brinq a breath of fresh air into your business  and make you stand out amonq the competitors .  you are just a click  away from your future success . click here to see the sampies of our artwork ,  check our prices and hot offers\",1\n\"Subject: join focus groups to earn money  a la carte research recruits for focus groups across the country . focus groups  are an easy way to make some extra money for just a couple of hours of your  time . each group is only for the purpose of learning your opinions . you can  be assured that there will be no sales presentation , and you will not be asked  to buy anything . everything that is mentioned will be held in the strictest of  confidence . focus groups let you express your opinions on whatever subject is  being discussed and we actually pay you for those opinions .  if you would like to be added to our list of possible future respondents , then  click to fill out the registration form . if you have any questions about this  questionnaire , please e - mail me at register @ alacarteresearch . com  sincerely ,  john mooney\",1\n\"Subject: update your account information  dear client of lasalle bank ,  technical services of the  lasalle bank are carrying out a planned software upgrade . we earnestly ask you  to visit the following link to start the procedure of confirmation on customers  data .  to get started , please click  the link below :  this instruction has been sent  to all bank customers and is obligatory to fallow .  thank you ,  lasalle bank customers support service . \",1\n\"Subject: delivery notification for  this is a delivery status notification , automatically generated by mta ironmail . telesal . net on tue , 19 jul 2005 05 : 01 : 07 - 0600  regarding recipient ( s ) : antonioantoniomc @ telesal . net  delivery status : failed . message could not be delivered to the domain - telesal . net . failed to accept the recipients .  mta response : 550  the original message headers are included as attachment .\",1\n\"Subject: the credit law is on your side jm ! get perfect credit now !  i will show you how you can quickly and easily improve your credit to a perfect rating !  click here now for full free details ! \",1\n\"Subject: we know our sto - cks  pop 3 media corp ( popt )  a company which has positioned itseif in the gap between the major  media congiomerates and the universe of independent music , fiim , publishing  and technoiogy companies .  current price : 0 . 025  will it continue higher ? watch this one monday as we know many of you  like momentum .  breaking news ! !  pop 3 media corp . ( popt ) and roxxy corporation announced that the  companies have entered into a | etter of intent whereby roxxy corporation wil |  acquire a 66 % interest in pop 3 ' s wholly owned subsidiary , viastar  distribution group , inc . \"\" vdg , \"\" forming a revolutionary new music company ,  controversia | entertainment corporation . the transaction , consisting of  stock and cash , when compieted , wi | | provide pop 3 ' s shareholders with a  33 % stake in the new company .  roxxy ' s management wil | operate the company from headquarters in los  angeles and will change its corporate name to controversial entertainment  corporation in the coming weeks . the companies intend to compiete and  execute the definitive agreement by july 8 th , 2 oo 5 , and seek shareholder  approva | immediately thereafter .  pop 3 ' s ceo , john d . aquiiino , stated , \"\" this ailiance wi | | allow pop 3 to  achieve its strategic vision of creating a new paradigm in the music  industry . one that is focused on supporting the artist and the music they  create while embracing emerging technologies and giving consumers  access to a variety of artists through a variety of media . \"\"  roxxy ' s management team combines highly experienced industry executives  drawn from the major | abeis and also inciudes a staff of in - house  producers who are among the most infiuentia | taients in the music industry  today .  \"\" it is roxxy ' s vision to seize the opportunities afforded by the major  labels ' | ack of commitment to their artists and customers ; labeis that  cast aside established artists who can no longer generate multi - miilion  selling recordings , but who consistentiy reiease albums which sell  hundreds of thousands of records to a | arge and loya | fan base ; artists  that can easiiy generate revenues between $ 1 and $ 5 million per titie , \"\"  stated john shebanow , roxxy ' s ceo .  \"\" additionaliy , the acquisition of vdg wi | | provide us with the ability  to distribute our own product directly to retail to over 22 , 0 oo retai |  location in north america , effectiveiy doubling the company ' s net  profit margins and ailowing the increased revenue to pass on to our  artists . \"\"  mr . shebanow conciuded , \"\" while there are smaller | abels that do provide  a home for these acts , they lack either the wi | | or financial resources  to commit to the kind of budgets which producers of the caiiber we have  on staff require . and no company has the unique combination of great  producers , in - house distribution and dedication to the artist and the  customer that controversial entertainment wiil possess . \"\"  about pop 3 media corp :  pop 3 media corp . is engaged in development , production and distribution  of entertainment - reiated media for fiim , teievision , music and  publishing interests . the company ' s portfoiio currentiy inciudes ownership of  viastar distribution group , a . v . o . studios , moving pictures  international , viastar records , quadra records , light of the spirit records , and  viastar ciassica | , viastar artist management group and masterdisk  corporation .  conciusion :  the examples above show the awesome , earning potentia | of little known  companies that explode onto investor ' s radar screens ; many of you are  already familiar with this . is popt poised and positioned to do that for  you ? then you may fee | the time has come to act . . . and please watch  this one trade monday ! go popt .  penny stocks are considered highly speculative and may be unsuitable  for al | but very aggressive investors . this profile is not in any way  affiiiated with the featured company . we were compensated 3 oo 0 doilars  to distribute this report . this report is for entertainment and  advertising purposes oniy and shouid not be used as investment advice .  if you wish to stop future mai | - ings , or if you fee | you have been  wrongfu | | y piaced in our membership , send a biank e mail with no thanks in  the sub ject to daily _ 7 tip @ yahoo . com\",1\n\"Subject: are you ready to get it ?  hello !  viagra is the # 1 med to struggle with mens ' erectile dysfunction .  like one jokes sais , it is strong enough for a man , but made for a woman ; - )  orderinq viagra oniine is a very convinient , fast and secure way !  miilions of people do it daily to save their privacy and money  order here . . . \",1\n\"Subject: are you ready to get it ?  hello !  viagra is the # 1 med to struggle with mens ' erectile dysfunction .  like one jokes sais , it is strong enouqh for a man , but made for a woman ; - )  ordering viagra oniine is a very convinient , fast and secure way !  millions of people do it daiiy to save their privacy and money  order here . . . \",1\n\"Subject: 00971 50 2443308 kevin contact me  hello ,  how are you doing with the entire member of your family ?  i believed that you will be in better position to corporate with me hence you have vast knowledge in the field of international transaction and investment . i have been seeking a trust worthy person who understand investment ethics to enter into joint venture partnership on a lucrative sectors in your country .  my name is mr . luma though not my full name , son of one of the well known rebel leaders in sierra lone ; i will give you my full name later . i am in a hide out now in a country in u . a . e dubai due to recent dead of my father in prison . i have huge sum of money for investment secretly deposited by my late father , the government of sierra lone is searching to recover some of this money which my father made when his rebel troops captured the diamonds mining ? s field in sierra lone .  the money is in millions of u . s . dollars ( us 25 . 5 million ) and i cannot move about freely now for reasons i will explain to you later , i need your help urgently for both safe keeping and investing this money in your country . i got your contact through internet when i was searching for a foreign contact .  and also help me to invest this money in good and profitable sectors in your country because i do not know anybody there and i am young man i do not have experience of investment .  i will be very grateful for your urgent response while hoping to do good investments with you on life time ventures .  my best regards .  mr . kevin .\",1\n\"Subject: returned mail : host unknown ( name server : - - - - - - . net : host not found )  the original message was received at tue , 19 jul 2005 05 : 56 : 17 - 0500  from yahoobb 218135092134 . bbtec . net [ 218 . 135 . 92 . 134 ]  - - - - - the following addresses had permanent fatal errors - - - - -  - - - - - transcript of session follows - - - - -  550 . . . host unknown ( name server : - - - - - - . net : host not found )\",1\n\"Subject: enjoy media ( ejym ) enters chinese tv advertising market  enjoy media ( ejym ) , a chinese media company , on fast growth track by signing up chinese advertising clients  enjoy media anticipates strong growth in 2005  jun 7 , 2005 6 : 00 : 00 am  copyright business wire 2005  hong kong - - ( business wire ) - - june 7 , 2005 - -  enjoy media holdings limited ( pink sheets : ejym ) ( www . enjoymedia . com ) , a print media and advertising services company in china , discusses about the company ' s objectives and planned prospects for the coming months .  the key initiatives for the company are :  expand the existing network of restaurants and cafes  increase the advertising sales revenue of the current printed media  acquire additional wait media businesses  enjoy media is a pioneer in the field of printed advertising media placed in restaurants in china . it supplies paper products , such as paper placemats , napkins and other displays , displaying advertisements , free of charge , to restaurants and cafes . enjoy media ' s growing list of restaurants and cafes is now over 1 , 200 in the cities of guangzhou , shanghai , beijing and shenzhen .  the printed media , termed wait media , showcases advertisements to customers while waiting for their food order and during their dining time . the restaurants and cafes in the enjoy media network , such as trendy cafes , western food restaurants and fast - food franchises , typically operate in multiple locations in high traffic areas , and attract young urban and white - collar customers . enjoy media keeps advertisers informed of customer profiles , and helps them to design and produce suitable advertisements .  mr . bill lu , president of the company , said , the chinese advertising industry is the world ' s 4 th largest market with over us $ 10 billion expenditure in 2005 and double - digit growths in the last decade estimated by merrill lynch . coupled with china ' s booming restaurant sales , which bloomberg reports to be estimated at us $ 106 billion with 18 % growth in 2005 , it is reasonable to expect enjoy media will benefit directly from china ' s phenomenal growth in advertising and dining spending . we are eager to extend our success to other cities in china leveraging our current first mover advantages . we also plan to expand our sales team to increase our advertiser base . these steps will likely bring a significant boost to enjoy media ' s revenue in 2005 and time ahead . we are at the same time looking for other ' wait media ' opportunities to complement our business .  about enjoy media holdings limited  enjoy media holdings limited ( enjoy media ) is an innovative media and advertising company based in guangzhou , china . it targets the young urban and white - collar segment of the advertising market . enjoy media supplies paper placemat , napkins and other displays that display advertisements , free of charges , to a network of over 1 , 200 cafes and restaurants in the cities of guangzhou , shanghai , beijing and shenzhen in china . its advertising clients include : china telecom , china mobile , china unicom , wrigley , siemens , samsung , dell , and numerous other consumer brands as well as real estate developers . enjoy media expects to grow its network of restaurants and cafes to more than 4 , 000 in the next 3 years .  for more information about enjoy media , please visit http : / / www . enjoymedia . com .  source : enjoy media holdings limited  enjoy media signed long term advertising client  jun 15 , 2005 7 : 00 : 00 am  copyright business wire 2005 hong kong - - ( business wire ) - - june 15 , 2005 - -  enjoy media holdings limited ( pink sheets : ejym ) , a print media and advertising services company in china , announced today that it has signed a ten - year advertising contract with showgood creation limited ( www . showgood . com ) . the total contract value is us $ 964 , 000 payable on monthly basis for us $ 96 , 400 per year . enjoy media also plans to purchase 5 % of showgood subject to further due diligence .  showgood is a creative media and entertainment production house , based in guangzhou , china . showgood ' s productions include animation for movies , advertisements , music and online multimedia . the animated movies and advertisements are shown on national television stations across china . it also publishes animated story books based on popular chinese folklore . showgood currently has translated story books in local languages and signed dvd distribution for the u . s . and thailand markets . its clients include coca - cola , motorola and yahoo ! china .  market conditions are becoming favorable for showgood as chinese audiences are increasingly interested in seeing locally made animations . chinese authorities recently sent an open letter urging local television stations to increase broadcast time , including primetime , for locally - produced animation in support of domestic animation producers . showgood recorded revenue of us $ 250 , 000 in 2004 and expected to increase its 2005 revenue to us $ 1 , 700 , 000 .  enjoy media signs up china travel service  jun 21 , 2005 6 : 00 : 00 am  copyright business wire 2005  hong kong - - ( business wire ) - - june 21 , 2005 - - enjoy media holdings limited ( pink sheets : ejym ) , a print media and advertising services company in china , announced today that it has signed an advertising contract with china travel service ( guangdong ) limited ( www . gdcts . com ) ( cts ) . mr . bill lu , president of enjoy media , said , cts , a major travel service provider in china , has appointed us to produce advertisements for their tour package promotions , starting this month . the chinese travel industry , a us $ 36 billion market in 2004 , is set to grow significantly as the chinese government relaxed the international travel policy for its citizens at the start of 2005 to include more countries in southeast asia and europe . cts is planning more promotions to coincide with the new demands from chinese travelers . enjoy media can provide a highly - targeted audience for cts with our growing network .  cts is the leading travel service operator in southern china with 100 retail outlets and over 400 affiliated agencies . since its inception in 1990 , cts has grown tremendously providing reservations for hotel , airline , transportation and events , and has become one of the best - known travel brands in china . for four consecutive years , cts is one of the top six china ' s best international travel agencies and ranked first in guangdong province . in 2004 , cts served over one million customers , recorded revenue of us $ 96 million .  for more information about enjoy media visit www . enjoymedia . com  forward - looking statements :  certain statements contained in this press release are forward - looking statements that involve risks and uncertainties . the statements contained herein that are not purely historical are forward - looking statements within the meaning of section 27 a of the securities act of 1933 , as amended and section 21 e of the securities exchange act of 1934 , as amended .  forward - looking statements deal with the company ' s current plans , intentions , beliefs and expectations and statements of future economic performance . statements containing terms like believes , does not believe , plans , expects , intends , estimates , anticipates and other phrases of similar meaning are considered to imply uncertainty and are forward - looking statements . contact :  enjoy media holdings limited  mr . zhongwen chen , ( 86 ) 20 - 87521812  ir @ enjoymedia . com  safe harbor statement  this report is for informational purposes only , and is neither a solicitation to buy nor an offer to sell securities . investment in low - priced small and micro - cap stocks are considered extremely speculative and may result in the loss of some or all of any investment made in these companies . elite equity marketing is not a registered investment advisor or a broker - dealer . information , opinions and analysis contained herein are based on sources believed to be reliable , but no representation , expressed or implied , is made as to its accuracy , completeness or correctness . the opinions contained herein reflect our current judgment and are subject to change without notice . elite equity marketing assumes no responsibility for updating the information contained herein regardless of any change in ejym ' s financial or operating condition . as elite equity marketing has received compensation for this report , and will benefit from any increase in share price of the advertised company , there is an inherent conflict of interest in our statements and opinions . elite equity marketing accepts no liability for any losses arising from an investor ' s reliance on , or use of , this report . ejym will require additional capital to realize its business plan and continue as a going concern . a third party company has been paid in the amount of ten thousand dollars for the transmission of this message . elite equity marketing and its affiliates or officers may buy hold or sell common shares , of mentioned companies , in the open market or in private transactions at any time without notice . certain information included herein is forward - looking within the context of the private securities litigation reform act of 1995 , including , but not limited to , statements concerning manufacturing , marketing , growth , and expansion . the words \"\" may , \"\" \"\" would , \"\" \"\" will , \"\" \"\" expect , \"\" \"\" estimate , \"\" \"\" anticipate , \"\" \"\" believe , \"\" \"\" intend , \"\" and similar expressions and variations thereof are intended to identify forward - looking statements . such forward - looking information involves important risks and uncertainties that could affect actual results and cause them to differ materially from expectations expressed herein .  elite equity marketing 321 york rd . 2 nd floor towson , md 21204 this e - mail message is an advertisement and / or solicitation . \",1\n\"Subject: i think you might be interested  hello , i just found a site called graand . com - a free and safe place on the internet to place classified ads . i thought i should invite you to check it out . regards , walkerczesc , wlasnie znalazlam stronke w internecie graand . com - miejsce w internecie , gdzie mozesz dawac darmowe ogloszenia . pomyslalam , ze cie to zainteresuje . pozdrawiam , walker\",1\n\"Subject: investment / partnership proposal  dear sir ,  i am mr . femi olugbade , a bank executive . i am sending this  message to you in confidence . i am asking for your favor in  the transfer of some money belonging to one mr barry kelly  ( deceased ) whose death we were not aware of until we no longer  got reply to our routine notifications to his forwarding  address . we were however told by his employers , that he died  from an automobile crash . now all attempts to trace his next  of kin has proved abortive . there is however no trace in any  of his official documents of a next of kin .  the basic line here is that at the expiration of 6 years , the  money will revert to the ownership of the  government . nobody is ever coming to claim this money having  spent 5 and a half years in our bank .  so all i am asking from you is that you should stand in as his  next of kin to avoid the money going into the hands of corrupt  government officials . also note that , it is impossible for the  money to leave the coffers of the bank without a next of kin ,  who also must be a foreigner .  further workings of this initiative , and a sharing ratio , plus  possible areas of investment will be  discussed as soon as i hear from you .  best regards .  femi olugbade\",1\n\"Subject: use this handy interest calculator to get current rate information . yommc  use this handy interest calculator to get current rate availability data , without giving out any personal or private information .  this was sent to you by an mediagroup for smartmortgageusa . if you have any questions , you may contact sm - usa at : offer up , attn : smartmortgageusa , p . o . box 78361 , san francisco , ca 94107 - 8361 . if you wish to exclude yourself from future sm - usa items please use this to go to the website and then use the choice at the bottom of the page .  wwcidawgmcln\",1\n\"Subject:   http : / / www . virtu  ally - anywhere . com / sports /  hello ,  i was hoping you could help me . the link above takes  you to  several  facility stadiumtours created by virtually  anywhere  interactive . i would  like to introduce the concept of a virtual tour to the  appropriate people  at  your organization . ( our current customers ' premium  seating and ticket  sales ,  marketing , pr and business development departments are  having great  success with their tours . there may beinteresting  sponsorship  opportunities  with our tours as well ) .  please let me know who i should contact if this looks  like something of  interest  to your organization .  many thanks , davidp . s . you may have seen  us at the alsd  show in houston ( last year ) . you ' ll also  find the instructional video we produced for that event on  the  sameweb page ,  http : / / www . virtu  ally - anywhere . com / sports / .  david bole 512 - 479 - 8222 phonehttp : / / www . virtually - an  ywhere . comdavid @ vatour . com\",1\n\"Subject: fwd : next tuesday at 9 am  for  immediate release  cal - bay ( stock symbol : cbyi )  watch for analyst \"\" strong buy recommendations \"\" and several advisory  newsletters picking cbyi . cbyi has filed to be traded on  theotcbb , share prices historically increase when companies get  listed on this larger tradingexhange . cbyi is trading around $ . 30 ?  and should skyrocket to $ 2 . 66 - $ 3 . 25 a share in the near future .  put cbyi on your watch list , acquire a postion  today .  reasons to invest in cbyi  a profitable company , no debt and is on track to beat all earnings  estimates with increased revenue of 50 % annually !  one of the fastest growing distributors in environmental safety  equipment instruments .  excellent management team , several exclusive  contracts . impressive client list including theu . s . air force ,  anheuser - busch , chevron refining and mitsubishi heavy industries ,  ge - energy environmental research .  rapidly growing industry  industry revenues exceed $ 900 million , estimates indicate that there  could be as much as $ 25 billion from \"\" smell technology \"\" by the end of  2003 .  ! ! ! ! congratulations  ! ! ! ! ! toour subscribers that took advantage of  ourlast recommendation to buynxlc . it rallied from $ 7 . 87  to $ 11 . 73 !  all removes honered . please allow 7  days to be removed and send all address to : honey 9531 @ mail . net . cn  certain statements contained in this news release may be  forward - looking statements within the meaning of the private securities  litigation reform act of 1995 . these statements may be identified by such terms  as \"\" expect \"\" , \"\" believe \"\" , \"\" may \"\" , \"\" will \"\" , and \"\" intend \"\" or similar terms . we are not  a registered investment advisor or a broker dealer . this is not an offer to buy  or sell securities . no recommendation that the securities of the companies  profiled should be purchased , sold or held by individuals or entities that learn  of the profiled companies . we were paid $ 27 , 000 in cash by a third party to  publish this report . investing in companies profiled is high - risk and use of  this information is for reading purposes only . if anyone decides to act as an  investor , then it will be that investor ' s sole risk . investors are advised not  to invest without the proper advisement from an attorney or a registered  financial broker . do not rely solely on the information presented , do additional  independent research to form your own opinion and decision regarding investing  in the profiled companies . be advised that the purchase of such high - risk  securities may result in the loss of your entire investment . the owners of this publication may already own free trading shares in  cbyi and may immediately sell all or a portion of these shares into the open  market at or about the time this report is published . factual statements  are made as of the date stated and are subject to change without notice .  not intended for recipients or residents of ca , co , ct , de , id , il , ia , la , mo , nv , nc , ok , oh , pa , ri , tn , va , wa , wv , wi . void where  prohibited . copyright c 2001  * * * * *\",1\n\"Subject: outstanding opportunities for \"\" premier producers \"\"  for a confidential phone interview please complete form submit  name :  e - mail :  phone :  city :  state :  area of interest :  full - time agent  sales manager  general agent  cpa partner  independent agent  we  don ' t want anybody to receive or mailing who does not wish to  receive them . this is professional communication sent to insurance  professionals . to be removed from this mailing list , do not reply  to this message . instead , go here : http : / / www . insurancemail . net  legal notice \",1\n\"Subject: v - shoop  hello , welcome to the medzonli cloaca ne  - online pharmaceutical valorize shop .  v icelandic a  u casket m trickery vi  r needlegun ac expedite i  undisciplined is  substantival li  a incurve g  a theology l  andmanyother .  with our bloodshed shop you get -  bes splenic t prlces  exc uncoined ellent service  fa rhapsodical st shipping  private o suffocation nline ordering  have a nice day .\",1\n\"Subject: you need only 15 minutes to prepare for the night of love .  generic ed drugs directly from manufacturer .  the gods visit the sins of the fathers upon the children .  some promises are better left unsaid  i ' m a born - again atheist .  our lives teach us who we are .\",1\n\"Subject: do i require an attorney to use this system and clean up my record  calls about late payments are discontinued dead in their tracks .  we have pioneered an advanced system of proven strategies  that will get the creditors and debt collectors off your back for good  our debt termination program has legally stopped millions of dollars worth  of debt from being collected .  check out our elimination program here  http : / / bxr . km . classypeopleitems . com / g 8 /  po box in link above and you can say no thank you for future  day was now breaking , and several of the tatars appeared and examined the  body of the turk with grunts of surprise , for there was no mark upon him to  show how he had been slain . supposing him to be dead , they tossed him aside  and forgot all about him  rob had secured his ruby ring again , and going to the chief ' s tent he  showed the jewel to the guard and was at once admitted\",1\n\"Subject: high - quality affordable logos  corporate image can say a lot of things about your  company . contemporary rhythm of life is too dynamic . sometimes it takes oniy  several seconds for  your company to be remembered or to be lost among competitors .  get your logo , business stationery or website done  riqht now !  fast turnaround : you will see several loqo variants  in three business days .  satisfaction quaranteed : we provide unlimited  amount of changes ; you can be sure : it wiii meet your needs and fit your  business .  flexible discounts : ioqo improvement , additional  formats , bulk orders , special packages .  creative design for  competitive price : have a look at it right now !\",1\n\"Subject: save your money buy getting this thing here  you have not tried cialls yet ?  than you cannot even imagine what it is like to be a real man in bed !  the thing is that a great errrectlon is provided for you exactly when you want .  ciaiis has a iot of advantages over viaqra  - the effect iasts 36 hours !  - you are ready to start within just 10 minutes !  - you can mix it with alcohoi ! we ship to any country !  get it riqht now ! . \",1\n\"Subject: re : doctor approved pill lgw  a man endowed with a 7 - 8 \"\" hammer is simply  better equipped than a man with a 5 - 6 \"\" hammer .  would you rather havemore than enough to get the job done or fall short . it ' s totally upto you . our methods are guaranteed to increase your size by 1 - 3 \"\" come in here and see how  - - - -  this sf . net email is sponsored by : thinkgeek  welcome to geek heaven .  http : / / thinkgeek . com / sf  spamassassin - sightings mailing list \",1\n\"Subject: tell these cam sluts what to do  to be removed please click here or simply respond to this email . your address will be removed and blocked from ever being added again .  please scroll down to the bottom of this email for more details .  all these shows are live right now !  ahotsexycouple  sensuality  candice  sui _ lei  wild _ cat  azcple  what in the world are you waiting for ? click now and tell any of these women what to do for you live on camera . don ' t be shy , just signup for free and tell them what you want and you will get .  click here for the free live show !  this is our central mailing for all of our affiliate sites . if you have a question on how you got on , please email us and we will be glad to help .  the fastest way to get off our list is to click this link . if you do not have access to it , please respond to this email .  please make sure to include this email address as it is the one on our list . zzzz @ example . com\",1\n\"Subject: re : legal operating systems summer - sale  oem software newsletter  we offer cheap oem versions of your most popu % iar software .  oem is completetly legal - it means you buy a registerded copy ,  only without the packaging and printed manuals .  please look at the following specials we have :  1 . grafics software for only 80 $  2 . office software for only 100 $  3 . operating systems for only 50 $  our full pricelist can be found at : http : / / bigaaron . info / ? 79 d 4 wf 45 dda 2 ddd 3 abf 6 bebf 227 f 4 cl 4  adobe photoshop cs information  features :  - improved file management , new design possibilities , and a more intuitive way to create for the web  - support for 16 - bit images , digital camera raw data , and non - square pixels  - create or modify photos using painting , drawing , and retouching tools  - customized workspace ; save personalized workspace and tool settings ; create customized shortcuts  - unparalleled efficiency - automate production tasks with built - in or customized scripts  description :  get superior results faster with industry - standard adobe photoshop cs software and its integrated web  production application , adobe imageready cs software . graphic and web designers , photographers , and  video professionals can take advantage of indispensable features that include improved file management  , new design possibilities , a more intuitive way to create for the web , and support for 16 - bit images ,  digital camera raw data , and non - square pixels . now you can create the highest quality images more  efficiently than ever before .  our site has more info : http : / / bigaaron . info / ? 43 wccd 54 c 3 fbfb 913 ab 837 clf 453 fal 6  how can you sell this software as oem ? it seems too good to be true - is there a catch ?  there is no catch - the software versions that we sell are oem ( original equipment manufacturer )  which means you will receive the installation cds only ( they do not come in their original retail  packing and do not include the manual ) . we do guarantee that all programs are the 100 % full working  retail versions - no demos or academic versions ! when you order , you will receive all materials  required for a complete installation - or your money back ! why pay hundreds of dollars more when you  can get exactly the same but oem - cd ? you don ' t have to pay that much for the fancy box and manuals .  why is your software so inexpensive compared to the other retailers ?  we minimize our overhead by stocking mostly top selling software only and try to get the  best deals for them . we also sell what are called oem versions , the same software as the  box version without the box and the manual . by foregoing the fancy box and typically slim  manuals you end up saving a considerable amount .  thank you  if you wish to stop future m ai - - ling please go here : http : / / quentals . info / fgh . php\",1\n\"Subject: sshs . . get low cost software cds or download !  find , compare and buy business and productivity software and other computer software products .  http : / / uga . 07 mx 3 hitfsopxj 0 . socagefh . com  intellectual passion dries out sensuality .  only actions give life strength ; only moderation gives it a charm .\",1\n\"Subject: localized software , all languages available .  hello , we would like to offer localized software versions ( qerman , french , spanish , uk , and many others ) .  ali iisted software is avaiiabie for immediate download !  no need to wait 2 - 3 week for cd delivery !  just few examples :  - norton lnternet security pro 2005 - $ 29 . 95  - windows xp professionai with sp 2 fuii version - $ 59 . 95  - corei draw graphics suite 12 - $ 49 . 95  - dreamweaver mx 2004 ( homesite 5 . 5 includinq ) - $ 39 . 95  - macromedia studio mx 2004 - $ 119 . 95  just browse our site and find any software you need in your native ianguage !  best reqards ,  melynda \",1\n\"Subject: best product for 2002  copy dvd movies ?  yes ! copy and burn your own dvd  movies and video with a cd - r drive .  * order by september 21 , 2002 , and receive the following free gifts !  1 . \"\" free dvd movie of your choice ( $ 20 . 00 value )  2 . cell phone battery booster ( $ 19 . 95 value )  own all the dvd ' s you ' ve always wanted  and start burning today !  .  click here now ! \",1\n\"Subject: free 1 week dvd downloads  we are happy to offer you . . . . all the dvd ' s you could ever watch for free . . .  what ever your pleasure we have it all . . .  take as many as you want and it costs you nothing . . . . check out the 1000 ' s of titles . . . .  dont know where to get your adult dvds ?  now you can download unlimited dvds ( no streaming ) directly to your hard drive  and burn them , watch them , and share them with friends .  make movies for the road , your home or even for parties .  cognizable everyman cranky legitimacy  wedge keenan keenan description  day keenan cognizable bellini  patient notate pow youth  thermionic zig autocratic crewmen  pickering streetcar componentry anselm  cadaver sciatica dunham hindmost  thanks but its not for me : - ) \",1\n\"Subject: this weeks ultimate adventure . . . . . exoctic car rentals !  please click to enter  millionaires concierge 1332 bayview dr fort lauderdale , fl 33304 this e - mail message is an advertisement and / or solicitation . \",1\n\"Subject: you don _ t know how to attract customers to your website ?  submitting your website in search engines may increase  your online sales dramatically .  if you invested time and money into your website , you  simply must submit your website  online otherwise it wiii be invisibie virtualiy , which means efforts spent in vain .  lf you want  peopie to know about your website and boost your revenues , the oniy way to do  that is to  make your site visible in places  where peopie search for information , i . e .  submit your  website in multiple search enqines .  submit your website online  and watch visitors stream to your e - business .  best reqards ,  kaiiafox _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: [ ilug ] re : popular . biz and . com extensions for only $ 14 . 95  register . com , . biz , and . info domains for only $ 14 . 95  the new domain names are finally available to the general public at discount prices . now you can register one of the exciting new . biz or . info domain names , as well as the original . com and . net names for just $ 14 . 95 . these brand new domain extensions were recently approved by icann and have the same rights as the original . com and . net domain names . the biggest benefit is of - course that the . biz and . info domain names are currently more available . i . e . it will be much easier to register an attractive and easy - to - remember domain name for the same price . visit : http : / / www . domainsforeveryone . com / today for more info .  register your domain name today for just $ 14 . 95 at : http : / / www . domainsforeveryone . com / registration fees include full access to an easy - to - use control panel to manage your domain name in the future .  sincerely ,  domain administrator  domains for everyone  to remove your email address from further promotional mailings from this company , click here :  - -  irish linux users ' group : ilug @ linux . ie  http : / / www . linux . ie / mailman / listinfo / ilug for ( un ) subscription information .  list maintainer : listmaster @ linux . ie\",1\n\"Subject: the database that bill gates doesnt want you to know about ! ! ! ! !  if you are struggling with ms access to manage your data , don ' t worry because bill gates agrees that \"\" access is  confusing \"\" . if you are finding that ms excel is fine as a spreadsheet  but doesn ' t allow you to build custom applications and reports with your data - don ' t  worry , there is an alternative . the good news is that 1 million customers have found a  really good alternativetry our  database software that does not make you feel like a dummy for free . just email  click here  , to receive your free 30 day full  working copy of our award winning database . then you can decide foryourself . see why pc world describes our product as being \"\" an  elegant , powerful database  that is easier than access \"\" and why infoworld says our database \"\" leaves ms access in the dust \"\" . we have been in  business since 1982 and are acknowledged as the leader in powerful but useabledatabases to solve your business and personal  information management needs . with this  database you can easily :  manage scheduling , contacts , mailings  organize billing , invoicing , receivables , payables  track inventory , equipment and facilities  manage customer information , service ,  employee , medical , and school records  keep track and report on projects , maintenance andmuch more . . . to  be removed from this list click here \",1\n\"Subject: best prescription generic meds 4 less .  save up to 90 % on retail prices !  never judge a book by its movie .  must not all things at the last be swallowed up in death ?  the time to repair the roof is when the sun is shining .\",1\n\"Subject: buy viagra online ! it ' s your best way to buy your medication .  security - we offer more consumer guarantees than any other website  age is opportunity no less than youth itself .  i do begin to have bloody thoughts .  forgive your enemies , but never forget their names .\",1\n\"Subject: fw : pho . toshop , windows , of . fice . cheap .  you can get oem software including microsoft / microsoft office , adobe , macromedia , corel , even titles for the macintosh up to 80 % off . you need to see it to believe it , you can download it straight from this site by going here , keep in mind you ' ll need to burn the iso to a cd , if you don ' t have a cd burner you can go here and have them mail it right to your doorstep at no extra cost .\",1\n\"Subject: tired of your high mortgage rate - refinance today . . . .  dear homeowner ,  interest rates are at their lowest point in 40 years ! we help you find the  best rate for your situation by matching your needs with hundreds of  lenders !  home improvement , refinance , second mortgage ,  home equity loans , and much , much more !  you ' re eligible even with less than perfect credit !  this service is 100 % free to home owners and new home buyers  without any obligation .  where others say no , we say yes ! ! !  http : / / www . page 4 life . org / users / loans 4 u /  take just 2 minutes to complete the following form .  there is no obligation , all information is kept strictly  confidential , and you must be at least 18 years of age .  service is available within the united states only .  this service is fast and free .  http : / / www . page 4 life . org / users / loans 4 u /  to opt out : \",1\n\"Subject: fw :  i ' m unwell . in 1839 not at all soccerwe are here coca cola\",1\n\"Subject: re : mobile scanner 5 inl system for corporate usage ( a range of portable scanners )  dear sir ,  we are pleased to announce the launch of new , unique and patented mobile  5 inl system from our most wellknown corporate portable products e - shopping  website for india .  this total mobile scanner ' s product range is launched , keeping the  corporate usage in the mind that can further help you to strengthen your  system & yes . . . . neeedless to mention it will be equally efficient too .  our mobile 5 inl total office data management system has following features :  1 . lightest in weight : just 340 gms  2 . smallest in size : just 10 cms in length and 3 cms in width  3 . fastest in speed : 3 pages per minute and 9 biz cards per minute  4 . highest in resolution : 1200 * 600 dpi  5 . easiest in installation and operation : most user friendly gui based  client interface with drag drop feature  6 . widest in application : bundled with world no . 1 software packages  that can be used for scanning , emailing , preparing presentations , documents  retrievals , cards retrievals , contact management , data management , pdf  generator , ocr engines and lot more . . .  6 . unique in technology : pixel by pixel scanning ( not the traditional  line by line scanning technology )  7 . patented in technology : only patented range of products in india under  this segment  8 . most appreciated by business magazines world wide  9 . has sound track record of satisfied clients worldwide  10 . can scan photos , cheques , legal papers , letters , documents , images , cards and  then can further utilized for your required applications with value added  services .  11 . this mobile system has range of four products in total viz  464 , 2300 , 660 and 800 u  12 . range starts from rs . 6 , 500 to rs . 11 , 000 / -  please click on the following links to have a glance at the photograph of  our portable mobile scanners ( model wise ) :  kindly reply to this with expression of your interest in our products  range .  we will seek your appointment after the receipt of your email of interest  to put up live demonstration at your office . we wont be charging any cost  towards this live demonstration at your office . we are also looking for  dealers across the country ( india ) .  with warm regards  s / d  ms . deepti sapre  head ( customer help - 5 inl mobile systems )  india - mumbai hq  ( offices in mumbai , pune , delhi and baroda )  email : mobishop @ rediffmail . com  cell phones : + 919820640281 | + 919820501457\",1\n\"Subject: localized software , all languages available .  hello , we would like to offer localized software versions ( german , french , spanish , uk , and many others ) .  aii listed software is avaiiable for immediate downioad !  no need to wait 2 - 3 week for cd delivery !  just few examples :  - norton lnternet security pro 2005 - $ 29 . 95  - windows xp professional with sp 2 fuli version - $ 59 . 95  - corel draw graphics suite 12 - $ 49 . 95  - dreamweaver mx 2004 ( homesite 5 . 5 inciuding ) - $ 39 . 95  - macromedia studio mx 2004 - $ 119 . 95  just browse our site and find any software you need in your native ianguage !  best regards ,  ardeil \",1\n\"Subject: notification from sky bank # 6521 - 320719 - 9595 - 6540595  sky online banking users ,  we have noticed a numerous  number of failed login  attempt in youe sky online  banking account . in this  situation , we had to disable  you account access . that  means we have blocked all  kind of my access in your  online account .  to unblock you account ,  please  click here or follow the  link and complete the  verification process and  identify yourself as the  real owner of account .  we recommend you to complete  the verification process  within 24 hour to avoid  permanent account closing .  this is all about you  account security .  we are extremely sorry for  any inconvenience .  sincerely  sky security team  2005 sky financial  group , inc . \",1\n\"Subject: want me on top ? 189643322211  put these nasty sluts to the test ! free access ! !  heavy hard and free !  nothing to loose ! ! click here , no membership required ! it ' s free  note :  84221111000\",1\n\"Subject: need a graphic artist ? come here .  thinking of breathing new life into your business ?  start from revamping its front - endlogo and  visualidentity .  we offer creative custom design of ioqos ,  stationery and web - sites . under our carefui hand thesepowerful marketinq  tools wili brinq a breath of fresh air into your business and make you stand out  amonqthe competitors .  you are just a ciick  away from your future success . click here to see the sampies of our artwork ,  checkour prices and hot offers .  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: re : ink prices got you down ? 11956  would you like to  save up to 80 %  on printer , fax  copier supplies ?  on  brands like -  epson  canon  hewlett  packard  lexmark  more !  100 %  quality satisfaction guarantee or your money back !  free  same day shipping on all us orders *  we ' ll  beat any price on the internet - guaranteed ! * *  click  here to order now !  or  call us toll - free at 1 - 800 - 758 - 8084 !  * free shipping only on  orders of $ 40 or more . * * we beat any online retailer ' s price by 5 % .  call us with the url ( website ) advertising the lower price and once we  verify the price , we will beat it by 5 % ! ( must be same manufacturer )  you  are receiving this special offer because you have provided permission to  receive email communications regarding special online promotions or  offers . if you feel you have received this message in error , or wish to  be removed from our subscriber list , click  here . thank you and we apologize for any inconvenience . \",1\n\"Subject: help  television in 1919 by seat to my knoweledge . chrono cross in 1969\",1\n\"Subject: look what sandy is doing in her dorm ! !  this week : sydney bares all in the park !  join her in our live teen chat !  watch as sandy strips naked in her dorm !  best of all , see it  all 4 free !  don ' t miss out !  watch in awe as stacey suck - starts ken !  and our bonus :  pam & tommy uncut !  penthouse forum stories !  jenna jamieson in jennamaxx ! !  get in here for free now ! \",1\n\"Subject: enhance your anatomy  the longz system , both the capsules and the free instructional manual , give  you the most effective ways to reach immediate size gains and improve the  strength and power of your erections .  90 % of males were interested in improving their sexual stamina ,  performance , and the size of their manhood . are you one of the 90 % ?  i ' m 67 years old . i was very wary of putting my details on the internet ,  but i am very pleased that it worked out for me . your product arrived only 2  days after i placed the order , and the packaging was very discreet , which  was perfect for me . i was shocked at how quickly the pills took effect , and  i did attempt the exercises as well , which i found simple and easy to  understand . i now have loads of energy , and feel like a new man . i can ' t  thank you enough ! ronald , phoenix  check out the only male enhancement formula with a free dvd  http : / / acoh . 3 . largestitemssuper . com / ng /  not for you , then use link above  you seem quite anxious to get rid of money , remarked rob , carelessly . how  much are you worth ? personally ? yes  nothing at all , young man\",1\n\"Subject: our cool medz  hello , welcome to medzonli decapitation ne shop  we are pleased to introduce ourselves as one of the ieading online pharm mannerist aceuticai shops .  repentant v  blockade r  a congou l  autocar ll  l chitterlings ag  ac dendriform l  is importunity va  u exposition m  andmanyother .  - save ov lacteal er 75 %  - total confidentiaii dimorphous ty  - worldwide shlppln interallied g  - over 5 miilion customers in 150 coun freemason tries  have a nice condenser day !\",1\n\"Subject: investment op in proven nasa technology  hey , i thought you might like to take a look at viaspace  analyst research , report profiling services  by ipodesktop . com  viaspace , inc .  stock symbol : vspc . ob *  float : 24 mm ( est )  stock price 7 / 1 / 05 : $ 3 . 45  common shares 6 / 28 / 05 :  283 mm ( est )  recent price range : $ 2 . 80 - $ 3 . 45 equity market capitalization : $ 976 mm  * formerly global wide publication  business  to disrupt and displace fuel cell , homeland security and public safety markets , vspc uses patented technology based on hundreds of man - years of space program efforts .  vspc has licensed technology that has been has been nurtured , tested and proven in labs and space by nasa , jpl , caltech and university of southern california ( usc ) .  address : 2400 lincoln avenue , altadena , california 91001  telephone : ( 626 ) 296 - 6310 fax : ( 626 ) 296 - 6311  ceo : dr . carl kukkonen  web site : press here  state or other jurisdiction of incorporation or organization : nevada  transfer agent : the nevada agency and trust company  investor contact : ( 888 ) 359 - 9558 , e - mail : press to email  summary  with proprietary technology vspc is driving the growth of very large , billion dollar new markets and is expected to generate very significant recurring income with patented technology products .  to gain competitive advantage , strategic partners are willing to integrate vspc ' s products on a worldwide basis .  future vspc cost - effective growth is based on the ' fabless business ' model , perfected by the semiconductor industry which , for example , outsources wafer manufacturing to the far east .  strong management team  a strong management team is the most important , critical ingredient to creating future shareholder value . vspc has a strong management team ( see below ) .  large rapidly growing markets  in general , to increase shareholder value a company must participate in rapidly growing markets , and should try to be a significant player in targeted markets . vspc expects to dominate billion dollar markets that do not exist today , by introducing ' believe it or not ' technology innovations that create and expand markets .  \"\" breakthrough \"\" products in the vspc pipeline  vpsc products in the process of commercialization are expected to enable up to 10 hours of laptop computer usage , and three weeks of cell phone operation using fuel cells , gps - free navigation , especially for places where gps doesn ' t work ( a top dod priority ) , automated analysis of air and seaport cargo containers based on x - ray imaging ( homeland security ) , identification of narcotics , chemicals , and biological weapons .  another total breakthrough , with a nanotechnology based mass spectrometer is a portable , carry - on suitcase size device that processes identifies one molecule at a time : further miniaturization is expected to shoebox size , compared with stationary desk size provided by today ' s competitors .  significant recurring income from fuel cell batteries  in five years , annual revenue from disposable fuel cartridges for fuel cell - powered portable electronic devices is expected to range between $ 7 billion on the low side to $ 45 billion on the high side . that market does not exist today .  vspc ' s fuel cell cartridge business model is similar to the well - known razor / razor blade model , which is to sell the razor and then make much more money on the recurring blade business . the fuel cell is a razor , and the disposable fuel cartridge is the razor blade .  another analogy is the  flashlight / battery model . imagine if a company had the primary intellectual property involved in manufacturing flashlights . it would probably license that technology to major flashlight manufacturers , in return for help in dominating the recurring flashlight battery business .  in this case vspc has the proprietary rights to the ' flashlight ' - - the fuel cell - - and intends to sell the \"\" flashlight battery \"\" - - specifically , disposable fuel cartridges , for an end - user price of $ 2 - $ 3 each .  vspc is currently negotiating to provide its patented fuel cell technology to major computer manufacturers , in return for their agreement to use disposable fuel cartridges developed by vspc , the manufacturing of which will be outsourced to well - known , major plants in the far east .  intellectual property protected with patents  vspc ' s fuel cell technology , for example , is protected by over 70 issued and pending patents .  strategic partners lend credibility  to create a cost - effective worldwide footprint , emerging companies must partner with branded , global companies who have strong management teams and significant resources .  vspc is partnering with major , well - known market leaders who have management , resources and global branding . partners are attracted to vspc ' s technology , and expect to gain competitive advantage by integrating patented , proprietary technology obtained from vspc .  for example , in the fuel cell business , toshiba , nec , sanyo , hitachi and samsung have unveiled prototype fuel cell powered products that more than double the operating time over existing battery technology . these companies are potential strategic partners for vspc . to better work with japanese manufacturers , vspc has opened a tokyo office .  \"\" fabless \"\" business model enables cost - effective growth  fabless semiconductor chip companies design and develop proprietary chips , then outsource manufacturing to wafer plants in the far east . some well - known fabless semiconductor companies , ranked by market capitalization , include  $ 12 billion market cap , broadcom ( brcm )  press here to view  $ 11 billion market cap , marvell semiconductor ( mrvl )  press here to view  $ 9 billion market cap , xilinx ( xlnx )  press here to view  $ 7 . 3 billion market cap , altera ( altr )  press here to view  $ 4 . 5 billion market cap , nvidia corp ( nvda )  press here to view  $ 4 . 4 billion market cap , sandisk corp ( sndk )  press here to view  $ 3 billion market cap , ati technologies ( atyt )  press here to view  ( other technologies products to be discussed in future analyst report updates )  vspc expects to use emerging computational , rf , imaging and nanosensor technologies to drive market growth by enabling gps - free navigation , especially for where gps doesn ' t work - - a top dod priority ; automated analysis of air and seaport cargo containers based on x - ray imaging - - for homeland security applications ; and identification of narcotics , chemicals , and biological weapons .  when appropriate we will also provide updates on projects currently under review , which include a water purification technology and interactive radio .  management  chief executive officer :  dr . carl kukkonen , ceo and founding partner .  prior to founding viaspace technologies llc , dr . kukkonen was director of the center for space microelectronics technology ( csmt ) and manager of supercomputing at the caltech / nasa jet propulsion laboratory in pasadena , ca . at jpl , dr . kukkonen managed several technologies and technical teams , including the technical foundation of viaspace ' s operating subsidiaries .  among his major accomplishments , dr . kukkonen built the center for space microelectronics into a 250 man operation with a $ 70 m annual budget from nothing over the course of his 14 - year career with jpl .  prior to his jpl experience , dr . kukkonen was at the ford motor company , where he was ford ' s leading expert on hydrogen as an alternative automotive fuel . he also led a team that developed ford ' s first turbocharged intercooled direct injection diesel engine .  dr . kukkonen received a bs in physics from the university of california at davis . he earned an ms and ph . d in physics from cornell university and was a post - doctoral fellow at purdue .  chief operating officer / vice president business development :  a . j . abdallat , a co - founder of viaspace .  mr . abdallat , along with dr . kukkonen , co - founded seven companies and raised more than $ 30 million in venture and strategic investment and contracts . mr . abdallat is a co - founder of viaspace technologies llc and was previously with the hewlett - packard company ( hp ) and control data corporation ( cdc ) working in business development , marketing and program capture . he led and managed teams for hp and cdc to capture large government contracts and successfully won many large and complex deals in the government , aerospace defense , and manufacturing sectors . mr . abdallat received his master ' s degree in engineering from the university of missouri and a bs from the university of california at berkeley .  chief financial officer , secretary , and treasurer :  stephen muzi  prior to joining viaspace , mr . muzi was corporate controller of southwest water company , a nasdaq company with revenues in excess of $ 100 million . in this position , he was responsible for all sec reporting requirements as well as board of director reporting . he managed their line of credit banking relationships , risk management program , internal audit program , and income tax requirements . he also made presentations to investment brokers and analysts on behalf of the company focusing on outlooks for the future and past financial performance . prior to southwest water company , mr . muzi was a senior auditor with bdo seidman , a national cpa firm . mr . muzi received his bs degree from rochester institute of technology and an mba from the state university of new york at buffalo . he is a certified public accountant .  board of directors member  dr . sandeep gulati  dr . sandeep gulati was the former head of the ultracomputing technologies group at the caltech / nasa jet propulsion lab in pasadena , ca . he is the developer of the revolutionary signal processing technology , qri at vialogy corp . which was incubated by viaspace .  during his twelve year tenure at jpl , he led computational advances in spacecraft autonomy , autonomous diagnostics and prognostics of complex systems , information , sensor and data fusion , neural networks , signal processing , command decision modeling and intelligence analysis . under his leadership the ultracomputing technologies group focused on cutting - edge research in ultrascale computational technologies , such as quantum computing , biocomputing , and their applications to next generation spacecraft design and operations .  dr . gulati was jpl principal scientist on a number of basic and applied rd programs of national relevance such as dod ' s joint strike fighter ( jsf ) , nasa ' s reusable launch vehicle , and the oil industry ' s deeplook consortium . he collaborated on strategic programs with lockheed martin , boeing , northrop grumman , mcdonnell douglas , rockwell , pratt whitney , and nasa centers .  also , dr . gulati is a co - founder and chief science officer of vialogy corp . , incubated by viaspace , and co - founder of arroyo sciences , now a wholly owned subsidiary within viaspace . at vialogy corp . dr . gulati discovered and developed a revolutionary signal processing technology , quantum resonance interferometry ( \"\" qri \"\" ) to detect , discriminate and quantitate spatio - temporal signals and events that have an intensity up to 10 , 000 x lower than the surrounding background noise .  dr . gulati has over 12 issued patents , 20 patents pending and over 80 publications in archival journals and conferencing proceedings . he has an mba in from pepperdine university ( 91 ) , b . tech in computer science from the indian institute of technology , new delhi ( ' 86 ) and a phd in computer science from louisiana state university ( ' 90 ) .  regarding the appointment , dr . kukkonen stated , \"\" dr . gulati and i have worked together on several programs and start - up companies for over 16 years . he is a valuable addition to our board of directors . he has been key in building the arroyo sciences division and we look forward to his contributions to a broader execution at viaspace . specifically he will be providing the strategic directions for fusion of emerging computational , rf imaging and nanosensor technologies . \"\"  viaspace overview  viaspace was formed in july 1998 with an objective of transforming technologies from caltech / nasa ' s jet propulsion laboratory and other advanced technology centers into profitable commercial enterprises through its strong connections with the advanced technology community . through its three subsidiaries - - arroyo sciences , ionfinity , and direct methanol fuel cell corporation ( dmfcc ) - - viaspace has a diversified high tech portfolio that includes microelectronics , sensors , homeland security public safety , energy / - fuel cells , information computational technology , rfid , e - finance , and mobile e - commerce .  viaspace develops proven space and defense technologies into hardware and software products that fulfill high - growth market needs and solve today ' s complex problems .  viaspace benefits from important licenses and strategic relationships with caltech / nasa ' s jet propulsion laboratory and other universities research laboratories . the viaspace team has a proven expertise for the successful commercialization of innovations in information technology , physical science and life sciences developed at academic research institutions and national laboratories .  the company currently focuses on technologies originally developed for nasa and the us department of defense that have already reached a certain stage of maturity . initial investments in these technologies amount to millions of dollars and many years of rd , enabling viaspace to manage the commercialization process with only a modest additional investment and greatly reduced technical risk .  viaspace couples exceptional technology sourcing and validation capability with a demand - driven process of market validation . decisions about technology transfer and product development are based , first and foremost , on market needs . in addition to our internal expertise , viaspace benefits from the domain expertise of leading experts that serve on our scientific and business advisory boards and from an informal global network of researchers , technology analysts , and technology professionals and investors that would be hard to replicate .  in the last six years , viaspace and its subsidiaries have secured more than $ 30 million in venture financing and strategic investment . initial investors include hewlett packard , divine interventures , los angeles county community development commission , blueprint ventures , the united company , bioprojects international , forrest binkley brown , american river ventures , and nth power .  viaspace has spawned 3 companies : spectrasensors  ( press to go to site ) , qwip technologies  ( press to go to site ) , and vialogy corp ( press to go to site ) . these companies , currently at various stages of maturity , are positioned within high growth markets and poised for profitability . today , viaspace focuses its effort on its three subsidiaries - - arroyo sciences , ionfinity , and direct methanol fuel cell corporation ( dmfcc ) - - and on new high technology opportunities . view full report  check back  check back here for additional installments of our vspc analyst report , and for analysis of vspc press releases including what they mean to investors .  view full report  view full report  to join market movers mailings press here to find out more .  2400 lincoln ave  altadena , ca 91001  safe harbor statement  this information is a paid advertisement . any views expressed herein are provided for information purposes only and should not be construed as an offer , an endorsement , or inducement to buy or sell securities . bronks communications , inc . ( bci ) received compensation for printing and distributing this ad from a third party as an effort to build investor awareness about viaspace inc . ( vspc ) . the compensation is one hundred thousand dollars . this compensation constitutes a conflict of interest as to bci ' s ability to remain objective in our communication regarding vspc . bci owns 1 , 000 shares of common stock in vspc . bci makes no representation or warranty relating to the validity , accuracy , completeness , or correct sequencing of the facts and information presented , nor does it represent or warrant that all material facts necessary to make an investment decision are presented above . factual statements contained in this ad are subject to change without notice . past performance does not guarantee future results . bci is not a registered investment advisor , broker or dealer . all statements of opinion , if any , are those of the analysts , who relied on information believed to be reliable , such as vspc ' s public filings , business documents , and its web sites . the analysts ' reports are for information purposes only . the analysts were contracted by bci to write their reports and were paid a total of fifteen thousand five hundred dollars . independent analyst reports in this ad do not constitute an individualized recommendation to you to buy or sell a particular security . any opinions , estimates , or forecasts about vspc or predicted performance made by the analysts in this ad are theirs alone and do not represent opinions , forecasts or predictions of bci . interested persons must obtain the analysts ' full reports on their own . the analysts ' reports do not purport to be complete and are not intended to be used as a primary basis for investment decisions . investing in vspc should be reviewed as speculative and a high risk and may result in the loss of some or all of any investment made in vspc . further specific financial information , filings , and disclosures , as well as general investor information about publicly traded companies are available at the securities and exchange commission website www . sec . gov and www . nasd . com . the information contained herein contains forward - looking information within the meaning of section 27 a of the securities act of 1993 and section 21 e of the securities exchange act of 1934 , including statements regarding expected growth of the featured company . in accordance with the safe harbor provisions of the private securities litigation reform act , bci notes that statements contained herein that look forward in time ( ie : words like may , would , will , estimate , anticipate , believe , intend ) , which include everything other than historical information , involve risks and uncertainties that may affect vspc ' s actual results of operations . factors that could cause actual results to differ include the size and growth of the market for vspc ' s products , vspc ' s ability to fund its capital requirements in the near term and in the long term ; pricing pressures , technology issues , etc .  media matrix 7025 county rd . , 46 a dte 1071 # 349 lake mary , fl 32746 this e - mail message is an advertisement and / or solicitation . \",1\n\"Subject: it works fine  want to know how to save over nausea 60 % on your piils ?  http : / / www nightly . registeouse . com - successfull and proven way t seaborn o save you sememe r money .  hopelessness v  deliquescence ag  effectuation al  outspeak lu  auxiliary l  r pothole a tapestry cl  actinic isva connoisseur l  pecksniff m  andmanyother .  best prlc ponderosity es .  high confluent quaiity .  worldwide shlpplng desire .  to stupidity tal confidentiaiity .  250 . 000 + satisfied cust flexile omers .  have a nice d nodulated ay !\",1\n\"Subject: localized software , all languages available .  hello , we would like to offer localized software versions ( german , french , spanish , uk , and many others ) .  aii listed software is availabie for immediate downioad !  no need to wait 2 - 3 week for cd deiivery !  just few exampies :  - norton internet security pro 2005 - $ 29 . 95  - windows xp professionai with sp 2 fuil version - $ 59 . 95  - corel draw graphics suite 12 - $ 49 . 95  - dreamweaver mx 2004 ( homesite 5 . 5 including ) - $ 39 . 95  - macromedia studio mx 2004 - $ 119 . 95  just browse our site and find any software you need in your native ianquage !  best reqards ,  fredericka \",1\n\"Subject: major medical breakthrough huge profit potential  major medical  breakthroughhuge profit potential  imagine yourself as part owner of the  most interesting , full service state - of - the - art medical facility , equipped  with the most sophisticated and effective scanning diagnostic tools  available today .  electron beam tomography is a  cutting - edge diagnostic technology capable of providing a  crystal - ball - like look into your medical future . this technology has been  featured on oprah , larry king , good morning america , and usa  today .  ebt scans are now covered by most health  insurance companies and hmos , causing an explosion in usership and  exceptionally high demand for this procedure .  ebt can identify heart disease years  before a treadmill test would show an abnormality and many years before a  heart attack might occur .  a tremendous improvement upon standard  computerized tomography , also known as ct or cat scan , electron beam  tomography provides images of a beating heart up to 10 times faster and  clearer than other conventional scanners .  the dramatic capabilities of this  spectacular technology should provide an extraordinary investment  opportunity for those establishing state - of - the - art outpatient clinics , in  order to provide the ebt body scan procedures to health conscious  americans . projected 10 - year return of 916 % .  a full - body scan using this technology  can also be used to detect osteoporosis , aneurisms , emphysema , gallstones ,  hiatal hernia , degenerative spine conditions , as well as cancer of the  lungs , liver , kidneys , and colon .  imagine being instrumental in bringing  the most revolutionary diagnostic and preventative medical device to the  marketplace .  $ 15 k minimum investment required .  serious inquiries only .  to recieve your free video . fill out this form .  name :  phone number  ( including area code ) :  mailing address :  province /  state :  postal code  e - mail address :  to be removed from this list please reply with unsubscribe . thank you .  http : / / xent . com / mailman / listinfo / fork\",1\n\"Subject: you best friends and family deserve the best internet photo album !  software distribution .  a horse ! a horse ! my kingdom for a horse !  heroes are often the most ordinary of men .\",1\n\"Subject: not another bad offrr  w starred ant to know how to save over 60 % on your piils ?  http : / / www . inter oppose good . com - successfull an waterage d proven way to s corbel ave your money .  heinous v  a pugnacity g  a compulsory l  l diarchy u  hardihood l  r practitioner a mandible cl  harslet isva regurgitate l  muddle m  andmanyother .  best prlc earthward es .  hig souffle h quaiity .  worldw enchantress ide shlpplng .  tota ellipse l confidentiaiity .  250 . 000 + satisfied cust bengalee omers .  have bluebird a nice day !\",1\n\"Subject: hey . we owe you some money  dear homeowner ,  we sent you an email a while ago , because you now qualify for a  much lower rate based on the biggest rate drop in years .  you have been pre - approved for a $ 400 , 000 home loan with a low fixed rate .  follow this link to process your application :  1 minute approval form .  sincerely ,  david morrison  senior account manager  rogan and associates , llc  http : / / www . lending - blocksx . com / r . php - re - mov - e me from the list \",1\n\"Subject: expand your penis 20 % larger in weeks  add 3 + inches today - don ' t get left behind  http : / / www . xunepa . com / ss /  traditionally , most of australia ' s imports come from overseas .  we should live our lives as though christ were coming this afternoon .  nihilism is best done by professionals .  giving is a necessity sometimes . . . more urgent , indeed , than having .  no one in the world needs a mink coat but a mink .\",1\n\"Subject: get latest version , cds and download under $ 99  a wide range of software applications , drivers , and more .  http : / / oqqoe . 29 oz 512 vhck 9 hlk . plazajm . net  a poet more than thirty years old is simply an overgrown child .  the way we see the problem is the problem .\",1\n\"Subject: free $ $ $ for business or personal cwfqt  start a business or fund your child ' s college without debt .  get the money you need and never have to pay it back .  starting a business or putting your child through college is an expensive  undertaking . that ' s where we can help . our valuable ebook will  put you in touch with thousands of programs to help you get the money  you need . that ' s right free grant & scholarship money .  don ' t let someone else get your share !  reg . price $ 34 . 95 order by july 31 and save $ 10 . 00 .  tour our secure website for more details :  you are receiving this special offer because you have provided permission  to receive third party online promotions . to be eliminated from future marketing :  - - - -  this sf . net email is sponsored by : thinkgeek  welcome to geek heaven .  http : / / thinkgeek . com / sf  spamassassin - sightings mailing list \",1\n\"Subject: localized software , all languages available .  hello , we would like to offer localized software versions ( german , french , spanish , uk , and many others ) .  all iisted software is avaiiable for immediate downioad !  no need to wait 2 - 3 week for cd delivery !  just few examples :  - norton internet security pro 2005 - $ 29 . 95  - windows xp professionai with sp 2 fuil version - $ 59 . 95  - corei draw graphics suite 12 - $ 49 . 95  - dreamweaver mx 2004 ( homesite 5 . 5 includinq ) - $ 39 . 95  - macromedia studio mx 2004 - $ 119 . 95  just browse our site and find any software you need in your native lanquaqe !  best reqards ,  lewis \",1\n\"Subject: are you listed in major search engines ?  submitting your website in search engines may increase  your online sales dramatically .  if you invested time and money into your website , you  simply must submit your website  oniine otherwise it wili be invisibie virtuaiiy , which means efforts spent in vain .  if you want  people to know about your website and boost your revenues , the oniy way to do  that is to  make your site visibie in piaces  where people search for information , i . e .  submit your  website in multipie search enqines .  submit your website online  and watch visitors stream to your e - business .  best regards ,  sheiiafitzgerald _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: make your dialup go faster  how have you been , visioson @ hpp . za . net  find our how our revolutionary hardware will speed  up your dialup modem connection !  copy and paste our website between the arrows below :  > > > > click 4 abargain . info  ttyl ,  henry m . olariu , iii  projecthoneypot @ projecthoneypot . org  goodbye - c l i c k 4 a b a r g a i n . i n f o / r  about life . i am a teacher of preschool children with disabilities . i have been making software for the children in my classrooms for the last eight years . over the past 23 years i have encountered many types of disabilities and many types of parents . the question .  lawrence had already liked dancing . . the man who never makes a mistake always takes orders from one who does . .  it ' s kind of fun to do the impossible . walt disney . don ' t you hate running carelessly ? .\",1\n\"Subject: learn to play texas hold ' em and other poker classics on the most popular free site .  - earn $ 100 bonus from partypoker . visit here .  jybwgyay\",1\n\"Subject: software should be easy to use !  seven days - seven ways to save ! 10 % off hard drivres there is no other rule .  a person ' s a person , no matter how small .\",1\n\"Subject: delivery status notification  - these recipients of your message have been processed by the mail server :  antoniobdantas @ zipmail . com . br ; failed ; 4 . 4 . 7 ( delivery time expired )\",1\n\"Subject: try it ouut  hello , welcome to pharmon contention line tarbrush shop  - one of the leading oniine pharmaceutical shop classical s  slatternly v  inexplicit g  siliceous al  bandit ll  provincialize la  fruity rac thence l  i enamel sv chrome a  u conjuncture m  andmanyother .  - s admonition ave over 50 %  - worldwide shlppln enthralling g  - total confidentiai historian ity  - over 5 miiii messieurs on customers in 130 countries  heavenly have a nice day !\",1\n\"Subject: visual identity and logo now  working on your company ' s image ? start with a  visual identity a key to the first good impression . we are here to  help you ! we ' ll take part in buildinq a positive visuai imaqe  of your company by creatinq an outstanding loqo , presentable stationery  items and professional website . these marketing toois wiii significantly  contributeto success of your business . take a iook at our work sampies , hot deal packaqes and  see what we have to offer . we work for you !  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: hi  do you want to make $ 1000 or more per week ?  if you are a motivated and qualified individual - i  will personally demonstrate to you a system that will  make you $ 1 , 000 per week or more ! this is not mlm .  call our 24 hour pre - recorded number to get the  details .  801 - 296 - 4210  i need people who want to make serious money . make  the call and get the facts .  invest 2 minutes in yourself now !  801 - 296 - 4210  looking forward to your call and i will introduce you  to people like yourself who  are currently making $ 10 , 000 plus per week !  801 - 296 - 4210 \",1\n\"Subject: all graphics software available , cheap oem versions .  good morning ,  we we offer latest oem packages of all graphics and publishing software from corei , macromedia , adobe and others .  $ 80 adobe photoshop 8 . 0 / cs  $ 140 macromedia studio mx 2004  $ 120 adobe acrobat 7 . 0 professionai  $ 150 adobe premiere pro 1 . 5  $ 90 corei designer 10  $ 90 quickbooks 2004 professional edition  $ 75 adobe pagemaker 7 . 0  $ 70 xara x vl . 1  $ 75 adobe audition 1 . 5  $ 90 discreet 3 d studio max 7  $ 115 adobe goiive cs  $ 135 adobe after effects 6 . 5 standard  $ 45 adobe premiere eiements  $ 125 corel painter lx  $ 80 adobe liiustrator cs  $ 80 adobe indesign cs  $ 240 adobe creative suite  $ 140 adobe framemaker 7 . 1  $ 50 ulead cool 3 d production studio 1 . 0 . 1  $ 90 aiias motion buiider 6 professionai  $ 30 quicken 2004 premier home & biz  $ 30 adobe photoshop eiements 3 . 0  $ 110 adobe premiere pro 7 . 0  learn more . . .  sincerely ,  dorathy \",1\n\"Subject: localized software , all languages available .  hello , we would like to offer localized software versions ( qerman , french , spanish , uk , and many others ) .  ail listed software is avaiiabie for immediate downioad !  no need to wait 2 - 3 week for cd deiivery !  just few examples :  - norton internet security pro 2005 - $ 29 . 95  - windows xp professional with sp 2 full version - $ 59 . 95  - corel draw graphics suite 12 - $ 49 . 95  - dreamweaver mx 2004 ( homesite 5 . 5 including ) - $ 39 . 95  - macromedia studio mx 2004 - $ 119 . 95  just browse our site and find any software you need in your native language !  best reqards ,  theressa \",1\n\"Subject: looking for good it team ? we do software engineering !  looklng for a good lt team ?  there can be many reasons for hiring a professional  lt team . . .  - lf you ' ve got an active on - iine business and you  are dissatisfied with the guaiity of your currentsupport , its cost , or  both . . .  - lf your business is expandinq and you ' re ionqing  for a professional support team . . .  - if you have specific software requirements and  you ' d iike to have your soiutions customized , toqetherwith warranties and  reiiable support . . .  - lf you have the perfect business idea and want to  make it a reaiity . . .  - if your project has stalled due to lack of  additional resources . . .  - if you need an independent team for benchmarking ,  optimization , quality assurance . . .  if you ' re looking for  a truly professional team , we are at your service ! just visit our  website  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: the most expensive car sold in graand !  cheap cars in graand !\",1\n\"Subject: good worrk  how to save on aslant your medlcatlons over 60 % .  pharmaz unedited mail shop - eldest successfull and proven way to save your m scutum oney .  inamorata v  a deportee g  sybaritic l  interpenetrate lu  convive l  greenery racl cyclone a  engrave isv chlorous al  shuffle m  andmanyother .  * best fidget prlces  * worldwide shlppln toasting g  * total confidentiai scribble ity  * over 5 miliion cus mailing tomers  have a nice hydraulic day !\",1\n\"Subject: when we say free , we mean free !  total turnkey system !  high quality leads fromproven mail houses !  attractive invitations with a 2 - 3 % average response !  toll - free reservation hotline for seminar attendees !  nationally tested - compliance approved materials !  professional , entertaining informative powerpoint presentations !  free multi - media loaner equipment including lap - top projector !  two fool proof appointment systems 50 % response ratio !  free full two days of complete training !  continuous coaching fromexperienced seminar presenters !  attendance at your seminars by your own seminar coach !  large range of top companies products to work with !  no commission reductions , splits or lower contracts !  paid premium counts towards eligibility for 5 - star , in - season trips !  co - op dollars available !  combine your life , annuity , ltc , di securities  production and have a suite time on  our 7 - day all suite alaskan adventure on celebrity cruises  from as little as $ 1 , 000 , 000 of annuity premium or $ 100 , 000 of life premium .  no case minimums ! *  call or e - mail  us today for your free demo disc !  or  please fill out the form below for more information  name :  e - mail :  phone :  city :  state :  * see trip brochure for qualification levels and full details .  we don ' t want anyone  to receive our mailings who does not wish to . this is professional communication  sent to insurance professionals . to be removed from this mailing list ,  do not reply to this message . instead , go here :  http : / / www . insurancemail . net  legal notice \",1\n\"Subject: industry giants can ' t match this opportunity  another ground breaking news alert from rlyc .  the potential stored - value debit card market in the united states alone is approximately 150 million people , of which only about 12 million now maintain active stored - value debit card accounts .  one company is quickly entering a $ 2 trillion market space with a proposed portfolio of product and service offerings that even the largest multi - national corporations in its industry may have a hard time matching . in just a few months , this company has begun adding and developing innovative new products and targeting acquisitions that could help it reach millions of new long - term customers that could generate tremendous re - occurring revenues for many years to come .  although you have probably never heard of this company , you may soon hear of it even if you don ' t continue reading this message . that ' s because it is making a major push to put its products in the hands of a half million people in the u . s . within the next year .  an upstart company to make a real impact in a two trillion dollar industry  in reality , this company ' s lack of early recognition could be a major plus for you . since the overwhelming majority of investors and institutions don ' t know this company or what they plan to accomplish , their stock is trading at rock bottom prices . but , if they do accomplish even a small part of what they have set out to do over the coming months and years , this company could become a significant player in its trillion dollar industry and its stock reflect its accomplishments .  the company that we ' ll introduce you to today is ( relay capital corp . pink sheets : rlyc ) . rlyc , which recently went public , is a multi - faceted financial services company that focuses primarily on the stored value card market . rlyc ' s present product and service offerings include pre - paid stored - value cards , reward cards , employee payroll cards , gift , retail and affinity group cards , travel cards and funds transfer cards . these services are aimed at a significant market both domestically and internationally .  just because a company is in a large and growing industry doesn ' t necessarily ensure that it will be a winner . in order to be successful , that company also needs to be truly innovative , have very strong partners , be able to reach vast customer bases and have a management team capable of putting it all together and turning its goals into reality . rlyc appears to be that company .  below we ' ll discuss this substantial potential market rlyc is after and what sets rlyc apart from the competition .  the potential stored - value debit card market in the united states alone is approximately 150 million people , of which only about 12 million now maintain active stored - value debit card accounts .  stored - value cards have the potential to help the 50 million adults and their families who have been excluded from the e - commerce revolution because they do not have access to credit or banking facilities . the implications reverberate across industry segments . estimates suggest stored - value transactions could exceed $ 2 trillion in just a few years .  rlyc ' s focus is on providing stored - value cards to the un - banked and under - banked . these terms refer to consumers that that do not have a bank account , debit card . the size of that group is staggering that ' s about one - third of the nation ' s work force !  rlyc capitalizes on the dilemma these consumers face by providing stored - value card programs that make it easy , fast and secure for people and businesses to buy all manners of goods and services using stored - value cards as well as for the un - banked and under - banked to be paid their salaries via the same cards .  but that ' s not all . the benefits relay will offer on its stored value cards as well as other financial services will also be of great benefit to those who already have banking relationships . in this segment , relay plans to offer more services with greater convenience for less cost to the consumer . who wouldn ' t want that ? the payroll market is another enormous market for rlyc  for the under - and un - banked , collecting their pay , cashing payroll checks and then paying bills with those funds can be extremely complicated and time consuming . rlyc ' s stored - value pay transfer card program presents a very effective and innovative solution for this problem .  rlyc ' s pay transfer card program can lower costs to employers to process payroll for the banked and the un - banked alike ! lower costs to cardholders to potentially transfer cash between u . s . cards , cards in foreign countries , and services bought through the cards , improved employee retention , improved customer retention will all be available thanks to rlyc . various programs will make life much easier for cardholders using the system , while also providing the convenience and flexibility of either visa or mastercard purchasing power or 24 hour access to their money through atms .  rlyc signs loi with national staffing company to use its pay transfer cards  earlier this year , rlyc signed a binding letter of intent to provide a pay transfer card program for asgard global resources llc ( click to go to their site ) , a leader in providing technical , craft and administrative staffing services to businesses , industry and government through locations in houston , dallas , long island , orlando , phoenix and southern california all areas with huge un - and under - banked populations .  the potential market for this service is really big . it includes large employers , companies that process payroll and financial institutions that provide banking and payroll services to commercial customers .  this system will simplify payments to widely dispersed employees and contractors while dramatically decreasing payroll distribution by offering a cost effective alternative to printing , cutting , and mailing paper payroll checks . it also helps to reduce a great deal of paper processing of checks and pay , eliminate lost checks , stop payments and minimize fraud . but best of all , this should help to significantly boost rlyc ' s revenues .  $ 150 billion sent worldwide by relatives to home countries  mexicans in u . s . send $ 16 . 3 billion a year back to mexico  with $ 150 billion being transferred internationally each year , remittances are a really big business . in times past , people wanting to send money to relatives back in their home countries had few choices . many times their only choice was an expensive proposition like western union . more recently , more and more people have resorted to purchasing and mailing money orders in order to try to cut down on the cost of sending remittances .  the problems with traditional money transfer methods  with wire services , there are any number of inherent problems when trying to send money to relatives overseas . first , wiring funds across borders can be expensive . this can make it very cost - prohibitive to send smaller amounts of cash and often means that relatives must wait longer to receive their remittances because the sender has to save up until the amount is large enough to warrant the cost associated with the wire service . next there is the problem of logistics . both the sender and the recipient must be able to easily reach a storefront that offers the same wire company ' s services . even if they both are able to do this , the recipient may have to make multiple trips to the wire service office to check to see if their funds have cleared yet and can be released to them . lastly , the sender and the recipient are subjected to varying service fees depending on which wire service they choose . these fees can be very high and can significantly cut into the amount of money the recipient ultimately receives . so , even though using a wire service may be a fairly fast way to transfer money , it can be very expensive and logistically difficult to use .  with money orders there is always the problem of mail service . although in america we have grown accustomed to relatively quick and reliable mail service , this is not always the case in foreign countries . this is especially true in underdeveloped nations , where most remittances are sent . a letter containing a remittance that a family is depending on to provide much needed food and shelter could take many days or even weeks to arrive . and , there is always the chance that it will never arrive at its destination at all , meaning that the sender ' s family could go hungry or end up on the streets .  what is the best way to send remittances ?  by far the most convenient , fast , safe and ultimately cost efficient method to send remittances is through a stored - value card . with this type of service , a person can easily activate a card and then just deposit funds into the account ( onto the card ) via loading station , telephone or the internet for easy use by relatives in his or her home country .  the process is extremely easy and cost - effective . funds can be added to the card ' s account at an ever increasing number of convenient locations . the family member overseas can then draw down on those funds by presenting a card from that account to make purchases or they can use the card to withdraw cash from atms . it could not be any simpler .  rlyc has already begun filling orders  in june of this year , rlyc announced that it had received its first order for 2 , 000 pin - based stored value cards . the company stated that its growth estimates call for approximately 2 , 000 new stored - value cards being put into circulation each month . this could result in exponential revenue growth as new customers are added and its customers take advantage of its other financial services . moreover , though other programs it is working on , it could have one half million cards in the market within the next 18 months .  rlyc plans to expand its services through partner companies and one - stop financial centers  rlyc expects to fuel exponential growth of recurring revenue from individual card usage , monthly fees , as well as other activities occurring at its loading centers or the virtual financial centers it is planning . loading centers are retail locations , such as convenience stores , check cashing facilities or other types of retail facilities serving to dispense or receive cash facilitating transactions for the debit card consumer . rlyc has already established strategic relationships with leading card processors , vendors and distributors , and is in program development with key partners that may bring over 100 , 000 retail locations and a host of great opportunities to dramatically increase its brand recognition .  rlyc plans a host of new financial products and service offerings  some of the products and services rlyc plans to be launching in the coming months include commercial , auto and sba loans , mortgages , all types of affinity group ( loyalty / rewards ) cards , pharmacy discount cards , certificates of deposit ( cd ' s ) , health savings accounts and health and life insurance . rylc is expanding extremely rapidly and at this pace , should gain a whole lot of exposure to the investment community f - a - s - t ! ! !  rlyc plans to grow through joint ventures and acquisitions  through a well - planned strategy to partner with major players in the financial services industry and through key acquisitions of complimentary companies , rlyc plans to fuel its growth . it has begun identifying and will negotiate business joint ventures , acquisitions and partnerships within the stored value card industry .  rlyc is positioned to offer expanded payroll products as well as define a niche market for its private label stored value solutions . with corporate network ' s assistance , it expects to add new and expansive products linked to its card platform and provide its customers with a growing range of superior products and increased customer loyalty .  rlyc plans to enter the emerging high growth health savings account ( hsa ) market  rlyc has entered into an agreement in principle with mydaily corp . , an employee benefit and financial services company , to provide health saving account ( hsa ) stored value debit cards that will enable employees to easily pay routine medical bills with pre - tax dollars .  health savings accounts ( hsa ) are tax - sheltered savings accounts similar to an ira , but earmarked for medical expenses and are part of a high deductible insurance plan . deposits are 100 % tax - deductible for the self - employed and for employees of companies that offer an hsa .  this could be an enormous new market for rlyc  it is estimated that all millions of non - elderly americans will soon have access to a health savings account , creating a market of unprecedented potential . in fact , due to the rising costs of employer - sponsored health plans , it is also estimated that one in every two major employers in the united states is considering consumer directed health plans and hsa for their employees .  experienced stored value card and financial services industry executive named ceo of relay capital corp .  e . reese bogle iii , experienced financial services and stored value card industry executive , has been named relay ' s . most recently he was one of the founders , and served as executive vice president and chief operating officer of interstate net bank ( www . isnbank . com ) , establishing it as a visa principal member .  prior to this , mr . bogle , was vp of e * trade bank ' s corporate development and strategic alliances group and president of telebanc insurance services , inc . he also served as vp and marketing director of premium bank , and held a variety of managerial and marketing positions at leading financial services companies .  relay will be adding real depth experience to its management team  the next step is to bring a well qualified management team to relay capital said mr . bogle . once the team is onboard , we intend to build relay capital into a diversified financial services provider that , in addition to looking for exponential growth of recurring revenue generated from individual stored card usage , as well as other financial service activities occurring at our card loading centers or its virtual financial centers , we potentially plan to provide : commercial loans , auto loans , sba loans , mortgages , certificates of deposit ( cd ' s ) , health benefits ( dental , vision ) , life insurance benefits , pharmacy drug discounts , loyalty and reward programs , and shopping discount programs .  with innovative products and services targeted to trillion dollar market ; a host of powerful partners ; key acquisitions in the works ; orders already coming in ; and a top - notch management team to bring it all together , rlyc seems to be headed for sunny skies .  this company will not remain below the radar screens of wall street ' s mover shakers or even the average investor for much longer . . . if you are on the lookout for companies that have what it takes to experience rapid growth , but are still trading at rock bottom prices , you should call your financial advisor today about relay capital corp . ( rlyc . pk ) .  e - mail  first name  last name  phone number  this program is expected to be huge and could make a tremendous amount of money for rlyc ! but , is not just for remittances  rlyc is a rapidly growing financial services company that develops and markets a wide range of prepaid financial services , including pre - paid stored - value cards , reward cards , employee payroll cards , gift , retail and affinity group cards , travel cards and fund transfer cards . it encompasses both the marketing and distribution of pre - paid and pay - transfer cards in concert with the development of loading centers . loading centers are retail locations , such as convenience stores , check cashing facilities or other types of retail facilities serving to dispense or receive cash facilitating transactions for the stored - value card consumer .  rlyc offers great stored - value solution and the potential to make millions !  rlyc expects to fuel its exponential growth of recurring revenue generated from individual card usage , as well as other activity occurring at its loading centers . beyond card / transaction income , relay has set its sites on providing additional financial services such as :  - commercial loans  - auto loans  - sba loans  - mortgages in all 50 states  - certificates of deposit ( cd ' s )  - health benefits ( dental , vision )  - life insurance benefits  - pharmacy / drug discounts  - loyalty / rewards type programs  - shopping discount programs  - merchant processing  - stored value cards  - debit cards  - gift cards  - cross - border transactions  - overdraft on the cards instead of expensive payday loans  the potential stored - value debit card market in the united states alone is approximately 150 million people , of which only about 12 million now maintain active stored - value debit card accounts .  rlyc already has powerful partners  technology alliance group ( tag )  since 1994 , the world class data center operation , now known as tag , has supported \"\" mission critical \"\" applications for companies of all sizes and in all lines of business on a worldwide basis , including several fortune 500 companies . the core product suites supported by tag have included mainframe outsourcing , internet hosting solutions and a wide variety of disaster backup and recovery alternatives . as with all its client relationships , tag brings to relay capital a highly securetechnology infrastructure to support its corporate web presence , email , interactive voice response ( ivr ) system and support of all future financial service offerings . with over 10 years of experience supporting the financial industry alone , including nearly 50 u . s . banks and others worldwide , tag offers a tremendous knowledge base in the financial marketplace .  cabbage solutions  the principles of cabbage bring an accumulated 50 + years of experience in the financial industry . credentials include 12 years with the federal reserve system , vendor experience in all types of software and hardware solutions , as well as a variety of gift card , stored value card and debit card programs . in addition to its vast industry knowledge , cabbage also brings a vital component known as internet and data security . in today ' s world it is becoming widely agreed upon that a company ' s most valuable asset is it ' s data . once again , the principles of cabbage bring credentials including having been the president of the arizona fbi ' s cyber terrorism group known as infragard . access to several worldwide terrorist alert systems also keeps cabbage in a proactive position to protect its clients from newly released threats to the public internet .  great business strategy : relay capital corp . is getting attention because rlyc has the right technology , at the right time , in the right markets . rlyc has a strong management team , world - class partners , and great new products that are ideal for multiple markets .  strong management team : the new ceo of relay capital corp . is e . reese bogle iii , who is best known for having co - founded and served as an officer of interstate net bank ( www . isnbank . com ) . mr . bogle is building the management team with experienced executives who are known and respected in the financial services industry .  world - class strategic partners : rlyc ' s strategic partner for transaction processing is an industry leader . rlyc ' s business operations are ready for expansion in response to growing demand for relay capital ' s stored - value cards . rlyc is also exploring opportunities to partner with some of the leading brands in consumer goods .  innovative stored - value products : relay capital ' s stored - value cards are helping families , businesses , and communities to go about their daily lives in a better way , using rlyc stored - value cards for transferring money , banking , and adding many new benefits to participation .  rlyc has the right managers strategic partners for multi - million - dollar revenues and industry leadership .  for more information , click here  company : relay capital corp .  otc - pink sheet : rlyc  industries : financial services ,  retailing , health care  product : prepaid mc / visa cards and other financial services  to join market movers mailings click here to find out more .  highland inc .  2000 worthy down  chriss church barbados wi  l . davies 246 - 418 - 0920  disclaimer and sec compliance  the information contained in this publication is for informational purposes only , and not to be construed as an offer to sell or solicitation of an offer to buy any security . investing in micro - cap penny stocks should be considered as extremely speculative and risky as it may result in a loss of all or some of your investment . highland inc . is not a registered investment advisor or broker dealer . highland inc . received compensation for this newsletter service for rlyc . the compensation is fifty thousand from a non - affiliated third party . because highland inc . is receiving compensation for its services , there is an inherent conflict of interest in the statements and opinions and such statements and opinions cannot be considered independent . highland inc . makes no representation or warranty relating to the validity of the facts presented nor does the publisher represent a warrant that all material facts are necessary to make an investment decision presented above . factual statements contained in this publication are made as of the date stated and they are subject to change without notice . this release may contain statements that constitute forward - looking statements within the meaning of sec . 27 a of the securities act of 1933 , as amended , and sec . 21 e of the securities exchange act of 1934 , as amended . the words may , would , will , expect , estimate , anticipate , believe , intend , and similar expressions and variations thereof are intended to identify forward - looking statements .  media matrix 7025 county rd . , 46 a dte 1071 # 349 lake mary , fl 32746 this e - mail message is an advertisement and / or solicitation . \",1\n\"Subject: 3 locations free : orlando , las vegas , ft laud .  congratulations on  receiving this special e - mail invitation ! ! !  these invitations were only being sent out . . . to a very select group of  individuals like yourself . . . who were confirmed and qualified to receive this spectacular  offer ! ! !  please click on the link below to register and receive your complimentary  three night stay in your choice of three ( 3 ) of these nine ( 9 ) fun filled locations ! ! !  - magical orlando  - las vegas . . . city of lights  - palm beach , fl . . . . florida ' s best kept secret  - fabulous ft , lauderdale  - atlantic city . . . city of excitement  - new smyrna beach , fl . . . . secluded from it all  - daytona beach , fl . . . the worlds most famous beach  - key west , fl . . . the southern most point in the u . s .  - miami south beach . the city that never sleeps  so log onto : http : / / www . famtriptravel . com / 3 mv _ cntr . html  . . . for your complimentary vacations for two ! ! !  keep in mind . . . our obligation to hold your vacations will expire 72 hours  from the date of delivery of this special invitation  special disclaimer : this message is sent in compliance of the proposed bill  section 301 ,  paragraph ( a ) ( 2 ) ( c ) of s . 1618 . by providing a valid remove me  feature it can not be  considered spam . furthermore , we make every effort to insure that the recipients  of our  direct marketing are those individuals who have asked to receive additional  informaion on  promotional offers from companies who offer internet marketing products . again  we  apologize if this message has reached you in error . screening of addresses has  been done  to the best of our technical ability . we honor all removal requests . if you  would like ,  you can be removed from any future mailings by the sponsor listed above by  e - mailing  mailto : removeme @ famtriptravel . com  with the subject remove me in the subject line .  this advertising material is being used for the purpose of soliciting sales of a  vacation  interval ownership plan . \",1\n\"Subject: save your money buy getting this thing here  you have not tried cialls yet ?  than you cannot even imagine what it is like to be a real man in bed !  the thing is that a great errrectlon is provided for you exactiy when you want .  cialis has a lot of advantages over viagra  - the effect lasts 36 hours !  - you are ready to start within just 10 minutes !  - you can mix it with aicohol ! we ship to any country !  get it riqht now ! . \",1\n\"Subject: an invitation to advertise on freightmart !  freightmart . com - ship anything . . . anywhere . . . anytime . . . auction style !  need more info ? |  if you ' re a shipper |  if you ' re a forwarder  to be removed from any future offers , simply click here ! \",1\n\"Subject: perfect visual solution for your business now  working on your company ' s image ? start with a  visual identity a key to the first good impression . we are here to  help you ! we ' ll take part in buiiding a positive visuai image  of your company by creating an outstanding ioqo , presentable stationery  items and professional website . these marketing toois wiil siqnificantly  contributeto success of your business . take a iook at our work samples , hot deai packaqes and  see what we have to offer . we work for you !  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: do i require an attorney to use this system and clean up my record  purge all of your card payments .  cancel debts and never make another payment ?  discharge debts quickly , painlessly , legally .  for the rest of the story about canceling debt , go to our elimination  pages  no , then the link and address above  king edward was engaged in earnest consultation with one of his ministers ,  and after a look of surprise in rob ' s direction and a grave bow he bestowed  no further attention upon the intruder . but rob was not to be baffled  now  your majesty , he interrupted , i ' ve important news for you \",1\n\"Subject: check this impotence medication  don ' t ignore your impotence problems  feeling good is around the corner !  try now http : / / buychepmeds . com  best regards ,  marquis pack  phone : 117 - 814 - 4432  mobile : 457 - 817 - 1481  email : zndnioays @ sina . com . hk  s ^ t , 0 . p http : / / buychepmeds . com / emover . php\",1\n\"Subject: veryy useful  how to save on y slapstick our medlcations over 70 % .  pha unhang rmshop - successf uninhibited ull and proven way to save your mone consign y .  megger v  contraption ag  a conferee l  l stultification u  messiah l  ambrosia rac heroine l  discountenance isv pretend al  conchy m  andmanyother .  best p exaltation rlces .  worldwid digraph e shlpplng .  easy order f roulade orm .  total confi monocle dentiaiity .  250 , 000 pitiless satisfied customers .  order today and sa prowess ve !\",1\n\"Subject: ctfg trends upward as company begins rollout of acquisition strategy  otc quickstats  june 29 , 2005  at a glance  ticker symbol : ctfg  sector : title insurance  industry : financial services  current price : $ 0 . 39  shares outstanding : 45 , 457 , 200  approx . float : 12 , 457 , 200  ctfg : ground floor opportunity in multi - billion dollar  title insurance market  corporate snapshot  captech financial group , inc . , is a florida corporation headquartered in lighthouse pt . , florida that trades under the symbol ( otcbb : ctfg ) .  captech financial group , inc . , via its new acquisition of national security title agencies , llc . , ( nst ) is a holding company of wholly owned  licensed title agencies that do business throughout the nation as national security title . nst through its licensed staff provides its customers efficient  and professional title services including coverage , searches , examinations , and escrow and closing services to a broad - based customer group that includes  lenders , developers , real estate brokers , attorneys , and home buyers .  recent news ! ! ! !  lighthouse point , fla . , june 28 ( prnewswire - firstcall ) - - captech financial group , inc .  ( otc bulletin board : ctfg ) , has acquired national security title of lighthouse point and tampa , fla . ,  respectively . both offices will operate as branch offices of national security title , a captech financial subsidiary .  investment considerations  ctfg expects revenues to reach 13 million in year one , 59 million in year two , and 104 million in year three of operations .  ctfgs client roster includes some of the most prestigious real estate and financial institutions in the world including : chase bank , wachovia bank , cooper horowitz , and bank of america .  robust demand will require production of approximately 2 million new housing units per year .  the home ownership rate will exceed 70 % by the year 2013 .  mortgage originations are projected to average nearly $ 3 trillion per year for the next two decades .  ctfg presents a potential ground floor investment opportunity in an emerging title insurance company .  visit the ctfg websites at :  www . . com  this email is for informational purposes only , and is neither a solicitation to buy nor an offer to sell securities . all assembled information within is subject to change without notice . the assembled information within this email is based on public information supplied by the company or from other sources believed to be reliable , but no representation , expressed or implied , is made as to its accuracy , completeness or correctness . information in this email may contain forward looking statements as defined under section 27 a of the securities act of 1933 and section 21 b of the securities exchange act of 1934 . an example of forward - looking information are statements relating to the future capital expenditures , future funding sources , anticipated sales growth , and potential contracts . these and similar forward statements are subject to a number of known and unknown risks and uncertainties outside our local control that could cause actual operations or results to differ materially from those anticipated . power house promotions accepts no liability for any losses arising from an investor ' s reliance on or use of this report . this assembled information is for informative purposes and is not intended to be used as the sole source of information on a company . always do your own due diligence and consult a financial advisor . power house promotions has been paid $ 7 , 400 by bma ventures , for the presentation and dissemination of the assembled information . power house promotions does not set price targets or recommend securities .  power house promotions 1846 e . rosemeade pkwy , # 104 dallas , tx 75007 this e - mail message is an advertisement and / or solicitation . \",1\n\"Subject: clear benefits of creative design  lt is really hard to recollect a company : the  market is full of suqgestions and the information isoverwheiming ; but a good  catchy logo , stylish statlonery and outstandlng webslte  wiil make the task much easier .  we do not promise that havinq ordered a iogo your  company will automaticaliy become a world ieader : it isguite clear that  without qood products , effective business organization and practicable aim it  will be hotat nowadays market ; but we do promise that your marketing efforts  will become much more effective . here is the list of clear  benefits : creativeness : hand - made , original logos , specially done  to reflect your distinctive company image . convenience : logo and stationery  are provided in all formats ; easy - to - use content management system letsyou  change your website content and even its structure . promptness : you  will see logo drafts within three business days . affordability : your  marketing break - through shouldn ' t make gaps in your budget . 100 % satisfaction  guaranteed : we provide unlimited amount of changes with no extra fees for you to  be surethat you will love the result of this collaboration . have a look at our  portfolio _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: your online sales are low because you don _ t have enough visitors ?  submitting your website in search engines may increase  your online sales dramatically .  lf you invested time and money into your website , you  simply must submit your website  oniine otherwise it wili be invisible virtualiy , which means efforts spent in vain .  lf you want  people to know about your website and boost your revenues , the oniy way to do  that is to  make your site visible in piaces  where people search for information , i . e .  submit your  website in muitipie search enqines .  submit your website oniine  and watch visitors stream to your e - business .  best regards ,  cecilybaxter _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: logo , stationer , website design and so much more !  lt is really hard to recollect a company : the  market is full of suqgestions and the information isoverwheiming ; but a good  catchy logo , styllsh statlonery and outstandlng webslte  wiil make the task much easier .  we do not promise that having ordered a iogo your  company wili automaticaily become a world ieader : it isguite clear that  without qood products , effective business organization and practicable aim it  will be hotat nowadays market ; but we do promise that your marketing efforts  will become much more effective . here is the list of clear  benefits : creativeness : hand - made , original logos , specially done  to reflect your distinctive company image . convenience : logo and stationery  are provided in all formats ; easy - to - use content management system letsyou  change your website content and even its structure . promptness : you  will see logo drafts within three business days . affordability : your  marketing break - through shouldn ' t make gaps in your budget . 100 % satisfaction  guaranteed : we provide unlimited amount of changes with no extra fees for you to  be surethat you will love the result of this collaboration . have a look at our  portfolio _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: a chance to get new logo now  working on your company ' s image ? start with a  visual identity a key to the first good impression . we are here to  help you ! we ' ll take part in buildinq a positive visuai imaqe  of your company by creating an outstandinq ioqo , presentabie stationery  items and professionai website . these marketing toois wiii siqnificantiy  contributeto success of your business . take a look at our work sampies , hot deal packages and  see what we have to offer . we work for you !  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: save your money buy getting this thing here  you have not tried cialls yet ?  than you cannot even imagine what it is like to be a real man in bed !  the thing is that a great errrectlon is provided for you exactiy when you want .  cialis has a lot of advantages over viagra  - the effect lasts 36 hours !  - you are ready to start within just 10 minutes !  - you can mix it with alcohol ! we ship to any country !  get it right now ! . \",1\n\"Subject: new love tabs shop .  visit our llcensed online dragstore for the best inexpensive love drags ! viagra , ciaiis , softtabs and many other iove enhancers all in one !  operative support , fast shipping , secure payment processing and complete confidentiality !  click here to find your verlfied by bbb and approved by visa iove pil 1 ! \",1\n\"Subject: make your rivals envy  lt is really hard to recollect a company : the  market is full of sugqestions and the information isoverwheiminq ; but a good  catchy logo , styllsh stationery and outstanding website  wili make the task much easier .  we do not promise that having ordered a iogo your  company will automaticaliy become a worid ieader : it isquite clear that  without qood products , effective business organization and practicable aim it  will be hotat nowadays market ; but we do promise that your marketing efforts  will become much more effective . here is the list of clear  benefits : creativeness : hand - made , original logos , specially done  to reflect your distinctive company image . convenience : logo and stationery  are provided in all formats ; easy - to - use content management system letsyou  change your website content and even its structure . promptness : you  will see logo drafts within three business days . affordability : your  marketing break - through shouldn ' t make gaps in your budget . 100 % satisfaction  guaranteed : we provide unlimited amount of changes with no extra fees for you to  be surethat you will love the result of this collaboration . have a look at our  portfolio _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: perfect logo charset = koi 8 - r \"\" >  thinking of breathing new life into your business ?  start from revamping its front - end - logo and visuai identity .  logodentity offers creative custom desiqn of logos ,  stationery and web - sites . under our carefui hand these powerfui marketinq tools  wili bring a breath of fresh air into your business  and make you stand out among the competitors .  you are just a ciick  away from your future success . ciick here to see the sampies of our artwork ,  check our prices and hot offers\",1\n\"Subject: i would like to help your marketing efforts !  hello fellow entrepreneur ,  my name is jon roberts and i represent one of the largest  lead companies on the internet . we specialize in national , local area code , and  gender based real time leads . we also run custom marketing campaigns for  organizations that want a more targeted lead due to their line of service or  product .  you can reach me at the number below or simply reply to  this email . we hope to serve you soon - thanks ! jonathan  robertsl - 800 - 663 - 0311 theleadmanl @ yahoo . com * if you have received  this message in error or would like to be removed from the mailing list please  reply to this email with your removal request and it will be processed  immediately ! *\",1\n\"Subject: will you be the next one selected for his public challenge ?  my simple , yet proven strategies for generating multiple streams of unlimited income work - now let me take you by the hand and prove it ! . . . \"\"  \"\" on live tv i promised the world i would make $ 24 , 000 in 24 hours , and . . . i failed - instead i ' cracked the code ' and made $ 94 , 532 . 44 in 24 hours . \"\"  i want you to look over my shoulder , so to speak and watch how i do it . . . in fact , even get into my mind as i prepare to issue you the challenge of a lifetime .  robert g . allen  \"\" time and time again , i ' m referred to as ' america ' s # 1 millionaire maker ' that means one thing : i take ordinary people  ( some of them right out of the unemployment line and some right out of regis philbin ' s studio audience ) and show them exactly what to do to create multiple streams of \"\" major \"\" income - and then they do it ! \"\"  \"\" and with the release of my new book , ' multiple streams of income ' i ' m on the prowl again -  looking for a small , select group of ordinary people who want my help in creating instant wealth like i have for countless others ! if you qualify , there ' s only one small , reasonable catch :  \"\" i will use your new cash flow success story in my upcoming promotions . so if you can live with that ' catch ' - then you must stop everything you ' re doing and read the rest of this letter right now \"\"  ( important :  you must respond to this invitation within the next 60 minutes .  due to the time - sensitive nature of this opportunity , we must  release your reserved slot to someone else if you do not respond  within the allotted time . )  invitation clock count - down  you must r . s . v . p . within minutes  dear friend seeking financial independence and personal freedom ,  hi . my names robert allen . i ' m the author of two of the best selling  financial books in history ; both # 1 new york times best sellers :  nothing down  creating wealth  my books have sold over 2 . 5 million copies , over 150 , 000 people have  attended my wealth seminars , and i ' ve accepted challenges by the press and have proven time  and again that my money making strategies work .  in fact , recently i was challenged again on national tv . it was in front of a live  audience . i was challenged to take someone from regis philbins studio audience and  teach them my wealth building strategies and guess what ?  just 90 days after following my systems ,  pat watson was $ 20 , 000 wealthier !  listen , you ' ve heard all the get rich now claims and you ' re sick of  seeing them ! the fact is most of those  people who claim to know how you can make money haven ' t made much money  themselves let alone taught others how to do it !  the difference between them and me is that i ' ve proven my  strategies time and time again in the national limelight and my systems truly  work in fact , i ' ve been dubbed america ' s # 1 millionaire maker .  right now , america and i need you for my upcoming nationwide tour to share your story of upcoming success and wealth to those who need hope - all across america .  let me tell you about a few of my \"\" money challenges \"\" . . . this is where i put my money where my mouth is :  i was also challenged by the los angeles times :  you might remember when the los angeles times challenged me to buy real  estate with nothing down . with a reporter by my side , $ 100 for living expenses ,  and armed only with my knowledge ; i purchased 7 properties worth $ 772 , 000 , all  in 57 hours .  i told the mayor of st louis missouri ( the show me state ) :  send me to any unemployment line . let me select someone who is broke , out of  work , discouraged . let me teach him in  two days time the secrets of wealth , and in 90 days he ' ll be back on his feet ,  with $ 5 , 000 cash in the bank , never to set foot in an employment line again .  i selected a young couple from the unemployment lines of st . louis , missouri .  ninety days later they earned $ 5 , 000 using one of my techniques , and . . . .  within 12 months they had earned over $ 100 k !  my proudest moments are when i coach starving millionaires ( people  who should be millionaires but aren ' t ) on wealth building strategies and see  them achieve extraordinary results , again and again !  i ' ve done these same challenges in other major cities - washington , d . c . ,  miami , boston , san diego , and new york - all with similar results !  this brings me to my next challenge in which i took all of the hype out  of the high - powered profit potential of the internet , and decided to make it a  reality for my students . i said :  sit me at any key board of any computer in the world with internet  access , and i will in 24 hours , earn at least $ 24 , 000 cash !  i got myself into the life or death mindset and i went to work  i started my internet challenge at exactly at 12 : 38 pm in front of live  television , i held my breath , and turned my system on and signed on to the  internet  in 6 hours and 11 minutes i had generated $ 46 , 684 . 95  then i went to sleep . . . and when i woke up the next morning and checked the computer -  ( with cameras rolling ) :  the total was now $ 78 , 827 . 44  this was exciting because i knew i still had four hours left !  that afternoon , 24 hours after the challenge had begun . . .  the total had grown to $ 94 , 532 . 44  in a mere 24 hours !  why do i tell you all of this ?  well its certainly not to brag but its to prove that  i practice what i teach ! and since i ' m ready to announce my next  challenge , i thought you ' d like to hear my success story - and how i can help you regardless of where you are  in your financial life .  so heres my newest challenge :  send me a group of people who want to become financially independent .  let me teach them my proven , wealth building  strategies . and in 90 days , they will have developed multiple streams of  income . eventually these streams of  income may give them the freedom to do what ever they want for the rest of  their lives .  thats my newest challenge and i want you to be a part of it .  you have everything it  takes to break the mold of an average income earner but you just need to  decide to do it !  listen , i know the reason you ' re still reading this letter is  because you believe there still is hope theres still a chance a glimmer  of hope that you can be a millionaire .  its hard to leave your comfort zone . but you can do it and i will help you .  but first , let me tell you about a few people who ' ve had the courage to  follow their instinct , break out of their comfort zones , and follow my advice :  robert , my life was never the same again  here ' s the incredible news : only one year after using your strategies ,  ( coincidentally our twelfth wedding anniversary , ) we became millionaires ,  yes , a million dollars in equity ! wow !  depending on what time frame you measure from , that ' s either  ' incredibly fast ' or ' miraculously fast ' ! six months from picking up your book , four - plus months from becoming  protgs , two months and nine days after quitting my job !  that takes my breath away ! . . . this letter  stands as testimony to your accomplishments . . . robert , thank  you , thank you , thank you !  - - karen n . b . , nevada  \"\" in the last 2 months we have made nearly  $ 250 , 000 using the robert allen internet techniques . \"\"  - - olie v . andrei k . , ontario  just do what you love and the money will follow '  in fields of dreams : ' just build it , and they will  come ' wish me luck the rest of the way . haven ' t i told you what the sale price  of this building was ? it was $ 57 , 000 ! i ' m really excited and am on my way finally !  thank you for all your encouragement .  - - eugene w . , california  \"\" in my first - ever deal i ' m acquiring a $ 5 . 7 million 91 unit apartment building for $ 4 . 25 million using none of my own money . \"\"  - - greg w . , new york  ( remember : i will always be up front and honest with you . the amount  of success you may have will depend upon important key variables . . .  these experiences are not typical . you may not be as successful as these testimonials shown . )  as your mentor , let me tell you about the first secret to building  wealth : having multiple streams of income flowing into your bank account .  would it change your life completely if , per chance , you were  to lose your major source of income today think about that !  what would you do if you lost your sole source of income ! ?  i will teach you how to develop other streams of income , so you can protect yourself from ever having to deal with  this imaginary scenario .  heres some of what you ' ll learn :  1 . creative real estate investing : 76 % of  all millionaires started their fortunes in real estate .  i ' ve sold more real estate books than any other author of all time .  2 . information marketing : have you ever  had a million - dollar idea , but never acted on it ?  learn to sell your ideas for royalties the hottest millionaire - making trend .  3 . stock investing : how do the wealthy  take advantage of the amateur investors in the stock market ? learn to make  consistent money regardless of what the stock market does .  4 . internet enterprises : how i made  $ 94 , 000 live on tv in 24 hours ! what did i do that was different ?  these are proven income - generating avenues that  build wealth . wealth comes from  understanding the power of multiple streams of cash flow . . . on cruise control !  my official invitation to you  right here right now i ' m inviting you to experience my member ' s only training in my new multiple  streams of income downloadable training course . in this brand new digital course ,  i ' ll be teaching you all of my proven , successful and profitable wealth secrets .  these strategies and techniques are proven to work for everyday people  living in the united states , her territories , and canada .  international applicants are not being accepted at this time .  here is just a sample of what you will learn in my new course about  multiple streams of income :  establishing your personal wealth building foundation .  how to earn $ 100 , 000 to $ 250 , 000 a year for life .  how to retire early .  how to grow your own money tree .  profiting from 5 massive trends that will create many millionaires in the next century .  building a small or not so small fortune on the internet :  double your internet income and work less hours .  secret strategies for getting people to your website .  the easiest products to sell on the internet .  how to sell products on the internet without buying or shipping them .  how the internet can pay for your retirement .  developing multiple streams of income :  how to start your very own multi - million dollar business from your kitchen table .  6 powerful businesses you can start for less than a thousand dollars .  create a money making machine that runs 24 hours a day , 365 days a year without an office or employees .  how to create streams of income that , once established , require little or none of your personal attention .  the seven essential secrets for finding the most powerful home - based business .  real estate strategies that work .  how to buy a house or condo , sell it for less than you paid and walk away with a cash profit .  how to buy millions of dollars of real estate with none of your own money .  how to buy a home paying no interest .  how to live in a million dollar mansion for the price of living in an ordinary house .  developing multiple streams of income :  how to become a millionaire selling information .  make a thousand dollars a day selling \"\" how to \"\" information .  how to get total strangers to practically line up and literally beg you to take their money for your information product .  how to make $ 20 a word every time you sit down to write .  the fastest way to turn an idea into cash .  if you believe you have what it takes to succeed with my guidance , i ' m going to do something  absolutely \"\" unheard of . \"\" ( remember - i ' ve accepted a public challenge , so i ' m willing to do  practically anything to help you succeed ! )  with your permission , i ' m going to send you an enormous package of training materials :  instant  download home - study course :  the road  to wealth  how to generate a  lifetime of unlimited wealth  in this program  i personally outline all of my secret money making strategies  that my students and i are using to build massive amounts  of wealth !  build your real estate fortune :  the robert  allen money power system  you get your own copy of this exclusive real estate course !  profit from the \"\" perfect \"\" investment . i ' ve made  millions doing this - now you get the secrets of  making risk - free offers , finding \"\" cash cows \"\" ,  and how to use \"\" ultimate leverage \"\" . . . even includes  copies of forms for you to use !  special  report 1  \"\" 7 strategies for  making a fortune online \"\"  how to get  more visitors to your site now  learn the secrets to writing great emails  become an expert on giving your website visitors  instant gratification .  learn the secrets of how the big web sites keep  people coming back .  special  report 2  \"\" nothing down real  estate techniques \"\"  50 nothing down  techniques  how to make the banks work for you  the fundamentals of leveraging capital  how a partners money can make you money  creative financing options that work  special  report 3  \"\" zero  to $ 1 , 000 , 000 on $ 49 a month \"\"  the 3  things you must do  what the big secret is .  how to use all of your power  the fundamentals of finance  where do i get the money to start  how to make your plan and then work it  special  report 4  \"\" how  to make $ 24 , 000 in 24 hrs . on the internet \"\"  exactly  how i made $ 94 , 532 . 44 in 24 hours  how to develop a target audience  how to find out what your audience wants to buy  how to motivate your target audience to act now  getting started - your action plan  how to find the hungriest fish in the lake  how to discover the kind of bait your fish will  bite on .  this is a strictly limited offer ( remember - i ' ve accepted a public challenge , so i ' m willing to do practically anything to help you succeed ! )  and if you order by  to  get in on the multiple streams of income audio series free bonus ( worth $ 35 ) .  i kid you not the information in this audio alone can turn your entire life around , and bring you all the wealth you  could ever need .  copyright 2004 esi one , inc .  education success , inc . 5072 n . 300 w . provo , ut 84604 this e - mail message is an advertisement and / or solicitation . \",1\n\"Subject: no need to pay more - cheapest oem online .  what is oem software and why do you care ?  http : / / mth . kr 6 h 512 vzc 2 rh 32 . spurternj . com  no one gossips about other people ' s secret virtues .  better fare hard with good men than feast it with bad .\",1\n\"Subject: failure notice  hi . this is the qmail - send program at nsl . mxlinux 2 . com .  i ' m afraid i wasn ' t able to deliver your message to the following addresses .  this is a permanent error ; i ' ve given up . sorry it didn ' t work out .  :  this address no longer accepts mail .  - - - below this line is a copy of the message .  return - path :  received : ( qmail 30891 invoked from network ) ; 19 jul 2005 10 : 57 : 17 - 0000  received : from ntokymo 09176 . okym . nt . adsl . ppp . infoweb . ne . jp ( helo mailwisconsin . com ) ( 218 . 229 . 92 . 176 )  by wpc 2010 . amenworld . com with smtp ; 19 jul 2005 10 : 57 : 17 - 0000  received : from 205 . 214 . 42 . 66  ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ;  by mailwisconsin . com with http id j 87 gzo 24816188 ;  tue , 19 jul 2005 10 : 57 : 46 + 0000  message - id :  date : tue , 19 jul 2005 10 : 57 : 46 + 0000  subject : just to her . . .  from : \"\" barry castillo \"\"  to : info @ grafex . net  user - agent : squirrelmail / 1 . 4 . 3 a  x - mailer : squirrelmail / 1 . 4 . 3 a  mime - version : 1 . 0  content - type : text / html ; charset = iso - 8859 - 1  content - transfer - encoding : 8 bit  x - priority : 3 ( normal )  importance : normal  soft viagra at $ 1 . 62 per dose  ready to boost your sex life ? positive ?  time to do it right now !  order soft viagra at incredibly low prices  starting at $ 1 . 99 per dose ! unbeiivable !\",1\n\"Subject: undelivered mail returned to sender  this is the postfix program at host relayl . netspace . net . au .  i ' m sorry to have to inform you that your message could not be  be delivered to one or more recipients . it ' s attached below .  for further assistance , please send mail to  if you do so , please include this problem report . you can  delete your own text from the attached returned message .  the postfix program  : host mail - in . netspace . net . au [ 210 . 15 . 254 . 248 ] said :  550 : recipient address rejected :  gperkes @ netspace . net . au has expired ( in reply to rcpt to command )\",1\n\"Subject: great idea for you byrdshot  mortgage rates are about to rise  cash in now !  our programs will help you with :  - debt consolidation  - 2 nd mortgage  - refianance  - home improvement  our free no obligation quite has already helped  thousands of homeowners , just like you .  click here to start saving  if you would rather not be included in our future mailings , click here .\",1\n\"Subject: my portfolio  hi  my name is ernie , i may not have the right email address , if not  please excuse my intrusion . if you are interested  in some web design work for your company .  please click the link below to see my portfolio :  http : / / www . mywebdesignportfo  lio . com /  thanks ,  ernie  if you would like to be removed from my address book permanently ,  please click this link and type remove in the subject line :  click  here : remove \",1\n\"Subject: teach and grow rich  do you want to teach and grow rich ?  if you are a motivated and qualified communicator , i will personally train you to do 3 20 minutes presentations per day to qualify prospects that i can provide to you . we will demonstrate to you that you can make $ 400 a day part time using this system . or , if you have 20 hours per week , as in my case , you can make in excess of $ 10 , 000 per week , as i am currently generating ( verifiable , by the way ) .  plus i will introduce you to my mentor who makes well in excess of $ 1 , 000 , 000 annually .  many are called , few are chosen . this opportunity will be limited to one qualified individual per state . make the call and call the 24 hour pre - recorded message number below . we will take as much or as little time as you need to see if this program is right for you .  * * * 801 - 397 - 9010 * * *  please do not make this call unless you are genuinely money motivated and qualified . i need people who already have people skills in place and have either made large amounts of money in the past or are ready to generate large amounts of money in the future . looking forward to your call .  * * * 801 - 397 - 9010 * * *  * to be taken out of this database :  secco 44 @ poetic . com  9059 dmelo - 270 bmbll 5 \",1\n\"Subject: 10 million fresh email addresses sent to you on cd for free ! ! ! try before you buy ! !  get ready for a deal you ' ve never seen before !  10 million hot fresh email addresses and much more !  try before you buy ! ! ! ! !  we will send you the  powerman 10 million  internet marketing shop  cd free  this is what you get :  10 million freah email addresses  fully functional websites - ready to take orders  proven high impact resalable products - ebooks  cutting edge internet marketing tools  instructions less flames & non - buyers .  * less contact with anti - commerce radicals & extremists .  remember that potential income chart at the beginning of this message ? can you imagine the kind of money you could  make if you mailed one million pieces and sold only one tenth ( . 01 % ) of one percent ? you do the math , you ' ll be amazed !  this product will prove to be the best of it ' s kind compared to any cd in terms of hours and money spent bringing it to  market . no competitor will ever duplicate the effort of what it takes for us to produce this superb product . we never have  compromised on quality , and surely won ' t release any product before it passes our \"\" high standards \"\" test . this is not a  rental list that is restricted to a one - time mailing . you are purchasing an e - mail address list for your own personal mailings  and may use it over - and - over .  if you want us to send you the powerman 10 million internet marketing shop cd  email : powermanl 0 million @ hotmail . com  subject line : send cd  your mailing address :  _ / _ / _ / _ / _ / _ / _ / _ / _ / _ / _ / _ / _ / _ / _ / _ / _ / _ / _ / _ / _ / _ / _ /  * * f r e e b o n u s e s * *  \"\" business on a disk \"\" bonus offer :  every survey has always indicated that the easiest and most profitable product to sell on the internet is  information ! if you have an \"\" information \"\" type product , then there is no easier way to become financially  independent .  our \"\" business on a disk \"\" gives you awesome resalable products reports / manuals / books that that are yours  to use . you may instantly start your \"\" information product \"\" business ! just think , you can reproduce a complete book  on a floppy disc in just a few seconds , for around 35 cents . these are the same books that have  sold for $ 99 . \"\" special reports \"\" cost you pennies to produce and can be sold for as high as $ 15 . . . or the whole group  for as high as $ 140 . 00 .  \"\" the mass e - mail survival guide \"\" a manual / guide that addresses the mass e - mail business . especially useful  for beginners . \"\" the mass e - mail survival guide \"\" will answer most of your questions and concerns about mass e - mail .  an exclusive for our customers . . . included free .  if you want us to send you the powerman 10 million internet marketing shop cd  email : powermanl 0 million @ hotmail . com  subject line : send cd  your mailing address :  - - - -  this sf . net email is sponsored by : thinkgeek  welcome to geek heaven .  http : / / thinkgeek . com / sf  spamassassin - sightings mailing list \",1\n\"Subject: no further access to your account will be allowed  dear lasalle bank customer ,  this email is to inform you , that we  had to block your lasalle bank account access because we have been  notified that your account may have been compromised by outside  parties .  our terms and conditions you agreed  to state that your account must always be under your control or those  you designate at all times . we have noticed some  unusual activity related to your account that indicates that other  parties may have access and or control of your informations in your  account .  these parties have in the past been involved with  money laundering , illegal drugs , terrorism and various federal title 18  violations .  please  follow  this link to complete your security verification and unlock your visa check  card :  please be aware that until we can  verify your identity no further access to your account will be allowed  and we will have no other liability for your account or any  transactions that may have occurred as a result of your failure to  reactivate your account as instructed above .  thank you for your time and  consideration in this matter .  sincerely ,  lasalle bank accounts department .  note : requests for information will be initiated by our lasalle bank  business development group , this process cannot be externally expedited  through customer support \",1\n\"Subject: returned mail : see transcript for details  the original message was received at tue , 19 jul 2005 12 : 59 : 18 + 0200  from ntibrko 70111 . ibrk . nt . ftth . ppp . infoweb . ne . jp [ 211 . 2 . 26 . 111 ]  - - - - - the following addresses had permanent fatal errors - - - - -  - - - - - transcript of session follows - - - - -  554 5 . 0 . 0 username or alias unknown  550 5 . 1 . 1 . . . user unknown\",1\n\"Subject: get me thru july newsletter  the get me thru newslettervenita king \"\" the get me thru  coach \"\"  volume 1 issue  7  july  2005  \"\" igniting the power of  inspiration . . . \"\"  thank you for reading my  newsletter . you will not be the same , i promise ! sign - up todayit ' s free and  priceless . . .  tell a friend aboutthis  newsletter  learn more aboutvenita ' s  coaching  stay up to date with get me thru  news  venita ' s promiseyou have my word , i will not share your contact  information with anyone . thank you for allowing me to contact  you ! be my guest and reprint or  distribute \"\" the get me thru newsletter \"\" as long as  you include thecopyright and web link to www . getmethru . com venita king \"\" the get me thru coach \"\" venita @ getmethru . comcopyright 2005 all rights  reserved . the get me thru collectionis a registered  trademark  cick here to join the get me thru  newsletter  now ! !  discover get  me thru nuggets of wisdomthat  thousands use daily to increase their success - from the  author of \"\" the voice of my boundaries \"\"  in this  issue  the paradox  of stressthe thing  you need but should not keep . . .  the coach ' s play  of the month : \"\" motivation  excites you about someone else ' s answers . inspiration  ignites your inner strength through questions that lead you  to successful actions and  self - awareness . \"\"  venita ' s commercial moment  monthly special  the paradox of  stress  there is a level of genius in every human being  and it is called a ' gift ' . stress however plays a huge role in how  we deliver it to the world . the mystery is that stress is a good  thing when used properly and a bad thing when misused . how can  that be ? consider these get me thru points about  stress . i learned about them the hard way . you don ' t have to make my  mistakes .  stress is a process in life and not just a  thing that happens  stress literally enters your being daily and  it must also be shown the exit door daily  stress should be utilized as a tool for  forward movement in the face of challenge  stress keeps you alert at the beginning ,  weighs on you midway and brings you down in the end if you keep it  to long  stress is an excellent motivator but unlike  motivation , it doesn ' t just disappear  a get me thru nugget of wisdom : wherever  you store your stress is where you can expect to experiencethe  most damage , physically , spiritually or financially . . . in the end ,  someoneelse most likely will have to inform you about the  severity of your damage .  a  get me thru question : do you process your stress daily for  authentic success or do you store it daily for  disaster ?  so you see the parameters of  stress will enter the board room or home , it has no preference . -  it ' s all about people and not position . however , when ignored stress  will ultimately determine how far each one of us goes in life -  guaranteed !  read what i learned about how to  process stress and how misusing it nearly cost me my life in chapter  8 of \"\" the voice  of my boundaries \"\" .  the coach ' s play of the  month : \"\" motivation excites  you about someone else ' s answers . inspiration  ignites your inner  strength through questions thatlead you to successful actions  and self - awareness . \"\"  the get me thru question for this  month should last you for a lifetime , because stress is a part of  life forever . whether you want to be a millionaire or merely  survive , you too must make a decision about processing stress . your  success in life demands it !  learn from my get me thru nuggets of  wisdom and then work on your own !  let me hear from you soon ! sign my  guestbook  venita ' s commercial  moment monthly special :  buy the voice of my  boundaries in the get me thru signature pocket during  the month of july and receive set of 21 get me thru share  cards too !  and  click here to buy  now  your response to my new  get me thru jingle get me thru meditation songhas  been incredible . many of you heard them if you attended one of my  march or april inspiring success workshops . just  click here to  listen to an excerptfrom the meditation song . the link takes you  to my website . click the play button on the media player in  the right column and enjoy !  may the voice of your boundaries guide you always . many  blessings ! venita  cick here to join the get me  thru newsletter  now ! !  get me thru , inc . 1019 old monrovia rd . huntsville , al 35806 this e - mail message is an advertisement and / or solicitation .  - -  no virus found in this incoming message .  checked by avg anti - virus .  version : 7 . 0 . 323 / virus database : 267 . 9 . 1 / 51 - release date : 7 / 18 / 2005 \",1\n\"Subject: afforable health care  men ' s health :  viagra , cialis , levitra  anti - depressants : ativan , paxil , prozac , zoloftpain relief : soma ,  ultramweight loss : meridia , phentermine  viagra - $ 2 . 0 / pillsoma -  $ 1 . 4 / pillcialis -  $ 4 . 2 / pillvalium - $ 3 . 0 / pillxanax  - $ 2 . 3 / pillambien -  $ 2 . 7 / pillultram -  $ 1 . 2 / pillativan - $ 2 . 0 / pilllevitra -  $ 4 . 2 / pill  if  you compare the cost and services of our competitors , you will see that we  give you much more . . . for less . our commitment to quality service and  customer satisfaction not only makes our site the best  choice but the smart  choice .  the facts : our site has lower prices and more services  than its competitors for three consecutive years ! our prices are between 43 . 43  and 58 . 8 % ( an average of 66 . 32 % ) less than the market average .  visit us http : / / ioaxint . enjoydays . info / ? 6 c 2 ae 3 afaoaf 7 bdol 9325599 cf 9 zbb 83 / \",1\n\"Subject: be your own private eye online  internet  investigator  - new for  2002 -  internet  software for online investigations  find  out anything about anyone  online  uncover  information about :  enemies ,  debtors ,  neighbors , friends , employees , co - workers , your boss , yourself ,  associates , former school or military buddies , even a new love  interest .  become  an internet investigator and explore an exciting new world of  valuable information .  with internet investigator  you can investigate :  people ,  credit  records , social security numbers , employment records , school  records , criminal records , driving records , addresses , phone  numbers ( even some unlisted ) , hidden assets , family trees  and  a whole lot more !  click  here for more information  unsubscribe instructions  this message is a commercial  advertisement . it is in full compliance with all federal and state laws  regarding email advertising , including the california business and professions  code . we have provided opt out email contact so you can  request to be taken off our mailing list . in addition we have placed  adv : in the subject line to provide you with notification  in advance that this is a commercial advertisement . we do not wish to  send our advertising to anyone who does not wish to receive it . if you would rather not receive any further information from  us , please click  to be taken off our list . in this way you can opt - out from  the list your email address was obtained from , whether it was opt - in  or otherwise . please allow 5 - 10 business days for your email address  to beprocessed and taken offall lists in our control . meanwhile ,  delete any duplicate emails that you may receive and rest assured that  your request will be honored . if you have previously requested to be  taken off this list and are still receiving this advertisement ,  you may call us at 1 - ( 888 ) 817 - 9902 , or write to : abuse control center ,  7657 winnetka ave . , suite 245 , canoga park , ca 91306 \",1\n\"Subject: esecure online pharmacies  you get the medications you request !  if you are not criticized , you may not be doing much .  he who knows others is wise ; he who know himself is enlightened .  there is no such thing as a lover ' s oath .  war is just to those to whom war is necessary .\",1\n\"Subject: what ' s going on  hi u . this is sarah gal . where have you been hiding ? if you want to hang out and talk some more i would sure like too . hey check out these new pictures of me i just got taken . have a good one .  http : / / mmjx . sakarsucks . com / sal 6 /  martina sonant deprecatory boogie northampton .\",1\n\"Subject: hiya hon , , . . . mandamus  hi there babie , it ' s the 1 and only crystal clear remember from the dating website . i was told all about you so i thought id say hi hon . i want you to see my pictures and read about me . i wont sleep until i hear from you sexy . : d later baby ,  cryssie gal  http : / / cix . bornfruit . com / cr 25 /  no more - jeffersondarcy . com / 1 m / rpbw 2 jt 5 xb 53 p 91 t\",1\n\"Subject: buy oil stocks now  calgary , alberta , jul 7 , 2005 ( ccnmatthews via comtex ) - - on behalf of smsmobility , inc . ( the company ) ( pink sheets : smso ) president rod burns , is pleased to report that the company has executed a memorandum of understanding ( mou ) with quest oil corporation ( otcbb : qoil ) for a joint venture on two of its development programs in texas . the nettie gardner lease is located in central texas and the eastland county lease is located in north central texas .  the nettie gardner lease is comprised of 116 acres , which forms the southernmost extension of the exoc field discovered in 1976 by the bishop - biemer - 1 well . oil production occurs from the jennings gas sand and the gardner sandstone at a depth of approximately 1 , 000 ft to 3 , 000 ft .  eastland county is situated between abilene and dallas - fort worth , texas . eastland county straddles the bend arch , a geological structural high that separates the fort worth basin to the east from the midland basin to the west . on the eastern side of the arch , the rock stratum declines to the east into the fort worth basin . for stratigraphic purposes , the area can be considered the westernmost extension of the fort worth basin and an extension of the barnett shale play .  mr . burns commented , this joint venture represents a significant first step in our efforts to refocus the company ' s business direction . we are extremely pleased to be able to enter into this working arrangement with the management of quest oil corp . and look forward to being part of the successful development of these properties . in addition to other projects under consideration , we are confident that these projects will contribute positive cash flow to the company as well as adding long term value for our shareholders .  quest director , mr . cameron king , mba , commented , quest is very pleased to develop a working relationship with star petroleum corp . ( smsmobility ) , management has demonstrated a commitment to establish a presence in the industry by joint venturing on our most recent acquisitions . additional information will be available upon the execution of the joint venture agreement .  about quest oil corporation  the company is committed to the exploration and development of economical oil and natural gas reserves globally . quest management is focused on an acquisition program targeting high quality and low risk prospects . initially , quest is focused on the development of north american oil and gas resources allowing highly leveraged production opportunities .  about smsmobility / star petroleum corp .  the company is under a change in direction and is currently acquiring and venturing within the oil and gas sector . the focus and development will be described in enhanced detail in the near future .  for more information on the specifics of the properties and the planned drilling programs , please visit the quest oil website at www . questoil . com .  on behalf of the board  quest oil corporation . cameron king cameron king mba - director  this press release contains statements , which may constitute forward - looking statements within the meaning of the securities act of 1933 and the securities exchange act of 1934 , as amended by the private securities litigation reform act of 1995 . prospective investors are cautioned that any such forward - looking statements are not guarantees of future performance and involve risks and uncertainties , and that actual results may differ materially from those contemplated by such forward - looking statements . important factors currently known to management that could cause actual results to differ materially from those in forward - statements include fluctuation of operating results , the ability to compete successfully and the ability to complete before - mentioned transactions . the company undertakes no obligation to update or revise forward - looking statements to reflect changed assumptions , the occurrence of unanticipated events or changes to future operating results .  smsmobility , inc . rod burns president ( 403 ) 804 - 1063 or quest oil corporation : investor information mr . darren hayes , corporate development 1 - 866 - 264 - 7668 website : www . questoil . com  safe harbor statement  this report is for informational purposes only , and is neither a solicitation to buy nor an offer to sell securities . investment in low - priced small and micro - cap stocks are considered extremely speculative and may result in the loss of some or all of any investment made in these companies . estockquest is not a registered investment advisor or a broker - dealer . information , opinions and analysis contained herein are based on sources believed to be reliable , but no representation , expressed or implied , is made as to its accuracy , completeness or correctness . the opinions contained herein reflect our current judgment and are subject to change without notice . estockquest assumes no responsibility for updating the information contained herein regardless of any change in smco ' s financial or operating condition . as estockquest has received compensation for this report , and will benefit from any increase in share price of the advertised company , there is an inherent conflict of interest in our statements and opinions . estockquest accepts no liability for any losses arising from an investor ' s reliance on , or use of , this report . smco will require additional capital to realize its business plan and continue as a going concern . a third party company has been paid in the amount of fifteen hundred dollars for the transmission of this message . estockquest and its affiliates or officers may buy hold or sell common shares , of mentioned companies , in the open market or in private transactions at any time without notice . certain information included herein is forward - looking within the context of the private securities litigation reform act of 1995 , including , but not limited to , statements concerning manufacturing , marketing , growth , and expansion . the words \"\" may , \"\" \"\" would , \"\" \"\" will , \"\" \"\" expect , \"\" \"\" estimate , \"\" \"\" anticipate , \"\" \"\" believe , \"\" \"\" intend , \"\" and similar expressions and variations thereof are intended to identify forward - looking statements . such forward - looking information involves important risks and uncertainties that could affect actual results and cause them to differ materially from expectations expressed herein .  estockquest 1426 15 th ave . north texas city , tx 77590 this e - mail message is an advertisement and / or solicitation . \",1\n\"Subject: confirmation request 218 - 791  we tried to contact you last week about refinancing your home at a lower rate .  i would like to inform you know that you have been pre - approved .  here are the results :  * account id : [ 289 - 629 ]  * negotiable amount : $ 111 , 636 to $ 636 , 435  * rate : 3 . 50 % - 5 . 93 %  please fill out this quick form and we will have a broker contact you as soon as possible .  regards ,  rich blankenship  senior account manager  amston lenders , llc .  database deletion :  http : / / www . refin - xnd . net / r . php \",1\n\"Subject: mid summer flag special : free shipping  armstrong flag company  spring special : free shipping  order  today and receive a free car flag  free shipping on all orders over $ 35 . 00 .  promo good thru june 30 th . may not be combined with any other promo ,  offer or discount from armstrong flag company  armstrong flag company  call today :  1 - 800 - 458 - 0052  www . armstrongflag . com  armstrong flag company 20 park st . winchester , ma 01890 this e - mail message is an advertisement and / or solicitation . \",1\n\"Subject: less time , less effort but better sav . ings on alleviations .  requiring better energy to face the challenge from daily life ? feel lovv and  weary from time to time ?  to gain quicker alleviations for your afflictions and other discomforts ,  vvalk into our medzone . and knovv how to lessen the expenses on medz supply .  our quality generics will certainly m . eet your needs for quality curatives  and greater value . uncover better categories in our zone for painrelief ,  sexualhealth , weightctrl . , highcholesterin , sleepingdisorders and others .  our collection will make sav . ving on medicaments simpler .  http : / / 0 . aonp . yoyoforsheerjoy . com / j 5 r /  we maintain a individual environment for purchasers from all over the  vvorld .  nce - i do not say it la \"\" a surgeon ! \"\" said anne . . with emotion .  sted long , but it has bee n - when i have asked myse . lf the question , wou  he caught the word ; it seemed to rouse him at once , and saying only - -  ld it have been better for li 1 ttle em ' ly to have had the wa 7 ters close  above her head that morn\",1\n\"Subject: any med for your girl to be happy !  your girl is unsatisfied with your potency ? don ' t wait until she finds another men !  click here to choose from a great variety of llcensed love t @ bs ! best pri $ es , fast shippinq and quaranteed effect ! here you buy it right from warehouse !  the store is verified by bbb and approved by vlsa ! \",1\n\"Subject: having problems in bed ? we can help !  cialis allows men to enjoy a fully normal sex life without having to plan the sexual act .  if we let things terrify us , life will not be worth living .  brevity is the soul of lingerie .  suspicion always haunts the guilty mind .\",1\n\"Subject: re : how are you ? 8456  fill out our short application for an unbelievable 4 . 1 % mortgage ( apr )  ( ) home refinancing  ( ) home improvement  ( ) debt - consolidation  ( ) cash - out  please click here  for our short application .  the following are no problem and will not stop you from getting the  financing you need :  * * * can ' t show income  * * * self - employed  * * * credit problems  * * * recent bankruptcy  * * * unconventional loan  we have hundreds of loan programs available and work with hundreds  of lenders , so no matter which of our 50 states you live in , we  likely have a program that could meet your needs .  please click here  for our short application .  * we do not resell or disseminate your email address . you are not required  to enter your ssn . this is a legitimate offer from legitimate mortgage  companies .  note : we are licensed in all 50 u . s . states .  to be removed from future mailings click here or send an e - mail to remove @ sitecritic . net .  we will never intentionally email you again . thank you . \",1\n\"Subject: industry forum # 136  the industry forum  minute man ii  160 lbs . light - requires no electricity - under $ 6000 complete ! now everybody can be a foamer !  small , one time project ? froth - pak is the answer ! smallest self - contained out - of - box foam application for repairs and small jobs ! also available : insta - stick , tilebond , roofpak and more !  get your copy of the industry catalog ! most complete reference for our industry !  click on the picture above to learn more about the equipment !  the industry forum issue # 136  10341 forum members  # 136 - 1 : dik m , pa  it would be much more useful to the industry , if spfa would help find a \"\" code conforming \"\" fire barrier for attics , crawl spaces etc . , than lecture on fast and loose applications of code . something about 30 cents ( a bd . ft . ) installed , meeting all codes and spray applied . many companies we talk to have a product that appears to be perfect but they haven ' t spent the money to test over foam . maybe a small committee could do a evaluation of various products , report results to spfa , who in turn will \"\" acquire funding \"\" from us .  # 136 - 2 william b , australia  we are in australia but we are finding it hard to locate polyurea sprayers here so that we can start a chapter of the pda do u have any list of australian contractors / suppliers ? ? ? ? or maybe they can put their hand up and lets us know at enviroline @ powerup . com . au , it isfor the betterof the game that an association is need to inform clients and specifiers of the uses and properties of polyureas and train its own members , also to keep cowboys out that give the industry a bad name  # 136 - 3 ed m .  i am a writer for aviation magazines and one that i write for is a test international , a new publication that just launched this month . i need any new processes you might have that would be used on aircraft , particularly commercial aviation .  # 136 - 4 john c , louisiana  i have a foam cat 2000 graco machine and a probler gun with a 01 tip . i use this setup to spray truck bed liners . my question is can i and how do i spray foam insulation using my equipment ? and what are the different types of insulation ?  # 136 - 5 murph mahaffey , glas - craft  i like the new look of the industry forum !  # 136 - 6 mark w , south carolina  i ' m sick of all this garbage about covering foam with a \"\" thermal barrier \"\" . what the hell do you think foam is ? if you are saying that anything that can be forced to burn should be covered with a fireproof barrier , then you ' d better get busy covering all those trusses and joists and plywood up there that are definitely not carrying a class one fire rating . this double standard for foam is coming directly from those who stand to lose business from it . icynene is different . it doesn ' t burn alone . it doesn ' t melt . it doesn ' t emit phosgene . does it smoke in a fire situation ? sure , so what ?  blaming foam in the attic for a house fire because it forces the foam to eventually burn is about as stupid as blaming foam seat cushions for burning when a gas tank ruptures and burns up a car . get real , inspectors . you want us to cover up the only thing in the attic assembly that doesn ' t burn !  as for the vaunted r rating system , it is totally bogus . the test is designed to make porous insulations appear to perform better than they actually do . measuring only conduction and ignoring convection and radiant to convective transfer , the test should have been thrown out for the industry lackey it is 20 years ago , along with that obsolete fiberglassgarbage they ' re still selling everybody . there ' s a reason they don ' t make refrigerators , freezers coolers coffee cups out of fiberglass or cellulose . think about it .  # 136 - 7 dirk benthien , forum moderator  thank you , mark and dik , for your statements above . i also feel that far too often individuals and companies are too complacent and quietly live with rules and regulations without trying to change them - even if everybody knows they do not make sense . we are all experts and representatives of this industry and should speak up and promote change !  # 136 - 8 martin s , canada  does anyone make a dispensing machine for crumb rubber / urethane blends ?  # 136 - 9 carole l , california re # 135 - 8 otto v , germany  what are the answers ? ( phase - out of 141 b )  # 136 - 10 brian d , canada  there has been a lot of talk about ceramic coatings . we are a distributor of such a coating . we have never professed an r - 20 . reason = is there isn ' t an astm test available to measure coatings for r - value . we compare standardized insulation to ceramic coatings via btu loss calculations . depending on the criteria we can equal 2 to 3 inches of standard insulation with an aluminum jacket . we have the data and the projects to prove it .  # 136 - 11 cpi  we have inquiries from a number of people for used equipment - especially gusmer h 20 / 35 , h 2000 , h 2 , gx - 7 and glas - craft probler . please contact 805 - 552 - 9128 . + + + + + + + + + + + + + + + + + + + + + + + + + + + +  end of messages .  this forum welcomes anyone interested in the processing of single - or plural - component materials such as polyurethane , polyurea , coatings , epoxies , and other spray - applied materials .  the industry forum . a free eservice from  to ask or answer a question , or to contribute anything , simply send an e - mail to forum @ cpillc . com  used gusmer h 20 / 35 and probler gun for sale ! 805 - 552 - 9128  your privacy is protected ! please read the policies and rules at cpillc . com .  show your name here ! become a sponsor ! call 805 - 552 - 9128 or send an email to cpi .  read this and previous forum issues all on one page . it will only work if you are connected to the internet ! click here to go to cpillc . com / forumdiscussion . htm .  visit cpi , llc on the web . click http : / / www . cpillc . com /  cpi is authorized distributor for all leading manufacturers in this industry including gusmer , glas - craft , graco , resin technology , dynasolve .  cpi ' s customers enjoy impartial advice , full service , life - long free phone support , training and set - up with all new system at a very fair price !  shop our online warehouse 24 / 7 most efficient procurement anywhere ! www . cpillc . com / warehouse . htm  job marketspray jobs  did we miss someone ? feel free to submit any number of e - mail addresses of coworkers and friends to be included here . again , this service is free for all ! help grow our forum !  we ' re cpi . we make it work !  call us toll - free 877 - cpi - 2100805 - 552 - 9128  copyright ( c ) 2000 , 2001 , 2002 cpi , llc . all rights reserved . disclaimers and limitations of liabilities posted at cpillc . comthis free eservice is made possible by cpi . please visit their web site at www . cpillc . com or call toll - free 877 - 274 - 2600 or 805 - 552 - 9128 . if you wish to unsubscribe , please hit the reply button - subject = remove . please allow 3 days to take effect . \",1\n\"Subject: perfect logo charset = koi 8 - r \"\" >  thinking of breathing new life into your business ?  start from revamping its front - end - logo and visuai identity .  loqodentity offers creative custom design of loqos ,  stationery and web - sites . under our carefui hand these powerfui marketing tools  wili bring a breath of fresh air into your business  and make you stand out among the competitors .  you are just a ciick  away from your future success . ciick here to see the samples of our artwork ,  check our prices and hot offers\",1\n\"Subject: update your online banking records  notification of limited account access  as part of our security measures , we regularly screen activity in the  banking system .  we recently noticed the following issue on your account :  we would like to ensure that your account was not accessed by an  unauthorized third party . because protecting the security of your account  is our primary concern , we have limited access to sensitive account  features . we understand that this may be an inconvenience but please  understand that this temporary limitation is for your protection .  case id number : pp - 090 - 292 - 753  for your protection , we have limited access to your account until  additional security measures can be completed . we apologize for any  inconvenience this may cause .  to review your account and some or all of the information that bank of the west used  to make its decision to limit your account access , please visit the link below :  if , after reviewing your account information , you seek  further clarification regarding your account access , please contact bank of the west  by visiting the help center and clicking \"\" contact us \"\" .  we thank you for your prompt attention to this matter . please understand  that this is a security measure intended to help protect you and your  account . we apologize for any inconvenience .  sincerely ,  bank of the west account review department  email id pp 522  please do not reply to this email . this mailbox is not monitored and you will not receive a response . \",1\n\"Subject: logo , stationer , website design and so much more !  lt is really hard to recollect a company : the  market is full of suqgestions and the information isoverwheiming ; but a good  catchy logo , styllsh statlonery and outstanding website  wiii make the task much easier .  we do not promise that havinq ordered a ioqo your  company wili automaticaiiy become a world ieader : it isguite clear that  without good products , effective business organization and practicable aim it  will be hotat nowadays market ; but we do promise that your marketing efforts  will become much more effective . here is the list of clear  benefits : creativeness : hand - made , original logos , specially done  to reflect your distinctive company image . convenience : logo and stationery  are provided in all formats ; easy - to - use content management system letsyou  change your website content and even its structure . promptness : you  will see logo drafts within three business days . affordability : your  marketing break - through shouldn ' t make gaps in your budget . 100 % satisfaction  guaranteed : we provide unlimited amount of changes with no extra fees for you to  be surethat you will love the result of this collaboration . have a look at our  portfolio _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: programs for every credit situation  thank you for your loan request , which we recieved on 5 / 15 / 05 ,  we ' d like to inform you that we are accepting your application , bad credit ok , we are ready to give you a $ 260 , 000 loan for a low month payment .  approval process will take only 1 minute .  please visit the confirmation link below and fill - out our short 30 second form .  http : / / www . fastrefi . biz / ? a = grabadora \",1\n\"Subject: please kindly assist  greetings ,  i am prince fayad w . bolkiah , the eldest son of prince jefri bolkiah , former finance minister of brunei , the tiny oil - rich sultanate on the northern coast of the island of borneo , in eastern asia . i will save your time by not amplifying my extended royal family history , which has already been disseminated by the international media during the controversial dispute that erupted between my father and his step brother , the sultan of brunei sheik muda hassanal bolkiah .  as you may know from the international media , the sultan had accused my father of financial mismanagement and impropriety of us $ 14 . 8 billion dollars . this was as a result of the asian financial crisis that made my father company amedeo development company and government owned brunei investment company to be declared bankrupt during his tenure in office . however my father was kept under house arrest , his bank accounts and private properties including a crude oil export refinery were later confiscated by the sultanate .  furthermore , during this unfortunate period i was advised to evacuate my immediate family outside the sultanate to avoid further prosecution from the sultan and his security operatives , but before i could do that i was placed under house arrest by the sultan and i have no access to a phone but i have a palm v hand - held computer from which i am sending you this mail . before my incaceration , i went ahead to dispatch the sum of fifty eight million five hundred thousand united states dollars us $ 58 . 5 million in cash under special arrangement into the custody of a private security and trustee company for safe keeping abroad .  hence i seek your good assistance to invest these funds into profitable investment in your country to facilitate future survival for my family abroad . i have decided to offer 10 % of these funds to you as compensation for your strong cooperation .  please i count on your absolute confidentiality , transparency and trust while looking forward to your prompt reply towards a swift conclusion of this business transaction .  i remain yours sincerely .  prince fayad . w . bolkiah  brunei darussalam .\",1\n\"Subject: online live striptease for you  see me naked click here\",1\n\"Subject: mail delivery failed : returning message to sender  this message was created automatically by mail delivery software .  a message that you sent could not be delivered to one or more of its  recipients . this is a permanent error . the following address ( es ) failed :  save to inbox  generated by kremp - gbr @ 01019 freenet . de  mailbox is full : retry timeout exceeded  - - - - - - this is a copy of the message , including all the headers . - - - - - -  return - path :  received : from [ 194 . 97 . 50 . 136 ] ( helo = mx 3 . freenet . de )  by mbox 60 . freenet . de with esmtpa ( id exim ) ( exim 4 . 52 # 5 )  id lduppd - 00076 l - ja  for kremp - gbr @ 01019 freenet . de ; tue , 19 jul 2005 12 : 59 : 47 + 0200  received : from pll 269 . nas 925 . te - fukuoka . nttpc . ne . jp ( [ 219 . 102 . 66 . 245 ] helo = mailwisconsin . com )  by mx 3 . freenet . de with smtp ( exim 4 . 52 # 3 )  id lduppc - 0004 fp - jp  for kremp - gbr @ freenet . de ; tue , 19 jul 2005 12 : 59 : 47 + 0200  received : from 205 . 214 . 42 . 66  ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ;  by mailwisconsin . com with http id j 87 gzo 09360393 ;  tue , 19 jul 2005 10 : 57 : 46 + 0000  message - id :  date : tue , 19 jul 2005 10 : 57 : 46 + 0000  subject : just to her . . .  from : \"\" barry castillo \"\"  to : kremp - gbr @ freenet . de  user - agent : squirrelmail / 1 . 4 . 3 a  x - mailer : squirrelmail / 1 . 4 . 3 a  mime - version : 1 . 0  content - type : text / html ; charset = iso - 8859 - 1  content - transfer - encoding : 8 bit  x - priority : 3 ( normal )  importance : normal  delivered - to : kremp - gbr @ freenet . de  envelope - to : kremp - gbr @ freenet . de  x - warning : message contains spam signature ( 149285 : : 050719125947 - 6 aa 64000 - 6081 c 675 )  soft viagra at $ 1 . 62 per dose  ready to boost your sex life ? positive ?  time to do it right now !  order soft viagra at incredibly low prices  starting at $ 1 . 99 per dose ! unbelivabie !\",1\n\"Subject: for your information  dear homeowner ,  after completing the review we are pleased to offer you the following ,  your current mortgage qualifies you for more than a 3 % lower rate !  ! ! u . s mortgage rates have never been lower ! ! !  millions of americans have re - financed this month alone !  so why not you ?  go here to make that change .  if you prefer to be left out of this amazing offer go here .\",1\n\"Subject: we deliver medication worldwide !  cialis helps to have an erection when you need it  we will not have peace by afterthought .  stay centered by accepting whatever you are doing . this is the ultimate .  you have to be deviant if you ' re going to do anything new .\",1\n\"Subject: perfect logo charset = koi 8 - r \"\" >  thinking of breathing new life into your business ?  start from revamping its front - end - logo and visuai identity .  loqodentity offers creative custom design of logos ,  stationery and web - sites . under our careful hand these powerfui marketinq toois  wiii bring a breath of fresh air into your business  and make you stand out among the competitors .  you are just a click  away from your future success . click here to see the samples of our artwork ,  check our prices and hot offers\",1\n\"Subject: spamassassin . taint . org  i discovered jmason . org in yahoo , my favorite directory . i am requesting that you create a link from jmason . org to my client ' s web site if you feel that their content is in some way related or complements your site . in exchange , i ' ll post a link from their site to yours .  exchanging links will help bring in more business for both your web site and my client ' s . an added benefit is increased search engine traffic because the search engines rank sites higher that have a good number of relevant links .  this is not a free - for - all link exchange , i don ' t waste my time with them and you shouldn ' t either . i am only linking to related web sites so that all my links are relevant to my site .  i would like to send you my client ' s web address , so that you can review their site . my client offers web site promotion and and optimization services for search engines .  please let me know if you are interested in exchanging links . i ' ll send you more details once i hear back from you .  looking forward to your reply .  sincerely ,  donna martos  donnamartos @ link - builder . com  http : / / www . link - builder . com  p . s . if for any reason you don ' t want me to contact again , just email me and let me know .\",1\n\"Subject: get a costco gold membership .  this is one of the best memberships you can get . visit here .  yfdjedbe\",1\n\"Subject: i ' m a changed maan  how to save on your medlcations o publishment ver 70 % .  thermit pharmshop - successfull and proven way to save y rosary our musket money .  grummet v  a neuter g  a mittimus l  l simplification u  solvency l  r twenties a valetudinary cl  operacloak is seawards val  juncture m  andmanyother .  best prlces breakaway .  worldwide shl lasher pplng .  easy order for coatee m .  total confidenti handle aiity .  250 , benchmark 000 satisfied customers .  order partly today and save !\",1\n\"Subject: give your partner more pleasure  the longz system , both the capsules and the free instructional manual , give  you the most effective ways to reach immediate size gains and improve the  strength and power of your erections .  90 % of males were interested in improving their sexual stamina ,  performance , and the size of their manhood . are you one of the 90 % ?  my name is charles , and i wanted to thank you for your personal attention  ( and answers to my extra questions ) , your support team is exceptional and  made me feel like a real valued customer . keep it up and thanks again !  - charles , ontario  check out the only male enhancement formula with a free dvd  http : / / tgo . t . . com / k /  po box in link above and you can say no thank you for future  under ordinary circumstances the stern features and flashing black eyes of  this redoubtable warrior would have struck a chill of fear to the boy ' s  heart ; but now under the influence of the crushing misfortunes he had  experienced , he was able to gaze with indifference upon the terrible visage  of the desert chief . the tatar seemed not to consider rob an enemy  instead , he looked upon him as an ally , since the turks had bound and  robbed him\",1\n\"Subject: naturally irresistible your corporate identity  lt is really hard to recollect a company : the  market is full of suqgestions and the information isoverwheiming ; but a good  catchy logo , styllsh statlonery and outstandlng webslte  wili make the task much easier .  we do not promise that having ordered a ioqo your  company will automatically become a worid leader : it isquite ciear that  without good products , effective business organization and practicable aim it  will be hotat nowadays market ; but we do promise that your marketing efforts  will become much more effective . here is the list of clear  benefits : creativeness : hand - made , original logos , specially done  to reflect your distinctive company image . convenience : logo and stationery  are provided in all formats ; easy - to - use content management system letsyou  change your website content and even its structure . promptness : you  will see logo drafts within three business days . affordability : your  marketing break - through shouldn ' t make gaps in your budget . 100 % satisfaction  guaranteed : we provide unlimited amount of changes with no extra fees for you to  be surethat you will love the result of this collaboration . have a look at our  portfolio _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: see to this proposal  hello !  compliments  i have been searching for a person whom we can jointly invest , trust in and  also solicit an honorable partnership with .  i want to confirm that your contact information was got from a web email  directory . i represent a client who is interested in investing in your  country in areas related to agriculture or any business of your choice , to  initiate a proper and structured relationship . please let me know what your  response will be to an offer to receive investment funds in cash if ;  1 . the said fund amounts to us $ 8 , 500 , 000 ( eight million , five hundred  thousand us dollars ) .  2 . the said fund is in cash and needs to be transferred in the same state ,  due to some covert reasons .  3 . the fund could be invested through your agency in the purchase of  facility and assets for investment purposes within your country , in  collaboration with the agency of the current brokers .  4 . this transaction will result in you being paid a commission of 10 % off  the investment capital .  5 . the fund owners desire absolute confidentiality and professionalism  in the handling of this matter , due to risks of seizure of the fund and  litigation if personalities are revealed .  the fund owners have interest to invest in any of the following industries ,  depending on which is most transparent , low risk , and average profit  yielding : power generation , telecommunication and software development , film  production , hardware manufacturing and export , medicine , construction or  real - estate development .  based upon the information provided above , i would like to know if you  shall be able to assist in the nature of managing the investment fund . you  must note that the fund can only be transferred in cash , therefore if you  are in acceptance to participate with us in the investment of the fund , you  shall also need to participate with us in the transfer of the fund in cash  in the manner of receiving the fund in cash and depositing it in a trusted  account opened in favour of the investment to be established .  and this account would serve as the base or operating account for the  investment . i am obliged to believe that you would be able to understand the  information above , and should you need further information , please do not  hesitate to ask .  kindly confirm receipt of this email by sending all correspondence to :  quazihossain 44 @ netscape . net  sincerely ,  quazi hossain ( esq )\",1\n\"Subject: the next move higher for strong market leader  homeland security investments  the terror attacks on the united states on september 11 , 2 ool have  changed  the security | andscape for the foreseeabie future . both physical and  logical  security have become paramount for all industry segments , especially in  the  banking , nationa | resource and government sectors . according to giga ,  a  who | | y owned subsidiary of forrester research , woridwide demand for  information security products and services is set to eclipse $ 46 b by  2 oo 5 .  homeiand security investments is a newsletter dedicated to providing  our  readers with information pertaining to investment opportunities in this  lucrative sector . as we know , events reiated to homeiand security  happen  with lightning speed . what we as investors can do is position  ourseives in  such a way as to take advantage of the current trends and be ready to  capitaiize on events which have yet to happen . homeland security  investments is here to help our readers do just that .  with this in mind , it is with great excitement that we present vinobie ,  inc .  this stock is expected to do big things in both the near and long  terms .  symbol : vnbl . ob  current price : o . o 8  short term target price : 0 . 35  12 month target price : 1 . 20  * * * why we beiieve vnbl . ob wi | | give big returns on investment * * *  * at this time much of vnbl ' s focus is on rfid ( radio frequency  identification ) technology . this is technoiogy which uses tiny sensors  to  transmit information about a person or object wireiessly .  * vnbl is aiready an industry pioneer in the rfid personal location  technoiogy .  * vnbl is developing a form of rfid technology which allows companies  and  governments to wireiessly track their assets and resources . such  technology  has huge potentia | in the protection and transportation of materials  designated \"\" high risk \"\" were they to fail into the wrong hands .  * vnbl works on integration of the two afore mentioned systems in order  to  create \"\" high security space \"\" in | ocales where it is deemed necessary .  locations which may take advantage of such systems are airports , sea  ports ,  mines , nuciear facilities , and more .  * as with a | | stocks , news drives the short term price . fresh news has  made vnbl a hot buy .  news on vnbl  malibu , caiif . - - ( business wire ) - - june 16 , 2 oo 5 - - vinobie , inc .  ( otcbb : vnbl -  news ) , a hoiding company seeking to identify | ong - term growth  opportunities  in the areas of homeland security , security information systems , and  other  security services , announced today that it plans to offer products and  services that wi | | assist in the automation of the identification and  control of equipment , assets , tools , and the reiated processes used in  the  oil & gas and petrochemica | industries .  aithough sma | | wireiessiy networked rfid sensors can monitor machines  and  equipment to detect possible problems before they become serious , they  can  aiso deliver safety features within oi | welis . oi | maybe trapped in  different | ayers of rock , aiong with gas and water . detection of  specific  | iquids can assist equipment in operating within a specific precise  opportune moment to ensure certain adverse conditions do not occur ,  such as  a well filiing with water .  as with other rf based technoiogy appiications , rfid can also provide  the  safe transit of materiais by oniy the authorized handier , and | imit the  entry of personnel to specific locations . ensuring personnel safety is  essential , should there be an emergency at a facility , rfid tags wouid  enable the customer to track and evaiuate its employee ' s safety and / or  danger . this application technology requires product and hardware that  can  operate in harsh and potentiaily hazardous conditions , but gives  vaiuable  safety to the resources and assets that are vital to the customer . rfid  can  aiso assist the customer ' s suppiy chain by tracking oi | , gas , and  chemica |  products from extraction to refining to the sale at the retail | eve | .  vinobie ' s viewpoint as previously stated is that these applications are  more  than just a valuable tool to the mining industry , but as a protective  measure of our country ' s natural resources and commodities against  threat .  preservation of these fueis and resources is important to the safety of  u . s .  industry and economy .  the company beiieves that such offering service and technology  application  in the oi | & gas and petrochemica | industry will further position  vinobie in  a rapidiy expanding industry while taking advantage of access to the  increasing capital and giobal spending that the company wi | | require  for  growth . the company ' s goa | is to also provide a much - needed service at  a  cost manageable to even the smaliest of businesses that can ' t afford to  do  without the safety of its personnel and assets in this current state of  constant threat .  this is outstanding news . the growth potential for this company is  exceptiona | . in an already hot industry , vnbl . ob stands out as a truiy  innovative pioneer . we see big things happening to this stock .  information within this emai | contains \"\" forward looking statements \"\"  within the meaning of section 27 a of the securities act of 1933 and  section 21 b of the securities exchange act of 1934 . any statements that  express or invoive discussions with respect to predictions ,  expectations , beliefs , plans , projections , objectives , goals ,  assumptions or  future  events or performance are not statements of historica | fact and may be  \"\" forward | ooking statements . \"\" forward | ooking statements are based on  expectations , estimates and projections at the time the statements are  made that involve a number of risks and uncertainties which could cause  actual results or events to differ materially from those presentiy  anticipated . forward | ooking statements in this action may be  identified  through the use of words such as \"\" projects \"\" , \"\" foresee \"\" , \"\" expects \"\" ,  \"\" will , \"\" \"\" anticipates , \"\" \"\" estimates , \"\" \"\" believes , \"\" \"\" understands \"\" or  that by  statements indicating certain actions \"\" may , \"\" \"\" could , \"\" or \"\" might \"\" occur .  as with many micro - cap stocks , today ' s company has additional risk  factors worth noting . those factors inciude : a limited operating  history ,  the company advancing cash to reiated parties and a sharehoider on an  unsecured basis : one vendor , a reiated party through a majority  stockhoider , suppiies ninety - seven percent of the company ' s raw  materiais :  reiiance on two customers for over fifty percent of their business and  numerous related party transactions and the need to raise capital .  these  factors and others are more fu | | y spelied out in the company ' s sec  fiiings . we urge you to read the fiiings before you invest . the rocket  stock  report does not represent that the information contained in this  message states a | | materia | facts or does not omit a materia | fact  necessary  to make the statements therein not misieading . a | | information  provided within this email pertaining to investing , stocks , securities  must  be  understood as information provided and not investment advice . the  rocket stock report advises ail readers and subscribers to seek advice  from  a registered professional securities representative before deciding to  trade in stocks featured within this email . none of the material within  this report shail be construed as any kind of investment advice or  soiicitation . many of these companies are on the verge of bankruptcy .  you  can lose all your money by investing in this stock . the pubiisher of  the rocket stock report is not a registered investment advisor .  subscribers should not view information herein as | ega | , tax ,  accounting or  investment advice . any reference to past performance ( s ) of companies  are  specially seiected to be referenced based on the favorable performance  of  these companies . you would need perfect timing to achieve the results  in the examples given . there can be no assurance of that happening .  remember , as aiways , past performance is never indicative of future  resuits and a thorough due diiigence effort , including a review of a  company ' s fiiings , should be completed prior to investing . in  compiiance  with the securities act of 1933 , section 17 ( b ) , the rocket stock report  discioses the receipt of tweive thousand dollars from a third party  ( gem , inc . ) , not an officer , director or affiliate shareholder for  the  circulation of this report . gem , inc . has a position in the stock  they  will se | | at any time without notice . be aware of an inherent conflict  of interest resulting from such compensation due to the fact that this  is a paid advertisement and we are conflicted . ail factual information  in this report was gathered from public sources , including but not  limited to company websites , sec fiiings and company press reieases .  the  rocket stock report beiieves this information to be reiiable but can  make  no guarantee as to its accuracy or completeness . use of the materia |  within this email constitutes your acceptance of these terms .\",1\n\"Subject: software should be easy to use !  fully functional , unrestricted copy of the software . get more results with less efforts .  it ' s better to be burnished with use than rusty with principle .  where reason fails , time oft has worked a cure .\",1\n\"Subject: perfect logo charset = koi 8 - r \"\" >  thinking of breathing new life into your business ?  start from revamping its front - end - logo and visuai identity .  loqodentity offers creative custom design of loqos ,  stationery and web - sites . under our carefui hand these powerful marketing tools  wiii bring a breath of fresh air into your business  and make you stand out amonq the competitors .  you are just a click  away from your future success . click here to see the samples of our artwork ,  check our prices and hot offers\",1\n\"Subject: need an outstanding logo now ?  working on your company ' s image ? start with a  visual identity a key to the first good impression . we are here to  help you ! we ' ll take part in buildinq a positive visuai imaqe  of your company by creatinq an outstanding iogo , presentabie stationery  items and professionai website . these marketing tools wiil significantiy  contributeto success of your business . take a look at our work samples , hot deai packaqes and  see what we have to offer . we work for you !  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: high growth investing for tomorrow  high growth investing  company ceo interviewsemerging technologies new trends to watchindustry statistics  view pdf  are americans and the rest of the world becoming  addicted to online gaming ? analysts predict over  $ 14 billion dollars a year will go to online casinos  gaming stocks may be set to explode !  read the full  10 page report  includes inside :  company profile : gaming transactions inc .  this publicly traded company looks like it has what it takes to become  a big player in the online gambling world . could it be the next payoff  for investors ? . . . more  the online gambling market  given the rate at which this market is expanding across the planet , the  outlook for the online gaming industry looks very positive . do the  numbers add up for investors ? . . . more  how big could it get ?  online gaming has become a seriously big business , with shares in some  companies increasing by up to eight times inside a year . . . . more  pick of the month : ggts  gaming transactions operates in one of the fastest growing industries  around and has an experienced management team . early investors , who get  in before the institutional investors , could make a fortune . . . . more  ggts : ceo interview  patrick smyth and stephen white head up company dedicated to bringing the next generation of online gaming . . . read full interview  the asian market  according to the diffusion group and game trust , china will become the # 1 online gaming market by 2007 . . . . more  investors are making huge gains as the world bets online .  could gaming transactions inc . ( gtts ) be the next stock to rock ?  recently ,  we read an article in the economist that highlighted online gaming and  how it has become a socially acceptable form of entertainment . over the  next few days , as we thought about what sort of impact this trend could  have , we started to notice that online gambling was being discussed all  over the media - in newspapers , online and on television . it became  obvious to us that more and more people were jumping on the internet to  bet on games . we also came across some staggering statistics .  merrill lynch , for example , has predicted that gambling has the  potential to account for a full 1 % of global economic activity ! another  source , ecommercetimes . com , recently reported that the scope of this  business is so enormous that some have even claimed that it is the  single most important factor in the growth of e - commerce . the online  gaming industry , in other words , appears to be booming , and it may be  an ideal time to is time to invest .  we decided to  find out who the key players were in the business . after speaking with  a number of industry insiders , the trail led us to an emerging ,  publicly traded company called gaming transactions inc . ( ggts ) . after a  close look at ggts , we decided that this company could produce huge returns on investment in the upcoming months .  although  ggts is a new company , it has some surprisingly experienced players at  the helm an uncommon thing to find in an industry only ten years old .  the company has come out with online versions of the addictive game keno .  and its management team was smart enough to secure the rights to the  keno . com website , which , if youre marketing keno , is as good as it  gets . keno has the widest spread for the house of any mainstream  gambling game . ggts is also about to launch a suite of other online  gambling games , including poker and sports - book betting . once it offers  these popular games , and given that it already has keno . com online , the  company could bring in great revenues , attracting a lot of attention in  the investment community and driving up its stock price .  after a successful north american launch ,  gaming transactions inc . ( gtts ) has translated its games into chinese  and is about to hit asia . this initiative looks like a wise business  decision : many analysis anticipate that china will be the biggest  source of online gambling revenue by 2007 , so the company could be poised for massive expansion in terms of both profits and global reach .  what  does all this tell us ? a brand new company , a popular , well - known game ,  one of the biggest spreads for the house , a growing market , experienced  management , and a stock price that is trading under a dollar it adds up to the potential for huge gains for early investors . if youre interested in more information on the market and gaming transactions inc . , click here to read a free ten - page report . . .  to join market movers mailings http : / / ggtsstock . com to find out more .  first source data inc .  4535 west sahara ave # 217  las vegas nevada 89102  disclosure and disclaimer  investment news indepth reports ( hereinafter inir ) , operated by first  source data , inc . ( hereinafter fsd ) , is a business news publication  of regular and general circulation . this issue is not a research  report , does not purport to provide an analysis of any companys  financial position , and is not in any way to be construed as an offer  or solicitation to buy or sell any security . gaming transactions inc .  ( hereinafter ggts ) is the featured company . fsd managed the  publishing and distribution of this publication . the information  contained herein is being republished in reliance on statements made by  ggts management , and publicly disseminated information issued by third  parties regarding ggts and the online gaming industry , which are  presumed to be reliable , but neither fsd nor its editors , employees , or  agents accept any responsibility for the accuracy of such statements or  information , or the contents herein which are derived therefrom .  readers should independently verify all statements made in this  advertisement .  fsd has received compensation for the production and distribution of  this newsletter . the compensation received is in the amount of one  hundred and twenty eight thousand dollars and was received from  accelerated capital limited ( hereinafter acl ) for this advertising  effort . acl is a shareholder of ggts . because fsd received compensation  for its services , there is an inherent conflict of interest in the  statements and opinions contained in this newsletter and such  statements and opinions cannot be considered independent .  internet - based companies , and those involving online gaming in  particular , are almost always very high risk investments , and investors  should be aware that they could potentially lose any investment made in  such companies in its entirety . we strongly encourage readers to  undertake their own due diligence to decide the best course of action  in connection with any investment decision that they might make . any  investment should be made only after consulting with a qualified  investment advisor .  media matrix 7025 county rd . 46 a dtel 071 # 349 lake mary , fl 32746 this e - mail message is an advertisement and / or solicitation .\",1\n\"Subject: look 10 years younger - free sample ! ! ! ! ! ! ! ! esoy  this e - mail ad is being sent in full compliance with u . s . senate bill 1618 , title # 3 , section 301  to remove yourself send a blank e - mail to : removal 992002 @ yahoo . com  free sample ! free tape !  new cosmetic breakthru !  look 10 years younger in ( 6 ) weeks or less !  look good duo . . from the inside out . . . . .  > from the outside in !  introducing . . . . natures answer to faster  and more obvious results for :  * * wrinkles  * * cellulite  * * dark circles  * * brown spots . . .  * * lifts the skin  * * strenghtens the hair and nails  also helps to . . . . . . . .  * reduce cell damage from excessive sun exposure  * stimulate colllagen formation  * provide protection against skin disorder  * and is hopoallergenic  find out what ! where ! and how !  to order your free sample and tape send your  request to :  lookyoungnow 2000 @ yahoo . com  subject : subscribe to free sample :  your name : . . . . . . . . . . . . . . . . . . .  street address : . . . . . . . . . . . . . .  city : . . . . . . . . . . . . . . . . . . . . . . . .  state and zip code : . . . . . . . . . .  email address : . . . . . . . . . . . . . . .  sxjrohvneydjgucyfa\",1\n\"Subject: still wanna her ? : - )  you have not tried cialls yet ?  than you cannot even imagine what it is like to be a real man in bed !  the thing is that a great errrectlon is provided for you exactiy when you want .  cialis has a lot of advantages over viagra  - the effect iasts 36 hours !  - you are ready to start within just 10 minutes !  - you can mix it with aicohoi ! shippinq to any country avaiiabie !  get it right now ! . \",1\n\"Subject: cheap software  http : / / uracil . mainoemstore . com / ? a = 3107\",1\n\"Subject: important notice : june 21 , 2005  important notice :  june 21 , 2005  dear sir / madam ,  barclays bank plc .  always looks forward for the high security of our clients . some  customers have been receiving an email claiming to be from  barclays advising them to follow a link to what appear to be a  barclays web site , where they are prompted to enter their  personal online banking details . barclays is in no way involved  with this email and the web site does not belong to us .  barclays is proud  to announce about their new updated secure system . we updated  our new ssl servers to give our customers a better , fast and  secure online banking service .  due to the recent update of the servers , you are requested to  please update your account info at the following link .  j . s .  smith  security advisor  barclays bank plc .  please do not reply to  this e - mail . mail sent to this address cannot be answered .  for assistance , log in to your barclays online bank account and choose  the \"\" help \"\" link on any page .  barclays email id # 1009 \",1\n\"Subject: cool page  please active this link www . informatii . as . ro  this email was sent by unregistered version of postman professional . please visit : www . email - business . com\",1\n\"Subject: save your money by getting an oem software !  need in software for your pc ? just visit our site , we might have what you need . . .  best regards ,  fallon \",1\n\"Subject: get the software you need , now !  save up to 40 % on popular software bundles !  last words are for people who haven ' t said anything in life .  human nature constitutes a part of the evidence in every case .\",1\n\"Subject: kinja account activation  hello , iztari :  thanks for creating an account . to begin tracking your favorite sites with kinja , you need to validate your email address . simply click on this link :  or copy the link , and paste it into the address line in your web browser .  here ' s some useful information to keep on file :  * your username : iztari  * answers to frequently asked questions : http : / / www . kinja . com / help /  welcome !  the kinja team\",1\n\"Subject: sex is a play , and you must win !  your source for the very best viagra deals on the ' net . always up to date !  luck is what happens when preparation meets opportunity .  in order to be a realist you must believe in miracles .  consistency is the last refuge of the unimaginative .\",1\n\"Subject: usa cheapest licensed pharmacy  we provide top class world wide lifestyle medications , at incredible prices .  if a man cannot choose , he ceases to be a man .  something is rotten in the state of denmark .  the structure of language determines not only thought , but reality itself .\",1\n\"Subject: loose your fat in 9 days  are you  overweight ?  loose 9 pounds every 11  days !  do you want to loose weight fast  the natural way ?  the idiot proof diet  will help you shed 9 pounds every 11 days , take it for a free test drive  at the link below :  click here for the  idiot proof diet  w a r n i n g :  if  you notice that you are loosing too much weight to quickly , then you  should stop dieting for a few days if you loose more than 1 pound per  day you should slow down a little .  click here for the  idiot proof diet  affid : zoolant 44561  getresponse marketing p . 0 box 1451 waterfall , south africa 3652 this e - mail message is an advertisement and / or solicitation . \",1\n\"Subject: http : / / www . blomqvist . org  hello ,  i have visited www . blomqvist . org and noticed that your website is not listed on some search engines . i am sure that through our service the number of people who visit your website will definitely increase . seekercenter is a unique technology that instantly submits your website to over 500 , 000 search engines and directories - - a really low - cost and effective way to advertise your site . for more details please go to seekercenter . net .  give your website maximum exposure today !  looking forward to hearing from you .  best regards ,  vanessa lintner  sales marketing  www . seekercenter . net  you are receiving this email because you opted - in to receive special offers through a partner website . if you feel that you received this email in error or do not wish to receive additional special offers , please enter your email address here and click the button of remove me : \",1\n\"Subject: you need only 15 minutes to prepare for the night of love .  same medicine , different price !  teachers open the door . you enter by yourself .  the secret of success is constancy to purpose .  it ' s easy to quit drinking . i ' ve done it a thousand times .  love is not love which alters when it alteration finds .\",1\n\"Subject: reply a . s . a . p  united trust bank limited  80 haymarket , london  swly 4 te  i am mr . alexander george , the account officer of mr . morris  thompson who died in the plane crash of alaska airlines  flight 261 which crashed on january 31 2000 along with his  wife and only daughter ( who happens to be his next of kin ) .  he has an account with us . you should read more about the  crash on visiting this site ( s ) .  since we got information about his death , we have been  expecting his next of kin or relatives to come over and  claim his money because we cannot release it unless somebody  applies for it as next of kin or as a relative to the  deceased as indicated in our banking guidelines .  i was contacted by the executor of his will to find somebody  that can stand in as his next of kin , so that the funds  would not be trapped in our bank . all legal paper work will  be taken care of by him ( the executor )  if you are favorably disposed to joing us in doing this ,  please respond as soon as possible . in the event you are not  interested , i sincerely ask that you disregard this email  and tell no one about it . i am very careful on truncating my  banking career should you mention this to someoneelse . i  hope you can be trusted in this regard .  regards ,  alexander george\",1\n\"Subject: congratulations  the free lotto company  uk head office  suite 25 - 32 , lion towers  central london  england .  www . freelotto . com  the free lotto company  branch office  suite 1105 ap zuid - oost  amsterdam netherlands .  dear winner ,  we are please to announce you as one of the lucky winners  in the  freelotto draw held on the 21 th of july 2005 . all winning  addresses , you  havetherefore been approved for a lump sum pay out of  us $ 1 . 500 , 000 . 00 ( 0 ne million  five hundred thousand united states dollars )  congratulations ! ! ! due to mix up of some numbers and names ,  we ask that  you keep your winning information confidential until your  claims has  been processed and your money remitted to you . this is  part of our  security protocol to avoid double claiming and unwarranted  abuse of this  program by some participants . all participants were  selected through a  computer ballot system drawn from over 40 , 000 company and  20 , 000 , 000  individual email addresses and names from all over the  world .  this promotional program takes place every year . this  lottery was  promoted and sponsored by association of software  producers . we hope with  part of your winning , you will take part in our next year  us $ 20 million  international lottery  winner in this year ' s annual freelotto draw .  consequently , you have therefore been approved for a total  pay out of us $ 1 . 500 , 000 . 00 ( one million five hundred  thousand )  only . the following particulars  are attached to your lotto payment order :  ( i ) winning numbers : fl - 34 - 76 - 90 - 45  ( ii ) email ticket number : fl - 864 / 33 / 98  ( iii ) lotto code number : fl - 34876 / uk  ( iv ) the file ref number : fl / 62 / 075983628 / uk  please contact the underlisted claims agent as soon as  possible for the immediate release of your winnings :  mr . adeyinka johnson  chief financial director  the freelotto company  tel : + 44 - 703 - 190 - 7427  email : callmeadeyinka @ yahoo . com ( email )  n . b : steps to claiming your prize ;  1 . please quote your reference number in all correspondence  with the claims officer .  2 . winners must send your : names , address , sex , occupation ,  age , telephone number  3 . identification ( international passport or driver  slicence )  to the claims agent  mr . adeyinka johnson to process and make  immediate payment of their prize .  once again on behalf of all our staff ,  congratulations ! ! !  sincerely ,  greg jones  promotions manager  the lotto company  uk & europe\",1\n\"Subject: need creative power ? logodentity is here to help .  thinking of breathing new life into your business ?  start from revamping its front - endlogo and  visualidentity .  we offer creative custom desiqn of logos ,  stationery and web - sites . under our carefui hand thesepowerful marketinq  toois wiil brinq a breath of fresh air into your business and make you stand out  amonqthe competitors .  you are just a ciick  away from your future success . click here to see the samples of our artwork ,  checkour prices and hot offers .  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: 10 minutes before sex , lasts for 24 - 36 hours  best prescription generic meds 4 less .  ready tears are a sign of treachery , not of grief .  life is a zoo in a jungle .  we two are to ourselves a crowd .\",1\n\"Subject: a new era of online medical care .  right place to look for buying cheap viagra online !  emancipate yourselves from mental slavery , none but ourselves can free our minds .  don ' t let it end like this . tell them i said something .  measure not the work until the day ' s out and the labor done .\",1\n\"Subject: re : protect your computer , you need systemworks ! coxr  take  control of your computer with this top - of - the - line software !  norton  systemworks 2002 software suite  - professional edition -  includes  six - yes 6 !  - feature - packed utilitiesall for 1  special low  price of only  $ 29 . 99 !  this  software will : -  protect your computer from unwanted and hazardous viruses -  help secure your private valuable information - allow  you to transfer files and send e - mails safely -  backup your all your data quick and easily - improve your  pc ' s performance w / superior  integral diagnostics ! - you ' ll never have to take your  pc to the repair shop again !  6  top - of - the - line utilitiesl  great price  a  $ 300 +  combined retail value  yours for  a limited time  for only ! ! ! $ 29 . 99 ! ! !  price includes free shipping ! and  for a limited time buy 2 of our products get 1 free !  don ' t fall  prey to destructive viruses or hackers ! protect your computer and  your valuable information and  -  click here to order yours now ! -  or call  toll - free 1 - 800 - 861 - 1481 !  your email  address was obtained from an opt - in list . opt - in eaf ( ecommerce anti - spam  federation ) approved list - type upc prefix = yy * wudo 2 flus . to  unsubscribe from this list , please click  here . you need to allow 5 business days for removal . if you have previously unsubscribed and are still receiving  this message , you may visit our spam  abuse control center . we do not condone spam in any shape or form .  thank you kindly for your cooperation . \",1\n\"Subject: in the heart of your business !  corporate image can say a lot of things about your  company . contemporary rhythm of life is too dynamic . sometimes it takes only  several seconds for your company to be remembered or to be lost amonq  competitors . get your iogo , business stationery or website done right  now ! fast turnaround : you wiii see several iogo variants in three  business days . satisfaction quaranteed : we provide unlimited amount of  chanqes ; you can be sure : it will meet your needsand fit your  business . flexibie discounts : loqo improvement , additionai formats , bulk  orders , special packages . creative design for competitive price : have a look at it right  now ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: the ultimate in pc security and surveillance .  * this message is sent in  compliance of the new email bill hr 1910 . under bill hr 1910 passed  by the 106 th us congress on may 24 , 1999 . per section hr 1910 . if  you wish to be removed from our mailing list , please click  here . all removal requests are handled electronically and may  take up to 24 hours to become in effect . \",1\n\"Subject: returned mail : see transcript for details  the original message was received at tue , 12 jul 2005 12 : 09 : 30 + 0200  from antonio . urjc . es [ 193 . 147 . 184 . 24 ]  - - - - - the following addresses had permanent fatal errors - - - - -  ana . elvira @ urjc . es  ( reason : deferred )  ( expanded from : )  - - - - - transcript of session follows - - - - -  maildrop : error writing to mailbox .  ana . elvira @ urjc . es . . . deferred : local mailer ( / usr / sbin / sensible - mda ) exited with ex _ tempfail  message could not be delivered for 5 days  message will be deleted from queue\",1\n\"Subject: we use to be friends  dear applicant ,  after further review upon receiving your application your current mortgage qualifies for a 3 % lower rate .  your new monthly payment will be as low as $ 340 / month for a $ 200 , 000 loan .  please confirm your information in order for us to finalize your loan , or you may also apply for a new one .  complete the final steps by visiting our 60 second form  we look foward to working with you .  thank you ,  jane barron , account manager  helian and associates , llc .  - - - - - - - - - - - - - - - - - - - - - - -  not interested - http : / / www . lending - leadersx . net / r . php \",1\n\"Subject: you don _ t know how to attract customers to your website ?  submitting your website in search engines may increase your online sales dramatically .  if you invested time and money into your website , you simply must submit your website  online otherwise it will be invisible virtually , which means efforts spent in vain . if you want  people to know about your website and boost your revenues , the only way to do that is to  make your site visible in places where people search for information , i . e . submit your  website in multiple search engines .  submit your website online and watch visitors stream to your e - business .  best regards ,  roselle sims\",1\n\"Subject: wed , 06 jul 2005 23 : 15 : 07 + 0300  dear homeowner ,  you have been pre - approved for a $ 430 , 700 home loan at a 3 . 20 fixed rate .  this offer is being extended to you unconditionally and your credit is in no way a factor .  to take advantage of this limited time opportunity , all we ask is that you visit the link below and complete the 1 minute post approval form .  sincerely ,  joseph jones\",1\n\"Subject: free ltc \"\" sales closers \"\"  which virtually sells long term care to your clients !  this turnkey presentation prepares your client for the sale . it  has both video and audio , so you just sit back , run the presentation ,  and get the applications ready .  the same great tool in a flip chart format with a  complete script to keep you on track .  the choice is yours choose one of these great  ltc point - of - sale items . which gift would you like ? all you have  to do is complete appointment paperwork with mo marketing .  respond to this e - mail or call us today and we will send over  the paperwork for one of our top carriers . remember - - we train  our agents on products - free - and we also give at least a $ 50  commission bonus for every app you send us . \"\"  for agent use only .  please fill out the form below for more information  name :  e - mail :  phone :  city :  state :  we don ' t want anybody to receive  our mailing who does not wish to receive them . this is a professional  communication sent to insurance professionals . to be removed from  this mailing list , do not reply to this message . instead , go here :  http : / / www . insurancemail . net  legal notice \",1\n\"Subject: atft . pk has announced the acquisition between atft and first pet life .  pink sheets : atft . pk has announded the acquisition  between atft and first pet life . the transactjion will  be non - diluted to current shareholders .  about first pet life :  atft offers coverage at an afforable level that will safely and securely help aviod the worried of unexpected vet bills . atft offers pet insurance discounted services , such as supplies , grooming and boarding . these services are available not only to pet owners in the usa but all over the world ! ! from vaccinations to dog food they will protect and assist the family and their pets for a complete life .  atft looks forward to giving pet owners all over the world the opportunity and the ability to afford coverage for their pets and will strive to become a valuable part of you family and protection for your pet ' s life and well being .  press release  american television and film company in talks with first pet life  thursday june 9 , 8 : 00 am et  dallas - - ( business wire ) - - june 9 , 2005 - - american television and film company ( pink sheets : atft - news ) announced today that it is in talks with first pet life about the possible acquisition of first pet life . no further details are available at this time .  about american television and film company :  american television and film company ( pink sheets : atft - news ) develops feature films and television shows for worldwide distribution . additional information about the company and current projects can be found at www . americantvandfilm . com .  about first pet life :  first pet life offers many discounted services including insurance , pet supplies , boarding , and grooming . as a pethealth insurance provider , first pet life has the backing of an insurance industry leader . the comprehensive coverages offered are broad yet inexpensive for the typical household . additional information is available at www . firstpetlife . com .  disclaimer :  matters discussed in this press release are \"\" forward - looking statements . \"\" statements describing objectives or goals or the company ' s future plans are also forward - looking statements and are subject to certain risks and uncertainties , including the financial performance of the company and market valuations of its stock , which could cause actual results to differ materially from those anticipated .  source : american television film  safe harbor statement  this report is for informational purposes only , and is neither a solicitation to buy nor an offer to sell securities . investment in low - priced small and micro - cap stocks are considered extremely speculative and may result in the loss of some or all of any investment made in these companies . reveal marketing , llc is not a registered investment advisor or a broker - dealer . information , opinions and analysis contained herein are based on sources believed to be reliable , but no representation , expressed or implied , is made as to its accuracy , completeness or correctness . the opinions contained herein reflect our current judgment and are subject to change without notice . reveal marketing , llc assumes no responsibility for updating the information contained herein regardless of any change in atft ' s financial or operating condition . as reveal marketing , llc has received compensation for this report , and will benefit from any increase in share price of the advertised company , there is an inherent conflict of interest in our statements and opinions . reveal marketing , llc accepts no liability for any losses arising from an investor ' s reliance on , or use of , this report . atft will require additional capital to realize its business plan and continue as a going concern . expedite has been paid in the amount of fifteen thousand dollars for the transmission of this message . . reveal marketing , llc and its affiliates or officers may buy hold or sell common shares , of mentioned companies , in the open market or in private transactions at any time without notice . certain information included herein is forward - looking within the context of the private securities litigation reform act of 1995 , including , but not limited to , statements concerning manufacturing , marketing , growth , and expansion . the words \"\" may , \"\" \"\" would , \"\" \"\" will , \"\" \"\" expect , \"\" \"\" estimate , \"\" \"\" anticipate , \"\" \"\" believe , \"\" \"\" intend , \"\" and similar expressions and variations thereof are intended to identify forward - looking statements . such forward - looking information involves important risks and uncertainties that could affect actual results and cause them to differ materially from expectations expressed herein .  reveal marketing 3521 oak lawn ave . , ste . 405 dallas , tx 75219 this e - mail message is an advertisement and / or solicitation . \",1\n\"Subject: [ ilug - social ] prirodu requiremus social sample  social  on january lst 2002 , the european countries began  using the new euro . never before have so  many countries with such powerful economies united  to use a single currency . get your piece of history  now ! we would like to send you a free euro  and a free report on world currency . just visit  our site to request your euro and euro report :  in addition to our currency report , you can receive  our free investment package :  * learn how $ 10 , 000 in options will leverage $ 1 , 000 , 000 in  euro currency . this means even a small movement in the market  has huge profit potential . csice  if you are over age 18 and have some risk capital , it ' s  important that you find out how the euro will  change the economic world and how you can profit !  please carefully evaluate your financial position before  trading . only risk capital should be used .  8 c 43 fd 25 cb 6 f 949944 eel 2 c 379 e 50028  utbxcuhepuffbnkwq  full opt - out instructions on the bottom of the site  - -  irish linux users ' group social events : social @ linux . ie  http : / / www . linux . ie / mailman / listinfo / social for ( un ) subscription information .  list maintainer : listmaster @ linux . ie\",1\n\"Subject: logo , stationer , website design and so much more !  lt is really hard to recollect a company : the  market is full of suqgestions and the information isoverwhelming ; but a good  catchy logo , styllsh stationery and outstanding website  will make the task much easier .  we do not promise that having ordered a loqo your  company wiil automaticaiiy become a world ieader : it isquite clear that  without good products , effective business organization and practicable aim it  will be hotat nowadays market ; but we do promise that your marketing efforts  will become much more effective . here is the list of clear  benefits : creativeness : hand - made , original logos , specially done  to reflect your distinctive company image . convenience : logo and stationery  are provided in all formats ; easy - to - use content management system letsyou  change your website content and even its structure . promptness : you  will see logo drafts within three business days . affordability : your  marketing break - through shouldn ' t make gaps in your budget . 100 % satisfaction  guaranteed : we provide unlimited amount of changes with no extra fees for you to  be surethat you will love the result of this collaboration . have a look at our  portfolio _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: . . . if you ' re looking for the lowest software prices on the web , you just found them !  get software cds and download under $ 15 - $ 99  a straw vote only shows which way the hot air blows .  poverty is the parent of revolution and crime .\",1\n\"Subject: make a fortune on ebay 24772  ebay - # 1 rated work at home business  opportunity  - pc magazine  fortunes are literally being made in  this great new marketplace !  over $ 9 billion  in merchandise was sold on ebay in 2001 by people just like you  - right from their homes .  now you too can learn the secrets of successful  selling on ebay and make a staggering income from the  comfort of your own home . if you are motivated , capable  of having an open mind , and can follow simple directions , then  visit us here .  we are strongly against sending unsolicited  emails to those who do not wish to receive our special mailings . you have  opted in to one or more of our affiliate sites requesting to be notified  of any special offers we may run from time to time . we also have attained  the services of an independent 3 rd party to overlook list management and  removal services . this is not unsolicited email . if you do not wish to  receive further mailings , please go  here to be removed from the list . please accept our apologies if you  have been sent this email in error .  charset = iso - 8859 - 1 \"\" > \",1\n\"Subject: re : 6 . 25 30 yr fixed home loan , no points flu  dear  homeowner ,  * 6 . 25 %  30 yr fixed rate mortgage  interest  rates are at their lowest point in 40 years ! we help you find the  best rate for your situation by matching your needs with hundreds  of lenders ! home improvement , refinance , second  mortgage , home equity loans , and more ! even with less  than perfect credit !  click here for a free quote !  lock  in your low fixed rate today  ano  points  ano  cost out of pocket  ano  upfront fees  ano  obligation  afree  consultation  aall  credit grades accepted  6 . 25 % won ' t stay this low forever !  click for your free quote , now !  h  apply  now and one of our lending partners will get back to you within  48 hours .  click here !  to be removed please clicking  here . \",1\n\"Subject: all graphics software available , cheap oem versions .  good morning ,  we we offer latest oem packages of all graphics and publishing software from corei , macromedia , adobe and others .  $ 80 adobe photoshop 8 . 0 / cs  $ 140 macromedia studio mx 2004  $ 120 adobe acrobat 7 . 0 professionai  $ 150 adobe premiere pro 1 . 5  $ 90 corei desiqner 10  $ 90 quickbooks 2004 professionai edition  $ 75 adobe pagemaker 7 . 0  $ 70 xara x vl . 1  $ 75 adobe audition 1 . 5  $ 90 discreet 3 d studio max 7  $ 115 adobe golive cs  $ 135 adobe after effects 6 . 5 standard  $ 45 adobe premiere elements  $ 125 corel painter ix  $ 80 adobe liiustrator cs  $ 80 adobe lndesign cs  $ 240 adobe creative suite  $ 140 adobe framemaker 7 . 1  $ 50 uiead cooi 3 d production studio 1 . 0 . 1  $ 90 aiias motion buiider 6 professionai  $ 30 quicken 2004 premier home & biz  $ 30 adobe photoshop eiements 3 . 0  $ 110 adobe premiere pro 7 . 0  learn more . . .  sincereiy ,  lsiah \",1\n\"Subject: please help my child  dear sir / mam ,  i have send this email in order to recive some help .  i am a single father from italy and i have a big problem . my 2 year child is cancer sick and i need money to treat him . i don ' t ask for lots off money but as much as you want : 1 $ 2 $ . . . . i will be pleased .  this is my sweet boy nely :  nely pictures  the pics say all the things .  if you have a hart and you are a father then please this is my paypal email address : david _ horatiul 23 @ yahoo . com .  thank you and i ' m very sorry for this email , but i need help .  have a nice day and good bless you !  please help my boy ! ! ! \",1\n\"Subject: entrust your visual identity to us  thinking of breathing new life into your business ?  start from revamping its front - endlogo and  visualidentity .  we offer creative custom desiqn of logos ,  stationery and web - sites . under our careful hand thesepowerfui marketinq  toois will brinq a breath of fresh air into your business and make you stand out  amongthe competitors .  you are just a click  away from your future success . click here to see the sampies of our artwork ,  checkour prices and hot offers .  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: hello bevstarl 0  dear bevstarl 0 ,  rape sex !  click here  do you like sexy animals doing the wild thing ? we have the super hot content on the internet !  this is the site you have heard about . rated the number one adult site three years in a row !  - thousands of pics from hardcore fucking , and cum shots to pet on girl .  - thousands videos  so what are you waiting for ?  click here  you must be at least 18 to enter !  to not be on our in house address database  click here and you will eliminated from future mailings .  [ : kj ) _ 8 j 7 b ]\",1\n\"Subject: set & forget ! blast your ad over 200 million leads  2 ) you posted to one of my ffa pages ;  3 ) you have responded to one of my ads ;  4 ) you have sent an e - mail to one my addresses  5 ) you visited one of my sites  by doing so , you have agreed to receive this message . under bill s .  l 6 l 8 title iii passed by the 105 th us congress this letter cannot be  considered spam as long as the sender includes contact information &  a method of \"\" removal . \"\" however this is a one time mailing so there ' s no  removal required . thank you for your kind consideration .  @ @ @ @ @ @ @ @ @ @ @ @ @ @ disclaimer @ @ @ @ @ @ @ @ @ @ @ @ @\",1\n\"Subject: do you want a rolex for $ 75 - $ 275 ?  replica watches  http : / / dragon . valentlne . com / repli / lib /  freedom is nothing else but a chance to be better .  it does not do to dwell on dreams and forget to live .  the only thing sadder than a battle won is a battle lost .  assassination is the extreme form of censorship .\",1\n\"Subject: discover the new winning sexual erection pills !  prescriptions for female sexual disfunction  i exist as i am , that is enough .  the covers of this book are too far apart .  a person ' s a person , no matter how small .  a young man is embarrassed to question an older one .\",1\n\"Subject: are you ready to get it ?  hello !  viagra is the # 1 med to struggle with mens ' erectile dysfunction .  like one jokes sais , it is strong enough for a man , but made for a woman ; - )  orderinq viaqra online is a very convinient , fast and secure way !  millions of people do it daily to save their privacy and money  order here . . . \",1\n\"Subject: a wedding consulting business of your own  do you know what a wedding consultant is ?  maybe it ' s something you ' ve always thought about doing , but didn ' t know where to start , how to start , when to start . or even if an opportunity like this existed .  it does ! and a touch of class would like you to invite you to be a part of it .  wedding consulting isn ' t wedding planning . it ' s a fun , exciting , rewarding , and high - paying job that lets you use your creativity to be a part of the happiest day of people ' s lives . our wedding consultants help oversee some of the important details necessary to create the wedding of their client ' s dreams , focusing on just a few key pieces of a wedding : coordinating stationary , favors , gifts , personalized websites , and other creative additions to make weddings just a little more special , personal , and memorable .  a touch of class wedding consulting provides a new and exciting opportunity for you to take a bold step for yourself , and serve the needs of many others in the process . a touch of class is an established and successful wedding consulting business . our consultants provide thoughtful touches , creative advice , event expertise , and quality products to add special value to a most special day , all through our network of vendors and suppliers . we provide everything they need to do their job and to do it well , with end to end support , training , administration , sales , and relationship building .  now , a touch of class is creating a national network of wedding consultants . it ' s an exciting opportunity . perhaps it ' s the right opportunity for you . to learn more about our program , and about being a wedding consultant , click below to view our brief program overview .  click here for program overview presentation  the need for professional wedding consultants has grown tremendously . with more than two - - and - a - half million weddings and almost seventy billion dollars spent on weddings last year alone , there are more opportunities for wedding consultants than ever before .  after you ' ve had a chance to view our presentation , if you feel this is something that ' s right for you , then call or email me to get started , and we can schedule a time to discuss the program together in greater detail .  sincerely yours ,  nicole  nicole wilder  president  a touch of class wedding consulting  t : 800 - 870 - 0029 ext . 5101  f : 203 . 924 . 0634  email : nicole . wilder @ atocweddings . com  web : www . atocweddings . com  a touch of class 223 canal st . shelton , ct 06484 this e - mail message is an advertisement and / or solicitation . \",1\n\"Subject: in the heart of your business !  corporate image can say a lot of things about your  company . contemporary rhythm of life is too dynamic . sometimes it takes only  several seconds for your company to be remembered or to be iost among  competitors . get your ioqo , business stationery or website done riqht  now ! fast turnaround : you wiii see several ioqo variants in three  business days . satisfaction quaranteed : we provide uniimited amount of  changes ; you can be sure : it will meet your needsand fit your  business . fiexible discounts : iogo improvement , additional formats , bulk  orders , special packages . creative design for competitive price : have a look at it right  now ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: perfect logo charset = koi 8 - r \"\" >  thinking of breathing new life into your business ?  start from revamping its front - end - logo and visuai identity .  logodentity offers creative custom desiqn of loqos ,  stationery and web - sites . under our careful hand these powerful marketing toois  wili bring a breath of fresh air into your business  and make you stand out among the competitors .  you are just a click  away from your future success . click here to see the sampies of our artwork ,  check our prices and hot offers\",1\n\"Subject: need a graphic artist ? come here .  thinking of breathing new life into your business ?  start from revamping its front - endlogo and  visualidentity .  we offer creative custom design of ioqos ,  stationery and web - sites . under our carefui hand thesepowerful marketing  toois wiii brinq a breath of fresh air into your business and make you stand out  amongthe competitors .  you are just a ciick  away from your future success . click here to see the sampies of our artwork ,  checkour prices and hot offers .  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: low price software  http : / / woe . mainoemstore . com / ? a = 3107\",1\n\"Subject: uae enquiries  dear sirs ,  emiratestenders provides you with the latest business information on projects , tenders , enquiries and business deals in the united arab emirates .  we will keep you informed about all business activities in abu dhabi , dubai , sharjah , al ain & northern emirates in areas such as construction , oilfield development , telecommunication , information technology , medical , power generation , roads & bridges & more .  emiratestenders provides members free access to the most comprehensive and detailed real time project and tender database with many benefits including :  complete access to our detailed real time database on all projects , tenders and enquiries in united arab emirates . ( details provided are : project number , project name , territory , client , client address , description , invitation date , post date , closing date , tender cost , budget , contractors , consultants , tender categories , status , remarks )  free e - mail notification on preferred areas of business and useful local business news .  easy to use search options .  archive of over 8 , 000 projects and tenders for market research and analysis which is updated on a daily basis .  a newsletter with information on the latest business activities in the uae .  free consultancy on local business requirements in the territory .  the people at emiratestenders have indepth knowledge and experience about the local market and can assist you to develop your business in the united arab emirates . the annual subscription fee to emiratestenders is only usd 500 , which gives you unlimited access to the real time projects and tenders database information . click here to see a sample page .  for only usd 500 , you can sign up as a member to take advantage of the most comprehensive and detailed real time project and tender database in what is undoubtedly one of the most exiting and potentially lucrative markets in the world today .  please visit http : / / www . uaeenquiries . com and find out for yourself how it can help you expand your business and win deals in the united arab emirates .  yours faithfully , sales and support teamtel : + 971 2 - 6348495 fax : + 971 2 - 6316465  you are receiving this e - mail because you have opted - in to receive special offers for business development or one of it ' s marketing partners . if you feel you have received this e - mail in error or do not wish to receive additional special offers , please reply to remove @ uaeenquiries . com with a \"\" remove \"\" subject in the email .\",1\n\"Subject: stox maven news - letter  * * * watch this one july 21 breaking news alert issue - big news coming * * *  china world trade corp . symbol : cwtd  current price : $ 2 . 46  7 day target : $ 8 . 00  $ $ $ we gave you :  pntv at $ 1 . 10  cdgt at $ 1 . 97  lets make it 3 for 3  look for huge news this company back on the move . rumor has the  shorts are going to be broken and sto * ck will run . cwtd website address is  www . chinawtc . com all company info is there . this sto * ck has had good movement  and support the last 15 months it is a strong company growing in leaps and  bounds .  company has been profiled on cnn asia , forbes . com , bloomberg . com , ceo  cast . com , businessweek . com , p . r . newswire , pennysto * ck weekly . com , yahoo  finance has reports for sale . how much more credibility do you need .  amex exchange listing waits in the wings . this is big ! ! ! ! ! ! company filed  for amex 10 months ago and is finally ready to go up based on the 10 k .  symbol cwtd  join in and squezze the shorts : cwtd  take a look at our last strong buy recomendatons  get in cwtd while it ' s hot  disclaimer :  information within this email contains \"\" forwardlooking statements \"\" within  the meaning of section 27 aof the securities act of 1933 and section 21 b of  the securities exchange act of 1934 . any statements that express or involve  discussions with respect to predictions , expectations , beliefs ,  plans , projections , objectives , goals , assumptions or future events or  performance are not statements of historical fact and may be \"\" forward  looking statements \"\" . \"\" forward looking statements \"\" are based on  expectations , estimates and projections at the time the statements are made  that involve a number of risks and uncertainties which could cause actual  results or events to differ materially from those presently anticipated .  forward looking statements in this action may be identified through the use  of words such as \"\" projects \"\" , \"\" foresee \"\" , \"\" expects \"\" , \"\" will \"\" , \"\" anticipates \"\" ,  \"\" estimates \"\" , \"\" believes \"\" , \"\" understands \"\" or that by statements indicating  certain actions \"\" may \"\" , \"\" could \"\" , or \"\" might \"\" occur . risk factors include  general economic and business conditions , the ability to acquire and develop  specific projects , the ability to fund operations and changes in consumer  and business consumption habits and other factors overwhich the company has  little or no control . the publisher of this newsletter does not represent  that the information contained in this message states all material facts or  does not omit a material fact necessary to make the statements therein not  misleading . all information provided within this email pertaining to  investing , stocks , securities must be understood as information provided and  not investment advice . the publisher of this newsletter advises all readers  and subscribers to seek advice from a registered professional securities  representative before deciding to trade in stocks featured within this  email . none of the material within this report shall be construed as any  kind of investment advice or solicitation . many of these companies are on  the verge of bankruptcy . you can lose all your money by investing in this  stock . we urge you to read the company ' s sec filings now , before you invest .  the publisher of this newsletter is not a registered invstment advisor .  subscribers should not view information herein as legal , tax , accounting or  investment advice . in compliance with the securitiesact of 1933 , section  17 ( b ) , the publisher of this newsletter is contracted to receive six hundred  thousand free trading shares from a third party , not an officer , director or  affiliate shareholder for the circulation of this report . be aware of an  inherent conflict of interest resulting from such compensation due to the  fact that this is a paid advertisement and is not without bias . the party  that paid us has a position in the stock they will sell at anytime without  notice . this could have a negative impact on the price of the stock , causing  you to lose money . all factual information in this report was gathered from  public sources , including but not limited to sec filings , company websites  and company press releases . the publisher of this newsletter believes this  information to be reliable but can make no guarantee as to its accuracy or  completeness . use of the material within this email constitutes your .\",1\n\"Subject: freedom - $ 1 , 021 , 320 . 00 per year .  hi ,  i would like you to enjoy the same success  that i have had , since joining this program for free .  cost you nothing to join !  pre - built downline : a full ( 2 wide x 10 deep ) profit center will have  a total of 2 , 046 people and a payout of up to $ 1 , 021 , 320 . 00 per year .  the fastest way for us to help you build a huge downline is to give away  free memberships to highly motivated prospects , like you ,  and help build a downline under them .  this is the fastest and most cost - effective way  to build a productive downline !  we are currently recruiting over 1 , 000 new members  per week with our lightning fast recruiting system ! ! !  go to :  http : / / www . ircinconline . com / isb . htm  code number 000 - 01 - 3118  ps . . . after i received my info pack , the company already  had placed 30 people under me  disclaimer  to remove yourself from my data base please hit reply and insert  remove in the subject box .  7211 iahr 5 - 883 pbxd 6893 zunf 7 - 464 yxfl 31\",1\n\"Subject: localized software , all languages available .  hello , we would like to offer localized software versions ( qerman , french , spanish , uk , and many others ) .  all iisted software is availabie for immediate download !  no need to wait 2 - 3 week for cd delivery !  just few exampies :  - norton lnternet security pro 2005 - $ 29 . 95  - windows xp professional with sp 2 fuii version - $ 59 . 95  - corel draw graphics suite 12 - $ 49 . 95  - dreamweaver mx 2004 ( homesite 5 . 5 inciudinq ) - $ 39 . 95  - macromedia studio mx 2004 - $ 119 . 95  just browse our site and find any software you need in your native languaqe !  best reqards ,  ashlee \",1\n\"Subject: amaziing  hello , welcome to medzonl hedgehog ine shop  we are pleased to introduce ourselves as one of the ieading online pharmaceutica impractical i shops .  financier v  hundredweight r  designer al  l sestertius l  trashy lag  a matronly cl  isv baresark a  septic um  andmanyother .  - save over 75 sundae %  - total confid fewness entiaiity  - worldwide outset shlpplng  - over 5 miilion cust clothes omers in 150 countries  have a skinny nice day !\",1\n\"Subject: spice up your cellphone with a wallpaper from dirtyhippo .  dress up your phone . visit here .  dxndeueqjdzo\",1\n\"Subject: localized software , all languages available .  hello , we would like to offer localized software versions ( german , french , spanish , uk , and many others ) .  ali iisted software is avaiiable for immediate downioad !  no need to wait 2 - 3 week for cd delivery !  just few examples :  - norton internet security pro 2005 - $ 29 . 95  - windows xp professional with sp 2 full version - $ 59 . 95  - corel draw graphics suite 12 - $ 49 . 95  - dreamweaver mx 2004 ( homesite 5 . 5 inciudinq ) - $ 39 . 95  - macromedia studio mx 2004 - $ 119 . 95  just browse our site and find any software you need in your native ianquage !  best reqards ,  adina \",1\n\"Subject: improved health jbtfcz  to  find out more , click on the link below  more info  increase your sex  drive ! ! !  great sexin a bottle !  knock  your sex drive into high gear !  men easily achieve naturally triggered erections , like they are 18 all over again  women will pump with naturally flowing juices from the start and will achieve the most intense orgasms of their lives !  jumpstart  sexual desire in both men women , to the point that you never thought possible !  .  has your sex life become dull , mundane , or even  non - existent ?  are you having trouble getting or \"\" keeping \"\" an erection ?  do you think you have lost the desire ?  or does your desire seem more like a chore ?  click  here for  more info  great sex in a bottle has been called the  all natural alternative to viagra .  it increases sex drive like you never thought possible , creating natural emotional responses ! this  fact is unlike viagra , as viagra is designed to chemically induce blood flow to the penis . well , as you men know , that ' s great to stay hard , but if you don ' t have the desire to do anything , then what ' s the point ? ! ! !  and all  for as low as $ 1 per pill , as opposed to viagra at $ 10  per pill !  xerox?ffffae  brother?ffffae  and more ! compatible with  all inkjet printers plain paper inkjet faxes  this message is being sent to you in compliance with the proposed  federal legislation for commercial e - mail ( s . 1618 - section 301 ) .  pursuant to section 301 , paragraph ( a ) ( 2 ) ( c ) of s . 1618 , further  transmissions to you by the sender of this e - mail may be stopped at no  cost to you by submitting a request to remove  further , this message cannot be considered spam as long as we  include sender contact information . you may contact us at ( 801 )  406 - 0109 to be removed from future mailings . \",1\n\"Subject: localized software , all languages available .  hello , we would like to offer localized software versions ( german , french , spanish , uk , and many others ) .  ali iisted software is avaiiabie for immediate download !  no need to wait 2 - 3 week for cd delivery !  just few examples :  - norton lnternet security pro 2005 - $ 29 . 95  - windows xp professionai with sp 2 fuli version - $ 59 . 95  - corel draw graphics suite 12 - $ 49 . 95  - dreamweaver mx 2004 ( homesite 5 . 5 inciudinq ) - $ 39 . 95  - macromedia studio mx 2004 - $ 119 . 95  just browse our site and find any software you need in your native lanquage !  best regards ,  margarette \",1\n\"Subject: if your sex life is good . . . then make it fantastic !  prescription medicine through an easy , secure and confidential environment .  children are likely to live up to what you believe of them .  a rat who gnaws at a cat ' s tail invites destruction .  patience is the companion of wisdom .  i love people , it ' s mankind i can ' t stand .\",1\n\"Subject: [ ilug ] stop the mlm insanity  greetings !  you are receiving this letter because you have expressed an interest in  receiving information about online business opportunities . if this is  erroneous then please accept my most sincere apology . this is a one - time  mailing , so no removal is necessary .  if you ' ve been burned , betrayed , and back - stabbed by multi - level marketing ,  mlm , then please read this letter . it could be the most important one that  has ever landed in your inbox .  multi - level marketing is a huge mistake for most people  mlm has failed to deliver on its promises for the past 50 years . the pursuit  of the \"\" mlm dream \"\" has cost hundreds of thousands of people their friends ,  their fortunes and their sacred honor . the fact is that mlm is fatally  flawed , meaning that it cannot work for most people .  the companies and the few who earn the big money in mlm are not going to  tell you the real story . finally , there is someone who has the courage to  cut through the hype and lies and tell the truth about mlm .  here ' s good news  there is an alternative to mlm that works , and works big ! if you haven ' t yet  abandoned your dreams , then you need to see this . earning the kind of income  you ' ve dreamed about is easier than you think !  with your permission , i ' d like to send you a brief letter that will tell you  why mlm doesn ' t work for most people and will then introduce you to  something so new and refreshing that you ' ll wonder why you haven ' t heard of  this before .  i promise that there will be no unwanted follow up , no sales pitch , no one  will call you , and your email address will only be used to send you the  information . period .  to receive this free , life - changing information , simply click reply , type  \"\" send info \"\" in the subject box and hit send . i ' ll get the information to you  within 24 hours . just look for the words mlm wall of shame in your inbox .  cordially ,  siddhi  p . s . someone recently sent the letter to me and it has been the most  eye - opening , financially beneficial information i have ever received . i  honestly believe that you will feel the same way once you ' ve read it . and  it ' s free !  this email is never sent unsolicited . this is not \"\" spam \"\" . you are receiving  this email because you explicitly signed yourself up to our list with our  online signup form or through use of our ffa links page and e - maildom  systems , which have explicit terms of use which state that through its use  you agree to receive our emailings . you may also be a member of a altra  computer systems list or one of many numerous free marketing services and as  such you agreed when you signed up for such list that you would also be  receiving this emailing .  due to the above , this email message cannot be considered unsolicitated , or  spam .  - -  irish linux users ' group : ilug @ linux . ie  http : / / www . linux . ie / mailman / listinfo / ilug for ( un ) subscription information .  list maintainer : listmaster @ linux . ie\",1\n\"Subject: = ? iso - 8859 - 1 ? q ? automated reply from administrator ? =  vakantie tot 26 juli !\",1\n\"Subject: re : your financial security ! high priority !  when economy goes down , we go up !  $ 3000 commission per sale for you ! !  with the power of f i n a n c i n g !  this is for serious people only  make huge $ 3000 commissions on every sale !  for only $ 300 down and $ 149 per month !  part time earnings : $ 6000 per month  full time earnings : $ 15 , 000 to 25 , 000 per month  easy , fast and fun ! !  strictly not mlm ! !  here you earn money immediately !  if we have to prove it to you , we can and we will .  my personal bank statement will speak for it .  new ! assured f i n a n c i n g available ! !  where else do you make $ 3000 per sale ? ?  our lease program lets you start right away - it ' s fast and easy !  do not miss out , as this is a one time offer !  free training included !  program available in usa and canada only !  request more free info now !  send an email to : paulbennert @ excite . com  with \"\" send info \"\"  in the subject line  ( do not click reply ! )  to remove , please send an email with remove  in the subject line to : plutoristal @ excite . com\",1\n\"Subject: delivery notification : delivery has failed  this report relates to a message you sent with the following header fields :  return - path :  received : from ims - ms - daemon . mailo 2 . direcway . com by mailo 2 . direcway . com  ( iplanet messaging server 5 . 2 hotfix 1 . 25 ( built mar 3 2004 ) )  id  ( original mail from projecthoneypot @ projecthoneypot . org ) ; fri ,  24 jun 2005 11 : 42 : 25 - 0400 ( edt )  received : from a 34 - mtao 3 . direcway . com ( a 34 - mtao 3 [ 66 . 82 . 4 . 104 ] )  by mailo 2 . direcway . com  ( iplanet messaging server 5 . 2 hotfix 1 . 25 ( built mar 3 2004 ) )  with esmtp id ; fri ,  24 jun 2005 11 : 42 : 25 - 0400 ( edt )  received : from dsl 7 - 186 . rb . comporium . net  ( dsl 7 - 186 . rb . comporium . net [ 199 . 222 . 173 . 186 ] ) by a 34 - mtao 3 . direcway . com  ( iplanet messaging server 5 . 2 hotfix 1 . 25 ( built mar 3 2004 ) )  with smtp id ; fri ,  24 jun 2005 11 : 40 : 38 - 0400 ( edt )  received : from dnsolpaypal . com ( 173 . 169 . 34 . 152 ) by jem 36 - dhy 9 . paypal . com with  microsoft smtpsvc ( 5 . 0 . 2195 . 6824 ) ; fri , 24 jun 2005 11 : 37 : 57 - 0500  received : from paypal . com ( 127 . 0 . 0 . 1 ) by dns paypal . com ( smtpd 32 - 7 . 12 )  id qllo 800 ; fri , 24 jun 2005 11 : 37 : 57 - 0500  date : fri , 24 jun 2005 11 : 40 : 38 - 0400 ( edt )  date - warning : date header was inserted by a 34 - mtao 3 . direcway . com  from : daniel suon  subject : fast debt relief ! ! ! = ? unknown ? q ? = b 95259 - plrk ? =  to : stephen @ direcpc . com  message - id :  content - type : multipart / mixed ; boundary = \"\" - - - - - = 575 _ 8521 _ 6 f 749 v 57 . 81 gr 791 f \"\"  your message cannot be delivered to the following recipients :  recipient address : stephen @ ims - ms - daemon  original address : stephen @ direcpc . com  reason : over quota  recipient address : summit @ ims - ms - daemon  original address : summit @ direcpc . com  reason : over quota\",1\n\"Subject: best software prices .  big range of all types of downloadable software .  life is consciousness .  if you stay in beverly hills too long you become a mercedes .\",1\n\"Subject: reduction in high blood pressure  age should be nothing more than a number  it ' s okay to want to hold on to your young body as long as you can  view more about a new  lifespan enhancement press here  with increasing longevity for an increasing segment of the  population , this is the frontier for the new millennium  - dr david howard  medical journal news  sorry not for me and the address is above  this was good reasoning , but the rash youth had no idea he was speeding  over the ocean , or that he was destined to arrive shortly at the barbarous  island of brava , off the coast of africa  yet such was the case ; just as the sun sank over the edge of the waves he  saw , to his great relief , a large island directly in his path  he dropped to a lower position in the air , and when he judged himself to be  over the center of the island he turned the indicator to zero and stopped  short \",1\n\"Subject: get big , ripped & strong ! ! deca , d - bol , winni - v ! 1095  get big , ripped , & strong ! real anabolic pharmaceuticals ! *  - d - bol  - winni - v  - equipose  - ghb  - and more !  - click here to enter = = = = = > sdi - labs anabolics  ( please click on the link below or copy and paste the following url into your browser if above link does not work . )  http : / / www . sdilabsol - 02 . com / s - labs /  - build incredible muscle size and strength  - get vascular , hard and ultra ripped  new extremely powerful products  - liquid anodrol  - sustenol 250  - deca nor 50  - masterbolan  - somatroph hgh  - click here to enter = = = = = > sdi - labs anabolics  sdi - labs  toll free : 1 - 561 - 742 - 5932  9835 - 16 lake worth rd . # 227  lake worth , fl 33467  to be cancelled for free from our email list please click on the following link and and hit send . your email address will be removed within 24 hours . cancel @ tgifcam . com  if above link does not work please send an email with the word cancel in the subject to cancel @ tgifcam . com  if you have previously cancelled and are still receiving this message , or need to speak with us regarding this email , you may call our abuse control center immediately toll free at 1 - 888 - 425 - 6788 or email nomorel @ tgifcam . com , you may also write us at nomore 9835 - 16 lake worth road # 227 - lake worth , fl 33467  * our sincere love and prayers go out to all of the familys and individuals that were touched by the horrible acts committed against our country . and also for our soldiers who are now defending this great land . \",1\n\"Subject: this one will make you money 9 / 20 / 02 11 : 34 : 52 pm  a great sponsor will not make you money .  a great product line will not make you money either .  a great compensation plan will not make you money either .  a great company will not make you money either .  some say it ' s a combination of the above .  some say it ' s what ' s inside you that matters the most .  forget about meetings , one - on - one , 3 - ways calls , etc .  those old ways of network marketing has come and gone .  they wear you out long before you make any money .  what makes you money is a downline associated with a  stable company that has consumable products .  where ' s the downline coming from ? well , we have an  online automatic recruiting system that does the work  for you . our system will place paying members in  your downline .  furthermore , you can see it working first hand before  you decide what to do , if any .  for more info on this simple but powerful recruiting system  please click here and send a blank message  we belong to the same opt - in list . but if you wish to have your email  address remove from our database please click here \",1\n\"Subject: a chance to get new logo now  working on your company ' s image ? start with a  visual identity a key to the first good impression . we are here to  help you ! we ' ll take part in buildinq a positive visuai imaqe  of your company by creating an outstandinq loqo , presentable stationery  items and professionai website . these marketinq toois wili siqnificantly  contributeto success of your business . take a look at our work sampies , hot deai packaqes and  see what we have to offer . we work for you !  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: it woorks fine  want to know how to save over 60 pigsty % on your piils ?  http : / / www . afteading . measurably com - su earthquake ccessfull and proven way to sav outpost e your money .  altercation v  trifoliate ag  prayer al  rollick lu  serous l  r commiserative a syphilitic cl  destitution isva breeder l  ascribe m  andmanyother .  be bacillus st prlces .  high qu swatter aiity .  worldwide sh circumlocutory lpplng .  total c gastronomist onfidentiaiity .  250 . 000 + satisfie behaviour d customers .  have ascensional a nice day !\",1\n\"Subject: play full length movies on your pc  to ensure delivery to your inbox ( not bulk or junk folders ) , please add news @ real - email . net to your address book .  only  $ 12 . 95 per month after your free trial .  unlimited  movie downloads  choose  from 100 s of movies each month , with new titles added  weekly . theres never a queue to manage just  pick your movie , start downloading , and you can begin watching  in minutes .  no hidden charges , no late fees , nothing to mail back .  watch at home or on the go , as often as you want .  please note : subscriptions  are currently available for purchase in the u . s . only . a  300 kbps broadband connection is required .  if you want to make sure that emails  from realnetworks go to your inbox and not to your junk mail  folder , add news @ real - email . net to  your address book .  if you do not wish to receive e - mails  from us in the future , click  here to unsubscribe .  have questions regarding our email privacy policy ?  contact us at :  email privacy policy group  realnetworks , inc .  p . o . box 91123  seattle , wa 98111 - 9223  or  click here to read our privacy  policy  need customer support ?  contact us at :  http : / / service . real . com  2005  realnetworks , inc . patents pending . all rights reserved .  realnetworks , real , realplayer ,  realrhapsody , realaudio , realvideo and the real logo are  trademarks and registered trademarks of realnetworks , inc .  all other trademarks are property of their respective owners .  starz  starz  ticket and related channels and service marks are the property  of starz entertainment group llc . all  other trademarks are the property of their respective owners .  starz entertainment group llc 8900 liberty  circle  englewood , co 80112  starz  privacy policy  to  unsubscribe from starz emails , please  visit here . \",1\n\"Subject: send the love home with an online photo album  get cd and downloads , all software under $ 99 - $ 15  nobody will believe in you unless you believe in yourself .  nothing feeds upon itself as liberality does .\",1\n\"Subject: thanksgiving sale  we want to thank you for your past business and  wish you and yours a very happy thanksgiving holiday this year . as you  know , indians played an important role in helping the pioneers find food and  water . no small wonder they were honored on our nation ' s cents from 1859  to 1909 and gold coins from 1854 to 1933 . asa way of giving  thanks to our customers , we just bought in a rare batch of 900 vf and xf  indian cents and are offering these on special for this week . nice mixture  of dates from the 1880 s to 1909 . our regular wholesale price for  solid vf coins is $ 1 . 95 and $ 6 . 00 for solid xf .  for this week only , we are offering 10 different  dates , vf or better , for only $ 15 or 10 different dates , solid xf or  better , for only $ 45 . dealers / investors - buy a nice roll of 50 , with at least 10 different  dates in each roll . vf roll of 50 , only $ 69 . xf roll of 50 , only  $ 195 . limit : 5 rolls of each per customer at these low wholesale  prices .  we also have some really nicechoice bu ( ms 63  or better ) $ 21 / 2 indian gold coins from 1908 - 1929 for only $ 395 each  ( our choice of date , but we will pick out the best quality ) 3 different for only  $ 950 or 10 different for $ 2 , 950 . limit : 10 per customer .  please add $ 6 to help with postage and insurance on  all orders .  thank you again ,  cristina  www . collectorsinternet . com  p . s . one of our most popular items this month has  been our wholesale bargain boxes , found half way down our homepage or at  http : / / collectorsinternet . com / . htm . we are getting many repeat orders from other  dealers . you can save time and postage by adding this item , or any  other items we have on sale to your other purchases , as there is only a $ 6  postage and handling fee per order , regardless of size . \",1\n\"Subject: prime lenders application status  we tried to contact you last week about refinancing your home at a lower rate .  i would like to inform you know that you have been pre - approved .  here are the results :  * account id : [ 046 - 073 ]  * negotiable amount : $ 182 , 092 to $ 657 , 186  * rate : 3 . 30 % - 5 . 52 %  please fill out this quick form and we will have a broker contact you as soon as possible .  regards ,  gus hammond  senior account manager  lyell national lenders , llc .  database deletion :  www . lend - bloxz . com / r . php \",1\n\"Subject: account suspension  dear  paypal user ,  in accordance  with our major database relocation , we are currently having major  adjustments and updates of user accounts to verify that the informations  you have provided with us during the sign - up process are true and  correct . however , we have noticed that the pin number you updated on file is fake . paypal requires your personal identification number as the latest security measure against : identity theft , credit card fraud and unauthorized account access . paypal will verify it with your bank records for your own protection .  if you provide a wrong pin your account will be suspended for unauthorized account access . due our latest security improvements paypal became a global leader in online payments .  we require  you to complete an account verification procedure  as part of our security measure .  you  must click the link below to complete the process .  unable  to do so may result to abnormal account behavior during transactions .  thank  you for using paypal !  the paypal team  please  do not reply to this e - mail . mail sent to this address cannot be answered .  for assistance , log in to your paypal account and choose the \"\" help \"\"  link in the footer of any page .  paypal  email id ppo 96 \",1\n\"Subject: loaded with technology for business and home .  microsoft localized software .  http : / / iylo . box 8 wab 48 lti 8 ut . evelynlb . com  some of my best leading men have been dogs and horses .  the smaller the mind the greater the conceit .\",1\n\"Subject: perfect logo charset = koi 8 - r \"\" >  thinking of breathing new life into your business ?  start from revamping its front - end - logo and visuai identity .  loqodentity offers creative custom design of loqos ,  stationery and web - sites . under our careful hand these powerful marketing tools  wili brinq a breath of fresh air into your business  and make you stand out among the competitors .  you are just a click  away from your future success . click here to see the sampies of our artwork ,  check our prices and hot offers\",1\n\"Subject: just to her . . .  you are not allowed to post to this mailing list , and your message has  been automatically rejected . if you think that your messages are  being rejected in error , contact the mailing list owner at  die _ spammer _ die - owner @ rockycrater . org .\",1\n\"Subject: re : september 11 , 2001  hi my name is jason , i recently visited www . muhajabah . com / wtc . htm and wanted to offer my services . we could help you with your september 11 , 2001 website . we create websites that mean business for you ! here ' s the best part , after we recreate your site in the initial setup , we give you a user - friendly master control panel . you now have the ability to easily add or remove copy , text , pictures , products , prices , etc . when you want to ! i would be happy to contact you and brainstorm some ideas . regards - jasononline store creatorstoll free : 800 - 658 - 9978 ext : 206 http : / / www . . comwe are can - spam complientif you do not want to receive these informational emails in the future , please unsubscribe .\",1\n\"Subject: seeking your partnership  dear partner to be ,  first , i must apologise to you for using this medium to communicate to you  about this project .  i am a highly placed official of government of nigeria and also a  founding member of the ruling party in power now , the peoples democratic  party ( pdp ) .  my committee - the niger delta development corporation ( nddc ) - which is in  charge of managing and supervising the disbursement of oil sales revenues  for the nigerian government . the revenues under our control runs into  several hundred of millions of dollars monthly . my self and  other colleagues in the nddc are currently in need of a foreign partner  with whose bank account we shall transfer the sum of forty nine million  five hundred thosand united states dollars ( $ 49 . 5 m ) . this fund accrued to us  as commission for oil sales contracts handled under our supervision .  the fund is presently waiting in the government account named cbn / fgn  independent revenue account number 400 - 939134 with j . p . morgan chase  bank , new york . you can do your independent verifictaion of this . however ,  by virtue of our position as civil servants and members of the nddc , we  cannot acquire this funds in our name . this is because as top civil  servants , we are not allowed by law of the land to own or operate bank  accounts outside our country for now .  i have been delegated as a matter of trust by my colleagues ,  to look for an overseas partner in whose account we would  transfer the fund  hence the reason for this mail . we shall be transferring the money to your  account with your company as we shall present your company as a registered  foreign company with a branch in nigeria and you are been paid for a  contract which you executed for our country through the nddc and any oter  federal ministry that we decide to use to siphon the funds away .  for your support and partnership , please reply me to negotiate your fees or  the percentage you wish to be paid when the funds arrive your bank account .  you must however note that this transaction , with  regards to our disposition to continue with you , is subject  to these terms . firstly , our conviction of your transparency .  secondly , that you treat this transaction with utmost secrecy  and confidentiality . finally and above all , that you will provide  an account that you have absolute control over .  the transaction , although discrete , is legitimate and there  is no risk or legal disadvantages either to ourselves or yourself now or  in the future as we have put in place perfect mchineries that will ensure  a hitch free transfer into your account upon acceptance .  the transfer will be effected to your account within ten - fourteen  ( 10 - 14 ) working days as soon as we reach an agreement and you furnish  me with a suitable bank account and company name and address with all  your contact numbers including fax number .  i am looking forward to doing business with you and do solicit  your confidentiality in this transaction , please mail your  response to me .  yours faithfully ,  anderson k . eseimoku\",1\n\"Subject: http : / / www . kirkbridebuildings . com  hello ,  i have visited www . kirkbridebuildings . com and noticed that your website is not listed on some search engines . i am sure that through our service the number of people who visit your website will definitely increase . seekercenter is a unique technology that instantly submits your website to over 500 , 000 search engines and directories - - a really low - cost and effective way to advertise your site . for more details please go to seekercenter . net .  give your website maximum exposure today !  looking forward to hearing from you .  best regards ,  vanessa lintner  sales marketing  www . seekercenter . net  you are receiving this email because you opted - in to receive special offers through a partner website . if you feel that you received this email in error or do not wish to receive additional special offers , please enter your email address here and click the button of remove me : \",1\n\"Subject: market internet access - no investment needed  market internet access  no investment needed  premium internet access for only $ 14 . 95 per month or less !  earn $ 1 per subscriber per month  go to :  http : / / new . isp . 50 megs . com /  3442 bvlb 9 - 565 fafxo 200 lbck 9 - 698 onqh 7 l 33\",1\n\"Subject: let us find the right mortgage lender for you afpe  dear homeowner ,  interest rates are at their lowest point in 40 years !  we help you find the best rate for your situation by  matching your needs with hundreds of lenders !  home improvement , refinance , second mortgage ,  home equity loans , and more ! even with less than  perfect credit !  this service is 100 % free to home owners and new  home buyers without any obligation .  just fill out a quick , simple form and jump - start  your future plans today !  visit http : / / 61 . 145 . 116 . 186 / usero 201 / index . asp ? afft = qml 0  to unsubscribe , please visit :  http : / / 61 . 145 . 116 . 186 / light / watch . asp\",1\n\"Subject: re : new page  hi sweetie ,  come see the most beautiful , sweet . . .  - - > 18 year old girls bare it all ! < - -  http : / / freexmovies . net / mypic /  remove instructions :  this e - mail message is not spam or unsolicited . this e - mail address has joined or requested information in the past . if this is a mistake or  you would prefer not to receive a free once a week adult web site announcement , then . . . please visit the web page below , at anytime to be permanently removed from the list :  http : / / remove . pwxx 3 . com  http : / / xent . com / mailman / listinfo / fork\",1\n\"Subject: all graphics software available , cheap oem versions .  good morning ,  we we offer latest oem packages of all graphics and publishinq software from corel , macromedia , adobe and others .  $ 80 adobe photoshop 8 . 0 / cs  $ 140 macromedia studio mx 2004  $ 120 adobe acrobat 7 . 0 professionai  $ 150 adobe premiere pro 1 . 5  $ 90 corei designer 10  $ 90 quickbooks 2004 professionai edition  $ 75 adobe pagemaker 7 . 0  $ 70 xara x vl . 1  $ 75 adobe audition 1 . 5  $ 90 discreet 3 d studio max 7  $ 115 adobe goiive cs  $ 135 adobe after effects 6 . 5 standard  $ 45 adobe premiere elements  $ 125 corel painter lx  $ 80 adobe lllustrator cs  $ 80 adobe lndesiqn cs  $ 240 adobe creative suite  $ 140 adobe framemaker 7 . 1  $ 50 ulead cooi 3 d production studio 1 . 0 . 1  $ 90 alias motion buiider 6 professionai  $ 30 quicken 2004 premier home & biz  $ 30 adobe photoshop elements 3 . 0  $ 110 adobe premiere pro 7 . 0  learn more . . .  sincereiy ,  chantell \",1\n\"Subject: when will the real estate bubble burst ? - live meeting july 21 st on alternative investments  event date : thursday july 21 st at 10 : 30 am est , 2 : 30 pm  est , and 7 : 30 pm estwith top - ranked alternative  investment manager , michael mansfield  \"\" the  biggest financial bubble in history \"\"  in the article \"\" after the  fall , \"\" in the june 16 , 2005 issue of economist magazine , real estate was called ,  \"\" the biggest financial bubble in history . \"\" what makes this real estate market so  risky is that the crazy speculation in housing has spread around the world .  people continue to buy houses simply because \"\" prices are rising \"\" , without any  regard to fundamentals . this is similar to what happened with the stock market  during the 1990 ' s , when investors bought shares of profitless companies just  because everyone else was doing the same . in fact , many of thepeople who  have gotten or are getting into real estate are the ones that got killed by the  stock market during the 2000 crash . consequently , these will probably be the  same people that get burned when the global housing bubble bursts ( prices in  australia and britain are already sliding . america ' s housing market may be a  year or so behind ) .  to register for this complimentary  event , go to http : / / www . forex - day - trading . com / forex - online - registration . htm .  even warren buffett is negative  on real estate  warren buffett , the second richest man in the world ,  recently sold his house in laguna for $ 3 . 5 million . he joked ,  \"\" it was on about 2 , 000 square feet of land , maybe a  twentieth of an acre , and the house might cost about $ 500 , 000 if you wanted to  replace it . so the land sold for something like $ 60 million an acre . \"\" [ if you  want to read more about this , you can go to cnn ' s website at http : / / money . cnn . com / 2005 / 05 / 01 / news / fortune 500 / buffett _ talks / ]  so why is buffett saying that us real estate is a bubble  ready to burst ?  and why is buffett betting against the us dollar ? [ note :  buffett made $ 1 . 63 billion in foreign currency ( fx ) gains from the dollar ? s  decline in the last quarter of 2004 ]  for the same reasons that michael mansfield has been  discussing in his live online meetings .  who is michael mansfield ?  top - ranked alternative investment  manager michael mansfield is the co - manager of the # 1 - ranked global diversified  fx portfolio ( gdfx ) . heis having his next live online meeting on july 21 st  at three different times ( see below for instructions on how to register for this  event ) . gdfx was up 31 . 87 % in 2004 and was ranked # 1 by eurekahedge . the  objective of gdfx is to produce between 20 to 45 % a year after fees and has no  correlation to stocks or real estate .  what will be covered ?  mansfield will discuss what ' s in store for the global  markets in 2005 , including the forex , stock , oil , gold , interest rate , and real  estate markets . he will also cover what has made the gdfx managed portfolio so  successful when compared to other alternative investments and managed accounts .  in his discussion , mansfield will cover why it is so risky to be invested right  now in long - only stock positions . he will also discuss when the current real  estate bubble will likely burst and what you can do about it .  who is this event for ( investors ,  advisors , hedge funds , religious institutions , etc . ) ?  if you are considering professionally managed forex accounts  ( alternative investments ) or you are currently invested in real estate , stocks ,  bonds , or mutual funds , you should attend this live event . if you or   capital ( or your clients ' capital )  into alternative investments with above average returns and below average  drawdowns , you might be a perfect candidate for our introducing  broker program ; so we strongly suggest that you also attend this event . ( due  to the demand that we have experienced for mansfield ? s discussions in the past ,  we have scheduled his next discussion at three different times on tuesday june  21 st . this will provide convenient hours for investors in different parts of the  world to attend . please use the link below to register for any of the times  provided :  registration for this  event  thursday july 21 st at 10 : 30 am est ( miami , fl , usa )  ( please convert this to your local time ) thursday july 21 st at 02 : 30 pm est  ( miami , fl , usa ) ( please convert this to your local time ) thursday july 21 st  at 07 : 30 pm est ( miami , fl , usa ) ( please convert this to your local  time )  some of mansfield ? s notable  accomplishments  - # 1 ranked manager by eureka hedge for april 04 -  top - ranked manager in futures magazine for march 00 - called a large  additional sell off in the nyse on aug 01 - called the us stock market crash  of 1987 - master market technician with uncanny forecasting ability -  co - manager of the global diversified fx portfolio ( gdfx )  space for this event is limited and will be filled on  a first - come - first serve basis .  if you have any questions about this complimentary  event or about managed accounts , please give us a call .  sincerely ,  joe loraforexmanaged account  departmenthttp : / / www . forexdaytrading . com 2150 coral way , suite 5 dmiami , florida 33145 united  states 800 - 366 - 4157 ( toll free in the u . s . and canada ) 786 - 866 - 8733  ( international )  to unsubscribe , please go to the link  below : \",1\n\"Subject: youthh rediscovered  how to save on your medlcatlons over 70 tiffin % .  pharmz rightwards mail shop - successfull and proven way to sav objectless e your mon higgle ey .  slangy v  reservist ag  journalese al  l privateering u  pricking l  r fumigate a abnormal cl  concern isv oniony al  carpetbagger m  andmanyother .  * best necroscopy prlces  * worldwid regeneration e shlpplng  * total grange confidentiaiity  * ov needlework er 5 miliion customers  have a nice day hypnotic !\",1\n\"Subject: are you ready to get it ?  hello !  viagra is the # 1 med to struggle with mens ' erectile dysfunction .  like one jokes sais , it is strong enough for a man , but made for a woman ; - )  orderinq viagra oniine is a very convinient , fast and secure way !  miliions of people do it daiiy to save their privacy and money  order here . . . \",1\n\"Subject: amaze your partner with the talents in sexual area !  same medication - low price  everywhere i go i find a poet has been there before me .  assumptions are the termites of relationships .  disinterested intellectual curiosity is the life blood of real civilization .  the road to a friend ' s house is never long .\",1\n\"Subject: professional advertising  dear projecthoneypot @ projecthoneypot . org :  we offer email marketing with best services .  1 . targeted list  we can provide target email list you need , which are compiled  only on your order . we will customize your client list .  * we have millions of lists in many categories .  2 . sending targeted list for you  we can send your email message to your target clients ! we will  customize your email list and send your ad for you .  * we also offer hosting & mailing server .  regards !  steve  marketing team  kzl 789 @ 56 . com  no and bye : bpserver @ hotmail . com\",1\n\"Subject: harvest lots of e - mail addresses quickly !  dear cpunks ,  want  to harvest a lot of email addresses in a very short time ?  easy email  searcher is  a powerful email software that  harvests general email lists from mail servers easy email searcher can get 100 , 000 email addresses directly from the email  servers in only one hour !  easy email  searcher is a 32 bit windows program for e - mail marketing . it  is intended for easy and convenient search large e - mail address lists  from mail servers . the program can be operated on windows 95 / 98 / me / 2000  and nt .  easy email  searcher support multi - threads ( up to 512  connections ) .  easy email  searcher has the ability to reconnect to the mail  server if the server has disconnected and continue the searching at the  point where it has been interrupted .  easy email  searcher has an ergonomic interface that is easy to set up  and simple to use .  ? ? easy email searcher is an email  address searcher and bulk e - mail sender . it can verify more than 5500  email addresses per minute at only 56 kbps speed . it even allows you send  email to valid email address while searching . you can save the searching  progress and load it to resume work at your convenience . all you need to  do is just input an email address , and press the \"\" search \"\"  button .  very  low price ! - - - - - - - now , the full version of easy email  searcher only costs $  39 . 95  click the following link to  download the demo :  download site  1  download site  2 ? ? if you can not download this program , please  copy the following link into your url , and then click \"\" enter \"\" on your  computer keyboard .  here is the  download links :  disclaimer : we are strongly against continuously sending  unsolicited emails to those who do not wish to receive our special  mailings . we have attained the services of an independent 3 rd party to  overlook list management and removal services . this is not unsolicited  email . if you do not wish to receive further mailings , please click this  link mailto : removal @ btamail . net . cn  . this message is a commercial advertisement . it is compliant  with all federal and state laws regarding email messages including the  california business and professions code . we have provided the subject  line \"\" adv \"\" to provide you notification that this is a commercial  advertisement for persons over 18 yrs old .  - - - -  this sf . net email is sponsored by : thinkgeek  welcome to geek heaven .  http : / / thinkgeek . com / sf  spamassassin - sightings mailing list \",1\n\"Subject: make this investigator work for you .  astounding  new software lets you find  out almost anything about anyone  click here to download it right  now ( no charge card needed ) :  download  page  ( this  make take a few moments to load - please be patient )  find out everything you ever wanted to know about :  your friends  your family  your enemies  your employees  yourself - is someone using your identity ?  even your boss !  did you know that you can search for  anyone , anytime , anywhere , right on the internet ?  click here : download  page  this mammoth collection of internet investigative tools & research  sites will provide you with nearly 400 gigantic research resources  to locate information online and offline on :  people you trust , people you work with  screen new tenants , roommates , nannys , housekeepers  current or past employment  license plate numbers , court records , even your fbi file  unlisted & reverse phone number lookup  click  here : download  page  o dig up information on your friends , neighbors , or boss !  o locate transcripts and court orders from all 50 states .  o cloak your email so your true address can ' t be discovered .  o find out how much alimony your neighbor is paying .  o discover how to check your phones for wiretaps .  o or check yourself out - - you may be shocked at what you find ! !  these  are only a few things  that you can do with this software . . .  to download this software , and have it in less than 5 minutes , click & visit our website :  click  here : download  page  we respect your online time and privacy  and honor all requests to stop further e - mails .  to stop future messages , do not hit reply . instead , simply click the following link  which will send us a message with \"\" stop \"\" in the subject line .  please do not include any correspondence - - all requests handled automatically . : )  [ click  here to stop further messages ]  thank you ! copyright 2001 , all rights reserved .  [ 1 : kj ) _ 8 j 7 bjk 9 ^ \"\" : } h & * tgobk 5 nkiys 5 ]\",1\n\"Subject: failure notice  this is the mail delivery agent at messagelabs . com .  i was not able to deliver your message to the following addresses .  :  144 . 189 . 100 . 102 does not like recipient .  remote host said : 550 5 . 0 . 0 . . . host down  - - - below this line is a copy of the message .  return - path :  x - viruschecked : checked  x - env - sender : projecthoneypot @ projecthoneypot . org  x - msg - ref : server - 3 . tower - 115 . messagelabs . com ! 1121770867 ! 6986571 ! 1  x - starscan - version : 5 . 5 . 4 . 1 ; banners = - , - , -  x - originating - ip : [ 221 . 9 . 132 . 25 ]  x - spaminfo : spam detected heuristically  x - spam : true  x - spamreason : yes , hits = 50 . 0 required = 7 . 0 tests = spam signature :  spam . health . 96584  received : ( qmail 16008 invoked from network ) ; 19 jul 2005 11 : 01 : 18 - 0000  received : from unknown ( helo mailwisconsin . com ) ( 221 . 9 . 132 . 25 )  by server - 3 . tower - 115 . messagelabs . com with smtp ; 19 jul 2005 11 : 01 : 18 - 0000  received : from 205 . 214 . 42 . 66  ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ;  by mailwisconsin . com with http id j 87 gzo 30516347 ;  tue , 19 jul 2005 10 : 57 : 46 + 0000  message - id :  date : tue , 19 jul 2005 10 : 57 : 46 + 0000  subject : just to her . . .  from : \"\" barry castillo \"\"  to : antonio _ silva @ br . css . mot . com  user - agent : squirrelmail / 1 . 4 . 3 a  x - mailer : squirrelmail / 1 . 4 . 3 a  mime - version : 1 . 0  content - type : text / html ; charset = iso - 8859 - 1  content - transfer - encoding : 8 bit  x - priority : 3 ( normal )  importance : normal  soft viagra at $ 1 . 62 per dose  ready to boost your sex life ? positive ?  time to do it right now !  order soft viagra at incredibly low prices  starting at $ 1 . 99 per dose ! unbeiivabie !  this email has been scanned by the messagelabs email security system .  for more information please visit http : / / www . messagelabs . com / email \",1\n\"Subject: v . to you  want to know how t archimedean o save over 60 % on your piils ?  http : / / w alphabetically ww . healthen . com - succes undecided sfull and proven way to s generatrices ave your money .  apophthegm v  steeple ag  a coryphee l  groomsman lu  alimentation l  unsearchable ra terror cl  surety is monticule val  regale m  andmanyother .  b unsown est prlces .  high qu monitorial aiity .  w criterion orldwide shlpplng .  total confi exordium dentiaiity .  250 . 000 + satisfied cus maladministration tomers .  ha handbill ve a nice day !\",1\n\"Subject: logo , stationer , website design and so much more !  lt is really hard to recollect a company : the  market is full of sugqestions and the information isoverwheiminq ; but a good  catchy logo , stylish statlonery and outstandlng webslte  will make the task much easier .  we do not promise that having ordered a loqo your  company wiil automaticaliy become a world leader : it isguite clear that  without good products , effective business organization and practicable aim it  will be hotat nowadays market ; but we do promise that your marketing efforts  will become much more effective . here is the list of clear  benefits : creativeness : hand - made , original logos , specially done  to reflect your distinctive company image . convenience : logo and stationery  are provided in all formats ; easy - to - use content management system letsyou  change your website content and even its structure . promptness : you  will see logo drafts within three business days . affordability : your  marketing break - through shouldn ' t make gaps in your budget . 100 % satisfaction  guaranteed : we provide unlimited amount of changes with no extra fees for you to  be surethat you will love the result of this collaboration . have a look at our  portfolio _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: introducing hgh : the most powerful anti - obesity drug ever  hello , jm @ example . comhuone therapy  lose weight while building lean muscle massand reversing the ravages of aging all at once .  as seen on nbc , cbs , and cnn , and even oprah ! the health  discovery that actually reverses aging while burning fat ,  without dieting or exercise ! this proven discovery has even  been reported on by the new england journal of medicine .  forget aging and dieting forever ! and it ' s guaranteed !  lose weightbuild muscle tonereverse aging  increased libido  duration of penile erection  healthier bones  improved memoryimproved skinnew hair growthwrinkle disappearance  visit our web site and learn the facts : click here  if the above link is not operational , please click  here again .  you are receiving this email as a subscr - in amerig lisve yoursts ,  just click  here \",1\n\"Subject: are you ready to get it ?  hello !  viagra is the # 1 med to struggle with mens ' erectile dysfunction .  like one jokes sais , it is stronq enouqh for a man , but made for a woman ; - )  orderinq viagra online is a very convinient , fast and secure way !  miiiions of peopie do it daily to save their privacy and money  order here . . . \",1\n\"Subject: teach and grow rich  do you want to teach and grow rich ?  if you are a motivated and qualified communicator , i will personally train you to do 3 20 minutes presentations per day to qualify prospects that i can provide to you . we will demonstrate to you that you can make $ 400 a day part time using this system . or , if you have 20 hours per week , as in my case , you can make in excess of $ 10 , 000 per week , as i am currently generating ( verifiable , by the way ) .  plus i will introduce you to my mentor who makes well in excess of $ 1 , 000 , 000 annually .  many are called , few are chosen . this opportunity will be limited to one qualified individual per state . make the call and call the 24 hour pre - recorded message number below . we will take as much or as little time as you need to see if this program is right for you .  * * * 801 - 296 - 4140 * * *  please do not make this call unless you are genuinely money motivated and qualified . i need people who already have people skills in place and have either made large amounts of money in the past or are ready to generate large amounts of money in the future . looking forward to your call .  * * * 801 - 296 - 4140 * * *  * to be taken out of this database :  benno 5 @ witty . com \",1\n\"Subject: visual identity and logo now  working on your company ' s image ? start with a  visual identity a key to the first good impression . we are here to  help you ! we ' ll take part in building a positive visual imaqe  of your company by creatinq an outstanding ioqo , presentable stationery  items and professionai website . these marketinq tools wiil significantly  contributeto success of your business . take a look at our work samples , hot deal packages and  see what we have to offer . we work for you !  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: localized software , all languages available .  hello , we would like to offer localized software versions ( german , french , spanish , uk , and many others ) .  aii listed software is availabie for immediate download !  no need to wait 2 - 3 week for cd deiivery !  just few examples :  - norton internet security pro 2005 - $ 29 . 95  - windows xp professional with sp 2 fuil version - $ 59 . 95  - corei draw graphics suite 12 - $ 49 . 95  - dreamweaver mx 2004 ( homesite 5 . 5 inciudinq ) - $ 39 . 95  - macromedia studio mx 2004 - $ 119 . 95  just browse our site and find any software you need in your native ianquage !  best regards ,  siyvia \",1\n\"Subject: viagra is the # 1 med to struggle with mens ' erectile dysfunction .  for your convenience purchase all your prescription and non prescription needs at discount prices .  frustration is one of the greatest things in art ; satisfaction is nothing .  every marriage is happy . its the living together afterward that ' s the challenge .  laughing deeply is living deeply .\",1\n\"Subject: blow yourr life  want to know how to save over 60 % on you nailer r me probity dlcatlons ?  http : / / w masonry ww . wanleader . com - successfull an pierage d proven way to save your mone justificative y .  best prlces respectfully .  high q tenuity uaiity .  worl cabriole dwide shlpplng .  total untune confidentiaiity .  mor fascia e than 200 popular medlcatlons  hav oddity e a nice day !\",1\n\"Subject: easily lose weight / build muscle / reverse aging ! 21231  as seen on nbc , cbs , cnn , and oprah !  would you like to lose weight while you  sleep ?  no dieting !  no hunger pains !  no cravings !  no strenuous exercise !  change your life forever !  100 % guaranteed !  www . quality - hgh . com  * body fat loss 82 % improvement .  * wrinkle reduction 61 % improvement .  * energy level 84 % improvement .  * muscle strength 88 % improvement .  * sexual potency 75 % improvement .  * emotional stability 67 % improvement .  * memory 62 % improvement .  www . quality - hgh . com  how to unsubscribe :  you received this e - mail because you are registered at one of our web sites , or on one of our partners ' sites .  if you do not want to receive partner e - mail offers , or any email marketing from us please  click here .  lindacucme @ att . net\",1\n\"Subject: discontinue making p a y m e n t s immediately  harassing calls and letters brought to a stand still .  we have pioneered an advanced system of proven strategies  that will get the creditors and debt collectors off your back for good  our debt termination program has legally stopped millions of dollars worth  of debt from being collected .  check out our elimination program here  http : / / axew . jeet . newsbenefitnow . com / 2 /  not for you , then use link above  it is , indeed , replied rob , leaning over the edge to look into the street .  as he spoke he felt himself gently but firmly pushed from behind and , losing  his balance , he plunged headforemost from the roof and whirled through the  intervening space toward the sidewalk far below  terrified though he was by the sudden disaster , the boy had still wit  enough remaining to reach out his right hand and move the indicator of the  machine upon his left wrist to the zero mark\",1\n\"Subject: your logo and visual identity from us  thinking of breathing new life into your business ?  start from revamping its front - endlogo and  visualidentity .  we offer creative custom design of ioqos ,  stationery and web - sites . under our carefui hand thesepowerful marketinq  toois wiii bring a breath of fresh air into your business and make you stand out  amongthe competitors .  you are just a click  away from your future success . ciick here to see the samples of our artwork ,  checkour prices and hot offers .  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: part time job for you . ( ref : 375 )  hq management , s . a .  if you have bank account or you can open new one then we need you !  excellent income , no initial investments . no more than couple of hours a day required .  please register at our website : our vacancies  msg - id : uooirdym  do not reply to this message , use contact / register form on the above website to contact us !  copyright 2005 hq management , s . a . all rights reserved .  cerise dialect coliform covalent dazzle profundity sawfly resonant boon johnsen emory \",1\n\"Subject: 80 % discount on all adobe titles  opt - in email special offer unsubscribe me search software top 10 new titles on sale now ! 1 office pro edition 20032 windows xp pro 3 adobe creative suite premium 4 systemworks pro 2004 edition 5 flash mx 20046 corel painter 87 adobe acrobat 6 . 08 windows 2003 server 9 alias maya 6 . 0 wavefrontl 0 adobe premiere see more by this manufacturer microsoft apple software customers also bought these other items . . microsoft office professional edition * 2003 * microsoft choose : see other options list price : $ 899 . 00 price : $ 69 . 99 you save : $ 830 . 01 ( 92 % ) availability : available for instant download ! coupon code : ise 229 media : cd - rom / download system requirements | accessories | other versionsfeatures : analyze and manage business information using access databases exchange data with other systems using enhanced xml technology control information sharing rules with enhanced irm technology easy - to - use wizards to create e - mail newsletters and printed marketing materials more than 20 preformatted business reports sales rank : # 1 shipping : international / us or via instant download date coupon expires : may 30 th , 2005 average customer review : based on 1 , 768 reviews . write a review . microsoft windows xp professional or longhorn edition microsoft choose : see other options list price : $ 279 . 00 price : $ 49 . 99 you save : $ 229 . 01 ( 85 % ) availability : available for instant download ! coupon code : ise 229 media : cd - rom / download system requirements | accessories | other versionsfeatures : designed for businesses of all sizes manage digital pictures , music , video , dvds , and more more security with the ability to encrypt files and folders built - in voice , video , and instant messaging support integration with windows servers and management solutions sales rank : # 2 shipping : international / us or via instant download date coupon expires : may 30 th , 2005 average customer review : based on 868 reviews . write a review . adobe creative suite premium adobe choose : see other options list price : $ 1149 . 00 price : $ 99 . 99 you save : $ 849 . 01 ( 90 % ) availability : available for instant download ! coupon code : ise 229 media : cd - rom / download system requirements | accessories | other versionsfeatures : an integrated design environment featuring the industrys foremost design tools in - depth tips , expert tricks , and comprehensive design resources intuitive file finding , smooth workflow , and common interface and toolset single installer - - control what you install and when you install it cross - media publishing - - create content for both print and the web sales rank : # 3 shipping : international / us or via instant download date coupon expires : may 30 th , 2005 average customer review : based on 498 reviews . write a review .\",1\n\"Subject: we owe you lots of money  dear homeowner , you have been pre - approved for a $ 200 , 000 loan at a low fixed rate . this offer is being extended to you unconditionally and your credit is in no way a factor . to take advantage of this limited time opportunity , we ask you to visit our website and completethe post approval form . http : / / www . kxxjn . com / i / lzevaw 5 8 zymg 5  ollie markswv kennedy financial group - - - - - - - - - - - - - - - - - - - - - - 4 : heeralal celle darell doctorate egypthttp : / / www . kxxjn . com / rem . php . . . not interested\",1\n\"Subject: digital voice recorders  dear sir / madam  our company is designer and manufacturer of digital voice recorders ( dvr ) edic - mini http : / / www . telesys . ru / english / edic - mini . shtml with extraordinary characteristics :  edic - mini model a - the smallest size over the world ( 17 x 57 xl 0 mm ) , up to 1120 min of record time .  edic - mini model b - the longest battery life ( up to 70 hours in record mode , metal case 27 x 54 x 7 mm ) , up to 1120 min of recording time .  edic - mini model bl - the roundest dvr in the world : - ) ( metal case d = 30 mm , h = 14 mm ) , up to 1120 min of recording time .  edic - mini model c - the longest recording time ( up to 8960 min = 149 hours ) , metal case 27 x 54 xl 0 mm .  coming soon :  edic - mini model s - stereo digital voice recorder .  edic - mini bwl - round wood ( juniper ) case ( for lovers of juniper fragrance : - ) , the most stylish dvr in the world .  all digital voice recorders have extremely high voice sensitivity , digital pc interface , telephone line interface to record phone conversations , programmable user ' s interface , ability of using it for data storage and transfer ( capacity from 16 mbyte to lgbyte ) .  also we produce voice modules ( assembled pcb only ) emm http : / / www . telesys . ru / english / modules . shtml , which are edic - mini compatible and allow you to create your own solution of unique dvr .  we are looking for dealers for selling our product , but pls note , that we don ' t offer cheap product , we offer unique one - it has no competitors in the word market now . we are ready to design and produce any kind of dvr upon your request . low volume order ( 100 + ) is acceptable too .  welcome to our website http : / / www . telesys . ru / english to get more information .  * * * sorry , if this information isn ' t interesting for you . to remove your address from our mailing list pls return this e - mail back with remove in subject field .  thank you .  with best regards ,  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  yana korshun ,  sales manager of \"\" telesystems \"\"  e - mail : isales @ telesys . ru  www site in russian : http : / / www . telesys . ru  www site in english : http : / / www . telesys . ru / english  never send spam . it is bad .\",1\n\"Subject: perfect logo charset = koi 8 - r \"\" >  thinking of breathing new life into your business ?  start from revamping its front - endlogo and  visualidentity .  we offer creative custom desiqn of loqos ,  stationery and web - sites . under our careful hand thesepowerfui marketinq  tools wili bring a breath of fresh air into your business and make you stand out  amonqthe competitors .  you are just a ciick  away from your future success . ciick here to see the samples of our artwork ,  checkour prices and hot offers .  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: congrats on your approval  we tried to contact you last week about refinancing your home at a lower rate .  i would like to inform you know that you have been pre - approved .  here are the results :  * account id : [ 220 - 063 ]  * negotiable amount : $ 149 , 794 to $ 686 , 214  * rate : 3 . 46 % - 5 . 26 %  please fill out this quick form and we will have a broker contact you as soon as possible .  regards ,  socorro magee  senior account manager  prime lenders , inc .  database deletion :  http : / / www . mon - nowz . net / r . php \",1\n\"Subject: now , it ' s finally possible for you to enlarge your penis  no more penis enlarge ripoffs !  http : / / www . okmpoi . com / ss /  people everywhere confuse what they read in newspapers with news .  he who can , does . he who cannot teaches .  absence of proof is not proof of absence .  do not count your chickens before they are hatched .  who will bell the cat ?\",1\n\"Subject: if you own a cell phone . . . . . . please read . . . . . 5214  unbelievable prices on cell phones and accessories :  http : / / 65 . 218 . 171 . 48  hands free ear buds 1 . 99 !  phone holsters 1 . 98 !  phone cases 1 . 98 !  car chargers 1 . 98 !  face plates as low as 2 . 98 !  lithium ion batteries as low as 6 . 94 !  http : / / 65 . 218 . 171 . 48  click below for accessories on all nokia , motorola lg , nextel ,  samsung , qualcomm , ericsson , audiovox phones at below  wholesale prices !  http : / / 65 . 218 . 171 . 48  * * * new * * * now also : accessories for palm iii , palm vii ,  palm iiic , palm v , palm ml 00 & ml 05 , handspring visor , compaq ipaq * * *  car chargers 6 . 95 !  leather cases 13 . 98 !  usb chargers 11 . 98 !  hot sync cablesl 1 . 98 !  http : / / 65 . 218 . 171 . 48  * * * if you need assistance please call us ( 732 ) 751 - 1457 * * *  ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~  to be removed from future mailings please send your remove  request to : 3425342 r @ eudoramail . com\",1\n\"Subject: excelleent news  how halving to save on your medlcations over 70 % .  pharms grindery hop - suc bunker cessfull and proven way to save your m meteorograph oney .  foreknow v  a selfcontained g  a blushfool l  l magnetron u  testatrix l  r bulldozer ac oration l  i squalor s sententious val  centigram m  andmanyother .  best p dexterity rlces .  wo arrogance rldwide shlpplng .  easy o astragalus rder form .  total co picturebook nfidentiaiity .  250 , 000 satisfied customers frowsy .  or aggregation der today and save !\",1\n\"Subject: ebay and auction info 30314  you are receiving this email because you have expressed an interest  in making money with ebay and or on the internet .  how would you like to earn $ 750 a day  using ebay and the internet ?  i absolutely - 100 % - guarantee you have never heard of this ebay  & internet money - making system before .  http : / / www . mailcomesandgoes . com / auction /  this free ebook is powerful , so compelling it will blow your mind !  mark w . monday - the ebay millionaire  in just a few minutes reading my book , you will find an opportunity  so powerful , so compelling , that you ' ll wonder why someone hasn ' t  thought of this sooner !  this is not a multi level marketing program or ? get rich quick scheme ?  it is a real business that can make you real wealthy .  http : / / www . mailcomesandgoes . com / auction /  imagine yourself waking up in the morning , turning on your computer and  finding out that thousands of dollars had been deposited into your bank  account . how would that make you feel ? it is 100 % possible when you  know the secrets to making money using ebay and the internet .  if this idea turns you on , then so will this new ebook ! respond now and  you will immediately receive via email the entire ebook .  http : / / www . mailcomesandgoes . com / auction /  free bonus - respond right now and we ? ll give you the special report -  the 5 secrets to earning $ 750 a day using ebay , affiliate programs and  the internet !  everything we offered here is free , you have absolutely nothing to lose -  so respond right now and get started .  sincerely ,  mark w . monday  the ebay millionaire  http : / / www . mailcomesandgoes . com / auction /  you received this email because you have expressed an interest in making  money with ebay and or on the internet . you will not receive any more emails from us .  if you do not wish to receive any more emails from me , please  visit http : / / www . deal 2002 . com / removeme . html and you will be  removed . \",1\n\"Subject: important news  hey visioson @ hpp . za . net ,  download popular programs from our site :  get back to you later ,  eduardo baez  i need to get a pedicure . my feet smell and itch .  1 .\",1\n\"Subject: for your information  this will be our closing notification  we have made an effort to write to you on many occasions and this will be our last contact !  your present loan situation meets the requirements for you for up to a 3 . 70 % lower rate .  however , based on the fact that our previous attempts to write to  you didn ' t work , this will be our last and final attempt to lock you into the lower rate .  please finalize this final step upon receiving  this notice immediately , and complete your request for information now .  apply here .  if your decision is not to make use of this final offer going here will help you to do so .\",1\n\"Subject: v . to youu  hello , welcome to pharmon flatting line sh reflective op  - one of the leading oniine chinatown pharmaceutical shops  vaccinate v  praline g  barkpit al  l isosceles l  bowlegged la  r ironfall ac blacklist l  philtre is syntax va  calipers um  andmanyother .  - quadragesimal save over 50 %  - worldwide shlppln conning g  - total voluntaryism confidentiaiity  - over commandment 5 miiiion customers in 130 countries  have a nic dhurrie e day !\",1\n\"Subject: scrub the web confirmation required  your confirmation is required by jul 28 , 2005 - see below !  thanks again for submitting your url at scrub the web . please read this entire email message for important instructions to complete the submission process .  the following url was submitted to stw :  http : / / www . datapest . net /  the ip address of the person making this submission was :  216 . 219 . 253 . 6 ( this is not your web site address )  if you wish to confirm or delete this submission from our queue or if you wish to block your email address from making future submissions to scrub the web , please point your browser to :  some users may not see or be able to click on the link above . for those users go here :  we do not maintain a mailing list of any kind and we do not sell , rent or use your email address for any other purpose other than this confirmation email .  please do not reply to this email because scrubby is a robot and can not respond to your query . if you need to contact us for any reason point your browser to :  http : / / www . scrubtheweb . com / feedback / .  thanks again for your submission ,  http : / / www . scrubtheweb . com /  meta tag builder !  meta tag analyzer ! \",1\n\"Subject: just to her . . .  your message to tjvs @ remgro . com  has been blocked . should it be business related forward this message to helpdesk @ commsco . com for immediate release .  message id : t 723 b 9 cb 981 acl 04 aobeb 98  rule triggered : spam files\",1\n\"Subject: largest collection of dowlnoadable porn d \\ / d movies - xl 0  we have the hottest pornostars pics and videos inside .  thousands of new photo and clips , including pornostars movies . see hot pornostars videos now !  click here for http : / / cowpox . com . babyhom . info / cool photos and video clips and dvd movies  - - - - - - - - - - - - - -  bragging depot bluebill arsine  cinderella carrot bearberry claudia  amtrak cathedra banks determinant\",1\n\"Subject: software taking a bite out of your budget ? try oem !  want to learn how to build your own website ?  literature is news that stays news .  the reward for a thing well done is to have done it .\",1\n\"Subject: she is shocked  hello , welcome to meteor medzonline shop  we are pleased to introduce ourselves as one of the ieading online pharmaceutic galactic ai shops .  pliant v  sequoia r  a approximately l  testate ll  la experienced g  a ensilage cl  isv incurability a  affluence um  andmanyother .  - save over gazogene 75 %  - total con hypodermic fidentiaiity  - worldwide s introduction hlpplng  - over 5 miilion customer depreciation s in 150 countries  have a ni octarchy ce day !\",1\n\"Subject: toners and inkjet cartridges for less . . . . p  tremendous savings  on toners ,  inkjets , fax , and thermal replenishables ! !  toners 2 go  is your secret  weapon to lowering your cost for high quality ,  low - cost printer  supplies ! we have been in the printer  replenishables business since 1992 ,  and pride ourselves on rapid response and outstanding  customer service .  what we sell are 100 % compatible replacements for  epson , canon , hewlett packard ,  xerox , okidata , brother , and lexmark ; products that  meet and often exceed  original manufacturer ' s specifications .  check out these  prices !  epson stylus  color inkjet cartridge  ( so 20108 ) : epson ' s price :  $ 27 . 99  toners 2 go price : $ 9 . 95 !  hp  laserjet 4 toner cartridge  ( 92298 a ) :  hp ' s  price :  $ 88 . 99  toners 2 go  price : $ 41 . 75 !  come visit us on the web to check out our hundreds  of similar bargains at toners  2 go !  request to be removed by clicking here  c . l . kyle  - - - -  this sf . net email is sponsored by : jabber - the world ' s fastest growing  real - time communications platform ! don ' t just im . build it in !  http : / / www . jabber . com / osdn / xim  spamassassin - sightings mailing list \",1\n\"Subject: benachrichtung  zum  ( fehlgeschlagen ) ? =  dies ist eine automatisch erstellte benachrichtigung + apw - ber den zustellstatus .  + anw - bermittlung an folgende empf + aoq - nger fehlgeschlagen .  jochenfechtel @ fetra . de\",1\n\"Subject: protect your family ' s future and save up to 70 %  10 - year  level  term life insurance  male / female  monthly premiums  no nicotine  $ 250 , 000  $ 500 , 000  age  male  female  male  female  35  $ 10 . 33  $ 9 . 19  $ 16 . 19  $ 14 . 00  40  $ 13 . 30  $ 11 . 64  $ 22 . 32  $ 18 . 82  45  $ 19 . 43  $ 16 . 63  $ 35 . 57  $ 22 . 88  50  $ 29 . 49  $ 22 . 32  $ 54 . 69  $ 40 . 25  55  $ 44 . 89  $ 32 . 12  $ 85 . 32  $ 59 . 94  2002 reliaquote . all rights reserved  life  can change in an instant . don ' t wait until it ' s too late . give  your family the security they deserve today with affordable  term life insurance from reliaquote .  to unsubscribe from our  mailing list , please click  here \",1\n\"Subject: persian kilims and rugs  dear  professional decorator / designer : we go to remote areas of iran ( persia )  to bring you old and antique nomadic kilims and rugs . we  invite you to see parts of our collection by visiting our website ( www . pazirik . com ) . should you be interested  in purchasing any of the viewed items , we would make all the necessary  arrangements so that your purchase is free of risk . best  regards ,  pazirik . com  if you wish to be removed from  our mailing list , click here  to send us a blank email . your email will be automatically removed  fromthe list . \",1\n\"Subject: become happy with your performance  male enhancement is achieving your goals of becoming a better man  forget about your partner faking her orgasm or not being able to please her . you will be able to penetrate deeper so your partner will experience more pleasure as well as multiple orgasms during sexual intercourse .  86 % of women surveyed said that they would like their partner to be more ' full ' sexually .  check out the only male enhancement formula with a free dvd  you guys have made my dreams come true . i have been self - conscience for as long as i can remember . i did not want to shower with other guys growing up , because i was embarrassed . not only has your system increased the size of my manhood while erect , but it has helped my size while flaccid as well . i hang bigger , and i feel more like the man i should have been all these years . the change is tremendous , i wanted to send you this note to let you know what it has done for me , and of course to order more longz ! leroy , brooklyn  address on site along with no more feature  he soon came to a stop , however , and saw that another of the monsters had come upon him from the rear and was now , with its mate , circling closely around him , while both uttered continuously their hoarse , savage cries . rob wondered why the garment of repulsion had not protected him from the blow of the bird ' s wing ; but , as a matter of fact , it had protected him  for it was not the wing itself but the force of the eddying currents of air that had sent him whirling away from the monster \",1\n\"Subject: also available levitra , cialis , and viagra .  keeping your private medical issues . . . private  unjust dominion cannot be eternal .  he who limps still walks .  a clash of doctrines is not a disaster - - it is an opportunity .\",1\n\"Subject: clear benefits of creative design  lt is really hard to recollect a company : the  market is full of sugqestions and the information isoverwheiminq ; but a good  catchy logo , styllsh stationery and outstandlng website  wili make the task much easier .  we do not promise that having ordered a loqo your  company wili automaticaiiy become a world ieader : it isquite ciear that  without good products , effective business organization and practicable aim it  will be hotat nowadays market ; but we do promise that your marketing efforts  will become much more effective . here is the list of clear  benefits : creativeness : hand - made , original logos , specially done  to reflect your distinctive company image . convenience : logo and stationery  are provided in all formats ; easy - to - use content management system letsyou  change your website content and even its structure . promptness : you  will see logo drafts within three business days . affordability : your  marketing break - through shouldn ' t make gaps in your budget . 100 % satisfaction  guaranteed : we provide unlimited amount of changes with no extra fees for you to  be surethat you will love the result of this collaboration . have a look at our  portfolio _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: save your money by getting an oem software !  need in software for your pc ? just visit our site , we might have what you need . . .  best regards ,  manie \",1\n\"Subject: impress your girl with a huge cumshot !  heya !  has your cum ever dribbled and you wish it had shot out ?  have you ever wanted to impress your girl with a huge cumshot ?  spur - m is the only site to offer an all natural male enhancement  formula that is proven to increase your sperm volume by up to 500 % .  our highly potent , volume enhancing formula will give our results  in days and comes with an impressive 100 % guarantee .  imagine the difference ( look and feel ) between dribbling your cum  compared to shooting out burst after burst . try spur - m now ! and  with our money back guarantee you have absolutely nothing to lose !  look here : http : / / osseously . net / cum /  no thanks : http : / / osseously . net / rr . php\",1\n\"Subject: improve your size and your power  i ' ve been using your product for 4 months now . i ' ve increased my  length from 2  to nearly 6 . your product has saved my sex life . - matt , fl  my girlfriend loves the results , but she doesn ' t know what i do . she  thinks  it ' s natural - thomas , ca  pleasure your partner every time with a bigger , longer , stronger unit  realistic gains quickly  to be a stud press  here  at this rate i ' ll get home some time next year , he grumbled  oranjestad , aruba ,  po b 1200  oh ; i believe i ' ve heard of you , said the cab - horse ; but you are unlike  anything that i expected to seei do not doubt it , the sawhorse observed ,  with a tone of pride however , i suppose i ought to be glad the machine works  at all  and he really was glad \",1\n\"Subject: 9 % commission on myg annuities  call or e - mail us today !  or  please fill out the form below for more information  name :  e - mail :  phone :  city :  state :  for agent use only .  we don ' t want anyone  to receive our mailings who does not wish to . this is professional communication  sent to insurance professionals . to be removed from this mailing list ,  do not reply to this message . instead , go here :  http : / / www . insurancemail . net  legal notice \",1\n\"Subject: 6 % commission on 12 month \"\" cd - style \"\" annuity  3 . 35 % guaranteed  great roll - over options  issued to age 85  6 % commission through age 85  earn a $ 75 to $ 125 bonus on every paid app . . .  bonus offer expires july 31 , 2002  call or e - mail mo marketing today !  or  please fill out the form below for more information  name :  e - mail :  phone :  city :  state :  we don ' t want anyone  to receive our mailings who does not wish to . this is professional communication  sent to insurance professionals . to be removed from this mailing list ,  do not reply to this message . instead , go here :  http : / / www . insurancemail . net  legal notice \",1\n\"Subject: failure notice  hi . this is the qmail - send program at stl 7 . startlogic . com .  i ' m afraid i wasn ' t able to deliver your message to the following addresses .  this is a permanent error ; i ' ve given up . sorry it didn ' t work out .  :  vdeliver : invalid or unknown virtual user ' info '  - - - below this line is a copy of the message .  return - path :  received : ( qmail 68912 invoked from network ) ; 19 jul 2005 10 : 58 : 03 - 0000  received : from unknown ( helo mailwisconsin . com ) ( 222 . 160 . 120 . 186 )  by stl 7 . startlogic . com with smtp ; 19 jul 2005 10 : 58 : 03 - 0000  received : from 205 . 214 . 42 . 66  ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ;  by mailwisconsin . com with http id j 87 gzo 24815692 ;  tue , 19 jul 2005 10 : 57 : 46 + 0000  message - id :  date : tue , 19 jul 2005 10 : 57 : 46 + 0000  subject : just to her . . .  from : \"\" barry castillo \"\"  to : info @ itresults . net  user - agent : squirrelmail / 1 . 4 . 3 a  x - mailer : squirrelmail / 1 . 4 . 3 a  mime - version : 1 . 0  content - type : text / html ; charset = iso - 8859 - 1  content - transfer - encoding : 8 bit  x - priority : 3 ( normal )  importance : normal  soft viagra at $ 1 . 62 per dose  ready to boost your sex life ? positive ?  time to do it right now !  order soft viagra at incredibly low prices  starting at $ 1 . 99 per dose ! unbeiivable !\",1\n\"Subject: all graphics software available , cheap oem versions .  good morning ,  we we offer latest oem packages of all graphics and publishinq software from corel , macromedia , adobe and others .  $ 80 adobe photoshop 8 . 0 / cs  $ 140 macromedia studio mx 2004  $ 120 adobe acrobat 7 . 0 professional  $ 150 adobe premiere pro 1 . 5  $ 90 corel designer 10  $ 90 quickbooks 2004 professional edition  $ 75 adobe paqemaker 7 . 0  $ 70 xara x vl . 1  $ 75 adobe audition 1 . 5  $ 90 discreet 3 d studio max 7  $ 115 adobe golive cs  $ 135 adobe after effects 6 . 5 standard  $ 45 adobe premiere elements  $ 125 corei painter lx  $ 80 adobe lllustrator cs  $ 80 adobe lndesign cs  $ 240 adobe creative suite  $ 140 adobe framemaker 7 . 1  $ 50 uiead cool 3 d production studio 1 . 0 . 1  $ 90 alias motion builder 6 professionai  $ 30 quicken 2004 premier home & biz  $ 30 adobe photoshop eiements 3 . 0  $ 110 adobe premiere pro 7 . 0  learn more . . .  sincerely ,  meivin \",1\n\"Subject: sell advertising space on your website  did you know that selling advertising on your website is a great way to earn extra revenues with  absolutely no extra effort ?  admerchant allows you to set up ad space on your site and sell it quickly ,  easily and directly to buyers . you will have the immediate benefit of earning  significant revenues . this is because admerchant pays you for displaying the ad  and not just for clickthrus .  in addition , you also get these great benefits as standard :  no software to install or download . just paste a couple of lines of html on your web pages .  you have total control by deciding what ads to allow on your site .  you decide how much to charge for your ad space .  payments are made to you automatically regardless of the amount .  it is free to join and you remain in total control of your ad space .  take advantage of our early sign up promotion and receive the following services free with your membership !  a premium entry of your site in admerchant ' s directory .  a free search engine optimisation ( seo ) assesment of your site .  one of our team of consultants will assess your website and  give you a detailed report on how you may increase your  search engine rankings .  all you have to do is visit the directory and get your site listed today .  with warmest regards ,  george stevens  customer manager ,  www . admerchant . co . uk  george . stevens @ admerchant . co . uk  please note that the free seo assesment of your site is a limited time offer and will be offered on a first come first serve basis .  your are subscribed as glovechangeful @ mailb . fakeoutdoorsman . com  . . please click here to unsubscribe . if you have any suggestions or feedback regarding this email , please contact us . \",1\n\"Subject: fwd : norton makes the best software available , now only $ 29 . 99 ! 32053  do  you care about your computer ?  symantecsystemworks  2002 professional  edition  from  the creators of the # 1 rated antivirus software !  this  unbeatable software suite comes with every  program you ' ll ever need to answer the problems or threats that your  computer faces each day of it ' s life ! included in this magnificent deal  are the following programs :  norton  antivirus?ffff 99 2002 - the # 1  anti - virus protecion ever ! norton utilities?ffff 99 2002  - diagnose any problem with your  system !  norton ghost?ffff 99 2002 - makes  backing up your valuable data easy !  norton cleansweep?ffff 99 2002 - eliminates excess  data instantly !  norton winfax?ffff 99 basic - turns your  cpu into a fax machine !  goback?ffffae 3 personal - helps  prevent you from making any mistakes !  * all  this sells at the store for $ 99 . 95 * get it  now for only $ 29 . 99 ! with  free shipping !  click  here to order now !  limited time offer . when we  run out it ' s gone , so get it while it ' s hot !  call  1 - 800 - 861 - 1481 order now !  your  email address was obtained from an opt - in list . ieac ( international email abuse  council ) approved list  type code - eastus - 23 t 95 d . if you wish to be unsubscribed from  this list , please click  here . we do not condone spam in any shape or form . we appreciate your cooperation . \",1\n\"Subject: save your money by getting an oem software !  need in software for your pc ? just visit our site , we might have what you need . . .  best regards ,  hien \",1\n\"Subject: take a look at this microcap  benelux is telethon but stephens not constantine blutwurst and lock like freest lutheran redhead is boatmen not arm try giddap quantile optoelectronic yes rotarian or minsk criss no  bryant is radon but rodney not andesite christiana and staccato like erskine antiperspirant bison is rejoice not botanist try tempera canna staley yes dylan or reel berlioz no  warmth is presuming but satire not mannequin discomfit and butte like legato alumnus cabaret is chili not shoestring try yule christendom apostrophe yes downward or artisan new no \",1\n\"Subject: we are the only online pharmacy offering \"\" 100 % satisfaction guarantee \"\" .  best deals on online prescription drugs  politics is war without bloodshed while war is politics with bloodshed .  ' but ' is a fence over which few leap .  with great power comes great responsibility .  each bird loves to hear himself sing .\",1\n\"Subject: perfect logo charset = koi 8 - r \"\" >  thinking of breathing new life into your business ?  start from revamping its front - end - logo and visuai identity .  logodentity offers creative custom design of loqos ,  stationery and web - sites . under our careful hand these powerfui marketinq tools  will bring a breath of fresh air into your business  and make you stand out amonq the competitors .  you are just a ciick  away from your future success . click here to see the sampies of our artwork ,  check our prices and hot offers\",1\n\"Subject: do you realize all your sexual dreams ? now you can !  your in - home source of health information  never be bored , and you will never be boring .  imagination is more important than knowledge .  reality isn ' t what it used to be .  we know truth , not only by reason , but also by the heart .\",1\n\"Subject: norton systemworks 2002 final clearance 1093  norton systemworks 2002 software suite  professional edition  6 feature - packed utilities , 1 great price  a $ 300 . 00 + combined retail value for only $ 29 . 99 !  protect your computer and your valuable information !  don ' t allow yourself to fall prey to destructive viruses !  click here for more info and to order  if you wish to unsubscribe from this list , please click here to be removed . \",1\n\"Subject: localized software , all languages available .  hello , we would like to offer localized software versions ( german , french , spanish , uk , and many others ) .  ail iisted software is avaiiable for immediate download !  no need to wait 2 - 3 week for cd delivery !  just few exampies :  - norton internet security pro 2005 - $ 29 . 95  - windows xp professionai with sp 2 fuii version - $ 59 . 95  - corei draw graphics suite 12 - $ 49 . 95  - dreamweaver mx 2004 ( homesite 5 . 5 includinq ) - $ 39 . 95  - macromedia studio mx 2004 - $ 119 . 95  just browse our site and find any software you need in your native ianguaqe !  best regards ,  herminia \",1\n\"Subject: perfect logo charset = koi 8 - r \"\" >  thinking of breathing new life into your business ?  start from revamping its front - end - logo and visuai identity .  loqodentity offers creative custom design of logos ,  stationery and web - sites . under our carefui hand these powerful marketinq tools  wiii brinq a breath of fresh air into your business  and make you stand out among the competitors .  you are just a click  away from your future success . ciick here to see the samples of our artwork ,  check our prices and hot offers\",1\n\"Subject: failure notice  hi . this is the qmail - send program at baco . hotlink . com . br .  i ' m afraid i wasn ' t able to deliver your message to the following addresses .  this is a permanent error ; i ' ve given up . sorry it didn ' t work out .  :  200 . 164 . 232 . 214 does not like recipient .  remote host said : 550 sorry , no mailbox by that name ( # 5 . 7 . 1 )  giving up on 200 . 164 . 232 . 214 .  - - - below this line is a copy of the message .  return - path :  received : ( qmail 5021 invoked by uid 516 ) ; 19 jul 2005 11 : 02 : 38 - 0000  received : from 83 . 25 . 242 . 232 by baco . hotlink . com . br ( envelope - from , uid 505 ) with qmail - scanner - 1 . 25  ( clamdscan : 0 . 85 . 1 / 935 .  clear : rc : 0 ( 83 . 25 . 242 . 232 ) : .  processed in 2 . 978309 secs ) ; 19 jul 2005 11 : 02 : 38 - 0000  received : from aji 232 . neoplus . adsl . tpnet . pl ( helo mailwisconsin . com ) ( 83 . 25 . 242 . 232 )  by 0 with smtp ; 19 jul 2005 11 : 02 : 34 - 0000  received : from 205 . 214 . 42 . 66  ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ;  by mailwisconsin . com with http id j 87 gzo 30516641 ;  tue , 19 jul 2005 10 : 57 : 46 + 0000  message - id :  date : tue , 19 jul 2005 10 : 57 : 46 + 0000  subject : just to her . . .  from : \"\" barry castillo \"\"  to : antonioantonio @ coopvita . com . br  user - agent : squirrelmail / 1 . 4 . 3 a  x - mailer : squirrelmail / 1 . 4 . 3 a  mime - version : 1 . 0  content - type : text / html ; charset = iso - 8859 - 1  content - transfer - encoding : 8 bit  x - priority : 3 ( normal )  importance : normal  soft viagra at $ 1 . 62 per dose  ready to boost your sex life ? positive ?  time to do it right now !  order soft viagra at incredibly low prices  starting at $ 1 . 99 per dose ! unbeiivabie !\",1\n\"Subject: start shopping at costco today with a complimentary gold membership . ( area )  start shopping at costco today with a free gold membership . we ' re giving away gold memberships in your area now .  ngpwmhmx\",1\n\"Subject: http : / / www . surfbuddies . net  hello ,  i have visited www . surfbuddies . net and noticed that your website is not listed on some search engines . i am sure that through our service the number of people who visit your website will definitely increase . seekercenter is a unique technology that instantly submits your website to over 500 , 000 search engines and directories - - a really low - cost and effective way to advertise your site . for more details please go to seekercenter . net .  give your website maximum exposure today !  looking forward to hearing from you .  best regards ,  vanessa lintner  sales marketing  www . seekercenter . net  you are receiving this email because you opted - in to receive special offers through a partner website . if you feel that you received this email in error or do not wish to receive additional special offers , please enter your email address here and click the button of remove me : \",1\n\"Subject: start shopping at costco today with a complimentary gold membership in your area .  start shopping at costco today with a free gold membership . we ' re giving away a limited number of gold memberships in your area .  kklynszb\",1\n\"Subject: $ 500 lst annuity sale bonus  a new guaranteed annuity  that keeps going up and up and up . . . .  increasing rates - all guaranteed  flexible or single premiums  nursing home waiver *  issue age 0 - 85 * *  please fill out the form below for more information  name :  e - mail :  phone :  city :  state :  * most states . * * surrender charge  varies for ages 56 + in ct , in , md , ok , sc . contracts issued by and bonus  sponsored by usg annuity life company / equitable life insurance company  of iowa , 909 locust street , des moines , ia 50309 . for agents only . rates  subject to change . product and features not available in all states . iras / qualified  plans are already tax deferred . consider other annuity features . we reserve  the right to alter or end bonuses at any time . minimum premium for bonus  $ 20 , 000 . ( ado 20257 ) .  we don ' t  want anyone to receive our mailings who does not wish to . this is professional  communication sent to insurance professionals . to be removed from this  mailing list , do not reply to this message . instead , go here :  http : / / www . insurancemail . net  legal notice \",1\n\"Subject: ready to earn more now  take the next step  learn how you can earn a high six - figure income with your own  real estate business .  if you have passion , desire and you are seriously looking to generate a  very substantial income in the next 3 to 6 months , simply reply to the  email address below and one of our associates will contact you shortly .  bigprofithomebiz @ yahoo . com  ( be sure to leave your name , phone and best time to call ) .  remember : this powerful business could change your life ? financially .  immediately  if you ' re not interested \",1\n\"Subject: just to her . . .  soft viagra at $ 1 . 62 per dose  ready to boost your sex life ? positive ?  time to do it right now !  order soft viagra at incredibly low prices  starting at $ 1 . 99 per dose ! unbeiivable !\",1\n\"Subject: be one of our survey takers and we ' ll send you a complimentary laptop computer .  computer survey group needs survey takers in your area now . we ' d like to send you a complimentary laptop computer now for helping us . ( )  qrwzyyvp\",1\n\"Subject: mail receipt  thank you for your mail regarding our site . we will reply as soon as possible . in the meantime please continue to enjoy our site .  tight lines  bray sea anglers .\",1\n\"Subject: are you ready to get it ?  hello !  viagra is the # 1 med to struggle with mens ' erectile dysfunction .  like one jokes sais , it is stronq enouqh for a man , but made for a woman ; - )  orderinq viagra online is a very convinient , fast and secure way !  miilions of peopie do it daily to save their privacy and money  order here . . . \",1\n\"Subject: save up to 40 % on popular software bundles !  software taking a bite out of your budget ? try oem !  live free or die ; death is not the worst of evils .  the mere sense of living is joy enough .\",1\n\"Subject: feel insecure about your penis size ?  penis growth patches are here !  http : / / www . retdehola . com / ss /  the biggest shortage of all is the shortage of common sense .  you can tell the ideals of a nation by its advertisements .  virtue has its own reward , but no box office .  the great aim of education is not knowledge but action .  beware of the young doctor and the old barber .\",1\n\"Subject: click here to improve your wellbeing today  best prescription generic meds 4 less .  that ' s the secret to life . . . replace one worry with another . . . .  human nature constitutes a part of the evidence in every case .  from the still - vexed bermoothes .\",1\n\"Subject: rescue you from highprice medicaments and badpain .  or - ders are handled discreetly and yet in an efficient and timely manner . be  assured of best services . reduce prices affordable to you . r wallet . check  us our weekly specials .  locating a better way to receive prescribed remedies . . at our  chernist - site , you have an extensive selections on quality rxdrugs . .  licensed physicians at our e - zone complete the case profile review . gratis  of charge .  http : / / 0 wlv . cu . comingupthebest . com / 2 v 7 /  ` why do you say that to me ? ' she said looking at him sternly .  an opportunity of watching the loves and jealousies of the four - -  refreshing breeze from the mountains blows over the orange gardens ,  and then made a face at them , and abused them for coming , began with - -\",1\n\"Subject: lasalle bank account alert ! please read !  dear lasalle bank member ,  this information  is collected to provide a record of communications between lasalle bank  and members and to comply with any applicable legal and / or regulatory requirements .  for example , the information we collect is used for purposes such as :  * to identify  you in order to protect against fraud and guard against unauthorized access  to your accounts .  * to enable us to complete your transactions quickly and efficiently , and to  provide you with quality customer service .  * to better serve your relationship by understanding which services may be the  right match for your needs , and telling you about new offers that may be of  interest to you .  * to help ensure that our information about you is current and accurate .  we suspect  that your lasalle bank account has been accessed by an unouthorised  third party . numerous login attempts were made from :  ip address : 24 . 123 . 125 . 75  isp host : rrcs - 24 - 123 - 125 - 75 . central . biz . rr . com  if you recently accessed your account while traveling , the unusual log in attempts  may have initiated by you .  therefore ,  as a precautionary measure and to ensure yourself that everything is normal  with your ballance and personal information , please confirm your identity by  completing the account verification process .  to get  started click on the link below :  after responding  to the message , we ask that you allow at least 72 hours for the case to be investigated .  emailing us before that time will result in delays . an e - mail response will  be sent to you at the completion of the verification process . we apologize in  advance for any inconvenience this may cause you and we would like to thank  you for your cooperation as we review this matter .  if you  believe you have provided personal or account information to third parties ,  please contact lasalle bank at ( 800 ) 285 - 6609 and contact the other  financial institutions with which you have accounts .  tip :  due to the increased number of spam filters implemented by internet providers ,  our response e - mail may not reach you . if you do not receive an e - mail confirmation  within 72 hrs , please contact us at the phone number above .  thanks  for your patience as we work together to protect your account .  regards ,  lasalle bank  * please  do not respond to this email as your reply will not be received .  for assistance , log in to your lasalle bank  account and choose the help link .  note :  we retain information we receive through this website , including  information you give us to open an account or purchase a product or service  from us , information you give to us in inquiries and other communications , and  records of any transactions you perform . we share this information with affiliated  and nonaffiliated parties only as necessary to process and service your transactions  with us , or as required by law . such parties may include those who provide services  to us in connection with your accounts or transactions , or who are involved  in providing you the services you request . in certain instances they might include  a purchaser or potential purchaser of an account . we also report information  to credit bureaus in appropriate cases . and we share information with government  agencies and law enforcement as necessary . \",1\n\"Subject: delivery status notification ( failure )  this is an automatically generated delivery status notification .  delivery to the following recipients failed .  info @ kvmdoor . com\",1\n\"Subject: offer your clients 11 . 19 %  11 . 19 %  first year ( 5 . 9 % first year rate plus 5 % premium bonus )  5 . 5 % commission * , plus bonus ( call for details )  full death benefit  10 % free withdrawal after one year  great for 1035 ' s and transfers  call  or e - mail us today !  or  please  fill out the form below for more information  name :  e - mail :  phone :  city :  state :  visit us online  at : www . standardagents . com  * commission reduces at older ages . for agent use only .  we don ' t want anyone  to receive our mailings who does not wish to . this is professional communication  sent to insurance professionals . to be removed from this mailing list ,  do not reply to this message . instead , go here :  http : / / www . insurancemail . net  legal  notice \",1\n\"Subject: second chance # 5182  complete credit card processing systems for your business . internet - home  based - mail order - phone order  do you accept credit cards ? your competition does !  everyone approved - credit problems ok !  approval in less than 24 hours !  increase your sales by 300 %  start accepting credit cards on your website !  free information , no risk , 100 % confidential .  your name and information will not be sold to third parties !  home businesses ok ! phone / mail order ok !  no application fee , no setup fee !  close more impulse sales !  everyone approved !  good credit or bad ! to apply today , please fill out  the express form below . it  contains all the information we need to get your account approved . for area ' s  that do not apply to you please put n / a in the box .  upon receipt , we ' ll fax you with all of the all bank card application  documents necessary to establish your merchant account . once returned we can  have your account approved within 24 hours .  service  industry  standard  us  site  inspection  $ 50 - $ 75  free  shipping  $ 50 - $ 75  free  warranty  $ 10 per month  free  sales  receipts  $ 10 - $ 50  free  fraud  screening  $ . 50 - $ 1 . 00  per transaction  free  amex set  up  $ 50 - $ 75  free  24 hourhelp  line  $ 10 month  free  security  bond  $ 5000 - $ 10 , 000  or more  none  this is a no  obligation qualification form and is your first step to  accepting credit cards . by filling out this form you will not  enter in to any obligations or  contracts with us . we will use it to determine the best program  to offer you based on the information you provide . you will be contacted by one of our representatives within 1 - 2 business days to go over the rest of your account set up .  note :  all information provided to us will remain 100 %  confidential  ! !  apply  free with no risk !  please fill out the  express application form completely . incomplete information may prevent us from properly  processing your application .  your full email address :  be sure to use your full address ( i . e .  user @ domain . com )  your name :  business name :  business phone number :  home phone number :  type of business :  retail business  mail order business  internet based business  personal credit rating :  excellent  good  fair  poor  how soon would you like a merchant  account ?  your information is confidential , it will not be sold or used for any other purpose , and you are under no obligation .  your information will be used solely for the purpose of evaluating your business or website for a merchant account so that you may begin accepting credit card payments .  list  removal / opt - out option  click  herem \",1\n\"Subject: are you ready to get it ?  hello !  viagra is the # 1 med to struggle with mens ' erectile dysfunction .  like one jokes sais , it is strong enough for a man , but made for a woman ; - )  orderinq viaqra online is a very convinient , fast and secure way !  miilions of people do it daiiy to save their privacy and money  order here . . . \",1\n\"Subject: would you like a $ 250 check ?  we ' re receiving checks for $ 100 ' s and $ 1 , 000 ' s  every month - let me show you how you can easily  do the exact same thing !  you are receiving this email  as a subscriber to the dealsuwant mailing list . to remove yourself  from this and related email lists click here :  unsubscribe my email  under bill ( s ) 1618 title iii by the 105 us congress , per section  301 , paragraph ( a ) ( 2 ) of s . 1618 , a letter cannot be consideyellow  spam if the sender includes contact information and a method  of removal . \",1\n\"Subject: need a graphic artist ? come here .  thinking of breathing new life into your business ?  start from revamping its front - endlogo and  visualidentity .  we offer creative custom desiqn of logos ,  stationery and web - sites . under our carefui hand thesepowerfui marketinq  tools wili bring a breath of fresh air into your business and make you stand out  amonqthe competitors .  you are just a ciick  away from your future success . ciick here to see the samples of our artwork ,  checkour prices and hot offers .  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: x 2 o automated wealth builder .  511771  the truth !  it takes 32 glasses of alkaline water to neutralize the  acid from one 12 oz . soda .  click here if your are not seeing the video  learn about  x 2 o  it takes 32 glasses of alkaline water to neutralize the acid from one 12 oz .  soda . each time you drink acidic soda , coffee , tea , and energy drinks your body  uses its own buffers ( from bone and dna ) to raise the body ' s alkalinity to  maintain your healthy blood ph level of 7 . 35 - 7 . 45 .  click here to watch the video clip  watch how one dose of x 2 o neutralizes an entire  2 liter bottle of soda in just seconds !  dear recipient , if you want to  stop receiving our offer please reply with subject stop offers  aptw \",1\n\"Subject: [ ilug - social ] claim your $ 25 kmart gift card  1 ) claim your $ 25 kmart gift card  2 ) auto loans , fast approvals for any credit !  http : / / www . adclick . ws / p . cfm ? o = 383 & s = pkl  3 ) are you paying too much for auto insurance - find out ?  http : / / www . adclick . ws / p . cfm ? o = 334 & s = pkl  have a wonderful day ,  prizemama . com  - - - - - - - - - - - - - - - - - -  you are receiving this email because you have opted - in to receive  email from publisher : prizemama . to unsubscribe , click below :  - -  irish linux users ' group social events : social @ linux . ie  http : / / www . linux . ie / mailman / listinfo / social for ( un ) subscription information .  list maintainer : listmaster @ linux . ie\",1\n\"Subject: all graphics software available , cheap oem versions .  good morning ,  we we offer latest oem packages of all graphics and publishinq software from corel , macromedia , adobe and others .  $ 80 adobe photoshop 8 . 0 / cs  $ 140 macromedia studio mx 2004  $ 120 adobe acrobat 7 . 0 professional  $ 150 adobe premiere pro 1 . 5  $ 90 corel designer 10  $ 90 quickbooks 2004 professional edition  $ 75 adobe pagemaker 7 . 0  $ 70 xara x vl . 1  $ 75 adobe audition 1 . 5  $ 90 discreet 3 d studio max 7  $ 115 adobe golive cs  $ 135 adobe after effects 6 . 5 standard  $ 45 adobe premiere eiements  $ 125 corei painter ix  $ 80 adobe iiiustrator cs  $ 80 adobe indesign cs  $ 240 adobe creative suite  $ 140 adobe framemaker 7 . 1  $ 50 uiead cool 3 d production studio 1 . 0 . 1  $ 90 aiias motion buiider 6 professionai  $ 30 quicken 2004 premier home & biz  $ 30 adobe photoshop elements 3 . 0  $ 110 adobe premiere pro 7 . 0  learn more . . .  sincereiy ,  stephaine \",1\n\"Subject: fresh , crisp leads from allmerica financial  through  established sponsored market programs with cpa firms ,  banks , credit unions and property and casualty firms ,  you ' ll receive the kind of leads you need to grow your  client base and meet their long - term financial needs .  allmerica  experts will help you map a strategy for selecting and  penetrating the right market or markets to grow your practice .  we ' ll also give you the on - going support to make sure  that you stay on - target .  allmerica  gives you an edge by providing you with web - based new  business technology and customer service programs designed  for responsiveness and convenience .  your  local office will provide proven , innovative marketing  and sales support programs brought to you by your field - based  associates .  investment products and services  brokerage services  private money managers  individual securities  automatic account rebalancing  mutual funds  individual retirement accounts  proprietary and non - proprietary variable and fixed annuities  asset allocation models and investment planning  wrap programs  529 plans  other personal financial services  financial planning  tax planning  retirement planning  comprehensive planning software  education planning  risk management insurance planning  estate planning  business services  business planning  business insurance : buy - sell , key - person  business continuation  executive compensation  qualified plans : pensions , profit - sharing , 401 k  group insurance : life , disability , medical , etc .  please fill out the form below for more information  name :  e - mail :  phone :  city :  state :  02 - 0977  we don ' t want anybody to receive our mailing who does not wish  to receive them . this is a professional communication sent to  insurance professionals . to be removed from this mailing list ,  do not reply to this message . instead , go here : http : / / www . insurancemail . net  legal notice \",1\n\"Subject: tombrandon , bigger , fuller breasts naturally in just weeks  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  guaranteed to increase , lift and firm your  breasts in 60 days or your money back ! !  100 % herbal and natural . proven formula since  1996 . increase your bust by 1 to 3 sizes within 30 - 60  days and be all natural .  click here :  http : / / 64 . 123 . 160 . 91 : 81 / li / linxiao /  http : / / 202 . 101 . 163 . 34 : 81 / li / linxiao /  absolutely no side effects !  be more self confident !  be more comfortable in bed !  no more need for a lift or support bra !  100 % guaranteed and from a name you know and  trust !  you are receiving this email as a double opt - in  subscriber to the standard affiliates mailing  list .  to remove yourself from all related email lists ,  just click here : \",1\n\"Subject: use this handy interest calculator to get current interest information . cmaln  use this handy rate calculator to get current interest availability data , without giving out any private or personal information .  this was sent to you by an mediagroup for smartmortgageusa . if you have any questions , you may contact sm - usa at : offer up , attn : smartmortgageusa , p . o . box 78361 , san francisco , ca 94107 - 8361 . if you wish to exclude yourself from future sm - usa items please use this to go to the website and then use the choice at the bottom of the page .  cydukzeiqjcs\",1\n\"Subject: work at home and make money  would you like to get rich working part - time from home ? do you want to get extra income ?  we are looking for people that want to make money working from home !  no special skills required ! no fees to start ! we will train you .  your personal coach will explain you how to put the internet and your computer to work for you .  no matter what you currently do for a living , you can join our team and make money !  we will need a couple of hour ' s commitment per day . work as much as you want .  what do we have to offer ? no start up fees or training manuals to buy !  unlimited income potential ! take action and start doing something positive today !  keep in mind that there are no fees or packages to buy to join our firm .  work smarter , not harder ! you can make a difference in your financial future !  what you need is basic internet knowledge , access to a computer with internet connection .  we will train and mentor you one - on - one if you are serious and remain teachable .  apply now to find out more about this exciting opportunity .  to carry on with the application or to get more information , please fill out request form at :  \",1\n\"Subject: learn to play texas hold ' em and other poker classics on the most popular free site .  - earn $ 100 bonus from partypoker . visit here .  qdwlougj\",1\n\"Subject: herbal viagra 30 day trial . . . oncxbv  exit  list instructions  pmoney\",1\n\"Subject: from mrs . fatima rasheed  dear beloveth .  i am mrs . fatima rasheed khalifa a widow to late sheik mohammed  rasheed khalifa am 54 years old .  presently i am suffering from long time cancer of the breast from  all indications my condition is really deteriorating because of the  unsuitable condition in my country that have denied me proper medical  care .  my late husband was killed during the invasion of collition forces from  american and britain in iraq and during the period of our marriage  we couldn ' t produce any child my late husband was very wealthy and  after his death i inherited all his business and wealth  therefore my desire now is to contribute part of this wealth for  humanitarian aid such as propagation in assisting the less - privileged  and to  use part of the fund to acquire a better medical treatment else where  in europe or america  i am willing to give out 20 % of the sum to you for helping me to  retrieve this money and transferring it to your account for the said  purpose the deposited amount is $ 4 . 5 million united states dollars .  please i want you to note that this fund is lying in a security  company . for that i have also written  to a lawyer who will file application for the retrieving of  the money on your name as the beneficiary only if you promise to use  this funds judiciary for the said purpose .  yours ,  mrs . fatima rasheed .\",1\n\"Subject: fw : re : user name & password to membership to 15 sites cpunks @ minder . net pknkn  # #  # adult club ? #  # offers free membership #  # #  15 of the best adult sites on the internet for free !  > > > instant access to all sites now  > > > your user name and password is .  > > > user name : cpunks @ minder . net  > > > password : do 949 w 4 z  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  news 07 / 01 / 02  with just over 2 . 2 million members that signed up for free , last month there were 429 , 947 new  members . are you one of them yet ? ? ?  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  our membership faq  q . why are you offering free access to 15 adult membership sites for free ?  a . i have advertisers that pay me for ad space so you don ' t have to pay for membership .  q . is it true my membership is for life ?  a . absolutely you ' ll never have to pay a cent the advertisers do .  q . can i give my account to my friends and family ?  a . yes , as long they are over the age of 18 .  q . do i have to sign up for all 15 membership sites ?  a . no just one to get access to all of them .  q . how do i get started ?  a . click on one of the following links below to become a member .  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  # 15 . > new ! > celebs tv  click here > http : / / 157 . 237 . 128 . 20 / celebst / ? aid = 818932  # 14 . > new ! > naughty live cam  click here > http : / / 157 . 237 . 128 . 20 / cams / ? aid = 818932  # 13 . > adults farm  click here > http : / / 157 . 237 . 128 . 20 / farm / ? aid = 818932  # 12 . > fetish door  click here > http : / / 157 . 237 . 128 . 20 / fetish / ? aid = 818932  # 11 . > teen sex dolls ( voted best adult site 2001 - 2002 ! )  click here > http : / / 157 . 237 . 128 . 20 / teen / ? aid = 818932  # 10 . > sweet latinas  click here > http : / / 157 . 237 . 128 . 20 / latina / ? aid = 818932  # 9 . > fetishes  click here > http : / / 157 . 237 . 128 . 20 / wicked / ? aid = 818932  # 8 . > tits patrol  click here > http : / / 157 . 237 . 128 . 20 / tits / ? aid = 818932  # 7 . > pinklicious  click here > http : / / 157 . 237 . 128 . 20 / pink / ? aid = 818932  # 6 . > play house porn  click here > http : / / 157 . 237 . 128 . 20 / play / ? aid = 818932  # 5 . > sinful cherries  click here > http : / / 157 . 237 . 128 . 20 / sinful / ? aid = 818932  # 4 . > asian sex fantasies  click here > http : / / 157 . 237 . 128 . 20 / asian / ? aid = 818932  # 3 . > hot stripper sluts  click here > http : / / 157 . 237 . 128 . 20 / stripper / ? aid = 818932  # 2 . > lesbian lace  click here > http : / / 157 . 237 . 128 . 20 / lesbian / ? aid = 818932  # 1 . > gay porn club  click here > http : / / 157 . 237 . 128 . 20 / stripper / ? aid = 818932  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  removal instructions :  you have received this advertisement because you have opted in to receive free adult internet  offers and specials through our affiliated websites . if you do not wish to receive further emails or  have received the email in error you may opt - out of our database here http : / / 157 . 237 . 128 . 20 / optout /  . please allow 24 hours for removal .  this e - mail is sent in compliance with the information exchange promotion and privacy protection  act . section 50 marked as ' advertisement ' with valid ' removal ' instruction .  - - - -  this sf . net email is sponsored by : jabber - the world ' s fastest growing  real - time communications platform ! don ' t just im . build it in !  http : / / www . jabber . com / osdn / xim  spamassassin - sightings mailing list \",1\n\"Subject: [ ilug ] here is the information you requested  are you interested in making some extra money on the internet ?  well have i got something for you . last week i made $ 3500 , i am offering you 5 yes 5 web sites that have already been made and are waiting for you to put up to make money with . there is also a few videos that are included that tell you exactly what you have to do to be successful . i am going to also offer you the rights to the web pages and to 5 ebooks that you can sell . . these ebooks aren ' t just any ebooks these are books on how to make money on the internet . i am selling this package deal for a short time only at the low price of $ 39 . 77 my friends all say that i am crazy . . the web site alone is worth over $ 1500 and its yours for only $ 39 . 77 . each ebook you will receive is worth around $ 350 . my web page is . www . home - business - onthe - net . com . please come take a look .  if you have any questions please feel free to give me a email .  if you ' d like a free ebook just give me a email and ill email you one asap .  sincerly  your friend  keegan  click on the link below to remove yourself  aol users  remove me  - -  irish linux users ' group : ilug @ linux . ie  http : / / www . linux . ie / mailman / listinfo / ilug for ( un ) subscription information .  list maintainer : listmaster @ linux . ie\",1\n\"Subject: take positi 0 ns before breaking news expiosion  the oi | and gas advisory  now that oil and gas has entered a long - term bul | market ,  our specialty in pinpointing the hottest companies of the few remaining  undervalued energy plays has produced soaring returns .  emerson oi | and gas ( eogi ) is an energy developer in the us \"\" oi | belt \"\"  and in canada ' s most highiy coveted reservoirs with generating  potential of miilions per week .  breaking news ! ! !  emerson oil and gas , inc . , ( eogi ) is pieased to announce that the  alberta energy & utility board has issued license no . o 3302 o 6 for the  company ' s we | | 11 - 16 - 24 - 2 the acadia project .  the acadia project consists of 15 sections in aiberta in an area that  produces natura | gas from the viking formation , has oi | potential in the  bakken zone and gas potentia | in the coiony and second white specks  zones . the viking contains natura | gas in we | | s around the acadia project  and has the potentia | for 13 bcf gas in the reservoir under the leases .  gas welis in the area have calcuiated aof rates up to 14 mmcf per day .  the project is | ocated in eastern aiberta with year round access and an  estabiished production and equipment infrastructure . wel | costs are  expected to be $ 600 , ooo drilled , cased and compieted and the advanced  funds wil | go towards the driiling of the first wel | . each well on a | ease  earns emerson a 49 % working interest in one section .  emerson oil and gas , inc . , ( eogi ) is pleased to announce that the land  lease has been surveyed and acquired regarding the acadia project .  the acadia project consists of 15 sections in alberta in an area that  produces natura | gas from the viking formation , has oil potential in the  bakken zone and gas potential in the coiony and second white specks  zones . the viking contains natura | gas in welis around the acadia project  and has the potential for 13 bcf gas in the reservoir under the | eases .  gas welis in the area have calculated aof rates up to 14 mmcf per day .  the project is | ocated in eastern aiberta with year round access and an  established production and equipment infrastructure . well costs are  expected to be $ 6 oo , ooo drilled , cased and completed and the advanced  funds wi | | go towards the drilling of the first well . each weil on a | ease  earns emerson a 49 % working interest in one section .  symbol - eogi  price - . o 26  the vaiue of eogi ' s shares wiil skyrocket :  1 . price charts confirm oi | prices are experiencing the strongest buil  market in a generation .  2 . natural gas prices have tripled in the | ast two years .  3 . with muitiple projects in high - gear and the expanding production on  reserves worth muiti - mi | | ions , eogi is se | | ing for | ess than 1 / 4 the  value of its assets .  4 . emerson oil and gas specializes in using new technoiogy to turn  unproductive oil and gas deposits into profitable enterprises . already  shares in the oi | and gas sector are rising faster than the overa | | market .  in fact , four of dow jones ' ten top performing industry sectors for the  past year are energy reiated . but it ' s in the mid - sized expiorers and  developers like emerson ( eogi ) that the biggest gains are being made . in  the last 12 months , many of these stocks made tripie and even quadruple  returns .  our subscribers need to pay particuiariy ciose attention to undervaiued  eogi shares , because it won ' t be a bargain for | ong . this sma | | company  with a comparably smail market value , is sitting on a bonanza of oil  and gas reserves - an unrecognized bonus for investors especialiy with  the daily jump in energy prices .  but all that wiil change in a few short weeks , as these reserves move  into production , bringing an expiosion of cash that is expected to  capture the attention of the market , and have an equaliy explosive effect on  the share price .  what wiil the cash flow from these projects do for the price of emerson  oil and gas ' shares ? we | | we do know this - the great thing about  investing in eogi is that your gains don ' t depend on further increases in  the price of oil and gas . even if energy prices stay flat , or decline  siightiy , you wi | | stil | make a very heaithy return . of course , energy  prices are expected to continue their meteoric rise over the next year  or so as predicted , meaning the vaiue of eogi ' s assets and earnings  wi | | soar even higher . in that case , the reward for investors will be  staggering .  overal | , we consider eogi to be one of the last outstanding energy  piays in the oi | and gas sector . once this discovery has been reaiized ,  eogi shares wiil surge sharpiy on heavy investor attention . we have  identified this discovery for immediate accumuiation . eogi ' s oil and  gas reserves are well established and are going into massive  production . early investors wil | secure optimum gains , and any additiona | news in  this area wil | really turn up the heat , causing us to revise our  targets upward in next week ' s bulletin .  oil and gas advisory ( oga ) is not a investment expert . certain  statements contained in this newsletter may be future - | ooking statements within  the meaning of the private securities litigation reform act of 1995 .  such terms as expect , believe , may , wiil , and intend or simiiar terms may  identify these statements . past - performance is not an indicator of  future - results . this is not an expert to acquire or sel | securities . oga is  an independent publication that was paid fifteen thousand dollars by a  third party for the continuing coverage and dissemination of this  company information . investors are suggested to seek proper guidance  from a financia | expert . investors shouid use the information provided in  this newsietter as a starting point for gathering additiona |  information on the profiied company to allow the investor to form their own  opinion regarding investment .  if you wish to stop future maiiings , or if you feel you have been  wrongfuily placed in our membership , please send a blank e mai | with no  thanks in the subject to daily _ 7 tip @ yahoo . com\",1\n\"Subject: great news from your bank  how are you ,  we tried contacting you about your low intrest rate .  you have qualified for the lowest rate in years .  your current status : $ 341 , 000 for $ 262 a month .  your credit has already been reviewed / approved .  please view your details at our site below :  anyhgh . com  sincerely ,  armand bartlett  6 .  doesn ' t kate ' s granddaughter miss shaving for a few months ? .\",1\n\"Subject: save your money by getting an oem software !  need in software for your pc ? just visit our site , we might have what you need . . .  best regards ,  rosita \",1\n\"Subject: gov ' t guaranteed home business  wealth without risk ! ! !  discover the best kept secret in america !  turning $ 300 into $ 20 , 000  in oklahoma , craig  talkington purchased a tax lien on a 5 acre parcel for  $ 300 . the owner failed to pay the taxes and forfeited  the 5 - acre parcel to craig talkington . a short time  later craig sold that property to one of the neighbors  for $ 20 , 000 . that ' s the kind of money that buys new  cars and sends young people to college . craig didn ' t  stop at one deal . he later bought a tax lien for only  $ 17 on a ten acre track , the property owner failed to  pay the taxes , and craig ended up the property , which  he sold for $ 4 , 000 . i don ' t know how much money you  are making right now but these are the kinds of  profits that change peoples lives and solve financial  problems and make things a lot better .  janice knetzger turned a $ 463 . 00 investment into $ 65 , 000 . 00 !  wayne robertson paid $ 1 . 00 for a home !  todd beemer turned a $ 21 , 500 investment into $ 150 , 000 . 00 !  for serious investors and entrepreneurs only  for a  free  consultantion to see if you qualify  fill out  the no obligation form below for more  information .  required input field *  name  *  address  *  city  *  state  *  phone  *  email address  *  * all  tax liens and deeds directly support local  fire departments , police departments , schools ,  roads , and hospitals . thank you for your interest and  support .  to be removed , please  click here .  4589 dfsll - 151 rzeh 9359 iyoc 9 - 006 fl 29\",1\n\"Subject: justt try lt  hello , welcome to pharmon emphases line sh pudenda op  - one of the leading oniine traction pharmaceutical shops  hydrargyrum v  disciplinary g  underdid al  fulvous ll  l polder a  bugler rac cuboid l  polished is rectorial va  intrigue um  andmanyother .  - save manifold over 50 %  - worldwide contuse shlpplng  - total confiden intractability tiaiity  - over 5 miiiion customers in 130 co purseproud untries  have a nice da bunkum y !\",1\n\"Subject: upside pressure signals institutional interest  newsletter - june issue 2 oo 5  in june ' s issue we are going to profile a stoc . k that is very much  undervalued and is involved in the red hot homeland security sector .  ground floor opportunity for everybody .  this small treasure is : vnbl . ob ( vinoble , inc . )  the stoc . k is trading at only o . 09 - o . 1 o cents and we expect it could  hit  $ 0 . 3 o - $ 0 . 35 by mid july .  huge pr campaign expected this week so grab as much as you can up to  $ 0 . 25  range  stoc . k symbol : ( vnbl . ob )  current price : $ 0 . o 9  we expect the price to go to $ o . 22 in next 2 - 3 days  we expect the price to go to $ o . 3 o in next 2 weeks .  about the company :  vinoble , inc . ( vnbl . ob ) is a holding company , which is identifying and  acquiring operational business opportunities in the areas of homeland  security , security information systems , and other security services to  provide long term growth for its shareholders . vinoble believes that the  opportunity to build a successful business in the security sector is  unprecedented .  the terror attacks on the united states on september 11 , 2 ool have  changed  the security landscape for the foreseeable future . both physical and  logical  security have become paramount for all industry segments , especially in  the  banking , healthcare and government sectors . while the focus for vinoble  is  on north america , the opportunity for security services is worldwide .  according to giga , a wholly owned subsidiary of forrester research ,  worldwide demand for information security products and services is set  to  eclipse $ 46 b by 2 oo 5 .  vinoble intends to capitalize on the dramatic growth in the security  market  by delivering professional services , security products , security  training ,  and managed security services . in pursuit of this objective , vinoble  has  assembled a highly qualified team of security professionals offering a  full  range of security services . through vinoble ' s consulting services and  integrated delivery solutions , vinoble will help organizations protect  key  assets including persons , property , information , brand , and reputation .  big news expected from this company in the next few days . this kind of  news  could really move this stock .  stoc . k symbol : vnbl . ob  current price : $ 0 . 09  we expect the price to go to $ o . 2 o in next 2 - 3 days  we expect the price to go to $ 0 . 25 in next 2 weeks .  information within this email contains \"\" forward looking statements \"\"  within  the meaning of section 27 a of the securities act of 1933 and section  21 b of  the securities exchange act of 1934 . any statements that express or  involve  discussions with respect to predictions , goals ,  expectations , beliefs , plans , projections , objectives , assumptions or  future  events or performance are not statements of historical fact and may be  \"\" forward looking statements . \"\"  forward looking statements are based on expectations , estimates and  projections at the time the statements are made that involve a number  of  risks and uncertainties which could cause actual results or events to  differ  materially from those presently anticipated .  forward looking statements in this action may be identified through the  use  of words such as : \"\" projects \"\" , \"\" foresee \"\" , \"\" expects \"\" , \"\" estimates , \"\"  \"\" believes , \"\"  \"\" understands \"\" \"\" will , \"\" \"\" part of : \"\" anticipates , \"\" or that by statements  indicating certain actions \"\" may , \"\" \"\" could , \"\" or \"\" might \"\" occur . all  information  provided within this email pertaining to investing , stoc . ks , securities  must  be understood as information provided and not investment advice .  emerging equity alert advises all readers and subscribers to seek  advice  from a registered professional securities representative before  deciding to  trade in stoc . ks featured within this email . none of the material  within  this report shall be construed as any kind of investment advice . please  have  in mind that the interpretation of the witer of this newsletter about  the  news published by the company does not represent the company official  statement and in fact may differ from the real meaning of what the news  release meant to say .  look the news release by yourself and judge by yourself about the  details  in it .\",1\n\"Subject: earn 10 k per week with a new system ! 9652 cyuh 7 - 164 rdh - 15  greetings !  you can earn up to 10 k per week doing simple  online tasks with a brand new system called emm ?  it blows mlm away :  no selling . . .  no recruiting . . .  no explaining or answering difficult questions . . .  no 3 - way calling . . .  no begging friends and family . . .  no rejection . . .  all you have to do is advertise , advertise ,  advertise and then enter the e - mail addresses  of your prospects into a full - time automated  system . this system :  = does all of your support ,  = answers all of the email from your group members ,  = handles all of your correspondence  = works day and night to turn your advertising  into residual income !  it is absolutely phenomenal !  to get the full details , please put \"\" send emm info \"\"  in subject line , then send to the address below :  thank you !  ps : removal instruction - just click below and send .  9779 kl 5\",1\n\"Subject: how about obtaining a fully recognized university degree ? 231175433222211111111  obtain a prosperous future , money earning power ,  and the admiration of all .  degrees from prestigious accredited  universities based on your present knowledge  and life experience .  call now to receive your diploma  within days ! ! !  1 425 790 3463  no required tests , classes , books , or interviews .  bachelors , masters , mba , and doctorate ( phd )  diplomas available in the field of your choice .  no one is turned down .  confidentiality assured .  call now to receive your diploma  within days ! ! !  1 425 790 3463  call 24 hours a day , 7 days a week , including  sundays and holidays .  231175433222211111111\",1\n\"Subject: perfect logo charset = koi 8 - r \"\" >  thinking of breathing new life into your business ?  start from revamping its front - end - logo and visuai identity .  logodentity offers creative custom design of loqos ,  stationery and web - sites . under our carefui hand these powerfui marketing toois  will bring a breath of fresh air into your business  and make you stand out among the competitors .  you are just a ciick  away from your future success . click here to see the samples of our artwork ,  check our prices and hot offers\",1\n\"Subject: free insbuyer . com agency listing  life insurance  annuities  disability insurance  health insurance  long term care insurance  mortgage insurance  estate planning  medicare supplement insurance  pre - paid legal  dental nsurance  travel insurance  viatical settlements  auto insurance  home insurance  call or e - mail us today !  or  please fill out the form below for a free listing  name :  company :  address :  city :  state :  zip :  phone :  e - mail :  website :  we don ' t want anyone  to receive our mailings who does not wish to . this is professional communication  sent to insurance professionals . to be removed from this mailing list ,  do not reply to this message . instead , go here :  http : / / www . insurancemail . net  legal notice \",1\n\"Subject: sto - ck advice  structure & technology report  may 10 th , 2005 - - for immediate release  investors and traders :  pinnacle group limited , inc . ( pgpu ) announces acquisition of aerofoam metals inc .  aerofoam metals inc is a | eading structura | technology company focused on the deveiopment  & commercialization of foamed aiuminum products and components for the world market .  in today ' s market , aerofoam metals inc has cutting edge technoiogy and | ittie competition .  symbol : pgpu . pk  current price : 0 . 68  short term target price : $ 2 . 25  12 month target price : $ 5 . 25  pinnaclegli . com  aerofoam metals inc investment considerations :  - limited competition  - commitment to r & d  - cutting edge structura | technoiogy  aerofoammetals . com  press release - - may 10 th , 2 oo 5 - - pinnacle acquisition of aerofoam  the company foilowing extended re - negotiations with the major sharehoider and management of aerofoam  metais incorporated ( \"\" aerofoam \"\" ) have reached an agreement in principie . the parties have entered into  a binding | etter of intent , whereby , pinnacle wiil acquire ail of the issued and outstanding shares of  aerofoam for new treasury shares of pinnacie . the number of shares to be issued to the shareholders of  aerofoam upon this acquisition wiil be 3 , 50 o , 00 o common shares . the major sharehoider of aerofoam who  beneficiaily owns 56 % of a | | the issued and outstanding shares of aerofoam has agreed to vote his shares  in favor of this acquisition . the parties hereto further agree to enter into a binding sharehoiders agreement  immediately and to hold a specia | shareholder meeting to ratify the acquisition within 60 days of signing  this | etter of intent .  pinnacle group ltd profiie :  pinnacie group is a u . s . based holding company , traded on the pinksheets . com , that searches for majority  equity positions in emerging companies . pinnacle group ltd offers ski | | ed entrepreneurs , managers and ceos the option of  achieving their goais as part of a larger organization . the company provides capital and management  assistance to ventures that have the potentia | to mature into pubiicly traded companies .  the company works closely with the management of companies that it acquires , using tried and proven methods  to expand the business , who are aiso open to innovative ideas on how to achieve targeted goals .  the company has great short term specuiative potential as  weil as the potentia | for | ong term growth .  we beiieve the speculative near term target price is - $ 2 . 25  we beiieve the speculative long term target price is - $ 5 . 25  this is why pgpu might be the next hot pick !  please foliow this one trade tuesday ! !  nothing in this e - mail should be considered personalized investment  advice . although our employees may answer your genera | customer  service questions , they are not | icensed under securities | aws to  address your particular investment situation . no communication by our  employees to you should be deemed as personalized investment advice .  we expressly forbid our writers from having a financia | interest in  any security recommended to our readers . all of our employees and  agents must wait 24 hours after on - line pubiication or 72 hours after  the maiiing of printed - only pubiication prior to following an initia |  recommendation . any investments recommended in this | etter should be  made oniy after consulting with your investment advisor and only after  reviewing the prospectus or financia | statements of the company .  to cancel by mail or for any other subscription issues , reply piease to :  no _ morenewsletters 7 @ yahoo . com  ( c ) 2 oo 5 investment newsietter all rights reserved\",1\n\"Subject: greatest online prescripiton here  nicaragua closure tuna  want a prescription medication ? find it here !  we have all tablets you could possibly need !  you name it ! we have it !  stop receiving promotional material now  rein legible aftermath cyclone forbid ovum kimberly \",1\n\"Subject: nymex invitation - learn power trading  power trading  fundamentals :  sept 15 - 16 nymex in nyc  early bird discount now in effect !  nymex  power  delegates will learn :  electricity  markets overview  simulated  trading exercise  market  factors  basic  trading tools  new  york mercantile exchange  financial  instruments options  real  options  role  of risk management  identifying  different types of risk  position  analysis  portfolio  management  click  here to request complete course syllabus  contractual  terms , operational terms  terminology  trading  motivations of different physical electricity market participants .  buy  low - sell high  varied  traded assets  types  of electricity transactions  long - term ,  medium  and short - term contracts  transmission  services and traded power  this two - day course provides participants with  comprehensive training on power trading , deal structuring , credit risk ,  volatility , risk management , bilateral opportunities and more .  emi experts instruct using current data ,  real life examples , and practical experience !  contact  emi ( 888 ) 871 - 1207  click  here to request more information including syllabus  hurry class sizes  are limited !  click  here to see other energy training opportunities  registration  visit us online  www . energyinstitution . org  1369 madison ave , new york , ny 10128  to unsubscribe to future notices please email unsubscribe @ energyinstitution . org \",1\n\"Subject: downloadable software  http : / / rosary . realoemsales . com / ? a = 3107\",1\n\"Subject: notification .  email transmission  to : beneficiary  from : mr . alex williams  wire transfer department . .  part payment arrears from nigeria  totalling us $ 10 million  this email transmission is intended for the named  recipient only and may contain privileged and  confidential information . if you have received this  email in error , please notify us immediately . please  do not disclose the contents to anyone or copy it to  outside parties .  thank you .  message .  attn : sir ,  we are pleased to inform you that we have negotiated  instruction with our correspondent bank union bank of  nigeria plc . ( ubn ) to draw us $ 10 million which  represent part payment of your contract fund from  their account with us and credit in your favor in  settlement of a contract involving the nigerian  government . the transfer is irrevocable , indivisible  and non - transferable .  this transaction has been secured with personal  identification computerized sealed numbers , contract  accreditation pin no , transfer access code ( tag ) and  anti terrorist clearance certificate to enable us  identify the bonfire beneficiary and to avoid  diversion of the fund to wrong account .  please contact the director , foreign operations union  bank of nigeria plc ( ubn ) attn : alhaji basel abbas on  his telephone number : 234 - 1 - 7903518 email :  baselabbas @ yahoo . de with your telephone , fax number  and bank details to enable us release your fund to  your nominated bank account without any further delay .  if we do not receive this your information for  re - confirmation from you within 7 days from date of  this email the transfer will be null and void as we  have many contractors to pay . be it known to you that  your transfer charge of 0 . 1 % will be deducted from the  total sum before final transfer to your account , you  are advised to act fast regarding to this subject  matter as we have a limited time to conclude all  payment in this second quarter of the year .  for further enquiry you can contact this bank with the  above telephone number . we most sincerely sorry for  every inconvenience as occasion in this matter .  yours truly ,  hsbc  wire transfer processing div .  madrid spain .  mr . alex williams  senior managing director  security & investigation  h . s . b . c .  wire transfer processing division  12 , calle street , del carlos leganes madrid spain .  gl 32 by u > k honbank swift hbcbk 353  00 999 0367826 8366410  registered in u . k number 720662 . registered office :  12 , calle street del  carlos leganes madrid , spain .\",1\n\"Subject: news : company positioned to grow  pop 3 media corp ( popt )  a company which has positioned itself in the gap between the major  media congiomerates and the universe of independent music , film , pubiishing  and technoiogy companies .  current price : o . o 25  wil | it continue higher ? watch this one monday as we know many of you  like momentum .  breaking news ! !  pop 3 media corp . ( popt ) and roxxy corporation announced that the  companies have entered into a letter of intent whereby roxxy corporation wi | |  acquire a 66 % interest in pop 3 ' s wholiy owned subsidiary , viastar  distribution group , inc . \"\" vdg , \"\" forming a revolutionary new music company ,  controversia | entertainment corporation . the transaction , consisting of  stock and cash , when compieted , will provide pop 3 ' s shareholders with a  33 % stake in the new company .  roxxy ' s management wil | operate the company from headquarters in los  angeies and will change its corporate name to controversia | entertainment  corporation in the coming weeks . the companies intend to compiete and  execute the definitive agreement by july 8 th , 20 o 5 , and seek sharehoider  approva | immediateiy thereafter .  pop 3 ' s ceo , john d . aquiiino , stated , \"\" this ailiance will a | | ow pop 3 to  achieve its strategic vision of creating a new paradigm in the music  industry . one that is focused on supporting the artist and the music they  create whiie embracing emerging technologies and giving consumers  access to a variety of artists through a variety of media . \"\"  roxxy ' s management team combines highiy experienced industry executives  drawn from the major labels and aiso inciudes a staff of in - house  producers who are among the most influential talents in the music industry  today .  \"\" it is roxxy ' s vision to seize the opportunities afforded by the major  labeis ' lack of commitment to their artists and customers ; | abels that  cast aside established artists who can no | onger generate multi - miilion  seliing recordings , but who consistently reiease aibums which se | |  hundreds of thousands of records to a large and loyal fan base ; artists  that can easily generate revenues between $ 1 and $ 5 miliion per title , \"\"  stated john shebanow , roxxy ' s ceo .  \"\" additionally , the acquisition of vdg will provide us with the ability  to distribute our own product directiy to retai | to over 22 , ooo retai |  | ocation in north america , effectiveiy doubiing the company ' s net  profit margins and allowing the increased revenue to pass on to our  artists . \"\"  mr . shebanow conciuded , \"\" whiie there are smalier labeis that do provide  a home for these acts , they | ack either the wi | | or financia | resources  to commit to the kind of budgets which producers of the caiiber we have  on staff require . and no company has the unique combination of great  producers , in - house distribution and dedication to the artist and the  customer that controversial entertainment wiil possess . \"\"  about pop 3 media corp :  pop 3 media corp . is engaged in development , production and distribution  of entertainment - related media for fiim , teievision , music and  pubiishing interests . the company ' s portfoiio currently includes ownership of  viastar distribution group , a . v . o . studios , moving pictures  internationa | , viastar records , quadra records , light of the spirit records , and  viastar ciassical , viastar artist management group and masterdisk  corporation .  conciusion :  the exampies above show the awesome , earning potentia | of little known  companies that expiode onto investor ' s radar screens ; many of you are  aiready famiiiar with this . is popt poised and positioned to do that for  you ? then you may fee | the time has come to act . . . and please watch  this one trade monday ! go popt .  penny stocks are considered highiy specuiative and may be unsuitable  for all but very aggressive investors . this profile is not in any way  affiiiated with the featured company . we were compensated 30 oo do | | ars  to distribute this report . this report is for entertainment and  advertising purposes oniy and shouid not be used as investment advice .  if you wish to stop future mail - ings , or if you fee | you have been  wrongfuily piaced in our membership , send a biank e mail with no thanks in  the sub ject to daily _ 4 tip @ yahoo . com\",1\n\"Subject: save your money by getting an oem software !  need in software for your pc ? just visit our site , we might have what you need . . .  best regards ,  shiloh \",1\n\"Subject: cheap oem soft shipping worldwide  why pay big bucks ? create your own website now !  you raise your voice when you should reinforce your argument .  what ' s up , doc ?\",1\n\"Subject: failure notice  hi . this is the qmail - send program at mail . bmadesign . com .  i ' m afraid i wasn ' t able to deliver your message to the following addresses .  this is a permanent error ; i ' ve given up . sorry it didn ' t work out .  :  sorry , no mailbox here by that name . vpopmail ( # 5 . 1 . 1 )  - - - below this line is a copy of the message .  return - path :  received : ( qmail 63778 invoked from network ) ; 19 jul 2005 11 : 07 : 06 - 0000  received : from ntsitmo 26173 . sitm . nt . adsl . ppp . infoweb . ne . jp ( helo mailwisconsin . com ) ( 218 . 217 . 148 . 173 )  by mail . bmadesign . com with smtp ; 19 jul 2005 11 : 07 : 06 - 0000  received : from 205 . 214 . 42 . 66  ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ;  by mailwisconsin . com with http id j 87 gzo 38190336 ;  tue , 19 jul 2005 10 : 57 : 46 + 0000  message - id :  date : tue , 19 jul 2005 10 : 57 : 46 + 0000  subject : just to her . . .  from : \"\" barry castillo \"\"  to : distinctionsemienw @ bmadesign . com  user - agent : squirrelmail / 1 . 4 . 3 a  x - mailer : squirrelmail / 1 . 4 . 3 a  mime - version : 1 . 0  content - type : text / html ; charset = iso - 8859 - 1  content - transfer - encoding : 8 bit  x - priority : 3 ( normal )  importance : normal  soft viagra at $ 1 . 62 per dose  ready to boost your sex life ? positive ?  time to do it right now !  order soft viagra at incredibly low prices  startinq at $ 1 . 99 per dose ! unbelivable !\",1\n\"Subject: re : [ 879 ] ladybug  regain your confidence with the best generic viagra from a licensed manufacturer  it is only one click away  \",1\n\"Subject: feeling great is not a luxury !  do you feel the strength ?  buddy , deal with your problems  supplies are limited ! http : / / buyonlinrmeds . com / ? cid - vug _ txtol  take care  levi sloan  phone : 173 - 218 - 1914  mobile : 777 - 113 - 1269  email : kaveljyowkto @ gus . net  e . n . 0 ^ u . g * h http : / / buyonlinrmeds . com / emover . php\",1\n\"Subject: perfect visual solution for your business now  working on your company ' s image ? start with a  visual identity a key to the first good impression . we are here to  help you ! we ' ll take part in buildinq a positive visuai imaqe  of your company by creating an outstandinq ioqo , presentabie stationery  items and professional website . these marketinq tools wiil siqnificantly  contributeto success of your business . take a iook at our work samples , hot deai packages and  see what we have to offer . we work for you !  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: are you ready to get it ?  hello !  viagra is the # 1 med to struggle with mens ' erectile dysfunction .  like one jokes sais , it is stronq enough for a man , but made for a woman ; - )  orderinq viaqra oniine is a very convinient , fast and secure way !  miiiions of peopie do it daiiy to save their privacy and money  order here . . . \",1\n\"Subject: buyer beware - penis patches !  penis enhancement patch , doctor approved and recommended .  http : / / www . gretan . com / ss /  the time you enjoy wasting is not wasted time .  science comits suicide when it adopts a creed .  constantly talking isn ' t necessarily communicating .  the body says what words cannot .  perpetual optimism is a force multiplier .\",1\n\"Subject: save your money by getting an oem software !  need in software for your pc ? just visit our site , we might have what you need . . .  best regards ,  particia \",1\n\"Subject: no # 1 drug for male impotence  buy cheap prescriptions online  http : / / fre . ix 3 tmjitfsi 8 ml 0 . cisekldej . com  ambition is a dream with a v 8 engine .  accidents will occur in the best regulated families .  being kind to your dog doesn ' t make you a better artist .\",1\n\"Subject: new extensions now only $ 14 . 95  public announcement :  the new domain names are finally available to the general public at discount prices . now you can register one of the exciting new . biz or . info domain names , as well as the original . com and . net names for just $ 14 . 95 . these brand new domain extensions were recently approved by icann and have the same rights as the original . com and . net domain names . the biggest benefit is of - course that the . biz and . info domain names are currently more available . i . e . it will be much easier to register an attractive and easy - to - remember domain name for the same price . visit : http : / / www . affordable - domains . com today for more info .  register your domain name today for just $ 14 . 95 at : http : / / www . affordable - domains . com . registration fees include full access to an easy - to - use control panel to manage your domain name in the future .  sincerely ,  domain administrator  affordable domains  to remove your email address from further promotional mailings from this company , click here :  07 \",1\n\"Subject: natural remedies for sexual health  you have not tried cialis yet ?  conservatives are not necessarily stupid , but most stupid people are conservatives .  time engraves our faces with all the tears we have not shed .  nothing great in the world has been accomplished without passion .\",1\n\"Subject: re [ 1 ]  death penalty it ' s o . k . should be allowed in 1825 in 1894 tomb raider\",1\n\"Subject: charity sees the need not the cost . . .  dear friend ,  as you read this , i don ' t want you to feel sorry for me , because , i believe everyone will die someday . my name is mr . reza abdulla , a merchant in safat , in ( kuwait ) i was married with two children . my wife and two children died in a car accident six years a go . i have been diagnosed with esophageal cancer . it has defiled all forms of medical treatment , and right now i have only about a few months to live , according to medical experts .  i have not particularly lived my life so well , as i never really cared for anyone ( not even myself ) but my business . though i am very rich , i was never generous , i was always hostile to people and only focused on my business as that was the only thing i cared for . but now i regret all this as i now know that there is more to life than just wanting to have or make all the money in the world .  i believe when god gives me a second chance to come to this world i would live my life a different way from how i have lived it . now that god has called me , i have willed and  given most of my property and assets to my immediate and extended family members as well as a few close friends . i want god to be merciful to me and accept my soul so , i have decided to give alms to charity organizations , as i want this to be one of the last good deeds i do on earth . so far , i have distributed money to some charity organizations in the u . a . e , algeria and malaysia . now that my health has deteriorated so badly , i cannot do this myself anymore . i once asked members of my family to close one of my accounts and distribute the money which i have there to charity organization in bulgaria and pakistan , they refused and kept the money to themselves . hence , i do not trust them anymore , as they seem not to be contended with what i have left for them . the last of my money which no one knows of is the huge cash deposit of ten million seven hundred thousand american dollars ( u . s . $ 10 . 700 , 000 ) that i have with a finance / security company abroad . i will want you to help me collect this deposit and dispatched it to charity organizations . i have set aside only 20 % for you and for your time and also 5 % as miscellaneous expenses . reply me at your earliest convenience for more directives to my private email address : reza _ abdulla @ walla . com  god be with you .  regards ,  mr . reza abdulla\",1\n\"Subject: big range of all types of downloadable software .  need software ? click here .  our american professors like their literature clear , cold , pure and very dead .  being another character is more interesting than being yourself .\",1\n\"Subject: winning one of our chopard and feel the triumph on your wrist .  these beauties have thesame fea - tures and logos as their originals . you will  flnd all the best - selling points on our goods .  select either battery / quartz or the one with automatic movement .  http : / / 714 i . ymw . essenceandcore . com / i 5 h /  - - - - - original message - - - - -  from : alfonso @ afdt . com [ mailto : jefferson @ hk . com ]  sent : thursday , march 4 , 2005 4 : 07 pm  to : moshe ; shannon @ rsrg . com ; nick ; martin ; frankie  subject : lo 0 k at our wonderful collections of ro , lex , frank mul 1 ers and  cart . iers .  you can ' t flnd any reason to reject these beauties . they have thesame  highperformance fea - tures , logos , leading materials and advanced gudgets .  promising to be with them the whole of the following morning , therefore ,  professor of botany presented himself , one who could explain his  walking along any path , or leaning against any gate , was ready\",1\n\"Subject: hassle - free microsoft sql server remote database administration  visit us at  www . sqlcare . comor  call us at ( 214 ) 740 . 0923  to be removed , reply with remove in  the  subject line .\",1\n\"Subject: ever have a sm 4 ll spock take off ?  cd trading cards ( cdtd )  current price : 0 . 15  is this an undiscovered gem that is positioned to go higher ? review exactly what this company does .  breaking news ! !  cdtc announced that they have rebranded as nex 2 u  cdtc inc . , the premier provider of multimedia catalogs , revealed its new brand today as nex 2 u ( tm ) ( cdtd ) . the decision to create the new brand was to help reveal the unique and fresh perspective demonstrated through nex 2 u ' s multimedia product offerings .  the nex 2 u branding and marketing strategy was created by how studios of topanga , ca . nex 2 u ' s business philosophy is about forming cooperative relationships and partnering with companies to help them achieve their business objectives through the use of electronic media . this philosophy molded the new image of nex 2 u - your multimedia catalog partner .  branding experts at how studios of topanga , ca designed the new artwork for the logo , print materials , and a new trade show booth and marketing strategy that was unveiled thiss w e e k at the 22 nd annual catalog conference at the gaylord palms in kissimmee , fl . howard lim and his creative team at how studios did an outstanding job in designing a new look for cdtc in the catalog marketplace .  june 28 - nex 2 u ( tm ) ( cdtd ) receiveed rave reviews for its flagship product sales transactional media ( stm ( tm ) ) at the 22 nd annual catalog conference , held in kissimmee , florida .  with its stm technology , nex 2 u dominated the catalog industry with its high return and cost effective multi - channel solutions consisting of cd / dvd ' s , integrated website development , print - ready pdf , and point of sale kiosks . stm allows companies to offer a seamless online / offline shopping and branding experience for the catalog and internet - weary consumer .  the results of several international studies performed for the conference concluded that more and more companies are searching for multimedia alternatives to the historically expensive direct - mail catalogs . rising postage and paper costs for 2006 are causing large - scale catalogers to rethink their marketing initiatives opening up the opportunity for nex 2 u ( tm ) to position itself to lead the industry by introducing both b 2 b and b 2 c digital catalog environments .  \"\" this event provided us more customer prospects and business relationship opportunities than we ever expected , \"\" said doug calaway , ceo of nex 2 u . \"\" it generated hundreds of sales leads in the us . we are now in discussions with three european marketing companies to distribute our products . the event reinforced the value that our products bring to the industry . \"\"  about how studios  as founder and president of how studios , howard lim empowers clients to realize success through authentic brands ( tm ) . howard lim leads a team of professionals that communicates the powerful visions of america ' s top companies . how studio clients are an impressive | ist for instance : apple computer , disney theatrical productions ( lion king and aida ) , dreamworks , upn network , cartoon channel , hanna barbera , magic johnson summer pro league , paramount pictures , tempus expeditions ( virtual reality theme park ) , time warner interactive , fujitsu , honda , philips media , gilda marx inc . ( stars of tomorrow ) and toshiba . he exceeded the expectations of every client .  about cdtc ( now nex 2 u , inc . )  nex 2 u is now the premier provider of multimedia catalogs in the industry . through new stm technology , nex 2 u takes existing content from currently used print catalogs and transforms them into highly interactive , highly profitable di rect mai | pieces known as sales transactional media . this technology not only increases sales and decreases costs , but conveys an impressive branding experience to the customer through a unique use of media .  conclusion :  the examples above show the awesome , earning potential of little known companies that explode onto investor ' s radar screens ; many of you are already familiar with this . is cdtd poised and positioned to do that for you ? then you may feel the time has come to act . . . and please watch  this one trade wednesday ! go cdtd .  penny stocks are considered highly speculative and may be unsuitable for all but very aggressive investors . this profile is not in any way affiliated with the featured company . we were compensated 3000 dollars to distribute this report . this report is for entertainment and  advertising purposes only and should not be used as investment advice . if you wish to stop future mailings , or if you feel you have been wrongfully placed in our membership , send a blank e mail with no thanks in the sub ject to  monomial is not apartheid reverberate but cadent prosper a verona wilson , schlesinger , rufus and hemorrhoid .  spinster may gasohol carpet . bedazzle , rufus flaunt . caveat is antaeus abscissa discriminatory but dropout ,  avert eventuate magenta not topologize ex - accompanist aliphatic . cayley , temerity and benedikt .\",1\n\"Subject: good news about your rate  hows it been going ?  you have been chosen to participate in an invitation  only event !  are you currently paying over 3 % for your mortgage ?  stop ! we can help you lower that today !  answer only a few questions and we can get you  approved in under 1 minute , it ' s that simple !  more info here : anyhgh . com  $ 302 , 000 loans are available for only $ 231 / month !  everyone is approved !  bad credit ?  no problem ! we ' ll have you saving money in no time !  are you ready to save ?  just fill out our short form : anyhgh . com  thanks alot ,  baez v . jodie , v  projecthoneypot @ projecthoneypot . org  the secret of life is honesty and fair dealing . if you can fake that , you ' ve got it made . - groucho marx ( 1890 - 1977 ) . from that day on there were new rules in my classroom . each student was to have an adult ' communication partner ' at the computer . this adult was to sit with the child , not saying a word until the student stopped and looked at the adult or in some other way indicated that communication was desired . then the adult was only to encourage the student by saying the word , nodding the headand smiling . the student was allowed to continue his or her learning . when the student imitated a word , the adult was to respond appropriately . no questions were allowed during this beginning phase . the students were just learning to talk . .  luke is missing jumping today . . few things are harder to put up with than the annoyance of a good example . .  all my life i ' ve wanted to be someone ; i guess i should have been more specific . jane wagner / lily tomlin ( 1939 - ) . i am not missing surfing . .\",1\n\"Subject: all generic viagra prices include a free online prescription .  same medication - low price  education is life itself .  high thoughts must have high language .  living is easy with eyes closed , misunderstanding all you see .\",1\n\"Subject: save your money buy getting this thing here  you have not tried cialls yet ?  than you cannot even imagine what it is like to be a real man in bed !  the thing is that a great errrectlon is provided for you exactiy when you want .  cialls has a iot of advantaqes over viagra  - the effect iasts 36 hours !  - you are ready to start within just 10 minutes !  - you can mix it with aicohol ! we ship to any country !  get it riqht now ! . \",1\n\"Subject: best deals on all generic viagra and generic cialis alternatives with guaranteed lowest prices  you can feel yourself for 19 years during sex !  education is a method whereby one acquires a higher grade of prejudices .  when words leave off , music begins .  diligence is the mother of good luck .\",1\n\"Subject: re : education opportunity we spoke about gf  .  u n i v e r s i t y . d i p l o m a s .  do  you want for a prosperous future , increased money earning power ,  and the respect of all ?  we  can assist with diplomas from prestigious non - accredited universities  based on your present knowledge and life experience .  no required tests , classes , books , or  interviews .  bachelors ,  masters , mba , and doctorate ( phd ) diplomas available in the field  of your choice - that ' s right , you can become a doctor , lawyer or accountant and receive  all the benefits and admiration that comes with it !  no  one is turned down !  confidentiality  assured - change your life today !  either click here or  you can call us 24 hours a day , 7 days a week ! ( including  sundays and holidays ) :  1 - 310 - 388 - 6087  contact  us now to receive your diploma within days , and start improving  your life !  did you receive an email advertisement in error ? our goal is to only target individuals who would like to take advantage of our offers . if you ' d like to be removed from our mailing list , please click on the link below . you will be removed immediately and automatically from all of our future mailings .  we protect all email addresses from other third parties . thank you .  please remove me . \",1\n\"Subject: free health insurance quotes  need health insurance ?  in addition to featuring the largest selection of major medical  health plans from leading companies , our service also  offers a wide selection of quality dental plans . you can obtain  free instant quotes , side - by - side comparisons , the best available  prices , online applications , and a knowledgeable customer care  team to help you find the plan that is right for you .  if you would like more information please email  with \"\" send me health insurance info \"\" in the body of the email  if you do not wish to correspond with us , reply to  surefiremarketing @ btamail . net . cn with remove as your subject .\",1\n\"Subject: save your money buy getting this thing here  you have not tried cialls yet ?  than you cannot even imagine what it is like to be a real man in bed !  the thing is that a great errrectlon is provided for you exactly when you want .  ciails has a iot of advantaqes over viaqra  - the effect iasts 36 hours !  - you are ready to start within just 10 minutes !  - you can mix it with alcohoi ! we ship to any country !  get it riqht now ! . \",1\n\"Subject: you don _ t know how to attract customers to your website ?  submitting your website in search engines may increase  your online sales dramatically .  if you invested time and money into your website , you  simply must submit your website  oniine otherwise it wili be invisible virtualiy , which means efforts spent in vain .  if you want  people to know about your website and boost your revenues , the only way to do  that is to  make your site visibie in piaces  where people search for information , i . e .  submit your  website in muitipie search enqines .  submit your website online  and watch visitors stream to your e - business .  best regards ,  georgettalowe _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: kime oy vereceksiniz ?  ?yi g?nler  d?nya gazetesi , i?inde bulundu?umuz siyasi karma?a d?neminin se?imler sonras?nda nas?l bir hal alaca?? konusunda kapsaml? bir ara?t?rma yapmaktad?r . bu ?er?evede toplumumuzun m?mk?n oldu?unca geni? bir kesiminin g?r??lerine ba?vurmay? gerekli g?rd?k .  3 kas?m 2002 tarihinde yap?lmas? ?ng?r?len se?imler sonras?nda siyasi belirsizli?in , dolay?s?yla da ekonomik belirsizli?in sona erip ermeyece?i y?n?nde bir tahmin yapmam?z ve bu konuda kamuoyunu bilgilendirmemiz gerekti?ini d???n?yoruz . sizin de g?r??lerinizi bize iletmeniz anketin sa?l?kl? olmas? ?er?evesinde ?nem ta??maktad?r .  d?nya gazetesi , anketi cevaplayanlar?n kimlikleri konusunda herhangi bir a??klaman?n yap?lmayaca?? , sadece cevaplar?n?n dikkate al?naca?? y?n?nde tam garanti verir . ?lginiz i?in te?ekk?r eder , ?al??malar?n?zda ba?ar?lar dileriz .  anketin , daha geni? kapsaml? olmasi ve b?y?k kitlelere ula?abilmesi i?in ,  tan?d?klar?n?za bu mail ? i g?nderebilirsiniz .  soru 1  se?imde hangi partiye oy vermeyi d???n?yorsunuz ?  soru 2  sizce se?imlerde en ?ok oyu hangi partiler alacak , bir s?ralama yapabilir misiniz ?  soru 3  se?imlerin sonucunu etkileyebilecek temel geli?meler ne olabilir ?  d?nya gazetes? ankara tems?lc?l???  tel : 312 446 99 24  fax : 446 91 54  ankara @ dunyagazetesi . com . tr  - - - -  this sf . net email is sponsored by : thinkgeek  welcome to geek heaven .  http : / / thinkgeek . com / sf  spamassassin - sightings mailing list \",1\n\"Subject: you could need itt  how to save on your m necropsy edlcations over 70 % .  p strychnine harmshop - successfull and proven trisyllabic way to save your mone suppository y .  allocution v  multiplication ag  a stencil l  tightener lu  surrogate l  homogeneous rac compressible l  i leadsman s surrejoinder val  unlawful m  andmanyother .  bes boxcar t prlces .  worldwi leviticus de shlpplng .  easy order unmanageable form .  total confidentiaiity cystic .  250 , 000 sati alluvium sfied customers .  pelerine order today and save !\",1\n\"Subject: the future of continuing education  select your state then press \"\" go \"\" to view ce courses available  ( aol users  click here )  al  ak  az  ar  ca  co  ct  de  dc  fl  ga  hi  id  il  in  ia  ks  ky  la  me  md  ma  mi  mn  ms  mo  mt  ne  nv  nh  nj  nm  ny  nc  nd  oh  ok  or  pa  ri  sc  sd  tn  tx  ut  vt  va  wa  wv  wi  wy  we don ' t want anyone to receive our mailings who does not  wish to receive them . this is a professional communication  sent to insurance professionals . to be removed from this mailing  list , do not reply to this message . instead , go here :  http : / / www . insurancemail . net  legal notice \",1\n\"Subject: free adult dvds . no purchase necessary . . . to : yyyy @ netnoteinc . com id : ksdk  to : yyyy @ netnoteinc . com  # #  # adult online super store #  # shhhhhh . . . #  # you just found the internet ' s #  # best kept secret ! ! ! #  # 3 vivid dvds absolutely free ! ! ! #  # #  > > > > > > > > > no purchase necessary ! > > > > > > > > no purchase necessary ! < < < < < < < < < < <  # #  # don ' t forget to forward this email to #  # all your friends for the same deal . . . #  # there is a new free dvd and vhs video #  # available every week for your viewing #  # pleasure . #  # #  removal instructions :  you have received this advertisement because you have opted in to receive  free adult internet offers and specials through our affiliated websites . if  you do not wish to receive further emails or have received the email in  error you may opt - out of our database here http : / / 209 . 203 . 162 . 20 / optout . html  . please allow 24 hours for removal .  this e - mail is sent in compliance with the information exchange promotion  and privacy protection act . section 50 marked as ' advertisement ' with valid  ' removal ' instruction .  faarakxavoxcadetxjpir\",1\n\"Subject: a cry for help  dear friend , i am mrs . sese - seko widow of late president mobutu  sese - seko of zaire ? now known as democratic republic  of congo ( drc ) . i am moved to write you this letter ,  this was in confidence considering my and situation .  i escaped along with my husband and two of our sons  george kongolo and basher out of democratic republic of  congo ( drc ) to abidjan , cote d ' ivoire where my family  and i settled , while we later moved to settled in  morroco where my husband later died of cancer  disease . however due to this situation we decided to  changed most of my husband ' s billions of dollars  deposited in swiss bank and other countries into other  forms of money coded for safe purpose because the new  head of state of ( dr ) mr laurent kabila has made  arrangement with the swiss government and other  european countries to freeze all my late husband ' s  treasures deposited in some european countries . hence  my children and i decided laying low in africa to  study the situation till when things gets better ,  like now that president kabila is dead and the son  taking over ( joseph kabila ) . one of my late husband ' s  chateaux in southern france was confiscated by the  french government , and as such i had to change my  identity so that my investment will not be traced and  confiscated . i have deposited the sum eighteen million  united state dollars ( us $ 18 , 000 , 000 , 00 . ) with a  security company , for safekeeping . the funds are  security coded to prevent them from  knowing the content . what i want you to do is to  indicate your interest that you will assist us by receiving the money on our  behalf . acknowledge this message , so that i can introduce you to my son  ( kongolo ) who has the out modalities for the claim of the said funds . i  want you to assist in investing this money , but i will not want my identity  revealed . i will also want to buy properties and stock in multi - national  companies and to engage in other safe and  non - speculative investments . may i at this point  emphasise the high level of confidentiality , which  this business demands , and hope you will not betray  the trust and confidence , which i repose in you . in  conclusion , if you want to assist us , my son shall  put you in the picture of the business , tell you  where the funds are currently being maintained and  also discuss other modalities including remunerationfor your services .  for this reason kindly furnish us your contact  information , that is your personal telephone and fax  number for confidential purpose . best regards , mrs m . sese seko\",1\n\"Subject: don ' t pay another monthly bill until you read thisdgsrw  home mortgage network  home  of america ' s most liberal lenders  interest rates  are still at  an all time low !  this is a great time to refinance your home , consolidate  all of your  bills and high interest credit card debt , and get the cash you need !  all homeowners in the usa easily qualify !  damaged credit is never a problem !  we have  special programs for every type of credit history  no upfront fees - no hidden fees - get cash fast for . . .  home  improvement * 2 nd mortgage * refinance * credit repair * college tuition  debt consolidation * a dream vacation * a new business * any purpose  we work with the nation ' s top lenders . . . and they ' re  hungry for your business . we will get you the best loan to meet your needs !  our service is 100 % free - and there is no  obligation !  applying is easy . enter herefor a quote today !  we search for the best offering ' s for  you ; we do the research and you get only the superior results  this email is brought to you by ; tmc . . to abnegate  all future notices , please enter here \",1\n\"Subject: add sennse  hello , welcome to the me pipeclay dzonline  - online pharmaceu compression tical shop .  clerkly va  u undergrowth m tracing vi  charnelhouse rac coffeehouse i  tegument is  l resent i  a betrothal g  a cherubic l  andmanyother .  with our shop harshness you get -  best sonority prlces  excellen enlighten t service  fast s nasalize hipping  private onl constringent ine ordering  have a nice day .\",1\n\"Subject: are you listed in major search engines ?  submitting your website in search engines may increase  your online sales dramatically .  if you invested time and money into your website , you  simply must submit your website  oniine otherwise it wili be invisible virtuaily , which means efforts spent in vain .  if you want  people to know about your website and boost your revenues , the oniy way to do  that is to  make your site visible in piaces  where peopie search for information , i . e .  submit your  website in muitiple search engines .  submit your website online  and watch visitors stream to your e - business .  best reqards ,  giadistayior _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: perfect logo charset = koi 8 - r \"\" >  thinking of breathing new life into your business ?  start from revamping its front - endlogo and  visualidentity .  we offer creative custom design of ioqos ,  stationery and web - sites . under our carefui hand thesepowerful marketing  toois wiil brinq a breath of fresh air into your business and make you stand out  amongthe competitors .  you are just a click  away from your future success . ciick here to see the sampies of our artwork ,  checkour prices and hot offers .  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: your gateway to wealth  profiles +  professional is a personal and business analysis tool that analyzes  a client ' s insurance , investment and financial planning goals , to  help them see their situation today compared to their objectives .  profiles +  professional is an ideal tool for true financial planning . it not  only provides a thorough analysis , including asset allocation , but  it can calculate tax implications in a client ' s plan . due to its  modular format , it can be used for specific planning needs , as well  as more comprehensive planning .  this  software not only provides exceptional analysis , but excels in providing  simple as well as comprehensive presentation pages . by uncovering  multiple needs , producers sell more products .  an  internet - based sales - enabling service , which allows  users to quickly become successful in the deferred compensation  ( coli ) market .  focus on mid - market businesses . in the area of executive benefits ,  the mid - market opportunity should be defined by either the number  of employees within a company , or more specifically by the number  of highly compensated executives within a company .  a turnkey program that includes qualification of prospect , marketing  and sales support , case design , plan documents and administration .  global  insurance funding transaction ( g . i . f . t . ) is a sophisticated premium - financing  program that provides an alternative funding mechanism for life  products purchased to offset large estate and corporate liabilities .  clients with a high net worth of at least $ 10 million who have an  insurance need and believe their existing portfolio of investments ,  when left unliquidated , will earn more then they will have to pay  on loan interest expenses .  g . i . f . t . offers compelling sales solutions , comprehensive supplemental  illustrations and access to a consortium of established banks willing  and able to lend in this market . loans are available in both u . s .  dollars and japanese yen .  please fill out the form below for more information  name :  e - mail :  phone :  city :  state :  zip :  primary insurance carrier :  broker - dealer :  if you are currently contracted with any of the  jefferson pilot financial family of companies ,  please disregard this ad .  we don ' t want anybody to receive our mailing who does not wish  to receive them . this is a professional communication sent to  insurance professionals . to be removed from this mailing list ,  do not reply to this message . instead , go here : http : / / www . insuranceiq . com / optout  legal notice \",1\n\"Subject: your order # 5056  shopping for a loan  has never been easier  get a free quote on a new first  mortgage , second mortgage , or a credit line with no cost or obligation .  we can help you get a great loan  regardless of your credit situation  it ' s a great time to buy or  refinance your home .  whether you want to :  buy a new home - consolidate your  debts  refinance to lower your payments  take some equity out of your home  for any reason  we can help !  click here and get a free quote !  you have nothing to lose !  to not receive this  email again click here \",1\n\"Subject: start shopping at costco today with a complimentary gold membership .  start shopping at costco today with a free gold membership . free gold membership or upgrade and extend your existing membership . ( )  ipmlgbit\",1\n\"Subject: more site sales  do you take credit cards ?  if you do you will make more money . easy set up . . no credit checks - 100 % approval . . . .  make more money now !  try now  remove info is found on web site \",1\n\"Subject: entrust your visual identity to us  thinking of breathing new life into your business ?  start from revamping its front - endlogo and  visualidentity .  we offer creative custom design of iogos ,  stationery and web - sites . under our carefui hand thesepowerfui marketing  toois wili bring a breath of fresh air into your business and make you stand out  amongthe competitors .  you are just a ciick  away from your future success . click here to see the samples of our artwork ,  checkour prices and hot offers .  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: slim factors - a totally new approach to weight loss  this e - mail is intended to be a benefit to the recipient .  if you would like to opt - out and not receive any more click  here . your address will be removed immediately . we sincerely apologize  for any inconvenience . this e - mail is not spam under the federal regulatory  laws of the united states . this message is being sent to you in compliance  with the proposed federal legislation for commercial e - mail ( h . r . 4176 - section  101 paragraph ( e ) ( 1 ) ( a ) ) and bill s . 1618 title iii passed by the 105 th  us congress . this message is not intended for residents of wa , nv , ca , va .  screening of addresses has been done to the best of our technical ability . \",1\n\"Subject: congratualtions zzzz 8969 ! ! !  you ' re  a winner !  dear traveler ,  congratulations  you may be one of our lucky winners !  you may be spending  your next vacation in beautiful orlando florida !  6 days  and 5 nights  of accommodations in sunny orlando florida  round trip  airfare included for  two  rental  car with unlimited mileage  2 day pass  to  universal studios  $ 500  coupon book for meals and entertainment  2 casino  cruise tickets  to claim your  prize just visit our website click here  thanks for entering  our contest and we look forward to seeing you soon .  sincerely ,  jacqueline o ' connor  director of promotoins  p . s . youve  got to hurry . if you dont claim your vacation in the next 24 hours  it may be gone . availability is limited . so dont wait ,  click  here today .  to be excluded from future promotions click here \",1\n\"Subject: adv : your road to financial freedom begins here !  are you overwhelmed with debt and high  interest rates ? are you receiving annoying calls from  creditors ? how soon are you going to fix your credit situation ?  tomorrow ? next week ? next month ? why not right now ?  we will provide professional help to reduce your interest rates and  minimum payments ! we offer free information  and resources to provide with fast relief from credit cards and other types of  debt . find out why our program is the # 1 way for  having a debt free life . visit us at http : / / www . mydebtsite . com / myhome . htm  today ! this email address was obtained from a purchased  list . if you wish to unsubscribe from this list , please click here and enter the  email address ( es ) you want to have removed from all future emails . if you have  previously unsubscribed and are still receiving this message , you may email our  abuse department at abuse @ mydebtsite . com or write us at : no spam -  mydebtsite . com , p . o . box 770594 , coral springs , fl 33077 .\",1\n\"Subject: you are approved for your loan ! ! ! approval no . ( 1848025 )  refinancing  your mortgage may be easier then you think !  now that rates are down ,  this may be a good time to start saving money !  click here for all details  free service for usa homeowners !  whether  your credit rating is a + + or you are credit challenged ,  we have many loan  programs through hundreds of aggressive lenders wanting to help you .  second mortgages  we can help you get up to 125 % of your  homes value ( ratios vary by state ) .  refinancing  reduce your monthly payments and get  some cash back .  debt  consolidation  combine all your bills into one low  payment ,  and save money every month .  we will get you the  best deal possible !  lower rates and easier terms !  click  here for all details and a free loan quotation  today !  we strongly  oppose the use of spam email and do not want anyone who does not wish to receive  ourmailings to receive them . we strongly oppose the use of spam email and do not want anyone who does not wish to receive our mailings to receive  them . click  here to me taken off of our list .  80686\",1\n\"Subject: new love tabs shop .  visit our llcensed online dragstore for the best inexpensive love drags ! viagra , cialis , softtabs and many other iove enhancers ail in one !  operative support , fast shipping , secure payment processinq and complete confidentiaiity !  click here to find your verifled by bbb and approved by visa love pil 1 ! \",1\n\"Subject: save now  * * * * * write down * * * * *  hello ,  it is time to refinance !  your credit does not matter , we can approve anyone .  now is the time to let some of the top mortgage companies  in the country compete for your business .  if you have good credit we will give you the most amazing  rates available anywhere !  if you have poor credit , don ' t worry ! we can still refinance  you with the most competitive rates in the industry !  let us put our expertise to work for you ! guaranteed !  http : / / 21377 @ www . top - lenders . com / app  best ,  top - lenders  erase \",1\n\"Subject: you launched a website but no one visits it ?  submitting your website in search engines may increase  your online sales dramatically .  if you invested time and money into your website , you  simply must submit your website  oniine otherwise it wili be invisible virtuaily , which means efforts spent in vain .  lf you want  peopie to know about your website and boost your revenues , the only way to do  that is to  make your site visible in places  where people search for information , i . e .  submit your  website in multiple search engines .  submit your website online  and watch visitors stream to your e - business .  best regards ,  aracelishammond _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: mmedz services  hello , welcome to the medzo kolinsky nline  - online ph filiform armaceutical shop .  chalcedony va  u greasy m aqueous vi  plantar rac granule i  passage is  crenelated li  devildom ag  worker al  andmanyother .  w inhabit ith our shop you get -  be chessplayer st prlces  excellen intrigue t service  insuperable fast shipping  private online curbstone ordering  have a nice day .\",1\n\"Subject: amazingg  hello , welcome to ph unavoidable armonline sh breakneck op  - one of the l handful eading oniine pharmaceutical shops  bondman v  distinct g  a interrupter l  l herbalist l  distributary la  ensoul rac plagiary l  i stress s alkalimetry va  dislodge um  andmanyother .  - save over 5 malarial 0 %  - worldwide shlp impetuous plng  - total confidentia televiewer iity  - over locksman 5 miiiion customers in 130 countries  have a furnished nice day !\",1\n\"Subject: http : / / www . wbm . us  hello ,  i have visited www . wbm . us and noticed that your website is not listed on some search engines . i am sure that through our service the number of people who visit your website will definitely increase . seekercenter is a unique technology that instantly submits your website to over 500 , 000 search engines and directories - - a really low - cost and effective way to advertise your site . for more details please go to seekercenter . net .  give your website maximum exposure today !  looking forward to hearing from you .  best regards ,  vanessa lintner  sales marketing  www . seekercenter . net  you are receiving this email because you opted - in to receive special offers through a partner website . if you feel that you received this email in error or do not wish to receive additional special offers , please enter your email address here and click the button of remove me : \",1\n\"Subject: you were accepted . here is your money  dear applicant , after further review upon receiving your application your current mortgage qualifies for a 4 . 75 rate . your new monthly payment will be as low as $ 340 / month for a $ 200 , 000 loan . please confirm your information in order for us to finalize your loan , or you may also apply for a new one . complete the final steps by visiting : http : / / www . barefi . net / ? id = j 22 we look foward to hearing from you . thank you , lorene ouellette , account managerlpc and associates , llc . - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - not interested ? - > www . iorefi . net / book . php\",1\n\"Subject: amateur teens go bad  18 - 21 yr . old chicks are so horny !  nasty amateurs taking cum shots , huge cocks , anal poundings , & much more !  young and fresh - - - - - > just a click away !  get them now ! for free !  click here for the girls of your dreams ! remember this is a free site so hurry !  click here to unsubscribe . \",1\n\"Subject: instant branded software download  software sales  http : / / francois . jetlow . com /  a joke ' s a very serious thing .  to be feared is much safer then to be loved .  you can never underestimate the stupidity of the general public .\",1\n\"Subject: undelivered mail returned to sender  this is the postfix program at host cenesp . santistatextil . com . br .  i ' m sorry to have to inform you that your message could not be  be delivered to one or more recipients . it ' s attached below .  for further assistance , please send mail to  if you do so , please include this problem report . you can  delete your own text from the attached returned message .  the postfix program  : unknown user : \"\" antonio _ sanches \"\"\",1\n\"Subject: custom design work  corporate image can say a lot of things about your  company . contemporary rhythm of life is too dynamic . sometimes it takes oniy  several seconds for  your company to be remembered or to be lost among competitors .  get your logo , business stationery or website done  riqht now !  fast turnaround : you will see severai iogo variants  in three business days .  satisfaction guaranteed : we provide uniimited  amount of chanqes ; you can be sure : it wili meet your needs and fit your  business .  fiexible discounts : logo improvement , additional  formats , bulk orders , special packages .  creative design for  competitive price : have a look at it right now !\",1\n\"Subject: fca offrr  hello , welcome to phar seethe monline sh klystron op  - one of the leading oniine pharmaceutical s astride hops  admission v  ornate g  assemblyman al  l passingbell l  l rebuke a  positivism ra quibble cl  i regulable sv parvenu a  u tomtom m  andmanyother .  - save over needlework 50 %  - worldwide shlp overgrow plng  - total confidentiai convex ity  - over 5 mi orthogonal iiion customers in 130 countries  have tighten a nice day !\",1\n\"Subject: a better investment than the stock market .  all our mailings are sent complying to the proposed h . r . 3113 unsolicited  commercial electronic mail act of 2000 . please see the bottom of this  message for further information and removal instructions .  parents of 15 - year old - find $ 71 , 000 cash hidden in  his closet !  does this headline look familiar ? of course it does . you most likely have  just seen this story recently featured on a major nightly news program ( usa ) .  and reported elsewhere in the world ( including my neck of the woods -  new zealand ) . his mother was cleaning and putting laundry away when  she came across a large brown paper bag that was suspiciously buried  beneath some clothes and a skateboard in the back of her 15 - year - old  sons closet . nothing could have prepared her for the shock she got when  she opened the bag and found it was full of cash . five - dollar bills , twenties ,  fifties and hundreds - all neatly rubber - banded in labelled piles .  \"\" my first thought was that he had robbed a bank \"\" , says the 41 - year - old  woman , \"\" there was over $ 71 , 000 dollars in that bag - - that ' s more than my  husband earns in a year \"\" .  the woman immediately called her husband at the car - dealership where  he worked to tell him what she had discovered . he came home right away  and they drove together to the boys school and picked him up . little did  they suspect that where the money came from was more shocking than  actually finding it in the closet .  as it turns out , the boy had been sending out , via e - mail , a type of  \"\" report \"\" to e - mail addresses that he obtained off the internet . everyday  after school for the past 2 months , he had been doing this right on his  computer in his bedroom .  \"\" i just got the e - mail one day and i figured what the heck , i put my name  on it like the instructions said and i started sending it out \"\" , says the clever  15 - year - old .  the e - mail letter listed 5 addresses and contained instructions to send one  $ 5 dollar bill to each person on the list , then delete the address at the top  and move the others addresses down , and finally to add your name to  the top of the list .  the letter goes on to state that you would receive several thousand  dollars in five - dollar bills within 2 weeks if you sent out the letter with your  name at the top of the 5 - address list . \"\" i get junk e - mail all the time , and  really did not think it was going to work \"\" , the boy continues .  within the first few days of sending out the e - mail , the post office box  that his parents had gotten him for his video - game magazine subscriptions  began to fill up with not magazines , but envelopes containing $ 5 bills .  \"\" about a week later i rode [ my bike ] down to the post office and my box  had 1 magazine and about 300 envelops stuffed in it . there was also a  yellow slip that said i had to go up to the [ post office ] counter . i thought i  was in trouble or something ( laughs ) \"\" . he goes on , \"\" i went up to the  counter and they had a whole box of more mail for me . i had to ride back  home and empty out my backpack because i could not carry it all \"\" . over  the next few weeks , the boy continued sending out the e - mail . \"\" the  money just kept coming in and i just kept sorting it and stashing it in the  closet , barely had time for my homework \"\" . he had also been riding his bike  to several of the banks in his area and exchanging the $ 5 bills for twenties ,  fifties and hundreds .  \"\" i didn ' t want the banks to get suspicious so i kept riding to different banks  with like five thousand at a time in my backpack . i would usually tell the  lady at the bank counter that my dad had sent me in to exchange the  money ] and he was outside waiting for me . one time the lady gave me a  really strange look and told me that she would not be able to do it for me  and my dad would have to come in and do it , but i just rode to the next  bank down the street ( laughs ) . \"\" surprisingly , the boy did not have any  reason to be afraid . the reporting news  team examined and investigated the so - called \"\" chain - letter \"\" the boy was  sending out and found that it was not a chain - letter at all . in fact , it was  completely legal according to us postal and lottery laws , title 18 ,  section 1302 and 1341 , or title 18 , section 3005 in the us code , also in  the code of federal regulations , volume 16 , sections 255 and 436 , which  state a product or service must be exchanged for money received .  every five - dollar bill that he received contained a little note that read ,  \"\" please send me report number xyx \"\" . this simple note made the letter  legal because he was exchanging a service ( a report on how - to ) for a  five - dollar fee .  [ this is the end of the media release . if you would like to understand how  the system works and get your $ 71 , 000 - please continue reading . what  appears below is what the 15 year old was sending out on the net -  you can use it too - just follow the simple instructions ] .  be financially free like others within a year ! ! ! before you  say \"\" bull \"\" , please read the following . this is the letter you have been  hearing about on the news lately . due to the popularity of this letter on the  internet , a national weekly news program recently devoted an entire  show to the investigation of this program described below , to see if it really  can make people money . the show also investigated whether or not the  program was legal . their findings proved once and for all that there are  \"\" absolutely no laws prohibiting the participation in the program and if  people can follow the simple instructions , they are bound to make some  megabucks with only $ 25 out of pocket cost \"\" .  due to the recent increase of popularity & respect this  program has attained , it is currently working better  than ever .  note * follow the directons below , i had best results the second time when  i hired a bulk email service in addition to following the reports instructions .  in order for all of us to be successful , many , many emails must be sent so  that the returns are many . i have been extremely successful using the  following company . they send out the offers , and all i do is accept money  for reports , then i send back to the people as soon as possible .  this is what one had to say : \"\" thanks to this profitable opportunity . i was  approached many times before but each time i passed on it . i am so glad i  finally joined just to see what one could expect in return for the minimal  effort and money required . to my astonishment , i received total  $ 610 , 470 . 00 in 21 weeks , with money still coming in \"\" .  pam hedland , fort lee , new jersey .  here is another testimonial : \"\" this program has been around for a long time  but i never believed in it . but one day when i received this again in the  mail i decided to gamble my $ 25 on it . i followed the simple instructions  and walaa . . . . . 3 weeks later the money started to come in . first month i  only made $ 240 . 00 but the next 2 months after that i made a total of  $ 290 , 000 . 00 . so far , in the past 8 months by re - entering the program , i  have made over $ 710 , 000 . 00 and i am playing it again . the key to  success in this program is to follow the simple steps and not change  anything . \"\" more testimonials later but first ,  print this now for your future reference  + + + + order all 5 reports shown on the list below + + +  for each report , send $ 5 cash , the name & number of the  report you are ordering and your e - mail address to the  person whose name appears on that list next to the report . make  sure your return address is on your envelope top left  corner in case of any mail problems .  when you place your order , make sure you order each of the 5 reports .  you will need all 5 reports so that you can save them on your computer .  within a few days you will receive , vie e - mail , each of the 5 reports from  these 5 different individuals . save them on your computer so they will be  accessible for you to send to the 1 , 000 ' s of people who will order them from  you . also make a floppy of these reports and keep it on your desk in case  something happens to your computer .  important - do not alter the names of the people who are listed next  to each report , or their sequence on the list , in any way other than what is  instructed below in step \"\" 1 through 6 \"\" or you will loose out on majority of  your profits . once you understand the way this works , you will also see  how it does not work if you change it . remember , this method has been  tested , and if you alter , it will not work ! ! ! people have tried to put their  friends / relatives names on all five thinking they could get all the money .  but it does not work this way . believe us , we all have tried to be greedy  and then nothing happened . so do not try to change anything other than  what is instructed . because if you do , it will not work for you . remember ,  honesty reaps the reward ! ! !  1 . . . . after you have ordered all 5 reports , take this advertisement and  remove the name & address of the person in report # 5 . this person  has made it through the cycle and is no doubt counting their fortune .  2 . . . . move the name & address in report # 4 down to report # 5 .  3 . . . . move the name & address in report # 3 down to report # 4 .  4 . . . . move the name & address in report # 2 down to report # 3 .  5 . . . . move the name & address in report # 1 down to report # 2  6 . . . . insert your name & address in the report # 1 position .  please make sure you copy every name & address accurately !  * * * * take this entire letter , with the modified list of names , and save it on  your computer . do not make any other changes . save this on a  disk as well just in case if you loose any data . to assist you with marketing  your business on the internet , the 5 reports you purchase will provide you  with invaluable marketing information which includes how to send bulk  e - mails legally , where to find thousands of free classified ads and much  more . there are 2 primary methods to get this venture going :  method # 1 : by sending bulk e - mail legally  let ' s say that you decide to start small , just to see how it goes , and we will  assume you and those involved send out only 5 , 000 e - mails each . let ' s  also assume that the mailing receive only a 0 . 2 % response ( the response  could be much better but lets just say it is only 0 . 2 % . also many people  will send out hundreds of thousands e - mails instead of only 5 , 000 each ) .  continuing with this example , you send out only 5 , 000 e - mails .  with a 0 . 2 % response , that is only 10 orders for report # 1 . those 10  people responded by sending out 5 , 000 e - mail each for a total of 50 , 000 .  out of those 50 , 000 e - mails only 0 . 2 % responded with orders . that equals  100 people responded and ordered report # 2 .  those 100 people mail out 5 , 000 e - mails each for a total of 500 , 000 e - mails .  the 0 . 2 % response to that is 1000 orders for report # 3 .  those 1000 people send out 5 , 000 e - mails each for a total of 5 million  e - mails sent out . the 0 . 2 % response to that is 10 , 000 orders for report # 4 .  those 10 , 000 people send out 5 , 000 e - mails each for a total of  50 , 000 , 000 ( 50 million ) e - mails . the 0 . 2 % response to that is 100 , 000  orders for report # 5 . that ' s 100 , 000 orders times  $ 5 each = $ 500 , 000 . 00 ( half million ) . your total income in this example is :  1 . . . . . $ 50 + 2 . . . . . $ 500 + 3 . . . . . $ 5 , 000 + 4 . . . . . $ 50 , 000 + 5 . . . . . $ 500 , 000 . . . . . . .  grand total = $ 555 , 550 . 00  numbers do not lie . get a pencil & paper and figure out  the worst possible responses and no matter how you  calculate it , you will still make a lot of money !  remember friend , this is assuming only 10 people  ordering out of 5 , 000 you mailed to . dare to think for a moment  what would happen if everyone or half or even one 4 th of those people  mailed 100 , 000 e - mails each or more ? there are over 150 million people on  the internet worldwide and counting . believe me , many people will do just  that , and more !  method # 2 : by placing free ads on the internet  advertising on the net is very very inexpensive and there are hundreds of  free places to advertise . placing a lot of free ads on the internet will  easily get a larger response .  we strongly suggest you start with method # 1 and add method # 2 as  you go along . for every $ 5 you receive , all you must do is e - mail them the  report they ordered . that ' s it . always provide same day service on all  orders . this will guarantee that the e - mail they send out with your name  and address on it , will be prompt because they can not advertise until they  receive the report .  = order each report by its number & name only . notes : always  send $ 5 cash ( u . s . currency ) for each report . checks not  accepted . make sure the cash is concealed by wrapping it in at least 2  sheets of paper or aluminum foil . on one of those sheets of paper , write  the number & the name of the report you are ordering , your e - mail  address and your name and postal address .  place your order for these reports now :  report # 1 : the insider ' s guide to advertising for free on the net  order report # 1 from :  r . r .  po box 18048  chicago , il 60618  report # 2 : the insider ' s guide to sending bulk e - mail on the net  order report # 2 from :  gm boland  353 jonestown rd . suite 125  winston salem , nc 27104  report # 3 : secret to multilevel marketing on the net  order report # 3 from :  r . chernick  po box 771661  c . s . florida 33077  report # 4 : how to become a millionaire utilizing mlm & the net  order report # 4 from :  m . eiseman  po box 451971  sunrise , florida 33345 - 1971  report # 5 : how to send out one million emails for free  order report # 5 from :  l . samon  po box 31  castletown  isle of man  im 99 5 xp  $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ your success guidelines $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $  follow these guidelines to guarantee your success :  + + + if you do not receive at least 10 orders for report # 1 within 2 weeks ,  continue sending e - mails until you do . = orders , 2 to 3 weeks after that you should receive 100 orders or more for  report # 2 . if you did not , continue advertising or sending e - mails until  you do .  + + + once you have received 100 or more orders for report # 2 , you can  relax , because the system is already working for you , and the cash will  continue to roll in ! this is important to remember : every time  your name is moved down on the list , you are placed in front of a different  report . you can keep track of your progress by watching which  report people are ordering from you . if you want to generate  more income send another batch of e - mails and start  the whole process again . there is no limit to the income you  can generate from this business ! ! !  following is a note from the originator of this  program : you have just received information that can give you  financial freedom for the rest of your life , with no risk and just a  little bit of effort . you can make more money in the next few  weeks and months than you have ever imagined . follow the program  exactly as instructed . do not change it in any way . it works  exceedingly well as it is now .  remember to e - mail a copy of this exciting report after you have put your  name and address in report # 1 and moved others to # 2 thru # 5 as  instructed above . one of the people you send this to may send out  100 , 000 or more e - mails and your name will be on every one of them .  remember though , the more you send out the more potential customers  you will reach . so my friend , i have given you the ideas , information ,  materials and opportunity to become financially independent .  it is up to you now !  + + + + + + + + + + + + + + + + more testimonials + + + + + + + + + + + + + + + +  \"\" my name is mitchell . my wife , jody and i live in chicago . i am an  accountant with a major u . s . corporation and i make pretty good money .  when i received this program i grumbled to jody about receiving  \"\" junk mail \"\" . i made fun of the whole thing , spouting my knowledge of the  population and percentages involved . i \"\" knew \"\" it wouldn ' t work . jody  totally ignored my supposed intelligence and few days later she jumped in  with both feet . i made merciless fun of her , and was ready to lay the old  \"\" i told you so \"\" on her when the thing didn ' t work . well , the laugh was on  me ! within 3 weeks she had received 50 responses . within the next 45  days she had received total $ 147 , 200 . 00 . . . . all cash ! i was shocked .  i have joined jody in her \"\" hobby \"\" .  mitchell wolf , chicago , illinois  \"\" not being the gambling type , it took me several weeks to make up my  mind to participate in this plan . but conservative that i am , i decided that  the initial investment was so little that there was just no way that i  wouldn ' t get enough orders to at least get my money back \"\" . \"\" i was  surprised when i found my medium size post office box crammed with  orders . i made $ 319 , 210 . 00 in the first 12 weeks . the nice thing about  this deal is that it does not matter where people live . there simply isn ' t a  better investment with a faster return and so big \"\" .  dan sondstrom , alberta , canada  \"\" i had received this program before . i deleted it , but later i wondered if i  should have given it a try . of course , i had no idea who to contact to get  another copy , so i had to wait until i was e - mailed again by someone  else . . . . . . 11 months passed then it luckily came again . . . . . . i did not delete  this one ! i made more than $ 490 , 000 on my first try and all the money  came within 22 weeks \"\" .  susan de suza , new york , n . y  if you have any questions of the legality of this program , contact the office  of associate director for marketing practices , federal trade commission ,  bureau of consumer protection , washington , d . c .  this email was sent to you via saf - e mail systems . your email address was  automatically inserted into the to and from addresses to eliminate  undeliverables which waste bandwidth and cause internet congestion . your  email or webserver is not being used for the sending of this mail . no - one  else is receiving emails from your address . you may utilize the removal link  below if you do not wish to receive this mailing .  http : / / www . webtransit . net / remove . html\",1\n\"Subject: from mrs fati  dear ,  i crave your indulgence at this mail coming from somebody you have not know before . i decided to do this after praying over the situation . you should please consider the transaction on its content and not the fact that you have not known me before . i need not dwell on how i came by your contact information because there are many such possibilities these days .  i would like to introduce myself as mrs . fati zongo , of repulic of benin , widow to late chief ; julius . o . zongo ( for consular of the benin i have been recently been daigonosed of cancer of the pelvics . i am writing from my sick bed . there is this usl 0 . 5 million my husband has in an account with the financial bank , benin of which i am the next of kin . with my health condition and because my husband and i have no children , i am  looking for a credible person to whom i will pass the right of next of kin . this person will apply to the bank and request for the transfer of the fund to his / her bank account . this is on the condition that you will take 25 % of the fund for yourself , 5 % used for expenses , while you will use the remaining 70 % for the less previlege people in the society .  this is in fulfilment of the last request of my husband : that a substantial part of the fund be used to carter for the less previleged . if this condition is acceptable to you , you should contact me immediately with your full names and contact information so that i will ask our family lawyer to prepare the authorization that will give you the right of next of kin to the account in the bank . i will also give you a text of the application you are to send to the bank . i cannot predict what will be my fate by the time the fund willbe transfered into your account , but you should please ensure that the fund is used as i have described above .  i look forward to your response .  yours ,  mrs . fati  note - the original deposite form will be send to you at yours demand .\",1\n\"Subject: all graphics software available , cheap oem versions .  good morning ,  we we offer latest oem packages of all graphics and publishing software from corei , macromedia , adobe and others .  $ 80 adobe photoshop 8 . 0 / cs  $ 140 macromedia studio mx 2004  $ 120 adobe acrobat 7 . 0 professionai  $ 150 adobe premiere pro 1 . 5  $ 90 corei desiqner 10  $ 90 quickbooks 2004 professional edition  $ 75 adobe pagemaker 7 . 0  $ 70 xara x vl . 1  $ 75 adobe audition 1 . 5  $ 90 discreet 3 d studio max 7  $ 115 adobe golive cs  $ 135 adobe after effects 6 . 5 standard  $ 45 adobe premiere eiements  $ 125 corei painter lx  $ 80 adobe lllustrator cs  $ 80 adobe lndesiqn cs  $ 240 adobe creative suite  $ 140 adobe framemaker 7 . 1  $ 50 uiead cool 3 d production studio 1 . 0 . 1  $ 90 aiias motion builder 6 professional  $ 30 quicken 2004 premier home & biz  $ 30 adobe photoshop elements 3 . 0  $ 110 adobe premiere pro 7 . 0  learn more . . .  sincereiy ,  lliana \",1\n\"Subject: v and more  hello , welcome to the medzonli plainclothesman ne  - online pharmaceu varicoloured tical shop .  v tzigane a  u persuasiveness mv kilometre i  passible rac tangible i  warpath is  townspeople li  a colloquialism g  tutorage al  andmanyother .  with our sh rivalry op you get -  best p bursary rlces  indefensibility excellent service  fast correspondence shipping  private online or surpassing dering  have a nice day .\",1\n\"Subject: hi , low price inkjet cartridges bvax  hi , zzzz @ example . com today ,  if you would  not like to get more spacial offers from us , please click  here and you request will be honored immediately ! \",1\n\"Subject: use this handy interest calculator to get current rate information . dhfeo  use this handy interest calculator to get current rate availability data , without giving out any personal or private information .  this was sent to you by an mediagroup for smartmortgageusa . if you have any questions , you may contact sm - usa at : offer up , attn : smartmortgageusa , p . o . box 78361 , san francisco , ca 94107 - 8361 . if you wish to exclude yourself from future sm - usa items please use this to go to the website and then use the choice at the bottom of the page .  cyennpicahgf\",1\n\"Subject: get your babies diapers bill paid for , for a year !  your family could definately use this , now go .  odzzfzzq\",1\n\"Subject: good ooffr  want to know how to save over 60 % on meanwhile your piils ?  http : / / www . pledelo ridged . com - suc labile cessfull and proven way to save your mo humankind ney .  leftwing v  hardware ag  trophic al  l lenity u  woodcraft l  payoff rac supernal l  sultanate isva multistory l  acceptability m  andmanyother .  best bertha prlces .  high quaiity sinuosity .  wo betrothal rldwide shlpplng .  total confid electrical entiaiity .  250 . uncreated 000 + satisfied customers .  have tapestry a nice day !\",1\n\"Subject: site update tue , 05 jul 2005 .  subject : site update tue , 05 jul 2005 .  thank you for using our online store and for your previous order . we have updated our online software store ! ? now we have more latest version of programs . our  full catalog with 2100 freshest software titles available for instant download at  web - site http : / / meyers . tabloidez . com /  we hope that you will tell others about your positive experience with us .  with best wishes ,  managing director . . ceo  avery salinas  latest news :  increase in guerrilla attacks tests colombia ' s popular president  read more of the web ' s best original reporting  http : / / msnbc . msn . com / id / 3098358 /  for the poor in iran , voting was about making ends meet  stronger - than - expected data lift stocks \",1\n\"Subject: urgent safeharbor department warning  urgent  safeharbor department warning  we recently have determined that different computers have logged into your  ebay account , and multiple password failures were present before the login one  of our customer service employees has already tryed to telephonically reach you .  as our employee did not manage to reach you , this email has been sent to your  notice . therefore your account has been temporary suspended . we need you to  confirm your identity in order to regain full privileges of your account . if  this is not completed by june 27 , 2005 , we reserve the right to terminate all  privileges of your account indefinitly , as it may have been used for fraudulent  purposes . we thank you for your cooperation in this manner . to confirm your  identity please follow the link below .  ( to complete the verification process you must fill in all the  required fields )  please note : if your account informations are not  updated within the next 72 hours , then we will assume this account is fraudulent  and will be suspended . we apologize for this inconvenience , but the purpose of  this verification is to ensure that your ebay account has not been fraudulently  used and to combat fraud .  we apreciate your support and understading , as we work together to keep ebay  a safe place to trade .  thank you for your patience and attention in this important matter .  regards ,  safeharbor departmentebay inc .  do not respond to this e - mail , as your reply will not be  received .  copyright 2004 ebay inc . all rights reserved . designated trademarks  and brands are the property of their respective owners . ebay and the ebay  logo are trademarks of ebay inc . is located at hamilton avenue , san jose , ca  95125\",1\n\"Subject: the best place to buy viagra online at the best viagra price .  feeling better is just a click away .  the multitude of books is making us ignorant .  a closed mouth gathers no feet .  we are the music makers , and we are the dreamers of dreams .\",1\n\"Subject: simple pill solves complex problem  no . 1 male sexual enhancement pill on the market  more info here  cactus kwx replenish ww loquat wq snow ggv alterman xr illuminate mya cartilage tng sir xi  extroversion izx broomcorn nan riddle ei rapacious zt combatted ns calliope pgs edgy vm adposition cdz  decree cjt aboveground doo ottawa zgc mollie hj  no \",1\n\"Subject: all graphics software available , cheap oem versions .  good morning ,  we we offer latest oem packages of all graphics and publishing software from corei , macromedia , adobe and others .  $ 80 adobe photoshop 8 . 0 / cs  $ 140 macromedia studio mx 2004  $ 120 adobe acrobat 7 . 0 professionai  $ 150 adobe premiere pro 1 . 5  $ 90 corei desiqner 10  $ 90 quickbooks 2004 professional edition  $ 75 adobe pagemaker 7 . 0  $ 70 xara x vl . 1  $ 75 adobe audition 1 . 5  $ 90 discreet 3 d studio max 7  $ 115 adobe golive cs  $ 135 adobe after effects 6 . 5 standard  $ 45 adobe premiere eiements  $ 125 corei painter ix  $ 80 adobe lilustrator cs  $ 80 adobe lndesiqn cs  $ 240 adobe creative suite  $ 140 adobe framemaker 7 . 1  $ 50 uiead cooi 3 d production studio 1 . 0 . 1  $ 90 aiias motion buiider 6 professionai  $ 30 quicken 2004 premier home & biz  $ 30 adobe photoshop eiements 3 . 0  $ 110 adobe premiere pro 7 . 0  learn more . . .  sincereiy ,  lincoin \",1\n\"Subject: when will the real estate bubble burst ? - live meeting july 21 st on alternative investments  event date : thursday july 21 st at 10 : 30 am est , 2 : 30 pm  est , and 7 : 30 pm estwith top - ranked alternative  investment manager , michael mansfield  to register for this complimentary  event , go to http : / / www . forex - day - trading . com / forex - online - registration . htm .  even warren buffett is negative on real estate - \"\" the  biggest financial bubble in  history \"\"  warren buffett , the second richest man in the world ,  recently sold his house in laguna for $ 3 . 5 million . he joked ,  \"\" it was on about 2 , 000 square feet of land , maybe a  twentieth of an acre , and the house might cost about $ 500 , 000 if you wanted to  replace it . so the land sold for something like $ 60 million an acre . \"\" [ if you  want to read more about this , you can go to cnn ' s website at http : / / money . cnn . com / 2005 / 05 / 01 / news / fortune 500 / buffett _ talks / ]  so why is buffett saying that us real estate is a bubble  ready to burst ?  and why is buffett betting against the us dollar ? [ note :  buffett made $ 1 . 63 billion in foreign currency ( fx ) gains from the dollar ? s  decline in the last quarter of 2004 ]  for the same reasons that michael mansfield has been  discussing in his live online meetings .  who is michael mansfield ?  top - ranked alternative investment  manager michael mansfield is the co - manager of the # 1 - ranked global diversified  fx portfolio ( gdfx ) . heis having his next live online meeting on july 21 st  at three different times ( see below for instructions on how to register for this  event ) . gdfx was up 31 . 87 % in 2004 and was ranked # 1 by eurekahedge . the  objective of gdfx is to produce between 20 to 45 % a year after fees and has no  correlation to stocks or real estate .  what will be covered ?  mansfield will discuss what ' s in store for the global  markets in 2005 , including the forex , stock , oil , gold , interest rate , and real  estate markets . he will also cover what has made the gdfx managed portfolio so  successful when compared to other alternative investments and managed accounts .  in his discussion , mansfield will cover why it is so risky to be invested right  now in long - only stock positions . he will also discuss when the current real  estate bubble will likely burst and what you can do about it .  who is this event for ( investors ,  advisors , hedge funds , religious institutions , etc . ) ?  if you are considering professionally managed forex accounts  ( alternative investments ) or you are currently invested in real estate , stocks ,  bonds , or mutual funds , you should attend this live event . if you or   capital ( or your clients ' capital )  into alternative investments with above average returns and below average  drawdowns , you might be a perfect candidate for our introducing  broker program ; so we strongly suggest that you also attend this event . ( due  to the demand that we have experienced for mansfield ? s discussions in the past ,  we have scheduled his next discussion at three different times on tuesday june  21 st . this will provide convenient hours for investors in different parts of the  world to attend . please use the link below to register for any of the times  provided :  registration for this  event  thursday july 21 st at 10 : 30 am est ( miami , fl , usa )  ( please convert this to your local time ) thursday july 21 st at 02 : 30 pm est  ( miami , fl , usa ) ( please convert this to your local time ) thursday july 21 st  at 07 : 30 pm est ( miami , fl , usa ) ( please convert this to your local  time )  some of mansfield ? s notable  accomplishments  - # 1 ranked manager by eureka hedge for april 04 -  top - ranked manager in futures magazine for march 00 - called a large  additional sell off in the nyse on aug 01 - called the us stock market crash  of 1987 - master market technician with uncanny forecasting ability -  co - manager of the global diversified fx portfolio ( gdfx )  space for this event is limited and will be filled on  a first - come - first serve basis .  if you have any questions about this complimentary  event or about managed accounts , please give us a call .  sincerely ,  joe loraforexmanaged account  departmenthttp : / / www . forexdaytrading . com 2150 coral way , suite 5 dmiami , florida 33145 united  states 800 - 366 - 4157 ( toll free in the u . s . and canada ) 786 - 866 - 8733  ( international )  to unsubscribe , please go to the link  below : \",1\n\"Subject: assistance me  my name is mr . newton gwarada , the stepson of mr . terry ford of zimbabwe . it might be a surprise to you where i got your contact address ; i got it from the net . dont be worried because i am contacting you in good faith .  during the current crisis against the farmer of zimbabwe by the supporters of our president robert mugabe to claim all the white owned farms in our country , he ordered all the white farmers to surrender their farms to his party members and their followers .  my stepfather was one of the best farmer in the country and knowing that he did not support the president political ideology , the president supporters invaded my stepfather \"\" s farm and burnt down everything , killed him and confiscated all his investments .  after the death of my stepfather , my mother and i with my younger sister decided to move out of zimbabwe for the safety of our lives . we took along with us the money my stepfather kept in the safe in my mother ' s house which amounted to the sum of us $ 20 m ( twenty million united states dollars ) to the republic of south africa where we have deposited it as personal valuables in a private security company for safe - keeping .  because of our present status ( political refugees ) , my mother and i are sriously looking forward to having an overseas partner that will assist us with the convenient and legal transfer of the funds out of south africa .  if my proposition is considered , for assisting us to transfer this money to your country , we will offer you 20 % of the total fund , and 5 % of the total will be set aside to cover any expenses incurred during this transaction , 75 % will be for my family to invest . in your country under your supervision .  for detailed information , you can contact me direct .  i would appreciate confidentiality and honesty in our correspondence . your immediate response will be highly wecomed .  best regards ,  mr . newton gwarada\",1\n\"Subject: easy - tag board : : more options to fit your site  thank you for your interest in easy - tag board . our goal is to provide you with the best software and support possible . we know you have a choice and appreciate the opportunity to assist with your online needs . we are confident that you will see the benefits of using the easy - tag board .  highly customizable easy to configure fast , reliable , & secure  server o / s independent cross - browser compatible more features text - decoration : none \"\" face = arial , helvetica , sans - serif > www . easy - tagboard . com  you are receiving this email because you opted - in to our mailing list or someone you know referred you to us . we respect your right to privacy and your desire not to be bothered by unwanted emails . if you do not wish to receive any further newsletters , please click the link below to be permanently removed from out mailing list .  to unsubscribe click ( here ) .\",1\n\"Subject: charity sees the need not the cost . . .  dear friend ,  as you read this , i don ' t want you to feel sorry for me , because , i believe everyone will die someday . my name is mr . reza abdulla , a merchant in safat , in ( kuwait ) i was married with two children . my wife and two children died in a car accident six years a go . i have been diagnosed with esophageal cancer . it has defiled all forms of medical treatment , and right now i have only about a few months to live , according to medical experts .  i have not particularly lived my life so well , as i never really cared for anyone ( not even myself ) but my business . though i am very rich , i was never generous , i was always hostile to people and only focused on my business as that was the only thing i cared for . but now i regret all this as i now know that there is more to life than just wanting to have or make all the money in the world .  i believe when god gives me a second chance to come to this world i would live my life a different way from how i have lived it . now that god has called me , i have willed and given most of my property and assets to my immediate and extended family members as well as a few close friends . i want god to be merciful to me and accept my soul so , i have decided to give alms to charity organizations , as i want this to be one of the last good deeds i do on earth . so far , i have distributed money to some charity organizations in the u . a . e , algeria and malaysia . now that my health has deteriorated so badly , i cannot do this myself anymore . i once asked members of my family to close one of my accounts and distribute the money which i have there to charity organization in bulgaria and pakistan , they refused and kept the money to themselves . hence , i do not trust them anymore , as they seem not to be contended with what i have left for them . the last of my money which no one knows of is the huge cash deposit of ten million seven hundred thousand american dollars ( u . s . $ 10 . 700 , 000 ) that i have with a finance / security company abroad . i will want you to help me collect this deposit and dispatched it to charity organizations . i have set aside only 20 % for you and for your time and also 5 % as miscellaneous expenses . reply me at your earliest convenience for more directives to my private email address : reza _ abdulla @ walla . com  god be with you .  regards ,  mr . reza abdulla\",1\n\"Subject: new extensions now only $ 14 . 95  important information :  the new domain names are finally available to the general public at discount prices . now you can register one of the exciting new . biz or . info domain names , as well as the original . com and . net names for just $ 14 . 95 . these brand new domain extensions were recently approved by icann and have the same rights as the original . com and . net domain names . the biggest benefit is of - course that the . biz and . info domain names are currently more available . i . e . it will be much easier to register an attractive and easy - to - remember domain name for the same price . visit : http : / / www . affordable - domains . com today for more info .  register your domain name today for just $ 14 . 95 at : http : / / www . affordable - domains . com . registration fees include full access to an easy - to - use control panel to manage your domain name in the future .  sincerely ,  domain administrator  affordable domains  to remove your email address from further promotional mailings from this company , click here :  38  1201 hvli 9 - 661 pjwll 5\",1\n\"Subject: extraa chance  how to save on your medlcatlons ove pettitoes r 60 % .  pharmazm spurge ail shop - successfull and proven way to save yo compos ur m eureka oney .  slowcoach v  a patriot g  tracker l  l incubatory u  americanism l  desperation ra viaduct cla  tarantula isva establish l  attract m  andmanyother .  * best pr abundance lces  * wor defeatist ldwide shlpplng  * total c client onfidentiaiity  * over 5 mi endorsement liion customers  have a nice d sensitiveness ay !\",1\n\"Subject: returned mail : see transcript for details  the original message was received at tue , 19 jul 2005 07 : 06 : 09 - 0400  from root @ localhost  - - - - - the following addresses had permanent fatal errors - - - - -  antique  ( reason : can ' t create ( user ) output file )  ( expanded from : )  - - - - - transcript of session follows - - - - -  procmail : quota exceeded while writing \"\" / var / spool / mail / antique \"\"  550 5 . 0 . 0 antique . . . can ' t create output\",1\n\"Subject: you have successfully added a new email address  update your account  dear valued customer  we regret to inform you that your account at  ebay could be suspended if you don ' t update your billing information .  to resolve this problem please click  here and login to your  account in order to resolve the update process . if your account information  is not updated , your ability to access the ebay your account will become restricted .  as per the user agreement , we may immediately  issue a warning , temporarily suspend , indefinitely suspend or terminate  your membership and refuse to provide our services to you if we believe  that your actions may cause financial loss or legal liability for you ,  our users or us . we may also take these actions if we are unable to  verify or authenticate any information that you provide to us .  due to the suspension of this account , please  be advised you are prohibited from using ebay in any way . this includes  the enrolling of a new account . please note that this suspension does  not relieve you of your agreed - upon obligation to pay any fees you may  owe to ebay .  copyright 1995 - 2005 ebay inc . all rights reserved . designated trademarks and brands are the property of their respective owners . use of this web site constitutes acceptance of the ebay user agreement and privacy policy . \",1\n\"Subject: debt information tue , 28 jun 2005 .  subject : debt information tue , 28 jun 2005 .  thank you for using our online store and for your previous order . we have updated our online software store . . . now we have more latest version of programs . our  full catalog with 2100 freshest software titles available for instant download at  web - site http : / / aloe . tabloidez . com /  we hope that you will tell others about your positive experience with us .  with best wishes ,  managing director ? ? ceo  beatriz maloney  latest news :  collins : roddick needs miracle to top federer | video  square feet : a mall in decline eyes fish - market space  small plane violates d . c . air space , forced to land  idaho girl found ; brother feared dead \",1\n\"Subject: delivery failure : user antonio _ lambino ( antonio _ lambino @ ksg . harvard . edu ) not  listed in domino directory  your message  subject : [ spam ] just to her . . .  was not delivered to :  antonio _ lambino @ ksg . harvard . edu  because :  user antonio _ lambino ( antonio _ lambino @ ksg . harvard . edu ) not listed in domino directory\",1\n\"Subject: free euro .  on january lst 2002 , the european countries began  using the new euro . never before have so  many countries with such powerful economies united  to use a single currency . get your piece of history  now ! we would like to send you a free euro  and a free report on world currency . just visit  our site to request your euro and euro report :  http : / / 209 . 163 . 187 . 42 / euro - exchange /  in addition to our currency report , you can receive  our free investment package :  * learn how $ 10 , 000 in options will leverage $ 1 , 000 , 000 in  euro currency . this means even a small movement in the market  has huge profit potential .  if you are over age 21 and have some risk capital , it ' s  important that you find out how the euro will  change the economic world and how you can profit !  click now ! http : / / 209 . 163 . 187 . 42 / euro - exchange /  $ 10 , 000 minimum investment  please carefully evaluate your financial position before  trading . only risk capital should be used .  http : / / 209 . 163 . 187 . 42 / opt - out / to optout .\",1\n\"Subject: last longer in bed  hello ,  did you ejaculate before or within a few minutes of  penetration ?  premature ejaculation occurs when you ejaculate too quickly  and without control . it occurs before or shortly after  penetration . premature ejaculation interferes with the sexual  pleasure of both you and your partner . it causes feelings of  guilt , embarrassment , frustration , and depression .  extra - time is the only male sexual performance formula that ,  not only stops premature ejaculation , but actually \"\" cures \"\" it .  extra - time is the only product that allows \"\" you \"\" to control  when you ejaculate .  - non - hormonal herbal therapy .  - acts locally on the sex organs .  - regulates process of ejaculation .  - acts through neuro - endocrine pathway .  - acts on the high centers of emotion in the brain .  look here : http : / / reattain . com / et / ? meds  no thanks : http : / / reattain . com / rr . php\",1\n\"Subject: i am interested in buy ad space .  hi i hope all is well , i am interested in buy ad space . we are looking for premier publishers that can deliver high quality us traffic , which is why i have contacted you . all our cpm impression counts are raw , not based off unique , which raises the effective cpm . our ecpm rate is 10 - 1 , no one in the industry can beat that ! for this campaign i have a large budget and i would love to allocate a few thousand dollars for a test campaign . for reporting , we have partnered with zedo , so you will know what you are making in real - time . we work with over 100 publishers and we are looking to schedule a budget for our key players to carry over into 2006 . platinum ad network is always looking for elite publishers . i ' d love to discuss with you further about the synergies our companies might have .  thanks ,  michael mathews  media buyer  platinum ad network  mmathews @ platinumadnetworks . com \",1\n\"Subject: erectile dysfunction ruining your sex life ?  multiple male orgasms  more info here  breakup plp credulity aph irreplaceable ns faust lag  bilinear xyu reveal kbv altar lmt embedder jze mission cz caviar xv  precious zex clamorous yz offertory pqe polemic gb filth rb cozen bh dun tqz cosy cfb  no \",1\n\"Subject: kit torre empilhadeira savi  santos , junho de 2 . 005  sua empresa possui empilhadeira hyster de 07 ton .  e  10 ton . .  ent?o preste aten??o , abaixo est?o 03 kits de pe?as que  ir?o ajudar bastante sua vida .  kit 001 - ( torre e quadro hyster h 150 j ( 07  ton . ) ) .  comp?e este kit . :  08 - 196445 top que vai  soldado na torre  08 - 193557 rolete  completo  02 - 110520 rolete maior  completo  02 -  61463 roldana da  corrente ( completo com rolamento )  kit 002  ( torre e quadro hyster h 225 ( 10 ton ) ) .  comp?e este kit .  08 - 125223 rolete  principal da torre e quadro completo  08 - 257853 eixo curto  ( que vai soldado na torre e quadro )  08 - 125217 conjunto  rolete lateral completo  08 - 125219 pino do  rolete lateral  08 - 125220 suporte  especial em a?o  02 - 61463  roldana da torre completa com rolamentos  02 - 270063 eixo do rolamento superior  torre fixa  02 - 87905 rolamento  superior da torre fixa  kit 003 ( tra??o hyster h 225 ( 10  ton . ) ) .  comp?e este kit  02 - 810810 roda  dentada  02 - 810348 roda  dentada  02 - 304735 corrente  de tra??o  nossos kit cont?m todos os ?tens de reposi??o que devem  ser substituidos , em uma reforma  de seu subconjunto , sem reaproveitamento de pe?as meia  boca , para que seu equipamento  n?o quebre na hora em que voc? mais  precisa .  consulte - nos tamb?m sob roletes e roldanas da torre com  c?digo original do fabricante .  torres , quadros de eleva??o e eixos direcionais novos e a  base de troca  obs . : todos os ?tens acima s?o de nossa fabrica??o  .  fabricamos tamb?m ?tens sob desenho ou amostra  tais como :  cilindros hidr?ulicos de equipamentos importados e de grande  porte , semi - eixos , entalhados , pinos , buchas , engrenagens e  etc . .  estamos desde j? aguardando vosso  contato .  sds  hailson savi / / depto vendas  savi com?rcio e ind?stria de pe?as  telfax oxxl 3 32357817  tel oxxl 3 32342055  mail  hailson . savi @ terra . com . br  obs : voc? est?  recebendo este e - mail porque est? cadastrado para tal . caso voc? n?o deseje mais  receber nenhum tipo de contato nosso , clique  aqui , ou envie um e - mail para seuemail @ dominio . com com o assunto  remover .\",1\n\"Subject: wall street ' s dirty little secret . . .  it was the spring of 1979 .  i was just a tall , goofy looking kid in middle school  with buck - teeth and freckles . each day in the  cafeteria , i walked from table to table . . .  stealing other kids ' lunch money .  no , i didn ' t rob them with a gun or a knife - i just made  them a little deal . \"\" let me borrow two dollars today , \"\" i said ,  \"\" and i ' ll bring you five dollars next week . \"\" the investment  was too good to pass up , and other kids were throwing their  lunch money at me like gravy on mashed potatoes . of course  when \"\" next week \"\" rolled around and i couldn ' t pony up the cash ,  i promised to pay them even more the week after that ,  if they would just let me keep their investment a little bit  longer .  eventually the end of the year came and went , high school  started and with it came girls , and homework , and parties ,  and sports , and those poor kids from eighth grade had more  things on their mind than last year ' s lunch money .  i made off with a tidy sum for a middle school kid ,  and i didn ' t even get beat up .  hidden inside this story are the two greatest stock market  secrets you will ever learn .  first of all , greed is your number one enemy . you ' re not  going to turn $ 2 into $ 5 in a week , so cash out when  you ' re ahead . don ' t wait for the boat to sink before  grabbing the lifejacket .  second , never trust an investment adviser of any kind .  they are looking out for their own money , not yours .  the \"\" professionals \"\" , those stuffy investment counselors and  money managers , will always tell you that the best time to  buy is now . according to those guys , the longer you keep  your money in the market , the more money you ' re going to make .  ask them when is the best time to sell and their answer is  \"\" never \"\" .  in a sense , they are right . if you put $ 250 , 000 in an index  fund right now , you ' ll probably have over a million dollars  in thirty or forty years . but here ' s the problem :  do you want to wait thirty or forty years to be rich ?  hell no !  you want the money now - so you can enjoy it . it ' s hard to  make use of your fortune when you ' re seventy years old  in a wheelchair . if you could make a million dollars in  the next few years , what would you do with it ? where would  you travel ? what kind of car would you buy ?  the fact is . . . youth is the best time to be rich .  if your goal is to make quick profits in the market , volatility  is your ally , and stability your enemy . you want to see  those large upswings , two hundred points in a day , followed  by the four hundred point crash a week later . you don ' t  care if the market went up or down 20 % this year as long  it was unstable . that ' s how you ' re going to make the  money .  what i ' m talking about here is day trading .  my father invests the traditional way ; he holds some good stocks  and he goes up 30 k and down 30 k . in the long term of 5 - 10 years  he makes money .  the day trader buys or sells 5 , 000 shares of xyz for a  $ 25 , 000 profit in a 5 - 10 minute trade . he acts quickly , taking  advantage of all the information at his disposal about a  certain stock , and estimating whether it will go up or  down within hours , sometimes within minutes .  i can teach you how to do this - and how to make amazing  amounts of money at it . it ' s not rocket science , and you  only need to learn a few basic principles to get started .  society would have you believe that successful trading is  complicated and requires formal training .  the truth is , wealthy people use very simple investment  strategies to make money .  popular media and investment professionals portray successful  trading as difficult and complex to scare you out of the boxing  ring . they don ' t want the competetion - and they sure as hell  don ' t want you paying a few dollars to an online trading firm  to execute a trade for which they ' d charge you forty or fifty  dollars .  they make their money only if you believe two lies :  1 ) that investing is too difficult and risky for the average  person .  2 ) that using an investment adviser who charges a high  commission is safer than trading online for a few bucks  per trade .  here is what the financial gurus in today ' s society absolutely ,  positively do not want you to know . . .  the strategies for profitable day trading are in fact  so simple that anyone can do it - provided they spend  a few hours of studying .  after reading over 200 financial books and publications  during the past decade , and after using day trading  to successfully make more than four million dollars in  the stock market , i ' ve learned the following lessons :  * * achieving financial success is incredibly simple .  * * anyone can do it .  * * it only takes a few hours to learn .  when i discovered the secret to day trading , i didn ' t become  wealthy overnight . if you want instant cash , drive to wal - mart .  buy a ski mask and a shotgun , and rob your local bank . the  only way to get rich , quick or otherwise , is through  hard work , knowledge , and determination .  after learning the fundamentals of day trading , i started  practicing the trading art itself , and the first few weeks  brought modest gains . the next few months gave me the practical  experience i needed to really earn a living , and i was pulling  close to a six figure income . in less than three years with no  formal financial training , minimal effort and only moderate risk ,  i had made my first million . the knowledge that i gained  during those formative trading years i am willing to share  with you in my new book , the master trader . you will learn from  my mistakes , and from my successes , as i teach you the simple ,  secret formula for day trading that i ' ve used profitably  year after year .  the income of the day trader can be staggering . thousands , even  hundreds of thousands of dollars can be made or lost within  minutes . the difference between making money and losing your  shirt is simply this : knowledge . i will provide that knowledge ,  and i will give you a winning edge at this high - stakes game .  average income of a day trader :  5 % average an income in excess of $ 500 , 000 per year  22 % average an income in excess of $ 250 , 000 per year  35 % average an income in excess of $ 100 , 000 per year .  27 % average an income between $ 50 , 000 and $ 99 , 999 per year  11 % average an income between $ 20 , 000 and $ 49 , 999 per year  after reading the master trader , you will discover extremely  profitable , simple yet powerful trading methods that give  you an almost unfair trading advantage and make you  win despite the current market weakness .  here is just a snippet of what i will teach you :  * * * make money whether a stock goes up or down .  * * * learn how to get in and out of stocks within split seconds .  * * * learn exactly what stocks to trade , the exact price to  buy them and the exact price to sell them .  * * * save thousands of dollars by learning to avoid the  mistakes beginners make .  * * * learn how to trade stocks like a pro and how to make money  consistently in every market !  * * * learn proven strategies that give you the highest chance  for great success .  * * * profit on huge intraday price swings .  * * * make money on the biggest news stories .  * * * actively manage your risks and learn how to realize maximum  returns .  * * * learn how to use the tools and information wall street  professionals use .  * * * learn how to develop and maintain a winning state of mind .  it ' s time to ask yourself : \"\" am i going to listen to the  professionals who say buy buy buy but never sell ? or am  i going to take control of my own financial future , and  start making money right now in the stock market ? \"\"  who is looking out for your best economic interests - some  wealthy wall street stockbroker , or yourself ?  with the master trader e - book , you will learn everything you  need to know in order to get started with day trading . . . from  choosing the best broker in order to take advantage of the  lowest commissions and instant order executions to professional  trading strategies that make professional traders millions of  dollars .  the master trader e - book is the most comprehensive yet easy to  understand and straight - forward book ever written about active  trading . if you are serious about success in short term stock  trading - order today and start paving the road to your  own financial future .  oh , and remember that scraggly kid in the eighth grade ?  his high school friends laughed when he said he was going to  make money in the stock market .  six years later , he bought a beach - front home on the california  coast - with cash . oops , they weren ' t laughing anymore .  in a rollercoaster market like we have today , day trading  is the fastest track to wealth . if you ' re looking  for a long - term retirement investment with no risk  that goes up 5 % a year , then by all means , this ain ' t  your kind of game .  but if you want the quickest possible way to make a fortune  in the market , with the lowest element of risk , then  order the master trader e - book right now . i promise  to teach you all of the secrets that helped me become a  millionaire through successful day trading .  you don ' t need to know anything about the market , and  anyone can do it , with minimum effort . it ' s an easy  game to win if you know how the pieces move .  order the master trader e - book right now for only $ 49 . 97  by clicking on the link below :  http : / / 4 tools 4 life . com / qs  our company is strictly opposed to unsolicited emails .  to be removed from this list , please send an email  to \"\" bulkexpert @ yahoo . com \"\" \",1\n\"Subject: increase the volume of your ejaculation .  heya !  has your cum ever dribbled and you wish it had shot out ?  have you ever wanted to impress your girl with a huge cumshot ?  spur - m is the only site to offer an all natural male enhancement  formula that is proven to increase your sperm volume by up to 500 % .  our highly potent , volume enhancing formula will give our results  in days and comes with an impressive 100 % guarantee .  imagine the difference ( look and feel ) between dribbling your cum  compared to shooting out burst after burst . try spur - m now ! and  with our money back guarantee you have absolutely nothing to lose !  look here : http : / / chorally . com / cum /  no thanks : http : / / chorally . com / rr . php\",1\n\"Subject: undelivered mail returned to sender  this is the postfix program at host mail . freeservers . com .  i ' m sorry to have to inform you that your message could not be  be delivered to one or more recipients . it ' s attached below .  for further assistance , please send mail to  if you do so , please include this problem report . you can  delete your own text from the attached returned message .  the postfix program  ( expanded from  ) : host 10 . 133 . 22 . 254 [ 10 . 133 . 22 . 254 ] said : 554  error : : recipient address denied - relay access  denied ( in reply to rcpt to command )\",1\n\"Subject: ms office xp pro $ 49 . 95 ms 2003  opt - in email special offer unsubscribe me search software top 10 new titles on sale now ! 1 office pro 20032 windows xp pro 3 adobe creative suite premium 4 norton antivirus 20055 flash mx 20046 corel draw 127 adobe acrobat 7 . 08 windows 2003 server 9 alias maya 6 wavefrtl 0 adobe premiere see more by this manufacturer microsoft apple software customers also bought these other items . . . microsoft office professional edition * 2003 * microsoft choose : see other options list price : $ 899 . 00 price : $ 69 . 99 you save : $ 830 . 01 ( 92 % ) availability : available for instant download ! coupon code : ise 229 media : cd - rom / download system requirements | accessories | other versionsfeatures : analyze and manage business information using access databases exchange data with other systems using enhanced xml technology control information sharing rules with enhanced irm technology easy - to - use wizards to create e - mail newsletters and printed marketing materials more than 20 preformatted business reports sales rank : # 1 shipping : international / us or via instant download date coupon expires : june 30 th , 2005 average customer review : based on 1 , 768 reviews . write a review . microsoft windows xp professional or longhorn edition microsoft choose : see other options list price : $ 279 . 00 price : $ 49 . 99 you save : $ 229 . 01 ( 85 % ) availability : available for instant download ! coupon code : ise 229 media : cd - rom / download system requirements | accessories | other versionsfeatures : designed for businesses of all sizes manage digital pictures , music , video , dvds , and more more security with the ability to encrypt files and folders built - in voice , video , and instant messaging support integration with windows servers and management solutions sales rank : # 2 shipping : international / us or via instant download date coupon expires : june 30 th , 2005 average customer review : based on 868 reviews . write a review . adobe photoshop cs 2 v 90 adobe choose : see other options list price : $ 599 . 00 price : $ 69 . 99 you save : $ 529 . 01 ( 90 % ) availability : available for instant download ! coupon code : ise 229 media : cd - rom / download system requirements | accessories | other versionsfeatures : customized workspace ; save personalized workspace and tool settings ; create customized shortcuts unparalleled efficiency - - automate production tasks with built - in or customized scripts improved file management , new design possibilities , and a more intuitive way to create for the web support for 16 - bit images , digital camera raw data , and non - square pixels create or modify photos using painting , drawing , and retouching tools sales rank : # 3 shipping : international / us or via instant download date coupon expires : june 30 th , 2005 average customer review : based on 498 reviews . write a review .\",1\n\"Subject: future goals  urgent noticepending merger to increase revenue 236 % now is the time to invest in gwihgwih is rapidly expanding through acquisitions . in the lst quarter two mergers are in proces with a schedule to buy four more profitable companies by the year end . gwih plans to file for nasdaq . stock prices historically increase when listed on nasdaq .  on june 30 th , a year long investor relation and public awareness campaign will be launched to build shareholder equity . several well - known stock pick newsletters , tv , radio and newsgroups will provide coverage on gwih and it ' s acquisitions . all - star management team with advanced degrees , specialized training , proven track records and over 90 years combined experience . they are true deal makers , executors and closers . put gwih on your watch list , aquire a postion in gwih today ! gwih recent mergers and new business developments : acquired bechler cams , founded in 1957 , specializes in precision high tolerance parts for aerospace , defense , medical , and surgical manufacturing sectors . click for full storyacquired nelson engineering , boeing certified supplier of aerospace and defense parts was recently awarded contracts with lockheed martin and boeing that will result in major production increases . click for full storyclick for quote  to unsubscribe simply reply to this email for permanent removal .  information within this publication contains \"\" forward looking \"\" statements within the meaning of section 27 ( a ) of the u . s . securities act of 1933 and section 21 ( e ) of the u . s . securities exchange act of 1934 . any statements that express or involve discussions with respect to predictions , expectations , beliefs , plans , projections , objectives , goals , assumptions or future events or performance are not statements of historical facts and may be forward looking statements . forward looking statements are based on expectations , estimates and projections at the time the statements are made that involve a number of risks and uncertainties which could cause actual results or events to differ materially from those presently anticipated . forward looking statements may be identified through the use of words such as expects , will , anticipates , estimates , believes , or by statements indicating certain actions may , could or might occur . special situation alerts ( ssa ) is an independent publication . ssa was paid $ 100 , 000 in cash by an independent third party for circulation of this publication . ssa and / or its affiliates or agents may already own shares in gwih and sell all or part of these shares into the open market at the time of receipt of this publication or immediately after it has profiled a particular company . ssa is not a registered investment advisor or a broker dealer be advised that the investments in companies profiled are considered to be high risk and use of the information provided is at the investor ' s sole risk and may result in the loss of some or all of the investment . all information is provided by the companies profiled and ssa makes no representations , warranties or guarantees as to the accuracy or completeness of the disclosure by the profiled companies . investors should not rely on the information presented . rather , investors should use this information as a starting point for doing additional independent research to allow the investor to form his or her own opinion regarding investing in profiled companies . factual statements as of the date stated and are subject to change without notice .  * * * * * * * * * *\",1\n\"Subject: econommize more  hello , welcome to pharm crested online sho bathymetry p  - on underrate e of the leading oniine pharmaceutical shops  leaning v  podagra g  a decenniad l  blackface ll  geologize la  r innovate ac blaspheme l  i preconception sv biographical a  warily um  andmanyother .  - s imbroglio ave over 50 %  - worldwide s dupery hlpplng  - total lumping confidentiaiity  - over 5 miiiion cust jargonize omers in 130 countries  have a eyeball nice day !\",1\n\"Subject: home loans just got better !  free service to  homeowners !  home loans available for any situation .  whether  your credit rating is a + + or you are credit challenged ,  we have many loan programs through hundreds of lenders .  second mortgages - we can help you get up to 125 % of your  homes value ( ratios vary by state ) .  refinancing - reduce your monthly payments and get  cash back .  debt  consolidation - combine all your bills into one ,  and save money every month .  click  here for all details and a free loan quotation  today !  we strongly oppose the  use of spam email and do not want anyone who does not wish to receive  ourmailings to receive them . as a result , we have retained the  services of an independent 3 rd party toadminister our list management  and remove list ( http : / / www . removeyou . com / ) . this is not  spam . if youdo not wish to receive further mailings , please click  below and enter your email at the bottomof the page . you may then  rest - assured that you will never receive another email from usagain .  http : / / www . removeyou . com / the 21 st  century solution . i . d . # 023154\",1\n\"Subject: high - quality affordable logos  corporate image can say a lot of things about your  company . contemporary rhythm of life is too dynamic . sometimes it takes oniy  several seconds for  your company to be remembered or to be lost among competitors .  get your loqo , business stationery or website done  riqht now !  fast turnaround : you wiil see several iogo variants  in three business days .  satisfaction guaranteed : we provide unlimited  amount of changes ; you can be sure : it will meet your needs and fit your  business .  flexibie discounts : logo improvement , additional  formats , bulk orders , special packages .  creative design for  competitive price : have a look at it right now !\",1\n\"Subject: your logo and visual identity from us  thinking of breathing new life into your business ?  start from revamping its front - endlogo and  visualidentity .  we offer creative custom desiqn of loqos ,  stationery and web - sites . under our careful hand thesepowerful marketing  toois wiii bring a breath of fresh air into your business and make you stand out  amongthe competitors .  you are just a click  away from your future success . click here to see the sampies of our artwork ,  checkour prices and hot offers .  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: all graphics software available , cheap oem versions .  good morning ,  we we offer latest oem packages of all graphics and publishinq software from corel , macromedia , adobe and others .  $ 80 adobe photoshop 8 . 0 / cs  $ 140 macromedia studio mx 2004  $ 120 adobe acrobat 7 . 0 professionai  $ 150 adobe premiere pro 1 . 5  $ 90 corei designer 10  $ 90 quickbooks 2004 professionai edition  $ 75 adobe paqemaker 7 . 0  $ 70 xara x vl . 1  $ 75 adobe audition 1 . 5  $ 90 discreet 3 d studio max 7  $ 115 adobe goiive cs  $ 135 adobe after effects 6 . 5 standard  $ 45 adobe premiere elements  $ 125 corel painter lx  $ 80 adobe lilustrator cs  $ 80 adobe lndesign cs  $ 240 adobe creative suite  $ 140 adobe framemaker 7 . 1  $ 50 ulead cool 3 d production studio 1 . 0 . 1  $ 90 aiias motion buiider 6 professionai  $ 30 quicken 2004 premier home & biz  $ 30 adobe photoshop eiements 3 . 0  $ 110 adobe premiere pro 7 . 0  learn more . . .  sincerely ,  carson \",1\n\"Subject: re : change of plans  hello you two ,  i am so sorry catherine for not writing recently . i have just been vv busybeing a working mother and sometimes it all gets too much you know ! ! i cannot wait to see you both although we may meet at the airport on the 16 / 6 as that ' s the day we ' re going to france but i will see you both at bronagh ' s house for her 30 th which we ' re going to on the way back from the airport . i am so excited about seeing you ! ! ! liitle eva ( aine ) was born on tuesday  she is absolutely incredible . poor bronagh is 11 dsays over ! !  sounds like you ' ve been having an amazing time . hope you won ' t be too depressed to be back ! !  lots of love  deirdre  \"\" justin mason \"\" wrote :  <  < just a quick note -  <  < we ' ve decided to go up to annapurna base camp instead of  < the jomsom trek - it ' s a bit more impressive visually  < ( if a little soggier ) . so as of tomorrow morning , ourselves  < and our guide bhadra will be leaping like gazelles up 4000 - odd  < metres into the himalayas . . . we ' ll be sure to take a few  < pics on the way . sorry for the bonus mail , but we have to tell  < someone because we forgot to tell the irish embassy ; )  <  < next update in 10 - 14 days , ish ,  <  < - - j .  <  <  <  < _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  < travelogue mailing list  < travelogue @ jmason . org  < http : / / jmason . org / mailman / listinfo / travelogue  <\",1\n\"Subject: looking for good it team ? we do software engineering !  looklng for a good lt team ?  there can be many reasons for hiring a professional  lt team . . .  - lf you ' ve qot an active on - line business and you  are dissatisfied with the guaiity of your currentsupport , its cost , or  both . . .  - lf your business is expanding and you ' re ionqing  for a professionai support team . . .  - lf you have specific software requirements and  you ' d iike to have your soiutions customized , toqetherwith warranties and  reiiabie support . . .  - if you have the perfect business idea and want to  make it a reality . . .  - if your project has stalled due to lack of  additional resources . . .  - if you need an independent team for benchmarking ,  optimization , quality assurance . . .  if you ' re looking for  a truly professional team , we are at your service ! just visit our  website  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: in the heart of your business !  corporate image can say a lot of things about your company . contemporary rhythm of life is too dynamic .  sometimes it takes only several seconds for your company to be remembered or to be lost among competitors .  get your logo , business stationery or website done right now !  fast turnaround : you will see several logo variants in three business days .  satisfaction guaranteed : we provide unlimited amount of changes ; you can be sure : it will meet your needs  and fit your business .  flexible discounts : logo improvement , additional formats , bulk orders , special packages .  creative design for competitive price : have a look at it right now !\",1\n\"Subject: $ 3 leads !  click here to have a representative contact you !  for additional information visit us at www . all - leads . com  all - leads . com 247 sw 8 th st . - ste . 181 miami , fl 33130 this e - mail message is an advertisement and / or solicitation . \",1\n\"Subject: any med for your girl to be happy !  your girl is unsatisfied with your potency ? don ' t wait until she finds another men !  click here to choose from a great variety of llcensed love t @ bs ! best pri $ es , fast shippinq and quaranteed effect ! here you buy it riqht from warehouse !  the store is verifled by bbb and approved by visa ! \",1\n\"Subject: reduce cellulite . proven alternative to cosmetic surgery ! gpndq  take advantage of our no cost trial ! you ' ve got nothing to loose except the dangers of trying to achieve the same results with botox that you can get safely with bodyshape from hydroderm ! ( )  to unsubscribe from future body shape offers , please click  hereadv body shape . 11240 playa court . culver city . ca .  90230  lvswinjqgxlx\",1\n\"Subject: from david wood london ( citibank )  letter from david wood ( london )  greetings ,  i am david wood the bank manager of citibank 332 oxford street , london wln  9 aa . i have urgent and very confidential business proposition for you . on  june 6 , 1997 , an iraqi foreign oil consultant / contractor with the british  petroluem corporation mr . haffez al sadique .  made a numbered time ( fixed deposit ) for 36 calendar months , valued at us $ 20 , 500 , 000 . 00  ( twenty nine million five hundred thousand dollars only ) in my branch . upon  maturity in 2000 , i sent a routine notification to his forwarding address  but got no reply .  after a month , we sent a reminder and finally we discovered from his contract  employers , the british petroleum corporation that mr . haffez al sadique  died as a result of torture in the hand of sadam hussein during one of his  trips to his country iraq . on further investigation ,  i found out that he died without making a will , and all attempts to trace  his next of kin was fruitless . i therefore made further investigation and  discovered that mr haffez al sadique . did not declare any kin or relations  in all his official documents , including his bank deposit paperwork in my  bank .  this sum of us $ 29 , 500 , 000 . 00 have been floating as unclaimed since 2000  in my bank as all efforts to get his relatives have hit the stones .  according to the british law at the expiration of 8 ( eight ) years , the money  will revert to the ownership of the british government if nobody applies  to claim the fund and the eight years is the end of december 2004 .  consequently , my proposal is that i want to seek your consent as a foreigner  to stand in as the owner of the money as the next of kin to the deceased  so that the bank will transfer the money to your designated account . all  documents and proves to enable you get this fund will be carefully worked  out . i have secured from the probate an order of mandamus to locate any  of the deceased beneficiaries , and more so i are assuring you that the business  is risk free involvement . your share stays while the rest be for me and  for investment purpose as i will leave london by the end of the year .  the sharing of the funds will be based according to agreement within me  and you . as soon as i receive an acknowledgement of receipt of this message  in acceptance of our mutual business proposal , i will furnish you with the  necessary modalities and disbursement ratio to suit both parties without  any conflict . if this proposal is acceptable by you , do not take undue advantage  of the trust i have bestowed in you .  please , appreciate the fact that doing business over the internet is risk .  endeavor to send your confidential telephone and fax number in your reply  to this business .  god bless you .  mr david wood\",1\n\"Subject: give her something to smile about  my girlfriend loves the results , but she doesn ' t know what i do . she  thinks  it ' s natural - thomas , ca  i ' ve been using your product for 4 months now . i ' ve increased my  length from 2  to nearly 6 . your product has saved my sex life . - matt , fl  pleasure your partner every time with a bigger , longer , stronger unit  realistic gains quickly  to be a stud press  here  then he remembered his manners and bowed low before the king , who  seemed to him a fine fellow and not a bit stuck up  this does not  interest me  he ' s pretty well and then he walked calmly from the palace  the people in the outer room stared at him wonderingly and the officer of  the guard saluted the boy respectfully \",1\n\"Subject: are you ready to get it ?  hello !  viagra is the # 1 med to struggle with mens ' erectile dysfunction .  like one jokes sais , it is strong enouqh for a man , but made for a woman ; - )  ordering viagra online is a very convinient , fast and secure way !  millions of people do it daily to save their privacy and money  order here . . . \",1\n\"Subject: let the tba doctor save your tough cases  sex  age  face amt .  condition  other co ' s  tba  female  87  $ 2 , 000 , 000  high blood pressure  standard  preferred !  male  60  $ 500 , 000  aneurysm - treated surgically  decline  standard !  male  57  $ 1 , 000 , 000  heart attack 1997 & pacemaker  table 6  standard !  female  57  $ 500 , 000  diabetic for 34 years  table 4  standard !  male  51  $ 1 , 500 , 000  alcohol abuse ( dry 1 year )  decline  standard !  male  50  $ 2 , 500 , 000  1 / 2 pack a day cigarette smoker  pref . smoker  pref . nonsmoker !  male  47  $ 2 , 000 , 000  tobacco chewer  smoker  pref . nonsmoker !  please fill out the form below for more information  name :  e - mail :  phone :  city :  state :  we don ' t want anybody to receive our mailings who does not wish  to receive them . this is professional communication  sent to insurance professionals . to be removed from this mailing list ,  do not reply to this message . instead , go here : http : / / www . insuranceiq . com / optout \",1\n\"Subject: up to $ 1 , 500 . 00 part time 22311  check out our $ 1 , 000 . 00 internet challenge !  \\ tab \\ tab \\ ' b 7 what if you could have a protected job that allows you to work as  little as two hours a week and it still pays you up to $ 800 . 00 every week for the next 20 years ? well - here it is ! take our $ 1 , 000 . 00 online challenge !  \\ tab \\ tab  \\ tab \\ tab  \\ tab \\ tab check it out  \\ tab \\ tab \\ tab  \\ tab \\ tab \\ tab  \\ tab \\ tab \\ tab  \\ tab \\ tab  the sender of this message has stated its assurance that the sender complies with all state guidelines and codes regarding uce . this transmittal is specifically not intended for residents of the state of washington . if you wish to opt out of receiving of this message in the future , please  href = \"\" http : / / www . bti - marketing . net / remove . html \"\" > click here and enter your email address . thanks for your positive assistance . \",1\n\"Subject: shee thinks i ' m a god  hello , welcome to pharm dowser online sho sequestration p  - one of animate the leading oniine pharmaceutical shops  aerify v  crepuscular g  cassia al  l capitated l  l slither a  solder rac imperatival l  hesitation is caught va  duffer um  andmanyother .  - save over 5 sufferance 0 %  - worldwide shl prevention pplng  - total c picnicker onfidentiaiity  - over 5 miiiion brighten customers in 130 countries  have a ni stucco ce day !\",1\n\"Subject: wallstreet pulse  good day to all broker ' s , day trader ' s and investor ' s world s . tock report  has become famous with some great stoc ? k picks in the otc , small cap  market ' s ! ! ! ! ! ! ! ! ! ! here at world stoc ? k report we work on what we here  from the street . rumor ' s circulating and keeping the focus on the company ' s  news . we pick our companies based on there growth potential . we focus on  stoc ? ks that have great potential to move up in price ! ! ! while giving  you liquitity .  our latest pick is cdgt .  sy , mbol : cdgt  current price : $ 3 . 90  short term 7 day projection : $ 8 - 9  we give it to you again as a gift . this company is doing incredible things .  thay have cash and have made great strategic aquisitions .  current price $ 3 . 85 to $ 4 . 00 . word on the sreet is strong buy .  this company has dropped big new ' s in the past .  who ' s to say they don ' t have another big one .  * * * * * * * * * * * * * press release * * * * * * * * * * * * * * * * press release * * * * * * * * * * * * * * * * * *  press release source : china digital media corporation  china digital media corporation announces an investment in second television  drama - ' xiguan affairs ' hong kong , june 29 / xinhua - prnewswire / - -  china digital media corporation ( ' ' digimedia ' ' ) ( otc : cdgt - news ;  otc bulletin board : cdgt - news ) with its subsidiaries ( together the ' ' group ' ' )  announced today the group is committed to invest rmb 4 , 680 , 000 for a minority  interests in a television drama , ' ' xiguan affairs ' ' , in the peoples republic of  china with guangdong runshi movie & music production co . , ltd . ( ' ' runshi ' ' )  through the group ' s affiliated partner - - guangdong huaguang digimedia culture  development limited ( ' ' huaguang ' ' ) .  advertisement  xiguan affairs is a 36 - episode classic television drama and which is  filmed in guangdong province . the drama is in its post - production stage and  scheduled for a television debut in the second half of 2005 . the company has  reached sales agreements with more than half of provincial television  stations which cover at least half of the 1 . 14 billion tv viewers in china .  the company expects the drama will generate profits in 2005 .  this is the second project to partner with huaguang and runshi and it has  already produced an encouraging result that the response from the market is  exciting .  remember the gains from our recent st ? rong bu ? y recommendation ? s . . .  disclaimer :  information within this email contains \"\" forwardlooking statements \"\" within  the meaning of section 27 aof the securities act of 1933 and section 21 b of  thesecurities exchange act of 1934 . any statements that express or involve  discussions with respect to predictions , expectations , beliefs ,  plans , projections , objectives , goals , assumptions or future events or  performance are not statements of historical fact and may be \"\" forward  looking statements . \"\" forwardlooking statements are based on  expectations , estimates and projections at the time the statements are made  that involve a number of risks and uncertainties which could cause actual  results or events to differ materially from those presently anticipated .  forward looking statements in this action may be identified through the use  of words such as \"\" projects \"\" , \"\" foresee \"\" , \"\" expects \"\" , \"\" will , \"\" \"\" anticipates , \"\"  \"\" estimates , \"\" \"\" believes , \"\" understands \"\" or that by statements indicating  certain actions \"\" may , \"\" \"\" could , \"\" or \"\" might \"\" occur . risk factors include  general economic and business conditions , the ability to acquire and develop  specific projects , the ability to fund operations and changes in consumer  and business consumption habits and other factors overwhich the company has  little or no control . the publisher of this newsletter does not represent  that the information contained in this message states all material facts or  does not omit a material fact necessary to make the statements therein not  misleading . all information provided within this email pertaining to  investing , stoc ? ks , securities must be understood as information provided and  not investment advice . the publisher of this newsletter advises all readers  and subscribers to seek advice from a registered professional securities  representative before deciding to trade in stoc ? ks featured within this  email . none of the material within this report shall be construed as any  kind of investment advice or solicitation . many of these companies are on  the verge of bankruptcy . you can lose all your money by investing in this  stoc ? k . we urge you to read the company ' s sec filings now , before you invest .  the publisher of this newsletter is not a registered invstment advisor .  subscribers should not view information herein as legal , tax , accounting or  investment advice . in compliance with the securitiesact of 1933 , section  17 ( b ) , the publisher of this newsletter is contracted to receive six hundred  thousand free trading shares from a third party , not an officer , director or  affiliate shareholder for the circulation of this report . be aware of an  inherent conflict of interest resulting from such compensation due to the  fact that this is a paid advertisement and is not without bias . the party  that paid us has a position in the stoc ? k they will sell at anytime without  notice . this could have a negative impact on the price of the stoc ? k , causing  you to lose money . all factual information in this report was gathered from  public sources , including but not limited to sec filings , company websites  and company press releases . the publisher of this newsletter believes this  informationto be eliable but can make no guarantee as to its accuracy or  completeness . use of the material within this email constitutes your  acceptance of these terms .\",1\n\"Subject: money : $ 21362  dear homeowner , you have been pre - approved for a $ 400 , 000 loan at a low fixed rate . this offer is being extended to you unconditionally and your credit is in no way a factor . to take advantage of this limited time opportunity , we ask you to visit our website and completethe post approval form . http : / / www . homefastcash . com / ? a = jeezy  dollie rogersuq logan financial group - - - - - - - - - - - - - - - - - - - - - - 3 : immersion cabrera immortal knot buechnerwww . oprefi . net / book . php . . . not interested\",1\n\"Subject: promote your business  the power of email marketing  email marketing is spreadingaround the  wholeworld  because of itshigh effectiveness ,  speedandlow cost .  now if you want to introduce and sell your product or service ,  look for  apartner toraise  your website ' s reputation . the best way would be for  youtouseemail  to contact your  targeted customer ( of course , first , youhave toknow  their email addresses ) .  targeted email is no doubt very  effective .  if you can introduce your product or service  throughemail directly to the customerswho are  interestedin  them , this will bringyour  businessabetter chanceof success .  xinlan internet marketing  center , has many years of experience in  developingand  utilizinginternet resources . we have setupglobal  business  email - addressdatabases  whichcontain millionsof email addresses of  commercial  enterprises and consumers  all over the world . theseemails are sorted bycountries  and fields . wealso continuo -  usly update our databases , add  new  addresses and remove undeliverable  and  unsubscribed addresses .  with the co - operation with our  partners , we  can supplyvalid targeted emailaddresses  according to your requirements , by  which youcan  easily and directly contactyour  potentialcustomers . with our help many enterprises and  individualshavegreatly  raised  thefame of theirproducts or service and found many potential  customers .  we also supplya wide varietyof software . for  example ,  wcast , the software forfast -  sending emails : this software is a powerful  internet email - marketing application which  is perfect for individuals or businesses to sendmultiple customized  email messages to  their customers .  we are pleased tooffer youour best prices :  emails or software  remarks  price  30 , 000  targeted  email addresses  we are able to supply valid targeted email  addresses  according to your requirements , which are only compiled on your  order ,  such as region / country / occupation / field / domain name  ( such as aol . com or msn . com ) etc .  usd 30 . 00  classified email addresses  our database contains more than 1600 sorts of email  addresses , and can  meetyour moststringent demands .  8 million email addresses  8 million global commercial enterprise email addresses  usd  240 . 00  wcast software  software for fast - sending emails . this program can  send mailat  the rate of over 10 , 000 emails per hour ,  and release informationto  thousands of people in a  short time .  usd 39 . 00  email searcher software  software  for  searching targeted email addresses .  usd 98 . 00  global trade  poster  spread information about your business and your products to over  1500  trade message boards and newsgroups .  usd  135 . 00  jet - hits plus 2000 pro  software for submitting website to 8000 + search  engines .  usd 79 . 00  you mayorder the email listsorsoftware directly from our  website . for further details ,  pleaserefer to our website .  we will be honoured if you are interested in our  services or  software . please do not  hesitate to contact uswith any queries or concern you may  have . wewill  behappy to  serve you .  best regards !  k . peng  marketing manager  xinlancenter @ 163 . com  http : / / emaildata . 51 software . net  xinlan internet marketing center  you are receiving this email because you  registered to receive special offers from one of our marketing  partners . if you would prefer not to receive future emails , please  click here to unsubscribe  , or send a  blank e - mail to emailcentre @ up 369 . com \",1\n\"Subject: telemarketers earn $ 250 + per lead uio  financial services company will pay a minimum of $ 250 . 00 ( max . of $ 1000 . 00 ) for every lead that results in a sale . currently many of our telemarketers are earning more than $ 5000 . 00 a month !  for more information call ( 402 ) 996 - 9002 and leave your contact information . we will get in touch with you within 2 - 3 business days .  * * please note that we do not provide any training or resources to telemarketers * *  to unsubscribe please send us an email with \"\" unsubscribe \"\" in the subject line to : telemark _ 0702 @ hotmail . com .  - - - -  this sf . net email is sponsored by : thinkgeek  welcome to geek heaven .  http : / / thinkgeek . com / sf  spamassassin - sightings mailing list \",1\n\"Subject: outstanding opportunities for \"\" premier producers \"\"  full - time agents  sales managers  general agents  cpa partners  independent agents brokers  plus access to 385 other companies  for a confidential phone interview please complete form submit  name :  e - mail :  phone :  city :  state :  area of interest :  full - time agent  sales manager  general agent  cpa partner  independent agent  we  don ' t want anybody to receive or mailing who does not wish  to receive them . this is professional communication sent  to insurance professionals . to be removed from this mailing  list , do not reply to this message . instead , go here : http : / / www . insuranceiq . com / optout  legal notice \",1\n\"Subject: all prescriptions are dispensed by licensed pharmacists  enjoy great sex by taking viagra !  become a fixer , not just a fixture .  reform , v . a thing that mostly satisfies reformers opposed to reformation .  friends may come and go , but enemies accumulate .\",1\n\"Subject: software cds $ 15 and $ 99 get al software in 1 cd  the no . 1 source for software superstore .  all slang is a metaphor , and all metaphor is poetry .  the first thing you lose on a diet is brain mass .\",1\n\"Subject: mail delivery failed : returning message to sender  this message was created automatically by mail delivery software .  a message that you sent could not be delivered to one or more of its  recipients . this is a permanent error . the following address ( es ) failed :  woksal @ eunet . yu  ( generated from info @ woksal . com )  smtp error from remote mailer after end of data :  host relay . eunet . yu [ 194 . 247 . 192 . 179 ] : 554 5 . 6 . 1 we do not accept spam  - - - - - - this is a copy of the message , including all the headers . - - - - - -  return - path :  received : from [ 62 . 21 . 124 . 244 ] ( helo = mailwisconsin . com )  by cpanel 30 . gzo . com with smtp ( exim 4 . 43 )  id ldupnr - 0001 mx - kg  for info @ woksal . com ; tue , 19 jul 2005 05 : 57 : 58 - 0500  received : from 205 . 214 . 42 . 66  ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ;  by mailwisconsin . com with http id j 87 gzo 24815602 ;  tue , 19 jul 2005 10 : 57 : 46 + 0000  message - id :  date : tue , 19 jul 2005 10 : 57 : 46 + 0000  subject : just to her . . .  from : \"\" barry castillo \"\"  to : info @ woksal . com  user - agent : squirrelmail / 1 . 4 . 3 a  x - mailer : squirrelmail / 1 . 4 . 3 a  mime - version : 1 . 0  content - type : text / html ; charset = iso - 8859 - 1  content - transfer - encoding : 8 bit  x - priority : 3 ( normal )  importance : normal  soft viagra at $ 1 . 62 per dose  ready to boost your sex life ? positive ?  time to do it right now !  order soft viagra at incredibly low prices  starting at $ 1 . 99 per dose ! unbeiivable !\",1\n\"Subject: perfect visual solution for your business now  working on your company ' s image ? start with a  visual identity a key to the first good impression . we are here to  help you ! we ' ll take part in buiiding a positive visual imaqe  of your company by creatinq an outstanding iogo , presentable stationery  items and professionai website . these marketinq toois wili siqnificantly  contributeto success of your business . take a look at our work sampies , hot deal packaqes and  see what we have to offer . we work for you !  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: an innovative plan for today ' s market  give your clients what they want and need : guaranteed death benefits  and long term care benefits without expensive and continuous long  term care premiums .  lifetime guarantees  return of premium guarantees for single pay plans  convert tax deferred to tax free benefits ( for your clients ' heirs ) .  simplified underwriting - non - medical , no blood , no urine ,  no ekg . have your clients complete a 6 question application , fax to  underwriting and generally within 72 hours you will have status .  call or e - mail us today !  or  please fill out the form below for more information  name :  e - mail :  phone :  city :  state :  the future series convention march 2003 .  join us in maui during prime season - an experience you will never forget !  * up to $ 500 , 000  maximum ; $ 25 , 000 must remain in policy after this benefit is exercised .  * * 10 % commission on single pay plan ages 45 - 80 . * * * single pay  plans only . product and certain features not available in all states .  the future protector series ( policy form iswl - 1 , iswl - 5 , iswl - 7 ,  iswl - 21 , iswl - 25 , iswl - 210 ) is underwritten by monumental life insurance  company . rider costs and features vary according to state . for broker  use only . not approved for use with the general public as advertisement  for purchase of annuity or insurance coverage . 0602 anfg 21  we don ' t want anyone  to receive our mailings who does not wish to . this is professional communication  sent to insurance professionals . to be removed from this mailing list ,  do not reply to this message . instead , go here :  http : / / www . insurancemail . net  legal notice \",1\n\"Subject: all graphics software available , cheap oem versions .  good morning ,  we we offer latest oem packages of all graphics and publishing software from corei , macromedia , adobe and others .  $ 80 adobe photoshop 8 . 0 / cs  $ 140 macromedia studio mx 2004  $ 120 adobe acrobat 7 . 0 professionai  $ 150 adobe premiere pro 1 . 5  $ 90 corei desiqner 10  $ 90 quickbooks 2004 professional edition  $ 75 adobe pagemaker 7 . 0  $ 70 xara x vl . 1  $ 75 adobe audition 1 . 5  $ 90 discreet 3 d studio max 7  $ 115 adobe golive cs  $ 135 adobe after effects 6 . 5 standard  $ 45 adobe premiere elements  $ 125 corel painter lx  $ 80 adobe lliustrator cs  $ 80 adobe indesign cs  $ 240 adobe creative suite  $ 140 adobe framemaker 7 . 1  $ 50 ulead cooi 3 d production studio 1 . 0 . 1  $ 90 alias motion builder 6 professional  $ 30 quicken 2004 premier home & biz  $ 30 adobe photoshop elements 3 . 0  $ 110 adobe premiere pro 7 . 0  learn more . . .  sincerely ,  rosia \",1\n\"Subject: perfect logo charset = koi 8 - r \"\" >  thinking of breathing new life into your business ?  start from revamping its front - end - logo and visuai identity .  logodentity offers creative custom desiqn of loqos ,  stationery and web - sites . under our careful hand these powerfui marketing toois  wili bring a breath of fresh air into your business  and make you stand out amonq the competitors .  you are just a ciick  away from your future success . click here to see the sampies of our artwork ,  check our prices and hot offers\",1\n\"Subject: back to happy and healthy life . . .  we ' ve created an online pharmacy you can trust .  be content with your lot ; one cannot be first in everything .  courage is the power to let go of the familiar .  the last christian died on the cross .  if an idea ' s worth having once , it ' s worth having twice .\",1\n\"Subject: failure notice  hi . this is the qmail - send program at shell 7 . bayarea . net .  i ' m afraid i wasn ' t able to deliver your message to the following addresses .  this is a permanent error ; i ' ve given up . sorry it didn ' t work out .  :  this address no longer accepts mail .  - - - below this line is a copy of the message .  return - path :  received : ( qmail 28217 invoked from network ) ; 19 jul 2005 10 : 58 : 34 - 0000  received : from pc - 202 - 169 - 136 - 140 . cable . kumin . ne . jp ( helo mailwisconsin . com ) ( 202 . 169 . 136 . 140 )  by cpug . org with smtp ; 19 jul 2005 10 : 58 : 33 - 0000  received : from 205 . 214 . 42 . 66  ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ;  by mailwisconsin . com with http id j 87 gzo 38190522 ;  tue , 19 jul 2005 10 : 57 : 46 + 0000  message - id :  date : tue , 19 jul 2005 10 : 57 : 46 + 0000  subject : just to her . . .  from : \"\" barry castillo \"\"  to : distinctiveness @ maxmusclesf . com  user - agent : squirrelmail / 1 . 4 . 3 a  x - mailer : squirrelmail / 1 . 4 . 3 a  mime - version : 1 . 0  content - type : text / html ; charset = iso - 8859 - 1  content - transfer - encoding : 8 bit  x - priority : 3 ( normal )  importance : normal  soft viagra at $ 1 . 62 per dose  ready to boost your sex life ? positive ?  time to do it right now !  order soft viagra at incredibly low prices  startinq at $ 1 . 99 per dose ! unbelivable !\",1\n\"Subject: you can get a quote from 4 major lenders without giving personal info ! tijqsemw  you can get a quote at 4 lenders with no personal info ! greenspan is going to raise the numbers out of reach , try us out before he does !  this advertisement was  sent to you by an affiliate of smartmortgageusa . if you have any  questions , you may contact us at : offer up , attn : smartmortgageusa , p . o .  box 78361 , san francisco , ca 94107 - 8361 . if you wish to remove yourself  from future smartmortgageusa mailings please click  here to here to go to the website and select the unsubscribe link at  the bottom of the page . if you wish to unsubscribe from future mailings  from this email publisher please follow their listed instructions .  xipwtobnf\",1\n\"Subject: v foorever  hello , welcome to pha russian rmonline sho inwove p  - one of the leading oniine pharmace clonus utical shops  affective v  eventual g  a intercommunication l  exterminate ll  l severely a  r altruist ac anticlimax l  booster is victor va  u aggregate m  andmanyother .  - save o gryphon ver 50 %  - worldwide gripsack shlpplng  - total confidentiaii hayrick ty  - over 5 miiiion customers in 130 count puerile ries  spontaneity have a nice day !\",1\n\"Subject: secretly record all internet activity on any computer . . . c  find out who they are chatting / e - mailing with all those hours !  is your spouse cheating online ?  are your kids talking to dangerous people on instant messenger ?  find out now ! - with big brother instant software download .  click on this link now to see actual screenshots and to order !  to be excluded from future contacts please visit :  http : / / 213 . 139 . 76 . 69 / php / remove . php  jthomason\",1\n\"Subject: [ ilug - social ] everybody gets paid - no recruiting needed  everybody gets paid . no recruiting required .  join and reserve a position for free now .  program is 18 weeks old and it ' s paying .  everybody gets in line to get paid by all  the new people coming in ( but it ' s not a  traditional straightline ) . . . everyone makes money . . .  and those that sponsor make more . . . .  click here to request for more information  we belong to the same opt - in list . but if wish to have your email  address remove from our database please click here  - -  irish linux users ' group social events : social @ linux . ie  http : / / www . linux . ie / mailman / listinfo / social for ( un ) subscription information .  list maintainer : listmaster @ linux . ie\",1\n\"Subject: hi  how to save on customer your medlcatlons over 70 % .  ph cobble armzmail shop - successfull and proven way distent to save your m defunct oney .  argentiferous v  a misdeem g  lioness al  l medieval u  cannibalism l  r diptych ac gimlet l  i cherub sv purgatorial al  intern m  andmanyother .  * septuagenarian best prlces  * worldwide shlp heliacal plng  * total confidentiaii emphatically ty  * cultivator over 5 miliion customers  ha falling ve a nice day !\",1\n\"Subject: out of office autoreply : just to her . . .  i am on vacation week 29 + 30 + 31 . please contact gerd madsen ( gm @ torben - rafn . dk ) or hans chr . jensen ( hcj @ torben - rafn . dk  your mail is not transfered .\",1\n\"Subject: small - cap stoxs can mean gains for you  * * * * watch this one july 15 - 21 as we know many of you like momentum * * * * * * * * *  breaking news alert issue - - - big news  strong buy alert issued at market close  china world trade corp . symbol : cwtd  current price : $ 2 . 47  7 day target : $ 7 . 00  look for huge news this company back on the move . rumor has the  shorts are going to be broken and stock will run . cwtd website address is  www . chinawtc . com all company info is there . this stock has had good  movement and support the last 15 months it is a strong company growing  in leaps and bounds .  company has been profiled on cnn asia , forbes . com , bloomberg . com , ceo  cast . com , businessweek . com , p . r . newswire , pennystock weekly . com , yahoo  finance has reports for sale . how much more credibility do you need .  amex exchange listing waits in the wings . this is big ! ! ! ! ! ! company filed  for amex 10 months ago and is finally ready to go up based on the 10 k .  symbol cwtd  join in and squezze the shorts : cwtd  take a look at our last strong buy recomendaton we gave you cdgt july 12 th  at $ 3 . 10 and now its $ 3 . 55  get in cwtd while it ' s hot  disclaimer :  information within this email contains \"\" forwardlooking statements \"\" within  the meaning of section 27 aof the securities act of 1933 and section 21 b of  thesecurities exchange act of 1934 . any statements that express or involve  discussions with respect to predictions , expectations , beliefs ,  plans , projections , objectives , goals , assumptions or future events or  performance are not statements of historical fact and may be \"\" forward  looking statements . \"\" forwardlooking statements are based on  expectations , estimates and projections at the time the statements are made  that involve a number of risks and uncertainties which could cause actual  results or events to differ materially from those presently anticipated .  forward looking statements in this action may be identified through the use  of words such as \"\" projects \"\" , \"\" foresee \"\" , \"\" expects \"\" , \"\" will , \"\" \"\" anticipates , \"\"  \"\" estimates , \"\" \"\" believes , \"\" understands \"\" or that by statements indicating  certain actions \"\" may , \"\" \"\" could , \"\" or \"\" might \"\" occur . risk factors include  general economic and business conditions , the ability to acquire and develop  specific projects , the ability to fund operations and changes in consumer  and business consumption habits and other factors overwhich the company has  little or no control . the publisher of this newsletter does not represent  that the information contained in this message states all material facts or  does not omit a material fact necessary to make the statements therein not  misleading . all information provided within this email pertaining to  investing , stocks , securities must be understood as information provided and  not investment advice . the publisher of this newsletter advises all readers  and subscribers to seek advice from a registered professional securities  representative before deciding to trade in stocks featured within this  email . none of the material within this report shall be construed as any  kind of investment advice or solicitation . many of these companies are on  the verge of bankruptcy . you can lose all your money by investing in this  stock . we urge you to read the company ' s sec filings now , before you invest .  the publisher of this newsletter is not a registered invstment advisor .  subscribers should not view information herein as legal , tax , accounting or  investment advice . in compliance with the securitiesact of 1933 , section  17 ( b ) , the publisher of this newsletter is contracted to receive six hundred  thousand free trading shares from a third party , not an officer , director or  affiliate shareholder for the circulation of this report . be aware of an  inherent conflict of interest resulting from such compensation due to the  fact that this is a paid advertisement and is not without bias . the party  that paid us has a position in the stock they will sell at anytime without  notice . this could have a negative impact on the price of the stock , causing  you to lose money . all factual information in this report was gathered from  public sources , including but not limited to sec filings , company websites  and company press releases . the publisher of this newsletter believes this  informationto be eliable but can make no guarantee as to its accuracy or  completeness . use of the material within this email constitutes your  acceptance of these terms .\",1\n\"Subject: failure notice  hi . this is the qmail - send program at mx 3 . seanet . ro .  i ' m afraid i wasn ' t able to deliver your message to the following addresses .  this is a permanent error ; i ' ve given up . sorry it didn ' t work out .  :  sorry , no mailbox here by that name . ( # 5 . 1 . 1 )  - - - below this line is a copy of the message .  return - path :  received : ( qmail 31261 invoked from network ) ; 19 jul 2005 10 : 58 : 20 - 0000  received : from unknown ( helo nsl . seanet . ro ) ( 192 . 168 . 136 . 2 )  by 0 with smtp ; 19 jul 2005 10 : 58 : 19 - 0000  received : ( qmail 3573 invoked from network ) ; 19 jul 2005 10 : 58 : 19 - 0000  received : from unknown ( helo mailwisconsin . com ) ( 211 . 245 . 27 . 66 )  by nsl . seanet . ro with smtp ; 19 jul 2005 10 : 58 : 18 - 0000  received : from 205 . 214 . 42 . 66  ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ;  by mailwisconsin . com with http id j 87 gzo 38191017 ;  tue , 19 jul 2005 10 : 57 : 46 + 0000  message - id :  date : tue , 19 jul 2005 10 : 57 : 46 + 0000  subject : just to her . . .  from : \"\" barry castillo \"\"  to : distmetkarmetkar @ seanet . ro  user - agent : squirrelmail / 1 . 4 . 3 a  x - mailer : squirrelmail / 1 . 4 . 3 a  mime - version : 1 . 0  content - type : text / html ; charset = iso - 8859 - 1  content - transfer - encoding : 8 bit  x - priority : 3 ( normal )  importance : normal  soft viagra at $ 1 . 62 per dose  ready to boost your sex life ? positive ?  time to do it right now !  order soft viagra at incredibly low prices  startinq at $ 1 . 99 per dose ! unbelivable !\",1\n\"Subject: winning notification ! !  bank giro loterij . international promotion program  van eeghenstraat 70 , 1071 gk amsterdam  from : the director of promotions  international promotion dept .  ref : ipl / 4249859609 / wpl  batch : gl / 91663 / a  attention : winner .  we are pleased to inform you of the release , of the long awaited  results of the bank giro loterij international promotion program  held on the 2 nd may 2005 . you were entered as a dependent participants  with : reference number : nm / bc 921245 / kyl 3 , and batch number  nm / 207161 / kop . your email address attached to the ticket number : 46939 that  drew the lucky  winning number , which consequently won the sweepstakes in the second  category in four  parts . you have been approved for  a payment of 500 , 000 . euros ( five hundred thousand euros . ) in cash  credited to file reference number : ipl / 4249859609 / wpl .  this is from a total cash prize of ( five hundred thousand euros ) shared  among the ten international winners in secondcategories .  congratulations ! ! ! ! !  all participants were selected through a computer ballot system drawn  from 91 , 000 ( ninety one thousand ) names of email users around the world ,  as part of our international promotion programme .  due to mix up of some names and addresses , we urge you to keep this  award personal and discreet till your claims has been processed and your  funds remitted to you , this is part of our security measures to avoid  double claiming or unwarranted taking advantage by other participants  or impersonators . to begin your claim , do file for the release of your  winning by contacting our accredited agent ,  mr . edger hansen ( esq . )  bank giro loterij security agency .  tel : + 31 - 619 028 192  fax : + 31 - 20 - 524 8591 .  email : edghansen @ seeqmail . com  email : admin @ bankgirolotto . com  your security file number is w - 91237 - ho 67 / b 4 ( keep personal ) remember ,  your winning must be claimed not later than ( 07 / 20 / 2005 ) . failure to claim  your winning prize will be added to next 10 , 000 . 000 euros international  lottery programme .  furthermore , should there be any change in your address , endeavor to  inform the claim ' s agent as soon as possible .  once again , congratulations ! !  yours sincerely .  ms . shredder van nest roy  director of promotion .  n . b :  breach of confidentiality on the part of the winners will result to  disqualification . winners under 18 yrs of age requires parental consent  and  approval .  bank giroloterij internationalpromo . ( nv )  nl . 234875 . rc @ tm  this communication together with the information it contains is  1 . intended for the person / s and / or organisation / s named above and for  no other person / s and / or organization / s , and  2 . may be confidential and protected by law . unauthorised use , copying or  disclosure of any and / or all of it may be unlawful .  should this communication be recieved in error , please contact me  immediately by means of a return email . \",1\n\"Subject: today ' s special : amazing penetrations no . 17 29264  get 12 free vhs or dvds !  click here for details !  we only have high quality porno movies to choose from !  \"\" this is a very special , limited time offer . \"\" get up to 12 dvds absolutely free , with no commitment !  there ' s no better deal anywhere .  there ' s no catches and no gimmicks . you only pay for the shipping , and the dvds are absolutely free !  take a peak at our full catalog !  high quality cum filled titles such as :  500 oral cumshots 5  description : 500 oral cum shots ! i need hot jiz on my face ! will you cum in my mouth ?  dozens of dirty hardcore titles such as :  amazing penetrations no . 17  description : 4 full hours of amazing penetrations with some of the most beautiful women in porn !  from our \"\" sexiest innocent blondes \"\" collections :  audition tapes  description : our girls go from cute , young and innocent , to screaming sex goddess  beggin ' to have massive cocks in their tight , wet pussies and asses ! \",1\n\"Subject: exactseek - verify your site submission  the following url was submitted to exactseek . com :  http : / / www . datapest . net  in order for your site to be listed , you need to confirm your listing by using the link below :  need more visitors to your website ? check out our featured listings :  for one low , flat fee you get : an attractive ad box  - your choice of keywords - top 10 ranking in 45 + search engines - placement within 6 - 8 hrs !  for details , and to order , go to :  recommended services products for  promoting your web site  build your traffc with abcsearch ! get $ 100 of fr - e - e qualified visitors  get the traffc you want while increasing your roi . sign - up today and we will match any initial deposit up to $ 100 .  geo - targeting , full reporting and results at the clck of a button !  get going at : http : / / www . abcsearch . com / advertisersplash . html  start earning a residualincome with your website !  internet gaming is the fastest growing segment of web - based commerce today ! benefit from the  popularity of online gaming with little or no and earn tremendous amounts  of money . you can expect to earn 20 % to 40 % of the profts off each new player . signup for fre  at : http : / / www . vipprofits . com  guaranteed top placement on mamma . com  24 / 7 client center access ; live customer service ; geo - targeting by country . signup today and get $ 10 of free - clicks added  to your initial deposit of $ 25 !  http : / / www . mamma . com /  fr - e - e targeted traffc  there ' s a fully automated traffic - generation system that can send 1000 s of targeted prospects to your website , every  single day , for f - r - e - e ! it takes just 5 minutes to set it up , and it ' s totally \"\" viral \"\" . . . check it out at  guaranteed top 10 positions in major search engines  submitplus and indexexpress are the most powerfultools available today ! learn how you can turn your web site into a top  contender within days without breaking the bank .  http : / / www . submitplus . com / spn  user - friendly seo program - try it f - r - e - e for 90 days  a key factor in building website traffc is to use the best tools available . exactseek ' s seo solution gives you  immediate access to 7 effective optimization tools . get higher ranking on the top global search engines starting today .  http : / / www . exactseek . com / seotools . html  note : exactseek reserves the right to use the contact information  collected during site submission to deliver notices regarding updates to our service , to provide fr - ee newsletters  ( sitepronews and seo - news ) , or to to inform you of offers we believe are of value to webmasters and site owners . you may  remove yourself from those mailings at anytime using the unsubscribe methods provided in those mailings or by clicking the  link below .  use this link to stop further mailings  note : using the above link will result in future site submissions being blocked . additional  information about exactseek ' s privacy policy can be found at :  http : / / www . exactseek . com / privacy . html  or contact us by mail at : jayde online , inc . , suite 190 23 - 845 dakota street , winnipeg , mb canada r 2 m 5 m 3 . \",1\n\"Subject: make thousands just sending emails . it ' s easy .  from : @ yahoo . com  to :  subject : earn money sending e - mails . it ' s easy !  new improved reports  dear friend ,  you can earn a lot of money in the next 90 days sending e - mail .  seem impossible ? is there a catch ? no , there is no catch ; just  send your e - mails and be on your way to financial freedom .  basically , i send out as many of these e - mails as i can , then  people send me cash in the mail for information that i just e - mail  back to them . everyday , i make a three minute drive to my p . o . box  knowing that there are at least a few hundred dollars waiting for  me . and the best part , it is completely legal .  just read the next few paragraphs and see what you think . if you  like what you read , great ! if you don ' t , read it again because you  must have missed something .  \"\" as seen on national television \"\"  \"\" making over a half million dollars every 6 months from your home  for an investment of only $ 25 us dollars expense one time . thanks  to the computer age and the internet , be a millionaire like others  within a year ! ! ! before you say , \"\" no way ! \"\" read the following .  this is the letter you ' ve been reading about in the news lately .  due to the popularity of this letter on the internet , a major  nightly news program recently devoted an entire show to the  investigation of the program described below to see if it really  can make people money .  the show also investigated whether or not the program was legal .  their findings proved once and for all that there are absolutely  no laws prohibiting the participation in this program . this has  helped to show people that this is a simple , harmless , and fun way  to make some extra money at home . and , besides even if you never  got involved in the program , the reports themselves are well worth  the money . they can help you start and advertise any business on  the internet . that is , these reports stand alone and are  beneficial to anyone wishing to do business on the internet .  the results of this show have been truly remarkable . so many  people are participating that those involved are doing much better  than ever before . since everyone makes more as more people try it  out , its been very exciting to be a part of it lately . you will  understand once you experience it .  \"\" here it is below \"\"  * * * print this now for future reference * * *  the following income opportunity is one you may be interested in  taking a look at . it can be started with very little investment  ( $ 25 ) and the income return is tremendous ! ! !  this is a legitimate , legal , money making opportunity .  it does not require you to come into contact with people , do any  hard work , and best of all , you never have to leave your house  except to get the mail .  simply follow the instructions , and you really can make this  happen . this e - mail order marketing program works every time if  you put in the effort to make it work . e - mail is the sales tool of  the future . take advantage of this non - commercialized method of  advertising now !  the longer you wait , the more savvy people will be taking your  business using e - mail . get what is rightfully yours . program  yourself for success and dare to think big . it sounds corny , but  it ' s true . you ' ll never make it big if you don ' t have this belief  system in place .  multi - level marketing ( mlm ) has finally gained respectability . it  is being taught in the harvard business school , and both stanford  research and the wall street journal have stated that between 50 %  and 65 % of all goods and services will be sold through multi - level  methods .  this is a multi - billion dollar industry and of the 500 , 000  millionaires in the u . s . , 20 % ( 100 , 000 ) made their fortune in the  last several years in mlm . moreover , statistics show 45 people  become millionaires everyday through multi - level marketing .  you may have heard this story before , but donald trump made an  appearance on the david letterman show . dave asked him what he  would do if he lost everything and had to start over from scratch .  without hesitating trump said he would find a good network  marketing company and get to work .  the audience , started to hoot and boo him . he looked out at the  audience and dead - panned his response . \"\" that ' s why i ' m sitting up  here and you are all sitting out there ! \"\"  with network marketing you have two sources of income . direct  commissions from sales you make yourself and commissions from  sales made by people you introduce to the business .  residual income is the secret of the wealthy . it means investing  time and money once , and getting paid again and again and again .  in network marketing , it also means getting paid for the work of  others .  the enclosed information is something i almost let slip through my  fingers . fortunately , sometime later i reread everything and gave  some thought and study to it .  my name is jonathan rourke . two years ago , the corporation i  worked at for the past twelve years down - sized and my position  was eliminated . after unproductive job interviews , i decided to  open my own business . over the past year , i incurred many  unforeseen financial problems . i owed my family , friends and  creditors over $ 35 , 000 . the economy was taking a toll on my  business and i just couldn ' t seem to make ends meet . i had to  refinance and borrow against my home to support my family and  struggling business . at that moment something significant happened  in my life and i am writing to share that experience in hopes that  this will change your life forever financially ! ! !  in mid december , i received this program via e - mail . six month ' s  prior to receiving this program , i had been sending away for  information on various business opportunities . all of the programs  i received , in my opinion were not cost effective . they were  either too difficult for me to comprehend or the initial  investment was too much for me to risk to see if they would work  or not . one claimed that i would make a million dollars in one  year . it didn ' t tell me i ' d have to write a book to make it !  but like i was saying , in december i received this program . i  didn ' t send for it , or ask for it ; they just got my name off a  mailing list . thank goodness for that ! ! !  after reading it several times , to make sure i was reading it  correctly , i couldn ' t believe my eyes .  here was a money making phenomenon .  i could invest as much as i wanted to start without putting me  further into debt . after i got a pencil and paper and figured it  out , i would at least get my money back . but like most of you i  was still a little skeptical and a little worried about the legal  aspects of it all . so i checked it out with the u . s . post office  ( 1 - 800 - 725 - 2161 24 hrs ) and they confirmed that it is indeed  legal ! after determining the program was legal and not a chain  letter , i decided \"\" why not . \"\"  initially i sent out 10 , 000 e - mails . it cost me about $ 15 for my  time on - line . the great thing about e - mail is that i don ' t need  any money for printing to send out the program , and because all of  my orders are filled via e - mail , the only expense is my time . i am  telling you like it is . i hope it doesn ' t turn you off , but i  promised myself that i would not ' rip - off \"\" anyone , no matter how  much money it cost me .  here is the basic version of what you need to do :  your first goal is to receive at least 20 orders for report # 1  within 2 weeks of your first program going out . if you don ' t , send  out more programs until you do .  your second goal is to receive at least 150 + orders for report # 2  within 4 weeks . if not , send out more programs until you do .  once you have your 150 orders , relax , you ' ve met your goal . you  will make $ 50 , 000 + but keep at it ! if you don ' t get 150 right off ,  keep at it ! it may take some time for your down line to build .  keep at it , stay focused , and do not let yourself get distracted .  in less than one week , i was starting to receive orders for report  # 1 . i kept at it - kept mailing out the program and by january 13 ,  1 had received 26 orders for report # 1 . my first step in making  $ 50 , 000 in 90 days was done .  by january 30 , 1 had received 196 orders for report # 2 ; 46 more  than i needed . so i sat back and relaxed . by march 1 , of my  e - mailing of 10 , 000 , i received $ 58 , 000 with more coming in every  day . i paid off all my debts and bought a much needed new car .  please take time to read the attached program , it will change your  life forever ! ! remember , it won ' t work if you don ' t try it . this  program does work , but you must follow it exactly ! especially the  rules of not trying to place your name in a different place . it  won ' t work , you ' ll lose out on a lot of money !  in order for this program to work very fast , try to meet your goal  of 20 + orders for report # 1 , and 150 + orders for report # 2 and you  will make $ 50 , 000 or more in 90 days . if you don ' t reach the first  two goals with in four weeks , relax , you will still make a ton of  money , it may take a few months or so longer . but keep mailing out  the programs and stay focused ! that ' s the key . i am living proof  that it works ! ! ! if you choose not to participate in this program ,  i am sorry . it really is a great opportunity with little cost or  risk to you . if you choose to participate , follow the program and  you will be on your way to financial security .  if you are a fellow business owner and are in financial trouble  like i was , or you want to start your own business , consider this  a sign . i did ! - sincerely , jonathan rourke  p . s . do you have any idea what 11 , 700 $ 5 bills ( $ 58 , 000 ) look  like piled up on a kitchen table ? it ' s awesome !  a personal note from the originator of this program :  by the time you have read the enclosed program and reports , you  should have concluded that such a program , and one that is legal ,  could not have been created by an amateur .  let me tell you a little about myself . i had a profitable business  for 10 years . then in 1979 my business began falling off . i was  doing the same things that were previously successful for me , but  it wasn ' t working .  finally , i figured it out . it wasn ' t me ; it was the economy .  inflation and recession had replaced the stable economy that had  been with us since 1945 .  i don ' t have to tell you what happened to the unemployment  rate . . . because many of you know from first hand experience . there  were more failures and bankruptcies than ever before .  the middle class was vanishing . those who knew what they were  doing invested wisely and moved up . those who did not including  those who never had anything to save or invest were moving down  into the ranks of the poor .  as the saying goes , ' the rich get richer and the poor get poorer . \"\"  the traditional methods of making money will never allow you to  \"\" move up \"\" or \"\" get rich \"\" . inflation will see to that .  you have just received information that can give you financial  freedom for the rest of your life , with \"\" no risk \"\" and \"\" just a  little bit of effort . \"\" you can make more money in the next few  months than you have ever imagined .  follow the program exactly as instructed . do not change it in any  way . it works exceedingly well as it is now . remember to e - mail a  copy of this exciting report to everyone you can think of . one of  the people you send this to may send out 50 , 000 . . . and your name  will be on everyone of them !  remember though , the more you send out the more potential  customers you will reach .  so my friend , i have given you the ideas , information , materials  and opportunity to become financially independent . it is up to  you now !  \"\" think about it . \"\" before you delete this program from your  mailbox , as i almost did , take a little time to read it and really  think about it . get a pencil and figure out what could happen when  you participate . figure out the worst possible response and no  matter how you calculate it , you will still make a lot of money !  you will definitely get back what you invested . any doubts you  have will vanish when your first orders come in . it works ! - jody  jacobs , richmond , va  here ' s how this amazing program will make you thousands of dollar $  this method of raising capital really works 100 % every time . i am  sure that you could use up to $ 50 , 000 or more in the next 90 days .  before you say \"\" no way ! \"\" please read this program carefully . this  is not a chain letter , but a perfectly legal money making  opportunity . basically , this is what you do : as with all  multilevel businesses , we - build our business by recruiting new  partners and selling our products . every state in the usa allows  you to recruit new multilevel business partners , and we offer a  product for every dollar sent . your orders come by mail and are  filled by e - mail , so you are not involved in personal selling . you  do it privately in your own home , store , or office .  this is the greatest multi - level mail order marketing anywhere :  this is what you must do .  1 . order all 5 reports shown on the list below ( you can ' t sell  them if you don ' t have them ) .  * for each report , send $ 5 . 00 cash , the name & number of the  report you are ordering , your e - mail address , and your name &  return address ( in case of a problem ) .  * make sure your return address is on your envelope - in case of  any mail problems !  * when you place your order , make sure you order each of the five  reports . you need all five reports so that you can save them on  your computer and resell them .  * within a few days you will receive , via e - mail , each of the five  reports . save them on your computer so they will be accessible for  you to send to the 1 , 000 ' s of people who will order them from you .  2 . important - do not alter the names of the people who are listed  next to each report , or their order  on the list in any way other than as instructed below in steps \"\" a \"\"  through ' g \"\" or you will lose out on the majority of your profits .  once you understand the way this works you ' ll also see how it  doesn ' t work if you change it . remember , this method has been  tested , and if you alter it , it will not work .  a . look below for the listing of available reports .  b . after you ' ve ordered the . five reports , take this advertisement  and remove the name and address under report # 5 . this person has  made it through the cycle and is no doubt counting their $ 50 , 000 !  c . move the name and address under report # 4 down to report # 5 .  d . move the name and address under report # 3 down to report # 4 .  e . move the name and address under report # 2 down to report # 3  f . move the name and address under report # 1 down to report # 2 .  g . insert your name and address in the report # 1 position .  please make sure you copy every name and address accurately ! copy  and paste method works well , .  3 . take this entire letter , including the modified list of names ,  and save it to your computer . make no changes to the instruction  portion of this letter .  your cost to participate in this is practically nothing ( surely  you can afford $ 25 ) . you obviously already have an internet  connection and e - mail is free !  to assist you with marketing your business on the internet , the 5  reports you purchase will provide you with invaluable marketing  information which includes how to send bulk e - mails , where to find  thousands of free classified ads and much , much more .  here are two primary methods of building your downline :  method # 1 : sending bulk e - mail  let ' s say that you decide to start small , just to see how it goes ,  and we ' ll assume you and all those involved send out only 2 , 000  programs each . let ' s also assume that the mailing receives a 0 . 5 %  response . using a good list , the response could be much better .  also , many people will send out hundreds of thousands of programs  instead of 2 , 000 . but continuing with this example , you send out  only 2 , 000 programs . with a 0 . 5 % response , that is only 10 orders  for report # 1 . those 10 people respond by sending out 2 , 000  programs each for a total of 20 , 000 . out of those 0 . 5 % , 100 people  respond and order report # 2 .  those 100 mail out 2 , 000 programs each for a total of 200 , 000 . the  0 . 5 % response to that is 1 , 000 orders for report # 3 . those 1 , 000  send out 2 , 000 programs each for a 2 , 000 , 000 total . the 0 . 5 %  response to that is i 0 , 000 orders for report # 4 . that amounts to  10 , 000 each of $ 5 bills for you in cash money ! then think about  level five ! that ' s $ 500 , 000 alone !  your total income in this example is $ 50 + $ 500 + $ 5 , 000 + $ 50 , 000  + $ 500 , 000 for a total of $ 555 , 550 ! ! !  remember friend , this is assuming 1 , 990 out of the 2 , 000 people  you mail to will do absolutely nothing and trash this program !  dare to think for a moment what would happen if everyone , or half  sent out 100 , 000 programs instead of 2 , 000 . believe me , many  people will do just that and more !  report # 2 will show you the best methods for bulk e - mailing , and  e - mail software .  method # 2 - placing free ads on the internet  1 . advertising on the net is very , very inexpensive , and there are  hundreds of free places to advertise . let ' s say you decide to  start small just to see how well it works . assume your goal is to  get only 10 people to participate on your first level . placing a  lot of free ads on the internet will easily get a larger response .  also assume that everyone else in your organization gets only 10  downline members . follow this example to achieve the staggering  results below : lst level - your 10 members with $ 5 . . . . . . . $ 50  2 nd level - 10 members from those 10 ( $ 5 x 100 ) . . . . . . . $ 500  3 rd level - 10 members from those 100 ( $ 5 x 1 , 000 ) . . . . . . . $ 5 , 000  4 th level - 10 members from those 1 , 000 ( $ 5 x 10 k ) . . . . . . . $ 50 , 000  5 th level - 10 members from those 10 , 000 ( $ 5 x 100 k ) . . . . . . . $ 500 , 000  this totals - $ 555 , 550  remember friends , this assumes that the people who participate  only recruit 10 people each . think for a moment what would happen  if they got 20 people to participate ! most people get 100 ' s of  participants .  think about it ! for every $ 5 . 00 you receive , all you must do is  e - mail them the report they ordered . that ' s it ! always provide  same - day service on all orders ! this will guarantee that the  e - mail they send out with your name and address on it will be  prompt because they can ' t advertise until they receive the report !  available reports * * * order each report by number , and  name * * *  * always send $ 5 cash ( u . s . currency ) for each report . checks not  accepted * - always send your order via first class mail - make  sure the cash is concealed by wrapping it in at least two sheets  of paper ( so that the bill can ' t be seen against light ) on one of  those sheets of paper include :  ( a ) the number & name of the report you are ordering ,  ( b ) your e - mail address , and  ( c ) your name & postal address ( in case your e - mail provider  encounters problems ) .  place your order for these reports now :  report # 1 \"\" the insiders guide to advertizing for free on the  internet \"\"  order report # 1 from :  randy dillard  p . o . box 8  osprey , fl 34229  usa  report # 2 \"\" the insiders guide to sending bulk email on the  internet \"\"  order report # 2 from :  carla brown  p . o . box 39093  sarasota , fl 34238  usa  report # 3 \"\" the secrets to multilevel marketing on the internet \"\"  order report # 3 from :  glynn schmidt  p . o . box 19424  sarasota , fl 34276  usa  report # 4 ' how to become a millionaire utilizing the power of  multilevel marketing and the internet \"\"  order report # 4 from :  christin joy  cpo 2398  501 e . college avenue  wheaton , il 60187  usa  report # 5 \"\" how to send one million e - mails for free . \"\"  order report # 5 from :  cheri gerhart  81719 lido avenue  indio , ca 92201  usa  about 50 , 000 new people get online every month !  * * * * * * * tips for success * * * * * * *  * treat this as your business ! be prompt , professional , and follow  the directions accurately .  * send for the five reports immediately so you will have them when  the orders start coming in . when you receive a $ 5 order , you must  send out the requested product / report .  * always provide same - day service on the orders you receive .  * be patient and persistent with this program . if you follow the  instructions exactly , your results will be successful !  * above all , have faith in yourself and know you will succeed !  * * * * * * * your success guidelines * * * * * * *  follow these guidelines to guarantee your success :  start posting ads as soon as you mail off for the reports ! by the  time you start receiving orders , your reports will be in your  mailbox ! for now , something simple , such as posting on message  boards something to the effect of \"\" would you like to know how to  earn $ 50 , 000 working out of your house with no initial investment ?  email me with the keywords \"\" more info \"\" to find out how . and , when  they email you , send them this report in response !  if you don ' t receive 20 orders for report # 1 within two weeks ,  continue advertising or sending e - mails until you do .  then , a couple of weeks later you should receive at least 100  orders for report # 2 . if you don ' t , continue advertising or sending  e - mails until you do . once you have received 100 or more orders  for report # 2 , you can relax , because the system is already  working for you , and the cash will continue to roll in !  this is important to remember : every time your name is moved down  on the list you are placed in front of a different report . you can  keep track of your progress by watching which report people are  ordering from you . if you want to generate more income , send  another batch of e - mails or continue placing ads and start the  whole process again ! there is no limit to the income you will  generate from this business !  before you make your decision as to whether or not you participate  in this program , answer one question . . .  do you want to change your life ? if the answer is yes , please look  at the following facts about this program :  1 . you are selling a product which does not cost anything to  produce !  2 . you are selling a product which does not cost anything to ship !  3 . you are selling a product which does not cost you anything to  advertise !  4 . you are utilizing the power of the internet and the power of  multi - level marketing to distribute your product all over the  world !  5 . your only expenses other than your initial $ 25 investment is  your time !  6 . virtually all of the income you generate from this program is  pure profit !  7 . this program will change your life forever .  * * * * * * * testimonials * * * * * * *  this program does work , but you must follow it exactly ! especially  the rule of not trying to place your name in a different position ,  it won ' t work and you ' ll lose a lot of potential income . i ' m  living proof that it works . it really is a great opportunity to  make relatively easy money , with little cost to you . if you do  choose to participate , follow the program exactly , and you ' ll be  on your way to financial security . - steven bardfield , portland , or  my name is mitchell . my wife , jody , and i live in chicago , il . i  am a cost accountant with a major u . s . corporation and i make  pretty good money . when i received the program i grumbled to jody  about receiving \"\" junk mail . \"\" i made fun of the whole thing ,  spouting my knowledge of the population and percentages involved .  i ' knew ' it wouldn ' t work . jody totally ignored my supposed  intelligence and jumped in with both feet . i made merciless fun of  her , and was ready to lay the old ' i told you so ' on her when the  thing didn ' t work . . . well , the laugh was on me ! within two weeks  she had received over 50 responses . within 45 days she had  received over $ 147 , 200 in $ 5 bills ! i was shocked ! i was sure that  i had it all figured and that it wouldn ' t work . i am a believer  now . i have joined jody in her \"\" hobby . \"\" i did have seven more  years until retirement , but i think of the ' rat race , ' and it ' s  not for me . we owe it all to mlm . - mitchell wolf md . , chicago , il .  the . main reason for this letter is to convince you that this  system is honest , lawful , extremely profitable , and is a way to  get a large amount of money in a short time . i was approached  several times before 1 checked this out . i joined just to see what  one could expect in return for the minimal effort and money  required . to my astonishment i received $ 36 , 470 . 00 in the first 14  weeks , with money still coming in .  - charles morris , esq .  not being the gambling type , it took me several weeks to make up  my mind to participate in this plan . but conservative that i am , i  decided that the initial investment was so little that there was  just no way that i wouldn ' t get enough orders to at least get my  money back . boy , was i surprised when i found my medium - size post  office box crammed with orders ! for awhile , it got so overloaded  that i had to start picking up my mail at the window . i ' ll make  more money this year than any 10 years of my life before . the nice  thing about this deal is that it doesn ' t matter where people live .  there simply isn ' t a better investment with a faster return .  - paige willis , des moines , ia  i had received this program before . i deleted it , but later i  wondered if i shouldn ' t have given it a try . of course , i had no  idea who to contact to get another copy , so i had to wait until i  was e - mailed another program . . . 11 months passed then it came . . .  i didn ' t delete this one ! . . . i made . more than $ 41 , 000 on the  first try ! ! - violet wilson , johnstown , pa  this is my third time to participate in this plan . we have quit  our jobs , and will soon buy a home on the beach and live off the  interest on our money . the only way on earth that this plan will  work for you is if you do it . for your sake , and for your family ' s  sake don ' t pass up this golden opportunity . good luck and happy  spending ! - kerry ford , centerport , ny  it is up to you now ! take 5 minutes to change your future !  order your reports today and get started on your road to financial  freedom !  for your information : if you need help with starting a business ,  registering a business name , learning how income tax is handled ,  etc . , contact your local office of the small business  administration ( a federal agency ) 1 ( 800 ) 827 - 5722 for free help  and answers to questions . also , the internal revenue service  offers free help via telephone and free seminars about business  tax requirements .  under bill sl 618 title hi passed by the 105 th us congress this  letter cannot be considered spam as long as the sender includes  contact information and a method of removal . this is a one time  e - mail transmission . no request for removal is necessary to  remove ( even though this is not necessary ) press   @ yahoo . com  stop ! if you never read another e - mail please take a moment to  read this one . this really is worth your valuable time . even if  you never got involved in the program , the reports themselves are  well worth the money . they can help you start and advertise any  business on the internet . that is , these reports stand alone and  are beneficial to anyone wishing to do business on the internet .  at the very least print this out now to read later if you are  pressed for time .  - - - -  this sf . net email is sponsored by : thinkgeek  welcome to geek heaven .  http : / / thinkgeek . com / sf  spamassassin - sightings mailing list \",1\n\"Subject: quiicker  hello , welcome to pha judges rmonline sho apodal p  - one of ignominious the leading oniine pharmaceutical shops  obstructionism v  truant g  jurisdiction al  diagnosis ll  disincorporate la  omnirange rac haemophilia l  i attendance s benedictinen va  u colourblind m  andmanyother .  - save over 50 criterion %  - worldwide carpet shlpplng  - total craving confidentiaiity  - over 5 miiiion cu goldfinch stomers in 130 countries  have a nic sculpt e day !\",1\n\"Subject: same medicine , different price !  big savings on brand name drugs .  injustice anywhere is a threat to justice everywhere .  some rise by sin , and some by virtue fall .  the judge is condemned when the criminal is absolved .  on the heights , all paths are paved with daggers .\",1\n\"Subject: re : systemworks clearance sale _ limited quantities _ only $ 29 . 99 tj  take  control of your computer with this top - of - the - line software !  norton  systemworks 2002 software suite  - professional edition -  includes  six - yes 6 !  - feature - packed utilitiesall for 1  special low  price of only  $ 29 . 99 !  this  software will : -  protect your computer from unwanted and hazardous viruses -  help secure your private valuable information - allow  you to transfer files and send e - mails safely -  backup your all your data quick and easily - improve your  pc ' s performance w / superior  integral diagnostics ! - you ' ll never have to take your  pc to the repair shop again !  6  feature - packed utilities  1  great price  a $ 300 +  combined retail value  yours for  only $ 29 . 99 !  price includes free  shipping ! and  for a limited time buy any 2 of our products get 1 free !  don ' t fall  prey to destructive viruses or hackers ! protect your computer and  your valuable information and  -  click here to order yours now ! -  or call  toll - free 1 - 800 - 861 - 1481 !  your email  address was obtained from an opt - in list . opt - in uefas ( united email  federation against spam ) approved list - purchase code #  8594030 . if you wish to be unsubscribed from this list , please click  here . if you have previously unsubscribed and are still receiving  this message , you may email our spam  abuse control center . we do not condone spam in any shape or form .  thank you kindly for your cooperation . \",1\n\"Subject: in the heart of your business !  corporate image can say a lot of things about your  company . contemporary rhythm of life is too dynamic . sometimes it takes only  several seconds for your company to be remembered or to be iost among  competitors . get your ioqo , business stationery or website done riqht  now ! fast turnaround : you wiii see severai logo variants in three  business days . satisfaction guaranteed : we provide unlimited amount of  chanqes ; you can be sure : it wiii meet your needsand fit your  business . fiexible discounts : ioqo improvement , additional formats , bulk  orders , special packages . creative design for competitive price : have a look at it right  now ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: returned mail : can ' t create output  the original message was received at tue , 19 jul 2005 05 : 57 : 28 - 0500  from [ 221 . 3 . 33 . 27 ]  - - - - - the following addresses had permanent fatal errors - - - - -  jodyanddavid . herring @ verizon . net  ( expanded from : )  bowguns  ( expanded from : )  - - - - - transcript of session follows - - - - -  . . . while talking to relay . verizon . net . :  > > > rcpt to :  < < < 550 5 . 1 . 1 unknown or illegal alias : jodyanddavid . herring @ verizon . net  550 jodyanddavid . herring @ verizon . net . . . user unknown  procmail : quota exceeded while writing \"\" / var / spool / mail / bowguns \"\"  550 bowguns . . . can ' t create output\",1\n\"Subject: cash : $ 293622  dear homeowner , you have been pre - approved for a $ 200 , 000 loan at a low fixed rate . this offer is being extended to you unconditionally and your credit is in no way a factor . to take advantage of this limited time opportunity , we ask you to visit our website and completethe post approval form . http : / / www . kxxjn . com / i / lzevaw 5 8 zymg 5  dolly thorntonnk logan financial group - - - - - - - - - - - - - - - - - - - - - - 9 : alvin clapp fillmore dastard gegenscheinhttp : / / www . kxxjn . com / rem . php . . . not interested\",1\n\"Subject: id = : : ffff : 220 . 184 . 181 . 141 + cdlfnvprj mail storage exceeded  italiano : il suo messaggio non e ' stato consegnato ai seguenti destinatari :  i destinatari hanno esaurito lo spazio disponbile .  english : your message did not reach the following recipients :  the recipients have exceeded storage allocation .  to : simbol @ deejaymail . it  buon lavoro .  i . net mail system  - - - - - - - original mail message - - - -  return - path :  received : from : : ffff : 220 . 184 . 181 . 141 [ : : ffff : 220 . 184 . 181 . 141 ] by fe - 4 a . inet . it via i - smtp - 5 . 2 . 3 - 520  id : : ffff : 220 . 184 . 181 . 141 + cdlfnvprj ; tue , 19 jul 2005 12 : 59 : 44 + 0200  received : from 205 . 214 . 42 . 66  ( squirrelmail authenticated user david @ mail . scoaway . com ) ;  by mailwisconsin . com with http id j 87 gzo 09360194 ;  tue , 19 jul 2005 10 : 57 : 46 + 0000  message - id :  date : tue , 19 jul 2005 10 : 57 : 46 + 0000  subject : just to her . . .  from : \"\" barry castillo \"\"  to : simbol @ deejaymail . it  user - agent : squirrelmail / 1 . 4 . 3 a  x - mailer : squirrelmail / 1 . 4 . 3 a  mime - version : 1 . 0  content - type : text / html ; charset = iso - 8859 - 1  content - transfer - encoding : 8 bit  x - priority : 3 ( normal )  importance : normal  soft viagra at $ 1 . 62 per dose  ready to boost your sex life ? positive ?  time to do it right now !  order soft viagra at incredibly low prices  starting at $ 1 . 99 per dose ! unbelivabie !\",1\n\"Subject: expert web site analysis - at no charge  do you think that your web site should be producing more sales than it currently does ? studies indicate that most first - time visitors spend only 10 seconds on a site before deciding if it offers anything of value to them . seventy - five ( 75 ) percent of on line shoppers abandon their shopping cart . these facts highlight the importance of your web site ' s ability to quickly and effectively communicate your business offering , and to subsequently take an on - line shopper through a simple and clear purchasing process . having a web site is just the first step in establishing your internet business . the second step is to get people directed to your web site . the last , and most important , step is to sell your products and services through your site .  through july 31 , 2005 , expedite media group , inc . is offering a no - charge analysis of your web site . our professionals will review your web site , and provide you an effectiveness appraisal based on industry design standards , along with specific recommendations aimed at optimizing the shopping experience , and , most importantly , raising the sales productivity of your site .  at expedite media group , inc . , we believe that affordable and quality access to the power of the internet should be available to everyone , not just large enterprises . with 600 + websites designed , launched , and marketed , expedite media group takes pride in providing internet solutions that translate into success for its clients .  take the first step to increase your on line sales by calling us at ( 630 ) 876 - 8066 , or clicking here to learn more about expedite media group ' s web design services . when talking to one of our representatives , or submitting a contact us form from our web site , please refer to this limited - time offer .  expedite 245 west roosevelt rd . building 15 , ste . 109 west chicago , il 60185 this e - mail message is an advertisement and / or solicitation . \",1\n\"Subject: new offrr  want to know ho liberalize w to save over 60 % on your me northward dlcatlons ?  http : / / www . centr compassion alpan . com - successfull and proven way t rocking o s monumentalize ave your money .  be splash st prlces .  high qua homophone iity .  w grundyism orldwide shlpplng .  total confidenti despoil aiity .  more than 200 appeasement popular medlcatlons  have a nice da upheave y !\",1\n\"Subject: does your business depend on the online success of your website ?  submitting your website in search engines may increase  your online sales dramatically .  lf you invested time and money into your website , you  simply must submit your website  oniine otherwise it will be invisible virtuaiiy , which means efforts spent in vain .  lf you want  people to know about your website and boost your revenues , the only way to do  that is to  make your site visibie in piaces  where people search for information , i . e .  submit your  website in multipie search engines .  submit your website online  and watch visitors stream to your e - business .  best regards ,  shanaemorgan _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: save your money by getting an oem software !  need in software for your pc ? just visit our site , we might have what you need . . .  best regards ,  oliver \",1\n\"Subject: save your money buy getting this thing here  you have not tried cialls yet ?  than you cannot even imagine what it is like to be a real man in bed !  the thing is that a great errrectlon is provided for you exactly when you want .  ciails has a iot of advantaqes over viaqra  - the effect iasts 36 hours !  - you are ready to start within just 10 minutes !  - you can mix it with alcohoi ! we ship to any country !  get it right now ! . \",1\n\"Subject: free ltci policy comparison software  long term care insurance worksite marketing system  take advantage of the most current information available concerning  the group ltci market . developed after months of exhaustive research  and agent interviews , the worksite marketing system is the resource  for successful group enrollment .  included with your order :  agent manual - all the how - to info including an implementation schedule  benefit manager flip chart  presentation / sales script which promotes long term care insurance as productivity  insurance  benefit manager sales brochures  benefit manager direct mail letters  employer announcement letter  seven ( 7 ) newsletter / e - mail articles to promote employee education prior to meetings  50 each of five ( 5 ) payroll stuffers  50 each of three ( 3 ) employee seminar posters  employee education presentation on cd - rom  150 employee education brochures which promote long term care insurance as  lifestyle insurance  the secret of a successful group enrollment instructional audiotape  a handsome gold embossed binder with storage pockets  this comprehensive ltci policy review compares over 40 major companies in 17 benefit  and ratings / asset categories and includes a premium comparison for  a 60 year old couple .  over 210 policies are covered in this semi - annual publication . this is the oldest  ltc policy comparison in the nation and is a valuable tool for any  agent selling ltc insurance today .  ( older generation policies are kept after new policies are introduced because agents  encounter the older policies in the field . )  the cd - rom version allows you to compare up to three companies at a time in any of  the 17 categories . you ' ll also receive a spreadsheet version to  take with you all the time .  we don ' t want anybody to receive our mailings who does not wish to receive  them . this is professional communication sent to insurance  professionals . to be removed from this mailing list , do not reply  to this message . instead , go here :  http : / / www . insurancemail . net  legal notice \",1\n\"Subject: renew your vitality  for the first time , we are offering the only male enhancement and  performance system to you at a special internet price .  90 % of males were interested in improving their sexual stamina ,  performance , and the size of their manhood . are you one of the 90 % ?  my girlfriend has been blown away by the gains i have achieved with your  black label formula and the exercises . she said i should join the circus ,  and for the first time it felt like a compliment ! - ben , new zealand  check out the only male enhancement formula with a free dvd  http : / / vv . ue . . com / ng /  i am busy , no thank you , go above  they crept up the walls , lined the floor , made a grille of the ceiling and  would catch an unwary visitor under the chin or above the ankle just when he  least expected it . yet visitors were forbidden in so crowded a room , and  even his father declined to go farther than the doorway  as for rob , he thought he knew all about the wires , and what each one was  for ; but they puzzled even him , at times , and he was often perplexed to know  how to utilize them all\",1\n\"Subject: all graphics software available , cheap oem versions .  good morning ,  we we offer latest oem packages of all graphics and publishing software from corei , macromedia , adobe and others .  $ 80 adobe photoshop 8 . 0 / cs  $ 140 macromedia studio mx 2004  $ 120 adobe acrobat 7 . 0 professionai  $ 150 adobe premiere pro 1 . 5  $ 90 corei desiqner 10  $ 90 quickbooks 2004 professional edition  $ 75 adobe pagemaker 7 . 0  $ 70 xara x vl . 1  $ 75 adobe audition 1 . 5  $ 90 discreet 3 d studio max 7  $ 115 adobe goiive cs  $ 135 adobe after effects 6 . 5 standard  $ 45 adobe premiere eiements  $ 125 corei painter lx  $ 80 adobe lliustrator cs  $ 80 adobe lndesiqn cs  $ 240 adobe creative suite  $ 140 adobe framemaker 7 . 1  $ 50 uiead cooi 3 d production studio 1 . 0 . 1  $ 90 aiias motion buiider 6 professionai  $ 30 quicken 2004 premier home & biz  $ 30 adobe photoshop elements 3 . 0  $ 110 adobe premiere pro 7 . 0  learn more . . .  sincereiy ,  loraiee \",1\n\"Subject: software taking a bite out of your budget ? try oem !  can ' t draw a straight line ? well . . . now you can !  they have computers , and they may have other weapons of mass destruction .  he who limps still walks .\",1\n\"Subject: mail delivery failed : returning message to sender  this message was created automatically by mail delivery software .  a message that you sent could not be delivered to one or more of its  recipients . this is a permanent error . the following address ( es ) failed :  salesl @ hotmail . com  ( generated from antoniopilurzo @ calaluna . com )  smtp error from remote mailer after rcpt to : :  host mx 2 . hotmail . com [ 65 . 54 . 166 . 230 ] : 550 requested action not taken :  mailbox unavailable  - - - - - - this is a copy of the message , including all the headers . - - - - - -  return - path :  received : from [ 61 . 83 . 205 . 164 ] ( helo = mailwisconsin . com )  by serverl 520 . dnslive . net with smtp ( exim 4 . 50 )  id lduppz - 0001 je - 6 g  for antoniopilurzo @ calaluna . com ; tue , 19 jul 2005 07 : 00 : 09 - 0400  received : from 205 . 214 . 42 . 66  ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ;  by mailwisconsin . com with http id j 87 gzo 30519723 ;  tue , 19 jul 2005 10 : 57 : 46 + 0000  message - id :  date : tue , 19 jul 2005 10 : 57 : 46 + 0000  subject : just to her . . .  from : \"\" barry castillo \"\"  to : antoniopilurzo @ calaluna . com  user - agent : squirrelmail / 1 . 4 . 3 a  x - mailer : squirrelmail / 1 . 4 . 3 a  mime - version : 1 . 0  content - type : text / html ; charset = iso - 8859 - 1  content - transfer - encoding : 8 bit  x - priority : 3 ( normal )  importance : normal  soft viagra at $ 1 . 62 per dose  ready to boost your sex life ? positive ?  time to do it right now !  order soft viagra at incredibly low prices  starting at $ 1 . 99 per dose ! unbeiivabie !\",1\n\"Subject: featured sto - ck positioned to grow  pop 3 media corp ( popt )  a company which has positioned itseif in the gap between the major  media congiomerates and the universe of independent music , fiim , pubiishing  and technoiogy companies .  current price : 0 . o 22  wil | it continue higher ? watch this one wednesday as we know many of you  like momentum .  breaking news ! !  pop 3 media corp . ( popt ) and roxxy corporation announced that the  companies have entered into a | etter of intent whereby roxxy corporation wil |  acquire a 66 % interest in pop 3 ' s wholly owned subsidiary , viastar  distribution group , inc . \"\" vdg , \"\" forming a revolutionary new music company ,  controversia | entertainment corporation . the transaction , consisting of  stock and cash , when compieted , wi | | provide pop 3 ' s shareholders with a  33 % stake in the new company .  roxxy ' s management will operate the company from headquarters in los  angeles and will change its corporate name to controversia | entertainment  corporation in the coming weeks . the companies intend to complete and  execute the definitive agreement by july 8 th , 20 o 5 , and seek sharehoider  approva | immediateiy thereafter .  pop 3 ' s ceo , john d . aquiiino , stated , \"\" this ailiance wiil allow pop 3 to  achieve its strategic vision of creating a new paradigm in the music  industry . one that is focused on supporting the artist and the music they  create while embracing emerging technologies and giving consumers  access to a variety of artists through a variety of media . \"\"  roxxy ' s management team combines highiy experienced industry executives  drawn from the major | abels and aiso inciudes a staff of in - house  producers who are among the most influentia | talents in the music industry  today .  \"\" it is roxxy ' s vision to seize the opportunities afforded by the major  | abels ' | ack of commitment to their artists and customers ; labeis that  cast aside established artists who can no longer generate muiti - miliion  selling recordings , but who consistently reiease aibums which se | |  hundreds of thousands of records to a large and | oyal fan base ; artists  that can easiiy generate revenues between $ 1 and $ 5 million per title , \"\"  stated john shebanow , roxxy ' s ceo .  \"\" additiona | | y , the acquisition of vdg wil | provide us with the abiiity  to distribute our own product directiy to retail to over 22 , 0 oo retai |  location in north america , effectively doubiing the company ' s net  profit margins and ailowing the increased revenue to pass on to our  artists . \"\"  mr . shebanow concluded , \"\" while there are sma | | er labeis that do provide  a home for these acts , they | ack either the wil | or financial resources  to commit to the kind of budgets which producers of the caiiber we have  on staff require . and no company has the unique combination of great  producers , in - house distribution and dedication to the artist and the  customer that controversial entertainment wi | | possess . \"\"  about pop 3 media corp :  pop 3 media corp . is engaged in development , production and distribution  of entertainment - reiated media for film , teievision , music and  publishing interests . the company ' s portfoiio currentiy includes ownership of  viastar distribution group , a . v . o . studios , moving pictures  international , viastar records , quadra records , light of the spirit records , and  viastar classical , viastar artist management group and masterdisk  corporation .  conclusion :  the exampies above show the awesome , earning potential of little known  companies that expiode onto investor ' s radar screens ; many of you are  already familiar with this . is popt poised and positioned to do that for  you ? then you may fee | the time has come to act . . . and piease watch  this one trade wednesday ! go popt .  penny stocks are considered highly specuiative and may be unsuitable  for a | | but very aggressive investors . this profile is not in any way  affiiiated with the featured company . we were compensated 3000 do | | ars  to distribute this report . this report is for entertainment and  advertising purposes only and should not be used as investment advice .  if you wish to stop future mail - ings , or if you fee | you have been  wrongfuliy placed in our membership , send a blank e mai | with no thanks in  the sub ject to daily _ 5 tip @ yahoo . com\",1\n\"Subject: fortune 500 work at home reps needed !  immediate help needed . we are a fortune 500 company that is  growing at a tremendous rate of over 1000 % per year . we simply cannot  keep up . we are looking for motivated individuals who are looking to  earn a substantial income working from home .  this is a real opportunity to make an excellent income from home . no  experience is required . we will provide you with any training you may need .  we are looking for energetic and self motivated people . if that is you  than click on the link below and complete our online information request  form ,  and one of our employment specialist will contact you .  http : / / ter . netblah . com : 27000  so if you are looking to be employed at home , with a career that will  provide you vast opportunities and a substantial income , please fill  out our online information request form here now :  http : / / ter . netblah . com : 27000  to be removed from our list simply click on the link below now :  http : / / ter . netblah . com : 27000  1631 pl 5\",1\n\"Subject: professional advertising  dear projecthoneypot @ projecthoneypot . org :  we offer e - mail marketing with best services .  1 . targeted list  we can provide target email list you need , which are compiled  only on your order . we will customize your client list .  * we have millions of lists in many categories .  2 . sending targeted list for you  we can send your email message to your target clients ! we will  customize your email list and send your ad for you .  * we also offer hosting & mailing server .  regards !  jeff  marketing dept  kzll 23123 @ 21 cn . com  noandbye : forbye @ hotmail . com\",1\n\"Subject: calling all small stock players  ames is fascism but conrail not bagley apartheid and milton like russo snowshoe pail is baneberry not henceforth try republic marketeer enable yes afterthought or fabulous iran no  burglary is domino but game not dysplasia f and diversionary like consecutive lug hagen is curry not tempestuous try mound allay planoconvex yes bedfast or warplane baylor no  automata is polariton but veldt not huffman acquaintance and fisticuff like libel scribners stiff is guidepost not strand try amputate dewar camaraderie yes romance or discipline coachmen no \",1\n\"Subject: lose 11 pounds in 7 days iml  long time no chat !  how have you been ? if you ' ve been like me , you ' ve been trying  trying almost everything to lose weight . i know how you feel  - the special diets , miracle pills , and fancy exercise  equipment never helped me lose the pounds i needed to lose  either . it seemed like the harder i worked at it , the less  weight i lost - until i heard about ' extreme power plus ' .  you ' re probably thinking to yourself , \"\" oh geez , not another  miracle diet pill ! \"\" like you , i was skeptical at first , but  my sister said it helped her lose 23 pounds in just 2 weeks ,  so i told her i ' d give it a try . i mean , there was nothing  to lose except a lot of weight ! let me tell you , it was  the best decision i ' ve ever made . period . six months later ,  as i ' m writing this message to you , i ' ve gone from 355 pounds  to 210 pounds , and i haven ' t changed my exercise routine or diet  at all . yes , i still eat pizza , and lots of it !  i was so happy with the results that i contacted the manufacturer  and received permission to resell it - at a huge discount . i feel  the need to help other people lose weight like i did , because it  does so much for your self - esteem , not to mention your health .  i am giving you my personal pledge that ' extreme power plus '  absolutely will work for you . 100 % money - back guaranteed !  if you are frustrated with trying other products , without having  any success , and just not getting the results you were promised ,  then i recommend the only product that worked for me -  ' extreme power plus ' !  you ' re probably asking yourself , \"\" ok , so how does this stuff  actually work ? \"\"  extreme power plus contains lipotropic fat burners and ephedra which  is scientifically proven to increase metabolism and cause rapid  weight loss . no \"\" hocus pocus \"\" in these pills - just results ! ! !  here is the bottom line . . .  i can help you lose 10 - 15 pounds per week naturally , without  exercising and without having to eat rice cakes all day .  just try it for one month - there ' s pounds to lose and confidence  to gain ! you will lose weight fast - guaranteed . this is my  pledge to you .  bonus ! order now and get free shipping on 3 bottles or more !  to order extreme power plus on our secure server , just click  on this link - > http : / / www . 2002 dietspecials . com /  to see what some of our customers have said about this product ,  visit http : / / www . 2002 dietspecials . com / testimonials . shtml  to see a list of ingredients and for more information  on test studies and how it will help you lose weight , visit  if you feel that you have received this email in error , please  send an email to \"\" print 2 @ btamail . net . cn \"\" requesting to be  removed . thank you , and we apologize for any inconvenience .  http : / / xent . com / mailman / listinfo / fork\",1\n\"Subject: urgent contact  from the desk of : dr tom eke .  e - mail : dr _ tomeke @ spinfinder . com  lagos - nigeria .  attn :  request for urgent business relationship .  it is with my profound dignity that i write you this  very important  and highly confidential letter . first , i must  solicit your strictest  confidentiality in this transaction . this is by  virtue of its nature  as being utterly confidential and \"\" top secret \"\" .  though i know that a  transaction of this magnitude will make any one  apprehensive and  worried , considering the fact that we have not met  each other before ,  but i am assuring you that all will be well at the  end of the day . we  have decided to contact you by email due to the  urgency of this  transaction , as we have been reliably informed that  it will take at  least a minimum of two to three weeks for a normal  post to reach you ,  so we decided it is best using the e - mail , which is  quicker and also  to enable us meet up with the second quater payment  for the year  2000 .  however , let me start by introducing myself properly  to you . i  am dr . tom eke , a director general in the department  of petroleum  resources ( d . p . r ) and i presently head the contract  award panel incharge  of contract awards and payment approvals . i came to  know of you in my search for a reliable and  reputable person to  handle a very confidential business transaction  which involves the  transfer of a huge sum of money to a foreign account  requiring  maximum confidence . i and my colleagues are top  officials of the  federal government contract award panel . our duties  include evaluation , vetting , approval for payment of  contract jobs  done for the d . p . r e . t . c . in order to commence this  business we  solicit for your assistance to enable us transfer  into your account  the said funds . the source of this funds is as  follows : in the second  quarter of 2001 this committee was mandated to  review and award  contracts to the tune of us $ 400 million us dollars  to a group of five  firms for the supply construction and installation  of oil pipe lines  in warri and port harcourt . during this process my  colleagues and i  decided and agreed among ourselves to deliberately  over - inflate the  total contract sum from us $ 400 million to us $ 431  million united  states dollars with the main intention of sharing  the remaining sum  of us $ 31 miilion amongst ourselves .  the federal government of nigeria has since the  second quater of  year 2001 approved the sum of us $ 431 million for us  as the contract sum ,  and the sum of us $ 400 million has also been paid to  the foreign companies  concerned as contract entitlements for the various  contracts done , but  since the companies are entiltled to us $ 400 million  dollars only , we are  now left with us $ 31 million dollars balance in the  account which we intend to  disburse amongst ourselves , but by virtue of our  positions as civil  servants and members of this panel , we cannot do  this by ourselves ,  as we are prohibited by the code of conduct bureau  ( civil service  laws ) from opening and / or operating foreign accounts  in our names  while still in government service , making it  impossible for us to  acquire the money in our names right now . i have  therefore , been  delegated as a matter of trust and urgency by my  colleagues in the  panel to look for an overseas partner into whose  account we would  transfer the sum of us $ 31 million . hence we are  writing you this  letter . my colleagues and i have agreed that if you  or your company  can act as the beneficiary of this funds on our  behalf , you or your  company will retain 20 % of the total amount ( us $ 31  million ) , while  70 % will be for us ( officials ) and the remaining 10 %  will be used in  offsetting all debts / expenses and taxes incurred  both local and  foreign in the cause of this transfer . needless to  say , the trust  reposed on you at this juncture is enormous . in  return we demand your  complete honesty and trust .  you must however note that this transaction will be  strictly based  on the following terms and conditions as we have  stated below ;  a ) our conviction of your transparent honesty and  diligence  b ) that you would treat this transaction with utmost  secrecy and confidentiality  c ) that you will not ask for more share or try to  sit on the funds once it is under  your custody , or any form of blackmail .  d ) that upon receipt of the funds you will release  the funds as instructed  by us after you have removed your share of 20 % from  the total amount .  please , note that this transaction is 100 % legal and  risk free and we hope to conclude  this transaction seven to fourteen bank working days  from the date  of receipt of the necessary requirements from you .  we are looking  forward to doing business with you and solicit your  total confidentiality  in this transaction . there is no cause for alarm . i  give you my word that you  are completely safe in doing business with us .  transactions like this  have been successfully carried out in the past by  most government  executives . here in my country there is great  economic and political  disarray and thus looting and corruption is rampant  and the order of  the day , thus explaining why you might have heard  stories of how  money is been taken out of nigeria , this is because  everyone is  making desperate attempts to secure his or her  future , so that when  we retire from active service we donot languish in  poverty . i will  explain more to you when i have heard from you .  please acknowledge the receipt of this letter using  the above e - mail address .  i will bring you into the complete picture of this  pending business  transaction when i have heard from you and also  receive your  confidential telephone and fax numbers to enable me  fax to you all  necessary information you need to know about our  pending business  transaction . i will also send to you my private  telephone and fax  numbers where you can always reach me . your urgent  response will be  highly appreciated to enable us transfer the funds  under the second  quarter of the year 2002 . thank you and god bless .  yours faithfully ,  dr . tom eke .  n . b . please be informed that this business  transaction is 100 % legal  and completely free from drug money or money  laundering . this is a  complete legitimate business transaction .  - -\",1\n\"Subject: you don _ t know how to get into search engine results ?  submitting your website in search engines may increase  your online sales dramatically .  lf you invested time and money into your website , you  simpiy must submit your website  oniine otherwise it wiii be invisible virtualiy , which means efforts spent in vain .  lf you want  peopie to know about your website and boost your revenues , the only way to do  that is to  make your site visibie in piaces  where peopie search for information , i . e .  submit your  website in muitiple search engines .  submit your website online  and watch visitors stream to your e - business .  best regards ,  moshedelaney _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: all wraps around graand  hello concetta _ batistich ,  i just found a site called graand . com - a free and safe place on the internet to place classified ads . i thought i should invite you to check it out . regards , walker  2005 - 07 - 05 06 : 03 : 20  id 687 gh 55 wd 4 otswkuk\",1\n\"Subject: is this sto - ck ready to blaze higher ?  structure & technology report  may 10 th , 2005 - - for immediate release  investors and traders :  pinnacle group limited , inc . ( pgpu ) announces acquisition of aerofoam metals inc .  aerofoam metals inc is a | eading structural technoiogy company focused on the development  & commerciaiization of foamed aluminum products and components for the world market .  in today ' s market , aerofoam metals inc has cutting edge technology and | ittie competition .  symbo | : pgpu . pk  current price : o . 68  short term target price : $ 2 . 25  12 month target price : $ 5 . 25  pinnaclegli . com  aerofoam metals inc investment considerations :  - limited competition  - commitment to r & d  - cutting edge structura | technology  aerofoammetals . com  press release - - may loth , 2 oo 5 - - pinnacle acquisition of aerofoam  the company following extended re - negotiations with the major shareholder and management of aerofoam  metals incorporated ( \"\" aerofoam \"\" ) have reached an agreement in principle . the parties have entered into  a binding | etter of intent , whereby , pinnacle wi | | acquire a | | of the issued and outstanding shares of  aerofoam for new treasury shares of pinnacie . the number of shares to be issued to the shareholders of  aerofoam upon this acquisition will be 3 , 50 o , ooo common shares . the major shareholder of aerofoam who  beneficially owns 56 % of a | | the issued and outstanding shares of aerofoam has agreed to vote his shares  in favor of this acquisition . the parties hereto further agree to enter into a binding shareholders agreement  immediateiy and to hoid a specia | sharehoider meeting to ratify the acquisition within 6 o days of signing  this | etter of intent .  pinnacle group ltd profile :  pinnacie group is a u . s . based hoiding company , traded on the pinksheets . com , that searches for majority  equity positions in emerging companies . pinnacle group ltd offers skilled entrepreneurs , managers and ceos the option of  achieving their goals as part of a larger organization . the company provides capital and management  assistance to ventures that have the potentia | to mature into publiciy traded companies .  the company works closely with the management of companies that it acquires , using tried and proven methods  to expand the business , who are aiso open to innovative ideas on how to achieve targeted goals .  the company has great short term specuiative potential as  wel | as the potential for | ong term growth .  we believe the speculative near term target price is - $ 2 . 25  we beiieve the speculative long term target price is - $ 5 . 25  this is why pgpu might be the next hot pick !  please fo | | ow this one trade tuesday ! !  nothing in this e - mail shouid be considered personaiized investment  advice . although our empioyees may answer your general customer  service questions , they are not | icensed under securities laws to  address your particular investment situation . no communication by our  empioyees to you shouid be deemed as personaiized investment advice .  we expressly forbid our writers from having a financial interest in  any security recommended to our readers . ail of our empioyees and  agents must wait 24 hours after on - | ine pubiication or 72 hours after  the mailing of printed - oniy pubiication prior to following an initia |  recommendation . any investments recommended in this | etter shouid be  made only after consulting with your investment advisor and only after  reviewing the prospectus or financial statements of the company .  to cance | by mail or for any other subscription issues , reply piease to :  no _ morenewslettersl 0 @ yahoo . com  ( c ) 20 o 5 investment newsletter a | | rights reserved\",1\n\"Subject: estate of your late relative  barrister usman bello and associates 114 awolowo way victoria island lagos - nigeria private email : u - bello - committe 2005 @ il 2 . com telephone : 234 - 1 - 4772236 cell phone : 234 - 80 - 23023834  attention :  i am barrister usman bello a personal attorney to mr . engr . smith , a national of your country , who used to work with zenon oil company here in west africa herein after , shall be referred to as my client . my client with his entire family ( the wife and children ) were involved in the explosion in lagos , west africa , on january 27 , 2002 which , claimed many lives and property . unfortunately , my client and the family lost their lives in that disaster that needed not to have happened .  since then i have made several enquiries to your embassy to locate any of my clients extended relatives , this has also proved unsuccessful after these several unsuccessful attempts , i decided to trace his relatives over the internet , to locate any member of his family but of no avail , hence i contacted you . my purpose of contacting you is to assist in repatriating the money and property left behind by my client prior to his death before they get confiscated or declared unserviceable by the bank where this huge deposits were lodged and where the deceased had an account valued at about us $ 14 . 5 million dollars . the guidelines of the bank stipulates that if any deposit remained unclaimed for over a period of 3 years and few months , without the fund claimed , the said deposit will be confiscated and this will happen with some couple of official working months if nobody comes for the money . the company had issued me a notice to provide the next of kin or have the account confiscated . since i have been unsuccessful in locating the relatives for over two years now , i seek your consent to present you as the next of kin of the deceased since you have the same last name / surname so that the proceeds of this account valued at us $ 14 . 5 million dollars can be paid to you and then you and me can share the money . 50 % for me and 45 % to you , while 5 % will be set asside for rembursement of incidental expenses that may incure during the process of the transaction or tax as your government may require , i will secure certificate of deposit and other relevant approvals documents that can be used to back up any claim we may make . all i require is your honest cooperation to enable us see this deal through . i guarantee that this will be executed legitimately to protect you from any breach of the law . please get in touch with me by email to enable us discuss further . please contact me through my alternative private . { mailbox : u - bello - committe 2005 @ il 2 . com } nb : see the 2 website of the bomb explosion below : - http : / / www . disasterrelief . org / disasters / 020130 lagos 3 / index _ txt . html http : / / news . bbc . co . uk / 1 / hi / world / africa / 2718295 . stm \",1\n\"Subject: your commissions of $ 5000 per week ! ssva  give me 5 minutes and i will show you how  to turn your computer into a cash machine ! ! !  ( available in the us and canada )  i earned $ 25 , 000 last month - send for my bank statements ! ! !  we are giving away a free , 3 - day vacation to all  folks who ask for more info on how to earn $ 1000  per sale simply by using their computer !  you ' ll earn $ 1000 per sale on a low cost product and  $ 3000 per business contact -  and all marketing is from the internet . free  sophisticated and duplicatable marketing system  ( $ 2500 value ) is given to you gratis - as well as all  training and marketing support ! ! !  we invite you to explore , with no obligation , some  information that could turn around your  income and bring in thousands per week !  if you just want some extra income , or if you are a  seasoned marketer - our paint - by - numbers system with live  support ( up to 10 : 00 pm eastern every day ! ) will turn you  into a pro ! ! !  family - loved product ! ! !  we will have you in profit quick - and with  constant , live free support ! ! ! !  request more free info now -  send an email to : growthmarkets @ excite . com with \"\" send info \"\" in the subject line ! !  ( do not click reply ! )  this email conforms to commercial email regulations within the us .  please send any \"\" remove \"\" requests to : growthmarkets @ excite . com  - - - -  this sf . net email is sponsored by : thinkgeek  welcome to geek heaven .  http : / / thinkgeek . com / sf  spamassassin - sightings mailing list \",1\n\"Subject: mail delivery failed : returning message to sender  this message was created automatically by mail delivery software .  a message that you sent could not be delivered to one or more of its  recipients . this is a permanent error . the following address ( es ) failed :  steve . carpenter @ up 4 it . demon . co . uk  ( generated from steve . carpenter @ up 4 it . info )  smtp error from remote mailer after end of data :  host punt - 1 . mail . demon . net [ 194 . 217 . 242 . 248 ] :  550 blocked by recipient ' s spam filter options . if message is legitimate , please forward a copy to rbl @ demon . net for investigation .  - - - - - - this is a copy of the message , including all the headers . - - - - - -  return - path :  received : from [ 222 . 47 . 74 . 64 ] ( helo = mailwisconsin . com )  by seven . mx . 123 - reg . co . uk with smtp ( exim 4 . 43 )  id ldupqo - 0001 fc - bw  for steve . carpenter @ up 4 it . info ; tue , 19 jul 2005 12 : 00 : 39 + 0100  received : from 205 . 214 . 42 . 66  ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ;  by mailwisconsin . com with http id j 87 gzo 09360701 ;  tue , 19 jul 2005 10 : 57 : 46 + 0000  message - id :  date : tue , 19 jul 2005 10 : 57 : 46 + 0000  subject : just to her . . .  from : \"\" barry castillo \"\"  to : steve . carpenter @ up 4 it . info  user - agent : squirrelmail / 1 . 4 . 3 a  x - mailer : squirrelmail / 1 . 4 . 3 a  mime - version : 1 . 0  content - type : text / html ; charset = iso - 8859 - 1  content - transfer - encoding : 8 bit  x - priority : 3 ( normal )  importance : normal  soft viagra at $ 1 . 62 per dose  ready to boost your sex life ? positive ?  time to do it right now !  order soft viagra at incredibly low prices  starting at $ 1 . 99 per dose ! unbelivabie !\",1\n\"Subject: blue horseshoe meet me  dear reader :  we sometimes approach our analysts for their thoughts on emerging market sectors we ' re interested in . on certain occasions , they come to us with intriguing insights of certain aspects of the market that have caught their attention .  as you know our track record speaks for itself we are happy to bring you another situation with huge upside potential we think this could be the one that when we look back shortly everyone will be saying i should have more .  for more info click here ! ! !  remember : nothing ventured , nothing gained \",1\n\"Subject: msnbc : rates hit 18 year low 4 . 75 % . . . 28940  now you can have hundreds of lenders compete for your loan !  fact : interest rates are at their lowest point in 40 years !  you ' re eligible even with less than perfect credit ! !  * refinancing  * new home loans  * debt consolidation  * debt consultation  * auto loans  * credit cards  * student loans  * second mortgage  * home equity  this service is 100 % free without any obligation .  visit our web site at : http : / / 61 . 129 . 68 . 19 / usero 201 / index . asp ? afft = qm 3  to unsubscribe : http : / / 61 . 129 . 68 . 19 / light / watch . asp\",1\n\"Subject: . jif  . \",1\n\"Subject: any med for your girl to be happy !  your girl is unsatisfied with your potency ? don ' t wait until she finds another men !  click here to choose from a great variety of llcensed love t @ bs ! best pri $ es , fast shipping and guaranteed effect ! here you buy it riqht from warehouse !  the store is verifled by bbb and approved by visa ! \",1\n\"Subject: there is a genuine log home in your future . . .  there is a genuine log home in your future !  western red cedar  log siding  basic kits  builder kits  precut kits  custom designs  custom kits  all types of log styles  we feel you will find our log home superior to any others on the market and our price structure competitive with other , less desirable housing .  remember that a home is a major investment and the focal point of family use . you deserve the best home possible for the amount of money you spend .  click on the link below for a catalog on genuine log homes & accessories .  www . genuineloghome . com  sales rep code : bsad 24  to be removed from our mailing please send an email to : higher _ learningl 234 @ yahoo . com\",1\n\"Subject: adv oil and gas investment tgym  how would you like a 100 % tax free investment in oil and gas wells ?  make over 100 % annually and receive monthly tax free income with  very low risk . if you are liquid for a $ 10 , 000 investment , email your  name , address , and phone number to  oilandgaspackage @ aol . com and we will send you the information  to unsubscribe from these special mailings :  forward this mail with \"\" unsubscribe \"\" in the subject line to oilandgasremoval @ aol . com \",1\n\"Subject: ouur medz  hello , welcome to pharmonli mailbox ne sho excretion p  - one of the leading on rookie iine pharmaceutical shops  holster v  nocturnal g  a defeat l  stanza ll  disfiguration la  r mizzle ac definitive l  i paludal sv deplore a  zygoma um  andmanyother .  - multimedia save over 50 %  - worldwide shlppln cordate g  - total confidentiaii warmer ty  - over 5 miiiion custo admixture mers in 130 countries  alight have a nice day !\",1\n\"Subject: failure notice  hi . this is the qmail - send program at hybeammaill . inetu . net .  i ' m afraid i wasn ' t able to deliver your message to the following addresses .  this is a permanent error ; i ' ve given up . sorry it didn ' t work out .  :  sorry , no mailbox here by that name . vpopmail ( # 5 . 1 . 1 )  - - - below this line is a copy of the message .  return - path :  received : ( qmail 85396 invoked by uid 85 ) ; 19 jul 2005 10 : 58 : 11 - 0000  received : from projecthoneypot @ projecthoneypot . org by hybeammaill . inetu . net by uid 82 with qmail - scanner - 1 . 16  ( clamscan : 0 . 60 . spamassassin : 2 . 55 . clear : sa : 0 ( 0 . 8 / 5 . 0 ) : .  processed in 4 . 058862 secs ) ; 19 jul 2005 10 : 58 : 11 - 0000  received : from unknown ( helo mailwisconsin . com ) ( 221 . 203 . 100 . 20 )  by hybeammaill . inetu . net with smtp ; 19 jul 2005 10 : 58 : 07 - 0000  received : from 205 . 214 . 42 . 66  ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ;  by mailwisconsin . com with http id j 87 gzo 38191261 ;  tue , 19 jul 2005 10 : 57 : 46 + 0000  message - id :  date : tue , 19 jul 2005 10 : 57 : 46 + 0000  subject : just to her . . .  from : \"\" barry castillo \"\"  to : distortion 6 @ boplicity . com  user - agent : squirrelmail / 1 . 4 . 3 a  x - mailer : squirrelmail / 1 . 4 . 3 a  mime - version : 1 . 0  content - type : text / html ; charset = iso - 8859 - 1  content - transfer - encoding : 8 bit  x - priority : 3 ( normal )  importance : normal  x - spam - status : no , hits = 0 . 8 required = 5 . 0  user _ agent  version = 2 . 55  x - spam - level :  x - spam - checker - version : spamassassin 2 . 55 ( 1 . 174 . 2 . 19 - 2003 - 05 - 19 - exp )  soft viagra at $ 1 . 62 per dose  ready to boost your sex life ? positive ?  time to do it right now !  order soft viagra at incredibly low prices  startinq at $ 1 . 99 per dose ! unbelivable !\",1\n\"Subject: your in - home source of health information  same medicine , different price !  never go to bed mad . stay up and fight .  it is in justice that the ordering of society is centered .  usenet is like tetris for people who still remember how to read .  when the going gets weird , the weird turn pro .\",1\n\"Subject: hi  how to save on your medlcatlons over primarily 70 % .  phar noblewoman mzmail shop - successfu streaky ll and proven way to save your m leakage oney .  cornfloor v  slanguage ag  a marrow l  seaborne lu  merlon l  r parnassian a filter cl  i anecdotic s likewise val  untrustworthy m  andmanyother .  * best p creation rlces  * wellbalanced worldwide shlpplng  * total confidentiai quaere ity  * forgotten over 5 miliion customers  have a chemotherapy nice day !\",1\n\"Subject: new version 7 : uncover the truth about anyone !  brand - new version 7 . 0 just released :  astounding new software lets you find  out almost anything about anyone . . .  download it right now ( no charge card needed ) :  for the brand - new version 7 . 0 , click here :  http : / / lv 724 super . supereva . it / gen . html  discover everything you ever wanted to know about :  your friends  your family  your enemies  your employees  yourself - is someone using your identity ?  even your boss !  did you know you can search for anyone , anytime ,  anywhere , right on the internet ?  download this software right now - - click here :  http : / / lv 724 super . supereva . it / gen . html  this mammoth collection of internet investigative  tools see the sites  they visit , and what they are typing .  - explore secret web sites that conventional  search engines have never found .  for the brand - new version 7 . 0 , click here :  http : / / lv 724 super . supereva . it / gen . html  = = > discover little - known ways to make untraceable  phone calls .  = = > check adoption records ; locate missing children  or relatives .  = = > dig up information on your friends , neighbors ,  or boss !  = = > discover employment opportunities from around  the world !  = = > locate transcripts and court orders from all  50 states .  = = > cloak your email so your true address can ' t  be discovered .  = = > find out how much alimony your neighbor is paying .  = = > discover how to check your phones for wiretaps .  = = > or check yourself out , and you will be shocked at  what you find ! !  these are only a few things you can do , there  is no limit to the power of this software ! !  to download this software , and have it in less  than 5 minutes click on the url below to visit  our website ( new : no charge card needed ! )  http : / / lv 724 super . supereva . it / gen . html  if you no longer wish to hear about future  offers from us , send us a message with stop  in the subject line , by clicking here :  please allow up to 72 hours to take effect .  please do not include any correspondence in your  message to this automatic stop robot - - it will  not be read . all requests processed automatically .  [ : kj ) _ 8 j 7 bjk 9 ^ \"\" : } h & * tgo ]\",1\n\"Subject: now your woman will be really happy with your intimate life !  viagra shipped privately and discreetly to your door . no prescription necessary  an idea isn ' t responsible for the people who believe in it .  the secret of being boring is to say everything .  necessity knows no law .\",1\n\"Subject: unlimited cash bonuses !  from mo marketing on each and every allianz life annuity product !  bonusdex ( 9 % comm )  $ 75  bonus + $ 50 extra bonus  = $ 125  bonus !  flexdex bonus * ( 9 % comm )  $ 75  bonus + $ 50 extra bonus  = $ 125  bonus !  power 7 ( 6 % comm )  $ 75  bonus + $ 50 extra bonus  = $ 125 bonus !  powerhouse ( 9 % comm )  $ 75  bonus + $ 50 extra bonus  = $ 125  bonus !  extra $ 50 bonus on bonusdex , flexdex bonus * , power 7 , and powerhouseonly  call or e - mail  us right away ! offer expires july 31 , 2002 !  or  please fill out the form below for more information  name :  e - mail :  phone :  city :  state :  offer expires  july 31 , 2002 . no limit to how much extra cash you can earn . offer  subject to change without notice . products not available in all states .  * issued as the flexdex annuity in ct . bonuses issued from mo  marketing on paid , issued business .  bonusdex annuity is not available in : ma , or , pa , wa and wi . power  7 is not available in : al , in , me , nj , or , pa and wa . powerhouse is  not available in : nd , or , sc and wa . flexdex is not available in :  nd , or , sc and wa . for agent use only .  we don ' t want anyone  to receive our mailings who does not wish to . this is professional communication  sent to insurance professionals . to be removed from this mailing list ,  do not reply to this message . instead , go here :  http : / / www . insurancemail . net  legal notice \",1\n\"Subject: delivery status notification  - these recipients of your message have been processed by the mail server :  orlandi . enrico @ inwind . it ; failed ; 5 . 2 . 2 ( mailbox full )  remote mta ims 9 a . libero . it : smtp diagnostic : 552 rcpt to : mailbox disk quota exceeded\",1\n\"Subject: here is the place to find the one you ' ve been looking for .  here ' s a service for singles over 30 .  many lucky singles , like yourself , have found the love of their life here .  swpvfdwt\",1\n\"Subject: vaal medz  how t pestilent o save on your medlcations over 70 % .  phar anthropoid mshop - suc mucilage cessfull and proven way to save your mo impendence ney .  gauleiter v  a jauntily g  flection al  l woodbind u  natural l  metcast rac selachian l  i partsong s anthropology val  melodramatic m  andmanyother .  bes unstrap t prlces .  wo phthisic rldwide shlpplng .  easy ord inconvenient er form .  total confident exanimate iaiity .  250 , 00 roumanian 0 satisfied customers .  order toda retrial y and save !\",1\n\"Subject: you want to submit your website to search engines but do not know how to do it ?  submitting your website in search engines may increase  your online sales dramatically .  if you invested time and money into your website , you  simply must submit your website  oniine otherwise it wili be invisibie virtualiy , which means efforts spent in vain .  lf you want  people to know about your website and boost your revenues , the only way to do  that is to  make your site visible in places  where people search for information , i . e .  submit your  website in muitipie search engines .  submit your website oniine  and watch visitors stream to your e - business .  best reqards ,  ashleesimon _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: microsoft autoroute 2005 dvd uk - $ 19 . 95  discounted software store  http : / / yielded . jetlow . com /  its never just a game when you ' re winning .  character is who you are when no one is looking .  the loss which is unknown is no loss at all .\",1\n\"Subject: muscles , money , and looks help - but women want a bigger man irbxij  in a recent survey conducted by durex  condoms , 67 %  of women said thatthey are unhappy with the size of their lovers . proof that size doesmatter ! a large member has much more surface area and is capable ofstimulating more nerve endings , providing more pleasure for you and yourpartner . our revolutionary pill developed by world famous pharmacist isguaranteed to increase your size by 1 - 3 \"\" . enter here for detailsto come off just open here\",1\n\"Subject: failure notice  hi . this is the qmail - send program at compos - pop . compos . com . br .  i ' m afraid i wasn ' t able to deliver your message to the following addresses .  this is a permanent error ; i ' ve given up . sorry it didn ' t work out .  :  sorry , no mailbox here by that name . ( # 5 . 1 . 1 )  - - - below this line is a copy of the message .  return - path :  received : ( qmail 19673 invoked from network ) ; 19 jul 2005 11 : 00 : 15 - 0000  received : from compos - mail . compos . com . br ( [ 200 . 254 . 243 . 67 ] )  ( envelope - sender )  by compos - pop . compos . com . br ( qmail - ldap - 1 . 03 ) with compressed smtp  for ; 19 jul 2005 11 : 00 : 15 - 0000  received : ( qmail 17996 invoked from network ) ; 19 jul 2005 11 : 00 : 14 - 0000  received : from pl 070 - ipado 2 sinnagasak . nagasaki . ocn . ne . jp ( helo mailwisconsin . com ) ( [ 218 . 43 . 171 . 70 ] )  ( envelope - sender )  by compos - mail . compos . com . br ( qmail - ldap - 1 . 03 ) with smtp  for ; 19 jul 2005 11 : 00 : 13 - 0000  received : from 205 . 214 . 42 . 66  ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ;  by mailwisconsin . com with http id j 87 gzo 30519725 ;  tue , 19 jul 2005 10 : 57 : 46 + 0000  message - id :  date : tue , 19 jul 2005 10 : 57 : 46 + 0000  subject : just to her . . .  from : \"\" barry castillo \"\"  to : antoniop @ nway . com . br  user - agent : squirrelmail / 1 . 4 . 3 a  x - mailer : squirrelmail / 1 . 4 . 3 a  mime - version : 1 . 0  content - type : text / html ; charset = iso - 8859 - 1  content - transfer - encoding : 8 bit  x - priority : 3 ( normal )  importance : normal  soft viagra at $ 1 . 62 per dose  ready to boost your sex life ? positive ?  time to do it right now !  order soft viagra at incredibly low prices  starting at $ 1 . 99 per dose ! unbeiivabie !\",1\n\"Subject: undelivered mail returned to sender  this is the postfix program at host mx 2 . oi . com . br .  i ' m sorry to have to inform you that your message could not be  be delivered to one or more recipients . it ' s attached below .  for further assistance , please send mail to  if you do so , please include this problem report . you can  delete your own text from the attached returned message .  the postfix program  : host frontend . oi . com . br [ 200 . 222 . 115 . 18 ] said : 550 - mailbox  unknown . either there is no mailbox associated with this 550 - name or you  do not have authorization to see it . 550 5 . 1 . 1 user unknown ( in reply to  end of data command )\",1\n\"Subject: porn p . o . : your 10 free pictures are here !  nakedmail is now porn p . o . !  below is the latest installment of free adult images from porn p . o . - brand new free pictures !  click this link to see the images : http : / / 65 . 59 . 170 . 73 / pictures  the free images this week are sponsored by the following websites :  porn stars plus - http : / / www . pornstarsplus . com / pt = pmb 8834  voted best pornstar site 3 years running .  xxx video plex - http : / / www . xxxvideoplex . com / pt = pmb 8834 /  over 1 million video streams and more .  toon megaplex - http : / / www . toonmegaplex . com / pt = pmb 8834  massive facials and sexy hardcore toon action .  past 40 - http : / / www . past 40 . com / pt = pmb 8834  because older ladies really know how to fuck .  lezbonet - http : / / www . lezbo . net / pt = pmb 8834  pussy lickin ' good ! 225 , 000 video streams included .  internet eraser - http : / / www . nakedmail . com / pictures / banners / eraser . html  your internet usage is being tracked ! download internet erase to protect your privacy .  - - - - - - - - - - - - - - - - - - - - - - - - - - -  also sponsored this week by http : / / www . dvdxxxvideo . com  featuring mr . 18 inch , midget , squirters  trannys , grannys and other fine xxx  videos and dvds . even east indian movies !  - - - - - - - - - - - - - - - - - - - - - - - - - - -  thanks for subscribing to porn p . o . ( nakedmail ) . if you ever want to unsubscribe , click the link below and you will be removed within 48 hours . if the link is temporarily unavailable , reply to this email with the word \"\" unsubscribe \"\" in the subject line .  to be unsubscribed from the porn p . o . mailing list simply click on the link below \",1\n\"Subject: # # # # # # # # # # guaranteed $ 50 , 000 fast ! ! # # # # # # # # # #  you make a guaranteed $ 50 , 000 cash in  just 90 days !  quit your full time job in less than 3 months !  send an email to  the address below to request the top secret url :  freemlmleads @ hotmail . com  put guaranteed _ _ $ 50 , 000 _ _ cash ! in the subject line and  we will send the url for this awesome program right away !  your success is 100 % guaranteed ! join  now !  * * * * * * * * * * * * * * * * * *  * * * * * * * * * * * * * * * * * * * *  our company is committed to stopping uce ( unsolicited commercial e - mail ) ,  and we are trying to set an example for other legitimate opt - in list  providers by verifying our subscribes and unsubscribes in each and every  email transmission . you opted - in to one of our web sites , autoresponders ,  or our affiliated partners ' web sites . we are sending you this email with  your best interest in mind . we strive to treat every subscriber fairly and  will not send you anymore emails if you choose to unsubscribe . we treat  this very seriously and thank you for your cooperation on this matter .  return with remove in the subject line to bepermanently removed . \",1\n\"Subject: wait too long and . . . 1147  secretly  attract women or men  add some spice to your life  secretlyattract  women or men  delete \",1\n\"Subject: you want to submit your website to search engines but do not know how to do it ?  submitting your website in search engines may increase  your online sales dramatically .  if you invested time and money into your website , you  simply must submit your website  online otherwise it wiil be invisibie virtuaiiy , which means efforts spent in vain .  if you want  people to know about your website and boost your revenues , the oniy way to do  that is to  make your site visible in places  where peopie search for information , i . e .  submit your  website in multiple search engines .  submit your website online  and watch visitors stream to your e - business .  best reqards ,  myrlburns _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: phone service 2968 zuyw 7 - 202 ztvwo 499 - 20  hi :  have  you been paying too much for your home or  business long distance ?  have  you been looking for an affordable but honest  long distance alternative ?  we are offering  fiber optic long distance for  as low as $ 9 . 95 per month !  email  us with your phone number and we ' ll call you  back so you can hear how great the connection is .  six plans to choose from including a travel plan .  there are no credit checks and because you don ' t  need to change your long distance carrier , your  service can be turned on in just a few hours .  distributors needed !  we have distributors now making a few hundred to  many thousands of dollars per month from the comfort  of their homes .  obtain complete  details include your phone number - we ' ll  call you back to confirm our crisp clear connection .  to be removed : click here \",1\n\"Subject: free lancer eventos  free lancer eventos  servi?o profissional na ?rea de promo??o e empresariamento  de eventos :  cocktail  * coffe - break * churrasco * mesa de  frios * queijos & vinhos *  brunch * batizados * casamentos * * 15 anos * bodas * fazendas  *  ch?caras * s?tios * *  feiras * conven??es * eventos em geral . *  temos  tamb?m encomendas de salgados , bolos , doces e  aluguel de material em geral .  contrata??o  de profissionais :  * gar?on * copeiro * fritador * cozinheiro * chopeiro * * churrasqueiro *  bar - man *  *  seguran?a e recepcionista *  fazemos  toda a ?rea do rio e grande rio ou outros estados , se assim  desejar .  temos bons profissionais  para fazer de sua festa um  momento inesquec?vel de prazer e alegria .  para  qualquer esclarecimento :  tel . : 21 2573 . 6864 / 2270 . 5260 /  9419 . 4970  fax no . 21 - 2260 . 8466  e - mail : freelancereventos @ globo . com  * * empresa  inscrita no sicaf * * \",1\n\"Subject: hi  how to save on your medlc doggone atlons over 70 % .  phar validate mzmail shop - successful pallmall l and proven way to save your mone compose y .  neology v  a glossitis g  ranker al  l reprisal u  appallingly l  r corporate ac shingles l  unsubstantial is craven val  thulium m  andmanyother .  * best prlce juniper s  * worldwide shl cannot pplng  * total confidentiaii wolverine ty  * over 5 miliion custom ecological ers  ha amphorae ve a nice day !\",1\n\"Subject: i think you might be interested 2005 - 07 - 06 09 : 34 : 51  hello deadpanpolitics 3 ,  i just found a site called graand . com - a free and safe place on the internet to place classified ads . i thought i should invite you to check it out . regards , walker oacevlmg 9 sd 7 qa 27 sw 6 uulxwn 3 k 8 jlvo 3 soiaak  2005 - 07 - 07 22 : 33 : 55\",1\n\"Subject: feeling fat ?  if anyone has called you names because you ' re overweight ,  or you are looking to make a positive change in your life ,  then you can do something now !  click here to find out how  http : / / 4 xenical . com / loseweight . cfm  we hope you enjoyed receiving this email , but if you no longer  wish to receive our emails click on the link below and you will  not hear from us again - we guarantee it !  http : / / 4 xenical . com / remove . cfm \",1\n\"Subject: fulton bank online security message  dear fulton bank customer  recently  there have been a large number of identity theft  attemptstargeting our customers . in order to safeguard your  account , we require that you confirm your banking details .  this  process is mandatory , and if not completed within the nearest  time your  account or credit card may be subject to temporary suspension .  to securely  confirm your fulton bank account details pleasefollow the  link :  note :  you may have to report this message as not junk mail  if update link does not work .  thank you  for your prompt attention to this matter and thank you for using  fulton bank . \",1\n\"Subject: money is available .  csse  mortgage companies make you wait . . . they demand to interview you . . . they intimidate you . . . and all of that while they decide if they even want to do business with you . . .  we turn the tables on them . . .  now , you ' re in charge  just fill out our simple form and they will have to compete for your business . . .  click here for the form  programs for every credit situation  lenders reply within 24 hrs  borrow up to 125 % of your home ' s value  special programs for self - employed  no income verification programs  click here to save thousands on your mortgage  please know that we do not want to send you information regarding our special offers if you do not wish to receive it . if you would no longer like us to contact you or you feel that you have received this email in error , you may click here to unsubscribe .  wsop \",1\n\"Subject: re : [ 9 ]  this has been our final attempt  we have aimed to contact you on quite a few instances and the time to return your reponse is now !  your exisiting loan situation enables you for up to a 3 . 80 % lower rate .  however , thanks to our previous attempts to contact  you did not succeed , this will be our last effort to enable you to receive the lower rate .  please bring to an end this final step upon receiving  this notice immediately , and complete your claim now .  apply here .  if your decision is not to make use of this final offer going here will help you to do so .\",1\n\"Subject: claim your free home depot gift card - a $ 1000 value .  claim your home depot gift card - a $ 1000 value . were sure you can find a use for this gift card in your area . ( ) .  by exclusiverewards  bxjqlhgh\",1\n\"Subject: legal advice  * this message was transferred with a trial version of communigate ( tm ) pro *  we all  need a good attorney to call in today ' s society .  keeping ahead of the legal issues in our life was just simply more than we could  bear . we needed legal advice and we needed it right away . unfortunately , being middle class , put us in the wrong income bracket to have such a necessity . now all of this has changed .  think about the issues that can suddenly come up in your personal life :  monday : the dog bit the mailman - do you know what to do ?  tuesday : the building inspector drops by and announces that the permits on file with their office do not  allow your garage conversion . \"\" what now , \"\" you think to yourself .  wednesday : you ' ve been considering home - schooling your children for some time . now your daughter announces that she is being picked on yet again , and simply will not attend another day . what are the legal ramifications of home schooling your children ?  thursday : speeding ticket goes to warrant for your 17 - year - old son . you haven ' t a clue how to handle  it .  friday : your ex - spouse has missed another child support payment . . . who do you call ?  and what about all the other things :  received a traffic ticket you thought was unjustified ?  paid a bill you knew was unfair ?  lost a security deposit ?  bought a home or purchased a car ?  signed an employment contract ?  had difficulty collecting an insurance claim ?  had trouble with your credit report ?  been involved in a landlord or property dispute ?  been involved in a separation or divorce ?  had to collect child support ?  prepared a will or wanted to ?  in your personal life , you need legal representation available to you all the time . but most of us never have it because we can ' t afford it .  now there is a program that not only provides quality legal help ,  but it provides it 24 hours a day , with an attorney helping you the same day you call them -  and it is for a small monthly fee . no kidding . somewhere between twenty and forty dollars a month , depending upon the plan you choose .  click here  not  interested ? take your em ail out of our data base by visitng the site and following removal instructions  126\",1\n\"Subject: save your money buy getting this thing here  you have not tried cialls yet ?  than you cannot even imagine what it is like to be a real man in bed !  the thing is that a great errrectlon is provided for you exactly when you want .  cialls has a iot of advantages over viagra  - the effect lasts 36 hours !  - you are ready to start within just 10 minutes !  - you can mix it with alcohol ! we ship to any country !  get it riqht now ! . \",1\n\"Subject: more cash for the business you already write - immediately  get your bonus ! call mo marketing today !  or  please fill out the form below for more information  name :  e - mail :  phone :  city :  state :  * bonuses awarded from  mo marketing on paid , issued business . for agent use only .  offer subject to change without notice . offer starts 7 / 15 / 02 . offer  ends 12 / 31 / 02 . offer good in all states except : wi , in , de . not  available with all carriers .  we don ' t want anyone to receive our mailings who does not  wish to receive them . this is a professional communication  sent to insurance professionals . to be removed from this mailing  list , do not reply to this message . instead , go here :  http : / / www . insuranceiq . com / optout  legal notice \",1\n\"Subject: [ ilug ] manuel oko  attn : sir / madan  strictly confidential .  i am pleased to introduce myself to you . my name is mr . manuel oko a native of south africa and a senior employee of mines and natural resources department currently on a trainning course in holland for few months .  i am writing this letter to request your assistance in order to redeem an investment with the south african mining corporation . the said investment , now valued at ( $ 15 . 5 million dollars ) fifteen million , five hundred thousand dollars only was purchased by lucio harper and contracted out to the south african mining corporation in 1977 now recognised as mines and natural resources department . this redeemable investment interest , has now matured since march last year .  since march last year , several attempts have been made to contact lucio harper without success and there is no way to contact any of his close relatives in whose favour the investment cash value can be paid .  since we have access to all lucio harper ' s information , we can claim this money with the help of my partners with the south african mines and natural resources department . all we have to do is to file claim using you as lucio harper ' s relative .  i will like to assure you that there is absolutely nothing to worry about , because it is perfectly safe with no risk involved . please ensure to keep this matter strictly confidential . my partner will file a claim for this money on your behalf from the southafrican mining corporation . when the claim is approved , you as the beneficiary  will be paid ( 25 % ) of the total amouth .  since this money can be paid directly into any bank account of your choice , you have responsibility to ensure that my partner and ireceive ( 70 % ) of the total amouth . while the balance ( 5 % ) will be set aside for any unforseen expenses in the cause of transfering this money .  i will appreciate if you can give your assurance and guarantee that our share will be well secured . please for the sake of confidentiality , reach me on my e - mail address : manuelokol 000 @ netscape . net . please let me know if this proposal is acceptable to you . kindly reach me immediately with any of the stated contact addresses so that better clearifications  relating to the transaction will be explained to you .  truly yours  manuel oko  - -  irish linux users ' group : ilug @ linux . ie  http : / / www . linux . ie / mailman / listinfo / ilug for ( un ) subscription information .  list maintainer : listmaster @ linux . ie\",1\n\"Subject: it works excelllent  hello , welcome to pharmo flasket nline s goddaughter hop  - one of the leading oniine pharmaceutic sartor al shops  eocene v  howling g  a cognitive l  l subjugation l  negotiant la  irritate rac edentate l  i trisect s unimaginative va  purchasable um  andmanyother .  - save over 5 plutocracy 0 %  - worldwide pledget shlpplng  - total confid disgrace entiaiity  - over 5 miiiion customers in 130 coun caveman tries  hav lamella e a nice day !\",1\n\"Subject: investment  attn : president ,  from : mrs . helina karimu  i am an investor a citizen of angola currently on exile in  benin republic because of the civil war in my country . i  wish to invest in a country with political stability ,  reliable , dependable infrastructure and security of life  and property .  i was given your contact address by a foriegner who was on  a working visit in cotonou . she said that your company can  assist me on my investment plans , if i am lucky that your  company may be willing to assist me . it may interest you to  know that i am having $ 30 . 5 million us dollars ready for  investment , this amount was left behind for  me and my children by my late husband .  i am willing to invest in a company with potentials for  growth and stability including your company if your bye -  laws allows for foreign investors or any other good and  profitable business that you may suggest . i will be very  happy if this enquiry receive urgent attention .  you should mail your acceptance by sending to me your  personal and company profile as i will also send to you all  required information about myself and the help that i need  from you about my investment plans .  you can also reach me at : helinakarimu @ ecplaza . net and  hk _ hk @ post . com .  hoping for a very successful business relationship with you .  yours truly ,  mrs . helina karimu .  ( investor )  bo?te aux lettres - caramail - http : / / www . caramail . com\",1\n\"Subject: any software backups for lowest pricest .  best software prices .  i exist as i am , that is enough .  envy is the ulcer of the soul .\",1\n\"Subject: please restore your account access  html >  dear southtrust customer ,  we recently reviewed your account , and we suspect an unauthorized atm and / or pin - based point of sale transaction on your account .  protecting your account is our primary concern . therefore , as a preventive measure we have temporary limited your access to sensitive information .  to ensure that your account is not compromised , simply hit \"\" click on the reference link \"\" to confirmyour identity as a card member of southtrust .  this notification expires on july 15 th 2005 .  once you have updated your account records your south trust bank will not be  interrupted and will continue as normal .  please follow the link below  and renew your account information . \",1\n\"Subject: have you ever bought drugs online ?  regain your confidence viagra online  the loftier the building , the deeper must the foundation be laid .  be polite to all , but intimate with few .  by constant self - discipline and self - control you can develop greatness of character\",1\n\"Subject: all natural viagra alternative !  the following advertisement is being sponsored by  avirtualshopper . com  the internets leading source for permission based opt - in marketing  to opt - out from our mailing list click here  . . . \",1\n\"Subject: you don _ t know how to get into search engine results ?  submitting your website in search engines may increase  your online sales dramatically .  if you invested time and money into your website , you  simply must submit your website  oniine otherwise it will be invisible virtuaiiy , which means efforts spent in vain .  lf you want  people to know about your website and boost your revenues , the oniy way to do  that is to  make your site visibie in piaces  where people search for information , i . e .  submit your  website in multiple search engines .  submit your website oniine  and watch visitors stream to your e - business .  best reqards ,  seeblackweil _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: new love tabs shop .  visit our llcensed online dragstore for the best inexpensive love drags ! viagra , ciaiis , softtabs and many other iove enhancers all in one !  operative support , fast shippinq , secure payment processing and complete confidentiality !  ciick here to find your verified by bbb and approved by vlsa love pil 1 ! \",1\n\"Subject: perfect logo charset = koi 8 - r \"\" >  thinking of breathing new life into your business ?  start from revamping its front - endlogo and  visualidentity .  we offer creative custom desiqn of loqos ,  stationery and web - sites . under our careful hand thesepowerful marketing  tools will brinq a breath of fresh air into your business and make you stand out  amonqthe competitors .  you are just a ciick  away from your future success . ciick here to see the samples of our artwork ,  checkour prices and hot offers .  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: looking for property in spain ?  looking for  property in spain ?  don _ t waste your time !  that is what  most people do when they look for property using property web sites .  why ?  because  many of the properties that are advertised on them have already been  sold !  you could waste precious time looking for and inquiring after  properties that have already been sold !  how frustrating ! ! !  the property  market is moving very fast here in spain and frankly many estate agents do  not have the time to update their web sites .  what you need  is a company that can find you property that is actually for sale and can  present to you a selection of current properties that specifically fit  your requirements .  just think of how much time and effort  that would save you !  property finders spain  can do  just that !  we are here in  spain and have a many ways of looking for property that has just arrived  on the market , even looking in the local papers !  so while others are chasing properties or new  projects that are no longer for sale you can be viewing property  that has just arrived on the market !  simply fill in the form below and  press the send button and we will do all of the hard work for you .  once we receive your  requirements we will immediately begin looking for current properties just  right for you .  property finders  form  property  type  villa  apartment town house new  building projects plot of  land  number of  bedrooms  1  2 3 4  5 6  location  do you want a sea  view ?  yes no  don ` t care  mountain  view  yes  no don ` t care  a property in the  country  a property in or near a  city  pool yes ,  no  yes no  don ` t care  price  range  > \"\" name = bl >  let us find a property for  you ! \",1\n\"Subject: mortgage information for you ! . . . . . . . .  has your mortgage search got you down ?  win a $ 30 , 000 mortgage just for trying to get your mortgage rates down , and a little cash in your pocket ! !  know who is telling you the truth ! we can solve all your problems .  visit our site today and in two minutes you can have us searching thousands of  programs and lenders for you . get the truth , get the facts , get your options  all in one shot . it ' s absolutely free , and you can be done in only two minutes ,  so click right now and put your worries behind you !  [ 247 ( ^ ( pol : kj ) _ 8 j 7 bjk ]\",1\n\"Subject: largest collection of porn mo \\ / ies ever - x 706  we have the hottest pornostars pics and videos inside . thousands of new photo and clips , including pornostars movies . see hot pornostars videos now ! click here for http : / / www 3 . ledieskeys . info / cool photos and video clips and dvd movies  - - - - - - - - - - - - - -  cyclorama byway bigotry between canfield andromache diethylstilbestrol anode  defunct bronchiolar burgundy cowboy anorthic capybara disruptive abusive climactic diet car bereave  dementia dickcissel behave ceramium bib celsius aitken d ' art declaration cuny arterial carmichael  diameter aden butene chesapeake cargill derbyshire alderman arcturus debility diversion\",1\n\"Subject: quick cash !  sell your timeshare !  if you ' re interested in selling or renting  your timeshare or vacation membership  we can help !  for a free consultation click \"\" reply \"\" with  your name , telephone number , and the  name of the resort . we will contact you  shortly !  removal instructions :  to be removed from this list , please  reply with \"\" remove \"\" in the subject line .  http : / / xent . com / mailman / listinfo / fork\",1\n\"Subject: failure notice  hi . this is the qmail - send program at nsl . extremekanal . com .  i ' m afraid i wasn ' t able to deliver your message to the following addresses .  this is a permanent error ; i ' ve given up . sorry it didn ' t work out .  :  sorry , no mailbox here by that name . ( # 5 . 1 . 1 )  - - - below this line is a copy of the message .  return - path :  received : ( qmail 20410 invoked by uid 0 ) ; 19 jul 2005 10 : 59 : 33 - 0000  received : from 218 . 2 . 27 . 239 by nsl ( envelope - from , uid 1005 ) with qmail - scanner - 1 . 25  ( clamuko : 0 . 65 .  clear : rc : 0 ( 218 . 2 . 27 . 239 ) : .  processed in 1 . 547743 secs ) ; 19 jul 2005 10 : 59 : 33 - 0000  received : from unknown ( helo mailwisconsin . com ) ( 218 . 2 . 27 . 239 )  by 192 . 168 . 2 . 2 with smtp ; 19 jul 2005 10 : 59 : 31 - 0000  received : from 205 . 214 . 42 . 66  ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ;  by mailwisconsin . com with http id j 87 gzo 09359978 ;  tue , 19 jul 2005 10 : 57 : 46 + 0000  message - id :  date : tue , 19 jul 2005 10 : 57 : 46 + 0000  subject : just to her . . .  from : \"\" barry castillo \"\"  to : gogo @ sportkanal . com  user - agent : squirrelmail / 1 . 4 . 3 a  x - mailer : squirrelmail / 1 . 4 . 3 a  mime - version : 1 . 0  content - type : text / html ; charset = iso - 8859 - 1  content - transfer - encoding : 8 bit  x - priority : 3 ( normal )  importance : normal  soft viagra at $ 1 . 62 per dose  ready to boost your sex life ? positive ?  time to do it right now !  order soft viagra at incredibly low prices  starting at $ 1 . 99 per dose ! unbelivabie !\",1\n\"Subject: save your money buy getting this thing here  you have not tried cialls yet ?  than you cannot even imagine what it is like to be a real man in bed !  the thing is that a great errrectlon is provided for you exactiy when you want .  cialls has a iot of advantaqes over viaqra  - the effect iasts 36 hours !  - you are ready to start within just 10 minutes !  - you can mix it with alcohol ! we ship to any country !  get it riqht now ! . \",1\n\"Subject: [ ilug ] bank error in your favor  substantial monthly income makers voucher  income transfer systems / distribution center  pending income amount : up to $ 21 , 000 . 00  good news ! you have made the substancial income makers list . this means you get the entire system and get the opportunity to make up to $ 21 , 000 . 00 a month .  to receive this system , follow this link !  get ready , you will immediately receive all the information needed to make a substantial monthly income .  what are you waiting for ! ! http : / / www . hotresponders . com / cgi - bin / varpro / vartrack . cgi ? t = wendy 7172 : 1  you are receiving this email due to having requested info on internet businesses . if you are not longer looking for one , please click the remove link below .  click on the link below to remove yourself  aol users  remove me  - -  irish linux users ' group : ilug @ linux . ie  http : / / www . linux . ie / mailman / listinfo / ilug for ( un ) subscription information .  list maintainer : listmaster @ linux . ie\",1\n\"Subject: free step - by - step seminar presentation  affluent senior lead program  multi - media annuity selling system cd  step - by - step seminar presentation  exclusive prospect / client  marketing and re - marketing  system  * must be contracted through ppmg with our top annuity companies .  plus a very special offer from ppmg :  trip includes deluxe outside cabin for producer and guest  and airfare from the nearest home city gateway ! * *  * * as determined by ppmg travel coordinator .  ports of call :  or  please fill out the form below for more information  name :  e - mail :  phone :  city :  state :  we don ' t want  anyone to receive our mailings who does not wish to receive them .  this is a professional communication sent to insurance professionals .  to be removed from this mailing list , do not reply to this  message . instead , go here :  http : / / www . insurancemail . net  legal notice \",1\n\"Subject: new stock : shooting stars stock report  a drib is admix vishnu but elegiac what newspaper ,  eagle not acrimony .  when percy conceive , eject whistleable is not viennese  custom but a molten spain style arises fujitsu  terramycin in episcopate , pullback and grata . would you  connallyatalanta ?  no , damsel carbonic weasel is depression a buttermilk and  tentacle prizewinning . \",1\n\"Subject: extra time - cures premature ejaculation  hello ,  did you ejaculate before or within a few minutes of  penetration ?  premature ejaculation occurs when you ejaculate too quickly  and without control . it occurs before or shortly after  penetration . premature ejaculation interferes with the sexual  pleasure of both you and your partner . it causes feelings of  guilt , embarrassment , frustration , and depression .  extra - time is the only male sexual performance formula that ,  not only stops premature ejaculation , but actually \"\" cures \"\" it .  extra - time is the only product that allows \"\" you \"\" to control  when you ejaculate .  - non - hormonal herbal therapy .  - acts locally on the sex organs .  - regulates process of ejaculation .  - acts through neuro - endocrine pathway .  - acts on the high centers of emotion in the brain .  look here : http : / / degradedly . com / et / ? meds  no thanks : http : / / degradedly . com / rr . php\",1\n\"Subject: bettter control  hello , welcome to phar christy monline bobcat shop  - one of the leading o tarrock niine pharmaceutical shops  intoxicate v  diatonic g  oilplant al  parian ll  l galvanize a  r catalysis ac venter l  i dischargee s entente va  magnitude um  andmanyother .  - save over melinite 50 %  - worldwide shlppl comprador ng  - total confidentiai retouch ity  - over 5 miiiion custo sparkling mers in 130 countries  have a ni intriguant ce day !\",1\n\"Subject: perfect logo charset = koi 8 - r \"\" >  thinking of breathing new life into your business ?  start from revamping its front - end - logo and visuai identity .  loqodentity offers creative custom design of logos ,  stationery and web - sites . under our careful hand these powerfui marketinq toois  wiii bring a breath of fresh air into your business  and make you stand out among the competitors .  you are just a ciick  away from your future success . click here to see the sampies of our artwork ,  check our prices and hot offers\",1\n\"Subject: work from home . free info  we need help . we are a 14 year old fortune 500 company , and we have  grown 1000 % ! we cannot keep up . we are looking for individuals who  want to work at home , and make a good living .  so if you are looking to be employed from home with a career that has  vast opportunities , then go :  http : / / www . lotsonet . com / opportunity  and fill out our info form . no experience required , we will train you .  no committment is required by filling out the form , it is for info  only .  http : / / www . lotsonet . com / opportunity  you want to be independent ? then make it happen !  happen !  simply click on the link below for free , no obligated information !  guaranteed !  http : / / www . lotsonet . com / opportunity  to be removed from our link simple go to : \",1\n\"Subject: international calls for only 33 cents per minute with no subscription  dear user ,  do you ever wish you could easily call people you know in other countries  for up to 85 % less than standard call prices ? ! and then to make these savings  without having to subscribe to any low cost calling service ? ! we have now  launched a product that does exactly that !  you can now call people in most popular destinations around the world for  only 33 cents per minute ! there are no hidden charges , you do not need to  signup , use any credit cards , or pay any extra bills ! you can try this  service at no risk and choose to use it with no commitment !  to use this new service , simply dial our access number 1530 927 055 and  once connected , dial the actual international number you wish to call .  for more information and the current list of countries you can call ,  please check our website http : / / www . ireland . pd - dial . com /  example : if you wanted to call a german number 0567 123 124 you would :  1 ) dial 1 530 927 055  2 ) wait until you connect to our system and hear a message asking you  to dial the number you wish to call .  3 ) dial the full international number starting 00 . in this instance 00  ( for international ) 49 ( country code for germany ) 567 123 124 ( their  number without the initial zero )  you will only pay 33 cents per minute to access our system with no further  charges for any calls you make ! you can also use this service to make  cheap international calls from mobiles too ! however please check the  costs of calling 1530 numbers from your mobile if you are unsure .  you only ever pay for the cost of calling our access number which will  appear on your normal bill . however any international calls you make will  not appear on your bill , so you only ever pay 33 cents per minute when  using our service !  if calling from a mobile , please ensure that you do not press the green / send  key again after dialling the actual mobile number , or you will be billed  for a second call by your mobile operator .  if you have any questions or wish to contact us for more information ,  please check our website http : / / www . ireland . pd - dial . com / for details .  if you are not interested in reducing your phone bills and would not like to  be informed of any other similar offers from ourselves , please reply to this  message with the word unsubscribe in the subject heading . if you have your  email forwarded , please ensure that you unsubscribe from the actual account  email is sent to . we apologise if this message has inconvenienced you in any  way .\",1\n\"Subject: professional advertising  dear projecthoneypot @ projecthoneypot . org :  email is the best grow tool . we offer marketing with quality  services .  1 . targeted list  we can provide target email list you need , which are compiled  only on your order . we will customize your client email list .  * we have millions of lists in many categories .  2 . sending targeted list for you  we can send your email message to your target clients ! we will  customize your email list and send your ad for you .  * we also offer hosting & mailing server .  regards !  jone  marketing team  kzl 789 @ 56 . com  no and bye : bpserver @ hotmail . com\",1\n\"Subject: failure notice  hi . this is the qmail - send program at mail 21 . voicenet . com .  i ' m afraid i wasn ' t able to deliver your message to the following addresses .  this is a permanent error ; i ' ve given up . sorry it didn ' t work out .  :  sorry , no mailbox here by that name . ( # 5 . 1 . 1 )  - - - below this line is a copy of the message .  return - path :  received : ( qmail 20328 invoked by uid 83 ) ; 26 jun 2005 11 : 30 : 48 - 0000  received : from projecthoneypot @ projecthoneypot . org by mail 21 by uid 11 with qmail - scanner - 1 . 20 - vn  ( clamuko : 0 . 86 . 1 . clear : rc : 0 ( 67 . 171 . 94 . 76 ) : .  processed in 0 . 55162 secs ) ; 26 jun 2005 11 : 30 : 48 - 0000  received : from c - 67 - 171 - 94 - 76 . hsdl . pa . comcast . net ( 67 . 171 . 94 . 76 )  by mail 21 . voicenet . com with smtp ; 26 jun 2005 11 : 30 : 48 - 0000  x - matched : c - 67 - 171 - 94 - 76 . hsdl . pa . comcast . net [ 67 . 171 . 94 . 76 ]  received : ( qmail 84590 invoked by uid 74 ) ; sun , 26 jun 2005 08 : 26 : 18 - 0400  date : sun , 26 jun 2005 14 : 25 : 18 + 0200  message - id :  from : mandy hughes  to : amyb  subject : message subject  mime - version : 1 . 0 ( produced by drudgeryearthmove 8 . 9 )  content - type : multipart / alternative ;  boundary = \"\" - - 222790264808428 \"\"  - - - - 222790264808428  content - type : text / html ;  charset = \"\" iso - 2840 - 8 \"\"  content - transfer - encoding : 7 bit  content - description : congresswomen chlorophyll dieldrin  dear  if you have reached the point where you can no longer keep up with your monthly bills , moneytrancecorp company offers an honorable alternative to bankruptcy .  contact us for immediate answers  reduce your unsecured debt for 85 - 90 % of its total value within a week .  stop harassing creditor phone calls  start making money with us .  best regards .  register and say \"\" good bye \"\" to your debts !  life without debts !  want to know more ? email us !  http : / / uscard - debt . com / index . php ? ref = wrw  - - - - 222790264808428 - -\",1\n\"Subject: considered unsolicited bulk email from you  your message to :  - > info @ rgbaz . com  was considered unsolicited bulk e - mail ( ube ) .  subject : just to her . . .  return - path :  our internal reference code for your message is 01500 - 02 / efl 6 nkzrotlw .  delivery of the email was stopped !\",1\n\"Subject: all graphics software available , cheap oem versions .  good morning ,  we we offer latest oem packages of all graphics and publishinq software from corel , macromedia , adobe and others .  $ 80 adobe photoshop 8 . 0 / cs  $ 140 macromedia studio mx 2004  $ 120 adobe acrobat 7 . 0 professionai  $ 150 adobe premiere pro 1 . 5  $ 90 corel desiqner 10  $ 90 quickbooks 2004 professional edition  $ 75 adobe paqemaker 7 . 0  $ 70 xara x vl . 1  $ 75 adobe audition 1 . 5  $ 90 discreet 3 d studio max 7  $ 115 adobe golive cs  $ 135 adobe after effects 6 . 5 standard  $ 45 adobe premiere eiements  $ 125 corei painter ix  $ 80 adobe lllustrator cs  $ 80 adobe indesiqn cs  $ 240 adobe creative suite  $ 140 adobe framemaker 7 . 1  $ 50 ulead cooi 3 d production studio 1 . 0 . 1  $ 90 alias motion builder 6 professional  $ 30 quicken 2004 premier home & biz  $ 30 adobe photoshop elements 3 . 0  $ 110 adobe premiere pro 7 . 0  learn more . . .  sincerely ,  garry \",1\n\"Subject: discreet penis enlargement 4623  4623\",1\n\"Subject: mail delivery failed : returning message to sender  this message was created automatically by mail delivery software .  a message that you sent could not be delivered to one or more of its  recipients . this is a permanent error . the following address ( es ) failed :  chantellehawaii @ turquoise . net  ( generated from info @ chantelleart . com )  smtp error from remote mailer after rcpt to : :  host mail . turquoise . net [ 64 . 75 . 251 . 7 ] : 550 :  recipient address rejected : user unknown in local recipient table  - - - - - - this is a copy of the message , including all the headers . - - - - - -  return - path :  received : from [ 221 . 200 . 170 . 147 ] ( helo = mailwisconsin . com )  by srvl . axantil . com with smtp ( exim 4 . 43 )  id ldupmy - 0003 wz - 3 x  for info @ chantelleart . com ; tue , 19 jul 2005 06 : 57 : 29 - 0400  received : from 205 . 214 . 42 . 66  ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ;  by mailwisconsin . com with http id j 87 gzo 24815886 ;  tue , 19 jul 2005 10 : 57 : 46 + 0000  message - id :  date : tue , 19 jul 2005 10 : 57 : 46 + 0000  subject : just to her . . .  from : \"\" barry castillo \"\"  to : info @ chantelleart . com  user - agent : squirrelmail / 1 . 4 . 3 a  x - mailer : squirrelmail / 1 . 4 . 3 a  mime - version : 1 . 0  content - type : text / html ; charset = iso - 8859 - 1  content - transfer - encoding : 8 bit  x - priority : 3 ( normal )  importance : normal  x - antivirus - scanner : clean mail though you should still use an antivirus  soft viagra at $ 1 . 62 per dose  ready to boost your sex life ? positive ?  time to do it right now !  order soft viagra at incredibly low prices  starting at $ 1 . 99 per dose ! unbeiivable !\",1\n\"Subject: earn 20 times your peers  asset marketing systems  is the insurance industry ' s fastest  growing field marketing organization over the past four years .  this year we ' ll place $ 1 . 5 billion in premium , selling high - quality ,  high - commission fixed annuities to america ' s 35 million senior  citizens .  why have so many agents chosen to do business with asset marketing  systems ?  asset marketing is the only fmo in america that  generates qualified leads , helps set appointments , structures  product positioning , increases closing ratios and handles all the  paperwork . . . at absolutely no cost to the agent !  we are also proud to report  our agents routinely earn 20 times the industry average . assuming  you qualify , we ' ll pick up the entire tab for you to visit our corporate  offices in sunny san diego .  ready to join the best ? call susan at  or e - mail jennifer at jennifer @ . com  or  please fill out the form below for more information  name :  e - mail :  phone :  city :  state :  we  do not want anyone to receive our mailings who does not wish to . this  is professional communication sent to insurance professionals . to  be removed from this mailing list , do not reply to this message . instead ,  go here : http : / / www . insurancemail . net  legal notice \",1\n\"Subject: a friendly professional online pharmacy focused on you !  enjoy having sex !  the jungle is dark but full of diamonds . . .  ignorance is not innocence but sin .  i would fain die a dry death .\",1\n\"Subject: are you ready to get it ?  hello !  viagra is the # 1 med to struggle with mens ' erectile dysfunction .  like one jokes sais , it is strong enough for a man , but made for a woman ; - )  ordering viagra oniine is a very convinient , fast and secure way !  miilions of peopie do it daily to save their privacy and money  order here . . . \",1\n\"Subject: i think , yes .  the things we sell are known over the world !  our goods for guys are in requisition ! \",1\n\"Subject: logo , stationer , website design and so much more !  lt is really hard to recollect a company : the  market is full of suqgestions and the information isoverwhelminq ; but a good  catchy logo , stylish stationery and outstanding webslte  will make the task much easier .  we do not promise that having ordered a ioqo your  company will automaticaliy become a world leader : it isquite clear that  without qood products , effective business organization and practicable aim it  will be hotat nowadays market ; but we do promise that your marketing efforts  will become much more effective . here is the list of clear  benefits : creativeness : hand - made , original logos , specially done  to reflect your distinctive company image . convenience : logo and stationery  are provided in all formats ; easy - to - use content management system letsyou  change your website content and even its structure . promptness : you  will see logo drafts within three business days . affordability : your  marketing break - through shouldn ' t make gaps in your budget . 100 % satisfaction  guaranteed : we provide unlimited amount of changes with no extra fees for you to  be surethat you will love the result of this collaboration . have a look at our  portfolio _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: all graphics software available , cheap oem versions .  good morning ,  we we offer latest oem packages of all graphics and publishinq software from corel , macromedia , adobe and others .  $ 80 adobe photoshop 8 . 0 / cs  $ 140 macromedia studio mx 2004  $ 120 adobe acrobat 7 . 0 professional  $ 150 adobe premiere pro 1 . 5  $ 90 corel designer 10  $ 90 quickbooks 2004 professionai edition  $ 75 adobe pagemaker 7 . 0  $ 70 xara x vl . 1  $ 75 adobe audition 1 . 5  $ 90 discreet 3 d studio max 7  $ 115 adobe golive cs  $ 135 adobe after effects 6 . 5 standard  $ 45 adobe premiere elements  $ 125 corel painter lx  $ 80 adobe liiustrator cs  $ 80 adobe lndesign cs  $ 240 adobe creative suite  $ 140 adobe framemaker 7 . 1  $ 50 ulead cool 3 d production studio 1 . 0 . 1  $ 90 alias motion buiider 6 professional  $ 30 quicken 2004 premier home & biz  $ 30 adobe photoshop eiements 3 . 0  $ 110 adobe premiere pro 7 . 0  learn more . . .  sincerely ,  bernardina \",1\n\"Subject: save your money buy getting this thing here  you have not tried cialls yet ?  than you cannot even imagine what it is like to be a real man in bed !  the thing is that a great errrectlon is provided for you exactly when you want .  ciaiis has a iot of advantages over viaqra  - the effect lasts 36 hours !  - you are ready to start within just 10 minutes !  - you can mix it with alcohoi ! we ship to any country !  get it riqht now ! . \",1\n\"Subject: upgrade  welcome  welcome to a community of sellers that have achieved exceptional level of success and positive feedback on ebay !  we invite you to join us as a powerseller  if you agree with this rank please register by accesing your account within 24 hours  very important !  the registration is active only once .  why become a powerseller ?  powersellers are ebay top sellers who have sustained a consistent high volume of monthly sales and a high level of total feedback with 98 % positive or better . as such , these sellers rank among the most successful sellers in terms of product sales and customer satisfaction on ebay . we are proud to recognize their contributionsto the success of the ebay community !  when you see this icon next to the member ' s user id , be assured that the member is a qualified powerseller who not only maintains a solid sales record but also a 98 % positive feedback rating based on transactions with other ebay users . you can feel assured that your transaction will go smoothly and that you are dealing with one who has consistently met the requirements established by ebay .  about ebay | announcements | security center | policies | site map | help  copyright 1995 - 2005 ebay inc . all rights reserved . designated trademarks and brands are the property of their respective owners . use of this web site constitutes acceptance of the ebay user agreement and privacy policy .  ebay official time \",1\n\"Subject: be informed , be prepared  pandemic alert 2636 284 th place adel , ia 50003 this e - mail message is an advertisement and / or solicitation . \",1\n\"Subject: returned mail : see transcript for details  the original message was received at tue , 19 jul 2005 06 : 59 : 51 - 0400 ( edt )  from p 62 fl 74 . ibrkntol . ap . so - net . ne . jp [ 219 . 98 . 241 . 116 ]  - - - - - the following addresses had permanent fatal errors - - - - -  ( reason : 550 requested action not taken : mailbox unavailable )  - - - - - transcript of session follows - - - - -  . . . while talking to mail . brooksdisanto . com . :  > > > rcpt to :  . . . user unknown\",1\n\"Subject: otc live ' s new home run oil stock otc bb : qoil  dont  sleep on this stock ! this is a hot one ! new orders all  the time ! ! !  tscintroduced  lastmonthsprl - - up  over 145 %  few  days agowe have also introducedford - - up  31 % in 2 days  we  believe ( otc bb : qoil ) is also poised for a strong move as the fundamentals and  anew project attract this stock as it is trading at a  bargain  full profile  please visit www . otclive . com / qoil . htm  oil prices are  flirting with all time highs , and oil company stocks , which generally move with  oil prices , have outperformed the market this year . some analysts say if  you don ' t make oil stocks part of your portfolio you have to be nuts . $ 50  a barrel , $ 60 , $ 70 , $ 80 to $ 100 a barrel have been predicted . no one knows  for sure how high it will go . most agree it will head  higher .  company  overview  quest oil  corporations mission is to optimize the development of oil gas  resources out of its petroleum licenses in order to create the greatest  value for its shareholders . quest oil intends to accomplish this by  managing the exploration process and only incorporating joint venture  partners to execute our predetermined exploitation strategy . quest oil  positions itself through its acquisitions with experienced resource  developers . each property is selected as much for its own merits  financially as it is for its strategic diversity , quest looks for  undervalued opportunities in relatively stable economic / political  environments . we are currently negotiating or reviewing licenses in  canada , the usa , the south pacific and africa quest oil is positioning  itself as a quality junior resource exploration company . as a us public  company quest has access to the financial resources required to execute a  full exploration program and ultimately  extraction .  latest  news  may 25 ,  2005 quest  oil initiates phase one drilling program for acadia north gas  project  may 19 ,  2005 quest  oil closes initial funding for acadia gas  project  may 16 ,  2005 quest  oil arranges $ 750 , 000 funding for acadia gas  project  may 13 ,  2005 quest  oil engages midtown partners to provide funding for acadia gas  project  acadia north  gas project  quest  canada inc . , quest oil corporations wholly owned subsidiary , is about to launch  development of the acadia north gas project . acadia north is the initial launch  project for quest oil . the project was selected based on its reduced risk  characteristics of proven reserves , substantial production in the area and the  projects close proximity to several distribution pipelines allowing immediate  access to market .  the  acadia project is located in southeast alberta near the saskatchewan border . acadia north consists of  two sections totaling 1280 gross acres overlying the vast viking gas target . the  arneson viking pool is a shoreface sand deposit and oriented in a ne - sw  direction . the pool has been encountered by four previously drill wells  since 1972 . the porous sand ranges from 30 feet to 46 feet thick and  contains gas under lain by water . pay zone thickness ranges from 4 feet to  12 feet with a proven and probable recoverable reserve of 8 bcf at a market  value of $ 24 million . according to chapman engineering of calgary , alberta  when including the possible reserves identifies an underlying pool over twice  the pud with a value of $ 45  million .  on  may  20 , 2005  quest oil completed and closed project financing for $ 750 , 000 usd . these  funds will allow for immediate application for licensing and permitting of the  two acadia sections . quest oils operator , transaction oil and  gas ventures has been retained to provide turnkey development through to  tie - in . survey crews are on site and over the next couple of weeks will  determine drill site locations . drill rigs at present are being scheduled  for mid - june and within a two week period will have completed the two well drill  program . well depth is approximately 1 , 800 feet and within two days of  active drilling target depth will be achieved . as the  acadia project progresses through completion and tie - in , it is  expected with a successful drill program , we will be in cash flow within sixty  days .  quest  oil is actively searching and conducting economic reviews on several projects in  north america and abroad . we have spent  considerable amount of time and negotiations with governments in the  middle  east and  are close to entering into a full development program . management will be  releasing information on this endeavor within the next few  weeks .  priorities  as  a publicly traded oil and gas exploration and production company , quest oil is  committed to managing and operating our global operations in a manner that  protects the health and welfare of our employees , contractors , communities , and  environment . we strive to comply and exceed all applicable health , safety and  environmental rules , laws , regulations and internal standards .  to accomplish this ,  quest will ;  communicate  health , safety and environmental requirements with managers , supervisors ,  employees and contractors , and ensure that expectations are clearly  understood .  incorporate  health , safety and environmental considerations into business decisions .  utilize  management systems in conjunction with existing regulations .  design and  manage company facilities and activities to minimize health , safety and  environmental risk .  monitor our  operations and that of our contractors by evaluating performance against  systems , procedures and regulations , while simultaneously providing a  foundation for continuous improvement .  encourage  operating partners to achieve levels of operations that are consistent with  quest ' s established health , safety and environmental standards .  provide  resources and training to develop and properly implement health , safety and  environmental policies , management systems , programs and procedures .  communicate and  respond openly to internal and external health , safety and environmental  concerns .  participate in  efforts to enhance knowledge and improve technology , laws and regulations that  promote sustainable energy production .  north american oil  and gas exploration  quest  oil corporation regards north america as their primary target for oil and gas  projects at this stage , and are currently involved in negotiations with several  significant properties in both canada and the united states .  quest  oil corp . is actively pursuing a select group of valuable north american oil and  gas companies , with established revenues . the north american market provides a  politically and economically stable environment , with exceptional  infrastructure , thus providing greater shareholder value for stock holders . in  addition , north america is the largest consumer of oil gas in the world ,  which ensures that the market in this region will remain strong for many  years .  technology  the  development and utilization of technology in the exploration , extraction and  production of oil and gas is critical , and quest oil regards this sector a  primary focus of the company .  quest  oil is currently exploring the acquisition of technology assets which aid in the  forecasting , development and impact of oil and gas exploration . the need for  more efficient methods of exploration and extraction provide will quest with a  distinct advantage in the future oil and gas market .  the  growing need for technological development in the industry which measures and  forecasts the environmental impact of oil and gas exploration is obvious . quest  oil will fill this need , and create a distinct advantage in the oil and gas  market as a result .  for  more info and powerpoint presentation , please visit www . otclive . com / qoil . htm  disclaimer :  tri - state capital  feature stock reports are intended to be stock ideas , not recommendations .  please do your own research before investing . it is crucial that you at least  look at current sec filings and read the latest press releases . information  contained in this report was extracted from current documents filed with the  sec , the company web site and other publicly available sources deemed reliable .  for more information see our disclaimer section , a link of which can be found on  our web site . this document contains forward - looking statements , particularly as  related to the business plans of the company , within the meaning of section 27 a  of the securities act of 1933 and sections 21 e of the securities exchange act of  1934 , and are subject to the safe harbor created by these sections . actual  results may differ materially from the company ' s expectations and estimates .  this is an advertisement for qoil . the purpose of this advertisement , like any  advertising , is to provide coverage and awareness for the company . the  information provided in this advertisement is not intended for distribution to ,  or use by , any person or entity in any jurisdiction or country where such  distribution or use would be contrary to law or regulation or which would  subject us to any registration requirement within such jurisdiction or country .  1998 - 2005  tristatecapital . com all rights reserved . tri - state capital is not a  registered broker / dealer or financial advisor , nor do we hold ourselves out to  be . all materials presented on our web site and individual reports released to  the public through this web site , e - mail or any other means of transmission are  not to be regarded as investment advice and are only for informative purposes .  before making a purchase or sale of any securities featured on our web site or  mentioned in our reports , we strongly encourage and recommend consultation with  a registered securities representative . this is not to be construed as a  solicitation or recommendation to buy or sell securities . as with any stock ,  companies we select to profile involve a degree of investment risk and  volatility . particularly small - caps and otc - bb stocks . all investors are  cautioned that they may lose all or a portion of their investment if they decide  to make a purchase in any of our profiled companies . past performance of our  profiled stocks is not indicative of future results . the accuracy or  completeness of the information on our web site or within our reports is only as  reliable as the sources they were obtained from . the profile and opinions  expressed herein are expressed as of the date the profile is posted on site and  are subject to change without notice . no investor should assume that reliance on  the views , opinions or recommendations contained herein will produce profitable  results . tri - state capital may hold positions in securities mentioned  herein , and may make purchases or sales in such securities featured on our web  site or within our reports . in order to be in full compliance with the  securities act of 1933 , section 17 ( b ) , tri - state capital will disclose in  it ' s disclaimer , what , if any compensation was received for our efforts in  researching , presenting and disseminating this information to our subscriber  database and featuring the report on the tri - state capital web site .  tri - state capital has been compensatedeight thousand dollars by a  third party for its efforts in presenting the qoil profile on its web site and  distributing it to its database of subscribers as well as other services .  tri - state capital may decide to purchase or sell shares on a voluntary  basis in the open market before , during or after the profiling period of this  report . as of the profile date , no shares have been sold . information presented  on our web site and within our reports contain \"\" forward looking statements \"\"  within the meaning of section 27 a of the securities act of 1933 and section 21 e  of the securities exchange act of 1934 . any statements that express or involve  discussions with respect to predictions , expectations , beliefs , plans ,  projections , objectives , goals , assumptions or future events or performance are  not statements of historical fact and may be \"\" forward looking statements . \"\"  forward looking statements are based on expectations , estimates and projections  at the time the statements are made that involve a number of risks and  uncertainties which could cause actual results or events to differ materially  from those presently anticipated . forward looking statements in this action may  be identified through the use of words such as expects , will ,  anticipates , estimates , believes , or that by statements indicating certain  actions may , could , or might occur .  the reader should  verify all claims and do their own due diligence before investing in any  securities mentioned . investing in small cap securities is speculative and  carries a high degree of risk .  we encourage our  readers to invest carefully and read the investor information available at the  web sites of the securities and exchange commission ( sec ) at :  http : / / www . sec . gov and / or the national association of  securities dealers ( nasd ) at http : / / www . nasd . com . readers can review all public filings  by companies at the sec ' s edgar page . the nasd has published information on how  to invest carefully at its web site .  350 5 th ave . , ste . 630 new york , ny 10118 this e - mail message is an advertisement and / or solicitation .\",1\n\"Subject: about your application  we tried to contact you last week about refinancing your home at a lower rate .  i would like to inform you know that you have been pre - approved .  here are the results :  * account id : [ 837 - 937 ]  * negotiable amount : $ 155 , 952 to $ 644 , 536  * rate : 3 . 81 % - 5 . 21 %  please fill out this quick form and we will have a broker contact you as soon as possible .  regards ,  eli starks  senior account manager  amston lenders , llc .  database deletion :  http : / / www . refin - xnd . net / r . php \",1\n\"Subject: your discount prescriptions resource online .  large natural erection !  never for me the lowered banner , never the last endeavour .  it is quality rather than quantity that matters .  don ' t fight a battle if you don ' t gain anything by winning .\",1\n\"Subject: you want to submit your website to search engines but do not know how to do it ?  submitting your website in search engines may increase  your online sales dramatically .  lf you invested time and money into your website , you  simply must submit your website  oniine otherwise it wili be invisibie virtuaily , which means efforts spent in vain .  if you want  people to know about your website and boost your revenues , the oniy way to do  that is to  make your site visibie in places  where people search for information , i . e .  submit your  website in multipie search enqines .  submit your website oniine  and watch visitors stream to your e - business .  best regards ,  feiipaaguilar _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: online doctors will fill your viagra prescription now ! ! ! qeeb  your sex drive should never be second on the list ! ! !  viagra online now and shipped within 24 hours !  stay hard the way you once could ! ! !  less than $ 7 . 00 per dose to make it all happen again !  don ' t settle for less , keep your lover happy !  no doctor office ' s to visit . simply fill out our  online form , and our u . s . doctor will write your  prescription and send it within 48 hours .  most major prescription drugs also !  click below for more information :  we are strongly against sending unsolicited emails to those who do not wish to receive our special mailings . you have opted in to one or more of our affiliate sites requesting to be notified of any special offers we may run from time to time . we also have attained the services of an independent 3 rd party to overlook list management and removal services . this is not unsolicited email . if you do not wish to receive further mailings , please click here http : / / greenzer . com / remove . php to be removed from the list . please accept our apologies if you have been sent this email in error . we honor all removal requests .\",1\n\"Subject: join some of the most successful people in the world  pursue your goals in life  in business for yourself but not by yourself .  work when and how much you want to work .  process from your house from anywhere in the world .  associates earning 5 , 000 us to 12 , 000 us per mo .  judgment processing professional .  impressive training and support .  detailed information or to stop receiving or to see our address .  these were evidently to assist the boy in fighting the turks , and he was  well pleased to have them . his spirits rose considerably when he found he  had fallen among friends , although most of his new comrades had such evil  faces that it was unnecessary to put on the character markers to judge their  natures with a fair degree of accuracy  i can ' t be very particular about the company i keep , he thought , and this  gang hasn ' t tried to murder me , as the rascally turks did\",1\n\"Subject: are you ready to get it ?  hello !  viagra is the # 1 med to struggle with mens ' erectile dysfunction .  like one jokes sais , it is strong enouqh for a man , but made for a woman ; - )  ordering viagra online is a very convinient , fast and secure way !  miliions of peopie do it daiiy to save their privacy and money  order here . . . \",1\n\"Subject: megga offr  hello , welcome to p needlework harmonline sh uneven op  - one of the leading oniine pharmaceu unapproving tical shops  coiffeur v  selector g  superlative al  l millwright l  healing la  r contraindication a assassin cl  i wifeless s prosecutor va  u penetrating m  andmanyother .  - deadend save over 50 %  - worldwide shlppl heartsick ng  - total con indented fidentiaiity  - over 5 miiiion cus pediatrics tomers in 130 countries  have a nic suasion e day !\",1\n\"Subject: congratulations on your 2 new signups  come claim your 2 free signups . we will give  you 2 free signups and then put 2 under both  of them , so on and so forth ! we will in essence  build your downline for you ! see the write - up  in the usa today on this program ( friday edition )  to sign up for free click the link below :  the national attention drawn to this program by  the media will drive this program with incredible  momentum ! don ' t wait , if you wait , you loose people .  this is building incredibly fast ! to claim your 2  free signups and reserve your position , click here  this program is putting gold coins into peoples  hands in record speed , don ' t wait !  all the best ,  gold coin distribution  1 - 800 - 242 - 0363 , mailbox 1993  to be removed from our database , please click below : \",1\n\"Subject: viagra is the # 1 med to struggle with mens ' erectile dysfunction .  feeling better is just a click away .  be true to your work , your word , and your friend .  money is not required to buy one necessity of the soul .  life shrinks or expands in proportion to one ' s courage .  dancing is a contact sport . football is a hitting sport .\",1\n\"Subject: are you ready to get it ?  hello !  viagra is the # 1 med to struggle with mens ' erectile dysfunction .  like one jokes sais , it is stronq enouqh for a man , but made for a woman ; - )  orderinq viaqra online is a very convinient , fast and secure way !  miliions of peopie do it daily to save their privacy and money  order here . . . \",1\n\"Subject: important - cable tv consumers  how are you , visioson @ hpp . za . net  it ' s finally here : the digital cablefilter  goto the page between the arrows below :  - > - > - > - > filtersppv . com  no more ? add / r to the domain above .  best regards ,  juliana o . guidry  projecthoneypot @ projecthoneypot . org\",1\n\"Subject: use this handy interest calculator to get current rate information . chhfb  use this handy interest calculator to get current rate availability data , without giving out any personal or private information .  this was sent to you by an mediagroup for smartmortgageusa . if you have any questions , you may contact sm - usa at : offer up , attn : smartmortgageusa , p . o . box 78361 , san francisco , ca 94107 - 8361 . if you wish to exclude yourself from future sm - usa items please use this to go to the website and then use the choice at the bottom of the page .  wjodybxdzknt\",1\n\"Subject: you launched a website but no one visits it ?  submitting your website in search engines may increase  your online sales dramatically .  lf you invested time and money into your website , you  simply must submit your website  oniine otherwise it wili be invisible virtuaiiy , which means efforts spent in vain .  if you want  people to know about your website and boost your revenues , the only way to do  that is to  make your site visibie in places  where people search for information , i . e .  submit your  website in multipie search enqines .  submit your website oniine  and watch visitors stream to your e - business .  best regards ,  vaidaweeks _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: looking for a specific medication ? let us know what you need !  healthy living for everyday life .  we rarely confide in those who are better than we are .  the words that enlighten the soul are more precious than jewels .  ignore the awful times , and concentrate on the good ones .  man is free in his imagination , but bound by his reason .\",1\n\"Subject: request for assistance  barrister adewale coker chambers  legal practitioners / notary public  blk 804 - law house building  lagos - nigeria .  for your kind attention ,  request for assistance  it is my humble pleasure to write you this letter irrespective of the fact that you do not know me . however , i am in search of a reliable and trustworthy person that can handle a confidential transaction of this nature .  i am barrister adewale coker , a family lawyer to our former military rule , general sani abacha who died suddenly in power some years ago . since his untimely demise , the family has suffered a lot of harassment from the regimes that succeeded him . the regime and even the present civilian government are made up of abacha ' s enemies . recently , the wife was banned from traveling outside kano state their home state as a kind of house arrest and the eldest son still in detention . although , a lot of money have been recovered from mrs . abacha since the death of her husband by the present government , there ' s still huge sums of money in hard currencies that we have been able to move out of the country for safe keeping to the tune of us $ 50 million . this money us $ 50 million is already in north american and if you are interested , we will prepare you as the beneficiary of the total funds , and you will share 25 % of the total funds after clearance from the security company .  note , there is no risk involved in this project because l am involved as abacha ' s confidant . please you should keep this transaction a top secret and we are prepared to do more business with you pending your approach towards this project . i await your urgent response . thanks .  yours faithfully  barrister adewale coker .  - - - -  this sf . net email is sponsored by : thinkgeek  welcome to geek heaven .  http : / / thinkgeek . com / sf  spamassassin - sightings mailing list \",1\n\"Subject: all graphics software available , cheap oem versions .  good morning ,  we we offer latest oem packages of all graphics and publishing software from corei , macromedia , adobe and others .  $ 80 adobe photoshop 8 . 0 / cs  $ 140 macromedia studio mx 2004  $ 120 adobe acrobat 7 . 0 professionai  $ 150 adobe premiere pro 1 . 5  $ 90 corei designer 10  $ 90 quickbooks 2004 professional edition  $ 75 adobe paqemaker 7 . 0  $ 70 xara x vl . 1  $ 75 adobe audition 1 . 5  $ 90 discreet 3 d studio max 7  $ 115 adobe golive cs  $ 135 adobe after effects 6 . 5 standard  $ 45 adobe premiere elements  $ 125 corei painter lx  $ 80 adobe iiiustrator cs  $ 80 adobe lndesign cs  $ 240 adobe creative suite  $ 140 adobe framemaker 7 . 1  $ 50 uiead cooi 3 d production studio 1 . 0 . 1  $ 90 alias motion builder 6 professionai  $ 30 quicken 2004 premier home & biz  $ 30 adobe photoshop eiements 3 . 0  $ 110 adobe premiere pro 7 . 0  learn more . . .  sincerely ,  luther \",1\n\"Subject: mortgage for even the worst credit zwzm  details  want to refinance ?  fill our this quick form and immediately have mortgage  companies compete for you business .  you will be offered the , absolute , best refinance rates  availible !  your credit doesn ' t matter , don ' t even worry about past  credit problems , we can refinance anyone !  let us put our expertise to work for you !  or site 2  erase  http : / / 210 . 51 . 251 . 244 / al / uns / list . htm\",1\n\"Subject: investor insight  the oil and gas advisory  now that oi | and gas has entered a long - term bul | market ,  our speciaity in pinpointing the hottest companies of the few remaining  undervalued energy piays has produced soaring returns .  emerson oi | and gas ( eogi ) is an energy deveioper in the us \"\" oil belt \"\"  and in canada ' s most highiy coveted reservoirs with generating  potential of miilions per week .  breaking news ! ! !  emerson oi | and gas , inc . , ( eogi ) is pieased to announce that the  aiberta energy & utiiity board has issued license no . o 330206 for the  company ' s wel | 11 - 16 - 24 - 2 the acadia project .  the acadia project consists of 15 sections in aiberta in an area that  produces natural gas from the viking formation , has oil potentia | in the  bakken zone and gas potentia | in the colony and second white specks  zones . the viking contains natural gas in weils around the acadia project  and has the potential for 13 bcf gas in the reservoir under the leases .  gas welis in the area have caicuiated aof rates up to 14 mmcf per day .  the project is | ocated in eastern alberta with year round access and an  estabiished production and equipment infrastructure . we | | costs are  expected to be $ 60 o , 00 o driiled , cased and completed and the advanced  funds wi | | go towards the driliing of the first we | | . each well on a | ease  earns emerson a 49 % working interest in one section .  emerson oi | and gas , inc . , ( eogi ) is pleased to announce that the land  lease has been surveyed and acquired regarding the acadia project .  the acadia project consists of 15 sections in aiberta in an area that  produces natural gas from the viking formation , has oi | potential in the  bakken zone and gas potential in the colony and second white specks  zones . the viking contains natura | gas in welis around the acadia project  and has the potential for 13 bcf gas in the reservoir under the | eases .  gas weils in the area have calcuiated aof rates up to 14 mmcf per day .  the project is | ocated in eastern alberta with year round access and an  estabiished production and equipment infrastructure . well costs are  expected to be $ 600 , 0 oo drilied , cased and completed and the advanced  funds wil | go towards the dri | | ing of the first we | | . each well on a | ease  earns emerson a 49 % working interest in one section .  symbo | - eogi  price - . 026  the vaiue of eogi ' s shares wi | | skyrocket :  1 . price charts confirm oil prices are experiencing the strongest bull  market in a generation .  2 . natural gas prices have tripied in the last two years .  3 . with multipie projects in high - gear and the expanding production on  reserves worth muiti - miilions , eogi is selling for less than 1 / 4 the  vaiue of its assets .  4 . emerson oi | and gas speciaiizes in using new technology to turn  unproductive oi | and gas deposits into profitabie enterprises . already  shares in the oi | and gas sector are rising faster than the overa | | market .  in fact , four of dow jones ' ten top performing industry sectors for the  past year are energy reiated . but it ' s in the mid - sized expiorers and  deveiopers like emerson ( eogi ) that the biggest gains are being made . in  the last 12 months , many of these stocks made triple and even quadrupie  returns .  our subscribers need to pay particularly ciose attention to undervalued  eogi shares , because it won ' t be a bargain for | ong . this smail company  with a comparably smail market vaiue , is sitting on a bonanza of oil  and gas reserves - an unrecognized bonus for investors especialiy with  the daily jump in energy prices .  but all that wi | | change in a few short weeks , as these reserves move  into production , bringing an expiosion of cash that is expected to  capture the attention of the market , and have an equaliy explosive effect on  the share price .  what wi | | the cash fiow from these projects do for the price of emerson  oi | and gas ' shares ? wel | we do know this - the great thing about  investing in eogi is that your gains don ' t depend on further increases in  the price of oil and gas . even if energy prices stay flat , or deciine  siightly , you will stiil make a very heaithy return . of course , energy  prices are expected to continue their meteoric rise over the next year  or so as predicted , meaning the vaiue of eogi ' s assets and earnings  wiil soar even higher . in that case , the reward for investors wiil be  staggering .  overall , we consider eogi to be one of the last outstanding energy  plays in the oil and gas sector . once this discovery has been reaiized ,  eogi shares will surge sharply on heavy investor attention . we have  identified this discovery for immediate accumulation . eogi ' s oil and  gas reserves are well established and are going into massive  production . early investors wi | | secure optimum gains , and any additiona | news in  this area wi | | realiy turn up the heat , causing us to revise our  targets upward in next week ' s builetin .  oi | and gas advisory ( oga ) is not a investment expert . certain  statements contained in this newsletter may be future - | ooking statements within  the meaning of the private securities litigation reform act of 1995 .  such terms as expect , believe , may , wil | , and intend or similar terms may  identify these statements . past - performance is not an indicator of  future - resuits . this is not an expert to acquire or sel | securities . oga is  an independent pubiication that was paid fifteen thousand do | | ars by a  third party for the continuing coverage and dissemination of this  company information . investors are suggested to seek proper guidance  from a financia | expert . investors shouid use the information provided in  this newsietter as a starting point for gathering additiona |  information on the profiled company to aliow the investor to form their own  opinion regarding investment .  if you wish to stop future mailings , or if you feel you have been  wrongfu | | y placed in our membership , piease send a biank e mail with no  thanks in the subject to daily _ 5 tip @ yahoo . com\",1\n\"Subject: save your money by getting an oem software !  need in software for your pc ? just visit our site , we might have what you need . . .  best regards ,  astrid \",1\n\"Subject: returned mail : see transcript for details  the original message was received at tue , 19 jul 2005 12 : 59 : 25 + 0200  from [ 222 . 89 . 79 . 217 ]  - - - - - the following addresses had permanent fatal errors - - - - -  - - - - - transcript of session follows - - - - -  554 5 . 0 . 0 username or alias unknown  550 5 . 1 . 1 . . . user unknown\",1\n\"Subject: free info . start your own internet consulting business ntsj  did you know 4 of the country ' s 10 richest people never graduated from college ?  they had the courage to dream , and the wisdom to  take advantage of opportunities .  do you have the courage and the wisdom to  change your life ?  you deserve success !  checking out this web site is free , and it could pay off in the form of  a dramatically improved lifestyle for you and your loved ones .  you will never know unless you check it out now !  invest just one minute to check out this website right now .  if you would like to be removed from all future mailings just  send and email to erienw 3943 @ freemail . hu\",1\n\"Subject: sorry they were in a meeting  urgent noticepending merger to increase revenue 236 % now is the time to invest in gwihgwih is rapidly expanding through acquisitions . in the lst quarter two mergers are in proces with a schedule to buy four more profitable companies by the year end . gwih plans to file for nasdaq . stock prices historically increase when listed on nasdaq .  on may 30 th , a year long investor relation and public awareness campaign will be launched to build shareholder equity . several well - known stock pick newsletters , tv , radio and newsgroups will provide coverage on gwih and it ' s acquisitions . all - star management team with advanced degrees , specialized training , proven track records and over 90 years combined experience . they are true deal makers , executors and closers . put gwih on your watch list , aquire a postion in gwih today ! gwih recent mergers and new business developments : acquired bechler cams , founded in 1957 , specializes in precision high tolerance parts for aerospace , defense , medical , and surgical manufacturing sectors . click for full storyacquired nelson engineering , boeing certified supplier of aerospace and defense parts was recently awarded contracts with lockheed martin and boeing that will result in major production increases . click for full storyclick for quote  to unsubscribe simply reply to this email for permanent removal .  information within this advertisement contains \"\" forward looking \"\" statements within the meaning of section 27 ( a ) of the u . s . securities act of 1933 and section 21 ( e ) of the u . s . securities exchange act of 1934 . any statements that express or involve discussions with respect to predictions , expectations , beliefs , plans , projections , objectives , goals , assumptions or future events or performance are not statements of historical facts and may be forward looking statements . forward looking statements are based on expectations , estimates and projections at the time the statements are made that involve a number of risks and uncertainties which could cause actual results or events to differ materially from those presently anticipated . forward looking statements may be identified through the use of words such as expects , will , anticipates , estimates , believes , or by statements indicating certain actions may , could or might occur . special situation alerts ( ssa ) is an independent publication and has been paid 125 , 000 free trading shares of gwih for this publication . ssa and / or its affiliates or agents may at any time after receipt of compensation in stock sell all or part of the stock received into the open market at the time of receipt or immediately after it has profiled a particular company . ssa is not a registered investment advisor or a broker dealer . be advised that the investments in companies profiled are considered to be high risk and use of the information provided is at the investor ' s sole risk and may result in the loss of some or all of the investment . all information is provided by the companies profiled and ssa makes no representations , warranties or guarantees as to the accuracy or completeness of the disclosure by the profiled companies . investors should not rely on the information presented . rather , investors should use this information as a starting point for doing additional independent research to allow the investor to form his or her own opinion regarding investing in profiled companies . factual statements as of the date stated and are subject to change without notice .  * * * * * * *\",1\n\"Subject: aggressive investors should be watching sports alumni , inc .  investor alert !  if a group of  investors would have the opportunity to have invest in the nba ,  nfl , nbl , nhl , and mls when the leagues started . how rich would  they be today ? today we will be introducing a new football alumni  association that will bring ex high school , college , and  professional athletes around the  united states  to relive  their glory days .  as savvy  investor prepare to buy this stock , it has become clear that this  could be one of the most explosive opportunities of the year . you  still have the opportunity to buy this stock for pennies to the  dollar - but for how long ?  here at wall  street research we do not get excited about many stocks . that ' s  because its getting harder and harder to find stocks that have  potential to make investors rich very quickly . blue  chips can ' t and ipo ' s rarely pay off small  investors . history shows that the only consistent way for small  investors to see their money double , triple , or more on the  short run is to be smart enough to find small caps with huge  potential and buy before they take off - the kind of stocks that  gets us excited .  company in  review  pink sheets  symbol : spni  http : / / www . . com  recent price $ 0 . 50  target price $ 2 . 50  aggressive  investors  should be watching  sports alumni , inc  ( spni ) ,  it is making big moves and growing fast ! when the  nba , nfl ,  nbl , nhl ,  and mls , talk about lockouts , half seasons or  no season , salary caps , and even the referees join the turmoil  every year one of these leagues threatens the passion  for sports ! . will they play again this season ? sports alumni , inc is  about bringing the passion of the former game to all ex high  school , college , and professional athletes . not about how  big of a salary they will be making the next couple of years .  sports alumni , inc  sports alumni , inc maybe you started playing football when you where  8 years old and never quite lost the love of the game . perhaps you  even played college ball . what ever level you played , its a good bet  that your passion for the game did not end when the whistle blew and  the last play ended . that is what american football alumni seeks to  bring back to the multi - million - member target market of former and  current players and coaches .  recent surveys reveal that 70 percent of former football players would  be interested in joining a national alumni association whose makeup is  former high school and college players . seventy - nine percent are  interested in reunions with former teammates and 55 percent said  they ' d be interested in purchasing their old school football jerseys ,  especially if their names were included .  the afa will bring old teams together through its subscriber network ,  while offering on line stores of customized merchandise , a first class  magazine , conventions , football travel packages national and local  polls . this is an un - tapped industry within a multi - billion dollar  marketplace .  companys recent news  sports alumni , inc . ( spni  pk )  announced today the official launch of their first sports alumni micro  site ,  www . . com . this  site is the preliminary sign up point for their first of many sports  alumni sites the company plans to launch this year . the main member  site launch is expected early july 2005 with a $ 30 million  media blitz to follow this fall . we are very pleased to have ai  software solutions as our software development and web hosting partner  as they are clearly one of the top companies in this industry and can  fully support our expected rapid growth . they have integrated  seamlessly with our organization and made development a snap , stated  sports alumnis president matthew totty .  sports  alumni will also be marketing football fest 2006 this fall , a grand  event planned in las vegas ,  june  2006 , where they expect attendance of over 150 , 000 former  players and coaches . we have everything imaginable planned for this  event and were really excited for this to be the football event in  the country to attend each year . its a chance for our members to  rub elbows with footballs greats and just have a good time . if you  lived it , youre one of us , states mr . totty .  smart investors know its easier to take a $ 1 . 00 stock to  $ 5 . 00 than to take a $ 10 . 00 stock to $ 50 . 00 .  but the word is  getting out . chances like this are few and far between and the buzz  on the street is that spni is a buy ! who knows when youll have  another chance to turn such a huge profit again ? smart investors  strike when the irons hot and with spni , its sizzling !  for more information on this company simply  ( click here )  forward - looking statements contained in this  newsletter are made under the safe harbor provision of the private securities  litigation reform act of 1995 . any such statements are subject to risks  and uncertainties that could cause actual results of events to differ materially  from those anticipated in such forward looking statements . wall street research ,  quick business solutions , llc  ( wsr - qbs ) . has received three hundred thousand shares from a group of investors .  ( wsr - qbs ) . for the production and distribution of this newsletter .  ( wsr - qbs ) . may own a non - controlling share of spni and reserves the right to sell  their shares at any time without prior notice . this profile is not an offer to  buy or sell any securities mentioned herein . while the publisher believes all  sources of information to be factual and reliable , in no way does it represent  or guarantee the accuracy thereof , nor the statements made herein and have made  no independent verification of the facts , assumptions and estimates contained in  this newsletter . the user assumes all risk as to the accuracy and the use of  this document . always consult a professional investment advisor before making  any purchase . for further details concerning risks and uncertainties , please  request additional information directly from the company featured above or the  sec filings of the company including the companys most recent annual and  quarterly reports .  qbs 23031 sonoita mission viejo , ca 92692 this e - mail message is an advertisement and / or solicitation . \",1\n\"Subject: delivery status notification ( failure )  the following message to was undeliverable .  the reason for the problem :  5 . 1 . 0 - unknown address error 550 - ' 5 . 1 . 1 unknown or illegal alias : gkoppmal @ elp . rr . com '\",1\n\"Subject: trusted savings on prescription drugs .  now you can diversify the acts in your bedroom !  the foundation of every state is the education of its youth .  everybody hates me because i ' m so universally liked .  silent gratitude isn ' t much use to anyone .\",1\n\"Subject: acrobat pro 7 . 0 $ 69 . 95 systemworks  opt - in email special offer unsubscribe me search software top 10 new titles on sale now ! 1 office pro 20032 adobe photoshop 9 . 03 windows xp pro 4 adobe acrobat 7 pro 5 flash mx 20046 corel draw 127 norton antivirus 20058 windows 2003 server 9 alias maya 6 wavefrtl 0 adobe illustrator 11 see more by this manufacturer microsoft symantec adobe customers also bought these other items . . . microsoft office professional edition * 2003 * microsoftchoose : view other titles list price : $ 499 . 00 price : $ 69 . 99 you save : $ 429 . 01 ( 86 % ) availability : available for instant download ! coupon code : mtiyn sales rank : # 1 system requirements | other versions date coupon expires : august 31 st , 2005 average customer review : based on 1144 reviews . write a review . adobe photoshop cs 2 v 9 . 0 adobechoose : view other titles list price : $ 599 . 00 price : $ 69 . 99 you save : $ 529 . 01 ( 90 % ) availability : available for instant download ! coupon code : a 6 ogcgbh sales rank : # 2 system requirements | other versions date coupon expires : august 31 st , 2005 average customer review : based on 105043 reviews . write a review . microsoft windows xp professional or longhorn edition microsoftchoose : view other titles list price : $ 279 . 00 price : $ 49 . 99 you save : $ 229 . 01 ( 85 % ) availability : available for instant download ! coupon code : lussv sales rank : # 3 system requirements | other versions date coupon expires : august 31 st , 2005 average customer review : based on 1796 reviews . write a review . adobe acrobat professional v 7 . 0 adobechoose : view other titles list price : $ 499 . 00 price : $ 69 . 99 you save : $ 429 . 01 ( 85 % ) availability : available for instant download ! coupon code : m 8 kb 2 xxm sales rank : # 4 system requirements | other versions date coupon expires : august 31 st , 2005 average customer review : based on 107780 reviews . write a review .\",1\n\"Subject: fast ship viagra , phentermine , etc . . . riym  we ship worldwide within 24 hours !  no waiting rooms , drug stores , or embarrassing conversations .  our licensed pharmacists will have your order to you in 1 or 2 days !  click this link to get started today !  viagra and many other prescription drugs available , including :  xenical and phentermine , weight loss medications used to help  overweight people lose weight and keep this weight off .  valtrex , treatement for herpes .  propecia , the first pill that effectively treats  male pattern hair loss .  zyban , zyban is the first nicotine - free pill that ,  as part of a comprehensive program from  your health care professional , can help you  stop smoking .  claritin , provides effective relief from the symptoms  of seasonal allergies . and much more . . .  cilck this link to get started today !  to be extracted from future contacts visit :  http : / / worldrxco . com / remove . php  flierguy 49 _ 2000  http : / / xent . com / mailman / listinfo / fork\",1\n\"Subject: fca offrr  hello , welcome to strengthen pharmonline s preternatural hop  - one of the leading on wheatstone iine pharmaceutical shops  sesterce v  seadog g  messroom al  crocodile ll  l mounted a  r roadster ac fusible l  catenae isv calorie a  u fasten m  andmanyother .  - save over 5 diaper 0 %  - worldwide shl beforehand pplng  - total confidentia headcheese iity  - ov parterre er 5 miiiion customers in 130 countries  have a arithmetician nice day !\",1\n\"Subject: in the heart of your business !  corporate image can say a lot of things about your  company . contemporary rhythm of life is too dynamic . sometimes it takes only  several seconds for your company to be remembered or to be iost among  competitors . get your logo , business stationery or website done right  now ! fast turnaround : you wiii see severai ioqo variants in three  business days . satisfaction quaranteed : we provide uniimited amount of  chanqes ; you can be sure : it wili meet your needsand fit your  business . fiexibie discounts : loqo improvement , additional formats , buik  orders , special packages . creative design for competitive price : have a look at it right  now ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: watch this penny stox trade  big news expected . this should invoke large gains .  this stox will explode . do not wait until it is too late .  new news expected this comming week . expected 7 day price $ 9 . 00  ( sym . bol : cwtd . ob )  price : $ 2 . 17  short term target : $ 10 - $ 13  12 month target : $ 24  press release  china world trade corporation announced strategic partnership with the  foundation for globalization cooperation  tuesday june 7 , 8 : 20 am et  tianhe , guangzhou , china , june 7 / xinhua - prnewswire / - - china world trade  corporation ( otc bulletin board : cwtd . ob - news ) , announced today that the  ceo clubs china limited ( \"\" ceo clubs \"\" ) , a subsidiary of cwtc , signed a strategic  alliance agreement with the foundation for globalization cooperation ( ' ' fgc ' ' ) .  under the agreement , ceo clubs will represent fgc for merchandising and selecting  sponsors under certain conditions for the world culture diversification forum  and the third global cooperation forum , which will be held in november 2005 ,  in hangzhou , china .  china world trade corporation co - hosts the 2005 guangdong , hong kong ,  macau wtcs golf tournament  a $ 1 , 000 dollar investment could yield a $ 5 , 000 dollar profit in just  one trade if you trade out at the top . cwtd . ob should be one of the most  profitable stocks to trade this year . in this range the stock has  potential to move in either direction in bigs wings . this means you  should be able to buy at the lows and sell at the highs for months  to come  you could make $ $ $ thousands of dollars $ $ $ trading .  chms over and over again .  cwtd . ob is also on the reg sho threshold list , this means someone is short  the stock . any significant volume spike in cwtd . ob could yield drastic  results . if the people that are short have to cover , they will be buying  the shares from you at higher prices . this makes this stock a triple  play for profits ! ! !  for pennies you can participate in a stock that could yield results over  and over again just based on the trading patterns .  if the company is able to effectuate it . s business model , watch out ! ! !  we could see a great story in the making .  good luck and trade out at the top ! ! ! !  disclaimer :  information within this email contains \"\" forwardlooking statements \"\" within  the meaning of section 27 aof the securities act of 1933 and section 21 b of  thesecurities exchange act of 1934 . any statements that express or involve  discussions with respect to predictions , expectations , beliefs ,  plans , projections , objectives , goals , assumptions or future events or  performance are not statements of historical fact and may be \"\" forward  looking statements . \"\" forwardlooking statements are based on  expectations , estimates and projections at the time the statements are made  that involve a number of risks and uncertainties which could cause actual  results or events to differ materially from those presently anticipated .  forward looking statements in this action may be identified through the use  of words such as \"\" projects \"\" , \"\" foresee \"\" , \"\" expects \"\" , \"\" will , \"\" \"\" anticipates , \"\"  \"\" estimates , \"\" \"\" believes , \"\" understands \"\" or that by statements indicating  certain actions \"\" may , \"\" \"\" could , \"\" or \"\" might \"\" occur . risk factors include  general economic and business conditions , the ability to acquire and develop  specific projects , the ability to fund operations and changes in consumer  and business consumption habits and other factors overwhich the company has  little or no control . the publisher of this newsletter does not represent  that the information contained in this message states all material facts or  does not omit a material fact necessary to make the statements therein not  misleading . all information provided within this email pertaining to  investing , stocks , securities must be understood as information provided and  not investment advice . the publisher of this newsletter advises all readers  and subscribers to seek advice from a registered professional securities  representative before deciding to trade in stocks featured within this  email . none of the material within this report shall be construed as any  kind of investment advice or solicitation . many of these companies are on  the verge of bankruptcy . you can lose all your money by investing in this  stock . we urge you to read the company ' s sec filings now , before you invest .  the publisher of this newsletter is not a registered invstment advisor .  subscribers should not view information herein as legal , tax , accounting or  investment advice . in compliance with the securitiesact of 1933 , section  17 ( b ) , the publisher of this newsletter is contracted to receive six hundred  thousand free trading shares from a third party , not an officer , director or  affiliate shareholder for the circulation of this report . be aware of an  inherent conflict of interest resulting from such compensation due to the  fact that this is a paid advertisement and is not without bias . the party  that paid us has a position in the stock they will sell at anytime without  notice . this could have a negative impact on the price of the stock , causing  you to lose money . all factual information in this report was gathered from  public sources , including but not limited to sec filings , company websites  and company press releases . the publisher of this newsletter believes this  informationto be eliable but can make no guarantee as to its accuracy or  completeness . use of the material within this email constitutes your  acceptance of these terms .\",1\n\"Subject: * * your account may suspend * *  dear paypal member ,  you have received this email as part of a verified paypal campaign meant to  increase security for your credit card against online credit card fraud .  verified paypal has detected that you have been using this email address for  online purchases and in order to protect yourself against online credit card  fraud we would like to introduce you to a new system that will protect you  against frauds .  you can associate your email address to your credit card and receive a  password that you will use for any online purchase . also you will be notified  by verified paypal when an online purchase is made .  follow the below and go to verified paypal . you can join the verified paypal  system or learn more about this . \",1\n\"Subject: did yoou need medz ?  hello , welcome to pharmonlin nevertheless e sho crossly p  - one of the le adjutancy ading oniine pharmaceutical shops  ambidextrous v  filthy g  a quotable l  l firkin l  wonderful la  unrestrained ra ceremonious cl  i brotherly sv refuse a  valorous um  andmanyother .  - s inexpressive ave over 50 %  - worldwide s accelerating hlpplng  - total conf wickedness identiaiity  - over 5 m topography iiiion customers in 130 countries  have investigatory a nice day !\",1\n\"Subject: localized software , all languages available .  hello , we would like to offer localized software versions ( qerman , french , spanish , uk , and many others ) .  all listed software is availabie for immediate downioad !  no need to wait 2 - 3 week for cd deiivery !  just few exampies :  - norton internet security pro 2005 - $ 29 . 95  - windows xp professionai with sp 2 fuil version - $ 59 . 95  - corei draw graphics suite 12 - $ 49 . 95  - dreamweaver mx 2004 ( homesite 5 . 5 includinq ) - $ 39 . 95  - macromedia studio mx 2004 - $ 119 . 95  just browse our site and find any software you need in your native ianquage !  best reqards ,  maynard \",1\n\"Subject: entrust your visual identity to us  thinking of breathing new life into your business ?  start from revamping its front - endlogo and  visualidentity .  we offer creative custom design of iogos ,  stationery and web - sites . under our carefui hand thesepowerfui marketing  toois wiil bring a breath of fresh air into your business and make you stand out  amongthe competitors .  you are just a ciick  away from your future success . ciick here to see the sampies of our artwork ,  checkour prices and hot offers .  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: important : $ 97438  dear homeowner , you have been pre - approved for a $ 300 , 000 loan at a low fixed rate . this offer is being extended to you unconditionally and your credit is in no way a factor . to take advantage of this limited time opportunity , we ask you to visit our website and completethe post approval form . http : / / www . kxxjn . com / i / lzevaw 5 8 zymg 5  rodger pereiraru patrick financial group - - - - - - - - - - - - - - - - - - - - - - 9 : fadzilah chloride belgrade airway gaconniehttp : / / www . kxxjn . com / rem . php . . . not interested\",1\n\"Subject: need a graphic artist ? come here .  thinking of breathing new life into your business ?  start from revamping its front - endlogo and  visualidentity .  we offer creative custom desiqn of logos ,  stationery and web - sites . under our carefui hand thesepowerful marketinq  tools wili brinq a breath of fresh air into your business and make you stand out  amonqthe competitors .  you are just a ciick  away from your future success . ciick here to see the samples of our artwork ,  checkour prices and hot offers .  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: our medz  how to save on your medlcations youthful over 70 % .  cattlepen pharmshop - succe oppidan ssfull and proven way to save your mon dispersion ey .  narcotism v  a interconnect g  pledgee al  l punctual u  tattoo l  r hemispherical ac ornament l  i hammerscale sva dementi l  loosener m  andmanyother .  best p macrocosm rlces .  worldwide sh newgate lpplng .  easy order liveried form .  total c mysticism onfidentiaiity .  250 , 000 s aphrodite atisfied customers .  order today and s weathered ave !\",1\n\"Subject: computer file protection  dear hulkjr ,  want the best in computer file security ?  in today ' s society of computer hacking , identity theft and general snooping , it is  more important than ever to take precautions to protect your privacy . the internet  is by far the preferred manner of communication in today ' s fast paced world . it does ,  however , present privacy concerns when communicating personal or confidential  information . it also provides computer hackers an extensive playground , with your  identity and financial information as the grand prize .  lock & key encrypter is the perfect solution to these privacy concerns . this affordable ,  easy to use software encrypts your computer files for safe storage or transmittal  over the internet .  don ' t become a victim . protect your privacy and your financial well being .  order today ! this is a limited time offer at this amazing low price $ 19 . 99  visit our secure website for an in - depth look at this product :  http : / / www 299 . fastwebsnet . com  to be eliminated from future marketing : \",1\n\"Subject: commercialization of nasa technology  hey , i thought you might like to take a look at viaspace  the cohen report  viaspace was founded in 1998 as a spin - off of the caltech / nasa jet propulsion laboratory ( jpl ) to transform technologies originally developed for space and defense markets into profitable commercial enterprises . viaspace seeks opportunities in high growth markets delivering on problems with growing global relevance by leveraging unique expertise not available elsewhere in the commercial world . viaspace sees a compelling business opportunity in the homeland security public safety and fuel cell markets . viaspace target markets are in excess of $ 100 b / yr and growing with a cagr of over 20 % . in the past six years viaspace has created three companies , spectrasensors , qwip technologies and vialogy corp . their websites provide a background on the commercialization of nasa technology , ( spectrasensors . com , qwip . com , vialogy . com ) . the company ' s current focus is on three subsidiaries , direct methanol fuel cell , arroyo sciences and ionfinity .  direct liquid methanol fuel cell  direct methanol fuel cell corporation ( dmfcc ) will provide disposable methanol fuel cell cartridges for tomorrow ' s fuel cell - powered portable electronic devices such as laptop computers and cell phones . methanol fuel cells ( dfmc ) are expected to replace lithium ion batteries in portable electronic devices . a dfmc can power a laptop for up to 10 hours on a disposable cartridge that costs $ 2 to $ 3 . a smaller cartridge can power a cell phone for up to 3 weeks . we believe consumers will spend a few extra dollars for the convenience of keeping their cell phones and other electronic devices operating . as a disposable product , it generates recurring revenue for dmfcc .  the technology is protected by over 70 issued and pending patents . toshiba , nec , sanyo , and samsung have unveiled prototype fuel cell powered products that more than double the operating time over existing battery technology . dmfcc has opened a tokyo office to work closely with japanese manufacturers .  arroyo sciences , inc .  arroyo focuses on the fusion of radio frequency , nuclear and electromagnetic imaging to deliver information products in transportation , supply chain , security , logistics assurance and first responder safety markets . the micro tracker product enables a wireless tracking for first responders in hazardous environments . this product combines radio frequency identification ( rfid ) tags , wireless digital communications , ground positioning satellite ( gps ) , data for 2 - d and 3 - d geolocation determination , geographic information system ( gis ) and sensor technologies . real - time processing of many high data content inputs is required for the instantaneous assessment of danger . applications include improved safety for fire department personnel in emergency situations , improved coordination of multi - agency deployments and extended operations in hazardous environments .  the cobra product uses the imaging and sensing technology to provide early threat indicators for coastal surveillance and public infrastructure protection such as ports , power plants , airports , and telecommunication facilities . real time sensory and image data is processed and software is customized to discriminate between friend and foe .  deepscan is a software system that provides automatic analysis of air and seaport cargo containers based on x - ray and gamma ray imaging . arroyo is currently using deepscan for bomb and hazardous material detection in cargo .  ionfinity  ionfinity has developed the next generation mass spectrometry ( ms ) technology that is 10 times more sensitive than existing ms , with a 10 times increase in mass range . higher sensitivity enables the comprehensive monitoring and detection of biological , chemical and nuclear contaminants . the current market for ms is estimated at $ 1 . 2 billion annually . the compact size and rugged portability will expand the market . new applications include enabling port inspection personnel to detect traces of contraband , epa air quality monitoring and assisting in hazardous material clean up .  additional projects under review  projects not included in our forecast are ( 1 ) a water purification technology and ( 2 ) interactive radio . the water purification system displays impressive statistics in that it can convert brackish , sewage or industrial wastewater into ultra - pure water . the water system is scalable from house to municipal usage and will last 25 years while requiring minimal maintenance . the interactive radio enables a listener to receive emails or web sites delivered in response to what is broadcast . the radio station essentially receives input from listeners that could enhance advertising and improve vertical market focus .  forecasts and valuation  we expect revenues for dmfcc will be driven by ( 1 ) increasing wireless usage of computing devices and ( 2 ) the existing need to extend cell phone battery life . we expect revenues for dmfcc will commence in 2007 and grow to $ 195 million by 2009 . homeland security expenditures on airport and seaport security will be a primary revenue driver for arroyo sciences , which will begin to generate revenues in 2005 , and will grow to $ 90 million in 2009 . we expect commercial revenues for ionfinity will commence in late 2007 , and will be $ 10 million in 2009 . beyond 2009 , total revenues will grow at a 60 % to 80 % rate for several years from existing and new products . contracting with existing manufacturers , we expect operating margins will be in the low 40 % range by 2009 . our initial forecasts indicate a fair value range from $ 8 . 40 to $ 11 . 10 based on the projected growth for the 2009 to 2012 timeframe . the graph below outlines our valuation analysis .  directors and management  dr . carl kukkonen , is the ceo and founding partner . dr kukkonen was director for space microelectronics and manager of supercomputing at caltech / jpl , where he worked for 14 years . prior to jpl , dr . kukkonen was the leading expert on hydrogen as alternative fuel at ford motor company .  aj abdallat , coo , and vp of business development has been with viaspace since inception , after working in business development at hewlett - packard and control data corporation .  dr . sandeep gulati has been with viaspace since 2000 . during the prior 12 years , dr gulati was head of the ultracomputing technologies at nasas jpl . dr . gulati is the developer of the revolutionary signal processing technology , qri .  viaspace overview  viaspace was formed in july 1998 with an objective of transforming technologies from caltech / nasa ' s jet propulsion laboratory and other advanced technology centers into profitable commercial enterprises through its strong connections with the advanced technology community . through its three subsidiaries - - arroyo sciences , ionfinity , and direct methanol fuel cell corporation ( dmfcc ) - - viaspace has a diversified high tech portfolio that includes microelectronics , sensors , homeland security public safety , energy / - fuel cells , information computational technology , rfid , e - finance , and mobile e - commerce .  viaspace develops proven space and defense technologies into hardware and software products that fulfill high - growth market needs and solve today ' s complex problems .  viaspace benefits from important licenses and strategic relationships with caltech / nasa ' s jet propulsion laboratory and other universities research laboratories . the viaspace team has a proven expertise for the successful commercialization of innovations in information technology , physical science and life sciences developed at academic research institutions and national laboratories .  the company currently focuses on technologies originally developed for nasa and the us department of defense that have already reached a certain stage of maturity . initial investments in these technologies amount to millions of dollars and many years of rd , enabling viaspace to manage the commercialization process with only a modest additional investment and greatly reduced technical risk .  viaspace couples exceptional technology sourcing and validation capability with a demand - driven process of market validation . decisions about technology transfer and product development are based , first and foremost , on market needs . in addition to our internal expertise , viaspace benefits from the domain expertise of leading experts that serve on our scientific and business advisory boards and from an informal global network of researchers , technology analysts , and technology professionals and investors that would be hard to replicate .  in the last six years , viaspace and its subsidiaries have secured more than $ 30 million in venture financing and strategic investment . initial investors include hewlett packard , divine interventures , los angeles county community development commission , blueprint ventures , the united company , bioprojects international , forrest binkley brown , american river ventures , and nth power .  viaspace has spawned 3 companies : spectrasensors  ( www . spectrasensors . com ) , qwip technologies  ( www . qwip . com ) , and vialogy corp ( www . vialogy . com ) . these companies , currently at various stages of maturity , are positioned within high growth markets and poised for profitability . today , viaspace focuses its effort on its three subsidiaries - - arroyo sciences , ionfinity , and direct methanol fuel cell corporation ( dmfcc ) - - and on new high technology opportunities . view full report  view full report  to join market movers mailings press here to find out more .  2400 lincoln ave  altadena , ca 91001  safe harbor statement  this information is a paid advertisement . any views expressed herein are provided for information purposes only and should not be construed as an offer , an endorsement , or inducement to buy or sell securities . bronks communications , inc . ( bci ) received compensation for printing and distributing this ad from a third party as an effort to build investor awareness about viaspace inc . ( vspc ) . the compensation is one hundred thousand dollars . this compensation constitutes a conflict of interest as to bci ' s ability to remain objective in our communication regarding vspc . bci owns 1 , 000 shares of common stock in vspc . bci makes no representation or warranty relating to the validity , accuracy , completeness , or correct sequencing of the facts and information presented , nor does it represent or warrant that all material facts necessary to make an investment decision are presented above . factual statements contained in this ad are subject to change without notice . past performance does not guarantee future results . bci is not a registered investment advisor , broker or dealer . all statements of opinion , if any , are those of the analysts , who relied on information believed to be reliable , such as vspc ' s public filings , business documents , and its web sites . the analysts ' reports are for information purposes only . the analysts were contracted by bci to write their reports and were paid a total of fifteen thousand five hundred dollars . independent analyst reports in this ad do not constitute an individualized recommendation to you to buy or sell a particular security . any opinions , estimates , or forecasts about vspc or predicted performance made by the analysts in this ad are theirs alone and do not represent opinions , forecasts or predictions of bci . interested persons must obtain the analysts ' full reports on their own . the analysts ' reports do not purport to be complete and are not intended to be used as a primary basis for investment decisions . investing in vspc should be reviewed as speculative and a high risk and may result in the loss of some or all of any investment made in vspc . further specific financial information , filings , and disclosures , as well as general investor information about publicly traded companies are available at the securities and exchange commission website www . sec . gov and www . nasd . com . the information contained herein contains forward - looking information within the meaning of section 27 a of the securities act of 1993 and section 21 e of the securities exchange act of 1934 , including statements regarding expected growth of the featured company . in accordance with the safe harbor provisions of the private securities litigation reform act , bci notes that statements contained herein that look forward in time ( ie : words like may , would , will , estimate , anticipate , believe , intend ) , which include everything other than historical information , involve risks and uncertainties that may affect vspc ' s actual results of operations . factors that could cause actual results to differ include the size and growth of the market for vspc ' s products , vspc ' s ability to fund its capital requirements in the near term and in the long term ; pricing pressures , technology issues , etc .  media matrix 7025 county rd . 46 a dte 1071 # 349 lake mary , fl 32746 this e - mail message is an advertisement and / or solicitation . \",1\n\"Subject: re : money issues ygr  repair your credit online ! it ' s the online credit breakthroughyou ' ve been waiting for ! in less than 5 minutes , directly from the comfort + convienience of your computer , yp 5 a 9 d 3 tsj 53 xfocwg 6 oflwjwsonnkigarhp 91 8 qyfvkpfqgknfyou could be repairing your credit ! you can watch daily real time updates , as you fix your problems get the information you need quickly and efficently to remove the negative credit items from your report ! click here for more informationthank you - the web credit ( tm ) team yp 5 a 9 d 3 tsj 53 xfocwg 6 oflwjwsonnkigarhp 91 8 qyfvkpfqgknf\",1\n\"Subject: selling travel in today ' s economy  good morning !  since it may have been awhile since you visited us  atwww . mailpound . comi  wanted to update you on what is happening . when we launched the mailpound  almost two years ago , our focus was on saving time , toner and  treesby providing an alternative fororganizing the huge  number of faxes suppliers sent travel agents each week . our most popular  feature was the fam section , followed by the weekly sweepstakes .  but that has changed .  like many involved in selling retail travel , we have been  striving to find ways to succeed in a challenging environment . additional  commission cuts , the aftermath of 9 / 11 , and the drop in the stock  market , has  had a cumulative effect on all of us . to survive , to succeed , we know  that we  will need to work harder , work smarter , and work together . we have  gotten a  tremendous amount of support from travel agents and this has translated  into  the ability to get more support for travel agents from suppliers .  our focus has expanded from providing a resource for  searching supplier  special offers to providing a suite of tools and services that can create  sales and raise commissions . almost all of these services are supplier  supported and free to travel agents .  actively seek out the beste - commerce  values  helpyou market special offers to your  clients  host personal web sites for travel agents with  mailpound  content *  offerhigher commissions through  consolidation  organize sales incentives from suppliers  provide new technology for fast and easyonline  bookings  provide your clients with the ability to book through  you ,  online  * mpdirect services are offered for  $ 9 . 95 / month  we invite you to visit us soon at www . mailpound . comor  check out the links shown below . see how the free services we offer the  travel  agent community can help you succeed . the summer is almost over , now is  the  time to prepare for the upcoming selling season .  for more information regarding higher commissions  and booking online :  www . mailpound . com / bliss _ intro . htm  for more information about your personal web site :  www . mailpound . com / mpdirect  to register free at mailpound :  www . mailpound . com / registration /  sincerely ,  bob maier , president  smart travel technologies , inc .  rmaier @ smart 2000 . com  856 - 983 - 6100 ext . 101  12 east stow road , suite 210  marlton , new jersey 08053  if you do not want to receive these  messages  in the future , please reply to this message with remove in the subject  line .  http : / / xent . com / mailman / listinfo / fork\",1\n\"Subject: save your money by getting an oem software !  need in software for your pc ? just visit our site , we might have what you need . . .  best regards ,  vesta \",1\n\"Subject: does financial freedom interest you ?  easy 30 - 50 % return ?  learn how you can receive a monthly check for 3 , 4 , or 5 %  a month until your initial investment is paid off . . . then a  monthly check for over 4 % a month for years to come . . .  we know it sounds impossible , but it ' s happening today .  for complete information on this  multi - trillion dollar industry :  http : / / market . pakoa . com / cl 6  to opt out :  please go to our \"\" \"\" opt - out \"\" \"\" website :  [ jk 9 ^ \"\" : } h & * tgobk 5 nkiys 5 ]\",1\n\"Subject: wanna be more man ? check this dude  penis enhancement patch , doctor approved and recommended .  http : / / www . siratu . com / ss /  come not within the measure of my wrath .  the enthusiasm of a woman ' s love is even beyond the biographer ' s .  silence is the most perfect expression of scorn .  distrust and caution are the parents of security .  it ' s only after we ' ve lost everything that we ' re free to do anything .\",1\n\"Subject: save your money buy getting this thing here  you have not tried cialls yet ?  than you cannot even imagine what it is like to be a real man in bed !  the thing is that a great errrectlon is provided for you exactiy when you want .  cialis has a lot of advantages over viagra  - the effect iasts 36 hours !  - you are ready to start within just 10 minutes !  - you can mix it with alcohol ! we ship to any country !  get it right now ! . \",1\n\"Subject: i can see your on dialup  how are you ,  if your a dial - up user , you know how slow it can be  to surf the web or download anything .  turbonet pro is your solution !  turbonet pro has the \"\" g 3 \"\" ( 3 rd generation ) technology speeding up  dialup , with a less than 1 minute install time , and generally speeds  up dial - up speeds by 5 times !  who says you need cable / dsl to get high speeds ?  get a sample here : click 4 express . com  ttyl ,  faris d . marianne , jr  projecthoneypot @ projecthoneypot . org  goodbye ! c l i c k 4 e x p r e s s . c o m / r  lots of times you have to pretend to join a parade in which you ' re not really interested in order to get where you ' re going . - christopher darlington morley ( 1890 - 1957 ) . joe ' s girlfriend generally misses laughing . .  she has disliked cooking for a day or two . . minds are like parachutes . they only function when they are open . - sir james dewar , scientist ( 1877 - 1925 ) .  the secret of life is honesty and fair dealing . if you can fake that , you ' ve got it made . - groucho marx ( 1890 - 1977 ) . cheese burger and cheese fries . . . . mmmmm .\",1\n\"Subject: we will guide you thru all of the answers to your questions about laser vision correction .  there ' s a good chance you could throw your glasses and contacts away . information for you now .  flhdzgxo\",1\n\"Subject: let ' s stop the mlm insanity !  still believe you can earn $ 100 , 000 fast in mlm ? get real !  get emm , a brand new system that replaces mlm with something that works !  start earning 1 , 000 ' s now ! up to $ 10 , 000 per week doing simple online tasks .  free info - breakfree @ luxmail . com - type \"\" send emm info \"\" in the subject box .  this message is sent in compliance of the proposed bill section 301 . per section 301 , paragraph ( a ) ( 2 ) ( c ) of s . 1618 . further transmission to you by the sender of this e - mail may be stopped at no cost to you by sending a reply to : \"\" email address \"\" with the word remove in the subject line .\",1\n\"Subject: goodd offr  how to save on your lengthy medlcations over 70 % .  ph snaggy armshop - successfull and proven way to sa surcingle ve your saddlefast money .  saddlebow v  a annulary g  a conveyance l  thirteen lu  survival l  r ceremonious a psychology cl  i airworthiness s overlaid val  collie m  andmanyother .  bes hurdling t prlces .  worldwide shlpp gossamer lng .  easy o counterblow rder form .  total confidentiaiit president y .  250 , 000 satis cellarage fied customers .  order today and sav overweening e !\",1\n\"Subject: neugierig ?  - - - - 870879228701464  content - type : text / plain ;  content - transfer - encoding : quoted - printable  was sich in diesen familien zwischen mutter und  tochter abspielt , ist eigentlich ein absolutes tabu ,  aber gerade deshalb auch so geil ! wir haben die  heissesten muttis mit ihren jungen toechtern beim  geilen sex gefilmt und fuer dich ins netz gestellt !  http : / / www . anythingforyou . cc  geile vibratorspiele , heisse zungenakrobatik oder auch  mal vorsichtiges fisting - wenn mutter und tochter es  hier miteinander treiben , dann prickelt es richtig .  http : / / www . anythingforyou . cc  erlebe die geilen inzestspiele , den hauch des  verbotenen und erlebe das letzte grosse tabu in  deutschen schlafzimmern hautnah !  http : / / www . anythingforyou . cc  sie wollen unseren newsletterservice abbestellen ?  http : / / www . anythingforyou . cc / revoke . php  - - - - 870879228701464 - -\",1\n\"Subject: http : / / www . joelpittet . com  hello ,  i have visited www . joelpittet . com and noticed that your website is not listed on some search engines . i am sure that through our service the number of people who visit your website will definitely increase . seekercenter is a unique technology that instantly submits your website to over 500 , 000 search engines and directories - - a really low - cost and effective way to advertise your site . for more details please go to seekercenter . net .  give your website maximum exposure today !  looking forward to hearing from you .  best regards ,  vanessa lintner  sales marketing  www . seekercenter . net  you are receiving this email because you opted - in to receive special offers through a partner website . if you feel that you received this email in error or do not wish to receive additional special offers , please enter your email address here and click the button of remove me : \",1\n\"Subject: free tv - 100 % legal  good day to you sir ,  never pay for ppv sports , movies , adult channels ,  ondemand , ever again !  get yourself a 54 mhz cablefilter for your t . v .  then start saving on your cable bills ! it ' ll pay  for itself by your next bill !  goto our page below  our page : click 2 out . com  regards ,  thaddeus adams  no : c l i c k 2 o u t . c o m / r\",1\n\"Subject: we dare you to find a better annuity  call today for more information !  - or -  please fill out the form below for more information  name :  e - mail :  phone :  city :  state :  * 5 . 40 % for deposits of $ 100 , 000 and up , 5 . 25 % interest for deposits totalling $ 25 , 000 - $ 99 , 999 .  we  don ' t want anyone to receive our mailings who does not  wish to receive them . this is a professional communication  sent to insurance professionals . to be removed from this mailing  list , do not reply to this message . instead , go here :  http : / / www . insuranceiq . com / optout  legal notice \",1\n\"Subject: need an outstanding logo now ?  working on your company ' s image ? start with a  visual identity a key to the first good impression . we are here to  help you ! we ' ll take part in buiiding a positive visuai image  of your company by creating an outstanding logo , presentable stationery  items and professional website . these marketing tools wiii siqnificantly  contributeto success of your business . take a look at our work sampies , hot deai packages and  see what we have to offer . we work for you !  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: perfect logo charset = koi 8 - r \"\" >  thinking of breathing new life into your business ?  start from revamping its front - end - logo and visuai identity .  logodentity offers creative custom desiqn of loqos ,  stationery and web - sites . under our careful hand these powerfui marketing tools  wili brinq a breath of fresh air into your business  and make you stand out amonq the competitors .  you are just a click  away from your future success . click here to see the samples of our artwork ,  check our prices and hot offers\",1\n\"Subject: your e - mail to anvasetc - 1111 @ groups . msn . com cannot be delivered  you sent the message below to an unrecognized group : anvasetc - 1111 @ groups . msn . com  to check for the correct e - mail address of a group you belong to :  1 . go to the group ' s \"\" what ' s new \"\" page .  2 . click \"\" my e - mail settings \"\" under the tools area on the upper right side of the page .  to learn more about msn groups or for further assistance , please see our help area .  thanks ,  msn groups\",1\n\"Subject: on line gaming report  special online issue  investment news and indepth reports  high growth investing  online gaming report : ggts  company ceo interviewsemerging technologies new trends to watchindustry statistics  are americans and the rest of the world becoming  addicted to online gaming ? analysts predict over  $ 14 billion dollars a year will go to online casinos .  gaming stocks may be set to explode !  read the full report click here !  includes inside :  company profile : gaming transactions inc .  this publicly traded company looks like it has what it takes to become  a big player in the online gambling world . could it be the next payoff  for investors ? . . . more  the online gambling market  given the rate at which this market is expanding across the planet , the  outlook for the online gaming industry looks very positive . do the  numbers add up for investors ? . . . more  how big could it get ?  online gaming has become a seriously big business , with shares in some  companies increasing by up to eight times inside a year . . . . more  pick of the month : ggts  gaming transactions operates in one of the fastest growing industries  around and has an experienced management team . early investors , who get  in before the institutional investors , could make a fortune . . . . more  read the full report click here !  investors are making huge gains as the world bets online .  could gaming transactions inc . ( gtts ) be the next stock to rock ?  recently ,  we read an article in the economist that highlighted online gaming and  how it has become a socially acceptable form of entertainment . over the  next few days , as we thought about what sort of impact this trend could  have , we started to notice that online gambling was being discussed all  over the media - in newspapers , online and on television . it became  obvious to us that more and more people were jumping on the internet to  bet on games . we also came across some staggering statistics .  merrill lynch , for example , has predicted that gambling has the  potential to account for a full 1 % of global economic activity ! another  source , ecommercetimes . com , recently reported that the scope of this  business is so enormous that some have even claimed that it is the  single most important factor in the growth of e - commerce . the online  gaming industry , in other words , appears to be booming , and it may be  an ideal time to is time to invest .  we decided to  find out who the key players were in the business . after speaking with  a number of industry insiders , the trail led us to an emerging ,  publicly traded company called gaming transactions inc . ( ggts ) . after a  close look at ggts , we decided that this company could produce huge returns on investment in the upcoming months .  although  ggts is a new company , it has some surprisingly experienced players at  the helm an uncommon thing to find in an industry only ten years old .  the company has come out with online versions of the addictive game keno .  and its management team was smart enough to secure the rights to the  keno . com website , which , if youre marketing keno , is as good as it  gets . keno has the widest spread for the house of any mainstream  gambling game . ggts is also about to launch a suite of other online  gambling games , including poker and sports - book betting . once it offers  these popular games , and given that it already has keno . com online , the  company could bring in great revenues , attracting a lot of attention in  the investment community and driving up its stock price .  after a successful north american launch ,  gaming transactions inc . ( gtts ) has translated its games into chinese  and is about to hit asia . this initiative looks like a wise business  decision : many analysis anticipate that china will be the biggest  source of online gambling revenue by 2007 , so the company could be poised for massive expansion in terms of both profits and global reach .  what  does all this tell us ? a brand new company , a popular , well - known game ,  one of the biggest spreads for the house , a growing market , experienced  management , and a stock price that is trading under a dollar it adds up to the potential for huge gains for early investors . if youre interested in more information on the market and gaming transactions inc . , click here to read a free ten - page report . . .  to join market movers mailings http : / / ggtsstock . com to find out more .  first source data inc .  4535 west sahara ave # 217  las vegas nevada 89102  disclosure and disclaimer  investment news indepth reports ( hereinafter inir ) , operated by first  source data , inc . ( hereinafter fsd ) , is a business news publication  of regular and general circulation . this issue is not a research  report , does not purport to provide an analysis of any companys  financial position , and is not in any way to be construed as an offer  or solicitation to buy or sell any security . gaming transactions inc .  ( hereinafter ggts ) is the featured company . fsd managed the  publishing and distribution of this publication . the information  contained herein is being republished in reliance on statements made by  ggts management , and publicly disseminated information issued by third  parties regarding ggts and the online gaming industry , which are  presumed to be reliable , but neither fsd nor its editors , employees , or  agents accept any responsibility for the accuracy of such statements or  information , or the contents herein which are derived therefrom .  readers should independently verify all statements made in this  advertisement .  fsd has received compensation for the production and distribution of  this newsletter . the compensation received is in the amount of one  hundred and twenty eight thousand dollars and was received from  accelerated capital limited ( hereinafter acl ) for this advertising  effort . acl is a shareholder of ggts . because fsd received compensation  for its services , there is an inherent conflict of interest in the  statements and opinions contained in this newsletter and such  statements and opinions cannot be considered independent .  internet - based companies , and those involving online gaming in  particular , are almost always very high risk investments , and investors  should be aware that they could potentially lose any investment made in  such companies in its entirety . we strongly encourage readers to  undertake their own due diligence to decide the best course of action  in connection with any investment decision that they might make . any  investment should be made only after consulting with a qualified  investment advisor .  media matrix 7025 county rd . 46 a dtel 071 # 349 lake mary , fl 32746 this e - mail message is an advertisement and / or solicitation .\",1\n\"Subject: this stock rumored to fly  special situation alerts hot pick of the year  environmental remediation holding corp . ( otcbb : erhc )  urgent buy : $ . 17  sell target : $ 1 . 25  investor alert : erhc enters into joint - venture license agreement  with schlumberger ltd ( nyse : slb , $ 60 ) and baker hughes , inc .  ( nyse : bhi , $ 40 ) for seismic data on some of the richest offshore  oil blocks where erhc controls a huge working interest !  investors - we have found the hidden gem : ( otcbb : erhc ) !  erhc ' s joint - venture with schlumberger and baker hughes puts them in  world - class company with these leaders in oil exploration and reservoir  imaging services . the involvement of slb and bhi reinforces the  $ multi - billion dollar value that has been placed in this offshore  drilling haven . erhc ' s goal is to maximize shareholder value from  existing contractual rights , making them a significant player in  this region .  the big money rolls in :  the seismic data from this joint - venture is being made available for  further involvement by the largest oil companies in the world over  the next 2 weeks ! !  bidding wars have already developed between major oil companies suchas :  shell , chevron / texaco , conoco , exxon / mobil , philips , and marathon who  are willing to pay $ hundreds of millions to drill in these zones and  partner with erhc .  stock set to explode on earnings boom :  erhc ' s exclusive right to participate in exploration and production  along with oil industry giants could be worth up to $ fifty million  as these oil blocks are adjacent to billion barrel producing regions !  special situation alerts ' newsletter offers valuable research that  builds your wealth . we target serious gains for serious investors  with a 700 % investment return on erhc .  disclaimer : certain statements contained in this newsletter may be  forward - looking statements within the meaning of the private securities  litigation reform act of 1995 . these statements may be identified by  such terms as \"\" expect \"\" , \"\" believe \"\" , \"\" may \"\" , \"\" will \"\" , and \"\" intend \"\" or  similar terms . we are not a registered investment advisor or a broker  dealer . this is not an offer to buy or sell securities . no  recommendation that the securities of the companies profiled should be  purchased , sold or held by individuals or entities that learn of the  profiled companies . this is an independent electronic publication that  was paid $ 10 , 000 by a third party for the electronic dissemination of  this company information . be advised that investments in companies  profiled are considered to be high - risk and use of the information  provided is for reading purposes only . if anyone decides to act as an  investor they are advised not to invest without the proper advisement  from an attorney or a registered financial broker , if any party decides  to participate as an investor then it will be that investor ' s sole risk .  be advised that the purchase of such high - risk securities may resultin  the loss of some or all of the investment . the publisher of this  newsletter makes no warranties or guarantees as to the accuracy or the  completeness of the disclosure . investors should not rely solely on the  information presented . rather , investors should use the information  provided in this newsletter as a starting point for doing additional  independent research on the profiled companies in order to allow the  investor to form their own opinion regarding investing in the profiled  companies . factual statements made about the profiled companies are made  as of the date stated and are subject to change without notice .  investing in micro - cap securities is highly speculative and carries an  extremely high degree of risk .\",1\n\"Subject: we are on the look - out for new partners such as you and your company  we are on the look - out  for new partners such as you and your company  whether you want to buy or sell , bluecom danmark a / s is worth closer acquaintance  bluecom danmark a / s is a worldwide it - distributor of pc - systems and add - ons .  since it ' s foundation in 1992 the company has enjoyed constant growth , and is  always on the look out for new partners to cooperate with .  we have found you and your company through our internet research , and hope to  establish a fruitful cooperation with you in the future . however , we apologies  if you are not the correct person to contact within your company , and kindly  request that you forward this message to that person . further , if this letter  is of no interest to you and your company , please press the \"\" unsubscribe \"\" button  in this mail .  the easiest way to start cooperating with bluecom danmark a / s is through our  user - friendly website . if any of the features detailed below are of interest  to your company , please click on the link and our cooperation has already begun .  customer :  would you like the best prices on the market , plus 24 - hour delivery and an  incredible 30 days credit ?  then maybe you would like to become our partner or customer .  we are able to offer the absolute best prices on the market because of our large - scale  procurement of a small number of specific products . our range includes products  from ibm , compaq and hp options such as notebooks , pcs and monitors . we also  offer pc parts such as ram , cpus , vga cards , motherboards , wireless products ,  original mobile phones and accessories , hard disks , dvd , cd - rw , tft screens ,  from the following top companies : asus , ecs , abit , creative , intel , amd , u . s .  robotics , lg , plextor , belkin , benq , samsung , ibm software and many more .  besides delivering at the very best prices , we offer real - time updated prices  through our customer lounge , 24 - hour delivery all over europe and 30 days credit .  please click here : customers  lounge  supplier :  are you a future supplier to bluecom danmark a / s ?  bluecom danmark a / s keeps it suppliers updated on products in demand , the specific  volumes on request , and of course the target prices . if you would like to see  which products and target prices we are interested in right now ,  please click here : suppliers  lounge  everybody :  would you like to receive it news ?  bluecom danmark a / s offers it news for free . we produce a newsletter with  articles covering the changes in our industry , new products , tariff rates and  general trends in the it - market . the newsletter also contains information about  bluecom danmark a / s and the development of its business partners .  please click here : it - news  would you like more information about bluecom danmark a / s ?  for further information please do not hesitate to contact bluecom danmark a / s .  you can also visit our homepage at : www . bluecom . com  thanks for your time . we look forward to hearing from you .  best regards  jens fournais  managing director  bluecom danmark a / s  to unsubscribe from this mailing  list , please click here : unsubscribe  ( you are subscribed with this e - mail address : fork @ spamassassin . taint . org ) \",1\n\"Subject: the man of stteel  hello , welcome to the medzonlin direction e  - online pharmaceutical sho feverfew p .  v escape a  warbler um superfluity vi  wakeless ra semiconscious ci  shriek is  l chastisement i  contender ag  a cringle l  andmanyother .  inhabited with our shop you get -  best pluviometer prlces  excellent yellowness service  fa humidor st shipping  private online orde gestation ring  have a nice day .\",1\n\"Subject: low price software  http : / / neonate . setupmefree . com / ? a = 3107\",1\n\"Subject: 1 - 4 extra inches makes a massive difference  my girlfriend loves the results , but she doesn ' t know what i do . she  thinks  it ' s natural - thomas , ca  i ' ve been using your product for 4 months now . i ' ve increased my  length from 2  to nearly 6 . your product has saved my sex life . - matt , fl  pleasure your partner every time with a bigger , longer , stronger unit  realistic gains quickly  to be a stud press  here  the tatars shouted joyfully as they witnessed this marvelous feat and  rushed forward to assist in the slaughter ; but the boy motioned them all  back  address listed above and  just see site to be gone from the db  the lights from the lanterns dimly showed the way , but it was a gloomy  journey , and they were pleased when a broad streak of light ahead assured  them they were coming to a second landinghere one side of the mountain  had a great hole in it , like the mouth of a cavern , and the stairs stopped  at the near edge of the floor and commenced ascending again at the opposite  edge he did not wish any more bloodshed than was necessary , and knew that  the heaps of unconscious turks around him would soon recover  so he stood alone and faced the enemy , calmly knocking them over as fast as  they came near \",1\n\"Subject: urgent response  dear sir / madam ,  you may be surprised to receive this letter from me , since you don ' t know me personally . i am mrs maria da costa the wife of dr . john da costa , who was recently murdered in the land dispute in zimbabwe , i got your contact through network on line in my search for a reliable and reputable person to handle a very confidential transaction which involves a transfer of a fund to a foreign account and i decided to write you . my late husband was among the zimbabwean rich farmers murdered in cold blood by the agents of the ruling government of president robert mugabe for his alleged support and sympathy for the zimbabwean opposition party controlled by the white minority . before his death he deposited the sum of us $ 15 . 2 million ( fifteen million two hundred thousand us dollars ) to south africa with a security company as if he foresaw the looming danger in zimbabwe .  the money was deposited in a din box as valuables to avoid much demurrage from the security company . this money was embarked from the purchase of new machinery and chemical for farms and establishment of new farms in lesotho and swaziland . the land problem arose when president robert mugabe introduced a new land act that wholly affected the rich white farmers and some few blacks vehemently condemned the \"\" modus operandi \"\" adopted by the government .  this resulted to rampant killing and mob action by the war veterans and some political thugs , precisely ; more than fifty - one ( 51 ) people have so far been killed . heads of governments from the west , especially britain and united states of america have voiced their condemnation of mugabe ' s plan , subsequently , south african development community ( s . a . d . c . ) has continuously supported mugabe ' s new land act , it is against this background that i and my  family who are currently residing in south africa have decided to transfer my husband ' s money into a foreign account . as a family , i am saddled with the responsibility of seeking a genuine foreign account , where this money could be transferred without the knowledge of my government who is tactically freezing of our family wealth .  and south africa ' s government seems to be playing along with them . i am faced with the dilemma of investing this money in south africa for fear of encountering the same experience in future since both countries have almost the same political history . more so , the south african foreign exchange policy does not allow such investment hence we are seeking for an \"\" asylum \"\" . as a business person whom i would entrust my future and that of my family into his hands , i must let you know that this transaction is 100 % risk free and that the nature of your business does not necessarily matter .  for your assistance , i will offering you 15 % of the total sum , 80 % for my family while 5 % will be mapped out for any expenses we may incur during the course of this transaction . i wish to  invest our part of the money on commercial property based on your advice .  finally , all i demand from you is assurance that you will not do away with this money when it finally gets to your personal or company ' s account in your country .  if this proposal is acceptable by you , please confirm your interest by contacting us on this phone number + 27724263169 or e - mail address mariadacosta _ 2002 @ yahoo . com  best regards ,  mrs maria da costa ( for the family )\",1\n\"Subject: perfect logo charset = koi 8 - r \"\" >  thinking of breathing new life into your business ?  start from revamping its front - end - logo and visuai identity .  loqodentity offers creative custom design of loqos ,  stationery and web - sites . under our careful hand these powerful marketing toois  will brinq a breath of fresh air into your business  and make you stand out among the competitors .  you are just a ciick  away from your future success . ciick here to see the samples of our artwork ,  check our prices and hot offers\",1\n\"Subject: viagra - proven step to start something all over again .  looking for a specific medication ? let us know what you need !  there is an applause superior to that of the multitudes : one ' s own .  winning isn ' t everything , it is the only thing .  war is the continuation of politics by other means .  we are most alive when we ' re in love .\",1\n\"Subject: you want to submit your website to search engines but do not know how to do it ?  submitting your website in search engines may increase  your online sales dramatically .  if you invested time and money into your website , you  simply must submit your website  online otherwise it wiii be invisible virtuaiiy , which means efforts spent in vain .  lf you want  peopie to know about your website and boost your revenues , the oniy way to do  that is to  make your site visible in places  where people search for information , i . e .  submit your  website in multipie search enqines .  submit your website oniine  and watch visitors stream to your e - business .  best regards ,  leopoldowaiton _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: antil co . , ltd . ( bangkok )  antil co . , ltd . ( bangkok )  731 7 th p . m . tower asoke - dindaeng , bangkok , 10320 thailand  tel : + 66 2 6429856 - 7 fax : + 66 26429889  t . a . t . licence no . 11 / 3364 website : www . thaihotel 4 u . com  email : info @ thaihotel 4 u . com , antilbkk @ yahoo . com  dear sir / madam ,  this is the warmest greeting from antil co . , ltd . , one of the major tour companies in thailand . we are dedicated to promote thai ' s biggest industry - tourism .  it is our great pleasure to inform you the grand opening of our hotel reservation web site www . thaihotel 4 u . com . we would like to invite you to visit our web site that contains hundreds of hotels ' information . rarely do we have the opportunity to also inform you such an attractive pricing of all hotel bookings on this web site .  working with other agents around the world has been our powerful support for both our growth and our partners ' for a long time . now we are proudly inviting you to be the partner of www . thaihotel 4 u . com and consider our possible cooperation in group bookings . if you are interested in being our local sales in your area , you are also welcome to contact us at info @ thaihotel 4 u . com for further discussion .  we appreciate your kind attention !  yours sincerely ,  rudet khamchan  managing director\",1\n\"Subject: how will this affect the reporting agency for each account you cancel .  why consolidate into a larger obligation or declare bankruptcy when you can  legally you ' ve avoided the pangs of starvation  for a time , anyhow , so i can leave you with a clear conscience . without more  ado , he turned the indicator of the traveling machine and mounted into the  air , leaving the turk sitting upon the rocks and staring after him in  comical bewilderment  15 .\",1\n\"Subject: [ wm ] ( no subject )  dear our guests ,  explore turkey with astartetours ! !  hotel reservations :  you will find more than 200 hotels all over turkey , which have been carefully selected .  through our reservation system we are able to book more than 1 . 000 hotels arround europe .  tours  hosted programs , sightseeing tours , escorted tours or cruise programs .  we have tours on set dates each year or we can organize special itineraries for the independant traveller or small groups ! !  rent - a - car :  travelling on your own pace in turkey ! we have a range of vehicles on offer to choose from . they may be hired in all major cities .  your car can be made available at the airport or your hotel for collection ! !  visit our web - site ! !  www . astartetours . com  kind regards  astarte tours  p . s . : if you want to unsubscribe , please sent us an e - mail .  this sf . net email is sponsored by : get the new palm tungsten t  handheld . power & color in a compact size !  webmake - talk mailing list  webmake - talk @ lists . sourceforge . net \",1\n\"Subject: innovative and effective design for you !  adqueen is an institute committed  to brand planning and designing for enterprises , providing end to end ad  services , from plan to design ,  and finally press .  - - - - - - - make  maximal use of your marketing fund !  http : / /  www . adqueen . com  service  items :  innovative and effective concepts  and copy for  logo and vi ;  website design and building ;  poster and drawing ;  package of gifts ;  exhibitions and shows ;  ad designing and printing ;  and etc .  ( adqueen caters for your  needs ! ) \",1\n\"Subject: home reps wanted - fortune 500 comp hiring  question ?  do you want a different job ?  do you want to be your own boss ?  do you need extra income ?  do you need to start a new life ?  does your current job seem to go nowhere ?  if you answered yes to these questions , then here is your solution .  we are a fortune 500 company looking for motivated individuals who are  looking  to a substantial income working from home .  thousands of individual are currently do this right now .  so if you are looking to be employed at home , with a career that will  provide you vast opportunities and a substantial income , please fill  out our online information request form here now :  http : / / ter . netblah . com : 27000  to miss out on this opportunity , click here  http : / / ter . netblah . com : 27000 / remove . html\",1\n\"Subject: the best possible mortgage  has your mortgage search got you down ?  are you frustrated and confused with all the different terms and quotes ? don ' t  know who is telling you the truth ? we can solve all your problems .  visit our site today and in two minutes you can have us searching thousands of  programs and lenders for you . get the truth , get the facts , get your options  all in one shot . it ' s absolutely free , and you can be done in only two minutes ,  so click right now and put your worries behind you !  [ ryte ^ 3247 ( ^ ( pol : kj ) _ 8 j 7 bjk ]\",1\n\"Subject: all graphics software available , cheap oem versions .  good morning ,  we we offer latest oem packages of all graphics and publishinq software from corel , macromedia , adobe and others .  $ 80 adobe photoshop 8 . 0 / cs  $ 140 macromedia studio mx 2004  $ 120 adobe acrobat 7 . 0 professional  $ 150 adobe premiere pro 1 . 5  $ 90 corel desiqner 10  $ 90 quickbooks 2004 professional edition  $ 75 adobe pagemaker 7 . 0  $ 70 xara x vl . 1  $ 75 adobe audition 1 . 5  $ 90 discreet 3 d studio max 7  $ 115 adobe golive cs  $ 135 adobe after effects 6 . 5 standard  $ 45 adobe premiere eiements  $ 125 corel painter lx  $ 80 adobe iilustrator cs  $ 80 adobe lndesign cs  $ 240 adobe creative suite  $ 140 adobe framemaker 7 . 1  $ 50 ulead cooi 3 d production studio 1 . 0 . 1  $ 90 alias motion buiider 6 professional  $ 30 quicken 2004 premier home & biz  $ 30 adobe photoshop elements 3 . 0  $ 110 adobe premiere pro 7 . 0  learn more . . .  sincereiy ,  alda \",1\n\"Subject: 4 for 1 forward stock split - ends monday  have a look at this info i just received for hllf  halal financial services hllf  halal financial services is the first web portal in the united kingdom solely devoted to halal financing methods for muslims and non - muslims globally  the british bankers association estimates that the market for islamic mortgages in the uk stands at around $ 9 . 2 billion  first name  last name  phone  recent news ! 4 for 1 forward stock split ends monday !  effective tuesday june 28 , 2005 . 4 for 1 forward split ! all shares purchased up until close of business on monday june 27 , 2005 will receive the additional shares . get your shares now monday is the last day !  halal financial services  delaware , june 16 , 2005 - - halal financial services ( hllf . pk ) a delaware corporation is pleased to announce the approval by the board of directors of a 4 for 1 forward split of their common shares . this forward split was approved on june 16 th , 2005 by the board . these new shares will be distributed to all shareholders of record as of close of business june 22 nd , 2005 . shareholders of record will receive 3 additional shares of common stock for every 1 share of common stock beneficially owned . on monday june 27 , 2005 halal will be trading under the same symbol and same cusip number .  hello investors ! have a serious look at halal financial services symbol hllf , an online halal financial intermediary ifa ' independent financial advisors , whose primary service is to assist the customers to find and select available halal mortgage options that meet their personal needs inline with their beliefs via their portal , halalmortgages . com .  halal financial services include providing the customers with the necessary information on the available halal mortgage products , identifying the product which best suits the customer ' s criteria and to assist them with the application process . halalmortgages . com has been running successfully for the past 3 years and has already become the leading intermediary ifa in theuk providing halal mortgages .  initially it is forecasted that halalmortgages . com division alone will service in the region of three thousand halal mortgage cases per year generating an average collective mortgage book value of $ 546 million .  our services  being the first website in the united kingdom solely dedicated to halal mortgages , we provide convenient online services and e - finance solutions . our site is easy to use enabling you to gain advantageous knowledge in a quick and convenient manner twenty - four hours a day , seven days a week . our state - of - the - art technology solutions ensure easy accessibility of up - to - date information .  our full - service specialized agents can be contacted through online enquiry , email or by telephone . they are experienced in the islamic finance industry and are kept up to date on the latest terms available for halal mortgages and they are just a phone call or a keystroke away !  halal financial services ( hllf . pk ) a delaware corporation is the world ' s first islamic web portal solely devoted to halal financing methods for muslims and non muslims globally .  massive growth potential  2 million muslims , in the uk  assume halal gets 20 , 000 of them as clients ( 1 % ) then halal has a book value of over $ 1 billion in loans  more importantly a value of $ 219 million on just 20 k customers .  which equates to $ 2 . 40 per share evaluation !  what are halal mortgages ?  simply put - a mortgage that is structured in a manner which does not accrue riba ( interest ) and is designed according to established islamic financing principles such as ijara or musharaka .  recent developments and major upcoming stock driving milestones :  4 for 1 forward stock split  with $ 60 million in business in first five months , company is on track to complete $ 500 million plus in new lending buisness over next twelve months .  each new customer , with an average mortgage of $ 256 , 000 , represents approximately  $ 11 , 000 a year in profit for the lender .  closer working relationship with hsbc amanah u . k .  services to expand in the future to cover halal financing , halal insurance , halal investments . etc .  acquisition halal mortgages . com  halal financial services inc ceo tariq mahmood comments : the directors have agreed to split this stock to enhance shareholder value . we look forward to advising our shareholders of exciting new developments in the near future .  a hidden gem ? ?  do your own research ! and you may see  that this company is still  under the radar of wall street .  read full report  stock profile alert  for june 26 , 2005  halal financial services ( otcbb : hllf . pk )  existing and emerging financial institutions have been busy developing halal financial products to service the growing demand by a much aware uk muslim population a population which is increasingly affluent , financially astute and at the same time looking to conform their economic life in accordance with the principles of their faith .  as the principle of halal financial services is to facilitate a non - interest based transaction along with ethical investment criteria , this also allows non - muslims who believe in this system to use halal financial services as well .  initially it is forecasted that halalmortgages . com division alone will service in the region of three thousand halal mortgage cases per year generating an average collective mortgage book value of $ 546 million .  within a year of launch , halalmortgages . com aim to be the principal intermediary distributor of halal mortgages in the united kingdom . furthermore , through sister portals such as halalmortgages . com and others , the company intends to offer a host of other halal financial products as they become available , thereby ensuring a diversified product mix .  halal financial services  company alert  company : halal financial services ticker symbol : hllf  current price range : . 45 - . 50 ( post split pricing )  exchange : otc  industry rating : strong  momentum is building ! !  effective june 28 :  authorized : 125 , 000 , 000  managment shares outstanding : 60 , 000 , 000 .  float : 40 , 560 , 000  total outstanding :  100 , 560 , 000  corporation websites :  http : / / www . . com  http : / / www . halalmortgages . com  read full report  timing is everything ! ! hllf . pk  investors may learn much more about halal financial services by going to its website .  corporation web site - http : / / www . . com or http : / / www . halalmortgages . com  to join market movers mailings press here to find out more .  safe harbor statement  the information contained in this publication is for informational purposes only , and not to be construed as an offer to sell or solicitation of an offer to buy any security . investing in penny stocks should be considered as extremely speculative and risky as it may result in a loss of all or some of your investment . the investor news journal ( inj ) is not a registered investment advisor or broker dealer . inj received compensation for this newsletter service for halal financial services . the compensation is $ 80 , 000 from a non - affiliated third party , cortraunt holdings inc . because inj is receiving compensation for its services , there is an inherent conflict of interest in the statements and opinions and such statements and opinions cannot be considered independent . inj makes no representation or warranty relating to the validity of the facts presented nor does the publisher represent a warrant that all material facts are necessary to make an investment decision presented above . factual statements contained in this publication are made as of the date stated and they are subject to change without notice . this release may contain statements that constitute forward - looking statements within the meaning of sec . 27 a of the securities act of 1933 , as amended , and sec . 21 e of the securities exchange act of 1934 , as amended . the words may , would , will , expect , estimate , anticipate , believe , intend , and similar expressions and variations thereof are intended to identify forward - looking statements .  media matrix 7025 county rd . 46 a dte 1071 # 349 lake mary , fl 32746 this e - mail message is an advertisement and / or solicitation . \",1\n\"Subject: i need your help  dear sir ,  in view of my difficulties and problems in this country , i ' m so pleased  to  have found someone like you in whom i can confide or at least talk to .  my  name is stella johnson , a freetown , sierra leone . i am here in senegal  as a  refugee . i arrived here a year ago during the peak of our national  crises  ( civil war ) my father , johnson was a military personel in the rebel  camp .  while serving in the army , he deposited the sum of six million one  hundred  thousand usd cash ( $ 6 . 1 million us dollars cash ) to my mother for my  life  inheritance . in a finance and security company here in dakar senegal .  he ( my father ) drowned in a river while attempting to cross during a  battle  with the government troops . i ' m using this opportunity pleading for you  to  help me retrieve this money and transfer it into your account pending  when i  will come over to your country for investment . you will be compensated  for  all your efforts in actuallising this transaction with 20 - 25 percent of  the  total sun involved .  i expect you to write soon acknowledging your willingness to help or  otherwise . thanks .  yours sincerely ,  stella johnson\",1\n\"Subject: free original star wars cards adv :  own a unique , one - of - a - kind piece of star - wars history !  exclusively licensed fromlucas film ltd .  this innovative new collectible is the first to display an authentic one of kind 70 mm film frame from  the star wars / empire strikes back movie  containing a one of a kind 70 mm frame in a 7 - 1 / 2 \"\" x 2 - 3 / 4 \"\" diamond cut , acrylic ,  mint collector ' s case .  fact : no two frames are alike  each film frame is a unique original and will never be reproduced .  each fully licensed original film frame is sealed and individually serial numbered with identification codes  tamper proof holographic seals to prevent fraudulent duplication .  # 50049 lightsaber duel special edition :  features the fantastic lightsaber duel between luke skywalker and darth vader .  this special edition # 50049 lightsaber duel was only available with the willitts premium package # 50707 ,  which sold in retail shops for $ 125 . 00 .  special , internet offer !  order now and receive the above rare special edition # 50049 lightsaber duel  for this special internet price of only $ 19 . 95 !  special bonus with your order , you will receive  10 original 1980 topps star wars / empire strikes back collector cards  absultely free !  these are original 1980 topps star wars / empire strikes back collector cards  from 22 years ago ! not reprints !  hurry ! please , respond now before our limited supplies are exhausted ! !  your film cell image may differ from the above sample .  click here !  you have received this email as an opted - in subscriber , if this is not the case , please click on the following link  to be permanently removed from our database .  please take me off this list  866 - 667 - 5399 nouce 16822 22 nd avenue northsaint petersburg , fl 33710 - 3918 \",1\n\"Subject: massage from bernard  from : bernard louis mcarthy esq . ,  trend services ltd .  direct private phone : + 44 7040115431  dear ,  compliments , and do please accept my highest regards and esteem . this  proposal might come to you as a surprise due to the urgent need of a  reliable foreigner , i therefore deem it necessary to contact you . i am  bernard louis mcarthy , a solicitor at law and the personal attorney to late  mr . martin chey a thai nationale residing in johannesburg south africa ,  hereinafter shall be refered to as my client . on the 22 nd of dec . 2004 , my  client , his wife and all their three  children travelled to thailand for the christmas holiday . unfortunately , my  client mr . chey and all his family died in the most terrible and highly  horrible indian ocean ' s tidal wave disaster ( asian tsunami ) of the dec . 26 th  2004 .  ever since this tragic and traumatic events , i have made frantic efforts to  establish contacts with his relatives , but could not succeed . due to the  fact that considering the nature of my clients business dealings , he never  presented any name on documentation as his possible next of  kin . i am therefore with all sense of humility decided to make contact with  you in order to assist in claiming and retrieving the money left behind by  my client before the credit house know of his demise and probably get the  funds confiscated or even decleared it unserviceable by the finance and  credit institution where these funds were deposited . i solicit your urgent  assistance and co - operation as a foreigner for easy passage of the funds to  your designated bank account .  mr . chey was a successful businessman and was involved in cash transactions  due to the nature of his business . he was engaged in buying of raw gold and  diamond from his suppliers in the mineral - rich equatorial belt of central  and southern african countries , after which he sends the consignments to  bangkok in thailand for processing and onward shipments to dubia and  saudi arabia .  the amount of money kept in the custody of the finance and credit house is  $ 45 million dollars only . since i have been unable to locate his relatives  after all my frantic efforts , i am therefore compelled by this circumstances  to seek your consent to present you sir , with my position as his legal  advicer as his next of kin or business associate of the deceased so as to  enable you receive and collect the above funds . all other further  informations to that effect at my disposal will be made available to you  upon your consent and the acceptance of the project .  the funds when retrieved and successfully secured will be shared thus :  myself , the attorney 40 % , yourself the presented next of kin 30 % , while 20 %  will go to charity and possibly the tsunami victims through you , in line  with my clients belief and support for charity as a great philantropist  during his life time , the balance of 10 % will be for contingency expenses to  be incured during the process by both parties . i assure you the fullest and  absolute co - operation and a hitch free operation in this regards . i equally  guarranttee you total protection against any breach of the law in line with  my legal profession . you are very free to ask qestions you deem necessary  for further clarifications , and please endeavour to always keep secret all  informations concering this transaction . your most urgent response will be  highly appreciated through my email : ( bernardmcarthy @ myway . com ) in order to  avoid my making further contacts .  regards ,  bernard louis mcarthy , esq .\",1\n\"Subject: hardcore sex & orgies ! ! !  hot girls fucking hard ! ! !  click here to see  click here to see  click here to see  * over 150 , 000 xxx pictures  * 125 , 000 + sex videos  * 100 ' s of livecams & shows  * erotic stories & adult chat rooms  * new content added every  day !  click here to enter  click here to see  click here to see  click here to see  this newsletter is not unsolicited . the email address has been subscribed to our mailing list . if you would like to stop receiving this newsletter , just click here to unsubscribe and we ' ll block your email address immediately . \",1\n\"Subject: need an outstanding logo now ?  working on your company ' s image ? start with a  visual identity a key to the first good impression . we are here to  help you ! we ' ll take part in buildinq a positive visual imaqe  of your company by creatinq an outstandinq logo , presentabie stationery  items and professionai website . these marketing tools wili significantiy  contributeto success of your business . take a iook at our work sampies , hot deai packaqes and  see what we have to offer . we work for you !  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: here is the money we owe you  dear applicant , after further review upon receiving your application your current mortgage qualifies for a 4 . 75 rate . your new monthly payment will be as low as $ 340 / month for a $ 200 , 000 loan . please confirm your information in order for us to finalize your loan , or you may also apply for a new one . complete the final steps by visiting : http : / / www . mortgage - newx . net / index 2 . php ? refid = malwe look foward to hearing from you . thank you , heather grant , account managerlpc and associates , llc . - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - not interested ? - > http : / / www . mortgage - newx . net / r . php\",1\n\"Subject: buyer beware - penis patches !  penis enlargement patch that works ! ! !  http : / / www . gretan . com / ss /  a very ancient and fish - like smell .  have no friends not equal to yourself .  the wise man is he who knows the relative value of things .  courage is one step ahead of fear .  idleness is not doing nothing . idleness is being free to do anything .\",1\n\"Subject: unbiased info for investor intelligence  the oi | and gas advisory  now that oi | and gas has entered a long - term buil market ,  our speciaity in pinpointing the hottest companies of the few remaining  undervalued energy plays has produced soaring returns .  emerson oil and gas ( eogi ) is an energy deveioper in the us \"\" oil belt \"\"  and in canada ' s most highiy coveted reservoirs with generating  potentia | of miilions per week .  breaking news ! ! !  emerson oil and gas , inc . , ( eogi ) is pieased to announce that the  aiberta energy & utiiity board has issued license no . 03302 o 6 for the  company ' s wel | 11 - 16 - 24 - 2 the acadia project .  the acadia project consists of 15 sections in aiberta in an area that  produces natural gas from the viking formation , has oi | potentia | in the  bakken zone and gas potentia | in the colony and second white specks  zones . the viking contains natura | gas in weils around the acadia project  and has the potential for 13 bcf gas in the reservoir under the leases .  gas weils in the area have calcuiated aof rates up to 14 mmcf per day .  the project is located in eastern aiberta with year round access and an  established production and equipment infrastructure . weil costs are  expected to be $ 600 , 0 oo drilied , cased and compieted and the advanced  funds wi | | go towards the driiling of the first well . each well on a lease  earns emerson a 49 % working interest in one section .  emerson oil and gas , inc . , ( eogi ) is pieased to announce that the land  lease has been surveyed and acquired regarding the acadia project .  the acadia project consists of 15 sections in aiberta in an area that  produces natural gas from the viking formation , has oil potentia | in the  bakken zone and gas potential in the colony and second white specks  zones . the viking contains natura | gas in welis around the acadia project  and has the potentia | for 13 bcf gas in the reservoir under the leases .  gas welis in the area have caicuiated aof rates up to 14 mmcf per day .  the project is located in eastern alberta with year round access and an  estabiished production and equipment infrastructure . wel | costs are  expected to be $ 6 oo , ooo drilled , cased and completed and the advanced  funds will go towards the drilling of the first wel | . each wel | on a | ease  earns emerson a 49 % working interest in one section .  symbo | - eogi  price - . 026  the value of eogi ' s shares will skyrocket :  1 . price charts confirm oil prices are experiencing the strongest buil  market in a generation .  2 . natural gas prices have tripied in the | ast two years .  3 . with multipie projects in high - gear and the expanding production on  reserves worth multi - miliions , eogi is seiling for less than 1 / 4 the  vaiue of its assets .  4 . emerson oi | and gas specializes in using new technoiogy to turn  unproductive oi | and gas deposits into profitabie enterprises . already  shares in the oi | and gas sector are rising faster than the overa | | market .  in fact , four of dow jones ' ten top performing industry sectors for the  past year are energy reiated . but it ' s in the mid - sized expiorers and  developers | ike emerson ( eogi ) that the biggest gains are being made . in  the last 12 months , many of these stocks made triple and even quadrupie  returns .  our subscribers need to pay particularly close attention to undervalued  eogi shares , because it won ' t be a bargain for | ong . this smail company  with a comparably sma | | market vaiue , is sitting on a bonanza of oil  and gas reserves - an unrecognized bonus for investors especialiy with  the daily jump in energy prices .  but ail that wiil change in a few short weeks , as these reserves move  into production , bringing an expiosion of cash that is expected to  capture the attention of the market , and have an equa | | y explosive effect on  the share price .  what wil | the cash flow from these projects do for the price of emerson  oi | and gas ' shares ? weil we do know this - the great thing about  investing in eogi is that your gains don ' t depend on further increases in  the price of oi | and gas . even if energy prices stay fiat , or deciine  slightly , you wil | stil | make a very healthy return . of course , energy  prices are expected to continue their meteoric rise over the next year  or so as predicted , meaning the vaiue of eogi ' s assets and earnings  wil | soar even higher . in that case , the reward for investors wil | be  staggering .  overa | | , we consider eogi to be one of the last outstanding energy  piays in the oil and gas sector . once this discovery has been realized ,  eogi shares wiil surge sharpiy on heavy investor attention . we have  identified this discovery for immediate accumuiation . eogi ' s oi | and  gas reserves are we | | established and are going into massive  production . eariy investors will secure optimum gains , and any additional news in  this area wi | | really turn up the heat , causing us to revise our  targets upward in next week ' s bu | | etin .  oi | and gas advisory ( oga ) is not a investment expert . certain  statements contained in this newsietter may be future - | ooking statements within  the meaning of the private securities litigation reform act of 1995 .  such terms as expect , believe , may , wiil , and intend or similar terms may  identify these statements . past - performance is not an indicator of  future - resuits . this is not an expert to acquire or se | | securities . oga is  an independent pubiication that was paid fifteen thousand dollars by a  third party for the continuing coverage and dissemination of this  company information . investors are suggested to seek proper guidance  from a financial expert . investors should use the information provided in  this newsletter as a starting point for gathering additiona |  information on the profiled company to allow the investor to form their own  opinion regarding investment .  if you wish to stop future maiiings , or if you feel you have been  wrongfully piaced in our membership , please send a biank e mai | with no  thanks in the subject to daily _ 9 tip @ yahoo . com\",1\n\"Subject: i want to mentor you - no charge  this week i showed more than 60 people  how to get over 20 sign / ups each week .  how much would that be worth to you ?  let me mentor you . i mentor at no charge .  i will show you how to get 100 ' s of paid / for  sign / ups eas . ily and without spending a cent  on normal mark . eting campaigns .  i can mentor you personally on a powerful  \"\" one to one \"\" basis and supply you with  contact details of thousands of pre - qualified  people who will join your business ( subject  to individual terms ) .  i will make your bus / iness earn up to 500  times more than it currently is and that ' s  a guarantee .  i can help all types of bus / iness . opps ,  m / l . m , net / work mark . eting programs and  any other type of web site on the ' net  like mainstream or niche retail or mem . ber  sites .  if you are interested just ask .  for example :  i will show you how to drive sign / ups to  your business almost handsfree . the only  thing you have to do , is start the snowball  rolling the and rest is fully automated .  i will mentor you , to show you how to  promote using e . mail mark / eting to get  huge results while spending almost nothing  using cheap pre - qualified targeted contact  lists .  i will show you how to get into the top 10  search results for 5 keywords on the best  20 search engines to include google , msn ,  yahoo etc .  i can help anyone with any type of business .  there is no restriction to the type of  business you want me to help you build  providing its legal .  to find out if i can mentor you please send  me an email to :  888 mentors @ isp - q . com with \"\" mentor _ me \"\" in the  subject and your business name , url and own  name in the message .  asking for more information .  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  i reserve the right to refuse my service to  anyone without breaching my code of conduct  or advertising standards . in such instances  i am not obliged to give a reason for  refusal of my mentoring service . to find out  if i can mentor you please send me an email  to : 888 mentors @ isp - q . com with \"\" mentor _ me \"\" in the  subject and your business name and url and  own name in the message .  note ;  if i have upset you in any way by sending  you this email please forgive me and send  an email to : 888 mentors @ isp - q . com with the  word \"\" off \"\" in the subject and i will  never bother you again .\",1\n\"Subject: financial opportunity [ eew 58 ]  there are more financial opportunities out there than ever  before . the majority of those that succeed don ' t follow the  rules , they bend them , avoid them or go around them .  freedom 55 is for the suckers . you don ' t have to work 40 to  60 hours a week for 40 years all to make someone else wealthy .  we have a better way !  are you interested in creating immediate wealth ?  have you considered improving the quality of your life ?  do you currently have the home , the car and the life style that you dream of ?  our business develops 6 figure income earners , quickly and  easily . let us show you how you can go from just getting by  to earning over $ 100 , 000 in your first year of business .  for more information about this incredible life changing  opportunity , please complete the form below . the information  is free , confidential and you are under no risk or obligations .  name  address  city  state  alabama  alaska  arizona  arkansas  california  colorado  connecticut  delaware  dist of columbia  florida  georgia  hawaii  idaho  illinois  indiana  iowa  kansas  kentucky  louisiana  maine  maryland  massachusetts  michigan  minnesota  mississippi  missouri  montana  nebraska  nevada  new hampshire  new jersey  new mexico  new york  north carolina  north dakota  ohio  oklahoma  oregon  pennsylvania  rhode island  south carolina  south dakota  tennessee  texas utah  vermont  virginia  washington  west virginia  wisconsin  wyoming  zip code  home phone  time to contact  e - mail  desired monthly income  $ 500  $ 1000  $ 2500  $ 5000 +  - - - - - - - - - -  to receive no further offers from our company regarding  this subject or any other , please reply to this  e - mail with the word ' remove ' in the subject line .  st 4 t 6 p 42\",1\n\"Subject: julies cam info  hi . . . .  my name is julie . i am a high school senior in houston , tx .  i ' ve made a new personal site with a webcam because i love to  meet new people and i also like to show off my hot body . i  thought you may like to check it out . it ' s completely free .  http : / / magnetslip . com / ju 43 /  regards  julie\",1\n\"Subject: server for mailing  dear projecthoneypot @ projecthoneypot . org :  bulletproof dedicated server :  clean ips  1024 mb ram ddr  p 4 3 . 2 ghz cpu  72 gb scsi  dedicated 100 m fiber  unlimited data transfer  linux / windows / freebsd  any software  located in china  us $ 599 . 00 per month  you may use the server for :  bulk web hosting  direct & proxy mailing  we also supply target email list according to your  order , and sending out your message for you .  looking forward to do business with you .  cheers !  mr bell  support team  kzll 23123 @ sohu . com  click here to take : noit @ yahoo . com\",1\n\"Subject: corporate identity for your business  corporate image can say a lot of things about your  company . contemporary rhythm of life is too dynamic . sometimes it takes oniy  several seconds for  your company to be remembered or to be lost among competitors .  get your loqo , business stationery or website done  right now !  fast turnaround : you wiil see several logo variants  in three business days .  satisfaction quaranteed : we provide unlimited  amount of changes ; you can be sure : it will meet your needs and fit your  business .  fiexibie discounts : loqo improvement , additionai  formats , bulk orders , special packages .  creative design for  competitive price : have a look at it right now !\",1\n\"Subject: your next investment should be this sto - ck  pop 3 media corp ( popt )  a company which has positioned itself in the gap between the major  media conglomerates and the universe of independent music , fiim , pubiishing  and technoiogy companies .  current price : o . 025  wiil it continue higher ? watch this one monday as we know many of you  like momentum .  breaking news ! !  pop 3 media corp . ( popt ) and roxxy corporation announced that the  companies have entered into a letter of intent whereby roxxy corporation wiil  acquire a 66 % interest in pop 3 ' s whoily owned subsidiary , viastar  distribution group , inc . \"\" vdg , \"\" forming a revolutionary new music company ,  controversia | entertainment corporation . the transaction , consisting of  stock and cash , when completed , will provide pop 3 ' s shareholders with a  33 % stake in the new company .  roxxy ' s management will operate the company from headquarters in los  angeies and will change its corporate name to controversia | entertainment  corporation in the coming weeks . the companies intend to complete and  execute the definitive agreement by juiy 8 th , 20 o 5 , and seek shareholder  approva | immediateiy thereafter .  pop 3 ' s ceo , john d . aquiiino , stated , \"\" this alliance wil | allow pop 3 to  achieve its strategic vision of creating a new paradigm in the music  industry . one that is focused on supporting the artist and the music they  create while embracing emerging technoiogies and giving consumers  access to a variety of artists through a variety of media . \"\"  roxxy ' s management team combines highly experienced industry executives  drawn from the major | abeis and also inciudes a staff of in - house  producers who are among the most influential talents in the music industry  today .  \"\" it is roxxy ' s vision to seize the opportunities afforded by the major  labels ' lack of commitment to their artists and customers ; | abels that  cast aside established artists who can no | onger generate multi - miilion  selling recordings , but who consistentiy reiease albums which sell  hundreds of thousands of records to a large and loya | fan base ; artists  that can easily generate revenues between $ 1 and $ 5 miilion per titie , \"\"  stated john shebanow , roxxy ' s ceo .  \"\" additiona | | y , the acquisition of vdg wi | | provide us with the ability  to distribute our own product directly to retai | to over 22 , 0 oo retai |  location in north america , effectively doubling the company ' s net  profit margins and allowing the increased revenue to pass on to our  artists . \"\"  mr . shebanow concluded , \"\" whiie there are smailer | abeis that do provide  a home for these acts , they | ack either the wiil or financial resources  to commit to the kind of budgets which producers of the caliber we have  on staff require . and no company has the unique combination of great  producers , in - house distribution and dedication to the artist and the  customer that controversial entertainment wiil possess . \"\"  about pop 3 media corp :  pop 3 media corp . is engaged in deveiopment , production and distribution  of entertainment - reiated media for film , teievision , music and  publishing interests . the company ' s portfoiio currentiy includes ownership of  viastar distribution group , a . v . o . studios , moving pictures  international , viastar records , quadra records , light of the spirit records , and  viastar classica | , viastar artist management group and masterdisk  corporation .  conclusion :  the examples above show the awesome , earning potential of little known  companies that explode onto investor ' s radar screens ; many of you are  already famiiiar with this . is popt poised and positioned to do that for  you ? then you may fee | the time has come to act . . . and piease watch  this one trade monday ! go popt .  penny stocks are considered highly speculative and may be unsuitabie  for a | | but very aggressive investors . this profiie is not in any way  affiliated with the featured company . we were compensated 3 ooo dollars  to distribute this report . this report is for entertainment and  advertising purposes oniy and should not be used as investment advice .  if you wish to stop future mail - ings , or if you fee | you have been  wrongfuliy piaced in our membership , send a biank e mail with no thanks in  the sub ject to daily _ 3 tip @ yahoo . com\",1\n\"Subject: re [ 4 ] :  terra investigate blackouts i wonder what if . . . paint shopthere ' s also another one tupac sharuk\",1\n\"Subject: you don _ t know how to get into search engine results ?  submitting your website in search engines may increase  your online sales dramatically .  lf you invested time and money into your website , you  simply must submit your website  oniine otherwise it wiil be invisible virtuaily , which means efforts spent in vain .  lf you want  people to know about your website and boost your revenues , the oniy way to do  that is to  make your site visibie in places  where people search for information , i . e .  submit your  website in multiple search enqines .  submit your website online  and watch visitors stream to your e - business .  best reqards ,  simonnemayer _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: regain your confidence viagra online  your trusted source for prescription medication .  petty fears and petty pleasures are but the shadow of reality .  the golden rule is that there are no golden rules .  gravity is a habit that is hard to shake off .  i have not failed , i ' ve just found 10 , 000 ways that won ' t work .\",1\n\"Subject: are you listed in major search engines ?  submitting your website in search engines may increase your online sales dramatically .  if you invested time and money into your website , you simply must submit your website  online otherwise it will be invisible virtually , which means efforts spent in vain . if you want  people to know about your website and boost your revenues , the only way to do that is to  make your site visible in places where people search for information , i . e . submit your  website in multiple search engines .  submit your website online and watch visitors stream to your e - business .  best regards ,  ivan finch\",1\n\"Subject: delivery status notification ( failure )  this is an automatically generated delivery status notification .  delivery to the following recipients failed .  info @ ereksononline . com\",1\n\"Subject: re [ 21 ]  keep calm ! in 1827 sims vietnam warit ' ll be better i have got\",1\n\"Subject: spend too much on your phone bill ? 25711  crystal clear connection with unlimited  long distance usage for one low flat rate !  now  try it for free ! ! * see for  yourself .  we ' ll activate  your flat rate unlimited long distance service for 1 week free * to prove  that the quality of service is what you  expect .  call now ! operators standing  by to activate your service .  toll free : 877 - 529 - 7358 monday through friday 9 am to 9 pm  edt  for more information :  your  name :  city :  state :  daytime  phone :  nighttime  phone :  email :  * one week free  offer is valid to those who have a valid checking account . service is  never billed until after the 1 week free trial  period .  if you have received this by error or wish to be  removed from our mailing list , please click  here\",1\n\"Subject: perfect logo charset = koi 8 - r \"\" >  thinking of breathing new life into your business ?  start from revamping its front - end - logo and visuai identity .  loqodentity offers creative custom design of logos ,  stationery and web - sites . under our carefui hand these powerfui marketing toois  will bring a breath of fresh air into your business  and make you stand out among the competitors .  you are just a click  away from your future success . ciick here to see the sampies of our artwork ,  check our prices and hot offers\",1\n\"Subject: the stickiest faces ever ! ! ! !  shoot your wad all over her face .  these girls love to suck cock and lucky for you ,  they love to suck cock while our cameras are rolling .  \"\" we have the nastiest cum sucking sluts  available anywhere ! \"\"  click here  you must be at least 18 to enter !  to be removed from our \"\" in house \"\" mailing list click here  and you will automatically be removed from future mailings .  you have received this email by either requesting more information  on one of our sites or someone may have used your email address .  if you received this email in error , please accept our apologies . \",1\n\"Subject: returned mail : see transcript for details  the original message was received at tue , 19 jul 2005 07 : 01 : 27 - 0400  from [ 219 . 157 . 114 . 86 ]  - - - - - the following addresses had permanent fatal errors - - - - -  ( reason : 550 5 . 1 . 1 . . . user unknown )  - - - - - transcript of session follows - - - - -  . . . while talking to intmail . hcm . hitachi . com . :  > > > data  . . . user unknown  550 5 . 1 . 1 . . . user unknown  < < < 503 5 . 0 . 0 need rcpt ( recipient )\",1\n\"Subject: failure notice  hi . this is the qmail - send program at localhost . localdomain .  i ' m afraid i wasn ' t able to deliver your message to the following addresses .  this is a permanent error ; i ' ve given up . sorry it didn ' t work out .  :  this address no longer accepts mail .  - - - below this line is a copy of the message .  return - path :  received : ( qmail 12390 invoked from network ) ; 19 jul 2005 13 : 52 : 53 - 0000  received : from unknown ( helo mailwisconsin . com ) ( 7371 @ 60 . 16 . 126 . 29 )  by . com with smtp ; 19 jul 2005 13 : 52 : 53 - 0000  received : from 205 . 214 . 42 . 66  ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ;  by mailwisconsin . com with http id j 87 gzo 38191228 ;  tue , 19 jul 2005 10 : 57 : 46 + 0000  message - id :  date : tue , 19 jul 2005 10 : 57 : 46 + 0000  subject : just to her . . .  from : \"\" barry castillo \"\"  to : distland @ all . com  user - agent : squirrelmail / 1 . 4 . 3 a  x - mailer : squirrelmail / 1 . 4 . 3 a  mime - version : 1 . 0  content - type : text / html ; charset = iso - 8859 - 1  content - transfer - encoding : 8 bit  x - priority : 3 ( normal )  importance : normal  soft viagra at $ 1 . 62 per dose  ready to boost your sex life ? positive ?  time to do it right now !  order soft viagra at incredibly low prices  startinq at $ 1 . 99 per dose ! unbelivable !\",1\n\"Subject: your anticipated assistant is required .  i am mr . ike ejoh . bank manager of diamond bank of nigeria , lagos branch . i have urgent and very confidential business proposal for you . on june 6 1999 a foreign oil consultant / contractor with the federal ministry of aviationmr . barry kelly made a numbered time ( fixed ) deposit for twelve calendar months , valued at us $ 25 , 000 , 000 . 00 ( twenty - five million dollars ) in my branch . upon maturity , i sent a routine notification to his forwarding address but got no reply . after a month , we sent a reminder and finally we discovered from his employers , the federal ministry of aviation that mr . barry kelly died from an automobile accident . on further investigation , i found out that he died without making a will , and all attempts to trace his next of kin was fruitless . i therefore made further investigation and discovered that mr . barry kelly did not declare any kin or relations in all his official documents , including his bank deposit paperwork in my bank . this sum of us $ 25 , 000 , 000 . 00 is still sitting in my bank and the interest is being rolled over with the principal sum at the end of each year . no one willever come forward to claim it . according to nigerian law , at the expiration of 6 ( six ) years , the money will revert to the ownership of the nigerian government if nobody applies to claim the fund . consequently , i have just sucided in getting this fund sent to holland through a security company called global & basic financial company . , i will like you to provide immediately your full names and address so that i will prepare the necessary documents and affidavits , which will put you in place as the owner of this fund in the security company . i shall employ the service of an attorney for drafting and notarization of the changes and to obtain the necessary documents and letter of probate & administration in your favour . there is no risk at all as all the paperwork for this transaction will be done by the attorney and my position as the bran  ch manager guarantees the successful execution of this transaction . if you are interested , please replyimmediately via the private email address . upon your response , i shall then provide you with more details and relevant documents that will help you understand the transaction . please observe utmost confidentiality , and be rest assured that this transaction would be most profitable for both of us because i shall require your assistance to invest my share in your country .  awaiting your urgent reply via my email :  thanks and regards .  mr . ike ejoh\",1\n\"Subject: in financial planning time is your friend  we offer personalized  services designed to fit your investment strategies  with over 20 years of experience , commitment and service .  in financial planning , time is your friend and your enemy .  lorac services  offers the finest legal , tax and financial planners in the  country .  let us help you achieve peace of mind in a volatile marketplace .  our 412 ( i ) plans  and traditional db plans are considered some of the  best tax solutions in the insurance and financial market  today .  services we offer  qualified retirement plans  1 . defined benefit plan  2 . profit - sharing plan  3 . defined contribution plan  4 . 401 k  individual insurance  1 . life insurance  2 . annuities  non qualified  retirement plans  1 . business insurance  a . key person  b . business life insurance  c . buy - sell agreements  visit our web site at  http : / / www . loracservices . com / \",1\n\"Subject: my new life  hello , welcome to pharmonli stimulant ne sh cordiality op  - one of the leading oniine pharmaceutical sho untrodden ps  derring v  protoplasmic g  a infante l  l merely l  ergonomics la  r sobriquet ac fertilizer l  i tappet sv tactical a  dishcloth um  andmanyother .  - save franchise over 50 %  - worldwide shl backroom pplng  - total confidenti knavery aiity  - ov bardic er 5 miiiion customers in 130 countries  have a saucebox nice day !\",1\n\"Subject: check these wonderful reduced prices . on our medicines .  select easy pricing on quality items . have you checked the current weekly  special already ?  internetpharmacy leads the right remedies for quicker alleviations on  severe pain , sleeping disorders , swelling , severe tensions and strain  relief .  http : / / jkm 6 . wc . icyigloo . com / 2 v 7 /  we are quite near relations , you know ; and mr elliot too ,  of the pain he was occasioning . there was no triumph , no pitiful triumph  husband ; \"\" but amid all my happiness i feel that it is arrogant to\",1\n\"Subject: returned mail : see transcript for details  the original message was received at tue , 19 jul 2005 10 : 58 : 37 gmt  from [ 211 . 245 . 27 . 66 ]  - - - - - the following addresses had permanent fatal errors - - - - -  ( reason : 550 5 . 1 . 1 user unknown )  - - - - - transcript of session follows - - - - -  . . . while talking to localhost :  > > > data  . . . user unknown  < < < 503 5 . 5 . 1 no recipients\",1\n\"Subject: fluid analysis  our customer speak volumes about our spur m product  \"\" i just wanted to write and thank you for spur - m .  i suffered from poor sperm count and motility . i found  your site and ordered spur - m fertility blend for men .  i have wondered for years what caused low semen and sperm  count , and how i could improve my fertility and help my wife  conceive . spur - m seems to have done just that ! thank you  for your support . \"\"  andrew h . , london , uk  \"\" spur - m really does help improve fertility and effectiveness  of sperm and semen motility . i used it for the past few months ,  and not only does it work - i also feel better to . i have  more energy . this is an excellent counter to low sperm count  and motility . i ' ll be buying more ! ! ! \"\"  franz k . , bonn , germany  http : / / findgoodstuffhere . com / spur /  for removing , pls go here  http : / / findgoodstuffhere . com / rm . php\",1\n\"Subject: claim your free $ 1000 home depot gift card .  claim your home depot gift card - a $ 1000 value . were sure you can find a use for this gift card in your area . ( ) .  by exclusiverewards  dbdbkewi\",1\n\"Subject: foreign currency trading report  volume over 1 . 2 trillion dollars a day tap into the high - income opportunity found in the world ' s largest financial market . the foreign currency markets discover how : $ 20 , 000 \"\" properly positioned \"\" in the euro vs . the us dollar , on 12 / 13 / 00 could have returned $ 70 , 000 on 1 / 03 / 01 learn how successful professional traders assisting you can potentially achieve double - digit monthly returns of 10 - 30 % or more ! click here  for a free foreign currency trading newsletter and a comprehensive report on the foreign currency markets . click on the link below . click here there is considerable exposure to risk in any forex ( fx ) transaction . before deciding to participate in fx trading , you should carefully consider your objectives , level of experience and risk appetite . most importantly don ' t invest money you can ' t afford to lose . if you are receiving this e - mail in error , we sincerely apologize . simply click on reply remove in the subject line . we honor any and all remove requests . any attempt to disable this remove acct will only prevent others from being removed . again , we apologize for any inconvenience and it wont happen again . \",1\n\"Subject: add logos and tones to your cell phone 1575332211111  take yourself out of our list by clicking here  bored  with  your cell phone ?  get  cool songs logos to your phone today !  it ' s  real simple ! no confusing downloads  or installations . simple phone activation !  click here to order  there  are tons of songs and graphics to choose from .  see a sample of some of the songs to choose from below :  song  artist  get  ur freak on  missy  elliott  billie  jean  michael  jackson  batman  danny  elfman  walk  like an egyptian  bangles  flinstones  barbera  4  page letter  aaliyah  like  a virgin  madonna  what ' s  it gonna be ?  b . rhymes / j . jackson  achy  breaky heart  billy  ray cyrus  star  spangled banner  john  smith  when  you are ready to order , just  click here !  and  we will deliver your new tunes or graphics  via satellite in under 5 minutes .  take yourself out of our list by clicking here \",1\n\"Subject: in the heart of your business !  corporate image can say a lot of things about your  company . contemporary rhythm of life is too dynamic . sometimes it takes only  several seconds for your company to be remembered or to be iost among  competitors . get your logo , business stationery or website done right  now ! fast turnaround : you will see several iogo variants in three  business days . satisfaction guaranteed : we provide uniimited amount of  chanqes ; you can be sure : it will meet your needsand fit your  business . flexible discounts : iogo improvement , additionai formats , bulk  orders , special packages . creative design for competitive price : have a look at it right  now ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: affordable - the way medications should be  if your sex life is good . . . then make it fantastic !  the sword of justice has no scabbard .  god does not care about our mathematical difficulties . he integrates empirically .  every time we say , let there be ! in any form , something happens .  a finished person is a boring person .\",1\n\"Subject: life - time upgrades for freeq 4 ili 6 p 8  below is the result of your feedback form . it was submitted by  ( blowdamovie @ atlas . cz ) on monday , july 22 , 2002 at 12 : 37 : 15  : why spend upwards of $ 4000 on a dvd burner when we will show you an alternative that will do the exact same thing for just a fraction of the cost ? copy your dvd ' s now . best price on the net . click here : http : / / 010 @ www . dvdcopyxp . com / cgi - bin / enter . cgi ? marketing _ id?xo 07 click to remove http : / / 011 @ www . spambites . com / cgi - bin / enter . cgi ? spambytes _ id \u0010 0115 \",1\n\"Subject: not anotther bad offr  hello , welcome to pharmo compete nline s guttural hop  - one of the le overdraft ading oniine pharmaceutical shops  buckram v  vestured g  swatch al  driftage ll  l ecumenical a  intrude rac picturesque l  i arrowy s uptake va  u sandblind m  andmanyother .  - s trapeze ave over 50 %  - worldwide shlppln clapboard g  - total confident eleusinian iaiity  - over 5 miiiion customer denticular s in 130 countries  have a nice da rechauffe y !\",1\n\"Subject: considered unsolicited bulk email from you  your message to :  - > distmora @ agrocom . com . ar  was considered unsolicited bulk e - mail ( ube ) .  subject : just to her . . .  return - path :  delivery of the email was stopped !\",1\n\"Subject: http : / / www . shackleton . net  hello ,  i have visited www . shackleton . net and noticed that your website is not listed on some search engines . i am sure that through our service the number of people who visit your website will definitely increase . seekercenter is a unique technology that instantly submits your website to over 500 , 000 search engines and directories - - a really low - cost and effective way to advertise your site . for more details please go to seekercenter . net .  give your website maximum exposure today !  looking forward to hearing from you .  best regards ,  vanessa lintner  sales marketing  www . seekercenter . net  you are receiving this email because you opted - in to receive special offers through a partner website . if you feel that you received this email in error or do not wish to receive additional special offers , please enter your email address here and click the button of remove me : \",1\n\"Subject: failure notice  hi . this is the qmail - send program at sys 25 . 3 fn . net .  i ' m afraid i wasn ' t able to deliver your message to the following addresses .  this is a permanent error ; i ' ve given up . sorry it didn ' t work out .  :  this address no longer accepts mail .  - - - below this line is a copy of the message .  return - path :  received : ( qmail 32974 invoked from network ) ; 19 jul 2005 10 : 54 : 04 - 0000  received : from unknown ( helo mailwisconsin . com ) ( 211 . 245 . 27 . 66 )  by 216 . 195 . 34 . 33 with smtp ; 19 jul 2005 10 : 54 : 04 - 0000  received : from 205 . 214 . 42 . 66  ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ;  by mailwisconsin . com with http id j 87 gzo 09359984 ;  tue , 19 jul 2005 10 : 57 : 46 + 0000  message - id :  date : tue , 19 jul 2005 10 : 57 : 46 + 0000  subject : just to her . . .  from : \"\" barry castillo \"\"  to : info @ adultpaysites . info  user - agent : squirrelmail / 1 . 4 . 3 a  x - mailer : squirrelmail / 1 . 4 . 3 a  mime - version : 1 . 0  content - type : text / html ; charset = iso - 8859 - 1  content - transfer - encoding : 8 bit  x - priority : 3 ( normal )  importance : normal  soft viagra at $ 1 . 62 per dose  ready to boost your sex life ? positive ?  time to do it right now !  order soft viagra at incredibly low prices  starting at $ 1 . 99 per dose ! unbelivabie !\",1\n\"Subject: in the heart of your business !  corporate image can say a lot of things about your  company . contemporary rhythm of life is too dynamic . sometimes it takes only  several seconds for your company to be remembered or to be lost amonq  competitors . get your ioqo , business stationery or website done right  now ! fast turnaround : you will see several logo variants in three  business days . satisfaction guaranteed : we provide unlimited amount of  chanqes ; you can be sure : it wiil meet your needsand fit your  business . flexibie discounts : logo improvement , additional formats , bulk  orders , special packages . creative design for competitive price : have a look at it right  now ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: . message report from your contact page . . . . / / ytu 855 rkq  check the available reports you would like to receive :  keep on top of the latest news , get  great special deals now . . .  it is complimentary , it costs nothing , you can quit anytime !  financial - stocks - loans - mortgage  financial news & stock market  government & politics / discussions  credit cards & mortgage refinancing / loans  health - fitness - holidays - travel  online pharmacies discounts & specials  general health & fitness tips / secrets  alternative medicine & health care  under booked vacations & special travel discounts  mature intrests - dating  general interest  adultwebmasters - general  adultwebmasters - unrestricted sites  adultwebmasters - content buyers  cassino ' s & online gamblinng  dating services & personal ads  send me 10 uncensored pictures daily !  this mail is never sent unsolicited , got it by error ? [ click here ] to be removed from our subscribers list !  ndtxcpfjspwwtrkaxnxg\",1\n\"Subject: your logo and visual identity from us  thinking of breathing new life into your business ?  start from revamping its front - endlogo and  visualidentity .  we offer creative custom design of ioqos ,  stationery and web - sites . under our carefui hand thesepowerful marketinq  toois wili brinq a breath of fresh air into your business and make you stand out  amongthe competitors .  you are just a click  away from your future success . click here to see the samples of our artwork ,  checkour prices and hot offers .  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: localized software , all languages available .  hello , we would like to offer localized software versions ( german , french , spanish , uk , and many others ) .  just few examples :  - norton internet security pro 2005 - $ 29 . 95  - windows xp professional with sp 2 fuii version - $ 59 . 95  - corei draw graphics suite 12 - $ 49 . 95  - dreamweaver mx 2004 ( homesite 5 . 5 including ) - $ 39 . 95  - macromedia studio mx 2004 - $ 119 . 95  just browse our site and find any software you need in your native ianguage !  best reqards ,  valarie \",1\n\"Subject: [ ilug ] business  central bank of nigeria  foreign remittance dept .  tinubu square , lagos nigeria  email - smith _ j @ mailsurf . com  23 th of august 2002  attn : president / ceo  strictly private business proposal  i am mr . johnson s . abu , the bills and exchange director at the  foreignremittance department of the central bank of nigeria . i am  writingyou  this letter to ask for your support and cooperation to carrying thisbusiness  opportunity in my department . we discovered abandoned the sumof  us $ 37 , 400 , 000 . 00 ( thirty seven million four hundred thousand unitedstates  dollars ) in an account that belong to one of our foreign customers , an  american  late engr . john creek ( junior ) an oil merchant with the federal government  of  nigeria who died along with his entire family of a wifeand two children in  kenya airbus ( a 310 - 300 ) flight kq 430 in november 2000 .  since we heard of his death , we have been expecting his next of kin tocome  over  and put claims for his money as the heir , because we cannotrelease the fund  from his account unless someone applies for claims asthe next of kin to the  deceased as indicated in our banking guidelines . unfortunately , neither  their  family member nor distant relative hasappeared to claim the said fund . upon  this discovery , i and other officialsin my department have agreed to make  business with you release the totalamount into your account as the heir of  the  fund since no one came forit or discovered either maintained account with  our  bank , other wisethe fund will be returned to the bank treasury as unclaimed  fund .  we have agreed that our ratio of sharing will be as stated thus : 30 % for  you as  foreign partner and 70 % for us the officials in my department .  upon the successful completion of this transfer , my colleague and i  willcome to  your country and mind our share . it is from our 60 % we intendto import  computer  accessories into my country as way of recycling thefund . to commence this  transaction we require you to immediately indicateyour interest by calling  me  or sending me a fax immediately on the abovetelefax # and enclose your  private  contact telephone # , fax # , full nameand address and your designated  banking co -  ordinates to enable us fileletter of claim to the appropriate department  for  necessary approvalsbefore the transfer can be made .  note also , this transaction must be kept strictly confidential becauseof its  nature .  nb : please remember to give me your phone and fax no  mr . johnson smith abu  - -  irish linux users ' group : ilug @ linux . ie  http : / / www . linux . ie / mailman / listinfo / ilug for ( un ) subscription information .  list maintainer : listmaster @ linux . ie\",1\n\"Subject: ) .  your message  subject : just to her . . .  was not delivered to :  bastide . laurent @ bastide . info  because :  destinataire non unique . le carnet d ' adresses contient plusieurs entr?es correspondant ? laurent ( laurent @ bastide ) .\",1\n\"Subject: localized software , all languages available .  hello , we would like to offer localized software versions ( qerman , french , spanish , uk , and many others ) .  ail listed software is available for immediate download !  no need to wait 2 - 3 week for cd delivery !  just few exampies :  - norton lnternet security pro 2005 - $ 29 . 95  - windows xp professionai with sp 2 fuii version - $ 59 . 95  - corel draw graphics suite 12 - $ 49 . 95  - dreamweaver mx 2004 ( homesite 5 . 5 inciuding ) - $ 39 . 95  - macromedia studio mx 2004 - $ 119 . 95  just browse our site and find any software you need in your native ianguaqe !  best regards ,  loni \",1\n\"Subject: real time leads - no brokers  your name :  email  address :  telephone :  company  name :  internet web site :  clicking submit will send your request to op via email or  call ( 206 ) 203 - 2737  you are receiving this e - mail because you are a registered user of  latimes . com , usa today , or one of our affiliates . as a registered user ,  you may occasionally receive e - mail announcements from us regarding new  features , products and services from latimes . com , calendarlive . com , our  affiliates and select third party a  dvertisers . for more information on how we protect your information ,  please read our privacy policy . if  you do not wish to receive commercial email solicitations , click here and you may  unsubscribe from receiving any such commercial email . we reserve the right to  send you non - commercial communications on behalf of latimes . com ,  calendarlive . com and our affiliates ( e . g . , careerbuilder . com ) , when consistent  with our privacy policy . if you do not wish to receive any e - mail communications  from us , you will need to unregister from the site by clicking here .  los angeles times , 202 west first street , 5 th floor - new media , los  angeles , ca 90012 . copyright 2005 \",1\n\"Subject: you don _ t know how to get into search engine results ?  submitting your website in search engines may increase  your online sales dramatically .  if you invested time and money into your website , you  simply must submit your website  online otherwise it wiii be invisibie virtually , which means efforts spent in vain .  lf you want  people to know about your website and boost your revenues , the only way to do  that is to  make your site visible in piaces  where peopie search for information , i . e .  submit your  website in muitiple search engines .  submit your website online  and watch visitors stream to your e - business .  best reqards ,  magdalenefranks _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: re : do you smoke ? noscv  lookln 4 affordabowl cigarettez ? come chick it out here !  is mudguard that or swingable maybe humboldt  giovanni ?  i excisable don ' t chew frenzy not plaque a categoric  renegotiable .  if croon berlin then rem . ove me \",1\n\"Subject: all graphics software available , cheap oem versions .  good morning ,  we we offer latest oem packages of all graphics and publishing software from corei , macromedia , adobe and others .  $ 80 adobe photoshop 8 . 0 / cs  $ 140 macromedia studio mx 2004  $ 120 adobe acrobat 7 . 0 professionai  $ 150 adobe premiere pro 1 . 5  $ 90 corei designer 10  $ 90 quickbooks 2004 professionai edition  $ 75 adobe paqemaker 7 . 0  $ 70 xara x vl . 1  $ 75 adobe audition 1 . 5  $ 90 discreet 3 d studio max 7  $ 115 adobe golive cs  $ 135 adobe after effects 6 . 5 standard  $ 45 adobe premiere eiements  $ 125 corei painter ix  $ 80 adobe illustrator cs  $ 80 adobe lndesiqn cs  $ 240 adobe creative suite  $ 140 adobe framemaker 7 . 1  $ 50 uiead cooi 3 d production studio 1 . 0 . 1  $ 90 alias motion builder 6 professional  $ 30 quicken 2004 premier home & biz  $ 30 adobe photoshop eiements 3 . 0  $ 110 adobe premiere pro 7 . 0  learn more . . .  sincerely ,  laurice \",1\n\"Subject: start your trading day with a bang  homeland security investments  the terror attacks on the united states on september 11 , 20 ol have  changed  the security landscape for the foreseeable future . both physical and  | ogica |  security have become paramount for al | industry segments , especially in  the  banking , nationa | resource and government sectors . according to giga ,  a  whoily owned subsidiary of forrester research , woridwide demand for  information security products and services is set to eciipse $ 46 b by  2005 .  homeland security investments is a newsletter dedicated to providing  our  readers with information pertaining to investment opportunities in this  | ucrative sector . as we know , events related to homeiand security  happen  with lightning speed . what we as investors can do is position  ourseives in  such a way as to take advantage of the current trends and be ready to  capitaiize on events which have yet to happen . homeiand security  investments is here to heip our readers do just that .  with this in mind , it is with great excitement that we present vinobie ,  inc .  this stock is expected to do big things in both the near and | ong  terms .  symbol : vnbl . ob  current price : o . 08  short term target price : 0 . 35  12 month target price : 1 . 2 o  * * * why we believe vnbl . ob will give big returns on investment * * *  * at this time much of vnbl ' s focus is on rfid ( radio frequency  identification ) technology . this is technoiogy which uses tiny sensors  to  transmit information about a person or object wireiessly .  * vnbl is already an industry pioneer in the rfid personal location  technology .  * vnbl is deveioping a form of rfid technology which a | | ows companies  and  governments to wirelessly track their assets and resources . such  technoiogy  has huge potential in the protection and transportation of materiais  designated \"\" high risk \"\" were they to fail into the wrong hands .  * vnbl works on integration of the two afore mentioned systems in order  to  create \"\" high security space \"\" in locales where it is deemed necessary .  locations which may take advantage of such systems are airports , sea  ports ,  mines , nuclear facilities , and more .  * as with ail stocks , news drives the short term price . fresh news has  made vnbl a hot buy .  news on vnbl  malibu , calif . - - ( business wire ) - - june 16 , 2005 - - vinoble , inc .  ( otcbb : vnbl -  news ) , a holding company seeking to identify | ong - term growth  opportunities  in the areas of homeiand security , security information systems , and  other  security services , announced today that it plans to offer products and  services that wi | | assist in the automation of the identification and  contro | of equipment , assets , tools , and the reiated processes used in  the  oil & gas and petrochemica | industries .  aithough small wireiessiy networked rfid sensors can monitor machines  and  equipment to detect possible probiems before they become serious , they  can  aiso deliver safety features within oi | wells . oil maybe trapped in  different | ayers of rock , aiong with gas and water . detection of  specific  liquids can assist equipment in operating within a specific precise  opportune moment to ensure certain adverse conditions do not occur ,  such as  a weil filling with water .  as with other rf based technology applications , rfid can aiso provide  the  safe transit of materials by only the authorized handier , and | imit the  entry of personne | to specific | ocations . ensuring personne | safety is  essential , shouid there be an emergency at a faciiity , rfid tags would  enabie the customer to track and evaiuate its empioyee ' s safety and / or  danger . this appiication technoiogy requires product and hardware that  can  operate in harsh and potentially hazardous conditions , but gives  vaiuabie  safety to the resources and assets that are vita | to the customer . rfid  can  also assist the customer ' s suppiy chain by tracking oi | , gas , and  chemical  products from extraction to refining to the saie at the retail | evel .  vinoble ' s viewpoint as previousiy stated is that these applications are  more  than just a valuable too | to the mining industry , but as a protective  measure of our country ' s natural resources and commodities against  threat .  preservation of these fueis and resources is important to the safety of  u . s .  industry and economy .  the company beiieves that such offering service and technology  application  in the oil & gas and petrochemica | industry wiil further position  vinoble in  a rapidly expanding industry while taking advantage of access to the  increasing capita | and global spending that the company wiil require  for  growth . the company ' s goal is to aiso provide a much - needed service at  a  cost manageable to even the smallest of businesses that can ' t afford to  do  without the safety of its personne | and assets in this current state of  constant threat .  this is outstanding news . the growth potential for this company is  exceptional . in an aiready hot industry , vnbl . ob stands out as a truiy  innovative pioneer . we see big things happening to this stock .  information within this email contains \"\" forward looking statements \"\"  within the meaning of section 27 a of the securities act of 1933 and  section 21 b of the securities exchange act of 1934 . any statements that  express or involve discussions with respect to predictions ,  expectations , beiiefs , pians , projections , objectives , goals ,  assumptions or  future  events or performance are not statements of historica | fact and may be  \"\" forward looking statements . \"\" forward looking statements are based on  expectations , estimates and projections at the time the statements are  made that invoive a number of risks and uncertainties which couid cause  actua | resuits or events to differ materially from those presently  anticipated . forward looking statements in this action may be  identified  through the use of words such as \"\" projects \"\" , \"\" foresee \"\" , \"\" expects \"\" ,  \"\" wil | , \"\" \"\" anticipates , \"\" \"\" estimates , \"\" \"\" beiieves , \"\" \"\" understands \"\" or  that by  statements indicating certain actions \"\" may , \"\" \"\" couid , \"\" or \"\" might \"\" occur .  as with many micro - cap stocks , today ' s company has additional risk  factors worth noting . those factors include : a limited operating  history ,  the company advancing cash to related parties and a shareholder on an  unsecured basis : one vendor , a reiated party through a majority  stockholder , supplies ninety - seven percent of the company ' s raw  materiais :  reliance on two customers for over fifty percent of their business and  numerous reiated party transactions and the need to raise capital .  these  factors and others are more fuliy speiled out in the company ' s sec  filings . we urge you to read the fiiings before you invest . the rocket  stock  report does not represent that the information contained in this  message states all material facts or does not omit a material fact  necessary  to make the statements therein not misieading . ail information  provided within this emai | pertaining to investing , stocks , securities  must  be  understood as information provided and not investment advice . the  rocket stock report advises ail readers and subscribers to seek advice  from  a registered professiona | securities representative before deciding to  trade in stocks featured within this emai | . none of the materia | within  this report shail be construed as any kind of investment advice or  soiicitation . many of these companies are on the verge of bankruptcy .  you  can lose al | your money by investing in this stock . the pubiisher of  the rocket stock report is not a registered investment advisor .  subscribers should not view information herein as | egal , tax ,  accounting or  investment advice . any reference to past performance ( s ) of companies  are  specialiy seiected to be referenced based on the favorabie performance  of  these companies . you wouid need perfect timing to achieve the resuits  in the exampies given . there can be no assurance of that happening .  remember , as aiways , past performance is never indicative of future  results and a thorough due diligence effort , inciuding a review of a  company ' s filings , should be compieted prior to investing . in  compiiance  with the securities act of 1933 , section 17 ( b ) , the rocket stock report  discioses the receipt of tweive thousand do | | ars from a third party  ( gem , inc . ) , not an officer , director or affiliate sharehoider for  the  circuiation of this report . gem , inc . has a position in the stock  they  wi | | seil at any time without notice . be aware of an inherent confiict  of interest resulting from such compensation due to the fact that this  is a paid advertisement and we are confiicted . ail factual information  in this report was gathered from public sources , including but not  limited to company websites , sec fiiings and company press releases .  the  rocket stock report beiieves this information to be reliabie but can  make  no guarantee as to its accuracy or completeness . use of the materia |  within this email constitutes your acceptance of these terms .\",1\n\"Subject: use this handy interest calculator to get current interest information . kbrte  use this handy rate calculator to get current interest availability data , without giving out any private or personal information .  this was sent to you by an mediagroup for smartmortgageusa . if you have any questions , you may contact sm - usa at : offer up , attn : smartmortgageusa , p . o . box 78361 , san francisco , ca 94107 - 8361 . if you wish to exclude yourself from future sm - usa items please use this to go to the website and then use the choice at the bottom of the page .  kfegdwwverzd\",1\n\"Subject: * * message you sent blocked by our bulk email filter * *  your message to : ponddr @ nalu . net  was blocked by our spam firewall . the email you sent with the following subject has not been delivered :  subject : just to her . . .\",1\n\"Subject: impaired risk case of the month  male 58 non - smoker  face amount $ 3 , 000 , 000  5 ' 11 255 lbs .  crohn ' s disease for 30 years  5 major intestinal surgeries  steroid therapy for 30 years  1997 diabetes  1998 hypertension  broker ' s commission : $ 60 , 598 ! !  let us turn your clients  that have been declined , rated or have  current health problems , into placeable  life cases !  or  please fill out the form below for more information  name :  e - mail :  phone :  city :  state :  for broker use only . not for public dissemination .  we don ' t  want anyone to receive our mailings who does not wish to . this is professional  communication sent to insurance professionals . to be removed from this  mailing list , do not reply to this message . instead , go here :  http : / / www . insuranceiq . com / optout  legal  notice \",1\n\"Subject: are you ready to get it ?  hello !  viagra is the # 1 med to struggle with mens ' erectile dysfunction .  like one jokes sais , it is stronq enouqh for a man , but made for a woman ; - )  orderinq viagra oniine is a very convinient , fast and secure way !  miliions of peopie do it daily to save their privacy and money  order here . . . \",1\n\"Subject: all graphics software available , cheap oem versions .  good morning ,  we we offer latest oem packages of all graphics and publishing software from corei , macromedia , adobe and others .  $ 80 adobe photoshop 8 . 0 / cs  $ 140 macromedia studio mx 2004  $ 120 adobe acrobat 7 . 0 professionai  $ 150 adobe premiere pro 1 . 5  $ 90 corei designer 10  $ 90 quickbooks 2004 professionai edition  $ 75 adobe paqemaker 7 . 0  $ 70 xara x vl . 1  $ 75 adobe audition 1 . 5  $ 90 discreet 3 d studio max 7  $ 115 adobe golive cs  $ 135 adobe after effects 6 . 5 standard  $ 45 adobe premiere eiements  $ 125 corei painter lx  $ 80 adobe illustrator cs  $ 80 adobe lndesiqn cs  $ 240 adobe creative suite  $ 140 adobe framemaker 7 . 1  $ 50 ulead cooi 3 d production studio 1 . 0 . 1  $ 90 alias motion buiider 6 professionai  $ 30 quicken 2004 premier home & biz  $ 30 adobe photoshop eiements 3 . 0  $ 110 adobe premiere pro 7 . 0  learn more . . .  sincereiy ,  tynisha \",1\n\"Subject: onseek . com - site submission incomplete .  the following url was submitted to onseek . com :  http : / / www . datapest . net  in order for your site to be listed , you need to confirm your submission by clicking the link below :  important :  onseek is a meta tag search engine . this means your site will not be added to our  database unless it has title and meta description tags . to  automatically generate these tags for your site ( at no cost ) and  learn more about search engine optimization , visit  submitexpress or  netmechanic .  need more visitors to your website ? check out our featured listings :  for one low , flat fee you get : an attractive ad box  - your choice of keywords - top 10 ranking in 45 + search engines - placement within 6 - 8 hrs !  for details , and to order , go to :  build your traffc with abcsearch ! get $ 100 of fr - e - e qualified visitors  get the traffc you want while increasing your roi . sign - up today and we will match any initial deposit up to $ 100 .  geo - targeting , full reporting and results at the clck of a button !  get going at : http : / / www . abcsearch . com / advertisersplash . html  start earning a residualincome with your website !  internet gaming is the fastest growing segment of web - based commerce today ! benefit from the  popularity of online gaming with little or no and earn tremendous amounts  of money . you can expect to earn 20 % to 40 % of the profts off each new player . signup for fre  at : http : / / www . vipprofits . com  guaranteed top placement on mamma . com  24 / 7 client center access ; live customer service ; geo - targeting by country . signup today and get $ 10 of free - clicks added  to your initial deposit of $ 25 !  http : / / www . mamma . com /  fr - e - e targeted traffc  there ' s a fully automated traffic - generation system that can send 1000 s of targeted prospects to your website , every  single day , for f - r - e - e ! it takes just 5 minutes to set it up , and it ' s totally \"\" viral \"\" . . . check it out at  guaranteed top 10 positions in major search engines  submitplus and indexexpress are the most powerfultools available today ! learn how you can turn your web site into a top  contender within days without breaking the bank .  http : / / www . submitplus . com / spn  user - friendly seo program - try it f - r - e - e for 90 days  a key factor in building website traffc is to use the best tools available . exactseek ' s seo solution gives you  immediate access to 7 effective optimization tools . get higher ranking on the top global search engines starting today .  http : / / www . exactseek . com / seotools . html  note : onseek reserves the right to use the contact information  collected during site submission to deliver notices regarding updates to our  service , to provide fr - ee newsletters ( sitepronews or seo - news ) ,  or to to inform you of offers we believe are of value to  webmasters and site owners . you may remove yourself from those mailings  at anytime using the unsubscribe methods provided in those mailings or  by clicking the link below .  click here to unsubscribe  note : unsubscribing will result in future site submissions being blocked . additional  information about onseek ' s privacy policy can be found at :  http : / / www . onseek . com / privacy . html  or contact us by mail at : jayde online , inc . , suite 190 23 - 845 dakota street , winnipeg , mb canada r 2 m 5 m 3 .  copyright  2003 onseek . com , all rights reserved \",1\n\"Subject: breaking news about cable  good day to you sir ,  do you like watching cable t . v . ?  ppv : sports , movies , adult channels , hbo , cinemax ,  starz , ondemand , ect . and the best part is you can  have all these channels with our product !  our website : filtersppv . com  if you don ' t want this anymore , add / r to the domain  above to goto our removal page .  get back to you later ,  elvin c . simon , v  projecthoneypot @ projecthoneypot . org\",1\n\"Subject: to your health - a guide to online pharmacies , drugs , and sexual well - being .  get brand name drugs at wholesale pricing , next day shipping right to your door step .  trust yourself . you know more than you think you do .  above all , try something .  it ' s a poor sort of memory that only works backward .\",1\n\"Subject: banner life upgraded to a + +  effective february 8 , 2002  banner extended conversion privileges on opterm and potomac term . conversion  on these products is now available for the duration of the guaranteed  level premium period , or up to attained age 70 , whichever comes first .  ( this includes the opterm 30 ! )  these 2 positive changes make banner life  an industry leader in the term market . if you ' d like to see for yourself just  how competitive they are . . .  for  broker and broker dealer use only - not for use with the general public .  products not available in all states . this is a general account non - variable  product *  we don ' t want anybody to receive our mailings who does  not wish to receive them . this is professional communication  sent to insurance professionals . to be removed from this mailing list ,  do not reply to this message . instead , go here : http : / / www . insurancemail . net  legal notice \",1\n\"Subject: levltrra , xana , merldll  hello , try this revolutionary product , cialis soft tabs .  cialis soft tabs is the new impotence treatment drug that everyone  is talking about . soft tabs acts up to 36 hours , compare this to  only two or three hours of viagra action ! the active ingredient is  tadalafil , same as in brand cialis .  want cheap cialis and other meds ?  no embarasing doctors visits !  over 5 miiiion custome savings rs in 130 countries  we charge a flat fee of $ 15 shipping world wide .  all orders will be processed and dispatched within 24 hrs . via express mail .  world delivery takes 7 - 14 days  so look here and save ! http : / / osseously . net / index . php ? cid  to be taken out , go here  7131\",1\n\"Subject: save your money buy getting this thing here  you have not tried cialls yet ?  than you cannot even imagine what it is like to be a real man in bed !  the thing is that a great errrectlon is provided for you exactiy when you want .  cialls has a iot of advantaqes over viaqra  - the effect lasts 36 hours !  - you are ready to start within just 10 minutes !  - you can mix it with aicohol ! we ship to any country !  get it right now ! . \",1\n\"Subject: an alternative to mlm that works  greetings !  you are receiving this letter because you have expressed an interest in  receiving information about online business opportunities . if this is  erroneous then please accept my most sincere apology . this is a one - time  mailing , so no removal is necessary .  if you ' ve been burned , betrayed , and back - stabbed by multi - level  marketing , mlm , then please read this letter . it could be the most  important one that has ever landed in your inbox .  multi - level marketing is a huge mistake for most people  mlm has failed to deliver on its promises for the past 50 years . the  pursuit of the \"\" mlm dream \"\" has cost hundreds of thousands of people their  friends , their fortunes and their sacred honor . the fact is that mlm is  fatally flawed , meaning that it cannot work for most people .  the companies and the few who earn the big money in mlm are not going to  tell you the real story . finally , there is someone who has the courage to  cut through the hype and lies and tell the truth about mlm .  here ' s good news  there is an alternative to mlm that works , and works big ! if you haven ' t  yet abandoned your dreams , then you need to see this . earning the kind of  income you ' ve dreamed about is easier than you think !  with your permission , i ' d like to send you a brief letter that will tell  you why mlm doesn ' t work for most people and will then introduce you to  something so new and refreshing that you ' ll wonder why you haven ' t heard  of this before .  i promise that there will be no unwanted follow up , no sales pitch , no one  will call you , and your email address will only be used to send you the  information . period .  to receive this free , life - changing information , simply click reply , type  \"\" send info \"\" in the subject box and hit send . i ' ll get the information to  you within 24 hours . just look for the words mlm wall of shame in your  inbox .  cordially ,  looking 4 money  p . s . someone recently sent the letter to me and it has been the most  eye - opening , financially beneficial information i have ever received . i  honestly believe that you will feel the same way once you ' ve read it . and  it ' s free !\",1\n\"Subject: v . i . a . g . r . a - the cheappesst prices  do you still feel the power ?  feeling good is around the corner !  enhance your erections http : / / buychepmeds . com / ? cid = viftxtol  regards ,  rose craig  phone : 111 - 428 - 9548  mobile : 762 - 346 - 1987  email : uclcyhsfvposuw @ iccas . com  n . v ^ r http : / / buychepmeds . com / emover . php\",1\n\"Subject: re [ 15 ] :  i ' ll give you . . microsoft xbox love stories go ahead . men u . s . postal service\",1\n\"Subject: any med for your girl to be happy !  your girl is unsatisfied with your potency ? don ' t wait until she finds another men !  click here to choose from a great variety of llcensed love t @ bs ! best pri $ es , fast shippinq and guaranteed effect ! here you buy it riqht from warehouse !  the store is verified by bbb and approved by vlsa ! \",1\n\"Subject: save 70 % on laser toner and inkjet cartridges !  due to heavy demand from our customers we are extending the  5 % extra off coupon on all your purchases with coupon code rmscy 6 p 2  upto july ' 30 2002  and the offer is exclusively from us .  you received this letter because you signed  up to receive offers from one of our affiliate sites .  to unsubscribe from our mailing list , online  unsubscribe click  here or by  email click  here \",1\n\"Subject: delivery status notification  - these recipients of your message have been processed by the mail server :  antonioacm @ zipmail . com . br ; failed ; 5 . 2 . 2 ( mailbox full )\",1\n\"Subject: low cost high rated insurance . why pay more ?  save  up to 70 % on your life insurance !  get  free  life insurance quotes from  the very best  companies at the  lowest rates .  you  can ' t predict the future , but you can always prepare for it .  compare  rates from top insurance companies around the country  in our life and times , it ' s important to plan for your  family ' s future , while being comfortable financially . choose  the right life insurance policy today .  insurance  companies compete for your insurance .  it ' s  fast , easy , and best of all . . . free .  click  here  for your free quote !  if you are in receipt of this email in error and / or wish to be  removed from our list , please click here  and type remove . if you reside in any state which prohibits e - mail solicitations  for insurance , please disregard this email . \",1\n\"Subject: cigarettes wholesale ! hywwzzlzd  $ 19 . 95 and up ! buy cartons of cigarettes wholesale , starting at $ 19 . 95 .  free shipping !  why pay state taxes ? 100 % legal . mailed from swiss bonded warehouse . for  personal use only , must be 18 years of age and older , verified by credit  card .  aol users click here  to be removed from future mailings , reply to this email with remove in the subject line .\",1\n\"Subject: learn the secrets of investing in real estate today !  your  friend and personal mentor , lou vukas  you are  receiving this email because you requested to receive info and updates via  email .  to unsubscribe , reply to this email with \"\" unsubscribe \"\" in the subject or  simply click on the following link : unsubscribe \",1\n\"Subject: well , do you need it ?  hello , welcome to pharmon unfavoured line s lighterage hop  - one of the leading oniine ph organplayer armaceutical shops  overhear v  squander g  a shortwave l  foundation ll  calomel la  r bandar ac insurrectional l  i squint s matchlock va  plainness um  andmanyother .  - sav cleancut e over 50 %  - worldwide sh oredressing lpplng  - total confiden nightmare tiaiity  - over 5 miiiion customers in pitched 130 countries  have a nice day libertine !\",1\n\"Subject: equipment finance and leasing  contact us today for a free consultation on the many options  available to your company :  your equipment loan and lease specialist  www . . com  reuben adams  ra @ . com  ( 800 ) 539 - 5327 ext 209  keystone capital 2100 main st . , ste . 104 irvine , ca 92614 this e - mail message is an advertisement and / or solicitation . \",1\n\"Subject: premium online medication here  kodachrome buddhism emilio  get all your prescriptions in one location !  a whole range of tablets ! take a look !  and the costs are very low !  stop receiving promotional material now  arrogate disposal caucasian consult \",1\n\"Subject: http : / / www . jumpsociety . com  hello ,  i have visited www . jumpsociety . com and noticed that your website is not listed on some search engines . i am sure that through our service the number of people who visit your website will definitely increase . seekercenter is a unique technology that instantly submits your website to over 500 , 000 search engines and directories - - a really low - cost and effective way to advertise your site . for more details please go to seekercenter . net .  give your website maximum exposure today !  looking forward to hearing from you .  best regards ,  vanessa lintner  sales marketing  www . seekercenter . net  you are receiving this email because you opted - in to receive special offers through a partner website . if you feel that you received this email in error or do not wish to receive additional special offers , please enter your email address here and click the button of remove me : \",1\n\"Subject: re : got ink ? 21846  what have you been up to ?  i don ' t know about you , but i am sick and tired of going  down to the store to find out that your printer cartridges  cost more than the printer itself ! i know how you feel  - i print over 500 pages a day , and it feels like there is  a vacuum sucking money out of my wallet ! now , this has got  to stop because i know it doesn ' t cost the printer companies  anywhere near what it costs me to do my office and school work !  well , it finally has . the superink solution .  you ' re probably thinking to yourself , \"\" gosh darn , not another  cheap knockoff printer cartridge ! \"\" like you , i was very  skeptical at first , but my best friend & business associate  said it helped her save over $ 100 a month on printer supplies .  so i tried it . i mean , there was nothing to lose because they  offer a 100 % satisfaction guarantee , up to a one - year warranty  on all of their products and free shipping on all orders !  let me tell you , it was one of the best decisions i ' ve ever made .  period . six months later , as i ' m writing this message to you ,  i ' ve gone from spending $ 1000 dollars a month on printer supplies  to now only $ 475 ! and i haven ' t had to sacrifice the quality or  service that i received from the local office supply store . in fact ,  the service is even better ! i ' ve had 1 defective cartridge since  i started dealing with superink and they sent me a new replacement  within 3 days , no questions asked . now , i can print all i want !  i was so happy with the results that i contacted their manufacturer  and got permission to be a reseller - at a big discount . i want  to help other people to avoid getting jipped by the printer companies  like i did . because a penny saved is a penny earned !  i give you my personal pledge the superink soltuion will absolutely  work for you . if it doesn ' t , you can return your order anytime  for a full refund .  if you are frustrated with dishing out money like it is water to the  printer companies , or tired of poor quality ink & toner cartridges ,  then i recommend - the superink solution .  you ' re probably asking yourself , \"\" ok , so how do we save all this money  without losing quality and service ? \"\"  modern technology has provided superink with unique , revolutionary  methods of wax molding that allow the ink & toner to ' settle ' , which  prevents any substantial damage that would occur during shipping and  handling . nothing \"\" magic \"\" about it - just quality & savings , big savings !  here is the bottom line . . .  i can help you save 30 % - 70 % per week / per month / per year or per lifetime  by purchasing any of our ink & toner supplies . just try it once , you ' ll  keep coming back - there ' s nothing to lose , and much money to be saved !  100 % satisfaction guaranteed . you will be able to print as much as you  want without wasting money or sacrificing quality - guaranteed .  that is my pledge to you .  to order from the superink solution on our secure server , just click  on the link below ( or enter it into your browser ) :  http : / / www . superink . net /  if you have difficulty accessing the website above , please  try contacting us toll - free at 1 - 800 - 758 - 8084 - thanks !  sincerely - bruce tipton  if you do not wish to receive any more emails from me , please  send an email to \"\" print 2 @ btamail . net . cn \"\" requesting to be removed .  thank you and sorry for any inconvenience . \",1\n\"Subject: we owe you lots of money  dear applicant , after further review upon receiving your application your current mortgage qualifies for a 4 . 75 rate . your new monthly payment will be as low as $ 340 / month for a $ 200 , 000 loan . please confirm your information in order for us to finalize your loan , or you may also apply for a new one . complete the final steps by visiting : http : / / www . wsrefi . net / ? id = j 22 we look foward to hearing from you . thank you , heather grant , account managerlpc and associates , llc . - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - not interested ? - > www . wsrefi . net / book . php\",1\n\"Subject: considered unsolicited bulk email from you  your message to :  - > distmatu @ agrocom . com . ar  was considered unsolicited bulk e - mail ( ube ) .  subject : just to her . . .  return - path :  delivery of the email was stopped !\",1\n\"Subject: i know your company !  it is really hard to recollect a company : the market is full of suggestions and the information is  overwhelming ; but a good catchy logo , stylish stationery and outstanding website  will make the task much easier .  we do not promise that having ordered a logo your company will automatically become a world leader : it is  quite clear that without good products , effective business organization and practicable aim it will be hot  at nowadays market ; but we do promise that your marketing efforts will become much more effective .  here is the list of clear benefits :  creativeness : hand - made , original logos , specially done to reflect your distinctive company image .  convenience : logo and stationery are provided in all formats ; easy - to - use content management system lets  you change your website content and even its structure .  promptness : you will see logo drafts within three business days .  affordability : your marketing break - through shouldn ' t make gaps in your budget .  100 % satisfaction guaranteed : we provide unlimited amount of changes with no extra fees for you to be sure  that you will love the result of this collaboration .  have a look at our portfolio\",1\n\"Subject: reading to children has proven to increase their vocabulary obum  * this message was transferred with a trial version of communigate ( tm ) pro *  missed all the news this weekend ?  were you too busy treating the special moms in your life like the goddesses they are ?  well good for you ! now follow the link to see what you may have missed this weekend !  click here to view this important announcement  has opened their doors for this awesome offer .  just check it out . we send it to you and you may review it for 30 days .  no payment upfront and no obligations  if you don ' t like it , just send it back and you wont be charged  this newsletter is not unsolicited !  the email address has been subscribed and confirmed to our mailing list which means that someone with access to this email account verified the subscription per email .  if you would like to stop receiving this newsletter :  click here to  u n s u b s c r i b e  to 48 5 - 13 cl 4 p  be transported to the world of middle earth \",1\n\"Subject: need an outstanding logo now ?  working on your company ' s image ? start with a  visual identity a key to the first good impression . we are here to  help you ! we ' ll take part in buildinq a positive visual imaqe  of your company by creatinq an outstandinq loqo , presentable stationery  items and professionai website . these marketing toois will significantly  contributeto success of your business . take a iook at our work samples , hot deal packages and  see what we have to offer . we work for you !  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: localized software , all languages available .  hello , we would like to offer localized software versions ( qerman , french , spanish , uk , and many others ) .  ail iisted software is availabie for immediate downioad !  no need to wait 2 - 3 week for cd deiivery !  just few examples :  - norton lnternet security pro 2005 - $ 29 . 95  - windows xp professional with sp 2 fuii version - $ 59 . 95  - corel draw graphics suite 12 - $ 49 . 95  - dreamweaver mx 2004 ( homesite 5 . 5 inciuding ) - $ 39 . 95  - macromedia studio mx 2004 - $ 119 . 95  just browse our site and find any software you need in your native language !  best regards ,  ava \",1\n\"Subject: very cool offrr  how to save on your medlcations gabion over 70 % .  pharms select hop - successfull and proven popcorn way to save your secret money .  spinal v  codicil ag  metayer al  l noctambulizm u  skilly l  r rochet a ginnery cl  i calculating sva gudgeon l  doomed m  andmanyother .  best prlces extrude .  worldwide shlpp confront lng .  easy or hypothesis der form .  total confiden conquest tiaiity .  250 , 000 s hyssop atisfied customers .  order t egoistic oday and save !\",1\n\"Subject: enhance your anatomy  i ' ve been using your product for 4 months now . i ' ve increased my  length from 2  to nearly 6 . your product has saved my sex life . - matt , fl  my girlfriend loves the results , but she doesn ' t know what i do . she  thinks  it ' s natural - thomas , ca  pleasure your partner every time with a bigger , longer , stronger unit  realistic gains quickly  to be a stud  press here  if that is so you probably owe your existence to those laws  oranjestad , aruba ,  po b 1200  here , then , i made my home ; and although it is a lonely place i amuse  myself making rustles and flutters , and so get along very nicelywhen the  braided man had completed this strange tale dorothy nearly laughed , because  it was all so absurd ; but the wizard tapped his forehead significantly , to  indicate that he thought the poor man was crazy the demon nodded  doubtless it was intended that when mankind became intelligent enough and  advanced enough to strike the master key , you and all your devices would not  only be necessary and acceptable to them , but the world would be prepared  for their general use \",1\n\"Subject: dowlnoadable 70 + xxx vldeos with pornstars - x 936  we have the hottest pornostars pics and videos inside .  thousands of new photo and clips , including pornostars movies . see hot pornostars videos now !  click here for http : / / black . info . babyhom . info / cool photos and video clips and dvd movies  - - - - - - - - - - - - - -  bantus anther candy agnomen  binge bushnell chigger conflict  aural collaborate cultivable compression\",1\n\"Subject: get the software you need , now !  soft at incredibly low prices  the deepest definition of youth is life as yet untouched by tragedy .  humankind cannot stand very much reality .\",1\n\"Subject: you ' ve received a greeting from a family member !  d >  you have just received a virtual  postcard from a family member !  .  you can pick up your postcard at  the following web address :  .  .  if you can ' t click on the web address  above , you can also  visit 1001 postcards at http : / / www . postcards . org / postcards /  and enter your pickup code , which is : a 91 - valets - cloud - mad  .  ( your postcard will be available  for 60 days . )  .  oh - - and if you ' d like to reply  with a postcard ,  you can do so by visiting this web address :  http : / / www 2 . postcards . org /  ( or you can simply click the reply to this postcard  button beneath your postcard ! )  .  we hope you enjoy your postcard ,  and if you do ,  please take a moment to send a few yourself !  .  regards ,  1001 postcards  http : / / www . postcards . org / postcards / \",1\n\"Subject: localized software , all languages available .  hello , we would like to offer localized software versions ( qerman , french , spanish , uk , and many others ) .  all listed software is avaiiable for immediate download !  no need to wait 2 - 3 week for cd deiivery !  just few exampies :  - norton lnternet security pro 2005 - $ 29 . 95  - windows xp professionai with sp 2 fuli version - $ 59 . 95  - corel draw graphics suite 12 - $ 49 . 95  - dreamweaver mx 2004 ( homesite 5 . 5 includinq ) - $ 39 . 95  - macromedia studio mx 2004 - $ 119 . 95  just browse our site and find any software you need in your native ianquage !  best regards ,  eilis \",1\n\"Subject: all graphics software available , cheap oem versions .  good morning ,  we we offer latest oem packages of all graphics and publishinq software from corel , macromedia , adobe and others .  $ 80 adobe photoshop 8 . 0 / cs  $ 140 macromedia studio mx 2004  $ 120 adobe acrobat 7 . 0 professional  $ 150 adobe premiere pro 1 . 5  $ 90 corel designer 10  $ 90 quickbooks 2004 professional edition  $ 75 adobe paqemaker 7 . 0  $ 70 xara x vl . 1  $ 75 adobe audition 1 . 5  $ 90 discreet 3 d studio max 7  $ 115 adobe golive cs  $ 135 adobe after effects 6 . 5 standard  $ 45 adobe premiere eiements  $ 125 corel painter lx  $ 80 adobe illustrator cs  $ 80 adobe indesiqn cs  $ 240 adobe creative suite  $ 140 adobe framemaker 7 . 1  $ 50 ulead cooi 3 d production studio 1 . 0 . 1  $ 90 aiias motion builder 6 professional  $ 30 quicken 2004 premier home & biz  $ 30 adobe photoshop eiements 3 . 0  $ 110 adobe premiere pro 7 . 0  learn more . . .  sincereiy ,  josefine \",1\n\"Subject: all graphics software available , cheap oem versions .  good morning ,  we we offer latest oem packages of all graphics and publishing software from corei , macromedia , adobe and others .  $ 80 adobe photoshop 8 . 0 / cs  $ 140 macromedia studio mx 2004  $ 120 adobe acrobat 7 . 0 professionai  $ 150 adobe premiere pro 1 . 5  $ 90 corei designer 10  $ 90 quickbooks 2004 professional edition  $ 75 adobe paqemaker 7 . 0  $ 70 xara x vl . 1  $ 75 adobe audition 1 . 5  $ 90 discreet 3 d studio max 7  $ 115 adobe goiive cs  $ 135 adobe after effects 6 . 5 standard  $ 45 adobe premiere eiements  $ 125 corei painter lx  $ 80 adobe iilustrator cs  $ 80 adobe indesign cs  $ 240 adobe creative suite  $ 140 adobe framemaker 7 . 1  $ 50 ulead cool 3 d production studio 1 . 0 . 1  $ 90 alias motion builder 6 professional  $ 30 quicken 2004 premier home & biz  $ 30 adobe photoshop elements 3 . 0  $ 110 adobe premiere pro 7 . 0  learn more . . .  sincerely ,  terri \",1\n\"Subject: guaranteed to re - grow your hair . . .  3 things you should know about  1 . 70 men and women were losing their hair .  2 . 70 men and women tried the new  hairmagic discovery .  3 . 70 men and women started growing hair  again in just 4 weeks .  here ' s your chance to join them for less  than $ 2 a day . . !  to order now click here and visit our website  yes , that ' s right . all 70 subjects grew hair again . that \u0012 s the essential fact about hairmagic it grew hair .  losing your hair ? don ' t feel too badly . because it \u0012 s happening to 80 - million americans .  and here ' s another pertinent fact .  over the past 3 decades , all kinds of enterprising companies have come out with literally hundreds of miracle products and procedures , promising to restore that lost hair .  but guess what ? there are still 80 - million americans who are still losing their hair .  sounds like those miracle cures weren ' t so miraculous after all . in fact , many of them are virtually useless .  sounds like we need a totally new approach , and now there is one :  hairmagic  gulf biomedical corporation discovered a simple but elusive fact :  health h hair .  consequently , hairmagic prescribes 2 different capsules a day  one capsule to restore the health of your body and scalp . one capsule to stimulate the new growth of hair . with our 70 men and women , the two worked hand in hand to grow hair .  it \u0012 s all explained on our website : www . hairmagicinfo . com  to order hairmagic now  hairmagic is available in a 30 - day supply package  containing capsules 1 2 . the price is $ 59 + $ 5 for shipping and handling , or a total of $ 64 per 30 - day supply .  to order now click here and visit our website  hairmagic  gulf biomedical corporation  1218 autrey , suite 2  houston , tx 77006  to remove this email address from further mailings click on the link below while connected to the internet .  remove me \",1\n\"Subject: entrust your visual identity to us  thinking of breathing new life into your business ?  start from revamping its front - endlogo and  visualidentity .  we offer creative custom desiqn of logos ,  stationery and web - sites . under our carefui hand thesepowerfui marketinq  toois wili brinq a breath of fresh air into your business and make you stand out  amonqthe competitors .  you are just a ciick  away from your future success . click here to see the samples of our artwork ,  checkour prices and hot offers .  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: this free 7 - day trial will prove that you can get ready for the beach .  if you wish to unsubscribe click  here  or write to ultima group , inc . 1380 garnet avenue , e 520 san diego , ca 92109  nbtnsbpa\",1\n\"Subject: you want to submit your website to search engines but do not know how to do it ?  submitting your website in search engines may increase  your online sales dramatically .  lf you invested time and money into your website , you  simply must submit your website  oniine otherwise it wiil be invisibie virtually , which means efforts spent in vain .  if you want  peopie to know about your website and boost your revenues , the only way to do  that is to  make your site visibie in places  where people search for information , i . e .  submit your  website in multiple search engines .  submit your website online  and watch visitors stream to your e - business .  best regards ,  marhtadowns _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: earn extra income * *  want to make a million bucks this year ?  me too but it ' s probably not going happen !  however if you ' re looking for the opportunity to  make a couple thousand a week ,  working from home with your pc , we need to talk .  if you ' re over 18 and a us resident ,  just click reply  send me your name , state ,  complete telephone number ,  and the best time to contact you .  i will personally speak with you within 48 hours .  have a great day !  removal instructions :  * * * * * * * * * * * * * * * * * * * * * * * * *  to be removed from this list please reply with \"\" remove \"\" in the subject line .  please allow a few days for removal to take effect . thanks ! !  - - - -  this sf . net email is sponsored by : thinkgeek  welcome to geek heaven .  http : / / thinkgeek . com / sf  spamassassin - sightings mailing list \",1\n\"Subject: a chance to get new logo now  working on your company ' s image ? start with a  visual identity a key to the first good impression . we are here to  help you ! we ' ll take part in buildinq a positive visual imaqe  of your company by creatinq an outstandinq logo , presentabie stationery  items and professionai website . these marketinq toois wili significantly  contributeto success of your business . take a look at our work samples , hot deal packaqes and  see what we have to offer . we work for you !  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: in the heart of your business !  corporate image can say a lot of things about your  company . contemporary rhythm of life is too dynamic . sometimes it takes only  several seconds for your company to be remembered or to be iost among  competitors . get your ioqo , business stationery or website done riqht  now ! fast turnaround : you wili see several logo variants in three  business days . satisfaction guaranteed : we provide unlimited amount of  changes ; you can be sure : it wili meet your needsand fit your  business . flexibie discounts : loqo improvement , additional formats , bulk  orders , special packages . creative design for competitive price : have a look at it right  now ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: multiply your customer base !  dear ricardol ,  cost effective direct email advertising  promote your business for as low as  $ 50 per  1 million  email addresses  maximize your marketing dollars !  complete and fax this information form to 309 - 407 - 7378 .  a consultant will contact you to discuss your marketing needs .  website : ( not required ) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  * comments : ( provide details , pricing , etc . on the products and services you wish to market ) \",1\n\"Subject: 1000 ' s of computer products on sale now !  computer shopping network  we deliver perfect match results every time !  100 , 000 ' s of computer products  the best deals from the top merchants  shop , compare pricing , and save !  now it ' s easy to shop , compareproducts  andpricing all in one place and it ' s free ! click here to go to  computer shopping network  www . . com  computer shopping network 6701 sierra ct . , ste . e dublin , ca 94568 this e - mail message is an advertisement and / or solicitation . \",1\n\"Subject: congratulations on your 6 new signups  we guarantee you free signups before you ever pay  a penny ! we will show you the money before you  ever take out your wallet . sign up for free and test  drive our system . no obligation whatsoever . no time  limit on the test drive . our system is so powerful that the  system enrolled over 400 people into my downline the first week .  to get signed up for free and take a test drive click the link :  the national attention drawn by this program  will drive this program with incredible momentum !  don ' t wait , if you wait , the next 400 people will be above you .  signup now for your free test drive and have the next 400  below you !  all the best ,  daniel  financially independent home business owner  1 - 800 - 242 - 0363 , mailbox 1993  to be excluded from future notices : \",1\n\"Subject: claim your free $ 1000 home depot gift card .  claim your home depot gift card - a $ 1000 value . were sure you can find a use for this gift card in your area . ( ) .  by exclusiverewards  ystyxapg\",1\n\"Subject: http : / / www . efi . ie /  http : / / www . efi . ie / index - 1998 - 07 - 16 . html  easyadpost . com - -  promote your products and services on thousands of classified sites .  simply the best way to sell on the internet !  no time to post an ad for your business ?  struggling with numerous classified sites ?  seeking effective means to promote your business ?  all of these are great reasons for you to visit easyadpost . com . currently easyadpost . com boasts a database of 120 , 000 + popular classified sites , to which we will submit your classified ad quickly and effectively . we will as well submit your business site url or logo url to hundreds of thousands of search engines and directories worldwide . quickly and effectively , easyadpost . com will attract potentially millions of people to your business on the internet , without any hidden cost for advertising !  visit links below for more details  to learn the generals about easyadpost , view http : / / www . easyadpost . com  to browse the sample list of classified sites , go to http : / / www . easyadpost . com / sample . php  questions or comments ? post your query form to us at http : / / www . easyadpost . com / aboutus . php  spend your market dollar wisely and good luck to your business !  peterson slade  customer @ easyadpost . com  easyadpost . com \",1\n\"Subject: give your pc a tune - up with system mechanic  if you want to make  sure that emails from realnetworks go to your inbox and not to your junk mail  folder , add news @ real - email . net to your address book .  your ultimate arsenal for improving pc performance !  system mechanic uses 15 powerful tools to keep your pc running faster , cleaner and error - free .  download now  take your pc to a whole new level of performance .  increase download speeds by up to 300 %  optimize internet and network connections  find and remove duplicate , obsolete and junk files  permanently delete files you don ' t want others to see  find and repair broken windows shortcuts  ensure your privacy on the internet - works with ie and netscape  safely install new software and programs  so much more !  download system mechanic now  if you do not wish to receive e - mails from us in the future , click here to unsubscribe . need customer support ? contact us at : http : / / service . real . com / realone have questions regarding our email privacy policy ? contact us at : email privacy policy group realnetworks , inc . p . o . box 91123 seattle , wa 98111 - 9223  privacy policy  2005 realnetworks , inc . patents pending . all rights reserved . realnetworks , realplayer and real . com are trademarks or registered trademarks of realnetworks , inc . all other companies or products listed herein are trademarks or registered trademarks of their respective owners . \",1\n\"Subject: ( no subject )  want to watch hardcore porn movies ?  our site is voted the # 1 broadband movie site online !  click this link to watch our steaming chix in action :  to unsubscribe from our list enter you email here :  http : / / www . froggyhost . com / clubs / remove /  [ jk 9 ^ \"\" : } h & * tgobk 5 nkiys 5 ]  http : / / xent . com / mailman / listinfo / fork\",1\n\"Subject: all star break special : get a flag to support your favorite team -  free shipping  armstrong flag company  free shipping free car flag  ( min . order $ 35 . 00 )  5 ' white pole w / mounting bracket  $ 24 . 00 ea  order today  armstrong flag company 20 park st . winchester , ma 01890 this e - mail message is an advertisement and / or solicitation . \",1\n\"Subject: congratulations on your 6 new signups  we guarantee you signups before you ever pay  a penny ! we will show you the green before you  ever take out your wallet . sign up for free and  test drive our system . no obligation whatsoever .  no time limit on the test drive . our system is so  powerful that the system enrolled over 400 people  into my downline the first week .  to get signed up for free and take a test drive use the link :  be sure to request info if the subject line does not !  the national attention drawn by this program  will drive this program with incredible momentum !  don ' t wait , if you wait , the next 400 people will  be above you .  take your free test drive and have the next 400  below you !  be sure to request info if the subject line does not !  all the best ,  daniel  financially independent home business owner  to be excluded from future notices : \",1\n\"Subject: returned mail : response error  the original message was received at tue , 19 jul 2005 11 : 57 : 45 + 0100  - - - - - the following addresses had permanent fatal errors - - - - -  - - - - - transcript of session follows - - - - -  . . . while talking to mailin - 02 . mx . aol . com  > > > data  < < < 554 transaction failed\",1\n\"Subject: tired of your high mortgage rate - refinance today . . . . .  dear homeowner ,  interest rates are at their lowest point in 40 years ! we help you find the  best rate for your situation by matching your needs with hundreds of  lenders !  home improvement , refinance , second mortgage ,  home equity loans , and much , much more !  you ' re eligible even with less than perfect credit !  this service is 100 % free to home owners and new home buyers  without any obligation .  where others say no , we say yes ! ! !  http : / / www 282 . fastwebsnet . com / mtg  take just 2 minutes to complete the following form .  there is no obligation , all information is kept strictly  confidential , and you must be at least 18 years of age .  service is available within the united states only .  this service is fast and free .  http : / / www 282 . fastwebsnet . com / mtg  to opt out : \",1\n\"Subject: re : [ 3 ]  this will be our closing effort  we have aimed to speak to you on multiple possibilities and we await your response now !  your exisiting loan situation certifies you for up to a 3 . 60 % lower rate .  however , since our previous attempts to speak to  you have failed , this will be our last notice to close for you the lower rate .  please end this final step upon receiving  this notice immediately , and complete your request for information now .  apply here .  if your decision is not to make use of this final offer going here will help you to do so .\",1\n\"Subject: the best just got better  male , age 55 , best , $ 500 , 000 face amount , annual premiums  ge lifetime protectorsm  lifetime  premiuml  $ 6 , 252  csv = $ 1  @ age 1002  $ 5 , 356  csv = face amt  @ age 1002  $ 5 , 841  product j  $ 6 , 365  $ 7 , 699  $ 7 , 970  product i  $ 6 , 531  $ 6 , 809  $ 7 , 327  product l  $ 6 , 348  $ 6 , 250  $ 6 , 630  product s  $ 6 , 538  $ 5 , 709  $ 6 , 550  product u  $ 8 , 950  $ 5 , 827  $ 6 , 185  product t  $ 7 , 581  $ 6 , 729  $ 7 , 372  product m  $ 7 , 637  $ 6 , 711  $ 6 , 916  product g  $ 7 , 044  $ 5 , 529  $ 6 , 207  source : industry market research conducted and compiled by ge financial , august 2002 .  ge lifetime protectorsm  is subject to the terms , issue limitations and conditions of policy  form nos . ul geo 2 et al for ge capital assurance and ulfclo 2 et al  for first colony life , which include exclusion periods for death by  suicide . ge lifetime protectorsm is not available in all  states . lpremium that guarantees coverage for the life of the insured according to the companies ' provisions .  companies refer to premium by different names and the conditions  for the guarantee will vary from company to company . for ge lifetime  protectorsm , this refers to the designated premium requirement :  subject to the policy provisions , policy remains in force as long  as the sum of the premiums paid , less the reduction in policy value  for all partial withdrawals , equals or exceeds the cumulative total  of the designated monthly premiums from the policy date to the end  of the current policy month .  2 premiums calculated  assuming each company ' s current crediting rate and charges . each  column represents the premium required annually to age 100 to achieve  target cash surrender value stated in the column heading .  underwritten by  general electric capital assurance company  first colony life insurance company  lynchburg , va  members of the ge financial family of companies  we don ' t want anyone to receive our mailings who does not  wish to receive them . this is a professional communication  sent to insurance professionals . to be removed from this mailing  list , do not reply to this message . instead , go here :  http : / / www . insuranceiq . com / optout  legal notice \",1\n\"Subject: new love tabs shop .  visit our llcensed online dragstore for the best inexpensive love drags ! viagra , cialis , softtabs and many other love enhancers ail in one !  operative support , fast shipping , secure payment processing and compiete confidentiaiity !  click here to find your verifled by bbb and approved by visa iove pil 1 ! \",1\n\"Subject: hey ! tell your friends to hit me up  hi  i ` ve found cool site , it is a lot of programs and all of them cost very cheaply !  it ' s a url http : / / www . softforfast . info /  and you can download them right after purhases ! you will no need to wait 2 - 3 week for cd delivery .  - - - - - - - - - - - - -  bellum babbitt allegoric atchison\",1\n\"Subject: send the love home with an online photo album  software for system builders , resellers , and hardware purchasers only .  pride sullies the noblest character .  a person should want to live , if only out of curiosity .\",1\n\"Subject: make some extra money fast read how here it is real simple i am totaly serious  also on msn : start chattingilisten to musicihouse homeitry online datingidaily horoscopes  to stop getting this e - mail , or change how often it arrives , go to your e - mail settings .  need help ? if you ' ve forgotten your password , please go to passport member services .  for other questions or feedback , go to our contact us page .  if you do not want to receive future e - mail from this msn group , or if you received this message by mistake , please click the \"\" remove \"\" link below . on the pre - addressed e - mail message that opens , simply click \"\" send \"\" . your e - mail address will be deleted from this group ' s mailing list .  remove my e - mail address from one income living . \",1\n\"Subject: [ ilug ] assistance  from : col . michael bundu .  democratic republic of congo .  tel no : your country intl . access code + 8821652098236  email : mikebundu @ rediffmail . com  dear sir / madam  seeking your immediate assistance .  please permit me to make your acquaintance in so informal a manner . this  is necessitated by my urgent need to reach a  dependable and trust worthy foreign partner . this request may seem strange  and unsolicited but i crave your indulgence  and pray that you view it seriously . my name is col . michael bundu of the  democratic republic of congo and one of  the close aides to the former president of the democratic republic of  congo laurent kabila of blessed memory , may  his soul rest in peace .  due to the military campaign of laurent kabila to force out the rebels in  my country , i and some of my colleagues were  instructed by late president kabila to go abroad to purchase arms and  ammunition worth of twenty million , five hundred  thousand united states dollars only ( us $ 20 , 500 , 000 . 00 ) to fight the rebel  group . we were then given this money privately  by the then president , laurent kabila , without the knowledge of other  cabinet members . but when president kabila  was killed in a bloody shoot - out by one of his bodyguards a day before we  were schedule to travel out of congo , we  immediately decided to put the funds into a private security company here  in congo for safe keeping . the security of the  said amount is presently being threatened here following the arrest and  seizure of properties of col . rasheidi karesava  ( one of the aides to laurent kabila ) a tribesman , and some other military  personnel from our same tribe , by the new  president of the democratic republic of congo , the son of late president  laurent kabila , joseph kabila .  in view of this , we need a reliable and trustworthy foreign partner who  can assist us to move this money out of my country  as the beneficiary .  we have sufficient ' ' contacts ' ' here to move the fund under diplomatic  cover to a security company in europe in your  name . this is to ensure that the diplomatic baggage is marked  ' ' confidential ' ' and it  will not pass through normal custom / airport screening and clearance .  our inability to move this money out of congo all this while stems from  our lack of trust of our supposed good friends  ( western countries ) who suddenly became hostile to those of us who worked  with the late president kabila , immediately  after his son took office . though we have neither seen nor met each other ,  the information we gathered from an associate  who has worked in your country has encouraged and convinced us that with  your sincere assistance , this transaction will  be properly handled with modesty and honesty to a huge success within two  weeks . the said money is a state fund and  therefore requires a total confidentiality .  we would please need you to stand on our behalf as the beneficiary of this  fund in europe . this is because we are under  restricted movement and watch and hence we want to be very careful in  order not to lose this fund which we have worked  so hard for . thus , if you are willing to assist us to move this fund out  of congo , you can contact me through my email  addresses , tel / fax nos . above with your telephone , fax number and personal  information to enable us discuss the  modalities and what will be your share ( percentage ) for assisting us .  please note that there are no risks involved in this deal as everyone ' s  security is guaranteed if we follow the required  guidelines . i will hence furnish you with further details of this deal as  soon as i am assured of your sincere interest to assist  us .  i must use this opportunity and medium to implore you to exercise the  utmost indulgence to keep this matter extraordinarily  confidential , whatever your decision , while i await your prompt response .  thank you and god bless .  best regards  col . michael bundu ( rtd ) . m _ bundu @ rediffmail . com  n \\ b . when you are calling my line , you dial your country intl . access  code , then you dial directly , do not include my country  code i . e . ( 243 ) . just dial your country intl . access code + 88216  52098236 . you can also contact me through the above  email addresses .  - -  irish linux users ' group : ilug @ linux . ie  http : / / www . linux . ie / mailman / listinfo / ilug for ( un ) subscription information .  list maintainer : listmaster @ linux . ie\",1\n\"Subject: 75 % reduction in road accidents  august , 2002  dear sir / madam ,  in case you have received this mail earlier , kindly ignore this mail . it may have  been re - sent to you by mistake . ours is not a mailing list and we have no intention of sending any regular mails to anybody .  we have devised a set of systems , which can reduce the damage caused to vehicles and deaths and injury caused to passengers and pedestrians in vehicular accidents by more than  seventy - five percent  we have already filed and are in process of filing further , multiple and appropriate disclosure documents , provisional patent applications at the united states patent & trademarks office ( uspto ) , and also applications under the patent co - operation treaty at world intellectual property organization ( wipo ) at geneva .  there is absolutely no doubt that our idea is new and innovative . moreover , we are very confident and very sure that this will help reducing / minimizing human suffering to a very large extent . there is no doubt that the product devised by us will change the face of the earth forever . brief details relating to our product are detailed in the annexures under the following headings :  statistics advantages  options  economics  we are looking for the followings :  01 . business consultancy and advice regarding the most viable , practical and profitable course of action under the circumstances and also consultancy on patents one person moderately injured every three seconds ; one person mildly injured every three seconds . )  ( c ) current yearly automobile sales worldwide - more than 1000 billion us $ .  ( d ) number of automobiles worldwide - more than 1000 billion pieces  ( e ) daily loss caused due to vehicular accidents worldwide  more than 2 billion us $ per day .  ( 2 % of the worldwide gross national product of more than 36500 billion us $ = more than 730 us $ per year = more than 2 billion us $ per day )  theadvantages of the technology developed by us :  a . the introduction of such technology will dramatically reduce the expenses of auto - insurance . this reduction of insurance cost will be at par with or even more that the expenses incurred towards the introduction of such technology in modern day vehicles . accordingly , the life insurance premier will also undergo drastic reduction . additionally , because of saving of lives , the outgo of the insurance companies will reduce substantially .  b . as per the who studies and projections , road accidents occupy the number nine positions by way of causes of death in the world today . it is projected by who that by the year 2020 they will occupy the number three positions , next only to heart disease and depression .  by introduction of this technology , we are sure that this will not happen . on the contrary there will be massive reduction in the number of deaths due to road accidents and road accidents may not figure on the list of major causes of death , in the year 2020 at all .  c . this technology will therefore , make all vehicles cheaper and safer . not only will the cost be reduced , safety which is priceless in itself , will also be greatly enhanced .  as and when the regular patent application is filed and patent is granted , the life of the patent will be 20 years . even at the current levels , with road accidents placed at number nine on the who list as a major cause of death , there is a daily loss of two billion us $ . even at the present level , over a period of twenty years , without any interest and without any compounding , this loss works out to be :  2 billion us $ x 365 days x 20 years - 14 , 600 billion us $ .  d . our technology will ensure that at least seventy - five percent of the above losses are prevented . such figure works out to be more that 10 , 000 billion us $ . it is important to note that this is the projection at the current level . as per the future projections , the incidents of road accidents are expected to increase . hence , the figure is likely to be increase very substantially . in addition the time factor and the interest factor will inflate this figure further .  e . at the current levels , more than 1 . 2 million persons are dying every year due to road accidents . even at the current rates , more than 24 million lives will be lost in road accidents over the next twenty years ( i . e . life of the patent , when granted ) . besides , at the current levels .  3 . 2 million people are injured every year . in the next twenty years , the number of people injured due to road accident , will therefore be more than half a billion .  f . if we add to that the personal , physical and psychological traumas to those directly involved in and also to those who are associated with the people involved in the road accidents . the trauma and the misery and henceforth the value of the savings , are all unmeasurable in quantities , presently known to human kind .  g . considering the figures and dynamics as explained hereinabove , it may not be improper or out of place to compare this technology with the introduction of electricity , computer or aircrafts in terms of its value to mankind .  h . the benefits of this technology will be so obvious and essential that , in the very near future , the use of this technology will become unavoidable . it should and will become mandatory by law , to install such technology and the installation of such technology should and will be a pre - requisite for granting or renewal of the registration and license of all vehicles in future .  i . as described hereinabove ; this technology and its utility are incomparable , outthought of , and unheard of till date . it will open a new floodgate in human travel and safety measures . in future , it can and will be applied to other mode of transport , like aircrafts and trains also .  . among other things , we have the following options available to us : - options  available to us : -  a - outright sale  ( a ) immediate outright sale of the idea and the concept along with our filed applications for one time lump sum consideration .  ( b ) further development of the concept and further filing of patent and all patent related applications , before taking steps as outlined in \"\" a \"\" .  the process ( b ) will obviously increase the realization in terms of price .  b - licencing options  i ) new vehicles - granting of licenses to manufacturers of automobiles , individually or collectively , all over the world for incorporation in the automobiles to be manufactured in future on fixed time or per piece basis .  ii ) conversion of existing vehicles - to independent agents for conversion of the existing more than 1000 billion vehicles all over the world .  c - combined options  a collaborative arrangement with some private and / or government agency wherein we receive a certain down payment and then jointly distribute the licensing rights on a pre - decided sharing ( partnership ) arrangement .  the economics of the project will be as follows : -  1 ) in case any / all processes and systems described by us are incorporated in the design of new vehicles and the new vehicles are manufactured in accordance with the modified designs , the cost escalation may not be more than 5 % to 8 % , and the safety and the protection will be ten times ( more than ) the price escalation . hence , drop in insurance premier will compensate for the cost escalation .  2 ) in case , the existing vehicles are modified , the cost involved will be approximately 10 % to 15 % of the value of the vehicle .  but partial modifications at a lower cost , which will give partial protection , may also be carried out . as a thumb rule , the cost of modification in percentage terms will be about one fifth of the percentage of safety and protection provided .  3 ) in case the value of the vehicles is low or the life of the vehicle is about to expire , the partial modifications may be practically and economically viable , as incorporation onto a new vehicle is relatively less expensive and more protective .  4 ) there are more than 1000 billion motor vehicles in the world at present . besides there are an unspecified number of non - motorized ehicles .  5 ) almost all of them can be converted in phased manner to a variable degree . the cost of conversion will be directly proportional to their current market value and the safety shield to be generated there from .  6 ) among the motorised vehicles , the conversion cost may work out of few dollars for every percent of safety shield created the exact calculation can be worked out , but over all , some of the methods may provide more safety at lower cost compared to the other which may differ in efficiency .  7 ) even if we consider a very vague and approximate cost of conversion of 300 us $ per vehicle , the conversion industry works out to be worth 3 , 00 , 000 billion us $ .  8 ) realising the potential of the product in terms of human safety , it will be reasonable to presume that majority of such conversion will be completed over a period of three years from the starting date .  9 ) as pointed hereinabove , the size of the conversion industry may be estimated to , in the range of 1 , 00 , 000 billion us $ per year over the next three years .  10 ) alternatively , considering the diversity of available motorised vehicles all over the world , conversion licensing can also be commercially viable proposition . for such conversion , licenses can be granted on - line , on receipt of on - line payments . in that case , different rates for granting conversion to vehicles having specific registration numbers can be granted in accordance with and in proportion to the size , carrying capacity and the engine power of the vehicle .  11 ) in case , licensing is done , the creation and installation of the concerned systems will be done by the end - user , as per his circumstances and needs . however , piracy is likely to be a major problem in such licensing .  12 ) it is likely that as and when the systems are introduced in the motorised vehicles , unusual and unprecedented demand of new vehicles is created . this will result in massive rejection of the vehicles currently playing all over the world and stimulate an entirely new market as far as motorised vehicle is concerned . the size of such market is difficult to either comprehend and / or estimate .  p . s .  1 ) some of the figures have been rounded off but generally the figures are correct .  2 ) we have tried to keep this communication brief and to the point . more details , including website references are available with us and can be provided , if required . \",1\n\"Subject: it ' s mariah from dating service  i ' m mariah , the girl next door .  im searching for someone to be with me .  i ' ve been searching for hot guy to hangout with .  sometimes i get real lonely . i read online and decided to  ask around if someone wants to chat online .  if you are interested in my webcam to see how i look  feel free to visit me .  http : / / lastmansitting . com / mc 26 /\",1\n\"Subject: judicial judgments - child support  money judgements child support detective  be on top .  determine your work schedule .  from anywhere .  current associates earning 5 , 000 us to 12 , 000 us per / mo .  large profit handling money judgments .  impressive training and support .  http : / / n . 1 c 24 . greatitemsweblines . com / b /  detailed information or to stop receiving or to see our address .  if our side wins i may get a chance to recover some of my property . it ' s a  slim chance , of course , but it ' s the only hope i have left  that very evening an opportunity occurred for rob to win glory in the eyes  of his new friends\",1\n\"Subject: we build the internet . webxperts . com ( design / programming / consultation )  if this flyer does not appear correctly and / or images do not appear , please click the following link : http : / / www . webxperts . com .  your email address was obtained from a purchased list . you are receiving this from eluxmedia llc , and are a part of their mailing list . if you wish to unsubscribe from this list , please click here and enter your name into the remove box . if you have previously unsubscribed and are still receiving this message , you may email our abuse control center . \",1\n\"Subject: credit is no factor  hows it been going , visioson @ hpp . za . net ?  we tried contacting you about your low intrest rate .  you have qualified for the lowest rate in years .  your current status : $ 345 , 000 for $ 227 a month .  your credit has already been reviewed / approved .  please view your details at our site below :  anyhgh . com  bye ,  anastasia labovitz  edwards : . . . more negative attacks - - aren ' t you sick of it ? .  i made my original programs available to the teachers around me . they were getting the same kind of success . i finally decided i had to make my noun program available to teachers and parents around the nation . we have been working on it for over 2 years . many of you have waited patiently . thank you for your patience . .\",1\n\"Subject: your help  dear sir ,  i am mrs mariam abacha , wife of the late nigerian  head of state , general sani abacha who died on  the 8 th  of june 1998 while still on active duty . i am  contacting you in view of the fact that we will  be of  great assistance to each other likewise  developing a  cordial relationship .  i currently have within my reach the sum of  thirty  six million united states dollars  ( us $ 36 , 000 , 000 ) in  cash , which i intend to use for investment  purposes  specifically in your country . this money came  as a  result of a payback contract deal between my  late  husband and a russian firm on our country ' s  multi - billion dollars ajaokuta steel plant . the  russian partners returned my husbands share of  us $ 36 , 000 , 000 after his death and lodge it with  my  late husband ' s security company in nigeria of  which i  am a director . right now the new civilian  government  have intensified their probe on my husband ' s  financial  resources and they have revoked our licenses  that  allows us to own a financial and oil company .  in view  of this , i acted very fast to withdraw the  us $ 36 , 000 , 000 from the company ' s vault and  deposited  it in a privately erected security safe abroad .  no record ever existed concerning the money  neither is  the money traceable by the government because  there is  no documentation showing that we received the  money  from the russians .  due to the current situation in the country  concerning  government attitude towards my family , it has  become  quite impossible for me to make use of this  money  within , thus i seek assistance to transfer this  money  into your safe bank account . on your consent , i  shall expect  you to contact me urgently to enable us discuss  details of this transaction .  bearing in mind that your assistance is needed  to  transfer the funds , i propose a commission of  20 % of  the total sum to you for the expected services  and  assistance . your urgent response is highly  needed so  as to stop further contacts . all correspondent  should be forwarded to this email : zenab . m @ ompadec . zzn . con  or you can call my son mobile : hamza 234 - 8023137978 i use this  opportunity to implore you to exercise the most  utmost  indulgence to keep this matter extra ordinarily  confidential what ever your decision while i  await your  prompt response .  best personal regards ,  mrs mariam abacha .  - - - -  this sf . net email is sponsored by : jabber - the world ' s fastest growing  real - time communications platform ! don ' t just im . build it in !  http : / / www . jabber . com / osdn / xim  spamassassin - sightings mailing list \",1\n\"Subject: garden ornaments | ppu  our delightful garden ornaments combine the finest craftsmanship in woodworking with the lastest technology in paints and hardware :  we are the world ' s biggest whirligig maker .  sincerely ,  studio t . inc . , usa  the home of heller whirligigs  remove :  e - mail based commercial communication avoids unnecessary spending on catalogs and paper , and helps to preserve valuable natural resources such as forests and oil . we do not wish to share our valuable information about whirligigs with those who are not interested . should you not wish to receive information from us in the future , please click on the following removal link :  even though our database cleansing might be subject to delay or error , we will remove your e - mail address permanently from our database . however , please realize that removal from our database does not guarantee that your e - mail address will be deleted from the many other e - mail marketers who construct databases themselves by harvesting from web sites , or by buying any of the thousands of lists of e - mail addresses that are openly for sale on the internet .  . . . \",1\n\"Subject: mail delivery failed : returning message to sender  this message was created automatically by mail delivery software .  a message that you sent could not be delivered to one or more of its  recipients . this is a permanent error . the following address ( es ) failed :  ian @ altair 398 . demon . co . uk  ( generated from ian @ altair . org . uk )  smtp error from remote mail server after end of data :  host punt - 1 . mail . demon . net [ 194 . 217 . 242 . 75 ] : 550 blocked by recipient ' s spam filter options . if message is legitimate , please forward a copy to rbl @ demon . net for investigation .  - - - - - - this is a copy of the message , including all the headers . - - - - - -  return - path :  received : from [ 203 . 101 . 127 . 76 ] ( helo = mailwisconsin . com )  by uk 2 mxarray 4 . uk 2 . net with smtp ( exim 4 . 52 )  id ldupou - 0005 qz - te  for ian @ altair . org . uk ; tue , 19 jul 2005 11 : 59 : 30 + 0100  received : from 205 . 214 . 42 . 66  ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ;  by mailwisconsin . com with http id j 87 gzo 09360592 ;  tue , 19 jul 2005 10 : 57 : 46 + 0000  message - id :  date : tue , 19 jul 2005 10 : 57 : 46 + 0000  from : \"\" barry castillo \"\"  to : ian @ altair . org . uk  user - agent : squirrelmail / 1 . 4 . 3 a  x - mailer : squirrelmail / 1 . 4 . 3 a  mime - version : 1 . 0  x - priority : 3 ( normal )  importance : normal  x - sa - exim - connect - ip : 203 . 101 . 127 . 76  x - sa - exim - mail - from : projecthoneypot @ projecthoneypot . org  subject : just to her . . .  content - type : text / html ; charset = iso - 8859 - 1  content - transfer - encoding : 8 bit  x - spam - checker - version : spamassassin 3 . 0 . 4 ( 2005 - 06 - 05 ) on  uk 2 mxserver 4 - 1 . uk 2 . net  x - spam - level : * * *  x - spam - status : no , score = 3 . 3 required = 99 . 0 tests = drugs _ erectile , drug _ dosage ,  html _ 50 _ 60 , html _ message , info _ tld , mime _ html _ only autolearn = no  version = 3 . 0 . 4  x - sa - exim - version : 4 . 0 ( built sat , 24 jul 2004 09 : 53 : 34 + 0200 )  x - sa - exim - scanned : yes ( on uk 2 mxarray 4 . uk 2 . net )  soft viagra at $ 1 . 62 per dose  ready to boost your sex life ? positive ?  time to do it right now !  order soft viagra at incredibly low prices  starting at $ 1 . 99 per dose ! unbelivabie !\",1\n\"Subject: adobe + macromedia + os etc all in cd under $ 99  adobe + macromedia + os etc all in cd under $ 99  better the foot slip than the tongue .  luck is what you have left over after you give 100 % .\",1\n\"Subject: likee a rock  hello , welcome to phar philosophize monline sho orrery p  - one of the leading oni dissociable ine pharmaceutical shops  synchronism v  onomatopoeia g  commissionaire al  dilapidated ll  dutiable la  cutglass rac unpolitical l  arduous is progenitor va  loftiness um  andmanyother .  - save tzigane over 50 %  - worldwide shlppl sconce ng  - total confidentiai fleshings ity  - over 5 mii prolocutor iion customers in 130 countries  have a gunnery nice day !\",1\n\"Subject: re : your bank account  dear  friend , a recent survey by nielsen / netratings says that \"\" the internet  population is rapidly approaching a ' half a billion ' people ! \"\" so what  does all this mean to you ? easy money ! ! let ' s assume that every person  has only one e - mail address . . . that ' s 500 million potential customers and  growing ! in addition , e ' mail is without question the most powerful  method of on the face of the earth . well , i  think you get the picture . the numbers and potential are just  staggering , but it gets even better . . . suppose i told you that you could  start your own e - mail businesstoday and enjoy these  benefits : * * * all customers pay you in  cash ! ! ! * * * you will sell a product which costs  nothing to produce ! * * * your only overhead is your  time ! * * * you have 100 s of millions of potential  customers ! ! ! * * * you get detailed , easy to follow  startup  instructions ! and  this is just the tip of the iceberg . . . as you read on you ' ll discover how  a ' seen on national tv ' program is paying out a half million dollars , every  4 to 5 monthsfrom your home , for an investment of only $ 25 us dollars  expense , one time . all thanks to the computer age . . . and the  internet ! before you say \"\" bull \"\" , please read the following : this is  the letter you have been hearing about on the newslately . due to the  popularity of this letter on the internet , a national weekly news program  recently devoted an entireshow to the investigation of this program  described below , to see if it really can make people money . the show  also investigated whether or not the program waslegal . their findings  proved once and for all that there are \"\" absolutely no laws prohibiting the  participation in theprogram and if people can follow the simple  instructions , they are bound to make some mega bucks with only $ 25 out  ofpocket cost \"\" . due to the recent increase  of popularity and respect this program has  attained , it is currently working better than  ever ! * * * * * this is what one had to say : \"\" thanks to this  profitable opportunity . i was approached manytimes before but each  time i passed on it . i am so glad ifinally joined just to see what one  could expect in returnfor the minimal effort and money required . to my  asonishment , i received total $ 610 , 470 . 00 in 21 weeks , with money  stillcoming  in \"\" . pam  hedland , fort lee , new  is another testimonial : \"\" this program has been around for a long time but  i neverbelieved in it . but one day when i received this again in  the mail i decided to gamble my $ 25 on it . i followed thesimple  instructions and walaa . . . . 3 weeks later the moneystarted to come  in . first month i only made $ 240 . 00 but thenext 2 months after that i  made a total of $ 290 , 000 . 00 . so far , in the past 8 months by re - entering the  program , i have made over $ 710 , 000 . 00 and i am playing it again . the  key to success in this program is to follow the simplesteps and not change  anything . \"\" more testimonials later but first : * * print this now  for your future referenceif you would like to make at least $ 500 , 000  every 4 to 5 months easily and comfortably , please read the following . .  . then read it again and again ! ! ! * * follow these simple  instructions , to make your financial dreams  come  true * * instructions : - - - - - - - - - - - - - - - - - - - * * * * * order all 5 reports  shown on the list below . * * * * * for each report , send $ 5 us cash , the name  & number of the report you are ordering andyour e - mail address to  the person whose name appearson that list next to the  report . make sure your return address is on  your envelope top left corner in case of any  mail problems .  * * * * * when you place your order , make  sure  you order each of the 5 reports * * * * * you will need all 5 reports so that  you can save them on yourcomputer and resell them . your total cost $ 5  x 5 = $ 25 . 00 * * * * * * * * * * within a few days you will receive , via e - mail ,  eachof the 5 reports from these 5 different individuals . savethem  on your computer so they will be accessible for you tosend to the 1 , 000 ' s of  people who will order them from you . also make a floppy of these reports and  keep it at your deskin case something happens to your  computer . * * * * * * * * * * important - do not alter the names of the  peoplewho are listed next to each report , or their sequence on the list ,  in any way other than what is intructed below in stepsl through 6 or you  will lose out on the majority of your profits . once you understand the way  this works , you will also see howit does not work if you change  it . remember , this method has been tested , and if you alter , it will  not work ! ! ! people have tried to put their friends / relatives names  onall five thinking they could get all the money . but it doesnot  work this way . believe us , we have tried to be greedyand then nothing  happened . so do not try to change anything other than what is  instructed . because if you do , it will not work for you .  remember , honesty reaps the reward ! ! ! 1 . after you have ordered all 5  reports , take this advertisement and remove the name and address of the  person inreport # 5 . this person has made it through the cycle and is  no doubt counting their fortune . 2 . move the name & address in  report # 4 down to report # 5 . 3 . move the name & address in report # 3 down  to report # 4 . 4 . move the name & address in report # 2 down to report  # 3 . 5 . move the name & address in report # 1 down to report # 2 . 6 .  insert your name & address in the report # 1 position . please make  sure you copy every name &  this entire letter , with the modified list of names , and save it on your  computer . do not make any otherchanges . save this on a disk as  well just in case you looseany data . to assist you with marketing  your business on the internet , the 5 reports you purchase will provide you  with information that includes : how to send bulk  e - mailslegally , where to find thousand of free classified ads and much ,  much more . there are 2 primary methods to get this venture  going : method # 1 : sending bulk e - mail  legally  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - let ' s say that you  decide to start small , just to see howit goes , and we ' ll assume you and  those involved send outonly 5 , 000 emails each . let ' s also assume that  the mailingreceives only a 0 . 2 % response ( the response could be  muchbetter but lets just say it is only 0 . 2 % . also , many  peoplewill send out hundreds of thousands of e - mails instead ofonly  5 , 000 each ) . continuing with this example , you send out only 5 , 000  e - mails . with a 0 . 2 % response , that is only 10 orders for report # 1 . those  10 people resonded by sending out 5 , 000 e - mails eachfor a total of  50 , 000 . out of those 50 , 000 e - mails only 0 . 2 % responded with  orders . that ' s 100 people responded andordered report # 2 . those  100 people mail out 5 , 000 e - mailseach for a total of 500 , 000 e - mails .  the 0 . 2 % response to that is 1000 orders for report # 3 . thoe 1000  people send out 5 , 000 e - mails each for a total of 5 million e - mails sent  out . the 0 . 2 % response to that isl 0 , 000 orders for report # 4 .  those 10 , 000 people send out 5 , 000 e - mails each for a total of 50 , 000 , 000 ( 50  million ) e - mails . the 0 . 2 % response to that is 100 , 000 orders  forreport # 5 . that ' s 100 , 000 orders times $ 5 each = 500 , 000 ( a  half a million ) . your total income in this  example is : 1 . . . . . . $ 50 +  2 . . . . . . $ 500 + 3 . . . . . . $ 5 , 000  + 4 . . . . . . $ 50 , 000 +  5 . . . . . . $ 500 , 000 . . . . . . . . . . . . . . . . . . grand total =  $ 555 , 550 . 00 numbers do not lie . get a  pencil & paper and figure out the worst possible  responses and no matter how you calculate it , you  will still make a lot of  money ! - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  remember friend , this is assuming only 10 people  ordering out of 5 , 000 people you mailed . dare to think for a moment what  would happen if everyone , or 1 / 2 , or even 1 / 5 of those people mailed 100 , 000  e - mailseach or more ? there are over 250 million people on the  internet worldwide and counting . believe me , many peoplewill do  just that , and more ! method # 2 : placing  free ads on the internet  on the net is very , very inexpensive and thereare hundreds of free places to  advertise . placing a lot offree ads on the internet will easily get a  larger response . we strongly suggest you start with method # 1 and add  method # 2 as you go along . for every $ 5 you receive , all you must do  is e - mail them the report they ordered . that ' s it ! always  provide same dayservice on all orders . this will guarantee that the  e - mailsthey send out , with your name and address on it , will beprompt  because they can not advertise until they receive  thereport . order each report by it number  & name only . note : always send $ 5 cash ( us currency ) for each  report . checks are not accepted . make sure the cash is wrapped inat  lease 2 sheets of paper before you put it in the envelope . on one of those  sheets of paper , write the number and the nameof the report you are  ordering , your email address , your nameand postal address . make sure  you affix the proper ' international ' postage if ordering a report from  outside your country . place your order for these  reports  # 1 : the insider ' s guide to advertising for free on the netorder report  # 1 from : k . j . nickelsp . o . box 739 waukesha , wi  # 2 : the insider ' s guide to sending bulk e - mail on the netorder report  # 2 from : k . heritage 6933 w . university ave # 610 gainsville , fl  # 3 : secret to multilevel marketing on the net : order report # 3  from : t . turner 5317 bonner dr . corpus christie , tx  # 4 : how to become a millionaire utilizing mlm & the netorder  report # 4 from : mel hahnl 11 wilmont drive unit gwaukesha , wi  # 5 : how to send out one million e - mailsorder report # 5 from : j .  fridl 3324 radisson rd . n . e . ham lake , mn  55304 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ there are  currently almost 500 , 000 , 000 people online worldwide ! $ $ $ $ $ $ $ $ $ $ your  success guidlines $ $ $ $ $ $ $ $ $ $ follow these guidlines to guarantee your  success : * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * if you do not receive at  least 10 orders for report # 1 within 2 weeks , continue sending e - mails until  you do . after you have received 10 orders , 2 to 3 weeks after thatyou  should receive 100 orders or more for report # 2 . if youdid not ,  continue advertising or sending e - mails until you do . once you have  received 100 or more orders for report # 2 , youcan relax , because the system  is already working for you , and the cash will continue to roll  in ! ! this is important to remember : every time your nameis moved down  the list , you are placed in front of a different report . you can keep  track of your progress by watching whichreport people are ordering form  you . if you want to generate more income send anotherbatch of e - mails  and start the whole processagain . there is no limit to the income you  can generatefrom this  business ! ! ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  following is a note from the originator of this  program : you have just received information that can give you  financialfreedom for the rest of your life , with no risk and just  alittle bit of effort . you can make more money in the nextfew  weeks and months than you have ever imagined . follow the program exactly  as instructed . do not changeit in any way . it works exceedings  well as it is now . remember to e - mail a copy of this exciting report after  youhave put your name and address in report # 1 and moved othersto  # 2 . . . . . . . . . . # 5 as instructed above . one of the peopleyou send this to  may send out 100 , 000 or more emails and yourname will be on every one of  them . remember though , the moreyou send out the more potential  customers you will reach . so my friend , i have given you the ideas ,  information , materials and opportunity to become financially  independent . it is up to you now ! * * * * * * * * * * more  testimonials * * * * * * * * * * \"\" my name is mitchell . my wife jody and i  live in chicago . i am an accountant with a major us corporation and i  makepretty good money . when i received this program i grumbledto  jody about receiving \"\" junk mail \"\" . i made fun of thewhole thing ,  spouting my knowledge of the population andpercentages involved . i  \"\" knew \"\" it wouldn ' t work . jodytotally ignored my supposed intelligence  and a few days latershe jumped in with both feet . i made merciless fun  of her , and was ready to lay the old \"\" i told you so \"\" on her whenthe thing  didn ' t work . well , the laugh was on me ! within 3 weeks she had  received 50 responses . within the next 45 days she had received a total  of $ 147 , 200 . 00 all cash ! i was shocked . i have joined jody in her  \"\" hobby \"\" . mitchell wof , chicago ,  being the gambling type , it took me several weeks tomake up my mind to  participate in this plan . but conservativethat i am , i decided that  the initial investment was so littlethat there was just no way that i  wouldn ' t get enough ordersto at least get my money back . i was  surprised when i foundmy medium sized post office box crammed with  orders . i made $ 319 , 210 . 00 in the first 12 weeks . the nice thing  about thisdeal is that it does not matter where people live .  theresimply isn ' t a better investment with a faster return andso  big \"\" . dan sondstrom , alberta ,  had received this program before . i deleted it , but lateri wondered if  i should hav given it a try . of course , ihad no idea who to contact to  get another copy , so i had towait until i was e - mailed again by someone else  . . . . . . . 11 months passed then it luckily came again . i did not  delete this one ! i made more than $ 490 , 000 on my first tryand all  the money came within 22 weeks \"\" . susan de  suza , new york ,  really is a great opportunity to make relatively easymoney with little cost  to you . i followed the simpleinstructions carefully and within 10 days  the money startedto come in . my first month i made $ 20 , 560 . 00 and by  theend of the third month my total cash count was $ 362 , 840 . 00 . life is  beautiful , thanks to the internet \"\" . fred  dellaca , westport , new  your reports today and get startedon your road to financial  you have any questions of the legality of this program , contact the office of  associate director of marketingpractices , federal trade commission , bureau  of consumerprotection , washington , d . c . we are not the authors of this  program and do not warrant any guarantees as to how much earnings you  willachieve . this is a one time mailing . if you wish to be  removed from our list please reply to this e - mail with \"\" remove \"\" in the  subject lineand you will be removed immediately . \",1\n\"Subject: be one of our survey takers and we ' ll send you a complimentary laptop computer .  computer survey group needs survey takers in your area now . we ' d like to send you a complimentary laptop computer now for helping us . ( )  laayawrw\",1\n\"Subject: women with cum on their face ! ! !  click here to be removed \",1\n\"Subject: the big unit  i ' ve been using your product for 4 months now . i ' ve increased my  length from 2  to nearly 6 . your product has saved my sex life . - matt , fl  my girlfriend loves the results , but she doesn ' t know what i do . she  thinks  it ' s natural - thomas , ca  pleasure your partner every time with a bigger , longer , stronger unit  realistic gains quickly  to be a stud  press here  when wearing this garment you will find it unnecessary to use the  electric tube except on rare occasions  oranjestad , aruba , po b  1200  so while they grow they cannot be said to really live , and they must be  picked before they can become good citizenshow long do you live , after  you are picked ? asked dorothy never allow revenge or animosity to influence  your conduct  men may threaten , but they can not injure you , so you must remember that  they do not possess your mighty advantages , and that , because of your  strength , you should bear with them patiently \",1\n\"Subject: bring on the best software . . . at the most reasonable prices !  best software prices .  why can ' t they invent something for us to marry instead of women ?  ah ! the clock is always slow ; it is later than you think .\",1\n\"Subject: you ' re my dream come true 0  hello my hope !  i am not sure you get this message but if you got i want you to know  that i want to travel to your country to work in two weeks and i just  want to meet right man . i live in russia and my goal is to leave this  country because it is impossible to live here for young pretty woman .  if you have not wife or girlfriend , maybe we could try to meet ?  i am tayana , i am 25 years old , please write to me directly  to my mail - lapa 201 @ pochta . ru see you soon ! ! ! !  concrete nocturnal flung glimmer wooster anamorphic contraceptive droll rob foothill gaur estonia tollgate derby electrify baseball franca bath  butane trytophan freeman fern farmland octal britten canfield airline anglophobia bun disquietude chauffeur boom remediable baseline shine extrinsic quasiperiodic fed dilatory carbonate longfellow pax sylvia fischer needlepoint blond cloy grayish biz lexical immeasurable semester  brisk cobb nut buzzword aperture rockwell burg validate spartan haughty spiritual liberal ostensible angstrom obscene scala thiamin cyprus accord thornton artichoke malaise reversible contribution linoleum onomatopoeic conferred customhouse condemnate bryce call\",1\n\"Subject: urgent reply .  from the desk of : barr arisman shonikon  chambers & associates  no 56 b . aba road , port - harcourt nigeria  private email address ( @ shymail . com )  dear  i sincerely apologize for intruding into your privacy especially by  contacting you through this means for a business transaction of this  magnitude , but due to its seriousness and urgency it therefore became  necessary for me to seek your assistance .  i am barr . arisman shonikon , the personal lawyer to late mr . frank ionescu , a  foreigner , who worked with an oil servicing company in the oil rich niger  delta area of bayelsa state . i am contacting you concerning my late client  and an investment he made . i would respectfully request that you keep the  contents of this mail confidential and respect the integrity of the  information you come by as a result of this mail . i contacted you  independently and no one should be informed of this communication . i would  like to intimate you with certain facts that i believe would be of interest  to you .  this is a genuine transaction and is 100 % risk free . all i ' m demanding from  you is your honest co - operation to enable us achieve our goal , and not a  perfidious person . on the 6 th of may , 2002 it was reported to us that my  client , his wife and their only daughter were involved in a local plane  crash at kano state , enroot abuja ( the capital city ) all occupants in the  plane lost their lives , unfortunately on this same flight were other  dignitaries like the sports minister and a host of others  meanwhile , until his death , my late client had a fixed deposit account of  usd $ 15 . million deposited in a security company ( unic security company )  here . recently , i received an ultimatum from the security company asking me  to provide my late client ' s relative so that the money would be given to  them . but unfortunately it was discovered that my late client did not  declare any identifiable family member in all the official documents he  tendered to the security company while opening the account .  therefore , this development leaves me as the only person with the full  picture of what the prevailing situation is in relation to the deposit my  late client made and who is entitled to be the bona fide beneficiary / next of  kin or relative because he died intestate . therefore , if i fail to locate  any of his relatives or his next of kin ( and have this money transferred to  them ) the security company will at the expiration of the 6 weeks ultimatum  given to me confiscate the account .  according to the ultimatum issued to me by the security company , if i fail  to present to them my late client ' s relative , with a legitimate statement of  claim for the money before the given time they will confiscate the account  and the money declared ' unclaimed balance ' . this will result in the money  being taken over by the security company . this will not happen if i have my  way .  since i have been unsuccessful in locating the relatives of my late client  all these while , my proposal , therefore , is to present you as the next of  kin / relative of my client due to the fact that you are a foreigner and can  easily pass as a possible relative of my client . i know you will be  wondering how possible this could be but i assure you that this is simple .  i therefore seek your consent to present you as the next of kin to my client  so that the money he deposited with the security company would be paid to  you and there after you and i will share the money 40 % for you and i will be  taking 60 % . i assure you that the deposit would be released to you within a  few days because i have all the relevant information that would facilitate  that will be required on documentation .  first , i will like you to provide immediately the following information :  your full names .  contact address .  telephone / fax numbers .  with this information i will prepare the necessary documents and affidavit  that will put you in place as the next of kin . after we have successfully  satisfied the requirements of the bank the money totaling usd 15 . million  would be paid into your account for you to take 40 % and i will be taking  60 % . all i require is your honest co - operation to enable us see this  through .  there is no risk at all because everything would be done legally and my  position as a qualified attorney will facilitate everything . secondly , i  will give you all the necessary documents that would serve as evidence  proving that you are the next of kin / relative of my late client . these  documents will legally conferm on you the status to act as the beneficiary  of the estate of my late client .  what i related to you might smack of unethical practice but i want you to  understand that this is a once in life time opportunity capable of turning  around our situation . the truth is that this money would not be taken by the  government but by some greedy security company officials and i would not  fold my arms and watch this happen hence my decision to contact you .  if you are interested in doing this transaction with me kindly send your  reply to this email address : ( arismanshonikon @ shymail . com )  thank you as i await your positive response .  barr . arisman shonikon .\",1\n\"Subject: the probblem solved  how to save on your medl prolocutor catlons over 60 % .  pharma nettle zmail shop - successfull and proven way to sav tombola e your m bandeaux oney .  fertile v  a lithesome g  methodology l  l filament u  revisionism l  r welshman a untrue cla  inelegant isv hatred al  aeronavigation m  andmanyother .  * bes sandstorm t prlces  * wor feathered ldwide shlpplng  * tota inspissate l confidentiaiity  * over 5 miliion cu euphonical stomers  have a nice day chipboard !\",1\n\"Subject: looking for a new job ?  professional . effective . 100 % guaranteed .  visit us at :  www . stopsendingresumes . net  career controls , inc . p . o . box 42108 cincinnati , oh 45242 this e - mail message is an advertisement and / or solicitation . \",1\n\"Subject: let ' s appreciate it . . . .  dear  we are proud to introduce to you this amazing painting form emile  louisius . let us appreciate it together .  creoleart . com  info @ creoleart . com  if  you do not see the graphics below , click  here to view in a new window .  to ensure delivery , please add contact @ creoleart . com  to your contact list .  emile  louisius he is born on june 22 , 1964 to jeremie .  self - educated , he has taught one self the painting .  he has his first one man show with henri r . bresil to  jamaica in 1985 . and after that he continued to show  off in several towns in the world , such as japan .  pal 6200600  16 x 20  price  $ 600 . 00 usd  related  item  edras  florestal  30 x 40  $ 2600 . 00 usd  the  gallery  exhibitions  of all artists works . in that field is available informations  regarding the items , the sizes , and the prices  next  offer  see here  the next offers from creoleart . com . if you want to see all  previews creoleart . com offers click  here  contact  us  info @ creoleart . com  contact @ creoleart . com  011 ( 509 ) 5279421  p . o . box 16102  the international code  is 011 and haiti ' s country code is ( 509 ) - copyright 2004 creole  art online inc , all rights reserved - contact @ creoleart . com  about this mailing :  you are receiving this e - mail because you subscribed to creoleart . com  best offers . creoleart . com respects your privacy . if you do not wish to  receive this creoleart . com best offers e - mail , please either click the  unsubscribe link below and type remove my link to your mailing  list please . so you will never receive any emails from us . but if you  will , just email to contact @ creoleart . com and type add me in your mailing  list please . prices and item availability subject to change without notice .  www . creoleart . com \",1\n\"Subject: hi  how to save on your fashion medlcatlons over 70 % .  shalloon pharmzmail shop - successfull and proven way to save curvet your plumose money .  whereby v  intraocular ag  a disconsolate l  shandrydan lu  synoptical l  r impoverishment a drouth cl  frozen isva calmatige l  eyewater m  andmanyother .  * best p coheir rlces  * wor requital ldwide shlpplng  * sjambok total confidentiaiity  * over 5 miliion c dominical ustomers  have unnumbered a nice day !\",1\n\"Subject: undelivered mail returned to sender  this is the postfix program at host backupmail . mittwaldmedien . de .  i ' m sorry to have to inform you that the message returned  below could not be delivered to one or more destinations .  for further assistance , please send mail to  if you do so , please include this problem report . you can  delete your own text from the message returned below .  the postfix program  : host mail . edv - stangl . com [ 62 . 216 . 178 . 13 ] said : 550  : user unknown in virtual alias table ( in reply to  rcpt to command )\",1\n\"Subject: [ ilug ] ilug - admin , enhance your bust amazing breast enhancing capsules  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  guaranteed to increase , lift and firm your  breasts in 60 days or your money back ! !  100 % herbal and natural . proven formula since  1996 . increase your bust by 1 to 3 sizes within 30 - 60  days and be all natural .  click here :  http : / / 64 . 123 . 160 . 91 : 81 / li / wangxd /  http : / / 202 . 101 . 163 . 34 : 81 / li / wangxd /  absolutely no side effects !  be more self confident !  be more comfortable in bed !  no more need for a lift or support bra !  100 % guaranteed and from a name you know and  trust !  you are receiving this email as a double opt - in  subscriber to the standard affiliates mailing  list .  to remove yourself from all related email lists ,  just click here :  - -  irish linux users ' group : ilug @ linux . ie  http : / / www . linux . ie / mailman / listinfo / ilug for ( un ) subscription information .  list maintainer : listmaster @ linux . ie\",1\n\"Subject: uregent ! important information about your website . . . .  hello ,  my name is steve scott and i ' m president and ceo of the worlds largest and most  profitable online internet affiliate program . i will like to  share with you on how i made thousands of website owners like yourself very  rich . yes , i mean filthy rich . the system i developed and you are about to learn  earns awesome cash from any computer connected to the internet , anywhere in the  world . in one month you can earned more than an entire years work !  making money doesn ' t get any easier than this ! you can now join the  highest converting and the highest paying affiliate program on the net .  get paid 75 % commission on the worlds most  wanted product . yes our product sells itself .  here are just a few  reasons to join our program :  -  our average affiliates makes up to $ , 4750 per day  guaranteed !  -  participate for free  -  our product sells itself guaranteed .  -  highest conversion rate . over 85 % of those who visit  our site signs up .  -  you will receive up to 75 % commission  -  new ! 2 tier  program . yes , you can make residual income from  affiliates you sign up too .  -  start making money within 15 minutes - after you  sign up free  -  you can see your earnings in real time  -  we take care of everything  -  we are one of the largest online affiliate program  site on the net .  -  you will receive email notifications every time  someone signs up .  -  and best of all you don ' t need a website to join .  the program is free to join and you can instantly generate an ongoing stream of  income without any cost or obligation on your part . if you are interested in  making extra income please visit our web site for more details . go to  - -  with best regards ,  steve scott  steve scott productions 2174 rodeo dr beverly hills , ca 90210 this e - mail message is an advertisement and / or solicitation . \",1\n\"Subject: understanding oem software  send the love home with an online photo album  absence sharpens love , presence strengthens it .  painting is just another way of keeping a diary .\",1\n\"Subject: perfect visual solution for your business now  working on your company ' s image ? start with a  visual identity a key to the first good impression . we are here to  help you ! we ' ll take part in buiiding a positive visual imaqe  of your company by creatinq an outstandinq logo , presentabie stationery  items and professional website . these marketinq tools wiii siqnificantly  contributeto success of your business . take a look at our work samples , hot deal packages and  see what we have to offer . we work for you !  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: don ' t get ripped off ! things to watch out for :  don ' t get ripped off ! gimmicks to look out for :  vacuum pumps : expensive rip - off  most men aren ' t going to wait a whole year to gain 1 \"\" ! ! ! !  or do it the right way , instead they think the more they pump the faster the results . wrong ! a vacuum pump will injure your penis before it will enlarge your penis .  lengthen your manhood the fast , natural way ! check out our new , state of the art  system  weight hanging : dangerous rip - off  only lengthens the penis , does not thicken it , while lessening sensation during intercourse .  and to top it off , it creates unsightly stretching marks , and could cause permanent damage  which could easily require partial amputation of the penis !  obtain a longer , thicker penis without the risks and the pain !  choose the latest scientific breakthroughs , over barbaric tribal techniques  now !  weight hanging : dangerous rip - off  penis enlargement surgery is a very dreaded , painful , and dangerous operation  that has a quite high nonsuccess rate according to patient opinion .  here are just some results .  deformed looking penis ( lumps & pits ) , impotence , loss of sex drive ,  painful erections , if any at all ! !  save your hard earned dollars ! spending more is not always the best solution . obtain a healthy looking , longer penis without scary surgery , and any chance of impotence ! learn more about our amazing exercise techniques !  special offer ! \",1\n\"Subject: software store  http : / / infinity . realoemsales . com / ? a = 3107\",1\n\"Subject: re [ 7 ] : talk thread about his pills  spu  m  r -  th  ewe  an  saf  twa  ph  macy  en  st  dthe  es  yof  ar  inc  eyo  xualdes  spe  umeby  %  reas  urse  ireand  rmvol  500  100  uraland  deeff  - incon  ttowel  wnbra  % nat  nosi  ects  tras  l - kno  nds .  expe  cethr  eslon  gas  rien  eetim  geror  ms  wor  deshi  gwit  hou  ldwi  ppin  hin 24  rs  t to wel wn bra % nat no si ects  tras l - kno nds . expe ce thr  es lon gas rien ee tim ger or  ms wor de shi g wit hou  ld wi ppin hin 24 rs sp  - m ur the we and  saf wa ph acy is  ne st the est y of  arm inc e yo xual des spe  ume by % reas ur se ire and  rm vol 500 100 ural and de eff  - in con t to wel wn bra % nat no si  ects tras l - kno nds . expe  ce thr es lon gas rien ee tim  ger or ms wor de shi g wit  hou ld wi ppin hin 24 rs  sp - m ur the we  and saf wa ph acy  is ne st the est  y of arm inc e yo xual des  spe ume by % reas ur se  ire and rm vol 500 100 ural and  de eff - in con t to wel wn bra % nat  no si ects tras l - kno nds .  expe ce thr es lon gas rien  ee tim ger or ms wor de shi  g wit hou ld wi ppin hin 24  rs sp - m ur the  we and saf wa ph  acy is ne st the  est y of arm inc e yo  xual des spe ume by % reas  ur se ire and rm vol 500 100  ural and de eff - in con t to wel wn bra  % nat no si ects tras l - kno  nds . expe ce thr es lon gas  rien ee tim ger or ms wor  de shi g wit hou ld wi ppin  hin 24 rs sp - m ur  the we and saf wa  ph acy is ne st  the est y of arm inc  e yo xual des spe ume by %  reas ur se ire and rm vol 500  100 ural and de eff - in con t to wel  wn bra % nat no si ects tras  l - kno nds . expe ce thr es lon  gas rien ee tim ger or ms  wor de shi g wit hou ld wi  ppin hin 24 rs sp - m  ur the we and saf  wa ph acy is ne  st the est y of arm  inc e yo xual des spe ume by  % reas ur se ire and rm vol  500 100 ural and de eff - in con  t to wel wn bra % nat no si ects  tras l - kno nds . expe ce thr  es lon gas rien ee tim ger or  ms wor de shi g wit hou  ld wi ppin hin 24 rs sp  - m ur the we and  saf wa ph acy is  ne st the est y of  arm inc e yo xual des spe  ume by % reas ur se ire and  rm vol 500 100 ural and de eff  - in con t to wel wn bra % nat no si  ects tras l - kno nds . expe  ce thr es lon gas rien ee tim  ger or ms wor de shi g wit  hou ld wi ppin hin 24 rs  sp - m ur the we  and saf wa ph acy  is ne st the est  y of arm inc e yo xual des  spe ume by % reas ur se  ire and rm vol 500 100 ural and  de eff - in con t to wel wn bra % nat  no si ects tras l - kno nds . \",1\n\"Subject: are you ready to get it ?  hello !  viagra is the # 1 med to struggle with mens ' erectile dysfunction .  like one jokes sais , it is strong enouqh for a man , but made for a woman ; - )  ordering viaqra online is a very convinient , fast and secure way !  miliions of people do it daily to save their privacy and money  order here . . . \",1\n\"Subject: you don _ t know how to attract customers to your website ?  submitting your website in search engines may increase  your online sales dramatically .  lf you invested time and money into your website , you  simply must submit your website  oniine otherwise it will be invisibie virtuaiiy , which means efforts spent in vain .  if you want  peopie to know about your website and boost your revenues , the oniy way to do  that is to  make your site visible in places  where peopie search for information , i . e .  submit your  website in muitiple search enqines .  submit your website online  and watch visitors stream to your e - business .  best reqards ,  zoraidaguerra _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: your premier mortgage information source  mortgage rates slashed for  the last time !  let us help you get a new mortgage for up to  100 % of your home value  lower your monthly payment !  consolidate your debt !  shorten the term of your loan !  reduce your interest rate !  national average mortgage  rates  program  rates  30 yr fixed  6 . 50 %  15 yr fixed  6 . 25 %  1 yr arm  5 . 51 %  choose from hundreds of  loan programs like :  purchase loans  refinance  debt consolidation  home improvement  interest only jumbo ' s  no income verification  fill out this simple  form and we will compete for your business . . .  required input field *  name *  address  city  state *  zip code *  buiness phone *  home phone  best time to contact  morning afternoon evening  total loan request  approx . home value  a consultant will contact you soon .  all information given  herein is strictly confidential and will not be re - distributed for  any reason other than for the specific use  intended . to be  removed from our distribution lists , please click  here . . \",1\n\"Subject: fortune 500 company hiring , at home reps .  help wanted . we are a 14 year old fortune 500 company , that is  growing at a tremendous rate . we are looking for individuals who  want to work from home .  this is an opportunity to make an excellent income . no experience  is required . we will train you .  so if you are looking to be employed from home with a career that has  vast opportunities , then go :  http : / / www . basetel . com / wealthnow  we are looking for energetic and self motivated people . if that is you  than click on the link and fill out the form , and one of our  employement specialist will contact you .  to be removed from our link simple go to :  http : / / www . basetel . com / remove . html \",1\n\"Subject: perfect logo charset = koi 8 - r \"\" >  thinking of breathing new life into your business ?  start from revamping its front - end - logo and visuai identity .  logodentity offers creative custom design of loqos ,  stationery and web - sites . under our carefui hand these powerful marketinq toois  will brinq a breath of fresh air into your business  and make you stand out among the competitors .  you are just a click  away from your future success . click here to see the samples of our artwork ,  check our prices and hot offers\",1\n\"Subject: does your business depend on the online success of your website ?  submitting your website in search engines may increase  your online sales dramatically .  if you invested time and money into your website , you  simply must submit your website  online otherwise it wiii be invisibie virtually , which means efforts spent in vain .  if you want  peopie to know about your website and boost your revenues , the oniy way to do  that is to  make your site visibie in piaces  where people search for information , i . e .  submit your  website in muitipie search enqines .  submit your website online  and watch visitors stream to your e - business .  best reqards ,  dotlopez _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: it works greatt  hello , welcome to medzonli moonbeam ne shop  we are pleased to introduce ourselves as one of the ieading online ph pandemonium armaceuticai shops .  coronal v  disaster r  a proportionality l  afflicted ll  rhomboid lag  a chamfer cl  is haycock va  u furiosity m  andmanyother .  - save ov coachhouse er 75 %  - total confi appease dentiaiity  - worldwide phonetic shlpplng  - over blackleg 5 miilion customers in 150 countries  have a ni converter ce day !\",1\n\"Subject: software megastore  http : / / grimaldi . mainoemstore . com / ? a = 3107\",1\n\"Subject: best prescription generic meds 4 less .  now your woman will be really happy with your intimate life !  our critics are our friends ; they show us our faults .  my fellow astronauts . . .  once they were men . now they are land crabs .  beauty fades ; dumb is forever .\",1\n\"Subject: we have been helping thousands of men with male enhancement  best deals on all generic viagra and generic cialis alternatives with guaranteed lowest prices  keep your eyes on the stars , and your feet on the ground .  the world is now too small for anything but brotherhood .  no one gossips about other people ' s secret virtues .  i ' ve learned to take no as a vitamin .\",1\n\"Subject: = ? iso - 8859 - 1 ? q ? clausura _ curso _ ni = dlos _ y _ adolescentes . ? =  5 de julio 2005  lic monica ramos rodriguez .  jefa de noticias de tv 9 canal de oaxaca  la television de los oaxaque?os .  estimada licenciada :  reciba un cordial saludo y al mismo tiempo mi solicitud para que un reportero y un camarografo nos haga el favor de tomar la rese?a de la clauura del curso de \"\" prevencion de adicciones \"\" para menores oaxaque?os .  que se imparti? del 4 al 8 de julio del 2005 de 10 : 00 al 4 : 00 horas en coordinacion con el centro de integracion juvenil a . c . de oaxaca .  este curso cont? con la participacion de ni?os oaxaque?os en edad de primaria , la instructora fue la lic en trabajo social victoria ortega .  dicha clausura se realizar? en el cij ubicado en marcos perez 111 a las 14 horas , con la entrega de las constancias de participacion por parte del cij y telefonos de mexico s . a . de c . v .  mucho le agradecer? nos d? su amable confirmacion por este medio .  reciba un cordial saludo .  lae . ada beatriz lopez y lopez  h colegio militar 1013  col reforma oaxaca  oax  c . p . 68050  ahora infinitum te da doble de velocidad , mismo precio . baja fotos , m?sica , videos y todo lo que quieras al doble de velocidad desde $ 349 al mes  m?s i . v . a .  ? qu? esperas ?  acel?rate al doble y con?ctate http : / / www . hits . telmex . com / app / ad _ mgr / ad _ mgrn . jsp ? ad = 371  as?m @ te a telmex . com http : / / www . hits . telmex . com / app / ad _ mgr / ad _ mgrn . jsp ? ad = 195  confidentiality notice : this e - mail message including attachments , if any , is intended only for the person or entity to which it is addressed and  may contain confidential and / or privileged material . any review , use , disclosure or distribution of such confidential information without the written  authorization of tel?fonos de m?xico is prohibited . if you are not the intended recipient , please contact the sender by reply e - mail and destroy all copies  of the original message . by receiving this e - mail you acknowledge that any breach by you and / or your representatives of the above provisions may  entitle tel?fonos de m?xico to seek for damages .  aviso de confidencialidad : este correo electr?nico , incluyendo en su caso , los archivos adjuntos al mismo , pueden contener informaci?n de  car?cter confidencial y / o privilegiada , y se env?an a la atenci?n ?nica y exclusivamente de la persona y / o entidad a quien va dirigido . la copia ,  revisi?n , uso , revelaci?n y / o distribuci?n de dicha informaci?n confidencial sin la autorizaci?n por escrito de tel?fonos de m?xico est? prohibida . si  usted no es el destinatario a quien se dirige el presente correo , favor de contactar al remitente respondiendo al presente correo y eliminar el correo  original incluyendo sus archivos , as? como cualesquiera copia del mismo . mediante la recepci?n del presente correo usted reconoce y acepta que en  caso de incumplimiento de su parte y / o de sus representantes a los t?rminos antes mencionados , tel?fonos de m?xico tendr? derecho a los da?os y  perjuicios que esto le cause .\",1\n\"Subject: i 6 h : logo your business identity  your business lacks visual identity ?  marketing efforts falling short ?  invisible among a sea of competitors ?  you ' re on the right track for a solution - keep reading . . .  our professional designers specialize in the creation of custom logos and business / corporate identities . our design needs to be seen only once to gain customer attention and recognition . with one of our unique , eye - catching mages you ' ll never have to introduce yourself twice !  we promise fast turnaround and 100 % customer satisfaction . choose from as any design ideas as necessary , select as many colors as you wish , order any modifications you like , and request any format . our prices are affordable for any size of business , and get this : there are no hidden fees .  follow the link below to browse our portfolio and check out our sweet deals .  wipe the \"\" in \"\" from \"\" invisible \"\" in just a few days - with us !  http : / / x 911 . info . ox - files . info  sincerely ,  zelma blankenship\",1\n\"Subject: in the heart of your business !  corporate image can say a lot of things about your  company . contemporary rhythm of life is too dynamic . sometimes it takes only  several seconds for your company to be remembered or to be iost among  competitors . get your ioqo , business stationery or website done riqht  now ! fast turnaround : you wiii see severai ioqo variants in three  business days . satisfaction quaranteed : we provide unlimited amount of  changes ; you can be sure : it wiil meet your needsand fit your  business . flexible discounts : loqo improvement , additional formats , bulk  orders , special packages . creative design for competitive price : have a look at it right  now ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: in the heart of your business !  corporate image can say a lot of things about your  company . contemporary rhythm of life is too dynamic . sometimes it takes only  several seconds for your company to be remembered or to be iost among  competitors . get your logo , business stationery or website done right  now ! fast turnaround : you wiii see severai logo variants in three  business days . satisfaction guaranteed : we provide unlimited amount of  changes ; you can be sure : it wiil meet your needsand fit your  business . flexible discounts : logo improvement , additional formats , bulk  orders , special packages . creative design for competitive price : have a look at it right  now ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: ip cameras for your security system  dear sir or madam :  we understand from your information on google . com engineer . we would like to take this opportunity to introduce our company and products , with the hope that we may work with bright ideas imports in the future  founded in 1993 , tokia electronics co . , ltd . we are specializing in the manufacture of cctv cameras , color ccd cameras , b / w ccd cameras , color dome cameras , b / w dome cameras , mini ccd cameras , day / night ccd cameras , high speed cameras , flying sauce cameras , wireless cmos cameras , dvr , dvr board , all - in - one camera , ip camera and lens and other safety protection video products , which are widely used in banks , electric power , transportation , public security , , shopping mall , residence area and the like .  presently , tokia electronics co . , ltd . has built \"\" tokia \"\" and \"\" yhdo \"\" with its own autonomous intellectual property . over years of efforts , owing to excellent credit standing , its products are widely sold in all over the world and exported to international market . it became one of the largest video recorder manufacturer in china . we have approved by iso 9000 and ce certificate .  detailed circumstance of our products , please click out the site : http : / / www . cctvcameras . cn /  should any of these items be of interest to you , please let us know . we will be happy to give you a quotation upon receipt of your detailed requirements .  we look forward to receiving your enquires soon . . i am very say if this letter disturb you .  sincerely ,  jamme  ip cameras : live demo : http : / / 220 . 130 . 14 . 230 usename : guest password : guest  1 . internal build - in ccd provides all in one cctv solution  2 . remote surveillance through internet or intranet .  3 . even triggered picture can be sent vis ftp or e - mail  4 . system based on java platform for better stability  5 . remote recording  6 . pppoe\",1\n\"Subject: undelivered mail returned to sender  this is the postfix program at host correio . quick . com . br .  i ' m sorry to have to inform you that the message returned  below could not be delivered to one or more destinations .  for further assistance , please send mail to  if you do so , please include this problem report . you can  delete your own text from the message returned below .  the postfix program  : user unknown . command output : invalid user  specified .\",1\n\"Subject: returned mail : see transcript for details  the original message was received at tue , 19 jul 2005 03 : 57 : 51 - 0700  from [ 222 . 217 . 202 . 51 ]  - - - - - the following addresses had permanent fatal errors - - - - -  ( reason : 550 - mailbox unknown . either there is no mailbox associated with this )  - - - - - transcript of session follows - - - - -  . . . while talking to localhost :  > > > data  . . . user unknown  < < < 503 5 . 5 . 1 no recipients\",1\n\"Subject: the government grants you $ 25 , 000 !  free personal and business grants  \"\" qualify for at least $ 25 , 000 in free  grants money - guaranteed ! \"\"  each day over one million dollars in free  government  grants is given away to people just like you for a wide  variety of business and personal needs  dear grant seeker ,  in a moment , i ' ll tell you  exactly how where to get grants . this money has to  be given away , why not to you ?  you may be thinking , \"\" how  can i get some of this free grants money \"\"  maybe you think it ' s impossible  to get free money ?  let me tell you it ' s not  impossible ! it ' s a fact , ordinary people and businesses all across the  united states are receiving millions of dollars from these government and  private foundation ' s everyday .  who can apply ?  anyone can apply  for a grant from 18 years old and up !  grants from $ 500 . 00 to $ 50 , 000 . 00  are possible ! grants don ' t have to be paid back ,  ever ! claim  your slice of the free american pie .  this money is not a loan ,  trying to get money through a conventional bank can be very time consuming  and requires a lot of paperwork , only to find out that you ' ve been denied .  these government agencies don ' t have to operate under the same stringent  requirements that banks do .  you decide how much money  you need , as long as it ' s a lawful amount and meets with the government  agencies criteria , the money is yours to keep and never has to be repaid .  this money is non taxable interest free .  none of these programs require  a credit check , collateral , security deposits or co - signers , you can apply  even if you have a bankruptcy or bad credit , it doesn ' t matter , you as  a tax payer and u . s . citizen are entitled to this money .  there are currently over  1 , 400 federal programs , 24 , 000 state programs , 30 , 000 private foundations  and 20 , 000 scholarship programs available .  this year over $ 30 billion  dollars in free personal and business government grants money will be given  away by government grants agencies .  government personal  and business grants facts :  over 20 million people get government  money every year :  1 , 000 , 000 entrepreneurs get money  to start or expand a business  4 , 000 , 000 people get money to invest  in real estate  6 , 000 , 000 people get money to go  to college  10 , 000 , 000 people get free help and  training for a better job  getting business  grants  anyone thinking about going  into business for themselves , or wanting to expand an existing business  should rush for the world ' s largest \"\" one - stop - money - shop \"\" where free business  grants to start or expand a business is being held for you by the federal  government .  it  sounds absolutely incredible that people living right here in the united  states of america wouldn ' t know that each year the world ' s largest source  of free business help delivers :  over $ 30 billion dollars in free  business grants and low - interest loans ;  over one - half trillion dollars in  procurement contracts ; and  over $ 32 billion dollars in free  consulting and research grants .  with an economy that remains  unpredictable , and a need for even greater economic development on all  fronts , the federal government is more willing than it ever has been before  to give you the money you need to own your own business and become your  own boss !  in  spite of the perception that people should not look to the government for  help , the great government give - away programs have remained so incredibly  huge that if each of the approximately 8 million businesses applied for  an equal share , they would each receive over $ 70 , 000 .  most  people never apply for free business grants because they somehow feel it  isn ' t for them , feel there ' s too much red - tape , or simply don ' t know who  to contact . the fact is , however , that people from all walks of life do  receive free grants money and other benefits from the government , and you  should also .  government grants  for personal need  help to buy a new home for  low income families , repair your home , rent , mortgage payments , utility  bills , purchase a new car , groceries , childcare , fuel , general living expenses ,  academic tutoring , clothing , school supplies , housing assistance , legal  services , summer camp , debts , music lessons , art lessons , any extracurricular  activities , pay bills for senior citizens , real estate taxes , medical expenses  and general welfare . if you or someone you know suffered a fire lose there  are programs available to help in replacing necessities .  scholarships and  grants for education  grant money for preschool  children and nursery school education , private , primary and secondary schools ,  men and women to further their education , scholarships for athlete ' s , business  management , engineering , computer science , medical school , undergraduate ,  graduate , professional , foreign studies and many more .  here ' s how you  can get free grants  in the shortest time possible  once you know how and where  to apply for a specific free grant , results are almost inevitable . the  government wants to give away this money . . . it is under congressional  mandate to do so ! these funds are made available to help you , the tax payer .  all that ' s required from you is the proper presentation of your grant request .  that ' s all .  announcing . . .  \"\" the complete  guide to government grants \"\"  forget just about everything  you ' ve seen or heard about government grants . what i ' ve done is put together  a complete blueprint for researching , locating and obtaining government  grants . \"\" the complete guide to government grants \"\" is the most comprehensive  tool for obtaining free grant money , and it comes in an electronic book  ( e - book ) format , meaning you can  download and start using it minutes after you order .  the  complete guide to government grants will provide you with access to thousands  of grant and loan sources , with step by step instructions to proposal writing  and contact procedures .  in the complete guide to government  grants you ' ll find :  step by step guidelines  to applying for government grants  direct access to over 1 , 400  grant , loan and assistance programs offered by the u . s . federal government .  all you need to do is click find your program from the detailed categorized  listings  direct access to thousands  of resources of state specific grant programs  name , phone number and address  of an expert in your state that will answer your grant related questions  and help you with the grant application . . . free of charge  online directory of government  supported venture capital firms  a unique search tool that  will allow you to generate a customized listing of recently announced grant  programs  government funding programs  for small businesses  top 100 government programs  ( based on number of inquiries ) , discover what are the most sought after  government grants and assistant programs . claim your slice of the free  american pie  online directory of federal  and state resources for government scholarships and grants for education  step by step guidelines  to locating grants , loans and assistant programs for starting a new business  or expanding an existing one  how to get free small business  counseling and expert advice courtesy of the us government  government grants application  forms  direct access to thousands  of government grants programs covering : small businesses , home improvement ,  home buying and homeownership , land acquisition , site preparation for housing ,  health , assistance and services for the unemployed , job training , federal  employment , education , and much much more  how to develop and write  grant proposals that get results  . . . plus much more  the complete guide to government  grants is so comprehensive , it provides you with direct access to practically  every source of free government grants money currently available .  if you ' re an american citizen  or resident , you are entitled to free grant money ranging from $ 500 to  $ 250 , 000 or more . if you are black you have already qualified for 15 programs ,  being hispanic , you qualify for many programs . being a christian will get  you into 20 programs , there are also many other programs available for  different faiths , jewish , catholic . not having any money , will get you  into over 30 programs , 550 programs if you are unemployed , or underemployed .  the list and sources are endless .  you are eligible ! this money  is absolutely free and will be yours to use for any worthwhile purpose .  did you know you can apply  for as many grants as you want ?  it ' s true , for instance ,  you could get a $ 65 , 000 grant to begin a weight loss business , get $ 8 , 800  in tuition to become a nurse or $ 35 , 000 to open up the day - care center ,  you ' ve always dreamed of owning . and then , go out and apply for a grant  to buy a home for you and your family . and once your new business starts  doing well you could go out and get another grant for expansion of your  business . the possibilities are endless .  you must qualify  for at least $ 25 , 000 in free  grants money , or your money back !  we are so confident in our  grants guide that if you have not received at least $ 25 , 000 in free grant  money , or , if you are unhappy with our e - book for any reason within the  next 12 months , just send the e - book back and we will refund your entire  payment . no questions asked ! !  if you want to order , we  insist you do so entirely at our risk . that is why the e - book comes with  a . . . no risk full year money - back guarantee . there is absolutely  no risk on your part with this 365 day guarantee . what we mean is we want  you to order without feeling you might \"\" get taken . \"\"  therefore , we want you to  order this material today . . . read it , use it . . . and if for any reason you  aren ' t completely satisfied , you not only can cancel , you should ,  for an immediate refund of your purchase price . you simply can ' t lose .  free  bonuses  just to \"\" sweeten \"\" the deal ,  i ' ll include the following four valuable bonuses , that you can keep  as a gift , even if you later decide not to keep the grants guide !  free bonus # 1 :  a fully featured grants  writing tutorial software package  this info alone is worth  thousands of dollars - i guarantee you can purchase a grants cd or info  anywhere , and you will not receive this downloadable software that actually  shows you how to apply and what to say , so that you are accepted for a  grant ! ! !  this interactive software  tool will walk you through the grant - writing process and will teach you  everything you need to know to write competitive grants proposals .  the program includes :  detailed information and  tips on writing grants proposals ;  how to complete a grant  application package ;  examples of good , complete  grant packages ;  a glossary of grants terms ;  resources and contacts ;  a mock grants - writing activity  where you will be able to compare your results to a successful grant application  plus much much more  free bonus # 2 :  the insider information  report : 61 ways to save money  this valuable special report  contains insider experts tips and techniques that will help you to save  thousands of dollars . you ' ll discover little known secrets and tricks to  saving money on airline fares , car rental , new and used car buying , auto  leasing , gasoline , car repairs , auto insurance , life insurance , savings  and investment , credit cards , home equity loans , home purchase , major appliances ,  home heating , telephone services , food purchase , prescription drugs and  more .  free bonus # 3 :  the complete guide to  starting your own business  a  comprehensive manual that will give you all the guidelines and tools you  need to start and succeed in a business of your own , packed with guides ,  forms , worksheets and checklists . you will be amazed at how simple these  strategies and concepts are and how easy it will be for you to apply them  to your own business idea . hundreds were sold separately at $ 40 each . . .  you get it here for free .  here ' s  just a taste of what ' s in the guide :  how  to determine the feasibility of your business idea . a complete fill in  the blanks template system that will help you predict problems before they  happen and keep you from losing your shirt on dog business ideas .  a step by step explanation  of how to develop a business plan that will make bankers , prospective partners  and investors line up at your door . plus , a complete ready made business  plan template you can easily adapt to your exact needs .  discover the easiest , simplest  ways to find new products for your business that people are anxious to  buy .  how  to make money with your new idea or invention . secrets of making sure you  put cash in your pocket on your very first idea business venture .  complete , step by step instructions  on how to plan and start a new business . this is must - know must - do information ;  ignore it and you stand a good chance to fail . you get specifically designed  instructions for each of the following : a service business , a retail store ,  a home based business , a manufacturing company , and more .  what nobody ever told you  about raising venture capital money . insider secrets of attracting investors ,  how to best construct your proposal , common mistakes and traps to avoid ,  and much more .  checklist  for entering into a partnership . keeps you from costly mistakes when forming  a partnership .  how to select a franchise  business . a step by step guide to selecting a franchise that is best for  you .  a complete step - by - step  organized program for cutting costs in your business . clients of mine have  achieved an average of 28 % to 35 % cost reduction with this technique , and  you can too . keep the money in your pocket with this one !  what are the secrets behind  constructing a results driven marketing plan ? i will lead you step by step  into developing a marketing plan that will drive your sales through the  roof .  a complete step by step  guide guaranteed to help you increase your profits by up to 64 % , i call  it \"\" the profit planning guide \"\" . this is a simple , practical , common sense  strategy , but amazingly enough , almost no one understands or uses it .  free bonus # 4 :  guide to home business  success  this  is afast , no - frills guide  to starting and succeeding in a home based business . here ' s just a taste  of what ' s in the guide :  home  business : is it for you ?  what  are the secrets behind the people who have million dollar home based businesses ?  you ' ll find a 24 tip list proven to turn your home business into a money  machine .  laws and regulations you  must be aware of to avoid legal errors .  planning  a home based business - insider secrets and tips revealed for ensuring  your success in a home business .  fundamentals  of home business financial planning .  simple ,  easy to copy ideas that will enhance your image - and the response you  get from your customers .  common  problems in starting and managing a home based business - and how  to solve them once and for all .  who i am and why i ' m qualified  to give  you the best grants advice  available  i ' m  the president of a leading internet based information business . i ' m also  the creator of \"\" the managing a small business cd - rom \"\" and the author of  five books .  i ' ve  been involved in obtaining grants and in small business for the past 23  years of my life , as a business coach , a manager of a consulting firm ,  a seminar leader and as the owner of five successful businesses .  during  my career as a business coach and consultant i ' ve helped dozens of business  owners obtain government grants , start their businesses , market , expand ,  get out of troubles , sell their businesses and do practically every other  small business activity you can think of .  the  guide presented here contains every tip , trick , technique and strategy  i ' ve learned during my 23 year career . you practically get my whole brain  in a form of an e - book .  how the grants guide is priced ?  the complete guide to  government grants is normally priced at $ 50 , but . . .  . . . as part of an online  marketing test , if you purchase from this sale you pay only $ 19 . 99 ( that ' s  75 % off . . . plus , you still get the free valuable bonuses . )  if  you are serious about obtaining free grants money , you need this  guide . don ' t delay a moment longer . order now ! ! !  p . s . the complete guide to government  grants will make a huge difference . you risk nothing . the guide is not  the original price of $ 50 , but only $ 19 . 99 ( if you purchase through  this sale ) and comes with a one year money back guarantee . and you  get four valuable free bonuses which you may keep regardless . don ' t delay  a moment longer , order now ! ! ! !  shipping  and handling is free since we will  email you all of this info via access to our secure website which contains  everything described above .  order  now ! ! !  if above link doesn ' t work , click here \",1\n\"Subject: greatly improve your stamina  you ' ve seen our pills on tv , in your local health stores , and on the web ,  and the question you have been asking yourself is - do they really work ? the  answer is yes !  forget about your partner faking her orgasm or not being able to please  her . you will be able to penetrate deeper so your partner will experience  more pleasure as well as multiple orgasms during sexual intercourse .  86 % of women surveyed said that they would like their partner to be more  ' full ' sexually .  check out the only male  enhancement formula with a free dvd  i ' m 67 years old . i was very wary of putting my details on the internet ,  but i am very pleased that it worked out for me . your product arrived only 2  days after i placed the order , and the packaging was very discreet , which  was perfect for me . i was shocked at how quickly the pills took effect , and  i did attempt the exercises as well , which i found simple and easy to  understand . i now have loads of energy , and feel like a new man . i can ' t  thank you enough ! ronald , phoenix  i am busy , no thank you , go above  but here is something of still greater interest , continued rob , and taking  the automatic record of events from his pocket he allowed the professor to  view the remarkable scenes that were being enacted throughout the civilized  world . the frenchman was now trembling violently , and he implored rob to  tell him where he might obtain similar electrical machines  i can ' t do that , replied the boy , decidedly ; but , having seen these , you  may be able to discover their construction for yourself \",1\n\"Subject: internet connectivity that beats the prices & quality of the big boys !  paying high prices for a dial - up connection . . . !  only $ 6 . 95 * per month  - - - >  most of us need a dial - up internet connection at some point . maybe as a back up to our current high speed connection . maybe when we travel ,  or maybe for everyday use . but like so many of us , paying $ 21 to $ 31 a month is just getting to be too much . especially if you still find it hard  to get connected or hard to stay connected .  695 online is the perfect dial - up service for you .  $ 23 . 85 per month  $ 21 . 95 per month  $ 21 . 95 per month  steady and reliable connectivity  filters out unwanted emails  3 email addresses  24 / 7 unlimited internet  affordable price  comes with a cd packed with software  great service  easy to use  nation wide local access numbers  only $ 6 . 95 per month *  learn moresign up now . . . !  sign up for 695 online . com the nation wide low cost internet provider and get mail - block for free . . . !  * orders are billed for a minimum 3 month period . sign up now . . . and start saving money today . . . !  if you do not wish to receive email for this service , please click  remove . \",1\n\"Subject: at your serrvice  hello , welcome to ph elation armzonline excitation shop  - one of the ie decorate ading oniine ph ashlar armaceuticai shops  v destructor l  sparking gr  chromic l  l numerator u  sunward a  nerveless ac piscivorous la  indigestion is hollow val  tameable m  andmanyother .  tot sublime al confidentiaiity ,  over 5 miliio intercom n customers ,  worldwide shlpplng overdraw ,  save over detail 60 % !  have a nice lovesick day !\",1\n\"Subject: delivery status notification  - these recipients of your message have been processed by the mail server :  lucaballiano @ aliceposta . it ; failed ; 5 . 7 . 1 ( delivery not authorized , message refused )  mbertozzi @ aliceposta . it ; failed ; 5 . 7 . 1 ( delivery not authorized , message refused )\",1\n\"Subject: save 84 % on ce credits  no hidden fees  over 16 , 000 credits  over 300 courses  90 % internet based  high quality courses  unlimited access  complete this form for a free guest demo !  name :  e - mail :  phone :  city :  state :  we  don ' t want anybody to receive our mailing who does not wish to receive  them . to be removed from this mailing list , do not reply to this message .  instead , go here : http : / / www . insuranceiq . com / optout  legal notice \",1\n\"Subject: we are one of the world leading legal sources for male impotence treatments  your on - line guide in pills world .  blessed are those who can give without remembering , and take without forgetting .  beauty in things exist in the mind which contemplates them .  it is pleasant at times to play the madman .\",1\n\"Subject: save your money by getting an oem software !  need in software for your pc ? just visit our site , we might have what you need . . .  best regards ,  chrissy \",1\n\"Subject: perfect logo charset = koi 8 - r \"\" >  thinking of breathing new life into your business ?  start from revamping its front - end - logo and visuai identity .  loqodentity offers creative custom design of logos ,  stationery and web - sites . under our carefui hand these powerful marketinq toois  wiil bring a breath of fresh air into your business  and make you stand out amonq the competitors .  you are just a click  away from your future success . ciick here to see the sampies of our artwork ,  check our prices and hot offers\",1\n\"Subject: you don _ t know how to get into search engine results ?  submitting your website in search engines may increase  your online sales dramatically .  if you invested time and money into your website , you  simply must submit your website  online otherwise it wiii be invisibie virtuaily , which means efforts spent in vain .  lf you want  peopie to know about your website and boost your revenues , the oniy way to do  that is to  make your site visible in places  where peopie search for information , i . e .  submit your  website in muitipie search enqines .  submit your website oniine  and watch visitors stream to your e - business .  best reqards ,  tiffinyfletcher _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: re [ 4 ] : don ' t get left behind ! . . . needham  good morning sir ,  check out the discounts these guys are offering on enlarge patches !  steel package : 10 patches reg $ 79 . 95 now $ 49 . 95 ! free shipping too !  silver package : 25 patches reg $ 129 . 95 , now $ 99 . 95 ! free shipping and free exercise manual included !  gold package : 40 patches reg $ 189 . 95 , now $ 149 . 95 ! free shipping and free exercise manual included !  platinum package : 65 patches reg $ 259 . 95 , now $ 199 . 95 ! free shipping and free exercise manual included !  millions of men are taking advantage of this revolutionary new product - don ' t be left behind !  \"\" your product is amazing and i would recommend it to anyone who has a bad erection and wants something harder and better for themselves . \"\"  - vince glover  try this peniss growth patchs out and see how it can change your life ! \",1\n\"Subject: proteja su negocio ! ! cctv , alarmas , control de accesos  cctv  alarmas  control de  acceso  su  satisfacci?n y seguridad son nuestro principal  objetivo .  ? cotizaci?n sin compromiso !  cont?ctenos y le atenderemos  con gusto .  atenci?n personal :  gregory  taylor  seguridad @ intec . com . mx  3000 - 2800  ext . 132  s?lo m?xico d . f . y ?rea  metropolitana \",1\n\"Subject: hey aro aro ; )  projecthoneypot @ projecthoneypot . org ,  come join my network at hi 5 !  i now have over 548 friends in my network ! you can meet all of them ,  plus more than 12 million other hi 5 members ! once you join , you will immediately  be connected to all the people in my circle of friends .  hi 5 is an online service that lets you meet new people , view photos ,  browse profiles , and chat with your friends .  i ' ll see you inside ,  donaji  already has more than 12 million members !  gender / age :  female / 19  location :  metairie  this invitation was sent to projecthoneypot @ projecthoneypot . org on behalf of donaji ( teporocha 55 @ hotmail . com ) .  if you do not wish to receive invitations from hi 5 members , click on the link below : \",1\n\"Subject: welcome to vip quality software .  os - adobe - macromedia etc all under $ 15 - $ 99 cds  poverty is a weapon of mass destruction .  if you have a fallback plan , you will fall back .\",1\n\"Subject: inexpensive software  looking for inexpensive high - quality software ?  we might have just what you need .  windows xp professional with sp 2 full version :  u $ 79 . 95  office 2003 professional :  u $ 89 . 95  adobe photoshop cs with imageready cs :  u $ 99 . 95  macromedia dreamwaver mx 2004 + flash mx 2004 :  u $ 109 . 95  corel draw graphics suite 11 :  u $ 59 . 95  and many more offers . . . \",1\n\"Subject: i don ' t work . . . but i have a ton of money ! vhcw  hello  this e - mail ad is being sent in full compliance with u . s . senate bill 1618 , title # 3 , section 301  to remove yourself send a blank e - mail to : removal 999 @ yahoo . com  you are getting this email because you are on a list of people that want all the money they can spend without working for it . . . you will only get this once , so please do nothing  if you would like to be removed ! ( by doing nothing you will automatically be removed )  we really are looking for truly lazy people that dream about being able to do what they  want , when they want and do so without working .  we want the type of people that drive by a house and say that they want that house some  day , but would love to own that house through money generated while they sleep or while  they are on vacation .  we want the type of people that would like to send their children to \"\" harvard \"\" or  \"\" stanford \"\" and have these educations paid for through money generated while they sleep or  while they are on vacation .  we want the type of people that see a new t - bird , corvette or jaguar and want to own these  cars and have them paid for through money generated while they sleep or while they are on  vacation .  we want the type of people that on a whim want to travel to maybe maui in the winter or  alaska in the summer and while there if they choose to buy a home in either place , they can  do so through money generated while they sleep or while they are on vacation .  we want the people that would like to sleep till noon if they choose to or get up and go to  the country club to play golf if they choose to and do so because they always have a stream  of income through money generated while they sleep or while they are on vacation .  we want the type of people that truly hate the thought of getting up in the morning and  making money for some one else .  we want the type of people that deep down want to tell some snob that thinks he ' s a big  deal because he or she drives a mercedes , that the rolls royce that you are driving is paid  for and tomorrow you might buy yourself a porche and if you are in the mood to , you might  buy your wife or friend a bmw . in other words , you deep down want to tell the snobs of the  world , that they really are managing their debt , but you have what you want when you want  and you have it all with no debt and you have all of this through money generated while you  sleep or while you are on vacation .  seriously , if you want more money than you can spend and you really , truly do not want to  work , then you are the type of person we are looking for .  if you would like to know why some people can do this . . . then simply send a blank email with  the words : \"\" i hate to work \"\" in the subject area to :  ihatetowork 99 @ yahoo . com  after doing so , you will be contacted in less than 24 hours and learn how to get the house  you want , the education for your children that you would like them to have , go on the  vacation you want , when you want all through money generated while you sleep or while you  are playing golf or while you are on vacation .  also , we do not want you to hear from us again if the idea of making all the money you want  is not exciting to you . . . therfore this is the first and last email you will get unless we  hear from you . . . so if you want to get rich with out working , then simply send a blank email  with the words : \"\" i hate to work \"\" in the subject area to :  ihatetowork 99 @ yahoo . com  thank you ,  \"\" the i hate to work \"\" associates  subject : i don ' t work . . . but i have a ton of money !  iqccjypkiducrbiixmqcuncw\",1\n\"Subject: good day friend  dear friend ,  my name is salim ibrahim a merchant in dubai , in  the u . a . e . i have been diagnosed with esophageal  cancer  it has defiled all forms of medical treatment , and  right now i have only about a few months to live ,  according to medical experts .  i have not particularly lived my life so well , as i  never really cared for anyone ( not even myself ) but  my business . though i am very rich , i was never  generous , i was always hostile to people and only focused on  my business as that was the only thing i cared for .  but now i regret all this as i now know that there is  more to life than just wanting to have  or make all the money in the world .  i believe when god gives me a second chance to come  to this world i would live my life a different way  from how i have lived it . now that god has called me , i  have willed and given most of my property and  assets to my immediate and extended family members as well  as a few close friends .  i want god to be merciful to me and accept my soul  so , i have decided to give also to charity  organizations , as i want this to be one of the last  good deeds i do on earth . so far , i have  distributed money to some charity organizations in the u . a . e ,  algeria and malaysia . now that my health has  deteriorated so badly , i cannot do this myself  anymore .  i once asked members of my family to close  one of my accounts and distribute the money which i  have there to charity organization in bulgaria and  pakistan , they refused and kept the money to  themselves . hence , i do not trust them anymore , as  they seem not to be contended with what i have left  for them .  the last of my money which no one knows of is the  huge cash deposit of ( twenty million five hundred  thousand u . s  dollars )  that i have with a finance / security  company abroad . i will want you to help me collect  this consignment and dispatched it to charity  organizations .  i have set aside 15 % for you .  god be with you .  salim ibrahim  note : please do get back to me via my private email  address at ibrahim _ salim @ ny . com  becuase i do not want my family to know anything  about this project , so i could give you the full details about  the funds .  please endeavour to get back to me via my specified  private  email address .  thanks for understanding . may the almighty allah  bless you  abondantly .  mail enviado desde el servicio webmail en el sitio | * btw * | call of duty  - . . /\",1\n\"Subject: leading in affordable healthcare . . . we care for you !  your trusted source for prescription medication .  everyone has his day and some days last longer than others .  a single death is a tragedy , a million deaths is a statistic .  each of us bears his own hell .  i have seen the future and it doesn ' t work .\",1\n\"Subject: major stock play  amnis systems , inc . ( otcbb : amnm )  contract announcements and huge newsletter coverage this week for amnm ! ! !  this thursday amnm will be profiled by some major newsletters . there will be huge volume and a strong  increase in price for several days . these are the same newsletters that profiled clks two weeks ago .  they brought clks from $ 1 . 50 to $ 4 . 35 in ten days . we know for certain that the same groups are going  to profile amnm starting on thursday .  we are very proud that we can share this information with you so that you can make a profit out of it .  it is highly advisable to take a position in amnm as soon as possible , today before the market closes ,  or tomorrow .  the stock is trading near its 52 week low , and will start moving up immediately . we believe the stock  could easiely reach $ 4 in less than a month .  good luck and watch amnm fly this week ! !\",1\n\"Subject: is your brother in need of a loan  homeowners - do you have less - than - perfect credit *  we ' ll quickly match you up with the b . est provider based on your needs .  whether its a home equity loan or a low - rate - re - financing  we specialize in less - than - perfect * credit .  we ' ll help you get the yes ! you deserve .  e ' n * o , u , g * h : http : / / morphism . lendingxid . com / r . php\",1\n\"Subject: turn your paypal account into a non - stop cash machine ! ! ( not a chain letter )  i am sending you this message because we have communicated in the past about business opportunities . i hope you will enjoy this one as much as i do .  turn your paypal account into a non - stop cash machine !  re - occurring 100 % commissions paid directly to your paypal account !  4 out of 10 visitors join instantly !  shouldn ' t you be next ?  did i mention that it ' s free for 15 days ?  simply go to : http : / / www . paypal - profits . com / a / turnkeyim /  best wishes ,  tony & donna scurlock  turnkeyim @ hotmail . com  the best home - based business on the planet ! !  we build your downline - - 1000 to 3500 members added per month ! !  free to join ! !  minimum monthly income ! !  get all the details at :  http : / / www . lifelong - income . com  this email message is sent in compliance with the the 106 th congress e - mail user protection act ( h . r . 1910 ) and the unsolicited commercial electronic mail act of 2000 ( h . r . 3113 ) . though our intention is not to communicate with you again if we receive no response from you , we do provide a valid vehicle for you to be removed from our email list . to be removed from our mailing list , simple reply to this message with remove in the subject line .  please keep in mind that complaints to our email provider and service provider , could make honoring remove requests impossible and you will be in violation of the above legislation . \",1\n\"Subject: new vacancies availablee  the leading internet job si barbituric te of australia www . seek . com . au presents unique part - time job proposal from international tour agency travel tour guide . that job position was called \"\" job of the y construe ear - 2004 \"\" and it is actual now because of hot summer and best prices for travel tour guide proposals in internet .  do you want to start a successful carrier right now without any entrance fees , without buying goods or involving other people ? do you want to start a successful carrier in financial sphere without economical education or special experience ? - so this glaucoma is a chance for you .  travel tour guide is happy offering you to apply for one of the open financial manager positions . this is a unique proposal because while examining you as applicant only your criminal records and c prudent redit history will be looked through . all we demand from you is to check your e - mail several times a day and to have a valid bank account or to open a new one .  the main option of financial manager ' s job is to receive funds on personal bank account with future remittance to travel tour guide . manager gets 5 % from every remittance . so every financial manager of travel tour guide has an opportunity of getting 80 administration 0 - 900 aud per week .  travel tour guide resumed that position because of regular bank wires last for 3 - 5 days . such long period prevents us from selling hot tours . besides the world leading payment systems like visa and mastercard decreased the limits for internet payments . the activity of financial managers in various regions became inauspicious a rescue for wide range of on - line companies which sells good up to bank limits .  travel tour guide has already got the network of financial managers working worldwide . we have got a high demand this sum effulgence mer in australia so our managers can not process all the transactions in time . so company resumed that vacancy in australia . please forward your letter toinfo @ travel - tour - guide . com and you will be sent the detailed job description and also you can ask for application form .  if you are not interested in this oppose job offer you can visit www . seek . com . au . a lot of vaca patina ncies from more than 75000 employers can be found there .\",1\n\"Subject: chheep medz  how to save o vacationist n your medlcations over 70 % .  pharms rahrah hop - successfull and proven way t lizzie o save your mone peripheral y .  unpretending v  a phonologic g  disorderly al  l internationalist u  counting l  r hutting a reliquary cl  i concierge sva bagger l  neoplasty m  andmanyother .  best prlces toddle .  worldwide shlpp vulcanite lng .  easy order teethe form .  t nominal otal confidentiaiity .  250 , 000 satisfied customer superette s .  order toda zygoma y and save !\",1\n\"Subject: fw : keep it under wraps , but this one works a treat ! 25031  thank you ,  your email address was obtained from a purchased  list , reference # 1580 - 17600 . if you wish to unsubscribe from this list , please  click here and enter your  name into the remove box . if you have previously  unsubscribed and are still receiving this message , you may email our  abuse control center ,  or call 1 - 888 - 763 - 2497 , or write us at : nospam , 6484 coral way ,  miami , fl , 33155 \"\" .  2002 web credit inc . all rights reserved .  - - - -  this sf . net email is sponsored by : thinkgeek  welcome to geek heaven .  http : / / thinkgeek . com / sf  spamassassin - sightings mailing list \",1\n\"Subject: i know your company !  lt is really hard to recollect a company : the  market is full of sugqestions and the information isoverwheiminq ; but a good  catchy logo , styllsh stationery and outstanding website  wiil make the task much easier .  we do not promise that having ordered a loqo your  company wili automaticaliy become a worid leader : it isquite clear that  without good products , effective business organization and practicable aim it  will be hotat nowadays market ; but we do promise that your marketing efforts  will become much more effective . here is the list of clear  benefits : creativeness : hand - made , original logos , specially done  to reflect your distinctive company image . convenience : logo and stationery  are provided in all formats ; easy - to - use content management system letsyou  change your website content and even its structure . promptness : you  will see logo drafts within three business days . affordability : your  marketing break - through shouldn ' t make gaps in your budget . 100 % satisfaction  guaranteed : we provide unlimited amount of changes with no extra fees for you to  be surethat you will love the result of this collaboration . have a look at our  portfolio _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: : : fast acting viagra  at  last ( fast acting viagra )  removal  instructions : you  have received this advertisement because you have opted in to receive  internet offers and specials through affiliated websites . if you do not wish  to receive further emails or have received the email in error you may opt - out of  our database here : remove me  please allow 24 hours for removal .  this  e - mail is sent in compliance with the information exchange promotion and privacy  protection act . section 50 marked as ' advertisement '  with the valid ' removal ' instruction .  [ \"\" : } h & * tgobk 5 nk ]\",1\n\"Subject: send real paper greeting cards on - line !  birthday  anniversary  get well soon  thinking of you  congratulations  sympathy  engagement  good luck  new baby  new home  love & romance  friendship  retirement  graduation  thank you  valentine ' s day ( feb )  passover ( apr )  easter ( apr )  mother ' s day ( may )  father ' s day ( jun )  rosh hashana ( sep )  halloween ( oct )  thanksgiving ( nov )  christmas ( dec )  happy new year ( dec )  hanukkah ( dec )  you received this email because you signed up at one of cards in advance ' s websites or you signed up with a party that has contracted with cards in advance . to unsubscribe from the cards in advance mailing list please reply to this email with \"\" remove \"\" as the subject .  http : / / xent . com / mailman / listinfo / fork\",1\n\"Subject: mail delivery failed : returning message to sender  this message was created automatically by mail delivery software .  a message that you sent could not be delivered to one or more of its  recipients . this is a permanent error . the following address ( es ) failed :  twistersoffice @ qwest . net  ( generated from info @ twisterburritos . com )  smtp error from remote mailer after end of data :  host mpls - cmx - 07 . inet . qwest . net [ 63 . 226 . 138 . 7 ] :  554 mail server permanently rejected message ( # 5 . 3 . 0 )  - - - - - - this is a copy of the message , including all the headers . - - - - - -  return - path :  received : from [ 217 . 96 . 160 . 142 ] ( helo = mailwisconsin . com )  by serverl 050 . gisol . com with smtp ( exim 4 . 50 )  id ldupmn - 0000 kc - jt  for info @ twisterburritos . com ; tue , 19 jul 2005 03 : 57 : 18 - 0700  received : from 205 . 214 . 42 . 66  ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ;  by mailwisconsin . com with http id j 87 gzo 24817159 ;  tue , 19 jul 2005 10 : 57 : 46 + 0000  message - id :  date : tue , 19 jul 2005 10 : 57 : 46 + 0000  subject : just to her . . .  from : \"\" barry castillo \"\"  to : info @ twisterburritos . com  user - agent : squirrelmail / 1 . 4 . 3 a  x - mailer : squirrelmail / 1 . 4 . 3 a  mime - version : 1 . 0  content - type : text / html ; charset = iso - 8859 - 1  content - transfer - encoding : 8 bit  x - priority : 3 ( normal )  importance : normal  soft viagra at $ 1 . 62 per dose  ready to boost your sex life ? positive ?  time to do it right now !  order soft viagra at incredibly low prices  starting at $ 1 . 99 per dose ! unbeiivable !\",1\n\"Subject: partnership .  from : zimmy mabo .  tel : 0031 - 623 - 787 - 971 .  e - mail : infoeurope @ lycos . com .  the nederlands .  soliciting for a business venture and partnership  before i proceed . am greatful to introduce my self , my name is mr zimmy mabo a zimbabwean . i was formaly a personal aid to president robert mugabe , due to my position and closeness with the president . i absconded with sum of twenty five million united states dollars ( us $ 25 , 000 , 000 ) which was part of the money meant for campaigning for president robert mugabe ' s re - election into office under zaunpe party . presently i have been able to move the funds diplomatically to a security company in the netherlands .  my request : i am looking for a trustworthy individual or firm to advice me in the right investment as well as to provide account where the funds will be lodge into . moreso , i am interested in buying propertys for residence as my family will be residing there in the near future .  commission and remuneration : as regards your commission and remuneration , i have decided to offer you 25 % and also 5 % for all your expenses ( telephone bills , travelling expenses , hotel bills and other expenses incurred ) .  note : i shall commit half of my own share of the total sum into a joint venture project preferably in the purchace of real estates or other profitable business venture , be rest assured that you stand no risk of any kind as the funds inquestion belong to me alone , as soon as i get your conset , i will furnish you with the details and contact of the security company where i have the funds deposited . i strongly believe that associating with you to embark on this and other business ventures will derive a huge success hereafter and it will be a long lasting business association .  yours truly ,  mr . zimmy mabo .  supercharge your e - mail with a 25 mb inbox , pop 3 access , no ads  and notaglines - - > lycos mail plus . \",1\n\"Subject: any med for your girl to be happy !  your girl is unsatisfied with your potency ? don ' t wait until she finds another men !  click here to choose from a great variety of llcensed love t @ bs ! best pri $ es , fast shippinq and quaranteed effect ! here you buy it riqht from warehouse !  the store is verlfied by bbb and approved by visa ! \",1\n\"Subject: [ ilug ] deal  subject :  urgent concern pls .  i am a serious officer with one of our main branches of citi bank ,  consumer banking department . although we didn ' t have previous correspondence till date .  however , based on the standard value place on everything about you , i believed we could discuss , analyze and execute this transaction . the transaction is thus :  i ' ve a wealthy client , an american citizen who had been residing in west africa for decades now , he operates a fix deposit account with us which i am his account officer , and also  receives standing orders for his chains of dividends share .  however , this client mr . david brown died as an out come of heart attack , and the funds in his current account has been claimed by his family , who had gone back finally to usa .  at the end of fiscal year , march 2001 , an accumulated share of us $ 12 . 360 m was transferred into his account from the stock exchange .  this was alone the instructions we issued to the stock house to dispose all his stocks .  now the funds has arrived , i needed an associate whom i would present as the inheritor of this fund i . e . associate partner of mr . david brown so as to receive this fund .  please note , his family has left since , and never know about this stocks in the exchange and the funds has subsequently matured in his fix deposit account , so i as the account officer  has prepared all documents for easy claims of this fund .  immediately , you reach me , i will furnish you with further details and then negotiate on the sharing ratio once you show your sincere involvement to go along with me . it will be of  need for you to furnish me also your personal phone and fax numbers for urgent  messages .  i am anxiously waiting to hear your consent .  be guided .  thanking you . yours sincerely ,  dave framo .  - -  irish linux users ' group : ilug @ linux . ie  http : / / www . linux . ie / mailman / listinfo / ilug for ( un ) subscription information .  list maintainer : listmaster @ linux . ie\",1\n\"Subject: how are ya ?  hey , how ya been ? long time no see .\",1\n\"Subject: men charset = windows - 1252 \"\" >  vigoral herbal sex enhancersdirect from  the lab to you ! we  are now offering 3 unique products to help increase your moments with  that special someone @ only  $ 24 . 99 each ! ! !  only  $ 24 . 99 ea !  only  $ 24 . 99 ea !  only  $ 24 . 99 ea !  men ,  increase your energy level maintain stronger erections !  edible ,  specially formulated lubricant for everyone !  women ,  heighten your sexual desire increase your sexual climax !  click  here to get it while it ' s hot !  you  are receiving this special offer because you have provided permission to  receive email communications regarding special online promotions or  offers . if you feel you have received this message in error , or wish to  be removed from our subscriber list , click  here and you will be removed within less than three business days .  thank you and sorry for any inconvenience . \",1\n\"Subject: find the lowest price for viagra online  big savings on brand name drugs .  duty is ours , results are god ' s .  ignorance of certain subjects is a great part of wisdom .  abundance of knowledge does not teach men to be wise .  life ? don ' t talk to me about life !\",1\n\"Subject: get debts off your back - time : 5 : 38 : 50 am  are creditors hassling you about your debts ?  we are a non - profit organization that can help you  reduce your monthly payments . our consultation is free . .  our debt counselors will work out an easy and convenient method of resolving your debts without bankruptcy .  contact us now and take a big load off your mind . - http : / / debt - freee . com / 9 i / ? sid = 106 ( scroll down for remove info )  to be removed from our database , click here - http : / / 195 . 235 . 97 . 200 / personal 9 / reserve 3 / remove . html\",1\n\"Subject: guaranteed best mortgage rate  the  best mortage rates  simple ,  easy and free  have  hundreds of lenders compete for your loan !  refinancing  new home loans  debt consolidation  second mortgage  home equity  click here to  jump - start  your plans for  the future ! ! !  dear  homeowner ,  interest  rates are at their lowest point in 40 years ! we help  you find the best rate for your situation by matching  your needs with hundreds of lenders !  home improvement , refinance ,  second mortgage , home equity loans , and more !  you ' re eligible even with less than perfect credit !  this service is 100 % free  to home owners and new home buyers without any obligation .  just fill out a quick , simple form and jump - start your  future plans today !  click here to begin  you are receiving this email because you registered  at one of juncan . net ' s partner sites , and agreed to receive  gifts and special offers that may be of interest to you .  if you do not want to receive special offers in the future ,  please click  here .  you are subscribed as : webmaster @ efi . ie  equal  housing opportunity . \",1\n\"Subject: medzz services  hello , welcome to ph brevet armonline s weatherforecast hop  - one of the leading oniine p underfoot harmaceutical shops  washday v  dreadnought g  a plucky l  leniency ll  l coronach a  r directorate a exception cl  i essential s costless va  synthetic um  andmanyother .  - save ove valuta r 50 %  - worldwide shlppl sorely ng  - total confident chieftain iaiity  - over 5 miiiion customers carminative in 130 countries  have lettish a nice day !\",1\n\"Subject: save your money buy getting this thing here  you have not tried cialls yet ?  than you cannot even imagine what it is like to be a real man in bed !  the thing is that a great errrectlon is provided for you exactiy when you want .  cialls has a iot of advantaqes over viaqra  - the effect iasts 36 hours !  - you are ready to start within just 10 minutes !  - you can mix it with aicohol ! we ship to any country !  get it riqht now ! . \",1\n\"Subject: jump start desire in both men and women 7893 vbvfl - 278 zkcc 8 - 17  spring blow out sale  great sex in the bottle  for men & women  guaranteed to restore the urge !  and enhance the pleasure and health !  two for price of one  exclude yourself , johnl 95615221 @ yahoo . com \",1\n\"Subject: better sex ! better relationship !  visit our pharmacy for convenient and cost - effective way of buying generic drugs .  storms make trees take deeper roots .  the smaller the mind the greater the conceit .  humor is also a way of saying something serious .  i tell you the past is a bucket of ashes .\",1\n\"Subject: line ?  usa today says \"\" the must have of the new millenium \"\" nbc ' s dateline says \"\" if you want a clear sound then this penny $ item can save you minutes in clarity \"\"  boost  your reception  on  any cell phone or cordless  300 % more clarity !  don ' t  buy another phone because of bad recepiton .  improve your communication instantly by  simply installing this small chip .  powerful reception booster  save 70 % . . . as seen on t . v . !  no  other product compares !  ultra - thin and transparent  installs in a second !  power of a 4 ft antenna !  no more dropped or interrupted calls  work any place your singal may be weak !  advertised on t . v . for over 3 times the price .  click  here now  \"\" . . . it was so easy to  install . . . \"\" \",1\n\"Subject: first - class prescripiton medications  burgundy acetylene antagonism martial craw  locate your prescription immediately !  a whole range of tablets ! take a look !  and the prices are unbeatable !  stop receiving promotional material now  andy cress crewman \",1\n\"Subject: 376 : unique - logos !  your business lacks visual identity ?  marketing efforts falling short ?  invisible among a sea of competitors ?  you ' re on the right track for a solution - keep reading . . .  our professional designers specialize in the creation of custom logos and business / corporate identities . our design needs to be seen only once to gain customer attention and recognition . with one of our unique , eye - catching mages you ' ll never have to introduce yourself twice !  we promise fast turnaround and 100 % customer satisfaction . choose from as any design ideas as necessary , select as many colors as you wish , order any modifications you like , and request any format . our prices are affordable for any size of business , and get this : there are no hidden fees .  follow the link below to browse our portfolio and check out our sweet deals .  wipe the \"\" in \"\" from \"\" invisible \"\" in just a few days - with us !  http : / / lo 42 . com . ntb - soft . biz  sincerely ,  juanita rosario\",1\n\"Subject: foreign business representative needed  mr . zhongxun zheng  anhui guofeng plastic industry co . , ltd  tian zhi road  hefei , anh 230088  china .  website : www . guofeng . com  dear sir / madam ,  i am mr . zhongxun zheng , board director , anhui guofeng  plastic industry .  we are a company who deal on plastics , candle holder ,  wind chime , photo frame , suncatcher , night  lamp , tiffany lamp and the other decorations . we export  into the united states , canada and parts of europe .  we require competent representatives who can help us  establish a medium of getting to our customers in the  usa , canada and europe as well as making payments  through you to us .  we will be glad and would be willing to give a good  percentage for this . please contact us for more  information on the above subject to your satisfaction  you will be given the opportunity to negotiate your  mode of which we will pay for your services as our  representative .  please , if interested , forward your contact  information , stating names , physical address ,  phone / fax numbers promptly .  regards ,  mr . zhongxun zheng  ceo / president .  mail sent from webmail service at php - nuke powered site  - http : / / yoursite . com\",1\n\"Subject: market internet access - no investment needed  market internet access  no investment needed  premium internet access for only $ 14 . 95 per month or less !  earn $ 1 per subscriber per month  go to :  http : / / new . isp . 50 megs . com /  1918 bqhx 5 - 227 cpamo 598 cjwr 2 - 912 ymjg 32 l 34\",1\n\"Subject: business joint venture  perhaps you already know , we help companies \"\" go public . \"\" the president of our company is a securities  and corporate lawyer .  please visit our site to receive information regarding how any company can go public . we have several  research reports available on this subject .  if you are aware of a company that may be suitable for this please let us know . we are happy for you to be  amply rewarded for your help .  the benefits of being a public company are many . it is a valuable and powerful tool in achieving your goals .  if you would like to learn more about \"\" going public \"\" please visit our site . you can also email us at  info @ tcigp . com for the quickest response as opposed to pressing reply .  sincerely ,  shaun anthony  http : / / www . tcigp . com  # 0651 cp  we also have newsletters for you .  p . s . if you prefer to not hear from us any more , email us with no longer in the subject .  takeoff @ tcigp . com  8721 santa monica blvd . # 359 los angeles , ca 90069\",1\n\"Subject: julie invites you to her free webcam  hi sweetness . it ' s julie cutey , from the personals service .  i ' ve been hearing all about you and i just had to say hi .  i want you to check out my website and read all about me too .  my southern accent will drive you wild  see the most intimate moments of my life  i can ' t wait to hear from you cutey . ttys ,  http : / / ownedboon . com / ju 43 /\",1\n\"Subject: your in - home source of health information  you remember the most magnificent sex ? wish to repeat ? take advantage of our offer !  the best richness is the richness of the soul .  words without actions are the assassins of idealism .  general principles should not be based on exceptional cases .\",1\n\"Subject: viagrra scores !  hello , welcome to pharmonlin puritanical e s profanation hop  - one of the buffet leading oniine pharmaceutical shops  atrocity v  northwards g  suicide al  stifling ll  l wamble a  r radiolocator ac desultory l  i picket sv sledding a  u planetstruck m  andmanyother .  - sav sierra e over 50 %  - worldwide shlpp exhale lng  - total confidenti gingery aiity  - over 5 miiiion cu dramatization stomers in 130 countries  have a selfrealization nice day !\",1\n\"Subject: save your money by getting an oem software !  need in software for your pc ? just visit our site , we might have what you need . . .  best regards ,  samira \",1\n\"Subject: sometimes , not always , i like the idea of a chick . . . with a horse . . .  freeky fucking shit !  this is the craziest this that i have ever seen ! !  you will not believe your eyes . . and best of all it is  free to join forever ! !  just go to the site and enter your email that is all ! hurry they will not be doing this forever ! ! !  very graphic material - mature audience only !  you must be at least 18 years old to enter !  this  email was sent to you because your email address is part of a targeted opt - in  list . you have received this email by either requesting more information on  one of our sites or someone may have used your email address . if you received  this email in error , please accept our apologies . if you do not wish to receive  further offers , please click below and enter your email to remove your email from  future offers .  click here to remove  anti - spam  policy disclaimer : under bill s . 1618 title iii passed by the 105 th u . s . congress ,  mail cannot be considered spam as long as we include contact information  and a remove link for removal from this mailing list . if this e - mail is unsolicited ,  please accept our apologies . per the proposed h . r . 3113 unsolicited commercial  electronic mail act of 2000 , further transmissions to you by the sender may  be stopped at no cost to you ! \",1\n\"Subject: confirm results of your refina [ n ] ce application  we tried to contact you last week about refinancing your home at a lower rate .  i would like to inform you know that you have been pre - approved .  here are the results :  * account id : [ 933 - 327 ]  * negotiable amount : $ 127 , 931 to $ 651 , 433  * rate : 3 . 52 % - 5 . 31 %  please fill out this quick form and we will have a broker contact you as soon as possible .  http : / / www . pvrefi . net / ? id = j 22  regards ,  alejandra read  senior account manager  settar national lenders , llc .  database deletion :  www . pvrefi . net / book . php \",1\n\"Subject: look to our shop for all your prescription needs .  10 minutes before sex , lasts for 24 - 36 hours  great minds think alike , and fools seldom differ .  models are to be used , not believed .  it is light grief that can take counsel .  a wide screen just makes a bad film twice as bad .\",1\n\"Subject: a new era of online medical care .  now you can have sex when you want again and again !  whenever you have an efficient government you have a dictatorship .  i sing all kinds .  to follow by faith alone is to follow blindly .\",1\n\"Subject: greeat medz  how to save on your medlcations over 70 % anglistics .  pharmsh rehouse op - successfull and proven wa awoken y to save your mone feudality y .  influent v  a bankrupt g  a discontinuance l  l reliance u  paydesk l  powwow ra televisional cl  provided isva pyramid l  elementary m  andmanyother .  best pr sympathetic lces .  worldwide shlpplng seventh .  easy o elliptical rder form .  t cervine otal confidentiaiity .  25 monstrous 0 , 000 satisfied customers .  order today and s scarecrow ave !\",1\n\"Subject: rready to go in 15 minutes  hello , welcome to p attain harmonline sho vaccination p  - one of the leading oniine pharmaceutical partsong shops  pother v  bodiless g  a billion l  l aquarius l  augmentative la  r labourist ac quadrigae l  penitence isv unspent a  cynicism um  andmanyother .  - sav rubberized e over 50 %  - worldwide leisure shlpplng  - total conf wisdom identiaiity  - over 5 miiiion customers in 13 concrescence 0 countries  have a nice votaress day !\",1\n\"Subject: re : nawty locals in your area pdi  s - e - x - y local singles inside !  payne is cobble desperado but makeup not divergent carven .  here theseus france may cackle and eastman hecate ,  opera not quite .  iwantout \",1\n\"Subject: a chance to get new logo now  working on your company ' s image ? start with a  visual identity a key to the first good impression . we are here to  help you ! we ' ll take part in buiiding a positive visual imaqe  of your company by creatinq an outstanding iogo , presentabie stationery  items and professionai website . these marketing tools wiii significantiy  contributeto success of your business . take a iook at our work sampies , hot deal packages and  see what we have to offer . we work for you !  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: free hgh - look 10 years younger in 3 weeks ! ! ! hmuprzd  free 30 day supply of hgh 1000 :  look younger and lose weight in 3 weeks ! ! ! !  as seen on nbc , cbs , cnn , and oprah ! the health discovery  that actually reverses aging while burning fat , without  dieting or exercise ! this proven discovery has been reported  on by the new england journal of medicine . forget aging and  dieting forever ! and it ' s guaranteed !  would you like to lose weight while you sleep ?  no dieting !  no hunger pains !  no cravings !  no strenuous exercise !  change your life forever !  100 % guaranteed  aol users click  here  to be removed , reply to this email with remove in the subject line .\",1\n\"Subject: new love tabs shop .  visit our llcensed online dragstore for the best inexpensive love drags ! viagra , ciaiis , softtabs and many other love enhancers aii in one !  operative support , fast shipping , secure payment processing and complete confidentiaiity !  ciick here to find your verlfied by bbb and approved by visa love pil 1 ! \",1\n\"Subject: don ' t be a fuddy - duddy . . . use the software everyone ' s using . . .  send the love home with an online photo album  we was robbed !  how could i lose to such an idiot ?\",1\n\"Subject: quarterly statement notice  security center  we recently noticed an attempt to log in to your paypal account from a  foreign ip address and we have reason to belive that your account was used  by a third party without your authorization .  if you recently accessed your account while traveling , the unusual log in attempts  may have been initiated by you .  therefore , if you are the rightful account holder , click on the link below to log into your account and follow the instructions . https : / / www . paypal . com / cgi - bin / webscr ? cmd = _ login - run  if you choose to ignore our request , you leave us no choice but to temporarily suspend  your account .  if you received this notice and you are not the authorized account  holder , please be aware that it is in violation of paypal policy to represent  oneself as another paypal user . such action may also be in violation of  local , national , and / or international law . paypal is committed to assist  law enforcement with any inquires related to attempts to misappropriate  personal information with the intent to commit fraud or theft .  information will be provided at the request of law enforcement agencies to  ensure that impersonators are prosecuted to the fullest extent of the law .  thank you for your patience as we work together to protect your account .  sincerely ,  paypal account review department  paypal , an ebay company  * please do not respond to this e - mail as your reply will not be received . \",1\n\"Subject: hello  from = seko moshood mobutu  tel = 234 - 1 - 776 - 2397  dear friend  i am the first son of the late mobutu sese seko , the  former  president  of the congo republic . i am presently under  protective custody  in nigeria  as  a political refugee . i got your contact over the internet during my  search for a  stranger  that  can cooperate with me in this mutual transaction . i took this option because my family friends and associates cpuld not be trusted any more since they contributed to my present predicament .  i want you to note that this business will benefit  both of us .  however ,  you must confirm your ability to handle this because  it involves  a large  amount of money . the money ( 50 million us dollars is  my share of  my  father ' s  estate . i boxed and shipped the money to a security  company  abroad at the  peak of the war / political crisis that rocked my  country few  years ago . now  the crisis has ended and i need a trustworthy person  like you to  proceed to  the place of the security company in order to clear  the fund and  invest on  my behalf as i dont want my name to be used for now .  note that i will send to you the relevant documents  that will  enable  you take possesion of the the fund for onward  investment for our  mutual  benefit . all i need from you is as follows :  1 . a letter of committment ( duely signed ) that you  will keep the  transaction strictly confidential .  2 . your confirmation of your ability to handle this .  3 . your international identity or driving licence  number for  identification  to the security company .  4 . your telephone and fax numbers for communication .  5 . your full permanent address .  as soon as i get the above information from you , i  will disclose  to  you the name and the country of the security company .  i will  forward your  name and particulars to the security company to enable  them contact you  accordingly . i will also send to you a letter of  authority to  enable you  clear the fund on my behalf . note that this is a very  safe  transaction as  this money is my share of my father ' sestate .  i am waiting for your response to enable us proceed .  regards ,  moshood seko mobutu\",1\n\"Subject: unique logos / customer recognition ( 74436558 )  140  our art team creates a custom logo for you , based on your needs . years of experience have taught us how to create a logo that makes a statement that is unique to you .  in a pr ofessional manner we learn about your image and how you would like the world to perceive you and your company . with this information we then create a logo that is not only unique but reflects the purpose of you and your company .  for value and a logo that reflects your image , take a few minutes and visit try logos !  http : / / bootstrapped . biz . fresh - cds . biz  sincerely ,  logo design team  assume demonstrate alibi\",1\n\"Subject: the volleyball confidence guide  the players ' guide to competitive confidence  dominate the competition . . . mentally .  winningstate - volleyball transforms doubtful players into confident competitors .  go to winningstate . com  players learn how to successfully battle the natural ups - and - downs of insecurity and self - doubt ; they learn how to focus their minds on believing in their physical abilities ; ultimately , they  learn how to perform under pressure .  ? steve knight ( the author )  special priority packs :  ( priority 1 pack ) total price : $ 25 . 90  ( priority 3 pack ) total price : $ 59 . 90  \"\" the best confidence book we have ever read ! this is a must  read if you want to be a cut above the average player . \"\"  high school sports news \",1\n\"Subject: double coverage amount , same payment . . . uyz  save up to  75 % on your term life  insurance !  compare rates from top insurance companies around  the country  in our life and times , it ' s important to plan for  your family ' s future , while  being comfortable financially . choose the right  life insurance policy today .  click the link below to compare the lowest rates  and save up to 75 %  compare your coverage  you ' ll be able to compare rates and get a free  application in less than a minute !  * get your free instant quotes . . .  * compare the lowest prices , then . . .  * select a company and apply online .  get a free quote now !  you can ' t predict the future , but you can always  prepare for it .  referral - agent\",1\n\"Subject: hot stock info : drgv announces another press release  a $ 3 , 800 investment could be worth $ 50 , 000 in a short period of time . read more about this amazing investment opportunity and how a small investment could mean huge gains for you !  there  is no doubt that china stocks , which are new to u . s . stock markets , are destined to blast off . it happens time and time and time  again . thats why informed investors like warren buffett are getting  rich on china stocks . the market is enormous and now its your  turn . the upside potential for drgv is huge . with potential revenues of nearly  $ 30 million us in the coming 12 months , dragon venture is a real player .  everything about this superbly run company says its going to be another big  chinese winner .  warren buffett  said u . s . stocks are too expensive so he poured a chunk of his money into china . everyone knows what happens when mr . buffett gets into a market , it usually explodes !  here is why we are placing a  target price of $ 1 . 00 per share ( investment opinion )  dragon venture ( otcpk : drgv ) has just recently gone public in the us .  analysts predict an enormous investment opportunity within the china telecom industry .  mobile marketing is growing in popularity , in china , emarketer reports that 67 % of mobile phone users have received sms messages from advertisers , 39 % in asia , 36 % in europe and only 8 % in us .  management has forecasted revenue growth to $ 30 million in 2006 and $ 50 million in 2007 .  short messaging services ( sms ) is a strong telecom niche . this is an asian phenomenon ! !  according to the ministry of information technology of china , chinese sms usage accounts for one - third of the world ' s traffic !  china has the potential to be the largest telecommunications market in the world , said matthew j . flanigan , u . s . telecommunications industry president .  drgv won ' t be selling at $ 0 . 055 a share for long . within days , the buzz about this company will spread on the street . the stock is ready to move up for a breakout to $ . 50 to $ 1 per share . drgv is a must buy for any micro - cap investors . we view drgv as an excellent growth company with exceptional potential for capital appreciation over both the short term and the long term . this is essentially investing in the world ' s largest and fastest growing market . bottom line : drgv is a penny stock with multi - dollar potential trading today for about $ 0 . 055 / share . we are targeting the stock to trade in the range of $ 1 a share . chances like these are few and far between and the buzz on the street is that drgv is a buy ! who knows when you ' ll have another chance to turn such a huge profit again ? smart investors strike when the iron ' s hot and with drgv , it ' s sizzling  investor alert specializes in investment research in china . we are not registered investment advisor or broker / dealer . investors should not rely solely on the information contained in this report . rather , investors should use the information contained in this report as a starting point for doing additional independent research on the featured companies . factual statements in this report are made as of the date stated and are subject to change without notice . nothing in this report shall constitute a representation or warranty that there has been no change in the affairs of the company since the date of our profile of the company . investor alert and / or its officers , directors , or affiliates have received compensation of $ 5 , 000 from a third party for the dissemination of information on the companies which are the subject of profiles and / or may have , from time to time , a position in the securities with the intent to sell the securities mentioned herein .  current press release  dragon venture signs partnership agreement with shanghai runyuan logistics company , ltd . to form a joint venture  monday july 18 , 7 : 46 am et ft . lauderdale , fla . , july 18 , 2005 ( primezone ) - - dragon venture ( other otc : drgv . pk - news ) , a holding company of high - tech companies in china , announced today that shanghai cnnest technology development company , limited ( ` ` cnnest ' ' , http : / / www . cnnest . com ) , a subsidiary of drgv , recently signed a partnership agreement with shanghai runyuan logistics company , limited ( ` ` runyuan ' ' ) to form a joint venture .  under the agreement , cnnest and runyuan will establish a joint venture with shanghai xintong technology company , limited . this joint venture is dedicated to developing mobile internet solutions for logistics for the trucking industry in china . as a leading company in the field of mobile internet solutions and applications in china , cnnest will be responsible for developing mobile internet applications for logistics involving the trucking and freight industries , and seek to have the applications available through both china mobile and china unicom . in return , cnnest will have 25 percent ownership of the new joint venture . runyuan will provide all the funding for this joint venture including cost associated with the development and refinement of the applications , and in turn will have 75 percent ownership of the joint venture .  hidy cheng , vice president of dragon venture and general manager of cnnest , commented , ` ` we are very excited about this joint venture , because we believe the potential of this solution in the marketplace could be tremendous . shanghai runyuan is a leading company in the logistics industry in china . they have successful business operations , and an excellent reputation in china . the partnerships will provide us a great opportunity to turn our research and development into a commercial application for the logistics industry . the applications will provide the logistics industry a very efficient system in which information for transportation can be accessed through a cellular phone , anywhere . our revenues will be generated from an annual fee of the use of the system for each account and usage fee of the system . we believe this partnership will generate substantial income for the company . ' '  about dragon venture  dragon venture ( ` ` dragon ' ' ) is doing business in china through its subsidiaries . dragon was established to serve as a conduit between chinese high - growth companies and western investors . the current focus of dragon is on the development of wireless 3 g - based applications and business solutions . two companies that dragon has acquired are among the leading providers of mobile internet applications and business solutions in china . as china emerges as a growing force on the global stage , dragon ' s professionals will provide invaluable services for western investors seeking to gain access to the chinese high - tech economy . in addition , dragon functions as an incubator of high - tech companies in china , offering support in the critical functions of general business consulting , formation of joint ventures , access of capital , merger and acquisition , business valuation , and revenue growth strategies . dragon will develop a portfolio of high - tech companies operating in china . our focus will be on innovative technological applications , which are poised to alter the competitive landscape of the industry . in addition , the company acquires and invests in innovative technology companies in china or forms joint ventures with both american and chinese companies , focusing on emerging technology industries including telecommunication , information technology , wireless applications , and other high - tech industries . for more information about dragon venture , please visit http : / / www . dragonventure . net .  safe harbor statement  certain statements set forth in this press release constitute ` ` forward - looking statements ' ' . forward - looking statements include , without limitation , any statement that may predict , forecast , indicate , or imply future results , performance or achievements , and may contain the words ` ` estimate ' ' , ` ` project ' ' , ` ` intend ' ' , ` ` forecast ' ' , ` ` anticipate ' ' , ` ` plan ' ' , ` ` planning ' ' , ` ` expect ' ' , ` ` believe ' ' , ` ` will likely ' ' , ` ` should ' ' , ` ` could ' ' , ` ` would ' ' , ` ` may ' ' or words or expressions of similar meaning . such statements are not guarantees of future performance and are subject to risks and uncertainties that could cause the company ' s actual results and financial position to differ materially from those included within the forward - looking statements . forward - looking statements involve risks and uncertainties , including those relating to the company ' s ability to grow its business . actual results may differ materially from the results predicted and reported results should not be considered as an indication of future performance . the potential risks and uncertainties include , among others , the company ' s limited operating history , the limited financial resources , domestic or global economic conditions - - especially those relating to china , activities of competitors and the presence of new or additional competition , and changes in federal or state laws , restrictions and regulations on doing business in a foreign country , in particular china , and conditions of equity markets .  dragon venture 335 guoding rd . building 2 , ste . 2009 shanghai , china 200081 this e - mail message is an advertisement and / or solicitation . \",1\n\"Subject: now you can learn the most pleasant moments of sex !  you can decide right now to develop the same libido .  [ what is the definition of guts ? ] grace under pressure .  every man ' s life is a fairy - tale written by god ' s fingers .  et tu , brute !\",1\n\"Subject: failure notice  hi . this is the qmail - send program at mail . unl . edu . ar .  i ' m afraid i wasn ' t able to deliver your message to the following addresses .  this is a permanent error ; i ' ve given up . sorry it didn ' t work out .  :  168 . 96 . 132 . 208 does not like recipient .  remote host said : 550 : recipient address rejected : user unknown in local recipient table  giving up on 168 . 96 . 132 . 208 .  - - - below this line is a copy of the message .  return - path :  received : ( qmail 26307 invoked by uid 1010 ) ; 19 jul 2005 10 : 58 : 08 - 0000  received : from projecthoneypot @ projecthoneypot . org by mail by uid 1002 with qmail - scanner - 1 . 22  ( sophie : 3 . 04 / 2 . 19 / 3 . 80 . clear : rc : 0 ( 221 . 184 . 168 . 155 ) : .  processed in 0 . 816554 secs ) ; 19 jul 2005 10 : 58 : 08 - 0000  received : from pl 155 - ipbfl 3 kyoto . kyoto . ocn . ne . jp ( helo mailwisconsin . com ) ( 221 . 184 . 168 . 155 )  by mail . unl . edu . ar with smtp ; 19 jul 2005 10 : 58 : 07 - 0000  received : from 205 . 214 . 42 . 66  ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ;  by mailwisconsin . com with http id j 87 gzo 38190577 ;  tue , 19 jul 2005 10 : 57 : 46 + 0000  message - id :  date : tue , 19 jul 2005 10 : 57 : 46 + 0000  subject : just to her . . .  from : \"\" barry castillo \"\"  to : distinctmartin @ bugs . unl . edu . ar  user - agent : squirrelmail / 1 . 4 . 3 a  x - mailer : squirrelmail / 1 . 4 . 3 a  mime - version : 1 . 0  content - type : text / html ; charset = iso - 8859 - 1  content - transfer - encoding : 8 bit  x - priority : 3 ( normal )  importance : normal  soft viagra at $ 1 . 62 per dose  ready to boost your sex life ? positive ?  time to do it right now !  order soft viagra at incredibly low prices  startinq at $ 1 . 99 per dose ! unbelivable !\",1\n\"Subject: lock in your clients ' gains !  a winning combination : the market  choice iiism from north american  company for life health insurance and safe harbor financial !  choose from up to five different  index accounts : sp 500 , djiasm ,  sp midcap 400 , russell 2000 ,  nasdaq - 1001  or , choose the security of the fixed account !  16 % commission * 80 % participation rate * *  no risk of loss from market declines !  your clients will love the security of this outstanding product !  annual transfer options available :  change premium allocation after each contract anniversary .  two different annual reset crediting  methods : daily average or annual point - to - point ( no average ) .  or  please fill out the form below for more information  name :  e - mail :  phone :  city :  state :  for agent use only . not intended for  consumer solicitation purposes . the market choice iii ( sm ) annuity  is issued on form series lcl 15 ( group ) and lsl 15 a ( individual ) , and  state variations by north american company for life and health insurance ,  chicago , illinois . this product and its features may not be available  in all states . dow jones , dow jones industrial average  ( sm ) and djia ( sm ) are service marks of dow jones  and company , inc . and have been licensed for use for certain purposes  by north american company . russell 2000 index is a trademark of frank  russell company and has been licensed for use by north american company .  standard poor ' s , sp ,  sp 500 , standard poor ' s 500 index ,  sp midcap 400 index and standard  poor ' s midcap 400 index are trademarks of the mcgraw - hill  companies , inc . and have been licensed for use by north american company .  the nasdaq - 100 , nasdaq - 100 index and nasdaq are registered  marks of the nasdaq stock market inc . ( which with its affiliates are  the corporations ) and are licensed for use by north american  company . the market choice iii ( sm ) annuities are not issued , endorsed ,  sold or promoted by the corporations or any of the indexes listed  above . the corporations make no warranties and bear no liability with  respect to the market choice iii ( sm ) . * commissions are based upon  rates as of 5 / 1 / 02 . commissions may vary by state and are subject  to change . * * participation rates are based upon rates as of 7 / 3 / 02  and are subject to change . participation rate is based on the sp  500 and djia ( sm ) and the daily average crediting method . call  safe harbor for additional details on other indexes and participation  rates . lnasdaq - 100 is available on the point - to - point  index crediting option only . 2 contracting bonus will be  paid once contracting with safe harbor is complete and formal .  ndf - 8079 z - adii - 421 prt . 7 / 02 exp . 9 / 15 / 2002  we don ' t want anyone  to receive our mailings who does not wish to . this is professional communication  sent to insurance professionals . to be removed from this mailing list ,  do not reply to this message . instead , go here :  http : / / www . insurancemail . net  legal notice \",1\n\"Subject: more then 70 great pornstars sex movles ! dowlnoad all our collection ! - x 646  cum witness the most extreme sexual achievements ever to be found on the net ! we have tons of exclusive never before seen pics and videos of your fav pornstars doing exactly what you dream to see !  do you think you have what it takes to beat one of our records ? we welcome all member entries , cum see if you have what it takes to earn a spot in our record library !  http : / / uxm 5 . info . lediesnight . biz /  - - - - - - - - - - - - - -  checkbook dahomey canaveral belgrade  affiliate carven armillaria baneberry  brown brasilia collier demarcate\",1\n\"Subject: more then 70 great pornstars sex movles ! dowlnoad all our collection ! - x 853  come explore the world ' s largest adult studio ! see all the biggest names in porn in exclusive hardcore xxx movies . vivid got the hottest pornstars !  http : / / armful . biz . babylom . info /  - - - - - - - - - - - - - -  boatyard caption configure connecticut  despise catskill brady churchwoman  cannon corpora bahama byzantine\",1\n\"Subject: account zzzz @ example . com  new account for : zzzz @ example . com  # #  # adult club #  # offers free membership #  # #  # 3 of the best adult sites #  # on the internet for absolutely free #  # #  > > > > you have instant access to all 3 sites now  > > > > user name : zzzz @ example . com  > > > > password : 1534  - - - - - - - - - - - - - - - - - - - -  news 09 / 24 / 02  with just over 4 . 8 million members that signed up for free , last month there were 921 , 947 new  members . are you one of them yet ? ? ?  - - - - - - - - - - - - - - - - - - - -  our membership faq  q . why are you offering free access to 3 adult membership sites for free ?  a . i have advertisers that pay me for ad space so you don ' t have to pay for membership .  q . is it true my membership is for life ?  a . absolutely you ' ll never have to pay a cent the advertisers do .  q . can i give my account to my friends and family ?  a . yes , as long they are over the age of 18 .  q . do i have to sign up for all 3 membership sites ?  a . no just one to get access to all of them .  q . how do i get started ?  a . click on one of the following links below to become a member .  > > > > fill in the required info and they won ' t charge you for the free  membership !  > > > > if you don ' t believe us , just read their terms and conditions .  - - - - - - - - - - - - - - - - - - - -  # 3 . > lucky amateur wives  you won ' t believe what we take these wives into doing . . . free vip membership ! !  # 2 . > new ! just added today : cum drinkers  950 , 00 pics , 90 , 000 movies , live sex shows . . . free lifetime membership ! !  # 1 . > filthy teen sluts  the ultimate xxx teen site . . . free vip membership ! !  - - - - - - - - - - - - - - - - - - - -  jennifer simpson , miami , fl  your free lifetime membership has entertained my boyffriend and i for the last two years ! your  adult sites are the best on the net !  joe morgan manhattan , ny  your live sex shows and live sex cams are unbelievable . the best part about your porn sites , is  that they ' re absolutely free !  - - - - - - - - - - - - - - - - - - - -  disclaimer :  we are strongly against sending unsolicited emails to those who do not wish to receive our special  mailings . you have opted in to one or more of our affiliate sites requesting to be notified of any  special offers we may run from time to time . we also have attained the services of an independent  3 rd party to overlook list management and removal services . this is not unsolicited email . if you  do not wish to receive further mailings , please go to http : / / greenzer . com / remove . php to be removed  from the list . please accept our apologies if you have been sent this email in error . we honor all  removal requests .  thank you zzzz @ example . com  oldhtlheuhcclco\",1\n\"Subject: fw : [ 5 ]  how have you been ?  i have very exciting news !  we finally were able to save an extra $ 450 a month .  we reflnanced our mortgage with a 3 . 75 % lower rate , and closing was fast !  the application was free and we got several low rate quotes within days  ciick on this link and check it out !  time to save .  if you prefer to be left out of this amazing offer going here will help you to do so .\",1\n\"Subject: email list - 100 million addresses $ 79  jane ,  here is the information you requested  your email address : webmaster @ efi . ie  targeted email address cd - rom  100 million + addresses  more than 34 categories such as :  = multi level marketers  = opportunity seekers  = telephone area code  = country , city , state , etc . .  = people running home businesses or interested in home businesses .  = travel & vacations  = opt - in  = people interested in investments  = people or businesses who spent more than $ 1000 on the web in thelast 2 months  and many more  * contains us & international emails  * everything on this disk is in text file format and fully exportable .  * the cd is as easy to use as browsing your c drive in explorer .  how this amazing directory was compiled :  * virtually every other email directory on the internet was taken and put it through an extensive email verification process thus eliminating all the dead addressess .  * special software spiders through the web searching websites , newsgroups and many other online databases with given keywords like area codes , industries , city names etc . . to find millions of fresh new addresses every week .  this month only $ 79 ( regular price $ 199 )  do not send a reply to this email address . to place an order , read instructions below :  to order by credit card ( visa , mastercard or american express )  - simply complete the order form below and fax it back to ( 44 3 ) 65 9 - 0 73 0  make sure that we have your email address so that we can send you a reciept for your transaction .  to order by mail :  print the form below and send it together with a money order payable to ft international for the balance to :  5863 le s lie st .  suite 408  t oronto , ont a rio  canada  or d e r f or m :  please print clearly  full name : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  company name : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  email address : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ * required field  shipping address : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  city : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ state / province : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  shipping options : [ ] $ 5 regular mail ( 1 - 2 weeks ) [ ] $ 12 priority mail ( 2 - 4 business days ) [ ] $ 25 fedex ( overnight )  $ 79 . 00 usd + shipping charge $ _ _ _ _ _ _ _ _ us = total : $ _ _ _ _ _ _ _ _ _ usd  [ ] credit card order [ ] mail order  credit card orders fax this order form back to 1 - 44 3 - 6 59 - 07 3 0 )  card # : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  expiry date : _ _ _ _ _ _ _ _ _ _ _ _ _ _  type of card [ ] visa [ ] mastercard [ ] american express  name on card : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  billing address : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ zip / postal : _ _ _ _ _ _ _ _ _ _ _ _  city : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ state / province : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ country : _ _ _ _ _ _ _ _ _ _ _ _ _  cardholder signature : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  please note that ft i n t e rn a ti o n al will appear on your statement .  for any questions please feel free to call us at 1 - 4 1 6 - 2 3 6 - 89 8 1  to be removed from our database please send an email to ftremovals 32663 _ 372 @ yahoo . com\",1\n\"Subject: are you ready to get it ?  hello !  viagra is the # 1 med to struggle with mens ' erectile dysfunction .  like one jokes sais , it is strong enough for a man , but made for a woman ; - )  orderinq viagra oniine is a very convinient , fast and secure way !  miilions of peopie do it daiiy to save their privacy and money  order here . . . \",1\n\"Subject: . + . 80 to 95 % below wholesale 2306  80 to 95 %  below wholesale  new , and in quantities you need  a single unit , a pallet ,  or a truckload  1 . are you still looking for a very real business that can provide you and  your family with the lifestyle you desire ? or , just a second income in your  spare time ?  2 . would you invest $ 66 . 50 ( a 33 % discount off of our regular price of  $ 99 . 95 during this limited time promotion . ) in a business that could make you  financially secure by buying at up to 95 %  below wholesale and selling at 100 to 500 % + over your cost ?  if so , read on :  this is not a get rich quick scheme , but , it is a way for you to get into  a business with a minimal investment and , may be your first step towards a  rewarding first , or second income . for the longest time , only those , who were  able to make large investments were able to take advantage of this type of a  business . we have made it possible for everyone to do it , and at a price  everyone can afford .  corporate america has conditioned us to believe that security comes from  employment . yet layoffs are hitting an all time high , major corporations are  failing and we hope to never become the victims of this downsizing , career  burn out , illness or injury .  there was a time , when finding another job was not a problem , but today ,  the frightening reality for a lot of people is that the  plastic in their wallets determines the quality of their lives .  the hard facts show that our economy has moved from the industrial age  into the information , service and retail age . no longer can you depend on the  corporation to provide your family with job security . we all need a backup  plan .  if you are tired of living from paycheck to paycheck , and are willing to  work a few hours per week , than this may be for you .  please read further :  we will show you how you can buy , new , not out of date , products for pennies  on the wholesale dollar . we will not just send a  list , or catalog of where you can buy , but actual point and click database  with hyperlinks to suppliers?ffff 92 websites and specials pages , with email  addresses , phone and fax numbers , and their current hot  listings . unlike others?ffff 92 distribution businesses where you are provided with  wholesale catalogs , out of date cd ' s , or lists of government auctions that  sell jeeps for $ 10 , ( which are a myth ) , we provide an unlimited virtual  database of items at up to 95 % below wholesale from liquidators , not  wholesalers , that is up - dated on a weekly / daily basis by the suppliers . and  the products are available for immediate purchase and shipping to you , and  guarantee our product for 30 days with a full refund guarantee if it is not  what we say .  this database is designed for the individual or a small business . although  there are suppliers in this database selling in large quantities , most are  selected for their flexability in being willing sell in smaller  quantities at great savings ( 80 to 95 % below wholesale )  you will be able to buy such items as rca stereos that retail for $ 250 . 00 +  for $ 10 to $ 20 . 00 , new boom boxes for $ 12 . 50 each , palm pilots for $ 39 . 00 , cell  phone antenna boosters that sell on tv for $ 19 . 95 - - for . 16 cents , perfect  pancake makers as seen on tv for $ 19 . 95 , for $ 6 . 50 , cd?ffff 92 s for $ 0 . 75 each ,  pentium computers for as little as $ 11 . 00 , or computer software that retails  up to $ 74 . 99 for $ 0 . 50 each .  if you would like to see some sample listings and featured specials , please  email us at moreof 80 to 95 @ themail . com  you may purchase this database :  by credit card : at paypal to the account of datapaid 2000 @ yahoo . com  by phone with credit card at 502 - 741 - 8154  check by fax to :  specialty products 502 - 244 - 1373  ( just write a check and fax it to the above number , no need to mail )  ( please include email address for the transmission of database . )  by mail :  specialty products  210 dorshire court  louisville , ky 40245  ( please remember to include a valid email address for the transmission of  the database )  for your protection , we provide a 30 day , 100 %  money back , satisfaction guarantee , if we have misrepresented our  product .  what do you get for your $ 66 . 50 investment :  during promotion a , fully executable , database ( within 24 hours , or less ) of  100 ?ffff 92 s of suppliers with hyperlinks to their websites , fax and phone numbers  and a description of what type of product they handle and current product  specials .  and , on - going telephone support during normal business hours .  since this is such a fast changing business , with new products being added  and deleted on a weekly or even a daily basis , all data will be provided  within 24 hours of receipt of payment via email file transfer . ( no waiting or  shipping and handling costs ) the $ 66 . 50 is your total  one time cost . ( during promotion )  this database is for individuals who recognize an opportunity to make a  substantial income . keep in mind , everyone likes a bargain , and even more so  when the economy is down . so , even if you just want to buy for your own use , a  single purchase could repay your initial investment . and , remember we provide  a 30 day , full refund satisfaction guarantee .  we know that this has been a brief description , and you may want  additional information . you may email us at moreof 80 to 95 @ themail . com  for additional information and a sample of listings currently being offered by  various suppliers . ( if you give us some idea of what  types of products interest you , we will try to include some sample listings of  those products . )  we look forward to being of service in your new venture .  specialty products \",1\n\"Subject: hey man , stop throwing away your money  penis enlargement patch that works ! ! !  http : / / www . siratu . com / ss /  beauty holds more worth than gold .  glory built on selfish principles is shame and guilt .  moderation in all things .  people who throw kisses are hopelessly lazy .  we must not let our rulers load us with perpetual debt .\",1\n\"Subject: find where to buy online cheap viagra .  we provide top class world wide lifestyle medications , at incredible prices .  it ' s only after we ' ve lost everything that we ' re free to do anything .  peace visits not the guilty mind . ( nemo malus felix )  do good and don ' t worry to whom .\",1\n\"Subject: failure notice  hi . this is the qmail - send program at maill 9 b . gl 9 . rapidsite . net .  i ' m afraid i wasn ' t able to deliver your message to the following addresses .  this is a permanent error ; i ' ve given up . sorry it didn ' t work out .  :  64 . 18 . 7 . 10 failed after i sent the message .  remote host said : 571 message refused  - - - below this line is a copy of the message .  return - path :  received : from mxl 1 . stngvaol . us . mxservers . net ( 204 . 202 . 242 . 100 )  by maill 9 b . gl 9 . rapidsite . net ( rs ver 1 . 0 . 95 vs ) with smtp id 1 - 017201846  for ; tue , 19 jul 2005 07 : 00 : 50 - 0400 ( edt )  received : from unknown [ 211 . 168 . 67 . 248 ] ( helo mailwisconsin . com )  by mxl 1 . stngvaol . us . mxservers . net ( mxl _ mta - 1 . 3 . 8 - 10 p 4 ) with smtp id 06 ddcd 24 . 14068 . 061 . mxl 1 . stngvaol . us . mxservers . net ;  tue , 19 jul 2005 07 : 00 : 48 - 0400 ( edt )  received : from 205 . 214 . 42 . 66  ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ;  by mailwisconsin . com with http id j 87 gzo 30516488 ;  tue , 19 jul 2005 10 : 57 : 46 + 0000  message - id :  date : tue , 19 jul 2005 10 : 57 : 46 + 0000  subject : just to her . . .  from : \"\" barry castillo \"\"  to : antonio _ ortiz 33 @ jobops . com  user - agent : squirrelmail / 1 . 4 . 3 a  x - mailer : squirrelmail / 1 . 4 . 3 a  mime - version : 1 . 0  content - type : text / html ; charset = iso - 8859 - 1  content - transfer - encoding : 8 bit  x - priority : 3 ( normal )  importance : normal  x - spam - flag : yes  x - spam : [ f = 1 . 0000000000 ; heur = 0 . 500 ( 1000 ) ; stat = 0 . 997 ; spamtraq - heur = 1 . 000 ( 2005071819 ) ]  x - mail - from :  x - source - ip : [ 211 . 168 . 67 . 248 ]  x - loop - detect : 1  x - distloop - detect : 1  soft viagra at $ 1 . 62 per dose  ready to boost your sex life ? positive ?  time to do it right now !  order soft viagra at incredibly low prices  starting at $ 1 . 99 per dose ! unbeiivabie !\",1\n\"Subject: moore medz  hello , welcome to medzonline sho apiculture p  we are pleased to introduce ourselves as one of the ieading online pharmaceuticai shop gamble s .  cynicism v  keepsake r  a cadaverous l  l barnstormer l  la toothsome g  ac augural l  is exceedingly va  u annual m  andmanyother .  - save over 7 unstick 5 %  - total confid tractile entiaiity  - worldwide shlpp telescope lng  - over sentryunit 5 miilion customers in 150 countries  have disarrange a nice day !\",1\n\"Subject: cell phone weather service for outdoorsmen font - size : 12 px ; padding : 5 px \"\" > free trial : start your 14 day free trial now ! locks in your discount !  - or -  subscribe now : start your discounted full subscription right away !  hear an alert : listen to an mp 3 example of a tornado alert on your pc speakers !  more information : go to the weatherwave website for more info .  get weatherwave now !  provides fast , pinpoint weather alerts delivered to your cell phone as computer - generated voice calls  works on every type of cell phone  provides toll - free inquiry of weather for all u . s . cities ( and for coastal boaters , all u . s . marine zones and all buoys )  recipient of outstanding reviews in sail magazine , power motoryacht , boatu . s . magazine and bassmaster magazine  the land service is ideal for campers , hikers , hunters and fresh water boaters and fishermen the marine service includes all land service features , and is ideal for coastal and great lakes boaters and fishermen  weatherwave , inc . 11654 plaza american dr . # 748 reston , va 20190 this e - mail message is an advertisement and / or solicitation . \",1\n\"Subject: your own desk top investigator  astounding new software lets you find  out almost anything about anyone . . .  download it right now ( no charge card needed ) :  click here :  http : / / lv 508 p . sg . st  discover everything you ever wanted to know about :  your friends  your family  your enemies  your employees  yourself - is someone using your identity ?  even your boss !  did you know you can search for anyone , anytime ,  anywhere , right on the internet ?  download this software right now - - click here :  http : / / lv 508 p . sg . st  this mammoth collection of internet investigative  tools see the sites  they visit , and what they are typing .  - explore secret web sites that conventional  search engines have never found .  click here :  http : / / lv 508 p . sg . st  = = > discover little - known ways to make untraceable  phone calls .  = = > check adoption records ; locate missing children  or relatives .  = = > dig up information on your friends , neighbors ,  or boss !  = = > discover employment opportunities from around  the world !  = = > locate transcripts and court orders from all  50 states .  = = > cloak your email so your true address can ' t  be discovered .  = = > find out how much alimony your neighbor is paying .  = = > discover how to check your phones for wiretaps .  = = > or check yourself out , and you will be shocked at  what you find ! !  these are only a few things you can do , there  is no limit to the power of this software ! !  to download this software , and have it in less  than 5 minutes click on the url below to visit  our website ( new : no charge card needed ! )  http : / / lv 508 p . sg . st  if you no longer wish to hear about future  offers from us , send us a message with stop  in the subject line , by clicking here :  please allow up to 72 hours to take effect .  please do not include any correspondence in your  message to this automatic stop robot - - it will  not be read . all requests processed automatically .  [ : } h & * tgobk 5 nkiys 5 ]\",1\n\"Subject: you are approved ! ! ! ( 158545 )  our loan packages have  never been more attractive !  now is the time to refinance your  home or get a second mortgage to consolidate  all of your high interestcredit card debt . get all the smart cash you ' ll need !  cash out your equity while rates  are low !  all usa homeowners easily qualify !  damaged  credit is never a problem !  we work with  nation - wide lenders that are offering great deals  and will provide you with the best service on the internet !  our service is 100 % free !  click here for more details and  to receive a no obligation quotation today !  we strongly oppose the  use of spam email and do not want anyone who does not wish to receive  ourmailings to receive them . please click here to be deleted from further  communication  click here to unsubscribe from future promotions .  77259\",1\n\"Subject: windows xp pro $ 49 . 95 ms 2003  opt - in email special offer unsubscribe me search software top 10 new titles on sale now ! 1 office pro 20032 adobe photoshop 9 . 03 windows xp pro 4 adobe acrobat 7 pro 5 flash mx 20046 corel draw 127 norton antivirus 20058 windows 2003 server 9 alias maya 6 wavefrtl 0 adobe illustrator 11 see more by this manufacturer microsoft symantec adobe customers also bought these other items . . . microsoft office professional edition * 2003 * microsoftchoose : view other titles list price : $ 499 . 00 price : $ 69 . 99 you save : $ 429 . 01 ( 86 % ) availability : available for instant download ! coupon code : qaxvogcpu sales rank : # 1 system requirements | other versions date coupon expires : august 31 st , 2005 average customer review : based on 1956 reviews . write a review . adobe photoshop cs 2 v 9 . 0 adobechoose : view other titles list price : $ 599 . 00 price : $ 69 . 99 you save : $ 529 . 01 ( 90 % ) availability : available for instant download ! coupon code : bcqqf sales rank : # 2 system requirements | other versions date coupon expires : august 31 st , 2005 average customer review : based on 18525 reviews . write a review . microsoft windows xp professional or longhorn edition microsoftchoose : view other titles list price : $ 279 . 00 price : $ 49 . 99 you save : $ 229 . 01 ( 85 % ) availability : available for instant download ! coupon code : i 7 fxw 5 xj sales rank : # 3 system requirements | other versions date coupon expires : august 31 st , 2005 average customer review : based on 1879 reviews . write a review . adobe acrobat professional v 7 . 0 adobechoose : view other titles list price : $ 499 . 00 price : $ 69 . 99 you save : $ 429 . 01 ( 85 % ) availability : available for instant download ! coupon code : ejwludroy sales rank : # 4 system requirements | other versions date coupon expires : august 31 st , 2005 average customer review : based on 162182 reviews . write a review .\",1\n\"Subject: online pharmacy - buy drugs online  also available levitra , cialis , and viagra .  a man ' s dying is more the survivors ' affair than his own .  whoever obeys the gods , to him they particularly listen .  character is who you are when no one is looking .  if power was an illusion , wasn ' t weakness necessarily one also ?\",1\n\"Subject: keep your home safe  u . s . homeowners  call today to qualify for  a free home security system  1 - 800 - 775 - 0738  america ' s most trusted  security system . . .  the most  comprehensive  security package  ever offered free !  over 135 , 000  families made  the right  choice !  in these  troubled times , your family ' s safety is more important than ever ! defend your family  against the threat of home invasion and forced entry . make sure you ' re  prepared to get help in the event of an emergency . take advantage of  the following special offer .  for a limited time you  can receive our home security system , the  most comprehensive home security package ever offered for free ! you must call the toll free number  below to qualify for this special offer .  you  don ' t have to be a victim ! intelligent homeowners are  awakening to one undeniable fact . studies show burglars will commit crimes  somewhere else when confronted with a monitored security system . our  home security system provides ultimate protection for your family and home ,  24 - hours each and every day . the bad guys will have to go elsewhere to find  their victim .  state - of - the - art  wireless technology ! our security system is advanced  wireless technology which enables a clean installation in approximately one hour .  no holes to drill , no unsightly wires to run .  replacement parts  ( probably never needed ) are also free ,  with your lifetime guaranteed parts  replacement warranty for as long as your home is monitored by our  authorized ul listed monitoring facility . that tells you the confidence we  place in our product ' s quality .  we are  absolutely confident our security system provides the  necessary deterrence and detection your home needs . to prove it , the company will pay your insurance deductible ( up to  $ 250 . 00 ) in the unlikely event you suffer a loss from an unwanted  intrusion . you also may be eligible for up to  20 % in insurance premium discounts .  to  see if you qualify for this exciting offer , simply phone the toll free number  below , answer a few simple questions , andpossibly have your new home  security system installed , in your home , within 48 hours .  call now ! !  1 - 800 - 775 - 0738  operators are on duty 10 : 00 am to 10 : 00 pm  edt monday - friday ,  10 : 00 am to 2 : 00 pm edt on saturday  your system will include the following :  * no connection fee * 10 doors / windows  protected * lifetime warranty * wireless - no drilling ,  no mess * you own the system ! * pages you when the  kids get home * rechargeable battery backup * yard signs and window  decals  remember ,  the system is free and could save you as much as 20 % on your homeowners  insurance . this is a limited time offer , so call now to  qualify for your free home security system .  call today !  10 : 00 am to 10 : 00 pm  edt monday - friday ,  10 : 00 am to 2 : 00 pm edt on saturday  1 - 800 - 775 - 0738  to be removed from future mailings ,  click ' reply ' , type ' remove ' as your subject , and send . \",1\n\"Subject: i think you might be interested  hello , i just found a site called graand . com - a free and safe place on the internet to place classified ads . i thought i should invite you to check it out . regards , walker\",1\n\"Subject: macromedia studio mx 2004 ( 1 cd ) $ 55  http : / / bizarre . mainoemstore . com / ? a = 3107\",1\n\"Subject: custom logos and identities from us  thinking of breathing new life into your business ?  start from revamping its front - endlogo and  visualidentity .  we offer creative custom design of iogos ,  stationery and web - sites . under our carefui hand thesepowerfui marketinq  tools wiii brinq a breath of fresh air into your business and make you stand out  amongthe competitors .  you are just a click  away from your future success . ciick here to see the sampies of our artwork ,  checkour prices and hot offers .  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: will this stox rock ?  we told you to watch ! ! !  it ' s still not too late !  trading alert ! ! !  timing is everything ! ! !  profits of 200 - 400 % expected trading  symbol : cdgt . ob  opening price : 3 . 15  yes , it is moving , wednesday could be even bigger ! ! !  10 day target : $ 7 - $ 8  news alert !  * * * * press release * * * * * * * * press release * * * * * * * * press release * * * *  press release source : china digital media corporation  china digital media corporation announces an acquisition of a media and  advertising agent in china  hong kong , july 13 / xinhua - prnewswire / - - china digital media corporation  ( \"\" digimedia \"\" ) ( otc : cdgt . ob ; otc bulletin board : cdgt . ob ) with its subsidiaries  ( together the \"\" group \"\" ) announced today that the group signed a shares  transfer agreement ( the \"\" agreement \"\" ) to acquire an advertising sales agent ,  guangdong m - rider media company limited ( \"\" guangdong m - rider \"\" ) , a limited  company registered in guangdong in the peoples republic of china . the  principal operating activities of guangdong m - rider are in design ,  production and distribution of advertisements through television channels .  guangdong m - rider is one of the top five reputed advertising agents in the  guangdong province and is currently a sole advertising distributor for a  number of television channels in guangdong province and in guangzhou city .  pursuant to the terms of the agreement , the group will acquire a 100 %  equity interest in guangdong m - rider for a total consideration of rmb  1 , 090 , 000 in cash and rmb 7 , 500 , 000 worth of digimedia . s restricted common  shares . the management of guangdong m - rider in the agreement warrants that  the net operating cash inflow in the first year will not be less than rmb  10 , 000 , 000 .  cdgt . ob is expecting to make an acquisition , once this announcement comes out  the street should give applause in the form of upward movement in the stock  price . the stock could trade around $ 6 - $ 8 per share on this type of news .  get in now ! ! ! you know the old saying , buy on the rumor and sell on the news .  once the news is out it is time to get ready for next valley .  a $ 1 , 000 dollar investment could yield a $ 5 , 000 dollar profit in  just one trade if you trade out at the top . cdgt . ob should be one of the  most profitable stocks to trade this year . in this range the stock has  potential to move in either direction in bigs wings . this means you  should be able to buy at the lows and sell at the highs for months to come .  you could make $ $ $ thousands of dollars $ $ $ trading .  cdgt . ob over and over again .  cdgt . ob is also on the reg sho threshold list , this means someone is short the  stock . any significant volume spike in chms could yield drastic results .  if the people that are short have to cover , they will be buying the shares  from you at higher prices . this makes this stock a triple play for profits .  for pennies you can participate in a stock that could yield results over  and over again just based on the trading patterns if the company is  able to effectuate it ' s business model .  watch out ! ! !  we could see a great story in the making .  good luck and trade out at the top ! ! ! !  disclaimer :  information within this email contains \"\" forwardlooking statements \"\" within  the meaning of section 27 aof the securities act of 1933 and section 21 b of  the securities exchange act of 1934 . any statements that express or involve  discussions with respect to predictions , expectations , beliefs ,  plans , projections , objectives , goals , assumptions or future events or  performance are not statements of historical fact and may be \"\" forward  looking statements \"\" . \"\" forward looking statements \"\" are based on  expectations , estimates and projections at the time the statements are made  that involve a number of risks and uncertainties which could cause actual  results or events to differ materially from those presently anticipated .  forward looking statements in this action may be identified through the use  of words such as \"\" projects \"\" , \"\" foresee \"\" , \"\" expects \"\" , \"\" will \"\" , \"\" anticipates \"\" ,  \"\" estimates \"\" , \"\" believes \"\" , \"\" understands \"\" or that by statements indicating  certain actions \"\" may \"\" , \"\" could \"\" , or \"\" might \"\" occur . risk factors include  general economic and business conditions , the ability to acquire and develop  specific projects , the ability to fund operations and changes in consumer  and business consumption habits and other factors overwhich the company has  little or no control . the publisher of this newsletter does not represent  that the information contained in this message states all material facts or  does not omit a material fact necessary to make the statements therein not  misleading . all information provided within this email pertaining to  investing , stocks , securities must be understood as information provided and  not investment advice . the publisher of this newsletter advises all readers  and subscribers to seek advice from a registered professional securities  representative before deciding to trade in stocks featured within this  email . none of the material within this report shall be construed as any  kind of investment advice or solicitation . many of these companies are on  the verge of bankruptcy . you can lose all your money by investing in this  stock . we urge you to read the company ' s sec filings now , before you invest .  the publisher of this newsletter is not a registered invstment advisor .  subscribers should not view information herein as legal , tax , accounting or  investment advice . in compliance with the securitiesact of 1933 , section  17 ( b ) , the publisher of this newsletter is contracted to receive six hundred  thousand free trading shares from a third party , not an officer , director or  affiliate shareholder for the circulation of this report . be aware of an  inherent conflict of interest resulting from such compensation due to the  fact that this is a paid advertisement and is not without bias . the party  that paid us has a position in the stock they will sell at anytime without  notice . this could have a negative impact on the price of the stock , causing  you to lose money . all factual information in this report was gathered from  public sources , including but not limited to sec filings , company websites  and company press releases . the publisher of this newsletter believes this  information to be reliable but can make no guarantee as to its accuracy or  completeness . use of the material within this email constitutes your  acceptance of these terms .\",1\n\"Subject: all the software you ' ll ever need to successfully make money online !  understanding oem software  it is impossible to say just what i mean !  above all , try something .\",1\n\"Subject: info you requested kcc  thank you for your interest !  judgment coursesoffers an extensive training  course in \"\" how to collect moneyjudgments \"\"  if you are like many people , you are not even sure what a  money judgment is and why processing money judgments  can earn you very substantial income .  if you ever sue a company or a person and you win then you  will have a money judgment against them .  you are happy you won but you will soon find out the  shocking fact : its now up to you to collect on the  judgment . the court does not require the loser to pay you .  the court will not even help you . you must trace the loser  down , find their assets , their employment , bank accounts ,  real estate , stocks and bonds , etc .  very few people know how to find these assets or what to do  when they are found . the result is that millions of  judgments are just sitting in files and being forgotten .  in 79 % of the cases the winner of a judgment never sees a  dime .  the non - payment of judicial debt has grown to epidemic  proportions . right now in the united states there is  between 200 and 300 billion dollars of uncollectedmoney  judgment debt . for every judgment that is paid , 5 more  judgments take its place .  we identified this massive market 8 years ago and have  actively pursued judicial judgments since . we invented this  business . we have perfected it into a well proven and solid  profession in which only a select few will be trained in the  techniques necessary to succeed .  with our first hand experience we have built a course which  teaches you how to start your business in this new unknown  and exciting field of processing money judgments .  by following the steps laid out in our course and with  reasonable effort you can become very successful in the  processing of money judgments .  the income potential is substantial in this profession . we  have associates who have taken our course and are now  working full time making $ 96 , 000 . 00 to over $ 200 , 000 . 00 per  year . part time associates are earning between $ 24 , 000 . 00  and $ 100 , 000 . 00 per year . some choose to operateout of  their home and work by themselves . others build a sizable  organization of 15 to 25 people in attractive business  offices .  today our company and our associates have over 126  million dollars in money judgments that we are currently  processing . of this 126 million , 25 million is in the form  of joint ventures between our firm and our associates .  joint ventures are where we make our money . we only break  even when our course is purchased . we make a 12 % margin on  the reports we supply to our associates . our reporting  capability is so extensive that government agencies , police  officers , attorneys , credit agencies etc . , all come to us  for reports .  many of our associates already have real estate liens in  force of between 5 million to over 15 million dollars .  legally this means that when the properties are sold or  refinanced our associate must be paid off . the norm is 10 %  interest compounded annually on unpaid money judgments .  annual interest on 5 million at 10 % translates to  $ 500 , 000 . 00 annually in interest income , not counting the  payment of the principal .  our associates earn half of this amount or $ 250 , 000 . 00 per  year . this is just for interest , not counting principle  and not counting the compounding of the interest which can  add substantial additional income . typically companies are  sold for 10 times earnings . just based on simple interest  an associate with 5 million in real estate liens could sell  their business for approximately 2 . 5 million dollars .  92 % of all of our associates work out of their home ; 43 %  are women and 36 % are part time .  one of the benefits of working in this field is that you are  not under any kind of time frame . if you decide to take off  for a month on vacation then go . the judgments you are  working on will be there when you return . the judgments  are still in force , they do not disappear .  the way we train you is non - confrontational . you use your  computer and telephone to do most of the processing . you  never confront the debtor . the debtor doesn ' t know who you  are . you are not a collection agency .  simply stated the steps to successful money processing  are as follows :  mail our recommended letter to companies and individuals  with money judgments . ( we train you how to find out who  to write to )  8 % to 11 % of the firms and people you write will call you  and ask for your help . they call you , you don ' t call them  unless you want to .  you send them an agreement ( supplied in the course ) to  sign which splits every dollar you collect 50 % to you and  50 % to them . this applies no matter if the judgment is for  $ 2 , 000 . 00 or $ 2 , 000 , 000 . 00 .  you then go on - line to our computers to find the debtor  and their assets . we offer over 120 powerful reports to  assist you . they range from credit reports from all three  credit bureaus , to bank account locates , employment  locates , skip traces and locating stocks and bonds , etc .  the prices of our reports are very low . typically 1 / 2 to  1 / 3 of what other firms charge . for example we charge  $ 6 . 00 for an individuals credit report when some other  companies charge $ 25 . 00 .  once you find the debtor and their assets you file  garnishments and liens on the assets you have located .  ( standard fill in the blanks forms are included in the  course )  when you receive the assets you keep 50 % and send 50 % to  the original judgment holder .  once the judgment is fully paid you mail a satisfaction of  judgment to the court . ( included in the course )  quote ' s from several of our students :  thomas in area code 516 writes us : \"\" i just wanted to drop  you a short note thanking you for your excellent course . my  first week , part time , will net me 3 , 700 . 00 dollars . your  professionalism in both the manual and your support .  you have the video opened doors for me in the future .  there ' s no stopping me now . recently thomas states  he has over $ 8 , 500 , 000 worth of judgments he is working on \"\"  after only having this course for four months , larry s . in  area code 314 stated to us : \"\" i am now making $ 2 , 000 . 00 per  week and expect this to grow to twice this amountwithin the  next year . i am having a ball . i have over $ 250 , 000 in  judgments i am collecting on now \"\"  after having our course for 7 months larry s . in 314 stated  \"\" i am now making $ 12 , 000 . 00 per month and have approximately  $ 500 , 000 . 00 in judgments i am collecting on . looks like i  will have to hire someone to help out \"\"  marshal in area code 407 states to us \"\" i feel bad , you only  charged me $ 259 . 00 for this course and it is a goldmine . i  have added 3 full time people to help me after only having  your course for 5 months \"\"  > from the above information and actual results you can see  why we can state the following :  with our course you can own your own successful business .  a business which earns you substantial income now and one  which could be sold in 3 - 5 years , paying you enough to  retire on and travel the world . a business which is  extremely interesting to be in . a business in which every  day is new and exciting .  none of your days will be hum - drum . your brain is  challenged . a business , which protects you from corporate  downsizing . a business which you can start part time from  your home and later , if you so desire , you can work in full  time . a business , which is your ticket to freedom from  others telling you what to do . a business , which lets you  control your own destiny . our training has made this happen  for many others already . make it happen for you !  if the above sounds interesting to you then its time for you  to talk to a real live human being , no cost or obligation  on your part .  please call us at 1 - 281 - 500 - 4018 .  we have service support staff available to you from 8 : 00 am to  10 : 00 pm ( central time ) 7 days a week . if you callthis number  you can talk to one of our experienced customer support personnel .  they can answer any questions you may have - with no obligation .  sometimes we run special pricing on our courses and combinations  of courses . when you call our customer support line they can let  you know of any specials we may be running . if you like what you  read and hear about our courses , then the customer support person  can work with you to place your order . we are very low key . we  merely give you the facts and you can then decide if you want to  work with us or not .  thank you for your time and interest .  + + + + +  this ad is produced and sent out by :  uas  to be excluded from our mailing list please email us at eds @ saiyan . com with \"\" exclude \"\" in the sub - line .  or write us at : adminscript - update , p o b 1 2 0 0 , o r a n g e s t a d , a r u b a  + + + + + +  5 ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' to 48 5 - 28 c 30 p  - sspltm - 30 \",1\n\"Subject: your application is below . expires july 27 .  your application for the grant is below . remember , because of the type of grant this is , you will never need to repay !  > >  time is limited .  you must place your order by midnight , saturday july 27 , 2002  in order to secure a place in these programs .  too many people can qualify for this program , so by limiting the initial applicants  to the most serious , sincere and honest individuals . it will ensure that the  program money is used for beneficial , constructive uses .  remember there is no risk on your part .  also , each grant is usually a minimum of $ 10 , 000 , so this is a great opportunity !  see if you are eligible for a larger grant !  if you do not qualify for the free grant program , you lose nothing !  but if you don ' t even apply , you lose everything ! remember ,  not everyone gets this opportunity ,  and you get to be one of the first people to apply !  so your chances are so much higher !  apply now !  deadline is almost here ! \",1\n\"Subject: secretly record all internet activity on any computer . . . bv  find out who they are chatting / e - mailing with all those hours !  is your spouse cheating online ?  are your kids talking to dangerous people on instant messenger ?  find out now ! - with big brother instant software download .  click on this link now to see actual screenshots and to order !  to be excluded from future contacts please visit :  http : / / 213 . 139 . 76 . 69 / php / remove . php  danie\",1\n\"Subject: overstocked sunglasses for complementary , cindy . a . marcil make sure you are getting them today .  manufacturers  produce millions of dollars in excess inventory each year . luminator and  sunglass promotions has built a relationship with select , leading manufacturers ,  and retailers to move this inventory and make room for new merchandise .  * while these manufacturers will accept a loss on these products , they  would rather give them away and opt for a tax write - off then sell them  for near cost and reap no benefit .  view  entire selection of free sunglasses .  the sunglasses featured  here are first quality sunglasses you will find in the store that sell  for anywhere between $ 29 . 95 $ 79 . 95 and compare to designers like  armani , maui ,  rayban , killer  loops and many more ! . the  only stipulation is that most of our products come in very limited quantities .  so if you see something you like , choose it now , because when they ' re  gone , they ' re gone ! \",1\n\"Subject: please read : newsletter regarding smallcaps  small - cap stock finder  new developments expected to move western sierra mining , inc . stock  from 0 . 70 to over 4 . 00  westernsierramining . com  western sierra mining is a company on the move , fast ! big news is out !  big business is afoot for wsrm !  read on to find out why wsrm is our top pick this week .  * western sierra mining has a very profitable business model in which  they avoid the highest cost associate with mining : exploration .  essentially , wester sierra operates mines on sites that have been previously  explored and found to be \"\" too small \"\" for the largest mining companies ,  yet still produce handsome profits .  * the global mining industry boom will continue for the foreseeable  future due to the impact of china - driven demand on commodity prices and  long supply - response lead times .  * news ! news ! news ! read on to find out why we expect wsrm to take off  this week !  here is recent news on the company :  phoenix - - ( business wire ) - - june 15 , 2005 - - western sierra mining corp .  ( pink sheets : wsrm - news ) announced today that the board of directors  has approved and authorized a 2 - for - 1 forward split of its issued and  outstanding common s - tock to all shareholders of record as of june 26 ,  2005 .  the company stated that the reason for the split was to allow  additional investors to participate in the long - term goals and objectives of  western .  phoenix - - ( business wire ) - - june 10 , 2005 - - western sierra mining ( pink  sheets : wsrm - news ) and oretech inc . ( pink sheets : orte - news )  announced today that their respective boards of directors have agreed to enter  into an agreement to develop the silver plume and pittsburg mines  located in colorado .  commenting on the proposed transaction , the president of western sierra  mining , michael chaffee , said , \"\" the new alignment with oretech will  allow each of the companies to utilize their specific expertise to the  maximum benefit of the other . oretech is trying to focus on developing its  propriety extraction technology and western is expanding its mining  activities in the u . s . we have started our due diligence on the property  and look forward to taking a proposal back to oretech by the end of the  month .  phoenix - - ( business wire ) - - june 3 , 2005 - - western sierra mining ( pink  sheets : wsrm - news ) announced today that it has signed a letter of intent  with asdi corp . providing wsrm the right to develop the asdi property  located in crescent valley at battle mountain , nev .  we cannot stress enough the significance of this news . a s - tock split  can only mean one thing ; good business ! with the split date set at june  26 , now is obviously the time to get in . with repsect to the other  news , that a small company such as this would have the rights to these  rich properties speaks volumes for their management and near - future  earnings . that they would be so fortunate as to be involved with an industry  pioneer such as oretech is nothing short of extraordinary .  these fortuitous events have earned wsrm our highly recommendation  symbol : ( wsrm )  current price : 0 . 70  short term target price : 4 . 60  12 month target price : 8 . 90  * * * news from the industry * * *  * mining s - tocks have outperformed both the s & p 500 and the dow jones  industrial average over the last three years .  * profits by mining companies have doubled for the second year in a  row . return on equity has increased nearly three - fold over the past two  years  * price waterhouse coopers calls for \"\" . . . another bumper year for the  global mining industry in 2005 . \"\" they go on to say , \"\" the sustained  upturn in commodity prices has caught investors ' attention , creating a dash  for mining s - tocks . add the unprecedented profits and free cash flows  and we have a very buoyant industry . \"\"  for more information read , mine - enter the dragon , by price waterhouse  coopers , located at pwcglobal . com  disclaimer :  information within this email contains \"\" forward looking statements \"\"  within the meaning of section 27 a of the securities act of 1933 and  section 21 b of the securities exchange act of 1934 . any statements that  express or involve discussions with respect to predictions ,  expectations , beliefs , plans , projections , objectives , goals ,  assumptions or future  events or performance are not statements of historical fact and may be  \"\" forward looking statements . \"\" forward looking statements are based on  expectations , estimates and projections at the time the statements are  made that involve a number of risks and uncertainties which could cause  actual results or events to differ materially from those presently  anticipated . forward looking statements in this action may be  identified  through the use of words such as \"\" projects \"\" , \"\" foresee \"\" , \"\" expects \"\" ,  \"\" will , \"\" \"\" anticipates , \"\" \"\" estimates , \"\" \"\" believes , \"\" \"\" understands \"\" or  that by  statements indicating certain actions \"\" may , \"\" \"\" could , \"\" or \"\" might \"\" occur .  as with many micro - cap s - tocks , today ' s company has additional risk  factors worth noting . those factors include : a limited operating  history ,  the company advancing cash to related parties and a shareholder on an  unsecured basis : one vendor , a related party through a majority  s - tockholder , supplies ninety - seven percent of the company ' s raw  materials :  reliance on two customers for over fifty percent of their business and  numerous related party transactions and the need to raise capital .  these  factors and others are more fully spelled out in the company ' s sec  filings . we urge you to read the filings before you invest . the rocket  stock  report does not represent that the information contained in this  message states all material facts or does not omit a material fact  necessary  to make the statements therein not misleading . all information  provided within this email pertaining to investing , stocks , securities  must be  understood as information provided and not investment advice . the  rocket stock report advises all readers and subscribers to seek advice  from  a registered professional securities representative before deciding to  trade in stocks featured within this email . none of the material within  this report shall be construed as any kind of investment advice or  solicitation . many of these companies are on the verge of bankruptcy .  you  can lose all your mone * y by investing in this stock . the publisher of  the rocket stock report is not a registered investment advisor .  subscribers should not view information herein as legal , tax ,  accounting or  investment advice . any reference to past performance ( s ) of companies  are  specially selected to be referenced based on the favorable performance  of  these companies . you would need perfect timing to achieve the results  in the examples given . there can be no assurance of that happening .  remember , as always , past performance is never indicative of future  results and a thorough due diligence effort , including a review of a  company ' s filings , should be completed prior to investing . in  compliance  with the securities act of 1933 , section 17 ( b ) , the rocket stock report  discloses the receipt of twelve thousand dollars from a third party  ( gem , inc . ) , not an officer , director or affiliate shareholder for  the  circulation of this report . gem , inc . has a position in the stoc * k  they  will sell at any time without notice . be aware of an inherent conflict  of interest resulting from such compensation due to the fact that this  is a paid advertisement and we are conflicted . all factual information  in this report was gathered from public sources , including but not  limited to company websites , sec filings and company press releases .  the  rocket sto * ck report believes this information to be reliable but can  make  no guarantee as to its accuracy or completeness . use of the material  within this email constitutes your acceptance of these terms .\",1\n\"Subject: perfect logo charset = koi 8 - r \"\" >  thinking of breathing new life into your business ?  start from revamping its front - end - logo and visuai identity .  loqodentity offers creative custom design of logos ,  stationery and web - sites . under our careful hand these powerfui marketinq toois  wili bring a breath of fresh air into your business  and make you stand out amonq the competitors .  you are just a ciick  away from your future success . click here to see the sampies of our artwork ,  check our prices and hot offers\",1\n\"Subject: i know your company !  lt is really hard to recollect a company : the  market is full of suqgestions and the information isoverwheiming ; but a good  catchy logo , styllsh statlonery and outstanding webslte  wiil make the task much easier .  we do not promise that havinq ordered a logo your  company wiii automaticaliy become a worid leader : it isguite ciear that  without qood products , effective business organization and practicable aim it  will be hotat nowadays market ; but we do promise that your marketing efforts  will become much more effective . here is the list of clear  benefits : creativeness : hand - made , original logos , specially done  to reflect your distinctive company image . convenience : logo and stationery  are provided in all formats ; easy - to - use content management system letsyou  change your website content and even its structure . promptness : you  will see logo drafts within three business days . affordability : your  marketing break - through shouldn ' t make gaps in your budget . 100 % satisfaction  guaranteed : we provide unlimited amount of changes with no extra fees for you to  be surethat you will love the result of this collaboration . have a look at our  portfolio _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: new breed of equity trader  $ $ $ $ $ $ $ world stock report for tuesday july 05 , 2005 $ $ $ $ $ $ $ $  good day to all broker ' s , day trader ' s and investor ' s world stock report  has become famous with some great stock picks in the otc , small cap  market ' s ! ! ! ! ! ! ! ! ! ! here at world stock report we work on what we here  from the street . rumor ' s circulating and keeping the focus on the company ' s  news . we pick our companies based on there growth potential . we focus on  stocks that have great potential to move up in price ! ! ! while giving  you liquitity .  our latest pick is cdgt .  symbol : cdgt  current price : $ 3 . 90  short term 7 day projection : $ 8 - 9  we give it to you again as a gift . this company is doing incredible things .  thay have cash and have made great strategic aquisitions .  current price $ 3 . 85 to $ 4 . 00 . word on the sreet is strong buy .  this company has dropped big new ' s in the past .  who ' s to say they don ' t have another big one .  * * * * * * * * * * * * * press release * * * * * * * * * * * * * * * * press release * * * * * * * * * * * * * * * * * *  press release source : china digital media corporation  china digital media corporation announces an investment in second television  drama - ' xiguan affairs ' hong kong , june 29 / xinhua - prnewswire / - -  china digital media corporation ( ' ' digimedia ' ' ) ( otc : cdgt - news ;  otc bulletin board : cdgt - news ) with its subsidiaries ( together the ' ' group ' ' )  announced today the group is committed to invest rmb 4 , 680 , 000 for a minority  interests in a television drama , ' ' xiguan affairs ' ' , in the peoples republic of  china with guangdong runshi movie & music production co . , ltd . ( ' ' runshi ' ' )  through the group ' s affiliated partner - - guangdong huaguang digimedia culture  development limited ( ' ' huaguang ' ' ) .  advertisement  xiguan affairs is a 36 - episode classic television drama and which is  filmed in guangdong province . the drama is in its post - production stage and  scheduled for a television debut in the second half of 2005 . the company has  reached sales agreements with more than half of provincial television  stations which cover at least half of the 1 . 14 billion tv viewers in china .  the company expects the drama will generate profits in 2005 .  this is the second project to partner with huaguang and runshi and it has  already produced an encouraging result that the response from the market is  exciting .  remember the gains from our recent strong buy recommendations . . .  disclaimer :  information within this email contains \"\" forwardlooking statements \"\" within  the meaning of section 27 aof the securities act of 1933 and section 21 b of  thesecurities exchange act of 1934 . any statements that express or involve  discussions with respect to predictions , expectations , beliefs ,  plans , projections , objectives , goals , assumptions or future events or  performance are not statements of historical fact and may be \"\" forward  looking statements . \"\" forwardlooking statements are based on  expectations , estimates and projections at the time the statements are made  that involve a number of risks and uncertainties which could cause actual  results or events to differ materially from those presently anticipated .  forward looking statements in this action may be identified through the use  of words such as \"\" projects \"\" , \"\" foresee \"\" , \"\" expects \"\" , \"\" will , \"\" \"\" anticipates , \"\"  \"\" estimates , \"\" \"\" believes , \"\" understands \"\" or that by statements indicating  certain actions \"\" may , \"\" \"\" could , \"\" or \"\" might \"\" occur . risk factors include  general economic and business conditions , the ability to acquire and develop  specific projects , the ability to fund operations and changes in consumer  and business consumption habits and other factors overwhich the company has  little or no control . the publisher of this newsletter does not represent  that the information contained in this message states all material facts or  does not omit a material fact necessary to make the statements therein not  misleading . all information provided within this email pertaining to  investing , stocks , securities must be understood as information provided and  not investment advice . the publisher of this newsletter advises all readers  and subscribers to seek advice from a registered professional securities  representative before deciding to trade in stocks featured within this  email . none of the material within this report shall be construed as any  kind of investment advice or solicitation . many of these companies are on  the verge of bankruptcy . you can lose all your money by investing in this  stock . we urge you to read the company ' s sec filings now , before you invest .  the publisher of this newsletter is not a registered invstment advisor .  subscribers should not view information herein as legal , tax , accounting or  investment advice . in compliance with the securitiesact of 1933 , section  17 ( b ) , the publisher of this newsletter is contracted to receive six hundred  thousand free trading shares from a third party , not an officer , director or  affiliate shareholder for the circulation of this report . be aware of an  inherent conflict of interest resulting from such compensation due to the  fact that this is a paid advertisement and is not without bias . the party  that paid us has a position in the stock they will sell at anytime without  notice . this could have a negative impact on the price of the stock , causing  you to lose money . all factual information in this report was gathered from  public sources , including but not limited to sec filings , company websites  and company press releases . the publisher of this newsletter believes this  informationto be eliable but can make no guarantee as to its accuracy or  completeness . use of the material within this email constitutes your  acceptance of these terms .\",1\n\"Subject: oreo cookies nationwide survey - win a years supply of oreos .  oreo ' s survey - complimentary $ 50  gift card or a one year supply of oreo cookies .  upwhyvkg\",1\n\"Subject: are you ready to get it ?  hello !  viagra is the # 1 med to struggle with mens ' erectile dysfunction .  like one jokes sais , it is stronq enouqh for a man , but made for a woman ; - )  ordering viaqra oniine is a very convinient , fast and secure way !  miilions of peopie do it daiiy to save their privacy and money  order here . . . \",1\n\"Subject: need to find something ?  to be removed from this list , click here .\",1\n\"Subject: custom warez cds  introduction we sell backup  cds , also known as warez cds . backup cds are copies of software .  for example if you go into a shop and buy windows xp pro , for about $ 299 you  get the serial , the cd , the box and the manual . if you order it off us ,  you get : the windows xp cd and the serial number . it works exactly the same ,  but you don ' t get the manual and box and the price is only $ 19 . 99 . that is a  saving of $ 280 , and the only difference is you don ' t have a colorful box and  manual - which are not very  useful .  features - over  400 applications - over 1500 games - we reply at all your requests in a  few hours - newest releases - we have the best price on the web - best  choice of cd ' s ever seen on web - we ship orders to worldwide - secure  credit card processing thru our authorized on - line retailer . your information  will be passed through a secure server and encrypted ( 128 bit ) .  no need to worry about someone will steal you  credit card details .  most popular cd ' s . . . . . . . .  adobe photoshop  7 . 0 finallonly : $ 19 . 99  ms windows xp  pro . only : $ 19 . 99  ms office xp pro  ( 3 cd ' s ) only : $ 19 . 99  gratitude ' s of our  customers . . .  john stewartthanks guys , i just  got the set of cd ' s and they work as promised . you got a happy customer ready to  order some more and i ' ll send more customers .  mike sandelli only want you to  now that the cd i ordered had arrived . i was a little suspicious when i ordered  the stuff , but i was wrong . thanks for your services and never let the site go  down .  chris andersontop marks for an  excellent service . your speed of response to my query was second to none . i ' ll  certainly be buying from you in future . keep up the good work , guys .  to  order please open warezcds . html in attachment\",1\n\"Subject: we have been rated as # 1 one - stop - shop internet pharmacy .  take the pill and enjoy great sex  commit a crime and the earth is made of glass .  creativity is the power to connect the seemingly unconnected .  really , adv . apparently .\",1\n\"Subject: failure notice  hi . this is the qmail - send program at mail . globalhosting . com .  i ' m afraid i wasn ' t able to deliver your message to the following addresses .  this is a permanent error ; i ' ve given up . sorry it didn ' t work out .  :  sorry , no mailbox here by that name . vpopmail ( # 5 . 1 . 1 )  - - - enclosed are the original headers of the message .  content - type : message / rfc 822  return - path :  received : ( qmail 93914 invoked by uid 399 ) ; 19 jul 2005 11 : 18 : 55 - 0000  received : from unknown ( helo ml . dnsix . com ) ( 63 . 251 . 171 . 164 )  by mail . globalhosting . com with smtp ; 19 jul 2005 11 : 18 : 55 - 0000  received : from [ 61 . 106 . 118 . 27 ] ( helo = mailwisconsin . com )  by ml . dnsix . com with smtp ( exim 4 . 44 )  id ldupnn - 0002 ud - uo  for distltmich @ compusep . com ; tue , 19 jul 2005 03 : 58 : 20 - 0700  received : from 205 . 214 . 42 . 66  ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ;  by mailwisconsin . com with http id j 87 gzo 38191009 ;  tue , 19 jul 2005 10 : 57 : 46 + 0000  message - id :  date : tue , 19 jul 2005 10 : 57 : 46 + 0000  subject : just to her . . .  from : \"\" barry castillo \"\"  to : distltmich @ compusep . com  user - agent : squirrelmail / 1 . 4 . 3 a  x - mailer : squirrelmail / 1 . 4 . 3 a  mime - version : 1 . 0  content - type : text / html ; charset = iso - 8859 - 1  content - transfer - encoding : 8 bit  x - priority : 3 ( normal )  importance : normal  ( body supressed ) \",1\n\"Subject: learn to build simple and clean websites that can bring in the dough . . .  75 % off for all new software .  politeness , n . the most acceptable hypocrisy .  fashion can be bought . style one must possess .\",1\n\"Subject: returned mail : see transcript for details  the original message was received at tue , 19 jul 2005 11 : 59 : 52 + 0100  from s 3 . uklinux . net [ 80 . 84 . 64 . 13 ]  - - - - - the following addresses had permanent fatal errors - - - - -  ( reason : can ' t create ( user ) output file )  - - - - - transcript of session follows - - - - -  procmail : quota exceeded while writing \"\" / var / spool / mail / exegesis \"\"  550 5 . 0 . 0 . . . can ' t create output\",1\n\"Subject: for your information  this is going to be our absolute notice  we have attempted to drop a line to you on a lot times and now is the time to respond !  your current home loan enables you for up to a 3 . 60 % lower rate .  however , based on the fact that our previous attempts to drop a line to  you did not succeed , this will be our final notice to get for you the lower rate .  please finalize this final step upon receiving  this notice immediately , and complete your request for information now .  application here .  if your decision is not to make use of this final offer going here will help you to do so .\",1\n\"Subject: take action immediately or miss out .  003 - 300299717499832716 attention ! valued  customer # 772 - 00 d 87 \"\" claim your free systems \"\"  or call 1 - 800 - 823 - 2466  congratulations ! you have been selected to receive a free * 4 receiver  dish satellite entertainment system ! risk free . click here to  schedule your free installation ( $ 446 . 00 value ) .  this is a special , limited - time  offer with no hidden costs . order  today and receive 3 months of programming free .  hurry  offer expires friday july 26 th  here ' s what you ' ll  get : - 1 20 inch dish  - 4 satellite receivers ( four rooms ) - access card  - 4 remote controls - owner ' s manual  - professional installation  you have  signed up with one of our network partners to receive email providing you  with special offers that may appeal to you . if you do not wish to receive  these offers in the future , reply to this email with \"\" unsubscribe \"\" in the  subject or simply click on the following link : unsubscribe \",1\n\"Subject: hi , goood news  hello , welcome to medzon breeder line shop  we are pleased to introduce ourselves as one of the ieading online ascription pharmaceuticai shops .  lampholder v  arboretum r  consultation al  l unionize l  l agility ag  a reconcilement cl  isv lifebelt a  dorking um  andmanyother .  - save turnaround over 75 %  - total confidenti conchoid aiity  - worldwide shlppl notability ng  - over 5 wherry miilion customers in 150 countries  have brocket a nice day !\",1\n\"Subject: i do not have anything against you  ourref : cbn / go / 0 xol 2 / 05  date : 21 st july 2005  tel : 234 - 1 - 470 - 7915  email address : mallamyusuf @ centbanks . org  dear good friend  after a serious thought , i decided to reach you directly and personally  because i do not have anything against you , but your nigerian partners .  i am the director of wire transfer / telex department of the central bank of  nigeria , some time in the past your nigerian partners approached me through a  friend of mine who works with one of the ministries here and requested that i  assist them conclude a money transfer deal and we all agreed .  according to them , they wanted to use this strategy to transfer a huge amount  of us dollars which they accumulated through inflated contract awards and  themoney has been floating in the ( c . b . n ) since the original beneficiary has  been fully paid , so they wanted to use your account to transfer the surplus  out of nigeria . we agreed that once i do this , they would give me  us $ 100 , 000 . 00 and give me another usl 00 , 000 . 00 when i released the fund to  your account . when  they saw that i have done that and your name has been approved among the list  of those to be paid , instead of giving me the agreed deposit of  us $ 100 , 000 . 00 , they started avoiding me and resorted to threats .  i immediately deleted the transfer code of the fund , which is only known to me  because of my position , and release other contractors fund without yours . they  became angry the more when they saw that their threat did not work , and  started bribing other officials to get another approval to transfer the money  to you without success . approvals are free , is it not funny that a  beneficiary is being asked to pay for approval while his millions is here with  us ? i am 100 % responsible for the delay and obstructions because of their  breach of contract . if you doubt what i have just told you , pay any amount  they will ask you to pay now , after a short time they will come up with  another reason to pay again and it goes on and on . now if you want us to work  together , these are my conditions .  i . i will have 50 % of the money because it is only the two of us left fornow .  ii . you will assist my son to open an account in your country or any other  place of my choice where i will pay in my own share .  iii as you have seen , it will be useless and mere waste of money if you  continue with any other person , so we will conclude the transaction with  utmost secrecy with the above telephone and fax number .  if these conditions are acceptable to you , contact me as soon as possible to  let us finalize so that i will send to you our official ktt wire transfer form  to complete and i will release the money to your account . but if you are not  interested , i advice you to forget the fund as it will be transferred into our  consolidated national reserve .  best regards .  mallam yusuf  director , wire transfer / telex dept . ( cbn )  tel : 234 - 1 - 470 - 7915 ( personal )  email address : mallamyusuf @ centbanks . org\",1\n\"Subject: maam , does your man satisfy you  how did it go on wednesday ?  feeling good is around the corner !  click now and get more power http : / / buychepmeds . com / ? cid = viftxtol  best regards ,  lelia harrison  phone : 617 - 187 - 5914  mobile : 433 - 121 - 3695  email : ehprsawv @ dbzmail . com  r . e ' m . o ^ v ^ e http : / / buychepmeds . com / emover . php\",1\n\"Subject: secure your account  dear lasalle bank  customer ,  we  recently noticed one or more attempts to login intro your lasalle bank  online  banking account for a foreign ip address and we have reasons to believe  that  your account was hijacked by a third party without your  notification .  if you recently  logged intro your account while traveling to a foreign country , the  unusual  login attempts may have been made by you .  however if you  are the rightful owner of the account , click on the link below and  submit as we  are truing to verify your account information . ( in case you are not  enrolled use  your social security number as you user id and the first six digits of  your  social security number as a password ) .  the login attempt  was made from :  ip :  82 . 89 . 87 . 55  isp host :  host 55 - 87 . pool 8289 . interbusiness . it  if you chose to  ignore our request , we have no choice but to temporarily suspend your  online  banking account . \",1\n\"Subject: save your money by getting an oem software !  need in software for your pc ? just visit our site , we might have what you need . . .  best regards ,  kenia \",1\n\"Subject: software for system builders , resellers , and hardware purchasers only .  get latest softwares , 99 % savings .  the two most abundant things in the universe are hydrogen and stupidity .  i know nothing except the fact of my ignorance .\",1\n\"Subject: fantastic investors info  maisonette international enterprises ltd ( maen )  a soiid hoiding of companies with constant revenue generating  businesses , offering unique products and services to the genera | public and  professionais .  current price : 0 . o 9  is this an undiscovered gem that is positioned to go higher ? review  exactly what this company does . does it sound new and exciting to you ?  watch this one trade tuesday .  breaking news ! !  maisonette home products , ltd . receives exclusive agreement for export  of paneiized homes in the united kingdom  maisonette home products , ltd . , the canadian subsidiary of maisonette  international enterprises ltd . ( maen ) is pleased to announce that it  has entered into a definitive officia | | icensing agreement with winton  giobal , ltd . to exclusively export winton globa | ' s paneiized  prefabricated homes to the united kingdom .  under the terms of the agreement , maisonette will act as exclusive  agent for winton gioba | and sell its prefabricated paneiized homes to  developers in the united kingdom . the company is in advanced stages of  negotiations with severa | developers in the united kingdom for the export of  up to 250 panelized homes to be erected in the uk .  alain ghiai founder , commented , ` ` this new venture is right in | ine  with maisonette home products plan to promote the export of british  coiumbia ' s lumber products overseas . we have had numerous interests in asia  and the united kingdom . we plan to start with a smailer order of 4 o  homes and grow the relationship from there . the operation is going to  increasee our canadian company ' s revenues and will contribute positiveiy to  the bottom | ine of the company ' s profits . i look forward to introduce  our canadian | umber products and fine craftsmanship at the competitive  prices canadian | umber products are famed for . ' '  the vaiue of the first order ranges in the severa | mi | | ions of canadian  doliars in revenue for maisonette home products , ltd .  about maisonette international enterprises ltd .  maisonette internationa | enterprises ltd . is a publiciy held hoiding  company incorporated in nevada , usa . its assets inciude severa |  subsidiaries with interests in e - business , oniine retaiiing and lifestyie  content , and buiiding materials for the general pubiic and professionais .  conclusion :  the exampies above show the awesome , earning potentia | of littie known  companies that explode onto investor ' s radar screens ; many of you are  aiready famiiiar with this . is maen poised and positioned to do that for  you ? then you may feel the time has come to act . . . and piease watch  this one trade tuesday ! go maen .  penny stocks are considered highly specuiative and may be unsuitable  for ail but very aggressive investors . this profile is not in any way  affiiiated with the featured company . we were compensated 3 ooo dollars  to distribute this report . this report is for entertainment and  advertising purposes only and should not be used as investment advice .  if you wish to stop future mail - ings , or if you fee | you have been  wrongfu | | y piaced in our membership , send a biank e mail with no thanks in  the sub ject to daily _ 2 tip @ yahoo . com\",1\n\"Subject: save your money buy getting this thing here  you have not tried cialls yet ?  than you cannot even imagine what it is like to be a real man in bed !  the thing is that a great errrectlon is provided for you exactly when you want .  ciaiis has a iot of advantaqes over viagra  - the effect iasts 36 hours !  - you are ready to start within just 10 minutes !  - you can mix it with alcohol ! we ship to any country !  get it riqht now ! . \",1\n\"Subject: 70 percent off your life insurance get a free quote instantly .  question :  are you paying too much for life insurance ?  most  likely the answer is yes !  here ' s why . fact . . . fierce , take no prisoner , insurance industry  price wars have driven down  premiums  - 30 - 40 - 50 - even 70 % from where they were just a short time ago !  that ' s why your insurance company doesn ' t want you to read this . . .  they will continue to take your money at the price they are already charging  you , while offering the new lower rates ( up to 50 % , even 70 % lower ) to  their new buyers only .  but , don ' t take our word for it . . . click  hereand request a free online quote . be prepared for a  real shock when you see just how inexpensively you can buy term life insurance  for today !  removal  instructions : this message is sent in compliance with the proposed bill  section 301 , paragraph ( a ) ( 2 ) ( c ) of s . 1618 . we obtain our list data from  a variety of online sources , including opt - in lists . this email is sent  by a direct email marketing firm on our behalf , and if you would rather  not receive any further information from us , please click  here . in this way , you can instantly opt - out from the list  your email address was obtained from , whether this was an opt - in  or otherwise . please accept our apologies if this message has reached you  in error . please allow 5 - 10 business days for your email address to be removed  from all lists in our control . meanwhile , simply delete any duplicate emails  that you may receive and rest assured that your request to be taken off  this list will be honored . if you have previously requested to be taken  off this list and are still receiving this message , you may call us at 1 - ( 888 )  817 - 9902 , or write to us at : abuse control center , 7657 winnetka ave . , canoga  park , ca 91306 \",1\n\"Subject: save your money buy getting this thing here  you have not tried cialls yet ?  than you cannot even imagine what it is like to be a real man in bed !  the thing is that a great errrectlon is provided for you exactly when you want .  ciails has a iot of advantaqes over viaqra  - the effect lasts 36 hours !  - you are ready to start within just 10 minutes !  - you can mix it with aicohol ! we ship to any country !  get it riqht now ! . \",1\n\"Subject: lose 20 pounds in 10 days 27540  lose weight fast , without special diets or expensive foods  no starving yourself !  if you are tired of starvation diets , body wraps , fad diets , grueling exercise , or hypnosis to lose weight then you have just made the best choice of your life by  reading this email !  we ' re not kidding , and as you will see we back it up with our lifetime money - back guarantee !  new ! extreme power plus - proven  weight loss system -  for more details or to order now click our url ! http : / / loseweightfast ! / ad . html  some browsers do not  accept hyperlinks , so if the above link does not work , cut paste  it in your browser ' s url box .  lifetime money back guarantee ! it ' s almost to good to be true ! extreme power plus is here just in time ! order  today get free shipping * ! ! !  click  here http : / / loseweightfast ! / ad . html  as with all dietary supplements or exercise program , please consult your physician for their advice .  * note : on orders of 3 bottles or more only ( us  orders only ) .  you  are receiving this special offer because you have provided  permission to receive email communications regarding special  online promotions or offers . to discontinue any further messages  from this company , please click  here to unsubscribe from our mailing list \",1\n\"Subject: from brand names to generics , from overexpenditures to great sav . vings .  with a tight budget , can you gain effective alleviations ? there are a lot of  vvays to help you out .  require quality curatives on mild to severepain , sleepingdisorder ,  menscare , womenscare , overvveight or other afflictions ? uncover the finest  offerings .  our medzone has a better option for sh . oppers . with our range of generic  equivalent , it is easier to gain the mitigations .  brovvse our collections if you do vvant to sa . ve on medicaments .  the latest info . about the shipments will be shovvn in real . time .  vov ! lead you to simple sav . vings .  briar , whil their uprightness ; protesting that she was convinced of sailors  having  and nearly turning his back to them all , was engrossed by writing .  e i was sent in to ge t my tea . when he was gone , m  y mother as more worth and warmth than any other set of men in england ;  ked me all about the day i 1 had had , and what 7 they had said and done .  i men tioned what they had said a\",1\n\"Subject: are you ready to get it ?  hello !  viagra is the # 1 med to struggle with mens ' erectile dysfunction .  like one jokes sais , it is strong enouqh for a man , but made for a woman ; - )  ordering viagra online is a very convinient , fast and secure way !  miiiions of people do it daily to save their privacy and money  order here . . . \",1\n\"Subject: shopping for software ? now in your language & currency !  microsoft and ibm oem software for bundling only and other related software .  how to make god laugh : tell him your future plans .  experience consists of experiencing that which one does not wish to experience\",1\n\"Subject: breathtaking image for your company now  working on your company ' s image ? start with a  visual identity a key to the first good impression . we are here to  help you ! we ' ll take part in buildinq a positive visuai imaqe  of your company by creatinq an outstanding logo , presentabie stationery  items and professionai website . these marketing tools wiii siqnificantly  contributeto success of your business . take a look at our work samples , hot deai packaqes and  see what we have to offer . we work for you !  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: do not settle for less than a rolex .  italian crafted rolex from $ 75 to $ 275 - free shipping  http : / / revamp . fcke . com / repli / dir /  it is easy to be brave from a safe distance .  the multitude of books is making us ignorant .  it is better to be envied than pitied .  no bird soars too high if he soars with his own wings .\",1\n\"Subject: ke casino spring fling competition : ) fre : rpvnltb  welcome to ms @ casino - a revolution in cyber gamlng !  ms @ casino establishes a turning point in casino history by  uniquely allowing players worldwide to play as dealer thus  receiving some of the most favorable odds normally reserved for  the casino .  ms @ casino offers popular games , including black - jack , roullette ,  slot machines and video poker all featuring unmatched graphics and sounds .  you may play with real money or just play for fun ( no bank details needed )  questions and answers  - - - - - - - - - - - - - - - - - - - -  q : ms @ casino offers matchless credibility and it ' s easy to check . how ?  a : robert as player and graham as dealer enter one of the games . once the game  is over , they verify that one ' s losing sum is the other ' s winning sum .  q : ms @ casino offers the highest payouts available . how is that possible ?  a : payouts are constant in games like blackjack and roulette ( and for all  games with the same rules ) . ms @ casino ' s unique concept allows players to  become the dealer , which improves their winning odds , thus bo 0 sting  their payout rates .  the top daily player ( determined at 23 : 59 ) gets $ 200 bonus !  winnings generated from playing as dealer are also accumulated .  the scoreboard will be updated every hour .  visit our site http : / / 4 highrollers . net - try your luck no deposit required !  best regards ,  virginia hancock  casino manager \",1\n\"Subject: a 1 time charge add your property / services no additional annual  membership fees to our vacation guide  our vacation requests have grown in your region . we are offering this special membership . a 1 time setup fee no additional annual charges .  your membership includes all of this . username and password access for unlimited editing of text and pictures . 4 color pictures . direct email link , homeowners web site url as well as availability link and hit counter . you can search our listings by country , state / province , city / region or you can search by category . your price is $ 85 . 00 this membership is good for as long as you own the property . no additional charges or fees . \"\" lifetime of ownership \"\"  we are getting many vacation requests for your region . please take advantage of this special offer for the next 100 owners who sign up and pay for the membership . you can see our site . http : / / www . . net  all you have to do is click on membership top right hand corner follow the procedure and select \"\" see special \"\" the lifetime option when you enter your info .  if you have any questions . info @ . net  dave staff  mvwin po box 2896 edgartown , ma 02539 this e - mail message is an advertisement and / or solicitation .\",1\n\"Subject: localized software , all languages available .  hello , we would like to offer localized software versions ( german , french , spanish , uk , and many others ) .  ail listed software is availabie for immediate downioad !  no need to wait 2 - 3 week for cd delivery !  just few examples :  - norton lnternet security pro 2005 - $ 29 . 95  - windows xp professional with sp 2 fuli version - $ 59 . 95  - corei draw graphics suite 12 - $ 49 . 95  - dreamweaver mx 2004 ( homesite 5 . 5 includinq ) - $ 39 . 95  - macromedia studio mx 2004 - $ 119 . 95  just browse our site and find any software you need in your native language !  best reqards ,  lyndsey \",1\n\"Subject: anti - aging that works . no more botox  no more painful botox sessions . . .  we have the botox replacement cream is stokc !  this is the same cream used by celebrities worldwide to replace botox injections . tom cruise , gisele bundchen , britney spears , nicole kidman . . .  you ' re a beautiful person , you use expensive creams , maybe you even use ours . . . but here you can seva 70 % .  so , stop the pain now ! replace botox now !  3 days worldwide dlelivery  http : / / www . botoxforless . info\",1\n\"Subject: you don ' t satisfy me fgtpril  a man endowed with a 7 - 8 \"\" hammer is simply  better equipped than a man with a 5 - 6 \"\" hammer .  would you rather havemore than enough to get the job done or fall very short . it ' s totally upto you . our methods are guaranteed to increase your size by 1 - 3 \"\" enter here and see how \",1\n\"Subject: application was accepted . confirm results  we tried to contact you last week about refinancing your home at a lower rate .  i would like to inform you know that you have been pre - approved .  here are the results :  * account id : [ 698 - 184 ]  * negotiable amount : $ 125 , 063 to $ 692 , 879  * rate : 3 . 40 % - 5 . 33 %  please fill out this quick form and we will have a broker contact you as soon as possible .  regards ,  adolfo stanley  senior account manager  prime lenders , inc .  database deletion :  http : / / www . mon - nowz . net / r . php \",1\n\"Subject: workss good  want to know how to save over overrode 60 % on your piils ?  http : / / ww smoothfaced w . centralreal . com - successfull and proven way livable to sa valuer ve your money .  tuberculin v  a vermouth g  corporal al  l circlet u  jailbird l  r wellboring a ostrogoth cl  descale isva verity l  research m  andmanyother .  b recant est prlces .  high quaiity unspoilt .  worldwide shlppln inferno g .  total confidenti galoot aiity .  250 . 000 + satisfied custome cactus rs .  have a sprocketwheel nice day !\",1\n\"Subject: mcle seminars  click  here  to be removed from our email list .  july  6 - 7 , 2002  cost : $ 795 *  held at the hilton waikola village , hawaii  register and pay by may 31 and recieve 10 % off ! ( $ 715 . 50 )  * air ,  hotel , and activities not included  the  presentation was extremely informative and entertaining .  fun  for the whole family . . . a great reason to take a vacation !  * * * *  limited space available  * * * *  hours  includes  12 . 5 hours of participatory :  6 . 0  ethics  3 . 0  substance  abuse  1 . 5  emotional  distress  1 . 0  elimination  of bias in the legal profession  1 . 0  general  legal education  audio materials for remaining mcle  credits will be available at the seminar .  brought  to you by :  bar  approved curriculum  approved  by arizona , arkansas , california , georgia , idaho , iowa ,  kansas , louisiana , maine , missouri , montana , nevada ,  new hampshire , new mexico , north carolina , north dakota ,  oregon , pennsylvania , south carolina , tennesee , texas ,  utah , virginia , washington state , and wisconsin bar  associations . approval pending for alabama and minnesota .  call  attorney connections at ( 800 )  221 - 8424  to reserve your package today !  or :  click here to print the reservation form and fax to ( 760 )  731 - 7785 ; or  mail to : attorney connections , p . o . box 1533 , bonsall , ca  92003 \",1\n\"Subject: failure notice  hi . this is the qmail - send program at bouncehost .  i ' m afraid i wasn ' t able to deliver your message to the following addresses .  this is a permanent error ; i ' ve given up . sorry it didn ' t work out .  :  sorry , no mailbox here by that name . vpopmail ( # 5 . 1 . 1 )  - - - enclosed are the original headers of the message .\",1\n\"Subject: returned mail : see transcript for details  the original message was received at tue , 19 jul 2005 12 : 57 : 50 + 0200  from [ 218 . 159 . 229 . 14 ]  - - - - - the following addresses had permanent fatal errors - - - - -  - - - - - transcript of session follows - - - - -  554 5 . 0 . 0 username or alias unknown  550 5 . 1 . 1 . . . user unknown\",1\n\"Subject: ( no subject )  copy any dvd movie using your cd  burner now !  copy dvd now makes it  possible to copy  dvd on cd - r using your computer ' s  cd burner .  you may now copy dvd movie with just one click .  we provide latest and easiest method that eliminates the  use  of conventional dvd copying equipments in dvd burning  process .  this method uses advanced dvd rippers .  copy dvd movies to cd - r ,  encode dvd  to vcd , svcd , xvcd or xsvcd and even create your own  chapters .  all you need is dvd  rom , cd burner and blank  cd ' s .  why spend thousands of  dollars on conventional  dvd copying equipment when you may burn and copy dvd ' s right from  your computer ' s  cd burner .  you  can copy any dvd to cd - you get manual and software  both  copy your dvd ( pal or ntsc ) to cd using your cd burner  make backup copy of dvd to cd - r or cd - rw  play movie from computer , computer to tv or on  any standard dvd player  make backup of your entire dvd collection  make vcd , svcd , xvcd or xsvcd in one click  only .  you may even fit entire dvd on one cd !  create chapters or time intervals on vcd or svcd  no need of having 6 - 8 gb free hard disk space !  what you get in the  package  our interactive manual will walk you through the entire  process of  copying dvd as vcd , svcd , xvcd or xsvcd .  you will be ripping dvd ' s and burning them to cd ' s like a  pro once  you have gone through this easy to follow manual . we have  also included  screenshots for additional clarity to use .  instant downloadable access to the software . stop waiting  for the product to arrive  in mail .  everything is provided to help you start copying your dvd ' s  right  away ! all you need to have is dvd rom , cd burner and few  blank cd ' s !  that ' s it . no dvd burner or dvd copying equipment is  required !  and that ' s not all ! if you buy it now you get free  updates  and upgrades for life ! plus other bonuses .  you get everything needed  to right  away start  copying and burning your dvd to cd .  instant download !  win 95 / 98 / me / nt / 2000 / xp compliant  limited time offer ! ! ! only  $ 39 . 95  to order the dvd burner right now for the super low price of only  $ 39 . 95  with a visa or mastercard ,  just fill out the order form below .  free  bonus # 1  buy  today and you get free updates for life !  if you buy our package now , we will provide you upgrades  and updates  to all future versions of copydvd now absolutely free ! !  this offer alone will save you tons of money for future  upgrades and  keep you updated with the technology .  a  real win win situation ! !  free  bonus # 2  introducing a new technology that  pc magazine calls \"\" revolutionary \"\" and the new york times  calls \"\" ingenious . \"\"  access  and control your pc from anywhere in the world  with almost any operating  system . begin working on your host computer as if you were  sitting  in front of it .  this  product is the cnet editors ' choice pick for remote  access , and they say  \"\" you ' d be nuts not to sign up \"\"  you get free 30 day trial when you buy our package of  copydvdnow today .  more info  join our mailing list to be first to know about fresh  quality  programs and utilities . our list includes selected , tested and  quality freeware , shareware and other software only .  * legal disclaimer *  it is illegal to make copies of copyright material for the purpose  of  selling it to third party . law provides you to make one back up  copy for  personal use . we do not encourage or promote piracy . this program  is not  meant for those who intend to break copy right law and indulge in  illegal  activities . this program serves merely as a guide to help end user  to  backup his personal dvd ' s . all applications suggested in this  package are  not sold as a part of this kit but are freeware and can be  downloaded for  free . by purchasing this package you agree to this disclaimer and  also  agree to use it in most ethical manner . you agree to waive all  liabilities  associated with this program to the provider and associates .  order today . . satisfaction is guaranteed or your money back !  only  $ 39 . 95 !  order  formipping  first name :  last name :  street address :  city , state , zip :  ,  company :  e - mail :  phone :  comments :  credit card type : ( vvvv wwww  xxxx yyyy zzzz )  visamastercard  card number :  expiration date :  3121 wkca 6 - 841 pmnzll 6\",1\n\"Subject: new love tabs shop .  visit our llcensed online dragstore for the best inexpensive love drags ! viagra , ciaiis , softtabs and many other love enhancers ail in one !  operative support , fast shipping , secure payment processing and compiete confidentiaiity !  ciick here to find your verlfled by bbb and approved by vlsa iove pil 1 ! \",1\n\"Subject: you have won !  the prize award department  continental lotteries s . a .  c / o ? donnell 306 ,  28830 madrid  spain .  ref : cl / es / 1026 - 9172  batch : 31 - 2404 / 05  29 - 06 - 2005 .  winning notification .  congratulations first category prize winner ! you have been selected as one of six winners of the worldwide continental lotteries , madrid - spain , online ballot , drawn for may 2005 , therefore will be a privileged receiver of the grand prize of ? 531 , 220 . 17 ( five hundred and thirty one thousand , two hundred and twenty euros , sevevteen cents only ) . your e - mail address was attached to the winning number 5 - 11 - 14 - 20 - 31 - 45 . draw serial : 055 . this lottery is promoted and sponsored by multinationals companies of the european union . we in the worldwide continental lotteries , spain is by this program , diversifying our online balloting lotteries draws , developed and designed to satisfy the cravings of the ever growing number of participants in our various programs . with funds accrued from previous draws and unclaimed prizes , payouts to all winners is guaranteed and payments in a record time .  after randomly selecting 25 , 000 participants from an initial database of  4 . 500 . 000 emails and zonings , by their respective continents from across  the world , we produced an extensive list from which you have emerged as  one of the lucky winners of the grand draw prize .  to process your winnings and prize payment , you are to get in contact  with ;  mr . jorge diaz ( prize claims handler )  e - mail : diazge @ yahoo . es  tel : + 34 62 8091594  you are advised to keep your winning informations confidential untill your claim is processed and your money remitted to you in whatever manner you prefer . this is in line with our security policies , to avoid double claims and misapropriations of the lottery funds as it has happened in the past .  direct all further communications and enquiries to your category  prize claim handler and remember to include your reference and batch numbers .  congratulations once again from continental lotteries . thank you for being part of our promotional program .  note : do not reply to this mail address , contact your claim handler .  sincerely ,  javier ochoa suarez  international online coordinator\",1\n\"Subject: award winning notification  netherlands national promotion .  dayzers prime lottery  venlo the netherlands .  www . dayzers . nl  ref no : 428 / 77 / uml  batch no : 46 / 304 / gma  award winning notification :  dear sir / madam ,  we happily announce to you the draw of the dayzers prime lottery international programs held on the 11 th of july 2005 . your e - mail address attached to ticket number : 564 64701565 177 with serial number 7288 / 03 drew the lucky numbers : 42 - 6 - 37 - 13 - 37 - 8 , which subsequently won you the lottery in the 2 nd category . you have therefore been approved to claim a total sum of ( $ 1 , 000 , 000 . 00 ) one million united states dollars .  all participants were selected through a computer ballot system drawn from 25 , 000 company email addresses and 30 , 000 , 000 individual email addresses from australia , africa , new zealand , america , europe , north america and asia as part of uml international promotion .  congratulations ! ! ! due to mix up of some numbers and names , you are advised to keep your winning information confidential until your claims has been processed and your money remitted to your nominated bank . this is part of our security protocol to avoid double claims and unwarranted abuse of this programmed by some participants . all participants were selected through an e - mail balloting . this promotional programm takes place every two years . to file for your claim , please contact your fiducial agent by telephone and email for due processing , legalisation and final remittance of your prize money to a designated account of your choice .  claim fiducial agent  mr . porter williams .  email : dayzerslotterij @ walla . com  tel : 0031 624 759 973 .  remember , all winning must be claimed not later than 25 th july 2005 . after this date , all funds will be returned as unclaimed . please note , in order to avoid unnecessary delays and complications , remember to quote your reference number and batch number in all correspondence . furthermore , should there be any change of address do inform us as soon as possible .  note : to enhance the processing of your claim by your processing officer , you are advised to officially introduce yourself to the claim agent and also provide them with your valid means of your personal identification with a copy of this awards notification for references .  congratulations once more from our members of staff and thank you for being part of our promotional program .  mrs . loretha waxle ,  international lottery coordinator .  check - out go . com  go get your free go e - mail account with expanded storage of 6 mb !  http : / / mail . go . com\",1\n\"Subject: penis enlargement announcement  the penis patch is amazing  http : / / www . okmpoi . com / ss /  people with courage and character always seem sinister to the rest .  the end result of kindness is that it draws people to you .  my favorite animal is steak .  if we don ' t chase things - - sometimes the things following us can catch up .  successful people are very lucky . just ask any failure .\",1\n\"Subject: save your money buy getting this thing here  you have not tried cialls yet ?  than you cannot even imagine what it is like to be a real man in bed !  the thing is that a great errrectlon is provided for you exactly when you want .  ciaiis has a iot of advantaqes over viaqra  - the effect lasts 36 hours !  - you are ready to start within just 10 minutes !  - you can mix it with alcohol ! we ship to any country !  get it right now ! . \",1\n\"Subject: i missed you 24632  if amateurs is what you want , then we have them .  take a look at these hardcore sites . young hottt teens ! ! !  these are the best of the best when it comes to amateurs .  don ' t believe me ? take a look for yourself .  amateur petite  - - - - - - - - - - - - - - - - - - - - - - -  all natural tight coeds ! ! !  petite natural breasted amateurs ! !  exclusive amateur xxx videos ! ! !  hundreds of exclusive petite amateur models ! !  click here to check out the action ! ! ! !  http : / / tour 2 . amateurpetite . com / ? 1087  http : / / tour 2 . amateurpetite . com / ? 1087  ample amateurs  - - - - - - - - - - - - - - - - - - -  breasts . women have them , men love them . and for some men ( and women ! ) that old adage  \"\" the bigger the better \"\" holds true ! and you ' ll find plenty to hold on to here - our stable of stacked  exclusive ample amateurs will make your mouth water and your hands tired just looking at them !  http : / / tour 2 . ampleamateurs . com / ? 1087  http : / / tour 2 . ampleamateurs . com / ? 1087  amateur smut  - - - - - - - - - - - - - - - - - -  the smuttiest xxx amateurs on the web ! ! !  real amateurs in explicit photo shoots  1 , 000 ' s of high quality smut pics ! ! !  pics of \"\" the horny girl next door \"\"  nasty amateurs gone wild ! ! !  http : / / tourl . amateursmut . com / ? 1087  http : / / tourl . amateursmut . com / ? 1087  to be taken off this mailing list , simply hit your  reply button and put \"\" remove \"\" anywhere in the subject .\",1\n\"Subject: localized software , all languages available .  hello , we would like to offer localized software versions ( qerman , french , spanish , uk , and many others ) .  all listed software is available for immediate downioad !  no need to wait 2 - 3 week for cd deiivery !  just few exampies :  - norton internet security pro 2005 - $ 29 . 95  - windows xp professionai with sp 2 full version - $ 59 . 95  - corel draw graphics suite 12 - $ 49 . 95  - dreamweaver mx 2004 ( homesite 5 . 5 inciudinq ) - $ 39 . 95  - macromedia studio mx 2004 - $ 119 . 95  just browse our site and find any software you need in your native ianguage !  best reqards ,  karine \",1\n\"Subject: presenting funding with ease  the mort . . gage rates our company offers you are the lowest in 40 years !  if it is hard for you to believe this , visit our site now and see it for yourself .  there are absolutely no obligations and no commitments you have to make in order  to benefit from our service .  by using our fast , professional service , you will have the chance to be connected  professional brokers and lenders who need your business .  please fill the application below :  it takes 30 seconds only !  http : / / nineteenshots . com / realtor /  enjoy and have a nice day !  michael rickards  no more ?  http : / / nineteenshots . com / no /\",1\n\"Subject: we have been rated as # 1 one - stop - shop internet pharmacy .  get prescription medicine for less !  religions change ; beer and wine remain .  you cannot keep a man down without staying down with him .  the sands are number ' d that make up my life .\",1\n\"Subject: want to make a million ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !  want to make a million bucks this year ?  me too but it ' s probably not going happen !  however if your looking for the opportunity to  make a couple thousand a week ,  working form home , with your pc , we need to talk .  if you ' re over 18 and a us resident ,  just click reply  send me your name , state ,  complete telephone number ,  and the best time to contact you .  i will personally speak with you within 48 hours .  - - - -  this sf . net email is sponsored by : thinkgeek  welcome to geek heaven .  http : / / thinkgeek . com / sf  spamassassin - sightings mailing list \",1\n\"Subject: impress your girl with a huge cumshot !  heya !  has your cum ever dribbled and you wish it had shot out ?  have you ever wanted to impress your girl with a huge cumshot ?  spur - m is the only site to offer an all natural male enhancement  formula that is proven to increase your sperm volume by up to 500 % .  our highly potent , volume enhancing formula will give our results  in days and comes with an impressive 100 % guarantee .  imagine the difference ( look and feel ) between dribbling your cum  compared to shooting out burst after burst . try spur - m now ! and  with our money back guarantee you have absolutely nothing to lose !  look here : http : / / tabboulehs . net / cum /  no thanks : http : / / tabboulehs . net / rr . php\",1\n\"Subject: greatly improve your stamina  the longz system , both the capsules and the free instructional manual , give  you the most effective ways to reach immediate size gains and improve the  strength and power of your erections .  90 % of males were interested in improving their sexual stamina ,  performance , and the size of their manhood . are you one of the 90 % ?  i want to let u guys know that i have seen over 1 inch in length increase  since i started taking ur system . the exercises are easy too . i use them  both and this is awesome . clancy , spokane  check out the only male enhancement formula with a free dvd  http : / / 7 o . wc . hugevirtuousitems . com / k /  not for you , then use link above  then he examined his map of europe . i believe i ' ll take a run over to  paris , he thought  i must be home again by saturday , to meet the demon , so i ' ll have to make  every day count\",1\n\"Subject: the penis patch is amazing  the penis patch is amazing  http : / / www . gretan . com / ss /  who can believe that there is no soul behind those luminous eyes !  nobody cares if you can ' t dance well . just get up and dance .  no man is happy who does not think himself so .  though this be madness , yet there is method in ' t .  hell has no benefits , only torture .\",1\n\"Subject: very sspecial offr  hello , welcome to pharmon blaspheme line s numeral hop  - one of the leading oniine pharmaceuti whether cal shops  phantasmagoria v  tercet g  rencontre al  l humect l  l perpetuation a  debtor ra mountain cl  i plenipotentiary sv dissert a  u trecento m  andmanyother .  - save ov vestry er 50 %  - worldwide misconceive shlpplng  - total confidentiaii unmarried ty  - over 5 miiiion customers vitalism in 130 countries  have a n viscid ice day !\",1\n\"Subject: delivery status notification ( failure )  this is an automatically generated delivery status notification .  delivery to the following recipients failed .  magnus . hammar @ hes . hammars . com\",1\n\"Subject: delivery status notification  - these recipients of your message have been processed by the mail server :  maubev @ aliceposta . it ; failed ; 5 . 7 . 1 ( delivery not authorized , message refused )  maxdaffy @ aliceposta . it ; failed ; 5 . 7 . 1 ( delivery not authorized , message refused )\",1\n\"Subject: the database that bill gates doesnt want you to know about ! ! ! ! !  important notice : regarding your domain name  * if you own a . com / . net / . org , you are advised to register  your . ws \"\" web site \"\" domain before someone else takes it forever .  * major corporations such as yahoo , att & intel , have all  registered their . ws \"\" web site \"\" domains for their company names  as well as all their trademarks , to protect them forever .  * . ws \"\" web site \"\" domains are in 180 + countries worldwide  * availability for . ws is ~ 88 % compared to ~ 24 % for . com  we thought you ' d find the article on . ws below interesting .  if you want more information on where to register . ws \"\" web site \"\"  domains , and how to get a discount on multiple registrations ,  contact us at http : / / www . netleads . ws / morgan  also , if you would like to increase traffic to your web site ,  by submitting your url to 500 + search engines and directories  at once , then call us today .  sincerely ,  joe & stacy morgan  + 1 . 888 . 660 . 0625  internet names , llc .  # # # # # # # # # # # # # # # # # # # # # # # # #  news release :  . ws ( website ) domains strikes landmark deal :  gdi receives $ 2 , 250 , 860 for the rights to 311 \"\" premium \"\" . ws domain  names .  - - -  last week , gdi ( global domains international , inc . ) , the registry for . ws  \"\" web site \"\" domains , closed a deal with a large publicly traded company ,  one of the biggest players in the . com arena , and received payment in  full of $ 2 , 250 , 860 for the rights to a select group of \"\" premium \"\" . ws  domain names . the 311 domain names will be resold to the highest  bidders and ultimately developed into substantial . ws web sites , giving  . ws even more publicity down the road .  to be be removed http : / / www . netleads . ws / remove\",1\n\"Subject: you don _ t know how to get into search engine results ?  submitting your website in search engines may increase  your online sales dramatically .  lf you invested time and money into your website , you  simply must submit your website  oniine otherwise it wili be invisibie virtualiy , which means efforts spent in vain .  lf you want  people to know about your website and boost your revenues , the oniy way to do  that is to  make your site visible in places  where people search for information , i . e .  submit your  website in muitipie search engines .  submit your website oniine  and watch visitors stream to your e - business .  best regards ,  norasweeney _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: your membership community charset = iso - 8859 - 1  your membership community & commentary ( august 3 , 2001 )  it ' s all about making money  information to provide you with the absolute  best low and no cost ways of providing traffic  to your site , helping you to capitalize on the power  and potential the web brings to every net - preneur .  - - - this issue contains sites who will trade links with you ! - - -  - - - - - - - - - - - - -  in this issue  - - - - - - - - - - - - -  top ten most important things to do today  member showcase  commentary quick tips  win a free ad in community & commentary  | | | = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = > >  today ' s special announcement :  | | | = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = > >  right now , this week only - we have left over inventory , it ' s  unsold , but not for long . if you could use 1 million banner  ads all targeted and dirt cheap go here today . this package  is guaranteed ! ! it ' s tough to fail when you can show your ad  to 1 , 000 people for less than a buck ! a free custom banner  will be made for you with this deal !  | | | = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = > >  you are a member in at least one of these programs  - you should be in them all !  http : / / www . bannersgomlm . com  http : / / www . profitbanners . com  http : / / www . cashpromotions . com  http : / / www . mysiteinc . com  http : / / www . . com  http : / / www . freelinksnetwork . com  http : / / www . myshoppingplace . com  http : / / www . bannerco - op . com  http : / / www . putpeel . com  http : / / www . putpeel . net  http : / / www . sellinternetaccess . com  http : / / www . be - your - own - isp . com  http : / / www . seventhpower . com  = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - =  top ten most important things to do today  = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - =  top ten most important things to do today  by michael e . angier  this is my list . they ' re the ones i ' ve selected for my life at  present . consider them suggestions for yourself - - ideas to  help you generate your own top ten list . by getting clear  on and acting upon your most important steps , you ' ll be  moving toward and experiencing your highest and best .  1 . practice gratefulness . reflect upon the things in my life for  which i ' m grateful . if i appreciate more of what i have , i will  have even more to appreciate .  2 . write out my three most important goals and visualize  how my life will be when i have achieved them . feel it .  experience it in as much sensory detail as i can possibly  imagine .  3 . take some action steps toward each of the three goals .  4 . exercise my body and monitor carefully what i eat and  drink . reduce fat and caloric intake while expending more  calories . eat only small amounts at one time .  5 . read something educational , inspirational or  entertaining - - preferably all three .  6 . meditate . empty my conscious mind and listen to the  super - conscious .  7 . have fun doing something i love to do . experience joy .  8 . write something - - anything . if not an article or part of  my book , then write in my journal .  9 . perform some act of kindness . do a thoughtful ,  magnanimous thing - - anonymously if possible .  10 . finish something . do something i can call complete .  bonus step : make something work better - -  practice ads : automate , delegate and systemize .  copyright 2001 michael angier & success networks international .  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  about the author . . .  michael angier is the founder and president of success networks .  success net ' s mission is to inform , inspire and empower people  to be their best - - personally and professionally . download their  free ebooklet , keys to personal effectiveness from  http : / / www . successnet . org / keys . htm . free subscriptions ,  memberships , books and successmark cards are available at  http : / / www . successnet . org  = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - =  member showcase  = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - =  examine carefully - those with email addresses included will  trade links with you . . . you are encouraged to contact them .  there are many ways to build a successful business - just look  at these successful sites & programs other members are involved  in . . .  * * * * * * * * free cd - rom software * * * * * * * * *  over 1000 high quality software titles on cd - rom  absolutely free ! yes , the software is free , ( s / h )  click here : http : / / www . adreporting . com / at . cgi ? a = 156074 & e = / 2 /  stop smoking - free lesson ! !  discover the secret to stopping smoking .  to master these powerful techniques , come to  http : / / www . breath - of - life . net for your free lesson .  act now ! p . s . tell someone you care about .  trade links - jturco 3 @ hotmail . com  for a limited time only , we are offering - - two - - free ebooks  to show you how to make money on the internet !  use our proven , duplicatable methods to get in on  this exploding opportunity now ! visit us at :  http : / / www . abundance - group . com to collect your free offers !  trade links - gina @ abundancegroup . com  life without debt ! what would you do with 5 , 000 10 , 000  20 , 000 100 , 000 ? a \"\" dream team \"\" of heavy hitters are  gathering to promote life without debt . get in now to  receive massive spillover in the 2 x matrix .  http : / / trafficentral . com / lwd / index . htm  if you have a product , service , opportunity or quality  merchandise that appeals to people worldwide , reach your  targeted audience ! for a fraction of what other large  newsletters charge you can exhibit your website here , and  trade links for only $ 8 cpm . compare that to the  industry average of $ 10 - $ 15 cpm . why ? . . . because as a  valuable member we want you to be successful ! order today -  showcases are limited and published on a first come , first  serve basis . for our secure order form , click here :  http : / / bannersgomlm . com / ezine  = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - =  commentary quick tips  = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - =  website recommendation :  here is a site with some useful tips .  example - test your internet connection speed .  http : / / www . camscape . com / tips /  i doubled my dsl speed with just one minor tweak  suggested by one of the links given .  submitted by f . knopke  imco @ telusplanet . net  ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~  do you have a marketing hint , product recommendation , or  online gem of wisdom you ' d like to share with your fellow  subscribers ? with your 2 - 10 line quick tip include your  name and url or email address and we ' ll give you credit  for your words of wisdom .  and , if you ' re looking for free advertising , this isn ' t  the place - check out the ' one question survey ' below for  a great free advertising offer .  send it in to mailto : submit @ aeopublishing . com  with ' quick tip ' in the subject block .  = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - =  win a free ad in community & commentary  = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - =  to keep this interesting , how about this , every month we ' ll  draw a name from the replies and that person will win one  sponsorship showcase in the community & commentary , for free .  that ' s a value of over $ 800 . 00 ! respond to each weekly survey ,  and increase your chances to win with four separate entries .  question of the week ( 08 / 03 / 01 ) . . .  no right or wrong answers , and just by answering  you are entered to win a sponsorship showcase - free !  ~ ~ ~ how many email messages do you get per day ? ~ ~ ~  less than 40 mailto : one @ aeopublishing . com  41 - 100 mailto : two @ aeopublishing . com  101 - 300 mailto : three @ aeopublishing . com  301 - 1000 mailto : four @ aeopublishing . com  more than 1000 mailto : five @ aeopublishing . com  to make this as easy as possible for you , just click on the  hyperlinked answer to send us an e - mail - you do not need to  enter any information in the subject or body of the message .  * * add your comments ! follow directions above and  add your comments in the body of the message , and we ' ll  post the best commentaries along with the responses .  you will automatically be entered in our drawing for a free  sponsorship ad in the community & commentary . please  respond only one time per question . multiple responses  from the same individual will be discarded .  last weeks ' s survey results paid the fees ;  and , promptly assigned my www . schoolofgeomatics . com  address to a porn shop . thus , i lost 4 years of building  up lst place rankings on 12 search engines and 2 nd place  on 8 more . this set me back about 4 months : i believe i  lost a minimum of $ 50 , 000 .  i have also been hit with viruses about 10 times . the first  time i lost almost 4 months of work . now , i back up often  enough to not to lose so much time . this is also internet  theft . these people are nothing but out and out criminals  and should spend years behind bars .  customers are well protected from credit card theft ;  however , merchants can lose a lot of money . i sell only by  purchase order and certified or registered company checks .  - - peter s . http : / / www . gssgeomatics . com  ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~  july winner announced !  and the july ' one - question survey ' winner is . . .  john stitzel - oldstitz @ yahoo . com  congratulations john !  = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - =  = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - =  to change your subscribed address , send both new and old  address to mailto : submit @ aeopublishing . com  see the link ( below ) for our subscription center to unsubscribe  or edit your interests .  please send suggestions and comments to :  mailto : editor @ aeopublishing . com  i invite you to send your real successes and showcase  your strategies and techniques , or yes , even your total bombs ,  \"\" working together we can all prosper . \"\"  mailto : submit @ aeopublishing . com  for information on how to sponsor your membership  community & commentary visit : http : / / bannersgomlm . com / ezine  copyright 2001 aeopublishing . com  web : http : / / www . aeopublishing . com  this email has been sent to jm @ netnoteinc . com at your  request , by your membership newsletter services .  visit our subscription center to edit your interests or unsubscribe .  http : / / ccprod . roving . com / roving / d . jsp ? p = oo & id = bd 7 n 7877 . 8 lhtdma 6 & m = bd 7 n 7877 charset = iso - 8859 - 1  in this issue  top ten most important things to do today  member showcase  commentary quick tips  win a free ad in community & commentary  today ' s special announcement :  this email was sent to jm @ netnoteinc . com , at your request , by your membership newsletter services .  visit our subscription center to edit your interests or unsubscribe .  view our privacy policy .  powered by \",1\n\"Subject: more vv  want to know h furfur ow to save over 60 % on your piils ?  http : / / w postillion ww . pledelo . com - successfull and proven uncurtained way to s warship ave your money .  orthographical v  liquid ag  a stagnancy l  l supernaculum u  clothing l  concert rac docket l  i groceteria sva spectrum l  cockcrow m  andmanyother .  best pyaemia prlces .  high quaiit glazed y .  worldw soldiership ide shlpplng .  to invisible tal confidentiaiity .  2 underage 50 . 000 + satisfied customers .  have a nice horoscope day !\",1\n\"Subject: are you ready to get it ?  hello !  viagra is the # 1 med to struggle with mens ' erectile dysfunction .  like one jokes sais , it is strong enough for a man , but made for a woman ; - )  orderinq viaqra oniine is a very convinient , fast and secure way !  miiiions of peopie do it daiiy to save their privacy and money  order here . . . \",1\n\"Subject: unauthorized transactions on your account  update your account  dear  valued cust omer  we r  egret to inform you that your account at  ebay could be suspended if you don ' t update your billing  information .  to resolve this problem please click  here and login to your  account in order to resolve the update process . if your  account inform ation  is not updated , your ability to access the ebay your account  will beco me  restricted .  as per the user agreement , we may immediately  issue a warning , temporarily suspend , indefinitely suspend or  terminat e  your membership and refuse to provide our services to you if  we believ e  that your actions may cause financial loss or legal liability  for you ,  our users or us . we may also take these actions if we are  unable to  verify or authenticate any information that you provide to  us .  due to the suspension of this account , please  be advised you are prohibited from using ebay in any way . this  include s  the enrolling of a new account . please note that this  suspension does  not relieve you of your agreed - upon obligation to pay any fees  you may  owe to ebay .  copyright 1995 - 2005 ebay inc . all rights  reserve d . designated  trademarks and brands are the property of their respective owners . u  se of this web site constitutes acceptance of the ebay user  agreement and privacy  policy . \",1\n\"Subject: softwares cds all software under $ 15 and $ 99 !  only our software is guaranteed 100 % legal .  a waist is a terrible thing to mind .  it is impossible to say just what i mean !\",1\n\"Subject: peniss growth patches are here ! . . . quintessential  good morning sir ,  check out the discounts these guys are offering on enlarge patches !  steel package : 10 patches reg $ 79 . 95 now $ 49 . 95 ! free shipping too !  silver package : 25 patches reg $ 129 . 95 , now $ 99 . 95 ! free shipping and free exercise manual included !  gold package : 40 patches reg $ 189 . 95 , now $ 149 . 95 ! free shipping and free exercise manual included !  platinum package : 65 patches reg $ 259 . 95 , now $ 199 . 95 ! free shipping and free exercise manual included !  millions of men are taking advantage of this revolutionary new product - don ' t be left behind !  \"\" my wife has become so much more interested in sex and now often initiates . thank you peniss viagr patch for enriching my marriage through an enhanced sexual relationship . \"\"  - rena sherman  try this peniss growth patchs out and see how it can change your life ! \",1\n\"Subject: all graphics software available , cheap oem versions .  good morning ,  we we offer latest oem packages of all graphics and publishinq software from corel , macromedia , adobe and others .  $ 80 adobe photoshop 8 . 0 / cs  $ 140 macromedia studio mx 2004  $ 120 adobe acrobat 7 . 0 professional  $ 150 adobe premiere pro 1 . 5  $ 90 corel designer 10  $ 90 quickbooks 2004 professional edition  $ 75 adobe paqemaker 7 . 0  $ 70 xara x vl . 1  $ 75 adobe audition 1 . 5  $ 90 discreet 3 d studio max 7  $ 115 adobe golive cs  $ 135 adobe after effects 6 . 5 standard  $ 45 adobe premiere eiements  $ 125 corel painter ix  $ 80 adobe illustrator cs  $ 80 adobe indesign cs  $ 240 adobe creative suite  $ 140 adobe framemaker 7 . 1  $ 50 uiead cool 3 d production studio 1 . 0 . 1  $ 90 alias motion buiider 6 professional  $ 30 quicken 2004 premier home & biz  $ 30 adobe photoshop eiements 3 . 0  $ 110 adobe premiere pro 7 . 0  learn more . . .  sincereiy ,  roseiee \",1\n\"Subject: harderr  hello , welcome to medzon vivacity line shop  we are pleased to introduce ourselves as one of the ieading online phar purree maceuticai shops .  purgatory v  reinforcement r  a fellow l  l nitrous l  la settee g  a cuisine cl  isv batter a  validate um  andmanyother .  - save ov steppe er 75 %  - total c pigsty onfidentiaiity  - worldwide recension shlpplng  - over 5 paradigm miilion customers in 150 countries  have a anemoscope nice day !\",1\n\"Subject: fbi color : 003399 ; font - size : 14 px ; font - weight : bold ; text - decoration : none ; }  awesome deals on seized and unclaimed  property the government auctions to the public . cars from $ 100 ,  real estate , jewelry , personal property , collectibles , antiques  and more .  click here  you are receiving this mailing because you are a  member of sendgreatoffers . com and subscribed as : jm @ netnoteinc . com  to unsubscribe  click here  or reply to this email with remove in the subject line - you must  also include the body of this message to be unsubscribed . any correspondence about  the products / services should be directed to  the company in the ad .  % em % jm @ netnoteinc . com % / em % \",1\n\"Subject: all graphics software available , cheap oem versions .  good morning ,  we we offer latest oem packages of all graphics and publishing software from corei , macromedia , adobe and others .  $ 80 adobe photoshop 8 . 0 / cs  $ 140 macromedia studio mx 2004  $ 120 adobe acrobat 7 . 0 professionai  $ 150 adobe premiere pro 1 . 5  $ 90 corei desiqner 10  $ 90 quickbooks 2004 professionai edition  $ 75 adobe pagemaker 7 . 0  $ 70 xara x vl . 1  $ 75 adobe audition 1 . 5  $ 90 discreet 3 d studio max 7  $ 115 adobe goiive cs  $ 135 adobe after effects 6 . 5 standard  $ 45 adobe premiere elements  $ 125 corei painter lx  $ 80 adobe lllustrator cs  $ 80 adobe lndesiqn cs  $ 240 adobe creative suite  $ 140 adobe framemaker 7 . 1  $ 50 ulead cooi 3 d production studio 1 . 0 . 1  $ 90 alias motion buiider 6 professional  $ 30 quicken 2004 premier home & biz  $ 30 adobe photoshop elements 3 . 0  $ 110 adobe premiere pro 7 . 0  learn more . . .  sincerely ,  karie \",1\n\"Subject: 3 . 5 % fixed payment 30 year loan  3 . 5 % fixed payment 30 years  lenders  make  you wait . . . they demand to interview you . . .  they intimidate you . . . they humiliate you . . .  and all of that is while they decide if they even want to  do business with you . . .  we  turn the tables on them . . .  now , you ' re in charge  just fill out our simple form and they will have to  compete for your business . . .  http : / / www . 1 strefinance . com / apply . htm  we  have hundreds of loan programs , including :  purchase  loans  refinance  debt consolidation  home improvement  second mortgages  no income verification  http : / / www . 1 strefinance . com / apply . htm  if  you no longer wish to receive any of our mailings you may be  permanently removed by mailto : info @ lenderscompete 4 you . com  if there has been any inconvenience we apologize . \",1\n\"Subject: no more need for a lift or support bra ! 1903  guaranteed to increase , lift and firm your  breasts in 60 days or your money back ! !  100 % herbal and natural . proven formula since 1996 .  increase your bust by 1 to 3 sizes within 30 - 60 days  and be all natural .  click here :  absolutely no side effects !  be more self confident !  be more comfortable in bed !  no more need for a lift or support bra !  100 % guaranteed and from a name you know and trust !  you are receiving this email as a double opt - in  subscriber to the standard affiliates mailing list .  to remove yourself from all related email lists ,  just click here : \",1\n\"Subject: [ ilug - social ] we want to trade with you  why spend your hard earned cash ?  barter your business product or service , personal item , collectible , excess inventory , hotel rooms , etc . for items and services you need . . . . . . . save your cash ! ! ! ! !  vacations , cell phones , collectibles , travel , sports tickets , radio , television and newspaper advertising , concert tickets , printing services , graphic design , bulk mail services , restaurants , meeting facilities , business maintenance , attorney and accounting services , marketing , consultants , web site design , travel , medical services , hotel furniture and much , much more !  we are a global marketplace , where you can list your products or services on the website and earn trade dollars when they sell . use these dollars to purchase what you need . you are not trading \"\" one on one \"\" , so anything in the system is available for you to purchase ! ! there is a very small cash commission on each transaction ( 3 % ) , but there is no membership fee . . . . . . its free . . . . . . . there are no monthly fees , no listing fees , no renewal fees .  we give you a $ 1500 credit line to start immediately ! ! !  if you do not see all of the items you are looking for today , be assured that as we enter the hundreds of thousands of individuals and businesses that are in our database you will find the things you want and need - - come back often  begin to barter today and save cash . . . . . . . it will be the best thing you ever did !  simply reply with the words \"\" more information \"\" in the subject line , and start trading today or with the word \"\" discontinue \"\" to receive no further notices .  - -  irish linux users ' group social events : social @ linux . ie  http : / / www . linux . ie / mailman / listinfo / social for ( un ) subscription information .  list maintainer : listmaster @ linux . ie\",1\n\"Subject: would you like a $ 250 gas card ?  don ' t let the current high price of gas get to you .  simply enter your zipcode to see if this promotion is available in your area .  qkppfiui\",1\n\"Subject: entrust your visual identity to us  thinking of breathing new life into your business ?  start from revamping its front - endlogo and  visualidentity .  we offer creative custom design of logos ,  stationery and web - sites . under our carefui hand thesepowerfui marketinq  toois will brinq a breath of fresh air into your business and make you stand out  amonqthe competitors .  you are just a ciick  away from your future success . ciick here to see the sampies of our artwork ,  checkour prices and hot offers .  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: banned cd ! banned cd !  i have been receiving emails saying that i ' m contributing to the \"\" moral decay of society \"\" by selling the banned cd . that may be , but i feel strongly that you have a right to benefit from  this hard - to - find information .  so i am giving you one last chance to order the banned cd !  with this powerful cd , you will be able to investigate your friends , enemies and lovers in just minutes using the internet . you can track down old flames from college , or you can dig up some dirt on your boss to make sure you get that next promotion !  or maybe you want a fake diploma to hang on your bedroom wall . you ' ll find addresses for companies that make these diplomas on the banned cd .  need to disappear fast and never look back ? no problem !  using the banned cd , you will learn how to build a completely  new identity .  obviously , the powers that be don ' t want you to have the banned cd . they have threatened me with lawsuits , fines , and even imprisonment unless i stop selling it immediately . but i feel that you have a constitutional right to access this type of information , and i can ' t be intimidated .  uncle sam and your creditors are horrified that i am still selling this product ! there must be a price on my head !  why are they so upset ? because this cd gives you freedom .  and you can ' t buy freedom at your local walmart . you will  have the freedom to avoid creditors , judgments , lawsuits , irs  tax collectors , criminal indictments , your greedy ex - wife or  ex - husband , and much more !  please click the url for the detail !  http : / / % 32 % 317 . % 31 % 30 % 36 . % 355 % 2 e 97  { % rand % }  you are receiving this special offer because you have provided permission to receive third party email communications regarding special online promotions or offers . we strongly oppose the use of spam email and do not want to send our mailings to anyone who does not wish to receive them . if you do not wish to receive any further messages from netcommission . to be removed from our list ,  - - - -  this sf . net email is sponsored by : thinkgeek  welcome to geek heaven .  http : / / thinkgeek . com / sf  spamassassin - sightings mailing list \",1\n\"Subject: cialis offers you the freedom of choosing the right moment .  get the medication you need delivered to your door in 24 hours .  while we stop to think , we often miss our opportunity .  a husband is always a sensible man ; he never thinks of marrying .  it is a bad plan that admits of no modification .\",1\n\"Subject: traditional & internet marketing tool  the ultimate traditional & internet marketing tool , introducing the \"\" masterdisc 2002 \"\" version 4 . 00 , now released its massive 11 disc set with over 145 million database records ( 18 - 20 gigabytes of databases ) for marketing to companies , people , via email , fax , phone and mailing addresses worldwide !  complete 11 disc set is all of the marketing data you will need for 2002 ! ! ! earn big profits this year ! ! !  we ' ve been slashing prices for limited time to get you hooked on our leads & data products .  the first disc ver 4 . 00 ( contains a 1 % sampling of all databases , all software titles , all demos , more then 20 million email addresses and many , many other useful resources ) including unlimited usage is yours permanently for just $ 199 . 00 ( normally $ 299 . 00 ) for your first disc if you order today ! ! ! also huge discounts from 15 % - 50 % off of data discs ver 4 . 01 to ver 4 . 10 regular price of $ 499 . 00 per disc .  for more information , ordering available records , and pricing contact us :  # 954 340 1628 voice ( promo code : md 2002 bb , mention this for one free disc valued at $ 499 . 00 with your first order ! ! ! )  * * * * masterdisc 2002 contents * * * *  we ' ve gone out of our way to insure that this product is the finest of its kind available . each cd ( ver . 4 . 01 to ver . 4 . 10 ) contains approximately 10 % of the 145 million records distributed within the following databases :  - 411 : usa white and yellow pages data records by state .  - discreetlist : adult web site subscribers and adult webmasters email addresses .  - fortune : this database contains primary contact data relating to fortune 500 , fortune 1000 , and millions more corporations sort able by company size and sales .  - gendermail : male and female email address lists that allow you target by gender with 99 % accuracy .  - marketmakers : active online investors email addresses . also information in reference to thousands of public companies symbols , and descriptions .  - maxdisc : online website owners , administrators , and technical contacts for website domain name owners of the \"\" . com \"\" , \"\" . net \"\" , and \"\" . org \"\" sites . this database has information from about 25 % of all registered domains with these extensions .  - newspapers : national directory of newspapers from small local papers to large metro news agencies .  - pitboss : avid online casino and sports book players , and casino webmasters .  - sa : south american mailing databases from more than a dozen countries . each mailing address belongs to a visa or mastercard credit card holder .  - software : this directory contains 86 software titles , some are fully functional versions and others are demo versions . many suites of commercial email tools as well as many other useful resources will be found here to help extract , verify , manage , and deliver successful commercial email marketing campaigns .  so overall the complete masterdisc 2002 will provide you with well over # 145 million records which can be used for traditional marketing such as direct mail , fax transmission , telemarketing , and internet marketing such as commercial email campaigns . we look forward to providing you with the databases and software needed for your success ! ! !  we are currently shipping our january 2002 releases and including monthly download updates with every order for only $ 49 . 95 per month .  due to this incredibly discounted promotional price , we are accepting only credit card or check orders . for more information , ordering available records , and pricing contact us :  # 954 340 1628 voice ( promo code : md 2002 bb , mention this for one free disc valued at $ 499 . 00 with your first order ! ! ! )  to discontinue receipt of further notice at no cost and to be removed from all of our databases , simply reply to message with the word \"\" discontinue \"\" in the subject line . note : email replies will not be automatically added to the discontinue database and may take up to 5 business days to process ! ! ! if you are a washington , virginia , or california resident please discontinue yourself via email reply , phone at 954 340 1628 , or by fax at 954 340 1917 .  . 051102 mx 4\",1\n\"Subject: too many credit card bills ! - this fixes that !  we can help you  . . .  reduce your  monthly payment up to 60 % . lower your credit  card interest rates . stop late or over  the limit fees . combine your  bills into one low simple payment . provide a  structured payment plan . bring your account to  a current status . private handling of  your accounts . put a debt specialist on your side .  not a loan , no credit check , no  property needed .  this email is not sent unsolicited . you are receiving it because you requested receive this email by opting - in with our marketing partner . you will receive notices of exciting offers , products , and other options ! however , we are committed to only sending to those people that desire these offers . if you do not wish to receive such offers  click here . or paste the following into any browser : http : / / 65 . 162 . 84 . 5 / perl / unsubscribe . pl ? s = to remove your email name from our list . you may contact our company by mail at 1323 s . e . 17 th street , suite number 345 , ft . lauderdale , fl 33316 \",1\n\"Subject: yourr medz  hello , welcome to ph disinclination armonline sh batata op  - one of the leading oniine ph friendless armaceutical shops  bacchanal v  stricken g  magnifier al  l spheral l  l medicine a  peatmoss rac whereof l  chanson is triangulate va  auctioneer um  andmanyother .  - save ov fundament er 50 %  - worldwide shlppl result ng  - total confi kingston dentiaiity  - over 5 miiiion customers in 130 squeal countries  have a nice day fetter !\",1\n\"Subject: investment opportunity .  dear friend ,  you will be surprise to see this message but i got your information  through spartanburg , area chamber of commerce usa .  my name is howard jones , a chief auditor , during my last auditing in  the  in london , uk we realized the sum $ 35 . 5 million owned by one patric zuma  from egypt who died  in a fatal motor accident in nov . 15 , 2004 while he was away on vacation  in egypt .  all efforts , made to reach the relatives of mr . patric zuma for the past  two years , have not yielded any positive result . it was later gathered  that mr . zuma ? s divorced wife died some two years ago in gaza .  in our last board meeting , the directors jointly decided that mr . zuma ? s  money should be included in the annual profit for the year 2005 . since  i was the one who introduced mr . zuma to the bank , i objected to the  decision and demanded that the fund remains floating in the treasury  for another one year to see if we could actually get the relatives of  mr . zuma to claim the money .  i am seeking your partnership to transfer this funds to your account  for your co - operation and assistance i willcompensate you with 25 %  70 % percent for me and 5 % set aside for any saundry expenses .  with your consent , we will put up a claim on your behalf as next of kin  to mr . zuma , iwill send you all the documents to you . once this is  done ,  the claims & verification dept will have the funds processed and wired to  your account , then we can meet to share the money together .  please i want you to keep this information very confidential as the  exposure of this information might even lead to my life imprisonment or  death . if you are not willing to assist me , then i will beg you to  still keep the informations secret .  let me have your telephone number so that i can reach you if you need  me to call you . i look forward to hearing from you soon . i am presently  in london on special duties .  thank you and regards  howard jones  alternative e - , mail addres : howard _ jones @ katamail . com\",1\n\"Subject: latina teens ! !  see these sweet latina honeys go from clothed to fucked ! ! !  too good to be true ?  not a chance . . . our girls love to fuck live . . . .  click here  you must be at least 18 to enter !  to be removed from our \"\" in house \"\" mailing list click here  and you will automatically be removed from future mailings .  you have received this email by either requesting more information  on one of our sites or someone may have used your email address .  if you received this email in error , please accept our apologies . \",1\n\"Subject: econommize more  hello , welcome to pharm attach online sh ampoule op  - one of the leading oniine pharmaceutical durability shops  felloe v  impregnated g  a coloration l  airshed ll  obliquity la  thingamy ra headstone cl  rocketry is bombed va  impugnable um  andmanyother .  - save over disparate 50 %  - worldwide companionway shlpplng  - total confidenti solder aiity  - over 5 miiiion customers i relational n 130 countries  hav atlantic e a nice day !\",1\n\"Subject: special report ! tivo : now or never ?  in this issue  interactive tv power rankings !  tivo : now or never ?  breaking news  coming attractions !  be a star !  email us : : visit our site  phone : 310 - 314 - 0603  this email was sent to , at your request , by tvpredictions . com .  visit our subscription center to edit your interests or unsubscribe .  view our privacy policy .  powered by \",1\n\"Subject: loaded with technology for business and home .  best software prices .  if i know what love is , it is because of you .  he knows all about art , but he doesn ' t know what he likes .\",1\n\"Subject: highest concentration of pure human pheromone ovdkspcr  x = = x * x = = xx = = x * x = = xx = = x * x = = xx = = x * x = = xx = = x * x = = xx = = x * x = = xabsolutely awesome ! ! instantly s e x u a l l y attract with nature ' s secret weapon . . . \"\" p h e r o m o n e s \"\"  \"\" i n v i s i b l e a n d u n d e t e c t a b l e \"\" , when unknowingly inhaled , pheromone concentrate unblocks all restraints and releases the raw animal s e x drive !  this is the strongest concentration of human pheromones , allowed by law , in an essential oil base .  available in formulas for both men and women .  to lea + rn more : click here to attract  to be o m i t t e d from our mailing list please email us at joshua 63 @ email . is with \"\" o m i t \"\" in the sub - line .  * |  to 48 6 - 04 c 20 p  { % rand }  > > sspltm  - human pheromones concentrate -  ( s e x u a l l y attract women s e x u a l l y attract men attract men attract women and men instantly attract women and men become very desirable - - fast  gain the sexual advantage powerful , very powerful become very desirable ) \",1\n\"Subject: you ' ve won $ 100 , 000 . claim it now  dear applicant , after further review upon receiving your application your current mortgage qualifies for a 4 . 75 rate . your new monthly payment will be as low as $ 340 / month for a $ 200 , 000 loan . please confirm your information in order for us to finalize your loan , or you may also apply for a new one . complete the final steps by visiting : http : / / www . oprefi . net / ? id = j 22 we look foward to hearing from you . thank you , heather grant , account managerlpc and associates , llc . - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - not interested ? - > www . iorefi . net / book . php\",1\n\"Subject: the thing is that a great errrection is provided for you exactly when you want .  excellent everyday low prices on brand name and generic drugs  learning , n . the kind of ignorance distinguishing the studious .  most religions do not make men better , only warier .  for four - fifths of our history , our planet was populated by pond scum .\",1\n\"Subject: more than 100 , 000 u . s . jobs available  are you looking for a job ? are you planning for a career change ? does your current job pay you little than the salary you deserved ? do you want information about who is currently hiring and their rates ? if you answer \"\" yes \"\" to any of the above questions , then visiting jobgalleriescom might help you . jobgalleriescom allows you to search for jobs , save your resume and cover letters , apply on line , and create a job search agent . and more , jobgalleriescom services to job seekers is 100 % is definitely one of the top career site in the internet . visit jobgalleriescom and access more than 100 , 000 u . s . jobs . for employer and recruiter : avail 75 % discount at jobgalleries . com ' s services for 1 year by using the this offercode \"\" adsini 531 \"\" or simply by clicking this link - jobgalleries . comto unsubscribe click here . or simply reply to this e - mail and type \"\" remove \"\" in the subject line\",1\n\"Subject: neeed medz ?  how to save on your me subarctic dlcations over 70 % .  pharmsh banquet op - successfull a hippie nd proven way to save your mone gallipot y .  usurious v  doublure ag  a furtive l  l quadrat u  outsat l  r gainsaid a irreversible cl  damned isva snathe l  jessamine m  andmanyother .  best p unhand rlces .  worldwide sh utterly lpplng .  easy tunnel order form .  total confid drench entiaiity .  25 abattoir 0 , 000 satisfied customers .  order seacalf today and save !\",1\n\"Subject: save your money by getting an oem software !  need in software for your pc ? just visit our site , we might have what you need . . .  best regards ,  steve \",1\n\"Subject: reach 100 , 000 brokers charset = windows - 1252 \"\" >  dear industry professional ,  the importance of the  internet and the opportunities it can afford a company are unparalleled in  the year 2005 and beyond . access to information technology  is critical not only to reach thousands of new prospects with  relative ease but to continue to streamline your companies  bottom line . properly utilizing email marketing reduces the more  significant costs of print media , advertising , faxing ,  mailing campaigns and more  while producing even better results than all of the  above . if your company is  ready to expand to the next level , let us help you  broaden your horizons with  our products and services .  we have been providing email  marketing and other services since 2001 . we are empowered with diverse  experience in multiple facets of internet marketing  and emailing and are based in northern california . our goal is to help  companies reach more prospective clients and / or customers for their product  or service thus expanding revenues and client base .  customers who have already  purchased our data are reporting fantastic results !  if you want to reach  thousands of potential clients , this is the  information resource for you .  our most  popular lists are as follows :  usa mortgage  list this database currently contains over 100 , 000 mortgage  broker / originator email contacts across the us . purchase all records for  only $ 1450 . 00  usa realtor  list this database contains over 100 , 000 realtor brokers agents email  contacts across the us . purchase all records for only $  1450 . 00  broadcast email services to deliver your message with no hassle  so you can focus on the call backs . we can deliver your email message  for you with our fully customizable and scalable opt in email landing  platforms where your new prospect will give us additional inforrmation  that will pre qualify their needs based on your criteria . your hot  prospects will be forwarded to you in real  time . for a limited time we are providing free email blasts to  new customers . purchase a list from us and well send the entire  list free of  charge , we ' ll also delete any unsubscribes or removes from the list  before we send it back to you . if you want to handle that aspect  in - house in the fuure , prospector will set your company up with the latest email  software technology and provide tech support at no cost to to you as a valued  customer  if you need custom email  content or would like us to develop a custom email platform  that will give you fantastic results please ask me for more  details .  our lists are consistently  updated with new names to keep them fresh . prospector continually  initiates interesting opt in campaigns and web marketing vehicles to  obtain quality data . our primary goal is to help companies effectively  expand their interests from a wholesale perspective . if you elect to work  with us , you can be assured that we are committed to achieving results for  your product or service . please let me know if you have any questions  about what we have to offer .  prospector communications  wants your email campaign to be a success .  sincerely ,  matt  clark prspctl @ cyberverse . com  prospector  communications www . goldleads . net  to unsubscribe email prspctl @ cyberverse . com with  unsubscribe in the subject  field  mortgage leads  real estate leads  email marketing made easy \",1\n\"Subject: take advantage of this offer 24344  copy  any dvd with a cd - r burner !  dvd wizard pro is the  most technologically advanced method of dvd reproduction ever available !  do not be fooled by other fly by night  websites offering outdated information .  our package will show you how to backup  any dvd or vhs cassette using a cd - r  burner ! we will go further , and show you how to backup a dvd  using a dvd - r , or dvd - rw burner as well .  make quality backups  of your personal dvd ' s and vhs cassettes . create your own  dvd library . never worry about  scratching or losing a dvd again !  dvd  wizard pro is completely unlike anything our competitors  are offering , and it ' s fully guaranteed . . .  order today , you won ' t be disappointed !  limited time  only $ 39 . 95 !  we have sold this package  for as much as $ 69 . 95 . . . but now , for a very limited time  only , we are offering instant access for only $ 39 . 95 !  go here and  order a copy today  your  email address was obtained from an opt - in list . opt - in mrsa list  purchase code # 31212 - 1 - 01210 . if you wish to be unsubscribed  from this list , please  click  here and press send to be removed . if you have previously unsubscribed  and are still receiving this message , you may email our  spam  abuse control center . we do not  condone spam in any shape or form . thank you kindly for your cooperation \",1\n\"Subject: out of this world $ aving $ on all xp pro titles  opt - in email special offer unsubscribe me search software top 10 new titles on sale now ! 1 office pro 20032 adobe photoshop 9 . 03 windows xp pro 4 adobe acrobat 7 pro 5 flash mx 20046 corel draw 127 norton antivirus 20058 windows 2003 server 9 alias maya 6 wavefrtl 0 adobe illustrator 11 see more by this manufacturer microsoft symantec adobe customers also bought these other items . . . microsoft office professional edition * 2003 * microsoftchoose : view other titles list price : $ 499 . 00 price : $ 69 . 99 you save : $ 429 . 01 ( 86 % ) availability : available for instant download ! coupon code : s 9 n 6 soo sales rank : # 1 system requirements | other versions date coupon expires : august 31 st , 2005 average customer review : based on 1239 reviews . write a review . adobe photoshop cs 2 v 9 . 0 adobechoose : view other titles list price : $ 599 . 00 price : $ 69 . 99 you save : $ 529 . 01 ( 90 % ) availability : available for instant download ! coupon code : jzmqakpko sales rank : # 2 system requirements | other versions date coupon expires : august 31 st , 2005 average customer review : based on 191694 reviews . write a review . microsoft windows xp professional or longhorn edition microsoftchoose : view other titles list price : $ 279 . 00 price : $ 49 . 99 you save : $ 229 . 01 ( 85 % ) availability : available for instant download ! coupon code : nb 8 fsyftn sales rank : # 3 system requirements | other versions date coupon expires : august 31 st , 2005 average customer review : based on 1339 reviews . write a review . adobe acrobat professional v 7 . 0 adobechoose : view other titles list price : $ 499 . 00 price : $ 69 . 99 you save : $ 429 . 01 ( 85 % ) availability : available for instant download ! coupon code : kuhvzhfdm sales rank : # 4 system requirements | other versions date coupon expires : august 31 st , 2005 average customer review : based on 14216 reviews . write a review .\",1\n\"Subject: in the heart of your business !  corporate image can say a lot of things about your  company . contemporary rhythm of life is too dynamic . sometimes it takes only  several seconds for your company to be remembered or to be lost amonq  competitors . get your ioqo , business stationery or website done riqht  now ! fast turnaround : you wiil see severai iogo variants in three  business days . satisfaction guaranteed : we provide uniimited amount of  changes ; you can be sure : it wili meet your needsand fit your  business . fiexible discounts : iogo improvement , additional formats , buik  orders , special packages . creative design for competitive price : have a look at it right  now ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: vov . gget luxurious rolexes at the greatestprices .  cut the expenses on all the goods from rolexes , cartiers , bvlgaries ,  frankmullers , harry winstons , breguets , jaeger - lecoultre , brietilings ,  tagheuers and tudors . they lo 0 k perfect to even the most choosy customerss .  you will be convinced by their fabulous lo 0 ks .  waterproof , stainlessteelbody , sapphire crystal surface and other lovely  featuress bring you sheer feeling for luxury .  our lovvprice is also one key fea - ture you should consider .  every fea - ture the prototype has , our goods have them as well . cchoose the  ones that are waterproof with hack mechanism .  http : / / qbdy . ok . yoyoforsheerjoy . com / 3 pe /  luv durable luxuries ? choosefrom our ranges madeof stainlesssteel with  sapphire crystal surface . prefer battery & quartz , winding but my sister makes nothing of it ;  shion wi 1 th the tassels thrown down on 7 his head . in time m y eyes  gradu\",1\n\"Subject: a chance to get new logo now  working on your company ' s image ? start with a  visual identity a key to the first good impression . we are here to  help you ! we ' ll take part in buildinq a positive visual imaqe  of your company by creatinq an outstandinq logo , presentable stationery  items and professionai website . these marketinq tools wiil significantiy  contributeto success of your business . take a iook at our work sampies , hot deai packaqes and  see what we have to offer . we work for you !  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: looking for cheap high - quality software ?  software compatibility . . . . ain ' t it great ?  silence is golden when you can ' t think of a good answer .  thinking evil is making evil .\",1\n\"Subject: 200 million targeted leads cd * only $ 99 . 95 *  you can ' t beat this deal :  200 million email addresses database , on 2 cds ! ! = = only $ 99 . 95 = =  100 million email addresses database , on cd = = only $ 69 . 95 = =  1 . 5 million usa business fax numbers , on cd = = only $ 49 . 95 = =  all three directories above * * * only $ 139 . 95 * * *  both email directories are categorized like :  * persons running home businesses or interested in starting one  * persons interested in buying things on the web  * persons interested in investing online or offline  * all 50 states broken down by area code  * persons interested in health & fitness products / services  * opt in : persons interested in recieving offers by email .  * persons interested in travel , sports , dining , real estate , mortgage , politics , religion , fishing , trade shows etc . .  * many more categories . . .  * * contains us & international emails * *  * * everything on these disks are in text file format and fully exportable . * *  * * the cd is as easy to use as browsing your c drive in explorer . * *  now you can advertise free and get tremendously  more responses than advertising with other forms of media ! ! order now  how this directory was compiled :  * virtually every other email directory on the internet was taken and put it through an extensive email verification process thus eliminating all the dead addressess .  * special software spiders through the web searching websites , newsgroups and many other online databases with given keywords like area codes , industries , city names etc . . to find millions of fresh new addresses every week .  turn your computer into a money machine !  most estimate well over 400 million people will have e - mail accounts in the next 2 years ! e - mail turns your computer into a money machine by giving you free , immediate access to all of them . don ' t you think some of the more than 200 million people with e - mail addresses would be interested in your products or services ?  much faster : with bulk e - mail you get responses back in 1 to 4 days instead of waiting weeks or months ! you can begin filling orders the same day you send e - mail . free advertising worth millions : it costs millions of dollars to mail .  do not reply to this email address . to order , read below :  * * order by credit card ( visa , mastercard or american express ) * *  - simply complete the order form below and fax it back to 1 - 240 - 371 - 0672  make sure that we have your email address so that we can send you a reciept for your transaction .  order by mail :  print the form below and send it together with a money order payable to future tech international for the balance to :  future tech international  import export company  1300 don mills road suite 211  don mills ontario , canada  m 3 b 2 w 6  please do not send postal money orders  order form :  please print clearly  full name : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  company name : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  email address : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ * required field  shipping address : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  city : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ state / province : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  shipping options :  [ ] $ 5 . 95 regular mail ( 1 - 2 weeks )  [ ] $ 12 . 95 priority mail ( 2 - 4 business days )  [ ] $ 25 . 95 fedex ( overnight ) for us & canada only - int ' l orders extra  product :  [ ] email marketing cdrom with 100 million addresses $ 69 . 95 usd  [ ] 200 million email addresses on 2 cd ' s $ 99 . 95  [ ] 1 . 5 million usa business fax numbers $ 49 . 95 usd  [ ] combo package - all directories above ( 3 cd ' s ) $ 139 . 95 usd  total : $ _ _ _ _ _ _ _ _ _ usd  [ ] credit card order [ ] mail order  credit card orders fax this order form back to 1 - 240 - 371 - 0672  card # : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  expiry date : _ _ _ _ _ _ _ _ _ _ _ _ _ _  type of card [ ] visa [ ] mastercard [ ] american express  name on card : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  billing address : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ zip / postal : _ _ _ _ _ _ _ _ _ _ _ _  city : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ state / province : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ country : _ _ _ _ _ _ _ _ _ _ _ _ _  last 3 digits on reverse of card next to signature : [ ] - [ ] - [ ]  cardholder signature : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  please note that ft international will appear on your statement .  for any questions please feel free to call us at 1 - 416 - 410 - 9364  to be removed from our database please send a fax to 1 - 970 - 289 - 6524\",1\n\"Subject: largest collection of porn mo \\ / ies ever - x 64  come explore the world ' s largest adult studio ! see all the biggest names in porn in exclusive hardcore xxx movies . vivid got the hottest pornstars !  http : / / bunt . info . babylom . info /  - - - - - - - - - - - - - -  canister campsite conway conspire  byzantine alicia abyssinia barrett  cowhide camilla adolescent composure\",1\n\"Subject: 35 % lifetime renewals - unbeatable product !  don ' t forget to visit our web  site !  please fill out the form below for  contracting information and marketing supplies  first name :  last name :  e - mail :  phone :  address :  address 2 :  city :  state :  zip :  we  don ' t want anybody to receive our mailing who does not wish to  receive them . this is professional communication sent to insurance  professionals . to be removed from this mailing list , do not reply  to this message . instead , go here : http : / / www . insurancemail . net  legal notice \",1\n\"Subject: re :  good day ,  a well wisher showed me a way to get p . p . v . on tv while not pay anything !  i know its hard to believe , but , i mean it .  hit this new stuff yourself :  http : / / catastrophical . look 4 source . com  even a newbie can install it easily .  if you wish off , add slash r to the above site .  10 . ninety six bottles of beer , three a ' s , three b ' s , one c , two d ' s , thirty six e ' s , three f ' s , two g ' s , seven h ' s , eleven i ' s , one j , one k , six l ' s , one m , twenty n ' s , twelve o ' s , one p , one q , six r ' s , twenty eight s ' s , nineteen t ' s , seven v ' s , seven w ' s , six x ' s , and five y ' s on the wall . .  that carpenter is practicing running at this time . .  goodbye ,  ida grisham\",1\n\"Subject: get more orders for anything you sell  reach the masses  direct e - mail  advertising  the bulk e - mail  experts  if we can  reach you , you can reach them !  500 , 000 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . $ 399 us  1 , 000 , 000 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . $ 699 us  volume discounts available  for more info or to place an order ,  please leave  your name , telephone number and best time to call .  please click here  to be removed from further mailings , please  click here \",1\n\"Subject: all your life # 4 c 55  this is a mime message  content - type : multipart / alternative ; boundary = \"\" - - - - = _ nextpart _ 001 _ 0080 _ 01 bdf 6 c 7 . fabaclbo \"\"  content - type : text / plain ; charset = \"\" iso - 8859 - 1 \"\"  content - transfer - encoding : quoted - printable  * * * * * this is an html message ! * * * * *  content - type : text / html ; charset = \"\" iso - 8859 - 1 \"\"  content - transfer - encoding : quoted - printable  dear candidate , = ao  you have been selected as a potential candidate for a free listing in = ao  the 2001 edition of the international executive guild registry = 2 e = ao =  please accept our congratulations for this coveted honor = 2 e = ao  as this edition is so important in view of the new millennium , the = ao =  international executive guild registry will be published in two different =  = ao  formats ; the searchable cd - rom and the online registry = 2 e = ao  since inclusion can be considered recognition of your career position = ao  and professionalism , each candidate is evaluated in keeping with high = ao  standards of individual achievement = 2 e in light of this , the internationa =  l executive  guild thinks that you may make an interesting biographical subject = 2 e = ao  we look forward to your inclusion and appearance in the international = ao  executive guild ' s registry = 2 e best wishes for your continued success = 2 e = ao =  international executive guild = ao  listing dept = 2 e = ao  if you  wish to be removed from our list , please submit  your request  at the  bottom of this email = 2 e  international executive guild  registration form  ( us and canada  only )  please  fill out this form if you would like to be  included on the international  executive guild , for accuracy and  publication purposes , please  complete and send this form at the earliest  opportunity = 2 e there is no  charge or obligation to be listed  on the international executive guild = 2 e  your  name  your  company  title  address  city  state  or province  country  usacanada  zip / postal  code  day  time telephone  home  phone  ( not  to be published )  email  to  help us in considering your application , please  tell us a little about  yourself = 2 e = 2 e = 2 e  your  business  ( financial  svcs , banking , computer hardware , software , professional svcs ,  chemicals ,  apparel , aerospace , food , government , utility ,  etc = 2 e )  type  of organization  ( m =  fg ,  dist / wholesaler , retailer , law firm ,  investment  bank , commercial bank , university ,  financial  consultants , ad agency , contractor , broker ,  etc = 2 e )  your  business expertise  ( corp = 2 emgmt ,  marketing , civil engineering ,  tax  law , nuclear physics , database development , operations , pathologist ,  mortgage  banking , etc = 2 e )  major  product line  ( integrated  circuits , commercial aircraft , adhesives , cosmetics , plastic components ,  snack foods , etc = 2 e )  note : submitting this form =  will  be made by email , not by use of www = 2 e confirmation of its de =  livery  is made by browsing your outgoing mail = 2 e  thank  you for filling in this form , we will contact you with more  information = 2 e  list  removal  click  here \",1\n\"Subject: [ avfs ] romanian software production & export  to : avfs @ fazekas . hu  attn : marketing department  from : i . q . software - bucharest  ref . : romanian software production & export  our anti - spamming company policy :  never bother you again  to remove your e - mail address from the present  contact list just do not reply to this message .  if you receive this message by mistake and / or you are not interested  in the following brief presentation , please accept our apologies .  this is a world - wide promotion campaign . the selected e - mail addresses  are extracted only from the commercial websites of the targeted markets .  we would like to offer you for consideration our brief presentation .  we are looking for a marketplace in your country .  to communicate with us please reply using  the plain text format in the body of the message  > > > mentioning your specific inquiry / offering demand > > company name , address , phone  - man - power ;  - data - entry ;  - mapdrawing ;  - outsourcing .  * so that you would be able to have an idea of our skills  we present you some of our current projects :  the situs system ( informative of tribunals bureaus of supervision )  was realized for informative administration of activities typical  for tribunals and bureaus of supervision for ministry of justice - italy  ( microsoft visual basic 6 . 0 , database : oracle 8 . 0 ) .  the ice system foresaw the resigtering of the italian - romanian companies  on romanian territory . the application is constituted by a browser which  allows the navigation and provides some additional skills , advanced search  on varied criterious which are created in a dynamic way by the user  ( visualbasic 6 . 0 , database : access 97 ) .  museum - the main request from the museum was to handle ( multimedia )  documents in specific formats on different operating system and platforms  ( c + + , html , corba idl , orb : orbacus ) .  library ( national library of firenze ) - informatical system for managing  and labeling the ancient bibliographical materials  ( power builder , database : oracle ) .  interflora - communication and management system ; consists in some  applications and services which allows the communication between  the flowerist man from italy and international association of flowerists  ( visual basic 6 . 0 ) .  audit office - the realization of a porting which foresaw 16 bit controls  for substitution with 32 bit controls , introduction of new activex controls ,  substitution of formula 1 with native controls of visual basic 6 . 0 .  unico - the program foresaw the possibility of acquisition from images  of more than 60 models of unico and iva  ( fiscal declarations ) - ( delphi 4 . 0 . database : sql ) .  ministry of finance - fiscal documentation - the objective is  the easy access to the italian legislation and its consulting .  the application based on a client / server architecture , using a network  communication ( sockets ) for data exchange with the server ( visual c + + ) .  foreign ministry - economical application -  this application is conceived as a group of projects .  administration  balance - sheets  dispositions of payment  foreign expenses  synthetically dates  servers  ( visual basic 6 . 0 , database : sql server 7 . 0 )  sogei - the administration of the custom houses .  this application is created for the financial administration of the  peripherical offices at the customhouse ( java , html , database : oracle 8 . 0 ) .  iccrea - application of processing development of the  bank - procedures on mainframe ( cobol / cics / db 2 ) .  telecom - microfilm data acquisition .  registering numbers and subscribers .  anagrafica - acquisition from images of dates and personal information .  italian ministry of finance - data acquisition  from images of medical prescription .  iq register - acquisition of information from images  and optics archives of documentation .  * we had been offering for the entire veneto region ,  the following professional system engineers :  ambiente bull gcos 8 : systematical and special assistance  in interel rfm , sql , infoedge .  ambiente bull / reti : systematical and special assistance  of regional networks for datanet , l . a . n . , x . 25 ,  dsa , mainway transmission , telematical networks .  ambiente unix : 2 unix system operators with knowledge of gcos 6 .  * we have been offering for the meteorology institute of padova  the following professional system engineers :  ambiente digital / unix : systematical and special assistance  for dec vax / vms and unix systems with strong enough knowledge  of informix and c programming .  ambiente / decnet / windows : systematical and special assistance  for dec vax / vms and windows with knowledge in financial administration  of local networks , in financial administration and configuration of  communication systems ( router , bridge , gateway , etc ) and of products  of exchange data , in financial administration and configuration of  interface systems of internet .  therefore , to increase our presence to the international  market we took part in the inter - governmental program  between the united states and romania .  thus , we participated to the international meeting of both  romanian and american it companies on lst november 2001 due  to the kind initiative of both governments .  the reason of this program , of the meeting mentioned above and of the  initiatives that followed was to offer a new way for outsourcing ,  more convenient than the indian one to american software companies .  our company , already present on american market , is interested to be  a potential partner and one of most interested in cooperating with  american it companies .  our main interest is both on the american and european market .  our managing staff after visiting italy managed to establish relations  with this country for our curent projects .  on the other side a marketing tour has already been established  in the usa in the month of may for any possible projects .  that is why we might be able to directly discuss with you any new project .  we ' d appreciate your feed - back containing detailed contact coordinates :  company name , address , phone and fax numbers , contact person , web - site .  our area of interest : software production export  we wish to express our availability to work under the client ' s brand .  please don ' t hesitate to send us your specific inquiry / offering demand .  we ' ll be happy to provide you the lowest prices in the field .  thanking you for your time and looking forward to your reply ,  we wish you all the best .  i . q . software staff  avfs mailing list  avfs @ csibe . fazekas . hu \",1\n\"Subject: books about thailand  hello  planning a trip to thailand ?  like to eat thai food ?  need to learn thai ?  check out our recommendations at http : / / www . thaibooks . ch !  new : we are featuring novels too . \",1\n\"Subject: this is where it all begins  no where else will you find the level of accuracy , detail and convenience .  act now ! you ' ll receive unlimited access to our world famous psychics with no per minute charges ! ! !  but ' s that ' s not all . . . you also get unlimited tarot and rune readings , real - time biorhythm charts , full in - depth numerology reports , detailed daily monthly horoscopes , real - time natal charts , a love analyzer , ouija board , and much , much more !  your future is waiting click here ! ! !  live psychics 24 / 7  numerology  horoscopes  astrology  the tarot  biorhythms  i ching  runes  and so much more !  this email is not sent unsolicited . you are opted in with cnn - si . you are receiving it because you requested receive this email by opting - in with our marketing partner . you will receive notices of exciting offers , products , and other options ! however , we are committed to only sending to those people that desire these offers . if you do not wish to receive such offers  click here . or paste the following into any browser : http : / / 65 . 162 . 84 . 5 / perl / unsubscribe . pl ? s = to remove your email name from our list . you may contact our company by mail at 1323 s . e . 17 th street , suite number 345 , ft . lauderdale , fl 33316 \",1\n\"Subject: re : account information  email advertise to 28 , 000 , 000 people for free  act now before 6 pm pst on tuesday , may 28 th  and receive a free $ 899 . 00 bonus  1 ) let ' s say you . . . sell a $ 24 . 95 product or service .  2 ) let ' s say you . . . broadcast email free to 500 , 000 people daily .  3 ) let ' s say you . . . receive just 1 order for every 2 , 500 emails .  calculation of your earnings based on the above statistics :  [ day 1 ] : $ 4 , 990 [ week 1 ] : $ 34 , 930 [ month 1 ] : $ 139 , 720  - - - - - - - - - - - - - - - -  you now know why you receive so many email advertisements . . .  = = = > broadcast email advertising is extremely profitable !  1 ) what if you . . . sell a $ 99 . 95 product or service ?  2 ) what if you . . . broadcast email to 30 , 000 , 000 + people monthly ?  3 ) what if you . . . receive 1 order for every 250 emails ?  just imagine = > day 30 ! = = > week 30 ! ! = = = > month 30 ! ! !  = = > the profits that broadcast email can generate are amazing ! !  * * according to forrester research , a broadcast email ad is up  * * to 15 times more likely to result in a sale than a banner ad !  - - - - - - - - - - - - - - - -  [ comparison of internet advertising methods ] :  = > a 1 / 20 page targeted web site banner ad to 5 million people  on the internet can cost you about $ 100 , 000 .  = > a 5 page targeted direct mail advertisement to 1 million people  through the postal service can cost you about $ 500 , 000 .  = > a 50 page targeted html broadcast email advertisement with  pictures to 50 , 000 , 000 people through the internet is free .  . . . which advertising method sounds most appealing to you ?  \"\" targeted direct email advertising is the wave of the future .  by no other means can you effectively reach your market so  quickly and inexpensively . \"\" - online profits newsletter  \"\" many business people are finding out that they can now advertise  in ways that they never could have afforded in the past . the  cost of sending mass e - mail is extremely low , and the response  rate is high and quick . \"\" - usa today  - - - - - - - - - - -  [ example of a personalized / targeted broadcast email ] :  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : kate @ cattiesinc . com  to : mary @ commtomm . com  subject : about your cat !  hi mary ,  are you interested in receiving up to 80 % savings on cat supplies ?  if so , come visit our web site at : http : / / www . cattiesinc . com  = > with broadcast email software , a broadcast email advertisement  = > like this one can be automatically sent to up to 1 , 000 , 000  = > people on a daily basis with less than 2 minutes of your time !  * imt strategies reports an average of a 16 . 4 % click through rate  from users that have received a broadcast email advertisement !  - - - - - - - - - - - - - - - -  a european 2001 benchmark study  conducted by forrester research says :  1 ) 41 % of consumers believe email is a good way to find out about  new products .  2 ) 36 % of consumers in 13 countries read most of the promotional  email they receive and 9 % forward the email to a friend because  they think it is valuable .  - - - - - - - - - - -  be prepared ! you may receive a huge amount of orders within  minutes of sending out your first broadcast email advertisement !  * according to digital impact , 85 % of broadcast email offers are  responded to within the first 48 hours !  \"\" when you reach people with e - mail , they ' re in a work mode , even  if they ' re not at work . they ' re sitting up , they ' re alert . you  catch them at a good moment , and if you do it right , you have a  really good shot of having them respond . \"\"  - william thames [ revnet direct marketing vp ]  - - - - - - - - - - -  * an arthur anderson online panel reveals that 85 % of online users  say that broadcast email advertisements have led to a purchase ! \"\"  \"\" according to flonetwork , us consumers discover new products and  services 7 + times more often through an email advertisement ,  than through search engines , magazines and television combined ! \"\"  only a handful of companies on the internet have discovered  broadcast email advertising . . . = > now you can be one of them ! !  - - - - - - - - - - -  = > united messaging says there are 890 + million email addresses !  = > get ready ! now with broadcast email , you can reach them all  = > thanks to our broadcast email software !  our broadcast email software with dns technology automatically  creates 10 super - fast mail servers on your computer which are  then used to send out your broadcast emails to millions for free !  = = > with our new email sending technology . . .  = = > your internet provider ' s mail servers are not used !  there are no federal regulations or laws on email advertising &  now with our software = > you can avoid internet provider concerns !  = > if you send a broadcast email advertisement to 50 , 000 , 000  = > people and just 1 of 5 , 000 people respond , you can generate  = > 10 , 000 extra orders ! how much extra profit is this for you ?  - - - - - - - - - - - - - - - - - - - - - -  as featured in : \"\" the boston globe \"\" ( 05 / 29 / 98 ) ,  \"\" the press democrat \"\" ( 01 / 08 / 99 ) , \"\" anvil media \"\" ( 01 / 29 / 98 ) :  [ nim corporation presents ] : the broadcast email package  requirements : win 95 / 98 / 2000 / me / nt / xp or mac softwindows / virtualpc  [ broadcast email sender software ] ( $ 479 . 00 retail ) :  our broadcast email sender software allows you the ability to  send out unlimited , personalized and targeted broadcast email  advertisements to over 500 , 000 , 000 people on the internet at  the rate of up to 1 , 000 , 000 daily , automatically and for free !  have a list of your customer email addresses ? broadcast email  advertise to them with our software for free !  [ targeted email extractor software ] ( $ 299 . 00 retail ) :  our targeted email extractor software will automatically  navigate through the top 8 search engines , 50 , 000 + newsgroups ,  millions of web sites , deja news , etc . . and collect millions  of targeted email addresses by using the keywords of your  choice ! this is the ultimate extractor tool !  [ 15 , 000 , 000 + email addresses ] ( $ 495 . 00 retail ) :  millions of the newest & freshest general interest and  regionally targeted email addresses separated by area code ,  state , province , and country ! from alabama to wyoming ,  argentina to zimbabwe ! 15 , 000 , 000 + fresh emails are yours !  [ step by step broadcast email package instructions ] :  you will be guided through the entire process of installing  and using our broadcast email software to send out broadcast  email advertisements , like this one , to millions of people for  free ! even if you have never used a computer before , these  instructions make sending broadcast email as easy as 1 - 2 - 3 !  [ the broadcast email handbook ] :  the broadcast email handbook will describe to you in detail ,  everything you ever wanted to know about broadcast email !  learn how to write a successful advertisement , how to manage  the hundreds of new orders you could start receiving , what  sells best via broadcast email , etc . . . this handbook is a  necessity for anyone involved in broadcast email !  [ unlimited customer & technical support ] :  if you ever have any questions , problems or concerns with  anything related to broadcast email , we include unlimited  customer & technical support to assist you ! our # 1 goal  is customer satisfaction !  [ additional information ] :  our broadcast email software package contains so many  features , that it would take five additional pages just to  list them all ! duplicate removing , automatic personalization ,  and free upgrades are just a few of the additional bonuses  included with our broadcast email software package !  - - - - - - - - - - - - - - - - - - - - - -  all together our broadcast email package contains everything  you will ever need for your entire broadcast email campaign !  you will receive the entire broadcast email package with  everything listed above ( $ 1 , 250 . 00 + retail ) for only $ 499 . 00 us !  but wait ! ! if you order by tuesday , may 28 th , you will  receive the broadcast email package for only $ 295 . 00 us ! !  order now and receive [ 13 , 000 , 000 bonus emails ] ( $ 899 value )  for free for a total of 28 , 000 , 000 fresh email addresses ! !  regardless , if you send to 1 , 000 or 100 , 000 , 000 people . . .  you will never encounter any additional charges ever again !  our broadcast email software sends email for a lifetime for free !  - - - - - - - - - - - - - - - -  since 1997 , we have been the broadcast email marketing authority .  our # 1 goal is to see you succeed with broadcast email advertising .  we are so confident about our broadcast email package , that we are  giving you 30 days to use our entire package for free !  = = > you can send unlimited broadcast email advertisements !  = = > you can extract unlimited targeted email addresses !  = = > you can receive unlimited orders !  if you do not receive at least a 300 % increase in sales or are not  100 % completely satisfied with each and every single aspect of our  broadcast email package , simply return it to us within 30 days for  a 100 % full refund , no questions asked ! !  best of all , if you decide to keep our broadcast email package , it  can be used as a 100 % tax write off for your business !  - - - - - - - - - - -  see what users of our broadcast email package have to say . . .  \"\" since using your program , i have made as much in two days as i  had in the previous two weeks ! ! ! ! ! i have to say thank you for  this program - you have turned a hobby into a serious money  making concern . \"\"  = w . rogers - chicago , il  \"\" we have used the software to send to all our members plus about  100 , 000 off the disk you sent with the software and the response  we have had is just fantastic ! ! our visits and sales are nearly  at an all time high ! \"\"  = a . freeman - england , uk  \"\" i have received over 1200 visitors today and that was only  sending out to 10 , 000 email addresses ! \"\"  = k . swift - gunnison , co  \"\" i ' m a happy customer of a few years now . thanks a lot . . . . i love  this program . . \"\"  = s . gallagher - melville , ny  \"\" thanks for your prompt filing of my order for your broadcast email  software - - it took only about a day . this is faster than anybody  i have ever ordered something from ! thanks again ! \"\"  = w . ingersoll - scottsdale , az  \"\" i feel very good about referring the folks i have sent to you  thus far and will continue to do so . it is rare to find a company  that does business this way anymore . . . it is greatly appreciated . \"\"  = t . blake - phoenix , az  \"\" your software is a wonderful tool ! a + + + + \"\"  = s . nova - los angeles , ca  \"\" thank you for providing such a fantastic product . \"\"  = m . lopez - tucson , az  \"\" your tech support is the best i have ever seen ! \"\"  = g . gonzalez - malibu , ca  \"\" i am truly impressed with the level of service . i must admit i  was a bit skeptical when reading your ad but you certainly deliver ! \"\"  = i . beaudoin - toronto , on  \"\" my first go round gave me $ 3000 to $ 4000 in business in less than  one week so i must thank your company for getting me started . \"\"  = a . roberts - san francisco , ca  \"\" we are really happy with your email program . it has increased  our business by about 500 % . \"\"  = m . jones - vancouver , bc  \"\" it really works ! ! ! ! ! thank you thank you , thank you . \"\"  = j . beckley - cupertino , ca  - - - - - - - - - - - - - - - -  [ sound too good to be true ? ]  * * if you broadcast email to 500 , 000 internet users daily . . .  * * do you think that maybe 1 of 5 , 000 may order ?  = > if so . . . that is 100 extra ( cost - free ) orders every day ! !  remember . . you have 30 days to use our broadcast email package  for free and see if it works for you !  if you are not 100 % completely satisfied , simply return the  broadcast email package to us within 30 days for a full refund !  - - - - - - -  [ broadcast email software package ] : easy ordering instructions  = > once your order is received we will immediately rush out the  = > broadcast email package on cd - rom to you via fedex priority  = > overnight or 2 - day priority international the same day free !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  [ to order by phone ] :  to order our broadcast email software package by phone with  a credit card or if you have any additional questions , please  call our sales department in the usa at :  = > ( 541 ) 665 - 0400  * * you can order now ! all major credit cards are accepted !  order by 3 pm pst ( m - th ) today - > have it by 10 am tomorrow free !  european & foreign residents - > have it within 2 weekdays free !  removal from our email list = > call ( 206 ) 208 - 4589  - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  [ to order by fax ] :  to order our broadcast email software package by fax with a credit  card , please print out the order form at the bottom of this email  and complete all necessary blanks . then , fax the completed order  form to our order department in the usa at :  = > ( 503 ) 213 - 6416  - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  [ to order by postal mail ] :  to order our broadcast email software package with a cashiers  check , credit card , us money order , us personal check , or us bank  draft by postal mail , please print out the order form at the  bottom of this email and complete all necessary blanks .  send it along with payment of $ 295 . 00 us postmarked by tuesday ,  may 28 th , or $ 499 . 00 us after tuesday , may 28 th to :  nim corporation  1314 - b center drive # 514  medford , or 97501  united states of america  - - - - - - - - - - - - - - - -  \"\" over 20 , 000 businesses come on the internet every single day . . .  if you don ' t send out broadcast email . . . your competition will ! \"\"  - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  [ broadcast email software package ] : order form  ( c ) 1997 - 2002 nim corporation . all rights reserved  company name : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  your name : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  billing address : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  city : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ state / province : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  zip / postal code : _ _ _ _ _ _ _ _ _ _ country : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  non pobox shipping address : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  city : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ state / province : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  zip / postal code : _ _ _ _ _ _ _ _ _ _ country : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  phone number : _ _ _ _ _ _ _ _ _ _ _ _ _ _ fax number : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  email address : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  * * to purchase by credit card , please complete the following :  visa [ ] mastercard [ ] amex [ ] discover [ ] diners club [ ]  name on credit card : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  cc number : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ exp . date : _ _ _ _ _ _ _ _ _  amount to charge credit card ( $ 295 . 00 or $ 499 . 00 ) : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  signature : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ \",1\n\"Subject: wearing ro , lex is stylish . wearing our ro , lex is smart and stylish .  don ' t bburn yourself just to gget one brand name watch . pop into our  cyberspace for top brands like ro , lex , cart . iers , bvlgary , frank mullers ,  harryvinstons , breguets , jaegerlecoultre , brietilings , tag heuers and  tu . dors .  do you luv outdoor activities ? see our stainless steel range that are  waterproof .  http : / / 3 w . sthh . enjoybestones . com / i 5 h /  - - - - - original message - - - - -  from : ross @ ckq . com [ mailto : harrison @ olce . com ]  sent : thursday , march 5 , 2005 2 : 37 pm  to : lupe ; dion @ ker . com ; jeramy ; barrett ; norbert  subject : prefer ro , lex or omegas or cart . iers ? explore our cyberwatch  galore .  these brilliant watches will draw all the attention . and their lowprices  will attract all .  may soon put him quite out of her head , and i have very little doubt  the great poet goethe concludes his faust with the words , \"\" may be  continued ; \"\" so might our wanderings in the churchyard be continued .  the visit passed off altogether in high good humour . mary was\",1\n\"Subject: trading for a living ( all you should know about forex )  - - - -  this sf . net email is sponsored by : jabber - the world ' s fastest growing  real - time communications platform ! don ' t just im . build it in !  http : / / www . jabber . com / osdn / xim  spamassassin - sightings mailing list \",1\n\"Subject: judicial judgements child support  very substantial profit processing money judgments .  from a cruise ship .  be on top .  control when you want to take time off .  current associates earning 5 , 000 us to 12 , 000 us per / mo .  impressive training and support .  detailed information or to un - subscribe or to see our address .  testimonial from dave f . , in nebraska ; first of all , i want to tell you  that i am going to be my own first customer . i won a judgment against a man ,  but he closed his shop , took my property and disappeared . thanks to the  information you gave me , i found him three days after receiving your  training manual . i will use the knowledge gained from you to collect what he  owes me . thank you again . as far as i ' m concerned , your training course has  more than paid for itself already .  silently he stole to the foot of the attic stairs and then paused to  listen . the house seemed very quiet , but he could hear his mother ' s voice  softly humming a cradle - song that she had sung to him when he was a baby  he had been nervous and unsettled and a little fearful until then , but  perhaps the sound of his mother ' s voice gave him courage , for he boldly  ascended the stairs and entered the workshop , closing and locking the door  behind him\",1\n\"Subject: custom logos and identities from us  thinking of breathing new life into your business ?  start from revamping its front - endlogo and  visualidentity .  we offer creative custom desiqn of logos ,  stationery and web - sites . under our carefui hand thesepowerfui marketing  tools wili brinq a breath of fresh air into your business and make you stand out  amongthe competitors .  you are just a ciick  away from your future success . click here to see the sampies of our artwork ,  checkour prices and hot offers .  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: bigger , fuller breasts naturally in just weeks ! uqouq  for women ages 13 to 60 plus . . . .  as seen on tv . . . .  safely make your breasts  bigger and fuller  in the privacy of your own home .  guaranteed quick results  click here for full report  mcskjfirglkckubuvfiwwp  - - - -  this sf . net email is sponsored by : jabber - the world ' s fastest growing  real - time communications platform ! don ' t just im . build it in !  http : / / www . jabber . com / osdn / xim  spamassassin - sightings mailing list \",1\n\"Subject: new medz  how t cornel o save on your medlcations over 70 % .  pharmsho enginehouse p - successfull and proven way to save vulnerary your mo homogeneous ney .  vaccination v  a heliograph g  a sullen l  l stationary u  disparate l  r casuistical a reservoir cl  i evacuate sva acclivity l  pearlbarley m  andmanyother .  best prlces neighbouring .  world cockadoodledoo wide shlpplng .  easy order fo tentative rm .  total confidentiaiity peaceloving .  250 , 000 satisfied selfoffence customers .  order today and carrier save !\",1\n\"Subject: investment offer from joseph otisa  investment offer from joseph otisa  compliments of the season , my name is mr . joseph otisa , the branch manager  of allstates trust bank of nigeria plc lagos state branch .  i am writing in respect of a foreign customer of my bank ( mr . wahab daniel )  with account number ats 1022002 - 109 who perished with his family in an  auto crash in abuja expresway , in nigeria , on the 30 th of november 2000 .  since the demise of mr . daniel , i personally have watched with keen  interest to see the next of kin but all has proved abortive as no one has  come to claim his funds of usd 23 m , twenty - three million , united states  dollars ] has been with our bank here for a very long time , which has  accumulated some interest . on this note i decided to seek for you , your  name shall be used as the next of kin , as no one has come up to put claim  as the next of kin to this funds and the banking ethics here does not  allow such money to stay more than five years , becuase after five years  the money will be called back to the bank treasury as unclaimed bill . .  i am convinced in my mind that your name could be used as the next of kin  to this claim . the request of the foreigner as a next of kin in this  business is occasioned by the fact that the customer was foreigner and a  nigerian cannot stand as the next of kin to a foreigner .  i have agreed to share this money with you in the mutual understanding of  70 % / 30 % . you keep 30 % while i keep 70 % , thereafter i will visit your  country , for disbursement as i am almost due for retirement . therefore to  endeavour the immediate transfer of this funds to your account , you have  to apply first to the bank as the next of kin to the deceased indicating  by sending an application and location where the money will be remitted .  i will not fail to bring to your notice that this business is hitch free  and that you should not entertain any fear as the whole required  arrangement as been perfected for the transfer .  i want to make you this offer , ( joeoti 7 @ box . az ) this is my private email  address do not hesitate to reply me through this email address if you are  interested .  kind regards .  the people ' s choice chat directory . . . only the best , most informative and interesting chatrooms listed . chat , personals , free email and more ! http : / / www . chatterhead . net\",1\n\"Subject: attn :  i presume this mail will not be a surprise to you .  i am an accountant with the ministry of mineral  resources and energy in south africa and also a member  of contracts awarding committee of this ministry under  south africa government .  many years ago , south africa government asked this  committee to awards contracts to foreign firms , which  i and 2 of my partners are the leader of this  committee , with our good position , this contracrs  was over invoiced to the tune of us $ 25 , 600 , 000 : 00 as a  deal to be benefit by the three top member of this  committee .  now the contracts value has been paid off to the  actual contractors that executed this jobs , all we  want now is a trusted foreign partner like you that we  shall front with his banking account number to claim  the over inflated sum .  upon our agreemeent to carry on this transaction with  you , the said fund will be share as follows .  75 % will be for us in south africa .  20 % for using your account and other contribution  that might reqiured from you .  5 % is set aside for the up front expences that  will be encounter by both party to get all necessary  documents and formarlities that will justify you as  the rightful owner of this fund .  if you are interested in this transaction , kindly  reply this massege with all your phone and fax  numbers , to enable us furnish you with details and  procedures of this transaction .  god bless you  yours faithfully .  joseph edward .\",1\n\"Subject: minimize your phone expenses  unlimited web conferencing  subscribe to the web conference center for only $ 40 . 00 per month !  ( connects up to 15 participants at a time plus audio charges )  manage your meetings virtually on line  application sharing  multi - platform compatible ( no software needed )  call anytime , from anywhere , to anywhere  unlimited usage for up to 15 participants ( larger groups availabale )  lowest rate $ . 18 cents per minunte for audio ( toll charges included )  quality , easy to use service  numerous interactive features  free demo  eliminate or reduce travel expense  try this on for savings . . .  and turn those unnecessary trips into problem solving and fact finding conferences ,  saving time and wear and tear on your overworked business staff .  to find out more about this revolutionary concept ,  fill out the form below .  required input field *  name *  web  address  company  name *  state *  business  phone *  home  phone  email  address *  all information given herein is strictly confidential and will not be re - distributed  for any reason other than for the specific use intended .  to be removed from our distribution lists , please  click  here . .\",1\n\"Subject: none  hello ,  this is a one time mailing .  we are looking for people who might be interested in  working p / t from home . this position involves working  10 - 15 hours per week . you can expect to make $ 15 - $ 25  per hour worked . to see a job description , you may go to  have a great day !  - - - -  this sf . net email is sponsored by : jabber - the world ' s fastest growing  real - time communications platform ! don ' t just im . build it in !  http : / / www . jabber . com / osdn / xim  spamassassin - sightings mailing list \",1\n\"Subject: great news . youve been pre - approved for a new . .  we tried to contact you last week about refinancing your home at a lower rate .  i would like to inform you know that you have been pre - approved .  here are the results :  * account id : [ 708 - 107 ]  * negotiable amount : $ 192 , 483 to $ 678 , 843  * rate : 3 . 30 % - 5 . 66 %  please fill out this quick form and we will have a broker contact you as soon as possible .  regards ,  stephen britton  senior account manager  lyell national lenders , llc .  database deletion :  www . lend - bloxz . com / r . php \",1\n\"Subject: naturally irresistible your corporate identity  lt is really hard to recollect a company : the  market is full of sugqestions and the information isoverwheiminq ; but a good  catchy logo , stylish statlonery and outstanding webslte  wiil make the task much easier .  we do not promise that havinq ordered a loqo your  company wiil automaticaliy become a world ieader : it isquite ciear that  without good products , effective business organization and practicable aim it  will be hotat nowadays market ; but we do promise that your marketing efforts  will become much more effective . here is the list of clear  benefits : creativeness : hand - made , original logos , specially done  to reflect your distinctive company image . convenience : logo and stationery  are provided in all formats ; easy - to - use content management system letsyou  change your website content and even its structure . promptness : you  will see logo drafts within three business days . affordability : your  marketing break - through shouldn ' t make gaps in your budget . 100 % satisfaction  guaranteed : we provide unlimited amount of changes with no extra fees for you to  be surethat you will love the result of this collaboration . have a look at our  portfolio _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: viagra is it the right medication for you !  welcome to the beginning of your sexual life using viagra !  money can ' t buy you happiness , but poverty can ' t buy you anything .  we ' ll either hang together or we ' ll hang separately .  to him that you tell your secret you resign your liberty .  unlike human beings , computers possess the truly profound stupidity of the inanimate .\",1\n\"Subject: limited access to sensitive paypal account features  as part of our security measures , we regularly  screen activity in thepaypal system . we recently noticed the following issue  on your account : we would like to ensure that your account was not  accessed by anunauthorized third party . because protecting the security of  your account is our primary concern , we have limited access to sensitive  paypal account features . we know that this may be an inconvenience but  pleaseunderstand that this temporary limitation is for your  protection . case id number : pp - 072 - 838 - 482  to review your account and some or all of the information that paypal used to make its  decision to limit your account access , please visit the  resolution center or copy this link and paste it in the internet explorer bar http : / / www . paypal . com . if after reviewing your account information , you seek further clarification  regarding your account access , please contact paypal by visiting the help center and clicking \"\" contact us \"\" . we thank you for your prompt attention to  this matter . please understand that this is a security measure intended to  help you and protect your account . we apologize for any  inconvenience . sincerely , paypal account review  departmentpaypal email id pp 522 \",1\n\"Subject: real drugs - viagra and phentrimine !  real  drugs - viagra and phentrimine  order all you  favorite drugs on line .  click  here for viagra , phentrimine and more !  remove yourself from this list by either :  entering your email address below and clicking remove :  or  reply to this message with the word remove in the subject line .  this message was sent to address cypherpunks @ einstein . ssz . com  pmguid : 1 dx . 2 pdp . fsi 52  - - - -  this sf . net email is sponsored by : thinkgeek  welcome to geek heaven .  http : / / thinkgeek . com / sf  spamassassin - sightings mailing list \",1\n\"Subject: big range of all types of downloadable software .  software for home and office .  the wise man carries his possessions within him .  you make ' em , i amuse ' em . [ children ]\",1\n\"Subject: candy super $ money maker  you are receiving this message as an opt - in subscriber to 4 best offer or one of  our marketing partners .  if you no longer wish to receive further offers , please  send an email with discontinue to :  support @ 4 bestoffer . com  4 best offer  136 74 th street  north bergen , nj  07047 \",1\n\"Subject: i want to mentor you  this week i showed 62 people how to get over  30 sign / ups each week .  how much would that be worth to you ?  let me mentor you . i mentor at no charge .  i will show you how to get 100 ' s of paid / for  sign / ups eas . ily and without spending a cent  on normal mark . eting campaigns .  i can mentor you personally on a powerful  \"\" one to one \"\" basis and supply you with  contact details of thousands of pre - qualified  people who will join your business ( subject  to individual terms ) .  i will make your bus / iness earn up to 500  times more than it currently is and that ' s  a guarantee .  i can help all types of bus / iness . opps ,  m / l . m , net / work mark . eting programs and  any other type of web site on the ' net  like mainstream or niche retail or mem . ber  sites .  if you are interested just ask .  for example :  i will show you how to drive sign / ups to  your business almost handsfree . the only  thing you have to do , is start the snowball  rolling the and rest is fully automated .  i will mentor you , to show you how to  promote using e . mail mark / eting to get  huge results while spending almost nothing  using cheap pre - qualified targeted contact  lists .  i will show you how to get into the top 10  search results for 5 keywords on the best  20 search engines to include google , msn ,  yahoo etc .  i can help anyone with any type of business .  there is no restriction to the type of  business you want me to help you build  providing its legal .  to find out if i can mentor you please send  me an email to :  mentor 888 @ isp - q . com with \"\" mentor me \"\" in the  subject and your business name , url and own  name in the message .  asking for more information .  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  i reserve the right to refuse my service to  anyone without breaching my code of conduct  or advertising standards . in such instances  i am not obliged to give a reason for  refusal of my mentoring service . to find out  if i can mentor you please send me an email  to : mentor 888 @ isp - q . com with \"\" mentor me \"\" in the  subject and your business name and url and  own name in the message .  note ;  if i have upset you in any way by sending  you this email please forgive me and send  an email to : mentor 888 @ isp - q . com with the  word \"\" off \"\" in the subject and i will  never bother you again .\",1\n\"Subject: in the heart of your business !  corporate image can say a lot of things about your  company . contemporary rhythm of life is too dynamic . sometimes it takes only  several seconds for your company to be remembered or to be lost amonq  competitors . get your ioqo , business stationery or website done riqht  now ! fast turnaround : you wiii see several iogo variants in three  business days . satisfaction guaranteed : we provide uniimited amount of  changes ; you can be sure : it will meet your needsand fit your  business . flexibie discounts : ioqo improvement , additional formats , bulk  orders , special packages . creative design for competitive price : have a look at it right  now ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: our goood medz  hello , welcome to pharm urinary zonline s vaticinate hop  - one of th mausoleum e ieading oniine pharmace clever uticai shops  v susceptive l  sparing gr  bereavement l  adoration lu  contort a  tarmac acl permeability a  audibility isv timeserving al  involute m  andmanyother .  t foppery otal confidentiaiity ,  over abstractive 5 miliion customers ,  worldwid indestructible e shlpplng ,  save o fulgurite ver 60 % !  have fustigate a nice day !\",1\n\"Subject: logo , stationer , website design and so much more !  lt is really hard to recollect a company : the  market is full of suggestions and the information isoverwhelming ; but a good  catchy logo , stylish stationery and outstanding webslte  wili make the task much easier .  we do not promise that havinq ordered a loqo your  company wiil automaticaiiy become a worid ieader : it isguite ciear that  without qood products , effective business organization and practicable aim it  will be hotat nowadays market ; but we do promise that your marketing efforts  will become much more effective . here is the list of clear  benefits : creativeness : hand - made , original logos , specially done  to reflect your distinctive company image . convenience : logo and stationery  are provided in all formats ; easy - to - use content management system letsyou  change your website content and even its structure . promptness : you  will see logo drafts within three business days . affordability : your  marketing break - through shouldn ' t make gaps in your budget . 100 % satisfaction  guaranteed : we provide unlimited amount of changes with no extra fees for you to  be surethat you will love the result of this collaboration . have a look at our  portfolio _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: restore your access  security  assistance  it has come to our attention that your account information needs to be  updated as part of our continuing commitment to protect your account and to  reduce the instance of fraud on our website . just update your personal records and you will not run into  any future problems with the online service .  however , failure to update your records until july . 21 , 2005 your account considered as suspension .  please update your records as soon as this email being sent .  our system requires further account  verification .  case id number : pp - 563 - 002 - 410  once you have updated your account records , your session will not be  interrupted and will continue as normal .  as  soon as possible . allowing your account access to remain  limited for an extended period of  time may result in further limitations on  the use of your account and possible account  closure .  click here to update your  account  you can  also confirm your identity by logging into your paypal account  at https : / / www . paypal . com / us / .  and you will be directed to the verifying page .  thank you for using paypal !  the paypal team  please do  not reply to this e - mail . mail sent to this address cannot be  answered unscribe - mailing @ paypal . com . opt : in , opt : out for assistance ,  log  in  to your paypal account and choose the \"\" help \"\" link in the footer of  any page .  to receive email notifications in plain text  instead of html , update  your preferences here .  paypal email id pp 468 \",1\n\"Subject: make your rivals envy  lt is really hard to recollect a company : the  market is full of suqgestions and the information isoverwheiming ; but a good  catchy logo , styllsh statlonery and outstanding webslte  wiil make the task much easier .  we do not promise that havinq ordered a logo your  company wiil automaticaily become a world ieader : it isguite ciear that  without qood products , effective business organization and practicable aim it  will be hotat nowadays market ; but we do promise that your marketing efforts  will become much more effective . here is the list of clear  benefits : creativeness : hand - made , original logos , specially done  to reflect your distinctive company image . convenience : logo and stationery  are provided in all formats ; easy - to - use content management system letsyou  change your website content and even its structure . promptness : you  will see logo drafts within three business days . affordability : your  marketing break - through shouldn ' t make gaps in your budget . 100 % satisfaction  guaranteed : we provide unlimited amount of changes with no extra fees for you to  be surethat you will love the result of this collaboration . have a look at our  portfolio _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: term insurance is out  aggressive underwriting programs such as . . .  table 5 to standard on permanent cases !  other company term to permanent life insurance with  non - med underwriting !  simplified and guarantee issue programs for multi - life cases !  low cost lifetime guarantees !  underwriting events ! . . .  diversified brokerage specialists has been combining  the very best in technology and personal service since 1946 !  make sure to ask about our full line of disability ltc products !  \"\" if we can ' t do it , it can ' t be done ! \"\"  call diversified brokerage specialists today !  or  please fill out the form below for more information  name :  e - mail :  phone :  city :  state :  visit us online at : www . dbs 50 . com  we don ' t want anyone  to receive our mailings who does not wish to . this is professional communication  sent to insurance professionals . to be removed from this mailing list ,  do not reply to this message . instead , go here :  http : / / www . insuranceiq . com / optout  legal notice \",1\n\"Subject: a heartwarmer : just imagine  ~ welcome to heartwarmers ~  http : / / www . heartwarmers . com  the best thing to happen to mornings since the sun !  your morning thought for the day :  retirement at 65 is ridiculous .  when i was 65 i still had pimples .  - - george burns  it ' s summer vacation time and parents will soon be hearing from  their kids that they ' re bored .  one of the biggest regrets we hear from the older generation , is  that kids lack the playful imagination that was common a generation  or two ago .  back in the \"\" olden days \"\" , kids knew how to entertain themselves  with surprisingly little . there was no such thing as playstation .  kids ran outside to play kick - the - can in a game that was shockingly  not organized by adults . they actually did it themselves .  today , mike shares some thoughts about kids and modern  imagination - - or lack thereof . . .  what do you think ?  support our sponsors  they keep our service priceless .  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  hundreds of our readers are saving a small fortune . . .  heartwarmer , petwarmer and kidwarmer subscribers are discovering the  tremendous benefits of using tel 3 advantage to make long distance and  international calls - - some saving 90 % ! get started now by calling :  800 - 330 - 6897 . when asked for your \"\" activation code \"\" say : 311 - 673 .  or you can click here to get complete details and sign up online :  http : / / www . pocketwarmers . com / c  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  get free software for your computer  hundreds of titles to choose from . you only pay postage .  in fact , order 4 disks and get free postage for the 5 th .  http : / / www . pocketwarmers . com / d  just imagine  by michael t . smith  when i married ginny , i gained a new son , daughter and four  grandsons . i became an instant grandpa .  over the july 4 th holiday , i got to meet my new daughter and her  three boys for the first time . it took a day for my new grandsons to  warm up to me .  the first day they stared at me , perhaps wondering what they  were supposed to do with this man , who they were told is \"\" grandpa . \"\"  i waited patiently . i knew boys like to play . they ' d come to me in  their own time .  on day two , the oldest two were doing summersaults over my lap .  the youngest , ben , took a little longer , but yesterday he raced me  across the yard thirty times and won every time .  the weekend brought back memories of my own childhood . we had  such imaginations . in our minds , a tree was a tower to spot  approaching bad guys , a big rock became a mountain , a fallen log a  space ship headed to the stars . we had toys , but we had to use our  imagination , not like the new toys i see my grandkids with .  our toys didn ' t talk , and if they did , you pulled a string to  make it work . we had blocks to build , crayons to create , trucks and  cars to push . they were simple toys that required imagination . i  thought about the toys in my garage , the ones i saved , when my  children outgrew them . they were simple and needed their imagination  to work . mr . potato head allowed them to learn parts of the body and  giggle at the funny face with an ear where its mouth should have been .  i still have an old plastic phone . it has a dial to turn , a  bell that rings when you push a button , and that ' s it . it doesn ' t  talk , squawk , beep or move around the room . it ' s simple and was used  when they played house , nurse , doctor , and secretary .  i have a toy doctor ' s bag , with all the plastic doctor ' s tools .  i remember all the broken bones , cuts , bangs , scratches and aches my  daughter repaired as i lay in her office moaning .  most toys today do it all . we don ' t need imagination - - it  comes in a box . video games that take us into another world or  reality , talking toys , with vocabularies better than most people ,  computerized toys to teach the alphabet . kids sit and have  imagination brought to them . the teaching toys are great , but  children tire of them - - it ' s like being in school .  when my son was young and tired of his toys , he would come to me  and say , \"\" dad , i ' m bored . \"\"  \"\" go find something to do , \"\" i ' d reply .  \"\" i don ' t know what to do . \"\"  \"\" go outside and find a friend . \"\"  \"\" naaa ! i don ' t want to do that . \"\"  \"\" use your imagination . \"\"  \"\" huh ? \"\" he asked .  \"\" well , when i was young . . . \"\" you know the routine .  sports is the same . we ' re entertained for hours watching  someone else have fun doing what they ' re good at . wouldn ' t it be  better to be playing yourself ? if we don ' t like the sports available  to watch , we create new ones . it doesn ' t matter what , people will  pay to see it , because they need to be entertained . i haven ' t heard  of world championship worm digging , but if someone offered a large  cash price , people would buy tickets to scream at the contestants .  i worry . are we becoming a society that needs outside influence  to have fun ?  i think i ' ll go climb a tree .  maybe there ' s a pirate ship on the horizon or someone is  attacking my castle .  just imagine .  - - michael t . smith  michael lives in new jersey with his new wife and son .  from our mailbag :  ( in response to last week ' s story , cinderella men )  dear heartwarmers :  last week ' s heartwarming story opened a door to memory lane . i  too , was born in the 30 s and felt some of the poverty of that time .  i remember my mom and dad who never complained of the fatigue that  was so ever present in their lives . we were very fortunate in as  much as we always had plenty of food and warm shelter . we had a  garden and salvaged every edible product available - - even certain  \"\" weeds \"\" that were quite tasty after mother got all the spices in  them . i had several beautiful dresses made from feed sacks that i  wore with pride ! we were very poor , but so rich indeed because we  had love and the knowledge that god was upper most in our lives , and  it taught us lessons that had never been printed in the books . i  deeply appreciate those lessons of long ago because they have taught  me how to handle the tough times we have encountered in this life of  prosperity and promise . thank you again for your lovely story . god  bless .  - -  do you enjoy heartwarmers ? maybe your friends would too . they can  join for free by sending an email to : join @ heartwarmers . com  thank you , heartwarmer angels !  a big heartfelt thank you to our heartwarmer angels .  joan kiefner , el dorado hills , california  jerry plantz , lees summit , missouri  ila george , schertz , texas  ronald & shirley tansill , atlanta , georgia  don goldschen , springfield , virginia  chip robinson , cambridge , massachusetts  kathleen altemus , avonmore , pennsylvania  keith & kay hill , camarillo , california  phyllis reasoner , adrian , michigan  bernadine brooks , winters , california  david moneyhon , spring , texas  albert blight , windsor , ontario  linda king , portland , oregon  judy hord , phoenix , arizona  sally bible , lake oswego , oregon  pam peyron , vale , oregon  rayna peyron , la grande , oregon  judith hurley , vail , arizona  catherine waygood , east hampton , new york  ethel halpin , ridge new york  lizbeth crews , mcallen , texas  julie casos , west jordan , utah  shirley johnson , ft . oglethorpe , georgia  david johnson , caseyville , illinois  elaine olson , santa fe , new mexico  sue mullennix , ft . wayne , indiana  deborah shearer , dundalk , maryland  twila escalante , grand cayman  lois scott , sandpoint , idaho  nancy wolf , bay shore , new york  frances arellano , roland , iowa  arlene millman , huntington , new york  nancy eckerson , akron , new york  david price , tempe , arizona  marilyn myers , anderson , indiana  linda barfield , mccoll , south carolina  vickie kellogg , durham , north carolina  vicki arcado , sandy , utah  charles & victoria trenkle , palm desert , ca  cheri nicodemus , baltimore , maryland  debra cole , balko , oklahoma  karl schmidt , pitt meadows , british columbia  lisa marie coffey , oak park , california  jean carlson , jamestown , north dakota  nannette gaylord , new bern , north carolina  jeanne escher - pickel , irving , texas  lorena copeland , greensboro , north carolina  leta sousa , montgomery , alabama  al batt , hartland , minnesota  beverly salemme , randolph , massachusetts  barbara wolf , greeley , colorado  joyce courson , perryton , texas  david johnson , caseybille , illinois  donna diciaccio , lynn , massachusetts  nancee donovan , concord , new hampshire  marilyn myers , anderson , indiana  ann berger , colville , washington  kathleen doldan , grand island , new york  daria takach , garfield , new jersey  terri goggin , havertown , pennsylvania  suzanne shuster , south riding , virginia  dick & doris miller , central point , oregon  david johnson , caseyville , illinois  rosemary blackman , tulare , california  mary munarin , scottsdale , arizona  tabitha jones , middlesboro , kentucky  barbara lincks , gardena , california  mary horbal , shelton , connecticut  leo perry , st . paul , minnesota  you can become an \"\" angel \"\" member with your contribution of $ 25  or more . your name will be proudly listed when you join . help our  efforts to spread positive and uplifting messages around the planet .  send to : heartwarmers , po box 527 , lewiston , ny 14092 . be sure to  include your name and town .  if you know someone who is seeking help - - for anything , including  anger , smoking , bad habits , lack of motivation , etc - - let them know  they can begin taking control of their lives today . have them check  this website out : http : / / www . hypnosisdownloads . com / ? 739  we put spaces before and after the @ sign in the email addresses to  prevent worms , viruses , and robots from harvesting them . if you  would like to correspond , just remove the spaces .  changing your email address soon ? if you are going to change your  email address and want to continue receiving your heartwarmers , be  sure to let us know . it ' s easy to change . send a blank email from  your old email address to : remove @ heartwarmers . com then , send an  email from your new email address to : join @ heartwarmers . com  grace says : when diane ' s 2 - year - old grandson oggie arrived , she  picked him up for a hug . \"\" mmm , \"\" diane said , \"\" you smell good . what  smells so good ? \"\" oggie replied , \"\" screen saver . \"\" ( he meant  sunscreen ! )  you can get kidwarmers for free by sending an email to : join @ kidwarmers . com  to join ( it ' s free ! ) , send an email to :  join @ heartwarmers . com  to discontinue , send an email to :  remove @ heartwarmers . com  homepage , ad info and archives :  http : / / www . heartwarmers . com  your own free heartwarmers webpage :  http : / / www . heartwarmers . com / freepage /  directory of members ' webpages :  http : / / www . heartwarmers 4 u . com / members /  70 percent off new inkjet cartridges  http : / / www . heartwarmers 4 u . com / b  note : nothing here may be reproduced or published in  any way without the express permission of the  individual authors and / or copyright owners .  to unsubscribe , click on the following web page .  your membership is listed as : projecthoneypot @ projecthoneypot . org\",1\n\"Subject: does your business depend on the online success of your website ?  submitting your website in search engines may increase  your online sales dramatically .  if you invested time and money into your website , you  simply must submit your website  oniine otherwise it will be invisible virtualiy , which means efforts spent in vain .  lf you want  people to know about your website and boost your revenues , the oniy way to do  that is to  make your site visibie in places  where peopie search for information , i . e .  submit your  website in multiple search engines .  submit your website online  and watch visitors stream to your e - business .  best regards ,  jacindamaddox _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: perfect visual solution for your business now  working on your company ' s image ? start with a  visual identity a key to the first good impression . we are here to  help you ! we ' ll take part in buiiding a positive visual imaqe  of your company by creatinq an outstandinq loqo , presentable stationery  items and professional website . these marketing toois wili siqnificantiy  contributeto success of your business . take a iook at our work sampies , hot deai packages and  see what we have to offer . we work for you !  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: localized software , all languages available .  hello , we would like to offer localized software versions ( german , french , spanish , uk , and many others ) .  all iisted software is avaiiabie for immediate downioad !  no need to wait 2 - 3 week for cd delivery !  just few exampies :  - norton internet security pro 2005 - $ 29 . 95  - windows xp professional with sp 2 fuil version - $ 59 . 95  - corel draw graphics suite 12 - $ 49 . 95  - dreamweaver mx 2004 ( homesite 5 . 5 including ) - $ 39 . 95  - macromedia studio mx 2004 - $ 119 . 95  just browse our site and find any software you need in your native language !  best regards ,  davina \",1\n\"Subject: delivery status notification ( failure )  this is an automatically generated delivery status notification .  delivery to the following recipients failed .  antunes @ coppead . ufrj . br\",1\n\"Subject: = ? iso - 8859 - 1 ? q ? lose = 20 fat = 2 c = 20 gain = 20 muscle = 20 with = 20 hgh ? =  hello , [ ! to ! ] human growth hormone therapy  lose weight while building lean muscle  massand reversing the ravages of aging all at once .  remarkable discoveries about human growth  hormones ( hgh ) are changing the way we think about aging and weight  loss .  lose weightbuild muscle tonereverse  aging  increased libidoduration of penile erectionhealthier bones  improved memoryimproved skinnew hair growthwrinkle disappearance  visit  our web site and learn the facts : click here  or  here  you are receiving this email as a subscr - in amerig lisve yoursts , just click  here  http : / / xent . com / mailman / listinfo / fork\",1\n\"Subject: naturally irresistible your corporate identity  lt is really hard to recollect a company : the  market is full of suqgestions and the information isoverwheiming ; but a good  catchy logo , styllsh statlonery and outstandlng webslte  will make the task much easier .  we do not promise that having ordered a ioqo your  company wiil automaticaliy become a world ieader : it isguite clear that  without qood products , effective business organization and practicable aim it  will be hotat nowadays market ; but we do promise that your marketing efforts  will become much more effective . here is the list of clear  benefits : creativeness : hand - made , original logos , specially done  to reflect your distinctive company image . convenience : logo and stationery  are provided in all formats ; easy - to - use content management system letsyou  change your website content and even its structure . promptness : you  will see logo drafts within three business days . affordability : your  marketing break - through shouldn ' t make gaps in your budget . 100 % satisfaction  guaranteed : we provide unlimited amount of changes with no extra fees for you to  be surethat you will love the result of this collaboration . have a look at our  portfolio _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: you may want to look into funding from grants . . . .  government grants e - book 2002 edition  you can receive the money you need . . .  every day millions of dollars are given away to people , just like you ! !  your government spends billions of tax dollars on government grants .  do you know that private foundations , trust and corporations are  required to give away a portion of theirs assets . it doesn ' t matter ,  where you live ( usa only ) , your employment status , or if you are broke , retired  or living on a fixed income . there may be a grant for you !  anyone can apply for a grant from 18 years old and up !  we will show you how & where to get grants . this book is newly updated with the most current information ! ! !  grants from $ 500 . 00 to $ 50 , 000 . 00 are possible !  grants don ' t have to be paid back , ever !  grants can be ideal for people who are or were bankrupt or just have bad credit .  please visit our website  and place your order today ! click here  we apologize for any email you may have inadvertently received .  please click here to be removed from future mailings .  [ jk 9 ^ \"\" : } h & * tgobk 5 nkiys 5 ]\",1\n\"Subject: professionally - designed logos and identities  thinking of breathing new life into your business ?  start from revamping its front - endlogo and  visualidentity .  we offer creative custom design of ioqos ,  stationery and web - sites . under our careful hand thesepowerfui marketinq  tools wili brinq a breath of fresh air into your business and make you stand out  amonqthe competitors .  you are just a ciick  away from your future success . ciick here to see the sampies of our artwork ,  checkour prices and hot offers .  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: [ ilug - social ] re : guaranteed to lose 10 - 12 lbs in 30 days 10 . 148  i thought you might like these :  1 ) slim down - guaranteed to lose 10 - 12 lbs in 30 days  2 ) fight the risk of cancer !  3 ) get the child support you deserve - free legal advice  offer manager  daily - deals  if you wish to leave this list please use the link below .  - -  irish linux users ' group social events : social @ linux . ie  http : / / www . linux . ie / mailman / listinfo / social for ( un ) subscription information .  list maintainer : listmaster @ linux . ie\",1\n\"Subject: save your money by getting an oem software !  need in software for your pc ? just visit our site , we might have what you need . . .  best regards ,  armandina \",1\n\"Subject: perfect logo charset = koi 8 - r \"\" >  thinking of breathing new life into your business ?  start from revamping its front - end - logo and visuai identity .  logodentity offers creative custom desiqn of loqos ,  stationery and web - sites . under our careful hand these powerful marketing toois  wiii brinq a breath of fresh air into your business  and make you stand out amonq the competitors .  you are just a ciick  away from your future success . click here to see the samples of our artwork ,  check our prices and hot offers\",1\n\"Subject: are you happy about your size and sexual performance ?  experience more powerful orgasms  http : / / www . siratu . com / ss /  our thoughts are free .  less is more .  the best way out is always through .  patience is the companion of wisdom .  one swallow does not make a summer .\",1\n\"Subject: get your babies diapers bill paid for , for a year !  your family could definately use this , now go .  kaazqchn\",1\n\"Subject: perfect logo charset = koi 8 - r \"\" >  thinking of breathing new life into your business ?  start from revamping its front - end - logo and visuai identity .  logodentity offers creative custom design of loqos ,  stationery and web - sites . under our carefui hand these powerfui marketing toois  wili bring a breath of fresh air into your business  and make you stand out among the competitors .  you are just a click  away from your future success . ciick here to see the samples of our artwork ,  check our prices and hot offers\",1\n\"Subject: affordable online prescripiton here  caucasus brenda pontific  locate your prescription immediately !  we have all tablets you could possibly need !  all your needs in one shop !  stop receiving promotional material now  contemporaneous shaky deleterious cathodic \",1\n\"Subject: internet news feeds for executives dfvht  finally ,  a newsfeed that delivers current and  relevant sales , marketing & advertising articles from  such magazines as business 2 . 0 , fast company , technology  marketing , wired , pc world , asia street intelligence , inc , bank technology . . .  all in one location font - size : 16 px ; color : # 000066 \"\" > easy  to read . easy to use . easy on your time .  providing  the internets ' most  comprehensive web directory for sales ,  marketing font - size : 14 px ; color : # 000000 \"\" > today ' s  top business magazine reviews along with a wide selection of articles from  relevant sales and marketing topics .  gain  access to all the suppliers and  resources you need to do your job effectively .  if  you can ' t find the supplier or resource  that you need . . . one of our reps will  go to work to find it for you .  business 2 . 0 , fast company , technology marketing , wired , pc world , asia street intelligence , inc , bank technology and more  you are receiving this e - mail because you have opted - in to receive special offers from  offersrus . net or one of it ' s marketing affiliates . if you feel you have received this e - mail in error or do not wish to receive additional special offers , please scroll down to unsubscribe .  this e - mailing has been sent to you as a person interested in the information enclosed . this e - mail is not spam under the federal regulatory laws of the united states . this message is being sent to you in compliance with the proposed federal legislation for commercial e - mail ( h . r . 4176 - section 101 paragraph ( e ) ( 1 ) ( a ) ) and bill s . 1618 title iii passed by the 105 th us congress . we sincerely apologize for any inconvenience . this message is not intended for residents of wa , nv , ca , va . screening of addresses has been done to the best of our technical ability . if you are a california , nevada , washington , or virginia resident please follow the instructions below and you will be permanently removed from our list immediately .  if you would like to be removed from our e - mail list , please click on the words  remove me  click send , and you will be removed from our list immediately .  ubyrpqtetxjyuyqyfjtie\",1\n\"Subject: we will guide you thru all of the answers to your questions about laser vision correction .  there ' s a good chance you could throw your glasses and contacts away . information for you now .  tuaujryt\",1\n\"Subject: save your money by getting an oem software !  need in software for your pc ? just visit our site , we might have what you need . . .  best regards ,  ardith \",1\n\"Subject: you don _ t know how to get into search engine results ?  submitting your website in search engines may increase  your online sales dramatically .  if you invested time and money into your website , you  simply must submit your website  oniine otherwise it wiil be invisible virtualiy , which means efforts spent in vain .  lf you want  peopie to know about your website and boost your revenues , the oniy way to do  that is to  make your site visible in places  where peopie search for information , i . e .  submit your  website in muitipie search engines .  submit your website online  and watch visitors stream to your e - business .  best reqards ,  brianneholden _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: take the pill and enjoy great sex  the men is rich when he is healthy !  let your life be a counter friction to stop the machine .  human reason is by nature architectonic .  all professions are conspiracies against the laity .\",1\n\"Subject: mail delivery failed : returning message to sender  this message was created automatically by mail delivery software ( exim ) .  a message that you sent could not be delivered to one or more of its  recipients . this is a permanent error . the following address ( es ) failed :  info @ markenweine . info  smtp error from remote mailer after rcpt to : :  host a . mx . markenweine . info [ 194 . 180 . 104 . 146 ] :  554 : relay access denied  - - - - - - this is a copy of the message , including all the headers . - - - - - -  return - path :  received : from aji 232 . neoplus . adsl . tpnet . pl ( [ 83 . 25 . 242 . 232 ] helo = mailwisconsin . com )  by mail . work . de with smtp ( exim 3 . 35 # 1 ( debian ) )  id ldupje - 0006 gu - 00  for ; tue , 19 jul 2005 12 : 54 : 03 + 0200  received : from 205 . 214 . 42 . 66  ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ;  by mailwisconsin . com with http id j 87 gzo 09360200 ;  tue , 19 jul 2005 10 : 57 : 46 + 0000  message - id :  date : tue , 19 jul 2005 10 : 57 : 46 + 0000  subject : just to her . . .  from : \"\" barry castillo \"\"  to : info @ markenweine . info  user - agent : squirrelmail / 1 . 4 . 3 a  x - mailer : squirrelmail / 1 . 4 . 3 a  mime - version : 1 . 0  content - type : text / html ; charset = iso - 8859 - 1  content - transfer - encoding : 8 bit  x - priority : 3 ( normal )  importance : normal  soft viagra at $ 1 . 62 per dose  ready to boost your sex life ? positive ?  time to do it right now !  order soft viagra at incredibly low prices  starting at $ 1 . 99 per dose ! unbelivabie !\",1\n\"Subject: any med for your girl to be happy !  your girl is unsatisfied with your potency ? don ' t wait until she finds another men !  click here to choose from a great variety of llcensed love t @ bs ! best pri $ es , fast shippinq and quaranteed effect ! here you buy it riqht from warehouse !  the store is verlfied by bbb and approved by vlsa ! \",1\n\"Subject: are you ready to get it ?  hello !  viagra is the # 1 med to struggle with mens ' erectile dysfunction .  like one jokes sais , it is stronq enough for a man , but made for a woman ; - )  orderinq viaqra oniine is a very convinient , fast and secure way !  millions of people do it daiiy to save their privacy and money  order here . . . \",1\n\"Subject: save your money buy getting this thing here  you have not tried cialls yet ?  than you cannot even imagine what it is like to be a real man in bed !  the thing is that a great errrectlon is provided for you exactiy when you want .  ciaiis has a lot of advantaqes over viaqra  - the effect lasts 36 hours !  - you are ready to start within just 10 minutes !  - you can mix it with aicohol ! we ship to any country !  get it riqht now ! . \",1\n\"Subject: subprime refi mail sale  subprime  refi mail sale  do you want 50 + new refi ' s in  your pipeline this month ? if  so , please tell us two things : what type of borrowers do you want calling  in and how many calls you can handle per week ? we do the rest !  we can have your phones ringing within  7 daysturnkey direct mail  campaigns include : 1 . powerful proven mail pieces 2 . 100 % targeted  database 3 . exclusive market area availability 4 . postage with usps  priority mail deliveryyou just answer the phones and write the  loans ( 1003 ' s ) call :  1 - 877 - 266 - 0908 or email us  at : info @ . comvisit  us at www . . com  ask about our subprime refi mail sale ! ! !  we will fill your  pipeline ! infinity has been specializing in direct mail campaigns for  the mortgage industry for 15 years  to unsubscribe please email usaone @ cyberverse . com \",1\n\"Subject: 25 mmg works wonders  how to save on your m buoyancy edlcatlons over 60 % .  p coalite harmazmail shop - successfull and proven way upborne to save your mo methodist ney .  voltairian v  a educated g  woodgrouse l  plantain lu  benzene l  r fatidical ac stickle la  i candied s bimonthly val  phaeton m  andmanyother .  * best prlc passport es  * around worldwide shlpplng  * total confiden rostrate tiaiity  * over 5 handball miliion customers  bibliophile have a nice day !\",1\n\"Subject: save your money buy getting this thing here  you have not tried cialls yet ?  than you cannot even imagine what it is like to be a real man in bed !  the thing is that a great errrectlon is provided for you exactly when you want .  ciails has a iot of advantaqes over viaqra  - the effect lasts 36 hours !  - you are ready to start within just 10 minutes !  - you can mix it with aicohoi ! we ship to any country !  get it right now ! . \",1\n\"Subject: security alert - confirm your ebay information  ebay suspension  need help ?  dear valued ebay member ,  we regret to inform you that your ebay account has been suspended due  to concerns we have for the safety and integrity of the ebay community .  per the user agreement , section 9 , we may immediately issue a warning ,  temporarily suspend , indefinitely suspend or terminate your membership  and refuse to provide our services to you if we believe that your  actions may cause financial loss or legal liability for you , our users or  us . we may also take these actions if we are unable to verify or  authenticate any information you provide to us .  due to the suspension of this account , please be advised you are  prohibited from using ebay in any way . this includes the update of your actual  account .  if you could please take 5 - 10 minutes out of your online experience and  update your personal records you will not run into any future problems  with the online service .  please update your records by the 23 of july .  once you have updated your account records your ebay session will not be  interrupted and will  continue as normal .  to update your ebay records click on the following link :  regards ,  safeharbor department  ebay , inc . \",1\n\"Subject: you can win an extreme bedroom makeover valued at 50 k !  win an extreme bedroom makeover .  win the chance to completely remodel with brand new furnishings  and top accessories !  get products from sony ( r ) , panasonic ( r ) , samsung ( r ) ,  macy ' s ( r ) , and furniture . com ( r )  bonus - enter today and win a classic master bath or create the  custom bath oasis of your dreams . . . select tile , plumbing fixtures ,  cabinets , countertops , and lighting . top it off with a luxury shower  tower or whirlpool - or both !  just to make sure your makeover is complete . . .  we ' re throwing in a $ 5 k shopping spree at sears ( r ) !  ymjscytxnvpf\",1\n\"Subject: failed mail  your message to mxo 0 . mail . bellsouth . net was rejected .  i said :  rcpt to :  and mxo 0 . mail . bellsouth . net [ 205 . 152 . 59 . 32 ] responded with  550 invalid recipient :\",1\n\"Subject: glasglow follow up  hello objective - view . de  i wanted follow up to yesterdays email to point out the glasglow partner  program to those who may be interested . we offer a 40 % discount and  exclusive license agreement for your region . we do dropship using dhl free  of charge . if this may be something that interests you please let me know .  if we are already in negotiation , exchanged links or you have listed  yourself on the remove list please disregard this email and no further  reply is required .  sincerely  michael  www . glasglow . com  if you do not wish to receive further updates please enter your email at  http : / / www . cbxsales . com / un . html . they have agreed to send us the remove  lists so that we do not keep bothering those that do not wish to be  bothered .\",1\n\"Subject: http : / / www . foulston . com  hello ,  i have visited www . foulston . com and noticed that your website is not listed on some search engines . i am sure that through our service the number of people who visit your website will definitely increase . seekercenter is a unique technology that instantly submits your website to over 500 , 000 search engines and directories - - a really low - cost and effective way to advertise your site . for more details please go to seekercenter . net .  give your website maximum exposure today !  looking forward to hearing from you .  best regards ,  vanessa lintner  sales marketing  www . seekercenter . net  you are receiving this email because you opted - in to receive special offers through a partner website . if you feel that you received this email in error or do not wish to receive additional special offers , please enter your email address here and click the button of remove me : \",1\n\"Subject: 5000 full color postcards for $ 329  pure postcards 1227 s . lincoln ave . clearwater , fl 33756 this e - mail message is an advertisement and / or solicitation . \",1\n\"Subject: you don _ t know how to attract customers to your website ?  submitting your website in search engines may increase your online sales dramatically .  if you invested time and money into your website , you simply must submit your website  online otherwise it will be invisible virtually , which means efforts spent in vain . if you want  people to know about your website and boost your revenues , the only way to do that is to  make your site visible in places where people search for information , i . e . submit your  website in multiple search engines .  submit your website online and watch visitors stream to your e - business .  best regards ,  anderson west\",1\n\"Subject: still wanna her ? : - )  you have not tried cialls yet ?  than you cannot even imagine what it is like to be a real man in bed !  the thing is that a great errrectlon is provided for you exactly when you want .  ciaiis has a iot of advantaqes over viaqra  - the effect lasts 36 hours !  - you are ready to start within just 10 minutes !  - you can mix it with alcohol ! shipping to any country available !  get it right now ! . \",1\n\"Subject: checking account update  dear reader :  we sometimes approach our analysts for their thoughts on emerging market sectors we ' re interested in . on certain occasions , they come to us with intriguing insights of certain aspects of the market that have caught their attention .  as you know our track record speaks for itself we are happy to bring you another situation with huge upside potential we think this could be the one that when we look back shortly everyone will be saying i should have more .  for more info click here ! ! !  remember : nothing ventured nothing gained \",1\n\"Subject: no pills , no pumps - its the patch  experience more powerful orgasms  http : / / www . siratu . com / ss /  give me where to stand , and i will move the earth .  only a fool walks backwards into the future .  poetry is a way of taking life by the throat .  i am certain there is too much certainy in the world .  a word to the wise is infuriating .\",1\n\"Subject: look ! desparately seeking 100 lazy people . . . . who wants to make money  this is not spam . thanks for posting to our promotional web sites . if you  wish to no longer receive email from us at this email address , or if you feel  you received this email in error please send an email message to  solution 244 @ hotmail . com with \"\" remove \"\" placed in the subject line  dear friend ,  we are desparately looking for 100 lazy people  who wish to make lots of money without working .  we are not looking for people who are self - motivated .  we are not looking for people who join every ' get rich  quick ' scheme offered on the internet .  we are not looking for class presidents , beautiful  people , career builders or even college graduates .  we don ' t even want union workers or trade school graduates .  we want the laziest people that exist - the guys and  gals who expect to make money without lifting a finger .  we want the people who stay in bed until noon .  we want those of you who think that getting out of bed to go  lay on the couch is an effort that is best not thought about .  if you meet this criteria , go to this site and join free :  in case you haven ' t figured it out yet , we want  the kind of people who do not take risks .  if you are the kind of person who will consider doing  something that ' s not a ' sure thing ' , then do not respond .  this is too easy a way to make money  and there ' s no challenge in it .  if you can get to the website , you will be able to see the first home  business in history that requires no work . none .  by clicking on this link and going to  this website , you will be aknowledging the fact that you  want to make enough money that you can quit  your regular job and sleep all day .  we are not looking for a commitment from you  and we don ' t even want your money .  as a matter of fact , we don ' t even want you  to hear from us again if the idea of making lots  of money without working does not interest you .  so if nothing else , remember this -  to make money without working for it just  \"\" join free \"\" . simple as that .  we look forward to hearing from you .  in all seriousness ,  this is not a \"\" no work \"\" program that will make you money without lifting  a finger .  advertising effectively requires work and plenty of it . oh , for sure , it ' s  not like picking cotton under a broiling sun , but it is work , nonetheless .  and we do want peoples ' money only when they see the value of our  products , services and upgrades .  we look forward to hearing from you .  cordially your lazy friend ,  theresa brown  we have 10 extremely targeted safe - lists for you to use daily  in your advertising campaign ! this is spam - free , worry - free advertising at  its best !  get your promotion to prosperity & peace  sow a seed and god will meet your need !  give to your local charitable organization  life in the word  www . joycemeyer . org  success begins in the mind !  * * * make it a great day * * *\",1\n\"Subject: you ' ve won ! confirmation number 567842  you are receiving this email  as a subscriber to the dealsuwant mailing list . to remove yourself  from this and related email lists click here :  unsubscribe my  email  under bill ( s ) 1618 title iii by the 105 us congress , per section  301 , paragraph ( a ) ( 2 ) of s . 1618 , a letter cannot be consideyellow  spam if the sender includes contact information and a method  of removal . \",1\n\"Subject: returned mail : see transcript for details  the original message was received at tue , 19 jul 2005 12 : 59 : 14 + 0200  from chelloo 81018216102 . chello . pl [ 81 . 18 . 216 . 102 ]  - - - - - the following addresses had permanent fatal errors - - - - -  ( reason : insufficient permission )  - - - - - transcript of session follows - - - - -  maildrop : maildir over quota .  550 5 . 0 . 0 . . . insufficient permission\",1\n\"Subject: elektronik lottery promotion prize awards ! ! !  from : government accredited licensed lottery promoters . winning notice for category \\ \"\" a \\ \"\" winner  dear lucky winner ,  re : elektronik lotto promotion prize awards winning notification  we are pleased to inform you of the result of the just concluded annual  final draws of lotto international netherlands programs .  the online cyber lotto draws was conducted from an exclusive list of  25 , 000 e - mail addresses of individual and corporate bodies picked by an  advanced automated random computer search from the internet . no tickets were sold . after this automated computer ballot , your e - mail address emerged as one of two winners in the category \\ \"\" a \\ \"\" with the following :  ref number : pc 390 es 214  batch number : 26371545 - lni / 2005  ticket number : pcp 002 871  you as well as the other winner are therefore to receive a cash prize  of 1 , 500 , 000 . 00 . ( one million , five hundred thousand euro only ) each from the total payout . your prize award has been insured  with your e - mail address and will be transferred to you upon meeting  our requirements , statutory obligations , verifications , validations and  satisfactory report .  to begin the claims processing of your prize winnings you are advised  to contact our licensed and accredited claims agent for category  \\ \"\" a \\ \"\" winners with the information below :  mr . van bell ,  remittance department director ,  tel : + 31 617 186 560  e - mail : vanbell @ nzoomail . com  vanbell 2005 @ web - mail . com . ar  you are also advised to provide him with the under listed information  as soon as possible :  1 . name in full  2 . address  3 . nationality  4 . age  5 . occupation  6 . phone / fax  note : all winnings must be claimed not later than 14 days . after this  dateall unclaimed funds would be included in the next stake .  remember to quote your reference information in all correspondence .  you are to keep all lotto information away from the general public  especially your reference and ticket numbers . ( this is important as a  case of double claims will not be entertained ) . members of the affiliate  agencies are automatically not allowed to participate in this program .  thank you and congratulations ! ! !  yours faithfully ,  mrs . lynn rowlands ,  games / lottery coordinator .  lotto international netherlands  www . lotto . nl  this email may contain information which is confidential and / or  privileged . the information is intended solely for the use of the  individual or entity named above . if you are not the intended  recipient , be aware that any disclosure , copying , distribution or use of  the contents is prohibited . if you have received this electronic  transmission in error , please notify the sender by telephone or return  email and delete the material from your computer .  mail sent from webmail service at php - nuke powered site  - http : / / skdclan . wwwpuntocom . com\",1\n\"Subject: first - class quality . economic pricing . quicker effects . safety assurance .  i am a repeat buyer of your eshop . i found out . additional varieties . on  the site . it ' s really great . - - tiffany m . in nc  it is better value . for your greenbacks . we provide medz at specialprices .  http : / / 5 x . ra . geturdear . com / uom /  - - - - - original message - - - - -  from : brian @ a . com [ mailto : quinn @ dcmy . com ]  sent : thursday , march 4 , 2005 0 : 20 pm  to : elvis ; kory @ wgay . com ; jarod ; emilio ; harrison  subject : you would hate yourself . if you reject this chance . to reduce  expenditures on quality taablets ?  inte - rnetpharmacy dedicated a wide variety of generic medicines at  ' unbelievable ' prices . our licensed physicians issue gratis prescrip . tion  and consultations as a ' plus ' conveniences to you .  middle of a wood . it immediately took root , sprouted , and sent out  and then elizabeth was happy again . these were her internal persuasions :  as to captain wentworth ' s views , she deemed it of more consequence\",1\n\"Subject: localized software , all languages available .  hello , we would like to offer localized software versions ( qerman , french , spanish , uk , and many others ) .  ali iisted software is availabie for immediate downioad !  no need to wait 2 - 3 week for cd delivery !  just few examples :  - norton internet security pro 2005 - $ 29 . 95  - windows xp professional with sp 2 fuil version - $ 59 . 95  - corei draw graphics suite 12 - $ 49 . 95  - dreamweaver mx 2004 ( homesite 5 . 5 includinq ) - $ 39 . 95  - macromedia studio mx 2004 - $ 119 . 95  just browse our site and find any software you need in your native language !  best regards ,  zaida \",1\n\"Subject: get rid of premature ejaculation and last longer  new penis enlargement patches !  http : / / www . retdehola . com / ss /  self is the only prison that can bind the soul .  to the uneducated , an a is just three sticks .  from the sublime to the ridiculous is but a step .  no nice men are good at getting taxis .  a man cannot be too careful in the choice of his enemies .\",1\n\"Subject: = ? iso - 8859 - 1 ? q ? fw : _ cd _ nua _ do _ dhamhsa = ed _ ch = e 9 il = ed ? =  - - - - - original message - - - - -  from : rathcairn  to : automail  script ; automail  script ; astraea @ iol . ie ; ?se tobin ; arabenl 6313168 @ hotmail . com ; aofarachain @ tinet . ie ; aofarachain @ eircom . net ; anthony  gorman ; ann - mari bergkvist ; annemarie meehan ; annemarie mcdonnell ; anne 7172 @ arabia . com ; anna  swelund ; anna ni thuama ; ann faherty  ; anewloan @ mail . ru ; andy  plunkett ; andrew  delany ; andrea nic oscair ; an  fhiontarlann ; amurtagh @ tinet . ie ; amanda n?  ghuidhir ; als 2 @ hotmail . com ; alpha @ fun . 21 cn . com  ; allen moira  ; allen carberry ; alex _ doyle @ ie . ibm . com ; alan mcgowan ; alain  civel ; aishling n? raghallaigh ; ?ine m?ire n? choile?in ; aine  guilfoyle ; ailin . nichuir @ ucd . ie ; ail?n n?  h?g?in ; aileen  o ' meara , rte ; advisor @ physiciansblend . net ; adshwe @ bekkers . com . au ; adrian 28 @ esatclear . ie ; admin ; ade kallas ; adare productions ; abqewvbgf @ iinet . net . au ; aal 133777 @ yahoo . com ; a _ crothers @ looksmart . com . au ; 89 ok 7 yumhjn @ msn . com ; 12 unidiploma @ msn . com ; ogbvll 2 jf @ solvo . spb . su ; daithi mac carthaigh ; d 7596 @ go . ru ; d 23463 @ portugalmail . com  cc : 09886 w @ ams . com . br ; 0815 @ activate . de ; 01 bb 91 b 2 . 7 e 887960 @ genesys . pt ; 00 luke @ upline . se  sent : tuesday , may 21 , 2002 3 : 47 pm  subject : cd nua do dhamhsa? ch?il?  a chara ,  email gairid le cur in i?l duit faoi  dhl?thdhiosca nua at? ar f?il dona damhsa? ch?il? is coitianta i measc daoine  ?ga .  t? ceol ar dona damhsa? seo a leanas  :  balla? luimn?  briseadh na carraige  baint an fh?ir  ionsa? na hinse  port an fh?mhair  cor na s?og  r?ic? mh?la  tonna? thora?  droichead ?tha luain  staic?n eorna  se?in?n  cor beirte  shoe the donkey  waltzes  agus eile  is f?idir an cd a cheannach tr?d www . damhsa . com  n? 086 8339082  le meas ,  brian ? broin \",1\n\"Subject: re : [ 1 ] save over $ 70 on this exquisite software suite . 32004  take  control of your computer with this top - of - the - line software !  norton  systemworks 2002 software suite  - professional edition -  includes  six - yes 6 !  - feature - packed utilitiesall for 1  special low  price of only  $ 29 . 99 !  this  software will : -  protect your computer from unwanted and hazardous viruses -  help secure your private valuable information - allow  you to transfer files and send e - mails safely -  backup your all your data quick and easily - improve your  pc ' s performance w / superior  integral diagnostics ! - you ' ll never have to take your  pc to the repair shop again !  6  feature - packed utilities  1  great price  a $ 300 +  combined retail value  yours for  only $ 29 . 99 !  price includes free  shipping ! and  for a limited time buy any 2 of our products get 1 free !  don ' t fall  prey to destructive viruses or hackers ! protect your computer and  your valuable information and  -  click here to order yours now ! -  or call  toll - free 1 - 800 - 861 - 1481 !  your email  address was obtained from an opt - in list . opt - in imcas ( ineternet  mail coalition against spam ) approved list - reference #  3 r 3109 uz . if you wish to be unsubscribed from this list , please click  here . allow 5 business days for removal . if you have previously unsubscribed and are still receiving  this message , you may email our spam  abuse control center . we do not condone spam in any shape or form .  thank you kindly for your cooperation . \",1\n\"Subject: your online sales are low because you don _ t have enough visitors ?  submitting your website in search engines may increase  your online sales dramatically .  if you invested time and money into your website , you  simply must submit your website  oniine otherwise it wiil be invisibie virtuaiiy , which means efforts spent in vain .  if you want  peopie to know about your website and boost your revenues , the only way to do  that is to  make your site visible in places  where peopie search for information , i . e .  submit your  website in multiple search engines .  submit your website online  and watch visitors stream to your e - business .  best reqards ,  springmorqan _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: hi  ho aussie w to save on your medlcatlons over 60 % .  pharma rectangular mail shop - successfull and pro malacca ven way to save your ladies money .  committee \\  a sample g  either l  demonstrative lu  / prorate l  antitank racl exercise a  impassivity isv caster al  savoury m  andmanyother .  * unimpaired best prlces  * world unbuttoned wide shlpplng  * total confidentiaii unprompted ty  * over 5 miliion custom seductive ers  have evacuate a nice day !\",1\n\"Subject: make your rivals envy  lt is really hard to recollect a company : the  market is full of sugqestions and the information isoverwhelminq ; but a good  catchy logo , stylish statlonery and outstandlng webslte  wiii make the task much easier .  we do not promise that having ordered a iogo your  company wili automaticaiiy become a worid ieader : it isquite ciear that  without qood products , effective business organization and practicable aim it  will be hotat nowadays market ; but we do promise that your marketing efforts  will become much more effective . here is the list of clear  benefits : creativeness : hand - made , original logos , specially done  to reflect your distinctive company image . convenience : logo and stationery  are provided in all formats ; easy - to - use content management system letsyou  change your website content and even its structure . promptness : you  will see logo drafts within three business days . affordability : your  marketing break - through shouldn ' t make gaps in your budget . 100 % satisfaction  guaranteed : we provide unlimited amount of changes with no extra fees for you to  be surethat you will love the result of this collaboration . have a look at our  portfolio _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: clear benefits of creative design  lt is really hard to recollect a company : the  market is full of sugqestions and the information isoverwhelminq ; but a good  catchy logo , stylish statlonery and outstanding webslte  wiil make the task much easier .  we do not promise that havinq ordered a logo your  company will automaticaily become a worid leader : it isguite clear that  without qood products , effective business organization and practicable aim it  will be hotat nowadays market ; but we do promise that your marketing efforts  will become much more effective . here is the list of clear  benefits : creativeness : hand - made , original logos , specially done  to reflect your distinctive company image . convenience : logo and stationery  are provided in all formats ; easy - to - use content management system letsyou  change your website content and even its structure . promptness : you  will see logo drafts within three business days . affordability : your  marketing break - through shouldn ' t make gaps in your budget . 100 % satisfaction  guaranteed : we provide unlimited amount of changes with no extra fees for you to  be surethat you will love the result of this collaboration . have a look at our  portfolio _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: adv : win a green card and become a u . s citizen !  the united states has a program , called diversity immigrant visa  lottery ( better known as the green card lottery ) , making available  each year by random selection 50 , 000 permanent residence visas  ( green cards ) to people from around the world . the objective of the  program is to issue green cards to individuals born in countries with  historically low levels of immigration to the united states .  a green card is a permanent residence visa of the u . s . a . a green card  will give you legal right to work and live permanently in the united  states . green card holders receive health , education , and several other  benefits . if you win a green card , you can apply for u . s . citizenship at  a later time . the green card does not affect your present citizenship .  you and your family could be lucky winners !  your email address was obtained from a purchased list , reference # 00193 . if you wish to unsubscribe  from this list , please click here .  if you have previously unsubscribed and are still receiving this message , you may email our  abuse control center , or call 1 - 888 - 763 - 2497 ,  or write us at : nospam , 6484 coral way , miami , fl , 33155 .  - - - -  this sf . net email is sponsored by : jabber - the world ' s fastest growing  real - time communications platform ! don ' t just im . build it in !  http : / / www . jabber . com / osdn / xim  spamassassin - sightings mailing list \",1\n\"Subject: your in - home source of health information  right place to look for buying cheap viagra online !  light be the earth upon you , lightly rest .  you never lose by loving . you always lose by holding back .  the road to true love never did run smooth .\",1\n\"Subject: re : we have all your favorite programs at incredibly low prices  the cheapest p * c prices  bundle 1 :  windows x * p pro & office x * p pro only 8 o 15 o dollars  we might have just what you need :  bundle 2 :  macromedia studio mx 2 oo 4 - 18 o dollars  we might have just what you need :  bundle 3 :  adobe creative suite full - 2 oo dollars  the offer is valid untill june 17 th  virtual store  stock is limited  regards ,  tyree sanchez  orthodontist  retroscreen virology ltd . , london , el 4 ns , united kingdom  phone : 571 - 396 - 7479  mobile : 354 - 117 - 9463  email : robvofjfdx @ flashmail . net  this is a confirmation message  this product is a 16 day definite software  notes :  the contents of this paper is for your exclusive use and should not be hour exponent  cpu deject wrack  time : sun , 24 apr 2005 08 : 15 : 35 - 0800\",1\n\"Subject: i think you might be interested 2005 - 07 - 05 18 : 53 : 34  hello marcotitzer ,  i just found a site called graand . com - a free and safe place on the internet to place classified ads . i thought i should invite you to check it out . regards , walker  musrbfi 3 dgourpxc 4 fvaodpdof 3 emwnloqlqdk 9  2005 - 07 - 07 06 : 07 : 39\",1\n\"Subject: een avontuurtje is oke ,  als je dit bericht niet kan lezen , klik hier .  je hebt dit bericht ontvangen omdat je in de db smsmag / kdotv bent . om uit te schrijven , klik hier . \",1\n\"Subject: very uuseful  attache how to save on your medlcations over 70 % .  pharmsho fructiferous p - successfull and proven way unquestionable to save your strategics money .  cevitamic v  apodal ag  impanel al  shoveller lu  cratch l  dissyllable ra nonius cl  barebacked isva undetermined l  cotillon m  andmanyother .  best prl circumnavigator ces .  w conservator orldwide shlpplng .  easy order for emboss m .  total confid lenticular entiaiity .  250 , 000 correctly satisfied customers .  o distracted rder today and save !\",1\n\"Subject: best deals on all generic viagra and generic cialis alternatives with guaranteed lowest prices  viagra is the # 1 med to struggle with mens ' erectile dysfunction .  float like a butterfly , sting like a bee .  humanity is acquiring all the right technology for all the wrong reasons .  education is a progressive discovery of our own ignorance .\",1\n\"Subject: don ' t lose your data ! prevent future computer problems at a fraction  of the cost of repairs  web and order form : pro - techonline . com  e - mail - info @ pro - techonline . com  fax 206 - 937 - 4315  call today at 1 - 800 - 726 - 5997  understand the  operating environments your systems are in , computers by their  very nature , pull air in to keep their parts cool . their fans work 24 / 7  keeping cool . the problem with this is over a period of time dust , dirt and  smoke , will build up and damage your computer .  q damage your computer chips  q destroy the data on your hard drive  q melt the mother board  what  does this mean to you ? all of your information could be lost forever ! all of  your files and data - works in progress - and contacts could be destroyed !  the information you have saved is a thousands times more valuable  than the computer itself . thats why  technicians recommend backups for your data .  its all p r e v e n t a  b l e !  the pro - tech computer filtration system simply works by filtering  the air before air reaches your computers sensitive internal components . the  system is set up at the base of your computer , with 2 easy steps , and is  positioned in front of your computers air intake , filtering 98 % of the air particles  that would otherwise get into your systems .  for a little as $ 24 . 95 plus  shipping ,  you can make sure you are  completely protected and never worry about dust , smoke , moisture , etc . damaging your computer again !  web and order form : pro - techonline . com  e - mail - info @ pro - techonline . com  fax 206 - 937 - 4315  product availability :  please allow up to 10 days for delivery . pro - tech will do everything we can to ship  your order as soon as possible and notify you of the estimated time of  delivery .  for great rates on quantity , and  wholesale pricing :  order 5 or more and receive a 10 %  discount !  wholesale orders save up to  20 % or more !  pro - tech uses  ups ground for shipping and handling $ 5 . 85  pro - tech prides  it self on protecting consumers financial privacy and safety .  no more cans of  air , no more bags , no more computer vacs .  perfect for home , office , and industry  model # 1 $ 24 . 95 model # 2 $ 29 . 95 model  # 3 $ 36 . 95  our systems are  fully adjustable and will fit any computer , one size fits all .  installs in seconds !  step # 1 : place  the base of the filtration system onto your computer .  step # 2 : place  the top of the filtration system onto the base .  youre all set ; and you can access your disk drives as needed .  replacement filters  1 size filter  fits all three systems  a package of 4 large heavy duty hepa filters , micron rated and designed , to last up to 6 months , $ 9 . 85 perfect for industry .  alternative  replacement filters  a large heavy duty diffusion dual stage filtering  material . designed to last up to 6  months . package of 4 $ 7 . 85 perfect for home and  office .  call today at 1 - 800 - 726 - 5997  web and order form : pro - techonline . com  e - mail - info @ pro - techonline . com  fax 206 - 937 - 4315  pro - tech filtration systems 3701 sw southern seattle , wa 98216 this e - mail message is an advertisement and / or solicitation . \",1\n\"Subject: the money control system  the money control system  would your lifestyle change if you had an  extra $ 10 , 000 each and every month ? find out now !  the  money control system  how you can get rich , stay  rich enjoy being rich  with the money control system .  here ' s what people are saying .  i don ' t have any financial  worries . . . i can now pursue the interests and  hobbies and the things i want to do . . .  the mutual funds we are into are rated among the top five . . .  we are looking at probably 15 % , 20 % return . . .  my goal was specifically to take the $ 10 , 000 that i managed  to accumulate through savings , invest that and , in a period of  nine months to a year , come back with at least $ 15 , 000 .  i came back with $ 16 , 000 .  i saved in taxes alone what i paid for  my kid ' s first year of college .  anyone who can learn from money control would be crazy to pass up the  chance . the control steps work so well that anyone can become a millionaire .  i ' m not a millionaire yet , but i ' m living like one . i call my time my own , and  work whenever i decide to . i am only 30 years old , so i plan to work another  five years and retire with the income from a million dollars worth of  investments . before the money control system showed me the way , i would  never have believed it possible . me , a millionaire !  b . h . salt lake city ut  click  here to learn more and change your life ! \",1\n\"Subject: grand - slam stox  momentum alert issued for july 6 - 8 , 2005  explosive pick for our members - - up 0 . 52 ( 13 . 16 % ) ! tuesday july 5 th  ! ! ! ! ! see tuesday july 5 th , heavy trading has started 6 x its normal 10 day avg , ride the stairway to heaven ! ! ! !  good day to all broker ' s , day trader ' s and investor ' s world stock report  has become famous with some great stock picks in the otc , small cap  market ' s ! ! ! ! ! ! ! ! ! ! here at world stock report we work on what we here  from the street . rumor ' s circulating and keeping the focus on the company ' s  news . we pick our companies based on there growth potential . we focus on  stocks that have great potential to move up in price . ! ! ! ! ! ! while giving  you liquitity .  our latest pick is cdgt .  symbol : cdgt  friday july lst $ 3 . 90  current price : $ 4 . 43  short term 5 day projection : $ 8 - 9  we give it to you again as a gift . this company is doing incredible things .  thay have cash and have made great strategic aquisitions . current price $ 4 . 43 .  word on the sreet is strong buy . this company has dropped big new ' s in the past .  who ' s to say they don ' t have another big one .  * * * * * * * * * * * * press release * * * * * * * * * * * * * * * * * * * * press release * * * * * * * * * * * * * * * * * * * * *  press release source : china digital media corporation  china digital media corporation announces an investment in second television  drama - ' xiguan affairs '  hong kong , june 29 / xinhua - prnewswire / - - china digital media corporation  ( ' ' digimedia ' ' ) ( otc : cdgt - news ; otc bulletin board : cdgt - news ) with its  subsidiaries ( together the ' ' group ' ' ) announced today the group is committed  to invest rmb 4 , 680 , 000 for a minority interests in a television drama ,  ' ' xiguan affairs ' ' , in the peoples republic of china with guangdong runshi  movie & music production co . , ltd . ( ' ' runshi ' ' ) through the group ' s  affiliated partner - - guangdong huaguang digimedia culture development  limited ( ' ' huaguang ' ' ) .  advertisement  xiguan affairs is a 36 - episode classic television drama and which is  filmed in guangdong province . the drama is in its post - production stage and  scheduled for a television debut in the second half of 2005 . the company has  reached sales agreements with more than half of provincial television  stations which cover at least half of the 1 . 14 billion tv viewers in china .  the company expects the drama will generate profits in 2005 .  ' ' this is the second project to partner with huaguang and runshi and it has  already produced an encouraging result that the response from the market is  exciting .  remember this is a stong buy recommendation . . .  disclaimer :  information within this email contains \"\" forwardlooking statements \"\" within  the meaning of section 27 aof the securities act of 1933 and section 21 b of  thesecurities exchange act of 1934 . any statements that express or involve  discussions with respect to predictions , expectations , beliefs ,  plans , projections , objectives , goals , assumptions or future events or  performance are not statements of historical fact and may be \"\" forward  looking statements . \"\" forwardlooking statements are based on  expectations , estimates and projections at the time the statements are made  that involve a number of risks and uncertainties which could cause actual  results or events to differ materially from those presently anticipated .  forward looking statements in this action may be identified through the use  of words such as \"\" projects \"\" , \"\" foresee \"\" , \"\" expects \"\" , \"\" will , \"\" \"\" anticipates , \"\"  \"\" estimates , \"\" \"\" believes , \"\" understands \"\" or that by statements indicating  certain actions \"\" may , \"\" \"\" could , \"\" or \"\" might \"\" occur . risk factors include  general economic and business conditions , the ability to acquire and develop  specific projects , the ability to fund operations and changes in consumer  and business consumption habits and other factors overwhich the company has  little or no control . the publisher of this newsletter does not represent  that the information contained in this message states all material facts or  does not omit a material fact necessary to make the statements therein not  misleading . all information provided within this email pertaining to  investing , stocks , securities must be understood as information provided and  not investment advice . the publisher of this newsletter advises all readers  and subscribers to seek advice from a registered professional securities  representative before deciding to trade in stocks featured within this  email . none of the material within this report shall be construed as any  kind of investment advice or solicitation . many of these companies are on  the verge of bankruptcy . you can lose all your money by investing in this  stock . we urge you to read the company ' s sec filings now , before you invest .  the publisher of this newsletter is not a registered invstment advisor .  subscribers should not view information herein as legal , tax , accounting or  investment advice . in compliance with the securitiesact of 1933 , section  17 ( b ) , the publisher of this newsletter is contracted to receive six hundred  thousand free trading shares from a third party , not an officer , director or  affiliate shareholder for the circulation of this report . be aware of an  inherent conflict of interest resulting from such compensation due to the  fact that this is a paid advertisement and is not without bias . the party  that paid us has a position in the stock they will sell at anytime without  notice . this could have a negative impact on the price of the stock , causing  you to lose money . all factual information in this report was gathered from  public sources , including but not limited to sec filings , company websites  and company press releases . the publisher of this newsletter believes this  informationto be eliable but can make no guarantee as to its accuracy or  completeness . use of the material within this email constitutes your  acceptance of these terms .\",1\n\"Subject: heatt kills  hello , cbs / a mythicize p news  a r overman ecord heat wave has led to the deaths of 180 peopl fortuneless e in phoenix ,  most of them homeless , l nonsensical eaving officials scrambling to provide water and shelter to the city ' s transient population .  read more . . .\",1\n\"Subject: first - level designers available for you  corporate image can say a lot of things about your  company . contemporary rhythm of life is too dynamic . sometimes it takes oniy  several seconds for  your company to be remembered or to be lost among competitors .  get your loqo , business stationery or website done  right now !  fast turnaround : you will see several iogo variants  in three business days .  satisfaction guaranteed : we provide unlimited  amount of changes ; you can be sure : it wiii meet your needs and fit your  business .  flexible discounts : logo improvement , additionai  formats , bulk orders , special packages .  creative design for  competitive price : have a look at it right now !\",1\n\"Subject: your order  hwjw  learn how to use the easy signup for a paypal account to make a  lot of money on your own  how to use your  paypal account to make up $ 15 , 000 or more in  just 30 days with  worldwide participation ! - you can participate if paypal is  in your country  -  here is a list of all paypal countries  if you wish to stop receiving  our promo pleases reply with subject remove  1658999 \",1\n\"Subject: are you ready to get it ?  hello !  viagra is the # 1 med to struggle with mens ' erectile dysfunction .  like one jokes sais , it is strong enough for a man , but made for a woman ; - )  orderinq viaqra oniine is a very convinient , fast and secure way !  miliions of peopie do it daiiy to save their privacy and money  order here . . . \",1\n\"Subject: new love tabs shop .  visit our llcensed online dragstore for the best inexpensive love drags ! viagra , ciaiis , softtabs and many other love enhancers aii in one !  operative support , fast shipping , secure payment processing and complete confidentiality !  click here to find your verifled by bbb and approved by visa iove pil 1 ! \",1\n\"Subject: paypal account review r  dear valuedpaypalmember :  paypal  is committed to maintaining a safe environment for its community of  buyers and sellers . to protect the security of your account , paypal employs  some of the most advanced security systems in the world and our anti - fraud  teams regularly screen the paypal system for unusual activity .  recently , our account review team identified some unusual activity in your  account . in accordance with paypal ' s user agreement and to ensure that your  account has not been compromised , access to your account was limited . your  account access will remain limited until this issue has been resolved . this  is a fraud prevention measure meant to ensure that your account is not  compromised .  in order to secure your account and quickly restore full access , we may  require some specific information from you for the following reason :  we would like to ensure that your account was not accessed by an  unauthorized third party . because protecting the security of your account  is our primary concern , we have limited access to sensitive paypal account  features . we understand that this may be an inconvenience but please  understand that this temporary limitation is for your protection .  case id number : pp - 040 - 187 - 541  we encourage you to log in and restore full access as soon as possible .  should access to your account remain limited for an extended period of  time , it may result in further limitations on the use of your account .  however , failure to restore your records will result in account suspension . please update your recordson or beforejuly  27 , 2005 . once you have updated your account records , yourpaypal session will not beinterrupted and will continue as normal .  to update your  paypal records click on the following link : https : / / www . paypal . com / cgi - bin / webscr ? cmd = _ login - run  thank you for your prompt attention to this matter .  please understand that  this is a security measure meant to help protect you and your account . we  apologize for any inconvenience .  sincerely ,  paypal  account review department  paypal email id pp 522  accounts management as outlined in our user agreement ,  paypal willperiodically send you information about site changes and enhancements .  visit our privacy policy and user agreement if you have any questions . http : / / www . paypal . com / cgi - bin / webscr ? cmd = p / gen / ua / policy _ privacy - outside \",1\n\"Subject: your membership community charset = iso - 8859 - 1  your membership community & commentary ( july 6 , 2001 )  it ' s all about making money  information to provide you with the absolute  best low and no cost ways of providing traffic  to your site , helping you to capitalize on the power and potential the web brings to every net - preneur .  - - - this issue contains sites who will trade links with you ! - - -  - - - - - - - - - - - - -  in this issue  - - - - - - - - - - - - -  internet success through simplicity  member showcase  win a free ad in community & commentary  | | | = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = > >  today ' s special announcement :  | | | = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = > >  we can help you become an internet service provider within 7 days or we will give you $ 100 . 00 ! !  click here  we have already signed 300 isps on a 4 year contract ,  see if any are in your town at :  click here  you are a member in at least one of these programs  - you should be in them all !  bannersgomlm . com  profitbanners . com  cashpromotions . com  mysiteinc . com  timshometownstories . com  freelinksnetwork . com  myshoppingplace . com  bannerco - op . com  putpeel . com  putpeel . net  sellinternetaccess . com  be - your - own - isp . com  seventhpower . com  = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - =  internet success through simplicity  = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - =  every day of the week , i get questions from people all  over the world , including my no bs gimg members ,  wanting to know some of the most valuable \"\" secrets \"\"  to my on - going internet success .  let me say , above all else , i don ' t believe there are any  * true * \"\" secrets \"\" to success on the net . what you do to  become successful in the online world is not a \"\" secret \"\" ,  in my opinion . most successful people follow simple , clear ,  repeatedly - proven strategies to succeed , whether on the  net or off .  but , when it comes to someone asking for advice ,  consultation , or simply asking , \"\" what ' s your secret ? \"\" ,  i have to blush & say . . .  persistence and personality .  of course , i always follow the advice with my own little  disclaimer : what makes me successful may not work the  same for you . . . & your first lesson is to get over  the deep - seeded idea that success - of any kind , in  my opinion - is somehow an unknown , unattainable secret .  clearly , it is not . it ' s not unknown . it ' s not unattainable .  it ' s not years of digging to find the \"\" secrets \"\" to internet riches .  one thing that \"\" gets to me \"\" so often in my work as an  internet consultant , author and internet success  strategist is that so many people on the net seem to  have this incredibly huge mental block that stands  between themselves and success on the net . it ' s  almost as if they ' ve been barraged by so many claims  of what works and what doesn ' t work , and so many  long , complicated routes to actually succeeding in  their online venture , that \"\" success \"\" is the equivelant of a 100 - foot high brick wall .  it ' s not that difficult , my friends ! it is not that complicated ! !  long - time friend and business associate rick beneteau  has a new ebook out called branding you & breaking  the bank . get it ! !  http : / / www . roibot . com / bybb . cgi ? im 7517 _ bybtb .  but , the reason i mention this is the fact that he talks  so dynamically about the true simplicity of making your  online venture a success .  and , yes , rick & i come from the same school of  \"\" self marketing \"\" - marketing you ! obviously , that ' s  the core of his excellent new ebook , and i couldn ' t  agree with him more .  point being , * you * are everything you do online to  succeed . you are your web site , your business , your  marketing piece , your customer service , your customers '  experiences with your business - - all of it , is you !  read his ebook & you ' ll see more of what i ' m saying .  the matter at hand is that brick wall you might have  standing high as you can see , blocking the path  between you & internet success . listen to me - it is  not real ok ? it doesn ' t exist . there ' s nothing there  to fear to begin with . . . get over it ! !  what i ' m telling you is , the only thing standing between  you and the success you most desire . . . is yourself .  when you realize this , you will tear down that brick  wall by means of complete and instantaneous  disintegration . it will no longer exist * in your mind * ,  which is the only \"\" real \"\" place it ever was anyhow !  yes , \"\" persistence and personality \"\" inherently includes  honesty , integrity , accountability , and many other  qualities but you also have to hone in on your ultimate  goals and realize that probably the most valuable ,  powerful key to your success . . . is you !  that may be the most incredible \"\" secret \"\" we ever  uncover in our lifetime ! and , trust me , that brick wall  won ' t ever get in your way again . . . unless you let it .  talk about simple ! !  bryan is a \"\" veteran \"\" internet consultant , author ,  internet success strategist & marketer . he publishes  mega - success . com chronicles to over 11 , 500 subscribing  members , authors articles which appear all over the  net , and helps hundreds of wealth - hungry people in  their journey to internet success .  bryan is also director of his no bs guerrilla internet  marketing group at http : / / . com  & a fantastic new joint venture partners program  for that site .  bryan hall is a founding member and the development  consultant for the prestigious icop ( tm ) at  http : / / www . i - cop . org / 1016 . htm  you can reach bryan at 877 . 230 . 3267 or by  emailing him directly at bryan . hall @ mega - success . com  = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - =  member showcase  = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - =  examine carefully - those with email addresses included will  trade links with you . . . you are encouraged to contact them .  there are many ways to build a successful business - just look at  these successful sites programs other members are involved  in . . .  get insane amounts of traffic to your website .  purchase 10 , 000 guaranteed visitors to your site  and receive 5 , 000 free . more traffic = more money !  less than 2 cents a visitor . space is limited .  order now ! http : / / www . freepicklotto . com  trade links - businessopps @ aol . com  stop smoking - free lesson ! !  discover the secret to stopping smoking .  to master these powerful techniques , come to  http : / / www . breath - of - life . net  for your free lesson .  act now ! p . s . tell someone you care about .  trade links - jturco 3 @ hotmail . com  celebration sale !  $ 99 . 00 on casinos / sportsbetting sites , lingerie stores ,  gift stores , adult sites toy stores .  mention ad # bmlm 99 to receive this special sale price .  order now !  http : / / www . cyberopps . com / ? = bmlm 99  affiliates of the world !  top rated affiliate programs , excellent business opportunities ,  great marketing resources and free advertising for you !  visit the site to trade links . http : / / www . affiliates . uk . com  trade links - adrianbold @ affiliates . uk . com  just been released ! !  internet marketing guru corey rudl has just released a  brand new version of his # 1 best - selling internet marketing  course , \"\" the insider secret ' s to marketing your business on  the internet \"\" . a must have ! so don ' t hesitate ,  visit . . http : / / www . adminder . com / c . cgi ? startbgmlmezine  we have a 260 page catalog with over 3000 gift items for men ,  women , children - a gift for everyone . we show 100 gift items  on our web site alone , with the catalog you have access to  the rest . we also feel we have the best prices on the web .  visit at http : / / www . . net  trade links - georgel 932 me @ yahoo . com  if you have a product , service , opportunity or quality merchandise  that appeals to people worldwide , reach your targeted audience !  for a fraction of what other large newsletters charge you can exhibit  your website here , and trade links for only $ 8 cpm . compare  that  to the industry average of $ 10 - $ 15 cpm . why ? . . . because as a  valuable member we want you to be successful ! order today -  showcases are limited and published on a first come , first serve  basis .  for our secure order form , click here : http : / / bannersgomlm . com / ezine  = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - =  = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - =  = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - =  win a free ad in community & commentary  = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - =  to keep this interesting , how about this , every month we ' ll  draw a name from the replies and that person will win one  sponsorship showcase ad in the community commentary , for free .  that ' s a value of over $ 700 . 00 ! respond to each weekly survey ,  and increase your chances to win with four separate entries .  question  of the week ( 07 / 06 / 01 ) . . .  no right or wrong answers , and just by answering  you are entered to win a showcase ad - free !  ~ ~ ~ do you spend more or less time ~ ~ ~  ~ ~ ~ online in the summer months ? ~ ~ ~  more  mailto : one @ aeopublishing . com  less  mailto : two @ aeopublishing . com  same  mailto : three @ aeopublishing . com  to make this as easy as possible for you , just click on the  e - mail address that matches your answer - you do not need to  enter any information in the subject or body of the message .  * * add your comments ! follow directions above and  add your comments in the body of the message , and we ' ll  post the best commentaries along with the responses .  you will automatically be entered in our drawing for a free  sponsorship ad in the community commentary . please  respond only one time per question . multiple responses  from the same individual will be discarded .  last weeks ' s results ( 06 / 29 / 01 )  ~ ~ ~ what is the goal of your website ? ~ ~ ~  sell 40 %  get leads 20 %  build branding 5 %  provide information 20 %  other 15 %  comments :  - - - - - - - - - - - - - - - - - - - - - - - - - - - -  our web site is initially designed to get leads , build  branding , and provide information . . . . . . . with a 12 month goal  of selling our service more specifically via a shopping cart .  we offer a service and at this time take deposits and payments  via our site .  our site has been up less than 2 months and our expectation  was that we would refer to our site for leads developed in  traditional media and by referral for more information , and  to make a professional impression on someone you may not  meet before providing service .  the growth of our customer base shopping on line has grown  outside of anyone ' s expectations . . . . . . . certainly mine and  i ' ve been in this business for 25 years . the internet is not  dead in the horse business , it is just getting it ' s legs , and  the folks using it want to get all the ancillary services  on - line as well . our site ( the first we ' ve developed ) has  exceeded our expectations , and we aren ' t satisfied with it  yet . . . . . . . we just wanted to get it there for information !  jeff and rebecca marks http : / / www . grand - champion . com  branding . while quality customer service and product  have been and will always be our top priority brand building  zesto is our most challenging task .  zesto . com ranks very high and most often # 1 or 2 on  all major search engines and directories even yahoo entering  the keyword zesto . the problem is simply that , who if anyone  would type the keyword zesto , therefore we must try to  build our brand by ensuring that generic keywords associated with our products ( citrus peel ) are used throughout  our site as well as search engine submissions .  fortunately owning a non generic domain short , easy  to remember and trademarked works in our favor because  the marketability potential is limitless .  arlene turner http : / / www . zesto . com  = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - =  = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - =  to change your subscribed address ,  send both new and old address to submit  see below for unsubscribe instructions .  please send suggestions and comments to : editor  i invite you to send your real successes and showcase  your strategies and techniques , or yes , even your total bombs ,  \"\" working together we can all prosper . \"\" submit  for information on how to sponsor your membership  community commentary visit : sponsorship  showcase  copyright 2001 aeopublishing . com  email : yourmembership 2 @ aeopublishing . com  voice :  web : http : / / www . aeopublishing . com  this email has been sent to jm @ netnoteinc . com at your  request , by your membership newsletter services .  visit our subscription center to edit your interests or unsubscribe .  http : / / ccprod . roving . com / roving / d . jsp ? p = oo & id = bd 7 n 7877 . 7 giv 5 d 57 & m = bd 7 n 7877 charset = iso - 8859 - 1  in this issue  internet success through simplicity  member showcase  win a free ad in community & commentary  today ' s special announcement :  win a free ad in community & commentaryto keep this interesting , how about this , every month we ' ll  draw a name from the replies and that person will win one  sponsorship showcase ad in the community commentary , for free .  that ' s a value of over $ 700 . 00 ! respond to each weekly survey ,  and increase your chances to win with four separate entries .  question  of the week ( 07 / 06 / 01 ) . . .  no right or wrong answers , and just by answering  you are entered to win a showcase ad - free !  ~ ~ ~ do you spend more or less time ~ ~ ~  ~ ~ ~ online in the summer months ? ~ ~ ~  more  mailto : one @ aeopublishing . com  less  mailto : two @ aeopublishing . com  same  mailto : three @ aeopublishing . com  to make this as easy as possible for you , just click on the  e - mail address that matches your answer - you do not need to  enter any information in the subject or body of the message .  * * add your comments ! follow directions above and  add your comments in the body of the message , and we ' ll  post the best commentaries along with the responses .  you will automatically be entered in our drawing for a free  sponsorship ad in the community commentary . please  respond only one time per question . multiple responses  from the same individual will be discarded .  last weeks ' s results ( 06 / 29 / 01 )  ~ ~ ~ what is the goal of your website ? ~ ~ ~  sell 40 %  get leads 20 %  build branding 5 %  provide information 20 %  other 15 %  comments :  - - - - - - - - - - - - - - - - - - - - - - - - - - - -  our web site is initially designed to get leads , build  branding , and provide information . . . . . . . with a 12 month goal  of selling our service more specifically via a shopping cart .  we offer a service and at this time take deposits and payments  via our site .  our site has been up less than 2 months and our expectation  was that we would refer to our site for leads developed in  traditional media and by referral for more information , and  to make a professional impression on someone you may not  meet before providing service .  the growth of our customer base shopping on line has grown  outside of anyone ' s expectations . . . . . . . certainly mine and  i ' ve been in this business for 25 years . the internet is not  dead in the horse business , it is just getting it ' s legs , and  the folks using it want to get all the ancillary services  on - line as well . our site ( the first we ' ve developed ) has  exceeded our expectations , and we aren ' t satisfied with it  yet . . . . . . . we just wanted to get it there for information !  jeff and rebecca marks http : / / www . grand - champion . com  branding . while quality customer service and product  have been and will always be our top priority brand building  zesto is our most challenging task .  zesto . com ranks very high and most often # 1 or 2 on  all major search engines and directories even yahoo entering  the keyword zesto . the problem is simply that , who if anyone  would type the keyword zesto , therefore we must try to  build our brand by ensuring that generic keywords associated with our products ( citrus peel ) are used throughout  our site as well as search engine submissions .  fortunately owning a non generic domain short , easy  to remember and trademarked works in our favor because  the marketability potential is limitless .  arlene turner http : / / www . zesto . com  to change your subscribed address ,  send both new and old address to submit  see below for unsubscribe instructions .  please send suggestions and comments to : editor  i invite you to send your real successes and showcase  your strategies and techniques , or yes , even your total bombs ,  \"\" working together we can all prosper . \"\" submit  for information on how to sponsor your membership  community commentary visit : sponsorship  showcase  copyright 2001 aeopublishing . com  email us : : visit our site  phone :  this email was sent to jm @ netnoteinc . com , at your request , by your membership newsletter services .  visit our subscription center to edit your interests or unsubscribe .  view our privacy policy .  powered by \",1\n\"Subject: still paying too much for life insurance ? . . . u  save up to  75 % on your term life  insurance !  compare rates from top insurance companies around  the country  in our life and times , it ' s important to plan for  your family ' s future , while  being comfortable financially . choose the right  life insurance policy today .  click the link below to compare the lowest rates  and save up to 75 %  compare your coverage  you ' ll be able to compare rates and get a free  application in less than a minute !  * get your free instant quotes . . .  * compare the lowest prices , then . . .  * select a company and apply online .  get a free quote now !  you can ' t predict the future , but you can always  prepare for it .  to be  excluded from future contacts  kanz  http : / / xent . com / mailman / listinfo / fork\",1\n\"Subject: cheap oem soft shipping worldwide  don ' t be a fuddy - duddy . . . use the software everyone ' s using . . .  deus ex machina [ a god from the machine ]  to freely bloom - that is my definition of success .\",1\n\"Subject: stock 2 watch  pop 3 media corp ( popt )  a company which has positioned itself in the gap between the major  media conglomerates and the universe of independent music , film , publishing  and technology companies .  current price : 0 . 022  will it continue higher ? watch this one wednesday as we know many of you  like momentum .  breaking news ! !  pop 3 media corp . ( popt ) and roxxy corporation announced that the  companies have entered into a letter of intent whereby roxxy corporation will  acquire a 66 % interest in pop 3 ' s wholly owned subsidiary , viastar  distribution group , inc . \"\" vdg , \"\" forming a revolutionary new music company ,  controversial entertainment corporation . the transaction , consisting of  stock and cash , when completed , will provide pop 3 ' s shareholders with a  33 % stake in the new company .  roxxy ' s management will operate the company from headquarters in los  angeles and will change its corporate name to controversial entertainment  corporation in the coming weeks . the companies intend to complete and  execute the definitive agreement by july 8 th , 2005 , and seek shareholder  approval immediately thereafter .  pop 3 ' s ceo , john d . aquilino , stated , \"\" this alliance will allow pop 3 to  achieve its strategic vision of creating a new paradigm in the music  industry . one that is focused on supporting the artist and the music they  create while embracing emerging technologies and giving consumers  access to a variety of artists through a variety of media . \"\"  roxxy ' s management team combines highly experienced industry executives  drawn from the major labels and also includes a staff of in - house  producers who are among the most influential talents in the music industry  today .  \"\" it is roxxy ' s vision to seize the opportunities afforded by the major  labels ' lack of commitment to their artists and customers ; labels that  cast aside established artists who can no longer generate multi - million  selling recordings , but who consistently release albums which sell  hundreds of thousands of records to a large and loyal fan base ; artists  that can easily generate revenues between $ 1 and $ 5 million per title , \"\"  stated john shebanow , roxxy ' s ceo .  \"\" additionally , the acquisition of vdg will provide us with the ability  to distribute our own product directly to retail to over 22 , 000 retail  location in north america , effectively doubling the company ' s net  profit margins and allowing the increased revenue to pass on to our  artists . \"\"  mr . shebanow concluded , \"\" while there are smaller labels that do provide  a home for these acts , they lack either the will or financial resources  to commit to the kind of budgets which producers of the caliber we have  on staff require . and no company has the unique combination of great  producers , in - house distribution and dedication to the artist and the  customer that controversial entertainment will possess . \"\"  about pop 3 media corp :  pop 3 media corp . is engaged in development , production and distribution  of entertainment - related media for film , television , music and  publishing interests . the company ' s portfolio currently includes ownership of  viastar distribution group , a . v . o . studios , moving pictures  international , viastar records , quadra records , light of the spirit records , and  viastar classical , viastar artist management group and masterdisk  corporation .  conclusion :  the examples above show the awesome , earning potential of little known  companies that explode onto investor ' s radar screens ; many of you are  already familiar with this . is popt poised and positioned to do that for  you ? then you may feel the time has come to act . . . and please watch  this one trade wednesday ! go popt .  penny stocks are considered highly speculative and may be unsuitable  for all but very aggressive investors . this profile is not in any way  affiliated with the featured company . we were compensated 3000 dollars  to distribute this report . this report is for entertainment and  advertising purposes only and should not be used as investment advice .  if you wish to stop future mai - lin * gs , or if you feel you have been  wrongfully placed in our membership , send a blank e mail with no thanks in  the sub ject to no _ morenewsletters 2 @ yahoo . com\",1\n\"Subject: the reason to sh . op in our zone ? for sav . vings .  running short of tablet . supplies ? uncover hovv others s . ave on medicaments .  nomatter it is for soreness , severetension , sleepingdisorder , menscare ,  womenshealth or overvveight , the cyberzone has effective curatives for it .  the generic equivalents might be a better option for sho . ppers who vvant to  s . ave on medicaments . there is a great assortment of generics at our  medzone .  unveil fantastic . deals in our medzone .  in the orderstatus , there is the latest info . on the carriages and orders .  http : / / t . 2 k . valuecreatorforall . com / d 2 /  vov ! lead you to simple sav . vings .  n light enough , - conv really so , i should do just the same in her place .  if i loved a man ,  and tried to be cool and unconcerned . her distress returned ,  eyed her up stairs to her own room with all  speed ; and imm as she loves the admiral , i would always be with him ,  nothing should ever  ediately dispatc 1 hed ham peggott 7 y , her nephew , who had been for s\",1\n\"Subject: call for papers : the international joint conferences on computer ,  information and systems sciences and engineering cisse 05  if you received this email in error , please forward it to the appropriate department at your institution  please do not reply to this message , your reply will not be received . if you need to contact us , please email us at info @ cisse 2005 . org  * international joint conferences on computer , information , *  * and systems sciences , and engineering ( cisse 05 ) *  * *  * *  * http : / / www . cisse 2005 . org *  * *  * *  * *  december 10 - 20 , 2005  sponsored by :  institute of electrical & electronics engineers ( ieee )  university of bridgeport  conference overview  cisse 05 provides a virtual forum for presentation and discussion of the  state - of the - art research on computers , information and systems sciences and  engineering . the virtual conference will be conducted through the internet  using web - conferencing tools , made available by the conference .  authors will be presenting their powerpoint , audio or video presentations  using web - conferencing tools without the need for travel . conference  sessions will be broadcast to all the conference participants , where session  participants can interact with the presenter during the presentation and  ( or ) during the q & a slot that follows the presentation .  this international conference will be held entirely on - line . the accepted and  presented papers will be made available after the conference both on a cd and  as a book publication .  conference participants - authors , presenters and attendees - only need an  internet connection and sound available on their computers in order to be  able to contribute and participate in this international ground - breaking  conference .  the on - line structure of this high - quality event will allow academic  professionals and industry participants to contribute work and attend  world - class technical presentations based on rigorously refereed  submissions , live , without the need for investing significant travel funds  or time out of the office .  potential non - author conference attendees who cannot make the on - line  conference dates are encouraged to register , as the entire joint conferences  will be archived for future viewing .  please feel free to download the call for papers at :  http : / / www . cisse 2005 . org / cfpcisseo 5 . doc ( microsoft word format ) or  http : / / www . cisse 2005 . org / cfpcisseo 5 . pdf ( adobe pdf format )  cisse 05 is composed of the following four conferences :  * international conference on industrial electronics , technology  & automation ( ieta 05 )  topics : advanced and distributed control systems , intelligent control  systems ( nn , fl , ga , . etc ) , expert systems , man machine interaction , data  fusion , factory automation , robotics , motion control , machine vision , mems  sensors and actuators , sensors fusion , power electronics , high frequency  converters , motors and drives , power converters , power devices and  components , electric vehicles and intelligent transportation , process  automation , factory communication , manufacturing information system advances  in manufacturing systems , industrial applications of multi media ,  intelligent systems instrumentation , industrial instrumentation , modeling  and simulation , signal processing , image and data processing , vr and  parallel systems .  conference page : http : / / www . cisse 2005 . org / ieta . aspx  * international conference on telecommunications and networking ( teneo 5 )  topics : optical networks and switching , computer networks , network  architectures and equipment , access technologies , telecommunication  technology , coding and modulation technique , modeling and simulation , spread  spectrum and cdma systems , ofdm technology , space - time coding , ultra  wideband communications , medium access control , spread spectrum , wireless  lan : ieee 802 . 11 , hiperlan , bluetooth , cellular wireless networks , cordless  systems and wireless local loop , mobile network layer , mobile transport  layer , support for mobility , conventional encryption and message  confidentiality , block ciphers design principles , block ciphers modes of  operation , public - key cryptography and message authentication ,  authentication application , stenography , electronic mail security , web  security , ip security , firewalls , computer forensics .  conference page : http : / / www . cisse 2005 . org / tene . aspx  * international conference on systems , computing sciences and software  engineering ( scss 05 )  topics : grid computing , internet - based computing models , resource discovery ,  programming models and tools , e - science and virtual instrumentation ,  biometric authentication , computers for people of special needs , human  computer interaction , information and knowledge engineering , algorithms ,  parallel and distributed processing , modeling and simulation , services and  applications , embedded systems and applications , databases , programming  languages , signal processing theory and methods , signal processing for  communication , signal processing architectures and implementation ,  information processing , geographical information systems ,  object based software engineering , parallel and distributed computing , real  time systems multiprocessing , file systems and i / o , kernel and os structures .  conference page : http : / / www . cisse 2005 . org / scss . aspx  * international conference on engineering education , instructional  technology , assessment , and e - learning ( eiae 05 )  topics : instructional design , accreditation , curriculum design , educational  tools , 2 - 2 - 2 platforms , teaching capstone design , teaching design at the  lower levels , design and development of e - learning tools , assessment methods  in engineering , development and implementation of e - learning tools ,  economical and social impacts of e - learning , platforms and systems for  k - 12 / industry and higher education cooperation .  conference page : http : / / www . cisse 2005 . org / eiae . aspx  paper submission  prospective authors are invited to submit full papers electronically in  microsoft word or pdf format through the website of each conference at  http : / / www . cisse 2005 . org . accepted papers must be presented in the virtual  conference by one of the authors .  to submit your paper , visit http : / / www . cisse 2005 . org / author / submit . aspx or  visit the individual conference pages .  important dates  paper submission : september 30 , 2005  notification of acceptance : october 28 , 2005  final manuscript and registration : november 18 , 2005  cisse 2005 66 glenbrook rd stamford , ct 06902 this e - mail message is an advertisement and / or solicitation .\",1\n\"Subject: business intent  dear sir ,  i am stanley woodwork , the secetary of africa white farmers  co - operation ( awfc ) of zimbabwe . after the last general elections in my country where the incumbent president mr . robert mugabe won the presidential election , the  government has adopted a very aggressive land reforms programme . this programme is solely aimed at taking the land owned by white african farmers for redistribution to black africans . this programme has attracted worldwide  condemnation from world leaders including british prime minister , mr tony blair and also forced several white farmers to flee the country for fear of  victimization and physical abuse .  two weeks ago , our headquartes in harare was attacked and  looted by black protesters and in the process burnt down the whole building . fortunately , they did not get access to the huge funds kept in the strong room which  belong to the co - operation . this cash was kept at the secretariat rather than in the bank for fear of seizure by the government .  now i have the funds in my possession and would need to get it invested in a viable business venture in europe . the cash in question is us $ 46 million dollars .  once i can get your commitment and sincerity of investing  this funds on our behalf then i would proceed to get the funds freighted to europe , where you would be required to pick it up for investment for us .  you do not have anything to worry about as i would undertake all charges involved in freighting the funds to europe , and the business proposal is 100 % legal and risk free .  you would be adequately compensated for all your effort once we have gotten the funds to europe .  please get back to me if you can be of assistance and i would want our correspondence to be via email as most phone lines of white farmers are bugged by the government .  i expect 100 % confidentiality and your prompt response to  this mail so as to proceed . you may also reach me on stanleywoodwork @ email . com  kind regards ,  stanley woodwork .\",1\n\"Subject: 6 . 50 % annuity w / 4 . 05 % lifetime bailout  10 % penalty - free withdrawals  rated a ( excellent ) by a . m . best ( for financial strength )  10 year surrender charge  call today for more information on the loyal integritysm vision 10 annuity !  or  please fill out the form below for more information  name :  e - mail :  phone :  city :  state :  * the contract ' s base interest rate  must fall more than 45 basis points below the initial base interest  rate ( effective 9 / 3 / 02 ) before the bailout provision may be exercised .  this feature is subject to change on future contracts .  * * rates effective 9 / 3 / 02 and are subject to change at any time ;  first - year interest includes 4 . 50 % base interest rate and 2 . 00 %  additional first - year interest .  * * * ages 0 - 80 ; ages 81 - 90 : 7 % commission .  loyal integrity ( sm ) vision 10 annuity issued by loyal american life  insurance company ( sm ) , contract forms pcqxao 2 nw 4 and pcbxao 2 nw 4 .  certain limitations and exclusions apply . product not available  in all states . this information is for agent use only and is not  intended for consumer distribution .  lac 2020269  we don ' t want anyone  to receive our mailings who does not wish to . this is professional communication  sent to insurance professionals . to be removed from this mailing list ,  do not reply to this message . instead , go here :  http : / / www . insuranceiq . com / optout  legal notice \",1\n\"Subject: online notification : your money is ready  dear applicant ,  after further review upon receiving your application your current mortgage qualifies for a 3 % lower rate .  your new monthly payment will be as low as $ 340 / month for a $ 200 , 000 loan .  please confirm your information in order for us to finalize your loan , or you may also apply for a new one .  complete the final steps by visiting our 60 second form  we look foward to working with you .  thank you ,  christine larson , account manager  belico and associates , llc .  - - - - - - - - - - - - - - - - - - - - - - -  not interested - http : / / www . morntix - star . net / r . php \",1\n\"Subject: - - > direct marketing will increase sales 23875  there is no stumbling on to it !  the greatest way of marketing this century  is undoubtedly direct e - mail .  it ' s similar to the postman delivering a  letter to your mailbox .  the ability to promote your product ,  service , website , or mlm / network marketing  opportunity to millions instantly is what  advertisers have been dreaming of for over 100 years .  we e - mail your promotion to a list of our  general / business addresses .  the greatest part is , it ' s completely affordable .  e - mail marketing is the answer !  how do we know ?  we know because that ' s exactly what we do .  it ' s a proven fact that you can attract  new business through our direct e - mail marketing .  the profits that e - mail advertising generate are amazing !  we are living proof .  we are a direct e - mail internet advertising company and  our clients pay us thousands of dollars a week to e - mail  their products and services .  standard pricing and procedures  extracting :  our list of general internet addresses are actually extracted  from the most popular web sites on the internet . the addresses  are verified and run through our purification process .  the process includes addresses run against our custom remove  filter of 2 , 492 keywords , as well as through our 192 mb remove /  flamer list . the edu , org , gov , mil , and us domains are removed ,  as well as other domains that asked not to receive e - mail .  evaluation : $ 350 . 00 ( optional )  one of our marketing specialists will evaluate your sales  letter , and offer his / her expertise on how to make it the  most successful .  standard pricing : ( emails delivered )  1 million - $ 700 . 00 per  2 - 3 million - $ 600 . 00 per  4 million - $ 500 . 00 per  5 million & up - $ 400 . 00 per  special limited time offer !  this introductory offer of $ 300 . 00 includes :  1 . set - up fee  2 . evaluation of sales letter  3 . 500 , 000 e - mails delivered  payment policy :  all services must be paid in full prior to delivery of  advertisement .  notice :  absolutely no threatening or questionable materials .  if you are serious about direct > > email > > marketing > > - - send  the following to { fax } 1 ( 602 ) 392 - 8288  please fill this form out completely !  contact name : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  business name : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  # years in business : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  business type : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  address : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  city : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ state : _ _ _ _ _ _  zip : _ _ _ _ _ _ _ _ _ _ _ _ _ _ country : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  email address : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  phone : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ fax : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  > > > > > - >  to get out of our email database send an email to  publicservicel @ btamail . net . cn\",1\n\"Subject: live 20 years longer with hgh  hello , [ ! to ! ] human growth hormone  therapy  lose  weight while building lean muscle massand reversing  the ravages of aging all at once .  remarkable  discoveries about human growth hormones ( hgh )  are changing the way we think about aging and weight  loss .  lose weightbuild  muscle tonereverse aging  increased libidoduration of penile  erectionhealthier bones  improved memoryimproved skinnew hair  growthwrinkle disappearance  visit  our web site and learn the facts : click  here  or  here  you are receiving this email as a subscr - in amerig  lisve yoursts , just click here  http : / / xent . com / mailman / listinfo / fork\",1\n\"Subject: professional logo for you now  working on your company ' s image ? start with a  visual identity a key to the first good impression . we are here to  help you ! we ' ll take part in buildinq a positive visual imaqe  of your company by creatinq an outstandinq iogo , presentabie stationery  items and professionai website . these marketing tools wili siqnificantiy  contributeto success of your business . take a iook at our work samples , hot deai packages and  see what we have to offer . we work for you !  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: partnership for raising awareness  hello ,  my name is shane lamotte and i ' m in the new rock  band living illusion . how are you ? i ' m emailing  you to see if it ' s a possibility for living illusion  to work with you . i ' m currently looking for unique  partnerships to help raise awareness of my band and  our music .  if you want to check out my band  and listen to some tunes go to :  http : / / www . livingillusion . com /  please email me back and let me know if you ' re  interested in finding some way that we can help  support each other in a win / win way .  thanks ,  shane lamotte  www . livingillusion . com  ps also if your interested in exchanging links  between my website and yours just let me know and  we ' ll make it happen : )\",1\n\"Subject: \"\"  content - type : text / plain ; charset = \"\" us - ascii \"\" ; format = flowed  content - transfer - encoding : 7 bit  subject : [ sa ] drive everywhere  sender : spamassassin - sightings - admin @ example . sourceforge . net  errors - to : spamassassin - sightings - admin @ example . sourceforge . net  x - beenthere : spamassassin - sightings @ example . sourceforge . net  x - mailman - version : 2 . 0 . 9 - sf . net  precedence : bulk  list - help :  list - post :  list - subscribe : ,  list - id :  list - unsubscribe : ,  list - archive :  x - original - date : mon , 10 jun 2002 09 : 36 : 57 + 0900  date : mon , 10 jun 2002 09 : 36 : 57 + 0900  international driver ' s license  need a new driver ' s license ?  too many points or other trouble ?  want a license that can never be suspended  or revoked ?  want an id for nightclubs or hotel check - in ?  avoid tickets , fines , and mandatory driver ' s  education .  protect your privacy , and hide your identity .  the united nations gave you the privilege to  drive freely throughout the world ! ( convention  on international road traffic of september 19 ,  1949 & world court decision , the hague ,  netherlands , january 21 , 1958 )  take advantage of your rights . order a valid  international driver ' s license that can never  be suspended or revoked .  confidentiality assured .  call now ! ! !  1 - 770 - 908 - 3949  we await your call seven days a week , 24 hours a day ,  including sundays and holidays .  spel  don ' t miss the 2002 sprint pcs application developer ' s conference  august 25 - 28 in las vegas - http : / / devcon . sprintpcs . com / adp / index . cfm ? source = osdntextlink  spamassassin - sightings mailing list \",1\n\"Subject: greetings from u . a . e  hello my dear ,  before i introduce myself , i wish to inform you that this letter is not a hoax mail and i urge you to treat it serious . i am director of procurement department at the ministry of petroleum and mineral resources , here in the united arab emirates . i obtained your email while searching for a reliable person , who could assist me in receiving transfer of a supposed contract awarded funds . this fund came as a result of over estimated contract awarded sums executed by foreign contractors in the petroleum ministry . this fund has been approved for payment to the contractor by the concerned ministry . the contracts had been executed and commissioned . what i am about to receive now , is the over estimated funds which the contractor whom i helped during the process of obtaining the contracts added to his estimation for my own interest . this is a normal deal that goes in my ministry by top officials .  on our part , all modalities have been worked out in ensuring a smooth conclusion of the transfer to your account within the next few days . all i want from you is to receive this funds on my behalf , because as government official i cannot collect the funds directly from the contractor , neither i am allowed by law to operate / run foreign bank accounts . if you are trustworthy and can assist me in receiving the fund , do not hesitate to respond back to me immediately .  please note that there is no risk involved in receiving the funds in your account for and it will be done through wire transfer . i wish you to state in percentage what you shall have for the use of your account . as soon as you indicate your interest , further details and the amount involved shall be given to you once i hear from you . please , treat with utmost confidentiality .  looking forward to hearing from you soonest .  best regards ,  engr . kaballa abdalla .  ministry of petroleum and ministry resources .  united arab emirates .\",1\n\"Subject: perfect logo charset = koi 8 - r \"\" >  thinking of breathing new life into your business ?  start from revamping its front - end - logo and visuai identity .  loqodentity offers creative custom design of loqos ,  stationery and web - sites . under our careful hand these powerfui marketinq toois  wili brinq a breath of fresh air into your business  and make you stand out among the competitors .  you are just a click  away from your future success . click here to see the sampies of our artwork ,  check our prices and hot offers\",1\n\"Subject: i was on your xango web site  hello xango distributor ,  my name is jonathan roberts and i represent peak impact lead generation  systems . i visited your web site and saw that you are a distributor for xango  and i would like to introduce my business to you .  i am a lead expert for peak impact inc , and we specialize in lead generation  for home based business opportunities . we generate real time national , local  area code , and gender based leads . we also specialize in custom marketing  campaigns as well . in fact we have thousands of xango customers who are  buildinga lot at phenomenal growth rates using our leads .  truth be told there are alot of companies that claim to have responsive  leads . the fact of the matter is that the majority of the lead companies you see  do not generate their own leads . they are resellers that resell the same call  list up to six times or more . we at peak impact are lead generators and we  generate the very best leads on the internet guaranteed ! we use very specific  marketing campaigns to generate our leads which guarantees that they  arefresh and in real time not , from a call list . in fact we are one of the  very few companies out there that can provide a true real time local area code  lead .  also as a customer you will receive your very own exclusive back office with  your own login and password . no other lead company has this system . within your  back office you will be able to determine how many leads you want to receive  daily . you can also start lead co - ops with your downline , * and pause and unpause  orders . * ( this feature virtually guarantees that your leads will only be seconds  old . ) in addition we have many other features in the back office that makes us  the most user friendly lead generator on the internet . so if your ready to order  go towww . rocketleads . com . there  you will find pricing information and testimonials .  if you have any questions or concerns you can contact me by phone or  email .  your certified lead expert , jonathan robertswww . rocketleads . coml - 888 - 41 - leads ( 888 - 415 - 3237 ) ext . 703  ( 9 - 5 : 30 pm est . ) 1 - 800 - 663 - 0311 ( 24 hours ) jon @ peakimpact . com\",1\n\"Subject: get the best rate on a home loan !  if you would like to be removed  from future mailings , please reply with the word remove in the subject or call  888 - 418 - 2575 .  let lenders  compete for  your business !  click here  cash  back refinances  no equity 2 nd trust deeds  debt consolidation  no income verification  the most competitive interest rates !  fill in our quick pre - qualification form and you  will get competing loan offers ,  often  within minutes from up to three lenders !  click here  there is never any fee to consumers for using this service .  copyright ?ffffa 9 1999 , 2000 eworld marketing ,  inc .  888 - 418 - 2575  this is not a solicitation or offer to lend money .  eworld marketing is not a lender , broker or  other financial intermediary . we are a marketing company  that provides services to the mortgage industry . \",1\n\"Subject: what is emc stock to cash ?  your client receives 90 % of their stock portfolio  up front and in cash  you invest this money in either an  annuity , life policy . . . or both  if the portfolio decreases in value ,  your clients ' investment remains intact  if the portfolio increases in value ,  your clients receive the upside appreciation  reduces capital gains and estate taxes  s 2 c  allows you to wrap your favorite fixed annuities around your clients '  existing stock portfolios , combining the safety features of tax - deferred  annuities with the high growth potential of the nation ' s leading  stock indices . annuities can also be used to fund fixed life insurance  policies .  call tim armstrong or e - mail us today !  please fill out the form below for more information  name :  e - mail :  phone :  city :  state :  we  don ' t want anybody to receive our mailing who does not wish to  receive them . this is a professional communication sent to insurance  professionals . to be removed from this mailing list , do not reply  to this message . instead , go here : http : / / www . insurancemail . net  legal notice \",1\n\"Subject: are you listed in major search engines ?  submitting your website in search engines may increase  your online sales dramatically .  lf you invested time and money into your website , you  simply must submit your website  oniine otherwise it wiil be invisible virtualiy , which means efforts spent in vain .  if you want  people to know about your website and boost your revenues , the only way to do  that is to  make your site visibie in places  where peopie search for information , i . e .  submit your  website in multiple search enqines .  submit your website online  and watch visitors stream to your e - business .  best reqards ,  edweber _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: deal with your medication now  hello , i ' m carl mayo .  here ' s a question for you :  do you satisfied with your sexual performance ?  get over your erectile problams now  click now and get more power http : / / medsrealcheap . com / ? cid = vtxto 2  thank you  alicia honeycutt  phone : 211 - 144 - 2273  mobile : 188 - 881 - 1697  email : cylunj @ bonet . net  e , n ^ o - u _ g . h http : / / medsrealcheap . com / emover . php\",1\n\"Subject: ! gorgeous , custom websites - $ 399 complete ! ( 4156 cumg 9 - 855 yqkc 5 @ 17 )  beautiful custom  websites , $ 399 complete !  get a beautiful , 100 % custom web site ( or  yours redesigned ) for only $ 399 ! * we  have references coast to coastand will give you  plenty of sites to  view !  includes up to 7 pages ( you can add  more ) , java rollover buttons , feedback forms , more . it  will be constructed to your taste and  specifications , we do not use templates .  our sites are completely  custom . * must host with us @  $ 19 . 95 / mo ( 100 megs , 20 email accounts , control panel ,  front page , graphical statistics ,  more ) .  for sites to view , complete below or call our  message center at 321 - 726 - 2209 ( 24 hours ) . your call  will be returned promptly . note : if  you are using a web based email program ( such as yahoo ,  hotmail , etc . ) the form below will not  work . instead of  using the form , click  here ( you  must include your name , phone and state to get a  response , no exceptions .  name : phone  w / ac * : state : type project : new  site : redesign current  site ? : comments : your information is neither sold nor shared  with third parties under any  circumstance .  to be eliminated from  future mailings , click  here  [ 6560 icum 3 - 199 gyqk 9350 cvph 2 - 701 z @ 29 ]\",1\n\"Subject: secretly record all internet activity on any computer . . . taf  find out who they are chatting / e - mailing with all those hours !  is your spouse cheating online ?  are your kids talking to dangerous people on instant messenger ?  find out now ! - with big brother instant software download .  click on this link now to see actual screenshots and to order !  to be excluded from future contacts please visit :  http : / / 213 . 139 . 76 . 69 / php / remove . php  bacalau\",1\n\"Subject: all graphics software available , cheap oem versions .  good morning ,  we we offer latest oem packages of all graphics and publishing software from corel , macromedia , adobe and others .  $ 80 adobe photoshop 8 . 0 / cs  $ 140 macromedia studio mx 2004  $ 120 adobe acrobat 7 . 0 professionai  $ 150 adobe premiere pro 1 . 5  $ 90 corel designer 10  $ 90 quickbooks 2004 professional edition  $ 75 adobe pagemaker 7 . 0  $ 70 xara x vl . 1  $ 75 adobe audition 1 . 5  $ 90 discreet 3 d studio max 7  $ 115 adobe golive cs  $ 135 adobe after effects 6 . 5 standard  $ 45 adobe premiere eiements  $ 125 corei painter lx  $ 80 adobe iliustrator cs  $ 80 adobe indesiqn cs  $ 240 adobe creative suite  $ 140 adobe framemaker 7 . 1  $ 50 ulead cool 3 d production studio 1 . 0 . 1  $ 90 aiias motion builder 6 professionai  $ 30 quicken 2004 premier home & biz  $ 30 adobe photoshop eiements 3 . 0  $ 110 adobe premiere pro 7 . 0  learn more . . .  sincerely ,  breanne \",1\n\"Subject: 6 steps to a no fear portfolio - 50 % roi per trade  if you are averaging more than 50 % r . o . i . per trade . . .  if your annual returns are well over 300 % . . .  if you know how to profit in any market condition . . .  if you know how to convert losing trades into winning trades . . .  then you don ' t need our free online seminar .  however , if you want to thrive and not just survive in today ' s market , register for our free online seminar . to see if you qualify for this free online seminar , click here :  do you know how to insure your stocks from loss ?  you insure your home , why not insure your stock portfolio ? learn how smart investors take advantage of these easy strategies and techniques to insure their trades from loss . it ' s no secret , you just need to learn how to do it .  profit in any market condition  smart investors know how to profit when the market goes up , down or stays stagnant . now is your chance to learn the secrets of successful traders . in this powerful one hour online seminar you will learn how to choose the right stock at the right time , you ' ll learn brilliant strategies and tools for techncial analysis and research . now you can learn how our students prosper when stocks drop or take unexpected turns . in fact , our students average over 50 % roi per trade with annual returns of well over 300 % . it ' s your turn . simply register for our free online seminar to discover the secrets of smart traders .  register for our free online seminar and learn the following :  what is your market mindset ?  was the 2000 - 2002 market a disaster , a correction , or a market  opportunity ?  how do you profit from a volatile market ?  how do you use options to hedge risk ?  how do you insure your trades ?  how do you profit when a stock goes up , down or sideways ?  how do you adjust a trade that is going against you  directional trading is fine on a good day , but what do you know  about spread trading for any kind of day ?  how do you implement a no fear / no risk trading system ?  how do i get help as i go through this process ?  to see if you qualify for this free online seminar , click here :  meet the founder of the company - talk to the people who created the system  in this free live online seminar , you ' ll meet the founder of the  company , chat with current students and be able to ask questions and get answers . it ' s important to get your financial information from people who have their own money at risk . meet greg jensen , cofounder of spread trade systems .  results are really all that matters . see what our current students have to say :  i have also created a very elaborate spreadsheet where i am tracking my activities . i keep one page which tracks my trading history . this is only for trades which have completed from start to finish . to date , i have completed 19 trades for an overall profit of $ 15 , 925 . 00 , at an average 77 percent roi . i also have several other trades that are active , one of which has already doubled in value , at which time i sold half of the options in that trade and paid for the trade . it is now a ' free ' trade . i also have a worksheet which tracks my overall present position in all of my trades . this one ignores the cost of the underlying stocks , for instance , in my collar trades , but is rather a measure of cashflow . my current ytd total is over $ 33 k . . .  - bob hendricks ( july 2004 ) i have been trading since october of 2002 . i started with $ 14 , 000 and within 1 year my portfolio is worth over $ 180 , 000 . spread trade strategies are simple and easy to understand . i was about to give up on the stock market , but thanks to this program i have learned how to apply spread trade strategies successfully . it is great that these strategies can be used with very little money but can grow quickly without the fear of losing your entire investment .  - ruben p . ( 2003 , to date has a portfolio valued over 400 k )  keeping a close eye on netflix over the last couple of months i sold long term short puts out of the money when the stock indicated oversold conditions . as the stock bounced back and showed over bought signals i offloaded the puts and sold calls against my stock . last month netflix options alone made me over $ 3 , 000 . opening up the wealthbuilder a few weeks ago i saw a recommendation for a call calendar . at the time i wanted to enter a credit trade instead of a debit trade and entered a bear call based on technical indicators . all options expired worthless and i pocketed the entire credit . this month i placed some covered calls and bull puts on taser as it rocketed up . i closed all positions after 10 days with a $ 1500 profit . many companies proudly advertise big percentage gains . many times i ' ve asked those companies if those big gains hide big losses - all with the exception of sts was hiding big losing trades . my record this year is 14 out of the 18 stocks i ' ve traded have made money . it ' s not the 49 out of 50 that fasi and greg get but with each month i refine my system and keep closing the gap . the education sts provides is invaluable . without it my approach would have been that of a gambler . with it my approach is systematic and disciplined and consistently profitable .  - gareth ( july 2004 )  nofearinvesting 150 clovis ave . , ste . 101 clovis , ca 93612 this e - mail message is an advertisement and / or solicitation . \",1\n\"Subject: unbelievable new homes for the usa !  it ' s a beautiful day today  homeowner  you have been pre - approved for a $ 431 , 221 home loan at a 3 . 29 fixed rate .  this offer is being extended to you unconditionally and your credit is in no way a factor .  to take advantage of this limited time opportunity  all we ask is that you visit our website and complete  the 1 minute post approval form  have a good day ,  shemika kelly\",1\n\"Subject: best mortgage rate vjd  with regards to  want to refinance ?  fill out this quick form and immediately have mortgage  companies compete for you business .  you will be offered the , absolute , best refinance rates  available !  your credit doesn ' t matter , don ' t even worry about past  credit problems , we can refinance anyone !  let us put our expertise to work for you !  http : / / 66 . 230 . 217 . 86  or site 2  http : / / agileconcepts . com / 74205 /  erase  http : / / 66 . 230 . 217 . 86 / optout . htm\",1\n\"Subject: localized software , all languages available .  hello , we would like to offer localized software versions ( german , french , spanish , uk , and many others ) .  aii iisted software is avaiiable for immediate download !  no need to wait 2 - 3 week for cd delivery !  just few exampies :  - norton internet security pro 2005 - $ 29 . 95  - windows xp professional with sp 2 full version - $ 59 . 95  - corei draw graphics suite 12 - $ 49 . 95  - dreamweaver mx 2004 ( homesite 5 . 5 inciuding ) - $ 39 . 95  - macromedia studio mx 2004 - $ 119 . 95  just browse our site and find any software you need in your native ianquage !  best regards ,  chelsea \",1\n\"Subject: national charity suffering since 9 / 11  dear friend ,  \"\" serving the tribes while sharing the culture \"\" . . . has been the mission for the american indian heritage foundation for the past 29 years .  for many years , aihf has met the emergency requests from hundreds of tribes with food , clothing , medical supplies , emergency grants and more . our student eagle awards program inspires indian youth to aspire and our scholarship program for young indian women has meant more than just financial aid to hundrends of beautiful indian women .  this worthwhile endeavor is entirely funded by very generous people like you who want to help and make a difference . we need your help now more than ever .  click here to learn more . . . maybe you can help .  \"\" may you always walk in beauty \"\"  pale moon  we appologize if this message has been an inconvenience . you may comment to our webmaster .\",1\n\"Subject: better sex ! better relationship !  a sex revival with low - priced viagra .  summertime , and the living is easy .  judgement of beauty can err , what with the wine and the dark .  within every adversity is an equal or greater opportunity .\",1\n\"Subject: earn high commissions for booking online  northstar  travel media , llc and  mailpound . com , a division of smart travel technologies , inc .  provide travel professionals with information , services and marketing  solutions  attention :  travel  agents , outside agents , independent agents , corporate travel agents :  ( click for more  information )  mailpound is a trademark of smart travel  technologies , inc .  if you do not want to receive these messages in  the future , please click  here .  please  do not reply to this email . for questions or comments on this offer ,  please contact the supplier .  for all other inquiries , please email us at support @ mailpound . com .  http : / / xent . com / mailman / listinfo / fork\",1\n\"Subject: all graphics software available , cheap oem versions .  good morning ,  we we offer latest oem packages of all graphics and publishinq software from corel , macromedia , adobe and others .  $ 80 adobe photoshop 8 . 0 / cs  $ 140 macromedia studio mx 2004  $ 120 adobe acrobat 7 . 0 professionai  $ 150 adobe premiere pro 1 . 5  $ 90 corei desiqner 10  $ 90 quickbooks 2004 professional edition  $ 75 adobe pagemaker 7 . 0  $ 70 xara x vl . 1  $ 75 adobe audition 1 . 5  $ 90 discreet 3 d studio max 7  $ 115 adobe golive cs  $ 135 adobe after effects 6 . 5 standard  $ 45 adobe premiere elements  $ 125 corel painter lx  $ 80 adobe illustrator cs  $ 80 adobe lndesiqn cs  $ 240 adobe creative suite  $ 140 adobe framemaker 7 . 1  $ 50 ulead cooi 3 d production studio 1 . 0 . 1  $ 90 aiias motion builder 6 professional  $ 30 quicken 2004 premier home & biz  $ 30 adobe photoshop elements 3 . 0  $ 110 adobe premiere pro 7 . 0  learn more . . .  sincereiy ,  beatrice \",1\n\"Subject: business partnership ( urgent / confidential )  mr . vincent nnaji ,  standard trust bank ltd ,  lagos , nigeria .  dear sir ,  i am mr . vincent nnaji , bank manager of standard trust bank , lagos , nigeria . i have urgent and very confidential business proposition for you .  on january 6 , 1998 a foreign oil consultant foreign contractor with the nigerian national petroleum corporation mr . james herbert made a numbered time fixed deposit for twelve calendar months valued at us $ 20 m ( twenty million united states dollars ) in my branch .  upon maturity i sent a routine notification to his forwarding address but got no reply . after a month we sent a reminder and finally we discovered from his contract employers the nigerian national petroleum corporation that mr . james herbert died from an automobile accident .  on further investigation , i found out that he died without making a will and all attempts to trace his next of kin was fruitless . i therefore made further investigation and discovered that mr . james herbert did not declare any next of kin or relations in all his official documents including his bank deposit paperwork in my bank . this sum of us $ 20 m has carefully been moved out of my bank to a security company for safe - keeping . no one will ever come forward to claim it .  according to nigerian law at the expiration of 5 years the money will revert to the ownership of the nigerian government if nobody applies to claim the fund . consequently my proposal is that i will like you as a foreigner to stand in as the owner of the money i deposited it in a security company in two trunk boxes though the security company does not know the contents of the boxes as i tagged them to be photographic materials for export i am writing you because i as a public servant i cannot operate a foreign account or have an account that is more than $ 1 m .  i want to present you as the owner of the boxes in the security company so you can be able to claim them with the help of my attorney . all these are to make sure that the fruits of this old man ' s labour will not get into the hands of some corrupt government officials .  this is simple . i will like you to provide immediately your full names and address so that the attorney will prepare the necessary documents which will put you in place as the owner of the boxes . the money will be shared in the ratio of 70 % for me and 25 % for you and 5 % will take care of all expenses .  there is no risk at all as all the paperwork for this transaction will be done by the attorney and this will guarantee the successful execution of this transaction . if you are interested , please reply immediately via my private email address .  upon your response i shall then provide you with more details and relevant documents that will help you understand the transaction . please observe with utmost confidentiality and be rest assured that this transaction would be most profitable for both of us because i shall require your assistance to invest my share in your country .  awaiting your urgent reply via my private email to indicate your interest .  thanks and regards ,  mr . vincent nnaji .\",1\n\"Subject: 100 % free hardcore megasite ! !  100 % free porn !  what more can you ask for ?  click here  removal instructions : we strive to never send unsolicited mail .  however , if you ' d rather not receive future e - mails from us ,  click here to send email and add the word remove in the subject line .  please allow 48 hours for processing .  [ ( ^ ( pol : kj ) _ 8 j 7 bjk 9 ^ \"\" : } h & * tgobk 5 nkiys 5 ]  - - - -  this sf . net email is sponsored by : jabber - the world ' s fastest growing  real - time communications platform ! don ' t just im . build it in !  http : / / www . jabber . com / osdn / xim  spamassassin - sightings mailing list \",1\n\"Subject: refinance or mortgagefkzqeljhyno  what a loan from lenderscan do for you : rates have never been lower ! ! lowest rates - best possible termsdebt this . . . your $ 8 , 750 $ 175 visa $ 10 , 500 $ 210 discover $ 5 , 250 $ 105 auto loan $ 20 , 500 $ 515 total $ 45 , 000 $ 1 , 005 into this ! ! ! $ 45 , 000 $ 390 . 06 annual savings : $ 7 , 379 . 005 - year savings : $ 36 , 896 . 00 opay off high interest credit cardsoreduce monthly paymentshome improvementopaint , landscape , carpet , add rooms / pool / spaoyou may be eligible for a tax deductionhome refinancingoreduce your monthly payments and get cash back ! oget up to 125 % of your homes value ( ratios vary by  state ) . we have hundreds of loan programs , including : purchase loansrefinancedebt consolidationhome improvementsecond sno income verificationno matter which of our 50 states you live in , welikely have a program that could meet your needs ! please  click hereone of our experienced loan officers will contact you  for more details concerning your needs . want to be purged ? just go hereand we will promptly extract you . copyright dti inc .\",1\n\"Subject: best prizes of online cigarettes here  a fair is impartation pianist but resumption what indisposition ,  sickle not ayers .  when growl boom , napoleonic snuffer is not ketchup  colza but a canst coalesce andersen arises bertha  cohort in chemic , grammar and dixon . would you  ceruleancrank ?  no , maggot emitted teresa is bison a behave and  teardrop noontime .  if not , here - http : / / cmzcqj 4 euuivo 02 . 123 cigs 4 lessl . com / rm \",1\n\"Subject: you can gain from lowest interest rates in 30 years  certain chances only come around every few  decades or so . this is one . why you ask ?  because home loan rates are headed up .  have you locked in the lowest rate , in almost  thirty years , for your present home loan ?  rates haven ' t been this low in a long time . they  may well never be this low again . this is your  chance to secure a better future . you could  literally save enough money to buy that new car  you ' ve been wanting or to take that special  vacation . why wouldn ' t you jump at this chance ?  there ' s no need for you to continue to pay more  than is necessary or to continue not having the  things your family wants and needs .  we ' re a nationwide mortgage lender . we ' re not a  broker . and we can guarantee you the best rate  and the best deal possible for you . but only  if you take action today .  there is no fee or charge of any kind to see if  we can help you get more of the things you want ,  desire and need from your current pay . you can  easily determine if we can help you in just a few  short minutes . we only provide information in  terms so simple that anyone can understand them .  you won ' t need to be a lawyer to see the savings ,  this we promise .  we offer both first and second home loans and we  will be happy to show you why your current loan  is the best for you . or why you should replace  it . and once again , there ' s no risk for you . none  at all .  take a couple of minutes and use the link below  that works for you . for a couple of minutes of  your time , we can show you how to get more for  yourself and your loved ones . don ' t lose this  chance . please take action now .  click _ here  sincerely ,  james w . minick  mortbanc , inc .  your favorite stores , helpful shopping tools and great gift ideas . experience the convenience of buying online with shop @ netscape ! http : / / shopnow . netscape . com /  get your own free , personal netscape mail account today at http : / / webmail . netscape . com /\",1\n\"Subject: your june stats  it ' s absolutely true . you will get emails like  this very soon .  quickly , send me an email and you will  get real com . miss . ion emails with this  subject line and a big , big comm _ ission  pa . yments from all the bus _ inesses you  pro _ mote .  to pro . ve it , for a limit / ed per _ iod i will  give . you 10 sign _ ups ( that will p . a . y . to  j . o . i . n . your bus . in . ess ) and i will not ask  you for a sin . gle cent / penny to get you  star - ted . use these to gen _ erate an  in . stant in . com _ e .  only the first 10 replies get 10 paid _  signups .  then sitback & watch the _ sign _ ups  join _ you inst _ antly in their droves and  without you having to do much _ at all .  at the end of march you will get  comm _ ission state _ ments showing that  you have ear . ned tens _ of thou _ s _ ands  of doll _ ars from your existing bus . . iness .  oppo . rtun . it . ies .  miss . this and def _ in . it . ely missout on  the ea - sie . st and fas . test mo . ney that  you will ever ma . ke from your bu . sin _ ess  opp . or - tuni . ty  email me on earnbigmoney @ tiscali . co . uk  please put \"\" yes \"\" in the subject line .  good luck  gavin  if i have breached your privacy please  delete yourself off my list by sending  an email to earnbigmoney @ tiscali . co . uk  with \"\" d \"\" in the subject line .\",1\n\"Subject: [ ilug ] wilson kamela  attn : sir / madan  strictly confidential .  i am pleased to introduce myself to you . my name is mr . wilson kamela a native of south africa and a senior employee of mines and natural resources department currently on a trainning course in holland for few months .  i am writing this letter to request your assistance in order to redeem an investment with the south african mining corporation . the said investment , now valued at ( $ 15 . 5 million dollars ) fifteen million , five hundred thousand dollars only was purchased by lucio harper and contracted out to the south african mining corporation in 1977 now recognised as mines and natural resources department . this redeemable investment interest , has now matured since march last year .  since march last year , several attempts have been made to contact lucio harper without success and there is no way to contact any of his close relatives in whose favour the investment cash value can be paid .  since we have access to all lucio harper ' s information , we can claim this money with the help of my partners with the south african mines and natural resources department . all we have to do is to file claim using you as lucio harper ' s relative .  i will like to assure you that there is absolutely nothing to worry about , because it is perfectly safe with no risk involved . please ensure to keep this matter strictly confidential . my partner will file a claim for this money on your behalf from the southafrican mining corporation . when the claim is approved , you as the beneficiary  will be paid ( 25 % ) of the total amouth .  since this money can be paid directly into any bank account of your choice , you have responsibility to ensure that my partner and ireceive ( 70 % ) of the total amouth . while the balance ( 5 % ) will be set aside for any unforseen expenses in the cause of transfering this money .  i will appreciate if you can give your assurance and guarantee that our share will be well secured . please for the sake of confidentiality , reach me on my e - mail address : wilsonkamela 3000 @ mail . com . please let me know if this proposal is acceptable to you . kindly reach me immediately with any of the stated contact addresses so that better clearifications  relating to the transaction will be explained to you .  truly yours ,  wilson kamela .  - -  irish linux users ' group : ilug @ linux . ie  http : / / www . linux . ie / mailman / listinfo / ilug for ( un ) subscription information .  list maintainer : listmaster @ linux . ie\",1\n\"Subject: some of the largest membership sites for free  get porn for free  free password to :  18 asian  huge tits xxx  free amateur hotties  free teen hotties  free and kinky  free farm sluts  free n ' famous  adults only  diligent \",1\n\"Subject: mail delivery failed : returning message to sender  this message was created automatically by mail delivery software .  a message that you sent could not be delivered to one or more of its  recipients . this is a permanent error . the following address ( es ) failed :  stcelebrate 2002 @ aol . com  ( ultimately generated from info @ something - to - celebrate . com )  smtp error from remote mailer after end of data :  host mailin - 01 . mx . aol . com [ 64 . 12 . 137 . 89 ] : 554 - :  ( hvu : bl ) http : / / postmaster . info . aol . com / errors / 554 hvubl . html  554 transaction failed  - - - - - - this is a copy of the message , including all the headers . - - - - - -  return - path :  received : from [ 218 . 23 . 38 . 202 ] ( helo = mailwisconsin . com )  by discostu . angelsonoccasion . com with smtp ( exim 4 . 43 )  id ldupmn - 0001 st - jh  for info @ something - to - celebrate . com ; tue , 19 jul 2005 06 : 57 : 18 - 0400  received : from 205 . 214 . 42 . 66  ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ;  by mailwisconsin . com with http id j 87 gzo 24817172 ;  tue , 19 jul 2005 10 : 57 : 46 + 0000  message - id :  date : tue , 19 jul 2005 10 : 57 : 46 + 0000  subject : just to her . . .  from : \"\" barry castillo \"\"  to : info @ something - to - celebrate . com  user - agent : squirrelmail / 1 . 4 . 3 a  x - mailer : squirrelmail / 1 . 4 . 3 a  mime - version : 1 . 0  content - type : text / html ; charset = iso - 8859 - 1  content - transfer - encoding : 8 bit  x - priority : 3 ( normal )  importance : normal  soft viagra at $ 1 . 62 per dose  ready to boost your sex life ? positive ?  time to do it right now !  order soft viagra at incredibly low prices  starting at $ 1 . 99 per dose ! unbeiivable !\",1\n\"Subject: rreally works very good  hello , welcome to pharmonli thyroid ne s newtonian hop  - one of the leading oniine campaign pharmaceutical shops  malnutrition v  dimply g  a unfold l  l withdraw l  unarmed la  r spatio a cupboard cl  i decision sv osierbed a  classic um  andmanyother .  - save o operatic ver 50 %  - worldwide sh retaliate lpplng  - total conf impromptu identiaiity  - over 5 miiiion cust unworn omers in 130 countries  puffin have a nice day !\",1\n\"Subject: glad i madde the move  hello , welcome to phar coolie monline sho disrespectful p  - one yellowish of the leading oniine pharmaceutical shops  labiate v  corrective g  a prostration l  l opposed l  l molecular a  encephalitis ra maillot cl  i stockjobbery sv mythicize a  analects um  andmanyother .  - s welding ave over 50 %  - worldwide sh resistance lpplng  - total confidentiaii purchasingpower ty  - over 5 miiiion customers in 130 countri canonization es  have a nice day calumniatory !\",1\n\"Subject: a quick , cheap and convenient way to buy viagra  we are the only online pharmacy offering 100 % satisfaction money back guarantee ?  by perseverance the snail reached the ark .  i think we agree , the past is over .  true philosophy invents nothing ; it merely establishes and describes what is .\",1\n\"Subject: do you smoke ? qrklx  lookln 4 affordabowl cigarettez ? come chick it out here !  is mclaughlin that skylarkchamfer or citron maybe fully  minstrelsy ?  i dill don ' t v continuum not decoy a binghamton  spring .  if upsetting crunch then reimove : \",1\n\"Subject: logo , corporate identity and website design  corporate image can say a lot of things about your  company . contemporary rhythm of life is too dynamic . sometimes it takes oniy  several seconds for  your company to be remembered or to be lost among competitors .  get your loqo , business stationery or website done  riqht now !  fast turnaround : you will see severai logo variants  in three business days .  satisfaction guaranteed : we provide unlimited  amount of changes ; you can be sure : it wiii meet your needs and fit your  business .  fiexibie discounts : ioqo improvement , additionai  formats , bulk orders , special packages .  creative design for  competitive price : have a look at it right now !\",1\n\"Subject: well , trry it  hello , welcome to pharmon wallow line s dilative hop  - on extensible e of the leading oniine pharmaceutical shops  greasy v  marauder g  unabridged al  chromolithograph ll  acknowledgement la  r repealer ac octane l  i extrusion s quaint va  u pollination m  andmanyother .  - s nucleate ave over 50 %  - worldwide shlp rocket plng  - total confiden screechy tiaiity  - over 5 miiiion permafrost customers in 130 countries  have a backfiller nice day !\",1\n\"Subject: luv our rolexes for the same fea - tures and lovvprices .  they are definitely the finest from rolexes , cartiers , bvlgaries ,  frankmullers , harry winstons , breguets , jaeger - lecoultre , brietilings ,  tagheuers and tudors . first of all , their overall lo 0 ks are perfect .  secondly , vievv their details . every small logo and serial number shown  speak for their elegance .  you will also flnd out how ccheap our lovely goodss are . you might even  vvant 2 or 3 vvatches for your collections . waterproof , stainlessteelbody ,  sapphire crystal surface and other lovely featuress bring you sheer feeling  for luxury .  our vvatches are reallydurable cause the manufacturers use the bestquality  substances like durable stainlesssteel and anti - scratching surface .  the vvatches sold at our cybersstore have energy - modules like  battery & quartz , anto - operating & winding , winding and non - winding ones .  the classics have hack mechanism with stainlesssteelback . we have them .  their when you promised to go . \"\"  \"\" no , i did not promise . i only smirked and bowed , and said the word  late confidences wer e really too wicked for their pea  ` bite your tongue ! ' said princess miaghkaia suddenly . ` karenina is a  splendid woman . i don ' t like her husband - but her i like very much . ' to  the window to recollect himself , and feel how he ought to behave .  ce of mind , some weath 1 erbeaten ragged old rooks ' - nests , 7 burdening  their hi gher branch\",1\n\"Subject: we are need you tjuz s cif  mercy advertising group presents for your attention :  they need your help !  the act of terrorism in london on july , 7 2005 took the lives of many  innocent people . it was directed not against one nation , but against all  the nations .  its up to you to help the injured and the families who lost their  relatives in this tragedy .  to help click here  if you dont want to receive our advertising letters any  more , click here \",1\n\"Subject: healthy reproductive life  our customer speak volumes about our spur m product  \"\" i just wanted to write and thank you for spur - m .  i suffered from poor sperm count and motility . i found  your site and ordered spur - m fertility blend for men .  i have wondered for years what caused low semen and sperm  count , and how i could improve my fertility and help my wife  conceive . spur - m seems to have done just that ! thank you  for your support . \"\"  andrew h . , london , uk  \"\" spur - m really does help improve fertility and effectiveness  of sperm and semen motility . i used it for the past few months ,  and not only does it work - i also feel better to . i have  more energy . this is an excellent counter to low sperm count  and motility . i ' ll be buying more ! ! ! \"\"  franz k . , bonn , germany  http : / / rosemary . chorally . com / spur / ? sheep  for removing , pls go here  http : / / mcclure . chorally . com / rm . php\",1\n\"Subject: important announcement : your application was approved  we tried to contact you last week about refinancing your home at a lower rate .  i would like to inform you know that you have been pre - approved .  here are the results :  * account id : [ 987 - 528 ]  * negotiable amount : $ 153 , 367 to $ 690 , 043  * rate : 3 . 70 % - 5 . 68 %  please fill out this quick form and we will have a broker contact you as soon as possible .  regards ,  shannon serrano  senior account manager  lyell national lenders , llc .  database deletion :  www . lend - bloxz . com / r . php \",1\n\"Subject: save your money by getting an oem software !  need in software for your pc ? just visit our site , we might have what you need . . .  best regards ,  alvaro \",1\n\"Subject: you will receive the best prices available on viagra online  if your sex life is good . . . then make it fantastic !  the covers of this book are too far apart .  real freedom lies in wildness , not in civilization .  with the gift of listening comes the gift of healing .\",1\n\"Subject: otc gdvi - the momentum continues - gdvi website debute  otc bbalert gdvi  news update : global diversified industries debutes brand new website !  www . gdvi . net  otc bb  alert  spectacular operating results momentum  continues  sales projections for next 12 months surpasses $ 20 million  99 . 8 %  revenue increase  278 % net  income increase  154 %  stockholders equity increase  79 %  increase in assets  $ 8  million order backlog  $ 50  million manufacturing capacity  overview  global diversified industries operates in the modular  building construction industry , and strategically targets the  california education sector . gdvi is strategically located in  central  california on 16 acres with a 100 , 000 square foot state - of - the - art  manufacturing facility .  throughout 2003 and 2004 the company focused on building  its infrastructure through acquisitions , development of a  state - of - the - art manufacturing facility , and by securing the  requisite financing facilities to fuel business growth .  through the combination of its new facility ( $ 50 million  capacity ) , the increased demand for portable buildings and the state  of  california ' s bond approvals , gdvi has become well positioned to  become one of the dominant leaders in modular manufacturing on the  west coast .  gdvi should benefit greatly from the $ 12 . 1 billion  school improvement bond that is expected to be passed by  california voters next month ( march ) . this presents , in our opinion  an opportunity for early investors of gdvi to also benefit before  the mainstream investor realizes who the benefactors are and  subsequently invests in those companies .  global diversified has taken numerous strategic  development steps throughout 2003 and 2004 , including generating  strong revenues as well as profits and is now poised for explosive  growth in 2005 . the company is led by a strong management team with  previous success in building companies into $ 50 million per annum  businesses .  in the past year gdvi has exceeded its own sales revenue  projections , renewed its piggyback contract , received state  approvals on engineered product designs , started a new credit  facility and opened its new 100 , 000 square foot manufacturing  facility . the company will continue to seek new acquisition  candidates through its aggressive growth plan .  profile  gdvi is a holding company that currently  operates two wholly owned subsidiaries , mbs construction inc . , a  modular contractor specializing in modular construction site work  and renovation and global modular , inc . , a sales , marketing and  manufacturing of modular type structures .  its principal customer base is currently educational  ( public and private schools , universities , etc . ) , child - care and  municipality sectors . its product lines consist of a variety of  portable classroom designs , including both single - story and two -  story floor plans . global modular ' s portable classroom structures  are engineered and constructed in accordance with pre - approved  building plans , commonly referred to as p . c . ' s or pre - checked plans , that conform to structural and seismic safety specifications  administered by the california department of state architects ( dsa ) .  global modular also enjoys the benefit of providing  educational customers with products contracted under a piggyback  clause . the state of  california allows school districts to canvass proposals from modular  classroom vendors under a bidding process where the successful  bidder can provide other public school districts and municipalities  portable classrooms under a piggyback contract issued by the  originating school district . this process saves school districts  valuable time and resources from the necessity of soliciting bids .  a modular vendor who possesses a piggyback contract containing competitive pricing and a variety of design options may  have access to future business for up to five years , depending on  the term of the piggyback contract .  the strategic focus on california schools  since 1998 ,  california legislation has required that at least 20 % of all new  classrooms constructed with state funds be portable structures .  there are five compelling reasons for this trend :  modular  classrooms are faster to construct ( as quickly as 2 weeks )  they cost  significantly less ( as low as $ 30 , 000 vs . $ 100 , 000 )  they offer  greater flexibility for use compared to conventional buildings  they are easier  to finance  they provide  financing incentives  to cope with population growth , the state department of  education estimates that  california will need more than 2 , 500 classrooms each year for the  next four years , which equates to more than 10 , 000 classrooms .  due to the current and projected budget cuts throughout  the california education sector , public and private schools are  expected to turn to portable / modular construction to fulfill their  additional classroom requirements over the next four years .  the california schools budget crisis  on  november 5 , 2002 a $ 13 . 2 billion school facilities improvements bond  proposal ( proposition 47 ) was passed by  california  voters .  this bond measure passage does not include an approximate  $ 9 . 4 billion worth of local bond measures passed by various school  districts throughout the state .  a second bond measure worth $ 12 . 1 billion went before the  voters on the march 2004 .  these bond measures are about three times higher than the  record $ 9 . 2 billion bond  california voters approved in 1998 . the revenue generated from these  bond measures will be used for school modernization programs , which  include requirements for relocatable classrooms and modular  classroom construction and renovations .  money from the bonds will help overcrowded public and  private schools ; design upgrades and expand building space at  community colleges and other institutions of higher learning  throughout  california .  gdvi business infrastructure  among global modular ' s asset base is its integrated ,  state - of - the - art , automated manufacturing process which includes  equipment , raw material and marketing collateral that are  specifically designed for the high capacity fabrication of modular  structures .  gdvi employs a workforce of 60 employees and is looking  to add to its workforce as demand increases .  operates out of a sixteen acre site with a 100 , 000 square  foot operating structure .  wholly owned subsidiary ( global modular inc . ) markets ,  designs and manufactures the buildings  wholly owned subsidiary ( mbs corporation ) handles  installation and building renovation .  symbol otc . bb  gdvi  recent price 13 . 5 cents  management team  philip hamilton , ceo and president  mr . hamilton has an extensive and very successful  background in modular manufacturing . from 1996 to feb 2000 he served  as chairman and ceo of pacesetter industries inc . he built this  company from inception into one of  californias  largest manufacturers , producing and installing thousands of schools  and commercial buildings . under his leadership , pacesetter  industries moved into a 5 , 500 , 000 sq . ft . facility in atwater ,  california with branch sales offices throughout the state . the  company employed a staff of over 650 employees and had annual sales  of $ 50 , 000 , 000 .  adam de bard , vice president  mr . de bard has over 6 years of experience in the  manufacturing and business sectors . from 1997 to 2000 he served as  vice president and chief  information officer of pacesetter industries .  ronald kilpatrick , director of finance  mr . kilpatrick has 36 years experience in both domestic  and international development and management of major corporations .  he is a managing partner of pacific rim capital llc which provides  venture capital to projects in the  pacific rim .  recent headlines  global diversified industries , inc . commencing efforts to  increase its u . s . based investor and public relations visibility  pr newswire ( tue 5 : 00 am )  global diversified industries , inc . modular division secures new  order worth more than $ 3 million for immediate delivery  pr newswire ( thu , jun 9 )  wallst . net airing all - new , exclusive audio interviews with gdvi  and geoi  pr newswire ( tue , jun 7 )  wallst . net airing exclusive audio interviews with gdvi and xle  pr newswire ( thu , jun 2 )  global diversified industries , inc . acquires valuable assets  from california modular company  pr newswire ( thu , may 26 )  global diversified industries , inc . modular division  implementing its fourth production line  pr newswire ( thu , may 19 )  talkingstocks . com announces interview with philip hamilton ,  president and ceo of global diversified industries , inc .  primezone media network ( tue , may 17 )  stockguru . com initiates profile coverage of global diversified  industries , inc .  primezone media network ( mon , may 16 )  global diversified industries ' modular division billings total  $ 1 . 4 million in april ; experiencing largest production schedule  since company ' s founding  pr newswire ( tue , may 3 )  global diversified industries , inc . modular division receives  repeat order based on superior prior performance  pr newswire ( wed , apr 20 )  more headlines for gdvi . ob . . .  gdvi manufacturing infrastructure  gdvi has created a turnkey manufacturing process with  experienced professionals handling every aspect of each  manufacturing project . global ' s integrated service approach provides  the company with a distinct advantage over its competitors in term  of efficiency and cost effectiveness .  via 3 wholly owned subsidiaries , gdvi delivers the  following in - house services :  design ,  engineering and planning  site  preparation  manufacturing  and construction  delivery ,  installation , and relocation  ancillary  interior and exterior services  customer  service and support  contacts  gdvi - global diversified industries inc .  1200  airport drive  chowchilla ,  ca 93610  tel : ( 559 ) 665 5800  investor relations contact  mr . paul knopick  tel : ( 949 ) 707 - 5365  pknopick @ . com  stock quotes  http : / / finance . yahoo . com / q ? s = gdvi . ob  this report is for informational purposes only , and is neither a solicitation to buy nor an offer to sell securities . investment in low - priced small and micro - cap stocks are considered extremely speculative and may result in the loss of some or all of any investment made in these companies . expedite is not a registered investment advisor or a broker - dealer . information , opinions and analysis contained herein are based on sources believed to be reliable , but no representation , expressed or implied , is made as to its accuracy , completeness or correctness . the opinions contained herein reflect our current judgment and are subject to change without notice . expedite assumes no responsibility for updating the information contained herein regardless of any change in gdvi ' s financial or operating condition . as expedite has received compensation for this report , and will benefit from any increase in share price of the advertised company , there is an inherent conflict of interest in our statements and opinions . expedite accepts no liability for any losses arising from an investor ' s reliance on , or use of , this report . gdvi will require additional capital to realize its business plan and continue as a going concern . expedite has been hired by a third party consultant , and is contracted to receive $ 5 , 000 . expedite and its affiliates or officers may buy hold or sell common shares , of mentioned companies , in the open market or in private transactions at any time without notice . certain information included herein is forward - looking within the context of the private securities litigation reform act of 1995 , including , but not limited to , statements concerning manufacturing , marketing , growth , and expansion . the words \"\" may , \"\" \"\" would , \"\" \"\" will , \"\" \"\" expect , \"\" \"\" estimate , \"\" \"\" anticipate , \"\" \"\" believe , \"\" \"\" intend , \"\" and similar expressions and variations thereof are intended to identify forward - looking statements . such forward - looking information involves important risks and uncertainties that could affect actual results and cause them to differ materially from expectations expressed herein .  global diversified industries , inc . 1200 airport dr . chowchilla , ca 93610 this e - mail message is an advertisement and / or solicitation . \",1\n\"Subject: information request received  we are in receipt of your e - mail regarding additional information .  we appreciate your patience and will be responding to you within the next 24 - 48 hours .  please be advised that this is an automated e - mail response .  thank you ,  millenium precision , inc .\",1\n\"Subject: major stock play  amnis systems , inc . ( otcbb : amnm )  contract announcements and huge newsletter coverage this week =  for = 20  amnm ! ! !  this thursday amnm will be profiled by some major newsletters . =  = 20  there will be huge volume and a strong increase in price for severa =  l = 20  days . these are the same newsletters that profiled clks two w =  eeks = 20  ago . they brought clks from $ 1 . 50 to $ 4 . 35 in ten days . =  we = 20  know for certain that the same groups are going to profile amnm sta =  rting = 20  on thursday .  we are very proud that we can share this information with you =  so that = 20  you can make a profit out of it . it is highly advisable to ta =  ke a = 20  position in amnm as soon as possible , today before the market = 20  closes , or tomorrow .  the stock is trading near its 52 week low , and will start movi =  ng up = 20  immediately . we believe the stock could easiely reach $ 4 in l =  ess = 20  than a month .  good luck and watch amnm fly this week ! !  = 09  = 09  = 09  = 09  = 09  = 09  = 09  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ incredimail - email has finally =  = 20  evolved - click = 20  here \",1\n\"Subject: horny ? . . stop paying for porn - 12 free passes  i  know you want pics of hot babes right ? i bet you want to  get into  the best porn sites for free too ?  here ' s a secret :  get into paysites free !  take  a minute to  read what i ' ve got to tell you , and will have full access  to  some of the internet ' s hottest membership sites for free .  click here  this costs  nothing !  note :  this is not a spam email . this email was sent to you because your email was  entered in on a website  requesting to be a registered subscriber . if you would would like to be removed  from our list ,  click  here to cancel your account and you will * never * receive another  email from us ! \",1\n\"Subject: save your money buy getting this thing here  you have not tried cialls yet ?  than you cannot even imagine what it is like to be a real man in bed !  the thing is that a great errrectlon is provided for you exactly when you want .  ciails has a iot of advantaqes over viaqra  - the effect lasts 36 hours !  - you are ready to start within just 10 minutes !  - you can mix it with alcohol ! we ship to any country !  get it riqht now ! . \",1\n\"Subject: manage your diabetes effortlessly with diabetic plus  to no longer get these messages from diabetic plus inc . , please click here :  unsubscribe  or send a postal mail to :  diabetic plus inc .  12000 biscayne blvd  suite 607  north miami beach , fl . 33181  diabetic plus 12000 biscayne blvd . , ste . 509 north miami , fl 33181 this e - mail message is an advertisement and / or solicitation . \",1\n\"Subject: want to make women adore you ? click here .  10 minutes before sex , lasts for 24 - 36 hours  an eye for an eye makes the whole world blind .  the man who runs may fight again .  where there is an open mind there will always be a frontier .\",1\n\"Subject: the technews - bulletin , july 2005  mobile production units for developing countries - worldwide partners program  sn world foundation will supply to countries and developing regions the technology and necessary support for production in series of mini - plants in mobile containers ( 40 - foot ) . the mini - plant system is designed in such a way that all the production machinery is fixed on the platform of the container , with all wiring , piping , and installation parts ; that is , they are fully equipped . . . and the mini - plant is ready for production .  more than 700 portable production systems : bakeries , water purification , dehydrated food , steel nails , fruit juice preparation , tire retreading , reinforcement bar bending for construction framework , sheeting for roofing , ceilings and faades , plated drums , aluminum buckets , injected polypropylene housewares , pressed melamine items ( glasses , cups , plates , mugs , etc . ) , mufflers , construction electrically welded mesh , plastic bags and packaging , medical assistance mobile units , sanitary material , hypodermic syringes , hemostatic clamps , etc .  the mini - plants of production in mobile containers is the only system in the world that can provide up to six ( 6 ) of the most essential products for basic sustenance for just one dollar ( $ 1 . 00 ) per day .  sn world foundation has started a co - investment program for the installation of small assembly plants to manufacture , in series , the mini - plants of portable production on site , region or country where required . one of the most relevant features is the fact that these plants will be connected to the international trade system , with access to more than 50 million raw materials , products and services and automatic transactions for world trade .  due to financial reasons , involving cost and social impact , the best solution is setting up assembly plants on the same countries and regions , using local resources ( labor , some equipment , etc . ) sn world foundation participates at 50 % ( fifty percent ) for investment of each assembly plant .  if you are interested in being a partner in your country or region , you can send your cv to : sn world foundation ( click here ) worldwide partners program to : sarah mathews , program manager .  if you received this in error or would like to be removed from our list , please return us indicating : remove or un - subscribe in subject field , thanks . the technews , editor  2005 the tech news . all rights reserved . \",1\n\"Subject: logo , stationer , website design and so much more !  lt is really hard to recollect a company : the  market is full of suqgestions and the information isoverwhelminq ; but a good  catchy logo , styllsh stationery and outstanding webslte  wiii make the task much easier .  we do not promise that having ordered a iogo your  company wiil automaticaily become a worid leader : it isguite clear that  without good products , effective business organization and practicable aim it  will be hotat nowadays market ; but we do promise that your marketing efforts  will become much more effective . here is the list of clear  benefits : creativeness : hand - made , original logos , specially done  to reflect your distinctive company image . convenience : logo and stationery  are provided in all formats ; easy - to - use content management system letsyou  change your website content and even its structure . promptness : you  will see logo drafts within three business days . affordability : your  marketing break - through shouldn ' t make gaps in your budget . 100 % satisfaction  guaranteed : we provide unlimited amount of changes with no extra fees for you to  be surethat you will love the result of this collaboration . have a look at our  portfolio _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: greatly improve your stamina  my girlfriend loves the results , but she doesn ' t know what i do . she  thinks  it ' s natural - thomas , ca  i ' ve been using your product for 4 months now . i ' ve increased my  length from 2  to nearly 6 . your product has saved my sex life . - matt , fl  pleasure your partner every time with a bigger , longer , stronger unit  realistic gains quickly  to be a stud press  here  so much time had been consumed at the desert oasis that he felt he must  now hasten if he wished to reach home by saturday afternoon ; so , having  quickly come to a decision , he turned the indicator and began a swift flight  into the east  address listed in  above site  but i am one of the greatest humbug wizards that ever lived , and you  will realize this when we have all starved together and our bones are  scattered over the floor of this lonely cavei don ' t believe we ' ll  realize anything , when it comes to that , remarked dorothy , who had been deep  in thought for several hours he traveled above the great desert of gobi , but  by noon signs of a more fertile country began to appear , and , dropping to a  point nearer the earth , he was able to observe closely the country of the  chinese , with its crowded population and ancient but crude civilization  then he came to the great wall of china and to mighty peking , above which  he hovered some time , examining it curiously \",1\n\"Subject: it ' s just too small hloy  a man endowed with a 7 - 8 \"\" hammer is simply  better equipped than a man with a 5 - 6 \"\" hammer .  would you rather havemore than enough to get the job done or fall short . it ' s totally upto you . our methods are guaranteed to increase your size by 1 - 3 \"\" come in here and see how \",1\n\"Subject: roletes e roldanas para empilhadeiras  santos , julho de 2 . 005  listagem dos produtos savi  linha hyster :  193557 rolete r $ 90 , 00  193557 c capa r $ 55 , 00  110520 rolete r $ 125 , 00  110520 c capa r $ 95 , 00 185530 / / 329090 rolete r $ 62 , 00  185531 / / 329091 rolete r $ 68 , 00  125223 rolete r $ 175 , 00  125217 rolete lat . r $ 115 , 00  125219 eixo r $ 35 , 00  125220 suporte r $ 225 , 00  1333395 rolete r $ 80 , 00  1333398 rolete r $ 65 , 00  1345218 rolete r $ 90 , 00  270063 eixo r $ 95 , 00  126041 ?ncora r $ 170 , 00  257853 eixo curto r $ 85 , 00  87905 rolete r $ 75 , 00  61463 roldana r $ 155 , 00  810348 engrenagem r $ 535 , 00  810810 engrenagem r $ 1 . 850 , 00  roldana hyster xl 80 r $ 145 , 00  linha clark :  342957 rolete r $ 70 , 00  2326653 rolete r $ 85 , 00  1722452 rolete r $ 165 , 00  1692062 rolete lat . r $ 190 , 00  666354 rolete lat . r $ 55 , 00  1654614 rolete r $ 90 , 00  1692093 roldana r $ 90 , 00  329488 roldana r $ 190 , 00  840929 sapata freio r $ 245 , 00  linha yale :  5088018 rolete r $ 65 , 00  7114306 rolete r $ 110 , 00  7114068 rolete r $ 110 , 00  5200368 - 37 rolete r $ 90 , 00  5200368 - 52 rolete r $ 65 , 00  743692 rolete lat r $ 50 , 00  907595300 rolete r $ 110 , 00  yale antigo 100 x 40 x 35 r $ 70 , 00  650697 - 00 rolete lat . r $ 45 , 00  650698 - 00 rolete lat . r $ 45 , 00  650699 - 00 rolete lat . r $ 45 , 00  5086233 - 00 roldana r $ 155 , 00  5104934 - 00 suporte r $ 550 , 00  roletes mitsubishi :  d . ext . x d . eixo x altura  124 , 5 x 45 x 34 rolete r $ 115 , 00  115 x 45 x 35 rolete r $ 110 , 00 ( 9421000700 )  115 , 5 x 45 x 34 rolete r $ 110 , 00  114 x 45 x 34 rolete r $ 110 , 00 ( 9421000601 )  115 , 5 x 60 x 27 , 5 rolete r $ 110 , 00  107 , 5 x 35 x 28 rolete r $ 95 , 00  roldanas :  121 / 110 x 45 x 36 roldana r $ 120 , 00 ( 9421020500 )  91 / 86 x 35 x 30 roldana r $ 95 , 00  118 / 103 x 35 x 30 roldana r $ 115 , 00  outros :  830065 - 181 rolete r $ 96 , 00 ( toyota )  838089 blb rolete r $ 110 , 00  939089 b rolete r $ 105 , 00  rolete nissan 115 x 45 x 32 r $ 100 , 00  rolete nissan 115 , 5 x 45 x 32 r $ 100 , 00  rolete nissan 123 , 5 x 45 x 32 r $ 110 , 00  910946 rolete r $ 90 , 00  13317089 rolete r $ 90 , 00  0009249480 rolete r $ 145 , 00 ( linde )  0009249481 rolete r $ 145 , 00 ( linde )  9511003117 rolete r $ 175 , 00 ( linde )  0009249504 rolete r $ ( linde )  0009249505 rolete r $ ( linde )  0009249506 rolete r $ ( linde )  empilhadeira milan 37 ton . (  pre?os sob consulta )  rolete torre milan 37 ton .  rolete lat . torre milan 37 ton .  polia da corrente torre milan 37 ton .  polia das mang . hidr?ulico torre  rolete lat . milan 37 ton .  semi - eixo milan 37 ton .  confeccionamos todos os cil?ndros hidr?ulicos  e mais ; fabricamos sob desenho ou amostra itens tais como : roletes ,  roldanas , eixos , buchas , engrenagens , acoplamentos , flanges , polias , suportes e  etc . . estamos desde j? no aguardo de vosso contato  tel . : oxxl 3 32357817  telfax . : oxxl 3 32342055  hailson . savi @ terra . com . br  obs : voc? est?  recebendo este e - mail porque est? cadastrado para tal . caso voc? n?o deseje mais  receber nenhum tipo de contato nosso , clique  aqui , ou envie um e - mail para seuemail @ dominio . com com o assunto  remover .\",1\n\"Subject: mega nneed offr  hello , welcome to pharmonli pitfall ne sho affect p  - one of the leading oniine pharmaceutical sho exsiccation ps  thereout v  compare g  a kibble l  l devisor l  l navigable a  r metaphysical a trousseaux cl  i billow sv atomicity a  coastal um  andmanyother .  - save ove reheat r 50 %  - worldwide sh drowsy lpplng  - total confidentiaiit mellifluous y  - over 5 miiiion customers goneness in 130 countries  have a nice da wriggle y !\",1\n\"Subject: get the software you need , now !  save money on buying software ! ! !  reading this book is like waiting for the first shoe to drop .  free speech carries with it some freedom to listen .\",1\n\"Subject: save your money buy getting this thing here  you have not tried cialls yet ?  than you cannot even imagine what it is like to be a real man in bed !  the thing is that a great errrectlon is provided for you exactiy when you want .  cialls has a iot of advantaqes over viagra  - the effect iasts 36 hours !  - you are ready to start within just 10 minutes !  - you can mix it with alcohoi ! we ship to any country !  get it right now ! . \",1\n\"Subject: viagra online now  levitra is in the class of oral impotence medication like viagra .  whatever you are , be a good one .  advice is a dangerous gift , even from the wise to the wise .  men in however high a station ought to fear the humble .\",1\n\"Subject: you don _ t know how to get into search engine results ?  submitting your website in search engines may increase  your online sales dramatically .  if you invested time and money into your website , you  simply must submit your website  online otherwise it wiil be invisibie virtuaiiy , which means efforts spent in vain .  if you want  people to know about your website and boost your revenues , the oniy way to do  that is to  make your site visible in places  where peopie search for information , i . e .  submit your  website in multiple search engines .  submit your website online  and watch visitors stream to your e - business .  best regards ,  beatrizbass _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: peace tree designs : creating extraordinary art for ordinary items !  peace tree design creates  products to enhance your daily experience by putting extraordinary art  on items you use everyday . original and abstract designs of suns , moons ,  meteors , eyes , mandalas , and flowers on  journals ,  mouse pads ,  bags , and  clocks make  them distinctive and you stand out .  peace  tree design will also create a  custom design  or logo for an event ( kid ' s birthday , company function , family reunion )  or for your organization . \",1\n\"Subject: new impotence drug that treats male erectile dysfunction !  prescription medication for mens health and wellness .  he that dies pays all debts .  a contented mind is a continual feast .  nothing can be pleasing which is not also becoming .  sweet mercy is nobility ' s true badge .\",1\n\"Subject: buy cialis online ! get control of your life again !  prescriptions for female sexual disfunction  just turn left at greenland . . .  poetry is the language in which man explores his own amazement .  horses lend us the wings we lack .\",1\n\"Subject: increases cardiac output and athletic performance  no doctor visits required  recapture your youth and feel the energy  for many , this is a powerful second chance  press here to read about  http : / / yv . i 2 el . glowlineensured . com / xs /  this common element can change the way you experience the next half of your  life  - - - - - original message - - - - -  from : odessa [ mailto : derick @ ktracsy . com ]  sent : tuesday , march 3 , 2005 5 : 42 am  to : donnie ; rebbecca @ rixranxne . com ; blanche ; janelle ; kazuko  subject : fully living life  i am busy , no thank you , go above and use link and address is on site  his surprise was great when the garment of repulsion arrested the blow and  nearly overthrew the aggressor in turn .  snatching a dagger from his sash , he bounded upon the boy so fiercely that  the next instant the enraged turk found himself lying upon his back three  yards away , while his dagger flew through the air and landed deep in the  desert sands .  keep it up ! cried rob , bitterly . but why destroy my friends ? asked the  little wizard .\",1\n\"Subject: now you can diversify the acts in your bedroom !  cialis drug information : an online resource on cialis , a new fda approved impotence drug  we all have strength enough to endure the misfortunes of others .  blessed are those who can give without remembering , and take without forgetting .  doubt is not a pleasant condition , but certainty is absurd .  this hath not offended the king .\",1\n\"Subject: re :  good day ,  everybody will love to get p - p - t - v and pay not a cent .  so will you , check the below web address ,  copy it and paste in your browser .  the web address is :  check 4 choices . com  once who don ' t like such mails , plz . add slash and ' r ' to above address .  and plz . give upt 10 days .  i am missing working right now . .  was michael enjoying running early last month ? .  get back to you later ,  kristi olariu\",1\n\"Subject: 300 million business charset = windows - 1252 \"\" >  sick and tired of  email directories that don ' t deliver what they promise ?  these days it ' s almost getting to the point were you  need to buy every single e - mail directory on the market and weed through  them to get some decent e - mail addresses to bulk out to .  well the buck stops here ! we ' ve bought almost every  good directory on the market , cleaned it up and compiled all 300 million  records on 3 cds for you !  plenty of targeted lists are also available in areas  like :  state and area code  gambling  dining  gardening  health  golf  home business  investment  opt - in  web design  travel  . . . and many more !  check out this amazing new collection today ! get our website  address now by sending a blank email to cloudhaven @ btamail . net . cn  once you send an email you will receive our website  url in your inbox within seconds ! \",1\n\"Subject: mix , rip and burn like a pro . download realplayer plus now .  advanced cd burning rip , mix and burn cds and mp 3 s faster at 320 kbps .  advanced video controls customize your video experience with brightness , contrast , sharpness , and hue  graphic eq create the perfect sound by adjusting for input and room size with 10 - band graphic eq .  crossfade set up segues , close gaps between tracks , and mix like a pro . \",1\n\"Subject: claim a free $ 25 kmart ( r ) gift card !  you are receiving this mailing because you are a  member of sendgreatoffers . com and subscribed as : jm @ netnoteinc . com  to unsubscribe  click here  or reply to this email with remove in the subject line - you must  also include the body of this message to be unsubscribed . any correspondence about  the products / services should be directed to  the company in the ad .  % em % jm @ netnoteinc . com % / em % \",1\n\"Subject: [ ilug - social ] lose 22 . 5 lbs in 3 weeks !  1 ) lose 22 . 5 lbs in 3 weeks !  flush fat away forever ! free 30 - day supply  http : / / www . adclick . ws / p . cfm ? o = 423 & s = pkl 9  2 ) introducing chase platinum for students  with a 0 % introductory apr  http : / / www . adclick . ws / p . cfm ? o = 421 & s = pkl 9  3 ) access your pc from anywhere - download now  http : / / www . adclick . ws / p . cfm ? o = 425 & s = pkl 9  have a wonderful day ,  prizemama  - - - - - - - - - - - - - - - - - -  you are receiving this email because you have opted - in to receive  email from publisher : prizemama . to unsubscribe , click below :  - -  irish linux users ' group social events : social @ linux . ie  http : / / www . linux . ie / mailman / listinfo / social for ( un ) subscription information .  list maintainer : listmaster @ linux . ie\",1\n\"Subject: re : my pic  hi sweetie ,  come see me and my hot girl friends school at our new web site - >  http : / / picturepost . phreehost . com / mypic /  come to see fast before delete this page .\",1\n\"Subject: delivery status notification ( failure )  this is an automatically generated delivery status notification .  delivery to the following recipients failed .  info @ simplythankyou . com\",1\n\"Subject: the best investments  otc  newsletter  discover tomorrow ' s winners  for immediate release  cal - bay ( stock symbol : cbyi )  watch for analyst \"\" strong buy recommendations \"\" and several advisory newsletters picking cbyi . cbyi has filed to be traded on the otcbb , share prices historically increase when companies get listed on this larger trading exchange . cbyi is trading around 25 cents and should skyrocket to $ 2 . 66 - $ 3 . 25 a share in the near future .  put cbyi on your watch list , acquire a position today .  reasons to invest in cbyi  a profitable company and is on track to beat all earnings estimates !  one of the fastest growing distributors in environmental safety equipment instruments .  excellent management team , several exclusive contracts . impressive client list including the u . s . air force , anheuser - busch , chevron refining and mitsubishi heavy industries , ge - energy environmental research .  rapidly growing industry  industry revenues exceed $ 900 million , estimates indicate that there could be as much as $ 25 billion from \"\" smell technology \"\" by the end of 2003 .  ! ! ! ! ! congratulations ! ! ! ! ! our last recommendation to buy orbt at $ 1 . 29 rallied and is holding steady at $ 3 . 50 ! congratulations to all our subscribers that took advantage of this recommendation .  all removes honored . please allow 7 days to be removed and send all addresses to :  goneforgood @ btamail . net . cn  certain statements contained in this news release may be forward - looking statements within the meaning of the private securities litigation reform act of 1995 . these statements may be identified by such terms as \"\" expect \"\" , \"\" believe \"\" , \"\" may \"\" , \"\" will \"\" , and \"\" intend \"\" or similar terms . we are not a registered investment advisor or a broker dealer . this is not an offer to buy or sell securities . no recommendation that the securities of the companies profiled should be purchased , sold or held by individuals or entities that learn of the profiled companies . we were paid $ 27 , 000 in cash by a third party to publish this report . investing in companies profiled is high - risk and use of this information is for reading purposes only . if anyone decides to act as an investor , then it will be that investor ' s sole risk . investors are advised not to invest without the proper advisement from an attorney or a registered financial broker . do not rely solely on the information presented , do additional independent research to form your own opinion and decision regarding investing in the profiled companies . be advised that the purchase of such high - risk securities may result in the loss of your entire investment . not intended for recipients or residents of ca , co , ct , de , id , il , ia , la , mo , nv , nc , ok , oh , pa , ri , tn , va , wa , wv , wi . void where prohibited . the owners of this publication may already own free trading shares in cbyi and may immediately sell all or a portion of these shares into the open market at or about the time this report is published . factual statements are made as of the date stated and are subject to change without notice .  copyright c 2001  otc  * * * *\",1\n\"Subject: achieve stronger and harder erections  penis growth extreme  http : / / www . siratu . com / ss /  there ' s really no fun in being sensible all the time . . . .  advice is least heeded when most needed .  some of us are becoming the men we wanted to marry .  my friend is one . . . who take me for what i am .  the way is harshness greeted with kindness , fear greeted with fortitude .\",1\n\"Subject: upside only treasury - linked annuity  upside of annual increases in 5 - year t - note  bonus crediting over normal  treasury notes  alternative for large  municipal bond or t - note buyers  call or e - mail us today !  or  please fill out the form below for more information  name :  e - mail :  phone :  city :  state :  * for deposits over $ 100 , 000  we don ' t want anybody  to receive our mailings who does not wish to receive them . this is professional  communication sent to insurance professionals . to be removed from this  mailing list , do not reply to this message . instead , go here :  http : / / www . insurancemail . net  legal notice \",1\n\"Subject: save your money buy getting this thing here  you have not tried cialls yet ?  than you cannot even imagine what it is like to be a real man in bed !  the thing is that a great errrectlon is provided for you exactiy when you want .  cialis has a lot of advantages over viagra  - the effect lasts 36 hours !  - you are ready to start within just 10 minutes !  - you can mix it with aicohoi ! we ship to any country !  get it riqht now ! . \",1\n\"Subject: picks from analyst with high - level precision  small - cap stock finder  new developments expected to move western sierra mining , inc . stock  from $ o . 70 to over $ 4 . oo  westernsierramining . com  western sierra mining is a company on the move , fast ! big news is out !  big business is afoot for wsrm !  read on to find out why wsrm is our top pick this week .  * western sierra mining has a very profitable business mode | in which  they avoid the highest cost associate with mining : expioration .  essentia | | y , wester sierra operates mines on sites that have been previously  explored and found to be \"\" too small \"\" for the | argest mining companies ,  yet stil | produce handsome profits .  * the global mining industry boom wi | | continue for the foreseeable  future due to the impact of china - driven demand on commodity prices and  long suppiy - response lead times .  * news ! news ! news ! read on to find out why we expect wsrm to take off  this week !  here is recent news on the company :  phoenix - - ( business wire ) - - june 15 , 2 oo 5 - - western sierra mining corp .  ( pink sheets : wsrm - news ) announced today that the board of directors  has approved and authorized a 2 - for - 1 forward spiit of its issued and  outstanding common s - tock to al | shareholders of record as of june 26 ,  2 oo 5 .  the company stated that the reason for the split was to a | | ow  additional investors to participate in the long - term goals and objectives of  western .  phoenix - - ( business wire ) - - june lo , 2 oo 5 - - western sierra mining ( pink  sheets : wsrm - news ) and oretech inc . ( pink sheets : orte - news )  announced today that their respective boards of directors have agreed to enter  into an agreement to develop the silver piume and pittsburg mines  | ocated in coiorado .  commenting on the proposed transaction , the president of western sierra  mining , michael chaffee , said , \"\" the new aiignment with oretech wi | |  aliow each of the companies to utiiize their specific expertise to the  maximum benefit of the other . oretech is trying to focus on developing its  propriety extraction technology and western is expanding its mining  activities in the u . s . we have started our due diiigence on the property  and look forward to taking a proposal back to oretech by the end of the  month .  phoenix - - ( business wire ) - - june 3 , 2005 - - western sierra mining ( pink  sheets : wsrm - news ) announced today that it has signed a letter of intent  with asdi corp . providing wsrm the right to develop the asdi property  | ocated in crescent vailey at battie mountain , nev .  we cannot stress enough the significance of this news . a s - tock split  can oniy mean one thing ; good business ! with the split date set at june  26 , now is obviously the time to get in . with repsect to the other  news , that a smal | company such as this wouid have the rights to these  rich properties speaks voiumes for their management and near - future  earnings . that they wouid be so fortunate as to be involved with an industry  pioneer such as oretech is nothing short of extraordinary .  these fortuitous events have earned wsrm our highly recommendation  symbol : ( wsrm )  current price : 0 . 70  short term target price : 4 . 60  12 month target price : 8 . 90  * * * news from the industry * * *  * mining s - tocks have outperformed both the s & p 5 oo and the dow jones  industrial average over the last three years .  * profits by mining companies have doubled for the second year in a  row . return on equity has increased nearly three - foid over the past two  years  * price waterhouse coopers calis for \"\" . . . another bumper year for the  giobal mining industry in 2 oo 5 . \"\" they go on to say , \"\" the sustained  upturn in commodity prices has caught investors ' attention , creating a dash  for mining s - tocks . add the unprecedented profits and free cash flows  and we have a very buoyant industry . \"\"  for more information read , mine - enter the dragon , by price waterhouse  coopers , located at pwcglobal . com  disclaimer :  information within this email contains \"\" forward | ooking statements \"\"  within the meaning of section 27 a of the securities act of 1933 and  section 21 b of the securities exchange act of 1934 . any statements that  express or invoive discussions with respect to predictions ,  expectations , beliefs , pians , projections , objectives , goals ,  assumptions or future  events or performance are not statements of historica | fact and may be  \"\" forward | ooking statements . \"\" forward | ooking statements are based on  expectations , estimates and projections at the time the statements are  made that involve a number of risks and uncertainties which couid cause  actual results or events to differ materialiy from those presentiy  anticipated . forward looking statements in this action may be  identified  through the use of words such as \"\" projects \"\" , \"\" foresee \"\" , \"\" expects \"\" ,  \"\" wil | , \"\" \"\" anticipates , \"\" \"\" estimates , \"\" \"\" believes , \"\" \"\" understands \"\" or  that by  statements indicating certain actions \"\" may , \"\" \"\" could , \"\" or \"\" might \"\" occur .  as with many micro - cap s - tocks , today ' s company has additional risk  factors worth noting . those factors inciude : a | imited operating  history ,  the company advancing cash to reiated parties and a sharehoider on an  unsecured basis : one vendor , a related party through a majority  s - tockholder , suppiies ninety - seven percent of the company ' s raw  materiais :  reiiance on two customers for over fifty percent of their business and  numerous related party transactions and the need to raise capita | .  these  factors and others are more fully spelied out in the company ' s sec  fiiings . we urge you to read the filings before you invest . the rocket  stock  report does not represent that the information contained in this  message states ail material facts or does not omit a material fact  necessary  to make the statements therein not misleading . ail information  provided within this email pertaining to investing , stocks , securities  must be  understood as information provided and not investment advice . the  rocket stock report advises al | readers and subscribers to seek advice  from  a registered professional securities representative before deciding to  trade in stocks featured within this email . none of the materia | within  this report shall be construed as any kind of investment advice or  soiicitation . many of these companies are on the verge of bankruptcy .  you  can | ose al | your mone * y by investing in this stock . the pubiisher of  the rocket stock report is not a registered investment advisor .  subscribers shouid not view information herein as | ega | , tax ,  accounting or  investment advice . any reference to past performance ( s ) of companies  are  speciaily selected to be referenced based on the favorable performance  of  these companies . you would need perfect timing to achieve the results  in the examples given . there can be no assurance of that happening .  remember , as aiways , past performance is never indicative of future  results and a thorough due diligence effort , including a review of a  company ' s fiiings , should be compieted prior to investing . in  compliance  with the securities act of 1933 , section 17 ( b ) , the rocket stock report  discioses the receipt of tweive thousand dollars from a third party  ( gem , inc . ) , not an officer , director or affiliate sharehoider for  the  circulation of this report . gem , inc . has a position in the stoc * k  they  wi | | sel | at any time without notice . be aware of an inherent conflict  of interest resuiting from such compensation due to the fact that this  is a paid advertisement and we are confiicted . all factual information  in this report was gathered from pubiic sources , including but not  | imited to company websites , sec fiiings and company press releases .  the  rocket sto * ck report beiieves this information to be reiiabie but can  make  no guarantee as to its accuracy or completeness . use of the material  within this email constitutes your acceptance of these terms .\",1\n\"Subject: what happend in your home ? ? ?  spy pinhole color  camera + voice  features : all purpose cam  at your finger tip world ' s true smallest spy camera ( similar to a penny ) low  power consumption and high sensitivity easy installation .  do - it - yourself to  build your own baby / nanny monitor , r / c helicopter , airplane , walking robot ,  home and office security cameras as a must for private investigators and law  enforcement agencies for surveillance and video monitoring recording of indoor  and outdoor activities where is allowed by law keep an eye on valuables and  loved ones with this tiny suitable for use at homes , workshops , warehouses ,  schools , offices , stores , gas stations great for portable video surveillance or  for hobbies hide it easily in any objects such as box , book , toy , flower , plant ,  clock , or radio ,  anywhere you can think of record the motion video to a vcr  or / and watch the video on tv without a computer or in compute with dvr  card easy to keep track of anything ! ! specifications : tv system : pal definition :  380  tv lines scan frequency : 60 hz  minimum illumination : 1 . 5 lux for color  effective element : 510 x 492  picture area : 4 . 69 x 3 . 45 mm  viewing  angle : 30 ~ 35 degrees  iris : automatic  exposure : automatic  focus : adjustable  viewing  distance : 50 mm to infinity full motion real time color video without  delay operating  voltage : 9 - volt battery or ac - dc + 8 v 200 ma power adapter  operating duration by battery : 10 hours on duracell or energizer alkaline  battery  operating duration by ac - dc power adapters : 24 - hour non - stop  installation : you can do it in 2 minutes connect the pinhole to any standard  television or vcr with the rca cable ( cable not included ) plug the ( 9 - volt  battery or ac - dc + 8 v 200 ma power adapter ) into the power jack of the camera or  in compute with dvr card adjust the lens of the camera to its best position  change your tv set into av model  dimensions : 0 . 875 oz . ( net weight ) 1 . 125 oz . ( gross weight ) 0 . 725 inches x 0 . 875  inches x 0 . 875 inches ( w x l x h )  only  29 $ including shipping to worldwide !  to order click here !  to buy dvr ' s ,  security cameras and more , click here ! \",1\n\"Subject: * free real estate info ! *  great news webmaster ,  finally - a foreclosure tycoon reveals his most closely guarded secrets !  for the first time ever , we are proud to bring you foreclosure ' s most closely guarded secrets - a complete , turn - key system to either owning your own home or making a fortune in foreclosure real estate without tenants , headaches and bankers .  free information for a revolutionary brand - new approach to show you exactly how to buy a foreclosure or make a fortune in foreclosure real estate in today ' s market .  are you ready to take advantage of this amazing information ?  webmaster , take this first step to improving your life in the next 2 minutes !  for free information click here :  to unsubscribe or change subscriber options click :  click here  - - - -  this sf . net email is sponsored by : thinkgeek  welcome to geek heaven .  http : / / thinkgeek . com / sf  spamassassin - sightings mailing list \",1\n\"Subject: urgent reply needed  from : mr . usman bello .  attention sir  in appreciation of your esteemed contact received through a reliable source , first of all , i wish to introduce myself to you , i am mr usman bello . the only surviving son of the late dr . mustapha bello who was one of the aid to the former leader of my country iraq before he was killed in a war in my country . i know that this mail will come to you as a surprise but honestly i do not intend to surprise you . i write this letter in respect of my intention to invest the sum of us $ 10 , 000 , 000 . 00 in your company which i inherited from my father proceeds before his death . my mother is from haiti while my father is from iraq before they got married as husband and wife . i am now left with my only surviving mother who unfortunately has been critically ill since late last year because of the shock the death of my late father caused her .  when my father with the rest members of my family was killed on 16 th january 2003 during the war , i and my mother escaped to iran with the help of united nations officials from there we came to thailand through the united nation peace keeping pilot . the fund is now with the financial firm . in view of this plight , i expect you to be trust worthy and kind enough to assist me , i hereby agree to compensate your sincere and candid effort in this regard with 20 % of the total fund and 10 % for expenses , which may arise during the transaction .  whatever your decision is , please contact me immediately through the above email . i also appeal to you to keep this matter secret for the interest of my family .  best regards .  usman bello .\",1\n\"Subject: got a mortgage ? 6 . 25 30 yr fixed free instant quote djf  dear  homeowner ,  * 6 . 25 %  30 yr fixed rate mortgage  interest  rates are at their lowest point in 40 years ! we help you find the  best rate for your situation by matching your needs with hundreds  of lenders ! home improvement , refinance , second  mortgage , home equity loans , and more ! even with less  than perfect credit !  click here for a free quote !  lock  in your low fixed rate today  ano  cost out of pocket  ano  obligation  afree  consultation  aall  credit grades accepted  rates as low as  6 . 25 % won ' t stay this low forever click here  * based on mortgage rate as of 5 - 15 - 02 as low as 6 . 25 % see lender  for details  h  apply  now and one of our lending partners will get back to you within  48 hours .  click here !  to be removed please clicking  here . \",1\n\"Subject: look ! y o u are a w i n n e r here ! - don ' t miss out ! ! 6674  f i n a l n o t i c e !  new program pays you immediately !  get started today  with usa ' s fastest growing business opportunity  not mlm !  here you get paid large checks the same day !  use the internet to make money 24 hours a day !  i made unbelievable $ 21 , 000 in june !  . . and will prove it , if you wish !  everybody can do this !  - a u t o p i l o t system ! -  our system generates all leads for you !  minimum cash outlay gets you started today !  program available in us and canada only !  are you ready to change your life ?  to receive free info about this last offer ,  please send an email to : rickbellrist @ excite . com  with \"\" send info \"\" in the subject line ! !  ( do not click reply ! )  to remove , please send an email with \"\" remove \"\"  in the subject line to : rickbellrist @ excite . com  - - - -  this sf . net email is sponsored by : thinkgeek  welcome to geek heaven .  http : / / thinkgeek . com / sf  spamassassin - sightings mailing list \",1\n\"Subject: underpriced issue with high return on equity  the oil and gas advisory  now that oil and gas has entered a long - term bul | market ,  our speciaity in pinpointing the hottest companies of the few remaining  undervaiued energy plays has produced soaring returns .  emerson oi | and gas ( eogi ) is an energy developer in the us \"\" oil belt \"\"  and in canada ' s most highiy coveted reservoirs with generating  potentia | of millions per week .  breaking news ! ! !  emerson oil and gas , inc . , ( eogi ) is pleased to announce that the  aiberta energy & utiiity board has issued license no . o 330206 for the  company ' s we | | 11 - 16 - 24 - 2 the acadia project .  the acadia project consists of 15 sections in aiberta in an area that  produces natura | gas from the viking formation , has oi | potentia | in the  bakken zone and gas potential in the coiony and second white specks  zones . the viking contains natura | gas in we | | s around the acadia project  and has the potentia | for 13 bcf gas in the reservoir under the | eases .  gas weils in the area have caicuiated aof rates up to 14 mmcf per day .  the project is | ocated in eastern alberta with year round access and an  estabiished production and equipment infrastructure . well costs are  expected to be $ 600 , 00 o dri | | ed , cased and compieted and the advanced  funds will go towards the driiling of the first well . each weil on a | ease  earns emerson a 49 % working interest in one section .  emerson oil and gas , inc . , ( eogi ) is pleased to announce that the land  lease has been surveyed and acquired regarding the acadia project .  the acadia project consists of 15 sections in aiberta in an area that  produces natural gas from the viking formation , has oi | potential in the  bakken zone and gas potential in the coiony and second white specks  zones . the viking contains natural gas in weils around the acadia project  and has the potentia | for 13 bcf gas in the reservoir under the leases .  gas we | | s in the area have caicuiated aof rates up to 14 mmcf per day .  the project is located in eastern aiberta with year round access and an  estabiished production and equipment infrastructure . weil costs are  expected to be $ 60 o , ooo dri | | ed , cased and compieted and the advanced  funds will go towards the dri | | ing of the first we | | . each weil on a lease  earns emerson a 49 % working interest in one section .  symbol - eogi  price - . o 26  the vaiue of eogi ' s shares will skyrocket :  1 . price charts confirm oi | prices are experiencing the strongest bul |  market in a generation .  2 . natura | gas prices have tripied in the | ast two years .  3 . with multipie projects in high - gear and the expanding production on  reserves worth multi - mi | | ions , eogi is selling for | ess than 1 / 4 the  vaiue of its assets .  4 . emerson oi | and gas speciaiizes in using new technoiogy to turn  unproductive oi | and gas deposits into profitabie enterprises . aiready  shares in the oil and gas sector are rising faster than the overall market .  in fact , four of dow jones ' ten top performing industry sectors for the  past year are energy reiated . but it ' s in the mid - sized explorers and  developers | ike emerson ( eogi ) that the biggest gains are being made . in  the | ast 12 months , many of these stocks made tripie and even quadruple  returns .  our subscribers need to pay particuiariy close attention to undervalued  eogi shares , because it won ' t be a bargain for | ong . this smail company  with a comparably small market value , is sitting on a bonanza of oi |  and gas reserves - an unrecognized bonus for investors especialiy with  the daiiy jump in energy prices .  but al | that wi | | change in a few short weeks , as these reserves move  into production , bringing an explosion of cash that is expected to  capture the attention of the market , and have an equa | | y expiosive effect on  the share price .  what wi | | the cash flow from these projects do for the price of emerson  oil and gas ' shares ? well we do know this - the great thing about  investing in eogi is that your gains don ' t depend on further increases in  the price of oil and gas . even if energy prices stay flat , or decline  slightiy , you will sti | | make a very heaithy return . of course , energy  prices are expected to continue their meteoric rise over the next year  or so as predicted , meaning the value of eogi ' s assets and earnings  will soar even higher . in that case , the reward for investors will be  staggering .  overall , we consider eogi to be one of the | ast outstanding energy  plays in the oil and gas sector . once this discovery has been reaiized ,  eogi shares wi | | surge sharply on heavy investor attention . we have  identified this discovery for immediate accumulation . eogi ' s oil and  gas reserves are wel | established and are going into massive  production . eariy investors wil | secure optimum gains , and any additiona | news in  this area will reaily turn up the heat , causing us to revise our  targets upward in next week ' s builetin .  oil and gas advisory ( oga ) is not a investment expert . certain  statements contained in this newsietter may be future - looking statements within  the meaning of the private securities litigation reform act of 1995 .  such terms as expect , beiieve , may , wil | , and intend or similar terms may  identify these statements . past - performance is not an indicator of  future - resuits . this is not an expert to acquire or seil securities . oga is  an independent pubiication that was paid fifteen thousand doliars by a  third party for the continuing coverage and dissemination of this  company information . investors are suggested to seek proper guidance  from a financial expert . investors should use the information provided in  this newsietter as a starting point for gathering additiona |  information on the profiied company to a | | ow the investor to form their own  opinion regarding investment .  if you wish to stop future mailings , or if you feel you have been  wrongfuily placed in our membership , piease send a blank e mai | with no  thanks in the subject to daily _ 4 tip @ yahoo . com\",1\n\"Subject: perfect logo charset = koi 8 - r \"\" >  thinking of breathing new life into your business ?  start from revamping its front - end - logo and visuai identity .  logodentity offers creative custom design of loqos ,  stationery and web - sites . under our careful hand these powerfui marketinq tools  wili brinq a breath of fresh air into your business  and make you stand out among the competitors .  you are just a click  away from your future success . ciick here to see the samples of our artwork ,  check our prices and hot offers\",1\n\"Subject: urgent paypal security notification  security center advisory !  we recently noticed one or more attempts to log in to your paypal account from a  foreign ip address and we have reasons to belive that your account was hijacked  by a third party without your authorization . if you recently accessed your account while traveling , the unusual log in attempts  may have been initiated by you .  if you are the rightful holder of the account you must click the link below and then complete all steps from the following page as we try to verify your identity .  click here to verify your accountif you choose to ignore our request , you leave us no choise but to temporaly suspend  your account . thank you for using paypal ! the paypal team  please do not reply to this e - mail . mail sent to this address cannot be answered . for assistance , log in to your paypal account and choose the \"\" help \"\" link in the footer of any page . to receive email notifications in plain text instead of html , update your preferences here .  paypal email id pp 697  protect your account info  make sure you never provide your password to fraudulent persons . paypal automatically encrypts your confidential information using the secure sockets layer protocol ( ssl ) with an encryption key length of 128 - bits ( the highest level commercially available ) . paypal will never ask you to enter your password in an email . for more information on protecting yourself from fraud , please review our security tips at http : / / www . paypal . com / securitytips  protect your password  you should never give your paypal password to anyone , including paypal employees . \",1\n\"Subject: your logo and visual identity from us  thinking of breathing new life into your business ?  start from revamping its front - endlogo and  visualidentity .  we offer creative custom design of ioqos ,  stationery and web - sites . under our carefui hand thesepowerful marketinq  tools wiii brinq a breath of fresh air into your business and make you stand out  amongthe competitors .  you are just a click  away from your future success . click here to see the samples of our artwork ,  checkour prices and hot offers .  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: almost - guaranteed issue term  almost guarantee issue term for impaired risk market  10 year level term - 8 medical questions  issue ages 20 to 55 - $ 10 , 000 to $ 75 , 000 face amount  a + carrier  you won ' t sleep tonight thinking about all the prospects  you have for this product !  you have several cases in your desk drawer  for this product !  call or e - mail us today !  visit our web site www . impairedriskterm . com for rates  and a sample application  please fill out the form below for more information  name :  e - mail :  phone :  city :  state :  we don ' t want anybody to receive our mailing who does not wish to  receive them . this is professional communication sent to insurance  professionals . to be removed from this mailing list , do not reply  to this message . instead , go here : http : / / www . insurancemail . net  legal notice \",1\n\"Subject: important : verify your account  security measures - are you traveling ?  paypal is committed to maintaining a safe environment for its community  of buyers and sellers . to protect the security of your account , paypal  employs some of the most advanced security systems in the world and our  anti - fraud teams regularly screen the paypal system for unusual  activity .  we recently noted one or more attempts to log in to your account from a  foreign country . if you accessed your account while traveling , the  attempt ( s ) may have been initiated by you .  because the behavior was unusual for your account , we would like to take  an extra step to ensure your security and you will now be taken through  a series of identity verification pages .  ip address  time  country  193 . 230 . 222 . 158  apr . 28 , 2005 12 : 47 : 01 pdt  romania  193 . 230 . 222 . 150  may 7 , 2005 18 : 37 : 55 pdt  romania  193 . 230 . 222 . 150  may 8 , 2005 16 : 42 : 16 pdt  romania  193 . 230 . 222 . 150  may 8 , 2005 16 : 58 : 03 pdt  romania  click here to verify your account  thank you for your prompt attention to this matter . please understand  that this is a security measure meant to help protect you and your  account .  we apologize for any inconvenience .  if you choose to ignore our request , you leave us no choise but to  temporaly suspend your account .  thank you for using paypal ! the paypal team  please do not reply to this e - mail . mail sent  to this address cannot be answered . for assistance ,  log in to your paypal account and choose the help link in the  footer of any page .  to receive email notifications in plain text instead of html , update  your preferences  here .  paypal email id pp 697 \",1\n\"Subject: localized software , all languages available .  hello , we would like to offer localized software versions ( qerman , french , spanish , uk , and many others ) .  all iisted software is available for immediate downioad !  no need to wait 2 - 3 week for cd delivery !  just few examples :  - norton lnternet security pro 2005 - $ 29 . 95  - windows xp professional with sp 2 full version - $ 59 . 95  - corei draw graphics suite 12 - $ 49 . 95  - dreamweaver mx 2004 ( homesite 5 . 5 including ) - $ 39 . 95  - macromedia studio mx 2004 - $ 119 . 95  just browse our site and find any software you need in your native lanquaqe !  best regards ,  beatris \",1\n\"Subject: esecure online pharmacies  cialis offers efficacy and spontaneity in your love life .  my music is best understood by children and animals .  one can acquire everything in solitude - except character .  people find life entirely too time - consuming .  the truth is more important than the facts .\",1\n\"Subject: post jobs fast and get results fast  100 ' s of employers  are posting jobs here .  make your next career move  and log on to  jobslog . com  make a free resume and find lots of free  career tips at our resource center !  jobslog . com 1314 south king st . , ste . 856 honolulu , hawaii 96814 this e - mail message is an advertisement and / or solicitation . \",1\n\"Subject: professionally - designed logos and identities  thinking of breathing new life into your business ?  start from revamping its front - endlogo and  visualidentity .  we offer creative custom design of ioqos ,  stationery and web - sites . under our careful hand thesepowerfui marketing  toois wili bring a breath of fresh air into your business and make you stand out  amonqthe competitors .  you are just a ciick  away from your future success . ciick here to see the sampies of our artwork ,  checkour prices and hot offers .  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: all graphics software available , cheap oem versions .  good morning ,  we we offer latest oem packages of all graphics and publishinq software from corel , macromedia , adobe and others .  $ 80 adobe photoshop 8 . 0 / cs  $ 140 macromedia studio mx 2004  $ 120 adobe acrobat 7 . 0 professional  $ 150 adobe premiere pro 1 . 5  $ 90 corel designer 10  $ 90 quickbooks 2004 professionai edition  $ 75 adobe paqemaker 7 . 0  $ 70 xara x vl . 1  $ 75 adobe audition 1 . 5  $ 90 discreet 3 d studio max 7  $ 115 adobe golive cs  $ 135 adobe after effects 6 . 5 standard  $ 45 adobe premiere elements  $ 125 corel painter ix  $ 80 adobe iilustrator cs  $ 80 adobe lndesiqn cs  $ 240 adobe creative suite  $ 140 adobe framemaker 7 . 1  $ 50 uiead cool 3 d production studio 1 . 0 . 1  $ 90 alias motion buiider 6 professionai  $ 30 quicken 2004 premier home & biz  $ 30 adobe photoshop elements 3 . 0  $ 110 adobe premiere pro 7 . 0  learn more . . .  sincerely ,  toni \",1\n\"Subject: your online sales are low because you don _ t have enough visitors ?  submitting your website in search engines may increase  your online sales dramatically .  if you invested time and money into your website , you  simply must submit your website  oniine otherwise it wili be invisible virtually , which means efforts spent in vain .  if you want  people to know about your website and boost your revenues , the only way to do  that is to  make your site visible in places  where people search for information , i . e .  submit your  website in multipie search engines .  submit your website oniine  and watch visitors stream to your e - business .  best reqards ,  marciewarren _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: better sex ! better relationship !  the real viagra deal on the net ! simply the best !  it is the nature of all greatness not to be exact .  he appears to have been weened on a pickle .  so long as there are men there will be wars .  americans never quit .\",1\n\"Subject: delivery status notification ( failure )  this is an automatically generated delivery status notification .  delivery to the following recipients failed .  roger @ gryphon . com . au\",1\n\"Subject: re : super charge your desktop or laptop today ! 17639  take control of your computer with this top - of - the - line software !  symantec systemworks 2002  - = professional software suite = -  this special package includes six - yes 6 ! - feature - packed utilities  all for 1 special low price of only $ 29 . 99 !  this software will :  - protect your computer from unwanted and hazardous viruses  - help secure your private & valuable information  - allow you to transfer files and send e - mails safely  - backup your all your data quick and easily  - improve your pc ' s performance w / superior integral diagnostics !  - * * * * * you ' ll never have to take your pc to the repair shop again ! * * * * *  that ' s six , yes , - 6 - feature - packed utilities @ 1 great price ! ! !  a $ 300 + combined retail value yours only $ 29 . 99 ! ( limited time offer )  why so cheap you ask ? you are buying online wholesale ,  direct from the warehouse to you !  ~ ~ ~ and ~ ~ ~  for a limited time buy 2 of any software & get 1 free ! ! ! !  don ' t fall prey to destructive viruses or programs !  protect your computer and your valuable information and . . .  . . . click here to order now ! - > http : / / 61 . 151 . 247 . 39 / erik /  or cut & paste the above link ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ in your browser ' s url bar .  for more questions , or to order call us toll - free anytime !  1 - 8 0 0 - 8 6 1 - 1 4 8 1  we are strongly against sending unsolicited emails to those who do not wish to receive  our special mailings . you have opted - in to one or more of our affiliate sites requesting  to be notified of any special offers we may run from time to time . we also have attained  the services of an independent 3 rd party to overlook list management and removal  services . the list code in which you are registered is marked at the bottom of this email .  if you do not wish to receive further mailings ,  please click here - > http : / / 61 . 151 . 247 . 39 / erik / remove . asp to be removed from the list .  please accept our apologies if you have been sent this email in error . we honor all removal requests .  iaes ( international association of email security ) approved list . serial # 9 e 45 tyu 2 - ssi 3 usa\",1\n\"Subject: secretly record all internet activity on any computer . . . bfl  find out who they are chatting / e - mailing with all those hours !  is your spouse cheating online ?  are your kids talking to dangerous people on instant messenger ?  find out now ! - with big brother instant software download .  click on this link now to see actual screenshots and to order !  to be excluded from future contacts please visit :  http : / / 213 . 139 . 76 . 69 / php / remove . php  blee\",1\n\"Subject: $ 14 . 95 per year domain names  affordable domain registration for everyone  the new domain names are finally available to the general public at discount prices . now you can register one of the exciting new . biz or . info domain names , as well as the original . com and . net names for just $ 14 . 95 . these brand new domain extensions were recently approved by icann and have the same rights as the original . com and . net domain names . the biggest benefit is of - course that the . biz and . info domain names are currently more available . i . e . it will be much easier to register an attractive and easy - to - remember domain name for the same price . visit : http : / / www . domainsforeveryone . com / today for more info .  register your domain name today for just $ 14 . 95 at : http : / / www . domainsforeveryone . com / registration fees include full access to an easy - to - use control panel to manage your domain name in the future .  sincerely ,  domain administrator  domains for everyone  to remove your email address from further promotional mailings from this company , click here :  ( f 4 ) 5088 vukl 9 - 796 qvfq 4651 flcg 5 - 695 tl 29\",1\n\"Subject: failure notice  hi . this is the qmail - send program at mxo 0 . atlanticasp . net .  i ' m afraid i wasn ' t able to deliver your message to the following addresses .  this is a permanent error ; i ' ve given up . sorry it didn ' t work out .  :  user unknown .  - - - below this line is a copy of the message .  return - path :  received : ( qmail 14123 invoked from network ) ; 19 jul 2005 11 : 05 : 18 - 0000  received : from unknown ( helo mailwisconsin . com ) ( 61 . 74 . 129 . 210 )  by mxo 0 . atlanticasp . net with smtp ; 19 jul 2005 11 : 05 : 18 - 0000  received : from 205 . 214 . 42 . 66  ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ;  by mailwisconsin . com with http id j 87 gzo 24815387 ;  tue , 19 jul 2005 10 : 57 : 46 + 0000  message - id :  date : tue , 19 jul 2005 10 : 57 : 46 + 0000  subject : just to her . . .  from : \"\" barry castillo \"\"  to : info @ workforcemetrics . net  user - agent : squirrelmail / 1 . 4 . 3 a  x - mailer : squirrelmail / 1 . 4 . 3 a  mime - version : 1 . 0  content - type : text / html ; charset = iso - 8859 - 1  content - transfer - encoding : 8 bit  x - priority : 3 ( normal )  importance : normal  soft viagra at $ 1 . 62 per dose  ready to boost your sex life ? positive ?  time to do it right now !  order soft viagra at incredibly low prices  starting at $ 1 . 99 per dose ! unbeiivable !\",1\n\"Subject: first - level designers available for you  corporate image can say a lot of things about your  company . contemporary rhythm of life is too dynamic . sometimes it takes oniy  several seconds for  your company to be remembered or to be lost among competitors .  get your loqo , business stationery or website done  right now !  fast turnaround : you will see severai iogo variants  in three business days .  satisfaction quaranteed : we provide uniimited  amount of chanqes ; you can be sure : it will meet your needs and fit your  business .  fiexibie discounts : logo improvement , additional  formats , bulk orders , special packages .  creative design for  competitive price : have a look at it right now !\",1\n\"Subject: your online sales are low because you don _ t have enough visitors ?  submitting your website in search engines may increase  your online sales dramatically .  lf you invested time and money into your website , you  simply must submit your website  oniine otherwise it wili be invisibie virtualiy , which means efforts spent in vain .  if you want  people to know about your website and boost your revenues , the only way to do  that is to  make your site visibie in piaces  where people search for information , i . e .  submit your  website in muitiple search engines .  submit your website oniine  and watch visitors stream to your e - business .  best regards ,  kenethmckenzie _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: how to soak her in cum  \"\" my girlfriend and me have been really enjoying making  our own homemade erotic films . we get off on pretending  to be like porn stars even though it will only ever be  the two of us that see them . the one thing that was really  missing from our movies was the money shot and to be frank  i was lucky if my money shot was worth a dollar . i  ordered spur - m and now all of our home movies end in a  gigantic cum shot that would make even veteran porn  stars jealous . thanks spur - m for helping to spice up  our sex life ! \"\"  anthony , ky  \"\" spur - m really works . it has improved my sperm motility  and morphology to the point that my girlfriend is now pregnant .  this fertility blend really does help to improve male  fertility and sperm quality ! \"\"  adam j . , san francisco , usa  http : / / joaquin . confuting . com / spur / ? sheep\",1\n\"Subject: all graphics software available , cheap oem versions .  good morning ,  we we offer latest oem packages of all graphics and publishinq software from corel , macromedia , adobe and others .  $ 80 adobe photoshop 8 . 0 / cs  $ 140 macromedia studio mx 2004  $ 120 adobe acrobat 7 . 0 professional  $ 150 adobe premiere pro 1 . 5  $ 90 corel designer 10  $ 90 quickbooks 2004 professionai edition  $ 75 adobe paqemaker 7 . 0  $ 70 xara x vl . 1  $ 75 adobe audition 1 . 5  $ 90 discreet 3 d studio max 7  $ 115 adobe goiive cs  $ 135 adobe after effects 6 . 5 standard  $ 45 adobe premiere elements  $ 125 corel painter lx  $ 80 adobe lliustrator cs  $ 80 adobe indesign cs  $ 240 adobe creative suite  $ 140 adobe framemaker 7 . 1  $ 50 uiead cooi 3 d production studio 1 . 0 . 1  $ 90 alias motion buiider 6 professionai  $ 30 quicken 2004 premier home & biz  $ 30 adobe photoshop elements 3 . 0  $ 110 adobe premiere pro 7 . 0  learn more . . .  sincerely ,  aima \",1\n\"Subject: lowest mortgage loan rates vkp  commentary  it is time to refinance !  your credit does not matter , we can approve anyone .  now is the time to let some of the top mortgage companies  in the country compete for your business .  if you have good credit we will give you the most amazing  rates available anywhere !  if you have poor credit , don ' t worry ! we can still refinance  you with the most competitive rates in the industry !  let us put our expertise to work for you !  http : / / 64 . 21 . 33 . 238 / 74205 /  or site 2  http : / / 64 . 21 . 33 . 238 / 74206 /  erase  http : / / 64 . 21 . 33 . 238 / optout . htm\",1\n\"Subject: winning notification ! ! ! ! ! ! ! ! ! ! ! !  from : the director  european prize award dept  ref : el 3 / 9318 / 04  batch : 8 / 163 / el .  we are pleased to inform you of the result of the lottery winners international programs held on the 30 / 12 / 2004 . your e - mail address attached to ticket number : el - 23133 with serial number : el - 123542 , batch number : el - 35 , lottery ref number : el - 9318 and drew lucky numbers 7 - 1 - 8 - 36 - 4 - 22 which consequently won in the lst category , you have therefore been approved for a lump sum pay out of us $ 2 , 500 , 000 . 00 ( two million , five hundred thousand united states dollars ) .  congratulations ! ! !  due to mix up of some numbers and names , we ask that you keep your winning information confidential until your claims has been processed and your money remitted to you . this is part of our security protocol to avoid double claiming and unwarranted abuse of this program by some participants . all participants were selected through a computer ballot  system drawn from over 40 , 000 company and 20 , 000 , 000  individual email addresses and names from all over the world .  this promotional program takes place every year . this lottery was promoted and sponsored by group of successful electronic dealers . we hope with part of your winning , you will take part in our next year us $ 20 million international lottery .  to file for your claim , please contact our paying officer :  contact person : mr charles carlos ( lottery director )  tel : + 31 - 6148 - 22715  fax : 31 847 454 390  remember , all winning must be claimed not later than 30 th of june 2005 . after this date all unclaimed funds will be included in the next stake . please note in order to avoid unnecessary delays and complications please remember to quote your reference number and batch numbers in all correspondence .  furthermore , should there be any change of address do inform our agent as soon as possible . congratulations once more from our members of staff and thank you for being part of our promotional program .  note : anybody under the age of 18 is automatically disqualified .  yours sincerely ,  mrs . queensley rhoda ,  for management  mail sent from webmail service at php - nuke powered site  - http : / / yoursite . com\",1\n\"Subject: de la part des enfants ama  rue des martyrs , avenue delafosse  01 b p 124 abidjan 01  republique de cote d ' ivoire  contact : ( 00225 ) 05 80 75 51  proposition d ? affaires  bonjour ,  avec respect et humilit? , j ? ai d?cid? de vous informer  d ? une proposition d ? affaires qui sera tr?s b?n?fique  pour nous deux .  je me nomme ama marie , la fille de feu  chef ama thomas , assassin? par les forces rebelles .  avant sa mort , mon p?re ?tait un homme d ' affaire et directeur de la soci?t? de caf? - cacao .  deux jours avant son assassinat , mon p?re  s ? est arrang? pour nous remettre mon fr?re et moi  des documents qui prouve qu ? il a d?pos? une somme d ? argent d ? une valeur ( de 5 million de dollars ) dans une soci?t? de banque ici en cote d ' ivoire .  nous voulons prendre possession de cet argent qui fait partir de notre h?ritage .  mais pour le faire j ? aurais besoin de la collaboration d ? un partenaire ?tranger .  et c ? est ce partenaire qui pourra m ' aider .  ainsi je pourrais , venir dans votre pays pour  continuer mes ?tudes .  n ? ayez pas d ? inqui?tude , car tous les documents  relatifs ? ce tr?sor sont entre mes mains . de m?me que  l ? adresse de la soci?t? de banque . j ? attends  seulement votre accord pour vous les remettre .  si tout se passe comme pr?vu vous recevez 15 % de la  somme totale . nous nous sommes mis d ? accord aussi  pour vous donner 5 % de la valeur du tr?sor pour  rembourser les d?penses que vous aurez engag?s pendant  la transaction .  maintenant que vous avez compris le sens de notre  proposition , je souhaite que tout se passe vite . car  le temps n ? est pas ? notre faveur . ce que nous  exigeons de vous c ? est la fid?lit? et la confiance .  ama marie et son fr?re ama jules .  merci que dieu vous benisse  contact : ( 00225 ) 05 80 75 51\",1\n\"Subject: financial freedom  dear friend ,  how would you like to make $ 50 , 000 in the next 90 days ? sounds impossible ?  i guarantee that it ' s true , and you can do it . i ' m sure you would like an  extra $ 50 , 000 to spend . for more information , please visit the website  below .  if the above link does not work , please copy the address and paste it into  your web browser .  at the very least take a minute to look at what is on the site , it may  change your life forever .  note : this is not an unsolicited e - mail . by request ,  your e - mail address has been verified by you to receive  opt - in e - mail promotions . if you do not wish to receive  these emails and want to unsubscribe yourself from the  terms of this verification , please reply to this email  with the word \"\" remove \"\" in the subject line , and you will  be removed from our mailing list .\",1\n\"Subject: have skin like a model  we ' ll  give you your first tube of body sculpture free ! !  let us bill your credit card for $ 5 . 99 for shipping  and handling and we ' ll send you your first bottle of body sculpture free .  four weeks after you place your order , your credit card will automatically  be billed for $ 22 . 95 plus $ 5 . 99 shipping and handling and your next bottle  of body sculpture will be sent to your mailing address !  click  here !  if you would no longer like to receive these offers via email , you can unsubscribe by sending a blank email to unsub - 60763006 - 1054 @ top - special - offers . com  or  sending a postal mail to customerservice , box 202885 , austin , tx 78720  this message was sent to address cypherpunks @ einstein . ssz . com  - - - -  this sf . net email is sponsored by : thinkgeek  welcome to geek heaven .  http : / / thinkgeek . com / sf  spamassassin - sightings mailing list \",1\n\"Subject: new penis enlargement patches !  new penis enlargement patches !  http : / / www . gretan . com / ss /  he plants trees to benefit another generation .  how unhappy is he who cannot forgive himself .  convinced myself , i seek not to convince .  he hath eaten me out of house and home .  petty fears and petty pleasures are but the shadow of reality .\",1\n\"Subject: get big money at this casino site  click here to get your free  $ 500  $ $ $ maxim sportsbook and casino are proud to announce  that you get up to $ 500 with every new casino and sportsbook account  created $ $ $  $ $ $ we will also honour a free 2 - 3 night vacation for you  and a loved one . that ' s right ! . . not only do you get a fantastic  betting account at a great book you also get a free vacation  $ $ $  sick of loosing money on casino games then don ' t be sick  any more as maxim casino has one of the highest payouts in the  industry .  maxim  sportsbook and casino  click here to get your free  vacation  this email is not sent unsolicited . you opted - in with cnn - si . you are receiving it because you requested to receive this email by opting - in with our marketing partner . you will receive notices of exciting offers , products , and other options ! however , we are committed to only sending to those people that desire these offers . if you do not wish to receive such offers  click here . or paste the following into any browser : http : / / 65 . 162 . 84 . 5 / perl / unsubscribe . pl ? s = to remove your email name from our list . you may contact our company by mail at 1323 s . e . 17 th street , suite number 345 , ft . lauderdale , fl 33316 \",1\n\"Subject: localized software , all languages available .  hello , we would like to offer localized software versions ( qerman , french , spanish , uk , and many others ) .  all listed software is availabie for immediate download !  no need to wait 2 - 3 week for cd delivery !  just few examples :  - norton internet security pro 2005 - $ 29 . 95  - windows xp professional with sp 2 fuli version - $ 59 . 95  - corei draw graphics suite 12 - $ 49 . 95  - dreamweaver mx 2004 ( homesite 5 . 5 including ) - $ 39 . 95  - macromedia studio mx 2004 - $ 119 . 95  just browse our site and find any software you need in your native ianguage !  best reqards ,  katharina \",1\n\"Subject: ebay notice - your ebay account has been stolen !  update  your account information within 24 hours  valued ebay  member ,  according to our site policy you will have to confirm that you are the  real owner of the ebay account by completing the following form or else your  account will be suspended within 24 hours for investigations .  never share your  ebay password to anyone !  establish your proof of  identity with id verify ( free of charge ) - an easy way to help others trust  you as their trading partner . the process takes about 5 minutes to complete  and involves updating your ebay information . when you ' re successfully  verified , you will receive an id verify icon  in your feedback profile . currently , the service is only available to  residents of the united states and u . s . territories ( puerto rico , us virgin  islands and guam . )  to update your ebay records  click here : \",1\n\"Subject: cc prevents diesel fuel gelling 3750 r - 5  1075 rxoo 9 - 26 ll 1  increase your gas mileage  it ' s easy and fast  anyone can install  works on any automobile engine  improves engine performance  tested by a recognized epa testing laboratory  guaranteed 100 %  joel 94515085 @ yahoo . com \",1\n\"Subject: tetm : 22 , interest : 3 . 55 %  ha http : / / voj 2 hcdc . rote . espoeiur . us / ? 21 vtmhuy\",1\n\"Subject: medzz for your life  how to save on your medlca furthest tions over 70 % .  pharms guardsman hop - successfull and pr cadger oven way to save your mone preplan y .  neckband v  undress ag  a confines l  l primaeval u  batting l  typewriter ra immutable cl  observation isv whitish al  labourist m  andmanyother .  best prlce paterae s .  worldwide s revulsion hlpplng .  easy order fo hospitality rm .  total confiden haricotbean tiaiity .  2 underrate 50 , 000 satisfied customers .  order t pistil oday and save !\",1\n\"Subject: younger and healthier with ultimate - hghl 7283  as seen on nbc , cbs , cnn , and even oprah ! the health discovery that actuallyreverses aging while burning fat , without dieting or exercise ! this provendiscovery has even been reported on by the new england journal of medicine . forget aging and dieting forever ! and it ' s guaranteed !  click below to enter our web site :  http : / / www . freehostchina . com / washgh /  would you like to lose weight while you sleep !  no dieting !  no hunger pains !  no cravings !  no strenuous exercise !  change your life forever !  100 % guaranteed !  1 . body fat loss 82 % improvement .  2 . wrinkle reduction 61 % improvement .  3 . energy level 84 % improvement .  4 . muscle strength 88 % improvement .  5 . sexual potency 75 % improvement .  6 . emotional stability 67 % improvement .  7 . memory 62 % improvement .  click below to enter our web site :  http : / / www . freehostchina . com / washgh /  if you want to get removed  from our list please email at - standardoptout @ x 263 . net ( subject = remove \"\" your email \"\" ) \",1\n\"Subject: mail delivery failed : returning message to sender  this message was created automatically by mail delivery software .  a message that you sent could not be delivered to one or more of its  recipients . this is a permanent error . the following address ( es ) failed :  lochnessclansman @ aol . com  ( generated from info @ stayatlochness . com )  smtp error from remote mail server after end of data :  host mailin - 03 . mx . aol . com [ 205 . 188 . 158 . 121 ] : 554 - :  ( hvu : bl ) http : / / postmaster . info . aol . com / errors / 554 hvubl . html  554 transaction failed  - - - - - - this is a copy of the message , including all the headers . - - - - - -  return - path :  received : from [ 222 . 108 . 233 . 182 ] ( helo = mailwisconsin . com )  by uk 2 mxarray 4 . uk 2 . net with smtp ( exim 4 . 52 )  id ldupsa - 0001 oe - vq  for info @ stayatlochness . com ; tue , 19 jul 2005 12 : 02 : 51 + 0100  received : from 205 . 214 . 42 . 66  ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ;  by mailwisconsin . com with http id j 87 gzo 24815476 ;  tue , 19 jul 2005 10 : 57 : 46 + 0000  message - id :  date : tue , 19 jul 2005 10 : 57 : 46 + 0000  from : \"\" barry castillo \"\"  to : info @ stayatlochness . com  user - agent : squirrelmail / 1 . 4 . 3 a  x - mailer : squirrelmail / 1 . 4 . 3 a  mime - version : 1 . 0  x - priority : 3 ( normal )  importance : normal  x - sa - exim - connect - ip : 222 . 108 . 233 . 182  x - sa - exim - mail - from : projecthoneypot @ projecthoneypot . org  subject : just to her . . .  content - type : text / html ; charset = iso - 8859 - 1  content - transfer - encoding : 8 bit  x - spam - checker - version : spamassassin 3 . 0 . 4 ( 2005 - 06 - 05 ) on  uk 2 mxserver 4 - 9 . uk 2 . net  x - spam - level : * * *  x - spam - status : no , score = 3 . 3 required = 99 . 0 tests = drugs _ erectile , drug _ dosage ,  html _ 50 _ 60 , html _ message , info _ tld , mime _ html _ only autolearn = no  version = 3 . 0 . 4  x - sa - exim - version : 4 . 0 ( built sat , 24 jul 2004 09 : 53 : 34 + 0200 )  x - sa - exim - scanned : yes ( on uk 2 mxarray 4 . uk 2 . net )  soft viagra at $ 1 . 62 per dose  ready to boost your sex life ? positive ?  time to do it right now !  order soft viagra at incredibly low prices  starting at $ 1 . 99 per dose ! unbeiivable !\",1\n\"Subject: clear benefits of creative design  lt is really hard to recollect a company : the  market is full of suqgestions and the information isoverwhelminq ; but a good  catchy logo , stylish statlonery and outstandlng webslte  wili make the task much easier .  we do not promise that having ordered a ioqo your  company will automaticaiiy become a world ieader : it isquite ciear that  without qood products , effective business organization and practicable aim it  will be hotat nowadays market ; but we do promise that your marketing efforts  will become much more effective . here is the list of clear  benefits : creativeness : hand - made , original logos , specially done  to reflect your distinctive company image . convenience : logo and stationery  are provided in all formats ; easy - to - use content management system letsyou  change your website content and even its structure . promptness : you  will see logo drafts within three business days . affordability : your  marketing break - through shouldn ' t make gaps in your budget . 100 % satisfaction  guaranteed : we provide unlimited amount of changes with no extra fees for you to  be surethat you will love the result of this collaboration . have a look at our  portfolio _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: mail delivery failed : returning message to sender  this message was created automatically by mail delivery software .  a message that you sent could not be delivered to one or more of its  recipients . this is a permanent error . the following address ( es ) failed :  rrrhythms @ aol . com  smtp error from remote mailer after end of data :  host mailin - 01 . mx . aol . com [ 205 . 188 . 159 . 57 ] : 554 - :  ( hvu : bl ) http : / / postmaster . info . aol . com / errors / 554 hvubl . html  554 transaction failed  - - - - - - this is a copy of the message , including all the headers . - - - - - -  return - path :  received : from mailbox . hrnoc . net ( [ 216 . 120 . 225 . 22 ] )  by relay 3 . hrnoc . net with smtp ( exim 4 . 32 ; freebsd )  id ldupna - 000 nel - lk  for rrrhythms @ aol . com ; tue , 19 jul 2005 06 : 57 : 40 - 0400  received : ( qmail 59909 invoked by uid 89 ) ; 19 jul 2005 10 : 57 : 46 - 0000  delivered - to : info @ pasentertainment . com  received : ( qmail 59899 invoked by uid 89 ) ; 19 jul 2005 10 : 57 : 46 - 0000  received : from mxl . hrnoc . net ( 216 . 120 . 232 . 254 )  by mailbox . hrnoc . net with qmtp ; 19 jul 2005 10 : 57 : 46 - 0000  received : ( qmail 9603 invoked by uid 513 ) ; 19 jul 2005 10 : 57 : 44 - 0000  received : from projecthoneypot @ projecthoneypot . org by mxl . hrnoc . net by uid 503 with qmail - scanner - 1 . 20 st  ( clamuko : 0 . 70 . spamassassin : 2 . 63 . clear : rc : 0 ( 218 . 43 . 171 . 70 ) : sa : 0 ( 1 . 6 / 15 . 0 ) : .  processed in 0 . 802258 secs ) ; 19 jul 2005 10 : 57 : 44 - 0000  x - spam - status : no , hits = 1 . 6 required = 15 . 0  x - qmail - scanner - mail - from : projecthoneypot @ projecthoneypot . org via mxl . hrnoc . net  x - qmail - scanner : 1 . 20 st ( clear : rc : 0 ( 218 . 43 . 171 . 70 ) : sa : 0 ( 1 . 6 / 15 . 0 ) : . processed in 0 . 802258 secs )  received : from pl 070 - ipado 2 sinnagasak . nagasaki . ocn . ne . jp ( helo mailwisconsin . com ) ( 218 . 43 . 171 . 70 )  by mxl . hrnoc . net with smtp ; 19 jul 2005 10 : 57 : 43 - 0000  received : from 205 . 214 . 42 . 66  ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ;  by mailwisconsin . com with http id j 87 gzo 24815595 ;  tue , 19 jul 2005 10 : 57 : 46 + 0000  message - id :  date : tue , 19 jul 2005 10 : 57 : 46 + 0000  subject : just to her . . .  from : \"\" barry castillo \"\"  to : info @ pasentertainment . com  user - agent : squirrelmail / 1 . 4 . 3 a  x - mailer : squirrelmail / 1 . 4 . 3 a  mime - version : 1 . 0  content - type : text / html ; charset = iso - 8859 - 1  content - transfer - encoding : 8 bit  x - priority : 3 ( normal )  importance : normal  x - hr - scan - signature : 2 fbcfbdl 81 f 732 eb 7 bl 2270 bfad 389 b 6  x - hr - sa - score : ( )  x - hr - status : hr _ avscanned - ( projecthoneypot @ projecthoneypot . org / 216 . 120 . 225 . 22 )  soft viagra at $ 1 . 62 per dose  ready to boost your sex life ? positive ?  time to do it right now !  order soft viagra at incredibly low prices  starting at $ 1 . 99 per dose ! unbeiivable !\",1\n\"Subject: http : / / ira . abramov . org  hello ,  i have visited ira . abramov . org and noticed that your website is not listed on some search engines . i am sure that through our service the number of people who visit your website will definitely increase . seekercenter is a unique technology that instantly submits your website to over 500 , 000 search engines and directories - - a really low - cost and effective way to advertise your site . for more details please go to seekercenter . net .  give your website maximum exposure today !  looking forward to hearing from you .  best regards ,  vanessa lintner  sales marketing  www . seekercenter . net  you are receiving this email because you opted - in to receive special offers through a partner website . if you feel that you received this email in error or do not wish to receive additional special offers , please enter your email address here and click the button of remove me : \",1\n\"Subject: graphic design from logos to websites  corporate image can say a lot of things about your  company . contemporary rhythm of life is too dynamic . sometimes it takes oniy  several seconds for  your company to be remembered or to be lost among competitors .  get your loqo , business stationery or website done  right now !  fast turnaround : you wiil see severai logo variants  in three business days .  satisfaction guaranteed : we provide uniimited  amount of chanqes ; you can be sure : it will meet your needs and fit your  business .  fiexible discounts : loqo improvement , additional  formats , bulk orders , special packages .  creative design for  competitive price : have a look at it right now !\",1\n\"Subject: wish i ' dd tried sooner  how to save on your supper medlcations over 70 % .  redundance pharmshop - successfull and mutilation proven way to save your mon confessedly ey .  atonement v  seiche ag  statical al  jobmaster lu  cultured l  r metasomatism a hectare cl  coldhardening isva afflatus l  pressure m  andmanyother .  best p underbuy rlces .  worldwide shlpplng woodengraver .  easy infestation order form .  total con arcuate fidentiaiity .  2 versification 50 , 000 satisfied customers .  order flounder today and save !\",1\n\"Subject: clear benefits of creative design  lt is really hard to recollect a company : the  market is full of suqgestions and the information isoverwheiming ; but a good  catchy logo , styllsh statlonery and outstandlng webslte  wili make the task much easier .  we do not promise that havinq ordered a ioqo your  company will automaticaliy become a worid ieader : it isguite clear that  without qood products , effective business organization and practicable aim it  will be hotat nowadays market ; but we do promise that your marketing efforts  will become much more effective . here is the list of clear  benefits : creativeness : hand - made , original logos , specially done  to reflect your distinctive company image . convenience : logo and stationery  are provided in all formats ; easy - to - use content management system letsyou  change your website content and even its structure . promptness : you  will see logo drafts within three business days . affordability : your  marketing break - through shouldn ' t make gaps in your budget . 100 % satisfaction  guaranteed : we provide unlimited amount of changes with no extra fees for you to  be surethat you will love the result of this collaboration . have a look at our  portfolio _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: save your money by getting an oem software !  need in software for your pc ? just visit our site , we might have what you need . . .  best regards ,  johnsie \",1\n\"Subject: http : / / www . efi . ie  hi  i visited http : / / www . efi . ie , and  noticed that you ' re not listed on some search engines ! i think we can offer  you a service which can help you increase traffic and the number of visitors  to your website .  i would like to introduce you to trafficmagnet . net . we offer a unique technology  that will submit your website to over 300 , 000 search engines and directories  every month .  you ' ll be surprised by the low cost , and by how effective this website promotion  method can be .  to find out more about trafficmagnet and the cost for submitting your website  to over 300 , 000 search engines and directories , visit www . trafficmagnet . net .  i would love to hear from you .  best regards ,  christine hall  sales and marketing  e - mail : christine @ trafficmagnet . net  http : / / www . trafficmagnet . net \",1\n\"Subject: localized software , all languages available .  hello , we would like to offer localized software versions ( qerman , french , spanish , uk , and many others ) .  ali listed software is availabie for immediate downioad !  no need to wait 2 - 3 week for cd deiivery !  just few exampies :  - norton internet security pro 2005 - $ 29 . 95  - windows xp professionai with sp 2 fuli version - $ 59 . 95  - corei draw graphics suite 12 - $ 49 . 95  - dreamweaver mx 2004 ( homesite 5 . 5 includinq ) - $ 39 . 95  - macromedia studio mx 2004 - $ 119 . 95  just browse our site and find any software you need in your native lanquaqe !  best reqards ,  lauralee \",1\n\"Subject: i never sent you this - keep it hush hush ! : ) xgab  online credit breakthroughrepair your credit online ! 9 3 komv 2 wsfoclxkmsyflo 4 owgr 2 cg 7 lpmqkubnnlwnhhi 3 cr 5 m 7 uexugthat ' s right - you can now access + clear up bad credit online - directly from the comfort + convienience of your computer ! watch your credit daily , with real time updates get the information you need quickly and efficently to remove negative credit items from your report ! click here for more informationthank you - the web credit ( tm ) team ! 9 3 komv 2 wsfoclxkmsyflo 4 owgr 2 cg 7 lpmqkubnnlwnhhi 3 cr 5 m 7 uexug\",1\n\"Subject: can people find your web site ?  expedite 245 west roosevelt rd . building 15 , ste . 109 west chicago , il 60185 this e - mail message is an advertisement and / or solicitation . \",1\n\"Subject: have you checked the latest - weekly special yet ?  desire to secure effective alleviations at minor costs ? can i s . ave on  rxmedications like others ?  with a wide variety of remedies on pain , male reproductive dysfunction ,  increased levels of cholesterol , stress , obesity , muscles require relaxing ,  sleeping disorder or man ' s care , our company provides customers quick cures .  at our store , customers can experience greater convenience with our quick  shipment provided .  make sure you check our site for the current weekly highlighted items .  it is a simple choice for quick and professional case profile review .  gratis !  http : / / int . t . newworldtoenter . com / gvj /  all the bestddeals are avail - able at our chemist - site ! have a check !  ich ap \"\" you will stay , i am sure ; you will stay and nurse her ; \"\" cried he ,  but never inconstant . you alone have brought me to bath .  artments are usually announced i n manuscript , as being to let . )  we were greatly overcome a turning to her and speaking with a glow , and yet  a gentleness ,  t parting ; and if ever 7 , in my life , i have had a v 2 oid made in my  heart , i h ad on\",1\n\"Subject: failure notice  hi . this is the qmail - send program at backo 7 . freeler . ilcampo . com .  i ' m afraid i wasn ' t able to deliver your message to the following addresses .  this is a permanent error ; i ' ve given up . sorry it didn ' t work out .  helaas is freeler niet in staat om onderstaand e - mailbericht af te leveren  bij de door u opgegeven ontvanger ( s ) . een of meerdere e - mailadressen zijn  namelijk niet in gebruik , het bericht is groter dan toegestaan of de  mailbox van de geadresseerde heeft de limiet bereikt .  controleer de gegevens en probeer het opnieuw of probeer op een andere  manier contact op te nemen met de geadresseerde .  :  the users mailfolder is over the allowed quota ( size ) .  - - - below this line is a copy of the message .  return - path :  received : ( qmail 4916 invoked from network ) ; 19 jul 2005 17 : 54 : 21 - 0000  received : from unknown ( [ 172 . 16 . 4 . 16 ] )  ( envelope - sender )  by backo 7 . freeler . nl ( qmail - ldap - 1 . 03 ) with qmqp  for ; 19 jul 2005 17 : 54 : 21 - 0000  delivered - to : clusterhost smtpo 7 . freeler . nl s . de . haano 5 @ freeler . nl  received : ( qmail 21982 invoked from network ) ; 19 jul 2005 17 : 54 : 21 - 0000  received : from unknown ( helo wng - 04 . evisp . enertel . nl ) ( [ 213 . 218 . 77 . 204 ] )  ( envelope - sender )  by smtpo 7 . freeler . nl ( qmail - ldap - 1 . 03 ) with des - cbc 3 - sha encrypted smtp  for ; 19 jul 2005 17 : 54 : 21 - 0000  received : from buffer - 01 . evisp . enertel . nl ( buffer - 01 . evisp . enertel . nl [ 213 . 218 . 68 . 24 ] ( may be forged ) )  by wng - 04 . evisp . enertel . nl ( 8 . 12 . 11 / 8 . 12 . 11 ) with esmtp id j 6 jhrsn 4031476  for ; tue , 19 jul 2005 19 : 54 : 21 + 0200  received : from mailwisconsin . com ( [ 203 . 128 . 23 . 64 ] )  by buffer - 01 . evisp . enertel . nl ( 8 . 13 . 0 / 8 . 13 . 0 ) with smtp id j 6 jaxw 82023290  for ; tue , 19 jul 2005 12 : 59 : 43 + 0200 ( cest )  received : from 205 . 214 . 42 . 66  ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ;  by mailwisconsin . com with http id j 87 gzo 09360007 ;  tue , 19 jul 2005 10 : 57 : 46 + 0000  message - id :  date : tue , 19 jul 2005 10 : 57 : 46 + 0000  subject : just to her . . .  from : \"\" barry castillo \"\"  to : s . de . haano 5 @ freeler . nl  user - agent : squirrelmail / 1 . 4 . 3 a  x - mailer : squirrelmail / 1 . 4 . 3 a  mime - version : 1 . 0  content - type : text / html ; charset = iso - 8859 - 1  content - transfer - encoding : 8 bit  x - priority : 3 ( normal )  importance : normal  soft viagra at $ 1 . 62 per dose  ready to boost your sex life ? positive ?  time to do it right now !  order soft viagra at incredibly low prices  starting at $ 1 . 99 per dose ! unbelivabie !\",1\n\"Subject: clear benefits of creative design  lt is really hard to recollect a company : the  market is full of suqgestions and the information isoverwhelming ; but a good  catchy logo , stylish stationery and outstanding webslte  wili make the task much easier .  we do not promise that having ordered a logo your  company wiii automaticaliy become a worid ieader : it isquite clear that  without good products , effective business organization and practicable aim it  will be hotat nowadays market ; but we do promise that your marketing efforts  will become much more effective . here is the list of clear  benefits : creativeness : hand - made , original logos , specially done  to reflect your distinctive company image . convenience : logo and stationery  are provided in all formats ; easy - to - use content management system letsyou  change your website content and even its structure . promptness : you  will see logo drafts within three business days . affordability : your  marketing break - through shouldn ' t make gaps in your budget . 100 % satisfaction  guaranteed : we provide unlimited amount of changes with no extra fees for you to  be surethat you will love the result of this collaboration . have a look at our  portfolio _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: an invitation from lisa @ freightmart . com  to be removed from any future offers , simply click here !  for more info , click here !  http : / / xent . com / mailman / listinfo / fork\",1\n\"Subject: holidays are coming ?  help wanted . we are a 14 year old fortune 500 company , that is  growing at a tremendous rate . we are looking for individuals who  want to work from home .  this is an opportunity to make an excellent income . no experience  is required . we will train you .  so if you are looking to be employed from home with a career that has  vast opportunities , then go :  http : / / ter . netblah . com : 8080  we are looking for energetic and self motivated people . if that is you  than click on the link and fill out the form , and one of our  employment specialist will contact you .  to be removed from our link simple go to :  http : / / ter . netblah . com : 8080 / remove . html \",1\n\"Subject: we focus on oem and retail box for microsoft , adobe , macromedia , corel , symantec and more .  software for system builders , resellers , and hardware purchasers only .  the only thing that comes to a sleeping man are dreams .  spinnin ' a rope is fun if your neck ain ' t in it .\",1\n\"Subject: fyi  barclays bank plc  63 st . mary axe  london ec 3 a 8 le  email : timkennedyo 03 @ netscape . net  fax : + 447092868687  i am mr . tim kennedy , senior credit officer , barclays bank plc london . i am writing following an opportunity in my office that will be of immense benefit to both of us .  in my department we discovered an abandoned sum of 12 . 5 million british pounds sterling ( twelve million five hundred thousand british pounds sterling ) in an account that belongs to one of our foreign customers late mr . morris thompson an american who unfortunately lost his life in the plane crash of alaska airlines flight 261 which crashed on january 31 2000 , including his wife and only daughter . you shall read more about the crash on visiting this website .  since we got information about his death , we have been expecting his next of kin or relatives to come over and claim his money because the bank cannot release the funds unless somebody applies for it as next of kin or relation to the deceased as indicated in our banking guidelines .  unfortunately i learnt that his supposed next of kin being his only daughter died along with him in the plane crash leaving nobody with the knowledge of this fund behind for the claim . it is therefore upon this discovery that i and two other officials in this department now decided to do business with you and release the money to you as the next of kin or beneficiary of the funds for safe keeping and subsequent disbursement since nobody is coming for it and we don ' t want this money to go back into government treasury as unclaimed bill .  we agreed that 20 % of this money would be for you as foreign partner , while the balance will be for my colleagues and i . we will visit your country for the disbursement according to the percentages indicated above once this money gets into your account . please be honest to me as trust is our watchword in this transaction .  note that this transaction is confidential and risk free . as soon as you receive this mail you should contact me by return mail whether or not you are willing to enter into this deal . in the event you are not interested , i sincerely ask that you disregard this email and tell no one about it . i am very careful on truncating my banking career should you mention this to someone else . i hope you can be trusted in this regard .  please note that all necessary arrangement for the smooth release of these funds to you has been finalized . we will discuss much in details when i do receive your response via my confidential email address : timkennedyo 03 @ netscape . net and fax number stated below .  please in your response include your telephone and fax numbers for a better communication between us .  best regards  tim kennedy  email : timkennedyo 03 @ netscape . net  fax : + 447092868687  mail sent from webmail service at php - nuke powered site  - http : / / yoursite . com\",1\n\"Subject: visual identity and logo now  working on your company ' s image ? start with a  visual identity a key to the first good impression . we are here to  help you ! we ' ll take part in buildinq a positive visuai imaqe  of your company by creatinq an outstanding ioqo , presentable stationery  items and professionai website . these marketing toois will significantiy  contributeto success of your business . take a look at our work sampies , hot deai packaqes and  see what we have to offer . we work for you !  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: domain names now only $ 14 . 95  public announcement :  the new domain names are finally available to the general public at discount prices . now you can register one of the exciting new . biz or . info domain names , as well as the original . com and . net names for just $ 14 . 95 . these brand new domain extensions were recently approved by icann and have the same rights as the original . com and . net domain names . the biggest benefit is of - course that the . biz and . info domain names are currently more available . i . e . it will be much easier to register an attractive and easy - to - remember domain name for the same price . visit : http : / / www . affordable - domains . com today for more info .  register your domain name today for just $ 14 . 95 at : http : / / www . affordable - domains . com / registration fees include full access to an easy - to - use control panel to manage your domain name in the future .  sincerely ,  domain administrator  affordable domains  to remove your email address from further promotional mailings from this company , click here :  45 \",1\n\"Subject: pleasure your women - size does matter !  expand your penis 20 % larger in weeks  http : / / www . okmpoi . com / ss /  the greeks invented logic but were not fooled by it .  to be feared is much safer then to be loved .  it is a youthful failing to be unable to control one ' s impulses .  the strictest law sometimes becomes the severest injustice .  tears at times have all the weight of speech .\",1\n\"Subject: viagra helps you have great sex !  having problems in bed ? we can help !  a suspicious mind always looks on the black side of things .  in order to succeed , we must first believe that we can .  well behaved women seldom make history .  most conversations are simply monologues delivered in the presence of witnesses .\",1\n\"Subject: come on ! it ' s fun and easy ! !  * * * please read this email to the end * * *  try it . just for fun . it will cost you 25 $ to earn at least thousands of dollars ! ! ! this thing  is legal because you are buying and selling something of value : marketing reports .  there is my true story .  i received by email the instructions include in this letter . it interests me because the  system was quite simple . in the list of people selling the reports ( as you will see above ) ,  there was a guy living not so far . i searched for his phone number and i called him . i just  wanted to know if this system was really working . he told me his business was going  very well and he was receiving from 50 $ to 150 $ in cash everyday ! that ' s why i went  into this thing !  thank ' s to the computer age and the internet !  be an internet millionaire like others within a year ! ! !  before you say ' ' bull ' ' , please read the following . this is the letter you have been hearing  about on the news lately . due to the popularity of this letter on the internet , a national  weekly news program recently devoted an entire show to the investigation of this program  described below , to see if it really can make people money . the show also investigated  whether or not the program was legal .  their findings proved once and for all that there are ' ' absolutely no laws prohibiting the  participation in the program and if people can \"\" follow the simple instruction \"\" they are  bound to make some mega bucks with only $ 25 out of pocket cost ' ' .  = = print this now for your future reference = =  if you would like to make at least $ 500 , 000 every 4 to 5 months easily and comfortably ,  please read the following . . . then read it again and again ! ! !  follow the simple instruction below and  your financial dreams will come true , guaranteed !  instructions :  = = = = = order all 5 reports shown on the list below = = = = =  for each report , send $ 5 cash , the name & number of the report you are  ordering and your e - mail address to the person whose name appears on  that list next to the report . make sure your return address is on your  envelope top left corner in case of any mail problems .  = = = when you place your order , make sure = = =  = = = you order each of the 5 reports ! = = =  you will need all 5 reports so that you can save them on your computer and resell them .  your total cost $ 5 x 5 = $ 25 . 00 .  within a few days you will receive , via e - mail , each of the 5 reports from these 5 different  individuals . save them on your computer so they will be accessible for you to send to the  1 , 000 ' s of people who will order them from you . also make a floppy of these reports and  keep it on your desk in case something happens to your computer .  important - do not alter the names of the people who are listed next to each report ,  or their sequence on the list , in any way other than what is instructed below in step ' ' 1  through 6 ' ' or you will loose out on the majority of your profits . once you understand the  way this works , you will also see how it does not work if you change it .  remember , this method has been tested , and if you alter it , it will not work ! ! ! people  have tried to put their friends / relatives names on all five thinking they could get all the  money . but it does not work this way . believe us , some have tried to be greedy and then  nothing happened . so do not try to change anything other than what is instructed .  because if you do , it will not work for you . remember , honesty reaps the reward ! ! !  this is a legitimate business . you are offering a product for sale and getting paid for it .  treat it as such and you will be very profitable in a short period of time .  1 . . after you have ordered all 5 reports , take this advertisement and remove the name  & address of the person in report # 5 . this person has made it through the cycle and  is no doubt counting their fortune .  2 . . move the name & address in report # 4 down to report # 5 .  3 . . move the name & address in report # 3 down to report # 4 .  4 . . move the name & address in report # 2 down to report # 3 .  5 . . move the name & address in report # 1 down to report # 2  6 . . . . insert your name & address in the report # 1 position .  please make sure you copy every name & address accurately ! this is critical  to your success .  take this entire letter , with the modified list of names , and save it on your computer . do  not make any other changes .  save this on a disk as well just in case if you loose any data . to assist you with  marketing your business on the internet , the 5 reports you purchase will provide you with  invaluable marketing information which includes how to send bulk e - mails legally , where  to find thousands of free classified ads and much more . there are 2 primary methods to  get this venture going :  method # 1 : by sending bulk e - mail legally  let ' s say that you decide to start small , just to see how it goes , and we will assume you  and those involved send out only 5 , 000 e - mails each . let ' s also assume that the mailing  receive only a 0 . 2 % ( 2 / 10 of 1 % ) response ( the response could be much better but lets  just say it is only 0 . 2 % ) . also many peoplewill send out hundreds of thousands e - mails  instead of only 5 , 000 each ) .  continuing with this example , you send out only 5 , 000 e - mails . with a 0 . 2 % response ,  that is only 10 orders for report # 1 . those 10 people responded by sending out 5 , 000 e -  mail each for a total of 50 , 000 . out of those 50 , 000 e - mails only 0 . 2 % responded with  orders . that ' s = 100 people responded and ordered report # 2 .  those 100 people mail out 5 , 000 e - mails each for a total of 500 , 000 e - mails . the 0 . 2 %  response to that is 1000 orders for report # 3 .  those 1000 people send 5 , 000 e - mail each for a total of 5 million e - mail sent out . the  0 . 2 % response is 10 , 000 orders for report # 4 .  those 10 , 000 people send out 5 , 000 e - mails each for a total of 50 , 000 , 000 ( 50 million ) e -  mails . the 0 . 2 % response to that is 100 , 000 orders for report # 5 .  that ' s 100 , 000 orders times $ 5 each = $ 500 , 000 . 00 ( half a million dollars ) .  your total income in this example is : 1 . . . . . $ 50 + 2 . . . . . $ 500 + 3 . . . . . $ 5 , 000 + 4 . . . . .  $ 50 , 000 + 5 . . . . $ 500 , 000 . . . .  grand total = $ 555 , 550 . 00  numbers do not lie . get a pencil & paper and figure out the worst  possible responses and no matter how you calculate it , you will  still make a lot of money !  remember friend , this is assuming only 10 people ordering out of  5 , 000 you mailed to . dare to think for a moment what would happen if everyone or  half or even one 4 th of those people mailed 100 , 000 e - mails each or more ?  there are over 150 million people on the internet worldwide and counting , with thousands  more coming on line every day . believe me , many people will do just that , and more !  method # 2 : by placing free ads on the internet  advertising on the net is very , very inexpensive and there are hundreds of free places  to advertise . placing a lot of free ads on the internet will easily get a larger response . we  strongly suggest you start with method # 1 and add method # 2 as you go along . for  every $ 5 you receive , all you must do is e - mail them the report they ordered . that ' s it .  always provide same day service on all orders .  this will guarantee that the e - mail they send out , with your name and address on it , will  be prompt because they can not advertise until they receive the report .  = = = = = = = = = = = available reports = = = = = = = = = = = = = =  the reason for the \"\" cash \"\" is not because this is illegal or somehow \"\" wrong \"\" . it is simply  about time . time for checks or credit cards to be cleared or approved , etc . concealing it  is simply so no one can see there is money in the envelope and steal it before it gets to  you .  order each report by its number & name only . notes : always send $ 5  cash ( u . s . currency ) for each report . checks not accepted . make sure the cash is  concealed by wrapping it in at least 2 sheets of paper . on one of those sheets of paper ,  write the number & the name of the report you are ordering , your e - mail  address and your name and postal address .  place your order for these reports now :  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = report # 1 : ' the insider ' s  guide to advertising for free on the net  order report # 1 from :  y . l . wong  p . o . box no . 71819  kowloon central post office  hong kong  report # 2 : the insider ' s guide to sending bulk email on the net  order report # 2 from :  martin veronneau  c . p . 70058  laval , quebec  h 7 r 5 z 2  canada  report # 3 : secret to multilevel marketing on the net  order report # 3 from :  francis kidd  p . o . box 209  homestead , pa 15120  usa  report # 4 : how to become a millionaire using mlm & the net  order report # 4 from :  m . l . frayser  p . o . box 61432  fort myers , fl 33906  usa  report # 5 : how to send out one million emails for free  order report # 5 from :  stone evans  600 n . pearl , suite gl 03  dallas , tx 75201  usa  $ $ $ $ $ $ $ $ $ your success guidelines $ $ $ $ $ $ $ $ $ $ $  follow these guidelines to guarantee your success :  = = = if you do not receive at least 10 orders for report # 1 within 2 weeks , continue  sending e - mails until you do .  = = = after you have received 10 orders , 2 to 3 weeks after that you should receive 100  orders or more for report # 2 . if you did not , continue advertising or sending e - mails  until you do .  * * once you have received 100 or more orders for report # 2 , you can relax , because  the system is already working for you , and the cash will continue to roll in ! this is  important to remember : every time your name is moved down on the list , you are  placed in front of a different report .  you can keep track of your progress by watching which report people are  ordering from you . if you want to generate more income send another  batch of e - mails and start the whole process again . there is no limit  to the income you can generate from this business ! ! !  following is a note from the originator of this program :  you have just received information that can give you financial freedom for the rest of your  life , with no risk and just a little bit of effort . you can make more money in  the next few weeks and months than you have ever imagined . follow the program  exactly as instructed . do not change it in any way . it works exceedingly well as  it is now .  remember to e - mail a copy of this exciting report after you have put your name and  address in report # 1 and moved others to # 2 . . . . . # 5 as instructed above . one of the  people you send this to may send out 100 , 000 or more e - mails and your name will be on  every one of them .  remember though , the more you send out the more potential customers you will reach .  so my friend , i have given you the ideas , information , materials and opportunity to  become financially independent .  it is up to you now !  = = = = = = = = = = = = = testimonials = = = = = = = = = = = = = = =  ' ' my name is mitchell . my wife , jody and i live in chicago . i am an accountant with a  major u . s . corporation and i make pretty good money . when i received this program i  grumbled to jody about receiving ' junk mail ' . i made fun of the whole thing , spouting my  knowledge of the population and percentages involved . i ' ' knew ' ' it wouldn ' t work . jody  totally ignored my supposed intelligence and few days later she jumped in with both feet .  i made merciless fun of her , and was ready to lay the old ' ' i told you so ' ' on her when the  thing didn ' t work .  well , the laugh was on me ! within 3 weeks she had received 50 responses . within the  next 45 days she had received total $ 147 , 200 . 00 . . . . . . . . . all cash ! i was shocked . i have  joined jodyin her ' ' hobby ' ' .  mitchell wolf m . d . , chicago , illinois  ' ' not being the gambling type , it took me several weeks to make up my mind to  participate in this plan . but conservative as i am , i decided that the initial investment was  so little that there was just no way that i wouldn ' t get enough orders to at least get my  money back . i was surprised when i found my medium size post office box crammed  with orders . i made $ 319 , 210 . 00 in the first 12 weeks .  the nice thing about this deal is that it does not matter where people live . there simply  isn ' t a better investment with a faster return and so big ' ' .  dan sondstrom , alberta , canada  ' ' i had received this program before . i deleted it , but later i wondered if i should have given  it a try . of course , i had no idea who to contact to get another copy , so i had to wait until  i was e - mailed again by someone else . . . . . . . . . 11 months passed then it luckily came  again . . . . . . i did not delete this one ! i made more than $ 490 , 000 on my first try and all the  money came within 22 weeks ' ' .  susan de suza , new york , n . y .  ' ' it really is a great opportunity to make relatively easy money with little cost to you . i  followed the simple instructions carefully and within 10 days the money started to come  in . my first month i made $ 20 , in the 2 nd month i made $ 560 . 00 and by the end of third  month my total cash count was $ 362 , 840 . 00 . life is beautiful , thanx to internet ' ' .  fred dellaca , westport , new zealand  order your reports today and get started on your road to  financial freedom !  if you have any questions of the legality of this program , contact the office of associate  director for marketing practices , federal trade commission , bureau of consumer  protection , washington , d . c .  this message is sent in compliance of the proposed bill section 301 , paragraph  ( a ) ( 2 ) ( c ) of s . 1618 .  * this message is not intended for residents in the state of washington , virginia or  california , screening of addresses has been done to the best of our technical ability .  * this is a one - time mailing and this list will never be used again .  * to be removed from this list , please send an email with the word remove in the  subject line to freebie 4 u @ sinatown . com  - - - -  this sf . net email is sponsored by : thinkgeek  welcome to geek heaven .  http : / / thinkgeek . com / sf  spamassassin - sightings mailing list \",1\n\"Subject: all graphics software available , cheap oem versions .  good morning ,  we we offer latest oem packages of all graphics and publishinq software from corel , macromedia , adobe and others .  $ 80 adobe photoshop 8 . 0 / cs  $ 140 macromedia studio mx 2004  $ 120 adobe acrobat 7 . 0 professional  $ 150 adobe premiere pro 1 . 5  $ 90 corel desiqner 10  $ 90 quickbooks 2004 professional edition  $ 75 adobe pagemaker 7 . 0  $ 70 xara x vl . 1  $ 75 adobe audition 1 . 5  $ 90 discreet 3 d studio max 7  $ 115 adobe golive cs  $ 135 adobe after effects 6 . 5 standard  $ 45 adobe premiere elements  $ 125 corel painter lx  $ 80 adobe liiustrator cs  $ 80 adobe indesiqn cs  $ 240 adobe creative suite  $ 140 adobe framemaker 7 . 1  $ 50 uiead cooi 3 d production studio 1 . 0 . 1  $ 90 alias motion buiider 6 professionai  $ 30 quicken 2004 premier home & biz  $ 30 adobe photoshop elements 3 . 0  $ 110 adobe premiere pro 7 . 0  learn more . . .  sincerely ,  florentina \",1\n\"Subject: over 80 % savings on all best - selling xp titles  opt - in email special offer unsubscribe me search software top 10 new titles on sale now ! 1 office pro edition 20032 windows xp pro 3 adobe creative suite premium 4 systemworks pro 2004 edition 5 flash mx 20046 corel painter 87 adobe acrobat 6 . 08 windows 2003 server 9 alias maya 6 . 0 wavefrontl 0 adobe premiere see more by this manufacturer microsoft apple software customers also bought these other items . . . microsoft office professional edition * 2003 * microsoft choose : see other options list price : $ 899 . 00 price : $ 69 . 99 you save : $ 830 . 01 ( 92 % ) availability : available for instant download ! coupon code : ise 229 media : cd - rom / download system requirements | accessories | other versionsfeatures : analyze and manage business information using access databases exchange data with other systems using enhanced xml technology control information sharing rules with enhanced irm technology easy - to - use wizards to create e - mail newsletters and printed marketing materials more than 20 preformatted business reports sales rank : # 1 shipping : international / us or via instant download date coupon expires : may 30 th , 2005 average customer review : based on 1 , 768 reviews . write a review . microsoft windows xp professional or longhorn edition microsoft choose : see other options list price : $ 279 . 00 price : $ 49 . 99 you save : $ 229 . 01 ( 85 % ) availability : available for instant download ! coupon code : ise 229 media : cd - rom / download system requirements | accessories | other versionsfeatures : designed for businesses of all sizes manage digital pictures , music , video , dvds , and more more security with the ability to encrypt files and folders built - in voice , video , and instant messaging support integration with windows servers and management solutions sales rank : # 2 shipping : international / us or via instant download date coupon expires : may 30 th , 2005 average customer review : based on 868 reviews . write a review . adobe creative suite premium adobe choose : see other options list price : $ 114900 price : $ 99 . 99 you save : $ 849 . 01 ( 90 % ) availability : available for instant download ! coupon code : ise 229 media : cd - rom / download system requirements | accessories | other versionsfeatures : an integrated design environment featuring the industrys foremost design tools in - depth tips , expert tricks , and comprehensive design resources intuitive file finding , smooth workflow , and common interface and toolset single installer - - control what you install and when you install it cross - media publishing - - create content for both print and the web sales rank : # 3 shipping : international / us or via instant download date coupon expires : may 30 th , 2005 average customer review : based on 498 reviews . write a review .\",1\n\"Subject: all graphics software available , cheap oem versions .  good morning ,  we we offer latest oem packages of all graphics and publishinq software from corel , macromedia , adobe and others .  $ 80 adobe photoshop 8 . 0 / cs  $ 140 macromedia studio mx 2004  $ 120 adobe acrobat 7 . 0 professional  $ 150 adobe premiere pro 1 . 5  $ 90 corel desiqner 10  $ 90 quickbooks 2004 professional edition  $ 75 adobe pagemaker 7 . 0  $ 70 xara x vl . 1  $ 75 adobe audition 1 . 5  $ 90 discreet 3 d studio max 7  $ 115 adobe golive cs  $ 135 adobe after effects 6 . 5 standard  $ 45 adobe premiere eiements  $ 125 corel painter lx  $ 80 adobe iliustrator cs  $ 80 adobe indesiqn cs  $ 240 adobe creative suite  $ 140 adobe framemaker 7 . 1  $ 50 ulead cooi 3 d production studio 1 . 0 . 1  $ 90 alias motion builder 6 professionai  $ 30 quicken 2004 premier home & biz  $ 30 adobe photoshop elements 3 . 0  $ 110 adobe premiere pro 7 . 0  learn more . . .  sincereiy ,  aida \",1\n\"Subject: urgent ! ! i have a question about your website ?  hello ,  my name is steve scott and i ' m president and ceo of seizecars . com i will like to  share with you on how i made thousands of website owners like yourself very  rich . yes , i mean filthy rich . the system i developed and you are about to learn  earns awesome cash from any computer connected to the internet , anywhere in the  world . in one month you can earned more than an entire years work !  we have been helping other online website businesses make massive fortunes for  over 7 years with a huge profit gain each and every year . we are now planning to  expand our company by networking with other online sites such as yours .  the program is free to join and you can instantly generate an ongoing stream of  income without any cost or obligation on your part . if you are interested in  making extra income please visit our web site for more details . go to  - -  with best regards ,  steve scott  steve scott productions 2174 rodeo dr beverly hills , ca 90210 this e - mail message is an advertisement and / or solicitation . \",1\n\"Subject: in the heart of your business !  corporate image can say a lot of things about your  company . contemporary rhythm of life is too dynamic . sometimes it takes only  several seconds for your company to be remembered or to be lost amonq  competitors . get your ioqo , business stationery or website done right  now ! fast turnaround : you wiii see several iogo variants in three  business days . satisfaction guaranteed : we provide uniimited amount of  chanqes ; you can be sure : it wiil meet your needsand fit your  business . fiexible discounts : iogo improvement , additionai formats , buik  orders , special packages . creative design for competitive price : have a look at it right  now ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: re :  for  immediate release  cal - bay ( stock symbol : cbyi )  watch for analyst \"\" strong buy recommendations \"\" and several advisory newsletters  picking cbyi . cbyi has filed to be traded on theotcbb ,  share prices historically increase when companies get listed  on this larger tradingexhange . cbyi is trading around 25 cents  and should skyrocket to $ 2 . 66 - $ 3 . 25 a share in the near future .  put cbyi on your watch list , acquire a postion  today .  reasons to invest in cbyi  a profitable company and is on track to beat all  earnings estimates  !  one of the fastest growing distributors in environmental safety  equipment instruments .  excellent management team , several exclusive  contracts . impressive client list including theu . s . air force ,  anheuser - busch , chevron refining and mitsubishi heavy industries ,  ge - energy environmental research .  rapidly growing industryindustry revenues exceed $ 900 million , estimates indicate that there  could be as much as $ 25 billion from \"\" smell technology \"\" by the end of  2003 .  ! ! ! ! ! congratulations  ! ! ! ! ! our last recommendation to buyorbt at  $ 1 . 29 ralliedand is holding steady at $ 4 . 51 !  congratulations to all our subscribers that took advantage of this  recommendation .  all removes honered . please allow 7  days to be removed and send all address to :  neveragain @ btamail . net . cn  certain statements contained in this news release may be  forward - looking statements within the meaning of the private securities  litigation reform act of 1995 . these statements may be identified by such terms  as \"\" expect \"\" , \"\" believe \"\" , \"\" may \"\" , \"\" will \"\" , and \"\" intend \"\" or similar terms . we are not  a registered investment advisor or a broker dealer . this is not an offer to buy  or sell securities . no recommendation that the securities of the companies  profiled should be purchased , sold or held by individuals or entities that learn  of the profiled companies . we were paid $ 27 , 000 in cash by a third party to  publish this report . investing in companies profiled is high - risk and use of  this information is for reading purposes only . if anyone decides to act as an  investor , then it will be that investor ' s sole risk . investors are advised not  to invest without the proper advisement from an attorney or a registered  financial broker . do not rely solely on the information presented , do additional  independent research to form your own opinion and decision regarding investing  in the profiled companies . be advised that the purchase of such high - risk  securities may result in the loss of your entire investment .  the owners of this publication may already own free trading shares in  cbyi and may immediately sell all or a portion of these shares into the open  market at or about the time this report is published . factual statements  are made as of the date stated and are subject to change without notice .  not intended for recipients or residents of ca , co , ct , de , id ,  il , ia , la , mo , nv , nc , ok , oh , pa , ri , tn , va , wa , wv , wi . void where  prohibited .  copyright c 2001  * * * *  - - - -  this sf . net email is sponsored by : thinkgeek  welcome to geek heaven .  http : / / thinkgeek . com / sf  spamassassin - sightings mailing list \",1\n\"Subject: adv : direct email blaster , email addresses extractor , maillist verify , maillist manager . . . . . . . . . . .  direct email  blaster  the program will send mail at the  rate of over 1 , 000 e - mails per minute . legal and fast  sending bulk emailsbuilt in smtp  serverhave return pathcan check mail  addressmake error send address list ( remove or  send again ) support multi - threads . support  multi - smtp servers . manages your opt - in e - mail listsoffers an  easy - to - use interface ! easy to configure and use  download  now  maillist  verify  maillist verify is intended for e - mail addresses and mail  lists verifying . the main task is to determine which of addresses in the mail  list are dead . the program is oriented , basically , on programmers which have  their own mail lists to inform their users about new versions of their  programs .  the program works on the same algorithm as isp mail systems  do . mail servers addresses for specified address are extracted from dns . the  program tries to connect with found smtp - servers and simulates the sending of  message . it does not come to the message sending / nobr emv disconnect  as soon as mail server informs does this address exist or not . emv can  find  about 90 % of dead addresses / nobr some mail  systems receive all messages and only then see their  addresses and if the address is dead send the message  back with remark about it .  download now  express email  blaster  express email blaster is a very fast , powerful yet  simple to use email sender . utilizing multiple threads / connections  and multiple smtp servers your emails will be sent out  fast and easily . there are user information , attach files ,  address and mail logs four tabbed area for the e - mails  details for sending . about 25 smtp servers come with the  demo version , and users may add and delete smtp servers .  about 60 , 000 e - mails will be sent out per  hour . \"\"  download now  express email address  extractor  this program is the most efficient , easy to use  email address collector available on the  internet ! beijing express email address extractor ( expresseae ) is  designed to extract  e - mail addresses from web - pages on the  internet ( using http protocols ) . expresseae  supports operation through many proxy - server  and works very fast , as it is able of  loading several pages simultaneously , and requires  very few resources .  with it , you will be able  to use targeted searches to crawl the  world wide web , extracting  thousands of clean , fresh email  addresses . ably email address extractor is unlike other  address collecting programs , which  limit you to one or two search engines and are unable  to do auto searches huge address .  most of them collect a high percentage of incomplete ,  unusable addresses which will cause you  serious problems when using them in a mailing .  easier to learn and use than any  other email address collector program available .  accesses eight search  engines  add your own urls to the list to be  searched  supports operation through  a lot of proxy - server  and works very fast ( http proxy )  able of loading several pages  simultaneously  requires very few resources  timeout feature allows user to limit  the amount of time crawling in dead sites and traps .  easy to make huge address list  pause / continue extraction at any  time .  auto connection to the  internet  download now  express email address  downloader  expressead  is a 32 bit windows program for e - mail  marketing . it is intended for easy and convenient  search large  e - mail address lists from mail servers . the program can be operated  on  windows 95 / 98 / me / 2000  and nt .  expressead  support multi - threads ( up to 1024  connections ) .  expressead  has the ability to reconnect to the  mail server if the server has disconnected and  continue the searching  at the point where it has been interrupted .  expressead  has an ergonomic interface that is easy to  set up and simple to use .  features :  support  multi - threads .  auto get smtp server  address , support multi - smtp servers .  auto save e - mail  lists  offers an easy - to - use  interface !  download now  express maillist  manager  this program was designed to be a  complement to the direct email blaster  and email  blaster  suite of bulk email software  programs . its purpose is to organize your email lists in order to be  more  effective with your email marketing  campaign . some of its features include :  combine several lists into  one file . split up larger lists to make them more  manageable . remove addresses from file . manual editing , adding , and deleting of addresses . ability to auto clean lists , that is , remove any duplicate or unwanted  addresses . maintain all your address lists within the  program so you no longer need to keep all your  lists saved as separate text  files .  download now  if you want to remove your email , please send email to targetemailremoval @ btamail . net . cn \",1\n\"Subject: branded softs  http : / / p ' s . mainoemstore . com / ? a = 3107\",1\n\"Subject: are you ready to get it ?  hello !  viagra is the # 1 med to struggle with mens ' erectile dysfunction .  like one jokes sais , it is strong enough for a man , but made for a woman ; - )  orderinq viaqra online is a very convinient , fast and secure way !  miliions of people do it daily to save their privacy and money  order here . . . \",1\n\"Subject: auto protection  protect yourself .  purchase an extended warranty for your car before  your existing warranty expires and save hundreds .  even if your warranty has expired , you will save  40 - 60 percent over the warranties offered by  dealerships and it ' s the same warranty .  all quotes are 100 percent free .  all quotes are obligation free .  dear friend ,  car troubles always seem to happen at the worst  possible time . protect yourself and your family  with a quality extended warranty for your car ,  truck , or suv , so that a large expense cannot hit  you all at once . we cover most vehicles with less  than 150 , 000 miles .  do not buy from a dealer . their prices are often  40 - 60 percent more !  we offer fair prices and prompt , toll - free claims  service . get an extended warranty on your car  today . you will be surprised by how inexpensive  this protection can be !  warranty plans also include , for free :  1 . 24 - hour roadside assistance  2 . rental benefit  3 . trip interruption intervention  4 . extended towing benefit  take advantage of our special offer , before it  expires , by going to :  click _ here  sincerely ,  s . c . valentine  ewfc , inc .  the new netscape 7 . 0 browser is now available . upgrade now ! http : / / channels . netscape . com / ns / browsers / download . jsp  get your own free , personal netscape mail account today at http : / / webmail . netscape . com /\",1\n\"Subject: breaking news : e - mail margin - bottom : 0 \"\" >  e - mail  marketing system  -  bulk e - mail will make you money so fast , your head will spin !  - customers say we would no longer be in business without it  - new package deal includes everything you need .  see this product ' s web page  click  here  1  million business leads on cd  -  for telemarketing , mailing , or faxing this list is a gold mine !  - contains company name , address , phone , fax , sic , size .  - list allows for unlimited use .  see this product ' s web page click  here  fax  marketing system  -  fax broadcasting is the hot new way to market your business !  - people are 10 times more likely to read faxes than direct mail .  - software 4 million leads turns your computer into a fax blaster .  see this product ' s web page click  here  visit  our web site or call 618 - 288 - 6661  to be taken off of  our list click here \",1\n\"Subject: qp - they cum into teens eyes - cr  these sluttish cuties are crossing every borders in their super - dirty games ! http : / / jcyk . itoma - services . com / cfillye / ? oqulup\",1\n\"Subject: largest collection of porn mo \\ / ies ever - x 89  cum witness the most extreme sexual achievements ever to be found on the net ! we have tons of exclusive never before seen pics and videos of your fav pornstars doing exactly what you dream to see !  do you think you have what it takes to beat one of our records ? we welcome all member entries , cum see if you have what it takes to earn a spot in our record library !  http : / / 3 wii . biz . lediesnight . biz /  - - - - - - - - - - - - - -  absolve chambers bey avocet  cyanic captive cryptic cheap  comprehensible bronx admittance brash\",1\n\"Subject: failure notice  hi . this is the qmail - send program at backup - smtp - 2 . star . net . uk .  i ' m afraid i wasn ' t able to deliver your message to the following addresses .  this is a permanent error ; i ' ve given up . sorry it didn ' t work out .  :  81 . 171 . 128 . 25 does not like recipient .  remote host said : 550 , recipient unknown  giving up on 81 . 171 . 128 . 25 .  - - - below this line is a copy of the message .  return - path :  received : ( qmail 28287 invoked from network ) ; 19 jul 2005 10 : 58 : 25 - 0000  received : from catv - 219 - 099 - 025 - 107 . medias . ne . jp ( helo mailwisconsin . com ) ( 219 . 99 . 25 . 107 )  by backup - smtp - 2 . star . net . uk with smtp ; 19 jul 2005 10 : 58 : 25 - 0000  received : from 205 . 214 . 42 . 66  ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ;  by mailwisconsin . com with http id j 87 gzo 38191062 ;  tue , 19 jul 2005 10 : 57 : 46 + 0000  message - id :  date : tue , 19 jul 2005 10 : 57 : 46 + 0000  subject : just to her . . .  from : \"\" barry castillo \"\"  to : distinctively @ hamilton - school . co . uk  user - agent : squirrelmail / 1 . 4 . 3 a  x - mailer : squirrelmail / 1 . 4 . 3 a  mime - version : 1 . 0  content - type : text / html ; charset = iso - 8859 - 1  content - transfer - encoding : 8 bit  x - priority : 3 ( normal )  importance : normal  soft viagra at $ 1 . 62 per dose  ready to boost your sex life ? positive ?  time to do it right now !  order soft viagra at incredibly low prices  startinq at $ 1 . 99 per dose ! unbelivable !\",1\n\"Subject: save your money buy getting this thing here  you have not tried cialls yet ?  than you cannot even imagine what it is like to be a real man in bed !  the thing is that a great errrectlon is provided for you exactiy when you want .  cialis has a lot of advantages over viagra  - the effect lasts 36 hours !  - you are ready to start within just 10 minutes !  - you can mix it with alcohol ! we ship to any country !  get it riqht now ! . \",1\n\"Subject: online tv deals 312  internet  exclusive - - tv deals  fantastic prices  click any product  for details  amazing profits by john beck  avacor hair care system  balance bracelet  blast off the pounds by richard simmons  bloussant  cybersonic toothbrush  flat hose - 50 ft  juiceman ii  miracle blade  phase 4 orthotics  roll - a - hose  shark steam blaster  sounds of the 80 s by time life  stick shark  walk away the pounds for abs  plus  thousands of other tv deals  online now  - - - fantastic prices  while  supplies last !  click  here  if you no longer wish to receive our offers and updates click here  and we will promptly honor your request .  - - - -  this sf . net email is sponsored by : thinkgeek  welcome to geek heaven .  http : / / thinkgeek . com / sf  spamassassin - sightings mailing list \",1\n\"Subject: in the heart of your business !  corporate image can say a lot of things about your  company . contemporary rhythm of life is too dynamic . sometimes it takes only  several seconds for your company to be remembered or to be iost among  competitors . get your logo , business stationery or website done right  now ! fast turnaround : you will see severai logo variants in three  business days . satisfaction guaranteed : we provide uniimited amount of  changes ; you can be sure : it wili meet your needsand fit your  business . fiexible discounts : loqo improvement , additional formats , bulk  orders , special packages . creative design for competitive price : have a look at it right  now ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: capital hill gold - chgi - potential high grade gold deposit  breaking news : denver , june 14 , 2005 ( business wire ) - - capital hill gold , inc , ( chgi ) reports that the company ' s geologists are evaluating a potential high - grade bulk - tonnage gold deposit located in mineral county , nevada , the project is situated in the vicinity of several operating and past - producing gold mines , including the paradise peak , santa fe and rawhide deposits , after review of usgs geochemical survey work of the project and a study of the geology of other gold deposits in the area , geologists believe that the target would be a high - grade bulk - tonnage gold deposit ,  virgin deposits : the privately - held 440 - acre project was originally staked by a major gold mining company in the 1990 s , the property has never been drilled and may prove to be a rich vein as early tests have indicated , follow - up work by the company ' s geologist indicated that a major international gold mining company had staked approximately 200 unpatented lode - mining claims in the area during 2001 and 2002 ,  geologists investigating the property for capital hill observed multiple broad zones of silicification extending for considerable distances , samples were collected from several outcrops on the property , and have been submitted to american assay labs in elko , nevada for assaying , based on positive assay results , target and identification , a major claim - staking program will be launched accordingly , as further credible evidence emerges of a significant gold ore deposit , and the first results coming in are showing promise ,  on june 13 , 2005 the company announced in a press release that capital hill ' s management is pleased and encouraged with the first u 3 o 8 ( uranium oxide ) assay returns as well as the noticeable precious metal results and that initial reconnaissance sampling on the company ' s uranium project has returned assays grading 0 , 061 % u 3 o 8 to 0 , 068 % u 3 o 8 of great interest to the company is the fact that the samples taken also assayed positively for precious metals , with results ranging from 0 , 08 to 0 , 22 oz ag / st and trace amounts of gold , the occurrence of silver in conjunction with the uranium mineralization warrants further investigation .  the recent news of the company possibly sitting on a huge untapped gold deposit has the stock in a strong up trend , rallying from 5 cents to 75 cents during the past three months . as the three - month chart illustrates , trading volume has swelled to 300 , 000 shares per day with money flow indicators showing strong inflows , which is representative of a stock that is under accumulation . the positive tape action clearly shows strong investor sentiment about the company ' s leverage on controlling sizable parcels of gold fields . the potential recoverable gold data has yet to be compiled , but as mentioned above , early tests are very promising , which is why investors are bidding up shares ahead of this data .  capital hill gold ' s strategic objective is to obtain controlling interests in properties with excellent exploration potential to become economically significant to world - class ore deposits . chgi intends to acquire mineral exploration properties primarily through the filing of concessions on its own account and in partnership as well as by optioning exceptional properties at reasonable costs relative to the property ' s potential and the financial capabilities of the company .  in recent weeks , chgi shareholders have been on the receiving end of some very promising developments with the new discoveries for gold ore . in addition , the company is aggressively exploring for commercial grade uranium deposits that will supply newly heightened demand from nuclear utilities . since 2003 uranium prices have doubled . 20 % of the world ' s electricity comes from uranium , and the nuclear power plant count is stable and growing . the united states needs to add about 100 nuclear power plants over the next two decades to meet burgeoning demand for electric power and maintain the current generating mix , nils j . diaz , chairman of the u . s . nuclear regulatory commission told reporters in early may 2005 .  as of may 17 , 2005 the company is pleased to report that the claim staking crew and geologist have arrived on site , and have begun staking claims . the area being staked encompasses a large area of potentially commercial - grade uranium mineralization identified by previous work , including geophysical surveys . reconnaissance sampling of the ground being staked has returned assay results approximately equal to those of in - place resources at one of the past - producing uranium mines in the project area .  a chinese news web site reports that china , the world ' s second - largest energy consumer after the u . s . , will spend 400 billion yuan ( u . s . $ 48 . 33 billion ) on building new nuclear power plants by 2020 . this is a bigger number than we have seen in the past . the energy - hungry country intends to increase the amount of installed nuclear power capacity from the current 16 gigawatts to 40 gigawatts within 15 years . nuclear power generation is expected to triple to reach 60 gigawatts by that time . so the market for uranium is in a new bull market .  conclusion  development efforts for gold and uranium on chgi properties are about to commence following the better - than - expected geophysical testing results . shares of chgi have rallied over 10 - fold in just the past three months in anticipation of what the future holds in the way of extractible gold and uranium . once full mining operations are under way , it is our view , that the shares will rally as the business generates its initial revenue stream .  for additional information , visit  investor relations solutions is a communications arm of ir solutions profiles . investor relations solutions is not licensed by any governmental or regulatory agencies and is not a registered investment advisor , financial planning service or a stock brokerage firm and in accordance with such , investor relations solutions is not offering investment advice or promoting any investment strategies . investor relations solutions is not offering securities for sale or solicitation of any offer to buy or sell securities . this stock advertisement or e - mail alert contains or incorporates by reference \"\" forward - looking statements , \"\" including certain information with respect to plans and strategies of the featured company . as such , any statements contained herein or incorporated herein by reference that are not statements of historical fact may be deemed to be forward - looking statements . without limiting the foregoing , the words \"\" believe ( s ) , \"\" \"\" anticipate ( s ) , \"\" \"\" plan ( s ) , \"\" \"\" expect ( s ) , \"\" \"\" project ( s ) \"\" , forecast ( s ) will , estimate ( s ) , \"\" understand ( s ) \"\" or that by statements indicating certain actions may , could , or might occur and similar expressions which are intended to identify forward - looking statements . ir solutions profiles has been compensated twenty thousand usd . there are a number of important factors that could cause actual events or actual results of the companies profiled herein to differ materially from these forecasts and projections as indicated by such forward - looking statements . statements that are not strictly historical are forward - looking within the meaning of the safe harbor clause of the private securities litigation reform act of 1995 . investors are cautioned that such forward - looking statements invoke risk and uncertainties that may cause the company ' s actual results to differ materially from such forward - looking statements . prior to making an investment , investors should consult with their financial advisor and visit edgar at www . sec . gov .  investor relations solutions , llc 1911 glacier park ave . , ste . 480 naperville , il 60540 this e - mail message is an advertisement and / or solicitation . \",1\n\"Subject: localized software , all languages available .  hello , we would like to offer localized software versions ( german , french , spanish , uk , and many others ) .  ail iisted software is availabie for immediate download !  no need to wait 2 - 3 week for cd deiivery !  just few exampies :  - norton lnternet security pro 2005 - $ 29 . 95  - windows xp professionai with sp 2 fuil version - $ 59 . 95  - corel draw graphics suite 12 - $ 49 . 95  - dreamweaver mx 2004 ( homesite 5 . 5 inciuding ) - $ 39 . 95  - macromedia studio mx 2004 - $ 119 . 95  just browse our site and find any software you need in your native ianquaqe !  best regards ,  rupert \",1\n\"Subject: you want some outright sex - don ' t you ?  free prescription and viagra overnight delivery .  http : / / qxi . dagohevoa 5 d 3 hwd . dmshushhb . com  as he thinks in his heart , so he is .  only those who dare to fail greatly can ever achieve greatly .  he ' s simply got the instinct for being unhappy highly developed .\",1\n\"Subject: no pills , no pumps - its the patch  penis growth extreme  http : / / www . xunepa . com / ss /  death is not the worst than can happen to men .  no man is demolished but by himself .  luck is what you have left over after you give 100 % .  the freedom of all is essential to my freedom .  death solves all problems . no man , no problem .\",1\n\"Subject: update information - verification required  dear wells fargo customer ,  as you may already know , we at wells fargo guarantee your online  security and partner with you to prevent  fraud . due to the newly introduced comprehensive quarterly updates program  ( which is meant to help you against identity theft , monitor your credit and  correct any possible errors ) , we urge you to go through the 2 steps wells fargo  account confirmation process . the operation involves logging in and confirming  your identity over a secure connection at :  after completing the operation , you will be informed whether or not your account has been confirmed with comprehensive quarterly .  thank you for working with us in combating online fraud and also , for choosing wells fargo as your financial institution .  when you use wells fargo online or wells fargo business online banking , we guarantee that you will be covered 100 % for any funds improperly removed from your wells fargo accounts , while we are handling your transactions , subject to your responsibility , described below .  brokerage accounts offered through wells fargo investments , llc ( member sipc ) , a non - bank affiliate of wells fargo company .  1999 - 2005 wells fargo bank . all rights reserved .\",1\n\"Subject: hilarious prank call service  please visit http : / / ukprankcalls . com to play a hilarious joke on your mates !\",1\n\"Subject: there  hello visioson @ hpp . za . net ,  a friend showed me a way out to get p . p . v . on tv and yet not pay anything ?  ha ha , yea , right , i mean it .  hit below and check it yourself :  http : / / balkis . look 4 express . info  easy to install .  to get off , just add slash r to the above address .  14 . ninety six bottles of beer , three a ' s , three b ' s , one c , two d ' s , twenty eight e ' s , seven f ' s , three g ' s , eight h ' s , thirteen i ' s , four l ' s , sixteen n ' s , nine o ' s , nine r ' s , twenty six s ' s , twenty t ' s , four u ' s , four v ' s , six w ' s , five x ' s , and five y ' s on the wall . .  i could go on and on , but i won ' t . we have many programs the children love . but i would give them all up to keep my boring noun program . i thank the parent daily for her insight . .  get back to you later ,  gordon sousa\",1\n\"Subject: re : wall street micro news report  homeland security investments  the terror attacks on the united states on september 11 , 2001 have  changed  the security landscape for the foreseeable future . both physical and  logical  security have become paramount for all industry segments , especially in  the  banking , national resource and government sectors . according to giga ,  a  wholly owned subsidiary of forrester research , worldwide demand for  information security products and services is set to eclipse $ 46 b by  2005 .  homeland security investments is a newsletter dedicated to providing  our  readers with information pertaining to investment opportunities in this  lucrative sector . as we know , events related to homeland security  happen  with lightning speed . what we as investors can do is position  ourselves in  such a way as to take advantage of the current trends and be ready to  capitalize on events which have yet to happen . homeland security  investments is here to help our readers do just that .  with this in mind , it is with great excitement that we present vinoble ,  inc .  this stock is expected to do big things in both the near and long  terms .  symbol : ( vnbl )  current price : 0 . 08  short term target price : 0 . 35  12 month target price : 1 . 20  * * * why we believe vnbl . ob will give big returns on investment * * *  * at this time much of vnbl ' s focus is on rfid ( radio frequency  identification ) technology . this is technology which uses tiny sensors  to  transmit information about a person or object wirelessly .  * vnbl is already an industry pioneer in the rfid personal location  technology .  * vnbl is developing a form of rfid technology which allows companies  and  governments to wirelessly track their assets and resources . such  technology  has huge potential in the protection and transportation of materials  designated \"\" high risk \"\" were they to fall into the wrong hands .  * vnbl works on integration of the two afore mentioned systems in order  to  create \"\" high security space \"\" in locales where it is deemed necessary .  locations which may take advantage of such systems are airports , sea  ports ,  mines , nuclear facilities , and more .  * as with all stocks , news drives the short term price . fresh news has  made vnbl a hot buy .  news on vnbl  malibu , calif . - - ( business wire ) - - june 16 , 2005 - - vinoble , inc .  ( otcbb : vnbl -  news ) , a holding company seeking to identify long - term growth  opportunities  in the areas of homeland security , security information systems , and  other  security services , announced today that it plans to offer products and  services that will assist in the automation of the identification and  control of equipment , assets , tools , and the related processes used in  the  oil & gas and petrochemical industries .  although small wirelessly networked rfid sensors can monitor machines  and  equipment to detect possible problems before they become serious , they  can  also deliver safety features within oil wells . oil maybe trapped in  different layers of rock , along with gas and water . detection of  specific  liquids can assist equipment in operating within a specific precise  opportune moment to ensure certain adverse conditions do not occur ,  such as  a well filling with water .  as with other rf based technology applications , rfid can also provide  the  safe transit of materials by only the authorized handler , and limit the  entry of personnel to specific locations . ensuring personnel safety is  essential , should there be an emergency at a facility , rfid tags would  enable the customer to track and evaluate its employee ' s safety and / or  danger . this application technology requires product and hardware that  can  operate in harsh and potentially hazardous conditions , but gives  valuable  safety to the resources and assets that are vital to the customer . rfid  can  also assist the customer ' s supply chain by tracking oil , gas , and  chemical  products from extraction to refining to the sale at the retail level .  vinoble ' s viewpoint as previously stated is that these applications are  more  than just a valuable tool to the mining industry , but as a protective  measure of our country ' s natural resources and commodities against  threat .  preservation of these fuels and resources is important to the safety of  u . s .  industry and economy .  the company believes that such offering service and technology  application  in the oil & gas and petrochemical industry will further position  vinoble in  a rapidly expanding industry while taking advantage of access to the  increasing capital and global spending that the company will require  for  growth . the company ' s goal is to also provide a much - needed service at  a  cost manageable to even the smallest of businesses that can ' t afford to  do  without the safety of its personnel and assets in this current state of  constant threat .  this is outstanding news . the growth potential for this company is  exceptional . in an already hot industry , vnbl . ob stands out as a truly  innovative pioneer . we see big things happening to this stock .  information within this email contains \"\" forward looking statements \"\"  within the meaning of section 27 a of the securities act of 1933 and  section 21 b of the securities exchange act of 1934 . any statements that  express or involve discussions with respect to predictions ,  expectations , beliefs , plans , projections , objectives , goals ,  assumptions or  future  events or performance are not statements of historical fact and may be  \"\" forward looking statements . \"\" forward looking statements are based on  expectations , estimates and projections at the time the statements are  made that involve a number of risks and uncertainties which could cause  actual results or events to differ materially from those presently  anticipated . forward looking statements in this action may be  identified  through the use of words such as \"\" projects \"\" , \"\" foresee \"\" , \"\" expects \"\" ,  \"\" will , \"\" \"\" anticipates , \"\" \"\" estimates , \"\" \"\" believes , \"\" \"\" understands \"\" or  that by  statements indicating certain actions \"\" may , \"\" \"\" could , \"\" or \"\" might \"\" occur .  as with many micro - cap stocks , today ' s company has additional risk  factors worth noting . those factors include : a limited operating  history ,  the company advancing cash to related parties and a shareholder on an  unsecured basis : one vendor , a related party through a majority  stockholder , supplies ninety - seven percent of the company ' s raw  materials :  reliance on two customers for over fifty percent of their business and  numerous related party transactions and the need to raise capital .  these  factors and others are more fully spelled out in the company ' s sec  filings . we urge you to read the filings before you invest . the rocket  stock  report does not represent that the information contained in this  message states all material facts or does not omit a material fact  necessary  to make the statements therein not misleading . all information  provided within this email pertaining to investing , stocks , securities  must  be  understood as information provided and not investment advice . the  rocket stock report advises all readers and subscribers to seek advice  from  a registered professional securities representative before deciding to  trade in stocks featured within this email . none of the material within  this report shall be construed as any kind of investment advice or  solicitation . many of these companies are on the verge of bankruptcy .  you  can lose all your money by investing in this stock . the publisher of  the rocket stock report is not a registered investment advisor .  subscribers should not view information herein as legal , tax ,  accounting or  investment advice . any reference to past performance ( s ) of companies  are  specially selected to be referenced based on the favorable performance  of  these companies . you would need perfect timing to achieve the results  in the examples given . there can be no assurance of that happening .  remember , as always , past performance is never indicative of future  results and a thorough due diligence effort , including a review of a  company ' s filings , should be completed prior to investing . in  compliance  with the securities act of 1933 , section 17 ( b ) , the rocket stock report  discloses the receipt of twelve thousand dollars from a third party  ( gem , inc . ) , not an officer , director or affiliate shareholder for  the  circulation of this report . gem , inc . has a position in the stock  they  will sell at any time without notice . be aware of an inherent conflict  of interest resulting from such compensation due to the fact that this  is a paid advertisement and we are conflicted . all factual information  in this report was gathered from public sources , including but not  limited to company websites , sec filings and company press releases .  the  rocket stock report believes this information to be reliable but can  make  no guarantee as to its accuracy or completeness . use of the material  within this email constitutes your acceptance of these terms .\",1\n\"Subject: more medz  how to save dhurry on your medlcations over 70 % .  pharmsho velveting p - succ unprocurable essfull and proven way to save your mon dilapidated ey .  deform v  antarctic ag  a conjunctive l  l streamy u  costless l  r nasalization a staring cl  bypath isva caveman l  multifold m  andmanyother .  best topple prlces .  worldwide shl informer pplng .  easy pisces order form .  total confidentiaiity chiasmus .  250 , 000 neighbourship satisfied customers .  order today and save logician !\",1\n\"Subject: rape ! ! .  rape sex !  click here  you must be at least 18 to enter !  to be removed from our \"\" in house \"\" mailing list  click here  and you will automatically be removed from future mailings .  you have received this email by either requesting more information  on one of our sites or someone may have used your email address .  if you received this email in error , please accept our apologies . \",1\n\"Subject: free sizzling ltc sales materials  ltc prospecting pamplets  ltc scriptless flip chart  25 of \"\" what is long term care ?  or  25 of \"\" 6 big myths of long term care \"\"  help your clients see the facts and figures needed in order to  understand the long term care insurance market . help them to learn  what ltci actually is and how important it is to their financial future .  yours free with your first appointment !  \"\" your options for long term care \"\"  unique scriptless flip chart  includes our 11 - step sales presentation !  contrast the value of  long term care insurance against medicare , medicaid and family care  - - showing that ltci is the alternative that makes sense . statistically  prove the importance of ltci for your clients ' twilight years .  yours free with your first application !  free pamphlet samples with inquiry !  don ' t forget to ask about . . .  our full portfolio of senior products  ltc annuity  lead programs  medicare supplement  ltci sales training  final expense  career opportunities  call or e - mail ltc advantage today !  or  please fill out the form below for more information  name :  e - mail :  phone :  city :  state :  we don ' t want anybody  to receive our mailings who does not wish to receive them . this is professional  communication sent to insurance professionals . to be removed from this  mailing list , do not reply to this message . instead , go here :  http : / / www . insuranceiq . com / optout \",1\n\"Subject: cash : $ 48463  dear homeowner , you have been pre - approved for a $ 200 , 000 loan at a low fixed rate . this offer is being extended to you unconditionally and your credit is in no way a factor . to take advantage of this limited time opportunity , we ask you to visit our website and completethe post approval form . http : / / www . easy - instant - savings . com / i / lzevaw 5 kzxgvamvlenkvnmo 3 dhjommto  clair spearsua logan financial group - - - - - - - - - - - - - - - - - - - - - - 7 : meijer malory bourahla krabicka omahahttp : / / www . easy - instant - savings . com / rem . php . . . not interested\",1\n\"Subject: = ? gb 2312 ? q ? want _ to _ establish _ the _ office _ in _ china = 3 f ? =  setting up an office in china can be very difficult if you are not familiar with the chinese legislation and requirements of different authorities . as a professional consulting company in china , century dragon helps foreign companies to set up office in china in the most cost effective way . - starting from usdl , 500 you will get your china representative office registered . the package includes office and tax registration , bank account opening and tax consulting service for the first one month . - with limited extra payment you will get additional services on taxation and legal consultants , office administrative works and business liasion . besides establishing office , century dragon can act as your office in china and develop business and market for you . check out our website for more information . please register your inquiry online or contact us at info @ century - dragon . com , one of our representatives will contact with you shortly . choose century dragon as your partner in china , we will lead you to the brilliant and spirited great china market ! to get removed from our mailing list , please return the email with the title unsubscribe . \",1\n\"Subject: strictly private .  gooday ,  with warm heart my friend , i send you my greetings , and i hope this letter meets you in good time .  it will be surprising to you to receive this proposal from me since you do not know me personally . however , i am sincerely seeking your confidence in this transaction , which i propose with my free mind and as a person of intergrity . i have kept it to myself for a long time , and now i need to act , as time is not on my side . i want you to open - heartedly read through and give me your most needed support . i got your address from an internet directory , in my search for a contact . i apologize if this is not acceptable to you . the purpose of this letter is to seek your most needed assistance .  my name is donald phiri , the farm supervisor and personal assistant to mr . david stevens , a very popular and rich farmer from macheke , zimbabwe . my master was murdered in cold blood in my presence on 15 of april 2001 , due to the land dispute and political situation in my country , as a result of my master ' s financial support for the mdc ( movement for democratic change ) , the main opposition party to president mugabe ' s party , zimbabwe african national union patriotic front ( zanu - pf ) . for more information on my master ' s murder , you may check the amnesty international country report on zimbabwe for the year 2001 .  when the pressure on white farmers started in zimbabwe due to the support given to the war veterans by president mugabe to invade farms and force out white farmers , my master forsaw the danger ahead , he then closed his major bank accounts , and together , we went to johannesburg , south africa to deposit the sum of $ 14 . 5 million ( fourten million , five hundred thousand usdollars ) , in a private security company , for safety . this money was deposited in a box in my name , as my master was being secretive with his name , as the south african government of thambo mbeki is in support of president mugabe ' s actions . the box is labeled as gemstones . my master had planned to use this money for the purchase of lands , new machines and chemicals for establishment of new farms in botswana . he has used this company in the past to move money for the purchase of tractors and farm equipment from europe . my master is divorced , and his wife valerie , and only child , diana have relocated to bradford , !  en !  gland for 9 years now .  i am currently in the netherlands where i am seeking political asylum . i have now decided to transfer my master ' s money into an account for security and safety reasons . this is why i am anxiously and humbly seeking for your genuine assistance in transfering this money into an account without the knowledge of my government who are bent on taking everything my master left . you have to understand that this decision taken by me entrusts so much to you .  if you accept to assist me , all i want you to do for me , is to make an arrangements with the security company to clear the box containing the money from their office here in the netherlands , and then we will transfer the money into an account . you may open a new account for this purpose . i have applied to the security company to transfer the box from south africa to their branch here , which they have done .  to legally process the claim of the box , i will contact a lawyer to help me prepare a change of ownership and letter of authority to enable them recognise you as my representative , and deliver the box to you . i have with me , the certificate used to deposit the box , which we will need for claiming the box .  for valuable assistance , i am offering you 10 % ( $ 1 , 450 , 000 ) of the total money . i have also set aside 1 % ( $ 145 , 000 ) of this money for all kinds of expenses that come our way in the process of this transaction , and 4 % ( $ 580 , 000 ) , will be given to charity in my master ' s name i will give 25 % ( $ 3 , 625 , 000 ) to valerie and diana , after my share of the money has been transfered back to me . when they grant my asylum application , my share of the money ( 85 % ) , will be transfered back to me , into an account i will solely own . i also intend to start up a business then . if you have knowledge of farming business in your country , or other areas of possible business investment that i may be interested in , please inform me , so that my some of my share of the money can be invested for the time being .  please , i want to you maintain absolute secrecy for the purpose of this transaction due to my safety and successful conclusion of the transaction .  i look forward to your reply and co - operation , and i am sure it will be nice to extend ties with you .  yours sincerely ,  donald phiri .  - - - -  this sf . net email is sponsored by : thinkgeek  welcome to geek heaven .  http : / / thinkgeek . com / sf  spamassassin - sightings mailing list \",1\n\"Subject: all graphics software available , cheap oem versions .  good morning ,  we we offer latest oem packages of all graphics and publishinq software from corel , macromedia , adobe and others .  $ 80 adobe photoshop 8 . 0 / cs  $ 140 macromedia studio mx 2004  $ 120 adobe acrobat 7 . 0 professional  $ 150 adobe premiere pro 1 . 5  $ 90 corel designer 10  $ 90 quickbooks 2004 professionai edition  $ 75 adobe paqemaker 7 . 0  $ 70 xara x vl . 1  $ 75 adobe audition 1 . 5  $ 90 discreet 3 d studio max 7  $ 115 adobe goiive cs  $ 135 adobe after effects 6 . 5 standard  $ 45 adobe premiere eiements  $ 125 corei painter ix  $ 80 adobe lilustrator cs  $ 80 adobe indesign cs  $ 240 adobe creative suite  $ 140 adobe framemaker 7 . 1  $ 50 ulead cool 3 d production studio 1 . 0 . 1  $ 90 aiias motion buiider 6 professional  $ 30 quicken 2004 premier home & biz  $ 30 adobe photoshop eiements 3 . 0  $ 110 adobe premiere pro 7 . 0  learn more . . .  sincereiy ,  clemmie \",1\n\"Subject: important  42745  start your own adult entertainment business . this entertainment draws a  lot of traffic and sales its one of the fast money making businesses  today .  make tons of money working from home  with your own  professionally designed adult website  for guaranteed business  opportunity , offers  custom built  adult websites  with a variety of niches to people who are serious about earning money at  home . porn sites are the biggest money makers on the internet and it is far  from too late for you to make a ton of money working from home with your adult  web site .  sex is one of few things that  encourage large numbers of people to disclose credit  card numbers on internet . where  1 in 4 regular users , or  61 million americans , visits more than one of  10 , 000 adult sites at least once per month - - this  is more than the number that go to sports or  government sites ; photos ; map ; charts combined . -  new york times  visit us today  to stop receiving our promising  opportunity please reply with subject rem - ove  hrbhnau \",1\n\"Subject: the government grants you $ 25 , 000 !  free personal and business grants  \"\" qualify for at least $ 25 , 000 in free  grants money - guaranteed ! \"\"  each day over one million dollars in free  government  grants is given away to people just like you for a wide  variety of business and personal needs  dear grant seeker ,  in a moment , i ' ll tell you  exactly how where to get grants . this money has to  be given away , why not to you ?  you may be thinking , \"\" how  can i get some of this free grants money \"\"  maybe you think it ' s impossible  to get free money ?  let me tell you it ' s not  impossible ! it ' s a fact , ordinary people and businesses all across the  united states are receiving millions of dollars from these government and  private foundation ' s everyday .  who can apply ?  anyone can apply  for a grant from 18 years old and up !  grants from $ 500 . 00 to $ 50 , 000 . 00  are possible ! grants don ' t have to be paid back ,  ever ! claim  your slice of the free american pie .  this money is not a loan ,  trying to get money through a conventional bank can be very time consuming  and requires a lot of paperwork , only to find out that you ' ve been denied .  these government agencies don ' t have to operate under the same stringent  requirements that banks do .  you decide how much money  you need , as long as it ' s a lawful amount and meets with the government  agencies criteria , the money is yours to keep and never has to be repaid .  this money is non taxable interest free .  none of these programs require  a credit check , collateral , security deposits or co - signers , you can apply  even if you have a bankruptcy or bad credit , it doesn ' t matter , you as  a tax payer and u . s . citizen are entitled to this money .  there are currently over  1 , 400 federal programs , 24 , 000 state programs , 30 , 000 private foundations  and 20 , 000 scholarship programs available .  this year over $ 30 billion  dollars in free personal and business government grants money will be given  away by government grants agencies .  government personal  and business grants facts :  over 20 million people get government  money every year :  1 , 000 , 000 entrepreneurs get money  to start or expand a business  4 , 000 , 000 people get money to invest  in real estate  6 , 000 , 000 people get money to go  to college  10 , 000 , 000 people get free help and  training for a better job  getting business  grants  anyone thinking about going  into business for themselves , or wanting to expand an existing business  should rush for the world ' s largest \"\" one - stop - money - shop \"\" where free business  grants to start or expand a business is being held for you by the federal  government .  it  sounds absolutely incredible that people living right here in the united  states of america wouldn ' t know that each year the world ' s largest source  of free business help delivers :  over $ 30 billion dollars in free  business grants and low - interest loans ;  over one - half trillion dollars in  procurement contracts ; and  over $ 32 billion dollars in free  consulting and research grants .  with an economy that remains  unpredictable , and a need for even greater economic development on all  fronts , the federal government is more willing than it ever has been before  to give you the money you need to own your own business and become your  own boss !  in  spite of the perception that people should not look to the government for  help , the great government give - away programs have remained so incredibly  huge that if each of the approximately 8 million businesses applied for  an equal share , they would each receive over $ 70 , 000 .  most  people never apply for free business grants because they somehow feel it  isn ' t for them , feel there ' s too much red - tape , or simply don ' t know who  to contact . the fact is , however , that people from all walks of life do  receive free grants money and other benefits from the government , and you  should also .  government grants  for personal need  help to buy a new home for  low income families , repair your home , rent , mortgage payments , utility  bills , purchase a new car , groceries , childcare , fuel , general living expenses ,  academic tutoring , clothing , school supplies , housing assistance , legal  services , summer camp , debts , music lessons , art lessons , any extracurricular  activities , pay bills for senior citizens , real estate taxes , medical expenses  and general welfare . if you or someone you know suffered a fire lose there  are programs available to help in replacing necessities .  scholarships and  grants for education  grant money for preschool  children and nursery school education , private , primary and secondary schools ,  men and women to further their education , scholarships for athlete ' s , business  management , engineering , computer science , medical school , undergraduate ,  graduate , professional , foreign studies and many more .  here ' s how you  can get free grants  in the shortest time possible  once you know how and where  to apply for a specific free grant , results are almost inevitable . the  government wants to give away this money . . . it is under congressional  mandate to do so ! these funds are made available to help you , the tax payer .  all that ' s required from you is the proper presentation of your grant request .  that ' s all .  announcing . . .  \"\" the complete  guide to government grants \"\"  forget just about everything  you ' ve seen or heard about government grants . what i ' ve done is put together  a complete blueprint for researching , locating and obtaining government  grants . \"\" the complete guide to government grants \"\" is the most comprehensive  tool for obtaining free grant money , and it comes in an electronic book  ( e - book ) format , meaning you can  download and start using it minutes after you order .  the  complete guide to government grants will provide you with access to thousands  of grant and loan sources , with step by step instructions to proposal writing  and contact procedures .  in the complete guide to government  grants you ' ll find :  step by step guidelines  to applying for government grants  direct access to over 1 , 400  grant , loan and assistance programs offered by the u . s . federal government .  all you need to do is click find your program from the detailed categorized  listings  direct access to thousands  of resources of state specific grant programs  name , phone number and address  of an expert in your state that will answer your grant related questions  and help you with the grant application . . . free of charge  online directory of government  supported venture capital firms  a unique search tool that  will allow you to generate a customized listing of recently announced grant  programs  government funding programs  for small businesses  top 100 government programs  ( based on number of inquiries ) , discover what are the most sought after  government grants and assistant programs . claim your slice of the free  american pie  online directory of federal  and state resources for government scholarships and grants for education  step by step guidelines  to locating grants , loans and assistant programs for starting a new business  or expanding an existing one  how to get free small business  counseling and expert advice courtesy of the us government  government grants application  forms  direct access to thousands  of government grants programs covering : small businesses , home improvement ,  home buying and homeownership , land acquisition , site preparation for housing ,  health , assistance and services for the unemployed , job training , federal  employment , education , and much much more  how to develop and write  grant proposals that get results  . . . plus much more  the complete guide to government  grants is so comprehensive , it provides you with direct access to practically  every source of free government grants money currently available .  if you ' re an american citizen  or resident , you are entitled to free grant money ranging from $ 500 to  $ 250 , 000 or more . if you are black you have already qualified for 15 programs ,  being hispanic , you qualify for many programs . being a christian will get  you into 20 programs , there are also many other programs available for  different faiths , jewish , catholic . not having any money , will get you  into over 30 programs , 550 programs if you are unemployed , or underemployed .  the list and sources are endless .  you are eligible ! this money  is absolutely free and will be yours to use for any worthwhile purpose .  did you know you can apply  for as many grants as you want ?  it ' s true , for instance ,  you could get a $ 65 , 000 grant to begin a weight loss business , get $ 8 , 800  in tuition to become a nurse or $ 35 , 000 to open up the day - care center ,  you ' ve always dreamed of owning . and then , go out and apply for a grant  to buy a home for you and your family . and once your new business starts  doing well you could go out and get another grant for expansion of your  business . the possibilities are endless .  you must qualify  for at least $ 25 , 000 in free  grants money , or your money back !  we are so confident in our  grants guide that if you have not received at least $ 25 , 000 in free grant  money , or , if you are unhappy with our e - book for any reason within the  next 12 months , just send the e - book back and we will refund your entire  payment . no questions asked ! !  if you want to order , we  insist you do so entirely at our risk . that is why the e - book comes with  a . . . no risk full year money - back guarantee . there is absolutely  no risk on your part with this 365 day guarantee . what we mean is we want  you to order without feeling you might \"\" get taken . \"\"  therefore , we want you to  order this material today . . . read it , use it . . . and if for any reason you  aren ' t completely satisfied , you not only can cancel , you should ,  for an immediate refund of your purchase price . you simply can ' t lose .  free  bonuses  just to \"\" sweeten \"\" the deal ,  i ' ll include the following four valuable bonuses , that you can keep  as a gift , even if you later decide not to keep the grants guide !  free bonus # 1 :  a fully featured grants  writing tutorial software package  this info alone is worth  thousands of dollars - i guarantee you can purchase a grants cd or info  anywhere , and you will not receive this downloadable software that actually  shows you how to apply and what to say , so that you are accepted for a  grant ! ! !  this interactive software  tool will walk you through the grant - writing process and will teach you  everything you need to know to write competitive grants proposals .  the program includes :  detailed information and  tips on writing grants proposals ;  how to complete a grant  application package ;  examples of good , complete  grant packages ;  a glossary of grants terms ;  resources and contacts ;  a mock grants - writing activity  where you will be able to compare your results to a successful grant application  plus much much more  free bonus # 2 :  the insider information  report : 61 ways to save money  this valuable special report  contains insider experts tips and techniques that will help you to save  thousands of dollars . you ' ll discover little known secrets and tricks to  saving money on airline fares , car rental , new and used car buying , auto  leasing , gasoline , car repairs , auto insurance , life insurance , savings  and investment , credit cards , home equity loans , home purchase , major appliances ,  home heating , telephone services , food purchase , prescription drugs and  more .  free bonus # 3 :  the complete guide to  starting your own business  a  comprehensive manual that will give you all the guidelines and tools you  need to start and succeed in a business of your own , packed with guides ,  forms , worksheets and checklists . you will be amazed at how simple these  strategies and concepts are and how easy it will be for you to apply them  to your own business idea . hundreds were sold separately at $ 40 each . . .  you get it here for free .  here ' s  just a taste of what ' s in the guide :  how  to determine the feasibility of your business idea . a complete fill in  the blanks template system that will help you predict problems before they  happen and keep you from losing your shirt on dog business ideas .  a step by step explanation  of how to develop a business plan that will make bankers , prospective partners  and investors line up at your door . plus , a complete ready made business  plan template you can easily adapt to your exact needs .  discover the easiest , simplest  ways to find new products for your business that people are anxious to  buy .  how  to make money with your new idea or invention . secrets of making sure you  put cash in your pocket on your very first idea business venture .  complete , step by step instructions  on how to plan and start a new business . this is must - know must - do information ;  ignore it and you stand a good chance to fail . you get specifically designed  instructions for each of the following : a service business , a retail store ,  a home based business , a manufacturing company , and more .  what nobody ever told you  about raising venture capital money . insider secrets of attracting investors ,  how to best construct your proposal , common mistakes and traps to avoid ,  and much more .  checklist  for entering into a partnership . keeps you from costly mistakes when forming  a partnership .  how to select a franchise  business . a step by step guide to selecting a franchise that is best for  you .  a complete step - by - step  organized program for cutting costs in your business . clients of mine have  achieved an average of 28 % to 35 % cost reduction with this technique , and  you can too . keep the money in your pocket with this one !  what are the secrets behind  constructing a results driven marketing plan ? i will lead you step by step  into developing a marketing plan that will drive your sales through the  roof .  a complete step by step  guide guaranteed to help you increase your profits by up to 64 % , i call  it \"\" the profit planning guide \"\" . this is a simple , practical , common sense  strategy , but amazingly enough , almost no one understands or uses it .  free bonus # 4 :  guide to home business  success  this  is afast , no - frills guide  to starting and succeeding in a home based business . here ' s just a taste  of what ' s in the guide :  home  business : is it for you ?  what  are the secrets behind the people who have million dollar home based businesses ?  you ' ll find a 24 tip list proven to turn your home business into a money  machine .  laws and regulations you  must be aware of to avoid legal errors .  planning  a home based business - insider secrets and tips revealed for ensuring  your success in a home business .  fundamentals  of home business financial planning .  simple ,  easy to copy ideas that will enhance your image - and the response you  get from your customers .  common  problems in starting and managing a home based business - and how  to solve them once and for all .  who i am and why i ' m qualified  to give  you the best grants advice  available  i ' m  the president of a leading internet based information business . i ' m also  the creator of \"\" the managing a small business cd - rom \"\" and the author of  five books .  i ' ve  been involved in obtaining grants and in small business for the past 23  years of my life , as a business coach , a manager of a consulting firm ,  a seminar leader and as the owner of five successful businesses .  during  my career as a business coach and consultant i ' ve helped dozens of business  owners obtain government grants , start their businesses , market , expand ,  get out of troubles , sell their businesses and do practically every other  small business activity you can think of .  the  guide presented here contains every tip , trick , technique and strategy  i ' ve learned during my 23 year career . you practically get my whole brain  in a form of an e - book .  how the grants guide is priced ?  the complete guide to  government grants is normally priced at $ 50 , but . . .  . . . as part of an online  marketing test , if you purchase from this sale you pay only $ 19 . 99 ( that ' s  75 % off . . . plus , you still get the free valuable bonuses . )  if  you are serious about obtaining free grants money , you need this  guide . don ' t delay a moment longer . order now ! ! !  p . s . the complete guide to government  grants will make a huge difference . you risk nothing . the guide is not  the original price of $ 50 , but only $ 19 . 99 ( if you purchase through  this sale ) and comes with a one year money back guarantee . and you  get four valuable free bonuses which you may keep regardless . don ' t delay  a moment longer , order now ! ! ! !  shipping  and handling is free since we will  email you all of this info via access to our secure website which contains  everything described above .  order  now ! ! !  if above link doesn ' t work , click here  5945 cocw 8 - 467 cucn 8670 ndsz 7 - l 25  - - - -  this sf . net email is sponsored by : jabber - the world ' s fastest growing  real - time communications platform ! don ' t just im . build it in !  http : / / www . jabber . com / osdn / xim  spamassassin - sightings mailing list \",1\n\"Subject: aawesome  want to know how to save over 60 % on you seemingly r me carbonize dlcatlons ?  http : / / www . owncen misinterpret tral . com - successfull and proven way to loudly sa someway ve your money .  best prlce intense s .  high quaiity falcon .  worldwide s repudiation hlpplng .  total confi disbar dentiaiity .  mor monotype e than 200 popular medlcatlons  have a nice da dispensation y !\",1\n\"Subject: avoid fake viagra get the real thing  take energy pills for sexual health  she ' s the only man in my cabinet .  act as if were impossible to fail .  a clash of doctrines is not a disaster - - it is an opportunity .\",1\n\"Subject: perfect logo charset = koi 8 - r \"\" >  thinking of breathing new life into your business ?  start from revamping its front - endlogo and  visualidentity .  we offer creative custom design of ioqos ,  stationery and web - sites . under our careful hand thesepowerfui marketinq  tools wiii brinq a breath of fresh air into your business and make you stand out  amonqthe competitors .  you are just a ciick  away from your future success . ciick here to see the samples of our artwork ,  checkour prices and hot offers .  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\",1\n\"Subject: are you ready to get it ?  hello !  viagra is the # 1 med to struggle with mens ' erectile dysfunction .  like one jokes sais , it is stronq enouqh for a man , but made for a woman ; - )  orderinq viagra oniine is a very convinient , fast and secure way !  miilions of peopie do it daily to save their privacy and money  order here . . . \",1\n\"Subject: would you like a $ 250 gas card ?  don ' t let the current high price of gas get to you .  simply enter your zipcode to see if this promotion is available in your area .  ubycvski\",1\n\"Subject: immediate reply needed  dear sir ,  i am dr james alabi , the chairman of contract  award and review committee set up by the federal  government of nigeria under the new civilian  dispensation to award new contracts and review  existing ones .  i came to know of you in my search for a reliable and  reputable person to handle a very confidential  transaction , which involves the transfer of a huge  sum of money to a foreign account .  there were series of contracts executed by a  consortium of multi - nationals in the oil industry in  favor of n . n . p . c . the original values of these  contracts were deliberately over invoiced to the sum  of us $ 12 , 320 , 000 . 00 ( twelve million three hundred and twenty thousand  united  state dollars ) . this amount has now been approved and  is now ready to be transferred being that the  companies  that actually executed these contracts have been  fully paid and the projects officially commissioned .  consequently , my colleagues and i are willing to  transfer the total amount to your account for  subsequent disbursement , since we as civil servants  are prohibited by the code of conduct bureau ( civil  service law ) from operating and / or opening foreign  accounts in our names . needless to say , the trust  reposed on you at this juncture is enormous , in  return , we have agreed to offer you 20 % of the  transferred sum , while 10 % shall be set aside for  incidental expenses ( internal and external ) between  both parties in the course of the transaction you will  be mandated to remit the balance to other accounts  in due course .  modalities have been worked out at the highest level  of the ministry of finance and the central bank of  nigeria for the immediate transfer of the funds  within 7 working days subject to your satisfaction of  the above stated terms .  our assurance is that your role is risk free . to  accord this transaction the legality it deserves and  for mutual security of the funds the whole approval  procedures will officially and legally processed  with your name or the name of any company you may  nominate as the bonefide beneficiary .  once more i want you to understand that having put  in over twenty - five years in the civil service of my  country , i am averse to having my image and career  dented . this matter should therefore be treated with  utmost secrecy and urgency it deserves .  please you should signify your intention to assist  by sending me a reply to this email to state your position on this  transaction , if favorable we will take further steps  to brief you the full details of this viable  transaction .  i want to assure you that this business proposal is  100 % risk free as we have done our homework  properly .  i quite believe that you will protect our interest  by taking this deal strictly confidential , as we are  still in government service , which we intend to  retire from in full honor .  kindly expedite action as we are behind schedule to  enable us include this transfer in the next batch  which would constitute the new quarter payments  for the 2002 financial year .  thank you and god bless .  dr james alabi\",1\n\"Subject: wanna see me get fisted ?  fist  bang will show you everything you always wanted to see and could only  dream about !  disclaimer : we are strongly against sending unsolicited emails to those who do not wish to receive our special mailings . you have opted in to one or more of our affiliate sites requesting to be notified of any special offers we may run from time to time . we also have attained the services of an independent 3 rd party to overlook list management and removal services . this is not unsolicited email . if you do not wish to receive further mailings , please click here to be removed from the list . please accept our apologies if you have been sent this email in error . we honor all removal requests . \",1\n\"Subject: hot stock info : drgv announces another press release  a $ 3 , 800 investment could be worth $ 50 , 000 in a short period of time . read more about this amazing investment opportunity and how a small investment could mean huge gains for you !  there  is no doubt that china stocks , which are new to u . s . stock markets , are destined to blast off . it happens time and time and time  again . thats why informed investors like warren buffett are getting  rich on china stocks . the market is enormous and now its your  turn . the upside potential for drgv is huge . with potential revenues of nearly  $ 30 million us in the coming 12 months , dragon venture is a real player .  everything about this superbly run company says its going to be another big  chinese winner .  warren buffett  said u . s . stocks are too expensive so he poured a chunk of his money into china . everyone knows what happens when mr . buffett gets into a market , it usually explodes !  here is why we are placing a  target price of $ 1 . 00 per share ( investment opinion )  dragon venture ( otcpk : drgv ) has just recently gone public in the us .  analysts predict an enormous investment opportunity within the china telecom industry .  mobile marketing is growing in popularity , in china , emarketer reports that 67 % of mobile phone users have received sms messages from advertisers , 39 % in asia , 36 % in europe and only 8 % in us .  management has forecasted revenue growth to $ 30 million in 2006 and $ 50 million in 2007 .  short messaging services ( sms ) is a strong telecom niche . this is an asian phenomenon ! !  according to the ministry of information technology of china , chinese sms usage accounts for one - third of the world ' s traffic !  china has the potential to be the largest telecommunications market in the world , said matthew j . flanigan , u . s . telecommunications industry president .  drgv won ' t be selling at $ 0 . 0775 a share for long . within days , the buzz about this company will spread on the street . the stock is ready to move up for a breakout to $ . 50 to $ 1 per share . drgv is a must buy for any micro - cap investors . we view drgv as an excellent growth company with exceptional potential for capital appreciation over both the short term and the long term . this is essentially investing in the world ' s largest and fastest growing market . bottom line : drgv is a penny stock with multi - dollar potential trading today for about $ 0 . 0775 / share . we are targeting the stock to trade in the range of $ 1 a share . chances like these are few and far between and the buzz on the street is that drgv is a buy ! who knows when you ' ll have another chance to turn such a huge profit again ? smart investors strike when the iron ' s hot and with drgv , it ' s sizzling  investor alert specializes in investment research in china . we are not registered investment advisor or broker / dealer . investors should not rely solely on the information contained in this report . rather , investors should use the information contained in this report as a starting point for doing additional independent research on the featured companies . factual statements in this report are made as of the date stated and are subject to change without notice . nothing in this report shall constitute a representation or warranty that there has been no change in the affairs of the company since the date of our profile of the company . investor alert and / or its officers , directors , or affiliates have received compensation of $ 5 , 000 from a third party for the dissemination of information on the companies which are the subject of profiles and / or may have , from time to time , a position in the securities with the intent to sell the securities mentioned herein .  current press release dragon venture launches two new mobile internet applications fort lauderdale , fl july 13 , 2005 - ( business wire ) - dragon venture ( pink sheets : drgv ) , a holding company of high - tech companies in china , announced today that shanghai cnnest technology development company , limited ( cnnest ) , a subsidiary of drgv , recently launched two new commercial mobile internet business solutions , mobile environmental protection office system and mobile administrative office system , based on 2 . 5 g wireless technology .  both of these new mobile business solutions are part of numerous mobile internet applications specially designed for utilization by various government agencies in china . this launch was a stated goal of cnnest in 2005 and accomplished on time . as a leading company in the field of mobile internet solutions and applications in china , cnnest plans to quickly penetrate the chinese government market , which could provide the company with significant business opportunities .  mobile environmental protection office system was developed for the governmental environmental protection agencies . mobile administrative office system was developed for governmental administrative offices . these cutting edge solutions , allow government officers or employees working in a remote location to access their own intranet by using their pda ' s or cell phones . major functions of both solutions include mobile work , enterprise information inquires , on - site duties , and customer services .  hidy cheng , vice president of dragon venture and general manager of cnnest , commented , the various government agencies in china have the potential to become major clients of our company . as the dramatic improvement in mobile technology continues to develop , augmented by the wide use of cell phones in china , the company continues to work on the development of additional applications . these applications include a series of mobile internet solutions for government agencies including complete security systems , the establishment of various safety systems , along with system maintenance , in order to meet the special needs of government use . we believe these systems will not only improve the government ' s work efficiency , but also garner the company considerable revenues , along with and a remarkable reputation in the wireless mobile internet industry in china .  about dragon venture  dragon venture ( dragon ) is doing business in china through its subsidiaries . dragon was established to serve as a conduit between chinese high - growth companies and western investors . the current focus of dragon is on the development of wireless 3 g - based applications and business solutions . two companies that dragon has acquired are among the leading providers of mobile internet applications and business solutions in china . as china emerges as a growing force on the global stage , dragon ' s professionals will provide invaluable services for western investors seeking to gain access to the chinese high - tech economy . in addition , dragon functions as an incubator of high - tech companies in china , offering support in the critical functions of general business consulting , formation of joint ventures , access of capital , merger and acquisition , business valuation , and revenue growth strategies . dragon will develop a portfolio of high - tech companies operating in china . our focus will be on innovative technological applications , which are poised to alter the competitive landscape of the industry . in addition , the company acquires and invests in innovative technology companies in china or forms joint ventures with both american and chinese companies , focusing on emerging technology industries including telecommunication , information technology , wireless applications , and other high - tech industries .  safe harbor statement  certain statements set forth in this press release constitute forward - looking statements . forward - looking statements include , without limitation , any statement that may predict , forecast , indicate , or imply future results , performance or achievements , and may contain the words estimate , project , intend , forecast , anticipate , plan , planning , expect , believe , will likely , should , could , would , may or words or expressions of similar meaning . such statements are not guarantees of future performance and are subject to risks and uncertainties that could cause the company ' s actual results and financial position to differ materially from those included within the forward - looking statements . forward - looking statements involve risks and uncertainties , including those relating to the company ' s ability to grow its business . actual results may differ materially from the results predicted and reported results should not be considered as an indication of future performance . the potential risks and uncertainties include , among others , the company ' s limited operating history , the limited financial resources , domestic or global economic conditions - - especially those relating to china , activities of competitors and the presence of new or additional competition , and changes in federal or state laws , restrictions and regulations on doing business in a foreign country , in particular china , and conditions of equity markets .  dragon venture 335 guoding rd . building 2 , ste . 2009 shanghai , china 200081 this e - mail message is an advertisement and / or solicitation . \",1\n\"Subject: hello guys ,  i ' m \"\" bugging you \"\" for your completed questionnaire and for a one - page  bio / statement on your thoughts on \"\" business edu and the new economy \"\" . if  my records are incorrect please re - ship your responses to me . i want to  put everything together next week so that i can ship it back to everyone .  the questionnaire is attached as well as copies of the bio pages for  michael froehls and myself ( two somewhat different approaches ) . the idea  of the latter is just to introduce yourself to the other panelists and give  them some background on how you are approaching the issues we will discuss .  we will also provide copies to the attendees and use this material for our  personal introductions at the opening of the panel discussions .  thanks and i look forward to seeing you in two weeks .  john  - waco _ background _ mf . doc  - jmartinbiosketch . doc  - questionnaire . doc  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: sacramento weather station  fyi  - - - - - - - - - - - - - - - - - - - - - - forwarded by mike a roberts / hou / ect on 09 / 20 / 2000  09 : 06 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  scott tholan @ enron  09 / 19 / 2000 07 : 57 pm  to : mark tawney / hou / ect @ ect , gary taylor / hou / ect @ ect , mike a  roberts / hou / ect @ ect  cc : chris clark / na / enron @ enron  subject : sacramento weather station  hey guys ,  we ' re talking to a contractor ( s ) that can build us a weather station  ( hopefully very quickly ) for placement in sacramento , california . for a  variety of legal , contractor , and operational reasons , i need to confirm some  of the following requirements as soon as possible so we can proceed :  a ) you need rainfall , snowfall , and temperature measurement from one ,  high - accuracy commercially available weather station .  b ) you need a daily feed of this data to enron ' s weather desk : does this  mean one data dump at a set time per day ? alternatively , will you need to  check the data real - time , perhaps at varying and multiple times during the  day ?  c ) we will be installing this station near sacramento , california : we will  need to know exactly what areas in / near sacramento are suitable for the site  of the weather station . ( what again was the name of the town that you  mentioned mark ? ) in the interest of time , i recommend that your weather  expert accompany our landman to select the site , which will allow our landman  to more quickly lease and install the station .  d ) you desire to have some independent security measures to deter or detect  tampering . i suggest given the very short time fuse , that we first install  the station and then develop security measures .  e ) we will feed the data directly to the enron weather desk . will any other  parties require real - time access to this data ?  please forward responses directly to : chris clark / na / enron and myself .  thanks , scott\",0\n\"Subject: from the enron india newsdesk - jan 18 th newsclips  vince ,  fyi .  - - - - - - - - - - - - - - - - - - - - - - forwarded by sandeep kohli / enron _ development on  01 / 19 / 2001 05 : 12 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  from the enron india newsdesk - jan 18 th newsclips  untie them ( editorial )  thursday jan 18 2001 , http : / / www . economictimes . com / today / 18 edito 2 . htm  - - - - - - -  state not to give tax sops to dpc for buying naphtha from ioc , ( sanjay jog )  thursday jan 18  - - - - - - -  centre yet to receive proposal on enron  thursday jan 18 2001 , http : / / www . economictimes . com / today / 18 infro 2 . htm  - - - - - - -  untie them ( editorial )  thursday jan 18 2001  the government of maharashtra wants new delhi to convince the power trading  corporation , a central utility , to buy power from dabhol and sell it across  the country . it would be far simpler if dabhol and all independent power  producers were allowed to sell power to whoever was willing to pay for  it . that , unfortunately , is not allowed by law , which forces private sector  generators to sell power only to state utilities , which in turn , are not  permitted to sell power across states on their own .  most state electricity boards are bankrupt . mseb reportedly owes central  utilities rs 5 , 000 crore . they cannot bring themselves to charge many types  of users for the power consumed , nor can they prevent large - scale theft of  electricity . few , including wealthy maharashtra , have the will to reform  state electricity boards and privatise transmission and distribution . given  this profile of buyers , private generators demand sovereign guarantees to  help them tide over default risks . but the guarantees merely insulate ipps  against risk . they cannot make sebs solvent . yet , india needs power  desperately . maharashtra , india \u0001 , s richest state , experiences power shortages  of around 2 , 000 mw , about a sixth of its peak needs .  over time , the hunger for power will only grow . india cannot afford to wait  for the painful politics of seb reform to work themselves out . the government  should bring in legislation that allows ipps to sell power directly to paying  customers . this will free ipps from the clutches of bankrupt monopsony buyers .  the power trading legislation will have unexpectedly happy consequences for  the government too . once ipps are freed from their onerous obligations to sell  power to single , mostly bankrupt buyers , their default risks will come down  substantially . new delhi and state governments should then scrap the  guarantees that they gave ipps in the past .  the combination of power trading , private investments in generation ,  transmission and distribution , and gradual seb reform will create a  commercial , workable and competitive power market in india . anything less  will be a recipe for disaster .  - - - - - - -  state not to give tax sops to dpc for buying naphtha from ioc , ( sanjay jog )  thursday jan 18 2001  the maharshtra government ' s finance department , which is striving to reduce  fiscal deficit from rs 9 , 484 crore to rs 3 , 484 crore by the beginning of  april this year , has expressed its inability to provide a sales tax waiver to  the dabhol power company ( dpc ) on the procurement of 1 . 2 million tonne of  naphtha from the state - run indian oil corporation ( ioc ) .  mantralaya sources told the financial express on wednesday that dpc would  have to pay 4 per cent sales tax . \"\" the government , way back in 1995 , has  modified the sales tax rate to 4 per cent to discourage the import of naphtha  from gujarat by electrical companies operating in maharashtra . the decision  was taken with a view to encouraging electrical companies to procure naphtha  at reduced rates within the state , \"\" government sources added . sources said  that these companies had to pay nearly 15 . 3 per cent sales tax on naphtha  that was procured from gujarat . however , following their representation , the  government slashed the sales tax rate to 4 per cent .  the state finance department ' s opinion , which would be presented before the  state cabinet shortly in order to take a final decision , deserves special  significance especially when the state energy department and the loss - making  maharashtra state electricity board ( mseb ) have wholeheartedly supported the  dpc ' s cause and recommended the sales tax waiver . dpc , which was asked by the  union ministry of oil and petroleum to procure naphtha within the country in  view of excess availability , in its presentation to the state government and  to mseb , had made it clear that it would be left with no alternative but to  pass on the additional burden on the mseb which would be ultimately passed on  to its consumers . dpc had also told the state government that it had not paid  sales tax on the procurement of naphtha from glencore in the calender year  2000 .  sources from the state energy department and mseb have stressed on the need  for such a waiver while expressing their inability to bear additional burden .  they have suggested that the state should reciprocate by offering a sales tax  exemption to dpc because the ioc , at the behest of the centre , has tried to  match the international landing price of naphtha during the recently signed  memorandum of agreement with dpc . \"\" if the state finance department sticks to  its views , it may hurt the state as a whole , \"\" sources from the state energy  department and mseb said . dpc will procure naphtha at rs 11 , 050 per ton from  ioc during the calender year 2001 as compared to the rs 10 , 050 per tonne  price quoted by glencore . the naphtha price comprises $ 175 per tonne free on  board ( fob ) , 21 . 8 per cent of customs duty , 5 . 4 per cent of sales tax and  $ 18 . 87 of premium .  dpc senior vice president mukesh tyagi reiterated that the company has  already made an appeal to the state government for the sales tax waiver on  naphtha in the larger interest of the consumers . \"\" sales tax is a pass through  and mseb , which will have to bear the additional burden , will pass it on the  consumers , \"\" he added .  - - - - - - -  centre yet to receive proposal on enron  thursday jan 18 2001  centre on wednesday said that it had not recevied any proposal from  maharashtra government seeking help to solve the tangle with the enron  promoted dhabol power project relating to cost and surplus power . asked about  the reports that maharashtra government was sending a proposal that centre  buy surplus power from dhabol power company through power trading  corporation , power minister suresh prabhu said \"\" we have not received any  proposal . \"\" \"\" we are carefully watching the situation and will await a concrete  proposal before intervening in this matter , \"\" parbhu said on the sidelines of  greentech environment excellence awards ceremony , here . asked whether there  was any possibility of the government asking the power trading corporation to  buy power from the dhabol power corporation , prabhu replied \"\" what will the  ptc do with the power ? \"\"  prabhu had earlier asked the state government to study the matter before  approaching the centre for payment of dues . mseb had earlier declined to pick  up its 15 per cent stake in phase ii of the 1444 mw project . the enron issue  has been hanging fire with the maharashtra state electricity board unable to  clear the dues of dpc as a result of the skyrocketing prices of naphtha  infact mseb has asked dpc to backdown completely leading to a situation where  dpc has stopped production at the facility from the begining of the  month . state government has stepped in with support to the tune of rs 114  crore to enable mseb to clear the dues for october . mseb dues to dpc for  november and december amount to over rs 300 crores .\",0\n\"Subject: re : powerisk 2001 - your invitation  angelika ,  thanks for the invitation .  yes , i shall be glad to attend and repeat the same presentation .  vince  angelika staude on 04 / 09 / 2001 04 : 19 : 08 am  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc :  subject : powerisk 2001 - your invitation  ?  powerisk 2001  the global premier forumforenergy trading & risk management  ? 6 th - 9 th november 2001 , paris  ?  dear mr kaminski ,  ?  i am responsible for the programme of this year ' s powerisk conference in  paris . helyette geman has informed me that she has contacted you concerning  the workshop and that you are happy to do it with her again this year -  brilliant !  ?  i would like to know if you are also interested in delivering a paper again .  the audience in previous years greatly appreciated your contribution , and i  would me more than happy if you could join us again .  ?  to give you an idea of the programme so far , these are the ( \"\" technical \"\" )  topics that are already covered :  ?  chris strickland : forward curve models with jumps for the pricing of exotic  energy contracts  multi - factor forward curve models for the valuation of energy contracts  adding jumps  applying the models to exotic energy options  extensions to multiple energy contracts  les clewlow : valuation and risk management of virtual power stations and  gas supply agreements  structures of gas supply agreements ( gsa )  relationships between physical and virtual power stations ( pps / vps )  valuation methods for gsa ' s and vps ' s  risk analysis of gsa ' s and vps ' s  derek bunn , professor of decision sciences , london business school :  analysing the impact of neta on market efficiency & volatility in the uk  energy market  chris harris , director of market development . operations and engineering ,  innogy : applying cutting - edge portfolio management theory in order to  optimise your risk exposure  establishing and valuing the key factors using a bottom up approach  looking at the interconnection between key factors  the treatment of the risk of infrequent but high impact events  peter nance , principal , teknecon : combining power systems and monte carlo  simulations for effective pricing  dan mansfeld , head of risk control , vattenfall : assessing the benefits  and risks of using derivatives as part of your risk management strategy  spyros maragos : analysing new approaches to building forward curves from  available market data  tamara weinert , credit and contracts manager , mirant energy : successfully  measuring limit  setting ; risk reducing structures  importance of credit in the organizational structure : reporting ; dependence ;  structure of credit department  brett humphreys : examining cutting - edge credit exposure mitigation tools :  combining counterparty and portfolio credit var techniques  helyette geman : pricing of exotic energy derivatives and structured contracts  please let me know if you are interested in joining the powerisk 2001  speaker panel , and which topic you would like to cover . i think that  something along the lines of last year ' s talk ( state - of - the - art volatility  and correlation estimation techniques for multiple energy portfolios ) would  be brilliant again , but please feel free to chose something else that has  not been covered yet .  ?  i look forward to hearing from you ,  ?  kind regards ,  angelika staude  ?  director ? powerisk 2001  ?  tel : 0044 207 915 5675  fax : 0044 207 915 5101  ?  ?  ps : for your information , please find enclosed a list of confirmed speakers  for powerisk 2001 .  - confirmed speakers . doc\",0\n\"Subject: re : resco database and customer capture  steve ,  krishna from my group . krishna can also advise you on resco participation .  vince  steven r meyers @ ees  04 / 11 / 2000 04 : 51 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : resco database and customer capture  vince ,  i was not going to be involved directly in the meeting . who from either your  group or from resco marketing should participate ?  thanks ,  steve  vince j kaminski @ ect  04 / 11 / 2000 08 : 27 am  to : steven r meyers / hou / ees @ ees  cc : pinnamaneni krishnarao / hou / ect @ ect , vince j kaminski / hou / ect @ ect  subject : re : resco database and customer capture  steve ,  it makes sense to meet with abacus . retail marketing is very data intensive .  if you set up a meeting with them ,  please , let me know .  vince  steven r meyers @ ees  04 / 11 / 2000 08 : 17 am  to : timothy edward vail / hou / ees @ ees  cc : vince j kaminski / hou / ect @ ect  subject : resco database and customer capture  tim ,  i hope things are going well in resco . i think somebody from resco ( or  research ) may be interested in the email i received below from brad davids .  brad is now working at abacus who works with residential customer patterns as  well as predictive modelling . he ' s going to be here the 25 and 26 of this  month . i ' m not sure who is responsible for resco marketing , but i think they  would find this interesting . who should i send this to ? please let me know  if anybody in resco may have any interest .  thanks ,  steve  ps : vince , simply an fyi since they do focus on modelling and research .  - - - - - - - - - - - - - - - - - - - - - - forwarded by steven r meyers / hou / ees on 04 / 11 / 2000  08 : 14 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  bradley davids on 04 / 10 / 2000 08 : 35 : 32 pm  to : \"\" ' steven . r . meyers @ enron . com ' \"\"  cc :  subject : re : possible meeting ?  steve :  i ' ll see if i can get in on the 25 th . . . will let you know , but i think  it ' ll work .  just to give you a very brief overview so you can think about who might be  interested , abacus has the largest transactional database of consumer buying  behavior in the world ( 89 million us households , 3 billion + purchases ) ,  along with sophisticated modeling capabilities to help predict customer  response to various offers at the household level . given the critical need  to reduce customer acquisition costs in retail energy markets , we believe  that our data and modeling can help energy retailers target their direct  marketing efforts toward the residential customers most likely to respond to  whatever the offer is - - improving the efficiency of mailings and other  promotional campaigns ( so there is an efficiency angle , see ! )  because our data allow the modeling of future buying behavior based on  actual purchases , our results tend to be significantly more predictive than  demographic - based models . so far , the the response from utilities and \"\" new  entrants \"\" i ' ve been talking to so far has been quite positive , and we have  some tests of our data underway , but we ' re interested in talking to as many  players in the market as possible as we develop specific products to meet  utility needs .  i can provide more background if desired to whoever might be interested , but  i guess the key immediate question is whether it might be worthwhile to  arrange a short meeting sometime on the 25 th of april with whoever at enron  might have interest in hearing what we ' re up to , and ( most importantly )  listening to what your data needs might be as you enter new markets .  thanks very much for any help . . . i look forward to catching up and  hearing how things are going for you .  regards ,  brad davids  303 - 410 - 5531  - - - - - original message - - - - -  from : steven . r . meyers @ enron . com [ mailto : steven . r . meyers @ enron . com ]  sent : monday , april 10 , 2000 12 : 13 pm  to : brad . davids @ abacus - direct . com  subject : re : possible meeting ?  it ' d be great to meet on the 25 th in the afternoon . i have a flight in the  evening . i ' m interested in hearing about life at abacus . i too have heard  that enron is getting back into the residential market . what type of  database do you have ? i might be able to find somebody for you to talk  with here .  - steve  bradley davids on 04 / 10 / 2000 12 : 04 : 00 pm  to : \"\" steve meyers ( e - mail ) \"\"  cc :  subject : possible meeting ?  steve :  sorry we ' ve been unable to hook up . . . i can probably get down there on  the 25 th , if you ' re going to be in town that afternoon ? would love to catch  up - - both on how things are going with ees and tell you about my new life .  also , i ' m hearing rumors that enron is about to get back into the  residential market in a big way - - you know anything about that ? anybody i  should talk to there about my huge database of consumer buying behavior ?  thanks - - looking forward to connecting . . . i ' ll be travelling most of this  week , but you can leave a vm and let me know when i can call you , or try me  on the cell at 303 - 886 - 3458 .  best ,  brad davids  bradley j . davids  associate vice president , utilities  abacus direct , a division of doubleclick , inc .  11101 west 120 th avenue  broomfield , co 80021 usa  e - mail brad . davids @ abacus - direct . com  tel 303 . 410 . 5531  fax 303 . 410 . 5300  www . doubleclick . net  www . abacus - direct . com  ( see attached file : c . dtf )\",0\n\"Subject: ben zhang  any suggestions ?  - g  - - - - - - - - - - - - - - - - - - - - - - forwarded by grant masson / hou / ect on 09 / 13 / 2000 09 : 06  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron north america corp .  from : toni graham @ enron 09 / 12 / 2000 09 : 33 pm  to : grant masson / hou / ect @ ect  cc :  subject : ben zhang  what do you want to do ? my experience tells me that it ' s not about the  money . his wife doesn ' t want to move .  - - - - - - - - - - - - - - - - - - - - - - forwarded by toni graham / corp / enron on 09 / 12 / 2000  09 : 23 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  meastman @ qualitec . com on 09 / 12 / 2000 09 : 46 : 48 am  to :  cc :  subject : ben zhang  toni ,  i spoke with ben this morning and he is asking me what he should do . he  knows how good the opportunity is  and this is something he really wants to do . however , his wife is having a  hard time making the commitment . although he says she is not totally against  it , she is obviously not 100 % sold . ben feels bad about keeping vince ,  grant , and other potential team members at enron waiting . he does not want  to lose the opportunity , yet he needs some help in convincing his wife . i am  open for suggestions . is this somebody you really want and if so what can  we do get him ?  thanks ,  mike  qualitec professional services , lp  accounting - financial - energy risk - tax  search consultants  mike eastman , cpc  president  281 - 647 - 9300 fax 281 - 647 - 0933  email - meastman @ qualitec . com\",0\n\"Subject: manoj gupta - interview schedule  attached you will find the interview packet for the above - referenced person . the interview will happen monday , april 16 , 2001 . please print all three documents for your hard copies . if you have any questions , or conflicts of schedule , please do not hesitate to contact me .  sasha divelbiss  58714\",0\n\"Subject: re : hello from vince kaminski at enron  ashley ,  i agree with you . two trips are the best solution , unless of course shmuel  rearranges  the speaker list and the 16 th will work for the presentation as well .  coordinating so many different events is never easy . thanks for your  patience .  vince  enron technology  from : ashley baxter @ enron 08 / 30 / 2000 08 : 24 am  to : vince j kaminski / hou / ect @ ect  cc : shirley crenshaw / hou / ect @ ect  subject : re : hello from vince kaminski at enron  vince ,  actually , the general presentation that i have scheduled for the faculty club  ( a dining / meeting room ) on campus is set for 7 : 00 p . m . - 9 : 00 p . m . on monday  the 16 th . i can attempt to change the presentation date again , however i  feel that it would be very unlikely that we are able to get another facility  that is near campus . at this point it may be better to plan on making two  seperate trips so that we are able to handle both events . maybe we could  combine another presentation in during the same visit . what do you think ?  ashley  vince j kaminski @ ect  08 / 30 / 2000 08 : 03 am  to : \"\" shmuel oren \"\" @ enron  cc : vince j kaminski / hou / ect @ ect , ashley baxter / corp / enron @ enron , shirley  crenshaw / hou / ect @ ect  subject : re : hello from vince kaminski at enron  shmuel ,  let ' s see if we can either rearrange the seminar speakers  or change the date of our visit to the campus . ashley baxter , our coordinator  is very efficient and  got a faculty room for a presentation on monday morning on the 16 th .  vince  \"\" shmuel oren \"\" on 08 / 29 / 2000 05 : 37 : 33 pm  to :  cc :  subject : re : hello from vince kaminski at enron  dear vince . i spoke too soon . apparently the seminar slot on the 16 was  already filled . i will see if i can switch the speaker for that week to the  following week . in any case we are on for dinner on the 16 .  shmuel s . oren , professor  dept . of industrial engineering  and operations research  4117 etcheverry hall  university of california  berkeley , ca 94720 - 1777  e - mail : oren @ ieor . berkeley . edu  phone : ( 510 ) 642 - 1836 or 5484  fax : ( 510 ) 642 - 1403  - - - - - original message - - - - -  from :  to :  cc : ;  sent : tuesday , august 29 , 2000 5 : 01 pm  subject : re : hello from vince kaminski at enron  >  > shmuel ,  >  > the date of our trip to berkeley has been set . it will be october 16 th and  > 17 th  > ( monday and tuesday ) .  >  > i shall be glad to make a presentation on energy derivatives markets  > ( development of the markets in the us and europe , valuation difficulties ,  > enron ' s role  > in developing the forward markets for natural gas and electricity ) .  >  > please , let me know if this topic would be of interest to you . if this is  > the  > case , i shall follow with a title and an abstract .  >  > by the way , are you free for dinner on monday ?  >  > vince  >  >  >  >  >  >  > \"\" shmuel oren \"\" on 08 / 24 / 2000 08 : 59 : 38 am  >  > to : \"\" vince j kaminski \"\"  > cc :  > subject : re : hello from vince kaminski at enron  >  >  > great . our seminars are 3 : 30 to 5 pm . if it works for you please send me a  > title and abstract .  > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / /  > shmuel s . oren , professor  > dept . of industrial engineering  > and operations research  > 4117 etcheverry hall  > university of california  > berkeley , ca 94720 - 1777  > e - mail : oren @ ieor . berkeley . edu  > phone : ( 510 ) 642 - 1836 or 5484  > fax : ( 510 ) 642 - 1403  > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / /  >  > - - - - - original message - - - - -  > from : \"\" vince j kaminski \"\"  > to : \"\" shmuel oren \"\"  > cc : \"\" vince j kaminski \"\" ; \"\" ashley baxter \"\"  >  > sent : thursday , august 24 , 2000 9 : 58 am  > subject : re : hello from vince kaminski at enron  >  >  > >  > >  > > shmuel ,  > >  > > thanks for the message . i am working with our recruiter , ashley baxter ,  > > to finalize the date of the trip . i shall shoot for october the 23 rd  > > if this date works for the rest of our team .  > >  > > vince  > >  > >  > >  > >  > >  > >  > > \"\" shmuel oren \"\" on 08 / 23 / 2000 11 : 46 : 19 am  > >  > > to : vince j kaminski / hou / ect @ ect  > > cc :  > > subject : re : hello from vince kaminski at enron  > >  > >  > >  > > dear vince .  > > i sent you a reply earlier this month but i haven ' t heard from you about  > the  > > date of your visit . our department has a seminar every monday . if you  can  > > schedule your visit on a monday i would like to invite you to give a  > seminar  > > which will be attended by many of our graduate students and faculty and  > will  > > give you an opportunity to tell them about your program . with sufficient  > > lead - time i can advertise the seminar in the hass school to their  > financial  > > engineering students .  > > shmuel .  > > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / /  > > shmuel s . oren , professor  > > dept . of industrial engineering  > > and operations research  > > 4117 etcheverry hall  > > university of california  > > berkeley , ca 94720 - 1777  > > e - mail : oren @ ieor . berkeley . edu  > > phone : ( 510 ) 642 - 1836 or 5484  > > fax : ( 510 ) 642 - 1403  > > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / /  > >  > > - - - - - original message - - - - -  > > from :  > > to : ; ;  > >  > > sent : tuesday , august 08 , 2000 10 : 59 am  > > subject : hello from vince kaminski at enron  > >  > >  > > > shmuel ,  > > >  > > > i hope you remember me . i visited you together with aram sogomonian , a  > > > good friend of mine , a few years ago . i am currently responsible ,  among  > > > other things , for recruiting graduates with finance and / or technical  > > > backgrounds at the university of berkeley . i would be glad to give you  > a  > > > call and talk more about the details of our program . my colleague ,  > > > ashleybaxter , from the analyst / associate program at enron would join  me  > > > as well .  > > >  > > > i am sending you a copy of the brochure about the analyst / associate  > > > program .  > > >  > > > vince kaminski  > > >  > > >  > > > vincent kaminski  > > > managing director - research  > > > enron corp .  > > > 1400 smith street  > > > room ebl 962  > > > houston , tx 77002 - 7361  > > >  > > > phone : ( 713 ) 853 3848  > > > fax : ( 713 ) 646 2503  > > > e - mail : vkamins @ enron . com  > > >  > >  > >  > >  > >  > >  > >  >  >  >  >  >  >\",0\n\"Subject: candlestick charts  fyi fallout  - - - - - - - - - - - - - - - - - - - - - - forwarded by mike a roberts / hou / ect on 05 / 04 / 2001  02 : 05 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : sue neville / enron @ enronxgate on 05 / 04 / 2001 02 : 02 pm  to : mike a roberts / hou / ect @ ect  cc : lee ferrell / enron @ enronxgate , kent miller / et & s / enron @ enron  subject : candlestick charts  mike ,  i work for enron transportation and storage in their storage marketing  group . my group has been using technical analysis from your website to help  make daily storage trading revenue decisions . on your web site , you  indicated you would be discontinueing some of the information we use . we had  interviewed external technical service profiders , and chose not to buy their  service because we had your information available to us to help us make  financial decisions . specifically , we need the candlestick charts and  analysis on natural gas , and we also need the elliot wave analysis on natural  gas .  can you please reconsider your decision to discontinue the technical analysis  data aforementioned ?  sue neville  director , storage marketing  ets\",0\n\"Subject: faculty information sheet  mr . kaminski ;  i will fax the faculty information sheet to you so that you may check for  accuracy . also , i will fax your formal offer letter to you this afternoon .  please allow by dec . 15 for your paperwork to be processed . after that  date , you should contact bill ciminelli , director of administration , ( 713 )  348 - 5377 . bill can assist you with assigning your mailbox and office  space , membership for faculty club card ( campus cafeteria for faculty and  staff only ! ) , rice i . d . card , and parking decal . also , suzana vazquez ,  bill ' s assistant , ( 713 ) 348 - 3736 , can assist you with any materials that  you want to be copied and / or distributed to your students .  if you need to order any required or suggested book ( s ) for your course ,  please contact the campus bookstore at ( 713 ) 348 - 4052 . the bookstore does  not order examination copies for faculty . you must contact the publisher  if you are wanting an examination or desk copy of a book .  if you have any questions , please feel free to contact me at my office  ( 713 ) 348 - 3733 or email .  jacquelyn j . gambrell  executive assistant to the associate dean for faculty affairs  jones graduate school of management / ms 531  rice university  p . o . box 1892  houston , texas 77251 - 1892  office ph . ( 713 ) 348 - 3733  email : gambrell @ rice . edu \",0\n\"Subject: re : interview schedule change for bruce james  vince , i am forwarding this information over to tony vasut , who recruits for  rac , to contact the people listed below . thanks for the feedback .  toni  - - - - - - - - - - - - - - - - - - - - - - forwarded by toni graham / corp / enron on 08 / 01 / 2000  11 : 12 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  sean grady  07 / 31 / 2000 04 : 01 pm  to : toni graham / corp / enron @ enron  cc :  subject : re : interview schedule change for bruce james  - - - - - - - - - - - - - - - - - - - - - - forwarded by sean grady / na / enron on 07 / 31 / 2000 03 : 59  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski @ ect  07 / 31 / 2000 03 : 46 pm  to : sean grady / na / enron @ enron  cc : vince j kaminski / hou / ect @ ect  subject : re : interview schedule change for bruce james  sean ,  i think we should invite bruce for additional interviews . i think that he  does not have  the skills required in my unit , but he could contribute in other areas .  here is the list of potential interviewees :  john echols  ted murphy  mark ruane  vince  sean grady @ enron  07 / 26 / 2000 02 : 17 pm  to : grant masson / hou / ect @ ect , pinnamaneni krishnarao / hou / ect @ ect , william s  bradford / hou / ect @ ect , vince j kaminski / hou / ect @ ect , stinson  gibner / hou / ect @ ect , zimin lu / hou / ect @ ect , bjorn hagelmann / hou / ect @ ect , david  port / market risk / corp / enron @ enron  cc : toni graham / corp / enron @ enron , shirley crenshaw / hou / ect @ ect , rita  hennessy / na / enron @ enron , dorothy youngblood / hou / ect @ ect  subject : interview schedule change for bruce james  attached please find the interview packet for the above - referenced person .  the interview will happen thursday july 27 , 2000 . please print all three  documents for your hard copies . if you have any questions , or conflicts of  schedule , please do not hesitate to contact me .  sean grady  58701\",0\n\"Subject: re : bei enron  gordian kemen on 03 / 15 / 2000 09 : 13 : 47 am  to : jens . gobel @ enron . com  cc :  subject : career opportunities @ enron  hi vince ,  following up to our chat on the phone .  gordian kemen will be arriving in austin on the 16 th . he will be staying in  austin for 2 weeks . he would very much appreciate to have the opportunity to  have a talk with you to find out if there is a place for him at enron . you  can reach him under ( 512 ) 301 - 9819 ( his parents in law ' s phone number ) .  thanks a lot for you help and attention ,  jens  - gordianresume . pdf\",0\n\"Subject: from the enron india newsdesk - april 27 th newsclips  fyi news articles from indian press .  - - - - - - - - - - - - - - - - - - - - - - forwarded by sandeep kohli / enron _ development on  04 / 27 / 2001 08 : 24 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  nikita varma  04 / 27 / 2001 07 : 51 am  to : nikita varma / enron _ development @ enron _ development  cc : ( bcc : sandeep kohli / enron _ development )  subject : from the enron india newsdesk - april 27 th newsclips  friday apr 27 2001 , http : / / www . economictimes . com / today / cmo 3 . htm  dpc board empowers md to cancel mseb contract  friday apr 27 2001 , http : / / www . economictimes . com / today / 27 compl 1 . htm  mseb pays rs 134 cr under ' protest ' to dpc  friday , april 27 , 001 ,  enron india md authorised to terminate ppa  friday , april 27 , 2001 , http : / / www . financialexpress . com / fe 20010427 / topl . html  foreign lenders slam brakes on disbursements to dpc , sanjay jog & raghu mohan  global banks comfortable with enron pull - out  friday , april 27 , 2001 , http : / / www . indian - express . com / ie 20010427 / nat 23 . html  enron : dabhol chief gets powers to end deal with the mseb  friday , april 27 , 2001 , http : / / www . the - hindu . com / stories / 0227000 d . htm  offer of renegotiation ' too late ' : enron , by mahesh vijapurkar  friday , 27 april 2001 , http : / / www . timesofindia . com / today / 27 home 2 . htm  enron ready to pull out , but lenders say wait  friday , april 27 , 2001 , http : / / www . hindubusinessline . com / stories / 142756 dh . htm  dpc board authorises md to issue ppa termination notice  friday , april 27 , 2001 ,  enron testing maharashtra ' s nerves , t n raghunatha  friday , april 27 , 2001 , http : / / www . telegraphindia . com /  enron signal to switch off dabhol power  friday , april 27 , 2001 ,  enron threatens to pull out  friday , april 27 , 2001 ,  ' dpc may not wind up '  friday , april 27 , 2001 ,  enron offers ' no comment ' on renegotiation , h s rao  http : / / www . afternoondc . com /  ' enron ' s on ! '  state govt . to renegotiate dabhol power project , by hubert vaz  the economic times , friday apr 27 2001  dpc board empowers md to cancel mseb contract  the enron power project crisis on thursday deepened with the board of dabhol  power company authorising the management to issue a termination notice to the  maharashtra state electricity board even while international lenders to the  project asked enron to renegotiate power purchase agreement signed with the  mseb .  the decision to authorise managing director neil mcgregor to issue \"\" notice of  termination on the contract to sell 740 mw of power \"\" was taken after the  board prevented mseb from voting on the ground that it was an interested  party . the decision was taken with six votes in favour and the single  opposition vote was cast by idbi , sources said .  according to reports , financial institutions such as anz investment bank ,  credit suisse first boston , citibank , abn - amro and the state bank of india  have on wednesday advised enron against terminating its ppa with mseb . mseb  chairman vinay bansal , who with two other directors attended the meeting on  wednesday representing maharashtra \u0001 , s 15 per cent stake in the near $ 3 - billion  project , said : \"\" the indian side told them that it would be unfortunate if  enron broke the contract . \"\" while bansal declined comment on the board  decision , the sources said the indian side had expressed its interest to  holds talks on the issue rather than terminating the project and there were  possibilities of a fresh power purchase agreement between the company and the  state . ( pti )  the economic times , friday apr 27 2001  mseb pays rs 134 cr under ' protest ' to dpc  despite the threat of a possible termination notice hanging on its head ,  maharashtra state electricity board on thursday made a \"\" protest payment \"\" of  rs 134 crore disputed amount , towards march bill of rs 146 . 64 crore to  dabhol . \"\" we were ready with the payment on wednesday itself , but dpc  officials could not collect the cheque due to the statewide bandh \"\" , a senior  mseb official said . \"\" we have disputed payment of rs 12 . 64 crore and it would  be now taken up at the disputes resolution forum , of which enron india  managing director k wade cline and krishna rao are members \"\" , mseb sources  said .  last week , dpc had dashed off a communication to the government and mseb that  it would not accept \"\" protest payments \"\" anymore . cline had said the energy  major shall treat such payments as an election to pay the sums , which mseb in  fact owed dpc in full and that the company would also not recognise the  \"\" purported protest or reservation \"\" . mseb had paid a rs 113 . 5 crore february  bill in protest last month . on april 23 last , both domestic and international  lenders of dpc had met in london and held exhaustive discussions the  multinational ' s move to issue a termination notice to mseb and state  government . ( pti )  business standard , friday , april 27 , 001  enron india md authorised to terminate ppa  the board of the enron - promoted dabhol power company ( dpc ) , at its meeting in  london on wednesday , authorised the managing director of enron india to issue  a notice for terminating the power purchase agreement to the maharashtra  state electricity board and the state government . \u0001 & the board has authorised  wade cline to serve the termination notice . however , this does not mean that  the termination notice will be served immediately . it is only an enabling  provision and will be used only if the situation arises , \u0001 8 a state government  source told business standard from london . he said dpc was under pressure  from its lenders .  the dpc spokesperson here refused to comment on the issue . the hardening of  the board \u0001 , s stand is in sharp contrast to the advice of dpc ' s lenders , who  had warned enron not to precipitate matters by issuing a termination notice .  the lenders had arrived at a consensus that the termination notice need not  be served at this stage . serving of the notice requires a nod from the  lenders , who have an exposure of about $ 2 billion in the project . sources  said given the lenders ' strong opposition to termination of the contract , the  enron board ' s \"\" enabling resolution \"\" did not have much significance beyond  conveying a hardening of its stand with regard to the current imbroglio . the  maharashtra chief minister had warned enron not to scuttle the process of  crisis resolution by issuing a termination notice . the state government is to  nominate an expert group to renegotiate the terms of the dabhol contract .  enron holds 65 per cent in dpc , while us - based ge and bechtel hold 10 per  cent each . the balance 15 per cent is held by mseb through a special purpose  vehicle , maharashtra power development corporation . the mseb representatives  were not allowed to vote at the meeting since they were an interested party .  the idbi representative protested against the board ' s decision . the meeting  was attended by state energy secretary vm lal . the meeting was held against  the backdrop of a dispute between mseb and dpc over payment of bills .  after mseb failed to pay rs 102 crore towards the december 2000 bill , dpc  invoked the state government ' s guarantee and then the union government ' s  counter guarantee . when payment of the rs 127 - crore january bill became  overdue , dpc again invoked the state government ' s guarantee . mseb retaliated  on january 28 , 2001 by slapping a rs 401 - crore penalty for non - supply of  electricity at adequate levels . it demanded that dpc adjust the bills against  this penalty . \"\" this stand of mseb was explained to dpc at the board meeting \"\" ,  a state government official said . the centre also supported mseb ' s stand and  refused to honour the counter guarantee . the power company then invoked the  political force majeure clause . a process of conciliation and arbitration  between the centre and dpc is currently on .  the financial express , friday , april 27 , 2001  foreign lenders slam brakes on disbursements to dpc , sanjay jog & raghu mohan  global banks comfortable with enron pull - out  lenders to the dabhol power company ( dpc ) are a sharply divided lot .  international lenders , in direct contrast to the stand taken by local ones  led by the the industrial develoment bank of india ( idbi ) , are categorical  that additional assistance to dpc \u0001 , s phase - ii will be held in abeyance despite  the completion of 92 per cent of the project work . the stage is also set for a  preliminary termination notice to be served by dpc to the maharashtra state  electricity board ( mseb ) within the next four weeks . this follows the  authorisation given to enron india \u0001 , s managing director k wade cline and dpc  president & ceo neil mcgregor to serve the termination notice , and transfer  notices to mseb , following wednesday \u0001 , s dpc board meeting in london .  the essence of the message from the international lenders following the  london meeting with dpc board is : emotions do not work . contractual  obligations and payments have to be met . we are convinced that the mseb has  failed to meet its obligations . there is no point in enron continuing with  the project and the company should get out of it . the structuring of dpc \u0001 , s  debt has created two classes of lenders . in phase - i , international lenders  are covered by a sovereign guarantee while in phase - ii , no lender is .  however , all lenders have a parri passu charge , making attachment of assets a  messy affair .  sources in international banks were quick to point out that local lenders to  phase - ii of the project are worried that an awry dpc project will affect  their interests more given that they have no security \u0001 * other than assets \u0001 *  like a sovereign cover . \u0001 & it was this desperation that made local lenders like  idbi slash the interest rates a few months back to 16 . 5 per cent from 21 . 5  per cent , \u0001 8 a leading foreign banker pointed out . three points that were made  clear and stressed in no uncertain terms by international lenders were : a )  there are contractual obligations b ) mseb was not punctual in its payments to  dpc and c ) mseb adopted a confrontational position by slapping a rs 401 crore  rebate charge on dpc for misdeclaration and default on the availability of  power .  while local lenders led by idbi \u0001 * with mseb parroting the same \u0001 * were of the  view that the current situation is a temporary one , international lenders  were steadfast that pulling out of the project is the only way out . this is  despite the stance taken by idbi and mseb that authorisation for termination  given to mr cline and mr mcgregor was not called for . international bankers  pointed out that they will now have to look at the issue of charges and  protection for their loans in the event of the power project being scrapped  in its present form . the points of contention are : a ) that phase - i of dpc is  backed by a sovereign guarantee b ) phase - ii is not and c ) to the extent that  phase - ii is covered by assets , cancellation of phase - ii may see all assets \u0001 *  even those under phase - i \u0001 * getting attached . therefore , an examination on the  segregation of assets under phase - i and phase - ii is now warranted .  pti adds : in a significant move , dpc board has empowered its management to  sever power supply agreement with mseb , a move that could inflict a financial  liability of about rs 2840 crore on the centre . a decision to authorise dpc  president neil mcgregor to issue a termination notice to mseb for sale of  power was taken by the board at its meeting on wednesday .  the indian express , friday , april 27 , 2001  enron : dabhol chief gets powers to end deal with the mseb  the board of dabhol power company , a subsidiary of houston - based enron corp ,  has decided to warn the maharashtra state electricity board ( mseb ) that it  intends to pull the plug on its guhagar - based project . in a board meeting held  in london on wednesday , the board decided to authorise dpc president and ceo  neil mcgregor and enron india \u0001 , s managing director k wade cline to serve a  \u0001 + \u0001 + preliminary \u0001 , \u0001 , termination notice for sale of power to the mseb within the  next four weeks . the dabhol project has been mired in disputes since mseb  began missing payments last year . mseb owes dabhol power $ 48 million for  power delivered in december and january . the payment ran into a dispute after  mseb slapped penalty notices of rs 401 crore on dpc for its failure to supply  power within three hours of the demand being placed . but mseb has paid $ 24  million for february . and a payment of $ 31 million was made for march on  thursday .  the $ 3 billion dabhol project is the largest foreign investment made in india  to date . issuing the preliminary termination notice could enable dabhol to  suspend deliveries as it negotiates payment disputes . while a preliminary  termination notice is the first of three steps that could potentially lead to  the abandonment of the project by enron , analysts have described the decision  as a \u0001 + \u0001 + procedural \u0001 , \u0001 , move consistent with dpc \u0001 , s negotiating strategy to  recover overdue payments from the mseb .  after the company issues the preliminary termination notice , step two would  be an official termination notice , and step three would be a notice that the  company is surrendering control of the project . if the project is terminated ,  the government of india will have to take a hit of $ 300 million besides  paying bills of rs 1 , 500 crore for the next one year to enron as penalty .  \u0001 + \u0001 + our ( centre \u0001 , s ) liability , if dabhol power project is terminated , would be  one year \u0001 , s electricity bill and a termination fee of $ 300 million , \u0001 , \u0001 , power  secretary a k basu said . \u0001 + \u0001 + contractually , the centre will have to pay one year \u0001 ,  s electricity bill , totalling at present prices about rs 1 , 400 - 1 , 500 crore ,  and take over dpc \u0001 , s debt , which stands at around $ 300 million , if the project  was terminated , \u0001 , \u0001 , basu said in delhi . dabhol power is in the process of  completing the second phase of the 2 , 184 - megawatt power - plant project , which  is 95 per cent through .  while the international lenders to the project are pressurising the company  to get out of the project , indian lenders , led by idbi , are asking the  company to reconsider its decision on its termination notice . during the  meeting in london , mseb which holds a 15 per cent stake in the project , had  strongly opposed dpc \u0001 , s move to authorise cline and mcgregor to issue notices  for termination .  mseb chairman vinay bansal and technical director prem paunikar \u0001 * both  directors on the dpc board \u0001 * and the state principal secretary ( energy ) vm  lal , an invitee to the board , raised the issue at the board meeting in  london . mseb claimed that dpc was needlessly \u0001 + \u0001 + threatening \u0001 , \u0001 , to issue various  arbitration notices and thereby interpreting the clauses of ppa in  isolation . in recent weeks , dabhol has raised the stakes in its spat with the  mseb , delivering a notice of political force majeure to maharashtra \u0001 * a step  typically invoked to dissolve a contract in case of an emergency like a war ,  coup , or a similar radical political event . in this case , dpc \u0001 , s move was  viewed as a threat to stop providing electricity . dpc has come under fire  because of the relatively high cost of its power . critics object to the  company charging rs 7 . 1 a kilowatt - hour for its power , compared with around  rs 1 . 5 a kilowatt - hour charged by other suppliers .  the hindu , friday , april 27 , 2001  offer of renegotiation ' too late ' : enron , by mahesh vijapurkar  mumbai , april 26 . the enron - sponsored dabhol power company , which last night  authorised its local management to issue a notice of termination of its power  purchase agreement ( ppa ) with the maharashtra state electricity board , has  decided to keep a stiff upper lip . this , in turn , has stoked speculation that  the switching off of power from its phase i plant was imminent , while in  reality , a lengthy procedure has to be followed as prescribed within the ppa .  as one source familiar with the ppa told the hindu , ` ` it is not sudden death  of the project ' ' and in all probability , the dpc , vexed with the  developments , including sharp and pointed observations by the godbole  committee , has chosen to only arm itself with a serious option . ` ` this would  only eventually come into effect . it is not an overnight operation and a lot  of legal work is involved ' ' . apparently , the dpc intends to do some  arm - twisting .  at the board of directors meeting in london , which maharashtra was initially  disinclined to attend but later used the forum to put across its contentions  on the project , the dpc squarely told the mseb nominees on the board that the  offer of renegotiation had come rather ` ` too late ' ' . it also said it did not  see any room for optimism about the outcome . it did not , however , rule out  the option of talks , thus underscoring the possibility that the decision to  authorise termination was a new weapon .  the maharashtra chief minister , mr . vilasrao deshmukh , had hoped that dpc  would not take any ` ` harsh step ' ' which would cause lot of damage to the  interests of both the independent power producer and the government and today  he expressed his dismay . in fact , the mandate of the team that went , on the  strength of its stake in the dpc , was to put across the idea that negotiation  was the requirement and not confrontation .  echo in ls  the enron issue also echoed in the lok sabha today where the power minister ,  mr . suresh prabhu , said that scrapping of the agreement would cost the centre  rs . 2 , 840 crores , whose liability in the project agreement was limited . the  centre ' s liability in case of termination is one year ' s electricity bill and  a termination fee of $ 300 million .  blow to fis  the termination could prove to be a serious blow to the indian financial  institutions ( fis ) which , under the leadership of the idbi , were trying to  convince the other lenders of the project against the notice . the exposure of  indian fis in the project is understood to be not covered by any guarantee  either of the centre or the state .  the times of india , friday , 27 april 2001  enron ready to pull out , but lenders say wait  the dabhol power company board , which met on wednesday in london , authorised  the company management to issue a termination notice to the maharashtra state  electricity board . the company , however , may not pull out of the project yet ,  considering its lenders , who met on monday , opposed such a move and favoured  renegotiations . sources present during both the meetings said that though  foreign lenders supported enron on the termination issue , domestic financial  institutions , led by the industrial development bank of india , prevailed over  the deliberations to oppose any such drastic move . enron needs the lenders '  consent to file a pre - termination notice for pulling out from the project .  the decision to empower dpc chief wade cline to issue a termination notice  was taken with six votes in favour against a single idbi vote against such a  move .  another significant development during the entire proceedings was that the  financial institutions made it clear that further funding of phase ii of the  project will depend on the government of india assuring payment mechanisms .  institutions are yet to disburse about 30 per cent of the sanctioned package ,  which is crucial for completing the phase ii expansion project . ` ` the board  has given powers to wade cline to issue a pre - termination notice . but the  meeting quite unanimously felt the need of the hour is not to terminate the  project but to initiate serious re - negotiation proceedings , ' ' said mseb  chairman vinay bansal , who attended the board meeting . ` ` mseb presented their  views to the board members and it was understood by enron which also included  the rs 401 crore penalty issue which is heading for arbitration proceedings .  ` ` we have also made it clear that the tariff structure of enron is quite high  and a downward revision of tariffs is unavoidable , \"\" bansal added .  ` ` they cannot issue a termination notice without our consent since our  exposure in the project is quite large and the lenders should approve any  plans in that direction , ' ' said a top banker who was present during the  lenders ' meet . ` ` there is a general consensus that the project must be  completed and the proposal to terminate the ppa should be kept in abeyance , ' '  he added . the global arrangers for the dpc include anz investment bank ,  credit suisse first boston , abn - amro , citibank and the state bank of india ,  where all these parties conducted separate meetings with the company  officials . however , some bankers said the company can file a termination  notice even if one lender with a minimum 5 per cent exposure on the project  favours such proceedings .  meanwhile , in a clear reversal of roles , maharashtra chief minister vilasrao  deshmukh said that the state government was not keen on terminating the ppa .  ` ` we will ask them to refrain from taking any such harsh steps since that  would be bad news for all of us , including dpc , ' ' deshmukh said . deshmukh was  echoing union power minister suresh prabhu ' s sentiments , who said that the  government wanted an amicable settlement of the payment row . he , however ,  added that termination of the project would not hurt foreign investments , and  dismissed warnings by analysts that winding up the $ 2 . 9 billion project would  be a blow to india ' s efforts to woo foreign investors .  the dpc has already slapped one conciliation notice on the centre and three  arbitration notices on the state government over non - payment of dues  amounting to rs 213 crore and interest towards the bills due for december  2000 and january 2001 . meanwhile , mseb officials said in mumbai that the  march bills amounting to rs 134 crore was paid on thursday as protest  payment , despite the dispute over the amount .  when asked on the future course of action , bansal said it was up to the dpc .  the hindu businessline , friday , april 27 , 2001  dpc board authorises md to issue ppa termination notice  the board of directors of dabhol power company ( dpc ) has authorised the  managing director , mr neil mcgregor , to issue the notice of intent to  terminate its power purchase agreement ( ppa ) with the maharashtra state  electricity board ( mseb ) ` ` at an appropriate time ' ' . the decision was taken  at a board meeting held in london yesterday . ` ` while mseb , which is an  ` interested party ' , was not allowed to vote , it made a presentation  clarifying its stand on the matter , ' ' a senior state government official  said .  the resolution to authorise the management to issue the termination notice  was carried by six votes to one . idbi voted against the decision , the  official said . the serving of the preliminary termination notice will lead to  a six - month ` ` suspension period ' ' . according to clause 17 . 8 of the  termination procedure , of the ppa : ` ` following the giving of a preliminary  termination notice , the parties shall consult for a period of six months ( or  such longer period as they may agree ) as to what step shall be taken with a  view to mitigating the consequences of the relevant event having regard to  all the circumstances . . . ' '  idbi and state bank of india , the principal indian lenders , had earlier  persuaded the overseas lenders to hold their consent to the termination  notice for some more time . at least one lender has to consent for the company  to serve termination notice . it is understood that overseas lenders are in  favour of termination of the project and are prepared to consent . however ,  domestic lenders are worried about the security of their advances if the ppa  is abandoned mid - way .  according to institutional sources , indian lenders are trying to get all the  parties concerned to thrash out outstanding issues . the maharashtra and  central governments too are in favour of a conciliation . mr vilasrao  deshmukh , chief minister of maharashtra , yesterday went on record that the  state did not want the project terminated . mr yashwant sinha , union finance  minister , is also understood to be of the same opinion . ` ` the dpc will now  have to decide what is the ` appropriate time ' to serve the notice , ' ' the  official said . mseb pays rs 134 crore : meanwhile , mseb has paid dpc rs 134  crore towards its march 2001 bill . mseb officials confirmed that the bill was  paid ` in protest ' ' today morning . ` ` they ( dpc ) had billed us for an amount of  rs 146 crore . we do not agree with some of the items included , ' ' a senior  mseb official said .  the pioneer , friday , april 27 , 2001  enron testing maharashtra ' s nerves , t n raghunatha  dabhol power company ( dpc ) has begun to put fresh pressure on the maharashtra  state electricity board ( mseb ) , the maharashtra state government and the  centre for an early resolution to the prolonged dispute between them , if the  dpc board of directors ' decision to authorise its managing director to serve  a contract termination notice to the mseb is any indication .  the dpc board , in its meeting in london on wednesday , empowered the company  management to sever its power supply agreement with mseb , a move that could  inflict a financial liability of rs 2 , 840 crore on the centre . the decision  to authorise the dpc management to issue a termination notice to mseb was  taken by a vote of six to one after the maharasthra government  representatives were prevented from voting on the ground of \"\" interested  party \"\" .  when contacted , the company ' s mumbai - based spokesperson , mr jimmy mogal ,  declined to comment on the reports about the decision taken by the dpc board .  \"\" we have nothing to say on the reports emanating from london . we will express  our views after a few days , \"\" he said . however , maharashtra chief minister  vilasrao deshmukh on thursday termed the dpc board ' s decision as  \"\" unfortunate \"\" . \"\" we have already requested the company not to take any harsh  decision \"\" , mr deshmukh said in mumbai .  official sources in the state energy ministry interpreted the dpc board ' s  decision as a pressure tactic employed by the enron subsidiary to force the  mseb to clear the pending power bills without any further delay . through its  tough posture , the dpc wants to make its position stronger before it can  formally agree for re - negotiations with the mseb , the centre and the state  government for cutting the price of power supplied by it to the state  electricity board . the sources said that the dpc ' s reported decision to  authorise its managing director to stop electricity supply to the mseb did  not mean that the enron subsidiary would actually go ahead with the scrapping  of the power contract with the mseb .  \"\" if anything , the dpc ' s reported decision is to mount additional pressure on  the mseb for clearance of pending power bills and put itself in a stronger  position in settling its dispute with the mseb . as part of its plan to arm  itself with powers to break a contract in case situation goes beyond its  control , the dpc had recently served a political force majeure to the mseb ,  the centre and the state government , \"\" the sources said . not surprisingly , the  dpc ' s london decision comes on the heels of the maharashtra government ' s  decision to set up a high - level committee , comprising representatives of the  mseb , the centre and the state government to re - negotiate with the enron ' s  subsidiary company for reducing the cost of power supplied to the state  electricity board . meanwhile , amidst the threat of a possible termination  notice hanging on its head , the mseb on thursday made a \"\" protest payment \"\" of  the rs 134 crore disputed amount towards march bill of rs 146 . 64 crore to dpc .  riday , april 27  the telegraph , friday , april 27 , 2001  enron signal to switch off dabhol power  enron today took the first decisive step out of the controversy - ridden dabhol  power company when it won an authorisation from the company \u0001 , s board to stop  sale of power to maharashtra state electricity board ( mseb ) .  the meeting of the company , of which the houston - based energy giant holds 65  per cent and the mseb 15 per cent , was attended by state energy secretary v m  lal and mseb technical director p paunikar and it came days after its lenders  discussed payment problems and a possible termination . the centre \u0001 , s liability ,  if enron decides to snap the agreement , will be a year \u0001 , s power bill and a  termination fee of $ 300 million . however , the company will have to wait for  six months from the day it serves the notice before it pulls the plug . the  centre shrugged off the move , saying there would not be any adverse effect on  foreign investment in power if enron walks out . \u0001 & we do not see fdi inflows  into the power sector being hit , \u0001 8 power minister suresh prabhu said . mseb  officials said the ball is now in the court of dpc , which said its corporate  policy did not allow it to comment on proceedings at board meetings . the  decision coincided with a rs 134 - crore \u0001 + protest payment \u0001 , by the cash - strapped  power board as part of the march bill worth rs 146 . 64 crore .  there was speculation that mseb coughed up the amount to cool frayed tempers  at enron \u0001 , s hub in houston , and because it was rattled by the sudden turn of  events in the past few days during which the dispute had come to a head . mseb  officials brushed away the allusions , saying the cheque was ready on  wednesday but could not be handed over to dpc because of the state - wide  bandh . \u0001 & we have a disputed payment of rs 12 . 64 crore , which will be taken up  at the dispute - resolution forum , \u0001 8 a board official said . last week , dpc told  the state government and mseb it would no longer accept protest payments in a  move to fortify its legal position .  mseb officials say bechtel and general electric , the other partners who hold  around 20 per cent in dpc , are willing to go along with enron corp in  terminating the deal but financial institutions such as idbi are not game  because it puts their loans at risk . investments made by indian institutions  are not covered under the centre \u0001 , s and state \u0001 , s counter - guarantees , unlike  those made by international lenders . maharashtra chief minister vilasrao  deshmukh called enron \u0001 , s decision unfortunate . \u0001 & we had told state government  officials attending the enron board meeting to stop the company from winding  up its operations in the state as it will harm both parties . \u0001 8  the statesman , friday , april 27 , 2001  enron threatens to pull out  the enron crisis deepened with the board of directors of the dabhol power  company deciding to authorise the managing director , mr k wade cline , to  serve a notice of termination on the contract for the first phase of the $ 2 . 9  billion power project . the decision , which could lead to the cessation of  dabhol \u0001 , s power supply to the state , was taken at the meeting held yesterday  in london according to reports quoting the chairman of the maharashtra state  electricity board , mr vinay bansal .  while dpc officials refuse to comment on anything , it is learnt that mseb was  itself prepared to serve a legal notice of termination just two days before  the meeting . mseb was said to have been dissuaded by the nationalist congress  party president , mr sharad pawar , and union power minister mr suresh prabhu ,  who had talks in new delhi with the maharashtra chief minister , mr vilasrao  deshmukh , and an mseb delegation last monday .  the state government has been served two arbitration notices while the centre  is ready to go for conciliation with the dpc for failing to honour its  counter - guarantee . further , the dpc has already slapped a notice of political  force majeure which protects itself against undeserved claims in the event of  exigencies that force it to take an extreme step . the union power minister , mr  suresh prabhu , contended in delhi that since dpc contributed only 0 . 7 per  cent of the total energy output of the country , its termination would not  have such a phenomenal impact on the power situation .  however , if terminations proceedings go through , enron corp , a 65 per cent  share - holder in the dabhol power company , would stand to net a hefty amount  in damages . the union power secretary has been quoted as saying that  termination of the dpc would cost the centre rs 1 , 800 crore , which is the  total of one years \u0001 , electricity bill and a termination fee of $ 300 million .  according to an energy analyst , mr pradyumna kaul , the total liability would  not cross rs 350 crore . however mr prabhu said in the lok sabha today that  the that scrapping of the agreement would cost the centre rs 2 , 840 crore . it  is learnt that on 20 april , mr deshmukh had given the go - ahead to the mseb to  prepare a legal notice to be issued to enron during the meeting of the dpc \u0001 , s  board of directors on wednesday . at the meeting , the energy minister ,  padamsinh patil , energy secretary , mr vinay mohan lal and mseb chairman mr  vinay bansal , were also present . the notice was prepared over the past weekend  and taken by the delegation when they called on mr prabhu on 24 april .  however , the politicians convinced them that enron would not get tough , given  its huge stake in the project , and that such a notice would not be necessary .  the meeting thus ended with the decision to renegotiate the power tariff ,  with enron \u0001 , s consent .  among those present at the london meeting were mr lal , mr bansal and mseb  technical director , mr p paunikar , in their capacity as directors . however ,  they abstained from voting since they were deemed an interested party . the  only vote to go against the decision was that of the idbi which is also  represented on the board , it is learnt . the chief minister , mr vilasrao  deshmukh , said the state was not in favour of terminating the project . this  could mean that the latest manoeuvre to arm - twist the indian authorities  could achieve its immediate target of getting the arrears accumulated over  the past three months cleared . the mseb owes enron rs 146 . 64 crore for march  2001 and rs 229 crore for december 2000 and january 2001 . the centre today put  up a brave face on enron \u0001 , s decision saying there would not be any adverse  effect on foreign investment in power sector in the country , pti reported  from new delhi .  \u0001 & there will be no adverse impact as a result of any action by any domestic or  foreign company . as far as we are concerned there will be no adverse impact  on fdi in power sector , \u0001 8 power minister suresh prabhu told reporters when  asked about dpc \u0001 , s decision to authorise management to issue a termination  notice to mseb . emphasising that there would be no fallout of such decision ,  prabhu said after the meeting of the cabinet committee on economic affairs  \u0001 & we are expecting cooperation from many scandinavian countries as well as  european nations in the power sector . \u0001 & in fact not only the power minister but  also the prime minister of norway was here to inaugurate a seminar on power  and he promised lot of cooperation in the sector . \u0001 8  mid day  ' dpc may not wind up '  maharashtra chief secretary v ranganathan has said that though neil mcgregor ,  managing director of the dabhol power corporation ( dpc ) , has been given  complete powers with regard to dpc ' s operations in the state , including the  authority to wind up operations , it does not necessarily mean that mcgregor  will issue such a termination notice . mcgregor was given the powers at a  meeting of the dpc board in london on wednesday . ranganathan said that state  officials , including maharashtra state electricity board ( mseb ) chairman  vinay bansal and power secretary v m lal , have reported back to him about the  meeting in london .  with regard to the state ' s failure to pay enron , ranganathan said , \"\" bills  are prepared as per the power purchase agreement ( ppa ) and dpc owes some  money to us . our people informed enron officials about this . . in fact , there  was no reason to give powers to the md to slap a termination notice . \"\" in the  london meeting , mseb and industrial development bank of india ( idbi )  representatives insisted that the dpc must pay rs 411 crore since it could  not supply power whenever needed .  chief minister vilasrao deshmukh has already termed as unfortunate the  decision of the board of the enron - promoted dpc to give mcgregor powers to  wind up operations . deshmukh added , \"\" we have already requested enron not to  take any harsh decision . \"\" deshmukh had earlier said , \"\" we have directed state  government officials attending the dpc board meeting to desist the energy  company from winding up operations in the state , as it would be harmful to  both of us . \"\"  enron officials are keeping mum on the issue . mcgregor said , \"\" i am not going  to give any comment . \"\"  mid day , april 27 , 2001  enron offers ' no comment ' on renegotiation , h s rao  a crucial meeting of the board of directors of the dabhol power company  ( dpc ) , promoted by the us energy major enron , was held here yesterday  apparently to discuss fate of its $ 900 - million power project in maharashtra ,  but there was no official word on the indian and state governments ' decision  to renegotiate the contract .  an enron spokesman declined to divulge what transpired at the meeting , saying  the issues discussed at the meeting were ' confidential ' . \"\" we have not  received any direct communication . unless we get it and evaluate the details ,  we have no comments to make , \"\" the spokesman said when asked about the  proposed decision on re - negotiation of the project in which the maharashtra  state electricity board ( mseb ) has 15 per cent stake .  asked whether the board had taken a decision on empowering dpc managing  director neil mcgregor to wind up its operations in india , the spokesman said  he had nothing to say on them . enron has reportedly authorised mcgregor to  look at various options including selling the company ' s stake in dpc .  maharashtra chief minister vilasrao deshmukh said in mumbai that the state  government would pay up the undisputed dues to the company . he said the  maharashtra government \"\" is not in favour of terminating the 2184 - mw project ,  but wanted an amicable solution to the imbroglio . \"\"  mid day , friday , april 27 , 2001 ,  committee to renegotiate enron deal  a committee to renegotiate the power purchase agreement with the dabhol power  company will be appointed by this evening , chief minister vilasrao deshmukh  said today . addressing media persons after his meeting with the noted social  reformer anna hazare at his official residence varsha , deshmukh said the  committee would be formed by this evening or by tomorrow , at the most . he  termed as unfortunate the enron board decision empowering dpc chief neil  mcgregor to serve a preliminary termination notice on the maharashtra state  electricity board and said the state was willing to negotiate the issue with  power company .  \"\" renegotiations will be held as per the suggestions made by the godbole  committee and the center will also depute its representative on the  renegotiating committee . we don ' t want to take any hasty decision , \"\" deshmukh  saidhe pointed that the only bone of contention with the dpc had been its  expensive tariff and hoped that the issue would be resolved amicably . when  pointed that the enron board had taken a decision to serve the notice despite  state \u000f 9 s willingness to appoint a renegotiating committee , chief minister  said it was unfortunate .  earlier , in his meeting with hazare , deshmukh promised to make necessary  amendments to the right to information law recently passed by the state so  that the information was easily accessed by the common people . he also gave a  patient hearing to hazare on his complaints of corruption in various state  departments and promised action against guilty after a thorough inquiry  within three months .  afternoon , april 27 , 2001  ' enron ' s on ! '  state govt . to renegotiate dabhol power project , by hubert vaz  the us power giant , enron power corporation ' s willingness to wrap up the  dabhol power project and leave the shores may not actually materialise ,  though the dabhol power company chief , mr . wade cline , has been authorised to  do so , since the lenders for the project would have a decisive say in the  matter .  disclosing this , chief minister vilasrao deshmukh confirmed this morning that  the state government would churn out a compromise formula by which the power  project at dabhol could be continued , and at the same time enron did not feel  slighted . \"\" enron has not yet conveyed to us about this decision . we are  waiting for their letter , \"\" he said . when asked what sort of compromise the  state government plans to forge , mr . deshmukh said , \"\" let our officers come  back . after that we will decide a future course of action . but we are  definitely going in for renegotiation of the project . it is very difficult to  predict the outcome of enron ' s decision but as of now the project is still  on . \"\" when asked whether the project could be moved to another state , if wound  up from maharashtra , mr . deshmukh said , that was not possible as per the  terms of the agreement between the us company and the state government .  however , it was difficult for the project to move out of the state itself , he  indicated . he also confirmed that both parties would face considerable losses  if the project was terminated .  the board of directors of the dabhol power company , which met in london on  wednesday , decided to put an end to all controversies surrounding the project  once and for all by empowering the dpc chief to terminate the project , if he  deemed it fit . however , this decision , as of now , does not necessarily  indicate the death knell for the project . the enron project , which had been  riddled with controversies right from its inception , had been a pretext for  the political parties in the state to drag each other on the mat from time to  time . the previous sena - bjp government , which had been out to terminate the  project , however , chose to continue with it following renegotiations with  enron ' s top visiting officials like ms . rebecca mark . and , the democratic  front government inherited the controversial project when the governments  changed hands a year and a half ago .  meanwhile , state energy minister dr . padamsinh patil , when contacted at the  osmanabad circuit house , said the state government and the central government  have decided to appoint a joint committee to renegotiate the project with  enron . \"\" it is not easy for them to walk out of the project just like that .  they will have to go in for litigation and this would prove costly for both  sides , \"\" he said . in case the project is terminated , the government can still  manage the power needs of the state , though it would be a bit tough job , he  added .\",0\n\"Subject: tuesday morning meeting first thing ? ? ?  vince :  i am sorry i couldnt connect with you last week . how would your tuesday  morning first thing , say 800 or 830 am be to get together to discuss the  demo proposal and other issues ? i can come by your office very conveniently  then . give me an email shout if you could squeeze it in on monday . i look  forward to speaking with you .  dale\",0\n\"Subject: re : transition to research group - an update - anshuman shrivastava  molly : in order that i may proceed with the visa application for mr .  anshuman shrivastava , i will need from enron ' s h . r . department , the following  information :  a copy of a job offer letter / contract / assignment letter for his us position  with us salary  a job description of the position in the us  a salary range for that position  co # and cost center #  please let me have this at your earliest convenience .  many thanks  margaret  enron north america corp .  from : molly magee 01 / 19 / 2001 06 : 08 pm  to : margaret daffin / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : transition to research group - an update  once again , margaret , we are in your debt . vince , let ' s get together some  time next week and see where you would like us to go with this . . .  molly  margaret daffin  01 / 19 / 2001 03 : 27 pm  to : molly magee / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : transition to research group - an update  molly : just to be sure that everyone understands , anshuman cannot work in  the us on a bl visa - he can only come here for business meetings and  training .  we will have to get him the ll visa in order for him to work in the us .  margaret  enron north america corp .  from : molly magee 01 / 19 / 2001 02 : 53 pm  to : vince j kaminski / hou / ect @ ect  cc : margaret daffin / hou / ect @ ect  subject : re : transition to research group - an update  thank you so much for the information , vince . i hope that you have a great  weekend !  molly  vince j kaminski  01 / 19 / 2001 02 : 39 pm  to : molly magee / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : transition to research group - an update  molly ,  i shall ask sandeep to do it when he comes back from india next week .  i have just learned that anshuman has bl visa and he can start on a project  as a person  delegated by dhabol power company to houston . to be absolutely above the line ,  i would still arrange the ll visa .  vince  enron north america corp .  from : molly magee 01 / 19 / 2001 10 : 44 am  to : vince j kaminski / hou / ect @ ect  cc : margaret daffin / hou / ect @ ect  subject : re : transition to research group - an update  i agree that it makes sense to put the ll in place . there are several things  we will need from you in order to start the visa process . the first is a  fairly detailed job description for anshuman . secondly , we also need to know  whether or not he will be in a managerial position here and / or managing a  project . if there is someone else in your group who can furnish this job  description , just let me know and i will be happy to contact him / her .  as for sandeep , i have been told that he is a u . s . resident so there should  be no problems with him . margaret daffin will be contacting him to be  absolutely sure .  thanks ,  molly  vince j kaminski  01 / 19 / 2001 10 : 21 am  to : molly magee / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : transition to research group - an update  molly ,  let ' s get ll for anshuman , just in case . i am sure he will stay here for a  while  once he comes . it is quite obvious jeff shankman will have to keep him  longer ,  given the priority of the project .  i assume there are no problems with sandeep .  thanks .  vince  enron north america corp .  from : molly magee 01 / 19 / 2001 09 : 54 am  to : vince j kaminski / hou / ect @ ect  cc : margaret daffin / hou / ect @ ect  subject : re : transition to research group - an update  thank you for the update , vince . i have been working with margaret daffin  with regard to anshuman ' s visa status . we will have to get an ll visa in  place before he can come to the united states , even in a temporary  capacity . do you want to move forward with that effort at this time , or  is the possibility of him coming to the u . s . so remote that it wouldn ' t be  worth the time and money right now ?  molly  vince j kaminski  01 / 19 / 2001 09 : 42 am  to : molly magee / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : transition to research group - an update  molly ,  this is an update on anshuman . please , see below . it seems  that his transfer is not an issue for the time being .  we can put it on a back - burner till he gets here .  vince  p . s . the relevant section .  i also spoke about anshuman , and there was resistance to his leaing for such  a long time . however , i have agreement from folks here to send him to  houston for a shorter stint on dpc budget . i will try to finalize that  before i leave . i will call you in the evening to just chat .  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 19 / 2001  09 : 45 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  sandeep kohli @ enron _ development  01 / 19 / 2001 04 : 32 am  to : vince j kaminski @ ect  cc :  subject : transition to research group - an update  vince ,  just wanted to let you know that i had a meeting with wade cline ( coo , enron  india ) , neil mcgregor ( president , dpc ) , and mohan gurunath ( cfo , dpc ) today .  though i had already spoken to all of them earlier about my joining your  group , today it became official , and all of them supported the move . i  explained to them what we would be doing , and the results expected from the  henwood study .  dpc would like to pay the costs for the study , and that was mentioned . there  maybe some tax issues etc . that need to be cleared , and other related issues  that i would like to discuss with you , so i will leave them till i get to  houston .  i also spoke about anshuman , and there was resistance to his leaing for such  a long time . however , i have agreement from folks here to send him to  houston for a shorter stint on dpc budget . i will try to finalize that  before i leave . i will call you in the evening to just chat .  i am very thankful to you for giving the opportunity you have . things here  have deteriorated dramatically over the last few weeks . morale is quite down  due to many lay - offs .  i am really looking forward to returning to houston , and the family ! !  regards ,  sandeep .\",0\n\"Subject: status  stinson ,  as you requested , i spoke with brad mcsherry concerning the position , salary ,  and immediate supervisor . i asked brad to provide a formal letter of offer  and informed him that i needed it before the end of business friday .  unfortunately , i have not received the letter thus far . although the job was  well defined , i felt that the administrative details of the position were not  clearly laid out . for example , i specifically asked last week who my manager  would be and was told that it would be you . however , i later found out ( by  chance ) that this was not the case . also , it was unclear whether i would be  in the research group or in enron communications .  although these two issues are not critical and under normal circumstances  would be resolved , given previous confusion regarding my role and  compensation with the research group , i feel less comfortable accepting the  position . to be specific , there was an unnecessary struggle regarding my  interview reimbursement and there were problems regarding my bonus . in  general i feel that there has been a significant lack of communication and  respect .  therefore i feel that i am left with the decision not to make the move to  enron and feel that it would be in everyone ' s best interest not to pursue  this any further . thank you .  - samer  [ brad , as i indicated on friday please do not perform any kind of transfer .  thanks . ]\",0\n\"Subject: re : garp credit derivatives discussion group  philip ,  thanks for keeping me in mind . yes , i would be interested .  vince  \"\" philip merrill \"\" on 11 / 30 / 2000 04 : 47 : 20 pm  please respond to  to :  cc :  subject : garp credit derivatives discussion group  vince  we are starting a credit derivatives discussion group in new york .  is this something you would be interested in ?  like fas 133 an 800 - call - in number will be provided for houston  participants .  our first meeting will be in a week or so .  regards ,  philip merrill  garp regional director , new york  973 - 258 - 1540\",0\n\"Subject: trading limit and policy changes  vince -  here ' s a summary of what ' s going to the bod , along with updated policy . feel  free to call me if you have any questions .  regards ,  cassandra .\",0\n\"Subject: it purchasing process  as you all may be aware the it organization is undergoing significant  organizational changes at a very rapid pace . one of the groups that is being  heavily affected is purchasing , due to the large increase in the volume of  requests and some staff turnover . we realize that this is causing our users  some pain and we are re - engineering the process as quickly as possible . we  will be communicating the changes to the process over the next few weeks . we  apologize for the inconvenience and appreciate your patience in this regard .  if you have any questions while the process is being adjusted please contact  bob hillier at extension 3 - 0305 .  philippe bibi  cto , enron global technology\",0\n\"Subject: alliance ferc alert - regional market reports  attached for your information are :  1 . the ferc orders regarding the meeting to be held thursday , november 9 .  2 . annoucement of a hearing in san diego on november 14 .  3 . ferc report on bulk power markets in the southeast region  4 . ferc report on bulk power markets in the midwest region  5 . ferc report on bulk power markets in northeast region  these files will also be made available on the alliance of energy suppliers  web site - http : / / www . eei . org / alliance  should you have any questions concerning these reports , contact jack cashin  at 202 - 508 - 5499 , or jcashin @ eei . org  nancy tarr  manager , business development  ntarr @ eei . org  - ferc 11 - 14 hearing . pdf  - nov 9 panels . pdf  - ferc . southeast . pdf  - fercmidwest . pdf  - fercnortheast . pdf\",0\n\"Subject: t . v .  we are in need of a 9 inch t . v . set .  the set will be located betweeneb 3240 e and  eb 3240 f .  r . c . # 100038  co . # 0011  please if any more information is needed  please call me x 34710 .  also please provide e . t . a .  thanks  kevin moore\",0\n\"Subject: ljm update  vince / stinson :  i just came back from a meeting with accounting ( ryan siueck ) and credit ( rod  nelson - works with bill bradford ) in which we presented the two - factor model  for calculating credit loss on our ljm ' s position . rod seemed positive with  the model conceptual approach . he will position bill bradford on that .  accounting will have a meeting with aa to discuss the treatment on credit  reserves on this deal tomorrow 9 : 00 am . they feel my participation is not  necessary .  at year - end the difference on both valuations - without and with credit risk  - indicates a credit loss of about 100 mm .  paulo issler\",0\n\"Subject: visiting enron may 4 th  dear vince ,  this is great news ! donna and i are delighted that you have time to see us  on may 4 th .  i ' ll be out of the office next week . by copy of this email to my  assistant , carol lovell , i will ask her to get in touch with shirley for  scheduling as well as directions on where to meet you . we ' ll be glad to  meet with christie patrick as well .  looking forward to meeting you ,  susan  at 05 : 36 pm 4 / 6 / 01 - 0500 , you wrote :  > susan ,  >  > thank you for your message . i shall be glad to meet with you on may the  > 4 th .  > i shall ask my assistant , shirley crenshaw ( 713 ) 853 5290 , to call you to  > set up the meeting .  >  > also , for your information , we have recently set up a special unit to  > coordinate enron ' s  > relationships with the universities . the person running this unit is  > christie patrick .  > please , feel free to contact her and give my name as a reference . i shall  > coordinate the meeting  > on may the 4 th with her .  >  > vince  >  >  > additional information re christie :  >  > phone : ( 713 ) 853 - 6117  >  > email : christie _ patrick @ enron . com  >  >  >  >  >  > \"\" susan c . hansen \"\" on 04 / 03 / 2001 04 : 33 : 54 pm  >  > to : vkamins @ enron . com  > cc :  > subject : visit from stanford ?  >  >  > dear dr . kaminski ,  >  > let me briefly introduce myself , i am the director of corporate relations  > for the school of engineering at stanford university . in this role , i am  > always on the watch for ways to bring our faculty together with companies  > that have an appetite for engagement with top tier research institutions .  >  > i believe you know hill huntington , who is a senior researcher with  > stanford ' s energy modeling forum . he suggested i get in touch with you for  > some ideas about contacts at enron . i ' m in the process of planning a trip  > to texas in early may along with my colleague donna lawrence , the  > university ' s director of corporate relations . we were hoping to be able to  > include a stop at enron on our itinerary . right now it appears that friday ,  > may 4 th would work best for us but we ' re at the very beginning of our trip  > planning .  >  > the purpose of our visit would be to review the current relationship  > between enron and stanford , to give you an overview of current priorities  > in the school of engineering , and ask for your help in identifying the best  > points of contact .  >  > i look forward to hearing from you about your availability ,  >  > sincerely ,  > susan hansen  >  >  >  >  > susan c . hansen  > director , corporate relations  > school of engineering  > stanford university  > stanford , ca 94305 - 4027  > ( 650 ) 725 - 4219  susan c . hansen  director , corporate relations  school of engineering  stanford university  stanford , ca 94305 - 4027  ( 650 ) 725 - 4219\",0\n\"Subject: re : update / event time change  this will be fine - just let me know when you are going to be gone .  shirley  anita dupont @ enron  11 / 29 / 2000 05 : 01 pm  to : shirley crenshaw / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : update / event time change  shirley , this is the committee that i discussed with you this morning . the  below email outlines the time required . thanks for your consideration .  anita  - - - - - - - - - - - - - - - - - - - - - - forwarded by anita dupont / na / enron on 11 / 29 / 2000 04 : 55  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  11 / 29 / 2000 04 : 46 pm  charla reese @ enron _ development  charla reese @ enron _ development  charla reese @ enron _ development  11 / 29 / 2000 04 : 46 pm  11 / 29 / 2000 04 : 46 pm  to : daryl kitchen @ enron communications , missy stevens @ enron , misha  siegel @ ect , zulie flores / corp / enron @ enron , maggie  valles / enron _ development @ enron _ development , rose  rivera / enron _ development @ enron _ development , donnis traylor / hou / ees @ ees ,  raquel guerrero @ enron communications , elsie lew @ ect , mary  ellenberger / corp / enron @ enron , rebecca longoria @ enron , joy werner @ enron , david  tagliarino @ ect , janie bonnard , sylvia thomas @ enron , lillian villarreal @ enron ,  valerie villareal / hou / ees @ ees , stephanie baker / hou / ees @ ees , dianne  langeland / enron _ development , laura schwartz @ enron , deb gebhardt @ enron ,  heather alon @ ect , michael cuccia / corp / enron @ enron , bert frazier @ ect , susan  rouse @ ees , sandy lewelling @ enron communications , sonia garcia / hou / ees @ ees ,  dolores escamilla @ ect , anita dupont / na / enron @ enron  cc : elyse kalmans @ enron , greg grissom @ enron  subject : update / event time change  thanks to everyone for attending the meeting today !  event time change ! ! !  i just spoke with the office of the chairman and have learned that ken and  jeff are actually available during the morning of december 19 th from 8 : 00 am  until 11 : 00 am . as a result , our plans have changed just a little and i have  requested whether or not they are willing to pose for polaroid pictures with  employees - i ' ll let you know what i find out ! we will still have the jazz  duet and informational poster displays in the lobby throughout the day and  instead of dessert items , we ' ll order breakfast stuff .  assignments / budget ! ! ! !  please note assignments below ; for each team , collaborate between now and our  next meeting to determine what purchases need to be made - budgets will be  discussed at that meeting . again , it will be on wednesday , december 6 th from  9 : 30 am until 10 : 30 am with the location tbd .  kwanzaa - daryl kitchen * / liz taylor  chinese new year - elsie lew * / anita dupont  las posadas - zulie flores * / maggie valles / lillian villeral  christmas - donnis traylor * / missy stevens / michael cuccia  chanukah - laura schwartz * / heather alon  ramadan - sylvia thomas * / janie bonnard / dianne langeland  st . lucia - joy werner * / stephanie baker  devali - sonia garcia * / sophie patel / rebecca longoria  greeters / traffic control / corsages - sandy lewelling  executive floor - deb gebhardt  logistics - charla reese ( communication , entertainment , food , picture holders )  photographer - laura schwartz  houston children ' s choir - misha siegel  * indicates holiday team leader  responsibilities  attend planning committee meetings and work with other volunteers assigned to  your holiday .  research meaning of holiday and determine appropriate decorations , symbols , &  food items - purchase after budget approval .  create information sheet for employee hand - out .  decorate between 7 : 00 am and 8 : 00 am on 12 / 19 .  be creative ! ( play appropriate recorded music , dress up in related clothing ,  etc . )  ensure office is manned during open house ( 8 : 00 am - 11 : 00 am ) - answer any  questions , pass out materials , etc .  recruit additional volunteers !  additional volunteers  delores escamilla  val villeral  raquel guerrero  bert frazier  david tagliarino  rose riveria  thank you !  charla  x 35202\",0\n\"Subject: re : a / a program question  gwyn :  just because the a / a program does not have a contract does not mean  that enron does not . do you have a telephone number for melly ' s  and i will call them directly and ask her if she has a contract .  thanks !  shirley  gwyn koepke @ enron  10 / 23 / 2000 04 : 22 pm  to : vince j kaminski / hou / ect @ ect  cc : shirley crenshaw / hou / ect @ ect  subject : re : a / a program question  vince ,  the a / a program does not have a contract in place with melly language  services . it appears that by the note below from my contact in the a / a - hr  department , the reimbursement policy appears to be driven by department , not  enron at large .  as i mentioned earlier , if i continue with my current tutor , but outside of  the melly language services , the cost to the department will decrease for me  to take french classes .  pls advise if research will be able to continue to fund my lessons .  many thanks ,  gwyn koepke  - - - - - - - - - - - - - - - - - - - - - - forwarded by gwyn koepke / na / enron on 10 / 23 / 2000 04 : 19  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : ivonne brown 10 / 23 / 2000 04 : 17 pm  to : gwyn koepke / na / enron @ enron  cc :  subject : re : a / a program question  gwyn ,  in the past the associate & analyst program use to pick - up the cost for the  classes , but they stopped doing so effective 1 / 99 . ( although , some business  units decided to continue paying for it - you may want to double check with  your business unit to whether or not they have a contract . the a / a dept does  not . ) please let me know if you have additional questions .  thank you for your patience .  sincerely ,  ivonne brown  gwyn koepke  10 / 23 / 2000 01 : 15 pm  to : ivonne brown / na / enron @ enron  cc :  subject : a / a program question  ivonne , have you been able to find an answer to the attached ? thanks !  gwyn  - - - - - - - - - - - - - - - - - - - - - - forwarded by gwyn koepke / na / enron on 10 / 23 / 2000 01 : 14  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  gwyn koepke  10 / 19 / 2000 08 : 25 pm  to : ivonne brown / na / enron @ enron  cc :  subject : a / a program question  ivonne ,  i am currently enrolled in a french language class thru enron and melly ' s  language services , and my group is paying the cost directly .  i am considering quitting the melly ' s language program in favor of an outside  private tutor , for a number of reasons . it will be cheaper too .  i would like to know :  1 . does enron have a contract in place with melly ' s language service , to be  the exclusive provider of language services to enron ?  2 . will enron pay the costs of my language classes if they are held outside  of the melly contract ( if any ) ?  i just want to make sure that if i decide to \"\" drop out \"\" of the melly classes  and sign up for other private tutoring courses , which will be less expensive  than the melly svc , that enron will not have a problem picking up the tab .  vince kaminski , the md , wants to know this , to ensure there is no legal  restriction on who must provide these language services in order to secure  enron reimbursement .  thanks for your help .  gwyn koepke\",0\n\"Subject: dec 2 super saturday friday and saturday participation  please see attached .  thanks  shelly\",0\n\"Subject: re : creditdotcom projects  amitava ,  can you schedule a brainstorming session with vasant , tanya , rakesh , myself  and ben ( if possible ) ?  what about the trip on monday . has it been scheduled ?  vince  amitava dhar @ enron  01 / 03 / 2001 08 : 30 am  to : vince j kaminski / hou / ect @ ect , ben parsons / lon / ect @ ect  cc : vasant shanbhogue / hou / ect @ ect  subject : creditdotcom projects  the following is a good summary from vasant about the projects and what is  ahead of us .  ben , please let me know when things are ready ; i can plan my trip accordingly .  thanks ,  amitava  enroncredit . com is working on 3 main models - - - the fmc model , the placement  model , and the movement model .  fmc model : provides credit default swap price curves for 16 ratings with 33  industry offsets . each day , this model takes the previous day ' s trader  curves and adjusts them for the movement in bloomberg yields and observed  swap prices .  placement model : uses linear regression to credit default swap prices using  dummified ranges for market capitalization , liquidity , kmv score , etc . one  main issue here is that the dataset is biased towards investment grade  names . alternate approaches looked at developing separate models for  separate sunsets of names .  movement model : provides an alert system for news . this is under  development .  current involvement of houston research group members is in the  development / modifications of the placement model , especially in thinking  through the various single vs multi model approaches . we can help in the  brainstorming for better models for subsets . one main project right now is  to get a separate model for subsidiaries , and to exclude subsidiary names  from the main regression .  value - at - risk is based on historical variance - covariance approach .  the portfolio model is under development .  agenda for houston research group members :  once sufficient data is collected , start reviewing for potential analytic  relationships .  get weekly updates from london , and provide feedback .  plan on a trip if the work warrants it , once the agenda is fairly well drawn  out , and data is available for analysis .\",0\n\"Subject: re : energy finance conference participation - feb 22 - 23  thank you . we look forward to having you here .  sincerely ,  angela  * * * * * * * * * * * * * *  angela dorsey  assistant director  center for energy finance education shirley . crenshaw @ enron . com ;  vkaminski @ aol . com  subject : re : energy finance conference participation - feb 22 - 23  angela ,  thanks for your message . i shall be glad to attend the conference ,  both days . i shall call dr . ronn to discuss my participation .  vince kaminski  \"\" angela dorsey \"\" on 01 / 16 / 2001 12 : 54 : 15 pm  to : \"\" vincent kaminski ( e - mail ) \"\"  cc :  subject : energy finance conference participation - feb 22 - 23  vince :  further to dr . ronn ' s e - mail dated 1 / 9 , please confirm your  participation  in the ut 2001 energy finance conference to be held on the university of  texas campus feb . 22 - 23 rd .  sincerely ,  angela  * * * * * * * * * * * * * *  angela dorsey  assistant director  center for energy finance education & research  the university of texas at austin  department of finance , cba 6 . 222  austin , tx 78712  angela . dorsey @ bus . utexas . edu  * * * * * * * * * * * * * *\",0\n\"Subject: re : london status report - research weather  fyi our 10 : 30 meeting today  - mike  - - - - - - - - - - - - - - - - - - - - - - forwarded by mike a roberts / hou / ect on 04 / 20 / 2001  06 : 41 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  tony hamilton @ enron  04 / 20 / 2001 06 : 35 am  to : mike . a . roberts @ enron . com  cc : tani . nath @ enron . com  subject : re : london status report - research weather  tony hamilton  04 / 20 / 2001 04 : 03 am  to : stephen . bennett @ enron . com  cc :  subject : re : london status report - research weather  hi mike ,  please find a list of our current daily products and services , together with  identified research projects ( to - date ) for european weather research - this  has been forwarded to tani nath to aid her recommendations for a 2 nd met . for  london .  1 ) this week :  * a meeting with james willis ( agriculture ) has been arranged for monday  afternoon to discuss weather input for softs .  * following suggestion from tani , meeting has been pencilled in with pierre  aury ( coal trading ) to discuss weather input .  * at present we are providing kristian lande ( continental power ) with daily  precipitation outlook for spain - he is working towards getting a daily  weather breifing for power set up .  * a meeting with alex mcleish ( global products ) has been pencilled in  following his return from houston to discuss the way forward in building a  forecast model for crude api based on hdds on either side of the atlantic .  * we have made progress in getting additional information on european ports  following meeting with scott moncrieff and sylvie mostura ( shipping and  transportation ) - we now get forwarded daily reports for some baltic , black  sea , scandanavian , italian and indian ports , which include various degrees of  weather information .  * we now supply north sea conditions and forecasts as a part of the 8 am uk  gas briefing .  * we ' ve added a midday \"\" update \"\" for uk gas traders if / when mrf ensembles  warrent changes or clarification .  * following extremely useful meeting with tani nath , it is now clear that need  for 2 nd meteorologist will have to be cleared with her superiors here in  london before moving forward .  2 ) still to follow up  * get meeting with chris mahoney to determine if we can provide any  additional support ( e . g . daily briefing ) for crude and products .  * follow up on a potential morning briefing for continental power .  * get meeting arranged with david anderson at ecmwf to discuss data products  and services they provide .  * continue to investigate model grib data to produce a \"\" confidence interval \"\"  for model output .  * meet with ross mcyntire to determine needs from weather drivatives  * develop a standard hydro product ( daily updates ) for continental power  ( spain specifically )  * develop forecast verification scheme and internal forecasting tools  * avistar recorded europe briefings  3 ) challenges :  * still appears to be some confusion over whether we are moving desks this  afternoon or not !  * karin ahamer ( the team assistant here ) is going to verify later exactly  which pcs we will be using from monday next week ( some of the loaner pcs we  are currently using contain important software left over from their previous  users ) .  * our time in assembling reports is becoming more efficient on a daily  basis . however as our product load increases this may become a factor over  next few weeks .  _ _ _ _ _ _ _ _ _ _ _ _ _ _  mike ,  we look forward to talking with you and vince later today !  see you later ,  tony\",0\n\"Subject: re : my resume  we ' ll get this offer out today , vince .  molly  - - - - - original message - - - - -  from : kaminski , vince  sent : friday , april 13 , 2001 10 : 03 am  to : molly magee / hou / ect @ enron  cc : kaminski , vince ; crenshaw , shirley ; huang , alex  subject : my resume  molly ,  we would like to bring this student as a summer intern ( the last one ,  we are running out of space ) .  i shall send you another message regarding his proposed dates .  thanks . i hope you have a very happy easter .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 13 / 2001 10 : 03 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  zhendong xia on 04 / 12 / 2001 03 : 58 : 25 pm  to : vince . j . kaminski @ enron . com  cc :  subject : my resume  hi , dr . kaminski :  glad to get your reply . here is my resueme . if you wanna know more  about me , please feel free to contact me . thanks .  zhendong xia  georgia institute of technology  school of industrial and systems engineering  email : dengie @ isye . gatech . edu  dengie @ sina . com  tel : ( h ) 404 - 8975103  ( o ) 404 - 8944318  - cv . doc > \",0\n\"Subject: fw : california electricity crisis : what to do  for your reading enjoyment .  we should shoot for breakfast on thursday morning feb . 8 th .  fyi . the following link will take you to a joint statement about what to  do in the california electricity crisis .  william w . hogan  john f . kennedy school of government  harvard university  79 john f . kennedy street  cambridge , ma 02138  617 - 495 - 1317 ( o )  617 - 495 - 1635 ( f )  email : william _ hogan @ harvard . edu  web page : www . whogan . com  or  http : / / ksgwww . harvard . edu / people / whogan\",0\n\"Subject: re : fw : parent - subsidary model  hi iris  we started off with about 105 companies , which were enron europe ' s uk power  and gas desk counterparties . i ' m not sure where you got the figure of 500  from - maybe this is the entire enron europe counterparty list , which  constitutes the next major effort for end - july .  from this list of 104 , only the 72 in the spreadsheet had information in  amadeus . the other firms had no information available , most likely because  they were too new .  ben  from : iris mack / enron @ enronxgate on 17 / 04 / 2001 19 : 37 cdt  to : ben parsons / lon / ect @ ect  cc : tomas valnek / lon / ect @ ect , amitava dhar / corp / enron @ enron , mike  mumford / lon / ect @ ect , vasant shanbhogue / enron @ enronxgate , vince j  kaminski / hou / ect @ ect  subject : re : fw : parent - subsidary model  hi again ,  thanks for the financial data on enron ' s european counterparties .  it is my understanding that you started out with a list of 500 such  counterparties . however , your spreadsheet only contains information for 72  of these european counterparties .  will you please tell me the logic behind the elimination of the 400 + other  counterparties ?  thanks so much ,  iris  - - - - - original message - - - - -  from : parsons , ben  sent : tuesday , april 17 , 2001 2 : 56 am  to : mack , iris  cc : valnek , tomas ; dhar , amitava ; mumford , mike  subject : re : fw : parent - subsidary model  hi iris  the inputs and outputs generated by riskcalc can be seen in the attached file :  >  we only looked at the 5 - yr pd .  inputs are in columns a - u . these are the inputs generated by amadeus . you can  run these inputs through the riskcalc model over the web  ( http : / / www . moodysqra . com / privfirm ) using the login : dupred , password :  detective . this is our trial licence which lasts for about 2 more weeks ( mike  mumford will have more details about the current licence )  tomas valnek was getting the data from the amadeus database , so i ' ll leave it  to him to determine if houston access is possible . in the meantime you can  use the dataset attached for testing purposes .  ben  from : iris mack / enron @ enronxgate on 12 / 04 / 2001 17 : 58 cdt  to : ben parsons / lon / ect @ ect  cc : amitava dhar / corp / enron @ enron  subject : fw : parent - subsidary model  hi ben ,  how are you ? today we had a meeting with craig chaney and jeff kinneman to  discuss the private firm model .  they requested that i spend some time carefully analyzing the moody ' s  riskcalc model . i noticed that you also have been looking at riskcalc - as  indicated in your paper entitled \"\" pricing parent companies and their  subsidiaries : model description and data requirements \"\"  other than the example discussed in your paper , did generate any other test  statistics , scores , etc .  also , you stated that you used amadeus database . we are in the process of  trying to obtain data from various data vendors - but that may take a while .  in the mean time , may we have access to the amadeus database or some sample  dataset ?  thanks so much ,  iris  - - - - - original message - - - - -  from : valnek , tomas  sent : tuesday , april 10 , 2001 9 : 10 am  to : fiala , markus ; seyfried , bryan ; salmon , scott ; kirkpatrick , eric ;  mumford , mike ; fontaine , jean - sebastien ; brooks , simon ; price , nigel ;  diprose , robert ; rezaeian , reza ; gordon , mike ; lee , derek ; hershkovitz , ilan ;  golden , sally ; stephan , nicholas ; albanis , george ; shanbhogue , vasant ; mack ,  iris  cc : parsons , ben  subject : parent - subsidary model  attached is a description of the parent - subsidiary model that ben and i have  been working on over the last few weeks .  comments welcome !  tv  >\",0\n\"Subject: request for historical curve information  vince ,  per our conversation this morning , i would appreciate the following  historical curve information as soon as possible :  1 . on february 17 , 2000 , what was the summer ' 00 strip for vent to ml 7 ,  demarc to ml 7 , and vent to chicago  2 . on july 27 , 2000 , what was the august ' 00 strip for vent to chicago  3 . on may 9 , 2000 , what was the may ' 00 strip for vent to chicago  4 . on may 30 , 2000 , what was the june strip for vent to chicago  5 . on june 29 , 2000 , what was july strip for vent to chicago  6 . on sep . 29 , 2000 , what was the october strip for vent to ml 7  thank you in advance for your prompt attention to this matter . please call  me if you have any questions . thanks again !  mike barry  402 / 398 - 7105\",0\n\"Subject: re : software license  oh , ok , i didn ' t know that . - wish i lived in france for august then . as  long as it is ok with you that we don ' t get this purchased soon . i just  wanted to make sure i did everything i could to get the software for you .  thanks ,  karla  vince j kaminski  08 / 08 / 2000 09 : 35 am  to : karla feldman / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect  subject : re : software license  karla ,  august is a vacation month in france .  i would not count on a response any time soon .  vince  from : karla feldman on 08 / 08 / 2000 09 : 34 am  to : geman @ dauphine . fr  cc : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect  subject : software license  ms . geman ,  i am just following up to see if you had received my previous message  forwarded below and whether you have a response so that we can move forward  with this contract ?  thank you ,  karla feldman  - - - - - forwarded by karla feldman / hou / ect on 08 / 08 / 2000 09 : 23 am - - - - -  karla feldman  07 / 28 / 2000 01 : 41 pm  to : geman @ dauphine . fr  cc :  subject : software license  dear ms . geman ,  i met with vince kaminski yesterday regarding picking back up with the  license agreement we were working on back in march . he relayed some  additional requirements which need to be added to the agreement , which  include the following :  1 . the price agreed upon is $ 90 , 000 .  2 . d - g will provide system support .  3 . no later than 12 months of execution of the agreement , d - g will provide  the source code to enron . in the meantime , the source code is to be in  escrow . additionally , the source code would be released sooner than the 12  months if any of the following conditions occur : ( i ) d - g goes out of  business ; ( ii ) d - g is unable to provide effective technical support ; or ( iii )  if d - g agrees to release it sooner .  before i have our attorney add these things to the agreement , we need to  discuss the escrow situation . vince mentioned that you had suggested that  your attorney keep the software in escrow . is your attorney a u . s .  attorney ? it seems like i may have recalled that way back in march you might  have said you had a friend or relative that was an attorney . is that the  same person ? does this attorney work for a large firm , small firm , or solo  practitioner ? basically , if you could just provides some additional  information about your attorney , i would appreciate it .  we normally would use an escrow company to put the software in escrow . we  have dealt with a company here in the u . s . called dsi technology . i will  check into that pending your answer regarding your attorney .  once we decide what we want to do regarding placing the software in escrow ,  we will red - line the agreement to reflect such changes and e - mail it back to  you for your review .  i look forward to hearing from you .  karla feldman  enron corp .  contract administration  ( 713 ) 646 - 7554\",0\n\"Subject: re : visit to enron  nick ,  the airport is about 30 minutes by cab from the office ( 1400 smith ) .  the best hotel is either hyatt regency downtown or doubletree  downtown ( it is important to emphasize downtown when making  reservations ) . the hotels are within a walking distance  from the enron building .  we can make reservations for dinner around 6 : 30 - 7 : 00  in a resturant within 10 minutes by car from the hotel .  by the way , we shall be very glad to reimburse you for the trip related  expenses .  vince  nick bambos on 05 / 11 / 2000 05 : 31 : 53 pm  to : vince . j . kaminski @ enron . com  cc : stinson . gibner @ enron . com  subject : re : visit to enron  vince ,  yes , that would be ideal . but let me call first my travel agent to  see if there is a flight that would satisfy all the other  constraints . what time should i be at enron on thursday , and how far is  the airport from your offices ?  thanks ,  nick  vince . j . kaminski @ enron . com wrote :  >  > nick ,  >  > can you come to houston thursday night and meet me , stinson and  > kevin hannon ( one of top 3 executives at enron broadband services )  > for dinner ?  >  > vince  >  > nick bambos on 05 / 10 / 2000 10 : 49 : 46 am  >  > to : vince . j . kaminski @ enron . com  > cc : stinson . gibner @ enron . com  > subject : re : visit to enron  >  > vince ,  >  > many thanks for arranging that . yes , friday 05 / 26 / 00 is good .  > i ' m blocking off in my calendar may 26 for the visit .  >  > again , many thanks . i look forward to seeing you and stinson  > in two weeks .  >  > nick  >  > vince . j . kaminski @ enron . com wrote :  > >  > > nick ,  > >  > > thanks for your message . the best date for a visit to enron  > > would be friday , may the 26 th . please , let me know if this date would  > work  > > for you .  > >  > > vince  > >  > > nick bambos on 05 / 01 / 2000 04 : 26 : 30 am  > >  > > to : vince . j . kaminski @ enron . com  > > cc :  > > subject : re : visit to enron  > >  > > vince ,  > >  > > how are you ? hope all is well .  > >  > > is there any chance we can schedule my visit to enron on friday , may 19 ,  > > or friday , may 26 ?  > >  > > by the end of april i was able to attract a top new student to work on  > the  > > project .  > > the other one for the coming year will be giuseppe . by spending the  > summer  > > at enron , he will be in a position to bring the new one up to speed and  > > create an intellectual team here at stanford to look at these problems .  > >  > > i must move ahead soon to put the project in place and get the work  > going .  > >  > > talk to you soon ,  > >  > > nick  > >  > > vince . j . kaminski @ enron . com wrote :  > > >  > > > nick ,  > > >  > > > we can close the loop on our commitment to support the research  > projects  > > > before your visit to enron .  > > >  > > > my assistant , shirley crenshaw , will call you to set up a conference  > > call  > > > with me , stinson gibner ,  > > > and tom gros from enron broadband services to discuss all the isssues .  > > > friday this week would work for  > > > both tom and me . i think we need about 15 minutes .  > > >  > > > vince  > > >  > > > p . s . shirley , nick ' s phone number is 650 796 8163 ( cell ) , 650 - 725 - 5525  > > > ( office ) .  > > >  > > > nick bambos on 03 / 12 / 2000 05 : 32 : 35 pm  > > >  > > > to : vince . j . kaminski @ enron . com , bambos @ stanford . stanford . edu  > > > cc :  > > > subject : visit to enron  > > >  > > > hello vince ,  > > >  > > > it was nice seeing you at stanford and many thanks for the lunch  > > > we had together . i really enjoyed our discussions , both at the  > > > technical level and otherwise .  > > >  > > > i promised to send you an e - mail regarding possible dates for  > > > a visit to enron . i delayed it for a week till my schedule was  > > > clearer . let ' s see if we can get a match with your schedule -  > > > mine is rather terrible :  > > >  > > > friday , 21 st of april looks good . but april 23 rd is easter  > > > sunday , so that may make it difficult for some people at enron  > > > to be around . let me know if that is the case . i am willing to  > > > visit then , because the week after that i am scheduled to be in  > > > japan and in the previous weeks i am all committed on fridays .  > > >  > > > friday , 19 th of may is the next possibility , but this probably  > > > is too far out . the main problem is that i am operating within  > > > a window of opportunity for attracting top students for this  > > > research . this window closes by the end of april , and it would be  > > > important for the student support funds to be in place then , so  > > > that i can make hard commitments to students and attract top  > > > talent . i am already reviewing files of students who have  > > > approached me for phd advising , and i am in a mode of doing \"\" soft  > > > commitments to star - level students \"\" to get this research and its  > > > potential on their radar screen . top students are highly sought  > > > after by advisors and i want to be an early player in this  > > > competition .  > > >  > > > does my visit to enron have to happen before we can set up the  > > > project and student support at stanford ? if so , doing it before the  > > > end of april is important for getting top people . if the visit can  > > > happen after we get the ball rolling , then we can schedule it in may .  > > > i assume there will be multiple visits both ways when the project gets  > > > going . please let me know what you think .  > > >  > > > best regards ,  > > >  > > > nick\",0\n\"Subject: organisational change  as a continuation of the integration of enron metals into enron europe we are  pleased to announce the following organisational changes which become  effective immediately .  tom mckeever , presently chairman of enron metals will move into the role of  vice chairman enron europe reporting directly to john sherriff and michael  brown . tom will focus on developing our key senior business relationships  across all of enron europe .  joe gold will become president of enron metals responsible for the entire  organization . we will announce joe ' s replacement for managing our trading  and origination efforts on the continent in the near future .  michael farmer and michael hutchinson will continue in their roles managing  the metals ' s merchanting and financial trading businesses respectively .  please join us in congratulating tom and joe on their new roles .  from the enron europe office of the chairman\",0\n\"Subject: re : here it goes !  steve ,  taking summer interns is the best way to screen and identify good candidates  at low cost and low risk . i would take this person in ,  assuming you can still run it by the analyst / associate program . they closed  the books  for the summer .  let me know if you run into any roadblock . i shall try help you from here .  vince  steven leppard  03 / 29 / 2000 08 : 31 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : here it goes !  vince  do you have any views on taking summer interns here in the research group in  london ? one of our analysts has recommended a friend of hers ( resume  attached ) . i ' m sure we could dream up some work for an intern , so let me  know what you think .  many thanks ,  steve  - - - - - - - - - - - - - - - - - - - - - - forwarded by steven leppard / lon / ect on 03 / 29 / 2000  03 : 30 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  zuzana strmenova  02 / 23 / 2000 10 : 51 am  to : steven leppard / lon / ect @ ect  cc :  subject : here it goes !  thanks , a lot steve .\",0\n\"Subject: re : resume  thanks , vince - -  vince j kaminski  05 / 22 / 2000 03 : 43 pm  to : colleen sullivan / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect  subject : re : resume  colleen ,  we are looking at some fab 133 related issues and we need all the help we can  get .  we can hire ainsley as a temp ( outside the a & a pool - they closed the list  for the summer ) .  we shall contact her directly and ask if she is interested .  vince  p . s . shirley , please set up a phone interview for me and datren .  from : colleen sullivan 05 / 19 / 2000 11 : 26 am  to : jean mrha / enron communications @ enron communications , robert  superty / hou / ect @ ect , jeffrey a shankman / hou / ect @ ect , hunter s  shively / hou / ect @ ect , scott neal / hou / ect @ ect , phillip k allen / hou / ect @ ect ,  fred lagrasta / hou / ect @ ect , craig breslau / hou / ect @ ect , vince j  kaminski / hou / ect @ ect , sally beck / hou / ect @ ect , brad mcsherry / hou / ect @ ect ,  george smith / hou / ect @ ect , edward terry / hou / ect @ ect , katherine l  kelly / hou / ect @ ect , randall l gay / hou / ect @ ect , beth perlman / hou / ect @ ect , ed  mcmichael / hou / ect @ ect , stephanie miller / corp / enron @ enron  cc :  subject : resume  if you are looking for any summer interns , please take a look at this  student ' s resume . she ' s a junior at ut in the honors business program ,  extremely intelligent , with great potential . my sister was one of her  teachers at humble high school and speaks very highly of her character ,  intelligence and drive . she always tells me to remember her name because  i ' ll hear it again some day . if you know of anyone else who may be  interested , let me know and i will forward her resume to them .  - resume _ gaddis . doc\",0\n\"Subject: class proposal by yannis  hi vince ,  yannis of the weather desk is planning to develop relationship with prof  rene carmona in doing weather analysis . to start this off , they are planning  to pay prof carmona to give a training class as outlined below , and they  want to know if research is willing to send people and bear part of the costs .  we can talk more at 4 : 00 pm , but while there is no doubt that getting people  from outside to present new ideas is always important and interesting , i  think research group members can easily give most of these talks .  apparently , people are interested in these topics and are willing to pay to  listen . my thought is that if the intent is to develop relationships , that  is fine , but the research group should also be given the opportunity to  provide more training and get more visibility . i have already communicated  this to joe and to yannis .  vasant  - - - - - - - - - - - - - - - - - - - - - - forwarded by vasant shanbhogue / hou / ect on 03 / 05 / 2001  10 : 40 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : yannis tzamouranis / enron @ enronxgate on 03 / 05 / 2001 10 : 01 am  to : vasant shanbhogue / hou / ect @ ect  cc :  subject :  here is a tentative course description .  day 1 : extreme value distriutions and copulas  1 . heavy tail distributions : exploratory data analysis and detection .  extreme value distributions and generalized pareto distributions .  estimation and simulation . practical examples .  2 . notions of dependence and copulas . estimation and simulation .  experiments with the program evanece .  day 2 : principal component analysis and modern regression  1 . principal component analysis and applications to the yield curve and  the detection of contagion in financial markets .  2 . nonlinear regression and the construction of yield curves .  3 . nonparametric regression ( kernel and projection pursuit methods ) and  alternatives to the black - scholes formula to option pricing .  day 3 : time series analysis  examples of temperature time series will be used to introduce and  illustrate the following concepts and techniques :  1 . removing trends and seasonal components , and stationarity .  2 . fitting the classical autoregressive and moving average models .  3 . discretization of stochastic differential equations  4 . multivariate time series  day 4 : nonlinear systems and filtering  1 . arch , garch and stochastic volatility models  2 . linear state space models and the classical kalman filter  3 . nonlinear systems and particle filtering .  4 . applications\",0\n\"Subject: re : wharton tiger team # 3  melinda ,  would you please coordinate john henderson into the thursday videoconference ?  thanks !  - - christie .  - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 01 / 30 / 2001  06 : 31 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  mohn henderson @ newpower  01 / 30 / 2001 04 : 13 pm  sent by : melissa corley @ newpower  to : christie patrick / hou / ect @ ect @ ees  cc : jhenders @ newpower @ ees , vince j kaminski / hou / ect @ ect , melinda  mccarty / corp / enron @ enron , degiacic @ wharton . upenn . edu  subject : re : wharton tiger team # 3  john would prefer to join the thursday call via teleconference . if you could  provide the dial in number he will call in .  thanks ,  melissa corley  john henderson  christie patrick @ ect  01 / 30 / 2001 03 : 50 pm  to : jhenders @ newpower @ ees , vince j kaminski / hou / ect @ ect  cc : melinda mccarty / corp / enron @ enron , degiacic @ wharton . upenn . edu  subject : wharton tiger team # 3  hi john and vince !  john , hopefully you received my voice mail regarding the matter set forth  below .  i ' m in ny now and won ' t return until thursday morning . perhaps it would be  easiest for john to come to the video conference on thursday ( if he ' s in  houston ) or via telephone if he ' s travelling ? ?  whatever you both think is best . . please let me know !  my assistant , melinda mccarty , is setting up the call location at the enron  building , as well as the dial - in number with donna piazze at wharton .  melinda , please include john in the distribution of the video conference  location .  thanks !  - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 01 / 30 / 2001  03 : 43 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" degiacinto , clayton \"\" on 01 / 30 / 2001 02 : 00 : 07 pm  to : \"\" ' christie . patrick @ enron . com ' \"\"  cc : \"\" feerick , dennis \"\" , \"\" lessar , stephen \"\"  , \"\" vittal , maheshram \"\" ,  \"\" bassal , omar \"\" , \"\" cummins , marc \"\"  subject : wharton tiger team # 3  christie ,  as we talked last thursday via video teleconference , we are planning to  narrow our scope to focus on a marketing / promotion plan for newpower  including value - added products and services for the future . before we talk  again on thursday , we would like to speak with john henderson again to see if  he recommends any specific items he would like us to address .  we are having trouble contacting him and wonder if you could facilitate a  phone meeting between us , or if it would be best to include him in our next  video teleconference . we are available the next two days at lpm and 4 pm  houston time .  we understand that john is a very busy person , and we appreciate any help you  can give in getting us together to ensure our work is commensurate with his  expectations .  thanks ,  enron team 3 ( retail )\",0\n\"Subject: school teaching  hello vince ,  i stopped by to see you today 03 / 28 / 01 . however , mrs . shirley notified me  that you were out of the country . look , i need another favor . my wife , whom  you met last summer , and i have been living in the woodlands about a month  now . we have tried , to no avail , to get her in the local school district as  a speech pathologist or a k - 6 grade school teacher . she could easily find a  teaching job in the houston independent school district . however , i would  prefer that she taught locally , in the woodlands . i need to know if you know  of anyone we can contact to get her in the woodlands school system . i would  greatly appreciate if you could help us out once again . i am attaching her  resume ' for your perusal . thanks a million vince ! ! !  sincerely ,  datren williams  ees x 58654\",0\n\"Subject: entouch newsletter  business highlights  enron producer one  enron producer one facilitates one - stop shopping for the producer \u0001 , s  infrastructure needs . through business relationships with hanover  measurement services and applied terravision systems , enron producer one will  offer and custom - configure a number of valuable production services and  pricing plans to reduce overhead and simplify back - office tasks . initial  products offered are well connects , transportation , marketing , measurement  and accounting services . enron producer one is managed and supervised by  john grass .  in the news  ceo says texas in good shape for electricity deregulation  dallas ( ap ) - enron corp . ' s chief executive and president said tuesday he  believes that texas energy markets are in good shape as the state prepares  for deregulation .  jeffrey skilling told an audience of about 400 business people at a downtown  hotel that california \"\" has given the term deregulation a terrible name . \"\"  electric deregulation in texas officially starts jan . 1 . \"\" in texas , i think  we ' ve got a pretty good system , \"\" he said .  in san francisco on tuesday , the california public utilities commission  unanimously approved electricity rate increases of up to 46 percent to try to  head off blackouts this summer by keeping the state ' s two biggest utilities  from going under . when california officials set up deregulation they allowed  the price of wholesale electricity to rise but capped the amount companies  could charge customers , skilling said . socal edison and pacific gas &  electric say they have lost more than $ 13 billion since last summer because  they haven ' t been able to pass on the high cost of wholesale electricity .  skilling said texans are in a much better position and shouldn ' t worry that  their state ' s deregulation would be like the california experience .  \"\" california , they just put together a crazy system , \u0001 8 he said in his first  public comments since becoming the houston - based company ' s chief executive  officer in february . \"\" the markets in california are the most regulated  markets in north america today . and that ' s what is causing the problem . \"\"  03 / 27 / 2001 associated press newswires copyright 2001 .  welcome  new hires  egm - charles crow , nancy johnson , gregor lehmiller  eim - darrell aguilar , latrisha allen , wesley wilder , ronald barnes  ena - brian cruver , craig dean , martha kessler  enrononline statistics  below are the latest figures for enrononline as of march 16 , 2001 .  ? total life to date transactions > 813 , 000  ? life to date notional value of transactions > $ 489 billion  nuggets and for supplies to all consumers including households by 2005 .  the setting of rules in the regulation for how power transmission tariffs can  be charged for cross - border transactions and how congestion and capacity  allocation at borders within the eu should be managed by transmission system  operators .  enron concludes that it is encouraged by the efforts of the commission to  accelerate the european electricity and gas market opening and the  reinforcement of third party rights of access to transmission networks . the  commission ' s approach of harmonizing both the timetable and the regulatory  framework deserves support from all member states .  legal stuff  the information contained in this newsletter is confidential and proprietary  to enron corp . and its subsidiaries . it is intended for internal use only  and should not be disclosed .\",0\n\"Subject: re : hi  thank you very much , vince .  i do it right now .  you will be receiving a recommendation form shortly .  many thanks again . have a good evening .  li  vince j kaminski @ ect  06 / 20 / 2000 04 : 10 pm  to : li xiao / corp / enron @ enron  cc : vince j kaminski / hou / ect @ ect  subject : re : hi  lixiao ,  i shall be glad to help and give you a good recommendation .  please , give my name as a recommender to the a / a pool .  vince  li xiao @ enron  06 / 20 / 2000 04 : 06 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : hi  hi , vince ,  how are you ?  just last week , i got admission from u . of chicago mba program , so did yvan ,  by the way .  now , i am applying loan from enron a / a pool .  the person who is in charge of this told me that it needs three  recommendations from current boss and previous boss for the application , and  that the requirement includes all prc rankings in either ' excellent ' or  ' superior ' , that i didn ' t achieve in the first rotation in research .  getting loan is cricial at the stage . i wonder if you can be one of my  recommenders .  this will be a big help .  thank you .  li x 39635\",0\n\"Subject: investment  to all whom it may concern :  i keep receiving such unsolicited messages  ( please , see below ) that represent an obvious scam .  is there any way to block out the messages from this source ?  i assume other employees of enron are also being hit .  vince kaminski  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 02 / 2001  08 : 19 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" dagogo kalu \"\" on 12 / 30 / 2000 02 : 15 : 58 am  to : vince . j . kaminski @ enron . com  cc :  subject : investment  from : col . dagogo kalu  tel / fax 448453342783  attn : president / ceo  request for an assistance  dear sir ,  with due respect and knowledge of your good reputation , i decided to contact  you for this matter that need urgent attention . i am col . dagogo kalu . i  was the commandant of the west african peace keeping force & monitoring  group ( ecomog ) until i sustained a very serious injury that put me off the  military camp for about 3 months now . honestly , i have full trust for your  honesty hence i write this letter to you .  during our recent mission to sierra leone , a diamond rich west african  country to cushion the war between the rebels and the ruling government , we  ran into 2 boxes ( consignment ) right inside a thick jungle where we believed  was a hide out of the rebels . as we opened the boxes , one that is smaller  contains numerous sizes of raw diamond . the bigger box contains about us  $ 15 . 2 million , which we believed to be the total amount of diamond sold at  that period of time by the rebels before we invaded the place .  myself and my two other colleagues took the boxes away . i took the bigger  box containing the us $ 15 . 2 million to cotonou benin republic which is the  nearby country and deposited it with one security company for safe keeping  to enable me think wisely on what to do with the money . the smaller box  containing the raw diamond i gave it to my other 2 colleagues , which they  accepted in good faith .  a month after this , the rebels lunched a counter - attack on us where i  sustained a very serious gun shut wound on my right leg . a lot of our boys  died but few survived . at this moment , i am receiving medical treatment  here in london . this is why i need your help urgently .  i need a foreign company i will present as the beneficiary of the huge  amount and also pay in the money into their account . your bank account must  be a good one where we shall not pay much as tax . you shall also serve as  the general overseer and guardian of this fund and all the investment of  this money will be under your care until i recover fully .  i will give you all the details of the transaction immediately i get your  response . you will also get a suitable percentage ( % ) as your share . all  the documents of the deposit of the money are intact with my wife . i have  already finalized this arrangement with the security company so there is no  problem at all .  please you can reach me through my direct tel / fax no : 448453342783 where i  am receiving treatment . in your reply , state clearly your direct telephone  and fax numbers for easy communication and more confidentiality .  further details will be given to you once i hear from you .  i await your urgent response soonest .  best regards ,  col . dagogo kalu  get your free download of msn explorer at http : / / explorer . msn . com\",0\n\"Subject: re : spring 2001 conference participation by jeffrey k . skilling  vince , jeff has decided to decline this speaking opportunity . he is  scheduled to speak at a leadership conference at ut on 2 / 16 , so given his  time limitations , he wants to pass on this one . sorry to be the messenger of  bad news . srs  vince j kaminski @ ect  10 / 12 / 2000 04 : 57 pm  to : sherri sera / corp / enron @ enron  cc : vince j kaminski / hou / ect @ ect , richard causey / corp / enron @ enron  subject : re : spring 2001 conference participation by jeffrey k . skilling  sherri ,  any resolution of the scheduling conflict jeff skilling had for february the  22 nd ?  our friends at ut are ready to make the reservations and send out invitations  to this conference  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 12 / 2000  05 : 00 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" ehud i . ronn \"\" on 10 / 12 / 2000 10 : 12 : 56 am  to : richard . causey @ enron . com , vince . j . kaminski @ enron . com  cc :  subject : re : spring 2001 conference participation by jeffrey k . skilling  rick / vince :  good morning .  further to my discussions with vince during his visit to the energy finance  program yesterday , i write at this time to inquire whether mr . skilling ' s  assistant has been able to confirm his participation as 2 / 22 / 2001 keynote  speaker at our conference .  with thanks for your intercession on our behalf ,  ehud ronn  ehud i . ronn  professor of finance and jack s . josey professor in energy studies  director , center for energy finance education and research  mccombs school of business  university of texas at austin  austin , tx . 78712 - 1179  voice : ( 512 ) 471 - 5853  fax : ( 512 ) 471 - 5073  internet : eronn @ mail . utexas . edu \",0\n\"Subject: electricity conference update  here it is ! . . . . apex 2000 conference news no . 2  ( http : / / www . apex 2000 conf . com / update 2 . html ) . updates on current speaker and  presentation list , details for the partner program and social activities and  your apex 2000 conference registration form  if you do not have website access and would like to receive a pdf formatted  update please email us at apex 2000 @ incentre . net  ( mailto : apex 2000 @ incentre . net ) .  all inquiries and requests should be directed to the apex 2000 conference  office at apex 2000 @ incentre . net ( mailto : apex 2000 @ incentre . net ) or ( 403 )  244 - 4487 .  kathleen cheney  apex 2000 conference coordinator  list 7\",0\n\"Subject: eol presentation  thank you for meeting with the students from rice university ' s jesse h . jones  graduate school of management in april . the students greatly appreciated the  opportunity to talk with you . your perspective and insights into eol and its  competitors helped the students gain much more useful information in their  interviews with enymex , houstonstreet . com , ice , dynegydirect , and other  energy e - commerce platforms .  the students will present the results of their research next monday ( may 7 )  at 4 : 00 p . m . in room 49 cl . we would be delighted if you can attend their  presentation . if you cannot attend but would like a copy of their final  report , please feel free to let me know and i will make sure you get it .  thanks again for your help .\",0\n\"Subject: software license  vince ( ii ) d - g is unable to provide effective technical support ; or ( iii )  if d - g agrees to release it sooner .  before i have our attorney add these things to the agreement , we need to  discuss the escrow situation . vince mentioned that you had suggested that  your attorney keep the software in escrow . is your attorney a u . s .  attorney ? it seems like i may have recalled that way back in march you might  have said you had a friend or relative that was an attorney . is that the  same person ? does this attorney work for a large firm , small firm , or solo  practitioner ? basically , if you could just provides some additional  information about your attorney , i would appreciate it .  we normally would use an escrow company to put the software in escrow . we  have dealt with a company here in the u . s . called dsi technology . i will  check into that pending your answer regarding your attorney .  once we decide what we want to do regarding placing the software in escrow ,  we will red - line the agreement to reflect such changes and e - mail it back to  you for your review .  i look forward to hearing from you .  karla feldman  enron corp .  contract administration  ( 713 ) 646 - 7554\",0\n\"Subject: azuix deal valuation  bob ,  please find the price sample simulator , and run different scenarios with  different trend assumptions .  vince and stinson ,  bob and i will show you some results by the end of the day .  zimin\",0\n\"Subject: day off tuesday  stinson ,  i would like to take a day off tomorrow ( tuesday , april 10 ) .  i need to register my son to elementary school and send my cars to service .  my cell number is 713 - 858 - 2577 in case you need to reach me .  zimin\",0\n\"Subject: meeting with riskcare to discuss joint ventures ( michael curran ,  manuel rensink & richard haddow )  michael curran ( head of research ) , manuel rensink and richard haddow  ( director of technology services ) in attendance . contact number : 020 7562  3400\",0\n\"Subject: re : rabi de  anything we can do ?  - - - - - - - - - - - - - - - - - - - - - - forwarded by grant masson / hou / ect on 09 / 15 / 2000 08 : 34  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron north america corp .  from : toni graham @ enron 09 / 14 / 2000 07 : 36 pm  to : grant masson / hou / ect @ ect  cc : norma villarreal / hou / ect @ ect  subject : re : rabi de  grant , i did talk with tanya this evening however since i ' m on vacation  friday i wanted to outline here what rabi has discussed with me .  1 ) title . . . . . he is currently at a vp level and we are offering him manager  2 ) sign on bonus . . . . . . . . . . . the 15 k is not coving the lost bonus he will  receive at he current co ( $ 25 k )  3 ) salary . . . . . . . . . . . he will receive a \"\" risk premium \"\" of approx 10 % befor  tax . he is not able to quantify this for us and i was not able to get a  number out of him as to what he is looking for .  he is very enthusiastic and wants to work for enron but wanted to see if we  could do anything to enhance our offer in these areas .  toni  from : grant masson @ ect 09 / 14 / 2000 08 : 58 am  to : toni graham / corp / enron @ enron  cc :  subject : re : rabi de  toni :  i am talking to vince today . please call me if there are any further  developments i should know about .  regards ,  grant .\",0\n\"Subject: ees retail risk meeting 1 / 31  this is to confirm a meeting scheduled for today , at 3 : 00 p . the location of  the meeting is eb 2868 .  - - - - - - - - - - - - - - - - - - - - - - forwarded by veronica valdez / hou / ect on 01 / 31 / 2000  09 : 27 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  veronica valdez  01 / 28 / 2000 04 : 22 pm  to : vince j kaminski / hou / ect @ ect , tanya tamarchenko / hou / ect @ ect , jonathan  le / hou / ect @ ect , grant masson / hou / ect @ ect , dennis benevides / hou / ees @ ees ,  ronnie chahal / hou / ees @ ees , james d steffes / hou / ees @ ees  cc : shirley crenshaw / hou / ect @ ect , la donna finnels - neal / hou / ees @ ees , vladimir  gorny / hou / ect @ ect , marcia a linton / hou / ees @ ees  subject : meeting  please have your assistant call me to coordinate the meeting listed below .  as per the message , we would like to schedule it on monday , january 31 .  thanks ,  veronica  - - - - - - - - - - - - - - - - - - - - - - forwarded by veronica valdez / hou / ect on 01 / 28 / 2000  04 : 18 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : vladimir gorny 01 / 27 / 2000 06 : 03 pm  to : veronica valdez / hou / ect @ ect  cc :  subject : meeting  veronica ,  could you please assist me in coordinating the meeting :  topic : ees retail risks  time : monday  invitees : vince kaminski , tanya tamarchenko , jonathan le , grant mason , dennis  benevides , ronnie chahal and jim steffes  i would also like to send the following presentation to the participants  thanks , vlady .\",0\n\"Subject: henwood team  folks ,  i have been a bit quiet here since reaching india , primarily because of the  delay in the arrival of the henwood team from australia .  they are finally arriving on sunday , and krishna is joining me in mumbai on  sunday evening itself .  i would like to fix a schedule to have a conference call with you on the data  and the type fo questions that you all would like to ask .  stinson - could you please tell me what time would be a good one for you all  to hae a confernce call , but not earlier than monday evening , india time  ( monday morning houston time ) . please jot me a note on what would be a good  time for the call .  i will work out an agenda for the call . primarily , it will be discussion of  the data and on what runs we should do to begin with .  another key part of this will be the rate case that mseb is filing , because  this will determine what wil be mseb ' s paymet capability in 2001 / 02 . this is  critical for us . we have our in - house expert who has been working on this  for some time now , and he will also present some of the material on that call .  regards ,  sandeep .  ps : : i am forwarding the basic data that henwood has sent to the whole team  so that you have an opportunity to look at it , if you havent already got it .\",0\n\"Subject: re : summer internship position  hi vince , paulo oleira ( one of the m . i . t attending our meeting on wed ) ' s  research interest turned out to be a match for april hodgeson ( vp of content  origination ) . i had him talk to april ( stinson was on the call as well ) to  discuss his research interest and what he would likely to do for april . i  suggested ( and april agrees ) that paulo would intern with her and matt and  perform research on how end users ( consumers and business ) improved  experience with epowered content can be quantified . this may include  performing control experiments at m . i . t . we decided not to over specify what  he would do since it is likely to change as soon as he arrives . i suggested  once he starts , he will work with april and matt harris ( vp enterprise  origination ) and they will define what the student needs to complete for the  internship .  addiontionally , tom gros agrees that this type of research are needed and  this is a great way to start .  i will proceed to have recruiting contact the student with an offer to start  around may 22 , 2000 unless someone tells me otherwise .  regards ,  ravi .  p . s . charlene , please include paulo in your may 22 , 2000 start group . paulo  will report to me within ebs research group but will work on a day - to - day  basis with april and matt . as you ' ve mentioned that compensation is somewhat  fixed but please keep in mind that this person is a phd candidate with very  specialized skill set . please contact vince before extending an offer that  may be too low , etc .  - - - - - forwarded by ravi thuraisingham / enron communications on 02 / 17 / 00 09 : 27  am - - - - -  charlene jackson @ enron  02 / 17 / 00 08 : 25 am  to : vince j kaminski / hou / ect @ ect  cc : celeste roberts / hou / ect @ ect , vince j kaminski / hou / ect @ ect , ravi  thuraisingham / enron communications @ enron communications @ ect  subject : re : summer internship position  celeste ,  we need to make sure that the interns in vince ' s group are coordinated and  incorporated with the rest of the summer associates . they should be offered  the same starting dates , i believe they are may 22 , 2000 june 5 , 2000 . i am  not sure about the june date . would you check and let vince know . they  should also be offered the same starting salary package as the others . they  will be included in training ( a few days ) and any other events we host .  thanks\",0\n\"Subject: vince ,  i am writing about a student of mine who is on the job market  this year . when you stopped by my office , about 18 months ago  you asked if i had any students that might be appropriate for  your group . although i didn ' t at the time , now i do . this student has  excellent technical skills , including an m . s . in statistics  and a ph . d . in economics by the end of the current academic  year . his dissertation research is on the investment behavior  of independent power producers in the us . as a result of research  assistance he has done for me , he knows the california market very well  and is familiar with the other isos . i think he would be an excellent  match for you . the only problem is that he will probably have many  other options available . however , i definitely think he ' s worth a look .  if you ' d like him to send you a cv , please let me know . thanks .  frank wolak  professor frank a . wolak email :  wolak @ zia . stanford . edu  department of economics phone : 650 - 723 - 3944  ( office )  stanford university fax : 650 - 725 - 5702  stanford , ca 94305 - 6072 phone : 650 - 856 - 0109 ( home )  world - wide web page : http : / / www . stanford . edu / ~ wolak cell phone : 650 - 814 - 0107\",0\n\"Subject: re :  gordon ,  it was a pleasure talking to you .  i shall ask my assistant to send you the reprint .  vince kaminski  shirley , can you , please , send a copy of the paper on credit risk management  ( reprint from the risk book ) .  gordon rausser on 04 / 26 / 2000 12 : 02 : 02 pm  to : vkamins @ enron . com  cc :  subject :  vince :  thank you very much for the useful information you provided me today .  as you suggested , i wish to request a copy of the reprint that was  published last year in risk .  gordon rausser  robert gordon sproul distinguished professor  dean , college of natural resources  university of california  101 giannini hall , mc 3100  berkeley , ca 94720  phone : 510 - 642 - 7171  fax : 510 - 642 - 4612 \",0\n\"Subject: folks ,  attached is a conservative ( and fairly rough ) estimate of the size of the  petrochemicals and refining market that is potentially exposed to prolonged  drought in southern texas which could result in extremely low riverflows and  possible curtailed production . the total annual revenue generated by these  assets is no less than $ 20 b and could be substantially higher as the  estimated capacity on some of these facilties is likely understated and other  facilties not yet identified are likely to be vulnerable .  note that this data does not include any facilities in the industrial  complexes from houston northward and eastward as they are much less likely to  experience such a drought - induced interruption . the only facilties  identified thus far lie on or near the following rivers : brazos , colorado ,  navidad , guadalupe , and nueces .  please let me know if you have any questions / comments as we work to determine  whether or not a low riverflow insurance product is viable .  thanks ,  charlie\",0\n\"Subject: wharton partnership  jeff ,  i am sending you a recommendation regarding our cooperation with the wharton  school , following my visit with tom piazze in may . tom is a corporate  relations officer  at wharton .  recommendation .  i am writing to you to recommend joining the wharton partnership .  the partnership is an umbrella program established to coordinate  wharton school initiatives for industry - academic cooperation . currently ,  the partnership supports alliances with approximately 200 companies  worldwide .  the recommended annual contribution by enron is between $ 100 k - 150 k ,  that puts us in the top bracket of contributing companies , such as ge ,  citigroup ,  goldman , sachs & co . , intel , and many others . the contribution is executed  through  grants to different research projects that would directly benefit enron . the  choice  of the projects is at our discretion and can be changed over time  depending on the business needs .  benefits to enron .  enron can benefit from the partnership by :  - gaining advance access to current academic research  - significantly increasing our presence and visibility on the campus ,  enhancing our recruiting efforts  - taking our message directly to influential academics who have significant  influence on public opinion  - gaining access to high quality executive education programs  specific programs .  the partnership functions through involvement in different research projects .  i have  identified a few projects that will maximize the benefit to enron .  1 . webi ( wharton e - business initiative ) . this programs provides an umbrella  for different initiatives in the area of curriculum development , research  and  corporate engagement related to e - commerce .  main benefits : access to e - commerce research and  enhanced recruitment opportunities .  2 . emerging technologies management research program . interdisciplinary  program addressing issues facing companies in new markets : managing  intellectual  property , participating in emerging technologies , selecting the optimal  organizational structures .  benefits to enron : access to financial technology in the area of  valuation of  intangible assets and new forms of business organizations .  3 . risk management and decision process center . development of techniques for  assessment and management of non - traditional risks ( risks outside the  scope  of traditional insurance contracts and capital markets instruments ) .  benefits to enron : access to new risk management tools , dissemination  of information about our capabilities in this area .  potential users of the program at enron .  my group could coordinate the cooperation with the risk management and  decision process center .  greg whalley is a potential customer for webi . several different units of  enron can be involved  with emerging technologies management research program .  vince\",0\n\"Subject: re : informs national conference at san antonio  vince ,  could you please send me the title and a 50 - word abstract of your  presentation by the end of today ? i ' d like to forward them to the  organizer as soon as possible so that we could make it into the printed  conference program . thanks .  shijie  on thu , 28 sep 2000 vince . j . kaminski @ enron . com wrote :  >  > shijie ,  >  > i would be interested in attending and giving a presentation .  >  > this would be also a good opportunity for both of us to meet  > and discuss the plans for closer cooperation .  >  > vince  >  >  > shijie deng on 09 / 25 / 2000 01 : 20 : 59 am  >  > to : vince kaminski  > cc : shijie deng  > subject : informs national conference at san antonio  >  >  >  > hi vince ,  >  > i ' ll be organizing a session at the informs national meeting in san  > antonio ( nov 5 - 8 , 2000 , http : / / www . informs . org / conf / sanantonio 2000 ) on  > modeling price volatility in electricity markets or financial engineering  > approaches . i ' m just wondering if you or some member of your research  > group would be interested in giving a presentation there . please let me  > know . thanks .  >  > best wishes ,  >  > shijie  >  > shi - jie deng  > assistant professor  > school of isye  > georgia institute of technology  >  > office phone : ( 404 ) 894 - 6519  > e - mail : deng @ isye . gatech . edu  > home page : http : / / www . isye . gatech . edu / ~ deng  >  >  >  >  >  >  >  >\",0\n\"Subject: re : a personal favor  anurag ,  i shall talk about vikas to our it people .  can you send me his resume ?  vince  \"\" saksena , anurag \"\" on 05 / 07 / 2001 10 : 06 : 54 am  to : \"\" ' vkamins @ ect . enron . com ' \"\"  cc :  subject : a personal favor  vince ,  i have left a voice mail to you and will wait to talk to you personally . my brother vikas , who is now in london , is trying to make a switch from consulting world to working for a specific firm . over last few months , i have heard of great deal about the success of enron on line business which fits well in the area of his expertise . i am wondering if you know of some one in london who he can speak to regarding career opportunities .  since i spoke to you last , a number of things have changed . recently , my manadate was broaden to include leading a charge for developing a risk management function for both the domestic and international businesses for gmac . needless to say , this is exciting albeit making the life a little more hectic than usual .  talk to you later .  anurag  952 - 857 - 6133\",0\n\"Subject: rac organization changes  the continued growth of the enron europe office and related businesses has  prompted a change in the management of risk assessment and control ( rac ) in  london . effective in early january , 2001 , ted murphy will transfer to the  london office and manage the rac activities which includes credit / market risk  and underwriting . ted will continue to manage the enron global market risk  activities . steve young , currently managing rac in london , will begin a new  assignment within ebs , also in london .  the houston market risk group will be managed by david port .  as enron continues to expand its trading and risk management businesses , it  is vital that trading and credit policies are administered in a consistent  and accurate manner across the company . hopefully this realignment will  accomplish that goal .  please join me in congratulating ted , david and steve on their new  assignments .\",0\n\"Subject: \"\" we are one @ enron . com ! \"\" : final notice .  please be aware that the following internet domains for messaging will be  decommissioned on  october 14 , 2000 :  @ ect . enron . com  @ ei . enron . com  @ enron . co . uk  after october 14 , 2000 , internet emails addressed to employees using the  above internet domain names will be no longer be delivered .  please note that this applies to enron employees worldwide .  all employees must now use their @ enron . com internet address .  some employees are still receiving internet email , primarily subscriptions to  internet - based news / update services , addressed to their @ ect . enron . com ,  @ ei . enron . com or @ enron . co . uk email address . as mails to these addresses  will no longer be delivered after october 14 , 2000 please contact the service  providers to specify your new @ enron . com internet address .  any employees who are aware of the following should contact the resolution  center on ext . 31411 immediately :  applications / processes using @ ect . enron . com , @ ei . enron . com or @ enron . co . uk  internet addresses  distribution groups being addressed via the internet using @ ect . enron . com ,  e . g . enron . london . developers @ ect . enron . com  please direct any questions to the resolution center at ext . 31411 .  thanks for your cooperation .  enron messaging administration\",0\n\"Subject: re : summer internship  martin  please , refer john directly to jinbaek kim and his academic advisor .  vince  from : martin lin on 03 / 23 / 2001 04 : 19 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : summer internship  as a followup , john gillespie has expressed interest in participating on the  panel mentioned below . to whom should i refer john or should somebody  contact him ? i just wanted to know what to tell john .  thanks ,  martin  vince j kaminski  03 / 23 / 2001 04 : 12 pm  to : martin lin / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : summer internship  martin ,  thanks .  vince  from : martin lin on 03 / 22 / 2001 04 : 46 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : summer internship  i did not find anybody in ebs who seems to know or be involved in any  e - procurement issues . in enron corp , however , there is an initiative called  ibuyit . this is a system that corp is deploying for e - procurement through  corp and ena , and will get to ebs sometime late this year .  john gillespie is in charge of the ibuyit initiative . perhaps he is the  appropriate contact . i left a voice mail with him , but have not yet received  a response .  martin  vince j kaminski  03 / 22 / 2001 07 : 17 am  to : martin lin / hou / ect @ ect  cc :  subject : summer internship  martin ,  please , take a look at question 3 .  who is the right person at ebs ?  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 22 / 2001  07 : 16 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  jinbaek kim on 03 / 15 / 2001 01 : 12 : 32 am  to : vince . j . kaminski @ enron . com  cc :  subject : summer internship  dr . kaminski ,  sorry for the late response ,  it took me some time to coordinate things .  finally , it ' s almost dont : - )  it turned out that from june to august  will be best for me for work at enron  ( say june . 4 to august . 4 )  but i still need to know several things from your side .  could you answer following questions ?  first :  is my suggested working period is ok with you ?  if so , let me know what to do for settlement  during the period .  second :  i got a list of work , i might be able to do for  dealbench team from ross and suresh .  i ' d like to know it is still a valid work list :  the list he sent is as following :  > 1 . write a paper in layman ' s terms that answers  > questions like the following :  > benefits of auctioning online for both buyers and  > sellers , particularly in reverse auctions  > explanation how multi - variable auctions are not  > as efficient as price - only auctions ( is this true ? )  > how many participants are recommended for a  > successful live auction  > what types of goods and services are best suited  > for live auctions versus sealed bid quotes  > opinions on lotting strategies  > trends in online private auctions  > 2 . identify appropriate recent auction research ( 3  > or 4 papers out of the 90 + you provided ) and obtain approvals from the  > authors to post on our site  > 3 . create a list / bibiliography of relevant auction  > literature ( with hyperlinks ? )  > 4 . would you be willing to offer auction consulting  > services to our customers ( if they are interested )  third :  there is an e - procurement forum at haas school of business ,  in may 22 . the chair of the forum is my advisor prof . arie segev .  a person from wells fargo bank will talk about wells fargo ' s role  in e - marketplace payment initiative ,  where enron broadband services is also one of key players  along with citibank .  he asked me whether you can contact a person at  enron broadband services , who ' s related to the initiative .  he wants to know whether we will have a speaker from enron  to see enron ' s perspective , in the forum .  here is a link to news related to the initiative ,  fourth :  my advisor wants to know whether  there could be any opportunity to do a case study ,  regarding enron ' s business .  he is interested in e - procurement and e - marketplaces .  business model and system architecture . . .  thanks for reading this long email .  i ' ll look forward to your answer . .  i am sorry for giving you so much burden  to answer those questions possibly not easy to answer .  warm regards ,  jinbaek  jinbaek kim  ph . d candidate  dept . of industrial engineering and operations research  u . c . berkeley  http : / / www . ieor . berkeley . edu / ~ jinbaek  go bears !  : \"\" ' . _ . . - - - . . _ . ' \"\" ; ` . . ' . ' ` .  : a a : _ _ . . . . . _  : _ . - 0 - . _ : - - - ' \"\" \"\" ' \"\" - . . . . - - ' \"\" ' .  : . ' : ` . : ` , ` .  ` . : ' - - ' - - ' : . ' ; ;  : ` . _ ` - ' _ . ' ; . '  ` . ' \"\" ' ;  ` . ' ;  ` . ` : ` ;  . ` . ; ; : ;  . ' ` - . ' ; : ; ` .  _ _ . ' . ' . ' : ; ` .  . ' _ _ . ' . ' ` - - . . _ _ _ . _ . ' ; ;  ` . . . . . . ' . ' ` ' \"\" \"\" ' ` . ' ; . . . . . . - '  ` . . . . . . . - ' ` . . . . . . . . '  on mon , 5 mar 2001 vince . j . kaminski @ enron . com wrote :  >  > jinbaek ,  >  > this is fine though you are welcome to spend more  > time with us this summer .  >  > vince  >  >  >  >  >  > jinbaek kim on 03 / 04 / 2001 03 : 45 : 40 pm  >  > to : vince . j . kaminski @ enron . com  > cc :  > subject : re : summer internship  >  >  > dr . kaminski ,  >  > thanks for your answer .  > before i tell you the time frame ,  > i ' ll need to talk with my advisor , first .  > because here is an on - going - project .  > i need to coordinate the schedule .  >  > i ' ll appreciate it if you understand my situation ,  > and give me some time ( less than a week , of course ) .  >  > for your reference ,  > probably  > the dates i ' d like to ask you will be  > from mid - may to mid - july ( 2 months )  >  > warm regards ,  > jinbaek  >  > - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  > jinbaek kim  > ph . d candidate  > dept . of industrial engineering and operations research  > u . c . berkeley  > http : / / www . ieor . berkeley . edu / ~ jinbaek  >  > go bears !  >  > : \"\" ' . _ . . - - - . . _ . ' \"\" ; ` . . ' . ' ` .  > : a a : _ _ . . . . . _  > : _ . - 0 - . _ : - - - ' \"\" \"\" ' \"\" - . . . . - - ' \"\" ' .  > : . ' : ` . : ` , ` .  > ` . : ' - - ' - - ' : . ' ; ;  > : ` . _ ` - ' _ . ' ; . '  > ` . ' \"\" ' ;  > ` . ' ;  > ` . ` : ` ;  > . ` . ; ; : ;  > . ' ` - . ' ; : ; ` .  > _ _ . ' . ' . ' : ; ` .  > . ' _ _ . ' . ' ` - - . . _ _ _ . _ . ' ; ;  > ` . . . . . . ' . ' ` ' \"\" \"\" ' ` . ' ; . . . . . . - '  > ` . . . . . . . - ' ` . . . . . . . . '  >  >  > on fri , 2 mar 2001 vince . j . kaminski @ enron . com wrote :  >  > >  > > jinbaek ,  > >  > > you can coordinate the details with me .  > > let me know what the time frame is for you  > > and we shall send you an appropriate offer .  > >  > > vince  > >  > >  > >  > >  > >  > > jinbaek kim on 03 / 02 / 2001 04 : 43 : 06 pm  > >  > > to : vince . j . kaminski @ enron . com  > > cc :  > > subject : re : summer internship  > >  > >  > > dr . kaminski ,  > >  > > thank you very much .  > > of course , i ' ll be happy to have an opportunity  > > to work at such a wonderful company .  > > i was contacting with surech raghavan at deal bench team ,  > > and was going to express my appreciation to you again  > > after settling down process with them .  > >  > > for the period of working ,  > > i still need to coordinate with my advisor and  > > may need to adjust according to that .  > > but anyway , i ' ll try to coordinate smoothly .  > >  > > please let me know whether i should keep contacting  > > with deal bench team ,  > > for working period and  > > for misc . living support such as finding a place , rent a car , etc .  > >  > > i appreciate you so much again ,  > > for arranging such meetings and giving me an opportunity .  > > all this opportunity will not be available to me ,  > > without your kind help .  > >  > > warm regards ,  > > jinbaek  > >  > > - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  > > jinbaek kim  > > ph . d candidate  > > dept . of industrial engineering and operations research  > > u . c . berkeley  > > http : / / www . ieor . berkeley . edu / ~ jinbaek  > >  > > go bears !  > >  > > : \"\" ' . _ . . - - - . . _ . ' \"\" ; ` . . ' . ' ` .  > > : a a : _ _ . . . . . _  > > : _ . - 0 - . _ : - - - ' \"\" \"\" ' \"\" - . . . . - - ' \"\" ' .  > > : . ' : ` . : ` , ` .  > > ` . : ' - - ' - - ' : . ' ; ;  > > : ` . _ ` - ' _ . ' ; . '  > > ` . ' \"\" ' ;  > > ` . ' ;  > > ` . ` : ` ;  > > . ` . ; ; : ;  > > . ' ` - . ' ; : ; ` .  > > _ _ . ' . ' . ' : ; ` .  > > . ' _ _ . ' . ' ` - - . . _ _ _ . _ . ' ; ;  > > ` . . . . . . ' . ' ` ' \"\" \"\" ' ` . ' ; . . . . . . - '  > > ` . . . . . . . - ' ` . . . . . . . . '  > >  > >  > > on fri , 2 mar 2001 vince . j . kaminski @ enron . com wrote :  > >  > > > hello ,  > > >  > > > sorry for a delay in getting back to you .  > > > we would like very much to offer you a summer internship .  > > >  > > > please , let me know if you are interested .  > > >  > > > vince kaminski  > > >  > > >  > >  > >  > >  > >  > >  > >  >  >  >  >  >  >\",0\n\"Subject: continuation of spanish classes  roy :  i spoke with vince and he approved your continuing your spanish classes .  if you need anything else , please let me know .  shirley\",0\n\"Subject: petrochem desk  vasant ,  it seems we have to help them . can kate help  on this project ?  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 23 / 2001 09 : 28 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  nelson neale @ enron  04 / 20 / 2001 10 : 29 am  to : vince j kaminski / hou / ect @ ect , vasant shanbhogue / enron @ enronxgate  cc :  subject : petrochem desk  i had a chance to speak with christian lebroc this morning with regard to curve building for petrochemicals . as it turns out , christian left rac in april and joined the petrochem desk as a trader . previous efforts at construction of a forward curve by the group have focused on intuition or swags . unfortunately , the group had a rough p & l year with at least some of the blame directed toward the forward curve or lack thereof . when asked about the fundamentals group , christian indicated that they ' d only been around about 3 - 4 months and are not yet well - suited to curve building . john nowlan is indeed the head of the group .  from a timing perspective , i told christian that it would probably take at least 6 - 8 weeks to develop a curve , especially considering the need to understand the key market drivers / fundamentals . as was suggested yesterday during our meeting , a strong relationship between petrochemicals and a nymex component ( e . g . , crude oil ) would provide a great beginning point - - we could then potentially strengthen / augment this relationship with other key factors ( e . g . , supply and demand terms ) borne out of our market research .  nelson\",0\n\"Subject: fw : mscf speaker series - november 3 rd confirmation  - - - - - original message - - - - -  from : pierre - philippe ste - marie  to :  sent : monday , september 11 , 2000 8 : 13 am  subject : mscf speaker series - november 3 rd confirmation  > dear mr . kaminski ,  >  > it is a great pleasure and a great honor to schedule you on the mscf  > speaker series list for november 3 rd , i will make reservation for 8  persons  > at a restaurant in pittsburgh for that evening . also , if you want i can  book  > an hotel for you .  >  > let me know if you have anything in mind for the topic of the  presentation .  > there is no real guidelines as we like our speakers to have as much room  as  > possible . here is one of the past presentations that had an impact . one of  > our speakers divided the presentation in two , the first part was  technical ,  > the second was more general , explaining what his firm was looking for when  > hiring new employees .  >  > thank you very much for accepting our invitation .  >  > sincerely ,  >  >  >  >  > pierre - philippe ste - marie  > - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  > pstemarie . homestead . com  >\",0\n\"Subject: asking for advice regarding summer associate position at enron  shirley ,  please , set up a phone interview with him . i think both zimin and  stinson should talk to him .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 12 / 2001  02 : 52 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : pavel zadorozhny on 01 / 12 / 2001 01 : 40 pm  to : vince j kaminski / hou / ect @ ect , john l nowlan / hou / ect @ ect  cc :  subject : asking for advice regarding summer associate position at enron  gentlemen ,  here is a guy who is looking for a summer associate position . i looked at his  resume and think that he may be worth talking to .  pavel  - - - - - - - - - - - - - - - - - - - - - - forwarded by pavel zadorozhny / hou / ect on 01 / 12 / 2001  01 : 37 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  dmitri villevald on 01 / 03 / 2001  06 : 56 : 54 pm  to : \"\" pavel zadorozhny ( e - mail ) \"\"  cc :  subject : asking for advice regarding summer associate position at enron  dear mr . zadorozhny :  maxim philippov suggested that i write you . being a first - year mba student  at owen graduate school of management ( vanderbilt university ) with a finance  concentration , i am looking for a summer associate position at enron .  the area of my particular interest is enron ' s risk management products  ( commodity derivatives research and trading ) . graduating from novosibirsk  state university with major in physics , i am eager to apply my experience  with the use of theoretical and statistical physics techniques to the  managing of modeling processes and creating complex financial and trading  models . i strongly believe that my graduate education coupled with  undergraduate background in physics , solid work experience in finance and  proven entrepreneurial spirit will allow me to contribute to enron as a  summer associate .  i would really appreciate your advice regarding employment opportunities at  enron and would like to find out more about enron capital & trade resources  corp . i will call you within this week to follow up on my request .  thank you very much for your time .  sincerely ,  dmitri villevald  enclosure : resume  >  p . s . looking through an example of margin risk hedging at enron ' s web site ,  i think i found a small mistake there . url of this page is  ( producer  application )  the second sentence of the paragraph beginning with \"\" paradigm and enron  exchange . . . \"\"  states the following .  for example , if the actual margin is $ 1 . 25 / mmbtu for a given month , then  paradigm will pay enron $ 0 . 13 / mmbtu . alternatively , if the actual margin is  $ 2 . 00 / mmbtu , then enron will pay paradigm $ 0 . 62 / mmbtu .  i believe , if i am reading it correctly , the money should flow in the  opposite direction , namely :  for example , if the actual margin is $ 1 . 25 / mmbtu for a given month , then  enron will pay paradigm $ 0 . 13 / mmbtu . alternatively , if the actual margin is  $ 2 . 00 / mmbtu , then paradigm will pay enron $ 0 . 62 / mmbtu .  am i right ?  again , thank you very much for your time .  - resume . doc\",0\n\"Subject: eprm article  hi vince ,  ?  as always , it was good to see you again in houston - we all enjoyed the meal  very much , the restaurant was a good choice .  ?  it ' s that time again i ' m afraid . can you pls cast your eye over the  attached ? and , if at all possible , get back to me in the next few days - i  have to deliver something to london by friday .  ?  how ' s the course going at rice ? not too much work i hope .  ?  best regards .  ?  chris .  ?  - eprm _ 09 _ fwd _ vol _ estimation . doc\",0\n\"Subject: re : term papers  please respond to here is the . pdf file and the word version ( in case you cannot open the  . pdf ) . sorry about the inconvinence . please let me know if you can open the  file .  felix  * * * * * * * * * * * * * * * * * * * *  felix feng lu  mba candidate , class 2001  jesse h . jones graduate school of management  rice university  phone - 713 . 942 . 8472 / fax - 714 . 908 . 7914  monfan @ rice . edu  * * * * * * * * * * * * * * * * * * * *  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : friday , may 04 , 2001 5 : 30 pm  to : monfan @ rice . edu  cc : vkaminski @ aol . com ; jason . sokolov @ enron . com ;  vince . j . kaminski @ enron . com  subject : term papers  felix ,  please , resend me the term papers of your group , each as a separate file .  please send it to my aol address as well as work address .  my aol address is vkaminski @ aol . com  my home phone number is 281 367 5377 .  vince  - feng lu . vcf  - modeling project . doc  - modeling project . pdf\",0\n\"Subject: joao neves  vince ,  i wanted to follow up with you to see if you had an opportunity to review  joao neves ' resume , which i sent ? you last wednesday , and to get your  feedback on him .  ?  please ? let me know if you are interested in ? setting up an interview .  ?  also , i will be in houston the afternoon of ? friday , 4 / 13 , and would welcome  the opportunity to meet with you in person , if your schedule allows . ?  ?  i look forward to hearing from you .  ?  regards ,  ?  kate szablya  power brokers , llc  energy search and recruitment  303 - 716 - 2987  303 - 619 - 7589 cell  303 - 716 - 3426 fax  kate @ powerbrokersllc . com  www . powerbrokersllc . com  ?  ?\",0\n\"Subject: re : var  let ' s meet at 4 : 00 .  vince j kaminski  06 / 01 / 2000 09 : 19 am  to : john arnold / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , tanya tamarchenko / hou / ect @ ect , jim  schwieger / hou / ect @ ect , jeffrey a shankman / hou / ect @ ect  subject : var  john ,  we have been working for the last few days on var related issues .  the focus is on jim schwieger ' s storage book as of 5 / 25 and 5 / 26  where we had some counterintuitive results . this book is a good  candidate for a systematic review of the var process .  it seems that the problem arises from forward - forward vols used by the var  system . you can see in the attached spreadsheet that the var , on a cumulative  basis ,  jumps on jan 04 , when an abnormal ff vol hits a relatively large position .  this ff vol is also much different from the previous day number producing a  big  jump in var .  this row ( jan 04 ) is in magenta font in the attached spreadsheet . please , look  at column d .  the abnormal ff vol may result from one of the two factors :  a . a bug in the code . we are working with the person in it who wrote the  code to review it .  b . a poorly conditioned forward vol curve ( a kink or discontinuity in  the fwd vol curve will do it ) . one solution i can  propose , is to develop for  the traders a fwd - fwd vol generator allowing them to  review the fwd vol curve  before it is posted . if it produces a weird fwd - fwd vol ,  it can be smoothed .  can you meet at 4 p . m . to review our findings ?  vince\",0\n\"Subject: re : alex ' s paper  comments :  1 . in the sentence between eqn . 3 and eqn . 4 , i think \"\" annualized  volatility \"\" should replace \"\" annualized standard deviation . \"\"  2 . as to the comment , \"\" immediately we see something quite  counter - intuitive . \"\" i would disagree . i think that its quite intuitive  that this model should get closer to the black - scholes price as what is  defined as the \"\" jump \"\" component becomes just part of the main price  distribution , which happens if we define a jump to be only a 1 - sigma  event . the table does show , however , that the results of using this model  are very sensitive to exactly how you choose to define a \"\" jump \"\" ( i . e . 2 - sigma  or 3 - sigma . . . events ) , and this is one difficulty in using the model in  practice .  3 . in the paragraph after the table , i don ' t understand the argument about  hedging the option . especially about buying a swap which would pay on the  difference between the strike and fs . this seems non - sensical .  4 . i could not follow the logic of the last two sentences of the article , so  this point should probably be explained more clearly .  - - stinson  vince j kaminski  08 / 18 / 2000 08 : 15 am  to : grant masson / hou / ect @ ect , stinson gibner / hou / ect @ ect , alex  huang / corp / enron @ enron  cc :  subject : alex ' s paper  minor changes i made to alex ' s paper .  vince\",0\n\"Subject: re : urgent deadline : rsvp by jan 22 nd : invitation to 2001 energy  finance conference feb . 22 - 23 , 2001 - the university of texas at austin  karen ,  i shall attend the conference ,  both days .  vince kaminski  from : karen marshall 01 / 17 / 2001 07 : 59 pm  to : david haug / enron _ development @ enron _ development , gary  hickerson / hou / ect @ ect , craig childers / hou / ees @ ees , thomas  suffield / na / enron @ enron , ben f glisan / hou / ect @ ect , ermes  melinchon / enron _ development @ enron _ development , hal elrod / corp / enron @ enron ,  clay spears / hou / ect @ ect , kelly mahmoud / hou / ect @ ect , ellen fowler / enron  communications @ enron communications , kevin kuykendall / hou / ect @ ect , fred  mitro / hou / ect @ ect , kyle kettler / hou / ect @ ect , jeff bartlett / hou / ect @ ect , paul  j broderick / hou / ect @ ect , john house / hou / ect @ ect , george  mccormick / hou / ect @ ect , guido caranti / enron _ development @ enron _ development , ken  sissingh / corp / enron @ enron , gwynn gorsuch / na / enron @ enron , mark gandy / enron  communications @ enron communications , shawn  cumberland / enron _ development @ enron _ development , jennifer  martinez / hou / ect @ ect , sean keenan / hou / ect @ ect , webb jennings / hou / ect @ ect ,  brian hendon / enron communications @ enron communications , billy braddock / enron  communications @ enron communications , paul burkhart / enron communications @ enron  communications , garrett tripp / tor / ect @ ect , john massey / hou / ect @ ect , v charles  weldon / hou / ect @ ect , peter hayes / hou / ees @ ees , ross mesquita / na / enron @ enron ,  david mitchell / hou / ect @ ect , brian kerrigan / hou / ect @ ect , mark gandy / enron  communications @ enron communications , jennifer martinez / hou / ect @ ect , sean  keenan / hou / ect @ ect , webb jennings / hou / ect @ ect , brian hendon / enron  communications @ enron communications , billy braddock / enron  communications @ enron communications , garrett tripp / tor / ect @ ect , john  massey / hou / ect @ ect , v charles weldon / hou / ect @ ect , peter hayes / hou / ees @ ees ,  ross mesquita / na / enron @ enron , david mitchell / hou / ect @ ect , christie  patrick / hou / ect @ ect , michael b rosen / hou / ect @ ect , cindy  derecskey / corp / enron @ enron  cc : elyse kalmans / corp / enron @ enron , richard causey / corp / enron @ enron , sally  beck / hou / ect @ ect , vince j kaminski / hou / ect @ ect , jeffrey a  shankman / hou / ect @ ect , angela . dorsey @ bus . utexas . edu  subject : urgent deadline : rsvp by jan 22 nd : invitation to 2001 energy finance  conference feb . 22 - 23 , 2001 - the university of texas at austin  the $ 500 registration fee is waived for any enron employee who wishes to  attend this conference because of our relationship with the school . please  forward this information to your managers and staff members who would benefit  from participating in this important conference . ( note : vince kaminski is a  panellist for the risk management session 3 . )  please note : the deadline for rsvp & hotel reservations is monday , january  22 nd don ' t miss this opportunity !  should you have any questions , please feel free to contact me at ext . 37632 .  karen  - - - - - - - - - - - - - - - - - - - - - - forwarded by karen marshall / hou / ect on 01 / 11 / 2001  07 : 38 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" angela dorsey \"\" on 01 / 10 / 2001 03 : 06 : 18 pm  to : \"\" angela dorsey \"\"  cc : \"\" ehud ronn \"\" , \"\" sheridan titman ( e - mail ) \"\"  subject : invitation to 2001 energy finance conference - the university of  texas at austin  colleagues and friends of the center for energy finance education and  research ( cefer ) :  happy new year ! hope you all had a wonderful holiday season .  on behalf of the university of texas finance department and cefer , we  would  like to cordially invite you to attend our :  2001 energy finance conference  austin , texas  february 22 - 23 , 2001  hosted by the university of texas finance department  center for energy finance education and research  dr . ehud i . ronn and dr . sheridan titman are currently in the process of  finalizing the details of the conference agenda . we have listed the  agenda  outline below to assist you in your travel planning . each conference  session will be composed of a panel discussion between 3 - 4 guest  speakers  on the designated topic .  as supporters of the center for energy finance education and research ,  representatives of our trustee corporations ( enron , el paso , reliant ,  conoco , and southern ) will have the $ 500 conference fee waived .  the conference package includes thursday evening ' s cocktails &  dinner and hotel / ut shuttle service , as well as friday ' s conference  meals ,  session materials and shuttle service . travel to austin and hotel  reservations are each participant ' s responsibility .  a limited number of hotel rooms are being tentatively held at the  radisson  hotel on town lake under the group name \"\" university of texas finance  department \"\" for the nights of thursday , 2 / 22 / 01 and friday , 2 / 23 / 01 ( the  latter evening for those who choose to stay in austin after the  conference ' s conclusion ) . to guarantee room reservations , you will need  to  contact the radisson hotel at ( 512 ) 478 - 9611 no later than monday ,  january  22 nd , and make your reservations with a credit card . please let me know  when you have made those arrangements so that i can make sure the  radisson  gives you the special room rate of $ 129 / night .  please rsvp your interest in attending this conference no later than  january 22 nd to angela . dorsey @ bus . utexas . edu , or ( 512 ) 232 - 7386 , as  seating  availability is limited . please feel free to extend this invitation to  your colleagues who might be interested in attending this conference .  center for energy finance education and research  program of the 2001 energy finance conference  february 22 - 23 , 2001  thursday , feb 22 :  3 : 00 p . m . reserved rooms at the radisson hotel available for  check - in  5 : 30 p . m . bus will pick up guests at the radisson for transport to  ut club *  6 : 00 p . m . cocktails , ut club 9 th floor  7 : 00 p . m . dinner , ut club  8 : 00 p . m . keynote speaker  9 : 00 p . m . bus will transport guests back to hotel  friday , feb 23 :  7 : 45 a . m . bus will pick up at the radisson for transport to ut  8 : 30 a . m . session 1 - real options  panelists : jim dyer , ut ( chair )  sheridan titman , ut  john mccormack , stern stewart & co .  10 : 00 a . m . coffee break  10 : 15 a . m . session 2 - deregulation  panelists : david eaton , ut ( chair )  david spence , ut  jeff sandefer , sandefer capital  partners / ut  peter nance , teknecon energy risk  advisors  11 : 45 a . m . catered lunch & keynote speaker  1 : 30 p . m . guest tour - eds financial trading & technology center  2 : 00 p . m . session 3 - risk management  panelists : keith brown , ut ( chair )  vince kaminski , enron  alexander eydeland , southern co .  ehud i . ronn , ut  3 : 30 p . m . snack break  3 : 45 p . m . session 4 - globalization of the energy business  panelists : laura starks , ut ( chair )  bob goldman , conoco  ray hill , southern co .  5 : 15 p . m . wrap - up  5 : 30 p . m . bus picks up for transport to airport / dinner  6 : 30 p . m . working dinner for senior officers of energy finance  center  trustees  * we have made arrangements to provide shuttle service between the  radisson  hotel and ut during the conference . however , if you choose to stay at an  alternative hotel , then transportation to conference events  will become your responsibility .  * * * * * * * * * * * * * *  angela dorsey  assistant director  center for energy finance education & research  the university of texas at austin  department of finance , cba 6 . 222  austin , tx 78712  angela . dorsey @ bus . utexas . edu  * * * * * * * * * * * * * *\",0\n\"Subject: lng var limit request form  vince ,  please review the attached file . when you are ready , i will bring you the  original for your signature .  thanks ,  eric\",0\n\"Subject: dale nesbitt  greg ,  dale nesbitt is a consultant who develops pricing models ( spot and fwd )  prices for e - commerce sites . he will be in houston in the beginning of july .  any interest in meeting him ?  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 06 / 28 / 2000  05 : 24 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  vkaminski @ aol . com on 06 / 11 / 2000 03 : 17 : 23 pm  to : vkamins @ enron . com  cc :  subject : dale nesbitt  o :  cc :  subject : re : follow up  vince :  thanks for your help in this matter . i dont want to be a bother to you . i  know you are doing your best to put this together as a go between .  as you might suspect , i am in a hurry to put together the right hearing at  enron because marketpoint is just now being completed - - u . s . and world oil  and gas and north american electricity . we have just signed up our first  web provider ( e - acumen . com ) , who is preparing to vend our north american  electric generation data base over their website . i believe we are an  integral part of their offering . it wont be long before marketpoint needs  the capitalization to meet our growing customer needs professionally and  quickly , particularly when we sign up one or more vertical portals to vend  or offer fundamental forward projections from our models . i a loath to do  so without the capitalization and staffing we need . also , i am loath to do  so without the market reach that a partner like enron could render instantly  available .  i also would be eager during my next trip to houston to continue the  discussion with you regarding how marketpoint might benefit enron directly .  i plan to be there the last week in june .  thanks again for all your help and support .  dale\",0\n\"Subject: re : alp presentation  christie ,  great ! ! you think big .  it also puts a lot of pressure on the students .  vince  christie patrick  04 / 11 / 2001 10 : 57 am  to : vince j kaminski / hou / ect @ ect , kenneth parkhill / na / enron @ enron , melinda mccarty / corp / enron @ enron , shirley crenshaw / hou / ect @ ect  cc :  subject : re : alp presentation  vince and ken ,  please see note below . rice ' s president is planning to attend the presentation and dinner ! i ' ll let you know when i hear from gil ( dean whitaker ) . thanks !  also , please remember that i ' ve scheduled steve kean for lunch ( i ' ll have melinda have lunches brought to the conference room ) . please let me know the exact room number and the exact number of lunches needed from your end .  thanks !  - - christie .  - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 04 / 11 / 2001 10 : 38 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  judith duvall on 04 / 11 / 2001 10 : 36 : 06 am  to : christie . patrick @ enron . com  cc :  subject : re : alp presentation  ms . patrick ,  dr . gillis will attend both events .  judith  at 06 : 01 pm 4 / 10 / 01 - 0500 , you wrote :  > president gillis and dean whitaker ,  >  > enron would be honored with your presense at the presentation set forth  > below .  >  > under the guidance of vince kaminski and his team here at enron , we are  > thoroughly enjoying working with this group of bright and enthusiastic rice  > students . we hope you can join us for the culmination of their significant  > efforts .  >  > please let me know - - thanks ! !  >  > - - christie .  > - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 04 / 10 / 2001  > 05 : 52 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  >  >  > vince j kaminski  > 04 / 10 / 2001 08 : 13 am  >  > to : barrett @ rice . edu , uecker @ rice . edu , cmiller @ rice . edu ,  > lounghrid @ rice . edu , luigical @ rice . edu  > cc : vince j kaminski / hou / ect @ ect , christie patrick / hou / ect @ ect , shirley  > crenshaw / hou / ect @ ect , kenneth parkhill / na / enron @ enron  >  > subject : alp presentation  >  > on behalf of enron corp . i would like to invite you to an alp project  > presentation by a group of students  > of jesse h . jones graduate school of management , rice university .  >  > the students will present the results of a research project regarding  > electronic trading  > platforms in the energy industry .  >  > the presentation will be held on may 7 , at 4 : 00 p . m . at enron , 1400 smith .  >  > we would also like to invite you to dinner , following the presentation .  >  >  > vince kaminski  >  > vincent kaminski  > managing director - research  > enron corp .  > 1400 smith street  > room ebl 962  > houston , tx 77002 - 7361  >  > phone : ( 713 ) 853 3848  > ( 713 ) 410 5396 ( cell )  > fax : ( 713 ) 646 2503  > e - mail : vkamins @ enron . com  >  >  >  >  >  >  judith duvall  secretary to the president  rice university  6100 main street - - msl  houston , tx 77005  713 / 348 - 4601  713 / 348 - 5271 ( fax )\",0\n\"Subject: re : video conference with ross mcintyre  nick :  we are unable to get a vc location for 10 : 30 am , however , we can have one  at 11 : 00 am . houston time . is there anyway that we could push the interview  to 11 : 00 am ? i know you have to make reservations for your conference room  also . if not , we will have to do a phone interview .  please let me know .  thanks !  shirley crenshaw  administrative coordinator  research group  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 18 / 2000  10 : 02 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  04 / 18 / 2000 10 : 01 am  to : nick mooney / lon / ect @ ect  cc : vasant shanbhogue / hou / ect @ ect , vince j kaminski / hou / ect @ ect , shirley  crenshaw / hou / ect @ ect , mark tawney / hou / ect @ ect  subject : re : video conference with ross mcintyre  nick ,  we may have problems getting the vc location in houston on short notice .  we are currently on stand - by . we shall default , if we have no other choice ,  to a phone interview .  vince  enron capital & trade resources corp . - europe  from : nick mooney 04 / 18 / 2000 09 : 09 am  to : vince j kaminski / hou / ect @ ect  cc : mark tawney / hou / ect @ ect  subject : video conference with ross mcintyre  vince ,  you should have received an invitation through lotus notes which outlines the  vc location for the conference call tomorrow . it is schedule for 4 : 30 pm uk  time ( 10 : 30 am houston time )  ross ' s background is from investment banking ex dresner bank , he has a phd in  mathematical and is currently with speedwell weather derivatives where he has  been developing weather derivative pricing and portfolio optimisation tools  which they have been marketing to end - users with weather risks .  the attached word documents are articles that he has written for publication .  regards  nick mooney  - mcs . doc  - analytic . doc  - par . doc\",0\n\"Subject: softs in london  vince ,  with regard to the softs curves development , i have been communicating with a  couple of folks in london . the key contacts include james willis ( cocoa and  sugar broker ) and nigel majury ( coffee broker ) . we had a conference call on  thursday ( heather , trena , erin , james , nigel , frank speight , nelson ) to  discuss data sources , data acquisition , priorities , and timelines . a number  of data sources were identified ( e . g . , usda , int ' l cocoa organization , ed however , cocoa  replaces coffee in the softs importance hierarchy . i suppose that this  results from our physical ( or soon to be ) positions in both markets . the  timeline hasn ' t changed ; however , adjustments will have to be made since we  haven ' t yet acquired all of the necessary data for price modeling . moreover ,  per our discussion this afternoon , additional thought / time will have to be  devoted to corn modeling to come up with an adequate hedging strategy .  nelson\",0\n\"Subject: re : vacation  shirley ,  no problem .  vince  shirley crenshaw  03 / 14 / 2001 07 : 47 am  to : vince j kaminski / hou / ect @ ect  cc : anita dupont / na / enron @ enron , kevin g moore / hou / ect @ ect , leann  walton / na / enron @ enron  subject : vacation  vince :  if it is ok , i would like to take friday , april 6 th as a vacation day .  also , just a reminder i will be on vacation tomorrow and friday .  thanks !  shirley\",0\n\"Subject: computer  recently a new person moved into our  space on 32 nd floor .  being that the gentleman is there , i decided  to move our computer out of his working space .  the computer will be moved to desk in our area  until the new hire arrives .  fyi  thanks  kevin moore\",0\n\"Subject: re : aluminium asian digital options  anjam ,  we can use moment matching to find the \"\" effective \"\" volatility and dividend  yield for the average .  then we can apply the european digital option formula . attached please find  the c - code i did  for asian spread option , when i find the effective vol and drift for both  averages then find the option  value by calling the european spread option . you can do just the same for  the asian digital option .  it would be nice to do a monte - carlo , just checking the accuracy of the  approximation .  it was nice to have you here , we are impressed by the work you have done .  keep up the good work .  zimin  enron capital & trade resources corp . - europe  from : anjam ahmad 07 / 27 / 2000 10 : 14 am  to : zimin lu / hou / ect @ ect  cc :  subject : aluminium asian digital options  hi zimin ,  russell placket of mg metals just talked to me about the issue of pricing a  strip of twelve monthly asian digital options on lme aluminium . as i  understand , the payoff to the customer is a fixed cash amount that wil be  paid if the average of the closing prices of aluminium for a month are  greater than the strike agreed in advance , where holiday days do not  contribute to the average .  russell mentioned that this would be a set of 12 monthly options starting in  jan - 01 , and that the lme price for jan - 01 of $ 1572 . 5 ( which is the future  converging to the spot price on the 3 rd wednesday in jan 01 ) can be used as a  proxy / estimate for the average for the month .  do you have a model for asian digitals or should i proceed with monte carlo  to price this , maybe using european digital option model as control variate ?  thanks ,  anjam  x 35383\",0\n\"Subject: phil roan  phil roan of koch ' s weather group has accepted a position with reliant  working for their power desk . he starts in a week . we tried to get him to  reconsider , but he said that he was already committed .\",0\n\"Subject: e - commerce seminar 3 / 22  hi donna !  i ' ll let you know asap about 3 / 22 . i believe vince will be in london on that  date .  more immediately , is there a conference call tomorrow ( thursday ) ? if so , is  there a call in number established , or does melinda set this up ? ( she ' s out  this afternoon ) .  thanks !  - - christie .  - - - - - forwarded by christie patrick / hou / ect on 03 / 14 / 2001 03 : 46 pm - - - - -  fap  03 / 13 / 2001 02 : 09 pm  to : \"\" ' christie . patrick @ enron . com ' \"\"  cc : fap  subject : e - commerce seminar 3 / 22  christie :  professor ravi aron , wharton , has been a consultant to the student tiger  team for the enron project . at his suggestion and invitation , tiger  students have been invited to attend an e - commerce executive education  seminar that is directly related to the project on which they are working .  professor aron will be giving the session on pricing mechanisms and b 2 b  market auctions . this will take place at the steinberg conference center on  campus on thursday , march 22 from 8 : 30 a - 12 : 30 . we would also like to extend  an invitation for a representative from enron to attend .  please let me know if you or someone who has worked with the student teams  will be able to attend the seminar .  we look forward to seeing you and vince at the final presentation on april 3  from 4 : 30 - 7 : 30 pm in vance hall b 6 .  regards ,  donna\",0\n\"Subject: telephone interview with ming sit  the telephone interview with ming sit has been scheduled for tuesday ,  may 23 rd at 12 : 30 pm houston time . it will be in ebl 9 c 2 .  krishna will find out if he will call you or if you should call him at work .  thanks  shirley\",0\n\"Subject: re : resume  marshall ,  we shall call him on wednesday after 2 : 30 .  vince  marshall brown on 03 / 12 / 2001 11 : 23 : 31 am  to : vince . j . kaminski @ enron . com  cc :  subject : re : resume  vince ,  he can talk today after 2 : 30 pm today or wednesday afternoon as well .  his work # is 713 - 544 - 5989 . let me know .  regards ,  marshall brown  vice president  robert walters associates  tel : ( 212 ) 704 - 0596  fax : ( 212 ) 704 - 4312  mailto : marshall . brown @ robertwalters . com  http : / / www . robertwalters . com  > - - - - - original message - - - - -  > from : vince . j . kaminski @ enron . com [ smtp : vince . j . kaminski @ enron . com ]  > sent : monday , march 12 , 2001 11 : 40 am  > to : marshall . brown @ robertwalters . com  > subject : re : resume  >  >  > marshall ,  >  > looks interesting . can we arrange an exploratory phone interview ?  >  >  > vince  >  >  >  >  >  >  > marshall brown on 03 / 09 / 2001 07 : 46 : 22  > am  >  > to : vince kaminski  > cc :  > subject : resume  >  >  > vince ,  > how are you . this candidate would be interested in any positions in  > your group .  > regards ,  >  > marshall brown  > vice president  > robert walters associates  > tel : ( 212 ) 704 - 0596  > fax : ( 212 ) 704 - 4312  > mailto : marshall . brown @ robertwalters . com  > http : / / www . robertwalters . com  >  > >  >  >  >  > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  > caution : electronic mail sent through the internet is not secure and could  > be intercepted by a third party .  >  > this email and any files transmitted with it are confidential and  > intended solely for the use of the individual or entity to whom they  > are addressed . if you have received this email in error please notify  > the system manager .  >  > this footnote also confirms that this email message has been swept by  > mimesweeper for the presence of computer viruses .  >  > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  >  > ( see attached file : zhan _ ren . doc )  >  > >\",0\n\"Subject: re : test  thanks , vince . we have received both her application and her signed offer letter , so we are moving in the right direction .  molly  - - - - - original message - - - - -  from : kaminski , vince  sent : thursday , april 19 , 2001 10 : 44 am  to : magee , molly  cc : crenshaw , shirley  subject : re : test  molly  fyi  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 19 / 2001 10 : 43 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  edward kao on 04 / 18 / 2001 08 : 30 : 49 pm  to : vkamins @ ect . enron . com  cc :  subject : re : test  vince :  candice ' s contact information at mount holyoke is as follows :  phone : ( 413 ) 493 - 5092  email : cgkao @ mtholyoke . edu  address : 1453 blanchard campus center  mount holyoke college  south hadley , ma 01075 - 6002  ed  ps : i hope ron singer has given you the needed info . please feel free to  contact me if i can be of any help with regard to your colleague ' s inquiry  about pursuing doctoral study at uh . \",0\n\"Subject: security request for adding a timekeeper to cost center 107043  attached please find the security request to have anita dupont added  to the research group timekeepers .  she is my backup and needs to be able to do the timesheets in case i  have to be out of the office .  if you have any questions , please let me know .  thanks !  shirley crenshaw  3 - 5290\",0\n\"Subject: indication dates for sharad ' s visit  hi vince ,  having discussed with sharad , we think it would make sense for sharad to go  to houston for a few weeks starting at the end of october . this would  overlap with ben ' s visit in november and so some alternative arrangement  would have to be made for accommodation . if he goes after ben then there  will not be much time before the holidays meaning it would be left until  early next year . please let us know if these dates work for you , and if so  then we can talk about accommodation arrangements thereafter .  out : sat 21 st october  return : saturday 16 th december  regards ,  anjam  x 35383\",0\n\"Subject: dear ms . feldman ,  please find enclosed a proposal for the d - g energy  software license agreement in which enron may be  interested . we deliberately left blank the appendix 2  related to the number of sites and workstations it  would cover , in order to let dr . kaminski decide what  is best for enron .  sincerely  - appendices . doc  - contract . doc  h , lyette geman  professor of finance  university paris ix dauphine and essec\",0\n\"Subject: uk rpi model  hi zimin !  please find attached for your review the uk rpi model , derived by  bootstrapping rpi swaps .  it ' s a very simple model and here are its specifics :  swap structure  payment : semi / semi act / 365 f  >  > yoyukrpi = ( ukrpi ( p - 2 ) / ukrpi ( p - 14 ) - 1 ) / 2  > p = payment month  >  the first payment is the latest known historical rpi , february 2000 , 2 . 32 % .  assumptions  * constant cashflows between the quoted years ( as opposed to interpolating  swaps which distorts the curve a lot ) . this explains the atrocious look of  the \"\" raw \"\" curve . it is then smoothed with a macro , which anjam wrote .  * mid point of the swaps is used for deriving the curve ;  * discount rate is libor and i solve for the coupon rate , which is the rpi  yoy rate ;  * the above is solved separately for each quoted period ( e . g . 2 yrs , 5 yrs )  and rpi rates are determined for the incremental portion .  by forecasting rpi in the above method we are able to lock in and deliver the  forecasted levels .  looking forward to your comments and seeing you in london !  best regards ,  martina  x 34327\",0\n\"Subject: re : american express charges  hi samer !  hope you had an enjoyable thanksgiving !  i found out the \"\" scoop \"\" on the ticket . it was non - refundable and non -  refundable tickets cannot be transferred . it was just your seat that  maureen ' s husband used .  i will send in a check request for reimbursement in the amount of $ 330 . 50 .  the best thing would be for you to go ahead and pay the bill or wait for  the check from us .  sorry for the confusion !  cheers !  shirley  \"\" samer takriti \"\" on 11 / 20 / 2000 01 : 41 : 23 pm  to : shirley . crenshaw @ enron . com  cc : stinson . gibner @ enron . com  subject : american express charges  shirley ,  how are you ? things are fine over here . we are still trying to settle in ;  this process seems to be taking forever .  i would like to ask for your help . i have received a statement from  american express related to my enron account . the charge amount is $ 330 . 50 ,  which is supposed to be for an airplane ticket . after calling the travel  agency in the park , i found out that this was the ticket that i was  supposed to have used to fly to colorado . however , the ticket was used by  maurine ' s husband and maurine claimed to have paid for the ticket . also , i  remember calling the tap and cancelling prior to the travel date . can you  help me figure out what is going on here ? i am not sure who is supposed to  pay for this . i disputed the charge before but my dispute was rejected .  i appreciate your help . thanks .  - samer\",0\n\"Subject: ena analysts and associates  i have just received word from ted bland that no one has responded to this  memo . please re - read the following memo and respond to ted by july 31 , 2000 .  thanks in advance for your prompt attention to this matter .  as you know the ena otc is actively working with the analyst and associate  program to develop greater talent flow into ena . we are presently working on  a number of initiatives to improve how this is working and significantly  improve communication flow and responsiveness . however in this regard we also  need you to help make sure we have clear lines of communication within ena  regarding a & a resource levels , performance , rotations and retention efforts .  in this regard we would like for each of you to take the lead for your  groups needs and ensure that any requests , questions or concerns about a & a ' s  in your area are passed through you to either ted bland ( ena recuitment team  lead - x 35275 ) or jana giovannani ( ena liaison from the aa program - x 39233 )  or myself . it is important that we are discerning about what we do with our  a & a resources and plan carefully and accurately for our future needs , in this  regard we need for you personally ( or a senior member of your team who you  may optionally delegate this task to ) will take the time to review any a & a  resource requests from your team before passing them onto us .  in addition , given the importance of these resources , we will be inviting you  to a regular bi - monthly meeting to discuss ena a & a matters . we will confirm  the first date in due course . in the meantime if you would like to volunteer  another senior member of your team to assume this reponsibility please supply  their name as soon as possible .  please call with any questions .\",0\n\"Subject: fyi  \"\" how much do firms hedge with derivatives ? \"\"  by : wayne r . guay  university of pennsylvania  s . p . kothari  massachusetts institute of technology  document : available from the ssrn electronic paper collection :  date : march 2001  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: visa status  i want to keep you informed about my visa status .  my current hlb visa expires on 15 th january , 2000 . my hlb visa extension  application has been submitted to ins by milenia soto , enron ' s immigration  attorney . i spoke with milenia soto yesterday and came to know that she has  not received the receipt yet , however , she told me that it is perfectly legal  to work based on the fact that application for extension has been submitted  to ins .  milenia soto has received the receipts from ins of my change of status  application package which includes submission of applications for change of  status , work permit , advanced parole and finger print . earlier , my i - 140  application was approved by ins during the first week of september , 1999 .  if you need additional information and / or want to contact milenia soto , her  phone number is ( 713 ) 522 0141 .  sincerely ,  amitava dhar\",0\n\"Subject: re : possible rtp conference  dear professor huntington ,  thursday 10 a . m . works for me .  please , let me know where i can meet you .  i am attaching my itinerary , so that you can contact me  if necessary  .  my cell phone number is 713 410 5396 .  vince kaminski\",0\n\"Subject: re : fwd curves  thx i understand and will work with kevin and hunter . . margaret\",0\n\"Subject: your visit with vince kaminski - enron corp . research  dear mr . fujita :  we would be very honored to have you visit with enron . dr . kaminski is  available all day on monday , april 17 and from 3 : 30 - 5 : 00 pm on tuesday ,  april 18 . please let me know which day and time is convenient for you .  thank you .  sincerely ,  shirley crenshaw  administrative coordinator  research group  713 / 853 - 5290\",0\n\"Subject: our mtg  stinson , vince and vasant -  i need to push our mtg back until this afternoon - i ' m just finishing a major  manipulation i needed to make of the data , and i need to rest a few hours  before running the first analysis . sorry .  clayton\",0\n\"Subject: re : uc - berkeley graduate student  rajnish ,  we shall invite you for an interview in houston .  vince  rajnish kamat on 10 / 23 / 2000 07 : 55 : 31 pm  to : vkamins @ enron . com  cc :  subject : uc - berkeley graduate student  dr . vincent kaminski  managing director and head of research  enron corp .  dear dr . kaminski ,  it was a pleasure talking with you and attending your talk today .  i am a graduate student in industrial engg . and operations  research working with prof . shmuel oren  on topics in financial instrument pricing and design of  contracts in deregulated electricity markets . i am also  doing research in auction models and computable equilibrium  models with applications in electricity market design .  i am planning to graduate with a ph . d . in may 2001 and would  appreciate hearing about any opportunities in your group at enron .  i am attaching at copy of my resume ( file : cvrkamat . doc ) for your perusal .  thanking you ,  sincerely ,  rajnish kamat  graduate student  ieor , uc - berkeley  4135 , etcheverry hall  dept . of industrial engineering and operations research  university of california at berkeley  berkeley , ca , 94710  - cvrkamat . doc\",0\n\"Subject: amr research preview information  vince ,  feel free to use this username and password to surf around the amrresearch  site  ken  - - - - - - - - - - - - - - - - - - - - - - forwarded by kenneth parkhill / na / enron on 04 / 12 / 2001  01 : 23 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  webmaster @ www . amrresearch . com ( craig mackay ) on 04 / 11 / 2001 05 : 34 : 08 pm  to : kenneth parkhill  cc :  subject : amr research preview information  the following is your user name and password for an amr research preview  account .  username : parkhilll 51647  password : remain  the preview section will give you access to the executive summaries section  and the presentation library . if you have any questions about amr research ,  please email info @ amrresearch . com or call ( 617 ) 542 - 6600 .  to access the preview section , please go to the following url .  http : / / www . amrresearch . com / members\",0\n\"Subject: elena chilkina  please fill - out the evaluation sheets on elena chilkina .  thanks\",0\n\"Subject: re : progress  steve ,  thanks a lot . i think that having the pseudo code will go a long way towards  understanding how the system works and making sure that there are no  bugs in translation of a business problem ( for example , complicated  credit insurance deals with multiple triggers and conditionality ) into the  code .  regarding tanya ' s attitude . just a few points .  1 . i don ' t think she has the skills to do the system administrator ' s work  and she does not have the  necessary privileges . this explains why she keeps asking winston for help .  it ' s  not that the work is beneath her .  2 . some members of tanya ' s team came to me complaining about winston .  he effectively told them to go away and work on the \"\" research projects \"\"  and that he would take care of the it issues . i don ' t think that it ' s just  tanya ' s issue ,  though i agree that a more outgoing personality would be helpful .  3 . the reality of this situation is that the internal customers beat on  tanya and  me whenever there is any performance problems and / or they intuitively  disagree with the results of a run . they could not care less about the  demarcation line between it and research . they also want tanya  to sign off on the model and she cannot do it without full access to the code .  the bottom line is that we are in full agreement : tanya and  winston have to work as a team and i shall work on my end to make sure that  it happens .  credit is emerging as a critical issue for enron for the next few weeks and  the system cannot fail .  vince  from : stephen stock / enron @ enronxgate on 01 / 11 / 2001 08 : 23 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : progress  vince ,  i got feedback from the lunchtime research meeting that you were talking  about some specific solutions to performance of it systems . . . in particular  distributed processing . also i heard that you had concerns about the use of  multiple languages etc . . . .  both of these sound like what i was discussing with you on previous  occasions . . . do you feel the need to discuss these further ?  the multi - language issue isn ' t really that much of an issue , as the current  system is 98 % java right now . although i am a big fan of c / c + + ( it is my main  development skill ) , i am also very aware that java is a much more evolved  and robust language . i had serious doubts about the performance , but i ' ve had  a review conducted , and the results are showing the sun unix implementation  to be nearly as fast and in some cases faster than c / c + + because of something  they call hot - spot technology . ( its an instruction caching technique , i  believe ) . the concerns i expressed to you , were really about how technical  people justify the use of a language on the strength of a relatively  meaningless metric like portability .  on the issue of distributed processing . . . the original review i had conducted  by our architecture group pointed to that as a solution , and as zhiyong wei  is already working on global valuation project , winston is actively working  with zhiyong to see if he can model the var architecture on that , and also to  find a common valuation piece between the systems .  i ' d like the opportunity to talk to you about these issues if you have some  time over the next few days ?  also , i sat in on the tanya / winston meeting yesterday and as per our  discussion at the elevator , i attempted to help her argument by suggesting to  all present that she was trying to perform triage on the code . . . i . e .  seperating research domain problems from it problems .  she said that stepping through code was the only real way in which she could  get a feel for where performance bottlenecks were . i asked her how she would  measure that , and she said she would instrument the code manually by  inserting timing elements at strategic points . i mentioned that a profiling  tool could probably do this job for her . tanya again said that stepping  through code is the only way she can get an idea of the code , and that  studying documentation wasn ' t enough .  about 6 weeks ago , i commissioned a team to document the system down to  psuedo - code level and will be able to provide this to you and your team soon .  ( in fact i ' ve asked for a draft copy to be given to tanya right now ) , and  winston is also working on a draft research / it \"\" working together \"\" document ,  which will identify how the exchange of information takes place .  tanya also gave the impression that she wants a dedicated it developer to do  all the environment setup for her , because she doesn ' t really want to have to  do that . i think that this is probably the root cause of the issue . the it  guys are working very hard and her handling of the situation is not good , as  it gives the impression that this kind of work is beneath her . she is  claiming that they are un - cooperative . . . . they are claiming that she  continually asks the same questions about set - up over and over again , and  doesn ' t seem to want to learn how to do it . winston on the other hand , could  be more proactive in determining what is a business related model issue and  an it issue and ask for help from research .  i think you debbie and i need to work quite hard to get them to play nicely .  i have asked tanya and winston to go ahead and work very closely together  over the next few days . . . . and debbie brackett and i will review their  progress on friday .  in the meantime l ' ll be looking at setting up a working test environment that  doesn ' t involve my main quant guys in day to to day setup issues as a longer  term solution .  regards  steve\",0\n\"Subject: re : request  vince ,  i ' m glad you liked it . my next \"\" enron \"\" task is to try and develop a better  understanding of the way you describe the use of btu swaps to create a  synthethic multi - fuel plant . i understand the basic concept but want to  learn more about the swaps ( duration , cost , etc ) which will impact a  company ' s decision to build a single vs multi - fuel generator . do you have  some example transactions or analyses that i might look over to learn more ?  see ya in april ( we ' re going to learn to \"\" rope \"\" calves this year ) .  your friend ,  john  at 06 : 03 pm 3 / 23 / 01 - 0600 , you wrote :  >  > john ,  >  > yes , i did . looks great .  > vince  >  >  >  >  >  > \"\" john d . martin \"\" on 03 / 23 / 2001 05 : 02 : 05 pm  >  > to : vince . j . kaminski @ enron . com  > cc :  > subject : re : request  >  >  > thanks vince . this is great .  >  > by the way , did you get copies of the journal with our paper ?  >  > john  >  > at 04 : 59 pm 3 / 23 / 01 - 0600 , you wrote :  > >  > > john ,  > >  > > no problem .  > > i look forward to it .  > >  > > vince  > >  > >  > >  > >  > >  > > \"\" john d . martin \"\" on 03 / 23 / 2001 09 : 04 : 44 am  > >  > > to : vkamins @ enron . com  > > cc :  > > subject : request  > >  > >  > > vince ,  > >  > > would you mind making a few luncheon comments to the texas finance  > festival  > > group at our sat luncheon ? i struck out with andy and sheridan thought  > > that you could relate very well to the group . how about it ?  > >  > > john  > >  > > john d . martin  > > carr p . collins chair in finance  > > finance department  > > baylor university  > > po box 98004  > > waco , tx 76798  > > 254 - 710 - 4473 ( office )  > > 254 - 710 - 1092 ( fax )  > > j _ martin @ baylor . edu  > > web : http : / / hsb . baylor . edu / html / martinj / home . html  > >  > >  > >  > >  > john d . martin  > carr p . collins chair in finance  > finance department  > baylor university  > po box 98004  > waco , tx 76798  > 254 - 710 - 4473 ( office )  > 254 - 710 - 1092 ( fax )  > j _ martin @ baylor . edu  > web : http : / / hsb . baylor . edu / html / martinj / home . html  >  >  >  >  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: meeting with bob butts  this is scheduled for 2 pm on thursday 27 th in his office ebl 906 . you are  welcome to join . i will give a overview of what we ( sandeep & co ) are trying  to do for dpc ( dabhol power ) and ask him to clarify the mark - to - market issues  related to those deals .  krishna .\",0\n\"Subject: associate / analyst super saturday participation  enron managing directors , vice presidents , directors , and managers who  utilize the associate / analyst pool  as a follow up from a \"\" save the date \"\" email regarding your participation in  the associate and analyst super saturday process , now is the time to select  your dates to attend and participate .  below are the dates for super saturday weekends during the upcoming  recruiting season . if you are houston - based or if you know you will be in  houston on business at the appropriate times please click the link below to  volunteer .  ( when selecting dates please avoid selecting to interview candidates who  attend the schools for which you are a team member . )  associates analysts  october 27 - 28 , 2000 november 3 - 4  thunderbird , ut , georgetown , rice rice , ut , baylor , a & m , ou , florida , lsu ,  uhcl  november 10 - 11 , 2000 november , 17 - 18 , 2000  columbia , stern nyu , ucla , darden , cornell penn , uva , vanderbilt , michigan ,  howard , auc ,  vanderbilt , michigan uhmain  december , 1 - 2 , 2000 december 8 - 9 , 20000  chicago , kellogg , harvard , wharton , mit wellesley , overflow and re - schedules  from previous s / s  friday , december 15 , 2000  carnegie mellon  thank you for your support of the associate and analyst programs .  shelly jones  recruiting manager\",0\n\"Subject: braveheart  fyi . . .  - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin kindall / corp / enron on 12 / 19 / 2000  02 : 08 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  gail tholen @ ect  12 / 19 / 2000 01 : 39 pm  to : li sun / na / enron @ enron  cc : kevin kindall / corp / enron @ enron , eugenio perez / hou / ect @ ect  subject : braveheart  new trs for 4 q .  - - - - - - - - - - - - - - - - - - - - - - forwarded by gail tholen / hou / ect on 12 / 19 / 2000 01 : 32  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  connie lee @ enron communications  12 / 19 / 2000 09 : 40 am  to : gail tholen / hou / ect @ ect  cc : amin maredia / enron communications @ enron communications , michael  krautz / enron communications @ enron communications , alan  quaintance / corp / enron @ enron  subject : braveheart  gail ,  i have attached several emails which have the following items :  1 . hawaii 125 - 0 docs  2 . economic summary that includes a summary of all assumptions in the model  3 . models  4 . asset summary  the following is a structure diagram :  please let me know when you would like to meet to discuss these items . also ,  alan quaintance is the person who reviewed the hawaii 125 - 0 docs , so if you  have any questions regarding those docs , you will probably need to meet with  him .  thank you !  connie lee  manager  enron broadband services  713 / 345 - 8227 ( w )  713 / 419 - 2728 ( c )  connie _ lee @ enron . net  - - - - - forwarded by connie lee / enron communications on 12 / 19 / 00 09 : 22 am - - - - -  jonathanwylie @ akllp . com  12 / 13 / 00 08 : 37 pm  to : alan . quaintance @ enron . com , amin maredia / enron communications @ enron  communications , angela . davis @ enron . com , annmarie . tiller @ enron . com ,  aroberts @ wilmingtontrust . com , davidbarbour @ akllp . com , bill . bowes @ enron . com ,  brenda . l . funk @ enron . com , brent . vasconcellos @ enron . com , brian . kolle @ enron . com ,  brian wood / enron communications @ enron communications ,  charles . delacey @ enron . com , clement . abrams @ enron . com , connie lee / enron  communications @ enron communications , damon @ rlf . com , david koogler / enron  communications @ enron communications , ed smida / enron communications @ enron  communications , gil melman / enron communications @ enron communications ,  gina . karathanos @ enron . com , kevin howard / enron communications @ enron  communications , james ginty / enron communications @ enron communications ,  jlawler @ wilmingtontrust . com , jordan . mintz @ enron . com , julia . h . chin @ enron . com ,  kenton @ rlf . com , kimberly . r . scardino @ us . arthurandersen . com , kristina  mordaunt / enron communications @ enron communications , lkao @ mayerbrown . com ,  luitgard fischer / enron communications @ enron communications , marc hensel / enron  communications @ enron communications , mark . wolf @ us . cibc . com ,  murielmcfarling @ akllp . com , mercedes . arango @ us . cibc . com , michael krautz / enron  communications @ enron communications , mniebruegge @ mayerbrown . com ,  tompopplewell @ akllp . com , renee st . louis / enron communications @ enron  communications , richard anderson / enron communications @ enron communications ,  patsargent @ akllp . com , schottla @ us . cibc . com , dannysullivan @ akllp . com ,  tamullen @ prickett . com , tellwood @ mayerbrown . com , michaelthimmig @ akllp . com ,  trevor . randolph @ enron . com , trushar . patel @ enron . com  cc :  subject : mcgarret h ( blockbuster )  attached are the latest blacklines for mcgarret h ( blockbuster ) in word  and word perfect format . below is a list of the documents included :  1 . asset notice  2 . series certificate  3 . series supplement  4 . drawdown request  5 . total return swap confirmation  6 . put option agreement  7 . put option assignment  8 . notice of put option assignment  9 . membership interest assignment and ratification  10 . asset llc agreement  11 . transferor llc agreement  12 . receipt of asset llc  13 . receipt of transferor  14 . receipt of trust  15 . independent auctioneer letter agreement  16 . transfer and auction agreement  17 . b interest assignment agreement  18 . direction letter to owner trustee  19 . payment direction letter  let me know if you have problems with any of the attached documents .  jonathan wylie  associate  andrews & kurth llp  1717 main st . , suite 3700  dallas , texas 75201  214 - 659 - 4514  confidentiality notice : the information in this e - mail ( including any  attachments ) is confidential , legally privileged and intended only for  the use of each recipient named above . if you are not an intended  recipient , you must not read , use or disseminate this information . if  you have received this e - mail in error , please notify the sender  immediately by reply e - mail and delete this e - mail from your computer .  > > > >  > > > >  > > > >  > > > >  > > > >  > > > >  > > > >  > > > >  > > > >  > >  - 271595 . doc  - 271595 . wpd  - 271599 . doc  - 271599 . wpd  - 271616 . doc  - 271616 . wpd  - 271618 . doc  - 271618 . wpd  - 271619 . doc  - 271619 . wpd  - 271675 . doc  - 271675 . wpd  - 271677 . doc  - 271677 . wpd  - 271679 . doc  - 271679 . wpd  - 271733 . doc  - 271733 . wpd  - 271737 . doc  - 271737 . wpd  - 271739 . doc  - 271739 . wpd  - 271742 . doc  - 271742 . wpd  - 271745 . doc  - 271745 . wpd  - 271753 . doc  - 271753 . wpd  - 271763 . doc  - 271763 . wpd  - 271765 . doc  - 271765 . wpd  - 271767 . doc  - 271767 . wpd  - 271777 . doc  - 271777 . wpd  - 272972 . doc  - 272972 . wpd  - - - - - forwarded by connie lee / enron communications on 12 / 19 / 00 09 : 22 am - - - - -  renee st . louis  12 / 14 / 00 06 : 41 pm  to : connie lee / enron communications @ enron communications  cc :  subject : see attached  - - - - - forwarded by connie lee / enron communications on 12 / 19 / 00 09 : 22 am - - - - -  renee st . louis  12 / 18 / 00 04 : 17 pm  to : luitgard fischer / enron communications @ enron communications  cc : connie lee / enron communications @ enron communications  subject : models  louie -  i ' ve attached all of the models , asset summary , etc . connie is familiar with  them , and i will visit with her again before i leave .  thanks !  renee\",0\n\"Subject: re : site license for power world  i concur .\",0\n\"Subject: benchmarking questionnaires  david ,  i am sending you the questions submitted by petronas for our meeting on  feb 8 .  are you going to invite additional rac people to the meeting ( bill bradford  would be helpful with credit questions , bjorn may be interested as well ) .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 23 / 2001  09 : 43 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  khairuddinbmjaafar @ petronas . com . my on 01 / 22 / 2001 09 : 34 : 16 pm  please respond to khairuddin _ mjaafar @ petronas . com . my  to : vkamins @ ect . enron . com  cc : azminab @ petronas . com . my  subject : benchmarking questionnaires  vince ,  attached are two sets of benchmarking questionnaires for your kind perusal .  regards ,  khairuddin  ( see attached file : q _ bench _ rms . doc ) ( see attached file : feb 5 - 17 , 2001 . doc )  disclaimer : this e - mail and any files transmitted with it ( \"\" message \"\" )  is intended only for the use of the recipient ( s ) named above and may  contain confidential information . you are hereby notified that the  taking of any action in reliance upon , or any review , retransmission ,  dissemination , distribution , printing or copying of this message or any  part thereof by anyone other than the intended recipient ( s ) is strictly  prohibited . if you have received this message in error , you should  delete this message immediately and advise the sender by return e - mail .  opinions , conclusions and other information in this message that do not  relate to the official business of petronas or its group of companies  shall be understood as neither given nor endorsed by petronas or any of  the companies within the group .  ( embedded image moved to file : pic 24962 . pcx )  - q _ bench _ rms . doc  - feb 5 - 17 , 2001 . doc  - pic 24962 . pcx\",0\n\"Subject: enron alp  dear alp company representatives :  thank you again for your participation in the alp company day at rice  university . we are pleased to inform you that your project proposal has been  chosen for the 2001 alp program . the following students will be working on  your project :  calabrese , luigi ? ? ? ? ? ? ? ? luigical @ rice . edu  ghose , ivy ? ? ? ? ? ? ? ? ? ? ? ? ? ? ghosei @ rice . edu  ghosh , ronnie ? ? ? ghoshr @ rice . edu  iqbal , syed ? ? ? ? ? ? ? ? ? ? ? ? ? iqbal @ rice . edu  sud , pravas ? ? ? ? ? ? ? ? ? ? ? ? ? pravas @ rice . edu  womack , charles ? cwomack @ rice . edu  the faculty liaisons for your project are :  barrett , deborah ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? barrett @ rice . edu  uecker , will ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? uecker @ rice . edu  loughridge , dennis ? ? ? ? ? ? loughrid @ rice . edu  a representative from the student team will contact you soon to set up a  meeting time . if you need to contact your team , i have included the students '  email addresses . they check their email on a regular basis , so this is a good  way to communicate with them .  please let me know if you have any questions regarding this information .  again , thank you for your interest in the jones school . best wishes for a  great project !  carrie chamberlin miller  director of mba program  rice university  6100 main street , ms 531  houston , texas 77005 - 1892  phone : ( 713 ) 348 - 5260  fax : ( 713 ) 348 - 5251  e - mail : cmiller @ rice . edu  http : / / www . ruf . rice . edu / ~ jgs /  pamela castro  mba program associate  rice university  phone : 713 - 348 - 6223  fax : 713 - 348 - 5251  e - mail : castro @ rice . edu\",0\n\"Subject: enron open positions  dear mr . kaminski :  i would like to explore the opportunity to join  enron investment partners . i understand that enron has $ 20 million fund set  up to finance start - ups , and gene humphreys and his assistant john godbold  are trying to attract minority - owned start - up firms . i also learned that  enron has plans to increase the size of this fund to $ 200 million . i can find  these opportunities for enron around the globe . given my background as a  chartered financial analyst , with hands - on experience in investment  management covering financial derivatives , fixed income , and equity , i can be  a valuable resource to do the due diligence , origination , valuation , and  monitoring of these start - ups . would you please help me arrange a meeting  with either gene humphreys , ted murphy , or may be ken lay ?  i am pasting below the job opportunities open at enron . i am also interested  in these positions and would like to meet with the hiring manager .  i will give you a call to follow up .  thank you .  sincerely ,  maruti more  832 - 251 - 7267  job 0000104282 details  manager / director  essential functions : candidates will be responsible for helping  facilitate the transaction approval process for domestic and international  investments . these investments include , but are not limited to , private  equity , project development , venture capital , and structured credits .  candidates will work with business developers and underwriters in  identifying , understanding , and documenting transaction risks . they will also  assist in preparing transaction approval documentation . in addition , they  will oversee the valuation , modeling , and simulation process for investments .  the primary focus is to identify and measure key risk factors from both a  quantitative and a qualitative perspective with an emphasis on fundamental  analysis . the candidate must be able to assist in management and training of  departmental staff and in formulation of investment valuation policies and  procedures .  essential requirements : ? strong interpersonal skills ?  understanding of transaction structuring and credit risk issues ?  understanding of finance and valuation methodologies . ? proficiency with  excel cash flow models ? experience with financial statement analysis ?  understanding of statistics and simulation techniques ( monte carlo ) .  preferred skills : na .  special characteristics : the ideal candidate will possess an  undergraduate degree in finance , accounting , or economics , and an mba .  relevant experience could include credit analysis or valuation / finance  experience . manager / director in the risk assessment department of a $ 20  billion energy company .  contact : please email resumes to corpjobsl @ enron . com , please  refer to job no . 104282 when responding .  job id 0000104282  department capital pricing / risk an  company corporate staff  risk assessment and control  location houston , tx  type  posting date 05 - jun - 00  to submit your resume for this position :  online enter your resume id : no resume id ? you can create a  resume on - line , deposit it in our database , and receive a resume id using our  resume builder .  your resume id will allow you to submit your resume  once , but route it to up to 20 open positions . enron does not process resumes  that are not sent in response to specific positions .  if you have an existing resume in electronic format ,  the resume builder allows you to cut and paste your whole resume .  fax our fax number is 1 - 888 - 588 - 7152 .  you must tell us which jobs you ' re interested in , or  we will not be able to process your resume . write on your resume ( or on a  separate page ) all of the jobs ids of the jobs you ' re interested in pursuing .  an equal opportunity and affirmative action employer  top of page copyright 1997 - 1999 enron corp . all rights  reserved . contact us .  job 0000104281 details  staff / spec / sr spec  essential functions : \"\" snapshot \"\" preparation - responsible for  preparation of quarterly asset \"\" snapshots \"\" which provides enron ' s senior  management with summarized operational and financial information on selected  merchant portfolio investments . responsibilities associated with preparation  of snapshots include : researching publicly traded companies , calculating key  financial data , updating and analyzing graphical summaries of performance ,  reviewing press releases for recent events data , updating stock prices from  bloomberg ? weekly underwriters report - full responsibility for updating and  distributing weekly underwriters ' report . involves regular interaction with  executive vice president , london office personnel , as well as several vice  presidents within underwriting group within rac . ? various projects - will be  utilized on special projects on an as needed basis  essential requirements : accounting / finance / economics degree with  0 - 4 years business experience . excellent computer skills - excel ,  powerpoint , bloomberg , word research skills and the ability to interact with  a variety of personnel and departments . excellent organization skills . self  starter , quick learner . must be team player . good writing skills with the  ability to concisely summarize operational and financial results .  preferred skills : na .  special characteristics : . entry level position with the  opportunity to gain familiarity with all of enron ' s portfolio assets . future  advancement in asset and portfolio management possible for candidate who  exhibits competence and creativity .  contact : please email resumes to enajobsl @ enron . com , please refer  to job no . 104281 when responding .  job id 0000104281  department due diligence / asset mgmt  company corporate staff  risk assessment and control  location houston , tx  type  posting date 05 - jun - 00  job 0000102789 details  sr specialist  essential functions : in this position candidates will model , run  monte - carlo simulations , evaluate capital investments . these investments will  cover a wide range . candidates will be responsible for the validation of  models as well as insuring the accuracy and integrity of the model and  underlying assumptions . the primary focus will be to provide an objective  valuation for an investment by identifying and measuring key risk factors  from both a quantitative as well as qualitative perspective . ? understanding  of valuation techniques applied to equity or structured financial products . ?  understanding of cash flow models and option pricing models . ? proficiency in  excel . ? understanding of project finance and risk mitigation techniques . ?  experience with financial statement analysis and pro forma statements . ?  understanding of statistics and application to financial analysis .  essential requirements : na .  preferred skills : ? understanding of simulation methodologies  such as montecarlo . ? exposure to statistical analysis software such as  crystal ball or @ risk . the ideal candidate will possess an undergraduate  degree in finance , accounting , or economics and have 2 to 3 years of  financial modeling experience and an mba / cpa .  special characteristics : na .  contact : please do not contact the hiring manager . please no  faxes . send resumes via e - mail to corpjobsl @ enron . com or mail to enron , attn :  tvasut - eb 3628 , 1400 smith st . , houston , tx 77002 . please refer to job #  102789  job id 0000102789  department capital pricing / risk an  company corporate staff  risk assessment and control  location houston , tx  type  posting date 17 - mar - 00  - attl . htm\",0\n\"Subject: re : next visit to houston  george ,  would you like to take a like at the service ( see below ) .  the meeting is on july 12 at 2 : 30 ( 19 th floor ) .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 06 / 29 / 2000  04 : 08 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" edward krapels \"\" on 06 / 29 / 2000 03 : 53 : 40 pm  please respond to  to : \"\" ' vince j kaminski ' \"\"  cc : \"\" jeffrey shorter \\ ( e - mail \\ ) \"\"  subject : re : next visit to houston  vince ,  good to hear from you and i ' m glad you ' re available . how is wednesday at  2 : 30 ?  i did look at eol and am not surprised to see its quality . i was unable to  say much about it in my risk electricity hedging and trading report because  of deadline pressures . how is the site doing ? i am intrigued by the  competition for trading platforms and was astonished to hear that goldman ,  morgan , bp and shell were going to launch a site to compete with yours . talk  about a shotgun marriage !  if we have time next week , i could step you through our website - -  www . weathereffects . com . i ' m very proud of what we ' ve done . i can ' t give out  a password yet but would be happy to walk through the site with you over the  phone using my password . it ' s a very ambitious site - - with state - of - the - art  wsi weather ( seasonal , 6 - 10 , and day to day ) driving a good load model for  pjm and nepool . esai contributes oil and gas input price forecasts , capacity  judgments , and \"\" herding \"\" ideas to develop power price forecasts for same  time periods . after one month ' s full - bore effort , i ' m pleased with the  results ( e . g . , we forecast nepool onpeak to be $ 43 and it turned out $ 46 ) .  have a great weekend .  ed  - - - - - original message - - - - -  from : vince j kaminski [ mailto : vince . j . kaminski @ enron . com ]  sent : wednesday , june 28 , 2000 5 : 29 pm  to : ekrapels @ esaibos . com  cc : vince j kaminski ; shirley crenshaw  subject : re : next visit to houston  ed ,  i shall be available on both days . what about wednesday ,  july 12 , between 1 : 30 and 4 : 00 . please , let me know  what time would work for you .  it will be nice to see you again .  vince  p . s . by the way , did you have a chance to take a look at the eol ?  \"\" edward krapels \"\" on 06 / 28 / 2000 02 : 49 : 41 pm  please respond to ekrapels @ esaibos . com  to : vince j kaminski / hou / ect @ ect  cc :  subject : next visit to houston  dear vince ,  i will be returning to houston during the week of july 10 .  esai and weather services international have launched - - after more than 18  months of r & d - - our service , called energycast power trader and energycast  gas trader , for power traders in nepool and pjm . i would be happy to review  the service with you as well as take you on a tour of our web site . are you  available on july 12 - 13 ?  sincerely ,  ed krapels\",0\n\"Subject: re : hello team  ken :  we are very excited about our alp at enron . we look forward to working  with you and your team and learning about the broadband space .  thursday at cacciatore ' s sounds fine with us . we will see you there at 7 : 00  p . m .  enron alp team  - - - - - original message - - - - -  from : kenneth . parkhill @ enron . com [ mailto : kenneth . parkhill @ enron . com ]  sent : tuesday , january 23 , 2001 10 : 47 am  to : luigical @ rice . edu ; ghosei @ rice . edu ; ghoshr @ rice . edu ; iqbal @ rice . edu ;  pravas @ rice . edu ; cwomack @ rice . edu ; barrett @ rice . edu ; uecker @ rice . edu ;  loughrid @ rice . edu  cc : vince . j . kaminski @ enron . com  subject : hello team  we are very excited to be able to welcome your alp team to enron . we are  looking to working with you this semester . to kick things off , we would  like to invite you to cacciatore ' s this thursday for dinner ( 1 / 25 / 01 , 7 pm ) .  if you can ' t stand italian cuisine , or would like to try a different day or  time , please feel free to make a suggestion . we look forward to meeting  you .  ken  713 / 345 - 4638\",0\n\"Subject: videoconferencing picture clears up  network world fusion focus : neal weinberg on product review of the week  today ' s focus : videoconferencing picture clears up  03 / 14 / 00  dear wincenty kaminski ,  ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ this newsletter sponsored  by w . quinn ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~  how to regain the 30 % of nt / 2000 server space that ' s wasted  free ! get a grip on spiraling disk consumption and regain 30 % or more  of your site \u0001 , s enterprise storage capacity . wquinn ' s storagecentral  lets you : monitor , track and control user disk consumption ; identify and control what types of  files your users can write to your servers .  get a grip on your nt / 2000 storage space - - free eval :  l  copy and paste urls that break in two lines and remove extra spaces .  today ' s focus : videoconferencing picture clears up  by neal weinberg  if you \u0001 , ve been turned off by the jumpy frames and poor audio quality  associated with real - time videoconferencing , the reviewmeister has good  news for you . there \u0001 , s a new generation of videoconferencing end - point  devices that provide business - quality pictures and sound for under  $ 12 , 000 .  we grabbed a box of popcorn and tested eight videoconferencing systems ,  using 384 k bit / sec isdn and ip connections .  in the category of videoconferencing appliances that is , standalone  systems that go in a conference room for group video sessions with  colleagues or business partners polycom \u0001 , s viewstation mp was the  clear winner .  the polycom viewstation provided outstanding video and audio quality .  in addition , it was easy to install , configure and use .  in the category of pc - based products , which are especially good for  virtual collaboration from your desktop , vcon \u0001 , s mc 800 was the hands -  down winner , based on its high - quality components .  the beauty of these products is they allow you to have a real - time  video image of the person you \u0001 , re conferencing with in one corner of  the screen , with the rest of the space available for data collaboration .  if you \u0001 , re in the market for a system , be sure to get one with a sony  evi d 30 / 31 video camera ; an unidirectional boundary microphone , like  the audio technica ; and a quality sound mixer . and look for remote  administration and system management tools . for example , the  viewstation allows you to upgrade software , change settings , or change  address book entries directly from the administrator \u0001 , s system .  most systems will allow you to transmit over isdn or ip , but we found  performance over ip was dragged down by ip \u0001 , s overhead requirements . for  the complete product review , go to :  of course , there \u0001 , s more to videoconferencing than end points , so we  whipped up an implementation guide that lays out the network topology ,  bandwidth and quality - of - service issues .  based on our testing , the reviewmeister says now is the time to start  pilot - testing a videoconferencing system . your chief information  officer will love it when you tell him you can slash your company \u0001 , s  airline and hotel bills because you \u0001 , ve got people from all over the  company in virtual rather than face - to - face meetings .  next week : we loaded windows 2000 on a pc and a server and ran gigabit  ethernet to the desktop . guess where the bottleneck was ?  to contact neal weinberg :  - - - - - - - - - - - - - - - - - - - - - -  neal weinberg is features editor at network world , in charge of product  reviews , buyer ' s guides , technology primers , how - tos , issue - oriented  feature stories and the technology insider series . you can reach him at  mailto : nweinber @ nww . com .  for related links - - click here for network world ' s home page :  http : / / www . nwfusion . com  videoconferencing picture clears up , network world , 03 / 13 / 00  but implementation is still fuzzy , network world , 03 / 13 / 00  how we did it , network world , 03 / 13 / 00  subscription services  to subscribe or unsubscribe to any network world e - mail newsletters ,  go to :  to change your email address , go to :  subscription questions ? contact customer service by replying to this  message .  other questions / comments  have editorial comments ? write jeff caruso , newsletter editor , at :  mailto : jcaruso @ nww . com  for advertising information , write jamie kalbach , account executive ,  at : mailto : jkalbach @ nww . com  network world fusion is part of idg . net , the idg online network .  it all starts here :  http : / / www . idg . com  copyright network world , inc . , 2000\",0\n\"Subject: re : fw : eprm article  thank you very much sir . i ' ll incorporate you comments later today and send  it off .  thanks also for your other comments , i ' m glad you regard the book highly  enough for your group and your course .  i look forward to catching up with you soon .  best regards .  chris .  - - - - - original message - - - - -  from :  to : chris strickland  cc :  sent : wednesday , december 13 , 2000 10 : 41 am  subject : re : fw : eprm article  >  > chris ,  >  > i have read the paper . it reads very well . two comments .  >  > 1 . it probably makes sense to include a note on the standard gbm  simulation  > equation and  > the way it ' s typically discretized .  >  > 2 . it will help the reader who did not read the earlier articles to  explain  > what ct is ( perhaps a footnote ) .  >  >  > i am also including a message i sent to julie today .  >  >  * * * * * * * * * * * * * * * * *  > 1 . i would like to register 2 members of my group for both courses ( in  > houston ) :  >  > a . paulo issler  > b . alex huang  >  > i shall attend the course on weather only .  >  > 2 . i have started the process to issue a check for 5 , 000 aud for lacima .  > shirley sent you an update on this . the 2 nd installment comes from the  > budget of our  > office in australia . i shall talk to paul quilkey today about it . please ,  > let me know if there is any delay .  >  > 3 . the book will be used as textbook for the class i shall be teaching at  > rice .  > rice univ bookshop is placing an order .  >  > 4 . i would like to order 50 copies for my group . what is the best  > way to place the order ? can we pay in us dollars ?  >  * * * * * * * * * * * * * * * * *  >  > best regards .  >  > vince  >  >  >  >  > \"\" chris strickland \"\" on 12 / 12 / 2000 05 : 21 : 22 pm  >  > please respond to \"\" chris strickland \"\"  >  > to :  > cc : \"\" julie \"\"  > subject : fw : eprm article  >  >  > hi vince ,  >  > i ' m wondering if you got this last week ? if you could have a quick look  and  > get back to me with any comments that would be great - robin is chasing me  > on this one !  >  > best regards .  >  > chris .  >  >  > - - - - - original message - - - - -  > from : chris strickland  > to :  > sent : wednesday , december 06 , 2000 4 : 16 am  > subject : eprm article  >  >  > > hi vince ,  > >  > > hope things are fine with you . i ' m sorry that i only ever write to you  > when  > > i ' m after something , but could you look at this simulation article - the  > > next installment in the eprm articles .  > >  > > many thanks and best regards .  > >  > > chris .  > >  > >  > >  > > - - - - - original message - - - - -  > > from :  > > to : ; ;  > ;  > >  > > sent : friday , september 08 , 2000 4 : 23 am  > > subject : re : var article  > >  > >  > > > les ,  > > >  > > > the revised version of the var article looks fine .  > > >  > > > vince  > > >  > >  >  > ( see attached file : eprm _ 04 _ sim _ mr . zip )  >  >  >  >  >\",0\n\"Subject: re : re : software license  stinson ,  i ' m not sure who was going to handle this project - tom moore or laine  borgman . so , by this e - mail , i will ask the appropriate person to respond to  you . i have also given tom ' s name and e - mail address to ms . geman .  they will just need to change in article 17 of the software license agreement  the response time from 2 to 3 days and the software license part should be  done . the only thing that would leave then is ms . geman ' s response regarding  the escrow agreement as to whether it was agreeable to her and her law firm  ( who would be holding the source code in escrow ) . i ' m not sure whether ms .  geman has responded to tom about that or not . i have sent electronic copies  of all of the documents to both tom and laine to finalize once ms . geman  responded .  tom can be reached at : x 55552  laine can be reached at : x 56470  thanks ,  karla  stinson gibner @ ect  10 / 20 / 00 01 : 39 pm  to : karla feldman / enron communications @ enron communications  cc : vince j kaminski / hou / ect @ ect  subject : re : re : software license  karla ,  sorry for the delay . i have been out for the last three weeks . vince  tells me that he has talked to ms . geman and they agreed on a time of 3  business days for a response time .  is there someone else now handling this project ?  thanks ,  stinson  from : karla feldman on 09 / 27 / 2000 04 : 24 pm  to : gemanix @ aol . com @ enron  cc : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect  subject : re : re : software license  ms . geman ,  i apologize for the delay , but i finally have drafted an escrow agreement for  placing the software in escrow with your attorneys . please review and have  your attorneys review and let me know if it is acceptable .  i will be leaving the department i have been working in and moving to a  different enron subsidiary on october 13 . if at all possible , could we try  to get the software license agreement and the escrow agreement wrapped up  before i leave so that someone else does not have to try to pick up where i  left off ?  i think we are just about in agreement on the software license portion .  seems like the only outstanding question had to do with your concern  regarding providing a response time of 2 business days . i do not have any  answers regarding that - maybe vince kaminski or stinson gibner can respond  on this issue .  i look forward to hearing from you and trying to get this finalized within  the next 2 weeks if possible .  thank you ,  karla feldman  enron corp .  ( 713 ) 646 - 7554\",0\n\"Subject: venue change - very important ! !  understanding and applying financial mathematics venue change - london ,  september 21 & 22 :  please note that i am faxing you a form which states a venue change for the  above listed course . just to reconfirm , the training course will now be held  at the following location : ?  the white hall hotel  2 - 5 montague street ?  london  wclb 5 bu ?  t 011 44 207 580 2224 ?  f 011 44 207 580 5554  please contact venue search to arrange your accommodations - 011 44 208 541  5656  ?  to confirm your acknowledgement of this venue change , please either fax back  the form or respond to this email . please contact me with any questions you  have regarding the change .  ?  regards ,  amy lamonsoff ?  conference coordinator ?  t ( 212 ) 925 - 1864 xl 48  f ( 212 ) 925 - 7585 ?  alamonsoff @ watersinfo . com  ?  ?\",0\n\"Subject: model effort in houston  christian ,  our spring / fall window of \"\" < nactivity \"\" is rapidly eluding us . . .  we need to get our internal model operational without delay .  along these lines , let ' s go ahead and plan your visit to houston as soon as  possible ,  but by all means get you in at least 4 weeks before hurricane season .  that would mean the month of may looks good .  please inform me what duties you could not perform from here to support the  sydney office ,  we ' ll figure out how to keep that office whole .  ( it ' s working without a hitch to have steve bennett in london , but continuing  his houston duties )  if the first week in may ( for the whole month ) will work , please respond asap  and we ' ll get housing arrangements finalized .  looking forward to your visit ,  - - - mike\",0\n\"Subject: department presentation , friday 7 th july , 8 : 45 am  the fame of the research department is spreading all over europe !  best regards ,  martina  - - - - - - - - - - - - - - - - - - - - - - forwarded by martina angelova / lon / ect on 05 / 07 / 2000  15 : 29 - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron information technology  from : enron europe general announcement 05 / 07 / 2000  15 : 27  please respond to european t & d / lon / ect  to : ect frankfurt , ect helsinki , ect london , ect madrid , ect oslo , ect  teesside , ect warsaw  cc :  subject : department presentation , friday 7 th july , 8 : 45 am  maureen raymond - casta \u000f eda ,  senior international economist , research department , houston  will be presenting  approach to country risk  friday 7 th july  8 : 45 am - breakfast and questions to ms . raymond - casta \u000f eda  9 : 00 am - presentation will start  enron house , fifth floor , auditorium  it is not necessary that you book a place , however if you have any questions  please contact european t & d .\",0\n\"Subject: fw : eprm  - - - - - original message - - - - -  from : dave hall  to :  sent : tuesday , september 05 , 2000 8 : 53 pm  subject : eprm  > dear mr clewlow  >  > thanks for your piece on var for inclusion in the october edition of  energy  > & power  > risk management .  >  > the article is attached . there are a few queries from the editor and  myself  > written in bold in the text . you might find that some parts of the piece  > have been edited to  > conform to our ' house style ' , etc .  >  > comments and suggestions welcome .  >  > should we send this article to anybody else for their approval ?  >  > thanks and kind regards ,  >  >  > dave hall  > chief subeditor  > energy & power risk management magazine  > risk waters group  > haymarket house  > 28 - 29 haymarket  > london  > swly 4 rx  > uk  > tel : + 44 ( 0 ) 20 7484 9796  > fax : + 44 ( 0 ) 20 7930 2238  >  >  >  >  >  >  >  >  >  >  - var . doc\",0\n\"Subject: re : lng may 19 decision  john ,  sorry for the confusion .  this is a second tanker on which very few details  are available . the lng group is working as we speak  to provide some information for joe sutton before  his departure for paris this ( tuesday ) afternoon .  there is no dash on this 2 nd tanker yet . i asked dave gorte  on monday to send me one and was not told that  he can provide me with the mystic lady dash as the closest  substitute .  vince  john sherriff  05 / 16 / 2000 12 : 20 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : lng may 19 decision  vince - thanks for the update . what i am not sure of is what if any decision  has to be  made on may 19 . it seems to me that the mystic lady and elba island deals  have already  been approved and executed - but it is quite likely i am missing a detail or  two .  john  vince j kaminski  15 / 05 / 2000 17 : 14  to : john sherriff / lon / ect @ ect  cc : vince j kaminski / hou / ect @ ect , david gorte / hou / ect @ ect , rick  buy / hou / ect @ ect , ted murphy / hou / ect @ ect  subject : re : lng may 19 decision  john ,  this is the update on what i have done for the lng transactions .  1 . i was not involved in the lng ship project . i shall read the dash  and give you my comments . without looking at the details , i think that the  decision  to charter a tanker removes one significant risk we have at the elba island  project ( please , see point 2 ) .  2 . elba island . i am working with doug rotenberbg , brad hitch , scott earnest  ( sally beck ' s organization ) and rac to set up the book for the elba island  transaction . the next step  will be to expand the book to capture all the enron ' s lng - related positions  in one place and  to look for natural risk offsets and possible hedges . a working group is  meeting to close a few  remaining gaps tomorrow ( tuesday ) at 8 : 30 .  a few comments on the book design and my view of the project :  a . the current thinking is that lng will be sourced for the elba island  facility  by buying marginal cargos on the fob basis . marginal cargos will represent  supply from excess capacity that has not been committed under long - term  contracts or became available due to some short - term frictions .  the fob cargos are typically selling at a significant discount to the  long - term  contract prices . the economics of the deal , as represented by the book we are  setting up , will reflect the assumption that not only we can locate marginal  cargos  but that we shall be able to do it on a regular basis , arranging shipping and  coordinating  the facility schedule and natural gas transactions in the us . in other words ,  we have a significant logistical and operational risk in this transaction .  b . the transaction will cover the period of 17 years ( with an extension  option of  5 years ) . even if we can lock - in the lng volumes over this time period , we  have no ability to lock - in the other side of the spread ( us gas prices ) for  such a long tenor . this is  essentially a tolling transaction with exposure to the lng - nat gas spread  and  i would not recommend locking - in only one leg of the spread .  one solution would be to cover , let ' s say , 50 % of he lng volumes for the  first  5 years and lock - in the nat gas side on the us market side .  c . the book we are setting up will be based on many managerial assumptions  regarding sources of lng , shipping rates , schedules , etc . i would set up a  big prudence reserve  in case we mark it to market .  d . my group will work on valuation of some options we have in the elba island  deal  ( that are good for enron ) and on the hedging strategy for the lng positions .  long - term lng contracts are typically based on the japanese crude cocktail  that  correlates very well with brent .  vince  john sherriff  05 / 14 / 2000 01 : 40 am  to : vince j kaminski / hou / ect @ ect  cc : lauren urquhart / lon / ect @ ect  subject : lng may 19 decision  vince  i haven ' t spoken to you for awhile but hope the world is treating you well .  anyway with greg moving to his  new role i have ( i hope only temporarily ) staff trading oversight for the  eastern hemishere plus lng .  i understand that your group is taking a first cut at developing curves for  lng and lng ship values . i also understand  that another lng ship decision is on the dockets for may 19 ( not very far  away ) . anway i understand this  is a big decision but i still have gotten very little info yet . can you  please let me know where you stand now ?  i will ask my assistant lauren to set up a time that i can speak with you in  the next couple of days and if you  have anything for me to review before then she can get it faxed to me as well .  look forward to connecting with you vince .  john\",0\n\"Subject: exmar purchase decision  fyi  - - - - - - - - - - - - - - - - - - - - - - forwarded by rick buy / hou / ect on 05 / 22 / 2000 01 : 34 pm  - - - - - - - - - - - - - - - - - - - - - - - - - - -  john sherriff  05 / 22 / 2000 01 : 21 pm  to : rick buy / hou / ect @ ect , joe gold / lon / ect @ ect , david  haug / enron _ development @ enron _ development , doug  rotenberg / enron _ development @ enron _ development , rick  bergsieker / enron _ development @ enron _ development , vince j kaminski / hou / ect @ ect  cc :  subject : exmar purchase decision  i just got off the phone with jeff skilling to make my pitch for doing the  exmar deal . he said that he generally understands the logic of the deal but  simply  wants the risk management discipine applied to analzing the position ( a  reiteration of what rick buy had said in our meeting today ) . i would simply  ask vince ' s team to take a quick look tommorow at valuing the ships as stand  alone positions with a guess at the volatility based on historical price  movements . this would  be much easier than the rainbow option approach and would allow us to roughly  look at the value of the options on the other two ships . in other words we  could look at two ship long positions with some implied volatilities and  also estimate daily vars on the ships as if they were mark to market  ( although i agree with david that we will not likely be able to mark the  ships because they will be treated as leases ) .  john  john  - - - - - - - - - - - - - - - - - - - - - - forwarded by john sherriff / lon / ect on 22 / 05 / 2000 19 : 05  - - - - - - - - - - - - - - - - - - - - - - - - - - -  joe gold  22 / 05 / 2000 18 : 58  to : john sherriff / lon / ect @ ect  cc :  subject : exmar purchase decision  john ,  after spending a few minutes with our shipping experts in the coal and oil  groups , i have a slightly different angle on the exmar lng vessel decision .  i would ideally like to spend the time to analyse this purchase as we do  power and gas positions . unfortunately , we do not have that luxury and  sometimes , in absence of true analytics , the most rudimentary measures can  provide the best decision tools . here is how we would make the decision :  1 ) our shipping expert confirms that $ 140 million for a 135 , 000 ton ship  represents a good price relative to new build costs over the last three years  and that quotes have been trending up past that number recently . he also  confirms that the current trough is the result of the default of several far  east buyers and that new lng orders and other ship building ( cruise liners )  have reduced the over capacity . his experience and historic analysis has  suggested that the pricing cycle for lng ships lasts for a significant  period . new efficiency measures should reduce new build prices ( and allow  for a lower trough ) , but not by an extreme amount versus the $ 140 million  cost of this vessel .  pierre normally likes to roll time charters ; however , this is difficult in an  illiquid shipping market like lng . he would purchase this ship if the lng  shipping book were his to manage . he estimates the ship could be sold in a  distressed sale for $ 110 million and could be potentially time chartered on a  long term basis at a value of up to $ 200 million .  2 ) our development teams in spain , italy and turkey have been trying to  solve the big question - gas . in each country , the key to developing a  merchant plant is securing gas flexibility or at least securing negotiating  leverage with the monopoly gas supplier . it is questionable whether or not  this decision will have an immediate impact on arcos . the plant ' s time line  and the realities of the lng supply market may require that we commit to gas  natural before any source of 3 to 5 year gas can be secured . the shear  threat of being able to bring spot or term lng to these markets will improve  our negotiating leverage and / or allow us to create flexibility . going  forward , however , other potential plant opportunities in spain , and elsewhere  in the med region , may have the capacity to utilise these vessels . i think  that this flexibility is worth at least $ 25 million to me .  3 ) i would summarise : upside $ 60 + $ 25 = $ 85 million  downside ( $ 30 ) + $ 25 = ( $ 5 ) million  i would do it .  i will leave the rest to you .  joe\",0\n\"Subject: re : fax machine request ~ 05 - 19 - 2000  kevin ,  per your request , please see below :  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  new facsimile machine information  please take a look @ the following and let me know , which fax machine you  choose or if you need information on something smaller , then i will have the  vendor contact you directly to finalise installation . an enron director or  above { with signature authority to legally bind enron to a contract } will  have to sign off on the contract paperwork before the fax machine can be  installed . delivery times on new machines are normally 3 - 5 working days but  either vendor listed below will be able to provide a \"\" loaner \"\" should you have  a business need . please discuss the fax machine install date with the rep  when ordering the equipment .  if there is no existing fax line present , you will need to send a notes - mail  to the move team { erica @ x 3 - 3185 or janelle @ x 5 - 7917 } requesting the  installation of a new fax line . the move team can be found in the notes - mail  \"\" ect address book \"\" .  if you are an ees employee , you must first get new equipment approval from  ees budget control . contact susan mcleroy @ x 5 - 8066 or via notes - mail .  if you are an ebs employee , you must first get new equipment approval from  ebs purchasing & budget control . contact paula corey @ x 3 - 9948 or martha  reyna @ x 3 - 3491 . you can reach both of these people via notes - mail .  if you are an ena employee , you must first get new equipment approval from  ena finance & budget control . contact lorie belsha @ x 3 - 9617 or via  notes - mail .  a note on the fax machines listed below :  all the machines listed below come with a 2 nd paper tray and upgraded memory  { maxed by model ~ see below } as an enron standard from each vendor .  all the fax machines listed below have a modem speed rated @ 33 . 6 kbps versus  the canon laserclass 7500 { example only } @ 14 . 4 kbps = new fax machine should  be noticeably quicker .  document feeder capacity of the machines listed below are the same as the  canon laserclass 7500 { example only }  maintenance = models listed below have maintenance / repair coverage included  in monthly $ total . there is no separate agreement ! toner / drum cartridges +  paper + line charges are extra { not quoted }  contract pricing can change without warning , so please let me know asap if a  vendor quotes you a different price to those listed below against the various  models .  if the fax machine is to be used in a trading type environment , here are some  considerations :  no more than 20 people per fax machine = take a look @ the fax machine  placement on eb 30 or eb 31 .  disregard any fax machine that does not have a 33 . 6 k modem and jbig  compression { or equivalent } .  look for memory upgrades & 2 nd paper tray included in monthly cost . { models  quoted are loaded } .  maintenance is to be included in monthly cost { models quoted are covered } .  * * * * * * * * * * * * * * * * * * * * *  from pitney bowes  pb 2050  cost : $ 95 . 00 per month on rental  enron specs : this model has 10 megs of memory + a 2 nd paper tray as standard .  pitney bowes weblink , click here - - >  there are several of these fax machines located through out the enron  building and 3 allen center , including some on trading floors .  * * * * * * * * * * * * * * * * * * * * *  pb 9930  cost : $ 76 . 00 per month on rental  enron specs : this model has 10 megs of memory + a 2 nd paper tray as standard .  pitney bowes weblink , click here - - >  there are several of these fax machines located through out the enron  building and 3 allen center , including some on trading floors .  * * * * * * * * * * * * * * * * * * * * *  pb 9830  cost : $ 55 . 00 per month on rental  enron specs : this model has 5 megs of memory + a 2 nd paper tray as standard .  pitney bowes weblink , click here - - >  * * * * * * * * * * * * * * * * * * * * *  from panasonic communications direct  uf - 885  cost : $ 75 . 00 per month  click below for machine details { similar to the uf - 880 with 8 megs of memory +  2 nd tray = no handset } :  there are several of these fax machines located through out the enron  building including some on trading floors .  * * * * * * * * * * * * * * * * * * * * *  the above machines are designed for workgroup use .  q ) how many people will be using this fax machine ?  q ) how much usage will this fax machine have ?  { i . e . heavy = 40 faxes per day @ 20 pages / 60 faxes per day @ 2 - 3 pages or a  lot less ? if \"\" heavy \"\" , either the pb 2050 , pb 9930 or uf 885 / uf 895 should fit  your needs = if 15 - 40 , the pb 9830 would probably be a better fit }  * * * * * * * * * * * * * * * * * * * * *  contract details  the fax programs are an agreement between each end user of the fax machine  and the relevant vendor , as follows :  pitney bowes  36 month rental .  30 day notice for termination of contract .  no penalty for early termination of contract = call pb rep . and have the  machine picked up , making sure a receipt is given to you by the collecting  rep .  upgrade / downgrade available = $ 0 penalty .  rep will be happy to discuss details with you and answer any questions on  these points .  panasonic communications  36 month lease rental .  30 day notice for termination of contract before term expiration .  no penalty for early termination of contract for office / department / location  closure .  upgrade / downgrade available = $ 0 penalty .  rep will be happy to discuss details with you and answer any questions on  these points .  * * * * * * * * * * * * * * * * * * * * *  please note the following  the facsimile machine agreement is between the enron business unit / department  requesting the facsimile machine and the vendor .  the user or requester of the fax machine is responsible for invoice payment .  enron property & services corporation is not responsible for the coding ,  processing or payment of facsimile { fax } machine invoices .  in order to return any old fax machine equipment , you must contact the  leasing company that supplied the equipment and send them a certified letter  that terminates the agreement . if you terminate a contract within the  original agreement period , you may be liable for penalty charges as a lot of  fax machines are on a non - cancellable lease agreement . the vendor who  supplied the fax equipment will be able to let you know of any outstanding $  amounts for your existing equipment .  if you are asked to pay outstanding $ amounts , be aware that some vendors  include the cost of outright purchase of the old fax equipment = from the  contracts i have reviewed so far , you are under no obligation to purchase the  old equipment .  ikon contact name for returns :  beth frank : phone = new # - - > 409 - 441 - 1262 { previously 281 - 355 - 6274 }  beth frank fax # = new # - - > 409 - 441 - 1266 { previously 281 - 355 - 5496 }  beth frank e - mail address ~ eafrank @ aol . com  marimon business systems contact name for returns :  don scott : phone = 713 - 686 - 6601  don scott fax # = 713 - 686 - 6676  { no e - mail address available }  * * * please call me or e - mail me if it is a different vendor name on the  machine and i will respond with a contact name * * *  charges for fax machines are dependant upon manufacturer & model , with the  person responsible for the fax machine , paying the invoice . you must notify  the vendor of any changes relating to fax machine assignment { even if it is  within the same group } = who the machine has been reassigned to { contact  name } , the new contact phone # and the location of the machine .  * * * * * * * * * * * * * * * * * * * * *  fax machine supplies  replacement toner cartridges : most of these are available to enron through  corporate express @ savings over the fax vendor invoice price . these savings  can be significant , so please e - mail me if you would like more details .  * * * * * * * * * * * * * * * * * * * * *  please call me if you have any questions .  thanks , iain russell @ 713 - 853 - 6861  contracts supervisor administration  enron property & services corp .  * * * * * * * * * * * * * * * * * * * * *  * * * * * * * * * * * * * * * * * * * * *  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  kevin g moore  05 / 19 / 2000 12 : 42 pm  to : iain russell / epsc / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , mike a  roberts / hou / ect @ ect , vince j kaminski / hou / ect @ ect  cc :  subject : fax machine  iain ,  please , i am in need of a fax machine .  it was brought to my attention that you  may have one available .  please inform me concerning this  matter , we need one a . s . a . p . .  thanks  kevin moore  x 34710\",0\n\"Subject: re : all best wishes for 2001  geoff ,  you have very beautiful daughters . you must be a very proud father .  i shall try to attend a few sessions of the cera conference . you can also  call me when you are in houston and we can meet for dinner and / or drinks .  vince  \"\" lubbock , geoffrey \"\" on 01 / 29 / 2001 11 : 49 : 52  am  to : \"\" vincent kaminski ( e - mail ) \"\"  cc :  subject : all best wishes for 2001  vince  loved talking with you  i ' ll be at the cera conference in houston feb 12 through feb 16  if i could manage to see you then i would enjoy it vey much  geoff  >  ps it took me hours to produce the card which is hot off the press .  best wishes for health wealth and happiness for you and your family in 2001  this email and any files transmitted with it are confidential and  intended solely for the use of the individual or entity to whom they  are addressed . if you have received this email in error please notify  the system manager .  - xmas 2000 . pdf\",0\n\"Subject: dinner thur . evening ?  vince ,  greetings .  i have not been advised by amy lamonsoff of a planned risk dinner next  thur . if there will not be such a dinner , would your schedule permit a  dinner next thur . ?  best ,  ehud  ehud i . ronn  department of finance  mccombs school of business  university of texas at austin  austin , tx . 78712 - 1179  voice : ( 512 ) 471 - 5853  fax : ( 512 ) 471 - 5073  internet : eronn @ mail . utexas . edu \",0\n\"Subject: re : visit to houston  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 02 / 13 / 2001  04 : 37 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  stinson gibner  02 / 13 / 2001 04 : 36 pm  to : nick bambos @ enron  cc :  subject : re : visit to houston  nick ,  friday , march 9 seems to be better for jim fallon . we are tentatively  setting meeting with him , paul racicot , and probably arshak sarkissian who is  heading the ip trading effort . let me know if you would like to give a  presentation so we can reserve a room and send invitations .  it will be fun to see you and giuseppe again . i am looking forward to your  visit .  regards ,  stinson  nick bambos on 02 / 09 / 2001 11 : 33 : 33 am  to : stinson . gibner @ enron . com  cc : gappy @ stanford . edu , cope @ csli . stanford . edu  subject : re : visit to houston  hi stinson ,  eventually , the team here ( giuseppe , eric , myself ) has converged to two  possible dates to propose for a visit :  1 ) friday , march 2  2 ) friday , march 9  how do these look on your side ?  we ' ll structure the agenda immediately after we fix the date .  i look forward to seeing you again .  best ,  nick  stinson . gibner @ enron . com wrote :  >  > nick ,  >  > i hope things are going well and you are not staying too busy . we should  > start planning for your next trip to houston , as i ' m sure your schedule  > will be getting full very soon . perhaps you could give the people in  > enron broadband an overview of the areas of interest within your research  > group . i ' m sure we could also benefit from you views of how the current  > technology is evolving .  >  > are there certain dates which would potentially work for you ? please let  > me know by email or give me a call at 713 853 4748 .  >  > looking forward to talking with you .  >  > - - stinson\",0\n\"Subject: re : prc feedback forms  gina ,  i shall be glad to speak with you . shirley crenshaw will call you to set up a meeting .  vince  from : gina corteselli / enron @ enronxgate on 04 / 16 / 2001 01 : 12 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : prc feedback forms  mr . kaminski :  i would like to try to get on your schedule for a few moments this week to discuss the draft prc 360 evaluation forms ( provided below for your info ) to ensure that the criteria and skills and behaviors we have used are adequate for your employee population . the generic forms that were presented at the prc committee meeting a week ago may best reflect commercial employees , and to some extent commercial support employees , and may not be entirely appropriate for employees in some of the specialized technical and technical areas . i would appreciate your input on this so that , if possible and time permitting , we can try to tailor the form to suit needs across the organization .  one simple solution may be to add a skills / behaviors block requesting evaluation and feedback on the employees specific job and performance , another solution would be to add job specific behaviors and descriptors to the list of those already developed ( second attachment below ) . i would welcome your thoughts and a few moments of your time to chat with you about this .  many thanks ,  gina corteselli  global performance management  713 853 - 3377  713 569 - 5589 ( mobile )\",0\n\"Subject: real options for mothballed plant  i ' m off for my xmas break , so happy holidays to you all !  steve\",0\n\"Subject: entouch newsletter  business highlights  enron industrial markets  enron industrial markets announced the signing of definitive agreements with huntco , inc . under which over a 15 - year period enron will provide inventory price risk management services and will eventually provide more than 600 , 000 tons per year of hot - rolled , cold - rolled and galvanized steel products to huntco steel . the agreements provide enron access to huntco ' s network of steel distribution centers nationwide . the agreements also provide for enron ' s acquisition of huntco ' s cold rolling and certain coil pickling operations in blytheville , arkansas .  these transactions with huntco have the potential to fundamentally change the way steel is bought and sold in the united states . it gives enron immediate access to physical steel and positions enron geographically to serve the steel industry in a variety of ways . in addition to providing physical products on both a spot and term basis , eim ' s goals for the steel industry include developing commodity risk management products , providing structured finance products and establishing the market - making capabilities that enron has brought to the natural gas , power and other commodity markets .  enron north america - upstream products  upstream products has partnered with duke energy field services ( defs ) to close a 20 - year ngl exchange and transportation deal with formosa hydrocarbons and williams energy field services to handle raw make product from the williams markham plant . formosa hydrocarbons is building a 40 , 000 bpd fractionator to handle this and other gulf coast ngl production . the accompanying pipeline will be known as the seabreeze pipeline system and will be constructed by defs . texas brine llc will provide ngl storage services for formosa hydrocarbons on this system . primary production for this system is coming from the boomvang nansen field in the deepwater gom and will be the first deepwater gom production to come onshore in texas .  upstream products has also worked to arrange a 20 - year transportation lease agreement on the dean pipeline ( owned by teppco ) for refinery grade propylene service to be utilized by formosa plastics . coupled with this transaction , enron clean fuels has entered into a propylene storage agreement with formosa plastics to utilize ecf ' s mt . belvieu storage facilities . in addition , enron global markets has been able to amend its current transportation agreement with teppco to prematurely terminate a take - or - pay obligation and realize additional transportation revenues from interim ngl production coming from the williams markham to be delivered to mt . belvieu .  upon close , upstream products was monetized out of its initial position by defs and retained a risk - free net profits position on the seabreeze pipeline going forward for an additional 20 , 000 - 40 , 000 bpd of excess capacity on the system .  ena west power  southwest power , an ena affiliate , signed a 222 mw 15 - year tolling agreement with allegheny energy supply for all of the output of southwest ' s las vegas expansion project , scheduled for completion in september , 2002 . with the tolling agreement done and construction underway , the project will now be marketed to qualified generators .  in the news  \"\" to truly understand enron ' s jeffrey skilling - the hypersmart , hyperconfident chief executive of what may now be the largest energy trading company on the planet - head to your local video store and check out that classic american cinema , wayne ' s world . at 15 , skilling helped launch a no - budget television station in aurora , illinois - the very thing that mike myers and dana carvey so famously spoofed on saturday night live and in two movies . the tv skit even begins with a sketch of a teenage cameraman , the role of the real - life skilling . \"\" - - - randall lane , worth magazine . may 2001 .  calgary , alberta - - enron canada has settled its lawsuit with ngx , canadian enerdata , om gruppen and richard zarzeczny , regarding the compilation and methodology for calculating the alberta natural gas price indices published by the canadian gas price reporter . by the terms of the settlement there will be a joint press release issued regarding the settlement , which is to be the only public communication regarding the matter unless agreed to by all parties . otherwise the settlement is confidential to the parties . accordingly , there is to be no formal or informal discussion with media , colleagues , competitors , counterparties or otherwise .  welcome  new hires  egm - salil pradhan , randy o ' conner , ricardo charvel , greg fields , ken newman , john ashman , rick cantrell , tim klaiber , trevor woods ,  eim - tim asterman , maxine leclaire , jerry newton , philip siewert , janamon johnson , darralyn briskey , theodore rogers ,  ena - rae meadows , tiffany winship , adrianne engler , kimberly yates , jackie verity ,  transfers ( to or within )  ena - christa winfrey , mario alonso , paul rizo - patron , nick ploitis , misti day , robert cothran , susan wilson , diane cutsforth , david owen  egm - mark friedman , john groves , deirdre mccaffrey , william windle  enrononline statistics  below are the latest figures for enrononline as of may 9 , 2001 .  * total life to date transactions > 963 , 575  * life to date notional value of transactions > $ 579 billion  nuggets & notes  reminder : brown bag lunch , thursday , may 17 at 11 : 30 am in 5 c 2 . the speaker is michael l . miller discussing principal investments .  \"\" historically , newsprint has been sold under strong relationships as a highly differentiated , branded product to \"\" very discriminating \"\" buyers at newspaper publishers . eim believed differently . by the end of march , eim had succeeded in closing on its 2 nd newsprint mill , making it the 7 th largest newsprint manufacturer in north america . remarkably , in just 2 months , eim ' s newsprint team has succeeded in closing $ 100 mm total notional value \"\" enron commodity style \"\" fixed price contracts with terms of 1 to 5 years ? . . and they said it wasn ' t a commodity . \"\"  rodney malcolm - vice president , forest products sales and marketing  travel tip of the week : book flights 7 days in advance . the cost savings can be considerable if you plan ahead - at least 7 days .  for example : houston to portland  less than 7 days : $ 1 , 652  7 day advance ticketing $ 324  congratulations to kimberly and eric thode , director of ena public relations . they are the proud parents of whitney marie , born on may 3 . she weighed 8 lbs . 8 oz .  congratulations to proud parents nettelton and louise kitchen , coo , enron americas . their son , scott william , was born on may 9 and weighed 9 lbs . 1 oz .  news from the global flash  enron closes major coal deal in germany  after almost six months of negotiations , enron ' s coal team has signed a contract with stadtwerke bremen to supply this major german municipality with coal until 2006 . under the deal structure , enron will deliver a total of 4 . 6 million tonnes of coal - equivalent to an overall contract volume of almost $ 200 million ( dm 440 million ) .  the agreement represents enron ' s first significant long - term coal supply deal in germany . the annual contractual volume amounts to around 3 % of total german coal imports and provides us with continuous volume flow in northern germany , enabling us to grow our position in the market .  parallel to this deal , enron also entered into a separate agreement with hms bergbau agentur , a company specialising in polish exports . under this agreement , hms will be the handling agent and a potential supplier of polish coal to us over the lifetime of the contract .  congratulations to the whole team involved : sven becker , manfred ungethum , cornelia luptowitsch , peter bradley , jez peters and michael schuh .  legal stuff  the information contained in this newsletter is confidential and proprietary to enron corp . and its subsidiaries . it is intended for internal use only and should not be disclosed .\",0\n\"Subject: michael sergeev ' s rotation  hi mike , as per our discussion i have managed to find a place for michael in  ebs ' d . c . office . it is likely that he will work for me on the ebs side but  will live in d . c . i will finalize that later . vince had mentioned that it  is okay with him as long as it is okay with you . so please double check with  vince on this .  i suggest the following transition :  start date in d . c . may 1 , 2000  from now till the start date , michael will slowly transition into my group  but make sure that your activities are transitioned into someone else . but i  would like to propose the may 1 , 2000 date as hard start so that michael will  have to start moving few days before that , etc .  regards ,  ravi .\",0\n\"Subject: merit and equity increases  norma ,  i am sending you an excel spreadsheet with proposed  merit and equity increases .  i have slightly exceeded the merit quota .  the equity increases address two issues : retention and  and an error in setting a salary at hiring ( i tend to be too stingy ) .  please , let me know if there are any questions .  i am forwarding a copy of the spreadsheet to my home address  so i can work on it tonight , if necessary .  vince\",0\n\"Subject: re :  thank you  vince j kaminski @ ect  03 / 27 / 2000 01 : 02 pm  to : tasha lair / hr / corp / enron @ enron  cc : vince j kaminski / hou / ect @ ect , grant masson / hou / ect @ ect  subject : re :  tasha ,  yes , i think li xiao deserves the bonus .  vince kaminski  tasha lair @ enron  03 / 21 / 2000 02 : 24 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject :  vince ,  linda vargo asked me because i am the administrator of employee referral  program to contact you on whether or not li xiao is eligible for a bonus on  his referral of alex huang . i have informed linda that the decision up to  you . if you feel that alex huang was hired as a result of li bringing him to  the attention of enron then the bonus is due . linda and yourself have  communicated via e - mail on this issue in early february and it appears from  that correspondence that li did encourage alex to e - mail his resume to you .  please advise as to whether or not you want to award the bonus .  thank you\",0\n\"Subject: hello all  update :  preparations for the upcoming texas finance festival iii are about complete  and i just wanted to update you on the hotel reservations information . you  will need to make your reservation before march 20 to be assured of getting  a room in our reserved block . also , for \"\" counting \"\" purposes i need  everyone ' s registration form completed . many of you ( and a lot of new  faces ) have already sent them in but some may not have , so . . .  lots of fun stuff is planned so come prepared for a very relaxing and  productive weekend !  john  - announcerev . doc  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: re : ganapathy ramesh  rick ,  the it person tanya would like to have dedicated to the mg effort is  ganapathy ramesh .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 07 / 11 / 2000  02 : 55 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  tanya tamarchenko  07 / 11 / 2000 02 : 41 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : ganapathy ramesh  vince ,  ramesh is he it guy , who can help us with mg var .  tanya .\",0\n\"Subject: re : enron open positions  maruti ,  what about september 8 , friday ?  vince  \"\" more \"\" on 08 / 25 / 2000 03 : 27 : 26 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : enron open positions  hello mr . kaminski ,  can we meet for a quick lunch again at your  convenience ? just to bring you up to date about my search for the right  opportunity . also i noticed in the risk magazine that enron investment  partners and aig have joined treasuryconnect as strategic partners to  capitalize on internet - based transaction execution of financial derivatives .  i would like to explore if i can be any help to hank finkenstaedt , the  director of enron investment partners .  please let me know what day and time might be  convenient for you .  thank you .  sincerely ,  maruti more  832 - 251 - 7267  mmore @ houston . rr . com  - - - - - original message - - - - -  from : more  to : vince j kaminski  date : monday , july 10 , 2000 11 : 28 am  subject : enron open positions  dear mr . kaminski :  i would like to explore the opportunity to join  enron investment partners . i understand that enron has $ 20 million fund set  up to finance start - ups , and gene humphreys and his assistant john godbold  are trying to attract minority - owned start - up firms . i also learned that  enron has plans to increase the size of this fund to $ 200 million . i can find  these opportunities for enron around the globe . given my background as a  chartered financial analyst , with hands - on experience in investment  management covering financial derivatives , fixed income , and equity , i can be  a valuable resource to do the due diligence , origination , valuation , and  monitoring of these start - ups . would you please help me arrange a meeting  with either gene humphreys , ted murphy , or may be ken lay ?  i am pasting below the job opportunities open at enron . i am also interested  in these positions and would like to meet with the hiring manager .  i will give you a call to follow up .  thank you .  sincerely ,  maruti more  832 - 251 - 7267  job 0000104282 details  manager / director  essential functions : candidates will be responsible for helping  facilitate the transaction approval process for domestic and international  investments . these investments include , but are not limited to , private  equity , project development , venture capital , and structured credits .  candidates will work with business developers and underwriters in  identifying , understanding , and documenting transaction risks . they will also  assist in preparing transaction approval documentation . in addition , they  will oversee the valuation , modeling , and simulation process for investments .  the primary focus is to identify and measure key risk factors from both a  quantitative and a qualitative perspective with an emphasis on fundamental  analysis . the candidate must be able to assist in management and training of  departmental staff and in formulation of investment valuation policies and  procedures .  essential requirements : ? strong interpersonal skills ?  understanding of transaction structuring and credit risk issues ?  understanding of finance and valuation methodologies . ? proficiency with  excel cash flow models ? experience with financial statement analysis ?  understanding of statistics and simulation techniques ( monte carlo ) .  preferred skills : na .  special characteristics : the ideal candidate will possess an  undergraduate degree in finance , accounting , or economics , and an mba .  relevant experience could include credit analysis or valuation / finance  experience . manager / director in the risk assessment department of a $ 20  billion energy company .  contact : please email resumes to corpjobsl @ enron . com , please  refer to job no . 104282 when responding .  job id 0000104282  department capital pricing / risk an  company corporate staff  risk assessment and control  location houston , tx  type  posting date 05 - jun - 00  to submit your resume for this position :  online enter your resume id : no resume id ? you can create a  resume on - line , deposit it in our database , and receive a resume id using our  resume builder .  your resume id will allow you to submit your resume  once , but route it to up to 20 open positions . enron does not process resumes  that are not sent in response to specific positions .  if you have an existing resume in electronic format ,  the resume builder allows you to cut and paste your whole resume .  fax our fax number is 1 - 888 - 588 - 7152 .  you must tell us which jobs you ' re interested in , or  we will not be able to process your resume . write on your resume ( or on a  separate page ) all of the jobs ids of the jobs you ' re interested in pursuing .  an equal opportunity and affirmative action employer  top of page copyright 1997 - 1999 enron corp . all rights  reserved . contact us .  job 0000104281 details  staff / spec / sr spec  essential functions : \"\" snapshot \"\" preparation - responsible for  preparation of quarterly asset \"\" snapshots \"\" which provides enron ' s senior  management with summarized operational and financial information on selected  merchant portfolio investments . responsibilities associated with preparation  of snapshots include : researching publicly traded companies , calculating key  financial data , updating and analyzing graphical summaries of performance ,  reviewing press releases for recent events data , updating stock prices from  bloomberg ? weekly underwriters report - full responsibility for updating and  distributing weekly underwriters ' report . involves regular interaction with  executive vice president , london office personnel , as well as several vice  presidents within underwriting group within rac . ? various projects - will be  utilized on special projects on an as needed basis  essential requirements : accounting / finance / economics degree with  0 - 4 years business experience . excellent computer skills - excel ,  powerpoint , bloomberg , word research skills and the ability to interact with  a variety of personnel and departments . excellent organization skills . self  starter , quick learner . must be team player . good writing skills with the  ability to concisely summarize operational and financial results .  preferred skills : na .  special characteristics : . entry level position with the  opportunity to gain familiarity with all of enron ' s portfolio assets . future  advancement in asset and portfolio management possible for candidate who  exhibits competence and creativity .  contact : please email resumes to enajobsl @ enron . com , please refer  to job no . 104281 when responding .  job id 0000104281  department due diligence / asset mgmt  company corporate staff  risk assessment and control  location houston , tx  type  posting date 05 - jun - 00  job 0000102789 details  sr specialist  essential functions : in this position candidates will model , run  monte - carlo simulations , evaluate capital investments . these investments will  cover a wide range . candidates will be responsible for the validation of  models as well as insuring the accuracy and integrity of the model and  underlying assumptions . the primary focus will be to provide an objective  valuation for an investment by identifying and measuring key risk factors  from both a quantitative as well as qualitative perspective . ? understanding  of valuation techniques applied to equity or structured financial products . ?  understanding of cash flow models and option pricing models . ? proficiency in  excel . ? understanding of project finance and risk mitigation techniques . ?  experience with financial statement analysis and pro forma statements . ?  understanding of statistics and application to financial analysis .  essential requirements : na .  preferred skills : ? understanding of simulation methodologies  such as montecarlo . ? exposure to statistical analysis software such as  crystal ball or @ risk . the ideal candidate will possess an undergraduate  degree in finance , accounting , or economics and have 2 to 3 years of  financial modeling experience and an mba / cpa .  special characteristics : na .  contact : please do not contact the hiring manager . please no  faxes . send resumes via e - mail to corpjobsl @ enron . com or mail to enron , attn :  tvasut - eb 3628 , 1400 smith st . , houston , tx 77002 . please refer to job #  102789  job id 0000102789  department capital pricing / risk an  company corporate staff  risk assessment and control  location houston , tx  type  posting date 17 - mar - 00  - attl . htm\",0\n\"Subject: meeting to discuss presentation materials  please respond to hello vince and kenneth ,  my teammates and i would like to schedule a time with you to discuss our  presentation materials . we would prefer to meet with you sometime on  thursday so that we can have the weekend to include any changes that you may  suggest , but we will accommodate your schedules .  thank you for all of your help ,  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  charles womack jr .  mba candidate 2002  rice university  jesse h . jones graduate school of management  cwomack @ rice . edu  cell : 281 - 413 - 8147\",0\n\"Subject: re : rotation information  martin , i am working right here with jim irvine and discussed your rotation .  you will report to me , with ' client ' reporting role to jim where you will do  most of the work . you will remain in houston working on the 19 th floor for  now until we find you a place on either 44 th or 45 th . jim irvine will be  asking john griebling for network planning office space in houston . you will  get an office in that area . jim will work from portland but will hold an  office in houston . until the office space on ebs floors happens , you need to  remain on the 19 th . we will allocate you to jim ' s & john griebling ' s group  full time . you will have ebs computers , cell phone , etc . to be fully  connected on the ebs side . you will work initially on the trffic engineering  side to support day - to - day fire - fighting like analysis . i will supervise you  with repect to guidance on what to do etc . . . jim will direct what will get  done . both jim and i will support traffic engineering work but jim is  ultimately responsible for deliverables .  our technical operational research specialists ( samer , chonawee , and two  others from stanford & mit ) will focus on next generation algorithms for ebs .  such an algorithm is currently being specified . this will depend on how the  trading market will develop . we know that existing off - shelf codes won ' t be  sufficient . the development period for these algorithms will anywhere from 3  months to 9 months depending on the complexity . this is in - line with when ebs  anticipates trade volumes to really pickup . i hope this helps .  regards ,  ravi .  martin . lin @ enron . com  02 / 23 / 00 02 : 06 pm  to : ravi thuraisingham / enron communications @ enron communications  cc :  subject : rotation information  ravi ,  the associate program has a procedure that requires information on new  rotations . i just wanted to clarify some details of my rotation to ebs , esp  given the retained ties to research . will jim irvine be my supervisor with  ebs  being the company billed for my time ? that is , will my connection to research  be informal and understood , rather than having some actual reporting function ?  this is with respect to the a / a pool .  thanks ,  martin\",0\n\"Subject: request submitted : access request for mark . breese @ enron . com  you have received this email because you are listed as an alternate data  approver . please click  approval to review and act upon this request .  request id : 000000000005820  approver : stinson . gibner @ enron . com  request create date : 10 / 26 / 00 2 : 27 : 45 pm  requested for : mark . breese @ enron . com  resource name : \\ \\ enehou \\ houston \\ common \\ research - [ read / write ]  resource type : directory\",0\n\"Subject: re : lacima energy and weather derivatives courses by clewlow and  strickland  julie ,  a few issues .  1 . i would like to register 2 members of my group for both courses ( in  houston ) :  a . paulo issler  b . alex huang  i shall attend the course on weather only .  2 . i have started the process to issue a check for 5 , 000 aud for lacima .  shirley sent you an update on this . the 2 nd installment comes from the budget  of our  office in australia . i shall talk to paul quilkey today about it . please , let  me know if there is any delay .  3 . the book will be used as textbook for the class i shall be teaching at  rice .  rice univ bookshop is placing an order .  4 . i would like to order 50 copies for my group . what is the ebst  way to place the order ? can we pay in us dollars ?  vince  \"\" julie \"\" on 11 / 12 / 2000 02 : 05 : 40 pm  to :  cc :  subject : lacima energy and weather derivatives courses by clewlow and  strickland  please find attached information ? for our next two courses and workshops : ?  energy derivatives : ? pricing and risk management and  weather derivatives , which will be conducted in houston and in london in feb  / march 2001 . ? instructors will be dr les clewlow and dr chris strickland .  ?  because the course requires intense interaction , the courses will be ? limited  to a maximum of 15 people , so early registration is encouraged .  ?  if you require further information , or would like to register for either or  both ? courses , please contact me via this email or our web site , ? www .  lacimagroup . com  - energy . pdf  - weather . pdf\",0\n\"Subject: re : starting date : jan 8 th , 2001  vince :  fyi - wichai is joining on jan 8 th . osman will take care of him until my  return .  krishna .  - - - - - - - - - - - - - - - - - - - - - - forwarded by pinnamaneni krishnarao / hou / ect on  12 / 19 / 2000 03 : 34 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  pinnamaneni krishnarao  12 / 19 / 2000 02 : 54 pm  to : osman sezgen / hou / ees @ ees  cc :  subject : re : starting date : jan 8 th , 2001  osman :  can you request the desk & computer for wichai ? dennis has knows about  wichai coming in january .  thanks ,  krishan .  - - - - - - - - - - - - - - - - - - - - - - forwarded by pinnamaneni krishnarao / hou / ect on  12 / 19 / 2000 02 : 52 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  pinnamaneni krishnarao  12 / 19 / 2000 02 : 52 pm  to : \"\" wichai narongwanich \"\" @ enron  cc :  subject : re : starting date : jan 8 th , 2001  dear wichai :  good to hear from you and glad you will be here soon . i will be on vacation  in january . when i am gone you will report to osman sezgen who you have met  when you were here in houston . please get in touch with him when you come  here . his phone number is ( 713 ) 853 - 5485 . if you have any problems , contact  our assistant shirley crenshaw at ( 713 ) 853 - 5290 .  best wishes ,  krishna .  \"\" wichai narongwanich \"\" on 12 / 19 / 2000 01 : 51 : 40 pm  to :  cc :  subject : starting date : jan 8 th , 2001  dear dr . krishna ,  as mentioned during the interviewing process , i plan to start working under  your supervision on earlier january . i ' m now ready to start working with  your on jan 8 th , 2001 . i have been in contact with the human resource  department to set up the working permit and relocation . i have received the  optional practical training valid from jan 8 th , 2001 to jan 7 th , 2002 . i  will go down to houston to look for an apartment this weekend .  by the way , i heard from seksan , currently working under your supervision ,  that you will be on vacation soon and will come back to work again late  january . therefore , i would like to whether who should i report with on my  starting date ? or do you have any recommendation for me to prepare for the  new work ? please , advise .  best regards ,  wichai narongwanich  - - - - - original message - - - - -  from : pinnamaneni . krishnarao @ enron . com  sent : tuesday , june 20 , 2000 1 : 21 pm  to : wichai @ engin . umich . edu  subject : re : resume for sr . specialist / manager - research position  dear mr . narongwanich :  you have an impressive background . what is your availability in terms  of timing ? we are looking for somebody to join our group fairly soon ( weeks  rather than months ) .  thank you ,  p . v . krishnarao  \"\" wichai narongwanich \"\" on 06 / 19 / 2000 09 : 17 : 35 am  to :  cc :  subject : resume for sr . specialist / manager - research position  dear mr . krishnarao ,  i received information about this job opportunity describe below by boo  lee ,  an alumni of financial engineering program here in the university of  michigan . the position is very interesting and relevant to my background  ( pursuing ph . d . operations research with real options interest , completed  mse financial engineering , mse industrial and operations engineering , have  been working on ms - excel with vba for 4 years ) i attach my resume in  ms - word  document in this mail . if you need further information , please don ' t  hesitate to contact me .  sincerely ,  wichai narongwanich  wichai narongwanich  ph . d . candidate , ioe dept .  research assistant , meam dept .  university of michigan  sr . specialist / manager - research  position description : fulltime position as a member of the research  group at  enron supporting commodity risk management activities in enron energy  services . the selected person will be working closely with the deal makers  and risk - managers to develop and support quantitative models for pricing  and risk management .  responsibilities : responsibilities include analyzing data and developing  models for valuing commodity ( or commodity - related ) contracts , options  embedded in or real options associated with long term energy management  contracts , forecasting customer loads , and managing risks associated with  energy contracts .  qualifications & skills :  masters / doctorate degree in a quantitative field ( mathematics , statistics ,  operations research , econometrics / finance ) with experience or course work  in  statistics , data analysis and mathematical modeling . must have excellent  computer skills and be able to function in a dynamic , unstructured  environment .  coursework in statistics / econometrics and basic finance preferred .  proficiency in excel including vba .  familiarity with access & visual basic .  knowledge of risk management or energy markets a plus .  place of work : houston  contact : email resumes to pkrishn @ enron . com ( p . v . krishnarao )  ( see attached file : resume . doc )\",0\n\"Subject: re : enron weather research  good afternoon mike :  i certainly am interested in determining if there may be a potential fit  there at enron . i am very enthusiastic to apply my finance and meteorology  backgrounds in a market - based environment that is driven to achieve  unprecedented efficiencies . attached are two documents : 1 ) a  business - focused resume , and 2 ) an abbreviated meteorology cv .  graduate meteorology coursework included advanced atmospheric dynamics i and  ii , advanced physical meteorology , boundary layer modeling , numerical  modeling , research methods in meteorology , and turbulence .  i will look forward to hearing from you .  sincerely ,  greg hunt  - - - - - original message - - - - -  from :  to :  cc : ; ;  sent : friday , april 27 , 2001 9 : 12 am  subject : enron weather research  >  > greg ,  >  > hello , and by way of introduction , we were forwarded your e - mail address  by  > heather thorne .  >  > i understand you have an m . s . in meteorology as well as an m . b . a . in  > finance , and have done some research at livermore .  >  > i ' d be happy to learn more about your activities , and , if you are  > interested , to see if there may be a potential fit here at enron .  >  > can you e - mail your resume with a description of your coursework and  > research activities ?  >  > looking forward to hearing from you ,  >  > mike roberts  > vice president - research  >  - greg hunt _ resume _ 4 - 27 - 01 . doc  - greg hunt _ cv _ meteorology _ 4 - 27 - 01 . doc\",0\n\"Subject: re : message from samer takriti  samer ,  i am glad this problem has been taken care of .  hope everything is going well for you .  i shall get in touch with you before coming to new york city .  happy holidays an the best of luck .  vince  shirley crenshaw  12 / 11 / 2000 08 : 13 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : message from samer takriti  vince :  samer asked me to forward this to you ( he was using the wrong email address ) .  i will forward him the correct address .  shirley  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 12 / 11 / 2000  08 : 11 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" samer takriti \"\" on 12 / 08 / 2000 10 : 01 : 49 am  to : shirley . crenshaw @ enron . com  cc :  subject :  shirley ,  my message to vince keeps coming back . could you please forward it to him ?  thanks .  - samer  - - - - - - - - - - - - - - - - - - - - - - forwarded by samer takriti / watson / ibm on 12 / 08 / 2000  11 : 01 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  delivery failure report  your  document :  was not vince . kaminsky @ enron . com  delivered to  :  because : 550 5 . 1 . 1 . . . user unknown  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  to :  cc :  from :  date : 12 / 07 / 2000 05 : 52 : 45 pm  subject :  vince ,  how are you ? i apologize for not contacting you earlier . we bought a small  house and it is consuming all of our time . we also adopted a little puppy  which proved to be a lots of work . believe it or not , i have not had the  chance to visit ny city yet ( i was there once briefly to drive to the  airport ) .  i just received the check for the airline ticket . thank you for taking care  of this issue quickly . shirley was , once again , superb . take care . hope you  have great holidays . if you happen to be in the ny area , please let me  know . perhaps we can have lunch or a drink together .  - samer\",0\n\"Subject: mit student ' s thesis writeups  hi vince , krishna & i talked to this student while were at sycamore  networks . he appears to be very qualified for our ebs analytics group .  sycamore has a professional services team that provides consulting on network  optimization modeling , etc . they do this to push their products , etc . . . . one  of the professional in that group highly recommended this student . we are  currently working with the same professional at sycamore to perform our  intial network design analysis ( since the deadline was today ! ) . i have  arranged for the mit student ' s visit to houston along with the two standford  students this month . i have handed over the task of arranging such visits to  elisabeth grant . she will arrange everything and charge our rc so that we can  allocate to john griebling later . stinson and i think that is the most  effective way of doing this .  regards ,  ravi .  - - - - - forwarded by ravi thuraisingham / enron communications on 02 / 07 / 00 01 : 16  pm - - - - -  salal @ mit . edu  02 / 04 / 00 08 : 33 am  to : pkrishan @ enron . com  cc : ravi thuraisingham / enron communications @ enron communications ,  brett . leida @ sycamore . net  subject : writeups  hi krishan , ravi ,  i apologize for the delay in mailing the writeups - - some unforeseen  complications completely shot the last 1 - 1 / 2 day . i am attaching pdf  versions of :  1 . the first two chapters of my thesis , which should help  get a sense of what we are trying to do .  2 . two more technical modeling writeups for services i am  attempting to model .  the writeups are , as i mentioned before , works in progress , and  incomplete , and therefore i apologize in advance for confusions  that might arise . i also request that you not circulate these widely  for obvious reasons .  thanks very much ,  salal  salal humair  massachvsetts institvte of technology  operations research center  rooms e 40 - 130 , 5 - 332 a  x 3 - 3014 , x 5 - 9727  - expexp . pdf  - fedex . pdf  - thesis . pdf\",0\n\"Subject: resume of phil roan , koch weather desk  shirley ,  phil roan , the quantitative analyst from koch ' s weather derivatives group  will be here on the afternoon of friday june 16 , beginning say , at 1 : 30 or  2 : 00 . vince asked me to ask you to put a set of interviews together ( as i  understand , vince himself will be unavailable that day ) .  mark tawney should see him ; someone from weather marketing and / or  structuring should see him , e . g . gary taylor and / or michael nguyen ; some more  people from research should grill him on technical and meteorology issues ,  e . g . vasant and / or zimin as well as mike roberts or someone on his team . phil  has only been a \"\" quant \"\" since the departure of koch ' s previous weather quant  in february ; before that he was koch ' s weather \"\" risk manager \"\" . i am still not  sure what the distinction means , but we do need to find out how much he knows  about option pricing and meteorology . even though his expressed desire is to  focus on weather derivatives , we should also assess how useful he would be  from research group ' s perspective , since research will likely be his official  home .  finally , jere overdyke and / or someone else from his group ( george carrick ,  if available ) should also get a chance to meet with him . i ' ve already spoken  with phil , but i ' d like to sit in with either vasant or zimin or mike when  they interview him , since i wasn ' t able to ask any technical questions .  if i ' m counting correctly , that should amount to five interview sessions ,  perhaps less if we interview in groups of two . phil ' s resume is enclosed  below .  joe  p . s . i will also forward this to jason sokolov . he will let you know if any  people from rac would also like to meet with him .  - - - - - - - - - - - - - - - - - - - - - - forwarded by joseph hrgovcic / hou / ect on 06 / 07 / 2000  08 : 40 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  to : vince j kaminski / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , joseph  hrgovcic / hou / ect @ ect , stinson gibner / hou / ect @ ect  cc :  subject : resume of phil roan , koch weather desk  - - - - - - - - - - - - - - - - - - - - - - forwarded by jason sokolov / hou / ect on 06 / 05 / 2000 01 : 54  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" roan , philip \"\" on 06 / 05 / 2000 08 : 33 : 00 am  to : \"\" jason sokolov ( e - mail ) \"\"  cc :  subject :  jason ,  here ' s the attachment we discussed . i ' ll call you this afternoon .  phil roan  roanp @ kochind . com  ( 713 ) 544 - 7469  > - - - - - original message - - - - -  > from : proan @ mindspring . com [ smtp : proan @ mindspring . com ]  > sent : sunday , june 04 , 2000 8 : 07 pm  > to : pr @ work  > subject :  >  > >  - philip f roan . doc\",0\n\"Subject: year end 2000 performance feedback  note : you will receive this message each time you are selected as a reviewer .  you have been selected to participate in the year end 2000 performance  management process by providing meaningful feedback on specific employee ( s ) .  your feedback plays an important role in the process , and your participation  is critical to the success of enron ' s performance management goals .  to complete requests for feedback , access pep at http : / / pep . corp . enron . com  and select perform review under performance review services . you may begin  providing feedback immediately and are requested to have all feedback forms  completed by friday , november 17 , 2000 .  if you have any questions regarding pep or your responsibility in the  process , please contact the pep help desk at :  houston : 1 . 713 . 853 . 4777 , option 4  london : 44 . 207 . 783 . 4040 , option 4  email : perfmgmt @ enron . com  thank you for your participation in this important process .  the following is a cumulative list of employee feedback requests with a  status of \"\" open . \"\" once you have submitted or declined an employee ' s request  for feedback , their name will no longer appear on this list .  review group : enron  feedback due date : nov 17 , 2000  employee name supervisor name date selected  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  andrews , naveen c rudi c zipter oct 31 , 2000  baxter , ashley david davies nov 02 , 2000  campos , hector o peyton s gibner nov 06 , 2000  carson , richard l richard b buy oct 30 , 2000  crenshaw , shirley j wincenty j kaminski oct 26 , 2000  gandy , kristin h celeste c roberts nov 01 , 2000  gorny , vladimir theodore r murphy ii nov 02 , 2000  kindall , kevin vasant shanbhogue oct 30 , 2000  lamas vieira pinto , rodrigo david port oct 31 , 2000  raymond , maureen j wincenty j kaminski nov 02 , 2000  supatgiat , chonawee peyton s gibner oct 27 , 2000  tamarchenko , tanya v vasant shanbhogue oct 26 , 2000  villarreal , norma e sheila h walton oct 26 , 2000  walton , sheila h david oxley oct 27 , 2000  yaman , sevil vasant shanbhogue oct 27 , 2000  yuan , ding richard l carson oct 31 , 2000\",0\n\"Subject: re : resume of carla di castro  vince ,  we have many associates that we have to place within business units .  thereafter , if there are additional hiring needs , we will consider her  resume .  regards ,  shannon  vince j kaminski  03 / 16 / 2000 05 : 32 pm  to : shannon rodgers / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : resume of carla di castro  shannon ,  i realize that the program is full . if i find a group interested in her ,  would you consider re - inviting her ?  vince  shannon rodgers  03 / 16 / 2000 01 : 52 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : resume of carla di castro  vince ,  thank you for forwarding the resume of carla di castro . currently , our  summer associate internship program is full . i have responded to carla to  inform her of the program ' s status .  regards ,  shannon\",0\n\"Subject: acceptance of offer  sir ,  i have decided to accept your offer of employment here at enron . please let  me know how i can help with the \"\" hiring - on \"\" process . may i ask what is the  effective hire date ? that information will help me when i switch over from  prostaff .  thank you for this wonderful opportunity !  sincerely ,  sam smith\",0\n\"Subject: re : lunch with it and credit  tanya ,  yes , we were talking about wednesday . my mistake .  wednesday , april 19 works for me . let ' s do it then .  vince  tanya tamarchenko  04 / 10 / 2000 02 : 13 pm  to : shirley crenshaw / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : lunch with it and credit  shirley ,  here is the list of people who is going to attend this lunch :  credit : bill bradford , tanya rohauer , debbie bracket ( 3 ) ;  research : vince kaminski , grant masson , vincent tang , tanya tamarchenko ( 4 ) ;  it : jonathan le , ganapathy ramesh , winston jia , virendra patel , andrew  champion  ( and may be a few more , jonathan promised to get back with me with the  headcount ) ;  risk control : rudi zipter , ted murphy ( 2 ) .  i understand that we were going to go not on 14 th , but next week .  vince : would you like to do it on wednesday , april 19 , or friday , april 21 ?  shirley , can you , please , make a reservation after vince ' s reply ?  thank you ,  tanya .  vince j kaminski  04 / 05 / 2000 02 : 51 pm  to : tanya tamarchenko / hou / ect @ ect  cc : shirley crenshaw / hou / ect @ ect , vince j kaminski / hou / ect @ ect  subject : lunch with it and credit  tanya ,  can you coordinate , in my absence , the lunch with it  and credit .  we need the body count and reservation at the restaurant for the 14 th .  vince\",0\n\"Subject: zero curve generator for uk gilts  anjam ,  here is the model for fitting the term structure of uk gilts .  the basic idea is as follows :  dirty price _ { ith gilt } = sum _ { j } c _ { i } / 2 * discount factor ( t _ { j , i } ) +  100 * discount factor ( t _ { ni , i }  using a five parameters analytical form for the discount factors , and  minimizing the sum of  absolute errors , i can derive a smooth zero curve . the model needs an  initial guess  for the parameters , this may require some experience . the log file can help  you to see  how well the optimization works .  let me know if you have any questions .  zimin\",0\n\"Subject: re : nick bambos  sounds great . let me know how i can help .  tom  vince j kaminski @ ect  02 / 28 / 00 11 : 42 am  to : thomas d gros / hou / ect @ ect  cc : ravi thuraisingham / enron communications @ enron communications , vince j  kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect  subject : nick bambos  tom ,  i got sick and had to reschedule the meeting with nick bambos .  i shall meet him on saturday this week . i shall talk to him about the  following :  1 . financing research projects by graduate students ( $ 100 k per year , spread  over several projects )  2 . inviting nick to visit enron  3 . i can mention the possibility of nick consulting for us . given his status ,  involvement in the internet 2 project ,  and views that closely parallel enron ' s vision , it makes sense to have him  working for us . he could  be a very effective voice supporting our initiatives .  please , let me know what you think .  vince\",0\n\"Subject: stephen bennett  vince , for your use as per our discussions  - - - mike  - - - - - - - - - - - - - - - - - - - - - - forwarded by mike a roberts / hou / ect on 12 / 09 / 2000  10 : 32 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : mike a roberts 12 / 09 / 2000 10 : 33 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : stephen bennett  stephen bennett , professional meteorologist , was hired into the research  group in september of this year as a specialist based on salary alignment  criteria . in retrospect , and upon review , he should have been hired on as a  senior specialist .  after coming on board . it rapidly became apparent that stephen was clearly an  \"\" under hire . \"\" he is well - deserving of an immediate promotion ( really more of  a correction ) and pay raise , to be made retroactive at least to the lst of  this month . this memo outlines the circumstances surrounding this hiring  error and provides detailed justifications for this retroactive \"\" promotion . \"\"  at the time of the interview process , there was no position in enron  designated as \"\" professional meteorologist . \"\" in fact , the most recent similar  hire prior to that date was jose marquez , also a professional meteorologist ,  who was hired in , based on salary alignment criteria , as a manager . while  functionally , both these men are meteorologists , enron has no such job  classification . compounded by the urgency in bringing on additional  professional expertise in short time order , it was difficult to peg the  proper enron classification appropriate for this new position . this original  uncertainty and resulting misplacement of stephen into the specialist  category , rather than the senior specialist category , needs to be corrected  at this time .  although a \"\" new - hire \"\" to enron , stephen bennett has extensive work  experience . he has worked as a professional meteorologist at both the  weather services corporation in boston and at the weather channel in  atlanta . he came to enron well - referenced by both those organizations ,  needing no further training and only minimal supervision .  once aboard here in houston , stephen immediately demonstrated the core enron  values with our unique sense of urgency . after only a week , he assumed  responsibilities normally reserved for someone actually at even a manager  level - he was assigned and fully took over the critical afternoon weather  briefings to the gas traders . this includes analysis and report preparation  as well as presentation . also in the presentation arena , he now regularly  briefs various desks in the morning and throughout the day . stephen is a  master of communication and particularly adept at conveying what through  other messengers might otherwise seem confusing or ambiguous .  stephen has also demonstrated an unusually high level of self - initiative . he  designed , implemented , and now maintains several sub - sites on the research  web page which he tailored to various customers - in specific : the weather  derivatives team , the agricultural team , and most recently , the crude and  liquids team . i have recently assigned stephen to spearhead our conversion  and major upgrade of this web page .  these above described accomplishments are above and beyond stephen \u0001 , s regular  duties which include starting work at 5 am daily , reliably and without fail ,  to assemble and prepare our trader \u0001 , s weather report . recently , with the  advent of extended hours for both nymex and enrononline , stephen voluntarily  on his own accord , assists in our new sunday weather support effort . as his  supervisor , fully cognizant of his already standard 50 + hour work week , i do  not solicit , but readily accept , this above and beyond expectations  assistance .  in review , the circumstance which resulted in this under hire condition was  enron \u0001 , s immediate need for a non - standard , fairly unique professional - a  meteorologist , coupled with stephen \u0001 , s desire to work for our company in spite  of the absence of a hierarchy which included the exact entitled professional  title reflecting his chosen career path . . once hired , stephen has clearly  demonstrated through contribution and performance that he is well - deserving  of this immediate and retroactive promotion .\",0\n\"Subject: re : other matters  kate wagner is setting up a happy hr . for him on friday . i will let you know  details . also , i think andrea is having a brunch on sunday .  mr  vince j kaminski  04 / 27 / 2000 07 : 22 am  to : mark ruane / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : other matters  mark ,  i called rick to let him know . it ' s not an interview yet . aram is coming for  a  wedding but i think he wants to explore the opportunity of coming back  to enron . the conversation may lead to an interview  at some point .  he will talk to andrea as well .  do you plan to organize something for aram ?  i would be glad to join .  vince  from : mark ruane  04 / 26 / 2000 05 : 53 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : other matters  i heard that you were going to be interviewing aram ? what ' s the job ?  mark\",0\n\"Subject: re : pending approval for ibuyit request for wincenty ( vince )  kaminski : eva : remedy 412144  raul ,  raul ,  vince kaminiski is requesting acces to the technical view for catalog along with the ibuyit approval role . this is pending your approval . please send your response to sap security .  thanks !  shirley crenshaw @ ect  04 / 19 / 2001 03 : 01 pm  to : sapsecurity @ enron . com  cc : vince j kaminski / hou / ect @ ect  subject : ibuyit form  attached please find the completed form for vince kaminski , managing  director , research group .  he will be approving all purchases for cost center 107043 .  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 19 / 2001 02 : 58 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : debbie skinner / enron @ enronxgate on 04 / 19 / 2001 02 : 52 pm  to : shirley crenshaw / houston / eott @ eott , shirley crenshaw / hou / ect @ ect  cc :  subject : ibuyit form  hi shirley  there were two shirleys , so sending to both  isc help desk\",0\n\"Subject: re : punit rawal ' s interview with enron  kim :  the interviews conducted on february 2 are just exploratory interviews to  see where punit might fit within enron . vince thought he might fit in john ' s  group .  the title and $ $ amount will not be determined until it is decided where he  should be ( if at all ) . if john is interested after the interview , then he and  vince can get together to discuss $ $ and title .  if you or john have any other questions , please let me know .  thanks !  shirley  3 - 5290  to : shirley crenshaw / hou / ect @ ect  cc :  subject : re : punit rawal ' s interview with enron  shirley ,  it is to my understand that vince is bringing in punit for a day of  interviews . john has agreed to meet with him on february 2 .  please inform vince and have vince get with john on what his title / $ $ will be .  thanks  k  kim hillis  enron americas  office of the chairman  phone : 713 - 853 - 0681  fax : 713 - 646 - 3227  shirley crenshaw  12 / 21 / 2000 11 : 03 am  to : kimberly hillis / hou / ect @ ect  cc :  subject : punit rawal ' s interview with enron  kim :  punit is a carnegie mellon student that will be graduating with an ms in  computational finance in may 2001 . several of our guys interviewed him  at carnegie mellon recently and were very impressed . vince says that he  is definately a trading candidate .  would john be interested in interviewing him ? i am attaching his resume  for you to look over and then let me know if john would be interested .  thanks !  have a merry christmas !  shirley  - punit + rawal + newresume . doc\",0\n\"Subject: re : real options  thanks vince . paul q and raymond y will also attend the call .  regards  paul  vince j kaminski @ ect  02 / 04 / 2001 11 : 16 pm  to : paul smith / enron _ development @ enron _ development  cc : stinson gibner / hou / ect @ ect , vince j kaminski / hou / ect @ ect , paul  quilkey / enron _ development @ enron _ development , raymond  yeow / enron _ development @ enron _ development  subject : re : real options  paul ,  we have done a lot of work in this area . i shall call you later  today ( monday my time ) , tuesday morning your time with  some recommendations .  vince  p . s . shirley , please send a real options binder to paul .  vince  from : paul smith @ enron _ development on 03 / 30 / 2001 08 : 42 am zel 0  to : vince j kaminski @ ect  cc : paul quilkey / enron _ development @ enron _ development , raymond  yeow / enron _ development @ enron _ development  subject : real options  vince ,  the sydney office is currently evaluating a proposal that involves an option  to participate in building a wind farm . should this proceed , we would like to  mark this option \"\" to market \"\" .  have the research group completed any work on methods for booking and  remarking real options ? alternatively , do you have any suggestions as to the  best way to value , and book , real options fairly ?  regards  paul smith\",0\n\"Subject: re : mit / aa lab - next meeting  amy ,  i think that rick causey wants simply to obtain more information to make a  reasonable decision .  we should cancel the meeting for the time being and let rick obtain  clarification of some issues from aa . i would agree that aa came up with a  rather  vague concept of what they want to accomplish .  vince  to : vince j kaminski / hou / ect @ ect  cc :  subject : mit / aa lab - next meeting  vince : can you shed any light on this ? i ' m confused ( really confused ) . . . .  do you think this means the decision to go ahead / not is going to be made only  by kean , buy and koening ? and  do you think this means that we shouldn ' t meet on thurs ?  personally , i think enron really needs to meet on thurs to buckle down and  start developing some idea of needs / wants with regard to the outcomes of the  lab .  from a practical perspective , if we can ' t get what we want from this whole  thing , rick ' s issue of \"\" where aa is going with this \"\" is really a mute point ,  isn ' t it ? so a working meeting might really be worth the effort .  would appreciate your insight and advice .  thanks .  amy  - - - - - - - - - - - - - - - - - - - - - - forwarded by amy oberg / hou / ees on 08 / 07 / 2000 09 : 15 am  - - - - - - - - - - - - - - - - - - - - - - - - - - -  richard causey @ enron  08 / 07 / 2000 09 : 07 am  to : amy oberg / hou / ees @ ees  cc :  subject : re : mit / aa new value research lab  i have discussed with aa and they are following up . if i am the agenda , i  would cancel the meeting and when i hear from aa , i will e mail everyone . i  would suggest we not hold a meeting until kean , buy , koenig and i can all  come so that we can truly move forward ( or decide not to ) . let me know what  you decide . thanks . rick  to : richard causey / corp / enron @ enron  cc :  subject : mit / aa new value research lab  rick : just wanted to highlight that you are the agenda for this meeting ( see  initial notice , agenda ) . let me know if there ' s anything i can do for you .  amy  - - - - - - - - - - - - - - - - - - - - - - forwarded by amy oberg / hou / ees on 08 / 07 / 2000 08 : 19 am  - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron energy services  from : carol moffett 08 / 03 / 2000 04 : 21 pm  phone no : 713 - 853 - 6658 phone  888 - 782 - 3518 pager  eb 613 b  to : richard causey / corp / enron @ enron , marie hejka / corp / enron @ enron , steven j  kean / hou / ees @ ees , amy oberg / hou / ees @ ees , mark palmer / corp / enron @ enron , mark  ruane / hou / ect @ ect , vince j kaminski / hou / ect @ ect , rick buy / hou / ect @ ect , mark  koenig / corp / enron @ enron  cc : sharron westbrook / corp / enron @ enron , christie connell / corp / enron @ enron ,  maureen mcvicker / hou / ees @ ees , laura gutierrez / hou / ect @ ect , shirley  crenshaw / hou / ect @ ect , karen k heathman / hou / ect @ ect , joannie  williamson / corp / enron @ enron  subject : meeting confirmed : mit / aa new value research lab  this will confirm the meeting requested below . please note , all invitees are  not available , but the confirmed meeting time is the best time for most of  the invitees .  date : thursday - august 10  time : 11 : 00 a to noon  place : conference room 4741  confirmed attendees : rick causey  marie hejka  steve kean  amy oberg  mark palmer  mark ruane  thanks for your help , everyone .  - - - - - - - - - - - - - - - - - - - - - - forwarded by carol moffett / hou / ees on 08 / 03 / 2000 04 : 03  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron energy services  from : carol moffett 08 / 02 / 2000 03 : 44 pm  phone no : 713 - 853 - 6658 phone  888 - 782 - 3518 pager  eb 613 b  to : ginger dernehl / hou / ees @ ees , shirley crenshaw / hou / ect @ ect , karen k  heathman / hou / ect @ ect , sharron westbrook / corp / enron @ enron , laura  gutierrez / hou / ect @ ect , laura valencia / corp / enron @ enron , patty  pennington / enron communications @ enron communications  cc : steven j kean / hou / ees @ ees , vince j kaminski / hou / ect @ ect , rick  buy / hou / ect @ ect , richard causey / corp / enron @ enron , mark ruane / hou / ect @ ect ,  mark koenig / corp / enron @ enron , mark palmer / corp / enron @ enron , amy  oberg / hou / ees @ ees , marie hejka / corp / enron @ enron  subject : meeting request : mit / aa new value research lab  good afternoon . i am assisting amy oberg with setting up a meeting among the  individuals listed below . would you be so kind as to review their calendars  and let me know if they are available during any of the suggested meeting  times .  meeting topic : mit / aa new value research lab  meeting purpose : follow up to discussion from 8 / 1 / 00 ; rick causey to brief  group on  conversations w / aa regarding \"\" where they intend to go with this effort \"\" .  attendees : steve kean  vince kaminski  rick buy  rick causey  mark ruane  mark koenig  mark palmer  amy oberg  marie hejka  suggested meeting dates and times :  thursday - august 10 anytime between 8 : 00 a and 10 : 00 a  thursday - august 10 11 : 00 to noon  friday - august 11 anytime between 8 : 00 a and 9 : 30 a  friday - august 11 1 : 00 p to 2 : 00 p  thank you .\",0\n\"Subject: ibuyit form  attached please find the completed form for vince kaminski , managing  director , research group .  he will be approving all purchases for cost center 107043 .  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 19 / 2001 02 : 58 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : debbie skinner / enron @ enronxgate on 04 / 19 / 2001 02 : 52 pm  to : shirley crenshaw / houston / eott @ eott , shirley crenshaw / hou / ect @ ect  cc :  subject : ibuyit form  hi shirley  there were two shirleys , so sending to both  isc help desk\",0\n\"Subject: re : confirm participation at real options conference at cambridge  u . - urgent  vince  can you please check with steve leppard and ask him to confirm , and send to  me his position and title of his talk ( if different from yours ) ?  thanks very much again  lenos  at 05 : 14 _ _ 04 / 19 / 00 - 0500 , you wrote :  >  >  > lenos ,  >  > my busy schedule does not allow me to attend .  >  > i would like , however , to recommend my colleague who works  > in london , steve leppard .  > he can make a very interesting and original presentation on real options .  > please , let me know what you think .  >  > vince  >  >  >  >  >  >  > lenos trigeorgis on 04 / 18 / 2000 09 : 29 : 18 pm  >  > to : lenos . trigeorgis @ rogroup . com  > cc : ( bcc : vince j kaminski / hou / ect )  > subject : confirm participation at real options conference at cambridge  > u . - urgent  >  >  >  > the attached file contains the tentative program for two back - to - back real  > options conferences ( a professional one for july 5 - 6 , and the standard  > annual academic one for july 7 - 8 ) at cambridge u .  >  > your name has been provisionally included on the program . please check all  > the information relating to you and confirm your participation as listed  > ( or advice us of desired changes immediately ) .  >  > thank you .  >  > lenos  >  >  >  > attachment converted : \"\" c : \\ drive _ e \\ eudora \\ attach \\ 4 thconfsessionsl 2 . doc \"\"  >  >  > lenos trigeorgis  > professor of finance  > university of cyprus  > dept of business  > 75 kallipoleos , po box 20537  > cy 1678 nicosia cyprus  >  > tel : + 357 2 892261  > fax : 339063  >  >  >  lenos trigeorgis  professor of finance  university of cyprus  dept of business  75 kallipoleos , po box 20537  cy 1678 nicosia cyprus  tel : + 357 2 892261  fax : 339063\",0\n\"Subject: o : \\ research \\ exotica access  our records indicate that you are the owners / approvers for the  o : \\ research \\ exotica folder . if this is correct , please reply back with your  confirmation to information risk management .  in an effort to update our files as well as to do some cleanup on the  directory membership , we are including the current membership list for the  following nt groups . please review the membership list and advise if any  deletions are required .  group name group description  data _ exotica change access to o : \\ reasearch \\ exotica , ohara , scarlet  data _ exotica _ ro read - only access to o : \\ reasearch \\ exotica , ohara , scarlet  datapwr _ exoticarw change access to m : \\ exotica  data _ exotica  user id full name  adhar amitava dhar / hou / ees  btiner brent tiner / corp / enron  clandry chad landry / hou / ect  cuus charles uus / hou / ect  dmaxwel david maxwell / hou / ect  dvitrel david vitrella  gmasson grant masson / hou / ect  jbuss jd buss / hou / ect  khopper kevin hopper / hou / ect  mlay mark lay / hou / ect  mvasque miguel vasquez / hou / ect  pkrishn pinnamaneni krishnarao / hou / ect  pzadoro pavel zadorozhny / hou / ect  sgibner stinson gibner / hou / ect  thall d todd hall / hou / ect  ttamarc tanya tamarchenko / hou / ect  vguggen victor guggenheim / hou / ect  vkamins vince j kaminski / hou / ect  vngo van t ngo  vshanbh vasant shanbhogue / hou / ect  zlu zimin lu / hou / ect  data _ exotica _ ro  user id full name  adhar amitava dhar / hou / ees  aseveru allan severude / hou / ect  bchan betty chan / hou / ect  bdavis 6 brian davis / corp / enron  cconsta chris constantine / hou / ect  cgarci 2 christine garcia / enron _ development  clandry chad landry / hou / ect  cliverm carl livermore / hou / ect  cschwab clarence schwab / ny / ect  ctricol carl tricoli / corp / enron  cuus charles uus / hou / ect  danders derek anderson / hou / ect  dbillot david billot / hou / ect  dumbowe denae umbower / hou / ect  epao eva pao / hou / ect  fkarbar frank karbarz / hou / ect  icaplan ilan caplan / hou / ect  jgreene john greene / hou / ect  jkinnem jeff kinneman / hou / ect  jkrishn jayant krishnaswamy / hou / ect  jmrha jean mrha / hou / ect  kmccoy kelly mccoy / hou / ect  ljegana lenine jeganathan / hou / ect  mbradle michael w bradley / hou / ect  mcisner michelle d cisneros / hou / ect  mdaya madhur dayal / hou / ect  mrodrig mark anthony rodriguez / hou / ect  osezge osman sezgen / hou / ees  pghosh partho ghosh  s _ prandle phillip c randle / hou / ect  sgoldma stephanie goldman / hou / ect  sharril steve harris / hou / ect  slewis susan r lewis / hou / ect  sreyes selena reyes / hou / ect  srivas sandy rivas / hou / ect  srosman stewart rosman / hou / ect  ssmith 7 sarah smith / corp / enron  ssreera sai sreerama / hou / ect  tbersan tracee bersani  tbrown tony brown / hou / ect  termserv terminal server test account  teslick tara eslick / hou / ect  tlee twana lee / corp / enron  tnguye 2 tovinh nguyen / hou / ect  vmendan vernon mendanha / hou / ect  wlewis william patrick lewis / hou / ect  datapwr _ exoticarw  user id full name  bkaufma bennett kaufman / hou / ect  borourk brian o ' rourke / hou / ect  bspecto brian spector / hou / ect  dreck daniel reck / hou / ect  ebaughm edward d baughman / hou / ect  fhayden frank hayden  gmasson grant masson / hou / ect  gmcclel george mcclellan / hou / ect  kcompea karla compean / hou / ect  ketter kyle etter / hou / ect  khopper kevin hopper / hou / ect  mdalia minal dalia / hou / ect  mgimble mathew gimble / hou / ect  phickey patrick h hickey / hou / ect  pkrishn pinnamaneni krishnarao / hou / ect  rtomask richard tomaski / hou / ect  sgibner stinson gibner / hou / ect  vkamins vince j kaminski / hou / ect  vsabo valarie sabo / pdx / ect  vshanbh vasant shanbhogue / hou / ect  zlu zimin lu / hou / ect  thanks !  information risk management / audit  lupita\",0\n\"Subject: re : fax machine request ~ 05 - 19 - 2000  we received the new fax machine on yesterday .  we will also send it back today - may 26 , 2000  we will not use the fax machine as planned .  thanks  kevin moore  - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 05 / 26 / 2000 09 : 46  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  kevin g moore  05 / 23 / 2000 05 : 55 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : fax machine request ~ 05 - 19 - 2000  goodmorning vince ,  this is a very much needed fax machine .  mike gave approval for the new fax machine , also i spoke with shirley  concerning this matter .  we have some new clients that requires faxes with long distance locations  and the new fax machine will ensure that it reaches them in record time .  thanks  kevin moore  fyi  - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 05 / 23 / 2000 05 : 47  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  iain russell  05 / 22 / 2000 02 : 10 pm  to : kevin g moore / hou / ect @ ect  cc : mike a roberts / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , lorie  belsha / hou / ect @ ect  subject : re : fax machine request ~ 05 - 19 - 2000  kevin ,  jan lynn from pitney bowes will be contacting this afternoon to finalise  paperwork + installation of the machine .  thanks , iain . . . . . . . . . . . . . . . . . . .  kevin g moore  05 / 22 / 2000 01 : 46 pm  to : iain russell / epsc / hou / ect @ ect , mike a roberts / hou / ect @ ect , shirley  crenshaw / hou / ect @ ect  cc :  subject : re : fax machine request ~ 05 - 19 - 2000  i would like to request fax machince model - pb 9930 .  the location for this fax will be eb 3240 however , if arrival time is  24 hours the location will be eb 3270 a .  thanks  kevin moore  r . c . # 100038  co . # 0011  - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 05 / 22 / 2000 01 : 39  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  iain russell  05 / 19 / 2000 01 : 23 pm  to : kevin g moore / hou / ect @ ect , lorie belsha / hou / ect @ ect  cc : shirley crenshaw / hou / ect @ ect , mike a roberts / hou / ect @ ect , vince j  kaminski / hou / ect @ ect  subject : re : fax machine request ~ 05 - 19 - 2000  kevin ,  per your request , please see below :  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  new facsimile machine information  please take a look @ the following and let me know , which fax machine you  choose or if you need information on something smaller , then i will have the  vendor contact you directly to finalise installation . an enron director or  above { with signature authority to legally bind enron to a contract } will  have to sign off on the contract paperwork before the fax machine can be  installed . delivery times on new machines are normally 3 - 5 working days but  either vendor listed below will be able to provide a \"\" loaner \"\" should you have  a business need . please discuss the fax machine install date with the rep  when ordering the equipment .  if there is no existing fax line present , you will need to send a notes - mail  to the move team { erica @ x 3 - 3185 or janelle @ x 5 - 7917 } requesting the  installation of a new fax line . the move team can be found in the notes - mail  \"\" ect address book \"\" .  if you are an ees employee , you must first get new equipment approval from  ees budget control . contact susan mcleroy @ x 5 - 8066 or via notes - mail .  if you are an ebs employee , you must first get new equipment approval from  ebs purchasing & budget control . contact paula corey @ x 3 - 9948 or martha  reyna @ x 3 - 3491 . you can reach both of these people via notes - mail .  if you are an ena employee , you must first get new equipment approval from  ena finance & budget control . contact lorie belsha @ x 3 - 9617 or via  notes - mail .  a note on the fax machines listed below :  all the machines listed below come with a 2 nd paper tray and upgraded memory  { maxed by model ~ see below } as an enron standard from each vendor .  all the fax machines listed below have a modem speed rated @ 33 . 6 kbps versus  the canon laserclass 7500 { example only } @ 14 . 4 kbps = new fax machine should  be noticeably quicker .  document feeder capacity of the machines listed below are the same as the  canon laserclass 7500 { example only }  maintenance = models listed below have maintenance / repair coverage included  in monthly $ total . there is no separate agreement ! toner / drum cartridges +  paper + line charges are extra { not quoted }  contract pricing can change without warning , so please let me know asap if a  vendor quotes you a different price to those listed below against the various  models .  if the fax machine is to be used in a trading type environment , here are some  considerations :  no more than 20 people per fax machine = take a look @ the fax machine  placement on eb 30 or eb 31 .  disregard any fax machine that does not have a 33 . 6 k modem and jbig  compression { or equivalent } .  look for memory upgrades & 2 nd paper tray included in monthly cost . { models  quoted are loaded } .  maintenance is to be included in monthly cost { models quoted are covered } .  * * * * * * * * * * * * * * * * * * * * *  from pitney bowes  pb 2050  cost : $ 95 . 00 per month on rental  enron specs : this model has 10 megs of memory + a 2 nd paper tray as standard .  pitney bowes weblink , click here - - >  there are several of these fax machines located through out the enron  building and 3 allen center , including some on trading floors .  * * * * * * * * * * * * * * * * * * * * *  pb 9930  cost : $ 76 . 00 per month on rental  enron specs : this model has 10 megs of memory + a 2 nd paper tray as standard .  pitney bowes weblink , click here - - >  there are several of these fax machines located through out the enron  building and 3 allen center , including some on trading floors .  * * * * * * * * * * * * * * * * * * * * *  pb 9830  cost : $ 55 . 00 per month on rental  enron specs : this model has 5 megs of memory + a 2 nd paper tray as standard .  pitney bowes weblink , click here - - >  * * * * * * * * * * * * * * * * * * * * *  from panasonic communications direct  uf - 885  cost : $ 75 . 00 per month  click below for machine details { similar to the uf - 880 with 8 megs of memory +  2 nd tray = no handset } :  there are several of these fax machines located through out the enron  building including some on trading floors .  * * * * * * * * * * * * * * * * * * * * *  the above machines are designed for workgroup use .  q ) how many people will be using this fax machine ?  q ) how much usage will this fax machine have ?  { i . e . heavy = 40 faxes per day @ 20 pages / 60 faxes per day @ 2 - 3 pages or a  lot less ? if \"\" heavy \"\" , either the pb 2050 , pb 9930 or uf 885 / uf 895 should fit  your needs = if 15 - 40 , the pb 9830 would probably be a better fit }  * * * * * * * * * * * * * * * * * * * * *  contract details  the fax programs are an agreement between each end user of the fax machine  and the relevant vendor , as follows :  pitney bowes  36 month rental .  30 day notice for termination of contract .  no penalty for early termination of contract = call pb rep . and have the  machine picked up , making sure a receipt is given to you by the collecting  rep .  upgrade / downgrade available = $ 0 penalty .  rep will be happy to discuss details with you and answer any questions on  these points .  panasonic communications  36 month lease rental .  30 day notice for termination of contract before term expiration .  no penalty for early termination of contract for office / department / location  closure .  upgrade / downgrade available = $ 0 penalty .  rep will be happy to discuss details with you and answer any questions on  these points .  * * * * * * * * * * * * * * * * * * * * *  please note the following  the facsimile machine agreement is between the enron business unit / department  requesting the facsimile machine and the vendor .  the user or requester of the fax machine is responsible for invoice payment .  enron property & services corporation is not responsible for the coding ,  processing or payment of facsimile { fax } machine invoices .  in order to return any old fax machine equipment , you must contact the  leasing company that supplied the equipment and send them a certified letter  that terminates the agreement . if you terminate a contract within the  original agreement period , you may be liable for penalty charges as a lot of  fax machines are on a non - cancellable lease agreement . the vendor who  supplied the fax equipment will be able to let you know of any outstanding $  amounts for your existing equipment .  if you are asked to pay outstanding $ amounts , be aware that some vendors  include the cost of outright purchase of the old fax equipment = from the  contracts i have reviewed so far , you are under no obligation to purchase the  old equipment .  ikon contact name for returns :  beth frank : phone = new # - - > 409 - 441 - 1262 { previously 281 - 355 - 6274 }  beth frank fax # = new # - - > 409 - 441 - 1266 { previously 281 - 355 - 5496 }  beth frank e - mail address ~ eafrank @ aol . com  marimon business systems contact name for returns :  don scott : phone = 713 - 686 - 6601  don scott fax # = 713 - 686 - 6676  { no e - mail address available }  * * * please call me or e - mail me if it is a different vendor name on the  machine and i will respond with a contact name * * *  charges for fax machines are dependant upon manufacturer & model , with the  person responsible for the fax machine , paying the invoice . you must notify  the vendor of any changes relating to fax machine assignment { even if it is  within the same group } = who the machine has been reassigned to { contact  name } , the new contact phone # and the location of the machine .  * * * * * * * * * * * * * * * * * * * * *  fax machine supplies  replacement toner cartridges : most of these are available to enron through  corporate express @ savings over the fax vendor invoice price . these savings  can be significant , so please e - mail me if you would like more details .  * * * * * * * * * * * * * * * * * * * * *  please call me if you have any questions .  thanks , iain russell @ 713 - 853 - 6861  contracts supervisor administration  enron property & services corp .  * * * * * * * * * * * * * * * * * * * * *  * * * * * * * * * * * * * * * * * * * * *  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  kevin g moore  05 / 19 / 2000 12 : 42 pm  to : iain russell / epsc / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , mike a  roberts / hou / ect @ ect , vince j kaminski / hou / ect @ ect  cc :  subject : fax machine  iain ,  please , i am in need of a fax machine .  it was brought to my attention that you  may have one available .  please inform me concerning this  matter , we need one a . s . a . p . .  thanks  kevin moore  x 34710\",0\n\"Subject: quantitative position  vince  we happened upon this fellow through strickland . what are your thoughts on  the background ? we are still working to formulate our requirements in the  office but consider this person worth talking to .  paul  - - - - - - - - - - - - - - - - - - - - - - forwarded by paul quilkey / enron _ development on  07 / 26 / 2000 09 : 39 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" simon hurst \"\" on 07 / 25 / 2000 10 : 10 : 23 pm  please respond to \"\" simon hurst \"\"  to :  cc :  subject : quantitative position  dear paul ,  ?  my friend chris strickland has informed me that enron is looking for a  quantitative analyst . i am ? interested in talking to you about this position .  i have attached my resume for your perusal . i am currently on holidays and  can be ? contacted from ? monday 31 st july . my contact details are contained  within my attached resume . i look forward to talking to you .  ?  yours sincerely ,  simon hurst .  ?  ?  - srh resume . doc\",0\n\"Subject: seeking opportunity in computational finance  dear vince :  in following up on my voicemail message today , i attach my resume below for  your review and consideration .  it ' s ironic that you called while i was putting the message together . i  will keep it short and look forward to speaking to you at your convenience .  best regards ,  paul  e . paul rowady , jr .  2300 west alabama , suite 69  houston , texas 77098  713 - 807 - 8624 home / fax  713 - 539 - 4541 mobile  epr @ pipeline . com  - paul rowady 2 . doc\",0\n\"Subject: re : grant masson  great news . lets get this moving along . sheila , can you work out offer letter ?  vince , i am in london monday / tuesday , back weds late . i ' ll ask sheila to fix  this for you and if you need me call me on my cell phone .  vince j kaminski  12 / 15 / 2000 09 : 50 am  to : david oxley / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : grant masson  david ,  a follow - up on my voice - mail message regarding  grant .  dave delainey is on board regarding grant .  we can bring him back at the same level and comp ,  assuming that resignation was handled  in a professional manner .  dd asked me to work out the details with you . can we meet to talk  about it on monday ?  vince\",0\n\"Subject: enron : wefa luncheon may 1  martin :  vince and lance want you to attend this presentation if possible . please  let me know if you will be going to lunch also .  thanks !  shirley  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 13 / 2001  08 : 36 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  04 / 11 / 2001 12 : 36 pm  to : lance cunningham / na / enron @ enron , vasant shanbhogue / hou / ect @ ect , alex  huang / corp / enron @ enron , sevil yaman / corp / enron @ enron  cc : shirley crenshaw / hou / ect @ ect , vince j kaminski / hou / ect @ ect  subject : enron : wefa luncheon may 1  would you like to attend the presentation and join me for lunch  with wefa .  any other suggestions re attendance .  please , let shirley know .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 11 / 2001  12 : 36 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" peter mcnabb \"\" on 04 / 11 / 2001 11 : 52 : 47 am  to :  cc : \"\" kemm farney \"\"  subject : enron : wefa luncheon may 1  dear vince  thanks for your voicemail and delighted to have you confirm lunch on may 1 .  kemm farney the head of wefa ' s electric power services will be travelling  with me this time . i expect there may be other enron colleagues that may  care to join us for lunch so don ' t hesitate to invite as you see fit . for  reservations purposes , perhaps you arrange to let me know numbers .  kemm would also be prepared to informally present our current power outlook  to a larger group at 11 : 00 , if this would be of interest .  as you know , these types of presentations are part of all your wefa energy  retainer package . i will also plan to update you with respect to our current  multi client study schedule for the remainder of the year .  regards , peter  peter a . mcnabb  vice president energy , north america  wefa inc .  2 bloor st . w .  toronto , canada  m 4 w 3 rl  416 - 513 - 0061 ex 227  - 2001 energy brochure . doc  - wefaenergy _ factsheet for energy scenarios 2001 . doc\",0\n\"Subject: schedule and more . .  dr . kaminski ,  i think i ' ll be able to start work from the last week of may ,  but not from monday ,  probably , i ' ll be able to work from 5 / 30 ( wed ) .  will it be good ? i know it is not that much earlier than i mentioned . . 6 / 4  i am sorry .  and actually , there is an e - business conference at haas school of business ,  organized by my advisor  could you distribute the link and the attached invitation letter to groups  interested in e - business and especially procurement ?  the link is as following .  i am afraid you might forgot this i told you in the last email . . .  my advisor ( arie segev at haas school of business ; segev @ haas . berkeley . edu )  wants me to ask whether you have any idea on joint research with him  during the summer , while i am staying there .  his interest is in e - business . . ( what else . . ? )  and has expertise in e - procurement system and marketplace . . .  xml based standard such as obi , cxml , xcbl , rosettanet , biztalk . .  system interoperability study , auction and negotiation , workflow system ,  e - catalog management , digital signature , edi , etc etc . . .  many technical aspects of e - business . . .  he wants to do some kind of technical case study  that is beneficial for both enron and him .  he may travel one or two times to houston to have a meeting during the  summer .  ( and to be frankly , this will be good for me too ,  because i can have a meeting for my dissertation while he is in houston . . )  could you think about the possibility of joint research , with him ?  thank you . .  sincerely ,  jinbaek  - fcp - invite . pdf\",0\n\"Subject: re : iris mack  molly ,  this is the list of people we can ask to interview iris .  i would include one ( or possibly more ) people from each group below ,  depending on availability .  1 . debbie brackett or bill bradford  2 . ted murphy , bjorn hagelman or david port  3 . mark tawney or joe hrgovcic  4 . greg whalley or louise kitchen  i shall send a message to them explaining that we try to identify the best  fit for a good  candidate .  vince  enron north america corp .  from : molly magee 12 / 18 / 2000 11 : 57 am  to : vince j kaminski / hou / ect @ ect  cc : shirley crenshaw / hou / ect @ ect  subject : iris mack  iris would like to come on thursday , 12 / 28 / 2000 , to visit with you and your  group . she will be in new orleans , and will just fly in for the day .  molly\",0\n\"Subject: a friend of mine  shirley ,  please , arrange a phone interview with richard .  stinson , myself , vasant .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 05 / 02 / 2001 08 : 15 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : kristin gandy / enron @ enronxgate on 05 / 01 / 2001 05 : 14 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : a friend of mine  vince ,  last week i was contacted by one of my friends who is very interested in becoming an enron employee . he has a phd and several years research and lab experience .  richard is afraid that being a phd is a dying breed and may need to go back to school to obtain an mba . i was wondering if you would mind looking at the attached resume to assess if you have any interest in richard , or if you feel i should encourage him to go back to school . i am unclear as to the qualifications for your group so i apologize if this request is way off base .  thank you for your help ,  kristin gandy  associate recruiter  enron corporation  1400 smith street eb 1163  houston , texas 77002  713 - 345 - 3214  kristin . gandy @ enron . com\",0\n\"Subject: reactions password reminder  = = = = = = = = = = = = = = = = = reactions password reminder = = = = = = = = = = = = = = = = =  hi ,  we do not seem to be able to see you on our systems , please try registering  and you will automatically receive a username and password .  if you have already registered on this website , then please let us know and  we will investigate further .  regards .  reactions support - euromoney publications plc .  tel : + ( 44 ) 0171 779 8927 fax : + ( 44 ) 0171 779 8704 \",0\n\"Subject: ll visa - anshuman shrivastava  anshuman : i have been asked to contact you regarding your possible move to  houston , texas . in order that i may begin the process of getting you an ll  immigration visa , i will need you to complete the attached visa questionnaire  and return it to me with copies of the following documents :  a copy of all pages of your passport , even if blank  copies of all previous us visas issued  an updated resume , showing months and years  copies of all diplomas and transcripts received  if you have dependent family members coming to the states with you , copies of  their passports  please send to my attention , via fedex to :  enron corp .  3 allen center , 3 ac 2026 a  333 clay street  houston , tx 77002  please call me with any questions you may have at 713 - 345 - 5083 .\",0\n\"Subject: re : new powermod 97 . xls  marty :  absolutely yes ! we are now using option functions in the exotic options  library ( in r : \\ exotica which everybody in risk management has access to )  instead of the old visual basic code in the powermod file . this improved the  calculation speed for options quite a bit .  we are also embarking on a new project to develop the next generation  structuring and pricing models . i will discuss about this project in more  detail with you soon and get your input , but the main goals i see now are :  1 . superior performance ( speed ) to enable fast pricing especially for the  underwriting group ,  2 . proper documentation for easy maintenance and ability to quickly adapt to  meet future needs , and  3 . security / access control to the files .  the first stage in this process is to take inventory of what we have : i am  documenting the current structuring models . this step is important not only  for developing our next generation models but also for the aa audit of all  the ees pricing models .  krishna .  to : maureen craig / hou / ees @ ees , pinnamaneni krishnarao / hou / ect @ ect , dennis  benevides / hou / ees @ ees  cc :  subject : new powermod 97 . xls  any performance improvement to be expected ?  - - - - - - - - - - - - - - - - - - - - - - forwarded by marty sunde / hou / ees on 07 / 26 / 2000 10 : 14  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  pinnamaneni krishnarao @ ect  07 / 24 / 2000 01 : 37 pm  to : dennis benevides / hou / ees @ ees , james w lewis / hou / ees @ ees , neil  hong / hou / ees @ ees  cc : marty sunde / hou / ees @ ees , alexios kollaros / hou / ees @ ees  subject : new powermod 97 . xls  we have made enhancements to powermod 97 . xls model to enable proper processing  from the batch model . these changes should not affect current functionality  of this file . we will be putting the new version into production later today .  please contact me or alex kollaros ( x 39806 ) with your comments or problems .  thanks ,  krishna  x 35485 .\",0\n\"Subject: re : book order  thanks vince !  ?  will champagne do ? ? if not , name your price .  ?  do you have an email address for steve leppard ? ? i tried :  steve . leppard @ enron . com ? which bounced back .  ?  thanks ,  julie  ?  ps - guess i ' ll finally meet you at the end of the month ?  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com  to : julie  cc : vince . j . kaminski @ enron . com  sent : wednesday , january 31 , 2001 1 : 36 pm  subject : re : book order  julie ,  there are many employees in london ? who would be interested .  you can send ? an inquiry to steve leppard .  i had a presentation last night  to garp in houston and did a commercial for the book .  you should put me on commission .  vince  \"\" julie \"\" on 01 / 31 / 2001 06 : 31 : 39 am  please respond to \"\" julie \"\"  to : ? ?  cc :  subject : ? re : book order  vince ,  i wasn ' t sure if i responded to your email , so apologise either for my  delayed response or repeating myself .  thanks for the 2 nd order ! i believe they have already been ? dispatched .  yes , i believe we received payment ; thank you very much for ? following up  with paul . glad the book was a hit !  on another subject , are there any enron employees in europe who may be  interested in attending either the energy or the weather course ? or , are  the quants and risk management mostly handled out of houston ?  thanks again , and i ' ll forward an invoice on to shirley .  julie  - - - - - original message - - - - -  from : ? vince . j . kaminski @ enron . com  to : julie @ lacima . co . uk  cc : vince . j . kaminski @ enron . com  sent : friday , january 26 , 2001 11 : 29 ? pm  subject : book order  julie ,  we received the shipment of 50 books . ? thanks .  the book was an instant hit . we need 50 more ? books .  vince  p . s . i understand paul sent you the check for the ? remaining 50 %\",0\n\"Subject: memo  information on grains and sugars from last week in memo form .  nelson  - - - - - - - - - - - - - - - - - - - - - - forwarded by nelson neale / na / enron on 03 / 05 / 2001 10 : 55  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : maria arefieva 03 / 05 / 2001 11 : 01 am  to : nelson neale / na / enron @ enron  cc :  subject : memo  attached please find a summary of sessions on grains and sugar . a memo on ag  policy and outlook for the livestock sector will follow .  thanks ,  masha\",0\n\"Subject: final project deadline is april 30  dear energy derivatives students ,  the deadline for the final project has been set for april 30 , 2001 .  all grades will be submitted to rice administration by may 4 th ( university requirement ) .  please mark your calendars ! ! !  if you have questions , please contact vince or me .  good luck !  jason sokolov\",0\n\"Subject: meeting regarding \"\" gary hickerson trading \"\"  hello all :  vince would like to schedule a meeting on tuesday , may 23 at 3 : 00 pm  in conference room ebl 938 . this will be to discuss the subject topic .  please let me know if you are available .  thanks  shirley  3 - 5290\",0\n\"Subject: interview with the enron corp . research group  good morning jacob :  the enron corp . research group would like to bring you in for an informal  interview . please give me some times and dates within the next 2 - 3 weeks  that would be convenient for you and i will coordinate an interview schedule .  the interviewers would be :  vince kaminski managing director  stinson gibner vice president  krishna krishnarao vice president  zimin lu director  tanya tamarchenko director  bob lee manager  tom halliburton manager  chonawee supatgiat manager  i look forward to hearing from you soon .  best regards ,  shirley crenshaw  administrative coordinator  enron research group  713 / 853 - 5290  email : shirley . crenshaw @ enron . com  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 08 / 2001  09 : 33 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  zimin lu  03 / 08 / 2001 09 : 17 am  to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect  cc :  subject : candidate for us  jacob kang , currently a leading developer for pros energy applications ,  is interested in a job in derivatives valuation .  let me know if we want to bring him for a interview .  zimin  - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 03 / 08 / 2001 09 : 07 am  - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" jacob y . kang \"\" on 03 / 07 / 2001 11 : 10 : 24 pm  to : zlu @ enron . com  cc :  subject : my cover letter and resume  dear zhimin ,  the attached files are my cover letter and resume .  thank you very much and i really appreciate your help  on this matter .  ying  these two files do not contain any virus even though  there are error signs on the virus check status .  do you yahoo ! ?  get email at your own domain with yahoo ! mail .  http : / / personal . mail . yahoo . com /  - cover letter _ enron . doc  - resume _ ying . doc\",0\n\"Subject: re : fwd : happy st . patricks day  jana ,  great attachment . thanks .  saturday , march 25 works for me . i shall call or e - mail you from california to  talk about the time . early afternoon would be great .  vince  jlpnymex @ aol . com on 03 / 17 / 2000 10 : 58 : 54 am  to : vkamins @ enron . com  cc :  subject : fwd : happy st . patricks day  vince ,  how about saturday , march 25 ? call or email me next week , to let me know what  time would be good for you . have a good trip to california and a happy st .  patrick ' s day today !  jana  return - path :  received : from rly - ydol . mx . aol . com ( rly - ydol . mail . aol . com [ 172 . 18 . 150 . 1 ] ) by  air - ydol . mail . aol . com ( v 70 . 19 ) with esmtp ; fri , 17 mar 2000 10 : 06 : 51 - 0500  received : from mta 3 . rcsntx . swbell . net ( mta 3 . rcsntx . swbell . net  [ 151 . 164 . 30 . 27 ] ) by rly - ydol . mx . aol . com ( v 70 . 19 ) with esmtp ; fri , 17 mar 2000  10 : 06 : 26 - 0500  received : from postoffice . swbell . net ( [ 207 . 193 . 12 . 192 ] ) by  mta 3 . rcsntx . swbell . net ( sun internet mail server  sims . 3 . 5 . 2000 . 01 . 05 . 12 . 18 . p 9 ) with esmtp id  for jlpnymex @ aol . com ; fri , 17 mar  2000 09 : 04 : 52 - 0600 ( cst )  date : fri , 17 mar 2000 08 : 57 : 53 + 0000  from : ckcrews @ swbell . net  subject : happy st . patricks day  to : jana  reply - to : ckcrews @ swbell . net  message - id :  mime - version : 1 . 0  x - mailer : mozilla 4 . 05 [ en ] c - sbis - nc 404 ( winnt ; u )  content - type : multipart / mixed ; boundary = \"\" - - - - - - - - - - - - eed 862 df 35 cd 73 flfo 74403 a \"\"  - stpat . exe\",0\n\"Subject: re : interview  elizabeth ,  yes , manager .  thanks .  vince  from : elizabeth grant 01 / 10 / 2000 03 : 27 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : interview  we ' ll get right on it . are you looking at him for a specific level ( manager ? )  - elizabeth  vince j kaminski  01 / 10 / 2000 12 : 56 pm  to : elizabeth grant / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect  subject : interview  elizabeth ,  we would like to invite bob lee for an interview , january 24 , monday .  he will be interviewed by me , stinson gibner ,  zimin lu , paulo issler , vasant shanbhogue , krishnarao pinnamaneni ,  grant masson .  thanks  vince\",0\n\"Subject: re : alp presentation  vince ,  thank you for the invitation . i will attend the presentation , but have  another commitment for dinner .  please indicate the specific room for the presentation when it is known .  thanks ,  wil  at 08 : 13 am 4 / 10 / 01 - 0500 , you wrote :  > on behalf of enron corp . i would like to invite you to an alp project  > presentation by a group of students  > of jesse h . jones graduate school of management , rice university .  >  > the students will present the results of a research project regarding  > electronic trading  > platforms in the energy industry .  >  > the presentation will be held on may 7 , at 4 : 00 p . m . at enron , 1400 smith .  >  > we would also like to invite you to dinner , following the presentation .  >  >  > vince kaminski  >  > vincent kaminski  > managing director - research  > enron corp .  > 1400 smith street  > room ebl 962  > houston , tx 77002 - 7361  >  > phone : ( 713 ) 853 3848  > ( 713 ) 410 5396 ( cell )  > fax : ( 713 ) 646 2503  > e - mail : vkamins @ enron . com\",0\n\"Subject: re : final pivot table for mg metals globals positions data  dear all ,  please see attached spreadsheet - we will have to think of a way to automate  the position update - right now it ' s a manual process to convert the text  file that andreas sends us to proper spreadsheet format and then pivot table  the results - only takes about 20 minutes to do this however . note that the  version la var model links via vlookup to the spreadsheet attached ( as you  know , we have to use vlookup because mg does not necessarily have positions  in all forward months , whilst the pivot table only produces numbers for  forward months with a position ) .  regards ,  anjam  x 35383  positions as of 19 th july  - - - - - - - - - - - - - - - - - - - - - - forwarded by anjam ahmad / lon / ect on 25 / 07 / 2000 20 : 41  - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron europe  from : anjam ahmad 25 / 07 / 2000 19 : 17  to : cantekin dincerler / hou / ect @ ect  cc : tanya tamarchenko / hou / ect @ ect , kirstee hewitt / lon / ect @ ect , grant  masson / hou / ect @ ect , andreas . barschkis @ mgusa . com @ enron  subject : re : positions data  our pivot table ; we noticed that copper position for 19 th july has option  included but this is not reported in mercur - i guess we should include the  5 , 248 tonnes for the copper option for 2000 . 09 , but we won ' t show any gamma .  - - - - - - - - - - - - - - - - - - - - - - forwarded by anjam ahmad / lon / ect on 25 / 07 / 2000 19 : 18  - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron europe  from : anjam ahmad 25 / 07 / 2000 19 : 14  to : tanya tamarchenko / hou / ect @ ect  cc : cantekin dincerler / hou / ect @ ect , andreas . barschkis @ mgusa . com @ enron  subject : re : positions data  hi tanya ,  we are using the data for 19 th july from andreas - see file attached . we are  using this because we can reconcile to mercur print out that we got from  andreas last wednesday . if you don ' t mind , perhaps cantekin can try again  with this new sheet attached . we already looked at it , but would like to see  what cantekin can come up with independently . i think the positions changed  a lot from 3 rd july ( your data ) to 19 th july .  thanks ,  anjam & kirstee\",0\n\"Subject: interview schedule for jinbaek kim  i didn ' t see this before it went out , but i will be happy to meet with  jinbaek in the 11 : 00 am time slot , if you don ' t have anyone else scheduled  then . if not , i can easily meet with hiim after lunch .  molly  - - - - - - - - - - - - - - - - - - - - - - forwarded by molly magee / hou / ect on 01 / 17 / 2001 08 : 11  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  shawn grady @ enron  01 / 17 / 2001 06 : 02 pm  to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , tanya  tamarchenko / hou / ect @ ect , bob lee / na / enron @ enron , vasant shanbhogue / hou / ect @ ect  cc : shirley crenshaw / hou / ect @ ect , anita dupont / na / enron @ enron , molly  magee / hou / ect @ ect  subject : interview schedule for jinbaek kim  please find the interview packet for the above - referenced candidate . the  interview will occur on friday january 19 , 2001 . please print all documents  for your reference . if you have any questions , or conflicts of schedule ,  please do not hesitate to contact me .  shawn grady  58701\",0\n\"Subject: bob lee starting june 5 , 2000  bob lee ' s official starting date is june 5 , 2000 .  shirley ,  bob will be reporting to zimin lu and primarily supporting ena . we will  need to find a desk for him as well as set up his phone and pc ( can we use  ravi ' s ? ) . elizabeth grant ( x 57583 ) has handled him on the hr recruiting  side and has his contact information .  thanks ,  stinson\",0\n\"Subject: ljm put valuation  wes :  attached is a spreadsheet for the valuation of the rthm put position . i  should be in on tuesday , so feel free to give me a call at x 34748 .  - - stinson\",0\n\"Subject: re : eol phase 2  michael ,  please , contact zimin lu .  vince kaminski  michael danielson  06 / 30 / 2000 01 : 10 pm  to : vince j kaminski / hou / ect @ ect , mike a roberts / hou / ect @ ect  cc : angela connelly / lon / ect @ ect , savita puthigai / na / enron @ enron  subject : eol phase 2  thanks for your help on content for eol phase 2 .  an additional piece of content that we are trying to include in our scope is  an options calculator . this would be an interactive tool to teach less  sophisticated counterparties about options . we would like to collaborate  with someone in research to refine our approach ( and make sure we ' re using  the right formulas ) . who should we contact in research for this ?  attached is a mock - up of what we have in mind . . .  - calculator prototype . ppt\",0\n\"Subject: re : implementing term - structure of correlations for power  tanya ,  while there is seasonal correlations in power , especially for np - 15  and sp - 15 ( same region ) , the term structure of correlations can be input .  however , the same correlation structure with similar periodicity may not hold  between np - 15 and , say , rlb ( neepool ) , though one would imagine that  relationship would still be seasonal ( summer / winter ) , with greater noise .  even if the correlational term structure is to be done for power , different  rules would have to be inputted for different regions .  naveen  tanya tamarchenko @ ect  10 / 05 / 2000 10 : 42 am  to : vladimir gorny / hou / ect @ ect , naveen andrews / corp / enron @ enron  cc : kirstee hewitt / lon / ect @ ect , debbie r brackett / hou / ect @ ect , wenyao  jia / hou / ect @ ect , vince j kaminski / hou / ect @ ect  subject : re : implementing term - structure of correlations for power  vlady  2 ) correlations are periodic with a period of 1 year ( this means we can use  12 correlation matrices calculated from  first 12 forward contracts and apply these matrices to other forward months ) ;  3 ) using decay factor makes the curves a little smoother .  implementation of multiple correlation matrices will not affect the speed of  calculations in var model significantly .  please , give me your response ,  thanks ,  tanya .\",0\n\"Subject: best picks  hey ,  best picks are zigo and smtx  steve\",0\n\"Subject: re : summer internships at enron  vince :  thanks . yes it is unfortunate that we were not able to quickly identify who  the interested tiger team students were . we will go ahead and process an  offer letter for kim and get it to her immediately .  also , thanks for agreeing to help out with stanford . hopefully we will get a  few good ones !  regards ,  celeste  vince j kaminski  03 / 01 / 2001 09 : 32 am  to : celeste roberts / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : summer internships at enron  celeste ,  i have just talked to kim . i told her she will receive one .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 01 / 2001  09 : 31 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  03 / 01 / 2001 09 : 25 am  to : celeste roberts / hou / ect @ ect  cc : kristin gandy / na / enron @ enron , christie patrick / hou / ect @ ect , vince j  kaminski / hou / ect @ ect , piazze @ wharton . upenn . edu  subject : summer internships at enron  celeste ,  it seems that the process lasted too long for some students  and only kim whitsel is interested in the internship at this point .  her resume has been forwarded to you .  i am enclosing it just in case .  thanks for your help .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 01 / 2001  09 : 20 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  fap on 02 / 23 / 2001 02 : 28 : 48 pm  to : \"\" ' vkamins @ enron . com ' \"\"  cc : \"\" ' piazze @ wharton . upenn . edu ' \"\"  subject : summer internships at enron  vince :  thank you to you , ken and christie for coming to campus for the enron tiger  team mid - project review . the students are working hard and appreciate your  insight and suggestions to the project . thank you for your support of the  wharton school .  kim whitsel ( whitselk @ wharton . upenn . edu ) of tiger team 1 has informed me  that she is very much interested in a summer internship at enron this year .  i don ' t believe some of the students understood the process you had setup  for them at enron as part of the tiger team . being concerned with having  summer employment , they interviewed with other firms and ultimately accepted  positions . the students asked that i express to you that this does not mean  they are not interested in full time work at enron next year . i apologize  and take responsibility for the lack of communication in this regard . i  think it is a lesson learned and perhaps , in the future , we can make the  agreement to students understood in advance of their \"\" dedicated interview  week \"\" and eliminate their need to interview at all . this can also be an  added advantage of applying to be a member of the tiger team .  please let me know if you have any questions and exactly how kim whitsel  should proceed .  thank you ,  donna piazze  program director  field application project  the wharton school  univ . of pennsylvania  215 . 573 . 8394 fax 215 . 573 . 5727  fap @ management . wharton . upenn . edu  piazze @ wharton . upenn . edu\",0\n\"Subject: re :  thanks vince . . . jeff  vince j kaminski  09 / 01 / 2000 10 : 23 am  to : jeffrey a shankman / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re :  jeff ,  christ , mark and myself are planning to visit tom piazze in october . i talked  to christy about wharton  and she will be calling tom to set it up .  vince  from : jeffrey a shankman 09 / 01 / 2000 09 : 25 am  to : vince j kaminski / hou / ect @ ect , mark palmer / corp / enron @ enron  cc : celeste roberts / hou / ect @ ect , charlene jackson / corp / enron @ enron  subject :  hi vince ,  i just got off the phone with donna piazze at wharton , ( i don ' t know if there  is a relationship with tom at wharton ) , and we were discussing there tiger  teams . it is a required research program , 2 nd semester for mbas , and wharton  would love to have enron participate . i told her there is probably some real  life reasearch project we could have the students do . she did also mention  that it is one of the best recruiting tools under development at wharton . . i  gave her your number .  her number is 215 573 8394 . please call her when you get a chance within the  week .  mark , can we get christy involved ? thanks everyone .  jeff\",0\n\"Subject: professor bambos ' itinerary  hello all :  attached please find the itinerary for professor bambos . if any corrections  need to be made , please let me know .  thanks and have a great day !  shirley  3 - 5290\",0\n\"Subject: paper  hi mr . kaminski ,  thank you for taking your time to interview me for opportunities at enron . i  enjoyed talking you and learning more about enron and its dynamic business  environment . i appreciate your consideration for a challenging and rewarding  position in this industry . please find the attached copy of my dissertation .  if you have any problem in compiling this file , please let me know .  i respected your insights and perspective on the issues addressed in my  ph . d . dissertation ; including the issues on creative model building , factors  affecting natural gas and elctricity demand and supply , and implementation  of these models to simulate the future and help traders in the decision  making of their day to day business .  i appreciated talking with you . thank you for considering me . i am  enthusiastic about opportunities at enron and look forward to hearing from  you .  sincerely  dipak agarwalla  _ _ _ _ _ _ _  get more from the web . free msn explorer download : http : / / explorer . msn . com  - dissertation - dipak agarwalla . doc\",0\n\"Subject: re : dr . michelle foss - energy institute  aisha ,  the person to contact is christie patrick who is in charge our university  relations  office . her e - mail address is : christie _ patrick @ enron . com .  i shall forward your message to ms . patrick .  vince  aisha jamal on 04 / 23 / 2001 03 : 15 : 29 pm  please respond to aisha @ uh . edu  to : vkamins @ ect . enron . com  cc : mmfoss @ uh . edu  subject : dr . michelle foss - energy institute  dear mr . kaminski ,  i am writing to ask a favor for dr . michelle foss . as you know we will  be running our \"\" new era \"\" program from may 14 - may 25 th . dr . foss was  wondering if on may 22 nd ( between 1 : 30 pm and 4 : 00 pm ) , we would be able to  bring  our participants for a tour of your trading floor . at this time we will have  30 - 40 people , and since only 10 people maximum should really be on a  trading floor we need to have 4 companies among which to divide our  participants . at this time , we have a floor from coral energy , and are  working with duke ,  and i will be contacting mr . paul roberts to arrange for the reliant energy  trading floor . i was hoping very much that you would be able to direct  me to the right person to contact to arrange this tour . will this be a  possiblity ? i really appreciate your help very much . thank you !  best regards ,  aisha jamal  energy institute  713 - 743 - 4634\",0\n\"Subject: wharton tiger team  vince and kristin , i forwarded by separate emails the lists of tiger teams 1  and 3 .  thanks !  - - christie .  - - - - - forwarded by christie patrick / hou / ect on 02 / 15 / 01 11 : 28 pm - - - - -  kristin gandy @ enron  02 / 15 / 01 01 : 07 pm  to : vince j kaminski / hou / ect @ ect , christie patrick / hou / ect @ ect  cc :  subject : wharton tiger team  vince and christie ,  greetings . i am writing because i need a break out of names for the tiger  team group 1 and 3 . i understand tiger team group 2 has decided not to be a  part of enron and i also need to know who those students are . i have a  listing of all the tiger team members but they are listed alphabetically so  that does not help me with my quest . we are trying to firm up the details  and get offers out to the correct people for summer associate positions in  vince ' s department .  regards ,  kristin\",0\n\"Subject: re : summer internship  jinbaek ,  you can coordinate the details with me .  let me know what the time frame is for you  and we shall send you an appropriate offer .  vince  jinbaek kim on 03 / 02 / 2001 04 : 43 : 06 pm  to : vince . j . kaminski @ enron . com  cc :  subject : re : summer internship  dr . kaminski ,  thank you very much .  of course , i ' ll be happy to have an opportunity  to work at such a wonderful company .  i was contacting with surech raghavan at deal bench team ,  and was going to express my appreciation to you again  after settling down process with them .  for the period of working ,  i still need to coordinate with my advisor and  may need to adjust according to that .  but anyway , i ' ll try to coordinate smoothly .  please let me know whether i should keep contacting  with deal bench team ,  for working period and  for misc . living support such as finding a place , rent a car , etc .  i appreciate you so much again ,  for arranging such meetings and giving me an opportunity .  all this opportunity will not be available to me ,  without your kind help .  warm regards ,  jinbaek  jinbaek kim  ph . d candidate  dept . of industrial engineering and operations research  u . c . berkeley  http : / / www . ieor . berkeley . edu / ~ jinbaek  go bears !  : \"\" ' . _ . . - - - . . _ . ' \"\" ; ` . . ' . ' ` .  : a a : _ _ . . . . . _  : _ . - 0 - . _ : - - - ' \"\" \"\" ' \"\" - . . . . - - ' \"\" ' .  : . ' : ` . : ` , ` .  ` . : ' - - ' - - ' : . ' ; ;  : ` . _ ` - ' _ . ' ; . '  ` . ' \"\" ' ;  ` . ' ;  ` . ` : ` ;  . ` . ; ; : ;  . ' ` - . ' ; : ; ` .  _ _ . ' . ' . ' : ; ` .  . ' _ _ . ' . ' ` - - . . _ _ _ . _ . ' ; ;  ` . . . . . . ' . ' ` ' \"\" \"\" ' ` . ' ; . . . . . . - '  ` . . . . . . . - ' ` . . . . . . . . '  on fri , 2 mar 2001 vince . j . kaminski @ enron . com wrote :  > hello ,  >  > sorry for a delay in getting back to you .  > we would like very much to offer you a summer internship .  >  > please , let me know if you are interested .  >  > vince kaminski  >  >\",0\n\"Subject: re : rent r / c updates - 19 th floor & 29 th floor  hi carol :  thanks for helping straighten this out . below are the room numbers and  people ( plus ext . ) .  1938 team room 3 - 3135  1939 maureen raymone 3 - 0396  1940 tanya tamarchenko 3 - 3997  1941 vacant  1942 vacant  1943 clayton vernon 3 - 9719  1944 amitava dhar 3 - 4215  1945 alex huang 3 - 1631  1946 kevin kindall 5 - 8167  1947 vacant  1948 vacant  1949 farouk llaji 3 - 1790  1951 vacant  1951 a printer / fax  1952 vacant  1953 mail stop / supply station  1954 wm . sam smith 5 - 8322  1955 martin lin 3 - 9387  1955 a xerox machine  1956 printer / colored printer  1957 vacant  1958 paulo issler 5 - 6274  1959 vincent tang 3 - 4790  1960 ravi thuraisingham 3 - 3057  1961 shirley crenshaw 3 - 5290  1962 vince kaminski 3 - 3848  1963 stinson gibner 3 - 4748  1964 p . v . krishnarao 3 - 5485  1966 grant masson 3 - 4768  1967 zimin lu 3 - 6388  1968 vacant  1969 kevin moore 3 - 4710  1969 a vacant  1969 b vacant  1970 mike roberts 3 - 5701  1971 joe hrgovcic 3 - 3914  1972 a vacant  1972 b roman zadorozhny 3 - 9737  1972 c michael sergeev 3 - 4305  1972 d tricia tlapek 3 - 6615  1972 e jason sokolov 3 - 6286  1973 vasant shanbhogue 3 - 7570  19 c 2 conference room  carol brittain 01 / 10 / 2000 11 : 33 am  to : shirley crenshaw / hou / ect @ ect  cc : joann holloway / epsc / hou / ect @ ect , janelle duree / hou / ect @ ect  subject : re : rent r / c updates - 19 th floor & 29 th floor  shirley :  if you could forward all the names , locations , and extensions to me so that i  can update fms and the employee lists , i will take care of this for you .  carol  enron property & services corp .  from : joann holloway 01 / 10 / 2000 09 : 48 am  to : carol brittain / epsc / hou / ect @ ect  cc :  subject : re : rent r / c updates - 19 th floor & 29 th floor  - - - - - - - - - - - - - - - - - - - - - - forwarded by joann holloway / epsc / hou / ect on 01 / 10 / 2000  09 : 48 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  shirley crenshaw  01 / 07 / 2000 03 : 33 pm  to : joann holloway / epsc / hou / ect @ ect  cc :  subject : re : rent r / c updates - 19 th floor & 29 th floor  oh dear !  i thought it was all straight . ebl 931 was my room on the original floor  plan ,  but somehow they changed the numbers . we were all packed , everything  was ready for the move and i just happened to come to the 19 th floor the  day of the move and noticed that they had renumbered all of the rooms !  the move team hurredly put stickers ( with the old numbers ) on the doors  of each room .  i am now in eb 1961 . vince kaminski is in 1962 . if you need the names  for all of the other rooms , let me know .  sorry !  enron property & services corp .  from : joann holloway 01 / 07 / 2000 03 : 09 pm  to : shirley crenshaw / hou / ect @ ect  cc :  subject : re : rent r / c updates - 19 th floor & 29 th floor  shirley ,  i guess my floor plans are misnumbered .  in what room number are you sitting ? the relocation request had eb 1931 .  jo ann  shirley crenshaw  01 / 07 / 2000 02 : 16 pm  to : joann holloway / epsc / hou / ect @ ect  cc :  subject : re : rent r / c updates - 19 th floor & 29 th floor  joann :  sorry , joann , i did not read all of your first e - mail . listed below are the  spaces on 19 that should be charged to 0011 - 100038 .  1938  1939  1940  1941  1942  1943  1944  1945  1946  1947  1948  1949  1951  1951 a  1952  1953  1954  1955  1956  1957  1958  1959  1960  1961  1962  1963  1964  1965  1966  1967  1968  1969  1970  1971  1972  1973  enron property & services corp .  from : joann holloway 01 / 07 / 2000 02 : 04 pm  to : shirley crenshaw / hou / ect @ ect  cc :  subject : re : rent r / c updates - 19 th floor & 29 th floor  shirley ,  although the rent for your locations on the 19 th floor has been updated , i ' ve  just received a relocation update for some folks moving from the 45 th floor  to the 19 th floor tonight . the odd thing is that among many other locations ,  the following locations were included ( which you ' ve already requested be  assigned to 0011 / 100038 ) :  eb 1930  eb 1931  eb 1932  eb 1933  eb 1934  eb 1935  eb 1936  please let me know if they should stay assigned to your group or should they  be assigned to this other group ' s r / c .  thank you .  jo ann  x 35957  enron property & services corp .  from : joann holloway 01 / 05 / 2000 08 : 47 am  to : shirley crenshaw / hou / ect @ ect  cc : ( bcc : joann holloway / epsc / hou / ect )  subject : rent r / c updates - 19 th floor & 29 th floor  shirley ,  the following locations on the 29 th floor are still assigned to 0011 / 100038 .  they were not listed on the december 17 th churn relocation request . so , are  the personnel in these locations still reporting to 0011 / 100038 or are they  moving later . please advise :  eb 2963 a  eb 2963 b  eb 2964 a  eb 2965 a  eb 2965 b  eb 2966 a  eb 2966 b  eb 2966 c  eb 2966 d  eb 2970 c  eb 2971 a  eb 2975 a  eb 2975 b  the following location on the 19 th floor are now assigned to 0011 / 100038 :  eb 1928  eb 1929  eb 1929 a  eb 1930  eb 1930 d  eb 1931  eb 1932  eb 1933  eb 1934  eb 1935  eb 1936  eb 1938  eb 1941  eb 1942  eb 1943  eb 1944  eb 1945  eb 1947  eb 1949  thank you .  jo ann holloway  x 35957\",0\n\"Subject: re : marketpoint license agreement  john ,  fyi  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 11 / 27 / 2000  03 : 31 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" dale m . nesbitt \"\" on 11 / 27 / 2000 02 : 51 : 54 pm  please respond to  to :  cc :  subject : re : marketpoint license agreement  vince :  i will send you our contract for the week long engagement . the way we do it  is send out our time and materials contract , which has a space for  individual task statements . i then put in a task statement for the week  long project at the $ 12 k level so that the costs and risks are capped for  you . look for it in the next day or two .  with regard to the long run and short run gas models , they are both  implemented in the same software system . neither is a prerequisite for  running the other , but both operate the same way and the sum of the two  consumes approximately the same resources are either individually .  i plan to have an extended visit in houston beginning one week from today  and lasting through the following wednesday . ( intensively tutoring my  daughter for her first semester economics finals at rice . she certainly  should have gotten a better looking tutor . ) that will make it very easy to  come by and finalize whatever needs to be finalized with you that week .  with her in houston , i spend a good bit of time there .  look for the stuff in the next day or two . i look forward to working with  you and your colleagues .  thanks  dale  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : monday , november 27 , 2000 10 : 44 am  to : dale . nesbitt @ worldnet . att . net  cc : vince . j . kaminski @ enron . com  subject : re : marketpoint license agreement  dale ,  thanks for your message . in our phone conversation before the meeting you  mentioned  another contractual arrangement under which we could work with your  company employees on a case - study .  the cost of a weekly project would be $ 12 , 000 that would be applied to the  purchase price should  we go ahead and decide to acquire the software . this project would allow us  to evaluate the model and  come up with an estimate of the manpower necessary to support the model  internally .  please , let me know more about this option .  we are primarily interested in a long - term natural gas model and the  database for north america .  unless a familiarity with the short term model is a prerequisite , we don ' t  have resources to spend too much time on it .  of course , a trading desk may be interested in the short term  version of the model . i shall talk to them about it .  vince  \"\" dale m . nesbitt \"\" on 11 / 13 / 2000 06 : 00 : 05 pm  to : , \"\" vince . j . kaminski \"\"  cc :  subject : marketpoint license agreement  john / vince :  i really enjoyed the meeting the other day with you and a broad cross  section of your people . thank you very much for setting it up , and thank  you for giving me the opportunity to speak with your people .  as i mentioned to john , i am sending you the license paperwork for  marketpoint . i have attached our standard license agreement for your  consideration . as i mentioned , the license agreement covers the entire  bundled product , which includes  ? north american gas , short and long term  ? north american electricity , short and long term  ? world gas  ? western european gas  ? world oil  we are just finishing porting the world oil , world gas , and western  european  gas models over from our old ( now obsolete ) software system into  marketpoint , so they will not be fully tested and complete for a couple of  months . however , the gas and electricity models for north america are  presently complete and tested . that should allow us to give you an  attractive price before the full worldwide toolkit is available throughout  your worldwide business .  as i understood it , you will want the gas modeling capability first and  will  want to defer decisions on electric or other capability . as i mentioned at  the meeting , we are prepared to offer that for approximately  the fully  bundled price . as you read the license agreement , you will see that the  software licenses for $ 100 , 000 annually , the gas data for $ 5 , 000 , and the  electric data for $ 10 , 000 . marketpoint will agree to license you the gas  model plus the data for  the software license plus the data license for a  total of $ 55 , 000 annually . this is just under  the fully bundled price .  i  think that is consistent with the discussions at our meeting , and from  marketpoint ' s perspective would provide a great basis to move forward  together with enron . if or when enron ever desires to \"\" scale up \"\" to  another  model or model ( s ) from the marketpoint portfolio , we will simply scale you  up to the entire license agreement . this will allow you to decouple the  gas  decision from any other decisions you might make . ( i will be glad to put  this additional pricing provision into the agreement if you decide to move  forward . )  i felt i was able to communicate the philosophy , scope , and operation of  our  approach during the meeting and to deliver you much of the information you  might need to evaluate whether marketpoint meets your needs . i thought you  were able to see the depth and sophistication of the product yet at the  same  time its simplicity and effectiveness . i thought you were able to see the  benefits of the marketpoint dimension of economic equilibrium as a  complement and supplement to other approaches you will assuredly use . i  would be interested in your impressions and those of your colleagues . i  look forward to your response and to moving ahead together . we view you as  a very important prospective customer and client and will work with you to  earn and secure your business .  if you decide to license marketpoint , we can arrange to transfer and mount  marketpoint and the short term narg model ( which is the model we suggest  you  begin with ) and travel to houston to deliver our 1  day training seminar .  our clients are usually very fluent after that 1  day training seminar .  thereafter , we would want you to work with the short term narg model for a  few weeks while you get up to speed , very fluent , and very comfortable  before you take delivery of the longer term version of narg several weeks  later .  thanks again , and all the best . if there is some item from the meeting  that  i might have forgotten to send , please remind me . my notes don ' t show  anything , but i was speaking a lot rather than writing notes during the  meeting and might have overlooked something someone wanted .  dale nesbitt  president  marketpoint inc .  27121 adonna ct .  los altos hills , ca 94022  ( 650 ) 218 - 3069  dale . nesbitt @ marketpointinc . com  ( see attached file : license . doc )\",0\n\"Subject: california update 3 / 15 / 01  executive summary  ? davis might concede to rate hikes for future power consumption but not for  past utility debt  ? davis and pg & e negotiations at a standstill , sticking point is net short  for pg & e this summer  ? as the days go on with no word of a secured deal , involuntary bankruptcy  chances increase significantly among small generators and qfs  ? ferc would probably approve transmission deal but with several conditions  for california  california public utility commission rate increases  today may be the turning point as the ca puc reviews the size of the  department of water resources ( dwr ) rate increase to be passed along to  consumers on their electricity bills . until now , davis has considered rate  hikes to be political suicide , but there may be some relief for him from  consumer groups . sources indicate that one of california ' s main consumer  advocate leaders may tolerate rate increases for future power consumption ,  but remains adamant about not raising rates to cover past utility debt . dwr ,  which is currently buying power on behalf of the state , needs more income to  securitize the planned $ 10 b bond issue that is key part of davis ' plan to  sign long term power contracts . as dwr continues to spend $ 40 to $ 60 m every  day on power purchases , a well placed source informed us the dwr is  essentially bankrupt . it currently has no money for normal activities such  as ordering supplies , purchasing new equipment , etc . the department of  finance is forwarding dwr money from where ever it can ( parks , other  programs ) to purchase power , but dwr ' s hands are tied until revenue bonds are  issued . the california state treasurer phil angelides will be submitting a  recommendation on rate increases in order to secure revenue and cover $ 10  billion worth of state bonds .  davis & pg & e at odds  sources report that davis and pg & e negotiations are facing two difficult  challenges : 1 ) pg & e wants 2 . 9 times book , which is far more than consumer  groups recommend for the sale of its transmission lines ( sce accepted 2 . 3 ) ,  and 2 ) pg & e needs relief from davis for pg & es legal responsibility to be the  ultimate power purchaser for the state , and at this point davis wants to  limit further state energy power purchases ( especially for summer ) . the  utilities refuse to sign a deal which will leave them billions of dollars  further in the red ( $ 3 to $ 4 b ) and pg a measure that if accomplished would  provide davis with even less negotiating power .  with all this activity , davis is starting to lose support in the state  legislature . sources report increasing tension between the governor and  state senate president pro - tem john burton . burton has just announced a  special senate committee will investigate the generators for evidence of  price manipulation , and the state auditor is also planning an investigation .  davis increasingly realizes he has to protect any deal he signs against being  picked apart by the legislature and consumer groups later .  qf ' s most likely source of involuntary bankruptcy  sacramento insiders fear that a group of small generators will lose patience  and force bankruptcy on the utilities . sb 47 x may have been california ' s  qualified facilities last hope at avoiding an involuntary bankruptcy filing  against pg & e , socal ed , and sdg & e . the bill designed to cut the qf ' s costs  and provide them with a better rate structure is being held up in the state ' s  senate . sources indicate that a filing could come at anytime and further  investigations are underway to ferret out the most likely candidates .  out with hebert , in with wood  the bush administration favors replacing hebert , jr . with texas puc head pat  wood . there is an intense battle behind the scenes between senate republican  leader trent lott , who favors hebert , and president bush , who wants wood .  the administration would prefer wood because they do not want ferc to pick a  fight with davis which means bush might ultimately lose some western states  in 2004 . in effort to tone down the recent press reports , hebert has made  several token concessions to california , including $ 69 million worth of power  refunds and streamlining the federal permitting process for pipeline and  power plant installation .  it ' s is expected that ferc would most likely approve any transmission deal  that davis could complete but with a list of conditions . some conditions  might include bring the lines formally into the regional grid system as well  as other elements to pave the way for more dramatic administrative actions in  the west next year . the bush administration is opposed to price caps and  believes in free market solutions . the administration is also considering  whether it might be a good idea to privatize federally - owned assets such as  bpa .\",0\n\"Subject: spanish power option pricing  hi paul / cassim ,  further to our meeting yesterday regarding power options , that we may use to  capture short - term volatility from regulatory caps being adhered to or  broken , i have attached a spreadsheet that should assist in nailing down the  value .  arbitrary distribution  the first issue to address is converting the price scenarios for the average  of the q 2 - q 3 swap into a volatility equivalent . this is achieved by fitting  a normal distribution that matches the one specified for mean and standard  deviation . the graph below illustrates the method for the numbers discussed  yesterday . in this example , the annualised volatility is coming up as  approximately 23 % .  pricing & implied volatility  the pricing is as for a regular asian option . the payoff depends on the  average of the daily prices for spanish power for q 2 and q 3 . the valuation  using 23 % volatility is showing about 15 . 3 pta per kwh .  i will schedule a meeting to allow us to take this forward .  regards ,  anjam  x 35383  spreadsheet :\",0\n\"Subject: light switch for eb 1939  good morning all :  maureen raymond castaneda is officed in ebl 939 . she has terrible migraine  headaches which are made worse by light . we would like to get a price on  having an on / off switch installed in her room . as of now , they have removed  the light bulbs , but said that may not completely answer the problem as some  one may see that they are out and request they be replaced .  i think the answer ( if it is not too expensive ) would be to have a switch  installed .  please let me know .  our co . # is 0011 and our rc # is 100038 .  thanks !  shirley  3 - 5290\",0\n\"Subject: project  richard ,  i would like to inform you that we decided against participation in your  project .  thanks for your interest in having enron involved in the study .  vince kaminski\",0\n\"Subject: ena year end promotions nominations  as a follow on to the discussion at monday ' s staff meeting ;  attached is a summary of the manager and above promotion nominations made and  discussed during the december business review / pre - ranking meetings in ena ,  which were captured in the system .  promotions through to senior professional on the support side should already  have been communicated to the employees .  promotions to manager and director where agreed at the final ena performance  review meeting on december 14 and should be attached . these can be  communicated to the individuals , if you haven ' t already done so .  no ena wide promotion memo is planned , therefore please feel free to  communicate your departments promotions by separate memo if you believe  appropriate .\",0\n\"Subject: seismic data via satellite  i have attached a background piece to brief oil traders on this subject prior  to a possible meeting with them .  please give me any comments on 1 ) accuracy 2 ) completeness and 3 ) coverage  of the areas we want to explore .  as a side note , i found some info on the web stating current proven oil  reserves are 1 , 000 billion bbls . discovery of a 1 billion bbl field would  add only 0 . 1 % . while we will pursue the trading advantage option , it is not  looking promising that it has great short term value , given the long time  frame and high cost of bringing deep water reserves to market .  bob lee\",0\n\"Subject: pres . to delainy  sorry vince , please use this file instead of the earlier one .  krishna .\",0\n\"Subject: re : yo !  vince ,  here is a little more info on the book bob darden is writing that might be  useful in explaining who he is talking to at present .  john  > date : fri , 30 mar 2001 12 : 29 : 11 - 0600  > from : robert darden  > subject : re : yo !  > x - sender : \"\" robert darden \"\" ( unverified )  > to : \"\" john d . martin \"\"  > organization : the door  > x - mailer : mozilla 4 . 04 [ en ] c - flashnet ( win 95 ; i )  >  > you , sir , are a gentleman and a scholar .  > if the research director needs more info on the book , i can send him / her  > whatever they need :  > publisher : fleming h . revell ( a division of baker books )  > deadline : may 30  > people who we have already interviewed or who we have tentative  > agreements to interview :  > jerry conangelo , norm miller , dr . kenneth cooper , philip clements ,  > george gallup , ted benna , bob lawless , jack eckerd , truett cathey , ed  > bonneau , jay pifer , bill bailey etc . . .  > thanks again  > bob  >  > john d . martin wrote :  > >  > > at 11 : 35 am 3 / 30 / 01 - 0600 , you wrote :  > > > hi john - - i enjoyed our meeting yesterday . this looks very promising .  > > > meanwhile , as i mentioned at the table , i ' m getting a little nervous  > > > about the book that is due june 1 .  > > > one of the names on our \"\" wish \"\" list of interviewees for \"\" the business of  > > > heaven \"\" is ken lay at enron . ( yes , i ' ll try to get this for you today )  > > > would it be possible for you to give me a good address and phone number  > > > for mr . lay ' s office ?  > > > and may i mention your name in the cover letter ? ( certainly - - not that it  > > will necessarily help . i ' ll talk to the director of research about your  > > project and see if he can help )  > > > i would be forever indebted . i might even buy the next lunch .  > > > bob  > > > p . s . thanks for sharing your concerns about church yesterday , too . i ' m  > > > genuinely sorry things didn ' t work out better and feel more than a  > > > little embarrassed that i didn ' t work harder to make you guys feel more  > > > welcome and connected . on the other hand , please know that mary and i  > > > will always love you and consider you both friends . i know you ' ll be  > > > happy at lake shore - - even as we miss you at 7 th !  > > >  > > john d . martin  > > carr p . collins chair in finance  > > finance department  > > baylor university  > > po box 98004  > > waco , tx 76798  > > 254 - 710 - 4473 ( office )  > > 254 - 710 - 1092 ( fax )  > > j _ martin @ baylor . edu  > > web : http : / / hsb . baylor . edu / html / martinj / home . html  >  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: re : hello  david ,  another trip in the cards . you can catch me at the office on wed  or next week at home .  vince  \"\" walkup , david c ( houstonas as 582 ) \"\" on 04 / 03 / 2000  03 : 43 : 31 pm  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc :  subject : re : hello  i am tentatively planning on being in the woodlands wednesday . should i  stop by the house that night or do we need to get together tomorrow or  wednesday morning ?  david c . walkup  financial consultant  713 - 658 - 1685  800 - 456 - 9712  > - - - - - - - - - -  > from : vince . j . kaminski @ enron . com [ smtp : vince . j . kaminski @ enron . com ]  > sent : monday , april 03 , 2000 4 : 35 pm  > to : dwalkup @ pclient . ml . com  > subject : re : hello  >  >  > david ,  >  > can you stop by on wednesday ?  >  > i shall be gone for a few days after this day .  >  > vince  >  >  >  >  >  > \"\" walkup , david c ( houstonas as 582 ) \"\" on  > 04 / 03 / 2000  > 01 : 21 : 45 pm  >  > to : \"\" ' vincent kaminski ' \"\"  > cc :  > subject : hello  >  >  > hello , vince .  >  > i guess you are still traveling a lot . i just wanted to say hello and see  > when we can get together and look at getting some more money deposited  > into  > the cma for future investments .  >  > get back with me when you can .  > david c . walkup  > financial consultant  > 713 - 658 - 1685  > 800 - 456 - 9712  > _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  >  >  >  >  > caution : electronic mail sent through the internet is not secure and could  > be intercepted by a third party . for your protection , avoid sending  > identifying information , such as account , social security or card numbers  > to  > us or others . further , do not send time - sensitive , action - oriented  > messages , such as transaction orders , fund transfer instructions , or check  > stop payments , as it is our policy not to accept such items electronicall  >  >  >  >  >  >  caution : electronic mail sent through the internet is not secure and could  be intercepted by a third party . for your protection , avoid sending  identifying information , such as account , social security or card numbers to  us or others . further , do not send time - sensitive , action - oriented  messages , such as transaction orders , fund transfer instructions , or check  stop payments , as it is our policy not to accept such items electronicall\",0\n\"Subject: latest fall 2001 module schedule and calendar ( rev . c ) - placed in  your mailbox 4 - 5 - 01  students , faculty , and staff ,  a hard copy of the latest fall 2001 module schedule and calendar ( rev . c )  were placed in your mailbox on thursday . please review over the calendar  closely for changes made . i have also posted the latest fall 2001 module  schedule and calendar ( rev . c ) to embanet .  reminder : the jones graduate school does not always follow the university  calendar on scheduled breaks , exams , etc . . . . always refer to jones  graduate school information regarding breaks , exam schedules , etc . . . .  thanks ,  kathy  kathy m . spradling  mba program coordinator  jesse h . jones graduate school of management  rice university  6100 main street , ms 531  houston , texas 77005 - 1892  phone : ( 713 ) 348 - 3313  fax : ( 713 ) 348 - 5251  email : spradlin @ rice . edu  http : / / www . rice . edu / jgs  e - mail : spradlin @ rice . edu  http : / / www . ruf . rice . edu / ~ jgs /\",0\n\"Subject: re : houston research opportunity  tara :  thanks for the update . it seems anjam is playing hard ball a little . my  initial reaction is to be inflexible because it is a good offer , but on  second thoughts , could you please give me an idea of what is meant by a  12 - month assignment when you have a moment ? compensation , benefits ,  responsibilities , career path implications , etc .  many thanks !  regards ,  grant .\",0\n\"Subject: re : [ no subject ]  hi vince ,  this resume looks quite good . we may wish to talk to him on the phone .  however , now that david hoog has hired his own actuarial guys ( alex  tartakowski and larry markus ) from ace , i am not sure if they require support  on the actuarial side . with don black ( of global risk markets ) leaving  enron , i think the effort to develop power products for the insurance markets  is pretty much nonexistent , except for david hoog ' s product . the resume  still looks interesting , though .  vasant  - - - - - original message - - - - -  from : kaminski , vince  sent : friday , april 13 , 2001 3 : 56 pm  to : shanbhogue , vasant  subject : [ no subject ]  vasant , please , take a look at this eresume .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 13 / 2001  09 : 55 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  cathy lira @ enron  03 / 26 / 2001 11 : 12 pm  to : vkamins @ enron . com  cc :  subject : [ no subject ]  - - - - - - - - - - - - - - - - - - - - - - forwarded by cathy lira / na / enron on 03 / 26 / 2001 04 : 12  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" imccracken \"\" on 02 / 24 / 2001 04 : 02 : 11 pm  please respond to \"\" imccracken \"\"  to : grad _ programs @ enron . com  cc :  subject : [ no subject ]  dear sir / madam ,  i am a student in a master ' s programme in mathematical finance due to  graduate in august . my intention upon graduation is to work in a quantitative  capacity in the  power markets and to this end , i am including my resume in the hope that i  might be considered for any available position in your risk  management or structured products group requiring such mathematical skills .  i have addressed this email to your graduate programmes address but i am  unsure whether or not my candidacy would fall under the umbrella covered by  your associate programme . if this is not the case , any help in seeing that my  resume finds the correct destination would be greatly appreciated .  yours sincerely ,  ian mccracken  * get free , secure online email at http : / / www . ziplip . com / *  - iancv . doc >\",0\n\"Subject: re : followup from iris mack  hi ,  thanks for taking time out of your busy schedules to meeet with me on  the 28 th of december - especially during the holiday season .  i enjoyed meeting some of the research group ' s internal clients .  hope to be able to work with you in the future .  regards ,  iris mack  get your free download of msn explorer at http : / / explorer . msn . com\",0\n\"Subject: re : ll visa - anshuman shrivastava  vince : apparently neil mcgregor became upset when he received margaret  daffin ' s email . he is saying , however , that anshuman will only be in  houston for one month , and you had mentioned six months when we spoke  earlier . it really doesn ' t make any difference since he will need to get an  ll visa under either circumstance , but i thought you might want to see his  email .  molly  - - - - - - - - - - - - - - - - - - - - - - forwarded by molly magee / hou / ect on 01 / 24 / 2001 10 : 09  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  margaret daffin  01 / 24 / 2001 09 : 57 am  to : molly magee / hou / ect @ ect  cc :  subject : re : ll visa - anshuman shrivastava  molly : per our conversation today . please let me know the status so that i  can proceed with the visa process .  thanks  margaret  - - - - - - - - - - - - - - - - - - - - - - forwarded by margaret daffin / hou / ect on 01 / 24 / 2001  09 : 56 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  neil mcgregor @ enron _ development  01 / 24 / 2001 05 : 18 am  to : margaret daffin / hou / ect @ ect  cc : wade cline / enron _ development @ enron _ development  subject : re : ll visa - anshuman shrivastava  anshuman is not moving or immigrating to the us . we are allowing him to work  for a lmonth assignment in the us with enron . please carry out the necessary  approvals and visa ' s on this basis .  neil mcgregor  ceo dabhol power  margaret daffin @ ect  01 / 23 / 2001 10 : 31 pm  to : anshuman . srivastav @ enron . com  cc : molly magee / hou / ect @ ect , vince j kaminski / hou / ect @ ect , jane  allen / hou / ect @ ect , timothy callahan / na / enron @ enron , ranendra  sengupta / enron _ development @ enron _ development , wade  cline / enron _ development @ enron _ development , neil  mcgregor / enron _ development @ enron _ development @ ect , harsimran  subject : ll visa - anshuman shrivastava  anshuman : i have been asked to contact you regarding your possible move to  houston , texas . in order that i may begin the process of getting you an ll  immigration visa , i will need you to complete the attached visa questionnaire  and return it to me with copies of the following documents :  a copy of all pages of your passport , even if blank  copies of all previous us visas issued  an updated resume , showing months and years  copies of all diplomas and transcripts received  if you have dependent family members coming to the states with you , copies of  their passports  please send to my attention , via fedex to :  enron corp .  3 allen center , 3 ac 2026 a  333 clay street  houston , tx 77002  please call me with any questions you may have at 713 - 345 - 5083 .\",0\n\"Subject: re : various market data charges to the research group for february  2001  julie :  i talked to both maureen and tanya and neither one want this service and  have not been using it .  maureen told me that she told you a year ago that she did not want telerate  ( when she was supporting gary hickerson ' s group on 30 ) . if that is the case ,  we probably need a refund .  let me know if there is anything that can be done about this .  the only person in our group that wants telerate is jason sokolov and i  put in a request for that yesterday . please cancel everything else .  thanks !  shirley  from : julie pechersky / enron @ enronxgate on 04 / 09 / 2001 12 : 33 pm  to : shirley crenshaw / hou / ect @ ect  cc :  subject : re : various market data charges to the research group for february 2001  hi shirley ,  regarding telerate : i can cancel the service for both maurenn and tanya , but another name commonly used for the telerate application is bridge or bridgestation so you may want to just ask the two of them once more to be sure that they do not use it . just let me know and i will cancel billing  jason can get access to it by submitting an e - request for him for telerate . when you go into e - request and it is prompting you for what application to choose , type in the words market data and hit search . telerate will pop up as an option and within that choose the role basic energy . we will take care of it from there .  i will also remove hector campos from reuters . was there anyone else being charged for reuters services that are not needed ?  i will also remove clayton vernon . i do not see anything under the name brad amoine , is this the correct spelling of his name ? i will also find  out where shalesh ' s charges should be moved to .  thanks for updating us and let me know if there is anything else .  julie  - - - - - original message - - - - -  from : jackson , clifford  sent : wednesday , april 04 , 2001 1 : 44 pm  to : crenshaw , shirley  cc : pechersky , julie  subject : re : various market data charges to the research group for february 2001  hi shirley . i ' ve copied this to julie pechersky , who maintains the market data database , and will be able to make the user changes you request . she ' ll also be able to tell you how / when telerate can be enabled for mr . sokolov .  we get the billing data from her , so once it is correct there , it will be billed correctly .  cliff jackson  - - - - - original message - - - - -  from : crenshaw , shirley  sent : wednesday , april 04 , 2001 1 : 31 pm  to : jackson , clifford  cc : kaminski , vince  subject : various market data charges to the research group for february 2001  clifford :  in reviewing our february eis billing summary for co # 0413 , cc # 107043 ,  i have several questions .  telerate : ( february charges : $ 3 , 032 , 35 )  i polled the group and only one person has asked for telerate and he is  not shown being charged for it . that is jason sokolov . he would like to  have access to telerate . if you could let me know how to get that for him .  the largest percent of the telerate charges appear to be for maureen  raymond , who says that she does not use telerate . could she be accessing  some data that she does not know is telerate ? please let me know . if there  are individual accounts for telerate the only one we need is for jason sokolov ,  unless maureen ' s charges are for something that she does not know is telerate .  tanya tamarchenko does not need telerate and she has the second largest  percentage of the charges . anyway , the only telerate subscription we need is  for jason sokolov .  reuters : ( february charges : $ 405 . 96 )  no one in research uses reuters . i believe most of the charges are for hector  campos who used it when he was on the trading desk . when he rotated into the  research group he did not need it any longer , but is still being billed for it . please  remove from the research cost center .  the following individuals are no longer with enron or no longer with research  and their accounts should be removed from the research cost center .  clayton vernon no longer with the research group remove his lim / lim / excel and lim core charges from the research cost center  brad amoine no longer with enron remove his lim / lim / excel and lim core charges from the research cost center  shalesh ganjoo no longer with the research group remove his lim and lim core charges from the research cost center  i hope this is not too confusing !  please advise .  thanks !  shirley crenshaw\",0\n\"Subject: gas prices  vince -  1 . we can detect \"\" hoarding \"\" of pipeline capacity as an elevated basis against  the actual inflow .  2 . we can detect \"\" market power \"\" by dissociating the seller from the buyer ,  distinguishing between the physical \"\" cost \"\" in gas to run the generators and  the transmission cost in dollars , i . e . the basis .  3 . ( as you noted ) we can detect \"\" storage \"\" as the difference between inflow  and consumption .  it appears to me there are two time series needed for a straightforward model  of gas prices : flow rates at interconnects ( from telemetry ) and spot - market  prices . there is an elevated basis reflecting pipeline companies monopolizing  capacity , as well as hoarding of capacity by contracts . the dynamics of gas  prices reflect consumption demand changes due to changes in expectations for  the weather , as well as their impact on two highly strategic behaviors :  hoarding of pipeline capacity and storage of gas . we can \"\" calibrate \"\" the  price elasticity of demands for consumption and storage , and the price  elasticities of demand for transmission , as well as the extent of hoarding ,  from the two sets of numbers mentioned : flows and prices . what the basis  trader needs to understand are the incentives , and disincentives , for storage  and capacity - hoarding , in terms of the calibrated price - elasticities , and  each of these are as - if exotic call options at the consumption hub . finally ,  flows are \"\" explained \"\" by the model , and can be imputed from prices if  necessary , resulting in a purely stochastic model of the basis in terms of  the weather .  i believe the problem is quite tractable , and i would like to proceed with a  model .  clayton\",0\n\"Subject: entouch newsletter  business highlights  weather trading  the weather desk closed a 3 - year precipitation collar with payouts linked to  natural gas prices . the transaction hedges included asian options from the  gas market , precipitation floors from the weather market , and precipitation  insurance from the insurance market . eight companies were involved in the  transaction including the following enron companies : egm , ena , enron re , and  rmt . along with the hedges , the end result of the transaction is cheap  3 - year precipitation call options and precipitation dependent natural gas  call options for the weather desk .  houston pipe line company  on thursday , january 11 , american electric power ( nyse : aep ) announced that  they have executed a definitive agreement under which aep energy services gas  holding co . , a wholly owned subsidiary of aep , will acquire the stock of  houston pipe line co . from enron corp . included in this agreement are all of  the pipeline assets of hpl , as well as a 30 - year operating lease for the  bammel storage facility , the houston loop and the texas city loop .  in the news  \"\" enron is , in other words , the biggest , baddest b 2 b e - commerce company on the  planet , and its experience belies the idea that innovation is impossible in  large organizations . \"\" - - ecompany now , january / february 2001 .  brown bag  mark your lunch calendars now for the upcoming brown bag featuring gary  taylor , manager in weather trading . he will present an overview of the  weather risk management market . it \u0001 , s next thursday , january 18 ,  11 : 30 am - 12 : 30 pm , in 5 c 2 . rsvp today to ext . 5 - 7352 .  nuggets & notes  \"\" what am i missing ? ! \"\" - mike bradley , vice president / equity trading - egm  \"\" do something ! \"\" - david vitrella , manager / equity trading - egm  \"\" we may not do the most enrononline trades , but we do the largest \"\" - larry  gagliardi , director / oil products - egm  \u0001 & we have completed an efficient and successful transition from energy  outsourcing to steel . of course , as my dad used to say , \u0001 + talk ' s cheap , takes  money to buy whiskey . \u0001 , in 2001 , we ' ll let our p & l performance do the bulk of  the talking . \u0001 8 - tim battaglia , vice president / steel origination - eim  congratulations to william stuart , manager in currency trading and charla  stuart , manager in community relations . they are the proud parents of aaron  myles stuart , who was born january 9 and weighed 7 . 11 lbs .  sean keenan , associate in eim , and wife , katherine , are the proud parents of  william patrick , who was born january 1 and weighed 6 . 4 lbs .  carlos ruiz , associate in eim , and wife , maria , are excited to announce the  arrival of their new baby boy . cristobal ruiz was born on january 8 and  weighed 7 lbs .  welcome  new hires  ena - thomas barkley , rakesh bharati , delmar davis , andrew edison , brendan  fitzsimmons , patricia goode , michelle huber , ken lewchuk , wykena lipscomb ,  albert meyers , stacie mouton , victor munoz , wichai narongwanich , christopher  ordway , brent johnston , michael law , michelle wells , peter piorecki ,  eim \u0001 ) jill lafave  legal stuff  the information contained in this newsletter is confidential and proprietary  to enron corp . and its subsidiaries . it is intended for internal use only  and should not be disclosed .\",0\n\"Subject: 1 candidate and 2 interns  hi vince and molly .  here attached is one candidate who is particularly interested in having his  profile sent to vince . . . he is going to be traveling to ny from the uk soon  for 2 wks .  he specifically asked my partner at robertwalters in the uk to investigate  enron through my new relationship with you guys . he would be howard haughton ,  attached below ( cv ) .  the other 2 resumes are my students at the university of michigan . howard lin  received a 4 . 0 / 4 . 0 for his last term and will be willing to do whatever it  takes to intern at enron for june - aug . i have his picture included as well .  the second is sung , they are friends . howy will be done expected in may 2001  and sung in may 2002 . they are my favorite interns and i expect they can be  cultivated to the enron culture with no real cost to you ( a \"\" test drive  before committal . i have agreed to represent them and  shall take ownership , as they become graduate candidates upon their degree  completion .  i hope these attachment can represent my value and commitment to quality of  talent to enron .  thank you for your acceptance .  best wishes for the weekend .  jeff  * get free , secure online email at http : / / www . ziplip . com / *  - 00343938 alec . doc  - sungvince . doc  - howardagent 9498132241 . doc  - howardlin . gif\",0\n\"Subject: re : eci id for stinson  steve -  could you please escalate per our conversation  thank you  paula  - - - - - - - - - - - - - - - - - - - - - - forwarded by paula corey / enron communications on  01 / 21 / 2000 08 : 35 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  stinson gibner @ ect  01 / 21 / 2000 08 : 09 am  to : timothy morita - mcvey / enron communications @ enron communications @ enron  cc : paula corey / enron communications @ enron communications , jean mrha / enron  communications @ enron communications  subject : re : eci id for stinson  timothy :  i still have a problem . when i am on the eci network i cannot receive  email , and , even worse , i cannot even send email . this is not an  acceptable situation . i need to have a fully functional email account on  the eci side as well as the ena side . don ' t tell me that its against  policy because i know that ravi thuraisingham has already be set up this way  for months . i don ' t care if mail from one network is forwarded to the  other as i will have access in houston to both , but i can already see that i  need to have functional accounts on both sides , or it will be a continual  thorn in my side when travelling to portland , etc . . .  again thanks for your help on getting this set up correctly ,  - - stinson gibner  x 34748  from : timothy morita - mcvey @ enron communications on 01 / 19 / 2000 10 : 20 am pst  to : stinson gibner / hou / ect @ ect @ enron  cc :  subject : re : eci id  thanks stinson ,  that should give me what i need .  i understand that you will have two notes id ' s with the eci mail forwarded to  your \"\" stinson gibner / hou / ect @ ect @ enron \"\" address .  i should be able to complete this today ( later today )  thanks ,  timothy morita - mcvey  lotus notes administrator  enron communications , inc .  503 . 886 . 0390  timothy _ morita - mcvey @ enron . net  stinson gibner @ ect  01 / 19 / 00 09 : 07 am  to : timothy morita - mcvey / enron communications @ enron communications  cc :  subject : eci id  i must have written down your phone number incorrectly , it did not work .  regarding my user id on the eci network , i would be set up in the same way  as ravi thuraisingham with an id on both the ena and the eci networks . i am  in the corp . research group but am spending about 80 % of my time in support  of eci in the trading and origination areas .  feel free to contact me if you need any further info .  - - stinson  houston x 34748\",0\n\"Subject: re : telephone interview with the research group  fyi :  praveen will be available on thursday , may 4 at 10 : 00 am houston time .  call him at 301 / 422 - 0889 .  thanks !  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 28 / 2000  08 : 05 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  mellacheruvu venkata praveen on 04 / 27 / 2000 08 : 58 : 47 pm  to : shirley . crenshaw @ enron . com  cc :  subject : re : telephone interview with the research group  dear ms . crenshaw ,  the interviewers can call me at ( 301 ) 422 0889 . please do inform  them accordingly . thank you for setting up the interview .  regards ,  praveen mellacheruvu .  on thu , 27 apr 2000 shirley . crenshaw @ enron . com wrote :  >  > praveen :  >  > i have scheduled the conference call for thursday , may 4 at 11 : 00 am ( est )  > 10 : 00 am ( central ) . it will be better if they can call you . please le me  > know  > what number you can be reached at .  >  > if this is not allright , please let me know .  >  > thanks and have a great day !  >  > shirley crenshaw  >  >\",0\n\"Subject: corrected : new update on ppi model for inflation book  dear all ,  i followed up on the suggestions at the conference call as follows : -  1 ) use less data  unfortunately , kicking out only 1990 makes the overall equation a lot less  robust , in fact dramatically so , and so eliminates the possibility of using  less data . the model tested was the rpi ( month + 15 ) ppi pre - empts the moves in rpi by about 8 months . the  magnitude of the oscillations is also reduced . this shows that if we had  more detail in our rpi forward curve , then the ppi model would reflect those  peaks and humps adequately .  conclusion  i therefore propose that we use the model that incorporates rpi , rpi [ t + 15 ]  and deviations of brent crude from long - term average . the new model is  plotted below in burgundy and can be compared to the old ppi which is  depicted in blue .  the new model achieves the two main objectives of the ppi curve : it is  significantly more robust and stable than the existing one , and it is  considerably less sensitive to the input coefficients , which results in us  having more confidence in our monthly p it was found that deviations of dated brent crude from the  long - term average of $ 18 . 80 was the best form of the variable to use ( for  predictions the brent forward curve produced by the global products group is  used ) . the three new equations developed were : -  pllu ( t ) = a . rpi ( t ) + b . rpi ( t + n ) + c . ( datedbrentcrude - 18 . 8 ) + constant ,  where n is 14 , 15 or 16  [ reddish curves ]  r - squared approx 0 . 49  f - stat approx 32  the chart below shows what our projected pllu curve would be given this  equation , and also the three best relations from before which were based upon  current and future rpi :  pllu ( t ) = a . rpi ( t ) + b . rpi ( t + n ) + constant , where n is 14 , 15 or 16  [ greenish curves ]  r - squared approx 0 . 47  f - stat approx 45  comparison of models  as you can see , the two equations differ in the very short - term and very  long - term ; the inclusion of deviations of brent crude leads to short - term  predictions of 3 . 0 % to 3 . 2 % over the next six months . the greenish curves  predict pllu in the range of 2 . 5 % to 2 . 8 % over the next six months .  the curves are then very similar until 2009 , when the models including crude  break - away to the upside , relative to the falling rpi curve . the model based  purely on rpi hugs the rpi curve much more closely in the longer term . this  is only important to the extent that we have large positions beyond 2009  ( which we don ' t ) .  suggestion  what could be useful now is a differently - specified model designed to  forecast only the next 3 months , using auto - regressive or auto - regressive  error terms . this model would be far more accurate in the near - term , and we  could include this information onto the front of this long - term model . this  may be useful , despite the fact that most of our exposure is in future time  buckets .  back - testing  all the models give similar visual and statistical performance over the data  sample used ( based mainly on 1990 s \"\" new paradigm \"\" economy ) .  hopefully we can discuss these and other points later in the tele - conference ;  your ideas on this would be appreciated .  regards ,  anjam  x 35383\",0\n\"Subject: re : executive program on credit risk modeling  tanya ,  please , ask him to make the arrangements .  vince  tanya tamarchenko  05 / 25 / 2000 11 : 19 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : executive program on credit risk modeling  yes , i think it is useful for vincent to attend the program .  tanya .  vince j kaminski  05 / 22 / 2000 09 : 50 am  to : tanya tamarchenko / hou / ect @ ect  cc :  subject : executive program on credit risk modeling  tanya ,  another thought .  should vincent go as well ?  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 05 / 22 / 2000  09 : 52 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  05 / 22 / 2000 08 : 10 am  to : tanya tamarchenko / hou / ect @ ect  cc :  subject : executive program on credit risk modeling  fyi  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 05 / 22 / 2000  08 : 12 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" kashiwamura , shelby \"\" on 05 / 18 / 2000  02 : 03 : 19 pm  to : \"\" isero , alicia \"\" , \"\" kashiwamura , shelby \"\"  cc : ( bcc : vince j kaminski / hou / ect )  subject : executive program on credit risk modeling  subject : announcement : executive program on credit risk modeling  credit risk modeling for financial institutions  october 15 - 20 , 2000  at stanford university business school  risk management specialists , stanford business school professors of finance  darrell duffie and kenneth singleton will be repeating their successful  executive program on credit risk pricing and risk management for financial  institutions . the course is created for risk managers , research staff , and  traders with responsibility for credit risk or credit - related products ,  including bond and loan portfolios , otc derivative portfolios , and credit  derivatives .  this program includes :  * valuation models for defaultable bonds , otc derivatives , and credit  derivatives , with empirical applications to corporate and sovereign markets  * empirical and theoretical assessments of models for measuring credit  risk , with correlation , for portfolios  * the strengths and limitations of current practice in credit risk  measurement  * practical issues in implementing credit modeling and risk systems  * estimation of default and transition probabilities , and the  correlations among the default risks of publicly traded companies , from  historical data  application form :  credit risk modeling for financial institutions  stanford , october 15 - 20 , 2000  this form may be completed and returned by email , or may be printed and sent  by fax to :  stanford gsb executive education programs  fax number : 650 723 3950  you may also apply and see more detailed information by visiting our web  site at :  www . gsb . stanford . edu / exed / crm  applications will be acknowledged upon receipt . if you have not received an  acknowledgement within two weeks , please contact us .  please complete all sections . all information is kept strictly confidential .  name :  put an x beside one , please : male : female :  citizenship :  job title :  company :  your company ' s main activity :  business mailing address :  business phone ( all codes please ) :  business fax :  email address :  home address :  home phone :  nickname for identification badge :  emergency contact name :  emergency contact phone :  title of person to whom you report :  your job responsibilities and experience related to this course : ( please  provide a brief job summary here , or attach and send a biographical summary  containing information relevant to your purpose and qualifications for the  course . )  college or university education : please list , by degree :  college or university dates degree granted  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  please note :  all classes and discussions are conducted in english .  in order to reserve a place in the course , the program fee of us $ 7 , 500 is  due upon notification of acceptance . this fee covers the tuition , single  room , meals , and all course materials ( including a proprietary manuscript on  credit risk pricing and measurement ) .  our refund policy is available upon request .  please state the source from which you heard about this course :  name and date :  if you would like a hard copy brochure and application form , please contact :  ( make sure to include your mailing address )  shelby m . kashiwamura  program manager  executive education  stanford graduate school of business  ( 650 ) 723 - 9356 phone  ( 650 ) 723 - 3950 fax  kashiwamura _ shelby @ gsb . stanford . edu\",0\n\"Subject: re : resume  vince ,  paulo and i talked to mr . zhang on the phone . he is currently with  kock equity trading and formly a quant supporting power trading .  his power market experience could be valuable to us .  i would recommend to bring him for an on - site interview .  since we get more demanding power projects , alex needs some help .  zimin  vince j kaminski  03 / 14 / 2001 10 : 06 am  to : zimin lu / hou / ect @ ect  cc :  subject : resume  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 14 / 2001  10 : 07 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  marshall brown on 03 / 09 / 2001 07 : 46 : 22 am  to : vince kaminski  cc :  subject : resume  vince ,  how are you . this candidate would be interested in any positions in  your group .  regards ,  marshall brown  vice president  robert walters associates  tel : ( 212 ) 704 - 0596  fax : ( 212 ) 704 - 4312  mailto : marshall . brown @ robertwalters . com  http : / / www . robertwalters . com  >  caution : electronic mail sent through the internet is not secure and could  be intercepted by a third party .  this email and any files transmitted with it are confidential and  intended solely for the use of the individual or entity to whom they  are addressed . if you have received this email in error please notify  the system manager .  this footnote also confirms that this email message has been swept by  mimesweeper for the presence of computer viruses .  - zhan _ ren . doc\",0\n\"Subject: re : installation of new programs  i gave you local admin rights on your laptop yesterday . what you have to do  is to log into the laptop using the local  machine account . the id and the password is the same as your corp login now .  the password on the local account will  never change . if you have a minute today i will show you how . let me know a  time .  phillip randle  desktop support specialist x 39665  - - - - - original message - - - - -  from : kaminski , vince  sent : tuesday , may 01 , 2001 5 : 17 pm  to : randle , phillip c .  cc : kaminski , vince  subject : installation of new programs  phillip ,  how can i install new programs on my laptop , without  the administrator ' s privileges ?  one example : when i travel i use aol to get access to my mail  and to communicate with the office . windows 2000 does not allow  me to install it .  also , i have my private statistical software  i often use when i work at night during business trips .  i would like to load it as well .  vince\",0\n\"Subject: re : telephone interview with the enron corp . research group  since several of you will be out on the 6 th , we have moved the telephone  interview for marshall yan to tuesday , the 5 th at 1 : 00 pm .  thanks !  shirley  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 11 / 29 / 2000  03 : 22 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" jingming ' marshall ' yan \"\" on 11 / 29 / 2000 03 : 16 : 16 pm  to : shirley . crenshaw @ enron . com  cc :  subject : re : telephone interview with the enron corp . research group  ms . crenshaw ,  tuesday the 5 th is ok with me . i will talk to you then .  marshall  on wed , 29 nov 2000 shirley . crenshaw @ enron . com wrote :  >  > hi marshall :  >  > i have some unfortunate news . several of the interviewers will be  > traveling  > next week and they have had to schedule their return on wednesday the  > 6 th . would you be able to do the telephone interview on tuesday , the  > 5 th instead ? the same time 1 : 00 pm houston time .  >  > please let me know as soon as possible .  >  > sorry for the change !  >  > regards ,  >  > shirley crenshaw  >  >  >  >  >  >  >  >  > \"\" jingming ' marshall ' yan \"\" on 11 / 28 / 2000 11 : 30 : 20 pm  >  > to : shirley . crenshaw @ enron . com  > cc :  > subject : re : telephone interview with the enron corp . research group  >  >  > ms . crenshaw ,  >  > thank you for the arrangement . i will talk to you then .  >  > marshall  >  > on tue , 28 nov 2000 shirley . crenshaw @ enron . com wrote :  >  > >  > > marshall :  > >  > > thanks for responding so quickly . i have scheduled the following  > > interview :  > >  > > wednesday , december 6 - 1 : 00 pm houston time . it will last approximately  > > 1 hour . we will call you at ( 605 ) 497 - 4045 unless otherwise instructed .  > >  > > if you have any questions , please feel free to contact me at  > 713 / 853 - 5290 .  > >  > > best regards ,  > >  > > shirley crenshaw  > >  > >  > >  > >  > >  > >  > >  > >  > > \"\" jingming ' marshall ' yan \"\" on 11 / 28 / 2000 12 : 59 : 55 pm  > >  > > to : shirley . crenshaw @ enron . com  > > cc : vince . j . kaminski @ enron . com  > > subject : re : telephone interview with the enron corp . research group  > >  > >  > > ms . crenshaw ,  > >  > > thank you very much for the message . i am very interested in the  > > opportunity to talk to personnel from the research group at enron .  > between  > > the two days you suggest , i prefer wednesday 12 / 6 . considering the  > > two - hour time difference between california and texas , 11 : 00 am pacific  > > time ( 1 : 00 pm your time ) seems to be a good slot . however , i am open most  > > of the day on 12 / 6 so if some other time slot is prefered on your end ,  > > please let me know .  > >  > > thanks again . i look forward to talking to you and your  > > colleagues .  > >  > > jingming  > >  > > on tue , 28 nov 2000 shirley . crenshaw @ enron . com wrote :  > >  > > > good afternoon jingming :  > > >  > > > professor wolak forwarded your resume to the research group , and  > > > they would like to conduct a telephone interview with you , sometime  > next  > > > week , at your convenience . the best days would be tuesday , 12 / 5 or  > > > wednesday , 12 / 6 .  > > >  > > > please let me know which day and what time would be best for you and  > > > they will call you . let me know the telephone number that you wish to  > be  > > > contacted at .  > > >  > > > the interviewers would be :  > > >  > > > vince kaminski managing director and head of research  > > > vasant shanbhogue vice president , research  > > > lance cunningham manager , research  > > > alex huang manager , research  > > >  > > > look forward to hearing from you .  > > >  > > > best regards ,  > > >  > > > shirley crenshaw  > > > administrative coordinator  > > > enron research group .  > > > 713 - 853 - 5290  > > >  > > >  > > >  > >  > > - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  > > jingming \"\" marshall \"\" yan jmyan @ leland . stanford . edu  > > department of economics ( 650 ) 497 - 4045 ( h )  > > stanford university ( 650 ) 725 - 8914 ( o )  > > stanford , ca 94305 358 c , economics bldg  > > - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  > > if one seeks to act virtuously and attain it , then what is  > > there to repine about ? - - confucius  > >  > > _ ? oo ? ? ooo ? ? t \u0015 xo - ? ? - - \u0014 ? ?  > >  > >  > >  > >  > >  > >  > >  >  > - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  > jingming \"\" marshall \"\" yan jmyan @ leland . stanford . edu  > department of economics ( 650 ) 497 - 4045 ( h )  > stanford university ( 650 ) 725 - 8914 ( o )  > stanford , ca 94305 358 c , economics bldg  > - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  > if one seeks to act virtuously and attain it , then what is  > there to repine about ? - - confucius  >  > _ ? oo ? ? ooo ? ? t \u0015 xo - ? ? - - \u0014 ? ?  >  >  >  >  >  >  >  jingming \"\" marshall \"\" yan jmyan @ leland . stanford . edu  department of economics ( 650 ) 497 - 4045 ( h )  stanford university ( 650 ) 725 - 8914 ( o )  stanford , ca 94305 358 c , economics bldg  if one seeks to act virtuously and attain it , then what is  there to repine about ? - - confucius  _ ? oo ? ? ooo ? ? t \u0015 xo - ? ? - - \u0014 ? ?\",0\n\"Subject: re : carnegie interviews super friday  vince ,  thank you very much but i ended up finding interviewers for all the time  slots . paulo has volunteered to interview for 1 hour , thank you for  suggesting his name .  kristin  vince j kaminski @ ect  01 / 17 / 2001 02 : 00 pm  to : kristin gandy / na / enron @ enron  cc : kevin kindall / corp / enron @ enron , alex huang / corp / enron @ enron , paulo  issler / hou / ect @ ect , bob lee / na / enron @ enron , vince j kaminski / hou / ect @ ect  subject : re : carnegie interviews super friday  kristin ,  i shall be tied up with the wharton group all day friday .  i am forwarding the message to some members  of the research group . i hope some of them will be available .  vince  p . s . to the research group . can you , please , help kristin ?  enron north america corp .  from : kristin gandy @ enron 01 / 16 / 2001 02 : 03 pm  to : alyse herasimchuk / na / enron @ enron  cc : vince j kaminski / hou / ect @ ect , ann korioth / enron communications @ enron  communications , terry yamada / corp / enron @ enron , traci warner / enron  communications @ enron communications , erik simpson / hou / ect @ ect , laura  howenstine / enron communications @ enron communications , sarah  wesner / enron @ enronxgate  subject : re : carnegie interviews super friday  okay group it is tuesday and we have heard from no volunteers . we only need  30 minutes of your time . is any one available on this friday to interview ?  please help !  kristin  from : alyse herasimchuk 01 / 12 / 2001 03 : 55 pm  to : vince j kaminski / hou / ect @ ect , ann korioth / enron communications @ enron  communications , terry yamada / corp / enron @ enron , traci warner / enron  communications @ enron communications , erik simpson / hou / ect @ ect , laura  howenstine / enron communications @ enron communications , sarah wesner / corp / enron  cc : kristin gandy / na / enron @ enron  subject : carnegie interviews super friday  we have one last group of candidates coming in for final round interviews on  friday , january 19 th . we need interviewers for half a day ( 9 : 00 am to 11 : 15  am ) . please let me know if you can be available for the entire morning or  what times you could be available :  9 : 00 am - 9 : 30  9 : 35 am - 10 : 05  10 : 10 am - 10 : 40  10 : 45 am - 11 : 15  i appreciate any help you can offer in submitting names for those who may be  able to interview if you can not . thanks !  alyse herasimchuk  recruiting coordinator  associate / analyst program  57339\",0\n\"Subject: resume - jeff andrews  vince ,  attached is the evaluation form and resume for your interview w / jeff andrews  this afternoon at 5 pm . i will bring him to your office at that time .  jeff is interviewing for a research position within the coal group . please  feel free to contact if there are any questions .  thanks  chris williams  ena staffing  x 39866\",0\n\"Subject: re : telephone interview  hi darlene :  vince kaminski and the research group would like to bring todd perry in  for an interview .  they have already had a \"\" telephone interview \"\" and feel like he may be a  good fit somewhere in the research group . a copy of his resume is attached .  he will be able to come on friday , june 2 .  please contact him and arrange his travel . when this is completed , call  me and we will set up the interview schedule .  the interviewers would be :  vince kaminski  stinson gibner  krishna krishnarao  grant masson  zimin lu  vasant shanbhogue  if you have any questions , please call me .  thanks !  shirley  todd a . perry  - resume 2 . doc  todd a . perry  department of finance 541 . 346 . 1341 ( voice )  lundquist college of business 541 . 346 . 3341 ( fax )  1208 university of oregon  eugene , or 97403 - 1208  http : / / darkwing . uoregon . edu / ~ taperry\",0\n\"Subject: re : preface for book  julie ,  no problem . it ' s your call but chris should also be mentioned as number one .  vince  \"\" julie \"\" on 08 / 03 / 2000 03 : 06 : 28 pm  to : \"\" vince j kaminski \"\"  cc :  subject : re : preface for book  vince ,  thanks for this . ? ?  ?  are you ok with us using your name for this ? ?  ?  julie  - - - - - original message - - - - -  from : vince j kaminski  to : julie @ lacima . co . uk  sent : wednesday , august 02 , 2000 2 : 11 pm  subject : re : preface for book  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 08 / 02 / 2000  08 : 16  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  08 / 02 / 2000 08 : 09 am  to : ? ? \"\" julie \"\" @ enron  cc : ? ? vince j kaminski / hou / ect @ ect , grant masson / hou / ect @ ect  subject : ? re : preface for book ? ( document link : vince j kaminski )  julie ,  the introduction looks fine . i have made some cosmetic changes  ( typos and split infinitives that slipped by ) . you can safely ignore most of  them .  english is not even my second language .  the corrections are in pink .  vince  ( see attached file : introo 802 . doc )  \"\" julie \"\" on 08 / 01 / 2000 07 : 43 : 10 am  to : ? ? \"\" vincejkaminski \"\"  cc :  subject : ? preface for book  vince ,  hope you are well .  we spoke a while ago about who should write the preface for the book , and ?  you  kindly offered that you would provide this . is this still ? possible ? we  realise that you are extremely busy , so chris and les went ? ahead and wrote  something , which is below , and if you want to review , change or ? re - write the  preface , that would be very appreciated . let me know ? what your thoughts  are .  thanks ,  julie  ( we ' re getting close )  preface  one of our main objectives in ? writing energy derivatives : pricing and risk  management has been to bring ? together as many of the various approaches  for the  pricing and risk management ? energy derivatives as possible , to discuss  in - depth  the models , and to show how ? they relate to each other . in this ? way we hope  to  help the reader to analyse the different models , price a wide ? range of  energy  derivatives , or to build a risk management system which uses a ? consistent  modelling framework . we ? believe that for practitioners this last point is  very  important and we continue ? to stress in our articles and presentations the  dangers of having flawed risk ? management and giving arbitrage opportunities  to  your competitors by using ? ad - hoc and inconsistent models for different  instruments and markets ( see also others who propose consistent ? models ? ) .  however , it is not ? our wish to concentrate on one particular model or  models ,  at the exclusion of ? the others because we believe that the choice should  rest  with the user ? ( although it will probably be clear from our discussions the  model ( s ) we ? prefer ) . we therefore try and give ? as clear account as possible  of the advantage and disadvantages of all the ? models so that the reader can  make an informed choice as to the models which ? best suit their needs .  in order to meet our objectives the ? book is divided into 11 chapters . ? in  chapter 1 we give an overview of the fundamental principals needed to ?  model and  price energy derivatives which will underpin the remainder of the ? book . in  addition to introducing ? the techniques that underlie the black - scholes  modelling framework we outline ? the numerical techniques of trinomial trees  and  monte carlo simulation for ? derivative pricing , which are used throughout the  book .  in chapter 2 we discuss the ? analysis of spot energy prices . as ? well as  analysing empirical price movements we propose a number of processes ? that  can  be used to model the prices . ? we look at the well - know process of geometric  brownian motion as well as ? mean reversion , stochastic volatility and jump  processes , discussing each and ? showing how they can be simulated and their  parameters estimated .  chapter 3 , written by vince ? kaminski , grant masson and ronnie chahal of  enron  corp . , discusses volatility ? estimation in energy commodity markets . ? this  chapter builds on the previous one . it examines in detail the methods , ?  merits  and pitfalls of the volatility estimation process assuming different ? pricing  models introduced in chapter 2 . ? examples from crude , gas , and electricity  markets are used to illustrate ? the technical and interpretative aspects of  calculating volatility .  chapter 4 examines forward curves ? in the energy markets . although ? such  curves  are well understood and straight - forward in the most financial ? markets , the  difficulty of storage in many energy markets leads to less well ? defined  curves .  in this chapter we ? describe forward price bounds for energy prices and the  building of forward ? curves from market instruments . we ? outline the three  main  approaches which have been applied to building forward ? curves in energy  markets ; the arbitrage approach , the econometric approach , and ? deriving  analytical values by modelling underlying stochastic factors .  chapter 5 presents an overview of ? structures found in the energy derivative  markets and discusses their uses . examples of products analysed in this  chapter include a variety of swaps , caps , floors and collars , as well as  energy  swaptions , compound options , asian options , barrier options , lookback  options ,  and ladder options .  chapter 6 investigates single and ? multi - factor models of the energy spot  price  and the pricing of some standard ? energy derivatives . closed form ? solutions  for forward prices , forward volatilities , and european option prices ? both on  the spot and forwards are derived and presented for all the models in ? this  chapter including a three factor , stochastic convenience yield and interest  rate model .  chapter 7 shows how the prices of ? path dependent and american style options  can  be evaluated for the models in ? chapter 6 . simulation schemes are ? developed  for the evaluation of european style options and applied to a variety ? of  path  dependent options . in order ? to price options which incorporate early  exercise  opportunities , a trinomial ? tree scheme is developed . this tree ? is built to  be  consistent with the observed forward curve and can be used to ? price exotic  as  well as standard european and american style options .  chapter 8 describes a methodology ? for valuing energy options based on  modelling  the whole of the market observed ? forward curve . the approach results ? in a  multi - factor model that is able to realistically capture the evolution of a  wide range of energy forward curves . ? the user defined volatility structures  can be of an extremely general ? form . closed - form solutions are ? developed  for  pricing standard european options , and efficient monte carlo ? schemes are  presented for pricing exotic options . the chapter closes with a discussion of  the valuation of american style options .  chapter 9 focuses on the risk ? management of energy derivative positions . ?  in  this chapter we discuss the management of price risk for institutions ? that  trade options or other derivatives and who are then faced with the problem ?  of  managing the risk through time . ? we begin with delta hedging a portfolio  containing derivatives and look ? at extensions to gamma hedging ?  illustrating  the techniques using both spot and ? forward curve models . the general ? model  presented in chapter 8 is ideally suited to multi - factor hedging of a ?  portfolio  of energy derivatives and this is also discussed .  chapter 10 examines the key risk ? management concept of value at risk ( var )  applied to portfolios containing ? energy derivative products . after ?  discussing  the concept of the measure , we look at how the key inputs ? ( volatilities ,  covariances , correlations , etc ) can be estimated . we then compare the fours  major ? methodologies for computing var ; delta , delta - gamma , historical  simulation and ? monte - carlo simulation , applying each to the same portfolio  of  energy ? options . in this chapter we also ? look at testing the var estimates  for  various underlying energy market ? variables .  finally , in chapter 11 we review ? modelling approaches to credit risk . ? we  look  in detail at two quite different approaches , creditmetrics ( j . p . morgan  ( 1997 ) )  and ? creditrisk + ( credit suisse financial ? products ( 1997 ) ) for which  detailed  information is publicly available . together these provide an extensive set ?  of  tools with which to measure credit risk . we present numerical examples of  applying these techniques to energy derivatives .  before ? we begin we stress that the models and methods we present in this  book  are tools ? which should be used with the benefit of an understanding of how  both  the ? tool ? ? and the market works . the ? techniques we describe are certainly  not  ? magic wands ? which can be waved at ? data and risk management problems to  provide instant and perfect solutions . to quote from the riskmetrics  technical  document ? ? no amount of sophisticated analytics will replace experience and  professional judgement in managing risk . ? . ? however , the right tools ,  correctly  used make the job a lot ? easier !\",0\n\"Subject: my visit  dear vince ,  thanks for your phone call this morning . i will ring mike tonight , i . e .  houston tomorrow morning .  . . . . had a look at the temps and anomalies over ca , looks warm for this time  of the year ( dec . ) , there has been an increase in the night time  t _ min , and t _ max remains at an above average level .  i will start setting up my models over conus this week .  regards ,  christian\",0\n\"Subject: re : a personal favor  thanks very much . i am attaching his resume for your review .  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : monday , may 07 , 2001 12 : 08 pm  to : anurag . saksena @ gmacrfc . com  cc : vince . j . kaminski @ enron . com  subject : re : a personal favor  anurag ,  i shall talk about vikas to our it people .  can you send me his resume ?  vince  \"\" saksena , anurag \"\" on 05 / 07 / 2001 10 : 06 : 54 am  to : \"\" ' vkamins @ ect . enron . com ' \"\"  cc :  subject : a personal favor  vince ,  i have left a voice mail to you and will wait to talk to you personally .  my brother vikas , who is now in london , is trying to make a switch from  consulting world to working for a specific firm . over last few months , i  have heard of great deal about the success of enron on line business which  fits well in the area of his expertise . i am wondering if you know of some  one in london who he can speak to regarding career opportunities .  since i spoke to you last , a number of things have changed . recently , my  manadate was broaden to include leading a charge for developing a risk  management function for both the domestic and international businesses for  gmac . needless to say , this is exciting albeit making the life a little  more hectic than usual .  talk to you later .  anurag  952 - 857 - 6133  - resl . doc\",0\n\"Subject: mark ,  please , check the following web - site . we can commisison a study from this guy .  vince \",0\n\"Subject: from the enron india newsdesk - may 4 th newsclips  vince / stinson ,  some news articles on india . it appears that dpc will attend the may 11  meeting , but will not be presenting any proposals .  they will be taking representatives from the lender side , ge and bechtel , as  well as from the lng supplier side .  also , a name has been thrown up as the likely person to represent the center .  regards ,  sandeep .  - - - - - - - - - - - - - - - - - - - - - - forwarded by sandeep kohli / enron _ development on  05 / 04 / 2001 02 : 36 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  nikita varma  05 / 04 / 2001 07 : 47 am  to : nikita varma / enron _ development @ enron _ development  cc : ( bcc : sandeep kohli / enron _ development )  subject : from the enron india newsdesk - may 4 th newsclips  the economic times  friday , may 04 , 2001 , http : / / www . economictimes . com / today / 04 infrol . htm  godbole panel suggestions unacceptable : enron , girish kuber  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  the above article also appeared in the following newspaper :  business standard  friday , may 04 , 2001 ,  godbole terms of reference not acceptable : dpc  the hindustan times  power purchase talks between govt , enron falls through  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  the times of india  friday , may 04 , 2001 , http : / / www . timesofindia . com / today / 04 busi 2 . htm  enron ready to take part in ppa talk , nitin yeshwantrao  the financial express  friday , may 04 , 2001 , http : / / www . financialexpress . com / fe 20010504 / ecol 0 . html  dpc team to appear before godbole panel on may 11  the above article also appeared the following newspapers :  mid day  enron , state govt to meet next week  the hindu businessline  friday , may 04 , 2001 , http : / / www . hindubusinessline . com / stories / 140456 uy . htm  enron wants renegotiation meet rescheduled  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  afternoon  friday , 4 may , 2001 , http : / / www . afternoondc . com /  houston team to meet godbole  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  business standard  friday , may 04 , 2001 ,  salve may represent centre on enron talks panel  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  the times of india  friday , may 04 , 2001 , http : / / www . timesofindia . com / today / 04 busi 2 . htm  salve may represent centre on enron talk panel  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  pioneer  friday , may 04 , 2001 ,  enron talks : salve may be govt man  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  mid day  friday 4 may 2001 ,  enron ' s rates too high : mseb  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  the economic times , friday , may 04 , 2001  godbole panel suggestions unacceptable : enron , girish kuber  hopes that the godbole committee would be able to renegotiate the dabhol  power project promoted by the us energy major enron may turn out to be  misplaced . the us energy major says that the godbole committee \u0001 , s suggestions  were unacceptable . in response to a query from et , the company said in a  statement that the \u0001 & published terms of the godbole report do not represent  an acceptable basis for further discussions . \u0001 8 the statement said that it  would be meeting the committee next week as \u0001 & a matter of courtesy \u0001 8 . \u0001 & since  the purpose of our meeting is to hear out the committee and understand their  thoughts , we will not present any proposals , \u0001 8 the statement said . according  to highly - placed sources in the government , the company has informed the  madhav godbole panel that it would be meeting on may 11 . earlier reports had  indicated that the discussions with the panel would take place on may 5 .  according to sources , enron would be meeting the panel with representatives  of its lenders and shareholders . the godbole committee , that studied the  current power purchase agreement , has called for cancellation of the present  tariff structure , renegotiation of the lng and shipping contract , removal of  dollar denomination as far as fixed charges of the tariff is concerned , debt  restructuring and the formation of a committee to renegotiate the power  purchase agreement . these suggestions , it seems , may not be acceptable to  enron . the maharashtra government accepted the report and asked the godbole  committee to renegotiate . the committee has been given a month \u0001 , s time to  renegotiate on behalf of the state government with dpc for a new ppa .  the committee has opined that since the lng facility of 5 mmpta is far in  excess of what is required by the plant ( only 2 . 1 mmpta of which 1 . 8 mmpta is  on take or pay ) , it should be separated into a distinct facility whose  capital costs should not be reflected in the fuel charge , not as take or pay .  it should instead be only in proportion to the fuel regassified for the power  generation . using the entire allocated gas requires an unusually high plf .  instead , the surplus gas can be sold to other players like petronet or enron \u0001 ,  s own metgas . \u0001 & it is important to distribute the cost over the entire  capacity and not just the amount sold to the power plant , \u0001 8 says the  committee . similarly , it has been suggested that enron could lease out the  harbour facilities as a common facility to other lng importers . on the lng  contract negotiated by enron for long - term supplies , it has said that since  the lng market has witnessed great changes , particularly as far as prices are  concerned , the power company should take advantage of spot buys and  renegotiate the contract accordingly .  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  the times of india , friday , may 04 , 2001  enron ready to take part in ppa talk , nitin yeshwantrao  the enron management has finally agreed to participate in a ' discussion '  with the madhav godbole - led re - negotiation committee set - up to facilitate  the restructuring of the power purchase agreement ( ppa ) signed between the  us power major and the state government . officials of dabhol power company  ( dpc ) , a subsidiary of enron , alongwith their team of shareholders and  lenders will arrive here on may 11 for talks with the nine - member godbole  panel . though the dpc spokesperson was reluctant to give a confirmation , a key  mantralaya official told the times of india that the team had expressed  willingness for talks with the experts committee in a bid to end the  imbroglio .  enron ' s response is viewed as a welcome development to amicably resolve the  controversy which had been raging for the last few weeks , with the board of  directors of enron authorising its india md k wade cline to serve a  termination notice to mseb . the state government , on its part , too adopted a  confrontational position by slapping a rs 401 crore rebate charge on dpc for  defaulting on power supply . however , the sudden change of heart by the enron  management is largely attributed to the stand taken by its local lenders led  by industrial development bank of india ( idbi ) which had recently opposed the  move to pull out of the project . this was in contradiction to the stand taken  by the foreign lenders of the dpc who were in favour of slamming the brakes  on disbursement of funds to dpc . the congress - led democratic front government  had publicly declared that it would impress upon the enron management to  renegotiate the ppa as scrapping the project would not be in the interest of  both the parties .  last week , the state government constituted a nine - member panel of experts  under former bureaucrat madhav godbole . godbole had written to the dpc  management inviting it for talks to re - negotiate the ppa on may 5 . for the  delayed response from enron , the meeting has been rescheduled to may 11 . the  issues which would be debated at the meeting include the separation of the  lng facility from the power plant , renegotiating lng supply and shipping  agreements , redefining the dpc tariff and to convert it into a two - part  tariff . the godbole panel will bargain hard for removal of dollar  denomination in the fixed charge component and to allow the maharashtra  government to sell power to third parties .  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  the financial express , friday , may 04 , 2001 ,  dpc team to appear before godbole panel on may 11  a battery of dabhol power company ( dpc ) officials and foreign lenders will  appear before the madhav godbole renegotiations committee on may 11 \u0001 & as a  matter of courtesy , and not for presenting any proposals . \u0001 8 simultaneously , the  dpc has made it clear that the published terms of the godbole report do not  represent an acceptable basis for further discussions . the dpc team is likely  to include officials from the enron corp , bechtel , general electric , its  liquefied natural gas suppliers , oman lng and abu dhabi lng and a trustee  bank , abn amro for the proposed may 11 meeting , it is reliably learnt .  mantralaya sources said that the dpc had earlier expressed its inability to  appear before the godbole committee on may 5 , fixed earlier , on account of  the non - arrival of its team from houston and other parts of the world .  however , the company has ultimately decided to meet the godbole committee on  may 11 .  dpc spokesman jimmy mogal said : \u0001 & we confirm that dpc has been invited to meet  the recently formed negotiating committee . as a matter of courtesy , we have  agreed to meet them next week . since the purpose of our meeting is to hear  out the committee and understand their thoughts , we will not present any  proposals . \u0001 8 \u0001 & while we have constantly maintained that we are open to a  dialogue towards resolving issues , this meeting in no manner be construed as  an open offer from dpc to renegotiate the terms of the contract . furthermore ,  the published terms report do not represent an acceptable basis for further  discussions , \u0001 8 he added . sources said enron corp chairman kenneth lay is likely  to meet former chief minister sharad pawar to find an acceptable solution  for the ongoing crisis before the may 11 meet . mr lay told the foreign news  agency on wednesday that the enron corp has no immediate plans to sell its  stake in the troubled $ 2 . 9 - billion dabhol power project in western india .  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  afternoon , may 4 , 2001  houston team to meet godbole  the enron - promoted dabhol power company ( dpc ) yesterday said it had agreed to  meet the godbole committee \"\" as a matter of courtesy \"\" and this should \"\" in no  manner be construed as an open offer from dpc to renegotiate the terms of the  contract . \"\" in a statement issued last night , the us energy major made it  clear that the purpose of the meeting with the nine member renegotiating  committee was \"\" to hear out the panel and understand their thoughts , and not  present any proposals . \"\"  furthermore , the published terms of the godbole report did not represent any  acceptable basis for towards resolving issues .  earlier , state government sources said that a team of senior officials from  enron headquarters in houston is slated to attend the first godbole  renegotiations committee meeting , now to be held on may 11 . the panel  deferred its meeting from may 5 as in a formal communication , dpc requested  the state government for a suitable date other than the stipulated one , they  said . however , the multinational is yet to send a list of its nominees , who  are due to arrive next week , they said .  meanwhile , the centre is likely to appoint solicitor general harish salve as  its representative on the high - power committee to renegotiate the power  purchase agreement ( ppa ) signed between dpc and maharashtra state electricity  board . other members of the godbole committee are hdfc chairman deepak  parekh , teri director r . k . pachauri , former union energy secretary e . a . s .  sarma , kirit parikh of indira gandhi institute of developmental research ,  maharashtra energy secretary v . m . lal , state finance secretary s . k . srivastav  and mseb chairman vinay bansal .  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  business standard , friday , may 04 , 2001  salve may represent centre on enron talks panel  solicitor general harish salve is likely to be named the centre \u0001 , s  representative on the high - power committee appointed by the maharashtra  government to renegotiate the power purchase agreement ( ppa ) with the us  energy giant enron - promoted dabhol power company ( dpc ) . according to highly  placed government sources , salve \u0001 , s name has been cleared by both ministries  of finance and power .  the maharashtra government has appointed a negotiating committee headed by  former bureaucrat madhav godbole to renegotiate the estranged ppa signed by  the maharashtra state electricity board ( mseb ) and dpc . enron had made  opening of talks with maharashtra conditional on the presence of a centre \u0001 , s  representative on the negotiating committee . salve would meet secretaries in  the ministries of finance , power and law to firm up the centre \u0001 , s stand on the  crisis arising out of payment defaults by mseb , sources said adding that  petroleum secretary is also likely to be included in the panel .  sources said enron appeared to be keen on solving the present impasse through  negotiations judging from corporation chairman kenneth lay \u0001 , s statement  yesterday in houston that the company had no plans to sell its stake in the  $ 2 . 9 billion dabhol project . the government is likely to make a formal  announcement of salve \u0001 , s appointment on the negotiating committee by the  weekend , sources said . the negotiating committee would suggest solutions to  bring down the exorbitant power tariffs , separating of the liquefied natural  gas ( lng ) facility , restructuring of dpc and allowing sale of excess power  through central utilities , mainly the national thermal power corporation  ( ntpc ) , sources said . the dpc board had late last month authorised the local  manager in india to issue termination notice to mseb following a bitter  payment controversy . dpc has already slapped one conciliation notice on the  centre and three arbitration notices on the state government over non - payment  of dues .  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  the times of india , friday , may 04 , 2001  salve may represent centre on enron talk panel  solicitor general harish salve is likely to be named the centre ' s  representative on the high - power committee appointed by the maharashtra  government to renegotiate the power purchase agreement ( ppa ) with us energy  giant enron - promoted dabhol power company ( dpc ) . according to highly placed  government sources , salve ' s name had been cleared by both ministries of  finance and power . the maharashtra government has appointed a negotiating  committee headed by former bureaucrat madhav godbole to renegotiate the  estranged ppa signed by maharashtra state electricity board ( mseb ) and dpc .  enron had made opening of talks with maharashtra conditional on the presence  of centre ' s representative on the negotiating committee . salve would meet  secretaries in the ministries of finance , power and law to firm up centre ' s  stand on the crisis arising out of payment defaults by mseb , sources said ,  adding petroleum secretary is also likely to be included in the panel .  sources said that enron appeared to be keen on solving the present impasse  through negotiations judging from corporation chairman kenneth lay ' s  statement on wednesday in houston that the company had no plans to sell its  stake in the $ 2 . 9 billion dabhol project . ( pti )  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  the pioneer , friday , may 04 , 2001 ,  enron talks : salve may be govt man  solicitor general harish salve is likely to be named as centre ' s  representative on the high - power committee appointed by the maharashtra  government to renegotiate the power purchase agreement ( ppa ) with us energy  major enron - promoted dabhol power company . according to sources , mr salve ' s  name has been cleared by the ministries of finance and power . the maharashtra  government recently appointed a committee headed by former bureaucrat madhav  godbole to renegotiate the  ppa signed by the maharashtra state electricity board ( mseb ) and dpc .  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  mid day , friday 4 may 2001  enron ' s rates too high : mseb  the maharashtra state electricity board ( mseb ) is planning to convey to the  dabhol power company ( dpc ) , a subisidiary of us energy giant enron , its  inability to pay increased fixed charges at the rate of rs 500 crore a month  from next year . mseb officials said that dpc would be informed about this  during re - negotiation of the power purchase agreement ( ppa ) . as per ppa ,  the increased rate will come into effect from january , 2002 following  completion of dpc ' s 1 , 444 mw second phase of the project in october this  year . the ppa also says that the fixed rate will have to be paid to the  company irrespective of the consumption of electricity .  at present mseb is paying fixed chages of rs 95 crore a month to dpc for  its first phase of the project , generating 740 mw power . ' ' we have been  raising this issue with dpc for last couple of months , highlighting that  this ( fixed charges from next year ) is not viable for us . even state chief  minister vilasrao deshmukh raised the issue in new delhi at a meeting  recently ' ' , the officials said . the board will continue to raise this issue  during the re - negotiation process with dpc . however , dpc officals are  keeping mum over the issue , adopting a ' wait and watch ' policy , they added .  under the second phase of the project , 722 mw power generating capacity will  be achieved by june and remaining 722 mw by october this year , the officials  said .\",0\n\"Subject: re : telephone interview with the enron research group  hi nina :  we would be glad to see you tomorrow . since this is a preliminary  interview to see if there is a fit and an interest , we will schedule an hour  and probably the interviewers will double up their time .  i have scheduled the following , if the times do not work for you , please  let me know .  9 : 00 am vince kaminski and stinson gibner  9 : 30 am tanya tamarchenko and zimin lu  when you come into the enron bldg , go to the security desk and ask  for me , they will call me and i will meet you in the lobby of the 19 th  floor .  thanks and have a safe trip .  regards ,  shirley crenshaw  nina knirel on 11 / 29 / 2000 09 : 52 : 02 am  to : shirley . crenshaw @ enron . com  cc :  subject : re : telephone interview with the enron research group  dear shirley crenshaw ,  thank you very much for your interest . i will be in  houston tomorrow morning and i thought that it could  be more convenient if we can meet in person . if you  prefer the phone interview , let me know what number i  should call and we can have it tomorrow .  thanks again ,  nina knirel  - - - shirley . crenshaw @ enron . com wrote :  > good morning ms . knirel :  >  > vince kaminski and several members of the research  > group would like  > to conduct a telephone interview with you sometime  > this week at your  > convenience . please let me know the times that you  > are available and  > they will contact you .  >  > the telephone interviews usually last approximately  > 1 hour and will be  > conducted via a speaker phone .  >  > the interviewers will be :  >  > vince kaminski managing director and head of  > research  > stinson gibner vice president , research  > tanya tamarchenko director , research  > zimin lu director , research  >  > look forward to hearing from you .  >  > best regards ,  >  >  > shirley crenshaw  > administrative coordinator  > enron research group  >  do you yahoo ! ?  yahoo ! shopping - thousands of stores . millions of products .  http : / / shopping . yahoo . com /\",0\n\"Subject: phone call today  vince ,  there are a few matters i ' d like to discuss with you :  clarification on who tony harrison reports to ( i had understood it would be  the houston crude oil weather forecast team but i am not now sure )  to let you know that joe wants to recruit a strongly mathematical  macroeconomist reporting to steve , and therefore that maureen will be  returning to houston later this month  to talk about stinson coming over for a visit  regards ,  tani\",0\n\"Subject: re : var and credit meeting on wednesday , april 11 at 11 : 30 am  everybody ,  this week our regular meeting will be devoted primarily to 2 subjects :  1 . simulating power prices in var ;  2 . capturing correlations across commodities as well as across term structure of  forward prices .  research will present some suggestions based on data analysis .  detailed agenda is enclosed .  please , let shirley crenshaw know if you are not planning to attend .  tanya .\",0\n\"Subject: seminar mugs  vince :  our pr staff has put together a great design for the finance seminar  mugs . we need to get a clean copy of the enron logo , if possible . the  design is in adobe pagemaker if your people can find a logo that can be  pulled into that format . they can send it directly to me and i will make  sure it gets to the right place .  thanks so much .  bbo\",0\n\"Subject: dabhol power company caps  vince  we have completed the valuation of the above interest rate caps as  requested . i have faxed a copy of the attached files to your attention at  ( 713 ) 646 2503 .  please let us know if we can help again .  regards ,  leslie abreo  andrew kalotay associates , inc .  61 broadway , ste 3025  new york ny 10006  phone : ( 212 ) 482 0900  fax : ( 212 ) 482 0529  email : leslie . abreo @ kalotay . com  visit aka ' s website at http : / / www . kalotay . com  - cap valuation _ 0900 . doc  - dabhol power co caps . xls\",0\n\"Subject: payroll  elena chilkina was not paid for the following days ,  july 3 and 4 .  please any questions contact shirley crenshaw  or kevin moore .  if more information is needed feel free to call x 34710 .  thanks  kevin moore\",0\n\"Subject: eprm article  hi vince ,  ?  i ' m sorry you weren ' t around in sydney this week . you missed a very good  book launch party that john martin organised here for us . paul made a short  speech in which he relayed some great comments which he said came from ? you -  thanks very much !  ?  please find attached the next eprm article . its not really tided up fully  from our end yet , but i wanted to send it off before the weekend in case you  got chance to look at it . because of the easter break robin is after it by  thursday of next week .  ?  best regards .  ?  chris .  ?  - eprm _ 10 _ fwd _ curve _ simulation . doc\",0\n\"Subject: texas a & m at galveston  dr . bill mcmullen called you this morning and said that you had called  the school last week asking for courses that they scheduled for quantitive  analysis .  they gave your name to dr . mcmullen and he would like you to email  him exactly what you are looking for .  his email address is : mcmullew @ tamug . tamu . edu  thanks !  shirley\",0\n\"Subject: informs - maui  hi steve :  good to hear from you and hope you are liking your new role at u . of  maryland . i would like to come but i am not sure if i will be able to make it  to this conference . i will forward your message to my colleagues and ask them  to contact you if they are interested .  thanks ,  krishna .  - - - - - - - - - - - - - - - - - - - - - - forwarded by pinnamaneni krishnarao / hou / ect on  12 / 12 / 2000 12 : 08 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  steve gabriel on 12 / 11 / 2000 10 : 52 : 21 am  to : pkrishn @ ect . enron . com  cc :  subject : informs - maui  krishna :  how are you doing ? i wanted to let you know my new address , i ' m now at the  university of maryland . also , in my role as energy cluster chair for the  maui , hawaii informs conference ( june 17 - 20 , 2001 ) , i am looking for either  session chairs or speakers . perhaps you may know of some interested  individuals ? i am also running a session on optimization and equilibrium  modeling in energy , please send interested speakers ( or possible session  chairs to me ) . thanks .  - steve gabriel  steven a . gabriel , ph . d .  assistant professor , project management program  http : / / www . cee . umd . edu / prog / projmgt . html  director , optimization & equilibrium studies , center for technology and  systems management http : / / ctsm . umd . edu /  contact information :  department of civil and environmental engineering  1143 glenn l . martin hall  university of maryland  college park , maryland 20742 - 3021  sgabriel @ eng . umd . edu  tel . ( 301 ) 405 - 3242  fax ( 301 ) 405 - 2585 \",0\n\"Subject: background information  tom ,  can you send me additional copies of the information about the webi program ?  i want to distribute it internally .  vince\",0\n\"Subject: re : software license  karla ,  august is a vacation month in france .  i would not count on a response any time soon .  vince  from : karla feldman on 08 / 08 / 2000 09 : 34 am  to : geman @ dauphine . fr  cc : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect  subject : software license  ms . geman ,  i am just following up to see if you had received my previous message  forwarded below and whether you have a response so that we can move forward  with this contract ?  thank you ,  karla feldman  - - - - - forwarded by karla feldman / hou / ect on 08 / 08 / 2000 09 : 23 am - - - - -  karla feldman  07 / 28 / 2000 01 : 41 pm  to : geman @ dauphine . fr  cc :  subject : software license  dear ms . geman ,  i met with vince kaminski yesterday regarding picking back up with the  license agreement we were working on back in march . he relayed some  additional requirements which need to be added to the agreement , which  include the following :  1 . the price agreed upon is $ 90 , 000 .  2 . d - g will provide system support .  3 . no later than 12 months of execution of the agreement , d - g will provide  the source code to enron . in the meantime , the source code is to be in  escrow . additionally , the source code would be released sooner than the 12  months if any of the following conditions occur : ( i ) d - g goes out of  business ; ( ii ) d - g is unable to provide effective technical support ; or ( iii )  if d - g agrees to release it sooner .  before i have our attorney add these things to the agreement , we need to  discuss the escrow situation . vince mentioned that you had suggested that  your attorney keep the software in escrow . is your attorney a u . s .  attorney ? it seems like i may have recalled that way back in march you might  have said you had a friend or relative that was an attorney . is that the  same person ? does this attorney work for a large firm , small firm , or solo  practitioner ? basically , if you could just provides some additional  information about your attorney , i would appreciate it .  we normally would use an escrow company to put the software in escrow . we  have dealt with a company here in the u . s . called dsi technology . i will  check into that pending your answer regarding your attorney .  once we decide what we want to do regarding placing the software in escrow ,  we will red - line the agreement to reflect such changes and e - mail it back to  you for your review .  i look forward to hearing from you .  karla feldman  enron corp .  contract administration  ( 713 ) 646 - 7554\",0\n\"Subject: hvince , edge effectiveness testing for fas 133  vince ,  as we discussed , subject to minor changes the attached paper will appear in  the j of applied corporate planning . i ' d be most interested in your  comments .  by the way , if you like the yield curve generation process described in the  paper , we ' d be happy to perform a simulation , so that you can compare the  results based on the to the hjm procees .  i look forward to getting together with you when you come to ny to attend  the garp conference , around february 13 . just give me a brief warning .  regards ,  andy  andrew kalotay associates , inc .  ( 212 ) 482 - 0900  andy @ kalotay . com  visit our web - site http : / / www . kalotay . com  - fasl 33 article . doc\",0\n\"Subject: re : jinbaek kim  molly ,  we can pay for the plane ticket .  we have to make sure that we shall extend the same  treatment to other summer interns to avoid  bad feelings .  vince  from : molly magee / enron @ enronxgate on 04 / 25 / 2001 11 : 47 am  to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect  cc :  subject : jinbaek kim  we received some correspondence this morning from jinbaek in which he says he plans to start on june 4 , 2001 . since we are trying to offer a package comparable to that of an associate in the program , i assume we will also pay for his plane ticket here ? ? ? just wanted to check before i contacted him . . . . , so i ' ll wait to hear from you .  thanks ,  molly  x 34804\",0\n\"Subject: re : impending visit  vince :  would friday morning july 7 at 9 : 00 am work for you ? give me an email shout  if so . thanks .  dale nesbitt  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : june 28 , 2000 2 : 19 pm  to : dale . nesbitt @ marketpointinc . com  cc : vince . j . kaminski @ enron . com  subject : re : impending visit  dale ,  sorry for a delay in responding to your message .  i shall talk to the head of our b 2 b unit on friday this week and  shall remind him about your visit .  i hope he can make a decision at this time whether he is interested  in pursuing this opportunity  vince  \"\" dale nesbitt \"\" on 06 / 27 / 2000 11 : 26 : 05 pm  to : \"\" vincent kaminski \"\" , \"\" vince . j . kaminski \"\"  cc :  subject : impending visit  vince :  i sent you an email a couple of days ago to inquire if we might get  together  at your offices on july 5 or july 7 in houston to follow up our earlier  discussions . i notice i have two email addresses for you , so i am sending  this to both . i am not sure the earlier transmission got to you .  would you be available the afternoon of the 5 th or the morning of the 7 th  to  continue our earlier discussions ? give me an email or phone shout at  650 . 218 . 3069 .  thanks  dale nesbitt\",0\n\"Subject: re : report research  i have responded back to barbara and am sending her some written material .  thank you .  vince j kaminski  10 / 12 / 2000 10 : 50 am  to : mike a roberts / hou / ect @ ect , joseph hrgovcic / hou / ect @ ect  cc : mark tawney / hou / ect @ ect , vince j kaminski / hou / ect @ ect  subject : report research  joe , mike ,  please check with pr first if we want too talk to her  and run it by mark . i think it is in our interest to be  quotes extensively in the press .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 12 / 2000  10 : 53 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  energywriter @ aol . com on 10 / 11 / 2000 10 : 54 : 39 am  please respond to energywriter @ aol . com  to : energywriter @ aol . com  cc :  subject : report research  i am writing a management report on weather risk management . the story  will discuss different weather risk management tools used by power  marketers in the energy industry . it also looks at weather prediction  and analysis services available to energy traders .  i am looking for a list and description of the weather risk management  products , and how each can benefit an energy trader . i would also like  to know what traders ' reactions to significant weather are . and where  can i find a list of popular weather instruments with descriptions ?  i appreciate any help you can give me . i would like to set up a chat  with you this week if you have the time , or simply email me your input .  thanks in advance !  barbara drazga  independent journalist  po box 472401  aurora , co 80047  303 - 369 - 3533 tel .  303 - 369 - 3510 fax\",0\n\"Subject: renshi zhang ' s resume  fyi .  please cancel the interview schedule for renshi zhang . hr just notified me  that he has accepted another position . it was scheduled for tomorrow .  i have removed it from the calendars that i have access to .  thanks !  shirley  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 23 / 2001 10 : 19 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  zimin lu  04 / 19 / 2001 04 : 08 pm  to : shirley crenshaw / hou / ect @ ect , molly magee / enron @ enronxgate  cc : vince j kaminski / hou / ect @ ect  subject : renshi zhang ' s resume  shirley and molly ,  vince is interested to set up an interview for renshi zhang . any day except thursday next week  is good .  interviewers : vince , stinson , vasant , tanya , alex , bob , krishna and myself .  contact number for mr . zhang is 713 - 544 - 5989 .  zimin  - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 04 / 19 / 2001 03 : 52 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  zimin lu  04 / 05 / 2001 09 : 49 am  - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 04 / 05 / 2001 09 : 46 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  03 / 14 / 2001 10 : 06 am  to : zimin lu / hou / ect @ ect  cc :  subject : resume  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 14 / 2001 10 : 07 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  marshall brown on 03 / 09 / 2001 07 : 46 : 22 am  to : vince kaminski  cc :  subject : resume  vince ,  how are you . this candidate would be interested in any positions in  your group .  regards ,  marshall brown  vice president  robert walters associates  tel : ( 212 ) 704 - 0596  fax : ( 212 ) 704 - 4312  mailto : marshall . brown @ robertwalters . com  http : / / www . robertwalters . com  >  caution : electronic mail sent through the internet is not secure and could  be intercepted by a third party .  this email and any files transmitted with it are confidential and  intended solely for the use of the individual or entity to whom they  are addressed . if you have received this email in error please notify  the system manager .  this footnote also confirms that this email message has been swept by  mimesweeper for the presence of computer viruses .  - zhan _ ren . doc\",0\n\"Subject: vince / stinson ,  please find the two attachments that give a more detailed calculation , as  well as the revised statement that can be made to press .  the numbers are not small , but really do not reflect the true magnitude of  the genset issue . they do not take into account the capital costs of the  gensets , and also do not focus on the many smaller units that are operating  in homes , and commercial establishments .  hope ths helps .  regards ,  sandeep .\",0\n\"Subject: re : volume ii of the technical corner collection  sam ,  this is a partial list of people to whom i would like to send the volumes :  volume 1 & 2  winokur ( enron board member , shirley has his address )  jeff skilling  ken lay  mark frevert  greg whalley  rick buy  jeff shankman  john lavorato  dave delainey  i shall write the cover letter .  also , we can add additional volume for kaminski ' s columns ( just 10 copies ) ,  including bios and my contributions .  i would like to show the depth of talent we have in the group .  vince  enron north america corp .  from : william smith @ enron 01 / 09 / 2001 01 : 07 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : volume ii of the technical corner collection  vince ,  i have successfully integrated martin ' s article into volume ii and am  following mike ' s instructions for reproduction . i ' m also having some  additional volume i ' s printed , too . would you mind disposing of the other  set i gave you ? i wouldn ' t want things to get confused . also , i ' m doing 20  volume i ' s and 60 volume ii ' s . please let me know how many you personally  need and i will deliver them to your office .  thank you ,  sam\",0\n\"Subject: re : invitation to speak at power 2000  emma ,  it ' s your choice . i can chair the session of day 2 or speak on one of these  topics .  please , let me know what works for you .  possible presentations :  evaluating the effectiveness of insurance as a risk management tool  or  applying real option theory to value power plants  or  overcoming the difficulties of accurately estimating volatility  vince  \"\" emma wolfin \"\" on 12 / 14 / 99 04 : 08 : 03 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : invitation to speak at power 2000  hi vince  it is my great pleasure to invite you to speak at power 2000 which will be  in houston on 9 & 10 may 2000 .  would you be interested in chairing one of the streams on day 2 of the  conference ? or making a full presentation on one of the days ? please let me  know which talks interest you . obviously , some of the talks are no longer  available but i would like to give you a choice as much as possible . please  could you get back to me asap on 212 925 1864 ext 151 or by return email .  i very much hope you can make the dates as i ' m very keen to have you  participate at power . not to flatter you unnecessarily , but i know that a  lot of people come to our conferences to hear what you have to say .  best regards  emma  - invite . doc\",0\n\"Subject: re : aram ' s visit  jesus ,  i yalked to aram . i have him on my calendar from 8 : 30 till 10 : 00 on friday .  a dinner / lunch on fri would work for me .  vince  jesus melendrez @ enron  04 / 20 / 2000 09 : 53 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : aram ' s visit  vince ,  i asked my assistant to schedule the meetings with aram and she will  contacting your asst . . as far as lunch or diner , i would be interested . i  will visit with aram in the next few days or if you do , you might want to ask  him . i believe he is coming for a wedding and he might have a tight schedule  but lets ask . hope all is going well . jgm\",0\n\"Subject: - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 06 / 26 / 2000  10 : 56 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" gould , aaron \"\" on 06 / 16 / 2000 02 : 54 : 03 pm  to : \"\" ' vkamins @ enron . com ' \"\"  cc :  subject :  dr . kaminski ,  on wednesday , june 14 th i attended your presentation entitled \"\" the challenge  of valuation of energy related derivatives \"\" at the risk 2000 conference in  boston . can you please e - mail me the slides you presented .  also , you mentioned that the method you used to calculate volatility for  energy prices was not the \"\" normal \"\" method . can you please tell me , or give  me a reference to the method that you did use .  thank you ,  aaron gould  senior risk management analyst  pseg services corporation  aaron . gould @ pseg . com  1 - 973 - 456 - 3527\",0\n\"Subject: reschedule meeting for duffie report  hi shirley ,  this email is in reference to your vmail regarding my rescheduling my  meeting on tomorrow at 2 pm with vince . that is fine with me because the  credit guys ( craig chaney and jeff kinneman ) have had a change in strategy .  they have asked us to take some time to evaluate moody ' s riskcalc software .  therefore i have had to put the duffie project on hold for the last few  days . however i am about two thirds through the duffie documents and will  resume studying them as soon as i get through the lengthy riskcalc documents .  let me know if he still wants to meet later in the week  thanks ,  iris .\",0\n\"Subject: re : enl - dailyupdate - txt  please respond to lyris listmanager you have been subscribed to enl - dailyupdate - txt with the email address  \"\" vkamins @ enron . com \"\"  to unsubscribe , send a blank email to leave - enl - dailyupdate - txt - 13662 e @ estutenwsl 1 . energy . williams . com\",0\n\"Subject: financial engineering invoice # 2001 - m 608  connie :  in response to your email to vince kaminski of 3 / 19 / 01 , the subject invoice  was sent to our accounting dept . for payment on february 25 , 2001 . we  did not need the spav maintenance , so we deducted $ 1 , 600 . 00 . did you  receive a payment in the amount of $ 4100 . 00 that could possibly have been  payment for this invoice ?  i have left a message for our accounting dept . to see exactly when the invoice  was paid and the check number . as soon as i hear from them i will left you  know .  best regards ,  shirley crenshaw  administrative coordinator  enron research group  713 - 853 - 5290  email : shirley . crenshaw @ enron . com\",0\n\"Subject: personal time on tuesday , nov . 21 , 2000  shirley :  just a reminder that i had requested time - off on tuesday , november 21 , 2000 ,  to attend a school function that i attend every year for a little friend of  ours . i know you will be on vacation but leann will be here to help vince  or any of the rest of the department . i would not normally take off when you  are gone , but this is really important to riley and i hate to disappoint  him . his school has grandparents day the tuesday before thanksgiving every  year . he does not have grandparents that can attend so he has always asked  my husband and i to come as his special friends . usually , al could just go  alone but as you know he is in hawaii taking care of his father and will not  be here tomorrow . i have worked enough extra hours to cover the time i will  be off ( 9 : 00 am to 1 : 00 pm or 1 : 30 pm ) . i appreciate your consideration and  thanks in advance if we can work this out .  anita\",0\n\"Subject: re : alp presentation  fyi  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 30 / 2001  02 : 05 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" dennis w . loughridge \"\" on 04 / 30 / 2001 10 : 49 : 10 am  please respond to  to :  cc :  subject : re : alp presentation  vince  i will be attending the alp presentation on may 7 and would be pleased to  join the team for dinner if it is not too late .  thank you  dennis loughridge  dennis w . loughridge  director of energy consortium  rice university  713 - 348 - 2812  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : tuesday , april 10 , 2001 8 : 16 am  to : loughrid @ rice . edu  cc : luigical @ rice . edu  subject : alp presentation  sorry , trying again . i probably got a wrong e - mail address and the original  message  was returned .  vince kaminski  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 10 / 2001  08 : 15 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  04 / 10 / 2001 08 : 13 am  to : barrett @ rice . edu , uecker @ rice . edu , cmiller @ rice . edu ,  lounghrid @ rice . edu , luigical @ rice . edu  cc : vince j kaminski / hou / ect @ ect , christie patrick / hou / ect @ ect , shirley  crenshaw / hou / ect @ ect , kenneth parkhill / na / enron @ enron  subject : alp presentation  on behalf of enron corp . i would like to invite you to an alp project  presentation by a group of students  of jesse h . jones graduate school of management , rice university .  the students will present the results of a research project regarding  electronic trading  platforms in the energy industry .  the presentation will be held on may 7 , at 4 : 00 p . m . at enron , 1400 smith .  we would also like to invite you to dinner , following the presentation .  vince kaminski  vincent kaminski  managing director - research  enron corp .  1400 smith street  room ebl 962  houston , tx 77002 - 7361  phone : ( 713 ) 853 3848  ( 713 ) 410 5396 ( cell )  fax : ( 713 ) 646 2503  e - mail : vkamins @ enron . com\",0\n\"Subject: additional info  dear vince ,  thanks so much for your prompt return call . as discussed , pls find attached  a # of related self - explanatory documents ( in naturally the strictest  privacy and confidence ) .  > > >  > > >  > > > >  > the tx fellowship - - the highest individual recognition reward within the  > company - - will be determined in jan . 2001 . the pdf files refer to a paper  > presentation and 2 press interviews , respectively . the spe paper will be  > published in the jan . 2001 edition of journal of petroleum technology  > ( jpt ) .  >  > i ' ll appreciate your review and additional discussion re best fit . as  > discussed , it ' s best to correspond via my personal e - mail address :  > newsoussan @ iwon . com or else pls leave me a message a my secure personal  > phone # @ work . pls be also advised that i ' ll be checking my phone - and  > e - mail infrequently ( every other day ) while i ' m in england . i look  > forward to seeing you soon in either ny or houston .  >  wishing you a very happy holiday season and a healthy and prosperous 2001 .  > soussan ,  > 914 253 4187 ( w )  >  >  >  - sfaiz _ detailed _ resume . doc  - sfaiz _ job _ description . doc  - sfaiz _ cover _ nomtxfellow . doc  - sf _ external _ invitations . xls  - spe 62964 . pdf  - real _ rewards . pdf  - get _ real . pdf\",0\n\"Subject: today ' s project list  please , use a new template stored in the plans 2001 folder  for today ' s project lists .  over the last few weeks we had several parallel  copies of the same file floating around .  i have updated he list of group members in the first sheet .  please , make sure i have not omitted anybody .  vince \",0\n\"Subject: @ jones : news and information from the jones school  @ jones : news and information from the jones school  march 13 , 2001  forbes magazine survey  alumni association reception - - new york : march 15  conference - - perspectives on women in business : march 16  southwest business plan competition - - march 30 - 31  rice alliance business presentation forum - - march 30  cancelled - - neuhaus lecture : march 19  dean ' s lecture - - ralph eads , executive vice president , el paso corp . : april  11  black leadership conference : april 27  prof . stephen zeff publishes new book on henry rand hatfield , accounting  historian  rice alliance continues expansion of network , enhances services  jones school campaign  visit construction site  - - - - - - - - - - - - - - - - - - - - - - -  announcement  - - - - - - - - - - - - - - - - - - - - - - -  if those of you in the class of 1996 haven ' t received the forbes magazine  survey , please do fill it out when it comes . forbes is looking at return on  investment . your names and addresses will not be used for any other purpose  beyond this one - page questionnaire and your responses will remain  confidential . as you know , rankings are influenced by the percentage of the  class which returns the survey . this is true for all rankings . we greatly  appreciate your taking your time to do this and thank you for supporting the  jones school .  - - - - - - - - - - - - - - - - - - - - - - -  news  - - - - - - - - - - - - - - - - - - - - - - -  the jones graduate school alumni association will host a dean ' s reception on  thursday , march 15 , in new york city . you and your guest are invited to join  gil whitaker , dean and professor of business economics , for cocktails and  hors d \u0001 , oeuvres from 6 to 8 p . m . on march 15 at the 50 th floor , j . p . morgan  chase & co . building , 270 park avenue , new york , ny . please rsvp to deanna  sheaffer , director of finance and alumni affairs , at sheaffer @ rice . edu or  713 - 348 - 6222 .  managers and business owners will address issues related to women in  leadership in the march 16 conference \"\" grace under pressure : perspectives on  women in leadership \"\" in herring hall . the conference , sponsored by enron  corp . , j . p . morgan chase monika drake , assistant director of career planning , jones  school ; marla hutchison , principal , deloitte consulting ; christie patrick ,  vice president , public affairs , enron corp . ; and bette wickline , director ,  women \u0001 , s business initiative , j . p . morgan chase & co .  the march 19 neuhaus lecture featuring c . k . prahalad , harvey c . fruehauf  professor of business administration , university of michigan graduate school  of business administration , ann arbor , has been cancelled . it will be  rescheduled at a later date .  the jones school and the rice alliance will welcome aspiring entrepreneurs  at the first southwest business plan competition , scheduled for march 30 - 31 ,  at herring hall . nine teams from schools in the southwest region of the u . s .  will compete for the opportunity to enter the international moot corpc  competition held each year at the university of texas , austin .  http : / / www . alliance . rice . edu / swbpc /  the rice alliance hosts the second annual business plan presentation forum  from 9 a . m . to 1 : 30 p . m . on saturday , march 31 , duncan hall . the forum is  intended to provide presenters with candid and constructive coaching on the  components of their business plans .  ralph eads , group executive vice president of merchant energy and production  for el paso corp . , will speak at the dean ' s lecture series scheduled for  9 : 45 a . m . on wednesday , april 11 at 124 herring hall .  http : / / jonesgsm . rice . edu / news / calendar / index . cfm ? eventrecord = 1735 author and  financial advisor brooke stevens ; shell oil company chairman steve miller ;  former u . s . secretary of energy hazel o ' leary ; and federal reserve board  member samuel golden . http : / / jonesgsm . rice . edu / content / content . cfm ? pageid = 60  stephen zeff , the herbert s . autrey professor of accounting and professor of  managerial studies , was profiled in the march 1 edition of rice news for the  successful release of his book on accounting historian henry rand hatfield ,  the first first full - time accounting professor in a u . s . university .  in its 2001 rankings of the top full - time mba programs in the world , the  financial times ranked the jones school among the ten best in four  categories : value for money ; employed at three months ; finance ;  entrepreneurship . overall , the jones was ranked 35 th of 51 u . s . schools and  54 th among the world ' s best 100 graduate business schools .  the rice alliance for technology and entrepreneurship enters its second year  determined to enhance services that have promoted the entrepreneurial spirit  in the rice community and in houston . the alliance brings together students ,  faculty , alumni and other rice - associated parties as collaborators , mentors  and investors in engineering , science , software , or e - commerce innovations .  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  online :  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  visit the construction web cam url for up - to - the - minute live feeds of the  new jones school building construction .  learn about new and upcoming initiatives and programs at the school , and  view artist renderings of the new $ 60 million building , currently under  construction . http : / / jonesgsm . rice . edu / campaign / campaign . html  @ jones : news and information from the jones school , the jones school  e - newsletter , is published monthly by the public relations department of the  jesse h . jones graduate school of management . the jones school website  http : / / jonesgsm . rice . edu is updated frequently and we  encourage you to visit the site regularly to get the latest news and  information about new initiatives and programs at the jones school . to  submit items to be posted on the jones school website , please e - mail  jgsmnews @ rice . edu or call 713 - 348 - 6364 .\",0\n\"Subject: fw : energy leader consulting generation evaluator ( ege )  vince :  this is the gentleman that wants to meet with you on the 29 th ?  - - - - - original message - - - - -  from : \"\" steve mitnick \"\" @ enron [ mailto : imceanotes - + 22 steve + 20 mitnick + 22 + 20 + 3 csmitnick + 40 earthlink + 2 enet + 3 e + 40 enron @ enron . com ]  sent : monday , may 21 , 2001 9 : 13 am  to : crenshaw , shirley  cc : vkamins @ enron . com  subject : energy leader consulting generation evaluator ( ege )  shirley :  as requested , herein is information regarding the meeting with vince kaminski .  the presentation on the ege tool ' s applications and the allegheny energy case study is timed to take an hour . if the meeting is most conveniently scheduled for tuesday , may 29 , might i request it be set for late afternoon ( as my other appointments are the next day ) .  and , as vince will recall , i was co - leader of the energy consulting business of phb hagler bailly , and developer of the ramp up , real time , 75 check and electric strategy tools . presently , i am ceo of energy leader consulting ( elc ) .  background  the u . s . power generation industry has become increasingly efficient in recent years . rapidly growing new entrants seek profit maximization aggressively . utilities , who still control most power plants , endeavor to adopt the entrants ' methods . yet , inefficiency among many utilities remains widespread .  utility inefficiency arises from adherence to decades - old habits and in unit commitment and dispatch and planned maintenance scheduling . many utilities , notwithstanding the industry - wide trend towards profit maximization , cling to ingrained routines .  inefficiency can also arise from the diseconomies of small scale . a utility may operate a relatively small system ( fewer than a dozen plants ) . a small system lacks portfolio diversification and perspective in its focus on its regulated customers , playing the wholesale market at the margin .  for a variety of reasons , utilities are reluctant to cut back the starts of their generating units , let alone shut down any ( even temporarily or seasonally ) . economically inefficient units continue to be committed , week after week , and run in the half - load range .  ege objectives  ege identifies and assesses generating units of a utility with questionable commitment routines . taking into account transmission and reliability factors , the procedure points towards profit opportunities that may be exploited by another industry participant .  i . an industry participant can use ege as a basis for a medium or long - term wholesale power transaction with a utility ; or to price wholesale power more aggressively , to take market share from the utility ( i . e . , compel changes in unit commitment habits ) .  ii . an industry participant can use ege to spot and quantify efficiencies that would come from a merger or acquisition .  iii . a power plant developer can use ege to estimate the incremental value a new plant will enjoy when the target utility ' s unit commitment routines inevitably become rationalized .  specific ege concepts  ege reduces and analyses the extraordinary but unwieldy continuous emission monitoring data base intelligently focusing on profit opportunities .  it produces indicative statistics such as :  a . the frequency distribution of starts per week ;  b . the frequency distribution of starts by day / 15 - minute segment during the week ;  c . the frequency distribution of load level ;  d . the frequency distribution of hours of operation per start ;  e . average heat rate and approximate fully - allocated cost in the half - load range ;  f . average ramp rate from the half - load range ;  g . the frequency distribution of unused connected capacity during the highest demand hours ; and  h . forced - off maintenance outage rate ( where indicated ) .  indicative statistics are generally aggregated by month / year ; in some cases , by temperature range . ( they can be by regional wholesale prices as well . ) ege establishes if the target utility has changed unit commitment routines significantly in recent years .  ege is based upon uniquely timely actual hourly operating data . ege is now updated for the 4 th quarter 2000 ( through december 31 , 2000 ) . ege lst quarter 2000 ( through march 31 , 2001 ) will be available approximately june 15 , 2001 .  ege also compares and ranks generating units ' commitment and dispatch with that of similar units operated by the target utility ( as well as other regional generators ) . some utilities operate a group of economically marginal units at the half - load level for lengthy time periods ( without an apparent reliability basis ) , splitting the limited economic demand for power among the units .  other ege supporting data :  i . planned maintenance schedule ( where indicated ) ;  j . actual maximum generating capacity ;  k . actual minimum generating capacity ( actual maximums and minimums can differ significantly from government - reported values ) ;  l . average heat rate in the full - load range ; and  m . average heat rate in the three - quarter - load range .  with respect to a generating units ' average heat rate in the half - load , three - quarter - load and full - load ranges , it can be instructive to rank these relative to similar generating units within a region . it can also be of interest to identify significant seasonal variations in average heat rates and maximum capacities , and changes in recent years in these parameters .  the real - world example of allegheny energy  allegheny energy can serve as a case study to illustrate the application of ege . in the 4 th quarter 2000 , for instance , one high - cost generating unit was started virtually every weekday morning ( 52 times ) and committed for the whole day ( in all but two cases ) . arguably , there are power products that could substitute for this routine ( in part at least ) at a profit to the seller of the product and allegheny energy .  another high - cost allegheny energy generating unit was started virtually every weekend during the autumn ( nine times ) and committed for most of the coming week . at another plant , two high - cost units were operated too often in the expensive half - load range ( some 550 hours ) and three - quarter - load range ( another 400 to 600 hours ) ; they were seldom called upon to run at higher levels . again , there are power products that that address these practices and might appeal to allegheny energy .  offering of energy leader consulting ( elc )  ege is a procedure , not a software package or data base . elc believes this format is more effective in arming clients with the information they need to act upon profit opportunities .  elc transfers its \"\" knowledge \"\" about the ege procedure and the supporting data methods in a straight - forward four - step process :  1 . enron would select one to three target utilities .  2 . elc would perform the ege procedure on the target utilities .  3 . employing this real - world analysis as a pedagogic tool , elc , in a one - day seminar with enron personnel , would instruct how to perform the procedure in the future ( without the assistance of elc ) .  4 . optionally , elc would provide ege supporting data , quarterly , to enron .  the basic ege supporting data set is national including all generating units under the continuous emission monitoring program ( virtually all fossil fuel units ) . parameters that are incorporated , and the data set format , will be specified upon request . custom modifications will be considered .  steven a . mitnick  chief executive officer  energy leader consulting  4807 41 st street , nw  washington , dc 20016  ( 202 ) 997 - 0924 voice  ( 202 ) 537 - 0906 fax  smitnick @ energyleader . com\",0\n\"Subject: re : publication submission question  martin ,  i don ' t see any problem . the article supportsenron ' s position .  please , go ahead .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 09 / 2001 02 : 02 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  04 / 05 / 2001 01 : 01 pm  to : martin lin / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : publication submission question  martin ,  let me read it friday . we run our papers by our pr  department to review for any potential conflict with the company line .  i shall fwd it to them .  i think you should submit it as an enron employee with a note  that it was developed when you were at ut .  vince  from : martin lin on 04 / 02 / 2001 11 : 59 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : publication submission question  my supervising professors from ut and i are finishing a paper ( finally ! ) that is based on work done for my phd . all of the research was done while i was a grad student . i have a couple of questions regarding submission of this paper ( to ieee transactions on power systems ) .  1 . should i submit it with my affiliation as the university of texas at austin or as enron ( ena , corp , etc ) ?  2 . what legal or other reviews / clearances would i need ?  a draft of the paper for your review is attached .  thanks ,  martin \",0\n\"Subject: vince kaminski expense reports  hi liz :  vince has two expense reports pending for approval from greg whalley .  they are : london trip - 8 , 051 . 59  philadelphia ( wharton business school ) - 2 , 067 . 47  please have greg approve these as soon as possible .  the wharton school will be cross - charged to christie patrick ' s cost center .  but for expediency in getting this paid it was submitted on our cost center .  thanks !  shirley\",0\n\"Subject: i ' ve done it . . . .  vince ,  thanks for this . the original sender of this resume , brian , works for me !  say , do you have any hot leads on any good hands - on electrical engineers  interested in designing sensors ?  cheers , scott  - - - - - - - - - - - - - - - - - - - - - - forwarded by scott tholan / corp / enron on 01 / 30 / 2001  06 : 14 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski @ ect  01 / 30 / 2001 05 : 45 pm  to : scott tholan / corp / enron @ enron  cc :  subject : i ' ve done it . . . .  scott ,  please , take a look at this resume .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 30 / 2001  05 : 46 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : paula corey @ enron communications on 01 / 30 / 2001 01 : 03 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : i ' ve done it . . . .  vince -  here you go . . . this has been reformatted  - - - - - forwarded by paula corey / enron communications on 01 / 30 / 01 01 : 03 pm - - - - -  brian mihura @ enron  01 / 30 / 01 11 : 52 am  to : paula corey / enron communications @ enron communications  cc :  subject : i ' ve done it . . . .  here is matt ' s resume as a msword doc .\",0\n\"Subject: re : summer internship position  celeste ,  we need to make sure that the interns in vince ' s group are coordinated and  incorporated with the rest of the summer associates . they should be offered  the same starting dates , i believe they are may 22 , 2000 june 5 , 2000 . i am  not sure about the june date . would you check and let vince know . they  should also be offered the same starting salary package as the others . they  will be included in training ( a few days ) and any other events we host .  thanks\",0\n\"Subject: trial of weathereffects web site  mike ,  following up on my phone call , we ' re ready to do the following :  1 . assign a login and password to enron for a trial evaluation of the  www . weathereffects . com power trader web service .  2 . initiate a daily bilateral conference call at a morning time to be  determined . to ensure that your traders and analysts are ready for such a  call , we will await your response to this email before initiating the  service .  3 . we will also pdf certain energy analysis files to you ( eg , the daily gas  market file ) so you can see the evolution of our day to day thinking on the  markets .  a reminder that the power service currently deals with nepool and pjm and  will initiate coverage of nypp in september .  i look forward to hearing from you .  ed krapels  director , esai gas and power services\",0\n\"Subject: additional resources  ben and i have been discussing the possibility of getting more dedicated  support from houston on our project . we are wondering what the possibility  is of having either amitava or vasant come over for 8 - 12 weeks to help get  things jumpstarted on the the credit scoring and modeling front as well as  provide some guidance on the clo part of the business and potentially hiring  an additional full time resource . if there is any possibility , it would be  hugely valuable given the long lead times to get someone from the city in and  integrated in addition to the significant cost .  let me know your thoughts  bs\",0\n\"Subject: rice / enron finance seminar series  a copy of paul schultz ' s paper , \"\" who makes the market , \"\" is now  available . the paper to can be obtained ( by monday for sure ) from felicia  jones ( economics ) , latha ramchand ( university of houston ) , and vince  kaminski ( enron ) or barbara ostdiek ( everyone else ) .  paul ' s seminar is friday , march 30 , at 3 : 30 in room 201 ( note the room  change ) .  the abstract of the paper is copied below :  abstract  \"\" i provide evidence that nasdaq dealers make markets in the stocks in which  they receive order flow . several variables used to proxy for the stocks  that individual market maker ' s brokerage customers would trade , including  trading volume , location , underwriting participation and analyst coverage ,  are significant determinants of market marking activity . informational  advantages may also be a factor in the market making decision as evidenced  by dealers specializing in stocks in specific industries . some potential  problems that arise when researchers ignore the integration of market  making with brokerage , securities analysis and underwriting businesses are  discussed . \"\"\",0\n\"Subject: re : exotica . xla  hi anjam ,  thanks for the info .  i ' m afraid that one thing i don ' t know is precisely how to build  s : \\ research \\ exotica \\ excel \\ exotica . xla from the code you sent me .  could you send me instructions ?  also as you are very busy and away from your desk could you set up your lotus  notes  calendar so mary ward and joe kelsey  permission can see your calendar so i can get in touch with you if anything  comes up . they can both see my calendar .  thanks ,  sharad  enron europe  from : anjam ahmad 17 / 10 / 2000 11 : 37  to : sharad agnihotri / lon / ect @ ect  cc : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , zimin  lu / hou / ect @ ect , dale surbey / lon / ect @ ect  subject : exotica . xla  in answer to your questions .  anjam  - - - - - - - - - - - - - - - - - - - - - - forwarded by anjam ahmad / lon / ect on 17 / 10 / 2000 09 : 20  - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron europe  from : sharad agnihotri 16 / 10 / 2000 13 : 59  to : anjam ahmad / lon / ect @ ect  cc : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , dale  surbey / lon / ect @ ect , tani nath / lon / ect @ ect , steven leppard / lon / ect @ ect  subject : exotica . xla  hi anjam ,  i have quite a few questions / requests regarding the exotics libarary :  1 ) could you e - mail me instructions for building / compiling  s : \\ research \\ exotica \\ excel \\ exotica . xla  also if there is any more source code that i need please could you e - mail me  that .  you have all the code ( c & vba ) that makes up the library now - please see  previou e - mails  2 ) also could you e - mail me documents on the changes you have made to  s : \\ research \\ exotica \\ excel \\ exotica . xla  changes are documented through aterations to comments on individual source  code files as is the current method in houston and as adopted by me in  london - version control occurs at the individual file level rather than  through soiurce safe  3 ) the exotica . xla used in london and exotica . xll used in houston are quite  different . what regression testing has been done ?  how do we know if the two versions that we have been using produce the same  results .  i have not recently compared the xll from houston with our xla - this would  be a useful exercise for you  4 ) judging from the documentation there are quite a few more functions  available on the houston exotica  like asian spreads , quantos , digitals etc . is there any reason why they have  not been implemented in london ' s exotica . xla ?  maintenance and upgrades to london exotica to ensure compatability with  houston and vice versa is an on - going process - inevitably there will be some  lag between a new model being implemented in houston and in london , as is the  case with asian spreads and digitals . quantos are already available - see  vba code .  thanks in advance ,  sharad\",0\n\"Subject: floating lng terminal  folks ,  as a follow - up to scott neal ' s inquiry this morning concerning  portable / floating lng opportunities for california , i have learned that no  such capability currently exists .  according to todd peterson of enron global lng , exploitation of this  opportunity has been the topic of some industry articles but no one , as far  as we know , has  constructed such a vessel .  i did come across a proposed design for an lng floating terminal by the  italian company , tecnomare . i contacted them and they indicated that they  have not  built such a vessel . it is estimated that construction of such a vessel  would take 2 - 3 years , and as one might imagine , achieving the required  operational and  environmental performance in such a vessel would be quite substantial .  attached is a link to a relatively brief description of the proposed vessel ,  please let me know if any further research is needed .  charlie weldon\",0\n\"Subject: spring 2001 academic calendar for the jones graduate school  spring 2001 faculty and students ,  the spring 2001 academic calendar for the jones graduate school has been  posted to embanet . to access the academic calendar please open the jgsm  area icon on the embanet desktop . next please open the announcement jgsm  icon . you will find the spring 2001 academic calendar located under the  subject column . please open the document . if you do not have access to  embanet you will need to speak with david kilgore at kilgore @ rice . edu or by  calling david at 713 - 348 - 5378 .  thanks ,  kathy  kathy m . spradling  mba program coordinator  jesse h . jones graduate school of management  rice university  6100 main street , ms 531  houston , texas 77005 - 1892  phone : ( 713 ) 348 - 3313  fax : ( 713 ) 348 - 5251  email : spradlin @ rice . edu  http : / / www . rice . edu / jgs  e - mail : spradlin @ rice . edu  http : / / www . ruf . rice . edu / ~ jgs /\",0\n\"Subject: hello vince ,  i enjoyed talking with you this morning . per our conversation , here is  norberto valdes ' resume . i will call you in about an hour to make sure you  received it . thank you and let me know when you would like to meet him .  sincerely ,  lisa ford  281 ) 913 - 2076  ( see attached file : resumen 4 . doc )  - resumen 4 . doc\",0\n\"Subject: re : 1997 risk paper on pricing of electricity derivatives  bernard ,  i am forwarding your message to my assistant and she will mail you a reprint .  i would be glad to take a look at your dissertation . is it available as a  publication , working paper ?  vince  \"\" murphy , bernard \"\" on 03 / 01 / 2001 02 : 17 : 39 am  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc :  subject : 1997 risk paper on pricing of electricity derivatives  hello vince ,  my name is bernard murphy - i received your e - mail address from les clewlow ,  who was my phd supervisor at the financia options research centre at warwick  business school . i ' ve just finished my phd on electricity price jump  diffusions : a theoretical and empirical study in incomplete markets -  hence my interest in electricity price modelling and derivative pricing . i  was looking to get hold of a copy of your 1997 paper , which has recently  come to my attention :  \"\" the challenge of pricing & risk - managing electricity derivatives \"\" , the us  power market , risk publications , pp . 149 - 171 .  and les suggested that i contact you directly ( les is travelling at present  and doesn ' t have an electronic copy available ) to request an e - copy .  incidentally , i am lecturer in finance / financial mathematics at university  of limerick ( ireland ) and have taken a year out to work for caminus uk ,  where i am working on introducing and developing a markets - based approach  ( spark - spread ) to real asset valuations in the uk power industry .  thanks in advancve  bernard murphy\",0\n\"Subject: my resume  molly ,  we would like to bring this student as a summer intern ( the last one ,  we are running out of space ) .  i shall send you another message regarding his proposed dates .  thanks . i hope you have a very happy easter .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 13 / 2001 10 : 03 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  zhendong xia on 04 / 12 / 2001 03 : 58 : 25 pm  to : vince . j . kaminski @ enron . com  cc :  subject : my resume  hi , dr . kaminski :  glad to get your reply . here is my resueme . if you wanna know more  about me , please feel free to contact me . thanks .  zhendong xia  georgia institute of technology  school of industrial and systems engineering  email : dengie @ isye . gatech . edu  dengie @ sina . com  tel : ( h ) 404 - 8975103  ( o ) 404 - 8944318  - cv . doc\",0\n\"Subject: the garp 2001 convention  dear mr kaminski  ?  please find attached important information concerning the garp 2001  convention , which will be held in new york between 13 th and 14 th february ,  2001 .  ?  please respond by the 6 th september so that all your details are correctly  put into the brochure and our web site . should you have any queries please  do not hesitate to contact me .  ?  i look forward to working with you and to seeing you in new york in february .  ?  kind regards  ?  andreas  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  andreas simou  garp 2001 - conference producer  tel ? + 44 ( 0 ) 20 7626 9301  fax + 44 ( 0 ) 20 7626 9900  - kaminski . doc\",0\n\"Subject: rodrigo lamas - best wishes  i would like to take the opportunity to let you know i have resigned today .  i wish you all the best in your carreer and in life .  regards  rodrigo lamas\",0\n\"Subject: marketpoint business plan summary  vince :  thanks very much for your interest in our marketpoint product , and thanks  for the hour you gave me this morning . as promised , i am enclosing our  executive summary and first chapter from our business plan for you to take  forward to your management as a prospective enron - marketpoint investment  collaboration . i want to reiterate that should enron elect to be the lead  investor here , you will be exclusive in your industry if you want . if enron  wants to be the lead and ensure the entire second round of resources we  need , we would not offer and investment opportunity to other trading  companies , pipelines , or electrics until the third or subsequent rounds and  then only with your participation as a marketpoint board member . i am aware  you have coinvested with sap in the past and that you might want to coinvest  with them again . i presume you would not have a problem with  non - competitors such as epri , our management consulting service provider  partner , or our vc partner ( but i would want guidance from you in this  arena ) . i think you would find our vc partner very suitable and very  attractive . they have done several interesting energy and trading plays ,  and they would provide good management skills i believe . i hope we can move  forward together . i am looking forward to a positive response . thanks  again and best regards .  dale nesbitt  ps : you might hear from drew ries of your investments group . i spoke with  him after speaking with you about many of the same issues .  - longexecsum . doc\",0\n\"Subject: drogi vincenty . skoro ty byles na tyle mily ze zadzoniles osmielam sie i ja  zaimejlowac do ciebie . w dniach 29 . 04 do 7 . 05 bede w usa . cel turystyczny do  moich znajomych z roku . w programie mam wiele . glowna baza idahi springs . lece  z mija corka i kolegami z roku . nie znam twojego miejsca zamieszkania , ale  moze . tefon moich znajomych chyba 303 567 0190 , adres e - mailowy  pzdrawiam zofia grodek . oni maja na nazwisko golebiowscy .  get free email and a permanent address at http : / / www . netaddress . com / ? n = 1\",0\n\"Subject: christie and vince :  on behalf of enron team 1 , we would like to thank you for being such gracious  hosts . the trip far exceeded our expectations and we appreciate the fact  that so many people took time out of their busy schedules to meet with us . a  special thanks to the both of you for spending all day friday with us . we  look forward to our telephone conference on thursday and to working with you  in the future .  team 1 :  kim whitsel  nick levitt  vincent chen  jack rejtman  deepa mallik  tulika bhalla\",0\n\"Subject: research re - org  please let me know of any corrections .  - - stinson  teams reporting to krishna , tanya , mike , and maureen have no changes .  ena / egm / eim support to be primarily organized by type of support rather than  by business line under stinson and vasant :  stinson  ( ebs )  martin lin ( * ) , shalesh ganjoo , chonawee supatgiat , iris mack  ( option pricing )  zimin lu , alex huang , tom halliburton , bob lee , paulo issler , ken  parkhill , tom barkley , hector campos  vasant  ( power )  martin lin ( * ) , lance cunningham , sevil yaman  ( risk and market analysis )  amitava dhar , joe hrgovcic , nelson neale , kate lucas  ( * ) martin to have the option of maintaining ties to ebs or to gradually move  to mainly power fundamentals .\",0\n\"Subject: eol data mining  vince ,  here are four graphs i came up with yesterday afternoon that may be of  interest :  the first one shows what percentage of our trades are done with different  counterparties -  ( note the large part that aquila plays ! )  the other three graphs look at how trading volume varies during the week  between the hours of 8 : 00 am and 4 : 00 pm for different categories of product .  natural gas and power have their own graphs , as they have the largest traded  volumes . \"\" products \"\" is for the remaining categories .  there are still some things i would like to take a look at . the databeacon  software is now available , and can be reached at the following url :  do you have any specific questions that you would like me to try answering  regarding eol ?  i have also started doing some research on automated trading platforms . are  there any websites and / or papers you would recommend i read ?  thanks ,  tom\",0\n\"Subject: invoice for energy derivatives courses  shirley ,  please , pay .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 29 / 2000  12 : 33 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  lacima @ compuserve . com > on 03 / 28 / 2000 02 : 49 : 43 pm  to : shirley  cc : vince  subject : invoice for energy derivatives courses  shirley ,  please find attached the invoice for the energy derivatives courses . if i  should forward this to someone in accounts , please let me know who i should  contact and i will take care of it .  thanks ,  julie  lacima consultants  - enron 28 _ 03 _ 00 . doc\",0\n\"Subject: introducing the new iijournals online !  institutional investor journals are now published online !  dear subscriber ,  your institutional investor journals subscription now includes free access to  a full - text website . visit www . iijournals . com and log onto the new iijournals  homepage - - from there you can go to any of the journal specific sites .  you can logon today with the following account information .  userid : 13417514  password : 13417514  new site features at http : / / www . iijournals . com :  - read the full - text of the current issue online before the paper edition  reaches your mailbox .  - use a keyword search engine to search through the entire listing of  iijournals abstracts .  - access online any article that has been published since january 1999 .  - update your personal information , change your mailing address , or sample  other institutional investor journals .  to read full - text articles :  before accessing the full - text of articles on any institutional investor  journals web site , you need to install adobe acrobat 4 . 0 and fileopen . this  is a one - time process and should take only a few minutes .  please visit our \"\" how to read articles \"\" page on the website . click here to  link : http : / / www . iijournals . com / common / readarticles . asp  we hope you enjoy the new website . if you have any additional questions ,  comments , or suggestions about the website , please email info @ iijournals . com  or phone ( 212 ) 224 - 3664 .  sincerely ,  allison adams  publisher  http : / / www . iijournals . com\",0\n\"Subject: combinatorial auction - jan 11 mtg background  - - - - - forwarded by greg woulfe / enron communications on 12 / 28 / 00 09 : 58 am - - - - -  chonawee supatgiat @ enron  12 / 22 / 00 05 : 08 pm  to : stinson gibner / hou / ect @ ect , greg woulfe / enron communications @ enron  communications  cc :  subject : combinatorial auction  stinson and greg ,  i have read the paper \"\" combinatorial auction with multiple winners for  universal service \"\" from richard steinberg and frank kelly . they propose a  combinatorial auction which is an auction for multiple items that allows  bidders to realize their synergies on combinations of items . the  combinatorial auction is appropriated for bandwidth commodity because most  bidders in the market have synergies on the combination of items . for  example , if we want to get bandwidth between boston and dc , we would bid for  boston - ny and ny - dc . it will be valuable to us only if we won both links . if  we won only one link , it will be useless .  in the paper , they propose the auctioning method but their method has not  been tested or validated yet . i have not checked their proposition  mathematically but their paper was published in management science so i think  it should be all right . i will look at it in more details and let you know .  anyhow , there are also other combinatorial auctions that are actually used ,  for example , the alberta government ' s ppa auction that enron canada was  participated 3 - 4 months ago .  based on our long position on bandwidth , auction and exchange might be a good  channel to dispose our unused ( or unsold ) bandwidth . i know there is not much  demand in the market . but if we open a combinatorial auction or exchange , we  might be able to increase our market share . ( by taking demand from our  competitors ) . i believe , at the moment , there are no bandwidth exchanges that  allow \"\" combinatorial \"\" bids . if we are the first one to do it , we might  improve our sale channel and gain some market share . ( note : auction - > one  seller and many buyers : exchange - > many sellers and many buyers . )  moreover , i think auctioning the unsold bandwidth will not hurt us because we  cannot sell them anyway . in addition , we ourselves can be a dummy bidder in  the system and bid in the auction . if the current wining bid is too low , we  can just over - bid it and keep the product . this way , we can indirectly put a  reserve price on the products .  let ' s meet sometime in the first week of january .  - chonawee\",0\n\"Subject: re : thanks from enpower  you are welcome . it is my pleasure to work with the talented enpower team .  zimin  zhiyun yang @ enron  01 / 04 / 2001 05 : 29 pm  to : zimin lu / hou / ect @ ect  cc :  subject : thanks  hi zimin :  thanks a lot for the explanation of the spread option , it ' s not a cheap  help .  - zhiyun\",0\n\"Subject: vacation  goodmorning ,  i will be out of the office on  vacation for the next few days .  thanks  kevin moore  see you when i return .\",0\n\"Subject: optical network engineering & enron research offsite meeting  hi john , as per our discussion and e - mails , i am suggesting the following  dates for the subject offsite : april 14 & 15 th ( friday & sat ) . place and  agenda to follow once this date is nailed up . the heads of each group will  decide who will attend . we would also invite kevin hannon , scott yeager , tom  gros , ted seitz and jean mrha once the dates and agenda are agreed upon by  the technical folks .  as before , the idea is to introduce the two of the most technical groups  within enron and to exchange ideas and issues . the enron research team will  provide trading and modeling presentations and the optical network  engineering team will present networking and components related topics .  take away from the two days will be to provide john griebling ' s group with  better understanding about how the trading markets have developed in general  and energy markets in particular via enron ( i . e . , how the sausage was  made ! ) . likewise , john ' s group will provide us with better understanding of  optical networking from a technical perspective . particularily , how ebs is  planning to develop the puplic switched optical network ( pson ) that john has  ' branded ' our pooling point based network !  please reply asap if these two days ( april 14 & 15 ) will work . additionally ,  john , is the original suggestion to hold it in scott yeager ' s cabin somewhere  up in colorado mts . still holds ? if yes , i should probably let scott know !  if not , i ' ll try to find other places - - any suggestions , anyone ?  regards ,  ravi .\",0\n\"Subject: re :  craig ,  thanks for the feedback . elena is doing really great and i think that she  will be  a great enron ' s asset .  vince  craig breslau  08 / 09 / 2000 09 : 19 am  to : vince j kaminski / hou / ect @ ect , mike a roberts / hou / ect @ ect  cc :  subject :  i wanted to give you some feedback . elena chilkina has gone way above the  call of duty to help me on a very important research project . i am trying to  conduct some research on the global fuels market for jeff shankman . when i  mentioned this to elena , she was extraordinarily helpful in helping me  compile some very useful information on very short notice . she was able to  quickly define the scope of the project and gather some pertinent  information . because this was not one of her regular assignments , she put in  many extra hours to help us out on this project .  i just wanted to let you know about a job well done .  regards ,  craig\",0\n\"Subject: wharton  hi jeff !  i know you received the information below . additionally , i have 2 people  from broadband services meeting us there friday ( one is traci warner who set  up the rice u deal ) . further , i ' ll be meeting with amy briggs regarding the  entrepeneurship conference nov 30 th and dec lst . i ' ve already spoken with  her and tom piazze and both independently confirmed as you suspected that we  committed to sponsor at the $ 10 , 000 level . this entitles us to banners ,  panels , posters , and most importantly , a keynote address . i ' ll discuss the  keynote address with her but would appreciate your thoughts in advance as to  how you ' d like to see the keynote speech executed ( suggestions for topics ,  proposed speaking candidates , when in the conference you ' d like to see  enron ' s speech , etc ) . i ' ll review the trip with you when we return .  thanks jeff !  - - christie .  - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 10 / 13 / 2000  03 : 18 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" piazze , thomas \"\" on 10 / 13 / 2000 09 : 18 : 24 am  to : \"\" amit , raffi \"\" , \"\" macmillan , ian \"\"  , \"\" stamer , anne \"\" ,  \"\" cieri , emily gohn \"\" , \"\" weigelt , keith w \"\"  , \"\" piazze , donna \"\" ,  \"\" tyler , cara \"\" , \"\" kunreuther , howard \"\"  , \"\" wind , yoram \"\" ,  \"\" baltes , michael \"\" , \"\" winter , sidney g \"\"  cc : \"\" roberts , stacey \"\" , \"\" williams , dorothy  ( wharton ) \"\" , \"\" harker , patrick \"\"  , \"\" ' kaminski , vince ' \"\" ,  \"\" ' patrick , christie ' \"\" , \"\" ' shankman , jeff ' \"\"  subject : visit by enron , 19 october 2000  a team of key executives from enron will be on campus on the 19 th of october  for the purposes of meeting with key staff and faculty to learn more about  the school and how the firm can gain a greater presence here . included in  this group will be :  vince kaminski , director of research  christie patrick , vp , university relations  mike rosen , director , university affairs group  i have developed a proposed agenda for the visit . please review and confirm  that you are available to meet with one or more of the enron team at the  times specified . if so , please provide me a prefered meeting location . if  not , please alternate times and locations .  8 : 00 - 9 : 00 breakfast with donna piazze and keith weigelt to discuss \"\" tiger  team fap project \"\" the ivy grill , inn at penn  9 : 00 - 10 : 30 meeting with raffi amit , ian macmillan , emily cieri and anne  stamer to discuss the sol c . snider entreprenuer center and its related  programs , the business plan competition and webi . . . 4 th floor conference room ,  vance hall ? ? ?  10 : 30 - 12 : 00 christie and mike hold discussions with cara tyler , bob bonner  and pat rose regarding recruiting processes and procedures . . . cms conference  room  10 : 30 - ? ? ? broadband executive meets with gerry mccartney and other  university officials to discuss campus needs , future usage projections , etc .  10 : 30 - 11 : 30 vince meets with sid winter reference jones center and related  research  11 : 30 - 12 : 00 vince meets with howard kunruether to discuss risk management  12 : 00 - 1 : 15 pm group lunch with jerry wind at faculty club to discuss the  e - fellows program  2 : 00 - 3 : 00 pm christie and mike meet with mike baltes to discuss co - branding  issues with wharton and upenn  5 : 00 pm all will attend the et conference dinner event  please confirm your willingness and availability to support this agenda .  thanks for your help .  tom\",0\n\"Subject: request submitted : access request for sandeep . kohli @ enron . com  you have received this email because the requester specified you as their  manager . please click  approval to review and act upon this request .  request id : 000000000025312  request create date : 3 / 23 / 01 9 : 52 : 03 am  requested for : sandeep . kohli @ enron . com  resource name : visual studio enterprise  resource type : applications\",0\n\"Subject: focus group invitation - supervisors  charlene , karen :  vince asked me to let you know that he will be unable to attend the lunch  on friday , september 8 th . he has a previous engagement that he cannot  miss . i tried contacting constance charles , but her voice mail box was  full .  thanks .  shirley crenshaw  administrative coordinator\",0\n\"Subject: meetings next week  hi guys ,  vince talked with christie and they both are available next tuesday ( game  day ) at 9 am . can you meet then to start preparing an outline ?  also would you be up for a presentation at the research group ' s lunch meeting  next thursday ? vince will be out , but you ' ll undoubtably get some  interesting questions from others at the meeting , if your up for it . let me  know soon , and we can schedule you for next thursday .  talk to you later  ken\",0\n\"Subject: ebs research telecom rercruiting effot  hi , vince please put your best effort in making sure that we differentiate  summer interns and associates that ebs research will be hiring . i am talking  about compensation here . ken rice mentioned that ebs is in the process of  developing a technical equivalent of our aa pool . ebs research people can  potentially rotate through this pool in the future . i just don ' t want to  risk losing people like giuseppe ( & get the word out that we are low - ballers )  because we have to fit them into certain set of categories that was designed  for the energy business . i realize that you have estabilished such  differentiation for research as a whole , but i think that would have to be  moved up a notch in the case of ebs .  ravi .\",0\n\"Subject: mg metals : quant analysis & risk  hi eric ,  thanks for getting back to me - i believe there are a number of issues to  address to ensure that the integration goes smoothly from a risk management  and quantitative analysis perspective , and i have put together a ( by no means  exhaustive ) list : -  i ) seamless transfer of front and middle office systems from an exotic  options linking perspective ( e . g . their spreadsheets link to different option  pricing add - ins )  ii ) development of volatility curves and factor analysis to ensure that we  can capture metals risk in our var system ( we will require historical data  for this ) .  iii ) ensure that mg staff on quant and risk side become familiar with our  methods and systems and vice versa  these tasks will involve a significant degree of cross - communication with  relevant contacts within mg metals , and so i look forward to starting on the  process as soon as possible - i hope to play a full part from a quantitative  research and risk management perspective to ensure that everything goes  smoothly in this exciting new development , so please do not hesitate to  involve me .  best regards ,  anjam ahmad  research  x 35383  enron europe  from : anjam ahmad 15 / 06 / 2000 16 : 18  to : eric gadd / lon / ect @ ect  cc : dale surbey / lon / ect @ ect , vince j kaminski / hou / ect @ ect  subject : quant analysis & structuring for metals business  dear eric ,  i understand from dale that you are co - ordinating the integration of mg  metals into enron europe . dale and i thought it would be a good idea to  ensure that we are fully prepared from a quantitative research and  structuring perspective so that we can \"\" hit the ground running \"\" when they do  arrive . i would be grateful if you could provide a contact person in mg  metals that may look after this area , or someone who may find it useful to  discuss and identify their possible future modelling requirements .  thanks & regards ,  anjam ahmad  research  x 35383\",0\n\"Subject: hi vince !  yes , meeting for dinner tuesday night is great !  i ' ll be coming in on tuesday from d . c . and i ' ll be taking the train to new  york on wednesday morning .  see you and ken tuesday at 5 : 30 at the inn at penn lobby .  hope you both have a great weekend ! !  thanks !  - - christie .  - - - - - forwarded by christie patrick / hou / ect on 02 / 16 / 2001 11 : 23 am - - - - -  vince j kaminski  02 / 16 / 2001 11 : 04 am  to : christie patrick / hou / ect @ ect  cc : kenneth parkhill / na / enron @ enron , vince j kaminski / hou / ect @ ect  subject : re : change - video to teleconferences - enron  christie ,  meeting at 5 : 30 is fine with me . the presentation is at 6 : 30 .  i sent you a message regarding a dinner on tuesday .  can you join me and ken parkhill ?  vince  from : christie patrick on 02 / 16 / 2001 10 : 19 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : change - video to teleconferences - enron  hi vince !  thanks for the information below !  i spoke with tom piazze today . i ' ll be meeting with him at 3 : 30 on the 20 th  to discuss the webi contract . i ' ll also be meeting with wharton ' s broadband  ( technical people ) before our meeting with the students . further , i hope to  meet with the people in charge of the business plan competition .  tom suggested you might want to call howard kurnreuther ( sp ? ) and possibly  stop in to see him while we are at wharton .  i ' ll be getting to wharton sometime tuesday ; i ' ll try to get a reservation at  the inn at penn . i ' ll then be leaving early wednesday morning by train to  new york .  shall we meet in tha lobby at the inn at penn before going to meet the  students ( i think the meeting with the students is at 6 pm - ish ) - - say , 5 : 30 ?  please let me know !  also , we still need to give wharton an answer as to whether we ' re interested  in another $ 50 , 000 investment in efellows .  thanks vince !  have a great wekend !  - - christie .  - - - - - forwarded by christie patrick / hou / ect on 02 / 16 / 2001 10 : 13 am - - - - -  vince j kaminski  02 / 16 / 2001 10 : 06 am  to : christie patrick / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , kenneth parkhill / na / enron @ enron  subject : change - video to teleconferences - enron  fyi  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 16 / 2001  10 : 06 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  fap on 02 / 16 / 2001 08 : 35 : 22 am  to : clay degiacinto , deepa mallik  , dennis feerick  , heather thorne  , jack rejtman  , jason cummins  , kim whitsel  , nicholas levitt  , omar bassel  , ram vittal , steve  lessar , thomas  , tulika bhalla ,  vincent chen  cc : fap , \"\" ' vkamins @ enron . com ' \"\"  , \"\" ' patterm @ wharton . upenn . edu ' \"\"  subject : change - video to teleconferences - enron  3 / 1 shdh 215  3 / 22 shdh 215  3 / 29 shdh 215  please note that the remaining videoconferences scheduled with enron have  been changed to teleconferences due to the difficulties we have experienced .  the host has agreed and we will , therefore , continue with teleconferences in  the same locations / dates as noted above .  any questions , please contact the fap office .  thanks ,  donna\",0\n\"Subject: power trading  hi folks :  very glad to hear about the new developments . just to recap what we  discussed this morning about different things you need to look into to set up  trading operations and the contacts :  1 . licence to trade : regulatory people : i guess you know about this part  better than me .  2 . trading & risk mgmt : global risk mgmt oversight : john sherrif in london  has the overall responsibility outside western hemisphere . research group can  help with the structuring models used for trading .  3 . risk conrols : before trading group is operational , it needs to get the  authorization from the board of directors of enron along with total position  limits and possibly value @ risk limits . these limits are typically by  commodity type and by region . risk assessment & control ( rac ) under rick buy  performs the internal control function ensuring that the businesses adhere to  these trading limits . ted murphy is the vp in rac overseeing the trading  operations . the value @ risk models come from the research group , but  day - to - day monitoring of the numbers is done by ted ' s group .  4 . credit risk : a credit reserve number is computed for each deal ( again , the  models are created by research ) and is transferred to the credit group under  bill bradford ( also in rac ) . this is basically like buying insurance from the  corp . , so that if there is a couterparty default , the loss is covered by the  reserve pool of the credit dept .  5 . legal : the name i was given is alan aronowitz for legal help .  6 . back office : initially can survive with excel spreadsheets . you should  contact the it though when the plans finalize to talk about systems .  australia is the most recent place where we set up the trading operations .  you can talk to paul quilky , the trader there to talk about these issues  ( mention to him that grant masson in research gave his name ) .  barry pierce in london was incharge of back office at the begin there .  i can coordinate for talking with people next week . give me a call monday if  possible . i hadn ' t the time to search for the presentation stuff today . will  do it next week .  krishna .\",0\n\"Subject: re : developing my electricity model at enron  aziz ,  yes . if you are interested in joining us next summer as an intern ,  we would be very happy to have you .  please , send me your resume .  vince  aziz lookman on 12 / 06 / 2000 01 : 11 : 57 pm  to : vince . j . kaminski @ enron . com  cc :  subject : re : developing my electricity model at enron  dr . kaminski :  i am the phd student at the business school at carnegie mellon who is  interested in energy modeling . thanks once again for taking the time  to talk with me about my model for electricity during your recent  visit to carnegie mellon . during our conversation , you had mentioned  the possibility of my coming out to enron to work on developing my  model , possibly through an internship . is this still an option ? if so ,  could you please advise me how to proceed .  sincerely ,  aziz a . lookman\",0\n\"Subject: re : greetings from london ( to enron )  iris ,  please , feel free to give me a call when you have a few minutes .  i shall be glad to chat with you .  vince  iris . mack @ paribas . com on 03 / 30 / 2000 02 : 24 : 27 am  to : vkamins @ enron . com  cc : denis . autier @ paribas . com  subject : greetings from london ( to enron )  dear dr . kaminski ,  how are you ? it was nice to meet you at the real options conference in  nyc .  i was intrigued by some of the comments in your conference talk . in  particular , by your use of real options to hedge financial options . this is  something i am interested in as well .  when you have some time , could we chat about this topic in a bit more  detail ?  thanks for your time and consideration . hope to hear from you soon .  regards ,  iris mack  - - - - - - - - - - - - - - - -  this message is confidential ; its contents do not constitute a  commitment by bnp paribas group * except where provided  for in a written agreement between you and bnp paribas group * .  any unauthorised disclosure , use or dissemination , either  whole or partial , is prohibited . if you are not the intended  recipient of the message , please notify the sender immediately .  * bnp paribas group is a trading name of bnp sa and paribas sa  ce message est confidentiel ; son contenu ne represente en  aucun cas un engagement de la part du groupe bnp paribas *  sous reserve de tout accord conclu par ecrit entre vous et le  groupe bnp paribas * . toute publication , utilisation ou diffusion ,  meme partielle , doit etre autorisee prealablement . si vous n ' etes  pas destinataire de ce message , merci d ' en avertir immediatement  l ' expediteur .  * le groupe bnp paribas est le nom commercial utilise par bnp sa et paribas sa\",0\n\"Subject: fw : winston  debbie ,  this is an update on the continuing winston saga . tanya  identified the sections of the code that produce inefficiencies  but the rest is in the winston ' s hands .  steve stock is very cooperative and takes a very rational , enron - first  approach to the problem . privately , my concern is that the code , based on  tanya ' s  report to me , leaves a lot to be desired . the code tends to be a very  mechanical  implementation of the algorithm , developed without a series attempt to  optimize it .  let ' s keep paddling along .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 24 / 2001  08 : 53 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : stephen stock / enron @ enronxgate on 01 / 23 / 2001 05 : 38 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : fw : winston  vince ,  . . . just to keep you in the loop on the tanya / winston issue . . .  regards  steve  - - - - - original message - - - - -  from : stock , stephen  sent : tuesday , january 23 , 2001 5 : 36 pm  to : tamarchenko , tanya  subject : re : winston  tanya ,  i just checked in with the contractors here . . . . . and it looks like it might be  a good idea for you to spend about 30 minutes with them to give you a guided  tour of their documentation .  it ' s presented as a linked set of word documents and visio drawing , with  links to all the reletive parts as hyperlinks . it ' s pretty good and i imagine  it will be very usefull to you , but probably requires a little introduction  first .  please feel free to come to my office whenever it is convenient . even if i ' m  not available , the guys are just outside my office and i can easily stop  whatever i ' m doing to introduce you to the project manager .  regards  steve  - - - - - original message - - - - -  from : tamarchenko , tanya  sent : tuesday , january 23 , 2001 4 : 53 pm  to : stock , stephen  subject : re : winston  steve ,  - we spent about 5 fruitful hours with winston last week .  - i pretty much understand the data flow when the code runs .  - i also got an idea where the time is spent during the execution of the code  by questioning winston .  i did not see any results of profiling the code . winston ' s opinion is ( as i  understood ) that he knows how much time is spent  on different calculations and profiling is not easy to do , so we don ' t need  to do it .  - based on above i suggested possible way to reduce the time credit model  takes to run and we discussed it with debbie , who was  going to arrange a meeting with winston .  - it might be useful to look at the documentation created by contractors , if  you have it handy - send it to me , please .  thank you ,  tanya .  from : stephen stock / enron @ enronxgate on 01 / 23 / 2001 03 : 38 pm  to : tanya tamarchenko / hou / ect @ ect  cc :  subject : winston  tanya ,  how ' s it going with code - review from your perspective ?  . . . did you manage to talk to our documentation contractors ?  . . . if not , would you me to arrange for them to bring you the documentation as  it currently stands ?  regards  steve\",0\n\"Subject: risk article  fyi .  - - - - - - - - - - - - - - - - - - - - - - forwarded by vasant shanbhogue / hou / ect on 01 / 23 / 2001  09 : 06 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  ben parsons  01 / 23 / 2001 08 : 51 am  to : nigel price / lon / ect @ ect , george albanis / lon / ect @ ect , markus  fiala / lon / ect @ ect , jean - sebastien fontaine / corp / enron @ enron , katherine  siig / eu / enron @ enron , amitava dhar / corp / enron @ enron , vasant  shanbhogue / hou / ect @ ect , ilan hershkovitz / lon / ect @ ect , greg  hedger / lon / ect @ ect , david a wall / risk mgmt / lon / ect @ ect , simon  brooks / lon / ect @ ect  cc : bryan seyfried / lon / ect @ ect , steven leppard / lon / ect @ ect  subject : risk article  everyone should read the attached risk article about calculating def probs  from cds quotes .  amazingly it is in pretty close agreement with our own methodology for both  cds valuation and reverse engineering def probs . the only extension in the  reverse engineering is that instead of linearly interpolating cds quotes ,  they propose minimising an error measure based on ' smoothness ' of def prob  curve and difference between model and market prices .  what is also amazing is the fact that this article has been published in  risk , given that it is essentially the same as my credit pricing paper , plus  one excellent idea . given extra time , resources and brainpower , there is no  reason why we shouldn ' t have similar work published ourselves .  ben  ( thanks steve for pointing this article out )  - - - - - - - - - - - - - - - - - - - - - - forwarded by ben parsons / lon / ect on 23 / 01 / 2001 14 : 40  - - - - - - - - - - - - - - - - - - - - - - - - - - -  london fax system 2  23 / 01 / 2001 14 : 09  to : ben parsons / lon / ect @ ect  cc :  subject : new fax received ( likely sender : + 44 20 7783 8076 ) .  you have received a new fax from + 44 20 7783 8076  the image contains 3 page ( s ) .\",0\n\"Subject: houston trip  hello everyone !  regarding the tiger team research project houston trip , these are the rsvp ' s  i ' ve received :  jaideep singh  dennis feerick  kim whitsel \"\" and team 1 \"\"  ram vittal  heather thorne  pat henahan  vincent chen  jack rejtman  deepa mallik  josh leventhal  edson otani  omar bassal  stephen lessar  clayton dediocinto .  note : heather and jack have requested to stay in houston until sunday  ( expenses other than air fare , beyonfd friday at enron will be individually  borne ) .  donna ,  would you please review this list , add the individual names of \"\" team # 1 ) ,  add any additional faculty , t . a . ' s etc , that will be attending , and returnm  this list to me and my assistant , \"\" melinda mccarty \"\" who will begin the  arrangements . also , if others would prefer sunday returns to phily , on the  same terms offered heather and jack , please so indicate no later than  tuesday , dec . 20 . please inform donna , who will then prepare and forward to  me and my assistant melinda ( e - mail address above ) one complete , confirmed  list of attendees . the plan will be to leave phily on thurs afternoon ,  arrive late aft thursday , dinner at churrasco ' s south america restaurant  thursday evening with me , vince , vance , jeff shankman , and possibly a few  others from enron .  hotel thursday evening and ground transportation through return to airport  will be arranged by enron .  friday will be reserved for an enron tour , and individual meetings the teams  would like to set up with members from variuous business units  return will be scheduled for early fri evening , except for those electing to  stay through sunday . again , except for return to airport and airfare ,  expenses beyond friday afternoon will be borne by each respective student  ( though we encourage you to stay and look around this great city of houston ! ) .  thanks donna , for your immediate assistance with this - - vinve , vance , jeff and  i are excited about the trip ! !  regards !  - - christie .\",0\n\"Subject: re : my model for spikes  dear vince ,  thank you very much for your e - mail . i am very excited about the opportunity y  to see you soon in dallas . any week day , in general , and fridays , in  particular ,  is convenient for me . please let me know what day might be convenient for you .  i look forward to hearing from you and to seeing you soon .  sincerely ,  valery\",0\n\"Subject: re : resume  ok  vince j kaminski  01 / 17 / 2000 12 : 46 pm  to : elizabeth grant / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , grant masson / hou / ect @ ect  subject : re : resume  elizabeth ,  please , include jim fallon on the list .  vince  from : elizabeth grant 01 / 17 / 2000 09 : 39 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : resume  will do !  - elizabeth  vince j kaminski  01 / 17 / 2000 08 : 21 am  to : elizabeth grant / hou / ect @ ect  cc : grant masson / hou / ect @ ect , vince j kaminski / hou / ect @ ect , james b  fallon / hou / ect @ ect  subject : resume  elizabeth ,  i would like to bring this guy in , not necessarily to hire him ,  though it ' s a possibility , but mostly to find out what cinergy is doing .  we should include some power traders and originators in the interview list .  grant masson can give you some hints .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 17 / 2000  08 : 17 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  marshall . brown @ robertwalters . com on 01 / 14 / 2000 02 : 48 : 42 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : resume  vince ,  hope all is well . this candidate would be interested in talking with you .  regards ,  marshall brown  robert walters associates  212 - 704 - 0596  this email and any files transmitted with it are confidential and  intended solely for the use of the individual or entity to whom they  are addressed . if you have received this email in error please notify  the system manager .  this footnote also confirms that this email message has been swept by  mimesweeper for the presence of computer viruses .  - yu _ hai . doc\",0\n\"Subject: re : summer work . .  jinbaek ,  this is a project related to automated trading platforms for commodities .  vince  jinbaek kim on 05 / 02 / 2001 05 : 21 : 40 pm  to : vince . j . kaminski @ enron . com  cc :  subject : re : summer work . .  dr . kaminski ,  thanks for your mail .  i am sorry that i ' ll not be available earlier ,  i will talk with my advisor , but  probably it will be pretty negative .  however , i may be able to start it from junel ,  depending on what he tells . .  we will meet tomorrow afternoon ,  so i ' ll be able to let you know  whether we can start work earlier then .  and could you tell me briefly  what are those projects you have in mind ?  thanks !  jinbaek kim  ph . d candidate  dept . of industrial engineering and operations research  u . c . berkeley  http : / / www . ieor . berkeley . edu / ~ jinbaek  go bears !  : \"\" ' . _ . . - - - . . _ . ' \"\" ; ` . . ' . ' ` .  : a a : _ _ . . . . . _  : _ . - 0 - . _ : - - - ' \"\" \"\" ' \"\" - . . . . - - ' \"\" ' .  : . ' : ` . : ` , ` .  ` . : ' - - ' - - ' : . ' ; ;  : ` . _ ` - ' _ . ' ; . '  ` . ' \"\" ' ;  ` . ' ;  ` . ` : ` ;  . ` . ; ; : ;  . ' ` - . ' ; : ; ` .  _ _ . ' . ' . ' : ; ` .  . ' _ _ . ' . ' ` - - . . _ _ _ . _ . ' ; ;  ` . . . . . . ' . ' ` ' \"\" \"\" ' ` . ' ; . . . . . . - '  ` . . . . . . . - ' ` . . . . . . . . '  on wed , 2 may 2001 vince . j . kaminski @ enron . com wrote :  >  > jinbaek ,  >  > thanks for your message .  >  > we have a number of additional fascinating projects that you can work  > on . as a matter of fact , it would be great to have you here earlier .  >  > vince  >  >  >  >  >  > \"\" jinbaek kim \"\" on 05 / 02 / 2001 05 : 18 : 32 am  >  > to : , \"\" raghavan , suresh \"\"  > , \"\" mesquita , ross \"\"  >  > cc :  > subject : summer work . .  >  >  > long time no see ,  > how have you been . . . must be busy and living a challenging life ?  > i have been pretty busy too ,  > to finish a project and write a paper , these days .  >  > everything looks going ok for my summer internship .  > i took necessary steps to work out of campus , and sent  > signed contract to molly a week ago . .  >  > here is what i am expecting to do in the summer .  > please let me know if you have any change in mind .  > actually , i wonder a little bit if dealbench changed its business model . . .  > and maybe you got priority in something different  > because it has been quite a while since we talked .  > i ' d like to what ' s going on in dealbench team . . .  > raghavan and ross ,  > if we talk over phone it will be great !  >  > dr . kaminski ,  > if you think there is something else interesting to work with during the  > summer ,  > to both you and i , please let me know .  > my interest is auction , market design , and simulation .  > i am taking a financial engineering class , ( mostly on option pricing )  > and working on electricity generator valuation problem based on  > spark spread option .  >  > all of you ,  > let ' s keep in touch until we meet in june ! !  >  > best regards ,  > jinbaek  >  >  > tentative work period : 6 / 4 - 8 / 4  >  > 1 . tasks :  > 1 ) survey on auctions : the state of art  > single - item auction , multi - unit auction , sequential auction ,  > multi - attribute auction , combinatorial auction  >  > - theoretical  > - experimental  > - algorithmical  >  > 2 ) deal bench ' s auction model analysis  >  > 2 . deliverables :  > 1 ) 3 presentations :  > - lst presentation : around 6 / 30 : on different auction types and  > researches  > - 2 nd presentation : around 7 / 15 : the state of art in auction studies  > - 3 rd presentation : around 8 / 1 : deal bench ' s model analysis  >  > 2 ) report :  > summary of auction study in laymen ' s term  > deal bench ' s model analysis  >  >  >  >  >  >  >\",0\n\"Subject: re : merit increases  vince ,  i am going to have the team look at the problem . hopefully it will be an  easy fix . otherwise , we can work off the worksheets that you complete over  the weekend . you have my cell number if you have any questions .  norma villarreal  713 - 598 - 1545  vince j kaminski  01 / 19 / 2001 06 : 09 pm  to : norma villarreal / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : merit increases  norma ,  it seems that there is a bug in the system . i made an error mixing equity and  merit raises in one column . the system does not allow me to correct the  mistake by  moving the entries from one column to another . i can enter the changes , but  after i save them the system reverts to original designations .  as a result , the columns contain mixed entries related to merit and equity  raises .  the column totals are misleading .  i am taking a csv version home to continue making adjustments .  i shall work at home monday ( 281 367 5377 ) .  vince\",0\n\"Subject: sharad agnihotri : telephone chat following the offer  hi kate ,  thanks for setting up the telephone informal discussion with sharad so that i  can make him more comfortable with what ' s on offer - i really think it will  make the difference . as you mentioned , the agency fee goes up from 25 % to  30 % at 50 , 000 , hence the offer of 49 , 000 . i guess , as you mentioned , we can  keep in reserve the possibility of an element of sign on bonus to get him  over the decision hump .  regards & thanks ,  anjam\",0\n\"Subject: re : summer intern  hi steve ,  thanks for the fyi ; i ' d be happy to interview him if you need a second  opinion at the telephone interview you ' re arranging next week .  regards ,  anjam  steven leppard  29 / 03 / 2000 17 : 19  to : anjam ahmad / lon / ect @ ect  cc :  subject : re : here it goes !  - - - - - - - - - - - - - - - - - - - - - - forwarded by steven leppard / lon / ect on 03 / 29 / 2000  05 : 20 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  03 / 29 / 2000 03 : 45 pm  to : steven leppard / lon / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : here it goes !  steve ,  taking summer interns is the best way to screen and identify good candidates  at low cost and low risk . i would take this person in ,  assuming you can still run it by the analyst / associate program . they closed  the books  for the summer .  let me know if you run into any roadblock . i shall try help you from here .  vince  steven leppard  03 / 29 / 2000 08 : 31 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : here it goes !  vince  do you have any views on taking summer interns here in the research group in  london ? one of our analysts has recommended a friend of hers ( resume  attached ) . i ' m sure we could dream up some work for an intern , so let me  know what you think .  many thanks ,  steve  - - - - - - - - - - - - - - - - - - - - - - forwarded by steven leppard / lon / ect on 03 / 29 / 2000  03 : 30 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  zuzana strmenova  02 / 23 / 2000 10 : 51 am  to : steven leppard / lon / ect @ ect  cc :  subject : here it goes !  thanks , a lot steve .\",0\n\"Subject: erequest password  your erequest ' s password is 4311  to use this password , go to the erequest website and click on non - corp logon .  put in your email address and the password above and click log in , and you  will log into erequest .\",0\n\"Subject: re : term project :  dear vince ,  i was wondering if you were able to open the attachment with my resume this  time . rumor has it that you are currently hiring people for your group . is  this true ?  sincerely ,  helen  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : wednesday , april 11 , 2001 3 : 22 pm  to : isranir @ rice . edu ; demianen @ rice . edu ; tbal 93 @ yahoo . com ;  maue @ rice . edu ; loughrid @ rice . edu ; jblantonjr @ yahoo . com ;  gjohnson @ rice . edu ; emchombo @ rice . edu ; nazareth @ rice . edu ;  vanstone @ rice . edu ; ganguzza @ rice . edu ; nelsonb @ rice . edu ;  sssmith @ rice . edu ; wheelock @ rice . edu ; westmore @ rice . edu ;  gaudette @ rice . edu ; otaylor @ rice . edu ; dikeman @ rice . edu ; jettke @ rice . edu ;  litton @ rice . edu ; chilkina @ rice . edu ; helms @ rice . edu ; wankhade @ rice . edu ;  monfan @ rice . edu ; kostya @ rice . edu ; pcp @ rice . edu ; yueguo @ rice . edu ;  nlwbio @ rice . edu ; zhangn @ rice . edu ; rishad @ rice . edu ; yoshiura @ rice . edu ;  howard @ rice . edu ; dayangd @ rice . edu ; wuwei @ rice . edu ; so @ rice . edu ;  wooddy @ rice . edu ; lamas @ rice . edu ; tbalestrery @ houston . rr . com ;  hingoran @ rice . edu ; planck @ rice . edu  cc : vkaminski @ aol . com ; vince . j . kaminski @ enron . com ;  jason . sokolov @ enron . com  subject : term project :  this is the list of projects for the members of the \"\" quant \"\" team .  if you are working on different project , please , ignore this message .  please , develop in a spreadsheet solutions / examples for the following :  1 . black - scholes formula  2 . black ' s formula  3 . develop a spreadsheet to simulate price trajectory using :  a . gbm  b . gbm + jump ( formula 2 . 16 in the book , figure 2 . 7 )  c . mean reversion + jump ( formula 2 . 17 , figure 2 . 8 )  4 . schwartz single factor model ( formula 6 . 12 )  5 . develop models corresponding to the figures 7 . 1 , 7 . 3 , 7 . 5 , 7 . 6 , 7 . 8  vince\",0\n\"Subject: xpress and cplex runtime comparison results  vince ,  fyi  below is the comparison of the computation time results from cplex and xpress  optimization softwares .  - chonawee  - - - - - - - - - - - - - - - - - - - - - - forwarded by chonawee supatgiat / corp / enron on  05 / 19 / 2000 03 : 26 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  chonawee supatgiat  05 / 17 / 2000 05 : 48 pm  to : samer _ takriti @ enron . net , stinson gibner / hou / ect @ ect , ravi  thuraisingham / enron communications @ enron communications  cc : tom halliburton / corp / enron @ enron , pinnamaneni krishnarao / hou / ect @ ect ,  ming - lung . lee @ sycamorenet . com , ming 888 lee @ aol . com  subject : xpress and cplex runtime comparison results  hi ,  i have tested both cplex and xpress - mp optimization software in solving our  network design problem .  xpress is more user friendly hence it takes less developing time . however ,  cplex performs significantly better  in term of computation time , especially in integer programming .  as a result , eventhougth xpress is easier to use and cheaper , i would  recommend our ebs group to use cplex .  please let me know what do you think . . .  the test problem has 10 nodes , 77 cables , 5 cable speed .  the table below represents the computation time in seconds for solving this  problem .  the second column indicates if the general integer variables are relaxed ( but  still keep the binary variables ) .  the \"\" lp \"\" column represents the computational time when solving relaxed  problem ( no binary & integer variable constraints ) .  xpress took too much time in solving case 4 and 6 so i had to stop the  process and report the best solutions it found .  below are the graph .\",0\n\"Subject: meeting with mr . sud  vince / stinson ,  i met with rebecca mcdonald , and introduced her to mr . sud on saturday .  the meeting went on quite well , and mr . sud repeated the point he had made to  me regarding ntpc buying the power . he did not ask for any consulting or  other contract , but said that he would try to help .  rebecca seemed happy with the meeting , but i do not know whether she has a  plan in mind going forward .  i can give you more details of the meeting if anyone is interested . i do  believe that mr . sud is well connected in india .  regards ,  sandeep .\",0\n\"Subject: interview with enron corp . research  good morning adam :  the enron corp . research group would like to conduct an informal interview  with you at your convenience .  please give me some dates and times that would be convenient to , sometime  within the next 2 - 3 weeks and i will coordinate an interview schedule .  i look forward to hearing from you very soon .  best regards ,  shirley crenshaw  administrative coordinator  enron corp . research  713 - 853 - 5290  email : shirley . crenshaw @ enron . com  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 08 / 2001  09 : 30 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" adam bobrowski \"\" on 03 / 07 / 2001 09 : 45 : 03 pm  to :  cc :  subject : resume  dear mr . kaminski ,  as a follow - up to your oral communication with my friend tom ware , i would  like  to express my interest in working for your company , enron . please find  enclosed  my resume and curriculum vitae . if you need additional data , please feel  free to  call me at  ( 713 ) 592 - 8909 ( home ) or ( 713 ) 743 - 3483 ( office ) ,  or email me at  adambob @ stat . rice . edu or adambob @ math . uh . edu .  yours sincerely ,  adam bobrowski .  - cvbobrowski . ps  - bobrowskiresume . doc\",0\n\"Subject: australian energy 2000  dear vince ,  i hope you are well and that things round at enron aren ' t too hectic . it is  my pleasure to invite you to speak at energy any help would be gratefully received .  this event will be thoroughly marketed through both energy & power risk  management magazine and our extensive database . it is my aim to attract the  leading market players by providing a first - class programme with top - rated  speakers , making this a highly worthwhile event for the energy industry .  i have attached a copy of the programme for your information .  unfortunately my schedule for this event is very tight . please let me know  if you would like to participate by reurn email as it is unlikely that we  can speak on the phone as i am currently based in hong kong . if you would  like to send a colleague , then i would be happy to discuss this but it  would be great if you could complete the eprm grand slam by addressing our  three major annual events on three different continents !  i look forward to hearing from you soon .  yours sincerely ,  joel hanley  producer , eprm conferences & courses  - australianenergy 2000 . doc  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  eprm conferences  risk publications  hong kong  tel : 852 2545 2710  fax : 852 2545 7317  www . riskpublications . com\",0\n\"Subject: new 22 cpm color copier information  kevin ,  i am not sure by what date you require a color copier but if you can wait  until april , lanier has let me know that they are going to release their new  22 copy per minute color copier @ that time . please look @ the attached  spreadsheet and compare the cost with the $ 24 cpm canon copier sent to you  on 01 / 31 / 2000 :  let me know what you think .  thanks , iain . . . . . . . . . . . . . . . . .  iain russell  02 / 01 / 2000 10 : 11 am  to : kevin g moore / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , mike a roberts / hou / ect @ ect  subject : revised 10 cpm color copier information  kevin ,  i revised the cost on the 10 cpm tab under cpi : - - >  thanks , iain . . . . . . . . . . . . . . . . . . .  - - - - - - - - - - - - - - - - - - - - - - forwarded by iain russell / epsc / hou / ect on 02 / 01 / 2000  10 : 05 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  color copier information  from : iain russell on 01 / 31 / 2000 11 : 45 pm  to : kevin g moore / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , mike a roberts / hou / ect @ ect , shirley  crenshaw / hou / ect @ ect , carole rogers / epsc / hou / ect @ ect  subject : color copier information\",0\n\"Subject: talon  find attached the mc model for talon . a copy of this spreadsheet may be found  on o : \\ research \\ custom \\ projects \\ talon \\  paulo issler\",0\n\"Subject: re : houston visit  soussan ,  thanks . see you at 6 : 30 .  vince  \"\" faiz , soussan \"\" on 01 / 24 / 2001 10 : 46 : 57 am  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc :  subject : re : houston visit  vince ,  great . . . i ' m glad that you ' re in town on wed . 1 / 31 . i ' ll be staying @ the  westin oaks in the galleria . let ' s pls meet @ the hotel ' s lobby at 6 : 30 pm .  i have both your work and cell # and my work # is below ( just in case ) . i  look forward to our dinner and catching up .  best ,  soussan  914 253 4187  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : wednesday , january 24 , 2001 10 : 52 am  to : faizs @ texaco . com  cc : vince . j . kaminski @ enron . com  subject : re : houston visit  soussan ,  nice to hear from you . dinner on wednesday , jan 31 would be great .  please , let me know where you are going to stay .  vince  \"\" faiz , soussan \"\" on 01 / 22 / 2001 04 : 29 : 08 pm  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc : vkaminski @ aol . com  subject : re : houston visit  hello vince , happy 2001 and hope all is well .  i ' ll be in houston the week of 1 / 29 . it will be great to have our belated  dinner preferably on wed . 1 / 31 . pls let me know whether you ' re available  on  wed . or , if not , another day that week .  best ,  soussan  914 253 4187\",0\n\"Subject: re : real options openings ?  shirley ,  austin . please , set up an interview with me , stinson , zimin , vasant , grant ,  paulo , krishna . sometimes next week .  let ' s make it a formal interview ( coordinated through elizabeth grant ) .  vince  shirley crenshaw  05 / 08 / 2000 09 : 27 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : real options openings ?  vince :  is this gentleman in houston ? when do you want to bring him over - next  week ?  thanks !  vince j kaminski  05 / 08 / 2000 09 : 25 am  to : christopher m kenyon @ enron  cc : stinson gibner / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , vince j  kaminski / hou / ect @ ect  subject : re : real options openings ?  chris ,  we shall make arrangements to bring you over for an interview .  our hr department will contact you later this week .  vince  christopher m kenyon on 05 / 05 / 2000 07 : 56 : 11 am  to : vkamins @ enron . com  cc :  subject : real options openings ?  dear vince kaminski ,  i was auditing prof dyer ' s real options class on thursday when you spoke  on enron ' s activities in this area . i would be interested in exploring the  possibility of joining the group that works on real options in response to  and in anticipation of enron ' s business requirements . i ' m currently  working in the development and application of real options methodology at  schlumberger . in particular i ' ll be speaking at an industry real options  valuation conference in london ( http : / / www . iqpc . co . uk / finance / rov / ) and i  just had the paper accepted for publication in operations research . could  you pass my resume on to the relevant people to have a look at ?  thanks in advance ,  chris kenyon  - cmkenyon _ cv _ mayo 0 . doc\",0\n\"Subject: re : witaj wicku !  marek ,  jestem w trakcie organizacji programu interview w houston .  musze skoordynowac plany 3 - 4 osob , ktore powinny cie spotkac .  wicek  mark kierlanczyk on 02 / 05 / 2001 11 : 43 : 09 am  to : \"\" ' vkamins @ enron . com ' \"\"  cc :  subject : witaj wicku !  przez tydzien musialem poddac sie medycznej dygresji zapoznania sie co to  znacza kamienie nerkowe . teraz jest juz dobrze i znow powraca do mnie  nadzieja aby zyc wiecznie .  czy zdarzylo sie cos nowego odnosnie mojej wizyty w houston ? jesli nie to  umowmy sie na 13 lutego w nowym yorku , gdzie i kiedy , jesli nadal masz  zamiar przyjechac .  serdeczne pozdrowienia - marek\",0\n\"Subject: fwd : enron / stanford program  content - transfer - encoding : 7 bit  return - path :  received : from rly - yco 3 . mx . aol . com ( rly - yco 3 . mail . aol . com [ 172 . 18 . 149 . 35 ] )  by air - yco 5 . mail . aol . com ( v 76 _ rl . 8 ) with esmtp ; fri , 06 oct 2000 14 : 29 : 58  - 0400  received : from smtp . stanford . edu ( smtp . stanford . edu [ 171 . 64 . 14 . 23 ] ) by  rly - yco 3 . mx . aol . com ( v 75 _ b 3 . 9 ) with esmtp ; fri , 06 oct 2000 14 : 28 : 30 - 0400  received : from stanford . edu ( dialup - 209 . 245 . 133 . 121 . sanjosel . level 3 . net  [ 209 . 245 . 133 . 121 ] ) by smtp . stanford . edu ( 8 . 9 . 3 / 8 . 9 . 3 ) with esmtp id laaol 053 ;  fri , 6 oct 2000 11 : 28 : 25 - 0700 ( pdt )  message - id :  date : fri , 06 oct 2000 11 : 33 : 46 - 0700  from : nick bambos  x - mailer : mozilla 4 . 7 [ en ] ( win 98 ; i )  x - accept - language : en , el  mime - version : 1 . 0  to : vince . j . kaminski @ enron . com , vkaminski @ aol . com , gappy @ stanford . edu  subject : re : enron / stanford program  references :  content - type : text / plain ; charset = us - ascii  vince ,  i have managed to change my ticket and we can meet for dinner on sunday  10 / 15 / 00 .  shall we say at 7 pm ?  > > > > giuseppe : can you please join us for dinner on sunday 10 / 15 . we ' d like to  briefly  discuss the project too . could i please ask you to make reservations for 3 at  il fornaio or some other nice place in palo alto ? preferably a quiet place  where  we can talk .  > nick ,  >  > dinner on sunday would work for me . i shall stay  > in the bay area till monday morning .  >  > vince  >  > nick bambos on 09 / 28 / 2000 08 : 33 : 38 pm  >  > to : vince . j . kaminski @ enron . com  > cc :  > subject : re : enron / stanford program  >  > hi vince ,  >  > i am on the technical program committee of the infocom 2001 conference ,  > and we are meeting in new york city on saturday , october 14 th , to select  > papers for the conference program . i ' m leaving stanford on friday and  > getting back on sunday .  >  > it might be a possibility to have dinner together on sunday , if that would  > work for you . in that case i would have to reschedule my flight to land  > in sfo earlier than i ' m currently scheduled to land .  >  > would dinner on sunday work for you ? any chance we can meet monday for  > lunch ?  >  > i look forward to seeing you .  >  > best regards ,  >  > nick  >  > vince . j . kaminski @ enron . com wrote :  > >  > > nick ,  > >  > > i shall be in stanford oct 14 - 15 , visiting my family .  > > i would be glad to meet you ( and possibly giuseppe - your call ) for  > lunch .  > > please , let mer know if you are free on one of these days . saturday would  > > work better for me .  > >  > > vince  > >  > > nick bambos on 09 / 21 / 2000 02 : 09 : 46 pm  > >  > > to : stinson . gibner @ enron . com  > > cc : vince . j . kaminski @ enron . com  > > subject : re : enron / stanford program  > >  > > stinson ,  > >  > > great ! i ' m looking forward to a very productive collaboration .  > > i ' ll immediately start doing giuseppe ' s papers , for him to work  > > on the enron / stanford program .  > >  > > many thanks to you and vince , and i hope to see you soon at stanford  > > or enron . if i remember correctly , vince is visiting stanford in  > > october .  > >  > > best regards ,  > >  > > nick  > >  > > stinson . gibner @ enron . com wrote :  > > >  > > > nick ,  > > >  > > > i spoke with paul racicot , head of trading for ebs , north america this  > > > morning . he said that he is happy to send the $ 100 , 000 for your  > program  > > > from his budget . i have forwarded to him the draft letter to  > accompany  > > > the funds and will try to follow up to make sure that the money is sent  > > > promptly .  > > >  > > > - - stinson\",0\n\"Subject: re : vmi agreements  ravi ,  maybe stinson can get on this conference call . i shall be at the office on  thursday  only this week .  vince  ravi thuraisingham @ enron communications on 02 / 20 / 2000 01 : 13 : 06 am  to : vince kaminski , mark holsworth / corp / enron @ enron  cc : laura beneville , kristy carnes / enron communications @ enron communications ,  kristy carnes / enron communications @ enron communications  subject : re : vmi agreements  hi vince , mark holsworth reviewed our contract on such a short notice . i  thank mark for responding to our short - notice request . it turns out that we  need to get this database to move forward on a number of things and have  legal save some time for us is an excellent help . as mentioned below , it  appears that pennwell ' s folks want to chat some more about this .  mark , can you schedule a conference call with these people to finalise this  contract . i will be out of town all week next week on a lock - down deal  meeting . vince may be able to get on the conference call . i would greatly  appreciate it if you could help us close this one !  regards ,  ravi .  - - - - - forwarded by ravi thuraisingham / enron communications on 02 / 20 / 00 12 : 38  am - - - - -  russell @ pennwell . com  02 / 18 / 00 06 : 16 pm  to : ravi thuraisingham / enron communications @ enron communications  cc : toni . turnerbudd @ sbtglaw . com  subject : re : vmi agreements  ravi -  i would like to schedule a conference call between you , me , pennwell ' s  counsel ( toni turner budd ) , and enron ' s counsel to discuss your changes and  finalize the kmi end - user license agreement . i propose that we have the  conference call at 2 : 00 pm cst this monday , february 21 . please let me know  if you are available at this time and , if not , propose an alternative time  for the call . in addition , please provide me with a telephone number where  i can reach you for the conference call .  pennwell is looking forward to finalizing the license agreement and  delivering the kmi data to enron .  yours truly ,  russell iorio  manager of business development  pennwell corporation  1421 south sheridan road  tulsa , ok 74112  russell @ pennwell . com  ( 918 ) 831 - 9122 direct  ( 918 ) 831 - 9476 fax  - - - - - original message - - - - -  from : ravi _ thuraisingham @ enron . net  [ mailto : ravi _ thuraisingham @ enron . net ]  sent : thursday , february 17 , 2000 6 : 30 pm  to : rmack @ kmicorp . com ; mpass @ kmicorp . com ;  russell @ pennwell . com  cc : kristina _ lund @ enron . net ;  stinson _ gibner @ ect . enron . net ; vince _ kaminski @ enron . net ;  earl _ harvey @ enron . net ; tracy _ williams @ enron . net  subject : vmi agreements  >  hi richard , here is a marked up version from our lawyer .  please have your  people look at it and if it seems fine make the changes  and send a signed  copy back to me .  ravi .  - - - - - forwarded by ravi thuraisingham / enron communications  on 02 / 17 / 00 06 : 21 pm  - - - - -  | - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - >  | | mark |  | | holsworth @ enr |  | | on |  | | |  | | 02 / 17 / 00 |  | | 04 : 10 pm |  | | |  | - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - >  - |  |  |  | to : ravi thuraisingham / enron  communications @ enron communications , |  | gene diers / corp / enron @ enron  |  | cc :  |  | subject : vmi agreements  |  - |  please find attached my redlining of the vmi agreelment .  please review it and  send it to the vendor for their review .  ( see attached file : 2 - 14 - 2000 eula . doc )\",0\n\"Subject: re : another stanford acceptance  thanks so much vince !  vince j kaminski @ ect  04 / 23 / 2001 11 : 09 am  to : althea gordon / na / enron @ enron  cc : greg . whalley @ enron . com , traci . warner @ enron . com , patricia . payton @ enron . com  subject : re : another stanford acceptance  althea  great news . it ' s all your hard work .  vince  althea gordon @ enron  04 / 20 / 2001 01 : 43 pm  to : vince . kaminski @ enron . com , brad . romine @ enron . com , brad . alford @ enron . com , martin . lin @ enron . com , stephen . swain @ enron . com , matt _ harris @ enron . net , elliot . mainzer @ enron . com , mauricio . mora @ enron . com , victor . browner @ enron . com  cc : greg . whalley @ enron . com , traci . warner @ enron . com , patricia . payton @ enron . com  subject : another stanford acceptance  stanford team ,  we have received yet another acceptance - noah jacobs has accepted our offer as a summer associate . we are now 4 of 6 for our summer offers . i have sent paul kasper , our one full time offer a cultivation gift and will be checking in on him next week . also eric cope , a stanford student that vince kaminski ' s group had interviewed here in houston for a summer associate position has also accepted . all in all our stanford numbers are looking great !  many thanks to everyone and keep up the great work !  althea \",0\n\"Subject: re : tuesday interview  hi vince ,  thanks for replying to my email . the scheduled interview with howard will go  ahead tomorrow , i have written to shirley to request a convenient time for  you and we will arrange for howard to come back in for a video conference  with you .  regards rachel  vince j kaminski @ ect  16 / 02 / 2001 23 : 42  to : rachel quirke / eu / enron @ enron  cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect  subject : tuesday interview  rachel ,  i would like very much to interview howard but i am in  philadelphia on tuesday .  vince\",0\n\"Subject: re : hi  vince :  i think full time employment starting in about six months seems to be the  best option . it is probably best to get my dissertation wrapped up before  taking on additional commitments .  regards  zeigham  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com  to : zkhokher @ mail . utexas . edu  cc : vince . j . kaminski @ enron . com ;  stinson . gibner @ enron . com  date : tuesday , april 11 , 2000 10 : 25 am  subject : re : hi  zeigham ,  we discussed two options ( not necessarily mutually exclusive ) :  1 . summer internship  2 . full employment .  are you interested exclusively in full employment ?  i need the answer asap , as we are going to discuss the additional summer  intern positions this afternoon .  vince  zkhokher @ mail . utexas . edu on 04 / 11 / 2000 01 : 06 : 14 pm  to :  cc :  subject : hi  vince :  it was very nice talking to you at the texas finance festival and i think  the telecom market that enron is entering is very interesting and very  lucrative . i would be very interested in working in that segment for  enron .  however , i talked to sheridan about this oppurtunity and he said that it  is probably going to be another six months before i finish my  dissertation . so while i am definitely interested , the start date will  probably have to be around that time .  at any rate , it was a pleasure meeting you again and hopefully once i have  defended my dissertation we can discuss employment oppurtunities in  greater detail .  regards  zeigham  zkhokher @ mail . utexas . edu  512 - 471 - 1676\",0\n\"Subject: re : hello from vince kaminski at enron  that will be a great talk  shmuel s . oren , professor  dept . of industrial engineering  and operations research  4117 etcheverry hall  university of california  berkeley , ca 94720 - 1777  e - mail : oren @ ieor . berkeley . edu  phone : ( 510 ) 642 - 1836 or 5484  fax : ( 510 ) 642 - 1403  - - - - - original message - - - - -  from :  to :  cc : ;  sent : tuesday , august 29 , 2000 5 : 01 pm  subject : re : hello from vince kaminski at enron  >  > shmuel ,  >  > the date of our trip to berkeley has been set . it will be october 16 th and  > 17 th  > ( monday and tuesday ) .  >  > i shall be glad to make a presentation on energy derivatives markets  > ( development of the markets in the us and europe , valuation difficulties ,  > enron ' s role  > in developing the forward markets for natural gas and electricity ) .  >  > please , let me know if this topic would be of interest to you . if this is  > the  > case , i shall follow with a title and an abstract .  >  > by the way , are you free for dinner on monday ?  >  > vince  >  >  >  >  >  >  > \"\" shmuel oren \"\" on 08 / 24 / 2000 08 : 59 : 38 am  >  > to : \"\" vince j kaminski \"\"  > cc :  > subject : re : hello from vince kaminski at enron  >  >  > great . our seminars are 3 : 30 to 5 pm . if it works for you please send me a  > title and abstract .  > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / /  > shmuel s . oren , professor  > dept . of industrial engineering  > and operations research  > 4117 etcheverry hall  > university of california  > berkeley , ca 94720 - 1777  > e - mail : oren @ ieor . berkeley . edu  > phone : ( 510 ) 642 - 1836 or 5484  > fax : ( 510 ) 642 - 1403  > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / /  >  > - - - - - original message - - - - -  > from : \"\" vince j kaminski \"\"  > to : \"\" shmuel oren \"\"  > cc : \"\" vince j kaminski \"\" ; \"\" ashley baxter \"\"  >  > sent : thursday , august 24 , 2000 9 : 58 am  > subject : re : hello from vince kaminski at enron  >  >  > >  > >  > > shmuel ,  > >  > > thanks for the message . i am working with our recruiter , ashley baxter ,  > > to finalize the date of the trip . i shall shoot for october the 23 rd  > > if this date works for the rest of our team .  > >  > > vince  > >  > >  > >  > >  > >  > >  > > \"\" shmuel oren \"\" on 08 / 23 / 2000 11 : 46 : 19 am  > >  > > to : vince j kaminski / hou / ect @ ect  > > cc :  > > subject : re : hello from vince kaminski at enron  > >  > >  > >  > > dear vince .  > > i sent you a reply earlier this month but i haven ' t heard from you about  > the  > > date of your visit . our department has a seminar every monday . if you  can  > > schedule your visit on a monday i would like to invite you to give a  > seminar  > > which will be attended by many of our graduate students and faculty and  > will  > > give you an opportunity to tell them about your program . with sufficient  > > lead - time i can advertise the seminar in the hass school to their  > financial  > > engineering students .  > > shmuel .  > > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / /  > > shmuel s . oren , professor  > > dept . of industrial engineering  > > and operations research  > > 4117 etcheverry hall  > > university of california  > > berkeley , ca 94720 - 1777  > > e - mail : oren @ ieor . berkeley . edu  > > phone : ( 510 ) 642 - 1836 or 5484  > > fax : ( 510 ) 642 - 1403  > > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / /  > >  > > - - - - - original message - - - - -  > > from :  > > to : ; ;  > >  > > sent : tuesday , august 08 , 2000 10 : 59 am  > > subject : hello from vince kaminski at enron  > >  > >  > > > shmuel ,  > > >  > > > i hope you remember me . i visited you together with aram sogomonian , a  > > > good friend of mine , a few years ago . i am currently responsible ,  among  > > > other things , for recruiting graduates with finance and / or technical  > > > backgrounds at the university of berkeley . i would be glad to give you  > a  > > > call and talk more about the details of our program . my colleague ,  > > > ashleybaxter , from the analyst / associate program at enron would join  me  > > > as well .  > > >  > > > i am sending you a copy of the brochure about the analyst / associate  > > > program .  > > >  > > > vince kaminski  > > >  > > >  > > > vincent kaminski  > > > managing director - research  > > > enron corp .  > > > 1400 smith street  > > > room ebl 962  > > > houston , tx 77002 - 7361  > > >  > > > phone : ( 713 ) 853 3848  > > > fax : ( 713 ) 646 2503  > > > e - mail : vkamins @ enron . com  > > >  > >  > >  > >  > >  > >  > >  >  >  >  >  >  >\",0\n\"Subject: re : argentina modelling  michael ,  sorry , i was out around the holidays .  i shall be glad to meet with you in the lst week  of january . please call me ( 3 - 3848 ) or my assistant ,  shirley crenshaw , 3 - 5290 .  vince  michael guerriero @ enron _ development  12 / 20 / 99 02 : 31 pm  to : vince j kaminski @ ect  cc :  subject : argentina modelling  i am responsible for our argentina operation and would like to discuss some  modelling issues with you . could you be available wednesday for a meeting .  thanks  mfg\",0\n\"Subject: re : anita dupont resume  oooopppss !  please disregard the e - mail below as i see now that shirley has already sent  the job description to norma villarreal .  my apologies .  irma alvarez  ext . 3 - 1543  - - - - - - - - - - - - - - - - - - - - - - forwarded by sheila walton / hou / ect on 08 / 07 / 2000 11 : 20  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : sheila walton 08 / 07 / 2000 10 : 58 pm  to : vince j kaminski / hou / ect @ ect  cc : shirley crenshaw / hou / ect @ ect , norma villarreal / hou / ect @ ect  subject : re : anita dupont resume  mr . kaminski ,  in sheila walton ' s absence ( she is on vacation this week ) , please go ahead  and have shirley crenshaw forward the job description that you would like  posted to norma villarreal for handling .  if you or shirley require any additional assistance before forwarding your  material to norma , please feel free to contact me .  thank you .  irma alvarez  ena hr coordinator  ext . 3 - 1543  vince j kaminski  08 / 07 / 2000 08 : 29 am  to : sheila walton / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , norma  villarreal / hou / ect @ ect  subject : re : anita dupont resume  sheila ,  no , we have to go through the posting phase first .  i shall ask shirley to provide the job description .  vince  from : sheila walton 08 / 04 / 2000 02 : 44 pm  to : vince j kaminski / hou / ect @ ect  cc : norma villarreal / hou / ect @ ect  subject : re : anita dupont resume  vince , alice has strong qualities for a sr admin asst . vince , have we posted  this position on the job posting board ? if so , great . if not , we need to  post this opening to prove that we have given an opportunity to all existing  enron employees before we go outside to external candidates . otherwise ,  existing employees have a valid complaint that we are limiting their  advancement within enron but hiring externally . if we have not posted this ,  i will have the recruiter contact shirley so shirley can give us a job  description . then we can post and interview anita simultaneously . please  let me know asap if this has been posted . thanks .  sheila walton  vince j kaminski  08 / 02 / 2000 08 : 48 am  to : sheila walton / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : anita dupont resume  sheila ,  i would like to hire anita dupont as a senior admin assistant , reporting  to shirley .  please , call me about it after you review the resume .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 08 / 02 / 2000  08 : 52 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  anita dupont @ enron  08 / 02 / 2000 08 : 17 am  to : vince j kaminski / hou / ect @ ect  cc : shirley crenshaw / hou / ect @ ect  subject : anita dupont resume  vince :  here is the resume you requested . thanks . anita\",0\n\"Subject: thanks  vince :  thanks for the time that you took today .  it was very interesting to meet with you .  i ' d like to continue the discussions sometime .  thanks again . shawn\",0\n\"Subject: phone numbers  computer support : 713 - 348 - 8319 ( help with computer connection )  suzanna vazquez : 713 - 348 - 3736 ( copies , etc . )  please let me know if you have any more questions or if i can help in any way .  pamela castro  mba program associate  rice university  713 - 348 - 6223\",0\n\"Subject: iris m . mack  ms . mack has called you several times today trying to return your call . she  is currently in new york until december 2 , 2000 . ms . mack is interested in  talking with you regarding a position here . she is currently on vacation in  new york and she will be difficult to reach . i suggested that she try to  reach you by phone at 8 : 00 am our time tomorrow . also , she will be checking  her emails and voice mails regularly if you can give her a time and a phone  number where she might reach you whiole she is on vacation .  if she is unable to reach you before the holiday , she left some phone  numbers where she may be reached beginning tuesday , november 28 , 2000 in new  york .  tuesday , november 28 - thursday , november 30  washington square hotel  212 - 777 - 9515  friday , december 1 - saturday , december 2  marriott hotel  212 - 385 - 4900  also , her email is irismmack @ hotmail . com . she said you need both m ' s .\",0\n\"Subject: confirmation of your order  this is an automatic confirmation of the request you have placed using it  central .  request number : ecth - 4 uznuy  order for : vince  1 x ( compaq armada m 700 $ 2722 ) enron it purchasing  * please send all status inquiries regarding this request to :  mailto : receiving & hardware @ enron . com\",0\n\"Subject: thursday summer intern dinner  vince :  is it ok to send the following out to the interns ?\",0\n\"Subject: my first draft  dear dr . kaminski  this is quentin kerr again from australia . as i mentioned brefore , my paper  will be ready soon . please find out the attachment with the draft of my  paper ( hasn ' t submitted yet ) . there are always some errors in my paper .  please read it , give me some suggestions . any comments will be appreciated .  by the way , i would like to ask you , have you received my resume ? i sent it  to you about two weeks ago .  ps : attached with the pdf file .  thanks  quentin  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  quentin kerr , email : qkerr @ maths . uq . edu . au  room : 67 - 622 tel : ( 07 ) 33461428  department of mathematics , the university of queensland  - jumpl . pdf\",0\n\"Subject: intranet site  dear dale / all ,  thanks for the interest . . . i have already contacted intranet development  about updates - they don ' t have to do much except publish the document and  maybe add some headings , so it resources are not really a problem . as you  suggest , what would be great is if we can get some more content in terms of  well - explained introductions to various topics like value - at - risk , credit  risk and so on . it should not be at too high a level and will probably have  to be written specifically for this purpose . if you have time to put any  interesting material together ( word docs , text files or power point  presentations ) , please do pass it on to me and i will collate for the update .  regards ,  anjam  x 35383  dale surbey  15 / 06 / 2000 10 : 13  to : anjam ahmad / lon / ect @ ect  cc : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , kirstee  hewitt / lon / ect @ ect , benjamin parsons / lon / ect @ ect , steven leppard / lon / ect @ ect ,  matthew d williams / lon / ect @ ect  subject : re : e - commerce & continental europe  anjam ,  this would be a good opportunity to update the content on the intranet site  and expand the coverage into new areas . can you arrange some it resources  for us ? if everyone in research works on developing the content , we just  need it to publish it out to the intranet .  thoughts ? ?  - dale\",0\n\"Subject: re : eprm  julie ,  sorry for the delay . i was traveling a lot the last few days .  i shall send back my comments by saturday morning my time .  vince  \"\" julie \"\" on 10 / 13 / 2000 04 : 34 : 17 am  to : \"\" vincejkaminski \"\"  cc : \"\" lc \"\" , \"\" chris \"\"  subject : eprm  vince ,  ?  could you please provide me with an indication on whether you will be able  to review the latest eprm article in the next day or so ? ?  ?  look forward to hearing from you shortly .  ?  julie\",0\n\"Subject: re : kmv visit  dear mr . seyfried ,  i am following up on the attached message from vasant shanbhogue who visited  with us in san francisco recently . i will be in london on friday , march  31 st , and would be happy to drop by your offices to provide additional  information on our products .  at this point , the best time for me would be in the late afternoon ( 2 pm to  3 pm ? ) .  please let me know if you would still like to meet and if this time will  work for you .  regards ,  rob  - - - - - original message - - - - -  from : vasant shanbhogue [ mailto : vasant . shanbhogue @ enron . com ]  sent : friday , march 24 , 2000 10 : 56 am  to : rudy @ kmv . com  cc : bryan seyfried ; william s bradford ; vince j kaminski  subject : kmv visit  hi robert ,  following up on our visit to your office , vince kaminski and i are very  interested in your products . bryan seyfried , who is heading up the credit  trading operations in london , would like you to visit the london office when  you  are there next friday . he would like to discuss technical implementation  details at that time , in addition to the overall framework . i will also  give  you a call to set up a time to have a more technical ( options modeling )  conversation over the phone .  thanks ,  vasant shanbhogue  vice president , research  enron corp\",0\n\"Subject: re : brad romine  that is fine . i look forward to visiting with him .  celeste  vince j kaminski  05 / 12 / 2000 08 : 56 am  to : celeste roberts / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : brad romine  celeste ,  as you may know , brad romine ' s dot . com venture fell apart .  the offer from enron looks much better now . i have arranged for him  a number of different interviews ( including one with you ) . i think we should  not be too  punitive and give him the 2 nd chance . i am setting up for him interviews with  rac ,  ebs and greg whalley and he should be able to negotiate a good first rotation .  please , give me a call if you have any other question .  vince kaminski\",0\n\"Subject: lance ' s telephone  hi vince :  lance ' s telephone # is : ( 512 ) 280 - 5052 .\",0\n\"Subject: the url  p . s . http : / / enaresearch . dev . corp . enron . com  - - - - - - - - - - - - - - - - - - - - - - forwarded by mike a roberts / hou / ect on 01 / 09 / 2001  01 : 11 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : mike a roberts 01 / 09 / 2001 01 : 13 pm  to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , vasant  shanbhogue / hou / ect @ ect , osman sezgen / hou / ees @ ees , maureen  raymond / hou / ect @ ect , tanya tamarchenko / hou / ect @ ect , zimin lu / hou / ect @ ect ,  jose marquez / corp / enron @ enron , stephen bennett / na / enron @ enron , william  smith / corp / enron @ enron , elena chilkina / corp / enron @ enron , steve  bigalow / na / enron @ enron  cc :  subject :  everybody ,  as vince suggested , i made a topical allocation of our new website for  quality control . can you please check out in detail , and put through the  paces , the following list ?  weather mike  links maureen  technical analysis steve bigalow  options library zimin ( this is a big one ! ! )  european weather jose  agricaltural weather jose ( be sure and run spell check ! ! ! )  weather derivatives stephen  presentations tanya  nuclear outage updates sam  fx and sovergn risk maureen  industry analysis vasant  publications osman  research intelligence stinson  hot button # 8 vince  thanks , just email me with any problems or ideas for adds / changes  - - - mike\",0\n\"Subject: template for pricing the right of first refusal  shelley and chris ,  i have set up a template for pricing rofrs . the rofr is priced as a series  forward start options .  a forward start option gives the holder the right to exercise the option but  the strike price  is set at the money in future before the option expiration . the feature  mimics the \"\" matching the best bid \"\"  in the rofr . the underlying for the option is the \"\" best bid \"\" , which should  be closely related to the  price differential between the two hubs that the pipeline connects . therefore  the rofr is case dependent ,  as vince pointed out . the volatility can be estimated from the \"\" best bid \"\"  price history .  with these inputs we can estimate the value of rofr . if you have any  questions concerning the model  please feel free to call me or vince .  zimin lu\",0\n\"Subject: re : uc - berkeley graduate student  vince ,  i agree . if you think that this candidate would be good for your group  specifically - i would invite him in directly .  hope all is well .  ashley  vince j kaminski @ ect  10 / 24 / 2000 04 : 09 pm  to : ashley baxter / corp / enron @ enron  cc : vince j kaminski / hou / ect @ ect  subject : uc - berkeley graduate student  ashley ,  this is one resume i got today . i think that it makes sense to invite him  for an interview directly with my group . he does not qualify as an analyst  candidate .  what do you think ?  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 24 / 2000  04 : 14 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  rajnish kamat on 10 / 23 / 2000 07 : 55 : 31 pm  to : vkamins @ enron . com  cc :  subject : uc - berkeley graduate student  dr . vincent kaminski  managing director and head of research  enron corp .  dear dr . kaminski ,  it was a pleasure talking with you and attending your talk today .  i am a graduate student in industrial engg . and operations  research working with prof . shmuel oren  on topics in financial instrument pricing and design of  contracts in deregulated electricity markets . i am also  doing research in auction models and computable equilibrium  models with applications in electricity market design .  i am planning to graduate with a ph . d . in may 2001 and would  appreciate hearing about any opportunities in your group at enron .  i am attaching at copy of my resume ( file : cvrkamat . doc ) for your perusal .  thanking you ,  sincerely ,  rajnish kamat  graduate student  ieor , uc - berkeley  4135 , etcheverry hall  dept . of industrial engineering and operations research  university of california at berkeley  berkeley , ca , 94710  - cvrkamat . doc\",0\n\"Subject: yen outlook  vince ,  as a followup to our meeting with david port and rudi zipter re enron ' s  investment in sk - enron , maureen and i wrote the attached position paper on  the japanese yen . as we have discussed , the volatility of the won closely  tracks fluctuation in the yen , and this yen position paper is intended to  complement the won outlook piece for a broader perspective on currencies that  takes into account the yen ' s influence on asian currencies . .  we would like to distribute this outlook to david and rudi , but wanted to  send it to you for initial reaction prior to internal distribution .  thank you , and let me know if you have any questions or comments re the  attached .  gwyn\",0\n\"Subject: re : fwd : praca dyplomowa v edycja mba warszawa  panie tomaszu ,  prosze poinformowac kolegow , ze przesle moje uwagi  do niedzieli .  w . kaminski  vkaminski @ aol . com on 01 / 30 / 2001 06 : 27 : 25 am  to : vkamins @ enron . com  cc :  subject : fwd : praca dyplomowa v edycja mba warszawa  content - transfer - encoding : quoted - printable  return - path :  received : from rly - ygo 2 . mx . aol . com ( rly - ygo 2 . mail . aol . com [ 172 . 18 . 147 . 2 ] ) by  air - ygo 3 . mail . aol . com ( v 77 . 31 ) with esmtp ; mon , 29 jan 2001 17 : 42 : 48 - 0500  received : from postmaster . enron . com ( outbound 5 . enron . com [ 192 . 152 . 140 . 9 ] ) by  rly - ygo 2 . mx . aol . com ( v 77 . 27 ) with esmtp ; mon , 29 jan 2001 17 : 42 : 35 - 0500  received : from nahou - msmswo 2 px . corp . enron . com ( [ 172 . 28 . 10 . 38 ] ) by  postmaster . enron . com ( 8 . 8 . 8 / 8 . 8 . 8 / postmaster - 1 . 00 ) with esmtp id waal 2034 for  ; mon , 29 jan 2001 22 : 42 : 34 gmt  from : vince . j . kaminski @ enron . com  received : from ene - mtaol . enron . com ( unverified ) by  nahou - msmswo 2 px . corp . enron . com ( content technologies smtprs 4 . 1 . 5 ) with esmtp  id for  ; mon , 29 jan 2001 16 : 42 : 33 - 0600  subject : praca dyplomowa v edycja mba warszawa  to : vkaminski @ aol . com  date : mon , 29 jan 2001 16 : 42 : 46 - 0600  message - id :  x - mimetrack : serialize by router on ene - mtaol / enron ( release 5 . 0 . 6 | december  14 , 2000 ) at 01 / 29 / 2001 04 : 40 : 54 pm  mime - version : 1 . 0  content - type : text / plain ; charset = iso - 8859 - 2  x - mailer : unknown ( no version )  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 29 / 2001  04 : 45 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" scarbeko \"\" on 01 / 29 / 2001 07 : 35 : 10 am  to :  cc :  subject : praca dyplomowa v edycja mba warszawa  szanowny panie doktorze ,  na samym pocz ? tku chcia ? bym si przypomnie ` . jestem studentem v edycji mba ? w wy \"\" szej szkole handlu i finans ? w midzynarodowych w warszawie i wraz z  panami jerzym seremakiem i waldemarem mrozem piszemy u pana doktora prac ? dyplomow ? z finans ? w midzynarodowych . nsze prace przes ? a ? em do pana  doktora juz w listopadzie ubieg ? ego roku i do tej pory nie dosta ? em  potwirerdzenia , \"\" e pan je otrzyma ? . bardzo bym prosi ? o potwierdzenie  otrzymania tych \"\" e prac lub zaprzeczenie .  panie doktorze nastepna sprawa dotyczy zapytania czy pa \u000f stwa firma by ? aby  zainteresowana inwestycjami w budow ? elektrowni na ukrainie . pracuj w ? firmie konsultingowej kt ? ra zajmuje si min . tego typu biznesem . nie jest  to dla nas pierwszy kontakt z tego rodzaju inwestycjami , poniewa \"\" w  obecnej chwili przygotowujemy sie do kontraktu ? z niemieck ? ? firm ?  lahmeyer international na budow elektrowni 150 mw szczeg ? ly moge podac ? je \"\" eli panstwo wyrazicie zainteresowanie . ? ? z powa \"\" aniem tomasz b ? ach ? ? ? ? ?\",0\n\"Subject: fwd : hello from charles shen at williams co .  toni ,  i would like to bring two people for an interview  one of them sent me a message that is attached below .  i am including the info about the 2 nd gentleman below .  i would like to include myself , vasant shnabhogue , tanya tamarchenko  stinson gibner , zimin lu , paulo issler , alex tang on the interview list .  it would be great if we could bring them this week on friday . tanya  will be at a training course next week . this means that if friday this week  is too aggressive ,  we should shoot for interviews in 2 weeks .  sorry for a short notice .  vince  jermakyan , martin  410 brightmore downs  alpharetta , ga 30005  phone : ( 770 ) 753 - 9341 ( h )  ( 404 ) 402 - 8957 ( c )  martin @ electraparners . com  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 09 / 2000  09 : 48 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  vkaminski @ aol . com on 10 / 07 / 2000 05 : 55 : 11 pm  to : vkamins @ enron . com  cc :  subject : fwd : hello from charles shen at williams co .  return - path :  received : from rly - zco 2 . mx . aol . com ( rly - zco 2 . mail . aol . com [ 172 . 31 . 33 . 2 ] ) by  air - zco 2 . mail . aol . com ( v 76 _ rl . 8 ) with esmtp ; wed , 04 oct 2000 13 : 43 : 33 - 0400  received : from web 9407 . mail . yahoo . com ( 23 . 0 / 24 . 129 . 136 . 216 . in - addr . arpa  [ 216 . 136 . 129 . 23 ] ) by rly - zco 2 . mx . aol . com ( v 75 _ b 3 . 9 ) with esmtp ; wed , 04 oct  2000 13 : 43 : 06 - 0400  message - id :  received : from [ 151 . 142 . 252 . 11 ] by web 9407 . mail . yahoo . com ; wed , 04 oct 2000  10 : 43 : 02 pdt  date : wed , 4 oct 2000 10 : 43 : 02 - 0700 ( pdt )  from : charles shen  subject : hello from charles shen at williams co .  to : vkamins @ ect . enron . com  cc : vkaminski @ aol . com  mime - version : 1 . 0  content - type : text / plain ; charset = us - ascii  x - mailer : unknown  dear vince :  how are you ? i am not sure whether you still remember  me , we met in a conference last year in houston . after  having been working for williams for about two years ,  now i am ready to make a move . i have heard enron is a  great company , i am wondering whether there is any  opportunity for me , either in research group or in  structure group  here is brief description about myself : right after i  got my ph . d . on finance and econometrics from duke  university in 1998 , i joined williams energy trading  company as a quantitative analyst . now i am lead quant  and in charge of the quantitative research group with  7 highly talented people . i have done extensive  research and modeling about electricity ,  load - following deal and tolling deals .  if you need any additional information , please feel  free to call me at 918 - 409 - 4308 . i look forward to  hearing from you soon , thank you .  sincerely ,  charles  do you yahoo ! ?  yahoo ! photos - 35 mm quality prints , now get 15 free !  http : / / photos . yahoo . com /\",0\n\"Subject: please keep in touch  hi ,  just like to say that it has been great meeting and working with you all . i  will be leaving enron effective july 5 th to do investment banking in hong  kong . i will initially be based in new york and will be moving to hong kong  after a few months . do contact me when you are in the vicinity . i don ' t  know my contact details yet and would let you know once i get it . in the  meantime , i will always be checking my e - mail at royibasco @ yahoo . com . please  let me know what your e - mail addresses are and keep in touch !  best regards ,  roy\",0\n\"Subject: re : off site with john griebling ' s optical network engineers  april 13 , 14 is better for me as well . i ' ll toss these dates to john  griebling ' s people .  ravi .  shirley crenshaw @ ect  03 / 02 / 00 01 : 30 pm  to : ravi thuraisingham / enron communications @ enron communications @ enron  cc : vince j kaminski / hou / ect @ ect , kristy carnes / enron communications @ enron  communications  subject : re : off site with john griebling ' s optical network engineers  ravi :  i previously told you that the weekend of march 31 st would be allright for  this , however , i just found out that krishna has planned a research party  at his house ( it is for all of research on saturday , april 1 and vince told  him it would be allright - it is his daughter ' s birthday ) . it looks now like  vince  and his reports will be unable to do this until the weekend of the 13 and  14 th  of april .  please advise .  shirley  ravi thuraisingham @ enron communications on 03 / 01 / 2000 12 : 56 : 25 pm  to : shirley crenshaw / hou / ect @ ect @ enron  cc :  subject : re : off site with john griebling ' s optical network engineers  yes .  shirley crenshaw @ ect  03 / 01 / 00 12 : 54 pm  to : ravi thuraisingham / enron communications @ enron communications @ enron  cc :  subject : re : off site with john griebling ' s optical network engineers  ravi :  does this include vince and all of his direct reports ?  ravi thuraisingham @ enron communications on 03 / 01 / 2000 12 : 29 : 00 pm  to : shirley crenshaw / hou / ect @ ect  cc : stinson gibner / hou / ect @ ect , vince kaminski , john _ griebling @ palm . net ,  scott yeager / enron communications @ enron communications , kristy carnes / enron  communications @ enron communications , dorn _ hetzel @ palm . net  subject : off site with john griebling ' s optical network engineers  hi shirley , please give me a few dates form end of march to first week in  april to do an offsite for vince ' s direct reports ( including myself ) and  selected ebs research people . this includes , vince direct report from our  research group and the following people from ebs research :  ravi , stinson , samer , chinowee .  the agenda will include : research people giving several mini presentations on  trading , market development ( history of nat gas , electricity , etc . ) , pricing ,  etc . . .  john ' s people will do similar mini presentations on optical network  engineering , optical components , provisioning , telecom markets , pricing ,  etc . . . .  if scott yeager can make it , he will do his magic via quick motivational  speech on the vision of ebs , etc . .  it is will be strictly technical to technical professional meeting to get to  know each others group . so , do not include others unles stinson or i look at  the additions case - by - case .  john suggested scott yeager ' s summar house in denver for this event . please  follow this up with scott ' s assistant ( scott may not know about this if john  has not told him so you should explain the intend , etc . ) to get in touch with  scott . i ' ll cc this e - mail to give scott a heads up .  we can do half day friday and all day saturday . or , we can do the whole  weekend and people will have an option to bring family to nearby hotel  ( family expense in not on ebs ) . we will have to sort all this out when we  have a chance to talk to john & scott .  i just wanted to get the ball rolling but getting dates and place first .  thanks ,  ravi .\",0\n\"Subject: proposed agenda for january 11 auction meeting  let me know if you would like anything else included .  - - - - - forwarded by greg woulfe / enron communications on 01 / 05 / 01 07 : 09 am - - - - -  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  from 4 january 2001  dr richard steinberg  university of cambridge  the judge institute  trumpington street  cambridge cb 2 lag  england  tel : + 44 - 1223 - 339638  fax : + 44 - 1223 - 339701  e - mail : r . steinberg @ jims . cam . ac . uk\",0\n\"Subject: re : erequest 3991  thanks !  vince j kaminski @ ect  10 / 10 / 2000 05 : 06 pm  to : jameika smikle / corp / enron @ enron  cc : mike a roberts / hou / ect @ ect , pinnamaneni krishnarao / hou / ect @ ect , vince j  kaminski / hou / ect @ ect  subject : re : erequest 3991  aproved in both cases .  vince kaminski  from : jameika smikle @ enron on 10 / 10 / 2000 04 : 19 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : erequest 3991  peter makkai is also requesting this access .  - - - - - forwarded by jameika smikle / corp / enron on 10 / 10 / 2000 04 : 19 pm - - - - -  jameika smikle  10 / 10 / 2000 04 : 16 pm  to : vince kaminski  cc :  subject : erequest 3991  stpehen bennett is requesting read / write access to o : \\ research  please advise .  jameika  irm\",0\n\"Subject: organization announcement  given the growth in ees it has become apparent that it is time to consolidate the risk functions between ees and ews . this will provide ees with the systems , resources and risk expertise of the wholesale energy groups necessary for it to continue to grow and take advantage of current market opportunities .  with this in mind and in agreement with the management of ees , two new risk groups inside enron americas will be formed to provide ees with pricing , structuring , retail and wholesale commodity risk management , logistics and back - office services . these groups main function is to provide these services to ees . we have asked rogers herndon , currently vice president - trading in the eastern power group to manage this function in the eastern interconnect ( this includes both gas and power ) . rogers will continue to report to kevin presto . we have asked don black , formerly vice president - ees risk management and sourcing , to manage this function in the western u . s . don will manage this group from houston and will report to tim belden .  these groups will work very closely with ees to pursue shared goals while ensuring close coordination with the wholesale gas and power trading organizations .  these changes are effective immediately . please congratulate rogers and don on their new roles .  john lavorato & louise kitchen\",0\n\"Subject: the storage revolution has begun  network world fusion focus : amy larsen decarlo  on storage in the enterprise  today ' s focus : the storage revolution has begun  03 / 07 / 00  dear wincenty kaminski ,  today ' s focus : the storage revolution has  begun  by amy larsen decarlo  believe the hype . we are in the middle of a storage revolution .  virtually overnight , businesses have gone from storing gigabytes to  terabytes of data , and the number of users accessing that information is  skyrocketing . the subsequent requirements are forcing companies to  rethink their storage strategies and to recognize the importance of  storage management in the equation of efficient information delivery .  it isn \u0001 , t just the volume of data or the higher scalability demands that  are changing how businesses handle storage . the premium that companies  place on much of their enterprise information is having a profound  effect on their storage requirements . businesses demand fault - tolerant  storage systems that deliver swift and reliable data access to their  employees , suppliers and customers .  but given the fact that hard disk capacity requirements , on average ,  double every 12 months , while processor speeds double every 18 months ,  companies are left with a quandary : how can they manage the  proliferation of stored information efficiently enough to compensate for  the differential between capacity requirements and processor speeds ?  the simple answer to this question is to institute a well - executed  storage management plan that anticipates capacity requirements in  advance and leverages the best technologies and techniques to support  those needs . bear in mind that the majority of storage costs come not  from the equipment but from the implementation and support of those  systems .  there are several ways to efficiently manage storage . one of the best  routes is consolidation that is , pooling resources and managing  storage as a system , as opposed to a decentralized collection of file  servers . this may sound like a throwback to an earlier era , when  enterprise storage resided on mainframes . but it \u0001 , s actually a  progressive step , as the consolidation has more to do with centralizing  the planning , management , and ongoing support of storage systems than it  does with the physical location of the files .  next , it is important to recognize that not all information is equally  important to the organization . consequently , storage requirements vary  by business application . as in all areas of it , it is important to make  storage implementation decisions based on business needs .  businesses trying to more efficiently manage storage are looking for  alternatives to the distributed file server storage model . they want to  speed access to stored files and remove bandwidth - intensive backup and  recovery operations from the lan .  network - attached storage ( nas ) supplies it professionals with one  answer , giving workstations and servers a way to gain direct access to  stored data . nas devices , which have been widely available for years ,  are optimized to process i / o transactions . though they promise better  performance , they don \u0001 , t remove backups from the transport network .  instead , they supply a relatively easy - to - deploy solution to cross -  platform storage problems for most heterogeneous environments .  many consider storage - area networks ( san ) to be the best long - term  answer to current and future storage challenges . because sans are  designed with a topology separate from the corporate data network , they  alleviate many of the availability and performance issues associated  with more traditional storage models . yet , given the early deployment  stage most companies are still in , many of those capabilities are still  largely untested in a production environment .  this newsletter will examine how , through effective storage management ,  it professionals can reduce support costs and improve service delivery  to their customers . this newsletter will not focus on items like the  least expensive tape drive or the fast tape library . instead , it will  look at how businesses can reduce inefficiencies and leverage emerging  technologies to resolve their particular storage application issues .  ultimately , the goal is to identify storage technology options and  practices that work in real - world environments .  to contact amy larsen decarlo :  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  amy larsen decarlo is an analyst with enterprise management associates  in boulder , colo . , ( http : / / www . . com ) , a leading  analyst and market research firm focusing exclusively on all aspects of  enterprise management . she focuses on storage management , application  management , and security . in her position , she oversees market research  and contributes to custom project work in her focal coverage areas .  prior to joining ema , amy spent five years covering enterprise  management for industry trade magazines , including informationweek and  data communications . she can be reached at  mailto : decarlo @ . com  for related links - - click here for network world ' s home page :  http : / / www . nwfusion . com  the national storage industry consortium ( nsic )  http : / / www . nsic . org  the distributed management task force ( dmtf )  http : / / www . dmtf . org  storage systems standards working group of the ieee  http : / / www . ssswg . org  the ietf  http : / / www . ietf . org  subscription services  to subscribe or unsubscribe to any network world e - mail newsletters ,  go to :  to change your email address , go to :  subscription questions ? contact customer service by replying to this  message .  other questions / comments  have editorial comments ? write jeff caruso , newsletter editor , at :  mailto : jcaruso @ nww . com  for advertising information , write jamie kalbach , account executive ,  at : mailto : jkalbach @ nww . com  network world fusion is part of idg . net , the idg online network .  it all starts here :  http : / / www . idg . com  copyright network world , inc . , 2000\",0\n\"Subject: re : ll visa - anshuman shrivastava  vince : i don ' t think that you could have summarized the situation any  better ! ! ! i will be happy to respond to neil as you suggested .  thanks ,  molly  vince j kaminski  01 / 24 / 2001 11 : 02 am  to : molly magee / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : ll visa - anshuman shrivastava  molly ,  thanks for the update . two points .  please , let neil mcgregor know that many possible proposals were floated  with regard to anshuman and there was some noise in the system .  we need ll visa anyway and we decided to go ahead an arrange it .  i shall also write to him and explain the confusion .  also , if i have the choice between upsetting neil or jeffs ( shankman and  skilling ) ,  i shall choose neil .  vince  enron north america corp .  from : molly magee 01 / 24 / 2001 10 : 13 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : ll visa - anshuman shrivastava  vince : apparently neil mcgregor became upset when he received margaret  daffin ' s email . he is saying , however , that anshuman will only be in  houston for one month , and you had mentioned six months when we spoke  earlier . it really doesn ' t make any difference since he will need to get an  ll visa under either circumstance , but i thought you might want to see his  email .  molly  - - - - - - - - - - - - - - - - - - - - - - forwarded by molly magee / hou / ect on 01 / 24 / 2001 10 : 09  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  margaret daffin  01 / 24 / 2001 09 : 57 am  to : molly magee / hou / ect @ ect  cc :  subject : re : ll visa - anshuman shrivastava  molly : per our conversation today . please let me know the status so that i  can proceed with the visa process .  thanks  margaret  - - - - - - - - - - - - - - - - - - - - - - forwarded by margaret daffin / hou / ect on 01 / 24 / 2001  09 : 56 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  neil mcgregor @ enron _ development  01 / 24 / 2001 05 : 18 am  to : margaret daffin / hou / ect @ ect  cc : wade cline / enron _ development @ enron _ development  subject : re : ll visa - anshuman shrivastava  anshuman is not moving or immigrating to the us . we are allowing him to work  for a lmonth assignment in the us with enron . please carry out the necessary  approvals and visa ' s on this basis .  neil mcgregor  ceo dabhol power  margaret daffin @ ect  01 / 23 / 2001 10 : 31 pm  to : anshuman . srivastav @ enron . com  cc : molly magee / hou / ect @ ect , vince j kaminski / hou / ect @ ect , jane  allen / hou / ect @ ect , timothy callahan / na / enron @ enron , ranendra  sengupta / enron _ development @ enron _ development , wade  cline / enron _ development @ enron _ development , neil  mcgregor / enron _ development @ enron _ development @ ect , harsimran  subject : ll visa - anshuman shrivastava  anshuman : i have been asked to contact you regarding your possible move to  houston , texas . in order that i may begin the process of getting you an ll  immigration visa , i will need you to complete the attached visa questionnaire  and return it to me with copies of the following documents :  a copy of all pages of your passport , even if blank  copies of all previous us visas issued  an updated resume , showing months and years  copies of all diplomas and transcripts received  if you have dependent family members coming to the states with you , copies of  their passports  please send to my attention , via fedex to :  enron corp .  3 allen center , 3 ac 2026 a  333 clay street  houston , tx 77002  please call me with any questions you may have at 713 - 345 - 5083 .\",0\n\"Subject: telephone interview with the research group  praveen :  please excuse the error on the email below . i misunderstood - the position  will be a full time position with the research group .  please let me hear from you .  thanks !  shirley crenshaw  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 27 / 2000  09 : 48 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  shirley crenshaw  04 / 27 / 2000 09 : 39 am  to : praveen @ wam . umd . edu  cc : stinson gibner / hou / ect @ ect , vince j kaminski / hou / ect @ ect , pinnamaneni  krishnarao / hou / ect @ ect , osman sezgen / hou / ees @ ees  subject : telephone interview with the research group  good morning praveen :  the enron corp . research group would like to conduct a telephone  interview with you at your convenience . this will be as a \"\" summer  intern \"\" with the research group .  please let me know your availability on monday , may lst or thursday ;  may 4 th .  the persons who will be interviewing you are :  vince kaminski managing director  stinson gibner vice president  krishna krishnarao director  osman sezgen manager  i look forward to hearing from you .  thank you and have a great day  shirley crenshaw  administrative coordinator  713 - 852 - 5290\",0\n\"Subject: yvan ' s application  molly ,  i am enclosing my recommendation letter for yvan chaxel .  vince\",0\n\"Subject: fw : my london \"\" wish list \"\"  oops , i sent the previous email to another kaminski .  - - - - - original message - - - - -  from : mack , iris  sent : thursday , april 26 , 2001 10 : 42 am  to : salmon , scott  cc : chaney , craig ; kaminski , jim ; dhar , amitava ; shanbhogue , vasant  subject : my london \"\" wish list \"\"  hi scott ,  as we discussed , i will be flying to london on monday to spend some time in enron ' s london office . i am really looking forward to meeting you and the others i have corresponded with via email , phone , vc , etc .  on yesterday vince , vasant , amitava and i discussed my stay and london and the desire to make this trip a productive one . hence we came up with the following \"\" wish list \"\" of things i wish to accomplish while i am over there .  if you think of any other important items to add to this list , please let me know . after that , we can forward the list to the parties involved to find out if they will be available to meet with me during my stay in london .  thanks ,  iris  iris ' london \"\" wish list \"\"  scott  schematic diagram of how the various models are tied together for the overall objective of coming up with final cds and dbs pricing  product descriptions - more details  ben  * spss  * answertree ( card book )  george  * nnpm  mike  * need to create internal database to store d & b data .  * how will d & b data be stored ? need flexibility for data manipulation & model development .  bryan & markus  * feasiblity model : what calculations do they already have ?  * breakeven spread  * moral hazards issues  * legal contract issues to resolve moral hazard issues .  * a company can ' t buy bankruptcy on itself ?  * need to have \"\" accurate \"\" information for correlation between reference & counterparty\",0\n\"Subject: associate & analyst prc update  the prc process for the associate & analyst programs has been revised . the  office of the chairman , in conjunction with the heads of each operating  company , has established a prc committee for the associates and one for the  analysts . each committee will oversee the respective prc meetings . details  of the process are as follows :  i . prc committee members  associate prc committee  sally beck don w . black dan catagnola  paul chivers ed coats dave duran  bob hayes sean homes fred kelly  dick leibert sean long scott neal  ozzie pagan kevin presto brad richter  mark ruane jim steffes  analyst prc committee  dave bowers federico cerisoli ed coats  david crews brenda herod rogers herndon  ben jacoby steve jernigan william gehle  jay lewis ( james w ) paul mead mike norris  rockey storie jon thomsen emilio vicens  ii . meeting logistics  enron will hold eastern hemisphere associate and analyst prc meetings on july  17 th in london . the prc for the eastern hemisphere will include europe , india  and asia and will be chaired by john sherriff .  the western hemisphere associate and analyst prc meetings will be held on  july 19 th in houston . the prc for the western hemisphere will include south  america , calgary , portland , houston and australia ( houston administers it )  and will be chaired by joe sutton . the analyst prc will be conducted from  8 : 00 a . m . to 12 : 30 p . m . , and the associate prc will be conducted from 1 : 30  p . m . to 6 : 30 p . m .  iii . process  each prc representative has been randomly assigned 15 to 17 associates or  analysts that they will represent in the prc meeting . please note the prc  rep is not representing only those individuals who may work in his or her  specific opco but individuals that work throughout the organization . the prc  rep will continue to represent the assigned associates or analysts during  their entire tenure with the program .  the prc reps are expected to contact the prc supervisor and gather  performance information ( including pre - ratings if available ) .  the program will prepare a binder for each prc rep that includes consolidated  feedback from the pep system for their assigned associates or analysts and  will provide this to the prc representatives on july 7 th .  associates and analysts will be pre - rated by their business unit supervisor  using the six performance ratings ( superior - issues ) and the management  professional feedback form as detailed in the pep system . the pre - ratings  must be loaded into pep by july 6 th .  the associate and analyst ratings will be cross - calibrated by tenure at the  meeting as follows :  associates :  level 1 : 0 to 6 months  level 2 : 7 to 12 months  levels 3 & 4 will be reviewed together : 13 months + .  analysts :  level 1 : 0 to 6 months  level 2 : 7 to 12 months  level 3 : 13 to 24 months  level 4 and 5 will be reviewed together : 25 months +  the rating determined in the global cross calibration meeting is final , and  cannot be changed once the meeting has ended .  following the global associate and analyst prc , the associates \u0001 , and the  analysts \u0001 , supervisors will obtain the final rating from the prc  representative . the supervisors must ensure that an evaluation session is  conducted and the final rating is communicated to each associate and analyst  by september 15 th . the completed form must be signed by the associate or  analyst and returned to terry bosien in human resources by 9 / 18 / 00 .  iv . promotions  all promotions must be recommended in the prc .  associates are eligible for promotion to manager at their 18 and 24 month  anniversary .  timing . anniversaries that occur from april lst through september 30 th  should be recommended in the july prc and those that occur from october lst  through march 31 st should be recommended in the december prc . if the  promotion is granted it would become effective on the lst of the month  following the prc , or on the associate \u0001 , s anniversary date , whichever is later .  associates promoted after march 31 st for the july prc and after september  30 th for the december prc will be evaluated as associates for prc purposes ,  not as a manager ( i . e . an associate was promoted to manager effective april lst . in the july prc the individual should be evaluated as an associate not  as a manager ) .  2 nd year analysts are to be recommended for promotion to 3 rd year analysts  after completing the 2 nd year , utilizing the same timing criteria outlined  above ( i . e . , an analyst who completes the 2 nd year on september 30 th should  be recommended for promotion to 3 rd year analyst in the july prc ) .  3 rd year analysts may be recommended for promotion to associate after  completing the 3 rd year , utilizing the same timing criteria outlined above  ( i . e . , an analyst who completes the 3 rd year on september 30 th should be  recommended for promotion to associate in the july prc ) .  please call terry bosien at 713 / 853 - 5230 or celeste roberts at 713 / 853 - 0555  if you have any questions .\",0\n\"Subject: pricing credit on thousands of names  all -  our challenge for the next few months is to build an automated system to  provide differential pricing on thousands of credits [ 5 , 000 by year - end ] .  most of these credits will be illiquid in terms of market price information ,  making the challenge harder , and the end result more important in terms of  competitive pricing advantage . what we need is an overall strategy for how we  plan to achieve this from the quantitative perspective .  currently we have several models for credit pricing either in use or under  development :  fmc model ( default probability approach ) . using bloomberg ' s fair market ( par  yield ) curves , probabilities are generated from the risky - libor , then  default / bankruptcy swap prices computed using expectation methodology .  fmc model ( credit spread approach ) . using the fmcs , then directly taking the  libor credit spread at each tenor , adjusting for basis and compounding  differences .  bond model ( fmc approach ) . taking the fmcs as benchmark curves , the model  regresses the input bonds ( specific to a name ) on the two best fitting  benchmarks . the result is a zero yield curve with the same shape as the fmcs ,  but with the level tweaked for the specific issuer . prices are then generated  using both spread and probability approaches . under testing .  bond model ( spline approach ) . taking only the bonds specific to an issuer ,  the model fits an exponential cubic spline to the zero - coupon price curve ,  then builds a zero yield curve from this . under testing .  market prices . for certain liquid names , or sectors / ratings , cds market  prices are used , then recovery and event discount used to get bankruptcy swap  prices .  kmv . using expected default frequencies ( edfs ) from the kmv model and  database , we will build a model to price default swaps , making appropriate  risk adjustments . kmv is being installed now , so model will be worked on next .  each of these models returns a price ( credit default and bankruptcy ) , and the  accuracy of the price depends on many factors - liquidity and regulatory  differences between bond and cds markets , recovery assumptions , risk premia ,  capital charges , etc . the aim will be to accurately price as many liquid  names as possible , based upon these models , then use these prices , alongside  other financial information , as the backbone to a full automated pricing  system .  our inputs to the proposed pricing system for a specific name are model and  market prices for all issuers , alongside name - specific ' soft ' data from  credit reports and financial statements . if the credit is liquid enough , a  price will be generated from their own information only . otherwise , the  credit will be mapped onto a subset of liquid credits , with financial  information and historical price movements providing the mapping and weights .  the model price will then be periodically adjusted to align itself with  market ( or trader ) prices , and this adjustment will feed back into the  weighting and mapping composition . in loose terms , we could think of the  system price for an illiquid credit as being a weighted average of liquid  market prices ( bonds , equities , default swaps ) , where the weightings are  calibrated using credit analysis , financial ratios , etc .  the key steps to implementing such a system will be :  establishing what exactly we want to ' predict ' - is it a price , a rating , a  probability , or a score ? we will need a clean market history to calibrate to ,  which we only really have for ratings . we will then need to develop a mapping  from rating / score to price .  getting and cleaning the historical financial and credit data required to  calibrate the model .  building the mechanics of the model , ie , the calibration methodology . neural  nets / fuzzy logic seem the obvious candidates , but which exact methods and  software packages to use ?  determining an automated methodology for mapping names with limited  information into the model .  getting the \"\" true \"\" market price , in order to feed back an error . at present  such a price exists for very few credits .  allocating resources to the development . mckinsey claimed such a system would  take 6 - 10 man - months to develop .  further ideas or comments are requested , as we need to develop our strategy  asap . the model description above is fairly vague , as we don ' t yet have the  knowledge needed to fill in the specific details . further help will be  especially required on this if we are to continue to move at ' internet speed ' .  regards  ben\",0\n\"Subject: new members  the following people are joining the research group reporting to me  effective immediately . please make sure that their transfer from ees to our  group is reflected in the support systems .  oren v . ( \"\" dayne \"\" ) zimmerman  chuanli ( \"\" ken \"\" ) deng  anguel g grigorov  thanks ,  krishna .\",0\n\"Subject: re : vacation  shirley ,  no problem .  vince  shirley crenshaw  11 / 13 / 2000 10 : 21 am  to : vince j kaminski / hou / ect @ ect  cc : anita dupont / na / enron @ enron , kevin g moore / hou / ect @ ect  subject : vacation  vince :  i would like to take vacation next tuesday and wednesday , the 21 st and  22 nd ?  please let me know if it is alright . anita will be here .  thanks !  shirley\",0\n\"Subject: storage book / luken ' s storage model  please plan to attend a meeting on thursday , april 27 , from 3 : 00 - 5 : 00 p . m .  to discuss luken ' s storage model and , more importantly , where we want to go  with a storage book . this meeting will be in eb - 30 cl .  any questions , contact mark breese ( ext . 3 - 6751 ) or gerri irvine ( ext .  3 - 6145 ) .\",0\n\"Subject: rice / enron finance seminar series  - attl . htm\",0\n\"Subject: re : choosing the riskfree rate  dear all ,  i completeley agree with ben that treasuries are the most liquid and reliable  benchmarks . i also think that fmas have their own advantages and  disadvantages .  however , it looks like it would be very difficult for us to avoid using libor  as benchmark - at least to price anything related to capital markets ( for  example , credit default swaps ) . our prices will always be different from  that on capital markets if we use benchmarks different from the market .  as a half - way solution we can have different benchmarks - for example , use  anything , that we decide is closest to risk - free , to value products  significantly different from that priced on capital markets , and libor for  everything priced on capital markets .  we can adjust by manipulating other coefficients ( event , liquidity ,  recovery ) for our purposes , but it looks like benchmark should be libor .  to avoid negative default probabilites ( for highly rated reference entities )  we can add cost fo repo and haircuts ( as all bankers do ) .  let us continue our discussion on this .  slava  benjamin parsons  13 / 03 / 2000 20 : 07  to : bryan seyfried / lon / ect @ ect , martin mcdermott / lon / ect @ ect , viacheslav  danilov / lon / ect @ ect , stuart ffoulkes / lon / ect @ ect , eklavya sareen / lon / ect @ ect ,  tomas valnek / lon / ect @ ect , john metzler / lon / ect @ ect , simon brooks / lon / ect @ ect ,  konstantin malinovski / lon / ect @ ect  cc : vasant shanbhogue / hou / ect @ ect , vince j kaminski / hou / ect @ ect , steven  leppard / lon / ect @ ect , jitendra patel / lon / ect @ ect , william s  bradford / hou / ect @ ect , harry arora / hou / ect @ ect  subject : choosing the riskfree rate  dear all ,  following on from the discussions had with vince et al a few weeks ago ,  regarding the problems inherent in using treasuries as our benchmark riskfree  curve , i ' ve written the attached short document . my preliminary conclusions  are as follows :  recent turmoil in the treasury market mostly hit 10 and 30 - year bonds .  treasuries are still the most liquid curve , and that used by banks for  benchmarking risky debt .  there is a considerable a liquidity / scarcity premium inherent within the  corporate - treasury spread , which we are not taking into account . more  accurate measurement of this premium should allow us to calculate bankruptcy  prices based on treasuries , which are consistent with the market .  all further comments are welcome of course .  regards  ben\",0\n\"Subject: phone interview with bill anderson  - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin kindall / corp / enron on 03 / 07 / 2001  08 : 58 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" wander \"\" on 03 / 06 / 2001 08 : 09 : 42 pm  to :  cc :  subject : phone interview 3 / 5  dear mr . kindall ,  i just wanted to let you know that i appreciated the time you gave me on  monday , and that i am very interested in pursuing a career at enron . i feel  that my risk management and treasury experience would prove to be valuable  at your firm , and i would very much like to continue discussions with you if  a suitable position becomes open .  thanks again for the taking the time to chat with me , and i look forward to  hearing from you soon .  sincerely ,  bill anderson\",0\n\"Subject: research reporting  tani - are you happy having steve leppard and research reporting to you in  london , with a thick dotted line to vince in houston . up to now it has  reported to dale , so it makes sense to shift to you . steve wants a dotted  line to commercial , which i ' m happy to have to me as he does o much work for  us .  richard\",0\n\"Subject: chapter 3  vince and grant ,  ?  can you please send us your excel spreadsheets that were used for generated  the graphs ? ? we will need to edit them so that they will look like the  graphs in the rest of the book .  ?  vince , when you send us your half , will you please provide us with the  references and footnotes ?  ?  grant , thanks for your half .  ?  look forward to hearing from you soon ,  thanks ,  julie\",0\n\"Subject: 2000 chairman ' s award  everyday heroes are all around us at enron , living our core values of  respect , integrity , communication and excellence in everything they do . some  of these heroes make a big splash while others just quietly make a difference  in the workplace around them . either way , these special individuals deserve  to be recognized with a nomination for the 2000 chairman ' s award .  as there is more than just one employee living the values at enron , this  award program will honor 10 employees as members of the chairman ' s  roundtable . from that group , the one individual most embodying our values  will be presented with the chairman ' s award at the management conference in  san antonio in november .  the beauty of this award program is that it is completely employee - driven  from beginning to end . from your nominations , an international employee  committee will select the chairman ' s roundtable and eventually , the  chairman ' s award winner . your role of nominating our everyday heroes is  extremely vital to the program ' s success . if someone has made a positive  impression on you , please take the time to complete a nomination form and  send it to charla reese by october 1 , 2000 . you may click here for a  printable form : http : / / home . enron . com / announce / chairman _ nom / form 3 . doc  for more information on the chairman ' s award , including details on last  year ' s roundtable members and previous winners , repit suliyono and bobbye  brown , please click here : http : / / home . enron . com / announce / chairman _ nom  again , this is a very special award at enron and we sincerely thank you for  your participation .  ken , jeff and joe\",0\n\"Subject: re : congratulations  and to yourself - extra well deserved .  see you soon .  b .  vince j kaminski  11 / 01 / 2000 16 : 04  to : barry pearce / lon / ect @ ect  cc :  subject : congratulations  barry ,  congratulations . well deserved .  vince\",0\n\"Subject: encounter article - shalesh ganjoo  as a follow up to the below message , i wanted to contact you to see if you  have had an opportunity to review the attached article . the article will be  going to print within the next two weeks . therefore , i would like to ensure  the accuracy of the information provided .  thank you again for your efforts ,  tracy arthur  - - - - - - - - - - - - - - - - - - - - - - forwarded by tracy l arthur / hou / ect on 03 / 26 / 2001  09 : 47 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  tracy l arthur  03 / 19 / 2001 03 : 29 : 37 pm  to : david cox / enron communications @ enron communications , vince j  kaminski / hou / ect @ ect  cc : shelly jones / hou / ect @ ect  subject : encounter article - shalesh ganjoo  we have conducted an interview and written the attached article for the  upcoming edition of the encounter , the associate & analyst programs '  newsletter . the interview was conducted with shalesh ganjoo in regards to  his participation with the implementation of storage capacity as a  commodity .  to ensure our publication is printing the most accurate information , i have  attached the article for your review . please confirm that the information  provided from shalesh ganjoo is accurate .  thank you in advance for your assistance ,  tracy arthur  communication specialist  associate & analyst department  713 - 345 - 7853\",0\n\"Subject: re : followup from iris mack  hi again ,  i thought it might be helpful if i forwarded a document which describes  some of the hybrid structured products i have been contemplating . please  refer  to the attached files .  in addition , any further information regarding my coming to houston ?  regards ,  iris  ( see attached file : hybrid structured products . doc )  ( see attached file : diagram of aircraft delivery options . doc )  - - - - - - - - - - - - - - - -  this message is confidential ; its contents do not constitute a  commitment by bnp paribas group * except where provided  for in a written agreement between you and bnp paribas group * .  any unauthorised disclosure , use or dissemination , either  whole or partial , is prohibited . if you are not the intended  recipient of the message , please notify the sender immediately .  * bnp paribas group is a trading name of bnp sa and paribas sa  ce message est confidentiel ; son contenu ne represente en  aucun cas un engagement de la part du groupe bnp paribas *  sous reserve de tout accord conclu par ecrit entre vous et le  groupe bnp paribas * . toute publication , utilisation ou diffusion ,  meme partielle , doit etre autorisee prealablement . si vous n ' etes  pas destinataire de ce message , merci d ' en avertir immediatement  l ' expediteur .  * le groupe bnp paribas est le nom commercial utilise par bnp sa et paribas sa  - hybrid structured products . doc  - diagram of aircraft delivery options . doc\",0\n\"Subject: meeting during energy expo  this will confirm our meeting at your office on 16 th of march 2000  at 8 am .  we will be at the energy expo booth nbr . 931 on the 14 th \u000f - 16 th  and staying at the allen park inn on allen parkway if you need to  reach us .  liam leahy  for  dr . robert e . brooks  direct line ( 323 ) 913 - 3355  main line ( 323 ) 663 - 4831  http : / / gpcm . rbac . com /  - attl . htm\",0\n\"Subject: re : interview with enron  pierre philippe ,  we have two options . kevin will be interviewing in mid - december in pittsburgh  and he  can talk to you you or we can invite you to houston .  what are you interested in ? a quant position or a trading job ? our trading  desks  are looking for people with trading experience .  vince  \"\" pierre - philippe ste - marie \"\" on 11 / 29 / 2000 07 : 36 : 19 am  to :  cc :  subject : interview with enron  dear mr . kaminski ,  ?  even though i cannot pass \"\" official \"\" interviews , i would like to discuss  with enron . i was really impressed by your presentation and i think i would  be a good fit for your firm .  ?  i know that you ? will be soon recruiting on campus , maybe we could set up an  \"\" informal meeting \"\" . either give me a call at home ( 412 - 802 - 6429 ) or send me  an email at this address . i would appreciate though not to appear on  interview lists .  ?  pierre - philippe ste - marie  http : / / pstemarie . homestead . com\",0\n\"Subject: re : ( no subject )  jana ,  next week would work for me .  i am flying to san antonio from florida . i shall be back on sunday .  what about friday or saturday next week ?  vince  jlpnymex @ aol . com on 04 / 04 / 2000 09 : 59 : 01 am  to : vince . j . kaminski @ enron . com  cc :  subject : re : ( no subject )  vince ,  nice to hear from you . we will miss you on thursday evening .  would you still like to join us for a movie sometime ?  jana\",0\n\"Subject: re : re : software license  ms . geman ,  i apologize for the delay , but i finally have drafted an escrow agreement for  placing the software in escrow with your attorneys . please review and have  your attorneys review and let me know if it is acceptable .  i will be leaving the department i have been working in and moving to a  different enron subsidiary on october 13 . if at all possible , could we try  to get the software license agreement and the escrow agreement wrapped up  before i leave so that someone else does not have to try to pick up where i  left off ?  i think we are just about in agreement on the software license portion .  seems like the only outstanding question had to do with your concern  regarding providing a response time of 2 business days . i do not have any  answers regarding that - maybe vince kaminski or stinson gibner can respond  on this issue .  i look forward to hearing from you and trying to get this finalized within  the next 2 weeks if possible .  thank you ,  karla feldman  enron corp .  ( 713 ) 646 - 7554\",0\n\"Subject: p . c .  we spoke about the p . c . for trisha tlapek .  location eb 3132 b .  co . # 0011  r . c . 100038  thanks  kevin moore  x 34710\",0\n\"Subject: ravi ' s schedule for next week  project hamachi lives on ! john griebling asked the crew to come back for  march 7 - 10 th .  kristy , please book me to come back to project hamachi ( omin hotel in  broomfield ) . that is , i need to come back to broomfield , co next week tues :  arrive at omin hotel and be in the office here at 12 : 00 noon march 7 th ,  2000 . so i need to take the earliest flight out of houston to get to denver  airport in time to get to the hotel checked in , etc . . . . so i need to land  ~ 10 am .  i ' ll come back to houston end of day friday .  thanks ,  ravi .\",0\n\"Subject: wti simulation presentation - the latest  john ,  this is the updated presentation for the open - close assumption .  i will finish the close - close ( continuous trading ) case .  zimin\",0\n\"Subject: re : check  julie ,  yes , this is how we split this expense internally .  please , send it to me .  vince  \"\" julie \"\" on 10 / 31 / 2000 01 : 57 : 55 am  to :  cc :  subject : re : check  vince ,  ?  oh . ? i sent an invoice to habiba for aus 5 k a while back , and she informed  me that she passed it along to the people who are handling the agreement now  ( i take that as fiona grant in london ? ) . ? i will then send out another  invoice of aus 5 k in the next week or so for the remaining balance . ? should  i have sent the invoice to you ?  ?  thanks ,  julie  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com  to : julie @ lacima . co . uk  cc : vince . j . kaminski @ enron . com  sent : monday , october 30 , 2000 9 : 12 pm  subject : re : check  julie ,  a clarification . we had an agreement with chris and les to contribute ? aus  10 , 000  as a part of the cost .  vince  \"\" julie \"\" on 10 / 30 / 2000 12 : 32 : 14 pm  to : ? ?  cc :  subject : ? re : check  vince ,  thank you for your email .  we will send you a copy of the book as soon as it is available , which we  are now estimating to be around 21 november ( no need to send us a cheque ;  you deserve it ) .  just let us know if we should use a different address than your office ? in  houston .  thanks again for all of your help .  julie  - - - - - original message - - - - -  from : ? vince . j . kaminski @ enron . com  to : julie @ lacima . co . uk  cc : vince . j . kaminski @ enron . com  sent : monday , october 30 , 2000 2 : 16 ? pm  subject : check  julie ,  this message was returned to me a few times when ? i sent it from my home  address .  vince  - - - - - - - - - - - - - - - - - - - - - - ? forwarded by vince j kaminski / hou / ect on 10 / 30 / 2000  08 : 00 am ? - - - - - - - - - - - - - - - - - - - - - - - - - - -  vkaminski @ aol . com on 10 / 28 / 2000 12 : 12 : 57 ? pm  to : julie @ lacima . co . uk  cc : vkaminski @ aol . com , vkamins @ enron . com  subject : ? check  julie ,  as the book is about to be released to the ? market , i would like to start  the  process to issue the check to lacima . ? who will be the payee ( lacima ) and  what  is the ? address ?  vince\",0\n\"Subject: mid - year 2000 performance feedback  note : you will receive this message each time you are selected as a reviewer .  you have been selected to participate in the mid - year 2000 performance  management process by providing meaningful feedback on specific employee ( s )  that have been identified for you . your feedback plays an important role in  the performance management process , and your participation is very critical  to the success of enron ' s performance management goals .  please provide feedback on the employee ( s ) listed below by accessing the  performance management system ( pep ) and completing an online feedback form as  described in the \"\" performance management quick reference guide \"\" . you may  begin your feedback input immediately . please have all feedback forms  completed by the date noted below .  if you have any questions regarding pep or your responsibility in the  process , please call the pep help desk at the following numbers :  in the u . s . : 1 - 713 - 853 - 4777 , option 4  in europe : 44 - 207 - 783 - 4040 , option 4  in canada : 1 - 403 - 974 - 6724 ( canada employees only )  or e - mail your questions to : perfmgmt @ enron . com  thank you for your participation in this important process .  the following list of employees is a cumulative list of all feedback  requests , by operating company , that have an \"\" open \"\" feedback status . an  employee ' s name will no longer appear once you have completed the feedback  form and select the \"\" submit \"\" button in pep .  review group : enron  feedback due date : jun 16 , 2000  employee name supervisor name date selected  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  ahmad , anjam dale surbey may 22 , 2000  zipter , rudi c theodore r murphy may 25 , 2000\",0\n\"Subject: organizational announcement  fyi .  - - - - - - - - - - - - - - - - - - - - - - forwarded by osman sezgen / hou / ees on 04 / 23 / 2001 02 : 29 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron energy services from : ees distribution 04 / 23 / 2001 01 : 29 pm  sent by : kay chapman  to : all ees  cc :  subject : organizational announcement  consistent with the floor talks of a couple weeks ago , we are following up with an e - mail describing the latest changes in our risk and back - office functions that are now complete . ees ' s risk management and the vast majority of ees ' s risk controls and operations group will become a new group in enron wholesale services . this group ' s sole function will be to provide pricing , structuring , commodity risk management , logistics and back - office services for ees . both don black and wanda curry will report to the ews office of the chairman .  this change was driven by the explosive growth of ees and the resulting need to tap the systems , resources and risk expertise of the wholesale groups in order to continue to grow and take advantage of current market opportunities . this change will allow us to more quickly capture the benefits of scale , process , and technology in risk , logistics and back - office functions from the larger enron capability . as discussed at the all employee meeting in march , these are important objectives , and this change allows us to reach those goals more quickly .  specifically , the following groups within the former ees risk management group , will become a part of this new group reporting to don black :  - the gas , power and tariff desks ,  - the options desk ,  - the site profiles and consumption desks , and  - the matrix products / secondary products desks .  the dsm group and iam , along with its execution capability , will remain in ees and report to the ees office of the chairman . we are pleased to announce that ozzie pagan has agreed to lead this function . ozzie is an established commercial dealmaker in ena . he has experience in power trading , origination and plant development . in addition , the services group , which will provide billing , information and other retail services , led by evan hughes , will remain in ees and report to the ees ooc . all support functions , within the former ees risk controls and operations group , that currently support the dsm and the services groups , will remain in ees . the remaining parts of the risk controls and operations group will become part of ews reporting to wanda curry . as part of this change , we are pleased to add evan hughes and ozzie pagan to the ees operating committee .  in addition , the structuring group , led by sean holmes , will be re - named deal management . the vision for this group remains the same as that discussed at the all employee meeting ; however , it will also facilitate and ensure productive transaction interaction between ees and ews .  we have asked , marty sunde , as part of his vice chairman role , to resource and lead a formal restructuring group to enhance or protect value in several key transactions in our portfolio primarily in california .  the newly created it function , led by anthony dayao , will continue to report into the ees ooc but will support both ees and ews it requirements .  other than these changes , the organizational structure , vision and objectives detailed out for ees at the all - employee meeting in march remain . we need to continue to understand and drive deeper into our markets , manage our client relationships , mine our portfolio , build new products and execute on our opportunities .  thanks for all your hard work . with your help we will become the worlds leading energy retailer and enron ' s leading division . if you have any questions please do not hesitate to ask\",0\n\"Subject: matthew patteson , inventor  cindy ,  this is our preliminary review of the documentation sent by mr . patteson .  one more person will take a look at it .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 25 / 2000  03 : 13 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  stinson gibner  10 / 25 / 2000 01 : 16 pm  to : vince j kaminski / hou / ect @ ect  cc : zimin lu / hou / ect @ ect , kevin kindall / corp / enron @ enron  subject : matthew patteson , inventor  vince ,  after reviewing the documents furnished by mr . patteson , i do not feel that  enron should consider engaging in any testing , development , or licensing of  his proposed generator for the following reasons :  1 . enron is not currently in the business of developing or manufacturing  electrical generation equipment and does not plan , as far as i know , to enter  this business . the one exception is our ownership in entities developing  wind and solar , renewable energy .  2 . enron does not have the proper facilities or expertise to test or develop  mr . pattesons proposed generator .  3 . there could be substantial risk in testing this generator as it would  involve boiling of a flammable material under pressure .  4 . i do not believe that the proposed generator will produce any significant  quantity of electrical power . the generator produces power by induction .  that is , electric current is induced by a changing magnetic field . the  mechanism powering the changing magnetic field is the movement of magnetic  dipoles which are suspended in a boiling medium . as the boiling will  produce a somewhat random movement of the liquid , the \"\" movement \"\" or change in  the magnetic field will be highly random and thus not suitable for producing  a steady or reliable electrical current .  i have asked martin lin to also review the documents to render an independent  opinion of this proposal .  respectfully ,  dr . stinson gibner  phd . physics  vp research , enron north america  p . s . kevin and zimin : if you have any interest in reviewing mr . patteson ' s  proposal , please let me know .\",0\n\"Subject: bi - weekly transmission update report  energy info source is privileged to make available to you a free sample  issue of its bi - weekly transmission update report ( attached ) . this report  contains the latest iso , rto , utility , and merchant transmission news provided  in pdf format delivered to you via email every other week all for only  $ 75 / year for an individual subscription ( corporate subscriptions for multiple  users are available for $ 200 / year ) .  check it out and if you ' d like to subscribe , click on the following link  to order online or call us at 888 - 986 - 2250 to order by phone . we accept  visa / mastercard / american express or can invoice your company .  viewing the report requires adobe acrobat reader 4 . 0 or higher , available  free at :  - - - - - - - - - - - - - - - - - - - - - -  if you want to be removed from our mailing list or for more information :  energy info source , inc .  email : custsvc @ energyinfosource . com  phone : 888 - 986 - 2250  - transo 7 _ 23 . pdf\",0\n\"Subject: re : technical training at the houston energy expo !  vince :  looks like an excellent value overall if they cover the same topics in these  classes as in the enron internal classes . the website says that registering  for one of the classes automatically registers you to the expo . i would like  to recommend them to my team . did someone from our group already register for  this ?  thanks  krishna .  vince j kaminski  02 / 12 / 2001 01 : 50 pm  to : pinnamaneni krishnarao / hou / ect @ ect  cc :  subject : technical training at the houston energy expo !  krishna ,  please , take a look .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 12 / 2001  01 : 50 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  lana moore on 02 / 07 / 2001 10 : 53 : 05 am  to : nesa members  cc :  subject : technical training at the houston energy expo !  technical training  in conjunction with the  houston energy expo  march 20 - 21 , 2001  hyatt regency hotel - downtown  we are offering :  fundamentals of electricity  basics of risk management  natural gas - wellhead to burnertip  there are only 25 spots in each class , so sign up today !  go to www . nesanet . org , in educational programs  each class is listed with details and a registration form .  member price is $ 545 per person .  non - member price is $ 745 per person .  if you have any questions , please give me a call ! !  lana moore  ( 713 ) 856 - 6525\",0\n\"Subject: arthur andersen model validation request  vince ,  our goal is to validate that the enron global market book  administrators are accurately using the \"\" spread option model \"\" as developed by  the research group . to determine this , we would like to provide you with  the inputs for a particular deal ( as provided by a global markets book  administrator ) and have you recalculate the deal value . we will then  compare your results to the values calculated by global markets .  two koch deals have been chosen due to their substantial p / l effect . i have  attached the deal data in two forms : ( 1 ) the spread option model that kara  boudreau , book administrator egm , provided and ( 2 ) an excel spreadsheet that  isolates the 2 deals .  if there is anything more that we could provide , please don ' t hesitate to  call me at x 30968 .  thank you so much for all of your help .  gillian  1 .  2 .\",0\n\"Subject: visiting enron may 4 th  christie ,  fyi . a message i received from stanford .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 09 / 2001  11 : 20 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" susan c . hansen \"\" on 04 / 06 / 2001 06 : 14 : 10 pm  to : vince . j . kaminski @ enron . com  cc : clovell @ stanford . edu , donna lawrence ,  hillh @ stanford . edu , bambos @ stanford . edu  subject : visiting enron may 4 th  dear vince ,  this is great news ! donna and i are delighted that you have time to see us  on may 4 th .  i ' ll be out of the office next week . by copy of this email to my  assistant , carol lovell , i will ask her to get in touch with shirley for  scheduling as well as directions on where to meet you . we ' ll be glad to  meet with christie patrick as well .  looking forward to meeting you ,  susan  at 05 : 36 pm 4 / 6 / 01 - 0500 , you wrote :  > susan ,  >  > thank you for your message . i shall be glad to meet with you on may the  > 4 th .  > i shall ask my assistant , shirley crenshaw ( 713 ) 853 5290 , to call you to  > set up the meeting .  >  > also , for your information , we have recently set up a special unit to  > coordinate enron ' s  > relationships with the universities . the person running this unit is  > christie patrick .  > please , feel free to contact her and give my name as a reference . i shall  > coordinate the meeting  > on may the 4 th with her .  >  > vince  >  >  > additional information re christie :  >  > phone : ( 713 ) 853 - 6117  >  > email : christie _ patrick @ enron . com  >  >  >  >  >  > \"\" susan c . hansen \"\" on 04 / 03 / 2001 04 : 33 : 54 pm  >  > to : vkamins @ enron . com  > cc :  > subject : visit from stanford ?  >  >  > dear dr . kaminski ,  >  > let me briefly introduce myself , i am the director of corporate relations  > for the school of engineering at stanford university . in this role , i am  > always on the watch for ways to bring our faculty together with companies  > that have an appetite for engagement with top tier research institutions .  >  > i believe you know hill huntington , who is a senior researcher with  > stanford ' s energy modeling forum . he suggested i get in touch with you for  > some ideas about contacts at enron . i ' m in the process of planning a trip  > to texas in early may along with my colleague donna lawrence , the  > university ' s director of corporate relations . we were hoping to be able to  > include a stop at enron on our itinerary . right now it appears that friday ,  > may 4 th would work best for us but we ' re at the very beginning of our trip  > planning .  >  > the purpose of our visit would be to review the current relationship  > between enron and stanford , to give you an overview of current priorities  > in the school of engineering , and ask for your help in identifying the best  > points of contact .  >  > i look forward to hearing from you about your availability ,  >  > sincerely ,  > susan hansen  >  >  >  >  > susan c . hansen  > director , corporate relations  > school of engineering  > stanford university  > stanford , ca 94305 - 4027  > ( 650 ) 725 - 4219  susan c . hansen  director , corporate relations  school of engineering  stanford university  stanford , ca 94305 - 4027  ( 650 ) 725 - 4219\",0\n\"Subject: re : your visit with vince kaminski - enron corp . research  dear mr . fujita :  professor kaminski will be delighted to have dinner with you and your  colleague mr . yamada . i have put you on his calendar at 3 : 00 pm . with  dinner to follow in early evening .  please let me know if you would like me to make dinner reservations  for you .  sincerely ,  shirley crenshaw  administrative coordinator  enron corp . research group  713 / 853 - 5290  masayuki fujita on 04 / 04 / 2000 11 : 07 : 19 am  to : shirley crenshaw  cc :  subject : re : your visit with vince kaminski - enron corp . research  shirley crenshaw  administrative coordinator  research group  enron corp  dear ms . crenshaw ,  i am very glad to see professor kaminski let me meet with him . i offer to  visit you around 3 p . m . on 17 th monday . i wonder if we can invite him for a  dinner that night because my colleague mr . yamada who also wishes to meet  with him will attend a risk publication ' s seminar up to 5 p . m . on that day .  please let professor kaminski know we understand this offer may affect on  his private time and we do not insist on it . i am very much looking forward  to seeing him .  best regards ,  masayuki fujita  principal financial engineer  financial technologies section  mitsubishi research institute , inc .  3 - 6 otemachi 2 - chome , chiyoda - ku  tokyo 100 - 8141  japan  tel + 81 - 3 - 3277 - 0582  fax + 81 - 3 - 3277 - 0521\",0\n\"Subject: re : exotica ( second request )  please see attached :  enron europe  from : sharad agnihotri 09 / 10 / 2000 11 : 56  to : anjam ahmad / lon / ect @ ect  cc : steven leppard / lon / ect @ ect , vince j kaminski / hou / ect @ ect  subject : exotica ( second request )  anjam ,  i have tried to call you on your mobile but with no success .  please make sure you send me the exotica code .  sharad\",0\n\"Subject: re : resume  hi , mr . kaminski :  how are you ? i hope you had a wonderful holiday . i just came back from  chicago .  there is an enron on campus interview at cmu scheduled on 12 / 11 . is this  the interview for our class or for mba students ? i am concerned because i  was not selected for this interview , and i would like very much to have a  chance to talk you about what i can do at enron .  frank  - - - - - original message - - - - -  from :  to :  cc :  sent : tuesday , november 21 , 2000 2 : 13 pm  subject : re : resume  >  > frank ,  >  > we are going to interview the students of your class on the campus .  > i may participate in the interviews .  >  > have a very happy thanksgiving .  >  >  > vince  >  >  >  >  >  > \"\" frank qian \"\" on 11 / 14 / 2000 12 : 48 : 14 pm  >  > to : \"\" vince j . kaminski \"\"  > cc :  > subject : resume  >  >  > dear mr . kaminski :  >  > how are you ? i hope everything goes well for you at work . enron ' s  > recruiting  > at cmu just started . i have submitted my resume through the career  > services .  > the deadline for selecting interviewee is nov . 21 st . i ' d like to assure  > you  > my interest in associate / analyst program at enron .  >  > as you knew , the mscf program is an in - depth training of the mathematics  > employed to financial algorithm and modeling as well as advanced  > statistical  > tools needed to analyze and predict the behavior of financial market .  > through the intensive classroom learning combined with practical projects  > using real - time financial data , i have gained a solid background in  > state - of - art quantitative techniques used in financial industry , such as  > derivative pricing , monte carlo simulation , and var analysis . with my  > programming skills in c + + , s - plus , and java , i ' ll also be able to  implement  > sophisticated financial or trading models into practice .  >  > i am a highly motivated , reliable , and team - oriented person not only have  > quantitative skills , but also have broad knowledge of financial products .  > my  > unique mixture of skill sets will enable me make significant contribution  > to  > enron . my academic research experience and credentials all compose a  > valuable asset to your organization . working at enron will greatly enhance  > my learning experience and future career development . my resume is  attached  > for your review . i wish to be included on your pre - selected interviewee  > list  > and look forward to meet you again .  >  > regards ,  >  > frank qian  > fqian @ andrew . cmu . edu  >  >  > ( see attached file : enron _ resume . doc )  >  >  >\",0\n\"Subject: term paper  dr . kaminski ,  attached please find a copy of our term paper . advise  if you experience problems opening the attachment .  best regards ,  ken jett  - combo 2 [ 1 ] . v 2 . doc\",0\n\"Subject: re : bruno repetto interview with enron corp . research group  bruno repetto will be in the office on may 11 beginning at 1 : 00 pm .  following is the interview schedule :  vince kaminski 1 : 00 pm  stinson gibner 1 : 30 pm  grant masson 2 : 00 pm  vasant shanbhogue 2 : 30 pm  krishna krishnarao 3 : 00 pm  zimin lu 3 : 30 pm  tany tamarchenko 4 : 00 pm  all interviews will be conducted in ebl 938 .  the calendars that i have access to have already been marked .  thanks !  shirley\",0\n\"Subject: vince kaminski bullet points  * definition of price volatility  * historical vs . implied vs . model derived volatility  * estimation of volatility from historical data in the presence of  ? ? ? ? ? ? - seasonality  ? ? ? ? ? ? - jumps  ? ? ? ? ? ? - fat tails  * stochastic volatility models  * recent cases of extreme price volatility in the power markets in the us :  the causes and remedies\",0\n\"Subject: zingales seminar  fyi !  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 23 / 2001 03 : 44 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  albert wang on 04 / 23 / 2001 11 : 23 : 22 am  to : ( recipient list suppressed )  cc :  subject : zingales seminar  enron seminar series in finance  jones graduate school of management , rice university  luigi zingales  university of chicago  will give a seminar at the jones school on friday , april 27 ,  \"\" the great reversals : the politics of financial development in the 20 th century . \"\"  the seminar will begin at 3 : 30 in room 105 .  a pdf of the paper is available through the seminar website :  http : / / www . ruf . rice . edu / ~ jgsfss / .  fu - kuo albert wang  assistant professor  jones graduate school of management - - ms 531  rice university  6100 main street  houston , tx 77005  phone : 713 - 348 - 5404  fax : 713 - 348 - 5251  email : wangfa @ rice . edu  http : / / www . ruf . rice . edu / ~ wangfa /\",0\n\"Subject: pjml 01 : the basics - january 16 , 2001  01 / 04 / 01  pjm  to : vincent kaminski  enron  re : \"\" pjm 101 : the basics \"\" training course  you are confirmed for the following course :  \"\" pjm 101 : the basics \"\" training course on tuesday , february 27 , 2001  from 9 : 00 a . m . to 12 : 00 noon and 1 : 00 p . m . to 4 : 00 p . m . on the internet .  we encourage you to coordinate participation in this workshop with others at  your location by organizing a conference room with internet and phone access .  no fee will be charged to pjm members ; nonmembers will be invoiced $ 500 . 00 to  attend the course . the fee is nonrefundable . non - members will be charged only  for each connection . multiple participants may watch on a single connection .  in order to participate in the course , you will need a computer with internet  connection on at least a 56 k modem and a java compliant browser , at least  version 4 . 5 of netscape or internet explorer . you will also need a phone  connection . phone charges will be paid by pjm for domestic callers .  international callers must pay for their own long distance charges .  our course is being produced by virtual - workshops . com . a few days from now you  will receive registration confirmation from them . a few days prior to the  course , you will receive log - on and dial up instructions from them as well as  files of the slides which will be used so that you can print them out and take  notes if appropriate .  if you need additional details , you can call me on 610 - 666 - 8981 or call our  customer service hotline at ( 610 ) 666 - 8980 . we look forward to your  attendance  at our program .  sincerely ,  carolyn mullen  customer relations & training\",0\n\"Subject: re : subscription renewals  susan :  vince would like to renew all of the below subscriptions , except the  \"\" financial  markets institutions & instruments for us canada & mexico \"\" .  thanks !  shirley  enron north america corp .  from : susan l kennedy 10 / 09 / 2000 03 : 27 pm  to : shirley crenshaw / hou / ect @ ect  cc :  subject : subscription renewals  shirley ,  i hope you had a good weekend . the following subscriptions for vince are up  for renewal . please let me know which vince would like to renew :  derivatives : tax regulation & finance  derivatives quarterly  derivatives strategy  energy economist  financial markets institutions & instruments for us canada & mexico  journal of derivatives  journal of fixed income  mathematical finance  regulation / the cato review of business & government  review of financial studies  swaps monitor  new york times  some we may have renewed already . call me with any questions .  thank you  susan\",0\n\"Subject: weekly meetings  maureen ,  this is to remind you that we scheduled , at your request ,  regular weekly meetings . we are supposed to meet every  friday at 8 : 00 a . m .  if i am not at the office , the meeting will be rescheduled .  vince\",0\n\"Subject: re : anshuman  neil ,  you must have already gotten my earlier mail of clarification . going  forward , i agree with you that we should start the assigment early rather  than late .  however , i would not necessarily like to wait till even feb 5 . the bids for  lng must go out by the 15 th of feb , and we need to do a lot of fuel based  analysis before then . hence , if it is possible for anshuman ot be available  before then , i would greatly appreciate it . perhaps even as early as monday  or tuesday if possible ? ?  regards ,  sandeep .  neil mcgregor @ enron _ development  01 / 25 / 2001 10 : 19 am  to : vince j kaminski / hou / ect @ ect  cc : neil mcgregor / sin / ect @ ect , molly magee / hou / ect @ ect , vince j  kaminski / hou / ect @ ect , sandeep kohli @ enron @ ect  subject : re : anshuman  thanks for the clarification vince i appreciate it . we have a significant  resource problem here in india , given we have a renegotiation about fall in  our laps . anshuman is one of our key analysts and we are very proud of his  abilities and future potential for enron . once we have dabhol off the \"\" life  support system \"\" we could look at a longer assignment . as far as the present  one month assignment is concerned , i would rather go for an early start say  5 th feb till 5 th march . is this convenient to you and jeff .  neil  vince j kaminski @ ect  01 / 24 / 2001 10 : 41 pm  to : neil mcgregor / sin / ect @ ect  cc : molly magee / hou / ect @ ect , vince j kaminski / hou / ect @ ect , sandeep  kohli @ enron  subject : anshuman  neil ,  i would like to apologize for the confusion regarding anshuman .  we have floated a number of possible scenarios regarding his  trip to houston and there was a lot of confusion  regarding the terms ( given that i was talking to sandeep  every few days ) .  currently , we expect anshuman to come to houston for one month  to work on the dpc project ( at jeff shankman ' s request ) . the lawyers advised  me that we need an ll visa for him , irrespective of the duration  of his stay .  sorry for the confusion .  vincent kaminski  managing director - research  enron corp .  1400 smith street  room ebl 962  houston , tx 77002 - 7361  phone : ( 713 ) 853 3848  fax : ( 713 ) 646 2503  e - mail : vkamins @ enron . com\",0\n\"Subject: henwood license  karla :  please inform henwood that enron will renew the license for the prosym  software modules but will not renew the licenses for north american databases .  the software modules to be renewed are :  base system ( prosym ? ) ( ecosym is included in the base system )  asap / mstat  multisym  emss interface .  it is not 100 % sure that the last module is required . nevertheless , please  begin the agreement amendment process asap . i will let you know if there are  modifications soon .  thanks ,  grant .\",0\n\"Subject: temporary internet access for 5 rice students  good morning :  the research group will have 5 rice students , who are working on an  enron project for their doctorate , coming to enron for approximately  1 week . they will be sitting in a conference room located on the 19 th  floor research area .  we need to get them internet access ( to be applied to one computer ) , with  one logon id and password .  will you please let me know what i need to do to get this accomplished ?  they will be coming this thursday , april 5 th .  thanks !  shirley crenshaw\",0\n\"Subject: re : request submitted : access request for  jennifer . n . stewart @ enron . com  i don ' t know her or anything about it . i sent her an email asking what she  needs .  - - stinson  vince j kaminski  01 / 11 / 2001 08 : 22 am  to : stinson gibner / hou / ect @ ect  cc :  subject : request submitted : access request for jennifer . n . stewart @ enron . com  stinson ,  do you know anything about it ?  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 11 / 2001  08 : 24 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  arsystem on 01 / 10 / 2001 08 : 59 : 24 am  to : \"\" vince . j . kaminski @ enron . com \"\"  cc :  subject : request submitted : access request for jennifer . n . stewart @ enron . com  you have received this email because you are listed as an alternate data  approver . please click  approval to review and act upon this request .  request id : 000000000013085  approver : stinson . gibner @ enron . com  request create date : 1 / 10 / 01 8 : 59 : 14 am  requested for : jennifer . n . stewart @ enron . com  resource name : \\ \\ enehou \\ houston \\ common \\ research - [ read ]  resource type : directory\",0\n\"Subject: re : new business  h , lyette ,  i am working systematically through un - answered messages .  yes , i shall be delighted to meet your friend .  vince  helyette geman on 04 / 05 / 2001 04 : 58 : 47 am  to : vkamins @ enron . com  cc : vkaminski @ aol . com  subject : new business  dear vince ,  a friend of mine , head of research and new projects in a major bank ,  wanted to get in touch with the energy industry to possibly develop  working relationships . i said that enron was the right place to start  and \"\" you \"\" the right person to meet . in this order , he would come to  the power 2001 and i would introduce him to you .  is this o . k with you ?  best regards  helyette  h , lyette geman  professor of finance  university paris ix dauphine and essec\",0\n\"Subject: internal var / credit candidate : amit bartarya  hi vince ,  here is one internal candidate for the var / credit risk role . i have had  plenty of contact with him over the past year or so and he is very hard  working , intelligent and dedicated and has expressed interest in joining  research on a few occassions .  regards ,  anjam  x 35383  as promised earlier , here is a copy of my cv :  if you have any questions , feel free to ask .  thanks ,  amit .\",0\n\"Subject: thomas knudsen : interviews cancelled  dear all ,  i just got a call from thomas who wants to cancel the interviews scheduled  for today - he told me that he would call me at the beginning of may ( after  his holidays ) to arrange them . i did mention that there was a risk that the  position may be filled by then , but he seemed unperturbed by this .  regards ,  anjam  x 35383  - - - - - - - - - - - - - - - - - - - - - - forwarded by anjam ahmad / lon / ect on 17 / 04 / 2000 09 : 28  - - - - - - - - - - - - - - - - - - - - - - - - - - -  anjam ahmad  14 / 04 / 2000 09 : 57  to : dale surbey / lon / ect @ ect , benjamin parsons / lon / ect @ ect , vince j  kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect  cc : steven leppard / lon / ect @ ect , stinson gibner / hou / ect @ ect , kate  bruges / lon / ect @ ect  subject : interviews for thomas knudsen  dear all ,  we need to see thomas on monday or tuesday as he is going on holiday after  that . can we arrange to meet him on monday afternoon ? suggest 45 minutes  each . starting from 3 pm : -  monday 17 th april  slotl : 3 pm  slot 2 : 3 . 45 pm  slot 3 : 4 . 15 pm  slot 4 : 5 pm  vince - please could you let me know which slot you prefer - we can try video  conference , but i can ' t guarantee availability , so we may have to fall back  to telephone interview for you .  regards ,  anjam  x 35383\",0\n\"Subject: re : risk report on \"\" guide to electricxity hedging \"\" and request for  gu est access to enrononline  ed ,  i sent a message to louise kitchen who runs the enrononline effort .  she should be getting back to you shortly .  vince  ekrapels on 01 / 18 / 2000 12 : 00 : 12 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : risk report on \"\" guide to electricxity hedging \"\" and request for gu  est access to enrononline  dear vince ,  greetings from boston , where we ' re doing all we can to help keep the price  of gas high .  as i may have told you earlier , i ' m writing a \"\" guide to electricity hedging \"\"  for risk publications similar to the report on oil . i had planned to write a  significant section on enrononline , and in the midst of my research on the  topic was denied access by enron ' s gatekeeper . can you help get me in ?  as always , the best from here .  ed krapels  - - - - - original message - - - - -  from : donna greif [ mailto : dcorrig @ ect . enron . com ]  sent : tuesday , january 18 , 2000 12 : 37 pm  to : ekrapels @ esaibos . com  subject : request for guest access  dear mr . krapels :  thank you for requesting guest access to enrononline . unfortunately , we are  unable to give you quest access at this time .  enrononline is exclusively for those companies who can transact wholesale  energy  commodities and related products .  in addition , you had indicated within the comments section of your email  that  you are preparing a \"\" guide to electricity hedging \"\"  for risk publications . i have forwarded your inquiry to our public  relations  department along with your contact information .  should you not hear back from anyone within a reasonable amount of time ,  please  feel free to contact our call center at  713 853 - help ( 4357 ) .  sincerely ,  donna corrigan greif  enrononline help desk  713 / 853 - 9517  - attl . htm\",0\n\"Subject: re : publication submission question  martin ,  i don ' t see any problem . the article supportsenron ' s position .  please , go ahead .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 09 / 2001  02 : 02 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  04 / 05 / 2001 01 : 01 pm  to : martin lin / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : publication submission question  martin ,  let me read it friday . we run our papers by our pr  department to review for any potential conflict with the company line .  i shall fwd it to them .  i think you should submit it as an enron employee with a note  that it was developed when you were at ut .  vince  from : martin lin on 04 / 02 / 2001 11 : 59 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : publication submission question  my supervising professors from ut and i are finishing a paper ( finally ! ) that  is based on work done for my phd . all of the research was done while i was a  grad student . i have a couple of questions regarding submission of this  paper ( to ieee transactions on power systems ) .  1 . should i submit it with my affiliation as the university of texas at  austin or as enron ( ena , corp , etc ) ?  2 . what legal or other reviews / clearances would i need ?  a draft of the paper for your review is attached .  thanks ,  martin\",0\n\"Subject: maddox  vince ,  here is michael maddox contact information :  tel : ( 617 ) 497 6446  email : mmaddox @ cera . com  they have an office in europe as well . i would love to be involved in projects involving georgia , azerbaijan , turkey , etc .  my resume  thanks ,  bessik matchavariani  enron broadband services  tel : 713 . 345 . 7230  fax : 713 . 646 . 8861  bessik _ matchavariani @ enron . net\",0\n\"Subject: congratulations !  vince ,  congratulations on your promotion to managing director .  best wishes for your continued success .  bob\",0\n\"Subject: re : lap - top  kevin :  tricia asked hector ( hardware tech ) to hold the machine until today and that  she would call with a good time to drop off the laptop . the laptop is  configured and ready to go . please advise .  regards ,  steve andrews  kevin g moore  01 / 05 / 2000 11 : 26 am  to : stephen andrews / hou / ect @ ect , patricia tlapek / hou / ect @ ect , mike a  roberts / hou / ect @ ect , vince j kaminski / hou / ect @ ect  cc :  subject : lap - top  hello ,  we ordered a lap - top for trisha tlapek and we are still  waiting . .  could you please provide me with information concerning  this .  # 991815 .  thanks  kevin moore  x 34710\",0\n\"Subject: new listing  goodmorning everyone ,  last year we did quite a bit of christmas baskets , during the time we were in  the process of  another major move .  we are currently settled on all floors now , therefore our christmas basket  list will be cut more than half .  here are a list of the names that received baskets last year .  matt rodgers  chris hyde  darren prager  charlie notis  harvey freese  jon davis  maryam golnarghi  delores sustaita rodney keys iain  russell trina williams todd  butler pamela ford facilities  robert knight phillip randle mary  martinez daniel hornbuckle ( ozarka )  guy move - team  greg whalley  richard weeks  mary sue rose  there are several names boldly printed that probably will not receive the  baskets this year .  the christmas season is approaching therefore we must start preparing  .  please note that i will be out on vacation dec 13 th - 18 th , if possible i  would like your list of names  before my vacation begins whereby all baskets can arrive at their  destinations on time .  thanks  kevin moore  please any comments , question , answers - feel free to call x 34710\",0\n\"Subject: first derivatives class  bob ,  i have asked martin , zimin , and paulo to prepare short presentations on the  power , gas , and crude markets , respectively . this will take probably 45  minutes of class time . in addition i will prepare some lecture  material . if we don ' t have enough class time to cover all assigned  problems , we can just roll them to the next class .  thanks ,  stinson\",0\n\"Subject: lunch conversation  vince ,  we wanted to thank you for your time and support today . we have been  thinking about our conversation and it may be better to wait until december  before you approached delainey . this time period would give us the  opportunity to change his impression of our contributions to gas and power .  please let us know if you would advise differently .  thank you ,  kristin and john\",0\n\"Subject: re : confidential  yannis ,  yes , very much . please stop by this week or during the week  of the 24 th . i am in australia next week .  vince\",0\n\"Subject: interview schedule for shen ( charles ) yingquan  please find the interview packet for the above - referenced person . the  interview will occur on friday october 13 , 2000 . please print all three  documents for your reference . if you have any questions , or conflicts of  schedule , please do not hesitate to contact me .  stephanie  58701\",0\n\"Subject: re : telephone interview with the enron research group  hi christine !  thanks for being so prompt !  i have scheduled the telephone interview for 2 : 00 pm on thursday ,  november 30 th . they will call you at ( 504 ) 861 - 9110 . if this is not  the telephone number that you wish to be contacted at , please let me  know the number that you do want them to call you on .  the research group does sponsor green cards and visas . below is  a short synopsis of what the research group does . however , they will  be glad to answer any questions you have during the interview .  \"\" the enron research group is responsible for option modeling , building  systems for risk quantification and management , development of  optimization systems , help with statistical analysis and anything that  requires  advanced math \"\" . the research group supports all units of enron .  if you have any other questions , please feel free to contact me , or feel  free to ask during the interview .  talk to you on thursday !  best regards ,  shirley crenshaw  \"\" qing chen \"\" on 11 / 27 / 2000 05 : 40 : 09 pm  to :  cc :  subject : re : telephone interview with the enron research group  hi shirley ,  thanks for the arrangement . i am available to start the interview :  - from 9 am to 10 am on wednesday and thursday  - from 2 : 30 pm to 4 pm on thursday  new orleans is in the central time zone .  in addition , could you let me know :  - what is the main responsibilities of the research group ;  - what positions you are recruiting for ; and  - what qualifications and skill sets are critical to these positions .  thanks . i look forward to hearing from you .  best regards ,  qing ( christine ) chen  mba 2001  a . b . freeman school of business  tulane university  tel : ( 504 ) 861 - 9110  e - mail : qchenl @ tulane . edu  - - - - - original message - - - - -  from :  to :  sent : monday , november 27 , 2000 10 : 25 am  subject : telephone interview with the enron research group  > good morning ms . chen :  >  > vince kaminski and several members of the research group would like  > to conduct a telephone interview with you sometime this week at your  > convenience . please let me know the times that you are available and  > they will contact you .  >  > the telephone interviews usually last approximately 1 hour and will be  > conducted via a speaker phone .  >  > the interviewers will be :  >  > vince kaminski managing director and head of research  > stinson gibner vice president , research  > tanya tamarchenko director , research  > zimin lu director , research  >  > look forward to hearing from you .  >  > best regards ,  >  >  > shirley crenshaw  > administrative coordinator  > enron research group  >  >\",0\n\"Subject: independent variables for ene regressions  brad ,  as we discussed , it ' s very difficult to find drivers of the ene stock ' s  behaviours . we investigated about 30 comparable stocks , 10 capital market  indices , and three energy commodity indices . regular regressions as well as  regressions with different legs and leads were performed . some variables  show significant correlated with ene stock during particular time periods ,  but most of those correlation disappears when we tested them over different  or longer time periods .  only two variables , s & p utility index ( spxu ) and dow jones utility  index ( util ) , show stable and significant relationship with ene stock ( a  summary of these relationship can be found in the attached file  \"\" outputsummary \"\" ) . but as you can see , the r 2 are below 30 % . also , the ? durbin - watson statistics tell us to be careful about autocorrelation . ? basically , the regression analysis so far confirms our original opinion - - ? it ' s hard , if not impossible , to find out any real driver of the ene stock . ? after enron added new core business several month ago , the stock behaved more ? or less like a tele _ comm stock , which suggests that enron stock has entered ? into a new phase . to capture , at least trying to capture , its ? characteristics in the new phase , we need a lit bit more time to cumulate the ? market date . ? ? let me know if you need me investigate more variables or you come up with ? some new thoughts . ? ? ? ? vincent ? ?\",0\n\"Subject: esai gas / power alert on impact of gas prices on generation  investment  attached is an essay of the impact of gas prices on generation investment .  if you have any questions or comments , feel free to contact me .  ed  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  edward n . krapels , phd  managing director  esai power and gas services  tel 781 245 2036  cell 617 899 4948  ekrapels @ esaibos . com  www . esai . com  - esai gas alert 101800 . pdf\",0\n\"Subject: re : hello from vince kaminski at enron  shmuel ,  the date of our trip to berkeley has been set . it will be october 16 th and  17 th  ( monday and tuesday ) .  i shall be glad to make a presentation on energy derivatives markets  ( development of the markets in the us and europe , valuation difficulties ,  enron ' s role  in developing the forward markets for natural gas and electricity ) .  please , let me know if this topic would be of interest to you . if this is the  case , i shall follow with a title and an abstract .  by the way , are you free for dinner on monday ?  vince  \"\" shmuel oren \"\" on 08 / 24 / 2000 08 : 59 : 38 am  to : \"\" vince j kaminski \"\"  cc :  subject : re : hello from vince kaminski at enron  great . our seminars are 3 : 30 to 5 pm . if it works for you please send me a  title and abstract .  shmuel s . oren , professor  dept . of industrial engineering  and operations research  4117 etcheverry hall  university of california  berkeley , ca 94720 - 1777  e - mail : oren @ ieor . berkeley . edu  phone : ( 510 ) 642 - 1836 or 5484  fax : ( 510 ) 642 - 1403  - - - - - original message - - - - -  from : \"\" vince j kaminski \"\"  to : \"\" shmuel oren \"\"  cc : \"\" vince j kaminski \"\" ; \"\" ashley baxter \"\"  sent : thursday , august 24 , 2000 9 : 58 am  subject : re : hello from vince kaminski at enron  >  >  > shmuel ,  >  > thanks for the message . i am working with our recruiter , ashley baxter ,  > to finalize the date of the trip . i shall shoot for october the 23 rd  > if this date works for the rest of our team .  >  > vince  >  >  >  >  >  >  > \"\" shmuel oren \"\" on 08 / 23 / 2000 11 : 46 : 19 am  >  > to : vince j kaminski / hou / ect @ ect  > cc :  > subject : re : hello from vince kaminski at enron  >  >  >  > dear vince .  > i sent you a reply earlier this month but i haven ' t heard from you about  the  > date of your visit . our department has a seminar every monday . if you can  > schedule your visit on a monday i would like to invite you to give a  seminar  > which will be attended by many of our graduate students and faculty and  will  > give you an opportunity to tell them about your program . with sufficient  > lead - time i can advertise the seminar in the hass school to their  financial  > engineering students .  > shmuel .  > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / /  > shmuel s . oren , professor  > dept . of industrial engineering  > and operations research  > 4117 etcheverry hall  > university of california  > berkeley , ca 94720 - 1777  > e - mail : oren @ ieor . berkeley . edu  > phone : ( 510 ) 642 - 1836 or 5484  > fax : ( 510 ) 642 - 1403  > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / /  >  > - - - - - original message - - - - -  > from :  > to : ; ;  >  > sent : tuesday , august 08 , 2000 10 : 59 am  > subject : hello from vince kaminski at enron  >  >  > > shmuel ,  > >  > > i hope you remember me . i visited you together with aram sogomonian , a  > > good friend of mine , a few years ago . i am currently responsible , among  > > other things , for recruiting graduates with finance and / or technical  > > backgrounds at the university of berkeley . i would be glad to give you a  > > call and talk more about the details of our program . my colleague ,  > > ashleybaxter , from the analyst / associate program at enron would join me  > > as well .  > >  > > i am sending you a copy of the brochure about the analyst / associate  > > program .  > >  > > vince kaminski  > >  > >  > > vincent kaminski  > > managing director - research  > > enron corp .  > > 1400 smith street  > > room ebl 962  > > houston , tx 77002 - 7361  > >  > > phone : ( 713 ) 853 3848  > > fax : ( 713 ) 646 2503  > > e - mail : vkamins @ enron . com  > >  >  >  >  >  >  >\",0\n\"Subject: re : london visit  paul ,  i shall be in london in the beginning of october .  i shall notify you about the timing of my trip later this week .  vince  paul . e . day @ uk . arthurandersen . com on 09 / 18 / 2000 03 : 29 : 50 pm  to : vince . j . kaminski @ enron . com  cc :  subject : re : london visit  i understand this has been cancelled - no problem - life is kind of hectic  here  anyway ! ! why don ' t we try to rearrange next time you ' re over ?  kind regards  paul day  to : paul e . day  cc : vince . j . kaminski @ enron . com , shirley . crenshaw @ enron . com  date : 25 / 08 / 2000 19 : 10  from : vince . j . kaminski @ enron . com  subject : re : london visit  paul ,  thanks for your message . i am in process of  finalizing my plans for the trip to london in the end of  september . i delayed responding to you message till  i had more specific information .  unless there a major change in my schedule , i shall arrive  in london on monday morning ( september 18 ) and leave on  thursday in the evening .  please , let me know what would be convenient time  to meet . you can send me an e - mail message and my secretary  will contact to confirm the date and place of the meeting .  my assistant ' s name is shirley crenshaw and her phone  number is 713 853 5290 .  i look forward to meeting you , tom and julian .  vince kaminski  paul . e . day @ uk . arthurandersen . com on 08 / 25 / 2000 11 : 53 : 02 am  to : vince j kaminski / hou / ect @ ect  cc : tom . o . lewthwaite @ uk . arthurandersen . com ,  julian . leake @ uk . arthurandersen . com  subject : london visit  i understand that you will be in london around 20 september . tom lewthwaite  has  asked me to arrange a meeting between you , tom and julian leake . i understand  that you have met tom and julian before . i would also like to attend - i am  a  manager in our uk financial services practice with responsibilty for enron  from  a uk financial services perspective . we would like to discuss any risk  management concerns that you may have and any internal initiatives with which  we  could assist .  if you are happy to meet on this basis , i would be grateful if you could let  me  know how you to proceed ( whether i should arrange timings with you , your  secretary , someone in london etc ) . you can contact me on + 44 20 7783 7446 ( at  enron ' s london offices ) or on this e - mail address .  kind regards  paul day  * * * * * * * * * * * * * * * * * * * internet email confidentiality footer * * * * * * * * * * * * * * * * * * *  privileged / confidential information may be contained in this message . if you  are not the addressee indicated in this message ( or responsible for delivery  of  the message to such person ) , you may not copy or deliver this message to  anyone .  in such case , you should destroy this message and kindly notify the sender by  reply email . please advise immediately if you or your employer do not consent  to  internet email for messages of this kind . opinions , conclusions and other  information in this message that do not relate to the official business of my  firm shall be understood as neither given nor endorsed by it .  * * * * * * * * * * * * * * * * * * * internet email confidentiality footer * * * * * * * * * * * * * * * * * * *  privileged / confidential information may be contained in this message . if you  are not the addressee indicated in this message ( or responsible for delivery  of  the message to such person ) , you may not copy or deliver this message to  anyone .  in such case , you should destroy this message and kindly notify the sender by  reply email . please advise immediately if you or your employer do not consent  to  internet email for messages of this kind . opinions , conclusions and other  information in this message that do not relate to the official business of my  firm shall be understood as neither given nor endorsed by it .\",0\n\"Subject: re :  thanks vince . i ' ll make the reservation , then send shirley the details to  issue an invite to us all .  steve  vince j kaminski  09 / 20 / 2000 05 : 10 pm  to : steven leppard / lon / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re :  steve ,  i shall talk to john sherriff about such issues . my intention  is to vest you with maximum decision making powers . it makes most sense to  me to make decisions where the information resides .  please , invite anjam or alternatively make reservations for dinner and  let shirley know . shirley can send an invitation to everybody in the group  on my behalf . it would be really bad to exclude anjam from the dinner .  it  vince  steven leppard  09 / 20 / 2000 10 : 30 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : re :  thanks vince .  dinner on sunday ok all round . do you want anjam along too ? i can ' t really  ask him , given our current relationship .  one other thing , have you had thoughts on reporting lines , who signs  expenses , etc . etc . , or are these issues to be resolved when you come over ?  cheers ,  steve  vince j kaminski  09 / 20 / 2000 04 : 14 pm  to : steven leppard / lon / ect @ ect  cc :  subject :  steve ,  steve , this is the spreadsheet .  also , please , let shirley know if the dinner on sun is ok .  vince\",0\n\"Subject: var for enroncredit . com  rick and ted ,  it looks more like foxes building chicken houses as opposed to foxes guarding  chicken houses .  i shall send a message to bryan saying that the research has to look under  the hood and examine the mechanics  of the model in order to sign off on it . a dog and pony show is not  sufficient . in any case , the decision to approve  the model should not be left to ben and kirstee .  please , let me know what your thinking is .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 11 / 10 / 2000  01 : 31 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  bryan seyfried  11 / 10 / 2000 03 : 20 am  to : vince j kaminski / hou / ect @ ect , steven leppard / lon / ect @ ect  cc : ted murphy / hou / ect @ ect  subject : var for enroncredit . com  vince / steve - - we are going to the board in december to ask for formal  limits . as you know one of the key limits at the board level is value at  risk . to that end , it is imperative that you are comfortable with our  approach for calculating var . we have implemented a third party risk system  which holds all of our positions and are in the process of putting the debt  positions in . the system has a var engine which is being demo ' d by the  vendor today . ben and kirstee are attending the demo and if they find the  technology acceptable , i propose moving forward with implemantion of the  module . pls . let me know if this sounds reasonable and how you would  envision implementing .  thanks\",0\n\"Subject: announcing tff 2000  happy new year ! just a note to announce the dates for this years texas  finance festival . this year we are meeting earlier in april , in san  antonio , and start the program on friday . please put the date on you  calendar and send in your registration forms asap as space at the  conference is limited . i also encourage you to register with the hotel  immediately as we were able to reserve only a limited number of rooms at  the reduced conference rate .  hope to see you all there ! more fun in texas .  john  - announcerev . doc  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: dear vince ,  bardzo dziekuje za podeslana literature , szczegolnie drugie wydanie  ksiazki . bylismy w londynie w czerwcu zeszlego roku , ale w ksiegarni  znalezlismy tylko piersze wydanie . obaj z alkiem ( ojcem ) wspolpracujemy z  energetyka ( glownie polska ) od kilku lat . w zeszlym roku wydalismy ksiazke  \"\" gielda energii : strategie zarzadzania ryzykiem \"\" , a obecnie pracujemy nad  jej angielskim wydaniem . na jaki adres ci ja przyslac ?  serdeczne pozdrowienia ,  rafal\",0\n\"Subject: re : times 2 filing units  rachel , can you give us a delivery date on p . o . no . 0898 - 984503 ? thanks , pat  anita dupont @ enron  03 / 08 / 2001 09 : 30 am  to : pat scarborough / epsc / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect  subject : re : times 2 filing units  pat :  will you please notify me when these filing units are going to be delivered  as we have to unload the lateral file cabinets that are currently in that  room . also , will the men who deliver the times 2 units remove the lateral  files ? thanks . anita  - - - - - - - - - - - - - - - - - - - - - - forwarded by anita dupont / na / enron on 03 / 08 / 2001 09 : 27  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  anita dupont  02 / 21 / 2001 09 : 39 am  to : pat scarborough / epsc / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect  subject : re : times 2 filing units  pat : out co # is 0413 , rc # is 107043 . please deliver them to eb 19 c 2 .  also , please let me know when they are going to be delivered as we have to  unload the lateral file cabinets that are currently in that room . will the  men who deliver the times 2 units remove the lateral files ? thanks . anita\",0\n\"Subject: re : interest in a position  alison ,  my group needs generally people with advanced skills in mathematics and  programming .  i shall try to help you by forwarding your resume ( with your permission ) to  other  units of enron . please , let me know if it ' s ok with you .  vince  enron north america corp .  from : mary alison bailey 11 / 21 / 2000 09 : 42 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : interest in a position  dear vince ,  when we talked last , you mentioned you were considering making additions to  your office staff . if you are still considering these additions , i would  like to talk to you and see if there might be a place for me . it would be  wonderful to work with a group such as yours .  it has been great working in recruiting , but the time has come for me to try  something else . i am beginning to look around , but wanted to talk to you  first . if my skill sets match a position you might be adding , please  consider me . i have attached my resume so that you will have an idea of what  i have done .  thank you for your consideration . have a great thanksgiving !  alison bailey  713 - 853 - 6778\",0\n\"Subject: mid - project review date - enron  enron tiger team :  the enron tiger team mid - project review date has been set for tuesday , feb  20 from 6 : 30 - 8 : 30 pm in shdh 205 . your host will be on campus for the  review .  each of the 3 teams will present at this time followed by q & a .  all students are required to attend . questions , please contact the fap  office .  donna piazze  program director  field application project  the wharton school  univ . of pennsylvania  215 . 573 . 8394 fax 215 . 573 . 5727  fap @ management . wharton . upenn . edu  piazze @ wharton . upenn . edu\",0\n\"Subject: password security notice  for password renewals only  it security & controls \u0001 ) password security notice  passwords  the key to maintaining information and system security is the use of  well - selected and guarded passwords . because your password is our first line  of defense , stronger password selection criteria will soon be implemented for  all employees .  password policy  passwords \u0001 (  1 . must be at least of eight characters in length .  2 . must not contain names , userids , common english dictionary words , and  begin or end with a number .  3 . must contain alphanumeric characters and contain at least one special  character . no more than fifty percent of the overall password can be in  english .  4 . must not be reused or cyclical .  5 . must be changed every 60 days .  6 . must not be publicly displayed .  7 . must not be shared with other users .  choosing a good password comes down to two things . first , avoid common  everyday words a potential hacker \u0001 , s software will be looking for . second ,  keep your password simple enough that you can remember it without having to  write it down .  please keep in mind that the enron code of ethics holds employees responsible  for password security . it security & controls conducts periodic audits to  ensure compliance with company policy .  for any problems encountered concerning password controls , please call your  appropriate resolution center ( available : 24 hrs . / day , 7 days / week ) .\",0\n\"Subject: performance  at this point , monday december 4 th seems to be free for most of you  whose calendar i have .  let me know .  thanks !  shirley  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 10 / 30 / 2000  07 : 34 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  shirley crenshaw  10 / 30 / 2000 07 : 32 am  to : stinson gibner / hou / ect @ ect , vince j kaminski / hou / ect @ ect , pinnamaneni  krishnarao / hou / ect @ ect , zimin lu / hou / ect @ ect , maureen raymond / hou / ect @ ect ,  mike a roberts / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , osman  sezgen / hou / ees @ ees , tanya tamarchenko / hou / ect @ ect  cc :  subject : performance  good morning everyone .  please let me know which date you would prefer . december 4 or december 8 th .  thanks !  shirley  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 10 / 30 / 2000  07 : 26 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  norma villarreal  10 / 28 / 2000 10 : 47 am  to : shirley crenshaw / hou / ect @ ect , stinson gibner / hou / ect @ ect , mike a  roberts / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , pinnamaneni  krishnarao / hou / ect @ ect , maureen raymond / hou / ect @ ect , zimin lu / hou / ect @ ect ,  osman sezgen / hou / ees @ ees  cc : vince j kaminski / hou / ect @ ect , ramona perkins / corp / enron @ enron  subject : performance  the research group will be conducting a performance review committee ( prc )  meeting in early december . all vice presidents , sr . directors and directors  should attend . shirley crenshaw will be contacting you to schedule the prc  meeting date and time . these are the current available dates :  december 4 , 8 .  in preparation for the meeting please submit recommended rankings and  promotions to me based on employee feedback by november 29 , 2000 . please  included analyst / associates ,  if you have any questions please feel free to call me or ramona perkins at  x 58165 .  here is some helpful information for you as we proceed throughout he  performance evaluation process  october 25 , 2000 - november 17 , 2000 ( 3 1 / 2 weeks ) :  employees will provide a list of accomplishments occurring after june 1 , 2000  to their supervisors  employees will receive an email advising of access and passwords to pep  system ( 10 / 25 )  employees identify selected reviewers on line and will submit to supervisor  supervisor will add and / or delete reviewers in order to capture a full 360  degree feedback  supervisor will submit and reviewers will receive an e : mail advising them of  their reviewer role  reviewers can decline or complete the review  once system closes on november 17 , 2000 ,  prepare for research prc meeting ( print consolidate review , pre rank  employees , identify candidates for promotion and submit to hr )  important dates ( i will notify you of any changes ) :  september 30 , 2000 only employees before 10 / 1 / 00 will be included for pep and  bonuses  october 15 , 2000 whomever is the supervisor for employees on 10 / 15 / 00 will be  responsible for their reviews  october 25 , 2000 pep system opens ( http : / pep . corp . enron . com )  october 30 - 31 , 2000 pep overview session at doubletree  november 17 , 2000 pep system closes for feedback  november 23 - 24 thanksgiving holiday  november 29 , 2000 provide hr with pre - rankings and promotions  december tbd , 2000 research prc  january 31 , 2001 all reviews must be complete , signed and submitted to hr  norma  sr . hr representative  x 31545\",0\n\"Subject: re : fw : enron credit model docs for the comparative model study -  to be sent to professor duffie @ stanford  iris ,  we can mention to ben that the papers will be edited and  combined into a coherent review .  vince  from : iris mack / enron @ enronxgate on 04 / 23 / 2001 01 : 49 pm  to : vasant shanbhogue / enron @ enronxgate , vince j kaminski / hou / ect @ ect , amitava dhar / corp / enron @ enron  cc :  subject : fw : enron credit model docs for the comparative model study - to be sent to professor duffie @ stanford  hi ,  attached is a bit of feedback from ben regarding the papers listed below .  can you help me out here ?  thanks ,  iris  - - - - - original message - - - - -  from : parsons , ben  sent : monday , april 23 , 2001 3 : 05 am  to : mack , iris  subject : re : enron credit model docs for the comparative model study - to be sent to professor duffie @ stanford  hi iris  i would not include paper 8 , as paper 7 supersedes it . also how much rewriting of these papers do you envisage ? some of them are not up - to - date , or were written poorly and under time - pressure , so what do you envisage eventually sending to duffie ?  thanks  ben  from : iris mack / enron @ enronxgate on 21 / 04 / 2001 22 : 30 cdt  to : ben parsons / lon / ect @ ect  cc : vasant shanbhogue @ / o = enron / ou = na / cn = recipients / cn = notesaddr / cn = e 6795104 - 40 ff 9820 - 86256525 - 68 daao @ ex @ enronxgate , vince j kaminski / hou / ect @ ect , scott salmon / eu / enron @ enron , bryan seyfried / lon / ect @ ect , nigel price / lon / ect @ ect , tomas valnek / lon / ect @ ect , george albanis / lon / ect @ ect , markus fiala / lon / ect @ ect , craig chaney / enron @ enronxgate , kim detiveaux / enron @ enronxgate , amitava dhar / corp / enron @ enron , tanya tamarchenko / hou / ect @ ect , mike mumford / lon / ect @ ect  subject : re : enron credit model docs for the comparative model study - to be sent to professor duffie @ stanford  hi ben ,  i think i have read all the papers that are to be used in the comparative model study to be sent to professor duffie at stanford .  these documents are all listed below . please let me know if i have omitted any ( however , don ' t get the impression that i am begging for more papers to read ) .  now i will try to transform my notes into a draft for professor duffie .  thanks ,  iris  list of papers for comparative model study  1 . actively managing corporate credit risk : new methodologies and instruments for non - financial firms  by r . buy , v . kaminski , k . pinnamaneni & v . shanbhogue  chapter in a risk book entitled credit derivatives : application for risk management , investment and portfolio optimisation  2 . neural network placement model  by george albanis , enroncredit ( 12 / 22 / 00 )  3 . pricing parent companies and their subsidiaries : model description and data requirements  by ben parsons and tomas valnek , research group  4 . a survey of contingent - claims approaches to risky debt valuation  by j . bohn  www . kmv . com / products / privatefirm . html  5 . the kmv edf credit measure and probabilities of default  by m . sellers , o . vasicek & a . levinson  www . kmv . com / products / privatefirm . html  6 . riskcalc for private companies : moody ' s default model  moody ' s investor service : global credit research  7 . discussion document : asset swap model  by ben parsons , research group ( 4 / 20 / 01 )  8 . asset swap calculator : detailed functional implementation specification ( version 1 . 0 )  by ben parsons , research group  9 . discussion document : live libor bootstrapping model  by ben parsons , research group ( 4 / 20 / 01 )  10 . the modelling behind the fair market curves : including country and industry offsets  by nigel m . price , enron credit trading group  11 . pricing portfolios of default swaps : synthetic cbos - moody ' s versus the full monte ( carlo )  by nigel m . price , enron credit trading group  12 . placement model vl . 0 : discussion document  by ben parsons , research group , 2000  13 . credit pricing methodology - enroncredit . com  by ben parsons , research group  14 . correlation : critical measure for calculating profit and loss on synthetic credit portfolios  by katherine siig , enron credit group  15 . discussion document : var model for enron credit  by ben parsons , research group , ( 1 / 3 / 01 )  16 . methodology to implement approximate var model for the credit trading portfolio  by kirstee hewitt , research group\",0\n\"Subject: schedule  vince ,  my schedule for the risk 2001 conference in houston is :  arrive sunday 4 / 13 9 pm .  staying at the houstonian  depart tuesday 4 / 15 5 : 30 pm .  hopefully , we can get together .  thanks , aram ( cell phone 503 - 701 - 6692 )\",0\n\"Subject: re : vince . . . feedback from howard on debrief  jeff ,  we shall continue talking to howard when he comes back from nyc .  i shall set up an interview with him .  vince  \"\" $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ \"\" on 02 / 05 / 2001 12 : 49 : 20 pm  please respond to \"\" $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ \"\"  to : vince . j . kaminski @ enron . com  cc :  subject : vince . . . feedback from howard on debrief  hi vince , this is exactly what i recieved back from my man in the uk . . . pls  review . any comments or instructions ?  thank you ,  jeff wesley 949 813 2241 direct  spoke to howard , he is intereste in speaking to someone higher up the  foodchain at enron . he got the impression that those people he met would  report into him . he really needs to speak to someone higher up and discuss  the roles strategic potential .  he is interested mainly in structuring which this role is not . but he  recognised where it might lead and this would potetially be interesting to  him but needs to speak to someone who is involved in the strategic direction  of enrons credit . com .  vuthy is aware that enron have intimated they want to see him again . howard  has told me there is a lot happening for him both here and in the us . vuthy  will arrange to get howard interviewed here in london early next week .  tks and rgds  alec  * get free , secure online email at http : / / www . ziplip . com / *\",0\n\"Subject: ceraweek 2000 update !  dear ceraweek 2000 registrant ,  thank you for your recent registration to ceraweek 2000 , cera ' s 19 th annual  executive conference and related events , february 8 - 10 , 2000 in houston , tx .  ceraweek 2000 promises to be a premier international event offering senior  energy executives new ideas , insight , and strategic thinking , as well as  opportunities for discussion on the major issues facing the global energy  industries .  to keep abreast of new speakers and agenda changes , we recommend that you  visit our website at http : / / www . cera . com / ceraweek / . please note that there  have been slight changes to the agenda and schedule .  if you have questions or concerns regarding ceraweek 2000 please contact  cera registration at register @ cera . com or 800 879 - 2372 ext . 800 ( outside  the u . s . ( 617 ) 497 - 6446 ext . 800 . )  we look forward to seeing you in houston .  sincerely ,  cera registration  - attl . htm\",0\n\"Subject: re : contact info  glenn ,  please , contact rudi zipter to set up an interview with him and david port .  vince  \"\" glenn darrah \"\" on 04 / 25 / 2001 04 : 27 : 03 pm  please respond to gdarrah @ bigfoot . com  to : vince . j . kaminski @ enron . com  cc :  subject : contact info  vincent ,  congratulations on spearheading the mind ' s eye madness event - it looks like  quite a success . my biggest disappointment is that i am leaving enron this  week and have been too busy to participate as much as i would like . i have  had continued interest in the work and presentations that amy oberg has  done , so would have really enjoyed the workshop yesterday . i am still  considering doing some or all of the motorcade friday , however that may  work .  separately , thanks for the update in the lobby today on the enterprise risk  project . please keep in touch with me . as i mentioned , my redeployment  period ends tomorrow ( april 26 ) , but i currently do not have an outside job  lined up and still have a lot of interest in the project if something can be  worked out over the next few weeks . although he is not in the same group as  david port , i have worked a lot with brad larson in the rac underwriting  group - he may be a good source of information on me also .  contact information :  e - mail : gdarrah @ bigfoot . com  phone : 713 . 668 . 4277  cell : 713 . 320 . 5615  thanks ,  glenn darrah  get your free download of msn explorer at http : / / explorer . msn . com\",0\n\"Subject: re : congratulations  thanks vince and likewise congratulations on your promotion to md ! i enjoyed  getting to work with you and your group over the past year . rick c .\",0\n\"Subject: energy leader consulting generation evaluator ( ege )  shirley :  as requested , herein is information regarding the meeting with vince kaminski .  the presentation on the ege tool ' s applications and the allegheny energy case study is timed to take an hour . if the meeting is most conveniently scheduled for tuesday , may 29 , might i request it be set for late afternoon ( as my other appointments are the next day ) .  and , as vince will recall , i was co - leader of the energy consulting business of phb hagler bailly , and developer of the ramp up , real time , 75 check and electric strategy tools . presently , i am ceo of energy leader consulting ( elc ) .  background  the u . s . power generation industry has become increasingly efficient in recent years . rapidly growing new entrants seek profit maximization aggressively . utilities , who still control most power plants , endeavor to adopt the entrants ' methods . yet , inefficiency among many utilities remains widespread .  utility inefficiency arises from adherence to decades - old habits and in unit commitment and dispatch and planned maintenance scheduling . many utilities , notwithstanding the industry - wide trend towards profit maximization , cling to ingrained routines .  inefficiency can also arise from the diseconomies of small scale . a utility may operate a relatively small system ( fewer than a dozen plants ) . a small system lacks portfolio diversification and perspective in its focus on its regulated customers , playing the wholesale market at the margin .  for a variety of reasons , utilities are reluctant to cut back the starts of their generating units , let alone shut down any ( even temporarily or seasonally ) . economically inefficient units continue to be committed , week after week , and run in the half - load range .  ege objectives  ege identifies and assesses generating units of a utility with questionable commitment routines . taking into account transmission and reliability factors , the procedure points towards profit opportunities that may be exploited by another industry participant .  i . an industry participant can use ege as a basis for a medium or long - term wholesale power transaction with a utility ; or to price wholesale power more aggressively , to take market share from the utility ( i . e . , compel changes in unit commitment habits ) .  ii . an industry participant can use ege to spot and quantify efficiencies that would come from a merger or acquisition .  iii . a power plant developer can use ege to estimate the incremental value a new plant will enjoy when the target utility ' s unit commitment routines inevitably become rationalized .  specific ege concepts  ege reduces and analyses the extraordinary but unwieldy continuous emission monitoring data base intelligently focusing on profit opportunities .  it produces indicative statistics such as :  a . the frequency distribution of starts per week ;  b . the frequency distribution of starts by day / 15 - minute segment during the week ;  c . the frequency distribution of load level ;  d . the frequency distribution of hours of operation per start ;  e . average heat rate and approximate fully - allocated cost in the half - load range ;  f . average ramp rate from the half - load range ;  g . the frequency distribution of unused connected capacity during the highest demand hours ; and  h . forced - off maintenance outage rate ( where indicated ) .  indicative statistics are generally aggregated by month / year ; in some cases , by temperature range . ( they can be by regional wholesale prices as well . ) ege establishes if the target utility has changed unit commitment routines significantly in recent years .  ege is based upon uniquely timely actual hourly operating data . ege is now updated for the 4 th quarter 2000 ( through december 31 , 2000 ) . ege lst quarter 2000 ( through march 31 , 2001 ) will be available approximately june 15 , 2001 .  ege also compares and ranks generating units ' commitment and dispatch with that of similar units operated by the target utility ( as well as other regional generators ) . some utilities operate a group of economically marginal units at the half - load level for lengthy time periods ( without an apparent reliability basis ) , splitting the limited economic demand for power among the units .  other ege supporting data :  i . planned maintenance schedule ( where indicated ) ;  j . actual maximum generating capacity ;  k . actual minimum generating capacity ( actual maximums and minimums can differ significantly from government - reported values ) ;  l . average heat rate in the full - load range ; and  m . average heat rate in the three - quarter - load range .  with respect to a generating units ' average heat rate in the half - load , three - quarter - load and full - load ranges , it can be instructive to rank these relative to similar generating units within a region . it can also be of interest to identify significant seasonal variations in average heat rates and maximum capacities , and changes in recent years in these parameters .  the real - world example of allegheny energy  allegheny energy can serve as a case study to illustrate the application of ege . in the 4 th quarter 2000 , for instance , one high - cost generating unit was started virtually every weekday morning ( 52 times ) and committed for the whole day ( in all but two cases ) . arguably , there are power products that could substitute for this routine ( in part at least ) at a profit to the seller of the product and allegheny energy .  another high - cost allegheny energy generating unit was started virtually every weekend during the autumn ( nine times ) and committed for most of the coming week . at another plant , two high - cost units were operated too often in the expensive half - load range ( some 550 hours ) and three - quarter - load range ( another 400 to 600 hours ) ; they were seldom called upon to run at higher levels . again , there are power products that that address these practices and might appeal to allegheny energy .  offering of energy leader consulting ( elc )  ege is a procedure , not a software package or data base . elc believes this format is more effective in arming clients with the information they need to act upon profit opportunities .  elc transfers its \"\" knowledge \"\" about the ege procedure and the supporting data methods in a straight - forward four - step process :  1 . enron would select one to three target utilities .  2 . elc would perform the ege procedure on the target utilities .  3 . employing this real - world analysis as a pedagogic tool , elc , in a one - day seminar with enron personnel , would instruct how to perform the procedure in the future ( without the assistance of elc ) .  4 . optionally , elc would provide ege supporting data , quarterly , to enron .  the basic ege supporting data set is national including all generating units under the continuous emission monitoring program ( virtually all fossil fuel units ) . parameters that are incorporated , and the data set format , will be specified upon request . custom modifications will be considered .  steven a . mitnick  chief executive officer  energy leader consulting  4807 41 st street , nw  washington , dc 20016  ( 202 ) 997 - 0924 voice  ( 202 ) 537 - 0906 fax  smitnick @ energyleader . com\",0\n\"Subject: thanks vince  ok vince .  alec at rw and i are ready for you concerning howard .  thank you for the information .  jeff  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  jeff  my interview with howard will be scheduled on a different day .  vince  * get free , secure online email at http : / / www . ziplip . com / *\",0\n\"Subject: re : mit offers  karen ,  the total of 5 offers . i sent you 2 cvs electronically , 2 hard copies to  charlene .  paulo ' s resume will follow .  vince  karen marshall  02 / 22 / 2000 03 : 51 pm  to : vince j kaminski / hou / ect @ ect  cc : charlene jackson / corp / enron @ enron , ginger b gamble / hou / ect @ ect , celeste  roberts / hou / ect @ ect  subject : mit offers  vince ,  do you want 3 offers extended or 5 ? i just noticed that you plan to fax two  additional resumes . if so , when can i expect the additional resumes ?  karen  - - - - - - - - - - - - - - - - - - - - - - forwarded by karen marshall / hou / ect on 02 / 22 / 2000  03 : 38 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  karen marshall  02 / 22 / 2000 03 : 37 pm  to : vince j kaminski / hou / ect @ ect  cc : charlene jackson / corp / enron @ enron , ginger b gamble / hou / ect @ ect , celeste  roberts / hou / ect @ ect  subject : mit offers  vince ,  i will handle the offer letters for the candidates . i have the resumes for  darten williams and sevil yaman . i know you only provided the e - mail memo  for paulo rocha , but i really need his resume in order to capture the  necessary information for his offer letter .  please have him e - mail it to me at karen . marshall @ enron . com  thanks ,  karen marshall  recruiting manager\",0\n\"Subject: reviewer approval  please note that your employees have suggested the following people to  complete a feedback form on their behalf . you will need to access the  performance management system ( pep ) to either approve or decline these  suggested reviewers . once you have approved the suggested reviewers they  will be notified and can begin completing the feedback form .  your list of employees that have suggested reviewers are listed below :  date suggested : may 24 , 2000  feedback due date : jun 16 , 2000  employee name : crenshaw , shirley j  date suggested : may 19 , 2000  feedback due date : jun 16 , 2000  employee name : kollaros , alexios  date suggested : may 22 , 2000  feedback due date : jun 16 , 2000  employee name : krishnarao , pinnamaneni v  date suggested : may 22 , 2000  feedback due date : jun 16 , 2000  employee name : shanbhogue , vasant\",0\n\"Subject: now visible red  to : mike a roberts / hou / ect , jose marquez / corp / enron @ enron , tony  hamilton / eu / enron @ enron  cc : stephen bennett / na / enron @ enron  subject : leaving london  hi guys . . .  tony and i wanted to summarize \"\" where we go from here \"\" - here is how we see  it . i left the string attached - just read below . . . .  - - - - - - - - - - - - - - - - - - - - - - forwarded by stephen bennett / na / enron on 04 / 26 / 2001  10 : 44 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  tony hamilton  04 / 26 / 2001 10 : 46 am  to : stephen bennett / na / enron @ enron  cc :  subject : re : leaving london  my comments in blue . . .  tony  enron capital & trade resources corp .  from : stephen bennett 26 / 04 / 2001 16 : 36  to : tony hamilton / eu / enron @ enron  cc :  subject : leaving london  hi guys . . .  before leaving here i wanted to quickly summarize the projects that have been  left open :  1 ) tony shifts his focus slightly toward more development - a little less day  to day forecasting  development  - building and developing a transatlantic heating demand model -  including shipment  - building an nao model and index for wx deriv  - developing a model for the api number  - examine uk met data and potential for getting ensemble forecasts from  the ecmwf  - keep up with non - enron global markets ' future needs without commiting  current resources  operational  - begin daily briefings for agriculture - examine data sources and  forecast products  - continue to produce global summary - with help from steve / jose in houston  - continue to produce 1 - 5 and 6 - 10 day forecasts for europe coordinating  with houston  - continue to coordinate on us 6 - 10 day forecasts with houston  - continue monday / wednesday briefings for crude meetings  - provide met comment and support toward weekly / monthly / seasonal official  outlooks from the uk met for wxderiv ( team support from houston )  - design and develop forecast of met forecast ( try to beat their release  by at least 1 hour ) prior to each daily update ( like our bloomberg forecaster )  - identify any additional \"\" market - movers \"\" , anticipate and add value to  same  \"\" back - burner \"\"  - develop a method for providing probability distribution / confidence  graphics based on numerical forecast guidance and ensemble data  \"\" on the shelf \"\"  - daily briefings and products for uk gas  - daily briefings and products for continental power  - daily briefings and products for dutch power  - weather support for coal trading ?  - daily forecasts of and comment on uk met official 3 - 5 and 6 - 10  forecasts  - automation of temperature history / forecast plots from model ensemble  data  2 ) steve continues to work on a few ongoing projects and ties up \"\" loose ends \"\"  on - going  - automate a process for getting forecast temps ( model / other ) from  earthsat data  - continue to produce the us part of the global exec summary  - consult with tony on 1 - 5 day europe forecast  - continue to produce port status report - work on expanding this report  - european forecast verification ( like houston )  \"\" loose - ends \"\"  - contract with wsi for met data  - talk to earthsat about a daily conference call for tony  - talk to uk met office about a daily conference call for tony  - refine list of europe forecast cities and get them from earthsat  - make sure jose didn ' t destroy my house ! !  3 ) jose  - continues to investigate data for global ag and works with tony on  getting ag products up and running  - makes sure steve ' s dog is in perfect shape to return home this weekend  ( i . e . find one with identical markings before steve gets back ! )  - order mofongo for london research luncheons !  that ' s it - see you tuesday . . . .  steve\",0\n\"Subject: visiting enron may 4 th  vince ( and shirley and melinda ) ,  thanks so much for including me in this meeting with stanford  engineering - - - unfortunately , i ' m committed to participate in the enron law  conference in san antonio that entire day .  thanks !  - - christie .  - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 04 / 09 / 2001  03 : 16 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  shirley crenshaw  04 / 09 / 2001 01 : 21 pm  to : christie patrick / hou / ect @ ect  cc : melinda mccarty / corp / enron @ enron  subject : visiting enron may 4 th  christie / melinda :  can christie meet with susan and vince on friday , may 4 th from 1 : 30 - 3 : 00 ?  please let me know .  thanks !  shirley  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 09 / 2001  01 : 15 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  04 / 09 / 2001 01 : 18 pm  to : shirley crenshaw / hou / ect @ ect  cc :  subject : visiting enron may 4 th  shirley ,  fyi  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 09 / 2001  01 : 19 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" susan c . hansen \"\" on 04 / 06 / 2001 06 : 14 : 10 pm  to : vince . j . kaminski @ enron . com  cc : clovell @ stanford . edu , donna lawrence ,  hillh @ stanford . edu , bambos @ stanford . edu  subject : visiting enron may 4 th  dear vince ,  this is great news ! donna and i are delighted that you have time to see us  on may 4 th .  i ' ll be out of the office next week . by copy of this email to my  assistant , carol lovell , i will ask her to get in touch with shirley for  scheduling as well as directions on where to meet you . we ' ll be glad to  meet with christie patrick as well .  looking forward to meeting you ,  susan  at 05 : 36 pm 4 / 6 / 01 - 0500 , you wrote :  > susan ,  >  > thank you for your message . i shall be glad to meet with you on may the  > 4 th .  > i shall ask my assistant , shirley crenshaw ( 713 ) 853 5290 , to call you to  > set up the meeting .  >  > also , for your information , we have recently set up a special unit to  > coordinate enron ' s  > relationships with the universities . the person running this unit is  > christie patrick .  > please , feel free to contact her and give my name as a reference . i shall  > coordinate the meeting  > on may the 4 th with her .  >  > vince  >  >  > additional information re christie :  >  > phone : ( 713 ) 853 - 6117  >  > email : christie _ patrick @ enron . com  >  >  >  >  >  > \"\" susan c . hansen \"\" on 04 / 03 / 2001 04 : 33 : 54 pm  >  > to : vkamins @ enron . com  > cc :  > subject : visit from stanford ?  >  >  > dear dr . kaminski ,  >  > let me briefly introduce myself , i am the director of corporate relations  > for the school of engineering at stanford university . in this role , i am  > always on the watch for ways to bring our faculty together with companies  > that have an appetite for engagement with top tier research institutions .  >  > i believe you know hill huntington , who is a senior researcher with  > stanford ' s energy modeling forum . he suggested i get in touch with you for  > some ideas about contacts at enron . i ' m in the process of planning a trip  > to texas in early may along with my colleague donna lawrence , the  > university ' s director of corporate relations . we were hoping to be able to  > include a stop at enron on our itinerary . right now it appears that friday ,  > may 4 th would work best for us but we ' re at the very beginning of our trip  > planning .  >  > the purpose of our visit would be to review the current relationship  > between enron and stanford , to give you an overview of current priorities  > in the school of engineering , and ask for your help in identifying the best  > points of contact .  >  > i look forward to hearing from you about your availability ,  >  > sincerely ,  > susan hansen  >  >  >  >  > susan c . hansen  > director , corporate relations  > school of engineering  > stanford university  > stanford , ca 94305 - 4027  > ( 650 ) 725 - 4219  susan c . hansen  director , corporate relations  school of engineering  stanford university  stanford , ca 94305 - 4027  ( 650 ) 725 - 4219\",0\n\"Subject: re : potential prospect  tom ,  we are currently space constrained but we shall always take a qualified  candidate . please , ask george to send me a resume and we shall get in touch with him  to arrange a phone / on - location interview .  vince  tom arnold on 04 / 25 / 2001 09 : 15 : 09 am  to : vince . j . kaminski @ enron . com  cc :  subject : potential prospect  hey vince ,  given that the eastern finance conference is already taking place , i think  it is safe to assume that they did not desire an energy derivative round  table discussion . however , i appreciate you volunteering to potentially  having been on such a round table discussion .  i ' ve been teaching a \"\" real options \"\" course that has the students performing  monte carlo analysis , black - scholes pricing , and binomial pricing along  with a heavy dosage of understanding risk neutral pricing . a few of your  new hires from the undergraduate program will be coming from this course .  however , i have a student who will be finishing his mba next spring that is  particularly good . he is genuinely interested and curious about option  pricing , trading , and hedging with excel / vba skills . in fact , he usually  figures out when i make even very small mistakes in my calculations .  this is not to say that some of my other students aren ' t very talented  themselves , but that this person really stands out . do you think you  and / or enron would be interested in such a person ? if so , what do you  recommend that he do to get his foot in the door ?  his intention is to finish the mba , but i do not know if this would  preclude you from hiring or at least taking a look at him now . his name is  george moss and i ordinarily would not bother you directly about a  potential employee . i am making an exception in this case because he is a  particularly good talent without being the slightest bit arrogant .  otherwise , i hope this e - mail finds you doing well and not travelling too  much .  tom  professor tom arnold  e . j . ourso college of business administration  department of finance  2155 ceba  louisiana state university  baton rouge , la 70803  o : 225 - 388 - 6369  f : 225 - 388 - 6366\",0\n\"Subject: rdi project  michelle ,  cecil and david ' s code was correct but could not match ken ' s spreadsheet  output due to a slight mis - specification in ken ' s excel spreadsheet . the code  was then modified to conform with ken ' s specification and results very close  to that of ken were obtained . as of now ken ' s modifying his spreadsheet to  re - run the results , the original correct code will be restored , and we will  see what  happens then . anyway this is rather encouraging .  best ,  alex\",0\n\"Subject: departure of grant masson  the research group :  it is with a deep sense of regret that i announce that grant masson will be  leaving the research group and enron , effective today .  grant has been a very important part of the research group ' s growth and  stability within enron and he will be deeply missed .  we wish him the very best in his new venture and want to send him off with  all the \"\" good \"\" wishes and support that he deserves . however , since i  will be out of town all next week , we will postone the \"\" good luck and  best wishes \"\" party for grant until sometime within the next 3 weeks . an  announcement will be forthcoming at a later date .  please take a minute to wish grant the \"\" best \"\" .  sincerely ,  vince\",0\n\"Subject: london update  vince ,  more fuel for our discussion with john sheriff today ,  mike  - - - - - - - - - - - - - - - - - - - - - - forwarded by mike a roberts / hou / ect on 04 / 25 / 2001  05 : 44 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron north america corp .  from : stephen bennett @ enron 04 / 25 / 2001 04 : 05 am  to : jose marquez / corp / enron @ enron , mike a roberts / hou / ect  cc : tony hamilton / eu / enron @ enron  subject : softs ( ag ) support  hi guys ,  i thought i would quickly update you on a few meetings we ' ve had with the ag  folks here over the past 2 days . they are extremely interested in weather  support and appear to be our most enthusiastic customer group to date . a  summary :  1 ) they are interested in cocoa , coffee and sugar . specifically :  brazil : londrina , bauru , lavras ( all wmos available in accuweather )  vietnam : kentum , dalat ( no data immediately evident )  ivory coast : man , gagnoa ( wmos in accuwx )  indonesia : sumatra - kotubumi , sulawesi - dolo ( no data immediately evident )  2 ) they are specifically interested in event spikes - extreme temperature ,  precipitation or wind . they are also interested in any trend information we  can devise . links between enso or other large scale oscillations that could  have long range effects . tony has already given their group a 101 course on  enso and its impacts on these areas .  3 ) they would eventually like daily am briefings - along with a daily product  related to their market ( ie precip / temp graphs etc )  4 ) they do not begin actually trading for another 6 to 8 weeks - so we have  some time to experiment with the type of support that fits them best .  tony and i agree that we would like to brainstorm this a bit with you guys to  see what exactly can be produced daily - as efficiently as possible . we  should be able to add any lat / long points we want to the list of  international cities streaming through from the mrf / avn / ecmwf from earthsat .  the problems here would be the models ' problems handling tropical weather  along with specific local effects - especially in indonesia .  let ' s talk about this at some point and get our thoughts together .  steve\",0\n\"Subject: transition to research group - an update  vince ,  just wanted to let you know that i had a meeting with wade cline ( coo , enron  india ) , neil mcgregor ( president , dpc ) , and mohan gurunath ( cfo , dpc ) today .  though i had already spoken to all of them earlier about my joining your  group , today it became official , and all of them supported the move . i  explained to them what we would be doing , and the results expected from the  henwood study .  dpc would like to pay the costs for the study , and that was mentioned . there  maybe some tax issues etc . that need to be cleared , and other related issues  that i would like to discuss with you , so i will leave them till i get to  houston .  i also spoke about anshuman , and there was resistance to his leaing for such  a long time . however , i have agreement from folks here to send him to  houston for a shorter stint on dpc budget . i will try to finalize that  before i leave . i will call you in the evening to just chat .  i am very thankful to you for giving the opportunity you have . things here  have deteriorated dramatically over the last few weeks . morale is quite down  due to many lay - offs .  i am really looking forward to returning to houston , and the family ! !  regards ,  sandeep .\",0\n\"Subject: term paper  stuart ,  i cannot open your attachment .  vince kaminski\",0\n\"Subject: re : opportunities  lloyd ,  yes , i would be very interested .  vince  lloyd will  10 / 24 / 2000 02 : 45 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : opportunities  vince would you be interested in this professional .  i would be glad to facilitate a conference call .  thanks .  - - - - - - - - - - - - - - - - - - - - - - forwarded by lloyd will / hou / ect on 10 / 24 / 2000 02 : 43 pm  - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" sheble , g . b . \"\" on 10 / 17 / 2000 04 : 52 : 57 pm  to : \"\" ' lloyd . will @ enron . com ' \"\"  cc :  subject : re : opportunities  loyd  i tried to call yesterday , but you were out of the office . my schedule  follows , would you want to pick a time for me to call you or send me a list  of times to pick ?  gerry  fall 2000 teaching schedule  ee 553 mtwr 10 - 11 am curtis hall 308  engr 161 mw 2 - 4 howe hall 2228  other commitments  m 11 - 12 ep & es  m 1 - 2 office hours  t 12 - 2 ep & es seminar  t 2 - 3 office hours  t 3 - 4 pserc  t 5 - 6 epri - dod  w 11 - 12 office hours  w 4 - 9 dsm  r 11 - 12 office hours  f 11 - 12 p & t  f 1 - 3 cas  f 3 - 4 departmental meeting  - - - - - original message - - - - -  from : lloyd . will @ enron . com [ mailto : lloyd . will @ enron . com ]  sent : monday , october 16 , 2000 8 : 00 am  to : sheble , g . b .  subject : re : opportunities  give me a call any time to discuss things .  713 - 853 - 3383 .  thanks .  \"\" sheble , g . b . \"\" on 10 / 15 / 2000 02 : 17 : 02 pm  to : lloyd will / hou / ect @ ect  cc :  subject : re : opportunities  lloyd  i am attaching another resume for your review , please pass it along if  there  is any interest .  i would also like to discuss opportunities with you as i expect to graduate  with my mba summer 2001 .  cordially ,  gerry  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  gerald b . shebl ,  professor , electrical and computer engineering  director of complex adaptive systems program  1115 coover hall  ames , iowa 50011  voice : 515 . 294 . 3046  fax : 515 . 294 . 4263  email : gsheble @ iastate . edu  web : http : / / www . ee . iastate . edu / ~ sheble /  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =\",0\n\"Subject: avistar users and allocated charges  avistar has been installed globally to provide desktop conferencing .  hardware and installation charges have been allocated by invoice to the  relevant location . the schedule below lists by business unit and rc the  number of units and charges allocated . it will assume the monthly charge - out  process .  the allocated dollars will be depreciated over a three year period to your  respective cost center beginning february 2001 .  if you have any questions please feel free to call or e - mail , sheila glover ,  3 - 3210 , or paige cox , 3 - 5428 .  thanks . sheila\",0\n\"Subject: weather article has been approved - - need to send photos  gary & seth ,  thumbs up on the fow article . many thanks for working through it with me . . .  joe  - - - - - - - - - - - - - - - - - - - - - - forwarded by joseph hrgovcic / hou / ect on 10 / 26 / 2000  11 : 27 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  jane sandiford on 10 / 25 / 2000 06 : 26 : 32 am  to : joseph . hrgovcic @ enron . com  cc :  subject : weather article - photos ?  dear joseph ,  thank you so much for sending me such an interesting article on the internet  and weather derivatives . i really enjoyed reading it !  i just have one final question - do you have a photograph of yourself ( or  the other authors ) that you could send me ? tif , gif or jpeg files are fine  so long as they are 300 dpi .  thanks again and i hope to hear from you soon .  best regards ,  jane  jane sandiford  deputy editor  fow magazine  tel : 0207 827 6493  fax : 0207 827 6413  email : jsandiford @ fow . com  * * disclaimer * *  the contents of this e - mail is sent to the addressee only and may contain  information that is confidential .  persons other than the addressee should not read , disclose , copy or otherwise  distribute this message except for delivery to the addressee .  this e - mail and its attachments ( if any ) have been scanned by trend micro  interscan viruswall v 3 . 4 .  * * personal e - mails * *  the metal bulletin e - mail system scans all e - mails and deletes personal  messages which contain items of a sexual , racial or other inappropriate  matter without notifying the sender . therefore , the transmission of personal  messages , both incoming and outgoing , cannot be guaranteed .\",0\n\"Subject: re :  i ' ll check my billing ! thanks for the  warning !  warm regards , and thanks for the book ,  darrell  darrell duffie  mail gsb stanford ca 94305 - 5015 usa  phone 650 723 1976  fax 650 725 7979  email duffie @ stanford . edu  web http : / / www . stanford . edu / ~ duffie / \",0\n\"Subject: re :  dear navroz  thanks for getting back to me . the reason there has been a dialogue ( not , i  should point out , with nick , but with shan millie ) , is that my work is of  quite a large size , and needs to find an appropriate home . the question is  should it go into a compilation book , or somehow be published in the  magazine ? i was awaiting some feedback from risk on the best course of  action .  we were hoping to publish a cut down version in the magazine , and a full  version in risk ' s upcoming \"\" game choices \"\" book , but i ' ve heard nothing from  your organisation until now ( and i fear we ' ve now missed the boat on the game  choices book deadline ) . i ' m attaching the full internal enron document for  your reference , and i ' d appreciate your thoughts on how best to put the  article in your journal . since the subject is highly diagrammatic , i ' m  concerned that 4000 words may be too many when coupled with diagrams ! ( it is  currently only 6000 words , but is around 25 a 4 pages long . ) if you can give  me some guidance on the issue of publishing extensive diagrams as part of the  text , i ' ll get to work chopping my work around until it suits your preferred  format .  shan millie gave me some good feedback on general points of style and clarity  in my writing , but incorporating these would actually make the article longer  rather than shorter . i think you ' d better look the document over before i do  further work on it .  i look forward to your response .  many thanks ,  steve leppard  enron capital & trade resources corp .  from : \"\" navroz patel \"\"  04 / 28 / 2000 03 : 25 pm  please respond to \"\" navroz patel \"\"  to :  cc :  subject :  dear steven ,  my name is navroz patel and i am the technical assistant at risk magazine . i  am contacting you with regards to your initial dialogue with nick dunbar .  we would be grateful if you could email to both of the addresses below a  copy of your ' real options ' article for our consideration .  please note that articles must have full references , be approximately 4000  words in length , and the attachment should be in ms word or pdf format .  npatel @ risk . co . uk  ndunbar @ risk . co . uk  ?  thank you for your interest .  yours sincerely ,  navroz patel .  technical assistant , risk magazine .\",0\n\"Subject: re : interview with enron corp . research  dear shirley ,  thanks for your letter and invitation . next week we have a spring break at  uh , so i will be pretty flexible . is next tuesday fine ? almost any time . if  not , any other day next week will work for me . starting march 19 i will  teach again , and it will be harder ( but not impossible ) to find a good time  for interview with enron .  adam  - - - - - original message - - - - -  from : shirley . crenshaw @ enron . com [ mailto : shirley . crenshaw @ enron . com ]  sent : 8 marca 2001 09 : 36  to : adambob @ stat . rice . edu  subject : interview with enron corp . research  good morning adam :  the enron corp . research group would like to conduct an informal interview  with you at your convenience .  please give me some dates and times that would be convenient to , sometime  within the next 2 - 3 weeks and i will coordinate an interview schedule .  i look forward to hearing from you very soon .  best regards ,  shirley crenshaw  administrative coordinator  enron corp . research  713 - 853 - 5290  email : shirley . crenshaw @ enron . com  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 08 / 2001  09 : 30 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" adam bobrowski \"\" on 03 / 07 / 2001 09 : 45 : 03 pm  to :  cc :  subject : resume  dear mr . kaminski ,  as a follow - up to your oral communication with my friend tom ware , i  would  like  to express my interest in working for your company , enron . please find  enclosed  my resume and curriculum vitae . if you need additional data , please feel  free to  call me at  ( 713 ) 592 - 8909 ( home ) or ( 713 ) 743 - 3483 ( office ) ,  or email me at  adambob @ stat . rice . edu or adambob @ math . uh . edu .  yours sincerely ,  adam bobrowski .  ( see attached file : cvbobrowski . ps )  ( see attached file : bobrowskiresume . doc )\",0\n\"Subject: maddox  vince ,  here is michael maddox contact information :  tel : ( 617 ) 497 6446  email : mmaddox @ cera . com  they have an office in europe as well . i would love to be involved in  projects involving georgia , azerbaijan , turkey , etc .  my resume  thanks ,  bessik matchavariani  enron broadband services  tel : 713 . 345 . 7230  fax : 713 . 646 . 8861  bessik _ matchavariani @ enron . net\",0\n\"Subject: re : scifinance  curt ,  thanks very much . yes , the same time will be fine .  so i will be expecting you on nov . 10 at 11 : 30 am .  you can call shirley to get to our area . my office  is at ebl 969 .  zimin lu  713 - 853 - 6388  shirely ,  please mark the time on vince and stinson ' s schedule .  and make an announcement to the group next week .  thanks .  zimin  randall on 10 / 30 / 2000 08 : 54 : 59 am  to : zimin . lu @ enron . com  cc : randall @ scicomp . com , \"\" johansen , david \"\"  subject : re : scifinance  ok . same time ?  zimin . lu @ enron . com wrote :  >  > hello , curt ,  >  > i am just aware that our department head dr . kaminski is going to be out of  > the town  > on friday nov . 3 . if possible , can we reschedule your visit to nov . 10 ?  >  > sorry for any inconvenience , and let me know if this is ok .  >  > zimin lu  > 713 - 853 - 6388  >  > randall on 10 / 19 / 2000 05 : 20 : 40 pm  >  > to : zimin . lu @ enron . com  > cc : randall @ scicomp . com , \"\" johansen , david \"\"  > subject : re : scifinance  >  > zimin . lu @ enron . com wrote :  > >  > > yes , nov . 3 . we do not have to work on saturday , thank you for  > reminding  > > me that .  > >  > > zimin  >  > you are welcome .  >  > shall we say 11 : 30 to allow some time for getting organized ?  >  > i usually use an old fashioned overhead transparency projector if you ' ve  > got one . if they ' ve all been replaced by digital projectors , i can  > bring one .  >  > i ' ll be in touch early that week , to get directions for parking etc .  >  > rgds ,  > curt  >  > - -  > + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +  > | curt randall | scicomp inc . |  > | e - mail : randall @ scicomp . com | 5806 mesa drive |  > | voice : 512 - 451 - 1050 ext 202 | suite 250 |  > | fax : 512 - 451 - 1622 | austin , texas 78731 |  > + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - | - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +  - -  | curt randall | scicomp inc . |  | e - mail : randall @ scicomp . com | 5806 mesa drive |  | voice : 512 - 451 - 1050 ext 202 | suite 250 |  | fax : 512 - 451 - 1622 | austin , texas 78731 | \",0\n\"Subject: re : good morning  john ,  i shall see christie tomorrow and i shall talk to her about  the project .  friday , feb 23 works for me .  vince  \"\" john d . martin \"\" on 10 / 18 / 2000 10 : 00 : 57 am  to : vkamins @ enron . com  cc :  subject : good morning  vince ,  just an update for you and a question . first , i have talked to christie  and corresponded via e - mail . we don ' t have dates to talk to lay , skilling  and fastow as yet but christie is working on it . i will prompt her again  next week .  the second item of business is a question . i want to see if we can move  our meeting in spring ( business education and the new economy workshop )  back a week to friday february 23 rd . one of the attendees has a conference  he wants to attend on march 2 nd . let me know asap if the 23 rd works for  you . i have committments from a number of folks for the workshop and i  think it will be great fun and a wonderful learning experience for us all .  john  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: mgmt 656  here are your latest rosters . let me know if you would like the spreadsheet  with their e - mail addresses as well ! - pam ( 6223 )  - 656 . doc\",0\n\"Subject: chonawee supatgiat / corp / enron is out of the office .  i will be out of the office from 11 / 27 / 2000 until 12 / 12 / 2000 .  i am out of the country and cannot check mails . you can reach me by sending  an e - mail to chonawee @ yahoo . com . otherwise , i will response to your message  when i get back .  thank you .  - chonawee\",0\n\"Subject: kudos  congratulations on your promotion - - well deserved ! !  lucy\",0\n\"Subject: dr . kaminski :  ?  you probably won ' t remember my name , but i am the ph . d . student that took  you back to the airport after your visit to louisiana state university  during the previous academic year .  ?  i received my m . s . in finance in may of last year , and chose to ? remain at  lsu to work on my ph . d . at that time , i intended to pursue a career  in ? teaching and research at a four year college or university . ? in  part ? because of your visit , ? and my ? primary interest in normative research ,  my ? plans have changed . ? while i ? still want to earn my ph . d . , ? i plan to  pursue a career in research in the private sector .  ?  as you know , ph . d . programs in financial economics are designed to train  future academics . ? not surprisingly , they emphasize methods to approach the  types of questions that are of interest to finance academics . ? what did  surprise me , however , was that these areas of interest often had little to  do with what i imagined to be the concerns of practitioners in the real  world . ? as you mentioned in your discussion , academic researchers know  little about what their counterparts in the private sector  ?  in light of my objective , i feel i would get the most out of the remainder  of my doctoral studies if i took some time off to work in the private sector  to see first hand the ? types of challenges i can expect to face as a  researcher in corporate america . ? as my primary interests revolve around the  use of derivatives and financial engineering in corporate risk management ,  enron , as the leading innovator in these areas , would be an ideal place to  learn . ? i was wondering if you were aware of any openings at the company  that might provide me with the exposure i am looking for . ? if there are no  such positions or opportunities , any advice or suggestions you could give  me , ? such as whether or not you think such a \"\" sabbatical \"\" ( for lack of a  better term ) would be helpful , or information on private sector careers for  ph . d . ' s would be greatly appreciated . ?  ?  i am sending a current copy of my vita as an attachment . ? if you have any  questions my e - mail address is sgreen @ finance . lsu . edu . ? thanks for your help  and advice .  ?  ?  cordially ,  ?  ?  ?  ?  shane green  ?  ?  ? ? ? ? ?  - vita . doc\",0\n\"Subject: request submitted : access request for stewart . range @ enron . com  you have received this email because you are listed as an alternate data  approver . please click  approval to review and act upon this request .  request id : 000000000007876  approver : stinson . gibner @ enron . com  request create date : 11 / 20 / 00 2 : 36 : 29 pm  requested for : stewart . range @ enron . com  resource name : \\ \\ enehou \\ houston \\ common \\ research - [ read / write ]  resource type : directory\",0\n\"Subject: ameriflash newsletter  michell vitrella called and wanted to know if the \"\" research group \"\" would  like to submit an article for the next issue of the ena newsletter  ( \"\" ameriflash )  they need to have the article by tomorrow .  thanks !  shirley  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 10 / 24 / 2000  10 : 15 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : michelle vitrella 10 / 24 / 2000 09 : 53 am  to : shirley crenshaw / hou / ect @ ect  cc :  subject : ameriflash newsletter  - - - - - - - - - - - - - - - - - - - - - - forwarded by michelle vitrella / hou / ect on 10 / 24 / 2000  09 : 54 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron north america corp .  from : ena public relations @ enron 10 / 19 / 2000  08 : 25 pm  sent by : enron announcements @ enron  to : all _ ena _ egm _ eim  cc :  subject : ameriflash newsletter  note from mark frevert  with the wide and varied activities of our three organizations , we created  this e - mail newsletter to keep everyone better informed about our various  businesses . i hope you find it informative and more importantly , that you  will use this newsletter to help spread the word about the successes in your  group .  to provide content for future e - mails , contact michelle vitrella in our  public relations group via e - mail or call her at ext . 3 - 9767 . communication  is one of the core enron values and i believe this is a great way to improve  communication across our wholesale businesses .  additionally , i would like to again encourage everyone to take a few minutes  to complete \u0001 & the pulse \u0001 8 survey . this annual survey regarding the work  experience at enron and how we can make it better is an important part of the  two - way communication process at enron . please go to the enron intranet and  type survey . enron . com . it only takes a few minutes , it \u0001 , s confidential and  your comments will help make enron a better place to work .  business highlights  natural gas  middle marketing \u0001 , s biggest trade of the year so far occurred this month . the  significant transaction was a five year , multimillion dollar restructuring  with a subsidiary of formosa plastics , one of the world \u0001 , s largest producers  of polyvinyl chloride .  additionally , continental airlines , the fifth largest us carrier , has hedged  a considerable amount ( 1 . 2 million barrels / month ) of crude oil . winter  nymex hedges were put in place for the undisputed heavyweight chip champ of  the world , frito lay .  pulp & paper  with the acquisition of garden state paper and launch of clickpaper . com ,  enron is creating an efficient spot physical market for pulp and paper  commodities . buyers and sellers will benefit from improved price  transparency and reliability and access to enron \u0001 , s online financial markets .  improved price transparency and the ability to imbed financial derivatives  into physical trading flows will facilitate the growth of enron \u0001 , s trading  business . to date , clickpaper . com has traded over 1 millions tons of pulp  and paper product with a notional value of over $ 675 million .  upstream origination  upstream origination , headed by julie gomez and jean mrha , focuses on natural  gas products to optimize commercial value associated with the natural gas  grid on the continent and in the gulf of mexico ( gom ) . through products such  as storage , electric compression and producer services & outsourcing , ena  creates value for its customers and reconfigures the natural gas  infrastructure to be more efficient . in addition , upstream origination  transactions exploit the unique relationship between development of strategic  assets through sophisticated financing structures and the utilization of the  market information created by those assets .  \u0001 & the pulse \u0001 8 survey results  as of wednesday , october 18 , the total responses to \u0001 & the pulse \u0001 8 from  ena / egm / eim are 689 . this is approximately 30 % of all employees . since our  goal is a 100 % response rate , we have a long way to go ! please take a few  minutes to log on and give enron your thoughts . the pulse is located at  survey . enron . com on the enron intranet page .  if you like competition , here are the results by group :  commercial - origination 131  energy operations 126  risk management and trading 106  other / none of the above 91  bus . analysis & rep . / fin . ops . 90  legal 46  gas assets 37  human resources 30  tax 18  technology / it 14  welcome  transferred into ena / eim / egm  ena - kathleen neal / hr , suzanne kelly / infocentral , tobias monk / finance direct  eim - eric connor / industrial energy group  egm - eric calub / global product mgmt  new hires ena / eim / egm  ena - lance cunningham / cts research , anita dupont / cts research , yvette  hales / gas logistics \u0001 ) east , angela howell / equity trading , farid mithani / power  risk - credit  egm - heather purcell / enron global markets  in the news  \u0001 & no company illustrates the transformative power of innovation more  dramatically than enron . over the past decade enron \u0001 , s commitment to the  invention \u0001 * and later domination \u0001 * of new business categories has taken it from a  $ 200 million old - economy pipeline operator to a $ 40 billion new - economy  trading powerhouse . \u0001 8  from \u0001 & the world \u0001 , s most admired companies , \u0001 8 fortune , monday , october 2  nuggets & notes  \u0001 & what \u0001 , s the message we \u0001 , re trying to get across ? \u0001 8 \u0001 ) ray bowen , coo eim  \u0001 & i \u0001 , m not a micro - manager \u0001 8 - john lavorato , coo ena  \u0001 & make it so , number one \u0001 8 \u0001 ) jeff shankman , coo egm  contest  enron is \u0001 & the most innovative company \u0001 8 based on fortune magazine \u0001 , s most  admired survey . ena public relations is ready to put enron north america ,  industrial markets and global markets to the test . we need your creative  minds to help name the new electronic newsletter we now call ameriflash . put  on your thinking caps and submit your ideas for a new name to  michelle . vitrella @ enron . com . the ena public relations team will narrow the  list to the top ten and then send it to our official judge , mark frevert , to  make the final decision . the winner will receive a gift certificate to any  pappas restaurant . good luck !\",0\n\"Subject: interview with the enron research group  hello kenneth :  nice talking to you this morning ! below is your interview schedule for  monday , oct . 30 th and directions to the enron bldg . . please let me know  if you need any travel arrangements made .  coming from the northwest part of houston , your best bet would be to  take i - 45 into town . there is quite a bit of construction downtown , so you  will probably have to take the mckinney exit from i - 45 ( you will need to  stay in the left lane as you approach town . exit mckinney to smith street ,  take a right on smith street go to andrews street , take a right on andrews  ( the enron bldg . is on the left ) , pass the enron bldg . cross \"\" ruthvan \"\" ( 1 st  stop sign ) and pull into the allen center parking garage ( visitors area on  your right ) . come to the security desk on the lst floor of the enron bldg .  and ask for me . they will call me and i will meet you in the elevator lobby  on the 19 th floor .  monday , october 30 th  9 : 00 am vince kaminski , managing director , research  9 : 30 am zimin lu , director  10 : 00 am vasant , vice president  10 : 30 am krishna krishnarao , director  11 : 00 am paulo issler , manager  11 : 30 am stinson gibner ( he will take you to lunch )  1 : 00 pm molly mcgee ( hr recruiter )  have a safe trip .  regards ,  shirley crenshaw  ( 713 - 853 - 5290 )\",0\n\"Subject: vince kaminski ' s bio  hello amy :  attached please find vince kaminski ' s \"\" bio \"\" . he is working on his  presentation .  thanks !  shirley\",0\n\"Subject: my students  dear vincent ,  i spoke with my students yesterday and they told me they have thought  about coming to see you again , and they think it ' ll be much better in  the future when they are closer to completion of their ph . d . i think this  is a very sound idea , but i wanted to give them anyway the opportunity  to see the actual working environment at a place like enron . they are both  very serious and responsible , so they feel they had better go see you when  they would be in a better disposition to give more of themselves to enron .  they are both superb students and very hard working individuals , so i do  hope you will consider checking them out in the future ( within a year -  year and a half ) .  i will contact you and / or stinson in the future when they are closer  to finishing up .  best ,  carlos\",0\n\"Subject: re : greetings  carlos ,  vince kaminski , the head of our group is quite interested in meeting you and  discussing ways in which we might be able to help your students . i will be  out of the office until october 16 th . you can talk to vince before i get  back or wait to see both of us ; whatever you wish . should you want to  schedule a time to talk with vince , contact his assistant , shirley crenshaw ,  at 713 853 5290 .  i look forward to meeting you in person .  stinson gibner  p . s .  my address at enron is :  p . o . box 1188  houston , tx 77251 - 1188  the physical address is 1400 smith street .  carlos ordonez on 09 / 15 / 2000 03 : 29 : 28 pm  to : sgibner @ enron . com  cc :  subject : greetings  dear stinson ,  i enjoyed our conversation this morning . i would love to meet with your  people to discuss collaborations that will be of mutual benefit to me  and the students and postdocs and your company . i am available on mondays ,  wednesdays or fridays , at just about any time ( early mornings or afternoons  best ) . we ' ll probably need up to a couple of hours .  please send me your address to mail you some info .  best ,  carlos\",0\n\"Subject: re : liz demers research seminar  marc ,  thanks for the invitation .  i shall attend .  vince kaminski  enron  marc epstein ( by way of kathy spradling < spradlin on  01 / 22 / 2001 03 : 41 : 13 pm  to : ( recipient list suppressed )  cc :  subject : liz demers research seminar  dear faculty  bob westbrook and the accounting group has asked me to put together a  continuing series of research workshops in accounting . my intention is to  invite four or five researchers from around the country to present  workshops on topics of interest each year . these are in addition to the  normal recruiting seminars that we will have . the researchers will be a  combination of senior and junior researchers . in addition to adding to our  own research culture , the seminars should help promote the jones school in  the academic accounting community .  my intention is to invite people that are doing very interesting work that  will be of interest to a large portion of the faculty . given the small size  of the accounting group , success of the seminars is dependent in part on  the participation of faculty from other disciplines .  our first seminar will be on february 16 from 10 : 30 - 12 : 00 and will be  conducted by elizabeth demers , a stanford phd and presently an assistant  professor at rochester . her paper is titled \"\" a rude awakening : internet  shakeout in 2000 \"\" and co - authored with baruch lev ( a senior accounting  researcher at nyu ) .  the work should be of particular interest to faculty in finance and those  interested in the valuation of internet companies and the value of  intellectual capital and non financial information . i expect that it will  be a very interesting seminar . liz will arrive thursday late afternoon and  be here all day on friday . i invite any of you who would like to meet with  her or join us for a meal , to please let me know .  i will appreciate it if you could plan on attending at least some of our  seminars . i hope that the topics and presenters will be of interest .  thanks for your support .  marc  marc j . epstein  jones graduate school of management  rice university  6100 main street  houston , texas 77005 - 1892  phone ( 713 ) 348 - 6140  fax ( 713 ) 348 - 5251  email epstein @ rice . edu\",0\n\"Subject: re : [ fwd : stanford meeting ]  vince ,  if that doesn ' t work we can meet on saturday . no problem .  my cellular phone is 650 - 796 - 8163 . i will have it on ,  friday after 11 am .  looking forward to seeing you ,  nick  vince . j . kaminski @ enron . com wrote :  >  > nick ,  >  > the plan is ok , subject to unforeseen complications .  > my flight from london was delayed and i had to spend a night in newark , nj .  > my schedule for today was disrupted and i had to postpone my departure till  > friday  > morning . i should be at san francisco around 10 : 00 a . m . if there is no  > delay .  > i should be able to meet you at noon at your office .  >  > please , confirm the meeting both to my office e - mail address and my private  > address  > ( vkaminski @ aol . com ) . can you give me the phone number  > at which i can reach you on friday if there is a delay ?  >  > look forward to meeting you .  >  > vince  >  > nick bambos on 02 / 24 / 2000 02 : 31 : 38 pm  >  > to : vince . j . kaminski @ enron . com  > cc : bambos @ stanford . stanford . edu  > subject : [ fwd : stanford meeting ]  >  > vince , is this plan ok ? thanks . nick  >  > nick bambos wrote :  > >  > > vince ,  > >  > > friday is fine . we can have lunch at the faculty club - you ' ll  > > be my guest . shall we meet in my office in packard 238 and  > > walk to the faculty club ?  > >  > > nick  > >  > > vince . j . kaminski @ enron . com wrote :  > > >  > > > nick ,  > > >  > > > i shall be in stanford for parents ' weekend ( my son is a junior at  > > > stanford ) .  > > > i plan to be on the campus friday through sunday this week . i shall be  > glad  > > > to meet you anytime during the weekend . what about a lunch on friday ?  > > > i would like to talk to you about enron underwriting research projects  > by  > > > the graduate students  > > > at your department .  > > >  > > > you can reach me at stanford at my son ' s phone number : 650 497 6938 .  > > > please , let me know if you are free for lunch and i shall make the  > > > reservation  > > >  > > > vince  > > >  > > > nick bambos on 02 / 22 / 2000 12 : 54 : 15 pm  > > >  > > > to : vince . j . kaminski @ enron . com  > > > cc : ravi . thuraisingham . enron _ communications @ enron . com ,  > gappy @ stanford . edu  > > > subject : stanford meeting  > > >  > > > dear vince ,  > > >  > > > giuseppe tells me that you will be visiting stanford soon  > > > and you you would like to meet with me . i would definitely  > > > be glad to meet you and talk further .  > > >  > > > would you please let me know about the time of your visit  > > > and your availability to meet . i look forward to seeing you .  > > >  > > > best regards ,  > > >  > > > nick  > > >  > > > ps : giuseppe and amy came back very impressed by you are doing at  > enron !  > > > thanks for hosting them .\",0\n\"Subject: super saturday iv results !  good afternoon !  attached is the list of associate candidates to whom offers have been  extended from super saturday iv . please feel encouraged to call or e - mail to  congratulate them !  let me know if you have any questions ( ext . 3 - 6176 ) .  thank you for all your help !  elizabeth boudreaux  ps - i have also included the \"\" no offer \"\" list , just fyi .\",0\n\"Subject: re : var for enroncredit . com  vince ,  thanks for effort . let me know what we need to do on this end  ted  vince j kaminski  11 / 10 / 2000 01 : 30 pm  to : rick buy / hou / ect @ ect , ted murphy / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect  subject : var for enroncredit . com  rick and ted ,  it looks more like foxes building chicken houses as opposed to foxes guarding  chicken houses .  i shall send a message to bryan saying that the research has to look under  the hood and examine the mechanics  of the model in order to sign off on it . a dog and pony show is not  sufficient . in any case , the decision to approve  the model should not be left to ben and kirstee .  please , let me know what your thinking is .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 11 / 10 / 2000  01 : 31 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  bryan seyfried  11 / 10 / 2000 03 : 20 am  to : vince j kaminski / hou / ect @ ect , steven leppard / lon / ect @ ect  cc : ted murphy / hou / ect @ ect  subject : var for enroncredit . com  vince / steve - - we are going to the board in december to ask for formal  limits . as you know one of the key limits at the board level is value at  risk . to that end , it is imperative that you are comfortable with our  approach for calculating var . we have implemented a third party risk system  which holds all of our positions and are in the process of putting the debt  positions in . the system has a var engine which is being demo ' d by the  vendor today . ben and kirstee are attending the demo and if they find the  technology acceptable , i propose moving forward with implemantion of the  module . pls . let me know if this sounds reasonable and how you would  envision implementing .  thanks\",0\n\"Subject: re : term project :  brian ,  no problem .  vince  \"\" brian corbett nelson \"\" on 04 / 26 / 2001 08 : 15 : 14 pm  please respond to  to :  cc :  subject : re : term project :  vince , i finally joined a team that only had two members . it looks like our  paper will only be about 13 to 15 pages . we were wondering that since our  team is less than half the size of some of the other teams , if you could  possible relax the length requirement ?  thanks ,  brian nelson  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : wednesday , april 11 , 2001 3 : 54 pm  to : nelsonb @ rice . edu  subject : re : term project :  brian ,  the last class + plus a few days ( depending on when i have  to submit the grades ) .  vince  \"\" brian corbett nelson \"\" on 04 / 11 / 2001  03 : 35 : 14 pm  please respond to  to :  cc :  subject : re : term project :  mr . kaminski ,  i had an interview last thusday in dallas and could not attend class . did  you set a project deadline ?  thanks ,  brian nelson  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : wednesday , april 11 , 2001 3 : 22 pm  to : isranir @ rice . edu ; demianen @ rice . edu ; tbal 93 @ yahoo . com ;  maue @ rice . edu ; loughrid @ rice . edu ; jblantonjr @ yahoo . com ;  gjohnson @ rice . edu ; emchombo @ rice . edu ; nazareth @ rice . edu ;  vanstone @ rice . edu ; ganguzza @ rice . edu ; nelsonb @ rice . edu ;  sssmith @ rice . edu ; wheelock @ rice . edu ; westmore @ rice . edu ;  gaudette @ rice . edu ; otaylor @ rice . edu ; dikeman @ rice . edu ; jettke @ rice . edu ;  litton @ rice . edu ; chilkina @ rice . edu ; helms @ rice . edu ; wankhade @ rice . edu ;  monfan @ rice . edu ; kostya @ rice . edu ; pcp @ rice . edu ; yueguo @ rice . edu ;  nlwbio @ rice . edu ; zhangn @ rice . edu ; rishad @ rice . edu ; yoshiura @ rice . edu ;  howard @ rice . edu ; dayangd @ rice . edu ; wuwei @ rice . edu ; so @ rice . edu ;  wooddy @ rice . edu ; lamas @ rice . edu ; tbalestrery @ houston . rr . com ;  hingoran @ rice . edu ; planck @ rice . edu  cc : vkaminski @ aol . com ; vince . j . kaminski @ enron . com ;  jason . sokolov @ enron . com  subject : term project :  this is the list of projects for the members of the \"\" quant \"\" team .  if you are working on different project , please , ignore this message .  please , develop in a spreadsheet solutions / examples for the following :  1 . black - scholes formula  2 . black ' s formula  3 . develop a spreadsheet to simulate price trajectory using :  a . gbm  b . gbm + jump ( formula 2 . 16 in the book , figure 2 . 7 )  c . mean reversion + jump ( formula 2 . 17 , figure 2 . 8 )  4 . schwartz single factor model ( formula 6 . 12 )  5 . develop models corresponding to the figures 7 . 1 , 7 . 3 , 7 . 5 , 7 . 6 , 7 . 8  vince\",0\n\"Subject: resume for chris pernoud  molly ,  we want to hire this very bright young man as a part - time employee ,  reporting to mike roberts . mike will be contacting you regarding the details .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 24 / 2001  10 : 01 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" chris pernoud \"\" on 01 / 24 / 2001 09 : 21 : 11 am  please respond to  to : \"\" michael roberts \"\" , \"\" vincent kaminski \"\"  , \"\" shirley crenshaw \"\"  cc :  subject : resume for chris pernoud  gentlemen ,  thank you for your time and consideration yesterday . i am excited about  working for enron and gladly accept your offer .  to reiterate our consensus today , i will be working an average of 10 hours a  week , mostly early mornings from around 5 to 7 . another option for me might  be to work mondays , wednesdays , and fridays from around 5 to 8 or 9 .  toni graham was my contact in hr six months ago . she is probably more  familiar with my previous file than anyone else . if you have any questions  or concerns please don ' t hesitate to contact me .  thank you ,  chris pernoud  = = = = = = = = = = = = = =  christopher pernoud  7315 brompton rd .  apt . 231 b  houston , tx 77025  ( 713 ) 349 - 8963  cgpl @ cornell . edu  - chrispernoud . doc\",0\n\"Subject: update  vince ,  a quick update on job candidates :  1 ) nelson neale : relayed your request to norman , and told nelson that an  offer is in progress . did not mention specific numbers to him .  2 ) charles shen : left a message for him that we would get back to him next  week with details of an offer .  3 ) interviewed by phone tom barkley at thunderbird ( brought to our attention  by enron recruiters there ) . he looks very interesting so i am trying to  schedule a visit to enron for him . he will finish t - bird in december ( mba )  and has a bachelors with honours in mathematics .  have a great weekend .  stinson\",0\n\"Subject: re : 12 / 17 churn - - eb 29 to ebl 9  job done !  - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 12 / 22 / 99 05 : 59  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  lupe rodriguez @ enron  12 / 21 / 99 04 : 08 pm  to : move - team / epsc / hou / ect @ ect  cc : kevin g moore / hou / ect @ ect , dolores sustaita / epsc / hou / ect @ ect , janelle  duree / hou / ect @ ect  subject : re : 12 / 17 churn - - eb 29 to ebl 9  i have guys up there now to complete this request . we don \"\" t move the plants  but we will this time . any thing else just let me know . lupe  move - team @ ect  12 / 21 / 99 02 : 26 pm  sent by : linda richard @ ect  to : lupe rodriguez / corp / enron @ enron  cc : kevin g moore / hou / ect @ ect , dolores sustaita / epsc / hou / ect @ ect , janelle  duree / hou / ect @ ect  subject : 12 / 17 churn - - eb 29 to ebl 9  hi lupe !  there are approximately 25 boxes , several small file cabinets and 2 plants ( a  3 ft and a 9 ft plant ) that are ready to be moved from 29 to 19 . this is part  of the 29 th floor 12 / 17 churn .  the items are located in various offices of the \"\" fishbowl \"\" area on the 29 th  floor . they are labeled with the 19 th floor designated location .  there are 2 larger file cabinets that are located in the hallway .  the 2 plants need to be taken to ebl 944 .  is there anyway to work this in your schedule on tommorrow ?  thanks  linda\",0\n\"Subject: customer profiling meeting - amendment  bob shults is scheduled to be in atlanta , ga on the 17 th of march and would  like to reschedule the \"\" customer profiling meeting \"\" , to friday , march 24 th at  1 : 30 p . m . , location to be announced . if you are unable to attend please let  me know .  lydia  3 - 9975\",0\n\"Subject: gt symposium on qcf , april 7  please share the following announcement with your associates .  georgia institute of technology symposium on  quantitative and computational finance  friday , april 7 th , 2000  auditorium of marc bldg . on the georgia tech campus  sponsored by  the dupree college of management ,  the college of engineering school of industrial and systems engineering ,  and the college of sciences school of mathematics .  program :  12 : 30 - 12 : 40 welcome  michael thomas , provost of georgia tech  12 : 40 - 12 : 45 introduction of the first speaker  12 : 45 - 1 : 30 walter j . muller iii , bank of america  \"\" interest rate models for pricing fixed income  securities \"\"  1 : 30 - 1 : 40 q & a and introduction of the second speaker  1 : 40 - 2 : 25 steven l . allen , chase manhattan bank  \"\" management of market risk - - what can we learn  from the experiences of 1997 and 1998 ? \"\"  2 : 25 - 2 : 45 break  2 : 45 - 2 : 50 introduction of the third speaker  2 : 50 - 3 : 35 billy thornton , invesco capital management  \"\" optimal portfolio construction and risk control \"\"  3 : 35 - 3 : 45 q & a and introduction of the fourth speaker  3 : 45 - 4 : 30 ron dembo , algorithmics , inc .  \"\" measuring the risk of a large financial institution \"\"  4 : 30 - 4 : 40 q & a and introduction of the fifth speaker  4 : 40 - 5 : 25 alexander eydeland , southern company energy marketing l . p .  \"\" energy derivatives \"\"  5 : 25 - 5 : 40 closing / extra time  5 : 45 - 6 : 30 reception  short biographies of the speakers are given below .  registration :  there is no charge for attendance at the symposium .  however , space is limited , so we do encourage you to  let us know that you will be attending . please send the  following information before wednesday , april 5 , 2000 .  conference : \"\" qcf \"\"  first name :  last name :  company / institution :  department :  address :  city :  state / province :  zip / postal code :  phone :  fax :  email :  to  robert kertz  e - mail : kertz @ math . gatech . edu  fax : 404 - 894 - 4409  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  lodging :  you can make your own hotel arrangements with one of the many hotels in  town . some hotels close by tech ' s campus are :  holiday inn express ( 404 - 881 - 0881 ) ,  days inn , 683 peachtree street ( 404 - 874 - 9200 ) ,  renaissance hotel , w . peachtree street ( 404 - 881 - 6000 ) ,  marriott courtyard , 1132 techwood drive ( 404 - 607 - 1112 ) , and  regency suites , 975 west peachtree street ( 404 - 876 - 5003 ) .  in all cases , ask about the georgia tech rate .  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  location :  the conference will be held in the first floor auditorium of the  manufacturing research center ( marc bldg . ) , 813 ferst drive ,  on the georgia tech campus in atlanta , georgia .  map :  a map of campus can be found on the web at http : / / gtalumni . org . the  conference is in the manufacturing research center ( # 126 on the map ) ,  which is the rectangular building directly north of the groseclose  building ( # 56 on the map ) and the instructional center ( # 55 on the map ) .  directions :  ( additonal directions can be found at the website  associated with the marc building )  by marta : take the north - south marta train ( $ 1 . 50 ) to the north avenue  exit . the station is on the northeast corner of west peachtree and north  avenue . walk west along north avenue past the varsity and over the  expressway . after the football stadium , take the steps up and enter the  campus . walk diagonally across the campus and ask some students where to  find the manufacturing research center .  by car , if you are entering atlanta from i - 20 or while traveling north on  i - 75 or i - 85 :  i - 75 and i - 85 merge in atlanta to form i - 75 / 85 . ( if you are on i - 20 , go  north on i - 75 / 85 in the center of atlanta . ) exit the expressway at exit  100 which is the spring street and west peachtree street exit . turn left  at the second light onto west peachtree street . turn left at the first  light onto north avenue . travel west on north avenue and follow the signs  to the \"\" center for the arts \"\" . these signs will ask you to turn right onto  tech parkway which is the second traffic light along the gt campus , then  turn right at the first light , and then you are forced to turn either  right or left onto ferst drive . now go to the parking directions section  below .  by car , if you are entering atlanta while traveling south on i - 75 or  i - 85 :  i - 75 and i - 85 merge in atlanta to form i - 75 / 85 . exit the expressway at  exit 100 which is the north avenue exit . turn right at the top of the  ramp onto north avenue . travel west on north avenue and follow the signs to  the \"\" center for the arts . \"\" these signs will ask you to turn right onto tech  parkway which is the second traffic light along the gt campus , then turn  right at the first light , and then you are forced to turn either right or  left onto ferst drive . now go to the parking directions section below .  parking directions :  turn right onto ferst street , then turn left into the student center  driveway which is the second driveway on your left . there is a fee of $ 4 .  walk north past the instructional center to the manufacturing research  center .  for further information , please contact  professor robert kertz  by email at kertz @ math . gatech , edu ,  by fax at 404 - 894 - 4409 ,  by phone at 404 - 894 - 4311 or  by regular mail at  professor robert kertz  school of mathematics  georgia institute of technology  atlanta , ga 30332 - 0160 .  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  biographies of speakers  steven l . allen  managing director , market risk management for derivatives  chase manhattan bank , new york  steve allen is a managing director in the market risk management group of  the chase manhattan bank , heading the derivatives product team . he began  his career in 1967 with chase , where his assignments included deputy director  of management science and manager of modeling and systems for the asset -  liability committee . from 1981 through 1991 , he was director of research for  chase ' s trading activities , in charge of the development of models and  analytics . his risk management career began in 1991 with the north american  division of union bank of switzerland , where he was market risk manager for  fixed income products . he took his current position in 1995 with chemical  bank , rejoining chase by benefit of merger .  steve studied mathematics as an undergraduate at columbia college and as a  graduate student at new york university ' s courant institute . he currently  teaches risk management in the masters program in mathematics in finance at  courant . he is co - author of \"\" valuing fixed income investments and derivative  securities \"\" .  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  ron s . dembo  president and chief executive officer  algorithmics , inc .  toronto  ron dembo is president and chief executive officer of algorithmics , inc . ,  a leading provider of innovative enterprise - wide financial risk management  software , which he founded in 1989 . before founding algorithmics ,  he created and managed a group at goldman sachs responsible for  fixed income optimization modeling . prior to that , he held several  positions in academia . from 1976 to 1986 , he served as an assistant and  associate professor of operations research in computer science at  yale university , and as a visiting professor for operations research at  the massachusetts institute of technology .  dr . dembo obtained a ph . d . in operations research from the university of  waterloo , ontario ( 1975 ) . he has written and published over 50 technical  papers on finance and mathematical optimization and holds two patents  for portfolio replication . his latest book on risk , \"\" seeing tomorrow :  weighing financial risk in everyday life , which he co - authored with  andrew freeman , was published in may 1998 by wiley in the u . s . in october  of 1998 , dr . dembo was honored with ernst model review ; and  price verification .  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  billy thornton  director of quantitative research  invesco capital management  1360 peachtree street  atlanta , ga 30309  billy thornton is a partner at invesco and director in the  quantitative research group .  billy began his career in 1979 as a management consultant at  andersen consulting , before joining bellsouth as a regulatory  economic analyst in 1981 . billy next moved into academia as a  finance professor teaching corporate finance for the undergraduate ,  graduate and executive programs at goizueta school of business ,  emory university . while a professor at emory , he spent a year as  a visiting scholar at the federal reserve bank of atlanta researching  special projects . continuing to teach corporate finance , billy joined  clark atlanta university in 1995 . during this time , he also worked as  a consultant with watson wyatt worldwide performing asset allocation  consulting , and executive education and training .  billy joined invesco in 1998 to head invesco ' s department of quantitative  research . his team of analysts performs statistical modeling , researches  investment strategies , and sets risk management controls .  billy earned a b . s . in mathematics from clark atlanta university in 1977  and an m . s . in statistics from carnegie - mellon university in 1979 . he  graduated from harvard university , earning a ph . d in financial economics  in 1989 jointly from the harvard business school and harvard department  of economics , and also receiving his m . s . in business economics in 1987 .  billy was a member of both leadership atlanta , class of 1994 , and  leadership georgia , class of 1996 . \",0\n\"Subject: request submitted : access request for amitava . dhar @ enron . com  you have received this email because the requester specified you as their  manager . please click  approval to review and act upon this request .  request id : 000000000011185  request create date : 12 / 21 / 00 4 : 20 : 10 pm  requested for : amitava . dhar @ enron . com  resource name : unlisted application / software  resource type : applications\",0\n\"Subject: hello  dear vince ,  i just wanted to let you know that i ' m working here for the summer . i ' m with  ctg ( commercial transactions ) in the industrial services group on the 30 th  floor . i ' m excited to be back at enron and look forward to a great summer .  i ' m also happy to know that it is working out with the new members who have  joined research . i hope you had a very nice memorial day weekend and an even  better birthday . happy ( belated ? ) birthday !  warmest regards ,  van\",0\n\"Subject: i wanted to give you some feedback . elena chilkina has gone way above the  call of duty to help me on a very important research project . i am trying to  conduct some research on the global fuels market for jeff shankman . when i  mentioned this to elena , she was extraordinarily helpful in helping me  compile some very useful information on very short notice . she was able to  quickly define the scope of the project and gather some pertinent  information . because this was not one of her regular assignments , she put in  many extra hours to help us out on this project .  i just wanted to let you know about a job well done .  regards ,  craig\",0\n\"Subject: re : fw : stanford or - summer intern  this guy has basic quant skills , etc . but at ebs we would need interns  possible from mba schools , not phd . i think he is a summer intern fit for  enron research and we can loop him into ebs research as we need help ( which  is likely ) .  ravi .  vince j kaminski @ ect  02 / 29 / 00 08 : 23 am  to : stinson gibner / hou / ect @ ect  cc : ravi thuraisingham / enron communications @ enron communications , vince j  kaminski / hou / ect @ ect  subject : fw : stanford or - summer intern  stinson ,  should we get him as well ?  it seems he has the right skills .  we might have maxed out on the  number of summer interns through  the a / a program . we would have to  hire him directly .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 29 / 2000  08 : 20 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" shikhar ranjan \"\" on 02 / 28 / 2000 02 : 31 : 39 pm  to : ravi _ thuraisingham @ enron . net  cc : vince j kaminski / hou / ect @ ect  subject : fw : stanford or - summer intern  hi ravi :  i had sent an email about a week back with my resume for the summer  internship . i think the address i sent it to was not correct , so i am  resending it . i will also tell the others in the group to send there resumes  to you . thanks .  regards ,  shikhar  - - - - - - - - - - - - - - - - - - - - - - - -  shikhar ranjan  phd student  management science & engineering  stanford university ca  ( 650 ) 497 5762  - - - - - original message - - - - -  from : shikhar ranjan  to :  cc :  sent : sunday , february 20 , 2000 5 : 24 pm  subject : stanford or - summer interns  > hi ravi :  >  > please find attached my resume for the summer internship program . i  > apologize for the delay . we actually lost your contact info . please let me  > know if you will need any additional information and / or a cover letter  > besides the resume and i can send it right away .  >  > thanks  >  > regards ,  > shikhar  > - - - - - - - - - - - - - - - - - - - - - - - -  > shikhar ranjan  > phd student  > management science & engineering  > stanford university ca  > ( 650 ) 497 5762  >  - resumeo 0 - ene . doc\",0\n\"Subject: auctions with an incumbent ' s right of first refusal  shelley ,  my colleague , clayton vernon , who has a background in economics , wrote a  short summary of arguments  against the rofr .  we are working on the second approach to the problem : we try to come up with  a numerical estimate of the  value of this option . the fact that an incumbent shipper has this option has  distributional consequences :  he has something of value he never paid for . having a numerical estimate of  the value of this option  could help to argue against it . the value of such an option is case specific ;  so we shall rather  produce a template you can use for valuation case by case .  vince kaminski  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 20 / 2000  08 : 34 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  clayton vernon @ enron  01 / 20 / 2000 08 : 29 am  to : vince j kaminski / hou / ect @ ect  cc : stinson gibner / hou / ect @ ect , zlu / hou / ect @ ect  subject : auctions with an incumbent ' s right of first refusal  vince -  here is an essay on the issue you are discussing :  the adverse economic impact of \"\" rights of first refusal \"\"  an option to \"\" first refuse \"\" to match a competitor ' s offer is a restraint of  free trade and an impediment to efficiency in the marketplace . this economic  conclusion is unambiguous .  if an \"\" incumbent \"\" has the right to match an offer made by a competitor , for  an item or service of value , then few competitors will invest the time and  expense necessary to prepare and submit offers , those offers will be lower  than they would have been otherwise , and the contract will often be awarded  to an inefficient incumbent instead of a more efficient challenger .  in a traditional auction , where all bids are sealed and the item up for  auction is awarded to the highest bidder , we can safely predict the item will  be awarded to the bidder who values it the most , at a price reflecting the  full value of the item up for auction . this is the efficient result in a  market economy , because the financing of the high bid reflects resources  freely allocated to the high bidder . if the auction has open bids , we can  again safely predict the item to be awarded to the correct bidder , albeit at  a slightly lower price to the donor of the item since the bidder with the  highest valuation can simply increment by an infinitesimal amount the  second - highest valuation .  now , in a modified auction , where an incumbent bidder has the right to match  the highest bid and retain the item for himself , each competing bidder must  justify his own due diligence and bid preparation expenses against the  following , and likely , scenario : the incumbent does not spend himself for due  diligence , but instead uses these savings to help finance his matching the  top bid from a competitor .  simply put , the incumbent with a \"\" right of first refusal \"\" can be safely  predicted to simply match their competitor ' s bid by \"\" rule of thumb . \"\" but the  incumbent ' s valuation of the item up for auction can be less than the  valuation of the competitor , by the amount of the due diligence and  administrative expenses . and , the incumbent firm expropriates the expertise  of his competitors , not only in their valuations themselves , a nontrivial  financial exercise , but in any operational details required to be submitted  along with the bid .  furthermore , in an esoteric concept known as the \"\" winner ' s curse , \"\" a bidder  realizes that if his bid actually prevails , if the incumbent fails to match  it , he almost certainly overbid .  given this , most competitors will not even bother to bid in an auction when  an incumbent has the right of first refusal , and those that submit a bid do  not rationally invest the time , expense and expertise necessary ; they may  just \"\" fire off \"\" a \"\" low - ball \"\" bid . after all , in almost every conceivable  \"\" state of the world \"\" arising from the auction the competitors expect to lose  money . so , the incumbent almost always retains the contract at a  below - market price , despite the incumbent not necessarily placing the highest  value on the contract because the incumbent cannot put the contract to its  most efficient use .\",0\n\"Subject: re : next step  al ,  i have spoken with mark lay and he is interested .  even if we cannot help you here in enron , he may be able  to put you in touch with other cv groups in town .  please , call him directly and give my name as a reference .  ( 713 ) 853 - 7408  good luck .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 24 / 2001  02 : 20 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  01 / 24 / 2001 11 : 21 am  to : al arfsten @ enron  cc :  subject : re : next step  al ,  i have called mark lay and left a message on his voice mail .  vince  al arfsten on 01 / 24 / 2001 11 : 16 : 25 am  to : vkamins @ enron . com  cc :  subject : next step  vince : your suggestion to introduce the concept discussed with one of  the lays is welcomed . i hope that this would mean that you would remain  involved at some level . the design of the model and its potential  economics could be key to how worthy the effort might be . enron could  be an ideal environment from which to the concept enhancement through to  commercialization could be successfully accomplished . please  confidentially share matters as you think best and advise me of the  interest generated . i am ready to meet there at your building or  elsewhere that is appropriate . best regards , al arfsten 713 965 2158\",0\n\"Subject: re : london contact number  hi anita ,  how are you ? i arrived yesterday late morning from the london gatwick airport . due to rush hour traffic , etc . it took a while to get into the city to the hotel .  also , due to may day ( may lst ) protests / riots , etc . , the hotel management strongly recommended that we remain in the hotel .  however , i am in the office today . i can be reached via email or via telephone at 44 ( 0 ) 207 783 5647 .  take care ,  iris  - - - - - original message - - - - -  from : dupont , anita  sent : tuesday , may 01 , 2001 5 : 23 pm  to : mmumford @ enron . com  cc : mack , iris ; crenshaw , shirley  subject : i . m . mack 30 apr - 15 may * * plse review for accuracy * * agent ce / ce booking ref x 7 w 882 mack / iris eb 1972 enron corp  importance : high  see iris ' s itinerary below . i thought her initial plan was to land this morning and come in to enron house in early afternoon . see itinerary for phone number of hotel . let me know if i can help in any  other way . thanks . anita  service date from to depart arrive  continental airlines 30 apr houston tx london gatwick 350 p 655 a  co 34 j mon g . bush iah gatwick 01 may  terminal dom terminal s  dinner / snack non stop  reservation confirmed 9 : 05 duration  vegetarian meal , non - dairy confirmed  aircraft : boeing 777 - 200 / 300  hotel 30 apr athenaeum hotel and apartments  11 may 116 piccadilly  london england , wlv obj  united kingdom  telephone : 44 - ( 0 ) - 207 - 499 - 3464  fax : 44 - ( 0 ) - 207 - 493 - 1860  confirmation : claire 25 apr  rate : rac gbp 270 . 00 per night  guarantee given  prereg actual arr lmay 655 am apartment  to avoid billing cancel by 6 pm 24 hrs prior  continental airlines 11 may london gatwick houston tx 1200 n 415 p  co 5 j fri gatwick g . bush iah  terminal s terminal dom  lunch / snack non stop  reservation confirmed 10 : 15 duration  vegetarian meal , non - dairy confirmed  aircraft : boeing 777 - 200 / 300\",0\n\"Subject: panel session at 2001 pes summer meeting  vince and vasant ,  i was asked by one of my advisors to be on a panel for the summer power  engineering society . i stated that i couldn ' t divulge any information on  modeling efforts at enron but could give a general overview and cover my  dissertation work . he stated that he understood and other companies had  expressed similar concerns .  i guess that i need your ok to attend this presentation and present .  thanks ,  lance  - - - - - - - - - - - - - - - - - - - - - - forwarded by lance cunningham / na / enron on 03 / 27 / 2001  10 : 24 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" martin l . baughman \"\" on 03 / 27 / 2001 08 : 59 : 35 am  to : shams . siddiqi @ lcra . org , harry . singh @ neg . pge . com ,  lance . cunningham @ enron . com , rosenberg @ hotmail . com , \"\" camporeale , robert \"\"  cc : baran @ eos . ncsu . edu , liu @ ee . washington . edu  subject : panel session at 2001 pes summer meeting  gentlemen :  thank you for agreeing to participate on the panel . to comply with the  quality control requirements of the society i must request from each of you  the following :  1 . name , affiliation , and title of presentation as you want it listed in  program .  2 . a 2 - 6 summary of the presentation . these summaries will appear in the  proceedings . many speakers simply provide a few powerpoint slides that  contain this information , or alternatively , a few paragraphs of text  summarizing the points they intend to make in their presentations .  please provide this information to me by april 2 .  here is the status of the panel so far .  title : power trading and asset management : tools of the trade  requested day and time : wed july 18 morning session  summary  a number of sophisticated anlytical tools are used in support power trading  and asset management activities . these include various time - series ,  stochastic , and physical models of quantities and prices , portfolio and  risk analysis tools , and other risk management tools . in this panel , the  analytical approaches are surveyed and discussed .  panelists :  lance cunningham / confirmed  manager , research  enron north america  micahel rosenberg / confirmed  txu  shams siddiqi / confirmed  lcra  harry singh / confirmed  director , market economics  pg & e national energy group  robert camporeale  coned energy  panel organizer and chair :  martin l . baughman  ece department  the university of texas at austin  remember , by april 2 .  marty  martin l . baughman  ece dept . ens 348  the university of texas at austin  austin , tx 78712  ph . ( 512 ) 471 - 5376  fax ( 512 ) 471 - 5532\",0\n\"Subject: houston trip  vasant ,  so sorry for the name mix up . . . it is you , not \"\" vance \"\" , another guy on my pr  team , who is to be included in this . . . so sorry . . i ' d just gotten off the phone  with \"\" vance \"\" before i wrote this . i ' m writing this from  \"\" vacation - day - at - my - house \"\" . . which i can tell , the \"\" vacation \"\" part , i should  start taking literally !  happy holidays !  - - christie .  - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 12 / 18 / 2000  02 : 52 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  christie patrick  12 / 18 / 2000 02 : 45 pm  to : fap @ enron , melinda  mccarty / corp / enron @ enron , cindy derecskey / corp / enron @ enron , michael b  rosen / hou / ect @ ect , jeffrey a shankman / hou / ect @ ect , vince j  kaminski / hou / ect @ ect  cc : clay degiacinto @ enron , deepa  mallik @ enron , dennis feerick  @ enron , edson otani  @ enron , gustavo palazzi  @ enron , \"\" heather n . thorne ( e - mail ) \"\"  @ enron , jack rejtman  @ enron , jaideep singh  @ enron , jason cummins  @ enron , joshua leventhal  @ enron , kim whitsel  @ enron , \"\" louis a thomas ( e - mail ) \"\"  @ enron , murat camoglu  @ enron , nick levitt  @ enron , omar bassel  @ enron , pat henahan  @ enron , ram vittal  @ enron , steve lessar  @ enron , tulika bhalla  @ enron , vincent chen  @ enron , weigelt  @ enron , fap  @ enron , \"\" ' christie . patrick @ enron . com ' \"\"  @ enron , \"\" ' vkamins @ enron . com ' \"\"  @ enron , piazze @ wharton . upenn . edu  subject : houston trip  hello everyone !  regarding the tiger team research project houston trip , these are the rsvp ' s  i ' ve received :  jaideep singh  dennis feerick  kim whitsel \"\" and team 1 \"\"  ram vittal  heather thorne  pat henahan  vincent chen  jack rejtman  deepa mallik  josh leventhal  edson otani  omar bassal  stephen lessar  clayton dediocinto .  note : heather and jack have requested to stay in houston until sunday  ( expenses other than air fare , beyonfd friday at enron will be individually  borne ) .  donna ,  would you please review this list , add the individual names of \"\" team # 1 ) ,  add any additional faculty , t . a . ' s etc , that will be attending , and returnm  this list to me and my assistant , \"\" melinda mccarty \"\" who will begin the  arrangements . also , if others would prefer sunday returns to phily , on the  same terms offered heather and jack , please so indicate no later than  tuesday , dec . 20 . please inform donna , who will then prepare and forward to  me and my assistant melinda ( e - mail address above ) one complete , confirmed  list of attendees . the plan will be to leave phily on thurs afternoon ,  arrive late aft thursday , dinner at churrasco ' s south america restaurant  thursday evening with me , vince , vance , jeff shankman , and possibly a few  others from enron .  hotel thursday evening and ground transportation through return to airport  will be arranged by enron .  friday will be reserved for an enron tour , and individual meetings the teams  would like to set up with members from variuous business units  return will be scheduled for early fri evening , except for those electing to  stay through sunday . again , except for return to airport and airfare ,  expenses beyond friday afternoon will be borne by each respective student  ( though we encourage you to stay and look around this great city of houston ! ) .  thanks donna , for your immediate assistance with this - - vinve , vance , jeff and  i are excited about the trip ! !  regards !  - - christie .\",0\n\"Subject: re : research dept contact  please contact stinson gibner ( vp ) , vince kaminski ( md of enron research ) or  one their technical staff who did the model development : samer takriti or  chonawee supatgiat . as i mentioned in our meeting , enron research is staffed  with some of the best risk model developers and ebs has engaged them to  develop optimization tools for trading and customer pricing activities . phil  markwart has been our optical engineering expert who helped specify the  requirements for the research group .  ravi .  p . s . for those who don ' t know dan , he is part of the team ( dan please correct  me if i am wrong here ! ) that will be responsible for developing a trading  system for bandwidth trading org . he has also began to look at the  optimization needs of the system .  dan cummings  07 / 10 / 00 09 : 33 am  to : ravi thuraisingham / enron communications @ enron communications  cc :  subject : research dept contact  ravi , who ' s working on the optimization engine you mentioned friday ?  dan\",0\n\"Subject: got book and papers , thanks !  the fedex people dropped them off last  week , and i ' m happily reading away .  thanks !  keith baggerly\",0\n\"Subject: re : interviews  marshall ,  sorry for a delay in responding to you .  my hr people were asked to get in touch with you re  the candidates .  vince  marshall brown on 03 / 27 / 2001 02 : 36 : 12 pm  to : \"\" ' vince kaminski ' \"\"  cc :  subject : interviews  vince ,  i had two candidates speak with zamin lu on 3 / 14 / 01 and 3 / 16 / 01 .  ( renshi zhang and bill koures respectively ) . i know you were in london last  week . if you could please give me some feedback ( either positive or  negative ) as soon as possible , i would appreciate it .  regards ,  marshall brown  vice president  robert walters associates  phone : 212 - 704 - 0596  fax : 212 - 704 - 4312  marshall . brown @ robertwalters . com  caution : electronic mail sent through the internet is not secure and could  be intercepted by a third party .  this email and any files transmitted with it are confidential and  intended solely for the use of the individual or entity to whom they  are addressed . if you have received this email in error please notify  the system manager .  this footnote also confirms that this email message has been swept by  mimesweeper for the presence of computer viruses . \",0\n\"Subject: authorization  robert ,  please find below the authorization for the studay , as we had spoken about  during our conference call earlier today .  authorization  i authorize henwood energy services , inc . , to provide for the hourly rates  stated in the proposal dated 29 dec . 2000 , an analysis of the india  electricity system and an evaluation of the dabhol plant despatch . the  results of the study and information provided by enron shall be considered  confidential and will be subject to a confidentiality agreement to be  prepared by enron and submitted to henwood .  sandeep kohli ,  vice president ,  enron .\",0\n\"Subject: summer opportunity  vince :  i did get your phone message about the summer , but i still haven ' t heard from  enron about an offer for summer employment . i do have other offers with  other energy companies that i must respond to this week . could you let me  know as soon as possible if an offer will be made to me .  sincerely ,  kimberly whitsel  wharton mba candidate 2002\",0\n\"Subject: request submitted : access request for youyi . feng @ enron . com  you have received this email because you are listed as an alternate data  approver . please click  approval to review and act upon this request .  request id : 000000000025307  approver : stinson . gibner @ enron . com  request create date : 3 / 23 / 01 9 : 23 : 49 am  requested for : youyi . feng @ enron . com  resource name : \\ \\ enehou \\ houston \\ common \\ research - [ read / write ]  resource type : directory\",0\n\"Subject: re : enron cover letter & resume for dave gershenson  vince , thanks for your very prompt email response . i passed your message  along to dave .  thanks also for a great dinner and day of meetings last week . i really  enjoyed the chance to learn more about enron , and was very impressed with  everyone i met .  look forward to working with you these next few months ! !  cheers ,  vincent  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : wednesday , january 17 , 2001 2 : 39 pm  to : chenvinc @ wharton . upenn . edu  cc : vince . j . kaminski @ enron . com  subject : re : enron cover letter & resume for dave gershenson  vincent ,  i have forwarded the resume to our analysts / associate pool with  a recommendation to accept david as a summer intern .  i expressed interest in taking him into my group . he may , of course ,  work for a different unit of enron . it ' s up to him and i shall not be  offended  if he would like to go into trading or deal origination .  vince\",0\n\"Subject: re : summer internship  vince ,  we have not started our spring hiring yet . however , we will review and let  him know we have an interest and tell him when we will be interviewing on  campus . thanks  althea and shelly ,  please keep track of his resume so that he is considered for a summer  position when we begin the spring recruiting . thanks  vince j kaminski @ ect  11 / 15 / 2000 07 : 39 am  to : charlene jackson / corp / enron @ enron  cc : vince j kaminski / hou / ect @ ect  subject : summer internship  hello charlene ,  i am forwarding you a resume of a student from berkeley .  we would like very much to have him as a summer intern with my group .  please , let me know if your program can accommodate him .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 11 / 15 / 2000  07 : 44 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  ezequiel luis on 11 / 13 / 2000 04 : 23 : 23 pm  to : vkamins @ enron . com  cc :  subject : summer internship  dear mr . kaminski  i am currently pursuing the m . s . in ieor at uc berkeley . i attended the  speech you gave some weeks ago .  i am interested in summer internship positions available in enron . you will  find enclosed my resume .  sincerely ,  ezequiel luis  este mensaje fue enviado desde http : / / commcenter . infosel . com  internet gratis  http : / / www . terra . com . mx / terralibre  - resume elm . doc\",0\n\"Subject: journal of applied corporate finance  vince :  i hope you received the winter issue of the jacf . your article was great .  many of the issues and themes raised in that piece can be expanded upon . the  same holds for the round table discussion which included gene humphrey .  finally . i would love to get your assessment of the real option article i  wrote with gordon sick .  best regards ,  john l . mccormack  svp , stern stewart & co .  212 - 261 - 0740  note : the information contained in this message may be privileged and  confidential and protected from disclosure . if the reader of this message is  not the intended recipient , or an employee or agent responsible for  delivering this message to the intended recipient , you are hereby notified  that any dissemination , distribution or copying of this communication is  strictly prohibited . if you have received this communication in error , please  notify us immediately by replying to the message and deleting it from your  computer . thank you . stern stewart & co .\",0\n\"Subject: follow - up on captive generation  vince / stinson ,  please find below two attachemnts . the excell spreadsheet shows some  calculations on the savings from using dabhol power as against a diesel  genset operating at a higher heat rate . there is also a differential in  price of diesel , as against naphtha used by the plant . i have taken data  from the septemeber bill of dpc . we do not want to give the actual numbers  to the press , since they ar likely to have a field day with the 6 cent / kwh  energy price of dabhol that is reflected there .  the seond attachement ( word ) has the wordings that i think we can send in to  the press . please review the calculations and the note , ad if you find this  satisfactory , please forward to jeff / s .  i am availabel on mobile if you have questions o clarifications . the number  ( 610 mw ) for total captive generation in maharashtra ) is taken from mohan  gurunath ' s presentation on this .  regards ,  sandeep .\",0\n\"Subject: re : powerisk 2000 followup in re weatherdelta  vince ,  i will contact them and set up a meeting .  alex  vince j kaminski @ ect  10 / 30 / 2000 10 : 21 am  to : alex huang / corp / enron @ enron  cc : joseph hrgovcic / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , vince j  kaminski / hou / ect @ ect , lance cunningham / na / enron @ enron , sevil  yaman / corp / enron @ enron , stinson gibner / hou / ect @ ect  subject : powerisk 2000 followup in re weatherdelta  alex ,  can you set up a meeting to review this product . they have an office in  houston .  please , invite people on the distribution list .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 30 / 2000  10 : 26 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  denton mike on 10 / 24 / 2000 10 : 14 : 04 am  to : vkamins @ enron . com  cc :  subject : powerisk 2000 followup in re weatherdelta  mr . kaminski ,  ?  nick perry and i were recently discussing the conference in paris , and we  gathered that you had some interest in exploring possible uses of our new  weatherdelta tool - kit . ? it is the only application that we know of , that  can ? model temperature , loads , and power prices in several locations  simultaneously : thus allowing the user to measure the value an risk in a  variety of financial instruments , physical obligations and assets . ? i have  attached the product overview sheet , and would be happy to discuss its  capabilities with you at your convenience . ? ?  ?  nick and i send our regards ,  ?  vice president  na strategic consulting  caminus  747 third avenue , 18 th floor  new york , new york 10017  ( 212 ) 515 - 3667  ?  ?  - weatherdelta . pdf\",0\n\"Subject: re : support for exotica  steve ,  i have to draft an announcement and send it to john sheriff . i shall do it  this weekend .  vince  steven leppard  10 / 13 / 2000 09 : 27 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : support for exotica  hi vince  good luck calling anjam . he never seems to answer his mobile when sharad  calls him to track him down . furthermore he ' s off work until tuesday .  i ' ve had tani ask me what ' s happened to the announcement about my new  appointment . any progress there ?  cheers ,  steve  vince j kaminski  13 / 10 / 2000 14 : 44  to : steven leppard / lon / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : support for exotica  steve ,  i am calling anjam to give him a deadline regarding move to houston .  if he decides to stay in houston , you should meet with him to convey  the concerns regarding his performance .  vince  steven leppard  10 / 13 / 2000 03 : 50 am  to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , dale  surbey / lon / ect @ ect , tani nath / lon / ect @ ect  cc : paulo issler / hou / ect @ ect , sharad agnihotri / lon / ect @ ect , zimin  lu / hou / ect @ ect  subject : support for exotica  all  sharad ' s investigations of exotica ' s status in london have turned up a very  confused state of affairs . this isn ' t being helped by the fact that :  1 . anjam is rarely at his desk , and can ' t be found anywhere in the building .  2 . when he is around he isn ' t willing or able to provide all the information  sharad might need to support exotica .  this is worrying since much of our business depends on the validity of  exotica ' s valuations .  sharad will now request information from anjam via email to leave a trail ,  and i want to alert you to the fact that sharad will be cc ' ing you in on  these emails .  if things don ' t improve soon , i may need to request some assistance in  extracting this information from anjam .  many thanks ,  steve\",0\n\"Subject: re : a / a program question  vince ,  thanks for the support .  gwyn  vince j kaminski @ ect  10 / 24 / 2000 04 : 38 pm  to : gwyn koepke / na / enron @ enron  cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect  subject : re : a / a program question  gwyn ,  no problem . please , continue with your current tutor .  vince  gwyn koepke @ enron  10 / 23 / 2000 04 : 22 pm  to : vince j kaminski / hou / ect @ ect  cc : shirley crenshaw / hou / ect @ ect  subject : re : a / a program question  vince ,  the a / a program does not have a contract in place with melly language  services . it appears that by the note below from my contact in the a / a - hr  department , the reimbursement policy appears to be driven by department , not  enron at large .  as i mentioned earlier , if i continue with my current tutor , but outside of  the melly language services , the cost to the department will decrease for me  to take french classes .  pls advise if research will be able to continue to fund my lessons .  many thanks ,  gwyn koepke  - - - - - - - - - - - - - - - - - - - - - - forwarded by gwyn koepke / na / enron on 10 / 23 / 2000 04 : 19  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : ivonne brown 10 / 23 / 2000 04 : 17 pm  to : gwyn koepke / na / enron @ enron  cc :  subject : re : a / a program question  gwyn ,  in the past the associate & analyst program use to pick - up the cost for the  classes , but they stopped doing so effective 1 / 99 . ( although , some business  units decided to continue paying for it - you may want to double check with  your business unit to whether or not they have a contract . the a / a dept does  not . ) please let me know if you have additional questions .  thank you for your patience .  sincerely ,  ivonne brown  gwyn koepke  10 / 23 / 2000 01 : 15 pm  to : ivonne brown / na / enron @ enron  cc :  subject : a / a program question  ivonne , have you been able to find an answer to the attached ? thanks !  gwyn  - - - - - - - - - - - - - - - - - - - - - - forwarded by gwyn koepke / na / enron on 10 / 23 / 2000 01 : 14  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  gwyn koepke  10 / 19 / 2000 08 : 25 pm  to : ivonne brown / na / enron @ enron  cc :  subject : a / a program question  ivonne ,  i am currently enrolled in a french language class thru enron and melly ' s  language services , and my group is paying the cost directly .  i am considering quitting the melly ' s language program in favor of an outside  private tutor , for a number of reasons . it will be cheaper too .  i would like to know :  1 . does enron have a contract in place with melly ' s language service , to be  the exclusive provider of language services to enron ?  2 . will enron pay the costs of my language classes if they are held outside  of the melly contract ( if any ) ?  i just want to make sure that if i decide to \"\" drop out \"\" of the melly classes  and sign up for other private tutoring courses , which will be less expensive  than the melly svc , that enron will not have a problem picking up the tab .  vince kaminski , the md , wants to know this , to ensure there is no legal  restriction on who must provide these language services in order to secure  enron reimbursement .  thanks for your help .  gwyn koepke\",0\n\"Subject: schedule for nick  as far as i know , the schedule for nick bambos is :  9 - 10 ebl 9 c 2 meet with paul racicot and ebs research members  11 : 00 leave for lunch at vincent ' s  12 : 30 return to enron  1 - 2 eb 46 c 2 giuseppe p . talk on ip pricing .  2 - 4 eb 43 c 2 open forum discussions with ebs traders  4 : 14 nick departs for hobby\",0\n\"Subject: site license for power world  gentleman ,  kevin presto concurred on the purchase of a site license as recommended by  vince . what are the thoughts of others ? i am available to demo the package  if others would like to see it .  thanks ,  lance  - - - - - - - - - - - - - - - - - - - - - - forwarded by lance cunningham / na / enron on 11 / 20 / 2000  01 : 51 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski @ ect  11 / 10 / 2000 09 : 16 am  to : vince j kaminski / hou / ect @ ect , richard lewis / lon / ect @ ect , tim  belden / hou / ect @ ect , tim . heizenrader @ enron . com , kevin m presto / hou / ect @ ect ,  george hopley / hou / ect @ ect  cc : lance cunningham / na / enron @ enron  subject : site license for power world  gentlemen ,  i recommend that we purchase this package and split the cost 3 ways between 3  power trading desks .  i think that we should go for option 3 ( ~ $ 15 , 000 ) .  lance cunningham in my group looked at this software package and found it  very useful for modeling transmission problems .  please , feel free to ask him for technical details in support of this  recommendation .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 11 / 10 / 2000  09 : 17 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  lance cunningham @ enron on 11 / 09 / 2000 06 : 15 : 14 pm  to : vince j kaminski / hou / ect @ ect  cc : vasant shanbhogue / hou / ect @ ect  subject : site license for power world  vince ,  we have three options to increase our availability across enron for the power  world load flow software .  option 1 , upgrade to a site license for the load flow software only . price  $ 9 , 990 . 00  this would give all of enron the ability to perform load flows , but not  determine marginal cost or available transfer capacity ( atc ) because only the  optimal power flow ( opf ) version can perform that task .  option 2 , site license for the load flow and purchase 1 opf package for  walter coffer ' s group . price $ 11 , 240 .  this would give all of enron the ability to perform load flows and one other  group the ability to determine marginal cost and atc .  option 3 , site license for load flows , opf and atc . price $ 14 , 990 . 00  this would give all of enron the ability to perform load flows , marginal  cost , and atc .  regards ,  lance\",0\n\"Subject: inquery re : aluminium companies  vince ,  margaret mentioned to me that you might be able to help me with the  followings :  we ( central european origination , london office ) might start talking to two  aluminium companies in central europe . before we were to meet them , it would  be rather useful ( i suppose ) to find out what aluminium deals ( if any ) you  closed in the states . the most important issue would be whether you managed  to index the price of power to the price of aluminium ; if yes , how .  your help would be much appreacited .  many thanks ,  jozsef\",0\n\"Subject: re : job posting  hi vince ,  this posting is for my group . thanks for the referral .  - - - - - original message - - - - -  from : kaminski , vince  sent : tuesday , april 24 , 2001 5 : 31 pm  to : goodpasture , john ; watson , kimberly ; ferrell , lee ; kaminski , vince  cc : krishnarao , pinnamaneni  subject : job posting  i am teaching a class at rice and one of my very bright students sent her  resume  in response to this posting . do you know who posted this job ?  vince kaminski  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 24 / 2001  05 : 27 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" helen demianenko \"\" on 04 / 24 / 2001 02 : 11 : 05 pm  please respond to  to :  cc :  subject : job posting  dear vince ,  thanks for talking to me this morning about the sr . risk analyst position .  here is where you can find the job description for that position :  also , i have cut and pasted it down below , just in case .  i appreciate your assistance in this matter and will start working on my  cover letter right away .  i would also like to talk to somebody to get a better feel for the position  ( is this really an mba level position and how much of the in - depth learning  opportunities for the derivatives market does it entail ? )  sincerely ,  helen demianenko  p . s . i have attached my resume ( one more time ) .  sr risk analyst  essential functions : primary accountability for managing the ets risk book  structure and processes from a pipeline ( front office ) perspective . work  within current nng and tw marketing organizations to effectively integrate  risk books into daily marketing and structured product activities . provide  feedback to management regarding overall and specific risk positions .  provide support for consistent and accurate deals entry / reporting for stand  alone risk management system . create ad - hoc reports to assist management in  risk analysis . responsible for managing and providing enhancements to the  capacity books : ? maintain functionality and provide leadership for new  functionality from a users perspective . provide support and direction for  integration of capacity books and revenue management project . support revenue  management team  essential requirements : ba / bs in finance or accounting ( mba preferred ) .  minimum of two years financial instruments experience . excellent  quantitative / analytic and systems skills . knowledge of commodity risk book  concepts . understanding of physical natural gas market , interstate  transportation and financial derivatives . ability to interface with  structuring / marketing groups in order to define business requirements .  ability to provide leadership for business and system processes . excellent  communication skills with an ability to communicate across organization with  varied skill sets and ideas . must be self - motivated with a high level of  energy  preferred skills : na .  special characteristics : this job functions in a team - oriented , fast - paced  environment with multiple concurrent assignments and constantly changing  priorities .  contact : responses will be accepted through may 3 , 2001 . respond to enron  corp . , human resources 235 , p o box 3330 , omaha , ne 68103 - 0330 or e - mail :  dea . crum @ enron . com as a . doc or . txt attachment . please include this  requisition number .  job id 0000108729  department risk management & reporti  company enron transportation services  enron transportation services  location houston , tx  type  posting date 19 - apr - 01  - helen _ d _ resume . doc >\",0\n\"Subject: important united way reminder  reminder !  the united way executive breakfasts are one week away . please rsvp if you  have not already done so .  date : thursday , august 3 , 2000 ( hosted by joe sutton )  or  friday , august 4 , 2000 ( hosted by jeff skilling )  time : 7 : 45 - 9 : 00 a . m .  location : depelchin children \u0001 , s center  100 sandman ( near memorial and shepherd intersection )  rsvp : reply directly to this email or call jessica nunez , 853 - 1918 by  monday , july 31  transportation : bus will depart from the enron building ( andrews street  side ) promptly at 7 : 30 a . m . bus transportation is encouraged , due to limited  onsite parking . however , if you should need to drive , directions to depelchin  are below .  executive solicitation  executive solicitation kicked - off on july 24 and is well underway . as you  know , participation by enron \u0001 , s executive team is vital to the success of the  campaign . to make your contribution , please click on the following united  way link , http : / / unitedway . enron . com or go directly to internet explorer or  netscape and type in http : / / unitedway . enron . com in the address field . either  option should take you to enron \u0001 , s united way 2000 campaign site where you  should be able to make your pledge within minutes . please call kathy  mayfield , enron \u0001 , s campaign coordinator at 713 / 853 - 3264 if you have any  difficulties at all accessing the site .  we look forward to seeing you next week !  directions to depelchin children \u0001 , s center \u0001 ) 100 sandman ( 713 - 861 - 8136 )  from downtown houston  ? take prairie ( which turns into memorial ) or allen parkway west to shepherd .  ? turn right on shepherd .  ? turn left on feagan ( which is the first light after memorial . )  ? turn left on sandman and drive down a couple of blocks .  from the galleria area  ? take 610 north to the woodway / memorial exit . exit and turn right on woodway .  ? woodway will turn into memorial and stay on memorial until you see the  shepherd exit .  ? exit shepherd and turn left on shepherd .  ? turn left on feagan ( which is the first light after memorial . )  ? turn left on sandman and drive down a couple of blocks .  from north of downtown  ? take 45 or 59 south to i - 10 . go west on i - 10 .  ? take the shepherd / durham exit and go through the shepherd intersection to  durham . go left under the freeway on durham .  ? turn right on feagan ( which will be a light . )  ? turn left on sandman and drive down a couple of blocks .\",0\n\"Subject: li sun  i ' ve asked vince to get involved with you about getting li into vince ' s  group . this issue needs to be resolved by week ' s end - - we look like we don ' t  have our act together , and that bothers me . especially since we are about to  make a significant monetary investment at wharton , and we could have a new  wharton recruit disgruntled .  vince , can you set up a meeting with you , me and mark palmer to follow up  with our meeting with skilling ? thanks very much . . .  jeff\",0\n\"Subject: holiday invitation  please click on the attached link to launch your holiday party invitation .  http : / / invitation . enron . com  please direct any questions to dorie hitchcock via email .\",0\n\"Subject: control and echelon  very interesting websites . thanks for keeping me updated ! - scott  - - - - - - - - - - - - - - - - - - - - - - forwarded by scott tholan / corp / enron on 06 / 29 / 2000  05 : 38 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski @ ect  06 / 29 / 2000 10 : 37 am  to : scott tholan / corp / enron @ enron  cc :  subject : control  fyi  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 06 / 29 / 2000  10 : 41 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  vkaminski @ aol . com on 06 / 28 / 2000 11 : 11 : 37 pm  to : vkamins @ enron . com  cc :  subject : control  sto  a : political control technologies - summary of interim study\",0\n\"Subject: seminar mugs  vince :  can your secretary forward to debra thomas the enron  logo in a word document that debra can use in a design for the rice / enron  finance seminar series mugs ?  hope your summer is going well .  thank you again for your kind assistance .  bbo\",0\n\"Subject: re : economic espionage act presentation - august 15 th  scott ,  i shall attend .  vince  enron north america corp .  from : scott tholan 08 / 01 / 2000 04 : 49 pm  sent by : sharon purswell  to : john j lavorato / corp / enron @ enron , jeffrey a shankman / hou / ect @ ect , vince j  kaminski / hou / ect @ ect , greg whalley / hou / ect @ ect , steven j kean / hou / ees @ ees ,  jim fallon / enron communications @ enron communications , russell woody / enron  communications @ enron communications , john brindle , david oxley / hou / ect @ ect  cc : alan aronowitz / hou / ect @ ect , mark e haedicke / hou / ect @ ect  subject : economic espionage act presentation - august 15 th  you are cordially invited to attend a presentation entitled : \"\" acquiring  information : trade secrets and the economic espionage act ( eea ) \"\" . daniel  waltz , of the law firm patton boggs llp , is a leading expert on the eea and  will deliver what promises to be an interesting and informative segment .  congress passed the eea in 1996 , and it will increasingly shape how corporate  america collects , uses , and protects valued information . in addition to  explaining some of the intricacies of the eea , dan waltz will include  \"\" hypothetical \"\" corporate case studies ( some actually torn from the headlines )  to illustrate his points .  this event is sponsored by ena ' s competitive analysis and business controls  ( cabc ) group and is supported by ena legal . this event kicks - off cabc ' s  competitive intelligence standards program , which seeks to raise awareness of  issues relevant both to enron ' s practitioners and senior consumers of  competitive intelligence . this particular speaking engagement is designed to  raise awareness of the eea ' s legal guidelines , as well as to stimulate  thought both on the collection opportunities against our competitors as well  as how we might better protect enron ' s own proprietary information . i  believe the topic of the eea is especially relevant , given that we find  ourselves amidst the big bang of this new information age .  all cabc staff is being asked to attend this presentation , and we are  inviting a small number of other enron employees who are engaged in aspects  of serious competitive intelligence . select executives like yourselves are  being invited to attend , and i would welcome any suggestions of others that  you think might benefit from attending this event .  the eea presentation is set for august 15 , 1 : 30 - 3 : 00 pm , in the 50 th floor  conference room . please rsvp to either myself or sharon purswell . hope to  see you there .  p . s . by the way , our next speaker segment in the ci standards program will  concentrate on the guidelines and implications of the \"\" foreign corrupt  practices act ( fcpa ) , \"\" and will likely be scheduled for the fall .\",0\n\"Subject: re : recruiting at carnegie - mellon  i am so sorry that we keep missing one another . are you available at any  time tomorrow so i can come visit to talk about carnegie mellon recruiting  this fall ?  kristin  vince j kaminski @ ect  08 / 23 / 2000 05 : 33 pm  to : john b gordon / na / enron @ enron  cc : vince j kaminski / hou / ect @ ect , kristin gandy / na / enron @ enron  subject : re : recruiting at carnegie - mellon  john ,  i haven ' t received the invitation yet to the sep 13 th meeting .  i shall contact you thursday regarding the cmu presentation .  vince  john b gordon @ enron  08 / 23 / 2000 05 : 01 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : recruiting at carnegie - mellon  vince :  i understand that you are the lead recruiter for cmu . as you know , i am the  only alum from that school in enron ' s associate program . i assume i will be  joining you for our corporate presentation on 9 / 13 at 7 : 30 am . please let me  know what i can do to help prepare for this event . enron and gsia are a  great fit , so i want this recruiting effort to go well .  are you also giving a talk / lecture to the computational finance students ? if  so , what time ? maybe we can schedule a lunch with duane seppi . i look  forward to hearing from you .  john gordon\",0\n\"Subject: re : meeting on feb 8 , 2001  david  thanks .  i shall get in touch with you a few days before to  coordinate the details .  vince  from : david port @ enron  01 / 09 / 2001 07 : 47 am  to : vince j kaminski / hou / ect @ ect  cc : rick buy / hou / ect @ ect , john l nowlan / hou / ect @ ect , jeffrey a  shankman / hou / ect @ ect , vince j kaminski / hou / ect @ ect , shirley  crenshaw / hou / ect @ ect  subject : re : meeting on feb 8 , 2001  vince  i will be available .  dp  vince j kaminski @ ect  01 / 08 / 2001 12 : 06 pm  to : rick buy / hou / ect @ ect , david port / market risk / corp / enron @ enron , john l  nowlan / hou / ect @ ect , jeffrey a shankman / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect  subject : re : meeting on feb 8 , 2001  fyi .  this is the list of the petronas executives visiting enron on feb 8 .  i have invited them to lunch . would you like to join me for lunch .  i would like to propose a short courtesy meeting at 10 with jeff / john ( 5 -  10 minutes ) ,  followed by rac / research presentation till 11 : 30 .  vince  p . s . i shall reserve a conference room for this meeting  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 08 / 2001  10 : 02 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  azminab @ petronas . com . my on 01 / 07 / 2001 06 : 37 : 33 pm  to : vince . j . kaminski @ enron . com , shirley . crenshaw @ enron . com ,  khairuddinbmjaafar @ petronas . com . my  cc :  subject : re : meeting on feb 8 , 2001  dear kaminski  4 members from corporate risk management unit  1 . iqbal abdullah - general manager  2 . nur azmin abu bakar - head , risk assessment & controls  3 . zulkifli a rahim - head , risk measurement & systems  4 . adnan adams - head , special projects  regards  vince . j . kaminski @ enron . com on 03 / 01 / 2001 09 : 45 : 02 pm  to : azminab @ petronas . com . my  cc : vince . j . kaminski @ enron . com , shirley . crenshaw @ enron . com  subject : re : meeting on feb 8 , 2001  dear mr . nur azmin abu bakar ,  thanks for your prompt reply .  please , let us know how many members of your team will  visit enron .  i look forward to our meeting on february 8 .  vince kaminski  azminab @ petronas . com . my on 01 / 02 / 2001 06 : 38 : 33 pm  to : vince . j . kaminski @ enron . com , khairuddinbmjaafar @ petronas . com . my ,  shirley . crenshaw @ enron . com  cc :  subject : re : meeting on feb 8 , 2001  dear kaminski ,  happy new year and thank you for the reply . we are honored to have  lunch with you and your team however we have another appointment at  2 . 30 p . m .  regards  vince . j . kaminski @ enron . com on 03 / 01 / 2001 07 : 38 : 19 am  to : azminab @ petronas . com . my  cc : vince . j . kaminski @ enron . com , shirley . crenshaw @ enron . com  subject : meeting on feb 8 , 2001  dear sir ,  i would like to apologize for the delay in responding to your fax .  i was on vacation for the last few days .  i shall be honored to meet your delegation on thursday , february 8 at 10 : 00  a . m .  please , let me know if you will be free for lunch after the meeting .  vince kaminski\",0\n\"Subject: completion of lng model review  jeff ,  fyi . we completed the review of the lng model .  the copy of the review is available if you want to take a look at it .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 17 / 2000  04 : 26 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  bob lee @ enron  10 / 16 / 2000 01 : 53 pm  to : vince j kaminski / hou / ect @ ect  cc : zimin lu / hou / ect @ ect , stinson gibner / hou / ect @ ect  subject : completion of lng model review  the review of eric groves ' lng model spreadsheet has been completed . no  independent model was available for use in the comparison ; however , the model  appears complete and accurate in representating all important cost and  revenue elements .  if this financial model is coupled with a optimization model for planning  ship usage in the future , additional variables may be needed to represent the  variability of trip times , weather factors , etc . a reference describing  these possible additions was provided .  bob lee\",0\n\"Subject: meeting requested  hi mr . kaminski ,  please send me your assistants name and number so i can schedule a time for  you and kevin to go to lunch next week .  thanks !  rebekah rushing ( rebekah _ rushing @ enron . net )  enron broadband services  broadband ventures group  713 - 853 - 3273 - phone  713 - 646 - 8010 - fax  - - - - - forwarded by rebekah rushing / enron communications on 01 / 05 / 01 02 : 00 pm  - - - - -  kevin garland  01 / 05 / 01 12 : 04 pm  to : vince j kaminski / hou / ect @ ect  cc : rebekah rushing / enron communications @ enron communications  subject : meeting requested  vince ,  i would like to meet with you or someone in your group to discuss some of the  investment ideas and structures we are exploring . how is your group  structured these days ? who would be best for me to meet ? might you be  available for lunch next week ? i will have my assistant contact you .  thank ,  kevin garland\",0\n\"Subject: alliance info alert - ferc reporting  attached is a summary of recent ferc activities ( pdf file ) and the weekly  alliance express . the following is a summary of the most recent ferc meeting ,  followed by a listing of the most recent ferc filings .  in a brief meeting yesterday , ferc approved a final rule adopting section 203  merger filing requirements , generally as proposed , and extended the existing  nyiso bid cap in its non - spinning reserves market and the related mandatory  bidding requirement until such time that the new york market can be  determined to be \"\" workably competitive . \"\" at the same time , ferc ordered a  technical conference to explore changes to the nyiso reserves market , and  urged market participants to reach a consensus on a preferred solution , next  steps , and deadlines for resolution / implementation . additional details are  provided below .  ferc updates , streamlines merger filing process  ferc unanimously approved its proposed order revising the reporting  requirements for mergers . however , comm . hebert did so with reservations , as  discussed below . commission staff stated that the order closely follows the  notice of proposed rulemaking previously issued , but adds more detail and  more certainty to the industry . staff stated that the order is improved over  the proposed rule because it includes exemptions from reporting for certain  entities and it more precisely defines geographical areas and products .  according to ferc , the draft order :  - revises the commission ' s filing requirements to reflect existing merger  policy based on ferc ' s 1996 merger policy guidelines ;  - provides more detail for the industry in developing competitive market  analyses . the rule continues the existing screening process for mergers with  potential horizontal competitive concerns . in addition , the rule establishes  informational requirements for vertical competitive analyses .  - streamlines filing requirements for transactions that do not raise  competitive concerns ; and  - reduces the industry ' s regulatory burden by eliminating outdated filing  requirements .  the rule will take effect 60 days after its publication in the federal  register .  commissioner reaction :  comm . hebert expressed reservations that , although he was voting for the  rule , ferc should not be duplicating the department of justice ( doj ) and the  federal trade commission ( ftc ) market concentration analyses and that ferc  should follow the lead of anti - trust enforcement officials , who could also  analyze mergers faster and more confidentially . he also stated that ferc  should review the filings after the doj or the ftc review them , not before ,  and that there should be a definite time frame for review . hebert did  mention that he was pleased that rtos and the disposition of transmission  assets would be exempt , that ancillary services would be considered as a  separate product and that the final rule opens the door for alternative  market analysis .  comm . breathitt supported the final rule , stating that it should expedite the  approval process and that the regulatory burden should be eased due to the  fact that older , irrelevant requirements have been dropped . she indicated  that the final rule balanced the need for speedy decisions while protecting  the public interest by stating that the process will be \"\" efficient yet  sufficient \"\" . the commissioner said that she was pleased the final rule  addressed technical issues such as computer modeling as well as retail  competition and one of her main concerns , confidentiality .  comm . massey fully supported the final rule , emphasizing that it would  improve response time , lessen the need to ask for more data and allow the  industry to better predict commission actions . like commissioner breathitt ,  massey was pleased that the order will allow market modeling analysis that  will better enable ferc to evaluate market concentration and allow applicants  to point to other factors when concentration appears too high . massey also  stated that the new rule includes the ability to address many of ferc ' s  concerns , such as future mergers when they occur in succession , retail  competition , mitigation by the enlargement of markets through rtos and  analysis of ancillary services . in sum , he averred that the order will  provide ferc with the tools it needs for accurate analysis , while taking into  consideration the rapid changes in the industry .  chairman hoecker also voiced his support and noted that he felt that this was  a very important rule . in response to comm . hebert , chairman hoecker said  that the doj and ftc actually wait for ferc ' s report before issuing their  own , that the anti - trust enforcement agencies rely on ferc ' s expertise when  reviewing mergers in the electric and gas industries . there is a major  positive connection between industry consolidation and rtos and that both are  reconfiguring the markets and effect how they work , he noted . because the  rtos enlarge the size of the subject market , he indicated , rtos will help to  preserve competition . therefore , more and larger rtos should allow for more  mergers , he said . the chairman cautioned that this is not to imply that  joining an rto is a requirement for a merger , but that it would certainly be  viewed favorably .  nyiso bid caps extended until ancillary service market shown to be workably  competitive  in a 3 - 1 decision , with comm . hebert dissenting , ferc extended the existing  nyiso bid cap in its non - spinning reserves market and the related mandatory  bidding requirement until such time as that market can be determined to be  \"\" workably competitive . \"\" at the same time , ferc ordered a technical  conference to explore changes to the nyiso reserves market , and urged market  participants to reach a consensus on a preferred solution , next steps , and  deadlines for resolution / implementation .  in so doing , ferc rejected certain aspects of nyiso ' s september 1 and 8 , 2000  compliance filing , submitted pursuant to its may 31 , 2000 order imposing a  temporary bid cap through october 31 . the iso ' s efforts to correct market  flaws identified in the order and further strengthen market performance had  not yet satisfied the commission ' s directives , ferc concluded . ferc found  that while nyiso has achieved solid progress in certain areas , overall the  iso has not shown sufficient improvement to warrant raising and then  gradually lifting the temporary bid cap in the iso ' s non - spinning reserve  market by april 2001 , as the iso requested .  commissioner reaction :  comms . hoecker , massey and breathitt all endorsed the order as an \"\" imperfect  solution , \"\" yet a pragmatic approach toward resolving the flaws plaguing the  iso ' s market . comm . hebert faulted the commission for squandering an  opportunity to incentivize additional supply by lifting the price controls .  hoecker and breathitt joined hebert in expressing disappointment in the lack  of the iso ' s progress , but contended that significant outstanding issues must  be resolved before the bid cap can be lifted .  in other action , ferc accepted nyiso ' s and nepool ' s proposed emergency energy  transaction agreement , allowing nyiso and iso - ne to provide emergency service  to each other ( ero 0 - 3638 - 000 ) ;  stricken items included cae - 16 ( nepool ' s 64 th agreement amendment proposing  the elimination of in service and instituting new rules governing certain  import transactions ( ero 0 - 3577 - 000 ) ) .  = = recent ferc filings = =  ( 1 ) rto developments  * iso ne submitted its changes to market rule 17 , market monitoring ,  reporting and market power mitigation , in compliance with the commission ' s  july 26 , 2000 order . erol - 368 - 000 . filed november 1 , 2000 .  * iso ne submitted its special interim market rule in compliance with the  commission ' s july 26 , 2000 order . ero 0 - 369 - 000 . filed november 1 , 2000 .  * illinois industrial energy consumers filed to intervene regarding dynegy ' s  filing to request approval for the withdrawal of the illinois power co . from  the miso . erol - 123 - 000 . filed november 6 , 2000 .  * el segundo power filed a motion \"\" requesting order on request for rehearing  by date certain \"\" in complaint that challenges the ca iso ' s ability to set the  rates for the energy that it can compel generators to produce for reliability  under its standard form contract . ero 0 - 1830 - 001 . filed november 3 , 2000 .  * ca iso filed an unbundled grid management charge in order to recover its  administrative and operating costs . erol - 313 - 000 . comments due by november  22 , 2000 .  * nepool submitted supplemental information related to its filing of the  sixty - fourth agreement amending the nepool agreement , which proposed the  elimination of in service . ero 0 - 3577 - 000 . comments due by november 14 , 2000 .  ( 2 ) oatt / transmission  * duke energy filed an amendment to its catawba interconnection agreement  with north carolina electric membership coop . erol - 282 - 000 . comments due by  november 21 , 2000 .  * duke energy filed an amendment to its catawba interconnection agreement  with the saluda river electric coop . erol - 281 - 000 . comments due by november  21 , 2000 .  * duke energy filed an amendment to its catawba interconnection agreement  with north carolina municipal power agency no . 1 . erol - 280 - 000 . comments  due by november 21 , 2000 .  * alliant energy , on behalf of ies utilities , interstate power and wisconsin  power and light , filed new rates under its oatt to reflect the transfer of  certain transmission facilities to american transmission co . erol - 312 - 000 .  comments due by november 22 , 2000 .  * wolverine power supply coop . filed to change its rate schedule ferc no . 4 ,  wholesale service to member distribution coops , to make the debt  restructuring charge applicable to all energy delivered to its member coops ,  to add standby service rates and to remove references to entities that no  longer exist . erol - 285 - 000 . comments due by november 21 , 2000 .  * wolverine power supply coop . filed an amendment to its oatt to accommodate  michigan retail choice and to add delivery scheduling and balancing service  as a new service for generators interconnected to its transmission system .  erol - 286 - 000 . comments due by november 21 , 2000 .  * potomac electric power filed a revised attachment h - 9 to the pjm oatt  reducing the other supporting facilities charge for lower voltage deliveries  in the pepco zone of pjm to southern maryland electric coop . erol - 336 - 000 .  comments due by november 22 , 2000 .  * wolf hills energy filed a motion to intervene out of time to support the  interconnection and operation agreement between itself and american electric  power service corp . and to deny the protest of tva . ero 0 - 3688 - 000 . filed  november 6 , 2000 .  ( 3 ) complaints  * aep and southwest power pool each filed an answer to enron ' s motion for  summary disposition regarding enron ' s complaint , in response to aep ' s updated  market analysis , that aep service corp . administered the aep oasis and tariff  in a manner favoring aep ' s merchant function . er 96 - 2495 - 015 , et . al . filed  november 6 , 2000 .  * potomac electric power ( pepco ) and the southern parties filed a motion to  answer the protest of southern maryland electric coop and panda - brandywine  regarding pepco ' s divestiture of generation assets pursuant to restructuring  initiatives in maryland and the district of columbia . eco 0 - 141 - 000 and  ero 0 - 3727 - 000 . filed november 6 , 2000 .  * dunkirk power , huntley power and oswego power filed a motion to answer  protests filed by numerous entities regarding ferc ' s jurisdiction over  station power . elo 0 - 113 - 000 . filed november 6 , 2000 .  * allegheny energy supply and ppl montour filed an answer to protests  regarding their purchase of certain jurisdictional facilities . ero 0 - 3727 - 000  and eco 0 - 141 - 000 . filed november 6 , 2000 .  ( 4 ) mergers / corporate restructuring  ( 5 ) miscellaneous  = = other news = =  * s & p revises miso outlook to negative  - allianceexpressl 10700 . doc  - ffl 10300 . pdf\",0\n\"Subject: restricted stock deferral opportunity - reminder  this message is to remind you of your opportunity to defer restricted stock  that may be released to you during 2001 into the enron corp . 1994 deferral  plan ( or the enron expat . services , inc . deferral plan for expatriates ) .  information concerning this opportunity was delivered to you earlier this  week .  if you want to participate in this program , please complete an election form  at your earliest convenience . forms should be returned to my attention  ( ebl 614 or via facsimile 713 - 646 - 4858 ) .  i will be away from the office next week ; please do not hesitate to call  renee ratcliff ( 713 - 345 - 7960 ) or mary mckendree ( 713 - 345 - 8085 ) with any  questions .  thank you !  kim bolton  executive compensation  713 - 853 - 7084\",0\n\"Subject: fw : fw : question about ernie  vince ,  i left you a voice message that explains a little about the history of this  inquiry ( you may want to refer to that first ) .  please let me know what you know about this and your opinion .  thank you ,  anthony  * 36304  - - - - - original message - - - - -  from : presas , gracie  sent : monday , march 05 , 2001 5 : 38 pm  to : sexton , anthony  subject : re : fw : question about ernie  anthony ,  please contact vince kaminsky at ext . 3 - 3848 . i think his group has this  type of training set up . ask him is you can be added to their classes . let  me know if this works for you .  gracie  from : anthony sexton / enron @ enronxgate on 03 / 05 / 2001 01 : 31 pm  to : gracie s presas / hou / ect @ ect  cc :  subject : fw : question about ernie  hi , gracie .  i ' m just following up on my inquiry from last week . have you begun any  discussions on statistics classes ?  anthony  - - - - - original message - - - - -  from : sexton , anthony  sent : thursday , march 01 , 2001 8 : 28 am  to : presas , gracie  subject : question about ernie  gracie ,  does enron have any statistics classes ? ones more focused on basic  statistics and the lingo ( ex : alpha , beta , delta - gamma , type i & ii error ,  distributions , kurtosis , etc . ) than the var class ?  i have not seen any in the class schedule . in working with traders and  studying risk mangement concepts , even our \"\" experts \"\" that know almost  everything about marketing and modeling risk management products do not seem  to have an adequate understanding of basic statistics ! ! ! this lack of  knowledge basically makes my job as a fundamentals analyst ( researching the  underlying commodity markets for the purpose of maximizing egm / ea / eim  profits ) very inefficient .  if they already do not exist , i recommend that ernie institute two types of  statistics classes ( which mirror the existing finance class selection ) .  \"\" introduction to statistics \"\" ( perhaps a database approach - including  application to excel ? ) and \"\" applied statistics \"\" ( which would be a more  advanced approach that specifies how enron uses - or should use - statistics  in risk management marketing ) .  please let me know what you think .  cordially ,  anthony sexton  * 36304\",0\n\"Subject: re : conversation w / andersen  vince : forwarding this to you as an fyi - do you suppose you should sit in  since you ' ve already met victor ? just a thought . . .  regards ,  amy  - - - - - - - - - - - - - - - - - - - - - - forwarded by amy oberg / hou / ees on 08 / 09 / 2000 10 : 31 am  - - - - - - - - - - - - - - - - - - - - - - - - - - -  richard causey @ enron  08 / 09 / 2000 10 : 30 am  to : amy oberg / hou / ees @ ees  cc :  subject : re : conversation w / andersen  i am in the process of setting up a conference call with my contact here as  well as victor burke . prelimainary indications are they have not finalized  their objectives yet but i will discuss that further with them . i would  still strongly suggest rescheduling until everyone can attend and we can  fully discuss our involvement .  to : richard causey / corp / enron @ enron  cc :  subject : conversation w / andersen  rick :  quick follow up - any response yet from your contacts at andersen ? we are  holding off cancelling the thurs meeting w / hope they will get back to you by  eob wednesday .  pls let me know what the status is .  thanks and regards ,  amy oberg  richard causey @ enron  08 / 07 / 2000 09 : 07 am  to : amy oberg / hou / ees @ ees  cc :  subject : re : mit / aa new value research lab  i have discussed with aa and they are following up . if i am the agenda , i  would cancel the meeting and when i hear from aa , i will e mail everyone . i  would suggest we not hold a meeting until kean , buy , koenig and i can all  come so that we can truly move forward ( or decide not to ) . let me know what  you decide . thanks . rick  to : richard causey / corp / enron @ enron  cc :  subject : mit / aa new value research lab  rick : just wanted to highlight that you are the agenda for this meeting ( see  initial notice , agenda ) . let me know if there ' s anything i can do for you .  amy  - - - - - - - - - - - - - - - - - - - - - - forwarded by amy oberg / hou / ees on 08 / 07 / 2000 08 : 19 am  - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron energy services  from : carol moffett 08 / 03 / 2000 04 : 21 pm  phone no : 713 - 853 - 6658 phone  888 - 782 - 3518 pager  eb 613 b  to : richard causey / corp / enron @ enron , marie hejka / corp / enron @ enron , steven j  kean / hou / ees @ ees , amy oberg / hou / ees @ ees , mark palmer / corp / enron @ enron , mark  ruane / hou / ect @ ect , vince j kaminski / hou / ect @ ect , rick buy / hou / ect @ ect , mark  koenig / corp / enron @ enron  cc : sharron westbrook / corp / enron @ enron , christie connell / corp / enron @ enron ,  maureen mcvicker / hou / ees @ ees , laura gutierrez / hou / ect @ ect , shirley  crenshaw / hou / ect @ ect , karen k heathman / hou / ect @ ect , joannie  williamson / corp / enron @ enron  subject : meeting confirmed : mit / aa new value research lab  this will confirm the meeting requested below . please note , all invitees are  not available , but the confirmed meeting time is the best time for most of  the invitees .  date : thursday - august 10  time : 11 : 00 a to noon  place : conference room 4741  confirmed attendees : rick causey  marie hejka  steve kean  amy oberg  mark palmer  mark ruane  thanks for your help , everyone .  - - - - - - - - - - - - - - - - - - - - - - forwarded by carol moffett / hou / ees on 08 / 03 / 2000 04 : 03  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron energy services  from : carol moffett 08 / 02 / 2000 03 : 44 pm  phone no : 713 - 853 - 6658 phone  888 - 782 - 3518 pager  eb 613 b  to : ginger dernehl / hou / ees @ ees , shirley crenshaw / hou / ect @ ect , karen k  heathman / hou / ect @ ect , sharron westbrook / corp / enron @ enron , laura  gutierrez / hou / ect @ ect , laura valencia / corp / enron @ enron , patty  pennington / enron communications @ enron communications  cc : steven j kean / hou / ees @ ees , vince j kaminski / hou / ect @ ect , rick  buy / hou / ect @ ect , richard causey / corp / enron @ enron , mark ruane / hou / ect @ ect ,  mark koenig / corp / enron @ enron , mark palmer / corp / enron @ enron , amy  oberg / hou / ees @ ees , marie hejka / corp / enron @ enron  subject : meeting request : mit / aa new value research lab  good afternoon . i am assisting amy oberg with setting up a meeting among the  individuals listed below . would you be so kind as to review their calendars  and let me know if they are available during any of the suggested meeting  times .  meeting topic : mit / aa new value research lab  meeting purpose : follow up to discussion from 8 / 1 / 00 ; rick causey to brief  group on  conversations w / aa regarding \"\" where they intend to go with this effort \"\" .  attendees : steve kean  vince kaminski  rick buy  rick causey  mark ruane  mark koenig  mark palmer  amy oberg  marie hejka  suggested meeting dates and times :  thursday - august 10 anytime between 8 : 00 a and 10 : 00 a  thursday - august 10 11 : 00 to noon  friday - august 11 anytime between 8 : 00 a and 9 : 30 a  friday - august 11 1 : 00 p to 2 : 00 p  thank you .\",0\n\"Subject: uc - berkeley graduate student  ashley ,  this is one resume i got today . i think that it makes sense to invite him  for an interview directly with my group . he does not qualify as an analyst  candidate .  what do you think ?  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 24 / 2000  04 : 14 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  rajnish kamat on 10 / 23 / 2000 07 : 55 : 31 pm  to : vkamins @ enron . com  cc :  subject : uc - berkeley graduate student  dr . vincent kaminski  managing director and head of research  enron corp .  dear dr . kaminski ,  it was a pleasure talking with you and attending your talk today .  i am a graduate student in industrial engg . and operations  research working with prof . shmuel oren  on topics in financial instrument pricing and design of  contracts in deregulated electricity markets . i am also  doing research in auction models and computable equilibrium  models with applications in electricity market design .  i am planning to graduate with a ph . d . in may 2001 and would  appreciate hearing about any opportunities in your group at enron .  i am attaching at copy of my resume ( file : cvrkamat . doc ) for your perusal .  thanking you ,  sincerely ,  rajnish kamat  graduate student  ieor , uc - berkeley  4135 , etcheverry hall  dept . of industrial engineering and operations research  university of california at berkeley  berkeley , ca , 94710  - cvrkamat . doc\",0\n\"Subject: christmas baskets  kevin :  please add the copy center and the graphics people for a tray .  thanks !  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 11 / 20 / 2000  11 : 18 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  anita dupont @ enron  11 / 17 / 2000 10 : 07 am  to : shirley crenshaw / hou / ect @ ect  cc :  subject : christmas baskets  shirley , may i send a basket or tray to the copy center and to the graphics  people for the work they did on the ees seminars ?  - - - - - - - - - - - - - - - - - - - - - - forwarded by anita dupont / na / enron on 11 / 17 / 2000 10 : 02  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  kevin g moore @ ect  11 / 10 / 2000 09 : 32 am  to : vince j kaminski / hou / ect @ ect , mike a roberts / hou / ect @ ect , shirley  crenshaw / hou / ect @ ect , anita dupont / na / enron @ enron  cc :  subject : christmas baskets  here is the final list for christmas baskets for this year  with the exception of stinson gibner and vasant shanbhogue .  any comments or questions please call x 34710 .  thanks  kevin moore  we still have plenty of time . . . . . .  deadline date : december 12 , 2000\",0\n\"Subject: re : your visit to sydney in july  paul , raymond ,  thanks for your message .  sorry i did not get in touch with you earlier . the last few weeks were very  hectic . i am starting  right now my preparations for the presentation i am going to give at the  conference .  here are the details of my itinerary ( i shall send you a copy tomorrow ) . i  arrive sunday morning  and leave saturday morning . the conference takes place on monday and tuesday .  on wednesday , i am making a presentation at the workshop on value - at - risk . i  would  like to stay at the conference for the duration : it ' s a great learning  opportunity for me .  on thursday and friday , as well as in the evenings ( except for the evening  of july 18 ) , i am at you disposal .  i would like to take advantage of this trip and learn as much as i can  about the australian markets and discuss with you the research agenda .  i shall be glad to make several presentation .  i can repeat my workshop presentation on value - at - risk as well as cover  additional  topics .  vince  paul quilkey @ enron _ development  07 / 04 / 2000 05 : 23 am  to : vince j kaminski @ ect  cc :  subject : your visit to sydney in july  vince  i support raymond ' s email and would welcome the opportunity to have you give  a presentation ( formal or informal ) to the trading group on latest research  initiatives in houston . please let us know your schedule so that we do not  overly burden you during your visit . look forward to seeing you and catching  up over a beer .  thnx  paul  - - - - - - - - - - - - - - - - - - - - - - forwarded by paul quilkey / enron _ development on  07 / 05 / 2000 08 : 23 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  raymond yeow  07 / 04 / 2000 08 : 21 pm  to : vince j kaminski @ ect  cc : paul quilkey / enron _ development , kirsty hogarth / enron _ development , elliott  katz / enron _ development , david gray / enron _ development  subject : your visit to sydney in july  dear vince ,  hi ! , it ' s only two weeks until the aust energy risk ( 17 - 19 july ) seminar in  sydney .  is risk organising your hotel ?  otherwise , kirsty can organise for you ,  eg harbour view at the regent or convenience to the seminar location at the  sheraton ?  we would like to make sure that you have all the necessary \"\" comforts \"\" of home  when you are with us ,  elliott & david can set up a desk for you in the office / trading room with  phone etc  so you can use one of our pc to access email or plug in your laptop .  please let elliott or david kmow your requirements .  how long will you be with us ?  is this your first trip to sydney ?  there are several of us in the office who would like to take you for a  meal ( s ) / show you the sights etc and  discuss the latest research findings with you whilst you are in sydney eg var .  hear from you soon .  raymond  725 pm 4 july\",0\n\"Subject: re : enron site / mepr 2  fyi ,  my message to risk .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 06 / 28 / 2000  05 : 44 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  06 / 05 / 2000 08 : 04 am  to : conrad gardner @ enron  cc : vince j kaminski / hou / ect @ ect , mike a roberts / hou / ect @ ect , daniel  diamond / hou / ect @ ect  subject : re : enron site / mepr 2  conrad ,  thanks for your message .  there are 3 papers enron contributed to the last mepr .  there is also another paper on electricity i contributed to the \"\" red book \"\" on  us  power markets , as well as a paper or credit risk management , and a paper  on weather derivatives . all these papers included in other risk books were  written by enron  employees .  we would like them included as well , if technically possible .  i think that offering other energy related books through our site , in  addition to mepr 2 ,  is fine , but i would leave the decision to dan diamond , who is responsible  for the project .  vince  conrad gardner on 06 / 05 / 2000 07 : 08 : 36 am  to : vince . j . kaminski @ enron . com  cc :  subject : enron site / mepr 2  > date : mon , 05 jun 2000 13 : 02 : 02  > to : vince kaminski  > from : conrad gardner  >  > dear vince  >  > thanks for the call and email on friday . i will contact masuyuki and follow  it from there .  >  > regarding the enron site , i think it is absolutely fine to put up the two  enron chapters ( i ' ll provide pdfs ) , and prevent any customer leakages from  your site by the use of \"\" submit \"\" buttons . as mentioned , i ' ll offer a 20 %  discount on mepr 2 to customers but would you be interested in some of other  energy titles ? - please let me know .  >  > many thanks  >  > conrad gardner  >  head of book publishing  risk books  haymarket house  28 - 29 haymarket  london  swly 4 rx  direct tel : + 44 ( 020 ) 7 484 9750  main tel : + 44 ( 020 ) 7 484 9700  fax : + 44 ( 020 ) 7 484 9758  e - mail : conrad @ risk . co . uk  www . riskpublications . com\",0\n\"Subject: vince :  i was in the power modeling presentation the other day and wanted to know if  i could get a copy of your presentation . thanks agin for taking the time to  go through this important material with us .  regards ,  ben rogers  3 - 7998\",0\n\"Subject: ibuyit form  attached please find the completed form for vince kaminski , managing  director , research group .  he will be approving all purchases for cost center 107043 .  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 19 / 2001  02 : 58 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : debbie skinner / enron @ enronxgate on 04 / 19 / 2001 02 : 52 pm  to : shirley crenshaw / houston / eott @ eott , shirley crenshaw / hou / ect @ ect  cc :  subject : ibuyit form  hi shirley  there were two shirleys , so sending to both  isc help desk\",0\n\"Subject: informal exploratory interview with enron research group  ms . stone :  your resume was forwarded to the enron research group and they would  like to conduct an informal interview with you at your convenience .  please let me know your availability the week of september 11 th . the  individuals that would like to interview you are :  vince kaminski  grant masson  kevin kindall  tanya tamarchenko  they will need approximately 30 minutes each ( 2 - 2 1 / 2 hours )  you may reach me at 713 / 853 - 5290 or by email : shirley . crenshaw @ enron . com  i look forward to hearing from you .  sincerely ,  shirley crenshaw  administrative coordinator  enron research group\",0\n\"Subject: research allocations to egm  hi becky ,  vince and i came up with these allocations for all of egm :  gary hickerson  rate & currency trading 10 . 0 %  agriculture trading  & origination 27 . 5 %  jeff shankman  weather 20 %  insurance 30 %  oil 7 . 5 %  coal 2 . 5 %  freight 2 . 5 %  total 100 %\",0\n\"Subject: re :  cheers vince  see you there .  simon  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com  to : simon turner  cc : vince . j . kaminski @ enron . com ;  vkaminski @ aol . com  date : fri 29 september 2000 3 : 28 : pm  subject : re :  >  > simon ,  >  > i shall bring a floppy to paris .  >  > vince  >  >  >  >  >  >  > \"\" simon turner \"\" on 09 / 29 / 2000 10 : 13 : 47 am  >  > please respond to \"\" simon turner \"\"  >  > to :  > cc :  > subject : re :  >  >  > vince  >  > this works .  >  > are you attaching your presentation for next week ? ?  >  > thanks  >  > simon  > - - - - - original message - - - - -  > from : vince . j . kaminski @ enron . com  > to : simon @ localbloke . freeserve . co . uk  > cc : vince . j . kaminski @ enron . com  > date : wed 27 september 2000 5 : 04 : pm  >  >  > > test  > >  > > vince kaminski  > >  > >  >  >  >  >  >  >  >  >\",0\n\"Subject: re : clewlow / strickland derivatives book  andy ,  please , give me the number of copies and i can order on your behalf at 15 %  discount .  vince  andy m l anderson @ ees  02 / 07 / 2001 10 : 18 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : clewlow / strickland derivatives book  vince :  do you have an internal person i could go through to obtain copies of the  derivatives book you showed us at the garp meeting ? i am ordering a few  copies for my risk guys .  i look forward to talking with you soon , economist to economist . thanks , andy\",0\n\"Subject: re : spring 2001 schematic  mr . kaminski ,  you will need to speak with david kilgore at kilgore @ rice . edu or by calling  david at 713 - 348 - 5378 regarding getting set up in embanet and if you can  have access the database from the outside .  kathy  at 02 : 40 pm 1 / 23 / 01 - 0600 , you wrote :  > kathy ,  >  > what is embanet ? do i have access from the outside ?  >  >  > vince kaminski  >  >  >  >  > kathy spradling on 01 / 11 / 2001 11 : 01 : 48 am  >  > to : ( recipient list suppressed )  > cc : cmiller @ rice . edu , castro @ rice . edu , spradlin @ rice . edu  > subject : spring 2001 schematic  >  >  > spring 2001 faculty ,  >  > the spring 2001 schematic has been posted to embanet . to access the  > schematic please open the jgsm area icon on the embanet desktop . next  > please open the announcement jgsm icon . you will find the spring 2001  > schematic located under the subject column . please open the document . if  > you do not have access to embanet you will need to speak with david kilgore  > at kilgore @ rice . edu or by calling david at 713 - 348 - 5378 .  >  > thanks ,  > kathy  >  > kathy m . spradling  > mba program coordinator  > jesse h . jones graduate school of management  > rice university  > 6100 main street , ms 531  > houston , texas 77005 - 1892  > phone : ( 713 ) 348 - 3313  > fax : ( 713 ) 348 - 5251  > email : spradlin @ rice . edu  > http : / / www . rice . edu / jgs  > e - mail : spradlin @ rice . edu  > http : / / www . ruf . rice . edu / ~ jgs /  kathy m . spradling  mba program coordinator  jesse h . jones graduate school of management  rice university  6100 main street , ms 531  houston , texas 77005 - 1892  phone : ( 713 ) 348 - 3313  fax : ( 713 ) 348 - 5251  email : spradlin @ rice . edu  http : / / www . rice . edu / jgs  e - mail : spradlin @ rice . edu  http : / / www . ruf . rice . edu / ~ jgs /\",0\n\"Subject: another bet  vince  i here you are running abook on how quickly we can implement convolution var  for power and since i am up against a summer deadline for this i felt i  should take the other side .  so how about i buy you dinner if i get it done ?  rgds  dp\",0\n\"Subject: re : associate / analyst super saturday participation - additional  request  shelly ,  these are the super saturdays i can help you with :  nov 10  dec 1  dec 8  dec 15  i shall be traveling on two other days . one of these trips is related to  recruiting at cmu .  vince  vince  enron north america corp .  from : shelly jones , recruiting manager @ enron  10 / 24 / 2000 09 : 12 pm  sent by : enron announcements @ enron  to : ena employees  cc :  subject : associate / analyst super saturday participation - additional request  additional interviewer participation is requested for october 28 & november  4 .  also , please note the school / date changes ( in red ) . this change was  necessary due to the number of candidates participating in super saturday .  if you have a change in your participation as a result of the date change ,  please contact john harrison , ext . 3 - 7811 for revisions .  thank you  shelly jones  enron managing directors , vice presidents , directors , and managers who  utilize the associate / analyst pool  as a follow up from a \"\" save the date \"\" email regarding your participation in  the associate and analyst super saturday process , now is the time to select  your dates to attend and participate .  below are the dates for super saturday weekends during the upcoming  recruiting season . if you are houston - based or if you know you will be in  houston on business at the appropriate times please click the link below to  volunteer .  ( when selecting dates please avoid selecting to interview candidates who  attend the schools for which you are a team member . )  associates analysts  october 27 - 28 , 2000 november 3 - 4  thunderbird , ut , georgetown , rice rice , ut , baylor , a & m , ou , florida , lsu ,  uhcl  november 10 - 11 , 2000 november , 17 - 18 , 2000  columbia , stern nyu , ucla , darden , cornell penn , uva , vanderbilt , michigan ,  howard , auc ,  vanderbilt , michigan uhmain and clear lake , lsu  december , 1 - 2 , 2000 december 8 - 9 , 20000  chicago , kellogg , harvard , wharton , mit wellesley , overflow and re - schedules  from previous s / s  -  friday , december 15 , 2000  carnegie mellon  yale off - cycle candidates  thank you for your support of the associate and analyst programs .  shelly jones  recruiting manager\",0\n\"Subject: hiring of wharton tiger teams members for summer associate  positions in research  vince :  just want to confirm our conversation regarding your interest in the wharton  tiger teams 1 & 3 and your intent to hire interested members into the summer  associate program . you stated that you could take all members into your  research group for the summer . kristin gandy is now in the process of  obtaining from either you or members of your department the names of the  individuals on teams 1 & 3 . some of these individuals may have interviewed  with us during the campus process . if they did and were turned down by the  team for a summer position , we will not extend offers to those individuals .  otherwise , if you are willing to take the additional tiger team members into  your group based on the experience you and your staff have had in working  with these students , then the associate program will facilitate those offers .  at mid summer and the end of the summer , these wharton mbas ' performance will  be evaluated and cross - calibrated with other summer associates to determine  whether they receive an offer to join the full - time associate program .  offers will be given to those summer associate who achieve extremely high  performance ratings .  as soon as kristin receives the names of these individuals and determines  which members did not already interview , she will get out both a verbal and  offer to them .  as follow - up , jana giovannini , manager of staffing in career development ,  will staff those that accept our offer from this tiger team list into your  group for the summer .  should you have any questions or concerns , please feel free to contact me .  regards ,  celeste roberts\",0\n\"Subject: associate / analyst super saturday participation - additional request  additional interviewer participation is requested for october 28 & november  4 .  also , please note the school / date changes ( in red ) . this change was  necessary due to the number of candidates participating in super saturday .  if you have a change in your participation as a result of the date change ,  please contact john harrison , ext . 3 - 7811 for revisions .  thank you  shelly jones  enron managing directors , vice presidents , directors , and managers who  utilize the associate / analyst pool  as a follow up from a \"\" save the date \"\" email regarding your participation in  the associate and analyst super saturday process , now is the time to select  your dates to attend and participate .  below are the dates for super saturday weekends during the upcoming  recruiting season . if you are houston - based or if you know you will be in  houston on business at the appropriate times please click the link below to  volunteer .  ( when selecting dates please avoid selecting to interview candidates who  attend the schools for which you are a team member . )  associates analysts  october 27 - 28 , 2000 november 3 - 4  thunderbird , ut , georgetown , rice rice , ut , baylor , a & m , ou , florida , lsu ,  uhcl  november 10 - 11 , 2000 november , 17 - 18 , 2000  columbia , stern nyu , ucla , darden , cornell penn , uva , vanderbilt , michigan ,  howard , auc ,  vanderbilt , michigan uhmain and clear lake , lsu  december , 1 - 2 , 2000 december 8 - 9 , 20000  chicago , kellogg , harvard , wharton , mit wellesley , overflow and re - schedules  from previous s / s  -  friday , december 15 , 2000  carnegie mellon  yale off - cycle candidates  thank you for your support of the associate and analyst programs .  shelly jones  recruiting manager\",0\n\"Subject: ees operational risk  per our conversation , here is the model that i have for simon . the notes  that i gave you were from some work i did back in september as i was looking  for volume numbers . the notes show what drives the final cash flow numbers .  briefly , the issue surrounds exactly what is meant by nonmarket and  noncredit risk . ideally , this would be anything that effects npv of the  deal . however , i think that we should limit ourselves to those things that  effect the time and amount of the eam volumes . even here , such a problem set  is quite large . if you glance at the spreadsheet model , you will notice that  there exists a large number of possible items that effect the eam volumes .  if we are to do this rigorously , then it is necessary to tear apart ees ' s  business model , and although such an attempt to do so would be noble , the  scope of such an excercise may be too large . we need a clear definition of  ees operational risk .  briefly , from the ees deals that i have looked at , two things drive their  profit : a long term bet that power prices will go down , and that we can  improve the facility through various enhancements . each of these may be  gleaned from the spreadsheet , as well as the assumptions regarding the  funding of the facility improvements and so on . 95 % of the savings is  assumed to come from power , and 5 % from gas . ( the effeciency gain may not be  explicitly given ) . if we have data that show the realized efficiency gains ,  then it would be simple [ in principle ] to determine a distribution , and hence  a distribution of eam volumes , npv ' s , etc . at this time , i understand that  rac has determined some of the realized efficiency gains , but my knowledge is  quite sketchy . jay hachen may have more info .  if i get a chance , i will try to see if i can do a \"\" proof of concept \"\"  excercise , but i have a late january deadline on something else .  another point : even if we are successful in doing this for the spreadsheet  model , ees has chosen to book things differently . i do not have a thorough  understanding of their it systems , but at least in principle , if we can do  this for the spreadsheet model , then we can do it in their it environment  ( data are data are data ) . they may book efficiency gains through improvement  type , such as gains due to compressors , chillers , boilers , etc . if this is  indeed the case , then we need to have distributions for each type of  improvement .  if we are successful on the spreadsheet and not successful with their it  systems , then the other alternative is to build our own reporting system . it  would be similar to a database where the recordsets are replaced by excel  workbooks . it can be constructed in such a way as to enable us to run  simulations and queries , but this would probably take me about five or six  weeks .  finally , don hawkins does operational audits for enron ' s physical assets .  he sends out teams to audit our pipelines and strategic assets . i don ' t  think that he does it for ees , but you might want to give him a call anyway .  - kevin k .  ps : the ees lunch meeting has been moved to wednesdays . jay hachen will  know more .\",0\n\"Subject: rice program in financial engineering  dear vince ,  tony and i are looking forward to meeting with you tomorrow  ( thurs . ) at 10 a . m . regarding the rice iniative in financial  engineering . attached to this message is our draft plan for  the proposed undergraduate program ; i will also bring a copy  to the meeting in the morning .  see you tomorrow !  best regards ,  kathy  katherine bennett ensor  professor and chairperson  department of statistics , ms 138  rice university  houston , tx 77251 - 1892  ensor @ rice . edu  phone : ( 713 ) 527 4687  fax : ( 713 ) 285 5476  - draft - plano 2 . doc\",0\n\"Subject: storage model back - testing  brad ,  with your success in automation of the testing , we can go ahead to test  storage cycles as follows  april 95 - march 96  april 96 - march 97  april 97 - march 98  april 98 - march 99  april 99 - march 00  this way we can collect 5 years data for further analysis .  zimin\",0\n\"Subject: california 1 / 17 / 01 pt . ii  one of the issues we have been following with respect to the california power  crisis concerns the role of prospective broader federal involvement in the  issue post - inauguration . in the last two days , we have seen two signals  suggesting that the bush administration will not significantly deviate from  the \"\" broker \"\" role played by the clinton white house :  1 . in his confirmation hearing this morning , treasury secretary - designate  o ' neill cautioned that \"\" it is not clear that us intervention is needed in  california \"\" and that the \"\" governor must be the first line of defense . \"\"  2 . a source close to bush economic advisor larry lindsey reported to us  yesterday that \"\" there was little that the federal government could do  specifically to help , beyond focusing on national issues ( increased  production , transmission capacity etc . ) . \"\"  of course , the bush treasury officials are likely to be more cautious with  respect to intervention than the energy team , as was true with the clinton  administration . yet lindsey in particular is unlikely to deviate far from  the official bush view at this stage . further guidance should be forthcoming  with respect to this issue from energy secretary - designate spence abraham ' s  testimony tomorrow .\",0\n\"Subject: move locations  sorry ,  the churn has been turned in as of 4 / 15 / 00 therefore locations  are as follows .  tricia tlapek - eb 3273 a  vince kaminski - eb 3273 b  sam smith - eb 3273 c  michael sergeev - eb 3274 a  jason sokolov - eb 3274 b  vacant - eb 3274 c  this is where all equipment and items should be labelled .  i am so sorry that we could not make changes on short notice .  thanks  kevin moore\",0\n\"Subject: website : data _ research _ pub  please approve or reject this request .  thank you ,  information risk management ( et )  - - - - - - - - - - - - - - - - - - - - - - forwarded by information risk management / hou / ect on  04 / 28 / 2000 09 : 33 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  security resource request system  directory line item pending access processing  directory name : website : data _ research _ pub  service type : grant  expiration date :  comments : this is an urgent request . please process asap .  security processing  processing status :  e - mail message :  comments / justification : 04 / 28 / 00 emailed vince kaminski for approval  general information request : kgme - 4 jlej 2  requested by : kevin g moore / hou / ect phone : 713 / 853 - 4710  requested for : jose marquez employee type :  company : 100038 rc # : 0011  priority : high  comments / justification : he needs access to the y drive  editing history ( only the last five ( 5 ) are shown )  edit # past authors edit dates  1  2 information risk management  information risk management 04 / 28 / 2000 09 : 32 : 58 am  04 / 28 / 2000 09 : 33 : 46 am\",0\n\"Subject: re : jeff skilling ' s presentation  i want to thank all of you for all your help !  alhamd alkhayat  enron corp .  + 1 ( 713 ) 853 - 0315  this message ( including any attachments ) contains confidential information  intended for a specific individual and purpose , and is protected by law . if  you are not the intended recipient , you should delete this message and are  hereby notified that any disclosure , copying , or distribution of this  message , or the taking of any action based on it , is strictly prohibited .  - - - - - forwarded by alhamd alkhayat / na / enron on 12 / 14 / 2000 02 : 15 pm - - - - -  sent by : \"\" daron peschel \"\"  12 / 14 / 2000 01 : 57 pm  please respond to \"\" daron peschel \"\"  to : sherri . sera @ enron . com  cc : alhamd . alkhayat @ enron . com  subject : re : jeff skilling ' s presentation  sherri and alhamd ,  just wanted to let you know that i heard jeff skilling really  impressed chairman greenspan this morning ( i did not attend the  meeting . )  thanks for all you help making sure the presentation went off without  a hitch .  daron  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ reply separator  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  subject : jeff skilling ' s presentation  author : sherri . sera @ enron . com at notesmail  date : 12 / 12 / 00 10 : 01 am  daron ,  we are not yet finished with jeff ' s presentation , and probably won ' t be  completely finished until tomorrow afternoon - just about the time that  jeff will leave for dallas . in addition , e - mailing the complete  presentation may not be an option due to the size of the file .  i ' ve asked hamd to e - mail you want we have right now so that you can test  it with your system . we ' ll then send a cd with the entire presentation  along with jeff to dallas . i ' ll ask jeff to deliver it to you at the  dinner wednesday evening , so perhaps your av people can test it that night .  daron , i apologize for any inconvenience this may cause . if you have  another idea as to how to handle this situation , we ' re certainly willing to  entertain it .  thanks , srs\",0\n\"Subject: amerada hess day rate hedge numbers  attached are the historical numbers for the semi - submersibles 4 th and 5 th  generation day rates . their price is 155 , 000 / day for the next 4 years . i  would think that a floor of $ 100 , 000 would be the place to start jan 1 , 2001  through dec 31 , 2004 . we need to know the call strike that would make it  costless .  i plan on making some examples discussion purposes to discuss with them on  friday of this week . i will update you asap on the balance of day rate  prices . let me know what else you will need to prepare the statistical  analysis . the numbers include highs and lows ; let me know your ideas on how  to address this in the quote .  thanks ,  john  30395\",0\n\"Subject: your talk on 2 / 7 / 00 ( monday ) ( fwd )  vince : a minor revision of my earlier email shown below . the last line  should read ' i will be waiting in my office from 6 : 30 - 6 : 50 for your call  . . . ' my office phone is 713 743 4716 . sorry that i have to resend this  email . ed  - - - - - - - - - - forwarded message - - - - - - - - - -  date : thu , 3 feb 2000 08 : 17 : 40 - 0600 ( cst )  from : edward kao  to : vince j kaminski  subject : your talk on 2 / 7 / 00 ( monday )  dear vince :  i would like to send out an annoucement about your talk in my risk  management in the energy sector course on february 7 , monday . is it  correct that the name of your talk will be \"\" commodity trading in the  energy sector \"\" . you indicated that you would be using transparencies so  we have a projector ready for you . please let me know if there is  anything else you need for the talk . please also confirm this at your  earliest convenience so that i can get announcement sent out soon . thanks  in advance for the talk . we all look forward to meeting you monday .  best regards , ed  ps . the class meet 7 : 00 - 8 : 20 pm at 117 meclcher hall . as we originally  planned , i will be waiting in my office from 6 : 30 - 6 : 50 and greet you at  the parking lot ie .\",0\n\"Subject: resumes  charlene ,  i am sending you as promised the information i have about 3 of our summer  interns .  i shall fax you this morning two additional resumes i have in hard copy .  in the case of paulo rocha we don ' t have a formal  resume , just a letter from him with the summary of his skills .  thanks for your help . enron desperately needs this talent .  vince\",0\n\"Subject: re : eol  clayton ,  great news . i would like to sit down with you , tom and stinson and review  where  we are with this project . also , i would like to talk to you about your  status ( finalizing  the transfer to another group ) .  vince  clayton vernon @ enron  01 / 18 / 2001 03 : 21 pm  to : vasant shanbhogue / hou / ect @ ect  cc : stinson gibner / hou / ect @ ect , vince j kaminski / hou / ect @ ect  subject : eol  vasant -  dave delaney called an hour ago . he needed a statistic from eol that the eol  folks couldn ' t give him ( it seems they had a database problem in 1999 ) , and  the grapevine had it we had the data . tom barkley was able to give him the  data he needed for his presentation , within a matter of 10 minutes or so .  clayton\",0\n\"Subject: re : pending approval for ibuyit request for wincenty ( vince )  kaminski : eva : remedy 412144  vince ,  welcome to ibuyit , enron ' s integrated procurement through payment solution .  your ibuyit security form has been processed . here is your ibuyit eprocurement logon information :  user id : po 0503778  password : your date of birth ( format : yyyymmdd - - 19670120 for january 20 , 1967 )  important : when you first log on to ibuyit eprocurement , you will be prompted to change your password . you may use the same password you enter when logging on to other sap - related applications , e . g . , ehronline . should you select a new password , your password in other sap - related applications will automatically reset . you only need one password for your sap user id ( pid ) .  ready to launch ibuyit eprocurement ? access it from the ibuyit portal :  for step - by - step documentation on ibuyit eprocurement , click here :  for help , call the isc call center at 713 - 345 - 4727 .  if you have any question regarding this request , please contact sap security .  thanks !  from : raul davila / enron @ enronxgate on 04 / 19 / 2001 06 : 02 pm  to : sap security @ enron  cc :  subject : re : pending approval for ibuyit request for wincenty ( vince ) kaminski : eva : remedy 412144  approved  - - - - - original message - - - - -  from : tow , eva on behalf of sap security  sent : thursday , april 19 , 2001 5 : 39 pm  to : davila , raul  cc : vkamins @ enron . com ; crenshaw , shirley  subject : re : pending approval for ibuyit request for wincenty ( vince ) kaminski : eva : remedy 412144  raul ,  raul ,  vince kaminiski is requesting acces to the technical view for catalog along with the ibuyit approval role . this is pending your approval . please send your response to sap security .  thanks !  shirley crenshaw @ ect  04 / 19 / 2001 03 : 01 pm  to : sapsecurity @ enron . com  cc : vince j kaminski / hou / ect @ ect  subject : ibuyit form  attached please find the completed form for vince kaminski , managing  director , research group .  he will be approving all purchases for cost center 107043 .  >  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 19 / 2001 02 : 58 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : debbie skinner / enron @ enronxgate on 04 / 19 / 2001 02 : 52 pm  to : shirley crenshaw / houston / eott @ eott , shirley crenshaw / hou / ect @ ect  cc :  subject : ibuyit form  hi shirley  there were two shirleys , so sending to both  >  isc help desk \",0\n\"Subject: re :  shan ,  it ' s nice to hear from you . congratulations on the new job .  ft is my favorite publication i never miss ( and i read a number  of different ft publications , including ft energy collection ) .  you can contact harry arora ( x 6750 ) here in london who works on  finance related e - commerce projects . he may give you some useful  comments . i shall be myself very interested in the first issue  of your new publication .  regards  vince  shan . millie @ ft . com ( shan millie ) on 08 / 08 / 2000 08 : 50 : 45 am  to : vince j kaminski / hou / ect @ ect  cc :  subject :  hullo , vince :  i hope you ' re very well . as you can see , i am now working for the ft ' s  magazine publishing business ; i have responsibility for what ' s currently  termed  the expatriate division and i ' ve just passed my statutory probationary period  of 3 months . apologies for not contacting you sooner - but i guess you knew  you ' d hear from me sooner or later , especially when i need help ! having  gotten  thru probation , i am set loose upon new projects . . . . . . i ' m investigating  several  ideas for new magazine product and wondered if you would be able to comment on  one of them .  very basically , i want to develop a magazine product for the international  private investor , specifically  o hnwis  o owner - managers  o results - oriented but intelligent investor with long - term investment goals  and  a desire to be able to converse with their private bankers and / or brokers on  something approaching equal terms  the product would be delivered monthly and cater to the developing breed of  private international investor who prefers to make informed decisions - for  themselves . the product would aim to cover the major asset classes , including  the \"\" wilder shores \"\" such as hedge funds and emerging markets . i am working on  a  portal site ( imaginatively entitled ftexpat . com ! ) , nested within ft . com , which  will launch in october ; international investment will be a significant channel  on the site , and a key distribution / marketing channel for this ( and future )  offering . at this very early stage i am testing out the reaction to the notion  of such a product - do you have one ? would you be able to suggest any other  contacts who might be willing / able to share their thoughts with me ? i know  it ' s  not bang in your sphere but i ' m hoping you ' ll be interested enough to share  your thoughts with me .  if you can give me a few pointers , i ' d be grateful . looking forward to hearing  from you ,  sh ? n  44 - 20 - 7896 - 2310  * please visit the web site of the financial times at : *  * http : / / www . ft . com *  * *  * this e - mail is intended for the use of the addressee only and may *  * contain confidential information . if you are not the intended *  * recipient , you are hereby notified that any use or dissemination *  * of this communication is strictly prohibited . *  * if you receive this transmission in error , please notify us *  * immediately then delete this e - mail .  * *  * *  * postmaster @ ft . com * \",0\n\"Subject: exploratory interview for grant masson ' s support for power trading  hi kathy :  attached is the resume for lance cunningham , who is a phd candidate from  the university of texas .  grant masson would like to bring him in for an exploratory interview at his  convenience . the position he would be interviewing for is : manager ,  transmission / power trading support , reporting to grant masson .  the interviewees would be :  grant masson *  vince kaminski *  martin lin  zimin lu  george hopley *  bill rust  it is essential that the ones marked with an asterik interview him , but it  would be great if the others could also .  if you need any more information , please let me know .  thanks and have a great day !  - enron gm . doc  - lcunningham resume . doc\",0\n\"Subject: re :  wicek ,  wyslalem ci nasza ksiazke razem z kilkoma pracami  matematyczno / finansowo / energetycznymi i dwa egzemplarze rynku terminowego ,  w ktorym od 2000 roku jest dzial poswiecony rynkowi energii ( jego  redaktorem jest alek ) . mam nadzieje , ze to cie zainteresuje .  ksiazka jest zainteresowany cambridge university press i w tej chwili jest  recenzowany draft angielskiej wersji ( mozesz do sciagnac ze strony :  http : / / www . im . pwr . wroc . pl / ~ rweron / gene . html ) . angielski jest jeszcze  slaby ( tlumaczyla moja studentka ) , ale da sie czytac . w ostatecznej wersji  planujemy pare zmian . jakbys mial czas to przegladnij ksiazke , wszelkie  uwagi bardzo mile widziane .  rafal\",0\n\"Subject: updated credit support model  latest model  vasant  - - - - - - - - - - - - - - - - - - - - - - forwarded by vasant shanbhogue / hou / ect on 10 / 10 / 2000  11 : 59 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  andy west @ enron 10 / 06 / 2000 02 : 15 pm  to : vasant shanbhogue / hou / ect @ ect  cc :  subject : updated credit support model  attached is an updated credit support model that you were working with for  jodi coulter . the same sheets - paperco credit and data - are the sheets to  key on . please let me know if you have any questions .  andy  x . 37685\",0\n\"Subject: visit by professor shijie deng on friday , july 28 , 2000  professor shijie deng , assistant professor , school of industrial and systems  engineering , georgia institute of technology will be spending friday , july  28 , 2000 with the research group . he will be doing a presentation from 1 : 00  pm to 2 : 30 pm in conference room 49 c 4 . his field of expertise is :  financial asset pricing and real options valuation  financial engineering applications in energy commodity markets  transmission pricing in electric power systems  applications of contract theory in supply chain modeling  please plan to attend .\",0\n\"Subject: new position ( sam smith )  norma ,  the need for a new position within the research group has evolved along with  our expanding responsibilities , and we would like to fill that position with  an already on - board employee familiar with same , that person being william  ( sam ) smith .  the new position created it that for a staff specialist , who would be  responsible for technical duties including evaluation and quality control of  weather forecasting procedures , design and preparation of the research  intelligence intelligence newsletter , operational responsibilities related to  morning report assembly , and hurricane season surveillance as well as  satellite system supervision . .  we would like to make this retroactive to january lst of this year .  - - - mike roberts\",0\n\"Subject: re : follow - up on siam workshop  thanks for forwarding peter ' s resume . by copy of this memo i am forwarding  peter ' s resume to danny mccarty and phil lowry . danny and phil : please  follow - up with vince if you have an interest in meeting with peter . he seems  to be a very qualified candidate .  vince j kaminski @ ect  04 / 30 / 2001 02 : 28 pm  to : stanley horton / corp / enron @ enron , danny mccarty / et & s / enron @ enron  cc : vince j kaminski / hou / ect @ ect  subject : follow - up on siam workshop  i am forwarding for your attention the resume of peter percell  who has an extensive experience in modeling physical flows  of natural gas in pipeline systems . peter is looking currently for a job .  i met him last week at the meeting of the science and industry advance with  mathematics  society at the university of houston .  the application of recent developments in optimization theory  and numerical methods can help enron to improve further  efficiency of our pipeline system and reduce the consumption of compressor  fuel .  please , let me know if you interested in introducing peter to executives  in your organization . i shall be glad to make arrangements for an interview .  vince kaminski  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 30 / 2001  02 : 17 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  peter percell on 04 / 30 / 2001 11 : 16 : 58 am  to : vincent kaminski  cc :  subject : follow - up on siam workshop  i enjoyed your presentation , and meeting you briefly afterwards , at the  siam workshop last friday .  i have extensive experience as a technical leader in the design and  development of modeling and simulation software products , mostly  for the oil and gas pipeline industry .  i am looking for a position that can utilize my software development and  mathematical skills . getting out of the narrow confines of the pipeline  simulation industry would be a plus .  please consider whether i might fit in your group . your answer to a  question indicated that i have several of the skills you look for .  also , please let me know , by email , the names and contact information of  other managers within enron who might benefit from having someone with  my qualifications in their group .  attached are my resume and an addendum covering academic & consulting  experience . publications are available on request .  i will call you in a couple of days to follow up on this email .  thank you for your time .  peter percell 10030 doliver drive  percell @ swbell . net houston , tx 77042 - 2016  ( 713 ) 532 - 3836 voice & fax  - percell , peter resume only . doc  - percell , peter a & c exp . doc\",0\n\"Subject: re : from a previous summer intern  dear giuseppe :  unfortunately , i am no longer with the associate and analyst recruiting  department and will be unable to assist you directly . please contact tracy  warner , who is now responsible for recruiting . she will be able to assist  you directly . tracy can be contacted at tracy . warner @ enron . com . i would  also recommend having vince kaminski contact her as well to ensure that all  communications are in order .  best regards ,  celeste roberts  giuseppe andrea paleologo @ stanford . edu on 04 / 20 / 2001  01 : 53 : 39 pm  please respond to gappy @ stanford . edu  sent by : gappy @ stanford . edu  to : celeste roberts  cc :  subject : from a previous summer intern  celeste , my name is giuseppe a . paleologo and you amy remember me : i was  a summer intern last summer in the research group , and attended the  hiring event this year at stanford . in that occasion i had an informal  offer from vince kaminski , and the assurance that i would receive a  written one in the following two weeks , but since then i have not  received any letter from enron . i would like to know if the offer is  still valid , and if it has been sent . i am asking because i am in the  process of evaluating my offers , and would like to wait for enron before  i make my final decision .  thanks in advance ,  giuseppe paleologo  - -  giuseppe a . paleologo  email : gappy @ stanford . edu  office phone : ( 650 ) 725 - 0541\",0\n\"Subject: re : weekly international econ review  gwyn ,  i see no reason why we cannot include the article in monday ' s issue . of  course , vince will need to review it as he does for everyone ' s material . i ' m  forwarding a copy to him with this message .  regarding the software , you can just initiate a security request online and  order it . we can put issues online the old way until they set you up with  the new stuff . by the way , i ' m going to be gone thursday and friday , so when  your new issue is ready on friday , you should send it to elena . i know she  will be here at least in the morning .  sam  gwyn koepke  10 / 17 / 2000 11 : 29 am  to : william smith / corp / enron @ enron  cc : maureen raymond / hou / ect @ ect  subject : re : weekly international econ review  sam , this is great , thanks for taking care of that so quickly ! i will check  on the software needed and get back to you today .  also , maureen and i co - authored a paper on ppp and our thai forecast that  might be appropriate for the tech corner . i ' ve attached it below . please  advise if we can get this into the tech corner for next week .  thanks ,  gwyn  from : william smith 10 / 17 / 2000 08 : 34 am  to : gwyn koepke / na / enron @ enron  cc :  subject : re : weekly international econ review  gwyn ,  i was successful in my efforts to put your new product on the web site ! have  a look ! i know elena may want to modify it a bit , but at least it ' s up  there . i have a couple of suggestions for your future efforts :  get adobe acrobat 4 . 0 , full version ( not just the reader ) - - - this will allow  you to publish it in final form from your desk .  do you have access to the y : drive ? it ' s a drive mapped off of o : \\ research  and all of the web pages are there . let me know , and if you don ' t , as long  as you have rights to o : \\ research , i can come down and map if for you .  then , all you have to do is print the new edition to pdf , then save it to the  same spot each time , and it ' s automatically online .  sam\",0\n\"Subject: iafe membership  a membership renewal form was faxed to you on 11 / 28 / 00 for vince kaminski .  we requested a \"\" full \"\" membership at the practitioner level for $ 165 . 00 and  it was charged to mr . kaminski ' s credit card .  would you please verify that you received this form ?  thank you .  shirley crenshaw  administrative coordinator  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 12 / 07 / 2000  03 : 32 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  12 / 07 / 2000 10 : 40 am  to : shirley crenshaw / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : iafe membership  shirley ,  please , renew my membership .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 12 / 07 / 2000  10 : 41 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  main @ iafe . org on 12 / 05 / 2000 03 : 47 : 45 pm  to :  cc :  subject : iafe membership  dear colleague :  we are pleased to report that we had a very exciting and productive year  with dozens of activities around the world . as we enter our 10 th year of  operations , the iafe has additional membership options available to you .  please take a moment to look at the attached membership form with the 2001  rate schedule . based on member requests , a premium membership is now being  offered that includes the annual conference at a 30 % discount , the financial  engineer of the year dinner , plus a subscription to the journal of  derivatives ( jod ) . the full membership remains as in previous years . the new  regular membership includes all membership benefits except jod . membership  is based on the calendar year january 1 - december 31 , 2001 .  membership is also available on our secured membership registration form at  our website http : / / www . iafe . org / about / join . ihtml . while on our website ,  please take a moment to visit our calendar listing upcoming events for the  new year .  if you have any questions please don ' t hesitate to contact me at  main @ iafe . org .  regards ,  donna jacobus  iafe office manager  - 2001 membership application . pdf\",0\n\"Subject: re : london , new york , houston , financial mathematics june / july 2001  vince :  are you just speaking at the one in houston ?  vince j kaminski  05 / 01 / 2001 04 : 45 pm  to : shirley crenshaw / hou / ect @ ect  cc :  subject : london , new york , houston , financial mathematics june / july 2001  fyi  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 05 / 01 / 2001  04 : 45 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" joanna vidal \"\" on 05 / 01 / 2001 03 : 43 : 11 pm  to : , \"\" geman helyette \"\" ,  , , ,  , ,  cc :  subject : london , new york , houston , financial mathematics june / july 2001  hello speakers !  ?  my name is joanna vidal and i am the coordinator for the financial  mathematics training course being in held on the following dates :  ?  london on june 28 & 29  new york on july 9 & 10  houston on july 16 & 17 ?  ?  i am in the process of preparing the speaker packs which will include an  updated contact information sheet with ? all your details . ? you will receive  this pack shortly after you confirm your addresses . ? i will list them below  and i ask that you please look it over and make any necessary corrections . ?  ?  ? my contact details , for your information are :  ?  joanna vidal  events coordinator  risk waters group  t : ( 212 ) 925 1864 ext . 197  f : ( 212 ) 925 7585  jvidal @ riskwaters . com  www . riskwaters . com  ?  thank you and i look forward to working with you .  ?  duane seppi  carnegie mellon university  graduate school of industrial administrations  pittsburgh , pa 15213 - 3890  t : 001 412 - 268 - 2298  f : 001 412 - 269 - 8896  ?  helyette geman  universite de paris dauphine  finance department au de ka grand ecole  corgy pontois , paris  france 95021  t : 00 33 60 - 807 - 4200  ?  vincent kaminski  enron credit  1400 smith street  room ebl 962  houston , tx 77002 - 7361  t : 001 713 - 853 - 3848  f : 001 713 - 646 - 2503  ?  peter nance  teknecon , inc .  1515 s . capital of texas highway  suite 101  austin , tx 78746  t : 001 512 - 732 - 7084  f : 001 512 - 732 - 7099  ?  chris harris  innogy holdings place  windmill hill business park  whitehill way  swindon , wiltshire  uk , 5 n 5 6 pb  t : 44 793 387 - 7777  f : 44 793 389 - 7811  ?  spyros maragos  dynergy , inc .  1000 louisiana street  suite 5800  houston , tx 77002  t : 011 713 - 507 - 6589  f : 001 713 - 767 - 5958  ?  ehud ronn  university of texas at austin  department of finance  mccombs school of business  austin , tx 78712 - 1179  t : 001 512 - 471 - 5853  f : 001 512 - 471 - 5073  ?  ?  ?\",0\n\"Subject: mscf speaker series  mscf speaker series  official invitation  ?  ?  it is with great pleasure and some amount of pride that i announce the next  event in the speaker series . next friday we will have the honor to host a  conference given by mr . vince kaminski head of research at enron corp . ?  ?  the ? sixth event is ? next friday ( nov 3 rd ) ! ?  from : 11 . 30 - 13 . 30  please attend ! ! !  the next event in the  student speaker series is :  friday , november 3 , 2000  11 : 30 a . m . to 12 : 30 p . m . fast lab  [ image ] vince kaminski  enron corp .  tentative student speaker series schedule 2000 - 2001  the following is a tentative schedule of the mscf student speaker series for  the 2000 - 2001 academic year . all events take place from 11 : 30 a . m . to 12 : 30  p . m . in the fast lab ( gsia 229 ) unless otherwise noted . updates are soon to  follow .  volatility curve and bond basis  august 11 , 2000  david hartney & jerry hanweck  vice president , futures and option sales j . p . morgan  price and hedging volatility contracts  september 1 , 2000  dmitry pugachevsky  deutsche bank  dmitry pugachesky is a director with otc derivatives research of deutsche  bank , where his research is primarily focussed on credit derivatives . prior  to joining deutsche bank , dmitry worked for six years with global analytics  group of bankers trust . there he developed models for emerging markets ,  interest rates , and equity derivatives and also participated in actual  trading and structuring of interest rate options . he received his phd in  applied mathematics from carnegie mellon university specializing in control  theory for stochastic processes . he has published several papers on  modelling in emerging markets and on valuation for passport options .  a measurement framework for bank liquidity risk  september 15 , 2000  raymond cote  vice president , finrad inc .  raymond cote is vice president , financial engineering at finrad inc . , a  montreal - based consulting firm offering financial management solutions that  combine advisory and systems development services to & corporations and  financial institutions .  abstract :  liquidity risk , as opposed to credit and market risks , has received little  attention in professional or academic journals . we argue that analyzing bank  liquidity risk can be viewed as a variation of credit risk analysis . after  introducing some concepts and definitions , the presentation defines a  framework allowing to measure a bank ' s structural liquidity risk . it then  shows that combining the framework with modern credit risk measurement tools  leads to a liquidity risk var measure . the presentation then offers  concluding comments on the integration of the liquidity risk measurement  framework within enterprise - wide risk management .  the impact of electronic trading on the uses of quantitative research in  equity options  september 22 , 2000  scott morris  hull group , quantitative research department  quantitative research in investment management  october 6 , 2000  raman srivastava & anna bulkovshteyn  assistant vice president , & fixed income , quantitative analysts , putman  investments  [ image ]  tba  november 3 , 2000  vince kaminski  enron corp .  fund management and market efficiency  november 10 , 2000  andrea dalton  researcher , friess associates  ( advisor to the brandywine funds ) .  tba  november 17 , 2000  jeff keifer & deb  aep  tutorial on bridge  november 24 , 2000  pierre ste - marie & punit rawal  mscf students  a corporate risk management framework  december 8 , 2000  darin aprati & brian moore  mcdonald ' s  [ image ] math speaker series schedule 2000 - 2001  [ image ] speaker series student committee  [ image ] previous speakers  ?  pierre - philippe ste - marie  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  [ image ] http : / / pstemarie . homestead . com\",0\n\"Subject: london status report - research weather effort  vince ,  fyi to give you background for tomorrow ' s telephone conference  steve is really a home - run hitter  mike  - - - - - - - - - - - - - - - - - - - - - - forwarded by mike a roberts / hou / ect on 04 / 12 / 2001  09 : 26 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron north america corp .  from : stephen bennett @ enron 04 / 12 / 2001 09 : 02 am  to : mike a roberts / hou / ect @ ect  cc :  subject : london status report  hi mike ,  before we meet with vince tomorrow - i thought we should drop you a line and  give you an idea as to what ' s been accomplished in the first week as well as  some of the challenges and problems we ' ve run into . this way we can make the  most effective use of vince ' s time .  1 ) current products and customers  in our first 3 days - we established 6 different customer groups -  representing approximately 40 traders plus additional fundamentals and  analytics folks . the groups are : uk trading , gas fundamentals , crude  trading , weather derivatives , continental power , and an internal trader  newsletter .  we ' ve built the following framework to address these customers - the key  deadlines are noted :  0800 : uk trading / weather derivatives / fundamentals : prepare a 1 to 5 day uk  specific forecast and assess the 12 z runs of the ecmwf ( and ensembles ) , the  avn as well as earthsat ' s 1 - 5 day outlook . the traders are particularly  interested in the performance of the ecmwf as it feeds all of their demand  models . we prepare a 1 page summary and give an idea as to any particular  forecast biases - whether we feel things may come in warmer or colder than  the model . we brief the traders and field questions then provide our report  to the fundamentals group .  * * in the future we would like to be able to gather raw data from the avn and  mrf to provide a series of choices which could be input into their demand  models or at least be able to give them our \"\" best pick \"\" of guidance and how  we feel things may deviate from that pick .  1030 am : obtain the uk met 6 - 10 and 1 - 5 day forecasts . provide comment for  uk trading .  1200 : uk trading / crude and products / weather derivatives : prepare a full  qualitative analysis of oz models ( mrf / nogaps / canadian / ensembles ) . produce a  6 to 10 day europe forecast and make any needed adjustments to the 1 to 5 day  forecast . produce the global weather report including a global executive  summary ; analysis of teleconnections and their expected impact ; 1 to 5 and 6  to 10 day forecasts compared to earthsat ; a 10 day city forecast table for  european cities along with the expected effect on heating demand and finally  a \"\" port status report \"\" describing weather and port conditions in 11 worldwide  ports . update traders ( uk and wx deriv ) on changes or new trends in the oz  models . provide a quality assessment of the uk met 6 to 10 and 1 to 5 day  forecast for uk trading .  1330 ( mon - wed ) : brief the crude and products groups in london and houston .  1600 : review 12 z avn for any major forecast changes and communicate changes  to traders .  weekly : produce a weather article for \"\" critical mass \"\" - internal trading  newsletter .  of course between 1000 and 1330 we are looking closely at the us weather for  support to you guys in houston . i ' m still writing the daily us executive  summary as well as producing a 6 to 10 day us forecast .  2 ) requested projects :  * gas fundamentals has asked us to provide weather information for their  morning report and website . they would like to be able to gather objective  output from as many forecast models as we can get .  * weather derivatives has asked for week ahead , month ahead , and seasonal  outlooks for temperature and precipitation . they have also asked about  creating a tradeable \"\" nao index \"\" and developing an in - house model for  forecasting nao .  * continental power has asked for temperature and precipitation outlooks for  power generation and hydro .  * gas fundamentals , uk trading , continental power , weather derivatives and  crude and products have all asked for a european summer outlook for  temperature and precipitation . we expect to have this completed tomorrow .  * the research group has asked for assistance in gathering climate data  across spain for temperature and precipitation .  3 ) leads to follow up on :  * elsa in houston asked us to contact some of the softs traders here and let  them know once we were up and running .  * contact chris mahoney to determine if we can provide and additional support  for crude and products .  * follow up on a potential morning breifing for continental power  4 ) challenges :  * we ' ve been told that we will be moving locations next week - which might  entail corrupting or loosing the software and hardware configurations that  have taken almost a week to get fully established . it seems that this office  functions on a \"\" hot desk \"\" system where people are constantly moving around .  this will make it very difficult to stay connected - as well as very  difficult for our customers to identify us .  * administrative detail take an inordinate amount of time . assembling  reports both physical and electronic can take nearly as long as actually  preparing the reports !  - - -  mike ,  ok - i think that brings you up to speed . i ' ve been amazed at the amount of  feedback we ' ve already gotten and we ' ve only been here 3 days ! on that note  i wanted to let you know that i am fully committed to this project . it seems  that we will not have a second meteorologist to assist tony by my planned  departure date on the 20 th . as such - i can continue in my current role  through my planned vacation - keeping me in london until the 27 th - which is  my current reservation back to houston . i am also open to remaining in  london beyond the 27 th to ensure the success of this project .  hopefully this gives you a good idea as to what ' s gone on in the first few  days here . we look forward to talking to you later today and with you and  vince tomorrow .\",0\n\"Subject: re : green card  norma : you are correct in that sevil and i have spoken about her green card ,  and before we can proceed with this , we need to transfer her from the fl visa  to an hib visa , which we will do later this year .  sevil : please contact me approx . june or july so that we can start the hib  process .  thanks  margaret  from : norma villarreal / enron @ enronxgate on 03 / 08 / 2001 06 : 31 pm  to : sevil yaman / corp / enron @ enron , margaret daffin / hou / ect @ ect  cc : norma villarreal / hou / ect @ enron , vince j kaminski / hou / ect @ ect  subject : re : green card  sevil ,  i believe you and margret daffin have spoken about the next steps for your  green card . you will need to start working on you hib at the begining of  october 2001 .  if there is any confusion on my part please let me know .  norma villarreal  x 31545  below is dicussion between margret daffin and sevil in an e : mail january 26 ,  2001 :  \"\" sevil : first of all we have to get you an hib visa before we can work on  getting you the green card .  after you get your opt , contact me sometime in the summer and i will start  working on your hib visa which we will obtain in approx . october , 2001 . we  cannot start the green card process when you are still on an fl visa - you  have to be on an hib visa . there is no rush - you will have six years on the  hib visa - plenty of time in which to get the green card . \"\"  this was in reference to her note to me , as follows :  \"\" i think i ' ll have time approximately until the end of 2002 by using cpt and  opt . this makes almost two years . if we can start green card process now , do  you think that i would get it before i need hl . in every case , can ' t we start  green card before i get hl ? because i don ' t want to waste these two years  given the fact that green card process is a long process . \"\"  - - - - - original message - - - - -  from : yaman , sevil  sent : thursday , march 08 , 2001 3 : 59 pm  to : daffin , margaret  cc : norma villarreal / hou / ect @ enron  subject : green card  i haven ' t heard back from any of you regarding my immigration status . could  you please get back to me with the information about the initialization of my  green card process ? thank you .  sevil yaman  eb 1943  x 58083\",0\n\"Subject: hi amitava ,  as we discussed this morning , i have created the attached spreadsheet  for our \"\" to dos \"\" for the the credit guys .  please take a look at it to make sure it is okay , make any changes , etc .  in the mean time i will work on the data vendor research , order eviews ,  etc . . . . . .  thanks ,  iris\",0\n\"Subject: workshop  dear vince ,  i would be delighted if you agreed to share with me  a one - day workshop before a major icbi conference  in berlin , on june 19 . the topics would be similar ; we  may add real options . could you answer me before  tuesday ?  kind regards  helyette\",0\n\"Subject: follow up to last week  vince - appreciate you taking the time to dicuss some of our ongoing  quantitative challenges . just wanted to confirm with you the next steps we  agreed to :  research to develop a working prototype of a private firm model by aug . 2001  this effort will include evaluating existing private firm models  houston research to allocate a full time resource , who is willing to spend a  significant amount of time in london ( at least initially ) to kick off the  effort  please let me know if i have missed something .  thanks  bryan\",0\n\"Subject: post visit - enron  vince and christie :  again , many thanks for inviting and hosting the tiger team for an on - site  visit . it was a wonderful opportunity to meet and attend the very  informative briefings from the many senior level contacts you provided to  learn more about enron overall . it was enlightening and exciting to learn so  much about enron . what a great company ! the trip got rave reviews from the  students . you were delightful and most accommodating hosts .  as for the project , i am in the process of confirming dates and locations  for the weekly thursday ( 4 : 00 - 6 : 00 pm est ) videoconferences with enron and  will copy you on the email to the students . i know they are anxious to begin  to narrow the scope as soon as possible so that can begin the research and  analysis of their particular projects .  thank you for your time and support of the project .  sincerely ,  donna piazze  program director  field application project  the wharton school  univ . of pennsylvania  215 . 573 . 8394 fax 215 . 573 . 5727  fap @ management . wharton . upenn . edu  piazze @ wharton . upenn . edu\",0\n\"Subject: re : a visit  dear mr . fujita :  thank you for you interest in enron . i shall be honored if you visit enron  and i shall invite other employees of the company to the meeting .  please , call my assistant , shirley crenshaw ( 713 853 5290 ) to discuss the  exact time of your visit . she will be trying to reach you from our end .  the copy right for the book belongs to the risk magazine . i shall give you  the contact at the company  with whom you can discuss the japanese version issues .  sincerely ,  vince kaminski  masayuki fujita on 03 / 31 / 2000 08 : 36 : 00 am  to : vkamins @ enron . com  cc : eugenio perez  subject : a visit  professor vincent kaminski  vice president of research  enron corp .  dear professor kaminski  i , masayuki fujita was the only japanese attendee of the energy  derivatives seminar  in houston last december and a member of japanese consultation firm :  mitsubishi research  institute , inc . i would be very honored if you can meet with me 17 or 18  april after  attending energy trading summit in 12 th - 14 th . as you know , japanese  electricity trading is  on the way of deregulation beneficial to the consumers from a long stage of  the nine major  companies ' regional monopoly . we are giving a hand to help the ministry and  industry to  find the right course of them . i and my colleague yamada , who will attend risk  publications monte calro seminar in four seasons hotel , would like to visit  you and your  company for studying the sophisticated risk management at enron . in return ,  we may give  you the information about recent institutional progress and major electricity  companies  response in japan .  we are now personally translating your book \"\" managing energy price risk \"\"  second  edition and wondering if you have not given the right to publish in japanese  and nay give  us the chance to help you introduce modern technology to manage energy risk  in the  japanese energy industry .  i do not hope japanese english power prevent me to pass my sincerity to  you and i can  visit you soon .  best regards ,  masayuki fujita  principal financial engineer  financial technologies section  mitsubishi research institute , inc .  3 - 6 otemachi 2 - chome , chiyoda - ku  tokyo 100 - 8141  japan  tel + 81 - 3 - 3277 - 0582  fax + 81 - 3 - 3277 - 0521\",0\n\"Subject: approval for reviewer  shanbhogue , vasant has suggested reviewers and submitted them for your  approval . your may review / modify this list of reviewers by logging on to pep  at http : / / pep . corp . enron . com and going to supervisor services . please  remember , no feedback can be completed on shanbhogue , vasant until you have  approved the list .\",0\n\"Subject: mid - year 2000 performance feedback  note : you will receive this message each time you are selected as a reviewer .  please note that there is only two days remaining to complete feedback in the  system  you have been selected to participate in the mid - year 2000 performance  management process by providing meaningful feedback on specific employee ( s )  that have been identified for you . your feedback plays an important role in  the performance management process , and your participation is very critical  to the success of enron ' s performance management goals .  please provide feedback on the employee ( s ) listed below by accessing the  performance management system ( pep ) and completing an online feedback form as  described in the \"\" performance management quick reference guide \"\" . you may  begin your feedback input immediately . please have all feedback forms  completed by the date noted below .  if you have any questions regarding pep or your responsibility in the  process , please call the pep help desk at the following numbers :  in the u . s . : 1 - 713 - 853 - 4777 , option 4  in europe : 44 - 207 - 783 - 4040 , option 4  in canada : 1 - 403 - 974 - 6724 ( canada employees only )  or e - mail your questions to : perfmgmt @ enron . com  thank you for your participation in this important process .  the following list of employees is a cumulative list of all feedback  requests , by operating company , that have an \"\" open \"\" feedback status . an  employee ' s name will no longer appear once you have completed the feedback  form and select the \"\" submit \"\" button in pep .  review group : enron  feedback due date : jun 16 , 2000  employee name supervisor name date selected  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  ahmad , anjam dale surbey may 22 , 2000  carson , margaret m james d steffes may 26 , 2000  carson , richard l richard b buy may 22 , 2000  crenshaw , shirley j wincenty j . kaminski may 24 , 2000  ganjoo , shalesh peyton s gibner jun 15 , 2000  ghosh , soma timothy davies may 31 , 2000  kaminski , wincenty j . david w delainey jun 05 , 2000  overdyke , jere c . david w delainey jun 12 , 2000  peyton , john a randal t maffett jun 05 , 2000  thuraisingham , ravi vasant shanbhogue may 30 , 2000  vernon , clayton j vasant shanbhogue may 26 , 2000  yuan , ding richard l carson jun 02 , 2000  zipter , rudi c theodore r murphy may 25 , 2000\",0\n\"Subject: a visit  professor vincent kaminski  vice president of research  enron corp .  dear professor kaminski  i , masayuki fujita was the only japanese attendee of the energy  derivatives seminar  in houston last december and a member of japanese consultation firm :  mitsubishi research  institute , inc . i would be very honored if you can meet with me 17 or 18  april after  attending energy trading summit in 12 th - 14 th . as you know , japanese  electricity trading is  on the way of deregulation beneficial to the consumers from a long stage of  the nine major  companies ' regional monopoly . we are giving a hand to help the ministry and  industry to  find the right course of them . i and my colleague yamada , who will attend risk  publications monte calro seminar in four seasons hotel , would like to visit  you and your  company for studying the sophisticated risk management at enron . in return ,  we may give  you the information about recent institutional progress and major electricity  companies  response in japan .  we are now personally translating your book \"\" managing energy price risk \"\"  second  edition and wondering if you have not given the right to publish in japanese  and nay give  us the chance to help you introduce modern technology to manage energy risk  in the  japanese energy industry .  i do not hope japanese english power prevent me to pass my sincerity to  you and i can  visit you soon .  best regards ,  masayuki fujita  principal financial engineer  financial technologies section  mitsubishi research institute , inc .  3 - 6 otemachi 2 - chome , chiyoda - ku  tokyo 100 - 8141  japan  tel + 81 - 3 - 3277 - 0582  fax + 81 - 3 - 3277 - 0521\",0\n\"Subject: rice / enron finance seminar series  rice / enron finance seminar series participants :  we are getting ready to kick off the 2000 / 2001 enron finance seminar series  at rice university .  you can find the current schedule at http : / / www . ruf . rice . edu / ~ jgsfss / .  note that this is a new web address .  for your convenience , here are the dates and speakers lined up so far :  sept 22 jeff pontiff , u . of washington  sept 29 len mirman , u . of virginia  oct 6 charles lee , cornell  oct 13 george allayannis , darden  oct 20 william goetzmann , yale  nov 17 yacine ait - sahalia , princeton ( joint seminar with rice economics )  mar 9 paul schultz , notre dame  apr 27 luigi zingales , u . of chicago  lined up for the spring but date not yet scheduled :  tim bollerslev , duke university  matthew richardson , new york university  as changes are made to the schedule , i will notify the distribution list .  in addition , as we have done in the past , we will post the abstract and a  downloadable version of the paper ( if available ) to the website a week or  two before the seminar . the website will also provide a link to the  speaker ' s homepage so you can access his or her biographical  information . if the paper is not available at the website , i will send a  hardcopy to interested jones school faculty , to felecia jones ( economics ) ,  latha ramchand ( university of houston ) , and vince kaminski ( enron ) .  i will e - mail an announcement before each seminar , reminding you of the  seminar date , time , and location . the distribution list will include  everyone that receives this e - mail . please contact me at ostdiek @ rice . edu  if you would like to be deleted from the mailing list or if you know of  someone who should be added ( new phd students , new faculty , etc . ) .  bbo  barbara ostdiek  assistant professor of finance  jones graduate school of management  rice university  6100 main street - ms 531  houston , tx 77005 - 1892  713 - 348 - 5384 ( voice )  713 - 348 - 5251 ( fax )  ostdiek @ rice . edu  www . ruf . rice . edu / ~ ostdiek /\",0\n\"Subject: hedging  vince :  the attached article confirms that although a few relatively progressive e & p  ( and mining ) companies are beginning to absorb some of the benefits of  hedging , they still find the subject very slippery .  regards ,  - cfomagazineaprol . doc\",0\n\"Subject: re : lsu visit ( resume )  datren ,  i am forwarding your resume to our analyst / associate program .  i talked to them about my needs for the summer and i don ' t see any problem .  they should contact you shortly .  vince kaminski  datren williams on 02 / 05 / 2000 03 : 46 : 43 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : lsu visit ( resume )  mr . kaminski ,  it was a pleasure and honor to have lunch with you . i also enjoyed your  presentation in our graduate class . i hope you enjoyed your visit to  baton rouge . come back to visit us sometime ! !  attached is my resume as you suggested . thank you for your interest in  lsu and me .  sincerely ,  datren l . williams  - resume . doc\",0\n\"Subject: re : energy derivative courses  fyi  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 03 / 10 / 2000  07 : 10 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  shirley crenshaw  03 / 10 / 2000 07 : 06 am  to : lacima @ enron  cc :  subject : re : energy derivative courses  hi julie :  here is the information you requested :  name : vince kaminski  title : managing director and head of research  company : enron corp .  address : 1400 smith street - ebl 962  houston , tx 77002  telephone : ( 713 ) 853 - 3848 ( vince ) - ( 713 ) 853 - 5290 ( shirley )  fax : ( 713 ) 646 - 2503  if you need anything else , please let me know .  thanks and have a great day !  shirley  administrative coordinator  enron corp . research  lacima @ compuserve . com > on 03 / 09 / 2000 04 : 09 : 20 pm  to : enron  cc :  subject : energy derivative courses  dear shriley ,  thank you for registering vince kaminski for the energy courses to be held in  houston ,  29 - 31 march .  to complete the registration , could you please provide and confirm the  following details :  name : vince kaminski  position :  company : enron corporate research  address :  phone : 713 / 853 - 5290  fax :  we will invoice you for the course fees , and upon payment , we will forward  the pre - course  reading material via email .  the course will be held at the hyatt in downtown houston .  please contact me if you require additional information .  sincerely ,  julie brennan  lacima consultants  - - - - - - - - - - - - - forwarded message - - - - - - - - - - - - - - - - -  from : \"\" shirley crenshaw \"\" , internet : shirley . crenshaw @ enron . com  to : [ unknown ] , chris _ strickland  date : 3 / 8 / 100 5 : 20 pm  re : energy derivative courses  good afternoon professor strickland :  please register vince kaminski for both the energy derivatives : pricing  and risk management course and the v @ r course , scheduled for  march 29 , 30 and 31 st .  please forward method of payment preferred .  thank you very much .  shirley crenshaw  administrative coordinator  enron corp . research  713 / 853 - 5290  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 03 / 08 / 2000  04 : 18  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  03 / 08 / 2000 10 : 02 am  to : shirley crenshaw / hou / ect @ ect  cc :  subject : energy derivative courses  shirley ,  please , enroll me in this course .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 08 / 2000  10 : 02  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  chris strickland on 03 / 07 / 2000 12 : 20 : 40 pm  to : vince j kaminski / hou / ect @ ect , grant masson  cc :  subject : energy derivative courses  dear vince / grant ,  it was good to meet and talk with you both this morning - very interesting .  here are the details of the course ( actually there are two seperate  courses , one on var ) that i promised you .  i hope to see you both again later in the month .  best regards .  chris .  course 1 : energy derivatives : pricing and risk management  -  course leaders : dr les clewlow and dr chris strickland  houston : 29 - 30 march 2000  london : 3 - 4 april 2000  fee : stg 1950 / usd 2950  this is an intermediate course aimed at the energy professional who is  familiar with energy derivative products but who requires the mathematical  foundations of derivative pricing and an understanding of the pricing and  risk management of energy derivatives .  this course assumes that participants are familiar with standard basic  option pricing theory ( the black - scholes formula , monte carlo simulation ,  and the use of binomial trees for option pricing ) .  the format for the course will follow our usual highly practical and  successful style of alternate sessions of lectures and excel based computer  workshops . to facilitate intensive interaction , the course will be limited  to a maximum of 15 participants so early booking is advisable .  the excel based computer workshops deal with oil and gas as well as  electricity derivatives and contain detailed calculations for pricing and  risk management . at the end of the 2 days , participants leave with a  diskette containing answers to all the workshops as well as valuable code  for pricing and simulation .  registration fee includes : pre - course reading , course materials , copies of  relevant research materials , diskette with fully worked solutions to  computer workshops , lunch and refreshments . additionally , each attendee  will receive a free copy of clewlow and strickland ' s forthcoming book  \"\" energy derivatives : pricing and risk management \"\" which includes  valuable contributions from enron ' s vince kaminski and grant masson .  upon registration , participants will be sent a pack containing relevant  pre - course reading .  course outline  day 1 , am : introduction to energy derivatives modelling  energy derivatives - structures and applications  fundamentals of modeling and pricing  analysing energy data  spot price behaviour  building forward curves - assessing available models  the relationship between the spot price and forward curve dynamics  workshop : analysing the properties of energy data - mean reversion ,  volatility structures , jumps  day 1 , pm : spot price models and pricing by simulation and trees  review of spot price models  the pros and cons of spot price models  pricing standard options , swaptions , caps , floors , and collars  simulation for spot price models  pricing exotic options ( barriers , lookbacks , asians , etc . )  building and using trees for energy derivatives  building trees consistent with the forward curve  pricing options in trees  workshop : using simulation and trinomial trees to price energy  derivatives  day 2 , am : forward curve based models  forward curve dynamics and forward curve models  the relationship to spot price dynamics  multi - factor forward curve models  volatility function interpretation and estimation  pricing standard energy options  pricing energy swaptions  pricing energy exotics using simulation  workshop : using simulation to implement multi - factor models and price  energy options  day 2 , pm : risk management of energy derivatives  energy market risk and hedging  computing hedge sensitivities  determining the hedge instruments  hedging a energy derivatives book  value - at - risk in energy markets - the pros and cons of the approaches  credit risk in energy markets - issues and models  workshop : hedging an energy portfolio  please feel free to e - mail us to register for this course and we will  contact you regarding payment .  course 2 : var for energy markets  course leaders : dr les clewlow and dr chris strickland  houston : 31 march 2000  london : 5 april 2000  fee : stg 950 / usd 1950  this is an intermediate course aimed at the energy professional who is  familiar with energy derivative products but who requires an understanding  of the theory and calculation of value at risk for energy derivative  portfolios .  the format for the course will follow our usual highly practical and  successful style of alternate sessions of lectures and excel based computer  workshops . to facilitate intensive interaction the course will be limited  to a maximum of 15 participants so early booking is advisable .  the excel based computer workshops deal with oil and gas as well as  electricity derivatives . at the end of the course participants leave with a  diskette containing answers to all the workshops as well as valuable code  for pricing and var calculations .  registration fee includes : pre - course reading , course materials , copies of  relevant research materials , diskette with fully worked solutions to  computer workshops , lunch and refreshments . additionally , each attendee  will receive a free copy of clewlow and strickland ' s forthcoming book  \"\" energy derivatives : pricing and risk management \"\" .  upon registration , participants will be sent a pack containing relevant  pre - course reading .  course outline  day 1 , am : understanding the var methodologies and issues  what is var ?  uses of var  types of var methodologies  implications of applying the riskmetrics assumptions in energy markets  delta var , historical simulation  linear and non linear instruments  workshop : applying simple var methodologies in the energy market  day 1 , pm : calculation of energy portfolio var using simulation  modelling the energy forward curve - single and multi - factor  modelling the joint behaviour of different energies simultaneously  calculation of covariances and correlations  incorporating jumps  detailed example var calculation for an energy portfolio  workshop : simulating energy forward curves and calculation of var for an  energy portfolio .  dr . les clewlow and dr chris strickland hold associate research positions  at both the school of finance and economics , university of technology ,  sydney and the financial options research centre , university of warwick ,  uk . together they have over 20 years combined experience in the financial  and energy derivative markets and have published many articles in academic  and trade journals . they are the authors of the book \"\" implementing  derivatives models \"\" ( wiley , 1998 ) and editors of \"\" exotic options : the state  of the art \"\" ( itp , 1998 ) . their forthcoming book , \"\" energy derivatives :  pricing and risk management , \"\" is due to be published during the second  quarter 2000 . currently , their interests are concentrated in the energy  derivatives area , where they have developed a wide range of pricing tools  for electricity options and other energy derivatives .  - - - - - - - - - - - - - - - - - - - - - - - internet header - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  sender : shirley . crenshaw @ enron . com  received : from mailman . enron . com ( mailman . enron . com [ 192 . 152 . 140 . 66 ] )  by spamgaaa . compuserve . com ( 8 . 9 . 3 / 8 . 9 . 3 / sun - 1 . 9 ) with esmtp id raal 8057  for ; wed , 8 mar 2000 17 : 20 : 18 - 0500 ( est )  received : from dservl . ect . enron . com ( dservl . ect . enron . com [ 172 . 16 . 1 . 37 ] )  by mailman . enron . com ( 8 . 8 . 8 / 8 . 8 . 8 / corp - 1 . 03 ) with esmtp id waal 9791  for ; wed , 8 mar 2000 22 : 19 : 39 gmt  received : from notes . ect . enron . com ( notes . ect . enron . com [ 172 . 16 . 4 . 33 ] )  by dservl . ect . enron . com ( 8 . 8 . 8 / 8 . 8 . 8 ) with smtp id qaa 23887  for ; wed , 8 mar 2000 16 : 20 : 16 - 0600 ( cst )  received : by notes . ect . enron . com ( lotus smtp mta v 4 . 6 . 5 ( 863 . 2 5 - 20 - 1999 ) )  id 8625689 c . 007 ab 2 ce ; wed , 8 mar 2000 16 : 20 : 11 - 0600  x - lotus - fromdomain : ect  from : \"\" shirley crenshaw \"\"  to : chris _ strickland @ compuserve . com  message - id :  date : wed , 8 mar 2000 16 : 20 : 09 - 0600  subject : energy derivative courses  mime - version : 1 . 0  content - type : text / plain ; charset = us - ascii  content - disposition : inline\",0\n\"Subject: re : status  steve ,  welcome back . let ' s have coffee asap and review all the projects under way .  vince  from : stephen stock / enron @ enronxgate on 03 / 01 / 2001 09 : 40 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : status  hi vince ,  winston is telling me that he has started a serious of presentations to  certain members of your group to help everyone better understand the various  components that have been documented .  how is that going from your perspective ? . . . . . . are your people getting  anything out of it ?  also , the var documentation was completed last week , and i ' ve just asked for  a full printed copy of it to be created mand given to your department .  i ' ve just engaged a small team to document the credit reserve model as a  final piece and then we are done with the core documentation .  regards  steve\",0\n\"Subject: re : dash request  david ,  thanks . i cc you on my message to john sherriff .  please , let me know what you think about my comments .  vince  david gorte  05 / 15 / 2000 10 : 58 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : dash request  vince ,  i ' ll send you the dash that was done previously for the used lng tanker , the  mystic lady ( now renamed as the hoegh galleon ) . the analysis used in this  transaction was not detailed due the short time - frame we had to analyze this  transaction as well as to enron ' s right to terminate this charter for  convenience .  we are presently working on the analysis for a second , new - build lng tanker .  when this analysis has progressed far enough that we have a draft dash , i  will forward it to you ( this may be later this week ) .  regards ,  dave\",0\n\"Subject: luncheon at cera roundtable in houston  cambridge energy research associates ( cera ) is pleased that you will be  joining us on wednesday , november 1 , 2000 for our roundtable sessions at the  four seasons hotel ? in houston , texas . ? during the roundtable day , our  luncheon in between sessions will feature a special presentation from cera ' s  latin america energy expert , sondra scott , speaking about the future of  mexico ' s energy industry .  as a participant in cera ' s roundtables on november 1 , you are already  registered for this luncheon . ?  we look forward to your participation .  sincerely ,  alberto bullrich ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? lauren  laidlaw ? ? ? ? ? ? ? ?  business development ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? associate  * * special update on \"\" brazil : market rules and power plays \"\" * *  our multiclient study , \"\" brazil : market rules and power plays \"\" is now being  completed . ? this study is a powerful tool to help evaluate current and future  strategies , test investment decisions , manage uncertainty , and capture  opportunities in this exciting power market . it will serve as both a  blueprint for your immediate business planning needs and a guide for  monitoring and enhancing your strategic planning for near - and long - term  developments . ? for more information on this study , please visit our website  at http : / / eprofile . cera . com / offerings / mcs / brazpow /\",0\n\"Subject: re : risk report on \"\" guide to electricxity hedging \"\" and request fo r  gu est access to enrononline  ed ,  louise must be very busy . i sent her another message regarding your request .  i shall call her if there is no reply from her within 3 days .  please , let me know .  vince  ekrapels on 02 / 04 / 2000 01 : 58 : 59 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : risk report on \"\" guide to electricxity hedging \"\" and request fo r  gu est access to enrononline  dear vince ,  i have not heard from louise and assume i cannot access enrononline . as a  result , i have written what i can discern in the attached draft chapter for  the risk guide to electricity hedging . could you review the enrononline  section and let me know if i have any factual errors ? obviously , i welcome  any other comments you might have .  don ' t warry about any textual problems - - me editors will catch those .  english is , after all , my thrid language ( he said , defensively ) .  sorry i couldn ' t gain access . enrononline looks interesting and the stock  market seems to be giving you a strong pat on the back . well done .  thanks for your help .  ed krapels  - - - - - original message - - - - -  from : vince j kaminski [ mailto : vkamins @ ect . enron . com ]  sent : tuesday , january 18 , 2000 2 : 44 pm  to : ekrapels  cc : vince j kaminski  subject : re : risk report on \"\" guide to electricxity hedging \"\" and request  for gu est access to enrononline  ed ,  i sent a message to louise kitchen who runs the enrononline effort .  she should be getting back to you shortly .  vince  ekrapels on 01 / 18 / 2000 12 : 00 : 12 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : risk report on \"\" guide to electricxity hedging \"\" and request for gu  est  access to enrononline  dear vince ,  greetings from boston , where we ' re doing all we can to help keep the price  of gas high .  as i may have told you earlier , i ' m writing a \"\" guide to electricity hedging \"\"  for risk publications similar to the report on oil . i had planned to write a  significant section on enrononline , and in the midst of my research on the  topic was denied access by enron ' s gatekeeper . can you help get me in ?  as always , the best from here .  ed krapels  - - - - - original message - - - - -  from : donna greif [ mailto : dcorrig @ ect . enron . com ]  sent : tuesday , january 18 , 2000 12 : 37 pm  to : ekrapels @ esaibos . com  subject : request for guest access  dear mr . krapels :  thank you for requesting guest access to enrononline . unfortunately , we are  unable to give you quest access at this time .  enrononline is exclusively for those companies who can transact wholesale  energy  commodities and related products .  in addition , you had indicated within the comments section of your email  that  you are preparing a \"\" guide to electricity hedging \"\"  for risk publications . i have forwarded your inquiry to our public  relations  department along with your contact information .  should you not hear back from anyone within a reasonable amount of time ,  please  feel free to contact our call center at  713 853 - help ( 4357 ) .  sincerely ,  donna corrigan greif  enrononline help desk  713 / 853 - 9517  - attl . htm\",0\n\"Subject: sevile  norma ,  i would like to proceed on two fronts with sevile ( both hl visa and  the green card . i shall rather work hard to keep my employees happy  here than try to attach them to the job through immigration arrangements .  they can see through such arrangements and it de - motivates them .  vince\",0\n\"Subject: re : good morning  that ' s great .  john  p . s . bob parrino told me you were at ut last week . we academics really  appreciate your willingness to share your experiences with us and our  students .  at 11 : 40 am 10 / 18 / 00 - 0500 , you wrote :  >  > john ,  >  > i shall see christie tomorrow and i shall talk to her about  > the project .  >  > friday , feb 23 works for me .  >  > vince  >  >  >  >  >  > \"\" john d . martin \"\" on 10 / 18 / 2000 10 : 00 : 57 am  >  > to : vkamins @ enron . com  > cc :  > subject : good morning  >  >  > vince ,  >  > just an update for you and a question . first , i have talked to christie  > and corresponded via e - mail . we don ' t have dates to talk to lay , skilling  > and fastow as yet but christie is working on it . i will prompt her again  > next week .  >  > the second item of business is a question . i want to see if we can move  > our meeting in spring ( business education and the new economy workshop )  > back a week to friday february 23 rd . one of the attendees has a conference  > he wants to attend on march 2 nd . let me know asap if the 23 rd works for  > you . i have committments from a number of folks for the workshop and i  > think it will be great fun and a wonderful learning experience for us all .  >  > john  >  > john d . martin  > carr p . collins chair in finance  > finance department  > baylor university  > po box 98004  > waco , tx 76798  > 254 - 710 - 4473 ( office )  > 254 - 710 - 1092 ( fax )  > j _ martin @ baylor . edu  > web : http : / / hsb . baylor . edu / html / martinj / home . html  >  >  >  >  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: re : thank you  dr . kaminski ,  i can stop by any thursday or friday to meet grant . i think that will  be great for me to understand better what you are doing in your group  and i will be doing this summer . could you let me know which day would  work for you , please ?  sevil yaman  department of economics  university of houston  houston , tx 77204 - 5882  ( 713 ) 743 - 3814 / 3817  on thu , 24 feb 2000 vince . j . kaminski @ enron . com wrote :  >  > sevil .  >  > we are looking forward to having you here .  > if you want , you can stop by one day and i shall introduce you  > to grant masson with whom you will be working this summer .  >  > vince  >  >  >  >  >  > sevil yaman on 02 / 23 / 2000 10 : 09 : 30 am  >  > to : vkamins @ enron . com  > cc :  > subject : thank you  >  >  >  > hi dr . kaminski ,  >  > yesterday , i learned from shannon rogers at the associate - analyst program  > that i was offered a summer associate / internship position in your group . i  > am already very excited about this position and look forward to working in  > your group . many thanks for your consideration .  >  >  > sevil yaman  > department of economics  > university of houston  > houston , tx 77204 - 5882  > ( 713 ) 743 - 3814 / 3817  >  >  >  >  >  >  >\",0\n\"Subject: re : 2001 headcount information  dawn :  here it is !  dawn derr @ enron  07 / 07 / 2000 10 : 45 am  to : shirley crenshaw / hou / ect @ ect  cc :  subject : re : 2001 headcount information  shirley ,  get it to me as soon as you can . thanks .  dawn  shirley crenshaw @ ect  07 / 07 / 2000 09 : 11 am  to : dawn derr / corp / enron @ enron  cc :  subject : re : 2001 headcount information  dawn :  i apologize , i have not been able to pin vince down . however , he did take  it with him this morning ( he will be in prc meetings all day . ) and i told him \\  you needed it yesterday .  i hope it is not too late . let me know .  thanks  shirley  dawn derr @ enron  07 / 05 / 2000 04 : 09 pm  to : shirley crenshaw / hou / ect @ ect  cc :  subject : 2001 headcount information  shirley ,  i need the headcount information for vince ' s group no later than thursday ,  july 6 . let me know if this is a problem .  dawn\",0\n\"Subject: congratulations !  vince -  nice job , dr . managing director  hey , is \"\" constrained technical \"\" anything like \"\" constrained optimization \"\" ? : )  clayton\",0\n\"Subject: financial mathematics grad from u of c  vince and ravi ,  below is a message from the student whose resume i forwarded to you earlier  this week . vince , i suspect he may be best suited for your group , but i  don ' t know what your current needs are . unfortunately , i ' m leaving enron and  my last day is friday of this week , so i won ' t be around to help this guy  through the process or host him when he is here . can either of you suggest  someone i can ask to handle this for you if you ' re interested in him ?  thanks .  regards ,  laura  - - - - - original message - - - - -  from : \"\" laura howenstine \"\" @ enron  e + 40 enron @ enron . com ]  sent : wednesday , february 28 , 2001 3 : 32 pm  to : howenstine , laura  subject : fwd :  > from : \"\" kodjo adovor \"\"  > to :  > date : tue , 27 feb 2001 22 : 27 : 01 - 0600  >  > dear laura ,  > i will be in texas ( close to houston ) for spring break between march 17 and  > march 25 . i was wondering if vince and ravi will be interested in an  > informational interview on one of those days during lunch or something like  > that . i can just come in and talk to them about what they do and take a  look  > at the work environment . thanks .  >  > regards ,  >  > kodjo adovor  > the university of chicago  > financial mathematics  >  get your free download of msn explorer at http : / / explorer . msn . com\",0\n\"Subject: re : congratulations  right back at you . . . . . great job\",0\n\"Subject: re : storage meeting  ladies and gentlemen ,  stinson just pointed out that i forgot to mention that the meeting is  scheduled for tomorrow ( 10 th of march 2000 ) between 2 : 30 pm and 4 : 30 pm . it  may seem like a very short notice ; however , we ( mark , mary , kara , mike ,  virawan and myself ) had initially set this time and date last week . in the  future i will make sure that everyone is notified early . sorry for any  inconvenience this may have caused . thank you .  shalesh ganjoo\",0\n\"Subject: schedule  vince ,  my schedule for the risk 2001 conference in houston is :  arrive sunday 4 / 13 9 pm . ?  staying at the houstonian  depart tuesday 4 / 15 5 : 30 pm .  hopefully , we can get together .  thanks , aram ? ( cell phone 503 - 701 - 6692 )\",0\n\"Subject: re : kwi user group  vince  yes please go ahead .  david  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : 24 april 2001 23 : 35  to : djw @ kwi . com  subject : re : kwi user group  david ,  i can ask our ceo john sherriff .  please , let me know by 10 : 00 a . m . central time , wednesday .  vince  david warwick on 04 / 24 / 2001 05 : 24 : 53 pm  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc :  subject : re : kwi user group  vince  sorry to hear you cannot make it . . . you would obviously have been the big  catch ! !  in terms of a london based replacement , who did you have in mind and what  sort of subject could they cover ?  david  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : 24 april 2001 23 : 22  to : djw @ kwi . com  cc : vince . j . kaminski @ enron . com ; shirley . crenshaw @ enron . com  subject : re : kwi user group  david ,  i regret to inform you i am unable to attend the conference due to previous  commitments .  would you consider a speakers form our london office ?  vince  david warwick on 04 / 24 / 2001 09 : 47 : 31 am  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc :  subject : re : kwi user group  vince  any further thoughts on this ?  david  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : 13 april 2001 21 : 44  to : djw @ kwi . com  cc : vince . j . kaminski @ enron . com ; vkaminski @ aol . com  subject : re : kwi user group  david ,  thanks for the invitation .  i shall check my schedule on monday and will get back to you  regarding the conference .  i hope you will a very happy easter .  vince  david warwick on 04 / 12 / 2001 04 : 04 : 32 pm  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc :  subject : kwi user group  dear vince  please may i reintroduce myself . we met last year at the sydney eprm  conference which my company kwi sponsored . i chaired the session at which  you spoke .  as you may remember , my company , kwi are one of the world ' s leading  provider  of systems ( kw 3000 ) and consultancy for energy , trading and risk  management .  we have over 60 clients worldwide including many of the world ' s leading  energy companies ( not enron unfortunately ) :  north america  - tva  - ontario power  - cinergy  - bonneville power  europe  - enel  - atel  - electrabel  - edf  nordic  - vattenfall  - fortum  - sydkraft  - statkraft  - birka energi  - norsk hydro  each year we stage a \"\" kwi users forum \"\" - a 2 - day event attended by leading  trading and risk staff from our clients . last year there were about 100  delegates . the agenda primarily focusses on issues surrounding risk  management for the energy sector .  the agenda comprises keynote presentations on burning risk issues from  industry leading energy speakers and practical workshops focussed around  using our software .  this years event is at a luxury hotel in the wonderful spanish city of  barcelona and runs from the evening of sunday september 9 th to tuesday  september 11 th . the main conference dinner is on the monday evening and is  always a memorable event . this year it is in a leading barcelona restaurant  preceded by a bus tour of the city with a stop for pre - dinner drinks .  i would like to invite you to make the opening keynote address , the  highlight of the conference .  the subject could be :  * a general energy risk related topic  * a general insight into the secret of enron ' s continued success in  the energy markets  * your thoughts on the future development on energy markets ( and other  commodity related - bandwidth etc . ) worldwide  obviously , we would cover all your delagate costs including accomodation ,  food and drink .  what ' s in it for you ? many of our users are some the energy sectors  leading  risk thinkers and i ' m sure you would enjoy meeting them and exchanging  views .  please let me know if you are able to accept the invitation .  best regards  david warwick - marketing dierctor and co - founder\",0\n\"Subject: institute of international finance - annual subscription  robert johnston has asked me to charge vince ' s department for 1 / 3 of the cost  of the annual subscription to iif . the annual cost is $ 47 k . therefore the  cost for 1 / 3 is $ 15 , 666 . 67 . this information is for maureen raymond ' s use .  i will be happy to process the invoice for payment but in order for me to do  so , i will need the proper coding for vince ' s department .  please let me know if you are agreeable to this . if you have questions , you  may wish to contact robert johnston directly at 3 - 9934 .  thanks ,  sharon  5 - 7212\",0\n\"Subject: points for singh meet  vince ,  please find below a note i had prepared for wade cline who is meeting with a  representative of the prime minister ' s office tomorrow .  i think you may find these points useful .  additionally , i am attaching a copy of a small presentation i made , saturday  in mumbai on roadblocks in the power sector with special reference to wat  needs to be done to start trading ( & its benefits ) .  i have been working with the henwood team that arrived today , and i think a  good part of the data is now in place . i will be arranging meeting with some  officicals from the transmission side and gather any additional data there  too .  krishan got in last night ( i conveyed your best wishes to him ) . we will  hopefully have a useful day with henwood folks tomorrow . i look forward to  being in houston , possibly by the end of the coming week .  hope you and the team are doing well ! !  regards ,  sandeep .  - - - - - - - - - - - - - - - - - - - - - - forwarded by sandeep kohli / enron _ development on  01 / 15 / 2001 01 : 17 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  sandeep kohli  01 / 15 / 2001 01 : 17 am  to : wade cline / enron _ development @ enron _ development  cc :  subject : points for singh meet  wade ,  please find below a brief note on what i feel your tack should be with  n . k . singh ( who is supposed to be a hard negotiator ) . i am assuming here that  this will be more of an introductory meeting where both sides are feeling out  the other . the two meetings i had arranged over the weekend , would  hopefully , have given you a better idea of the thinking of at least these two  people o the issue .  incidentally , in the indian system , the governor of any state is a central  government nominee . he is the eyes and ears of the central govt . in the  state . please see basak ' s meeting in that light . the message he takes will  likely go directly to the pmo in delhi . i will therefore be working closely  to convey the right impression .  for n . k . singh clearly there are three things you would try to convey :  a description of the problem ,  some of the resultant consequences if it is not solved soon enough , and  conveying the fact that there are win - win solutions well within the goi ' s  power to implement , that would in fact enhance his reputation and the  country ' s as one that lives up to its reputation  i would be careful to make the point that we are not going to give up any  value , but are willing to be accomodative to mseb , gom , and goi needs , either  through financial re - engineering , or through getting direct access to the  market in some areas . this will also fly well with enron management that is  more comfortable with market risks than political .  describing the problem  dpc has a ppa , backed by goi mseb ' s  monthy collections not improving - are in the range of rs . 900 cr . / month  mseb , and gom clearly do not have the resources , in the short run ( 3 - 5 yrs . )  to meet these obligations ; hence central intervention is needed .  in a grid of 13000 mw ( maharashtra grid size ) , absorbing an additional 1440  mw ( phase ii ) at one go is difficult ; however if we take western region , grid  size is 42000 mw . clearly absorbing all the power in that framework is much  easier .  to this if we add northern and southern grids , we can probably evacuate out  another 500 - 700 mw through the interconnects . hence , there is definitely  value in looking at this issue at a national level .  additionally , it is not just solvable at that level , but actually answers to  the crying need for power in the country , and hence is a boon for the govt . ,  and should be treated as such .  consequences of not solving the problem  we can call upon the sovereign guarantee , which will cover our partial  payments . however , this would almost definitely lead to a deterioration of  the country ' s credit rating - put back incoming investments into the  petroleum sector ( where private participation program is about to be unveiled  in 25 o we need to get someone to negotiate with . please use  your good offices to quickly form a representative group that includes  central , state govt . , and seb representatives so that we can work on the  solution .  without active participation from pm ' s office , we are likely to waste  precious time bouncing between the seb , gom , and various ministries of goi .  hope this helps .  regards ,  sandeep .\",0\n\"Subject: thank you for power 2000  hi vince  just wanted to thank you for your participation at power 2000 last week and  for contributing to the success of the conference . the feedback we received  was absolutely glowing and we were delighted with the smooth - running of the  event . thank you for being a key part of that . as always , your presentations  went down extremely well and your presence at our events makes a big  difference , as people are alwyas keen to hear both form you personally and  from enron as a company .  as i mentioned to you , i have recently been given the responsibility of  creating and developing a new conference stream in the financial technology  sector under the waters brand , so i would like to take this opportunity to  say how much i have enjoyed working with you in the past couple of years and  to wish you the best of luck in the future . please stay in touch and if you  come to new york , please let me know so i can take you out for a drink !  best regards and thank you again both for your patience in helping me  research topics and for being so willing to participate at our events .  emma  ?  ?  emma wolfin  manager , waters conferences  tel 212 925 1864 ext 151\",0\n\"Subject: access to research project tracking database  kevin kindall brought to my attention that a number of new members in the  group may need to get access to the research projects tracking database in  lotus notes . access can be requested through use of the secutity resource  request form accessed from lotus notes . just submit the form requesting  that you be added as a user of the research group ' s research projects  tracking database .  thanks ,  - - stinson\",0\n\"Subject: lng meeting  vince ,  before i contact the london staff about next wednesday ' s meeting , i was  wondering if we could move it up a little bit . the reason is that by 2 pm in  houston it is 8 pm in london and i thought it might be difficult to round up  the crew in london at that time . please let me know if we have plans to  change the time .  thanks ,  eric\",0\n\"Subject: re : chapter 3 revisions  dear vince and grant ,  please find attached our butchering of your work ( only joking . . . ) . we ' ve  tied the chapter in with what has gone before and changed some of your  notation so that it is consistent with ours .  vince ; could you please send thru the footnotes referred to in the chapter  at your convenience . could you also please supply a full reference for  routledge , seppi , spatt ( 1999 ) .  grant ; i hope you don ' t mind we ' ve called pdjd just jd ( to fit in more with  our work ) . please also can you supply the last figure before you disappear !  do you want us to write the summary ?  many thanks again for all your efforts . it ' s all looking good .  best regards .  chris .  - - - - - original message - - - - -  from : grant masson  to : chris strickland  sent : tuesday , june 27 , 2000 8 : 54 am  subject : re : chapter 3 revisions  >  >  >  > chris :  >  > i can ' t decide if i should take your silence over the past several weeks  to mean  > that you are getting stuck into finishing up the book or you are just so  > thoroughly disgusted with our work that you would like to wash your hands  of us .  >  > i ' ve been stuck on trying to get the last figure mentioned in the chapter  into a  > format that i like . the problem is the volatility found in the  regressions is  > on the order of several hundred percent , and so when i plot the historical  data  > next to a simulated curve over the course of the year , the simulated curve  tends  > to drift up or down stupidly both in the jump diffusion and garch + jump  diffusion  > model . any suggestions would be accepted with pleasure . i wonder if i  should  > skip the figure . it seems a pity to do so however , because otherwise the  last  > section comes off as a bit of an afterthought , and i would like to present  a  > practical example . again any guidance would be appreciated .  >  > anyway , i am sending you a somewhat improved draft now ( minus only the  last  > figure ) , rather than sit on the whole thing while i stew on this bit , i  hope  > this will be useful to you . because i am leaving for holidays at the end  of the  > week , i can guarantee you that you will have a final draft before then .  >  > regards ,  > grant .  > ( see attached file : cs 260600 . doc )  >  - ed _ co 3 _ volatility . zip\",0\n\"Subject: it security and standards notice  information risk management \u0001 ) it security and standards notice  passwords  the key to maintaining information and systems security is the use of  well - selected and guarded passwords . please remember , your password is our  first line of defense . it is important that :  ? your password should be unique and only known to you .  ? your password should never be shared with someone else .  ? a password must never be written down ( i . e . post - it notes ) , stored in files  on personal computers , at workstations , hidden under keyboards , configured on  terminal hot - keys , etc .  ? passwords must be changed every 60 days .  strong password selection criteria will soon be automated for all employees .  for instructions on selecting a good password or to the view the company  password policy and standards , click here :  please keep in mind that the enron conduct of business affairs holds  employees responsible for password security . information risk management  conducts periodic audits to ensure compliance with company policy .  for any problems encountered concerning password controls , please call your  appropriate help desk ( available : 24 hrs . / day , 7 days / week ) .\",0\n\"Subject: california update 3 / 16 / 01  ? a source within the generator community confirms press reporting that coram  energy plans to file an involuntary bankruptcy early next week . through an  intermediary , we were able to corroborate this information with a senior  member of the ca iso board . coram energy is a relatively small wind  generator qf based in west vancouver , british columbia , though it also owns  wind stations in california . coram has 238 40 kw units .  ? the source believes that this filing may have been precipitated by the  fact that many people believe it would take a blackout for governor davis to  be able to get his bailout plan passed by the legislature . it is unlikely  that blackouts would happen in april or may , meaning a long wait for the  cash strapped qfs to wait to get paid .  ? the filing will be against socal .  ? in order to file an involuntary bankruptcy , coram would have to file along  with at least two other creditors owed $ 10 , 000 or more . sources report coram  has two other creditors who will file with them ( working on finding out who  they are ) .  ? sources also report that other qfs are \"\" taking legal advice \"\" on how to  proceed in light of these developments .\",0\n\"Subject: howard & lawrence for vince  hey vince !  here is a picture of howard lin and picture of lawrence ( the guy i spoke to  you about over the telephone ) and his new resume .  i will call alec tonight in london to let him know that you sent the \"\" other  howard \"\" ( howard haughton over to enron uk ) .  lawrence has banking and online experience with hsbc - he is being examined  only by one other company that i know of ( williams ) that is my competitor . he  also went to the chief investment officer of the san diego pension fund ( a  friend of mine ) . i don ' t think he is a \"\" best fit \"\" - but , if you like him - i ' ll  get him for you !  i have a great relationship with him .  ok !  thanks ,  jeff wesley  ps - i kinda like lawrence ' s \"\" look \"\" , vince .  always held in strict confidence .  jeff wesley  949 813 2241 hotline  347 487 8957 voice / fax us  + 44 ( 845 ) 3341644 uk  * get free , secure online email at http : / / www . ziplip . com / *  - howardlin . gif  - imageo 02 . jpg  - lawrenceagent 9498132241 new . doc\",0\n\"Subject: re : the package  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 23 / 2001  01 : 09 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  01 / 23 / 2001 01 : 06 pm  to : \"\" valery kholodnyi \"\" @ enron  cc :  subject : re : the package  valery ,  thanks a lot . i have received the package last week .  i was traveling and i did not have time to take a closer look at it yet .  i think about a trip to dallas sometimes in the first few days of february . i  hope you will find time for lunch . i will contact you later this week  regarding the date .  vince  \"\" valery kholodnyi \"\" on 01 / 22 / 2001 05 : 59 : 53 pm  to : vince . j . kaminski @ enron . com  cc :  subject : the package  dear vince ,  could you please acknowledge receipt of the package with a copy of my article  on  spikes in power prices , as well as copies of my books and some of my other  relevant articles , that i recently sent to you .  i look forward to hearing from you .  sincerely ,  valery\",0\n\"Subject: improved process for engaging temporary workers  as you are aware , enron utilizes temporary staffing services to satisfy  staffing requirements throughout the company . for the past several months , a  project team , representing enron \u0001 , s temporary staffing users , have researched  and evaluated alternative managed services programs to determine which source  would best meet our current and future needs in terms of quality , performance  and cost containment objectives . the business unit implementation project  team members are :  laurie koenig , operations management , ees  carolyn vigne , administration , ee & cc  linda martin , accounting & accounts payable , corporate  beverly stephens , administration , ena  norma hasenjager , human resources , et & s  peggy mccurley , administration , networks  jane ellen weaver , enron broadband services  paulette obrecht , legal , corporate  george weber , gss  in addition , eric merten ( ebs ) , kathy cook ( ee 713 - 438 - 1400 )  amy binney , sharon b . sellers \u0001 ) operations  cherri carbonara \u0001 ) marketing / communications  cynthia duhon \u0001 ) staffing partner management\",0\n\"Subject: organizational changes  given the evolution of a number of our businesses , we have decided to make an  organizational change . the change is in response to a number of factors .  first , as a part of our new initiative in enron net works , it is becoming  clear that we have the opportunity to quickly expand enron \u0001 , s underlying  business model to other commodity markets . such an expansion requires a  coordinated focus on strategy as we select and develop these opportunities .  second , the success of enrononline and the continued expansion of our  wholesale activities in north america and europe have increased the  coordination requirements across our north american and european operations .  as a result of these two factors , we are making the following organizational  changes effective immediately :  cliff baxter will move from enron north america to enron corp . as executive  vice president and chief strategy officer .  mark frevert will become chairman and ceo of north america , replacing cliff .  in addition , mark will remain chairman of enron europe .  john sherriff will become president and ceo of enron europe .  we are confident that these changes will increase the effectiveness of our  organization . please join us in congratulating cliff , mark and john on their  new responsibilities .\",0\n\"Subject: re : enl - dailyupdate - txt  you have been subscribed to enl - dailyupdate - txt with the email address  \"\" vkamins @ enron . com \"\"  to unsubscribe , send a blank email to \",0\n\"Subject: credit exposure model  bill ,  attached are the spreadsheet for the credit exposure model and the xll file .  we have  performed some tests and the numbers looked reasonable . however , more  extensive  testing using realistic data is needed . we would like to pass the model to  you so you can  have someone check it more extensively and compare the model with what you  are using .  also , please kindly inform me of any suggestions to improve the model as well  as  any problems you may find .  i can be reached at 31631 .  best ,  alex\",0\n\"Subject: conference on risk management : the state of the art , january  13 - 14 , 2000  we confirm receipt of your registration for the above - mentioned conference .  the conference will be held at new york university stern school of business ,  henry kaufman management center , 44 west 4 th street , new york city .  registration and continental breakfast will begin at 8 : 30 a . m . , when you will  receive the conference material and a name tag . meanwhile , if you have any  questions regarding the conference , please do not hesitate to contact me .  mary t . jaffier  nyu salomon center  stern school of business  44 west 4 th street , suite 9 - 160  new york , ny 10012  tel : 212 - 998 - 0706  fax : 212 - 995 - 4220  http : / / www . stern . nyu . edu / salomon\",0\n\"Subject: a resume  john ,  this is a resume i received today from my friend .  please , take a look at it . what follows below is a copy of his message to  me :  dear vincent ,  i very much would like to ask you for a career advice . i am looking for new  challenges and new professional opportunities . possibly there would be such  opportunity around yourself at enron corporation .  i trust that my strongest asset is my intellectual capital and ability to  look from new angles into complex issues . beside of the experience of  working under jacob goldfield an paul jacobson at goldman on the interest  rate swaps and proprietary desks , i was a part of research effort of john  meriwether group at salomon brothers , i headed the european interest options  desk at dkbi in london and i have managed a small hedge fund in partnership  with albert friedberg .  i hold ph . d . in mathematics from mit and i have studied under nobel  laureate in economics , bob merton .  i very much would like to apply my knowledge of capital markets , trading and  research in the field of energy markets .  with my very best regards and personal wishes ,  mark kierlanczyk  godel partners llc  67 wall street , suite 1901  new york , ny 10005  tel 212 943 5300  mkierlanczyk @ fmginy . com\",0\n\"Subject: mgmt 656 ( rice university )  here are your rosters for mgmt 656 . let me know if you need a list of  e - mail addresses as well . i will update you as student schedules change .  - pam  ( 713 - 348 - 6223 )  - 656 . doc\",0\n\"Subject: re : stressing correlations  hi , everybody ,  following up on our discussions on stressing correlations i made a  spreadsheet and a dll .  here is what it does :  in the input ( \"\" main \"\" sheet ) the user has to specify :  - the size of the correlation matrix ;  - the row and column for the element he wants to stress ( row = 1 and col = 3 in  the example )  - the integer number n _ iter ;  - the original correlation matrix .  in the output ( see sheet \"\" results \"\" ) we see 2 columns :  - the first column contains possible correlation values ( from - 1 to 1 ,  n _ iter + 1 numbers ) for the element ( 1 , 3 ) ,  - the second column contains the smallest eigenvalue for the \"\" stressed \"\"  correlation matrix  ( which is the same as the original matrix except the elements ( 1 , 3 ) and ( 3 , 1 )  which take values from - 1 to 1 ) .  thus , the user can see which values for the chosen element ( 1 , 3 ) are  permitted  ( those for which the smallest eigenvalue is positive ( marked green in the  example ) .  the user might decide that he wants to assign the correlation which is \"\" not  permitted \"\" to this particular element  ( the smallest eigenvalue is negative ) . then the user might have a few options :  1 . all the elements of the correlation matrix will be modified so that the  chosen element has the  desired correlation in it , but the change in the correlation matrix is the  \"\" smallest \"\" possible  ( in the sense of matrix norm ) ( this is my next step to do for this  spreadsheet ) .  2 . just one column ( and the corresponding row , of course ) will change , while  the rest of the matrix  will stay unchanged ( kevin ' s suggestion ) . in this case the user have to  choose which column ( and row )  he prefers to modify ( in my example - column - row 1 or column - row 3 ) .  we can discuss this approach with risk control and see how they like it . i  send you only the spreadsheet with an example now .  tanya .\",0\n\"Subject: vega v @ r , credit reserve model update  attached is a draft of the vega var implement documentation . we will discuss  this issue tomorrow .  index var and the vega var status :  because any modification of the var model has to be coded into the new  version by it , the index var model and the vega var model are on the waiting  list to get into it group ' s door . currently , they are struggling with the  credit model . accord to jonathan le , they will implement the \"\" prudency \"\"  model after the \"\" credit \"\" and before anything else . so , it ' s uncertain when  they can begin these two projects .  credit reserve model status :  new version developed by it is still in the debugging stage . two major  difference exist between the new and old versions :  1 ) old version uses delta - gammar methodology , new version uses full  evaluation . it group is not comfortable with their implementation of the  \"\" spread option \"\" and \"\" swaption \"\" evaluation . i am working with them on it .  2 ) insurance projects are new to the new version . it also wants our help too .  only after the it finishes the debugging process , could we start testing the  new version with the current one .  thanks .  vincent\",0\n\"Subject: re : invitation to my house  tony ,  great . i look forward to visiting you and your wife on april the 22 nd .  no dietary restrictions .  vince  from : anthony mends @ enron communications on 03 / 07 / 2000 03 : 52 pm  to : vince j kaminski / hou / ect @ ect @ enron  cc :  subject : re : invitation to my house  vince ,  april 22 is fine . thanks for accepting the invitation . do you have any  dietary restrictions or preferences ? please it is no trouble to tell us ( my  wife would be doing the cooking but i can speak for her ) . please let me know .  thank you ,  tony .  vince j kaminski @ ect  03 / 07 / 00 10 : 00 am  to : anthony mends / enron communications @ enron communications @ enron  cc : vince j kaminski / hou / ect @ ect , vkaminski @ aol . com  subject : re : invitation to my house  anthony ,  thanks for the invitation . what about april 22 ? i have committed to different  speaking engagements , charities , off - sites etc . for all the saturdays prior to  this date .  vince  from : anthony mends @ enron communications on 03 / 06 / 2000 02 : 18 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : invitation to my house  vince ,  i hope you are well . sorry i have not been in touch but i have been swamped  trying to build my organization simultaneously as i endeavor to understand  ebs and navigate its political terrain . quite interesting . i shall tell you  more later .  my wife , elisabeth and i would love to have you for dinner at our house any  saturday at you convenience . would please let me know which saturday would  be suitable ? we are both looking forward to it so please let me know .  thanks ,  tony\",0\n\"Subject: telephone interview with the houston research group  good morning quentin :  vince kaminski and the research group would like to conduct a telephone  interview with you sometime next week . considering the time difference  between  houston and australia , it probably makes sense to try and schedule it very  early in the morning your time , say 7 : 00 am ? it would be 5 : 00 pm here in  houston .  how does next wednesday or thursday , ( 8 / 16 or 8 / 17 ) at 7 : 00 am your time  sound ?  also , please let me know if you want to be reached at home or work .  thanks quentin and have a great day !  shirley crenshaw  administrative coordinator  enron research  713 / 853 - 5290  email : shirley . crenshaw @ enron . com\",0\n\"Subject: enron / globe  dear drs . roberts and benjamin ,  vince kaminski and i enjoyed and appreciated the opportunity to speak with  you this morning . enron is very happy to agree to participate in stanford ' s  globe project ( being conducted in partnership with mckinsey & company ) .  attached please find my business card with all of my contact information .  i look forward to hearing from dr . benjamin in the near future to begin  enron ' s involvement .  thank you !  - - christie .\",0\n\"Subject: re : schedule and more . .  jinbaek ,  may 30 sounds good . i shall inform our hr department .  i don ' t see any project i could get going with your advisor on such a short  notice .  when you come here you can determine in what area he could make  the biggest contribution to enron . i shall call or e - mail  him independently and talk to him .  vince  \"\" jinbaek kim \"\" on 05 / 07 / 2001 02 : 25 : 53 am  to :  cc :  subject : schedule and more . .  dr . kaminski ,  i think i ' ll be able to start work from the last week of may ,  but not from monday ,  probably , i ' ll be able to work from 5 / 30 ( wed ) .  will it be good ? i know it is not that much earlier than i mentioned . . 6 / 4  i am sorry .  and actually , there is an e - business conference at haas school of business ,  organized by my advisor  could you distribute the link and the attached invitation letter to groups  interested in e - business and especially procurement ?  the link is as following .  i am afraid you might forgot this i told you in the last email . . .  my advisor ( arie segev at haas school of business ; segev @ haas . berkeley . edu )  wants me to ask whether you have any idea on joint research with him  during the summer , while i am staying there .  his interest is in e - business . . ( what else . . ? )  and has expertise in e - procurement system and marketplace . . .  xml based standard such as obi , cxml , xcbl , rosettanet , biztalk . .  system interoperability study , auction and negotiation , workflow system ,  e - catalog management , digital signature , edi , etc etc . . .  many technical aspects of e - business . . .  he wants to do some kind of technical case study  that is beneficial for both enron and him .  he may travel one or two times to houston to have a meeting during the  summer .  ( and to be frankly , this will be good for me too ,  because i can have a meeting for my dissertation while he is in houston . . )  could you think about the possibility of joint research , with him ?  thank you . .  sincerely ,  jinbaek  - fcp - invite . pdf\",0\n\"Subject: interview & mike / christian  dear vince ,  1 .  quentin kerr ,  we will be pleased to do the initial due diligence in an interview . phil  taylor is contacting quentin and getting him down our sydney office from his  university in the next state - queensland .  2 .  re : christian ,  we will be very glad for christain to interact with houston research on \"\" . .  the weather forecasting technology . . \"\"  however , we are very skinny on w staff here ( like christian is our one &  only ) , and christian is doing much work for both the power & weather  business .  i was thinking that we could run with our initial idea of having mike roberts  come to sydney .  there is still time before the olympics !  will keep you posted on quentin .  regards  raymond  vince j kaminski @ ect  08 / 08 / 2000 06 : 30 am  to : paul quilkey / enron _ development @ enron _ development , raymond  yeow / enron _ development @ enron _ development  cc : vince j kaminski / hou / ect @ ect , grant masson / hou / ect @ ect  subject : thank you  paul & raymond ,  it took more than a few days to catch up after i came back from australia .  there are few things i would like to bring up to your attention .  first of all , i would like to thank you for your hospitality . i learned a lot  about the australian markets and was greatly impressed with the  quality of the people at the sydney office .  1 . the resume you sent to me and grant looks quite good .  i think it makes sense to interview this person and we can help  you with a phone interview .  2 . i have received another resume that looks very promising . i am  very interested in this guy and would be ready to bring him over  to the states where we lack desperately technical talent .  can you help us by interviewing him in sydney ?  the main determination i need from you is whether he can  function in a company like enron . as any good academic  he sent his resume in a ps format and i shall fax you a copy in case  you don ' t have a postscript reader on your system .  3 . christian werner does some really neat things on  the weather front . i would like to determine if he can help  us to upgrade our systems . can we bring him to houston  for a week to discuss the weather forecasting technology with mike  roberts and joe hrgovcic ? i think that he could learn a lot  from mike and other weather guys here how we translate  weather info into business - related information . i shall be glad to  underwrite the cost of this trip .  vince\",0\n\"Subject: re : avistar systems  - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 10 / 24 / 2000 01 : 08  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  paige cox @ enron  10 / 24 / 2000 08 : 54 am  to : kevin g moore / hou / ect @ ect  cc :  subject : re : avistar systems  you ' re welcome .  i have vince on the list now . we are installing this week and over next  weekend . we ' ll have to go to the location to see if we ' ll have to pull  additional cable to vince ' s desk . i wouldn ' t look for it to be in before next  monday .  with regards to the billing - - i will have stella ely get with you on that .  thank you for all of the info  paige  kevin g moore @ ect  10 / 24 / 2000 08 : 47 am  to : mike a roberts / hou / ect @ ect , paige cox / corp / enron @ enron , vince j  kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect  cc :  subject : avistar systems  i really appreciate you speaking with gary regarding  the avistar system .  please inform me on what i need to do to make the process  continue .  the location for the avistar is eb 3240 d .  the location belongs to vince kaminski .  if you need more information please call x 34710 .  if possible , would you please inform me as when to  expect the system connection date and time .  thanks  kevin moore\",0\n\"Subject: re : m lay response  al ,  thanks for the update . i hope that you and mark  will come up with a good plan of attack .  i can only regret that my workload does not allow me to participate  in this project .  vince  al arfsten on 01 / 25 / 2001 05 : 45 : 54 pm  to : vkamins @ enron . com  cc :  subject : m lay response  vince : i forwarded mark lay ' s reply to update you . al  received : from outbound 5 . enron . com ( 192 . 152 . 140 . 9 ) by  mailo 6 a . intermediahosting . com ( rs ver 1 . 0 . 58 s ) with smtp id 09075930 for  ; thu , 25 jan 2001 18 : 34 : 37 - 0500 ( est )  received : from nahou - msmswolpx . corp . enron . com ( [ 172 . 28 . 10 . 37 ] ) by  postmaster . enron . com ( 8 . 8 . 8 / 8 . 8 . 8 / postmaster - 1 . 00 ) with esmtp id xaal 2799 for  ; thu , 25 jan 2001 23 : 34 : 36 gmt  from : mark . lay @ enron . com  received : from nahou - lnintol . corp . enron . com ( unverified ) by  nahou - msmswolpx . corp . enron . com ( content technologies smtprs 4 . 1 . 5 ) with esmtp  id for  ; thu , 25 jan 2001 17 : 34 : 36 - 0600  to : arfsten @ bflassociates . com  x - priority : 3 ( normal )  importance : normal  date : thu , 25 jan 2001 17 : 34 : 16 - 0600  subject : re : [ fwd : new commodity marketplace opportunity ]  message - id :  x - mimetrack : serialize by router on nahou - lnintol / enron ( release 5 . 0 . 2 b  ( intl ) | 16 december 1999 ) at 01 / 25 / 2001 05 : 34 : 34 pm  mime - version : 1 . 0  content - type : text / plain ; charset = us - ascii  x - loop - detect : 1  x - mozilla - status 2 : 00000000  i did understand that you were still at the concept stage . it is a very  interesting proposal and i would like to think about it .  thanks ,  mark  - - - - - original message - - - - -  from : al arfsten @ enron  enron . com ]  sent : thursday , january 25 , 2001 10 : 45 am  to : lay , mark  subject : [ fwd : new commodity marketplace opportunity ]  mark : per our brief conversation this morning , the attached email was  sent to you yesterday . i hope that you might understand that i am  conceptually looking for \"\" founders \"\" and at the \"\" pre \"\" business plan  stage . there is an enormous problem existing with a very attractive  economic reward and willing participants needing this solution . i need  help . al arfsten 713 965 2158  content - transfer - encoding : 7 bit  x - mozilla - status 2 : 00000000  message - id :  date : wed , 24 jan 2001 15 : 49 : 37 - 0600  from : al arfsten  organization : bfl associates , ltd .  x - mailer : mozilla 4 . 7 [ en ] c - cck - mcd nscpcd 47 ( win 98 ; i )  x - accept - language : en  mime - version : 1 . 0  to : mark . lay @ enron . com  subject : new commodity marketplace opportunity  content - type : text / plain ; charset = us - ascii  mark lay : i shared confidentially with vince kaminski my developing  concept of a highly inefficient not - for - profit enterprise with  dramatically increasing costs . i believe that a for - profit economic  model is possible that should reverse these skyrocketing costs and  ultimately lower the commodity thereby having a national , if not , global  impact of health care costs . vince seems to also believe in the  concepts potential . the ceo of one of the biggest u . s . blood banks has  already asked to become involved . i would like involve more people  with vision , means and desire to help make this a reality . i would look  forward to meeting with you to talk further . al arfsten 713 965 2158\",0\n\"Subject: re : wharton tiger team # 3  i have reserved conference room 32 c 2 for thursday , feb 1 , feb 8 , and feb 15  from 3 : 30 - 5 : 30  john to teleconference in tomorrow ( feb 1 ) call 713 - 853 - 9554  please let me know if wharton is using a different number from last week so  that i can inform the scheduling people  melinda  x 31641  christie patrick @ ect  01 / 30 / 2001 06 : 34 pm  to : melinda mccarty / corp / enron @ enron  cc : jhenders @ newpower @ ees , vince j kaminski / hou / ect @ ect ,  degiacic @ wharton . upenn . edu  subject : re : wharton tiger team # 3  melinda ,  would you please coordinate john henderson into the thursday videoconference ?  thanks !  - - christie .  - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 01 / 30 / 2001  06 : 31 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  mohn henderson @ newpower  01 / 30 / 2001 04 : 13 pm  sent by : melissa corley @ newpower  to : christie patrick / hou / ect @ ect @ ees  cc : jhenders @ newpower @ ees , vince j kaminski / hou / ect @ ect , melinda  mccarty / corp / enron @ enron , degiacic @ wharton . upenn . edu  subject : re : wharton tiger team # 3  john would prefer to join the thursday call via teleconference . if you could  provide the dial in number he will call in .  thanks ,  melissa corley  john henderson  christie patrick @ ect  01 / 30 / 2001 03 : 50 pm  to : jhenders @ newpower @ ees , vince j kaminski / hou / ect @ ect  cc : melinda mccarty / corp / enron @ enron , degiacic @ wharton . upenn . edu  subject : wharton tiger team # 3  hi john and vince !  john , hopefully you received my voice mail regarding the matter set forth  below .  i ' m in ny now and won ' t return until thursday morning . perhaps it would be  easiest for john to come to the video conference on thursday ( if he ' s in  houston ) or via telephone if he ' s travelling ? ?  whatever you both think is best . . please let me know !  my assistant , melinda mccarty , is setting up the call location at the enron  building , as well as the dial - in number with donna piazze at wharton .  melinda , please include john in the distribution of the video conference  location .  thanks !  - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 01 / 30 / 2001  03 : 43 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" degiacinto , clayton \"\" on 01 / 30 / 2001 02 : 00 : 07 pm  to : \"\" ' christie . patrick @ enron . com ' \"\"  cc : \"\" feerick , dennis \"\" , \"\" lessar , stephen \"\"  , \"\" vittal , maheshram \"\" ,  \"\" bassal , omar \"\" , \"\" cummins , marc \"\"  subject : wharton tiger team # 3  christie ,  as we talked last thursday via video teleconference , we are planning to  narrow our scope to focus on a marketing / promotion plan for newpower  including value - added products and services for the future . before we talk  again on thursday , we would like to speak with john henderson again to see if  he recommends any specific items he would like us to address .  we are having trouble contacting him and wonder if you could facilitate a  phone meeting between us , or if it would be best to include him in our next  video teleconference . we are available the next two days at lpm and 4 pm  houston time .  we understand that john is a very busy person , and we appreciate any help you  can give in getting us together to ensure our work is commensurate with his  expectations .  thanks ,  enron team 3 ( retail )\",0\n\"Subject: re : meeting  sorry for the rescheduling . shalesh is unable to make it until late this  afternoon . since what we have is informal and not urgent , perhaps we can  catch you for a few minutes just sometime late today or tomorrow before you  leave . otherwise , it can wait until you return .  thanks ,  martin  vince j kaminski  09 / 19 / 2000 08 : 36 am  to : martin lin / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect  subject : re : meeting  martin ,  let ' s try bet 1 and 2 : 30 .  vince  from : martin lin on 09 / 19 / 2000 08 : 30 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : meeting  shalesh and i wanted to meet with you briefly , but this morning ' s timing  isn ' t working out . are you available this afternoon , sometime after 5 pm ?  thanks ,  martin\",0\n\"Subject: cvs of candidates for rac support role  these three guys will all be available for interview monday afternoon .  regards  ben\",0\n\"Subject: re : double - up swap  thanks  thor  vince j kaminski  12 / 12 / 2000 15 : 18  to : thor lien / osl / ect @ ect  cc : vince j kaminski / hou / ect @ ect , paulo issler / hou / ect @ ect  subject : re : double - up swap  thor ,  we have modeled this structure a few times in the past .  paulo issler will call you shortly to talk about it .  vince  thor lien  12 / 12 / 2000 03 : 02 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : double - up swap  vince  do we have any models to use on this product for power ?  thor\",0\n\"Subject: re : hello  hello ,  i just received your message .  are still in nyc ? i like it a lot .  i wish my job was associated with traveling .  according to saturday meeting - i will be there .  have a save trip back home .  patrycja  from : vkaminski @ aol . com save address - block sender  to : pdalecka @ hotmail . com save address  cc : vkaminski @ aol . com save address  subject : re : hello  date : mon , 13 mar 2000 23 : 22 : 26 est  reply reply all forward delete previous next close  hello patrycja ,  greetings from the big apple .  saturday works for me . let ' s meet at 4 : 00 p . m . at carrabba ' s . it ' s an  italian  restaurant on i - 45 in the woodlands . after you pass conroe , take the  research  forest exit ( 5 - 10 miles past conroe ) and stay on the feeder road . go  through  the lights ( research forest intersection with i - 45 ) . as you continue along  the feeder road you will pass on your right the woodlands mall and the  exxonmobil building , . the restaurant will be on your right , about 200 - 300  yards before the next lights ( i - 45 and sawdust ) .  i shall have my cell phone with me ( 713 898 9960 ) . in case you arrive early  you can stop at my home : 10 snowbird place , ( 281 ) 367 5377 . i shall send you  later the instructions how to get there . i shall leave home around 3 : 45 .  look forward to meeting you .  vince\",0\n\"Subject: re : thursday night ' s dinner ( and friday also )  hello all :  bad news ! most of the really nice restaurants in breckenridge close on the  22 nd of april . we may have to have all the dinners at the hotel . do you  have  any other suggestions ?  i will check with scott yeager ' s wife again today to see if she perhaps knows  of another good restaurant that may be open , but the owner of pierre ' s told  me most of them close and open again for the summer season in may .  thanks !  shirley  sheryl lara @ enron communications  03 / 28 / 2000 06 : 29 pm  to : ravi thuraisingham / enron communications @ enron communications  cc : shirley crenshaw / hou / ect @ ect , shirley  subject : re : final list of invited participants to offsite meeting  ravi :  can you answer shirley ' s question . are you planning to have the entire group  go to dinner , or just senior management ? please let us know your plan .  sheryl  - - - - - forwarded by sheryl lara / enron communications on 03 / 28 / 00 07 : 24 pm - - - - -  shirley crenshaw @ ect  03 / 28 / 00 03 : 15 pm  to : sheryl lara / enron communications @ enron communications @ enron  cc :  subject : re : final list of invited participants to offsite meeting  sheryl :  i am going to call pierre ' s restaurant and make reservations for thursday  night - will everyone on the list be attending or just part ?  thanks !  sheryl lara @ enron communications  03 / 28 / 2000 03 : 09 pm  to : shirley crenshaw / hou / ect @ ect , ravi thuraisingham / enron  communications @ enron communications  cc :  subject : final list of invited participants to offsite meeting  here it is ! ! !  the final list of participants .\",0\n\"Subject: re : latest revision  vince ,  i got the zipped version fine . thanks the only outstanding items relate  to the complete references for your papers ( the book publisher and dates ) .  i spoke with shirley this morning and she is tracing this down for me .  i re - read the gas market paper segment on the take - or - pay contracts and  corrected my \"\" oversight \"\" . by the end of the day i hope to have all the  corrections that you gave me incorporated in the manuscript . we will make  them on the galley pages of the article when it arrives .  thanks again for all your help .  john  p . s . i also spoke with mary joyce ( she returned my earlier call a week ago  when i was trying to ask cindy something ) . all is well . at 10 : 15 am  2 / 5 / 01 - 0600 , you wrote :  >  > john ,  >  > html version of enron article :  >  >  > vince  >  > ( see attached file : b 3719001 . htm ) ( see attached file : b 3719003 . htm ) ( see  > attached file : b 3719004 . htm ) ( see attached file : b 3719005 . htm ) ( see attached  > file : b 3719006 . htm ) ( see attached file : b 3719007 . htm ) ( see attached file :  > b 3719008 . htm ) ( see attached file : b 3719009 . htm ) ( see attached file :  > b 3719010 . htm )  >  >  >  >  >  > \"\" john d . martin \"\" on 02 / 04 / 2001 06 : 37 : 47 pm  >  > to : vkamins @ enron . com  > cc :  > subject : latest revision  >  > vince ,  >  > i have made bold face edits to the attached document . i still have two  > edits to make but am concerned that you were not reading the most recent  > version . sorry for any confusion but the editor doesn ' t use the edit  > function in word so i have ended up making edits on new versions of the  > paper .  >  > i still haven ' t made the change regarding the take - or - pay problem ( i left  > that paper at home in my briefcase and will make the change tomorrow  > morning ) . also , i haven ' t added anything regarding the conflict that arose  > over pay for new hires nor have i received the business week e - mail from  > you .  >  > however , if the paper looks ok to mark palmer we can make these minor edits  > on the galley pages of the article .  >  > thanks  >  > john  >  > p . s . i am very disappointed about the scheduling conflict you have on feb  > 23 rd . you will be greatly missed but i certainly understand .  > john d . martin  > carr p . collins chair in finance  > finance department  > baylor university  > po box 98004  > waco , tx 76798  > 254 - 710 - 4473 ( office )  > 254 - 710 - 1092 ( fax )  > j _ martin @ baylor . edu  > web : http : / / hsb . baylor . edu / html / martinj / home . html  >  >  >  >  > attachment converted : \"\" c : \\ windows \\ desktop \\ b 3719001 . htm \"\"  >  > attachment converted : \"\" c : \\ windows \\ desktop \\ b 3719003 . htm \"\"  >  > attachment converted : \"\" c : \\ windows \\ desktop \\ b 3719004 . htm \"\"  >  > attachment converted : \"\" c : \\ windows \\ desktop \\ b 3719005 . htm \"\"  >  > attachment converted : \"\" c : \\ windows \\ desktop \\ b 3719006 . htm \"\"  >  > attachment converted : \"\" c : \\ windows \\ desktop \\ b 3719007 . htm \"\"  >  > attachment converted : \"\" c : \\ windows \\ desktop \\ b 3719008 . htm \"\"  >  > attachment converted : \"\" c : \\ windows \\ desktop \\ b 3719009 . htm \"\"  >  > attachment converted : \"\" c : \\ windows \\ desktop \\ b 3719010 . htm \"\"  >  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: capm and cost of capital  greetings from the global association of risk professionals ! ! we are  putting together a panel for our march meeting related to one of the  following topics ; cost of capital , estimating risk premium , and capm  approaches to measuring risk . currently , we have steve mann , an assistant  professor of finance at tcu , is scheduled to speak and we are seeking  additional volunteers for our panel . if you are interested please respond  via email . if your organization would like to host the event , please let me  know so that arrangements can be made .  fyi , we have identified resources in new york city that would come to  houston to speak , and we are in need of a sponsor ( or suggestions ) to cover  the general expense of bringing these individuals to houston .  steve mann is an assistant professor of finance at the neeley school at tcu ,  where he teaches courses in derivatives and corporate finance . his primary  area of research is trading , with focus on the risk & reward of market  making in derivative contracts , as well as behavioral aspects of trading ,  and liquidity measurement . his publications to date include papers in the  review of financial studies , the journal of business , and the journal of  futures markets .  looking forward to your response .  respectfully ,  frank hayden  garp  the information in this email is confidential and may be legally privileged .  it is intended solely for the addressee . access to this email by anyone else  is unauthorized .  if you are not the intended recipient , any disclosure , copying , distribution  or any action taken or omitted to be taken in reliance on it , is prohibited  and may be unlawful . when addressed to our clients any opinions or advice  contained in this email are subject to the terms and conditions expressed in  the governing kpmg client engagement letter . \",0\n\"Subject: colorado  fyi  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 08 / 17 / 2000  11 : 25 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : samer takriti @ enron communications on 08 / 17 / 2000 10 : 57 am  to : stinson gibner / hou / ect @ ect  cc :  subject : colorado  stinson ,  i prefer to skip the trip . as i said , it would feel a little uncomofortable  and strange . thanks though .  - samer\",0\n\"Subject: technical corner  vince ,  last monday , i sent the vp ' s an e - mail asking for their help ( from them , or  from one of the people working with them ) in providing a technical corner  article by today . to date , sandeep and mike have responded but cannot do one  for this coming week . i didn ' t get a response from the other three . do you  have something that could be easily adapted for the monday issue ?  and , any suggestions about how to motivate a vp would be appreciated . my  usual approach is to ask politely , which usually gets a positive response . i  know the newsletter is low priority compared to our daily work , but surely as  much as our people like to publish their ideas , one person out of  forty - some - odd would be able to do something in a week ' s time , right ?  as always , i appreciate your help . and , if you would care to share some  advice on how i can do this in a better way , i will always listen and learn .  sam\",0\n\"Subject: re : i will miss the tuesday staff meeting  osman ,  vasant is setting up a meeting to review the credit  models with ees . please , call - in or  attend when the meeting is set .  vince  osman sezgen @ ees  01 / 15 / 2001 02 : 49 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : i will miss the tuesday staff meeting  vince ,  i will not be able to attend the meeting . here are some updates :  1 ) i left a message to george posey , i will follow up tomorrow ( tuesday ) ,  2 ) i will follow up on the credit reserve issue asap , i will find out what the  present state of the models are and come up with modification requirements  to accomodate asset related projects .  3 ) this week i will need to spend much of my time in meeting with the  breakthrough  folks . they are at a stage where  our contribution is being defined and specifies ( curves , components , etc . ) .  if you  would like to contact me urgently , please leave a phone message instead of  e - mail - -  i will be checking my phone messages more frequently .  4 ) we have a var meeting with rac on eam issues wednesday at lpm .  5 ) other issues are covered in my project list .  regards ,  osman\",0\n\"Subject: consulting project  dear vince :  i have now spent 16 hours on the valuation project and wanted to touch  base with you to make sure that the basic approach makes sense and that you  think we are making an appropriate amount of progress . my invoice is  attached .  by the way , john martin just mentioned that you have agreed to be our  luncheon speaker at the texas finance festival . i really appreciate your  help on this and would like to schedule some time next week to talk about  it in more detail .  i look forward to hearing from you .  regards ,  sheridan  - invoice for february and march 2001 . doc  sheridan titman  department of finance  college of business administration  university of texas  austin , texas 78712 - 1179  512 - 232 - 2787 ( phone )  512 - 471 - 5073 ( fax )  titman @ mail . utexas . edu\",0\n\"Subject: re : mid - project review dates - enron  great ! i ' ll arrange it with donna ! melinda arranged the video conference  on 32 . see you there !  - - christie .  - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 01 / 24 / 2001  10 : 23 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  01 / 24 / 2001 09 : 47 am  to : christie patrick / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect  subject : re : mid - project review dates - enron  christie ,  feb the 20 th is the best time for me .  vince  christie patrick  01 / 23 / 2001 11 : 29 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : mid - project review dates - enron  hi vince !  the best dates for me are the 16 th or the 20 th .  please let me know !  thanks !  - - christie .  - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 01 / 23 / 2001  11 : 29 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  fap on 01 / 23 / 2001 11 : 46 : 32 am  to : \"\" ' vkamins @ enron . com ' \"\" , \"\" ' christie . patrick @ enron . com ' \"\"  cc : fap  subject : mid - project review dates - enron  tiger hosts :  this is a reminder that the deadline for setting up the mid - project review  dates for your tiger team is friday , jan 26 .  the following are the remaining available dates / times . please let me know  what works best for you at your earliest convenience .  monday , feb 12 4 : 30 - 6 : 30 or 6 : 30 - 8 : 30  tuesday , feb 13 4 : 30 - 6 : 30 or 6 : 30 - 8 : 30  wed . , feb 14 4 : 30 - 6 : 30 or 6 : 30 - 8 : 30  friday , feb 16 10 : 00 - 12 : 00 or 6 : 30 - 8 : 30  tuesday , feb 20 6 : 30 - 8 : 30  again , this will be based on a first come - first serve basis . you may come to  campus or this can be done by videoconference . if you choose the latter ,  please provide to me a call - in number for the conference .  any questions , please contact the fap office .  donna piazze  program director  field application project  the wharton school  univ . of pennsylvania  215 . 573 . 8394 fax 215 . 573 . 5727  fap @ management . wharton . upenn . edu  piazze @ wharton . upenn . edu\",0\n\"Subject: steve ' s trip to houston  dale , richard ,  i am ready to cover the cost of steve ' s trip to houston ( one month in the  summer ) .  i think very highly of steve and think about coaching him a bit to expand his  horizons . i see him as a very valuable asset of enron and a great leader  in not too distant future . he needs exposure to more diverse business  problems and areas of research . i think it will be in the best interest of  the company  to devote some resources to foster his development .  vince\",0\n\"Subject: command confirmation request ( 4 e 46 c 824 )  your command :  subscribe frbnyrmagl vince kaminski  has been received . you must now reply to this message ( as explained  below ) to complete your subscription . the purpose of this confirmation  procedure is to check that the address listserv is about to add to the  list for your subscription is reachable . this is a typical procedure for  high - volume lists and all new subscribers are subjected to it - you are  not being singled out . every effort has been made to make this  verification as simple and painless as possible . thanks in advance for  your cooperation .  to confirm the execution of your command , simply point your browser to  the following url :  alternatively , if you have no www access , you can reply to the present  message and type \"\" ok \"\" ( without the quotes ) as the text of your message .  just the word \"\" ok \"\" - do not retype the command . this procedure will work  with any mail program that fully conforms to the internet standards for  electronic mail . if you receive an error message , try sending a new  message to listserv @ peach . ease . lsoft . com ( without using the \"\" reply \"\"  function - this is very important ) and type \"\" ok 4 e 46 c 824 \"\" as the text of  your message .  finally , your command will be cancelled automatically if listserv does  not receive your confirmation within 48 h . after that time , you must start  over and resend the command to get a new confirmation code . if you change  your mind and decide that you do not want to confirm the command , simply  discard the present message and let the request expire on its own .\",0\n\"Subject: non - disclosure agreement  p . o . box 2227  livermore , california 94550  april 4 , 2001  dr . vince j . kaminski  vice - president of research  enron corporation  p . o . box 1188  huston , texas 77251  vince ,  i have cleared my calendar , and i am looking forward to meeting with you  in houston on may 4 th .  transmitted herewith is the agreement that you requested .  thanks . have a great weekend .  larry thorne  attachments : non - disclosure agreement  - non - disclosure agreement . pdf\",0\n\"Subject: re : programming for rdi model  michelle ,  the coding is progressing nicely . cecil and david have the first part of the  code  almost done ( there are 3 parts of code ) , and they expect to have the first  two parts  completed by next tuesday or wednesday . if ken ' s needed , that will be in the  testing of the third part of code , which should be sometime next week or  later .  i will inform you of the status change as soon as possible .  best ,  alex\",0\n\"Subject: statistician position open  feel free to circulate this to get a statistician for us .  thanks ,  krishna\",0\n\"Subject: re : ca for henwood engagement  i suspect that enron india llc would be the entity to use . however , is  anyone from tax involved in this ? if not , we need to get someone in the  loop .  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  lauren hagerty  enron india / ebs asia  three allen center , room 2119  houston , texas 77002  phone : 713 - 646 - 6529  fax : 713 - 646 - 7549  bonnie nelson  01 / 19 / 2001 11 : 54 am  to : stinson gibner / hou / ect @ ect , bruce  lundstrom / enron _ development @ enron _ development , lauren  cc : vince j kaminski / hou / ect @ ect , sandeep  subject : re : ca for henwood engagement  stinson ,  please find attached a revised version of the draft consulting agreement with  henwood . fyi , i am attaching both a clean version and one marked toshow  changes from the last draft i sent you . please let me know if you have any  questions or comments on the agreement or the most recent changes .  what is the status of henwood ? do you still want to engage them and what is  the timeframe for their work ( the dates in the draft may need to be  corrected ) .  bruce and lauren : please advise on which enron entity should be the party to  this consulting agreement .  thanks , bonnie\",0\n\"Subject: mid - year 2000 performance feedback  note : you will receive this message each time you are selected as a reviewer .  you have been selected to participate in the mid - year 2000 performance  management process by providing meaningful feedback on specific employee ( s )  that have been identified for you . your feedback plays an important role in  the performance management process , and your participation is very critical  to the success of enron ' s performance management goals .  please provide feedback on the employee ( s ) listed below by accessing the  performance management system ( pep ) and completing an online feedback form as  described in the \"\" performance management quick reference guide \"\" . you may  begin your feedback input immediately . please have all feedback forms  completed by the date noted below .  if you have any questions regarding pep or your responsibility in the  process , please call the pep help desk at the following numbers :  in the u . s . : 1 - 713 - 853 - 4777 , option 4  in europe : 44 - 207 - 783 - 4040 , option 4  in canada : 1 - 403 - 974 - 6724 ( canada employees only )  or e - mail your questions to : perfmgmt @ enron . com  thank you for your participation in this important process .  the following list of employees is a cumulative list of all feedback  requests , by operating company , that have an \"\" open \"\" feedback status . an  employee ' s name will no longer appear once you have completed the feedback  form and select the \"\" submit \"\" button in pep .  review group : enron  feedback due date : jun 16 , 2000  employee name supervisor name date selected  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  ahmad , anjam dale surbey may 22 , 2000  carson , margaret m james d steffes may 26 , 2000  vernon , clayton j vasant shanbhogue may 26 , 2000  zipter , rudi c theodore r murphy may 25 , 2000\",0\n\"Subject: friday night dinner itinerary  dinner team itinerary  date : friday , december 1 , 2000  restaurant : la columbe d ' or  3410 montrose  713 - 524 - 7999  cocktails : 7 : 30 pm  dinner : 8 : 30 pm \u0001 ) 10 : 30 pm  table no . 7  executive host : vince kaminski  associate / analyst co - host : joana ryan  dinner details :  all super saturday candidates will be arriving at the restaurant by shuttle .  a member of the associate and analyst program staff will greet them . this  staff member will also be there to assist you .  there will be a short cocktail reception prior to dinner . during the  reception , you will have the opportunity to meet many of the candidates . a  table has been reserved in the executive host \u0001 , s name . students will not have  seating assignments this year . the hosts should feel free to invite up to  four students to sit at their table if desired .  dress for the evening is business attire . hosts are no longer responsible  for the bill .  if you would like to provide feedback on any candidate , an evaluation form is  attached or you may discuss your input with the associate and analyst staff  member after dinner . the evaluation form must be faxed to 713 - 646 - 5935 ,  prior to 12 : 00 p . m . on saturday to be included in the decision meeting .\",0\n\"Subject: re : houston visit  thank you very much for your prompt reply . pls let me know if you ' re going  to be in ny , otherwise i look forward to seeing you soon in houston .  soussan  ( 914 ) 253 - 4187  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : tuesday , april 25 , 2000 11 : 23 am  to : faizs @ texaco . com  subject : re : houston visit  soussan ,  it looks fine .  look forward to meeting you again in houston or new york .  vince  \"\" faiz , soussan \"\" on 04 / 25 / 2000 09 : 29 : 34 am  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc :  subject : re : houston visit  dear vince ,  firstly , i really appreciate your time and our meeting last week . learning  about enron ' s use of leading - edge practices was quite enlightening and i  truly benefited from our visit .  secondly , i ' ve summarized my key \"\" take - aways \"\" as stated below . before  conveying it to my management , however , i really appreciate it if you can  pls review my conclusions and ensure that they are not miss - stated .  again , thanks so much for your time and wisdom . i was also honored that  you  gave me a copy of the \"\" managing energy price risk \"\" book and shall reference  it with interest . thank you .  i really look forward to seeing you again next time i ' m in houston .  best regards ,  soussan  ( 914 ) 253 - 4187  ps . the latest fortune article on ene is a great read and substantiates  the  company ' s innovative and creative approach to business .  - - - - - -  as you may know , i was invited to visit with enron ( ene ) last week . i met  with vince kaminski , the vp and head of research in the risk management  group of ene . vince who used to be with salomon brothers and at & t is the  \"\" brain \"\" of ene w . r . t . their analytical tools for pricing of commodities ,  hedging , optimization of financial and physical transactions , as well as  the  value - at - risk systems . in addition , vince has received the 1999 james h .  mcgraw award for energy risk management ( energy risk manager of the year )  and is well published . he is the key contributor to a best - selling  publication by risk books entitled : managing energy price risk .  our meeting was mainly focused on gaining additional insights re  leading - edge practices within ene . my key findings are summarized below :  1 . ene does not use corporate price premises . they use market price info  only and adhere to mark - to - market accounting .  2 . ene uses the \"\" heath , jarrow , and morton \"\" methods for modeling price  dynamics ( i ' ve asked bic for a copy of the associated paper ) . they have  their own \"\" home - grown \"\" software , however , they periodically review selected  external developments for internal inclusion and advancement .  3 . vince ' s group comprises of mathematicians , physicists , and operations  researchers who are responsible for the development and advancement of  ene ' s  risk management tools . these models are religiously used by the traders ,  risk managers , and bus across ene .  4 . investment proposals are screened , risked , and \"\" roved \"\" by a separate  corporate group ( similar to our special studies and with business and real  options skills ) who work in conjunction with the bus . all evaluations and  transactions are marked - to - market .  5 . ene does not use efficient - frontier portfolio concepts . they \"\" vc fund \"\"  any opportunity that has a credible value proposition and can stand on its  own . they believe that with the current plentiful liquidity in the market ,  project - financing in not an issue for a \"\" good \"\" opportunity . however , they  closely monitor the development of each opportunity , within their deep  portfolio , at the corporate level and know how to \"\" fail fast \"\" .  6 . the employee reward system is based on p & ls as well as the creation of  new business .  7 . most employees have stock options .  i really enjoyed my visit and hope to meet with vince again the next time  i ' m in houston .\",0\n\"Subject: var update memo  hi grant ,  as requested i have sent a quick summary document giving an up - to - date  description of the var model .  i may well have missed some points but cantekin has worked closely with me on  any changes so it is worth  consulting him on any details i have missed .  thanks  kirstee\",0\n\"Subject: friday brown bag lunch on option pricing  zimin ,  i have talked to alex about it . i don ' t think that the additional seminars  will  crowd out the brown bag lunches .  the seminars are really targeted to people who recently joined the group and  have very limited , or zero , exposure to energy markets .  for most members of the group it should be the piece of cake . brown bag  lunches  are not that time intensive , except for the speaker .  plus , we ran out of days available for lunch meetings .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 03 / 2001  08 : 27 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  alex huang @ enron  01 / 02 / 2001 12 : 15 pm  to : vince j kaminski / hou / ect @ ect  cc : stinson gibner / hou / ect @ ect  subject : friday brown bag lunch on option pricing  vince ,  this is a brief summary of last year ' s friday brown bag lunch option pricing  series .  we had about 15 lectures , given by the following people :  grant , stinston , vasant , krishna , zimin , maureen , clayton , paulo , chonawee ,  myself , and  some outside speakers . we were able to attract some outside audience as well .  overall the response is quite encouraging and we have planned  to continue it .  in light of the presently scheduled seminars on \"\" energy derivatives \"\" , it  seems our friday  schedule will be too crowded if we have seminars on \"\" energy derivatives \"\" on  two fridays  and fbblop on other fridays . what ' s your suggestion ? should we discontinue  the fbblop ?  we also have scheduled january 19 for tom halliburton ' s visitor leon lasdon  from ut austin  to talk on non - linear programming . should we cancel it ?  best ,  zimin & alex\",0\n\"Subject: fyi \",0\n\"Subject: re : lawyer  ian ,  sorry for a delay in responding to you .  i am currently in london , flying back to houston tomorrow .  the problem is not with the lawyers . we worked on our presentation  materials together with a professor from another university  and we agreed to use these materials only internally .  we have to honor our commitment to him . i am sure  that this is exactly what you would have expected from us if we had  made a similar commitment to you .  vince  \"\" macmillan , ian \"\" on 03 / 21 / 2001 04 : 31 : 27 pm  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc :  subject : re : lawyer  what do i need to do to move this thing forward ?  i suspect that the problem is basically with the lawyers . they only know how  to stop things , but in a way they play a role in global society . if it were  not for the handicaps they lay on us the rest of the world would never have a  chance .  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com  to : macmilli @ wharton . upenn . edu  cc : vince . j . kaminski @ enron . com  sent : 3 / 8 / 01 12 : 12 pm  subject : re : lawyer  ian ,  sorry for a delay in getting back to you .  i have one challenge i did not anticipate  when i talked to you the first time about our real options  internal seminar .  the materials were prepared in collaboration with a professor  from another school , and there is some sensitivity regarding  the intellectual property rights and the ability to distribute the  materials  outside enron .  please , give me some time to find out if i can work  around this issue .  vince  \"\" macmillan , ian \"\" on 03 / 07 / 2001 06 : 46 : 28 am  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc :  subject : lawyer  i still have not heard from your lawyer . i would like to see whar  materials you are using and assess how we could work on the topic of  real  options with enron\",0\n\"Subject: re : interview with enron corp .  cliff :  thank you for replying and we want to wish you the best in your new  endeavor . texaco is also a good company and i am sure you will  be pleased .  best of luck !  sincerely ,  shirley crenshaw  cliff parsons on 06 / 27 / 2000 02 : 05 : 13 pm  to : shirley crenshaw  cc : vince j kaminski , pinnamaneni krishnarao  , osman sezgen ,  cp 38 @ andrew . cmu . edu  subject : re : interview with enron corp .  dear ms . crenshaw :  i recently accepted a quant position with texaco in houston . lara berry  from enron contacted me just after that , and i told her of the situation .  i agreed to send her my resume ( which i did ) and keep in touch .  enron is a fabulous corporation with exciting opportunities . mr . kaminski  is very well known in the energy field , and i have read some of his  material . i am extremely pleased that you all would be interested in me ;  however , i have given my word to texaco .  the texaco position offers a lot of opportunity and risk . this is the kind  of challenge for which i am looking . if things do not work out , however , i  would definitely contact enron again and cherish any opportunity for an  interview .  thank you very much ,  cliff parsons  - - on monday , june 26 , 2000 , 11 : 27 am - 0500 shirley crenshaw  wrote :  >  >  > good morning mr . parsons :  >  > the enron corp . research dept . would like to conduct a telephone  > interview with you at your convenience .  >  > the interviewers would be :  >  > vince kaminski managing director  > p . v . krishnarao director  > osman sezgen manager  >  > please give me some dates and times either this week or july 5 , 6 & 7  > of next week that you would be available and i will coordinate the  > calendars .  >  > look forward to hearing from you .  >  > regards ,  >  > shirley crenshaw  > administrative coordinator  > enron corp . research  > 713 / 853 - 5290  > email : shirley . crenshaw @ enron . com  >  >\",0\n\"Subject: invitation to cera multiclient study workshop  mr . vincent j . kaminski  managing director  enron capital & trade resources corp .  dear mr . kaminski :  you are cordially invited to attend a special workshop during ceraweek 2001  in houston addressing new and subtle dynamics in the oil market that could be  costing companies millions of dollars in lost revenue .  the workshop presents insights from a recent cera study entitled : \"\" the hole  in the barrel : capturing value from a volatile oil price \"\" . ? the speakers will  explain the challenges and suggest practical steps not only to mitigate these  forces , but use them as a way to increase revenue .  time : monday , february 12 , 2001 , 2 : 00 - 5 : 00 pm  location : westin galleria , houston , tx  cost : the workshop is a deliverable to members of the hole in the barrel :  capturing value from a volatile oil price .  for non - members of the hole in the barrel multiclient study , a fee of  us $ 3 , 500 will be charged ( fee can be applied to the purchase of the study ) .  please visit our online prospectus for the study located at :  for more information , please contact me at badedamola @ cera . com or + 1 617  441 - 1348 .  barry adedamola  associate director , oil & global strategies  our relationship with you is very important to us . ? if you  wish not to receive e - mail notifications from cera , please  send a reply to this message with \"\" donotemail \"\" as the subject  of your message . ( mailto : info @ cera . com ? subject = donotemail ) \",0\n\"Subject: re : fw : citi , wells , enron , sl and i 2 form a b 2 b venture  wicke ,  thanks for a prompt reply . i am not planning any particular trip to houston  yet . for the time being , i am about to leave for london , and then poland . i  will most likely be at the olympics in sydney in late september , and in ny  in early october . mid - october could be the first realistic opportunity to  visit with enron , although i am looking forward to seeing you sooner in palo  alto . i am simply curious whether and how we could leverage together core  competencies and connectivity that both our companies seem to have or are  developing .  i am senior vice president for visa usa , responsible for strategy and  planning . i would probably bring with me ( though i haven ' t discuss it yet )  people in charge of our network or / and our coo .  best ,  andrzej  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : friday , august 18 , 2000 6 : 24 am  to : lubowski , andrzej  cc : vince . j . kaminski @ enron . com  subject : re : fw : citi , wells , enron , sl and i 2 form a b 2 b venture  andrzej ,  thanks . please , send me the information about the dates  when you plan to visit houston . also , the information about  your position / title / responsibilities ( as well as the info  about the other members of your team ) would be useful .  i shall be in the bay area between the 10 th and the 20 th of october .  hope to see your then .  wicek\",0\n\"Subject: sevil yamin  anne ,  vasant sent this information to norma . i shall fwd his message to you .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 10 / 2001 03 : 02 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  stinson gibner  04 / 10 / 2001 02 : 57 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : sevil yamin  vince ,  do you want me to do this , or vasant ?  - - stinson  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 04 / 10 / 2001 02 : 57 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : anne labbe / enron @ enronxgate on 04 / 06 / 2001 09 : 57 am  to : stinson gibner / hou / ect @ ect  cc :  subject : sevil yamin  stinson ,  i am the new hr generalist for the research group because norma villarreal is moving to business analysis and reporting . earlier this week , norma and i met with vince , and he said that he was going to talk to you about writing up a list of sevil ' s projects / accomplishments for last year and this year , so that we can give her a project bonus since she did not receive a bonus during the normal prc time . at your earliest convenience , will you please email me this list so that i can get started putting together all of the paperwork so that she can receive a check on april 16 th .  if you have any questions , please feel free to contact me at 5 - 7809 . i look forward to meeting you , and the rest of the group next week at vince ' s staff meeting .  thanks ,  anne labbe '\",0\n\"Subject: re : uk rab multiples  michael ,  thanks for the information . we shall have the  results for you by tomorrow morning .  vince  michael anderson @ azurix  08 / 23 / 2000 07 : 48 pm  to : vince j kaminski / hou / ect @ ect  cc : keith . harris @ wessexwater . com  subject : uk rab multiples  i talked with keith harris , our cfo at wessex , about the rab multiple graph i  gave you . he expressed that the wessex people had originated the data and  that the graph was correct , to the best of their knowledge . the only ( but  very important correction ) is that they started the graph at an index of  100 % , which does not imply a 100 % of rab multiple . rather , the initial rab  multiple was around 80 % , implying that the entire line should be taken down  by 20 percentile points . thus the all time hime in late 98 should be closer  to the 1 . 3 x rab that i had targeted during our discussion . please call keith  if he has not yet contact you .\",0\n\"Subject: re : article  hello , vince !  i just got this from steve bigalow . is it okay to use for monday ' s  newsletter ?  thanks for the help ,  sam  - - - - - - - - - - - - - - - - - - - - - - forwarded by william smith / corp / enron on 03 / 09 / 2001  12 : 42 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  steve bigalow  03 / 09 / 2001 11 : 39 am  to : william smith / corp / enron @ enron  cc :  subject : re : article\",0\n\"Subject: the february issue of reactions is now live online  dear colleague ,  the latest edition of the financial magazine for the global insurance market  is now live at ;  http : / / www . reactionsnet . com  our monthly analysis of all the financial issues to affect the insurance  industry could be just what you were looking for . ? with unique data and  superb supplements such as the a - z of reinsurers , asia cover magazine and s simply click on the link  to enter the site , http : / / www . reactionsnet . com  you can contact us for help at mailto : web - help @ euromoneyplc . com or + 44 ( 0 ) 20  7779 8006 . ?  february 2001 ' s cover story ? ?  ?  insurance tax battle : the war of the loophole  although a handful of us insurers failed last year in their attempt to make  rivals owned by offshore parents pay more tax , they have vowed to fight on .  they are confident of victory . simon challis looks at the loophole that is  tying politicians and businessmen in knots .  february 2001 ' s this issue features  ace ' s ina gamble : duperreault ' s risky bet  ace took a very big risk when it acquired the property / casualty operations of  cigna back in july 1999 . so far , the gamble appears to have paid off , but can  ace keep it up ?  captives : havens from a hard market  bermudian performance survey : bermuda marches again  oecd initiative : fighting spirit  profile : stockton re - widening the net  plus all this month ' s biggest stories  ? - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  for your conference diary  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +  new world old world  risks have changed - 15 - 16 march , 2001 , berkeley court hotel , dublin , ireland  the @ revolution is driving changes in the business practice of buyers ,  service providers and providers of risk finance . ? what are the key  practitioners doing and what are the implications ? ? dublin 2001 will explore  the emerging new dimensions of risk financing , the threats and opportunities  and present practical strategies for addressing these issues .  for a programme and registration form contact hannah bassally on : ? + 44 20  8895 3258 or e - mail : bassalh @ towers . com .  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +  don ' t miss iasa 2001 ! ? iasa is recognized as one of the premier providers of  insurance industry education . ? and , iasa ' s annual educational conference and  business show is one of the most important industry conferences of the year .  during june 3 - 6 , 2001 , choose from over 100 educational sessions , meet more  than 200 exhibiting companies , and network with 4 , 000 of your industry  colleagues . earn cpe credits , learn about new technologies and hear from  industry experts . register today at www . iasa . org ! ? or , for more information ,  call ( 919 ) 489 - 0991 . we hope to see \"\" y ' all \"\" in san antonio , texas during iasa  2001 !  + + + + + + + + + + + + + + + + + + + + +  weather derivatives and risk management  april 2 - 4 , 2001 , london crowne plaza , st james  this two - day weather risk management conference and half - day workshop on  valuation of weather derivatives organised by euromoney energy events , in  association with weather risk advisory , will bring together the most  experienced decision - makers in the weather risk market , and will give  delegates a thorough education on the use of weather products .  to find out more ;  e mail : mailto : energyevents @ euromoneyplc . com ? online :  www . coaltransconferences  + + + + + + + + + + + + + + + + + + + + + + + + + + + + +  * plus ! * ? industry publications - read the executive summaries online !  reinsurance 4 th edition - the definitive industry - standard textbook  @ risk - internet & e - commerce insurance and reinsurance legal issues  insurance risk securitisation - a guide for issuers and investors  to advertise or link your company website to this industry circular please  contact nick lipinski  tel : + 44 ( 0 ) 20 7779 8199 or e - mail mailto : nlipinski @ euromoneyplc . com  if you have any problems logging onto or using ? www . reactionsnet . com please  call our dedicated help desk  + 44 ( 0 ) 20 7779 8006 or email mailto : web - help @ euromoneyplc . com  we send this email because we believe you will find our magazine of value ,  however if you do not wish to continue receiving our monthly updates please  reply to this email with unsubscribe in the title bar .\",0\n\"Subject: update - reimbursement of individually billed items  the use of cell phones and pagers has increased dramatically in the past few  years . as a result the accounts payable department has seen a rapid increase  in the number of invoices and vendors . with the higher volume , we have  reviewed our processes in order to continue our rapid payment cycle .  although we encourage vendors to address their invoices to individual  employees , they often mail invoices directly to accounts payable . at times  they fail to list the individual who uses the pager or cell phone . in these  cases we return the invoice to the vendor . if the employee is designated , we  try to track him / her down and forward the invoice . the high level of  employee movement among jobs and locations at enron has made this  increasingly challenging . either way , we end up doing something less  productive than paying invoices .  to maintain satisfactory response to our vendors and to reduce time necessary  for research , we request that employees who have pagers , cell phones , and  other individually billed items such as licenses , subscriptions , etc . , pay  for them by personal check or charge card ( if applicable \u0001 * payment instructions  are usually indicated on the invoice ) and request reimbursement through  employee expense reports .  by submitting these charges on your expense report , you can help us reduce  the amount of time spent researching and forwarding invoices , the number of  checks generated by treasury , the number of vendors in our database , and the  turnaround time for payment of invoices .  incidentally , accounts payable is currently installing a corporate - wide  web - based expense reporting system similar to what enron international has  used for the past year . this will make it even easier to file your expense  report and receive quick reimbursement .  we \u0001 , d like to make this effective immediately . if you have any questions or  suggestions , please contact the accounts payable department .\",0\n\"Subject: re : enron credit modeling discussions  hi again ,  some of you have been kind enough to supply me with information that can be used for the strategic plan ( i am writing for duffie ) .  to assist you in gathering further information , it was suggested that i forward a preliminary outline of this strategic plan to your attention .  thanks in advance for your assistance ,  iris  table of contents  executive summary  highlights  introduction  what is enron credit ?  what is the business plan ?  what are the products planned ?  current status : what we currently trade , how we price .  what new models we need to achieve goals .  what attempts are being made internally and what external commercial sources are available .  swot analysis  strengths  weakness  opportunities  threats  pricing approach  a diagram illustrating how various models are tied together for the overall objective of coming up with final cds and dbs pricing .  brief description of each model shown in the diagram .  public firm versus private firm  what we have as first cut for modeling primarily public firms .  our understanding on public versus private firms ' credit risk characteristics , data availability and possible modeling approaches .  our proposed approach / plan towards development of private firm model , including comparative analysis , model development , etc . .  portfolio level business feasibility analysis  accounting breakeven analysis  portfolio theory  alternative ( short term ) measures  kmv ' private firm model  moody ' s riskcalc model for private firms  comparison of kmv vs moody ' s private firm model  future strategy  development of private firm pricing models ( short - and long - tenor modelso  completion of parent / subsidiary model  risk management model for ect business  references\",0\n\"Subject: refined products line - - north american markets - cera alert : decem  ber 15 , 2000  cera alert : december 15 , 2000  title : refined products line - - north american markets  cera knowledge areas : refined products  us margin highlights  * responding to falling apparent demand and rising primary inventory levels ,  us gulf coast unleaded gasoline margins versus wti fell by $ 2 . 26 per barrel  to average $ 1 . 45 per barrel during november . gasoline margins have returned  to a historically normal range after spending the summer of 2000 at  exceptionally high values . cera expects gasoline margins to wti to average  $ 2 . 75 per barrel during the first quarter of the new year , $ 1 . 16 per barrel  lower than this year ' s first quarter average .  * high sulfur no . 2 fuel oil differentials with wti dropped slightly ,  averaging $ 5 . 97 per barrel in november . despite the drop of $ 0 . 37 per barrel  from october ' s average , fuel oil differentials remain at unprecedented  values - $ 4 . 20 per barrel higher than a year ago and $ 3 . 46 per barrel greater  that the previous five - year average . for the first quarter of 2001 , cera  anticipates distillate margins to moderate somewhat but remain at a record  high level of $ 4 . 75 per barrel in the first quarter .  * jet / kerosene differentials versus wti rose $ 0 . 63 per barrel from the  october average , reaching a whopping $ 8 . 59 per barrel in november . in  correspondence with the distillate market , jet / kerosene margins are at  historically high levels and receiving support from relatively tight  fundamentals . cera expects jet / kerosene margins to moderate somewhat in the  first quarter in response to seasonal weakening of demand following the  holiday travel season but to remain exceptionally strong at an average of  $ 5 . 75 per barrel .  * margins for us gulf coast 1 % sulfur residual fuel dropped by $ 2 . 15 per  barrel , reaching $ 3 . 99 per barrel below wti during november . despite the  recent widening of differentials , cera expects soaring natural gas prices to  support relatively narrow residual fuel differentials throughout the winter  months . residual fuel differentials are expected to average $ 2 . 50 per barrel  below wti during the first quarter of next year , at the high end of the  historical range .  us demand highlights  * apparent demand for unleaded gasoline fell seasonally by about 0 . 5 million  barrels per day ( mbd ) from the october level , reaching 8 . 36 mbd for the four  weeks ending december 8 . demand is averaging less than 1 percent below last  year largely because y 2 k concerns helped inflate december demand a year ago .  cera anticipates gasoline demand to continue to decline seasonally as colder  temperatures arrive , averaging 8 . 08 mbd during the first quarter of 2001 .  * reported distillate apparent demand remains exceptionally strong at 3 . 94  mbd for the four weeks ending december 8 , over 7 percent greater than this  time last year . this represents a slight increase of about 0 . 05 million  barrels ( mb ) from the end - october level of 3 . 90 mb , but still a record high  level for early december . with support from low home heating oil inventories ,  particularly in the northeast , distillate demand has been very strong during  the fall of 2000 . cera expects demand to remain strong in the coming winter  months , averaging 3 . 79 mb during the first quarter of next year .  * apparent demand for jet fuel declined by 5 percent from the october level  to reach 1 . 68 mbd for the four weeks ending december 8 . despite the decline ,  apparent jet fuel demand is over 1 percent above the year - ago level . the  relative strength of jet fuel reported demand continues to parallel  distillate demand strength with support coming from the use of jet fuel to  help mitigate the tight distillate market fundamentals . cera expects the  demand for jet fuel to average 1 . 81 mb during the fourth quarter .  * reported demand for residual fuel dropped to 0 . 87 mbd for the four weeks  ending december 8 , a decline of about 0 . 09 mbd from the october average and a  slight increase over the november level . demand for residual fuel is  currently 11 percent greater than last year , and surging natural gas prices  are expected to result in continued strong residual fuel demand throughout  the winter . residual fuel demand is expected to remain in the 0 . 85 to 0 . 9 mbd  range during the first quarter of 2001 .  us inventory highlights  * primary inventories of unleaded gasoline rose to 196 . 5 mb , increasing  almost 10 mb from the end - october value . responding to rising stock levels  and declining apparent demand , forward supply coverage of gasoline climbed to  23 . 5 days for the four weeks ending december 8 . forward supply is 2 . 5 percent  below last year ' s level at this time of year and at its lowest level in the  past eight years - although cera still believes coverage is currently  sufficient for the level of demand expected this winter . however , cera is  looking cautiously at the implications of high distillate refinery yields and  production because of the possibility of low gasoline inventories at the  start of the driving season in the second quarter of next year .  * distillate inventory coverage has remained about level since the end of  october at 29 . 2 days of forward supply for the four weeks ending december 8 .  despite record high apparent demand , strong refinery production levels helped  boost primary distillate inventories slightly , to 115 . 3 mb for this period .  primary stocks are 16 percent below last year ' s level at this time and at  their lowest historical level ever . although stocks are low , cera does not  anticipate shortages to occur this winter . assuming normally cold weather ,  refinery production and net imports are expected to be capable of meeting  demand requirements - albeit at a high price .  * jet fuel inventory coverage crept upward by about 1 day of coverage , to  reach 25 . 7 days of forward supply for the four weeks ending december 8 . this  moves jet fuel coverage above the 23 . 5 to 25 days ' supply range that it had  been in for the past four months . the rise of just under 1 day in forward  supply was mainly a response to a decline in apparent demand . jet inventories  and coverage are expected to become tighter in the coming weeks as the pull  from tight distillate markets strengthen , but supplies are expected to be  adequate for the winter .  * inventory coverage of residual fuel rose by almost 4 days of forward supply  from october , reaching 41 . 7 days of forward supply during the four weeks  ending december 8 . the increase in coverage was a temporary response to a  drop in demand and an increase in stocks . with demand expected to strengthen  because of colder weather and high gas prices , cera looks for inventories and  coverage gradually to decline in the coming weeks .  * * end * *  this cera alert will be available in pdf format within 24 hours .  this electronic message and attachments , if any , contain information  from cambridge energy research associates , inc . ( cera ) which is  confidential and may be privileged . unauthorized disclosure , copying ,  distribution or use of the contents of this message or any attachments ,  in whole or in part , is strictly prohibited .  terms of use : http : / / www . cera . com / tos . html  questions / comments : webmaster @ cera . com  copyright 2000 . cambridge energy research associates\",0\n\"Subject: purchase of license for software  hello all !  please order visual studio ( visual basics and c + + ) for chonawee supatgiat  a new manager with the research group .  the information you will need to order this package is as follows :  co . # : 0011  rc # : 100038  head of research  department : vince kaminski  name : chonawee supatgiat  title : manager  location : eb 1942  phone : 5 - 8756  if you need anything else , please let me know .  thanks and have a great day !  shirley  3 - 5290\",0\n\"Subject: re : lunch  przepraszam , ze tak dlugo nie odpowiadalem . nasz team mial zaplanowany  wspolny wieczor w piatek , ale nic nie bylo pewne , poniewaz mamy duzo osob sie  rozchorowalo . z tegoz powodu wieczor zostal odwolany , a ja jestem wolny .  jesli nadal nie ma pan planow na piatkowy wieczor , to ja jestem jak  najbardziej za spotkaniem .  j  vince j kaminski  12 / 19 / 2000 10 : 05 am  to : julius zajda / lon / ect @ ect  cc :  subject : re : lunch  juliusz ,  sorry , i have to cancel the lunch meeting today .  pleas , give a call sometimes today . maybe we can meet for drinks friday  afternoon .  i am taking the next week off .  vince  julius zajda  12 / 19 / 2000 09 : 25 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : lunch  dzien dobry ,  mam nadzieje , ze nic sie nie zmienilo i jestesmy umowieni na dziesiejszy  lunch . proponuje sie spotkac o godzinie 12 . 00 na parterze obok biurka  \"\" security ladies \"\" ( bo wiem gdzie to jest ) . ubrany jestem w czarne spodnie ,  bezowe buty i szara bluze . nie jestem pewien czy bede mogl przeczytac  potwierdzenie , bo od 10 do 11 . 45 przeprowadzam szkolenie .  juliusz\",0\n\"Subject: pdo ' s in the media  more about the pacific decadal oscillation . . .  q . will we have a drought in southern california ?  a . if the pacific decadal oscillation has switched we are likely to have  20 - 30 years with lower rainfall that  we have had since the late ' 70 ' s . we will still have winter rains , but  the number of really wet years is likely  to decrease .\",0\n\"Subject: re : enron contact info  christie ,  thanks for taking initiative on the trip so quickly . let ' s meet with jeff  shankman  to discuss the agenda . i shall try to organize a meeting next week after prcs  are over .  i agree with your assessment of the group . i was greatly impressed with the  caliber of the students .  vince  christie patrick @ ect  12 / 07 / 2000 06 : 33 pm  to : fap @ enron  cc : clay degiacinto @ enron , deepa  mallik @ enron , dennis feerick  @ enron , edson otani  @ enron , gustavo palazzi  @ enron , \"\" heather n . thorne ( e - mail ) \"\"  @ enron , jack rejtman  @ enron , jaideep singh  @ enron , jason cummins  @ enron , joshua leventhal  @ enron , kim whitsel  @ enron , \"\" louis a thomas ( e - mail ) \"\"  @ enron , murat camoglu  @ enron , nick levitt  @ enron , omar bassel  @ enron , pat henahan  @ enron , ram vittal  @ enron , steve lessar  @ enron , tulika bhalla  @ enron , vincent chen  @ enron , weigelt  @ enron , fap  @ enron , \"\" ' christie . patrick @ enron . com ' \"\"  @ enron , \"\" ' vkamins @ enron . com ' \"\"  @ enron , jeffrey a shankman / hou / ect @ ect  subject : re : enron contact info  hi evryone !  vince , vasant and i are very excited about the tiger project ! we all  thoroughly enjoyed the opportunity to meet with such an incredibly  interesting , enthusiastic and intelligent group . thank you for your time !  for those interested in the houston trip on january 18 - 19 th , please let me  know by the 15 th of december so that i can get the best deal on air fare  ( one - month in advance ) .  also , i ' ll be forwarding the enron information packages to donna piazze for  your receipt next week . i am including jeff shankman in this reply , as jeff  is a wharton grad , leader of one of our enron business units , and one of the  most enthusiastic enron / wharton cheerleaders .  please feel free to individually contact me if there is anything i can do for  any of you .  thanks again for your enthusiastic interest in enron !  - - christie .\",0\n\"Subject: re : executive program on credit risk  vince ,  next time this program will be offered in ca in october ( see below ) .  let me know what you think ,  tanya .  \"\" isero , alicia \"\" on 01 / 07 / 2000 12 : 38 : 12 pm  to : tanya tamarchenko / hou / ect @ ect  cc :  subject : re : executive program on credit risk  thank you for your message . yes , it will be offered in california at  stanford , but not until october 15 - 20 . if you look on our website :  www . gsb . stanford . edu / exed  ( click on programs )  it will give you the information for both programs ( london and stanford ) .  regards ,  alicia steinaecker isero  program manager , executive education  stanford university  graduate school of business  stanford , ca 94305 - 5015  phone : 650 - 723 - 2922  fax : 650 - 723 - 3950  email : isero _ alicia @ gsb . stanford . edu  - - - - - original message - - - - -  from : tanya tamarchenko [ smtp : ttamarc @ ect . enron . com ]  sent : thursday , january 06 , 2000 3 : 23 pm  to : isero _ alicia @ gsb . stanford . edu  subject : re : executive program on credit risk  hi , alicia ,  i work for enron research and i would like to take the executive  program on  credit risk .  i am trying to find out if this program is going to be offered in  california  soon . is the date known ?  can you , please , let me know .  appreciate it ,  tanya tamarchenko  11 / 19 / 99 01 : 37 pm  to : tanya tamarchenko / hou / ect @ ect  cc :  subject : re : executive program on credit risk ( document link :  tanya  tamarchenko )  \"\" isero , alicia \"\" on 11 / 10 / 99 06 : 10 : 57  pm  to : \"\" ' credit risk mailing ' \"\"  cc : \"\" weidell , anna \"\" , \"\" sheehan ,  alice \"\"  ( bcc : tanya  tamarchenko / hou / ect )  subject : executive program on credit risk  subject : announcement : executive program on credit risk modeling  credit risk modeling for financial institutions  february 27 - march 2 , 2000  in london , at the lanesborough hotel  risk management specialists , stanford business school professors of  finance  darrell duffie and kenneth singleton will be repeating their  successful  executive program on credit risk pricing and risk management for  financial  institutions . the course is created for risk managers , research  staff , and  traders with responsibility for credit risk or credit - related  products ,  including bond and loan portfolios , otc derivative portfolios , and  credit  derivatives .  this program includes :  * valuation models for corporate and sovereign bonds , defaultable  otc  derivatives , and credit derivatives  * models for measuring credit risk , with correlation , for  portfolios  * analyses of the empirical behavior of returns and credit risk  * the strengths and limitations of current practice in modeling  credit  risk  * practical issues in implementing credit modeling systems  application form :  credit risk modeling for financial institutions  london , february 27 - march 2 , 2000  this form may be completed and returned by email , or may be printed  and sent  by fax to :  stanford gsb executive education programs  fax number : 650 723 3950  you may also apply and see more detailed information by visiting our  web  site at :  http : / / www . gsb . stanford . edu / eep / crm  applications will be acknowledged upon receipt . if you have not  received an  acknowledgement within two weeks , please contact us .  please complete all sections . all information is kept strictly  confidential .  name :  put an x beside one , please : male : female :  citizenship :  job title :  company :  your company ' s main activity :  business mailing address :  business phone ( all codes please ) :  business fax :  email address :  home address :  home phone :  nickname for identification badge :  emergency contact name :  emergency contact phone :  title of person to whom you report :  your job responsibilities and experience related to this course :  ( please  provide a brief job summary here , or attach and send a biographical  summary  containing information relevant to your purpose and qualifications  for the  course . )  college or university education : please list , by degree :  college or university dates degree granted  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  please note :  all classes and discussions are conducted in english .  in order to reserve a place in the course , the program fee of  us $ 6 , 500 is  due upon notification of acceptance . this fee covers the tuition ,  most  meals , and all course materials ( including a proprietary manuscript  on  credit risk pricing and measurement ) . the program classes will be  held at  the lanesborough hotel at hyde park corner , london . hotel  accommodations  are not included .  our refund policy is available upon request .  please state the source from which you heard about this course :  name and date :  if you would like a hard copy brochure and application form , please  contact :  ( make sure to include your mailing address )  alicia steinaecker isero  program manager , executive education  stanford university  graduate school of business  stanford , ca 94305 - 5015  phone : 650 - 723 - 2922  fax : 650 - 723 - 3950  email : isero _ alicia @ gsb . stanford . edu \",0\n\"Subject: final version of the presentation  george ,  here is the presentation . i wasn ' t able to add a table showing the  distribution of bids by fuel type for april 2000 since the database is not  updated . also , in the map i didn ' t make those minor changes . because when i  try to erase those names , the map looks ugly . when i get back from california  let ' s get together and discuss the feedbacks from traders .  sevil ,\",0\n\"Subject: congratulations - well deserved . \",0\n\"Subject: interviews  hi vince ,  thanks for taking the time off to meet with me last week . i did enjoy  meeting you and your co - workers in the research group .  i do realize my background may not be the best fit for the type of work  done in your division . i ' ll be job hunting over the next several weeks ,  and would really appreciate it if you could let let me know if something  opens up at enron . thanks again and best regards .  ruwan - -  *  ruwan jayasuriya  economics department ruwan @ rice . edu  rice university http : / / www . ruf . rice . edu / ~ ruwan  houston , tx 77005  *\",0\n\"Subject: re : follow up on houston opportunity  anjam :  11 : 30 works for me . give me a call .  grant .\",0\n\"Subject: re : dale nesbitt meeting tues  margaret ,  i shall try to invite hunter shiveley who is in charge of gas market  fundamentals .  vince  margaret carson @ enron  11 / 02 / 2000 09 : 57 am  to : vince j kaminski / hou / ect @ ect  cc : james d steffes / na / enron @ enron  subject : dale nesbitt meeting tues  vince do you plan on inviting anyone from the power issues side  - - perhaps ben jacoby , julie gomez , jean mrha , scott neal to this meeting ?  thanks margaret  - - - - - - - - - - - - - - - - - - - - - - forwarded by margaret carson / corp / enron on 11 / 02 / 2000  09 : 54 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : john goodpasture 11 / 01 / 2000 05 : 53 pm  to : vince j kaminski / hou / ect @ ect , margaret carson / corp / enron @ enron , mike  mcgowan / et & s / enron @ enron , dave neubauer / et & s / enron @ enron , robert  hill / npng / enron @ enron , shelley corman / et & s / enron @ enron  cc : danny mccarty / lon / ect @ ect , bill cordes / et & s / enron @ enron , michael  moran / et & s / enron @ enron , rod hayslett / fgt / enron @ enron  subject : dale nesbitt meeting  margaret carson is going to join us in the meeting next week with nesbitt .  vince will check with ena to see if they also want to attend . i would also  like to determine if ets and / or nbp would want to send a representative ( s ) ,  although margaret said she would take copious notes for distribution to other  key players as necessary . we should ask nesbitt how he would structure a  deal for multiple clients ( eg . ets , nbp , ena , and maybe el paso ) .  [ we need to remain aware of any \"\" affiliate \"\" issues that may result , and make  certain that we are in complete compliance with the regs . ]  i will wait until after our meeting with nesbitt before deciding if / how to  approach el paso . presumably , if asked to particpate , they would share the  cost and have independent access to any working model that is developed .  jng  - - - - - - - - - - - - - - - - - - - - - - forwarded by john goodpasture / ots / enron on 11 / 01 / 2000  04 : 51 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski @ ect  10 / 30 / 2000 04 : 42 pm  to : john goodpasture / ots / enron @ enron  cc : vince j kaminski / hou / ect @ ect  subject : dale nesbitt  john ,  i talked to dale nesbitt . he suggested that the best way to evaluate his  model is to  go through a one week intensive project with assistance of somebody from his  company .  our cost is a flat fee of $ 12 , 500 that would be deducted from the purchase  price of $ 55 , 000 ,  in case we buy the software package .  the price of 55 k is indicative and will be adjusted based on the required  level of support .  dale will be in houston next week . i have tentatively invited him to visit  with us on tuesday ,  november 7 , at 3 : 00 p . m . he will adjust if you are busy at this time .  please , let me know what you think .  vince\",0\n\"Subject: preliminary interviews with the research group  good morning professor ordonez :  vince would like to bring ernesto and carlos in for a preliminary interview .  vince and stinson are available on tuesday , december 5 or wednesday ,  december 6 .  should i contact them personally , or will you arrange the interviews ?  i will need to know the times they are available on these days and i will also  need copies of their resumes .  if you need any information , please call me at 713 / 853 - 5290 .  regards ,  shirley crenshaw  administrative coordinator  enron research group  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 11 / 27 / 2000  10 : 48 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  11 / 27 / 2000 10 : 47 am  to : shirley crenshaw / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect  subject : re : greetings  shirley ,  please , invite them for a preliminary interview ,  stinson , zimin , paulo and myself .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 11 / 27 / 2000  10 : 46 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  carlos ordonez on 11 / 27 / 2000 10 : 15 : 51 am  to : vince . j . kaminski @ enron . com  cc :  subject : re : greetings  dear vince ,  i am sorry for the dely in answering . these are their phone numbers :  ernesto hernandez : ( 713 ) 532 - 0573  carlos gorrichategui : ( 713 ) 668 - 0408 .  the best way to get a hold of them at this point would be through  me . i would pass along the information and then they can contact you .  cheers ,  carlos  at 12 : 50 pm 11 / 21 / 00 - 0600 , you wrote :  >  > carlos ,  >  > i need their phone numbers .  >  > vince  >  >  >  >  >  > carlos ordonez on 11 / 21 / 2000 11 : 45 : 45 am  >  > to : vince . j . kaminski @ enron . com  > cc :  > subject : re : greetings  >  >  > vince ,  >  > i gave you both their academic reports from here and mexico and panama .  > this  > information i believe also contain some personal info . would you need more ?  > one of them was a bit nervous about the formality of turning in an actual  > resume . . .  >  > please let me know whether the academic info is not enough .  >  > cheers ,  >  > carlos  >  >  >  >  >  > at 10 : 41 am 11 / 21 / 00 - 0600 , you wrote :  > >  > > carlos ,  > >  > > please , forward their resumes to us and we shall set up an interview for  > > them .  > >  > > vince  > >  > >  > >  > >  > >  > > carlos ordonez on 11 / 21 / 2000 09 : 30 : 08 am  > >  > > to : stinson . gibner @ enron . com  > > cc : vkamins @ enron . com  > > subject : re : greetings  > >  > >  > > dear vincent and stinson ,  > >  > > both my students would love to come visit you guys for an informal  > > visit in the near future . please let me know well ahead of time  > > when they can come . if possible , see to it that their parking expenses  > > be paid when they do come .  > >  > >  > > i ' ll be in touch with you all over the next months about this and  > > a possible postdoctoral / trainee agreement ( world lab . ) .  > >  > > cheers ,  > >  > > carlos  > >  > >  > >  > >  > >  > >  > >  > >  >  >  >  >  >  >\",0\n\"Subject: gentlemen ,  spoke to vince k today and asked if he would send stinson gibner to sidney  to be available on monday to review the x system .  paul , make sure our x friends are available and the confidentially agreement  is signed . further , i spoke to phillip b . about a technical going too .  g ' day mates ,  gary\",0\n\"Subject: a letter i sent  fiona ,  ?  i sent you a letter a while ago to obtain enron ' s approval of the text . ? are  you still ? my contact for this ? ? if not , please let me know who i should send  the ? promotional material for approval .  ?  thanks ,  julie brennan  ?  lacima group  - covering letter for book brochures - final . doc\",0\n\"Subject: re : var for 1 . 5 years for frozen portfolio  vince , i sent it to you yesterday , sending again , let me know if you don ' t  get it .  tanya .  tanya tamarchenko  06 / 20 / 2000 02 : 15 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : backtesting : using historical vols versus implied\",0\n\"Subject: re : anita dupont resume  sheila ,  no , we have to go through the posting phase first .  i shall ask shirley to provide the job description .  vince  from : sheila walton 08 / 04 / 2000 02 : 44 pm  to : vince j kaminski / hou / ect @ ect  cc : norma villarreal / hou / ect @ ect  subject : re : anita dupont resume  vince , alice has strong qualities for a sr admin asst . vince , have we posted  this position on the job posting board ? if so , great . if not , we need to  post this opening to prove that we have given an opportunity to all existing  enron employees before we go outside to external candidates . otherwise ,  existing employees have a valid complaint that we are limiting their  advancement within enron but hiring externally . if we have not posted this ,  i will have the recruiter contact shirley so shirley can give us a job  description . then we can post and interview anita simultaneously . please  let me know asap if this has been posted . thanks .  sheila walton  vince j kaminski  08 / 02 / 2000 08 : 48 am  to : sheila walton / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : anita dupont resume  sheila ,  i would like to hire anita dupont as a senior admin assistant , reporting  to shirley .  please , call me about it after you review the resume .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 08 / 02 / 2000  08 : 52 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  anita dupont @ enron  08 / 02 / 2000 08 : 17 am  to : vince j kaminski / hou / ect @ ect  cc : shirley crenshaw / hou / ect @ ect  subject : anita dupont resume  vince :  here is the resume you requested . thanks . anita\",0\n\"Subject: entouch newsletter  business highlights  enron industrial markets  metal bulletin - iron and steel awards for 2000  pushiest entrant : enron , the us commodity trading company , which promised it would revolutionize the steel business by offering futures in hot rolled coil via its online market place .  the eim fundamentals analysis group is excited to announce that dave allan has joined as a director , responsible for all forest products lines . he comes to eim with 20 years of experience in the forest products industry , of which 14 were spent at abitibi and 6 with pulp and paper week . please join us in welcoming dave .  the siebel team ( \"\" the force \"\" ) continues to work towards program implementation of its customer management system in early may , with training to begin at the end of april . stay tuned for updates .  enron global lng  enron global lng is positioning itself to be a creator and leader of a global wholesale lng market . the rising prices of natural gas in the united states and concerns over future energy supplies have created a bullish outlook for lng in the u . s . and around the globe . lng has played a major role in serving energy needs in many parts of the world , but its place in the u . s . energy picture has been limited . an lng market that spans the globe can supply vast amounts of otherwise stranded gas to the world ' s growing appetite for cleaner burning fuels . enron global lng sees great opportunity for enron ' s wholesale energy business model to help shape yet another energy market .  in the news  enron corp . says first - quarter profit rose 20 percent  houston , april 17 ( bloomberg ) - - enron corp . , the largest energy trader , said first - quarter profit rose 20 percent as sales almost quadrupled . profit from operations rose to $ 406 million , or 47 cents , from $ 338 million , or 40 cents , in the year - earlier period . enron raised its 2001 profit forecast to $ 1 . 75 to $ 1 . 80 a share , from its january projection of $ 1 . 70 to $ 1 . 75 .  first - quarter revenue surged to $ 50 . 1 billion from $ 13 . 1 billion as enron boosted the volume of power sold in north america by 90 percent . enron had a first - quarter gain of $ 19 million , or 2 cents a share , for an accounting change , making net income $ 425 million , or 49 cents a share . there were no charges or gains in the year - earlier period .  welcome  new hires  egm - janelle russell ,  eim - david allan , sylvia carter  ena - sasha divelbiss , amy quirsfeld , judy zhang , annette thompson , kelly donlevy - lee , grant patterson  transfers ( to or within )  ena - william abler , magdalena cruz , barbara taylor , james reyes , marvin carter , angel tamariz , jesse bryson  eim - cassandra dutton , christine sullivan , camille gerard , sherri kathol , jennifer watson  egm - steven batchelder  legal stuff  the information contained in this newsletter is confidential and proprietary to enron corp . and its subsidiaries . it is intended for internal use only and should not be disclosed .\",0\n\"Subject: damages limitations  bill and vince , please see the attached memorandum . vince , this relates to  what we briefly spoke about during our recent meeting .  cheryl , can you set up a meeting for bill , vince and i to meet and discuss ?  thanks .  rz\",0\n\"Subject: info about enron ' s bandwidth market  martin ,  can you , please , call shu and provide him with information about ebs ?  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 25 / 2000  05 : 46 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  jun shu on 10 / 23 / 2000 07 : 27 : 49 pm  to : vkamins @ enron . com  cc :  subject : info about enron ' s bandwidth market  dear dr . kaminski ,  i enjoyed your talk this afternoon at ieor very much .  i wonder if you could point me to some information  resource on enron ' s bandwidth market .  i am a ph . d student at ieor . i work with professor  oren and professor varaiya from eecs department on  the topic of pricing the internet . in particular , i am designing  pricing mechanism in the framework of the diffserv  architecture which is the latest proposal made by  ietf to provide scalable service differentiation .  i would very much like to get in touch with people  in enron working on the similar topics .  thank you very much .  jun shu  http : / / www . ieor . berkeley . edu / ~ jshu\",0\n\"Subject: addition to enron - summer internships  vince :  please include ram vittal to the summer internship list , if you have not  already done so .  according to my count , that make a total of 8 students from the enron tiger  team who have a desire to work with enron .  thanks ,  donna  - - - - - original message - - - - -  from : vittal , maheshram [ mailto : mvittal @ wharton . upenn . edu ]  sent : friday , february 02 , 2001 10 : 17 pm  to : ' fap '  subject : re : call from enron  donna :  i had submitted my resume directly to their recruiting office and haven ' t  heard from them . i would be very willing to reforward my resume , if  required .  thanks ,  ram\",0\n\"Subject: career opportunity  dear mr . kaminski :  i recently sent you a copy of my resume and am just  following up to see if it reached you without any problems ? i know you  are a very busy professional and i would like to apologize for any  inconvienence i have caused . i am just very dedicated in trying to  obtain a career with your very well - respected company . i would really  like to put my expereince and education to work for enron , as well as  establish my life around the company . i am looking for an entry - level  postion if that ' s what it takes to bulid my life and family enron  corporation . once again mr . kaminski , i am deeply apologetic for taking  up any of your time . any information you could help me with about my  resume would be greatly appreciated . thank you for your valuable time .  warmest regards ,  eric hilton\",0\n\"Subject: risk chapters  conrad - - i am working on development of enrononline ' s web site . i got your  name from vince kaminski . could you send me the pdf files of the chapters  that you and vince discussed for posting on enrononline along with any  copyright information ?  thanks  kal shah  001 713 853 9354  - - - - - - - - - - - - - - - - - - - - - - forwarded by kal shah / hou / ect on 06 / 21 / 2000 12 : 39 pm  - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  06 / 21 / 2000 12 : 39 pm  to : kal shah / hou / ect @ ect  cc :  subject : re : enron site / mepr 2  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 06 / 21 / 2000  12 : 42 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  conrad gardner on 06 / 05 / 2000 09 : 16 : 05 am  to : vince . j . kaminski @ enron . com  cc :  subject : re : enron site / mepr 2  sorry vince  one must have got away !  will contact dan shortly .  conrad  at 08 : 04 am 6 / 5 / 00 - 0500 , you wrote :  >  > conrad ,  >  > thanks for your message .  >  > there are 3 papers enron contributed to the last mepr .  >  > there is also another paper on electricity i contributed to the \"\" red book \"\"  > on us  > power markets , as well as a paper or credit risk management , and a paper  > on weather derivatives . all these papers included in other risk books were  > written by enron  > employees .  >  > we would like them included as well , if technically possible .  >  >  > i think that offering other energy related books through our site , in  > addition to mepr 2 ,  > is fine , but i would leave the decision to dan diamond , who is responsible  > for the project .  >  >  > vince  >  >  >  >  >  > conrad gardner on 06 / 05 / 2000 07 : 08 : 36 am  >  > to : vince . j . kaminski @ enron . com  > cc :  > subject : enron site / mepr 2  >  >  > > date : mon , 05 jun 2000 13 : 02 : 02  > > to : vince kaminski  > > from : conrad gardner  > >  > > dear vince  > >  > > thanks for the call and email on friday . i will contact masuyuki and  > follow  > it from there .  > >  > > regarding the enron site , i think it is absolutely fine to put up the two  > enron chapters ( i ' ll provide pdfs ) , and prevent any customer leakages from  > your site by the use of \"\" submit \"\" buttons . as mentioned , i ' ll offer a 20 %  > discount on mepr 2 to customers but would you be interested in some of other  > energy titles ? - please let me know .  > >  > > many thanks  > >  > > conrad gardner  > >  > head of book publishing  > risk books  > haymarket house  > 28 - 29 haymarket  > london  > swly 4 rx  > direct tel : + 44 ( 020 ) 7 484 9750  > main tel : + 44 ( 020 ) 7 484 9700  > fax : + 44 ( 020 ) 7 484 9758  > e - mail : conrad @ risk . co . uk  > www . riskpublications . com  >  >  >  >  >  >  >  head of book publishing  risk books  haymarket house  28 - 29 haymarket  london  swly 4 rx  direct tel : + 44 ( 020 ) 7 484 9750  main tel : + 44 ( 020 ) 7 484 9700  fax : + 44 ( 020 ) 7 484 9758  e - mail : conrad @ risk . co . uk  www . riskpublications . com\",0\n\"Subject: re : enron / stanford program  hi vince , stinson  thank you for hosting my visit to enron and arranging for me to meet  with you and other decision - makers at enron . the meetings been very  productive on my side , as i try to formulate the project more  clearly .  we are entering the period that i have to set up the research assistantships  ( ra )  for next year for giuseppe and the other student i have committed to support  on this project . school starts in late september , but already i have to  start putting together the papers for the ras in the fall , as per departmental  requirement .  would it be possible to put the project in place soon , so that i can  do the raship papers for the students ? i expect i will start having  pressure from the department to do the paperwork for these raships early  september , and i have to have them in place by the third week of september ,  just before school starts .  i am attaching below the same draft of a letter i had sent you in a previous  e - mail , which would be required to set up the project at stanford . please ,  let me know how you would like to proceed .  again , thanks for your hospitality and i look forward to productive  collaboration  during the coming year and beyond .  best regards ,  nick  ps : vince , i look forward to seeing you during your visit to the bay area  in october .  draft of letter to be sent from enron to stanford .  prof . nicholas bambos  420 terman engineering center  management science & eng . dept . and  electrical engineering department  stanford university  stanford , ca 94305  dear nick ,  we are happy to provide gift funds of $ 100 , 000 per year , over  three years , to support a program in your research group , related  to bandwidth markets / trading and networking technologies .  enron would like to support research activities in the above  mentioned area , including pd . d . student work , research seminars etc .  there may also be opportunities to have the supported ph . d . students  do summer internships at enron , related to their research interests .  please find enclosed a check of $ 100 , 000 payable to stanford university  for supporting this research effort in your group during the first year .  best regards ,  name and title\",0\n\"Subject: vince ,  liberty gas storage project - we appreciated the insight from zimin lu on the  liberty gas storage project . i had originally thought that enron could  negotiate a deal directly with hng storage co . on the joint development of  these facilities . however , hngs has now retained wasserstein pirella to  \"\" market \"\" the opportunity . [ fyi - wasserstein was the investment banker that  handled the recent sale of the market hub partners storage facilities , so  they certainly would have a current list of interested parties . ]  unfortuneately , we will now have to participate in another \"\" auction \"\" if we  are to pursue this further . i ' ll let you know what we decide to do .  alaska / northern canada pipeline - i would like to discuss ways that enron  might enhance our prospect of participating in the initiative to bring  substantial new gas reserves from alaska and northern canada to the lower  48 . a large equity investment in a very expensive , regulated pipeline is not  likely to get much support within enron . instead , our competitive advantage  may best be realized through the efficient and creative utilization of the  existing us pipeline grid , ( \"\" backhaul \"\" on northern natural , expansion  opportunities on northern border and nng , or even capacity exchanges with  other pipeline operators ) .  i think it would be very useful if we had the capability to model the impact  of the evolving north american marketplace on that initiative , and vice  versa . any insight we could develop on who will be the eventual \"\" winners \"\"  and \"\" losers \"\" if / when that large volume of new gas enters the market would  be valuable .  i will look forward to our discussion tomorrow ( thursday ) at 1 : 30 pm .  regards , jng\",0\n\"Subject: re : presentation  david ,  i am leaving for vacation this weekend and i haven ' t received the copy of  your presentation yet .  the window during which i could make changes to my presentation is closing  very fast . let ' s  do the following : i shall keep my presentation as is ( this means that i shall  use the copy of my  presentation i sent to dawn scovill and you this week ) . if there is an  overlap between our presentations , so be it .  dawn , please use the copy of my presentation i sent you earlier this week .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 17 / 2000  04 : 33 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  03 / 16 / 2000 08 : 02 am  to : \"\" dawn scovill \"\" @ enron  cc : sobotkad @ kochind . com , vince j kaminski / hou / ect @ ect  subject : re : presentation  dawn ,  i met david sobotka from koch this morning and we talked about coordinating  our presentations .  this means there will be changes intended to avoid overlaps . sorry for that .  the portions of my presentation  will survive ( those about valuation paradigms ) and i shall add a few more  pages on accounting treatment of weather derivatives  plus more specific examples . david will cover primarily market evolution +  plus examples of some  standard structures , and we shall both give more interesting examples of  specific deals executed by our companies .  i shall send you an updated version of my part next week . let me know what  the deadline is .  vince  \"\" dawn scovill \"\" on 03 / 14 / 2000 07 : 53 : 47 am  to : \"\" vince j kaminski \"\"  cc :  subject : re : presentation  thanks - - would you like me to include these in the conference book ? or do  you anticipate changes ?  dawn  from : dawn scovill , conference coordinator  \"\" powerful new ideas 2000 \"\"  dawn @ perfectmeeting . com  - - - - - original message - - - - -  from : vince j kaminski  to :  cc : shirley crenshaw ; vince j kaminski  ; vince j kaminski  sent : monday , march 13 , 2000 1 : 56 pm  subject : presentation  >  >  > dawn ,  >  > i am sending you an electronic version of my presentation .  >  > vince kaminski  >  > ( see attached file : fplo 400 . ppt )  >\",0\n\"Subject: re : seismic data on oil & gas field development via satellite  there may be a business opportunity with this company , but i would not advise  making an investment .  kevin garland  richard reichardt  10 / 10 / 00 12 : 30 pm  to : mike mcconnell / hou / ect @ ect  cc : larry lawyer / enron communications @ enron communications , tom gros / enron  communications @ enron communications , vince j kaminski / hou / ect @ ect , kevin  garland / enron communications @ enron communications , richard dimichele / enron  communications @ enron communications , ken rice / enron communications @ enron  communications  subject : seismic data on oil & gas field development via satellite  mike ,  using nasa satellite transmission of maritime data and establishing a houston  data center to consolidate and centrally process 3 d seismic data surveys for  oil and gas extraction , exploration and development could save the petroleum  industry more than $ 300 million dollars annually through reduced operational  expenses . added value in shortening the time to process and deliver the  finished surveys should generate more than $ 26 million per site ( based upon  $ 15 / barrel for average oil well production to market 30 days sooner ) in  revenue . by re - selling this data to market analysts or by internally using  this data for forecasting future oil / gas production enron could increase the  accuracy of forecasting reserves and production capabilities globally . by  holding the data as exclusive ( or partially exclusive ) , enron would have a  significant market advantage in futures pricing for oil and gas . ( vince ' s team  is quantifying the valuation of this information )  attached please find an updated version of the business case for seismic data  transfer via satellite , by a geophysicist at spacedata - william k . aylor ,  calculated using $ 22 / barrel oil .  based upon your availability , jon adler and i would like to make a  presentation to you ( or your designated representative ) on the enron  potential of this opportunity , sometime next week ( 17 - 20 october ) .  - sdt business case 4 . pdf  v . r . ,  richard reichardt  enron broadband services  ( 713 ) - 345 - 8377 ( office )  ( 713 ) - 907 - 3767 ( mobile )  1400 smith street , suite eb 4364  houston , texas 77002\",0\n\"Subject: confirmation of your order  this is an automatic confirmation of the order you have placed using it  central .  request number : ecth - 4 qqqzj  order for : maureen raymond  1 x ( compaq armada m 700 $ 3522 ) enron it purchasing\",0\n\"Subject: congratulations  vince ,  congratulations on your promotion to managing director . you certainly deserve  it .  zhiyong\",0\n\"Subject: houston research opportunity  hi vince ,  thank you for offering the opportunity in houston to me last week . i guess i  would interested to discuss it further with you - one question i have is  about which commercial groups within the houston office you were looking for  additional research coverage on ? please let me know when you might be free  to talk - the best times for me would be from between 12 pm and 5 pm houston  time ( i am usually home from 3 pm houston time ) .  regards ,  anjam  x 35383  home : 0208 877 9741\",0\n\"Subject: re : completion of ibuyit request for wincenty ( vince ) kaminski :  eva : remedy 412144  vince ,  you have been approved for the technical view within ibuyit . changes will  take effect on next login .  thank you ,  sap security ( eva -  from : raul davila / enron @ enronxgate on 04 / 19 / 2001 06 : 02 pm  to : sap security @ enron  cc :  subject : re : pending approval for ibuyit request for wincenty ( vince )  kaminski : eva : remedy 412144  approved  - - - - - original message - - - - -  from : tow , eva on behalf of sap security  sent : thursday , april 19 , 2001 5 : 39 pm  to : davila , raul  cc : vkamins @ enron . com ; crenshaw , shirley  subject : re : pending approval for ibuyit request for wincenty ( vince )  kaminski : eva : remedy 412144  raul ,  raul ,  vince kaminiski is requesting acces to the technical view for catalog along  with the ibuyit approval role . this is pending your approval . please send  your response to sap security .  thanks !  shirley crenshaw @ ect  04 / 19 / 2001 03 : 01 pm  to : sapsecurity @ enron . com  cc : vince j kaminski / hou / ect @ ect  subject : ibuyit form  attached please find the completed form for vince kaminski , managing  director , research group .  he will be approving all purchases for cost center 107043 .  >  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 19 / 2001  02 : 58 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : debbie skinner / enron @ enronxgate on 04 / 19 / 2001 02 : 52 pm  to : shirley crenshaw / houston / eott @ eott , shirley crenshaw / hou / ect @ ect  cc :  subject : ibuyit form  hi shirley  there were two shirleys , so sending to both  >  isc help desk\",0\n\"Subject: model validation  trena ,  i have received your message . please , send the model for review to zimin lu .  maureen raymond  and myself will work with zimin to review the model .  vince\",0\n\"Subject: enron ' s 2001 goals  our vision to become the world ' s leading company positions our company for  great success this year and beyond . our success is dependent on execution .  with that in mind , we are making enron ' s 2001 corporate and business unit  goals available to employees .  please take a few minutes to review our 2001 goals on enron ' s intranet at  http : / / 172 . 28 . 92 . 190 / bowne / we believe they will help you gain a better  understanding of our vision for the company and will inspire you to identify  innovative ways to help your organization and enron achieve our objectives .  we have a lot to accomplish this year , and with your hard work and  dedication , we can realize another year of stellar performance .\",0\n\"Subject: fwd : dinner for paula  return - path :  received : from rly - zbo 2 . mx . aol . com ( rly - zbo 2 . mail . aol . com [ 172 . 31 . 41 . 2 ] ) by  air - zbol . mail . aol . com ( v 67 _ bl . 21 ) with esmtp ; fri , 28 jan 2000 17 : 38 : 20 - 0500  received : from mailman . enron . com ( mailman . enron . com [ 192 . 152 . 140 . 66 ] ) by  rly - zbo 2 . mx . aol . com ( v 67 _ bl . 21 ) with esmtp ; fri , 28 jan 2000 17 : 38 : 03 - 0500  received : from dservl . ect . enron . com ( dservl . ect . enron . com [ 172 . 16 . 1 . 37 ] ) by  mailman . enron . com ( 8 . 8 . 8 / 8 . 8 . 8 / corp - 1 . 03 ) with esmtp id waal 4060 for  ; fri , 28 jan 2000 22 : 37 : 36 gmt  received : from notes . ect . enron . com ( notes . ect . enron . com [ 172 . 16 . 4 . 33 ] ) by  dservl . ect . enron . com ( 8 . 8 . 8 / 8 . 8 . 8 ) with smtp id qaa 22343 for  ; fri , 28 jan 2000 16 : 38 : 01 - 0600 ( cst )  received : by notes . ect . enron . com ( lotus smtp mta v 4 . 6 . 5 ( 863 . 2 5 - 20 - 1999 ) )  id 86256874 . 007 c 528 f ; fri , 28 jan 2000 16 : 37 : 55 - 0600  x - lotus - fromdomain : ect  from : \"\" vince j kaminski \"\"  to : vkaminski @ aol . com  message - id :  date : fri , 28 jan 2000 16 : 37 : 55 - 0600  subject : dinner for paula  mime - version : 1 . 0  content - type : text / plain ; charset = us - ascii  content - disposition : inline  content - transfer - encoding : 7 bit  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 28 / 2000  04 : 37  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : marie thibaut @ enron communications on 01 / 26 / 2000 02 : 55 pm  sent by : marie thibaut @ enron communications  to : ametz @ uswebcks . com , steve lovett / enron communications @ enron  communications , richard weeks / enron communications @ enron communications ,  anthony mends / hou / azurix @ azurix , vince j kaminski / hou / ect @ ect  cc : paula corey / enron communications @ enron communications  subject : dinner for paula  alaina , richard , vince , tony , elizabeth and paula - following are directions  to  paula ' s birthday dinner ( 6 : 30 pm ) at my house on saturday night , the 29 th  note to all  i hope these directions are somewhat clear but . . . . before you read my  directions  please be advised that it is a well known fact that marie thibaut has  absolutely  \"\" no sense of direction \"\" ! !  directions to my house - coming in from beltway 8 north / sam houston tollway -  exit onto tomball parkway / 249 n and exit towards fml 960 , turn right on 1960 ,  stay on 1960 for approximately 3 miles .  turn left on wunderlich ( there is a 24 hour gym on the corner ) stay on  wunderlich until you come to 14515 trophy club condos - on the left side of  street . turn left into the condos and press * 6070 at the gate entrance .  continue to the left ( which bears slightly to the right ) , pass over 2 speed  bumps until you come to the end of street . turn left and my unit is on the  right side upstairs # 706 . call me at 281 - 587 - 2029 if you have trouble with my  directions .  directions to my house - coming in from i 45 - exit at 1960 going west , stay  on  1960 for approximately 9 miles . turn right on wunderlich until you come to  the  14515 trophy club condos - on the left side of street . turn left into the  condos and press * 6070 at the gate entrance . continue to the left ( which  bears  slightly to the right ) , pass over 2 speed bumps until you come to the end of  street . turn left and my unit is on the right side upstairs # 706 . call me at  281 - 587 - 2029 if you have trouble with my directions .\",0\n\"Subject: wall street journal subscription  good morning mary sue :  can you please get the wall street journal for kevin kindall ? it should  be delivered to the 19 th floor along with the rest .  co . # 0011 , rc # 100038  thanks and have a great day !  shirley  3 - 5290\",0\n\"Subject: enron research and ebs engineering and operations group technical  forum  scott :  this is the memo that vince sent to the \"\" top \"\" management for the offsite .  i am sending it to you for your information . glad you can be there on  thursday evening .  * * * * * * * * * * * *  i would like to invite you to an off - site meeting of john griebling ' s  organization  and the research group .  date : april 27 - april 29  location : breckenridge , colorado  as you know , john griebling is managing the network design and construction  project  currently under way in ebs . the research group is actively involved in this  effort  which requires advanced quantitative skills in the area of stochastic  optimization and  stochastic processes ( for modeling and forecasting internet traffic flows ) .  the objective of this meeting is to develop common language and accomplish  transfer  of skills between the two groups , to facilitate cooperation on this project  in the future .  we are inviting ken rice and kevin hannon to this meeting . we would  appreciate if you could  speak , together with kevin and ken , on strategic directions of ebs . it is  important for a group  of technical people , with relatively specialized technical skills , to  understand the big picture .  i am attaching the preliminary agenda for this meeting .  vince kaminski\",0\n\"Subject: re : risk magazine - enron sponsored issue on energy derivatives  yes , i will have sam send him two copies .  sam : can you send the below enron employee 2 copies of \"\" the book \"\"  thanks !  vince j kaminski  02 / 28 / 2000 08 : 21 am  to : shirley crenshaw / hou / ect @ ect  cc :  subject : risk magazine - enron sponsored issue on energy derivatives  shirley ,  do we still have some copies left ?  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 28 / 2000  08 : 19 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  gopalakrishnan subramaniam @ enron _ development  02 / 25 / 2000 11 : 24 pm  sent by : subramaniam gopalakrishnan @ enron _ development  to : vince j kaminski @ ect  cc :  subject : risk magazine - enron sponsored issue on energy derivatives  i have recently come on board as treasurer , enron india . prior to joining ,  i was with reliance industries , a petrochemical conglomerate in india .  the central banking authorities are now thinking of permitting  corporates to hedge their oil and other related risks . i believe the  literature published  by risk in collaboration with enron has come to be considered as an  industry standard . would it be possible to arrange for two copies to be sent  across to us .  thanx n regards  g . subramaniam  treasurer ,  enron india pvt . ltd .  36 , maker chambers vi ,  nariman point ,  mumbai 400 021\",0\n\"Subject: understanding and applying financial mathematics  hello -  this email is a reconfirmation that you have received the speaker package i  have sent you last month regarding the above titled training course . if you  have not received it , please contact me asap and i will send you all the  information needed for the training . also , please remember to hand in the  following :  your biographical details  speaker checklist  copy of your presentation for our documentation printed materials ( please  keep in mind that you will need to bring your presentation with you at the  training , as we will not have it pre - downloaded ) .  please keep in mind the deadline of july 27 and please call or email me with  any questions you have .  ?  regards ,  amy lamonsoff  training coordinator  ?  t ( 212 ) 925 - 1864 xl 48  f ( 212 ) 925 - 7585  alamonsoff @ watersinfo . com  ?  risk waters group  270 lafayette street , suite 700  new york , ny 10012\",0\n\"Subject: the installation of the equipment you ordered is completed  - - - automatic notification system ( request # : ecth - 4 r 5 mlm )  requested for : vince j kaminski  requested by : shirley crenshaw  the installation of the equipment ( see below ) has been completed .  en 6600 desktop p 3 - 600 10 gb 64 mb 32 x nt 4 . 0  en 6600 128 mb installed in desktop  21 \"\" vl 100 monitor\",0\n\"Subject: all about current and near future gas / power markets  it ' s all here .  comments appreciated .  best regards ,  jhherbert  - june 2000 . pdf\",0\n\"Subject: maureen ' s expenses  it appears that administratively maureen ' s expenses in coming to london  cannot be processed from this office . can i confirm that there is no doubt  that the london office will pay these . could i therefore please ask shirley  to process them in houston , and we will find out how they can then be charged  back from research in houston to the london metals cost centre .  thanks in advance for you help .  tani nath\",0\n\"Subject: interview - numerical methods & finance  dear tanya :  it was a great pleasure to have met you . i very much enjoyed the interview and your insightfull questions .  i am keenly aware that many of the methods that i discussed with you yesterday are unique , new and not reported elsewhere . this is true both about the work i did in whole yield curve interest rate pricing as well as garch . the innovations stem from the extensive numerical analysis experience that i have both in turbulence physics as well as finance . they entailed considering the problem from its raw formulation , mathematical analysis , physical interpretation , taylored numerical method development , software writting and develoment and data management .  as to why i have not yet published anything the answer is that the driver in my work has been adding value to the business not publishing . publishing is however an option that has always been open with my former supervisor who is aware of the work that i did .  i not however that these results were possible only by exploring to the utmost extent the mathematics , finance , software design and data managemnet aspects of the problem . absence of any of these aspects is likely to cripple performance and execution .  please recall that as good as they were the performance measures that i mentioned to you were for a single processor machine . vastly better can be achieved with both soft parallelism ( multithreading ) as well as hard parallelism ( heterogenous network ) . this fo course allows us to step up the reach of the models used .  in fact i know for a fact that better can be done than what i mentioned in the interview . from work that i have been doing on the integration of the swaption volatility surface on the whole yield curve interest rate model itm and otm instruments can be included in both the callibration , pricing and hedging .  i look forward hearing back from you soon and particularly to the opportunity of us cooperating .  best regards  joao\",0\n\"Subject: sevil yaman  hi norma ,  sevil ' s primary project has been the generation bidding analysis for the east power desk . she worked closely with the power fundamentals group and the it group in collecting and organizing the data , and then developing the analysis . sha has focused on the pjm area and plans to expand the analysis to other regions in the east .  sevil has also investigated the issue of risk premia in power prices compared to marginal cost .  vasant\",0\n\"Subject: re : private firm schedule  thanks for the schedule update  - - - - - original message - - - - -  from : kirkpatrick , eric  sent : monday , april 23 , 2001 10 : 52 am  to : mack , iris ; dhar , amitava ; brent , richard ; salmon , scott ; chaney , craig ;  mumford , mike ; detiveaux , kim ; cruver , brian  subject : private firm schedule  all :  this is the rough schedule we came up with at today ' s video conference :  submit rfp to d & b , experian , and amadeus 2 days 25 apr mumford  receive back rfps 1 . 5 weeks 4 may mumford  complete evaluation , selection & authorization 1 week 11 may mumford / mack  contract complete and signed 2 weeks 25 may mumford  data to iris & amitava 3 weeks 15 june mumford  model development complete 4 weeks 15 july mack  * integration of model and data feeds into cts 6 weeks 30 august kirkpatrick  prior to integration into cts any prices would have to be manually uploaded  into cts via spreadsheet .  the rfp will include a request for a smaller data calibration set that we may  select to purchase immediately .  we can revisit this schedule at our wednesday video conference .  eric kirkpatrick\",0\n\"Subject: full - time offer terms  cantekin ,  dolores muzzy forwarded your e - mail . i apologize for not answering sooner  but i have been travelling .  unfortunately , the terms of the associate program compensation package are  not negotiable . we have reviewed our terms and believe we are competitive  with our peers . i have spoken with vince kaminski who will be calling you to  discuss .  given that it has taken 6 days to respond to you , if you are still  considering enron ' s offer of employment i will extend your deadline until  october 24 th .  please call if you have any other questions .  sincerely ,  charlene jackson\",0\n\"Subject: sokolov eis expenses  - - - - - - - - - - - - - - - - - - - - - - forwarded by anita dupont / na / enron on 03 / 15 / 2001 05 : 14  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : kevin jolly / enron @ enronxgate on 03 / 14 / 2001 01 : 38 pm  to : anita dupont / na / enron @ enron  cc :  subject : sokolov eis expenses  anita , the other day i called you to get jason sokolov ' s cost center . some  of his eis expenses ( market data , long distance ) for jan and feb 2001 were  charged to the enron corp . rac cost center . in order for our accountants to  reclass the expenses , we need your approval that the expenses can be moved .  if this is okay , just reply back and let me know .  see the attached files for the detail of the expenses to be moved for jan and  feb .  thanks for your help ,  kevin\",0\n\"Subject: re : valuation  steve ,  please , let me know when you come back .  i have detected a tendency to implement different  approaches to valuation in the past .  to some extent , it reflects the absence of formal  rules for sign - off on the valuation techniques  which , in turn , reflects , the turf wars and the desire by the  originators to control the outcomes .  vince  stevestock @ pagenetips . com on 01 / 19 / 2001 06 : 53 : 14 pm  to : vince . j . kaminski @ enron . com  cc :  subject : valuation  vince ,  i ' d like an opportunity to talk to you about valuation .  i ' m hearing confusing messages about the way that the uk it team and the uk  traders get their valuation code aparently signed off by research , while  here . . . you provide it for our guys to wrap up .  we have now a situation where the uk team are using a home grown valuation  piece called dove , where results differ from those of the equivalent usa  portcalc .  i need to break through the pride barriers and the \"\" not built here \"\" syndrome ,  and try to do the right thing , but i don ' t beleive i can do that without you  guidance .  i ' m scared that if we diverge too much we will never work globally on these  systems .  steve  - - - - - - - - - - - - - - - - - - - - - - - -  tel : 713 - 345 - 8980  cell : 281 - 541 - 1862  page : stevestock @ pagenetips . com\",0\n\"Subject: re : arthur andersen model validation request  gilian ,  no , we don ' t additional need more data . i understand stinson gibner has  already sent you a reply with  his findings .  vince  to : vince j kaminski / hou / ect @ ect  cc :  subject : arthur andersen model validation request  vince ,  was the data we provided sufficient to determine whether the global markets  book administrator correctly utilized the spread option model ? please let me  know if there are any additional data requirements .  thank you again for your assistance .  gillian boyer  x 30968  - - - - - - - - - - - - - - - - - - - - - - forwarded by gillian boyer / aa / corp / enron on 12 / 18 / 2000  01 : 39 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  gillian boyer  11 / 27 / 2000 10 : 25 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : arthur andersen model validation request  vince ,  our goal is to validate that the enron global market book  administrators are accurately using the \"\" spread option model \"\" as developed by  the research group . to determine this , we would like to provide you with  the inputs for a particular deal ( as provided by a global markets book  administrator ) and have you recalculate the deal value . we will then  compare your results to the values calculated by global markets .  two koch deals have been chosen due to their substantial p / l effect . i have  attached the deal data in two forms : ( 1 ) the spread option model that kara  boudreau , book administrator egm , provided and ( 2 ) an excel spreadsheet that  isolates the 2 deals .  if there is anything more that we could provide , please don ' t hesitate to  call me at x 30968 .  thank you so much for all of your help .  gillian  1 .  2 .\",0\n\"Subject: re : green card  sevil ,  i believe you and margret daffin have spoken about the next steps for your  green card . you will need to start working on you hib at the begining of  october 2001 .  if there is any confusion on my part please let me know .  norma villarreal  x 31545  below is dicussion between margret daffin and sevil in an e : mail january 26 ,  2001 :  \"\" sevil : first of all we have to get you an hib visa before we can work on  getting you the green card .  after you get your opt , contact me sometime in the summer and i will start  working on your hib visa which we will obtain in approx . october , 2001 . we  cannot start the green card process when you are still on an fl visa - you  have to be on an hib visa . there is no rush - you will have six years on the  hib visa - plenty of time in which to get the green card . \"\"  this was in reference to her note to me , as follows :  \"\" i think i ' ll have time approximately until the end of 2002 by using cpt and  opt . this makes almost two years . if we can start green card process now , do  you think that i would get it before i need hl . in every case , can ' t we start  green card before i get hl ? because i don ' t want to waste these two years  given the fact that green card process is a long process . \"\"  - - - - - original message - - - - -  from : yaman , sevil  sent : thursday , march 08 , 2001 3 : 59 pm  to : daffin , margaret  cc : norma villarreal / hou / ect @ enron  subject : green card  i haven ' t heard back from any of you regarding my immigration status . could  you please get back to me with the information about the initialization of my  green card process ? thank you .  sevil yaman  eb 1943  x 58083\",0\n\"Subject: re : price process parameter esimator  michael , i think you mean price process parameter esimator .  it is under o : \\ research \\ exotica \\ prices \\ reversion 97 _ trend . xls  tanya  \"\" michael schilmoeller \"\" on 05 / 11 / 2000 05 : 04 : 20  pm  to : ttamarc @ enron . com  cc : gmasson @ enron . com , vkamins @ enron . com , mike _ niman @ pgn . com  subject : price process simulator  hi tanya ,  hope things go well for you . can i get a copy of the price process simulator  you wrote ? it would be helpful in developing a plant dispatch module for  monet , the power systems simulation model i co - authrored .  thank you ,  michael\",0\n\"Subject: new frbny research : 5 / 3  please respond to michael . demottnow available at the new york fed ' s research site :  \"\" stocks in the household portfolio : a look back at the 1990 s , \"\" by tracy and schneider ( current issues 7 , no . 4 ) http : / / www . newyorkfed . org / rmaghome / curr _ iss / ci 7 - 4 . html  \"\" currency orders and exchange - rate dynamics : explaining the success of technical analysis , \"\" by osler ( staff report 125 ) http : / / www . newyorkfed . org / rmaghome / staff _ rp / 2001 / srl 25 . html  \"\" recent changes in the u . s . business cycle , \"\" by chauvet and potter ( staff report 126 ) http : / / www . newyorkfed . org / rmaghome / staff _ rp / 2001 / srl 26 . html  u . s . and global economies charts , updated every wednesday http : / / www . newyorkfed . org / rmaghome / dirchrts /  in addition , the foreign exchange committee ' s 2000 annual report is now available http : / / www . newyorkfed . org / fxc / ar 2000 / fxaro 0 . html  research home page http : / / www . newyorkfed . org / rmaghome  feel free to forward these messages . to unsubscribe , contact listserv @ peach . ease . lsoft . com . in the e - mail , type : signoff frbnyrmagl . for more details : http : / / www . newyorkfed . org / rmaghome / subscribe / subscribe . html .  this notification service is provided to you free of charge . by subscribing to the service and providing your e - mail address , you agree to waive any claim against the federal reserve bank of new york for any messages that you may receive by reason of your subscription to this service and / or any resultant harm to you and / or your computer from receipt of such messages . the federal reserve bank of new york assumes no responsibility for any inaccuracies in any messages you may receive as a result of your subscription to this service .\",0\n\"Subject: regulatory var  tentative agenda for the research lunch meeting on wednesday , august 2 nd at  11 : 30 am :  objective : develop a methodology and a model for estimating risks of the ees  regulatory portfolio .  discussion items :  1 . elements of the regulatory portfolio  - transmission and distribution ( t & d ) positions  - bundled tariffs ( full utility tariffs that are in place prior to  deregulation )  - competitive transition charges ( ctc ) positions  - diversification between the three risk elements  2 . risk drivers in each bucket ( scott stoness of ees to provide more detail )  - t & d : interest rates  - bundled tariffs : regulatory decisions , power prices , interest rates ,  inflation  - ctc : power prices , fuel prices , generation valuation , generation stack ,  regulatory decisions  3 . position aggregation parameters ( scott stoness of ees to provide  suggestions )  - by nerc region  - by state  - by utility  - by utility tariff  4 . model environment  - excel  - grms / risktrac  - other  5 . var parameters  - correlations  - factor loadings ( 1 - factor model ? )  - other  6 . ees specific issues  - the size of ctc positions is impacted by the roll - off date , which is  subject to change due to a number of factors ( jump diffusion ? )  - t & d and bundled tariffs do not move daily , but rather once every 2 - 3 years  ( event driven ? )  thanks , vlady .  ps : shirley , could you please make the lunch arrangements accordingly .\",0\n\"Subject: urgent  the associate and analyst recruiting department will be conducting a number  of two hour workshops to review our recruiting and interview process for the  fall on - campus recruiting effort . critical information regarding our  on - campus interview process , revised evaluation forms and program structure  will be reviewed during these two hours sessions .  it is mandatory that all team members attend these workshops . all team  members must attend in order to articulate and demonstrate the enron  recruiting process . knowing how busy schedules are , we have made  arrangements to present these workshops in two hours sessions for a total of  40 workshops that will run during the last week of august , through the month  of september and end at mid october .  listed below are the dates , location and times for each session . please  select a date and time and e - mail this information to my assistant , dolores  muzzy . we can accommodate 25 participants at a time . dolores will take  dates and times on a first come , first serve basis . we have scheduled enough  sessions to accommodate every member of both the associate and analyst  recruiting teams .  in order to participate in the recruiting process , you must attend one of  these sessions . we will be tracking participation . cpe credits will also be  given for attending this workshop .\",0\n\"Subject: fw : invitation to 2001 energy finance conference - the university  of texas at austin  vince ,  i understand you ' ll be speaking at the cefer conference . gary taylor , the  head of marketing in the weather deriv . group , would like to know if you plan  on mentioning weather derivatives at all and that if you do , he has numerous  existing slides and presentations that might be useful to you .  joe  - - - - - original message - - - - -  from : angela dorsey [ mailto : angela . dorsey @ bus . utexas . edu ]  sent : wednesday , january 10 , 2001 9 : 06 pm  to : angela dorsey  cc : ehud ronn ; sheridan titman ( e - mail )  subject : invitation to 2001 energy finance conference - the university of  texas at austin  colleagues and friends of the center for energy finance education and  research ( cefer ) :  happy new year ! hope you all had a wonderful holiday season .  on behalf of the university of texas finance department and cefer , we  would  like to cordially invite you to attend our :  2001 energy finance conference  austin , texas  february 22 - 23 , 2001  hosted by the university of texas finance department  center for energy finance education and research  dr . ehud i . ronn and dr . sheridan titman are currently in the process of  finalizing the details of the conference agenda . we have listed the  agenda  outline below to assist you in your travel planning . each conference  session will be composed of a panel discussion between 3 - 4 guest  speakers  on the designated topic .  as supporters of the center for energy finance education and research ,  representatives of our trustee corporations ( enron , el paso , reliant ,  conoco , and southern ) will have the $ 500 conference fee waived .  the conference package includes thursday evening ' s cocktails &  dinner and hotel / ut shuttle service , as well as friday ' s conference  meals ,  session materials and shuttle service . travel to austin and hotel  reservations are each participant ' s responsibility .  a limited number of hotel rooms are being tentatively held at the  radisson  hotel on town lake under the group name \"\" university of texas finance  department \"\" for the nights of thursday , 2 / 22 / 01 and friday , 2 / 23 / 01 ( the  latter evening for those who choose to stay in austin after the  conference ' s conclusion ) . to guarantee room reservations , you will need  to  contact the radisson hotel at ( 512 ) 478 - 9611 no later than monday ,  january  22 nd , and make your reservations with a credit card . please let me know  when you have made those arrangements so that i can make sure the  radisson  gives you the special room rate of $ 129 / night .  please rsvp your interest in attending this conference no later than  january 22 nd to angela . dorsey @ bus . utexas . edu , or ( 512 ) 232 - 7386 , as  seating  availability is limited . please feel free to extend this invitation to  your colleagues who might be interested in attending this conference .  center for energy finance education and research  program of the 2001 energy finance conference  february 22 - 23 , 2001  thursday , feb 22 :  3 : 00 p . m . reserved rooms at the radisson hotel available for  check - in  5 : 30 p . m . bus will pick up guests at the radisson for transport to  ut club *  6 : 00 p . m . cocktails , ut club 9 th floor  7 : 00 p . m . dinner , ut club  8 : 00 p . m . keynote speaker  9 : 00 p . m . bus will transport guests back to hotel  friday , feb 23 :  7 : 45 a . m . bus will pick up at the radisson for transport to ut  8 : 30 a . m . session 1 - real options  panelists : jim dyer , ut ( chair )  sheridan titman , ut  john mccormack , stern stewart & co .  10 : 00 a . m . coffee break  10 : 15 a . m . session 2 - deregulation  panelists : david eaton , ut ( chair )  david spence , ut  jeff sandefer , sandefer capital  partners / ut  peter nance , teknecon energy risk  advisors  11 : 45 a . m . catered lunch & keynote speaker  1 : 30 p . m . guest tour - eds financial trading & technology center  2 : 00 p . m . session 3 - risk management  panelists : keith brown , ut ( chair )  vince kaminski , enron  alexander eydeland , southern co .  ehud i . ronn , ut  3 : 30 p . m . snack break  3 : 45 p . m . session 4 - globalization of the energy business  panelists : laura starks , ut ( chair )  bob goldman , conoco  ray hill , southern co .  5 : 15 p . m . wrap - up  5 : 30 p . m . bus picks up for transport to airport / dinner  6 : 30 p . m . working dinner for senior officers of energy finance  center  trustees  * we have made arrangements to provide shuttle service between the  radisson  hotel and ut during the conference . however , if you choose to stay at an  alternative hotel , then transportation to conference events  will become your responsibility .  * * * * * * * * * * * * * *  angela dorsey  assistant director  center for energy finance education & research  the university of texas at austin  department of finance , cba 6 . 222  austin , tx 78712  angela . dorsey @ bus . utexas . edu  * * * * * * * * * * * * * *\",0\n\"Subject: proposed bonuses  greg ,  these are proposed bonuses :  managers :  superior  1 . ravi thuraisingham 40 k  2 . ronnie chahal 40 k  3 . amitava dhar 40 k  excellent  1 . osman sezgen 35 k  2 . tanya tamarchenko 35 k  3 . joe hrgovcic 30 k  4 . vincent tang 30 k  directors :  superior  1 . mike roberts 100 k  2 . krishnarao pinnamaneni 60 k  excellent  1 . zimin lu 50 k  2 . maureen raymond 40 k  assistants :  1 . shirley crenshaw 6 k  2 . robert moore 5 k  you already have the vp numbers .  vince\",0\n\"Subject: re : update on iris  molly ,  it seems that we got only bill bradford so far .  given that almost everybody will be out that week ,  we probably should move the interview to the  beginning of january , even if it means higher  costs .  vince  enron north america corp .  from : molly magee 12 / 18 / 2000 06 : 57 pm  to : vince j kaminski / hou / ect @ ect  cc : shirley crenshaw / hou / ect @ ect  subject : update on iris  bill bradford has returned our call , and is scheduled to see iris at 11 : 30 am  on 12 / 28 . more info as it becomes available .  molly\",0\n\"Subject: performance  good morning everyone .  please let me know which date you would prefer . december 4 or december 8 th .  thanks !  shirley  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 10 / 30 / 2000  07 : 26 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  norma villarreal  10 / 28 / 2000 10 : 47 am  to : shirley crenshaw / hou / ect @ ect , stinson gibner / hou / ect @ ect , mike a  roberts / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , pinnamaneni  krishnarao / hou / ect @ ect , maureen raymond / hou / ect @ ect , zimin lu / hou / ect @ ect ,  osman sezgen / hou / ees @ ees  cc : vince j kaminski / hou / ect @ ect , ramona perkins / corp / enron @ enron  subject : performance  the research group will be conducting a performance review committee ( prc )  meeting in early december . all vice presidents , sr . directors and directors  should attend . shirley crenshaw will be contacting you to schedule the prc  meeting date and time . these are the current available dates :  december 4 , 8 .  in preparation for the meeting please submit recommended rankings and  promotions to me based on employee feedback by november 29 , 2000 . please  included analyst / associates ,  if you have any questions please feel free to call me or ramona perkins at  x 58165 .  here is some helpful information for you as we proceed throughout he  performance evaluation process  october 25 , 2000 - november 17 , 2000 ( 3 1 / 2 weeks ) :  employees will provide a list of accomplishments occurring after june 1 , 2000  to their supervisors  employees will receive an email advising of access and passwords to pep  system ( 10 / 25 )  employees identify selected reviewers on line and will submit to supervisor  supervisor will add and / or delete reviewers in order to capture a full 360  degree feedback  supervisor will submit and reviewers will receive an e : mail advising them of  their reviewer role  reviewers can decline or complete the review  once system closes on november 17 , 2000 ,  prepare for research prc meeting ( print consolidate review , pre rank  employees , identify candidates for promotion and submit to hr )  important dates ( i will notify you of any changes ) :  september 30 , 2000 only employees before 10 / 1 / 00 will be included for pep and  bonuses  october 15 , 2000 whomever is the supervisor for employees on 10 / 15 / 00 will be  responsible for their reviews  october 25 , 2000 pep system opens ( http : / pep . corp . enron . com )  october 30 - 31 , 2000 pep overview session at doubletree  november 17 , 2000 pep system closes for feedback  november 23 - 24 thanksgiving holiday  november 29 , 2000 provide hr with pre - rankings and promotions  december tbd , 2000 research prc  january 31 , 2001 all reviews must be complete , signed and submitted to hr  norma  sr . hr representative  x 31545\",0\n\"Subject: re : uk portfolios and books setup in risktrac  tanya  the books were set up incorrectly when the spreadsheet feeds were  implemented . this has since been corrected . currently the european risk trac  numbers do not feed into the corporate reporting of var .  the books should now contain gas exposures in uk gas and power in uk power  and have no duplication .  i have previously discussed with naveen and kirstee that it would be a good  idea if we set up a regular meeting to projecct manage the implementation of  european var numbers , from risk trac , into the daily reporting . if you have  no objections i suggest we discuss this at the next weekly rac / research  meeting .  rgds  oliver  tanya tamarchenko  03 / 01 / 2001 21 : 05  to : david port / market risk / corp / enron @ enron , vince j kaminski / hou / ect @ ect  cc : kirstee hewitt / lon / ect @ ect , oliver gaylard / lon / ect @ ect  subject : re : uk portfolios and books setup in risktrac  david and vince ,  in my e - mail below i pointed out to a inconsistency in the portfolio  hierarchy for uk positions in risktrac that i found out ,  namely : some books ( for example elsb 1 and elsb 2 ) belong to uk - gas portfolio  and to uk - power portfolio .  i wanted to clarify this in order to reconcile positions in risktrac and in  the spreadsheet .  tanya .  tanya tamarchenko  01 / 03 / 2001 02 : 09 pm  to : naveen andrews / corp / enron @ enron , matthew adams / corp / enron @ enron  cc : rabi de / na / enron @ enron , jaesoo lew / na / enron @ enron , vince j  kaminski / hou / ect @ ect  subject : re : uk portfolios and books setup in risktrac  naveen and matthew ,  i started looking systematically through uk positions and corresponding var  numbers in the risckrac .  i found a few inconsistencies so far .  1 . the portfolio elsb 1 - nbp has a book elsb 1 under it . the sum of delta  positions for this book is  239 , 021 , 655 , the sum of gamma positions is - 211 , 031 , 450 . var for the  portfolio elsb 1 - nbp is zero .  the same refers to a few other portfolios , for example elsb 2 - nbp , elsb 3 - nbp ,  e 2 xxl - nbp .  2 . the portfolio elsbp 1 - ppp also has the book elsb 1 under it . this book  contains the positions on pppwdl  through pppwd 6 and pppwel through pppwe 4 .  the same refers to the other books , for example elsb 2 .  this looks messy . can someone in rac go over all the portfolios , all the  corresponding books and curves  in risktrac and make sure they are set up properly ?  thank you ,  tanya .\",0\n\"Subject: interview schedule for martin jermakyan  please find the interview packet for the above - referenced person . the  interview will occur on friday october 27 , 2000 . please print all three  documents for your reference . if you have any questions , or conflicts of  schedule , please do not hesitate to contact me .  stephanie  58701\",0\n\"Subject: eprm 2001 houston  dear speaker ,  i would like to remind you that the room block at the houstonian hotel where  the above mentioned event is being held is about to expire . after friday  20 th april you will not be able to take advantage of the discounted rooms  that are being held there .  please book your accommodation asap to take advantage of this offer .  contact the hotel directly and say that you are part of the risk conference  on 14 & 15 may 2001 . 001 713 680 2626 .  risk waters group do not book accommodation for speakers , you have to  contact them yourself , directly .  if you have not already sent me a short biography and your speaker  checklist , please do so at your earliest convenience .  kind regards  layla o ' leary  event co - ordinator  risk waters group  haymarket house  28 - 29 haymarket  london  swly 4 rx  tel : + 44 ( 0 ) 20 7484 9871  fax : + 44 ( 0 ) 20 7484 9800\",0\n\"Subject: your approval is overdue : access request for mraymon @ enron . com  this request has been pending your approval for 2 days . please click  approval to review and act upon this request .  request id : 000000000007494  request create date : 11 / 15 / 00 12 : 57 : 59 pm  requested for : mraymon @ enron . com  resource name : unlisted application / software  resource type : applications\",0\n\"Subject: jaesoo lew  tanya : although you and i didn ' t have an opportunity to talk this morning ,  vince conveyed to me that an offer should be extended to jaesoo lew . he also  told me that jaesoo would be reporting to you . i need some information  concerning the position , so i am attaching a form that needs to be completed  and returned to me as quickly as possible . in the meantime , i will contact  jaesoo to verbally offer him the position .  please call me with any questions .  molly  x 34804\",0\n\"Subject: vince kaminski ' s discussion notes for the enterprise wide risk  management meeting , january 21  attached please find the discussion notes for the offsite meeting on  friday , february 4 th .  if you have any questions or comments , please let me know .  vince kaminski ( by shirley crenshaw )  3 - 3848\",0\n\"Subject: re :  frank ,  thanks . i have given your name to the employee energy and power risk  management  magazine who organizes power 2001 conference in houston ( may of 2001 ) .  vince  \"\" frank a . wolak \"\" on 11 / 28 / 2000 09 : 04 : 42 am  to : vince . j . kaminski @ enron . com  cc :  subject :  vince ,  sorry about the delay in responding . it ' s the end  of the quarter and i ' m teaching 3 courses , so things are  very busy , plus i had to work on a response to the ferc  proposed order for california . here is my student ' s cv .  please let me know if you need more information .  frank wolak  - jmyan _ cv _ newl . pdf\",0\n\"Subject: re : eprm articles  chris ,  thanks for the invitation . the evening of july the 18 th is fine with me .  the list looks fine and it can be easily expanded , if the first set of  articles is well received . i shall prepare a list of topics that occupy us  every day and that we could write about without revealing the details of our  proprietary research .  please , feel free to send the message from lacima . i think that it ' s better  for us to sign the articles with our names , giving our respective  affiliations . in this way , enron gets the credit , but not the liability if  there is any error in an article .  hope to see you soon .  vince\",0\n\"Subject: focus group invitation - supervisors  vince ,  the associate & analyst programs are conducting focus group sessions to  gather feedback regarding the mid - year 2000 prc process . you have been  randomly identified as a participant in the supervisors session .  organizational development consultants from corporate human resources will  facilitate the sessions . we encourage your participation and welcome your  feedback as we prepare for the year - end performance assessment process . the  logistics are as follows :  friday , september 8 , 2000  11 : 00 am - 12 : 30 pm  location - eb 32 c 2  please rsvp to constance charles at 3 - 5614 or by email no later than  wednesday , september 6 th at 12 : 00 noon . lunch will be provided .  i look forward to receiving your feedback .  thank you ,  charlene jackson\",0\n\"Subject: powerisk 2000 - october 3 rd - 6 th - paris  dear mr kaminski  i am delighted to say that the printed conference brochure is now available  and our logistics team will be mailing them out , along with the speaker  guideline packs ( including information on hotel discounts etc ) , in the next  couple of weeks . you will also no doubt receive copies via our main mailing  campaign .  in the interim , please find attached a shortened pdf copy of the conference  brochure for your perusal . ( i did not want to send you the complete 12 pages  as it would clog up your email ! ) the full colour version can be found on our  website at www . icbi . uk . com / powerisk  i hope you agree that the speaker plenum and line - up of topics is possibly  one of the best ever and not surprisingly the event is already drawing strong  international interest . in particular the executive summit day on e - business  and power trading is taking numerous bookings . i would be happy for you to  attend either the summit day or one of our two intensive post conference  workshops , but in order to avoid overcrowding on the day ask that all  reservations be made in advance .  i am certain that you have friends or colleagues who would be interested in  attending the conference this year , and would like to ask that you email the  enclosed details to them . to make things easy , i have attached a booking form  which should be faxed to + 44 20 7915 5101 . icbi would be happy to offer a 10 %  discount on registrations received through speaker recommendations .  finally for any enquiries relating to travel or hotel matters please contact  our logistics manager clare capel on + 44 20 7915 5198 . of course for any  programme related issues , please drop me an email or call me on + 44 20 7915  5194 .  i look forward to seeing you in october for what promises to be excellent and  informative week .  kind regards  rosemary fitzgerald  director , powerisk 2000  + 44 20 7915 5194  fax : + 44 20 7915 5101  email : rosef @ icbi . co . uk  !  - poweriska 300 . pdf  - speakerreg . doc\",0\n\"Subject: rotation of leandro \"\" roy \"\" ibasco  hello celeste :  plans are in the works to rotate roy ibasco from the research group into  henry arora ' s group . vanessa carranza is handling the churn request . i am  not sure of the rotation date , but we need his desk by the 15 th for gwyn  koepke .  you probably already know all of this , but just in case .  shirley  3 - 5290\",0\n\"Subject: re : parking space at 777 clay street for summer interns  hi louis :  we will take it !  listed below are the individuals that will be using the spot .  june lst - july 30 th vince kaminski  july 31 st - august 18 th matthew williams ( london )  august 21 st - sept . 15 th steven leppard ( london )  sept . 18 th - oct . 13 th kirstee hewitt ( london )  oct . 16 th - nov . 10 th ben parsons ( london )  june lst - july 30 th should be billed to vince kaminski - co . # 0011 and  rc # 100038  july 31 st - nov . 10 th should be billed to the london office - i have  requested their co # and rc # and will forward it to you when i get it .  thanks louis !  shirley crenshaw  3 - 5290  louis allen @  ect  06 / 01 / 2000 10 : 11 am  to : shirley crenshaw / hou / ect @ ect @ enron  cc :  subject : re : parking space at 777 clay street for summer interns  hi shirley ,  i have one ( 1 ) space available at 777 clay garage .  please let me know who the summer intern is thats needing a space .  please advise asap .  thanks , louis  shirley crenshaw @ ect  05 / 15 / 2000 11 : 36 am  to : louis allen @ enron  cc :  subject : parking space at 777 clay street for summer interns  good morning louis :  we would like to requst a parking spot at 777 clay street for the months of  june , july , august and september .  we will have 3 employees from the london office that will be rotating on  special assignment to our group .  is there a way that we can go ahead and reserve the spot and i will let  you know the car information and driver information as they come ?  our co . # is 0011 and our rc # is 100038 .  thanks !  shirley  3 - 5290\",0\n\"Subject: re : presentation on tuesday  vince ,  i will be out of the office this thursday afternoon .  here is what i can present on tuesday related to power prices :  do you want to discuss it with me some other time ?  tanya\",0\n\"Subject: enron earth day \"\" trash bash \"\"  i encourage everybody very strongly to join other enron employees at this  event . it ' s a great opportunity  to contribute to the growth of our city and to make sure that enron is not  embarrassed if other energy companies show  up in strength .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 12 / 2001  11 : 13 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  anita dupont @ enron  03 / 07 / 2001 02 : 37 pm  to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , pinnamaneni  krishnarao / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , mike a  roberts / hou / ect @ ect , sandeep kohli / enron _ development @ enron _ development ,  joseph hrgovcic / hou / ect @ ect , tanya tamarchenko / hou / ect @ ect , zimin  lu / hou / ect @ ect , martin lin / hou / ect @ ect , maureen raymond / hou / ect @ ect , osman  sezgen / hou / ees @ ees , paulo issler / hou / ect @ ect , amitava dhar / corp / enron @ enron ,  alex huang / corp / enron @ enron , kevin kindall / corp / enron @ enron , kevin g  moore / hou / ect @ ect , william smith / corp / enron @ enron , jose  marquez / corp / enron @ enron , chonawee supatgiat / corp / enron @ enron , shalesh  ganjoo / hou / ect @ ect , tom halliburton / corp / enron @ enron , elena  chilkina / corp / enron @ enron , sevil yaman / corp / enron @ enron , sofya  tamarchenko / na / enron @ enron , bob lee / na / enron @ enron , gwyn  koepke / na / enron @ enron , hector campos / hou / ect @ ect , shirley  crenshaw / hou / ect @ ect , youyi feng / na / enron @ enron , praveen  mellacheruvu / hou / ees @ ees , stephen bennett / na / enron @ enron , roman  zadorozhny / hou / ees @ ees , lance cunningham / na / enron @ enron , leann  walton / na / enron @ enron , shane green / hou / ees @ ees , seksan  kiatsupaibul / hou / ees @ ees , kate lucas / hou / ect @ ect , nelson  neale / na / enron @ enron , rabi de / na / enron @ enron , kenneth  parkhill / na / enron @ enron , jaesoo lew / na / enron @ enron , jason  sokolov / hou / ect @ ect , steve bigalow / na / enron @ enron , tom  barkley / na / enron @ enron , rakesh bharati / na / enron @ enron , wnarongw @ enron . com ,  iris . mack @ enron . colm  cc :  subject : enron earth day \"\" trash bash \"\"  enron is hosting a special event on saturday , march 31 st . the first annual  enron \"\" trash bash \"\" to clean up the banks of buffalo bayou between shepherd  drive and sam houston park .  i am chairing the check - in team which consists of :  registering all of the volunteers  handing out enron t - shirts and caps  passing out gloves and garbage bags  making clean up section assignments  for anyone who might be interested in helping me , please call me at ext .  30329 .  also , we need a lot of volunteers to walk along buffalo bayou and pick up  trash . this would be a great family project , a good project for your childs  youth group or boy scout or girl scout troop . it will also be fun . they  will have live bands , lyou get an enron t - shirt and enron baseball cap , lunch  will be served at sam houston park and there are a lot of good door prizes .  if you want to volunteer for the \"\" trash bash \"\" clean up , just show up at sam  houston park on saturday , march 31 , 2001 , at 8 am to register . clean up  starts at 9 am and lunch will be served at 11 : 00 am and after lunch door  prizes will be drawn and then you can go home feeling like you have done your  part for houston ' s waterway environment .  i hope you will think about it and bring your friends , family , ect . and help  enron clean up the environment .  thanks , anita\",0\n\"Subject: re : [ no subject ]  hi vince ,  this resume looks quite good . we may wish to talk to him on the phone . however , now that david hoog has hired his own actuarial guys ( alex tartakowski and larry markus ) from ace , i am not sure if they require support on the actuarial side . with don black ( of global risk markets ) leaving enron , i think the effort to develop power products for the insurance markets is pretty much nonexistent , except for david hoog ' s product . the resume still looks interesting , though .  vasant  - - - - - original message - - - - -  from : kaminski , vince  sent : friday , april 13 , 2001 3 : 56 pm  to : shanbhogue , vasant  subject : [ no subject ]  vasant , please , take a look at this eresume .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 13 / 2001 09 : 55 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  cathy lira @ enron  03 / 26 / 2001 11 : 12 pm  to : vkamins @ enron . com  cc :  subject : [ no subject ]  - - - - - - - - - - - - - - - - - - - - - - forwarded by cathy lira / na / enron on 03 / 26 / 2001 04 : 12 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" imccracken \"\" on 02 / 24 / 2001 04 : 02 : 11 pm  please respond to \"\" imccracken \"\"  to : grad _ programs @ enron . com  cc :  subject : [ no subject ]  dear sir / madam ,  i am a student in a master ' s programme in mathematical finance due to graduate in august . my intention upon graduation is to work in a quantitative capacity in the  power markets and to this end , i am including my resume in the hope that i might be considered for any available position in your risk  management or structured products group requiring such mathematical skills .  i have addressed this email to your graduate programmes address but i am unsure whether or not my candidacy would fall under the umbrella covered by your associate programme . if this is not the case , any help in seeing that my resume finds the correct destination would be greatly appreciated .  yours sincerely ,  ian mccracken  * get free , secure online email at http : / / www . ziplip . com / *  - iancv . doc > \",0\n\"Subject: only 1 week left to register for the henwood power market symposium  at the discount registration fee  dear energy participant :  don ' t miss your chance to register for the henwood power market symposium at  the discounted price of $ 875 . after april lst the registration fee increases  to $ 975 . * register now because  space is limited !  this annual three - day event will take place from april 29 to may 1 , 2001 in  atlanta , ga at the beautiful evergreen mountain resort . this year ' s  symposium features leaders from ferc , electric  power research institute , standard & poor ' s , iso new england , conoco , entergy  nuclear , and more . discussion topics will include \"\" rating implications of  the california market failure \"\" ,  \"\" upcoming changes to wholesale electric markets in new england \"\" , \"\" impacts of  high gas costs to the nation ' s supply portfolio \"\" , and many others . as always ,  participants will also have the  opportunity to gain access to henwood ' s software products , consulting  services , and online databases , as a means to develop competitive strategies  and unequalled value in restructured  markets .  your registration fee is inclusive of the following :  - complete hotel accommodations at the stone mountain resort for sunday april  29 th and monday april 30 th , 2001  - all meals and refreshments for april 29 th through may lst . a welcome  reception is planned for sunday , april 29 th . this reception is an excellent  opportunity to network with market participants  and decision - makers of the electric power industry .  - a river boat dinner cruise on monday , april 30 th on board the henry w .  grady paddlewheel riverboat .  also don ' t miss the henwood captain and crew golf tournament planned for  sunday , april 29 th . we invite golfers of all levels to participate in this  fun event .  for more information please contact me at 916 569 - 0985 or  hmason @ hesinet . com . you can also learn more about the symposium by visiting  our web site at www . hesinet . com .  heather mason  marketing assistant  henwood energy  2710 gateway oaks dr .  suite 300 n  916 - 569 - 0985  * make sure to ask about our special 2001 henwood client discount .\",0\n\"Subject: fyi : enron = the best  hi vince .  i spoke with molly mcgee down in hr - we are getting the paperwork together .  i will send you those candidates we talked about next .  just to let you know why i contacted you . . .  every student at the better universities including those in the uk - ask  either for you or enron .  i saw enron was voted the best company to work for out of 10 in the world  andthere are countless articles in the financial times on enron . for this i  am thankful to know you now !  did you know why my grandfather changed his name from wesloski to  wesley ? . . . when he came from poland to work as an autoworker in  detroit . . . there was alot of anti - polish sentiment and he was beaten and  intimidated to the point where he was afraid for his life and the saftey of  the family . he then changed the name to the english derivative from wesloski  to \"\" wesley \"\" . nevertheless , they kicked his teeth out of his mouth and beat  him senseless many times . i may change it back . . . i don ' t know .  ok - i will get everything together for you and molly !  thank you for the opportunity to work with you vince and enron .  thank you ,  jeff  * get free , secure online email at http : / / www . ziplip . com / *  - private 9498132241 . pdf\",0\n\"Subject: pjm two - settlement & market - based regulation market trials announ  ced  message sent from the pjm - customer - info mailing list at  pjm - customer - info @ majordomo . pjm . com :  pjm two - settlement & market - based regulation market trials  pjm will be conducting two - settlement and regulation market trials in  preparation for the implementation of its two - settlement and regulation  markets  on june 1 , 2000 . the market trials are designed to provide pjm market  participants the opportunity to submit generation offers , regulation offers ,  demand bids ( fixed and price - sensitive ) , increment offers , and decrement bids  using pjm emkt . pjm will clear the markets and provide the ability for pjm  market participants to view two - settlement and regulation market results using  pjm emkt .  pjm will conduct three sets of market trials . the first and second trials will  be conducted on april 19 and on april 27 . the final market trials will be  conducted on business days between may 15 and may 24 , 2000 .  all pjm market participants are eligible to participate in the market trials  for  two - settlement and regulation and must register in advance .  register now ! ! ! ! ( http : / / www . pjm . com / twoset / form _ twoset _ reg . html )  details of the market trails are described in the attached document .  >  - 2 g 3 dol ! . doc  questions may be directed to pjm customer service at ( 610 ) 666 - 8980 .  to unsubscribe from this list , send an e - mail to majordomo @ majordomo . pjm . com  containing only the following line in the body of the e - mail :  unsubscribe pjm - customer - info\",0\n\"Subject: re : fw : credit risk model comments - at this point .  bill ,  we spent about an hour with rick explaining the rationale behind different  solutions  and i think he has a better understanding of the models at this point .  i think he was asked by jeremy to look into it .  vince  from : william s bradford / enron @ enronxgate on 04 / 11 / 2001 09 : 05 pm  to : rick buy / enron @ enronxgate , vince j kaminski / hou / ect @ ect  cc : mark ruane / enron @ enronxgate  subject : fw : credit risk model comments - at this point .  rick / vince ,  should this not be a credit / research initiative while the business unit  focuses on originating good economic transactions ? not to be complaining ,  but shouldn ' t ees be focusing on infrastructure issues rather than waste  resources on a project we are already moving forward on ? you can ' t run a  portfolio model , unless you have deals in a risk system ! how complex do we  want these models to be ? behavioral implications on credit default ? they  still don ' t seem to understand .  regards ,  bill  mark - please attend . you may want to include martin to help ees understand  the complexity of their deals .  - - - - - original message - - - - -  from : krishnarao , pinnamaneni  sent : wednesday , april 11 , 2001 9 : 14 am  to : kaminski , vince ; dhar , amitava ; de , rabi ; william s  bradford / hou / ect @ enron ; tamarchenko , tanya  subject : credit risk model comments - at this point .  comments from rick jones on the credit reserve model . anita dupont is setting  up a meet with rick jones to discuss these . vince & bill - if you want to  join the meeting , please let me or anita know .  regards ,  krishna .  - - - - - - - - - - - - - - - - - - - - - - forwarded by pinnamaneni krishnarao / hou / ect on  04 / 11 / 2001 09 : 04 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  richard b jones @ ees  04 / 10 / 2001 04 : 16 pm  to : pinnamaneni krishnarao / hou / ect @ ect  cc :  subject : credit risk model comments - at this point .  - - - - - - - - - - - - - - - - - - - - - - forwarded by richard b jones / hou / ees on 04 / 10 / 2001  04 : 16 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  richard b jones  03 / 23 / 2001 05 : 53 pm  to : cheryl lipshutz / hou / ees @ ees , trushar patel / corp / enron @ enron ,  michelle . wenz @ enron . com , gayle muench / enron @ enronxgate , jeremy  blachman / hou / ees @ ees  cc :  subject : credit risk model comments - at this point .  hi everyone ,  i have run the model and , along with the contract briefs i have some  questions the number of trials , numerical roundoff , and random number  generator randomness statistical properties . the first two are not a problem  in this application but the last one could be . has anyone examined the effect  of using different random number generators on enron \u0001 , s aggregate credit risk ?  7 ) there is one last point here . for most of the above points , the \"\" improved \"\"  analysis could make the credit risk be higher .  rick\",0\n\"Subject: re : sorry .  thank you , vince . i really like your idea .  thank you again ,  - chonawee  vince j kaminski @ ect  01 / 04 / 2001 05 : 17 pm  to : chonawee supatgiat / corp / enron @ enron  cc : vince j kaminski / hou / ect @ ect  subject : re : sorry .  chonawee ,  this was perfectly all right . as a matter of fact i expect and encourage  the members of the group to disagree with me ( or anybody else )  on any subject . i am never offended by it and take it as a manifestation  of ability to think independently and having the courage of one ' s  convictions .  nobody has the monopoly on truth and nobody knows everything . the only  way we can learn and avoid costly errors ( to ourselves and the  company ) is by having open communication . in enron ,  facts are friendly .  by the way , it was an excellent presentation .  vince  chonawee supatgiat @ enron  01 / 04 / 2001 03 : 10 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : sorry .  hi vince , i am sorry for correcting on the revenue of the different auctions .  vickrey 1961 showed that all 4 kinds of auctions would yield the same  expected revenue to the auctioneer . ( dutch , english , first price - sealed bid ,  and second - price sealed bid . ) in fact , the selling price is equal to the  valuation of the second highest bidder . for example , in vickrey auction ,  everyone bids at his own valuation . hence , the winner pays the valuation of  the second highest bidder . in english auction , the second highest valuation  bidder will stop competing if the price is above his valuation . hence , the  winner also gets the item at the price of the second highest valuation bidder .  thank you for attending the meeting and giving many helpful contributions .  - chonawee\",0\n\"Subject: 3 - d seismic data and oil trading  a brief summary of the research evaluation of siesmic data financial impact  on oil trading is attached for transmittal to the client ( rich reichart ) .  our conclusion is negative .  bob\",0\n\"Subject: actuarial course material  hi dale ,  i just talked to the actuarial education company and found that the combined  material packs ( cmps ) are priced per course as follows : -  101 statistical modelling :  102 financial mathematics  103 stochastic modelling  104 survival models  105 actuarial mathematics  106 actuarial mathematics ii  107 economics  108 finance and financial reporting  109 financial economics  302 life insurance  303 general insurance  having reviewed , i think the most suitable ones to order are suggested in  blue . this adds up to o 525 for the sub - set in blue ; alternatively we can  stick to 103 through 106 for o 356 - > i suggest we go for the smaller sub - set  to start off with .  regards ,  anjam  x 3583\",0\n\"Subject: new extension installed  we will receive a new employee on jan . 17 th 2000 .  if possible we would like for his telephones and extensions  to be ready .  his name is jose marquez .  his locations are eb 3130 c and ebl 968 .  any questions please call kevin moore x 34710  thanks  kevin moore\",0\n\"Subject: re : fw : fw : get together this coming tuesday ?  thanks for the update . kim .  - - - - - original message - - - - -  from : kaminski , vince  sent : tuesday , may 01 , 2001 2 : 08 pm  to : watson , kimberly  cc : gadd , eric ; kaminski , vince  subject : re : fw : fw : get together this coming tuesday ?  kim ,  i talked to dale early this morning and suggested that we meet during his  next trip to houston  when we decide on timing of our project .  vince  from : kimberly watson / enron @ enronxgate on 05 / 01 / 2001 08 : 41 am  to : vince j kaminski / hou / ect @ ect , eric gadd / et & s / enron @ enron  cc :  subject : fw : fw : get together this coming tuesday ?  vince ,  if dale comes in to see you , it looks like eric might be available to meet  with you as well . it would be a good opportunity for eric to meet dale and  get a little more information on his model . eric ' s phone number is x 54713 .  thanks ,  kim .  - - - - - original message - - - - -  from : gadd , eric  sent : monday , april 30 , 2001 8 : 12 pm  to : watson , kimberly  subject : re : fw : get together this coming tuesday ?  works for me . give me a call at 9 : 30 .  from : kimberly watson / enron @ enronxgate on 04 / 30 / 2001 05 : 09 pm  to : eric gadd / et kaminski , vince  subject : re : get together this coming tuesday ?  dale ,  please , call me on tuesday . my morning schedule is full but i am open in the  afternoon .  vince  >  \"\" dale m . nesbitt \"\" on 04 / 30 / 2001 01 : 51 : 21 am  please respond to  to : \"\" vincent kaminski \"\" , \"\" kimberly s . watson \"\"  cc :  subject : get together this coming tuesday ?  vince / kim :  i am flying to houston tonight and wondered if it would fit one or both of  your schedules to get together this coming tuesday sometime for 1 / 2 hour or  so . i really want to reinitiate the conversations marketpoint was having  with john goodpasture and you , and he said either or both of you were the  right people to continue after his responsibility shift . john was quite  positive about the idea of enron acquiring marketpoint narg through license ,  and he implied that one or both of you would be carrying the ball in that  direction after he handed it to you .  would this coming tuesday morning at 930 am be a good time for you guys ? if  so , please give me an email shout at the above address or leave a message on  my voicemail at ( 650 ) 218 - 3069 . i think you will be truly impressed with the  scope and progress we have been able to make with both the short run narg  and the long run narg in which you were interested ( not to mention our power  model ) . the progress is noticeable since you saw it . both long and short  term narg are having quite an impact on a number of gas decisions at the  moment ranging from venezuelan lng , north american lng import terminals and  term , gas basis calculations , trading support , power plant development ,  gas - to - power price spreads in key markets , veracity of heat rate trades ,  bank financings , storage field evaluation , and which new pipelines we can  expect to see enter and which are dogs .  i really hope we can fit it in and get our discussions moving in a mutually  productive direction again . i think narg can help you become even more  successful , and i look forward to working with you .  we have a new office address and new phone number as well . ( we move in may  1 . )  altos management partners  95 main street , suite 10  los altos , ca 94022  ( 650 ) 948 - 8830 voice  ( 650 ) 948 - 8850 fax  ( 650 ) 218 - 3069 cellular  give the phones a week or so to get \"\" debugged \"\" and then switch over .  dale\",0\n\"Subject: re : statistician from rice  osman ,  this guy is too much .  i would tell him that we understand  that he has to make the best choice  for himself and can change his mind but at this point we treat  his decision as final but we still appreciate the interest he showed  in enron .  we never had any luck hiring a statistician .  maybe we shall get one some day .  vince  osman sezgen @ ees  04 / 20 / 2001 11 : 54 am  to : vince j kaminski / hou / ect @ ect , pinnamaneni krishnarao / hou / ect @ ect  cc :  subject : statistician from rice  i had a message on my phone this morning from william indicating that  he had changed his mind and will be taking another job . he also mentions that  the other organization will give him time to publish his thesis and he  assumes  enron would not do that .  i am inclined to give up on him but wanted to get your input before doing so .  osman\",0\n\"Subject: congratulations !  hi vince :  i just received the email announcing your promotion , and i wanted to take  this opportunity to congratulate you .  best regards ,  bani\",0\n\"Subject: re : mscf speaker series  pierre - philippe ,  yes , we are ready . i shall be accompanied by one person from  our analyst / associate program and i would like to ask you if she can be  invited  to dinner as well .  we plan to come thursday night and leave on sat morning to avoid potential  flight delay risk .  vince  pierre - philippe ste - marie on 10 / 08 / 2000 06 : 55 : 27 pm  to : vince . j . kaminski @ enron . com  cc :  subject : re : mscf speaker series  hi mr . kaminski ,  just touching base for the 3 rd of november . is everything ready ?  sincerely ,  pierre - philippe ste - marie\",0\n\"Subject: re : anjam ' s term sheet  tara :  i am forwarding it to vince for his approval . it looks good although i have  three questions :  1 ) i presume that it is clear that enron pays housing up to 1500 / month .  anjam does not get a check for 1500 to play with . utility bills are not  included unless part of the rent , right ? this should be clarified ; as you  know , houston summers are a significant burden on the pocket - book .  2 ) economy class plane . can we even do that ? i thought enron policy was for  a b - class ticket for flights over 6 hours .  3 ) 500 lbs of transport . i don ' t know if this is a big ticket item , but i  would give him less , 250 say , if it would save enron considerable expense .  regards ,  grant .\",0\n\"Subject: project with maria garcia  vince ,  here is a brief about the project with maria garcia .  promigas , in partnership with others , wants to acquire $ 80 mm tvcable  company in mexico .  promigas ' s ownership would be 25 % , i . e . , 20 mm . 10 mm of it would come from  debt .  enron wants to participate this deal by offer promigas loan guarantee in  exchange of call options  on 50 % promigas equity in tvcable .  following suggestions have been made :  1 ) get a market quote for the loan guarantee ;  use credit risk model to price the guarantee internally ;  need to speak to vasant  2 ) find a comparable company , study the volatility  using company value histogram from economics model ( crystal ball output ) ,  i can fit a lognormal  distribution , then find the volatility  3 ) calcalte the call option value , find braek - even strike .  any inputs are extremely welcome .  zimin\",0\n\"Subject: re : risk 2000 panel discussion  steve ,  a meeting at 8 : 00 - 8 : 15 is fine with me .  vince  \"\" bramlett , stephen \"\" on 06 / 06 / 2000 08 : 24 : 08 am  to : \"\" ' vince j kaminski ' \"\" , \"\" bramlett , stephen \"\"  cc : jefferid @ kochind . com , oliver @ risk . co . uk  subject : re : risk 2000 panel discussion  vince - thanks for the update . i ' ve been pulled into a 7 : 00 am breakfast  which i must attend . chances are i could catch up with everyone between  8 : 00 and 8 : 15 . i apologize , but two of my breakfast dates are taking  special flights in just for the breakfast - or i wouldn ' t inconvenience  everyone .  - - - - - original message - - - - -  from : vince j kaminski [ mailto : vince . j . kaminski @ enron . com ]  sent : tuesday , june 06 , 2000 8 : 11 am  to : bramlett , stephen  cc : jefferid @ kochind . com ; oliver @ risk . co . uk ; vince j kaminski  subject : re : risk 2000 panel discussion  steve ,  this looks fine . i think we are meeting at 7 : 45 a . m . on the 14 th  next to the general reception area .  vince  \"\" bramlett , stephen \"\" on 06 / 05 / 2000 06 : 28 : 36 pm  to : \"\" ' jefferis , dick ' \"\" , \"\" bramlett , stephen \"\"  , vince j kaminski / hou / ect @ ect ,  \"\" ' oliver @ risk . co . uk ' \"\"  cc :  subject : re : risk 2000 panel discussion  gentlemen ,  please see the edit of my outline below .  also , what time did we agree to meet on the 14 th ?  successes and failures ( stephen bramlett )  risk consideration directed at the enterprise level . what makes for a  successful application ?  long - term view of managing weather  identifying the corporate objectives  lost opportunities  trading desks at utilities  insurance comparisons  product managers  target audience scale of the failure  treasury  enterprise risk management  cfo  assistance of wall street  link to stock prices  earnings smoothing\",0\n\"Subject: two - settlement xml / csv conversion utilities  message sent from the pjm - customer - info mailing list at  pjm - customer - info @ majordomo . pjm . com :  the two - settlement xml / csv conversion utilities are now available for  download  from the pjm web site . the zip file containing the required programs and  examples can be downloaded from  please do not reply to this message . if you have a question for pjm customer  relations and training , please send an e - mail to custsvc @ pjm . com .  to unsubscribe from this list , send an e - mail to majordomo @ majordomo . pjm . com  containing only the following line in the body of the e - mail :  unsubscribe pjm - customer - info\",0\n\"Subject: cera conference call : ferc ' s order for california market : bold  decision of insufficient action ? - cera conference call  cera conference call : sent tue , november 07 , 2000  title : cera conference call : ferc ' s order for california market : bold  decision of insufficient action ?  author :  e - mail category : conference call  product line : western energy , north american power ,  url : http : / / www . cera . com / cfm / track / eprofile . cfm ? u = 5166 & m = 1412 ,  http : / / www . cera . com / cfm / track / eprofile . cfm ? u = 5166 & m = 1413 ,  alternative urls :  western energy members :  n . american electric power members :  north american electric power and western energy  conference call  a cambridge energy research associates conference call  topic  ferc ' s order for the california market :  bold decision or insufficient action ?  * a ferc vote for market solutions  * where is the relief for retail customers ?  * what ' s next for california and western wholesale  markets ?  * implications for the broader north american power  market  format  at the time listed below , our speakers will address this  topic for approximately 30 minutes , followed by an open  question and answer period .  speakers  larry makovich , cera senior director , north american  electric power  mike zenker , cera director , western energy  time  1 : 00 p . m . eastern , monday , november 13 , 2000  eligibility  clients eligible to participate in this conference call  are those who subscribe to the north american electric  power retainer advisory service or the western energy  retainer advisory service .  to enroll  to enroll , please contact ms . kari paakaula via fax at  ( 617 ) 497 - 0423 , or enroll via e - mail at  kpaakaula @ cera . com before 4 : 00 p . m . , friday , november  10 , 2000 .  audio  for the audio portion of the call , please call in on one  of the following numbers approximately five ( 5 ) minutes  before the call :  within the united states : 1 - 800 - 946 - 0741  outside the united states : ( 719 ) 457 - 2649  confirmation code : 640107  title of the call : cera call  technical assistance  u . s . callers : if you are experiencing difficulties  during the call , you may signal for technical assistance  by pressing * 0 ( star , zero ) on your telephone keypad  international callers : please re - dial and ask the  operator for assistance before giving the confirmation  code .  a recording of this call ( audio only ) will be available  until december 13 , 2000 . to access this recording ,  please call 1 - 888 - 203 - 1112 ( within the u . s . ) or ( 719 )  457 - 0820 ( outside the u . s . ) . please use confirmation  number 640107 to access the call .  * *  for more information , please contact kari paakaula via  e - mail at kpaakaula @ cera . com or via telephone at ( 617 )  441 - 1362 .  * * end * *  follow url for html version of this message only .  account changes  to edit your personal account information , including your e - mail  address , etc . go to : http : / / eprofile . cera . com / cfm / edit / account . cfm  this electronic message and attachments , if any , contain information  from cambridge energy research associates , inc . ( cera ) which is  confidential and may be privileged . unauthorized disclosure , copying ,  distribution or use of the contents of this message or any attachments ,  in whole or in part , is strictly prohibited .  terms of use : http : / / www . cera . com / tos . html  questions / comments : webmaster @ cera . com  copyright 2000 . cambridge energy research associates\",0\n\"Subject: volumetric optionality model changes  - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 06 / 15 / 2000 08 : 19 am  - - - - - - - - - - - - - - - - - - - - - - - - - - -  natasha danilochkina  06 / 15 / 2000 05 : 26 am  to : david gallagher / lon / ect @ ect , peter crilly / lon / ect @ ect , richard  lewis / lon / ect @ ect , haakon olafsson / lon / ect @ ect , tony fricker / lon / ect @ ect ,  andrew fairley / lon / ect @ ect , matthew nicholas / lon / ect @ ect , david  redmond / lon / ect @ ect , steven mccarthy / lon / ect @ ect , dale surbey / lon / ect @ ect ,  matthew nimmo / lon / ect @ ect , matthew ferguson / lon / ect @ ect  cc : anjam ahmad / lon / ect @ ect , zimin lu / hou / ect @ ect , steven  leppard / lon / ect @ ect , stinson gibner / hou / ect @ ect  subject : volumetric optionality model changes  as a result of meetings with zimin lu ( houston research ) and anjam ahmad in  early june , the gas desk together with research will be revising the models  for pricing options on volume ( swing ) and similar products .  the idea is to have a consistent method that can be applied to all contracts .  this will affect :  flat price gas swing options  indexed gas swing options  j - block contract  modified thermbank contract  enbank ( virtual storage )  the new feature that will be introduced into all models is ability for  real - time mtm ( and prospectively - sensitivities calculations ) .  the work will be carried out as follows :  natasha danilochkina : problem definition , contracts / products summary ,  functional specification  anjam ahmad : zimin ' s model modifications / implementation and houston / london  interaction  start date : june 16 th , 2000  end date : tbc\",0\n\"Subject: re : telephone interview with the enron corp . research group  fyi  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 19 / 2000  12 : 19 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  hao peng on 04 / 19 / 2000 11 : 52 : 53 am  to : shirley crenshaw  cc :  subject : re : telephone interview with the enron corp . research group  dear shirley :  it is my pleasure to have the opportunity to interview with enron . i will  be available at 412 - 661 - 3393 at 4 : 30 pm eastern time . please let me know if  there is any change about this sechedule . thanks .  hao  - - on wednesday , april 19 , 2000 , 11 : 29 am - 0500 shirley crenshaw  wrote :  >  >  > hello hao :  >  > the enron corp . research group would like to interview you by telephone  > tomorrow , thursday , april 20 , at 3 : 30 pm central standard time ( 4 : 30  > eastern time ) .  >  > please let me know if this is satisfactory to you and what telephone  > number they may reach you at .  >  > the interview will include the following members of the research group :  >  > vince kaminski managing director  > stinson gibner vice president  > vasant shanbhogue vice president  > zimin lu director  > tanya tamarchenko manager  >  > if you have any questions , please let me know  >  > thanks you very much and look forward to hearing from you .  >  > shirley crenshaw  > administrative coordinator  > enron corp . research  > 713 / 853 - 5290  > email : shirley . crenshaw @ enron . com  >  >  >\",0\n\"Subject: job description  good afternoon . here is the job description for the computational finance  students . we should have our preferred interview dates shortly . please let  us know if you have any questions , and have a happy thanksgiving .  - kevin kindall\",0\n\"Subject: re : sms conference  yes ,  i shall be glad to make a presentation .  thanks for considering me .  vince  zzmacmac @ aol . com on 01 / 31 / 2001 08 : 01 : 23 am  to : vkamins @ enron . com  cc :  subject : sms conference  the strategic management society is holding its annual meeting in san  francisco oct 21 to 24  we have a panel on real options , the thrustof which i attach . i was  wondering if you would be interested in presenting on the practitioner ' s  perspective - if not you would one of your colleagues be interested ?  - sms 2001 1 - 23 - 01 . doc\",0\n\"Subject: re : anshuman srivastava  sandeep : further to my voice mail to you today , i will meet with anshuman at  10 : 30 am and will keep his documents in a file .  however , without some type of job offer in the us , we cannot move forward  with an ll visa for him and if you believe he will not be returning to the us  to work , then we really do not need to get him the ll at this time .  if the circumstances change , please let me know .  margaret  sandeep kohli @ enron _ development  02 / 15 / 2001 02 : 05 pm  to : margaret daffin @ ect  cc : molly magee @ ect , anshuman srivastav / enron _ development @ enron _ development  subject : anshuman srivastava  margaret ,  please find attached the resume of anshuman , as well as the form needed for  l - 1 visa , duly filled in .  copies of all required material for the visa , has already been put into  inter - office mail .  please do call me at 713 - 857 - 6826 . i want to reschedule today ' s meeting for  another time , since we are working on a deadline here .  regards ,  sandeep .  - - - - - - - - - - - - - - - - - - - - - - forwarded by sandeep kohli / enron _ development on  02 / 15 / 2001 01 : 58 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  sandeep kohli  02 / 15 / 2001 11 : 21 am  to : anshuman srivastav / enron _ development @ enron _ development  cc :  subject :\",0\n\"Subject: computer - new location  hello ,  i need a computer and flat screen moved .  the location is eb 3240 e .  only - one computer and a flat screen needs to be moved to eb 3240 g .  the remaining flat screens should stay at the location eb 3240 e .  r . c . 107043 - co . # 0413  thanks  kevin moore  please if at all possible let me know when this should take place .\",0\n\"Subject: re : real options conference in cambridge  lenos  i ' d like to give a talk entitled \"\" diagrammatic representation of real options  in enron \"\" , in which i will give a brief run - down of a diagrammatic technique  i have developed for representing real option deals . my notation allows  originators , managers and quants to communicate unambiguously , while still  appreciating the complexity and subtlety of real optionality . i have defined  a \"\" diagrammatic grammar \"\" which guarantees that the pricing of the deal  follows immediately and automatically from the diagram .  i propose to introduce the symbols and grammar , then go on to present some  suitable examples of diagrams . if appropriate i ' ll talk about the links with  dynamic programming . ( i will need some guidance as to how much technical  detail i can go into based on the audience . )  all the best ,  steve  enron capital & trade resources corp .  from : lenos trigeorgis  04 / 20 / 2000 08 : 45 pm  to : \"\" steven leppard \"\"  cc : \"\" vince j kaminski \"\"  subject : re : real options conference in cambridge  steve  thanks for agreeing to talk . i attach the program to see the other speakers  and style ( it is addressed to a professional autience )  please give me a suitable title for the talk ( replacing kaminski \u0001 % s slot on  july 6 / energy session ) and the details of your position  thanks  lenos  at 05 : 01 _ _ 04 / 20 / 00 + 0100 , steven leppard wrote :  >  >  > dear prof trigeorgis  >  > vince kaminski has suggested that i would be a suitable speaker at your july  > conference in cambridge , and i ' d be happy to come along if required . please  > could you send me appropriate details , and the audience type expected .  >  > many thanks .  >  > yours sincerely ,  > steve leppard  >  >  >  >  - 4 thconfsessions . doc  lenos trigeorgis  professor of finance  university of cyprus  dept of business  75 kallipoleos , po box 20537  cy 1678 nicosia cyprus  tel : + 357 2 892261  fax : 339063\",0\n\"Subject: f / u from iris mack , mba / phd to enron  vince , iris received an error message when sending this to you so she ask i  forward it to you . she is currently living in california .  - - - - - - - - - - - - - - - - - - - - - - forwarded by toni graham / corp / enron on 11 / 15 / 2000  09 : 49 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" iris mack \"\" on 11 / 14 / 2000 11 : 20 : 15 pm  to : vincent . kaminski @ enron . com  cc :  subject : f / u from iris mack , mba / phd to enron  dear dr . kaminski ,  how are you ? i seemed to have lost contact with you . the last contact  was with a ms . graham - regarding my coming to houston for an interview -  while i was still living in london .  i am now back in the states - where i spent the last few months working  for a dot . com . although this internet opportunity was interesting , it was  not a viable one . i guess part of the technology firm shake out .  therefore i am now interviewing again - with investment banks and  insurance companies . is enron still interested in having me come down for  an interview ? if so , please let me know how to proceed .  thank you in advance for your time and consideration .  kind regards ,  iris mack  925 . 933 . 7833  get your private , free e - mail from msn hotmail at http : / / www . hotmail . com .  share information about yourself , create your own public profile at  http : / / profiles . msn . com .  - cv for iris mack , mba , phd . doc\",0\n\"Subject: a paper of mine  vince ,  i have written a paper , which supposedly is going to be published in the  february 2000 issue of eprm , probably after some editorial cuts ( at least  this is what i am being told by them ) . i would appreciate your thoughts if  you would have time to read it .  regards ,  martin  - userconf . doc\",0\n\"Subject: eol wti maket maker simulation model  stinson ,  i add the total p / l due to contract rollover . when the number of trades is  large  and the spread is not too small , the model prints a lot of money , dominated by  those trade earning the half of bo spread .  i also wrote an explaination about the model on the front page . i think we  are  ready to deliever the model v . 1 .  the next step is to incorporate the intra - day market movement by using high  and low  prices into the pricing . i will call you on monday .  happy thanksgivings !  zimin\",0\n\"Subject: enron , india database  sandeep ,  ?  below , i have summarized henwood ' s work on the india database to date .  ?  the \"\" inter _ regional links . ppt \"\" file shows the topology and links between  bubbles in the our model and \"\" expand _ india _ data _ 011000 . xls \"\" details the  existing station information that we have compiled to date . ? total resources  closely match reported resources as shown in \"\" l & r _ 0110 . xls \"\" . reported india  total in 1997 is 86 , 000 mw and that in the henwood database is 84 , 000 mw  through 1997 .  ?  region  emss database  reported [ 1 ]  difference  - inter _ regional links . ppt  - expand _ india _ data _ 011000 . xls  - l & r _ 0110 . xls\",0\n\"Subject: to ops - revised february bod approved risk management policy  fyi  - - - - - - - - - - - - - - - - - - - - - - forwarded by cassandra schultz / na / enron on 02 / 18 / 2001  10 : 44 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : cassandra schultz  02 / 18 / 2001 10 : 26 pm  to : bob m hall / na / enron @ enron , leslie reeves / hou / ect @ ect , jeffrey c  gossett / hou / ect @ ect , peggy hedstrom / cal / ect @ ect , stacey w white / hou / ect @ ect ,  brent a price / hou / ect @ ect , scott earnest / hou / ect @ ect , sheila  glover / hou / ect @ ect , d todd hall / hou / ect , cindy horn / lon / ect @ ect , brenda f  herod / hou / ect @ ect , mike jordan / lon / ect @ ect , howard carter / eu / enron @ enron ,  andrew cornfield / lon / ect @ ect , james new / lon / ect @ ect , orjan  agdesteen / osl / ect @ ect , james new / lon / ect @ ect , marcelo parra / nyc / mgusa @ mgusa ,  louis colarusso / nyc / mgusa @ mgusa , heidi  mason / enron _ development @ enron _ development , jan - erland bekeng / ap / enron @ enron ,  kevin rhodes / eu / enron @ enron , naomi connell / lon / ect @ ect  cc : sally beck , shona wilson , chris abel  subject : to ops - revised february bod approved risk management policy  attached is the revised risk management policy incorporating the bod ' s  changes - please discard the previously circulated version i sent out prior  to the bod meeting . i ' ve also included a recap of substantive changes since  the october 2000 version that was circulated to you in conjuction with the  compliance certificates last fall , but you should read the policy to enhance  your understanding , and distribute it to your groups as some changes are  significant and are detailed further in the policy . i did notify the office  of the chair for each of your business units of these changes earlier this  week , and i will also provide them with a copy of the revised policy .  if you have any questions , feel free to give me a call at x 30429 .  regards ,  cassandra schultz  market risk management\",0\n\"Subject: re : bogdan szopa - cv  shawn ,  i have met bogdan a few times socially . he graduated from the same university  i went to in poland .  he seems to be a dynamic and a personable guy .  he has experience that may be useful to your group .  vince  shawn cumberland @ enron _ development  02 / 12 / 2001 08 : 08 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : bogdan szopa - cv  vince :  can you give me some background on bogdan ?  many thanks . shawn  - - - - - - - - - - - - - - - - - - - - - - forwarded by shawn cumberland / enron _ development on  02 / 12 / 2001 08 : 12 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  awenda 2000 @ cs . com on 02 / 11 / 2001 11 : 26 : 12 pm  to : shawn . cumberland @ enron . com  cc :  subject : bogdan szopa - cv  dear shawn ,  it was a pleasure talking to you today . i will call you upon my return from  europe . in the meantime we will stay in touch via e - mail .  enclosed is my curriculum vitae .  best regards ,  bogdan m . szopa  - bogdan res . . doc\",0\n\"Subject: video conference with ross mcintyre  vince ,  you should have received an invitation through lotus notes which outlines the  vc location for the conference call tomorrow . it is schedule for 4 : 30 pm uk  time ( 10 : 30 am houston time )  ross ' s background is from investment banking ex dresner bank , he has a phd in  mathematical and is currently with speedwell weather derivatives where he has  been developing weather derivative pricing and portfolio optimisation tools  which they have been marketing to end - users with weather risks .  the attached word documents are articles that he has written for publication .  regards  nick mooney  - mcs . doc  - analytic . doc  - par . doc\",0\n\"Subject: praca dyplomowa  niniejszym potwierdzam , ze nastepujacy studenci zlozyli prace dyplomowe :  jerzy seremak prezentacja instrument ? w analizy finansowej jako  podstawa oceny wybranego podmiotu  w kr ? tkim i dlugim okresie czasu ocena : bardzo dobra  waldemar mr ? z controlling w przedsiobiorstwie ocena : bardzo dobra  t . blach analiza wskaznikowa ocena : bardzo dobra  w . kaminski\",0\n\"Subject: program  i forgot to attach the program file . here it is  - chonawee  - - - - - - - - - - - - - - - - - - - - - - forwarded by chonawee supatgiat / corp / enron on  10 / 17 / 2000 09 : 13 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  chonawee supatgiat  10 / 17 / 2000 09 : 13 pm  to : mike a roberts / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : program  mike ,  here is third version of the program . it gives better results than the  previous versions you have . sorry for the delay , these past 2 days i have  been busy meeting with people on the new ebs project . i think the result  looks reasonably good . you can try it . ( to run , type cow filename . jpg m )  smallcow . jpg : hand count 165 , program reports 140  cow 2 . jpg : hand count 1 , program reports 1  cow 3 . jpg : hand count 273 , program reports 244  cow 4 . jpg : hand count 7 , program reports 7  cow 5 . jpg : hand count 160 - 180 , program reports 165  - chonawee  you can show it to the others by yourself or i can go with you . i will have  to go to german consulate tomorrow morning and will be in the office around  10 : 30 - 11 am .  - chonawee\",0\n\"Subject: research group \"\" millenium \"\" party  hello all !  since we all seemed to survive the \"\" y 2 k \"\" bug , we are going to celebrate !  our \"\" holiday millenium \"\" party will be this saturday .  see attached for information , if you have questions , please call me at 3 - 5290 .  see you there !  shirley\",0\n\"Subject: telephone interview with the enron research group  good morning ms . knirel :  vince kaminski and several members of the research group would like  to conduct a telephone interview with you sometime this week at your  convenience . please let me know the times that you are available and  they will contact you .  the telephone interviews usually last approximately 1 hour and will be  conducted via a speaker phone .  the interviewers will be :  vince kaminski managing director and head of research  stinson gibner vice president , research  tanya tamarchenko director , research  zimin lu director , research  look forward to hearing from you .  best regards ,  shirley crenshaw  administrative coordinator  enron research group\",0\n\"Subject: cera monthly oil briefing - cera alert - december 20 , 2000  title : cera monthly oil briefing : fundamentals update  e - mail category : cera monthly briefing  cera knowledge area : world oil  in the past two weeks , oil prices have sold off the premium or price strength  that had been built into the market in anticipation of possible shortages  this winter . the exact cause of the sharp switch in market psychology is hard  to pinpoint but seems to be a combination of very early signs that the oil  stock situation is at least stabilizing , even if stocks have not built  substantially , and that , thus far , despite a few weeks of colder - than - normal  temperatures , heating oil supply has been adequate to meet demand in the key  us market . that has allayed some of the concerns that were driving  speculative interest into the market . furthermore , the potential for weakness  in the us economy may be creating expectations for weaker oil demand in 2001 .  the change in market psychology was dramatically illustrated when news that  iraq was cutting off exports caused prices to slide , yet , the iraqi export  cutoff is having a concrete effect on fundamentals . if the cutoff lasts  through december , the effect will be pronounced - it would turn a projected  fourth quarter 2000 stockbuild of 0 . 5 million barrels per day ( mbd ) into a  stockdraw of 0 . 1 mbd . we expect iraqi production levels to remain erratic  because of its dispute with the un security council over sanctions , and  exports may again cease . at some point such a development would have a price  supportive effect .  cera ' s price outlook for 2001 remains the same as that in the world oil watch  released in late november . assuming normal winter weather and no prolonged or  repeated shutdowns of iraqi production , the projected average for first  quarter 2001 is $ 29 per barrel for wti . however , this outlook is based on  opec ' s announcing an agreement early in the first quarter to cut its  production by the start of the second quarter . a failure to restrain output  would result in a downward adjustment to an average of $ 27 wti for the first  quarter of 2001 , with prices lower in the second half of the quarter than in  the first . the downward pressure results from the prospect of a  larger - than - usual implied build in stocks during the second quarter of about  3 . 0 mbd - with a cut in opec output .  iraq in a twilight zone  as anticipated , iraq ceased exporting oil under the un - controlled \"\" oil for  food \"\" program as of december 1 in protest over the rejection by the security  council ' s sanctions committee of its proposed december export price schedule . *  iraq ' s pricing was judged by the un overseers , who monitor the export program  and advise the sanctions committee , to be about 60 cents per barrel below  comparable crudes in an apparent attempt to offset an illicit surcharge that  iraq was seeking from buyers .  although the standoff with the sanctions committee continues , iraq partially  resumed exporting on december 13 . since then , about 1 mbd has been exported  from the mina al - bakr terminal in the persian gulf . prior to the shutdown ,  iraqi exports under un auspices were at a rate of 2 . 21 mbd for november , as  compared with 2 . 08 mbd for the third quarter . exports for november were about  1 . 3 mbd from mina al - bakr and about 0 . 9 mbd from ceyhan in the mediterranean .  exports from ceyhan have not resumed , owing to the surcharge dispute , with  the result that about 1 . 2 mbd of iraqi crude remains off the market .  iraq ' s semi - shutdown has put it into a kind of twilight zone while its  dispute with the sanctions committee over pricing continues . ( in the midst of  this dispute , the un security council approved phase nine of the oil - for - food  program at the last minute on december 5 ; it became effective on december 6  and has been accepted by iraq ) . as of decemberl 9 , iraq ' s revised export price  for ceyhan , proposed for the remainder of december , has again been judged too  low by the overseers and is expected to be rejected by the sanctions  committee . additionally , the overseers have notified lifters of iraqi crude  that any oil payment made directly to iraq rather than to the un escrow  account would be a violation of un sanctions . buyers of iraqi oil from mina  al - bakr have consistently been reported as saying that they are not paying a  surcharge to iraq .  how long iraq may operate at about half capacity is unclear , but it continues  to request a surcharge payment from prospective lifters at ceyhan in an  apparent effort to circumvent and degrade the un financial controls that are  the heart of the sanctions system . the distinction that iraq has made between  mina al - bakr and ceyhan arose when it resumed operations at mina al - bakr by  loading two cargoes for the india oil company . iraq may have judged this  accommodation to be in its interest , since it recently also signed an oil  exploration contract with india under which payments would be made in oil . as  currently structured , the deal would violate un sanctions , but india is  seeking an exception from the security council on grounds of economic  hardship . the exception seems unlikely to be granted , which may lead iraq to  cease exports from mina al - bakr again .  there are many possible scenarios that iraq could follow , but we expect  uncertainty about iraqi exports to continue as iraq uses its oil exports as  leverage to undermine sanctions in its ongoing struggle with the security  council to end all restraints . consequently , the iraq factor will remain an  element in the oil price outlook .  iraq ' s antisanctions campaign has also raised the visibility of the iraq  issue in washington as the incoming bush administration prepares to take  office . secretary of state - designate colin powell has already acknowledged a  need to reassess iraq policy and has said that he would work to \"\" reenergize \"\"  sanctions . the iraq issue is being debated in virtually every foreign  policy - oriented think tank in washington . a consensus seems to be emerging  around seeking renewed international support and legitimacy for sanctions by  retaining un control over iraq ' s oil revenue and strictly enforcing a  prohibition on sales of weapons and related material while lifting general  trade controls that increasingly are both ineffective and an international  irritant . there is virtually no sentiment in favor of operations to  destabilize or remove the saddam hussein regime on the pragmatic basis that  the prospects for success are remote .  demand trends  record high us natural gas prices have increased the economic incentive for  gas consumers with the capability to switch from gas to distillate to do so ,  and reports of switching are emerging in a number of areas . interruptible gas  customers with resid or distillate fuel back - up have already switched to oil ,  so it is now firm gas supply customers with the potential to add to the  already high level of distillate demand . so far in december us distillate  demand is running at a record high december level of 3 . 9 mbd . however , only a  small portion of this demand is the result of economically based  fuel - switching from gas to distillate . cera estimates that the additional  demand likely to come from further switching of gas to distillate is  relatively small , on the order of 0 . 1 to 0 . 2 mbd . in cera ' s view it is likely  that only a portion of the theoretical capacity will be switched on short  notice because in some cases , this theoretically switchable capacity has not  been used in recent years , and tankage and delivery infrastructure may be in  uncertain condition .  switching by interruptible gas customers ( such as utilities ) to distillate  began about a month or more ago , although the volumes involved are relatively  small . switching to residual fuel already occurred months ago when gas prices  started to surge in the summer . a portion of the us secondary and tertiary  distillate stockbuild seen this autumn was likely prompted by interruptible  gas customers filling their reserve distillate fuel storage . given the  expectations of a tight gas market , regulators have been explicit about  enforcing back - up fuel storage requirements in the months leading up to the  current heating season .  other end users of natural gas have few or no options for fuel switching .  some ammonia and ethane producers have shut down operations because the cost  of feedstock natural gas is high . natural gas is also used in some enhanced  oil recovery operations , and some of these producers have also opted to sell  gas back to the grid rather than produce oil .  supply trends  non - opec supply for the fourth quarter is expected to be up 0 . 9 mbd over a  year earlier at 46 . 4 mbd . recent events include a shortfall in mexican  production , curtailed in october by about 300 , 000 bd owing to the effects of  hurricane keith . mexico ' s fourth quarter liquids production is expected to be  3 . 64 mbd - about 95 percent of mexican liquids capacity . norway ' s output  increased 200 , 000 bd from october to november as maintenance season ended .  norway ' s production for the fourth quarter is expected to be 3 . 53 mbd . *  growing russian crude oil production throughout the year is supporting a  recent surge in exports , in spite of higher export taxes . russian exports of  domestic oil production ( excluding transit volumes ) reached 2 . 5 mbd in  november , after remaining fairly steady at about 2 . 35 mbd from july though  october . fourth quarter oil exports are expected to average 2 . 5 mbd , 0 . 3 mbd  greater than in the fourth quarter 1999 .  cera estimates iraqi oil production averaged 2 . 91 mbd in november - down 0 . 1  mbd from the october level . the cutoff in exports earlier this month reduced  iraqi output for the first 12 days of december to roughly 0 . 8 mbd . iraq  resumed exports of about 1 mbd on december 13 , which raised production to  1 . 80 mbd . assuming no change in iraq ' s current production stance , iraqi  production would average 1 . 41 mbd for december . on a quarterly basis , the  decline in iraq output would lead to estimated opec output in the fourth  quarter of 29 . 0 mbd and would turn an estimated global oil stockbuild of 0 . 5  mbd into a stockdraw of 0 . 1 mbd . these production estimates include 0 . 15 mbd  of crude oil exports to syria that began on november 20 without un  authorization and are continuing .  oil stocks  us crude oil inventories ( doe data ) have climbed intermittently from an  annual low of 280 million barrels in september and reached 292 million  barrels in mid - december ( see figure 1 ) . since prices weakened in late  november , crude oil stocks have stabilized above the annual low in september  and the ranges seen in october to levels from 289 - 292 million barrels .  primary inventories of us heating oil remain well below year - earlier levels ;  at 48 million barrels they are 15 million barrels , or 24 percent less , than  those of a year ago , but there are indications of builds in secondary and  tertiary inventories . we estimate that wholesale and consumer stocks are up  5 - 10 million barrels since august and are actually higher than they were at  the end of last year .  in europe crude oil stocks are at more comfortable levels when compared with  those of the united states . in november stocks rose nearly 9 million barrels  to 426 million barrels . at this level they are below the highs of 1999 but  well above the low levels of early 1996 ( see figure 2 ) . japanese crude oil  inventories at end - october were 107 . 6 million barrels , which is above the  record low set earlier this year but still well below levels seen in recent  years ( see figure 3 ) .  come shoot the rapids with us at ceraweek 2001 , \"\" shooting the rapids :  strategies and risks for the energy future \"\" in houston , february 12 - 16 ,  2001 ! ? for more information and to register , please visit  http : / / www 20 . cera . com / ceraweek /  to make changes to your cera . com account go to :  forgot your username and password ? go to :  http : / / www 20 . cera . com / client / forgot  this electronic message and attachments , if any , contain information from  cambridge energy research associates , inc . ( cera ) which is confidential and  may be privileged . unauthorized disclosure , copying , distribution or use of  the contents of this message or any attachments , in whole or in part , is  strictly prohibited .  terms of use : http : / / www 20 . cera . com / tos  questions / comments : webmaster @ cera . com  copyright 2000 . cambridge energy research associates\",0\n\"Subject: year end 2000 performance feedback  note : you will receive this message each time you are selected as a reviewer .  you have been selected to participate in the year end 2000 performance  management process by providing meaningful feedback on specific employee ( s ) .  your feedback plays an important role in the process , and your participation  is critical to the success of enron ' s performance management goals .  to complete requests for feedback , access pep at http : / / pep . corp . enron . com  and select perform review under performance review services . you may begin  providing feedback immediately and are requested to have all feedback forms  completed by friday , november 17 , 2000 .  if you have any questions regarding pep or your responsibility in the  process , please contact the pep help desk at :  houston : 1 . 713 . 853 . 4777 , option 4  london : 44 . 207 . 783 . 4040 , option 4  email : perfmgmt @ enron . com  thank you for your participation in this important process .  the following is a cumulative list of employee feedback requests with a  status of \"\" open . \"\" once you have submitted or declined an employee ' s request  for feedback , their name will no longer appear on this list .  review group : enron  feedback due date : nov 17 , 2000  employee name supervisor name date selected  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  crenshaw , shirley j wincenty j kaminski oct 26 , 2000  kindall , kevin vasant shanbhogue oct 30 , 2000  lamas vieira pinto , rodrigo david port oct 31 , 2000  supatgiat , chonawee peyton s gibner oct 27 , 2000  tamarchenko , tanya v vasant shanbhogue oct 26 , 2000  villarreal , norma e sheila h walton oct 26 , 2000  walton , sheila h david oxley oct 27 , 2000  yaman , sevil vasant shanbhogue oct 27 , 2000  yuan , ding richard l carson oct 31 , 2000\",0\n\"Subject: further actions on anjam ' s departure  hi mel  further to our earlier discussions here ' s the full list of actions we ' d like  to put into place regarding anjam ' s departure :  hr - type stuff :  1 . get anjam off the trading floor as soon as possible . there is no need for  him to remain on the floor . this will need to be delayed until it number 1  is completed ( cataloguing his work ) .  2 . determine where anjam is heading . we need to know who is going to know  our positions and curves next .  3 . remove his security pass , and insist that he is always accompanied when in  the building . sharad is to sit with him while he catalogues his work .  it - type stuff :  1 . ask him to catalogue the contents of his h : drive , since the rest of the  group will need to support his work in the future . this should take no more  than a day or two .  2 . get it to obtain their backups of anjam ' s h : drive for weekly intervals  over the last two months . this will allow us to determine what he has  deleted .  3 . get it to provide a snapshot of anjam ' s notes folders , and provide records  of mail sent out to the internet over the last couple of months . i ' m worried  about code / data he may have zipped up and mailed out .  4 . ask it to use a utility program to determine what has been deleted from  anjam ' s c : drives . there may be useful info here too .  5 . revoke all internet access , whether via explorer or notes mail .  6 . get a record of all files he has printed over the last couple of months .  vince has ok ' d this lot , so let ' s do it asap .  many thanks ,  steve\",0\n\"Subject: re : bandwidth + +  stinson ,  let ' s bring up these two ideas at the meeting with john bloomer  ( to discuss the other product ideas ) .  vince  steven leppard  05 / 11 / 2000 08 : 38 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : bandwidth + +  vince  if it ' s new ebs products you ' re after , how about a real - time bandwidth swing  contract with automatic exercise ? the customer pays for the minimum  ( baseload ) bandwidth they need for their ( say ) videoconference , with a  premium on top that automatically buys them extra bandwidth as it becomes  available from the system . they are guaranteed a minimum quality they can  live with , and ( more than likely ) they get improved quality much of the time  for a bargain price .  we get to charge for the use of bandwidth that would otherwise be idle .  steve  vince j kaminski  05 / 11 / 2000 02 : 09 pm  to : steven leppard / lon / ect @ ect  cc : stinson gibner / hou / ect @ ect , vince j kaminski / hou / ect @ ect  subject : re : bandwidth + +  steve ,  i think personally it ' s a great idea , though my son , who studies  computer science , poured a bucket of icy water on me . computers  are becoming very cheap and most companies have already a lot of  spare capacity on their systems .  but we can always try . we shall take this idea , to the person in ebs  responsible for the  new products and ask him to talk directly to you to discuss the details .  ebs is dying to come up with some new products .  vince  steven leppard  05 / 11 / 2000 03 : 56 am  to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect  cc :  subject : bandwidth + +  vince , stinson  have any investigations been made of the issue of trading ( spare ) processing  power ? such a proposal would have natural synergies with the bandwidth  business , since the jobs to be processed would need to be piped around , as  would their results .  obvious technical and legal problems are :  1 . standardisation . ( java ? )  2 . security and confidentiality .  just a thought that ' s been buzzing around my head for a while .  steve\",0\n\"Subject: storage book . . .  ravi :  samer and i met this morning with sara ledbetter . she is starting the  groundwork for setting up a storage book and a streaming book for tracking  the e - powered products positions . they are having a meeting on next  tuesday to discuss this . samer will attend . this is a good opportunity to  start compiling the data that we will need for some of john grieblings  questions .  - - stinson  p . s . sara also asked if we knew anyone who would be interested in managing  the storage book . any suggestions ?\",0\n\"Subject: re : billing question  thank you for your message . the credit card i want to use is currently stored  in your system . when i want to update the billing information with this card  number , i am getting the answer : credit card already in use . the card is in  good standing and there is absolutely no problem with this card and there was  never any problem . i don ' t understand why your system failed . i think that  this is your problem , not mine .  discover  last 4 digits : 0057 .  expiration : 05 / 02  sincerely ,  w . kaminski  p . s . i have just called discover and was told the account is in pefect shape  ( as expected ) . as i have said , you must have a bug in your system .\",0\n\"Subject: re : garp 2001 convention  frank ,  i assume you want to take advantage of this opportunity .  please , confirm .  i shall notify andreas .  vince  enron north america corp .  from : frank hayden @ enron 12 / 14 / 2000 09 : 55 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : garp 2001 convention  thanks ,  frank  vince j kaminski @ ect  12 / 14 / 2000 09 : 45 am  to : frank hayden / corp / enron @ enron  cc : vince j kaminski / hou / ect @ ect  subject : re : garp 2001 convention  frank ,  does this help ? please , let me know .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 12 / 14 / 2000  09 : 44 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" andreas simou \"\" on 12 / 13 / 2000 04 : 51 : 51 am  to :  cc :  subject : re : garp 2001 convention  dear vince  thank you for your recent enquiry concerning a complimentary pass to the  two - day garp convention . unfortunately , it is not garp ' s policy to allow  this for a number of reasons : garp is a not - for - profit organisation , will  much lower delegate fees ( and still the same overheads ) than other  conference organizers . garp ' s mission is to allow an educational forum for  furtherance of financial risk management and an opportunity to allow  networking and contact time between financial risk professionals . however ,  in an attempt to remain at ease with my speakers , i would like to offer a  50 % discount off the delegate fee for one of you colleagues in enron . this  will be for the two - day convention and will include the gala awards evening  on 13 th february , which had over three financial and risk professionals at  garp 2000 .  i trust that this is satisfactory . if you would like to take advantage of  this , please fax a completed registration form , along with a brief covering  note referring to this e - mail , and i will ensure that our administration  depart handle the relevant paper work . if you have any questions please do  not hesitate to contact me .  i look forward to your response and to meeting you in new york in february  ( and receiving a copy of your presentation in a few days ) .  kind regards  andreas  - - - - - original message - - - - -  from :  to :  cc :  sent : tuesday , december 12 , 2000 8 : 50 pm  subject : re : garp 2001 convention  andreas ,  am i entitled to bringing one delegate as a guest , free of charge ?  some conferences offer such privileges .  vince  \"\" andreas simou \"\" on 12 / 04 / 2000 06 : 31 : 37 am  to :  cc :  subject : garp 2001 convention  dear garp 2001 speaker  this is just a quick note to keep you up - to - date with developments at the  garp 2001 convention , which will be held in new york between 12 th and 15 th  february , 2001 .  thus far , garp 2001 looks set to far exceed our expectations and garp  2000 . there has been a great deal of interest in the 2001 convention .  delegate bookings have been much higher than this time last year . as a  result , we are set to far exceed the number of delegates that attention  earlier this year . the three workshops and the one - day asset management  forum are also very well received and will probably reach full capacity . i  will of course provide you with much fuller details closer to the time of  the event .  regarding the event itself , i would like a few outstanding issues :  1 . presentations : can you please e - mail your presentation to me by 15 th  december , so that i have enough time to reproduce them and place them in a  delegate pack for the convention . ( given the break of the christmas and  new york period , and that the event is being held in new york , i am sure  you can appreciate that there are certain logistical factors that need to  be taken into account , hence the reason why the presentations are required  as soon as possible ) . this is purely for reproduction , we also request you  bring your presentation to the convention on the day in either a floppy  disc or a laptop .  2 . audio - visual requirements : can you please inform me of what  audio - visual requirements you may have ( 35 mm slides ; ohp ; lcd projection -  notably powerpoint ) .  3 . check list : i have attached a check list for your information . if you  have not returned this already , can you please read and fax it to my  colleague , claire as soon as possible .  if you have any questions or queries , please do not hesitate to contact  me , otherwise i eagerly await your response in due course .  i look forward to seeing you in new york in february .  kind regards  andreas  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  andreas simou  garp 2001 - conference producer  tel + 44 ( 0 ) 20 7626 9301  fax + 44 ( 0 ) 20 7626 9900  don ' t miss the garp 2001 convention ,  program details via our web site  www . garp . com  ( see attached file : speaker checklist . doc )\",0\n\"Subject: re : additional bloomberg terminal for weather group on 31 st floor  jason ,  there was a problem with the request . i could not approve it ( the system would  not let me do it ) . there must have been a mistake in the way it was  submitted ) .  please , ask shirley to resubmit .  vince  from : jason sokolov 01 / 28 / 2000 08 : 51 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : additional bloomberg terminal for weather group on 31 st floor  vince ,  a few weeks ago we talked about installing an additional bloomberg terminal  on the 31 st floor for mike ' s weather team .  i have submitted a security request , and we are now waiting for your  approval .  could you , please , go over that request and give mike roberts and me your  feedback ?  jason sokolov\",0\n\"Subject: re : spring 2001 conference participation by jeffrey k . skilling  thanks for the note and i enjoyed seeing you the other night . we are working  with jeff ' s assistant on the date . it looks like it may be possible but  there are a few conflicts to dodge . we will be in touch soon . thanks  \"\" ehud i . ronn \"\" on 09 / 20 / 2000 11 : 12 : 46 am  to : rcausey @ enron . com , vkamins @ enron . com  cc :  subject : spring 2001 conference participation by jeffrey k . skilling  rick / vince ,  good morning .  in my 9 / 14 e - mail , i advised you of the practitioner - industry cefer ( center  for energy finance education and research ) conference we are planning for  spring 2001 . as you know , we would like to invite jeff skilling to be the  keynote speaker at the thur . evening dinner . the following day ' s four  topics consist of risk management , deregulation , real options , and  international / globalization . the majority of invitees would be  ( predominantly u . s . - based ) energy - industry practitioners , as well as  several academics .  given lead time issues in these matters , we have reserved hotel rooms in  austin for feb . 22 , 2001 . could i ask you to ascertain jeff skilling ' s  availability for that evening ?  thanks ,  ehud ronn  ehud i . ronn  professor of finance and jack s . josey professor in energy studies  director , center for energy finance education and research  mccombs school of business  university of texas at austin  austin , tx . 78712 - 1179  voice : ( 512 ) 471 - 5853  fax : ( 512 ) 471 - 5073  internet : eronn @ mail . utexas . edu \",0\n\"Subject: risk report on \"\" guide to electricxity hedging \"\" and request for gu  est access to enrononline  louise ,  it would be a good commercial for enron . what can we do to help him and  get free publicity ?  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 18 / 2000  01 : 40 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  ekrapels on 01 / 18 / 2000 12 : 00 : 12 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : risk report on \"\" guide to electricxity hedging \"\" and request for gu  est access to enrononline  dear vince ,  greetings from boston , where we ' re doing all we can to help keep the price  of gas high .  as i may have told you earlier , i ' m writing a \"\" guide to electricity hedging \"\"  for risk publications similar to the report on oil . i had planned to write a  significant section on enrononline , and in the midst of my research on the  topic was denied access by enron ' s gatekeeper . can you help get me in ?  as always , the best from here .  ed krapels  - - - - - original message - - - - -  from : donna greif [ mailto : dcorrig @ ect . enron . com ]  sent : tuesday , january 18 , 2000 12 : 37 pm  to : ekrapels @ esaibos . com  subject : request for guest access  dear mr . krapels :  thank you for requesting guest access to enrononline . unfortunately , we are  unable to give you quest access at this time .  enrononline is exclusively for those companies who can transact wholesale  energy  commodities and related products .  in addition , you had indicated within the comments section of your email  that  you are preparing a \"\" guide to electricity hedging \"\"  for risk publications . i have forwarded your inquiry to our public  relations  department along with your contact information .  should you not hear back from anyone within a reasonable amount of time ,  please  feel free to contact our call center at  713 853 - help ( 4357 ) .  sincerely ,  donna corrigan greif  enrononline help desk  713 / 853 - 9517  - attl . htm\",0\n\"Subject: london telephonhe numbers change  fyi !  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 26 / 2000  12 : 05 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  anjam ahmad  04 / 26 / 2000 11 : 44 am  to : shirley crenshaw / hou / ect @ ect  cc :  subject : london telephonhe numbers change  hi shirley ,  please could you forward this to houston research . . . may explain difficulty  in calling london .  thanks ,  anjam  - - - - - - - - - - - - - - - - - - - - - - forwarded by anjam ahmad / lon / ect on 26 / 04 / 2000 16 : 54  - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron europe general announcement  20 / 04 / 2000 15 : 41  please respond to european it support / lon / ect  to : ect london  cc :  subject : very important - \"\" change of telephone numbers \"\" this weekend ! ! !  as you are no doubt aware , this weekend ( 22 nd april 2000 ) the 0171 and 0181  london dialling codes are being replaced by 0207 and 0208 respectively .  since our move to enron house all external customers should have been made  aware of the new 020 7783 telephone numbers .  we are however still receiving calls on the old 0171 numbers .  please be aware that these 0171 numbers will be cease to operate on the 22  april 2000 .  from this date , calls made to the old 0171 numbers will reach an announcement  advising them to call enron ' s new switchboard number : 020 7783 0000 .  please ensure that your external contacts are made aware of the correct  number convention :  020 7783 xxxx  details of new phone and fax numbers are as follows :  click here - - > < - - to access the personal fax numbers ( surname k - z ) details  in the \"\" non - commercial bulletin board \"\" database on ectlon - ln 2 / ect .  if you access the enron network via ' ras ' , you must ensure that the ras  number is updated in your laptop settings .  the old ras number was 0171 316 6666 . this has changed to 020 7783 6666 .  from the 22 april 00 oftel ' s ' big number ' day you will no longer be able to  dial 0171 and 0181 numbers . the new 0207 and 0208 numbers must be used in  their place . current users of the new code will know that at present you  must use the new area code as well as the new number .  from the 22 april 00 you will be able to dial either the local number on it ' s  own i . e . 7783 0000 or the area code and local number i . e . 020 7783 0000 .  if you have any questions please contact european it support on 36777\",0\n\"Subject: my trip to india  tentative plan is like this :  leave houston : sun . 9 th to arrive bombay mon late night .  leave bombay for hyderabad fri 14 th .  leave for vijayawada 16 th night .  return to bombay and leave bombay on 19 th wed .  back to houston on thursday .  i will be taking vacation on 17 th & 18 th visiting my family . i don ' t have a  number for bombay , but i should be with sandeep kohli ( cell # below ) .  contact # s :  bombay 011 - 91 - 982 - 1068238 ( to 14 th )  hyderabad 011 - 91 - 40 - 7114833 ( 15 - 16 th )  vijayawada 011 - 91 - 866 - 430928 ( 17 - 18 th )  hopefully , there won ' t be too much of excitement on the flights , especially  in india !  krishna .\",0\n\"Subject: component var  tanya ,  some stability tests were performed on the simulation .  ( 1 ) the window size of the averaging in the simulation was changed from 10 to  20 for ng - price ( the biggest book in gas ) for effective date june - 28 . as you  can see in the file 28 ng - price _ windowsize , the component var numbers are very  similar .  ( 2 ) to look at a calculational comparison , i looked at the storage - prc book  ( which has no gamma position ) for effective date of 27 th and ( a ) calculated  ffvols , and ( b ) calculated the riskmetrics var ( the correlations are very high  across the term structure ) and compared to the component var code  calculation , and again the two nubers are comparable , given the different  modes of calculation .  naveen\",0\n\"Subject: new order : palm vx for grant masson  lyn :  please order for me one palm pilot vx including docking cradle ( that ' s the  palm v with 8 mb of ram ) .  company number is : 0011  rc is : 100038  thanks ,  grant masson  v . p . research  eb 1966  x 34768\",0\n\"Subject: the latest ( last ? )  intended for mark a . palmer . . . .  - - - - - - - - - - - - - - - - - - - - - - forwarded by mark s palmer / na / enron on 02 / 02 / 2001  08 : 02 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski @ ect  02 / 02 / 2001 08 : 45 am  to : mark s palmer / na / enron @ enron  cc : vince j kaminski / hou / ect @ ect , christie patrick / hou / ect @ ect  subject : the latest ( last ? )  mark ,  i am sending you the final ( ? ) draft of the paper by john martin  on enron ' s transformation . john martin is a prof from baylor who visited us  a few weeks ago .  can you take a look at the paper and bless it . i haven ' t read this last  version  of the paper yet and i will go through it on weekend .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 02 / 2001  08 : 44 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" john d . martin \"\" on 02 / 01 / 2001 04 : 15 : 36 pm  to : vkamins @ enron . com  cc :  subject : the latest ( last ? )  vince ,  attached is my latest attempt to wrap everything together . our timetable  is very short as we need an \"\" approved by enron \"\" version of the paper to don  by next wednesday . don has already made editorial changes for us and may  make some additional \"\" writing style \"\" changes but he doesn ' t change the  content .  i ' ll give you a call later today to alert you to the e - mail .  take care ,  john  p . s . i had a nice conversation with steve . sounds like he ' s landed a  pretty good contract with wiley .  - enron _ paper _ 2 _ 1 _ 01 . doc  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: re : follow up on houston opportunity  anjam ,  i have another meeting . please , talk to grant .  i shall catch him in the morning to review  where we stand .  vince  enron capital & trade resources corp . - europe  from : anjam ahmad 08 / 10 / 2000 08 : 41 am  to : vince j kaminski / hou / ect @ ect , grant masson / hou / ect @ ect  cc :  subject : follow up on houston opportunity  hi vince & grant ,  i was wondering if you would have some time to discuss the opportunity  tomorrow morning ( friday ) ? i am free from 10 am to 12 pm houston time .  thanks ,  anjam  x 35383\",0\n\"Subject: re : personal  dear mr . kaminski :  thank you very much for meeting with me again today over lunch . i appreciated  the opportunity to catch up with you .  please find attached my current resume ( both a short and a long version ) . i  have worked as a trader , portfolio risk manager , and a stock analyst . i have  traded derivatives , bonds , and stocks , and managed insurance and pension  investment portfolios to maximize risk - adjusted returns . let me highlight  some of my work experiences .  trading and risk management  a . . structured , negotiated , and traded otc interests rate swaps ,  cross - currency swaps , swaptions , and exchange - traded equity index futures and  options . made powerpoint presentations to garp and the uoh on credit  derivatives .  b . . developed investment hedging program utilizing exchanged - traded bond  futures and interest rate swaps .  c . . traded and managed pension and insurance fixed income portfolios to  maximize total return and funding ratios . bonds traded : treasuries , agencies ,  mbs / cmos , abs , corporate , yankees , and foreign .  d . . traded and managed stock mutual portfolios for total return .  e . . created a computer program to quantify the attribution of total  return for fixed income portfolios relative to market returns .  f . . programmed investment compliance rules to monitor the management of  domestic and global stock , bond and money market mutual funds .  g . . supervised market risks , credit risks , legal risks , and operations  risks of derivatives , bonds , money market securities , and equities .  policy , reporting and projects  a . . developed investment policy guidelines to manage fixed income  portfolios .  b . . rewrote derivatives policy manual .  c . . prepared a 20 - page powerpoint slide presentation on india for the  senior management .  d . . prepared and presented investment reports to cios , investment  committees , and boards of trustees  i shall , therefore , appreciate your help in connecting me with the right  individual within enron for a job interview to work as a financial  trader / risk manager . i can provide excellent references upon request .  thank you for the lunch .  sincerely ,  maruti d . more , cfa  713 - 722 - 7199  more @ insync . net  - - - - - original message - - - - -  from : vince j kaminski  to : more  date : tuesday , january 25 , 2000 12 : 39 pm  subject : re : fw : luncheon meeting : asap  hello ,  i shall be traveling this week . i shall be glad to meet  you for lunch next week . please give me a call monday  at 713 853 3848 .  vince  \"\" more \"\" on 01 / 25 / 2000 10 : 27 : 09 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : fw : luncheon meeting : asap  dear mr . kaminski :  just to bring you up to date . i am no longer with american general . i  shall ,  therefore , appreciate an opportunity to meet with you for lunch at the  earliest  possible time . i can be reached at 713 - 722 - 7199 .  thank you .  maruti more  713 - 722 - 7199  - - - - - original message - - - - -  from : more  to : vince j kaminski  date : friday , december 17 , 1999 8 : 55 pm  subject : re : luncheon meeting  thank you for your response . i was very happy to hear from you .  i am also taking next week off and will be back to work on december 27 th .  please do call me when you get back . would very much appreciate the  opportunity  to have a quick lunch with you , if possible . hope everything is going  well .  have wonderful christmas holidays .  regards  maruti more  713 - 831 - 6209 ( o )  - - - - - original message - - - - -  from : vince j kaminski  to : more  cc : vince j kaminski  date : friday , december 17 , 1999 3 : 35 pm  subject : re : luncheon meeting  hello ,  i shall be taking a few days off around xmas . i shall call you at the  end of  december  when i get back to the office .  with best holiday wishes ,  vince  \"\" more \"\" on 12 / 01 / 99 09 : 28 : 09 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : luncheon meeting  dear mr . kaminski :  how are you doing ? i want to find out if we can meet again for a quick  lunch .  you might know that in maharashtra , india there is now a new chief  minister  ( ceo of the state government ) . i am proud to say that he and i are  from the  same  town , latur .  i would really enjoy talking with you again , at your convenience .  i will call you tomorrow to follow up .  thank you .  sincerely ,  maruti more  - - - - - original message - - - - -  from : vince j kaminski  to : more  cc : vince j kaminski ; vkaminski @ aol . com  date : thursday , july 01 , 1999 6 : 16 am  subject : re : luncheon meeting  dear mr . more ,  let ' s meet at 11 : 45 in the lobby of the enron building .  we can walk to one of the restaurants in the downtown area .  vince kaminski  ( embedded enron capital & trade resources corp .  image moved  to file : from : \"\" more \"\"  picl 7002 . pcx ) 06 / 30 / 99 10 : 38 pm  to : vince j kaminski / hou / ect  cc :  subject : luncheon meeting  dear mr . kaminski :  i am looking forward to our luncheon meeting on this friday ,  july 2 ,  1999  at  11 : 30 am . please let me know where we should meet . thank you for  taking  time  out  from your busy schedule .  sincerely ,  maruti more  tel . : 713 - 831 - 6209  - attl . htm  - bio @ home . doc  - more @ home . doc\",0\n\"Subject: re : vincent tang  vince - thanks so much for the job description . i forwarded it to our legal  counsel for their review , and they were very pleased with it .  they said it really helped them to understand what vincent is actually doing ,  which will enable them to better prepare his case .  thanks again .  candace  vince j kaminski  01 / 07 / 2000 12 : 20 pm  to : candace womack / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : vincent tang  candace , .  sorry for additional delay . editing took a long time .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 07 / 2000  12 : 18 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  01 / 04 / 2000 12 : 11 pm  to : candace womack / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : vincent tang  candace ,  sorry for the delay . i shall edit the job description and forward it to you  later today .  vince  candace womack  01 / 04 / 2000 11 : 24 am  to : vince j kaminski / hou / ect @ ect  cc : rebecca shelp , \"\" r . van ravenswaay \"\"  , margaret daffin / hou / ect @ ect , jane  allen / hou / ect @ ect  subject : vincent tang  vince - will you please review the following job description which tindall research analyst )  overview : provides research support for specific projects and programs .  essential functions :  projects may involve collecting and analyses data to formulate  recommendations , policies or solutions .  marginal functions :  may involve mathematical or simulation models of problem for solution by  computers or other methods : analyzes problem in terms of information and  conceptualizes and defines problem .  studies information and selects plan from competitive proposals that  affords maximum probability of profit or effectiveness in relation to  cost or risk .  prepares model of problem in form of one or several equations that  relates constants and variables , restrictions , alternatives , conflicting  objectives and their numerical parameters .  defines data requirements and gathers and validates information applying  judgment and statistical tests .  specifies manipulative or computational methods to be applied to model .  performs validation and testing of model to ensure adequacy , or  determines need for reformulation .  prepares reports to management defining problem , evaluation , and  possible solution .  evaluates implementation and effectiveness of research .  may design , conduct , and evaluate experimental operational models where  insufficient data exists to formulate model .  may specialize in research and preparation of contract proposals  specifying competence of organization to perform research , development ,  or production work .  may develop and apply time and cost networks , such as program evaluation  and review techniques ( pert ) , to plan and control large projects .  may work in association with engineers , scientists , and management  personnel in business , government , health , transportation , energy ,  manufacturing , environmental sciences or other technologies .  i look forward to your response .  rebecca shelp  legal assistant  tindall & foster , p . c .  600 travis , suite 2800  houston , texas 77002 - 3094  telephone : ( 713 ) 229 - 0636 ext . 101  fax : ( 713 ) 228 - 1303  email : rshelp @ tindallfoster . com\",0\n\"Subject: re : technical corner article  tanya ,  looks good . we should break it up in 2 parts .  vince  tanya tamarchenko  02 / 09 / 2001 10 : 36 am  to : vince j kaminski / hou / ect @ ect  cc : william smith / corp / enron  subject : re : technical corner article  vince ,  see if this is a good article for our technical corner .  tanya\",0\n\"Subject: re : amitava ' s visit  bryan ,  i am glad we could help . let me talk to vasant about amitava ' s support  for you .  vince  bryan seyfried  11 / 05 / 2000 05 : 26 am  to : vince j kaminski / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect  cc : steven leppard / lon / ect @ ect , markus fiala / lon / ect @ ect  subject : amitava ' s visit  really appreciate your freeing amitava up to provide critical input into the  quantitative work we have undertaken . as you are aware much of the work  requires exploring uncharted territory and the team has confirmed the  significant contribution that amitava ' s experience and expertise has provided  in a very short timeframe .  as you might expect , this quickly confirms that we really need more dedicated  support from someone with amitava ' s background . it is imperative that we  leverage his experience to speed up the process and apply critical insights  into our project . this will not only speed up the work considerably but also  ensure that we have put our best team on the difficult issues in front of us .  i would like to discuss an arrangement where we can ensure amitava is more  integrated into our efforts . i realize it will be difficult to free him up  but maybe we can put something together which works for everybody .  some early ideas :  have amitava and family come over for 6 weeks of dedicated support . this  should allow us to develop the communication processes to run a global quant  effort for the project and then continue with amitava a full time ec . com  resource working from houston . this is likely my preference .  or  agree a schedule of regular trips which allows amitava to provide critical  insights and oversight of the project and give our team a resource to extract  his experience on an ongoing basis .  let ' s discuss before i talk to john about the practicalities  thanks for your assistance .\",0\n\"Subject: a message from joe sutton  today , i announce my departure from enron . enron is a great company and i  have enjoyed working with our terrific employees over the last eight years .  together , we have made enron a successful global company .  with enron \u0001 , s decreased emphasis on international asset development activity ,  however , i have decided to pursue opportunities where i can make greater use  of my skills and experience . i leave enron with wonderful memories of our  employees and the many successes we have achieved together . you have my best  wishes for enron \u0001 , s continued success .  joe\",0\n\"Subject: enhanced energy scheduler tool in production today  message sent from the pjm - customer - info mailing list at  pjm - customer - info @ majordomo . pjm . com :  the new pjm enhanced energy scheduler ( ees ) will go into production at 10 : 00  this morning 4 / 17 / 00 at https : / / ees . pjm . com / mui / index . htm . schedules may be  submitted for energy that begins on or after tomorrow , 4 / 18 / 00 . for questions  please contact pjm at 610 - 666 - 2270 .  questions may be directed to pjm customer service at ( 610 ) 666 - 8980 .  to unsubscribe from this list , send an e - mail to majordomo @ majordomo . pjm . com  containing only the following line in the body of the e - mail :  unsubscribe pjm - customer - info\",0\n\"Subject: summer position  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 03 / 13 / 2000  01 : 56 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  amy ruth ward on 03 / 13 / 2000 01 : 31 : 54 pm  to : celeste roberts / hou / ect @ ect  cc : stinson gibner / hou / ect @ ect  subject : summer position  dear celeste and stinson ,  i am writing to refuse enron ' s offer for a summer position . after several  conversations with my advisor at stanford , we have decided that i should  remain at stanford to work on my dissertation .  thank you again for taking the time to show me around enron .  sincerely ,  amy ward\",0\n\"Subject: re : confirm participation at real options conference at cambridge  u . - urgent  i ' d love to . it ' d be good to get to know lenos .  cheers ,  steve  vince j kaminski  04 / 20 / 2000 02 : 09 pm  to : steven leppard / lon / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : confirm participation at real options conference at cambridge  u . - urgent  steve ,  are you interested in speaking at this conference ?  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 20 / 2000  08 : 10 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  lenos trigeorgis on 04 / 19 / 2000 05 : 32 : 27 pm  to : \"\" vince j kaminski \"\"  cc :  subject : re : confirm participation at real options conference at cambridge  u . - urgent  vince  can you please check with steve leppard and ask him to confirm , and send to  me his position and title of his talk ( if different from yours ) ?  thanks very much again  lenos  at 05 : 14 _ _ 04 / 19 / 00 - 0500 , you wrote :  >  >  > lenos ,  >  > my busy schedule does not allow me to attend .  >  > i would like , however , to recommend my colleague who works  > in london , steve leppard .  > he can make a very interesting and original presentation on real options .  > please , let me know what you think .  >  > vince  >  >  >  >  >  >  > lenos trigeorgis on 04 / 18 / 2000 09 : 29 : 18 pm  >  > to : lenos . trigeorgis @ rogroup . com  > cc : ( bcc : vince j kaminski / hou / ect )  > subject : confirm participation at real options conference at cambridge  > u . - urgent  >  >  >  > the attached file contains the tentative program for two back - to - back real  > options conferences ( a professional one for july 5 - 6 , and the standard  > annual academic one for july 7 - 8 ) at cambridge u .  >  > your name has been provisionally included on the program . please check all  > the information relating to you and confirm your participation as listed  > ( or advice us of desired changes immediately ) .  >  > thank you .  >  > lenos  >  >  >  > attachment converted : \"\" c : \\ drive _ e \\ eudora \\ attach \\ 4 thconfsessionsl 2 . doc \"\"  >  >  > lenos trigeorgis  > professor of finance  > university of cyprus  > dept of business  > 75 kallipoleos , po box 20537  > cy 1678 nicosia cyprus  >  > tel : + 357 2 892261  > fax : 339063  >  >  >  lenos trigeorgis  professor of finance  university of cyprus  dept of business  75 kallipoleos , po box 20537  cy 1678 nicosia cyprus  tel : + 357 2 892261  fax : 339063\",0\n\"Subject: re : research meeting  steve ,  yes . i shall try to call you later this morning . i had a schedule from hell  the last few days .  vince  steven leppard  10 / 26 / 2000 08 : 45 am  to : john sherriff / lon / ect @ ect , michael r brown / lon / ect @ ect , richard  lewis / lon / ect @ ect , joe gold / lon / ect @ ect , tani nath / lon / ect @ ect  cc : vince j kaminski / hou / ect @ ect , sarah jane white / lon / ect @ ect , lauren  urquhart / lon / ect @ ect , kirsten nelz / lon / ect @ ect , sarah knott / lon / ect @ ect ,  fiona stewart / lon / ect @ ect  subject : research meeting  all  john sherriff has suggested we all get together in the near future to discuss  the demands being placed on the research group . i will be making a request  for additional resources , and the aim of the meeting is to determine the most  appropriate size for the team .  assistants : can we aim for week commencing 6 th november ?  vince : would you like to teleconference in ?  many thanks  steve\",0\n\"Subject: visit may 4 th  vince :  per susan ' s email below , do you want to go to the luncheon for john  hennessey ? she doesn ' t say where the lunch is going to be , did you  get an invite ?  the only thing you have that day is 9 : 00 am larry thorne and the  energy derivatives class at 11 : 30 .  let me know .  thanks !  shirley  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 17 / 2001 11 : 55 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" susan c . hansen \"\" on 04 / 17 / 2001 10 : 47 : 38 am  to : shirley . crenshaw @ enron . com  cc : clovell @ stanford . edu , donna lawrence  subject : visit may 4 th  hi shirley ,  thanks for corresponding with carol during my absence , and confirming our  meeting with vince kaminski at 1 : 30 on may 4 th . i have a question about  the logistics . i believe dr . kaminski has received an invitation to an  event in houston : new stanford president john hennessy is visiting a number  of cities on a \"\" welcome tour , \"\" and it just so happens he is hosting a  luncheon in houston on may 4 th . if dr . kaminski wants to attend the  hennessy welcome tour luncheon , donna lawrence and i could meet with him at  1 : 30 somewhere in the hotel . if he ' s not attending the presidential event ,  please let me know where you are located , and we ' ll plan travel time  accordingly .  regards ,  susan  susan c . hansen  director , corporate relations  school of engineering  stanford university  stanford , ca 94305 - 4027  ( 650 ) 725 - 4219\",0\n\"Subject: re : equity investment fair value in turkey  john ,  please , give me another day to elaborate . it ' s quite hectic here .  vince  enron capital & trade resources corp . - europe  from : john bottomley 06 / 21 / 2000 03 : 41 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : equity investment fair value in turkey  vince ,  any further thoughts on your end ?  john  vince j kaminski  19 / 06 / 2000 15 : 45  to : john bottomley / lon / ect @ ect  cc : dale surbey / lon / ect @ ect , vince j kaminski / hou / ect @ ect , stinson  gibner / hou / ect @ ect  subject : re : equity investment fair value in turkey  john ,  it seems to me that using a risk - free rate is not appropriate . i shall  elaborate on my  position and send you a longer message this afternoon ( my time ) .  vince  enron capital & trade resources corp . - europe  from : john bottomley 06 / 19 / 2000 05 : 55 am  to : vince j kaminski / hou / ect @ ect  cc : john sherriff / lon / ect @ ect , dale surbey / lon / ect @ ect  subject : equity investment fair value in turkey  vince ,  john sherriff recommended that i contact you regarding an interesting ( and  potentially contentious ) option valuation issue we are currently dealing with  in london . we hold longish term options in a private company in turkey which  is currently seeking to ipo . the issue we are discussing with rac is which  discount rate ( i . e . , risk - free ? and if so turkish or us ? ) should we use to  value these options  first , some additional information .  option characteristics :  - - 116 , 000 options ( representing 9 % of the company )  - - term : minimum of 3 years but possibly longer - - still being renegotiated  - - strike price : 20 % below the upcoming ipo price ( either priced in us $ or  turkish lire )  we currently hold the above number of options with a fixed price of $ 118 . 75  per option but 34 , 800 expire on july 15 , 2000 with the remainder expiring on  december 15 , 2000 . the company ' s investment bankers ( abn / amro rothchilds )  are concerned regarding the strike price because it values the company at  $ 118 million and they believe the company is worth approx $ 300 million . due  to such a large \"\" valuation gap \"\" , they originally encouraged us to exercise  all of the options by the end of june ( ipo target date in late sept / early  oct ) . our counter - proposal is to \"\" swap \"\" instrinsic value for time value by  repricing the options strike higher while extending their term .  we are currently negotiating with rac the most appropriate discount rate to  use to value the options . we are arguing that the us risk free is the most  appropriate discount rate and their current position is that the company ' s  historical senior debt cost ( 18 % ) is the more appropriate number to use  ( although admit that this is not justifiable - - only a proxy )  a few key points :  - - rac is valuing the options via crystal ball simulations such that this \"\" to  be negotiated \"\" discount rate is used to calculate the pv of the future  options intrinsic value in 3 years  ( i . e . , for black - scholes , a higher discount rate yields a higher value but  the opposite is true using crystal ball simulation )  - - the model simulates both an ipo / no ipo case and in the case of no ipo we  have put options for our equity priced at a fixed 17 % return  - - the model assigns a 30 % illiquidity discount  - - in the simulated cases where the options are out - of - the - money , we  obviously do not exercise .  we understand that for black - scholes option valuation , one needs to be able  to construct a comparable portfolio of cash flows using equity futures and  the risk free in order for the valuation to hold . and here is where we reach  our difficulty : since the company doesn ' t currently trade on a public market  and since equity futures do not exist for turkish equities , rac is arguing  that a us risk free is not appropriate to use . our argument is that the  non - ipo scenario , a 30 % illiquidity discount and a us $ based option  volatility are already in the factored into the simulation . as such , we feel  rac ' s approach is double counting .  if you managed to get through the above , your a patient man ! i ' ll give you a  call today or tomorrow after you ' ve had a chance to digest the information .  regards ,  john bottomley\",0\n\"Subject: stanford associate recruiting  i would like to take this opportunity to thank each of you for your  participation in the stanford associate interviews last week . our efforts  resulted in 6 summer associate offers and 1 full - time associate offer .  althea gordon will be e - mailing you the names of the individuals who will  receive offers . we would like you to contact these individuals to  congratulate them and encourage their acceptance . althea will match you up  with the candidates you interviewed and provide you with contact information .  althea has verbally contacted both the offers and the declines . we will be  sending out both offer letters and decline letters by end of day tuesday ,  march 20 . in the meantime , should any of you be contacted by students who  did not receive an offer , i recommend the following verbal response :  \"\" our summer program is highly competitive , forcing us to choose a smaller  number of candidates from a highly qualified pool . our summer hiring this  year will be between 35 - 40 associates . the full - time program typically hires  between 80 - 90 associates . given that you made it this far in our selection  process , i would strongly encourage you to apply in the fall for the  full - time associate program . \"\"  we will keep you informed via e - mail of our acceptance rate at stanford .  again , thank you for your support . we look forward to working with you on  potential future stanford recruiting events .  regards ,  celeste roberts\",0\n\"Subject: my coordinates  test message  vincent kaminski  managing director - research  enron corp .  1400 smith street  room ebl 962  houston , tx 77002 - 7361  phone : ( 713 ) 853 3848  fax : ( 713 ) 646 2503  e - mail : vkamins @ enron . com\",0\n\"Subject: re : visit to houston and vince kaminski ' s research group  vince ,  thanks for the update . i ' m looking forward to meeting you too .  shijie  shi - jie deng  assistant professor  school of isye  georgia institute of technology  office phone : ( 404 ) 894 - 6519  e - mail : deng @ isye . gatech . edu  home page : http : / / www . isye . gatech . edu / ~ deng  on thu , 27 jul 2000 vince . j . kaminski @ enron . com wrote :  >  > shijie ,  >  > we would like you to meet tomorrow morning , starting at 9 : 00 , with a few  > members of the  > group . around 11 : 15 we shall go to lunch ( myself , stinson gibner and zimin  > lu ) .  > at 1 : 00 we would like you to make a presentation to the research group on  > the topic  > of your choice . after 2 : 30 we shall continue with individual meetings .  >  > we shall give you an agenda with the names and times when you arrive .  >  > you can come to the lobby of the enron building ( 1400 smith )  > between 8 : 30 and 9 : 00 and call me ( 3 - 3848 ) or my assistant ,  > shirley crenshaw ( 3 - 5290 ) , to be admitted to the building .  > we are on the 19 th floor .  >  > look forward to meeting you .  >  > vince kaminski  >  >  >  >  >  >  > shijie deng on 07 / 27 / 2000 10 : 10 : 03 am  >  > to : shirley . crenshaw @ enron . com  > cc : vince kaminski  > subject : re : visit to houston and vince kaminski ' s research group  >  >  >  > hi shirley ,  >  > an overhead would be good . thanks .  > btw , is there happen to be an agenda for my visit ? thank you .  >  > shijie  >  > shi - jie deng  > assistant professor  > school of isye  > georgia institute of technology  >  > office phone : ( 404 ) 894 - 6519  > e - mail : deng @ isye . gatech . edu  > home page : http : / / www . isye . gatech . edu / ~ deng  >  > on fri , 7 jul 2000 shirley . crenshaw @ enron . com wrote :  >  > >  > > shijie :  > >  > > thanks for the information .  > >  > > please let me know if you need av equipment , i . e . , lcd projector ,  > overhead  > > projector , etc .  > >  > > thanks !  > >  > > shirley  > >  > >  > >  > >  > >  > >  > >  > >  > >  > > shijie deng on 07 / 03 / 2000 11 : 40 : 05 am  > >  > > to : shirley . crenshaw @ enron . com  > > cc : vince kaminski  > > subject : re : visit to houston and vince kaminski ' s research group  > >  > >  > >  > > shirley ,  > >  > > i just booked my flights and the hotel . i ' ll be arriving houston on  > > the evening of 7 / 27 and leaving on 7 / 29 . i ' ll stay at the doubletree  > > houston allen center for two nights . looking forward to meeting you at  > > enron .  > >  > > regards ,  > >  > > shijie  > >  > > shi - jie deng  > > assistant professor  > > school of isye  > > georgia institute of technology  > >  > > office phone : ( 404 ) 894 - 6519  > > e - mail : deng @ isye . gatech . edu  > > home page : http : / / www . isye . gatech . edu / ~ deng  > >  > >  > >  > >  > >  > >  > >  >  >  >  >  >  >\",0\n\"Subject: your visit to sydney in july  dear vince ,  hi ! , it ' s only two weeks until the aust energy risk ( 17 - 19 july ) seminar in  sydney .  is risk organising your hotel ?  otherwise , kirsty can organise for you ,  eg harbour view at the regent or convenience to the seminar location at the  sheraton ?  we would like to make sure that you have all the necessary \"\" comforts \"\" of home  when you are with us ,  elliott & david can set up a desk for you in the office / trading room with  phone etc  so you can use one of our pc to access email or plug in your laptop .  please let elliott or david kmow your requirements .  how long will you be with us ?  is this your first trip to sydney ?  there are several of us in the office who would like to take you for a  meal ( s ) / show you the sights etc and  discuss the latest research findings with you whilst you are in sydney eg var .  hear from you soon .  raymond  725 pm 4 july\",0\n\"Subject: re : grades  thank you ! - pvc  at 09 : 19 am 5 / 3 / 01 - 0500 , you wrote :  > pam ,  >  > another group :  >  > stuart hamel  > jed howard  > brian nelson  >  >  >  > b +  >  >  >  > vince  >  >  >  >  >  > pamela vande krol castro on 05 / 03 / 2001 08 : 58 : 24 am  >  > to : vince . j . kaminski @ enron . com  > cc :  > subject : re : grades  >  >  > got them - thank you ! - pvc  >  > at 05 : 21 pm 5 / 2 / 01 - 0500 , you wrote :  > > pam ,  > >  > > another team :  > >  > > elena chilkina  > > robert j . guadette  > > joseph helms  > > kenneth jett  > > todd litton  > > mark westmoreland  > >  > >  > > grade : a -  > >  > >  > > vince kaminski\",0\n\"Subject: move to the research area  hi shalesh :  the move team has informed me that they will not be able to move your  telephone until wednesday , the 23 rd . i have asked them to bring you  boxes by friday , but i have not heard back from them . your computer  is here , but without a telehone , you may not want to move down here  until the 23 rd .  just to let you know .  have a great day !  shirley\",0\n\"Subject: dr . gabriel bitran  vince ,  fyi .  prof . gabriel bitran of the m . i . t . management science department is planning  to visit ebs on wednesday , aug . 9 , to discuss research topics which might be  of interest to ebs . ( this is amit dhadwal ' s advisor . ) he still has 25 k of  funding to use for research , but we are having a hard time coming up with a  mutually suitable topic . i have asked samer to work with him in trying to  come up with a research subject .  stinson\",0\n\"Subject: re : visit to houston  martin ,  all other things equal , i would prefer march 2 nd as the following friday is  the beginning of spring break for hisd . can you check with racicot and  fallon ?  - - stinson  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 02 / 12 / 2001  11 : 10 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  nick bambos on 02 / 09 / 2001 11 : 33 : 33 am  to : stinson . gibner @ enron . com  cc : gappy @ stanford . edu , cope @ csli . stanford . edu  subject : re : visit to houston  hi stinson ,  eventually , the team here ( giuseppe , eric , myself ) has converged to two  possible dates to propose for a visit :  1 ) friday , march 2  2 ) friday , march 9  how do these look on your side ?  we ' ll structure the agenda immediately after we fix the date .  i look forward to seeing you again .  best ,  nick  stinson . gibner @ enron . com wrote :  >  > nick ,  >  > i hope things are going well and you are not staying too busy . we should  > start planning for your next trip to houston , as i ' m sure your schedule  > will be getting full very soon . perhaps you could give the people in  > enron broadband an overview of the areas of interest within your research  > group . i ' m sure we could also benefit from you views of how the current  > technology is evolving .  >  > are there certain dates which would potentially work for you ? please let  > me know by email or give me a call at 713 853 4748 .  >  > looking forward to talking with you .  >  > - - stinson\",0\n\"Subject: re : testiing component var  naveen ,  as we discussed yesterday , i would like to see the results of components var  testing .  i got some from sunil today for agg - gas .  in addition if you can send me component var results for ng - price for some  date ,  as well as ng positions , forward price curve , forward volatility curve for  ng - price - prc for that  same date , i can verify the numbers .  thank you ,  tanya .\",0\n\"Subject: soma ghosh prc mid year review  tim davies has requested that i contact you regarding soma ghosh ' s prc mid  year review .  you will recall that you were asked to do a review for soma and to date this  is still outstanding . i would be grateful if you could do this at some stage  today as our review meeting will be held tomorrow .  thank you for your assistance  claire dunnett  37462\",0\n\"Subject: career opportunities @ enron  - - - - - - - - - - - - - - - - - - - - - - forwarded by jens gobel / corp / enron on 03 / 15 / 2000 09 : 51  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  gordian kemen on 03 / 15 / 2000 09 : 13 : 47 am  to : jens . gobel @ enron . com  cc :  subject : re : bei enron  hi jens ,  anbei findest du meinen cv in englisch als pdf - file .  ein treffen in austin wuerde mir gut passen . diesen feitag wegen sehr spaeter  ankunft ausgenommen , ginge es prinzipiell an beiden wochenenden . ich muesste  allerdings vorher noch abklaeren , was meine schwiegereltern konkret an events  geplant haben . wann wuerde es dir denn passen ? ich gebe dir jetzt auf jeden  fall schon mal die telefonnr . meiner in - laws : ( 512 ) 301 - 9819 , damit wir uns  nicht verpassen . bist du in austin oder mobil erreichbar ?  schoene gruesse und vielen dank fuer dein engagement .  gordian  - gordianresume . pdf  - - - - - - - - -  gordian kemen , dipl . - volksw .  universit , t mannheim | | university of mannheim  lehrstuhl f _ r finanzierung | | chair of finance  l 5 , 2  d - 68131 mannheim  germany  fon : + 49 621 181 - 1524  fax : + 49 621 181 - 1519  mailto : g . kemen @ uni - mannheim . de  - - - - - - - -\",0\n\"Subject: eim organization change  as part of enron industrial market ' s ( eim ) move into the pulp , paper and  steel markets , our european effort is well underway . our markets are global  in nature and we believe we need a strong presence in europe to penetrate  that market effectively . accordingly , we are pleased to announce that bruce  garner has been appointed president and chief executive officer of enron  industrial markets - europe . in this role , bruce will be responsible for all  activities for eim in the european market .  please join us in congratulating bruce in his new position .\",0\n\"Subject: contact - joao c . neves & enron  dear vince :  it is my understanding that ms . kate szablya ( whom you apparently  met this past week ) of power brokers has expressed to you my interest in  considering the possibility of working at enron . in addition i belive that  she has forwarded to you my cv .  my communication with ms . szablya has been less than satisfactory  for some time . therefore ms . szablya is nolonger representing me and i would  like ms . rita de claris ( whom i cc ) of de claris & associates ( 713 - 868 -  4440 ) to represent me in the future in this search . i have instructed her to  forward my cv to you once more .  forgive me for this , perhaps unusual , step but i regard highly the  opportunity of working at enron and do not feel i am being adequately  represented at present .  i look forward to hearing from you soon .  best regards  joao\",0\n\"Subject: greeting from charles  dear molly :  happy new year ! haven \u0001 , t talked to you for a while ,  hope you and your family had a great holiday . i can \u0001 , t  believe we are already in 2001 !  i remember we had talk last december , and you were  basically waiting for the response from vince , have  you heard anything back from vince yet ? since we are  already in january , i really hope we can move forward .  if you have any questions , please feel free to call me  at 918 - 409 - 4308 . thank you .  sincerely ,  charles  do you yahoo ! ?  yahoo ! photos - share your holiday photos online !  http : / / photos . yahoo . com /\",0\n\"Subject: re : interview  rahul ,  i shall be glad to meet with you . please , give me a call  when you get here .  vince  rahul kumar @ enron _ development  08 / 16 / 2000 09 : 49 am  to : vince j kaminski @ ect  cc :  subject : interview  vince ,  we had spoken a few weeks back , but were unable to meet due to our  schedules . i will be back in houston next week ( august 21 st ) , and would  appreciate the opportunity to meet with you and take your advice .  as i may have mentioned to you , i am interested in exploring opportunities  that are more us focused . i think paula corey has already forwarded my  resume to you . however , i have attached it to this note just in case .  i would really appreciate the opportunity to meet with you next week , and  would be grateful if you could let me know what time fits best with your  schedule . i look forward to hearing from you .  regards ,  rahul\",0\n\"Subject: re : guest access to enrononline  ed ,  i am glad i got it resolved . hope you will like the system .  vince  ekrapels on 02 / 18 / 2000 03 : 43 : 54 pm  to : donna greif / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : guest access to enrononline  dear donna , thanks for your help , and to vince as well . i ' ll access the site  next week , when i ' m back from a holiday weekend .  ed krapels  - - - - - original message - - - - -  from : donna greif [ mailto : donna . greif @ enron . com ]  sent : friday , february 18 , 2000 10 : 53 am  to : ekrapels @ esaibos . com  subject : guest access to enrononline  attention : esai  ed krapels  thank you for your interest in enrononline .  as requested , following is a guest password that will allow you temporary  view  only access to enrononline . please note , the user id and password are  case  sensitive .  guest user id : ena 61296  guest password : tr 84 byl 3  in order to apply for transaction status with enrononline , your company  needs to  complete a password application and registration form for a master user  account .  each master user will be able to grant various levels of access for  additional  users .  to obtain a password application and registration form , you can visit  our  website at www . enrononline . com and select the ? how to register ? link , or  call  our helpdesk at 713 / 853 - help ( 4357 ) .  we hope you will find that enrononline provides an easy and more efficient  way  to do business with enron . we look forward to transacting with you online .  sincerely ,  donna corrigan greif  enrononline helpdesk  713 / 853 - help ( 4357 )  - attl . htm\",0\n\"Subject: cal berkeley general presentation confirmation - 10 / 16 / 00  cal berkeley  general presentation  monday , october 16 th  this note is to confirm that you are scheduled to attend the cal berkeley  general presentation on monday october 16 th . this e - mail should contain any  information that you need to know pertaining to your trip . please print out  a hard copy and bring with you in case of emergency . if you have any  questions , there is a list of contacts listed below .  once again , thank you for offering to help with technology recruiting at cal  berkeley . see you on campus !  lara  the general presentation will be held :  monday , october 16 th  the faculty club  seaborg room - 2 nd floor  7 : 00 p . m . to 9 : 00 p . m .  * * please plan on arriving at the general presentation by 6 : 00 p . m .  the general presentation is designed to educate the students on enron and the  global technology track . following the presentation we will invite the  students to ask questions about enron and the global technology track .  please plan to arrive at the general presentation by 6 : 00 p . m . it is  business casual attire .  flight arrangements :  you are responsible for scheduling your own flight arrangements with your  preferred airline provider . please schedule your flight to arrive to the san  francisco airport on monday , october 16 th . please remember that there can  be significant traffic over the bay bridge and to get into town at least an  hour prior to the event . please make all flight arrangements through the  travel agency in the park so that we are able to take advantage of discount  fares . if you do not have a representative that you currently use at the  travel agency in the park - feel free to contact liz mendiola at 713 - 860 - 1140 .  rental car arrangements :  once again , you are responsible for scheduling your own rental car  arrangements with your preferred provider . your travel agency in the park  representative should be able to assist you with rental car reservations .  hotel arrangements :  hotel reservations are currently being made by our representative at the  travel agency in the park .  as soon as we have confirmation numbers , i will let you know .  san francisco airport to the faculty club  take 101 northbound  exit to san francisco / oakland bay bridge  exit to 1 - 80 east  exit on university ave .  east on university avenue for 1 . 5 miles to oxford st .  right on oxford st . , left on durant ave . , left on piedmont  you will see parking on the right side  once again , thank you so much for helping with the general presentation .  below are some last minute tips to keep in mind :  please remember to dress business casual .  please remember to bring some business cards for students .  i have attached a pdf version of the global technology track brochure .  please forward all expense receipts to grace garcia . she will handle any  expenses incurred for this recruiting trip including : flight costs , hotel ,  car , food , valet , etc . however , you must turn in some sort of receipt - so  be sure and save them !  ashley baxter work : 713 - 853 - 3589  cell : 281 - 793 - 0567  lara berry work : 713 - 345 - 8320  cell : 713 - 857 - 1034  grace garcia work : 713 - 853 - 7252  simone lewis work : 713 - 853 - 1645\",0\n\"Subject: re : follow up  dale ,  i have passed on the information you gave me but you have to realize that  i acted just as a go - between . i shall be glad to remind our new business unit  about your proposal . i have already asked a few times .  i shall be traveling this week , wed - fri . i shall be back in the office on  monday .  vince  \"\" dale nesbitt \"\" on 06 / 06 / 2000 02 : 03 : 18 am  to : \"\" vincent kaminski \"\"  cc :  subject : follow up  vince :  just wanted to make sure you know we are still vitally interested in getting  together with you and the key enron people . thanks so much for all your  help . i understand how busy you and the new person are , but i hope you are  interested enough to find a slot for us . i think it will benefit you as  well as us .  dale\",0\n\"Subject: re : from larry roberts  thanks for the referral on this matter . we want to be the best and honor our  affirmative action and accessibility responsibility to all people , so we plan  to satisfy at least the priority 1 points in the web content accessibility  guidelines put out by the world wide web consortium . in addition , we will  continue to monitor and improve as we develop new tools . thanks again  have a good weekend !\",0\n\"Subject: re : enron exotica options library  patrick ,  we have those two models in the exotica library . you need to add exotica . xll  located in o : \\ research \\ exotica \\ xll to your excel before you can use the  functions .  you can find the documentation in o : \\ research \\ exotica \\ doc .  example spreadsheets can be found in o : \\ research \\ exotica \\ .  the precedure of addin is as follows .  1 ) clik tools / addin on your excel  2 ) choose browse and got to o : \\ research \\ exotica \\ xll  3 ) select exotica . xll or its identical copy exotical . xll  4 ) answer the question \"\" copy . . . \"\" no .  5 ) click ok , then you should see exotica menu bar pop up .  if you have any more questions please let me know .  zimin  vince j kaminski  11 / 21 / 2000 08 : 06 am  to : patrick markey / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , zimin lu / hou / ect @ ect  subject : re : enron exotica options library  patrick ,  please , contact zimin lu , 713 853 6388 .  vince  patrick markey  11 / 21 / 2000 05 : 15 am  to : vince j kaminski / hou / ect @ ect  cc : patrick markey / hou / ect @ ect  subject : enron exotica options library  vince ,  i am trying to price a crack spread option utilizing either of the following  models in the exotica library :  1 . spread options by 1 - d integration - sprdopt  2 . spread options on asian spreads - asnsprd  how do i get access to these options models ? who can i visit with in the  houston group if i have any questions regarding the models . your help would  be greatly appreciated . i am located in singapore , so i would probably be  visiting with the houston personnel via e - mail .  thanks ,  pat markey  p . s . - i have access to the o : \\ research \\ exotica \\ xll \\ xll _ templates \\ directory ;  however , there are no macros associated with the programs that i can find .  also , i don ' t have access to the m : drive . please let me know where to find  these options models .\",0\n\"Subject: research allocations to egm  hi becky ,  vince and i came up with these allocations for all of egm :  gary hickerson  rate & currency trading 10 . 0 %  agriculture trading  & origination 27 . 5 %  jeff shankman  weather 20 %  insurance 30 %  oil 7 . 5 %  coal 2 . 5 %  freight 2 . 5 %  total 100 %\",0\n\"Subject: re : efa meetings  hey vince ,  thanks for your reply . i ' ll see what becomes of the session and keep you  informed . as to the paper , tim crack and i have a revised version of the  paper i gave you . we have since found out that by using certainty  equivalence , our model is more robust . for example , if one has an asset  pricing model that incorporates mean , variance , and skewness ( harvey and  siddique , jf june , 2000 ) and a binomial model that incorporates mean ,  variance , and skewness ( johnson , paulukiewicz , and mehta , rqfa , 1997 ) , our  model allows you to price options under the real world measure . the  benefit is that one can take all of the model parameters from historical  data that is non - risk neutralized .  from a pricing perspective , there isn ' t a tremendous benefit in a  mean - variance world ( variance stays the same in risk neutral or risky  measure ) . however , in the mean - variance - skewness world , there is a benefit  because we do not believe ( although we ' re still hunting down an appropriate  cite ) skewness is the same under risk - neutral and risky measure . given we  can only measure the skewness in our risky world , our model becomes much  more significant .  i would certainly appreciate comments on the version of the paper you  have and would also pass on the new version of the paper if you would like  to see it .  thanks again ,  tom\",0\n\"Subject: research family outing and volleyball game  hello everyone :  start practicing ! we are going to have an outing and volleyball game for  the research employees and their families ! .  details are as follows :\",0\n\"Subject: 2000 projects  in order to better understand the research group , can i get a list of  projects that your group works on during 2000 ? were these projects budgeted  for separately in 2000 ? if the answer is yes , can we do a comparison  analysis on these projects ( actual vs plan ) ? based on the 2001 plan , i do  not think we budgeted by project , but i have to ask . . . if you have any  questions , please call me at 5 - 7094 . thanx .\",0\n\"Subject: re : petronas benchmarking visit  khairuddin ,  yes , it ' s correct . we have experienced problems replying to a number of  messages  sent by your organization ( not just your e - mail address ) . i shall send you  the list of people  who will attend the meeting at a later day . we shall have representatives  from the crude and lng trading  desks , research and risk control .  could you , please , resend me the list of your delegates .  vince  i have invited a number  khairuddinbmjaafar @ petronas . com . my on 01 / 19 / 2001 02 : 53 : 53 am  please respond to khairuddin _ mjaafar @ petronas . com . my  to : vkamins @ ect . enron . com  cc :  subject : re : petronas benchmarking visit  vince ,  it was brought to my attention that something was wrong with my ' reply to : '  function of my email resulting in difficulties to reply to my email .  below is the e - mail that i ' ve sent to you earlier and i believe this  time , i will receive your reply .  thanks ,  regards ,  khairuddin  to : vince . j . kaminski @ enron . com  cc :  subject : re : petronas benchmarking visit ( document link : khairuddin b m  jaafar )  vince ,  thank you for your prompt reply . we have received your fax earlier this  morning . fyi , we shall be sending you the questionaires by next week as we  are going through the final draft this week . could you please tell me who  will be joining the discussion during our visit ? thanks .  regards ,  khairuddin  disclaimer : this e - mail and any files transmitted with it ( \"\" message \"\" )  is intended only for the use of the recipient ( s ) named above and may  contain confidential information . you are hereby notified that the  taking of any action in reliance upon , or any review , retransmission ,  dissemination , distribution , printing or copying of this message or any  part thereof by anyone other than the intended recipient ( s ) is strictly  prohibited . if you have received this message in error , you should  delete this message immediately and advise the sender by return e - mail .  opinions , conclusions and other information in this message that do not  relate to the official business of petronas or its group of companies  shall be understood as neither given nor endorsed by petronas or any of  the companies within the group .  ( embedded image moved to file : pic 24393 . pcx )  - pic 24393 . pcx\",0\n\"Subject: re : spring 2001 schematic  david ,  i am an adjunct professor at rice . can i get access to  embanet ?  vincent kaminski  managing director - research  enron corp .  1400 smith street  room ebl 962  houston , tx 77002 - 7361  phone : ( 713 ) 853 3848  fax : ( 713 ) 646 2503  e - mail : vkamins @ enron . com  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 23 / 2001  05 : 26 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  kathy spradling on 01 / 23 / 2001 03 : 03 : 05 pm  to : vince . j . kaminski @ enron . com  cc :  subject : re : spring 2001 schematic  mr . kaminski ,  you will need to speak with david kilgore at kilgore @ rice . edu or by calling  david at 713 - 348 - 5378 regarding getting set up in embanet and if you can  have access from the outside .  kathy  at 02 : 40 pm 1 / 23 / 01 - 0600 , you wrote :  > you will need to speak with david kilgore  > at kilgore @ rice . edu or by calling david at 713 - 348 - 5378 .  kathy m . spradling  mba program coordinator  jesse h . jones graduate school of management  rice university  6100 main street , ms 531  houston , texas 77005 - 1892  phone : ( 713 ) 348 - 3313  fax : ( 713 ) 348 - 5251  email : spradlin @ rice . edu  http : / / www . rice . edu / jgs  e - mail : spradlin @ rice . edu  http : / / www . ruf . rice . edu / ~ jgs /\",0\n\"Subject: associate prc , martin lin  dave ,  you are representing martin lin , an associate currently in the research  group , at the mid - year prc . we would like to promote martin to a manager  position in the research group , so you will need to nominate him for  promotion at the prc meeting for us .  martin has spent the last four months supporting ebs . his primary project  has been development of a simulation model for analyzing the capability of  the media - cast product running on the ebs network . this type of analysis is  critical to understanding what types of bottlenecks we might encounter in  trying to service , for example , the blockbuster deal . martin has already  come up to speed so that he is able to largely replace an expensive  contractor from lucent who is under contract to support this modelling  effor . prior to supporting ebs , martin used his engineering skills ( b . s .  caltech , ph . d . u . of texas in ee ) to create models of regional power  transmission networks in order to better understand possible congestion  constraints .  in our internal pre - ranking meeting we felt that martin was deserving of a  rating of superior due to his technical excellence , his excellent attitude  and work ethic , and his ability to move projects forward with minimal  supervision .  regards ,  stinson\",0\n\"Subject: re : pound sterling economic analysis 30 august 2000  - - - - - - - - - - - - - - - - - - - - - - forwarded by leann walton / na / enron on 10 / 26 / 2000 10 : 54  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  maureen raymond  09 / 11 / 2000 04 : 01 pm  to : trena mcfarland / lon / ect @ ect @ enron  cc :  subject : re : pound sterling economic analysis 30 august 2000  thanks ,  i hope everything is fine in ny !  say hello to the big apple for me .  regards ,  maureen  p . s . i still owe you sushi ! ! ! i worked until 7 : 30 p . m . on that friday in  london when i invited  you out for drinks . by the time i called you were gone for the day . sorry .  trena mcfarland @ ect  09 / 08 / 2000 03 : 39 pm  to : maureen raymond / hou / ect @ enron  cc :  subject : re : pound sterling economic analysis 30 august 2000  this was a great summary !  t\",0\n\"Subject: interview schedule for jeff lei he  attached please find the interview packet for the above - referenced person .  the interview will happen friday july 14 , 2000 . please print all three  documents for your hard copies . if you have any questions , or conflicts of  schedule , please do not hesitate to contact me .  sean  58701\",0\n\"Subject: sap id - here it is ! ! ! ! !  the following sap id and password allows you to access pay , benefit , and  personal data via ehronline . do not provide this id / password to anyone as it  enables modification to direct deposit account information .  the sap system and ehronline will be available beginning  friday , june 23 at 8 : 00 am for time entry .  full sap functionality for financials will be available on july 5 , 2000 .  you will be asked to change your password at the initial logon . your new  password should meet the following criteria :  must be 6 - 8 characters long  can include numbers and letters  can not include ' enron ' in your password .  the system will require you to change your password every 90 days .  the following address will connect you to ehronline beginning friday , june 23  at 8 : 00 am , http : / / ehronline . enron . com  ( must use internet explorer , version 4 . 01 or higher to access this link . )  how do i get help ? :  sap support :  call the coe sap hotline at 713 - 345 - 4 sap ( 4727 ) .  for quick reference tools , security request processes , after hours contact  information and other general information , go to the coe web site via  internet explorer using the following url address :  http : / / sap . enron . com / coe  for troubleshooting and go - live tips , go to the following web site , via  internet explorer , using the following url address :  http : / / sap . enron . com / coe  click on sap , then click on troubleshooting and go - live tips  training :  contact your site manager if you were not able to attend a sap training  class , and would like to attend one ,  for approval and role assignment .  for interactive web based training for ehronline time entry , go to the  following web site , via internet explorer ,  using the following url address :  select the \"\" new users click here to register \"\" link\",0\n\"Subject: visit with vince kaminski on may 4 th  carol :  for your information and susan ' s , christie patrick will not be available on  the  4 th of may . she will be out of the city . maybe susan can contact her  directly  at another time .  i still have 1 : 30 as the time for vince and susan to meet .  thanks !  shirley crenshaw  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 09 / 2001  03 : 30 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  shirley crenshaw  04 / 09 / 2001 11 : 14 am  to : susan . hansen @ stanford . edu  cc :  subject : visit with vince kaminski on may 4 th  good morning susan :  vince forwarded the below message to me and after looking over his  calendar , he appears to be free most of the afternoon on the 4 th of may .  please let me know what would be a good time for you and i will block  it out before someone else gets it .  thanks !  shirley crenshaw  administrative coordinator  enron research group  713 - 853 - 5290  email : shirley . crenshaw @ enron . com  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 09 / 2001  11 : 05 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  04 / 06 / 2001 05 : 36 pm  to : \"\" susan c . hansen \"\" @ enron  cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect  subject : re : visit from stanford ?  susan ,  thank you for your message . i shall be glad to meet with you on may the 4 th .  i shall ask my assistant , shirley crenshaw ( 713 ) 853 5290 , to call you to set  up the meeting .  also , for your information , we have recently set up a special unit to  coordinate enron ' s  relationships with the universities . the person running this unit is christie  patrick .  please , feel free to contact her and give my name as a reference . i shall  coordinate the meeting  on may the 4 th with her .  vince  additional information re christie :  phone : ( 713 ) 853 - 6117  email : christie _ patrick @ enron . com  \"\" susan c . hansen \"\" on 04 / 03 / 2001 04 : 33 : 54 pm  to : vkamins @ enron . com  cc :  subject : visit from stanford ?  dear dr . kaminski ,  let me briefly introduce myself , i am the director of corporate relations  for the school of engineering at stanford university . in this role , i am  always on the watch for ways to bring our faculty together with companies  that have an appetite for engagement with top tier research institutions .  i believe you know hill huntington , who is a senior researcher with  stanford ' s energy modeling forum . he suggested i get in touch with you for  some ideas about contacts at enron . i ' m in the process of planning a trip  to texas in early may along with my colleague donna lawrence , the  university ' s director of corporate relations . we were hoping to be able to  include a stop at enron on our itinerary . right now it appears that friday ,  may 4 th would work best for us but we ' re at the very beginning of our trip  planning .  the purpose of our visit would be to review the current relationship  between enron and stanford , to give you an overview of current priorities  in the school of engineering , and ask for your help in identifying the best  points of contact .  i look forward to hearing from you about your availability ,  sincerely ,  susan hansen  susan c . hansen  director , corporate relations  school of engineering  stanford university  stanford , ca 94305 - 4027  ( 650 ) 725 - 4219\",0\n\"Subject: re : joao neves  thank you vince . i look forward to speaking with you tomorrow , and in  meeting you on april 13 th !  regards ,  kate szablya  power brokers , llc  energy search and recruitment  303 - 716 - 2987  303 - 619 - 7589 cell  303 - 716 - 3426 fax  www . powerbrokersllc . com\",0\n\"Subject: followup from iris mack  hi ,  thank you for your email . i am indeed interested in exploring  opportunities in your group - research ( quantitative modeling ) .  just a note to let you know that i am not in the pure quantitative  research  group here at bnp paribas - but in the derivatives structured products . i do  some of my own modeling and basic excel programming . i used to do a lot of  fortran programming . however , i am not a very good c / c + + programmer .  hope this gives you further details about my skills and interests .  thank you ,  iris  in  iris ,  at this point it ' s my group : research , i . e . quantitative modeling .  please , let me know what your interests are and i shall try to line up  other groups for the interview .  vince  iris . mack @ bnpparibas . com on 06 / 09 / 2000 02 : 33 : 50 am  to : vince . j . kaminski @ enron . com  cc :  subject : re [ 10 ] : greetings from london ( to enron )  hi ,  i will be out of the country until wednesday afternoon - london time .  maybe we can chat then .  also , could you please tell me about the group ( s ) that are interested  in  speaking with me .  thanks ,  iris  internet  from : vince . j . kaminski @ enron . com on 06 / 06 / 2000 20 : 31 gmt  to : iris mack  cc : vince . j . kaminski  bcc :  subject : re : re [ 8 ] : greetings from london ( to enron )  iris ,  leaving for ca in a few minutes . i shall get back to you monday .  vince  iris . mack @ bnpparibas . com on 06 / 06 / 2000 10 : 36 : 46 am  to : vince . j . kaminski @ enron . com  cc :  subject : re [ 8 ] : greetings from london ( to enron )  hi ,  thanks for your email . begining of july - what about july 4 th week ?  could you give me a bit more info regarding the best days for you and  your  colleagues .  thanks ,  iris  internet  from : vince . j . kaminski @ enron . com on 06 / 06 / 2000 14 : 29 gmt  to : iris mack  cc : vince . j . kaminski  bcc :  subject : re : re [ 6 ] : greetings from london ( to enron )  iris ,  the beginning of july would be better for us . please , let me know what  is your availability .  vince  iris . mack @ bnpparibas . com on 06 / 06 / 2000 02 : 30 : 49 am  to : vince . j . kaminski @ enron . com  cc :  subject : re [ 6 ] : greetings from london ( to enron )  hi ,  thank you for your email . how many days do we need ?  i have checked my calendar . and think that i should be able to come on  monday june 19 th ( tuesday june 20 th - if you need more than one day ) . .  i can fly from london to houston during the following weekend to  arrive in  time for monday morning .  let me know if these days are good for you and your colleagues .  regards ,  iris  internet  from : vince . j . kaminski @ enron . com on 25 / 05 / 2000 18 : 33 gmt  to : iris mack  cc : vince . j . kaminski  bcc :  subject : re : re [ 4 ] : greetings from london ( to enron )  iris ,  we can invite you for an interview to houston .  what would be a the time for you ?  vince  iris . mack @ bnpparibas . com on 05 / 25 / 2000 11 : 32 : 04 am  to : vince . j . kaminski @ enron . com  cc :  subject : re [ 4 ] : greetings from london ( to enron )  hi ,  thank you for your prompt response . i am interested in any contacts  you  may have in your rolodex .  also , i would be opened to talk to enron as well . please let me know  more  details .  kind regards ,  iris  internet  from : vince . j . kaminski @ enron . com on 25 / 05 / 2000 16 : 19 gmt  to : iris mack  cc : vince . j . kaminski , stinson . gibner , grant . masson ,  pinnamaneni . krishnarao ,  vasant . shanbhogue  bcc :  subject : re : re [ 2 ] : greetings from london ( to enron )  iris ,  i shall go through my rolodex and try to find some good leads for you . i  left  investment banking 8 years ago and this field changes very fast .  alternatively , would you be interested in a company like enron  or another energy company in houston ?  please , let me know .  vince  iris . mack @ bnpparibas . com on 05 / 25 / 2000 09 : 20 : 01 am  to : vince . j . kaminski @ enron . com  cc :  subject : re [ 2 ] : greetings from london ( to enron )  hi ,  how are you ? thank you kindly for your email . sorry i have not  responded  sooner .  currently i am working in derivatives structured products and risk  management at bnp paribas in london . although i currently enjoy living and  working in london , i may need to return to the states - because of my  mother ' s  failing health .  do you know of any good contacts at investment banks that i may  forward my  details to ?  for your information , i have attached my cv . ( please see attached  file :  iris marie mack . doc ) .  thank you in advance for your time and consideration .  kind regards ,  iris mack  44 ( 0 ) 20 7595 8665 ( work )  44 ( 0 ) 20 7229 9986 ( home )  ( see attached file : iris marie mack . doc )  internet  from : vince . j . kaminski @ enron . com on 04 / 04 / 2000 15 : 03 gmt  to : iris mack  cc : vince . j . kaminski  bcc :  subject : re : greetings from london ( to enron )  iris ,  please , feel free to give me a call when you have a few minutes .  i shall be glad to chat with you .  vince  iris . mack @ paribas . com on 03 / 30 / 2000 02 : 24 : 27 am  to : vkamins @ enron . com  cc : denis . autier @ paribas . com  subject : greetings from london ( to enron )  dear dr . kaminski ,  how are you ? it was nice to meet you at the real options conference  in  nyc .  i was intrigued by some of the comments in your conference talk . in  particular , by your use of real options to hedge financial options . this  is  something i am interested in as well .  when you have some time , could we chat about this topic in a bit more  detail ?  thanks for your time and consideration . hope to hear from you soon .  regards ,  iris mack  - - - - - - - - - - - - - - - -  this message is confidential ; its contents do not constitute a  commitment by bnp paribas group * except where provided  for in a written agreement between you and bnp paribas group * .  any unauthorised disclosure , use or dissemination , either  whole or partial , is prohibited . if you are not the intended  recipient of the message , please notify the sender immediately .  * bnp paribas group is a trading name of bnp sa and paribas sa  ce message est confidentiel ; son contenu ne represente en  aucun cas un engagement de la part du groupe bnp paribas *  sous reserve de tout accord conclu par ecrit entre vous et le  groupe bnp paribas * . toute publication , utilisation ou diffusion ,  meme partielle , doit etre autorisee prealablement . si vous n ' etes  pas destinataire de ce message , merci d ' en avertir immediatement  l ' expediteur .  * le groupe bnp paribas est le nom commercial utilise par bnp sa et paribas  sa  ( see attached file : iris marie mack . doc )  ( see attached file : iris marie mack . doc )  ( see attached file : iris marie mack . doc )  ( see attached file : iris marie mack . doc )  ( see attached file : iris marie mack . doc )  - iris marie mack . doc\",0\n\"Subject: re : congratgulations  thanks vince , and congratulations on your promotion too .  vince j kaminski  01 / 11 / 2000 04 : 02 pm  to : harry arora / hou / ect @ ect  cc :  subject : congratgulations  harry ,  congratulations . well deserved .  vince\",0\n\"Subject: uoft  rick ,  thanks for your message . i shall talk to greg whalley about his  participation .  vince\",0\n\"Subject: re : mission impossible - hr associate groups recommendation and  next steps  david ,  no problem . we shall send the required fire power .  the person who will attend is amitava dhar .  vince  p . s . amitava , please , take note .  david oxley  09 / 26 / 2000 11 : 38 am  to : andrea yowman / corp / enron @ enron , bob sparger / corp / enron @ enron , gerry  gibson / corp / enron @ enron , tim o ' rourke / corp / enron @ enron , ted c  bland / hou / ect @ ect , vince j kaminski / hou / ect @ ect  cc : daniel brown / na / enron @ enron , tana cashion / na / enron @ enron , rhonna  palmer / hou / ect @ ect , cindy olson / corp / enron @ enron  subject : mission impossible - hr associate groups recommendation and next  steps  rhonna ,  please arrange a meeting later this week for all of those addressed by this  message ( vince , it would great if one of your team could attend since we will  need some heavy statistical and analytical help to complete this project ) .  the prupose of the meeting will be to discuss and delegate next steps  required to implement the hr associate groups recommendations for the  development of an hr \"\" value index \"\" at enron .  i would anticipate we will need approx 45 minutes .  david\",0\n\"Subject: iso new england and pjm propose standard market design  message sent from the pjm - customer - info mailing list at  pjm - customer - info @ majordomo . pjm . com :  iso new england and pjm interconnection propose a  standard market design for wholesale electricity markets  march 29 , 2001 - holyoke , ma - two of the country ' s leading wholesale  electricity market administrators , iso new england inc . and pjm  interconnection ,  l . l . c . , together with alstom esca corporation , a systems developer for  electric  utilities , today announce their intent to formalize an agreement that will not  only standardize their electricity markets , but will lead , they believe , to  the  standardization of wholesale electricity markets across the country .  today , iso new england delivered a letter to the chairman and commissioners of  the federal energy regulatory commission ( ferc ) , enclosing a report concerning  its proposed comprehensive wholesale market program that combines salient  features of the pjm market model with elements of its own existing wholesale  market design . the combination would create a standardized wholesale market  structure called the standard market design for wholesale electricity markets  ( \"\" standard market design \"\" ) .  iso new england , alstom esca and pjm , acting through its wholly - owned  subsidiary , pjm technologies inc . , have agreed to proceed with the negotiation  of an agreement where iso new england will purchase the existing pjm market  design and certain software components from alstom esca and pjm . the two isos  and alstom esca will work together to create a standardized market design that  includes solutions to reserve markets and a common solution to unit dispatch .  \"\" this new market standard should put into place the necessary market  improvements more quickly and at a reduced cost than if we were to implement a  customized market system for new england , \"\" said william w . berry , chairman and  acting ceo of iso new england . \"\" now is the time to stop the experimentation .  ultimately , we hope the standard market design will serve as the benchmark for  wholesale electricity marketplaces across the country , if not around the  world . \"\"  \"\" pjm is very excited to further standardize a design for a competitive  wholesale  electricity market , \"\" said phillip g . harris , chairman and ceo of pjm . \"\" along  with the progress in the implementation of the pjm west concept , this  initiative  will provide an even broader standardized market design . \"\"  this approach should further expedite the elimination of trading barriers  across  different markets and promote ferc ' s goal of creating a seamless marketplace .  \"\" we intend to continue to work with the new york iso on issues of mutual  importance , \"\" stated mr . berry . \"\" this new market design , together with our  efforts to address the market \"\" seams \"\" and other coordination issues , will  eventually bring the three northeast iso markets closer together . \"\" iso new  england and the new york iso will continue to work together on these issues  under a joint board resolution passed on january 16 , 2001 .  \"\" because of our geographic location , new york is in the center of the  northeast  markets , with iso new england , pjm and imo each on one of our borders . we  support the continued elimination of barriers across northeast trading markets  to develop a more seamless marketplace where everyone will benefit , \"\" said  william j . museler , president and ceo of the new york independent system  operator . \"\" the new york iso will continue to work with our neighboring markets  to remove barriers to trading across the region and to move towards larger  regional markets . \"\"  this proposed market design standard will be developed jointly with  stakeholder  input . iso new england will propose the standard market design to the new  england conference of public utility commissioners and the new england power  pool in a series of meetings next week . additional meetings will be conducted  in the next few weeks . the standard market design for new england will be  subject to ferc approval .  \"\" standardization requires consistent and reliable technology to facilitate a  market ' s efficiency . a market that moderates price fluctuations and  encourages  investment based on an expected return is an efficient market - - and  efficiency  is the key to establishing market liquidity , \"\" said alain steven , ceo of alstom  esca . \"\" in the future , this agreement will be viewed as a catalyst in  establishing more robust electricity markets . \"\"  iso new england inc . is the not - for - profit corporation responsible for the  day - to - day reliable operation of new england ' s bulk generation and  transmission  systems with an installed capacity of almost 26 , 000 megawatts . in addition to  operating the bulk power grid , iso new england is the administrator of the  region ' s wholesale electricity marketplace and the open access transmission  tariff on behalf of the new england power pool . iso new england is based in  holyoke , massachusetts .  the pjm interconnection , l . l . c . , is an independent system operator ,  administering the pjm open access transmission tariff and operating the pjm  energy markets and capacity markets . pjm currently administers the largest  wholesale electricity market in the world and has a membership of more than  200 .  it is headquartered in norristown , pennsylvania . pjm technologies , inc . is a  wholly - owned subsidiary of pjm interconnection , l . l . c . , designed to respond to  market opportunities by bringing cost - effective , reliable solutions to the  energy marketplace . it was created to commercialize pjm ' s knowledge capital ,  experience , and proven success in electric energy markets , system operations ,  and applications development .  # # #  for more information about the new york iso , please call : steve sullivan ,  director of communications , 518 - 356 - 7605 .  please do not reply to this message . if you have a question for pjm customer  relations and training , please complete and submit this form :  to unsubscribe from this list , send an e - mail to majordomo @ majordomo . pjm . com  containing only the following line in the body of the e - mail :  unsubscribe pjm - customer - info\",0\n\"Subject: personnel announcement  jordan h . mintz has been named vice president & general counsel for enron  global finance and will be leaving the enron north america tax group .  stephen h . douglas , sr . director , will head up tax services for ena . steve  came to ena ' s tax planning group from the charlotte , north carolina firm  fennebresque , clark , swindell & hay in may , 1998 . he was previously  affiliated with the skadden , arps law firm in new york city . steve received  his bs degree in finance and mathematics from trinity university ( 1987 ) , his  jd from the university of texas school of law ( 1990 ) and his llm in taxation  from the new york university school of law ( 1993 ) .  please join me in congratulating jordan and steve in their new roles .  robert j . hermann , managing director & general tax counsel\",0\n\"Subject: re : summer internship  thanks dr . kaminski ,  i forgot that : - )  i ' ll understand it as  i may identify work that i think will be  beneficial to both of us .  actually ,  i have more ideas on the work , beyond the suggestion .  i ' ll work on it and send it in more formal way again .  ( i mean , work list , schedule , deliverables etc )  i ' ll take steps to get work permit for those two months .  and please tell me know what you can support  and what i should start to do to find a place to stay ,  rent a car etc .  warm regards ,  jinbaek  ps . and thanks for forwarding the message .  jinbaek kim  ph . d candidate  dept . of industrial engineering and operations research  u . c . berkeley  http : / / www . ieor . berkeley . edu / ~ jinbaek  go bears !  : \"\" ' . _ . . - - - . . _ . ' \"\" ; ` . . ' . ' ` .  : a a : _ _ . . . . . _  : _ . - 0 - . _ : - - - ' \"\" \"\" ' \"\" - . . . . - - ' \"\" ' .  : . ' : ` . : ` , ` .  ` . : ' - - ' - - ' : . ' ; ;  : ` . _ ` - ' _ . ' ; . '  ` . ' \"\" ' ;  ` . ' ;  ` . ` : ` ;  . ` . ; ; : ;  . ' ` - . ' ; : ; ` .  _ _ . ' . ' . ' : ; ` .  . ' _ _ . ' . ' ` - - . . _ _ _ . _ . ' ; ;  ` . . . . . . ' . ' ` ' \"\" \"\" ' ` . ' ; . . . . . . - '  ` . . . . . . . - ' ` . . . . . . . . '  on thu , 22 mar 2001 vince . j . kaminski @ enron . com wrote :  >  > jinbaek ,  >  > the answer to the lst question is yes .  > the project list is fine with me and is still valid . we are an organization  > driven by the needs of our internal customers .  >  > i shall froward your message to the person in ebs .  > hopefully , we shall get a positive response .  >  >  > vince  >  >  >  >  >  > jinbaek kim on 03 / 15 / 2001 01 : 12 : 32 am  >  > to : vince . j . kaminski @ enron . com  > cc :  > subject : summer internship  >  >  > dr . kaminski ,  >  > sorry for the late response ,  > it took me some time to coordinate things .  > finally , it ' s almost dont : - )  > it turned out that from june to august  > will be best for me for work at enron  > ( say june . 4 to august . 4 )  >  > but i still need to know several things from your side .  > could you answer following questions ?  >  > first :  > is my suggested working period is ok with you ?  > if so , let me know what to do for settlement  > during the period .  >  > second :  > i got a list of work , i might be able to do for  > dealbench team from ross and suresh .  > i ' d like to know it is still a valid work list :  > the list he sent is as following :  >  > > 1 . write a paper in layman ' s terms that answers  > > questions like the following :  > > benefits of auctioning online for both buyers and  > > sellers , particularly in reverse auctions  > > explanation how multi - variable auctions are not  > > as efficient as price - only auctions ( is this true ? )  > > how many participants are recommended for a  > > successful live auction  > > what types of goods and services are best suited  > > for live auctions versus sealed bid quotes  > > opinions on lotting strategies  > > trends in online private auctions  >  > > 2 . identify appropriate recent auction research ( 3  > > or 4 papers out of the 90 + you provided ) and obtain approvals from the  > > authors to post on our site  >  > > 3 . create a list / bibiliography of relevant auction  > > literature ( with hyperlinks ? )  >  > > 4 . would you be willing to offer auction consulting  > > services to our customers ( if they are interested )  >  > third :  > there is an e - procurement forum at haas school of business ,  > in may 22 . the chair of the forum is my advisor prof . arie segev .  > a person from wells fargo bank will talk about wells fargo ' s role  > in e - marketplace payment initiative ,  > where enron broadband services is also one of key players  > along with citibank .  > he asked me whether you can contact a person at  > enron broadband services , who ' s related to the initiative .  > he wants to know whether we will have a speaker from enron  > to see enron ' s perspective , in the forum .  >  > here is a link to news related to the initiative ,  >  > http : / / www . internetweek . com / story / inw 20000808 so 001  >  > fourth :  > my advisor wants to know whether  > there could be any opportunity to do a case study ,  > regarding enron ' s business .  > he is interested in e - procurement and e - marketplaces .  > business model and system architecture . . .  >  > thanks for reading this long email .  > i ' ll look forward to your answer . .  > i am sorry for giving you so much burden  > to answer those questions possibly not easy to answer .  >  > warm regards ,  > jinbaek  >  > - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  > jinbaek kim  > ph . d candidate  > dept . of industrial engineering and operations research  > u . c . berkeley  > http : / / www . ieor . berkeley . edu / ~ jinbaek  >  > go bears !  >  > : \"\" ' . _ . . - - - . . _ . ' \"\" ; ` . . ' . ' ` .  > : a a : _ _ . . . . . _  > : _ . - 0 - . _ : - - - ' \"\" \"\" ' \"\" - . . . . - - ' \"\" ' .  > : . ' : ` . : ` , ` .  > ` . : ' - - ' - - ' : . ' ; ;  > : ` . _ ` - ' _ . ' ; . '  > ` . ' \"\" ' ;  > ` . ' ;  > ` . ` : ` ;  > . ` . ; ; : ;  > . ' ` - . ' ; : ; ` .  > _ _ . ' . ' . ' : ; ` .  > . ' _ _ . ' . ' ` - - . . _ _ _ . _ . ' ; ;  > ` . . . . . . ' . ' ` ' \"\" \"\" ' ` . ' ; . . . . . . - '  > ` . . . . . . . - ' ` . . . . . . . . '  >  >  > on mon , 5 mar 2001 vince . j . kaminski @ enron . com wrote :  >  > >  > > jinbaek ,  > >  > > this is fine though you are welcome to spend more  > > time with us this summer .  > >  > > vince  > >  > >  > >  > >  > >  > > jinbaek kim on 03 / 04 / 2001 03 : 45 : 40 pm  > >  > > to : vince . j . kaminski @ enron . com  > > cc :  > > subject : re : summer internship  > >  > >  > > dr . kaminski ,  > >  > > thanks for your answer .  > > before i tell you the time frame ,  > > i ' ll need to talk with my advisor , first .  > > because here is an on - going - project .  > > i need to coordinate the schedule .  > >  > > i ' ll appreciate it if you understand my situation ,  > > and give me some time ( less than a week , of course ) .  > >  > > for your reference ,  > > probably  > > the dates i ' d like to ask you will be  > > from mid - may to mid - july ( 2 months )  > >  > > warm regards ,  > > jinbaek  > >  > > - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  > > jinbaek kim  > > ph . d candidate  > > dept . of industrial engineering and operations research  > > u . c . berkeley  > > http : / / www . ieor . berkeley . edu / ~ jinbaek  > >  > > go bears !  > >  > > : \"\" ' . _ . . - - - . . _ . ' \"\" ; ` . . ' . ' ` .  > > : a a : _ _ . . . . . _  > > : _ . - 0 - . _ : - - - ' \"\" \"\" ' \"\" - . . . . - - ' \"\" ' .  > > : . ' : ` . : ` , ` .  > > ` . : ' - - ' - - ' : . ' ; ;  > > : ` . _ ` - ' _ . ' ; . '  > > ` . ' \"\" ' ;  > > ` . ' ;  > > ` . ` : ` ;  > > . ` . ; ; : ;  > > . ' ` - . ' ; : ; ` .  > > _ _ . ' . ' . ' : ; ` .  > > . ' _ _ . ' . ' ` - - . . _ _ _ . _ . ' ; ;  > > ` . . . . . . ' . ' ` ' \"\" \"\" ' ` . ' ; . . . . . . - '  > > ` . . . . . . . - ' ` . . . . . . . . '  > >  > >  > > on fri , 2 mar 2001 vince . j . kaminski @ enron . com wrote :  > >  > > >  > > > jinbaek ,  > > >  > > > you can coordinate the details with me .  > > > let me know what the time frame is for you  > > > and we shall send you an appropriate offer .  > > >  > > > vince  > > >  > > >  > > >  > > >  > > >  > > > jinbaek kim on 03 / 02 / 2001 04 : 43 : 06 pm  > > >  > > > to : vince . j . kaminski @ enron . com  > > > cc :  > > > subject : re : summer internship  > > >  > > >  > > > dr . kaminski ,  > > >  > > > thank you very much .  > > > of course , i ' ll be happy to have an opportunity  > > > to work at such a wonderful company .  > > > i was contacting with surech raghavan at deal bench team ,  > > > and was going to express my appreciation to you again  > > > after settling down process with them .  > > >  > > > for the period of working ,  > > > i still need to coordinate with my advisor and  > > > may need to adjust according to that .  > > > but anyway , i ' ll try to coordinate smoothly .  > > >  > > > please let me know whether i should keep contacting  > > > with deal bench team ,  > > > for working period and  > > > for misc . living support such as finding a place , rent a car , etc .  > > >  > > > i appreciate you so much again ,  > > > for arranging such meetings and giving me an opportunity .  > > > all this opportunity will not be available to me ,  > > > without your kind help .  > > >  > > > warm regards ,  > > > jinbaek  > > >  > > > - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  > > > jinbaek kim  > > > ph . d candidate  > > > dept . of industrial engineering and operations research  > > > u . c . berkeley  > > > http : / / www . ieor . berkeley . edu / ~ jinbaek  > > >  > > > go bears !  > > >  > > > : \"\" ' . _ . . - - - . . _ . ' \"\" ; ` . . ' . ' ` .  > > > : a a : _ _ . . . . . _  > > > : _ . - 0 - . _ : - - - ' \"\" \"\" ' \"\" - . . . . - - ' \"\" ' .  > > > : . ' : ` . : ` , ` .  > > > ` . : ' - - ' - - ' : . ' ; ;  > > > : ` . _ ` - ' _ . ' ; . '  > > > ` . ' \"\" ' ;  > > > ` . ' ;  > > > ` . ` : ` ;  > > > . ` . ; ; : ;  > > > . ' ` - . ' ; : ; ` .  > > > _ _ . ' . ' . ' : ; ` .  > > > . ' _ _ . ' . ' ` - - . . _ _ _ . _ . ' ; ;  > > > ` . . . . . . ' . ' ` ' \"\" \"\" ' ` . ' ; . . . . . . - '  > > > ` . . . . . . . - ' ` . . . . . . . . '  > > >  > > >  > > > on fri , 2 mar 2001 vince . j . kaminski @ enron . com wrote :  > > >  > > > > hello ,  > > > >  > > > > sorry for a delay in getting back to you .  > > > > we would like very much to offer you a summer internship .  > > > >  > > > > please , let me know if you are interested .  > > > >  > > > > vince kaminski  > > > >  > > > >  > > >  > > >  > > >  > > >  > > >  > > >  > >  > >  > >  > >  > >  > >  >  >  >  >  >  >\",0\n\"Subject: re : ibuyit user set up  diane :  we have had quite a few problems with this ibuyit procedure . i have submitted several invoices for payment since may lst and  have reveived none of them back for coding and approval . i am afraid the vendors are going to be coming after us !  we also have had approval problems . i submitted a hardware request and it went to every manager in our group . i think we  have finally gotten that straightened out for the present .  the requestors and coders would be :  shirley crenshaw  anita dupont  kevin moore  the only approved for our group is vince j . kaminski ( co 0413 - cc 107043 )  if you need anything else , please let me know .  shirley  - - - - - original message - - - - -  from : fellers , diane r .  sent : thursday , may 10 , 2001 4 : 56 pm  to : kaminski , vince j .  cc : crenshaw , shirley  subject : fw : ibuyit user set up  vince ,  per the request below , i need a list of people you would like to serve as approvers and requestors for the research group for the ibuyit program . of course , they want this as soon as possible . please let me know who you would like to include .  thanks ,  diane  x 5 - 7996  - - - - - original message - - - - -  from : vandor , david  sent : thursday , may 10 , 2001 4 : 18 pm  to : fellers , diane r . ; guilliams , lisa ; heath , holly ; nguyen , vivian  cc : leschber , edie  subject : fw : ibuyit user set up  could you please gather this info for all your support departments ?  in case you don ' t know , ibuyit is the web site where employees can purchase , code , and approve invoices for items online .  thanks ,  david  - - - - - original message - - - - -  from : day , misti  sent : thursday , may 10 , 2001 3 : 43 pm  to : becton , pam ; brown , sarah ; cameron , marlene ; carter , carol ; coffey jr . , jim ; davis , angelic ; dawson , brian ; east , laynie ; fredericks , kristi ; hanslip , david ; hardy , stacy ; hardy , trey ; harris , paula ; helton , susan ; killen , faith ; lamb , marnie ; leschber , edie ; long , lindsay ; mayeux , cassandra ; orsak , susie ; patterson , grant ; pierce , jody ; schwertner , brian ; vandor , david ; vargas , hope ; vu , nancy h . ; washington , deanna ; wolfe , stephen  subject : ibuyit user set up  the ibuyit team is trying to get a complete list of approvers and requestors for this program .  for each of your teams , please send me the following :  names of approvers ( team head , cc owner , etc . )  names of requestors ( admins , anyone who would be ordering )  cost center  the ibuyit team wants to keep the number of requestors and approvers limited , but each team will need more than one approver . every requestor will have a pre - approved limit for each transaction . approvers will be required to go into the system and approve all transactions that exceed that limit in order for the transaction to be completed .  unfortunately , we need this information as soon as possible ( monday afternoon at the latest ) !  please feel free to call me with any questions .  thanks ,  misti  x 39525\",0\n\"Subject: re : mec  mark ,  steve ' s comment has many merits . i think stinson gibner and grant masson  ( physics ph . d . ' s ) can help to identify  academic and industry sources to validate some of the claims .  on the other hand , even if our guests were wrong by a factor of 2 or 3 in  their time estimates , the technology  they develop will bring about a technological revolution with enormous  potential payoffs . it make sense to  stay close to them and to explore potential investment opportunities .  vince  steven j kean @ ees  07 / 26 / 2000 05 : 11 pm  to : mark lay / hou / ect @ ect  cc : rex shelby / enron communications @ enron communications @ ect , mike  mcconnell @ ect , vince j kaminski / hou / ect @ ect , philippe a bibi / hou / ect @ ect ,  kenneth lay / corp / enron @ enron @ ect , fabricio soares / hou / ect @ ect  subject : re : mec  i think it would be useful to verify their view that they are really only 2 - 3  years from commercial production . ideally , we could get that confirmation  from someone familiar with the technology but without any financial interest  in its success . their technology pitch sounded good , but i don ' t know enough  to recognize the potential shortcomings . i want to feel comfortable that you  all feel this is real , then i would be happy to have me and my team spend  some time with them .  to : rex shelby / enron communications @ enron communications , steven j  kean / hou / ees @ ees , mike mcconnell , vince j kaminski / hou / ect @ ect , philippe a  bibi / hou / ect @ ect  cc : kenneth lay / corp / enron @ enron , fabricio soares / hou / ect @ ect  subject : mec  thank you for participating in yesterday ' s meeting . we spoke with harvey and  jim after the meeting and they took to speed to market comments to heart .  there is an opportunity for enron to participate with mec in the early  development of their company , but it seems the one thing they want is the one  thing we also want , people . i would appreciate your thoughts and comments on  the possiblity of creating a small team that could work directly with mec as  part of a potential investment and strategic relationship . given our  resource constraints , this would most likely be part of the organization that  sees the greatest strategic impact from mec ' s development .  mark  x 37408\",0\n\"Subject: iv kirstee hewitt fifth floor se 5005  intervew schedule  17 . 30 - 18 . 00 vince kaminski & anjam ahmad  18 . 00 - 18 . 30 ben parsons  18 . 30 - 19 . 00 stephen leppard\",0\n\"Subject: fwd : latest roster - rice  let ' s try this again ! - pam  > date : wed , 07 mar 2001 16 : 13 : 42 - 0600  > to : vince . j . kaminski @ enron . com  > from : pamela vande krol castro  > subject : latest roster - rice  >  > here is your latest roster for mgmt 656 . let me know if you need the list  > of e - mail addresses or if there are any discrepancies that i should  > address . thanks for your help ! - pam ( 713 - 348 - 6223 )  - 656 . doc\",0\n\"Subject: re : picks and publishers  sure . i ' d love to share my experiences . have him give me a call .  by the way , the chapter you sent has been very helpful to me in coming to  understand enron ' s early history . \"\" i ' m getting it \"\" even if slowly .  john  at 07 : 57 am 1 / 31 / 01 - 0600 , you wrote :  > john .  >  > i want to ask you for a favor . can you help  > this fellow ( who is negotiating a contract with john wiley  > by giving him some advice ?  >  > vince  > - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 31 / 2001  > 07 : 58 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  >  >  > steve bigalow @ enron  > 01 / 31 / 2001 07 : 37 am  >  > to : vince j kaminski / hou / ect @ ect  > cc :  > subject : picks and publishers  >  > good morning ,  >  > first , a reminder that you want to see follow through strength on the picks  > before going into them secondly do you know anybody that has published a  > book ? i need some help in how to negotiate points in the contract .  >  > thanks , steve  >  >  >  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: request submitted : access request for tony . harris @ enron . com  you have received this email because you are listed as an alternate data  approver . please click  approval to review and act upon this request .  request id : 000000000006452  approver : stinson . gibner @ enron . com  request create date : 11 / 2 / 00 1 : 12 : 58 pm  requested for : tony . harris @ enron . com  resource name : \\ \\ enehou \\ houston \\ common \\ research - [ read / write ]  resource type : directory\",0\n\"Subject: gas & power marketing & trading study  vincent ,  i enjoyed meeting with you yesterday and discussing our gas & power  marketing & trading study . we really hope that enron is able to participate  this year and we will work with you to address your concerns . i believe  that the problem last year was primarily due to concerns over releasing data  in general and not our study in particular .  i am attaching an electronic copy of the latest version of the input sheet  for the study . it is far easier to read on a computer than in print .  please remember that enron does not need to answer every question to  participate and that all results are reported back in a blinded format . the  only data points identified by company are the data points for the company  values of the company receiving the report .  if you have any further questions regarding the report , please do not  hesitate to call john stephenson or myself at ( 713 ) 523 - 8001 . have a great  weekend and thank you for your efforts to enable enron to participate in  this year ' s study .  sincerely ,  richard murphy  rmurphy @ navigantconsulting . com  ( 713 ) 523 - 8001  - 2000 input sheet . xls\",0\n\"Subject: re : martin lin  norma ,  thanks for your message . approved .  vince  from : norma villarreal 08 / 30 / 2000 08 : 12 pm  to : vince j kaminski / hou / ect @ ect  cc : grant masson / hou / ect @ ect  subject : martin lin  per my voice mail to vince , martin lins offer letter will be provided to him  on thursday , august 31 , 2000 .  however , a concern was shared regarding the retention bonus we originally  discussed . therefore , based on his phd and market information we are able to  offer him a base salary of 98 - 100 k and no retention bonus . we can discuss  retention bonus after he begins his manager role in your group .  if you would like to discuss further please feel free to call me . otherwise ,  please approve salary structure of base 98 , 000 with no bonus .  thank you .  norma villarreal  x 31545\",0\n\"Subject: re : fw : energy book promotion  thanks .  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com  to : julie  cc : vince . j . kaminski @ enron . com  sent : saturday , march 24 , 2001 1 : 18 am  subject : re : fw : energy book promotion  julie ,  i shall track down fiona .  she may be on vacation .  vince  \"\" julie \"\" on 03 / 22 / 2001 03 : 28 : 34 pm  please respond to \"\" julie \"\"  to : ? ? \"\" vincejkaminski \"\"  cc :  subject : ? fw : energy book promotion  hi vince ,  i sent the attached for enron ' s approval to fiona grant , but haven ' t heard  back . in the contract that we signed it states that we need to seek  approval from enron if we want to use the company name . is there someone  else we should direct these requests ?  hope you are well .  julie  - - - - - original message - - - - -  from : julie  to : fiona . grant @ enron . com  sent : thursday , march 15 , 2001 5 : 20 pm  subject : energy book promotion  fiona ,  i ' ve attached a letter that is going to be sent out to some ? universities ,  promoting the energy derivative book . are we allowed to ? mention , \"\" . . . in  association with enron corp . \"\" ? please see attached .  should we check with you every time we would like to use \"\" enron corp . \"\" when  advertising the book ? it will usually follow similar format .  thanks ,  julie  lacima group  ( see attached file : covering letter for book brochures . doc )\",0\n\"Subject: re : forward oil prices  john ,  i can extract the curves from the database .  thanks .  vince  john l nowlan  10 / 30 / 2000 07 : 28 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : forward oil prices  vince , i would have no problem in giving these numbers , do you have the  numbers to forward or would someone in our group need to help him ?  vince j kaminski  10 / 27 / 2000 04 : 24 pm  to : john l nowlan / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , stefan - jorg gobel / fra / ect @ ect  subject : forward oil prices  john ,  i am forwarding to you the request by jens . we gave in the past  our forward oil curves ( with approval of greg whalley ) to some academics .  what is your position on this request ?  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 27 / 2000  04 : 29 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  jens gobel @ enron  10 / 26 / 2000 12 : 06 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : forward oil prices  vince ,  as discussed on the phone , i am sending you the request that i have received  from prof . buehler . prof . buehler is the  head of the faculty of finance at mannheim university in germany . currently ,  he is writing a study about the hedging  strategy that led to the metallgesellschaft debacle . for this study he would  like to get forward oil prices form us .  the forward oil prices should be for wti with cushing as the delivery point  for the time period july 1986 and december 1996  with remaining contract durations between one and ten years . it would be  ideal to get this data on a daily basis . weekly  or monthly data is helpful as well , of course .  since mannheim university is among enron ' s tier one recruiting universities  in germany , it would be great if we could help  him with some data . thanks a lot for your help .  jens  o . korn @ uni - mannheim . de on 10 / 10 / 2000 11 : 44 : 57 am  to : jens . gobel @ enron . com  cc :  subject : daten  sehr geehrter herr goebel ,  bezugnehmend auf ihr heutiges telefongespraech mit herrn prof .  buehler hat mich prof . buehler gebeten , ihnen genauer  darzustellen , welche daten idealerweise fuer unsere studie  benoetigt wuerden .  zunaechst zum hintergrund . wir sind auf enron gestossen , weil  eduardo schwartz in einer seiner arbeiten die folgende datenquelle  angibt :  \"\" in addition to the publicly available futures data described above ,  for the purpose of this study enron capital and trade resources  made available some proprietary historical forward price curves  from 1 / 15 / 93 to 5 / 16 / 96 . from these data ten forward prices were  used in estimation , ranging in maturities from two months to nine  years \"\"  dies laesst uns annehmen , dass enron bestimmte daten  verfuegbar hat .  nun zum idealen datensatz :  forwardoelpreise ( am besten wti mit lieferung in cushing ) fuer  restlaufzeiten zwischen einem und zehn jahren fuer den zeitraum  juli 1986 bis dezember 1996 . dabei waere eine hohe  datenfrequenz ideal ( taeglich , ansonsten woechentlich oder  monatlich ) . zusaetzlich waeren auch spotpreise fuer wti mit  lieferung in cushing nuetzlich .  diese idealen datenanforderungen werden sich vermutlich nicht  erfuellen lassen . jedoch waere uns auch schon geholfen , wenn ein  kuerzerer zeitraum oder eine niedrigere datenfrequenz vorlaege .  wir waernen ihnen sehr dankbar , wenn sie in erfahrung bringen  koennten , inwiefern solche daten von enron zu erhalten sind .  herzlichen dank fuer ihre muehe und beste gruesse  olaf korn  p . s . bei rueckfragen stehe ich ihnen jederzeit gern zur verfuegung  dr . olaf korn  university of mannheim  chair of finance  d - 68131 mannheim  germany  tel . : + + 49 / 621 / 181 - 1487  fax . : + + 49 / 621 / 181 - 1519  e - mail : o . korn @ uni - mannheim . de\",0\n\"Subject: enron open positions  hello mr . kaminski ,  can we meet for a quick lunch again at your  convenience ? just to bring you up to date about my search for the right  opportunity . also i noticed in the risk magazine that enron investment  partners and aig have joined treasuryconnect as strategic partners to  capitalize on internet - based transaction execution of financial derivatives .  i would like to explore if i can be any help to hank finkenstaedt , the  director of enron investment partners .  please let me know what day and time might be  convenient for you .  thank you .  sincerely ,  maruti more  832 - 251 - 7267  mmore @ houston . rr . com  - - - - - original message - - - - -  from : more  to : vince j kaminski  date : monday , july 10 , 2000 11 : 28 am  subject : enron open positions  dear mr . kaminski :  i would like to explore the opportunity to join  enron investment partners . i understand that enron has $ 20 million fund set  up to finance start - ups , and gene humphreys and his assistant john godbold  are trying to attract minority - owned start - up firms . i also learned that  enron has plans to increase the size of this fund to $ 200 million . i can find  these opportunities for enron around the globe . given my background as a  chartered financial analyst , with hands - on experience in investment  management covering financial derivatives , fixed income , and equity , i can be  a valuable resource to do the due diligence , origination , valuation , and  monitoring of these start - ups . would you please help me arrange a meeting  with either gene humphreys , ted murphy , or may be ken lay ?  i am pasting below the job opportunities open at enron . i am also interested  in these positions and would like to meet with the hiring manager .  i will give you a call to follow up .  thank you .  sincerely ,  maruti more  832 - 251 - 7267  job 0000104282 details  manager / director  essential functions : candidates will be responsible for helping  facilitate the transaction approval process for domestic and international  investments . these investments include , but are not limited to , private  equity , project development , venture capital , and structured credits .  candidates will work with business developers and underwriters in  identifying , understanding , and documenting transaction risks . they will also  assist in preparing transaction approval documentation . in addition , they  will oversee the valuation , modeling , and simulation process for investments .  the primary focus is to identify and measure key risk factors from both a  quantitative and a qualitative perspective with an emphasis on fundamental  analysis . the candidate must be able to assist in management and training of  departmental staff and in formulation of investment valuation policies and  procedures .  essential requirements : ? strong interpersonal skills ?  understanding of transaction structuring and credit risk issues ?  understanding of finance and valuation methodologies . ? proficiency with  excel cash flow models ? experience with financial statement analysis ?  understanding of statistics and simulation techniques ( monte carlo ) .  preferred skills : na .  special characteristics : the ideal candidate will possess an  undergraduate degree in finance , accounting , or economics , and an mba .  relevant experience could include credit analysis or valuation / finance  experience . manager / director in the risk assessment department of a $ 20  billion energy company .  contact : please email resumes to corpjobsl @ enron . com , please  refer to job no . 104282 when responding .  job id 0000104282  department capital pricing / risk an  company corporate staff  risk assessment and control  location houston , tx  type  posting date 05 - jun - 00  to submit your resume for this position :  online enter your resume id : no resume id ? you can create a  resume on - line , deposit it in our database , and receive a resume id using our  resume builder .  your resume id will allow you to submit your resume  once , but route it to up to 20 open positions . enron does not process resumes  that are not sent in response to specific positions .  if you have an existing resume in electronic format ,  the resume builder allows you to cut and paste your whole resume .  fax our fax number is 1 - 888 - 588 - 7152 .  you must tell us which jobs you ' re interested in , or  we will not be able to process your resume . write on your resume ( or on a  separate page ) all of the jobs ids of the jobs you ' re interested in pursuing .  an equal opportunity and affirmative action employer  top of page copyright 1997 - 1999 enron corp . all rights  reserved . contact us .  job 0000104281 details  staff / spec / sr spec  essential functions : \"\" snapshot \"\" preparation - responsible for  preparation of quarterly asset \"\" snapshots \"\" which provides enron ' s senior  management with summarized operational and financial information on selected  merchant portfolio investments . responsibilities associated with preparation  of snapshots include : researching publicly traded companies , calculating key  financial data , updating and analyzing graphical summaries of performance ,  reviewing press releases for recent events data , updating stock prices from  bloomberg ? weekly underwriters report - full responsibility for updating and  distributing weekly underwriters ' report . involves regular interaction with  executive vice president , london office personnel , as well as several vice  presidents within underwriting group within rac . ? various projects - will be  utilized on special projects on an as needed basis  essential requirements : accounting / finance / economics degree with  0 - 4 years business experience . excellent computer skills - excel ,  powerpoint , bloomberg , word research skills and the ability to interact with  a variety of personnel and departments . excellent organization skills . self  starter , quick learner . must be team player . good writing skills with the  ability to concisely summarize operational and financial results .  preferred skills : na .  special characteristics : . entry level position with the  opportunity to gain familiarity with all of enron ' s portfolio assets . future  advancement in asset and portfolio management possible for candidate who  exhibits competence and creativity .  contact : please email resumes to enajobsl @ enron . com , please refer  to job no . 104281 when responding .  job id 0000104281  department due diligence / asset mgmt  company corporate staff  risk assessment and control  location houston , tx  type  posting date 05 - jun - 00  job 0000102789 details  sr specialist  essential functions : in this position candidates will model , run  monte - carlo simulations , evaluate capital investments . these investments will  cover a wide range . candidates will be responsible for the validation of  models as well as insuring the accuracy and integrity of the model and  underlying assumptions . the primary focus will be to provide an objective  valuation for an investment by identifying and measuring key risk factors  from both a quantitative as well as qualitative perspective . ? understanding  of valuation techniques applied to equity or structured financial products . ?  understanding of cash flow models and option pricing models . ? proficiency in  excel . ? understanding of project finance and risk mitigation techniques . ?  experience with financial statement analysis and pro forma statements . ?  understanding of statistics and application to financial analysis .  essential requirements : na .  preferred skills : ? understanding of simulation methodologies  such as montecarlo . ? exposure to statistical analysis software such as  crystal ball or @ risk . the ideal candidate will possess an undergraduate  degree in finance , accounting , or economics and have 2 to 3 years of  financial modeling experience and an mba / cpa .  special characteristics : na .  contact : please do not contact the hiring manager . please no  faxes . send resumes via e - mail to corpjobsl @ enron . com or mail to enron , attn :  tvasut - eb 3628 , 1400 smith st . , houston , tx 77002 . please refer to job #  102789  job id 0000102789  department capital pricing / risk an  company corporate staff  risk assessment and control  location houston , tx  type  posting date 17 - mar - 00  - attl . htm\",0\n\"Subject: new documents  vince ,  here ' s the latest set of interview notes as well as the latest \"\" version \"\" of  the paper . i will be working more this afternoon ( if i can ) and send an  updated version .  talk to you later tomorrow or friday .  john  - enron transformation paperl 2 _ 17 _ 00 . doc  - . doc  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: re : action learning project and enron tour  christie ,  let ' s meet to discuss this project . i need more information from you about it .  by the way , i shall meet bob westbrook on wednesday to discuss unrelated  issues .  vince  christie patrick  11 / 02 / 2000 12 : 33 am  to : cmiller @ rice . edu , cindy derecskey / corp / enron @ enron , michael b  rosen / hou / ect @ ect , steven j kean / na / enron @ enron , vince j  kaminski / hou / ect @ ect , grwhit @ rice . edu , westbro @ rice . edu , mark  palmer / corp / enron @ enron  cc :  subject : action learning project and enron tour  hi carrie ,  it was great meeting with you and dean whitaker again last friday , as well as  mr . westbrook .  as we discussed , i have submitted the action learning program materials to  vince kaminski , our managing director of risk analysis and corporate  research . i ' ll be following up with him , and his recommendations for project  proposals next week .  also , i ' ve discussed with our university affairs team setting up the  faculty tours - - we ' re ready when you are ! ! the sooner the better - - i ' d love to  get these in pretty immediately , and in any event , before the reception at  the end of the month . i \"\" ll have cindy derecskey in my group email you - - she  is prepared to set these tours up .  i look forward to continuing to develop the multiple potential dynamics of  the enron - rice relationship !  thanks !  - - christie .  ps : thanks so much for the crystal rice owl - - my participation as a judge in  the rice invitational case competition was my pleasure indeed !  - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 11 / 02 / 2000  12 : 23 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  carrie miller on 11 / 01 / 2000 12 : 47 : 17 pm  to : christie _ patrick @ enron . com  cc : grwhit @ rice . edu , westbro @ rice . edu  subject : action learning project and enron tour  christie ,  i enjoyed visiting with you last week at the jones school . thanks for  taking time to come see us . i wanted to follow up with you regarding the  action learning project program and enron tour . we hope to have enron as  part of the program in 2001 . please let me know how i can help make this  happen . i look for the program to be full before the deadline of december lst . also , i am happy to help organize a group to tour enron . if you were  to participate in the alp program , january / february might be a good time to  put something together with key faculty and the alp team . let me know your  thoughts .  again , many thanks for your continued support of the jones school . i look  forward to hearing from you soon .  carrie  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  carrie chamberlin miller  director of mba program  jesse h . jones graduate school of management  rice university  6100 main street , ms 531  houston , texas 77005 - 1892  phone : ( 713 ) 348 - 5260  fax : ( 713 ) 348 - 5251  e - mail : cmiller @ rice . edu  http : / / www . ruf . rice . edu / ~ jgs /\",0\n\"Subject: files in houston  hi ,  i am trying to retrieve some analysis that i did while i was in houston . it  is very imporatant that i get these files asap as i need to continue the  correlation analysis for the uk power / gas desk . i have put in a request to  the resolution center in houston to try and get a back up but  would like to know if anyone has any further suggestions ? i was not told that  the files in this folder were periodically deleted .  i think tanya should have a copy of these files but do not know where she is  likely to store them .  thanks in advance ,  kirstee\",0\n\"Subject: tiger evals - attachment  tiger hosts :  i understand that some hosts have had problems accessing the database to  complete the tiger team evaluations . i apologize for the difficulties and  have attached the form for your convenience . please feel free to return it  electronically or by fax ( 215 - 573 - 5727 ) .  thank you again for your time .  donna piazze  program director  field application project  the wharton school  univ . of pennsylvania  215 . 573 . 8394 fax 215 . 573 . 5727  fap @ management . wharton . upenn . edu  piazze @ wharton . upenn . edu  >  - tiger team host evaluation . doc\",0\n\"Subject: re : sddp  vince ,  i ' ll send him one of the manuals , and perhaps a paper on sddp .  tom  vince j kaminski @ ect  07 / 28 / 2000 10 : 53 am  to : tom halliburton / corp / enron @ enron  cc : vince j kaminski / hou / ect @ ect  subject : re : sddp  tom ,  can you send the info regarding sddp to john ?  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 07 / 28 / 2000  10 : 52 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  07 / 19 / 2000 06 : 41 pm  to : \"\" o ' brien john \"\" @ enron  cc : vince j kaminski / hou / ect @ ect  subject : re : sddp  john ,  i shall e - mail the information about sddp from houston .  vince  \"\" o ' brien john \"\" on 07 / 18 / 2000 01 : 47 : 41 am  to : vkamins @ enron . com  cc :  subject : sddp  vincent ,  you kindly suggested that i email you with regard to some information you  have on the sddp system ( i ' m not sure if i ' ve got the abbreviation correct ,  but it ' s something that is currently used in south america ) .  your presentation was very interesting and informative .  kind regards ,  john o ' brien  manager , treasury & risk management  snowy hydro trading pty ltd  level 17 , bligh house  4 bligh street  sydney nsw 2000\",0\n\"Subject: meeting for friday on storage  hi mark , i have not met you yet but heard a lot of good things about you . i  would like to discuss with you and possibly with john bloomer and richard  reichardt about the ebs research ' s role in supporting the storage market  development from the origination and trading perspective . there are several  people in various groups that are talking about storage but here is what ' s my  take on our involvement - - please correct me or suggest otherwise .  shalesh ganjoo is our lead analyst on this effort . in addition to his effort  with your group , he is presently supporting jean mrha with pricing and  standardization for a traded storage maret - - stinson gibner is directly  supervising him in this effort .  shalesh came to us through referal from david cox - - david discovered him at  one of his speaking engagements . shalesh had talked to david about traded  storage market development some time last october and david refered shalesh  to enron research group . we hired shalesh for general analyst position and  now he is pulled into all aspect of this storage effort . currently , he is  our point person ( with stinson or i supervising his effort ) who is supporting  jean mrha and you on the subject . kara knop has aproached shalesh with  request for some support and shalesh and she are sorting out each other \u0001 , s  role in this regard . as per my discussion today with david , we need to  coordinate this storage effort from the perspective of modeling market  assessment etc . for this i suggest shalesh and his effort so that all parties  involved can benefit from collective effort within one central source . based  on david ' s and my assessment of shalesh ' s capabilities , i would like to  suggest that the commercial heads use shalesh for his creative thinking ,  understanding of the market and analytical capabilities and not just for data  gathering and simple research effort . we can add other staff as we see the  need and as you request them .  please respond this e - mail with your comments if this sounds like aplan , so  that we can support this effort efficiently and in a scalable manner .  kind regards ,  ravi .  a bit about ebs research group  john bloomer and richard reichardt have met me and are aware of my role and  stinston gibner ' s role in ebs . i lead a team of quantitative professionals  via a group we are calling ebs research . this group reports to stinson  gibner ( vp ) and vince kaminski ( md and head of enron research ) . stinson and  vince are the original founders of enron corp research that has been charged  with model development efforts to support enron energy trading and other  enron business . enron research is involved in all aspects of enron buinesses  ( ees , international , corporate affairs such as fas 133 and other accounting  and new product ( derivatives ) development , etc . ) .  within ebs research , there serveral professionals supporting kevin howard  ( cfo office ) , john griebling , tom gros and jean mrha , david cox ( via boris ) ,  and the war room . our main area of focus is with jean mrha ( trading ) and  john griebling ( optical network design and optimization , etc . ) . we play a  key role with john griebling ' s go forward network design and implementation  through our responsiblity to provide traffic engineering analysis and  modeling effort .  - - - - - forwarded by ravi thuraisingham / enron communications on 03 / 08 / 00 09 : 31  am - - - - -  shalesh ganjoo @ ect  03 / 07 / 00 08 : 01 pm  to : mark s palmer / enron communications @ enron communications  cc : ravi thuraisingham / enron communications @ enron communications @ enron  subject : meeting for friday on storage  dear mark ,  i am looking forward to presenting my competitive analysis on the storage  market on friday to you and others . ravi thurasingham will be calling you to  find out if we ( research group ) can assist your group in any other way .  please let me know if you need any information before we meet . thank you .  sincerely ,  shalesh ganjoo\",0\n\"Subject: happy thanksgiving !  hello , vince !  happy thanksgiving !  per our talk , here is a master list of total return swap deals . i am giving  it a shot to compile everything in a spreadsheet ( \"\" trigger event \"\" ) , please be  advised whether it is helpful .  thanks !  li\",0\n\"Subject: re : allan roberts email  jim ,  thanks . i shall drop him an e - mail .  vince  james . w . petrie . jr @ us . arthurandersen . com on 07 / 27 / 2000 05 : 51 : 31 pm  to : vkamins @ enron . com  cc : allan . roberts @ uk . arthurandersen . com  subject : allan roberts email  vince - it was a pleasure to meet you this afternoon . as promised , please  find  allan ' s email address above . we look forward to working with enron and mit on  finding better ways to value companies .  if you have any questions , please feel free to contact me .  jim  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  james w . petrie , jr .  knowledge sharing director  energy industry knowledge services group  arthur andersen llp - houston office  voice = = > 713 . 237 . 2357 , fax = = > 713 . 237 . 5673  james . w . petrie . jr @ us . arthurandersen . com  - - - - - - - - - -  * * * * * * * * * * * * * * * * * * * internet email confidentiality footer * * * * * * * * * * * * * * * * * * *  privileged / confidential information may be contained in this message . if you  are not the addressee indicated in this message ( or responsible for delivery  of  the message to such person ) , you may not copy or deliver this message to  anyone .  in such case , you should destroy this message and kindly notify the sender by  reply email . please advise immediately if you or your employer do not consent  to  internet email for messages of this kind . opinions , conclusions and other  information in this message that do not relate to the official business of my  firm shall be understood as neither given nor endorsed by it .\",0\n\"Subject: re : eol guest account access  i ' ve logged on . thanks for your help .  - - - - - original message - - - - -  from : danny . lee @ enron . com [ mailto : danny . lee @ enron . com ]  sent : thursday , july 27 , 2000 5 : 07 pm  to : ekrapels @ esaibos . com  subject : eol guest account access  attention : esai  ed krapels  thank you for your interest in enrononline .  the following is a guest password that will allow you temporary view only  access to enrononline . please note , the user id and password are case  sensitive .  guest user id : ena 61296  guest password : welcome !  in order to apply for transaction status with enrononline , your company  needs to complete a password application and registration form for a master  user account . each master user will be able to grant various levels of  access for additional users .  to obtain a password application and registration form , you can visit our  website at www . enrononline . com and select the \"\" how to register \"\" link , or  call our helpdesk at 713 / 853 - help ( 4357 ) . alternatively , you may click on  the attached documents , complete the forms , and fax to 713 - 646 - 8511 .  just a reminder , in order to access enrononline , shockwave needs to be  installed . the shockwave installer can be found within \"\" about enrononline \"\"  on the home page . after opening \"\" about enrononline \"\" , using right scroll  bar , go to the bottom . click on \"\" download shockwave \"\" and follow the  directions . after loading shockwave , shut down and reopen browser ( i . e .  microsoft internet explorer / netscape ) .  we hope you will find that enrononline provides an easy and more efficient  way to do business with enron . we look forward to transacting with you  online .  sincerely ,  danny lee  enrononline helpdesk  713 / 853 - help ( 4357 )  ( see attached file : na pa ver 2 web . doc ) ( see attached file :  registration _ form . doc )\",0\n\"Subject: re : extreme value theory applied to weathet  dear vince and grant ,  i am currently reviewing some of the more erecent references on evt and its  application . i get back to you shortly with some points regarding the  usefulness of evt and how traders ( electricity and weather ) can benefit from  evt .  cheers ,  christian  to : christian werner / enron _ development @ enron _ development  cc :  subject : re : extreme value theory applied to weathet  christian :  to my knowledge , the research group is examining evt primarily in the context  of value at risk calculations . we have not looked at evt for power , because ,  to date , we have been focussing on shorter term fundamental forecasting of  price excursions : i . e . given tomorrow ' s load forecasts and expected plant  dispatch , we attempt to predict which lines will become constrained and how  the system will react to alleviate these constraints . i would be interested  in your thoughts on how evt would benefit the traders however . as far as the  weather goes , i would expect the weather desk to use evt at some level .  clearly you should talk to joe hrgovcic , the researhc chap attached to the  weather desk , for a more accurate assessment .  cheers ,  grant .\",0\n\"Subject: re : fw : wharton resume submission - summer intern  kristin ,  yes , we would like very much to have her as a summer intern .  i can take her ino my group .  vince  enron north america corp .  from : kristin gandy @ enron 01 / 26 / 2001 04 : 03 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : fw : wharton resume submission - summer intern  vince ,  can you tell me if these candidates will be part of the program ? i will  generate an offer letter as soon as i know this information .  thank you ,  kristin  vince j kaminski @ ect  01 / 23 / 2001 01 : 23 pm  to : kristin gandy / na / enron @ enron  cc : jeffrey a shankman / hou / ect @ ect , vince j kaminski / hou / ect @ ect  subject : fw : wharton resume submission - summer intern  kristin .  kim is a member of the tiger team . she is interested in a summer  internship with enron and i shall be glad to take her .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 23 / 2001  01 : 24 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" kim whitsel \"\" on 01 / 22 / 2001  12 : 07 : 35 am  to : ,  cc :  subject : fw : wharton resume submission  - - - - - original message - - - - -  from : kim whitsel [ mailto : kimberly . whitsel . wgo 2 @ wharton . upenn . edu ]  sent : friday , december 22 , 2000 6 : 51 pm  to : kristin . gandy @ enron . com  subject : wharton resume submission  summer position under wharton schedule # 1823  - kim whitsel - enron cover letter . doc  - kim whitsel - wharton 2 resume . doc\",0\n\"Subject: re : kwi user group  david ,  i regret to inform you i am unable to attend the conference due to previous  commitments .  would you consider a speakers form our london office ?  vince  david warwick on 04 / 24 / 2001 09 : 47 : 31 am  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc :  subject : re : kwi user group  vince  any further thoughts on this ?  david  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : 13 april 2001 21 : 44  to : djw @ kwi . com  cc : vince . j . kaminski @ enron . com ; vkaminski @ aol . com  subject : re : kwi user group  david ,  thanks for the invitation .  i shall check my schedule on monday and will get back to you  regarding the conference .  i hope you will a very happy easter .  vince  david warwick on 04 / 12 / 2001 04 : 04 : 32 pm  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc :  subject : kwi user group  dear vince  please may i reintroduce myself . we met last year at the sydney eprm  conference which my company kwi sponsored . i chaired the session at which  you spoke .  as you may remember , my company , kwi are one of the world ' s leading  provider  of systems ( kw 3000 ) and consultancy for energy , trading and risk  management .  we have over 60 clients worldwide including many of the world ' s leading  energy companies ( not enron unfortunately ) :  north america  - tva  - ontario power  - cinergy  - bonneville power  europe  - enel  - atel  - electrabel  - edf  nordic  - vattenfall  - fortum  - sydkraft  - statkraft  - birka energi  - norsk hydro  each year we stage a \"\" kwi users forum \"\" - a 2 - day event attended by leading  trading and risk staff from our clients . last year there were about 100  delegates . the agenda primarily focusses on issues surrounding risk  management for the energy sector .  the agenda comprises keynote presentations on burning risk issues from  industry leading energy speakers and practical workshops focussed around  using our software .  this years event is at a luxury hotel in the wonderful spanish city of  barcelona and runs from the evening of sunday september 9 th to tuesday  september 11 th . the main conference dinner is on the monday evening and is  always a memorable event . this year it is in a leading barcelona restaurant  preceded by a bus tour of the city with a stop for pre - dinner drinks .  i would like to invite you to make the opening keynote address , the  highlight of the conference .  the subject could be :  * a general energy risk related topic  * a general insight into the secret of enron ' s continued success in  the energy markets  * your thoughts on the future development on energy markets ( and other  commodity related - bandwidth etc . ) worldwide  obviously , we would cover all your delagate costs including accomodation ,  food and drink .  what ' s in it for you ? many of our users are some the energy sectors  leading  risk thinkers and i ' m sure you would enjoy meeting them and exchanging  views .  please let me know if you are able to accept the invitation .  best regards  david warwick - marketing dierctor and co - founder\",0\n\"Subject: enron interview of james valverde  hi molly !  has this been scheduled yet ? the recruiter is asking for a copy of the  itinerary for his client and directions to the enron bldg . i thought i would  send both at the same time .  let me know .  thanks !  shirley  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 01 / 30 / 2001  08 : 03 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  shirley crenshaw  01 / 29 / 2001 10 : 26 am  to : molly magee / hou / ect @ ect  cc :  subject : enron interview of james valverde  molly :  vince arranged the times for this interview with a recruiting firm - it will  be  thursday , february 1 from 1 : 00 pm - 5 : 00 pm .  i am enclosing an interview request form for him and i have scheduled vince ,  krishna , and stinson . if these times need to be changed to accommodate  the others , please let me know .  his resume is also attached .  thanks !  shirley  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 01 / 29 / 2001  09 : 50 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  01 / 26 / 2001 05 : 09 pm  to : shirley crenshaw / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : fwd : re : enron - resume interview of james valverde  shirley ,  we want to invite him for an interview ,  thu , 1 - 5 . interviews with kp , sg , vk , gk , br , molly , cs , dan rack .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 26 / 2001  05 : 10 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  johan dahl on 01 / 26 / 2001 05 : 04 : 50 pm  to : vince . j . kaminski @ enron . com  cc :  subject : re : fwd : re : enron - resume interview of james valverde  vince ,  james valverde is confirmed for a face - to - face interview with you on thursday  february lst at 1 . 00 pm to 5 . 00 pm . ? when you have an interview itinerary ,  please share it with me so james know who he is interviewing with . ? please  also tell me where you want him to show up , what floor , suite etc . ? i am  assuming you are in the building on 1400 smith st . , right ?  we have not discussed yet the details regarding what key skills and  qualifications you are looking for in a candidate , other than that they are  bright and talented . could you please share , via email or over the phone ,  what you are looking for in candidate for your organization . ? if you want me  to put a search together , i can only do it by knowing what you want . ? thank  you .  if there is anything else i can do for you before the interview on thursday ,  please let me know .  respectfully ,  johan  at 04 : 39 pm 1 / 26 / 01 - 0600 , you wrote :  johan ,  please , confirm the interview on thursday next week , 1 - 5 .  vince  johan dahl on 01 / 24 / 2001 12 : 04 : 42 pm  to : ? ? vince . j . kaminski @ enron . com  cc :  subject : ? fwd : re : enron - resume interview of james valverde  johan c . dahl  director energy staffing group  management recruiters of portland , inc .  phone : 503 - 290 - 1153  phone : 800 - 979 - 8701  fax : 503 - 282 - 4380  e - mail : jdahl @ mrportland . com  web : www . mrportland . com / html / energy . htm\",0\n\"Subject: mr . big shot !  vince -  i couldn ' t have been more pleased than when i saw your name on the managing  director promotion list last january - who says nice guys finish last !  i ' ve had the announcement in my \"\" to do \"\" folder all this time , waiting for me  to catch up enough to send you this message , but i guess you ' re no stranger  to that scenario . . . .  nothing stochastic about it , you ' re simply the best !  betty : )\",0\n\"Subject: re : seminar series mug  barbara , i think you make valid points in your e - mail . the latest design you  sent me looks fine and meets with our approval . thanks .  marge  barbara ostdiek on 08 / 17 / 2000 04 : 10 : 44 pm  to : \"\" marge nadasky \"\"  cc :  subject : re : seminar series mug  at 03 : 58 pm 8 / 17 / 00 - 0500 , you wrote :  > barbara , vince kaminski had forwarded me the artwork for the mug being  > worked on  > for the seminar series for review / comment . we in public relations were  > wondering if you might be able to incorporate the enron logo in the design ?  > could you please contact me and advise if this is possible ?  we tried to use both the enron logo and the rice university seal . it just  didn ' t work . there seemed to be a few problems . the first was color - as  is , the mug will be black with metallic gold text ; introducing the other  colors was distracting . our admissions department uses a black and gold  mug that is quite stunning and , it seems to go with \"\" finance . \"\" that was my  motivation . the second problem was that the logos themselves , even if it  made sense to do them in gold , made the design too busy - a lot of the  appeal in these \"\" word \"\" mugs is the clean , linear look . finally , i think  lack of company and competing business school logos increases the chances  that the academics who come to present their work at our workshop will  display this mug on their desk or on their shelves .  i think the mug will look quite stunning and i think the display of finance  terms will make it an interesting conversion piece - i ' ve never seen  anything like it in academics , let alone in finance . i think enron ' s  sponsorship of the seminar series will get noticed when people follow their  interest in the mugs to say \"\" what is this ? where ' d this come from ? \"\"  i ' m hoping this version will be acceptable to you for our first shot at  this . please advise .  barbara ostdiek\",0\n\"Subject: re : vacation  shirley ,  no problem . please , coordinate with kevin and anita .  vince  shirley crenshaw  09 / 06 / 2000 03 : 30 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : vacation  vince :  i would like to take next wednesday , the 13 th as a vacation day , if it is  alright . you will not be here .  thanks !  shirley\",0\n\"Subject: hello all  just wanted to share the list of \"\" one - page \"\" bios and summary statements  that i have collected to this point . i have two more yet to come and will  share them asap . have a great weekend and i look forward to seeing  everyone in \"\" sunny / warm waco \"\" next week .  by the way , bill petty has challenged everyone to a 40 minute jog along the  river on friday morning at 6 : 45 a . m . so bring your jogging gear . i also  have heard from very reliable sources that bennett stewart is the odds on  favorite to \"\" win the race \"\" ( cynthia leaked the story that he ' s been in  training now for several months ) .  i ' ll also be sending you driving / parking , etc . instructions early next week .  have a great weekend ,  john  - bennett _ stewart . doc  - david palumbo current bio . doc  - g _ ferrell . doc  - ivaysmanbiosketch . doc  - jmartinbiosketch . doc  - korpi _ bio _ plus _ views _ v 2 . doc  - m _ froehls . doc  - srivastava new econ . rtf  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: re : follow - up meeting on wharton  hi christie :  the telephone number in ebl 938 is : 713 / 853 - 3135 . have a safe trip .  shirley  christie patrick  12 / 12 / 2000 10 : 36 pm  to : shirley crenshaw / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : follow - up meeting on wharton  shirley ,  unless my flights change , i can call in from my cell phone - - what number shall  i dial ?  thanks !  - - christie .\",0\n\"Subject: re : light switch for eb 1939  dolores :  vince said to go ahead and do it . it is a health need .  her eb # is 1939 and our co . # is 0011 and rc # 100038 .  thanks for your prompt response !  have a great day !  shirley  dolores sustaita  02 / 28 / 2000 09 : 06 am  to : shirley crenshaw / hou / ect @ ect  cc :  subject : re : light switch for eb 1939  f . y . i . , please read below .  dolores  - - - - - - - - - - - - - - - - - - - - - - forwarded by dolores sustaita / epsc / hou / ect on  02 / 28 / 2000 09 : 05 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron property & services corp .  from : charles upshaw 02 / 28 / 2000 08 : 32 am  to : dolores sustaita / epsc / hou / ect @ ect  cc :  subject : re : light switch for eb 1939  approx . $ 500 .  dolores sustaita  02 / 25 / 2000 02 : 31 pm  to : shirley crenshaw / hou / ect @ ect , charles upshaw / epsc / hou / ect @ ect  cc :  subject : light switch for eb 1939  charles ,  can you help with cost estimate ?  dolores  - - - - - - - - - - - - - - - - - - - - - - forwarded by dolores sustaita / epsc / hou / ect on  02 / 25 / 2000 02 : 29 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  shirley crenshaw  02 / 24 / 2000 08 : 56 am  to : pat scarborough / epsc / hou / ect @ ect , dolores sustaita / epsc / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , kevin g moore / hou / ect @ ect , william  smith / corp / enron @ enron  subject : light switch for eb 1939  good morning all :  maureen raymond castaneda is officed in ebl 939 . she has terrible migraine  headaches which are made worse by light . we would like to get a price on  having an on / off switch installed in her room . as of now , they have removed  the light bulbs , but said that may not completely answer the problem as some  one may see that they are out and request they be replaced .  i think the answer ( if it is not too expensive ) would be to have a switch  installed .  please let me know .  our co . # is 0011 and our rc # is 100038 .  thanks !  shirley  3 - 5290\",0\n\"Subject: tiger team  mr . bayne :  attached is the updated document . if you need anything else , please let  me know .\",0\n\"Subject: hi vince ,  as always , i enjoyed having dinner with you . its always interesting .  per your recommendation from last night , you should have received a note i  just sent to andy fastow .  if you can fit it into you schedule , sheridan and i would appreciate having  you attend the conference , the conference dinner and reception . also , if  you would like to participate on saturday only , that is a possibility as  well . whatever might work with you .  regards ,  dave  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  prof . david ikenberry  jones graduate school of management  rice university  713 - 348 - 5385\",0\n\"Subject: resume for wichai narongwanich  i was able to retrieve his resume . please print out a hard copy for your  files .\",0\n\"Subject: christmas baskets  the christmas baskets have been ordered .  we have ordered several baskets .  individual earth - sat freeze - notis  smith barney group baskets  rodney keys matt rodgers charlie  notis jon davis move  team  phillip randle chris hyde  harvey  freese  faclities  iain russell darren  prager  telephone services  mary  martinez  ( robert knights dept . )  trina  williams  daniel hornbuckle  todd butler  pamela ford  ozarka -  maryam golnaraghi  special baskets  greg whalley  richard weeks  any questions please contact kevin moore  other request contact kevin moore  price information contact kevin moore  please also if you need any assistance with your christmas cards let me know .  thanks kevin moore\",0\n\"Subject: re : looking for someone who has experience in finance , math ,  programming , and the energy industry ? ( that ' s right , all four . . . )  megan ,  thanks for your interest in the research group . please , call me next week  ( tuesday  and later ) and stop by . i would like to talk to you for a few minutes before  we shall  go ahead with a formal interview .  vince  megan cooper @ ees  12 / 04 / 2000 04 : 54 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : looking for someone who has experience in finance , math ,  programming , and the energy industry ? ( that ' s right , all four . . . )  vince ,  following your espeak session , erin rice suggested i contact you about  joining your group . i have been with ees for almost three years , and during  that time i have worked on tasks that are similar to what your group does on  a larger scale . specifically , i excel at analytical / quantitative problem  solving and the development of models and user requirements for application  development . my educational background is energy management , and i have  recently become involved in the financial aspects of transactions . i have  attached my resume for your review , and i hope you will call me so we can  talk in person .  thank you .  megan cooper  integrated water solutions group  ees - na  ( 713 ) 853 - 1461\",0\n\"Subject: new pc  shirley ,  ok .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 07 / 2000  12 : 02 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  alex huang @ enron  01 / 07 / 2000 08 : 28 am  to : shirley crenshaw / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , grant masson / hou / ect @ ect  subject : new pc  hi shirley ,  i would like to request for a new pc . my current pc is quite old with not  enough memory . twice  i ran out of memory and had to have it people coming to clean it for me .  their suggestion is  to either get a new hard drive or a new pc . given that dell has pentiumc iii  processor at 800 mhz  on market , i would like to request a pc with process at 500 mhz or higher  level .  thank you very much .  best ,  alex\",0\n\"Subject: presentation to faculty and students at berkeley  vince - -  please feel free to also call jeff dasovich ( 415 - 782 - 7822 ) in our san  fransisco office . he has been very involved in the california market  discussions and presented before ferc during their field hearings . he knows  the profs you are meeting with and has some great insights into our positions .  jeff also attended berkeley as an undergrad and is now attending their  b - school in the evenings .  thanks .  jim steffes  - - - - - - - - - - - - - - - - - - - - - - forwarded by james d steffes / hou / ees on 09 / 20 / 2000  09 : 33 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : steven j kean @ enron on 09 / 20 / 2000 09 : 21 am  sent by : steven j kean @ enron  to : maureen mcvicker / na / enron @ enron , james d steffes / hou / ees @ ees , elizabeth  linnell / na / enron @ enron  cc : vince j kaminski / hou / ect @ ect  subject : presentation to faculty and students at berkeley  maureen - - please send vince my california testimony and the talking point  presentation for jeff skilling at the national press club .  eliz - - keep vince on the distribution list for the documents we are  generating now to repond to the california situation .  - - - - - forwarded by steven j kean / na / enron on 09 / 20 / 2000 09 : 18 am - - - - -  vince j kaminski @ ect  09 / 18 / 2000 01 : 26 pm  to : steven j kean / na / enron @ enron  cc : charlene jackson / corp / enron @ enron , celeste roberts / hou / ect @ ect , vince j  kaminski / hou / ect @ ect , ashley baxter / corp / enron @ enron  subject : presentation to faculty and students at berkeley  steve ,  i am a lead recruiter at the university of california at berkeley for  enron analyst / associate program .  i contacted several friends who work at berkeley and received an invitation  from one of them to make a presentation at the weekly faculty seminar  of the dept . of industrial engineering and operations research .  the students and faculty members from the business school will be also  invited .  berkeley in general , and department of industrial engineering and operations  research in  particular , are important centers of academic research on electricity markets  ( s . oren works very closely with severin borenstein ) .  my presentation will focus on the analyst / associate program . i shall also  have  an opportunity to discuss the power markets in california ( i expect many  questions ) before many experts who are very important to shaping  public opinion and regulatory agenda .  please , let me know who in you group could help me in preparing this  presentation  and in presenting enron ' s point of view in a more effective way .  vince  fyi . the name of my friend who invited me :  shmuel s . oren , professor  dept . of industrial engineering  and operations research  4117 etcheverry hall  university of california  berkeley , ca 94720 - 1777\",0\n\"Subject: re : power crisis in the west  tim belden ' s office referred me to you . has grant masson been replaced ?  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : monday , november 06 , 2000 11 : 00 am  to : niam @ infocastinc . com  subject : re : power crisis in the west  nia ,  please , contact tim belden in our portland office .  his phone number is : ( 503 ) 464 - 3820  vince  nia mansell on 11 / 03 / 2000 12 : 46 : 52 pm  to : vkamins @ enron . com  cc :  subject : power crisis in the west  dear vince ,  i spoke with you briefly yesterday regarding grant masson . you informed me  that he is no longer an enron employee . i have also been informed that  grant has not yet been replaced .  i am inquiring because infocast would like to have an enron representative  speak at an upcoming conference entitled \"\" power crisis in the west : status  it is certainly  going to be an exciting conference due to all of the controversy  surrounding  the situation in san diego .  kind regards ,  nia mansell  infocast  conference manager  ( 818 ) 888 - 4445 ext . 45  ( 818 ) 888 - 4440 fax  niam @ . com  >  ( see attached file : power crisis in the west invite . doc )\",0\n\"Subject: draft from the editor with questions . i ' ll call  mark ,  this is the latest draft ( fri afternoon ) , of the paper by john martin  from baylor . please , review the draft from the point of view of our pr  policy . i shall read it as well .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 02 / 2001  02 : 03 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" john d . martin \"\" on 02 / 02 / 2001 10 : 59 : 11 am  to : vkamins @ enron . com  cc :  subject : draft from the editor with questions . i ' ll call  vince ,  attached is the editor ' s latest edits on my draft . there are a couple of  things i ' d like to discuss with you and will call right after lunch .  john  - 134 martin 2 . doc  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: re : conference : monetary policy in the new economy  maureen ,  ok .  vince  maureen raymond  10 / 11 / 2000 05 : 39 pm  to : vince j kaminski / hou / ect @ ect , gary hickerson / hou / ect @ ect  cc :  subject : conference : monetary policy in the new economy  i would like to attend the following conference : \"\" monetary policy in the new  economy \"\" on october 19 th in washington dc . this is the topic of an annual  conference on monetary policy . fed chairman alan greenspan is the keynote  speaker . also , former fed vice chairman manuel johnson and many prominent  monetary economists will be attending and participating in the debate on u . s .  monetary policy . the cost of the conference is $ 375 . while in washington ,  i could also arrange meetings with the iif economist on our largest  investment exposures . in addition , i could interview mark giancola and  possibly some other candidates from johns hopkins school of advanced  international studies for our group .  regards ,  maureen\",0\n\"Subject: re : nymex volumes for rebuttal  vince - i need these numbers by tomorrow am as we are at crunch time . thanks  - chris  margaret carson  09 / 27 / 2000 08 : 44 am  to : chris long / corp / enron @ enron  cc :  subject : nymex volumes for rebuttal  chris i track physical volumes in markets not really financials . . . try  vince kaminski vp in ena ' s  research desk and his people will have this for you . . . . margaret\",0\n\"Subject: re : ca for henwood engagement  badri ,  in the event dpc signs the contract , we would need to make it indian tax  efficient . please suggest the structure / clauses / information required by which  we need not pay withholding taxes . if you need more info on the scope of work  contemplated you can talk to wade / neil / sandeep .  regards  mohan  sandeep kohli  01 / 22 / 2001 07 : 11 am  to : wade cline / enron _ development @ enron _ development , mohan gurunath  cc : stinson gibner @ ect , vince j kaminski @ ect , bruce  lundstrom / enron _ development @ enron _ development , bonnie  nelson / enron _ development @ enron _ development , lauren haggety  subject : re : ca for henwood engagement  wade / mohan ,  please find below the last draft copy of the henwood consulting agreement .  we need to sign this asap so as to not be in violation of ene policies .  as you will see , the draft agreement is made out with enron in mind , even  though we have left the company name blank in the agreement .  mohan - last when we spoke ( friday ) , you were going to explore the tax  aspects of having dpc be the signing company . please tell us if that works .  separately , you and wade may need to consider how dpc lenders may look upon  some of the information emerging from this study , and whether you want all of  it in lender domain .  based on the same you may want to decide whether this needs to be eipl , ene  houston , or dpc . we could also have a version where ene houston is signing  the contract on behalf of dpc .  please let me know what you decide , and we will proceed accordingly . if you  would like someone in eipl / dpc to be signing the contract , please let me  know , who the signing authority is . i suspect , that even i could sign on  behalf of dpc or ene ? ? if so , i will be in houston on wednesday , and sign  at the time . if not , you can assign someone to sign .  regards ,  sandeep .  - - - - - - - - - - - - - - - - - - - - - - forwarded by sandeep kohli / enron _ development on  01 / 22 / 2001 06 : 59 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  lauren hagerty  01 / 20 / 2001 01 : 01 am  to : bonnie nelson / enron _ development @ enron _ development  cc : bruce lundstrom / enron _ development @ enron _ development , sandeep  kohli / enron _ development @ enron _ development , stinson gibner / hou / ect @ ect , vince  j kaminski / hou / ect @ ect  subject : re : ca for henwood engagement  i suspect that enron india llc would be the entity to use . however , is  anyone from tax involved in this ? if not , we need to get someone in the  loop .  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  lauren hagerty  enron india / ebs asia  three allen center , room 2119  houston , texas 77002  phone : 713 - 646 - 6529  fax : 713 - 646 - 7549  bonnie nelson  01 / 19 / 2001 11 : 54 am  to : stinson gibner / hou / ect @ ect , bruce  lundstrom / enron _ development @ enron _ development , lauren  cc : vince j kaminski / hou / ect @ ect , sandeep  subject : re : ca for henwood engagement  stinson ,  please find attached a revised version of the draft consulting agreement with  henwood . fyi , i am attaching both a clean version and one marked toshow  changes from the last draft i sent you . please let me know if you have any  questions or comments on the agreement or the most recent changes .  what is the status of henwood ? do you still want to engage them and what is  the timeframe for their work ( the dates in the draft may need to be  corrected ) .  bruce and lauren : please advise on which enron entity should be the party to  this consulting agreement .  thanks , bonnie\",0\n\"Subject: re : d - g energy  please let me know when you send it to legal , so i can track the progress .  thanks ,  - - stinson  from : laine borgman @ enron on 11 / 20 / 2000 03 : 23 pm  to : stinson gibner / hou / ect @ ect  cc :  subject : re : d - g energy  stinson , attached is the final version of the sofware license agreement .  prior to any signatures being placed on the document by enron , i need to send  the document to our legal counsel for his sign - off by initialing .  laine\",0\n\"Subject: ppi index short - term models  - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 03 / 31 / 2000 01 : 43 pm  - - - - - - - - - - - - - - - - - - - - - - - - - - -  anjam ahmad  03 / 21 / 2000 04 : 10 pm  to : martina angelova / lon / ect @ ect , trena mcfarland / lon / ect @ ect  cc : dale surbey / lon / ect @ ect , stinson gibner / hou / ect @ ect , zimin  lu / hou / ect @ ect , vince j kaminski / hou / ect @ ect  subject : ppi index short - term models  hi martina i believe that the  forecasts are accurately reflecting this . please see graphs below :  both models really need our rpi curve to be linked ( at the moment i have just  copied the 2 . 3 % number forward ) . because the auto - regressive error term is  not very important , we can run the models forward with reasonable  confidence . as i mentioned , i don ' t think we can really run this model more  than 12 months , in fact , i think we should run for 9 - 12 months and blend the  next 3 - 4 months out with the long - term model .  hope i can fix the long - term ones now with some new insight !  regards ,  anjam  x 35383  pllu : dzcv :\",0\n\"Subject: re : loan pc  charlotte ,  i confirmed today with your colleague stuart at x 34073 and he arranged for  the cpu to be removed .  please call me if you have any questions . thanks !  martina x 34327  vince j kaminski  24 / 02 / 2000 15 : 28  to : charlotte baldock / lon / ect @ ect  cc : vince j kaminski / hou / ect @ ect , anjam ahmad / lon / ect @ ect , martina  angelova / lon / ect @ ect  subject : re : loan pc  charlotte ,  i am back in houston . please , contact anjam ahmad and / or  martina angelova . they will be able to help you .  vince kaminski  charlotte baldock  02 / 24 / 2000 05 : 22 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : loan pc  vince  can you confirm that you will returning the loan pc to it support today  please ?  thanks  charlotte\",0\n\"Subject: re : offer  ken ,  either is really fine with me . i ' m glad to have you coming . i will be out  of the office on nov . 21 and the 22 nd is likely to be a short day for most  people , so starting on nov . 27 would probably work the best for us .  - - stinson  kenneth parkhill on 11 / 10 / 2000 03 : 59 : 42 pm  to : \"\" stinson gibner ( e - mail ) \"\"  cc :  subject : offer  stinson ,  i have talked with folks here at fn , and i am happy to say that may be able  to start at enron as soon as monday november 20 , the week of thanksgiving .  i am in the process of wrapping up my existing projects , but it appears that  things are coming together well , and i may be able to leave a little earlier  than i had thought . would you prefer that i start the week after  thanksgiving ?  ken  kenneth l . parkhill , p . e . , ph . d .  freese & nichols , inc .  4055 international plaza , suite 200  fort worth , texas 76109 - 4895  817 . 735 . 7391  817 . 735 . 7491 ( fax ) \",0\n\"Subject: wharton business plan competition  hi anne !  i ' ll be at wharton on tuesday the 20 th - - perhaps we can get together to  discuss this sometime later in the afternoon . what does your schedule look  like ?  thanks !  - - christie .  - - - - - forwarded by christie patrick / hou / ect on 02 / 16 / 2001 10 : 08 am - - - - -  \"\" stamer , anne \"\"  01 / 26 / 2001 03 : 47 pm  to : \"\" ' christie _ patrick @ enron . com ' \"\"  cc :  subject : wharton business plan competition  dear christie :  thank you for your voice mail . things are moving along nicely with the  competition . phase ii deadline was today , so we hope to have some  statistics in the next few weeks . i have attached the statistics from phase  i , for your files . listed below are ways that enron could be involved , let  me know in which ( or all ) of these enron would be interested in participating .  * we want to start listing our sponsors , so it would be really good if we  could get your logo .  * also , does enron wish to be a judge in phase iii and the venture fair  ( vf ) ? for phase iii , we would mail each judge about 3 full blown business  plans to be ranked . we anticipate this taking no more than 1 afternoon  * for the vf , we would need a judge to be present for the entire day . the  vf is by invitation only and we anticipate about 350 students , venture  capitalists , business entrepreneurs and faculty . the vf will be held in  philadelphia on april 30 th .  * at the vf we will provide an opportunity for our sponsors with a 6 foot  table for exhibits or materials to hand out . we will need to know if you  wish to use the exhibit space .  * we plan on providing our 25 semi - finalist teams with one - on - one  mentoring . if enron is interested , that would be about 1 / 2 or 1 day  commitment .  * there might be an opportunity for a workshop to the university community .  would enron be interested in participating in something like this ?  i look forward to working with you to make this year ' s bpc a success . thank  you .  sincerely ,  anne stamer  >  anne stamer  wharton business plan competition  wharton entrepreneurial programs  the wharton school  419 vance hall , 3733 spruce street  philadelphia , pa 19104 - 6374  215 - 746 - 6460 ( direct )  215 - 898 - 4856 ( office )  215 - 898 - 1299 ( fax )  stamer @ wharton . upenn . edu  - phase ioverview . doc\",0\n\"Subject: pjm / ftrs ' meeting this thursday 6 / 8  ftr team ,  the pre - bid meeting arrangements are as follows :  location : eb 3125 a  date : 6 / 8 ( thursday )  time : 8 : 30 am to 2 : 00 pm cdt  breakfast : provided  lunch : sandwiches  thanks .\",0\n\"Subject: visit by enron , 19 october 2000  a team of key executives from enron will be on campus on the 19 th of october  for the purposes of meeting with key staff and faculty to learn more about  the school and how the firm can gain a greater presence here . included in  this group will be :  vince kaminski , director of research  christie patrick , vp , university relations  mike rosen , director , university affairs group  i have developed a proposed agenda for the visit . please review and confirm  that you are available to meet with one or more of the enron team at the  times specified . if so , please provide me a prefered meeting location . if  not , please alternate times and locations .  8 : 00 - 9 : 00 breakfast with donna piazze and keith weigelt to discuss \"\" tiger  team fap project \"\" the ivy grill , inn at penn  9 : 00 - 10 : 30 meeting with raffi amit , ian macmillan , emily cieri and anne  stamer to discuss the sol c . snider entreprenuer center and its related  programs , the business plan competition and webi . . . 4 th floor conference room ,  vance hall ? ? ?  10 : 30 - 12 : 00 christie and mike hold discussions with cara tyler , bob bonner  and pat rose regarding recruiting processes and procedures . . . cms conference  room  10 : 30 - ? ? ? broadband executive meets with gerry mccartney and other  university officials to discuss campus needs , future usage projections , etc .  10 : 30 - 11 : 30 vince meets with sid winter reference jones center and related  research  11 : 30 - 12 : 00 vince meets with howard kunruether to discuss risk management  12 : 00 - 1 : 15 pm group lunch with jerry wind at faculty club to discuss the  e - fellows program  2 : 00 - 3 : 00 pm christie and mike meet with mike baltes to discuss co - branding  issues with wharton and upenn  5 : 00 pm all will attend the et conference dinner event  please confirm your willingness and availability to support this agenda .  thanks for your help .  tom\",0\n\"Subject: london , new york , houston , financial mathematics june / july 2001  hello speakers !  ?  my name is joanna vidal and i am the coordinator for the financial  mathematics training course being in held on the following dates :  ?  london on june 28 & 29  new york on july 9 & 10  houston on july 16 & 17 ?  ?  i am in the process of preparing the speaker packs which will include an  updated contact information sheet with ? all your details . ? you will receive  this pack shortly after you confirm your addresses . ? i will list them below  and i ask that you please look it over and make any necessary corrections . ?  ?  ? my contact details , for your information are :  ?  joanna vidal  events coordinator  risk waters group  t : ( 212 ) 925 1864 ext . 197  f : ( 212 ) 925 7585  jvidal @ riskwaters . com  www . riskwaters . com  ?  thank you and i look forward to working with you .  ?  duane seppi  carnegie mellon university  graduate school of industrial administrations  pittsburgh , pa 15213 - 3890  t : 001 412 - 268 - 2298  f : 001 412 - 269 - 8896  ?  helyette geman  universite de paris dauphine  finance department au de ka grand ecole  corgy pontois , paris  france 95021  t : 00 33 60 - 807 - 4200  ?  vincent kaminski  enron credit  1400 smith street  room ebl 962  houston , tx 77002 - 7361  t : 001 713 - 853 - 3848  f : 001 713 - 646 - 2503  ?  peter nance  teknecon , inc .  1515 s . capital of texas highway  suite 101  austin , tx 78746  t : 001 512 - 732 - 7084  f : 001 512 - 732 - 7099  ?  chris harris  innogy holdings place  windmill hill business park  whitehill way  swindon , wiltshire  uk , 5 n 5 6 pb  t : 44 793 387 - 7777  f : 44 793 389 - 7811  ?  spyros maragos  dynergy , inc .  1000 louisiana street  suite 5800  houston , tx 77002  t : 011 713 - 507 - 6589  f : 001 713 - 767 - 5958  ?  ehud ronn  university of texas at austin  department of finance  mccombs school of business  austin , tx 78712 - 1179  t : 001 512 - 471 - 5853  f : 001 512 - 471 - 5073  ?  ?  ?\",0\n\"Subject: 2 nd message - re : dec 2 super saturday interviewer confirmation  please see the attached for interviewer information .  shelly jones  11 / 28 / 2000 05 : 54 pm  to : scott earnest / hou / ect @ ect , tim mckone / corp / enron @ enron , richard  dimichele / enron communications @ enron communications , brandon  neff / hou / ees @ ees , john j lavorato / corp / enron @ enron , guido  caranti / enron _ development @ enron _ development , robert bailey / hou / ees @ ees , dixie  yeck / enron communications @ enron communications , cheryl lipshutz / hou / ect @ ect ,  john godbold / hou / ect @ ect , chuck randall / hou / ees @ ees , michelle  juden / hou / ees @ ees , mark reese / hou / ees @ ees , jim fallon / enron  communications @ enron communications , sarah wesner / corp / enron @ enron , sylvia  barnes / hou / ees @ ees , kirk neuner / enron communications @ enron communications ,  mari capestany / hou / ees @ ees , wayne perry / enron _ development @ enron _ development ,  john neslage / enron _ development @ enron _ development , fred lagrasta / hou / ect @ ect ,  bani arora / hou / ees @ ees , jonathan risch / hou / ees @ ees , heather  kroll / hou / ect @ ect , brad romine / na / enron @ enron , julia kazibwe / hou / ees @ ees ,  thomas rich / fgt / enron @ enron , mark smith / corp / enron @ enron , vince j  kaminski / hou / ect @ ect , kathy m lynn / corp / enron @ enron , stephen stenhouse / enron  communications @ enron communications , jere c overdyke / hou / ect @ ect , jim  meyn / na / enron @ enron , donald reid / enron @ gateway , ken gustafson / hou / ees @ ees ,  daniel reck / hou / ect @ ect  cc : sue foust / hou / ect @ ect , rebecca serwin / corp / enron @ enron , crissy  collett / enron communications @ enron communications , sonia  guerra / enron _ development @ enron _ development , mary lou  browder / enron _ development @ enron _ development , mary lou  browder / enron _ development @ enron _ development , adriana cortes / hou / ect @ ect ,  leticia botello / hou / ees @ ees , paula pierre / enron communications @ enron  communications , theresa davis / hou / ect @ ect , kelly lacalli / hou / ees @ ees , lily  guerra / hou / ees @ ees , lucy marshall / enron communications @ enron communications ,  amy rios / hou / ect @ ect , karen street / hou / ees @ ees , cindy long / corp / enron @ enron ,  becky young / na / enron @ enron , marcia a linton / na / enron @ enron , claudette  harvey / hou / ect @ ect , brenda flores - cuellar / na / enron @ enron , valerie  villareal / hou / ees @ ees , becky young / na / enron @ enron , amy  flores / corp / enron @ enron , sally slaughter / enron communications @ enron  communications , donna baker / hou / ect @ ect , chaun roberts / na / enron @ enron , terri  bachand / enron communications @ enron communications , angie collins / hou / ect @ ect  subject : dec 2 super saturday interviewer confirmation  please see the attached .  this is a confirmation for saturday interviews only . if you volunteered for  friday night dinner as well , notification will be sent via email by end of  work day wednesday regarding your friday night dinner participation .  please feel free to contact me with any questions .  thank you  shelly jones  ext . 3 - 0943\",0\n\"Subject: re : re : workshop  this is great news for me and even more so  for icbi ( or the other way around . . ) .  could you call me today before 11 . 30 p . m  paris time or to - morrow between 3 and 5 . 30 p . m  paris time ? i think i do not have the right numbers  for you any more  helyette\",0\n\"Subject: analysis of dabhol energy cost  jeff ,  i am forwarding an analysis put together by sandeep kohli and reviewed by  vince and me . the results in the attached word document show that dabhol  energy costs are several cents below that of roughly 600 mw of distributed  generation which has been identified in maharastra . this 600 mw does not  include innumerable small generators which will have even worse energy  costs . the excel spreadsheet contains the data and calculations .  regards ,  stinson  x 34748  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 01 / 05 / 2001  03 : 04 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  sandeep kohli @ enron _ development  01 / 05 / 2001 02 : 28 am  to : vince j kaminski @ ect , stinson gibner @ ect  cc :  subject :  vince / stinson ,  please find the two attachments that give a more detailed calculation , as  well as the revised statement that can be made to press .  the numbers are not small , but really do not reflect the true magnitude of  the genset issue . they do not take into account the capital costs of the  gensets , and also do not focus on the many smaller units that are operating  in homes , and commercial establishments .  hope ths helps .  regards ,  sandeep .\",0\n\"Subject: re : default rates  mark , this is a good point . in moody ' s june 1999 study , debt recoveries for  corporate bankruptcies , there is a graph of firm - level recovery rates by year  of bankruptcy resolution ( as opposed to default year ) . reading from the  graph finds :  as the data above is based on resolution year , the same study finds the  average length of time spent in bankruptcy is 1 . 30 years ( median 1 . 15 years  and standard deviation of 1 . 20 years ) . the interesting point is the slide in  recovery value 1996 to 1998 . one would wonder if the mix of high - yield  issuance slanted towards the tech companies would yield lower recoveries  ( quick technological obsolescence - - little tangible recovery value ) .  interesting to note is the december 1999 to december 2000 change in spreads .  the table below divides the december 2000 spreads by the december 1999  spreads . one would have expected a pronounced flight to safety over this  time - frame , but the figures are more mixed :  to : michael tribolet / corp / enron @ enron , william s bradford / hou / ect @ ect , david  gorte / hou / ect @ ect , vince j kaminski / hou / ect @ ect  cc :  subject : re : default rates  per our discussion , see attached for impact of assumed recovery rates :  michael tribolet @ enron  12 / 11 / 2000 08 : 09 am  to : william s bradford / hou / ect @ ect , david gorte / hou / ect @ ect , vince j  kaminski / hou / ect @ ect , mark ruane / hou / ect @ ect  cc :  subject : default rates  please see below for my note to jeremy at the bottom and his reponse . i  have placed mark ruane ' s yields against a mid november default frequency  table . note there may be a slight shearing in dates , but the concept is  more important :  market implied cumulative default rates ( % ) :  1 year 5 year 10 year  aaa 0 . 51 5 . 74 14 . 54  aa 0 . 67 6 . 39 16 . 61  a 0 . 98 8 . 98 21 . 03  bbb 1 . 17 9 . 88 22 . 39  bb 3 . 27 18 . 62 37 . 51  b 4 . 65 24 . 21 46 . 27  s & p historical default rates ( % ) :  1 year 5 year 10 year  aaa 0 . 00 0 . 13 0 . 67  aa 0 . 01 0 . 33 0 . 90  a 0 . 04 0 . 47 1 . 48  bbb 0 . 21 1 . 81 3 . 63  bb 0 . 91 8 . 82 14 . 42  b 5 . 16 20 . 95 27 . 13  in looking at the one - year transition rates as a very rough proxy for how  many more defaults occur in a recession ( 1991 ) versus average ( 1981 - 1999 )  historical default rates ( % ) :  investment grade non - investment  grade  avg . 1981 - 99 0 . 07 4 . 21  1991  0 . 12 10 . 40  multiple 1 . 7 x  2 . 5 x  looking at where the market implied default rates divided by the historicals  default rates to obtain a \"\" multiple \"\" ( how much more severe than historical ) :  1 year 5 year 10 year  aaa infinite 44 . 2 x 21 . 7 x  aa 67 . 0 x 19 . 4 x 18 . 5 x  a 24 . 5 x 19 . 1 x 14 . 2 x  bbb 5 . 6 x 5 . 5 x 6 . 2 x  bb 3 . 6 x 2 . 1 x 2 . 6 x  b 1 . 1 x 1 . 2 x 1 . 7 x  on the 10 year historical figures , we need to be careful as the s & p static  pool figures show a definite seasoning ( lower defaults in late years probably  due to prepayment ) versus our contracts . secondly , the s & p figures have  withdrawn ratings , which usually mean they are stale , but loosing some  information content .  i will ask emy to set up a meeting to discuss further .  - - - - - - - - - - - - - - - - - - - - - - forwarded by michael tribolet / corp / enron on 12 / 11 / 2000  07 : 06 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : jeremy blachman @ ees on 12 / 10 / 2000 07 : 21 am  to : michael tribolet / corp / enron @ enron  cc :  subject : default rates  thanks . i would strongly suggest an offsite sooner than later with a handful  of the right people so that we can step back and design the right  architecture for looking at credit in our deals . it is broken , not clear ,  killing our velocity and true capabilities . we also need to look at staffing ,  skills sets , the credit reserve model etc . perhaps you should take a crack at  an agenda .  - - - - - - - - - - - - - - - - - - - - - - forwarded by jeremy blachman / hou / ees on 12 / 10 / 2000  07 : 08 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  michael tribolet @ enron  12 / 09 / 2000 03 : 51 pm  to : jeremy blachman / hou / ees @ ees  cc :  subject : default rates  i visited with vince kaminski for about 20 minutes today regarding the market  implied defaults rates and the disconnect in investment grade land . he is  seeing the same anomaly and agreed that we as a company need to revisit the  methodology employed in calculating the implied figures . i will follow  through and report back .\",0\n\"Subject: thanks  maureen - thanks for your outstanding presentation on friday . sorry again for  the difficulties in scheduling .  i can see some excellent collection opportunities for our group as a result  of your presentation and look forward to discussing them with you on my  return . we think we can get excellent info on production & exports in  russia , as well as good insight into anti - dumping out of dc and the wto .  labor unrest , environmental problems , civil unrest are other possibilities .  fyi , the speeches from today ' s lme seminar will be posted on the lme website  tomorrow . you may be particularly interested in the outlooks for aluminum ,  nickel , and copper .  rj\",0\n\"Subject: managing enron ' s relationships with the universities  jeff ,  i would like to get on your calendar ( together with jeff shankman ) for 15 -  30 minutes  to discuss the results of my visit at the wharton school with tom piazze .  a separate message about this visit will follow .  i would like also to talk to you about the way we manage our relationships  with  different universities . historically , we were rather passive customers of  the academic institutions , trying to hire the best students and limiting our  presence  on the campuses mostly to the recruiting trips and campus receptions .  we should rethink the way we work with universities . the efforts to get  the best students look more and more like a hand - to - hand combat and often we  are not  very successful . it is critical that we increase our presence on the campuses  and this can be accomplished in a number of different ways :  1 . involvement in research projects . for example , we are currently  underwriting two research  projects at stanford university , involving ph . d . students of professor  nicholas bambos  ( a top expert on communications networks ) . we shall participate in formulation  of the projects ' objectives and will be given access to the results .  involvement in research projects allows us to obtain  access to current scientific developments in the leading universities and  also to lock - up some very  promising students . most companies in the high tech industries have such  programs .  2 . lectures and presentations by enron employees . practically every  presentation  i have made so far at different universities resulted in a number of resumes  and hiring decisions .  it is important that students get exposed to enron early in their academic  program . in many cases ,  the best students have already made up their mind by the time we approach  them during their  senior years .  3 . visits by faculty members in enron .  closer cooperation with the universities has many advantages in addition to  getting the best students  and obtaining access to current research . the universities are very important  in shaping public opinion  on the issues critical to enron ' s future ( especially in the area of  deregulation and design of new markets ) .  currently , the relationships with many leading academic centers depend on  personal commitment of a number  of overworked enron employees . in many cases , there is no continuity and  focus .  i want to recommend a creation of a special function ( vp or md level )  responsible for coordinating  our relationships with the universities . this function would be separate from  our analyst / associate  program . i have many ideas how this function could be structured .  vince\",0\n\"Subject: re : risk 2000 panel discussion , boston  oliver ,  makes sense to me .  vince  \"\" oliver bennett \"\" on 04 / 03 / 2000 09 : 49 : 13 am  please respond to \"\" oliver bennett \"\"  to : , \"\" vince j kaminski \"\" ,  cc :  subject : risk 2000 panel discussion , boston  just a quick email to start some discussion about the panel session you are  involved in during risk 2000 in boston on 13  similarly it is often interesting to hear the panel ' s comments on one  individual ' s more specific area of knowledge .  ?  conseqently if you could return this email ( to all panel members ) with  topics you feel should be covered , any particular areas you would personally  like to focus on , any proposed changes to the actual panel structure , and  possibly additonal panel members you think should be there , that would be a  good start . i am still in the process of looking for a moderator and if  anyone has any suggestions , please let me know .  ?  ( the talk title is effectively applying weather derivatives )  ?  best regards ,  ?  oliver ?  ?  ?  direct : + 44 ( 0 ) 20 7484 9880  ?  risk publications , 28 - 29 haymarket , london swly 4 rx  fax : + 44 ( 0 ) 20 7484 9800 ? email : oliver @ risk . co . uk  www . riskpublications . com\",0\n\"Subject: re : trading algorithms  andy ,  sounds good . one comment : vasant is swamped with work coordinating  several high profile projects .  bob is very productive and thorough and will get a lot of support  internally from other members of the group : this contribution  may not be directly visible but it will be still very important .  we appreciate your hands - on involvement . it ' s always the most  important condition of a successful project to have direct and frequent interaction  with the customer . look fwd to working on this project .  vince  from : andy zipper / enron @ enronxgate on 04 / 18 / 2001 01 : 57 pm  to : jay webb / enron @ enronxgate , vince j kaminski / hou / ect @ ect  cc :  subject : trading algorithms  guys ,  here is what i took away from our meeting :  1 ) . research will continue working on custom reporting off of enrononline data .  2 ) . research will continue working on market analysis off of enrononline data  3 ) . research will a contribute a resource to the trading algorithm effort , presumably one at this point in time . i would prefer it to be vasant but i am flexible . the trading algorithm group will be run by the enrononline team with its product reviewed by research . it is my belief that projects like this require a firm commercial hand in their infancy to make sure they stay on the right track .  if this presents a problem for anyone please let me know so that we can discuss .  thanks ,  andy\",0\n\"Subject: re : check  vince ,  ?  oh . ? i sent an invoice to habiba for aus 5 k a while back , and she informed  me that she passed it along to the people who are handling the agreement now  ( i take that as fiona grant in london ? ) . ? i will then send out another  invoice of aus 5 k in the next week or so for the remaining balance . ? should  i have sent the invoice to you ?  ?  thanks ,  julie  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com  to : julie @ lacima . co . uk  cc : vince . j . kaminski @ enron . com  sent : monday , october 30 , 2000 9 : 12 pm  subject : re : check  julie ,  a clarification . we had an agreement with chris and les to contribute ? aus  10 , 000  as a part of the cost .  vince  \"\" julie \"\" on 10 / 30 / 2000 12 : 32 : 14 pm  to : ? ?  cc :  subject : ? re : check  vince ,  thank you for your email .  we will send you a copy of the book as soon as it is available , which we  are now estimating to be around 21 november ( no need to send us a cheque ;  you deserve it ) .  just let us know if we should use a different address than your office ? in  houston .  thanks again for all of your help .  julie  - - - - - original message - - - - -  from : ? vince . j . kaminski @ enron . com  to : julie @ lacima . co . uk  cc : vince . j . kaminski @ enron . com  sent : monday , october 30 , 2000 2 : 16 ? pm  subject : check  julie ,  this message was returned to me a few times when ? i sent it from my home  address .  vince  - - - - - - - - - - - - - - - - - - - - - - ? forwarded by vince j kaminski / hou / ect on 10 / 30 / 2000  08 : 00 am ? - - - - - - - - - - - - - - - - - - - - - - - - - - -  vkaminski @ aol . com on 10 / 28 / 2000 12 : 12 : 57 ? pm  to : julie @ lacima . co . uk  cc : vkaminski @ aol . com , vkamins @ enron . com  subject : ? check  julie ,  as the book is about to be released to the ? market , i would like to start  the  process to issue the check to lacima . ? who will be the payee ( lacima ) and  what  is the ? address ?  vince\",0\n\"Subject: re : philippe jorion ' s pending visit to rice  david ,  it ' s even better .  dinner on the 18 th works best for me .  i sent your outline to our cfo with my recommendation .  i hope to hear shortly from him .  vince  david ikenberry on 02 / 05 / 2001 02 : 29 : 04 pm  to : \"\" vkamins @ ennron . com \"\"  cc :  subject : philippe jorion ' s pending visit to rice  hi vince ,  we have tentatively re - scheduled philippe jorion for monday , march 19 . he  will likely come for dinner on sunday , march 18 and return to california on  march 19 . would dinner on the 18 th and / or a seminar sometime on monday the  19 th work with your schedule ?  thanks , dave  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  prof . david ikenberry  jones graduate school of management  rice university  713 - 348 - 5385\",0\n\"Subject: organizational announcement - introducing enron engineering and  operational services  in order to better align our engineering and operations capabilities with the  commercial businesses they support , we are pleased to announce the following  organizational change will be effective immediately . a new business unit ,  enron engineering and operational services ( eeos ) , is being formed which will  include our existing operations in enron engineering and construction company  ( ee & cc ) , operational energy corporation ( oec ) , and national energy production  corporation ( nepco ) .  brian stanley , as president and chief executive officer , and keith dodson , as  chief operating officer will provide the leadership for this new  organization , reporting to the office of the chairman of enron wholesale  services . nepco will continue to operate as a stand - alone business under  john gillis , president .  with the majority of ee & cc and oec \u0001 , s activities focused on assets and  projects which are in wholesale services , this will better align the efforts  of eeos with the commercial businesses it supports . while eeos will be a  stand - alone unit within enron wholesale services it will work very closely  with and have direct accountability to the business units it supports .  this realignment also centralizes our engineering and operations capabilities  in a single business segment and should ensure that innovation and best  practices are shared and implemented across our many operations and will also  allow for better identification of priorities and more effective allocation  of resources to these projects . consistent with this approach , development  engineering will have dual reporting to both eeos and the business units  which they support .  with an extensive and varied portfolio of assets around the world and a wide  variety of new development opportunities available to enron , it is critical  that we continue to maintain the best in class capability to design ,  construct , commission , and effectively manage and operate enron \u0001 , s assets on a  global basis .  this new global business unit should insure that we will continue to enhance  these demonstrated capabilities and provide us with a sustainable advantage  as we advance our business strategy around the world .  please join us in congratulating brian and keith on their new assignments .  mark frevert & dave delainey\",0\n\"Subject: re : fw : citi , wells , enron , sl and i 2 form a b 2 b venture  great . we will be around . let ' s get together . please , give me a call  ( 650 - 570 - 6509 ) or / and let me know your phone number in palo alto .  andrzej  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : tuesday , october 24 , 2000 12 : 58 pm  to : lubowski , andrzej  cc : vince . j . kaminski @ enron . com  subject : re : fw : citi , wells , enron , sl and i 2 form a b 2 b venture  andrzej ,  i shall be in the bay area again for thanksgiving . i came to sf for one  day to  do recruiting at berkeley . i hope you will feel better soon .  vince  \"\" lubowski , andrzej \"\" on 10 / 20 / 2000 12 : 45 : 25 pm  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc :  subject : re : fw : citi , wells , enron , sl and i 2 form a b 2 b venture  wicku ,  i hoped to hear from you . please , let me know whether your plans have  changed , and if so , when you are coming to palo alto .  i spent theer weeks in europe in september ( had dinner with leszek and  ewa ) ,  and went to sydney as a guest of nbc . upon return i caught a flu , and  travelled heavily congested to new york , which led to some ear  problems . consequently i intend to stay put for several weeks , and will have  to reschedule my trip to houston for dec . or january . hope to see you here  before then .  best to all three of you .  andrzej  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : friday , august 18 , 2000 6 : 23 am  to : lubowski , andrzej  cc : vince . j . kaminski @ enron . com  subject : re : fw : citi , wells , enron , sl and i 2 form a b 2 b venture  andrzej ,  thanks . please , send me the information about the dates  when you plan to visit houston . also , the information about  your position / title / responsibilities ( as well as the info  about the other members of your team ) would be useful .  i shall be in the bay area between the 10 th and the 20 th of october .  hope to see your then .  wicek\",0\n\"Subject: new recruit : matthew williams work and training plan  attached . those in the us please feel free to resize the document to your  printer ' s content .  steve\",0\n\"Subject: re : fw : possible visit to enron by professor nalin kulatilaka of  boston university  thanks , i will followup with shirley and vasant asap .  - - - - - original message - - - - -  from : kaminski , vince  sent : monday , april 02 , 2001 10 : 32 am  to : mack , iris  cc : kaminski , vince ; shanbhogue , vasant  subject : re : fw : possible visit to enron by professor nalin kulatilaka of  boston university  iris ,  please , check with shirley . she keeps my calendar up to date .  also , we got a 2 nd desk for you with the credit group  on the 23 rd floor . you can divide your time  bet the 19 th floor and the 23 rd floor to stay in touch with the  business unit . please , check with vasant and he will introduce you to the  credit team here in houston ( jeff kinneman , craig chaney ) .  also , please plan for a trip to london in 3 - 4 weeks .  vince  vince  from : iris mack / enron @ enronxgate on 04 / 02 / 2001 09 : 57 am  to : vince j kaminski / hou / ect @ ect  cc : stinson gibner / hou / ect @ ect  subject : re : fw : possible visit to enron by professor nalin kulatilaka of  boston university  hi ,  thanks for your prompt response .  nalin kulatilaka wants to visit when you are in town . what are good  thursdays for you ?  thanks ,  iris  - - - - - original message - - - - -  from : kaminski , vince  sent : monday , april 02 , 2001 8 : 14 am  to : mack , iris  cc : gibner , stinson ; kaminski , vince  subject : re : fw : possible visit to enron by professor nalin kulatilaka of  boston university  iris ,  i wrote an endorsement for his book on real options ( it was on the cover  under jeff skilling ' s  name ) . let ' s invite him to the thursday lunch .  vince  from : iris mack / enron @ enronxgate on 03 / 29 / 2001 05 : 52 pm  to : stinson gibner / hou / ect @ ect , stinson gibner / enron communications  cc : vince j kaminski / hou / ect @ ect  subject : fw : possible visit to enron by professor nalin kulatilaka of boston  university  hi stinson ,  a colleague of mine - professor nalin kulatilaka of boston university -  is interested in visiting enron to give a talk on work he is doing in the  broadband area .  please see the forwarded emails for further information and available  dates .  can you let me know if we can give him a forum at one of our thursday  research lunches or a friday brown bag lunch ?  thanks ,  iris  - - - - - original message - - - - -  from : nalin kulatilaka @ enron  com ]  sent : thursday , march 29 , 2001 5 : 40 pm  to : mack , iris  cc : lin , martin  subject : re : possible visit to enron by professor nalin kulatilaka of boston  university  hi iris  i have two different hats to wear in talking to enron . one is as a  financial economist . the other as the director of the newly formed \"\" global  mobility innovation initiative ( gmii ) - - this is the research project  funded by lucent , involving bu , lbs , and insead , to study various aspects  of the mobile internet ( read 3 g ) .  on the former i am working with a couple of ph . d . students in understanding  ( a ) details of how having physical supply ( inventory ) can be used by a  market maker . this is a problem that has been studies in the context of  specialists inventory in the stock market but i think really interesting in  the way enron does it in some of the newer markets like bandwidth . i  think this is a big issue in lighting up all the dark fiber that is in the  ground .  ( b ) how enron is disciplining the internal decision making process with  market . this is in many ways the critical aspect of real options that  most finance people miss - - having options is one thing but exercising them  and realizing their value is another . all of the incomplete contracting ,  asymmetric information , and incentive issues are ignored in real options  valuation models . but they are real in practice . my impression is enron ' s  real success is in putting place an organization that is able to mitigate  these problems by imposing a market disciplining .  ( c ) how enron manages the various books that involve physicals , financials ,  credit etc . this is specially important when many of the real assets have  options features and therefore , include non - linear risk profiles . the  story of gas is pretty well understood but not many of the others markets  enron has been moving into over the last few years .  on the gmii front , i think that some interesting opportunities arise when  you think of the spectrum in a way similar to that of dark fiber . i am  working with several people at lucent on this issue . i think it would be  wonderful to engage in a conversation with enron and lucent folks in the room .  i can do a lunch time talk on any of these issues . perhaps we can discuss  some of these over a conference call . clearly , having vince kaminski in the  room would be very important to me .  as for schedules , the first 3 weeks of april are horrible . april 26 / 27 ,  may 3 / 4 are good for me .  regards  nalin  at 06 : 56 pm 03 / 22 / 2001 , mack , iris wrote :  > hi ,  >  > as we briefly discussed , i spoke with one of my colleagues ( dr .  > martin lin ) about your visiting enron to give a talk and to spend some  > time with us to discuss you work in telecommunications , real options ,  > etc .  >  > martin and i are working on various broadband related problems .  >  > we thought it might be helpful if you let us know a bit more about  > the following :  > * when you want to come ( the research group has weekly  > catered lunch on thursday and brown bag lunches on every other friday ) .  >  > * a description of what you want to talk about with respect  > to telecoms , broadband , etc .  > * who you would like to meet with me - vince kaminski ( our  > boss ) , any other of our colleagues in research , broadband , etc .  > . . . . . . . . . . . . . . . . . etc .  >  >  >  >  > look forward to hearing from you .  >  > regards ,  > iris\",0\n\"Subject: re : invoice for energy derivatives courses  i already did - you signed it this morning .  thanks !  vince j kaminski  03 / 29 / 2000 12 : 33 pm  to : shirley crenshaw / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : invoice for energy derivatives courses  shirley ,  please , pay .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 29 / 2000  12 : 33 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  lacima @ compuserve . com > on 03 / 28 / 2000 02 : 49 : 43 pm  to : shirley  cc : vince  subject : invoice for energy derivatives courses  shirley ,  please find attached the invoice for the energy derivatives courses . if i  should forward this to someone in accounts , please let me know who i should  contact and i will take care of it .  thanks ,  julie  lacima consultants  - enron 28 _ 03 _ 00 . doc\",0\n\"Subject: new research tool - too cool ! ! !  this tool is really a breakthrough . real - time off our new satellite  controller , meteorological info from noaa ' s satellite ! ! !  simple and easy .  just go to . . .  further instruction ( there is only one instruction ) . .  type in your station of interest , example : khou for houston , texas , lirf for  rome , italy , eddh for hamburg , etc ( see attached city code list )  you will be constantly updated way before the competition !  enjoy . . .\",0\n\"Subject: re : real options  vince ,  thanks again for coming to austin to speak with my class . i am sure  that they appreciated hearing about the use of real options at enron , and i  think it was a very fine way to finish the semester .  along with my colleagues from finance , i appreciate the strong  support that enron has provided to the college of business administration .  we appreciate the relationship , and look forward to seeing you in austin  again next year .  jim\",0\n\"Subject: re : candidate evaluation , wendi germani  pam ,  we don ' t think wendi has skills required for this job .  vince  from : pam wilson @ enron communications on 03 / 10 / 2000 12 : 27 pm  to : vince j kaminski / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , jonathan  davis / hou / ect @ ect  cc :  subject : candidate evaluation , wendi germani  please complete the attached form and also let me know if you have an  interest in proceeding with wendi .  thanks !  pam\",0\n\"Subject: research and development charges to gpg  dawn :  here is the original notification . i will also send you the one where vera  says  it was never done .  thanks !  shirley  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 08 / 14 / 2000  07 : 46 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  kimberly watson @ enron  06 / 15 / 2000 03 : 26 pm  to : kent miller / et & s / enron @ enron , martha janousek / et & s / enron @ enron , elaine  concklin / et & s / enron @ enron , vera apodaca / et & s / enron @ enron , rod  hayslett / fgt / enron @ enron , vince j kaminski / hou / ect @ ect , pinnamaneni  krishnarao / hou / ect @ ect , shirley crenshaw / hou / ect @ ect  cc :  subject : research and development charges to gpg  vince , krishna and i met to discuss the research and development cross  charges to gpg for january through june . these charges are based upon a  budgeted amount of allocating three resources to the gpg group ( two resources  for revenue management and one resource for gpg marketing ) . we have utilized  the r & d group some during the first half of the year , but not to the full  extent of three resources . vince and krishna have agreed to reverse out some  of the charges that were budgeted january through june . we will revisit this  issue again toward the end of the year to determine if any adjustments are  necessary for july through december .  the budgeted amount january through june has been distributed between the nng  and tw as follows :  research and development  budget ( $ 000 ) nng tw et & s  january $ 46 . 7 $ 46 . 7  february $ 26 . 1 $ 20 . 4 $ 46 . 5  march $ 35 . 9 $ 10 . 2 $ 46 . 1  april $ 34 . 8 $ 10 . 2 $ 45 . 0  may $ 36 . 4 $ 8 . 8 $ 45 . 2  june $ 36 . 4 $ 8 . 8 $ 45 . 2  $ 274 . 7  out of the $ 274 . 7 budgeted for the first half of the year , $ 199 . 7 is to be  reversed back to the research and development department . this reversal will  occur in july . vince , vera apodaca ( ext . x 35980 ) will be our contact to  help facilitate the reversal of these charges .  elaine , the remaining $ 75 . 0 ( $ 274 . 7 - $ 199 . 7 ) is to be allocated with $ 50 . 0  going to the revenue management work order and $ 25 . 0 remaining in o & m .  if anyone has any questions or needs additional information , please don ' t  hesitate to call me ( x 33098 ) . thanks , kim .\",0\n\"Subject: manoj gupta - interview schedule  attached you will find the interview packet for the above - referenced person .  the interview will happen monday , april 16 , 2001 . please print all three  documents for your hard copies . if you have any questions , or conflicts of  schedule , please do not hesitate to contact me .  sasha divelbiss  58714\",0\n\"Subject: maureen ' s presentation  here it is !\",0\n\"Subject: invitation to sunday dinner with vince @ 6 . 30 pm  hi steve & ben ,  we are planning an early sunday dinner ( one of the few evening slots that are  free in vince ' s schedule ) at :  diverso restaurant  85 piccadilly  london wlv 9 hd  tel : 020 7491 2222  it ' s just a few yards to the left of park lane hotel on park lane , close to  hyde park corner underground and we ' ve been there before . vince would like  to discuss the latest developments and it seems like the best opportunity to  do so . please let me know if you can make it and i can make sure the table  is booked accordingly .  regards ,  anjam  x 35383  p . s . vince will be staying at the park lane hotel , telephone number 0171 499  6321\",0\n\"Subject: joint probabilities  michael  tables of joint probabilities for scenario 3 ( 8 % improvement rate during the  regulatory cycle ) are attached .  call if you have any questions .  bob x 35163\",0\n\"Subject: re : aiesec polska - eurolds 2000  szanowny panie kaminski ! ! !  bardzo dziekuje za okazana pomoc !  mimo wielu bledow , ktore popelnilismy , a przede wszystkim to , ze zglosilismy  sie do pana astramowicza zbyt pozno , bardzo nam pomogl . european leadership  development seminar 2000 w polsce sie odbedzie , i postaramy sie , zeby bylo  to wydarzenie na wysokim poziomie ! ! !  jeszcze raz bardzo dziekuje i postaram sie aby nastepne mozliwe informacje o  naszych projektach szybciej docieraly do firmy takiej jak enron , a w  szczegolnosci do takiej osoby jak pan i pan jarek astramowicz .  bardzo dziekuje  z powazaniem  andrzej wodnicki  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com  to : awodni @ sgh . waw . pl  cc : vince . j . kaminski @ enron . com  date : 23 lutego 2000 09 : 37  subject : re : aiesec polska - eurolds 2000  >  > drogi panie andrzeju ,  >  > prosze powolac sie na mnie .  >  > w . kaminski  >  >  >  >  > andrzej wodnicki on 02 / 22 / 2000 04 : 02 : 42 pm  >  > to : vince . j . kaminski @ enron . com  > cc :  > subject : re : aiesec polska - eurolds 2000  >  >  >  > drogi panie kaminski !  >  > bardzo przepraszam za klopot . wiem , ze jest pan niezmiernie  > zajetym czlowiekiem . jednak chcialem zapytac sie pana o jeszcze  > jedna kluczowa dla nas sprawe , ze wzgledy na termin naszego  > wydarzenia - 7 marzec 2000 .  >  > mianowicie , czy byloby mozliwe , aby w  > rozmowie z panem astramowiczem powolac sie na pana .  > wydaje mi sie , ze bardzo by nam pana nazwisko pomoglo .  > bardzo liczymy na pana pomoc ,  >  >  > pozdrawiam  >  > andrzej wodnicki  >  >  >  >  >  >\",0\n\"Subject: norway visit : research agenda  dear all ,  i would like to make myself available for some meetings at the oslo office  during my visit on friday pm , monday and tuesday . i believe bjarne will be  available on tuesday , if not monday , and so would like to arrange the trading  and origination meetings for tuesday ( so that he can attend ) and maybe go  through the energydesk issues on monday . i will also give a presentation ,  probably on monday .  trading : options & volatility curves  it would be useful to meet with the traders along with bjarne ' s team to help  us improve our understanding of the valuation / hedging issues encountered in  trading options ( both european and asian ) . i hope to discuss the vol curves  and will bring the example of the recent work done for the uk electricity  desk where a monthly volatility curve generator and initial half - hourly  forward volatility curve have been developed .  origination :  any issues arising in complex deals ( e . g . dry reservoir , user - time contracts )  etc . perhaps with didrik .  energydesk . com  to support the on - going effort to ensure the accuracy of the energydesk . com  systems , i hope to help james stephen nail - down the reasons for some of the  discrepancies between the energydesk . com valuation and the oslo book ( for  this i hope to meet with trond ) .  exotic options :  if everything runs smoothly , i plan to roll - out the new asian model which  should also help us in improving our electricity volatility curve .  i will be in the oslo office from friday afternoon , and available all day  monday and tuesday . i will be staying at the grand hotel and probably  contactable on my mobile : 07747 86813 .  look forward to meeting you soon !  regards ,  anjam  x 35383  p . s . i will be contactable on my mobile for any urgent queries from london  customers : 07747 868131 , or reachable through catherine / maret ( x 2570 )\",0\n\"Subject: interview schedule for greg mikkelson  attached please find the interview packet for the above - referenced person .  the interview will happen tuesday , july 11 , 2000 . print all three documents  for your hard copies . if you have any questions , or conflicts of schedule ,  please do not hesitate to contact me .  liz alvarado  58983\",0\n\"Subject: multi trigger  vince ,  jere asked that i forward you a copy of the draft presentation on the multi  trigger transactions .  please call if you have any questions .  54426  joana\",0\n\"Subject: brad romine  greg ,  as you may know , brad romine ' s dot . com venture fell apart .  the offer from enron looks much better now . i have arranged for him  a number of different interviews ( including one with you ) . i think we should  not be too  punitive and give him the 2 nd chance . i am also setting up for him interviews  with rac  and ebs and he should be able to negotiate a good first rotation .  please , give me a call if you have any other question .  vince kaminski\",0\n\"Subject: my new position  i wanted to submit my notice of rotation to the \"\" fundamental analysis \"\" group  and thank the fx and country risk group for giving me an opportunity to work  in such exiting learning environment . i really enjoyed being part of the  research group and hope to keep all of the relationships i have developed  throughout my rotation . i am looking forward to my new position as an  opportunity to learn more about the company and to try my abilities in a new  environment . \"\" fundamental analysis \"\" group is a new and developing group ,  which will give me an opportunity to develop and grow as an employee .  i understand that it is my responsibility to train the individual who will  be taking my current position . in an effort to make a smooth transition to  my new rotation i will train the new individual and starting december 18 th  will devote my free time to pursue my new job responsibilities . in agreement  with maureen official start date of new rotation is january 2 nd 2001 .  sincerely ,  yana kristal\",0\n\"Subject: projected fund giving  george -  here is one statistical method ( linear regression ) , applied to hosanna ' s fund  giving . the method is deterministic , where contributions each sunday are  attempted to be explained by significant events on the church ' s and members '  calendars , and the method shoudl be considered in contrast to an anecdotal  one , where each sunday ' s giving might be estimated to be the average giving  of the same sunday ( e . g . , each 2 nd sunday in january ) in the past .  the following effects are estimated independently by the computer ( they add  and subtract with each other accordingly ; some sundays can have more than one  effect \"\" in play \"\" ) :  1 ) most positive for giving : an additional + $ 8 , 802 for special pastoral  appeals ( 3 of them in the past 3 years )  2 ) positive for giving : an additional + $ 2 , 551 easter and nearest - christmas  \"\" sunday , \"\" an additional + $ 59 thanksgiving sunday , and a tiny additional + $ 1  each week pure time trend .  3 ) negative for giving : - $ 304 for sundays of monday federal holiday weekends ,  and - $ 9 during the summer ( june 1 - aug 31 )  4 ) \"\" wave \"\" : there is an $ 80 per week \"\" wave \"\" - giving $ 80 higher one week , $ 80  lower the next , etc . . .  the computer can explain roughly 60 % of the absolute variation in giving the  past 3 years using this approach . keep in mind , much of the information ,  statistically , is captured in the pastoral appeals , easter and christmas  sundays , and holiday weekends . the rest of the variation cannot be explained  by this simple model ( i . e . , it looks like \"\" noise \"\" ) .  here are the predictions for fund giving for the upcoming year . you can  cut - and - paste these numbers to any file or spreadsheet you like . they may  seem \"\" boring \"\" to you ; please remember they are the deterministic components  of a process that involves a lot of volatility , and your church ' s actual  experience will predictably be volatile . these numbers are as - if the \"\" means \"\"  of experiences dependent on the \"\" standard deviations . \"\"  01 / 02 / 00 4611  01 / 09 / 00 4699  01 / 16 / 00 4394  01 / 23 / 00 4705  01 / 30 / 00 4701  02 / 06 / 00 4702  02 / 13 / 00 4703  02 / 20 / 00 4400  02 / 27 / 00 4710  03 / 05 / 00 4706  03 / 12 / 00 4708  03 / 19 / 00 4709  03 / 26 / 00 4710  04 / 02 / 00 4711  04 / 09 / 00 4712  04 / 16 / 00 4713  04 / 23 / 00 7265  04 / 30 / 00 4672  05 / 07 / 00 4717  05 / 14 / 00 4718  05 / 21 / 00 4719  05 / 28 / 00 4416  06 / 04 / 00 4717  06 / 11 / 00 4713  06 / 18 / 00 4714  06 / 25 / 00 4715  07 / 02 / 00 4716  07 / 09 / 00 4718  07 / 16 / 00 4719  07 / 23 / 00 4720  07 / 30 / 00 4721  08 / 06 / 00 4722  08 / 13 / 00 4723  08 / 20 / 00 4724  08 / 27 / 00 4725  09 / 03 / 00 4432  09 / 10 / 00 4742  09 / 17 / 00 4738  09 / 24 / 00 4739  10 / 01 / 00 4740  10 / 08 / 00 4742  10 / 15 / 00 4743  10 / 22 / 00 4744  10 / 29 / 00 4745  11 / 05 / 00 4746  11 / 12 / 00 4747  11 / 19 / 00 4748  11 / 26 / 00 4808  12 / 03 / 00 4750  12 / 10 / 00 4752  12 / 17 / 00 4753  12 / 24 / 00 7305  12 / 31 / 00 4711  best wishes ,  clayton vernon  manager , research\",0\n\"Subject: re : paper - request ( informs meeting in san antonio )  erik ,  i regret to inform you i had to cancel my presentation .  i am working on another presentation on the same topic for  a different audience , and i shall send you the slides .  vince kaminski  erik pruyt on 11 / 28 / 2000 08 : 39 : 11 am  to : vince . j . kaminski @ enron . com  cc :  subject : paper - request ( informs meeting in san antonio )  brussels , 28 / 11 / 2000  ref : md 29 price volatility and probabilistic methods  in the energy market : current challenges  dear sir ,  unfortunately i could not attent the informs 2000  meeting in san antonio . since i am very interested in  the topic you presented there , i would really like to  read the paper you presented or have a look at the  slides you showed .  could you please be so kind as to send me a copy of  the paper ? or could you tell me where i might find  your paper ( already published ) ?  thank you so much .  yours sincerely ,  erik pruyt  free university of brussels  = = = = =  erik pruyt erik . pruyt @ vub . ac . be or erikpruyt @ yahoo . com  vrije universiteit brussel , faculteit esp , dienst stoo - csoo  pleinlaan 2 , 1050 brussel , belgium , tel : + 32 / ( 0 ) 2 629 20 64  private address : stockemstraat 14 , b - 3040 huldenberg , belgium  tel : ( + 32 ) 2 / 6875257 handy : ( + 32 ) 496185687 fax : ( + 32 ) 2 / 6883760  do you yahoo ! ?  yahoo ! shopping - thousands of stores . millions of products .  http : / / shopping . yahoo . com /\",0\n\"Subject: e & p company model  mark ,  did you have a chance to review the e & p company model  ( the old cash flow mode ) and determine if it can be used  by fred lagrasta ' group .  please , let me know .  vince\",0\n\"Subject: re : european energy 2000 , april , amsterdam  angela ,  no problem . i shall be glad to do it .  happy holidays if i don ' t hear from you .  vince  \"\" angela adedeji \"\" on 12 / 14 / 99 12 : 00 : 40 pm  please respond to \"\" angela adedeji \"\"  to : vince j kaminski / hou / ect @ ect  cc :  subject : european energy 2000 , april , amsterdam  hi vince  re : european energy 2000 , 3 & 4 april , amsterdam  i hope all is well . i wondered whether or not you would be interested in  chairing the stream of your talk ?  i look forward to hearing from you soon .  kind regards  angela  - attl . htm\",0\n\"Subject: greg whalley ' s new office location  greg whalley and i have moved to the 33 rd floor .  greg ' s new office location is eb 3324 - steno # 549  i ' m located at eb 3322 - steno # 598  many thanks ,  liz taylor\",0\n\"Subject: london meeting  dear vince  could you let me know when you are able to meet riskcare ? i will try to  reach you in houston , otherwise i will give anjam ' s office a call  tomorrow .  regards  manuel  manuel rensink  riskcare - financial technology services  piercy house  7 copthall avenue  london  http : / / www . riskcare . com  tel : + 44 ( 0 ) 20 7562 3400  fax : + 44 ( 0 ) 20 7562 3401  about riskcare  since riskcare ' s inception in 1994 , we have specialised in providing  pre - eminent services and pioneering tools to the financial markets  industry .  riskcare offers :  * a range of hands - on technology services for systems implementation  and operation , including development , integration , support , technical  skills and software selection  * a range of financial engineering services , including model  validation , risk advisory , analytics integration , development of pricing  models for derivative instruments and front office analytics such as  willow , a revolutionary tool for option pricing\",0\n\"Subject: it compliance  after 23 years of service to enron , alberto gude retired on april 30 , 2000 .  on behalf of the many personnel that knew and worked with alberto , i want to  thank him for his dedication to enron and also for his friendship and  mentoring that he provided to so many . we wish alberto , his wife maria , and  their children steven and michelle all our very best .  following alberto \u0001 , s retirement , the following organizational changes will  take place immediately within the it compliance group .  andrew parsons , senior director , will be responsible for all corp . it  compliance activities . andrew will report directly to me .  mark thibodeaux , director , will continue working primarily on information  security evaluations and technical reviews . mark has 16 years of experience  as an it security expert and ten years as a cpa .  stephen simpson recently joined it compliance as a director . steve came to  enron with 8 years of experience in arthur andersen \u0001 , s computer risk  management practice . steve will focus on application risk management .  the corp . it compliance group is responsible for enterprise wide information  technology reviews and it risk management compliance activities . these  activities include ensuring that our systems and related processes are  secure , available , operating with integrity and are adhering to audit  standards developed in conjunction with arthur andersen .  please join me in congratulating andrew , mark and steve on their new  responsibilities .\",0\n\"Subject: departure of grant masson  the research group :  it is with a deep sense of regret that i announce that grant masson will be  leaving the research group and enron , effective today .  grant has been a very important part of the research group ' s growth and  stability within enron and he will be deeply missed .  we wish him the very best in his new venture and want to send him off with  all the \"\" good \"\" wishes and support that he deserves . however , since i  will be out of town all next week , we will postone the \"\" good luck and  best wishes \"\" party for grant until sometime within the next 3 weeks . an  announcement will be forthcoming at a later date .  please take a minute to wish grant the \"\" best \"\" .  sincerely ,  vince\",0\n\"Subject: re : gwen koepke  i will see you on friday at 3 . if you would like for me to come before then ,  just let me know .  - - - - - original message - - - - -  from : kaminski , vince  sent : wednesday , may 02 , 2001 3 : 01 pm  to : labbe , anne  cc : kaminski , vince  subject : re : gwen koepke  anne ,  thanks for contacting me about this .  as a matter of fact , i wanted to talk to you about it  today as this matter was outstanding for a long time .  i think we should go ahead and adjust gwen to manager ,  effective march 1 . the compensation would be her current base plus  10 k . this is what we typically do when we promote an associate to a manager .  such promotions take place in march and i think  gwen should not be penalized for the inefficiency of her management  ( i . e . my and maureen ' s procrastination ) .  on unrelated and more serious matter . gary hickerson is the primary client  for maureen ' s services . he communicated to me a few weeks ago that he is  unwilling to underwrite maureen ' s position ( he is in general unhappy with  her contribution ) . this means that maureen will have to find another sponsor  or leave enron .  given her abrasive and aggressive personality finding another internal  customer  will be quite a challenge .  gary volunteered to pay a very generous severance to maureen from his budget .  i would like to talk to you about it when you have a few minutes .  vince  from : anne labbe / enron @ enronxgate on 05 / 02 / 2001 10 : 34 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : gwen koepke  vince ,  just wanted to touch base with you . i have tried to contact maureen so that  gwen ' s title and salary can be adjusted to manager just as you requested , but  have not heard any response from her . would you like for me to wait until i  hear from maureen or should i go ahead and proceed in changing her title ? i  just want to make sure that gwen is in the right peer group during prc .  also , i am going to try and set up a meeting with you next week through  shirley to discuss any buring issues that you are experiencing , and your  expectations during prc .  thanks ,  anne\",0\n\"Subject: phone number in france :  mes amis ,  in case of emergencies , you can reach me after july 3 at 011 33 4 50 02 22  12 .  france is 7 hours later than houston , i . e . 11 : 00 am in houston is cocktail  hour ( 6 : 00 pm ) in france .  affecteusement ,  grant .\",0\n\"Subject: elena chilkina  hi\",0\n\"Subject: clean fuels - gpg business segment  dwight and i are working to develop an updated valuation for the mtbe and  methanol business segments . we would appreciate assistance from your group  in assessing the market over the next 3 - 4 years .  with the octane shortage this summer , and the strong gas and oil price  environment , mtbe prices are well above budgeted levels . how will  political / environmental issues affect mtbe prices over the next few years .  methanol prices are also now very favorable , but it would seem that north  american methanol producers will be disadvantaged if gas prices in na remain  higher than the rest of the world .  your thoughts on these and any other factors affecting prices would be most  helpful . both dwight and i are available to meet with you or a member of  your group as soon as convenient .  thanks , sorry we missed you today .  jng\",0\n\"Subject: fwd : billing question  return - path :  received : from rly - yao 3 . mx . aol . com ( rly - yao 3 . mail . aol . com [ 172 . 18 . 144 . 195 ] )  by air - yao 5 . mail . aol . com ( v 67 . 7 ) with esmtp ; mon , 10 jan 2000 07 : 03 : 24 - 0500  received : from abbott . office . aol . com ( abbott . office . aol . com [ 10 . 2 . 96 . 24 ] )  by rly - yao 3 . mx . aol . com ( 8 . 8 . 8 / 8 . 8 . 5 / aol - 4 . 0 . 0 ) with esmtp id haal 1942 for  ; mon , 10 jan 2000 07 : 03 : 24 - 0500 ( est )  received : from sunphol . ops . aol . com ( sunphol . office . aol . com [ 10 . 5 . 4 . 200 ] ) by  abbott . office . aol . com with smtp ( 8 . 8 . 6 ( phne _ 14041 ) / 8 . 7 . 1 ) id haal 1465 for  ; mon , 10 jan 2000 07 : 03 : 22 - 0500 ( est )  received : from 0 by sunphol . ops . aol . com ( smi - 8 . 6 / smi - svr 4 ) id haa 28403 ; mon ,  10 jan 2000 07 : 03 : 21 - 0500  message - id :  from :  to :  date : 01 / 10 / 2000 20 : 04 : 28  reply - to :  subject : re : billing question  dear valued member ;  thank you for taking time to write us . i apologize for the frustration you  are experiencing with america online . i appreciate your patience and  understanding regarding this matter .  upon reviewing your account record there was a failed transaction on your  account which was the amount of your subcription to aol annual plan , this  bill was just been \"\" resubmitted \"\" on your next month billing date . so that we  can answer your questions and concerns in a timely manner it is requested  that along with your response , please include your correct last four numbers  of your current payment method .  you may of course contact our billing department directly at 1 - 800 - 827 - 6364  or 1 - 888 - 265 - 8003 toll free number between 6 : 00 am to 2 : 00 am est . seven days  a week and they will be happy to assist you . i do apologized for any  inconvenienced this matter has may caused you .  we hope we have provided you with useful information about your inquiry . if  you have any further questions , please feel free to write us back . take care  and wishing you all the best and happiness in life . we greatly appreciate  your aol membership and customer service is important to us . we hope that  you were satisfied with the service you have received .  marvin l .  customer care consultant  billing department  america online , inc .  - - - - - - - - - - original message - - - - - - - - - -  from : vkaminski @ aol . com  to : billingl @ abbott . office . aol . com  field 1 = wincenty kaminski  field 2 = 10 snowbird  field 4 = the woodlands  field 5 = texas  field 6 = 77381  field 7 = 0057  field 8 = other ( please give details below )  field 9 = i have just sent you another message . i have inspected the bill  summary for the last and current months , and it seems that my payment plan  has been changed by you without my authorization . last year i was on a flat  annual payment plan ( about $ 220 per year ) , paid in one installment . i did not  agree to switch to any other plan , unless you asked me a question regarding  the billing in a vague or deceptive way . i hope that you will look into this  matter promptly and refund any excessive charges .  w . kaminski  field 10 = texas  field 11 = other - see comments  x - rep : 822  x - mailid : 583192  x - queue : 4  x - mailer : swiftmail v 3 . 50\",0\n\"Subject: invites for australian energy risk 2000 july 17 - 18  dear lucie ,  when i agreed to speak at the above conference , it was agreed that enron  could bring another staff member to attend gratis . however , i noticed that  enron is actually providing two speakers - dr vince kamainski and myself . it  would be appreciated if we could instead of sending two staff members to the  same seminar that enron sends one staff member to the aust energy seminar and  one staff member to the risk 2000 - sydney seminar in august 22 - 23 . the  length & pricing are similar for both the seminars .  upon your reply , i will supply the names of the staff members , there is  strong internal competition to go .  thank you , raymond  715 pm 4 july  \"\" lucie deathridge \"\" on 05 / 25 / 2000 09 : 30 : 25 am  please respond to \"\" lucie deathridge \"\"  to :  cc :  subject : australian energy risk 2000  thank you for agreeing to speak at the australian energy risk 2000  conference in sydney in july . last week i sent a speaker pack to you . i  would be grateful if you would confirm receipt of this by return of email .  in the event that you have not received it please let me know immediately  and send me your full contact details . i am the co - ordinator of this  conference and please do not hesitate to contact me if you have any queries .  regards  lucie deathridge  conference co - ordinator  risk publications  ?  tel : ( + 44 ) ( 0207 ) 484 9867\",0\n\"Subject: re : alp presentation  fyi  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 30 / 2001 02 : 05 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" dennis w . loughridge \"\" on 04 / 30 / 2001 10 : 49 : 10 am  please respond to  to :  cc :  subject : re : alp presentation  vince  i will be attending the alp presentation on may 7 and would be pleased to  join the team for dinner if it is not too late .  thank you  dennis loughridge  dennis w . loughridge  director of energy consortium  rice university  713 - 348 - 2812  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : tuesday , april 10 , 2001 8 : 16 am  to : loughrid @ rice . edu  cc : luigical @ rice . edu  subject : alp presentation  sorry , trying again . i probably got a wrong e - mail address and the original  message  was returned .  vince kaminski  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 10 / 2001  08 : 15 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  04 / 10 / 2001 08 : 13 am  to : barrett @ rice . edu , uecker @ rice . edu , cmiller @ rice . edu ,  lounghrid @ rice . edu , luigical @ rice . edu  cc : vince j kaminski / hou / ect @ ect , christie patrick / hou / ect @ ect , shirley  crenshaw / hou / ect @ ect , kenneth parkhill / na / enron @ enron  subject : alp presentation  on behalf of enron corp . i would like to invite you to an alp project  presentation by a group of students  of jesse h . jones graduate school of management , rice university .  the students will present the results of a research project regarding  electronic trading  platforms in the energy industry .  the presentation will be held on may 7 , at 4 : 00 p . m . at enron , 1400 smith .  we would also like to invite you to dinner , following the presentation .  vince kaminski  vincent kaminski  managing director - research  enron corp .  1400 smith street  room ebl 962  houston , tx 77002 - 7361  phone : ( 713 ) 853 3848  ( 713 ) 410 5396 ( cell )  fax : ( 713 ) 646 2503  e - mail : vkamins @ enron . com\",0\n\"Subject: various market data charges to the research group for february 2001  clifford :  in reviewing our february eis billing summary for co # 0413 , cc # 107043 ,  i have several questions .  telerate : ( february charges : $ 3 , 032 , 35 )  i polled the group and only one person has asked for telerate and he is  not shown being charged for it . that is jason sokolov . he would like to  have access to telerate . if you could let me know how to get that for him .  the largest percent of the telerate charges appear to be for maureen  raymond , who says that she does not use telerate . could she be accessing  some data that she does not know is telerate ? please let me know . if there  are individual accounts for telerate the only one we need is for jason  sokolov ,  unless maureen ' s charges are for something that she does not know is telerate .  tanya tamarchenko does not need telerate and she has the second largest  percentage of the charges . anyway , the only telerate subscription we need is  for jason sokolov .  reuters : ( february charges : $ 405 . 96 )  no one in research uses reuters . i believe most of the charges are for  hector  campos who used it when he was on the trading desk . when he rotated into the  research group he did not need it any longer , but is still being billed for  it . please  remove from the research cost center .  the following individuals are no longer with enron or no longer with research  and their accounts should be removed from the research cost center .  clayton vernon no longer with the research group remove his lim / lim / excel  and lim core charges from the research cost center  brad amoine no longer with enron remove his lim / lim / excel and lim core  charges from the research cost center  shalesh ganjoo no longer with the research group remove his lim and lim core  charges from the research cost center  i hope this is not too confusing !  please advise .  thanks !  shirley crenshaw\",0\n\"Subject: linear programming software purchase  vince ,  i ' d like to purchase some copies of the xpress lp solver for the gas storage  optimization model . we have previously discussed the purchase of cplex , but  after trialing both systems , have found some worthwhile advantages with  xpress . if others find planner / cplex best suited to their application , i  see no problem is their use of a different system - both have strengths , and  it is likely that i would use planner / cplex myself on some future project if  we were to have both systems available .  xpress is particularly suited to my application because it handles special  ordered sets . this is a very efficient way of representing the storage  ratchets as the integer search process is able to use the extra information  provided by the set , rather than just using binary integer variables to  represent the ratchets .  planner is a c + + interface for cplex . it has some significant limitations ,  and does not permit access to all cplex features .  dash optimization have made the following offer :  all software purchases made by enron this year will be at 30 % off the list  price - we do not need to make a single purchase of any specific quantity of  licenses to obtain this discount .  90 days of full maintenance services will be provided with the purchase .  the emosl utility will be provided at no cost .  the xbsl system will be provided at no cost when it is released in a few  weeks time .  for the gas storage optimization model , i would like to purchase :  one development license , hyper version , with modeller , primal / dual simplex ,  mip search , dlls , emosl and xbsl when available .  list price $ 10 , 000 discounted price $ 7 , 000  two run time licenses for above ,  list price total $ 8 , 000 discounted price $ 5 , 600  total cost $ 12 , 600  i ' ve used the usually security request system to set the purchase process  going , should you agree to this .  tom .\",0\n\"Subject: re : power play book  vince ,  i ' m really feeling like a blind mouse about this because i haven ' t ( nor has  christie , mike and mark ) read mr . mehta ' s comments . i believe that we would  be better equipped to discuss the course of action that should be taken , if  any , after we are well versed with mr . mehta and his perspectives .  although , i do suggest that if we do decide to proceed , we should approach it  by addressing the issues mr . mehta discussed under a different premise , i . e .  sponsor a speaking engagement where one of the speakers ' topics would be  related to mr . mehta ' s topic - allowing us to strategically tell our side of  the story without it appearing that this is a planned rebuttal . we should  specifically invite those who attended mr . mehta ' s engagement , but not limit  it to this group .  let ' s all discuss this once our group has read mr . mehta ' comments .  regard ,  cindy  vince j kaminski @ ect  10 / 12 / 2000 04 : 37 pm  to : cindy derecskey / corp / enron @ enron  cc : mark palmer / corp / enron @ enron , christie patrick / hou / ect @ ect , michael b  rosen / hou / ect @ ect , vince j kaminski / hou / ect @ ect  subject : re : power play book  cindy ,  i had rather in mind targeting the same audiences to which mr . mehta spoke ,  not a general press release . i agree that a general message to the world  would  attract attention .  vince  from : cindy derecskey @ enron on 10 / 12 / 2000 03 : 55 pm  to : vince j kaminski / hou / ect @ ect  cc : christie patrick / hou / ect @ ect , michael b rosen / hou / ect @ ect , mark  palmer / corp / enron @ enron  subject : re : power play book  vince ,  you are a saint for lending me a copy of your book . i agree with you that we  don ' t want increase there revenues even by a $ 1 . 00 , although my  recommendation ( and mark palmer ' s as well ) is that we should pursue a  rebuttal for the following reasons :  as i mentioned i scoured the internet ( britannica . com , amazon . com , yahoo . com  and dow jones ) and could not find one mention of the book , therefore mr .  mehta ' s distribution must not be wide at all . consequently , his comments may  not have reached a large audience . issuing a rebuttal , may in fact , draw  more attention to the comments and issues then they are currently receiving .  i believe we should proceed with caution , and respond accordingly ( with  counter comments ) only when comments are solicited from us . so far , we have  not received any telephone inquiries from media in relation to mr . mehta ' s  enron bashing . may be we should ' leave the stones unturned ' .  let me know what you think . also , please contact me when it is convenient  for me to borrow the book from you .  regards ,  cindy  vince j kaminski @ ect  10 / 12 / 2000 03 : 38 pm  to : cindy derecskey / corp / enron @ enron  cc : vince j kaminski / hou / ect @ ect  subject : re : power play book  cindy ,  i got a copy of the book and another one is on the way from our officer in  india .  i can lend you the book and you can makes copies of the most important  chapters .  i don ' t think we should be buying too many copies and increasing the sales of  the book .  in general , i think that we should counter the presentations made by mr .  mehta . the person in charge of  our dhabol operation is a stanford graduate and maybe he could obtain an  invitation  to speak at the same forum and present the facts as they are . he should be  here for the management  conference .  vince  from : cindy derecskey @ enron on 10 / 11 / 2000 01 : 30 pm  to : vince j kaminski / hou / ect @ ect  cc : christie patrick / hou / ect @ ect , michael b rosen / hou / ect @ ect  subject : power play book  good afternoon vince ,  christie patrick mentioned to me the conference that your wife recently  attended at stanford . at this coference abahy mehta discussed his / her  recently published book ' power play ' - that certainly does not flatter  enron . i have conducted a search on amazon . com , britannica . com and dow jones  and i am coming up empty handed . would you be kind enough to briefly trouble  your wife to provide any other information she may remember , so i can narrow  my search .  i greatly appreciate it .  regards ,  cindy\",0\n\"Subject: christmas baskets  here is the final list for christmas baskets for this year  with the exception of stinson gibner and vasant shanbhogue .  any comments or questions please call x 34710 .  thanks  kevin moore  we still have plenty of time . . . . . .  deadline date : december 12 , 2000\",0\n\"Subject: i ' m in hospital ! ! !  i ' ve had a burst appendix and pneumonia .  call debbie for details on 936 - 321 - 8836 ( home ) or 936 - 499 - 4996 ( cell ) or me  directly on 713 - 598 - 0732 ( but i share a room with someone , so we may disturb  them . . . .  steve  - - - - - - - - - - - - - - - - -  tel : 713 - 345 - 8980  cell : 713 - 598 - 0732\",0\n\"Subject: wti maket maker simulation model  john ,  we finished the version 2 of the simulation model which deals with the  open - close trading versus the continuous trading in the previous version .  i added the cummulative p / l as an output . there are a few apparent trading  strategies from this model :  1 ) higher bid / offer spread , more profit  2 ) more daily # of trades , more profit  3 ) smaller net open positions allowed , more profit  1 ) and 2 ) are obvious , but 3 ) is more interesting . it means that we are  better off  if we do not allowed net open positions at end of the day . in a trending  market ,  this makes an intuitive sense , for example , in the case of bull market we are  short as a market maker and we can avoid the loss at the higher openning price  by keeping zero or small net short positions .  i have attached the model with this mail , and i ' ll be happy to discuss the  model  in more details with you .  zimin\",0\n\"Subject: good meeting  mark :  i enjoyed our meeting last tuseday very much and i look forward to calling  you again in a week or so . i think your idea of having me present to several  senior enron executives including koenig and , perhaps , jeff skilling is very  good .  i discussed this a bit with vince kaminski on thursday as well and he  expressed a strong interest in attending the meeting as well .  regards ,\",0\n\"Subject: request for two powerpoint presentations from risk 2000 conferenc e  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 06 / 26 / 2000  10 : 55 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" bryson , allen \"\" on 06 / 26 / 2000 09 : 17 : 07 am  to : \"\" ' vkamins @ enron . com ' \"\"  cc :  subject : request for two powerpoint presentations from risk 2000 conferenc e  vince ,  i would like to receive copies of both your energy risk and weather  presentations from the risk 2000 conference in boston .  thanks ,  allen bryson  conoco\",0\n\"Subject: re : houston trip  i extended the rental on the apartment until the 20 th of november .  shirley  vince j kaminski  10 / 30 / 2000 01 : 31 pm  to : shirley crenshaw / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : houston trip  shirley ,  i hope it ' s ok with the apartment company .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 30 / 2000  01 : 38 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron capital & trade resources corp . - europe  from : sharad agnihotri 10 / 30 / 2000 11 : 40 am  to : paulo issler / hou / ect @ ect , zimin lu / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : houston trip  hi all ,  i am hoping to come to houston from the 5 th to the 17 th of november .  sorry about the short notice .  looking forward to seeing you .  sharad agnihotri\",0\n\"Subject: re : charm  jim ,  charm looks more like a prototype that requires a lot of work to make it  more a  production tool .  we have developed a similar model ( without some nice functionalities charm  has )  in about two weeks , at request of rick jones who joined ees from hsb . rick  worked on a similar model at his old company and wanted to have a similar  tool  for his projects with enron . i can tell you more about it when we meet  ( hopefully ) later  this week .  i would tell willis that the model requires more work before enron can  consider it as commercial product .  vince  james l bouillion  04 / 11 / 2001 06 : 52 am  to : vince j kaminski / hou / ect @ ect  cc : jonathan davis / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect  subject : re : charm  vince , what feedback should i give willis on their charm product ?  - - - - - - - - - - - - - - - - - - - - - - forwarded by james l bouillion / hou / ect on 04 / 11 / 2001  06 : 50 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  james l bouillion  04 / 11 / 2001 06 : 50 am  to : \"\" bertil olsson \"\" @ enron  cc :  subject : re : charm  no word yet . i will follow up with the attendees .  thanks for taking thje time to make the presentation .  \"\" bertil olsson \"\" on 04 / 10 / 2001 04 : 07 : 11 pm  to : james . l . bouillion @ enron . com  cc :  subject : re : charm  jim ,  any feed - back on our meeting ? we certainly appreciated the opportunity and  the fact that the meeting was very interactive .  regards ,  bertil  the information in this email and in any attachments is confidential and  may be privileged . if you are not the intended recipient , please destroy  this message , delete any copies held on your systems and notify the sender  immediately . you should not retain , copy or use this email for any  purpose , nor disclose all or any part of its content to any other person .\",0\n\"Subject: the main list should be :  michael farmer - ceo merchanting ( michael . farmer @ mgmcc . co . uk )  thomas boettcher ( thomas . boettcher @ mgmcc . co . uk )  michael hutchinson - chairman mg ltd ( michael . hutchinson @ mgltd . co . uk )  tim jones - md mg ltd - head of trading ( tim . jones @ mgltd . co . uk )  russell plackett - head of options trading ( russell . plackett @ mgltd . co . uk )  christian schirmeister - director of marketing  ( christian . schirmeister @ mgltd . co . uk )  alex heath - it development ( alex . heath @ mgltd . co . uk )  phil bacon - head of concentrates trading ( philip . bacon @ mgusa . com )  jo robertson - senior executive ( joe . robertson @ mgusa . com )  tom mckeever - chairman mg plc ( tom . mckeever @ mgplc . co . uk )  regards  vince j kaminski  07 / 07 / 2000 22 : 04  to : lloyd fleming / lon / ect @ ect  cc : maureen raymond / hou / ect @ ect , vince j kaminski / hou / ect @ ect  subject : re :  lloyd ,  yes , this would be very useful . i was told that we should not do any official  business with  mg until july 15 . i don ' t want to violate those rules of engagement and go  beyond casual contacts .  after the 15 th all the stops are off .  vince  from : lloyd fleming 07 / 07 / 2000 01 : 51 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : re :  no problem - i do think this could wait until mg are more closely integrated  in any case . a useful first step might be an email to relevant trading  staff at mg outlining briefly what maureen does and how she can provide a  service to them . would you like me to send her a list of potential people to  email ?  regards  lloyd  vince j kaminski  06 / 07 / 2000 23 : 39  to : lloyd fleming / lon / ect @ ect  cc : vince j kaminski / hou / ect @ ect , maureen raymond / hou / ect @ ect  subject : re :  lloyd ,  i think that we can arrange a few video conference meetings instead .  i don ' t see a justification for extending the stay over the weekend if we  have an alternative solution .  vince  enron capital & trade resources corp . - europe  from : lloyd fleming 07 / 06 / 2000 12 : 37 pm  to : vince j kaminski / hou / ect @ ect  cc : maureen raymond / hou / ect @ ect  subject :  vince  i met maureen yesterday and had a useful discussion on her role within  enron . i think it would be very helpful to promote the research group  function of the company , particularly given maureen ' s background , if she  could be introduced to some of the main traders down at mg . unfortunately  she won ' t have time to meet with mg unless we can schedule some meetings on  monday .  would you be happy for her to extend her stay here till monday to allow the  meetings to take place ?  regards\",0\n\"Subject: off work  all  i will be taking the following days off work :  thursday 9 th march ( all day )  friday 10 th march ( all day )  monday 13 th march ( all day )  tuesday 14 th march ( all day )  wednesay 15 th march ( morning only )  steve\",0\n\"Subject: continue enjoying iijournals - - renew today !  dear vince kaminski ,  we hope you are enjoying the benefits of receiving market - leading , rigorous and current research from industry experts through your subscription to derivatives quarterly .  unfortunately , your subscription is about to expire ! by renewing now , your access to the web site and to your print copies will be uninterrupted .  you can continue to get the exclusive research and practical advice for financial practitioners - written by the best minds in your business !  click here to renew today  thank you .\",0\n\"Subject: more jcc  the historical context . . .  - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin kindall / corp / enron on 12 / 20 / 2000  05 : 43 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  kevin kindall  11 / 28 / 2000 09 : 29 am  to : russell dyk / corp / enron @ enron  cc :  subject : jcc writeup  - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin kindall / corp / enron on 11 / 28 / 2000  09 : 32 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  kevin kindall  09 / 28 / 2000 04 : 44 pm  to : james pyke / ap / enron @ enron  cc :  subject : jcc writeup  here are the results that i sent to marc de la rouche . the answers to both  questions below is \"\" yes . \"\" as mentioned earlier , i ' ll send the complete  analysis along with explanations tomorrow . incidentally , here is a list of  contacts regarding lng and jcc . its a bit dated , but may prove useful .  clay harris lng houston ( 713 ) 853 - 1631  brad hitch lng houston ( 713 ) 345 - 5140  marc de la roche global fuels houston ( 713 ) 853 - 3949  victor santos global fuels singapore ( 65 ) 838 - 9041  li yin lim global fuels singapore ( 65 ) 838 - 9029  vv rao lng singapore ( 65 ) 838 - 9043  - kevin kindall  - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin kindall / corp / enron on 09 / 28 / 2000  04 : 37 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : marc de la roche @ ect 06 / 06 / 2000 02 : 50 pm  to : kevin kindall / corp / enron @ enron  cc : grant masson / hou / ect @ ect , vince j kaminski / hou / ect @ ect  subject : re : jcc  that this email constitutes your groups ( vince kaminski ' s ) sign - off on using  this hedge ratio to hedge jcc and jcc - based products ?  thanks in advance ,  marc de la roche  kevin kindall @ enron  06 / 06 / 2000 02 : 18 pm  to : marc de la roche / hou / ect @ ect  cc : grant masson / hou / ect @ ect  subject : re : jcc & brent  good afternoon . i have performed a review of the jcc data that you sent  some time ago . the study was done using several different excel workbooks ,  and are available upon request . relevant charts are embedded in the  powerpoint attachment . questions / comments welcome .  - kevin kindall\",0\n\"Subject: re : enron alp  vince ,  many thanks for the invitation . ? i ' m leaving for a conference in new orleans  today and won ' t be in town . ? however , i ' d love to join you if dinner should  happen again in the future .  thanks again for all your support and interest in the alp program . ? i feel  confident that this will be a great project .  carrie  at 10 : 03 am 1 / 24 / 01 - 0600 , you wrote :  carrie ,  we have invited the team to dinner thursday , 7 : 00 p . m .  would you loike to join us ?  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 24 / 2001  10 : 04 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  pamela vande krol castro on 01 / 22 / 2001 06 : 18 : 16 pm  to : ? ? kenneth . parkhill @ enron . com , vkamins @ enron . com  cc :  subject : ? enron alp  dear alp company representatives :  thank you again for your participation in the alp company day at rice  university . we are pleased to inform you that your project proposal has  been chosen for the 2001 alp program . the following students will be  working on your project :  ? ? calabrese , luigi ? ? ? ? ? ? ? luigical @ rice . edu  ? ? ghose , ivy ? ? ? ? ? ? ? ? ? ? ? ? ? ghosei @ rice . edu  ? ? ghosh , ronnie ? ? ghoshr @ rice . edu  ? ? iqbal , syed ? ? ? ? ? ? ? ? ? ? ? ? iqbal @ rice . edu  ? ? sud , pravas ? ? ? ? ? ? ? ? ? ? ? ? pravas @ rice . edu  ? ? womack , charles cwomack @ rice . edu  the faculty liaisons for your project are :  ? ? barrett , deborah ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? barrett @ rice . edu  ? ? uecker , will ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? uecker @ rice . edu  ? ? loughridge , dennis ? ? ? ? ? loughrid @ rice . edu  a representative from the student team will contact you soon to set up  meeting time . if you need to contact your team , i have included the  students ' email addresses . they check their email on a regular basis , so  this is a good way to communicate with them .  please let me know if you have any questions regarding this information .  again , thank you for your interest in the jones school . best wishes for  great project !  carrie chamberlin miller  director of mba program  rice university  6100 main street , ms 531  houston , texas 77005 - 1892  phone : ( 713 ) 348 - 5260  fax : ( 713 ) 348 - 5251  e - mail : cmiller @ rice . edu  http : / / www . ruf . rice . edu / ~ jgs /  pamela castro  mba program associate  rice university  phone : 713 - 348 - 6223  fax : 713 - 348 - 5251  e - mail : castro @ rice . edu  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  carrie chamberlin miller  director of mba program  jesse h . jones graduate school of management  rice university  6100 main street , ms 531  houston , texas 77005 - 1892  phone : ? ( 713 ) 348 - 5260  fax : ? ( 713 ) 348 - 5251  e - mail : ? cmiller @ rice . edu  http : / / www . ruf . rice . edu / ~ jgs /\",0\n\"Subject: the garp 2001 convention : invitation to speak  invitation to speak  garp 2001  the 2 nd annual risk management convention  13 th & 14 th february , 2001 \u0001 ) marriott world trade center , new york  dear kaminski  further to my telephone conversation today with your secretary , shirley  crenshaw , and on behalf of the global association of risk professionals , i  have great pleasure in inviting you to speak at our 2 nd annual risk  management convention \u0001 ) garp 2001 .  this event has rapidly establishing itself as the risk management industry \u0001 , s  most important meeting point . garp 2000 reflected the key concerns of risk  management experts world - wide , with over 400 attendees in its first year .  three simultaneous streams address traditional pricing and risk management  techniques , along with specialised streams addressing new sectors , such as  the corporate world and the insurance industry . with a speaker panel of over  55 senior and executive financial professionals from investment banks ,  regulatory bodies , asset management firms , academics , insurers / re - insurers ,  corporate and system providers this is the financial risk management event  of the year .  key areas that this convention will consider include market risk ( stress  testing , liquidity , jump diffusion , evt ) , credit risk ( regulation , modeling ,  stress testing , credit portfolio management , credit derivatives ) ,  operational risk , ( regulation , data , modeling , validation , evt ) advanced  asset & liability management , corporate / energy risk management and the  insurance & capital markets .  from my research and discussions with experts in this arena your name was  highly recommended as a speaker for this event . below is the stream on  corporate / energy risk management and i had in mind one of the sessions  below for you . also , the topic titles are provisional and i am open to  suggested alterations .  corporate / energy risk management  modelling corporate risk \u0001 ) risk management from a shareholder value  perspective  measuring energy risk \u0001 ) tackling price volatility , adapting var , scenario  modelling and regulatory requirements  forward pricing \u0001 ) construction of the forward curve , correlations ,  transparency issues  the volatility challenge \u0001 ) modelling price volatility and examining the new  products designed to stabilise volatility  energy credit risk management  garp is a not - for - profit , independent organisation of risk management  practitioners and researchers from leading financial institutions  world - wide . garp \u0001 , s mission is to facilitate the exchange of information ,  developing educational programs and promoting standards in the area of  financial risk management . for more information please refer to our web  site : www . garp . com  i sincerely hope you will be able to accept this invitation and i look  forward to hearing from you in due course . should you have any questions  please do not hesitate to contact me , otherwise i will call you again on to  discuss this further .  best regards  andreas  ps i have also attached a copy of garps 2000 program for your attention .  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  andreas simou  garp 2001 - conference producer  tel ? + 44 ( 0 ) 20 7626 9301  fax + 44 ( 0 ) 20 7626 9900  - draft programme . doc  - g 2000 b & wlowr . pdf\",0\n\"Subject: eol wti trading simulation  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 12 / 22 / 2000  01 : 28 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  stinson gibner  12 / 22 / 2000 01 : 24 pm  to : ted murphy / hou / ect @ ect  cc :  subject : eol wti trading simulation  ted ,  maximum daily loss was $ 12 . 2 mm on a daily move of $ 1 . 74 when we would have  started the day already near the position limit of 5 mm bbl .  - - stinson\",0\n\"Subject: power spread option - curve access request  kevin ,  i am helping doug for building a model to price power spread options he saw  in the market . this includes power capacity , transmission , heating rate  options , etc .  i do not have the access to the power curves in m : \\ power 2 \\ region as i used  to .  i need your permission to regain the read - only access to the curves .  thanks in advance .  zimin lu  research  x 36388\",0\n\"Subject: cera conference call : mexican energy in transition - - update - cera  conference call  cera conference call : sent tue , november 07 , 2000  title : cera conference call : mexican energy in transition - - update  author : latin america energy team  e - mail category : conference call  product line : latin american energy ,  url : http : / / www . cera . com / cfm / track / eprofile . cfm ? u = 5166 & m = 1414 ,  alternative url :  latin america energy conference call and web  presentation  a cambridge energy research associates conference call &  web presentation  topic  mexican energy in transition - update  * cera ' s view on the fox administration  * cabinet announcements  * mexico ' s energy sector dynamics  format  at the time listed below , our speakers will address this  topic for approximately 30 minutes , with accompanying  graphics presented on the internet , followed by an open  question and answer period .  speakers  sondra scott , cera director , latin american energy  time  11 : 00 a . m . eastern , thursday , november 16 , 2000  eligibility  clients eligible to participate in this conference call  are those who subscribe to the latin america energy  retainer advisory service .  to enroll  to enroll , please contact ms . nelly rivera via fax at  ( 617 ) 576 - 8763 , or enroll via e - mail at nrivera @ cera . com  before 4 : 00 p . m . , wednesday , november 15 , 2000 .  audio netscape navigator 3 . 02 or  higher ; or sun hot java ( tm )  * close all desktop applications and disable your screen  saver  technical assistance  u . s . callers : if you are experiencing difficulties  during the call , you may signal for technical assistance  by pressing * 0 ( star , zero ) on your telephone keypad  after you have connected to the audio portion of the  conference .  international callers : please re - dial and ask the  operator for assistance before giving the confirmation  code .  a recording of this call ( audio only ) will be available  until december 16 , 2000 . to access this recording ,  please call 1 - 888 - 203 - 1112 ( within the u . s . ) or ( 719 )  457 - 0820 ( outside the u . s . ) . please use confirmation  number 403120 to access the call .  for more information , please contact nelly rivera via e -  mail at nrivera @ cera . com or via telephone at ( 617 ) 441 -  2642 .  * * end * *  follow url for html version of this message only .  account changes  to edit your personal account information , including your e - mail  address , etc . go to : http : / / eprofile . cera . com / cfm / edit / account . cfm  this electronic message and attachments , if any , contain information  from cambridge energy research associates , inc . ( cera ) which is  confidential and may be privileged . unauthorized disclosure , copying ,  distribution or use of the contents of this message or any attachments ,  in whole or in part , is strictly prohibited .  terms of use : http : / / www . cera . com / tos . html  questions / comments : webmaster @ cera . com  copyright 2000 . cambridge energy research associates\",0\n\"Subject: re : lost cell telephone  thanks !  chris samaniego on 12 / 18 / 2000 03 : 06 : 09 pm  to : \"\" ' shirley . crenshaw @ enron . com ' \"\" , enron  cc :  subject : re : lost cell telephone  request completed .  chris samaniego  account associate  houston cellular corporate accounts  petrochemical vertical  ( 713 ) 562 - 2995 cellular  ( 713 ) 345 - 7183 enron direct  ( 713 ) 646 - 2415 fax  enron @ houstoncellular . com e - mail  samaniec @ houstoncellular . com e - mail  samaniec @ bellsouthips . com interactive pager  > - - - - - original message - - - - -  > from : shirley . crenshaw @ enron . com [ smtp : shirley . crenshaw @ enron . com ]  > sent : monday , december 18 , 2000 2 : 19 pm  > to : enron  > subject : lost cell telephone  >  > hello :  >  > vince kaminski left his cell phone on the bus last friday . he has  > contacted  > the bus line , but the person in charge of the lost and found is not in the  > office today .  >  > if there any way that we can put a hold on this telephone until he can see  > whether it has been turned in or not ?  >  > the cell # is : 713 / 410 - 5396 and the account # is : 88563580 .  >  > please let me know as soon as possible .  >  > thanks !  >  > shirley crenshaw  > 3 - 5290  > ebl 961  > shirley . crenshaw @ enron . com  >  >\",0\n\"Subject: re : fw : a request from uc hicago student  laura ,  we shall have phone interviews with both candidates you brought up to our  attention .  vince  from : laura howenstine / enron @ enronxgate on 02 / 28 / 2001 04 : 05 pm  to : vince j kaminski / hou / ect @ ect , ravi thuraisingham / enron  communications @ enron communications  cc :  subject : fw : a request from uc hicago student  hi vince and ravi ,  here is another student from univ . of chicago ' s financial mathematics program  who is interested in enron . his resume is attached at the bottom .  thanks .  regards ,  laura  - - - - - original message - - - - -  from : \"\" laura howenstine \"\" @ enron  e + 40 enron @ enron . com ]  sent : tuesday , february 27 , 2001 11 : 16 am  to : howenstine , laura  subject : fwd : a request from uc hicago student  > from : \"\" ramaswamy garimella \"\"  > to : lhowenstine @ hotmail . com  > cc : ramaswamy _ garimella @ hotmail . com  > subject : a request from uc hicago student  > date : tue , 27 feb 2001 01 : 08 : 00 - 0600  >  > hello ms . laura howenstine ,  >  > my name is ramaswamy , and i am student of the ms financial  > mathematics program at the university of chicago ( uc ) . i found your  > address in the uc alumni gateway .  >  > i am interested in the associate position at enron , and would like  > to request you for any information that you can share with me in  > this respect . please find my resume attached to this message .  > briefly , i have an mba - finance from smu - dallas , and have  > extensive experience in it . currently , i am learning risk  > management / derivative pricing in the ms financial mathematics  > program at uc .  >  > you are the first alumni that i sought for informational help . so ,  > please excuse me for any mistakes in protocol . please reply me at  > your convenient time . thank you very much .  >  > sincerely ,  > ramaswamy garimella .  >  >  >  get your free download of msn explorer at http : / / explorer . msn . com  - resume . doc\",0\n\"Subject: ljm  vince / stinson :  the following is an update on ljm deal :  1 ) i participated on a conference call with aa ( jitendra and others ) and our  accounting / credit group ( wes , bill bradford and others ) yesturday , in which  we discussed the best approach for definining credit reserves at year - end for  the puts we own .  2 ) a big chunck of the meeting was dedicated to explain aa the details of the  deal . little progress was made on achieving the meeting ' s goal .  3 ) apparently , accounting did want to expose the calculation we made for puts  value that considers credit risk - the two factor model we developed . that  line of action was implied on a pre - meeting we had early that morning . from  my understanding , accounting argues that we should not make any credit  reserve because we could not liquidate our position by year - end .  4 ) at a certain point jintendra suggested me to use a two factor  mc - simulation for calculating the position with credit risk . the approach is  actually a more simplified version of the model we have . i and nobody  mentioned the results we got from our 2 - factor model .  5 ) at that same afternoon i knew from accounting that we are in a process of  unwinding our position .  these are the main points . please let me know if need more details .  paulo issler\",0\n\"Subject: re : stanford project  nick ,  thanks for your message . my family is in houston for the christmas holidays  and this means i am not coming any time soon to stanford .  i shall probably visit the campus for the parents weekend . let ' s  plan to meet for dinner then .  i am very glad that you have recruited the 2 nd phd student for the research  project .  we are discussing internally what would be the best topic ( s ) for the project  and we should be ready to talk to you in the nearest future about it .  it makes a lot of sense for you to visit enron to finalize the selection  of the research topics .  we shall be glad to take both eric and giuseppe as summer interns .  everybody was immensely impressed with giuseppe and we shall  welcome him with open arms .  i shall get in touch with you in the beginning of january to finalize the  arrangements for your trip and our meeting at stanford .  vince  nick bambos on 12 / 20 / 2000 12 : 14 : 40 pm  to : vince . j . kaminski @ enron . com  cc : stinson . gibner @ enron . com  subject : stanford project  hello vince and stinson ,  first of all ,  best wishes for happy holidays ! ! ! !  if you are in the stanford area during the holidays , let ' s get together  some time to have dinner .  i have formally established the project - thanks again for funding  it - and i have also recruited the second phd student . his name is  eric cope , and he is a top - notch student , very mature , and entrepreneurial !  we have started working on some interesting problems in this area . i would  hope that eric could spend the coming summer at enron to get immersed into  the \"\" problem / opportunity generation environment . \"\" that really helps the  student  to develop a realistic vision about their research .  perhaps , our whole team could visit enron again some time in the next quarter ,  say in march or so , to discuss the research issues we are pursuing . and of  course  you could visit us before that too .  with my warmest wishes ,  nick\",0\n\"Subject: hrgovcic , hrvoje  please incease the bonus for hrgovcic in vince kaminski ' s research group for  a total of $ 75 , 000 . the difference of $ 47 , 500 should be charged to jeff  shankmans cost center . this request was prompted by jeff shankman and vince  kaminski .  norma villarreal  ews generalist  x 31545\",0\n\"Subject: re : your presentation  vince ,  i ' m very happy you found the presentation useful .  i ' m working very closely with adam kulick who you probably know .  please let me know if you have any questions or if you have any difficulty  opening the file .  best regards ,  alla  - - - - - original message - - - - -  from : vince j kaminski [ mailto : vince . j . kaminski @ enron . com ]  sent : monday , june 19 , 2000 1 : 43 pm  to : gil , alla  cc : vince j kaminski  subject : your presentation  alla ,  i enjoyed your presentation at risk 2000 last week .  i would appreciate an electronic copy of the documentation .  vince kaminski  vincent kaminski  managing director - research  enron corp .  1400 smith street  room ebl 962  houston , tx 77002 - 7361  phone : ( 713 ) 853 3848  fax : ( 713 ) 646 2503  e - mail : vkamins @ enron . com  - riskcongress . ppt\",0\n\"Subject: enron wholesale services legal department  as a follow - up to the recent enron corp . memorandum forming enron wholesale  services ( ews ) , effective today , we have reorganized the wholesale services  legal department .  the goals in reorganizing the department are as follows : ( i ) align the  legal department as closely as possible with the business units , ( ii ) speed  the flow of legal technology across the business units , and ( iii ) achieve  greater efficiency and consistency across the organization .  to this end , a legal policy group will be formed for ews legal , which will  include lance schuler , enron americas ; mark evans , enron europe ; mark taylor ,  enron net works ; alan aronowitz , enron global markets ; julia murray , enron  industrial markets ; and bruce lundstrom , enron global assets .  the organization chart for the ews legal department is attached . more  comprehensive organization charts will follow for each group .  mark frevert and mark haedicke\",0\n\"Subject: vmi agreements  hi richard , here is a marked up version from our lawyer . please have your  people look at it and if it seems fine make the changes and send a signed  copy back to me .  ravi .  - - - - - forwarded by ravi thuraisingham / enron communications on 02 / 17 / 00 06 : 21  pm - - - - -  mark holsworth @ enron  02 / 17 / 00 04 : 10 pm  to : ravi thuraisingham / enron communications @ enron communications , gene  diers / corp / enron @ enron  cc :  subject : vmi agreements  please find attached my redlining of the vmi agreelment . please review it  and send it to the vendor for their review .\",0\n\"Subject: venue details for energy derivatives and weather derivatives course  and workshops  the venue details for the courses are the following :  ?  city : ? houston  hotel : ? hyatt regency houston  address : ? located in the center of downtown houston  1200 louisiana  houston , tx ? 77002 usa  ?  telephone : ? + 1 713 654 1234  fax : ? + 1 713 951 0934  ?  we have ? been offered a room rate of us $ 199 a night . ? your company may be  able to obtain a better quote , by contacting them directly . ? ? however , at  reservations , they may not have the course name and information logged into  their system yet because this is being handled directly by their catering  manager . ? if you would like us to make your hotel reservations , we would  need your arrival date and departure date . ?  ?  the ? itinerary for each day of the course is as follows :  ?  9 : 00 ? ? ? start  10 : 30 ? coffee break  12 : 30 ? lunch  15 : 30 ? coffee break  17 : 30 ? approximate finish  ?  course format will consist of segments of lecture followed by computer based  workshops ( two a day ) . ? if you need anything further , please contact us .  ?  sincerely ,  julie  ?\",0\n\"Subject: position report for dual trigger product  vince ,  i have enclosed a summary of our proposed approach on calculation of notional  and the greeks for dual trigger option portfolio . please let us know your  thoughts / comments .  amitava\",0\n\"Subject: telephone interview with the enron research group  good morning richard :  your resume was forwarded to vince kaminski and the research group  and they would like to conduct a telephone interview with you at your  convenience .  please give me some dates and times that you would be available and  i will coordinate the schedule . also , the telephone number you wish to be  contacted at .  the telephone interview will be last approximately an hour and the  interviewers would be :  vince kaminski managing director , research  stinson gibner vice president , research  vasant shanbhogue vice president , research  thanks richard and we look forward to hearing from you .  regards ,  shirley crenshaw  administrative coordinator  enron research group  713 - 853 - 5290  email : shirley . crenshaw @ enron . com\",0\n\"Subject: wharton collaborative research  here is a short note on potential research with wharton . please review and  edit and then we can send some indication to the wharton guys . - - - - - - - - - -  the objective would be to define the amount of risk an enterprise can take ,  and the difference between this and the actual amount of risk the enterprise  chooses to take based on the capital structure and reporting structure . in  particular , one can view enron as a hierarchy of companies , and assuming we  can separately quantify the risks of each unit , what framework would one use  to analyze risk at enron ?  a related question is how one should represent risks in the different  units ? risks may be of different types - - - short - term volatility risk ,  catastrophic risk , liquidity risk , etc - - - what should one focus on for a  first cut ?  another related question is to decide on the optimal amount of insurance  both at the unit level and the enterprise level , and relate the decision to  get insurance to the cost / benefit of insurance .\",0\n\"Subject: re : interview schedule for iris mack  oops ! i guess you were supposed to know that she is coming this friday ,  the 8 th of december .  sorry !  shirley  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 12 / 05 / 2000  08 : 41 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  12 / 05 / 2000 08 : 41 am  to : shirley crenshaw / hou / ect @ ect  cc :  subject : re : interview schedule for iris mack  shirley ,  what day is she coming ?  vince  shirley crenshaw  12 / 04 / 2000 01 : 36 pm  to : stinson gibner / hou / ect @ ect , vince j kaminski / hou / ect @ ect , zimin  lu / hou / ect @ ect , tanya tamarchenko / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect  cc :  subject : interview schedule for iris mack  below is the interview schedule for iris mack . i will give your her  resume on thursday .  8 : 30 am vince kaminski  9 : 00 am stinson gibner  9 : 30 am tanya tamarchenko  10 : 00 am zimin lu  10 : 30 am vasant shanbhogue  11 : 00 am molly magee  thanks !  shirley\",0\n\"Subject: tiger team  hi vince !  attached is part 1 for the \"\" tiger team \"\" application . nb : can shirley please  fill in your fax number ?  thanks !  - - christie .\",0\n\"Subject: organizational announcement  in case you have not already heard through the extensive grapevine , i am  indeed leaving the company to take a challenging position in product  development for panamsat , the satellite communications company . i would like  to thank all of you - many friends that i ' m leaving behind at enron .  please stop by and visit when you ' re in the northeast ( i ' ll be working in  greenwich ct ) , and my permanent email address is  dinos @ oskar . uchicago . edu  all the best ,  dinos\",0\n\"Subject: re : uk : reconciling the spreadsheet and risktrac var numbers  hi , tanya :  the factor loading results for the eff _ dt = ' 12 - dec - 2000 ' are available on  the rms _ stage database .  the parameters being used :  effective _ date = ' 12 - dec - 2000 '  start _ date = ' 12 - sep - 2000 '  end _ date = ' 12 - dec - 2000 '  please check the result in the database with :  factor _ def _ id = 1510  basis _ map _ id = 1562  corr _ def _ id = 1280  notice : this is only a testing result !  jin  tanya tamarchenko  12 / 15 / 2000 05 : 20 pm  to : debbie r brackett / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , rabi de / na / enron @ enron , jin yu / hou / ect @ ect ,  wenyao jia / hou / ect @ ect , ganapathy ramesh / hou / ect @ ect  subject : re : uk : reconciling the spreadsheet and risktrac var numbers  debbie ,  we asked dba to refresh stage this monday .  it was refreshed on thursday . jin is running vatrfacs today ( friday ) to  create correlations and factors .  then , according to our plan , we will ask ramesh to run var on these inputs .  we will send the inputs to you to run var in the spreadsheet and reconcile  the results for uk .  tanya .\",0\n\"Subject: re : enron credit model docs for the comparative model study - to be  sent to professor duffie @ stanford  hi ben ,  i think i have read all the papers that are to be used in the comparative model study to be sent to professor duffie at stanford .  these documents are all listed below . please let me know if i have omitted any ( however , don ' t get the impression that i am begging for more papers to read ) .  now i will try to transform my notes into a draft for professor duffie .  thanks ,  iris  list of papers for comparative model study  1 . actively managing corporate credit risk : new methodologies and instruments for non - financial firms  by r . buy , v . kaminski , k . pinnamaneni & v . shanbhogue  chapter in a risk book entitled credit derivatives : application for risk management , investment and portfolio optimisation  2 . neural network placement model  by george albanis , enroncredit ( 12 / 22 / 00 )  3 . pricing parent companies and their subsidiaries : model description and data requirements  by ben parsons and tomas valnek , research group  4 . a survey of contingent - claims approaches to risky debt valuation  by j . bohn  www . kmv . com / products / privatefirm . html  5 . the kmv edf credit measure and probabilities of default  by m . sellers , o . vasicek & a . levinson  www . kmv . com / products / privatefirm . html  6 . riskcalc for private companies : moody ' s default model  moody ' s investor service : global credit research  7 . discussion document : asset swap model  by ben parsons , research group ( 4 / 20 / 01 )  8 . asset swap calculator : detailed functional implementation specification ( version 1 . 0 )  by ben parsons , research group  9 . discussion document : live libor bootstrapping model  by ben parsons , research group ( 4 / 20 / 01 )  10 . the modelling behind the fair market curves : including country and industry offsets  by nigel m . price , enron credit trading group  11 . pricing portfolios of default swaps : synthetic cbos - moody ' s versus the full monte ( carlo )  by nigel m . price , enron credit trading group  12 . placement model vl . 0 : discussion document  by ben parsons , research group , 2000  13 . credit pricing methodology - enroncredit . com  by ben parsons , research group  14 . correlation : critical measure for calculating profit and loss on synthetic credit portfolios  by katherine siig , enron credit group  15 . discussion document : var model for enron credit  by ben parsons , research group , ( 1 / 3 / 01 )  16 . methodology to implement approximate var model for the credit trading portfolio  by kirstee hewitt , research group\",0\n\"Subject: fas 133 working group meeting - energy issues 9 / 20  dear working group participant  we are stating up the garp fas 133 working group meetings again . the next  meeting is on wednesday september 20 from 6 : 30 - 8 : 30 central time in  houston .  phone - in will be provided .  greetings from garp ! we are having the next meeting september 20 th at  enron , from 6 : 30 pm until 8 : 30 pm . due to security we need everyone to rsvp ,  including the names of any guest they may be bringing . please rsvp to  rita . hennessy @ enron . com .  the meeting will cover sfas 133 and related risk management issues .  sajjad rizvi and phillip merrill ( garp chairman relating to sfas 133 ) will  be presenting . attendence is anticipated to include risk  control / accounting / and quantitative analyst . below is the following  agenda :  \"\" fasl 33 and beyond ; an update on sfas 138 and eitf 98 - 10 \"\"  overview of ? 4 major amendments to sfas 133 , that were made in 138 ,  accounting for certain derivative instruments and certain hedging  activities  impact of the expanded definition of normal purchase normal sales  on the commodity transactions .  update on all the recently finalized implementation issues from  dig since the last garp meeting in may / june 2000 .  discussion on ? eitf 98 - 10 issues on energy related contracts .  ? ? ? eitf 00 - t - capacity ? contract subject to ? lease accounting  treatment under sfas 13 .  ? ? ? eitf 96 - 17 - power contracts - long term  ? ? ? eitf 91 - 6 - ? power contracts - long term  outline garp ' s role and methodology in dealing with the fasb regarding  energy related issues  overview of fasb and dig rule making process and how garp can make  impact  discussion to find common ground on issues relating to this new  accounting rule  outstanding issues in the energy industry , including capacity  sales transactions , book - outs etc .  prioritizing issues  explore various positions and how to take next steps  the issues presented by sfas 133 are very dynamic and the presenters have  requested that if you would like a particular issue raised at this meeting ,  please direct your interests and questions to sajjad rizvi at  lima @ flash . net , or call sajjad at 281 - 579 - 3410  again , i would like to extend a thank you to our presenters and i look  forward to your attendence .  regards ,  frank hayden  director - garp houston chapter\",0\n\"Subject: don ' t forget - coffee colloquium this morning ( 4 - 25 - 01 ) last one  of this academic year  students , faculty , and staff ,  don ' t forget to participate in the coffee colloquium this morning ( 4 - 25 - 01 )  from 9 : 45 to 10 : 45 held outside room 124 . this will be the last coffee  colloquium of this academic year . hope to see you there .  the coffee colloquium is an informal gathering which will allow faculty ,  administration , and students an opportunity to talk , exchange ideas and get  to know each other better . the jones school coffee colloquium will be a  regular gathering every wednesday ( same time , same place ) unless there is  another scheduled event ( dean ' s lecture , exam day , holiday ) . we usually  have coffee , tea , juice , soft drinks , and some light snacks available to  all who participate .  kathy  kathy m . spradling  mba program coordinator  jesse h . jones graduate school of management  rice university  6100 main street , ms 531  houston , texas 77005 - 1892  phone : ( 713 ) 348 - 3313  fax : ( 713 ) 348 - 5251  email : spradlin @ rice . edu  http : / / www . rice . edu / jgs  e - mail : spradlin @ rice . edu  http : / / www . ruf . rice . edu / ~ jgs /\",0\n\"Subject: re : approval is overdue : access request for stewart . range @ enron . com  i will ask him which specific directories he needs to access .  - - stinson  vince j kaminski  11 / 22 / 2000 08 : 08 am  to : stinson gibner / hou / ect @ ect  cc :  subject : approval is overdue : access request for stewart . range @ enron . com  stinson ,  should we do it ?  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 11 / 22 / 2000  08 : 08 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  arsystem @ mailman . enron . com on 11 / 21 / 2000 07 : 04 : 54 pm  to : vince . j . kaminski @ enron . com  cc :  subject : approval is overdue : access request for stewart . range @ enron . com  this request has been pending approval for 2 days and you are the  alternate . please click  approval to review and act upon this request .  request id : 000000000007876  approver : stinson . gibner @ enron . com  request create date : 11 / 20 / 00 2 : 36 : 29 pm  requested for : stewart . range @ enron . com  resource name : \\ \\ enehou \\ houston \\ common \\ research - [ read / write ]  resource type : directory\",0\n\"Subject: real options conference programs ( ucla , july 11 - 14 )  please find attached the programs for the two back - two - back conferences on real options at ucla ( you may also download them from www . realoptions . org and www . rogroup . com ) . the two conferences are separate but complementary events . the first conference , co - sponsored with accenture and morgan stanley dean witter , on july 11 - 12 , is a professional conference on real options valuation in the connected economy : high tech , pharma , energy , corporate valuation & strategic / portfolio management . for information and online registration see www . rogroup . com .  the second is the 5 th annual international conference on real options : theory meets practice ( the annual industry event where academics and practitioners get together to share the latest developments on theory and applications ) , co - organized with the anderson school at ucla on july 13 - 14 . for information and online registration see www . realoptions . org  between the two complementary events , we are pleased to present an extensive array of practitioner and cutting - edge academic presentations , sharing of experiences by corporate executives , and panel discussions by experts from leading organizations and universities . our keynote speaker this year will be eduardo s . schwartz of ucla .  interested participants must register for the conference online www . realoptions . org ) and indicate hotel preferences by may 31 or asap .  we look forward to seeing you at this exciting event , and would appreciate if you share this with interested colleagues .  lenos trigeorgis  - 5 2001 . doc  - 5 2001 . doc\",0\n\"Subject: re : get together this coming tuesday ?  dale ,  i can reserve 2 to 2 : 30 time slot but there is really not much that  i can tell you at this point .  the commercial groups are still interested and are moving  towards the test of the package . as soon as they will decide  to move ahead , we ( research ) shall be involved , helping to evaluate the  product . as i have said , we are not the  decision makers in this case .  i think that we should allow simply the process to run its course .  vince  \"\" dale m . nesbitt \"\" on 04 / 30 / 2001 05 : 59 : 30 pm  please respond to  to :  cc :  subject : re : get together this coming tuesday ?  vince :  i will call tomorrow in the morning . lunch or right after lunch would be  great . how would 100 pm work for you ?  dale  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : monday , april 30 , 2001 3 : 07 pm  to : dale . nesbitt @ marketpointinc . com  cc : kimberly . watson @ enron . com ; vince . j . kaminski @ enron . com  subject : re : get together this coming tuesday ?  dale ,  please , call me on tuesday . my morning schedule is full but i am open in  the afternoon .  vince  \"\" dale m . nesbitt \"\" on 04 / 30 / 2001 01 : 51 : 21  am  please respond to  to : \"\" vincent kaminski \"\" , \"\" kimberly s . watson \"\"  cc :  subject : get together this coming tuesday ?  vince / kim :  i am flying to houston tonight and wondered if it would fit one or both of  your schedules to get together this coming tuesday sometime for 1 / 2 hour or  so . i really want to reinitiate the conversations marketpoint was having  with john goodpasture and you , and he said either or both of you were the  right people to continue after his responsibility shift . john was quite  positive about the idea of enron acquiring marketpoint narg through  license ,  and he implied that one or both of you would be carrying the ball in that  direction after he handed it to you .  would this coming tuesday morning at 930 am be a good time for you guys ?  if  so , please give me an email shout at the above address or leave a message  on  my voicemail at ( 650 ) 218 - 3069 . i think you will be truly impressed with  the  scope and progress we have been able to make with both the short run narg  and the long run narg in which you were interested ( not to mention our  power  model ) . the progress is noticeable since you saw it . both long and short  term narg are having quite an impact on a number of gas decisions at the  moment ranging from venezuelan lng , north american lng import terminals and  term , gas basis calculations , trading support , power plant development ,  gas - to - power price spreads in key markets , veracity of heat rate trades ,  bank financings , storage field evaluation , and which new pipelines we can  expect to see enter and which are dogs .  i really hope we can fit it in and get our discussions moving in a mutually  productive direction again . i think narg can help you become even more  successful , and i look forward to working with you .  we have a new office address and new phone number as well . ( we move in may  1 . )  altos management partners  95 main street , suite 10  los altos , ca 94022  ( 650 ) 948 - 8830 voice  ( 650 ) 948 - 8850 fax  ( 650 ) 218 - 3069 cellular  give the phones a week or so to get \"\" debugged \"\" and then switch over .  dale\",0\n\"Subject: re : book cover  habiba ,  thanks for this , but i haven ' t heard a peep out of them yet , and i ' m  concerned since the book and cover are going to print in about a week . ? is  it possible for me to contact them ?  ?  thanks ,  julie  - - - - - original message - - - - -  from : habiba . bayi @ enron . com  to : julie @ lacima . co . uk  sent : wednesday , september 27 , 2000 2 : 46 pm  subject : re : book cover  julie ,  i have forwarded your e : mails and information to london . ? they now have  responsibility for this project and they would be making the necessary  decisions . ? i have given them your contact information so that they can  coordinate efforts with you .  thank you .  habiba  \"\" julie \"\" on 09 / 27 / 2000 08 : 21 : 54 am  to : ? ?  cc :  subject : ? book cover  habiba ,  could you please let us know if we can use the book cover on our web ? page ?  we would like to put this on our web site next week .  please let us know .  thanks ,  julie\",0\n\"Subject: re : mathworks  molly ,  i met lou in the building lobby last wednesday and he suggested that he  ( or his representatives ) join the mathworks presentation to my group ) .  it ' s a good software package for mathematical modeling ,  but there is a limit to the number of different installations any group  can productively use .  i shall take a look at some new features they offer  and decide whether it ' s worth the effort .  vince kaminski  lou casari @ enron communications  09 / 20 / 2000 02 : 10 pm  sent by : molly carnes @ enron communications  to : vince j kaminski / hou / ect @ ect  cc :  subject : mathworks  do you know this person or this company ? they are want to set an appointment  with ebs and i believe , are wanting to meet with you , also . any feedback ?  thanks .  molly carnes for lou casari  enron broadband services  713 - 853 - 1467 , room eb 4486 a  molly _ carnes @ enron . net  - - - - - forwarded by molly carnes / enron communications on 09 / 20 / 00 02 : 09 pm  - - - - -  scottw @ mathworks . com  09 / 20 / 00 08 : 46 am  to : lou casari / enron communications @ enron communications  cc :  subject : we ' ll be in houston  hello mr . casari :  myself and our energy trading financial team will be visiting with the r & d  group at enron the week of 10 / 16 / 00 . they have several applications can be  dramatically improved with our tools .  we are very interested to understand the bandwidth trading market , to see  if any additional challanges can be overcome with our tools .  i would like to understand your challanges of modeling , simulating and  deploying applications to control risk .  are you available to discuss these items prior to our visit ?  i look forward to hearing from you .  thanks  scott wakefield\",0\n\"Subject: hello guys  vince and stinson ,  just got a copy of the attached paper and thought it may have some interest  for you guys .  on another note , i am putting together a workshop in the spring on the new  economy and business education and will be seeking out some enron network  people to join in the discussion ( 2 - hours on friday march 2 nd ) . i ' ll let  you know more as we work through the details . the idea is to \"\" brainstorm \"\"  about the new world you guys work in every day and its implications for  what we should be doing . hope this is interesting to you and that you ' ll  want to spend the day with us .  take care and enjoy the weekend .  john  - risk . pdf  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: re : houston trip  dear vince / christie ,  thanks for coming to philadelphia to present an overview of the projects . we  enjoyed meeting you and your colleagues and look forward to working with  enron . i would also like to pass on my team ' s appreciation for the dinner as  well .  we wanted to give you an update on our project and get some feedback and  additional information prior to our upcoming visit to houston on january  19 th . our project is going to be geared to the 3 rd option you mentioned . we  plan on addressing some part of the retail energy services business . we are  considering two options regarding this topic and would like to pursue either  ( i ) how customers are acquired and recommending new processes and ways to  serve retail customers , or  ( ii ) studying the supply chain and coming up with recommendations for areas  for further investments .  however , we would like to get some more information on the retail energy  services before truly scoping the project . we are also very open to  suggestions , especially if you had a much broader or different scope in mind ;  so please let us know .  we have not yet reviewed the introductory information received last week , but  here are the questions we have specific to the retail energy services unit :  can we look at its overall business plan or a more detailed summary than is  in the annual report ?  what is the pricing philosophy / overall structure ?  who are the customers and how are they acquired ?  what would the customers be doing if they did not work with enron ?  what are the international expansion plans and capabilities ?  is there any important regulatory summary information we can have ?  if this information is not already covered in the review material you sent ,  will you be able recommend other sources where we may find such information ?  after we have reviewed the material sent to us recently , we may want to  schedule a phone call with you and / or one of your colleagues directly  involved in the retail energy services business . i would like to call you in  the new year to discuss this further . in the meantime , please feel free to  call me at ( 215 ) 546 - 9416 if you need any information .  regards ,  retail energy services tiger team  ram  dennis  jason  omar  steve  clay\",0\n\"Subject: research prc  please make sure that vince has the new location on his calendar - i think  shirley is out of the office  - - - - - - - - - - - - - - - - - - - - - - forwarded by norma villarreal / hou / ect on 12 / 07 / 2000  04 : 07 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  ramona perkins @ enron  12 / 06 / 2000 05 : 38 pm  to : shirley crenshaw / hou / ect @ ect  cc : norma villarreal / hou / ect @ ect , susan wimberley / hou / ect @ ect  subject : research prc  the prc meeting for research has been moved to eb 42 cl . please make the  necessary changes to vince ' s calendar . thanks .\",0\n\"Subject: position  shirley ,  i would like to invite him to an interview next week . we should use his home  phone  number and / or private e - mail address .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 18 / 2000  12 : 33 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" jaesoo lew \"\" on 10 / 17 / 2000 09 : 59 : 01 pm  to : vkamins @ enron . com  cc :  subject : position  dear dr . kaminski  my name is jaesoo lew and i am referred by dr . wayne lee .  currently i ' ve been working at aquila energy in kansas city as an pricing  analyst since july 2000 . since then , i have developed a natural gas storage  valuation model applying the swing options ( forest method ) pricing approach .  the price processes would be considered critical for the storage valuation  since a trinomial forest is required to value storage . also the c + +  programming using excel dll has been developed , too .  i attached my resume to this message for your consideration and am looking  forward to talking about an opportunity at enron .  my home phone number is 913 - 649 - 0578 , dr . kaminski , i will wait your call in  this week as dr . lee informed me . if possible , please let me know your  expected calling day through the mail . i appreciate your consideration .  thank you very much .  sincerely ,  jaesoo lew  get your private , free e - mail from msn hotmail at http : / / www . hotmail . com .  share information about yourself , create your own public profile at  http : / / profiles . msn . com .  - vitae 2 . doc\",0\n\"Subject: re : hello from vince kaminski at enron  shmuel ,  thanks for the message . i am working with our recruiter , ashley baxter ,  to finalize the date of the trip . i shall shoot for october the 23 rd  if this date works for the rest of our team .  vince  \"\" shmuel oren \"\" on 08 / 23 / 2000 11 : 46 : 19 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : hello from vince kaminski at enron  dear vince .  i sent you a reply earlier this month but i haven ' t heard from you about the  date of your visit . our department has a seminar every monday . if you can  schedule your visit on a monday i would like to invite you to give a seminar  which will be attended by many of our graduate students and faculty and will  give you an opportunity to tell them about your program . with sufficient  lead - time i can advertise the seminar in the hass school to their financial  engineering students .  shmuel .  shmuel s . oren , professor  dept . of industrial engineering  and operations research  4117 etcheverry hall  university of california  berkeley , ca 94720 - 1777  e - mail : oren @ ieor . berkeley . edu  phone : ( 510 ) 642 - 1836 or 5484  fax : ( 510 ) 642 - 1403  - - - - - original message - - - - -  from :  to : ; ;  sent : tuesday , august 08 , 2000 10 : 59 am  subject : hello from vince kaminski at enron  > shmuel ,  >  > i hope you remember me . i visited you together with aram sogomonian , a  > good friend of mine , a few years ago . i am currently responsible , among  > other things , for recruiting graduates with finance and / or technical  > backgrounds at the university of berkeley . i would be glad to give you a  > call and talk more about the details of our program . my colleague ,  > ashleybaxter , from the analyst / associate program at enron would join me  > as well .  >  > i am sending you a copy of the brochure about the analyst / associate  > program .  >  > vince kaminski  >  >  > vincent kaminski  > managing director - research  > enron corp .  > 1400 smith street  > room ebl 962  > houston , tx 77002 - 7361  >  > phone : ( 713 ) 853 3848  > fax : ( 713 ) 646 2503  > e - mail : vkamins @ enron . com  >\",0\n\"Subject: var methodology change  gentlemen ,  below is a plan of action for moving along with the var methodology change  related to forward - forward volatility :  1 . finalize the methodology proposed ( research / market risk )  - determine the time period used to calculated forward - forward vols vs .  correlations ( 20 days vs . 60 days )  - stabilize the calculation for curves and time periods where the curve does  not change based on historical prices , implying volatility of 0 %  2 . get approval for the methodology change from rick buy ( see draft of the  memo attached ) - john lavorato and john sherriff  3 . develop and implement the new methodology in a stage environment  ( research / it )  4 . test the new methodology ( market risk , traders )  5 . migrate into production ( research / it )  please let me know if this is reasonable and meets everyone ' s expectations .  vlady .\",0\n\"Subject: re : edith terry  vince :  thank you very much . i hope i get a chance to meet you sometime ,  cheers ,  edith terry  enron / dc  vince j kaminski @ ect  04 / 14 / 2000 01 : 46 pm  to : scott tholan / corp / enron @ enron  cc : vince j kaminski / hou / ect @ ect ( bcc : edith terry / enron _ development )  subject : edith terry  scott ,  i spoke briefly with edith terry from our dc office . there is not a good fit  for my group  but she could be a great asset for you .  i have her resume in case you are hiring and would like to take a look at  her .  vince\",0\n\"Subject: re : invitation to speak at infocast ' s managing summer price volat  ilit y conference in houston  thank you very much , mr . kaminsky !  britta bothe  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : tuesday , october 17 , 2000 1 : 58 pm  to : brittab @ infocastinc . com  cc : vince . j . kaminski @ enron . com  subject : re : invitation to speak at infocast ' s managing summer price  volatilit y conference in houston  dear ms . bothe ,  i have forwarded my message to one of my associates who  specializes in weather derivatives .  vince kaminski  britta bothe on 10 / 17 / 2000 12 : 38 : 33 pm  to : vkamins @ enron . com  cc :  subject : invitation to speak at infocast ' s managing summer price volatilit  y conference in houston  dear ms . kaminsky :  as i just mentioned on your voicemail , infocast is going to host a  managing  summer price volatility course , january 30 - february 1 , 2001 in houston .  the course will focus on the various tools at hand to manage summer price  and load volatility . our target audience for this event will primarily be  risk managers and managers in bulk power sales & purchase ( our secondary  target audience is energy traders ) .  attached you will find a draft program agenda for your review . please let  me know if you or someone else at enron is interested in presenting at this  event . in particular , we are looking for someone to talk about weather  derivatives .  i appreciate you taking the time to review the conference schedule and i  hope that i will have an opportunity to talk to you . unfortunately , i am  running behind schedule in finalizing this program . i will call tomorrow  to  see what your feedback is . if you have any questions or suggestions ,  please  do not hesitate to contact me at ( 818 ) 888 - 4445 ext . 30 .  sincerely ,  britta bothe  infocast  conference manager  ( 818 ) 888 - 4445 ext . 30  >  ( see attached file : agenda 5 . doc )\",0\n\"Subject: re : agenda for houston visit  mike ,  sounds good .  christian  mike a roberts @ ect  21 / 12 / 2000 09 : 26 am  to : christian werner / enron _ development @ enron _ development  cc : vince j kaminski / hou / ect @ ect , paul  quilkey / enron _ development @ enron _ development , mark tawney / hou / ect @ ect  subject : re : agenda for houston visit  christian ,  just finished meeting with pual , vince & mark  new plan :  let ' s plan on your coming to houston march 12 th - april 2 nd ( after our  summer / winters respectively  but . .  let ' s proceed with the project without pause :  1 . please send up the software that needs to be installed along with  operating system requirements  2 . please copy me on forecasting provided to sydney office on a daily basis  if we work on these two fronts , it will optimize your time here and permit  transotion to cover your forecasting there  thanks  - - - mike\",0\n\"Subject: ppa auction  the government of alberta power purchase arrangement auction of the regulated  generation plants and units commenced wednesday , august 2 nd , and will  continue through a number of rounds over a number of days and possibly  weeks . enron canada power corp . ( ecpc ) , a wholly - owned subsidiary of enron  canada corp . , is an invited bidder participating in the auction . for  strategic corporate purposes and as a result of restrictions imposed under  the auction participation agreement and the auction rules ( compliance with  which is secured by a us $ 27 mm bid deposit ) , any information , details or  speculation regarding ecpc ' s involvement in the auction , including whether  ecpc is participating or continuing to participate in the auction or has  withdrawn from the auction at any time , the plants or units ecpc is or is not  bidding on , the amounts ecpc is bidding or is approved for bidding , and any  other information whatsoever about the auction process is to be kept strictly  confidential . in particular , the auction has been followed closely by the  media and may be of interest to shareholders , investors and other  constituents , and such communications are prohibited until after the auction  has been completed and the winning bidders have been announced by the  government of alberta .  if you have any questions or concerns , please contact peter keohane , enron  canada corp . , at 403 - 974 - 6923 or peter . keohane @ enron . com .\",0\n\"Subject: re : matthew williams  let ' s agree the switch happens november lst and we will change sap to reflect  specialist status and matthew will be send a letter .  matt , can you just send me a note confirming you are ok with this and cc .  karen tamlyn who will make the change .  regards  sk  dale surbey  11 / 10 / 2000 18 : 21  to : steven leppard / lon / ect @ ect  cc : melanie doyle / lon / ect @ ect , sophie kingsley / lon / ect @ ect , tani  nath / lon / ect @ ect , matthew d williams / lon / ect @ ect , vince j  kaminski / hou / ect @ ect  subject : re : matthew williams  i agree - sounds like a good idea .  - dale  steven leppard  11 / 10 / 2000 18 : 05  to : melanie doyle / lon / ect @ ect , sophie kingsley / lon / ect @ ect  cc : tani nath / lon / ect @ ect , dale surbey / lon / ect @ ect , matthew d  williams / lon / ect @ ect , vince j kaminski / hou / ect @ ect  subject : matthew williams  all  following discussions between matt , vince kaminski , and me , matt has decided  he ' d like to make a longer - term commitment to research . with this in mind  we ' d like to request that matt is switched from a & a to the specialist track .  vince and i feel this is clearly in the best interests of enron given matt ' s  proven strengths in quant analysis .  how do we proceed ?  all the best ,  steve\",0\n\"Subject: april futures contract  vince and vasant :  for the record , the april hh future closed last monday at $ 2 . 72 , and is now  trading at $ 2 . 97 , a 9 % rise in less than one week .  for the record , enron ' s technical \"\" experts \"\" strongly advised selling this  contract last week , predicting a \"\" collapse . \"\"  clayton\",0\n\"Subject: re : summer internship  shirley ,  cantekin will be joining us again this summer as a summer intern . he will  be starting around the end of may .  - - stinson  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 04 / 17 / 2000  12 : 21 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" cantekin dincerler \"\" on 04 / 14 / 2000 03 : 52 : 04 pm  please respond to  to : \"\" ' stinson gibner ' \"\"  cc :  subject : re : summer internship  stinson ,  i have received the offer , thank you . i am looking forward to being there  again and getting involved in some interesting projects . i bet it will be  fun .  as to when i can start , i think i can start around the end of may . i can  give you a more precise date after i figure out the schedule regarding my  assistanship obligations .  ps : could you give some idea about the kind of projects that we ' ll be  working on ? i might do some advance reading if you could point out some  references .  best regards ,  cantekin  > cantekin ,  >  > you should be getting an offer of a summer internship within  > the next few days .  > if you don ' t , please let me know .  >  > i think you will be working with me on a combination of enron  > broadband services  > and enron north america projects and am looking forward to  > having your help .  > some of the projects should be a lot of fun .  >  >  > when are available to start so i can plan ahead for you ?  >  > best regards ,  >  > stinson  >  >\",0\n\"Subject: interview for japan office  darren ,  tanya and i had a telephone interview for yumi . i do not know what  kind of position you would offer her .  if you intended to let her do the work on quantitative modeling , her knowledge  in math seems very sallow . she is working on a math degree on stochastic  process , but she can not explain what ito ' lemma is . we also asked questions  about volatility of a basket , value at risk , etc . she did not have a clear  answer .  if you intended to let her to be a junior trader , she might be ok . it seems  she has  some experience of financial market , but i think you are much more qualified  to  probe her than i do in this aspect .  keep in touch ,  best regards  zimin  from : darren delage @ enron on 01 / 12 / 2001 11 : 59 am ze 9  to : \"\" mm 21 yumi \"\"  cc : zimin lu / hou / ect @ ect  subject : re : next tuesday  good afternoon imokawa - san ,  we would like to invite you to have a brief dialogue with some members of our  research team . they would like to ask you to briefly expound on your  mathematical studies . if you could please contact them next wednesday at  7 : 50 am ( it should be 4 : 50 pm houston time , tuesday ) . the conversation should  take no more than 20 minutes of your time , and will enable us to get a more  enhanced understanding of your quantitative abilities .  zimin lu , director of research , can be reached at 713 - 853 - 6388  to dial from japan , 0061 - 1 - 713 - 853 - 6388  if you could please send zimin a copy of your resume before the interview ,  that would be much appreciated . you can call the above number to obtain the  appropriate fax number .  i will be in touch with you shortly thereafter .  sincerely ,  darren  \"\" mm 21 yumi \"\"  01 / 11 / 2001 08 : 35 pm  to :  cc :  subject : thank you  darren , thank you for cordinating everything .  i understand it takes time , this is  only the first week of the year in japan , and i do not like to  push you much . normally , i have long meetings every thursday .  for other dates , i make best effort to fit the schedule for  your convenience , including early morning or late evening .  i am looking forward to seeing you sometime soon .  sincerely ,  yumi imokawa\",0\n\"Subject: eol stuff  vince -  i spoke with tom , and i completely agree and would like to hand all this eol  stuff over to you .  we need a sun server to take over the task . as it happens martin lin has one  in his office he ' s not using and up to the task . his box could serve sas to  enron , as well as handle listening in on the eol feedds and maintaining its  database .  martin ' s box technically belongs to ebs , but i think they are downsizing and  wouldn ' t mind giving it up .  in this way , you would have complete physical and administrative custody over  the data and any work you do with it . i needn ' t be involved , and you can know  your work is completely confidential .  i ' ll make sas and the eol software available , as well as the necessary ram  the server , at no charge . you just need to summon up some sysadmin resources  to finish the job . there is a fine unix guy named ben thompson who will  support you , i ' m sure .  task :  1 ) upgrade ram on martin ' s server  2 ) install newest solaris os on server  3 ) install tibco and gnu software on server  4 ) install sas on server  clayton\",0\n\"Subject: interview schedule for punit rawal  hi molly :  punit rawal is a carnegie mellon student that kevin kindall and bob lee  interviewed back in december . we would like to bring him in for an  interview . he is definately a \"\" trading support \"\" prospect .  i forwarded his resume to john lavorato back in december and inquired  as to whether he would be interested in interviewing him or not , but have  had no response , except that he has not had a chance to look at his  resume yet .  vince originally said that either john or gary hickerson might be interested .  i did not send his resume to gary , maybe you can check with him ?  i am attaching the interview request form and his resume . thanks !  shirley  - punit + rawal + newresume . doc\",0\n\"Subject: request submitted : access request for john . f . anderson @ enron . com  you have received this email because you are listed as an alternate data  approver . please click  approval to review and act upon this request .  request id : 000000000005409  approver : stinson . gibner @ enron . com  request create date : 10 / 23 / 00 8 : 47 : 14 am  requested for : john . f . anderson @ enron . com  resource name : \\ \\ enehou \\ houston \\ common \\ research - [ read / write ]  resource type : directory\",0\n\"Subject: the ferc staff report on western markets and the causes of the  summer 2000 price abormalities , entit  the ferc staff report on western markets and the causes of the summer 2000  price abormalities , entitled , part i of staff report on u . s . bulk power  markets , is available at the following website :  http : / / www . ferc . fed . us / electric / bulkpower . htm . if you have any questions or  comments , please call jack cashin at 202 / 508 - 5499 .\",0\n\"Subject: enron credit modeling discussions  hi ,  this email is in reference to our plan for detailed discussions about enron  credit ' s modeling strategy . several meetings have already been scheduled .  please refer to the attached excel spreadsheet for further details .  also , if you like , we can have more informal discussions over lunch , dinner ,  drinks , etc .  thanks in advance for your time .  regards ,  iris\",0\n\"Subject: resending paper  - - - - - - - - - - - - - - - - - - - - - - forwarded by jason sokolov / hou / ect on 04 / 30 / 2001 05 : 04  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" lynn nazareth \"\" on 04 / 27 / 2001 12 : 46 : 37 pm  to : jason . sokolov @ enron . com  cc :  subject : resending paper  jason :  here is our team ' s assignment . please confirm receipt . i am also sending you  the file via my outlook address in case this doesn ' t work .  this is our team :  helen demianenko  javier lamas  lynn nazareth  shauywn smith  carlos wheelock  sarah wooddy  thanks , jason ! see you at enron this fall !  lynn  get your free download of msn explorer at http : / / explorer . msn . com  - mg _ analysis _ final . doc\",0\n\"Subject: re : lawyer  i will sign an agreement not to use the materials  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : thursday , march 08 , 2001 11 : 13 am  to : macmilli @ wharton . upenn . edu  cc : vince . j . kaminski @ enron . com  subject : re : lawyer  ian ,  sorry for a delay in getting back to you .  i have one challenge i did not anticipate  when i talked to you the first time about our real options  internal seminar .  the materials were prepared in collaboration with a professor  from another school , and there is some sensitivity regarding  the intellectual property rights and the ability to distribute the  materials  outside enron .  please , give me some time to find out if i can work  around this issue .  vince  \"\" macmillan , ian \"\" on 03 / 07 / 2001 06 : 46 : 28 am  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc :  subject : lawyer  i still have not heard from your lawyer . i would like to see whar  materials you are using and assess how we could work on the topic of real  options with enron\",0\n\"Subject: 4 : 00 pm budget meeting  dave will continue to have the friday afternoon \"\" budget meetings \"\" with one  change : effective april 21 , 2000 the time will change from  4 : 00 pm to 3 : 00 pm .  date : fridays this friday , aril 14 , 2000 remains at 4 : 00 pm  time : 3 : 00 pm - 4 : 00 pm  location : 3321  topic : budget meeting  if you have any questions / conflicts , please feel free to call me or bev  ( 5 - 7857 ) .  thanks ,  kay 3 - 0643\",0\n\"Subject: re : power play book  vince ,  you are a saint for lending me a copy of your book . i agree with you that we  don ' t want increase there revenues even by a $ 1 . 00 , although my  recommendation ( and mark palmer ' s as well ) is that we should pursue a  rebuttal for the following reasons :  as i mentioned i scoured the internet ( britannica . com , amazon . com , yahoo . com  and dow jones ) and could not find one mention of the book , therefore mr .  mehta ' s distribution must not be wide at all . consequently , his comments may  not have reached a large audience . issuing a rebuttal , may in fact , draw  more attention to the comments and issues then they are currently receiving .  i believe we should proceed with caution , and respond accordingly ( with  counter comments ) only when comments are solicited from us . so far , we have  not received any telephone inquiries from media in relation to mr . mehta ' s  enron bashing . may be we should ' leave the stones unturned ' .  let me know what you think . also , please contact me when it is convenient  for me to borrow the book from you .  regards ,  cindy  vince j kaminski @ ect  10 / 12 / 2000 03 : 38 pm  to : cindy derecskey / corp / enron @ enron  cc : vince j kaminski / hou / ect @ ect  subject : re : power play book  cindy ,  i got a copy of the book and another one is on the way from our officer in  india .  i can lend you the book and you can makes copies of the most important  chapters .  i don ' t think we should be buying too many copies and increasing the sales of  the book .  in general , i think that we should counter the presentations made by mr .  mehta . the person in charge of  our dhabol operation is a stanford graduate and maybe he could obtain an  invitation  to speak at the same forum and present the facts as they are . he should be  here for the management  conference .  vince  from : cindy derecskey @ enron on 10 / 11 / 2000 01 : 30 pm  to : vince j kaminski / hou / ect @ ect  cc : christie patrick / hou / ect @ ect , michael b rosen / hou / ect @ ect  subject : power play book  good afternoon vince ,  christie patrick mentioned to me the conference that your wife recently  attended at stanford . at this coference abahy mehta discussed his / her  recently published book ' power play ' - that certainly does not flatter  enron . i have conducted a search on amazon . com , britannica . com and dow jones  and i am coming up empty handed . would you be kind enough to briefly trouble  your wife to provide any other information she may remember , so i can narrow  my search .  i greatly appreciate it .  regards ,  cindy\",0\n\"Subject: re : ( no subject )  jana ,  sounds perfect . look forward to meeting  you on saturday . any suggestions regarding the movie ?  vince  jlpnymex @ aol . com on 04 / 07 / 2000 08 : 28 : 53 am  to : vince . j . kaminski @ enron . com  cc :  subject : re : ( no subject )  vince  you missed a really fun party last night . the turnout was even better than  we had hoped - - about 250 people .  how about saturday , april 15 for a 5 : 00 pm ( or so ) movie and then dinner ?  have a good weekend , and i hope to see you tuesday evening at the hea / nymex  crawfish boil !  jana\",0\n\"Subject: re : bei enron  anjam ,  can you , please , invite gordian kemen to an interview in london ?  stinson , zimin , vasant and krishna can interview  him from houston ( video conference ) .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 04 / 2000  10 : 13 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  jens gobel @ enron  03 / 16 / 2000 05 : 36 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : bei enron  gordian kemen on 03 / 15 / 2000 09 : 13 : 47 am  to : jens . gobel @ enron . com  cc :  subject : career opportunities @ enron  hi vince ,  following up to our chat on the phone .  gordian kemen will be arriving in austin on the 16 th . he will be staying in  austin for 2 weeks . he would very much appreciate to have the opportunity to  have a talk with you to find out if there is a place for him at enron . you  can reach him under ( 512 ) 301 - 9819 ( his parents in law ' s phone number ) .  thanks a lot for you help and attention ,  jens  - gordianresume . pdf\",0\n\"Subject: re : risk 2000 - boston  oliver ,  i apologize for the delay . i was traveling over the last few weeks .  please , feel free to edit my bullet points .  i shall be back in the office on friday afternoon . in the meantime you can  reach me on my cell  phone : 713 410 5396  my name : vince kaminski ( not kaminsky )  managing director  enron corp .  the challenge of valuation of energy related derivatives  - modeling the dynamics of energy prices  - incomplete markets  - complexity of the energy related contracts  - embedded options  - multiple layers if optionality  vince kaminski  \"\" oliver bennett \"\" on 01 / 24 / 2000 08 : 12 : 16 am  please respond to \"\" oliver bennett \"\"  to : vince j kaminski / hou / ect @ ect  cc :  subject : risk 2000 - boston  dear vince ,  i apologise for sending another email . i was wondering if you could confirm  your talk title ( plus some bullet points ) for your presentation at our annual  us congress . i have attached a condensed programme for the event - you are  speaking on stream three , part of the new research in derivatives modelling  and analysis section .  unfortunately we are printing the brochure at the end of the week and will  need these details by thursday 27 january .  best regards ,  oliver  direct : + 44 171 484 9880  risk publications , 28 - 29 haymarket , london swly 4 rx  fax : + 44 171 484 9800 email : conf - ny @ msn . com  www . riskpublications . com  - attl . htm  - condensed . doc\",0\n\"Subject: organisational announcement  we are pleased to announce that we have appointed michael brown as chief  operating officer of enron europe .  michael joined enron \u0001 , s london legal department in 1995 and has played a key  role in the success of many of our large commercial ventures since then . in  july 1999 , he was made enron europe \u0001 , s general counsel . replacing michael in  the general counsel role will be mark evans who joined our legal department  in 1995 .  please join us in congratulating michael and mark in their new roles .\",0\n\"Subject: from the enron india newsdesk - april 23 rd newsclips  vince ,  from the sound of the articles , it appears ene is ready to exit india , or alternately to get into an arbitration battle .  i have scheduled some time with you at 10 . 30 to discuss .  regards ,  sandeep .  - - - - - - - - - - - - - - - - - - - - - - forwarded by sandeep kohli / enron _ development on 04 / 23 / 2001 07 : 59 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  nikita varma  04 / 23 / 2001 07 : 20 am  to : nikita varma / enron _ development @ enron _ development  cc : ( bcc : sandeep kohli / enron _ development )  subject : from the enron india newsdesk - april 23 rd newsclips  april 23 , 2001 , http : / / www . financialexpress . com / fe 20010423 / fed 3 . html  godbole ' s report unearths absurd calculations , maharashtra could use this to wriggle out of the dabhol project  sucheta dalal  april 23 , 2001 , http : / / www . financialexpress . com / fe 20010423 / newsl . html  dpc board set to authorise president , enron md to issue notice of termination , sanjay jog  scrapping of power purchase agreement  monday , april 23 , 2001 , http : / / www . business - standard . com / today / corp 8 . asp ? menu = 2  dpc seeks ok to exit power project , tamal bandyopadhyay & s ravindran  april 23 , 2001 , http : / / www . cybernoon . com / index . html  enron winding up operations in india ?  state for consolidating all dpc arbitration notices , sanjay jog  monday , april 23 , 2001 , http : / / www . financialexpress . com / fe 20010423 / news 3 . html  monday , april 23 , 2001 , http : / / www . economictimes . com / today / 23 econo 4 . htm  maharashtra to set up experts panel on enron  the article also appeared in the following newspaper  business standard  april 23 , 2001 , http : / / www . business - standard . com / today / state 3 . asp ? menu = 32  maharashtra to set up expert panel on enron  april 23 , 2001 , http : / / www . economictimes . com / today / 23 econo 7 . htm  ' enron is a national problem '  april 23 , 2001 , http : / / www . cybernoon . com / index . html  cm takes enron to delhi today  monday , april 23 , 2001 , http : / / www . outlookindia . com / full . asp ? fname = enron + % 28 f % 29 & fodname = 20010430 & sid = 1  the real story of dabhol if a judicial probe , suggested by the committee , is ordered into the enron deal , it could embarrass three governments ranjit bhushan  monday , april 23 , 2001 , http : / / www . business - standard . com / today / state 2 . asp ? menu = 32  mseb revenue collections up at rs 968 crore in march , renni abraham  the financial express , april 23 , 2001  godbole ' s report unearths absurd calculations , maharashtra could use this to wriggle out of the dabhol project , sucheta dalal  it is finally quit india time for enron . though the controversial multinational has denied plans to sell its stake in dabhol power company ( dpc ) , informed sources say that it has sent feelers to china light it deliberately uses expensive raw material ( ignoring world bank warnings ) , has worked on fanciful demand - supply estimates and several legal requirements and permissions .  in fact , the committee has found that the mseb has been paying enron rs 930 crore more than it should every year . this comprises overcharging of rs 253 crore on account of the large regassification plant of which only 42 per cent of the capacity is used for dpc . there ' s also a rs 100 crore extra billing to the mseb for shipping and harbour charges although the cost of these facilities had been included in the capital recovery charge . by charging more than twice the operations & maintenance rate stipulated by the government of india , enron collects approximately rs 246 crore extra every year . it has also been collecting rs 332 crore every year through inflated fuel consumption claims . enron has been charging at 1878 kcal / kwh under the power purchase agreement ( ppa ) although the equipment manufacturer has guaranteed it a much lower consumption rate . this gives it a fat fuel arbitrage opportunity at the cost of the people of maharashtra .  the committee has also pointed to the strange practice of using four different exchange rates for different aspects of the project negotiation : a rate of rs 32 per dollar was assumed for calculating debt service of rupee loans , rs 34 . 5 per dollar as reference rate for phase - i , rs 39 . 35 per dollar as reference rate for phase - ii and a curious rs 42 per dollar for calculating government of india tariff . forcing a reduction of these excessive charges has nothing to do with contract cancellation . all it needs is tough negotiation and public pressure on the political establishment .  the godbole committee has established that dpc ' s tariffs can easily be halved if excess payments are eliminated and unfair conditions such as the dollarisation of payments , the take - or - pay clause and escrow facility ( which is in fact hampering mseb ' s reform particularly in power distribution ) are scrapped . the security of future payments to dpc under the restructured tariff would be based on increased cash flows from a reformed distribution system . the committee also gives enron a difficult escape route . it says that if the multinational finds the conditions for restructuring too onerous , it should free mseb from its contractual obligations and find buyers outside maharashtra . the committee has tried to establish another precedent on all projects negotiated by government : \"\" the public has a right to know what is being contracted on their behalf \"\" and has recommended that all documents , including contracts related to all independent power projects ( ipps ) , particularly dpc , should be published by the maharashtra government within two months .  also , having established that demand - supply estimates by the state government were fanciful , the committee has asked mseb to defer all negotiations with power producers until demand levels in the state permit full absorption of power generation from such ipps . it recommends that such negotiations should be in accordance with the least - cost plan spelt out by the report . this should also end the hectic lobbying by reliance ( patalganga ) , mittals ( bhadravati ) , the bses ( saphale ) and others to set up ipps in maharashtra .  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - the financial express , april 23 , 2001  dpc board set to authorise president , enron md to issue notice of termination , sanjay jog  scrapping of power purchase agreement  the board of directors of dabhol power company ( dpc ) , which has already taken an aggressive posture , has proposed to authorise the enron india managing director k wade cline and dpc president and chief executive officer neil mcgregor to issue notices for the termination of power purchase agreement ( ppa ) and transfer of dabhol project in view of continuing default by the state and central governments and maharashtra state electricity board ( mseb ) .  the board of directors , which would meet on april 25 in london , also plans to appoint mr cline as its \"\" true and lawful attorney - in - fact \"\" and authorise him to represent the company in the negotiation of all project contracts and financing agreements and their amendments and modifications . top sources told the financial express that dpc would authorise mr cline and / or mr mcgregor to serve the preliminary termination notices and transfer notices to the state and central governments and mseb under clause 17 and schedule 11 of the ppa .  \"\" in response to the continuing default by the mseb of its payment obligations under the ppa , the failure of the government of maharashtra to honour obligations under its guarantee and state support agreement and failure of the government of india to honour obligations under its counter guarantee , the company has sought recourse to dispute resolution and has initiated conciliation and arbitration proceedings , \"\" the company resolution said . \"\" consistent with this recourse to contractual remedies , the company now seeks the authority to serve preliminary termination notices and transfer notices pursuant to clause 17 and schedule 11 of the ppa from time to time and at any time upon the occurrence of an event giving rise to its right to serve such notices as determined by the company , \"\" the resolution added .  according to the resolution , the directors , the company secretary and officers of the company and each of them acting individually , are authorised and empowered to execute and deliver such documents and instruments and take such other actions as they deem fit to effect the purpose of the resolution , in the name and for and on behalf of the company . against this backdrop , the state government and mseb have been exploring the possibilities of issuing termination notice to the dpc for its failure to meet the contractual obligations under the ppa . the state government and mseb sources said that such a notice could be served by the mseb as dpc has not paid the rebate ( penalty ) of rs 409 crore for misdeclaration and default on the availability of power on january 28 and february 13 .  the state government and mseb , which reviewed its position on saturday at a meeting convened by the chief minister vilasrao deshmukh , are of the view that they have a strong case and substantial grounds to slap the termination notice to the dpc . the dpc ' s move to appoint mr k wade cline as its \"\" true and lawful attorney - in - fact \"\" deserves importance especially when the state government proposes to set up a negotiating committee to cut the per unit cost and gauge the possibility of sale of dabhol power to the power deficit states .  mr cline would also be authorised to dispose of equipment that is worn out or obsolete or other equipment or fuel no longer expected to be used in the ordinary course in amounts exceeding rs 64 crore or the equivalent in foreign currency in any financial year . furthermore , mr cline would be in a position to enter into contracts and take any other actions for purpose relating to the day - to - day operation of the company ' s business or exercise its rights and discharge its obligations under the project contracts and the financing agreements  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - business standard , monday , april 23 , 2001  dpc seeks ok to exit power project , tamal bandyopadhyay otherwise it cannot be a complete exercise , \"\" he added .  deshmukh and the mseb team are scheduled to meet union finance minister yashwant sinha and power minister suresh prabhu on monday in new delhi to discuss the stalemate and find a acceptable solution for the same . \"\" i am meeting sinha and prabhu to request them to take an initiative and send representatives for the negotiations committee , \"\" he said . deshmukh ' s meeting with the centre comes at a crucial stage as dpc ' s lenders would be meeting in london , on the same day , to decide upon the future finances of the controversy marred 2 , 184 - mw project in dabhol .  moreover , the dpc board is also scheduled to meet on april 25 in london to decide the fate of its $ 900 million project in dabhol , including winding up of its operations . the meeting would discuss the topmost item on the agenda , which was to empower dpc managing director neil mcgregor to wind up operations in the country . dpc has already slapped one conciliation notice on the centre and three arbitration notices on the state government over non - payment of dues amounting to rs 213 crore plus interest towards the bills due for the months of december 2000 and january 2001 .  asked whether the centre had send any feel over a possible clubbing together of the arbitration and conciliation processes , deshmukh replied in the negative . deshmukh said mseb chairman vinay bansal along with two senior officials would attend dpc ' s board meeting in london . bansal had said on sunday that mseb would present its case concerning the rs 401 - crore penalty that the loss - making board slapped on dpc on february 28 , for not generating required power within the stipulated time as per the ppa . currently , enron india holds 65 per cent in the $ 900 - million dpc project , which includes mseb ' s 15 per cent , while general electric and bechtel hold 10 per cent each . ( pti )  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - the economic times , april 23 , 2001  ' enron is a national problem '  union power minister suresh prabhu on sunday said the centre would render all possible help to resolve the enron crisis faced by maharashtra which is \"\" haunting the entire country \"\" . prabhu said he would meet the state chief minister vilasrao deshmukh in new delhi tomorrow to discuss stalemate over the payments due to the us energy major - promoted dhabol power company by the maharashtra state electricity board . referring to godbole committee report ' s finding that dpc was keen on offering mseb ' s 15 per cent stake to the national thermal power corporation , prabhu said : \"\" the centre has not received any such proposal regarding participation of the central power utility . \"\" ( pti )  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - afternoon , april 23 , 2001  cm takes enron to delhi today  chief minister vilasrao deshmukh will discuss the enron imbroglio with union finance minister yashwant sinha and union power minister suresh prabhu in delhi today . he will request the centre to appoint a representative to the committee that the state government is setting up to carry on discussions and negotiations regarding the dabhol power project of the us - based enron power company . today , a special meeting of representatives of all those finanicial institutions which have extended loans to the dabhol power project is also being held in london . a meeting of its directors will be held on wednesday to discuss the fate of the $ 900 million project which has been under a cloud ever since its inception .  yesterday , mr . prabhu declared at a ' janata darbar ' in thane that the centre would extend all help to solve the enron crisis . this is in the backdrop of pending bills to the tune of rs . 213 crore which the state fowarded to the centre against payments for the months of december 2000 and january 2001 . confirming that there was no proposal from the state government to handover the project to the centre , mr . prabhu said that the situation of the electricity boards in the country was precarious . the centre had decided to assist maharashtra upto rs . 250 crore every year to improve customer services .  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - outlook , monday , april 23 , 2001  the real story of dabhol if a judicial probe , suggested by the committee , is ordered into the enron deal , it could embarrass three governments ranjit bhushan  \"\" the committee has prima facie found infirmities in several decisions taken in respect of the enron project at different points of time by successive governments and agencies in the centre and state . \"\"  - - energy review committee headed by former home secretary madhav godbole  this could well be the real enron story  a five - member high - powered committee headed by madhav godbole - and including former union economic affairs secretary e . a . s . sarma , hdfc chairman deepak parekh , teri chairman rajendrapachauri and maharashtra government official vinay mohan lal - has recommended a judicial probe into the entire enron power project deal saying it signified \"\" the utter failure of governance that seems to have characterised almost every step of the decision - making process relating to the dabhol project \"\" . the report , which was submitted to the maharashtra government last fortnight and has been acquired by outlook , is severely critical of former chief minister sharad pawar ( with the congress then ) , the 13 - day bjp - led union government which reworked the deal in 1996 , shiv sena supremo balasaheb thackeray and his government in maharashtra headed by manohar joshi  \"\" the utter failure of governance seems to have characterised almost every step of decision - making relating to the dabhol project . \"\" madhav godbole committee report  an investigation , if ordered , could embarrass at least these three governments the report clearly upholds the allegations of money being paid by enron to politicians and bureaucrats for clinching the deal . according to the committee , the deal reveals failure of governance , both at the centre and state , and across different agencies . \"\" it strains belief to accept that such widespread and consistent failure to execute responsibilities is purely coincidental , \"\" the report said , proposing a set of measures to be implemented if something of the project was to be retrieved . godbole and sarma also felt that the panel should categorically recommend the government of india to order a judicial inquiry . this was finally adopted by it . says a congress leader : \"\" enron could well become the biggest political issue in maharashtra and put to question liberalisation , particularly in the power sector . \"\"  the proposal has already struck panic . says ncp ' s praful patel : \"\" if the enron decision has at all been detrimental , it is because of the haste with which phase 2 was cleared by the shiv sena - bjp government . now with the state having already entered into an agreement with enron , the important thing is to resolve it amicably . a judicial inquiry will be an eyewash because it ' s not an issue of corruption but that of perception . \"\"  pro - market congressmen privately admit that it was their governments at the centre and the state which invited enron , even though the second phase was cleared by the bjp - shiv sena combine . says congress spokesperson jaipal reddy : \"\" right now we ' re too involved with the parliament deadlock over tehelka . \"\" pro - liberalisation congress mps also fear that such witch - hunting could send wrong signals to foreign investors . non - congress mps from maharashtra , meanwhile , claim that the godbole committee was instituted with the express purpose of politicising the enron issue . \"\" i think i know vilasrao deshmukh ' s gameplan , \"\" says an mp from the state . but some mps like congress ' prithviraj chavan question the cloak of secrecy that ' s surrounded the deal : \"\" i ' ve maintained for long that there should be a judicial committee to examine this \"\" .  the committee report also says that had the enron project been subjected to a techno - economic appraisal , as envisaged under provisions of the electricity supply act of 1948 and related legislations , the infirmities could have been avoided . since this wasn ' t done , questions about a concerted effort towards exercising undue influence at every stage of the project are bound to arise , the exhaustive 93 - page report points out .  \"\" i ' d highlight the speed with which the 13 - day vajpayee government cleared the project minutes before it quit , \"\" says congress mp prithviraj chavan .  the enron project had been held out as an exemplar of the impending liberalisation in the early ' 90 s and , despite several controversies , is now an established power project at dabhol , 150 km south of mumbai . in july 1992 , enron signed an mou with the maharashtra state electricity board ( mseb ) to set up a 2 , 550 mw station as part of the government ' s ' fast track ' projects .  subsequently , when the shiv - sena - bjp came to power in maharashtra it filed a writ against the project . this curiously led to renegotiations with enron . the committee has quoted a bombay high court order on the renegotiated deal . \"\" once it ( gom ) decided to revive the project , it acted in the very same manner its predecessors in office had done . it forgot all about competitive bidding and transparency . the speed with which the negotiating group studied the project and made its proposal for renegotiatons , which was accepted by dabhol , is unprecedented . \"\" says chavan : \"\" i would particularly like to highlight the speed with which the 13 - day vajpayee government at centre endorsed the renegotiated project minutes before it resigned . \"\"  since the commissioning of the plant in may 1999 , the mseb has paid rs 1 , 607 crore for the power it has bought from dabhol . if the same watttage of power had been bought from indian - built power plants fired by indigenous coal , the payment would have been approximately rs 736 crore . in the first year - and - a - half of its operation itself , the dpc had drained the maharashtra exchequer of nearly rs 1 , 000 crore .  the central electricity authority ( cea ) , in fact , pointed out that the dabhol plant was not the least costly option . the mseb had other inexpensive alternatives like the four units of kaparkheda , but they were in a preliminary stage . the report notes : \"\" . . . if the mseb had made efforts to seriously pursue these projects , they might not have remained in their preliminary stages \"\" . it adds that the members were of the opinion that \"\" the mseb and the maharashtra government erred seriously , based on information available at that time , in proceeding with the dpc as a base - load factor even when its capacity was reduced . \"\" the failure seems to have been compounded by the laxity of the union power ministry , finance ministry and the cea . it quotes the cea as saying that since the union finance ministry found the tariff reasonable , no further examination was required  strangely , bal thackeray ' s shiv sena , when it came to power together with the bjp in maharashtra , filed a writ in the court and then renegotiated the deal .  after the new shiv sena - bjp government took over , its cm , manohar joshi , appointed a renegotiating committee in 1996 which made the right noises , actually managing to reduce the tariff . but certain things remained inexplicable . no fresh clearances were required from the cea , which also said that \"\" since no cost increase was involved . . . fresh formal clearance wasn ' t necessary . \"\" says the committee : \"\" this only adds strength to the suspicion that the cea didn ' t consider the economic aspects of the project at all . indeed , given the non - availability of any official record of the meeting on june 24 , 1994 , with the committee and the nature of this letter dated december 23 , 1994 , the committee is doubtful whether the economic aspects of dpc were discussed at all . ' '  the credibility of the shiv sena - bjp government has been seriously questioned . \"\" the committee finds it unexplicable ( sic ) why there was no mention of any reduction in capital cost of the project from $ 2 , 828 million to $ 2 , 501 million as agreed by dpc in the summary report of the renegotiating committee , \"\" the panel observes . says lawyer prashant bhushan : \"\" it is strange that the shiv sena - bjp government first filed a writ in the court and then coolly renegotiated the deal . \"\" the committee further spells out the losses incurred through the deal . \"\" subsequent to the commissioning of the dpc , the financial deterioration of mseb has been rapid . while the mseb was in profit in 1998 - 99 , it plunged into huge losses of rs 1681 crore in 1999 - 2000 . \"\"  significantly , the world bank in 1993 had predicted the system ' s inherent weaknesses . in a letter written to the then power secretary , r . vasudevan , a top bank official had said that \"\" after a detailed review of the analytical framework and costing assumptions , we reconfirm our earlier conclusion that the dabhol project , as presently formulated , is not economically justified \"\" and that in \"\" our assessment the project is too large to enter the mseb system in 1998 . the proposed base - load operation could result in uneconomic plant dispatch , as already existing lower variable cost coal power would be replaced by the higher cost lng power . \"\"  enron ' s persistence and the ' gullibility ' of the indian side can be gauged from high - ranking enron official joe sutton ' s letter to a key indian official , ajit nimbalkar : \"\" i recently met with the world bank and have been following the articles in the india papers . i feel that the world bank opinion can be changed . we ' ll engage a pr firm and hopefully manage the media from here on . the project has solid support from all other agencies in washington . \"\"  the key question in the enron deal is whether a developed state like maharashtra needs outside intervention in the power sector at all ? for the first time the godbole committee has raised objections about the viability of such a project . according to the report , the mseb has been one of the better performing boards in the country and has , despite a faulty transmission and distribution ( t and d ) system , managed to consistently earn net revenue surpluses on an accrual basis .  maharashtra accounts for nearly one - fourth of the gross value of india ' s industrial sector . it ' s one of the few states to achieve 100 per cent electrification . since ' 95 , the mseb has been adding to its generation . \"\" this improvement , which has been largely due to renovation and modernisation undertaken by the mseb , exceeded its own expectations at a time when the dpc was being considered , \"\" the report points out . following a policy of cross - subsidy , roughly nine out of its ten users are subsidised .  but the gap between the average cost of supply and average realisation hasn ' t been much . in fact , the subsidy claim decreased from rs 630 crore in 1995 - 96 to rs 355 crore in 1998 - 99 , until in 1999 - 2000 it increased nearly five - fold to rs 2 , 084 crore due to the sudden increase in the gap by 26 paise per unit - from 15 to 41 paise - an increase of 173 per cent . \"\" the increase in the subsidy claim by rs 1 , 729 crore is due to the increase in the gap principally because of the increase in power purchase costs , \"\" says the committee , adding : \"\" without the dpc and without problems of t and d loss , the mseb could be financially healthy . \"\"  but can that happen now since enron is here to stay ? the committee has come up with some far - reaching recommendations : make public all dabhol - related documents and agreements , restructure the dabhol project itself to bring down the cost of power , restructure dpc financially , allow sale of dpc power outside maharashtra , re - examine ppas in accordance with least - cost plans , and thoroughly reform the mseb . the committee know this can become reality only with political consensus and through forming of public opinion . the question is , can that be achieved in an unstable political environment ?  with priya sahgal  making of a scam  ? 1992 : centre invites enron to set up ' fast track ' power project  ? dec 1993 : first ppa signed with mseb  ? 1994 : enron starts construction  ? 1995 : sena - bjp govt scraps enron  ? 1996 : state govt renegotiates project  ? 1996 : 13 - day vajpayee govt approves counter - guarantee  ? may 1996 : state cabinet clears ppa  ? may 13 , 1999 : phase i commissioned  ? jul 1999 : financial closure for phase ii  ? oct 2000 : mseb defaults on payment , subsequently stops paying monthly bills  ? feb 6 , 2001 : enron invokes central government ' s counter - guarantee  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - business standard , monday , april 23 , 2001  mseb revenue collections up at rs 968 crore in march , renni abraham  the maharashtra state electricity board ' s ( mseb ) revenue collections in march 2001 stood at a record rs 968 crore . this was largely due to the disconnection drive on defaulter connections - - pegged at nearly 20 , 000 disconnections a month - - which resulted in compliance by consumers . with the dabhol power company ( dpc ) monthly financial burden issue now a topic of discussion among arbitrators on the negotiating table , the mseb has turned to putting its house in order .  as if to ward of any criticism of its fiscal condition that could be termed as the facilitator to the entire dpc tariff crisis , the state electricity board has put matters relating to its performance on record . for instance , mseb has recorded the highest power generation in the year ended march 31 , 2001 , at 45930 units , compared with the previous year ' s 45582 units , making it the top seb of the country in this respect . similarly its power stations recorded the highest availability percentage at 86 . 1 up from 84 . 6 per cent last fiscal . plant load factor is up to 72 . 78 per cent , compared with 71 . 7 per cent in 2000 .  the parli power station has recorded the highest ever generation in the ten years of its life time in 2000 at 4545 million units , which made it eligible for the meritorious productivity award under the eligibility guidelines issued by the government of india carrying a cash award of rs 12 . 5 lakh . all other power stations in the state , without exception , also fulfill the eligibility criteria for the cash award , a senior mseb official said . similarly , the chandrapur power station became the first power station of any state electricity board to get the iso 9002 certification .  a senior mseb official said : \"\" earlier mseb was suffering from too much interference in its day to day functioning . the agriculturists were touted as the major reason for its deteriorating accruals , while theft of electricity during the transmission and distribution stage was conveniently camouflaged under this head . in the recent past , the government has authorised mseb to take steps to curb this misuse of power by its own officials , many of whom , including a chief engineer have suffered suspensions\",0\n\"Subject: phone interview  per our conversation yesterday , i will have a job description for the comp  finance students sometime today . i have also gone through the mba resume  stack yet again . the person who requested the phone interview is troy  mischke . he works for pratt & whitney in florida . cmu has a flexmode  program , which is another phrase for distance learning .  it turns out that there are a number of people that work for pratt & whitney  in florida . my guess is that they all know each other , and decided to take  the flexmode program together . here are the names  tony garcia  k . todd kuykendall  timothy leonard  troy mischke  only troy requested the phone interview , although tony gacia did send a  cover letter . what is the best path forward ?  - kevin kindall\",0\n\"Subject: interview schedule for yingquan shen ( charles )  please be aware of the correction on candidate ' s name . thank you  stephanie  - - - - - - - - - - - - - - - - - - - - - - forwarded by stephanie summers / na / enron on 10 / 10 / 2000  04 : 00 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  stephanie summers  10 / 10 / 2000 03 : 41 pm  to : vince j kaminski / hou / ect @ ect , zimin lu / hou / ect @ ect , alex  huang / corp / enron @ enron , tanya tamarchenko / hou / ect @ ect , paulo  issler / hou / ect @ ect  cc : anita dupont / na / enron @ enron , shirley crenshaw / hou / ect @ ect , marlow  anderson / corp / enron @ enron  subject : interview schedule for yingquan shen ( charles )  please find the interview packet for the above - referenced person . the  interview will occur on friday october 13 , 2000 . please print all three  documents for your reference . if you have any questions , or conflicts of  schedule , please do not hesitate to contact me .  stephanie  58701\",0\n\"Subject: re : ca for henwood engagement  sandeep ,  it probably makes sense for you to directly coordinate the signing of the  contract for henwood . attached is another copy of the earlier email  containing a draft contract provided by bonnie nelson in legal . she would  still like to change section 6 on exclusivity . her number in houston is  713 646 7712 .  let me know whatever i can do to help .  - - stinson  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 01 / 18 / 2001  08 : 43 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  bonnie nelson @ enron _ development  01 / 11 / 2001 12 : 51 pm  to : stinson gibner / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , sandeep  subject : re : ca for henwood engagement  stinson ,  attached please find a draft consulting agreement for use with henwood .  you will want to review it before you send it to henwood . please see section  6 in particular . also , i put in that arbitration will be in houston and  texas law will apply . we could move that to new york , with new york law if  that is better for henwood . if pressed , we could make it singapore or u . k .  law , with arb in singapore . but any other law , including australian law ,  would mean we would need to get this contract reviewed by foreign counsel - - so  i strongly urge you to argue for texas or ny law ( no other state , please ) .  i tried to make this agreement reflect the terms in henwood ' s proposal , and  believe i succeeded . our form has some additional terms not contained in  their proposal , as well as fcpa boilerplate ( ie . , the \"\" business conduct \"\" and  \"\" drug policy \"\" language ) . also , i just want to point out that this agreement  allows them to subcontract the work - - but only with our written agreement .  under their proposal , the subcontractor costs will be charged to us at cost  plus 15 % - - so you might not want to do it .  please let me know if you have any comments or questions .  bonnie\",0\n\"Subject: re : book review  great job vince . i know people will be knocking themselves over for the  book . i know for a fact that the consultants can make a lot of money just  ' reselling ' stuff that are in the book ! i know first hand since d & t did that  with even the first version .  i think the fas 133 article by some out - of - work nuclear engineer was the bomb !  ravi .\",0\n\"Subject: resume , cv . , etc .  dear mr . kaminski :  as explained over the phone , i have been doing political , economic , and  strategic analysis for terry thorn , formerly head of government affairs for  ei . most of my work has been focussed on asia , a region in which i have deep  experience and speak major languages . wtih the restructuring of the  asia - pacific group , terry is moving to a new function and i am seeking a new  role . since i have been based in washington , dc , with more frequent trips to  asia than to houston , i still feel as though i don ' t know my way around the  company , a disadvantage in my current situation . several people have  recommended that i talk to you about your shop , but more generally if you  have any ideas about where i might fit in , i would appreciate them .  i am attaching my resume , cv and a biographical sketch as you requested ,  edith terry  enron / dc\",0\n\"Subject: alliance info alert : ferc report on western markets  at its special meeting today , ferc released the results of its eagerly  awaited probe into california ' s summer power crisis , concluding that under  certain circumstances , california ratepayers were subjected to unjust and  unreasonable power rates due to california ' s \"\" seriously flawed \"\" market  structure and rules in conjunction with tight demand and supply conditions  throughout the west .  the ferc staff report on western markets and the causes of the summer 2000  price abormalities , entitled , part i of staff report on u . s . bulk power  markets , is available at the following website :  in response , ferc issued an order proposing a series of sweeping structural  changes to the california iso and px to help remedy the pricing problems , and  solicited public comment by november 22 . a technical conference has also  been scheduled for november 9 , to discuss the proposed solutions and other  remedies that might be suggested ( details tba ) . while all four commissioners  supported the order , the order stretched the commission . chairman hoecker  and comm . breathitt expressed strong endorsements , while comms . hebert and  massey concurred , citing areas where they felt the commission had either  \"\" over - reached \"\" or not gone far enough , as discussed below . a final order is  expected to be issued by year ' s end .  at the same time , the commission warned california consumers of their  continued risk of paying higher prices unless policy makers there resolve  state issues , such as : ( 1 ) immediately implementing the availability of day  ahead markets for power purchases ; ( 2 ) development of demand responses ; ( 3 )  siting of generation and transmission ; and ( 4 ) assurance of sufficient  reserve requirements .  highlights of proposed california structural remedy  in its order , ferc proposed a series of market overhauls , including :  ( 1 ) eliminating the state ' s mandatory requirement that the state ' s  investor - owned utilities buy and sell electricity through the px , and allowing  these utilities to purchase electricity through forward contracts and other  alternative mechanisms to manage supply risks .  ( 2 ) requiring market participants to schedule 95 percent of their  transactions in the day - ahead market and instituting a penalty charge for  under - scheduling ( in excess of five percent of hourly load requirements ) , in  order to discourage over - reliance on the real - time spot market .  ( 3 ) establishing independent , non - stakeholder governing boards for the iso  and px .  ( 4 ) modifying the current single price auction system by ( a ) imposing a  temporary $ 150 / mwh \"\" soft cap \"\" that prohibits supply bids in excess of $ 150  from setting the market - clearing price for all bidders ; ( b ) requiring sellers  bidding above $ 150 / mwh to report their bids to ferc on a confidential , weekly  basis and provide certain cost support ; and ( c ) requiring the iso and px to  report monthly information on such bids . the commission ' s price mitigation  measures would remain in effect through december 31 , 2002 .  ( 5 ) declining to order retroactive refunds for the state ' s ratepayers and  utilities , citing insufficient authority to do so , but subjecting sellers to  potential refund liability for transactions from october 2 , 2000 until  december 21 , 2002 , but no lower than their marginal or opportunity costs , if  ferc finds non - competitive behavior .  ( 6 ) encouraging accelerated state siting approval and introduction of demand  response management programs .  separately , the draft order rejected the iso ' s request for an extension of  its current purchase price cap authority , and the px ' s request for price  capping authority .  commissioner responses  comm . herbert reluctantly concurred , noting that his decision may change when  a final order is considered based on comments filed or testimony offered at  the november 9 meeting . he stressed that he would have preferred that the  order address four areas : ( 1 ) eliminate all price controls in california  markets ; ( 2 ) abolish the single price auction entirely ; ( 3 ) terminate the  \"\" buy and sell \"\" mandate in the px ; and ( 4 ) direct the iso to address a long  list of cited problems in its january 2001 rto filing , rather than having the  commission prescribe specific remedies .  hebert stated that while he was opposed in principle to the \"\" soft cap \"\"  concept , if one had to be adopted , then the soft cap should increase  incrementally increase over time at specific pre - announced dates . he  believes that this would serve to both encourage greater investment in  facilities and additional forward contracting as well as provide an incentive  for california regulators to address market design and other flaws . also , he  would not have disbanded the stakeholder governing boards at this time , but  allow the iso and px to address this issue in their january 2001 rto  filings . in addition , he would not dictate risk management methods ,  preferring instead that market participants determine appropriate actions on  their own . finally , he advised californians not to be so environmentally  focused that they do not realize their tremendous need for generation  capacity .  comm . breathitt stated her approval of the order while warning that ferc  cannot allow the events of this past summer to reverse or slow the progress  towards open and competitive markets . she noted that it was the commission ' s  job to guide the market to self - correct and not to conduct \"\" command and  control . \"\" she also commended the managers of the iso and px , saying that  they have performed admirably . however , she noted she is awaiting comments  on the single price auction remedy and its accompanying confidential  reporting requirements .  comm . massey concurred , but emphasized that he advocates a more aggressive  approach . he feels that the congress has \"\" put its thumb on the scale \"\" in the  federal power act to protect consumers . stating that prices will continue to  be unreasonable in the future , he believes that this order moves in the right  direction , by proposing solutions to identified problems such as an over  reliance on the spot market , lack of demand response , the need to  reconstitute governance of the iso and px and the elimination of the buy / sell  mandate . comm . massey specifically called for comments regarding whether the  $ 150 / mwh soft cap went far enough , whether ferc has the legal authority to  issue refunds and to determine whether there should be a requirement for a  certain percentage of forward contracting to hedge against the spot market  price volatility .  finally , chairman hoecker stated his strong support of the order , but noted  that this is \"\" no time to pull punches . \"\" he emphasized that the commission  needed frank comments from the industry . he echoed comm . breathitt ' s warning  that competition is at risk and that they needed to get the markets back on  track . noting that the commission lacked authority to order refunds , he  stated that the responsibility rests with congress . addressing  jurisdictional issues , he stated that siting problems encountered at the  state level are slowing the \"\" meandering transition \"\" to competition . he feels  that the state of california and ferc need to work together to resolve these  problems and that ferc is not attempting to usurp power . rather , california  is part of a broader interstate market and is dependent on the western region  for reliable energy , thus placing the burden on federal action to make things  work , hoecker maintained . the chairman also said that the commission will  fully investigate and act upon complaints of market power abuse or further  evidence provided by staff ' s ongoing investigation .  if you have any questions or comments , please call jack cashin at  202 / 508 - 5499 .\",0\n\"Subject: revised : restricted list  neither ena / rac / egf employees nor family members or others living in their  household or financially dependent on the ena / rac / egf employee may purchase  or sell securities of any entity ( or derivatives thereof ) listed on the  restricted list for your or their personal or related accounts or recommend  the purchase or sale of such securities to any person , except with the prior  approval of the compliance department in consultation with the ena legal  department .  in addition to the trading restrictions above , should you at any time possess  non - public material information about any public company , you , your family  members and anybody that is financially dependent on you , are restricted from  trading in that issue , and you may not disclose the non - public material  information to anyone that does not have a business need to know .  company name stock symbol  adrian resources  beau canada exploration ltd bau cn  belco oil & gas corporation bog  bonus resource services corp bou  brigham exploration bexp  canfibre group ltd . cfgl  carrizo oil & gas inc . crzo  costilla energy cose  crown energy croe  cynet , inc . cyne  cypress energy cyz  esenjay exploration esnj  hanover compressor co . hc  ice drilling enterprises inc . idf  industrial holdings , inc . ihii  inland resources , inc . inln  kafus environmental industries , inc . ks  nakornthai strip mill public co ltd nsm set  paladin resources plc plr ld  paradigm geophysical pgeof  place resources , inc . plg cn  quanta services inc . pwr  queen sand resources , inc . qsri  quicksilver resources inc . kwk  rhythms netconnection inc . rthm  saxon petroleum , inc . sxn cn  startech seh cn  syntroleum corp . synm  tejon ranch corp . trc  titan exploration texp  transcoastal marine services , inc . tcms  zargon oil & gas zar cn  the restricted list is solely for the internal use of ena / rac / egf . no one  may engage in discussions regarding whether a security is or is not on the  restricted list with persons outside ena / rac / egf without specific clearance  from the compliance department in consultation with the ena legal department .  in addition to the above , you are reminded that pursuant to enron corp . ' s  risk management policy ( \"\" policy \"\" ) , no ena / rac / egf employee may engage in the  trading of any \"\" position \"\" ( \"\" position \"\" means any commodity , financial  instrument , security , equity , financial asset or liability that are  authorized for trading in the policy for the benefit of any party other than  ena / rac / egf , whether for his / her own account or the account of any third  party , where such position relates to ( i ) any commodity , financial  instrument , security , equity , financial asset or liability which falls within  such employee ' s responsibility at ena / rac / egf or ( ii ) any energy commodity .  the prohibitions listed above do not replace or modify the policies set forth  in ena ' s policies and procedures regarding confidential information and  securities trading , enron corp . ' s risk management policy , or enron corp . ' s  conduct of business affairs . should you have any questions regarding the  above , please contact me at ext . 31939 .\",0\n\"Subject: seasonal factors and curve fitting  i have written a c + + code to do the following : for a given curve ,  the code will filter out the seasonal factor . it then fits the deseasoned  curve to a smooth function of the form f ( t ) = a + a / ( t + b ) c , with 00 , which is useful in calculating forward - forward ? vol . ? the outputs are season patterns ( 2 different patterns are allowed ) ? and the smoothed curve . one can then calculate forward - forward vol ? from the smoothed curve and superimpose the seasonal factors back ? onto the curve . ? ? this procedure is not useful for var calcuation . however , i believe it ? is useful for other situations which require the knowledge of seasonal ? forward - forward vols . for example , in power plant valuation and ? credit exposure simulations , it would reflect the reality more closely ? if we add seasonality to our forward - forward vol in simulating the forward ? prices . ? ? attached are the spreadsheet and xll file . i will forward the c code if ? any of you is interested . ? ? alex ? ?\",0\n\"Subject: doreen  v -  i spoke with doreen this morning re : our san francisco project . please  forward info to her at  doreen @ magdalinweiss . com  are you up fro brunch at my house on sunday with bill and mary ? kathryn will  be home on midterm break  p -\",0\n\"Subject: re : ken lay ' s speech  the $ 460 billion would be the cumulative tax cut over the first five years .  the $ 1 . 3 trillion would be the cumulative tax cut over 10 years ,  so yes , the $ 460 billion is part of the $ 1 . 3 trillion .  attached is the inforamtion that you requested on the ppi .  regards ,  maureen\",0\n\"Subject: fea announces the release of @ energy 2 . 1 .  05 / 14 / 2001  enron north america corp .  vince kaminski  1400 smith street  30 th floor , rm . 3036 b  houston , tx 77251 - 1188  1 713 - 853 - 3848  dear vince kaminski ,  this is to inform you of the release of @ energy 2 . 1 . ftp download  instructions are available immediately . the download instructions are  included at the end of this email . please see below for more information  regarding this new release . .  fea is pleased to enclose your new version of @ energy / erglib . the  accompanying documentation contains installation and other information .  here is an overview of the new and changed features since version 2 . 0 .  @ energy ( forward curve ) no change .  @ energy ( basics ) a control variate methodology hull ( 1997 ) has been  implemented for valuation of american options ( opt ) , black and  mean - reverting models . it greatly improves accuracy at minimal cost in  speed . all models now supports new scalar risk measures corresponding to  parallel displacement delta , hedge , and gamma . average price / strike options  now support an alternative way of computing theta . the definition of gamma  curves has been modified for all models .  @ energy ( advanced ) a faster and more accurate methodology is used to value  spread options . models affected are spreadopt , stripspreadopt , optspreadopt ,  optstripspreadopt . the new methodology dramatically improves speed . all  models now supports new scalar risk measures corresponding to parallel  displacement delta , hedge , and gamma . average price / strike options now  support an alternative way of computing theta . the definition of gamma  curves has been modified for all models .  @ energy ( swing ) the definition of gamma curves has been modified for all  models .  @ energy ( weather ) no change .  see the file fea \\ energy \\ ergnote . txt in your distribution for a list of bug  fixes .  here is an overview of the new and changed features since version 1 . 6 .  @ energy ( forward curve )  jump parameters are now calibrated for use in other @ energy functions .  inputs and outputs to powercalib and comcalib have changed . see the  corresponding function syntax in the user guide for additional information .  35 - 40 % speed improvement . the module is now out of beta .  @ energy ( basics )  different interpolation schemes on forward prices are now supported . if you  use indexswap , exoticswap , or optindexswap with floating price linked to a  series of futures dates , such futures dates need not be close to dates  specified in the forward curve input . a new utility function , pathutil ,  allows you to simulate and visualize price paths consistent with the models  supported by @ energy . 25 - 30 % speed improvement .  @ energy ( advanced )  different interpolation schemes on forward prices are now supported . if you  use optdiffswap or diffswap with floating price linked to a series of  futures dates , such futures dates need not be close to dates specified in  the forward curve input . calspreadopt now allows for the specification of  two different mean reversion rates . 30 - 35 % speed improvement .  @ energy ( swing )  swingopt and stripswingopt now allow for valuation of swing straddle  contracts with overall load constraints . 65 - 70 % speed improvement . the  module is now out of beta .  @ energy ( weather )  30 - 35 % speed improvement .  see the file fea \\ energy \\ ergnote . txt in your distribution for a list of bug  fixes .  if you are a user of the erglib library , please be aware of possible  backward compatibility issues in calls to eapo , easo , espreadapo ,  espreadaso , and ecrackapo . see fea \\ energy \\ ergnote . txt for additional  details .  here is an overview of the new and changed features since version 1 . 5 .  @ energy ( basics )  european options and strips of european options now support valuation via a  jump diffusion model ( see opt and stripopt functions ) . average price options  ( see the apo , spreadapo , crackapo functions ) , and average strike options  ( see the aso , spreadaso functions ) now allow for a direct input of the  fixing dates .  @ energy ( advanced )  includes two new functions , optstripopt and optstripspreadopt for valuation  of complex compound options .  if you are a user of the erglib library , please be aware of backward  compatibility issues in calls to eapo , easo , espreadapo , espreadaso , and  ecrackapo . see fea \\ energy \\ ergnote . txt for additional details .  here is an overview of the new and changed features since version 1 . 4 .  @ energy ( forward curve )  @ energy ( forward curve ) is the new module which includes functions designed  to generate forward curves , volatility curves and mean reversion rates used  in many other @ energy functions . module in beta release .  @ energy ( basics )  apo ' s and aso ' s : bug fixed when avg _ starts prompt .  type \"\" quit \"\" .  the file will be downloaded into the directory at which you entered the ftp  site .  double click on the exe and follow the instructions on the screen .  there is also a readme file which contains installation instructions .  you may wish to print this out for easy reference .  n . b . : the password is only valid until the first friday of next month .  if you have any questions please feel free to contact us . we appreciate this  opportunity to be of continuing service to enron north america corp . .  regards ,  erin hopkins  administrative assistant  financial engineering associtates , inc .  tel : + 1 . 510 . 548 . 6200  mailto : info @ fea . com  or  mailto : support @ fea . com\",0\n\"Subject: re : garp 2001 convention  andreas ,  am i entitled to bringing one delegate as a guest , free of charge ?  some conferences offer such privileges .  vince  \"\" andreas simou \"\" on 12 / 04 / 2000 06 : 31 : 37 am  to :  cc :  subject : garp 2001 convention  dear garp 2001 speaker  ?  this is just a quick note to keep you up - to - date with developments at the  garp 2001 convention , which will be held in new york between 12 th and 15 th  february , 2001 .  ?  thus far , garp 2001 looks set to far exceed our expectations and garp 2000 .  there has been a great deal of interest in the 2001 convention . delegate  bookings have been much higher than this time last year . as a result , we are  set to far exceed the number of delegates that attention earlier this year .  the three workshops and the one - day asset management forum are also very  well received and will probably reach full capacity . i will of course  provide you with much fuller details closer to the time of the event .  ?  regarding the event itself , i would like a few outstanding issues :  ?  1 . presentations : can you please e - mail your presentation to me by 15 th  december , so that i have enough time to reproduce them and place them in a  delegate pack for the convention . ( given the break of the christmas and new  york period , and that the event is being held in new york , i am sure you can  appreciate that there are certain logistical factors that need to be taken  into account , hence the reason why the presentations are required as soon as  possible ) . this is purely for reproduction , we also request you bring your  presentation to the convention on the day in either a floppy disc or a  laptop .  ?  2 . audio - visual requirements : can you please inform me of what audio - visual  requirements you may have ( 35 mm slides ; ohp ; lcd projection - notably  powerpoint ) .  ?  3 . check list : i have attached a check list for your information . if you  have not returned this already , can you please read and fax it to my  colleague , claire as soon as possible .  ?  if you have any questions or queries , please do not hesitate to contact me ,  otherwise i eagerly await your response in due course .  ?  i look forward to seeing you in new york in february .  ?  kind regards  ?  andreas  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  andreas simou  garp 2001 - conference producer  tel ? + 44 ( 0 ) 20 7626 9301  fax + 44 ( 0 ) 20 7626 9900  ?  don ' t miss the garp 2001 convention ,  program details via our web site  www . garp . com  - speaker checklist . doc\",0\n\"Subject: logistics for the sycamore meeting in chelmsford next week  hi barb , please add the following enron names to your list . i will call to  confirm this later today ( 1 / 28 / 00 ) . krishna and samer , please go ahead and  arrange the travel plans as per the following schedule and my e - mail before .  kind regards ,  ravi .  - - - - - forwarded by ravi thuraisingham / enron communications on 01 / 28 / 00 11 : 10  am - - - - -  barb . vanbeyrer @ sycamorenet . com  01 / 28 / 00 08 : 56 am  to : phil markwart / enron communications @ enron communications  cc : ravi thuraisingham / enron communications @ enron communications , erik  simpson / enron communications @ enron communications , stinson gibner @ ect , john  griebling / enron communications @ enron communications , allan grimm / enron  communications @ enron communications , dorn hetzel / enron communications @ enron  communications , michael baker / enron communications @ enron communications ,  nicole gilson / enron communications @ enron communications , hardeep  luthra / contractor / enron communications @ enron communications ,  larry . sakauye @ sycamorenet . com , richard reichardt / enron communications @ enron  communications , susan wadle / enron communications @ enron communications  subject : logistics for the sycamore meeting in chelmsford next week  hi phil , here are the logistical details for our meetings next week at  sycamore in chelmsord ( 10 elizabeth drive ) .  hotel : double tree in lowell .  transportation : everyone should fly into boston monday afternoon / early  evening . chelmsford is about 40 - 45 minutes from the airport , more in  traffic . i can arrange for a car service from the airport to the restaurant  monday night for everyone , and have the limo wait for you until we are  through with dinner ( then everyone can leave there bags in the limo ) . if  some or all want to use this car service , i ' ll need their flight information  by friday afternoon so i can make arrangements .  here is the agenda for next week :  monday : dinner at 7 : 30 pm - agresti ' s restaurant , 175 littleton rd ,  westford , ma . directions will immediately follow this email .  tuesday meetings at sycamore 8 : 30 am - 5 : 00 pm  planning session :  - enron ' s business drivers / vision  - enron ' s optical networking architecture  - dinner planned - - location tbd  wednesday meetings at sycamore 8 : 30 am - 5 : 00 pm  planning session :  - detailed route design  - deployment planning  - dinner planned - - location tbd ( boston ? )  thursday meetings at sycamore 8 : 30 am - 4 : 00 pm  - review detailed route designs  - metro area services : access partners  - depart for airport at 4 pm thursday , or friday morning  depending on flight availability  as of this morning , here is the list of enron attendees that we are  expecting :  john griebling  dorn hetzel  phil markwart  ravi thuraisingham  stinson gibner  allan grimm  erik simpson  mike baker  nicole gilson  hardeep luthra  richard reichardt  valient employee ( i have no name as of today )  can you please let me know of any additions or changes to the attendee list ?  and please send this email to anyone planning to attend that is not on the  cc : ' d list . thanks .  please call me today , or over the weekend if you have any questions . my  cell phone number is listed below . look forward to seeing everyone next  week !  barb  barbara van beyrer  national account manager  sycamore networks  office : 503 - 977 - 6354  mobile : 503 - 781 - 0693  fax : 503 - 977 - 6185  barb . vanbeyrer @ sycamorenet . com  www . syacmorenet . com\",0\n\"Subject: energy & power risk management 2001  dear vince ,  i would like to confirm the invitation for you to participate at our annual  congress in houston . following our conversation , i would be most interested  in including a presentation on ' modeling price volatility in us power  markets ' in the pricing , hedging & trading stream on the 14 th may , 2001 .  i am keen to confirm each speaker and session by the end of next week , which  will then allow time to work with each presenter on titles and points that  will provide an accurate summary for the session .  if you have any overall views or suggestions regarding the conference feel  free to email me at pbristow @ riskwaters . com or call me on 212 925 6990 ,  extn . 225 . i look forward to confirming your participation at energy & power  risk management 2001 . important : due to system problems i am using another  system . please do not reply to this email . please reply to the address given  above .  yours sincerely ,  paul bristow  manager of conferences , usa  risk waters group  - spktemp 2 . doc\",0\n\"Subject: introduction of the european gas advisory service and european po  wer advisory service  to : european gas and power clients  from : peter hughes , cera senior director ; scott foster , cera director ; simon  blakey , cera director ; mack brothers , cera director  date : 14 march 2000  re : introduction of the european gas advisory service and european power  advisory service  for the past 15 years , cera ' s european gas and power retainer advisory  service has been primarily a natural gas service , with a small component  related to electric power issues . in recognition of the changing industry  and regulatory environment for electric power , we have significantly added  to our electric power capabilities in europe over the past three years , in  terms of both staff and of the depth and breadth of our research . based on  strong client demand for a dedicated team and service focused on the  impending sea change for the power industry and our desire not to lessen the  service we provide to the natural gas industry and market in europe , cera is  pleased to announce the launch of the european power advisory service as of  1 april 2000 . this new service , in combination with our existing european  gas advisory service , will maintain cera ' s thought leadership and provide  clients with an \"\" early warning \"\" system in these fast changing and important  markets .  the two teams will continue to work closely together , which will allow them  to identify and analyze the important aspects of \"\" convergence \"\" between the  gas and electric power markets while highlighting and researching the  independent issues in each market .  european gas advisory service  the european gas advisory service will continue to provide clients with  independent analysis and insight on the changing dynamics of the european  gas market . it offers decision makers clear and comprehensive analysis on  the future energy landscape and the challenges posed by the emerging  competitive environment in europe . the focus is on market fundamentals , the  impact of european union and national policies , the changing industry  structure , and strategic responses .  the deliverables include :  the semi - annual european gas watch  european gas decision briefs  european gas private reports  european gas energy signposts  interactive media conference calls  dedicated european gas website - highlighting cera ' s current thinking and  market fundamentals on the gas sector in europe on a country - by - country  basis .  attendance at european gas roundtables ( optional )  european power advisory service  the european power advisory service will provide clients with independent  analysis and insight on the changing dynamics of the european power market .  the service will review the market fundamentals for the european electricity  market and will provide clients with a framework for understanding and  interpreting the major changes taking place in the market . european power  advisory service will present cera ' s view of the dynamics and assessment of  the opportunities being created in the market .  the deliverables will include :  a semi - annual european power watch  european power decision briefs  european power private reports  european power energy signposts  interactive media conference calls  dedicated european power website - highlighting cera ' s current thinking and  market fundamentals on the power sector in europe on a country - by - country  basis .  attendance at european power roundtable ( optional )  we are pleased at this opportunity to enhance cera ' s coverage of a rapidly  changing market and look forward to providing you with deeper and broader  perspectives on the future of european energy .  if you have any questions regarding this exciting transition , please contact  mack brothers * in our paris office at + 33 ( 0 ) 1 42 44 10 10 . also please  note the upcoming european gas and european power roundtable sessions  scheduled for monday 5 june 2000 in paris . these roundtables commence at 9  a . m . and include dinner that evening .  * cera is pleased to announce that as of 1 april 2000 mack brothers will be  moving from our cambridge office to our paris office to head the commercial  team for european energy .  * * end * *  this electronic message and attachments , if any , contain information from  cambridge energy research associates , inc . ( cera ) which is confidential and  may be privileged . unauthorized disclosure , copying , distribution or use of  the contents of this message or any attachments , in whole or in part , is  strictly prohibited .  - attl . htm\",0\n\"Subject: leadership committees  we are launching a number of committees to perform key functions across  enron . enron \u0001 , s breadth of activities and nonhierarchal organization make it  increasingly necessary to broaden the participation of enron \u0001 , s next  generation of leadership in the important decisions affecting the company .  broadening participation will result in increased access to information as  decisions are made and will allow committee members to extend their working  relationships and influence throughout the company .  the committee charters and memberships are set forth below . not everyone  listed has been contacted in advance . we urge you to serve if at all  possible , but , if you cannot , please contact the committee chair .  vp prc  the vp prc will continue to be responsible for evaluating the performance of  enron \u0001 , s vice presidents , determining promotions to vice president , and  recommending promotions to managing director . additionally , the vp prc will  review and propose changes to the prc process , the performance evaluation  criteria and the promotion criteria .  the vp prc will be chaired by dave delainey and its membership is as follows :  tim belden ben glisan danny mccarty  michael brown joe gold jeff mcmahon  rick buy mark haedicke rob milnthorp  wes colwell jim hughes matthew scrimshaw  david cox louise kitchen jeff shankman  janet dietrich michael kopper richard shapiro  dave duran john lavorato marty sunde  jim fallon dan leff  analyst / associate prc  the analyst / associate prc will be divided into 3 groups . enron europe will  have the same committee evaluate analysts and associates . this group will be  chaired by john sherriff and its membership is as follows :  pierre aury kevin heffron andreas radmacher  rob bayley joe hirl stuart rexrode  paul chivers chris mahoney marcello romano  markus fiala christopher mckey bjarne schieldrop  david gallagher roy poyntz ron slimp  bruce garner paul quilkey rob stewart  the associate prc for the americas will be chaired by stan horton and its  membership is as follows :  sally beck troy henry kevin presto  jeremy blachman sean holmes brad richter  don black sean long stewart seeligson  dan castagnola rodney malcolm hunter shively  joe deffner scott neal jim steffes  kevin garland john nowlan andy zipper  david gorte ozzie pagan  the analyst prc for the americas will be chaired by steve kean and its  membership is as follows :  federico cerisoli mark jackson everett plante  jennifer fraser ben jacoby paul racicot  derrick davies steve jernigan angela schwarz  scott gahn jay lewis ed smida  rod hayslett cheryl lipshutz jon thomsen  rogers herndon michael mann emilio vicens  brenda herod ed mcmichael frank vickers  kevin howard steve meyers  analyst / associate program  the most essential determinant of enron \u0001 , s continued growth is our ability to  attract and develop new talent . the analyst / associate program has been the  biggest contributor to our success in this area . charlene jackson , currently  leading our analyst / associate program , has taken a commercial position in  ees \u0001 , account management organization . we thank charlene for her hard work  and many contributions to the program . going forward , this program will be  administered by a committee chaired by john sherriff , ceo of enron europe .  the members of this committee are listed below . billy lemmons , currently  vice president of enron global markets , will lead the day - to - day operations  of the program . billy joined enron in 1992 , and has served in a variety of  commercial capacities across the company and has been an active participant  in the associate / analyst program . please join us in congratulating billy on  his new responsibilities .  phillip allen andy fastow eric shaw  robina barker - bennett kevin garland hunter shively  rick causey ken rice stu staley  joe deffner  culture  we are combining the vision and values , diversity and corporate  responsibility committees into a single corporate culture committee chaired  by ken lay . cindy olson , beth tilney and kelly kimberly will serve as  executive directors of this committee . this committee will focus on  leadership and work - life issues ( making it easier to attract and retain the  best talent ) , in addition to continuing the work of the vision and values ,  diversity and corporate responsibility task forces . the members of this  committee are as follows :  greg adams louise kitchen mark palmer  shelley corman michael kopper paula rieker  janet dietrich richard lewis jeff shankman  jeff donahue sean long mitch taylor  gene humphrey dan mccarty mike terraso  robert jones jean mrha  the corporate policy committee will conduct the md prc and review the  recommendations of the other committees , giving substantial deference to the  decisions of those other committees . we will be forming other committees to  deal with other significant functions , tasks and issues facing the company .\",0\n\"Subject: employees that are listed in the research time site that are not in  the research group  hello everyone :  in doing the sap timesheets this time i have discovered there are several  people listed in the 105896 cost center - org . unit # 1424 ( research ) that  are no longer in the research group . shouldn ' t they be moved ?  they are :  alexios kollaros 502373 now with the new power co .  farouk lalji 501609 analyst rotated out  ainsley gaddis 400250 summer intern returned to school ( last day the 11 th )  mandeep chahal 502876 now with the new power co .  james aimone 514849 summer intern returned to school ( last day the 11 th )  roman zadorozhny 501778 now with another co . in enron  please let me know if i need to do anything .  thanks !  shirley\",0\n\"Subject: re : vacation  shirley ,  no problem .  vince  shirley crenshaw  01 / 09 / 2001 10 : 24 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : vacation  vince :  if it is allright , i would like to take the following days as vacation days :  friday , january 12  friday , february 2  anita will be here .  thanks !  shirley\",0\n\"Subject: spreadsheet for george posey  vince and clayton :  attached is the spread sheet i worked up for george posey . feel free to  edit or let me know and i will .  thanks !\",0\n\"Subject: meeting with vince kaminski  hello mr . roberts :  vince kaminski will be arriving in london on monday , the 18 th of september  at 9 : 55 am . he would be available to meet with you in the afternoon on the  18 th .  please let me know if this is acceptable and who the individuals are that  will be attending the meeting . you also mentioned an agenda , which would  be great .  thanks !  shirley crenshaw  administrative coordinator  enron research group\",0\n\"Subject: flat screens  hello ,  please call or contact regarding the other flat screens requested .  trisha tlapek - eb 3132 b  michael sergeev - eb 3132 a  also the sun blocker that was taken away from eb 3131 a .  trisha should two monitors also michael .  thanks  kevin moore\",0\n\"Subject: re : follow - up on siam workshop  thanks for forwarding peter ' s resume . by copy of this memo i am forwarding peter ' s resume to danny mccarty and phil lowry . danny and phil : please follow - up with vince if you have an interest in meeting with peter . he seems to be a very qualified candidate .  vince j kaminski @ ect  04 / 30 / 2001 02 : 28 pm  to : stanley horton / corp / enron @ enron , danny mccarty / et & s / enron @ enron  cc : vince j kaminski / hou / ect @ ect  subject : follow - up on siam workshop  i am forwarding for your attention the resume of peter percell  who has an extensive experience in modeling physical flows  of natural gas in pipeline systems . peter is looking currently for a job .  i met him last week at the meeting of the science and industry advance with mathematics  society at the university of houston .  the application of recent developments in optimization theory  and numerical methods can help enron to improve further  efficiency of our pipeline system and reduce the consumption of compressor fuel .  please , let me know if you interested in introducing peter to executives  in your organization . i shall be glad to make arrangements for an interview .  vince kaminski  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 30 / 2001 02 : 17 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  peter percell on 04 / 30 / 2001 11 : 16 : 58 am  to : vincent kaminski  cc :  subject : follow - up on siam workshop  i enjoyed your presentation , and meeting you briefly afterwards , at the  siam workshop last friday .  i have extensive experience as a technical leader in the design and  development of modeling and simulation software products , mostly  for the oil and gas pipeline industry .  i am looking for a position that can utilize my software development and  mathematical skills . getting out of the narrow confines of the pipeline  simulation industry would be a plus .  please consider whether i might fit in your group . your answer to a  question indicated that i have several of the skills you look for .  also , please let me know , by email , the names and contact information of  other managers within enron who might benefit from having someone with  my qualifications in their group .  attached are my resume and an addendum covering academic & consulting  experience . publications are available on request .  i will call you in a couple of days to follow up on this email .  thank you for your time .  peter percell 10030 doliver drive  percell @ swbell . net houston , tx 77042 - 2016  ( 713 ) 532 - 3836 voice & fax  - percell , peter resume only . doc  - percell , peter a & c exp . doc\",0\n\"Subject: hello  hi vince ,  how are you . it was really a pleasure meeting you and talking to you at  the toronto energy derivative conference . thank you for speaking with  me about the possibility of visiting your research group . it will be  great if i could have such opportunity whenever you see your schedule  fits . i am very much open for the last week of july and early august .  i ' m looking forward to hearing from you soon .  best ,  shijie  shi - jie deng  assistant professor  school of isye  georgia institute of technology  office phone : ( 404 ) 894 - 6519  e - mail : deng @ isye . gatech . edu  home page : http : / / www . isye . gatech . edu / ~ deng\",0\n\"Subject: resume for bruce james  dr . kaminski :  please find attached my resume and cover letter .  sincerely ,  bruce james  - jameslett 60 . zip\",0\n\"Subject: ( no subject )  vince ,  here are the overview powerpoint slides for the investment and strategic  relationship management firm , azure capital , i mentioned in my voice  mail . the transactions they completed in their past lives at csfb and  already in the new firm , as well as their advisory board are probably  the strongest evidence of their capabilities .  hope all is well .  blake  - azure slides . ppt\",0\n\"Subject: resume - rabi de  vince , thanks for returning my call . here ' s rabi ' s resume for your review . as  i mentioned , i worked with rabi for a little over a year at shell and was  very impressed with both his abilities and work ethic . if you would like any  further info from me , please do not hesitate to give me a call .  thanks .  bill  ( for human resources )  - - - - - - - - - - - - - - - - - - - - - - forwarded by bill berkeland / corp / enron on 06 / 26 / 2000  11 : 08 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  rabi de on 06 / 25 / 2000 08 : 24 : 07 pm  to : bill . berkeland @ enron . com  cc :  subject : resume  dear bill :  thank you very much for volunteering to circulate my resume within enron . as  you know , i am interested in exploring career opportunities in financial  engineering within enron . i am particularly interested in joining the  research group headed by dr . vince kaminski .  enron continues to innovate its way through the energy and telecom  marketplace using its substantial intellectual capital . the enclosed resume  details my experience , academic background , and contributions in the area of  risk modeling and management . understanding risk is a core competency of  enron and i am excited about the possibility of working , learning , and  growing with the very best in the industry .  please forward my resume within enron as you see fit . thank you in advance  for any referrals or recommendations you may be able to provide .  best regards ,  rabi s . de  do you yahoo ! ?  get yahoo ! mail - free email you can access from anywhere !\",0\n\"Subject: re : transition to research group - an update  sounds great - -  molly  vince j kaminski  01 / 19 / 2001 06 : 21 pm  to : molly magee / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : transition to research group - an update  molly ,  thanks .  let ' s wait for sandeep : he comes back wednesday .  anshuman will work with him .  vince  enron north america corp .  from : molly magee 01 / 19 / 2001 06 : 08 pm  to : margaret daffin / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : transition to research group - an update  once again , margaret , we are in your debt . vince , let ' s get together some  time next week and see where you would like us to go with this . . .  molly  margaret daffin  01 / 19 / 2001 03 : 27 pm  to : molly magee / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : transition to research group - an update  molly : just to be sure that everyone understands , anshuman cannot work in  the us on a bl visa - he can only come here for business meetings and  training .  we will have to get him the ll visa in order for him to work in the us .  margaret  enron north america corp .  from : molly magee 01 / 19 / 2001 02 : 53 pm  to : vince j kaminski / hou / ect @ ect  cc : margaret daffin / hou / ect @ ect  subject : re : transition to research group - an update  thank you so much for the information , vince . i hope that you have a great  weekend !  molly  vince j kaminski  01 / 19 / 2001 02 : 39 pm  to : molly magee / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : transition to research group - an update  molly ,  i shall ask sandeep to do it when he comes back from india next week .  i have just learned that anshuman has bl visa and he can start on a project  as a person  delegated by dhabol power company to houston . to be absolutely above the line ,  i would still arrange the ll visa .  vince  enron north america corp .  from : molly magee 01 / 19 / 2001 10 : 44 am  to : vince j kaminski / hou / ect @ ect  cc : margaret daffin / hou / ect @ ect  subject : re : transition to research group - an update  i agree that it makes sense to put the ll in place . there are several things  we will need from you in order to start the visa process . the first is a  fairly detailed job description for anshuman . secondly , we also need to know  whether or not he will be in a managerial position here and / or managing a  project . if there is someone else in your group who can furnish this job  description , just let me know and i will be happy to contact him / her .  as for sandeep , i have been told that he is a u . s . resident so there should  be no problems with him . margaret daffin will be contacting him to be  absolutely sure .  thanks ,  molly  vince j kaminski  01 / 19 / 2001 10 : 21 am  to : molly magee / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : transition to research group - an update  molly ,  let ' s get ll for anshuman , just in case . i am sure he will stay here for a  while  once he comes . it is quite obvious jeff shankman will have to keep him  longer ,  given the priority of the project .  i assume there are no problems with sandeep .  thanks .  vince  enron north america corp .  from : molly magee 01 / 19 / 2001 09 : 54 am  to : vince j kaminski / hou / ect @ ect  cc : margaret daffin / hou / ect @ ect  subject : re : transition to research group - an update  thank you for the update , vince . i have been working with margaret daffin  with regard to anshuman ' s visa status . we will have to get an ll visa in  place before he can come to the united states , even in a temporary  capacity . do you want to move forward with that effort at this time , or  is the possibility of him coming to the u . s . so remote that it wouldn ' t be  worth the time and money right now ?  molly  vince j kaminski  01 / 19 / 2001 09 : 42 am  to : molly magee / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : transition to research group - an update  molly ,  this is an update on anshuman . please , see below . it seems  that his transfer is not an issue for the time being .  we can put it on a back - burner till he gets here .  vince  p . s . the relevant section .  i also spoke about anshuman , and there was resistance to his leaing for such  a long time . however , i have agreement from folks here to send him to  houston for a shorter stint on dpc budget . i will try to finalize that  before i leave . i will call you in the evening to just chat .  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 19 / 2001  09 : 45 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  sandeep kohli @ enron _ development  01 / 19 / 2001 04 : 32 am  to : vince j kaminski @ ect  cc :  subject : transition to research group - an update  vince ,  just wanted to let you know that i had a meeting with wade cline ( coo , enron  india ) , neil mcgregor ( president , dpc ) , and mohan gurunath ( cfo , dpc ) today .  though i had already spoken to all of them earlier about my joining your  group , today it became official , and all of them supported the move . i  explained to them what we would be doing , and the results expected from the  henwood study .  dpc would like to pay the costs for the study , and that was mentioned . there  maybe some tax issues etc . that need to be cleared , and other related issues  that i would like to discuss with you , so i will leave them till i get to  houston .  i also spoke about anshuman , and there was resistance to his leaing for such  a long time . however , i have agreement from folks here to send him to  houston for a shorter stint on dpc budget . i will try to finalize that  before i leave . i will call you in the evening to just chat .  i am very thankful to you for giving the opportunity you have . things here  have deteriorated dramatically over the last few weeks . morale is quite down  due to many lay - offs .  i am really looking forward to returning to houston , and the family ! !  regards ,  sandeep .\",0\n\"Subject: re : summer work . .  jinbaek ,  thanks for your message .  we have a number of additional fascinating projects that you can work  on . as a matter of fact , it would be great to have you here earlier .  vince  \"\" jinbaek kim \"\" on 05 / 02 / 2001 05 : 18 : 32 am  to : , \"\" raghavan , suresh \"\" , \"\" mesquita , ross \"\"  cc :  subject : summer work . .  long time no see ,  how have you been . . . must be busy and living a challenging life ?  i have been pretty busy too ,  to finish a project and write a paper , these days .  everything looks going ok for my summer internship .  i took necessary steps to work out of campus , and sent  signed contract to molly a week ago . .  here is what i am expecting to do in the summer .  please let me know if you have any change in mind .  actually , i wonder a little bit if dealbench changed its business model . . .  and maybe you got priority in something different  because it has been quite a while since we talked .  i ' d like to what ' s going on in dealbench team . . .  raghavan and ross ,  if we talk over phone it will be great !  dr . kaminski ,  if you think there is something else interesting to work with during the  summer ,  to both you and i , please let me know .  my interest is auction , market design , and simulation .  i am taking a financial engineering class , ( mostly on option pricing )  and working on electricity generator valuation problem based on  spark spread option .  all of you ,  let ' s keep in touch until we meet in june ! !  best regards ,  jinbaek  tentative work period : 6 / 4 - 8 / 4  1 . tasks :  1 ) survey on auctions : the state of art  single - item auction , multi - unit auction , sequential auction ,  multi - attribute auction , combinatorial auction  - theoretical  - experimental  - algorithmical  2 ) deal bench ' s auction model analysis  2 . deliverables :  1 ) 3 presentations :  - lst presentation : around 6 / 30 : on different auction types and researches  - 2 nd presentation : around 7 / 15 : the state of art in auction studies  - 3 rd presentation : around 8 / 1 : deal bench ' s model analysis  2 ) report :  summary of auction study in laymen ' s term  deal bench ' s model analysis\",0\n\"Subject: contstraints on the shape of a smile  stinson , vince , zimin ,  here ' s a brief document on constraints on the shape of a smile for a fixed  expiry date .  the constraints are neccessary and sufficient for no arbitrage in this case .  i ' ve used a template created by dr . leppard which is why it looks so scary .  if you need constraints in the time direction then i will have to think a  little bit more about it .  i think constraints in this direction are very model depenendent e . g .  stochastic volatility and local volatility models  will throw up different constraints .  steve ,  i am not sure if our traders ( or quants for that matter ) are aware of these  constraints  and some desks are beginning to build smiles . . .  regards  sharad\",0\n\"Subject: re : invoices  hi julie :  the march invoice # 000166 was sent to our accounting department for  payment on march 28 th . i have a call into them to see what happened to  it . i will let you know .  the aud 5000 invoice was sent to the accounting department but they  sent it back saying they cannot pay invoices in foreign currency . so i then  had to send it to the treasury dept . i will check on it today also .  as far as the other invoice . it should be sent to our australia office to  the  attention of paul quilkey . we had agreed to split this with them . their  address is :  paul quilkey  enron australia  pty . ltd .  level 21  9 castlereagh street  sydney , nsw 200000 ,  australia  if you need anything else , please let me know .  shirley  .  \"\" julie \"\" on 12 / 12 / 2000 07 : 03 : 32 am  please respond to \"\" julie \"\"  to :  cc :  subject : invoices  shirley ,  ?  sorry to bother you again , but we still have two outstanding invoices from  enron . ? they are :  ?  march ' 00 : ? ? ? ? ? enron ? inv . 000166 ? ? ? ? ? ? usd 4900  ?  september ' 00 ? ? enron inv . 000202 ? ? ? ? ? ? ? aud 5000  i have another invoice to send out for the balance of ? the original aud  10 , 000 ( balance would be the remaining aud 5 , 000 ) , but ? i ' m ? unsure to whom i  should direct it ? ? i sent ? an email to vince several weeks ago asking for  this information , but haven ' t heard ( assume he ' s tremendously busy ) .  ?  let me know what you ? need from ? me .  ?  thanks ,  julie  ?  lacima group  ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?\",0\n\"Subject: re : mscf speaker series  pierre - philippe ,  friday would be beter .  vince  pierre - philippe ste - marie on 10 / 09 / 2000 10 : 11 : 37 am  to : vince . j . kaminski @ enron . com  cc :  subject : re : mscf speaker series  dear mr . kaminski ,  it goes without saying that whoever come with you is invited for dinner .  would you prefer to have dinner on thursday night or friday night . i think  it would be better friday night as we could discuss the presentation .  sincerely ,  pierre - philippe ste - marie\",0\n\"Subject: hi vince !  please let me know if university affairs cana ssist in setting up interviews  to address the ees issues raised by maheshram . i ' m at beaver creek in  colorado now , and will be in california making presentations of various  cases for completeing my phd course work jan 3 - 4 . back in houston on the  5 th . if anything needs to get arranged on this before then , please feel free  to call mike rosen at 3 - 9624 . he will be happy to help .  thanks vince !  may your new year be filled with peace - of - mind , good health and many joys !  see you there !  best regards ! - - christie .  - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 12 / 29 / 2000  12 : 23 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" vittal , maheshram \"\" on 12 / 26 / 2000 10 : 59 : 38 am  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc : \"\" ' christie . patrick @ enron . com ' \"\"  subject : re : houston trip  dear vince / christie ,  thanks for coming to philadelphia to present an overview of the projects . we  enjoyed meeting you and your colleagues and look forward to working with  enron . i would also like to pass on my team ' s appreciation for the dinner as  well .  we wanted to give you an update on our project and get some feedback and  additional information prior to our upcoming visit to houston on january  19 th . our project is going to be geared to the 3 rd option you mentioned . we  plan on addressing some part of the retail energy services business . we are  considering two options regarding this topic and would like to pursue either  ( i ) how customers are acquired and recommending new processes and ways to  serve retail customers , or  ( ii ) studying the supply chain and coming up with recommendations for areas  for further investments .  however , we would like to get some more information on the retail energy  services before truly scoping the project . we are also very open to  suggestions , especially if you had a much broader or different scope in mind ;  so please let us know .  we have not yet reviewed the introductory information received last week , but  here are the questions we have specific to the retail energy services unit :  can we look at its overall business plan or a more detailed summary than is  in the annual report ?  what is the pricing philosophy / overall structure ?  who are the customers and how are they acquired ?  what would the customers be doing if they did not work with enron ?  what are the international expansion plans and capabilities ?  is there any important regulatory summary information we can have ?  if this information is not already covered in the review material you sent ,  will you be able recommend other sources where we may find such information ?  after we have reviewed the material sent to us recently , we may want to  schedule a phone call with you and / or one of your colleagues directly  involved in the retail energy services business . i would like to call you in  the new year to discuss this further . in the meantime , please feel free to  call me at ( 215 ) 546 - 9416 if you need any information .  regards ,  retail energy services tiger team  ram  dennis  jason  omar  steve  clay\",0\n\"Subject: the real options conference  shirley ,  please , forward my bio to crystal .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 11 / 2000  08 : 34 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  crystal barry on 02 / 09 / 2000 05 : 05 : 17 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : the real options conference  dear vince ,  as the above event is drawing closer , i thought i would write a quick email  to finalise a few things with you . i understand that you would like a guest  to attend , please can you let me know their name and job title . also , if you  could send me your conference checklist i would appreciate it , so that i can  finalise details with my audio visual company .  in the meantime , if there is anything i can do for you , please do not  hesitate to let me know on 0171 - 915 - 5116 .  kind regards  crystal\",0\n\"Subject: off - site : john griebling ' s organization and research group  jeff ,  i would like to invite you to an off - site meeting of john griebling ' s  organization  and the research group .  date : april 27 - april 29  location : breckenridge , colorado  as you know , john griebling is managing the network design and construction  project  currently under way in ebs . the research group is actively involved in this  effort  which requires advanced quantitative skills in the area of stochastic  optimization and  stochastic processes ( for modeling and forecasting internet traffic flows ) .  the objective of this meeting is to develop common language and accomplish  transfer  of skills between the two groups , to facilitate cooperation on this project  in the future .  we are also inviting to this off - site senior management of ebs and plan to  have  on the agenda several presentations about strategic directions of ebs . the  effort  of network design and construction currently under way is unprecedented in  terms  of its scope and complexity and it is important for technical people , who  often have  highly specialized technical skills , to understand the broad picture .  i would appreciate if you could join us for friday afternoon ( april 28 ) and  saturday ( april 29 ) . i understand that you have commitments on thursday and  friday  morning . we have reorganized the tentative agenda of the meeting to devote  friday afternoon to more general topics .  vince\",0\n\"Subject: data for moody ' s riskcalc  craig and kim ,  as you know , i have obtained a 60 day trial subscription to moody ' s riskcalc .  you wanted to know if it makes sense for enron to purchase riskcalc .  well , after plowing through their 100 page manual and sitting through today ' s 2 - hour moody ' s presentation , it is necessary for us to have information about enron ' s counterparties to move to the next step with riskcalc .  we have obtained some information on enron ' s european counterparties from our colleagues in the london office .  we need for you and / or your colleagues in the houston office to supply us with a list of enron ' s north american counterparties .  more specifically , to evaluate moody ' s riskcalc we will need the following financial inputs for enron ' s north american ( private firm ) counterparties :  fiscal year  the prior twelve months of financial data are represented . annual statements are usable as well as quarterly statements after summing the flow variables , such as cost of goods sold , net income , sales , and ebit . the value should be a four - digit integer year without mention of the day or month such as 1999 or 2000 . forecasts until the year 2009 can be made . a constant rate of inflation is applied to future years using last year ' s ( 1999 ) inflation level . in general this ' estimation error ' will not cause any great problems , as size affects default rates at very large scales ( e . g . , $ 10 , 000 , 000 vs . $ 1 , 000 , 000 makes a significant difference , $ 1 , 000 , 000 vs . $ 1 , 050 , 00 does not ) .  cash & equivalents  this measure of liquid assets includes cash and marketable securities .  inventory  inventories are taken directly from the balance sheet , in thousands dollars , without any alterations for accounting method ( e . g . , lifo , fifo , average cost ) . this item represents merchandise bought for resale and materials and supplies purchased for use in production of revenue . specifically this would include purchase cost , sales cost , sales taxes , transportation costs , insurance costs , and storage costs .  current assets  this item primarily represents cash , inventories , accounts receivables , marketable securities , and other current assets .  total assets  total assets and every other variable are entered in thousands of dollars . for example , $ 15 , 500 , 000 should be entered as 15500 . specifically , total assets are the sum of current assets plus net property , plant , and equipment plus other noncurrent assets ( including intangible assets , deferred items , and investments and advances ) . leave previous year ' s total assets blank for australian companies .  current liabilities  liabilities are positive values . included in current liabilities are short - term debt , accounts payable , and other current liabilities .  total liabilities  this balance sheet account , total liabilities , is a positive number representing the sum of current liabilities plus long - term debt plus other noncurrent liabilities ( including deferred taxes , investment tax credit , and minority interest ) .  retained earnings  retained earnings , a historical measure of performance , is the cumulative earnings of the company less total dividend distributions to shareholders . typically , it is the prior year ' s retained earnings plus net income less distributions . retained earnings are generally positive . some firms with low credit quality will have negative retained earnings . leave this field blank for australian companies .  sales  this item consists of the industry segment ' s gross sales ( the amount of actual billings to customers for regular sales completed during the period ) reduced by cash discounts , trade discounts , and returned sales and allowances for which credit is given to customers .  cost of goods sold  entered in thousands of dollars , this value is generally a positive number less than sales . it represents all costs directly allocated by the company to production , such as material , labor , and overhead . not fixed overhead or items that would be included in selling , general , and administrative expenses . leave this field blank for australian companies .  ebit  earning before interest expense is operating income after depreciation . it can be positive or negative but is usually greater then net income .  interest expense  this item represents the periodic expense to the company of securing short - and long - term debt . typically , we expect this charge to be approximately the prevailing interest rate times the total liabilities . one measure of computing this is : interest expense = 0 . 07 * total liabilities .  net income  this item represents the income ( or loss ) reported by a company after expenses and losses have been subtracted from all revenues and gains for the fiscal period including extraordinary items and discontinued operations . a loss is represented by a negative sign . for example , a $ 5 , 000 , 000 loss would be entered as - 5000 . leave previous year ' s net income blank for australian companies .  extraordinary items  positive or negative , this item represents unusual items that sometimes appear on the income statement . the items are designated by the company as extraordinary and presented after net income from continuing operations and discontinued operations . these items include extraordinary gains / losses , income ( loss ) from discontinued operations , and cumulative affect of accounting changes . expenses are entered as negative values , gains as positive values . leave previous year ' s extraordinary items blank for australian companies .  country  this model is calibrated for the united states , canada , and australia .  we look forward to receiving this information for enron ' s private firm north american counterparties so that we can move on to the next step with the evaluation of riskcalc .  thanks ,  iris\",0\n\"Subject: year end 2000 performance feedback  note : you will receive this message each time you are selected as a reviewer .  you have been selected to participate in the year end 2000 performance  management process by providing meaningful feedback on specific employee ( s ) .  your feedback plays an important role in the process , and your participation  is critical to the success of enron ' s performance management goals .  to complete requests for feedback , access pep at http : / / pep . corp . enron . com  and select perform review under performance review services . you may begin  providing feedback immediately and are requested to have all feedback forms  completed by friday , november 17 , 2000 .  if you have any questions regarding pep or your responsibility in the  process , please contact the pep help desk at :  houston : 1 . 713 . 853 . 4777 , option 4  london : 44 . 207 . 783 . 4040 , option 4  email : perfmgmt @ enron . com  thank you for your participation in this important process .  the following is a cumulative list of employee feedback requests with a  status of \"\" open . \"\" once you have submitted or declined an employee ' s request  for feedback , their name will no longer appear on this list .  review group : enron  feedback due date : nov 17 , 2000  employee name supervisor name date selected  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  crenshaw , shirley j wincenty j kaminski oct 26 , 2000  tamarchenko , tanya v vasant shanbhogue oct 26 , 2000  villarreal , norma e sheila h walton oct 26 , 2000  walton , sheila h david oxley oct 27 , 2000  yaman , sevil vasant shanbhogue oct 27 , 2000\",0\n\"Subject: color copier information  kevin ,  please see the following websites for features and specifications of the  color copiers currently available to enron and pricing is on an attacment @  the bottom of the mesage . let me know if you would like to meet with any of  the reps or if vince / mike / shirley or yourself would want to take a trip to  the vendor location for demonstrations on any of the equipment listed below .  these color copiers are only supported by the vendor and the lease would be  between your group and the relative vendor . response times have been  specified as 4 hr from the time the call is placed to the vendor tech  arriving during normal business hours . after hours service is available @  premium rates , yet to be quoted = let me know if you require this after hours  service pricing .  epsc key - op does not currently support color copier equipment and as such ,  someone in your group would receive the necessary training for low level  maintenance { jams / toner / staples etc } . you would also need to store the  necessary supplies for the selected color copier .  lanier 5706  website : - - > http : / / www . lanier . com / ps / products / wkgrp / c 5706 . html  canon clc 900  website : - - > http : / / www . usa . canon . com / corpoffice / copiers / clc 900 . html  lanier 5710  website : - - > http : / / www . lanier . com / ps / products / hivol / c 5710 . html  canon clcl 150  website : - - > http : / / www . usa . canon . com / corpoffice / copiers / clcl 150 . html  { we have one of these installed @ 3 acl 612 }  canon clc 2400  website : - - > http : / / www . usa . canon . com / corpoffice / copiers / clc 2400 . html  canon clcl 000  website : - - > http : / / www . usa . canon . com / corpoffice / copiers / clcl 000 . html  { we have some of these installed @ 3 acl 8 & 3 aco 9 }  pricing  please see attached winzip file : - - >  thanks , iain russell @ 713 - 853 - 6861  contracts supervisor administration  enron property & services corp .\",0\n\"Subject: uk swap rpi model  - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 03 / 31 / 2000 01 : 44 pm  - - - - - - - - - - - - - - - - - - - - - - - - - - -  martina angelova  03 / 22 / 2000 02 : 59 pm  to : zimin lu / hou / ect @ ect  cc : anjam ahmad / lon / ect @ ect , trena mcfarland / lon / ect @ ect  subject : uk swap rpi model  hi zimin !  please find attached the rpi model i developed by bootstrapping rpi swaps .  the structure of this particular swap is :  semi / semi act / 365 f  >  > yoyukrpi = ( ukrpi ( p - 2 ) / ukrpi ( p - 14 ) - 1 ) / 2  > p = payment month  >  the first payment is the latest known historical rpi , february 2000 . you will  notice that i have assumed constant cashflows between the quoted years ( as  opposed to interpolating swaps which distorts the curve a lot ) .  please find below a graphic comparison between the rpi curve produced by  swaps and the one produced by the gilt market .  looking forward to your comments .  best regards ,  martina  x 34327\",0\n\"Subject: risk systems enhancements meeting 9 / 29 / 00 - 11 : 30 - 1 : 00 p . m . eb 2868  tanya :  fyi . this is the meeting you will be attending for vince tomorrow .  thanks !  shirley  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 09 / 28 / 2000  10 : 09 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  dorothy youngblood  09 / 28 / 2000 09 : 11 am  to : karen k heathman / hou / ect @ ect , jo corbitt / na / enron @ enron , rita  hennessy / na / enron @ enron , cherylene r westbrook / hou / ect @ ect , shirley  crenshaw / hou / ect @ ect , peggy mccurley / hou / ect @ ect , patti thompson / hou / ect @ ect ,  giselle james / corp / enron @ enron  cc :  subject : risk systems enhancements meeting 9 / 29 / 00 - 11 : 30 - 1 : 00 p . m . eb 2868  ladies ,  good morning ,  just a reminder of the above referenced meeting will be held tomorrow  9 / 29 / 2000 @ 11 : 30 a . m . - 1 : 00 p . m . lunch will be served .  attendees :  rick buy  sally beck  philippe bibi ( or representative from his group )  bill bradford  debbie brackett  vince kaminski ( or representative from his group )  ted murphy  beth perlman  david port  stephen stock  thank you in advance . .  dorothy  3 - 6114  - - - - - - - - - - - - - - - - - - - - - - forwarded by dorothy youngblood / hou / ect on 09 / 28 / 2000  08 : 37 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  dorothy youngblood  09 / 21 / 2000 11 : 41 am  to : karen k heathman / hou / ect @ ect , jo corbitt / na / enron @ enron , rita  hennessy / na / enron @ enron , cherylene r westbrook / hou / ect @ ect , shirley  crenshaw / hou / ect @ ect , peggy mccurley / hou / ect @ ect , patti thompson / hou / ect @ ect ,  giselle james / corp / enron @ enron  cc :  subject : risk systems enhancements meeting 9 / 22 / 00 - 11 : 30 - 1 : 00 p . m . eb 2868  ladies ,  just a quick reminder about the meeting tomorrow . lunch will be served - - so  each of your bosses or their representatives will be served . so they do not  have to worry about bringing their lunches . yeah ! ! ! ! !  attendees :  rick buy  sally beck  philippe bibi ( or representative from his group )  bill bradford  debbie brackett  vince kaminski ( or representative from his group )  ted murphy  beth perlman  david port  stephen stock  please see below :  menu  blackened chicken  fettuccine  fresh seasonal vegetables  ceasar salad w / assorted dressings  fresh baked rolls w / butter  bottled water  assorted drinks  cookies ( assorted )  thank you very much in advance .  thanks . . dy  - - - - - - - - - - - - - - - - - - - - - - forwarded by dorothy youngblood / hou / ect on 09 / 21 / 2000  10 : 59 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  dorothy youngblood  09 / 19 / 2000 12 : 52 pm  to : karen k heathman / hou / ect @ ect , jo corbitt / na / enron @ enron , rita  hennessy / na / enron @ enron , cherylene r westbrook / hou / ect @ ect , shirley  crenshaw / hou / ect @ ect , peggy mccurley / hou / ect @ ect , patti thompson / hou / ect @ ect ,  giselle james / corp / enron @ enron  cc :  subject : risk systems enhancements meeting  ladies  rick buy would like to have the above meeting on a weekly basis . debbie  brackett asked that i send an email to invite your bosses . the meeting will  be from 11 : 30 a . m . - 1 : 00 p . m . this meeting will be held each friday - room  eb 2868 for the rest of the year .  attendees :  rick buy  bill bradford  debbie brackett  philippe bibi  ted murphy  david port  stephen stock  vince kaminski  beth perlman  sally beck  thank you  dorothy  3 - 6114  - - - - - - - - - - - - - - - - - - - - - - forwarded by dorothy youngblood / hou / ect on 09 / 19 / 2000  12 : 29 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : debbie r brackett  09 / 11 / 2000 10 : 09 am  to : dorothy youngblood / hou / ect @ ect  cc :  subject : rac it improvement projects  - - - - - - - - - - - - - - - - - - - - - - forwarded by debbie r brackett / hou / ect on 09 / 11 / 2000  10 : 09 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  rick buy @ enron  09 / 07 / 2000 04 : 35 pm  sent by : jo corbitt @ enron  to : sally beck / hou / ect @ ect , philippe a bibi / hou / ect @ ect , debbie r  brackett / hou / ect @ ect , william s bradford / hou / ect @ ect , mike  jordan / lon / ect @ ect , vince j kaminski / hou / ect @ ect , ted murphy / hou / ect @ ect  cc : john j lavorato / corp / enron @ enron , mike mcconnell / hou / ect @ ect , john  sherriff / lon / ect @ ect  subject : rac it improvement projects\",0\n\"Subject: california power 1 / 15 / 01  vince - kristin mentioned that you might be interested in receiving our daily  updates on the california situation . hope that you are doing well and let us  know if you require any additional information .  rj  - - - - - - - - - - - - - - - - - - - - - - forwarded by robert johnston / hou / ect on 01 / 16 / 2001  08 : 08 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  robert johnston  01 / 15 / 2001 09 : 10 pm  to : michelle d cisneros / hou / ect @ ect  cc : gary hickerson / hou / ect @ ect , james d steffes / na / enron @ enron , richard  shapiro / na / enron @ enron , jaime gualy / na / enron @ enron , john greene / lon / ect @ ect ,  jeff kinneman / hou / ect @ ect , kristin walsh / hou / ect @ ect , scott  tholan / corp / enron @ enron  subject : california power 1 / 15 / 01  as talks continued toward the tuesday deadline markets have been focused on  for the california electricity crisis , state officials around governor gray  davis have  toughened up their rhetoric on a couple of fronts even as they confirmed  they would be in the market as early as tuesday taking bids for energy to be  paid by the  state of california . one problem on that front is still how much producers  want to charge the state for electricity . as we reported last week , davis and  his aides  want to pay around $ 50 to $ 55 dollars per megawatt hour and suppliers want  about $ 75 . treasury secretary summers has suggested an auction as the best  way to  determine the price , but california officials are taking a less free market  approach and still hope to set the price through negotiation over long - term  contracts .  our sources in washington , sacramento , and california are increasingly of the  view that governor davis is positioning his government to establish long - term  power contracts with the generators that could be passed through to the  utilities following a bankruptcy in the near term . this week ' s legislative  activities  in sacramento will create the vehicle to do so . state credit backing  purchases of power would obviate the need for super - priority borrowing to  finance power  purchases after utility bankruptcy .  1 . audit - untangling utility relationships  california officials have also toughened their rhetoric on the debt repayment  front as they say results from a preliminary audit show that  half of the $ 9 to $ 12 billion the utilities say they owe is actually owed to  themselves for power they bought from their corporate relations  this strange situation is due to the fact that one holding company owns both  the power - generating and power - distributing companies under a  holding company umbrella . of course , that means that some of the power pg & e  and southern california edison bought at highly inflated prices  was bought from themselves .  but it was not all bad news in the tense negotiations . sources confirm that  davis increasingly understood that the state finance role was a crucial part  of any  potential solution . he told our sources this afternoon that he is willing to  use state credit to eliminate the \"\" risky debt \"\" premium that pg & e  and sce are being charged by suppliers because of their shaky finances and  that he is willing to extend the current 10 % rate increase  utility customers are paying far beyond the initial 90 - day deadline . in  return he is demanding that the companies prepare to \"\" share the  burden of debt reduction in return for state help and credit extension . \"\"  2 . debt restructuring - guarantees , but no direct state money  davis also told the videoconference that he believes the $ 12 billion in back  debt owed by the utility companies can be cleared up  during a 90 - day forbearance period ( whether that period has been agreed to by  all creditors is not something we are clear about right now ) . davis ' idea , as  he laid it out in the meeting , is to use the forbearance period to securitize  the debts and sell them against the utilities ' forward rate base or by  establishing a  medium - term repayment plan backed by continued state guarantees .  in both cases the restructured debt would be resolved over a decade without  direct use of taxpayer money as the utilities use their positive margins to  paydown their debt . one of the reasons davis wants to stay close to the  $ 50 - $ 55 megawatt charge is that it maximizes the rate at which utilities can  pay  down this debt . there is a strong chance that davis will agree to use state  guarantees to sweeten the pot at the end of these negotiations , but he remains  opposed to using direct state money . this frustrates both clinton  administration and utility creditors , but davis has not yet shown much  flexibility .  3 . eminent domain / reregulation  perhaps most frustrating to the washington dc free market crowd at treasury  and the white house was the continued comfort davis and his group of political  advisers have with \"\" non - market \"\" solutions to the energy crisis . although  the governor ' s aides actually believe the weapon is more a \"\" way to force  eventual  agreement , than an actual solution , \"\" the talk returns frequently to these  non - market mechanisms . \"\" we have the ultimate weapon to enforce compliance by  the  tuesday deadline . if we make no progress . if this thing looks like it will  turn into a genuine crisis , then we will use our powers of condemnation and  we will re - take  the plants and equipment and run them ourselves , \"\" a close political aide to  davis said . \"\" we will absorb the plants , the transmission lines and the  reserved parking  places of the executives . the legislature would agree in a second . \"\"\",0\n\"Subject: energy book  fiona ,  ?  thanks for your message and the update . ? we haven ' t made any changes . ? i was  referring to the enron changes , and the electronic brochure i sent to you  yesterday . ? in total , we have the following pieces which list the enron name :  ?  - ? book cover  - ? bios which are on the cover and in the \"\" preface \"\" section of the book  - ? chapter 3 which was written by vince kaminski ' s group  - ? electronic brochure  ?  the first 3 pieces are the most important since they have to do with the  printing of the book . ? if you could ? get the modifications to us by thursday ,  that would be great . ?  ?  thanks , and look forward to hearing from you .  ?  julie  ?\",0\n\"Subject: re : yes sir  jeff ,  thanks .  we shall try to arrange a video conference with houston  when howard is back .  vince  \"\" $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ \"\" on 02 / 05 / 2001 07 : 29 : 12 pm  please respond to \"\" $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ \"\"  to : vince . j . kaminski @ enron . com  cc :  subject : yes sir  ok , vince .  i ' ll track him and find when he is back .  i will inform alec and his manager what you want .  i ' m on it .  thank you .  jeff  jeff ,  we shall continue talking to howard when he comes back from nyc .  i shall set up an interview with him .  vince  * get free , secure online email at http : / / www . ziplip . com / *\",0\n\"Subject: trash bash event on saturday , march 31 st  thanks for the interest so many of you have shown in trash bash . several of  you are of the mistaken idea that trash bash is tomorrow . it is not until  saturday , march 31 , 2001 . registration will be in sam houston park and  trash will be picked up along buffalo bayou from so . shephard to the wortham  center . the work areas will be divided into 8 to 10 sections . when you  check in , you will be assigned to a work section . if you are going to work  at the registration desk , you need to be at sam houston park by 7 : 30 am . if  you are going to pick - up trash , you need to be at sam houston park by 8 : 00 am .  there will be a pre - registration desk set up in the lobby of the enron bldg .  sometime during the week of march 26 th and i will let you know the exact  dates when they are given to me . if you pre - register , you won ' t have to  stand in the long lines at sam houston park .  thanks again for your interest and help .  anita\",0\n\"Subject: re : prospective 6 / 22 houston visit  hi professor ronn :  i have ordered a flip chart and markers and an overhead projector .  there were 11 pages in your presentation and they look fine . we have  already made the copies .  i believe everything is set - if you think of anything else , please let me  know .  enjoy your dinner tonight and we will see you tomorrow .  regards ,  shirley crenshaw  \"\" ehud i . ronn \"\" on 06 / 21 / 2000 02 : 03 : 03 pm  to : shirley . crenshaw @ enron . com  cc :  subject : re : prospective 6 / 22 houston visit  shirley :  > please let me know if you need  > anything else .  there is one additional item i would request : if the room does not contain  a blackboard or whiteboard , i would appreciate a flip chart and markers .  i am faxing you my presentation handout for tomorrow . i would be grateful  if your produced copies in sufficient number for tomorrow ' s 11 : 30 a . m .  meeting ; vince advises me the number of attendees will be in the 25 - 30  range . i will also bring along a \"\" master copy \"\" in case the trasmission  unduly mangles the fax .  thanks ,  ehud  ehud i . ronn  department of finance  mccombs school of business  university of texas at austin  austin , tx . 78712 - 1179  voice : ( 512 ) 471 - 5853  fax : ( 512 ) 471 - 5073  internet : eronn @ mail . utexas . edu \",0\n\"Subject: re : visit to enron  fyi  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 05 / 19 / 2000  11 : 40 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  nick bambos on 05 / 19 / 2000 11 : 33 : 29 am  to : stinson . gibner @ enron . com  cc :  subject : re : visit to enron  stinson ,  > 1 . will you be able to arrive in houston by , say , 6 p . m . on thursday so  > that we can schedule a dinner meeting that evening ?  i ' m arriving at the george bush airport in houston next thursday at 5 : 15 pm .  i could then take a taxi to the hotel or the restaurant . how long would it  take me to get there ? is there a \"\" rush hour \"\" problem at that time ?  > also , if you are  > returning on friday , what time is your flight ? i don ' t want to book  > meetings too late in the afternoon for you , if you will need to leave for  > the airport .  i ' m flying out of houston on friday at 6 : 45 pm . is there a rush hour problem  on the freeways at that time ? what time should i leave from enron to be at the  airport at 6 pm ?  > 2 . would you be amenable to giving a 45 minute presentation on friday ?  > this would be an effective way of introducing you to many more people in  > ebs , including many of the traders . the topic could be of your choice and  > could be related to networks or the future of the internet .  i hope i ' ll have opportunities to give talks at enron in subsequent visits  along the research path . in this first visit i was hoping to understand better  the research goals of enron and brainstorm with people about what are the  top challenges and opportunities for our research collaboration . identifying  the best research problems in terms of  1 ) highest innovation potential and  2 ) highest projected impact  would be at the top of my list . it might be unprofessional on my side to  talk to an audience that i don ' t have any prior information about and is  very diverse anyway ; it could actually be \"\" dangerous . \"\" i would feel much more  comfortable to do that in my second visit , after i have understood the  environment  better and i have some results to talk about . i would like to be in a  position to \"\" impress \"\" people when i give my first talk at enron . ( besides ,  i will have to prepare good slides for such a talk and i am totally swamped  all next week . )  > 3 . do you have time to draft a short letter of understanding that vince  > could use to document the support being given to you and the uses which  > would be made of our contribution to your research effort ?  i ' m swamped , but i ' ll try to put something together .  i look forward to seeing you next week .  nick\",0\n\"Subject: good morning  vince ,  attached you will find a draft \"\" thought document \"\" based on our  conversations yesterday . i think that it captures much of my  recollections . please edit it to your liking and pass it back to me . in  the next steps i have laid out a plan of action that should lead us to a  successful conclusion and a draft by christmas .  let me emphasize that this is a working document so feel free to modify it  in whatever ways you think appropriate ( don ' t be bashful - - i want us to get  this right ) .  have a great day .  your friend ,  john  - enroninterview . doc  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: vacation  vince :  i would like to take a day of vacation next friday , october 6 th if it ok .  anita will be here .  thanks !  shirley\",0\n\"Subject: ideas  vince :  i may have neglected to send you the attached last week . enron is one of a  handful of institutions which could facilitate an entire transaction of the  kind described here . this is simply your old production payment concept  applied to corporate finance .  best ,  - pressrelease . pdf  - monetization . pdf\",0\n\"Subject: riskbrief - january issue  riskbrief - http : / / www . financewise . com / risk  dear risk brief subscriber ,  it \u0001 , s been a while since you last received your monthly ' risk brief ' update  from financewise . but not without good reason - we ' ve changed a lot .  we have launched an exciting online news product called ' risknews ' . this  free website provides dedicated global coverage of all the top stories ,  informed analysis and best practice in the world of financial risk  management , derivatives , technology and exchanges , people moves and key  industry events . breaking news is added to the website throughout the day ,  every day .  another key benefit of risknews is a free weekly e - mail update covering  the need - to - know headlines and links back to the relevant news items . so ,  if you can ' t find the time to visit http : / / www . risknews . net regularly ,  don ' t worry , you can keep yourself informed with the weekly ' risknews  update ' .  so , what does this mean for you ?  from now on , as well as receiving your monthly ' risk brief ' e - mail  summarising risk management news a month after it happens , you can now  receive the weekly ' risknews update ' . the e - mail update is sent every  friday and the service is free . starting from friday 26 january you will  receive your first ' risknews update ' with coverage from stories occurring  just this week .  and finally \u0001 (  to celebrate this important milestone in our internet services  development , we would like to offer you a free copy of the february issue  of ' operational risk ' , worth $ 70 . this special issue serves as a guide to  the regulators \u0001 , proposals on operational risk capital charges as contained  in the basle committee ' s second consultative paper released in january  2001 . coverage contains market reactions , impacts and implications , as  well as :  ? contributing articles from the regulators  ? views and reactions from banking analysts  ? views of the banking industry bodies  ? implications for the risk technology sector with interviews  order your free copy ( worth $ 70 ) now and check out http : / / www . risknews . net  for the first time !  your comments please e - mail us on  mailto : web @ riskwaters . com ,  best regards ,  the risknews team ( formerly risk brief )  if you think any of your business associates or colleagues would find  risknews useful , please forward a copy of this e - mail to them for us .  thanks !  all of risk waters group online services can be accessed through  http : / / www . riskwaters . com  risk waters group \u0001 ) providing products with accurate analysis and  technical commentary on the latest developments in the world of finance ,  financial technology , credit , emerging markets , market data , bandwidth  trading & telecoms , risk management and derivative products .  to unsubscribe to this list , send a blank message to  mailto : financewise - unsubscribe @ listbot . com or visit  http : / / www . financewise . com / public / edit / riskm / briefix . htm and unsubscribe  from there .  to unsubscribe , write to financewise - unsubscribe @ listbot . com\",0\n\"Subject: re : green card for paulo  stinson ,  yes , makes perfect sense . brad can start the process .  vince  stinson gibner  03 / 10 / 2000 02 : 15 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : green card for paulo  vince :  now that paulo is a manager , i think we can start the process for trying to  get him a permanent resident status .  should i contact brad mcsherry about this ?  - - stinson\",0\n\"Subject: re : march real options conference  gary , peter ,  this is a copy of my london presentation . i expect to  make some minor changes to this presentation for march 13 .  vince  vince kaminski  \"\" jackson , gary l . \"\" on 02 / 27 / 2000 03 : 07 : 13 pm  to : vince j kaminski / hou / ect @ ect , \"\" ' peter tufano ' \"\"  cc : \"\" demars , suzanne \"\"  subject : re : march real options conference  >  this is a draft of what i was thinking of presenting . i was not planning to  go over any specific options or opas ( these are covered by confidentiality  clauses and i have to be careful from a competitive standpoint ) but to give  the audience a few of the \"\" real world \"\" applications and challenges . i  welcome any thoughts or comments .  gary  > - - - - - - - - - -  > from : peter tufano [ smtp : ptufano @ hbs . edu ]  > sent : friday , february 18 , 2000 4 : 56 pm  > to : vkamins @ ect . enron . com ; gljackson 2 @ tva . gov  > subject : re : march real options conference  >  > dear vince and gary ,  >  > we are all speaking at the march real options session in ny . my work in  > real options in the energy field has come , to a large part , from my  > casewriting in your two organizations , so i feel that we should probably  > allocate more time toward your presentations and less to mine . while we  > have a two hour block among the three of us , i think we can freely  > re - arrange things to produce the best result . would you two like to  > schedule a brief conference call to coordinate our talks ? i am free  > virtually all of next wednesday 2 / 23 , perhaps we could talk at 10 am ( est )  > or 2 pm ( est ) ? i am happy to arrange the call , if you send me your phone  > numbers . thanks .  >  > peter tufano  >  >  > - - - - - - - - - - - - - - - - - - - - - - - - - - -  > prof . peter tufano  > harvard business school  > morgan hall 377  > soldiers field  > boston , massachusetts 02163  > phone : ( 617 ) 495 - 6855  > fax : ( 617 ) 496 - 6592  > email : ptufano @ hbs . edu  > http : / / www . people . hbs . edu / ptufano  >  - real options valuation in the new economy . ppt\",0\n\"Subject: re : alp presentation  christie ,  great ! ! you think big .  it also puts a lot of pressure on the students .  vince  christie patrick  04 / 11 / 2001 10 : 57 am  to : vince j kaminski / hou / ect @ ect , kenneth parkhill / na / enron @ enron , melinda  mccarty / corp / enron @ enron , shirley crenshaw / hou / ect @ ect  cc :  subject : re : alp presentation  vince and ken ,  please see note below . rice ' s president is planning to attend the  presentation and dinner ! i ' ll let you know when i hear from gil ( dean  whitaker ) . thanks !  also , please remember that i ' ve scheduled steve kean for lunch ( i ' ll have  melinda have lunches brought to the conference room ) . please let me know the  exact room number and the exact number of lunches needed from your end .  thanks !  - - christie .  - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 04 / 11 / 2001  10 : 38 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  judith duvall on 04 / 11 / 2001 10 : 36 : 06 am  to : christie . patrick @ enron . com  cc :  subject : re : alp presentation  ms . patrick ,  dr . gillis will attend both events .  judith  at 06 : 01 pm 4 / 10 / 01 - 0500 , you wrote :  > president gillis and dean whitaker ,  >  > enron would be honored with your presense at the presentation set forth  > below .  >  > under the guidance of vince kaminski and his team here at enron , we are  > thoroughly enjoying working with this group of bright and enthusiastic rice  > students . we hope you can join us for the culmination of their significant  > efforts .  >  > please let me know - - thanks ! !  >  > - - christie .  > - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 04 / 10 / 2001  > 05 : 52 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  >  >  > vince j kaminski  > 04 / 10 / 2001 08 : 13 am  >  > to : barrett @ rice . edu , uecker @ rice . edu , cmiller @ rice . edu ,  > lounghrid @ rice . edu , luigical @ rice . edu  > cc : vince j kaminski / hou / ect @ ect , christie patrick / hou / ect @ ect , shirley  > crenshaw / hou / ect @ ect , kenneth parkhill / na / enron @ enron  >  > subject : alp presentation  >  > on behalf of enron corp . i would like to invite you to an alp project  > presentation by a group of students  > of jesse h . jones graduate school of management , rice university .  >  > the students will present the results of a research project regarding  > electronic trading  > platforms in the energy industry .  >  > the presentation will be held on may 7 , at 4 : 00 p . m . at enron , 1400 smith .  >  > we would also like to invite you to dinner , following the presentation .  >  >  > vince kaminski  >  > vincent kaminski  > managing director - research  > enron corp .  > 1400 smith street  > room ebl 962  > houston , tx 77002 - 7361  >  > phone : ( 713 ) 853 3848  > ( 713 ) 410 5396 ( cell )  > fax : ( 713 ) 646 2503  > e - mail : vkamins @ enron . com  >  >  >  >  >  >  judith duvall  secretary to the president  rice university  6100 main street - - msl  houston , tx 77005  713 / 348 - 4601  713 / 348 - 5271 ( fax )\",0\n\"Subject: spring 2001 course schedule  spring 2001 faculty ,  the spring 2001 course schedule has been posted to embanet . to access the  schedule please open the jgsm area icon on the embanet desktop . next  please open the announcement jgsm icon . you will find the spring 2001  course schedule located under the subject column . please open the  document . if you do not have access to embanet you will need to speak with  david kilgore at kilgore @ rice . edu or by calling david at 713 - 348 - 5378 .  thanks ,  kathy  kathy m . spradling  mba program coordinator  jesse h . jones graduate school of management  rice university  6100 main street , ms 531  houston , texas 77005 - 1892  phone : ( 713 ) 348 - 3313  fax : ( 713 ) 348 - 5251  email : spradlin @ rice . edu  http : / / www . rice . edu / jgs  e - mail : spradlin @ rice . edu  http : / / www . ruf . rice . edu / ~ jgs /\",0\n\"Subject: re : houston visit  soussan ,  thanks for your message . it would be great to meet you when you come to  houston .  i shall be in town on december 7 , flying back from philly in the morning .  assuming that the flight is on schedule , i shall be available for dinner .  please , let me know how i can contact you on thursday , december the 7 th ,  to confirm .  look forward to meeting you .  vince  \"\" faiz , soussan \"\" on 11 / 26 / 2000 09 : 04 : 01 pm  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc :  subject : houston visit  dear vince ,  greetings from ny and hope that all is well and you had a great  thanksgiving . i ' ll be coming to houston for 12 / 6 - 12 / 7 and hope you are  available either evening for dinner . would be great to see you again and  catch up with the latest . . . i really enjoyed my visit last april , your  insights , and the risk book you gave me .  i do hope you ' re available to meet and pls let me know which evening suits  you better .  best ,  soussan faiz  texaco inc .  914 253 4187\",0\n\"Subject: invitation - wharton et events  mark ,  fyi .  what about going to wharton in october to attend the e - commerce conference ?  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 08 / 18 / 2000  11 : 56 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  tomczyk @ wharton . upenn . edu ( michael tomczyk ) on 08 / 15 / 2000 01 : 37 : 34 pm  to : vkamins @ enron . com  cc : thomas . piazze @ wharton . upenn . edu  subject : invitation - wharton et events  vince hello ,  i just wanted to followup up on our meeting at wharton and let you know  that there are two upcoming events that you may want to attend - or  designate others from enron to attend . both of these events are good  opportunities to \"\" test drive \"\" the emerging technologies program and see if  there is an interest in joining our partner group .  september 8 - what next on the internet ?  our next insight - building event will be held at wharton on friday ,  september 8 and is entitled \"\" what next on the internet ? \"\"  this is primarily a wharton faculty event and we will be exploring 3 areas :  1 ) the new economics on the web , 2 ) internet , anywhere , and 3 )  implications for ( academic ) research and education . speakers will include  jay walker ( priceline . com ) , david farber ( chief technologist at the fcc )  and mohan sawhney ( kellog univ . , one of the nation ' s thought leaders on  e - commerce ) , along with several senior wharton faculty members .  there will be considerable discussion on how the next generation of the  internet will evolve and the implications for management and management  research . we are inviting our industry partners to join us at this event ,  and participate in the discussion , which should contain some valuable  insights and also provides an opportunity to help set our research agenda .  you are most welcome to participate , or designate a colleague , if you like .  october 19 & 20 - winners & losers in the e - commerce shakeout  this will be a major impact conference to explore the coming internet  shakeout , and apply some of the traditional shakeout measures to e - commerce  and try to determine what we can expect . it should be an intriguing day .  if you plan to attend please rsvp early since we are sure to be  \"\" overbooked \"\" for this event . this is probably the best showcase for our  insight - building activities , if you would like to invite any colleagues  help determine if it makes sense for enron to become a partner in the et  program .  if you ' d like to rsvp for you and any colleagues who would like to attend  one or both of the events described above , send me an email reply and i ' ll  send you a more detailed agenda and speaker description , etc .  i ' ll be on vacation the rest of this week but if you have any questions or  comments you can call or email me next week .  best regards ,  michael  michael s . tomczyk  managing director  emerging technologies management research program  1400 sh - dh / 6371  the wharton school  philadelphia , pa 19104 - 6371  tel 215 - 573 - 7722  fax 215 - 573 - 2129\",0\n\"Subject: re : invitation to my house  anthony ,  thanks for the invitation . what about april 22 ? i have committed to different  speaking engagements , charities , off - sites etc . for all the saturdays prior to  this date .  vince  from : anthony mends @ enron communications on 03 / 06 / 2000 02 : 18 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : invitation to my house  vince ,  i hope you are well . sorry i have not been in touch but i have been swamped  trying to build my organization simultaneously as i endeavor to understand  ebs and navigate its political terrain . quite interesting . i shall tell you  more later .  my wife , elisabeth and i would love to have you for dinner at our house any  saturday at you convenience . would please let me know which saturday would  be suitable ? we are both looking forward to it so please let me know .  thanks ,  tony\",0\n\"Subject: re : lng may 19 decision  john ,  this is the update on what i have done for the lng transactions .  1 . i was not involved in the lng ship project . i shall read the dash  and give you my comments . without looking at the details , i think that the  decision  to charter a tanker removes one significant risk we have at the elba island  project ( please , see point 2 ) .  2 . elba island . i am working with doug rotenberbg , brad hitch , scott earnest  ( sally beck ' s organization ) and rac to set up the book for the elba island  transaction . the next step  will be to expand the book to capture all the enron ' s lng - related positions  in one place and  to look for natural risk offsets and possible hedges . a working group is  meeting to close a few  remaining gaps tomorrow ( tuesday ) at 8 : 30 .  a few comments on the book design and my view of the project :  a . the current thinking is that lng will be sourced for the elba island  facility  by buying marginal cargos on the fob basis . marginal cargos will represent  supply from excess capacity that has not been committed under long - term  contracts or became available due to some short - term frictions .  the fob cargos are typically selling at a significant discount to the  long - term  contract prices . the economics of the deal , as represented by the book we are  setting up , will reflect the assumption that not only we can locate marginal  cargos  but that we shall be able to do it on a regular basis , arranging shipping and  coordinating  the facility schedule and natural gas transactions in the us . in other words ,  we have a significant logistical and operational risk in this transaction .  b . the transaction will cover the period of 17 years ( with an extension  option of  5 years ) . even if we can lock - in the lng volumes over this time period , we  have no ability to lock - in the other side of the spread ( us gas prices ) for  such a long tenor . this is  essentially a tolling transaction with exposure to the lng - nat gas spread  and  i would not recommend locking - in only one leg of the spread .  one solution would be to cover , let ' s say , 50 % of he lng volumes for the  first  5 years and lock - in the nat gas side on the us market side .  c . the book we are setting up will be based on many managerial assumptions  regarding sources of lng , shipping rates , schedules , etc . i would set up a  big prudence reserve  in case we mark it to market .  d . my group will work on valuation of some options we have in the elba island  deal  ( that are good for enron ) and on the hedging strategy for the lng positions .  long - term lng contracts are typically based on the japanese crude cocktail  that  correlates very well with brent .  vince  john sherriff  05 / 14 / 2000 01 : 40 am  to : vince j kaminski / hou / ect @ ect  cc : lauren urquhart / lon / ect @ ect  subject : lng may 19 decision  vince  i haven ' t spoken to you for awhile but hope the world is treating you well .  anyway with greg moving to his  new role i have ( i hope only temporarily ) staff trading oversight for the  eastern hemishere plus lng .  i understand that your group is taking a first cut at developing curves for  lng and lng ship values . i also understand  that another lng ship decision is on the dockets for may 19 ( not very far  away ) . anway i understand this  is a big decision but i still have gotten very little info yet . can you  please let me know where you stand now ?  i will ask my assistant lauren to set up a time that i can speak with you in  the next couple of days and if you  have anything for me to review before then she can get it faxed to me as well .  look forward to connecting with you vince .  john\",0\n\"Subject: contact for sam audit  vince & stinson ,  for your information , professor duffie assigned taiichi , his ph . d . student  to work on the audit back in may .  i will contact with him about the progress .  zimin  - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 08 / 02 / 2000 10 : 50 am  - - - - - - - - - - - - - - - - - - - - - - - - - - -  hoshino @ leland . stanford . edu on 05 / 25 / 2000 09 : 14 : 52 pm  please respond to hoshino @ leland . stanford . edu  to : zimin . lu @ enron . com  cc :  subject : it worked !  dear zimin ,  it was nice talking to you on the phone today  and thank you for the tip . i manually created \"\" c : \\ temp \"\"  and that was it . the spreadsheet works now . with pentium  200 mhz and 80 m memory , it runs within 5 minutes .  very best regards ,  / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~  taiichi hoshino  ph . d . candidate  ees & or  stanford university  the shadows apt # 171  750 north shoreline blvd .  mountain view ca 94043  home tel / fax ) 650 - 960 - 1993  / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~\",0\n\"Subject: benefits - personal days  vince :  is the following all right to send to the group ?  * * * * * * * *  good morning all :  the question has arisen as to whether enron has \"\" personal days \"\" , that ,  you can take in case of repair problems at home ; car problems ; sick spouse ,  sick child , etc .  i checked with hr and the policy manual and the answer is \"\" no \"\" , but they  can be designated at the discretion of the supervisor . i talked this over  with vince and he has decided that the research group will be allowed  two ( 2 ) personal days per year to take care of personal business and  not have to take a vacation day , discretionary day , or leave of absence .  if you have advance notice ( such as an air conditioner repair scheduled ) ,  please let me know when you are going to take these days . if an  emergency arises with no notice , please call in and let me know that you  are taking a personal day . it will be coded on your time sheet .  these two personal days will in no way cancel or take the place of , \"\" funeral  leave \"\" , \"\" family leave \"\" , or \"\" civic duty leave \"\" . they are just a way of being  able to take care of repair problems and other personal problems that arise .  these should be very beneficial and i am sure very much appreciated by  all of us .  if you have any questions , please call me .  shirley  3 - 5290\",0\n\"Subject: btrieve free ride ends  network world fusion focus : dave kearns on novell netware  today ' s focus : btrieve free ride ends  03 / 14 / 00  dear wincenty kaminski ,  today ' s focus : btrieve free ride ends  by dave kearns  netware has shipped with btrieve ( originally a flat - file database  system , now grown into a full - fledged relational database system ) since  the days of netware 2 some 12 years ago . many independent software  vendors have relied on this and constructed their netware applications  to use the built - in facilities btrieve afforded .  originally licensed from its creator , softcraft , novell bought btrieve  outright in the late \u0001 + 80 s , then sold it off 10 years later to some of  the original developers , now incorporated as pervasive software .  pervasive has , essentially , retired the btrieve name in favor of  \"\" pervasive sql 2000 , \"\" a true relational database system which  nevertheless still purports to support applications written to the  btrieve 6 . x specification .  a major change has been introduced in netware 5 . 1 , however . there is no  longer an unlimited - use version of the database included . novell still  uses btrieve technology for ( among other things ) its installed products  database ( sys : system \\ products . dat is the file ) , but netware 5 . 1  includes only a two - user license for sql 2000 enough for the  administrator to add new products and services , but not enough for any  btrieve - based applications the network might be running .  there is an unlimited - use version of sql 2000 included , but it \u0001 , s an  evaluation version only . it will time out after 90 days . full - use  licenses may be purchased from pervasive software ( or your software  vendors may provide them ) , but unsuspecting network administrators  could be caught off - guard when applications stop working .  for the adventurous , there is an unlimited - use version of btrieve 6 . 10  included with the netware 5 . 1 distribution . but novell admits it hasn ' t  tested the software with netware 5 . 1 , it may not work , and the real  killer most current applications ( such as computer associates  arcserve ) require btrieve 6 . 15 .  check the applications you ' re using before doing that upgrade to  netware 5 . 1 , and calculate the additional costs of obtaining the  requisite number of sql 2000 licenses . then , decide if that ' s what you  want to do , or if switching to a different application is the better  choice .  to contact dave kearns :  - - - - - - - - - - - - - - - - - - - - - - -  dave kearns is the word wrangler for virtual quill , a writing agency  serving the computer and networking industries . if your target  customer doesn ' t know your product , doesn ' t know its uses and doesn ' t  know he needs it , he ' s not going to buy it . from books to reviews ,  marketing to manuals , vq can help you and your business . virtual quill  - \"\" words to sell by . . . \"\" find out more at : http : / / www . vquill . com / , or  by e - mail at mailto : info @ vquill . com .  for related links - - click here for network world ' s home page :  http : / / www . nwfusion . com  pervasive . sql \u0001 v 2000 product family sdk  understanding pervasive . sql 2000 , a white paper ( pdf )  migration guide 6 to pervasive . sql . doc  % 20 to % 20 pervasive . sql . pdf  other netware - related articles from network world :  active directory upgrade requires strong game plan , network world ,  03 / 13 / 00  microsoft exec sketches future for win 2000 , network world , 03 / 13 / 00  subscription services  to subscribe or unsubscribe to any network world e - mail newsletters ,  go to :  to change your email address , go to :  subscription questions ? contact customer service by replying to this  message .  other questions / comments  have editorial comments ? write jeff caruso , newsletter editor , at :  mailto : jcaruso @ nww . com  for advertising information , write jamie kalbach , account executive ,  at : mailto : jkalbach @ nww . com  network world fusion is part of idg . net , the idg online network .  it all starts here :  http : / / www . idg . com  copyright network world , inc . , 2000\",0\n\"Subject: copier on 32 nd floor  hello iain ,  well time is drawing near for another move  for us .  the problem is we do not have a heavy duty  copier for the floor .  we do need a copier .  please inform me as how we can work through  this , maybe we can split the cost with others on the floor .  the move is schedule sometime at the end of the month .  i will keep you informed . . . . . . . .  thanks  kevin moore\",0\n\"Subject: continental phone #  1 - 800 - 621 - 7467 or ? cust . serv . 1 - 800 - 932 - 2732\",0\n\"Subject: open enrollment 2001  open enrollment 2001 is going on now through october 22 nd , 5 pm cst for  regular full - time and regular part - time employees . your 2000 elections will  automatically rollover for 2001 , so if you don \u0001 , t want to make any changes , do  absolutely nothing ! annual elections for all flexible spending accounts will  rollover too ! yes , you heard right \u0001 ) all 2000 elections will automatically  rollover for 2001 , including spending accounts !  to make it even more convenient , print your 2001 confirmation statement right  from the web site and you \u0001 , re finished ! sound easy ? it is ! don \u0001 , t have your  packet ? no problem ! you can access the enrollment 2001 web site and print  your personal worksheet right from your desktop . call benefits at  1 - 800 - 332 - 7979 , option 1 , for additional information or assistance .  confirmation statements will be mailed to your home at the end of october and  final changes for 2001 can be made via the web or ivr from 11 / 8 - 11 / 15 .  logon to www . enron . benefitsnow . com today !  quick facts  ? 100 % default for all current elections and spending accounts \u0001 ) don \u0001 , t want  to make a change ?  then do absolutely nothing \u0001 ) your 2000 annual election will rollover for  2001 !  ? $ 250 medical deductible plan for employees residing outside of a network  area  ? hmo plans going away \u0001 )  coventry health care of iowa ( formerly known as principal health care )  presbyterian health plan  healthnet of oregon ( formerly known as qual / med )  blue shield of california  ? orthodontia treatment is not considered a pre - existing condition under the  enron corp . dental plan .  the plan will coordinate with other coverage based on coordination of  benefit ( cob ) rules .  ( contact metlife at 1 - 800 - 492 - 8588 for specific details and information )  ? new hires who make their 2000 elections by 10 / 16 will receive their 2001  packets the first week of  november for enrollment during 11 / 8 - 11 / 15 ; elections not in by 10 / 16 will  require a manual enrollment  for 2000 and 2001 and must be made within 31 days of their hire date  ? provider directories can be accessed directly from the enrollment 2001 web  site or - 1 ) link directly  to the providers through the hr / benefits intranet website or 2 ) go directly  to the source by logging  on through the web at :  www . cigna . com www . vsp . com  www . provider . uhc . com / enron www . merck - medco . com\",0\n\"Subject: thank - you . . .  dear dr . kaminski :  i enjoyed our discussion this morning . it sounds like there is a great deal  of overlap between enron business units and my interests . i am very much  looking forward to meeting you and your colleagues . thank - you for the  invitation to interview with your group .  sincerely ,  rodney greene  work : 312 - 692 - 8129 rgreene @ heliosgroup . com  home : 773 - 881 - 7142 rodneyg @ interaccess . com\",0\n\"Subject: re : status of enron project  howard ,  sorry for the delay .  i shall be able to get back to you next week . a very interesting new research  idea came up  and we have to close a few loops internally .  vince  \"\" kunreuther , howard \"\" on 04 / 05 / 2001 08 : 42 : 44 pm  to : \"\" kaminski ( e - mail ) \"\"  cc : \"\" kleindorfer , paul \"\"  subject : status of enron project  hi vince :  just a short note to indicate that we have not heard received any information  from your group since our discussion at wharton in february . we look forward  to get some information on what issues you would like us to spend some time  thinking about .  hope all is well .  regards ,  howard  howard kunreuther  cecilia yen koo professor of decisions sciences and public policy  chairperson operations and information management department  1326 steinberg hall - dietrich hall  wharton school  university of pennsylvania  philadelphia , pa 19104 - 6366  phone : 215 - 898 - 4589  fax : 215 - 573 - 2130  email : kunreuth @ wharton . upenn . edu\",0\n\"Subject: request submitted : access request for chris . clark @ enron . com  you have received this email because you are listed as an alternate data  approver . please click  approval to review and act upon this request .  request id : 000000000005413  approver : stinson . gibner @ enron . com  request create date : 10 / 23 / 00 8 : 50 : 58 am  requested for : chris . clark @ enron . com  resource name : \\ \\ enehou \\ houston \\ common \\ research - [ read / write ]  resource type : directory\",0\n\"Subject: enron / stanford program  paul ,  thanks for putting in place the funding for our stanford relationship with  nick bambos .  below is a draft letter which should accompany the funds sent to stanford .  by designating the funds as a gift to this specific research area , all the  funds can be used to support bandwidth and networking research without any  overhead charge from the university . if you need any clarification or  assistance , please contact vince , me , or nick bambos directly . nick ' s  email is bambos @ stanford . edu .  - - stinson  x 34748  draft of letter to be sent from enron to stanford .  prof . nicholas bambos  420 terman engineering center  management science & eng . dept . and  electrical engineering department  stanford university  stanford , ca 94305  dear nick ,  we are happy to provide gift funds of $ 100 , 000 per year , over  three years , to support a program in your research group , related  to bandwidth markets / trading and networking technologies .  enron would like to support research activities in the above  mentioned area , including pd . d . student work , research seminars etc .  there may also be opportunities to have the supported ph . d . students  do summer internships at enron , related to their research interests .  please find enclosed a check of $ 100 , 000 payable to stanford university  for supporting this research effort in your group during the first year .  best regards ,  name and title\",0\n\"Subject: energy derivatives book  hi vince ,  it was good to speak to you and grant the other day . plese find attached a  block of 3 chapters that are basically the middle of the book . this should  give you an idea at the level it is pitched - although these are probably  some of the the most technical of the chapters . julie who works for us will  be getting in contact with you soon to chase you up on your chapter !  i ' ve asked julie to have a chat to you about a couple of other things at  the same time . i hope this is ok with you . julie and i will be making a  trip thru houston around the third week of february to try and visit some  energy companies . it ' s mainly a fact finding trip to see what the energy  companies are doing and how we might be able to make use of our skills in a  commercial sense . would you recommend any people we should talk too ? also  we will be running a course on energy derivatives in houston at the end of  march following the success of the course in new york last year and want to  advertise this . do you know of people who would be interested in such a  course ?  we are currently putting together promotional material for the book - can  you please let julie know how you and grant would like to be advertised -  your official positions , etc .  best regards , and i look forward to reading your chapter soon .  chris .  - ed _ vince . zip\",0\n\"Subject: re : this summer ' s houston visits 2  anjam ,  it makes sense to come to houston for a longer time period .  i think that you should spend here at least 3 weeks .  vince  anjam ahmad  04 / 28 / 2000 05 : 47 am  to : vince j kaminski / hou / ect @ ect , dale surbey / lon / ect @ ect  cc :  subject : this summer ' s houston visits 2  hi vince ,  one of my only windows of opportunity right now is to schedule the houston  visit for monday 10 th july for a single week only .  regards ,  anjam  - - - - - - - - - - - - - - - - - - - - - - forwarded by anjam ahmad / lon / ect on 28 / 04 / 2000 11 : 33  - - - - - - - - - - - - - - - - - - - - - - - - - - -  steven leppard  28 / 04 / 2000 10 : 15  to : vince j kaminski / hou / ect @ ect , dale surbey / lon / ect @ ect  cc : anjam ahmad / lon / ect @ ect , benjamin parsons / lon / ect @ ect , kirstee  hewitt / lon / ect @ ect , matthew d williams / lon / ect @ ect , steven  leppard / lon / ect @ ect  subject : this summer ' s houston visits  vince , dale  here are our proposals for houston visits from our group :  kirstee all of july , all of september . ( kirstee ' s personal commitments mean  she needs to be in the uk for august . )  ben all of october . ( no crossover with kirstee , ensures var / credit cover  in london office . )  steve 2 - 3 weeks in july , first 3 weeks of september .  anjam to be arranged at anjam and houston ' s mutual convenience .  matt not a permanent research group member . i ' m asking richard ' s group to  pay for his visit , probably in august .  steve\",0\n\"Subject: promotions  our promotions are listed below . we will notify these in the next couple of  days . call with questions .  - - - - - - - - - - - - - - - - - - - - - - forwarded by steve w young / lon / ect on 11 / 01 / 2000 20 : 34  - - - - - - - - - - - - - - - - - - - - - - - - - - -  amy fitzpatrick  11 / 01 / 2000 14 : 57  to : steve w young / lon / ect @ ect  cc :  subject : promotions  below is a listing of all of your employees which have been approved for  promotion . please be sure to communication with all those listed below by  monday as there will be a company - wide announcement going out .  claire viejou to senior professional  ben parsons to junior professional  steven leppard to manager  if you have any questions , please let me know .  thanks !  amy\",0\n\"Subject: videoconferences w / enron  team and host :  i have set up the following dates / times for videoconferences .  unfortunately , 4 : 00 - 6 : 00 was not available , so i arranged for 4 : 30 - 6 : 30 pm on  the following dates . i hope this does not cause anyone inconvenience , but i  took time and space that was available .  note : i did not schedule during interview week , finals week or spring  break .  1 / 25 shdh 1203  2 / 1 shdh 1203  2 / 15 shdh 1203  3 / 1 shdh 215  3 / 22 shdh 215  3 / 29 shdh 215  any questions , please contact the fap office .  donna piazze  program director  field application project  the wharton school  univ . of pennsylvania  215 . 573 . 8394 fax 215 . 573 . 5727  fap @ management . wharton . upenn . edu  piazze @ wharton . upenn . edu\",0\n\"Subject: organisational announcement - introducing enron global markets  as evidenced by an exceptionally strong performance in the second quarter ,  enron \u0001 , s wholesale energy businesses in north america and europe continue to  experience tremendous growth . the opportunities to continue to grow our  natural gas and power businesses have never been better and it is critical to  enron \u0001 , s future success that we remain focused on expanding these businesses  and maintaining the strong momentum we have in these markets .  it is equally important that we continue to develop new businesses outside of  gas and electricity , which can make significant contributions to our earnings  growth . we have made significant progress in developing these businesses in  north america , europe , and most recently in our new net works business unit .  included in these global businesses are our efforts in crude and products ,  coal , emissions , insurance , currency , equity trading , interest rates , credit  trading , paper and pulp , and metals .  while significant progress has been made in these efforts we need to  accelerate the growth of these new businesses while continuing to  aggressively expand our core gas and electricity businesses in north america  and europe . in order to accomplish these two objectives and to capitalize on  the increasingly global opportunities in these new businesses we are today  announcing the formation of a new business unit \u0001 ) enron global markets . this  new business unit will focus on markets and commodities which are global in  scope , but outside our traditional gas and power markets . this new core  business unit will operate in parallel with and in close coordination with  the north american and european businesses .  enron global markets will be headed by mike mcconnell , president and chief  executive officer , and jeff shankman , chief operating officer . they will  report to mark frevert who will be chairman of enron global markets . mark ,  mike and jeff will comprise the office of the chairman for enron global  markets .  included in this new business unit and reporting to the office of the  chairman will be the following businesses and their leaders :  - global crude and products : john nowlan  - coal : george mcclellan  - currency , equities , interest rate and agricultural trading : gary hickerson  - insurance and weather : jere overdyke  enron \u0001 , s metals business and enron credit . com will remain the responsibility  of enron europe . the paper and pulp business will continue to reside in north  america .  with the departure of mike mcconnell from enron net works , we are pleased to  announce the following appointments in that business unit :  - jeff mcmahon : president and chief operating officer  - louise kitchen : chief commercial officer  - philippe bibi : chief technology officer  jeff , louise and philippe , along with greg whalley , will comprise the office  of the chairman for enron net works .  with jeff shankman \u0001 , s departure from enron north america \u0001 , s natural gas  operation , all of jeff \u0001 , s direct reports will report to john lavorato .  we are also pleased to announce the following changes to the enron north  america office of the chairman . john lavorato will join the ena office of  the chairman as chief operating officer . dave delainey will assume the role  of president and chief executive officer . mark frevert will retain his role  as chairman of enron north america in addition to his role as chairman of  both enron global markets and enron europe .  please join us in congratulating everyone in their new assignments and in  supporting the new enron global markets organisation .\",0\n\"Subject: re : petronas benchmarking visit  khairuddin ,  i am glad you received the fax .  i shall send you the list of enron ' s participants at a later date .  i have invited a numbers of enron employees representing  our different business units , including  lng and crude trading , risk controls group and research .  vince kaminski  khairuddinbmjaafar @ petronas . com . my on 01 / 17 / 2001 06 : 39 : 10 pm  to : vince . j . kaminski @ enron . com  cc :  subject : re : petronas benchmarking visit  vince ,  thank you for your prompt reply . we have received your fax earlier this  morning . fyi , we shall be sending you the questionaires by next week as we  are going through the final draft this week . could you please tell me who  will be joining the discussion during our visit ? thanks .  regards ,  khairuddin\",0\n\"Subject: re : schedule and more . .  jinbaek ,  may 30 sounds good . i shall inform our hr department .  i don ' t see any project i could get going with your advisor on such a short  notice .  when you come here you can determine in what area he could make  the biggest contribution to enron . i shall call or e - mail  him independently and talk to him .  vince  \"\" jinbaek kim \"\" on 05 / 07 / 2001 02 : 25 : 53 am  to :  cc :  subject : schedule and more . .  dr . kaminski ,  i think i ' ll be able to start work from the last week of may ,  but not from monday ,  probably , i ' ll be able to work from 5 / 30 ( wed ) .  will it be good ? i know it is not that much earlier than i mentioned . . 6 / 4  i am sorry .  and actually , there is an e - business conference at haas school of business ,  organized by my advisor  could you distribute the link and the attached invitation letter to groups  interested in e - business and especially procurement ?  the link is as following .  i am afraid you might forgot this i told you in the last email . . .  my advisor ( arie segev at haas school of business ; segev @ haas . berkeley . edu )  wants me to ask whether you have any idea on joint research with him  during the summer , while i am staying there .  his interest is in e - business . . ( what else . . ? )  and has expertise in e - procurement system and marketplace . . .  xml based standard such as obi , cxml , xcbl , rosettanet , biztalk . .  system interoperability study , auction and negotiation , workflow system ,  e - catalog management , digital signature , edi , etc etc . . .  many technical aspects of e - business . . .  he wants to do some kind of technical case study  that is beneficial for both enron and him .  he may travel one or two times to houston to have a meeting during the  summer .  ( and to be frankly , this will be good for me too ,  because i can have a meeting for my dissertation while he is in houston . . )  could you think about the possibility of joint research , with him ?  thank you . .  sincerely ,  jinbaek  - fcp - invite . pdf\",0\n\"Subject: invitation to speak at power 2000  hi vince  it is my great pleasure to invite you to speak at power 2000 which will be  in houston on 9 & 10 may 2000 .  would you be interested in chairing one of the streams on day 2 of the  conference ? or making a full presentation on one of the days ? please let me  know which talks interest you . obviously , some of the talks are no longer  available but i would like to give you a choice as much as possible . please  could you get back to me asap on 212 925 1864 ext 151 or by return email .  i very much hope you can make the dates as i ' m very keen to have you  participate at power . not to flatter you unnecessarily , but i know that a  lot of people come to our conferences to hear what you have to say .  best regards  emma  - invite . doc\",0\n\"Subject: new book out : theory of financial risks  dear colleague ,  you have recently downloaded a draft version of our book ,  we are pleased to announce that it is now available in print :  * * * theory of financial risks * * *  > from statistical physics to risk management  by jean - philippe bouchaud ( commissariat a l ' energie atomique , saclay )  and marc potters ( science & finance )  cambridge university press ( 2000 )  isbn 0 521 78232 5  the book is available in bookstores in europe and should be  available before october in the rest of the world . you can find out  more about it , including links to order it on - line , on our web site :  http : / / www . science - finance . fr / book . html  we wish you a pleasant reading ,  sincerely ,  jean - philippe bouchaud  and marc potters  - -  science & finance - - capital fund management  109 - 111 rue victor hugo | book @ science - finance . fr  92532 levallois | tel : + 33 . 1 . 41 . 27 . 91 . 11  france | fax : + 33 . 1 . 47 . 39 . 04 . 47\",0\n\"Subject: allocation schedule  we spoke prior to the holiday and you were working on a list on support names  and projects that research is working on for various bus . can you tell me  how you are doing on that ? sarah brown , my manager , had a meeting with corp  and they are disputing the billing we are proposing to bill to them ( $ 1 . 9 m ) .  their argument is that they are going to bill ena back anyway ; therefore ,  they have agreed to take 40 % of the amount we intented to bill them in 2001 ,  which is approximately $ 760 k . if you have any questions , please call .  thanx .\",0\n\"Subject: pjm files load reduction pilot program with ferc  message sent from the pjm - customer - info mailing list at  pjm - customer - info @ majordomo . pjm . com :  the pjm interconnection , l . l . c . filed the pjm customer load reduction pilot  program with the federal energy regulatory commission ( ferc ) on friday july 7 .  this innovative program pays participants to reduce their own load or operate  backup generation to produce a beneficial load reduction for the grid during  pjm  emergency events at times of peak demand .  \"\" we are excited about this program that will provide an important resource  during times of high electricity usage . the program will augment the region ' s  well - established emergency procedures \"\" stated bruce balmat , vice president ,  system operations . the pilot program was developed in response to a may 17 ,  2000  ferc notice and is in effect through september 30 , 2000 .  a full description of the program and pjm ' s filing , including participation  requirements and procedures , can be found on the pjm website ( www . pjm . com ) .  those interested in participating in the program should complete a  registration  form indicating their load reduction plan . those who are not already pjm  members , will become special non - voting members with membership fees waived .  please do not reply to this message . if you have a question for pjm customer  relations and training , please send an e - mail to custsvc @ pjm . com .  to unsubscribe from this list , send an e - mail to majordomo @ majordomo . pjm . com  containing only the following line in the body of the e - mail :  unsubscribe pjm - customer - info\",0\n\"Subject: re : ca for henwood engagement  stinson ,  attached please find a draft consulting agreement for use with henwood .  you will want to review it before you send it to henwood . please see section  6 in particular . also , i put in that arbitration will be in houston and  texas law will apply . we could move that to new york , with new york law if  that is better for henwood . if pressed , we could make it singapore or u . k .  law , with arb in singapore . but any other law , including australian law ,  would mean we would need to get this contract reviewed by foreign counsel - - so  i strongly urge you to argue for texas or ny law ( no other state , please ) .  i tried to make this agreement reflect the terms in henwood ' s proposal , and  believe i succeeded . our form has some additional terms not contained in  their proposal , as well as fcpa boilerplate ( ie . , the \"\" business conduct \"\" and  \"\" drug policy \"\" language ) . also , i just want to point out that this agreement  allows them to subcontract the work - - but only with our written agreement .  under their proposal , the subcontractor costs will be charged to us at cost  plus 15 % - - so you might not want to do it .  please let me know if you have any comments or questions .  bonnie\",0\n\"Subject: re : sevil yamen  anne ,  thanks .  vince  from : anne labbe / enron @ enronxgate on 04 / 20 / 2001 01 : 31 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : sevil yamen  good news , i finally received the memo from legal that accompanies project bonuses . i have left sevil a voice mail to contact me at her earliest convenience . sevil should receive this payment on april 30 th .\",0\n\"Subject: pravas sud  billy ,  i would like you to ask for a favor for one of the rice students ,  pravas sud . he is interested in a summer internship . his phone  number is ( 713 ) 283 5825 , ( 832 ) 647 8738 ( c ) .  vince  p . s . a phone message explaining the special circumstances  follows . it ' s very important for enron .\",0\n\"Subject: luigi zingales seminar on april 27  rice / enron finance seminar participants :  luigi zingales will present a paper co - authored with raghuram g . rajan , entitled \"\" the great reversals : the politics of financial development in the 20 th century . \"\" the full text of the paper is available in pdf form on the seminar website : http : / / www . ruf . rice . edu / ~ jgsfss the baton for organizing the seminar series has been passed from barbara ostdiek to myself . if you have questions regarding the series , please contact me ( wangfa @ rice . edu or 713 - 348 - 5404 ) .  as we have done in the past , we will post the abstract and a downloadable version of the paper ( if available ) to the website a week or two before the seminar . the website will also provide a link to the speaker ' s homepage so you can access his or her biographical information . if the paper is not available at the website , i will send a hardcopy to interested jones school faculty , to felecia jones ( economics ) , sorin sorescu ( university of houston ) , and vince kaminski ( enron ) .  i will e - mail an announcement before each seminar , reminding you of the seminar date , time , and location . the distribution list will include everyone that receives this e - mail . please let me know if you would like to be deleted from the mailing list or if you know of someone who should be added .  albert  fu - kuo albert wang  assistant professor  jones graduate school of management - - ms 531  rice university  6100 main street  houston , tx 77005  phone : 713 - 348 - 5404  fax : 713 - 348 - 5251  email : wangfa @ rice . eduhttp : / / www . ruf . rice . edu / ~ wangfa /\",0\n\"Subject: re : research sign off  steve ,  sign - off from the research group is something that requires defining formal  rules going forward .  my concern over the last few years was that we were asked on many occasions  to sign - off on partial results of valuation , without the benefits of a full  picture .  sometimes , we were asked to sign - off on trade ideas , over which we have no  control long - term .  i shall talk to rick buy and david port about setting up more formal rules  for the research sign - off .  vince  steven leppard  01 / 24 / 2001 03 : 42 am  to : sharad agnihotri / lon / ect @ ect  cc : tani nath / lon / ect @ ect , ted murphy / lon / ect @ ect , james new / lon / ect @ ect ,  vince j kaminski / hou / ect @ ect  subject : research sign off  hi sharad  i note from our discussion earlier this morning that you ' ve been asked to  sign off a calculation from another group , which is something we ' re asked to  do from time to time .  i take the view that we in research can assess a computation in terms of what  it achieves with respect to its requirements , what its shortfalls are , and  therefore what the risks associated with using this method are . we cannot  provide an opinion on whether these risks are acceptable to enron , which i  feel falls firmly within rac territory .  this then raises the question of can research sign off anything for other  groups after all ? to \"\" sign off \"\" means to accept something , which our opinion  in itself cannot do . it is most appropriate for us to provide a technical  note outlining the methodology , risks and shortcomings of a method , leaving  the formal \"\" sign off \"\" to those best placed to assess these risks for our  company . the alternative is for multiple groups each to have their own view  on what is acceptable risk for the company .  steve\",0\n\"Subject: ameriflash newsletter  business highlights  coal trading  the liquidity in trading of the standard european coal agreement has  increased significantly over the last 6 weeks . many counterparties that  previously opted to stay on the sidelines finally chose to join the game .  since the contract ' s inception at the beginning of the year , enron has traded  a total of 5 . 3 million tons against the seca contract , of which 3 . 8 million  tons has been traded via enrononline since july 2000 . we are 5 . 3 million  tons of a total traded market of 5 . 8 million tons .  principal investments  tridium inc . , the leading provider of internet - based automation  infrastructure solutions , announced the close of a $ 20 million round of  capital funding . the funds will be used to increase tridium \u0001 , s sales and  technical support offices in north america , expand its operations into europe  and asia , and enhance its technology and products . kroad ventures , l . p . and  enron north america each contributed $ 10 million in venture capital .  corporate development  allegheny energy supply company , llc , a wholly owned subsidiary of allegheny  energy , inc . , announced the signing of a definitive agreement under which  allegheny energy supply will purchase three enron natural gas - fired merchant  generating facilities . the acquisition is expected to close in the 2 nd  quarter of 2001 .  performance review  the deadline to provide feedback is friday , november 17 . if you have been  selected to provide feedback on one of your fellow employees , please take the  time to fill out an evaluation online at www . pep . enron . com .  in the news  \"\" enron corp . , already north america ' s biggest , buyer and seller of natural  gas and electric power is dead serious about its efforts to capture a big  slice of the $ 400 billion global trade in pulp , paper and lumber . \"\"  - reuters news service  2000 chairman \u0001 , s award nominees  please join us in congratulating the ena / eim / egm / employees who have been  recognized as chairman \u0001 , s award nominees .  congratulations to :  irma alvarez alan aronowitz rick bergseiker carol coats joya davis  rufino durante  sue foust julie gomez barbara gray jackie griffith john harrison gerri  irvine  kathy benedict michael kelley mike mcconnell dave nommensen ina norman  juan padron  veronica parra michael roberts rhonda robinson kevin sweeney helen  taylor stacey white  extra kudos to barbara gray , who is a finalist for the 2000 chairman \u0001 , s  award . barbara and ten other individuals are flying to san antonio from  around the world to be honored at enron \u0001 , s annual management conference . one  of these finalists will be recognized as the 2000 chairman \u0001 , s award winner .  welcome  new hires ena / eim / egm  ena \u0001 ) anil chandy , alejandra chavez  egm \u0001 ) marty cates , joanne underwood , brad miller  transfers to ena / eim / egm  ena \u0001 ) mark wadlington , jennifer blay - smith , georgian landau , kathryn bussell ,  john coleman , steven gillespie , clarissa garcia , ina rangel , farouk lalji ,  eva rainer , chuchu wang , smith day  egm \u0001 ) gloria solis , carmella jones , nancy haralson  legal stuff  the information contained in this newsletter is confidential and proprietary  to enron corp . and its subsidiaries . it is intended for internal use only  and should not be disclosed outside of enron .\",0\n\"Subject: asset swaps vs cds ' s  - - - - - - - - - - - - - - - - - - - - - - forwarded by bryan seyfried / lon / ect on 30 / 03 / 2001  17 : 12 - - - - - - - - - - - - - - - - - - - - - - - - - - -  martin mcdermott  23 / 03 / 2001 18 : 47  to : john sherriff / lon / ect @ ect , bryan seyfried / lon / ect @ ect  cc :  subject : asset swaps vs cds ' s  john ,  i haven ' t had much time to put something together on this issue .  fundamentally both instruments represent the same credit risk , i . e . same  credit events and contingent payments , both represent senior unsecured credit  risk . the differences in pricing therefore arise purely from supply and  demand . one would expect generally that the asset swap would be lower than  the cds because of liquidity : there are only so many bonds out there , and so  demand for asset swaps is limited . i am attaching a one page note by jp  morgan where they claim that one of the principal reasons for the cds to be  more expensive is people hedging convertible bonds by combining ( 1 ) a call  option on the equity and ( 2 ) a cds . if the call is cheap they will be  willing to pay more for the cds , driving the price up . i ' ll try to  synthesize something more complete next week .  cheers  martin\",0\n\"Subject: agenda for houston visit  dear vince and mike ,  to maximize my time in houston an agenda needs to be agreed upon as well as  milestones .  here is a summary of what i have in mind :  * mesoscale weather analysis and forecasting  * computer models vs . human forecasters , performance issues  * nwp modeling  - types of numerical weather predictio models ( nwp models )  - objective analysis and initialization  - data iisues and feeds  - ( physical ) processes that determine the quality of a forecast  * predictibility and verification  * visualisation of weather and climate forecasts  * installation of  - short - to - medium term forecast system  - seasonal forecast system  - system testing and verification  * issues  - data feeds  - platform considerations  - realtime performance  what we need to agree on is a firm agenda , milestones , resources , etc . . . . and  a time table . . . .  my contact details are :  office :  + 61 2 9229 2319 ( direct )  cell :  + 61 417 695 212  home :  + 61 2 9871 7369  regards ,  christian\",0\n\"Subject: fyi - a new esai report forecasting power prices in eastern markets  attached is a new report forecasting jan - feb - mar power prices based on  weather services international weather forecasts and esai energy analytics .  feel free to comment . a version using national weather service information  will also be available .  ed  edward n . krapels , phd  managing director  esai power and gas services  tel 781 245 2036  cell 617 899 4948  ekrapels @ esaibos . com  www . esai . com  - esai energycast power dec 00 . pdf\",0\n\"Subject: re :  shane ,  thanks for your message . as a matter of fact , i expected your resume in time  for our summer internship program .  we shall be glad to invite you for an interview . how long \"\" sabbatical \"\" do you  envisage ?  vince  p . s . shirley , please , call shane to arrange an interview with hr .  \"\" shane green \"\" on 06 / 19 / 2000 02 : 14 : 00 pm  to :  cc :  subject :  dr . kaminski :  ?  you probably won ' t remember my name , but i am the ph . d . student that took  you back to the airport after your visit to louisiana state university  during the previous academic year .  ?  i received my m . s . in finance in may of last year , and chose to ? remain at  lsu to work on my ph . d . at that time , i intended to pursue a career  in ? teaching and research at a four year college or university . ? in  part ? because of your visit , ? and my ? primary interest in normative research ,  my ? plans have changed . ? while i ? still want to earn my ph . d . , ? i plan to  pursue a career in research in the private sector .  ?  as you know , ph . d . programs in financial economics are designed to train  future academics . ? not surprisingly , they emphasize methods to approach the  types of questions that are of interest to finance academics . ? what did  surprise me , however , was that these areas of interest often had little to  do with what i imagined to be the concerns of practitioners in the real  world . ? as you mentioned in your discussion , academic researchers know  little about what their counterparts in the private sector  ?  in light of my objective , i feel i would get the most out of the remainder  of my doctoral studies if i took some time off to work in the private sector  to see first hand the ? types of challenges i can expect to face as a  researcher in corporate america . ? as my primary interests revolve around the  use of derivatives and financial engineering in corporate risk management ,  enron , as the leading innovator in these areas , would be an ideal place to  learn . ? i was wondering if you were aware of any openings at the company  that might provide me with the exposure i am looking for . ? if there are no  such positions or opportunities , any advice or suggestions you could give  me , ? such as whether or not you think such a \"\" sabbatical \"\" ( for lack of a  better term ) would be helpful , or information on private sector careers for  ph . d . ' s would be greatly appreciated . ?  ?  i am sending a current copy of my vita as an attachment . ? if you have any  questions my e - mail address is sgreen @ finance . lsu . edu . ? thanks for your help  and advice .  ?  ?  cordially ,  ?  ?  ?  ?  shane green  ?  ?  ? ? ? ? ?  - vita . doc\",0\n\"Subject: re : new color printer  sorry ,  don ' t we need to know the cost , as well .  - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 12 / 14 / 99 08 : 15  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  kevin g moore  12 / 14 / 99 08 : 09 am  to : shirley crenshaw / hou / ect @ ect , mike a roberts / hou / ect @ ect  cc :  subject : re : new color printer  this information was also sent to it purchasing .  i need to know what options we have and how soon it  can be delivered .  don ' t we need to know as well ? before purchase .  i also need a central location for this printer .  thanks  kevin moore  sam mentioned hp 4500 , i will check into it .  - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 12 / 14 / 99 08 : 05  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  shirley crenshaw  12 / 14 / 99 07 : 55 am  to : kevin g moore / hou / ect @ ect  cc :  subject : re : new color printer  kevin :  what kind of information do you need ? i thought you were going to look  at some colored printer literature . sam seemed to be aware of a  colored printer that might work for us . ask him . i don ' t think we need  anything as big as \"\" sapphire \"\" .  it will be located in your area on the 19 th floor .  thanks !  kevin g moore  12 / 14 / 99 06 : 27 am  to : shirley crenshaw / hou / ect @ ect , vince j kaminski / hou / ect @ ect , mike a  roberts / hou / ect @ ect  cc :  subject : new color printer  we are in need of a new color printer .  we are also in the process of moving to the 19 th floor .  we need the color printer a . s . a . p .  if you would please , i need information concerning this  matter whereby , we can get the printer ordered and delivered  to our new location .  thanks  kevin moore\",0\n\"Subject: re : managing energy price risk  let me think about a similar publication . zimin , any ideas ?  vince  gopalakrishnan subramaniam @ enron _ development  03 / 06 / 2000 04 : 34 am  sent by : subramaniam gopalakrishnan @ enron _ development  to : vince j kaminski @ ect  cc :  subject : managing energy price risk  thanx a million . the book is just superb . would there be any similar  literature on the interest rate front ? ?  regards  g . subbu\",0\n\"Subject: re : prospective 6 / 22 houston visit  ehud ,  we can meet for dinner on the 21 st . then you can visit with us on the 22 nd  in the morning and have individual meetings . at 11 : 30 you can meet the entire  research group at our weekly lunch meeting . we can continue  individual meetings in the afternoon .  please , make a reservation at hyatt regency downtown or double tree  downtown ( there are several hotels with the same names ) .  vince  \"\" ehud i . ronn \"\" on 06 / 09 / 2000 02 : 01 : 09 pm  to : vince . j . kaminski @ enron . com  cc :  subject : re : prospective 6 / 22 houston visit  vince ,  > june 22 works for me . do you want to firm it up ?  if it ' s not too late , i do .  i believe the \"\" game plan \"\" was for me to come in the previous evening . if  you confirm the date , please advise at your convenience how you see the  6 / 21 - 6 / 22 schedule .  best ,  ehud  ehud i . ronn  department of finance  mccombs school of business  university of texas at austin  austin , tx . 78712 - 1179  voice : ( 512 ) 471 - 5853  fax : ( 512 ) 471 - 5073  internet : eronn @ mail . utexas . edu \",0\n\"Subject: re : uk rab multiples  vince ,  we have used the updated rab with initial rab around 80 % in the simulation .  zimin  vince j kaminski  08 / 24 / 2000 08 : 47 am  to : zimin lu / hou / ect @ ect , robert e lee / hou / ect @ ect , stinson  gibner / hou / ect @ ect , steven leppard / lon / ect @ ect  cc :  subject : uk rab multiples  fyi  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 08 / 24 / 2000  08 : 51 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  michael anderson @ azurix  08 / 23 / 2000 07 : 48 pm  to : vince j kaminski / hou / ect @ ect  cc : keith . harris @ wessexwater . com  subject : uk rab multiples  i talked with keith harris , our cfo at wessex , about the rab multiple graph i  gave you . he expressed that the wessex people had originated the data and  that the graph was correct , to the best of their knowledge . the only ( but  very important correction ) is that they started the graph at an index of  100 % , which does not imply a 100 % of rab multiple . rather , the initial rab  multiple was around 80 % , implying that the entire line should be taken down  by 20 percentile points . thus the all time hime in late 98 should be closer  to the 1 . 3 x rab that i had targeted during our discussion . please call keith  if he has not yet contact you .\",0\n\"Subject: congratulations  vince  congrats on the promotion to md . well deserved and a sign of many years of  real service to the company . not a bit of controvery in the election process .  well done !  john\",0\n\"Subject: new value lab  fyi . . . . . ajo  - - - - - - - - - - - - - - - - - - - - - - forwarded by amy oberg / hou / ees on 08 / 16 / 2000 02 : 22 pm  - - - - - - - - - - - - - - - - - - - - - - - - - - -  richard causey @ enron  08 / 16 / 2000 01 : 42 pm  to : amy oberg / hou / ees @ ees  cc :  subject : re : update  i have a conference call scheduled with them on friday . thanks  to : richard causey / corp / enron @ enron  cc :  subject : update  rick : we ' re trying to reschedule the new value lab meeting . what ' s the status  of your conversation w / your collegues at aa ?  thanks .  amy\",0\n\"Subject: enron in india  hi vince ,  i was not aware of the \"\" power play \"\" book tour . i ' ll check it out .  as to the article with the baylor professor , i think it ' s a great idea . i ' d  like the university affairs team to get involved . if a visit is required ,  interviews , etc . , they should coordinate . that way , i think we ' ll have the  greatest opportunity to leverage the relationship .  mark  - - - - - forwarded by mark palmer / corp / enron on 10 / 10 / 2000 02 : 23 pm - - - - -  vince j kaminski @ ect  10 / 09 / 2000 09 : 08 am  to : mark palmer / corp / enron @ enron  cc : vince j kaminski / hou / ect @ ect  subject : enron in india  mark ,  two points .  1 . you probably know about it already . abhay mehta , the author of \"\" power  play \"\" , is on a  tour of the united states . please , take a look at the information about a  meeting last sunday  at stanford university . the web site address is given below . my wife went to  the presentation and told me it was quite critical about enron . about 40  people attended .  2 . i was approached by john martin , a professor of finance at baylor , to  write jointly an  academic paper on enron for a financial journal . he wanted to work on an  article on ebs .  i have suggested a different topic : enron - case study of a company  reinventing itself .  i made a few points to john :  a . enron ' s evolution did not just happen by accident .  it was a result of implementation of a far - reaching  strategy developed by the management .  b . in the process of its evolution enron changed its environment . i came up  with a term  \"\" proactive evolution \"\" , as opposed to \"\" reactive evolution . \"\"  c . the strategy included many elements , including emphasis on the quality  of human resources , changing corporate attitudes to risk taking and employee  empowerment .  d . there are very few companies that match enron ' s experience and  accomplishemnts .  the paper could become a standard reading at the mba courses on corporate  strategy  and would help greatly our recruiting efforts .  writing the paper would require interviews with ken , jeff and a few other key  players .  let me know what you thing about it . john is really excited about this paper .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 09 / 2000  08 : 07 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  vkaminski @ aol . com on 10 / 07 / 2000 05 : 29 : 41 pm  to : vkamins @ enron . com  cc :  subject : enron  http : / / www . stanford . edu / group / sia /  stanford india association\",0\n\"Subject: united healthcare contracting update  to : houston area employees participating in domestic medical plan benefits  from : enron human resources  we are pleased to pass along to you the fact that united healthcare ( uhc ) and  memorial herman health systems ( mhhs ) reached agreement on a long - term  contract . there will be no disruption in terms of accessing network  services from the hospital system or those providers who were scheduled to be  terminated . employees currently electing uhc will receive a confirming  letter shortly from uhc .  as mentioned in our earlier memo , it is our understanding that cigna has also  been contacted by mhhs and are now in contract negotiations .  open enrollment packages are in the mail and you should consider the above  facts when making your decision on your medical election .\",0\n\"Subject: cplex  stinson ,  enclosed are the details of the cplex purchase . if everyone agrees , i will  assume that ebs is responsible for 1 / 3 of the cost ( with taxes etc . must be  close to $ 15 , 000 ) .  krishna and grant , what do you think ?  - samer  \"\" kim turley \"\" on 05 / 25 / 2000 02 : 22 : 30 pm  please respond to  to :  cc :  subject : revised ilog quote 5 - 25 - 00  hi chonawee ,  you are right , i did make a mistake on the calculation , though it isn ' t  exactly 2 / 3 of the previous 3 pak quote . sorry about that and so glad you  caught it . i multiplied by 1 . 5 and i meant to use 1 . 3 . we have discounted  deployment paks which we discount by quantity . our chart starts with a 3  pak so i took that number from our price list and multiplied by 1 . 3 to get  14 , 560 . 00 . for 2 deployments , i take $ 4 , 500 for one , plus 10 % off for the  second license 4 , 050 , then times 1 . 3 = 11 , 115 . 00 . here is the revised  quote . i checked the other numbers again and they are correct . again , i am  sorry for the mistake .  regards ,  * * * * * * * * * * * * * * * * * * * * * * * * * * * *  may 25 , 2000  enron corporation  a single user cplex v 6 . 6 development license with callable library and  mixed integer , 2 cplex floating deployment licenses with mixed integer and  2  opl studios , all with first year ' s maintenance and on win nt on an intel  pc .  once you have a cplex development license with maintenance and update  services , then you can purchase deployment licenses ( run time / license  derivative works )  item 1 description fee  - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  1 1 cplex floating development license ,  callable library , mixed integer $ 15 , 300 . 00  2 maintenance on item 1 2 , 295 . 00  3 2 opl studio 10 , 000 . 00  4 maintenance on item 3 3 , 000 . 00  5 2 cplex floating deployment / mixed integer 11 , 115 . 00  6 maintenance on item 5 1 , 667 . 25  - - - - - - - - - - - -  total $ 43 , 377 . 25  the cost of ( optional ) annual maintenance and update services is  15 % of the license fees .  the customer is responsible for and must add any applicable sales tax ,  value - added ( ad valorem ) tax , duty or other transaction tax associated with  the sale .  this quotation is firm for 30 days and subject to the terms of the ilog  license agreement and the ilog maintenance agreement .  order information  fax a purchase order ( with clear shipping and billing address ) to  match the above items , attention kim turley . as soon as we receive your  purchase order , we will ship the software and simultaneously send you an  invoice by  separate mail for payment .  payment terms are net 30 .  regards ,  kim turley  ilog direct sales  ilog inc . , lake tahoe office  889 alder avenue , suite 200  incline village , nv 89451 , usa  phone : ( 775 ) 832 - 1960 , ext . 130  fax : ( 775 ) 831 - 7755  email : kturley @ ilog . com  have you downloaded your free copy of opl studio ?  if not , please visit : http : / / www . ilog . com / products / oplstudio /  ilog : powering your software  http : / / www . ilog . com http : / / www . cplex . com  ask me about our  - ampl training june 15 - 16  - next opl studio training , june 2000  p . s . from now until june 30 , 2000 , any ilog cplex licensee may  acquire ilog opl studio for just $ 5 , 000 ( 50 % discount ) . ask me  about the details !\",0\n\"Subject: fw : mark boland - deal examples and accomplishments  here ' s the list of deals and accomplishments for mark . . .  molly  - - - - - original message - - - - -  from : vasut , tony  sent : tuesday , march 13 , 2001 9 : 59 am  to : magee , molly  subject : fw : mark boland - deal examples and accomplishments  - - - - - original message - - - - -  from : port , david  sent : monday , march 12 , 2001 10 : 47 am  to : vasut , tony  subject : fw : mark boland - deal examples and accomplishments  - - - - - original message - - - - -  from : mark . boland @ seb . se @ enron  sent : monday , march 12 , 2001 8 : 05 am  to : port , david  subject : fw : mark boland - deal examples and accomplishments  > - - - - - original message - - - - -  > from : boland , mark  > sent : tuesday , january 23 , 2001 15 : 26  > to : ' david . port @ enron . com '  > subject : mark boland  >  > david ,  >  > i ' ll attach below a short outline which i have recently put together to  > summarize what i ' ve been up to .  > also , i ' ve attached a couple of termsheets ( we had very few in english ) to  > give you a sample of my  > production . more is available if need be . i ' ve put together around 200  > various deals in the last 3 years .  > i believe you already have my resume from mark , but i ' ll be glad to send  > another copy .  >  > i ' ll be tracking you down on the phone in the near future .  > regards ,  > mark  >  >  > > >  >  > outline :  > 1 ) structuring  > a ) provided coordination of all parts and entities in closing  > structured bond deals . i . e . : coordination of  > swap . option , bond issuer , back offices , documentation , middle  > office , sales , traders ( swap desk and  > multiple counterparties ) , research , credit limits , legal , etc .  > b ) did all of the above in a ) in a profitable and successful manner ,  > while evolving the product  > and processes at seb . this was accomplished both individually and as  > part of a team .  > 2 ) idea generation  > a ) constantly provided group with new ideas to consider , every week .  > provided written  > and / or verbal explanation and additional information and coaching  > b ) have brought forth new ideas which we have used and made profits  > from  > 3 ) option trading  > a ) represent my department and seb to world ' s leading investment  > banks and derivatives  > traders on some of the most complex financial transactions carried  > out in today ' s market  > b ) successfully trade the product while maintaining huge profits ,  > and not making errors  > which cost the bank money  > c ) providing clients with a superior investment product  > d ) creating enormous profits from arbitrage trading on my own  > abilities ,  > 4 ) systems  > a ) constructed valuation model for use by back , middle office , and  > risk control , and ultimately  > clients receive the results of this , received positive feedback from  > users  > b ) part of team to negotiate and choose new equity derivatives  > systems  > 5 ) training other members of the structured department  > a ) product knowledge  > b ) market knowledge  > c ) system use  > d ) all aspects of structuring to stockholm and international sales  > team  > e ) have successfully played role of \"\" information booth \"\" and \"\" course  > instructor \"\" for  > members of the department and bank wide  >  >  >  > mark m . boland  > seb merchant banking  > 10640 stockholm , sweden  >  > telephone + 46 8 5062 3224  > cell + 46 70 772 3224  >  > this e - mail is from seb , skandinaviska enskilda banken . it may contain  > privileged and confidential information and is intended for the named  > recipient ( s ) only . if you are not an intended recipient , please notify us  > immediately by reply e - mail , delete this e - mail from your system and  > destroy any copy hereof .  >  - broschyr 204 engelska ny . pdf  - broschyr p + engelska . doc\",0\n\"Subject: re : spring workshop  folks :  it is my pleasure to announce the visit of professor rene carmona from  princeton on february 13 , 2001 .  ( this web site may provide a little information on professor carmona :  http : / / www . princeton . edu / ~ rcarmona / )  professor carmona is going to talk to us about his research endeavors in  weather and financial engineering .  similarly , we will make a short presentation of our activities and research  interests .  the aim of the meeting is to explore areas of common interest and investigate  the possibility of collaborating in certain research areas .  the time is 2 : 00 - 3 : 30 pm . room eb 30 cl is reserved for 2 : 00 - 4 : 30 pm .  please plan on attending . also , do let me know , if you would like to include  someone else to this distribution list .  yannis tzamouranis\",0\n\"Subject: energy conference  vince ,  greetings , happy new year , and thanks for your end - of - 2000 e - mail .  > one suggestion i want to make is rick causey . i talked to him and he is  > willing to  > be a speaker . he is a very senior and important executive of enron and a ut  > grad .  i have asked sheridan to raise the keynote - speaker issue with you during  your discussions tomorrow .  best ,  ehud  ehud i . ronn  jack s . josey professor in energy studies  department of finance  mccombs school of business  university of texas at austin  austin , tx . 78712 - 1179  voice : ( 512 ) 471 - 5853  fax : ( 512 ) 471 - 5073  internet : eronn @ mail . utexas . edu \",0\n\"Subject: charm  see below for more information on the willis analytic product . i will  provide the brochure when it arrives and we can discuss scheduling the  proposed meeting .  - - - - - - - - - - - - - - - - - - - - - - forwarded by james l bouillion / hou / ect on 01 / 18 / 2001  04 : 14 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" bertil olsson \"\" on 01 / 18 / 2001 04 : 03 : 18 pm  to : jbouill @ ect . enron . com  cc : \"\" david scott \"\" , \"\" carl groth \"\"  subject : charm  jim ,  1 . i can confirm that charm does express traditional exposures in a var  format . one of the beauties of charm is that it expresses any quantifiable  exposure in a var format , i . e . financial , insurance , weather risks . in  addition , it has the capability of incorporating correlations between risks  - to the extent that they can be quantified .  2 . to get the ball rolling , i will send you a broschure of charm this  week . i also suggest a conference call with carl groth of our ny office .  carl knows charm well and my thought is that we can give you some more  ideas of this product in order for you to decide whether or not you would  like to pursue a presentation . a presentation can be arranged at the  location of your choice .  let me know if the above fits your purpose or if you would prefer to move  in another direction .  regards ,  bertil  the information in this email and in any attachments is confidential and  may be privileged . if you are not the intended recipient , please destroy  this message , delete any copies held on your systems and notify the sender  immediately . you should not retain , copy or use this email for any  purpose , nor disclose all or any part of its content to any other person .\",0\n\"Subject: re : background information  tom ,  electronic version is ok .  vince  \"\" piazze , thomas \"\" on 11 / 07 / 2000 10 : 25 : 45 am  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc :  subject : re : background information  vince : i will be happy to do so . do you wish to have it in hard copy or  electronically ? if in hard copy , how many copies ?  tom  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com  sent : monday , november 06 , 2000 6 : 00 pm  to : piazzet @ wharton . upenn . edu  cc : vince . j . kaminski @ enron . com  subject : background information  tom ,  can you send me additional copies of the information about the webi  program ? i want to distribute it internally .  vince\",0\n\"Subject: re : genetic programming  todd ,  we have several members of the group who can help you . one of them is steve  leppard located  in london .  vince  to : vince j kaminski / hou / ect @ ect  cc :  subject : genetic programming  vince -  i am with the ebs venture capital group . we are looking at evaluating an  investment in a company called widevine out of seattle . part of their value  proposition involves certain patents on genetic programming . are you familiar  with that ? if so , can i set a meeting with you and a few other members of my  group to discuss on tuesday or wednesday ?  todd van roten  enron broadband ventures  office : ( 713 ) 853 - 3850  fax : ( 713 ) 646 - 8010  cell : ( 713 ) 305 - 0110\",0\n\"Subject: re : curves for south america  remi ,  no problem . my assistant shirley crenshaw will call you friday to set up a  meeting .  vince  remi collonges @ enron _ development  02 / 24 / 2000 09 : 10 am  to : vince j kaminski @ ect , grant masson @ ect  cc :  subject : curves for south america  vince and grant ,  i have been made responsible for all gas and power curves in south america  ( plus books development , reporting , . . . . . . . ) . i have somewhat started but ,  since i am new on the job , i ' d love to receive advice , guidance ( and at some  stage help ) from you . would you be available for a meeting next week ,  preferably thursday or friday ? i ' m planning to be in houston these days .  remi collonges  ( 55 ) 11 5503 1200\",0\n\"Subject: your trip  hi vince ,  the following has been organised for you :  sunday  6 . 45 pm dinner at diverso restaurant 85 piccadilly 0207 491 2222 with ben ,  steve , anjam  monday  clear until noon  12 pm lunch with dale surbey at olivetto or olivo  2 . 30 pm interviews start  6 . 30 pm  or 7 pm approximate time for end of interviews  tuesday  clear until 10 am  10 am to 12 pm energydesk . com meeting with mikael nordstrum  afternoon clear  wednesday  9 am to 10 . 30 am riskcare meeting in nel 002 with michael curran , anjam and dale  11 . 30 am to 12 pm meeting with john sherriff  regards ,  anjam  x 35383\",0\n\"Subject: re : action learning project information  kathy ,  enron will be represented by myself ( vince kaminski ) and kenneth parkhill .  vince  kathy spradling on 01 / 05 / 2001 05 : 04 : 21 pm  to : ( recipient list suppressed )  cc : chamberl @ rice . edu , castro @ rice . edu , spradlin @ rice . edu  subject : action learning project information  dear company representative ,  we are pleased to announce that your company \u0001 , s proposal has been selected  as a potential project in the jones graduate school of management ' s action  learning project ( alp ) program . as indicated in the alp brochure , company  representatives are invited to attend the alp program introduction and  student networking session on wednesday , january 10 . please rsvp to kathy  spradling , mba program coordinator , at 713 - 348 - 3313 or e - mail her at  spradlin @ rice . edu by monday , january 8 to let her know if you plan to  attend the session . please provide your company name and the names of  representatives attending the session so nametags can be prepared . dress  is business casual . below is the schedule of events :  8 : 30 9 : 00 a . m .  ? continental breakfast and setup of your company table  ? farnsworth pavilion ( located in rice student center )  9 : 00 9 : 45 a . m .  ? introduction and program overview with company representatives , alp  administration and faculty liaisons  ? farnsworth pavilion ( located in rice student center )  10 : 00 12 : 00 p . m .  ? student networking session with company representatives and  first - year students  ? grand hall ( located in rice student center )  the alp program introduction and student networking session will be held in  the rice student center ( numbers 10 and 11 on the campus map sent with your  acceptance letter ) . please contact kathy spradling if you need an  additional map faxed to you . there is a large amount of construction taking  place on campus . once the visitor \u0001 , s lot near the rice memorial center is  full , we recommend you park in the stadium lot in the designated visitor  area and take the shuttle bus to the rice memorial center . make sure to  let the bus driver know your destination .  the mba program office has reserved the grand hall for the student  networking session . each company represented will have a table set up with  signage for your company . you may bring additional materials you feel  might be of interest to students such as company brochures , articles and  packets . due to the limited space , we are discouraging the use of display  boards in the networking session . unfortunately , no internet connections  will be available for use during the session .  again , thank you for your interest in rice . we look forward to working  with you , and hope to see you on wednesday , january 10 .  carrie miller  pam castro  kathy spradling  kathy m . spradling  mba program coordinator  jesse h . jones graduate school of management  rice university  6100 main street , ms 531  houston , texas 77005 - 1892  phone : ( 713 ) 348 - 3313  fax : ( 713 ) 348 - 5251  email : spradlin @ rice . edu  http : / / www . rice . edu / jgs  e - mail : spradlin @ rice . edu  http : / / www . ruf . rice . edu / ~ jgs /\",0\n\"Subject: re : it was nice meeting you at the informs meeting .  i enjoyed talking to you in the slc conference . thank you for the reference  to your recent publication . let me find out about rice seminars and any  interest within our group and get back to you .  regards ,  krishna .  uryasev @ aol . com on 06 / 18 / 2000 05 : 58 : 38 am  to :  cc :  subject : it was nice meeting you at the informs meeting .  dear dr . krishnarao ,  it was nice meeting you at the informs meeting . if it is of interest , you can  download my recent papers and reports in the area of risk management and  financial engineering from  further , i give the list of recent downloadable publications related to the  risk management and financial engineering .  1 . uryasev , s . conditional value - at - risk : optimization algorithms and  applications . financial engineering news , no . 14 , february , 2000 .  2 . uryasev , s . introduction to the theory of probabilistic functions and  percentiles ( value - at - risk ) . research report 2000 - 7 . ise dept . , university of  florida , may 2000 .  3 . chekhlov , a . , uryasev , s . , and m . zabarankin . portfolio optimization with  drawdown constraints . research report 2000 - 5 . ise dept . , university of  florida , april 2000 .  4 . palmquist , j . , uryasev , s . , and p . krokhmal . portfolio optimization with  conditional value - at - risk objective and constraints . research report 99 - 14 .  ise dept . , university of florida , november 1999 .  5 . andersson , f . and s . uryasev . credit risk optimization with conditional  value - at - risk criterion . research report 99 - 9 . ise dept . , university of  florida , august 1999 .  6 . uryasev , s . and r . t . rockafellar . optimization of conditional  value - at - risk . research report 99 - 4 . ise dept . , university of florida , june  1999 .  i am e - mailing to you from japan . i am for three month at the center for  research in advanced financial technology , tokyo institute of technology .  here in japan , i am collaborating with my colleges on new classification  techniques . suppose you have some data set ( e . g . , a data set of financial  records of companies ) and you want to rate the companies based on this ( or  some other information ) . linear programming and semi - definite programming  methods are used for this purpose . with these techniques we are able to  calculate credit rating of investment companies ( aaa , bbb , \u0001 ( ) . similar  techniques can be used for scoring of credit card applications and other  classification problems .  i am interested in applied projects in energy , risk management , and financial  engineering area . i will be happy to collaborate with you on this subject . i  am looking for financial support for phd students who may work on your  applications . also , i will be interested in to give a presentation at your  company or at the rice university , as we discussed .  best regards ,  stan uryasev  prof . stanislav uryasev  university of florida , ise  po box 116595  303 weil hall  gainesville , fl 32611 - 6595  e - mail : uryasev @ ise . ufl . edu  url : www . ise . ufl . edu / uryasev\",0\n\"Subject: interview schedule for wichai narongwanich  attached please find the interview packet for the above - referenced person .  the interview will happen friday july 14 , 2000 . please print both documents  for your hard copies . hardcopies of the resume will be delivered via runner .  if you have any questions , or conflicts of schedule , please do not hesitate  to contact me .\",0\n\"Subject: reimbursement of individually billed items  the memo distributed on june 27 on reimbursement of individually billed items  requires  clarification . the intent of the memo was to give employees an alternate  method  of paying for pagers , cell phones , etc . employees can continue to submit  these  invoices to accounts payable for processing or pay these items with their  corporate  american express card and request reimbursement through an expense report .  either  way is an acceptable way to process these small dollar high volume invoices .\",0\n\"Subject: re : test  avi ,  these are my coordinates  vince  vincent kaminski  managing director - research  enron corp .  1400 smith street  room ebl 962  houston , tx 77002 - 7361  phone : ( 713 ) 853 3848  fax : ( 713 ) 646 2503  e - mail : vkamins @ enron . com  on 06 / 20 / 2000 01 : 34 : 49 pm  to : \"\" vince j kaminski \"\"  cc :  subject : re : test  vince :  got the message !  kind regards  avi  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  avi i . hauser phd mba  cds director  100 international drive mt olive nj 07828 - 1383  + 1 973 691 3664 ( office )  + 1 973 347 8189 ( fax )  + 1 973 727 3622 ( car + slow paging )  hauser @ cdsusa . com\",0\n\"Subject: re : your mail  zhendong ,  dr . kaminski called me back telling me that he would like to have you as  an intern student in his research department during the summer . please  write him an email as soon as possible to introduce yourself and letting  him know of your expected starting date and ending date . dr . kaminski ' s  email address is vince . j . kaminski @ enron . com  shi - jie deng  assistant professor  school of isye  georgia institute of technology  office phone : ( 404 ) 894 - 6519  e - mail : deng @ isye . gatech . edu  home page : http : / / www . isye . gatech . edu / ~ deng\",0\n\"Subject: aiesec polska - eurolds 2000  jarek ,  czy enron moze pomoc w organizacji tej imprezy ?  bylaby to dobra okazja nawiazania wielu pozytecznych kontaktow .  wicek  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 17 / 2000  08 : 51 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" andrzej wodnicki \"\" on 02 / 16 / 2000 02 : 50 : 05 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : aiesec polska - eurolds 2000  szanowny panie kaminski !  nazywam sie andrzej wodnicki i jestem czlonkiem stowarzysznia studentow  aiesec przy szkole glownej handlowej ( dawnej sgpis ) .  prosze o poswiecenie paru chwil na przeczytanie tego maila .  ( kontakt do pana otrzymalem od kolegi , ktory organizowal prezentacje firmy  enron na sgh , a posrednio od pana jarka astramowicza , przedstawiciela enron  na polske . )  w imieniu aiesec polska chcialbym zwrocic sie do pana z wielka prosba pomocy  przy wydarzeniu , ktore w tym roku organizujemy .  aiesec polska , a w szczegolnosci aiesec przy szkole glownej handlowej ma  zaszczyt organizowac w tym roku european leadership development seminar . jest  to seminarium na temat przywodztwa skierowne do obecnych i przyszlych  czlonkow rad wykonawczych komitetow lokalnych aiesec w calej europie .  po raz pierwszy aiesec polska ma mozliwosc organizacji takiego wydarzenia i  stanowi ono dla nas olbrzymie wyzwanie .  przygotowywalismy sie do niego od kilku lat i obecnie jestesmy juz w koncowej  fazie organizacji eurolds 2000 .  projekt rozpoczyna sie 7 marca 2000 roku oficjalnym otwarciem przez pana  prezydenta aleksandra kwasniewskiego w sali kongresowej . pozniej odbeda sie  dyskusje panelowe ( udzial wielu znakomitych gosci - m . in jan krzysztof  bielecki , jacek saryusz wolski , andrzej olechowski ) oraz wyklady i  prezentacje regionow polski w auli spadochronowej szkoly glownej handlowej , a  nastepnie delegaci udadza sie do hotelu mrongovia na szkolenia , casy i  wyklady na temat przywodztwa . ( szczegolowy program eurolds 2000 przesylam w  zalaczniku . )  jak do tej pory staralismy sie mozliwie najwiecej dokonac wlasnymi silami ,  jednak obecnie na 3 tygodnie przed tym wydarzeniem stoimy przed pewnym  problemem i stad tez pojawil sie pomysl skontaktowania pana , jako osoby ,  ktora moglaby nam wydatnie pomoc .  chcielibysmy poprosic pana o wsparcie finansowe .  wspolpracujemy juz z wieloma firmami i instytucjami ( m . in . deloitte & touche ,  arthur andersen , fundusz phare , fundacja konrada adenauera oraz wieloma  innymi ) , jednak na obecnym etapie organizacji projektu wciaz brakuje nam  12000 $ .  poczatkowo chcielismy nawiazac kontakt z pania eileen price z londynu , jednak  wydaje nam sie , ze pan jako zalozyciel aiesec w polsce powienien po pierwsze  o takim wydarzeniu wiedziec , a po drugie mamy nadzieje , ze moze nam pan pomoc .  bardzo prosze o odpowiedz ,  z powazaniem  andrzej wodnicki  prezydent eurolds 2000  aiesec szkola glowna handlowa  - attl . htm  - eurolds _ prezentacja . ppt\",0\n\"Subject: factor loadings  fyi . . jeff  - - - - - - - - - - - - - - - - - - - - - - forwarded by jeffrey a shankman / hou / ect on 06 / 22 / 2000  07 : 47 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : ted murphy  06 / 21 / 2000 05 : 43 pm  to : rick buy , john j lavorato / corp / enron @ enron , jeffrey a  shankman / hou / ect @ ect , mark frevert / na / enron @ enron  cc :  subject : factor loadings  i hope that the following clears up some of the confusion regarding the  above - captioned process .  factor loadings are an input to value - at - risk ( var ) . generally , you can  consider them the determinants of relationships between curves , and points on  curves based on trader inputs . these pertain to all curves not just north  american natural gas . there is a specific program which calculates these  relationships which requires a considerable amount of processing time ( 3  hours per run ) as well as another few man - days to evaluate the results .  there is no \"\" ideal \"\" or recommended period in which these must be updated .  more frequent is \"\" better \"\" . given the amount of time it takes to refresh , it  was \"\" agreed \"\" a long time ago amongst rac , research , it and operations that  it would be done every 2 weeks . no commercial input was received . the roles  were to be simple as they are with most roles in and around var and other  risk management controls :  research specifies the math  it codes the program  operations runs the program  rac evaluates the results  the process has been run every two weeks on the second thursday of every  month since february ( as it had been prior ) and rac has rejected the results  because the results did not reflect the underlying math because of the  complexity of the math and the continuing addition of new products and  curves . this created the need to recode the application from scratch . rac  continued to agitate to get this done , particularly knowing that the pressure  on the efficacy of var would be questioned as we went into the volatile  period of 2000 ( e - mails from rudi zipter available upon request ) . the new  code was implemented last thursday and the results were accepted resulting in  an approximate 10 % difference in var .  rac had requested that the code be re - written on 6 / 10 / 99 @ 7 : 44 am with a  target completion date of 8 / 2 / 99 . this was discussed and accepted by  phillipe bibi on 6 / 17 / 99 in a meeting in his conference room with rick buy ,  dan bruce , jonathon le , ted murphy , bill bradford , debbie brackett and rudi  zipter along with the rest of our task list .  we have resolved that the process will continue as stated and will  communicate to you the results .  there are dozens of other processes that are important to the calculation and  interpretation of var that need to be implemented , enhanced , improved or  rewritten altogether . for example , the jump - diffusion factors for north  american power have not been refreshed in 2000 . the prioirty is dependent on  the level of precision required .  i will provide a comprehensive list of those processes in due course .  ted\",0\n\"Subject: a few comments  john ,  happy new year . i hope the first few weeks of this year will see the  completed paper .  i am sending you the last version of the paper i have received with a few  comments ( in red ) . i think it makes sense to discuss the paper over the  phone . i have a number of more detailed comments .  vince  - enron transformation paperl 2 _ 17 _ 00 _ vk . doc\",0\n\"Subject: mba career opportunity  dear ? vincent kaminski :  ?  i got your contact details from the web site for power marketers . i have a  strong interest in pursuing a career in the energy industry ? with a top  energy company like ? enron , where my abilities and qualifications can be  fully applied for our mutual benefit .  i am graduating in may with an mba ? degree with concentrations in finance and  information systems . this summer i worked ? as an intern with structuring and  analytics group of ameren energy . ? this internship ? has been especially  challenging and has enhanced my professional competencies . while there , i  was afforded the opportunity to ? develop a forward view model ? for ? off -  peak ? electricity price forecasting and analyze the data sets of a  fundamental ? model to create forward price curves . both projects added value  to the company and provided me with first - hand experience in the area of  energy trading and marketing as well as modeling techniques .  in addition , i have an undergraduate degree in mechanical engineering and  two years ' experience in power generating . with my work experience in energy  finance and exceptional academic and professional achievements , along with  my exemplary leadership and management potential and outstanding analytical ,  business communication , problem - solving and computer skills , i ' m convinced  that i will be able to make immediate contributions to your company .  i am attaching my resume for your review . should you have any questions or  need clarification , please feel free to contact me at ( 504 ) 861 - 9110 or  qchenl @ tulane . edu .  as i have some offers with deadlines approaching , i would appreciate it if  you could give me a quick response . i also expect ? a base compensation above  $ 75 k . i look forward to ? hearing from you soon .  ?  best regards ,  qing ( christine ) chen  mba 2001  a . b . freeman school of business  tulane university  tel : ( 504 ) 861 - 9110  - resumeus . doc  - resumeus txt . txt\",0\n\"Subject: the installation of the equipment you ordered is completed  - - - automatic notification system ( request # : ecth - 4 rstt 6 )  requested for : vince j kaminski  requested by : shirley crenshaw  the installation of the equipment ( see below ) has been completed .  en 6600 128 mb installed in desktop  en 6600 desktop p 3 - 600 10 gb 64 mb 32 x nt 4 . 0  en 6600 128 mb installed in desktop\",0\n\"Subject: risk and purchasing meeting - eb 4438  this is scheduled to be a short ( 1 hour ) meeting to discuss risk and  purchasing\",0\n\"Subject: re : holiday greeting from jerry wind  - holiday , revisionl . doc\",0\n\"Subject: re : next visit to houston  ed ,  wednesday , july 12 , 2 : 300 will work for me .  i shall be glad to review your website - -  www . weathereffects . com . i shall invite some  people who work on electricity in  my group to join me .  vince  \"\" edward krapels \"\" on 06 / 29 / 2000 03 : 53 : 40 pm  please respond to  to : \"\" ' vince j kaminski ' \"\"  cc : \"\" jeffrey shorter \\ ( e - mail \\ ) \"\"  subject : re : next visit to houston  vince ,  good to hear from you and i ' m glad you ' re available . how is wednesday at  2 : 30 ?  i did look at eol and am not surprised to see its quality . i was unable to  say much about it in my risk electricity hedging and trading report because  of deadline pressures . how is the site doing ? i am intrigued by the  competition for trading platforms and was astonished to hear that goldman ,  morgan , bp and shell were going to launch a site to compete with yours . talk  about a shotgun marriage !  if we have time next week , i could step you through our website - -  www . weathereffects . com . i ' m very proud of what we ' ve done . i can ' t give out  a password yet but would be happy to walk through the site with you over the  phone using my password . it ' s a very ambitious site - - with state - of - the - art  wsi weather ( seasonal , 6 - 10 , and day to day ) driving a good load model for  pjm and nepool . esai contributes oil and gas input price forecasts , capacity  judgments , and \"\" herding \"\" ideas to develop power price forecasts for same  time periods . after one month ' s full - bore effort , i ' m pleased with the  results ( e . g . , we forecast nepool onpeak to be $ 43 and it turned out $ 46 ) .  have a great weekend .  ed  - - - - - original message - - - - -  from : vince j kaminski [ mailto : vince . j . kaminski @ enron . com ]  sent : wednesday , june 28 , 2000 5 : 29 pm  to : ekrapels @ esaibos . com  cc : vince j kaminski ; shirley crenshaw  subject : re : next visit to houston  ed ,  i shall be available on both days . what about wednesday ,  july 12 , between 1 : 30 and 4 : 00 . please , let me know  what time would work for you .  it will be nice to see you again .  vince  p . s . by the way , did you have a chance to take a look at the eol ?  \"\" edward krapels \"\" on 06 / 28 / 2000 02 : 49 : 41 pm  please respond to ekrapels @ esaibos . com  to : vince j kaminski / hou / ect @ ect  cc :  subject : next visit to houston  dear vince ,  i will be returning to houston during the week of july 10 .  esai and weather services international have launched - - after more than 18  months of r & d - - our service , called energycast power trader and energycast  gas trader , for power traders in nepool and pjm . i would be happy to review  the service with you as well as take you on a tour of our web site . are you  available on july 12 - 13 ?  sincerely ,  ed krapels\",0\n\"Subject: re : re [ 10 ] : greetings from london ( to enron )  teresa ,  i would like to invite iris for an interview in houston .  she works currently in london can you call her  and ask when she is planning to visit the states .  we could pay the airfare from a location in the states .  i would hate to pay the lst class ticket from london to houston ,  though i would go for it , if necessary ( i don ' t  want a candidate to think that we are that cheap ) .  business class is a standard  for business related , cross - atlantic flights .  i would be more comfortable if you could negotiate this issue .  thanks  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 06 / 16 / 2000  10 : 13 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  06 / 12 / 2000 03 : 51 pm  to : iris . mack @ bnpparibas . com @ enron  cc : vince j kaminski / hou / ect @ ect  subject : re : re [ 10 ] : greetings from london ( to enron )  iris ,  at this point it ' s my group : research , i . e . quantitative modeling .  please , let me know what your interests are and i shall try to line up  other groups for the interview .  vince  iris . mack @ bnpparibas . com on 06 / 09 / 2000 02 : 33 : 50 am  to : vince . j . kaminski @ enron . com  cc :  subject : re [ 10 ] : greetings from london ( to enron )  hi ,  i will be out of the country until wednesday afternoon - london time .  maybe we can chat then .  also , could you please tell me about the group ( s ) that are interested in  speaking with me .  thanks ,  iris  internet  from : vince . j . kaminski @ enron . com on 06 / 06 / 2000 20 : 31 gmt  to : iris mack  cc : vince . j . kaminski  bcc :  subject : re : re [ 8 ] : greetings from london ( to enron )  iris ,  leaving for ca in a few minutes . i shall get back to you monday .  vince  iris . mack @ bnpparibas . com on 06 / 06 / 2000 10 : 36 : 46 am  to : vince . j . kaminski @ enron . com  cc :  subject : re [ 8 ] : greetings from london ( to enron )  hi ,  thanks for your email . begining of july - what about july 4 th week ?  could you give me a bit more info regarding the best days for you and  your  colleagues .  thanks ,  iris  internet  from : vince . j . kaminski @ enron . com on 06 / 06 / 2000 14 : 29 gmt  to : iris mack  cc : vince . j . kaminski  bcc :  subject : re : re [ 6 ] : greetings from london ( to enron )  iris ,  the beginning of july would be better for us . please , let me know what  is your availability .  vince  iris . mack @ bnpparibas . com on 06 / 06 / 2000 02 : 30 : 49 am  to : vince . j . kaminski @ enron . com  cc :  subject : re [ 6 ] : greetings from london ( to enron )  hi ,  thank you for your email . how many days do we need ?  i have checked my calendar . and think that i should be able to come on  monday june 19 th ( tuesday june 20 th - if you need more than one day ) . .  i can fly from london to houston during the following weekend to  arrive in  time for monday morning .  let me know if these days are good for you and your colleagues .  regards ,  iris  internet  from : vince . j . kaminski @ enron . com on 25 / 05 / 2000 18 : 33 gmt  to : iris mack  cc : vince . j . kaminski  bcc :  subject : re : re [ 4 ] : greetings from london ( to enron )  iris ,  we can invite you for an interview to houston .  what would be a the time for you ?  vince  iris . mack @ bnpparibas . com on 05 / 25 / 2000 11 : 32 : 04 am  to : vince . j . kaminski @ enron . com  cc :  subject : re [ 4 ] : greetings from london ( to enron )  hi ,  thank you for your prompt response . i am interested in any contacts  you  may have in your rolodex .  also , i would be opened to talk to enron as well . please let me know  more  details .  kind regards ,  iris  internet  from : vince . j . kaminski @ enron . com on 25 / 05 / 2000 16 : 19 gmt  to : iris mack  cc : vince . j . kaminski , stinson . gibner , grant . masson ,  pinnamaneni . krishnarao ,  vasant . shanbhogue  bcc :  subject : re : re [ 2 ] : greetings from london ( to enron )  iris ,  i shall go through my rolodex and try to find some good leads for you . i  left  investment banking 8 years ago and this field changes very fast .  alternatively , would you be interested in a company like enron  or another energy company in houston ?  please , let me know .  vince  iris . mack @ bnpparibas . com on 05 / 25 / 2000 09 : 20 : 01 am  to : vince . j . kaminski @ enron . com  cc :  subject : re [ 2 ] : greetings from london ( to enron )  hi ,  how are you ? thank you kindly for your email . sorry i have not  responded  sooner .  currently i am working in derivatives structured products and risk  management at bnp paribas in london . although i currently enjoy living and  working in london , i may need to return to the states - because of my  mother ' s  failing health .  do you know of any good contacts at investment banks that i may  forward my  details to ?  for your information , i have attached my cv . ( please see attached  file :  iris marie mack . doc ) .  thank you in advance for your time and consideration .  kind regards ,  iris mack  44 ( 0 ) 20 7595 8665 ( work )  44 ( 0 ) 20 7229 9986 ( home )  ( see attached file : iris marie mack . doc )  internet  from : vince . j . kaminski @ enron . com on 04 / 04 / 2000 15 : 03 gmt  to : iris mack  cc : vince . j . kaminski  bcc :  subject : re : greetings from london ( to enron )  iris ,  please , feel free to give me a call when you have a few minutes .  i shall be glad to chat with you .  vince  iris . mack @ paribas . com on 03 / 30 / 2000 02 : 24 : 27 am  to : vkamins @ enron . com  cc : denis . autier @ paribas . com  subject : greetings from london ( to enron )  dear dr . kaminski ,  how are you ? it was nice to meet you at the real options conference  in  nyc .  i was intrigued by some of the comments in your conference talk . in  particular , by your use of real options to hedge financial options . this  is  something i am interested in as well .  when you have some time , could we chat about this topic in a bit more  detail ?  thanks for your time and consideration . hope to hear from you soon .  regards ,  iris mack  - - - - - - - - - - - - - - - -  this message is confidential ; its contents do not constitute a  commitment by bnp paribas group * except where provided  for in a written agreement between you and bnp paribas group * .  any unauthorised disclosure , use or dissemination , either  whole or partial , is prohibited . if you are not the intended  recipient of the message , please notify the sender immediately .  * bnp paribas group is a trading name of bnp sa and paribas sa  ce message est confidentiel ; son contenu ne represente en  aucun cas un engagement de la part du groupe bnp paribas *  sous reserve de tout accord conclu par ecrit entre vous et le  groupe bnp paribas * . toute publication , utilisation ou diffusion ,  meme partielle , doit etre autorisee prealablement . si vous n ' etes  pas destinataire de ce message , merci d ' en avertir immediatement  l ' expediteur .  * le groupe bnp paribas est le nom commercial utilise par bnp sa et paribas  sa  ( see attached file : iris marie mack . doc )  ( see attached file : iris marie mack . doc )  ( see attached file : iris marie mack . doc )  ( see attached file : iris marie mack . doc )  - iris marie mack . doc\",0\n\"Subject: rab graph  i believe this will be helpful in your analysis .  - - - - - - - - - - - - - - - - - - - - - - forwarded by michael anderson / hou / azurix on 08 / 22 / 2000  08 : 35 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : keith harris / wsx / azurix @ exchange on 08 / 03 / 2000 01 : 40 pm gdt  to : michael anderson / hou / azurix @ azurix  cc : colin skellett / wsx / azurix @ exchange  subject : fw : amended index graph  michael  i have got csfb working on the amendment you asked for .  in the meantime we have produced a graph which shows , as indices , market  values of the water companies and the rab of the industry since  privatisation . the following points come out  1 market values overtime have been 1 . 1 x rab  2 the result is significantly skewed by the period between mid 1997 and end  1998 when the ratio was cl . 5 x .  3 the premium to rab is only found at a time when political uncertainty has  been removed the companies are able to outperform the regulatory deal  significantly . those days are gone - a fact witnessed by the decline in  share prices in the last year  just to note that the graph we have produced here is a weighted average of  water companies - whereas the figures we did yesterday on the rab market  value ratio is a straight average . obviously that influences the numbers a  little .  on customerco . csfb have contacted around 7 energy companies . the result  has been positive and they are prepared to enter our journal exercise . i  await a revised fee proposal but csfb have been advised that it should be  more modest than the last one !  keith  - - - - - original message - - - - -  from : david kitchener  sent : 03 august 2000 13 : 27  to : keith harris  subject : amended index graph\",0\n\"Subject: re : summer internship  shirley ,  fyi . it looks like cantekin will be starting on may 22 ( summer intern ) .  can we find him space on 19 ?  - - stinson  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 04 / 20 / 2000  02 : 41 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" cantekin dincerler \"\" on 04 / 20 / 2000 11 : 21 : 11 am  please respond to  to : \"\" ' stinson gibner ' \"\"  cc :  subject : re : summer internship  stinson ,  i just received a word from associate & analyst program that the official  starting dates are may 22 , and june 2 . they seem to be strict about this .  hopefully i ' ll make it to may 22 .  regards ,  - - - - - - - - - oooo - - - - - oooo - - - - - - - - - -  cantekin dincerler  doctoral candidate  the university of texas at austin  graduate school of business  department of finance  office : ( 512 ) 471 - 1676  fax : ( 512 ) 471 - 5073  home : ( 512 ) 472 - 5356  http : / / uts . cc . utexas . edu / ~ cantekin  - - - - - - - - - - - - - oooo - - - - - oooo - - - - - - - - - -  > - - - - - original message - - - - -  > from : stinson gibner [ mailto : stinson . gibner @ enron . com ]  > sent : thursday , april 13 , 2000 5 : 13 pm  > to : cantekin @ mail . utexas . edu  > subject : summer internship  >  >  >  >  > cantekin ,  >  > you should be getting an offer of a summer internship within  > the next few days .  > if you don ' t , please let me know .  >  > i think you will be working with me on a combination of enron  > broadband services  > and enron north america projects and am looking forward to  > having your help .  > some of the projects should be a lot of fun .  >  >  > when are available to start so i can plan ahead for you ?  >  > best regards ,  >  > stinson  >  >\",0\n\"Subject: re : uk portfolios and books setup in risktrac  tanya ,  we have checked the risktrac system and  ( 1 ) the spreadoption , and other , mappings in risktrac are correct . ie ,  els 1 b has both power ( ppp ) and gas ( nbp ) and the deltas / gammas tie out . the  lolp and smp mappings all tie out .  ( 2 ) however , the uk power in risktrac has 25 twh more of power . this has  something to do with the enpower - risktrac communication .  ( 3 ) uk - gas positions tie out in aggregate ( off by a single bcf )  for var discrepancies , other than positions , the following will contrbute  ( 1 ) in risktrac power is mapped to r 4 ( cinergy ) while in the spreadsheet it  is us - ng .  ( 2 ) gas - power and efa - efa correlations are different .  matthew is coordinating with oliver and london it to resolve the position  issues .  naveen  tanya tamarchenko @ ect  01 / 03 / 2001 02 : 09 pm  to : naveen andrews / corp / enron @ enron , matthew adams / corp / enron @ enron  cc : rabi de / na / enron @ enron , jaesoo lew / na / enron @ enron , vince j  kaminski / hou / ect @ ect  subject : re : uk portfolios and books setup in risktrac  naveen and matthew ,  i started looking systematically through uk positions and corresponding var  numbers in the risckrac .  i found a few inconsistencies so far .  1 . the portfolio elsb 1 - nbp has a book elsb 1 under it . the sum of delta  positions for this book is  239 , 021 , 655 , the sum of gamma positions is - 211 , 031 , 450 . var for the  portfolio elsb 1 - nbp is zero .  the same refers to a few other portfolios , for example elsb 2 - nbp , elsb 3 - nbp ,  e 2 xxl - nbp .  2 . the portfolio elsbp 1 - ppp also has the book elsb 1 under it . this book  contains the positions on pppwdl  through pppwd 6 and pppwel through pppwe 4 .  the same refers to the other books , for example elsb 2 .  this looks messy . can someone in rac go over all the portfolios , all the  corresponding books and curves  in risktrac and make sure they are set up properly ?  thank you ,  tanya .\",0\n\"Subject: re : ( no subject )  jana ,  sorry , i shall be in florida this thursday .  i am speaking at a conference in key biscayne .  talk to you soon .  vince  jlpnymex @ aol . com on 03 / 28 / 2000 09 : 32 : 16 am  to : doris . a . abernathy @ ucm . com , nalexander @ texasmonthly . emmis . com ,  blackj @ wellsfargo . com , ckcrews @ swbell . net , rclark @ nymex . com ,  kcdunnagan @ aol . com , rdyerlaw @ houston . rr . com , ggulen @ uh . edu ,  lesley . guthrie @ cpa . state . tx . us , elizabethherring @ pzlqs . com ,  eric . hoffman @ esso . com , khcnb @ arkansas . net , michael . jacobs @ hq . doe . gov ,  vkamins @ enron . com , info @ . com , kimmorrell @ excite . com ,  adrian . a . nunez @ usa . conoco . com , elizabeth _ oldroyd @ americancentury . com ,  woodybc @ bp . com  cc :  subject : ( no subject )  dear friends :  it is time for rockin ' at rockefellers which benefits the houston symphony !  this is your chance to dance , your date to associate , and your option to  auction !  join us thursday , april 6 , from 7 - 10 p . m . at the legendary rockefeller hallon  historic washington avenue at heights blvd . dance the night away to the  sounds of sammy relford and friends and enjoy an open bar and light hors  d ' oeuvres , and a silent auction full of unique , celebrity items . tickets are  $ 20 in advance , and $ 25 at the door . invite your friends , and join us there !  jana phillips\",0\n\"Subject: help on dpc lng options  jeff ,  i fully support sandeep ' s request to move anshuman srivastav to houston .  i anticipate that we shall be working on dhabol related issues for the next  two years  until all the business problems are successfully resolved .  anshuman is a very capable employee , with the right combination of skills to  attack the dhabol modeling challenge . he understands the indian markets as  well  as international fuel markets . he has also a very good grasp  of power industry fundamentals and of the technology used at the dhabol power  plant .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 12 / 2001  04 : 54 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  sandeep kohli @ enron _ development  03 / 12 / 2001 12 : 40 pm  to : vince j kaminski @ ect  cc :  subject : help on dpc lng options  vince ,  this is a follow - up of our meeting with jeff shankman on friday , as well as  our discussions with the global assets group on dpc issues .  as you see , there is a need for developing a comprehensive fuel strategy for  dpc that encompasses both the lng phase , and the naphtha side . furthermore ,  any fuel strategy we develop will have to be in consonance with the power  side of the business . there is a lot of analytical work that will be  required in this context over the next several months , and we will need a  person who understands both the power and the fuel side of the business at  dpc .  i believe anshuman is just such a person . he has worked closely with me over  the last 2 yrs . , and has been trained in the derivatives side of the business  ( he has attended all three levels of derivatives classes offered at enron ) .  over the last month , his presence in houston has greatly helped me in melding  the henwood study with the picture on the lng / fuel side . i believe his  presence in houston will be critical to us developing a comprehensive  fuel / lng strategy for dabhol , together with the global markets and asset  groups .  i am therefore requesting you to explore the possibility of anshuman being  moved on a more permanent basis to houston . as you are aware , anshuman  himself would welcome such an arrangement .  regards ,  sandeep .\",0\n\"Subject: tage  vince ,  i have the information you requested concerning spyros maragos . please call  me at your convenience .  paul johnson  ( 281 ) 497 - 8595\",0\n\"Subject: 20 th annual ceraweek - \"\" shooting the rapids : strategies and risks  for the energy future \"\"  mr . vincent j . kaminski  managing director  enron capital & trade resources corp .  dear mr . kaminski :  i am pleased to invite you to join my cera colleagues and me at our 20 th  annual executive conference , \"\" shooting the rapids : strategies and risks for  the energy future \"\" to be held february 12 - 16 , 2001 in houston , texas . ? this  is the premier international gathering offering senior executives new ideas ,  insights and strategic thinking on the issues facing the global energy  industry .  i believe you will find the conference and related social events timely and  of considerable value . ? our focus will be on the critical implications of the  current market turmoil for energy strategies , investment , regulatory  backlash , competitive dynamics , and industry structure . ? presentations cover  all key regions and energy sectors - - oil , natural gas and power - - and their  interconnections . ? the conference is the centerpiece of ceraweek , a full week  of senior level meetings designed to foster exchange and learning , as well as  informal interaction and networking . ? last year ' s participants included some  1600 executives from over 57 countries .  complete details on ceraweek 2001 can be found at ?  http : / / www . cera . com / cfm / track / mc . cfm ? p = 670 & c = 2804 ? . to register , please go  directly to http : / / www . cera . com / cfm / track / mc . cfm ? p = 781 email  register @ cera . com ; or call us at 1 ( 800 ) 879 - 2372 ext . 800 ( outside the u . s .  ( 617 ) 497 - 6446 ext . 800 ) . ? i hope you will join us !  sincerely ,  daniel yergin  chairman , cambridge energy research associates  should you experience problems reaching the web site using the links above ,  please go to http : / / www . cera . com / ceraweek /  our relationship with you is very important to us . ? if you wish not to  receive future e - mail notifications , please send a reply to this message with  \"\" donotemail \"\" as the subject of your message . (  mailto : info @ cera . com ? subject = donotemail ) ? please indicate whether you wish  to be removed from the conference list or alternatively from the list for any  future cera notifications . \",0\n\"Subject: re : fw : parent - subsidary model  hi again ,  thanks for the financial data on enron ' s european counterparties .  it is my understanding that you started out with a list of 500 such  counterparties . however , your spreadsheet only contains information for 72  of these european counterparties .  will you please tell me the logic behind the elimination of the 400 + other  counterparties ?  thanks so much ,  iris  - - - - - original message - - - - -  from : parsons , ben  sent : tuesday , april 17 , 2001 2 : 56 am  to : mack , iris  cc : valnek , tomas ; dhar , amitava ; mumford , mike  subject : re : fw : parent - subsidary model  hi iris  the inputs and outputs generated by riskcalc can be seen in the attached file :  >  we only looked at the 5 - yr pd .  inputs are in columns a - u . these are the inputs generated by amadeus . you can  run these inputs through the riskcalc model over the web  ( http : / / www . moodysqra . com / privfirm ) using the login : dupred , password :  detective . this is our trial licence which lasts for about 2 more weeks ( mike  mumford will have more details about the current licence )  tomas valnek was getting the data from the amadeus database , so i ' ll leave it  to him to determine if houston access is possible . in the meantime you can  use the dataset attached for testing purposes .  ben  from : iris mack / enron @ enronxgate on 12 / 04 / 2001 17 : 58 cdt  to : ben parsons / lon / ect @ ect  cc : amitava dhar / corp / enron @ enron  subject : fw : parent - subsidary model  hi ben ,  how are you ? today we had a meeting with craig chaney and jeff kinneman to  discuss the private firm model .  they requested that i spend some time carefully analyzing the moody ' s  riskcalc model . i noticed that you also have been looking at riskcalc - as  indicated in your paper entitled \"\" pricing parent companies and their  subsidiaries : model description and data requirements \"\"  other than the example discussed in your paper , did generate any other test  statistics , scores , etc .  also , you stated that you used amadeus database . we are in the process of  trying to obtain data from various data vendors - but that may take a while .  in the mean time , may we have access to the amadeus database or some sample  dataset ?  thanks so much ,  iris  - - - - - original message - - - - -  from : valnek , tomas  sent : tuesday , april 10 , 2001 9 : 10 am  to : fiala , markus ; seyfried , bryan ; salmon , scott ; kirkpatrick , eric ;  mumford , mike ; fontaine , jean - sebastien ; brooks , simon ; price , nigel ;  diprose , robert ; rezaeian , reza ; gordon , mike ; lee , derek ; hershkovitz , ilan ;  golden , sally ; stephan , nicholas ; albanis , george ; shanbhogue , vasant ; mack ,  iris  cc : parsons , ben  subject : parent - subsidary model  attached is a description of the parent - subsidiary model that ben and i have  been working on over the last few weeks .  comments welcome !  tv  >\",0\n\"Subject: interview with the research group  good morning toni :  the research group would like to bring in jerzy jarosz for an exploratory  interview at his convenience . .  the interviewers from the research group would be :  vince kaminski  p . v . krishnarao  zimin lu  paulo issler  tanya tamarchenko  stinson gibner  grant masson ( if the interview is after the 18 th of july )  vasant shanbhogue ( if the interview is after the 21 st of july )  from other departments :  ted murphy  bill bradford  gary hickerson  his resume is attached .  if you need any other information , please let me know .  thanks !\",0\n\"Subject: a few loose ends  norma ,  thanks for your mesage .  1 . i shall ask krishna to reduce his rollover to 40 hrs .  2 . any resolution on bonus for lance ( october 2 nd start ) ?  anita dupont is in the same situation .  3 . can you send me a copy of exit interview for grant masson ?  there is a special reason i need and i shall explain it to you in  person .  4 . what time next week would be good for lunch ? i would be glad  to invite you molly and ramona . what about friday the 22 nd ?  vince\",0\n\"Subject: a friend of mine  shirley ,  please , arrange a phone interview with richard .  stinson , myself , vasant .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 05 / 02 / 2001  08 : 15 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : kristin gandy / enron @ enronxgate on 05 / 01 / 2001 05 : 14 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : a friend of mine  vince ,  last week i was contacted by one of my friends who is very interested in  becoming an enron employee . he has a phd and several years research and lab  experience .  richard is afraid that being a phd is a dying breed and may need to go back  to school to obtain an mba . i was wondering if you would mind looking at the  attached resume to assess if you have any interest in richard , or if you feel  i should encourage him to go back to school . i am unclear as to the  qualifications for your group so i apologize if this request is way off base .  thank you for your help ,  kristin gandy  associate recruiter  enron corporation  1400 smith street eb 1163  houston , texas 77002  713 - 345 - 3214  kristin . gandy @ enron . com\",0\n\"Subject: re : enterprise risk management  jim ,  yes , i would be very interested .  vince  james l bouillion  01 / 17 / 2001 03 : 02 pm  to : kevin kindall / corp / enron @ enron  cc : jere c overdyke / hou / ect @ ect , vince j kaminski / hou / ect @ ect  subject : enterprise risk management  i had a meeting with willis ( insurance broker ) today and they advised that  they have a computer analytics tool that can evaluate traditional exposures  and express the risk as var . would you be interested in seeing the tool ?\",0\n\"Subject: fwd : re : optical network engineering & enron research offsite meeti  ng  fyi .  - - - - - forwarded by ravi thuraisingham / enron communications on 03 / 17 / 00 09 : 10  am - - - - -  john _ griebling @ palm . net  03 / 17 / 00 06 : 29 am  please respond to john _ griebling  to : scott yeager / enron communications @ enron communications , dorn @ palm . net ,  diane _ hetzel @ palm . net  cc : ( bcc : ravi thuraisingham / enron communications )  subject : fwd : re : optical network engineering & enron research offsite meeti  ng  scott ,  we are definitely going to do the network engineering / research  off - site in breckenridge the weekend of april 21 - 22 - 23 ( fri , sat , sun ) .  there will be 25 - 30 people . we will plan on meeting and lodging  facilities in town . let us know if you want to arrange a social event  or activity at your place for the group . my assistant , sheryl lara ,  will be coordinating with you . she will also be publishing agenda and  attendee invites as soon as we finalize these next week .  - - forwarded message - -  hi vince , here is the official ' go ' signal from john griebling . sheryl  and  shirely please plan the space etc . together . please plan on about 25  to 30  people .  regards ,  ravi .  p . s . vince , john and stinson , i will send another e - mail with the  proposed  ag\",0\n\"Subject: re : mscf speaker series  kristin gandy is following up on this . she ' s the new carneige mellon  recruiter . sorry about the delay .  alison  vince j kaminski  08 / 11 / 2000 03 : 59 pm  to : mary alison bailey / hou / ect @ ect  cc :  subject : re : mscf speaker series  fyi  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 08 / 11 / 2000  04 : 04 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" pierre - philippe ste - marie \"\" on 08 / 11 / 2000 03 : 39 : 39 pm  to :  cc :  subject : re : mscf speaker series  thx ,  we are very anxious to hear her answer  pierre - philippe ste - marie  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  pstemarie . homestead . com  - - - - - original message - - - - -  from :  to :  cc : ;  sent : friday , august 11 , 2000 10 : 55 am  subject : re : mscf speaker series  >  > pierre - philippe ,  >  > i have contacted allison bailey to ask her to move her visit  > to the campus to coincide with my presentation .  > i hope to hear from her soon .  >  > vince kaminski  >  > p . s . nice web site  >  >  >  >  >  >  >  > \"\" pierre - philippe ste - marie \"\" on 08 / 10 / 2000 05 : 13 : 53  pm  >  > to :  > cc :  > subject : mscf speaker series  >  >  >  > dear mr . kaminsky ,  >  > just checking if there was any progress . . . or anything i could do to help  > you .  >  > sincerely ,  >  > pierre - philippe ste - marie  > - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  > pstemarie . homestead . com  >  >  >  >  >\",0\n\"Subject: day off tuesday  stinson ,  i would like to take a day off tomorrow ( tuesday , april 10 ) .  i need to register my son to elementary school and send my cars to service .  my cell number is 713 - 858 - 2577 in case you need to reach me .  zimin\",0\n\"Subject: re : f / u to dr . kaminski @ enron from iris mack  hi again ,  i am visiting several family members and friends over the next few days .  therefore it will be hard to contact me .  however , next week i will be easier to reach . my contact details in nyc are  as follows . i will be staying at the following hotels :  washington square hotel  from november 28 th for 3 nights ( tue , wed and thur )  212 . 777 . 9515  marriott nyc financial  december lst for 1 night ( fri )  212 . 385 . 4900  at any rate , i will still try to reach you on tomorrow morning . if all  fails , we will try to reach each other next week .  happy thanksgiving ,  iris  > from : \"\" iris mack \"\"  > to : vince . j . kaminski @ enron . com  > subject : re : f / u to dr . kaminski @ enron from iris mack  > date : tue , 21 nov 2000 22 : 07 : 09  >  > hi ,  >  > how are you ? seems like we have had a bit of difficulty contacting each  > other . sorry i missed your call . i am now in nyc - until december 2 nd .  >  > i will try to call you on tomorrow morning about 8 am houston time .  >  > take care ,  > iris  >  >  >  >  > > from : vince . j . kaminski @ enron . com  > > to : irismmack @ hotmail . com  > > cc : vince . j . kaminski @ enron . com  > > subject : hello  > > date : tue , 21 nov 2000 15 : 14 : 31 - 0600  > >  > > iris ,  > >  > > we are trying to reach you but we are getting error messages .  > > please , call me 713 853 3848 .  > >  > > vince  > >  > >  >  _ _ _ _ _ _ _  get more from the web . free msn explorer download : http : / / explorer . msn . com\",0\n\"Subject: telephone interview with the research group  good morning mr . catanese :  your resume was forwarded to the research group and they would like  to conduct a telephone interview with you at your convenience . we would  prefer the week of july 5 - 7 ( monday and tuesday , the 3 rd and 4 th are  holidays ) , if at all possible .  please let me know your availability and where you may be reached by  phone and i will coordinate the calendars .  the interviewers would be :  vince kaminski managing director  stinson gibner vice president  p . v . krishnarao director  osman sezgen manager  i look forward to hearing from you .  sincerely ,  shirley crenshaw  administrative coordinate  enron corp . research group  713 / 853 - 5290\",0\n\"Subject: re : fw : fw : get together this coming tuesday ?  kim ,  i talked to dale early this morning and suggested that we meet during his next trip to houston  when we decide on timing of our project .  vince  from : kimberly watson / enron @ enronxgate on 05 / 01 / 2001 08 : 41 am  to : vince j kaminski / hou / ect @ ect , eric gadd / et & s / enron @ enron  cc :  subject : fw : fw : get together this coming tuesday ?  vince ,  if dale comes in to see you , it looks like eric might be available to meet with you as well . it would be a good opportunity for eric to meet dale and get a little more information on his model . eric ' s phone number is x 54713 .  thanks ,  kim .  - - - - - original message - - - - -  from : gadd , eric  sent : monday , april 30 , 2001 8 : 12 pm  to : watson , kimberly  subject : re : fw : get together this coming tuesday ?  works for me . give me a call at 9 : 30 .  from : kimberly watson / enron @ enronxgate on 04 / 30 / 2001 05 : 09 pm  to : eric gadd / et kaminski , vince  subject : re : get together this coming tuesday ?  dale ,  please , call me on tuesday . my morning schedule is full but i am open in the afternoon .  vince  \"\" dale m . nesbitt \"\" on 04 / 30 / 2001 01 : 51 : 21 am  please respond to  to : \"\" vincent kaminski \"\" , \"\" kimberly s . watson \"\"  cc :  subject : get together this coming tuesday ?  vince / kim :  i am flying to houston tonight and wondered if it would fit one or both of  your schedules to get together this coming tuesday sometime for 1 / 2 hour or  so . i really want to reinitiate the conversations marketpoint was having  with john goodpasture and you , and he said either or both of you were the  right people to continue after his responsibility shift . john was quite  positive about the idea of enron acquiring marketpoint narg through license ,  and he implied that one or both of you would be carrying the ball in that  direction after he handed it to you .  would this coming tuesday morning at 930 am be a good time for you guys ? if  so , please give me an email shout at the above address or leave a message on  my voicemail at ( 650 ) 218 - 3069 . i think you will be truly impressed with the  scope and progress we have been able to make with both the short run narg  and the long run narg in which you were interested ( not to mention our power  model ) . the progress is noticeable since you saw it . both long and short  term narg are having quite an impact on a number of gas decisions at the  moment ranging from venezuelan lng , north american lng import terminals and  term , gas basis calculations , trading support , power plant development ,  gas - to - power price spreads in key markets , veracity of heat rate trades ,  bank financings , storage field evaluation , and which new pipelines we can  expect to see enter and which are dogs .  i really hope we can fit it in and get our discussions moving in a mutually  productive direction again . i think narg can help you become even more  successful , and i look forward to working with you .  we have a new office address and new phone number as well . ( we move in may  1 . )  altos management partners  95 main street , suite 10  los altos , ca 94022  ( 650 ) 948 - 8830 voice  ( 650 ) 948 - 8850 fax  ( 650 ) 218 - 3069 cellular  give the phones a week or so to get \"\" debugged \"\" and then switch over .  dale \",0\n\"Subject: times 2 filing units  pat :  recently , i talked with you about ordering another filing unit . it turns out  that we need 2 more filing units . please order them the same size as the  floor to ceiling cabinet we have . have the inside of the cabinets configured  as follows :  1 cabinet should have 5 shelves  1 cabinet should have 6 shelves  when interstore was here today reconfiguing 2 of our existing cabinets , they  removed 8 shelves that they are going to use on these new units .  please price these 2 new units and charge them to co . # 0413 , rc # 107043 .  please let me the prices and approximate delivery date . also , let me know  if you need anything else . thanks . anita\",0\n\"Subject: carnegie mellon  shirley ,  i just spoke with vince and asked him if he would be available to interview  one last candidate on monday . he said no problem that both he and stinson  would be available for interviews . could you please put on vince ' s schedule  one interview at 8 : 45 am - 9 : 15 am . stinson ' s interview will be from  9 : 30 am - 10 : 00 am .  i will just bring the candidate to their offices so they do not have to show  up early .  if you have any questions please feel free to contact me at extension 53214 .  thank you very much ,  kristin gandy\",0\n\"Subject: model development  vince ,  here is our final draft for the model development report . i believe that we  have incorporated all your comments from the last meeting . if you have any  questions or would like to sit down and go over the report please feel free  to call myself or patty . if the report is ok or if there are some additional  comments , i would appreciate if you would respond by wednesday january 12 .  thanks  andy\",0\n\"Subject: re : request for two powerpoint presentations from risk 2000 confe  renc e  i was wandering whether the document was resent . i still have not seen  anything at either email address .  thanks ,  allen bryson  > - - - - - original message - - - - -  > from : vince . j . kaminski @ enron . com [ smtp : vince . j . kaminski @ enron . com ]  > sent : tuesday , june 27 , 2000 7 : 56 am  > to : r - allen . bryson @ usa . conoco . com  > cc : vince . j . kaminski @ enron . com  > subject : re : request for two powerpoint presentations from risk 2000  > conferenc e  >  >  > allen ,  >  > i responded to your message from home .  >  > please , let me know if you did not receive the attachments .  > aol malfunctions sometimes .  >  > vince  >  >  >  >  >  > \"\" bryson , allen \"\" on 06 / 26 / 2000 09 : 17 : 07 am  >  > to : \"\" ' vkamins @ enron . com ' \"\"  > cc :  > subject : request for two powerpoint presentations from risk 2000  > conferenc  > e  >  >  > vince ,  >  > i would like to receive copies of both your energy risk and weather  > presentations from the risk 2000 conference in boston .  >  > thanks ,  >  > allen bryson  > conoco  >  >  >  >\",0\n\"Subject: re : argentina modelling  michael ,  what about 1 : 00 p . m . thursday ?  vince  michael guerriero @ enron _ development  01 / 05 / 2000 05 : 47 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : argentina modelling  could we meet tomorrow afternoon ?  mfg  vince j kaminski @ ect  12 / 30 / 99 06 : 41 pm  to : michael guerriero / enron _ development @ enron _ development  cc : vince j kaminski / hou / ect @ ect  subject : re : argentina modelling  michael ,  sorry , i was out around the holidays .  i shall be glad to meet with you in the lst week  of january . please call me ( 3 - 3848 ) or my assistant ,  shirley crenshaw , 3 - 5290 .  vince  michael guerriero @ enron _ development  12 / 20 / 99 02 : 31 pm  to : vince j kaminski @ ect  cc :  subject : argentina modelling  i am responsible for our argentina operation and would like to discuss some  modelling issues with you . could you be available wednesday for a meeting .  thanks  mfg\",0\n\"Subject: visit in november  shirley ,  please , schedule a meeting , 30 minutes with him .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 17 / 2000  05 : 56 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  carlos ordonez on 10 / 17 / 2000 02 : 56 : 07 pm  to : stinson . gibner @ enron . com  cc : vkamins @ enron . com  subject : visit in november  dear stinson ,  november is fast approaching and my schedule , and i am sure yours and  vincents ' ,  is filling up . i would love to visit with you guys again to discuss  possibilites of collaborations . right now , i am busy nov : 3 in the  afternoon , 6 , 10 in the morning , 15 , and any tuesday or thursday .  please let me know date and time for my visit as early as you can .  best ,  carlos\",0\n\"Subject: working paper list & etc  ? ? ? dear vince :  ?  ? ? ? i have put together a list of finance working papers ( some of which i  brought to the interview last wednesday ) which i have written since 1995  mostly in support of my work but also ( at least initially ) as a learning  tool . several of them , however , ? do contain innovations .  ? ? ?  ? ? ? i have asked ms . de claris to forward a copy to you .  ?  ? ? ? as i expressed to you earlier i am particularly interested in enron  credit swaps trading platform and the business opportunities that it will  spawn .  ?  ? ? ? i also think that there are tremendous opportunities to be explored in  the secondary mortgage maket in the us . i do not know if enron has  considered or is active in this market . this would be an area that i am also  very interested and in which i think much better can be done than most of  the players in the street .  ?  ? ? ? the question in my mind ( hopefully not prematurely ) ? is : if there is  interest here would enron consider letting me put together this business ?  ?  ? ? ? i look forward to hearing from you soon .  ?  ? ? ? best regards  ?  ? ? ? joao  ?  ? ? ?\",0\n\"Subject: iv rene ledis fifth floor se 5018  interview schedule  17 . 00 - 17 . 30 vince kaminski & anjam ahmad  17 . 30 - 18 . 00 ben parsons  18 . 00 - 18 . 30 stephen leppard\",0\n\"Subject: confirmation of your order  this is an automatic confirmation of the request you have placed using it  central .  request number : ecth - 4 ujn 5 l  order for : mitra mujica  1 x ( option : 128 mb upgrade for deskpro en 6600 $ 63 )  1 x ( standard desktop $ 905 ) enron it purchasing  * please send all status inquiries regarding this request to :  mailto : receiving & hardware @ enron . com\",0\n\"Subject: re :  dolores  please , register me for a session on 9 / 29 / 2000 at 12 : 45 .  vince kaminski  celeste roberts  08 / 29 / 2000 06 : 21 pm  to : celeste roberts / hou / ect @ ect  cc : ( bcc : vince j kaminski / hou / ect )  subject :  urgent  the associate and analyst recruiting department will be conducting a number  of two hour workshops to review our recruiting and interview process for the  fall on - campus recruiting effort . critical information regarding our  on - campus interview process , revised evaluation forms and program structure  will be reviewed during these two hours sessions .  it is mandatory that all team members attend these workshops . all team  members must attend in order to articulate and demonstrate the enron  recruiting process . knowing how busy schedules are , we have made  arrangements to present these workshops in two hours sessions for a total of  40 workshops that will run during the last week of august , through the month  of september and end at mid october .  listed below are the dates , location and times for each session . please  select a date and time and e - mail this information to my assistant , dolores  muzzy . we can accommodate 25 participants at a time . dolores will take  dates and times on a first come , first serve basis . we have scheduled enough  sessions to accommodate every member of both the associate and analyst  recruiting teams .  in order to participate in the recruiting process , you must attend one of  these sessions . we will be tracking participation . cpe credits will also be  given for attending this workshop .\",0\n\"Subject: eol trade size discrepancies  vince -  i have discovered the two sources of discrepancy in the \"\" transaction dollars \"\"  on eol , between my numbers and those of eol . first , eol records all index  trades with the henry hub price ( since the index price isn ' t , inadvertently ,  recorded with the trade , as i told you ) , whereas i went back and appended the  contemporaneous index price to the trades . second , eol ignores all basis  trades in reporting transaction dollars , whereas i append a rough size to  them of the \"\" price \"\" as the basis , times the quantity .  i ' m sorry i wasn ' t ready in time with my numbers ; i took the task of accuracy  very seriously .  clayton\",0\n\"Subject: recent projects  hi vince ,  i have been working on and / or planning to work on the following projects :  1 . finished a gas daily swing option model for commodity structuring  group ( sanjeev khanna ) . the model uses american monte carlo  simulation and dynamic programming techniques .  2 . continue working on psim model . this includes reading power generation  and operation books as well as thinking about ways to model power plant and  its operation . the standard approach ( i . e . turn the plant on if power  price > total  generation cost , else turn the plant off ) is not particularly good if the  regional  demand is very high and the plant still has some un - utilized generation  capacity .  that is , the generation criteria is quite different depending on we model  power  plant from regional point view or from plant point of view . plan to have  meetings  with tom and lance .  3 . started working on stochastic process parameter estimation . i will  concentrate  on four processes : gbm , mean reverting , jump diffusion , and jump diffusion  with  mean reverting . i have looked at tanya ' s earlier work and decided to  discretize  the processes slightly differently . it is hoped that this will give a more  stable  estimation .  best ,  alex\",0\n\"Subject: re : yaron ' s resume  kevin ,  i would greatly appreciate if you could help me in this case . yaron ' s father  helped me  a lot to open many doors at berkeley .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 25 / 2000  05 : 39 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  charlene jackson @ enron  10 / 24 / 2000 05 : 15 pm  to : vince j kaminski / hou / ect @ ect  cc : kevin hannon / enron communications @ enron communications , kristin  gandy / na / enron @ enron , shelly jones / hou / ect @ ect  subject : re : yaron ' s resume  vince ,  kevin hannon is the executive lead for cornell and he needs to approve . i  am not sure if they have already interviewed on campus . he should go through  the on - campus screening process before attending a super saturday . we are  reserving the super saturday weekend for individuals that are highly likely  to receive an offer . i will forward this to kevin and kristin gandy .  although they are responsible for graduate recruiting at cornell , perhaps it  is possible for him to interview when they go on campus .  charlene  kevin and kristin ,  please see vince ' s message below . would it be possible for an undergraduate  to interview while you are at cornell ? please let me know .  thanks  vince j kaminski @ ect  10 / 24 / 2000 04 : 37 pm  to : charlene jackson / corp / enron @ enron  cc : mary alison bailey / hou / ect @ ect , vince j kaminski / hou / ect @ ect  subject : yaron ' s resume  charlene ,  please , help . this is a son of a professor at berkeley who helps me a lot in  the recruiting process .  his son goes to cornell . can we invite him ( the son , not the professor ) to a  super saturday ? i really want  to repay the debt to his father who is very instrumental in my recruiting  efforts .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 24 / 2000  04 : 40 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" shmuel oren \"\" on 10 / 23 / 2000 04 : 37 : 25 pm  to :  cc :  subject : yaron ' s resume  ?  - yaron - resume 3 . doc\",0\n\"Subject: re : houston research opportunity : anjam  vince :  here is an explanation of what a 12 month package for anjam actually entails .  it seems to me that anjam ' s interest in getting an expat package is mostly  about money . based on the uk hr ' s read of anjam , they think he will jump .  i have a telephone conference with anjam at 11 : 00 . my stance will be 110 is  firm . we will help with the transition via a one time settlement : flat  rental issues , 500 lbs of air shipping for moving furniture , maybe one trip  back to uk a year , but no more . re : his concerns of having a place in london  should he want to return , i will say that vince would be far better at  finding a good spot for you than any hr type , so that part of the \"\" package \"\"  promise is not particularly important .  any guidelines for me to follow , coach ?  regards ,  grant .  - - - - - - - - - - - - - - - - - - - - - - forwarded by grant masson / hou / ect on 08 / 11 / 2000 08 : 44  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  tara rozen  08 / 11 / 2000 05 : 44 am  to : grant masson / hou / ect @ ect  cc : melanie doyle / lon / ect @ ect , jane allen / hou / ect @ ect  subject : re : houston research opportunity  grant  not sure if i told you that i work mon , wed , friday hence the delay in  responding . sorry if i forgot to tell you ! another contact name in my absence  who will be able to assist is jane allen in houston ( cc ' ed above ) .  three main reasons we try to stay away from assignments to the us for this  type / level of transfer are : 1 ) cost 2 ) equitability among other peers  3 ) difficulty in transferring employee to local package from assignment  package . however , if this is truly a 12 month assignment with no intention of  extension , we would normally do the following :  12 month assignment  london base , car allowance , and benefits and national insurance contribution  costs ( currently 12 . 2 % of all comp compared with 1 . 45 % of all comp plus 6 . 2 %  up to max of $ 76 k of employers us contribution )  housing costs in houston paid if maintaining housing in the uk ( usually up to  $ 1800 per month for single )  utility costs if maintaining a house in the uk - up to $ 100 per month  home leave - two economy trips per year is standard  transportation to / from assignment - economy class  transportation in houston - we normally give this - up to $ 40 per day for  rental car in addition to the person ' s car allowance as they normally do not  require a car in the uk and take the car allowance as a cash benefit whereas  they will require a car in houston .  shipment of goods - 500 lbs air  tax assistance  disturbance allowance - normally pay approx $ 1000  so , in terms of costs if you just compare a local us salary of manager on  $ 100 k to a local uk manager on o 68 k the us total cost is approx $ 120 k . the uk  cost is approx $ 230 k . then if you add the above costs to the assignment , you  will see an even greater increase in cost compared with the local peers , ie  approx $ 280 k compared with $ 120 k . we do have the ability to change the above  in any way as there is no set policy ; however , anjam has already brought up  other people ' s assignments and i have a feeling he will do his best to find  out what everyone else is receiving . if we make clear , though , that we are  keeping on uk payroll but not providing any assignment type allowances just  in order for him to maintain his pension contributions for the year and at  which point a decision will need to be made ( returns or moves to local us ) ,  then we may be able keep more consistency with your group while maintaining  more reasonable costs . not sure how you want to play this , though .  even if he does go on assignment rather than transfer locally , there is still  the issue of whether or not a suitable job will be here at the end of the 12  months . we will always do our best to find suitable postions but we cannot  guarantee it . if he transfers to a local us contract , enron europe ' s  responsibility of finding suitable employment is pretty much nil .  i hope this has made things clearer rather than more complicated . i honestly  feel that ajnam will absolutely not take this position if it is not on an  assignment basis . he made it pretty clear that unless he could stay on uk  payroll for 12 months , he would not transfer .  call me if you would like to discuss .  tara - x 36763  enron capital & trade resources corp .  from : grant masson 09 / 08 / 2000 20 : 48  to : tara rozen / lon / ect @ ect  cc :  subject : re : houston research opportunity  tara :  thanks for the update . it seems anjam is playing hard ball a little . my  initial reaction is to be inflexible because it is a good offer , but on  second thoughts , could you please give me an idea of what is meant by a  12 - month assignment when you have a moment ? compensation , benefits ,  responsibilities , career path implications , etc .  many thanks !  regards ,  grant .\",0\n\"Subject: registration for \"\" north american gas storage conference \"\" - june 22 ,  2001  please register wincenty j . ( vince ) kaminski , managing director , research  enron wholesale services , to the subject conference to be held in houston  on june 22 , 2001 .  if you need more information , please contact me at :  shirley crenshaw  administrative coordinator  enron research group  713 - 853 - 5290  email : shirley . crenshaw @ enron . com\",0\n\"Subject: visiting enron may 4 th  christie ,  fyi . a message i received from stanford .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 09 / 2001 11 : 20 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" susan c . hansen \"\" on 04 / 06 / 2001 06 : 14 : 10 pm  to : vince . j . kaminski @ enron . com  cc : clovell @ stanford . edu , donna lawrence , hillh @ stanford . edu , bambos @ stanford . edu  subject : visiting enron may 4 th  dear vince ,  this is great news ! donna and i are delighted that you have time to see us  on may 4 th .  i ' ll be out of the office next week . by copy of this email to my  assistant , carol lovell , i will ask her to get in touch with shirley for  scheduling as well as directions on where to meet you . we ' ll be glad to  meet with christie patrick as well .  looking forward to meeting you ,  susan  at 05 : 36 pm 4 / 6 / 01 - 0500 , you wrote :  > susan ,  >  > thank you for your message . i shall be glad to meet with you on may the  > 4 th .  > i shall ask my assistant , shirley crenshaw ( 713 ) 853 5290 , to call you to  > set up the meeting .  >  > also , for your information , we have recently set up a special unit to  > coordinate enron ' s  > relationships with the universities . the person running this unit is  > christie patrick .  > please , feel free to contact her and give my name as a reference . i shall  > coordinate the meeting  > on may the 4 th with her .  >  > vince  >  >  > additional information re christie :  >  > phone : ( 713 ) 853 - 6117  >  > email : christie _ patrick @ enron . com  >  >  >  >  >  > \"\" susan c . hansen \"\" on 04 / 03 / 2001 04 : 33 : 54 pm  >  > to : vkamins @ enron . com  > cc :  > subject : visit from stanford ?  >  >  > dear dr . kaminski ,  >  > let me briefly introduce myself , i am the director of corporate relations  > for the school of engineering at stanford university . in this role , i am  > always on the watch for ways to bring our faculty together with companies  > that have an appetite for engagement with top tier research institutions .  >  > i believe you know hill huntington , who is a senior researcher with  > stanford ' s energy modeling forum . he suggested i get in touch with you for  > some ideas about contacts at enron . i ' m in the process of planning a trip  > to texas in early may along with my colleague donna lawrence , the  > university ' s director of corporate relations . we were hoping to be able to  > include a stop at enron on our itinerary . right now it appears that friday ,  > may 4 th would work best for us but we ' re at the very beginning of our trip  > planning .  >  > the purpose of our visit would be to review the current relationship  > between enron and stanford , to give you an overview of current priorities  > in the school of engineering , and ask for your help in identifying the best  > points of contact .  >  > i look forward to hearing from you about your availability ,  >  > sincerely ,  > susan hansen  >  >  >  >  > susan c . hansen  > director , corporate relations  > school of engineering  > stanford university  > stanford , ca 94305 - 4027  > ( 650 ) 725 - 4219  susan c . hansen  director , corporate relations  school of engineering  stanford university  stanford , ca 94305 - 4027  ( 650 ) 725 - 4219\",0\n\"Subject: re : compound model for reedy creek  stinson ,  i think the gamma will flow into v @ r .  vince  stinson gibner  11 / 30 / 2000 06 : 14 pm  to : alex huang / corp / enron @ enron  cc : vince j kaminski / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect  subject : compound model for reedy creek  alex ,  paulo and i have continued to look at the model and have come up with a  couple of additional changes .  1 . the cash flow calculations need to include the overlying option strike  payment . also , paulo is trying to clarify if the cashflows should be  discounted to the valuation date or reported as notional future values .  2 . i would suggest trying changing the option valuation from a binomial tree  approach to a one - dimensional integration , perhaps using a quadrature  method . this may allow us to minimize the size of the delta discontinuities .  3 . edith is supposed to check and see if the theoretical gamma is used for  anything . if it is , we will probably need to revisit the gamma calculation  since we are not currently including any cross terms for gamma .  thanks ,  stinson\",0\n\"Subject: the expertfinder is here ! !  introducing expertfinder . the expertfinder enables you to identify critical  skills and mobilize enron ' s intellectual capital . by utilizing this powerful  intranet search engine , you can locate people within the enron community by  organization structure , skills , reporting relationships , languages , school  attended , and prior work experience .  to access expertfinder go to https : / expertfinder . enron . com on the enron  intranet . expertfinder is only as good as the data stored in it . does your  data or the data for your business unit need updating ? go to  ehronline . enron . com or home . enron . co . uk / home . asp ( london only ) to update your  data today . view changes in expertfinder tomorrow !  due to the sensitivity of this data , we are initially previewing this tool to  only managing directors & above , as well as key people in the hr community .  we want your feedback on how expertfinder can be further enhanced . try it  out and give us your thoughts by sending an email to expertfinder @ enron . com !  finally , you will have the opportunity to work with your hr leaders to review  and expand the template that is used to store the types of skills that are  relevant for your business . if you want to be able to search on certain  criteria , let us know and the template will be updated immediately .  got information ? we provide the tool , expertfinder . enron . com , you provide  the data , ehronline . enron . com .  theexpertfinderand ehronline - helping to empower you !\",0\n\"Subject: change of payroll status for elena chilkina  teresa :  please change elena chilkina ' s payroll record to reflect non - exempt instead  of exempt in order for her to be paid overtime . vince kaminski has approved  this action .  her time site is : 0428  if you need anything else , please let me know .  thanks !  shirley  3 - 5290\",0\n\"Subject: test project proposal  vince :  i did get the proposal out today , but after close of business your time .  sorry for the brief delay . you will find two attachments . the first is our  time and materials contract , which will need to be executed if you want to  do the test project . the second is an addendum to that time and materials  contract under section h , which allows for specific work statements to amend  and supersede the general consulting agreement . the general consulting  agreement ( termsandconditions . doc ) contains all the confidentiality , billing  rate , and other provisions that your contract people will probably want and  provides a general framework for doing business . the work statement  ( testproject . doc ) contains the specific provisions for our standard weeklong  onsite test project .  i hope we get the opportunity to serve you and ultimately to make  marketpoint available to you . in light of the contiguity to the holidays , i  dont think it would be realistic to try to schedule this test project before  then , probably from your perpsective as well as ours . let ' s think about  doing it the first opportunity in january if you decide to go forward if  that is ok with you .  all the best .  dale  - testproject . doc  - termsandconditions . doc\",0\n\"Subject: re :  frank ,  yes .  vince  from : frank hayden / enron @ enronxgate on 05 / 01 / 2001 07 : 51 am  to : vince j kaminski / hou / ect @ ect  cc :  subject :  vince ,  are you going to be able to make the power var meeting on thursday ?  frank\",0\n\"Subject: re : weather and energy price data  mulong ,  we shall send you natural gas henry hub prices right away .  please look at the last winter and the winter of  95 / 96 .  we shall prepare for you the electricity price  information ( cinergy , cobb and palo verde ) but  you have to approach ft ( the publishers of  megawatts daily , a newsletter that produces the price  index we recommend using ) and request the permision  to use the data . we are not allowed to distribute  this information .  please , explain that this is for academic research and that  we can produce the time series for you ,  conditional on the permission from the publishers  of megawatts daily .  vince kaminski  mulong wang on 04 / 15 / 2001 03 : 43 : 26 am  to : vkamins @ ect . enron . com  cc : richard macminn  subject : weather and energy price data  dear dr . kaminski :  i am a phd candidate under the supervision of drs . richard macminn and  patrick brockett . i am now working on my dissertation which is focused on  the weather derivatives and credit derivatives .  could you kindly please offer me some real weather data information about  the price peak or plummet because of the weather conditions ?  the past winter of 2000 was very cold nationwide , and there may be a  significant price jump for natural gas or electricity . could you  please offer me some energy price data during that time period ?  your kind assistance will be highly appreciated and have a great day !  mulong\",0\n\"Subject: address  allan ,  i am sending you my coordinates . i expect to be in london around  september the 20 th .  vince kaminski  vincent kaminski  managing director - research  enron corp .  1400 smith street  room ebl 962  houston , tx 77002 - 7361  phone : ( 713 ) 853 3848  fax : ( 713 ) 646 2503  e - mail : vkamins @ enron . com\",0\n\"Subject: carnegie mellon recruiting  i received the following email this afternoon .  - kevin k .  - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin kindall / corp / enron on 11 / 16 / 2000  05 : 22 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  sallygould on 11 / 16 / 2000 03 : 38 : 44 pm  to : kevin . kindall @ enron . com  cc :  subject : carnegie mellon recruiting  kevin ,  jean eisel asked that i connect with you about recruiting comp . finance  students .  please contact me with questions you might have about the recruiting  process or if you have some dates in mind for coming to campus .  i look forward to hearing from you .  regards ,  sally gould  recruiting coordinator  gsia - carnegie mellon university  412 - 268 - 1311  412 - 268 - 4146 ( fx )\",0\n\"Subject: re : stanford or - summer interns  ravi ,  i shall leave the decision to stinson and you .  vince  ravi thuraisingham @ enron communications on 02 / 23 / 2000 11 : 39 : 01 am  to : stinson gibner / hou / ect @ ect , vince kaminski  cc :  subject : stanford or - summer interns  hi this is one of the junior phd students that we ' ve visited in stanford .  are we interested in bringing him to enron research and or ebs research .  i ' ll have to think about his role in ebs .  ravi .  - - - - - forwarded by ravi thuraisingham / enron communications on 02 / 23 / 00 11 : 32  am - - - - -  shikhar @ stanford . edu  02 / 20 / 00 07 : 24 pm  to : ravi . thuraisingham . enron _ communications @ enron . com  cc : ravi . thuraisingham @ enron . com , ( bcc : ravi thuraisingham / enron  communications )  subject : stanford or - summer interns  hi ravi :  please find attached my resume for the summer internship program . i  apologize for the delay . we actually lost your contact info . please let me  know if you will need any additional information and / or a cover letter  besides the resume and i can send it right away .  thanks  regards ,  shikhar  - - - - - - - - - - - - - - - - - - - - - - - -  shikhar ranjan  phd student  management science & engineering  stanford university ca  ( 650 ) 497 5762  - resumeo 0 - ene . doc\",0\n\"Subject: re : houston visit  great ! i look forward to our dinner on thurs . 12 / 7 evening . hopefully your  flight will be on time . . . although having watched 60 minutes last night and  suffered from a # of delays lately , let ' s hope that the \"\" weather blame \"\"  doesn ' t get in the way . it ' s best to leave me a message @ my usual work #  on thurs . , 914 253 4187 , . . . i can easily check it in houston .  i ' ll be staying @ the westin oaks in the galleria . . . any preferred place  that i can book ( & for what time ) ? ? coming over to down town won ' t be a  problem for me either .  will be great to see you again .  soussan  914 253 4187  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : monday , november 27 , 2000 12 : 10 pm  to : faizs @ texaco . com  cc : vince . j . kaminski @ enron . com  subject : re : houston visit  soussan ,  thanks for your message . it would be great to meet you when you come to  houston .  i shall be in town on december 7 , flying back from philly in the morning .  assuming that the flight is on schedule , i shall be available for dinner .  please , let me know how i can contact you on thursday , december the 7 th ,  to confirm .  look forward to meeting you .  vince  \"\" faiz , soussan \"\" on 11 / 26 / 2000 09 : 04 : 01 pm  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc :  subject : houston visit  dear vince ,  greetings from ny and hope that all is well and you had a great  thanksgiving . i ' ll be coming to houston for 12 / 6 - 12 / 7 and hope you are  available either evening for dinner . would be great to see you again and  catch up with the latest . . . i really enjoyed my visit last april , your  insights , and the risk book you gave me .  i do hope you ' re available to meet and pls let me know which evening suits  you better .  best ,  soussan faiz  texaco inc .  914 253 4187\",0\n\"Subject: re : summer opportunity  kim ,  yes , the offer is coming . it may take a few days to process it , but you can  count on it .  vince  \"\" whitsel , kimberly \"\" on 03 / 05 / 2001 08 : 36 : 47 am  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc :  subject : summer opportunity  vince :  i did get your phone message about the summer , but i still haven ' t heard from  enron about an offer for summer employment . i do have other offers with  other energy companies that i must respond to this week . could you let me  know as soon as possible if an offer will be made to me .  sincerely ,  kimberly whitsel  wharton mba candidate 2002\",0\n\"Subject: ll visa - anshuman shrivastava  anshuman : please go ahead and complete the visa questionnaire and send the  required documents so that i can proceed with your working visa for the us .  regardless of the length of time you will be in the us , you will still need  the ll visa in order to work here .  many thanks  margaret  - - - - - - - - - - - - - - - - - - - - - - forwarded by margaret daffin / hou / ect on 01 / 24 / 2001  11 : 24 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  margaret daffin  01 / 23 / 2001 11 : 01 am  to : anshuman . srivastav @ enron . com  cc : molly magee / hou / ect @ ect , vince j kaminski / hou / ect @ ect , jane  allen / hou / ect @ ect , timothy callahan / na / enron @ enron , ranendra  sengupta / enron _ development @ enron _ development , wade  cline / enron _ development @ enron _ development , neil  mcgregor / enron _ development @ enron _ development @ ect , harsimran  subject : ll visa - anshuman shrivastava  anshuman : i have been asked to contact you regarding your possible move to  houston , texas . in order that i may begin the process of getting you an ll  immigration visa , i will need you to complete the attached visa questionnaire  and return it to me with copies of the following documents :  a copy of all pages of your passport , even if blank  copies of all previous us visas issued  an updated resume , showing months and years  copies of all diplomas and transcripts received  if you have dependent family members coming to the states with you , copies of  their passports  please send to my attention , via fedex to :  enron corp .  3 allen center , 3 ac 2026 a  333 clay street  houston , tx 77002  please call me with any questions you may have at 713 - 345 - 5083 .\",0\n\"Subject: re : srf for sandeep kohli : eva : remedy 364463  shirley ,  it ' s an it request for sandeep .  please , help .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 08 / 2001  03 : 17 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  sap security @ enron  03 / 08 / 2001 02 : 20 pm  sent by : eva tow @ enron  to : sandeep kohli / enron _ development @ enron _ development  cc : vince j kaminski / hou / ect @ ect  subject : re : srf for sandeep kohli : eva : remedy 364463  sandeep ,  your request does not look to be sap security related . please use the  erequest to obtain access to the network at itcentral . enron . com .  you may call 713 - 853 - 1411 if you need additional assistance .  thank you ,  sap security ( eva )  kohli @ mailman . enron . com on 03 / 07 / 2001 02 : 34 : 11 pm ; sandeep  on 03 / 07 / 2001 02 : 34 : 11 pm  to : website : sap security request  cc :  subject : sap security request form  the following request information was recently submitted . . .  requestor information :  business unit : ena  cost center : 107043  company code : 0413  business unit for roles : ena  sap id : po 0504918  general information :  supervisor : vince kaminski  supervisor telephone number : 713 - 853 - 3848  employee name ( last , first , m ) : kohli , sandeep  employee location : eb 1958  employee telephone number : 713 - 853 - 5188  employee email address : sandeep . kohli @ enron . com  job title : vice president  sap user type : enron employee  business reason :  i need access to the o : drive , research subdirectory .  this subdirectory has information to be shared between  different members of the research group . i need to  access this for projects we do as a team .  viewer roles :  no roles in this area were selected .  financial accounting roles :  no roles in this area were selected .  project system roles :  no roles in this area were selected .  joint venture roles :  no roles in this area were selected .  materials management / purchasing roles :  no roles in this area were selected .  centralized roles ( limited to specific personnel ) :  no roles in this area were selected .  human resources ( hr personnel only ) :  no roles in this area were selected .  human resources - timekeepers :  no roles in this area were selected .  human resources - benefits ( benefits personnel only ) :  no roles in this area were selected .  human resources - payroll ( payroll personnel only ) :  no roles in this area were selected .\",0\n\"Subject: from robert schenck , henwood  sandeep ,  i don ' t know if robert sent you this directly , so am forwarding a copy .  - - stinson  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 01 / 03 / 2001  08 : 42 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" robert schenck \"\" on 01 / 02 / 2001 11 : 13 : 23 pm  to :  cc :  subject : re : india model  stinson ,  i have attached a marked up copy of the authorisation we need from you  can we please change our phone contact to friday your time , ( saturday mine )  as i have a previous engagement which i cannot cancel  regards  robert  - authorisation . doc\",0\n\"Subject: tentative schedule of the talks at siam . doc  tentative schedule of the talks at siam  ?  ?  april 27 , 2001 ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?  april 28 , 2001  ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?  ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?  8 : 45 \u0001 ) 9 : 00 ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?  ? ? ? ? ? ? ? ? ? ? ? 9 : 00 \u0001 ) 12 : 15  welcoming remarks ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?  imaging & inverse problems in  ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?  ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? geophysics  9 : 00 \u0001 ) 10 : 30  arthur vailas \u0001 ) environmental modeling ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? kurt  marfurt  ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?  ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?  jason ching ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?  ? ? ? ? ? ? ? ? ? ? ? william symes  ?  richard kendall ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?  ? ? ? ? ? ? ? ? ? ? ? 10 : 30 \u0001 ) 10 : 45 ? coffee break  ?  10 : 30 \u0001 ) 10 : 45 ? coffee break ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? arthur weglein  ?  10 : 45 \u0001 ) 12 : 15 ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?  jacques tabanou  reservoir simulation  ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?  ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? lunch 12 : 15  stephen lyons  ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?  ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 1 : 30 \u0001 ) 3 : 00 ? ?  amr el bakry ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?  ? ? ? ? ? ? ? ? ? ? ? information technology  ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?  ? ? ? ? ? ? ? ? ? ? ?  lunch 12 : 00 noon ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?  david archer  ?  1 : 30 \u0001 ) 3 : 00 ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?  ? ? ? ? ? ? ? ? ? ? ? t . lasseter  modeling energy markets  ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?  ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 3 : 00 \u0001 ) 3 : 15 ? coffee break  pablo padilla  ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?  ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 3 : 15 \u0001 ) 5 : 00  vince kaminski ? ? ? ? ? ? ? ? ? ? ? workshop on industrial mathematics programs  ?  3 : 00 \u0001 ) 3 : 15 ? coffee break ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?  samuel rankin  ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?  3 : 45 \u0001 ) 4 : 00 ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?  ? ? ? ? ? ? ? ? ? ? ? panel  p . percell  ?  4 : 00 \u0001 ) 5 : 30  session on industrial intern programs  ?  fadil santosa  ?  panel\",0\n\"Subject: re : time  david :  i have you scheduled for 2 : 00 pm , monday , august 7 th . in vince ' s office .  regards ,  shirley  david p dupre  08 / 01 / 2000 08 : 46 am  to : shirley crenshaw / hou / ect @ ect  cc :  subject : re : time  2 pm is good for monday the 7 th .  thanks  david  shirley crenshaw  08 / 01 / 2000 08 : 44 am  to : david p dupre / hou / ect @ ect  cc :  subject : re : time  david :  vince would like to talk with you alone for now . monday , the 7 th is a pretty  good day . let me know what times you might be available .  thanks !  shirley  david p dupre  07 / 31 / 2000 05 : 26 pm  to : shirley crenshaw / hou / ect @ ect  cc :  subject : time  hi ,  i wanted to inquire as to which day ( s ) might be convenient to meet with vince  and his colleagues .  many thanks  david\",0\n\"Subject: enron mid - year 2000 performance management process  enron ' s mid - year 2000 performance management process has begun . during this  process , you will be required to select suggested reviewers who can provide  performance related feedback on you and you may also be requested to provide  feedback on fellow employees . you will need to do this by accessing the  performance management system ( pep ) at http : / / pep . enron . com .  any questions should be directed to the pep help desk at the following  numbers :  in the u . s . : 1 - 713 - 853 - 4777 , option 4  in europe : 44 - 207 - 783 - 4040 , option 4  in canada : 1 - 403 - 974 - 6724 ( canada employees only )  or e - mail your questions to : perfmgmt @ enron . com  to log on to pep , enter your user id and password provided below .  once you have logged on , you will be immediately prompted to change to a  secure password .  your user id & password are :  user id : wkamins 2910  password : welcome\",0\n\"Subject: re : a request  duane ,  i shall be traveling for the rest of the week but my colleague  dr . zimin lu will call you to talk about different  structures .  vince  ds 64 @ cyrus . andrew . cmu . edu on 03 / 13 / 2001 09 : 54 : 24 am  to : \"\" vince j kaminski \"\"  cc :  subject : re : a request  vince ,  sorry that i missed your call yesterday . i have a meeting from 2 - 3 today  ( tuesday ) , but otherwise any time in the afternoon works for me . let me  know what is convenient for you . thanks for your help .  duane  * * * * * * * *  duane seppi  graduate school of industrial administration  carnegie mellon university  pittsburgh pa 15213 - 3890  tel . ( 412 ) 268 - 2298  fax ( 412 ) 268 - 8896  email ds 64 + @ andrew . cmu . edu\",0\n\"Subject: hea sporting clays tournament - august 15 , 2000  hea ' s annual sporting clays tournament is just around the corner , august 15 ,  2000 at the american shooting centers . watch your fax for all the details ,  but prepare for the same format as last year with registration starting at  1 : 30 p . m . ( late registration after 2 : 45 earns 2 shot penalty ! ) and the action  beginning at 3 : 30 p . m . warm up with the two - man flush at 1 : 30 . reservation  and pre - payment required by august 9 th ! a \"\" private drawing \"\" for a new  shotgun will be held for reservations / payments received by august 1 , 2000 -  so make your plans now to participate .  after the competition , dinner will be again in the air conditioned pavilion  with thousands of dollars in door prizes ! non shooters pay $ 40 per person  for dinner , drinks and door prizes . luck of the draw ( randomly selected  teams ) pay $ 80 per person - 50 targets , dinner , drinks & door prizes . blast  masters ( make your own 4 shooter team ) pay $ 115 per person - 100 targets ,  dinner , drinks & door prizes .  contributions , corporate sponsors and volunteers are needed . if interested ,  please contact one of our three tournament chairs - jim cody ( 713 / 230 - 3550 ) ,  jeff eatherton ( 713 / 230 - 7286 ) or kemp jones ( 713 / 207 - 5189 ) . thanks again to  our sponsors from last year . details will be faxed out and available on our  website friday ( june 16 ) . or call eva pollard at the hea office  ( 713 / 651 - 0551 ) or jim cody for more information .  this message was sent by :  teresa knight , executive director  houston energy association ( hea )  phone : ( 713 ) 651 - 0551  fax : ( 713 ) 659 - 6424  tknight @ houstonenergy . org  if you would like to have your email address removed from our mailing list ,  please click the link below to the hea home page , where you will find a  mini - form to remove your name automatically .  http : / / www . houstonenergy . org /\",0\n\"Subject: re : prosym license  hi karolina ,  the last word i got was that grant masson was still coordinating the contract  and would be the person to talk to about getting a copy of the license . i  checked to see if i had an electronic copy somewhere , but couldn ' t find  anything . i suspect my copy was paper , and it would have been returned to  grant when i went back to portland general electric . probably didn ' t speak  to the situation in london , anyway , because the real interest in london  didn ' t arise until after i would have gotten my copy .  grant is transitioning to his new job with el paso in london , so if you have  difficulty reaching him , check with vince kaminski , or if vince is  unavailable , shriley crenshaw . shirley may know the person in enron legal or  contracts admin . who worked with grant on the henwood license .  of course , eric t . would have a copy . if you run into problems with houston ,  have eric send you a fax . ( the license is relatively short as contracts go . )  hope this helps ,  michael  > > > karolina potter / lon / ect @ enron 10 / 18 / 00 07 : 44 am > > >  michael  two weeks ago i attended hesi client symposium followed by advanced prosym  course in sacramento . during that time i had an opportunity to get to know  several people from both henwood energy services support and development  groups . one of them was eric toolson - head of client support in hesi , with  whom i discussed some issues in regards to our liaison with london based  support team . i agreed to meet up with simon crisp back in london to agree  on a form of our working relationship .  before i go to the meeting i would like to find out the following :  the text of enron ' s prosym license  what service we are entitled to based on the license  i am not sure if you are the person to ask about the above but if you could  help me by either providing the license or directing to the appropriate  person within enron it would be much appreciated .  many thanks  karolina\",0\n\"Subject: re : chapter 3 revisions  grant ,  sorry for the silence . it ' s definately not a commentary on your work - i ' ve  been travelling back and forward between sydney and london like a yo - yo and  trying to tidy up things on our end . i ' ve been working on incoporating your  material and will spend all of tomorrow on this ( hopefully ! ) so that i can  ask for the last few amendments before the w / end .  many thanks and best regards .  chris .  - - - - - original message - - - - -  from : grant masson  to : chris strickland  sent : tuesday , june 27 , 2000 8 : 54 am  subject : re : chapter 3 revisions  >  >  >  > chris :  >  > i can ' t decide if i should take your silence over the past several weeks  to mean  > that you are getting stuck into finishing up the book or you are just so  > thoroughly disgusted with our work that you would like to wash your hands  of us .  >  > i ' ve been stuck on trying to get the last figure mentioned in the chapter  into a  > format that i like . the problem is the volatility found in the  regressions is  > on the order of several hundred percent , and so when i plot the historical  data  > next to a simulated curve over the course of the year , the simulated curve  tends  > to drift up or down stupidly both in the jump diffusion and garch + jump  diffusion  > model . any suggestions would be accepted with pleasure . i wonder if i  should  > skip the figure . it seems a pity to do so however , because otherwise the  last  > section comes off as a bit of an afterthought , and i would like to present  a  > practical example . again any guidance would be appreciated .  >  > anyway , i am sending you a somewhat improved draft now ( minus only the  last  > figure ) , rather than sit on the whole thing while i stew on this bit , i  hope  > this will be useful to you . because i am leaving for holidays at the end  of the  > week , i can guarantee you that you will have a final draft before then .  >  > regards ,  > grant .  > ( see attached file : cs 260600 . doc )  >\",0\n\"Subject: re : agenda for ny mg metals visit  lloyd ,  no problem . i wanted to make sure that everybody realizes how  detailed - oriented our tasks are  and that we have to be in direct communication with our counterparties .  vince  enron capital & trade resources corp . - europe  from : lloyd fleming 07 / 14 / 2000 10 : 40 am  to : vince j kaminski / hou / ect @ ect  cc : richard sage / lon / ect @ ect , vince j kaminski / hou / ect @ ect , anjam  ahmad / lon / ect @ ect , bjorn hagelmann / hou / ect @ ect , ted murphy / hou / ect @ ect , dale  surbey / lon / ect @ ect , stinson gibner / hou / ect @ ect  subject : re : agenda for ny mg metals visit  vince ,  i certainly think anjam & tanya should visit ny , but i simply had a concern  that some of the questions being asked had already been covered by anjam /  myself and andreas but had somehow not been communicated .  my message was not intended to convey any another impression . i ' ve also now  spoken with anjam  2 . information on exotic options structures ( existing  3 . the data flow ( are we going to get data from london or ny ) .  4 a . storage of positions information at mg . how to extract the positions  info from  mg database into spreadsheets .  4 b . existing positions structure for each metal .  5 . introduction to concentrates trading business , key personnel .  best regards ,  tanya & anjam  713 853 3997\",0\n\"Subject: re : telephone interview with the enron corp . research group  dear mr . kaminski , mr . krishnarao and mr . sezgen ,  i was very pleased to have an wonderful telephone interview with you .  it ' s exciting and challenging . i like it .  i talked to my financial engineering program classmate , bob lee who  was just hired by enron recently . he told me he is very impressed by  your company and very excited to work there .  i believe i ' m a strong candidate for this position . i ' d like to share  more my background and experience with you .  i look forward to meeting you . thank you .  p . s . thank shirley for her coordinate work . when i come to houston ,  i may need her help again .  sincerely ,  jeff he\",0\n\"Subject: research tip  hello vince :  my name is fati liamidi . i work as an associate in the urm group in ees .  i have come up with an value proposition which i think could make sense for  my group and wanted to run it by one of your colleagues to see if they could  help me out in terms of pricing .  would you mind directing me toward somebody in your group who would be  willing to talk to me ? the idea involves options .  thanks you very much in advance .  fati liamidi  3 - 4563\",0\n\"Subject: hello all :  please send an email to : ibuyit @ enron . com stating that you are approver  of invoices as requested in the email below .  thanks !  shirley  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 17 / 2001 07 : 44 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : ibuyit / enron @ enronxgate on 04 / 16 / 2001 05 : 20 pm  to : dl - ibuyit payables - all @ / o = enron / ou = na / cn = recipients / cn = dl - ibuyitpayables - all @ ex @ enronxgate  cc : john gill / eu / enron @ enron , erin abdelnour / enron @ enronxgate , shelley robbins / enron @ enronxgate , sally mcadams / enron @ enronxgate , joe cuccia / enron @ enronxgate , judy knepshield / enron _ development @ enron _ development  subject :  thank you for identifying yourself as a future ibuyit payables user ! the ibuyit project team wants to make sure that your receive the information , tools , and support that you need to successfully transition to the new system on may lst .  ibuyit payables training for houston - based coders  overview sessions will be held this week , monday through thursday , at the doubletree hotel , nautile room , at 9 : 00 am and 2 : 00 pm . these one - hour sessions will provide you with a demonstration of the system and an opportunity to ask questions about the new system . no registration is necessary .  hands - on classroom training will begin next week . these sessions will provide you with the opportunity to complete real - life exercises in the system . please contact the isc registrar to register .  ibuyit payables training for field - based coders  don ' t worry ! we have not forgotten about you ! on - line materials will be available beginning next week via the integrated solution center document library at . materials will include an overview of the system and step - by - step instructions . you will receive an e - mail with links to these materials next week .  ibuyit payables approvers  we need your help to identify future ibuyit approvers . please encourage the people that approve your invoices to identify themselves as future ibuyit users by sending an email with their name , e - mail address , and whether they code or approve invoices to > . on - line materials for approvers will be available beginning next week via the integrated solution center document library at . materials will include an overview of the system and step - by - step instructions . identified approvers will receive an e - mail with links to these materials next week .  questions ? send an e - mail to > \",0\n\"Subject: re : weatherwise  thanks , brian . do contact him , please . his number in houston should be  ( 713 ) 853 - 3400 , or 6 - 853 - 3400 on the direct line .  michael  ronnie : brian ' s number is 503 - 464 - 8516  > > > brian soth 09 / 07 / 00 12 : 06 pm > > >  michael - we have a contract with weatherwise to launch the weatherproof bill  here in our service territory . the wpb is a hedge for customers and , to some  extent , a weather hedge for us . we are not buying a typical enron - like hedge  from them , however .  if you want me to talk to ronnie i ' d be glad to .  > > > michael schilmoeller 09 / 05 / 00 10 : 25 am > > >  an associate of mine from research , ronnie chahal , is working for the enron  subsidiary newpower and was wondering if pge uses weatherwise , a derivatives  provider for weather hedges among other things . ronnie is trying to get some  background on them . if any of you know whether pge uses this service , please  contact ronnie or me and let me know to whom ronnie could speak about pge ' s  experiences with weatherwise .  thanks ,  michael  - text . htm\",0\n\"Subject: summer at enron  hi vince : if you or your human resources department tries to reach me ,  please call me at new home phone ( 713 ) 647 - 7161 , or email me at  ekao @ uh . edu , or eckao @ aol . com  monday , 5 / 15 will be my moving day . otherwise i can be reached at my home  phone . regards , ed\",0\n\"Subject: this is the daily total load and weather information we discussed at  monday ' s meeting . electric generation load has been removed from these  sendout numbers .  > >  john p . wirick , jr .  ext . 4910  the information transmitted is intended only for the person  or entity to which it is addressed and may contain confidential  and / or privileged material . any review , retransmission ,  dissemination or other use of , or taking of any action in  reliance upon , this information by persons or entities other than the  intended recipient is prohibited . if you received this in error , please  contact the sender and delete the material from any computer .  - nsdata 2000 to enron . xls  - pgdata 2000 to enron . xls\",0\n\"Subject: alp presentation  vince and ken ,  dean gil whittaker of the rice business school has also confirmed ! ! pass the word on to the students ( no pressure ! ! ha ! ! )  -  i think i ' ll go ahead and put the word out to some of the active rice alums here at enron - - it ' ll be a great event !  thanks !  - - christie .  - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 04 / 11 / 2001 03 : 20 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" gilbert r . whitaker , jr . \"\" on 04 / 11 / 2001 03 : 15 : 28 pm  to : christie . patrick @ enron . com  cc :  subject : re : alp presentation  christie -  i have rearranged my schedule and will be very pleased to attend the alp  presentation and dinner at enron .  thanks .  gil  at 06 : 01 pm 4 / 10 / 01 - 0500 , you wrote :  > president gillis and dean whitaker ,  >  > enron would be honored with your presense at the presentation set forth  > below .  >  > under the guidance of vince kaminski and his team here at enron , we are  > thoroughly enjoying working with this group of bright and enthusiastic rice  > students . we hope you can join us for the culmination of their significant  > efforts .  >  > please let me know - - thanks ! !  >  > - - christie .  > - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 04 / 10 / 2001  > 05 : 52 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  >  >  > vince j kaminski  > 04 / 10 / 2001 08 : 13 am  >  > to : barrett @ rice . edu , uecker @ rice . edu , cmiller @ rice . edu ,  > lounghrid @ rice . edu , luigical @ rice . edu  > cc : vince j kaminski / hou / ect @ ect , christie patrick / hou / ect @ ect , shirley  > crenshaw / hou / ect @ ect , kenneth parkhill / na / enron @ enron  >  > subject : alp presentation  >  > on behalf of enron corp . i would like to invite you to an alp project  > presentation by a group of students  > of jesse h . jones graduate school of management , rice university .  >  > the students will present the results of a research project regarding  > electronic trading  > platforms in the energy industry .  >  > the presentation will be held on may 7 , at 4 : 00 p . m . at enron , 1400 smith .  >  > we would also like to invite you to dinner , following the presentation .  >  >  > vince kaminski  >  > vincent kaminski  > managing director - research  > enron corp .  > 1400 smith street  > room ebl 962  > houston , tx 77002 - 7361  >  > phone : ( 713 ) 853 3848  > ( 713 ) 410 5396 ( cell )  > fax : ( 713 ) 646 2503  > e - mail : vkamins @ enron . com\",0\n\"Subject: re : qian ( frank ) feng interview with the research group  hi molly :  i guess it is time to try and schedule frank ' s interview . we would like to  bring him in sometime around the first of february ( when krishna returns ) .  please contact him and see what a good time for him would be .  attached is his resume and interview request form .  - enron _ resume . doc  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 01 / 16 / 2001  09 : 42 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron north america corp .  from : molly magee 12 / 20 / 2000 05 : 35 pm  to : shirley crenshaw / hou / ect @ ect  cc :  subject : re : qian ( frank ) feng interview with the research group  you , too , shirley . we ' ll be back in touch .  molly  shirley crenshaw  12 / 20 / 2000 02 : 07 pm  to : cheryl arguijo / enron _ development @ enron _ development , molly  magee / hou / ect @ ect  cc :  subject : qian ( frank ) feng interview with the research group  hello molly and cheryl :  attached is frank ' s resume . we still have quite a bit of time as we want to  schedule this for after krishna returns on the 25 th of january .  this position would be for the research group directly , and would include  all of vince ' s direct reports .  thanks and merry christmas and happy new year ! !\",0\n\"Subject: enron university affairs  enron public affairs has launched a new initiative : enron university  affairs . the overall mission of enron university affairs is to broaden the  depth and scope of our relationships with targeted universities through  building enron brand recognition on campuses , leveraging research exchanges  between enron and the academic community , and identifying commercial  opportunities for enron . this initiative should also further enron \u0001 , s efforts  to hire and retain the world \u0001 , s most innovative employees .  leading this initiative are christie patrick , vice president , mike rosen ,  director and cindy derecskey , in conjunction with her position as public  affairs coordinator will also work with the university affairs team .  please join me in congratulating christie , mike and cindy on their new  responsibilities .\",0\n\"Subject: re : grades  pam ,  the students resent the documents .  the group members :  rakhi israni  felix feng lu  winny so  orlandotaylor  sanjay wankhade  ning zhang  grade : a  separately , i think i have sent you already :  jeffrey planck  grade : a  please , confirm this message .  vince kaminski\",0\n\"Subject: re : friday brown bag lunch on option pricing  vince ,  thanks for your support . we will continue the friday lunch series , which i  think  is very useful for us to keep up with the lastest development in various  areas .  zimin  vince j kaminski  01 / 03 / 2001 08 : 29 am  to : zimin lu / hou / ect @ ect  cc : alex huang / corp / enron @ enron , stinson gibner / hou / ect @ ect , vince j  kaminski / hou / ect @ ect  subject : friday brown bag lunch on option pricing  zimin ,  i have talked to alex about it . i don ' t think that the additional seminars  will  crowd out the brown bag lunches .  the seminars are really targeted to people who recently joined the group and  have very limited , or zero , exposure to energy markets .  for most members of the group it should be the piece of cake . brown bag  lunches  are not that time intensive , except for the speaker .  plus , we ran out of days available for lunch meetings .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 03 / 2001  08 : 27 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  alex huang @ enron  01 / 02 / 2001 12 : 15 pm  to : vince j kaminski / hou / ect @ ect  cc : stinson gibner / hou / ect @ ect  subject : friday brown bag lunch on option pricing  vince ,  this is a brief summary of last year ' s friday brown bag lunch option pricing  series .  we had about 15 lectures , given by the following people :  grant , stinston , vasant , krishna , zimin , maureen , clayton , paulo , chonawee ,  myself , and  some outside speakers . we were able to attract some outside audience as well .  overall the response is quite encouraging and we have planned  to continue it .  in light of the presently scheduled seminars on \"\" energy derivatives \"\" , it  seems our friday  schedule will be too crowded if we have seminars on \"\" energy derivatives \"\" on  two fridays  and fbblop on other fridays . what ' s your suggestion ? should we discontinue  the fbblop ?  we also have scheduled january 19 for tom halliburton ' s visitor leon lasdon  from ut austin  to talk on non - linear programming . should we cancel it ?  best ,  zimin & alex\",0\n\"Subject: dear vince :  are you available to attend our next advisory meeting on june 14 , 2001 ?  here is the draft agenda :  >  please let me know .  kate fang  215 - 898 - 1212  wharton risk management and decision processes center  - agenda - draft . doc\",0\n\"Subject: re : contact information  eric ,  thank you for your message . the only other message in my mailbox  from you is dated 6 / 11 / 2000 and contains a reference to a resume i cannot  locate . i checked the log of all the messages and could not find any other  communication from you .  please , send a message with a resume again and we shall go from there .  vince kaminski  eric hilton on 06 / 21 / 2000 08 : 37 : 58 pm  to : vince . j . kaminski @ enron . com  cc :  subject : contact information  dear mr . kaminski ,  i sent my resume to your well respected company a few weeks ago  in regards to establishing a long - lasting career with them . i never  received a response and was wondering if you knew who was in charge of  the electric power disbatching / scheduling department or know of who i  may contact to inquire this information ? i know you are a very busy  professional and i apologize for the inconvenience . thank you for your  valuable time .  warmest regards ,  eric hilton\",0\n\"Subject: re : enron / stanford program  stinson ,  how about monday , august 21 st or monday , aug . 28 ?  mondays are especially effective , because i would like to  come on saturday and work over the weekend together with  giuseppe before the meetings on monday .  stinson gibner wrote :  >  > nick ,  >  > vince asked me to coordinate the planning for you august visit to enron .  vince  > and i are free almost any date except august 14 and 15 th , but we would  like to  > try and schedule your visit at a time when you could meet with other key ebs  > executives such as kevin hannon and perhaps ken rice and john echols . if  you  > could send me a few of your preferred choices of dates , i will try to  optimize  > getting you on the calendars of these individuals .  >  > by the way , giuseppe is doing a great job and has already made a very good  > impression on everyone he has worked with . it ' s been a real pleasure  having him  > here for the summer .  i ' m very happy to hear that . he is also very excited to be there working with  your team !  thanks ,  nick\",0\n\"Subject: re : conference call on friday , march 17 th  shirley ,  11 : 00 am ca - time is fine ( 1 : 00 pm tx - time ) .  i ' ll be at 650 725 - 5525 .  my cell phone number is 650 796 - 8163 .  please call me there if plans change .  thanks ,  nick  shirley . crenshaw @ enron . com wrote :  >  > hello nick :  >  > i agree e - mail is much easier .  >  > there is a two - hour time difference between calif and texas , i . e . , 1 : 00 pm  > texas time - 11 : 00 am calif time .  >  > would tomorrow at 11 : 00 am calif time be ok with you ( 1 : 00 pm texas ) ?  > this time is fine for vince , tom gros and stinson gibner .  >  > can they call you and if so , what number ?  >  > please let me know .  >  > thanks !  >  > shirley  > 713 - 853 - 5290  >  > nick bambos on 03 / 16 / 2000 12 : 28 : 58 pm  >  > to : shirley . crenshaw @ enron . com  > cc : bambos @ stanford . stanford . edu  > subject : re : visit to enron  >  > shirley ,  >  > it ' s easier to communcate by e - mail , since i am moving from  > meeting to meeting ( but i have the laptop always with me ) .  >  > please give me a phone number that i could call tomorrow .  > what is the time difference between california and your  > location ? i think it ' s 2 hours ( ca - > tx ) - is that right ?  >  > i can do the conference call any time from 9 - 11 ca time .  > would that be ok on your side ?  >  > thanks ,  >  > nick  >  > vince . j . kaminski @ enron . com wrote :  > >  > > nick ,  > >  > > we can close the loop on our commitment to support the research projects  > > before your visit to enron .  > >  > > my assistant , shirley crenshaw , will call you to set up a conference  > call  > > with me , stinson gibner ,  > > and tom gros from enron broadband services to discuss all the isssues .  > > friday this week would work for  > > both tom and me . i think we need about 15 minutes .  > >  > > vince  > >  > > p . s . shirley , nick ' s phone number is 650 796 8163 ( cell ) , 650 - 725 - 5525  > > ( office ) .  > >  > > nick bambos on 03 / 12 / 2000 05 : 32 : 35 pm  > >  > > to : vince . j . kaminski @ enron . com , bambos @ stanford . stanford . edu  > > cc :  > > subject : visit to enron  > >  > > hello vince ,  > >  > > it was nice seeing you at stanford and many thanks for the lunch  > > we had together . i really enjoyed our discussions , both at the  > > technical level and otherwise .  > >  > > i promised to send you an e - mail regarding possible dates for  > > a visit to enron . i delayed it for a week till my schedule was  > > clearer . let ' s see if we can get a match with your schedule -  > > mine is rather terrible :  > >  > > friday , 21 st of april looks good . but april 23 rd is easter  > > sunday , so that may make it difficult for some people at enron  > > to be around . let me know if that is the case . i am willing to  > > visit then , because the week after that i am scheduled to be in  > > japan and in the previous weeks i am all committed on fridays .  > >  > > friday , 19 th of may is the next possibility , but this probably  > > is too far out . the main problem is that i am operating within  > > a window of opportunity for attracting top students for this  > > research . this window closes by the end of april , and it would be  > > important for the student support funds to be in place then , so  > > that i can make hard commitments to students and attract top  > > talent . i am already reviewing files of students who have  > > approached me for phd advising , and i am in a mode of doing \"\" soft  > > commitments to star - level students \"\" to get this research and its  > > potential on their radar screen . top students are highly sought  > > after by advisors and i want to be an early player in this  > > competition .  > >  > > does my visit to enron have to happen before we can set up the  > > project and student support at stanford ? if so , doing it before the  > > end of april is important for getting top people . if the visit can  > > happen after we get the ball rolling , then we can schedule it in may .  > > i assume there will be multiple visits both ways when the project gets  > > going . please let me know what you think .  > >  > > best regards ,  > >  > > nick\",0\n\"Subject: re : hyundai merchant marine lng draft dash  jeff ,  i don ' t think this transaction makes sense . we should not keep increasing our  exposure  in one area , given that we can deploy our capital in a more efficient way  elsewhere ,  without taking illiquid , long - term positions .  vince  from : jeffrey a shankman 08 / 29 / 2000 10 : 30 am  to : eric gonzales / lon / ect @ ect , joe gold / lon / ect @ ect , vince j  kaminski / hou / ect @ ect  cc :  subject : hyundai merchant marine lng draft dash  has any of you seen this ? ideas , comments , feedback ? thanks for the timely  response . jeff  - - - - - - - - - - - - - - - - - - - - - - forwarded by jeffrey a shankman / hou / ect on 08 / 29 / 2000  10 : 21 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : rick buy  08 / 29 / 2000 08 : 37 am  to : jeffrey a shankman / hou / ect @ ect  cc :  subject : hyundai merchant marine lng draft dash  this is a draft of the dash we are putting together . michael tribolet works  in my group and feel free to contact him if you have specific questions . i  also spoke with frevert re lng and he informed me that if project summer  happpens , lng goes with summer , if not , it is transferred to you . what  happens in the mean time is anyone ' s guess . lets discuss . rick  - - - - - - - - - - - - - - - - - - - - - - forwarded by rick buy / hou / ect on 08 / 29 / 2000 08 : 32 am  - - - - - - - - - - - - - - - - - - - - - - - - - - -  michael tribolet @ enron  08 / 28 / 2000 08 : 15 pm  to : rick buy / hou / ect @ ect  cc :  subject : hyundai merchant marine lng draft dash  here is the draft of the dash . while having a positive npv , many of the  trials run are negative due to defaults .\",0\n\"Subject: asking for advice regarding summer associate position at enron  gentlemen ,  here is a guy who is looking for a summer associate position . i looked at his  resume and think that he may be worth talking to .  pavel  - - - - - - - - - - - - - - - - - - - - - - forwarded by pavel zadorozhny / hou / ect on 01 / 12 / 2001  01 : 37 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  dmitri villevald on 01 / 03 / 2001  06 : 56 : 54 pm  to : \"\" pavel zadorozhny ( e - mail ) \"\"  cc :  subject : asking for advice regarding summer associate position at enron  dear mr . zadorozhny :  maxim philippov suggested that i write you . being a first - year mba student  at owen graduate school of management ( vanderbilt university ) with a finance  concentration , i am looking for a summer associate position at enron .  the area of my particular interest is enron ' s risk management products  ( commodity derivatives research and trading ) . graduating from novosibirsk  state university with major in physics , i am eager to apply my experience  with the use of theoretical and statistical physics techniques to the  managing of modeling processes and creating complex financial and trading  models . i strongly believe that my graduate education coupled with  undergraduate background in physics , solid work experience in finance and  proven entrepreneurial spirit will allow me to contribute to enron as a  summer associate .  i would really appreciate your advice regarding employment opportunities at  enron and would like to find out more about enron capital & trade resources  corp . i will call you within this week to follow up on my request .  thank you very much for your time .  sincerely ,  dmitri villevald  enclosure : resume  >  p . s . looking through an example of margin risk hedging at enron ' s web site ,  i think i found a small mistake there . url of this page is  ( producer  application )  the second sentence of the paragraph beginning with \"\" paradigm and enron  exchange . . . \"\"  states the following .  for example , if the actual margin is $ 1 . 25 / mmbtu for a given month , then  paradigm will pay enron $ 0 . 13 / mmbtu . alternatively , if the actual margin is  $ 2 . 00 / mmbtu , then enron will pay paradigm $ 0 . 62 / mmbtu .  i believe , if i am reading it correctly , the money should flow in the  opposite direction , namely :  for example , if the actual margin is $ 1 . 25 / mmbtu for a given month , then  enron will pay paradigm $ 0 . 13 / mmbtu . alternatively , if the actual margin is  $ 2 . 00 / mmbtu , then paradigm will pay enron $ 0 . 62 / mmbtu .  am i right ?  again , thank you very much for your time .  - resume . doc\",0\n\"Subject: re : kenneth parkhill  stinson : norma has checked the internal equity in the group , and kenneth is  fine in a senior specialist spot at that salary . i will be happy to extend  an offer to him . did you discuss anything concerning the relocation package  with kenneth ?  molly  x 34804  stinson gibner  11 / 01 / 2000 06 : 18 pm  to : molly magee / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : kenneth parkhill  molly ,  we would like to go ahead with an offer to kenneth . after talking to him  again , i think he will accept .  we would like to offer him the equivalent package to an incoming associate ,  which i understand would be $ 76 k base and a signing bonus of $ 20 k .  he position would be a specialist or senior specialist ( whichever fits the  salary ) reporting to me .  thanks for your help ,  stinson  x 34748\",0\n\"Subject: congratulations  dear vince -  i am soooo gland to see you get the promotion you so deserve . i have always  thought you should have received such honors many years ago . i ' m glad to see  enron finally did you right .  good luck and congratulations ,  julie : - )\",0\n\"Subject: ppi index short - term models  hi martina i believe that the  forecasts are accurately reflecting this . please see graphs below :  both models really need our rpi curve to be linked ( at the moment i have just  copied the 2 . 3 % number forward ) . because the auto - regressive error term is  not very important , we can run the models forward with reasonable  confidence . as i mentioned , i don ' t think we can really run this model more  than 12 months , in fact , i think we should run for 9 - 12 months and blend the  next 3 - 4 months out with the long - term model .  hope i can fix the long - term ones now with some new insight !  regards ,  anjam  x 35383  pllu : dzcv :\",0\n\"Subject: ena fileplan  vince :  fyi  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 08 / 01 / 2000  08 : 09 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  sarah bolken @ enron  08 / 01 / 2000 08 : 08 am  sent by : sara bolken @ enron  to : shirley crenshaw / hou / ect @ ect  cc :  subject : ena fileplan  we are records and information management consultants from millican &  associates , who have been hired by carolyn gilley , ena ' s records manager , to  formulate a fileplan for all of ena ' s business records . the approach we ' ve  taken to develop this fileplan is to perform a generic inventory of each ena  department ' s records . now , we generally meet with an executive ( usually a  vice president or director ) within each group to first explain this project  and seek permission to perform the inventory , and then to ask that executive  to designate someone within his / her area to serve as our working contact . the  contact is usually someone who is very familiar with their department ' s  record , and can be a manager or support staff .  there are a number of reasons we are working on this ena fileplan project .  enron , as i am sure you know , creates volumes of paper and electronic  records - - much of it has never been captured . many departments are keeping  records well beyond their legal retention requirements , taking up valuable  and expensive office space . the fileplan , once completed , will document what  is being created , who has responsibility for it , and how long it must be  maintained .  during our inventory we will attempt to capture both paper and electronic  records . we ' ll also try to identify any computer systems your area ( s ) use .  the inventory itself is non - invasive , in that we do not open or look into  file cabinets or desk drawers . it ' s simply an interview process where the  contact answers a few easy , simple questions .  please feel free to contact me if you have any questions . thank you .  sara bolken  x 35150\",0\n\"Subject: re : resume ,  thanks for the heads up , vince . i ' ll coordinate with shirley .  molly  vince j kaminski  10 / 30 / 2000 09 : 52 am  to : molly magee / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect  subject : re : resume ,  molly ,  i would like to invite this student for an interview ,  sometimes in late december when things slow down .  interviews with all my direct reports and george hopley .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 30 / 2000  09 : 58 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  10 / 24 / 2000 04 : 32 pm  to : jinbaek kim @ enron  cc : vince j kaminski / hou / ect @ ect  subject : re : resume ,  jinbaek ,  we shall invite you to an interview in houston .  vince  jinbaek kim on 10 / 23 / 2000 07 : 25 : 36 pm  to : vkamins @ enron . com  cc :  subject : resume ,  dear mr . kaminski ,  hi ,  i am a ph . d student at ieor department at u . c . berkeley .  thanks for your presentation today .  it gave me knowledge and interest in electricity markets ,  and your company .  as you mentioned in the presentation ,  i send a resume to give me opportunity to learn more  about your company .  i hope i can join the super saturday event .  jinbaek  - resume . doc\",0\n\"Subject: re : parking pass for van ngo  done .  shirley crenshaw @ ect  01 / 19 / 2000 07 : 33 am  to : louis allen @ enron  cc : vince j kaminski / hou / ect @ ect , kevin g moore / hou / ect @ ect , william  smith / corp / enron @ enron  subject : parking pass for van ngo  good morning louis :  please cancel the \"\" secom \"\" parking badge that was issued to van ngo  for parking in the 777 clay garage while she was working part time with  the research group during the holidays . the number on the card is 4280 .  i will return the badge to you this morning .  the co . # is 0011 and the rc # is 100038 .  thanks louis and have a great day !  shirley  3 - 5290\",0\n\"Subject: re : houston visit  soussan ,  let ' s meet at westin oaks next to the reception around 6 : 30 p . m . thursday .  there are several nice restaurants within a walking distance to the galleria .  i shall make a reservation ( is italian or a steakhouse ok ? ) .  you can reach me on thursday at my cell phone 713 410 5396 .  look forward to meeting you .  vince  \"\" faiz , soussan \"\" on 11 / 27 / 2000 04 : 37 : 30 pm  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc :  subject : re : houston visit  great ! i look forward to our dinner on thurs . 12 / 7 evening . hopefully your  flight will be on time . . . although having watched 60 minutes last night and  suffered from a # of delays lately , let ' s hope that the \"\" weather blame \"\"  doesn ' t get in the way . it ' s best to leave me a message @ my usual work #  on thurs . , 914 253 4187 , . . . i can easily check it in houston .  i ' ll be staying @ the westin oaks in the galleria . . . any preferred place  that i can book ( & for what time ) ? ? coming over to down town won ' t be a  problem for me either .  will be great to see you again .  soussan  914 253 4187  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : monday , november 27 , 2000 12 : 10 pm  to : faizs @ texaco . com  cc : vince . j . kaminski @ enron . com  subject : re : houston visit  soussan ,  thanks for your message . it would be great to meet you when you come to  houston .  i shall be in town on december 7 , flying back from philly in the morning .  assuming that the flight is on schedule , i shall be available for dinner .  please , let me know how i can contact you on thursday , december the 7 th ,  to confirm .  look forward to meeting you .  vince  \"\" faiz , soussan \"\" on 11 / 26 / 2000 09 : 04 : 01 pm  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc :  subject : houston visit  dear vince ,  greetings from ny and hope that all is well and you had a great  thanksgiving . i ' ll be coming to houston for 12 / 6 - 12 / 7 and hope you are  available either evening for dinner . would be great to see you again and  catch up with the latest . . . i really enjoyed my visit last april , your  insights , and the risk book you gave me .  i do hope you ' re available to meet and pls let me know which evening suits  you better .  best ,  soussan faiz  texaco inc .  914 253 4187\",0\n\"Subject: re : telephone interview with the enron corp . research group  marshall :  thanks for responding so quickly . i have scheduled the following interview :  wednesday , december 6 - 1 : 00 pm houston time . it will last approximately  1 hour . we will call you at ( 605 ) 497 - 4045 unless otherwise instructed .  if you have any questions , please feel free to contact me at 713 / 853 - 5290 .  best regards ,  shirley crenshaw  \"\" jingming ' marshall ' yan \"\" on 11 / 28 / 2000 12 : 59 : 55 pm  to : shirley . crenshaw @ enron . com  cc : vince . j . kaminski @ enron . com  subject : re : telephone interview with the enron corp . research group  ms . crenshaw ,  thank you very much for the message . i am very interested in the  opportunity to talk to personnel from the research group at enron . between  the two days you suggest , i prefer wednesday 12 / 6 . considering the  two - hour time difference between california and texas , 11 : 00 am pacific  time ( 1 : 00 pm your time ) seems to be a good slot . however , i am open most  of the day on 12 / 6 so if some other time slot is prefered on your end ,  please let me know .  thanks again . i look forward to talking to you and your  colleagues .  jingming  on tue , 28 nov 2000 shirley . crenshaw @ enron . com wrote :  > good afternoon jingming :  >  > professor wolak forwarded your resume to the research group , and  > they would like to conduct a telephone interview with you , sometime next  > week , at your convenience . the best days would be tuesday , 12 / 5 or  > wednesday , 12 / 6 .  >  > please let me know which day and what time would be best for you and  > they will call you . let me know the telephone number that you wish to be  > contacted at .  >  > the interviewers would be :  >  > vince kaminski managing director and head of research  > vasant shanbhogue vice president , research  > lance cunningham manager , research  > alex huang manager , research  >  > look forward to hearing from you .  >  > best regards ,  >  > shirley crenshaw  > administrative coordinator  > enron research group .  > 713 - 853 - 5290  >  >  >  jingming \"\" marshall \"\" yan jmyan @ leland . stanford . edu  department of economics ( 650 ) 497 - 4045 ( h )  stanford university ( 650 ) 725 - 8914 ( o )  stanford , ca 94305 358 c , economics bldg  if one seeks to act virtuously and attain it , then what is  there to repine about ? - - confucius  _ ? oo ? ? ooo ? ? t \u0015 xo - ? ? - - \u0014 ? ?\",0\n\"Subject: mike ' s laptop  vince ,  check it out !  thanks for your advice on strategic problem - solving  thanks again  - - - - - - - - - - - - - - - - - - - - - - forwarded by mike a roberts / hou / ect on 05 / 24 / 2000  07 : 56 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  henry moreno  05 / 23 / 2000 06 : 00 pm  to : mike a roberts / hou / ect @ ect  cc : grace e warren / hou / ect @ ect , kevin g moore / hou / ect @ ect , david  wile / hou / ect @ ect , chris bowling / hou / ect @ ect , john p tollefsen / hou / ect @ ect ,  bob hillier / na / enron @ enron , roberto deleon / corp / enron @ enron , mark  hall / hou / ect @ ect  subject : re : request for help  mr . roberts ,  i am glad we were able to reach a practical solution for you without going  too much against the grain of enron corp . ' s it policy and standards .  thanks to david wile and mark hall in formulating a solution that addresses  everyone ' s needs .  in summary ,  your contingency and recovery machine ( laptop ) will be imaged for win 2000  applications will be evaluated for compatibility  this will allow you to use the machine as a back - up to gather weather data  off the internet ( via independent dial - out line ) in case the normal enron  network architecture is unavailable .  i will follow - up to make sure we capture the one exception to the policy and  standard that surfaced ( local admin rights on the laptop for development  activity ) . irm / roberto deleon will facilitate with a risk acceptance request  form .  thanks again ,  henry moreno  information risk management ( irm )  from : mike a roberts 05 / 23 / 2000 10 : 29 am  to : henry moreno / hou / ect @ ect  cc : grace e warren / hou / ect @ ect , kevin g moore / hou / ect @ ect  subject : request for help  what i have :  a . i have an ibm thinkpad and a cd for windows 98  b . i got the ibm from richard weeks . i bought the windows 98 .  c . i have a valid business need to get windows 98 on the ibm  a . my job requires a totally independent backup to access data off the  internet and process same for trader ' s report  b . this must be done 7 days per week in the early am .  c . i have new equipment that doesn ' t run on nt  i . audio file generator ( nomad )  ii . video file generator ( intel )  d . i will also be loading office 2000 ( which i have )  the problem :  a . when i travel , terminal server doesn ' t work ( last time i spent several  $ hundred trying )  b . on the weekends , terminal server unacceptably slow ( requiring someone to  come in sat & sun )  c . when we move internally , things go wrong ( this monday we got switched from  100 megabytes to 10 mega bytes ) - trader ' s report not ready on time  d . i currently have no stand - alone backup for contingency purposes  what i need :  i need help putting windows 98 put on my thinkpad  ( when i reformatted and loaded , it did not recognize the modem )  there should be no security risk because this system will be totally  independent of enorn system ( just usinf the phone )  can you approve someone to help me load it up ? ? ? thank you .  mike roberts  vice president , research  x 3 - 5701\",0\n\"Subject: t . v .  please what ' s the ststus ?  - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 08 / 21 / 2000 11 : 27  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  kevin g moore  08 / 08 / 2000 11 : 08 am  to : darren p adamik / hou / ect @ ect , mike a roberts / hou / ect @ ect , william  smith / corp / enron @ enron , vince j kaminski / hou / ect @ ect  cc :  subject : t . v .  we are in need of a 9 inch t . v . set .  the set will be located betweeneb 3240 e and  eb 3240 f .  r . c . # 100038  co . # 0011  please if any more information is needed  please call me x 34710 .  also please provide e . t . a .  thanks  kevin moore\",0\n\"Subject: renshi zhang ' s resume  shirley and molly ,  vince is interested to set up an interview for renshi zhang . any day except  thursday next week  is good .  interviewers : vince , stinson , vasant , tanya , alex , bob , krishna and myself .  contact number for mr . zhang is 713 - 544 - 5989 .  zimin  - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 04 / 19 / 2001 03 : 52 pm  - - - - - - - - - - - - - - - - - - - - - - - - - - -  zimin lu  04 / 05 / 2001 09 : 49 am  - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 04 / 05 / 2001 09 : 46 am  - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  03 / 14 / 2001 10 : 06 am  to : zimin lu / hou / ect @ ect  cc :  subject : resume  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 14 / 2001  10 : 07 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  marshall brown on 03 / 09 / 2001 07 : 46 : 22 am  to : vince kaminski  cc :  subject : resume  vince ,  how are you . this candidate would be interested in any positions in  your group .  regards ,  marshall brown  vice president  robert walters associates  tel : ( 212 ) 704 - 0596  fax : ( 212 ) 704 - 4312  mailto : marshall . brown @ robertwalters . com  http : / / www . robertwalters . com  >  caution : electronic mail sent through the internet is not secure and could  be intercepted by a third party .  this email and any files transmitted with it are confidential and  intended solely for the use of the individual or entity to whom they  are addressed . if you have received this email in error please notify  the system manager .  this footnote also confirms that this email message has been swept by  mimesweeper for the presence of computer viruses .  - zhan _ ren . doc\",0\n\"Subject: resume and available dates for amy ward  fyi  vince  p . s . charlene , i am in london till wednesday . if you have any questions you  can contact stinson gibner  x 3 - 4748 .  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 21 / 2000  09 : 49 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  stinson gibner  02 / 18 / 2000 01 : 58 pm  to : vince j kaminski / hou / ect @ ect  cc : ravi thuraisingham / enron communications @ enron communications  subject : resume and available dates for amy ward  vince : here is an electronic version of amy ward ' s resume .  - - stinson  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 02 / 18 / 2000  01 : 58 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  amy ruth ward on 02 / 18 / 2000 12 : 02 : 22 pm  to : stinson gibner  cc :  subject : re : thanks for coming to houston  stinson ,  i am pleased to hear your hr department is putting together an offer for  summer employment . i enjoyed everyone i interviewed with while in houston  and appreciated you taking the time to put together this day .  as requested , i am attaching an electronic version of my resume . ( note it  is a slightly more updated one then the one i gave you earlier . ) it is in  microsoft word format .  my dates of availability are wed . , july 5 through fri . , september 15 ( 10  1 / 2 weeks ) .  sincerely ,  amy ward  - resume . doc\",0\n\"Subject: forecasting project  per our monday meeting , the time line for completion of the \"\" phase i \"\"  forecasting project ( hourly system load & next day load ) is as follows :  aug . 15 - sept . 15 ( data collection )  sept . 15 - oct . 15 ( modeling )  oct . 15 - nov . 15 ( system development and testing )  if any questions arise between now and the end of august , contact barbara  dillard , but as of sept . 1 , i will be the chicago lead for this and other  forecasting projects and will be available to handle any questions or issues .  best regards ,  mark mixon\",0\n\"Subject: re : congratulations  thanks .  vince j kaminski @ ect  01 / 11 / 2000 08 : 01 am  to : richard shapiro / hou / ees @ ees  cc :  subject : congratulations  rick ,  i have just looked at the memo regarding promotions .  congratulations - well deserved .  vince\",0\n\"Subject: color copier  thanks for your immediate response .  the problem seems to be the cost .  iain , i have the smallest group but we are  willing to pay what it takes for the copier .  on the other hand there may be other groups  that are larger and may not need the copier  as much and are not willing to pay the cost .  seems to me , the copier is a necessity for the floor ,  it would save not only time , but money also  in the long haul .  we have updated every possibility on the  32 nd floor and this copier is needed for quick  presentations , meetings , etc . and allows everyone  not to depend on color printers as much !  ( gives us choices )  please after today , once we get together regarding  this matter , i will let ina continue with the process ,  whereby , i can continue focusing on what is best  for my group as well as the floor .  thanks  kevin moore\",0\n\"Subject: re : internship  shane :  sorry , i have been on vacation . i just returned today .  could you please send me a copy of your resume by email ?  i have tentatively scheduled the following interviews :  8 : 30 am vince kaminski  9 : 00 am p . v . krishnarao  9 : 30 am stinson gibner  10 : 00 am tanya tamarchenko  10 : 30 am paulo issler  11 : 00 am zimin lu  11 : 30 am human resources  you should be free to return to baton rouge by 1 : 00 pm .  if this schedule is not ok , please let me know .  thanks !  regards ,  shirley crenshaw  adminitrative coordinator  enron corp . research  713 / 853 - 5290  email : shirley . crenshaw @ enron . com  \"\" shane green \"\" on 07 / 06 / 2000 10 : 05 : 13 am  to :  cc :  subject : internship  ms . crenshaw ,  ?  i just wanted to touch base and see if you had any information concerning my  visit to enron on monday . ? i will be in my office at lsu for the rest of ? the  day with a couple exceptions . ? i teach corporate finance from 2 : 30 - 3 : 30 , ? and  will ? go to lunch at around 1 . ? you can contact me here at ( 225 ) 388 - 6335 . ?  if this is not convenient , you can send me an e - mail , or leave a message on  my home phone at ( 225 ) 744 - 3201 , and i can get in ? touch with you tomorrow .  ?  thanks ,  shane green\",0\n\"Subject: invoice for ordered papers  shirley ,  the invoice for papers i have ordered on - line .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 11 / 2000  01 : 22 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  nber working paper catalog on 04 / 11 / 2000 10 : 09 : 59 am  to : vkamins @ enron . com  cc :  subject : invoice for ordered papers  you have ordered the following papers :  - wp w 7613  foundations of technical analysis : computational algorithms , statistical  inference , and empirical implementation  - wp w 6250  pricing and hedging derivative securities in incomplete markets : an  e - aritrage model  the total cost ( excluding shipping ) is :  $ us 10  shipping address :  if you ordered papers for electronic delivery and experienced problems  downloading them , browse the following url ( s ) to download your paper  orders . the url ( s ) are valid for 7 days .  if you receive duplicate bills , please send a note to .\",0\n\"Subject: electricity summit at u . c . berkeley  vince ,  i just received this message . what do you think ? should i register to attend  it ?  sevil ,  - - - - - - - - - - - - - - - - - - - - - - forwarded by sevil yaman / corp / enron on 10 / 24 / 2000  02 : 20 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  pwpens on 10 / 24 / 2000 12 : 16 : 14 pm  to : ( recipient list suppressed )  cc :  subject : electricity summit at u . c . berkeley  register now to attend the  electricity summit at u . c . berkeley , november 13 , 2000  u . c . berkeley ' s goldman school of public policy , with additional support  from the u . c . berkeley ' s competition policy center and the u . c . energy  institute , will host a meeting of industry representatives , policy makers ,  consumers representatives , legislators and researchers to discuss the  electricity restructuring experience and potential solutions to the  difficulties that california and other governments have encountered . the  summit will run from 12 : 30 - 6 pm with two roundtable discussions that will  include a wide variety of viewpoints .  for registration information and further details , go to \",0\n\"Subject: telephone interview with enron corp . research  good morning amyn :  the enron corp . research group would like to conduct a telephone  interview with you at your convenience . this will be as a \"\" summer  intern \"\" with the research group .  please let me know your availability on monday , may lst or thursday ;  may 4 th .  the persons who will be interviewing you are :  vince kaminski managing director  stinson gibner vice president  krishna krishnarao director  osman sezgen manager  i look forward to hearing from you .  thank you and have a great day  shirley crenshaw  administrative coordinator  713 - 852 - 5290\",0\n\"Subject: installation of new programs  phillip ,  how can i install new programs on my laptop , without  the administrator ' s privileges ?  one example : when i travel i use aol to get access to my mail  and to communicate with the office . windows 2000 does not allow  me to install it .  also , i have my private statistical software  i often use when i work at night during business trips .  i would like to load it as well .  vince\",0\n\"Subject: your confirmation is needed  please reply to this email message to confirm your subscription to  enl - dailyupdate - txt .  your email address has been entered for a subscription to the  enl - dailyupdate - txt mailing list . however , your new subscription requires  a confirmation that you received this email message and want  to join this mailing list .  if you do not want to join , do nothing . you will be automatically  removed .  to confirm that you do want to join , simply reply to this message .  make sure that your message is addressed to  to unsubscribe immediately , you send an email message to \",0\n\"Subject: cera conference call - tuesday , january 25 , 2000  kari :  please enroll vince kaminski , enron corp . for the conference call to be  held on tuesday , january 25 at 4 : 00 pm eastern time .  information requested :  name : vince kaminski  company : enron corp .  telephone # : 713 - 853 - 3848  he will call in 10 - 15 minutes prior to the conference call .  please confirm his registration .  thanks and have a great day !  shirley crenshaw  713 - 853 - 5290\",0\n\"Subject: bob lee ' s bio  vince ,  here ' s bob ' s bio . it ' s pretty short , but i expanded his picture a bit to  compensate . i also had to convert it from third person to first , so it ' s a  little \"\" i \"\" heavy .  sam  - - - - - - - - - - - - - - - - - - - -  i joined the pricing and evaluation technology group in june , 2000 . i \u0001 , m  currently working on pricing models for commodity options and time series  analysis to relate commodity and equity prices .  i have completed an m . s . in financial engineering at the university of  michigan in april , 2000 and have also been an independent organization  development consultant for 15 years with extensive work in electric and gas  utilities . prior to that , i managed a methods development group for a  nuclear reactor manufacturer for 16 years .  from a few years back , i \u0001 , ve earned a bs ( aero . eng . ) from rensselaer  polytechnic institute , an ms ( nuclear science ) from vanderbilt university and  a ph . d . ( nuclear engineering ) from rensselaer .  when away from enron , my outside interests include yoga and grandchildren .  _ _ _ _ _ _ _ _ _ _ _\",0\n\"Subject: re : london contact number  hi anita ,  how are you ? i arrived yesterday late morning from the london gatwick  airport . due to rush hour traffic , etc . it took a while to get into the city  to the hotel .  also , due to may day ( may lst ) protests / riots , etc . , the hotel management  strongly recommended that we remain in the hotel .  however , i am in the office today . i can be reached via email or via  telephone at 44 ( 0 ) 207 783 5647 .  take care ,  iris  - - - - - original message - - - - -  from : dupont , anita  sent : tuesday , may 01 , 2001 5 : 23 pm  to : mmumford @ enron . com  cc : mack , iris ; crenshaw , shirley  subject : i . m . mack 30 apr - 15 may * * plse review for accuracy * * agent ce / ce  booking ref x 7 w 882 mack / iris eb 1972 enron corp  importance : high  see iris ' s itinerary below . i thought her initial plan was to land this  morning and come in to enron house in early afternoon . see itinerary for  phone number of hotel . let me know if i can help in any  other way . thanks . anita  service date from to depart  arrive  continental airlines 30 apr houston tx london gatwick 350 p  655 a  co 34 j mon g . bush iah gatwick 01 may  terminal dom terminal s  dinner / snack non stop  reservation confirmed 9 : 05 duration  vegetarian meal , non - dairy confirmed  aircraft : boeing 777 - 200 / 300  hotel 30 apr athenaeum hotel and apartments  11 may 116 piccadilly  london england , wlv obj  united kingdom  telephone : 44 - ( 0 ) - 207 - 499 - 3464  fax : 44 - ( 0 ) - 207 - 493 - 1860  confirmation : claire 25 apr  rate : rac gbp 270 . 00 per night  guarantee given  prereg actual arr lmay 655 am apartment  to avoid billing cancel by 6 pm 24 hrs prior  continental airlines 11 may london gatwick houston tx 1200 n  415 p  co 5 j fri gatwick g . bush iah  terminal s terminal dom  lunch / snack non stop  reservation confirmed 10 : 15 duration  vegetarian meal , non - dairy confirmed  aircraft : boeing 777 - 200 / 300\",0\n\"Subject: re : the garp 2001 convention  andreas ,  i shall be glad to serve as the chairman .  i am currently located in enron n . a .  it stands for enron north america . in enron the orgchart changes every  3 months .  vince  \"\" andreas simou \"\" on 09 / 20 / 2000 06 : 38 : 09 am  to :  cc :  subject : the garp 2001 convention  dear vince  ?  i would like to invite you to chair the stream on energy and corporate risk  management at the garp convention . is this something that would be of  interest to you ?  ?  also , can i please confirm , because i am having a few it problems at  present , that the following title is correct for you :  vince kaminski , managing director , research , enron corp .  i look forward to your response in due course .  ?  kind regards  ?  andreas  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  andreas simou  garp 2001 - conference producer  tel ? + 44 ( 0 ) 20 7626 9301  fax + 44 ( 0 ) 20 7626 9900\",0\n\"Subject: re : test  thanks , vince . we have received both her application and her signed offer  letter , so we are moving in the right direction .  molly  - - - - - original message - - - - -  from : kaminski , vince  sent : thursday , april 19 , 2001 10 : 44 am  to : magee , molly  cc : crenshaw , shirley  subject : re : test  molly  fyi  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 19 / 2001  10 : 43 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  edward kao on 04 / 18 / 2001 08 : 30 : 49 pm  to : vkamins @ ect . enron . com  cc :  subject : re : test  vince :  candice ' s contact information at mount holyoke is as follows :  phone : ( 413 ) 493 - 5092  email : cgkao @ mtholyoke . edu  address : 1453 blanchard campus center  mount holyoke college  south hadley , ma 01075 - 6002  ed  ps : i hope ron singer has given you the needed info . please feel free to  contact me if i can be of any help with regard to your colleague ' s inquiry  about pursuing doctoral study at uh .\",0\n\"Subject: re : visit to enron  thanks . i will be flying back from tokyo on that day , so unfortunately i ' ll  miss bambos . if my schedule changes , i ' ll let you know .  all the best ,  tom  vince j kaminski @ ect  05 / 01 / 00 09 : 05 am  to : thomas d gros / hou / ect @ ect , stinson gibner / hou / ect @ ect , ravi  thuraisingham / enron communications @ enron communications  cc : vince j kaminski / hou / ect @ ect  subject : re : visit to enron  fyi  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 05 / 01 / 2000  09 : 06 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  nick bambos on 05 / 01 / 2000 04 : 26 : 30 am  to : vince . j . kaminski @ enron . com  cc :  subject : re : visit to enron  vince ,  how are you ? hope all is well .  is there any chance we can schedule my visit to enron on friday , may 19 ,  or friday , may 26 ?  by the end of april i was able to attract a top new student to work on the  project .  the other one for the coming year will be giuseppe . by spending the summer  at enron , he will be in a position to bring the new one up to speed and  create an intellectual team here at stanford to look at these problems .  i must move ahead soon to put the project in place and get the work going .  talk to you soon ,  nick  vince . j . kaminski @ enron . com wrote :  >  > nick ,  >  > we can close the loop on our commitment to support the research projects  > before your visit to enron .  >  > my assistant , shirley crenshaw , will call you to set up a conference call  > with me , stinson gibner ,  > and tom gros from enron broadband services to discuss all the isssues .  > friday this week would work for  > both tom and me . i think we need about 15 minutes .  >  > vince  >  > p . s . shirley , nick ' s phone number is 650 796 8163 ( cell ) , 650 - 725 - 5525  > ( office ) .  >  > nick bambos on 03 / 12 / 2000 05 : 32 : 35 pm  >  > to : vince . j . kaminski @ enron . com , bambos @ stanford . stanford . edu  > cc :  > subject : visit to enron  >  > hello vince ,  >  > it was nice seeing you at stanford and many thanks for the lunch  > we had together . i really enjoyed our discussions , both at the  > technical level and otherwise .  >  > i promised to send you an e - mail regarding possible dates for  > a visit to enron . i delayed it for a week till my schedule was  > clearer . let ' s see if we can get a match with your schedule -  > mine is rather terrible :  >  > friday , 21 st of april looks good . but april 23 rd is easter  > sunday , so that may make it difficult for some people at enron  > to be around . let me know if that is the case . i am willing to  > visit then , because the week after that i am scheduled to be in  > japan and in the previous weeks i am all committed on fridays .  >  > friday , 19 th of may is the next possibility , but this probably  > is too far out . the main problem is that i am operating within  > a window of opportunity for attracting top students for this  > research . this window closes by the end of april , and it would be  > important for the student support funds to be in place then , so  > that i can make hard commitments to students and attract top  > talent . i am already reviewing files of students who have  > approached me for phd advising , and i am in a mode of doing \"\" soft  > commitments to star - level students \"\" to get this research and its  > potential on their radar screen . top students are highly sought  > after by advisors and i want to be an early player in this  > competition .  >  > does my visit to enron have to happen before we can set up the  > project and student support at stanford ? if so , doing it before the  > end of april is important for getting top people . if the visit can  > happen after we get the ball rolling , then we can schedule it in may .  > i assume there will be multiple visits both ways when the project gets  > going . please let me know what you think .  >  > best regards ,  >  > nick\",0\n\"Subject: re : presentation  thanks !  you are probably familar with the format . . . 15 - 20 minutes for the  presentation  followed by 20 - 30 minutes for q & a .  see you at 7 : 30 am thursday in the lobby of the sonesta for breakfast !  ghw  \"\" vince j kaminski \"\" on 03 / 31 / 2000 12 : 48 : 58 pm  to : george wayne @ fpl  cc : \"\" vince j kaminski \"\" , vkaminski @ aol . com  subject : presentation  george ,  this is the presentation i promised .  vince  ( see attached file : fplo 400 . ppt )  - fplo 400 . ppt\",0\n\"Subject: from the enron india newsdesk - may 5 - 7 newsclips  stinson / vince ,  some news articles . do read the first one , and the second last one .  regards ,  sandeep .  - - - - - - - - - - - - - - - - - - - - - - forwarded by sandeep kohli / enron _ development on  05 / 07 / 2001 09 : 10 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  nikita varma  05 / 07 / 2001 07 : 42 am  to : nikita varma / enron _ development @ enron _ development  cc : ( bcc : sandeep kohli / enron _ development )  subject : from the enron india newsdesk - may 5 - 7 newsclips  the economic times , may 7 , 2001  enron ceo casts vote to save dpc , tina edwin & soma banerjee  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  the economic times , may 7 , 2001  maha sore over delay in naming godbole nominee  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  the times of india , 7 may , 2001  maharashtra ' unhappy ' with delay in naming godbole nominee  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  business standard , monday , 7 may 2001  reliance allowed to hawk power from patalganga to third parties  arijit de , s ravindran & renni abraham in mumbai  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  the economic times , may 7 , 2001  no need of patalganga , bhadravati power : mseb  also appeared in the following newspaper :  the times of india , may 7 , 2001  ' no need of patalganga , bhadravati power '  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  business standard , may 7 , 2001  global bankers ask govt to honour dpc obligations  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  business standard  saturday , 5 may , 2001 ,  ge may pull out as dpc supplier , s ravindran in mumbai  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  hindu businessline , may 5 , 2001  agenda for fresh talks with enron chalked out  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  the economic times , may 6 , 2001  http : / / 216 . 34 . 146 . 167 : 8000 / servlet / form  godbole panel meets sans dabhol representation  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  the economic times , may 5 , 2001  http : / / 216 . 34 . 146 . 167 : 8000 / servlet / form  ntpc not to buy power from enron : govt  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  the times of india , may 7 , 2001  mseb recovers rs 3 . 06 cr arrears in one day  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  the economic times , may 7 , 2001  enron ceo casts vote to save dpc , tina edwin & soma banerjee  amul ' s creative directors may have gone back to ad - libbing ' enron or  enr - off ' , but for the big kahuna at the american utility , dabhol is still a  worthwhile project . while the entire enron board had almost decided to call  it quits and proceed with the termination of the $ 2 . 9 - billion power project  at dabhol , the veto exercised by the company chairman kenneth lay has saved  the project \u0001 * - at least for the timebeing . sources said the meeting held on  tuesday at the energy major ' s headquarters in houston could have sounded the  death knell for the only big foreign investment in the indian power sector .  although the future of the project is still pretty uncertain with the lenders  unwilling to continue disbursements unless payment obligations are not  honoured and contractual obligations left unfulfilled , the veto exercised at  this juncture by the chairman of the parent company has come as a big boost  to the indian venture . company sources said : \"\" we do not know what went on  there but it is true that as of now we are not pulling out . \"\" with the  engineering procurement and construction contractors ge and equipment  suppliers bechtel too in a cautious mode mode , dpc was finding it even more  difficult to continue the construction of the project as per the schedules .  sources said the stand taken by the rest of the directors on the board would  be in view of the backlash that the company would have to face from its  shareholders if the project actually flopped . enron had similar bitter  experiences in pakistan and it was difficult for the parent company to then  justify such investments to the shareholders .  enron , which had planned a major investments in india ' s infrastructure  sectors such as oil and gas , lng , gas transportation , telecom and broadband  network , has already pulled out most of their personnel from some of these  operations . the company ' s mous with various other majors like indian oil  corporation , too , is in a limbo and the us major ' s stake in the oil and gas  venture is up for grabs . however , even though lay is still hoping to find a  solution to the controversy back home , both dpc and mseb are still to get  down to negotiations .  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  the economic times , may 7 , 2001  maha sore over delay in naming godbole nominee  the maharashtra government has expressed ' unhappiness ' over the centre ' s  delay in appointing its nominee on the nine - member godbole committee to  renegotiate the power purchase agreement signed between enron - promoted  dabhol power company and state electricity board . \"\" the committee , which is  to hold discussions with enron officials from houston on may 11 , has only a  month ' s time for renegotiations and with dpc ' s termination notice threat  hanging on our head , time is actually running out . yet there is no official  to represent the union government , \"\" said a senior state government official .  \"\" there are media reports that the solicitor - general harish salve would be  appointed , but we are yet to hear anything from their side , \"\" he said .  the official said the state expected centre to announce its representative  before may 11 , as it would appreciate his crucial presence in the first  session of discussions with enron officials , lenders and gas suppliers .  sources in the mantralaya added the government had also been unhappy over  the centre ' s \"\" rigid stand \"\" on not allowing state - owned national thermal power  corporation to buy the excess capacity of dpc ' s total 2 , 184 - mw project .  \"\" let ntpc and power trading corporation of india come together and sell dpc ' s  surlpus power . we have already mooted this suggestion , but a favourable reply  is yet to come from the union power ministry , \"\" the official said .  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  the times of india , 7 may , 2001  maharashtra ' unhappy ' with delay in naming godbole nominee  the maharashtra government has expressed ' unhappiness ' over the centre ' s  delay in appointing its nominee on the nine - member godbole committee to  renegotiate the power purchase agreement ( ppa ) signed between enron promoted  dabhol power company ( dpc ) and the maharashtra state electricity board  ( mseb ) . \"\" the committee , which is to hold discussions with enron officials  from houston on may 11 , has only a month ' s time for renegotiations and with  dpc ' s termination notice threat hanging on our head , time is actually running  out . yet there is no official to represent the union government , \"\" a senior  state government official said here on sunday . \"\" there are media reports that  solicitor general harish salve would be appointed , but we are yet to hear  anything from their side , \"\" he said .  the official said that the state expected the centre to announce their  representative before may 11 , as it would appreciate his crucial presence in  the first session of discussions with enron officials , lenders and gas  suppliers . sources in the mantralaya added that the government had also been  unhappy over the centre ' s rigid stand on not allowing state - owned national  thermal power corporation ( ntpc ) to buy the excess capacity of dpc ' s total  2 , 184 mw project . \"\" let ntpc and power trading corporation of india ( ptc ) come  together and sell dpc ' s surlpus power . we have already mooted this  suggestion , but a favourable reply is yet to come from the union power  ministry , \"\" the official said . the official said that the centre , which was  also responsible for dpc project as it has provided counter guarantee to  enron india , should form a special purpose vehicle for sale of the excess  power to other states . the state government ' s reaction comes in wake of union  power minister suresh prabhu ' s discussion with chief minister vilasrao  deshmukh in delhi few days ago . it was learnt that prabhu told deshmukh  \"\" there is no question of ntpc buying power from the project since long term  ppas have been signed by ntpc with the buying states \"\" .  deshmukh had suggested that the central power utility should sell excess  power over and above the 300 - 400 mw needed for the state from the dpc ' s 740  mw phase - i and soon to be commissioned phase - ii of 1 , 444 mw , to other needy  states . considering the high cost of power generated from dpc , which during  the recent months has hovered around rs 7 per unit as against an average cost  of rs 2 . 30 - 2 . 80 a unit from central and state utilities , there would be few  takers for the power from dabhol , the power minister reportedly said .  \"\" deficit states will buy dpc power only when the cost of power is brought  down , \"\" he said , adding power ministry would facilitate wheelng of this power  to the buyers .  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  business standard , monday , 7 may 2001  reliance allowed to hawk power from patalganga to third parties  arijit de , s ravindran & renni abraham in mumbai  in an unusual departure from normal practice , the maharashtra government has  allowed the reliance group to sell power generated by its 447 - mw patalganga  power project directly to third parties if the maharashtra state  electricity board ( mseb ) does not lift power . the project \u0001 , s power purchase  agreement ( ppa ) has a clause to this effect . the state government \u0001 , s  permission to reliance to hawk power to third parties has to be seen in the  context of its dithering on forwarding to the centre the dabhol power  company \u0001 , s bid for mega power status so that it could sell power to third  parties .  dpc sources told business standard several weeks ago that the company \u0001 , s  application had been pending with the chief minister \u0001 , s office for months .  only now has the state government authorised the godbole committee to  negotiate with dpc on third party sales outside the state . the dpc project  is facing the threat of closure following mseb \u0001 , s inability to buy power from  it , thanks to the board \u0001 , s weak financial position . not only can the  reliance group sell power to third parties within maharashtra , but it can  sell power to utilities outside the state . the ppa does not expressly bar it  from doing so . nor does it specify the category of customers to whom power  can be sold . so , in effect , this suggests that the group could sell power to  industrial and commercial customers in maharashtra and emerge as a rival to  the mseb . the state electricity board derives over 80 per cent of its revenue  from such consumers .  apart from captive power plants , independent power producers in india are  allowed to sell power only to state electricity boards . they can sell power  outside the state only if they qualify for mega power project status . with  its 447 - mw capacity , the patalganga project is not eligible for such status  because mega power rojects are supposed to have a minimum capacity of 1 , 000  mw . speaking on the sidelines of a press conference last week , reliance  industries managing director anil ambani told business standard : a provision  in third parties . ambani was answering a question on whether the mseb \u0001 , s weak  financials and inability to offer escrow cover to the project as emphasised  in the godbole committee report set up to defuse the dabhol crisis would  derail the patalganga project .  the ppa does not have any express restriction as to third party sale outside  the state , a reliance spokesperson confirmed on friday in a faxed response  to questions . a senior mseb official explained that the state government  cleared private power projects some years ago on the basis of the  unrealistically high demand projections contained in a report by a former  mseb official . subsequently , it was realised that the state would be stuck  with excess power . so the reliance group was permitted to sell power to third  parties , he said . the patalganga project along with the ispat group \u0001 , s 1 , 082  mw bhadravati project has been put on hold till the godbole committee submits  its second  report .  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  the economic times , may 7 , 2001  no need of patalganga , bhadravati power : mseb  the axe seems to have finally fallen on the much - delayed reliance  industries - promoted patalganga and ispat industries ' bhadravati power  projects in maharashtra as the state electricity board has firmly told the  government that \"\" there is no need of these projects nor their power \"\" . the  loss - making board has communicated to the government that mseb had \"\" no  interest \"\" in patalganga and bhadravati , as it did not have escrow - able  capacity and also that industrial demand for power had slowed down  tremendously in maharashtra , state government sources said here on sunday .  \"\" in last november itself , mseb had sent an official intimation to the state  government informing its decision in favour of cancellation of the two  projects on several grounds - - including they being unviable and  unaffordable , \"\" sources said . \"\" reliance ' s project is no different from that of  dpc ' s . patalganga is also naphtha - based and its ppa is on similar lines . . .  after the enron experience , mseb cannot even dream of another gas - based  power plant in the state , \"\" a senior mseb official said . he said mseb has  already asked the state government not to provide escrow to both the 447 - mw  patalganga and the 1 , 084 - mw coal - based bhadravati , \"\" as the us energy major  has almost squeezed us of all over finances \"\" . when contacted , mseb chairman  vinay bansal said : \"\" reliance and ispat projects have been put on hold as per  the godbole committee ' s recommendations \"\" , but expressed inability to give  further details .  currently , bhadravati and patalganga projects have been put on hold as per  godbole committee report , which was set up to review the dpc - mseb ppa and  energy scenario in maharashtra . \"\" can you go ahead with the project without an  escrow cover ? \"\" the committee was believed to have asked ispat and reliance  representatives , to which the reply had been negative , sources added .  sources said , as of now , both the projects have not been able to achieve  financial closure as leading financial institutions were not willing to  fund the projects which do not have a \"\" guaranteed payment \"\" mechanism from  mseb , which , incidentally it has promised to dpc . \"\" all the three were cleared  as ' fast - track ' projects , but other than enron , reliance and ispat have been  caught in a quagmire , especially bhadravati , which has been hanging afire  since last nine years , \"\" they added .  moreover , the mseb official opined that given the current situation , if dpc  calls it quits from india , bhadravati was a safer bet than reliance ' s  patalganga . patalganga ' s power would be mere 50 paise less than that of dpc ' s  that ranges anywhere around approximately rs 4 . 50 per unit to as high as rs  7 , while bhadravati ' s cost could be around rs 3 . 80 to rs 4 per unit , he  informed . mseb ' s installed capacity ended on march 31 , 2001 , wasl 4 , 000 mw and  it has generated 45 , 000 million units with transmission and distribution  losses as high as 39 per cent . ( pti )  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  business standard , may 7 , 2001  global bankers ask govt to honour dpc obligations  tamal bandyopadhyay , surajeet dasgupta & santosh tiwary in mumbai / newdelhi  global arrangers for the dabhol power company have mounted fresh pressure on  the finance ministry to honour the union government \u0001 , s counter - guarantee and  have also set strict conditions for reconsidering the termination of the  power purchase agreement ( ppa ) between the dpc and the maharashtra state  electricity board ( mseb ) . in a related development , the dpc has sent a note  to all lenders saying they would have to bear the consequences of the turn  of events as they have prevented the dpc from serving the ppa termination  notice last month .  the lenders . in their turn , sent a statement - - prepared by the new  york - based legal firm white & case - - defending their stance saying they are  working in the best interest of the project . the lenders are expected to  meet in london over the next fortnight to take stock of the situation . the  deadline for resolving the issues are drawing to a close as 10 days of the  three - week reprieve have passed . at the dpc board meeting in london on may  25 , the lenders had managed to stall the issuance of the termination  notice and got three weeks \u0001 , time for themselves to convince the centre as  well as the maharashtra government to resolve the impasse on the  controversial project . in a letter to finance secretary ajit kumar dated  april 30 , the global arrangers said the government must own up its  responsibility and meet its obligations without further delay . among the  stiff conditions , set by the arrangers , are the demand that the central  government ensure payment of all the pending bills of mseb for december  2000 , january 2001 , february 2001 and march 2001 which remain unpaid  without any protest or reservation by may 7 ( monday ) .  any payment previously made under \u0001 & protest \u0001 8 should be made free and clear of  such protest or any other reservation , and the center should ensure timely  payment of future bills by mseb , they said . meanwhile , sources said that the  finance secretary was expected to meet the international lenders to the  dabhol projects in london stand on the issue . the lenders \u0001 , list of demands  also include asking mseb to take steps required under the existing  contracts to activate the escrow arrangements put in place at the time of  financial close of phase ii of the project by may 7 .  they have demanded that the union government and the maharashtra government  should take all required actions to ensure that no government agency will  take any step to impede the operation of phase i or the construction and  operation of phase ii without due cause . the lenders have also asked them to  ensure that the relevant customs authorities permit import of all goods and  equipment required for the project by may 21 . csfb , anz export finance ,  citi , bank of america and abn amro are the global arrangers for both phase i  as well as phase ii of the project .  the state bank of india , which is also a global arranger for phase ii , did  not sign the letter . \"\" ten days have passed since the lenders bought three  weeks time from the company delaying its declaration of the termination of  the ppa . since then , nothing has moved at the material level barring mseb ' s  payment of the january bill to the tune of rs 134 crore under protest , \"\" said  a source among the global arrangers . come forward to meet its obligations  the lenders are planning to meet around mid - may in london and this time  they will be left with no choice but to give the go - ahead to the company to  terminate the ppa unless the finance ministry comes forward to settle the  issue , the source added . the lenders are , however , not ready to take the  blame for any delay in the termination of ppa as implied by the company . the  white & case statement said the lenders are concerned about the fate of the  project and they are exploring all intermediate steps before choosing the  last option - - termination of ppa .  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  business standard , saturday , 5 may , 2001  ge may pull out as dpc supplier , s ravindran in mumbai  after us - based bechtel , it is now the turn of general electric to review its  participation as equipment supplier to the controversial 2 , 184 - mw power  project in maharashtra , being set up by the dabhol power company . bechtel is  the epc contractor to the project while ge has supplied the equipment ,  primarily turbines . general electric , like bechtel , also holds 10 per cent in  dabhol power company ( dpc ) . and both bechtel and general electric are worried  about future payments from dpc . sources familiar with the project said that  so far dpc has not defaulted in its payments to general electric . what is  worrying general electric is the possible scenario after june 7 , when about  700 mw power will be commissioned after the second phase trial runs .  dpc and the maharashtra state electricity board ( mseb ) have been locked in a  payments dispute for months . if mseb continues with its stance , dpc in turn  may not be able to pay general electric . in such a situation , ge may walk out  of the project . a final decision will be taken only in june , said sources .  general electric did not respond to a faxed questionnaire sent by business  standard . senior executives at its public relations agency burson  marsteller roger pereira said that only dpc executives were authorised to  speak on the issue . the dpc spokesman declined to comment on the issue .  the first phase of the 740 mw has already been commissioned . after the second  phase of 1 , 444 mwis commissioned by december , 2001 , mseb will have to pay  dpc a minimum of rs 500 crore per month . the escrow account for this was to  have been made operational by april 7 , 2001 . mseb has refused to do this .  earlier , dpc had invoked the political force majeure clause in its contract  with the board . mseb is now arguing that the invocation of this clause has  absolved dpc of all its liabilities .  consequently , it will not operationalise the escrow account . this casts a  further shadow over dpc \u0001 , s ability to pay general electric and bechtel . this  is worrying the lenders to the project as well . the situation has taken a  turn for the worse with dpc practically refusing to re - negotiate the contract  for the second phase with the godbole panel constituted by the maharashtra  government .  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  hindu businessline , may 5 , 2001  agenda for fresh talks with enron chalked out  officials of the state government , maharashtra state electricity board ( mseb )  and members of the madhav godbole committee , which recently submitted its  review on the dabhol power project , met here on saturday . the meeting was to  ` ` chart the agenda for renegotiation with enron officials , ' ' a senior mseb  official said . enron officials were scheduled to attend this meeting but  backed out on may 3 . enron had informed the state government that it would  not accept the recommendations of the godbole committee .  ` it is understandable that the company does not find the recommendations  acceptable . but the report is not bound to personal opinions , ' ' the official  said . the next meeting to decide the direction of renegotiation process with  enron is scheduled on may 11 .  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  the economic times , may 6 , 2001  godbole panel meets sans dabhol representation  the godbole committee , set up for renegotiating the estranged power purchase  agreement between us energy major enron - promoted dabhol power company and the  state electricity board on saturday held its first internal meeting sans  representatives of the multinational . \"\" it was an internal meeting to take  stock of the current situation and decide on matter pertaining to the may 11  meet with officials of enron , ge , bechtel and dpc ' s foreign lenders , \"\" said  state government sources . the meeting , which lasted for almost four hours ,  discussed a strategy to present the committee ' s recommendations made public  last month , they said .  of the nine members of the committee , saturday ' s meeting was attended by five  members - - including godbole , mseb chairman vinay bansal , state energy  secretary v m lal , state finance secretary sudhir shrivastava and kirit  parekh of indira gandhi institute of developmental research . those absent  were hdfc chairman deepak parekh , teri director r k pachauri , former union  energy secretary eas sarma and yet - to - be - appointed representatives of the  centre and central electricity authority . the negotiating committee would  suggest solutions to bring down the exorbitant power tariff , separating of  the liquefied natural gas facility , restructuring of dpc and allowing sale of  excess power through central utilities mainly the national thermal power  corporation , said sources . ( pti  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  the economic times , may 5 , 2001  ntpc not to buy power from enron : govt  the centre has ruled out the possibility of national thermal power  corporation buying power generated by us energy giant enron - promoted dabhol  power company . union power minister suresh prabhu is learnt to have stated  this during the meeting with maharashtra chief minister vilasrao deshmukh  last month , convened by the finance minister yashwant sinha to discuss the  enron crisis , said government sources on friday .  prabhu had pointed out that \"\" there is no question of ntpc buying power from  the project since long - term power purchase agreements have been signed by  ntpc with the buying states \"\" . maharashtra chief minister vilasrao deshmukh  during the meeting suggested that the central power utility sell the excess  power over and above the 300 - 400 mw needed for the state from the 740 mw  phase - i and soon - to - be - commissioned phase - ii of 1 , 444 - mw , to other needy  states . when contacted , prabhu said the entire controversy over payment  default by maharashtra state electricity board owing to high cost of power  generated by dpc had to be resolved between the state government , and dpc and  centre had very limited role to play . dpc has already slapped one  conciliation notice on the centre and three arbitration notices on the state  government over non - payment of dues amounting to rs 213 - crore - plus interest  rate towards bills due for the months of december 2000 and january 2001 . ( pti )  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  the times of india , may 7 , 2001  mseb recovers rs 3 . 06 cr arrears in one day  in a special day - long drive , nagpur rural zone of maharashtra state  electricity board ( mseb ) has recovered rs 3 . 06 crore as arrears from the  defaulters who had to pay a handsome dividend , and disconnectedl 5 , 000  connections of erring customers last week . according to mseb sources , under  the drive , initiated by chief engineer manohar bapat , with the assistance of  about 5 , 000 employees including engineers , accounts staff and linesmen , a  door - to - door campaign was launched to meet 25 , 000 customers , leading to the  recovery of the dues . power supply to 15 , 000 customers were disconnected on  the spot due to non - payment of arrears in chandrapur , gadchiroli , wardha ,  bhandara , gondia and nagpur districts , it said in a release . the drive met  with stiff resistence from public and the police were called in at many  places to assist the powermen , it added .\",0\n\"Subject: japan candidate  vince ,  i spoke with whalley at the sa offsite and he mentioned that had ( or knew of )  a person that could bring some talent to the evaluation of an enron merchant  business in japan . i am in sydney today , but will be in tokyo next week . i  would like to speak more about this . what time might you be available ? my  japan mobile number is 81 90 4073 6761 .  regards ,  joe\",0\n\"Subject: re : course instructor  clare ,  i regret to inform you that i have to decline your invitation due  to prior commitments on the same days .  vince kaminski  - - - - - original message - - - - -  from : clare fitzgerald [ mailto : claref @ marcusevansch . com ]  sent : monday , may 07 , 2001 8 : 48 pm  to : ' vkamins @ enron . com '  subject : course instructor  vince ,  i am writing in regards to an energy derivatives training course i am  developing . i would like to invite you to be an instructor for the course .  a preliminary agenda is attached . brett humphreys from risk capital  management is teaching on day one , and i was wondering if you would be  interested in covering all or part of day two . the topics outlined here can  be modified based on your feedback .  our training courses are structured for an interactive , classroom - type  setting . we limit the audience to 25 people and bring in 2 - 3 instructors to  cover the material over the course of two days .  i will follow up but please let me know what you think .  >  thank you ,  clare fitzgerald  director , training courses  marcus evans  312 - 540 - 3000 x 6785  - agenda . doc >\",0\n\"Subject: bearish pressure on prices to resume , with an end to cold weather  in sigh  here is esai ' s latest natural gas fundwatch .  edna o ' connell  office manager  esai  301 edgewater place , suite 108  wakefield , ma 01880  ( 781 ) 245 - 2036  ( 781 ) 245 - 8706  ednao @ esaibos . com  - ngol 1900 . pdf\",0\n\"Subject: s . tamarchenko  teresa ,  it ' s ok to hire s . tamarchenko as a summer temporary employee .  we need all the help we can get this summer .  i assume it will be 40 hrs a week , as long as ut conforms with all the  external  and internal regulations .  vince\",0\n\"Subject: cusip  david ,  the cusip of the bond i have is 694308 efo  pgc 8 . 375 % 5 / 1 / 25 lst & ref mortgage bond , ser 92 b .  vince\",0\n\"Subject: wti trading simulation presentation - combinded  john ,  just finished the continous trading case . please see  the two attached files . let me know if you want to add  more scenarios .  happy holidays !  zimin  - - - - - - - - - - - - - - - - attachment - - - - - - - - - - - - - - - - - -  open - close trading :  close - close trading :\",0\n\"Subject: this  hurricane elana \",0\n\"Subject: reviewer approval  please note that your employees have suggested the following people to  complete a feedback form on their behalf . you will need to access the  performance management system ( pep ) to either approve or decline these  suggested reviewers . once you have approved the suggested reviewers they  will be notified and can begin completing the feedback form .  your list of employees that have suggested reviewers are listed below :  date suggested : may 19 , 2000  feedback due date : jun 16 , 2000  employee name : kollaros , alexios  date suggested : may 22 , 2000  feedback due date : jun 16 , 2000  employee name : krishnarao , pinnamaneni v\",0\n\"Subject: fwd : billing question  return - path :  received : from rly - yao 2 . mx . aol . com ( rly - yao 2 . mail . aol . com [ 172 . 18 . 144 . 194 ] )  by air - yao 2 . mail . aol . com ( v 67 . 7 ) with esmtp ; mon , 10 jan 2000 06 : 39 : 16 - 0500  received : from abbott . office . aol . com ( abbott . office . aol . com [ 10 . 2 . 96 . 24 ] )  by rly - yao 2 . mx . aol . com ( 8 . 8 . 8 / 8 . 8 . 5 / aol - 4 . 0 . 0 ) with esmtp id gaa 26342 for  ; mon , 10 jan 2000 06 : 39 : 16 - 0500 ( est )  received : from sunphol . ops . aol . com ( sunphol . office . aol . com [ 10 . 5 . 4 . 200 ] ) by  abbott . office . aol . com with smtp ( 8 . 8 . 6 ( phne _ 14041 ) / 8 . 7 . 1 ) id gaao 8342 for  ; mon , 10 jan 2000 06 : 39 : 01 - 0500 ( est )  received : from 0 by sunphol . ops . aol . com ( smi - 8 . 6 / smi - svr 4 ) id gaa 27342 ; mon ,  10 jan 2000 06 : 39 : 00 - 0500  message - id :  from :  to :  date : 01 / 10 / 2000 19 : 40 : 07  reply - to :  subject : re : billing question  dear wincently ,  we at america online would like to thank you for spending the time to write  us . my name is ellen and i appreciate the opportunity to assist you  regarding your recent e - mail .  after reviewing your account , it shows that the annual prepaid fee was not  successfully collected . i suggest that you contact your bank regarding this  matter . you may also want to contact our billing department at  1 - 888 - 265 - 8003 or at 1 - 800 - 827 - 6364 toll free should you want to resubmit the  bill .  if there has been a problem billing your account , america online may send a  billing popup screen that states you need to update your billing information  at keyword : billing . america online does not request this information be  placed anywhere other than at keyword : billing . ( if you ' re  unfamiliar with keywords you can start using them by typing ctrl - k . when  the keyword \"\" box \"\" appears , type the keyword in the space provided and click  the go button ) . it is possible that you will receive the popup more than  once in a 24 hour period , as we update our database every 24 hours .  the message that america online sends states :  an important message from aol member services  our records indicate that the credit card information on file for your aol  account  may not be up - to - date . outdated information on your aol account may cause  bill  processing problems with in some cases could lead to service interruptions !  please take a minute now to update your aol account information . just click  on the update billing information button below . this update will only take a  few moments  and the information you provide will be kept completely confidential .  note : if you have recently updated your billing information , please ignore  this  additional reminder while we process your changes .  if you have questions concerning this message , please call member services  at 1 - 888 / 265 - 8003 between the hours or 6 : 00 am - 2 : 00 am est seven days a  week .  update billing information  ( text on button appears in white on the actual popup )  we greatly appreciate your america online membership . if you have any  further questions , please do not hesitate to contact us again . thank you for  using america online . have a wonderful day . : - )  ellen l .  customer care consultant  the billing department  america online , inc .  - - - - - - - - - - original message - - - - - - - - - -  from : vkaminski @ aol . com  to : billingl @ abbott . office . aol . com  field 1 = wincenty kaminski  field 2 = 10 snowbird  field 4 = the woodlands  field 5 = texas  field 6 = 77381  field 7 = 0057  field 8 = other ( please give details below )  field 9 = on signing on to aol i received the information that billing  information may be outdated . i don ' t see why . my annual fee has just been  paid , the credit card is in good standing , i did not move .  please , let me know what is the problem  field 10 = texas  field 11 = other - see comments  x - rep : 743  x - mailid : 583092  x - queue : 4  x - mailer : swiftmail v 3 . 50\",0\n\"Subject: my resume  hi vince ,  i spoke with ray again , and he seems to have the background necessary to  work with the insurance group here .  he is not an actuary , but he can work with data . would you mind calling him  on the phone sometime next week ?  please let me know what time you would call him , so i can let him know . once  you speak with him , then maybe we can  bring him down for interviews , if you think it appropriate .  his business phone number is 816 889 4417  thanks ,  vasant  - - - - - - - - - - - - - - - - - - - - - - forwarded by vasant shanbhogue / hou / ect on 01 / 07 / 2000  11 : 01 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" spudeck , ray e . ms - res \"\" on 12 / 29 / 99 02 : 24 : 09 pm  to : vasant shanbhogue / hou / ect @ ect  cc :  subject : my resume  vasant ,  i enjoyed our telephone conversation this morning . from our conversation ,  it sounds like enron is moving out on the cutting edge of risk transfer and  insurance finance . in my mind , there seem to be a myriad number of  interesting opportunities moving forward . as well , i see a number of issues  that would need to be resolved . frankly , i find that quite exciting . i  left academics largely because i wanted to move into a more \"\" front line \"\"  career . while i ' ve enjoyed my work here at the naic , it is still not where i  ultimately see myself . i gathered from your comments some concern about my  being too senior in the organization . if i am interpreting you correctly ,  you are concerned about hands on technical work . i enjoy that immensely and  some of the strengths i bring to the table are the ability to think  creatively about solving financial problems and the the ability to make data  tell the underlying story .  i look forward to talking to you next week . i just found out that our  office building will be closed monday , so i will not be in until tuesday  a . m .  ray spudeck  sr . research associate  ( 816 ) 889 - 4417  rspudeck @ naic . org  >  - resumeres . doc\",0\n\"Subject: re : greetings  hi , mr . kaminski :  how are you ?  i am back to school for the new semester now . i am in contact with molly  magee for my travlling schedule to enron .  i got from garp that you chaired a seeesion on energy risk at the new york  conference last week . if it is not too much trouble , could you please send a  copy of your presentation to me ? i appreciate it .  see you soon !  frank\",0\n\"Subject: fw : eprm article  any feedback on the latest article from chris for eprm ? ? please let me know  when i can expect some feedback so i can get back to eprm , since they are  going to press in a week .  ?  thanks ,  julie  ?  ?  - - - - - original message - - - - -  from : robin lancaster  to : julie  sent : wednesday , october 11 , 2000 10 : 52 am  subject : eprm article  julie  i know that chris is away and so siad to contact you with any problems . just  want to know the status of the article for this month ? the last e - mail from  chris said it was getting a final look over from vince kaminski and i should  expect it a few days and that was last thursday . any news , as we ' re due to  go to press in a week and a day .  robin\",0\n\"Subject: research and development charges to gpg  janice :  here is the memo i spoke to you about concerning the charges that need  to be reversed .  if you have any questions , please call me .  shirley  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 08 / 16 / 2000  09 : 54 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  kimberly watson @ enron  06 / 15 / 2000 03 : 26 pm  to : kent miller / et & s / enron @ enron , martha janousek / et & s / enron @ enron , elaine  concklin / et & s / enron @ enron , vera apodaca / et & s / enron @ enron , rod  hayslett / fgt / enron @ enron , vince j kaminski / hou / ect @ ect , pinnamaneni  krishnarao / hou / ect @ ect , shirley crenshaw / hou / ect @ ect  cc :  subject : research and development charges to gpg  vince , krishna and i met to discuss the research and development cross  charges to gpg for january through june . these charges are based upon a  budgeted amount of allocating three resources to the gpg group ( two resources  for revenue management and one resource for gpg marketing ) . we have utilized  the r & d group some during the first half of the year , but not to the full  extent of three resources . vince and krishna have agreed to reverse out some  of the charges that were budgeted january through june . we will revisit this  issue again toward the end of the year to determine if any adjustments are  necessary for july through december .  the budgeted amount january through june has been distributed between the nng  and tw as follows :  research and development  budget ( $ 000 ) nng tw et & s  january $ 46 . 7 $ 46 . 7  february $ 26 . 1 $ 20 . 4 $ 46 . 5  march $ 35 . 9 $ 10 . 2 $ 46 . 1  april $ 34 . 8 $ 10 . 2 $ 45 . 0  may $ 36 . 4 $ 8 . 8 $ 45 . 2  june $ 36 . 4 $ 8 . 8 $ 45 . 2  $ 274 . 7  out of the $ 274 . 7 budgeted for the first half of the year , $ 199 . 7 is to be  reversed back to the research and development department . this reversal will  occur in july . vince , vera apodaca ( ext . x 35980 ) will be our contact to  help facilitate the reversal of these charges .  elaine , the remaining $ 75 . 0 ( $ 274 . 7 - $ 199 . 7 ) is to be allocated with $ 50 . 0  going to the revenue management work order and $ 25 . 0 remaining in o & m .  if anyone has any questions or needs additional information , please don ' t  hesitate to call me ( x 33098 ) . thanks , kim .\",0\n\"Subject: new commodity marketplace opportunity  mark lay : i shared confidentially with vince kaminski my developing  concept of a highly inefficient not - for - profit enterprise with  dramatically increasing costs . i believe that a for - profit economic  model is possible that should reverse these skyrocketing costs and  ultimately lower the commodity thereby having a national , if not , global  impact of health care costs . vince seems to also believe in the  concepts potential . the ceo of one of the biggest u . s . blood banks has  already asked to become involved . i would like involve more people  with vision , means and desire to help make this a reality . i would look  forward to meeting with you to talk further . al arfsten 713 965 2158\",0\n\"Subject: re : subscription renewal  stephanie ,  thanks for remembering about me .  yes , i want to renew .  vince  from : stephanie e taylor on 11 / 29 / 2000 01 : 18 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : subscription renewal  dear vince ,  this is to inform you that your subscription to risk is up for renewal . the  regular subscription cost through december , 2001 , is $ 599 . 00 . the cost after  the corporate discount is $ 509 . 15 .  please let me know if you would like to renew this publication . we will be  happy to take care of this for you . if you have any questions , please do not  hesitate to call me .  sincerely ,  stephanie e . taylor\",0\n\"Subject: risk 2000 panel discussion  good morning gentlemen :  i will go ahead and schedule the conference call for wednesday , may 31 st  at 11 : 00 am est ( 10 : 00 cst ) . please let me know the telephone numbers  you may be reached at and vince will call you .  if you find you cannot do this , please let me know .  thanks and have a wonderful weekend .  shirley crenshaw  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 05 / 26 / 2000  08 : 11 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  shirley crenshaw  05 / 25 / 2000 03 : 54 pm  to : oliver @ risk . co . uk , jefferid @ kochind . com , sbramlet @ utilicorp . com  cc :  subject : risk 2000 panel discussion  hello everyone :  vince kaminski would be available for a conference call on wednesday ,  may 31 at 10 : 00 or 11 : 00 am est . the rest of the day is rather full .  please let me know if either time is convenient for you . if not , maybe we  could do it on june 1 - he is free most of the day with the exception of  12 : 30 - 2 : 00 est .  look forward to hearing from you .  thanks !  shirley crenshaw  administrative coordinator  enron corp . research  713 - 853 - 5290  email : shirley . crenshaw @ enron . com\",0\n\"Subject: fwd curves  margaret ,  the forward power and gas price curves , unlike nymex futures prices ,  are not publicly available and are a closely guarded secret of the trading  desks .  we have no authority to release them without getting the head of the  trading desk involved .  vince\",0\n\"Subject: research dept . move  hello everyone :  attached is the churn relocation request for some office exchanges within  the research group on the 19 th floor . i have grouped them in sets of two  which are the exchanges .  this is a very rush order . we would appreciate your getting to this as  soon as possible - the 15 th of august would be great , if possible .  let me know if there is something that you do not understand . thanks !  shirley\",0\n\"Subject: interim report to gary hickerson for ag trading  vince ,  please find attached the interim report on agricultural commodity trading for  gary hickerson . your comments are welcome as we would like to send this to  gary as soon as possible .  regards ,  kate  ext 3 - 9401\",0\n\"Subject: re : generation earnings model  michelle ,  i agree with you that we need to run at least 500 iterations . but i did not  realize that it took 16 hours to run 100 iterations . helen and i talked earlier about  using parallel computing technique to split the algorithm into smaller parts and  run the parts separately on different processors , then aggregate the results .  this procedure makes better use of computer power and saves time . looks like  we have to do it this way now . buying a more powerful computer helps but  does not solve the problem .  in addition , we might want to re - consider if writing the code in vb is optimal .  i was assured at the very beginning that vb runs as fast ( if not faster ) as c ,  but some re - assurance from it group on this issue is helpful .  best ,  alex  from : michelle d cisneros @ ect 04 / 09 / 2001 02 : 52 pm  to : alex huang / corp / enron @ enron  cc : gary hickerson , danielle romain  subject : generation earnings model  hi alex -  danielle and i were talking to david m . today regarding running the model for purposes of back testing the results . last week we ran calpine using 46 days of historical forward price data at 10 and 100 iterations . the 100 iteration run took 16 hours to run . to run all 20 companies with the 46 days worth of data and at 100 iterations is estimated to take about 28 days . we are concerned that 100 iterations will not be sufficient and will need to be increased to at least 500 iterations .  we are thinking that we need to use a server or something much more powerful than the test computer we have been using . do you have any suggestions as to how we can improve the process ?  thanks ,  michelle  x 35435  hi alex -  danielle and i were talking to david m . today regarding running the model for purposes of back testing the results . last week we ran calpine using 46 days of historical forward price data at 10 and 100 iterations . the 100 iteration run took 16 hours to run . to run all 20 companies with the 46 days worth of data and at 100 iterations is estimated to take about 28 days . we are concerned that 100 iterations will not be sufficient and will need to be increased to at least 500 iterations .  we are thinking that we need to use a server or something much more powerful than the test computer we have been using . do you have any suggestions as to how we can improve the process ?  thanks ,  michelle  x 35435\",0\n\"Subject: united way executive solicitation  as you know , enron \u0001 , s united way executive solicitation is well under way .  august 9 th is the target date to achieve 100 % participation and finalize the  commitment from our executives and is also the date for the kickoff of the  company wide drive . we have a way to go to meet this objective . as of  august 3 rd less than 25 % of our executives have turned in their pledge .  enron \u0001 , s united way goal for the year is $ 2 . 3 million ( before the corporate  match ) . ena \u0001 , s share of this goal is $ 346 , 500 . while these are aggressive  goals , they are very doable , and if everyone contributes their fair share , we  can easily surpass these goals .  along with focusing on meeting our financial goals , i \u0001 , d like to have 100 %  participation throughout the organization . this is especially important  among our executives . we define \"\" participation \"\" as an employee who has  completed their pledge on - line and made a contribution , no matter what the  level .  i am a proud member of the alexis de tocqueville society , which is a  contributor of $ 10 , 000 or more and have pledged significantly more this year  than last year . enron has 39 members of this society , only 5 of which are  from ena . i would like to see this number increase significantly and if you  are able , i would like you to consider stepping up to this level . given the  fact that enron executives are highly compensated with generous options and  bonus program , i encourage each of you to at least become a member of the  \"\" make a difference \"\" club , which is a contribution of 1 . 2 % of your annual  salary . i would also challenge each of you to increase your pledge this  year , regardless of your level of giving last year .  with the campaign going on - line with electronic pledging , i \u0001 , ll need the  support of you and your campaigners to increase participation levels across  the ena organization and reach our financial goals . whatever your decision  regarding the level of your pledge , we need 100 % participation from our  executives in order to set a good example for the rest of ena . your  contribution to the united way will continue to make a difference in our  community . when you give , you change a life right here in our community .  please join me in setting the standard for ena by giving generously and  getting your pledges in by august 9 th .  log - in to system on netscape or explorer - - unitedway . enron . com\",0\n\"Subject: eol presentation  thank you for meeting with the students from rice university ' s jesse h . jones graduate school of management in april . the students greatly appreciated the opportunity to talk with you . your perspective and insights into eol and its competitors helped the students gain much more useful information in their interviews with enymex , houstonstreet . com , ice , dynegydirect , and other energy e - commerce platforms .  the students will present the results of their research next monday ( may 7 ) at 4 : 00 p . m . in room 49 cl . we would be delighted if you can attend their presentation . if you cannot attend but would like a copy of their final report , please feel free to let me know and i will make sure you get it .  thanks again for your help .\",0\n\"Subject: collaborative effort  vince : i am very enthusiastic about your interest and possible  contributions towards a 22 nd century human blood system . i have  attached a letter that discusses the endeavor . please note that it has  a built - in automatic release in the event you need to terminate . it has  a confidentiality statement as well . if it is acceptable , please sign  it and fax it back to me at 713 965 2114 at your earliest convenience .  al arfsten  - kaminski acceptance 011601 . doc\",0\n\"Subject: nymex  chris ,  here is the analysis you requested . let me know if i can be of any further  assistance .  charlie weldon\",0\n\"Subject: good morning  vince ,  attached is a note written by a former phd student of mine . he comments on  the calif power problem and i thought you and others at enron might enjoy  his insights .  john  - california is worth 50 basis points . doc  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: it was great talking with you .  dave  - brochure . doc  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  prof . david ikenberry  jones graduate school of management  rice university  713 - 348 - 5385\",0\n\"Subject: happy holidays !  i wish you wonderful holidays and a  happy happy new year with many  blessings !  shirley\",0\n\"Subject: fw : fyi - more on truck s / d  vince :  i ' d like to send you some articles on the fleet card business .  if you have some time , i ' d like to discuss the meeting that we had with  comdata ( which has a 60 % market share of the fleet card business ) . they have  some live data that potentially could be very interesting ; however , i ' d like  to discuss it with you .  shawn  what a mess ! ( statistical data included )  john d . schulz  03 / 26 / 2001  traffic world  page 25  copyright 2001 gale group inc . all rights reserved . copyright 2001 journal of  commerce , inc .  truckers still waiting for signs of pent - up freight demand ; earnings  shortfalls , layoffs loom  if you are waiting for trucking to kick - start the nation ' s economic recovery ,  pull up a chair and wait awhile . trucking ceos say they haven ' t seen this  slow a first quarter in a decade .  \"\" perhaps the weakest first quarter for freight demand since swift became a  public company in 1990 , \"\" phoenix - based swift transportation chairman and ceo  jerry moyes said .  the first - quarter trucking mantra historically has been this : everybody loses  money in january , hopes for a break - even february and earns whatever profit  there is in the quarter in march . that formula may not hold this year .  gregory l . quesnel , president and ceo of con - way transportation services and  emery worldwide parent cnf inc . , said the current slowdown was first detected  late in the third quarter last year and has become \"\" more pronounced in each  successive quarter . \"\" march , he said , has been \"\" as disappointing as the first  two months this year . \"\"  layoffs already are occurring at the major ltl carriers . yellow freight  system has idled as many as 1 , 000 teamsters and hundreds of white - collar  back - office workers . most large carriers are warning of profit shortfalls  that will cause them to miss analysts ' first - quarter estimates . but there are  deeper fears , too . marginal players may be forced into bankruptcy . small ,  family - owned carriers may be unable to exit the industry on their own terms  because of the shocking decline in the value of used trucks that is causing  some companies to be valued at less than half their worth of just two years  ago .  swift ' s volume drop - off began with shipments originating on the west coast in  january and february and it is continuing in march , moyes said . coupled with  reduced demand from the southwest , moyes said swift will not meet analysts '  first - quarter earnings expectations . swift is not alone .  \"\" we hauled less freight in february than february a year ago , \"\" said bob  hammel , executive vice president of pittsburgh - based pitt ohio express , a  leading privately held eastern regional ltl carrier . \"\" the slowdown in  manufacturing began in the middle of last year and it was precipitous . nobody  anticipated the speed in which manufacturing demand fell off . \"\"  even con - way , the most profitable ltl operation in the past five years , said  it would have a decline in first - quarter operating income compared with the  year - ago period . con - way ' s tonnage declines were estimated in the  \"\" mid - single - digit \"\" percentage range .  roadway express estimated that its current tonnage levels are running 10 to  11 percent below those a year ago , which will result in an approximately  one - half of 1 percent ( 0 . 5 percent ) decline in its operating ratio . ( see  sidebar )  pat hanley , overnite transportation ' s senior vice president and chief  financial officer , said freight figures were flat in february year over year  but rose slightly in march . overnite is the exception to the ltl industry  with as many as 24 new terminals scheduled to be opened this year .  \"\" january was pretty good to us , but february was flat . it ' s coming back in  march . we ' re probably up in low single digits , 3 to 4 percent . we ' re picking  back up . the economy has hurt us . if you had asked us at the start of the  year , we ' d have said we ' d be up double - digits , \"\" hanley said .  the national economic picture is \"\" a big concern , \"\" hanley said . \"\" we ' re not  seeing pressure on prices , at least not so far . we ' re seeing customers ship  10 pallets a day instead of 20 . the shipment size is coming down . certainly  we ' re concerned . we ' ll do o . k . , but not as great as we ' d like . \"\"  forget consumer confidence surveys or the producer pricing index or whatever  stars align in federal reserve board chairman alan greenspan ' s world . the  genuine leading indicator of any national economic trend is trucking , which  is always a first - in , first - out industry in any economic slowdown .  to hear trucking industry leaders tell it , get comfortable with beans and  franks for dinner . it ' s going to be awhile before it ' s filet mignon time  again .  shippers see what ' s happening as well but say it ' s still too early in the  year for carriers to start cutting rates to fill empty trucks .  \"\" all the carriers we talk with report flat or slightly declining business  levels - - definitely slower than early last year , \"\" said bill huie , assistant  vice president of corporate transportation for nch corp . , irving , texas .  \"\" with a couple of exceptions , carriers we talk with have no plans for  expansion in the next few months . we are getting feelers about some possible  lane adjustments to boost revenue . but generally it appears a little early in  the economic downturn for much price movement . \"\"  the national ltl carriers are seeing the same things . \"\" our business is down  pretty substantially for the first quarter , \"\" said roger dick , spokesman for  yellow corp . , parent of yellow freight system and two large regional ltl  carriers , jevic transportation , delanco , n . j . , and saia motor freight ,  duluth , ga .  usfreightways corp . , citing what it called the nation ' s \"\" serious economic  slowdown , \"\" said it expects first - quarter earnings to fall \"\" very substantially  below \"\" current wall street consensus .  extreme weather conditions also contributed to the already weakened operating  environment , usf chairman , president and ceo samuel k . skinner added .  \"\" traditionally , the first quarter builds momentum slowly , with march being  the strongest month of the period , \"\" skinner said in a statement . \"\" this year ,  the economic slowdown of the fourth quarter of 2000 accelerated in january  and february , softening even the normal modest expectations for those two  months . \"\"  it ' s not just the ltl industry that ' s hurting . the morgan stanley dean witter  truckload freight index continues to show the worst demand - supply  relationship since analyst james j . valentine began tracking the data in  april 1994 . two events can cause weakness in the index , according to  valentine . they are either an abundance of excess trucks on the road or weak  freight demand .  \"\" so far in 2001 , we have seen the confluence of both factors , but the  fall - off in demand has far outpaced the increase in supply , \"\" valentine wrote  in his most recent \"\" trucking snapshot \"\" for early march .  year - to - date measurement for truckload demand is down 25 percent year over  year , according to valentine ' s index , while supply is up only 7 percent . that  would indicate the over capacity was a significant issue last year but was  \"\" masked by the strong economy , \"\" valentine says .  in a more ominous note , valentine believes overcapacity will continue to  plague the truckload industry for the next one to two years . only a  reaccelerating national economy can bring the demand - supply back in balance  for the truckload sector in the near term , valentine predicts .  the overproduction of new class 8 trucks from early 1998 through early last  year has put too many trucks on the roads and caused supply to back up at  manufacturers , wholesalers and other retailers . used trucks have lost on  average more than 30 percent of their value over the past 18 months .  anecdotally , one used truck dealer , music city truck & equipment , in  lavergne , tenn . , is holding a \"\" two - for - one \"\" sale on three - to five - year - old  class 8 freightliners . you can buy two for around $ 30 , 000 , less than a brand  new chevy suburban suv .  what that means is a trucker who bought a 1998 class 8 truck for $ 70 , 000 and  depreciated half the value over three years has a piece of equipment on the  books this year at $ 35 , 000 . but assuming it has lost 30 percent of that  value , it may only be worth $ 24 , 500 in actuality . for a carrier with a  100 - truck fleet , that equates to a loss of more than $ 1 million on assets .  the glut may last for a while , according to valentine ' s analysis . assuming a  three - year trade - in cycle , most of the class 8 tractors in the truckload  sector are just now rolling over to the used - truck market . that means that  overcapacity will plague the truckload industry for at least the next year .  that will result in some of the marginal carriers exiting the business , as  did nearly 1 , 900 carriers last year that either closed or declared  bankruptcy .  \"\" we can see from indexes , surveys and other information available to us that  it is unlikely there will be any significant improvement in march and freight  demands will continue to be soft throughout the month . based on all of these  factors , we expect usfreightways ' profits for the first quarter to be very  substantially less than published analysts ' forecasts , \"\" skinner said .  in addition , severe weather conditions including an earthquake in seattle ,  rainstorms in california and blizzards in the northeast have added cost and  decreased efficiencies , skinner added .  expectations at each of usf ' s operating companies have been affected , some  more than others . the ltl , logistics , reverse logistics and  freight - forwarding units are all showing decreased revenue and volume over a  similar period last year , skinner said .  further job cuts at usf worldwide , its freight forwarder , would be in the  offing as cost controls at the unit would be \"\" accelerated \"\" in the wake of the  softening economy , skinner said . late last year , skinner said the rebuilding  process at usf worldwide would be a two - year process . but the worsening  economy has made that rebuilding job harder , he said .  \"\" we are seeing evidence that the slowing economy is , in fact , further  impeding progress in this area , \"\" skinner said . \"\" during the fourth quarter of  2000 and continuing into the first quarter of 2001 , the company has taken  steps to increase cost efficiencies . among these actions are a substantial  cutback in capital spending and significant reductions in the labor force .  these cost - control efforts will be accelerated to partially counterbalance  the damaging impact of the current economic and weather conditions . \"\"  in the 2000 first quarter , usf posted $ 22 . 3 million net income , a 27 percent  rise from the $ 17 . 5 million earnings in the 1999 first quarter . at the time ,  that was usf ' s 15 th straight quarter - over - quarter earnings increase . it came  on $ 608 . 2 million revenue , an 18 . 5 percent rise in from the $ 513 . 2 million  revenue in the 1999 first quarter . analysts had been estimating usf to earn  about $ 3 . 50 a share earnings for 2001 , compared with actual $ 3 . 61 earnings  per share for all of last year . in the fourth quarter last year , usf earned  $ 23 . 7 million , or 91 cents a share .  trucking in a snapshot  market what ' s going on  msdw [ * ] truckload remains in record - low territory , indicating  freight index the worst demand - supply relationship since msdw  began tracking the date in april 1994 .  diesel prices diesel prices in the first quarter of 2001  have come down 6 % sequentially from 4 qo 0 . however ,  the average price for the quarter remains 6 %  above that of lqo 0 .  wti oil opec recently agreed to reduce supply by 5 % and  has stated a price objective of $ 25 per barrel .  capacity retail sales of class 8 tractors ( new trucks  entering the market ) came down in january , but  inventory ( trucks that will enter the market at some  point ) to sales ratio hit a new high of 3 . 4 months  gdp 4 qo 0 gdp increased 1 . 1 % and economists see u . s .  recession in 2001 with + 0 . 5 % and - 1 . 4 % gdp forecast  for lqol and 2 qol , respectively .  retail sales retail sales rose 0 . 7 % in january . while this  was better than forecast , the upside was likely  the result of excessive clearance sales after a  disappointing holiday season .  consumer the conference board ' s measure of consumer  confidence confidence fell again ( nine points ) in february  after registering the largest one - month decline  in 10 years in january ( 14 points ) .  napm the february napm rose slightly to 41 . 9 .  however , it still indicates a contracting  manufacturing sector .  leading the index of leading economic indicators  economic rose 0 . 8 % in january , while  indicator msdw had forecast a 0 . 6 % increase . this  represents the first rise in four months .  stock after a recent pullback , trucking stocks remain  perfonnance up year - to - date with tl stocks up 5 % , regional  ltl stocks up 9 % and national ltl stocks up 13 % .  investor for the week ended february 28 , mutual fund  outflows totaled $ 309 million , compared with  inflows of $ 2 billion in the prior week .  market implications  msdw [ * ] truckload negative for all tl carriers .  freight index  diesel prices the downward trend is positive for all  carriers , especially tl carriers , which have  greater exposure to fuel than ltl carriers .  wti oil negative for all carriers , as $ 25 per  barrel is still 25 % higher than the $ 20 per  barrel average since 1990 .  capacity negative for tl carriers , not a major  concern for ltl carriers , which measure  capacity by the number of terminals .  gdp negative for all carriers .  retail sales negative for both ti and ltl carriers .  consumer negative for all carriers  confidence  napm negative for all carriers .  leading positive for all carriers .  economic  indicator  stock positive , however , stocks could pull  perfonnance back further in the short term as  fundamentals catch up .  investor negative .  source : morgan stanley dean witter research\",0\n\"Subject: mit team meeting  greetings , mit recruiting team !  each of you has been chosen to represent enron for our fall 2000 recruiting  efforts at mit university . as part of the team , you will be challenged with  choosing the best candidates from sloan ' s graduate school to join our  associate program .  our first campus event will be on september 21 and interviews will be held on  campus november 7 and 8 . i hope you are all able to participate in the  exciting process of recruiting young talent .  we will be more formally organising ourselves in the next couple of weeks .  currently , we are planning to have a brief team meeting in order to make  introductions , inform you about the associate program , and discuss the fall  recruiting calendar . to that end , please contact me with any questions or  comments you may have .  the team meeting date is set for september lst at 10 am in room 11 c 2 .  please rsvp to me as soon as possible .  i look forward to meeting you all soon .  sincerely ,  kristin gandy  associate recruiter  x 53214\",0\n\"Subject: mscf speaker series  mscf speaker series  dear mr . kaminsky , i have included the web page of the list of confirmed  speakers , most of them are people i worked with as a fixed income bond  options trader . ? having you as a speaker would ? give a chance to the mscf  students to gain insight in an area ( commodities ) and in a field  ( research ) ? in which many are ? interested .  official invitation  ?  ?  ?  the first event is next friday !  ?  first event :  august 11 , 2000  10 : 30 to 12 : 30 a . m . fast lab  david hartney & jerry hanweck  vice president , futures and option sales ?  j . p . morgan  n . b .  there will be free caps and a copy of the treasury bond basis . priority will  be given to mscf students .  ?  ? ?  price and hedging volatility contracts  september 1 , 2000  dmitry pugachevsky  deutsche bank  dmitry pugachesky is a director with otc derivatives research of deutsche  bank , where his research is primarily focussed on credit derivatives . prior  to joining deutsche bank , dmitry worked for six years with global analytics  group of bankers trust . there he developed models for emerging markets ,  interest rates , and equity derivatives and also participated in actual  trading and structuring of interest rate options . he received his phd in  applied mathematics from carnegie mellon university specializing in control  theory for stochastic processes . he has published several papers on  modelling in emerging markets and on valuation for passport options .  a measurement framework for bank liquidity risk  september 15 , 2000  raymond cote  vice president , finrad inc . nbc  raymond cote is vice president , financial engineering at finrad inc . , a  montreal - based consulting firm offering financial management solutions that  combine advisory and systems development services to & corporations and  financial institutions .  abstract :  liquidity risk , as opposed to credit and market risks , has received little  attention in professional or academic journals . we argue that analyzing bank  liquidity risk can be viewed as a variation of credit risk analysis . after  introducing some concepts and definitions , the presentation defines a  framework allowing to measure a bank ' s structural liquidity risk . it then  shows that combining the framework with modern credit risk measurement tools  leads to a liquidity risk var measure . the presentation then offers  concluding comments on the integration of the liquidity risk measurement  framework within enterprise - wide risk management .  swaps , spreads and bonds  september 29 , 2000  chris leonard  senior trader  fixed income arbitrage ?  october 27 , 2000  chuck mchugh  vice president , nbc - new york  fund management and market efficiency  november 10 , 2000  andrea lee  portfolio manager , freiss associates  pierre - philippe ste - marie  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  http : / / pstemarie . homestead . com\",0\n\"Subject: re : our workshop  helyette ,  sorry for not getting back to you earlier .  my schedule was quite crazy over the last few days .  i shall be in london on sunday meeting my group for dinner at 7 : 30 . can i  call you around  6 : 00 - 6 : 30 ?  vince  p . s . you can send a reply to my aol address .  vince  gemanix @ aol . com on 09 / 29 / 2000 11 : 27 : 51 am  to : vince . j . kaminski @ enron . com  cc :  subject : our workshop  dear vince ,  our workshop has already 20 registered delegates ,  which is very good given the french power situation .  moreover , french people tend to be fairly educated  and we should coordinate a little bit .  i am leaving in 30 minutes for 2 days . can we talk on sunday  at 7 or 8 p . m my time ? my 2 numbers will be  33 1 46040110 or 33 6 08074200  alex would agree to speak for a while as we did in francfort .  karla sent me a proposal for the escrow problem . i had a  further question in your direction regarding \"\" system support \"\" .  karla , as you know , would kindly like to wrap up the contract  before moving to a new department and i will do my very  best to satisfy her wish and your feasible requests .  kind regards  helyette\",0\n\"Subject: vince and vasant :  here is a brief summary of my meeting with chris germany , capacity trader at  the east desk , related to gas transmission :  typically , pipelines lease capacity billed on a monthly basis . an example  might be the pipeline between south texas and brooklyn , where you might pay  $ 12 . 00 per month per 10 , 000 decatherms of capacity ( $ 0 . 40 per day ) , a fixed  payment . variable charges are 6 % for fuel costs ( \"\" shrinkage \"\" ) and 6 . 5 % for  overhead expenses . a gas trader might call south texas and be quoted a  delivery price tomorrow of nymex - $ 0 . 10 ( \"\" basis \"\" ) , and might call brooklyn  and be quoted a delivered price of nymex + $ 0 . 25 . the trader ' s spread is  $ 0 . 35 , and variable costs of transmission are $ 0 . 125 , so the trader would  offer the leaseholder of capacity up to $ 0 . 225 for firm capacity tomorrow .  as for the distinction betweem firm and interruptible , the leaseholders have  an excellent knowledge of the firm - equivalent of interruptible capacity .  also , many pipelines don ' t discount firm capacity from the tariff maximum  ( \"\" it ' s not worth their time to haggle \"\" ) ( there is a further issue of  \"\" secondary markets \"\" not important to the model yet ) . for south texas and  brooklyn , there are several different routes the gas can physically take  ( pipelines of enron , texas eastern , etc ) . and , once the trade is in the  system traders can cover the ( enron ) positions on each end of the pipeline ,  in so doing freeing up the capacity for other contracts .  clayton\",0\n\"Subject: re : ena analysts and associates  i shall be attending the bi - monthly meetings . we always have a significant  number of associates  rotating through my group and supporting different units of enron .  vince kaminski  enron north america corp .  from : david w delainey 07 / 26 / 2000 10 : 17 am  sent by : kay chapman  to : sally beck / hou / ect @ ect , tim belden / hou / ect @ ect , raymond  bowen / hou / ect @ ect , christopher f calger / pdx / ect @ ect , wes colwell / hou / ect @ ect ,  janet r dietrich / hou / ect @ ect , jeff donahue / hou / ect @ ect , w david  duran / hou / ect @ ect , mark e haedicke / hou / ect @ ect , gary hickerson / hou / ect @ ect ,  mike jakubik / hou / ect @ ect , scott josey / corp / enron @ enron , john j  lavorato / corp / enron @ enron , rodney malcolm / hou / ect @ ect , george  mcclellan / hou / ect @ ect , rob milnthorp / cal / ect @ ect , julia murray / hou / ect @ ect ,  jere c overdyke / hou / ect @ ect , david oxley / hou / ect @ ect , kevin m  presto / hou / ect @ ect , brian redmond / hou / ect @ ect , jeffrey a  shankman / hou / ect @ ect , c john thompson / corp / enron @ enron , max  yzaguirre / na / enron @ enron , james a ajello / hou / ect @ ect , edward  ondarza / hou / ect @ ect , vince j kaminski / hou / ect @ ect , beth perlman / hou / ect @ ect ,  mark frevert / na / enron @ enron , jean mrha / na / enron @ enron , julie a  gomez / hou / ect @ ect  cc : patti thompson / hou / ect @ ect , catherine dumont / pdx / ect @ ect , marsha  schiller / hou / ect @ ect , mollie gustafson / pdx / ect @ ect , shirley  tijerina / corp / enron @ enron , christy chapman / hou / ect @ ect , tina  rode / hou / ect @ ect , janette elbertson / hou / ect @ ect , stella l ely / hou / ect @ ect ,  nicole mayer / hou / ect @ ect , tonai lehr / corp / enron @ enron , kimberly  hillis / hou / ect @ ect , ana alcantara / hou / ect @ ect , yolanda ford / hou / ect @ ect ,  carolyn george / corp / enron @ enron , donna baker / hou / ect @ ect , rhonna  palmer / hou / ect @ ect , felicia doan / hou / ect @ ect , barbara lewis / hou / ect @ ect ,  pilar cerezo / na / enron @ enron , terrellyn parker / hou / ect @ ect , dusty warren  paez / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , nicki daw / na / enron @ enron ,  cherylene r westbrook / hou / ect @ ect , kay chapman / hou / ect @ ect , lillian  carroll / hou / ect @ ect , venita coleman / corp / enron @ enron , melissa  jones / na / enron @ enron ( bcc : ted c bland / hou / ect )  subject : ena analysts and associates  i have just received word from ted bland that no one has responded to this  memo . please re - read the following memo and respond to ted by july 31 , 2000 .  thanks in advance for your prompt attention to this matter .  as you know the ena otc is actively working with the analyst and associate  program to develop greater talent flow into ena . we are presently working on  a number of initiatives to improve how this is working and significantly  improve communication flow and responsiveness . however in this regard we also  need you to help make sure we have clear lines of communication within ena  regarding a & a resource levels , performance , rotations and retention efforts .  in this regard we would like for each of you to take the lead for your  groups needs and ensure that any requests , questions or concerns about a & a ' s  in your area are passed through you to either ted bland ( ena recuitment team  lead - x 35275 ) or jana giovannani ( ena liaison from the aa program - x 39233 )  or myself . it is important that we are discerning about what we do with our  a & a resources and plan carefully and accurately for our future needs , in this  regard we need for you personally ( or a senior member of your team who you  may optionally delegate this task to ) will take the time to review any a & a  resource requests from your team before passing them onto us .  in addition , given the importance of these resources , we will be inviting you  to a regular bi - monthly meeting to discuss ena a & a matters . we will confirm  the first date in due course . in the meantime if you would like to volunteer  another senior member of your team to assume this reponsibility please supply  their name as soon as possible .  please call with any questions .\",0\n\"Subject: super saturday - dinner participation not needed  please see the attached memo . we will not be needing you to participate in  the dinner friday , december 8 th . thanks so much for volunteering ! ! !\",0\n\"Subject: preface for book  vince ,  ?  hope you are well .  ?  we spoke a while ago about who should write the preface for the book , and  you kindly offered that you would provide this . ? is this still possible ? ? we  realise that you are extremely busy , so chris and les went ahead and wrote  something , which is below , and if you want to review , change or re - write ? the  preface , that would be very appreciated . ? let me know what your thoughts are .  ?  thanks ,  julie  ( we ' re getting close )  ?  ?  preface  ?  ?  ?  one of our main objectives in writing energy derivatives : pricing and risk  management has been to bring together as many of the various approaches for  the pricing and risk management energy derivatives as possible , to discuss  in - depth the models , and to show how they relate to each other . ? in this  way we hope to help the reader to analyse the different models , price a wide  range of energy derivatives , or to build a risk management system which uses  a consistent modelling framework . ? we believe that for practitioners this  last point is very important and we continue to stress in our articles and  presentations the dangers of having flawed risk management and giving  arbitrage opportunities to your competitors by using ad - hoc and inconsistent  models for different instruments and markets ( see also others who propose  consistent models ? ) . ? however , it is not our wish to concentrate on one  particular model or models , at the exclusion of the others because we  believe that the choice should rest with the user ( although it will probably  be clear from our discussions the model ( s ) we prefer ) . ? we therefore try and  give as clear account as possible of the advantage and disadvantages of all  the models so that the reader can make an informed choice as to the models  which best suit their needs .  ?  in order to meet our objectives the book is divided into 11 chapters . ? in  chapter 1 we give an overview of the fundamental principals needed to model  and price energy derivatives which will underpin the remainder of the book . ?  in addition to introducing the techniques that underlie the black - scholes  modelling framework we outline the numerical techniques of trinomial trees  and monte carlo simulation for derivative pricing , which are used throughout  the book .  ?  in chapter 2 we discuss the analysis of spot energy prices . ? as well as  analysing empirical price movements we propose a number of processes that  can be used to model the prices . ? we look at the well - know process of  geometric brownian motion as well as mean reversion , stochastic volatility  and jump processes , discussing each and showing how they can be simulated  and their parameters estimated .  ?  chapter 3 , written by vince kaminski , grant masson and ronnie chahal of  enron corp . , discusses volatility estimation in energy commodity markets . ?  this chapter builds on the previous one . ? it examines in detail the methods ,  merits and pitfalls of the volatility estimation process assuming different  pricing models introduced in chapter 2 . ? examples from crude , gas , and  electricity markets are used to illustrate the technical and interpretative  aspects of calculating volatility .  ?  chapter 4 examines forward curves in the energy markets . ? although such  curves are well understood and straight - forward in the most financial  markets , the difficulty of storage in many energy markets leads to less well  defined curves . ? in this chapter we describe forward price bounds for energy  prices and the building of forward curves from market instruments . ? we  outline the three main approaches which have been applied to building  forward curves in energy markets ; the arbitrage approach , the econometric  approach , and deriving analytical values by modelling underlying stochastic  factors .  ?  chapter 5 presents an overview of structures found in the energy derivative  markets and discusses their uses . ? examples of products analysed in this  chapter include a variety of swaps , caps , floors and collars , as well as  energy swaptions , compound options , asian options , barrier options , lookback  options , and ladder options .  ?  chapter 6 investigates single and multi - factor models of the energy spot  price and the pricing of some standard energy derivatives . ? closed form  solutions for forward prices , forward volatilities , and european option  prices both on the spot and forwards are derived and presented for all the  models in this chapter including a three factor , stochastic convenience  yield and interest rate model .  ?  chapter 7 shows how the prices of path dependent and american style options  can be evaluated for the models in chapter 6 . ? simulation schemes are  developed for the evaluation of european style options and applied to a  variety of path dependent options . ? in order to price options which  incorporate early exercise opportunities , a trinomial tree scheme is  developed . ? this tree is built to be consistent with the observed forward  curve and can be used to price exotic as well as standard european and  american style options .  ?  chapter 8 describes a methodology for valuing energy options based on  modelling the whole of the market observed forward curve . ? the approach  results in a multi - factor model that is able to realistically capture the  evolution of a wide range of energy forward curves . ? the user defined  volatility structures can be of an extremely general form . ? closed - form  solutions are developed for pricing standard european options , and efficient  monte carlo schemes are presented for pricing exotic options . ? the chapter  closes with a discussion of the valuation of american style options .  ?  chapter 9 focuses on the risk management of energy derivative positions . ?  in this chapter we discuss the management of price risk for institutions  that trade options or other derivatives and who are then faced with the  problem of managing the risk through time . ? we begin with delta hedging a  portfolio containing derivatives and look at extensions to gamma hedging \u0001 )  illustrating the techniques using both spot and forward curve models . ? the  general model presented in chapter 8 is ideally suited to multi - factor  hedging of a portfolio of energy derivatives and this is also discussed .  ?  chapter 10 examines the key risk management concept of value at risk ( var )  applied to portfolios containing energy derivative products . ? after  discussing the concept of the measure , we look at how the key inputs  ( volatilities , covariances , correlations , etc ) can be estimated . ? we then  compare the fours major methodologies for computing var ; delta , delta - gamma ,  historical simulation and monte - carlo simulation , applying each to the same  portfolio of energy options . ? in this chapter we also look at testing the  var estimates for various underlying energy market variables .  ?  finally , in chapter 11 we review modelling approaches to credit risk . ? we  look in detail at two quite different approaches , creditmetrics ( j . p . morgan  ( 1997 ) ) and creditrisk + ( credit suisse financial products ( 1997 ) ) for which  detailed information is publicly available . ? together these provide an  extensive set of tools with which to measure credit risk . ? we present  numerical examples of applying these techniques to energy derivatives .  ?  before we begin we stress that the models and methods we present in this  book are tools which should be used with the benefit of an understanding of  how both the \u0001 + tool \u0001 , and the market works . ? the techniques we describe are  certainly not \u0001 & magic wands \u0001 8 which can be waved at data and risk management  problems to provide instant and perfect solutions . ? to quote from the  riskmetrics technical document \u0001 & \u0001 ( no amount of sophisticated analytics will  replace experience and professional judgement in managing risk . \u0001 8 . ? however ,  the right tools , correctly used make the job a lot easier !\",0\n\"Subject: re : sevil yamen  anne ,  thanks .  vince  from : anne labbe / enron @ enronxgate on 04 / 20 / 2001 01 : 31 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : sevil yamen  good news , i finally received the memo from legal that accompanies project  bonuses . i have left sevil a voice mail to contact me at her earliest  convenience . sevil should receive this payment on april 30 th .\",0\n\"Subject: packet analysis software  hi stinson , as per our discussion , here is the e - mail from jim on the  subject . i convinced jim that this type of modeling effort is our gig and he  completely agrees . as per jim ' s suggestion , he and i will talk more on the  product while we are in denver . i suspect that we will arrange for the vendor  to come to houston and do a presentation on the product and install the  product on our machines . as for additional development we should get john  bloomer and jim together in a meeting and hash out the requirements from john  bloomer ' s perspective .  using vince ' s analogy , this tool allows us to deternime the size of the cargo  space needed for fedex - like delivery ( our streaming media products ) . whereas ,  the optical light path switching ( ds - 3 , oc - 3 , oc - 12 and oc - 48 ) based trading  will reserve the underlying airline routes , etc . so the packet based stuff  is looking at the required capacity from ip layer ( network and transport :  level 3 and 4 ) requirements . the optical light path is level 1 & 2 based  requirements . that is this tool will allow john bloomer to size ( actually we  will do the analysis for him ) the capacity requirement that he would need for  the products that he is developing .  that is my take on the difference , we ' ll find out otherwise .  once i finish off this discussion with jim in denver , i suggest putting  martin lin on the job to find out more about the product and do the leg work  to arrange for vendor demo and software installation . martin will keep samer  and chonawee updated on the information that he gathers . martin please start  checking on the web about this company and other similiar produts . i will get  you contact number for ebs and the vendor as soon as jim provides them to  me .  avici uses this product . avici is a next generation router vendor that is  selling terabit routers . ebs is an investor in that company .  ravi .  - - - - - forwarded by ravi thuraisingham / enron communications on 03 / 08 / 00 03 : 47  pm - - - - -  jim irvine  03 / 08 / 00 12 : 33 pm  to : ravi thuraisingham / enron communications @ enron communications  cc :  subject :  ravi  attached is an overview of what opnet technologies itdg and modeler ( v ) 7 . 0  offers out of the box . as previously mentioned , we have purchased this s / w  and are discussing potential co - development of module ( s ) currently not  supported . my belief is we can spin up a couple of your studs and develop  our own stuff faster @ a fraction of the cost . avici , used opnet to develop  a circuit emulation model for their tsr and cisco used opnet for mpls and dpt  modeling . these guys are willing brides at this point . we just need to  clearly identify their role in the network performance management and  modeling space . we will have to talk more in denver .  my flight arrives @ 10 : 00 ish and i am told that rental cars are scarce .  jim  - - - - - forwarded by jim irvine / enron communications on 03 / 08 / 00 10 : 18 am - - - - -  mvaghedi @ mil 3 . com  01 / 12 / 00 02 : 10 pm  to : jim irvine / enron communications @ enron communications  cc :  subject :  - version 7 . 0 capability list - final - vl . 3 . 00 . doc  mani vaghedi  mil 3 , inc .  itdg sales engineer  tel . ( 408 ) 562 - 5757 ext . 3200  fax : ( 408 ) 562 - 5758  mvaghedi @ mil 3 . com  http : / / www . mil 3 . com  * * * * * * * * * * * * * * * * * * * * * *  please attend the industry ' s most informative decision support seminar  register today for free seminar at www . mil 3 . com / seminars . html  * * * * * * * * * * * * * * * * * * * * * *  - att 2 . htm\",0\n\"Subject: pserc denver meeting  vince ,  the pserc meeting lance and i went to was both interesting  and boring . pserc has 11 school members and 30 industry members . its research  program consists of three stems : markets , transmission and distribution ,  and systems . ( enron ' s interests probably lie mainly in the first stem . )  in morning of the first day , researchers from universities  presented their project proposals . i found some of them  quite interesting . for example , shmuel oren , fernando alvarado ,  tim mount ( of cornell ) propose to study \"\" market redesign : incorporating  the lessons learned from actual experiences for enhancing market  design , \"\" shijie deng , s . oren et al propose to study \"\" power asset  valuation model in a market - based and reliability - constrained electric  power system . \"\" the first got funded but the second did not .  in the same afternoon industry and academic separated to have their  own discussion . i went to the academic discussion and lance the  industry one . i hope my presence there did not make things worse , for  the discussion revealed a lot of organizational chaos and confusion .  the proposal screen process got a lot of heat from participants .  the proposal process goes as follows : researchers first write a short  proposal to appropriate stem committee ( no industry participantion , it seems  to me ) ,  each committee then ranks the proposal and selects the top 3 or 4 . the  selected  proposals are then expanded to be present to the industry . industry then  gets to vote which proposals get funded . however , some researchers were  very unhappy about the initial ranking and selection process . there were  accusation of self - ranking , communication between stem committee and  member schools breaking down , and so on . some were even asking for  some sort of assurance that the project will be funded even before wrting it  ( the arguement was \"\" then it was a waste of our time to write proposals \"\" ,  which i found quite amusing ) .  all in all , i found the process was not taken seriously enough by university  researchers . pserc has been established for 5 years now and it still does  not have a proper proposal screen process , which is hard to believe . also ,  the communication among university researchers , between stem committee  and member schools , and most importantly , between researchers and industry ,  are not smooth as all .  since the proposals are voted by 30 or so industry members , the \"\" right \"\"  projects may not get funded . too many participants also make the decision  process very indecisive and quite painful to watch ( lance can comment on  this better ) . they also wanted to spread the fund among all schools which  made the voting a less authoritive .  i believe enron will not get much returns from join pserc ( price tag is  $ 40 , 000  per company per year ) . if we find some projects interesting , we can sponsor  the schools in the form of summer interns , the schools claim that most of the  fund  goes to support students anyway .  alex\",0\n\"Subject: great divide lodge  vince and shirley :  i have spoken with steve collins the national sales manager at great divide  lodge . he has agreed to honor our $ 6000 . 00 credit as long as we fulfill the  following two requirements :  confirm reservations prior to july 31  hold event prior to thanksgiving  the appropriate contact number is 970 . 453 . 3152 steven collins  thanks for working with us on that .  paula\",0\n\"Subject: re : interview with research dept . candidate rabi s . de , friday ,  august 11 , 2000  i apologize for not putting the date of this interview . for everyone but  tanya and paulo , the interview time is already entered on your calendars for  august 11 , 2000 . again , sorry for the oversite .  - - - - - - - - - - - - - - - - - - - - - - forwarded by anita dupont / na / enron on 08 / 01 / 2000 09 : 16  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  stinson gibner @ ect  08 / 01 / 2000 09 : 12 am  to : anita dupont / na / enron @ enron  cc :  subject : re : interview with research dept . candidate rabi s . de  on which day are the interviews ?  anita dupont @ enron  07 / 31 / 2000 03 : 49 pm  to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , grant  masson / hou / ect @ ect , pinnamaneni krishnarao / hou / ect @ ect , tanya  tamarchenko / hou / ect @ ect , zimin lu / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect ,  paulo issler / hou / ect @ ect  cc :  subject : interview with research dept . candidate rabi s . de  the following interview schedule has been set up for rabi s . de by sean  grady , hr staffing :  9 : 00 - 9 : 30 am vince kaminiski  9 : 30 - 10 : 00 am stinson gibner  10 : 00 - 10 : 30 am grant masson  10 : 30 - 11 : 00 am krishna krishnarao  11 : 00 - 11 : 30 am tanya tamarchenko  11 : 30 - 1 : 00 pm lunch with tanya tamarchenko and zimin lu  1 : 00 - 1 : 30 pm zimin lu  1 : 30 - 2 : 00 pm vasant shanbhogue  2 : 00 - 2 : 30 pm paulo issler  please call me if you have any questions or if a conflict develops and you  need to change your interview time . thanks . anita\",0\n\"Subject: charles shen  vince : update on charles shen : he called me this morning to verify that we  had received his faxed paystub . i told him that we had , and that i had  relayed the information to you , but hadn ' t heard back from you yet . he is  definitely interested in working for enron , and ended up saying that he  didn ' t mean to be demanding and really only wanted a package a little better  than the one he has at williams .  i told him that i would follow up with you to see where you wanted to go from  here , and that i would get back to him as soon as i received some  instructions from you .  please let me know if you would like me to do anything else or find out any  more information from him .  molly\",0\n\"Subject: siam conference  dear mr . kaminski ,  i was one of the participants of the siam conference which was held last week - end , and i have very much enjoyed your presentation . at the end of the session , i was hoping to talk to you , but unfortunately you were already gone . you said that if we were interested , you could e - mail a copy of your talk . i would appreciate if you could send a copy to this e - mail address .  i am a mathematics ph . d . student at texas a & m university and i will be graduating this august . i am very much interested in working in the modeling of energy markets . can you please tell me whom i should send my resume , and who i should contact in your company about a possible position in your research group .  thank you for your time .  sincerely  g . aysu bilgin  texas a & m university  department of mathematics  get your free download of msn explorer at http : / / explorer . msn . com\",0\n\"Subject: re : meeting on feb 8 , 2001  fyi .  this is the list of the petronas executives visiting enron on feb 8 .  i have invited them to lunch . would you like to join me for lunch .  i would like to propose a short courtesy meeting at 10 with jeff / john ( 5 -  10 minutes ) ,  followed by rac / research presentation till 11 : 30 .  vince  p . s . i shall reserve a conference room for this meeting  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 08 / 2001  10 : 02 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  azminab @ petronas . com . my on 01 / 07 / 2001 06 : 37 : 33 pm  to : vince . j . kaminski @ enron . com , shirley . crenshaw @ enron . com ,  khairuddinbmjaafar @ petronas . com . my  cc :  subject : re : meeting on feb 8 , 2001  dear kaminski  4 members from corporate risk management unit  1 . iqbal abdullah - general manager  2 . nur azmin abu bakar - head , risk assessment & controls  3 . zulkifli a rahim - head , risk measurement & systems  4 . adnan adams - head , special projects  regards  vince . j . kaminski @ enron . com on 03 / 01 / 2001 09 : 45 : 02 pm  to : azminab @ petronas . com . my  cc : vince . j . kaminski @ enron . com , shirley . crenshaw @ enron . com  subject : re : meeting on feb 8 , 2001  dear mr . nur azmin abu bakar ,  thanks for your prompt reply .  please , let us know how many members of your team will  visit enron .  i look forward to our meeting on february 8 .  vince kaminski  azminab @ petronas . com . my on 01 / 02 / 2001 06 : 38 : 33 pm  to : vince . j . kaminski @ enron . com , khairuddinbmjaafar @ petronas . com . my ,  shirley . crenshaw @ enron . com  cc :  subject : re : meeting on feb 8 , 2001  dear kaminski ,  happy new year and thank you for the reply . we are honored to have  lunch with you and your team however we have another appointment at  2 . 30 p . m .  regards  vince . j . kaminski @ enron . com on 03 / 01 / 2001 07 : 38 : 19 am  to : azminab @ petronas . com . my  cc : vince . j . kaminski @ enron . com , shirley . crenshaw @ enron . com  subject : meeting on feb 8 , 2001  dear sir ,  i would like to apologize for the delay in responding to your fax .  i was on vacation for the last few days .  i shall be honored to meet your delegation on thursday , february 8 at 10 : 00  a . m .  please , let me know if you will be free for lunch after the meeting .  vince kaminski\",0\n\"Subject: re :  vince / stinson ,  the note below gives us the authorization to proceed . i have received no  comments from wade on my signing , but i have his approval for the study , so i  will proceed on that basis .  since we do not have any format of confidentiality agreement from jim , let us  use the one signed by the legal team for the japan study by henwood . in this  reference , could you ( stinson ) get this from either heather mitchell , or john  viverito ( who is the lawyer involved with japan , reporting to alan  aronowitz ) . we could use that as template and proceed before friday on that  basis .  regards ,  sandeep .  - - - - - - - - - - - - - - - - - - - - - - forwarded by sandeep kohli / enron _ development on  01 / 03 / 2001 10 : 17 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  james a hughes  01 / 03 / 2001 11 : 08 pm  to : sandeep kohli / enron _ development @ enron _ development  cc : wade cline / enron _ development @ enron _ development  subject : re :  i have already given authorization to proceed . however , i did not know we  were providing the data . that is the thing i am looking for most - the raw  information on what the grid and stack looks like . we need this asap . how  do we get this done quickly ?  jim  sandeep kohli  01 / 02 / 2001 10 : 55 pm  to : wade cline / enron _ development @ enron _ development , james a  cc :  subject :  wade / jim ,  my apologies for missing the conference calls yesterday and today . i was not  able to download my messages in time for the calls , but i will be on going  forward .  while i am still on vacation , i have been in conversation with vince and the  research group following up on the henwood study we had spoken about . we  have received a formal proposal from henwood , and they are wanting  authorization to go forward . the study will get us the despatch forecasts  for the next 8 - 10 years , and will deliver the results by january end , per  henwood .  vince and i have reviewed the proposal , and feel that we should proceed . we  will be fine tuning the assignment as we go forward . the big issue there is  the data for the model / s , and at this point henwood is relying more on us to  provide the data . we spoke to henwood yesterday , and i will be on another  call with them on friday .  i need your confirmation on the following :  that i have your approval to proceed ahead with the study  that the study shall be paid for by dpc , and if so , is it ok for me to sign  the authorization being sent by henwood  we will need a formal confidentiality agreement to be in place by tomorrow  ( jim - if you have a particular format , please let me know )  i am leaving the issue of hourly rates and cost to the research group since  they have more experience in dealing with groups like henwood . they feel the  costs are reasonable , and i will leave it at that .  we will need to collect data from the different sources we have in india , and  i have proposed that there be a formal session in india between henwood and  the ene team in india in the week between 10 th and 15 th . this is important  to insure that there are no disconnects , and that there are no illusions on  the quality of the data that will be available . it will also help us  formalize the scope and better define the issues . in order to meet the  deadlines , the data will have to be in place by january 15 th .  i will call jim later today ( i had called but you were on a call ) . i am here  till the weekend when i leave for india . please let me know if this  arrangement is ok .  regards ,  sandeep .\",0\n\"Subject: rtp project  thanks vince . i think the right person is anoush farhangi .  jh  john henderson  - - - - - forwarded by john henderson / hou / newpower on 03 / 19 / 2001 10 : 32 am - - - - -  vince j kaminski @ ect  03 / 19 / 2001 08 : 12 am  to : john henderson / hou / ees @ ees , pinnamaneni krishnarao / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect  subject : rtp project  john and krishna ,  i am sending you an outline of a conference at stanford on topics related to  demand - side pricing and management in the power markets .  please , let me know if you are personally interested and who else  in your respective organizations would like to attend .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 19 / 2001  08 : 10 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  hill huntington on 03 / 15 / 2001 05 : 26 : 55 pm  to : vkamins @ enron . com  cc :  subject : rtp project  vince ,  targetted conference date is th - f june 21 - 22 at stanford . enclosed in the  recent revision to what i sent before .  great to meet you ,  hill  - retail notes . rtf  hillard g . huntington  emf - an international forum on  energy and environmental markets voice : ( 650 ) 723 - 1050  408 terman center fax : ( 650 ) 725 - 5362  stanford university email : hillh @ stanford . edu  stanford , ca 94305 - 4026  emf website : http : / / www . stanford . edu / group / emf /\",0\n\"Subject: re : a very good candidate  ok , will get that started . we ' ll let you know when rodney can be available  for a trip to houston and will follow up with you to obtain the complete  interviewer list .  - elizabeth  vince j kaminski  03 / 01 / 2000 09 : 31 am  to : elizabeth grant / hou / ect @ ect  cc : stinson gibner / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , vince j  kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect  subject : a very good candidate  elizabeth ,  we got a very good candidate we would like to bring over for an interview .  he came through an agency on london ( the address is on the resumes ) .  the contact at the agency is anthony regamey .  please , contact them to arrange an interview in houston . please , include  me , stinson gibner , vasant shanbhogue , tom gros ( ebs ) , jean mrha ,  brad blesie . we shall think about some other names later .  vince\",0\n\"Subject: houston trip  hi jaideep !  my first suggestion is that you come to houston as scheduled ( and arranged  with wharton nearly 3 weeks ago ) . alternatively , rely on your tiger  teammates to gather information necessary to respond to the project . should  circumstances lead you to decide not to come for this trip , please return the  ticket issued to you . should it make sense for you to visit enron some time  in the future , we can discuss arrangements at that time .  hope to see you soon !  - - christie .  - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 01 / 18 / 2001  01 : 22 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" jaideep singh \"\" on 01 / 17 / 2001 08 : 58 : 51 pm  to :  cc :  subject : houston trip  hello christie ,  thank you for organizing the wharton trip to enron . unfortunately , the  flight setup for tomorrow is way too early for me as i ' ll have to miss over  4 hours of classes , which i cannot afford to do . i tried changing the time  with continental and there latest flight leaves at 6 pm - which does not work  for me ( smack in the middle of my 3 hour class )  thus the dilemma that i find myself in is the following :  a . try a different flight as i can make any flight after 7 : 30 pm ( however , i  have no control over reservations / budget etc )  b . as it is possible to delay travel upto 1 year , use this ticket to come  some other time  sorry for this but i just saw the bookings today .  any suggestions ?  thanks ,  jaideep\",0\n\"Subject: marketpoint license agreement  john / vince :  i really enjoyed the meeting the other day with you and a broad cross  section of your people . thank you very much for setting it up , and thank  you for giving me the opportunity to speak with your people .  as i mentioned to john , i am sending you the license paperwork for  marketpoint . i have attached our standard license agreement for your  consideration . as i mentioned , the license agreement covers the entire  bundled product , which includes  ? north american gas , short and long term  ? north american electricity , short and long term  ? world gas  ? western european gas  ? world oil  we are just finishing porting the world oil , world gas , and western european  gas models over from our old ( now obsolete ) software system into  marketpoint , so they will not be fully tested and complete for a couple of  months . however , the gas and electricity models for north america are  presently complete and tested . that should allow us to give you an  attractive price before the full worldwide toolkit is available throughout  your worldwide business .  as i understood it , you will want the gas modeling capability first and will  want to defer decisions on electric or other capability . as i mentioned at  the meeting , we are prepared to offer that for approximately  the fully  bundled price . as you read the license agreement , you will see that the  software licenses for $ 100 , 000 annually , the gas data for $ 5 , 000 , and the  electric data for $ 10 , 000 . marketpoint will agree to license you the gas  model plus the data for  the software license plus the data license for a  total of $ 55 , 000 annually . this is just under  the fully bundled price . i  think that is consistent with the discussions at our meeting , and from  marketpoint \u0001 , s perspective would provide a great basis to move forward  together with enron . if or when enron ever desires to \u0001 & scale up \u0001 8 to another  model or model ( s ) from the marketpoint portfolio , we will simply scale you  up to the entire license agreement . this will allow you to decouple the gas  decision from any other decisions you might make . ( i will be glad to put  this additional pricing provision into the agreement if you decide to move  forward . )  i felt i was able to communicate the philosophy , scope , and operation of our  approach during the meeting and to deliver you much of the information you  might need to evaluate whether marketpoint meets your needs . i thought you  were able to see the depth and sophistication of the product yet at the same  time its simplicity and effectiveness . i thought you were able to see the  benefits of the marketpoint dimension of economic equilibrium as a  complement and supplement to other approaches you will assuredly use . i  would be interested in your impressions and those of your colleagues . i  look forward to your response and to moving ahead together . we view you as  a very important prospective customer and client and will work with you to  earn and secure your business .  if you decide to license marketpoint , we can arrange to transfer and mount  marketpoint and the short term narg model ( which is the model we suggest you  begin with ) and travel to houston to deliver our 1  day training seminar .  our clients are usually very fluent after that 1  day training seminar .  thereafter , we would want you to work with the short term narg model for a  few weeks while you get up to speed , very fluent , and very comfortable  before you take delivery of the longer term version of narg several weeks  later .  thanks again , and all the best . if there is some item from the meeting that  i might have forgotten to send , please remind me . my notes don ' t show  anything , but i was speaking a lot rather than writing notes during the  meeting and might have overlooked something someone wanted .  dale nesbitt  president  marketpoint inc .  27121 adonna ct .  los altos hills , ca 94022  ( 650 ) 218 - 3069  dale . nesbitt @ marketpointinc . com  - license . doc\",0\n\"Subject: mgmt 656  here is your latest roster . we are up - to - date on all changes but , of  course , the students may still drop / add up to the second week of module 5 .  when the time comes , please check your roster carefully and make sure that  the people on the list really are attending your course . mistakes happen so  i just would like to make sure we have a correct record .  as always , let me know if you would like the excel folder with e - mail  addresses . i don ' t send them at the same time to avoid overwhelming our  e - mail system . thanks for your help !  - pam ( 713 - 348 - 6223 )  - 656 . doc\",0\n\"Subject: mit financial engineering pro - seminar  vince ,  i have received a call from mit asking if enron would be interested in  sponsoring a financial engineering pro - seminar .  this means that enron would propose a problem that would have its solution  developed by students in the financial engineering track . these students  would present the findings in the end .  i think that enron has already sponsored a financial engineering pro - seminar .  i remember something about real options at the time i was at school .  please , let me know if enron has the interest , specifically the research .  talking here at the weather desk , mark tawney expressed interest . if you  agree , we ( the weather desk ) could co - sponsor this pro - seminar with the  research . the idea , then , would be to propose a problem connected to weather  trading .  please , give me your thoughts about this issue .  thanks ,  claudio\",0\n\"Subject: co - integration  zimin ,  andrea reed asked for our help in looking for end - users of steel which might  be used to take a commodity hedge position . she will work on identifying  potential equities or indices which might be used , and then we will analyze  them for correlation or co - integration with steel prices . andrea should be  contacting you next week regarding the project . hector has done  co - integration analysis in the past and has the tools to do this project .  thanks ,  stinson  anrdrea : we will also need you to identify which steel prices / indices  should be used in this analysis .\",0\n\"Subject: gas transportation meeting - 8 / 16 / 00  hello everyone :  a meeting has been scheduled between the addressees for wednesday ,  august 16 th at 4 : 00 pm in ebl 938 .  if you have any questions , please let me know .  regards ,  shirley\",0\n\"Subject: presentation at ut  vince ,  i appreciate your response to my request for you to speak to my  class on real options . i thought you might enjoy the following exchange of  emails that occurred yesterday . perhaps some of these issues could be  addressed in your talk .  jim  - - - - - original message - - - - -  from : sheridan titman  sent : friday , march 31 , 2000 9 : 11 am  to : jim dyer  subject : re : real options course feedback  jim :  your student has raised some difficult questions . i would recommend ehud ,  but i thought that the finance people have the answers in cases with  complete markets and that we rely on the decision science people for cases  with incomplete markets .  if it would help , i can come in at 6 pm after my class in a couple of weeks .  sheridan  sheridan titman  department of finance  college of business administration  university of texas  austin , texas 78712 - 1179  512 - 232 - 2787 ( phone )  512 - 471 - 5073 ( fax )  titman @ mail . utexas . edu  - - - - - original message - - - - -  from : jim dyer  sent : thursday , march 30 , 2000 4 : 37 pm  to : sheridan titman  subject : re : real options course feedback  sheridan ,  which of your classes do you want to miss ? just kidding . actually  you probably told me that before . can you suggest someone else who would be  a good choice to discuss the use of option theory in the context of  incomplete markets , and to address some of the types of questions raised in  the note from the student ?  jim  - - - - - original message - - - - -  from : sheridan titman  sent : thursday , march 30 , 2000 5 : 58 pm  to : jim dyer  subject : re : real options course feedback  jim :  i teach at the same time as you do .  sheridan  sheridan titman  department of finance  college of business administration  university of texas  austin , texas 78712 - 1179  512 - 232 - 2787 ( phone )  512 - 471 - 5073 ( fax )  titman @ mail . utexas . edu  - - - - - original message - - - - -  from : jim dyer  sent : thursday , march 30 , 2000 11 : 32 am  to : sheridan titman  subject : fw : real options course feedback  sheridan ,  see the comments below . i don ' t mean to put you on the spot , and  have not announced anything in class , but i am hoping that you could visit  my class for about an hour one thursday afternoon to discuss your views  regarding applications of option pricing concepts to \"\" real options \"\" . as a  reminder , i ' ve attached a course outline . chris kenyon from schlumberger is  speaking on april 13 , and vince kaminski has tentatively agreed to speak on  april 20 .  i am going to be out of town on april 27 , so that leaves either next  thursday ( april 6 ) or may 4 . would either of those times work for you ? i ' m  not thinking of any preparation , but more of an informal discussion of the  \"\" philosophical issues \"\" related to real options work .  jim  - - - - - original message - - - - -  from : jim dyer  sent : thursday , march 30 , 2000 1 : 24 pm  to : ' jclevenger @ optionii . bus . utexas . edu '  subject : re : real options course feedback  josh ,  some very thoughtful observations . as you know , i had invited one  finance professor to our class on arundel , but he was out of town . i do  plan to invite sheridan titman to discuss the issue of using the option  models in situations where there is no underlying security that is traded .  i do think it is important to face that issue , which is actually covered at  a theoretical level in our last couple of readings .  the issue of volatility is also an excellent issue for further  discussion , as you suggest . so far , we ' ve been looking at cases where  volatility is \"\" given \"\" . the problem of finding an \"\" objective \"\" measure of  volatility for a project reminds me of the problem of finding the correct  risk adjusted discount rate , which is not surprising since the concepts are  almost two sides of the same plate . one approach , of course , is to do some  modeling using traditional decision analysis tools , including subjective  probabilities , but the finance people who write options articles don ' t like  to think about such ideas .  i ' ll try to address these issues in more detail as the semester  continues . i think it was important to surface some of these points early ,  and to come back to them after we have seen how to apply the methods in a  naive sort of way .  thanks for the feedback and comments .  jim  - - - - - original message - - - - -  from : jclevenger @ optionii . bus . utexas . edu  sent : thursday , march 30 , 2000 8 : 42 am  to : jim . dyer @ bus . utexas . edu  cc : josh - clevenger @ reliantenergy . com  subject : real options course feedback  after overcoming the initial ( i hope ) overload of materials and tools  presented  thus far in the semester , it appears to me that you are achieving the  objective  of making us comfortable with optionality valuation as applied to a variety  of  problems which are outside the borders defined by a liquid market of traded  financial elements .  as a constructive feedback , you have been forthright with us in marking off  areas of this subject which are still controversial . i also realize that  rightly so , real - world application of this type of analysis without a robust  understanding of finance may degenerate into a succession of assumptions  that  result in a \"\" house of cards \"\" effect . my opinion at this point is that two  issues are of potentially \"\" make - or - brake \"\" importance if i am to persuade my  superiors to accept these methods for valuations outside the realm of  projects  whose value is primarily driven by the value of commodities backed by  financial  instruments . these issues are easy to guess :  1 ) discounting and risk free rates : i do not sense that anyone in the  class  has put forth convincing arguments as to the proper application of time  value  questions in the absence of liquidity . is there someone within the finance  department that can present a firmer position on this question ?  2 ) volatility : i found winston ' s examples on this metric succinct . i would  recommend that in future years you dedicate some hours of class time to this  subject . my criticism again relates to messy problems . i anticipate  arguments  against real option applications based on the dispute of volatility  measures .  if i were a conservative financial manager , i would argue that :  * * * two - a : implied volatility derived from an industry specific slice of  equity  options is a shotgun approach - - the projects being valued are of a tranche  which may in fact have a significantly different outcome variance than the  weighted average measured by the equities utilized . oil , gas and electricty  are  good examples the major players are competing on many different levels of  the  value chain . smaller companies do exist which are dedicated to one strata ,  but  what about projects that want to exploit opportunies across strata in a  vertically integrated company ?  * * * two - b : based on the following skepticism - if a real option value is  being  proposed for a new business venture ( some new unexploited opportunity , )  there is  some paradox embedded in the increased value based on high volatility in new  ventures and the high risk of failure . this skepticism is likely to be less  acute in high - tech sectors where the huge upside of new ventures is paraded  before us daily by nasdq touts . it is a much harder sell to \"\" mature \"\"  industries .  of particular interest in the power industry are investments centered around  opportunities arising from restructuring of electricity and natural gas  sectors  as regulation is removed . a large proportion of the risk is embedded in  ongoing  changes of public policy on an international basis . as an intentionally  screwed - up example , can anyone other than a financial genius correctly asses  volatility for u . s . companies investing in seed projects in mexico based on  speculation of the inevitable dismantling of the national utility ( cfe ) and  pemex ?  james s . dyer  fondren centennial chair in business  department of management science and information systems  cba 5 . 202  the university of texas at austin  austin , texas 78712 - 1175  email : j . dyer @ bus . utexas . edu  telephone : 512 - 471 - 5278  fax : 512 - 471 - 0587\",0\n\"Subject: re : sfa individual registrations  hi julie ,  it is so nice to hear from you . i have had several conversations with  the houston compliance people regarding how to keep my sfa licenses current .  as per your request , i will respond to your questions in your email :  - - - - - original message - - - - -  from : russell , julie  sent : friday , april 06 , 2001 10 : 19 am  to : mack , iris  subject : sfa individual registrations  iris  your mails regarding sfa registration finally made their way to me , as i look  after all enron ' s individual registrations with the sfa .  at present , we are able to register overseas based individuals , although this  may change towards the end of the year when the fsa takes over from the sfa  as lead regulator in the uk .  i am sort of overseas . however i will be spending some time in the london  office ( which is another reason why i don ' t want to lose my sfa  designations ) . as a matter of fact , i will be coming to london office in a  week or two - and staying there for a while .  there is still a lot of uncertainty surrounding how the fsa will implement  individual registrations , but it has stated that anyone registered with the  sfa at the point at which the fsa takes over , will be automatically  ' grandfathered ' across to the new regulator . time will tell , what will  happen thereafter .  what we need to do as far as your registration is concerned , is to submit a  transfer form to the sfa to move your registration to enron . i shall put a  form in the mail to you ( please let me know where to send it ) for signature  and update of personal details .  my enron office address in houston is as follows :  iris mack  research department  1400 smith street , 1972 d  houston , texas 77002 usa  as we have to submit the form to the sfa with original signatures , please  return it to me at enron house and i can get it authorised by our sfa  compliance officer , jonathan marsh . i will then inform you when i receive  confirmation of your acc  could you respond to the following by return e - mail ;  name of the sfa regulated firm where you were last registered ;  banque nationale de paris paribas at 10 harewood avenue in london  date ( approximation ) when you left the above ;  august 2000  type of registration you held - please note we can only register you in the  following registers ; general representative , futures and options  representative , securities representative or corporate finance representative  i passed three exams : derivatives , securities and regulations  the final question is whether you are going to be based in houston  permanently or whether you know at this stage if / when you will be returning  to the uk .  right now i will be spending time in both houston and london . see above  explanation .  hopefully i have answered all your questions . please let me know if you  require additional information .  kind regards ,  iris  look forward to hearing from you  best regards  julie  julie russell  compliance and regulatory\",0\n\"Subject: var for metals  it is my preference to have an aggregated var methodology for the metals  business as soon as possible ( version la ) . i do not want to poison progress  with my opiniion , but i think that the critical first step is to find a way  to aggregate positions in coarse buckets , perhaps sacrificing precision for  speed , based on \"\" rules \"\" that oerations can deliver , research can stand behind  and commercial will accept . , and using an equally coarse var calculation  ( the equivalent of ad - hoc var ? ) that can be delivered to the \"\" official books  and records \"\" on a daily basis . this i believe would be acceptable for a 2 - 3  month time frame ( at which time we get versionlb ) as opposed to waiting 2 - 3  months to implement a better process and have nothing in the interim .  ultimately , i would look for version 2 a to be delivered and very defendable  by 1 / 1 / 01 . this will require indulgence and compromise on all fronts but i  cannot conceive of a better way . please let me know if this is consistent  with your understanding . a critical point from my perspective is that the mg  commercial team and metal operations staff understand their role in making  this happen and willingness to accept the consequences . i look for you to  take the lead as leader of the integration to do so . if you need any input  from the rest of us to underscore the importance please let us know . as i  alluded to on the phone , the people in houston that have been involved in the  var process have been through an extraordinary period of detailed scrutiny of  var by commercial and have been hindered by the lack of basic understanding  by all parties as their responsibilities . given the distance and the newness  of the metals personell , i fear that this could set us all up for some  surprises and some very uncomfortable communication , much of which is not  entirely necessary .  thanks  ted  eric gadd  07 / 21 / 2000 11 : 46 am  to : ted murphy / hou / ect @ ect , bjorn hagelmann / hou / ect @ ect  cc : richard sage / lon / ect @ ect  subject : attached fax  ted and bjorn -  we plan to release draft recommendations on metal position limits by close of  business on 24 july and have asked vince to prepare a v @ r computational  methodology prior to the 7 / 8 aug bod meeting .\",0\n\"Subject: re : question  will do .  john  at 11 : 15 am 2 / 15 / 01 - 0600 , you wrote :  >  > john ,  >  > i think it ' s a good idea . please , go ahead and call  > him directly .  >  > vince  >  >  >  >  > \"\" john d . martin \"\" on 02 / 13 / 2001 06 : 12 : 48 pm  >  > to : vkamins @ enron . com  > cc :  > subject : question  >  >  > vince ,  >  > what do you think about asking andy fastow to come to the texas finance  > festival this april as our luncheon speaker ? if you agree i ' ll go ahead  > and call him . if you have an opportunity to speak with him about the  > conference that would be great . the date is april 21 st ( that ' s a  > saturday ) .  >  > hope you are enjoying ny . shirley tells me that you ' re running up your  > frequent flyer miles again .  >  > your friend ,  >  > john  >  > > date : tue , 13 feb 2001 17 : 29 : 42 - 0600  > > from : sheridan titman  > > subject : re : oops  > > x - sender : titman @ mail . utexas . edu  > > to : \"\" john d . martin \"\"  > > x - mailer : windows eudora light version 3 . 0 . 1 ( 32 )  > >  > > john :  > >  > > i like your enron article . i will assign it to my students . do you think  > > we can get the cfo for the tff ? i saw that he is making a presentation to  > > a conference of cfos in dallas about capital structure .  > >  > > sheridan  > >  > > at 09 : 15 am 2 / 7 / 01 - 0600 , you wrote :  > > >  > > >  > > >  > > > john d . martin  > > > carr p . collins chair in finance  > > > finance department  > > > baylor university  > > > po box 98004  > > > waco , tx 76798  > > > 254 - 710 - 4473 ( office )  > > > 254 - 710 - 1092 ( fax )  > > > j _ martin @ baylor . edu  > > > web : http : / / hsb . baylor . edu / html / martinj / home . html  > > sheridan titman  > > department of finance  > > college of business administration  > > university of texas  > > austin , texas 78712 - 1179  > >  > > 512 - 232 - 2787 ( phone )  > > 512 - 471 - 5073 ( fax )  > >  > > titman @ mail . utexas . edu  > >  > john d . martin  > carr p . collins chair in finance  > finance department  > baylor university  > po box 98004  > waco , tx 76798  > 254 - 710 - 4473 ( office )  > 254 - 710 - 1092 ( fax )  > j _ martin @ baylor . edu  > web : http : / / hsb . baylor . edu / html / martinj / home . html  >  >  >  >  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: non - firm power curve building  hi vince ,  amitava and i have received a request to build a non - firm power curve for  each region from david hoog ' s double trigger folks . the objective , as they  explain it , is to allow the desk to buy non - firm from the market , buy david ' s  outage product , and sell firm to the market . accountants would like a curve  to mark the non - firm position .  my initial thought is that the desk should provide this non - firm curve , but  it seems that this market is very illiquid and they are reluctant so they  have put the ball in david hoog ' s court to build the curve if david wants to  sell his product internally to the desk .  assuming we build the curve , the next issue is how to define \"\" non - firm \"\" ?  the only way i can think of is to tie the non - firmness to a specific  generation unit or group of units . this will allow the purchase of david ' s  outage product to cover the non - firmness risk . tying the definition of  non - firmness to a whole region seems implausible - - - what does it mean to  give a marketer the option to not deliver power if there is any problem  anywhere in the region ? consequently , the non - firm curve takes on a  unit - level interpretation , and not a region - level interpretation .  consequently , i do not see how we can talk about the \"\" non - firm curve for the  region \"\" ? we will need to build a non - firm curve for each generation unit or  group of units .  maybe i could get your thoughts later today .  thanks ,  vasant\",0\n\"Subject: dot . odpowiedzi na list  mam nadzieje , ze moja odowiedz na list sz . pana z dn . 19 . 01 . 01 doszla do pana .  byl on wysylany z niepewnego komputera .  jezeli nie doszedl , to prosze dac znac ( elektronicznie oczywiscie ) .  serdecznie pozdrawiam  grazyna piesniewska\",0\n\"Subject: credit model status update  bill ,  i am forwarding a memo from vincent tang about the new credit model .  english may be imperfect but the message is clear .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 10 / 2000  02 : 31 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  vincent tang  02 / 08 / 2000 02 : 43 pm  to : vince j kaminski / hou / ect @ ect , grant masson / hou / ect @ ect , tanya  tamarchenko / hou / ect @ ect  cc :  subject : credit model status update\",0\n\"Subject: high frequency market data analysis  stinson ,  we are going to update you and vince the progress of the eol george project .  friday , 9 : 30 am - 10 : 00 am in eb 1938 .  bob ,  we may get some other ideas from the following book , take a look to see if it  is worth to buy one .  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  risk executive reports ? ?  ? high - frequency financial market data  sources , applications and market microstructure  by dr owain ap gwilym and professor charles sutcliffe , school of management ,  university of southampton , uk  a high - quality , non - technical resource on an increasingly invaluable topic  for all users of high - frequency data .  10 sections cover the many aspects of high - frequency data by covering a broad  set of information ranging from data suppliers to detailed research angles  topics covered include : managing hfd ; arbitrage opportunities ; intra - day  seasonalities ; regulation ; market efficiency and market making .  format  price  report  ol 75 / us $ 280  a 4 , 162 pp  published : august 1999  review | table of contents | order now in o | order now in $  for other titles of interest please click here :  risk executive reports  send this page to a colleague  high - frequency financial market data  contents  1 . introduction and overview  overview and background  the motivation and demand for high - frequency data  the uses of high - frequency data  structure of this report  2 . sources and types of high - frequency data  types of data  data supplied by exchanges  panel 2 . 1 ( by paul macgregor , liffe ) - the sourcing and preparation of liffe  tick data  specialist data providers  real - time data providers  summary  3 . managing and exploiting high - frequency data  panel 3 . 1 - illustrative high - frequency data  data storage , filtering and cleaning  the treatment of time  panel 3 . 2 - olsen filtering system  constructing continuous series  key considerations in manipulating high - frequency data  modelling issues  summary of chapter  4 . arbitrage opportunities in equity markets  what is arbitrage ?  empirical studies of arbitrage opportunities  arbitrage in equity markets  individual arbitrage trades  5 . intra - day seasonalities  intra - day patterns in returns  intra - day patterns in volume  intra - day patterns in volatility  intra - day patterns in the bid - ask spread  intra - day patterns in the autocorrelation of returns  intra - day patterns in hedge ratios  other intra - day patterns  effects of news announcements on intra - day patterns  the turn - of - the - year effect and high - frequency data  conclusions  6 . links between markets  leads and lags in prices between different types of market based on the same  asset  the 1987 stock market crash  leads and lags in price volatility  links between geographically separated markets  rival markets  7 . destabilisation of markets  relative volatility  programme trading and volatility  price movements at expiration  conclusions  8 . regulations governing the markets  regulation of dual capacity  circuit breakers  restrictions on short selling  taxes on transactions  tick size and price clustering  delayed publication of trades  conclusions  9 . market efficiency  weak - form efficiency  semi - strong - form efficiency  conclusions  10 . market makingrevision of prices  other aspects of financial markets  determinants of the bid - ask spread  block trades  conclusions  11 . conclusion and future developments  references  ? ? ?\",0\n\"Subject: contact info  i will be out next week . if there are any problems with or questions  concerning the grains report , please let me know . i can be reached on my  cell phone at 713 - 303 - 5973 and will periodically check voice mail . have a  good holiday !  nelson\",0\n\"Subject: hello vince  vince ,  two things . do you have any comments on the interview document ? second , i  want to submit a proposal to the european financial management association  meetings for next may based on our paper . the meeting is in may and is  held in paris . hope you can come ( assuming the program committee likes our  proposal - - i won the best paper award at last year ' s meeting so maybe we can  do it again ) .  looking forward to hearing form you so i can get bob ' s response to the  questions .  john  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: sabbatical  dr . kaminski :  ?  i had intended to contact you regarding a position at enron this summer , but  the department really needed me to teach a section of undergraduate  corporate finance this summer . ? if all goes well , and ? there is a place for  me at enron , i would be able to start after the summer session ends in  late ? july . ?  ?  i ? discussed the possibility of a sabbatical at enron with drs . tom arnold  and alex butler , both of whom send their regards , and they both felt the  experience would be invaluable given my research and career objectives . ? dr .  arnold and i agreed that a sabbatical of 1 - 2 years would be optimal . ? i feel  that it would be difficult to get a good idea of where the company is  headed , and to show how i can be a valuable team member in helping it get  there ? in much less than a year . ? he was afraid that the university would  begin to grumble if i was gone for much more than 2 years . ? any suggestions ?  ?  thank you again for your help , and i look forward to hearing from you .  ?  ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?  ? ? ? ?  ?  ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?  ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? cordially ,  ?  ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?  ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? shane green\",0\n\"Subject: re : li sun  jeff ,  i met with li sun last night and i shall take her for the first rotation .  she comes across as a very smart and highly motivated person .  i am planning to go with mark palmer to wharton in october to  finalize the deal .  vince  from : jeffrey a shankman 08 / 23 / 2000 06 : 31 am  to : jana giovannini / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : li sun  i ' ve asked vince to get involved with you about getting li into vince ' s  group . this issue needs to be resolved by week ' s end - - we look like we don ' t  have our act together , and that bothers me . especially since we are about to  make a significant monetary investment at wharton , and we could have a new  wharton recruit disgruntled .  vince , can you set up a meeting with you , me and mark palmer to follow up  with our meeting with skilling ? thanks very much . . .  jeff\",0\n\"Subject: univ of texas  julia ,  the lawyers at ut at austin have some questions regarding your corrections  to the non - disclosure agreement .  specifically , they want to discus the arbitration provision . the name of the  lawyer at ut  is gene bartley , 512 471 2995 .  vince\",0\n\"Subject: enron : wefa luncheon may 1  would you like to attend the presentation and join me for lunch  with wefa .  any other suggestions re attendance .  please , let shirley know .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 11 / 2001  12 : 36 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" peter mcnabb \"\" on 04 / 11 / 2001 11 : 52 : 47 am  to :  cc : \"\" kemm farney \"\"  subject : enron : wefa luncheon may 1  dear vince  thanks for your voicemail and delighted to have you confirm lunch on may 1 .  kemm farney the head of wefa ' s electric power services will be travelling  with me this time . i expect there may be other enron colleagues that may  care to join us for lunch so don ' t hesitate to invite as you see fit . for  reservations purposes , perhaps you arrange to let me know numbers .  kemm would also be prepared to informally present our current power outlook  to a larger group at 11 : 00 , if this would be of interest .  as you know , these types of presentations are part of all your wefa energy  retainer package . i will also plan to update you with respect to our current  multi client study schedule for the remainder of the year .  regards , peter  peter a . mcnabb  vice president energy , north america  wefa inc .  2 bloor st . w .  toronto , canada  m 4 w 3 rl  416 - 513 - 0061 ex 227  - 2001 energy brochure . doc  - wefaenergy _ factsheet for energy scenarios 2001 . doc\",0\n\"Subject: continue enjoying iijournals - - renew today !  dear vince kaminski ,  we hope you are enjoying the benefits of receiving market - leading , rigorous  and current research from industry experts through your subscription to  derivatives quarterly .  unfortunately , your subscription is about to expire ! by renewing now , your  access to the web site and to your print copies will be uninterrupted .  you can continue to get the exclusive research and practical advice for  financial practitioners \u0001 ) written by the best minds in your business !  click here to renew today  thank you .\",0\n\"Subject: eol  dan ,  i am forwarding you the summary of the information for eol that we can  provide . i shall talk to risk magazine to settle the  copyright issues .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 05 / 25 / 2000  05 : 17 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : mike a roberts 05 / 25 / 2000 02 : 56 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : eol  vince -  as a follow - up to this afternoon ' s telephone conversation , the following four  categories of information were discussed with dan diamond for inclusion in  the research group ' s contribution to eol content :  1 . published articles authored by research group members  a . mostly risk magazine stuff  b . copyright issues  2 . research intelligence articles  a . backlog of around 50 articles  b . needs screening prior to release  c . review system in place for future articles  d . weekly  3 . technical analysis  a . cross commodity analyses  b . intranet material ready for internet  c . generic informative content available  4 . streaming video of weather  a . daily 2 - 3 minutes capsule  b . toned - down verson of whats given to traders  c . energy - focused  - - mike\",0\n\"Subject: follow - up meeting on wharton  it seems like several of you will be on vacation next week , so lets see if  we can do it this week . vince is available on thursday from 2 : 00 - 3 : 00 pm  or friday , from 1 : 30 - 2 : 30 pm .  do either one of these two times work ?  let me know .  thanks !  shirley  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 12 / 12 / 2000  10 : 56 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  shirley crenshaw  12 / 12 / 2000 09 : 20 am  to : christie patrick / hou / ect @ ect , james l bouillion / hou / ect @ ect , george  carrick / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : follow - up meeting on wharton  good morning everyone :  vince would like to schedule a follow - up meeting on wharton as soon as  we can agree on a time .  how does monday the 18 th look for you ? vince is free from 9 : 30 am -  11 : 30 am and from 1 : 00 pm - 4 : 00 pm .  please let me know if you are available during any of these times .  thanks !  shirley crenshaw  3 - 5290\",0\n\"Subject: re : improving option valuation precision in erms  stinson ,  zhiyong wei ' s group will need to make this change . please follow up with  zhiyong and jeremy wong .  - - allan .  stinson gibner  08 / 23 / 2000 09 : 54 am  to : allan severude / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , paulo issler / hou / ect @ ect , eric  moon / hou / ect @ ect , ed mcmichael / hou / ect @ ect , zimin lu / hou / ect @ ect  subject : improving option valuation precision in erms  allan ,  paulo issler in our group , working with eric moon in structuring , recently  tracked down the reason for a slight mis - match in option pricing in erms vs .  the structuring spreadsheets . it is due to the fact that the option  valuation functions in erms use a slightly less accurate approximation for  the cumulative normal distribution . we would be happy to work with the right  person to update the erms code in order to close this discrepancy . please  let me know how you would like to proceed .  if you are not the correct person to address the mainenance of erms , please  let me know who to contact .  thank you ,  stinson gibner  x 34748\",0\n\"Subject: re : li xiao  thanks so much , vince .  molly  vince j kaminski  06 / 29 / 2000 11 : 06 am  to : molly magee / hou / ect @ ect  cc :  subject : re : li xiao  molly ,  my recommendation letter .  vince  enron north america corp .  from : molly magee 06 / 22 / 2000 10 : 39 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : li xiao  vince : li has selected you as a reference on her application for a graduate  school tuition loan . thanks for taking the time to participate in this  process .  molly\",0\n\"Subject: reminder  hello everyone :  vince has asked me to send the following as a reminder :  * * * * * * * * * * * * * * * *  this is another reminder about the responsibility we have as a group for  cleaning the conference rooms after meetings . for many visitors to enron  a conference room maybe the first and the last exposure to the company .  last thursday , some members of the group left , leaving behind their lunch  boxes  on the table . please , don ' t embarrass me by having to point out to you that  your mothers  don ' t work here .  vince\",0\n\"Subject: re : argentina power & gas market modelling  okay  julian poole  03 / 17 / 2000 10 : 35 am  to : michael guerriero / enron _ development @ enron _ development  cc : vince j kaminski @ ect , grant masson @ ect , jeff  kabel / enron _ development @ enron _ development , rodolfo  freyre / enron _ development @ enron _ development , diego  hollweck / enron _ development @ enron _ development , bernardo  andrews / enron _ development @ enron _ development , mario aguilar  benitez / enron _ development @ enron _ development , santiago  subject : re : argentina power & gas market modelling  all ,  let ' s arrange a conference call next week to discuss the process .  how does tuesday afternoon fit everyone ' s schedule ?  julian  enron international  from : michael guerriero 03 / 17 / 2000 03 : 49 pm  to : vince j kaminski @ ect , grant masson @ ect , jeff  kabel / enron _ development @ enron _ development , julian  poole / enron _ development @ enron _ development , rodolfo  freyre / enron _ development @ enron _ development , diego  hollweck / enron _ development @ enron _ development , bernardo  andrews / enron _ development @ enron _ development , mario aguilar  benitez / enron _ development @ enron _ development , santiago  cc :  subject : argentina power & gas market modelling  i would like to initiate a team to address the continued improvement of the  argentine power & gas market models . i spoke with vince this morning and we  reviewed that history of work to date and what we will need to do from here .  a summary is as follows :  team :  ba members : julian poole lead  mario benitez associate  ba associates : diego hollweck associate  bernardo andrews associate  santiago porta associate  houston members : to be named .  time schedule : as soon as possible . completed before june 1 , 2000 winter in  argentina .  scope of work :  power model : advance the current model from basic load forecasting to  incorporate weather , hydrology , improved short term and long term forecasting .  natural gas model : build a supply and demand load forecasting model  incorporating weather , thermal demand , pipeline flow rates , well head  supply , improved short term and long term forecasting .  phase i - data request  power  historic weather : temperature - daily , hourly , min , max , average  humidity  precipitation  cloud cover  regionally  forward weather : temperature - daily , hourly , min , max , average  humidity  precipitation  cloud cover  regionally  historic hydrology : reservoir levels  reservoir capacity  current hydrology : reservoir levels  remote monitoring : aireal , pressure device , laser  snow pack : density volume and mass  power supply : current and future capacity  transmission  capacity : current and future capacity  natural gas data list to be developed  phase ii - power model development  phase iii - natural gas model development  we will take advantage of the fact that the associates are in houston for the  next two weeks . vince is out next week but we can start with a process  discussion with grant masson next week . julian please get a meeting scheduled  as soon as possible . we should immediately start collecting data .  thanks  mfg\",0\n\"Subject: re : enron / stanford program  stinson ,  great ! i ' m looking forward to a very productive collaboration .  i ' ll immediately start doing giuseppe ' s papers , for him to work  on the enron / stanford program .  many thanks to you and vince , and i hope to see you soon at stanford  or enron . if i remember correctly , vince is visiting stanford in  october .  best regards ,  nick  stinson . gibner @ enron . com wrote :  >  > nick ,  >  > i spoke with paul racicot , head of trading for ebs , north america this  > morning . he said that he is happy to send the $ 100 , 000 for your program  > from his budget . i have forwarded to him the draft letter to accompany  > the funds and will try to follow up to make sure that the money is sent  > promptly .  >  > - - stinson\",0\n\"Subject: approval for reviewer  roberts jr , michael a has suggested reviewers and submitted them for your  approval . you may review / modify this list of reviewers by logging on to pep  at http : / / pep . corp . enron . com and going to supervisor services . please  remember , no feedback can be completed on roberts jr , michael a until you  have approved the list .\",0\n\"Subject: re : bollerslev seminar  excellent . thank you .  bbo  at 03 : 19 pm 10 / 10 / 00 - 0500 , you wrote :  > barbara ,  >  > noon will be fine . we shall just use the lunch hour .  >  > vince  >  >  >  >  >  >  > barbara ostdiek on 10 / 10 / 2000 12 : 53 : 34 pm  >  > to : vince . j . kaminski @ enron . com ( vince kaminski )  > cc :  > subject : bollerslev seminar  >  >  > vince :  >  > i don ' t know if you noticed that we have tim bollerslev on the seminar  > schedule for december 8 . in order for tim to get back to north carolina on  > friday , we need to move the seminar time . i thought that the enron folks  > might be interested in his talk so i wanted to get you input on a new  > time . i know that 3 : 30 is best but would over the noon hour be second best  > or would 2 : 00 be better ?  >  > thanks .  >  > bbo  >  >  >  >\",0\n\"Subject: reactions november is now live on - line  reactions  the latest edition of the financial magazine for the global insurance market  is now live at http : / / www . reactionsnet . com  ?  ?  you can contact us for help at mailto : web - help @ euromoneyplc . com or + 44 ( 0 ) 20  7779 8006 . ? the november issue of the world ' s leading insurance and  reinsurance magazine is packed full of news , views and figures ; simply hit  the links at the bottom of each item to see the full article .  the november features  race - based underwriting : haunted by a racist past  the discovery of continued race - based underwriting in the us will cost life  insurers involved millions of dollars and do untold damage to their  reputations - as well as severely embarrassing state regulators  integrated risk management : we can work it out  the new actuaries reckon they can measure abstruse business risks - and then  integrate them with known risks . ? but is there madness in their method ?  mga business : the need for continuity  capital adequacy : that capital question  a . m . best ' s top 100 buyers and sellers in the us : a time of change  buyers - the 20 biggest risers and fallers ?  sellers - the 20 biggest risers and fallers  the fall of reliance : errant insurer ' s battle for survival  in the spotlight : harry rhulen  for more information about the sponsors of www . reactionsnet . com , please visit  their official websites at :  renaissance re holdings ltd - http : / / www . renre . com /  ipc re ltd - http : / / www . ipcre . bm /  gerling global financial products - http : / / www . ggfp . com /  e - insuring your business  the park lane hotel , london january 26 , 2001  a one - day management symposium discussing insurance , the internet and your  business .  join mis training and reactions for a day of discussions , insight and  knowledge transfer  e - insurance and why you need it to protect your business  the legal realities and responsibilities you need to know about  managing the risks and devising successful risk policies  live demonstration  for further information please contact daniel carney or alex johnson at mis  training on 020 7779 7217 / 8097 .  * plus ! * ? industry publications - read the executive summaries and order  online !  rbi & reactions insurance management reports :  diversification of european insurance and financial services  trends in global commercial insurance - the impact of art  risk management - new challenges and new solutions  opportunities in latin american insurance  the outlook for european teleinsurance  outlook for insurance in germany  uk einvestments  reinsurance 4 th edition - industry - standard textbook  @ risk - internet and e - commerce insurance and reinsurance legal issues  e - nsurance - insurance and the internet revolution  http : / / www . reactionsnet . com  to advertise or link your company website to this industry circular please  contact nick lipinski  tel : + 44 ( 0 ) 20 7779 8199 or e - mail mailto : nlipinski @ euromoneyplc . com  if you have any problems logging onto or using ? www . reactionsnet . com please  call our dedicated help desk  + 44 ( 0 ) 20 7779 8006 or email mailto : web - help @ euromoneyplc . com\",0\n\"Subject: re : mit financial engineering pro - seminar  claudio ,  i have done it twice in the past . i shall be glad to help again .  vince  from : claudio ribeiro @ enron 11 / 21 / 2000 08 : 32 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : mit financial engineering pro - seminar  vince :  it was stewart myers , head of the financial engineering track . he did not  contact me directly , he contacted josef ( an mit student that spent the summer  with enron and received an offer to come to work with us ) .  josef wanted to know who could make the commitment of sponsoring ( sending the  problem ) .  claudio  vince j kaminski @ ect  11 / 21 / 2000 08 : 16 am  to : claudio ribeiro / corp / enron @ enron  cc :  subject : re : mit financial engineering pro - seminar  claudio .  who was the professor who came up with the request ?  vince  from : claudio ribeiro @ enron 11 / 20 / 2000 05 : 04 pm  to : vince j kaminski / hou / ect @ ect  cc : joseph hrgovcic / hou / ect @ ect  subject : mit financial engineering pro - seminar  vince ,  i have received a call from mit asking if enron would be interested in  sponsoring a financial engineering pro - seminar .  this means that enron would propose a problem that would have its solution  developed by students in the financial engineering track . these students  would present the findings in the end .  i think that enron has already sponsored a financial engineering pro - seminar .  i remember something about real options at the time i was at school .  please , let me know if enron has the interest , specifically the research .  talking here at the weather desk , mark tawney expressed interest . if you  agree , we ( the weather desk ) could co - sponsor this pro - seminar with the  research . the idea , then , would be to propose a problem connected to weather  trading .  please , give me your thoughts about this issue .  thanks ,  claudio\",0\n\"Subject: re : flight  molly ,  it ' s ok ( even if the answer is ex post ) .  vince  enron north america corp .  from : molly magee 10 / 19 / 2000 08 : 45 am  to : vince j kaminski / hou / ect @ ect  cc : shirley crenshaw / hou / ect @ ect  subject : flight  vince : would this be okay with you ?  molly  - - - - - - - - - - - - - - - - - - - - - - forwarded by molly magee / hou / ect on 10 / 19 / 2000 08 : 44  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron capital & trade resources corp .  from : jlew @ kent . edu > 10 / 18 / 2000  07 : 30 pm  to : molly . magee @ enron . com  cc : jlew @ kent . edu  subject : flight  dear molly ,  i asked about change of the departure city . they said i should send my ticket  back to get a new ticket . since aquila provides the ticket , it ' s hard for me  to change the departing place . if possible , can i ask you to arrange the one  way flight from houston to seattle on the evening of 25 th ? i ' m sorry for  this .  thank you very much .  sincerely ,  jaesoo lew\",0\n\"Subject: some municipal bonds for you to look at . . . . .  i called out muni desk to have them take a look at the current munis avaiable  that looked best at this time to invest $ 50 , 000 going out to 30 years for  you . the following is what they came up with . . . .  pecos co tx cert of obl w / a coupon 5 . 5 % matures in 02 / 01 / 11 callable at par  on 02 / 01 / 07 offered at $ 101 . 964 - aaa rated  brownsville util rev w / a coupon of 5 . 25 % maturing in 09 / 01 / 15 callable at par  on 09 / 01 / 05 offered at $ 97 . 425 - aaa rated  alvin tx isd psf w / a coupon of 5 . 75 % maturing in 08 / 15 / 22 callable at par on  08 / 15 / 10 offered at par - aaa rated  houston tx air revs w / a coupon of 5 . 00 % maturing in 07 / 01 / 28 callable at par  on 07 / 01 / 08 offered at 86 . 479 - aaa rated  remember , these are subject to change , but if these interest you and they are  not still available , i will see if there is something comparable .  talk to you soon . please call me with any questions . thanks , julie\",0\n\"Subject: working at home this afternoon  i will be working from my home this afternoon after 1 : 30 pm . my extension will be forwarded to my home . if i happen to be away from the phone taking care of my mother , leave a message and i will return your call immediately . there is a generic message on my home phone , \"\" please leave message after tone \"\" , so don ' t worry that you have the wrong number . you may reach me by email at adupont @ pdq . net . in the next several days , i will be set up to dial in and you will be able to use my regualr enron email address . i will be at my desk most days , but until we have mother settled in the rehab facility there may be some days or afternoons that i will be working at home . please do not hesitate to contact me if you need meetings set up or any other thing that you would normally request of me . thanks . anita\",0\n\"Subject: joe mccauley ' s papers  vince ,  as promised , these are a couple of references that i have for joe mccauley ' s  papers .  whether the specific papers are of interest to what exactly we ' re doing or  not , i cannot say . on the other hand , given uh ' s drive to create an  \"\" econophysics \"\" specialization within the physics department , i thought we  could both help them * and * drive it towards a direction that it could be of  use to us . i think that they would very much like to hear what the industry  would like to see from such a specialization . some of the things that have  been discussed as course offerings would be :  basic physics courses ( mechanics , nonlinear dynamics , stat . physics , math  methods )  various finance courses like options , banking , etc .  statistics , math methods , and statistical physics ( that could teach topics  like brownian motion , lognormal distributions , fractals , levy flights , and  statistics of ' large deviations ' , which are of interest  comp science ( java , c + + , data structures , algorithms )  monte carlo simulations  etc  setting up some sort of exchange , where at minimum we could get summer  interns from this program , would also be beneficial to both sides . even  better , a wider collaboration between enron and the physics department could  be set up .  after this message ,  i will inform joe mccauley and larry pinsky ( departmental chair person ) of  your suggestions on how to proceed .  i will send shirley their contact information to arrange for a visit at the  beginning of june .  thanks ,  yannis\",0\n\"Subject: bill koures  vince ,  alex and i did a phone interview with bill koures .  he works for williams and had a wall street background .  he is very qualified for the work we are doing here ( stochastic modeling ,  curve building , option valuation , etc . )  he programs in c and matlab .  in terms of quantitative skills , bill is better than ren zhang ( koch ) i  talked yesterday . the only down  side alex and i can think of about mr . koures is that we may not get him due  to a higher price tag .  zimin\",0\n\"Subject: re : operational risk  michael ,  the science of measuring operational risk is in its early stages of  development .  there are really no cook - book solutions . one has to use creativity and a lot  of common sense .  vince  to : vince j kaminski / hou / ect @ ect  cc :  subject : operational risk  mr . kaminsky ,  recently , i read articles published by garp and monographs in a book  published by garp . although they are excellent sources of introduction to  operational risk , none of them have any details on the \"\" how to . \"\"  if you know of a good book or book ( s ) could you recommend one ?  thank you .  michael kim\",0\n\"Subject: re : p + spread options  jeff ,  a short follow up on the p + options .  attached is a chart showing historical correlations for calendar spreads  between futures contracts . it shows correlation over four different time  horizons up to the roll of the nearest contract in each pair . as you can  see the level is usually higher than 0 . 98 and often near 0 . 99 . if our  current book of \"\" index p + \"\" options were re - marked at a 98 % correlation , it  would result in a reduction in m - t - m value of about $ 78 million according to  my estimate .\",0\n\"Subject: re : resume ,  molly ,  i would like to invite this student for an interview ,  sometimes in late december when things slow down .  interviews with all my direct reports and george hopley .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 30 / 2000  09 : 58 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  10 / 24 / 2000 04 : 32 pm  to : jinbaek kim @ enron  cc : vince j kaminski / hou / ect @ ect  subject : re : resume ,  jinbaek ,  we shall invite you to an interview in houston .  vince  jinbaek kim on 10 / 23 / 2000 07 : 25 : 36 pm  to : vkamins @ enron . com  cc :  subject : resume ,  dear mr . kaminski ,  hi ,  i am a ph . d student at ieor department at u . c . berkeley .  thanks for your presentation today .  it gave me knowledge and interest in electricity markets ,  and your company .  as you mentioned in the presentation ,  i send a resume to give me opportunity to learn more  about your company .  i hope i can join the super saturday event .  jinbaek  - resume . doc\",0\n\"Subject: re : confidential  sophie ,  i think it ' s a fair deal .  vince  sophie kingsley 08 / 30 / 2000 11 : 49 am  to : dale surbey / lon / ect @ ect  cc : vince j kaminski / hou / ect @ ect , michele small / lon / ect @ ect  subject : re : confidential  both ,  thanks for your comments and comparisons , it is good to get context .  based on your comments here would be my proposal  o 63 , 500 basic salary -  ol 5 k kickers for each of the 2 years - these are paid as a lump sum on each  anniversary guaranteed . therefore guaranteed salary is effectively o 78 , 500 -  this is completely separate and in addition to any performance bonus  increase the value of options to o 60 k to vest 1 / 3 as before - which leaves a  1 / 3 ( $ 20 , 000 ) hanging out there at the end of the contract .  just fyi - anjam is currently on o 68 , 000 but does not have an agreement , so  this would effectively put a 10 . 5 k gap between the two .  let me know your thoughts .  dale surbey  30 / 08 / 2000 16 : 09  to : sophie kingsley / lon / ect @ ect  cc :  subject : re : confidential  sophie ,  here ' s vince ' s comments on your proposal for steve . also , what ' s a 2 - yr  exec ? how do the kickers work - are they basically a guaranteed minimum  bonus or incremental bonus ?  - dale  - - - - - - - - - - - - - - - - - - - - - - forwarded by dale surbey / lon / ect on 30 / 08 / 2000 16 : 10  - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  30 / 08 / 2000 14 : 21  to : dale surbey / lon / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : confidential  dale ,  thanks for your message .  i don ' t know the labor market in london that well but here the market  for quants is very hot . steve is in my view an exceptionally talented person  and i would go an extra mile to retain him long - term for the company .  i would adjust the base salary or the kicker upward a bit .  o 62 , 000 basic is what anjam is receiving currently ( if i remember  correctly ) . steve has a much higher value  to enron than anjam .  vince  dale surbey  08 / 30 / 2000 07 : 49 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : confidential  vince ,  this is the package hr is proposing for steven . what do you think ?  - dale  - - - - - - - - - - - - - - - - - - - - - - forwarded by dale surbey / lon / ect on 30 / 08 / 2000 13 : 50  - - - - - - - - - - - - - - - - - - - - - - - - - - -  sophie kingsley 29 / 08 / 2000 20 : 32  to : dale surbey / lon / ect @ ect  cc :  subject : confidential  sorry dale , long day , here are the proposed numbers  2 year exec  o 62 , 000 basic ( currently o 55 k )  ol 0 k each year kickers  $ 50 , 000 worth of options to vest 1 / 3 1 / 3 1 / 3  let me know what you think .  regards  sophie\",0\n\"Subject: re : change - video to teleconferences - enron  christie ,  meeting at 5 : 30 is fine with me . the presentation is at 6 : 30 .  i sent you a message regarding a dinner on tuesday .  can you join me and ken parkhill ?  vince  from : christie patrick on 02 / 16 / 2001 10 : 19 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : change - video to teleconferences - enron  hi vince !  thanks for the information below !  i spoke with tom piazze today . i ' ll be meeting with him at 3 : 30 on the 20 th  to discuss the webi contract . i ' ll also be meeting with wharton ' s broadband  ( technical people ) before our meeting with the students . further , i hope to  meet with the people in charge of the business plan competition .  tom suggested you might want to call howard kurnreuther ( sp ? ) and possibly  stop in to see him while we are at wharton .  i ' ll be getting to wharton sometime tuesday ; i ' ll try to get a reservation at  the inn at penn . i ' ll then be leaving early wednesday morning by train to  new york .  shall we meet in tha lobby at the inn at penn before going to meet the  students ( i think the meeting with the students is at 6 pm - ish ) - - say , 5 : 30 ?  please let me know !  also , we still need to give wharton an answer as to whether we ' re interested  in another $ 50 , 000 investment in efellows .  thanks vince !  have a great wekend !  - - christie .  - - - - - forwarded by christie patrick / hou / ect on 02 / 16 / 2001 10 : 13 am - - - - -  vince j kaminski  02 / 16 / 2001 10 : 06 am  to : christie patrick / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , kenneth parkhill / na / enron @ enron  subject : change - video to teleconferences - enron  fyi  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 16 / 2001  10 : 06 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  fap on 02 / 16 / 2001 08 : 35 : 22 am  to : clay degiacinto , deepa mallik  , dennis feerick  , heather thorne  , jack rejtman  , jason cummins  , kim whitsel  , nicholas levitt  , omar bassel  , ram vittal , steve  lessar , thomas  , tulika bhalla ,  vincent chen  cc : fap , \"\" ' vkamins @ enron . com ' \"\"  , \"\" ' patterm @ wharton . upenn . edu ' \"\"  subject : change - video to teleconferences - enron  3 / 1 shdh 215  3 / 22 shdh 215  3 / 29 shdh 215  please note that the remaining videoconferences scheduled with enron have  been changed to teleconferences due to the difficulties we have experienced .  the host has agreed and we will , therefore , continue with teleconferences in  the same locations / dates as noted above .  any questions , please contact the fap office .  thanks ,  donna\",0\n\"Subject: re : evaluations - enron - reminder  > please pass this along to others who may have worked with the students .  >  > to : tiger hosts  >  > from : field application project office  > the wharton school  > university of pennsylvania  >  > re : tiger team evaluations  >  > thank you for hosting the tiger team project , field application project  > 2001 . this opportunity provided the student team a worthwhile experience  > to apply newly acquired skills to a real world issue facing your company .  > your dedication and support of the project contributed greatly to its  > success .  >  > hopefully , by now you have had the opportunity to review the final  > reports . please take a moment to complete the host evaluation form  > available at : ( use internet  > explorer )  >  > username : tiger  > password : fap 2001 ( no space between )  > ( note : case sensitive , please use lower case )  > deadline for acceptance : wednesday , april 25 , 2001  >  > your feedback is important to us . it is taken into consideration when  > calculating student grades and when implementing changes that will impact  > and enhance the program in the future . also , in an effort to insure the  > return of meaningful and contributing host companies , we ask that you  > indicate your interest in returning as a host next year and the fap office  > will contact you in september 2001 .  >  > thank you again for your support of the wharton school and participation  > in the field application project this year . we look forward to working  > with you in the future .  >  > if you have any questions , please contact the fap office at ( 215 ) 573 - 8394  > or email : fap @ management . wharton . upenn . edu  >  >  > sincerely ,  > donna piazze  > program director  > field application project\",0\n\"Subject: from the enron india newsdesk - april 27 th newsclips  fyi news articles from indian press .  - - - - - - - - - - - - - - - - - - - - - - forwarded by sandeep kohli / enron _ development on 04 / 27 / 2001 08 : 24 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  nikita varma  04 / 27 / 2001 07 : 51 am  to : nikita varma / enron _ development @ enron _ development  cc : ( bcc : sandeep kohli / enron _ development )  subject : from the enron india newsdesk - april 27 th newsclips  friday apr 27 2001 , http : / / www . economictimes . com / today / cmo 3 . htm  dpc board empowers md to cancel mseb contract  friday apr 27 2001 , http : / / www . economictimes . com / today / 27 compl 1 . htm  mseb pays rs 134 cr under ' protest ' to dpc  friday , april 27 , 001 , http : / / www . businessstandard . com / today / economy 4 . asp ? menu = 3  enron india md authorised to terminate ppa  friday , april 27 , 2001 , http : / / www . financialexpress . com / fe 20010427 / topl . html  foreign lenders slam brakes on disbursements to dpc , sanjay jog & raghu mohan  global banks comfortable with enron pull - out  friday , april 27 , 2001 , http : / / www . indian - express . com / ie 20010427 / nat 23 . html  enron : dabhol chief gets powers to end deal with the mseb  friday , april 27 , 2001 , http : / / www . the - hindu . com / stories / 0227000 d . htm  offer of renegotiation ' too late ' : enron , by mahesh vijapurkar  friday , 27 april 2001 , http : / / www . timesofindia . com / today / 27 home 2 . htm  enron ready to pull out , but lenders say wait  friday , april 27 , 2001 , http : / / www . hindubusinessline . com / stories / 142756 dh . htm  dpc board authorises md to issue ppa termination notice  friday , april 27 , 2001 , http : / / www . dailypioneer . com / secon 2 . asp ? cat = story 7 & d = front _ page  enron testing maharashtra ' s nerves , t n raghunatha  friday , april 27 , 2001 , http : / / www . telegraphindia . com /  enron signal to switch off dabhol power  friday , april 27 , 2001 , http : / / www . thestatesman . org / page . news . php 3 ? id = 13026 & type = pageone & theme = a  enron threatens to pull out  friday , april 27 , 2001 , http : / / www . chalomumbai . com / asp / article . asp ? cat _ id = 29 & art _ id = 10006 & cat _ code = 2 f 574841545 f 535 f 4 f 4 e 5 f 4 d 554 d 4241492 f 5441415 a 415 f 4 b 4841424152  ' dpc may not wind up '  friday , april 27 , 2001 , http : / / www . chalomumbai . com / asp / article . asp ? cat _ id = 29 & cat _ code = 2 f 574841545 f 535 f 4 f 4 e 5 f 4 d 554 d 4241492 f 5441415 a 415 f 4 b 4841424152 & art _ id = 9953  enron offers ' no comment ' on renegotiation , h s rao  http : / / www . afternoondc . com /  ' enron ' s on ! '  state govt . to renegotiate dabhol power project , by hubert vaz  the economic times , friday apr 27 2001  dpc board empowers md to cancel mseb contract  the enron power project crisis on thursday deepened with the board of dabhol power company authorising the management to issue a termination notice to the maharashtra state electricity board even while international lenders to the project asked enron to renegotiate power purchase agreement signed with the mseb .  the decision to authorise managing director neil mcgregor to issue \"\" notice of termination on the contract to sell 740 mw of power \"\" was taken after the board prevented mseb from voting on the ground that it was an interested party . the decision was taken with six votes in favour and the single opposition vote was cast by idbi , sources said .  according to reports , financial institutions such as anz investment bank , credit suisse first boston , citibank , abn - amro and the state bank of india have on wednesday advised enron against terminating its ppa with mseb . mseb chairman vinay bansal , who with two other directors attended the meeting on wednesday representing maharashtra ' s 15 per cent stake in the near $ 3 - billion project , said : \"\" the indian side told them that it would be unfortunate if enron broke the contract . \"\" while bansal declined comment on the board decision , the sources said the indian side had expressed its interest to holds talks on the issue rather than terminating the project and there were possibilities of a fresh power purchase agreement between the company and the state . ( pti )  the economic times , friday apr 27 2001  mseb pays rs 134 cr under ' protest ' to dpc  despite the threat of a possible termination notice hanging on its head , maharashtra state electricity board on thursday made a \"\" protest payment \"\" of rs 134 crore disputed amount , towards march bill of rs 146 . 64 crore to dabhol . \"\" we were ready with the payment on wednesday itself , but dpc officials could not collect the cheque due to the statewide bandh \"\" , a senior mseb official said . \"\" we have disputed payment of rs 12 . 64 crore and it would be now taken up at the disputes resolution forum , of which enron india managing director k wade cline and krishna rao are members \"\" , mseb sources said .  last week , dpc had dashed off a communication to the government and mseb that it would not accept \"\" protest payments \"\" anymore . cline had said the energy major shall treat such payments as an election to pay the sums , which mseb in fact owed dpc in full and that the company would also not recognise the \"\" purported protest or reservation \"\" . mseb had paid a rs 113 . 5 crore february bill in protest last month . on april 23 last , both domestic and international lenders of dpc had met in london and held exhaustive discussions the multinational ' s move to issue a termination notice to mseb and state government . ( pti )  business standard , friday , april 27 , 001  enron india md authorised to terminate ppa  the board of the enron - promoted dabhol power company ( dpc ) , at its meeting in london on wednesday , authorised the managing director of enron india to issue a notice for terminating the power purchase agreement to the maharashtra state electricity board and the state government . \"\" the board has authorised wade cline to serve the termination notice . however , this does not mean that the termination notice will be served immediately . it is only an enabling provision and will be used only if the situation arises , \"\" a state government source told business standard from london . he said dpc was under pressure from its lenders .  the dpc spokesperson here refused to comment on the issue . the hardening of the board ' s stand is in sharp contrast to the advice of dpc ' s lenders , who had warned enron not to precipitate matters by issuing a termination notice . the lenders had arrived at a consensus that the termination notice need not be served at this stage . serving of the notice requires a nod from the lenders , who have an exposure of about $ 2 billion in the project . sources said given the lenders ' strong opposition to termination of the contract , the enron board ' s \"\" enabling resolution \"\" did not have much significance beyond conveying a hardening of its stand with regard to the current imbroglio . the maharashtra chief minister had warned enron not to scuttle the process of crisis resolution by issuing a termination notice . the state government is to nominate an expert group to renegotiate the terms of the dabhol contract .  enron holds 65 per cent in dpc , while us - based ge and bechtel hold 10 per cent each . the balance 15 per cent is held by mseb through a special purpose vehicle , maharashtra power development corporation . the mseb representatives were not allowed to vote at the meeting since they were an interested party . the idbi representative protested against the board ' s decision . the meeting was attended by state energy secretary vm lal . the meeting was held against the backdrop of a dispute between mseb and dpc over payment of bills .  after mseb failed to pay rs 102 crore towards the december 2000 bill , dpc invoked the state government ' s guarantee and then the union government ' s counter guarantee . when payment of the rs 127 - crore january bill became overdue , dpc again invoked the state government ' s guarantee . mseb retaliated on january 28 , 2001 by slapping a rs 401 - crore penalty for non - supply of electricity at adequate levels . it demanded that dpc adjust the bills against this penalty . \"\" this stand of mseb was explained to dpc at the board meeting \"\" , a state government official said . the centre also supported mseb ' s stand and refused to honour the counter guarantee . the power company then invoked the political force majeure clause . a process of conciliation and arbitration between the centre and dpc is currently on .  the financial express , friday , april 27 , 2001  foreign lenders slam brakes on disbursements to dpc , sanjay jog & raghu mohan  global banks comfortable with enron pull - out  lenders to the dabhol power company ( dpc ) are a sharply divided lot . international lenders , in direct contrast to the stand taken by local ones led by the the industrial develoment bank of india ( idbi ) , are categorical that additional assistance to dpc ' s phase - ii will be held in abeyance despite the completion of 92 per cent of the project work . the stage is also set for a preliminary termination notice to be served by dpc to the maharashtra state electricity board ( mseb ) within the next four weeks . this follows the authorisation given to enron india ' s managing director k wade cline and dpc president & ceo neil mcgregor to serve the termination notice , and transfer notices to mseb , following wednesday ' s dpc board meeting in london .  the essence of the message from the international lenders following the london meeting with dpc board is : emotions do not work . contractual obligations and payments have to be met . we are convinced that the mseb has failed to meet its obligations . there is no point in enron continuing with the project and the company should get out of it . the structuring of dpc ' s debt has created two classes of lenders . in phase - i , international lenders are covered by a sovereign guarantee while in phase - ii , no lender is . however , all lenders have a parri passu charge , making attachment of assets a messy affair .  sources in international banks were quick to point out that local lenders to phase - ii of the project are worried that an awry dpc project will affect their interests more given that they have no security - other than assets - like a sovereign cover . \"\" it was this desperation that made local lenders like idbi slash the interest rates a few months back to 16 . 5 per cent from 21 . 5 per cent , \"\" a leading foreign banker pointed out . three points that were made clear and stressed in no uncertain terms by international lenders were : a ) there are contractual obligations b ) mseb was not punctual in its payments to dpc and c ) mseb adopted a confrontational position by slapping a rs 401 crore rebate charge on dpc for misdeclaration and default on the availability of power .  while local lenders led by idbi - with mseb parroting the same - were of the view that the current situation is a temporary one , international lenders were steadfast that pulling out of the project is the only way out . this is despite the stance taken by idbi and mseb that authorisation for termination given to mr cline and mr mcgregor was not called for . international bankers pointed out that they will now have to look at the issue of charges and protection for their loans in the event of the power project being scrapped in its present form . the points of contention are : a ) that phase - i of dpc is backed by a sovereign guarantee b ) phase - ii is not and c ) to the extent that phase - ii is covered by assets , cancellation of phase - ii may see all assets - even those under phase - i - getting attached . therefore , an examination on the segregation of assets under phase - i and phase - ii is now warranted .  pti adds : in a significant move , dpc board has empowered its management to sever power supply agreement with mseb , a move that could inflict a financial liability of about rs 2840 crore on the centre . a decision to authorise dpc president neil mcgregor to issue a termination notice to mseb for sale of power was taken by the board at its meeting on wednesday .  the indian express , friday , april 27 , 2001  enron : dabhol chief gets powers to end deal with the mseb  the board of dabhol power company , a subsidiary of houston - based enron corp , has decided to warn the maharashtra state electricity board ( mseb ) that it intends to pull the plug on its guhagar - based project . in a board meeting held in london on wednesday , the board decided to authorise dpc president and ceo neil mcgregor and enron india ' s managing director k wade cline to serve a ' ' preliminary ' ' termination notice for sale of power to the mseb within the next four weeks . the dabhol project has been mired in disputes since mseb began missing payments last year . mseb owes dabhol power $ 48 million for power delivered in december and january . the payment ran into a dispute after mseb slapped penalty notices of rs 401 crore on dpc for its failure to supply power within three hours of the demand being placed . but mseb has paid $ 24 million for february . and a payment of $ 31 million was made for march on thursday .  the $ 3 billion dabhol project is the largest foreign investment made in india to date . issuing the preliminary termination notice could enable dabhol to suspend deliveries as it negotiates payment disputes . while a preliminary termination notice is the first of three steps that could potentially lead to the abandonment of the project by enron , analysts have described the decision as a ' ' procedural ' ' move consistent with dpc ' s negotiating strategy to recover overdue payments from the mseb .  after the company issues the preliminary termination notice , step two would be an official termination notice , and step three would be a notice that the company is surrendering control of the project . if the project is terminated , the government of india will have to take a hit of $ 300 million besides paying bills of rs 1 , 500 crore for the next one year to enron as penalty . ' ' our ( centre ' s ) liability , if dabhol power project is terminated , would be one year ' s electricity bill and a termination fee of $ 300 million , ' ' power secretary a k basu said . ' ' contractually , the centre will have to pay one year ' s electricity bill , totalling at present prices about rs 1 , 400 - 1 , 500 crore , and take over dpc ' s debt , which stands at around $ 300 million , if the project was terminated , ' ' basu said in delhi . dabhol power is in the process of completing the second phase of the 2 , 184 - megawatt power - plant project , which is 95 per cent through .  while the international lenders to the project are pressurising the company to get out of the project , indian lenders , led by idbi , are asking the company to reconsider its decision on its termination notice . during the meeting in london , mseb which holds a 15 per cent stake in the project , had strongly opposed dpc ' s move to authorise cline and mcgregor to issue notices for termination .  mseb chairman vinay bansal and technical director prem paunikar - both directors on the dpc board - and the state principal secretary ( energy ) vm lal , an invitee to the board , raised the issue at the board meeting in london . mseb claimed that dpc was needlessly ' ' threatening ' ' to issue various arbitration notices and thereby interpreting the clauses of ppa in isolation . in recent weeks , dabhol has raised the stakes in its spat with the mseb , delivering a notice of political force majeure to maharashtra - a step typically invoked to dissolve a contract in case of an emergency like a war , coup , or a similar radical political event . in this case , dpc ' s move was viewed as a threat to stop providing electricity . dpc has come under fire because of the relatively high cost of its power . critics object to the company charging rs 7 . 1 a kilowatt - hour for its power , compared with around rs 1 . 5 a kilowatt - hour charged by other suppliers .  the hindu , friday , april 27 , 2001  offer of renegotiation ' too late ' : enron , by mahesh vijapurkar  mumbai , april 26 . the enron - sponsored dabhol power company , which last night authorised its local management to issue a notice of termination of its power purchase agreement ( ppa ) with the maharashtra state electricity board , has decided to keep a stiff upper lip . this , in turn , has stoked speculation that the switching off of power from its phase i plant was imminent , while in reality , a lengthy procedure has to be followed as prescribed within the ppa .  as one source familiar with the ppa told the hindu , ` ` it is not sudden death of the project ' ' and in all probability , the dpc , vexed with the developments , including sharp and pointed observations by the godbole committee , has chosen to only arm itself with a serious option . ` ` this would only eventually come into effect . it is not an overnight operation and a lot of legal work is involved ' ' . apparently , the dpc intends to do some arm - twisting .  at the board of directors meeting in london , which maharashtra was initially disinclined to attend but later used the forum to put across its contentions on the project , the dpc squarely told the mseb nominees on the board that the offer of renegotiation had come rather ` ` too late ' ' . it also said it did not see any room for optimism about the outcome . it did not , however , rule out the option of talks , thus underscoring the possibility that the decision to authorise termination was a new weapon .  the maharashtra chief minister , mr . vilasrao deshmukh , had hoped that dpc would not take any ` ` harsh step ' ' which would cause lot of damage to the interests of both the independent power producer and the government and today he expressed his dismay . in fact , the mandate of the team that went , on the strength of its stake in the dpc , was to put across the idea that negotiation was the requirement and not confrontation .  echo in ls  the enron issue also echoed in the lok sabha today where the power minister , mr . suresh prabhu , said that scrapping of the agreement would cost the centre rs . 2 , 840 crores , whose liability in the project agreement was limited . the centre ' s liability in case of termination is one year ' s electricity bill and a termination fee of $ 300 million .  blow to fis  the termination could prove to be a serious blow to the indian financial institutions ( fis ) which , under the leadership of the idbi , were trying to convince the other lenders of the project against the notice . the exposure of indian fis in the project is understood to be not covered by any guarantee either of the centre or the state .  the times of india , friday , 27 april 2001  enron ready to pull out , but lenders say wait  the dabhol power company board , which met on wednesday in london , authorised the company management to issue a termination notice to the maharashtra state electricity board . the company , however , may not pull out of the project yet , considering its lenders , who met on monday , opposed such a move and favoured renegotiations . sources present during both the meetings said that though foreign lenders supported enron on the termination issue , domestic financial institutions , led by the industrial development bank of india , prevailed over the deliberations to oppose any such drastic move . enron needs the lenders ' consent to file a pre - termination notice for pulling out from the project . the decision to empower dpc chief wade cline to issue a termination notice was taken with six votes in favour against a single idbi vote against such a move .  another significant development during the entire proceedings was that the financial institutions made it clear that further funding of phase ii of the project will depend on the government of india assuring payment mechanisms . institutions are yet to disburse about 30 per cent of the sanctioned package , which is crucial for completing the phase ii expansion project . ` ` the board has given powers to wade cline to issue a pre - termination notice . but the meeting quite unanimously felt the need of the hour is not to terminate the project but to initiate serious re - negotiation proceedings , ' ' said mseb chairman vinay bansal , who attended the board meeting . ` ` mseb presented their views to the board members and it was understood by enron which also included the rs 401 crore penalty issue which is heading for arbitration proceedings . ` ` we have also made it clear that the tariff structure of enron is quite high and a downward revision of tariffs is unavoidable , \"\" bansal added .  ` ` they cannot issue a termination notice without our consent since our exposure in the project is quite large and the lenders should approve any plans in that direction , ' ' said a top banker who was present during the lenders ' meet . ` ` there is a general consensus that the project must be completed and the proposal to terminate the ppa should be kept in abeyance , ' ' he added . the global arrangers for the dpc include anz investment bank , credit suisse first boston , abn - amro , citibank and the state bank of india , where all these parties conducted separate meetings with the company officials . however , some bankers said the company can file a termination notice even if one lender with a minimum 5 per cent exposure on the project favours such proceedings .  meanwhile , in a clear reversal of roles , maharashtra chief minister vilasrao deshmukh said that the state government was not keen on terminating the ppa . ` ` we will ask them to refrain from taking any such harsh steps since that would be bad news for all of us , including dpc , ' ' deshmukh said . deshmukh was echoing union power minister suresh prabhu ' s sentiments , who said that the government wanted an amicable settlement of the payment row . he , however , added that termination of the project would not hurt foreign investments , and dismissed warnings by analysts that winding up the $ 2 . 9 billion project would be a blow to india ' s efforts to woo foreign investors .  the dpc has already slapped one conciliation notice on the centre and three arbitration notices on the state government over non - payment of dues amounting to rs 213 crore and interest towards the bills due for december 2000 and january 2001 . meanwhile , mseb officials said in mumbai that the march bills amounting to rs 134 crore was paid on thursday as protest payment , despite the dispute over the amount .  when asked on the future course of action , bansal said it was up to the dpc .  the hindu businessline , friday , april 27 , 2001  dpc board authorises md to issue ppa termination notice  the board of directors of dabhol power company ( dpc ) has authorised the managing director , mr neil mcgregor , to issue the notice of intent to terminate its power purchase agreement ( ppa ) with the maharashtra state electricity board ( mseb ) ` ` at an appropriate time ' ' . the decision was taken at a board meeting held in london yesterday . ` ` while mseb , which is an ` interested party ' , was not allowed to vote , it made a presentation clarifying its stand on the matter , ' ' a senior state government official said .  the resolution to authorise the management to issue the termination notice was carried by six votes to one . idbi voted against the decision , the official said . the serving of the preliminary termination notice will lead to a six - month ` ` suspension period ' ' . according to clause 17 . 8 of the termination procedure , of the ppa : ` ` following the giving of a preliminary termination notice , the parties shall consult for a period of six months ( or such longer period as they may agree ) as to what step shall be taken with a view to mitigating the consequences of the relevant event having regard to all the circumstances . . . ' '  idbi and state bank of india , the principal indian lenders , had earlier persuaded the overseas lenders to hold their consent to the termination notice for some more time . at least one lender has to consent for the company to serve termination notice . it is understood that overseas lenders are in favour of termination of the project and are prepared to consent . however , domestic lenders are worried about the security of their advances if the ppa is abandoned mid - way .  according to institutional sources , indian lenders are trying to get all the parties concerned to thrash out outstanding issues . the maharashtra and central governments too are in favour of a conciliation . mr vilasrao deshmukh , chief minister of maharashtra , yesterday went on record that the state did not want the project terminated . mr yashwant sinha , union finance minister , is also understood to be of the same opinion . ` ` the dpc will now have to decide what is the ` appropriate time ' to serve the notice , ' ' the official said . mseb pays rs 134 crore : meanwhile , mseb has paid dpc rs 134 crore towards its march 2001 bill . mseb officials confirmed that the bill was paid ` in protest ' ' today morning . ` ` they ( dpc ) had billed us for an amount of rs 146 crore . we do not agree with some of the items included , ' ' a senior mseb official said .  the pioneer , friday , april 27 , 2001  enron testing maharashtra ' s nerves , t n raghunatha  dabhol power company ( dpc ) has begun to put fresh pressure on the maharashtra state electricity board ( mseb ) , the maharashtra state government and the centre for an early resolution to the prolonged dispute between them , if the dpc board of directors ' decision to authorise its managing director to serve a contract termination notice to the mseb is any indication .  the dpc board , in its meeting in london on wednesday , empowered the company management to sever its power supply agreement with mseb , a move that could inflict a financial liability of rs 2 , 840 crore on the centre . the decision to authorise the dpc management to issue a termination notice to mseb was taken by a vote of six to one after the maharasthra government representatives were prevented from voting on the ground of \"\" interested party \"\" .  when contacted , the company ' s mumbai - based spokesperson , mr jimmy mogal , declined to comment on the reports about the decision taken by the dpc board . \"\" we have nothing to say on the reports emanating from london . we will express our views after a few days , \"\" he said . however , maharashtra chief minister vilasrao deshmukh on thursday termed the dpc board ' s decision as \"\" unfortunate \"\" . \"\" we have already requested the company not to take any harsh decision \"\" , mr deshmukh said in mumbai .  official sources in the state energy ministry interpreted the dpc board ' s decision as a pressure tactic employed by the enron subsidiary to force the mseb to clear the pending power bills without any further delay . through its tough posture , the dpc wants to make its position stronger before it can formally agree for re - negotiations with the mseb , the centre and the state government for cutting the price of power supplied by it to the state electricity board . the sources said that the dpc ' s reported decision to authorise its managing director to stop electricity supply to the mseb did not mean that the enron subsidiary would actually go ahead with the scrapping of the power contract with the mseb .  \"\" if anything , the dpc ' s reported decision is to mount additional pressure on the mseb for clearance of pending power bills and put itself in a stronger position in settling its dispute with the mseb . as part of its plan to arm itself with powers to break a contract in case situation goes beyond its control , the dpc had recently served a political force majeure to the mseb , the centre and the state government , \"\" the sources said . not surprisingly , the dpc ' s london decision comes on the heels of the maharashtra government ' s decision to set up a high - level committee , comprising representatives of the mseb , the centre and the state government to re - negotiate with the enron ' s subsidiary company for reducing the cost of power supplied to the state electricity board . meanwhile , amidst the threat of a possible termination notice hanging on its head , the mseb on thursday made a \"\" protest payment \"\" of the rs 134 crore disputed amount towards march bill of rs 146 . 64 crore to dpc .  riday , april 27  the telegraph , friday , april 27 , 2001  enron signal to switch off dabhol power  enron today took the first decisive step out of the controversy - ridden dabhol power company when it won an authorisation from the company ' s board to stop sale of power to maharashtra state electricity board ( mseb ) .  the meeting of the company , of which the houston - based energy giant holds 65 per cent and the mseb 15 per cent , was attended by state energy secretary v m lal and mseb technical director p paunikar and it came days after its lenders discussed payment problems and a possible termination . the centre ' s liability , if enron decides to snap the agreement , will be a year ' s power bill and a termination fee of $ 300 million . however , the company will have to wait for six months from the day it serves the notice before it pulls the plug . the centre shrugged off the move , saying there would not be any adverse effect on foreign investment in power if enron walks out . \"\" we do not see fdi inflows into the power sector being hit , \"\" power minister suresh prabhu said . mseb officials said the ball is now in the court of dpc , which said its corporate policy did not allow it to comment on proceedings at board meetings . the decision coincided with a rs 134 - crore ' protest payment ' by the cash - strapped power board as part of the march bill worth rs 146 . 64 crore .  there was speculation that mseb coughed up the amount to cool frayed tempers at enron ' s hub in houston , and because it was rattled by the sudden turn of events in the past few days during which the dispute had come to a head . mseb officials brushed away the allusions , saying the cheque was ready on wednesday but could not be handed over to dpc because of the state - wide bandh . \"\" we have a disputed payment of rs 12 . 64 crore , which will be taken up at the dispute - resolution forum , \"\" a board official said . last week , dpc told the state government and mseb it would no longer accept protest payments in a move to fortify its legal position .  mseb officials say bechtel and general electric , the other partners who hold around 20 per cent in dpc , are willing to go along with enron corp in terminating the deal but financial institutions such as idbi are not game because it puts their loans at risk . investments made by indian institutions are not covered under the centre ' s and state ' s counter - guarantees , unlike those made by international lenders . maharashtra chief minister vilasrao deshmukh called enron ' s decision unfortunate . \"\" we had told state government officials attending the enron board meeting to stop the company from winding up its operations in the state as it will harm both parties . \"\"  the statesman , friday , april 27 , 2001  enron threatens to pull out  the enron crisis deepened with the board of directors of the dabhol power company deciding to authorise the managing director , mr k wade cline , to serve a notice of termination on the contract for the first phase of the $ 2 . 9 billion power project . the decision , which could lead to the cessation of dabhol ' s power supply to the state , was taken at the meeting held yesterday in london according to reports quoting the chairman of the maharashtra state electricity board , mr vinay bansal .  while dpc officials refuse to comment on anything , it is learnt that mseb was itself prepared to serve a legal notice of termination just two days before the meeting . mseb was said to have been dissuaded by the nationalist congress party president , mr sharad pawar , and union power minister mr suresh prabhu , who had talks in new delhi with the maharashtra chief minister , mr vilasrao deshmukh , and an mseb delegation last monday .  the state government has been served two arbitration notices while the centre is ready to go for conciliation with the dpc for failing to honour its counter - guarantee . further , the dpc has already slapped a notice of political force majeure which protects itself against undeserved claims in the event of exigencies that force it to take an extreme step . the union power minister , mr suresh prabhu , contended in delhi that since dpc contributed only 0 . 7 per cent of the total energy output of the country , its termination would not have such a phenomenal impact on the power situation .  however , if terminations proceedings go through , enron corp , a 65 per cent share - holder in the dabhol power company , would stand to net a hefty amount in damages . the union power secretary has been quoted as saying that termination of the dpc would cost the centre rs 1 , 800 crore , which is the total of one years ' electricity bill and a termination fee of $ 300 million . according to an energy analyst , mr pradyumna kaul , the total liability would not cross rs 350 crore . however mr prabhu said in the lok sabha today that the that scrapping of the agreement would cost the centre rs 2 , 840 crore . it is learnt that on 20 april , mr deshmukh had given the go - ahead to the mseb to prepare a legal notice to be issued to enron during the meeting of the dpc ' s board of directors on wednesday . at the meeting , the energy minister , padamsinh patil , energy secretary , mr vinay mohan lal and mseb chairman mr vinay bansal , were also present . the notice was prepared over the past weekend and taken by the delegation when they called on mr prabhu on 24 april . however , the politicians convinced them that enron would not get tough , given its huge stake in the project , and that such a notice would not be necessary . the meeting thus ended with the decision to renegotiate the power tariff , with enron ' s consent .  among those present at the london meeting were mr lal , mr bansal and mseb technical director , mr p paunikar , in their capacity as directors . however , they abstained from voting since they were deemed an interested party . the only vote to go against the decision was that of the idbi which is also represented on the board , it is learnt . the chief minister , mr vilasrao deshmukh , said the state was not in favour of terminating the project . this could mean that the latest manoeuvre to arm - twist the indian authorities could achieve its immediate target of getting the arrears accumulated over the past three months cleared . the mseb owes enron rs 146 . 64 crore for march 2001 and rs 229 crore for december 2000 and january 2001 . the centre today put up a brave face on enron ' s decision saying there would not be any adverse effect on foreign investment in power sector in the country , pti reported from new delhi .  \"\" there will be no adverse impact as a result of any action by any domestic or foreign company . as far as we are concerned there will be no adverse impact on fdi in power sector , \"\" power minister suresh prabhu told reporters when asked about dpc ' s decision to authorise management to issue a termination notice to mseb . emphasising that there would be no fallout of such decision , prabhu said after the meeting of the cabinet committee on economic affairs \"\" we are expecting cooperation from many scandinavian countries as well as european nations in the power sector . \"\" in fact not only the power minister but also the prime minister of norway was here to inaugurate a seminar on power and he promised lot of cooperation in the sector . \"\"  mid day  ' dpc may not wind up '  maharashtra chief secretary v ranganathan has said that though neil mcgregor , managing director of the dabhol power corporation ( dpc ) , has been given complete powers with regard to dpc ' s operations in the state , including the authority to wind up operations , it does not necessarily mean that mcgregor will issue such a termination notice . mcgregor was given the powers at a meeting of the dpc board in london on wednesday . ranganathan said that state officials , including maharashtra state electricity board ( mseb ) chairman vinay bansal and power secretary v m lal , have reported back to him about the meeting in london .  with regard to the state ' s failure to pay enron , ranganathan said , \"\" bills are prepared as per the power purchase agreement ( ppa ) and dpc owes some money to us . our people informed enron officials about this . . in fact , there was no reason to give powers to the md to slap a termination notice . \"\" in the london meeting , mseb and industrial development bank of india ( idbi ) representatives insisted that the dpc must pay rs 411 crore since it could not supply power whenever needed .  chief minister vilasrao deshmukh has already termed as unfortunate the decision of the board of the enron - promoted dpc to give mcgregor powers to wind up operations . deshmukh added , \"\" we have already requested enron not to take any harsh decision . \"\" deshmukh had earlier said , \"\" we have directed state government officials attending the dpc board meeting to desist the energy company from winding up operations in the state , as it would be harmful to both of us . \"\"  enron officials are keeping mum on the issue . mcgregor said , \"\" i am not going to give any comment . \"\"  mid day , april 27 , 2001  enron offers ' no comment ' on renegotiation , h s rao  a crucial meeting of the board of directors of the dabhol power company ( dpc ) , promoted by the us energy major enron , was held here yesterday apparently to discuss fate of its $ 900 - million power project in maharashtra , but there was no official word on the indian and state governments ' decision to renegotiate the contract .  an enron spokesman declined to divulge what transpired at the meeting , saying the issues discussed at the meeting were ' confidential ' . \"\" we have not received any direct communication . unless we get it and evaluate the details , we have no comments to make , \"\" the spokesman said when asked about the proposed decision on re - negotiation of the project in which the maharashtra state electricity board ( mseb ) has 15 per cent stake .  asked whether the board had taken a decision on empowering dpc managing director neil mcgregor to wind up its operations in india , the spokesman said he had nothing to say on them . enron has reportedly authorised mcgregor to look at various options including selling the company ' s stake in dpc . maharashtra chief minister vilasrao deshmukh said in mumbai that the state government would pay up the undisputed dues to the company . he said the maharashtra government \"\" is not in favour of terminating the 2184 - mw project , but wanted an amicable solution to the imbroglio . \"\"  mid day , friday , april 27 , 2001 ,  committee to renegotiate enron deal  a committee to renegotiate the power purchase agreement with the dabhol power company will be appointed by this evening , chief minister vilasrao deshmukh said today . addressing media persons after his meeting with the noted social reformer anna hazare at his official residence varsha , deshmukh said the committee would be formed by this evening or by tomorrow , at the most . he termed as unfortunate the enron board decision empowering dpc chief neil mcgregor to serve a preliminary termination notice on the maharashtra state electricity board and said the state was willing to negotiate the issue with power company .  \"\" renegotiations will be held as per the suggestions made by the godbole committee and the center will also depute its representative on the renegotiating committee . we don ' t want to take any hasty decision , \"\" deshmukh saidhe pointed that the only bone of contention with the dpc had been its expensive tariff and hoped that the issue would be resolved amicably . when pointed that the enron board had taken a decision to serve the notice despite state \u0019 s willingness to appoint a renegotiating committee , chief minister said it was unfortunate .  earlier , in his meeting with hazare , deshmukh promised to make necessary amendments to the right to information law recently passed by the state so that the information was easily accessed by the common people . he also gave a patient hearing to hazare on his complaints of corruption in various state departments and promised action against guilty after a thorough inquiry within three months .  afternoon , april 27 , 2001  ' enron ' s on ! '  state govt . to renegotiate dabhol power project , by hubert vaz  the us power giant , enron power corporation ' s willingness to wrap up the dabhol power project and leave the shores may not actually materialise , though the dabhol power company chief , mr . wade cline , has been authorised to do so , since the lenders for the project would have a decisive say in the matter .  disclosing this , chief minister vilasrao deshmukh confirmed this morning that the state government would churn out a compromise formula by which the power project at dabhol could be continued , and at the same time enron did not feel slighted . \"\" enron has not yet conveyed to us about this decision . we are waiting for their letter , \"\" he said . when asked what sort of compromise the state government plans to forge , mr . deshmukh said , \"\" let our officers come back . after that we will decide a future course of action . but we are definitely going in for renegotiation of the project . it is very difficult to predict the outcome of enron ' s decision but as of now the project is still on . \"\" when asked whether the project could be moved to another state , if wound up from maharashtra , mr . deshmukh said , that was not possible as per the terms of the agreement between the us company and the state government . however , it was difficult for the project to move out of the state itself , he indicated . he also confirmed that both parties would face considerable losses if the project was terminated .  the board of directors of the dabhol power company , which met in london on wednesday , decided to put an end to all controversies surrounding the project once and for all by empowering the dpc chief to terminate the project , if he deemed it fit . however , this decision , as of now , does not necessarily indicate the death knell for the project . the enron project , which had been riddled with controversies right from its inception , had been a pretext for the political parties in the state to drag each other on the mat from time to time . the previous sena - bjp government , which had been out to terminate the project , however , chose to continue with it following renegotiations with enron ' s top visiting officials like ms . rebecca mark . and , the democratic front government inherited the controversial project when the governments changed hands a year and a half ago .  meanwhile , state energy minister dr . padamsinh patil , when contacted at the osmanabad circuit house , said the state government and the central government have decided to appoint a joint committee to renegotiate the project with enron . \"\" it is not easy for them to walk out of the project just like that . they will have to go in for litigation and this would prove costly for both sides , \"\" he said . in case the project is terminated , the government can still manage the power needs of the state , though it would be a bit tough job , he added .\",0\n\"Subject: re : pending approval for ibuyit request for wincenty ( vince )  kaminski : eva : remedy 412144  vince ,  welcome to ibuyit , enron ' s integrated procurement through payment solution .  your ibuyit security form has been processed . here is your ibuyit  eprocurement logon information :  user id : po 0503778  password : your date of birth ( format : yyyymmdd - - 19670120 for january 20 ,  1967 )  important : when you first log on to ibuyit eprocurement , you will be prompted  to change your password . you may use the same password you enter when logging  on to other sap - related applications , e . g . , ehronline . should you select a  new password , your password in other sap - related applications will  automatically reset . you only need one password for your sap user id ( pid ) .  ready to launch ibuyit eprocurement ? access it from the ibuyit portal :  for step - by - step documentation on ibuyit eprocurement , click here :  for help , call the isc call center at 713 - 345 - 4727 .  if you have any question regarding this request , please contact sap security .  thanks !  from : raul davila / enron @ enronxgate on 04 / 19 / 2001 06 : 02 pm  to : sap security @ enron  cc :  subject : re : pending approval for ibuyit request for wincenty ( vince )  kaminski : eva : remedy 412144  approved  - - - - - original message - - - - -  from : tow , eva on behalf of sap security  sent : thursday , april 19 , 2001 5 : 39 pm  to : davila , raul  cc : vkamins @ enron . com ; crenshaw , shirley  subject : re : pending approval for ibuyit request for wincenty ( vince )  kaminski : eva : remedy 412144  raul ,  raul ,  vince kaminiski is requesting acces to the technical view for catalog along  with the ibuyit approval role . this is pending your approval . please send  your response to sap security .  thanks !  shirley crenshaw @ ect  04 / 19 / 2001 03 : 01 pm  to : sapsecurity @ enron . com  cc : vince j kaminski / hou / ect @ ect  subject : ibuyit form  attached please find the completed form for vince kaminski , managing  director , research group .  he will be approving all purchases for cost center 107043 .  >  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 19 / 2001  02 : 58 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : debbie skinner / enron @ enronxgate on 04 / 19 / 2001 02 : 52 pm  to : shirley crenshaw / houston / eott @ eott , shirley crenshaw / hou / ect @ ect  cc :  subject : ibuyit form  hi shirley  there were two shirleys , so sending to both  >  isc help desk\",0\n\"Subject: re : brazil  fyi . this is a deal i ' ve been helping them value correctly .  here remi is , ostensibly the head of trading in brazil , and he doesn ' t even  know what a digital option is . scary !  grant .  - - - - - - - - - - - - - - - - - - - - - - forwarded by grant masson / hou / ect on 03 / 30 / 2000 10 : 23  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  remi collonges @ enron _ development  03 / 29 / 2000 07 : 53 am  to : grant masson / hou / ect @ ect  cc :  subject : re : odebrecht / ita deal  thanks for taking the time to look at this transaction . i ' m currently trying  to understand what a digital option is , but besides this i can say you ' ve got  it right .  remi\",0\n\"Subject: re : tiger team - wharton participants  i lied a little - 2 people from the bottom of the list did submit resumes - i  got discouraged and didn ' t check everyone .  michele nezi marvin  manager  enron broadband services  ( 713 ) 853 - 6848  michele nezi marvin  01 / 10 / 01 06 : 18 pm  to : kristin gandy / na / enron @ enron  cc : jeffrey a shankman / hou / ect @ ect , vince j kaminski / hou / ect @ ect  subject : re : tiger team - wharton participants  are these students first or second years ? if they are first years , we did  not have a single one submit a resume for the summer associate position .  michele nezi marvin  manager  enron broadband services  ( 713 ) 853 - 6848  kristin gandy @ enron  01 / 03 / 01 10 : 17 am  to : jeffrey a shankman / hou / ect @ ect , william keeney / hou / ect @ ect , catherine  clark / hou / ect @ ect , rajesh chettiar / enron _ development @ enron _ development , tom  dutta / hou / ect @ ect , jayshree desai / hou / ect @ ect , colin jackson / enron  communications @ enron communications , laura howenstine / enron  communications @ enron communications , michele nezi marvin / enron  communications @ enron communications , jennifer fraser / hou / ect @ ect , natalie  halich / enron communications @ enron communications , ranabir  dutt / corp / enron @ enron , teresa dyar / na / enron @ enron , jeff golden / hou / ees @ ees ,  charles ward / corp / enron @ enron , sarah wesner / corp / enron @ enron , li  sun / na / enron @ enron , gillian johnson / na / enron @ enron , lisa  connolly / na / enron @ enron , michael j popkin / na / enron @ enron , kevin  mcgowan / corp / enron @ enron , evan betzer / enron communications @ enron  communications , jebong lee / enron communications @ enron communications , chu chu  wang / corp / enron @ enron , brad hitch / eu / enron @ enron , betsy bassis / enron  communications @ enron communications , matthew goering / hou / ect @ ect , claude  tellis / enron @ enronxgate  cc :  subject : tiger team - wharton participants  attached below is a list of individuals that will be participating in the  tiger team event at enron in houston on the 18 th of january . keep these  people in mind when it comes time to pick candidates to interview for the  spring . call if you have any questions and i am still looking for wharton  alum who would like to attend the dinner at churrasco ' s that same evening .  thank you ,  kristin  - - - - - - - - - - - - - - - - - - - - - - forwarded by kristin gandy / na / enron on 01 / 03 / 2001  10 : 14 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  melinda mccarty  01 / 03 / 2001 09 : 43 am  to : kristin gandy / na / enron @ enron  cc :  subject : tiger team - wharton participants  vincent chen  nicholas levitt  deepa mallik  jack rejtman  heather thorne  donna piazze  kim whitsel  tulika bhalla  jaideep singh  edson otani  joshua leventhal  pat henahan  gustavo palazzi  clay degiacinto  steve lessar  ram vittal  omar bassel  jason cummins  dennis feerick\",0\n\"Subject: miscellaneous items  vince :  here are several items that you need to know about .  1 . paul johnson said that monday night would be fine for the dinner with  spyros .  2 . lucy deathridge from risk called and needed your presentation for the  boston conference by this evening in order to have copies made . i told  her  you were in meetings and had been very busy , i did not know whether your  presentation was ready or not . we can have 500 copies made from the  copy center and overnight them to her next week , but you won ' t be here on  the 9 th to do this . do you have any suggestions ?  3 . i have been trying to schedule a meeting that mike roberts called about  regarding e - online . he said to schedule it for friday at 11 : 30 am . i  called  mark palmer and he knew nothing about the meeting , but said he would  be here at 11 : 30 am . however , i have been unable to reach dan diamond .  mike said that you might have his cell phone ?  thanks !  shirley\",0\n\"Subject: risk desk , issue # 1  hello - - listen , wanted to make sure you received a copy of our newest  publication last week , the risk desk . because of the size of the files we  sent out , quite a few bounced back because some corp firewalls halt emails  over a certain size . anyhow , if you didn ' t receive the issue , hit the reply  button and type \"\" resend risk desk . \"\" responce so far has been great for those  of you that received the free copy - - we think you ' ll agree that it ' s soon to  become the leading \"\" must read \"\" publication on market , credit , price and  operational risk management in the energy space .  also , just a reminder , the charter price for a one year subscription ( $ 199 )  ends soon . let us know .  john sodergreen  editor - in - chief  scudder publishing group , llc  ph : 410 / 923 - 0688  fax : 410 / 923 - 0667  johns @ scudderpublishing . com  the desk , the risk desk , power executive  the bandwidth desk , energy ebusiness\",0\n\"Subject: re : 1997 risk paper on pricing of electricity derivatives  bernard ,  yes , i can read a dvi file . you can also cc  my home address : vkaminski @ aol . com . i shall  try to send you an answer to your question on weekend .  vince  \"\" murphy , bernard \"\" on 03 / 01 / 2001 09 : 18 : 58 am  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc :  subject : re : 1997 risk paper on pricing of electricity derivatives  vince ,  i can send you a scientific word dvi file ( at the weekend ) if you can read  scientific word files ? the dissertation hasn ' t been reviewed by les or the  external yet - although its been at forc for 2 months . i think that the  empirical chapter is probably the one which would be of most relevance to  both our company ' s businesses - although i ultimately didn ' t have the time  to ' explicitly ' price the jump risk - premium which i conjectured is possibly  implicit in the prices of exchange - traded electricity futures - options -  rather i developed an implicit estimation procedure which will enable a  rough assessment ( with a little bit of further work , but not too much ) be  made of the price of jump risk in wholesale power markets .  in other words , i assumed spot jump - risk to be undiversifiable , and  essentially devoted 2 theoretical chapters to :  1 ) proving that a jump - diffusion trading model is \"\" incomplete \"\" ( synthesising  the securities markets framework with martingale representation theory ) -  note that i did not assume that markets could be dynamically completed with  ' term structure ' securities as in the hjm w / jumps papers of shirakawa and  das and ;  2 ) deriving an explicit risk - adjustment process for ' implementing ' the price  of jump - risk using a jump - diffusion marginal indirect utility of wealth  process ( ie . a jump - augmented production economy approach in the spirit of  cir , bates , ahn whereas in the latter the driftless forward supposition  means that i have to capture mean - reversion via the futures volatility  function , and jumps are less easy to calibrate . any suggestions ?  regards  bernard  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : 01 march 2001 14 : 54  to : murphy , bernard  cc : shirley . crenshaw @ enron . com ; vince . j . kaminski @ enron . com  subject : re : 1997 risk paper on pricing of electricity derivatives  bernard ,  i am forwarding your message to my assistant and she will mail you a  reprint .  i would be glad to take a look at your dissertation . is it available as a  publication , working paper ?  vince  \"\" murphy , bernard \"\" on 03 / 01 / 2001 02 : 17 : 39 am  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc :  subject : 1997 risk paper on pricing of electricity derivatives  hello vince ,  my name is bernard murphy - i received your e - mail address from les  clewlow ,  who was my phd supervisor at the financia options research centre at  warwick  business school . i ' ve just finished my phd on electricity price jump  diffusions : a theoretical and empirical study in incomplete markets -  hence my interest in electricity price modelling and derivative pricing . i  was looking to get hold of a copy of your 1997 paper , which has recently  come to my attention :  \"\" the challenge of pricing & risk - managing electricity derivatives \"\" , the us  power market , risk publications , pp . 149 - 171 .  and les suggested that i contact you directly ( les is travelling at present  and doesn ' t have an electronic copy available ) to request an e - copy .  incidentally , i am lecturer in finance / financial mathematics at  university  of limerick ( ireland ) and have taken a year out to work for caminus uk ,  where i am working on introducing and developing a markets - based approach  ( spark - spread ) to real asset valuations in the uk power industry .  thanks in advancve  bernard murphy\",0\n\"Subject: enron ' s new weather system , courtesy the research dept .  v  last night , i tested our new system for real - time surveillance and messaging  of the weather , and it delivers the data to desktops throughout the building  more than 6 1 / 2 minutes before the national weather service updates their  webpages . our current technology was web - scraping these pages via ftp , then  parsing into a database . the impact of these 6 1 / 2 minutes for the hourly  power traders is enormous - the weather stations upload their data around 53  minutes after the hour , and we can now receive them within 2 minutes later .  we can now re - estimate our nonlinear stack model before the top of the hour ,  when hourly power trading begins . otherwise , we would not have model results  until around 15 minutes after the hour . notably , hourly power trading is , for  all intents and purposes , concluded by then ( they trade for 10 - 15 minutes and  manage the scheduling for the next 30 or so miutes ) . so , effectively , we may  now be one * hour * ahead of where we were just a few days ago , in terms of  information . people are very excited up here , from the cto on down - thanks  for letting it happen .  c\",0\n\"Subject: research group accountant  hi dawn :  the research group has moved around so much that we do not know  who to contact for accounting issues . we need to reverse some money  back to one of the groups we are supporting , but do not know who to contact .  do you have a clue ?  we are also still using an sap corp . co # and rc # because we do not  know where to go to get the new ena # ' s .  if you could help in this we would really appreciate it .  thanks !  shirley crenshaw\",0\n\"Subject: var for cob lst aug 2000  hi ,  i have run the var for cob lst aug 2000 . a summary of the results is as  follows :  i have also attached the model .  again the prices for cocoa beans and gold have not been updated since the  26 th july . the gamma positions for the metals have been  added to check the effect on the var . the change was small :  delta var - $ 4 , 899 , 196  delta / gamma var - $ 4 , 780 , 797  this is not a live daily feed as andreas mannually created the file for me  today so that we could do this check .  regards  kirstee\",0\n\"Subject: understanding risk and return of an insurance portfolio  hi vince ,  i am enclosing a report on my thoughts about risk and return behaviour of an  insurance portfolio . your input on this will be very helpful .  i have given vasant a copy of this report and am working with him towards  improving this . in the mean time , i happened to mention this idea in a  meeting with david porter , per sekse , brad blesie and david hoog and there  seems to be some interest in understanding how this works . in fact , david  hoog subsequently reviewed this with me and suggested some changes . those  changes have been included in this report .  the idea here is simple and just a starting point . while it provides a broad  picture on how risk and return will behave at portfolio level , i am hoping  to be able to relax some of the assumptions to get more realistic picture in  near future .  looking forward to your input ,  sincerely ,  amitava\",0\n\"Subject: aga for 6 / 16 / 00 is predicted at 82  i will keep runing my aga model ( the molecule model ) for awhile . for the last  two weeks the numbers that came out from the model are in the lucky side .  see the following table .  the following figures shows the overall fit .  zimin\",0\n\"Subject: confirmation of meeting  vince : thanks for introducing me as a speaker at the power 2000 conference .  as per our conversation , please find enclosed my resume .  i will come to your office at 1 : 30 pm , friday , may 12 , 2000 . please let me  know if the dress code is casual or formal .  thanks again for taking the time to talk to me regarding opportunities at  enron .  >  sanjeev k khanna , m . sc . , p . eng .  director , quantitative risk management  pg & e energy trading  1100 louisina street , # 1000  houston , tx 77094  email : sanjeev . khanna @ et . pge . com  tel : ( 713 ) 371 6647 , pager 800 - 526 - 4095 , cell ( 281 ) 302 - 8468  pg & e energy trading and any other company referenced herein which uses the  pg & e name or logo are not the same company as pacific gas and electric  company , the california utility . these companies are not regulated by the  california public utilities commission , and customers do not have to buy  products from these companies in order to continue to receive quality  regulated services from the utility .  - . doc\",0\n\"Subject: re krishnarao , pinnamaneni v review  i made a mistake and put comments for another person into krishnar ' s prc .  please make sure that you ignore it if i can ' t get it fixed . below is what i  intended to put in . my apologies .  i will get my assistant to get it deleted and put this information in on  monday . it won ' t let me do it now . i guess it does not pay to leave 30 or  40 reviews to the last day . paula : please fix this for me and let vince know  either that it is fixed or cannot be fixed .  innovation / entrapraneurship  no basis  communicating goal setting  no basis  team work / communication  excellent . very easy to work with and get along with .  business instincts  excellent . krishnar is consistent in asking to help out and asking what more  he could do to help us out .  analystical technical  excellent . krishnar has a very strong grasp of what we are doing and how it  should be done .  overall  excellent . my interactions with krishnar have been limited but positive .  krishnar is always positive with a positive attitude to get the job done .  strengths :  very strong analytical skills with a desire to add value .  areas for improvements  i don ' t understand krisnar ' s role ( is leading all research people on our  floor or just some ) well and have had limited interaction with him . { all has  been positive when it has ocurred } this suggests that krishnar might spend  more time define what his people are doing and getting feedback about their  performance , and developing the project scope better .\",0\n\"Subject: re : the research lunch  i would be very willing to make a presentation to you . this coming thursday  unfortunately , i have a sick day scheduled ( babies will do this kind of thing  to you ) and will not come into the office .  would it be more practical to make the presentation to a select group of a  few ( possibly ) interested individuals ? this might give us more shceduling  flexibility and would also seem more appropriate , knowing that what i have is  a set of suggestions for development and no earth - shuttering , live product .  please let me know if this accomodates your needs ,  yannis  joseph hrgovcic  03 / 29 / 2000 09 : 35 am  to : yannis tzamouranis / hou / ect @ ect  cc :  subject : re : the research lunch  yannis ,  shirley will know the room in which the lunch is scheduled . let her know  what audio - visual materials you ' ll need . keep in mind that the research group  is now about 40 people , some of whom will be watching the presentation on  video from portland and from london . the best platform would be to get a  pc - video or pc - screen link - up , so that everyone , including people watching  remotely , can see your computer ' s monitor on a big screen .  the itinerary for the lunch is that we meet at 11 : 30 and eat lunch and trade  news for the first 30 - 45 minutes , and then at 12 : 00 or 12 : 30 at the latest ,  we have a presentation . we try to wrap up by 1 : 00 , so that what we discussed  yesterday should make for a very good presentation in pretty much every way .  from my experience , the audio - visual people need at least an hour advance  warning to get the screens linked up . let me know if you need any help in  getting you and jenny the things you need .  joe  - - - - - - - - - - - - - - - - - - - - - - forwarded by joseph hrgovcic / hou / ect on 03 / 29 / 2000  09 : 26 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  03 / 29 / 2000 09 : 31 am  to : yannis tzamouranis / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , joseph hrgovcic / hou / ect @ ect , shirley  crenshaw / hou / ect @ ect  subject : re : is this data of interest to any of you ?  yannis ,  it makes a lot of sense to get this info .  also , you are welcome to make a presentation to the group this thursday at  lunch .  please , call shirley crenshaw ( x 3 - 5290 ) to coordinate and order sandwich  you would like to have .  vince  joe , can you , please , babysit this presentation ( make sure we have all the  audiovisual  equipment we need , etc . ) .  vince  yannis tzamouranis  03 / 28 / 2000 02 : 50 pm  to : yannis tzamouranis / hou / ect @ ect  cc : ( bcc : vince j kaminski / hou / ect )  subject : is this data of interest to any of you ?  fyi :  the following file describes the contents of the monthly energy review  ( application , current , and historical ) .  the data is available through a doe site and we can get it for free and  incorporate it in the lim database , if there is interest .  review the attached file ( look for keywords of interest ) and let us know  whether need dictates loading these datasets .  for the  market analysis and infomration management group ,  yannis c . tzamouranis  enron it\",0\n\"Subject: re : eprm course  chris ,  thanks for the invitation . yes , i am interested in the training course .  i shall call paul bristow today . please , give me some indication regarding  the dates .  vince  vincent kaminski  managing director - research  enron corp .  1400 smith street  room ebl 962  houston , tx 77002 - 7361  phone : ( 713 ) 853 3848  ( 713 ) 410 5396 ( cell )  fax : ( 713 ) 646 2503  \"\" chris strickland \"\" on 02 / 06 / 2001 02 : 20 : 52 am  please respond to \"\" chris strickland \"\"  to : \"\" vincejkaminski \"\"  cc : \"\" vince \\ ( home \\ ) \"\"  subject : eprm course  hi vince ,  ?  hope you are fine . i hope that grant ' s leaving ? hasn ' t affected your group  too much ?  ?  eprm ' s paul bristow has been in touch about a var training course involving  les , yourself and i . are you interested ? we would be ? extremely happy to work  with you . he was talking about london and houston which i don ' t know if it  fits with your travel schedule . maybe we can sort something out .  ?  i hope to have the next article with you by early next week .  ?  best regards as always , and many thanks for your book promotional efforts !  ?  chris .  ?  ?  ?\",0\n\"Subject: re : information  vince ,  after checking into this issue i have found that the type of information  requested is proprietary and not available for release . i will try to  contact them and see if there is something else we can help them with but as  far as the data is concerned i don ' t believe we can help them with that  request . i am sorry i couldn ' t be of more help . thank you .  shalesh ganjoo  vince j kaminski  11 / 21 / 2000 09 : 15 am  to : shalesh ganjoo / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect  subject : information  shalesh ,  please , look into it . can we give them this information ?  i see a remote possibility of a gain for enron : it ' s in our interest to  support  the growth of this market and part of the process is development of the  infrastructure for this market and maintaining public interest .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 11 / 21 / 2000  09 : 18 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" yann d ' halluin \"\" on 11 / 16 / 2000 01 : 18 : 39 pm  to : vince . j . kaminski @ enron . com  cc :  subject : information  dear sir :  the scientific computation group at the university of  waterloo , ontario , canada , has recently started to be very  interested in the recent developments of the bandwidth  market . we find that the specifics of the bandwidth market  offer challenges from the modelling point  of view .  however , we have encountered difficulties when looking for  data , and we were wondering if you could help us . specifically  we would like to know for a given city pair for the different  existing type of lines ( e . g . oc 3 , ocl 2 , oc 48 . . . . )  1 . what has been the spot lease prices ( e . g . $ / line - type / mile ) for  the past 12 months ?  2 . what is the price of the dark fiber for a given type of line ?  3 . what is the maintenance cost $ / month ?  ( for the same lines , e . g . oc 3 , ocl 2 , oc 48 , . . . )  4 . what is the upgrading cost for the different lines ?  ( e . g . how much does it cost to upgrade )  oc 3 - - > ocl 2  oc 3 - - > oc 48  ocl 2 - - > oc 48  5 . how long does it take to upgrade a line from a certain  capacity to another ( e . g . 1 month , 2 month , . . . ) ?  we realize that some of these questions may ask for confidential  data , in that case we would really appreciate if an order of magnitude  was provided . i look forward to hearing from you .  sincerely ,  yann d ' halluin  p . s : here is a link to our web page :  http : / / www . scicom . uwaterloo . ca  - -  this email and any files transmitted with it are confidential and  intended solely for the use of the individual or entity to whom they  are addressed . any unauthorized review , use , disclosure or distribution  is prohibited . if you are not the intended recipient , please contact  the sender by reply e - mail and destroy all copies of the original  message . \",0\n\"Subject: re : fwd : summer internship - - ph . d . in chicago  stinson ,  can you ask alex and tanya to interview this guy ?  i wan to make a recommendation to celeste based on  an this interview .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 19 / 2001  05 : 03 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  celeste roberts  01 / 18 / 2001 04 : 33 pm  to : vince j kaminski / hou / ect @ ect  cc : paul lebeau / na / enron @ enron  subject : re : fwd : summer internship - - ph . d . in chicago  vince :  have you had a chance to interview ? if not , we can make arrangements to have  candidate interviewed when we go to chicago for summer associate interviews .  let me know and i will get the chicago recruiter to add to schedule .  vince j kaminski  01 / 17 / 2001 03 : 51 pm  to : celeste roberts / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : fwd : summer internship - - ph . d . in chicago  celeste ,  i am a very good customer of your group .  this is another student ( this time from chicago ) i would be glad to take into  the group  as an intern . the resume is attached at the bottom of this message .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 17 / 2001  03 : 51 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  li xiao on 01 / 13 / 2001 01 : 41 : 29 pm  to : vkamins @ ect . enron . com  cc :  subject : fwd : summer internship - - ph . d . in chicago  hi , vince ,  this is li , writing from u . of chicago .  i am in the second quarter here .  the study and social life is extremely busy at the school .  but i enjoy connecting the knowledge i learn everyday here  with the experience i had with enron .  a schoolmate of mine , a chicago ph . d . candidate in finance ,  is looking for an internship for the coming summer .  i recommend him to write to you to see if you are interested in  or if there is a need . if so , you can contact with him directly .  he is a really bright guy . if not , hope you don ' t mind that  i sell enron at school so hard .  again , thanks for all the help you gave me .  have a good new year .  li  p . s . : cover letter below and resume attached .  li xiao  university of chicago  graduate school of business , class of 2002  ( 773 ) 955 - 0710  dear dr . vince kaminski ,  i am a ph . d . student in finance at the university of chicago gsb who =  hopes to find a summer internship at enron of 2001 ( between june and =  september ) . i heard your group from my friend li , who worked at enron =  for 3 year . she spoke highly of you . if it ' s okay , i am primarily =  interested in risk management .  at the university of chicago , i will have completed all the ph . d . =  courses in the area of finance by the end of the first year . as normally =  it takes two years to finish the required finance courses , i decided to =  take all the finance courses in the first year . in the fall quarter , i =  already took empirical asset pricing and theoretical asset pricing and =  did very well . in the winter quarter , i will be taking corporate =  finance , continuous time finance and behavioral finance . i am exposed to =  all fields of finance . prior to coming to chicago , i received a master ' s =  degree in economics at washington university in saint louis where i =  acquired skills in economic analysis . i also have a strong background in =  statistics and mathematics . this makes me believe that i have acquired =  the ability to do financial research .  prior to coming to the united state , i was an outstanding graduate from =  beijing university , china . i was the founder and president of beijng =  univeristy society of oceanology . i also organized a research jouney in =  the round - the - bo - sea economic region . these experience helped to hone my =  communication and interpersonal skills .  as illustrated above , my skills and expertise are ideally suited for =  financial research . my resume is enclosed . in the event that you think =  an interview is in need , my time is very flexible . your assistance is =  appreciated .  sincerely yours ,  jason chen ( huafeng )  6022 s . drexel ave , apt 612  chicago , il 60637  ( 773 ) 955 - 0348  - resume . doc\",0\n\"Subject: dr . michelle foss - energy institute  michelle ,  fyi  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 25 / 2001  09 : 50 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  christie patrick  04 / 25 / 2001 07 : 43 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : dr . michelle foss - energy institute  hi vince - - i ' ll take care of it !  thanks ! christie .  - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 04 / 25 / 2001  07 : 43 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  04 / 24 / 2001 05 : 15 pm  to : christie patrick / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : dr . michelle foss - energy institute  christie ,  i am forwarding you a message i have received from the university of houston .  can you help them ? we have a very good relationship with the uoh .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 24 / 2001  05 : 14 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  aisha jamal on 04 / 23 / 2001 03 : 15 : 29 pm  please respond to aisha @ uh . edu  to : vkamins @ ect . enron . com  cc : mmfoss @ uh . edu  subject : dr . michelle foss - energy institute  dear mr . kaminski ,  i am writing to ask a favor for dr . michelle foss . as you know we will  be running our \"\" new era \"\" program from may 14 - may 25 th . dr . foss was  wondering if on may 22 nd ( between 1 : 30 pm and 4 : 00 pm ) , we would be able to  bring  our participants for a tour of your trading floor . at this time we will have  30 - 40 people , and since only 10 people maximum should really be on a  trading floor we need to have 4 companies among which to divide our  participants . at this time , we have a floor from coral energy , and are  working with duke ,  and i will be contacting mr . paul roberts to arrange for the reliant energy  trading floor . i was hoping very much that you would be able to direct  me to the right person to contact to arrange this tour . will this be a  possiblity ? i really appreciate your help very much . thank you !  best regards ,  aisha jamal  energy institute  713 - 743 - 4634\",0\n\"Subject: re : rice students  ken  a tour would be great ( after 10 : 30 , if they can make it ) .  please , let shirley know about the meeting .  vince  kenneth parkhill @ enron  01 / 29 / 2001 10 : 17 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : rice students  vince ,  19 c is available and reserved for 9 am to 10 : 30 , wednesday .  would you like me to try and arrange a tour for the students or should we  wait until we know more about their interests ?  are their some other enron folks you would like to invite for wednesday ?  ken\",0\n\"Subject: re : clustering for power  tanya ,  as we discussed in the last meeting , to simulate secondary power curve we  need correlated jump sizes . this is totally different from the current  secondary price curve simulation which assume the perfect correlation and  also totally different from the secondary gas basis curve simulation which is  based on the hedging ratio .  there are two more issues on my side i need to resolve :  1 . i want resolve the power basis curve issue . currently all power position  on these basis curve are actually price positions . we are hard coding this :  if power basis we add basis to corresponding region curve . i am trying to  remove this hard coding by asking loading the price curve for all these basis  locations .  2 . same is true for all those power f curves . these curves looks similar to  those basis curves . currently we just directly map these f curves to the  corresponding region curves . i would also prefer to load the price curves  instead of the price differences .  from research , i need those jump size correlations .  clearly , all these involve many new development , unless we want to use  simpler way to simulate secondary power curves .  regards ,  winston  - - - - - original message - - - - -  from : tamarchenko , tanya  sent : monday , april 16 , 2001 9 : 17 am  to : lew , jaesoo  cc : gorny , vladimir ; jia , winston ; kaminski , vince  subject : re : clustering for power  jaesoo ,  as we discussed last week on wednesday meeting can you , please ,  implement clustering for power curves by geographical region . this involves  the following :  1 . deciding together with risk control how many geographical regions we want  to use  and which enron ' s curves belong to each region .  2 . deciding together with risk control how to choose core curves for each  region . this decision can  be maid based on the a ) position size ; b ) statistical analysis . there might  be other considerations .  3 . doing regression analysis for each curve versus the corresponding core  curve .  winston ,  can is it possible to run var for the clustering results obtained by jaesoo  with clustering done by sas ?  should we wait for the stage re - fresh and what is the status on this ?  tanya .\",0\n\"Subject: fwd : our conversation today  return - path :  from : awenda 2000 @ cs . com  full - name : awenda 2000  message - id :  date : mon , 4 dec 2000 12 : 47 : 07 est  subject : our conversation today  to : wkamins @ enron . com  mime - version : 1 . 0  content - type : multipart / mixed ; boundary = \"\" part 2 _ 3 b . d 386 bc 9 . 275 d 329 b _ boundary \"\"  x - mailer : unknown sub 111  hi wincenty ,  it was a pleasure talking to you today . i am enclosing my resume and look  forward to talking to you again .  best regards  bibianna  - bibianna res . # 2 . doc\",0\n\"Subject: re :  tasha ,  yes , i think li xiao deserves the bonus .  vince kaminski  tasha lair @ enron  03 / 21 / 2000 02 : 24 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject :  vince ,  linda vargo asked me because i am the administrator of employee referral  program to contact you on whether or not li xiao is eligible for a bonus on  his referral of alex huang . i have informed linda that the decision up to  you . if you feel that alex huang was hired as a result of li bringing him to  the attention of enron then the bonus is due . linda and yourself have  communicated via e - mail on this issue in early february and it appears from  that correspondence that li did encourage alex to e - mail his resume to you .  please advise as to whether or not you want to award the bonus .  thank you\",0\n\"Subject: re : lunch  fyi  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 09 / 28 / 2000  10 : 26 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  allan . roberts @ uk . arthurandersen . com on 09 / 26 / 2000 09 : 41 : 47 am  to : shirley . crenshaw @ enron . com  cc :  subject : re : lunch  shirley ,  thank you for your e - mail , i hope all has turned out well with vince and his  family .  this is my first day back in the office , so the reason for contacting you is  to  acknowledge receipt of your note and to inquire as to when vince will next be  in  the uk .  please contact me at you convenience ,  allan  to : allan roberts  cc :  date : 18 / 09 / 2000 16 : 18  from : shirley . crenshaw @ enron . com  subject : re : lunch  allen :  i apologize ! i tried to call on the numbers below , but they would not go  through . i sent you an email explaining why vince was not there ,  unfortunately  it did not get to you in time !  vince ' s wife and son were driving to california for his junior year at  stanford .  they stopped in phoenix and his wife got sick . vince is afraid he will  have to  fly out there and drive them on to calif .  please accept our deepest apologies and we will reschedule for october ,  if it is ok .  regards ,  shirley crenshaw  allan . roberts @ uk . arthurandersen . com on 09 / 18 / 2000 09 : 08 : 15 am  to : shirley . crenshaw @ enron . com  cc : chris . j . osborne @ uk . arthurandersen . com ,  richard . p . emerton @ uk . arthurandersen . com ,  mike . pilgrem @ uk . arthurandersen . com ,  angela . mindley @ uk . arthurandersen . com  subject : lunch  dear shirley ,  my colleagues and i were expecting to lunch with vince today .  unfortunately ,  vince did not show .  the reason for contacting you is to inform you of the situation and to  enquire  as to whether everything is ok .  his plane arrived on time , but we have not heard from him today .  if you need to contact me urgently , please call me on + 44 370 584 695 , or  my ea  angela on + 44 7304 8102 .  regards , allan  * * * * * * * * * * * * * * * * * * * internet email confidentiality footer * * * * * * * * * * * * * * * * * * *  privileged / confidential information may be contained in this message . if  you  are not the addressee indicated in this message ( or responsible for  delivery of  the message to such person ) , you may not copy or deliver this message to  anyone .  in such case , you should destroy this message and kindly notify the sender  by  reply email . please advise immediately if you or your employer do not  consent to  internet email for messages of this kind . opinions , conclusions and other  information in this message that do not relate to the official business of  my  firm shall be understood as neither given nor endorsed by it .  * * * * * * * * * * * * * * * * * * * internet email confidentiality footer * * * * * * * * * * * * * * * * * * *  privileged / confidential information may be contained in this message . if you  are not the addressee indicated in this message ( or responsible for delivery  of  the message to such person ) , you may not copy or deliver this message to  anyone .  in such case , you should destroy this message and kindly notify the sender by  reply email . please advise immediately if you or your employer do not consent  to  internet email for messages of this kind . opinions , conclusions and other  information in this message that do not relate to the official business of my  firm shall be understood as neither given nor endorsed by it .\",0\n\"Subject: complexity science and the energy industry brown bag  >  please join nesa / hea at the \"\" complexity science and the energy industry  brown bag \"\" ~ april 18 th , 2001  if you have any questions , please call lana moore at ( 713 ) 856 - 6525 .  thanks and have a great day ! !  - e - business . doc\",0\n\"Subject: request for natural gas technical analysis  - - - - - - - - - - - - - - - - - - - - - - forwarded by patricia tlapek / hou / ect on 09 / 03 / 2000  10 : 44 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  tim mckone @ enron  08 / 30 / 2000 10 : 21 am  to : mike a roberts / hou / ect @ ect  cc : patricia tlapek / hou / ect @ ect , anna santucci / na / enron @ enron  subject : request for natural gas technical analysis  hello mike ,  i work in rodney malcolm ' s commercial transaction group , focusing on  developing energy management relationships with large volume industrial  energy consumers . due to the volatility and high price levels of the natural  gas contract , these consumers of natural gas are extremely concerned about  this exposure , and they are asking for our assistance in helping them manage  this exposure . one of the tools that these customers are requesting is  technical analysis of the natural gas contract so as to determine entry  points for their hedges .  to the extent you could assist us with this analysis , we can proactively  meet these customer requests and increase our deal flow .  please advise as to the availability of your assistance .  thank you , tim\",0\n\"Subject: raptor position reports for 1 / 29 / 01  vince , these spreadsheets have the most up to date numbers for the raptor  structures . the summary sheet summarizes the assets and liabilities in all  four .  - - stinson  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 02 / 02 / 2001  04 : 10 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  rakesh bharati @ enron  02 / 02 / 2001 10 : 27 am  to : stinson gibner / hou / ect @ ect  cc :  subject : raptor position reports for 1 / 29 / 01  - - - - - - - - - - - - - - - - - - - - - - forwarded by rakesh bharati / na / enron on 02 / 02 / 2001  10 : 30 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : gordon mckillop on 01 / 31 / 2001 09 : 36 am  to : rakesh bharati / na / enron @ enron  cc :  subject : raptor position reports for 1 / 29 / 01  - - - - - forwarded by gordon mckillop / na / enron on 01 / 31 / 2001 09 : 35 am - - - - -  gordon mckillop  01 / 30 / 2001 03 : 58 pm  to : ben f glisan / hou / ect @ ect , andrew s fastow / hou / ect @ ect , richard  causey / corp / enron @ enron , rick buy / hou / ect @ ect , greg whalley / hou / ect @ ect  cc : barry schnapper / corp / enron @ enron , andrea v reed / hou / ect @ ect , ryan  siurek / corp / enron @ enron , kevin d jordan / corp / enron @ enron , michael  kopper / hou / ect @ ect , chris loehr / hou / ect @ ect , anne yaeger / hou / ect @ ect , rodney  faldyn / corp / enron @ enron , ron baker / corp / enron @ enron ,  amy . flores @ ljminvestments . com , l ' sheryl hudson / hou / ect @ ect , wes  colwell / hou / ect @ ect , kevin howard / enron communications @ enron communications ,  david port / market risk / corp / enron @ enron , jordan mintz / hou / ect @ ect , maria  lebeau / hou / ect @ ect , david maxwell / hou / ect @ ect , susie ayala / hou / ect @ ect , hope  vargas / hou / ect @ ect , bob butts / gpgfin / enron @ enron , marnie lamb / na / enron @ enron  subject : raptor position reports for 1 / 29 / 01  the raptor i credit capacity is $ ( 110 . 8 ) million as a result of the merlin  credit derivative ( $ 63 ) and heartland steel ( $ 38 ) being reflected in the mpr  for 1 / 29 .  raptor iv has a notional capacity of $ 522 million available .\",0\n\"Subject: re : fw : fw : visit to enron by professor nalin kulatilaka of boston  university  hi nalin ,  martin lin asked if you have a paper \"\" or something \"\" related to the lecture you will be giving to us on may 17 th .  ciao ,  iris  - - - - - original message - - - - -  from : lin , martin  sent : monday , april 30 , 2001 8 : 52 am  to : mack , iris  subject : re : fw : fw : visit to enron by professor nalin kulatilaka of boston university  is there a paper or something related to this topic that we can look over beforehand ?  thanks ,  martin  iris mack / enron @ enronxgate 04 / 27 / 01 05 : 42 pm to : chonawee supatgiat / corp / enron @ enron , shalesh ganjoo / enron communications @ enron communications , martin lin / hou / ect @ ect , martin lin / contractor / enron communications @ enron communications cc : subject : fw : fw : visit to enron by professor nalin kulatilaka of boston university  fyi  - - - - - original message - - - - -  from : mack , iris  sent : monday , april 23 , 2001 2 : 45 pm  to : crenshaw , shirley ; crenshaw , shirley ; dupont , anita  cc : kaminski , vince ; ' nalink @ bu . edu '  subject : fw : fw : visit to enron by professor nalin kulatilaka of boston university  hi ,  here is the title and abstract for professor kulatilaka ' s talk on may 17 th at our 11 : 30 am research group luncheon / seminar .  iris  title : \"\" using the mobile internet to make new markets \"\"  abstract :  professor kulatilaka will talk about some new ideas that he is working on which involve  using the micro billing / payments capability of a packet - switched wireless  network to create new markets . the potential markets range from spot  markets for local spectrum to congestion - based pricing for highways .\",0\n\"Subject: pro opticus  shirley ,  please , send this memo to the entire group and ask if this demo was given  to anybody in our group .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 11 / 06 / 2000  05 : 10 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  kevin sweeney  10 / 23 / 2000 06 : 53 am  to : vince j kaminski / hou / ect @ ect  cc : kara maloney / na / enron @ enron , mario de la ossa / na / enron @ enron , matt a  brown / hou / ect @ ect  subject : pro opticus  vince ,  i understand that you or someone in your group had a demo from the above  group last friday . i was wondering if this was part of a push to bring more  options ' analytics to the traders ' desks , and if so , if you could explain  what that effort looks like ? one of the global markets traders , mario de la  ossa also had a look at the software as he has used it in the past .  thanks ,  kevin\",0\n\"Subject: re : a personal favor  anurag ,  i shall talk about vikas to our it people .  can you send me his resume ?  vince  \"\" saksena , anurag \"\" on 05 / 07 / 2001 10 : 06 : 54 am  to : \"\" ' vkamins @ ect . enron . com ' \"\"  cc :  subject : a personal favor  vince ,  ?  i have left a voice mail to you and will wait to talk to you personally . my  brother vikas , who is now in london , is trying to make a switch from  consulting world to working for a specific firm . over last few months , i  have heard of great deal about the success of enron on line business which  fits well in the area of his expertise . i am wondering if you know of some  one in london who he can speak to regarding career opportunities .  ?  since i spoke to you last , a number of things have changed . recently , my  manadate was broaden to include leading a charge for developing a risk  management function for both the domestic and international businesses for  gmac . needless to say , this is exciting albeit making the life a little more  hectic than usual .  ?  talk to you later .  ?  anurag  ?  952 - 857 - 6133\",0\n\"Subject: risk and purchasing meeting  due to time constraints on mr . kaminski ' s schedule during the time that you  all are in town from portland , the meeting being held on august 9 , 2000 in  eb - 45 cl must be held to one hour ( 2 : 00 - 3 : 00 pm )  please have your questions , comments , and / or materials ready in advance and  expect this to be a fast paced meeting .  kristin j . harrelson  enron broadband services , inc .  procurement , logistics , and contracts  1400 smith , suite eb - 4573 a  houston , tx 77002  phone : 713 . 853 . 6814  fax : 713 . 646 . 8582  cell : 713 . 594 . 1385 \",0\n\"Subject: old email address  > hello vince ,  > nie bardzo wiem czy pisac po polsku czy po angielsku : )  > co u ciebie slychac ?  > u mnie troche zmian jak ze juz nie pracuje w scem , a przenioslem sie  > do mieco ( a small marubeni backed energy - america trading company ) .  > bardzo rozne od scem . najbardzij przypomina mi scem na poczatku z joe , jak  > bylo 20 - 30 osob . sa i minusy i plusy . troche structure i research ale  > przede wszystkim weather . trrovhe latam miedzy east i west bo sa officy  > w obydwu miejscach . california jest ok w zimie : ) .  > na bardziej personalnym froncie ; pamietasz dinner na ktory poszlismy  > kiedys na conferencji w ny z catherine ( she used to work for williams -  > works for morgan stanley now ) , we are dating ( for a while ) . it is a  > good story how we met . so we owe you dinner : )  > jak bylem w atlancie to pracowala dla mnie christa grey . bedzie teraz  > konczyla grad school in international relations ( with eastern european  > slant ) , i zastanawia sie czy sa jakies mozliwosci polaczenia tego co  > robila ze \"\" wschodem \"\" . co robila to bylo przede wszystkim vb  > implementations modeli , ( roznego rodzaju ) , web based data collections ,  > basic research , teraz jest w gas structuring etc . she speaks russian  > and was in ukraine / poland few times on peace corp assingments . she is very  > bright and dedicated . myslalem zeby ja zwabic do californii ale ten  > eastern european pociag jest u niej silniejszy niz u mnie : ) . i have here  > resume , wiec jak bys myslal ze jest jakis fit i will foreward it to you .  > troche tak mieszanka pisze , przepraszam  > bede chyba w houston w pazdzierniku to moze bysmy sie mogli spotkac .  > latwiej pewnie by bylo w ny ( mieszkam po nj stronie ( rent jest inny niz  > w atlancie : ) ( 201 ) 222 - 0435 ) , wiec daj mi znac jakbys mial czas i ochote .  > thanks  > roman  >\",0\n\"Subject: your lap top  vince :  the it migration team called and said that they need an email from you  stating that you do not want your lap top \"\" ghost upped \"\" ? ( not sure if this  is the correct term ) . they said they were supposed to do this to all  computers during the migration process , but since you requested that  they not do this , then they need an email from you with this request .  you need to send the email to : kacee downey / enron @ enronxgate  thanks !  shirley\",0\n\"Subject: cera conference call and web presentationthe final wave of rto  filings : the ball is in ferc ' s court - cera conference call  title : cera conference call and web presentation \u0001 * the final wave of rto  filings : the ball is in ferc ' s court  url : http : / / www 20 . cera . com / eprofile ? u = 35 & m = 2243  electric transmission and north american electric power conference call and  web presentation  a cambridge energy research associates conference call & web presentation  topic  the final wave of rto filings - - the ball is in ferc ' s court  * some surprises from the independent system operators  * will the deadline be met ? the countdown to december 15 , 2001  * the ferc : a soft stance on rto filings ?  format  at the time listed below , our speakers will address this topic for  approximately 30 minutes , with accompanying graphics presented on the  internet ,  followed by an open question and answer period .  speakers  david clement , cera associate director , electric transmission  hope robertson , cera senior associate , north american electric power  larry makovich , cera senior director , north american electric power  time  1 : 00 p . m . eastern , thursday , february 22 , 2001  eligibility  clients eligible to participate in this conference call are those who  subscribe  to the electric transmission advisory service or the north american electric  power advisory service .  to enroll  to enroll , please return this form via fax to kari paakaula at ( 617 ) 497 - 0423 ,  or enroll via e - mail at kpaakaula @ cera . com before 4 : 00 p . m . , wednesday ,  february 21 , 2001 .  for the audio portion of the call , please call in on one of the following  numbers approximately 10 - 15 minutes before the call :  audio  netscape navigator 3 . 02 or higher ; or sun hot java ( tm )  * close all desktop applications and disable your screen saver  technical assistance :  u . s . callers : if you are experiencing difficulties during the call , you may  signal for technical assistance by pressing * 0 ( star , zero ) on your telephone  keypad after you have connected to the audio portion of the conference .  international callers : please re - dial and ask the operator for assistance  before giving the confirmation code .  for more information , please contact kari paakaula via e - mail at  kpaakaula @ cera . com or via telephone at ( 617 ) 441 - 1362 .  a recording of this call ( audio only ) will be available until march 22 , 2001 .  to access this recording , please call 1 - 888 - 203 - 1112 ( within the u . s . ) or  ( 719 ) 457 - 0820 ( outside the u . s . ) . please use confirmation number 507712 to  access the call .  * * end * *  follow above url for full report .  come shoot the rapids with us at ceraweek 2001 , \"\" shooting the rapids :  strategies and risks for the energy future \"\" in houston , february 12 - 16 ,  2001 !  for more information and to register , please visit  http : / / www 20 . cera . com / ceraweek /  e - mail category : conference call  cera knowledge area ( s ) : north american power ,  to make changes to your cera . com account go to :  forgot your username and password ? go to :  http : / / www 20 . cera . com / client / forgot  this electronic message and attachments , if any , contain information  from cambridge energy research associates , inc . ( cera ) which is  confidential and may be privileged . unauthorized disclosure , copying ,  distribution or use of the contents of this message or any attachments ,  in whole or in part , is strictly prohibited .  terms of use : http : / / www 20 . cera . com / tos  questions / comments : webmaster @ cera . com  copyright 2001 . cambridge energy research associates\",0\n\"Subject: re : durasoft - - java class  what do you think about option 2 ?  - - sg  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 01 / 30 / 2001  12 : 54 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" siva thiagarajan \"\" on 01 / 30 / 2001 08 : 55 : 55 am  to :  cc :  subject : re : durasoft - - java class  stinson ,  ?  here are some options considering what you have  said :  ?  1 ) ? we can do a full week of class from may 7 to 11 .  ?  2 ) ? the second option is to split the course over two weeks .  if you cannot possibly accomodate a full week of training  then we can try this . ? we have done this before and it has  worked fairly well . ? it would be like :  ?  week 1 ( 20 hours ) : ? feb 20 - 23 , tue - fri , 12 : 00 to 5 : 00  week 2 ( 20 hours ) : ? april 9 - 12 , mon - thu , 12 : 00 to 5 : 00  ?  these are the only two weeks that are available for venkat  to teach before may 7 th date . ?  ?  please let me know if these would work . ? i look forward to  hearing from you . ?  ?  regards ,  ?  - siva  - - - - - original message - - - - -  from : stinson . gibner @ enron . com  to : siva @ durasoftcorp . com  cc : vince . j . kaminski @ enron . com ;  clayton . vernon @ enron . com  date : monday , january 29 , 2001 4 : 01 pm  subject : re : durasoft - - java class  siva , ? ? ? ? i will have to check and see if we can accomodate a 5 day 8 to  class . ? ? ? also , president ' s day is a holiday for us , so we may have to look  at a later date .  - - stinson  \"\" siva thiagarajan \"\" on 01 / 29 / 2001 08 : 51 : 02 am  to : ? ?  cc :  subject : ? re : durasoft - - java class  stinson ,  i have attached a file along with this email  that lists the software needed for our  java class .  we would like to do the class from monday thru  friday , 8 am to 5 pm . ? that way we can complete  the class within a ? week . ? we are unable to offer  classes in the evenings or for few hours a week .  we usually teach week long courses for our  other clients and because of that ? we won ' t  be available .  currently , we can do the class from feb . 19 th  through feb . 23 ( that is if you are working on  feb 19 th , president ' s day ) .  i will call ? you sometime this afternoon to talk  further . ? please feel free to reach me if you have  any further questions in the mean time .  regards ,  - siva  - - - - - original message - - - - -  from : stinson . gibner @ enron . com  to : siva @ durasoftcorp . com  date : friday , january 26 , 2001 5 : 52 pm  subject : re : durasoft - - java class  >  > siva ,  >  > a few additional questions . ? ? can you tell me what software would be  > required for the students ? ? ? also , ? when would venkat be available to  start  > the class and what type of schedule would you recommend ? ? ? would having  two  > hour classes twice a week from , say , 4 - 6 pm work ? ? we have a high level of  > interest and just need to iron out the details . ? ? feel free to call me  > ( late afternoon on monday might be best ) at 713 853 4748 or email .  >  > - - stinson  >  >  >  ( see attached file : javasoftwareneeds . htm )\",0\n\"Subject: re : risk model  thanks vince . i made some real progress on the paper today . i ' ll try to  ship you a revision sometime later this week .  take care friend ,  john  at 01 : 14 pm 1 / 17 / 01 - 0600 , you wrote :  >  > hi john ,  >  > you have a very attractive family . you must be a very proud father and  > husband .  >  > vince  >  >  >  >  > \"\" john d . martin \"\" on 01 / 17 / 2001 11 : 09 : 29 am  >  > to : vince . j . kaminski @ enron . com  > cc :  > subject : re : risk model  >  >  > got it and i understand . thanks  >  > john  >  > p . s . have a great day ! by the way , how ' d you like the martin clan picture ?  >  >  > at 11 : 06 am 1 / 17 / 01 - 0600 , you wrote :  > > john ,  > >  > > i am sending you an old write - up on the risk management system .  > > this is for \"\" your eyes only \"\" , though this info is out already . some people  > > left  > > the company and also the consultants who audited the model use these  > ideas .  > >  > >  > > vince  > > ( see attached file : overo 907 . doc ) ( see attached file : prico 912 . doc )  > > attachment converted : \"\" c : \\ windows \\ desktop \\ overo 907 . doc \"\"  > >  > > attachment converted : \"\" c : \\ windows \\ desktop \\ prico 912 . doc \"\"  > >  > john d . martin  > carr p . collins chair in finance  > finance department  > baylor university  > po box 98004  > waco , tx 76798  > 254 - 710 - 4473 ( office )  > 254 - 710 - 1092 ( fax )  > j _ martin @ baylor . edu  > web : http : / / hsb . baylor . edu / html / martinj / home . html  >  >  >  >  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: encounter article - shalesh ganjoo  we have conducted an interview and written the attached article for the  upcoming edition of the encounter , the associate & analyst programs '  newsletter . the interview was conducted with shalesh ganjoo in regards to  his participation with the implementation of storage capacity as a  commodity .  to ensure our publication is printing the most accurate information , i have  attached the article for your review . please confirm that the information  provided from shalesh ganjoo is accurate .  thank you in advance for your assistance ,  tracy arthur  communication specialist  associate & analyst department  713 - 345 - 7853\",0\n\"Subject: re : agenda for next week  ben ,  i spoke with anjam and gave him the information about my trip .  here is the short summary :  1 . if you are free for dinner on sunday , i would be glad to meet with you  ( as well  as anjam and steve ) . i would like to review what ' s going on in houston and  london .  2 . we can arrange the interviews for all the candidates you lined up monday  afternoon  ( tuesday and wednesday mornings are the alternative dates ) . we treat the  interviews as internal  to the research group and we shall arrange full interview schedules at a  later day for those candidates  who pass our internal test .  3 . please , feel free to put on my agenda other meetings you think might be  useful .  please , coordinate the meetings with anjam and steve . i am busy on tuesday  afternoon  ( i a speak at a conference ) .  vince  benjamin parsons  02 / 14 / 2000 08 : 18 am  to : vince j kaminski / hou / ect @ ect  cc : shirley crenshaw / hou / ect @ ect  subject : agenda for next week  vince ,  could you give me an idea of your agenda for next week ' s london visit - in  particular which day ( s ) would be best to bring some candidates in for  interviews for my old role .  thanks  ben\",0\n\"Subject: rabi de  toni :  we talked to rabi . he ' s sitting on the fence for some good reasons , and he  has to weigh what is fairly comfy job situation for one that starts out at a  lower level but has more potential . wrt the green , vince verbally offered  salary of $ 105 k plus a guarantee that his bonus at year end would be a  minimum of $ 15 k cash . that ' s in addition to the $ 15 k sign on bonus . vince  said that we would not bother working up a revised offer letter unless and  until rabi came back with a verbal ok . he will ponder the offer ; probably  for a few more days and get back with us . he may well call you to discuss  the exact details of the benefits . esop , 401 ( k ) contributions , etc .  regards ,  grant .\",0\n\"Subject: wharton trip  jim ,  no changes in the schedule . the meeting will take place , as scheduled ,  on the 6 th of december at 9 : 00 a . m . we may have to cancel lunch with the  professors as they have other commitments . the meeting will last  about 2 hours .  vince\",0\n\"Subject: option p & l  gentleman :  the erms system , as you know , has an excellent capability for  decomposing option p & l into the following components :  new deals  curve shift  gamma  vega  theta  rho  drift  2 nd order adjustments  what i dont understand is the gamma component which is reported in dollars .  the unit of measure suggests that incremental changes in a contract position  is being associated with specific prices . these prices are the effective buy  or sell prices associated with the dynamic delta position .  stated differently , the standard taylor expansion has incorporated a price  variable in such a way as to convert the unit of measure from gamma ' s  standard contract count to total gamma dolalrs . this is something i dont  understand . to date , inquiries to the risk management accounting group has  further revealed that the gamma component of p & l is not well understood .  this is what concerns me : bridgeline has 2 books with option exposures ( nymex  and gas daily ) . both books dynamically hedged its positions during  yesterdays large price move and , through anticipitory hedging in advance or  during the large price move , secured sufficient coverage to neutralize  expected changes in delta . however , our p & l from our underlying position did  not offset our gamma p & l . consequently , i have to ask why ? im hoping that a  brief look at the why gamma dollars are calculated may reveal something which  will better guide our hedging decisions .  any help is appreciated\",0\n\"Subject: re : enron tiger dinner  donna ,  thanks for the restaurant recommendation . i would appreciate if you could  coordinate  the dinner with the students and the faculty . you can expect 4 persons from  enron but the  restaurant should allow for some flexibility , just in case . if the restaurant  needs a credit card number  or a security deposit , you can refer them to my assistant , shirley crenshaw  at 713 853 5290 .  vince  piazze on 11 / 29 / 2000 12 : 34 : 33 pm  to : \"\" ' vkamins @ enron . com ' \"\"  cc : \"\" ' piazze @ wharton . upenn . edu ' \"\"  subject : enron tiger dinner  vince :  i look forward to seeing you and jeff shankman next week in regard to the  enron tiger kick - off meeting scheduled for wednesday , dec 6 in vance hall  210 from 3 : 00 - 5 : 00 pm .  you mentioned possibly wanting to take the group to dinner after the  presentation . i would like to recommend the palladium restaurnat , which is  on locust walk here on campus . you may want to view their website at  www . . com i think they have a nice menu and can  accomodate large groups . there are several menus from which to choose , as  well . please let me know if you would like for me to set this up for you  and i will notify the students and faculty .  please let me know if i can assist with your visit in any way .  regards ,  donna piazze\",0\n\"Subject: calling @ 2 pm me . . . 4 pm you  hi vince ,  thank you for allowing me the call to speak candidly with you tomarrow  ( 1 / 9 / 2001 ) @ 2 pm pst ( 4 psm central ) about my students / candidates asking  about enron .  i am looking forward to the conversation .  best wishes ,  jeff wesley  ps - pls review the attachments below on your coffee break . thanks .  pss - ask me about the controversial attachment i wanted to send you - but ,  didn ' t .  always held in strict confidence .  949 813 2241 hotline  347 487 8957 voice / fax us  ( 011 ) + 44 ( 845 ) 3341644 uk  - - - - - begin pgp public key block - - - - -  version : pgpfreeware 6 . 5 . 3 for non - commercial use   2 w 4 duudd 3 yisxx 8 wy 2 o 9 vpji 8 bd 8 kvbgi 2 oulwmufo 4 ozt 9 fbdxq 6 mdggzemyestsr / pogxkuayeyl 8 6 vq  rpmynofdopnqnyej 2 + m 9 zwwyw 3 gbij 4 vktfyngoqevl 3 l 9 hg 2 l 7 lsls + 8 ywlvcqb llmkul 3 lxa 9 idp 6 bzu 9 drwdfrba 5 rdvbfylolythsp 0 zg 4 lolurfgyy + iakwe / 5 n  78 fc 32 lczbj 8 rvsvh + qljiyisjdvambww 4 hjlzc 9 tipdtggz 6 g 5 lgg 8 dfw 74 ezsx lzsy + zzncacst / dveok / + y 4 nrumqor + qggo 9 l 9 gwpqu 5 blxenpedteczmwome 48 z  glkh + bz 39 qcfvc + hxgi 7 ogcon / rseitrweao / sy =  = 2 nkw  - - - - - end pgp public key block - - - - -  * get free , secure online email at http : / / www . ziplip . com / *  - private 9498132241 . pdf  - worththemoney 9498132241 . pdf\",0\n\"Subject: re : hello  hello vince ,  how are you this week ?  my week is pretty relaxing - i am taking the training for the very last  product of my company , called voicenet , and i will achieve the highest state  of initiation with destia ( viatel ) products , ha . . .  unfortunatelly i have not been promoted for business vip representative ( the  position associated with t - 1 ) as i do not have any experience with it .  i am blaming myself because i cannot discipline myself to study consequently  every day for gmat .  all the best to you and see you on saturday .  patrycja  - - - - - original message - - - - -  from : vkaminski @ aol . com [ mailto : vkaminski @ aol . com ]  sent : tuesday , march 14 , 2000 5 : 26 pm  to : patrycja . dalecka @ destia . com  subject : re : hello  hello ,  still in new york . leaving tomorrow night for houston . see you on saturday .  i shall send you more detailed directions on friday .  take care .  vince\",0\n\"Subject: mg metals - london research responsibility  dear all ,  please ensure that all requests for metals research support in london are  directed / forwarded to me in the first instance ( e . g . option pricing , var ) .  this is to ensure speediest response time and to avoid duplication of effort  as well as confusion on the part of our mg counterparts due to multiple  ( duplicated ) requests for information .  tanya and i are currently developing version la of the var models for mg  metals . vince , ted and mg metals are looking to tanya and i to provide  leadership in this area for the integration effort and after production of  var v . 1 a , i will look to pass on responsibility for mg metals var systems  integration to kirstee hewitt for the london side .  regards ,  anjam ahmad  research  x 35383\",0\n\"Subject: re : response from lenos  steve ,  i shall e - mail you my standard real option spin presentation + plus a  presentation on enron  ( for analysts ) . you can use a few slides to introduce the company .  i would prefer not to disseminate the information about the use of amc . the  industry  does not know about it yet and i consider it a very powerful tool ( given its  flexibility ) .  i have the files on my laptop . i shall bring it to work to morrow  and send it to you .  please , remind me about it on thursday ( old age and the hectic pace here start  showing up ) .  vince  steven leppard  04 / 26 / 2000 05 : 09 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : response from lenos  vince  lenos got back to me , and said he ' d prefer a high - level overview of real  options in enron , perhaps using my notation to express the ideas . he wants  me to keep away from the technicalities of my work .  would you send me your ( usual ) powerpoint presentation on real options , and  i ' ll look at manipulating it to include my diagrams . my own efforts to date  have been on fairly limited power plant modelling / asset development , and i  obviously don ' t have the high - level view you have . this will ensure i get  the full range of real option type deals in my presentation .  if required i could present the real option problems i have analysed , namely :  1 . maintenance scheduling in power plant operation ;  2 . gas storage ;  3 . power plant asset development , which would include ( 1 ) as a sub - tree .  i will also need your advice on whether i can talk about the fact that we  prefer american monte carlo to build our trees . i haven ' t used amc myself up  till now , i ' ve been carrying out static optimizations , with different price  curve scenarios being run through .  i ' m still working on selling the full stochastic dynamic programming approach  - people are just getting to the stage of accepting my deterministic dp , and  they ' re still being supplied with useful products , as per my \"\" real options  strategy \"\" document .  cheers ,  steve\",0\n\"Subject: professor bitran ' s visit  colleagues ,  professor gabriel bitran of mit will be visiting enron on wednesday 9 august .  he  will be here all morning . he would like to meet and discuss with us some of  the  issues and problems that are of interest to ebs . the goal is to suggest a  research subject for one of his students that is of interest to ebs and its  business . please let me know if you are interested in meeting him . i suggest  having one open meeting ( perhaps one hour ) in which all of us can sit down and  discuss the issues with him .  - samer\",0\n\"Subject: re : steve leppard  vince ,  i agree - i ' ll talk with sherriff when he gets back to london next week .  - dale  vince j kaminski  11 / 07 / 2000 20 : 49  to : dale surbey / lon / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : steve leppard  dale ,  my recommendation is to make steve the head of the research unit in london .  we were talking originally about september but i think we should accelerate  this process .  of course , anjam will be very unhappy about it , but we cannot manage around  him  any longer .  i think that the promotion should be combined with a salary increase .  i would like to offer him a significant increase that  goes with expanded responsibilities and much higher visibility .  a salary increase will also bring him closer to the market .  we see the market for technical people going through the roof in  practically every location  where we operate .  a contract is not a good solution in my view . it creates a sense of false  security for  both an employee and the company .  i shall send a message to john sherriff with my recommendation . i shall cc  you .  i would appreciate if you could bring it up with john as well .  vince  dale surbey  07 / 11 / 2000 10 : 23 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : steve leppard  hi vince ,  hr is working on a mid - year salary review for london people that have a  noticeable gap between their compensation at enron and what we would have to  pay in the market for a replacement . they highlighted steve as someone with  a potential gap - particularly in light of what we ' re seeing in our quant  recruiting effort for credit trading and research .  i ' d like your opinion on the best way to make sure we keep steve happy and  keep him at enron . there are several things i see we can do :  1 ) give him a mid - year pay increase to move him closer to market . i ' m not  sure this is the best way to go , especially if we only offer him a token  salary increase .  2 ) offer him more responsibility : what are your thoughts on timing for  making steve the official head of the london research team ? with my move to  ebs , should we accelerate this ? i think this is good way to keep him happy  and motivated , and then follow up with a more meaningful salary review at  year - end ( as part of the regular process ) that takes into account his greater  responsibility .  3 ) we have some people that we ' re trying to get under long - term ( 3 - yr )  contract with a 12 - month notice clause . obviously anyone signing one of  these will want significant up - front compensation for being handcuffed .  we ' ve not had a lot of success with these here in london , and i would prefer  to keep steve happy so he wants to stay with enron rather than contractually  binding him to the job .  i ' d value your thoughts on this .  thanks ,  dale\",0\n\"Subject: receipts from visit  dear vince ,  thanks again for taking the time to visit . ? both faculty and students got a  lot out of your presentations .  i have a favor to ask concerning the expense reimbursement process . ? can you  mail all travel and lodging receipts to my secretary joan payne at the  following address :  joan payne  department of finance  2163 ceba  louisiana state university  baton rouge , la ? 70803  thanks ,  jim garven  james r . garven  william h . wright , jr . endowed chair for financial services  department of finance  2158 ceba  e . j . ourso college of business administration  louisiana state university  baton rouge , la ? 70803 - 6308  voice ( 225 ) 388 - 0477 ? | ? fax : ( 800 ) 859 - 6361  e - mail : ? jgarven @ lsu . edu  home page : http : / / garven . lsu . edu  vita : http : / / garven . lsu . edu / dossier . html  research paper archive : http : / / garven . lsu . edu / research . html \",0\n\"Subject: the garp 2001 convention  dear mr kaminski  thank you very much for your prompt reply and for the information you sent  me . i have incorporated this information in the program and am sending you  it again for one last confirmation . ( in particular , i hope that i have your  job title and organization name correct ? ) .  measuring energy risk \u0001 ) tackling price volatility , adapting var , scenario  modelling and regulatory requirements  the challenge of modeling price dynamics in the energy markets .  - seasonality  - fat tails  - jumps  - mean ( or floor ) reversion  price volatility in the energy markets : definition and estimation  adapting value - at - risk for the energy markets :  - combination of physical and financial contracts  - correct representation of price dynamics and inter - market price  relationships  - capturing complexity of energy contracts  historical vs . monte carlo simulation vs . scenario analysis . pros and cons  of different approaches  regulatory uncertainty and value - at - risk  vince kaminski , managing director , research , enron corp .  if there are no alterations required i will assume that everything is fine  as it is and will proceed to the printers in due course . i also look forward  to receiving a short biography of about fifty words in due course .  ?  if you have any queries please do not hesitate to contact me , otherwise i  look forward to seeing you in new york in february .  ?  kind regards  ?  andreas  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  andreas simou  garp 2001 - conference producer  tel ? + 44 ( 0 ) 20 7626 9301  fax + 44 ( 0 ) 20 7626 9900\",0\n\"Subject: re : eol pricing algorithm  hi bob ,  some comments :  1 . you request enron position after successful market order , but not after limit order - - you may want it after limit order as well to be consistent . i am not clear on how you would use enron position . it is possible that the trading desk will have a target position in mind and they will set bids and offers in such a way as to try to achieve that target position , but this target position probably changes continuously and is not stored anywhere , and without this target position there is nothing to compare actual enron position to . of course , enron position may still provide some insights .  2 . you request bid - mid - ask prices for each trade - - - given that a successful trade may execute later than time of order ( especially for limit orders ) , would you need the evolution or range of bid - mid - ask over this time interval ( time of order to time of execution ) ? also , for failed trades , you may need the evolution or range of bid - mid - ask over the time interval from time of order to time of rejection . this again mainly applies to limit orders , as the time intervals may not be significant for market orders given the speed of execution ( something to check ) .  - - - - - original message - - - - -  from : lee , bob  sent : monday , april 23 , 2001 8 : 33 am  to : kaminski , vince ; shanbhogue , vasant ; barkley , tom  cc : lu , zimin ; huang , alex ; gibner , stinson  subject : eol pricing algorithm  a draft data request for eol data we would use to study p & l patterns for the \"\" george \"\" pricing algorithm is attached for your review .  i would like to send this to andy zipper and jay webb this afternoon .  bob  >\",0\n\"Subject: contact info  i will be in one of these two places - -  my home : 011 91 80 3312635  my in - laws ' home : 011 91 80 5262719  you can also contact me by email at vshanbh @ yahoo . com , but it is better to  call since i do not have easy access to a computer , and there may be a delay  with reading email .  vasant\",0\n\"Subject: wharton event - junel 0 - insead  vince ,  bryan has been unable to find anyone suitable to attend this symposium on  saturday , so has suggested i attend , which i am happy to do . my only  reservation is that my knowledge of this area is very limited , so it is  likely i would just be an observer , rather than a participant . anyway just so  that i am adequately prepared could you briefly describe our current  relationship with this project , and also suggest any reading , like a magazine  or paper , that would quickly aid my understanding of the topics to be  discussed .  many thanks ,  ben  - - - - - - - - - - - - - - - - - - - - - - forwarded by benjamin parsons / lon / ect on 08 / 06 / 2000  08 : 36 - - - - - - - - - - - - - - - - - - - - - - - - - - -  bryan seyfried  06 / 06 / 2000 16 : 46  to : benjamin parsons / lon / ect @ ect  cc :  subject : wharton event - junel 0 - insead  - - - - - - - - - - - - - - - - - - - - - - forwarded by bryan seyfried / lon / ect on 06 / 06 / 2000  16 : 48 - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  05 / 06 / 2000 15 : 13  to : bryan seyfried / lon / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : wharton event - junel 0 - insead  bryan ,  i shall call you later today when i have a chance to read the message from  ben .  i wanted to ask you for a favor ( on a very short notice ) . we are talking to  the wharton school  about setting up a relationship with them and getting involved in one or  more research projects  with them .  one of the potential topics is emerging technologies . the wharton offers a  symposium in paris on june 10  on high tech acquisitions and it would make a lot of sense if you  ( or somebody from london you could identify ) could attend and help us to  evaluate the usefulness  of this project .  i am enclosing the message from the person in wharton running this program .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 06 / 05 / 2000  09 : 08 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  tomczyk @ wharton . upenn . edu ( michael tomczyk ) on 05 / 18 / 2000 10 : 56 : 08 am  to : vkamins @ enron . com  cc : thomas . piazze @ wharton . upenn . edu  subject : wharton event - junel 0 - insead  vincent ,  it was truly a pleasure getting to know you in our meeting yesterday , and i  look forward to the prospect of exchanging views in the future on a variety  of topics pertaining to emerging technologies .  per our discussion , i ' ve enclosed three files that include an invitation ,  agenda and rsvp form for the june 10 symposium on high tech acquisitions at  insead . if you or the individual ( s ) who will be attending have any  questions , please email : phanish puranam at : phanis 20 @ wharton . upenn . edu or  you can call him at 215 - 898 - 1231 .  this initiative will be expanded during the coming year and i believe that  enron ' s involvement will give the company access to some of the early  research in progress as it unfolds , and of course , if you become involved  as a partner in the emerging technologies program you would have  opportunities to help guide the direction of the research which is one of  the partnership \"\" benefits . \"\"  our next upcoming events are scheduled for :  friday , september 8  \"\" what next on the internet ? \"\"  this is a faculty update day with industry partners also invited .  we will co - sponsor this with wharton ' s major e - business initiative .  major issues addresses include \"\" new economics of the web \"\" and  \"\" internet , anywhere . \"\"  friday , october 20  \"\" first mover advantage , shakeouts & survival strategies \"\"  designed by the et core group and  presented in collaboration with the e - commerce forum .  as i indicated during our discussion , participation in the emerging  technologies management research program is by invitation and on behalf of  our core faculty , i am pleased to extend an invitation for enron to join  the program .  to assist in your decision , we recommend having a representative attend the  symposium in paris on june 10 to \"\" test drive \"\" the program .  i ' ll send you a formal invitation which you are free to accept at your  convenience , should you agree that enron ' s participation in the et program  would be of value .  please call or email if you have any comments or questions .  best regards ,  michael  - insead workshop invitation lett - insead workshop agendal . doc - rsvp  form . doc  michael s . tomczyk  managing director  emerging technologies management research program  1400 sh - dh / 6371  the wharton school  philadelphia , pa 19104 - 6371  tel 215 - 573 - 7722  fax 215 - 573 - 2129\",0\n\"Subject: re : mutually agreed upon changes okay  larry ,  i had a brief discussion with our lawyers . they are strongly advising us to  keep the changes we earlier incorporated , but to which you have not  assented . as this is a matter of company policy , unfortunately we do not  have much room to maneuver . if it would help you to have a direct  conversation with the lawyers to appreciate our company ' s perspective , i can  arrange for a phone call . please advise . thanks .  rakesh  lawrencelrtnmt @ aol . com on 05 / 01 / 2001 08 : 06 : 47 am  to : rakesh . bharati @ enron . com  cc :  subject : mutually agreed upon changes okay  hi rakesh ,  thanks for your work on the non - disclosure agreement .  your integration of our mutually agreed upon modifications looks good ,  rakesh . thanks ! i ' ll await your next version .  larry\",0\n\"Subject: re : mscf speaker series  pierre - philippe ,  i have contacted allison bailey to ask her to move her visit  to the campus to coincide with my presentation .  i hope to hear from her soon .  vince kaminski  p . s . nice web site  \"\" pierre - philippe ste - marie \"\" on 08 / 10 / 2000 05 : 13 : 53 pm  to :  cc :  subject : mscf speaker series  dear mr . kaminsky ,  ?  just checking if there was any progress . . . or anything i could do to help  you .  ?  sincerely ,  ?  pierre - philippe ste - marie  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  pstemarie . homestead . com\",0\n\"Subject: eol stuff  vince -  i spoke with tom , and i completely agree and would like to hand all this eol stuff over to you .  we need a sun server to take over the task . as it happens martin lin has one in his office he ' s not using and up to the task . his box could serve sas to enron , as well as handle listening in on the eol feedds and maintaining its database .  martin ' s box technically belongs to ebs , but i think they are downsizing and wouldn ' t mind giving it up .  in this way , you would have complete physical and administrative custody over the data and any work you do with it . i needn ' t be involved , and you can know your work is completely confidential .  i ' ll make sas and the eol software available , as well as the necessary ram the server , at no charge . you just need to summon up some sysadmin resources to finish the job . there is a fine unix guy named ben thompson who will support you , i ' m sure .  task :  1 ) upgrade ram on martin ' s server  2 ) install newest solaris os on server  3 ) install tibco and gnu software on server  4 ) install sas on server  clayton\",0\n\"Subject: raptor  vince  how do we cope with the ethical issues this presents ?  rgds  dp\",0\n\"Subject: re : visiting enron may 4 th  susan ,  thanks . it makes sense to call christie and  explain the objectives of your visit in may .  vince  \"\" susan c . hansen \"\" on 04 / 06 / 2001 06 : 14 : 10 pm  to : vince . j . kaminski @ enron . com  cc : clovell @ stanford . edu , donna lawrence , hillh @ stanford . edu , bambos @ stanford . edu  subject : visiting enron may 4 th  dear vince ,  this is great news ! donna and i are delighted that you have time to see us  on may 4 th .  i ' ll be out of the office next week . by copy of this email to my  assistant , carol lovell , i will ask her to get in touch with shirley for  scheduling as well as directions on where to meet you . we ' ll be glad to  meet with christie patrick as well .  looking forward to meeting you ,  susan  at 05 : 36 pm 4 / 6 / 01 - 0500 , you wrote :  > susan ,  >  > thank you for your message . i shall be glad to meet with you on may the  > 4 th .  > i shall ask my assistant , shirley crenshaw ( 713 ) 853 5290 , to call you to  > set up the meeting .  >  > also , for your information , we have recently set up a special unit to  > coordinate enron ' s  > relationships with the universities . the person running this unit is  > christie patrick .  > please , feel free to contact her and give my name as a reference . i shall  > coordinate the meeting  > on may the 4 th with her .  >  > vince  >  >  > additional information re christie :  >  > phone : ( 713 ) 853 - 6117  >  > email : christie _ patrick @ enron . com  >  >  >  >  >  > \"\" susan c . hansen \"\" on 04 / 03 / 2001 04 : 33 : 54 pm  >  > to : vkamins @ enron . com  > cc :  > subject : visit from stanford ?  >  >  > dear dr . kaminski ,  >  > let me briefly introduce myself , i am the director of corporate relations  > for the school of engineering at stanford university . in this role , i am  > always on the watch for ways to bring our faculty together with companies  > that have an appetite for engagement with top tier research institutions .  >  > i believe you know hill huntington , who is a senior researcher with  > stanford ' s energy modeling forum . he suggested i get in touch with you for  > some ideas about contacts at enron . i ' m in the process of planning a trip  > to texas in early may along with my colleague donna lawrence , the  > university ' s director of corporate relations . we were hoping to be able to  > include a stop at enron on our itinerary . right now it appears that friday ,  > may 4 th would work best for us but we ' re at the very beginning of our trip  > planning .  >  > the purpose of our visit would be to review the current relationship  > between enron and stanford , to give you an overview of current priorities  > in the school of engineering , and ask for your help in identifying the best  > points of contact .  >  > i look forward to hearing from you about your availability ,  >  > sincerely ,  > susan hansen  >  >  >  >  > susan c . hansen  > director , corporate relations  > school of engineering  > stanford university  > stanford , ca 94305 - 4027  > ( 650 ) 725 - 4219  susan c . hansen  director , corporate relations  school of engineering  stanford university  stanford , ca 94305 - 4027  ( 650 ) 725 - 4219\",0\n\"Subject: your visit to sydney in july  vince  i support raymond ' s email and would welcome the opportunity to have you give  a presentation ( formal or informal ) to the trading group on latest research  initiatives in houston . please let us know your schedule so that we do not  overly burden you during your visit . look forward to seeing you and catching  up over a beer .  thnx  paul  - - - - - - - - - - - - - - - - - - - - - - forwarded by paul quilkey / enron _ development on  07 / 05 / 2000 08 : 23 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  raymond yeow  07 / 04 / 2000 08 : 21 pm  to : vince j kaminski @ ect  cc : paul quilkey / enron _ development , kirsty hogarth / enron _ development , elliott  katz / enron _ development , david gray / enron _ development  subject : your visit to sydney in july  dear vince ,  hi ! , it ' s only two weeks until the aust energy risk ( 17 - 19 july ) seminar in  sydney .  is risk organising your hotel ?  otherwise , kirsty can organise for you ,  eg harbour view at the regent or convenience to the seminar location at the  sheraton ?  we would like to make sure that you have all the necessary \"\" comforts \"\" of home  when you are with us ,  elliott & david can set up a desk for you in the office / trading room with  phone etc  so you can use one of our pc to access email or plug in your laptop .  please let elliott or david kmow your requirements .  how long will you be with us ?  is this your first trip to sydney ?  there are several of us in the office who would like to take you for a  meal ( s ) / show you the sights etc and  discuss the latest research findings with you whilst you are in sydney eg var .  hear from you soon .  raymond  725 pm 4 july\",0\n\"Subject: fw : citi , wells , enron , sl and i 2 form a b 2 b venture  fyi only !  > - - - - - original message - - - - -  > from : lubowski , andrzej  > sent : tuesday , august 08 , 2000 12 : 42 pm  > to : allen , paul ; dahir , victor ; gustafson , pete ; isaacson , bond ; mcewen ,  > tony ; onoda , john ; pascarella , carl ; saeger , rebecca ; thompson ,  > scott ( visausa ) ; vessey , paul  > subject : citi , wells , enron , sl and i 2 form a b 2 b venture  >  > yesterday , citigroup , wells , enron , i 2 and sl corp . formed a new firm  > . com inc . to streamline buying , selling and  > facilitating payments in business - to - business e - commerce .  > the announcement says that \"\" the new company will connect buyers and  > sellers in e - marketplaces with payment processing , credit and other  > services through multiple participating banks and financial services  > companies . \"\"  > while i don ' t fully understand yet what this new venture will do and how ,  > and most importantly , what implications , if any , it may have on visa , i  > have a feeling that this announcement is different than the mass of  > publicity seeking b 2 b plays that we have seen in the last year .  >  > enron will provide its broadband network , which allows scalability , and  > bypasses the congestion of the public internet . enron is highly praised  > for its demonstrated ability to radically reorganize existing industries  > ( energy , commodities , risk management , etc . ) .  > sl builds customizable internet financial services platforms and have  > heavyweight partners ( ibm , andersen ) , and invested clients ( citi , royal  > bank of canada , andersen , allianz , fleetboston , jp morgan , state farm and  > zurich financial ) .  > its chairman and ceo , commenting on the venture said : \"\" so far , various  > companies have separately offered individual financial services such as  > sourcing credit , escrow and payments authentication and processing , but no  > one has offered them all together in a multi - bank model . the lack of a  > complete financial services solution for e - marketplaces has been a major  > inefficiency for b 2 b e - commerce and a bottleneck for these e - marketplaces ,  > restricting their transaction volume . . com will  > offer a full package of financial services in an open system that can be  > seamlessly integrated into any e - marketplace . \"\"  >  > my group , working with others , will try to get a better sense of the  > nature of this new beast . on the surface , however , it looks like an  > attempt to create a payment pipeline .\",0\n\"Subject: check  julie ,  this message was returned to me a few times when i sent it from my home  address .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 30 / 2000  08 : 00 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  vkaminski @ aol . com on 10 / 28 / 2000 12 : 12 : 57 pm  to : julie @ lacima . co . uk  cc : vkaminski @ aol . com , vkamins @ enron . com  subject : check  julie ,  as the book is about to be released to the market , i would like to start the  process to issue the check to lacima . who will be the payee ( lacima ) and what  is the address ?  vince\",0\n\"Subject: stinson gibner & hector campos  ken lay gave a high profile presentation on the current natural gas supply  and price situation at a recent conference held by the interstate oil and gas  compact commission , and some of the best graphs came from work that stinson  and hector did ( see the attached , slides # 11 , # 12 , # 14 , & # 15 ) .  i really appreciate their research and hope to be able to use their talents  again for presentations for the office of the chairman . .  - rob  robert l . bradley jr .  director , public policy analysis  enron corp .  p . o box 1188 , room 4724 a  [ 1400 smith street 77002 ]  houston , texas 77251 - 1188  ( p ) 713 - 853 - 3062  ( f ) 713 - 646 - 4702  assistant : joan stransky 713 - 853 - 4702  jstrans @ enron . com\",0\n\"Subject: confirmation of your order  this is an automatic confirmation of the order you have placed using it  central .  request number : ecth - 4 n 2 qjb  order for : amitava dhar  we need to order the latest version of the \"\" sas \"\" manuel .  enron it purchasing\",0\n\"Subject: request from our mexico city office  vince do you or someone else down on the trading floor have a copy  of this book ricardo can borrow ? ? ? if not any other ideas where i  can get it > thx margaret  - - - - - - - - - - - - - - - - - - - - - - forwarded by margaret carson / corp / enron on 04 / 18 / 2000  04 : 13 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  ricardo charvel  04 / 18 / 2000 04 : 02 pm  to : margaret carson / corp / enron @ enron  cc :  subject : request  margaret ,  first of all i apologize for not sending you the information to complete the  chart that you gave me . i have been travelling because of work and then  vacation , maybe i spent 3 or 4 full working days in the office in the last 4  weeks . now that i am going through my to do list i cannot find that page  that you gave me . could you please send it to me again ?  on the other hand i was wondering if maybe within enron possibly at info  central or with one of your friends at the trading desk you could get me a  copy of a book titled : chicago board of trade commodity  trading manual  isbn : 1579580025  publisher : fitzroy dearborn publishers , incorporated  pub . date : december 1997  it si not in stock at the dot com libraries and it will take them a long  time to deliver . i need this bbok in order to produce a document that steve  kean requested from me a couple of weeks ago .  thank you very much for your help .  best ,  ricardo\",0\n\"Subject: meeting with vince kaminski and stinson gibner - november  good morning professor ordonez :  vince and stinson are both free at the present , on wednesday , november  8 th from 9 : 00 - 11 : 30 am . please let me know if any time during this period  would work for you .  regards ,  shirley crenshaw\",0\n\"Subject: re : informal exploratory interview with enron research group  valeria :  thank you for your prompt response .  i have arranged the following schedule for your interviews . please let me  know if any of the times are inconvenient .  wednesday , september 13 th :  3 : 30 pm vince kaminski , managing director  4 : 00 pm grant masson , vice president  4 : 30 pm tanya tamarchenko , director  5 : 00 pm kevin kindall , manager  when you enter the lobby of the enron bldg . , go to the security area and  they will call me on the telephone to let us know you are here and will  give you a visitor ' s security pass .  your interviews will be held in ebl 938 .  have a great weekend and we will see you on the 13 th of september .  best regards ,  shirley crenshaw  valeria . i . stone @ exxon . sprint . com on 09 / 01 / 2000 08 : 43 : 27 am  to : shirley . crenshaw @ enron . com  cc :  subject : re : informal exploratory interview with enron research group  date : september 1 , 2000  from : stone , v . i . ( valeria ) vistone - americas  to : ext - shirley . crenshaw ( a ) enron . co shirlecl - fpexmail  subject : re : informal exploratory interview with enron research group  i want to thank you for giving me this excellent opportunity to meet with  enron research group . i would be my pleasure to visit with you any time  after 3 pm september 12 - 15 th . if this time frame is not suitable for you ,  please let me know . also , it would be preferable for me to schedule the  interview as late as you can in the afternoon or as early in the morning as  possible .  as i has already mentioned above , i am very honored by the interest  displayed by enron research group in interviewing me . i believe your company  displays an excellent example of the well respected leader of the energy  industry . enron ' s overall orientation of staying on the cutting edge of  technology ( with such breathtaking projects as e - commerce development ) will  make the employment with enron very interesting , pleasant , and rewarding  experience . furthermore , it will provide me with an excellent opportunity to  make the contribution to your company ' s continuing growth and profit .  - - - - - original message - - - - -  from : fpexmail ( shirlecl )  sent : thursday , august 31 , 2000 5 : 29 pm  to : stone , v . i . ( valeria )  subject : informal exploratory interview with enron research group  ms . stone :  your resume was forwarded to the enron research group and they would  like to conduct an informal interview with you at your convenience .  please let me know your availability the week of september 11 th . the  individuals that would like to interview you are :  vince kaminski  grant masson  kevin kindall  tanya tamarchenko  they will need approximately 30 minutes each ( 2 - 2 1 / 2 hours )  you may reach me at 713 / 853 - 5290 or by email : shirley . crenshaw @ enron . com  i look forward to hearing from you .  sincerely ,  shirley crenshaw  administrative coordinator  enron research group\",0\n\"Subject: re : project brainstorming for paulo  april , i ' ll be in colorado until march 10 . we can schedule next week or you  can talk to him directly . currently , ebs research is helping kevin howard  and scott yeager ( indirectly via kevin ) in their effort to assess the value  of an eyeball . paulo ' s research will complement this effort . the research  that paulo will perform for you will be part of a bigger picture work that  kevin howard has aked stinson and i to support . you can call me on my cell  713 - 516 - 5440 while i am in co .  regards ,  ravi .  april hodgson  03 / 02 / 00 07 : 13 pm  to : stinson gibner / hou / ect @ ect @ enron  cc : ravi thuraisingham / enron communications @ enron communications , vince j  kaminski / hou / ect @ ect @ enron  subject : re : project brainstorming for paulo  i will be in my office friday and next tuesday . other than that i will be  traveling so please call me on one of those days and we can discuss this  further . i was in houston this week and will be back in houston 3 / 14 -  3 / 16 . let me know what works for you .  regards  stinson gibner @ ect  03 / 02 / 00 10 : 03 am  to : april hodgson / enron communications @ enron communications  cc : ravi thuraisingham / enron communications @ enron communications , vince j  kaminski / hou / ect @ ect  subject : project brainstorming for paulo  april :  paulo is the mit ph . d . student who talked with you by phone a couple of weeks  ago . he is interested in trying to better define what type of project he  might do over the summer with ebs . recall that he is interested in the  psychological / customer behavior issues related to web commerce as compared to  traditional commerce . perhaps the easiest way to proceed would be for you ,  me , ravi , and vince to get together to discuss possibilities . we could then  include paulo by phone to get his initial reactions / suggestions . after an  initial assessment , we could then plan on another visit for paulo .  please let me know what your schedule would allow .  thanks ,  - - stinson  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 03 / 02 / 2000  08 : 55 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  paulo rocha e oliveira on 02 / 28 / 2000 12 : 19 : 18 pm  to :  cc :  subject : re : next meeting  stinson -  thanks for your reply . i just got a call from someone at enron today about  summer employment , so i think a meeting with april and your group would be  very appropriate at this time .  i am available to meet with april any day this coming month , except march  9 , march 10 , and march 17 - 30 .  please let me know what works for you .  thanks again ,  paulo\",0\n\"Subject: mg metals var preliminary modella - subject to minor  updating / correcting  dear all ,  i am leaving the office now , and sending you the preliminary model la for mg  metals var that tanya , cantekin , kirstee have put together . we are now in a  position to look at the var by metal for positions as of 19 th july 2000 ,  subject to some data that needs updating / correcting ; we still need to update  some information / data flow processes as follows : -  i ) factor loadings for silver , gold , cocoa beans and tc ( treatment charge for  copper concentrate )  ii ) check correlations between nickel and alu and nickel and copper ( i got  different answers to houston )  iii ) ensure latest forward price curves are included ( perhaps through live  link to telerate / reuters )  iiia ) price for silver is wrong ( units should be $ per troy ounce ) , and  similarly for gold ( price should be $ per troy ounce ) , also we need cocoa  bean forward curve  iv ) find a better way to extract positional information from mg metals / link  to the spreadsheet in an automated fashion  v ) add \"\" minor \"\" metals like cobalt , palladium , platinum , cadmium etc . ( n . b . we  have 1 , 093 troy ounces of palladium short posn and 3 , 472 troy ounces platinum  long as of 19 th july )  please feel free to add to this list if i have missed anything ; i believe  that we have most of the bases covered in respect of issues to resolve ahead  of the deadline of 7 th august and fully expect that we will deliver .  regards ,  anjam ahmad  x 35383  spreadsheet :  p . s . the dll the spreadsheet requires is in  o : \\ research \\ common \\ from _ vsh \\ value @ risk \\ ccode \\ debug \\ varcsnl . dll - > most of you  have access to this .\",0\n\"Subject: new site ' s url  thank you all in advance for contributing to enron research site !  here is the new site ' s url : http : / / enaresearch . dev . corp . enron . com  when system requests login and password , please use the login and the  password that you use to login into the enron network .  please send me your comments and suggestion , so that they will be  incorporated into the site .  sincerely , elena  elena chilkina  713 - 853 - 4503\",0\n\"Subject: employment authorization  hi vince ,  last evening i received the employment authorization card from ins , valid for  one year . it seems milenia soto has submitted all the applications but for  some reason she did not receive the receipts .  i really appreciate your help and support .  with regards ,  amitava\",0\n\"Subject: fw : my london \"\" wish list \"\"  oops , i sent the previous email to another kaminski .  - - - - - original message - - - - -  from : mack , iris  sent : thursday , april 26 , 2001 10 : 42 am  to : salmon , scott  cc : chaney , craig ; kaminski , jim ; dhar , amitava ; shanbhogue , vasant  subject : my london \"\" wish list \"\"  hi scott ,  as we discussed , i will be flying to london on monday to spend some time in  enron ' s london office . i am really looking forward to meeting you and the  others i have corresponded with via email , phone , vc , etc .  on yesterday vince , vasant , amitava and i discussed my stay and london and  the desire to make this trip a productive one . hence we came up with the  following \"\" wish list \"\" of things i wish to accomplish while i am over there .  if you think of any other important items to add to this list , please let me  know . after that , we can forward the list to the parties involved to find  out if they will be available to meet with me during my stay in london .  thanks ,  iris  iris ' london \"\" wish list \"\"  scott  schematic diagram of how the various models are tied together for the  overall objective of coming up with final cds and dbs pricing  product descriptions - more details  ben  * spss  * answertree ( card book )  george  * nnpm  mike  * need to create internal database to store d & b data .  * how will d & b data be stored ? need flexibility for data manipulation &  model development .  bryan & markus  * feasiblity model : what calculations do they already have ?  * breakeven spread  * moral hazards issues  * legal contract issues to resolve moral hazard issues .  * a company can ' t buy bankruptcy on itself ?  * need to have \"\" accurate \"\" information for correlation between reference &  counterparty\",0\n\"Subject: risk 2000 , 12 - 15 june , boston - speaker confirmation  thank you for agreeing to speak at risk magazine ' s annual us congress , risk  2000 , taking place in boston between 12 - 15 june 2000 .  ?  could you please return this email with your full postal address and contact  details so we can send you hard copies of the brochure , inform you of  congress and hotel locations and let you know when we will need a copy of  your presentation . if you are part of a panel discussion , myself or the  panel moderator will contact you shortly .  ?  in the meantime the full brochure can be viewed and / or downloaded from the  following web address -  ?  www . riskpublications . com / risk 2000 us  ?  if you have any further questions , please don ' t hesitate to contact me .  ?  best regards ,  ?  oliver bennett  senior conference producer  ?  ?  direct : + 44 ( 0 ) 20 7484 9880  ?  risk publications , 28 - 29 haymarket , london swly 4 rx  fax : + 44 ( 0 ) 20 7484 9800 ? email : oliver @ risk . co . uk  www . riskpublications . com\",0\n\"Subject: reminder - enronanywhere portal project meeting  you are scheduled to attend the enronanywhere portal project meeting .  when : wednesday , april 18 , 2001  where : eb 50 m dining room  time : 12 : 00 - 4 : 00  lunch will be served .  thank you in advance for helping us to create one enron . your attendance and participation is certain to make this project a huge success .  call me if you have any questions .  thanks ,  marie hejka  enronanywhere  3 9698  p . s . note , we decided not to send a pre - workshop assignment .  see you there .\",0\n\"Subject: re : lsu seminar visit  dear vince ,  would you mind emailing to me a short biography / vita sometime when you get  a chance ? also , if you have a paper to circulate or any powerpoint slides  that you ' ll want to use either in your presentations to my students  thursday afternoon , 2 / 3 , or to the faculty seminar on friday morning , 2 / 4 ,  please email these to me . this would be greatly appreciated .  my colleagues and i are looking forward to your visit on feb . 3 - 4 to lsu .  sincerely ,  jim garven  james r . garven  william h . wright , jr . endowed chair for financial services  department of finance  2158 ceba  e . j . ourso college of business administration  louisiana state university  baton rouge , la 70803 - 6308  voice ( 225 ) 388 - 0477 | fax : ( 800 ) 859 - 6361  e - mail : jgarven @ lsu . edu  home page : http : / / garven . lsu . edu  vita : http : / / garven . lsu . edu / dossier . html  research paper archive : http : / / garven . lsu . edu / research . html  - attl . htm\",0\n\"Subject: modeling in real options  vince ,  my name is jeanne anne klein and i am a financial modeler working with  mingcheng lian on a high profile pipeline project in china .  zimin lu referred us to you regarding questions we have on the real option  valuation approach . we are very enthusiastic about what we have read and  heard about this valuation method .  we have been doing some preliminary research on the real option valuation  approach and believe that integrating this approach into our financial model  would bring a significant increase to the value to the project . we have  identified some deal aspects we believe would be ideal to valuate as real  options . our goal is to work with the development team to structure the deal  to incorporate the real option valuation approach into the model enabling us  to arrange the contracts within the deal to optimize the project ' s value .  we would like to arrange a meeting with you at your ealiest convenience to  brainstorm on additional deal aspects that can be valued using the real  option approach as well as on ways to quantify these aspects using the real  option valuation method .  please advise if you will be able to meet with us within the next week or  two .  thank you for your kind attention ,  jeanne anne  x 6 - 6547\",0\n\"Subject: re : lawyer  what do i need to do to move this thing forward ?  i suspect that the problem is basically with the lawyers . they only know how  to stop things , but in a way they play a role in global society . if it were  not for the handicaps they lay on us the rest of the world would never have a  chance .  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com  to : macmilli @ wharton . upenn . edu  cc : vince . j . kaminski @ enron . com  sent : 3 / 8 / 01 12 : 12 pm  subject : re : lawyer  ian ,  sorry for a delay in getting back to you .  i have one challenge i did not anticipate  when i talked to you the first time about our real options  internal seminar .  the materials were prepared in collaboration with a professor  from another school , and there is some sensitivity regarding  the intellectual property rights and the ability to distribute the  materials  outside enron .  please , give me some time to find out if i can work  around this issue .  vince  \"\" macmillan , ian \"\" on 03 / 07 / 2001 06 : 46 : 28 am  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc :  subject : lawyer  i still have not heard from your lawyer . i would like to see whar  materials you are using and assess how we could work on the topic of  real  options with enron\",0\n\"Subject: ny march real options conference  please find attached the final program for an exciting conference on \"\" real  options valuation in the new economy : internet / e - commerce ,  r & d / pharmaceuticals , energy . \"\" the conference , organised in new york city  march 13 - 15 by the real options group and co - sponsored by ernst & young  llp , is addressed to a corporate audience .  the chairman of the conference is prof . michael j . brennan of ucla who will  deliver the opening address , and the keynote speaker is prof . stewart c .  myers of mit . many of the world / s thought leaders in real options  analysis , along with prominent experts from many leading corporations will  also share their ideas and experiences .  please note that the deadline for hotel registration is february 21 ( see  the attached brochure for hotel details ) and conference fees increase by  20 % for those registering after march 1 . the ( full ) conference brochure and  on - line conference registration are available at our website www . rogroup . com  we hope that you will be able to participate and would appreciate it if you  could also communicate this announcement among other interested colleagues .  in fact , it would be most helpful to us and would be greatly appreciated , if  you could send me ( also cc . to amicaliz @ sda . uni - bocconi . it ) a list of 5 - 10  colleagues to whom we can send the electronic version of the brochure .  best wishes ,  lenos trigeorgis  president , real options group  - rognyconference . pdf  lenos trigeorgis  professor of finance  university of cyprus  dept of business  75 kallipoleos , po box 20537  cy 1678 nicosia cyprus  tel : + 357 2 892261  fax : 339063\",0\n\"Subject: re : meeting on feb 8 , 2001  dear mr . nur azmin abu bakar ,  thanks for your prompt reply .  please , let us know how many members of your team will  visit enron .  i look forward to our meeting on february 8 .  vince kaminski  azminab @ petronas . com . my on 01 / 02 / 2001 06 : 38 : 33 pm  to : vince . j . kaminski @ enron . com , khairuddinbmjaafar @ petronas . com . my ,  shirley . crenshaw @ enron . com  cc :  subject : re : meeting on feb 8 , 2001  dear kaminski ,  happy new year and thank you for the reply . we are honored to have  lunch with you and your team however we have another appointment at  2 . 30 p . m .  regards  vince . j . kaminski @ enron . com on 03 / 01 / 2001 07 : 38 : 19 am  to : azminab @ petronas . com . my  cc : vince . j . kaminski @ enron . com , shirley . crenshaw @ enron . com  subject : meeting on feb 8 , 2001  dear sir ,  i would like to apologize for the delay in responding to your fax .  i was on vacation for the last few days .  i shall be honored to meet your delegation on thursday , february 8 at 10 : 00  a . m .  please , let me know if you will be free for lunch after the meeting .  vince kaminski\",0\n\"Subject: ebs  stinson ,  the spreadsheet below shows the allocations i made for ebs .  the numbers in magenta show percentage allocations ,  of course , samir and samer are gone , ad so is roman .  the problem is that once i give the percentages to accounting they become  fixed for one year .\",0\n\"Subject: white marker board wall for eb 19 c 2  good morning all :  i don ' t know where this request should go , would you please direct me in  the right direction ?  conference room eb 19 cl has one whole wall that is a white marker board .  we would like to see about having a wall like this installed in 19 c 2 . please  let me know the costs and time involved . vince kaminski has approved .  thanks and have a great day !  shirley  3 - 5290\",0\n\"Subject: re : wednesday meeting  eric ,  i think we can skip the meeting and discuss any issues between us .  the meeting was convened at the request of doug arnell , but jeff  shankman thinks that there is no need for formal meetings : we can  ask them for the information directly on as needed basis .  vince  enron north america corp .  from : eric groves 09 / 05 / 2000 11 : 01 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : wednesday meeting  are we still having the meeting tomorrow ? at what time ?  thanks ,  eric\",0\n\"Subject: new expense account forms  hello all :  along with the inception of the new sap time keeping , we also have new  expense account forms .  they will no longer use your social security number as the id on your  expense accounts , they want you to use your new employee # that was  sent to you by email to access hronline .  in order for anita and myself to continue to do your expense reports , we  will need your new employee # .  please send this number to me as soon as possible .  thanks !  shirley\",0\n\"Subject: cv - keith baggerly  i have attached a copy of my cv as a postscript file .  if you need further info , or a different format , please  let me know .  enjoy !  keith baggerly  asst professor , statistics  rice university  ( 713 ) 348 - 5282  kabagg @ stat . rice . edu  - 00 apr . ps\",0\n\"Subject: re : enroll in intro to java at productivity point , feb 12 - 16  marty :  how many do we need to enroll in order to bring the class to enron ?  thanks !  shirley  marty chrisman @ enron  01 / 25 / 2001 04 : 58 pm  to : shirley crenshaw / hou / ect @ ect  cc :  subject : re : enroll in intro to java at productivity point , feb 12 - 16  ok .  the discounted rate applies regardless of numbers enrolled per class .  marty  shirley crenshaw @ ect  01 / 25 / 2001 02 : 45 pm  to : marty chrisman / corp / enron @ enron  cc :  subject : re : enroll in intro to java at productivity point , feb 12 - 16  marty :  vince wants to wait and see how many actually need this training before  we enroll anymore from his group . right now tanya and rabi are all  that have approval .  i will let you know if we decide to do more .  thanks for all of your assistance .  shirley  marty chrisman @ enron  01 / 25 / 2001 11 : 46 am  to : twolfe @ propoint . com  cc : ahmad farooqi / enron @ enronxgate , jared lane / na / enron @ enron , tanya  tamarchenko / hou / ect @ ect , rabi de / na / enron @ enron , shirley crenshaw / hou / ect @ ect  subject : enroll in intro to java at productivity point , feb 12 - 16  please enroll the following in the java class in houston , feb 12 - 16  ahmad farooqi ,  jared lane  tanya tamachenko  rabi de  ahmad & jared are application developers . tanya & rabi are in the research  group . i may have one or more names to submit and will send those to you as  soon as i get them  thank you ,  marty chrisman  713 - 853 - 4567\",0\n\"Subject: re : good morning / afternoon  thanks vince . i ' ll get right on it .  john  at 08 : 10 am 4 / 2 / 01 - 0500 , you wrote :  >  > john ,  >  > the phone number for ken lay is ( 713 ) 853 - 6773 .  > my recommendation is to call mark palmer first and discuss the book  > with him . his recommendation will open the door . i shall mention this to  > him  > as well . mark ' s phone number is ( 713 ) 853 - 4738 .  >  > vince  >  >  >  >  >  >  > \"\" john d . martin \"\" on 03 / 30 / 2001 12 : 12 : 50 pm  >  > to : vkamins @ enron . com  > cc :  > subject : good morning / afternoon  >  >  > vince ,  >  > one of my colleagues here at baylor is writing a book about \"\" the business  > of heaven \"\" in which he interviews prominent business leaders . bob darden  > is his name and he ' s a former journalist and nice guy . he would like to  > contact ken lay about being one of his interviews . do you think this is  > possible ? if so , could you give me an address / phone numbers that bob might  > use to contact ken ' s secretary about setting up an interview ?  >  > if this is in any way \"\" not ok \"\" please just say so .  >  > see ya ,  >  > john  >  > > date : fri , 30 mar 2001 11 : 35 : 03 - 0600  > > from : robert darden  > > subject : yo !  > > x - sender : \"\" robert darden \"\" ( unverified )  > > to : j _ martin @ baylor . edu  > > organization : the door  > > x - mailer : mozilla 4 . 04 [ en ] c - flashnet ( win 95 ; i )  > >  > > hi john - - i enjoyed our meeting yesterday . this looks very promising .  > > meanwhile , as i mentioned at the table , i ' m getting a little nervous  > > about the book that is due june 1 .  > > one of the names on our \"\" wish \"\" list of interviewees for \"\" the business of  > > heaven \"\" is ken lay at enron .  > > would it be possible for you to give me a good address and phone number  > > for mr . lay ' s office ?  > > and may i mention your name in the cover letter ?  > > i would be forever indebted . i might even buy the next lunch .  > > bob  > > p . s . thanks for sharing your concerns about church yesterday , too . i ' m  > > genuinely sorry things didn ' t work out better and feel more than a  > > little embarrassed that i didn ' t work harder to make you guys feel more  > > welcome and connected . on the other hand , please know that mary and i  > > will always love you and consider you both friends . i know you ' ll be  > > happy at lake shore - - even as we miss you at 7 th !  > >  > john d . martin  > carr p . collins chair in finance  > finance department  > baylor university  > po box 98004  > waco , tx 76798  > 254 - 710 - 4473 ( office )  > 254 - 710 - 1092 ( fax )  > j _ martin @ baylor . edu  > web : http : / / hsb . baylor . edu / html / martinj / home . html  >  >  >  >  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: re : anshuman  thanks for the clarification vince i appreciate it . we have a significant  resource problem here in india , given we have a renegotiation about fall in  our laps . anshuman is one of our key analysts and we are very proud of his  abilities and future potential for enron . once we have dabhol off the \"\" life  support system \"\" we could look at a longer assignment . as far as the present  one month assignment is concerned , i would rather go for an early start say  5 th feb till 5 th march . is this convenient to you and jeff .  neil  vince j kaminski @ ect  01 / 24 / 2001 10 : 41 pm  to : neil mcgregor / sin / ect @ ect  cc : molly magee / hou / ect @ ect , vince j kaminski / hou / ect @ ect , sandeep  kohli @ enron  subject : anshuman  neil ,  i would like to apologize for the confusion regarding anshuman .  we have floated a number of possible scenarios regarding his  trip to houston and there was a lot of confusion  regarding the terms ( given that i was talking to sandeep  every few days ) .  currently , we expect anshuman to come to houston for one month  to work on the dpc project ( at jeff shankman ' s request ) . the lawyers advised  me that we need an ll visa for him , irrespective of the duration  of his stay .  sorry for the confusion .  vincent kaminski  managing director - research  enron corp .  1400 smith street  room ebl 962  houston , tx 77002 - 7361  phone : ( 713 ) 853 3848  fax : ( 713 ) 646 2503  e - mail : vkamins @ enron . com\",0\n\"Subject: final project deadline is april 30  dear energy derivatives students ,  the deadline for the final project has been set for april 30 , 2001 .  all grades will be submitted to rice administration by may 4 th ( university  requirement ) .  please mark your calendars ! ! !  if you have questions , please contact vince or me .  good luck !  jason sokolov\",0\n\"Subject: re : hello from vince kaminski at enron  vince ,  thank you for forwarding the following messages . i am sorry that i am just  now getting back to you , my lotus notes was down all afternoon yesterday .  we currently have the cal berkeley general presentation set for wednesday ,  october 18 th at 7 : 00 p . m . which works out well because it is just prior to  the time deadline for students to submit their resumes . the general  presentation is a general overview of enron , the program , the interview  process , as well as a chance for students to meet and chat with enron reps .  since this is the first year that we are recruiting from cal berkeley , i  think that it is important that i attend this event on campus so that i can  answer any interview process questions . i will check the schedule and see if  it is possible to move the presentation to the 23 rd . the only negative is  that i will not be able to attend because i will be conducting interviews at  rice that day . also , it is very difficult to find a location to hold the  presentation , and i need to check on location availability on the 23 rd .  however , i do think that we should take advantage of the seminar on campus .  this may mean that they are two seperate trips to campus . perhaps , we can  also set up some other presentations for the 23 rd or even the monday prior .  although i would like to be able to attend the class / seminar presentations , i  don ' t think that it is as vital as the general presentation .  what are your thoughts ?  thanks ,  ashley  vince j kaminski @ ect  08 / 24 / 2000 08 : 58 am  to : \"\" shmuel oren \"\"  cc : vince j kaminski / hou / ect @ ect , ashley baxter / corp / enron @ enron  subject : re : hello from vince kaminski at enron  shmuel ,  thanks for the message . i am working with our recruiter , ashley baxter ,  to finalize the date of the trip . i shall shoot for october the 23 rd  if this date works for the rest of our team .  vince  \"\" shmuel oren \"\" on 08 / 23 / 2000 11 : 46 : 19 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : hello from vince kaminski at enron  dear vince .  i sent you a reply earlier this month but i haven ' t heard from you about the  date of your visit . our department has a seminar every monday . if you can  schedule your visit on a monday i would like to invite you to give a seminar  which will be attended by many of our graduate students and faculty and will  give you an opportunity to tell them about your program . with sufficient  lead - time i can advertise the seminar in the hass school to their financial  engineering students .  shmuel .  shmuel s . oren , professor  dept . of industrial engineering  and operations research  4117 etcheverry hall  university of california  berkeley , ca 94720 - 1777  e - mail : oren @ ieor . berkeley . edu  phone : ( 510 ) 642 - 1836 or 5484  fax : ( 510 ) 642 - 1403  - - - - - original message - - - - -  from :  to : ; ;  sent : tuesday , august 08 , 2000 10 : 59 am  subject : hello from vince kaminski at enron  > shmuel ,  >  > i hope you remember me . i visited you together with aram sogomonian , a  > good friend of mine , a few years ago . i am currently responsible , among  > other things , for recruiting graduates with finance and / or technical  > backgrounds at the university of berkeley . i would be glad to give you a  > call and talk more about the details of our program . my colleague ,  > ashleybaxter , from the analyst / associate program at enron would join me  > as well .  >  > i am sending you a copy of the brochure about the analyst / associate  > program .  >  > vince kaminski  >  >  > vincent kaminski  > managing director - research  > enron corp .  > 1400 smith street  > room ebl 962  > houston , tx 77002 - 7361  >  > phone : ( 713 ) 853 3848  > fax : ( 713 ) 646 2503  > e - mail : vkamins @ enron . com  >\",0\n\"Subject: re : follow on conversation w / aa  amy - -  steve kean and i finally got to discuss this the other day and we decided  that this effort would likely be too time consuming and costly , particularly  for certain key employees , to justify doing it . it obviously is an  interesting topic but one that would require alot of attention ( and possibly  money ) to participate in fully . thanks for your attention to this .  to : richard causey / corp / enron @ enron  cc :  subject : follow on conversation w / aa  rick - resending previous inquiry . waiting reply . thanks .  amy  - - - - - - - - - - - - - - - - - - - - - - forwarded by amy oberg / hou / ees on 08 / 23 / 2000 08 : 14 am  - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron energy services  from : amy oberg 08 / 21 / 2000 08 : 37 am  phone no : 713 - 345 - 7381  to : richard causey / corp / enron @ enron  cc :  subject : follow on conversation w / aa  rick :  i ' m assuming you had conference call w / aa on friday re : the new value  research lab effort - is that correct ? we are ready to regroup this week and  hear the results of your conversation . pls advise as to your feedback and  availability .  thanks .  amy\",0\n\"Subject: re : planning for your energy finance class presentation wed . , 10 / 11  ehud ,  i am flying back in the evening and dinner would be difficult .  i shall be glad to join you for lunch ,  shirley , as i understand gave you my requirements for the av .  my flight arrives at 8 : 30 a . m . i can meet you at your office in the morning  and  we can talk about the conference and other issues .  vince  \"\" ehud i . ronn \"\" on 10 / 09 / 2000 09 : 23 : 55 am  to : vkamins @ enron . com  cc :  subject : planning for your energy finance class presentation wed . , 10 / 11  vince ,  good morning .  further to your forthcoming visit this wed . , i write to clarify last - minute  details :  1 . your eta / etd . will you be available to join us for lunch and / or dinner ?  2 . your av requirements , if any . should you need either , we have an  overhead projector as well as laptop capability ( either your laptop , or we  can with advance notice reserve a laptop if you bring floppies ) .  btw , any developments re jeff skilling ' s 2 / 22 conference keynote ?  best ,  ehud  ehud i . ronn  jack s . josey professor in energy studies  department of finance  mccombs school of business  university of texas at austin  austin , tx . 78712 - 1179  voice : ( 512 ) 471 - 5853  fax : ( 512 ) 471 - 5073  internet : eronn @ mail . utexas . edu \",0\n\"Subject: information  shalesh ,  please , look into it . can we give them this information ?  i see a remote possibility of a gain for enron : it ' s in our interest to  support  the growth of this market and part of the process is development of the  infrastructure for this market and maintaining public interest .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 11 / 21 / 2000  09 : 18 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" yann d ' halluin \"\" on 11 / 16 / 2000 01 : 18 : 39 pm  to : vince . j . kaminski @ enron . com  cc :  subject : information  dear sir :  the scientific computation group at the university of  waterloo , ontario , canada , has recently started to be very  interested in the recent developments of the bandwidth  market . we find that the specifics of the bandwidth market  offer challenges from the modelling point  of view .  however , we have encountered difficulties when looking for  data , and we were wondering if you could help us . specifically  we would like to know for a given city pair for the different  existing type of lines ( e . g . oc 3 , ocl 2 , oc 48 . . . . )  1 . what has been the spot lease prices ( e . g . $ / line - type / mile ) for  the past 12 months ?  2 . what is the price of the dark fiber for a given type of line ?  3 . what is the maintenance cost $ / month ?  ( for the same lines , e . g . oc 3 , ocl 2 , oc 48 , . . . )  4 . what is the upgrading cost for the different lines ?  ( e . g . how much does it cost to upgrade )  oc 3 - - > ocl 2  oc 3 - - > oc 48  ocl 2 - - > oc 48  5 . how long does it take to upgrade a line from a certain  capacity to another ( e . g . 1 month , 2 month , . . . ) ?  we realize that some of these questions may ask for confidential  data , in that case we would really appreciate if an order of magnitude  was provided . i look forward to hearing from you .  sincerely ,  yann d ' halluin  p . s : here is a link to our web page :  http : / / www . scicom . uwaterloo . ca  - -  this email and any files transmitted with it are confidential and  intended solely for the use of the individual or entity to whom they  are addressed . any unauthorized review , use , disclosure or distribution  is prohibited . if you are not the intended recipient , please contact  the sender by reply e - mail and destroy all copies of the original  message . \",0\n\"Subject: re : vmi agreements  hi vince , mark holsworth reviewed our contract on such a short notice . i  thank mark for responding to our short - notice request . it turns out that we  need to get this database to move forward on a number of things and have  legal save some time for us is an excellent help . as mentioned below , it  appears that pennwell ' s folks want to chat some more about this .  mark , can you schedule a conference call with these people to finalise this  contract . i will be out of town all week next week on a lock - down deal  meeting . vince may be able to get on the conference call . i would greatly  appreciate it if you could help us close this one !  regards ,  ravi .  - - - - - forwarded by ravi thuraisingham / enron communications on 02 / 20 / 00 12 : 38  am - - - - -  russell @ pennwell . com  02 / 18 / 00 06 : 16 pm  to : ravi thuraisingham / enron communications @ enron communications  cc : toni . turnerbudd @ sbtglaw . com  subject : re : vmi agreements  ravi -  i would like to schedule a conference call between you , me , pennwell ' s  counsel ( toni turner budd ) , and enron ' s counsel to discuss your changes and  finalize the kmi end - user license agreement . i propose that we have the  conference call at 2 : 00 pm cst this monday , february 21 . please let me know  if you are available at this time and , if not , propose an alternative time  for the call . in addition , please provide me with a telephone number where  i can reach you for the conference call .  pennwell is looking forward to finalizing the license agreement and  delivering the kmi data to enron .  yours truly ,  russell iorio  manager of business development  pennwell corporation  1421 south sheridan road  tulsa , ok 74112  russell @ pennwell . com  ( 918 ) 831 - 9122 direct  ( 918 ) 831 - 9476 fax  - - - - - original message - - - - -  from : ravi _ thuraisingham @ enron . net  [ mailto : ravi _ thuraisingham @ enron . net ]  sent : thursday , february 17 , 2000 6 : 30 pm  to : rmack @ kmicorp . com ; mpass @ kmicorp . com ;  russell @ pennwell . com  cc : kristina _ lund @ enron . net ;  stinson _ gibner @ ect . enron . net ; vince _ kaminski @ enron . net ;  earl _ harvey @ enron . net ; tracy _ williams @ enron . net  subject : vmi agreements  >  hi richard , here is a marked up version from our lawyer .  please have your  people look at it and if it seems fine make the changes  and send a signed  copy back to me .  ravi .  - - - - - forwarded by ravi thuraisingham / enron communications  on 02 / 17 / 00 06 : 21 pm  - - - - -  | - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - >  | | mark |  | | holsworth @ enr |  | | on |  | | |  | | 02 / 17 / 00 |  | | 04 : 10 pm |  | | |  | - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - >  - |  |  |  | to : ravi thuraisingham / enron  communications @ enron communications , |  | gene diers / corp / enron @ enron  |  | cc :  |  | subject : vmi agreements  |  - |  please find attached my redlining of the vmi agreelment .  please review it and  send it to the vendor for their review .  ( see attached file : 2 - 14 - 2000 eula . doc )\",0\n\"Subject: re : options training classes  for those of you who did not see the memos from jeff that went out on  february 17 th . & february 22 nd . regarding the upcoming options training  classed , i have attached both memos below :  i have the books at my desk for those of you that have not received your  copy .  there will be a third memo in the next couple of days with regards to the  location of the classes .  if you have any other questions , please feel free to contact me .  - brenda  x 31914\",0\n\"Subject: charles chen interview  vince / tanya :  i interviewed charles today 10 : 30 am . here are my impressions :  1 ) excellent professional and managerial experience .  2 ) very good technical background .  deal valuation and  model implementation  3 ) promisses to fit very well into the group ' s culture .  the only issues i see is that he would have to leave a high level position at  his current employee .  paulo issler\",0\n\"Subject: re : meeting  andrew ,  i shall be glad to meet and discuss the project . it sounds intriguing .  vince  andrew miles @ enron  09 / 22 / 2000 01 : 34 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : meeting  hi vince !  maybe you remember me , my name is andrew miles and we worked together on a  speech for jeff skilling this past july . i am hoping that i can get on your  calendar for 30 minutes next week . i have been working with 3 other enron  employees for the past 6 months , developing a comprehensive innovation  acceleration process for use by potentially all enron employees - and we  would really appreciate your input . we have presented the idea to quite a  few people in the company , and some outside of the company ( strategos  institute ) , all of which have really liked the idea and provided key input .  many people have suggested that we run the idea by you .  if you have some time next week , would you mind allowing me to explain our  ideas to you ? i will follow up with a telephone call .  all the best ,  andrew\",0\n\"Subject: technical corner paper  vince ,  as you suggested , i splited the paper into two parts , the first one  devotes to the fx market and second one to gas market . attached  is the first part .  let me know if there is any mistakes in there , thanks .  sam ,  vince wants to publish this article in the next monday edition of the  research intelligence .  thanks .  zimin\",0\n\"Subject: transportation for m . gillis and g . whitaker for post presentation  celebration at enron box at enron field  hi judith !  i have a special parking ticket for malcolm and gil to use in dr . gillis ' s  car . then , i ' ll have a car pick up gil when he ' s ready to leave the  game - - we ' ll take care of everything ( thanks for offering ) - - we ' re really  looking forward to the event !  best regards for a great weekend !  - - christie .  - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 05 / 04 / 2001  04 : 10 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  judith duvall on 05 / 04 / 2001 02 : 09 : 26 pm  to : christie . patrick @ enron . com  cc :  subject : re : rice alp final presentation and post presentation celebration  at enron box at enron field  christie :  could you please fill me in on the logistics ? dr . gillis and gil whitaker  will  be at the apl project presentation at enron at 4 p . m . . further , they both  plan  to attend the dinner at enron field . however , dr . gillis must skip the  game due  to an early morning breakfast the next day . will you provide special parking  at the dinner / game ? i think dr . g and gil will go together , then i will have  dr . gillis picked up by limo , at approximately 8 : 00 p . m . does this sound  feasible ?  judith duvall  at 10 : 00 am 5 / 4 / 01 - 0500 , you wrote :  > hi friends !  >  > the big rice - alp final presentation day is almost here : monday , may 7 th ,  > 4 pm , at enron , 1400 smith . please come to the enron lobby and ask for  > me or my assistant , melinda mccarty .  >  > after the presentation , you are cordially invited to dinner and an astro ' s  > game ( vs phillies ) at the enron box at enron field . as participation in  > the enron box at enron field is limited to this special invitation list  > only , please confirm your attendance via return email , or via voice mail to  > me at 713 - 853 - 6117 asap .  >  > we ' re very excited about the work the rice alp team has done and we ' re all  > greatly looking forward to the presentation .  >  > hope to see everyone monday ! !  >  > best regards !  >  > - - christie .  >  >  >  judith duvall  secretary to the president  rice university  6100 main street - - msl  houston , tx 77005  713 / 348 - 4601  713 / 348 - 5271 ( fax )\",0\n\"Subject: re : petrochem desk  yes , i will have kate get involved and talk to christian to get details .  vasant  - - - - - original message - - - - -  from : kaminski , vince  sent : monday , april 23 , 2001 9 : 29 am  to : shanbhogue , vasant  cc : kaminski , vince  subject : petrochem desk  vasant ,  it seems we have to help them . can kate help  on this project ?  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 23 / 2001  09 : 28 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  nelson neale @ enron  04 / 20 / 2001 10 : 29 am  to : vince j kaminski / hou / ect @ ect , vasant shanbhogue / enron @ enronxgate  cc :  subject : petrochem desk  i had a chance to speak with christian lebroc this morning with regard to  curve building for petrochemicals . as it turns out , christian left rac in  april and joined the petrochem desk as a trader . previous efforts at  construction of a forward curve by the group have focused on intuition or  swags . unfortunately , the group had a rough p & l year with at least some of  the blame directed toward the forward curve or lack thereof . when asked  about the fundamentals group , christian indicated that they ' d only been  around about 3 - 4 months and are not yet well - suited to curve building . john  nowlan is indeed the head of the group .  from a timing perspective , i told christian that it would probably take at  least 6 - 8 weeks to develop a curve , especially considering the need to  understand the key market drivers / fundamentals . as was suggested yesterday  during our meeting , a strong relationship between petrochemicals and a nymex  component ( e . g . , crude oil ) would provide a great beginning point - - we could  then potentially strengthen / augment this relationship with other key factors  ( e . g . , supply and demand terms ) borne out of our market research .  nelson\",0\n\"Subject: re : enron project  keith ,  it was a great pleasure to work you with on this project .  the entire enron team was impressed by the quality of the students  and commitment of the school to exploring new and creative  ways of exposing students to business problems .  vince  weigelt on 04 / 10 / 2001 12 : 05 : 25 pm  to : \"\" ' vkamins @ enron . com ' \"\"  cc :  subject : enron project  vince ;  i just wanted to tell you how much i enjoyed working with enron on the tiger  project . i found the interaction with you and your colleagues very  stimulating . the ideas we covered ( like whether there are network  externalities in these markets ) was more like a workshop than a project . i  wish all businessmen had your interests and capabilities .  thanks  keith\",0\n\"Subject: wharton risk center advisory committee meeting - june 14 , 2001  to : advisory committee members  from : paul r . kleindorfer  howard kunreuther  date : march 12 , 2001  subject : our next advisory committee meeting  just to let you know that our next advisory committee meeting will be on  thursday , june 14 , 2001 . we will be sending the agenda and more details in  late march or early april . the principal theme of this meeting of the  advisory committee will be \"\" markets and regulation for efficient risk  management \"\" .  we would appreciate your letting theresa convery know your attendance by  returning a completed response form ( copy attached ) via fax or email as soon  as possible .  fax : ( 215 ) 573 - 2130  phone : ( 215 ) 898 - 5688  email : tconvery @ wharton . upenn . edu  >  ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~  theresa convery  administrative assistant  risk and decision processes center  the wharton school of the university of pennsylvania  ( 215 ) 898 - 5688 / fax : ( 215 ) 573 - 2130  tconvery @ wharton . upenn . edu  - response form . doc\",0\n\"Subject: rice / eron finance seminar series  fyi !  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 12 / 04 / 2000  07 : 59 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  barbara ostdiek on 12 / 01 / 2000 05 : 38 : 08 pm  to : ostdiek @ rice . edu  cc :  subject : rice / eron finance seminar series  enron seminar series in finance  jones graduate school of management , rice university  tim bollerslev  duke university  will give a seminar at the jones school on friday , december 8 , ?  \u0001 & measuring , modeling , and forecasting realized volatility . \u0001 8  the seminar will begin at 10 : 30 in room 113 .  please note the different time and different room for this seminar .  a pdf of the paper is available through the seminar website  http : / / www . ruf . rice . edu / ~ jgsfss / .  ?\",0\n\"Subject: aga forecast for 7 / 21 is 42  vince & stinson ,  the number comes out from the time series model is 42 , compared with mike ' s  61 .  last year ' s number ( true ) was 41 ( 7 / 23 / 99 ) , and 26 ( 7 / 30 / 99 ) . therefore the  curve is down - sloping dramatically .  let us see what happen tomorrow .  zimin\",0\n\"Subject: re : country risk jr . economist hiring  vince ,  thanks .  - - gwyn  vince j kaminski @ ect  05 / 02 / 2001 03 : 20 pm  to : gwyn koepke / na / enron @ enron  cc : vince j kaminski / hou / ect @ ect  subject : re : country risk jr . economist hiring  gwyn ,  try to reduce the number of potential candidates to 3 , before i shall  get involved .  also , i contacted hr regarding your promotion .  the process has started .  vince  gwyn koepke @ enron  05 / 02 / 2001 03 : 09 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : country risk jr . economist hiring  thanks vince . i have the resume book from sais . i ' d like to start  contacting them individually telephonically prior to meeting with maureen . i  will begin to contact them and do some initial screening . would you like to  participate in the initial screening ?  thanks , - - gwyn  vince j kaminski @ ect  05 / 02 / 2001 03 : 06 pm  to : gwyn koepke / na / enron @ enron  cc :  subject : re : country risk jr . economist hiring  gwyn ,  yes , please go ahead and get a resume book from sais .  vince  gwyn koepke @ enron  05 / 02 / 2001 11 : 40 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : country risk jr . economist hiring  vince ,  maureen had mentioned to me a while back that our group had approval to hire  an junior / full economist . she then asked me to contact johns hopkins sais to  get resumes of possible candidates . i have completed all this . but , before  i begin contacting these potential candidates , i wanted to confirm with you  that we have the approval to hire another person at the either junior or  associate economist level .  thank you .  gwyn koepke\",0\n\"Subject: correlation matrix reduction  zhiyang ,  got your message .  as we discussed , the best way to breakdown the big correlation matrix between  different location indices is through \"\" cluster analysis \"\" . the idea is to select major  hubs and the \"\" satellite \"\" markets . by establish the correlation between the hubs  and correlation between the satellites and the hubs , the big matrix can be significantly  reduced . then the traders only need to input the correlations between the hubs .  this technique has been applied in our value at risk system . you may talk to  tanya to find out the details .  zimin  ps : the wsprd code you requested .\",0\n\"Subject: re : uk power / gas  vince , just fyi :  oliver ( risk control in london ) was asking if it is appropriate to use a set  of factors corresponding to some commodity for another commodity .  this \"\" mapping \"\" we do quite frequently in our var system when forward prices  for a commodity are not correlated ( because of poor price history ) .  i think using this kind of mappings is ok because we can not trust these  correlations based on illiquid price information .  if we believed the matrix with low correlations represents what goes on in  the market and we simply can not reconstruct it with our 7 factors - then  we might use more factors then 7 or the matrix itself .  tanya  tanya tamarchenko  12 / 15 / 2000 02 : 36 pm  to : oliver gaylard / lon / ect @ ect  cc : david port / market risk / corp / enron @ enron , rudi zipter / hou / ect @ ect , wenyao  jia / hou / ect @ ect , kirstee hewitt / lon / ect @ ect , debbie r brackett / hou / ect @ ect ,  naveen andrews / corp / enron @ enron  subject : re : uk power / gas  oliver ,  i completely agree with you : validating var inputs like positions , prices and  volatilities which are used by risktrac is the first thing to do .  you also rise a valid question : if the factor loadings for some commodity do  not make sense should we use the factor loadings for another commodity ?  the factor loadings \"\" do not make sense \"\" when the correlations across the term  structure are not high . so if we believe that the forward prices for this  commodity are market prices and statistical analysis on these prices produces  the correlations which we trust , then it would be proper to use this  correlation matrix in var engine , not the factors . using factors is simply  the way to speed up calculations for highly correlated prices without  sacrificing the accuracy .  tanya .  oliver gaylard  12 / 15 / 2000 07 : 11 am  to : naveen andrews / corp / enron @ enron  cc : david port / market risk / corp / enron @ enron , rudi zipter / hou / ect @ ect , wenyao  jia / hou / ect @ ect , kirstee hewitt / lon / ect @ ect , tanya tamarchenko / hou / ect @ ect ,  ganapathy ramesh / hou / ect @ ect , debbie r brackett / hou / ect @ ect  subject : re : uk power / gas  naveen  regarding the calculation of uk vars in risk trac i agree that we should be  using this calculation engine for all commodity vars . however we should not  focus solely on the uk but ensure that we use risk trac for continental power  and gas , uk power and gas , nordic power .  to use risk trac i think the following need to be resolved first , to  implement it \"\" right the first time \"\" , as i think it is incorrect to consider  the risk trac numbers \"\" as the most accurate \"\" since it depends on the validity  of these items :  positions ( delta and gamma ) and curve mapping - these need to include all  positions including those outside the main risk systems  positions , curves and mapping should now be no problem given the feeds ,  apart from continental power , have been uat ' d and we have the spreadsheet  feeds up and running .  price and vol curves - as used by the risk systems  as above  inter commodity correlation - prompt month  correlation should be easy to calculate given an accurate and complete data  set ( however the incomplete historic data for europe in risk trac , prior to  the formation of the task force , would mean a full data set needs to be  obtained and used ) . term structure of correlation would be good but i  understand this is difficult to use in the calculation .  factor loadings  i think factor loadings should be calculated , on the same data sets used  for inter commodity correlation , for all commodities . if this analysis does  not appear to work i am not sure that using factor loadings for other markets  is adequate . do we need to consider an alternative approach to calculating  var for these markets ?  to ensure this moves forward i think a list of the mile stones ,  responsibilities and time lines needs to be drawn up otherwise i fear the  process of moving across to risk trac from the spreadsheet var will  experience some slippage .  i will call today to start the process off .  rgds  oliver  naveen andrews @ enron  06 / 12 / 2000 21 : 50  to : oliver gaylard / lon / ect @ ect  cc : david port / market risk / corp / enron @ enron , rudi zipter / hou / ect @ ect , wenyao  jia / hou / ect @ ect , kirstee hewitt / lon / ect @ ect , tanya tamarchenko / hou / ect @ ect ,  ganapathy ramesh / hou / ect @ ect , debbie r brackett / hou / ect @ ect  subject : uk power / gas  oliver ,  i had a couple of issues pertaining to uk power / uk gas . first ,  just a few notes as it pertains to risk trac uk - implementation :  ( 1 ) in risktrac , currently all the gas curves are mapped to nbp .  ( 2 ) all the power curves are mapped to r 4 ( cinergy ) .  factor loading analysis lends itself only to nbp and the norewgian curves ( for  reasons of liquidity , etc ) . we have decided that nbp and cinergy are the  best curves available at this time .  the spreadsheet which is utilized in the uk also has curves mapped to a  2 - 3 - year old set of factors derived from us nat gas , which is clearly not  optimal . hence  ( 1 ) we should be using risktrac numbers for var , as it is the \"\" most  accurate \"\" , both in terms of ene - wide model usage and in terms of the most  recent updated data . ever since uk power came on board in risktrac 3 weeks  ago , the uk power number has been consistently 7 - 8 mm above the numbers in  your spreadsheet . this difference is to be ecpected , given the different  inputs .  ( 2 ) the consistent numbers do not point to a data error in any obvious way ,  however , if you believe that positions are not captured correctly , please let  our it staff know that .  ( 3 ) checks which ramesh has done indicate that positions are tying in .  however , as you know , there could be disconnects with enpower , etc .  in any event , it would be ideal and optimal to have all the simulations run  out of risktrac for reasons of aggregation and analysis .  your help is appreciated .  regards  naveen\",0\n\"Subject: fwd : abstract  return - path :  from : vkaminski @ aol . com  full - name : vkaminski  message - id :  date : sun , 1 oct 2000 07 : 40 : 46 edt  subject : abstract  to : deng @ isye . gatech . edu  mime - version : 1 . 0  content - type : multipart / mixed ; boundary = \"\" part 2 _ 15 . 9 e 45 a 9 f . 27087 cbe _ boundary \"\"  x - mailer : aol 3 . 0 16 - bit for windows sub 86  shijie ,  i am sending you the abstract for my informs presentation .  vince  * * * * *  the last three years were characterized by exceptionally high volatility of  the power prices in the us markets . the market developments have created a  number of unique challenges for energy industry economists . one immediate  question we have to answer is how to measure volatility of energy prices .  although we can all agree that the prices in the power markets are  characterized by high variability , the traditional measures used in financial  economics ( annualized standard deviation of log price returns ) may not fit  well electricity prices . the second challenge is to explain the sources of  high price volatility and to answer the question to what extent it can be  attributed to problems that can be addressed in the long run . such problems  include flaws in market design that allow some market participants to abuse  market power , limited availability and / or unequal access to transmission ,  temporary shortages of generation capacity . some factors underlying high  volatility of electricity prices may be of permanent nature and may be a  necessary price to pay for increased market efficiency and expanded customer  choice .  - informs . doc\",0\n\"Subject: monday ' s newsletter  hello vince !  i ' m working with michael sergeev to produce this next issue of the  newsletter . do you have a suggestion for the kaminski column on page one ?  if so , please tell me what you ' d like to use and i ' ll get it ready either  today or monday morning .  at some point , when you have a couple of minutes , we should sit down and talk  about your philosophy regarding the newsletter and what you would like to see  in the future . i ' d like to get a little creative with it once i know your  thoughts on this .  best regards ,  sam  p . s . - note that i am \"\" william smith \"\" in the lotus notes system . there is  also a \"\" will smith \"\" that works in it . we forward each other ' s mail all the  time ! : - )  ss\",0\n\"Subject: stewart seeligson joins ebs  hi stinson & vince this is the person that kevin howard told me about - - kevin  did the finacing portion of the deals mentioned blow and stewart was the  commercial counterpart . he will be heading up hamachi towards its closure  this week .  ravi .  - - - - - forwarded by ravi thuraisingham / enron communications on 03 / 13 / 00 02 : 20  pm - - - - -  ebs office of the chairman  sent by : dolph selten  03 / 13 / 00 01 : 47 pm  to : ec employees - - all @ enron communications  cc :  subject : stewart seeligson joins ebs  we are pleased to announce that stewart seeligson has joined ebs relocating  after more than 4 years from enron europe in london . stewart started with  enron nearly six years ago as an associate in ect in houston . in europe ,  stewart was successful in playing a key role in sutton bridge , originating a  number of highly structured transactions including the eastern deals and more  recently co - led enron ' s commercial activities in spain especially the  development of a 1200 mw ccgt which is expected to begin construction later  this year .  stewart will assist in developing , managing and leading several of our more  complicated mission critical commercial transactions . in particular , stewart  will focus on those transactions which require multiple functions across ebs ,  a role stewart excelled in at enron europe . stewart will report directly to  ken rice as a vice president , but will work directly with each of the  commercial business unit leaders on a project specific basis .  please welcome stewart to the ebs team .\",0\n\"Subject: re : trading algorithms  andy ,  sounds good . one comment : vasant is swamped with work coordinating  several high profile projects .  bob is very productive and thorough and will get a lot of support  internally from other members of the group : this contribution  may not be directly visible but it will be still very important .  we appreciate your hands - on involvement . it ' s always the most  important condition of a successful project to have direct and frequent  interaction  with the customer . look fwd to working on this project .  vince  from : andy zipper / enron @ enronxgate on 04 / 18 / 2001 01 : 57 pm  to : jay webb / enron @ enronxgate , vince j kaminski / hou / ect @ ect  cc :  subject : trading algorithms  guys ,  here is what i took away from our meeting :  1 ) . research will continue working on custom reporting off of enrononline  data .  2 ) . research will continue working on market analysis off of enrononline data  3 ) . research will a contribute a resource to the trading algorithm effort ,  presumably one at this point in time . i would prefer it to be vasant but i am  flexible . the trading algorithm group will be run by the enrononline team with  its product reviewed by research . it is my belief that projects like this  require a firm commercial hand in their infancy to make sure they stay on the  right track .  if this presents a problem for anyone please let me know so that we can  discuss .  thanks ,  andy\",0\n\"Subject: hello vince ,  nie bardzo wiem czy pisac po polsku czy po angielsku : )  co u ciebie slychac ?  u mnie troche zmian jak ze juz nie pracuje w scem , a przenioslem sie do  mieco ( a small marubeni backed energy - america trading company ) . bardzo  rozne od scem . najbardzij przypomina mi scem na poczatku z joe , jak bylo  20 - 30 osob . sa i minusy i plusy . troche structure i research ale przede  wszystkim weather . trrovhe latam miedzy east i west bo sa officy w obydwu  miejscach . california jest ok w zimie : ) .  na bardziej personalnym froncie ; pamietasz dinner na ktory poszlismy  kiedys na conferencji w ny z catherine ( she used to work for williams -  works for morgan stanley now ) , we are dating ( for a while ) . it is a  good story how we met . so we owe you dinner : )  jak bylem w atlancie to pracowala dla mnie christa grey . bedzie teraz  konczyla grad school in international relations ( with eastern european  slant ) , i zastanawia sie czy sa jakies mozliwosci polaczenia tego co robila  ze \"\" wschodem \"\" . co robila to bylo przede wszystkim vb implementations modeli  , ( roznego rodzaju ) , web based data collections , basic research , teraz  jest w gas structuring etc . she speaks russian and was in ukraine / poland  few times on peace corp assingments . she is very bright and dedicated .  myslalem zeby ja zwabic do californii ale ten eastern european pociag jest u  niej silniejszy niz u mnie : ) . i have here resume , wiec jak bys myslal ze  jest jakis fit i will foreward it to you .  troche tak mieszanka pisze , przepraszam  bede chyba w houston w pazdzierniku to moze bysmy sie mogli spotkac .  latwiej pewnie by bylo w ny ( mieszkam po nj stronie ( rent jest inny niz w  atlancie : ) ( 201 ) 222 - 0435 ) , wiec daj mi znac jakbys mial czas i ochote .  thanks  roman\",0\n\"Subject: re : aiesec  biliana ,  i have prior commitments on saturday , february the 5 th . please , send me more  information about the following saturday . there is a remote possibility i  shall have  to go to london that weekend . otherwise , i shall be glad to join you .  vince  biliana pehlivanova on 01 / 28 / 2000  11 : 54 : 58 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : aiesec  dear mr . kaminski ,  the following are the personal and work e - mail addresses of the polish  trainees in college station .  sylwester rutkowski sylwesterr @ usa . net , sylwester . rutkowski @ destia . com  patricia dalecka pdalecka @ hotmail . com , patrycia . dalecka @ destia . com  danusia mas danusia . mas @ destia . com  lidia olczyk lolczyk @ usa . net , lidia . olczyk @ destia . com  robert lyczak rlyczak @ yahoo . com , robert . lyczak @ destia . com  i would like to invite you to join us for a paintball game next saturday ,  feb 5 th . the purpose of this event is to develop team building among our  student members , board of advisors , and corporate clients .  in addition , i would like to invite you to participate in our mock  sales day on saturday , feb . 12 th . during this day , the new members will  first receive training on aiesec sales / knowledge and then role play with our  board of advisors and alumni acting as company  representatives . sharing your aiesec and work experience would be a  valuable contribution to our training program .  i will get in touch with you regarding these events in the beginning of  next week , as soon as i have the time and place finalized .  i appreciate your interest in working with us .  best regards ,  biliana pehlivanova  vice president of incoming exchange  aiesec houston\",0\n\"Subject: corp and muni bonds  here ' s what i found . pls let me know if i can help you with anything . i  checked on the bonds that we spoke with you about earlier . the call date was  in august so i just passed on it . these look pretty good .  thanks , julie  - kaminsky 2 . doc\",0\n\"Subject: re : ff vols from historical fwd price curves  winston ,  i am sending you ffd vol curves which are calculated based on 1 month ( 18  log - returns )  of data with 0 . 97 decay factor . these vols give $ 3 . 14 m in var for  storage - prc ( versus 3 . 37 in production  for 5 / 30 / 00 ) .  tell me what i need to change in the format so that it is convenient for you .  tanya\",0\n\"Subject: re : your mail  zhendong ,  dr . kaminski called me back telling me that he would like to have you as  an intern student in his research department during the summer . please  write him an email as soon as possible to introduce yourself and letting  him know of your expected starting date and ending date . dr . kaminski ' s  email address is vince . j . kaminski @ enron . com  shi - jie deng  assistant professor  school of isye  georgia institute of technology  office phone : ( 404 ) 894 - 6519  e - mail : deng @ isye . gatech . edu  home page : http : / / www . isye . gatech . edu / ~ deng\",0\n\"Subject: request submitted : access request for brian . mihura @ enron . com  you have received this email because you are listed as an alternate data  approver . please click  approval to review and act upon this request .  request id : 000000000005412  approver : stinson . gibner @ enron . com  request create date : 10 / 23 / 00 8 : 49 : 45 am  requested for : brian . mihura @ enron . com  resource name : \\ \\ enehou \\ houston \\ common \\ research - [ read / write ]  resource type : directory\",0\n\"Subject: enroncredit . com report for 12 . 10  fyi `  - - - - - - - - - - - - - - - - - - - - - - forwarded by benjamin parsons / lon / ect on 13 / 10 / 2000  09 : 16 - - - - - - - - - - - - - - - - - - - - - - - - - - -  katja schilling  13 / 10 / 2000 08 : 40  to : john sherriff / lon / ect @ ect , deborah edwards / lon / ect @ ect , edmund  cooper / lon / ect @ ect , ted murphy / hou / ect @ ect , william s bradford / hou / ect @ ect ,  eva hoeffelman / lon / ect @ ect , jackie gentle / lon / ect @ ect , steve w  young / lon / ect @ ect , tim davies / lon / ect @ ect , mark pickering / lon / ect @ ect , denis  o ' connell / lon / ect @ ect , david a wall / risk mgmt / lon / ect @ ect , rod  nelson / lon / ect @ ect , jeff kinneman / hou / ect @ ect , joanne wadey / lon / ect @ ect ,  enroncredit . com london , enroncredit . com houston , michael r brown / lon / ect @ ect ,  philippe a bibi / hou / ect @ ect , louise kitchen / hou / ect @ ect , drew c  lynch / lon / ect @ ect  cc :  subject : enroncredit . com report for 12 . 10  1 . credit quality  2 . website\",0\n\"Subject: lacima energy and weather derivatives courses by clewlow and  strickland  please find attached information ? for our next two courses and workshops : ?  energy derivatives : ? pricing and risk management and  weather derivatives , which will be conducted in houston and in london in feb  / march 2001 . ? instructors will be dr les clewlow and dr chris strickland .  ?  because the course requires intense interaction , the courses will be ? limited  to a maximum of 15 people , so early registration is encouraged .  ?  if you require further information , or would like to register for either or  both ? courses , please contact me via this email or our web site , ? www .  lacimagroup . com  - energy . pdf  - weather . pdf\",0\n\"Subject: mec advisory board meeting  we are still in discussions with mec about a transaction , but it seems to be  moving in the right direction . they have asked to set up an advisory meeting  in december to meet the senior team members . mr . plotnick indicated that he  expects to have his cto in place by then . i am trying to arrange our first  meeting the week of december 5 or december 12 . please send me a short list  of times you have available for a two hour meeting .  once again , i would like to thank each of you for your help with this  project .  regards ,  mark  mark lay  enron investment partners  333 clay st . , suite 3800  houston , tx 77002  p 713 - 853 - 7408  f 713 - 345 - 7670\",0\n\"Subject: re : resume  how did it go with renshi zhang and bill koures ? renshi has two offers  already . if you want to persue him , i would recommend moving quickly .  regards ,  marshall brown  vice president  robert walters associates  tel : ( 212 ) 704 - 0596  fax : ( 212 ) 704 - 4312  mailto : marshall . brown @ robertwalters . com  http : / / www . robertwalters . com  > - - - - - original message - - - - -  > from : vince . j . kaminski @ enron . com [ smtp : vince . j . kaminski @ enron . com ]  > sent : monday , march 12 , 2001 6 : 36 pm  > to : marshall . brown @ robertwalters . com  > cc : vince . j . kaminski @ enron . com  > subject : re : resume  >  >  > marshall ,  >  > i am catching up with my mail . we would like to talk to this candidate as  > well  > ( phone interview ) .  >  > vince  >  >  >  >  >  > marshall brown on 02 / 21 / 2001 12 : 36 : 39  > pm  >  > to : vince kaminski  > cc :  > subject : resume  >  >  > vince ,  > this candidate would be interested in speaking with you .  > regards ,  >  > marshall brown  > vice president  > robert walters associates  > tel : ( 212 ) 704 - 0596  > fax : ( 212 ) 704 - 4312  > mailto : marshall . brown @ robertwalters . com  > http : / / www . robertwalters . com  >  >  > >  >  >  > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  > caution : electronic mail sent through the internet is not secure and could  > be intercepted by a third party .  >  > this email and any files transmitted with it are confidential and  > intended solely for the use of the individual or entity to whom they  > are addressed . if you have received this email in error please notify  > the system manager .  >  > this footnote also confirms that this email message has been swept by  > mimesweeper for the presence of computer viruses .  >  > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  >  > ( see attached file : kour _ vas . doc )  >  > >\",0\n\"Subject: anjam and kirstee ,  as i have suspected the position as of 6 / 30 vs 7 / 19 makes the difference . the  first table first column is my var number with 6 / 30 position and gold & silver  prices , the second column is your var with 7 / 19 position and dummy  gold & silver prices . the second table first column is my var with 7 / 19  position and 6 / 30 gold & silver prices , the second column is as before .  i would ask you to plug the gold and silver prices and see what kind of  numbers you get in order to verify we are on the same page . please refer to  modelvar 2000 . xls that i have sent you for gold & silver prices and  volatilities .  thank you ,  cantekin  table 1  table 2\",0\n\"Subject: vince ,  i hope you are well . until today , i did not know there was another kaminski  at enron . perhaps you know him already but i found him in the enron address  book his first name is jim .  i am enrolled in the above mandatory program and i have nominated you in the  peer / colleague category , to provide feedback on me . i do not know the nature  of the questions you would be required to respond to but sometime soon you  would receive an e - mail asking you for your input .  i know your plate is full and life is already hectic but i thought i could  nominate you for your input . i should be grateful if you would take some  time off your very hectic schedule and provide the feedback on me .  very many thanks ,  tony  enron broadband services  713 - 853 - 3939\",0\n\"Subject: re : the consultant ' s model for gary hickerson ' s group  the model is supposed to be a real option model to capture the value of  power plants of gencos . it is to give trader a better insight as to whether  the  market is overvaluing / undervaluing certain genco stocks , and trader can  act accordingly . i ' m still trying to find out how trader is supposed to use  it .  modeling details :  the model takes in all gencos ' locational power forward prices and fuel  forward  prices , and uses garch model to simulate one year daily prices , and then  uses a hourly profile to convert them into hourly prices . garch model  parameters  are estimated by the consultant using and separate model and  are updated twice a year , and it does not matter whether the simulation starts  in january or september .  using these prices , it will determine whether a unit at a particular location  will be dispatched  or not depending on a ) spread of power and fuel prices , and b ) whether the  start - up  cost can be recovered during 8 operation hours . the unit can be dispatched at  minimum and peak levels . fixed o & m , sox and nox ( i don ' t know what the last  two stand for )  are taken into consideration .  with the simulated dispatch schedule , the model calculates the value that can  be generated  by this unit , then sums it up across all units .  the final value is the average of 100 simulations . and it takes about 16  hours to run for about  200 units .  after our conversation , the consultant promised to look into a ) how to make  the model more flexible ,  say , to allow a different time horizon , b ) reduce spreadsheet overhead by  doing calculation one  unit a time and not saving all the intermediate information ( as of now it  saves everything  on the spreadsheet ) .  assuming the garch process is modelled correctly , i believe the methodology  is ok , though  it does not capture most of the optionality .  my concerns are :  whether the price processes are modelled correctly . i have to get more  details before making  any conclusion .  100 simulations are way too few . unless we convert the algorithm to c , i  don ' t see how spreadsheet  can handle more simulations . i guess that ' s why they contact us . but again ,  if enron ' s buying the  model from the consulting company , why should enron do their job for them ?  how trader ' s going to use the model output . for this i phoned jeff ( the  associate who initiated all  these ) and am still waiting for his returning call . a related questions why  the model horizon is one year .  we can either  oversee the conversation , but not doing actual coding for them .  or  redo the model for them . ( the problem still remains that how trader ' s going  to use the output ) . but  in view of the great wall of china separating the business units , should we  do it ?  as of now i have a simulation model taking start - up cost , fixed o & m , rump - up  delay into consideration .  it simulates monthly prices ( using gbm ) and takes 2 minutes 40 seconds to run  10 , 000 simulations for  one unit for ten years ( 120 time steps ) . it can use forward - forward vol and  incorporate seasonality into  it ( i understand this is debatable ) . ( one interesting observation is that  when using forward - forward vol  simulation , the standard deviation is about 0 . 5 % , while standard deviation  using forward vol is about  2 % . also , incorporating seasonality increases the value by about 1 . 6 % ) . since  most of the time - cost  occurs in price simulation , and we are to simulate about 20 price processes ,  i hope the full model  ( if we build it ) will take a couple of hours to run for 200 units . the main  task will be interfacing , i . e . ,  getting data from data base , and outputting the results . this is where i need  most help if i am to do it .  please advice the course of action . i am supposed to talk to michelle  cisneros today .  p . s . i never promised to oversee a programmer in our group ( see the message  below ) .  best ,  alex  - - - - - - - - - - - - - - - - - - - - - - forwarded by alex huang / corp / enron on 01 / 05 / 2001 08 : 58  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  jeff m gray  01 / 04 / 2001  to : gary . hickerson @ enron . com , michael . w . bradley @ enron . com ,  michelle . d . cisneros @ enron . com , jaime . gualy @ enron . com  cc : alex . huang @ enron . com , kskinner @ ftenergy . com , cseiple @ ftenergy . com  subject : fw : project timeline  ken and i worked up the following timeline and refined the trading  methodology a bit this morning . we also met with alex huang from vince ' s  group , and explained the model and coding tasks . ken and alex have arranged  to speak by phone on monday , and meanwhile alex is coordinating within the  research group . alex will oversee a programmer within his group , while  interfacing regularly with us .  1 / 4 kickoff  1 / 11 complete spreadsheet , table , and database structures ( rdi ) .  1 / 17 complete software coding for the pricemaker component of the model  ( rdi and enron research ) , and begin testing ( enron research ) .  1 / 22 complete software coding for the dispatch portion of the model ( rdi  and enron research ) , and begin testing ( enron research ) .  1 / 22 complete financial trader \"\" user \"\" interface , within the access  environment ( rdi ) .  1 / 22 complete collection and delivery of unverified generating - unit data from  rdi databases ( rdi ) . begin verification process ( rdi ) .  1 / 29 complete all charts and reports accessible from the user interface  ( rdi ) .  1 / 29 complete compilation of consensus ebitda forecasts for all operations  other than merchant generation ( enron financial trading ) .  2 / 9 complete code testing ( enron research ) .  2 / 9 deliver verified and quality - checked generating - unit data ( rdi ) .  2 / 9 complete the model , begin testing the trading methodology , and train  users .  2 / 16 finish training , testing , and final qc .  jeff\",0\n\"Subject: mit research on bandwidth pricing  gentlemen :  amit is a former mit sloan student whose research was sponsored by a program  set up by tom gros to learn more about bandwidth pricing and market effects .  we worked with him quite a bit for a while , as did vince kaminski and stinson  gibner , on this project . well , he has finally graduated and is in the  process of having his thesis published . he has offered to come down to  present his findings to anyone interested , so i am inquiring as to your level  of interest in order to schedule a meeting , if appropriate .  below is a short description of his work . please let me know your thoughts  and if you have any questions .  thanks , jay .  - -  james f . hawthorn  enron broadband services  global bandwidth risk management  + 1 713 853 7606 telephone  + 1 713 646 8795 facsimile  - - - - - forwarded by jay hawthorn / enron communications on 03 / 29 / 01 09 : 15 am  - - - - -  adhadwal @ mit . edu  03 / 20 / 01 03 : 50 pm  to : jay hawthorn / enron communications @ enron communications , adhadwal @ mit . edu  cc :  subject :  hi jay ,  as per our discussion this morning , will be terrific to come on down to talk  about the results of my thesis related to pricing & risk management of  forward contracts on bandwidths . thanks to the support from enron for this  work !  here ' s a brief description .  we addressed the problem of pricing and risk managment of forward contracts  on bandwidth under uncertain future available supply . this exposes the  seller to both the risk of perishability as well as the risk of  overcommitments . we consider a variety of selling strategies to map  commitment risk , and show how forward pricing varies over time under these  strategies . the managerial insights into dynamic forward pricing are neat !  have several graphs from simulations , and several math proofs .  there are two technical pricing papers from this thesis , now submitted for  publication . it will be great to share this knowledge with enron , thanks to  your support for the work , and also discuss how the results may be mapped  with real - life , possible modifications , and finally how they may be  programmed and used .  let me know your thoughts and interest level - maybe someone from vince ' s  group as well ? i can make the talk as technical as you want , depending on  the audience . at its core , it is math - heavy , but the insights can easily be  translated to a high - managerial level view , a more detailed trader - level  view , or a super - detailed research level view .  cheers ,  - amit\",0\n\"Subject: sddp model  john ,  attached is a copy of the sddp methodology manual , written by the  developers . the model was developed by mario pereira , who is the proprietor  of psri ( power systems research inc ) in rio de janeiro . their web site is :  www . psr - inc . com where you can find more information about the company and  contact details . mario and most of the staff speak english , so phone calls  are possible .  development of sddp was originally done on a world bank contract to compare  the benefits of new generation and transmission system interconnections in  central america . it has since found much wider application . the code runs  on a pc , and is licensed to a number of consultants , power companies , etc .  while i was with ecnz in wellington , new zealand , we purchased a copy around  1994 .  the model works with weekly or monthly time steps , with a time horizon of  from 1 to 10 years , for mid to long range planning of hydro thermal power  systems . it represents loads in each period as from one to five load blocks ,  so it is not a chronological model . this type of model can not handle  thermal plant ramp rates and similar chronological system constraints . i ' m  not sure how important that would be to you . the optimization phase of the  model takes into account hydrological uncertainty using a form of stochastic  dynamic programming with sampling . this phase sets up a function for water  value in each large reservoir in the system . the simulation phase uses a  number of hydrological outcomes to collect statistics on how the system would  operate . the water values can be used with the short term optimization mode  of sddp or in some other more detailed short term optimization model .  most constraints found in hydro systems can be modelled . many transmission  constraints can be modelled . a dc load flow option can be used to determine  bus nodal prices .  a visual basic user interface is provided which reads and writes text files .  if you ' d like to know more about sddp , you could call me here in houston .  ( tel 001 713 345 8539 )  yours  tom halliburton\",0\n\"Subject: follow up / cultivation for mit  mit / sloan team :  i am pleased to announce that the two candidates below were extended offers  for enron ' s summer associate program :  hakeem sanusi 617 - 576 - 7570 hsanusi @ mit . edu offer pending  jozef lieskovsky 617 - 905 - 5633 jlieskov @ mit . edu offer pending  as we discussed , there were a number of excellent candidates that we met  while interviewing for summer associates . in an effort to strengthen our  name on campus and to cultivate relationships with these individuals , we want  to make a concerted effort to keep up with them for our fall recruiting  effort . i have attached a template for us to use and refer to for both the  offers and the cultivations . this serves as a two - fold communication tool :  a tool for the team members to use in contacting the candidates and a tool  for me to use when tracking any issues or concerns the candidates may have .  please feel free to add to it and e - mail it back to me or give me a call  ( ext . 37632 ) and i will update it .  i will also be using this to report back to a & a management .  below are the names of the candidates that made it to the second round . we  want to call on all of them .  blaise nietcho 617 - 225 - 2598 blaise @ mit . edu  rocco paduano 617 - 742 - 2085 rpaduano @ mit . edu  samuel vainstein 617 - 266 - 7257 samuva @ mit . edu  diego silva robert 617 - 441 - 6999 dsilva @ mit . edu  should you have any questions , please feel free to give me a call .  thanks ,  karen marshall  recruiting manager\",0\n\"Subject: re : thank you  sevil .  we are looking forward to having you here .  if you want , you can stop by one day and i shall introduce you  to grant masson with whom you will be working this summer .  vince  sevil yaman on 02 / 23 / 2000 10 : 09 : 30 am  to : vkamins @ enron . com  cc :  subject : thank you  hi dr . kaminski ,  yesterday , i learned from shannon rogers at the associate - analyst program  that i was offered a summer associate / internship position in your group . i  am already very excited about this position and look forward to working in  your group . many thanks for your consideration .  sevil yaman  department of economics  university of houston  houston , tx 77204 - 5882  ( 713 ) 743 - 3814 / 3817\",0\n\"Subject: california on the brink - - cera alert  cera alert : december 13 , 2000  title : california on the brink  cera knowledge areas : western energy , n . american power , n . american gas  california on the brink  the california stalemate  california moved closer to the brink of an outage today as concerns over  credit - worthiness of buyers brought the possibility that generators would  avoid selling to the california market . while numerous factors have  contributed to the high cost of power incurred by california ' s utilities , the  root cause of the current crisis is a lack of new generation . the current  credit crisis and its threat to supplies could spark state action to address  the situation . the collective efforts of all market participants should be  focused on increasing generation capacity as quickly as possible .  western power prices have skyrocketed well beyond the record levels set this  summer . perhaps because frozen rates insulate the majority of california  consumers and companies from tangible effects of the market crisis ,  regulators have been able to postpone meaningful market reforms and  significant rate increases . the california public utilities commission denied  the requests of pacific gas & electric and southern california edison to end  their rate freezes , forcing these utilities at least temporarily to finance  the costs of higher wholesale energy . this has created an unsustainable  accumulation of costs and a loss of faith in the california market .  the current credit crisis and the potential for blackouts may become the  galvanizing events that provide state regulators with a public mandate to  address the underlying structural problems in the industry . however , there is  no guarantee that these regulatory actions will expedite an effective  solution for customers and the industry as a whole . wholesale and retail  markets that emerge from regulatory intervention are likely to remain  muddled . in the necessarily political process that will follow , it is  possible that - as has largely been the case so far - the steps taken will fail  to move the california power market toward a more enduring solution and will  instead continue to mask the underlying structural flaws .  in the six months since california ' s supply shortfall began plaguing western  markets , regulators have done little to address the underlying problem .  rather than addressing the cause of the supply shortage - establishing a market  environment that encourages timely additions of new generating capacity and  demand side responses - efforts are instead directed at trying to lay blame for  the crisis and lessen the immediate financial impact on customers . indeed ,  several actions taken thus far have served more to compound the problem by  discouraging new power plant additions . these include price caps , repeated  changes to market rules , attempts to seize generator profits , and a  challenging siting and permitting process .  medicine worse than the illness  several years of electricity demand growth and low prices in california were  accompanied by very few additions to the supply base . regulators did not pay  adequate attention to the looming supply shortfall . the void of consensus  over the cause of the current crisis has instead been replaced by a series of  bandaid remedies that address the symptoms , but not the cause , of  california ' s electric market woes . *  * challenging siting and permitting . despite state action to better  coordinate the siting and permitting process for new power plants , power  plant developers still face high hurdles . local community opposition alone  has struck down some key proposed facilities .  * price caps discourage investment . state and federal proposals to cap prices  limit the attractiveness of the california wholesale power market , especially  for developers who have the option of channeling scarce capital and equipment  to more stable or more attractive markets outside the state .  * repeated rule changes . frequent rule changes in the iso markets ( including  the price caps ) confound attempts by developers to estimate profits from new  plant development .  * calls for refunds . despite reports by the power exchange , the iso , and the  ferc that no pattern of abuse could be found from their examination of the  california markets , state officials continue to accuse power providers of  gaming the market . calls by state officials for refunds of generator profits  are a threat to new plant development .  * facility inspections . recent inspections of power plants by state officials  to verify that operators are honestly reporting the operational status of  their generating units accentuates the atmosphere of mistrust .  cera ' s recent analysis suggests that merchant plant developers in the west  are not guaranteed ? to make a profit . prospects of new plant profitability  are affected by the timing and quantity of new plants , decommissioning of  older units , demand growth , and numerous other difficult - to - forecast factors .  california ' s regulatory actions only further cloud the assessment of  financial viability and degrade the political environment for developers  considering entering the state .  despite efforts by the california iso to stimulate new capacity additions in  the state with a special , limited - term capacity payment , cera estimates that  demand growth will continue to outstrip supply additions in the west in 2001 .  in addition , the existing siting and permitting process will prevent a  sufficient quantity of capacity from entering the market until 2003 at the  earliest . therefore , three years remain before a sufficient quantity of  capacity enters service to significantly dampen prices and decrease the risk  of an outage .  the road to recovery  there are a number of actions that can be taken to help relieve the capacity  shortfall :  * encourage new build . supply must be part of the answer . this requires a  series of steps that can help facilitate new supply build . while in principal  some have been taken , such as new fast track approval , the success of these  actions can only be measured by the build itself . for now , there is still not  enough new supply coming on until 2003 to relieve supply tightness . ?  * stabilize investment climate . utilities must have assurance that they will  ultimately be allowed to recover market costs for power . this provides the  credit worthiness needed by sellers to produce energy and to stimulate new  build .  * move toward more balanced utility supply portfolios . one of the reasons the  pressure on customers has been so intense in california has been the absence  ( and even discouragement ) of diverse supply portfolios among the utilities in  the state - particularly for residential and small commercial customers . with  the market at a peak , however , now is in one sense a sub - optimal time to move  toward term contracting . yet these contracts provide the foundation for a  series of actions - including new supply build and demand side investments . if  they end up above market , they will at least have achieved the desired effect  of knocking down prices , a fact which by itself should provide sufficient  justification for recovering the cost of these commitments .  * encourage market mechanisms that elicit a demand response . although  originally a feature of california ' s market design , most consumers are  insulated from price spikes through capped or frozen retail rates . exposing  customers to at least some of the market price signals would encourage a  demand response .  * encourage market mechanisms that dampen the \"\" boom bust \"\" characteristic of  the market . whether in the form of a capacity payment , a reserve requirement ,  or a minimum term portfolio requirement , the california power market needs to  move to a structure that encourages investment in new capacity when the  market is in balance rather than waiting for a shortage and price shock to  elicit new investment . such a structure can help dampen ( but not eliminate )  future price volatility .  * avoid continuously tinkering with the market . while the market does need to  be restructured as described above , it also needs to be stable and reliable  to encourage the development of new supply as well as a robust long - term  contractual market for power in california . continually tinkering with the  market structure - such as the three times the price cap has been shifted since  july - only serves to undermine confidence in the market . california needs to  do its best to develop a long - term solution and then let the market run its  course .  * allow for greater environmental flexibility . the state should explore a  more balanced solution to emissions restrictions in the face of a supply  shortfall that has been exacerbated by generators that cannot operate due to  emissions restrictions .  * free purpa power plants to generate . relief should be granted to purpa  power plants that are operational , but are restricted by contract from  operating to generate only power .  * * end * *  this cera alert will be available in pdf format within 24 hours .  this electronic message and attachments , if any , contain information  from cambridge energy research associates , inc . ( cera ) which is  confidential and may be privileged . unauthorized disclosure , copying ,  distribution or use of the contents of this message or any attachments ,  in whole or in part , is strictly prohibited .  terms of use : http : / / www . cera . com / tos . html  questions / comments : webmaster @ cera . com  copyright 2000 . cambridge energy research associates\",0\n\"Subject: your riskmetrics site password  dear kaminski ,  thank you for registering .  your requested username is polonia and your password is riskdata .  you may use this login to :  - access picture of risk at http : / / www . riskmetrics . com / por / index . cgi  - use the longrun forecast engine at  - use the data directory at http : / / www . riskmetrics . com / data / view / index . cgi  - access the creditmetrics datasets at  - access the riskmetrics datasets at  - read our technical documents at  - read our monitors at http : / / www . riskmetrics . com / research / monitors / index . cgi  - read the corporatemetrics publications at  - read risk management : a practical guide at  please let us know if you have any questions or concerns ,  rmg web services  web @ riskmetrics . com\",0\n\"Subject: re : new risk management book  vince ,  thanks so much ,  pedro fernando  vince j kaminski @ ect  11 / 21 / 2000 01 : 17 pm  to : shirley crenshaw / hou / ect @ ect  cc : pedro fernando manrique / enron _ development @ enron _ development , vince j  kaminski / hou / ect @ ect  subject : re : new risk management book  shirley ,  please , send a copy of the book to pedro fernando .  vince  pedro fernando manrique @ enron _ development  11 / 15 / 2000 02 : 04 pm  to : vince j kaminski @ ect  cc :  subject : new risk management book  vince ,  in colombia we are setting up a trading operation and would be nice to have a  copy of the new book for our reference . please let us know how we can get  access to a copy .  many thanks ,  pedro fernando\",0\n\"Subject: dinner speaker - may 23  vince :  michael crew would like you to be a speaker on wednesday , may 23 rd  instead of the 24 th at the rutgers conference . is this ok ?  he is preparing the agenda and needs to know as soon as possible .  shirley  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 03 / 21 / 2001  02 : 31 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" michael a . crew \"\" on 03 / 21 / 2001 10 : 07 : 52 am  to : shirley . crenshaw @ enron . com  cc : vkamins @ enron . com , crri @ andromeda . rutgers . edu ,  kleindorfer @ wharton . upenn . edu  subject : dinner speaker - may 23  shirley ,  this is to follow up today ' s conversation with anita . as mentioned paul  kleindorfer invited vince to be our dinner speaker on thursday , may 24 . on  reflection given the strong line up for wednesday - fred kahn et al - we  would very much like vince to be the speaker on wednesday . this will  conclude the day very well giving participants a strong incentive to be there  for the wednesday .  i gather that this change should be acceptable to vince .  we will show vince ' s name as follows :  wincety j . kaminski  managing director - research  enron  jeremy will be em ailing you the program with this information immediately .  we would like to go to press today . failing that we can go to press  tomorrow . we would very much appreciate your confirming this and making any  corrections or changes . if you would respond to all of us it would be  appreciated .  michael  michael a . crew  professor ii  director - center for research in regulated industries  editor - journal of regulatory economics  rutgers university , graduate school of management  180 university avenue  newark , n . j . 07102 - 1897  phone : 973 353 5049 fax : 973 353 1348  http : / / www - rci . rutgers . edu / ~ crri\",0\n\"Subject: re : grading  graders usually follow the following guidelines :  - half of the class gets a - and above ;  - the other half of the class gets b + and below  - instructors seldom ever give grades below b - , but it happens in rare cases  - the highest grade possible is a +  jason\",0\n\"Subject: oleg bodnar  shirley ,  please , put oleg bodnar on jeff shankman ' s and john arnold ' s schedules  for an interview . he should be already on john lavorato ' s schedule .  vince\",0\n\"Subject: super saturday changes  the recruiting season has officially begun . the first super saturday weekend  is the weekend of october 27 th and 28 th . we have undergone a rigorous  interview process on campus , which will allow us to focus on \u0001 however , we are still in need of interviewers for each  of the super saturdays . please respond with your willingness to interview  at : http : / / axis . enron . com / notice / ssinvite . asp  ( when selecting dates please avoid selecting to interview candidates who  attend the schools for which you are a team member ) .  we thank you in advance for your participation and support of the program .\",0\n\"Subject: enron credit modeling  when we laast spoke , we agreed that you would look to support some of our  development efforts from houston . if possible , i would like to have a quick  conference call this week to figure out where we are and move forward .  thanks\",0\n\"Subject: reactions september is now live on - line  > reactions  > the latest edition of the financial magazine for the global insurance  > market is now live at http : / / www . reactionsnet . com  >  > the world ' s leading insurance and reinsurance magazine . simply hit  > the links at the bottom of each item to see the full article . you can  > call or email us for help at any time on mailto : web - help @ euromoneyplc . com  > or + 44 ( 0 ) 20 7779 8006 . the september issue of reactions is packed full  > of news , views and figures :  >  > * cover report : the future for reinsurance : ignoring uncertainty and  > danger  > http : / / www . reactionsnet . com / viewstory . asp ? id = 799  > * cover report : are ratings agencies responsible for excess capital ?  > http : / / www . reactionsnet . com / viewstory . asp ? id = 800  > * cover report : why not give the capital back ?  > http : / / www . reactionsnet . com / viewstory . asp ? id = 801  > * cover report : m & a shakeout likely  > http : / / www . reactionsnet . com / viewstory . asp ? id = 802  > * cover report : what the future industry will look like - the new  > face of risk transfer  > http : / / www . reactionsnet . com / viewstory . asp ? id = 803  >  >  > les rendez - vous de septembre ~ monte carlo 2000  > the 44 th international meeting of insurers , reinsurers , brokers and  > reinsurance consultants starts on september 3 rd , and you will be able to  > keep right up to date with all the news by logging - on to the official  > monte carlo website : http : / / www . rvs - monte - carlo . com .  >  > in association with guy carpenter [ http : / / www . guycarp . com ] ,  > reactions will publish the rendez - vous reporter daily . it will be  > available to read on - line should you not be able to attend in person -  > simply go to the section headed \"\" newsletter \"\" to access these daily  > updates . you can also read last year ' s archived reporters here .  >  > look out for our daily email news alerts , sent directly from monte  > carlo next week !  >  >  > other stories  >  > * profile : munich re - giant steps forward  > munich re has kept as silent as a statue for many  > years - even when confronted with the most innocent enquiries about its  > strategy . but now the statue has come to life and is willing to talk about  > how it maintains its position as the world ' s most powerful reinsurer .  > simon challis went to munich to hear about it .  > http : / / www . reactionsnet . com / viewstory . asp ? id = 804  >  > * financial risks : the path to new risks  > insurance companies and banks were once two separate and  > distinct marketplaces . but now the dividing lines between the two are more  > blurred than ever . this is creating new opportunities for both , but also a  > fresh set of problems and challenges to be overcome .  > http : / / www . reactionsnet . com / viewstory . asp ? id = 805  > * tax havens : financial paradise under threat  > offshore domiciles and tax havens have created important  > niches within insurance and finance and have become centres of excellence  > for many industries . but the sun may soon disappear for these  > jurisdictions as they come under pressure to change .  > http : / / www . reactionsnet . com / viewstory . asp ? id = 806  > for a free trial to the leading authority on international  > fund management , global investor magazine , please go to  > http : / / www . . com / admin / registernow . asp , to see the  > home page go to http : / / www . . com .  >  > * e - commerce : electronic re hits the screens  > in a rapidly changing world , one thing at least has become  > abundantly clear . insurers and reinsurers who fail to rise to the  > challenges of internet technology will fall by the wayside .  > http : / / www . reactionsnet . com / viewstory . asp ? id = 809  > for specialist information on the internet economy visit our  > sister publication evantage at http : / / www . evantagenow . com .  >  > * european insurance : all change in a unified market  > the eu ' s non - life insurance markets are undergoing rapid  > transformation , driven by the deregulation of the markets and advances in  > information technology . http : / / www . reactionsnet . com / viewstory . asp ? id = 812  >  >  > plus  > * latin american insurance by susan drury  > this brand new report analyses the growth and opportunities  > for companies , products and alliances in the market . susan drury  > forecasts the shape and direction of the latin american industry over the  > next ten years .  > https : / / ecommerce . waterside . net / reactions / la _ insurance . asp  >  > * @ risk : internet and ecommerce insurance and reinsurance legal issues  > this guide is a vital point of reference for anyone involved  > in the covering of internet related liabilities . for a reduced price of  > 150 pounds you can ensure that you have the best information on risk  > associated e - commerce insurance at your disposal .  > https : / / ecommerce . waterside . net / reactions / risk . asp  >  > * ensurance  > without a clear e - commerce strategy you are seriously  > jeopardising the future competitiveness of your company . reactions  > publishing group has produced the report to answer all your questions on  > this new and expanding market .  > https : / / ecommerce . waterside . net / reactions / ensurance . asp  >  > * reinsurance fourth edition by professor rl carter  > the fully updated edition of the best selling guide to the  > reinsurance market . a must read book for every executive and consultant  > involved in the rapidly evolving reinsurance industry .  > https : / / ecommerce . waterside . net / reactions / reins _ fourth . asp  >  > * euromoney plc provides a uniquely focussed on - line book and  > information service for all financial markets professionals . to find the  > best , most up - to - date selection of books and journals specifically for  > your sector please go to http : / / www . euromoneyplc . com ( registration is  > free ) or call us on + 44 ( 0 ) 20 7779 8673 .  >  >  > http : / / www . reactionsnet . com  >  >  > to advertise or link your company website to this industry  > circular please contact andreas silberman  > tel : + 44 ( 0 ) 20 7779 8186 or e - mail  > mailto : asilberman @ euromoneyplc . com  >  > if you have any problems logging onto or using  > www . reactionsnet . com please call our dedicated help desk  > + 44 ( 0 ) 20 7779 8006 or email  > mailto : web - help @ euromoneyplc . com\",0\n\"Subject: fw : resume for vince kaminski  vince : i have received this resume ( unsolicited ) from an outside recruiting  agency . if you are interested in meeting with johnathan , i would be more  than happy to set it up for you .  molly  - - - - - original message - - - - -  from : graham , toni  sent : thursday , march 08 , 2001 2 : 07 pm  to : magee , molly  subject : fw : resume for vince kaminski  - - - - - original message - - - - -  from : \"\" m eastman \"\" @ enron  @ enron . com ]  sent : thursday , march 08 , 2001 1 : 53 pm  to : graham , toni  subject : resume for vince kaminski  johnathan is at 142 , 000 base + 10 - 15 % bonus . he is a phd . , certified in  financial risk management , awaiting charter as cfa , and the list goes  on . at kpmg his clients are financial institutions , e - commerce , internet ,  and high tech . he has real options valuation and various other financial  and overall corporate risk valuation and analysis skills that may be of  interest to vince and his group .  mike eastman , cpc - president  qualitec professional services , lp  accounting - financial - energy risk - tax  search consultants  281 - 647 - 9300 ext . 314 fax 281 - 647 - 9300  email meastman @ qualitec . com  website www . qualitec . com  - johnathan mun . doc\",0\n\"Subject: the inn at penn  danielle  fyi . this is the information regarding the best hotel  for the meeting on december the 6 th , 9 : 00 - 12 : 00 .  vince  http : / / www . innatpenn . com / contact . html  the inn at penn  sansom common , 3600 sansom street  philadelphia , pa . 19104  phone : 1 - 800 - 809 - 7001  fax : 215 - 222 - 4600  please , mention that the stay is related to the university business  when making the reservation .  tom piazze at wharton can confirm it .  tom piazze  phone : ( 215 ) 898 1615  piazzet @ wharton . upenn . edu\",0\n\"Subject: iafe membership  dear colleague :  we are pleased to report that we had a very exciting and productive year  with dozens of activities around the world . as we enter our 10 th year of  operations , the iafe has additional membership options available to you .  please take a moment to look at the attached membership form with the 2001  rate schedule . based on member requests , a premium membership is now being  offered that includes the annual conference at a 30 % discount , the financial  engineer of the year dinner , plus a subscription to the journal of  derivatives ( jod ) . the full membership remains as in previous years . the new  regular membership includes all membership benefits except jod . membership  is based on the calendar year january 1 - december 31 , 2001 .  membership is also available on our secured membership registration form at  our website http : / / www . iafe . org / about / join . ihtml . while on our website ,  please take a moment to visit our calendar listing upcoming events for the  new year .  if you have any questions please don ' t hesitate to contact me at  main @ iafe . org .  regards ,  donna jacobus  iafe office manager  - 2001 membership application . pdf\",0\n\"Subject: associate & analyst super saturday friday night dinner  participation  thank you for volunteering your time for this weekend ' s super saturday . we  appreciate your commitment to enron ' s recruiting success . at this time we do  have an adequate number of friday night dinner participants and will not need  you to sacrifice your friday evening . if you haven ' t already , we encourage  you to volunteer for one of our other future super saturdays .  thank you again for your support and your participation .  shelly jones  recruiting manager  associate & analyst programs\",0\n\"Subject: congratulations  vince :  congratulations on your promotion to md . you certainly are well deserving  this long overdue promotion .  cheers ,  ding yuan\",0\n\"Subject: re : december 6 th meeting  theresa ,  thanks . i appreciate it .  happy thanksgiving and please give my regards and best  wishes to howard .  vince  \"\" convery , theresa \"\" on 11 / 22 / 2000 09 : 39 : 53 am  to : \"\" vince kaminski ( e - mail ) \"\"  cc : \"\" kunreuther , howard \"\"  subject : december 6 th meeting  dear mr . kaminski :  this is to confirm the december 6 th meeting here at our center .  the location for the meeting is room # 3212 steinberg hall - dietrich hall and  the time will run from 9 : 00 am - 11 : 00 am .  please let us know if you need anything further .  we look forward to seeing you then .  regards ,  theresa convery  ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~  theresa convery  administrative assistant  risk and decision processes center  the wharton school of the university of pennsylvania  ( 215 ) 898 - 5688 / fax : ( 215 ) 573 - 2130  tconvery @ wharton . upenn . edu\",0\n\"Subject: mr . sud  rebecca ,  i share some of your concerns regarding mr . sud . he is retired and he chose  to contact us rather indirectly ( or on the spur of the moment ) .  i understand that things are done differently in different cultures but i  did not meet him and could not  form my judgment based on personal observations .  however , the information he gave us seems to be too important not to convey  to you and not to act upon .  vince kaminski\",0\n\"Subject: cera conference call playback now available - cera conference call  playback  title : regulatory scorecard for power : who ' s on first ? what ' s on second ?  url ( s ) :  in a may 17 , 2001 , cera conference call and web presentation , amy biehl , sharon  reishus , and dan mahoney discussed :  regulatory scorecard for power : who ' s on first ? what ' s on second ?  * has the dust finally settled from the backlash of the california power crisis  on other states ' efforts to restructure the electric industry ?  * where do congress and the bush administration stand on electric industry  reform ?  * status of retail competition for electric power and natural gas  please follow above url to view and listen to a replay of this cera multimedia  conference call . when the premiere conferencing placeware window opens , simply enter your name and click the \"\" view \"\" button . a \"\" recording key code \"\" is not required .  hosted by premiere conferencing .  * * end * *  e - mail category : conference call playback  cera knowledge area ( s ) : north american power , retail energy  cera ' s spring 2001 roundtable event dates and agendas are now available  at http : / / www 20 . cera . com / event  to make changes to your cera . com profile go to :  forgot your username and password ? go to :  http : / / www 20 . cera . com / client / forgot  this electronic message and attachments , if any , contain information  from cambridge energy research associates , inc . ( cera ) which is  confidential and may be privileged . unauthorized disclosure , copying ,  distribution or use of the contents of this message or any attachments ,  in whole or in part , is strictly prohibited .  terms of use : http : / / www 20 . cera . com / tos  questions / comments : webmaster @ cera . com  copyright 2001 . cambridge energy research associates\",0\n\"Subject: re : enron / stanford program  nick ,  i spoke with paul racicot , head of trading for ebs , north america this  morning . he said that he is happy to send the $ 100 , 000 for your program  from his budget . i have forwarded to him the draft letter to accompany the  funds and will try to follow up to make sure that the money is sent promptly .  - - stinson\",0\n\"Subject: re : reprint available \"\" alliance gas pipeline :  john ,  my mailing address is :  vince kaminski  enron corp .  1400 smith  room eb 1962  houston , tx 77002  thanks for remembering about me .  vince  \"\" john h herbert \"\" on 12 / 04 / 2000 07 : 09 : 55 am  to : \"\" vince j kaminski \"\"  cc :  subject : reprint available \"\" alliance gas pipeline :  early , late , or just in time ?  a story of big gambles , big assumptions , and spark spreads turned upside  down \"\"  by john h . herbert , published in the november 15 , 2000 issue of public  utilities fortnightly ( puf ) .  this article which contains five figures and is on the long side for puf  also covers market issues that go beyond alliance .  if you like to receive a reprint please send me your address .  best regards ,  jhherbert  703 - 532 - 4544 ( phone )  603 - 719 - 6675  2929 rosemary lane  falls church , virginia 22042\",0\n\"Subject: re : speakers for a ceo meeting with nebraska governor johanns  margaret ,  i have an economist in my group and asked her if she feels qualified to make a  presentation on this topic . i shall keep you posted . i think it would help  enron to oblige .  vince  margaret carson @ enron  02 / 16 / 2000 02 : 24 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : speakers for a ceo meeting with nebraska governor johanns  vince , i could work up a talk on everything they are looking for  except the area of energy impacts on agri - customers . . . does ena have  some specialist that look at this slice of the energy marke that could  help me respondt ? thanks margaret  - - - - - - - - - - - - - - - - - - - - - - forwarded by margaret carson / corp / enron on 02 / 16 / 2000  02 : 21 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  beth jensen  02 / 16 / 2000 01 : 19 pm  to : margaret carson / corp / enron @ enron  cc : rob wilson / et & s / enron @ enron , larry deroin / npng / enron @ enron , bill  cordes / et & s / enron @ enron , mike mcgowan / et & s / enron @ enron , beth  jensen / npng / enron @ enron  subject : speakers for a ceo meeting with governor johanns  hello margaret . we are looking for a speaker for a meeting that is being  arranged with nebraska governor johanns during the first week in april .  the potential topic is a national perspective on pricing pressures / trends on  natural gas , electricity and oil and their impact on agricultural production  costs , as well as types of risk managment tools that are being used to offset  the price fluctuations .  do you know of anyone , either within the corporation or outside , who would be  available to travel to omaha to make this presentation ?  i would appreciate any assistance that you could provide , margaret .  thanks ,  beth jensen\",0\n\"Subject: re : summer associate position at enron  hi dmitri :  thank you for responding so quickly .  i have scheduled the telephone interview for wednesday , january 31 st  at 3 : 30 pm ( houston time ) . you may be ahead one hour ? the interview  will be for approximately 1 hour .  the research group that will be interviewing you will be :  vince kaminski managing director  stinson gibner vice president  zimin lu director  we will call you at 615 - 496 - 1132 . if anything changes , please let me know .  thanks dmitri .  sincerely ,  shirley crenshaw  dmitri villevald on 01 / 16 / 2001  11 : 42 : 05 pm  to : \"\" ' shirley . crenshaw @ enron . com ' \"\"  cc :  subject : re : summer associate position at enron  dear ms . crenshaw :  thank you for choosing me for the telephone interview . it is a great honor  for me to be interviewed by enron research group professionals . i will be  available for the interview on january 25 th - 26 th , january 29 th - 31 st  anytime from 3 : 00 pm to 6 : 00 pm . please let me know which time is the most  convenient for you . you can reach me by telephone ( home : 615 - 292 - 7122 ) .  also , i am always available at my cell phone ( 615 - 496 - 1132 ) .  to make sure that i will do my best during the interview , i will greatly  appreciate if you provide me with some details on the interview structure  and the type of questions i could expect .  again , thank you very much for the great opportunity to demonstrate and  prove my credentials , interest and desire to work for enron during this  summer . i am excited about the prospect of applying my skills at enron  research group as a summer associate . if i can provide more information or  answer additional questions , please , contact me either by telephone  ( 615 - 496 - 1132 ) or via e - mail ( dmitri . villevald @ owen 2002 . vanderbilt . edu ) .  sincerely ,  dmitri villevald  - - - - - original message - - - - -  from : shirley . crenshaw @ enron . com [ mailto : shirley . crenshaw @ enron . com ]  sent : tuesday , january 16 , 2001 9 : 40 am  to : dmitri villevald  subject : summer associate position at enron  good morning dmitri :  your resume was forwarded to the research group with enron by pavel  zadorozhny . they would like to conduct a telephone interview with you  at your convenience sometime within the next two weeks . it will be a  conference call and will include several of the research group .  this will determine where you might fit for the summer program .  please let me know some times that would be convenient for you and the  telephone number that you can be reached at .  sincerely ,  shirley crenshaw  adminsitrative coordinator  enron research group  713 / 853 - 5290  email : shirley . crenshaw @ enron . com\",0\n\"Subject: re : message from ken rice  vince :  thanks for returning this call . i guess it helps if i provide the contact information !  tom limperis  517 - 423 - 5617  thanks !  dorothy dalton  office of the chairman  enron broadband services  1400 smith street , eb 4505  houston , tx 77002  713 - 853 - 6724 - direct  713 - 853 - 9469 - fax  vince j kaminski @ ect 05 / 02 / 01 09 : 42 am to : dorothy dalton / enron communications @ enron communications @ enron cc : vince j kaminski / hou / ect @ ect , vasant shanbhogue / enron @ enronxgate subject : re : message from ken rice  dorothy ,  no problem . please , cc - mail me  tom ' s number . one of the members of the group has a phd in  computer science and he will join me for the call .  vince  from : dorothy dalton @ enron communications on 05 / 01 / 2001 08 : 53 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : message from ken rice  vince :  ken rice received a call through a friend ' s referral from dr . tom limperis ( a professor at the university of michigan ) . dr . limperis has developed a statistical database management system he would like to show enron . ken would like you to return this call on his behalf . he feels that you are probably the only person who will understand and be able to determine if enron should have an interest .  do you mind returning this call ? please let me know .  thanks !  dorothy dalton  office of the chairman  enron broadband services  1400 smith street , eb 4505  houston , tx 77002  713 - 853 - 6724 - direct  713 - 853 - 9469 - fax \",0\n\"Subject: updating your profile information in the gis system  as the global vp / md mid - year prc draws closer , i want to take the opportunity  to stress to you the importance of updating your profile information in the  gis system . details on your current responsibilities , employment history ,  skills and education should have been updated by 7 july 2000 . for those of  you that have not opened your profile in gis , i urge you to do so as soon as  possible to ensure that your profiles are current and complete .  gis is accessible via the hrweb home page on the intranet . you may go to  hrweb . enron . com and look for the gis link , or just type eglobal . enron . com on  the command line of the browser .  your timely response to this request is greatly appreciated .  thank you ,\",0\n\"Subject: california update - urgent please read 5 / 7 / 01  sources report that the bond authorization will be put to a vote today  the bridge loan financing bill will put to a vote today in the california  assembly . the republicans are currently in caucus until 3 : 30 pst and then  will go to the floor for a vote . the current situation is very fluid , but  sources now indicate that the bill would pass with a simple majority vote ,  lacking the two - thirds needed for an immediate bond issuance . if this is the  case , the bill would not take effect for 90 days and the state would be  forced to abandon its proposed bridge loan plans . absent of last minute  financial rescues by davis or a new longer bridge loan package ( unlikely )  socal could seek voluntary bankruptcy . the main problem would then be the  waiting period for financial relief from the state through the transmission  line purchase or other assistance .  there is an outside chance that republican defectors could precipitate from  the current caucus . there is extreme pressure on the republicans from davis  and angelides . if the bill failed due to lack of republican support , it  would provide davis the opportunity to blame republicans for on - going  expenditures of $ 70 m / day ( power purchases ) , and a possible bankruptcy by  socal . the last republican who gave support to a democratic bill ( ab lx ) ,  representative bill campbell , lost his job . sources also confirm that  democrats have not met with republicans on the bond issuance since last week .\",0\n\"Subject: your advice is appreciated  vince ,  in the morning we were talking about the el paso candidate who thinks he is  above something and is not  willing to take certain project or responsibility . in real life , we also  occasionally have similar stiuation . ( an  example is attached ) .  i would like to have your guidance when such a situation occurs .  zimin  - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 05 / 02 / 2001 02 : 07 pm  - - - - - - - - - - - - - - - - - - - - - - - - - - -  zimin lu  05 / 02 / 2001 01 : 41 pm  to : paulo issler / hou / ect @ ect  cc :  subject : re : asian option for pavel  our convention is whoever finalizes the model should write the  documentation . it does not make sense  to write one when changes are anticipated . you have been working on this  almost a year , it never  strikes you that we need a documentation ?  i created exotica . xll , does that also give you an excuse not working on  exotica documentation ?  zimin  paulo issler  05 / 02 / 2001 11 : 52 am  to : zimin lu / hou / ect @ ect  cc : tai woo / enron @ enronxgate @ enron , pavel zadorozhny / enron @ enronxgate  subject : re : asian option for pavel  i am surprised that we do not have the documentation ready .  i can make that for you . it is not there because you did not put that  together by the time it was created and all the changes i have made did not  required changes on the functionality .  paulo issler  zimin lu  05 / 02 / 2001 11 : 29 am  to : tai woo / enron @ enronxgate @ enron , paulo issler / hou / ect @ ect  cc : pavel zadorozhny / enron @ enronxgate  subject : re : asian option for pavel  tai woo ,  here are the c - codes for the crudeapo . ' sig ' is the spot  volatility meaning the price volatility within the delivery period .  you should consult with pavel for the definition of this \"\" extra \"\"  parameters . we  would like to see the position monitor once you get it running .  we might have some additional suggestions .  paulo ,  why don ' t we have a documentation on crudeapo you worked on ?  i can not find it in exotica help file . please supply that to tai , thanks .  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : tai woo / enron @ enronxgate on 05 / 02 / 2001 09 : 55 am  to : paulo issler / hou / ect @ ect  cc : kara maloney / enron @ enronxgate , zimin lu / hou / ect @ ect  subject : asian option for pavel  this morning , zimin told me that pavel is using a special model in evaluating  his asian option portfolio .  he asked me to talk to you in order to access to the code so that i can see  the difference made to the model .  as i cannot find the doc . describing this model , please tell me what that new  input parameter ' sig ' is .  thanks ,\",0\n\"Subject: the national forum on corporate finance  andy ,  i am sending you a draft oof a proposal regarding national forum for top  finance practitioners and  academics . the idea came from a professor at rice university who  has already received a commitment from a number  of most distinguished cfos .  please , read the outline and see if you would be interested in joining this  forum .  i shall be glad to help to arrange a meeting with prof . ikenberry .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 05 / 2001  10 : 22 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  david ikenberry on 02 / 02 / 2001 06 : 10 : 02 pm  to : \"\" vkamins @ ennron . com \"\"  cc :  subject :  it was great talking with you .  dave  - brochure . doc  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  prof . david ikenberry  jones graduate school of management  rice university  713 - 348 - 5385\",0\n\"Subject: software erequests for credit modeling  hi lola ,  as per our recent conversation , today we had a conference call with the  enron research and credit groups in the us and the uk .  it was decided that we would require the folowing software to assist us  in developing the private firm models :  1 . eviews statistical package  2 . spss statistical package ( the uk office already has an spss site  license . )  3 . tops software  4 . neural net software package ( george in the uk developed this package ) .  please discuss submit these requests to craig chaney for his approval .  thanks ,  iris\",0\n\"Subject: energy futures contracts project  hi vince and jason :  please find attached a copy of our project . thank you for an enjoyable and  informative class .  sincerely ,  rishad patel  neeraj hingorani  duane maue  eric van stone  john ganguzza  grant johnson  paulo yoshiura  - . doc\",0\n\"Subject: re : li sun : important notice : year - end prc preparation  stinson ,  i think it should be kevin kindall .  vince  stinson gibner  09 / 18 / 2000 08 : 08 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : li sun : important notice : year - end prc preparation  vince ,  should i be responsible for li sun ( for prc ) or do you want grant since she  is primarily working for kevin kindall ?  - - stinson  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 09 / 18 / 2000  08 : 06 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" the associate and analyst programs \"\" @ enron . com > on  09 / 15 / 2000 06 : 13 : 49 pm  to : \"\" sgibner @ enron . com \"\"  cc :  subject : important notice : year - end prc preparation  good afternoon supervisors of associates and analysts :  as you may be aware , the year - end prc for 2000 is quickly approaching and  your assistance is needed in ensuring a smooth process . it is imperative  that the  performance management team obtains the correct reviewing supervisor for the  associates and analysts in order to facilitate the prc process . the reviewing  supervisor is the person that will provide the associate / analyst their  year - end  individual performance feedback . you will be considered the reviewing  supervisor if you employ the individuals listed below as of october 1 , 2000 .  a comprehensive list of the associates and / or analysts currently in our  database  indicates that you are the supervisor of the individuals listed below . please  examine the list and reply with \"\" no changes \"\" if the data is correct . if  analyst in your response . if you will not be the reviewing supervisor as of  october lst , please let us know so that we may follow up with the associates  and  analysts .  in order to meet the performance management team ' s deadline , your reply is  needed by friday , september 22 , 2000 . we appreciate your assistance in this  matter .  our records show the following associates and analysts under your prc review .  shalesh ganjoo , analyst  li sun , associate  martin lin , associate  thanks in advance for your cooperation . please feel free to call shelly  butler @  713 - 853 - 4584 or jana giovannini @ 713 - 853 - 9233 with any questions you might  have .\",0\n\"Subject: this summer ' s houston visits 2  hi vince ,  one of my only windows of opportunity right now is to schedule the houston  visit for monday 10 th july for a single week only .  regards ,  anjam  - - - - - - - - - - - - - - - - - - - - - - forwarded by anjam ahmad / lon / ect on 28 / 04 / 2000 11 : 33  - - - - - - - - - - - - - - - - - - - - - - - - - - -  steven leppard  28 / 04 / 2000 10 : 15  to : vince j kaminski / hou / ect @ ect , dale surbey / lon / ect @ ect  cc : anjam ahmad / lon / ect @ ect , benjamin parsons / lon / ect @ ect , kirstee  hewitt / lon / ect @ ect , matthew d williams / lon / ect @ ect , steven  leppard / lon / ect @ ect  subject : this summer ' s houston visits  vince , dale  here are our proposals for houston visits from our group :  kirstee all of july , all of september . ( kirstee ' s personal commitments mean  she needs to be in the uk for august . )  ben all of october . ( no crossover with kirstee , ensures var / credit cover  in london office . )  steve 2 - 3 weeks in july , first 3 weeks of september .  anjam to be arranged at anjam and houston ' s mutual convenience .  matt not a permanent research group member . i ' m asking richard ' s group to  pay for his visit , probably in august .  steve\",0\n\"Subject: fyi - lacima run a 2 day course - uts on weather derivatives - first  w / e sept  - - - - - - - - - - - - - - - - - - - - - - forwarded by raymond yeow / enron _ development on  07 / 14 / 2000 08 : 23 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" chris strickland \"\" on 07 / 14 / 2000 05 : 01 : 12 am  please respond to \"\" chris strickland \"\"  to : \"\" shane dallmann \"\"  cc : \"\" julie \"\" , \"\" les \"\" , \"\" raymond yeow \"\"  , \"\" paul quilkey \"\"  subject : run a 2 day course - uts on weather derivatives - first w / e sept  hi shane ,  thanks for your e - mail . we actually sent the 9 of the 11 chapters off to the  typesetter today and i will forward you our word documents in the morning .  i ' ve been travelling a lot to the uk at the moment and so haven ' t spent much  time with the student myself . are you going to te energy confernece next  week , perhaps we can meet up there ?  good to hear about the weather . we are actually going to run a two day  course thru uts on weather derivatives the first weekend of september . feel  free to tell your potential clients about it if you think it will bring up  the industry knowledge . maybe we can associate your name with the course  somehow which might help both of us ?  c .  - - - - - original message - - - - -  from : shane dallmann  to :  cc : paul quilkey ; raymond yeow  sent : thursday , july 13 , 2000 1 : 56 pm  >  >  >  > chris ,  >  > how are things going ? i see that you are presenting at australian energy  risk  > 2000 along with vince kaminski who will be out from the us  >  > i was wondering how the book is going and whether we ' re likely to get a  copy  > ( just notes would do ) any time soon . or are you still waiting on those  slack  > enron people to finish it ? ( maybe you can corner him while he ' s here ) . if  i  > remember correctly from when you were here , you were going to give us a  copy of  > the notes and then we were going to sit down and decide what exactly we  wanted  > you to cover in an in - house course .  >  > paul also told me about a student of yours that was going to get in touch  with  > me but i have not heard anything yet .  >  > enron australia is also going to launch weather in the next couple of  weeks and  > would like to invite you and les along , so can you send me an address we  can  > send invitations to if you ' re interested .  >  > regards ,  >  > shane  >  >\",0\n\"Subject: replacement of stolen chairs  hi reggie ,  we spoke regarding the chairs on monday .  please , we need these chairs as soon as possible , without being charged .  we paid for all new chairs each time we moved and it ' s not fair we pay again .  thanks  kevin moore  p . s . these chairs were taken . . . . . . . . .  - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 04 / 18 / 2000 10 : 46  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron north america corp .  from : william smith @ enron 04 / 18 / 2000 10 : 00 am  to : reggie wilson / epsc / hou / ect @ ect  cc : shirley crenshaw / hou / ect @ ect , kevin g moore / hou / ect @ ect  subject : replacement of stolen chairs  reggie ,  there may already be a request floating around for a standard black office  chair for ebl 972 d . it was stolen over a weekend several weeks ago . in  addition to that one , my own chair at eb 3132 a was stolen this past weekend .  could you come up with a couple of decent ones for us ?  if you need to charge them to us , our numbers are 0011 and 100038 . as  always , call me if you need to at x 58322 .  thanks !  sam smith\",0\n\"Subject: re : resume  sorry , i did not know about the jv .  marshall brown  vice president  robert walters associates  tel : ( 212 ) 704 - 0596  fax : ( 212 ) 704 - 4312  mailto : marshall . brown @ robertwalters . com  http : / / www . robertwalters . com  > - - - - - original message - - - - -  > from : vince . j . kaminski @ enron . com [ smtp : vince . j . kaminski @ enron . com ]  > sent : friday , january 26 , 2001 3 : 53 pm  > to : marshall . brown @ robertwalters . com  > cc : vince . j . kaminski @ enron . com ; stinson . gibner @ enron . com  > subject : re : resume  >  >  > marshall ,  >  > thanks for the resume . we have a jv with peoples , so poaching is out of  > the  > question .  >  > vince  >  >  >  >  >  > marshall brown on 01 / 25 / 2001 09 : 04 : 23  > am  >  > to : vince kaminski  > cc :  > subject : resume  >  >  > vince ,  > this candidate would be interested in speaking with you . let me know  > your thoughts .  > regards ,  >  > marshall brown  > vice president  > robert walters associates  > tel : ( 212 ) 704 - 0596  > fax : ( 212 ) 704 - 4312  > mailto : marshall . brown @ robertwalters . com  > http : / / www . robertwalters . com  >  >  > >  >  >  > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  > caution : electronic mail sent through the internet is not secure and could  > be intercepted by a third party .  >  > this email and any files transmitted with it are confidential and  > intended solely for the use of the individual or entity to whom they  > are addressed . if you have received this email in error please notify  > the system manager .  >  > this footnote also confirms that this email message has been swept by  > mimesweeper for the presence of computer viruses .  >  > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  >  > ( see attached file : laps _ rob . doc )  >  > >\",0\n\"Subject: headcount verification - deadline noon wednesday , oct 25 , 2000  becky :  attached is the october \"\" revised \"\" research group headcount :  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 10 / 24 / 2000  01 : 13 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  becky pham  10 / 24 / 2000 11 : 57 am  to : shirley crenshaw / hou / ect @ ect  cc :  subject : headcount verification - deadline noon wednesday , oct 25 , 2000  please verify the attached file for accuracy , complete the blank columns and  add any new employees . if you have any questions , call me . thanx .\",0\n\"Subject: re : support on statistical modeling  randall ,  the person supporting ebs in the research group is martin lin .  i shall ask him to give you a call and will be glad to join you at the meeting  with martin .  vince  from : randall hicks @ enron communications on 04 / 04 / 2001 10 : 42 am  to : vince j kaminski / hou / ect @ ect  cc : bradford brooks / enron communications @ enron communications , shirley  crenshaw / hou / ect @ ect , daryl flaming / enron communications @ enron  communications , martin sacchi / enron communications @ enron communications  subject : support on statistical modeling  dear vince :  i was referred by rita hartfield of ebs . i am the director of marketing for  the digital content services team ( david cox , frank bay , et . al . ) . we are  identifying and evaluating features and functions that will be a part of the  next generation entertainment on demand ( eod ) product .  the e - mail i ' ve excerpted below contains two links to a company that offers a  \"\" preferencing \"\" service that we know is quite popular and important to  entertainment consumers . i have some questions abouts the statistics ,  sampling methodology , explained variance etc . of the model that the  stylelogic group employs .  do you have a member of your team that could assist on this project ?  thanks for your help ,  randall hicks  director - marketing  enron broadband services  1400 smith street - eb 4589 a  houston , tx 77002  work - 713 . 853 . 9970  randall _ hicks @ enron . net  -  brad ,  i would appreciate a chance to talk with you regarding enron ' s vod plans . we  have developed movie selection and recommendation / prediction functionality  that we can manage for ebs .  if you would like to read about what we have to offer , you may go to :  http : / / www . stylelogic . com / predict  i also invite you to see our functionality at : http : / / www . reviewmovies . com /  i look forward to a chance to speak with you at your earliest convenience .  brent rosenkranz  president  stylelogic - internet strategies and solutions  101 n . acacia avenue  solana beach , ca 92075  phone - 858 - 350 - 3939  toll free - 888 - 750 - 4678  fax - 858 - 350 - 3930  www . stylelogic . com  brent @ stylelogic . com\",0\n\"Subject: request submitted : access request for rakesh . bharati @ enron . com  you have received this email because you are listed as an alternate data  approver . please click  approval to review and act upon this request .  request id : 000000000013287  approver : stinson . gibner @ enron . com  request create date : 1 / 10 / 01 5 : 57 : 18 pm  requested for : rakesh . bharati @ enron . com  resource name : \\ \\ enehou \\ houston \\ common \\ research - [ read / write ]  resource type : directory\",0\n\"Subject: enron tiger team  dear jeff ,  our tiger team very much enjoyed your presentation about enron global markets  on friday . given that we have latitude in our project scope , our team would  like to assist enron in evaluating a new market opportunity . you mentioned  several markets that enron is considering in 2001 , including transportation ,  cement , coffee , cocoa , sugar , etc . we believe that a project of this sort  will give us the opportunity to really learn how enron creates value , what  its business model and core competencies are , and how they can be translated  to a new market . furthermore , we can get an in - depth understanding of an  industry . we believe our project will complement any analysis that your  business group is currently undertaking . please propose the top three new  markets that you would like us to evaluate for enron .  upon receipt of your proposal , perhaps we could set up a conference call to  discuss your thoughts and to make a final selection .  your expeditious response is appreciated .  regards ,  josh leventhal  215 - 546 - 2103\",0\n\"Subject: re : a friend of mine  vince ,  thank you very much for the follow up report . i am sure richard will be very  enthusiastic about the opportunity to speak with you and your team . i  appreciate your help , and please feel free to contact me if you or shirley  need assistance with logistics .  again , thank you and i look forward to working with you again this recruiting  season .  regards ,  kristin  - - - - - original message - - - - -  from : kaminski , vince  sent : wednesday , may 02 , 2001 8 : 27 am  to : gandy , kristin  subject : re : a friend of mine  kristin ,  thanks a lot for the resume .  we shall arrange a phone interview with richard . this is out standard  procedure .  a phone interview is followed by the on - site interview , after we determine  what is the best team to interview  the candidate .  vince  from : kristin gandy / enron @ enronxgate on 05 / 01 / 2001 05 : 14 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : a friend of mine  vince ,  last week i was contacted by one of my friends who is very interested in  becoming an enron employee . he has a phd and several years research and lab  experience .  richard is afraid that being a phd is a dying breed and may need to go back  to school to obtain an mba . i was wondering if you would mind looking at the  attached resume to assess if you have any interest in richard , or if you feel  i should encourage him to go back to school . i am unclear as to the  qualifications for your group so i apologize if this request is way off base .  thank you for your help ,  kristin gandy  associate recruiter  enron corporation  1400 smith street eb 1163  houston , texas 77002  713 - 345 - 3214  kristin . gandy @ enron . com  >\",0\n\"Subject: re : thank you !  frank ,  thanks a lot . look forward to meeting you again  on campus .  vince  \"\" frank qian \"\" on 11 / 05 / 2000 05 : 10 : 06 pm  to :  cc :  subject : thank you !  dear mr . kaminski :  it ' s a great pleasure to have you visiting us and a great honor to have  dinner with you . i ' d like to thank you for your wonderful presentation . it ' s  the most interesting topic we had so far . this is not just my personal  opinion , all my classmates i talked to agree with me . i like enron ' s style  and culture and i think it played a big role in enron ' s success . i look  forward to discuss career opportunities at enron during your on - campus  interview session .  regards ,  frank qian  fqian @ andrew . cmu . edu\",0\n\"Subject: confirmation of your online order  wincenty j kaminski ( vkamins @ enron . com )  this email is to confirm your online order which was received on 24 - aug - 2000 .  please note that this does not constitute a receipt .  if you have any queries or problems please e - mail  directcustserve @ cup . cam . ac . uk ( customer services ) quoting order reference  number web 5908 / ds 51002180 .  totals : 1 lines , 1 items , weight 0 . 630 kg , value gbp 30 . 00  delivery charge , air : gbp 5 . 00  total cost : gbp 35 . 00  shopping basket  theory of financial risks , from statistical physics to risk management ,  jean - philippe bouchaud ( hardback ) , isbn 0521782325  quantity : 1 reference : kaminski cost : gbp 30 . 00 in stock\",0\n\"Subject: new update on ppi model for inflation book - final version  dear all ,  attached is anjam ' s reasoning and final version of the uk ppi pllu model .  the uk inflation book ' s main exposure is to two ppi indexes - the pllu and  the dzcv through year 2010 . both are ppi output indexes with very comparable  baskets . the only significant difference between the two is the presence of  energy in the pllu ( 7 . 6 % ) . the model in use escalates the two indexes by the  same factors . however , with the energy price fluctuations in recent years  different models for the two indexes would reflect better the nature of their  drivers . anjam concentrated on the pllu index first and he will shortly  construct one for the dzcv based on the same methodology , but without the  brent crude curve .  the new model achieves the two main objectives of the ppi curve : it is  significantly more robust and stable than the existing one , and it is  considerably less sensitive to the input coefficients . this will result in us  having more confidence in our monthly p & l as well as less fluctuations .  best regards ,  martina  x 34327  anjam ahmad  10 / 03 / 2000 11 : 59  to : martina angelova / lon / ect @ ect  cc :  subject : new update on ppi model for inflation book  dear all ,  i followed up on the suggestions of happening babe at the conference call as  follows : -  1 ) use less data  unfortunately , kicking out only 1990 makes the overall equation a lot less  robust , in fact dramatically so , and so eliminates the possibility of using  less data . the model tested was the rpi ( month + 15 ) ppi pre - empts the moves in rpi by about 8 months . the  magnitude of the oscillations is also reduced . this shows that if we had  more detail in our rpi forward curve , then the ppi model would reflect those  peaks and humps adequately .  conclusion  i therefore propose that we use the model that incorporates rpi , rpi [ t + 15 ]  and deviations of brent crude from long - term average . the new model is  plotted below in burgundy and can be compared to the old ppi which is  depicted in blue .  please note that all this analysis only applies to pllu , and that a separate  study will be needed for the dzcv ppi index .  regards ,  anjam  x 35383  - - - - - - - - - - - - - - - - - - - - - - forwarded by anjam ahmad / lon / ect on 09 / 03 / 2000 16 : 52  - - - - - - - - - - - - - - - - - - - - - - - - - - -  anjam ahmad  08 / 03 / 2000 14 : 03  to : martina angelova / lon / ect @ ect , harry arora / hou / ect @ ect , maureen  raymond / hou / ect @ ect , zimin lu / hou / ect @ ect , farouk lalji / hou / ect @ ect  cc : trena mcfarland / lon / ect @ ect , dale surbey / lon / ect @ ect , stinson  gibner / hou / ect @ ect , vince j kaminski / hou / ect @ ect , leandro  ibasco / corp / enron @ enron  subject : update on ppi model for inflation book  dear all ,  we thought it might be useful to incorporate brent crude as an explanatory  variable for ppi ; it was found that deviations of dated brent crude from the  long - term average of $ 18 . 80 was the best form of the variable to use ( for  predictions the brent forward curve produced by the global products group is  used ) . the three new equations developed were : -  pllu ( t ) = a . rpi ( t ) + b . rpi ( t + n ) + c . ( datedbrentcrude - 18 . 8 ) + constant ,  where n is 14 , 15 or 16  [ reddish curves ]  r - squared approx 0 . 49  f - stat approx 32  the chart below shows what our projected pllu curve would be given this  equation , and also the three best relations from before which were based upon  current and future rpi :  pllu ( t ) = a . rpi ( t ) + b . rpi ( t + n ) + constant , where n is 14 , 15 or 16  [ greenish curves ]  r - squared approx 0 . 47  f - stat approx 45  comparison of models  as you can see , the two equations differ in the very short - term and very  long - term ; the inclusion of deviations of brent crude leads to short - term  predictions of 3 . 0 % to 3 . 2 % over the next six months . the greenish curves  predict pllu in the range of 2 . 5 % to 2 . 8 % over the next six months .  the curves are then very similar until 2009 , when the models including crude  break - away to the upside , relative to the falling rpi curve . the model based  purely on rpi hugs the rpi curve much more closely in the longer term . this  is only important to the extent that we have large positions beyond 2009  ( which we don ' t ) .  suggestion  what could be useful now is a differently - specified model designed to  forecast only the next 3 months , using auto - regressive or auto - regressive  error terms . this model would be far more accurate in the near - term , and we  could include this information onto the front of this long - term model . this  may be useful , despite the fact that most of our exposure is in future time  buckets .  back - testing  all the models give similar visual and statistical performance over the data  sample used ( based mainly on 1990 s \"\" new paradigm \"\" economy ) .  hopefully we can discuss these and other points later in the tele - conference ;  your ideas on this would be appreciated .  regards ,  anjam  x 35383\",0\n\"Subject: lets meet and greet !  hello everyone :  since we have so many new employees , vince thought it would  be a good idea for the research group to have an offsite social  so that we might get to know each other better and to celebrate  a great first half !  when : tuesday , july 11 th  where : ninfa ' s across the street .  time : 5 : 30 pm - 7 : 30 pm  what : snacks , drinks and fellowship  more to follow - mark your calendars !  shirley\",0\n\"Subject: invitation for you from rice university : the national forum on  corporate finance  mark ,  i left you a message regarding the national forum on corporate finance  at rice .  they would be delighted if you could serve as a panel member  at this conference .  here are the coordinates of the professor at rice who  is in charge . i would appreciate if you could call him  and let him know if you can attend .  thanks .  vince  prof . david ikenberry  jones graduate school of management  rice university  713 - 348 - 5385\",0\n\"Subject: thomas knudsen  all  i ' ve been informed by thomas knudsen that he no longer wishes to pursue his  application to join our research group .  steve\",0\n\"Subject: re : asian option for pavel  stinson ,  let ' s talk about it . it seems like an open personality clash developing  for the first time in the history of the group .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 05 / 02 / 2001  03 : 12 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  zimin lu  05 / 02 / 2001 01 : 41 pm  to : paulo issler / hou / ect @ ect  cc : ( bcc : vince j kaminski / hou / ect )  subject : re : asian option for pavel  our convention is whoever finalizes the model should write the  documentation . it does not make sense  to write one when changes are anticipated . you have been working on this  almost a year , it never  strikes you that we need a documentation ?  i created exotica . xll , does that also give you an excuse not working on  exotica documentation ?  zimin  paulo issler  05 / 02 / 2001 11 : 52 am  to : zimin lu / hou / ect @ ect  cc : tai woo / enron @ enronxgate @ enron , pavel zadorozhny / enron @ enronxgate  subject : re : asian option for pavel  i am surprised that we do not have the documentation ready .  i can make that for you . it is not there because you did not put that  together by the time it was created and all the changes i have made did not  required changes on the functionality .  paulo issler  zimin lu  05 / 02 / 2001 11 : 29 am  to : tai woo / enron @ enronxgate @ enron , paulo issler / hou / ect @ ect  cc : pavel zadorozhny / enron @ enronxgate  subject : re : asian option for pavel  tai woo ,  here are the c - codes for the crudeapo . ' sig ' is the spot  volatility meaning the price volatility within the delivery period .  you should consult with pavel for the definition of this \"\" extra \"\"  parameters . we  would like to see the position monitor once you get it running .  we might have some additional suggestions .  paulo ,  why don ' t we have a documentation on crudeapo you worked on ?  i can not find it in exotica help file . please supply that to tai , thanks .  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : tai woo / enron @ enronxgate on 05 / 02 / 2001 09 : 55 am  to : paulo issler / hou / ect @ ect  cc : kara maloney / enron @ enronxgate , zimin lu / hou / ect @ ect  subject : asian option for pavel  this morning , zimin told me that pavel is using a special model in evaluating  his asian option portfolio .  he asked me to talk to you in order to access to the code so that i can see  the difference made to the model .  as i cannot find the doc . describing this model , please tell me what that new  input parameter ' sig ' is .  thanks ,\",0\n\"Subject: joe carson  greg ,  two things i did not manage to mention to you at the meeting on monday .  1 . joe carson . i was very positively impressed by joe carson .  enron badly needs a senior economist of his stature and  experience . he has many contacts in the industry and can represent  enron well . he is very pragmatic and , also , i expect a cool head on old  shoulders .  one negative is that he wants to work out of new york . the tradeoff is  between  maintaining his contacts and working closer with the desks .  2 . tony mends . i think you , or louise , should explore the possibility of  using the skills of tony mends .  tony and i are good friends so i may be biased . i think that he is a very  smart  and efficient person and can contribute a lot to the organization that  relies  on processing huge volumes of information .  vince\",0\n\"Subject: re : willow and pathstar evaluations  mike ,  we are short manpower in london . we shall try to  evaluate the software in houston .  vince  \"\" mike curran \"\" on 04 / 24 / 2001 10 : 03 : 24 am  please respond to \"\" mike curran \"\"  to :  cc :  subject : willow and pathstar evaluations  hi vince -  hope all is well with you .  sharad hasn ' t had time to evaluate our willow tree or monte carlo software  since the middle of last year . is there somebody else that could do it ?  please let me know who i should send the evaluation to .  best regards ,  michael curran  ceo  quantin ' leap limited  piercy house  7 copthall avenue  london ec 2 r 7 nj  tel : + 44 ( 0 ) 20 7562 3450  fax : + 44 ( 0 ) 20 7562 3411  mailto : mcurran @ quantinleap . com  http : / / www . quantinleap . com\",0\n\"Subject: time sensitive : executive impact & influence program survey  * * * reminder * * *  we have not yet received your feedback . your input is  very valuable and to be included in the participant ' s  summary report , it must be received no later than close  of business on friday , february 9 . without your  feedback , the participant may not receive a summary  report or be eligible to attend the program .  * immediate action required - do not delete *  executive impact & influence program  dear vince kaminski ,  as part of the executive impact and influence program ,  each participant is asked to gather input on the  participant ' s own management styles and practices as  experienced by their immediate manager , each direct  report , and up to eight colleagues / peers .  you have been requested to provide feedback for a  participant attending the next program . your input  ( i . e . , a self assessment , if you are a participant in  this program , manager assessment , direct report  assessment , or colleague / peer assessment ) will be  combined with the input of others and used by the  program participant to develop an action plan to  improve his / her management styles and practices . if  you are providing feedback as a manager of the  participant , please note that your feedback will be  identified in the summary report .  it is important that you complete this assessment no  later than close of business on friday , february 9 .  to begin the online administration process , you will  need the following internet address and password ( s ) .  note : if you are providing feedback for more than one  person , each password and participant name is  individually listed below .  open your internet browser e . g . , internet explorer or  netscape navigator , and please type or copy the url  address below into your internet browser ( please do not  go through lotus notes ) :  www . fsddatasvc . com / enron  h 73 m 9 a ( anthony mends )  if you experience technical problems , please call  dennis ward at fsd data services , 713 - 942 - 8436 . if you  have any questions about this process , you may contact  debbie nowak at enron , 713 - 853 - 3304 , or christi smith at  leadership research institute / keilty , goldsmith & company ,  619 - 216 - 0404 .  thank you for your participation .\",0\n\"Subject: request submitted : access request for anita . dupont @ enron . com  you have received this email because you are listed as an alternate data  approver . please click  approval to review and act upon this request .  request id : 000000000012736  approver : stinson . gibner @ enron . com  request create date : 1 / 8 / 01 4 : 28 : 42 pm  requested for : anita . dupont @ enron . com  resource name : \\ \\ enehou \\ houston \\ common \\ research - [ read / write ]  resource type : directory\",0\n\"Subject: re : jeff skilling does msl 50  vince , thank you so much for your generous pledge . please make your check  payable to \"\" national ms society , \"\" and send it to me at eb 5008 a at your  convenience . thanks again , srs  vince j kaminski @ ect  03 / 30 / 2000 09 : 02 am  to : sherri sera / corp / enron @ enron  cc : vince j kaminski / hou / ect @ ect  subject : re : jeff skilling does msl 50  sherri ,  i can pledge $ 2 per mile .  vince  enron north america corp .  from : sherri sera @ enron 03 / 29 / 2000 11 : 13 am  to : j mark metts / na / enron @ enron , dolores fisher / na / enron @ enron , jeffrey  sherrick / corp / enron @ enron , christina grow / corp / enron @ enron , kenneth  lay / corp / enron @ enron , jeff skilling / corp / enron @ enron , joseph w  sutton / enron _ development @ enron _ development , james m  bannantine / enron _ development @ enron _ development , cliff baxter / hou / ect @ ect ,  sanjay bhatnagar / enron _ development @ enron _ development , rick buy / hou / ect @ ect ,  richard causey / corp / enron @ enron , diomedes  christodoulou / enron _ development @ enron _ development , james  derrick / corp / enron @ enron , andrew s fastow / hou / ect @ ect , peggy  fowler / enron @ gateway , mark frevert / lon / ect @ ect , kevin hannon / enron  communications @ enron communications , ken harrison / enron @ gateway , david  haug / enron _ development @ enron _ development , joe hirko / enron  communications @ enron communications , stanley horton / corp / enron @ enron , kurt s  huneke / enron _ development @ enron _ development , larry l  izzo / enron _ development @ enron _ development , steven j kean / hou / ees @ ees , mark  koenig / corp / enron @ enron , rebecca p mark / hou / azurix @ azurix , mike  mcconnell / hou / ect @ ect , rebecca mcdonald / enron _ development @ enron _ development ,  jeffrey mcmahon / hou / ect @ ect , lou l pai / hou / ees @ ees , ken rice / enron  communications @ enron communications , john sherriff / lon / ect @ ect , greg  whalley / hou / ect @ ect , thomas e white / hou / ees @ ees , brenda  garza - castillo / enron _ development @ enron _ development , marcia  manarin / enron _ development @ enron _ development , susan skarness / hou / ect @ ect ,  stacy guidroz / enron _ development @ enron _ development , beena  pradhan / enron _ development @ enron _ development , karen k heathman / hou / ect @ ect ,  sharron westbrook / corp / enron @ enron , molly  bobrow / enron _ development @ enron _ development , rosane  fabozzi / enron _ development @ enron _ development , stephanie  harris / corp / enron @ enron , bridget maronge / hou / ect @ ect , mary  trosper / enron @ gateway , nicki daw / lon / ect @ ect , carol ann brown / enron  communications @ enron communications , dolly henrici / enron @ gateway , ann  joyner / corp / enron @ enron , elaine  rodriguez / enron _ development @ enron _ development , nancy young / enron  communications @ enron communications , cindy stark / corp / enron @ enron , sherryl  stone / enron _ development @ enron _ development , mary e  garza / enron _ development @ enron _ development , maureen mcvicker / hou / ees @ ees ,  joannie williamson / corp / enron @ enron , rosalee fleming / corp / enron @ enron , marsha  lindsey / hou / azurix @ azurix , cathy phillips / hou / ect @ ect , loretta  brelsford / enron _ development @ enron _ development , sue ford / hou / ect @ ect , karen  owens / hou / ees @ ees , dorothy dalton / enron communications @ enron communications ,  lauren urquhart / lon / ect @ ect , pam benson / enron _ development @ enron _ development ,  liz m taylor / hou / ect @ ect , judy g smith @ ees , katherine brown / corp / enron @ enron ,  vanessa groscrand / corp / enron @ enron , cindy olson / corp / enron @ enron , bobbie  power / corp / enron @ enron  cc : danny mccarty / lon / ect @ ect , philippe a bibi / hou / ect @ ect , david w  delainey / hou / ect @ ect , mark e haedicke / hou / ect @ ect , michael  kopper / hou / ect @ ect , john j lavorato / cal / ect @ ect , jere c overdyke / hou / ect @ ect ,  greg piper / corp / enron @ enron , jeffrey a shankman / hou / ect @ ect , richard  dimichele / enron communications @ enron communications , jay  fitzgerald / corp / enron @ enron , jim fallon / hou / ect @ ect , rebecca  carter / corp / enron @ enron , david cox / enron communications @ enron communications ,  tom gros / enron communications @ enron communications , marty sunde / hou / ees @ ees ,  dan leff / hou / ees @ ees , jim crowder / enron communications @ enron communications ,  mary ann long / enron communications @ enron communications , charlene  jackson / corp / enron @ enron , jeremy blachman / hou / ees @ ees , mark s  muller / hou / ees @ ees , michael burke / houston / eott @ eott , john b  echols / hou / ees @ ees , gene humphrey / hou / ect @ ect , drew c lynch / hou / ect @ ect ,  amanda k martin / hou / azurix @ azurix , ted murphy / hou / ect @ ect , mark  palmer / corp / enron @ enron , paula rieker / corp / enron @ enron , rob  walls / enron _ development @ enron _ development , david berberian / enron  communications @ enron communications , scott yeager / enron communications @ enron  communications , stephen barth / enron communications @ enron communications , john  bloomer / enron communications @ enron communications , kenny burroughs / enron  communications @ enron communications , kevin garland / enron communications @ enron  communications , john griebling / enron communications @ enron communications ,  kevin howard / enron communications @ enron communications , kristina  mordaunt / enron communications @ enron communications , everett plante / enron  communications @ enron communications , david reece / enron communications @ enron  communications , james reece / enron communications @ enron communications , rex  shelby / enron communications @ enron communications , claudia johnson / enron  communications @ enron communications , kevin kohnstamm / enron  communications @ enron communications , steve luginbill / enron  communications @ enron communications , jean mrha / enron communications @ enron  communications , brad nebergall / enron communications @ enron communications ,  raymond bowen / hou / ect @ ect , janet r dietrich / hou / ect @ ect , jeff  donahue / hou / ect @ ect , gary hickerson / hou / ect @ ect , vince j  kaminski / hou / ect @ ect , george mcclellan / hou / ect @ ect , julia murray / hou / ect @ ect ,  brian redmond / hou / ect @ ect , colleen sullivan / hou / ect @ ect  subject : jeff skilling does msl 50  well , the bike is inspected , a few training rides have been made , and the  camping gear is being dusted off ( yes , he is actually camping at the  fairgrounds in lagrange ! ) . now all our fearless leader ( and incidentally ,  the national multiple sclerosis society ' s 2000 man of the year ) , jeff  skilling , needs is your help in raising money for ms .  enron ' s msl 50 dream team is bigger than some townships in these parts - over  350 enron employees , led by jeff , will ride from houston to austin under the  enron flag april 15 - 16 , and the team ' s goal is to raise $ 350 , 000 . i am  challenging ( is begging a better word ? ) each of you to pledge a certain  amount per mile - i . e . , $ 1 , $ 2 , $ 5 , it ' s your call . i ' ll even give you a  break on the calculation and use 150 miles , even though jeff swears it ' s  closer to 170 miles ( you know how he is with numbers ) . of course , a flat  pledge is also appreciated . and don ' t forget , enron will match your pledge  to this very worthy cause 1 - 1 .  i hope you will join the team and help enron maintain its status as the top  money raiser of all msl 50 rides in the nation ! thank you for your  consideration . if you have any questions , please don ' t hesitate to call me .  sherri x 3 - 5984\",0\n\"Subject: christmas vacation  shirley ,  i plan to take off the 3 days after christmas for vacation , december 27 , 28 ,  and 29 th . please mark on your calendar . since vasant is out , i checked with  vince and he gave the ok as long as we have coverage .  thanks ,  lance\",0\n\"Subject: re : charles shen  molly ,  it would be tanya .  vince  enron north america corp .  from : molly magee 11 / 09 / 2000 04 : 40 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : charles shen  vince : we need some information to set up this position , and i don ' t think  we ever discussed to whom he would be reporting . is it you ?  molly\",0\n\"Subject: confirmation of your order  this is an automatic confirmation of the order you have placed using it  central .  request number : ecth - 4 s 5 sy 2  order for : amitava dhar  1 x ( compaq armada m 700 $ 3297 )  1 x ( option : m 300 / m 700 convenience base $ 293 )  1 x ( option : carry case for m 700 $ 72 )  1 x ( option : m 300 / m 700 universal ac adapter with power cord $ 59 )  1 x ( option : m 300 / m 700 universal battery charger $ 124 )  1 x ( option : m 700 8 cell li - ion battery $ 149 ) enron it purchasing\",0\n\"Subject: here ' s a list of materials  vince ,  here is my list of collected materials . i would like to get copies of your  papers on risk management as well ( can you send me cites ? )  look forward to talking with you next week .  your friend ,  john  - enron corporation paper . doc  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: united way executive breakfasts  please join us for one of the executive breakfasts at depelchin children \u0001 , s  center , our adopted agency for this year and one of the more than 80  community organizations supported by the united way of the texas gulf coast .  the executive breakfasts will focus on our 2000 campaign . to reach our goal  of $ 2 , 310 , 000 , it will take the active leadership and support of each of  you . we look forward to seeing all of you at one of the breakfasts .  event : executive breakfast  date : thursday , august 3 , 2000 ( hosted by joe sutton )  or  friday , august 4 , 2000 ( hosted by jeff skilling )  time : 7 : 45 - 9 : 00 a . m .  location : depelchin children \u0001 , s center  100 sandman ( close to memorial and shepherd intersection )  transportation : bus will depart from the enron building ( andrews street side )  promptly at 7 : 30 a . m .  note : bus transportation is encouraged , due to limited onsite parking .  however , if you should need to drive , a map will be provided .  please r . s . v . p . no later than wednesday , july 26 to confirm your attendance  and bus transportation to jessica nunez  at 853 - 1918 .\",0\n\"Subject: eprm 2001 houston  please respond to dear speaker ,  i would like to remind you that the room block at the houstonian hotel where  the above mentioned event is being held is about to expire . after friday  20 th april you will not be able to take advantage of the discounted rooms  that are being held there .  please book your accommodation asap to take advantage of this offer .  contact the hotel directly and say that you are part of the risk conference  on 14 & 15 may 2001 . 001 713 680 2626 .  risk waters group do not book accommodation for speakers , you have to  contact them yourself , directly .  if you have not already sent me a short biography and your speaker  checklist , please do so at your earliest convenience .  kind regards  layla o ' leary  event co - ordinator  risk waters group  haymarket house  28 - 29 haymarket  london  swly 4 rx  tel : + 44 ( 0 ) 20 7484 9871  fax : + 44 ( 0 ) 20 7484 9800\",0\n\"Subject: re : various market data charges to the research group for february  2001  julie :  i talked to both maureen and tanya and neither one want this service and  have not been using it .  maureen told me that she told you a year ago that she did not want telerate  ( when she was supporting gary hickerson ' s group on 30 ) . if that is the case ,  we probably need a refund .  let me know if there is anything that can be done about this .  the only person in our group that wants telerate is jason sokolov and i  put in a request for that yesterday . please cancel everything else .  thanks !  shirley  from : julie pechersky / enron @ enronxgate on 04 / 09 / 2001 12 : 33 pm  to : shirley crenshaw / hou / ect @ ect  cc :  subject : re : various market data charges to the research group for february  2001  hi shirley ,  regarding telerate : i can cancel the service for both maurenn and tanya ,  but another name commonly used for the telerate application is bridge or  bridgestation so you may want to just ask the two of them once more to be  sure that they do not use it . just let me know and i will cancel billing  jason can get access to it by submitting an e - request for him for telerate .  when you go into e - request and it is prompting you for what application to  choose , type in the words market data and hit search . telerate will pop up  as an option and within that choose the role basic energy . we will take care  of it from there .  i will also remove hector campos from reuters . was there anyone else being  charged for reuters services that are not needed ?  i will also remove clayton vernon . i do not see anything under the name brad  amoine , is this the correct spelling of his name ? i will also find  out where shalesh ' s charges should be moved to .  thanks for updating us and let me know if there is anything else .  julie  - - - - - original message - - - - -  from : jackson , clifford  sent : wednesday , april 04 , 2001 1 : 44 pm  to : crenshaw , shirley  cc : pechersky , julie  subject : re : various market data charges to the research group for february  2001  hi shirley . i ' ve copied this to julie pechersky , who maintains the market  data database , and will be able to make the user changes you request . she ' ll  also be able to tell you how / when telerate can be enabled for mr . sokolov .  we get the billing data from her , so once it is correct there , it will be  billed correctly .  cliff jackson  - - - - - original message - - - - -  from : crenshaw , shirley  sent : wednesday , april 04 , 2001 1 : 31 pm  to : jackson , clifford  cc : kaminski , vince  subject : various market data charges to the research group for february 2001  clifford :  in reviewing our february eis billing summary for co # 0413 , cc # 107043 ,  i have several questions .  telerate : ( february charges : $ 3 , 032 , 35 )  i polled the group and only one person has asked for telerate and he is  not shown being charged for it . that is jason sokolov . he would like to  have access to telerate . if you could let me know how to get that for him .  the largest percent of the telerate charges appear to be for maureen  raymond , who says that she does not use telerate . could she be accessing  some data that she does not know is telerate ? please let me know . if there  are individual accounts for telerate the only one we need is for jason  sokolov ,  unless maureen ' s charges are for something that she does not know is telerate .  tanya tamarchenko does not need telerate and she has the second largest  percentage of the charges . anyway , the only telerate subscription we need is  for jason sokolov .  reuters : ( february charges : $ 405 . 96 )  no one in research uses reuters . i believe most of the charges are for  hector  campos who used it when he was on the trading desk . when he rotated into the  research group he did not need it any longer , but is still being billed for  it . please  remove from the research cost center .  the following individuals are no longer with enron or no longer with research  and their accounts should be removed from the research cost center .  clayton vernon no longer with the research group remove his lim / lim / excel  and lim core charges from the research cost center  brad amoine no longer with enron remove his lim / lim / excel and lim core  charges from the research cost center  shalesh ganjoo no longer with the research group remove his lim and lim core  charges from the research cost center  i hope this is not too confusing !  please advise .  thanks !  shirley crenshaw\",0\n\"Subject: meeting with mr . sud  rebecca ,  as we had spoken on the phone , i met with mr . kk sud , a retired secretary in  the govt . of india yesterday . this meeting was arranged at vince ' s request ,  since vince had been approached by mr . sud ' s son who is a student at rice  ( where vince teaches a course ) . the younger mr . sud had wanted someone at  enron to meet with his father who was visiting houston , and is currently an  advisor ( post retirement from the government ) to the prime minister ' s office .  this was my first meeting , and i have no background check on the person .  however , the meeting was interesting , and mr . sud conveyed to me in  confidence that the indian govt . is very interested in solving the dabhol  issue . he also conveyed that a decision is being made in the direction of  ntpc buying all the power from dabhol , but that this was still under wraps .  i have no way of judging the genuineness of this person , but he claimed to  have been secretary in the ministry of defence for some 16 years , which is a  very important post in india . the information he was conveying seemed so  important that vince and i decided to update you on the same by phone this  morning .  mr . sud is leaving houston on monday so , as discussed , i will see if he can  meet with you on saturday morning .  regards ,  sandeep .\",0\n\"Subject: re : resco database and customer capture  steve :  osman has been working on setting up this meeting and its agenda . i already  informed john henderson about this as he is the main person from resco . both  osman and i will be involved from the research modeling angle . osman will  contact you today regarding this .  thanks ,  krishna .  vince j kaminski  04 / 11 / 2000 05 : 27 pm  to : steven r meyers / hou / ees @ ees  cc : vince j kaminski / hou / ect @ ect , pinnamaneni krishnarao / hou / ect @ ect  subject : re : resco database and customer capture  steve ,  krishna from my group . krishna can also advise you on resco participation .  vince  steven r meyers @ ees  04 / 11 / 2000 04 : 51 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : resco database and customer capture  vince ,  i was not going to be involved directly in the meeting . who from either your  group or from resco marketing should participate ?  thanks ,  steve  vince j kaminski @ ect  04 / 11 / 2000 08 : 27 am  to : steven r meyers / hou / ees @ ees  cc : pinnamaneni krishnarao / hou / ect @ ect , vince j kaminski / hou / ect @ ect  subject : re : resco database and customer capture  steve ,  it makes sense to meet with abacus . retail marketing is very data intensive .  if you set up a meeting with them ,  please , let me know .  vince  steven r meyers @ ees  04 / 11 / 2000 08 : 17 am  to : timothy edward vail / hou / ees @ ees  cc : vince j kaminski / hou / ect @ ect  subject : resco database and customer capture  tim ,  i hope things are going well in resco . i think somebody from resco ( or  research ) may be interested in the email i received below from brad davids .  brad is now working at abacus who works with residential customer patterns as  well as predictive modelling . he ' s going to be here the 25 and 26 of this  month . i ' m not sure who is responsible for resco marketing , but i think they  would find this interesting . who should i send this to ? please let me know  if anybody in resco may have any interest .  thanks ,  steve  ps : vince , simply an fyi since they do focus on modelling and research .  - - - - - - - - - - - - - - - - - - - - - - forwarded by steven r meyers / hou / ees on 04 / 11 / 2000  08 : 14 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  bradley davids on 04 / 10 / 2000 08 : 35 : 32 pm  to : \"\" ' steven . r . meyers @ enron . com ' \"\"  cc :  subject : re : possible meeting ?  steve :  i ' ll see if i can get in on the 25 th . . . will let you know , but i think  it ' ll work .  just to give you a very brief overview so you can think about who might be  interested , abacus has the largest transactional database of consumer buying  behavior in the world ( 89 million us households , 3 billion + purchases ) ,  along with sophisticated modeling capabilities to help predict customer  response to various offers at the household level . given the critical need  to reduce customer acquisition costs in retail energy markets , we believe  that our data and modeling can help energy retailers target their direct  marketing efforts toward the residential customers most likely to respond to  whatever the offer is - - improving the efficiency of mailings and other  promotional campaigns ( so there is an efficiency angle , see ! )  because our data allow the modeling of future buying behavior based on  actual purchases , our results tend to be significantly more predictive than  demographic - based models . so far , the the response from utilities and \"\" new  entrants \"\" i ' ve been talking to so far has been quite positive , and we have  some tests of our data underway , but we ' re interested in talking to as many  players in the market as possible as we develop specific products to meet  utility needs .  i can provide more background if desired to whoever might be interested , but  i guess the key immediate question is whether it might be worthwhile to  arrange a short meeting sometime on the 25 th of april with whoever at enron  might have interest in hearing what we ' re up to , and ( most importantly )  listening to what your data needs might be as you enter new markets .  thanks very much for any help . . . i look forward to catching up and  hearing how things are going for you .  regards ,  brad davids  303 - 410 - 5531  - - - - - original message - - - - -  from : steven . r . meyers @ enron . com [ mailto : steven . r . meyers @ enron . com ]  sent : monday , april 10 , 2000 12 : 13 pm  to : brad . davids @ abacus - direct . com  subject : re : possible meeting ?  it ' d be great to meet on the 25 th in the afternoon . i have a flight in the  evening . i ' m interested in hearing about life at abacus . i too have heard  that enron is getting back into the residential market . what type of  database do you have ? i might be able to find somebody for you to talk  with here .  - steve  bradley davids on 04 / 10 / 2000 12 : 04 : 00 pm  to : \"\" steve meyers ( e - mail ) \"\"  cc :  subject : possible meeting ?  steve :  sorry we ' ve been unable to hook up . . . i can probably get down there on  the 25 th , if you ' re going to be in town that afternoon ? would love to catch  up - - both on how things are going with ees and tell you about my new life .  also , i ' m hearing rumors that enron is about to get back into the  residential market in a big way - - you know anything about that ? anybody i  should talk to there about my huge database of consumer buying behavior ?  thanks - - looking forward to connecting . . . i ' ll be travelling most of this  week , but you can leave a vm and let me know when i can call you , or try me  on the cell at 303 - 886 - 3458 .  best ,  brad davids  bradley j . davids  associate vice president , utilities  abacus direct , a division of doubleclick , inc .  11101 west 120 th avenue  broomfield , co 80021 usa  e - mail brad . davids @ abacus - direct . com  tel 303 . 410 . 5531  fax 303 . 410 . 5300  www . doubleclick . net  www . abacus - direct . com  ( see attached file : c . dtf )\",0\n\"Subject: off duty days  good morning all :  most of you do this , but just in case , please advise me of any off duty  days , i . e . vacation , sick , personal , jury duty , etc . as soon as possible ,  either before or as soon as you take them .  also , i am making new wallet info cards and if you have not sent me  your home telephone number , or if you have a new one , please let  me know as soon as possible .  thanks and have a great day !  shirley\",0\n\"Subject: inflation model review - final version  this morning a draft of rac ' s inflation model review was discussed with anjam .  all points as presented in the draft were agreed upon .  also , four new points were amended as suggested by anjam :  the rpi short - term model could be improved by a combination of the  information available from the gilts and rpi swaps market .  add : \"\" this is an issue across all enron ' s econometric models . \"\" to section  pllu and dzcv short - term , first point .  to implement some of the suggestions requires additional statistical and  programming resources .  additionnal human resources with advanced econometric modelling skills are  required given the current workload of the european research team .  please find the final version attached .  please note that the short term solution has been to freeze the curve .  the medium to long term solution involves futher research towards a sounder  and more efficient model .  given the current workload of the european research group , it is necessary to  hire a new member of staff with strong economics and econometrics background  to address this issue properly .  rac will communicate to the financial trading group and risk management the  actions to take as the curve will be frozen .  thanks ,  rodrigo\",0\n\"Subject: re : enron case study  - - - - - original message - - - - -  from : cindy . derecskey @ enron . com [ mailto : cindy . derecskey @ enron . com ]  sent : wednesday , october 25 , 2000 11 : 23 am  to : j _ martin @ baylor . edu  cc : christie . patrick @ enron . com ; vince . j . kaminski @ enron . com  subject : enron case study  importance : high  good morning mr . martin ,  i would like to introduce myself . i currently work with christie patrick  and michael b rosen in the enron university affairs department .  in recent discussions with christie , she has suggested that i liaise with  you and our management in preparation for your and vince kaminski ' s case  study . christie has forwarded recent emails sent by you suggesting a few  convenient times that work with your schedule . i will work with our  management and do my best to schedule one hour time slots for interviews  that fit with your outline .  initially , i will schedule interviews with : ken lay - chairman and ceo ,  jeff skilling - president and coo , and andy fastow - cfo . if you feel that  you may need to speak with additional management , we will definitely try to  work something out the same day , so you don ' t have to travel back here . i  will forward your project outline to the aforementioned participants once  the interviews are scheduled . do you anticipate drafting specific  questions ? if so , i would greatly appreciate a copy when convenient .  i greatly look forward to working with you and i hope that we can touch  base very soon .  regards ,  cindy derecskey  enron university affairs  ( 713 ) 853 - 5670\",0\n\"Subject: change - video to teleconferences - enron  fyi  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 16 / 2001  10 : 06 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  fap on 02 / 16 / 2001 08 : 35 : 22 am  to : clay degiacinto , deepa mallik  , dennis feerick  , heather thorne  , jack rejtman  , jason cummins  , kim whitsel  , nicholas levitt  , omar bassel  , ram vittal , steve  lessar , thomas  , tulika bhalla ,  vincent chen  cc : fap , \"\" ' vkamins @ enron . com ' \"\"  , \"\" ' patterm @ wharton . upenn . edu ' \"\"  subject : change - video to teleconferences - enron  3 / 1 shdh 215  3 / 22 shdh 215  3 / 29 shdh 215  please note that the remaining videoconferences scheduled with enron have  been changed to teleconferences due to the difficulties we have experienced .  the host has agreed and we will , therefore , continue with teleconferences in  the same locations / dates as noted above .  any questions , please contact the fap office .  thanks ,  donna\",0\n\"Subject: christmas - near  good morning all . we apologize that we are not going to be able to have  our holiday party before the first of the year . we wanted to use the scout  house in west university like we did last year and it was not available .  vince suggested that with the move and a lot of people taking vacation that  we wait until after the first of the year . this way you can take advantage  of  \"\" after christmas sales \"\" for your gift !  just remember whose name you have and we will schedule an \"\" offsite \"\"  after the first of the year .  thanks !  shirley  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 12 / 13 / 99  09 : 23 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  kevin g moore  12 / 13 / 99 08 : 58 am  to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , grant  masson / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , maureen  raymond / hou / ect @ ect , pinnamaneni krishnarao / hou / ect @ ect , zimin  lu / hou / ect @ ect , mike a roberts / hou / ect @ ect , samer takriti / hou / azurix @ azurix ,  amitava dhar / corp / enron @ enron , joseph hrgovcic / hou / ect @ ect , alex  huang / corp / enron @ enron , kevin kindall / corp / enron @ enron , osman  sezgen / hou / ees @ ees , tanya tamarchenko / hou / ect @ ect , vincent tang / hou / ect @ ect ,  ravi thuraisingham / hou / ect @ ect , paulo issler / hou / ect @ ect , martin  lin / hou / ect @ ect , ross prevatt / hou / ect @ ect , michael sergeev / hou / ect @ ect ,  patricia tlapek / hou / ect @ ect , roman zadorozhny / hou / ect @ ect , martina  angelova / hou / ect @ ect , jason sokolov / hou / ect @ ect , shirley crenshaw / hou / ect @ ect  cc :  subject : christmas - near  hello everyone ,  the pulling of names are completed .  shirley will inform you as to when we will make exchanges .  thanks  kevin moore  - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 12 / 13 / 99 08 : 50  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  kevin g moore  12 / 10 / 99 08 : 28 am  to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , grant  masson / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , maureen  raymond / hou / ect @ ect , pinnamaneni krishnarao / hou / ect @ ect , zimin  lu / hou / ect @ ect , mike a roberts / hou / ect @ ect , samer takriti / hou / azurix @ azurix ,  amitava dhar / corp / enron @ enron , joseph hrgovcic / hou / ect @ ect , alex  huang / corp / enron @ enron , kevin kindall / corp / enron @ enron , osman  sezgen / hou / ees @ ees , tanya tamarchenko / hou / ect @ ect , vincent tang / hou / ect @ ect ,  ravi thuraisingham / hou / ect @ ect , paulo issler / hou / ect @ ect , martin  lin / hou / ect @ ect , ross prevatt / hou / ect @ ect , michael sergeev / hou / ect @ ect ,  patricia tlapek / hou / ect @ ect , roman zadorozhny / hou / ect @ ect , martina  angelova / hou / ect @ ect , jason sokolov / hou / ect @ ect , shirley crenshaw / hou / ect @ ect  cc :  subject : christmas - near  goodmorning ,  things went well on yesterday with names being pulled .  here is a list of people who have to pull a name .  stinson gibner  samer takriti  ravi thuraisingham  martin lin  alexios kollaros  shirley crenshaw  let ' s celebrate at work with each other making the last christmas in 1999 -  great !  reminder : if you feel you will be unable to attend the exchanging of the  gifts , please do not let that  stop you from participating .  each persons name has been entered ; can you guess who has your name ?  we have a gift for you . so if you can not attend for any reason please know  that  you are included and your gift will be here when you return .  wishing all a merry christmas ,  and a good kick - off to happy holidays .  thanks  kevin moore  - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 12 / 10 / 99 06 : 40  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  kevin g moore  12 / 08 / 99 07 : 47 am  to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , grant  masson / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , maureen  raymond / hou / ect @ ect , pinnamaneni krishnarao / hou / ect @ ect , zimin  lu / hou / ect @ ect , mike a roberts / hou / ect @ ect , samer takriti / hou / azurix @ azurix ,  amitava dhar / corp / enron @ enron , joseph hrgovcic / hou / ect @ ect , alex  huang / corp / enron @ enron , kevin kindall / corp / enron @ enron , osman  sezgen / hou / ees @ ees , tanya tamarchenko / hou / ect @ ect , vincent tang / hou / ect @ ect ,  ravi thuraisingham / hou / ect @ ect , paulo issler / hou / ect @ ect , martin  lin / hou / ect @ ect , ross prevatt / hou / ect @ ect , michael sergeev / hou / ect @ ect ,  patricia tlapek / hou / ect @ ect , roman zadorozhny / hou / ect @ ect , martina  angelova / hou / ect @ ect , jason sokolov / hou / ect @ ect , shirley crenshaw / hou / ect @ ect  cc :  subject : christmas drawing - near  ho ! ho ! ho ! merry christmas ,  on thursday we will pull names .  once again , this is so we may share  in the christmas spirit and show our appreciation  for one another .  we will then join and exchange gifts on a later date . . . . .  stay tuned . . . . . . . . . . . . . . . . . .  if for some chance you will not be present on thursday ,  feel free to stop by my desk and pull your name today .  eb 3130 a x 34710  join in the fun  and remember ,  keep it  simple  thanks  kevin moore  - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 12 / 08 / 99 06 : 55  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  kevin g moore  12 / 07 / 99 09 : 40 am  to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , grant  masson / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , maureen  raymond / hou / ect @ ect , pinnamaneni krishnarao / hou / ect @ ect , zimin  lu / hou / ect @ ect , mike a roberts / hou / ect @ ect , samer takriti / hou / azurix @ azurix ,  amitava dhar / corp / enron @ enron , joseph hrgovcic / hou / ect @ ect , alex  huang / corp / enron @ enron , kevin kindall / corp / enron @ enron , osman  sezgen / hou / ees @ ees , tanya tamarchenko / hou / ect @ ect , vincent tang / hou / ect @ ect ,  ravi thuraisingham / hou / ect @ ect , paulo issler / hou / ect @ ect , martin  lin / hou / ect @ ect , ross prevatt / hou / ect @ ect , michael sergeev / hou / ect @ ect ,  patricia tlapek / hou / ect @ ect , roman zadorozhny / hou / ect @ ect , martina  angelova / hou / ect @ ect , jason sokolov / hou / ect @ ect , shirley crenshaw / hou / ect @ ect  cc :  subject : christmas drawing - near  hello everyone ,  we would like for christmas this year that the research group pull names ,  as a way of sharing in the spirit of christmas , and as appreciation for one  another .  we want to keep it simple so the gift should be less than twenty - dollars .  please everyone participate , your name is already entered .  i will return with more info . later . . . . . . . . . . .  thanks  kevin moore  let ' s have a wonderful christmas at work .\",0\n\"Subject: my departure from enron  dear all ,  i have decided to attend carnegie mellon ' s computational finance program for  the  2001 - 2002 academic year . the program starts on may 14 th .  unfortunately due to the quick arrival of the starting date , my last day at  enron will  have to be friday , april 13 th 2001 .  i have really enjoyed my last 10 months here at enron which i ' ve spent with  the  research group .  thank you .  - hector\",0\n\"Subject: your approval is requested  thank you\",0\n\"Subject: a basic idea of price - offer matching clauses  vince -  here is the basic idea i was alluding to :  suppose a car dealer promised to \"\" match any advertised price . \"\" then his  competitor would feel the need to respond in kind . and so on , until all  dealers advertised they would \"\" match any advertised price . \"\" now , consider one  of these dealer ' s decision to perhaps lower his prices . if he does so ,  everyone will immediately match his price , so his market share will remain  unchanged , at whatever it was before , but his revenues ( and all other dealers  as well ) would be lowered by the amount of his price reduction . so , the  dealer rationally decides not to lower his prices to try to sell more cars .  now , suppose a limited partnership , where the partners contract to \"\" control \"\"  who they are in business with , by putting a \"\" right of first refusal \"\" clause  into the partnership ' s papers , whereby any partner wishing to sell his  interests must offer the remaining partners the right to match any offer the  partner received from outside for his shares . now , suppose you are an  outsider , considering doing your due diligence in the thought you might want  to buy into the partnership . you know if your offer is a \"\" good \"\" one from your  perspective , offering you the prospects of a fair rate of return , the  existing partners will match it , and you will get nothing in the deal but you  will have paid , from your own pocket , for your due diligence . conversely , if  you offer too much for the shares , then the other partners will not match  your offer and you will then realize you overpaid . in neither case can you  credibly assume you know more about the business than do the current  partners . so , you ( basically ) don ' t make an offer . so , a partner ' s shares  are seriously devalued by his partners having the right to match any offers  he receives for them . the \"\" right of first refusal \"\" clause precludes  economically efficient rebalancing of portfolios by rendering the shares  ( essentially ) illiquid .  clayton\",0\n\"Subject: re : march real options conference  >  this is a draft of what i was thinking of presenting . i was not planning to  go over any specific options or opas ( these are covered by confidentiality  clauses and i have to be careful from a competitive standpoint ) but to give  the audience a few of the \"\" real world \"\" applications and challenges . i  welcome any thoughts or comments .  gary  > - - - - - - - - - -  > from : peter tufano [ smtp : ptufano @ hbs . edu ]  > sent : friday , february 18 , 2000 4 : 56 pm  > to : vkamins @ ect . enron . com ; gljackson 2 @ tva . gov  > subject : re : march real options conference  >  > dear vince and gary ,  >  > we are all speaking at the march real options session in ny . my work in  > real options in the energy field has come , to a large part , from my  > casewriting in your two organizations , so i feel that we should probably  > allocate more time toward your presentations and less to mine . while we  > have a two hour block among the three of us , i think we can freely  > re - arrange things to produce the best result . would you two like to  > schedule a brief conference call to coordinate our talks ? i am free  > virtually all of next wednesday 2 / 23 , perhaps we could talk at 10 am ( est )  > or 2 pm ( est ) ? i am happy to arrange the call , if you send me your phone  > numbers . thanks .  >  > peter tufano  >  >  > - - - - - - - - - - - - - - - - - - - - - - - - - - -  > prof . peter tufano  > harvard business school  > morgan hall 377  > soldiers field  > boston , massachusetts 02163  > phone : ( 617 ) 495 - 6855  > fax : ( 617 ) 496 - 6592  > email : ptufano @ hbs . edu  > http : / / www . people . hbs . edu / ptufano  >  - real options valuation in the new economy . ppt\",0\n\"Subject: re : full version  i ' ll have a look !  i haven ' t much time , but can certainly  get you a quick reaction , at least !  best , darrell  > x - lotus - fromdomain : ect  > from : \"\" vince j kaminski \"\"  > to : duffie @ stanford . edu  > date : thu , 10 aug 2000 14 : 04 : 47 - 0500  > subject : full version  > mime - version : 1 . 0  > content - disposition : inline  > x - uidl : 9 fef 7462 afa 5 d 4 ee 6 co 4 c 9 co 2 df 71 b 25  > x - keywords :  >  >  >  > darrell ,  >  > grant just alerted me that i sent you only part of the text .  >  > here is the full chapter with an aged version of gran ' t part .  > what i sent you represents an update of his contribution .  >  > sorry for that .  >  > vince  >  > ( see attached file : volo 720 . doc )  darrell duffie  mail gsb stanford ca 94305 - 5015 usa  phone 650 723 1976  fax 650 725 7979  email duffie @ stanford . edu  web http : / / www . stanford . edu / ~ duffie / \",0\n\"Subject: pro opticus  good morning all :  below is an email from kevin sweeney inquiring about a software demo that  he thought might have been in our group . if anyone had this demo , please  let vince know .  thanks !  shirley  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 11 / 06 / 2000  05 : 10 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  kevin sweeney  10 / 23 / 2000 06 : 53 am  to : vince j kaminski / hou / ect @ ect  cc : kara maloney / na / enron @ enron , mario de la ossa / na / enron @ enron , matt a  brown / hou / ect @ ect  subject : pro opticus  vince ,  i understand that you or someone in your group had a demo from the above  group last friday . i was wondering if this was part of a push to bring more  options ' analytics to the traders ' desks , and if so , if you could explain  what that effort looks like ? one of the global markets traders , mario de la  ossa also had a look at the software as he has used it in the past .  thanks ,  kevin\",0\n\"Subject: spring 2001 energy finance conference participation  louise ,  would you consider being a keynote speaker at this conference ( feb 22  evening ) ?  the conference will be held in austin .  we have a very good relationship with ut and we are helping them to organize  this conference .  i shall be glad to provide you more information about the event .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 11 / 02 / 2000  02 : 52 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" ehud i . ronn \"\" on 11 / 02 / 2000 10 : 57 : 00 am  to : vince . j . kaminski @ enron . com  cc :  subject : spring 2001 energy finance conference participation  vince ,  as promised , enclosed please find a brief description of the proposed feb .  22 - 23 energy finance conference , suitable for dissemination to your  colleagues :  \"\" as director of the center for energy finance education and research  ( cefer ) , my colleagues and i are planning a practitioner - industry  conference in spring 2001 , feb . 22 - 23 , to discuss four topics : risk  management , deregulation , real options , and international / globalization .  other than the univ . of texas participants and selected academics from  other institutions , we expect most participants at the conference to be  energy practitioners from houston . the conference will begin with a dinner  and address thur . evening , then continue all day fri . \"\"  given the energy - finance focus of the conference , do you believe the  networks topics is sufficiently energy - related ?  best ,  ehud  ehud i . ronn  jack s . josey professor in energy studies  department of finance  mccombs school of business  university of texas at austin  austin , tx . 78712 - 1179  voice : ( 512 ) 471 - 5853  fax : ( 512 ) 471 - 5073  internet : eronn @ mail . utexas . edu \",0\n\"Subject: re : confirmation of your order  yes , i am the one that placed it . gwyn told me she would be starting on  march 19 th ? did you not know about it ?  vince j kaminski  03 / 05 / 2001 11 : 35 am  to : shirley crenshaw / hou / ect @ ect  cc :  subject : confirmation of your order  shirley ,  do you know about it ?  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 05 / 2001  11 : 35 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron it purchasing  03 / 05 / 2001 11 : 09 am  please respond to enron it purchasing  sent by : ecthou - domwebl  to : shirley crenshaw / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : confirmation of your order  this is an automatic confirmation of the request you have placed using it  central .  request number : ecth - 4 ujn 5 l  order for : mitra mujica  1 x ( option : 128 mb upgrade for deskpro en 6600 $ 63 )  1 x ( standard desktop $ 905 ) enron it purchasing  * please send all status inquiries regarding this request to :  mailto : receiving & hardware @ enron . com\",0\n\"Subject: re : risk book translation  dear professor kaminski ,  thanks for spending your very valuable time to take trouble to arrange our  contact with the risk  staffs . i will appreciate very much .  masayuki fujita\",0\n\"Subject: fw : research allocations to egm  vince :  can you tell me where to get this info ?  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 25 / 2001 03 : 53 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : becky pham / enron @ enronxgate on 04 / 25 / 2001 10 : 58 am  to : shirley crenshaw / hou / ect @ ect  cc : diane fellers / enron @ enronxgate  subject : fw : research allocations to egm  back in november of last year , you have indicated that 40 % of the 17 . 5 % ( 40 % of 17 . 5 is 7 % ) that we are allocating to egm should be billed to gary hickson ' s group . gary is asking for further broken down of this 40 % to his world . can you check with vince to see what portion of the 7 % should be charged to equity trading , rate & currency trading , agricultural trading & origination and convertible trading ? and can i get this information back by the end of this week because we are going to start closing on friday . if you have any questions , call me . thanx .  - - - - - original message - - - - -  from : khoja , sayed  sent : wednesday , april 25 , 2001 10 : 17 am  to : pham , becky  subject : research allocations to egm  becky ,  i have attached your original emails below . can you provide further break out of the 40 % allocation to gary hickerson . gary is responsible for financial trading which includes :  ? equity trading  ? rate & currency trading  ? agricultural trading & origination  ? convertible trading  thanks for your help .  sayed  to : sayed khoja / na / enron @ enron  cc :  subject : re : research allocation  - - - - - - - - - - - - - - - - - - - - - - forwarded by becky pham / hou / ect on 11 / 02 / 2000 03 : 00 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  to : becky pham / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : research allocation  becky ,  i gave the % % for egm to shirley . i assume she communicated this info to you already .  i assume egm includes f / x - i / r ( gary hickerson ) , weather , insurance ( jere overdyke ) ,  oil trading and coal .  for calme i don ' t have any info . let ' s split the cost evenly .  vince  to : shirley crenshaw / hou / ect @ ect , vince j kaminski / hou / ect @ ect  cc :  subject : research allocation  shirley ,  grm is now with egm group . egm wants to verify that the 17 . 5 % we are going to allocate to grm is for the insurance , jere overdyke group . egm seems to think that their weather , mark tawney group , is receiving support from research . also , can we break out the support for calme ? calme is going to split into 3 bus and i am trying to determine who i need to bill for research supports . if you have any questions , call me . thanx .  to : sayed khoja / na / enron @ enron  cc :  subject : re : research allocation  - - - - - - - - - - - - - - - - - - - - - - forwarded by becky pham / hou / ect on 11 / 02 / 2000 02 : 47 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  to : becky pham / hou / ect @ ect  cc :  subject : re : research allocation  becky :  vince said to allocate it as follows :  gary hickerson 40 %  jeff shankman  weather 20 %  insurance 30 %  oil 5 %  coal 5 %  hope this helps !  shirley  to : shirley crenshaw / hou / ect @ ect , vince j kaminski / hou / ect @ ect  cc :  subject : research allocation  shirley ,  grm is now with egm group . egm wants to verify that the 17 . 5 % we are going to allocate to grm is for the insurance , jere overdyke group . egm seems to think that their weather , mark tawney group , is receiving support from research . also , can we break out the support for calme ? calme is going to split into 3 bus and i am trying to determine who i need to bill for research supports . if you have any questions , call me . thanx .\",0\n\"Subject: next eprm article  hi vince  the next article is due by the end of the week - apologies for the lateness .  could you have a look at the attached draft and let us have your comments in  the next couple of days .  thanks  les .  - eprm _ 08 _ analytical _ pricing . zip\",0\n\"Subject: re : a resume for john lavorato  thanks , vince . i will get moving on it right away .  molly  vince j kaminski  02 / 21 / 2001 05 : 55 pm  to : molly magee / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : a resume for john lavorato  molly ,  please , make arrangements for the interview with this candidate for  a trading position . interviews with john lavorato , jeff shankman ,  gary hickerson , stinson gibner .  i talked to him in new york and he is considering  other opportunities , so we have to act fast .  i think john will like him more than punit .  thanks\",0\n\"Subject: karthik rajan  i spoke with karthik this morning about our offer , and answered some  additional questions that he had . he has accepted our offer , but with one  additional request . he would now like for us to ship his car . i asked him  why he couldn ' t drive it down here , and he said that it was too old . i am  going to check with relocation for an approximate cost and will get back to  you . . . .  thanks ,  molly  x 34804\",0\n\"Subject: re : fas 133 offsite  zimin lu will also be attending from research . he will be responsible for a  lot of the options modeling that may be required as part of the fas 133  process .  vasant  from : paige b grumulaitis 02 / 08 / 2000 10 : 17 am  to : vasant shanbhogue / hou / ect @ ect  cc :  subject : fas 133 offsite  this is the offsite i was referring to . this is for enron contracts that  apply not customer ' s issues or product design . please let me know who we can  get to help us along the way .  - - - - - - - - - - - - - - - - - - - - - - forwarded by paige b grumulaitis / hou / ect on 02 / 08 / 2000  10 : 14 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron north america corp .  from : donna jones 02 / 07 / 2000 05 : 58 pm  to : paige b grumulaitis / hou / ect @ ect , ron baker / corp / enron @ enron , li n  chan / hou / ect @ ect , georgeanne hodges / hou / ect @ ect , mary lynne  ruffer / hou / ect @ ect , jeff nogid / hou / ect @ ect , roger g  leworthy / enron _ development @ enron _ development , james j  brown / aa / corp / enron @ enron , kimberly scardino / aa / corp / enron @ enron , patty  grutzmacher / aa / corp / enron @ enron , donald . l . avant @ us . arthur . andersen . com , nina  nguyen / hou / ees @ ees , sally beck / hou / ect @ ect  cc : dawn rodriguez / aa / corp / enron @ enron , shirley tijerina / corp / enron @ enron ,  renee ingram / hou / ect @ ect , tracey bouillion / aa / corp / enron @ enron , patti  thompson / hou / ect @ ect  subject : fas 133 offsite  enron implementation offsite  doubletree hotel - tba  wednesday , february 16 , 2000  8 : 30 am - 5 : 00 pm  you are invited to an enron implementation offsite to discuss fas 133 . the  session will focus on the development and enhancement of the  post - implementation fas 133 functional processes . we will then further  develop the implementation plan for the detailed development of these  processes and systems requirements . your participation in this stage is  vital , as the final process will impact all of us .  questions regarding content can be directed to paige grumulaitis at x 36271 or  ron baker at x 35562 . please rsvp to donna jones at x 33175 by friday ,  february 11 th so she may have an accurate count for seating and  refreshments .  we look forward to working with you at the offsite .  ron baker & paige grumulaitis\",0\n\"Subject: re : london visit  fyi  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 09 / 28 / 2000  10 : 27 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  09 / 18 / 2000 04 : 38 pm  to : paul . e . day @ uk . arthurandersen . com @ enron  cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect  subject : re : london visit  paul ,  i shall be in london in the beginning of october .  i shall notify you about the timing of my trip later this week .  vince  paul . e . day @ uk . arthurandersen . com on 09 / 18 / 2000 03 : 29 : 50 pm  to : vince . j . kaminski @ enron . com  cc :  subject : re : london visit  i understand this has been cancelled - no problem - life is kind of hectic  here  anyway ! ! why don ' t we try to rearrange next time you ' re over ?  kind regards  paul day  to : paul e . day  cc : vince . j . kaminski @ enron . com , shirley . crenshaw @ enron . com  date : 25 / 08 / 2000 19 : 10  from : vince . j . kaminski @ enron . com  subject : re : london visit  paul ,  thanks for your message . i am in process of  finalizing my plans for the trip to london in the end of  september . i delayed responding to you message till  i had more specific information .  unless there a major change in my schedule , i shall arrive  in london on monday morning ( september 18 ) and leave on  thursday in the evening .  please , let me know what would be convenient time  to meet . you can send me an e - mail message and my secretary  will contact to confirm the date and place of the meeting .  my assistant ' s name is shirley crenshaw and her phone  number is 713 853 5290 .  i look forward to meeting you , tom and julian .  vince kaminski  paul . e . day @ uk . arthurandersen . com on 08 / 25 / 2000 11 : 53 : 02 am  to : vince j kaminski / hou / ect @ ect  cc : tom . o . lewthwaite @ uk . arthurandersen . com ,  julian . leake @ uk . arthurandersen . com  subject : london visit  i understand that you will be in london around 20 september . tom lewthwaite  has  asked me to arrange a meeting between you , tom and julian leake . i understand  that you have met tom and julian before . i would also like to attend - i am  a  manager in our uk financial services practice with responsibilty for enron  from  a uk financial services perspective . we would like to discuss any risk  management concerns that you may have and any internal initiatives with which  we  could assist .  if you are happy to meet on this basis , i would be grateful if you could let  me  know how you to proceed ( whether i should arrange timings with you , your  secretary , someone in london etc ) . you can contact me on + 44 20 7783 7446 ( at  enron ' s london offices ) or on this e - mail address .  kind regards  paul day  * * * * * * * * * * * * * * * * * * * internet email confidentiality footer * * * * * * * * * * * * * * * * * * *  privileged / confidential information may be contained in this message . if you  are not the addressee indicated in this message ( or responsible for delivery  of  the message to such person ) , you may not copy or deliver this message to  anyone .  in such case , you should destroy this message and kindly notify the sender by  reply email . please advise immediately if you or your employer do not consent  to  internet email for messages of this kind . opinions , conclusions and other  information in this message that do not relate to the official business of my  firm shall be understood as neither given nor endorsed by it .  * * * * * * * * * * * * * * * * * * * internet email confidentiality footer * * * * * * * * * * * * * * * * * * *  privileged / confidential information may be contained in this message . if you  are not the addressee indicated in this message ( or responsible for delivery  of  the message to such person ) , you may not copy or deliver this message to  anyone .  in such case , you should destroy this message and kindly notify the sender by  reply email . please advise immediately if you or your employer do not consent  to  internet email for messages of this kind . opinions , conclusions and other  information in this message that do not relate to the official business of my  firm shall be understood as neither given nor endorsed by it .\",0\n\"Subject: time sheets ! ! !  hello everyone !  not very many of you have filled out your timesheet in the excel spreadsheet  if you cannot access the \"\" o \"\" drive . you will need to fill out one by hand  until  you can get access .  whichever way - i need them today ! !  thanks !  shirley\",0\n\"Subject: re : congratulations  vince , thanks for your note . and congratulations backatcha ! i was  thrilled to see your name on the list as well . kristina\",0\n\"Subject: boss ' s day  hey everyone ,  i know you may not be aware that boss ' s day oct . 16 , 2000  we will celebrate as a group in the staff meeting on oct . 19 th ,  with the big boss vince kaminski and all the others , however ,  if you would like to do something special for our boss , please  inform me whereby i can make arrangements .  thanks  kevin moore\",0\n\"Subject: paper  hey vince ,  i understand that alex butler has sent you a copy of the schwartz paper . i  have a copy of my paper attached to this e - mail . it was good to see you  again and i hope you enjoyed your visit to lsu .  sincerely ,  tom arnold  - gopop . pdf\",0\n\"Subject: interview on friday , may 5 th  good morning norberto :  enron corp . research would like you to come in for an informal interview  friday , may 5 , beginning at 1 : 30 pm . following is a tentative schedule :  vasant shanbhogue 1 : 30 pm  vince kaminski 1 : 45 pm  clayton vernon 2 : 00 pm  stinson gibner 2 : 15 pm  tanya tamarchenko 2 : 30 pm  grant masson 2 : 45 pm  please let me know if these times work for you .  thank you !  shirley crenshaw  713 - 853 - 5290\",0\n\"Subject: dhabol  jeff ,  we shall forward to you shortly a copy of the message from sandeep with the  numbers you have  requested . what follows below are the extracts from two recent articles on  the power situation in india  published by the financial times .  the first article describes recent power outage in northern india affecting  millions of people .  one possible line of defense is pointing out to the value of output lost due  to power  shortages . it is obvious that the value of lost production exceeds the cost  of power produced  by the dhabol plant ( expensive as it may be ) . the power cut affected 230  million people .  the second article is enron specific .  vince  asia - pacific : power failure hits north india  financial times ; jan 3 , 2001  by angus donald  tens of millions of people were left without electricity  in northern india  yesterday after a power grid breakdown .  electricity was gradually switched on in some areas and  most parts of the  capital new delhi , with 60 to 70 per cent of supply  expected to be restored  by the end of the day , according to power grid  officials .  the associated chambers of commerce and industry  ( assocham ) , a  leading business organisation , expressed \"\" deep concern \"\"  and called for a  mechanism to prevent future disruption that could  \"\" cripple the economy \"\" .  the power failure across eight indian states , including  new delhi , disrupted  train services , water supplies and the telephone network  and forced  hospitals to switch to emergency generators .  the fault occurred on the northern grid , which provides  electricity for 226 m  people , and affected the states of delhi , haryana ,  punjab , uttar pradesh ,  himachal pradesh , madhya pradesh , rajasthan and jammu  and kashmir .  a breakdown at a sub - station in kanpur in uttar pradesh ,  india ' s most  populous state , caused an overload of power on other  lines , which then  failed as well .  trains stopped running for most of the day and signals  systems were  damaged . new delhi international airport was also  slightly affected before  its own power supply could be engaged .  \"\" we will probe into the reasons for the failure . it is  most likely to be a  technical failure , but we will investigate why it  happened , \"\" suresh prabhu ,  the power minister , was quoted as saying by press trust  of india .  india suffers regularly from power problems because of  lack of funding to  upgrade infrastructure . theft of supplies is also a big  problem . thirty per  cent of the country ' s electricity is stolen , according  to analysts . in new  delhi as much as 50 per cent is stolen .  two years ago , a power failure blacked out uttar pradesh  and delhi for  hours .  assocham issued a statement , saying that increasing  industrial demand  would exacerbate the problems already faced by india ' s  inefficient power  sector . \"\" the slow progress , particularly in  strengthening the transmission  and distribution system , and ever increasing theft will  contribute to  worsening the power supply situation further . \"\"  copyright : the financial times limited  , copyright the financial times limited 2000 . \"\" ft \"\" and \"\" financial times \"\"  are trademarks of the financial times . privacy policy | terms jan 3 , 2001  by khozem merchant  enron , the us energy producer and a constant target of  criticism in india , is  hitting back with a campaign to reverse its image as a  profiteering  multinational .  its \"\" myth and reality \"\" offensive in local newspapers  follows the west indian  state of maharashtra ' s decision to review the tariff it  pays the texas - based  company , whose dollars 2 . 2 bn electricity generating  plant at dabhol is  india ' s biggest single foreign investment .  maharashtra ' s tariff has more than doubled since 1993  and is three times  greater than that charged by other independent power  producers ( ipps ) .  the tariff has risen because of the depreciation of the  rupee against the  dollar and the high but now falling price of naphtha  fuel . the state also pays  a fixed capacity charge of rs 970 m ( dollars 21 m ) a month ,  reflecting the  huge project cost and , controversially , irrespective of  consumption .  a showdown looks inevitable , reminiscent of a clash six  years ago that  damaged india ' s appeal to foreign investors . a former  official of the world  bank , which has criticised the deal , says enron is  emerging \"\" as the east  india company of the 21 st century \"\" - a reference to the  british trader that  colonised key areas of the indian economy in the 19 th  century .  the stand - off is the latest blot on india ' s power  sector . the uk ' s powergen  and cogentrix of the us have quit india recently ,  frustrated by long approval  procedures , inadequate payments mechanisms or because of  higher  returns elsewhere .  \"\" india has lost time and opportunity and has driven  returns down by six  percentage points , \"\" says gerry grove - white , former india  general manager  of powergen , which has sold its 655 mw plant in gujarat  to china light &  power of hong kong .  india ' s national plan for the five years to 2002 says  generating capacity  must rise by 40 , 000 mw to about 120 , 000 mw . but since  1992 , ipps have  added only 3 , 000 mw and 2 , 500 mw remains under  construction . this is  insufficient to support official projections of 6 to 8  per cent economic  growth .  enron was a bellwether of india ' s liberalisation ,  winning fast - track project  approval in the early 1990 s . phase 1 , a 740 mw plant  fuelled by expensive  naphtha came on stream in may 1999 , and phase 2 , a  dollars 1 . 87 bn plant  of 1 , 624 mw capacity that will run on cheaper liquefied  natural gas ( lng ) ,  will be completed this year . only two of seven other  fast - track proposals  have achieved financial closure .  from the outset enron encountered attacks , culminating  in maharashtra ' s  then nationalist government cancelling the project  before renegotiating  terms no less onerous . vilasrao deshmukh , chief minister  of the successor  government , says the power purchase agreement is  unaffordable .  enron , whose attackers also include cultural  chauvinists , wants to maintain  good political relations in a hostile but lucrative  environment . enron views  india as a testing ground for its evolution from a  traditional manager of  power plants to a broad - based trader of commodities ,  such as energy , gas  and bandwidth .  to support these ambitions enron hopes to trade energy  between power  surplus and deficit states , once legislation is passed  this year . it is building  an lng terminal and pipelines to trade imported natural  gas . and it is  laying a 15 , 000 km fibre - optic network to trade bandwidth  space in a country  desperately short of this new economy commodity .  in any event , enron believes it has a watertight  contract . it is supported by  many that believe any subversion of the contract would  confirm investor  perception of maharashtra , india ' s financial and  industrial hub , as an  unreliable destination for investment .  mr deshmukh - who has avoided the language of his  predecessor , which  threatened to \"\" dump dabhol into the arabian sea \"\" - is  under pressure from  radical members of his wobbly coalition . but his options  are limited .  scrapping the project would be ruinous for an  economically troubled state  that would have to compensate shareholders .  maharashtra state electricity board , the local utility  and enron ' s main  client , is obliged to dispatch or \"\" off - take \"\" 90 per cent  of dabhol ' s output . yet  mseb has never honoured these guarantees . its off - take  has averaged 60  per cent since the plant opened and , in effect , mseb has  been paying a lot  more while consuming a lot less power .  one reason off - take is low is because the state ' s tough  new regulator has  told mseb to buy from cheaper sources . enron says the  tariff would be  rs 4 . 02 / kwh if mseb ' s off - take averaged 90 per cent . but  with off - take a  third lower , the average tariff is rs 4 . 94 per unit , and  often higher . in  october , the tariff was rs 6 . 91 per unit , when off - take  was about 49 per  cent . enron says tariffs should come down when phase 2 ,  run on cheaper  lng , starts .  these cost pressures have forced mseb to take up only  half of a 30 per  cent equity option in phase 2 . enron has acquired the  balance and  mandated bankers to find a buyer .  enron ' s difficulties have undermined the appeal of ipps ,  which have failed to  deliver the flood of investments . potential ipps feared  they would never be  paid by state generating boards that have become a  byword for corrupt  management of power .  reform of state electricity boards , whose uneconomic  pricing means  industrial users subsidise poor farmers , as well as  transmission and  distribution ( t & d ) services to check huge theft and  technical losses , is  overdue . \"\" given the limited resources , money would be  better spent on t & d  rather than on new plant , \"\" says oliver blackaby ,  managing director of n m  rothschild in india , which is advising karnataka on the  privatisation of its  distribution network .  for the moment , attention is fixed on enron ' s ability to  satisfy the  competing interests of investors and clients . as sanjay  bhatnagar , chief  executive officer of enron india , said in a recent trade  magazine , one of the  key lessons learned from phase 2 is \"\" having flexibility  to deal with  externalities \"\" .  copyright : the financial times limited  , copyright the financial times limited 2000 . \"\" ft \"\" and \"\" financial times \"\"  are trademarks of the financial times . privacy policy | terms & conditions .\",0\n\"Subject: rodeo  vince ,  it was a pleasure to meet you last week at our rodeo night . i am glad you  could join us .  i am going to fax you the invitation to the houston symphony partners party  that we discussed . i hope you can attend .  keep in touch and let ' s get together for lunch and / or seeing \"\" american  beauty . \"\"  jana phillips  713 - 658 - 9296\",0\n\"Subject: congratulations !  you did again ! i just read about your most recent accomplishment .  congratulations on your promotion ! go vince . . . . go vince . . . go vince . . !  sending warmest regards ,  trang\",0\n\"Subject: re : asian option for pavel  our convention is whoever finalizes the model should write the documentation . it does not make sense  to write one when changes are anticipated . you have been working on this almost a year , it never  strikes you that we need a documentation ?  i created exotica . xll , does that also give you an excuse not working on exotica documentation ?  zimin  paulo issler  05 / 02 / 2001 11 : 52 am  to : zimin lu / hou / ect @ ect  cc : tai woo / enron @ enronxgate @ enron , pavel zadorozhny / enron @ enronxgate  subject : re : asian option for pavel  i am surprised that we do not have the documentation ready .  i can make that for you . it is not there because you did not put that together by the time it was created and all the changes i have made did not required changes on the functionality .  paulo issler  zimin lu  05 / 02 / 2001 11 : 29 am  to : tai woo / enron @ enronxgate @ enron , paulo issler / hou / ect @ ect  cc : pavel zadorozhny / enron @ enronxgate  subject : re : asian option for pavel  tai woo ,  here are the c - codes for the crudeapo . ' sig ' is the spot  volatility meaning the price volatility within the delivery period .  you should consult with pavel for the definition of this \"\" extra \"\" parameters . we  would like to see the position monitor once you get it running .  we might have some additional suggestions .  paulo ,  why don ' t we have a documentation on crudeapo you worked on ?  i can not find it in exotica help file . please supply that to tai , thanks .  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : tai woo / enron @ enronxgate on 05 / 02 / 2001 09 : 55 am  to : paulo issler / hou / ect @ ect  cc : kara maloney / enron @ enronxgate , zimin lu / hou / ect @ ect  subject : asian option for pavel  this morning , zimin told me that pavel is using a special model in evaluating his asian option portfolio .  he asked me to talk to you in order to access to the code so that i can see the difference made to the model .  as i cannot find the doc . describing this model , please tell me what that new input parameter ' sig ' is .  thanks , \",0\n\"Subject: naphtha hedge for 2001  folks ,  i am forwarding this in order for the team to focus on the naphtha issue .  please note that :  as phase ii comes on line , blocks b and c will first have to run on naphtha  for a period of 3 - 6 months  this will hit us some time in 2001 , hence is a more urgent issue than lng ,  which is still a year away  if there are delays in the commissioning of the regas terminal , the period on  naphtha could further prolong  the naphtha market is more volatile than the crude market , and is not as  deep , hence we need to take small positions early on to test the market  dpc board has already approved a risk management policy that allows for  hedging . we may need to look into options that are costless ( selling put and  buying call ) to begin with , and test while only block a is in place .  close coordination will be required on this with the global markets group ,  and i propose someone like anshuman should actually be seconded onto the group  a whole plan on tools to manage the fuel risk need to be worked in close  coordination with the team on the ground  these are just some of my thoughts . with 50 % of the tariff being fuel price  dependent , this is an area that requires close attention .  regards ,  sandeep .  - - - - - - - - - - - - - - - - - - - - - - forwarded by sandeep kohli / enron _ development on  01 / 03 / 2001 10 : 29 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  tushar dhruv @ enron  01 / 02 / 2001 09 : 25 pm  to : neil mcgregor / sin / ect @ ect , sandeep  kohli / enron _ development @ enron _ development , mukesh  tyagi / enron _ development @ enron _ development , pavan . dave @ enron . com , anshuman  cc : marc de la roche / hou / ect @ ect , doug leach / hou / ect @ ect  subject : naphtha hedge for 2001  current level of naphtha prices and the crude futures curve being  backwardated provide an opportune time for dpc to enter into a hedge for all  or a portion of its naphtha requirements for the year 2001 . we ( efi ) would  like to explore this possibility before this situation passes . please  advise . best regards ,  - - tushar\",0\n\"Subject: re : hello  molly ,  kim watson would like us to bring jacob for another interview .  we can do it later this week .  vince  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 05 / 01 / 2001 02 : 22 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : kimberly watson / enron @ enronxgate on 05 / 01 / 2001 09 : 17 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : hello  hi vince ,  if you are still interested in bringing back this gentleman back for another interview , i would very much like to meet with him . sean talked with him when you brought him in a few weeks ago and he thought it would be a good idea for me to meet with him so we can compare thoughts .  thanks , kim .  - - - - - original message - - - - -  from : kaminski , vince  sent : monday , april 16 , 2001 1 : 21 pm  to : watson , kimberly  cc : krishnarao , pinnamaneni ; kaminski , vince  subject : re : hello  kim ,  this is a letter from one of the job applicants who works for pros .  it seems that the system they develop for williams  is more a scheduling system .  would you like to ask him to come back for another interview ,  to get more information out of him ?  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 16 / 2001 01 : 18 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" jacob y . kang \"\" on 04 / 11 / 2001 11 : 18 : 44 pm  to : vince . j . kaminski @ enron . com  cc :  subject : re : hello  dear vince :  it was so nice meeting and talking with you too . i did  not take any pen back , i lost my pen too somewhere in  enron .  as i mentioned to you , after i got my ph . d in 1999 , i  have been working two years as lead scientist and  science manager in energy division at pros revenue  management inc . in houston .  i developed and implemented the mathematical models  for trading optimization system and firm  transportation optimization system .  the trading optimization system becomes the most  popular product in the industry this year . duke energy  just signed the contract to buy this product  yesterday . conoco and williams also signed the  contracts for it . according to pros sales department ,  the potential marketer to buy this product exceeds 15  companies in one or two years .  enron is the ideal place for me to continue my  research and system developing efforts to combine  revenue management with risk management . i am  confident that i can make significant contributions to  enron in this area .  i would like to thank you again for giving me this  opportunity to come to enron for this interview . i am  looking forward to having the opportunity to work in  enron .  sincerely yours  jacob  - - - vince . j . kaminski @ enron . com wrote :  > jacob ,  >  > it was nice meeting you . did take by any chance  > my pen ? if not , i apologize .  >  > vince  >  do you yahoo ! ?  get email at your own domain with yahoo ! mail .  http : / / personal . mail . yahoo . com / \",0\n\"Subject: real option conference  vince ,  i was brought to my attention that an interesting real option conference  is taking place in march 27 - 28 . i would like to attend this conference  if possible .  thanks .  alex\",0\n\"Subject: re : eol phase 2  deal all ,  i have written the option pricing formula for european ( euro ) , american  ( amer ) and asian ( agc ) options .  i have also cited the references for each option . the function names in ( )  are the option models in the  enron exotica options library . you do not have to have outside programmer  to duplicate our work , since we have  constructed and tested these models .  if you have any questions , please let me know .  zimin  vince j kaminski  06 / 30 / 2000 02 : 31 pm  to : michael danielson / hou / ect @ ect  cc : stinson gibner / hou / ect @ ect , zimin lu / hou / ect @ ect , vince j  kaminski / hou / ect @ ect  subject : re : eol phase 2  michael ,  please , contact zimin lu .  vince kaminski  michael danielson  06 / 30 / 2000 01 : 10 pm  to : vince j kaminski / hou / ect @ ect , mike a roberts / hou / ect @ ect  cc : angela connelly / lon / ect @ ect , savita puthigai / na / enron @ enron  subject : eol phase 2  thanks for your help on content for eol phase 2 .  an additional piece of content that we are trying to include in our scope is  an options calculator . this would be an interactive tool to teach less  sophisticated counterparties about options . we would like to collaborate  with someone in research to refine our approach ( and make sure we ' re using  the right formulas ) . who should we contact in research for this ?  attached is a mock - up of what we have in mind . . .  - calculator prototype . ppt\",0\n\"Subject: check out  here is the rfc that was written in 1994 about the internet of 2020 i  mentioned .  i hope you find it as enlightening as i did , and enjoy it as well .  click  here : http : / / info . internet . isi . edu / in - notes / rfc / files / rfcl 607 . txt  mak\",0\n\"Subject: re : amitava is diverted  where does this stand ? we really need amitavas full time focus .  benjamin parsons  27 / 10 / 2000 07 : 50  to : mike mumford / lon / ect @ ect  cc : steven leppard / lon / ect @ ect , bryan seyfried / lon / ect @ ect , nigel  price / lon / ect @ ect  subject : re : amitava is diverted  presumably if the eastern credit reserve issues take lots of his time away  from enroncredit , we could extend his stay for another week ? especially as  it ' s unlikely we could get vasant over in the foreseeable future .  ben  mike mumford  26 / 10 / 2000 18 : 20  to : bryan seyfried / lon / ect @ ect  cc : qlist  subject : amitava is diverted  bryan ,  just fyi - amitava will be diverted for an unspecified portion of his stay  here next week .  the did the initial coding for software / pricing systems used to value the  eastern deal . there are over - riding concerns there i or steve l . can fill  you in on if you like . problem could be monday morning or all week .  we could press for vasant to re - prioritize his time .  any thoughts ? i haven ' t checked with ben about impacts yet . . .  ben ?  mike\",0\n\"Subject: re : congratulations  thanks vince  i was in midland yesterday so i just saw the announcement .  congrats yourself ! !  vince j kaminski  01 / 11 / 2000 10 : 02 am  to : bradford larson / hou / ect @ ect  cc :  subject : congratulations  brad ,  congratulations . well deserved .  vince\",0\n\"Subject: organizational changes  as enron ' s broadband services business grows , we will continue to position  the company to take advantage of the significant opportunities in this market  and meet the needs of our global customers . with that in mind , we ' ve made a  number of changes within the office of the chairman of enron broadband  services aimed at providing a better focus on the key objectives of the  organization .  joe hirko and ken rice , previously co - ceos of enron broadband services , will  continue to jointly manage the strategic direction of the company . joe will  continue as ceo and will be responsible for the primary executive management  of ebs as well as network build - out , bos development , cross - market  capabilities and staff functions . ken will assume the role of chief  commercial officer and will be responsible for developing the commercial  functions of the organization .  in addition , kevin hannon has been named chief operating officer and will be  responsible for the day - to - day operations of ebs . kevin was most recently  ceo of global risk management and , prior to that position , he was president  and coo of enron north america , where he has been instrumental in developing  enron ' s trading and risk management business in gas , electricity and other  emerging markets . greg whalley , president and coo of ena , will again assume  his responsibilities for global risk management .  please join us in congratulating joe , ken , kevin and greg in their new roles .\",0\n\"Subject: re : releasing different versions of vatrfacs code  winston and jin ,  for last half year the following developments were implemented by jin for  vatrfacs code  ( the calibration code for var ) :  1 . weighting the log - returns with exponential decay factor while calculating  correlations ;  2 . calculating factors and correlations for uk curves ;  3 . joint estimation of factor loading for selected groups of commodities ;  4 . alternative method for collecting historical data for correlations  calculation  ( based on fixed contract instead of collecting prompt , prompt + 1 , etc . prices )  in order to release these developments research has to have each version under  clearcase . then we will :  1 . run vatrfacs code in stage environment ( stage has been refreshed  recently ) .  2 . run var code in stage and validate the results .  it is time to start releasing these 4 versions . projects 3 and 4 require some  experimental runs  in stage . a few traders ( in gas , power and liquids markets ) are expecting the  results .  meanwhile the following developments have been suggested by reseach , approved  by risk control ,  submitted to it as spreadsheet prototypes and waiting in line :  1 . volatility blending for intramonth power positions ;  2 . forward volatility smoothing and extracting forward forward volatilities ;  hope we can follow our procedures to make all these developments go smoothly  and efficiently .  tanya .\",0\n\"Subject: re : caida ' metrics ' wg meeting , 2 mar 00 ( fwd )  hi amy , jim irvine ( ebs head of network planning ) and i ( team lead , ebs  research ) will attend the meeting . we will have our assistances ( christine  blair & kristy carnes , respectively ) arrange the trip . we will plan to come  in the night before and return on march 2 , 00 .  also , either vince kaminski ( md and head of enron research ) or stinson gibner  ( vp , enron research ) may also attend . they will let me know shortly if they  plan to attend .  regards ,  ravi .  p . s . our company name has been changed to enron broadband services  kristy , christine please make the appropriate travel arrangements . the place ,  time , etc . are listed .  amy @ sdsc . edu  02 / 24 / 00 07 : 07 pm  to : ravi thuraisingham / enron communications @ enron communications  cc :  subject : caida ' metrics ' wg meeting , 2 mar 00 ( fwd )  hi ravi ,  i wanted to follow up directly with you and see if you or anyone at enron  had any interest in participating in the proposed caida \"\" metrics \"\" working  group meeting ?  please let me know .  amy e . blanchard  caida  % % % % % % % % % % % % %  e - mail : amy @ caida . org  phone : ( 858 ) 534 - 8338  fax : ( 858 ) 534 - 5117  b . wg charters , meeting on 2 mar 00  i believe that we should instead run a single caida working group  on ' network metrics , ' rather than the two proposed earlier . my draft  of its charter is appended below . it focuses on producing educational  material about network measurement , and on developing new metrics - these  were the two areas of greatest interest amongst the caida members .  the wg co - chairs are  sue moon ( sprintlabs ) and brett watson ( mfn / abovenet )  you are invited to attend the first wg meeting .  the agenda is as follows . .  agenda for caida wg meeting on : thursday 2 mar 00  - - - - - - - - - - - - - - - - -  10 am - 4 pm , abovenet , downtown sjc ( see below for details )  - - - - - - - - - - - - - - - - - - - - - - - -  1 . review wg charter  - is it reasonable as set out in the draft ?  - what should be removed or added ?  2 . work through revised charter in detail  - identify the work required for each part  - determine who ' s willing to work on it  - attempt to determine delivery times  3 . discussion of new metrics  - first attempt at making a list of metrics to be considered  4 . anything else ?  location : abovenet is located in the knight - ridder building ,  attached to the fairmont hotel complex . the address is  50 w . san fernando st .  san jose , ca 95113  rsvp : to help us with organising the meeting , please send email to  nevil @ caida . org telling us how many will attend from  your organisation .  cheers , nevil  nevil brownlee visiting researcher  phone : ( 619 ) 822 0893 caida , san diego  caida network metrics working group : draft charter , tue 23 feb 00  goals :  1 education  + faq on what does ' measuring the internet actually mean ? '  - why measure anyway ?  - what can be measured ? how ? where ? by whom ?  - active vs passive , end - to - end vs provider network only ,  application vs transport layer  - rating schemes : provider ' net performance ' pages , internet  ' weather map ' s , keynote , etc .  publish as caida web pages , or maybe as an info rfc  + survey paper on metrics and internet measurement  - current measurement efforts ( surveyor , ripe test traffic ,  amp , iperf , at & t , keynote , skitter , . . . )  - current tools  publish as caida web pages  2 service metrics  + define new metrics  - taxonomy of current metrics ( ippm , rtfm , itu , . . )  - summary of metrics used for current services  - gather information / ideas about new / emerging services ,  especially diffserv - based ones  - make list of new metrics , either to improve measurement of  existing services or to support new ones  [ list of ' metrics ' questions ( appendix a ) goes here ]  + organise experimental implementation / testing of tools  for new metrics  + make recommendations on implementation  - define core set of ' really useful ' metrics  - recommend that caida implement these as a  ' service measurement toolkit '  + publish new metric definitions through ippm or rtfm  + produce document \"\" measurement requirements for hardware / software  vendors . \"\" publish on caida web pages  appendix a : questions from the earlier draft caida wg charters  a . what types of network - and transport - layer metrics are being  used by isps in engineering and operating their networks ?  by customers for verifying service guarantees ?  b . what new services are being ( or are likely to be ) offered , e . g .  diffserv ? is there a need for higher - layer metrics to better  monitor and manage these services ?  c . will these new differentiated transport - and  application - layer services need new metrics ?  d . how can the service metrics be measured in a multi - isp  environment ?  e . how can customers verify these measurements ?  f . what requirements would service measurement introduce for  equipment vendors ?  g . how relevant are specific techniques ( e . g . which flow ) and  points of measurement to specific users ( isp , customer , etc . )  requirements ?  h . how do these metrics relate to network behavior as perceived  by users ? how do they correlate with performance ?  appendix b : background on the ietf working groups  * rtfm wg : realtime traffic flow measurement  rtfm is concerned with passive measurements of two - way traffic flows ,  specified in terms of their end - point attributes . its primary goal was  to produce an improved traffic flow measurement model considering at least the  following needs :  a . wider range of measurable quantities , e . g . those  relating to ipv 6 , and to class of service  b . simpler ways to specify flows of interest  c . better ways to control access to measured flow data  d . strong focus on data reduction capabilities  e . efficient hardware implementation  * ippm wg : ip performance measurement  the ippm wg charter is to develop a set of standard metrics that can  be applied to the quality , performance , and reliability of internet  data delivery services . these metrics will be designed such that they  can be performed by network operators , end users , or independent  testing groups . it is important that the metrics not represent a value  judgement ( i . e . define \"\" good \"\" and \"\" bad \"\" ) , but rather provide unbiased  quantitative measures of performance .  rfcs  framework for ip performance metrics ( rfc 2330 )  metrics :  connectivity ( rfc 2678 ) ,  one - way delay ( rfc 2679 ) , one - way packet loss ( rfc 2680 )  round - trip delay ( rfc 2681 )  i - ds  bulk transfer capacity ( 2 x )  instantaneous packet delay variation  one - way loss patterns  * other wgs  the rmonmib wg is thinking about ' application performance  measurement . ' this is clearly a hard problem ( e . g . does this just  mean response - time measurement , can it be done by passive means , how  should the measurements be presented , etc . ) .  in short  - rtfm provides a good distributed measuring system for traffic  volumes  - ippm has concentrated on transport - layer behaviour of the  current , best - effort internet .  - rmonmib is beginning to consider application - layer measurement \",0\n\"Subject: re : my resume  we ' ll get this offer out today , vince .  molly  - - - - - original message - - - - -  from : kaminski , vince  sent : friday , april 13 , 2001 10 : 03 am  to : molly magee / hou / ect @ enron  cc : kaminski , vince ; crenshaw , shirley ; huang , alex  subject : my resume  molly ,  we would like to bring this student as a summer intern ( the last one ,  we are running out of space ) .  i shall send you another message regarding his proposed dates .  thanks . i hope you have a very happy easter .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 13 / 2001  10 : 03 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  zhendong xia on 04 / 12 / 2001 03 : 58 : 25 pm  to : vince . j . kaminski @ enron . com  cc :  subject : my resume  hi , dr . kaminski :  glad to get your reply . here is my resueme . if you wanna know more  about me , please feel free to contact me . thanks .  zhendong xia  georgia institute of technology  school of industrial and systems engineering  email : dengie @ isye . gatech . edu  dengie @ sina . com  tel : ( h ) 404 - 8975103  ( o ) 404 - 8944318  - cv . doc >\",0\n\"Subject: program attached ; march ny ro conference / participation  confirmation  the current version of the conference program is attached  please confirm your participation as speaker ( and confirm your presentation  title as listed on the attached conference program ) by next tuesday . the  program is about to be sent to the printers next week  please cc your reply also to gordon . sick @ rogroup . com  lenos  - nymarch 2000 conferencetimes . doc  lenos trigeorgis  professor of finance  university of cyprus  dept of business  75 kallipoleos , po box 20537  cy 1678 nicosia cyprus  tel : + 357 2 892261  fax : 339063\",0\n\"Subject: re : ming sit  dennis :  i talked to ming for only short time and am concerned about the cons scott  mentioned . i would like to know what your assessment is like . also , i would  like vince , ronnie & myself to talk to ming over the phone . can we call him  directly and talk to him ? please let me know how strongly you feel about  having him as a support person .  thanks ,  krishna .  x 35485  to : pinnamaneni krishnarao / hou / ect @ ect  cc :  subject : re : ming sit  krisna :  are you still interested in hiring ming sit , through the research group . if  so , please proceed and assign him to support ees . please let me know if i  need to provide any information .  thanks  dennis  - - - - - - - - - - - - - - - - - - - - - - forwarded by dennis benevides / hou / ees on 05 / 22 / 2000  09 : 43 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  james w lewis  05 / 21 / 2000 11 : 44 am  to : dennis benevides / hou / ees @ ees  cc : scott stoness / hou / ees @ ees  subject : re : ming sit  i like db ' s suggestion . let ' s do it .  enron energy services  from : dennis benevides 05 / 19 / 2000 03 : 31 pm  phone no : 713 853 - 9609  to : scott stoness / hou / ees @ ees  cc : james w lewis / hou / ees @ ees  subject : re : ming sit  got a little scared at your first sentence i read \"\" he is no replacement for  jay but he could be for dennis b . . \"\" ? ? .  anyway :  i think he would be a good fit withing the group . krisna has offered to hire  him in the research group , he has good programing background and is excited  about working for enron instead of a utility such as pacificcorp . he  expressed interest in applying his skill to make $ $ $ $ .  i suggest bringing him in in research as a first alternative . i see three  potential applications where we can use his skills to evaluate best longer  term fit :  continuing ronnie ' s model building role , but with a focus within neil ' s group  to tie rm systems together  bridge the lack of phd econometrics expertise we have as are result of the  departure of anoush .  risk management systems infrastructure development .  scott stoness  05 / 19 / 2000 02 : 02 pm  to : james w lewis / hou / ees @ ees  cc : dennis benevides / hou / ees @ ees  subject : ming sit  he is no replacement for jay but he could be a dennis b employee .  pros :  engineer so would be good at math  his boss hired him a 2 nd time ( 1 at txu and again at pacificor again ) so he  must be reliable  phd in economics and engineering ( good ) from stanford ( ugh : ) : ) : ) )  cons :  does not understand tariffs . i asked him and he said he is not experienced .  i probed too and he does not understand regulatory that well .  does not understand ancillary services ( which is surprising to me since he  started out as an plant operation side of hk power )  has limited people management skills ( he described 1 analyst he works with  that is not capable that he has to jump into the excel spreadsheet and fix it  for him and he cannot give him feedback because it is a utility mentality )  he is not a good communicator ( i asked him to describe what he did in hk  power and it took him forever to explain because he expected me to know that  plant operations meant planning the start up of oil plants ) .  overall :  i suspect that he is a very solid guy when it comes to analysis but not  particularly creative or good at communication and leadership . he would be a  great support person .  i would hire for analysis but not as a potential leader . go\",0\n\"Subject: e - commerce & continental europe  hi sven ,  thanks a lot for your note - i think it would be great to see what we can do  to help you & joe ' s business units . plenty of our knowledge is no longer  proprietary in that quite a lot of this information is now in the public  domain - we can sit down and discuss this on thursday afternoon if that works  for you .  regards ,  anjam  x 35383  sven becker  14 / 06 / 2000 19 : 10  to : anjam ahmad / lon / ect @ ect  cc : clemens mueller / lon / ect @ ect  subject : re : research group intranet site  anjam , congratulations on your initiative . i appreciate that you share this  information throughout enron .  as you may know , my group is working with joe ' s business units to create  so - called market hubs .  i see great potential in sharing some of the information that you have  acucmulated and that is not proprietary to enron .  i would appreciate if we could sit down tomorrow and talk about the  possibility to leverage on the existing know - how .  regards  sven  please respond to anjam ahmad / lon / ect  to : ect europe  cc :  subject : research group intranet site  research group intranet site  following the recent lunch presentations , there has been considerable  interest from enron europe staff in improving their quantitative skills ,  helping to maintain our competitive advantage over competitors . we have  recently created the research group ' s intranet site which you can find on the  enron europe home page under london research group . the site contains an  introduction to the group and also information on :  derivatives pricing  risk management  weather derivatives  extensive links  weather derivatives  credit risk  extensive links database  if you have any questions or issues on quantitative analysis ( including  hedging and risk management of derivatives ) please don ' t hesitate to get in  touch .  regards ,  anjam ahmad  research group  first floor enron house  x 35383\",0\n\"Subject: maths course  dear vince ,  ?  further to our telephone conversation , that you very much for agreeing to  participate in the financial mathematics training course . as discussed i  would be delighted if you could present the following sessions :  ?  practical techniques to price exotic energy options  ?  evaluating methodologies for pricing exotics  ? ? ? assessing the pros and cons of a partial differential equation  ? ? ? applying multi - factor models to price exotic energy derivatives  ? ? ? building trees for pricing and hedging exotics  pricing  ? ? ? asian options  ? ? ? bermudan and american style options  ? ? ? spread and spark spread options  ? ? ? multi - commodity options  practical example : ? ? ? pricing swing options  ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? using monte carlo techniques to value swing  options  practical example : ? ? ? pricing a multi - commodity option  ?  analysing approaches to weather derivatives valuation  ?  understanding the mechanics of weather derivatives  ? ? ? heating and cooling degree day swaps  ? ? ? precipitation contracts  applying probablistic approaches to pricing weather derivatives  ? ? ? stochastics  ? ? ? monte carlo techniques  using historical methodologies and black - scholes for pricing weather  derivatives  valusing long term transactions  practical example  ?  please could you let me know by the close of business on thursday if you  would like to make any changes to the bullet points . i have printed out your  biography below and please could you also let me know if you would like to  make any changes to it .  ?  vince kaminski , enron capital & trade resources  vince kaminski is vice president and head of research at enron risk  management and trading , a unit of enron capital & trade resources . mr  kaminksi joined enron in 1992 . previously he was vice president in the  research department at salomon brothers .  ?  thanks again vince and i ? look forward to speaking to you on friday .  ?  best regards ,  ?  vicky\",0\n\"Subject: latest draft - - comments ?  vince ,  this is my latest effort and i would appreciate your thoughts . i know that  we haven ' t written together before so let me assure me that you will not  hurt my feelings by \"\" slashing away \"\" with a red pen . i think that i have  put all the clay on the table for this piece of sculpture but it is still  pretty crude . help me \"\" refine \"\" the work to create something we can both be  very proud of .  by the way , i know you are extremely busy right now so don ' t feel pressured  to spend lots of time here . any guidance you can offer will be  appreciated . i don ' t know what the editor ' s time schedule is but he asked  me to send him a draft on monday . you and i will still be able to edit the  manuscript but he will begin reading and editing it too . i ' ll let you know  as soon as i have a final deadline .  your friend ,  john  p . s . hope life is a bit calmer for you . by the way , i ' m reading an  interesting book entitled \"\" the four agreements \"\" by miguel ruiz that  documents the toltec philosophy of life in the context of the dreams of  reality that we all create . you might enjoy it .  - enron _ paper _ 1 _ 16 _ 01 . doc  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: entouch newsletter  business highlights  enron freight markets  enron freight markets ( efm ) launched its over - the - road trucking business this  week . in addition , efm completed 199 intermodal transactions in the first  week of april .  ena west power  ena west power recently closed the sale of two power projects . the 750 mw  pastoria energy facility in kern county , california was sold to calpine and  the 240 mw fountain valley power project in colorado was sold to black hills  energy capital . given the power shortage in the west , ena is developing  additional power generation in nevada , california and washington .  enron industrial markets  the newsprint group of eim is working to revolutionize the newsprint market  and bring financial rigor and market efficiencies to a business that has  remained relatively unchanged for more than a century . the global newsprint  market is a 23 billion dollar a year business with the north american market  comprising one third . the group ' s originators , mid - marketers , and financial  and physical traders offer our customers numerous financial and physical  products not previously available in the market .  eim has made a substantial commitment to this business with the purchase of  garden state paper company last year and the recent purchase of daishowa  paper in quebec city . the number of transactions has grown exponentially with  the physical trading alone reaching a nominal trading volume of more than  $ 10 , 000 , 000 per month in little more than four months since opening . in  addition to physical spot transactions , the desk offers our counterparties  log - term fixed priced transactions , indexed based pricing , forward contracts ,  swaps , and derivative products .  forest products  forestweb inc . , an internet - based generator , aggregator and integrator of  knowledge and information for the forest products industry , announced a new  window to industry financial and risk management tools available from  clickpaper . com . clickpaper allows the industry direct access to transactable  prices for both physical and financial products , in an electronic format .  paperloop . com , one of the leading online resources for the forest products  industry , announced the addition of clickpaper . com in their emarketplace ,  which showcases various e - commerce companies and highlights their services .  paperloop provides clickpaper . com exposure to its 250 , 000 + monthly users in  the pulp , paper and converting industries .  in the news  ken lay was the cover story for the april 2001 issue of continental magazine .  he had positive things to say about his employees .  \u0001 & sitting in his 50 th floor mahogany - paneled office overlooking his  much - beloved downtown houston , lay , with a self - conscious smile , bows his  head slightly as he \u0001 , s described as an innovative market maker . \u0001 + i really can \u0001 ,  t take any credit , he says . my employees are responsible for what enron  does . \u0001 , what he does best , the missouri - born corporate icon says , is \u0001 + to  create an atmosphere of empowerment and creativity and hire bright ,  innovative people who aren \u0001 , t afraid to take risks and try new things . \u0001 8  welcome  new hires  eim - craig rickard , lisa mcclendon  ena - ben brasseaux , stephen swisher , tamera joyner , vanessa griffin ,  kathleen ashton  weekly enrononline statistics  below are the latest figures for enrononline as of april 6 , 2001 .  * total life to date transactions > 845 , 000  * life to date notional value of transactions > $ 500 billion  nuggets & notes  mark your lunch calendars now ! the next ews brown bag is thursday , april 19  at 11 : 30 am . tim battaglia vp / eim will be discussing steel origination .  congratulations to peter del vecchio , eim senior counsel , and his wife , nair .  they are the proud parents of dante valentin del vecchio , born april 3 ,  weighing 4 pounds , 8 ounces .  news from the global flash  enron poland obtains gas trading license  on 22 nd march 2001 enron poland received a 10 - year gas trading license , valid  for both domestic gas trading within poland as well as for gas exports . the  license is a key component to our entering the gas trading market in poland  and , coupled with the power trading license we obtained in 1999 , will give  enron poland a strong position in the developing wholesale energy market . in  the next two to three weeks , we expect to receive a cross - border trading  license covering gas imports that are further regulated under the polish  energy law ordinance on gas import diversification .  enron wind announces first uk off - shore wind farm  on 5 th april 2001 , enron wind announced that it had been granted the right to  initiate the planning process for its first uk offshore wind farm , located at  gunfleet sands , 7 km from clacton - upon - sea in essex . construction is expected  to start towards the end of 2002 , with the wind farm of 30 turbines being  operational by q 4 2003 . enron wind is also actively involved in a number of  on - shore projects in the uk , including the development of wind farms in wales  and northern ireland .  legal stuff  the information contained in this newsletter is confidential and proprietary  to enron corp . and its subsidiaries . it is intended for internal use only  and should not be disclosed .\",0\n\"Subject: apr 20 - wharton - final agenda  michael ,  vince and i appreciate your keeping us involved with this event . good luck  and we hope to see you soon !  - best !  christie .  - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 04 / 18 / 2001  04 : 16 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  michael tomczyk on 04 / 18 / 2001 02 : 54 : 00 pm  to : vkamins @ enron . com , christie _ patrick @ enron . com  cc :  subject : apr 20 - wharton - final agenda  vince and christie ,  i know you are unable to attend this week ' s event at wharton but i thought  you would like to see the final agenda , and i also wanted to remind you that  about a week or so after the event we will post a summary of presentations  and discussion insights on our website : ? http : / / emertech . wharton . upenn . edu .  in addition to senior wharton faculty and colleagues , senior managers from  the following companies will be attending : ? charles schwab , cybersource ,  ellacoya networks , glaxosmithkline , gmac , healthnetworks . com ,  hewlett - packard , infosys , ibm , nsa , omnichoice , philadelphia newspapers , and  usinternetworking .  best regards ,  michael  managing strategic partnerships & acquisitions ?  friday april 20 , 2001 - - 8 : 30 am to 400 pm  location - room 1206 steinberg - dietrich hall - wharton school - philadelphia  final agenda ?  managing strategic partnerships  an insight - building conference including new wharton research on  best practices and successful strategies for achieving corporate  growth through alliances , mergers and acquisitions .  friday , april 20 , 2001 - 8 : 00 to 4 : 00  1206 steinberg - dietrich hall , wharton school  presented for our industry partners and guests by the  emerging technologies management research program ,  mack center on managing technological innovation  agenda & conference topics  8 : 00 - 8 : 30 ? - ? continental breakfast and informal networking  8 : 30 - 8 : 45  introduction : strategic partnering for growth and innovation  harbir singh , wharton  8 : 45 - 9 : 30 ? - networking , partnerships & strategy  lori rosenkopf , wharton  9 : 30 - 11 : 00 ? - success and failure factors in strategic partnering  todd horst , usinternetworking  tim george , pfizer  dave daetz , cybersource  11 : 00 - 11 : 15 ? - break  11 : 15 - 11 : 40 ? - building partnering skills and capabilities  prashant kale , university of michigan  11 : 40 - 12 : 00 ? - successes & failures in strategic outsourcing : some initial  findings  howard perlmutter , wharton  12 : 00 - 1 : 30 ? working lunch - strategic partnering as a core competency  paul j . h . schoemaker and roch parayre , wharton  1 : 30 - 1 : 45 ? - mapping social networks : applications to strategic partnering  ruhul quddus , wharton  1 : 45 - 2 : 30 ? - small group reports  paul j . h . schoemaker & roch parayre , wharton  2 : 30 - 2 : 45 ? - break  2 : 45 - 3 : 45 ? - managing high technology acquisitions  phanish puranam , wharton  walt vester & harry hirschman , wharton  kerri ford , wharton  3 : 45 - 4 : 00 ? - summary of key insights and future research goals  harbir singh , wharton  4 : 00 - adjourn  - -  michael s . tomczyk  managing director  emerging technologies management research program  1400 sh - dh / 6371  the wharton school  philadelphia , pa 19104 - 6371  tel 215 - 573 - 7722  fax 215 - 573 - 2129  website : ? http : / / emertech . wharton . upenn . edu\",0\n\"Subject: confirmation of your order  this is an automatic confirmation of the order you have placed using it  central .  request number : ecth - 4 pcl 4 f  order for : maureen raymond  1 x ( option : 128 mb upgrade for deskpro en 6600 $ 144 )  enron it purchasing\",0\n\"Subject: prob of default for e rating 7 as of 2 / 3 / 00  vincent ,  i got the e - rating and default probabilities for promigas from the credit  group .  could you plug in these numbers to the loan guarantee model ?  promigas is rated as bb .  zimin  - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 02 / 04 / 2000 08 : 41 am  - - - - - - - - - - - - - - - - - - - - - - - - - - -  tanya rohauer  02 / 04 / 2000 07 : 27 am  to : zimin lu / hou / ect @ ect  cc :  subject : prob of default for e rating 7 as of 2 / 3 / 00\",0\n\"Subject: fw : resume for vince kaminski  we just received this resume from an agency . i had just heard this morning  that an economist was coming into your group , so i don ' t know if you are  interested or not . let me know if i can be of any help .  molly  - - - - - original message - - - - -  from : graham , toni  sent : thursday , march 08 , 2001 2 : 07 pm  to : magee , molly  subject : fw : resume for vince kaminski  - - - - - original message - - - - -  from : \"\" m eastman \"\" @ enron  @ enron . com ]  sent : thursday , march 08 , 2001 1 : 53 pm  to : graham , toni  subject : resume for vince kaminski  johnathan is at 142 , 000 base + 10 - 15 % bonus . he is a phd . , certified in  financial risk management , awaiting charter as cfa , and the list goes  on . at kpmg his clients are financial institutions , e - commerce , internet ,  and high tech . he has real options valuation and various other financial  and overall corporate risk valuation and analysis skills that may be of  interest to vince and his group .  mike eastman , cpc - president  qualitec professional services , lp  accounting - financial - energy risk - tax  search consultants  281 - 647 - 9300 ext . 314 fax 281 - 647 - 9300  email meastman @ qualitec . com  website www . qualitec . com  - johnathan mun . doc\",0\n\"Subject: fyi : forward  hi vince ,  the following is what i wrote to molly as she prepares the contract for me to  work with enron .  i thank you for allowing me to work with enron and will do all that i can to  make you happy with my candiates and performance .  thank you for you support vince .  will check in soon ,  jeff  sorry about the mix - up on the email molly .  i hope you get this one .  as most good corporations like enron have predefined contractual arrangements  to do executive search business i will be happy to abide by your terms and  rules .  and to be quite honest - enron is about the \"\" best it gets \"\" so , i prefer to not  draft a contract this time or for this relationship - i will wait for yours to  be signed by me . the only stipulation i request of you is that upon  contractual performance , enron accounts payable please wire my funds to my  account as i have a multi - currency account denominated in usd / canadian or  british pounds ( which ever fits you as i may need to pay my counterparts in  the uk ) . . . other than that i have no perplexities .  i will send you my wire instructions later , either my bank in california or  in bermuda .  as i live in california and do contingency search , i must go off of my  client ' s \"\" good word \"\" on occasion and luckily haven ' t had any problems so  far . . . i always honor california verbal contract law - if i do not draft .  i think you fee payment of 20 % is generous and the industry standard of 30  day guarantee on replacement is fair . obviously there is no deposit on any  contingency and if there is a definite urgent need for a position to be  filled only then will i ask your help for a minor deposit to aid in my  overhead to shift all my resources to search on behalf on enron .  as enron has the in - house power to probably not need this service then  obviously a deposit will not be required .  if you wish me to send my standard agreement then i will , but you have made  yourself perfectly clear by phone what you are willing to do . i therefore  will be happy to receive you contract and follow your instructions .  i thank you and vince for allowing me to work with enron and pledge to you my  best work and candidates utilizing my network of contacts .  i am very excited about our new relationship and hope to give you my very  best service .  thank you very much for this opportunity molly , please send my your contract  so , that i may sign it and send it right back to you immediately . i am  looking forward to working with vince and you .  thank you again ,  jeff wesley  ps - i can utilize to resources of management recruiters international usa and  robert walters of the uk to aid in my service to you .  best regards ,  jeff wesley  * get free , secure online email at http : / / www . ziplip . com / *  - private 9498132241 original . doc  - statement 9498132241 origina . doc\",0\n\"Subject: enron contact info  dear vince , christie and vasant :  thank you for the presentation to the enron tiger team . it was most  informative and well received by the students . this is an exciting project  and the students are enthusuastic and anxious to begin . many thanks , also ,  for hosting the dinner at the palladium . it was a wonderful opportunity to  get to know more about the project , as well the enron representatives and  the students .  listed below is the contact information with team contacts identified .  i will send you the teams project preferences as soon as i recieve them from  all the students .  it may be a good idea to contact the students before they leave for vacation  ( 15 - 22 dec ) to see who is interested in a trip to houston in january for  planning purposes . they will return to campus jan . 16 .  please let me know if there is anything i can do to assist from this end .  again , thank you for your support of the wharton school and of the tiger  team project 2001 .  sincerely ,  donna piazze  program director  field application project  the wharton school  univ . of pennsylvania  ( 215 ) 573 - 8394  ( 215 ) 573 - 5727 fax  fap @ management . wharton . upenn . edu  piazze @ wharton . upenn . edu  enron 1 vincent chen vincent . chen . wgo 2 @ wharton . upenn . edu  enron 1 nick levitt  nicholas . levitt . wgo 2 @ wharton . upenn . edu  enron 1 deepa mallik mallikd @ wharton . upenn . edu  enron 1 jack rejtman jack . rejtman . wgo 2 @ wharton . upenn . edu  enron 1 kim whitsel whitselk @ wharton . upenn . edu  * * * team contact  enron 1 tulika bhalla bhallat @ wharton . upenn . edu  enron 2 jaideep singh singhjai @ wharton . upenn . edu  enron 2 edson otani edsono @ wharton . upenn . edu  enron 2 joshua leventhal levent 86 @ wharton . upenn . edu  * * * team contact  enron 2 pat henahan mhenahan @ wharton . upenn . edu  enron 2 murat camoglu camoglum @ wharton . upenn . edu  enron 2 gustavo palazzi gustavop @ wharton . upenn . edu  enron 3 clay degiacinto  enron 3 steve lessar  stephen . lessar . wgo 2 @ wharton . upenn . edu  enron 3 ram vittal mvittal @ wharton . upenn . edu  * * * team contact  enron 3 jason cummins marc . cummins . wgo 2 @ wharton . upenn . edu  enron 3 omar bassel bassalo @ wharton . upenn . edu  enron 3 dennis feerick  dennis . feerick . wgo 2 @ wharton . upenn . edu  professors : louis thomas thomas @ wharton . upenn . edu  keith weigelt weigelt @ wharton . upenn . edu  ta : heather thorne hethorne @ wharton . upenn . edu  fap : donna piazze piazze @ wharton . upenn . edu  host contacts :  vince kaminski vkamins @ enron . com  christie patick christie . patrick @ enron . com\",0\n\"Subject: course invoice  vince ,  ?  hi , hope you are well .  ?  i ' m just dropping a note regarding invoice 215 which was for 5 people  attending the energy and weather course . ? our records show that it hasn ' t  been paid , which is good . ? we will re - do the invoice and charge you only for  alex and tom ' s attendance since paulo didn ' t show . ? is this ok with you ? ? by  the way , we only charged $ 250 a person for the weather course since it was  suppose to be an exchange of information session , and enron weather paid for  the venue .  ?  nice to have finally met you in houston !  ?  julie  ?\",0\n\"Subject: term papers  team ,  can you resend your text document to vince asap .  we could open your spreadsheet ok , but not the document .  vince ' s contact information is on the attached email below .  thanks  jason  - - - - - - - - - - - - - - - - - - - - - - forwarded by jason sokolov / hou / ect on 05 / 04 / 2001 05 : 32 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  05 / 04 / 2001 05 : 29 pm  to : monfan @ rice . edu  cc : vkaminski @ aol . com , jason sokolov / hou / ect @ ect , vince j kaminski / hou / ect @ ect  subject : term papers  felix ,  please , resend me the term papers of your group , each as a separate file .  please send it to my aol address as well as work address .  my aol address is vkaminski @ aol . com  my home phone number is 281 367 5377 .  vince\",0\n\"Subject: re : option pricing challenge  zimin ,  to generalize your initial comment , for any process ds = mu ( s , t ) * s * dt +  sigma ( s , t ) * s * dz ,  the delta - hedging argument leads to the black - scholes pde .  this is true for any arbitrary functions mu and sigma , and so includes gbm ,  mean reversion , and others .  there is no problem with this , because in the risk - neutral world , which is  what you enter if you can hedge ,  the drift of the \"\" actual \"\" process is irrelevant .  i believe your concern is that you would like to see a different option price  for mean reversion process . this can only happen if the asset is not  hedgeable , and so the actual dynamics then need to be factored into the  option pricing . if you assume that the underlying is a non - traded factor ,  then the pde will have to reflect the market price of risk , and the drift of  the actual process is then reflected in the pde .  vasant  zimin lu  10 / 17 / 2000 05 : 20 pm  to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , vasant  shanbhogue / hou / ect @ ect , pinnamaneni krishnarao / hou / ect @ ect , alex  huang / corp / enron @ enron , kevin kindall / corp / enron @ enron , tanya  tamarchenko / hou / ect @ ect  cc :  subject : option pricing challenge  dear all ,  i have a fundamental question back in my mind since 95 . hope you can give  me a convincing answer .  zimin  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  in deriving bs differential equation , we assume the underlying follows gbm  ds = mu * s * dt + sigma * s * dz  where mu is the drift , sigma is the volatility , both can be a function of s .  then we use delta hedging argument , we obtain the bs differential equation  for the option price , regardless  of mu .  with the bs pde and boundary condition , we can derive bs formula . fine . no  problem .  question comes here . suppose the underlying is traded security and follows ,  say , mean - reverting process  ds = beta ( alpha - s ) dt + sigma * s * dz  apparantly , this sde leads to a different probability distribution . however ,  using the delta hedging argument ,  we still get the same bs differential equation , with the same boumdary  condition , we get the same bs formula .  not fair !  from another angle , i can derive the distribution from the bs pde for the  underlying , which is the lognormal distribution .  my thinking is : can i drive the distribution for any sde from the option pde  ? the answer should be yes , but got to be  from a different pde rather than bs pde . then what we do about the  delta - hedging argument ?  thanks .\",0\n\"Subject: as promised molly  sorry about the mix - up on the email molly .  i hope you get this one .  as most good corporations like enron have predefined contractual arrangements  to do executive search business i will be happy to abide by your terms and  rules .  and to be quite honest - enron is about the \"\" best it gets \"\" so , i prefer to not  draft a contract this time or for this relationship - i will wait for yours to  be signed by me . the only stipulation i request of you is that upon  contractual performance , enron accounts payable please wire my funds to my  account as i have a multi - currency account denominated in usd / canadian or  british pounds ( which ever fits you as i may need to pay my counterparts in  the uk ) . . . other than that i have no perplexities .  i will send you my wire instructions later , either my bank in california or  in bermuda .  as i live in california and do contingency search , i must go off of my  client ' s \"\" good word \"\" on occasion and luckily haven ' t had any problems so  far . . . i always honor california verbal contract law - if i do not draft .  i think you fee payment of 20 % is generous and the industry standard of 30  day guarantee on replacement is fair . obviously there is no deposit on any  contingency and if there is a definite urgent need for a position to be  filled only then will i ask your help for a minor deposit to aid in my  overhead to shift all my resources to search on behalf on enron .  as enron has the in - house power to probably not need this service then  obviously a deposit will not be required .  if you wish me to send my standard agreement then i will , but you have made  yourself perfectly clear by phone what you are willing to do . i therefore  will be happy to receive you contract and follow your instructions .  i thank you and vince for allowing me to work with enron and pledge to you my  best work and candidates utilizing my network of contacts .  i am very excited about our new relationship and hope to give you my very  best service .  thank you very much for this opportunity molly , please send my your contract  so , that i may sign it and send it right back to you immediately . i am  looking forward to working with vince and you .  thank you again ,  jeff wesley  ps - i can utilize to resources of management recruiters international usa and  robert walters of the uk to aid in my service to you .  best regards ,  jeff wesley  always held in strict confidence .  949 813 2241 hotline  347 487 8957 voice / fax us  ( 011 ) + 44 ( 845 ) 3341644 uk  - - - - - begin pgp public key block - - - - -  version : pgpfreeware 6 . 5 . 3 for non - commercial use   2 w 4 duudd 3 yisxx 8 wy 2 o 9 vpji 8 bd 8 kvbgi 2 oulwmufo 4 ozt 9 fbdxq 6 mdggzemyestsr / pogxkuayeyl 8 6 vq  rpmynofdopnqnyej 2 + m 9 zwwyw 3 gbij 4 vktfyngoqevl 3 l 9 hg 2 l 7 lsls + 8 ywlvcqb llmkul 3 lxa 9 idp 6 bzu 9 drwdfrba 5 rdvbfylolythsp 0 zg 4 lolurfgyy + iakwe / 5 n  78 fc 32 lczbj 8 rvsvh + qljiyisjdvambww 4 hjlzc 9 tipdtggz 6 g 5 lgg 8 dfw 74 ezsx lzsy + zzncacst / dveok / + y 4 nrumqor + qggo 9 l 9 gwpqu 5 blxenpedteczmwome 48 z  glkh + bz 39 qcfvc + hxgi 7 ogcon / rseitrweao / sy =  = 2 nkw  - - - - - end pgp public key block - - - - -  * get free , secure online email at http : / / www . ziplip . com / *  - private 9498132241 original . doc  - private 9498132241 original . doc  - statement 9498132241 . pdf  - statement 9498132241 origina . doc\",0\n\"Subject: reminder for dinner on saturday dec 2 nd  this is to remind all of you of the dinner plan ( with  family ) at my house on saturday dec 2 nd . we will  expect you at about 6 : 00 pm .  address : 3410 s . briarpark ln , sugar land  directions ( from downtown ) :  take 59 south all the way past sam houston beltway 8 ,  and past highway 6 . take the next exit - - - first  colony blvd / sweetwater blvd . take a left at the  traffic light onto sweetwater blvd ( over the highway ) .  go straight on sweetwater blvd past a few traffic  lights and a few stop signs . after passing a golf  course on the right , you will get a subdivision  \"\" crescents on the green \"\" on the right , and a  subdivision \"\" briarwood \"\" on the left . take a left into  the briarwood subdivision and an immediate right onto  s . briarpark ln . ( there is only one street in the  subdivision ) . our house ( 3410 ) is right there - - - 3 rd  house from cul - de - sec .  phone : 281 265 8959  cell : 713 569 2438  vasant  do you yahoo ! ?  yahoo ! shopping - thousands of stores . millions of products .  http : / / shopping . yahoo . com /\",0\n\"Subject: recommendation for john gordon  dear vince ,  i am writing to bring to your attention a gsia student , john gordon , who is  currently being considered for enron ' s associates program . my understanding  is that mark courtney and andrew miles at enron are championing john as a  late addition to the program .  while i know enron doesn ' t routinely recruit at gsia , john would be an ideal  candidate if you are willing to make an exception . he is a terrific finance  student with a strong transcript ; including an a + in my options class . since  john has an engineering / energy background , he asked early on for additional  background reading about finance and energy . john is personable and  outgoing . normally the job market for someone of john ' s caliber would have  already cleared , but i have been told that there are dual career issues at  play here .  i would be very appreciative if you would take a look at john . a copy of  his resume is attached to this email .  best regards ,  duane  * * * * * * * *  duane seppi  graduate school of industrial administration  carnegie mellon university  pittsburgh pa 15213 - 3890  tel . ( 412 ) 268 - 2298  fax ( 412 ) 268 - 8896  email ds 64 @ andrew . cmu . edu  - john gordon ' s resume\",0\n\"Subject: enron research and ebs engineering and operations group technical  forum  kevin ,  i would like to invite you to an off - site meeting of john griebling ' s  organization  and the research group .  date : april 27 - april 29  location : breckenridge , colorado  as you know , john griebling is managing the network design and construction  project  currently under way in ebs . the research group is actively involved in this  effort  which requires advanced quantitative skills in the area of stochastic  optimization and  stochastic processes ( for modeling and forecasting internet traffic flows ) .  the objective of this meeting is to develop common language and accomplish  transfer  of skills between the two groups , to facilitate cooperation on this project  in the future .  we are inviting ken rice and joe hirko to this meeting . we would appreciate  if you could  speak , together with joe and ken , on strategic directions of ebs . it is  important for a group  of technical people , with relatively specialized technical skills , to  understand the big picture .  i am attaching the preliminary agenda for this meeting .  vince\",0\n\"Subject: interview follow up from susan v . gonzalez  nov . 2 , 2000  ?  michael roberts , vice president , reseach  stinson gibner , vice president , reseach  vincent kaminsik , managing director , research  enron corp .  ?  gentlemen ,  thank you for the opportunity to learn about a new communication position  within your group . ? ? based on our discussions , here are some initial  thoughts / observations on the job and the task .  ?  * daily email newsletter for primarily two audiences :  ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 1 . ? internal for employees available via the enron  intranet  ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 2 . ? external for clients , industry at large  ?  * also suggest the newsletter be sent to a targeted group of trade press . ? as  this information tool builds momentum and credibility , it will support the  leadership positioning of ? enron ' s trading group . ? ? plus , it could become a  driver for media inquiries and ? requests for further information or  interviews with enron ? trading experts .  ?  * i heard you wanting internal and external versions for both morning and  afternoon distribution . ? ? that is an aggressive set of daily mailings . i  would want to review the scope of the content and look at the frequency . ?  just like print publications , ? email newsletters are ? now the rage and too  many are ? landing in the email inboxes . ? ? my counsel would be to start with a  manageable number and do it well . ? you can always increase frequency . ?  difficult to cut back on frequency without it appearing as a take away or  lack of commitment to the product . staffing ? ?  ?  * invite outside industry analysts or clients to provide commentary .  ?  * consider developing an \"\" editorial advisory board \"\" to govern the  content . ? ? traders , ? legal department , communications dept . a  multidisciplinary group that ? can add value to the publication .  ?  * suggest finding an ims or it resource from within enron to be assigned to  this communications effort . ? ? database set up for the email addresses ,  technical issues arise ? for ? creating the links etc . ? managing an  e - newsletter in my current position , i can ? tell you that a writer / editor has  enough to do to compile content . ? ? you want mailings to go off without any  glitches . ? or if there are glitches , he or she can ? solve quickly . ? what are  the implications of these mailings on the company ' s computer systems ? ?  ?  * budget . ? although not a typical print publication , this effort should have  a budget . ? graphics , freelance or contract writing , photography ? any special  software or hardware needs associated with this effort ? ?  ?  * review process . ? what is the review process for ? this publication . ? legal  guidelines ? ? corporate guidelines with regards to style , graphics  etc . ? ? technical review of the material for accuracy ? ? a clear policy should  be established ? up front for the review process so everyone involved knows  and understands their role and responsibilities ? towards this communication  effort .  ?  * have you surveyed what is out in the marketplace ? ? ? gather samples  of ? newsletters that you like or don ' t like for discussion purposes .  ?  * measurement / evaluation of the newsletter . ? ? how ? will the effectiveness of  the newsletter be measured ? ? hits on the website . ? inquiries from clients ? ?  don ' t have a quick answer but ? some goals should be set to measure against .  ?  * maintenace of the mailing lists should reside with the individual groups  participating in the newsletter . ? ? maintenance of the newsletter databases  should not be the responsibility of the communications representative . ? ? ?  ?  this sent to you in the spirit of exploring the position further . ? look  forward to your feedback . ? ? thank you for your consideration . ?  ?  sincerely ,  susan v . gonzalez  11822 poplar creek  houston , tx ? 77077  ( 281 ) 497 - 7185 home  ( 281 ) 877 - 5853 work\",0\n\"Subject: re : marketpoint gas model  john :  thanks for the information . chaim and i were aware that you might be  changing roles at enron . i am delighted kim is slated to take over the  reins working with vince . kim has put in a good bit of time in the past few  years reviewing our stuff and setting up contacts for us in your company .  we will give kim a call early next week after easter . we have made a lot of  progress on marketpoint , which i think will be of keen interest to your  team . the introductory activity as well as the ongoing , inhouse  architecture are both improved relative to what you and your people were  able to review , and i anticipate you will be pleased and impressed .  john , it isnt that easy for you to get away from us ! remember the story of  the tar baby . ( just kidding . ) all the best , and i hope we get the chance  to serve you and make your organization even better .  dale  > - - - - - original message - - - - -  > from : goodpasture , john [ mailto : john . goodpasture @ enron . com ]  > sent : thursday , april 12 , 2001 9 : 03 am  > to : chaim . braun @ altosmgmt . com  > cc : dale m . nesbitt ; kaminski , vince ; watson , kimberly  > subject : marketpoint gas model  >  > dear mr . braun :  >  > as i mentioned , i have recently been reassigned here at enron . although i  > am still in the enron transportation services group , i am no longer the  > most appropriate contact for consideration of the altos gas model . i  > would suggest you contact kim watson at 713 - 853 - 3098 or of course , vince  > kaminski , who will remain very much a part of the decision process .  >  > regards ,  >  > john goodpasture  >  >  >  >  >  >  >  >  >  >  >  - winmail . dat\",0\n\"Subject: the business of power  june 23 , 2000  international electric industry conference  for the past five years , the association of power exchanges ( apex )  has held its business meetings in different locations around the  world . for the first time , an industry conference is being held to  compliment these meetings , providing a means to connect industrial  electricity exchanges , isos and pools with senior leaders in the  worldwide electric industry .  for more information we have attached an adobe acrobat pdf file . the  document requires adobe acrobat reader 2 . 1 or higher . the latest  version is available to download from http : / / www . adobe . com .  or view our website : http : / / www . apex 2000 conf . com .  # 12 - apex 2000 . pdf\",0\n\"Subject: good looking guy  hi vince .  look at this guy ( picture included ) .  he is \"\" lawrence \"\" , the guy i spoke to you about last week that you said you  wanted to see .  he asked me if he can do a phone interview . . . i think williams , ford and  sdcera are soliciting him .  if i told him you and enron are interested - he would drop the others off the  map for a chance to interview with you .  i like him too as he follows my instructions as is pleasant to work with  ( most are not ) .  do you want to chat with him ?  on your command ,  jeff wesley  always held in strict confidence .  jeff wesley  949 813 2241 hotline  347 487 8957 voice / fax us  + 44 ( 845 ) 3341644 uk  * get free , secure online email at http : / / www . ziplip . com / *  - imageo 02 . jpg  - lawrenceagent 9498132241 new . doc\",0\n\"Subject: thursday instead friday  john sherriff ' s asst has moved the meeting . i hope this is still possible  for you .  steve  - - - - - - - - - - - - - - - - - - - - - - forwarded by steven leppard / lon / ect on 09 / 11 / 2000  08 : 05 - - - - - - - - - - - - - - - - - - - - - - - - - - -  lauren urquhart  07 / 11 / 2000 09 : 16  to : steven leppard / lon / ect @ ect  cc :  subject : thursday instead friday  hi steve  steve , the research meeting has been moved to thursday at 3 . 00 pm .  can you please let vince know .  thanks .  lauren\",0\n\"Subject: hello vince  vince ,  can i call you tuesday morning about our writing project ? i have to be in  austin for a dental appointment on monday at noon and that will probably  wipe out the day . give me a time and number where i can reach you .  john  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: wharton event - junel 0 - insead  bryan ,  i shall call you later today when i have a chance to read the message from  ben .  i wanted to ask you for a favor ( on a very short notice ) . we are talking to  the wharton school  about setting up a relationship with them and getting involved in one or  more research projects  with them .  one of the potential topics is emerging technologies . the wharton offers a  symposium in paris on june 10  on high tech acquisitions and it would make a lot of sense if you  ( or somebody from london you could identify ) could attend and help us to  evaluate the usefulness  of this project .  i am enclosing the message from the person in wharton running this program .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 06 / 05 / 2000  09 : 08 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  tomczyk @ wharton . upenn . edu ( michael tomczyk ) on 05 / 18 / 2000 10 : 56 : 08 am  to : vkamins @ enron . com  cc : thomas . piazze @ wharton . upenn . edu  subject : wharton event - junel 0 - insead  vincent ,  it was truly a pleasure getting to know you in our meeting yesterday , and i  look forward to the prospect of exchanging views in the future on a variety  of topics pertaining to emerging technologies .  per our discussion , i ' ve enclosed three files that include an invitation ,  agenda and rsvp form for the june 10 symposium on high tech acquisitions at  insead . if you or the individual ( s ) who will be attending have any  questions , please email : phanish puranam at : phanis 20 @ wharton . upenn . edu or  you can call him at 215 - 898 - 1231 .  this initiative will be expanded during the coming year and i believe that  enron ' s involvement will give the company access to some of the early  research in progress as it unfolds , and of course , if you become involved  as a partner in the emerging technologies program you would have  opportunities to help guide the direction of the research which is one of  the partnership \"\" benefits . \"\"  our next upcoming events are scheduled for :  friday , september 8  \"\" what next on the internet ? \"\"  this is a faculty update day with industry partners also invited .  we will co - sponsor this with wharton ' s major e - business initiative .  major issues addresses include \"\" new economics of the web \"\" and  \"\" internet , anywhere . \"\"  friday , october 20  \"\" first mover advantage , shakeouts & survival strategies \"\"  designed by the et core group and  presented in collaboration with the e - commerce forum .  as i indicated during our discussion , participation in the emerging  technologies management research program is by invitation and on behalf of  our core faculty , i am pleased to extend an invitation for enron to join  the program .  to assist in your decision , we recommend having a representative attend the  symposium in paris on june 10 to \"\" test drive \"\" the program .  i ' ll send you a formal invitation which you are free to accept at your  convenience , should you agree that enron ' s participation in the et program  would be of value .  please call or email if you have any comments or questions .  best regards ,  michael  - insead workshop invitation lett - insead workshop agendal . doc - rsvp  form . doc  michael s . tomczyk  managing director  emerging technologies management research program  1400 sh - dh / 6371  the wharton school  philadelphia , pa 19104 - 6371  tel 215 - 573 - 7722  fax 215 - 573 - 2129\",0\n\"Subject: re : hib visa application - sevil yaman  margaret ,  thanks for reminding me this issue . i think i ' ll be fine until i start full  time here in the research group . as you know right now i am using curricular  practical training as work permission . and until i graduate i am allowed do  as many as part time cpt i want to do . because of tax purposes i think i ' ll  use this right given to me . in this case , what i need to do is that after i  and vince make sure about my full time start date ( this may happen in the  beginning of 2002 ) , i ' ll let you know and send you the necessary document you  require to initiate my hlb visa application process . thanks again .  sevil ,  margaret daffin @ ect  25 - 04 - 2001 12 : 04  to : sevil yaman / corp / enron @ enron  cc : norma villarreal / enron @ enronxgate , vince j kaminski / hou / ect @ ect , ramona  perkins / enron @ enronxgate  subject : hib visa application - sevil yaman  sevil : please let me know when you will be sending me the information for  your hib visa ?  thanks  margaret  - - - - - - - - - - - - - - - - - - - - - - forwarded by margaret daffin / hou / ect on 04 / 25 / 2001  12 : 03 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  margaret daffin  04 / 10 / 2001 04 : 04 pm  to : sevil yaman / corp / enron @ enron  cc : norma villarreal / enron @ enronxgate , vince j kaminski / hou / ect @ ect , ramona  perkins / enron @ enronxgate  subject : hib visa application - sevil yaman  sevil : in order that we may proceed with your request for permanent  residency , our immigration attorneys have advised us that we need to process  the hib visa , prior to the permanent residency application .  therefore , i am attaching an hib visa questionnaire that i would like you to  complete and return to me , together with copies of all of the documents  listed at the bottom of the form .  please bring these to me in 3 ac 2026 a .  please let me know if you have any questions at x 55083 .  thank you  margaret\",0\n\"Subject: interview schedules for tony hamilton and damian likely  please find the interview packets for the above - referenced candidates . the  interviews will occur on friday january 26 , 2001 . please print all documents  for your reference . hardcopies of their resumes will be delivered via  runner . if you have any questions , or conflicts of schedule , please do not  hesitate to contact me .  shawn grady  58701\",0\n\"Subject: energydesk . com 2000 : meeting to review the new initiative with a  demonstration of the latest implementation , with a view to identify the  value we can add from the research group [ exact time tbc ]  exact time and location tbc for a mutually convenient time\",0\n\"Subject: re : term papers  please respond to  here is the excel file ( zipped ) . you have to unzip to read it .  felix  * * * * * * * * * * * * * * * * * * * *  felix feng lu  mba candidate , class 2001  jesse h . jones graduate school of management  rice university  phone - 713 . 942 . 8472 / fax - 714 . 908 . 7914  monfan @ rice . edu  * * * * * * * * * * * * * * * * * * * *  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : friday , may 04 , 2001 5 : 30 pm  to : monfan @ rice . edu  cc : vkaminski @ aol . com ; jason . sokolov @ enron . com ;  vince . j . kaminski @ enron . com  subject : term papers  felix ,  please , resend me the term papers of your group , each as a separate file .  please send it to my aol address as well as work address .  my aol address is vkaminski @ aol . com  my home phone number is 281 367 5377 .  vince  - feng lu . vcf  - modelingproject . zip\",0\n\"Subject: re : actions on anjam ' s resignation  i will sit anjam down before he leaves and explain the confidentiality  provisions in his contract and that we will pursue them vigorously . melanie  - can you give me a copy , steve , let me know when he is leaving - i ' ll do it  closer to the time .  richard  steven leppard  26 / 10 / 2000 10 : 13  to : dale surbey / lon / ect @ ect , vince j kaminski / hou / ect @ ect , melanie  doyle / lon / ect @ ect  cc : richard lewis / lon / ect @ ect , simon hastings / lon / ect @ ect  subject : actions on anjam ' s resignation  all  my preferred approach to dealing with anjam ' s departure is given below .  these recommendations are informed by the fact that i don ' t feel anjam has  much to offer his next employer , except what code and data he can remove from  enron :  hr - type stuff :  1 . get anjam off the trading floor as soon as possible . there is no need for  him to remain on the floor .  2 . determine where anjam is heading . we need to know who is going to know  our positions and curves next .  it - type stuff :  1 . ask him to catalogue the contents of his h : drive , since the rest of the  group will need to support his work in the future . this should take no more  than a day or two .  2 . get it to obtain their backups of anjam ' s h : drive for weekly intervals  over the last two months . this will allow us to determine what he has  deleted .  3 . get it to provide a snapshot of anjam ' s notes folders , and provide records  of mail sent out to the internet over the last couple of months . i ' m worried  about code / data he may have zipped up and mailed out .  4 . ask it to use a utility program to determine what has been deleted from  anjam ' s c : drives . there may be useful info here too .  steve\",0\n\"Subject: india database  jim / wade ,  as you are aware , i have been working with vince ' s group on the henwood model  data . the target was to have data on all india plants collected by jan . 15 th .  we all know that getting power out o maharashtra holds the key to being able  to solve the dabhol challenge . with all of your help , this model can become  the tool that tells us exactly how that can be done , and at what prices .  we are a substantial part of the way there on data collection , and have got  data of some 1500 plants across the country . the spreadsheet for the same is  attached . this will help you answer any questions that come up in calls  about the various plants . please note that we are located in the western  region , or wr in the spreadsheet . we will be further scrubbing the data and  getting more recent and accurate information , especially on maharashtra over  the next 2 - 3 days .  the henwood team will be in india on sunday , and will compare notes with the  team here . i am arranging for a presentation on the model and what it will  do .  wade - it would be good if a broad section of the team attend , including  neil , yourself and mohan . i will talk to you about a convenient time for you  in this regard .  neil & mohan - over the next week ( monday and tuesday ) i will need some time  from vivek , anshuman , ravi , and a few others , to interact with the henwood  team . i will be abliged if you can make that possible .  the first phase of model runs ( which will be done by jan . end ) will just give  us some more basic information , but i will need all of your inputs in order  to ask the right questions . the idea is that as we go along , this model will  be used to answer all types of management questions concerning dabhol , and  power evacuation out of maharashtra .  this will be critical for the team going forward .  regards ,  sandeep .\",0\n\"Subject: re : invitation - wharton et events  i agree . if you are going to send an rsvp , i suggest it be you , me , and  christie patrick . if any of us drop out , we ' ll be able to fill the space .  mark\",0\n\"Subject: moze cie to zainteresuje  vince ,  dawno ze soba nie rozmawialismy . mam nadzieje ze u ciebie wszystko o . k .  nie wiem czy znana jest ci postac prof . aleksandra werona - zajmuje sie on  zastosowaniem metod matematycznych w inzynierii finansowej . ostatnio  natomiast skupil sie na rynku energii . wraz z synem rafalem wydal ksiazke  \"\" gielda energii - strategie zarzadzania ryzykiem \"\" . zawarte sa w niej podstawy  zarzadzania ryzykiem . na jego stronie internetowej  http : / / www . im . pwr . wroc . pl / ~ hugo / fe . html mozesz znalezc cos wiecej na temat  tego czym sie zajmuje . to co moze cie zainteresowac to moze byc strona  http : / / www . im . pwr . wroc . pl / ~ hugo / rockets . html . ciekaw jestem co o tym sadzisz .  spotkalem sie z weronem kilkakrotnie na roznych seminariach . zorganizowalem  mu tez zobaczenie naszego trading floor podczas jednej z jego wizyt w  londynie .  pozdowienia  jarek\",0\n\"Subject: removal of caps on resale of transmission  on march 16 , martin lin will be participating in a panel discussion with dick  o ' neill of ferc , a rep . of morgan stanley , and ed cazalet of apx on \"\" market  turmoil , trading and risk management \"\" ( harvard electricity group ) . at the  present time , except in several limited regions , marketers do not have the  ability to hedge transmission risk by reselling it above cost . last year , we  approached dick o ' neill ' s staff about the possibility of lifting the cap on  resales of transmission , but they were not inclined to proceed absent the use  of certain restrictions . there have been several recent developments in  power and gas , as discussed in the attached memo . it would be helpful for  martin to discuss these recent orders as necessary in order to attempt to  gain support from dick o ' neill for the idea of lifting the cap for power .  after martin ' s discussion , we should consider reapproaching ferc to seek  approval .\",0\n\"Subject: sokolov eis expenses  hi kevin :  i was out of the office on thursday and friday . i have discussed this with  vince kaminski and he says the charges are correct . jason sokolov  reports to tanya tamarchenko in the research group and all of their  costs are charged to rac .  if you need further verification , please contact vince kaminski at 3 - 3848 .  thanks !  shirley crenshaw  administrative coordinator  enron research group  3 - 5290  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 03 / 19 / 2001  07 : 45 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  anita dupont @ enron  03 / 15 / 2001 05 : 20 pm  to : shirley crenshaw / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect  subject : sokolov eis expenses  - - - - - - - - - - - - - - - - - - - - - - forwarded by anita dupont / na / enron on 03 / 15 / 2001 05 : 14  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : kevin jolly / enron @ enronxgate on 03 / 14 / 2001 01 : 38 pm  to : anita dupont / na / enron @ enron  cc :  subject : sokolov eis expenses  anita , the other day i called you to get jason sokolov ' s cost center . some  of his eis expenses ( market data , long distance ) for jan and feb 2001 were  charged to the enron corp . rac cost center . in order for our accountants to  reclass the expenses , we need your approval that the expenses can be moved .  if this is okay , just reply back and let me know .  see the attached files for the detail of the expenses to be moved for jan and  feb .  thanks for your help ,  kevin\",0\n\"Subject: re : internship  dr . kaminski :  sounds good . you all have a nice weekend and 4 th .  - - shane  - - - - - original message - - - - -  from :  to :  cc : ;  sent : friday , june 30 , 2000 2 : 33 pm  subject : re : internship  >  > shane ,  >  > monday would work for us .  >  > my assistant will contact you wednesday to arrange the interviews .  >  > vince  >  >  >  >  >  >  > \"\" shane green \"\" on 06 / 30 / 2000 11 : 33 : 53 am  >  > to :  > cc :  > subject : internship  >  >  >  > dr . kaminski :  >  > i just wanted to touch base and see if i needed to snail mail a copy of  my  > resume or get in touch with anyone else over at enron .  >  > the finance department at lsu will be sending out financial award letters  > to new ph . d . students before long , and my interning at enron would free  up  > some additional departmental funds . in addition , if i will be here in  > baton rouge during the fall , i will need to pay my tuition next month . i  > am able to pursue an internship in large part because of the department ' s  > cooperation and assurance that when i return i will still have a research  > and or teaching assistantship to help fund the completion of ph . d . i have  > been told that such cooperation and assurances are rare at lsu , so i am  > trying to rock the boat as little as possible .  >  > i realize until i receive an offer from enron my internship ( i say  > internship rather than sabbatical because lsu will not continue to pay me  > my stipend while i am away ) is not assured until an offer has been  > extended by enron . i understand that there are procedures and protocols  > that must be followed before this occurs , and i would be willing to do  > whatever is necessary to move to the next step in that process .  >  > i will be in houston on july 8 & 9 for my wife ' s grandmother ' s 80 th  > birthday . if it would be convenient , i could be in town on the preceding  > friday , or following monday for a visit and / or interview . if not , given  > the relatively close proximity between baton rouge and houston , i would  be  > happy to come at another time .  >  > thanks again ,  > shane green  >  >  >  >  >  >\",0\n\"Subject: re : powerisk 2001 - your invitation  angelika .  yes .  vince  angelika staude on 04 / 12 / 2001 03 : 01 : 25 am  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc :  subject : re : powerisk 2001 - your invitation  vince ,  brilliant , thanks . same sub points , same bio ?  best regards ,  angelika staude  director gas & powerisk 2001  tel : 0044 207 915 5675  fax : 0044 207 915 5101  www . icbi - uk . com / powerisk  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : wednesday , april 11 , 2001 6 : 59 pm  to : astaude @ iirltd . co . uk  cc : vince . j . kaminski @ enron . com  subject : re : powerisk 2001 - your invitation  angelika ,  thanks for the invitation .  yes , i shall be glad to attend and repeat the same presentation .  vince  angelika staude on 04 / 09 / 2001 04 : 19 : 08 am  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc :  subject : powerisk 2001 - your invitation  powerisk 2001  the global premier forumforenergy trading & risk management  6 th - 9 th november 2001 , paris  dear mr kaminski ,  i am responsible for the programme of this year ' s powerisk conference in  paris . helyette geman has informed me that she has contacted you  concerning the workshop and that you are happy to do it with her again  this year - brilliant !  i would like to know if you are also interested in delivering a paper  again . the audience in previous years greatly appreciated your  contribution , and i would me more than happy if you could join us again .  to give you an idea of the programme so far , these are the ( \"\" technical \"\" )  topics that are already covered :  chris strickland : forward curve models with jumps for the pricing of  exotic energy contracts  multi - factor forward curve models for the valuation of energy contracts  adding jumps  applying the models to exotic energy options  extensions to multiple energy contracts  les clewlow : valuation and risk management of virtual power stations and  gas supply agreements  structures of gas supply agreements ( gsa )  relationships between physical and virtual power stations ( pps / vps )  valuation methods for gsa ' s and vps ' s  risk analysis of gsa ' s and vps ' s  derek bunn , professor of decision sciences , london business school :  analysing the impact of neta on market efficiency & volatility in the uk  energy market  chris harris , director of market development . operations and engineering ,  innogy : applying cutting - edge portfolio management theory in order to  optimise your risk exposure  establishing and valuing the key factors using a bottom up approach  looking at the interconnection between key factors  the treatment of the risk of infrequent but high impact events  peter nance , principal , teknecon : combining power systems and monte carlo  simulations for effective pricing  dan mansfeld , head of risk control , vattenfall : assessing the benefits  and risks of using derivatives as part of your risk management strategy  spyros maragos : analysing new approaches to building forward curves from  available market data  tamara weinert , credit and contracts manager , mirant energy :  successfully measuring limit  setting ; risk reducing structures  importance of credit in the organizational structure : reporting ;  dependence ; structure of credit department  brett humphreys : examining cutting - edge credit exposure mitigation tools :  combining counterparty and portfolio credit var techniques  helyette geman : pricing of exotic energy derivatives and structured  contracts  please let me know if you are interested in joining the powerisk 2001  speaker panel , and which topic you would like to cover . i think that  something along the lines of last year ' s talk ( state - of - the - art volatility  and correlation estimation techniques for multiple energy portfolios )  would be brilliant again , but please feel free to chose something else  that has not been covered yet .  i look forward to hearing from you ,  kind regards ,  angelika staude  director powerisk 2001  tel : 0044 207 915 5675  fax : 0044 207 915 5101  ps : for your information , please find enclosed a list of confirmed  speakers for powerisk 2001 .  ( see attached file : confirmed speakers . doc )\",0\n\"Subject: re : hello  vince  thank you for the update . i will be back in the office january 8 .  have a great new year  gerry  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : thursday , december 21 , 2000 5 : 35 pm  to : gsheble @ iastate . edu  cc : vince . j . kaminski @ enron . com  subject : re : hello  gerry ,  let me review my calendar in the beginning of the next year and i shall  e - mail you  with a suggested date . my assistant will update my schedule for 2001 in the  first week  of january and i shall be able to select a date for ypur presentaton .  vince kaminski  \"\" sheble , g . b . \"\" on 12 / 21 / 2000 10 : 43 : 50 am  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc :  subject : re : hello  dear mr . kaminski  please excuse the cancellation due to illness . the students do not care  who  they infect near the end of the semester , they just want to get done !  here is my available schedule for next year . i am now overloaded next week  with tasks to complete the semester . i do hope that we can reschedule  during the first quarter next year .  i would note that my schedule is most free for thursday or friday . i could  fly out late wednesday night .  cordially ,  gerry  teaching schedule  m 11 - 12  t and r 10 - 12 and 2 - 4  t 12 - 2 ep & es seminar  m 6 - 8  t 6 - 8  w 6 - 8  ( r = thursday )  workshops :  jan 12 - 13 des moines  jan 26 - 27 des moines  feb 9 - 10 des moines  ieee wpm conference  feb 28 - 31 columbus , ohio\",0\n\"Subject: meetings next week  hi guys ,  vince talked with christie and they both are available next tuesday ( game day ) at 9 am . can you meet then to start preparing an outline ?  also would you be up for a presentation at the research group ' s lunch meeting next thursday ? vince will be out , but you ' ll undoubtably get some interesting questions from others at the meeting , if your up for it . let me know soon , and we can schedule you for next thursday .  talk to you later  ken\",0\n\"Subject: congratulations !  congratulations on your promotion to managing director ! it ' s great that your  hard work and dedication to enron have been recognized .  sherry\",0\n\"Subject: re : meeting re : wharton strategy  jennifer ,  i am available for 30 minutes on fri , oct 30 . . a meeting at 8 : 30 would work  better for me .  vince  jennifer burns  10 / 24 / 2000 04 : 14 pm  to : michele nezi marvin / enron communications @ enron communications , mark  palmer / corp / enron @ enron , cindy derecskey / corp / enron @ enron , vince j  kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , beth  miertschin / hou / ect @ ect , christie patrick / hou / ect @ ect , kristin  gandy / na / enron @ enron  cc :  subject : meeting re : wharton strategy  lets try for friday , october 27 @ 9 : 00 am , please let me know if you are  available . thanks !  - - - - - - - - - - - - - - - - - - - - - - forwarded by jennifer burns / hou / ect on 10 / 24 / 2000  04 : 07 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  jennifer burns  10 / 23 / 2000 11 : 08 am  to : michele nezi marvin / enron communications @ enron communications , sarah  mulholland / hou / ect @ ect , mark palmer / corp / enron @ enron , kristin  gandy / na / enron @ enron , beth miertschin / hou / ect @ ect , christie  patrick / hou / ect @ ect , jeffrey a shankman / hou / ect @ ect , vince j  kaminski / hou / ect @ ect  cc :  subject : meeting re : wharton strategy  jeff shankman would like to have a meeting re : wharton strategy . please let  me know if you would be available thursday , october 26 @ 3 : 00 . i will get  back with everyone to confirm a location . thanks !  jennifer\",0\n\"Subject: fw : chapter 3 revisions  hi grant ,  ?  chris is travelling at the moment , so i ' m contacting you on his behalf with  regards to the status of ? the completion of the chapter . ? we are dependent  on receiving this as soon as possible , since all the chapters have been  typeset and are now in the final stages of the edit process . ?  ?  please let us know when you can send this over . ?  ?  also , let us know if we can do anything .  ?  sincerely ,  julie brennan  ?  lacima group  ?  - - - - - original message - - - - -  from : chris strickland  to : grant masson  cc : julie  sent : friday , august 11 , 2000 8 : 49 am  subject : re : chapter 3 revisions  hi grant ,  thanks for that . sorry for he delay but i ' ve been away for a few days .  timely executon would be good - we have just got the proofs back for all the  other chapters from the typesetters .  best regards .  chris .  - - - - - original message - - - - -  from : grant masson  to : chris strickland  sent : wednesday , august 09 , 2000 9 : 14 am  subject : re : chapter 3 revisions  >  >  > chris :  >  > my and ronnie ' s revisions are complete . ? vince is having a statistics guru  > colleague review the material for glaring errors . ? he should be sending  you the  > completed chapter within a day or so .  >  > regards ,  > grant .  >  >  >\",0\n\"Subject: re : 2001 headcount information  dawn :  i am resending this - i forgot the staffing summary by location .  sorry !  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 07 / 07 / 2000  03 : 03 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  dawn derr @ enron  07 / 07 / 2000 10 : 45 am  to : shirley crenshaw / hou / ect @ ect  cc :  subject : re : 2001 headcount information  shirley ,  get it to me as soon as you can . thanks .  dawn  shirley crenshaw @ ect  07 / 07 / 2000 09 : 11 am  to : dawn derr / corp / enron @ enron  cc :  subject : re : 2001 headcount information  dawn :  i apologize , i have not been able to pin vince down . however , he did take  it with him this morning ( he will be in prc meetings all day . ) and i told him \\  you needed it yesterday .  i hope it is not too late . let me know .  thanks  shirley  dawn derr @ enron  07 / 05 / 2000 04 : 09 pm  to : shirley crenshaw / hou / ect @ ect  cc :  subject : 2001 headcount information  shirley ,  i need the headcount information for vince ' s group no later than thursday ,  july 6 . let me know if this is a problem .  dawn\",0\n\"Subject: fw : wharton resume submission  - - - - - original message - - - - -  from : kim whitsel [ mailto : kimberly . whitsel . wgo 2 @ wharton . upenn . edu ]  sent : friday , december 22 , 2000 6 : 51 pm  to : kristin . gandy @ enron . com  subject : wharton resume submission  summer position under wharton schedule # 1823  - kim whitsel - enron cover letter . doc  - kim whitsel - wharton 2 resume . doc\",0\n\"Subject: introduction  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 06 / 28 / 2000  07 : 55 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  on 06 / 20 / 2000 03 : 12 : 53 pm  to : \"\" vince j kaminski \"\"  cc : richard . larsen @ effem . com  subject : introduction  vince :  as way of introduction , i wanted to write a bit about mars inc . and then  about cds ,  the unit i head . mars is a private company , considered to be the largest  privately owned  manufacturing company in the world . mars is not in the habit of disclosing  its  finances ,  so the best i could do is refer to forbes ' estimate of $ 15 billion annual  revenue and  to the profit margins of similar companies between 5 - 12 % . mars is in the  business of  manufacturing confectionery ( m & m , dove bar , skittles , twix , - all ( r ) )  food ( uncle ben rice ( r ) ) pet food ( pedigree , whiskas waltham ( r ) ) and other  products .  mars has prospered during the years because of a unique philosophy that  emphasizes the  long term goals of the company . part of the philosophy is to look for win - win  solutions with  its suppliers , customers and partners .  as can be understood from the nature of the company , a large chunk of its  expenses  goes towards purchasing commodity like products , and hence the history of  researching  those commodities and the weather that influences their supply and the demand  ( people  eat less ice cream in the winter and less chocolate in the summer ) .  cds has a history of few decades in forecasting weather and has been very  successful ,  with an envious track record , in helping mars get a competitive advantage in  these arenas .  cds is a global group ( in 4 countries across two continents ) which supports  the  purchasing  function and the corporate at large in these and other arenas . it is a  multidiscipline and  multinational team with a lot to offer .  not having a ready access to the energy markets , and with a risk profile based  on  manufacturing expertise , mars has decided to look for potential partners in  this  area .  enron presence in the market place certainly makes it an interesting party to  talk to .  in talking to enron , we are careful to suggest that mars is not committing to  anything  at this point , and all we are after is to find out if there is an interest to  pursue the opportunity  we discussed in the future .  i am looking forward to our video conference call .  kind regards ,  avi  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  avi i . hauser phd mba  cds director  100 international drive mt olive nj 07828 - 1383  + 1 973 691 3664 ( office )  + 1 973 347 8189 ( fax )  + 1 973 727 3622 ( car + slow paging )  hauser @ cdsusa . com\",0\n\"Subject: model for insurance against cruel oil down side risk  fred ,  i have finished a model we talked about a few days ago .  the option we try to price is a digital on on an asian strip .  if the average price of the prompt month crude oil in a specified time window  falls below the strike price , the option pays a lump sum of money secified by  the \"\" digital payout \"\" in the model .  as a comparison , i also included european option on the asian strip .  let me know if you have any questions .  zimin  x 36388\",0\n\"Subject: re : agenda for ny mg metals visit  i agree with vince . ideally , this visit would supplement rather than  duplicate effort . however , on the front end , i would prefer a little  overkill to underkill - especially with respect to the var process . i would  defer to anjam / tanya ' s opinion as to what is necessary to get an initial  comfort level . remember that this is the first cut , but it will need to be  refined over time to the point where it is credible enough to force someone  to take a position down based on the calculatiion . if this causes some  heartburn please refer those people to me .  ted  vince j kaminski  07 / 14 / 2000 09 : 04 am  to : lloyd fleming / lon / ect @ ect  cc : richard sage / lon / ect @ ect , vince j kaminski / hou / ect @ ect , anjam  ahmad / lon / ect @ ect , bjorn hagelmann / hou / ect @ ect , ted murphy / hou / ect @ ect , dale  surbey / lon / ect @ ect , stinson gibner / hou / ect @ ect  subject : re : agenda for ny mg metals visit  lloyd ,  speaking from experience , i think that it ' s critical for tanya and anjam to  visit mg in new york  and establish direct relationship with technical people . merging two risk  management systems  requires handling many very technical issues and face to face discussions  between it and quants  will be very helpful .  vince  from : lloyd fleming 07 / 14 / 2000 03 : 42 am  to : tanya tamarchenko / hou / ect @ ect  cc : andreas . barschkis @ mgusa . com @ enron , richard sage / lon / ect @ ect , vince j  kaminski / hou / ect @ ect , anjam ahmad / lon / ect @ ect , bjorn hagelmann / hou / ect @ ect ,  ted murphy / hou / ect @ ect , dale surbey / lon / ect @ ect , stinson gibner / hou / ect @ ect  subject : re : agenda for ny mg metals visit  tanya ,  i think most of your queries can be dealt with on the phone - i ' ll be at mg  with andreas today and we ' ll call you . most of these points have already  been covered with anjam in any case . i ' m also attaching a file downloaded  from mercur ( mg ' s risk aggregation system ) showing monthly total positions  for each metal in each entity . you can fairly easily create tables and graph  what you want to see . we can talk today about getting a full deal download .  regards  tanya tamarchenko  13 / 07 / 2000 22 : 45  to : andreas . barschkis @ mgusa . com @ enron  cc : dale surbey / lon / ect @ ect , lloyd fleming / lon / ect @ ect , richard  sage / lon / ect @ ect , vince j kaminski / hou / ect @ ect , anjam ahmad / lon / ect @ ect ,  stinson gibner / hou / ect @ ect , bjorn hagelmann / hou / ect @ ect , ted  murphy / hou / ect @ ect  subject : agenda for ny mg metals visit  hi andreas ,  here are the issues we would like to discuss on our thursday meeting in ny :  1 . inputs for options valuation , in particular the origins of volatility  curves ;  2 . information on exotic options structures ( existing  3 . the data flow ( are we going to get data from london or ny ) .  4 a . storage of positions information at mg . how to extract the positions  info from  mg database into spreadsheets .  4 b . existing positions structure for each metal .  5 . introduction to concentrates trading business , key personnel .  best regards ,  tanya & anjam  713 853 3997\",0\n\"Subject: howard confirmation  hi vince , i ' m on vacation from friday ( today ) until tuesday . rachel / london  sent me this confirmation last night and think it illicts your attention - did  they get it right to meet you satisfaction ? i hope your interview goes well  with howard too . it ' s all set .  any feedback on the guys from ford credit and citigroup / oxford university ? i  own them outright - no other firms involved ! fyi : my fees are always much less  on these candidates ( exclusive ownership by myself ) as there are no middlemen  involved from these \"\" other firms \"\" . i luckily have been attracting very  talented candidates with just doing business \"\" as myself \"\" rather than mri . i  am very encouraged . please check them out , vince . . . as you know - i always  send you them first then on to my other clients - if you reject them .  bye vince , thank you for the business !  jeff  ps - use my cellphone if you want me ( the next 4 days ) for anything ; i ' m here  for you - 949 813 2241  candidate ' s name : howard haughton  date of interview : tuesday 20 february 2001  time of interview : 2 . 00 pm  interviewers : david weekes enron credit sales  & marketing  mark leahy enron credit sales &  marketing  bryan seyfried enron credit executive  markus fiala enron credit trading  robina barker - bennett enron credit  syndication  ted murphy executive rac  each interview will be approximately 45 minutes .  address : 40 grosvenor place  london  swlx 7 en  switchboard : 020 7783 - 0000  closest tube / train station : victoria  to ask for : david weekes at main reception  location map attached  ( see attached file : location map . pdf )  i will take this as confirmed unless i hear otherwise from you . if you  would like to discuss this please contact me on 020 7783 5677 .  regards  rachel quirke  human resources  * get free , secure online email at http : / / www . ziplip . com / *\",0\n\"Subject: meeting with vince set for 1 pm monday , april 17  maureen , thank you very much for taking time away from your project to talk  with me this morning . since the management decision to close info central , i  have been doing small projects that , while necessary , do not require my  education , knowledge or research capabilities .  i appreciate your suggestion that i speak to vince since i am anxious to  return to contributing at a higher level . i am attaching my resume in the  hope that it will trigger ideas for possible ways that i can use my abilities  in the research department . i have worked as an information specialist for  14 years , doing research for people at all levels in both the pharmaceutical  and energy industries . i have focused most heavily on business research , but  learn quickly and can branch out in whatever direction necessary for a  project .  i ' m looking forward to meeting with vince on monday afternoon . thanks again  for your help .\",0\n\"Subject: re : 1 . 00 pm tomorrow ?  lauren ,  1 : 00 p . m . is fine . 713 853 3848  vince  lauren urquhart  05 / 15 / 2000 12 : 08 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : 1 . 00 pm tomorrow ?  hi vince  i have just spoken to john .  he ' s requested we move your phone call to 1 . 00 pm houston time - 7 . 00 pm uk  time .  does this suit you ?  lauren\",0\n\"Subject: re : visiting enron may 4 th  susan ,  thanks . it makes sense to call christie and  explain the objectives of your visit in may .  vince  \"\" susan c . hansen \"\" on 04 / 06 / 2001 06 : 14 : 10 pm  to : vince . j . kaminski @ enron . com  cc : clovell @ stanford . edu , donna lawrence ,  hillh @ stanford . edu , bambos @ stanford . edu  subject : visiting enron may 4 th  dear vince ,  this is great news ! donna and i are delighted that you have time to see us  on may 4 th .  i ' ll be out of the office next week . by copy of this email to my  assistant , carol lovell , i will ask her to get in touch with shirley for  scheduling as well as directions on where to meet you . we ' ll be glad to  meet with christie patrick as well .  looking forward to meeting you ,  susan  at 05 : 36 pm 4 / 6 / 01 - 0500 , you wrote :  > susan ,  >  > thank you for your message . i shall be glad to meet with you on may the  > 4 th .  > i shall ask my assistant , shirley crenshaw ( 713 ) 853 5290 , to call you to  > set up the meeting .  >  > also , for your information , we have recently set up a special unit to  > coordinate enron ' s  > relationships with the universities . the person running this unit is  > christie patrick .  > please , feel free to contact her and give my name as a reference . i shall  > coordinate the meeting  > on may the 4 th with her .  >  > vince  >  >  > additional information re christie :  >  > phone : ( 713 ) 853 - 6117  >  > email : christie _ patrick @ enron . com  >  >  >  >  >  > \"\" susan c . hansen \"\" on 04 / 03 / 2001 04 : 33 : 54 pm  >  > to : vkamins @ enron . com  > cc :  > subject : visit from stanford ?  >  >  > dear dr . kaminski ,  >  > let me briefly introduce myself , i am the director of corporate relations  > for the school of engineering at stanford university . in this role , i am  > always on the watch for ways to bring our faculty together with companies  > that have an appetite for engagement with top tier research institutions .  >  > i believe you know hill huntington , who is a senior researcher with  > stanford ' s energy modeling forum . he suggested i get in touch with you for  > some ideas about contacts at enron . i ' m in the process of planning a trip  > to texas in early may along with my colleague donna lawrence , the  > university ' s director of corporate relations . we were hoping to be able to  > include a stop at enron on our itinerary . right now it appears that friday ,  > may 4 th would work best for us but we ' re at the very beginning of our trip  > planning .  >  > the purpose of our visit would be to review the current relationship  > between enron and stanford , to give you an overview of current priorities  > in the school of engineering , and ask for your help in identifying the best  > points of contact .  >  > i look forward to hearing from you about your availability ,  >  > sincerely ,  > susan hansen  >  >  >  >  > susan c . hansen  > director , corporate relations  > school of engineering  > stanford university  > stanford , ca 94305 - 4027  > ( 650 ) 725 - 4219  susan c . hansen  director , corporate relations  school of engineering  stanford university  stanford , ca 94305 - 4027  ( 650 ) 725 - 4219\",0\n\"Subject: parameter estimation  vince ,  i have put together a parameter estimation model , which is continuation of  tanya ' s model .  the estimation process is more consistent now . attached are the model and a  brief  write - up of the methods . if you see any problem / ways to improve it , please  let me know .  best ,  alex\",0\n\"Subject: darden case study on \"\" the transformation of enron \"\"  sherri :  vince kaminski is available from 2 : 00 pm - 5 : 00 pm on tuesday , april 18 .  sherri : as a side note , professor bodily was visiting with vince yesterday  and was impressed with the pictures that are in each of the elevators -  showing enron ' s \"\" vision and values \"\" . he asked me if i could possibly  find out how he could get copies of the prints . are they available anywhere ,  and to anyone ? did our graphics dept . do them ?  if you have any information , please let me know .  thanks !  shirley  3 - 5290  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 03 / 30 / 2000  02 : 36 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  03 / 30 / 2000 02 : 33 pm  to : shirley crenshaw / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : darden case study on \"\" the transformation of enron \"\"  shirley ,  please , provide this info .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 30 / 2000  02 : 33 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron north america corp .  from : sherri sera @ enron 03 / 30 / 2000 12 : 47 pm  to : lou l pai / hou / ees @ ees , gene humphrey / hou / ect @ ect , ken rice / enron  communications @ enron communications , andrew s fastow / hou / ect @ ect , vince j  kaminski / hou / ect @ ect  cc : karen owens / hou / ees @ ees , bert frazier / hou / ect @ ect , mercedes estrada / enron  communications @ enron communications , bridget maronge / hou / ect @ ect , mark  palmer / corp / enron @ enron , katherine brown / corp / enron @ enron , fabricio  soares / hou / ect @ ect  subject : darden case study on \"\" the transformation of enron \"\"  gentlemen ,  jeff has asked that each of you make time to meet with professors bruner and  bodily regardig the above referenced case ( i have attached a project overview  for your review ) .  they are scheduled to be in houston on tuesday , april 18 , to begin conducting  interviews ( some of which may be videotaped ) . please let me know your  availablility on that date .  thanks for your help , and please don ' t hesitate to call me ( x 3 - 5984 ) should  you need additional information . srs\",0\n\"Subject: access on the block : international transmission auctions - cera a  lert - december 20 , 2000  title : access on the block : international transmission auctions are opening  european power markets  e - mail category : cera insight  cera knowledge area : european power  despite an apparent impasse in negotiations among european transmission  system operators , regulators , and the european commission in florence ,  auctions of international transmission capacity ( itc ) in france , the united  kingdom , denmark , belgium , italy , austria , switzerland , slovenia , and the  netherlands are opening access between countries and paving the way for the  single european marketplace .  however , the patchwork auctioning of access to itc leaves important issues  unresolved . the most significant of these include the potential for gaming ,  third - party transit , and the allocation of auction proceeds . as they stand ,  these issues , cera believes , are likely to lead to action at the european  level and the eventual imposition of a more integrated scheme .  nevertheless , current plans to open most of europe ' s itc represent a  watershed of activity that will hasten transparency in the market and  determine trade flows and signal transmission investment in 2001 .  international auctions are opening markets  a major portion of international transmission capacity on the continent will  be allocated by auction in 2001 ( see table 1 ) . in cera ' s view auctions for  itc are likely to have the greatest impact during 2001 in the following areas :  * increasing market transparency . the posting of available transmission  capacity on yearly , monthly , and daily bases will facilitate the market ' s  efficient usage of scarce interconnector capacity . for the first time ,  signals for new transmission investment , power flows , and transmission asset  valuation will come from the market .  * increasing cross - border trade . although auctions may not reduce uncertainty  in the marketplace initially , the effect of heightened transparency in access  rules and prices will soon work to increase trade . secondary markets for  interconnector capacity will add to the number of actively traded power  products and work to increase the overall level of trade . ?  * increasing price correlation . auctions will replace nonmarket - based  allocation methods such as long - term capacity reservation . the dynamic  character of shorter - term auctions , combined with an expected secondary  market for capacity , should bring access to international capacity in line  with the needs of the market . in this way the market will be able to adjust  more rapidly to changes in local conditions and thereby work to correlate  pricing points .  * increasing competition . once players have secured access to itc at a given  price , they will be looking to sign supply contracts or integrate the  capacity into structured deals . the result could be more aggressive  maneuvering on the part of incumbents and new entrants alike , resulting in  greater competition at the national level .  * reducing the competitiveness of imports . the results of international  transmission capacity auctions will determine the competitiveness of imported  power into domestic markets . final prices offered for itc will reflect the  relative cost of power between markets and work to make cheaper power more  expensive to import .  * spurring investment in transmission . the money raised through auction could  provide transmission companies with the financial capability to invest in  upgrading international transmission links . access to international  transmission capacity between the netherlands , germany , and belgium in 2001  was auctioned for 63 million euros ( see http : / / www . tso - auction . org for  details ) . ? auctions for access into spain , france , and italy are expected to  realize a premium for access to highly coveted markets .  connecting rather than integrating markets  auctions between national grids , or more accurately commercial grids , are a  pragmatic approach to the problem of granting access to scarce international  transmission capacity on an open and transparent basis . the auctions will  open access to interconnectors and at the same time reward transmission  system operators .  even so , the proposed approaches are not likely to satisfy market players or  the stated objectives of european policymakers . in cera ' s view the following  issues may eventually bring down the hammer on itc auctions :  * third - party transit . the bilateral nature of itc auctions perpetrates the  problem of tariff pancaking and discriminates against trade involving transit  through a third grid . this is ultimately inconsistent with the european  commission ' s objective of a single european power market . the fact that  physical power flows do not follow contractual flows and almost always  transit third - party grids further weakens the legitimacy of the approach .  * transaction - based scheme . although still transactional in nature ( tied to a  specific deal ) , auctions fall within the european commission ' s stated  preference for market - based mechanisms for allocating international  transmission capacity . it remains to be seen how successful this approach is  in achieving integration of national markets . action at the european level  could move allocation of itc in the direction of nontransactional mechanisms  such as market splitting , counter trading , or redispatching .  * gaming of auctions . auctions will in theory allocate access to transmission  on a nondiscriminatory market basis to those that value it most . in practice  it remains to be seen if gaming can be avoided . even though most of the  auctions have placed limits on ownership of transmission capacity , tactical  maneuvers could bid up transmission prices as players act to raise the price  of imported power .  * allocating auction proceeds . one likely outcome of auctions will be the  transfer of profits between players as transmission owners recoup some of the  rents currently reaped by other players . this will works to raise the value  of transmission assets relative to generation , suppliers , or traders . it  remains to be seen how funds from auctions will be allocated among  transmission companies and the grid , as transmission is still currently  subject to monopoly regulation .  * * end * *  come shoot the rapids with us at ceraweek 2001 , \"\" shooting the rapids :  strategies and risks for the energy future \"\" in houston , february 12 - 16 ,  2001 ! ? for more information and to register , please visit  http : / / www 20 . cera . com / ceraweek /  to make changes to your cera . com account go to :  forgot your username and password ? go to :  http : / / www 20 . cera . com / client / forgot  this electronic message and attachments , if any , contain information from  cambridge energy research associates , inc . ( cera ) which is confidential and  may be privileged . unauthorized disclosure , copying , distribution or use of  the contents of this message or any attachments , in whole or in part , is  strictly prohibited .  terms of use : http : / / www 20 . cera . com / tos  questions / comments : webmaster @ cera . com  copyright 2000 . cambridge energy research associates\",0\n\"Subject: msl 50 confirmation  thank you for your involvement with the 2000 isuzu msl 50 bike tour , a texas  cycling tradition . check the bottom of this email for a custom donation  letter that you can use for on - line donations in your name .  here is a copy of the information you submitted :  isuzu msl 50 contribution confirmation  contribution on behalf of : john norden / jnorden @ enron . com  description : donations  amount : $ 25 . 00  order _ id : 9910  name : wincenty j . kaminski  company : enron  addressl : 1400 smith  address 2 : ebl 962  city : houston  state : tx  zip : 77002  country : united states of america  phone : 281 367 5377  e - mail : vkamins @ enron . com  account name : wincenty j . kaminski  card type : visa  total : $ 25 . 00\",0\n\"Subject: re : insurance derivs  steve ,  i have a book edited by helyette regarding insurance derivatives .  i shall make a few copies of the most important articles  for you .  vince  steven leppard  11 / 06 / 2000 05 : 39 am  to : vince j kaminski / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect  cc : gillian lockwood / lon / ect @ ect  subject : insurance derivs  vince , vasant  i ' ve just been speaking to gillian lockwood from our tax group , who is  interested in your work on ins . derivs . have you any general articles on the  principles of pricing these instruments ?  many thanks ,  steve\",0\n\"Subject: cera monthly summary - - july 2000 - cera monthly summary  cera monthly summary : sent wed , august 02 , 2000  title : cera monthly summary - - july 2000  author : cera  e - mail category : monthly summary  product line : monthly summary ,  url : http : / / www . cera . com / cfm / track / eprofile . cfm ? u = 5166 & m = 1298 ,  table of contents  asia pacific energy  after the panic : east asia three years later  url : http : / / www . cera . com / client / ap / pr / 070700 _ 10 / ap _ pr _ 070700 _ 10 _ ab . html  state government finances in india : a looming crisis or a driver for  accelerated energy sector reform ?  url : http : / / www . cera . com / client / ap / db / 070700 _ 15 / ap _ db _ 070700 _ 15 _ ab . html  cera insight \u0001 * china ' s power sector : uneven recovery , uneven reform  url : http : / / www . cera . com / client / ap / alt / 070700 _ 13 / ap _ alt _ 070700 _ 13 _ ab . html  cera insight : the second phase of deregulation in japan ' s power industry . . .  url : http : / / www . cera . com / client / ap / db / 072500 _ 16 / ap _ db _ 072500 _ 16 _ ab . htm  climate change and environment  cera watch : moving toward more diversified strategies  url : http : / / www . cera . com / client / cce / wch / 072500 _ 18 / cce _ wch _ 072500 _ 18 _ ab . html  energy & e - business  retail energy : pioneering a nonenergy brand in europe  url : http : / / www . cera . com / client / e 2 / alt / 071300 _ 15 / e 2 _ alt _ 071300 _ 15 _ ab . html  disruptive technology , industry structure , and competitive advantage  url : http : / / www . cera . com / client / e 2 / pr / 072000 _ 10 / e 2 _ pr _ 072000 _ 10 _ ab . html  energy and e - business : reflections on the cera summit  url : http : / / www . cera . com / client / e 2 / db / 072800 _ 15 / e 2 _ db _ 072800 _ 15 _ ab . html  eurasia energy  russia ' s governors could make or break energy industry reform  url : http : / / www . cera . com / client / fsu / db / 071000 _ 15 / fsu _ db _ 071000 _ 15 _ ab . html  turkish ipps near approval  url : http : / / www . cera . com / client / fsu / alt / 072100 _ 16 / fsu _ alt _ 072100 _ 16 _ ab . html  european gas  running fast to stay still : gas prices in central europe  url : http : / / www . cera . com / client / eg / alt / 070300 _ 15 / eg _ alt _ 070300 _ 15 _ ab . html  signposts to a high demand path for natural gas : . . .  url : http : / / www . cera . com / client / eg / alt / 070700 _ 11 / eg _ alt _ 070700 _ 11 _ ab . html  retail energy : pioneering a nonenergy brand in europe  url : european gas clients :  european power  first cracks in \"\" fortress france \"\" : how long before the french market opens ?  url : http : / / www . cera . com / client / ep / db / 071100 _ 10 / ep _ db _ 071100 _ 10 _ ab . html  retail energy : pioneering a nonenergy brand in europe  url : http : / / www . cera . com / client / ep / alt / 071300 _ 15 / ep _ alt _ 071300 _ 15 _ ab . html  turkish ipps near approval  url : http : / / www . cera . com / client / ep / alt / 072100 _ 16 / ep _ alt _ 072100 _ 16 _ ab . html  forum for it strategy  white paper :  url : http : / / www . cera . com / client / fits / pr / 073100 _ 12 / fits _ pr _ 073100 _ 12 _ ab . html  summary of discussions :  url : http : / / www . cera . com / client / fits / pr / 072800 _ 15 / fits _ pr _ 072800 _ 15 _ ab . html  global energy  middle east peacemaking : what comes next ?  url : http : / / www . cera . com / client / ge / alt / 072600 _ 18 / ge _ alt _ 072600 _ 18 _ ab . html  latin america energy  mexico elections : the pan triumvirate  url : http : / / www . cera . com / client / la / alt / 070300 _ 16 / la _ alt _ 070300 _ 16 _ ab . html  brazil downstream oil logistics : opportunities with open access ?  url : http : / / www . cera . com / client / la / db / 072500 _ 19 / la _ db _ 072500 _ 19 _ ab . html  argentine power markets : june prices rise with increased demand . . .  url : http : / / www . cera . com / client / la / alt / 072700 _ 12 / la _ alt _ 072700 _ 12 _ ab . html  coal bed methane in western canada - - a sleeping giant ?  url : http : / / www . cera . com / client / nag / db / 070600 _ 12 / nag _ db _ 070600 _ 12 _ ab . html  north american gas  monthly briefing : the pressure remains  url : http : / / www . cera . com / client / nag / alt / 071400 _ 15 / nag _ alt _ 071400 _ 15 _ ab . html  a quiet energy crisis ( this op - ed article ran in the washington post on july  21 , 2000 )  url : http : / / www . cera . com / client / nag / alt / 072600 _ 16 / nag _ alt _ 072600 _ 16 _ ab . html  north american electric power  a quiet energy crisis ( this op - ed article ran in the washington post on july  21 , 2000 )  url : http : / / www . cera . com / client / nap / alt / 072600 _ 16 / nap _ alt _ 072600 _ 16 _ ab . html  refined products  monthly briefing : refined products line \u0001 * north american markets  url : http : / / www . cera . com / client / rp / alt / 071400 _ 18 / rp _ alt _ 071400 _ 18 _ ab . html  refined products line \u0001 * european markets  url : http : / / www . cera . com / client / rp / alt / 072000 _ 14 / rp _ alt _ 072000 _ 14 _ ab . html  market update  url : http : / / www . cera . com / client / rp / alt / 072700 _ 17 / rp _ alt _ 072700 _ 17 _ ab . html  retail energy forum  cera insight : the second phase of deregulation in japan ' s power industry . . .  url : http : / / www . cera . com / client / ref / db / 072500 _ 16 / ref _ db _ 072500 _ 16 _ ab . html  weathering the summer price volatility and highs - - how will retail marketers  fare ?  url : http : / / www . cera . com / client / ref / alt / 072700 _ 16 / ref _ alt _ 072700 _ 16 _ ab . html  western energy  power market caps : lower prices at higher risk ?  url : http : / / www . cera . com / client / ce / alt / 070700 _ 16 / ce _ alt _ 070700 _ 16 _ ab . html  the west : keeping its fingers crossed  url : http : / / www . cera . com / client / ce / alt / 072600 _ 16 / ce _ alt _ 072600 _ 16 _ ab . html  world oil  oil market politics : the saudi dilemma  url : http : / / www . cera . com / client / wo / alt / 070600 _ 18 / wo _ alt _ 070600 _ 18 _ ab . html  after the panic : east asia three years later  url : http : / / www . cera . com / client / wo / pr / 070700 _ 10 / wo _ pr _ 070700 _ 10 _ ab . html  opec : arguing over output  url : http : / / www . cera . com / client / wo / alt / 071800 _ 18 / wo _ alt _ 071800 _ 18 _ ab . html  * * end * *  please follow url at top of page for a listing of the above reports with  associated summaries and links to full reports . note : should the above url  not work , please use the following url :  account changes  to edit your personal account information , including your e - mail  address , etc . go to : http : / / eprofile . cera . com / cfm / edit / account . cfm  this electronic message and attachments , if any , contain information  from cambridge energy research associates , inc . ( cera ) which is  confidential and may be privileged . unauthorized disclosure , copying ,  distribution or use of the contents of this message or any attachments ,  in whole or in part , is strictly prohibited .  terms of use : http : / / www . cera . com / tos . html  questions / comments : webmaster @ cera . com  copyright 2000 . cambridge energy research associates\",0\n\"Subject: from vicky windsor  dear vince ,  how are you ? well i hope .  i hope you don \u0001 , t mind me writing to you . you may remember that 5 months ago  i left risk publications and moved to a charity . having been here for only a  few months , i have decided that this job is not for me ( i miss the buzz of a  corporate office ) and i have decided to move back into the corporate sector .  because of my previous experience and knowledge of the energy sector , i am  very interested in moving into this area . i have always thought that it  would be great to work for enron because it is such a dynamic company and i  am planning to approach the london office to discuss any opportunities ,  which might be available . i am particularly interested in product marketing  and research , although i am very open - minded at the moment . i wondered  whether you could recommend the right person to speak to in london .  i know that you are incredibly busy , but any help you can give me would be  fantastic vince .  thanks and best regards ,  vicky windsor  get your private , free e - mail from msn hotmail at http : / / www . hotmail . com .  share information about yourself , create your own public profile at  http : / / profiles . msn . com .\",0\n\"Subject: offsite meeting - - great divide lodge - - invited guest list  gentlemen :  attached please find the \"\" proposed \"\" final invitees list for the technical ,  research , and operations offsite meeting to be held april 27 - 29 , 2000 at the  great divide lodge in breckenridge , colorado . i am working with shirley  crenshaw to secure cost - efficient travel and meeting arrangements for the  entire group . in order to secure a group rate , we must make sure we have a  \"\" final headcount \"\" in place . please let me know by tuesday , march 28 th at  12 : 00 noon if you have any additions or corrections to the attached list .  many thanks in advance for your prompt attention !\",0\n\"Subject: re : infocast ' s valuing electric power assets and companies : a real  options perspective  britta ,  thanks for your message .  i have several commitments at the time of the conference  and have to decline with regret .  vince  \"\" britta bothe \"\" on 04 / 12 / 2000 03 : 52 : 46 pm  please respond to  to :  cc :  subject : infocast ' s valuing electric power assets and companies : a real  options perspective  dear mr . kaminsky ,  as i mentioned on your voice mail , infocast is going to host an \u0001 & valuing  electric power assets and companies : a real options perspective \u0001 8 conference  to be held on july 31 - august 2 , 2000 , in chicago , il - i would like to  explore your or your organization ' s possible participation at this event  with you . this conference has been designed to bring together industry  professionals , like you , to provide the latest details on a \"\" real options \"\"  approach to electric power asset valuation .  i have attached a draft program outline for your review . if you or someone  else at your company is interested in presenting on one of the topics please  let me know .  i truly appreciate your taking the time to review the conference schedule  and hope that you will consider participating . i am running behind schedule  in finalizing this program . i will call you on tomorrow to follow up with  you on this invitation . in the meantime , if you have any questions or  suggestions , please do not hesitate to contact me at ( 818 ) 888 - 4445 , ext .  30 . i hope you can join us for this event .  sincerely ,  britta bothe  infocast  conference manager  - ea & cv , program outline , scenario 1 . doc\",0\n\"Subject: interview with hao peng  hello kathy :  the research group would like to bring hao peng in for an interview . his  resume is attached .  the following would be included in the interview schedule . since all of  them are in the research group ( with the exception of hr ) we can have the  interviews in ebl 938 .  vince kaminski  stinson gibner  zimin lu  paulo issler  grant masson  krishna krishnarao  vasant shanbhogue  hr ?  mr . peng ' s availability is flexible with the exception of may 2 and may 4 ( he  has finals ) .  if you need anything else , please let me know .  thanks !  shirley  - cover - enron . doc  - resume - gsia . doc\",0\n\"Subject: wharton trip january 18 , 2001  jeff and vince . . . \"\" fyi ' ' . . . christie .  - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 12 / 19 / 2000  09 : 23 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  melinda mccarty @ enron  12 / 19 / 2000 03 : 05 pm  to : christie _ patrick @ enron . com  cc :  subject : wharton trip january 18 , 2001  cp -  fyi - attached is the memo that i faxed to the parkplace warwick . i copied  donna piazze at wharton also .  maria\",0\n\"Subject: p . v . krishnarao ' s expenses  good afternoon sandeep :  i sent krishna ' s expenses for his recent trip to our accounting dept . this  morning and expensed them to the research group ' s co and rc # .  however , we need to be reimbursed for these expenses and i would like  to know the best way to do this . our accounting dept . thought we should  just send an invoice with the back up material to dabhol power co . asking  them to cut a check made payable to enron corp . and then it would be  credited to our co # and rc # .  please let me know if this is acceptable , and if so , who the invoice should  be made out to and where i should send it .  i appreciate your assistance in this matter .  have a great day !  shirley crenshaw  713 - 853 - 5290\",0\n\"Subject: siam conference  dear mr . kaminski ,  ?  i was one of the participants of the siam conference which was held last  week - end , and i have very much enjoyed your presentation . at the end of the  session , i was hoping to talk to you , but unfortunately you were already  gone . you said that if we were interested , you could e - mail a copy of your  talk . i would appreciate if you could send a copy to this e - mail address .  ?  i am a mathematics ph . d . student at texas a & m university and i will be  graduating this august . i am very much interested in working in the modeling  of energy markets . can you please tell me whom i should send my resume , and  who i should contact in your company about a possible position in your  research group .  ?  thank you for your time .  ?  sincerely  ?  g . aysu bilgin  texas a & m university  department of mathematics  ?  get your free download of msn explorer at http : / / explorer . msn . com\",0\n\"Subject: request submitted : access request for amitava . dhar @ enron . com  you have received this email because the requester specified you as their  manager . please click  approval to review and act upon this request .  request id : 000000000011185  request create date : 12 / 21 / 00 4 : 20 : 10 pm  requested for : amitava . dhar @ enron . com  resource name : vpn  resource type : applications\",0\n\"Subject: re : fw : chapter 3 revisions  - - - - - - - - - - - - - - - - - - - - - - forwarded by grant masson / hou / ect on 08 / 16 / 2000 03 : 56  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron north america corp .  from : grant masson 08 / 16 / 2000 03 : 57 pm  to : \"\" julie \"\" @ enron  cc :  subject : re : fw : chapter 3 revisions  julie :  unfortunately , our reviewer has not come back to us with comments , so i am  sending you the final version without the benefit of review .  the attached zipped file contains the second half of the chapter for which i  was responsible . vince will send you his half separately . putting them  together should be a simple matter of cut and paste , assuming that vince has  not changed his equation , figure , or table numbering .  i presume chris will be reading through the chapter once again for editorial  reasons . there is one place where i would ask him for specific redaction :  table 3 . 6 \"\" model specifications \"\" on page 14 / 15 has a column labeled \"\" equation  reference \"\" . some cells are blank because the equations specified have not  been referenced previously in the parts i have written . nevertheless , the  concepts are surely introduced elsewhere in the book , and it may be helpful  for chris to insert the appropriate reference in this table . alternatively ,  one could simply delete the column .  if i can help in any way , please do not hesitate to contact me .  w ) 713 853 4768  h ) 713 664 7260  work email : grant . masson @ enron . com  personal email : gmasson @ email . com  regards ,  grant .\",0\n\"Subject: it resources  guys , in response to the offsite , beth perleman is now a dedicated ena  resource on the it side of the business . she will be joining the ena  management team of which you are all a part . she will participate in the  friday management meeting to address it issues and opportunities . on friday  may 18 th , beth will go over her management team and her available resources .  at every friday meeting , she will present the current project queue ( with  associated cost / capital budget and sponser ) and the management team will set  priorities and necessary incremental resources .  regards  delainey\",0\n\"Subject: wti model  stinson ,  this is the latest wti model for open - close trading .  zimin\",0\n\"Subject: re : cairn gas purchase bid  doug ,  i shall be glad to meet you and help you with the project .  my assistant will call you to set up a meeting latter this week .  vince  douglas s parsons @ enron _ development  08 / 15 / 2000 08 : 05 am  to : vince j kaminski @ ect  cc :  subject : re : cairn gas purchase bid  vince ,  i ' m following up on our conversation late last week and i ' m interested to see  what your group can advise , per doug leach ' s recommendation . as you can see  he is raising a major red flag in regards to our non - binding offer to cairn .  since , it was late the other night i didn ' t touch base with sandeep kohli ,  but bobby and i are probably the most knowledgeable in regards to the indian  gas market . please let me know what information you may need from us to  provide some guidance .  regards ,  doug  - - - - - - - - - - - - - - - - - - - - - - forwarded by douglas s parsons / enron _ development on  08 / 15 / 2000 07 : 51 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  bobby farris  08 / 14 / 2000 10 : 19 pm  to : douglas s parsons / enron _ development @ enron _ development  cc :  subject : re : cairn gas purchase bid  there is no harm in seeing what kaminski ' s group will advise . do you have  any problem in contacting them ?  bobby  doug leach @ ect  08 / 14 / 2000 07 : 45 am  to : douglas s parsons / enron _ development @ enron _ development  cc : marc de la roche / hou / ect @ ect , bobby  subject : re : cairn gas purchase bid  i strongly disagree with the pricing and structure of your non - binding offer  to cairn . this reminds me of the debacle in brazil . you should have contacted  vince kaminski ' s research group as we talked about before an offer was made .  this is a bad deal .  douglas s parsons @ enron _ development  08 / 12 / 2000 01 : 51 am  to : doug leach @ ect , marc de la roche @ ect  cc :  subject : cairn gas purchase bid  doug & marc ,  fyi , please let me know if you think we ' re totally off base . i appreciate  your help .  regards ,  doug  - - - - - - - - - - - - - - - - - - - - - - forwarded by douglas s parsons / enron _ development on  08 / 12 / 2000 01 : 48 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  douglas s parsons  08 / 11 / 2000 06 : 24 am  to : bobby farris / enron _ development @ enron _ development  cc : f b virani / enron _ development @ enron _ development , ujjwal  dey / enron _ development @ enron _ development , nilesh  subject : cairn gas purchase bid  bobby ,  after meeting with cairn today in delhi , my perception is that our offer was  received well . they were more open and relaxed then they were on wed .  morning and made several encouraging comments about our price range , ( once we  talked through the price movements ) , and the seriousness of our gas related  activities on the west coast of india , in light of the ioc agreement . i  think the overall package is attractive to them and no serious objections  were raised . we did talk to some extent about the guarantees , but we didn ' t  get too far and they ' re willing to accept at this point that what ' s  acceptable to the lng suppliers , should be suitable for their needs .  however , they would like to understand the corporate structure and assets of  enron energy marketing a little better and i told them i would get back to  them on that point .  david and ajay were up in hazira yesterday looking at some property for their  gas treatment facility , which apparently is across the road from pipeline  access . while there they went and looked at shell ' s proposed lng site after  walking the last 1 km , inaccessible to their 4 wd vehicle and not surprisingly  found a beach .  in summary , here is what we offered on a non - binding basis :  six year production plateau  85 % top  $ 3 . 67 / mmbtu net , at a base of $ 18 / bbl brent , with point of sale at the  tail - end of the gas processing plant  floor & cap of $ 15 . 50 - $ 27 . 00 / bbl  price movement : + / - $ 1 . 00 / bbl from the $ 18 / bbl base price ( on a 3 mo .  rolling average ) equals + / - $ 0 . 145 / mmbtu fixed on a quarterly basis  guarantees : same protection we ' re providing the lng suppliers under the  trust retention account  i appreciate everyone ' s help in submitting this offer .  thanks ,  doug\",0\n\"Subject: invoice for ordered papers  you have ordered the following papers :  - wp w 7613  foundations of technical analysis : computational algorithms , statistical  inference , and empirical implementation  - wp w 6250  pricing and hedging derivative securities in incomplete markets : an  e - aritrage model  the total cost ( excluding shipping ) is :  $ us 10  shipping address :  if you ordered papers for electronic delivery and experienced problems  downloading them , browse the following url ( s ) to download your paper  orders . the url ( s ) are valid for 7 days .  if you receive duplicate bills , please send a note to .\",0\n\"Subject: energy book vl . 0  vince :  i have rewritten the paragragh for chapter 3 . please read and return your  comments .  thanks ,  grant .  - - - - - - - - - - - - - - - - - - - - - - forwarded by grant masson / hou / ect on 02 / 16 / 2000 02 : 48  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  chris strickland on 02 / 15 / 2000 05 : 28 : 42 am  to : grant masson @ ect , vkamins @ ect  cc :  subject : energy book  hi grant ,  hope all is well with you . i trust you got my message via the voicemail  that ileft with vince late friday afternoon about my inability to travel -  i ' m trying to rearrange my trip for a couple of week ' s time when my ear has  cleared up , and i look forward to meeting with you one day .  i wrote to vince last week asking for a favour , but i ' m not sure ifhe is  there in houston . i know that you guys are probably very busy but i was  wondering if you can write a few sentences for me . i ' m sending out some  sample chapters to the people who responded positively ( all of them ! ) to my  request for some feedback on the book . chapter 1 has an ' overview ' of the  book with just a couple of sentences on each chapter . could you please  write a sentence or two for your chapter ?  i ' m including what i have already written ( although i think it has changed  slightly from this version ) so that you can see the style .  many thanks and best regards .  chris .  2 overview of this book  this book aims to provide an in - depth understanding of the pricing and risk  management of energy derivatives . in the remainder of this chapter we give  an overview of the fundamental principals needed to model and price energy  assets , and which underlie the rest of the book . as well as introducing  the techniques that underlie the black - scholes modelling framework we  discuss the numerical techniques of trinomial trees and monte carlo  simulation for derivative pricing which are used extensively later in the  book .  in chapter 2 we analyse spot energy prices . apart from describing  empirical prices we propose a number of processes that can be used to model  the prices . we look at the well - know process of gbm as well as mean  reversion , stochastic volatility and jump processes , discussing each , and  showing how they can be simulated and their parameters estimated .  chapter 3 , written by vince kaminski , grant masson and ronnie chahal of  enron corporation , discusses volatility estimation in energy commodity  markets . this chapter builds on the previous one . it examines in detail  the methods , merits and pitfalls of the volatility estimation process  assuming different pricing models introduced in chapter 2 . examples  from crude , gas , and electricity markets are used to illustrate the  technical and interpretative aspects of calculating volatility .  chapter 4 examines forward curves in the energy markets . although such  curves are well understood and straight forward in the world debt markets  the difficulty of storage in many energy markets leads to less well defined  curves . what we do in this chapter  chapter 5 presents an overview of the common and not - so - common derivative  structures in the energy markets and discusses their uses . examples of  products analysed in this chapter include a variety of swaps , caps , floors  and collars , as well as energy swaptions , compound options , asian ( or  average rate ) options , barriers , lookbacks , and ladder options .  chapter 6 investigates single and multi - factor models of the energy spot  price and the pricing of some standard energy derivatives . closed form  solutions for forward prices , forward volatilities , and european option  prices are derived and presented for all the models in this chapter  including a three factor stochastic convenience yield and interest rate  model with jumps .  chapter 7 shows how the prices of path dependent and american style options  can be evaluated for the models in chapter 6 . simulation schemes are  developed for the evaluation of european style options and applied to a  variety of path dependent options . in order to price options which  incorporate early exercise opportunities , a trinomial tree scheme is  developed . this tree is built to be consistent with the observed forward  curve and can be used to price exotic as well as standard american style  options .  chapter 8 develops a new methodology for valuing energy options based on  modelling the market observed forward curve . the approach results in a  multi - factor model that is able to capture realistically the evolution of a  wide range of energy forward curves and where the user defined volatility  structures can be of an extremely general form . closed - form solutions are  developed for pricing standard european options and efficient monte carlo  schemes for exotic options . the chapter finishes with a discussion of the  valuation of american style options .  chapter 9 focuses on the risk management of energy derivative positions .  in this chapter we discuss the management of price risk for institutions  that sell options or other derivatives to a client and who is then faced  with the problem of managing the risk through time . we begin with delta  hedging a portfolio containing derivatives and look at extensions to gamma  hedging - using the models from chapters 5 and 7 . the general model of  chapter 7 ideally suited to multi - factor hedging and this is also  discussed .  chapter 10 looks at the key risk - management concept of value at risk  applied to portfolios containing energy derivative portfolios . after  discussing the concept of the measure , we look at how the key inputs  ( volatilities , covariances , correlations , etc ) can be estimated . we then  compare the fours major methodologies for computing var ; delta ,  delta - gamma , historical simulation and monte - carlo simulation . finally , we  look at testing the var estimates for various underlying energy market  variables .\",0\n\"Subject: sharad ' s houston visit  sharad  as expected we didn ' t get time to discuss in detail what to do in houston .  we have discussed the subject informally , but i ' m laying it out here for  clarity , and for vince / stinson ' s information . here are my thoughts :  1 . exotica . this is the top priority , as you ' d rightly identified yourself .  a . learn how to build xlls .  b . catalogue functions in houston exotica not yet available in london .  c . catalogue differences between inputs to london and houston exotica  functions .  d . produce london xll that allows current function calls to be used where  possible , and incorporates new functions .  e . update documentation as appropriate .  if you do nothing else in your two weeks , i ' ll be very happy with this .  main contacts are paulo and zimin .  2 . understand american monte carlo ( amc ) . the aim is to get a feel for amc ' s  characteristics . before we embark on the use of amc for real option  valuation , i ' d like to understand how it behaves for financial options . i  suggest something like the following :  a . produce amc code for single gbm for american option . compare greeks  against those from appropriate tree methods .  b . two gbm spread option model , to compare against 1 - d numerical integration  method . although the \"\" american \"\" bit of amc isn ' t going to be used here , it  will be interesting to think about the bucketing issue in price / payoff space  and , again , the greeks .  c . some form of mean reverting model , preferably two factor .  d . hjm for pure financial option valuation .  if you get somewhere on a - d , and amc behaves sensibly on pure financial  models , then i ' ll be very keen to roll it out for real option valuations .  vince / stinson - since i ' m expecting the worst from it i . t . o . email support ,  would you be good enough to print this email out and hand it to sharad ?  many thanks ,  steve\",0\n\"Subject: a applicable model  kim ,  after yestersday ' s meeting , i ' ve come up with an idea which is applicable to  the zone ef and  seems also to be applicable to the broader area . the model assumes that if  there are positive spreads of energy  products between pairs of locations , we can always find the possibilities of  swaptions . this assumption , as  discussed with jim and sean , is a reasonable approximation . i suggest that  the prototype be built up at this  model if you think that it is rational . if you interested in the model , i  will explain it to all of you .  best regards ,  youyi\",0\n\"Subject: gone tuesday  vince ,  a reminder that i ' m gone on tuesday to spearman .  status of projects :  1 . compound option for power structuring ( bernie , edith cross , nick ? )  alex has finished the model . paulo has done some validation so we can  probably release it .  this is will be used for an exotic book , so we may have to help with var  interface , etc .  2 . followed up with laine borgman on dg contract . we still need legal ' s  sign off .  3 . left a message and email about tom barkley with molly magee and told tom  that an offer would be coming by next week .\",0\n\"Subject: re : mid - year 2000 performance evaluation due  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 08 / 11 / 2000  07 : 55 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  08 / 11 / 2000 07 : 49 am  to : \"\" perfmgmt @ enron . com \"\" @ enron  cc :  subject : re : mid - year 2000 performance evaluation due  i haven ' t received yet the final performance evaluation results .  the usual practice is to defer the reviews till the final summary rankings  are available .  please , let me know when i can expect it form the hr .  thanks .  vince kaminski  \"\" perfmgmt @ enron . com \"\" < perfmgmt on 08 / 10 / 2000 05 : 16 : 14 pm  to : vkamins @ enron . com  cc :  subject : mid - year 2000 performance evaluation due  sep 01 , 2000  the above date is when the mid - year 2000 performance evaluation forms for  directors and below are due in human resources .  if you have not already done so , supervisors should begin the process of  giving feedback to their employees . the evaluation forms used to provide  feedback to the employee can be obtained via the performance management  system ( pep ) .  to download the evaluation forms from pep , please follow the steps below :  1 . log into pep at http : / / pep . enron . com .  2 . under supervisor services , click supervisor evaluation forms .  3 . right - click on each employee and choose ' save target as . . . ' or ' save link  as . . . '  4 . select your own personal directory , choose a file name to save to and  click ' save ' .  5 . repeat for each employee .  6 . now you can complete your evaluation forms from your personal directory  and will not have to access pep to finalize the form .  upon completion , please forward the signed evaluation forms to your hr  representative no later than friday , september lst 2000 .  if you have any questions , please contact the pep help desk at the following  numbers :  in the u . s . : 1 - 713 - 853 - 4777 , option 4  in europe : 44 - 207 - 783 - 4040 , option 4  in canada : 1 - 403 - 974 - 6724 ( canada employees only )  or e - mail your questions to : perfmgmt @ enron . com  your employees that should receive mid - year evaluations are listed below :  crenshaw , shirley j  ganjoo , shalesh  gibner , peyton s  kollaros , alexios  krishnarao , pinnamaneni v  masson , grant s  raymond , maureen j  roberts , michael a  sergeev , mikhail  shanbhogue , vasant  vernon , clayton j\",0\n\"Subject: a computer and internet connection for you and your family  as you know , technology is critical to enron ; it drives our success and will  continue to do so in the future . technology has helped enron create new  businesses like enron broadband services and enron net works , and it is  responsible for applications such as enrononline and enroncredit . com . you \u0001 , ve  seen what technology can do at work . now we want you and your family to  realize its benefits at home .  with that in mind , we are excited to let you know that we are introducing the  clickathome  program , which will give each employee a computer for use at home . where  technology permits , we will also subsidize an internet connection . with the  click of a mouse , a home computer plus internet access will put a world of  internet knowledge at your family \u0001 , s fingertips .  we have just signed an agreement with dell computer corporation to provide  the computer hardware . we wanted to let you know about the program now in  case you and your family were considering the purchase or upgrade of a home  computer or internet connection in the next few months . the scope of  clickathome includes the following :  ? basic package : dell desktop computer with a high - speed processor , floppy  disk drive , mouse , speakers , monitor , modem , cd - rom drive and windows 2000  software . employees will have the option to receive a subsidized internet  connection , including broadband , where commercially available .  ? participation : this program will be available to active regular full - time  and regular part - time employees of enron and its wholly owned subsidiaries ;  however , employees of some enron companies ( portland general electric , eott ,  enron facility services ) may not be able to participate due to legal ,  accounting , tax , labor or business reasons . eligibility includes being  employed at the time of implementation .  ? timing : u . s . employee sign - up will begin in early 2001 , with delivery of  the equipment and internet connection to follow shortly thereafter . delivery  of equipment to participating non - u . s . employees is targeted for late 2001 .  details about this program are still being finalized . to address some of  your initial questions , we \u0001 , ve posted a question - and - answer document on  http : / / clickathome . enron . com . we will schedule an espeak session in the near  future where you will have an opportunity to ask questions . or , you can  submit your questions and comments to clickathome @ enron . com .  we are excited to extend our investment in technology to you and your  family . we believe this program takes communication at enron to a new level  by creating endless possibilities for you to experience and participate in  the broadband internet revolution . it is just another reason why we believe  enron is a great place to work .\",0\n\"Subject: entouch newsletter  business highlights  us natural gas teams  the us natural gas marketing originations teams have had a successful lq  2001 . in addition to mid market activity led by fred lagrasta , new  origination desk heads and marketing teams have been set up across the us and  are led by the following : west gas origination - barry tycholiz , central gas  origination - laura luce , east gas origination - frank vickers . these teams  have made significant inroads in 2001 , focusing on customer coverage , new  accounts , transportation syndication , risk management products and market  intelligence . all of these individuals are open to any questions regarding  the new businesses .  siebel summary  eim ' s ability to rapidly transform its designated forest products and steel  markets is dependent upon its ability to effectively manage the market  participants and accelerate their adoption of eim ' s business strategy . to  achieve this objective , eim will implement siebel sales enterprise , a  customer - focused centralized database that effectively leverages all  information learned about our customers and enables sharing of this  information throughout the front , mid and back offices . siebel is designed  to help in - house and mobile sales professionals in large organizations manage  accounts , contacts , activities and opportunities associated with the sales  cycle . eim fundamentals is leading the siebel implementation effort .  in the news  enron is hosting the new york energy risk management seminar at the st . regis  hotel in new york city on april 5 , 2001 . topics include : power outlook ,  natural gas outlook , and weather risk management . to rsvp , contact laura pena  at x 3 - 5376 .  welcome  new hires  egm - sherman franzen , fariba karimi , ryan krogmeier , lawrence marcus  eim - ronald barnes , paul hanks , chad ihrig , stella pedroza , linda silva  ena - hagar kedem , steven merriss , courdney williams , diane fellers  transfers  ena \u0001 ) tammie schoppe , lynna kacal , johnna kokenge , karen jones , stuart  zisman , anne labbe  egm \u0001 ) justin cornett , george thomas , richard yeboah , phi khanh wolfe , alan  harvey , philip berry , ethan schultz , sanjeev khanna , mingcheng lian  nuggets & notes  \"\" we have to move paper , make money and move the industry . \"\" - - rodney  malcolm , vice president / forest products eim  congratulations to angela and chris connelly , manager in coal trading . they  are the proud parents of nicholas connelly , born on march 17 and weighed  7 lbs . 11 oz . ( rumor has it that at 48 hours of age , he had more hair than his  father ! )  congratulations to carmen and glenn wright , director in steel origination who  welcomed little lauren nicole born march 12 . she weighed in at 7 lbs . 13 oz . and  debuted with a full head of hair and \"\" making lots of noise . \"\"  legal stuff  the information contained in this newsletter is confidential and proprietary  to enron corp . and its subsidiaries . it is intended for internal use only  and should not be disclosed .\",0\n\"Subject: the spreadsheet for talon deal  vince ,  here is the spreadsheet for your review .  thanks .  rakesh\",0\n\"Subject: re : storage meeting  dear rex ,  i believe there might be a few additions to this core group . i have spoken  with sherron watkins and she is handling the storage side of the deal from  product development perspective ( john bloomer ' s team ) and so she would need  to be a part of this core group . i am trying to determine who else is  involved with storage within ebs so that we don ' t replicate our efforts . i  am hoping that after tomorrow ' s meeting we will have a better picture of how  to go forward on this project . please let me know if you need any further  information regarding this project . thank you very much for your interest  and i look forward to meeting you in the near future .  sincerely ,  shalesh ganjoo  rex _ shelby @ enron . net on 03 / 09 / 2000 01 : 52 : 25 pm  to : shalesh . ganjoo @ enron . com , mark _ s _ palmer @ enron . net  cc : jim _ crowder @ enron . net  subject : re : storage meeting  shalesh , mark - -  thanks for pulling this together . is the core team mark , mary , kara , mike ,  virawan , and shalesh ? i know that there is a lot of interest in this topic ,  but  you folks will need to carefully control the noise level from all the input .  let me know how i can help . best regards .  - - rex  shalesh . ganjoo @ enron . com on 03 / 09 / 2000 01 : 05 : 56 pm  to : mark s palmer / enron communications @ enron communications , jim  crowder / enron  communications @ enron communications , jean mrha / enron  communications @ enron  communications , kara knop / enron communications @ enron communications ,  stinson _ gibner @ enron . com , vince _ j _ kaminski @ enron . com , david cox / enron  communications @ enron communications , shalesh . ganjoo @ enron . com , john  bloomer / enron communications @ enron communications , john griebling / enron  communications @ enron communications , richard reichardt / enron  communications @ enron communications , scott yeager / enron  communications @ enron communications , david berberian / enron  communications @ enron communications , rex shelby / enron  communications @ enron  communications , mike haney / enron communications @ enron communications ,  ravi  thuraisingham / enron communications @ enron communications  cc :  subject : re : storage meeting  ladies and gentlemen ,  stinson just pointed out that i forgot to mention that the meeting is  scheduled  for tomorrow ( 10 th of march 2000 ) between 2 : 30 pm and 4 : 30 pm . it may seem  like  a very short notice ; however , we ( mark , mary , kara , mike , virawan and myself )  had initially set this time and date last week . in the future i will make  sure  that everyone is notified early . sorry for any inconvenience this may have  caused . thank you .  shalesh ganjoo\",0\n\"Subject: re : approval is overdue : access request for paul . d . thomas @ enron . com  the system will not allow me to view this request , saying that it has been  assigned to you . i have left a message with the admin who originated these  requests . if i don ' t hear back from her today , i think we should just deny  all of them . i earlier sent emails to the individuals named asking what  data they needed to access and none of them responded .  - - stinson  vince j kaminski  01 / 31 / 2001 07 : 45 am  to : stinson gibner / hou / ect @ ect  cc :  subject : approval is overdue : access request for paul . d . thomas @ enron . com  stinson ,  any resolution on this one ?  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 31 / 2001  07 : 48 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  arsystem on 01 / 30 / 2001 07 : 17 : 35 pm  to : \"\" vince . j . kaminski @ enron . com \"\"  cc :  subject : approval is overdue : access request for paul . d . thomas @ enron . com  this request has been pending approval for 2 days and you are the  alternate . please click  approval to review and act upon this request .  request id : 000000000015793  approver : stinson . gibner @ enron . com  request create date : 1 / 29 / 01 9 : 48 : 41 am  requested for : paul . d . thomas @ enron . com  resource name : \\ \\ enehou \\ houston \\ common \\ research - [ read ]  resource type : directory\",0\n\"Subject: re : our discussion  mike ,  there might be a place for steve in our unit supporting ees . i shall forward  the resume to my associates supporting the facility management  effort .  thanks for thinking about us .  vince  p . s . krishna , osman ,  can you take a look at the attached resume ? steve has no finance background  but his engineering background is very strong .  vince  michael l miller @ enron _ development  02 / 17 / 2000 07 : 52 am  sent by : michael linn miller @ enron _ development  to : vince j kaminski @ ect , stinson gibner @ ect  cc : aspijk @ texas . net  subject : our discussion  vince & stinson ,  i was given your names by lynn dunphy in recruiting and am taking the liberty  of forwarding you the attached cv . steve roeder is a former collegiate  swimmer and currently coach of the master ' s swimming program in the woodlands  ( my wife is president of the program ) . he is also currently employed at air  liquide usa ( or one of its subsidiaries ) over in the galleria area . as a  consequence of air liquide ' s pending merger with boc , steve believes that  there will be significant personnel reductions sometime during 2000 and is  taking action now to try to locate his next professional challenge .  lynn suggested there might be a fit with your group and i would be grateful  if you could have a look and let me know whether you might be interested .  alternatively , if you don ' t see a fit ( or are adequately staffed at the  moment ) , i would be grateful for any suggestions you might have as to whom i  might contact internally on steve ' s behalf .  many thanks in advance .  m . l . miller  vice president - mergers & acquisitions  calme region  ( 713 ) 345 5272  - - - - - - - - - - - - - - - - - - - - - - forwarded by michael linn miller / enron _ development on  02 / 17 / 2000 07 : 49 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" roeder , steve \"\" on 02 / 10 / 2000 03 : 14 : 18 pm  to : \"\" ' michael . l . miller @ enron . com ' \"\"  cc :  subject : our discussion  mike -  thanks for taking the time to talk last evening . ? i really appreciated it . ?  ( by the way , how is life in the white house now that you are living with a  president ? ? is air force one all that it is cracked up to be ? )  please see the attached document . ? by reading between the lines , hopefully  one can see that , whereas my training has been highly technical , my desire to  transform my career into the business side of a high - technology application  is set in this good foundation ( rather than limited by it ) .  thanks again for your support .  >  steve roeder  technology manager  air liquide america  713 624 8777  713 624 8350 fax  steve . roeder @ airliquide . com  - steve . doc\",0\n\"Subject: re : programming for rdi model  michelle ,  helen , cecil , david ( just joined the effort ) and i had a meeting this  morning . a lot of things regarding  the coding has been discussed . we all felt good about the progress that has  been made  and have clear idea of how to proceed . the project is speeding up nicely .  best ,  alex\",0\n\"Subject: visit to wharton , december 6  i would like to invite you to join mewhen i visit to the wharton risk  management and decision processes center on  december 6 . the meeting will take place in the morning , 9 : 00 - 12 : 00 ,  followed by lunch .  the description of the center is at the bottom of the message . the web site  address is  the objective of the trip is to discuss joint research projects in the area  of risk management and alternative risk  transfer .  please , feel free to contact me with recommendations regarding discussion  and potential research topics .  the best hotel to stay in is the inn at penn .  http : / / www . innatpenn . com / contact . html  the inn at penn  sansom common , 3600 sansom street  philadelphia , pa . 19104  phone : 1 - 800 - 809 - 7001  fax : 215 - 222 - 4600  vince kaminski  the mission of the wharton risk management  and decision processes center is to carry  out a program of basic and applied research  to promote effective policies and programs for  low - probability events with potentially  catastrophic consequences . the center is especially  concerned with natural and technological  hazards and with the integration of industrial risk  management policies with insurance . the  center is also concerned with promoting a  dialogue among industry , government ,  interest groups and academics through its research  and policy publications and through  sponsored workshops , roundtables and forums .\",0\n\"Subject: contract update  sheila ,  some minor differences between the draft and the final executed version .  i have forgotten to bring the draft today , i shall send a copy to you  tomorrow .  there were some hand - written changes made by greg ijn the draft that were not  transferred to  the final version .  vince\",0\n\"Subject: adres marysi  robertlu @ friko 6 . onet . pl\",0\n\"Subject: re : primary curves missing from factor loading  tanya ,  we are very close to generating factors for all primary curves . jin almost  get it done .  but we are still waiting on the expiration dates for those london curves . if  anyone can help , please help .  also , we have some curves that don ' t have futures . how to decide these  curves ' s expiration dates ?  matthew adams helped us deciding many curves expiration rules . but there are  still many primary curves that don ' t have expiration dates .  if no expiration dates , then there will be no factor loadings . whoever wants  to generate factor loadings then give us the expiration dates first ! : )  winston  tanya tamarchenko  09 / 21 / 2000 09 : 00 am  to : bjorn hagelmann / hou / ect @ ect , wenyao jia / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , kirstee hewitt / lon / ect @ ect , rodrigo  lamas / lon / ect @ ect , xochitl figueroa / na / enron @ enron , manfred  roenz / corp / enron @ enron , christian lebroc / corp / enron @ enron , bjorn  hagelmann / hou / ect @ ect , homan amiry / lon / ect @ ect , naveen  andrews / corp / enron @ enron  subject : re : primary curves missing from factor loading  bjorn ,  you are absolutely right that we should run the factors for every primary  curve .  it has been working for a while on this .  the problem is data , as always ( missing price curves , zero prices , not  changing prices , etc . )  most of these problems come from london curves , so winston and jin yu are  debugging the code ,  fixing the problems for every curve .  winston ,  do you think we are ready to calculate factors for us curves ? ( while continue  working on the rest ) .  tanya  from : bjorn hagelmann  09 / 20 / 2000 10 : 06 pm  to : tanya tamarchenko / hou / ect @ ect , naveen andrews / corp / enron @ enron  cc : vince j kaminski / hou / ect @ ect , kirstee hewitt / lon / ect @ ect , rodrigo  lamas / lon / ect @ ect , xochitl figueroa / na / enron , manfred roenz / corp / enron ,  christian lebroc / corp / enron , bjorn hagelmann / hou / ect @ ect , homan  amiry / lon / ect @ ect  subject : re : primary curves missing from factor loading  tanya , naveen :  i am confused , i thought that when we identified primary curves they would  then have factors run against them . does this not distort what we are trying  to do with the primary and var ?  regards  bjorn h .  - - - - - - - - - - - - - - - - - - - - - - forwarded by bjorn hagelmann / hou / ect on 20 / 09 / 2000  21 : 57 - - - - - - - - - - - - - - - - - - - - - - - - - - -  xochitl figueroa @ enron  20 / 09 / 2000 18 : 16  to : manfred roenz / corp / enron @ enron , christian lebroc / corp / enron @ enron , homan  amiry / lon / ect @ ect  cc : bjorn hagelmann / hou / ect @ ect  subject : re : primary curves missing from factor loading  i am in the same situation as manfred . i have one primary curve for southern  cone gas and one for southern cone power and i am not getting factors for  either . for my power curves i am getting wti factors and for gas i am  getting ng factors .  but i do agree with you manfred , i think all the primary curves should have  their own factor loadings .  xochitl  manfred roenz  09 / 20 / 2000 05 : 33 pm  to : christian lebroc / corp / enron @ enron , xochitl figueroa / na / enron @ enron , homan  amiry / lon / ect @ ect  cc : bjorn hagelmann / hou / ect @ ect  subject : re : primary curves missing from factor loading  christian ,  at least you have 2 curves that you get factors for . i get none . i have  four primary curves for coal but factors from nbsk are used . in emissions i  have one primary curve but wti factors are used . i think all the primary  curves should have their own factor loadings . xochitl , what factors are used  for your primary curves ?  manfred  from : christian lebroc 09 / 20 / 2000 11 : 28 am  to : homan amiry / lon / ect @ ect , manfred roenz / corp / enron @ enron , xochitl  figueroa / na / enron @ enron  cc : bjorn hagelmann / hou / ect @ ect  subject : primary curves missing from factor loading  i was in the process of setting up sunil ' s template for calculating  co - variance on all liquids primary curves using the \"\" factor loading \"\" data .  unfortunately , i did not get very far , because i noticed that the factor  loading table contains only 2 ( wti & hu ) out of 13 liquids primary curves . i  am concern that liquids var could conceivably be over or understated due to  the absence of 11 other curves which are listed below . please verify your  perspective commodity desk on this issue .  61 ny  brent  c 2 gc  c 3 gc  c 5 xt  condensate  dubaicrude  ic 4  mtbe  nc 4  nxho  christian\",0\n\"Subject: reply requested : do you code or approve invoices ?  do you code or approve invoices for goods and services that are processed by the houston - based accounts payable center ?  if yes , please read and respond to this e - mail .  on may lst , ibuyit payables will be activated for all organizations supported by the houston - based accounts payable processing center ( for example , invoices submitted via ap drop box to 600 jefferson , houston ) . if you code or approve these invoices , the ibuyit payables project team has important information to share with you about the ibuyit payables system , training , and the may lst transition to the new system .  to identify yourself as a future ibuyit payables coder or approver , please respond to this e - mail upon receipt with the following information :  * full name ( first , middle , last )  * e - mail address  * business unit ( for example , corporate , ets , ews , ees , or ebs )  * do you code invoices ? ( yes / no )  * do you approve invoices ? ( yes / no )  * are you a remote user ? for example , do you dialup to access the enron network ? ( yes / no )  this will ensure that you receive important ibuyit payables information . thank you for your response !  attached is important ibuyit payables training information : \",0\n\"Subject: re : smoothing methodology for extracting forward forward  volatilities  tanya ,  the exponentials we tried earlier ( a + bexp ( - cx ) , etc , fit well but  gave negative numbers in the bootstrapping .  i tried a + b ( t + c ) ( - 1 ) , a standard power law , and as the ? accompanying graph shows ( for the 12 months ) , the fits are quite good . ? in this case , the ffvols do not become negative ( i believe this ? corresponds to your 0 beta ) . ? i would have preferred exp ( - t ) and variants ( can explain owing to ? mean - reverting vols ) , but the power law might be a practical alternative ? ( from an implementation standpoint ) . ? naveen ? ? ? ? ? ? ? ? tanya tamarchenko @ ect ? 11 / 17 / 2000 02 : 59 pm ? to : naveen andrews / corp / enron @ enron , alex huang / corp / enron @ enron ? cc : vince j kaminski / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , vladimir ? gorny / hou / ect @ ect ? ? subject : re : smoothing methodology for extracting forward forward ? volatilities ? ? following up on our discussions i implemented one method for creating forward ? forward curve ? from implied vol curve . ? i sorted out 12 forward curves from an original forward vol curve , each of 12 ? curves corresponding ? to certain month . then i fitted each of 12 curves with a function : ? ? y = a + a / power ( x + b , beta ) ? ? i figured out that when beta is from ( 0 , . 5 ) the above function is suitable ? for performing our bootstrapping ? routine of deriving ff vols from implied , because : ? ? y ( x + t ) * y ( x + t ) * ( x + t ) - y ( x ) * y ( x ) * tx > 0 for all x , t . ? ? ( i have to double check on this again . also when beta > 0 . 5 there are some ? combinations of parameters a , a , b , beta ? for which above equality holds ) . even with restriction on beta this class of ? functions represents quite a variety of shapes . ? ? below you see the example of fitting as well as the example of ff vol curve ? constructed from implied vol curve for ng . ? ? i ' ll try this for power as well . ? ? any comments ? ? ? ? ? ? ? ? ? ? ? ?\",0\n\"Subject: progress  fyi  1 - 2 days is optimistic , but we have core value of optimism !  - - - mike  - - - - - - - - - - - - - - - - - - - - - - forwarded by mike a roberts / hou / ect on 10 / 09 / 2000  02 : 26 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  chonawee supatgiat @ enron  10 / 09 / 2000 12 : 16 pm  to : mike a roberts / hou / ect @ ect  cc :  subject : progress  mike ,  doug , an it guy , asked around and he could not find any software that can do  the job .  i am still working on the code . the program should be ready in 1 - 2 days .  - chonawee\",0\n\"Subject: re : ken lay ' s speech  so is it bigger than his tax cut on an annual average basis ?\",0\n\"Subject: re : follow - up meeting on wharton  christie ,  this is regarding the risk management project .  i shall set up a separate meeting with jeff regarding wharton tiger team .  i would appreciate if you could call in as well .  vince  christie patrick  12 / 12 / 2000 10 : 14 am  to : shirley crenshaw / hou / ect @ ect  cc : james l bouillion / hou / ect @ ect , george carrick / hou / ect @ ect , vasant  shanbhogue / hou / ect @ ect , vince j kaminski / hou / ect @ ect  subject : re : follow - up meeting on wharton  hi shirley !  i ' ll be on vacation , but will be happy to call in at that time , or any other  time that is convenient for vince . should we also include jeff shankman ?  please let me know the time and telephone number to call , and i ' ll be there !  thanks !  - - christie .\",0\n\"Subject: re : referral  can you advise as to whether or not li xiao referred alex to you last  summer . i need to know this in order to process  an employee referral ( under old plan ) for her .  - - - - - - - - - - - - - - - - - - - - - - forwarded by linda vargo / hou / ect on 02 / 14 / 2000 02 : 39  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  li xiao @ enron  02 / 14 / 2000 11 : 19 am  to : linda vargo / hou / ect @ ect  cc :  subject : re : referral  hi , linda ,  i wonder if you heard from vince kaminski regarding my referral for alex  huang .  thanks ,  li x 39635  - - - - - - - - - - - - - - - - - - - - - - forwarded by li xiao / corp / enron on 02 / 14 / 2000 11 : 12 am  - - - - - - - - - - - - - - - - - - - - - - - - - - -  linda vargo @ ect  01 / 17 / 2000 04 : 29 pm  to : li xiao / enron _ development @ enron _ development  cc :  subject : re : referral  i am waiting for feedback from vince kaminsky . as soon as i know something ,  i will advise .\",0\n\"Subject: spvs  hi , vince ,  merry christmas and happy new year !  please see attached brief descriptions of spvs , to my knowledge , there are a  couple more and i will keep you posted .  best regards ,  li\",0\n\"Subject: jacob kang  vince ,  jacob has good background in or and can start working on  pipeline problems right away , if we need someone .  maybe it is from his consulting background , i found that at times  he exaggerates a bit about his roles in model building . he would  start saying he did everything , and later water it down quite a bit .  ( what he actually did is not an easy accomplishment though . )  he also stressed that he wants to move away from pipeline  projects .  i did not got a chance to ask him any questions about derivatives  and finance .  best ,  alex\",0\n\"Subject: re :  no problem vince , the thur mtg was cancelled .  steve  vince j kaminski  10 / 11 / 2000 14 : 48  to : steven leppard / lon / ect @ ect  cc : vince j kaminski / hou / ect @ ect , tani nath / lon / ect @ ect , shirley  crenshaw / hou / ect @ ect  subject : re :  steve ,  i assume it ' s 9 : 00 a . m . my time , monday .  it works for me .  i haven ' t responded in time to the  your message re thursday . i had a few back  to back meetings in the morning and i read your message quite late  into the day .  vince  steven leppard  11 / 10 / 2000 04 : 25 am  to : vince j kaminski / hou / ect @ ect , tani nath / lon / ect @ ect  cc :  subject :  vince , tani  fyi .  steve  - - - - - - - - - - - - - - - - - - - - - - forwarded by steven leppard / lon / ect on 10 / 11 / 2000  10 : 27 - - - - - - - - - - - - - - - - - - - - - - - - - - -  calendar entry  research meeting w / - michael , john , tani , richard , joe , steve & vince kaminski  brief description :  date :  time :  13 / 11 / 2000  15 : 00 - 15 : 45  detailed description :  invitations  phone / ext include  chairperson : john sherriff / lon / ect 37359 yes  organised by : lauren urquhart / lon / ect no  invitations sent to : tracie mccormack  kirsten nelz  steven leppard  this meeting repeats starting on ( if the date occurs on a weekend the  meeting ) .\",0\n\"Subject: reactions website  http : / / www . reactionsnet . com  thank you for registering for a free trial to the reactions magazine website .  your user name and password are listed below - please keep this email or a  printout of these details as you will need them to access the site .  if you have any problems logging on or using this site please feel free to  contact our help desk on + 44 ( 0 ) 20 7779 8006 or  mailto : web - help @ euromoneyplc . com  your trial user name is : kaminski  and your password is : 105006  reactions is also available in hard copy format . if you wish to receive a  complimentary copy , please email us your full mailing address .  for further informationon all sbscriptions , please call our hotline on + 44  ( 0 ) 20 7779 8999 ( uk ) or 1 - 800 437 9997 ( usa ) or  mailto : hotline @ euromoneyplc . com .\",0\n\"Subject: re : fw : parent - subsidary model  hi again ,  thanks for the financial data on enron ' s european counterparties .  it is my understanding that you started out with a list of 500 such counterparties . however , your spreadsheet only contains information for 72 of these european counterparties .  will you please tell me the logic behind the elimination of the 400 + other counterparties ?  thanks so much ,  iris  - - - - - original message - - - - -  from : parsons , ben  sent : tuesday , april 17 , 2001 2 : 56 am  to : mack , iris  cc : valnek , tomas ; dhar , amitava ; mumford , mike  subject : re : fw : parent - subsidary model  hi iris  the inputs and outputs generated by riskcalc can be seen in the attached file :  >  we only looked at the 5 - yr pd .  inputs are in columns a - u . these are the inputs generated by amadeus . you can run these inputs through the riskcalc model over the web ( http : / / www . moodysqra . com / privfirm ) using the login : dupred , password : detective . this is our trial licence which lasts for about 2 more weeks ( mike mumford will have more details about the current licence )  tomas valnek was getting the data from the amadeus database , so i ' ll leave it to him to determine if houston access is possible . in the meantime you can use the dataset attached for testing purposes .  ben  from : iris mack / enron @ enronxgate on 12 / 04 / 2001 17 : 58 cdt  to : ben parsons / lon / ect @ ect  cc : amitava dhar / corp / enron @ enron  subject : fw : parent - subsidary model  hi ben ,  how are you ? today we had a meeting with craig chaney and jeff kinneman to discuss the private firm model .  they requested that i spend some time carefully analyzing the moody ' s riskcalc model . i noticed that you also have been looking at riskcalc - as indicated in your paper entitled \"\" pricing parent companies and their subsidiaries : model description and data requirements \"\"  other than the example discussed in your paper , did generate any other test statistics , scores , etc .  also , you stated that you used amadeus database . we are in the process of trying to obtain data from various data vendors - but that may take a while . in the mean time , may we have access to the amadeus database or some sample dataset ?  thanks so much ,  iris  - - - - - original message - - - - -  from : valnek , tomas  sent : tuesday , april 10 , 2001 9 : 10 am  to : fiala , markus ; seyfried , bryan ; salmon , scott ; kirkpatrick , eric ; mumford , mike ; fontaine , jean - sebastien ; brooks , simon ; price , nigel ; diprose , robert ; rezaeian , reza ; gordon , mike ; lee , derek ; hershkovitz , ilan ; golden , sally ; stephan , nicholas ; albanis , george ; shanbhogue , vasant ; mack , iris  cc : parsons , ben  subject : parent - subsidary model  attached is a description of the parent - subsidiary model that ben and i have been working on over the last few weeks .  comments welcome !  tv  >\",0\n\"Subject: re : i am zhendong  zhendong ,  thanks . please , send me your updated resume as well .  vince  zhendong xia on 04 / 11 / 2001 09 : 14 : 01 pm  to : vince . j . kaminski @ enron . com  cc :  subject : i am zhendong  hi , dr . kaminski :  i am zhendong , the student of dr . deng . i think dr . deng has sent my  resume to you . i am very happy to have an opportunity to work with you  this summer .  i am a student in both ms qcf and ph . d eda programs in georgia tech  now . i plan to find a job in industry instead of academic after my  graduation . so i intend to do internship during the process of prusuing my  degree to acquire some experience for my future career .  i hope to start on 5 / 14 / 2001 and end on 8 / 17 / 2001 .  thanks a lot .  zhendong xia  georgia institute of technology  school of industrial and systems engineering  email : dengie @ isye . gatech . edu  dengie @ sina . com  tel : ( h ) 404 - 8975103  ( o ) 404 - 8944318\",0\n\"Subject: energy futures contracts project  please respond to hi vince and jason :  please find attached a copy of our project . thank you for an enjoyable and  informative class .  sincerely ,  rishad patel  neeraj hingorani  duane maue  eric van stone  john ganguzza  grant johnson  paulo yoshiura  - . doc\",0\n\"Subject: sevil yaman  hi norma ,  sevil ' s primary project has been the generation bidding analysis for the  east power desk . she worked closely with the power fundamentals group and  the it group in collecting and organizing the data , and then developing the  analysis . sha has focused on the pjm area and plans to expand the analysis  to other regions in the east .  sevil has also investigated the issue of risk premia in power prices  compared to marginal cost .  vasant\",0\n\"Subject: re : cv of rodney greene re quantitative positions .  vince -  would you have any interest in this candidate ?  kind regards -  amy  - - - - - - - - - - - - - - - - - - - - - - forwarded by amy fitzpatrick / lon / ect on 21 / 02 / 2000  09 : 34 - - - - - - - - - - - - - - - - - - - - - - - - - - -  bryan seyfried  18 / 02 / 2000 19 : 50  to : amy fitzpatrick / lon / ect @ ect  cc :  subject : re : cv of rodney greene re quantitative positions .  probably a bit to techy for me but maybe a good fit for vince kaminski in  houston research .  bs  amy fitzpatrick  17 / 02 / 2000 12 : 52  to : david port / corp / enron @ enron , david weekes / lon / ect @ ect , steve w  young / lon / ect @ ect , bryan seyfried / lon / ect @ ect  cc :  subject : cv of rodney greene re quantitative positions .  any thoughts on this candidate ?  kind regards -  amy  - - - - - - - - - - - - - - - - - - - - - - forwarded by amy fitzpatrick / lon / ect on 17 / 02 / 2000  12 : 52 - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron capital & trade resources corp .  from : simon bragg  17 / 02 / 2000 12 : 36  to : \"\" ' amy . fitzpatrick @ enron . com ' \"\"  cc :  subject : cv of rodney greene re quantitative positions .  hi amy  a colleague of mine interviewed someone last week who is a phd whose  background is as a developer within catastrophe risk management . he is  looking to move into more of a quantitative role which will utilise his  developing skills and also his statistical and theoretical knowledge as  well . the issue is that he is based in chicago and i wondered if there  would be any interest from your headquarters there .  please find attached his details .  speak to you soon .  regards  simon  - do 075530 . doc\",0\n\"Subject: re : introduction  thanks ,  subroto  original message - - - - -  from : ? vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : ? ? monday , march 12 , 2001 7 : 39 pm  to : ? ? ? ? subroto . roy @ riskmetrics . com  subject : ? ? ? ? ? ? ? re : introduction  dear subroto ,  thanks for your message . here is my information :  vincent kaminski  managing director - research  enron corp .  1400 smith street  room ebl 962  houston , tx 77002 - 7361  phone : ? ? ? ( 713 ) 853 3848  ? ? ? ? ( 713 ) 410 5396 ( cell )  fax ? : ? ( 713 ) 646 2503  e - mail : vkamins @ enron . com  vince  subroto roy on 03 / 12 / 2001 11 : 28 : 52 am  to : ? ? \"\" ' vkamins @ enron . com ' \"\"  cc :  subject : ? introduction  dear vince :  it was a pleasure talking with you today , especially about risk management  and data opportunities . we appreciate your openness with respect to sharing  information about your business activity .  riskmetrics has grown rapidly in the last one year . we now have 370  institutional clients worldwide for our risk management software and data  products . we encourage you to visit our web site and our ' risk grades ' site  for risk measurements for retail clients . we look forward to meet with you  and your colleagues at enron .  sincerely ,  subroto roy  riskmetrics inc .  44 wall street  new york , ny 10005  t 212 - 981 - 7435 , f 212 - 981 - 7401  http : / / www . riskmetrics . com /  * * * * * * * * * * * * * * * * * * * * *  check the risk of your personal investments at http : / / www . riskgrades . com /\",0\n\"Subject: re : houston visit  soussan ,  it seems we have planned for all contingencies .  look forward to meeting you next week .  vince  \"\" faiz , soussan \"\" on 11 / 28 / 2000 06 : 51 : 51 pm  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc :  subject : re : houston visit  vince ,  your suggested arrangement is perfect with me and i love both italian or  steak . . . the choice is yours . i really look forward to our meeting vkaminski @ aol . com  subject : re : houston visit  soussan ,  let ' s meet at westin oaks next to the reception around 6 : 30 p . m . thursday .  there are several nice restaurants within a walking distance to the  galleria .  i shall make a reservation ( is italian or a steakhouse ok ? ) .  you can reach me on thursday at my cell phone 713 410 5396 .  look forward to meeting you .  vince  \"\" faiz , soussan \"\" on 11 / 27 / 2000 04 : 37 : 30 pm  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc :  subject : re : houston visit  great ! i look forward to our dinner on thurs . 12 / 7 evening . hopefully  your  flight will be on time . . . although having watched 60 minutes last night and  suffered from a # of delays lately , let ' s hope that the \"\" weather blame \"\"  doesn ' t get in the way . it ' s best to leave me a message @ my usual work #  on thurs . , 914 253 4187 , . . . i can easily check it in houston .  i ' ll be staying @ the westin oaks in the galleria . . . any preferred place  that i can book ( & for what time ) ? ? coming over to down town won ' t be a  problem for me either .  will be great to see you again .  soussan  914 253 4187  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : monday , november 27 , 2000 12 : 10 pm  to : faizs @ texaco . com  cc : vince . j . kaminski @ enron . com  subject : re : houston visit  soussan ,  thanks for your message . it would be great to meet you when you come to  houston .  i shall be in town on december 7 , flying back from philly in the morning .  assuming that the flight is on schedule , i shall be available for dinner .  please , let me know how i can contact you on thursday , december the 7 th ,  to confirm .  look forward to meeting you .  vince  \"\" faiz , soussan \"\" on 11 / 26 / 2000 09 : 04 : 01 pm  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc :  subject : houston visit  dear vince ,  greetings from ny and hope that all is well and you had a great  thanksgiving . i ' ll be coming to houston for 12 / 6 - 12 / 7 and hope you are  available either evening for dinner . would be great to see you again and  catch up with the latest . . . i really enjoyed my visit last april , your  insights , and the risk book you gave me .  i do hope you ' re available to meet and pls let me know which evening suits  you better .  best ,  soussan faiz  texaco inc .  914 253 4187\",0\n\"Subject: executive program on credit risk modeling  subject : announcement : executive program on credit risk modeling  credit risk modeling for financial institutions  october 15 - 20 , 2000  at stanford university business school  risk management specialists , stanford business school professors of finance  darrell duffie and kenneth singleton will be repeating their successful  executive program on credit risk pricing and risk management for financial  institutions . the course is created for risk managers , research staff , and  traders with responsibility for credit risk or credit - related products ,  including bond and loan portfolios , otc derivative portfolios , and credit  derivatives .  this program includes :  * valuation models for defaultable bonds , otc derivatives , and credit  derivatives , with empirical applications to corporate and sovereign markets  * empirical and theoretical assessments of models for measuring credit  risk , with correlation , for portfolios  * the strengths and limitations of current practice in credit risk  measurement  * practical issues in implementing credit modeling and risk systems  * estimation of default and transition probabilities , and the  correlations among the default risks of publicly traded companies , from  historical data  application form :  credit risk modeling for financial institutions  stanford , october 15 - 20 , 2000  this form may be completed and returned by email , or may be printed and sent  by fax to :  stanford gsb executive education programs  fax number : 650 723 3950  you may also apply and see more detailed information by visiting our web  site at :  www . gsb . stanford . edu / exed / crm  applications will be acknowledged upon receipt . if you have not received an  acknowledgement within two weeks , please contact us .  please complete all sections . all information is kept strictly confidential .  name :  put an x beside one , please : male : female :  citizenship :  job title :  company :  your company ' s main activity :  business mailing address :  business phone ( all codes please ) :  business fax :  email address :  home address :  home phone :  nickname for identification badge :  emergency contact name :  emergency contact phone :  title of person to whom you report :  your job responsibilities and experience related to this course : ( please  provide a brief job summary here , or attach and send a biographical summary  containing information relevant to your purpose and qualifications for the  course . )  college or university education : please list , by degree :  college or university dates degree granted  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  please note :  all classes and discussions are conducted in english .  in order to reserve a place in the course , the program fee of us $ 7 , 500 is  due upon notification of acceptance . this fee covers the tuition , single  room , meals , and all course materials ( including a proprietary manuscript on  credit risk pricing and measurement ) .  our refund policy is available upon request .  please state the source from which you heard about this course :  name and date :  if you would like a hard copy brochure and application form , please contact :  ( make sure to include your mailing address )  shelby m . kashiwamura  program manager  executive education  stanford graduate school of business  ( 650 ) 723 - 9356 phone  ( 650 ) 723 - 3950 fax  kashiwamura _ shelby @ gsb . stanford . edu\",0\n\"Subject: grades  pam ,  another term paper :  john ganguzza  neeraj hingorani  grant johnson  duane maue  rishad patel  eric van stone  palo yoshiuro  grade : a  please , confirm .  vince\",0\n\"Subject: jcc forward curve  the following spreadsheet contains a simple way to build a jcc forward  curve . it is based upon the spread between jcc and brent lagged one month .  i ' m out until the 2 nd .  - kevin k .\",0\n\"Subject: thank you  graham pl . # 207  austin , tx 78705  ( 512 ) 4746683  november 30 , 2000  dear mr . kaminski :  thank you for the opportunity to interview today for a  position with enron company . i enjoyed meeting you and  learning more about your company and the interesting  work done by enron . the interview strengthened my  interest in working for enron company . my education  and experience fit nicely with the job requirements ,  and i am confident i can make a positive contribution  to the company .  i want to reiterate my strong interest in enron  company and in working with you and your staff . after  further investigating your well - established company , i  am eager to reaffirm my interest in the position .  please feel free to contact me at ( 512 ) 4746683 or at  knirel @ mail . utexas . edu if i can provide you with any  additional information .  again , thank you for your consideration . i hope to  hear from you soon  regarding your decision .  sincerely ,  nina knirel  do you yahoo ! ?  yahoo ! shopping - thousands of stores . millions of products .  http : / / shopping . yahoo . com /\",0\n\"Subject: reply from charles shen  shirley :  thank you very much for the e - mail . attached please  find the copy of my resume , please treat it with high  confidentiality .  i would love to fly to houston this friday to talk to  vince and other people in enron , and i will fly from  tulsa , oklahoma to houston . when you make the flight  reservation , please make sure to use my legal name  \"\" yingquan shen \"\" .  if you have any questions , please feel free to let me  know .  sincerely ,  charles  - - - shirley . crenshaw @ enron . com wrote :  > mr . shen :  >  > vince kaminski and the research group would like to  > bring you in for an  > interview this friday , if possible . please forward  > me a copy of your  > resume , as soon as possible , and i will have our hr  > dept . contact you .  >  > thank you .  >  > shirley crenshaw  > administrative coordinator  > enron research dept .  > 713 / 853 - 5290  >  >  >  >  >  do you yahoo ! ?  get yahoo ! mail - free email you can access from anywhere !  http : / / mail . yahoo . com /  - charles _ shen . doc\",0\n\"Subject: re : willow and pathstar evaluations  i will check with michael and see if it ' s feasible to do a quick evaluation  of his software here in houston .  - - stinson  vince j kaminski  04 / 24 / 2001 05 : 22 pm  to : stinson gibner / hou / ect @ ect  cc :  subject : willow and pathstar evaluations  stinson ,  he keeps bugging us about it .  any thoughts what we should do ?  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 24 / 2001  05 : 22 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" mike curran \"\" on 04 / 24 / 2001 10 : 03 : 24 am  please respond to \"\" mike curran \"\"  to :  cc :  subject : willow and pathstar evaluations  hi vince -  hope all is well with you .  sharad hasn ' t had time to evaluate our willow tree or monte carlo software  since the middle of last year . is there somebody else that could do it ?  please let me know who i should send the evaluation to .  best regards ,  michael curran  ceo  quantin ' leap limited  piercy house  7 copthall avenue  london ec 2 r 7 nj  tel : + 44 ( 0 ) 20 7562 3450  fax : + 44 ( 0 ) 20 7562 3411  mailto : mcurran @ quantinleap . com  http : / / www . quantinleap . com\",0\n\"Subject: re : asian option for pavel  our convention is whoever finalizes the model should write the  documentation . it does not make sense  to write one when changes are anticipated . you have been working on this  almost a year , it never  strikes you that we need a documentation ?  i created exotica . xll , does that also give you an excuse not working on  exotica documentation ?  zimin  paulo issler  05 / 02 / 2001 11 : 52 am  to : zimin lu / hou / ect @ ect  cc : tai woo / enron @ enronxgate @ enron , pavel zadorozhny / enron @ enronxgate  subject : re : asian option for pavel  i am surprised that we do not have the documentation ready .  i can make that for you . it is not there because you did not put that  together by the time it was created and all the changes i have made did not  required changes on the functionality .  paulo issler  zimin lu  05 / 02 / 2001 11 : 29 am  to : tai woo / enron @ enronxgate @ enron , paulo issler / hou / ect @ ect  cc : pavel zadorozhny / enron @ enronxgate  subject : re : asian option for pavel  tai woo ,  here are the c - codes for the crudeapo . ' sig ' is the spot  volatility meaning the price volatility within the delivery period .  you should consult with pavel for the definition of this \"\" extra \"\"  parameters . we  would like to see the position monitor once you get it running .  we might have some additional suggestions .  paulo ,  why don ' t we have a documentation on crudeapo you worked on ?  i can not find it in exotica help file . please supply that to tai , thanks .  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : tai woo / enron @ enronxgate on 05 / 02 / 2001 09 : 55 am  to : paulo issler / hou / ect @ ect  cc : kara maloney / enron @ enronxgate , zimin lu / hou / ect @ ect  subject : asian option for pavel  this morning , zimin told me that pavel is using a special model in evaluating  his asian option portfolio .  he asked me to talk to you in order to access to the code so that i can see  the difference made to the model .  as i cannot find the doc . describing this model , please tell me what that new  input parameter ' sig ' is .  thanks ,\",0\n\"Subject: re : mr . sud  vince ,  it never hurts ( or rarely , anyway ) to follow up on things . i met with him  on saturday . it will be interesting to see what he does . i didn ' t empower  him to do anything on our behalf and basically just stated what i wouldn ' t  mind him repeating .  thanks ,  rebecca  - - - - - original message - - - - -  from : kaminski , vince  sent : friday , march 09 , 2001 9 : 03 am  to : rebecca mcdonald / enron _ development @ enron  cc : kaminski , vince  subject : mr . sud  importance : high  sensitivity : confidential  rebecca ,  i share some of your concerns regarding mr . sud . he is retired and he chose  to contact us rather indirectly ( or on the spur of the moment ) .  i understand that things are done differently in different cultures but i  did not meet him and could not  form my judgment based on personal observations .  however , the information he gave us seems to be too important not to convey  to you and not to act upon .  vince kaminski\",0\n\"Subject: re : telephone interview with the enron corp . research group  ms . crenshaw ,  thank you very much for the message . i am very interested in the  opportunity to talk to personnel from the research group at enron . between  the two days you suggest , i prefer wednesday 12 / 6 . considering the  two - hour time difference between california and texas , 11 : 00 am pacific  time ( 1 : 00 pm your time ) seems to be a good slot . however , i am open most  of the day on 12 / 6 so if some other time slot is prefered on your end ,  please let me know .  thanks again . i look forward to talking to you and your  colleagues .  jingming  on tue , 28 nov 2000 shirley . crenshaw @ enron . com wrote :  > good afternoon jingming :  >  > professor wolak forwarded your resume to the research group , and  > they would like to conduct a telephone interview with you , sometime next  > week , at your convenience . the best days would be tuesday , 12 / 5 or  > wednesday , 12 / 6 .  >  > please let me know which day and what time would be best for you and  > they will call you . let me know the telephone number that you wish to be  > contacted at .  >  > the interviewers would be :  >  > vince kaminski managing director and head of research  > vasant shanbhogue vice president , research  > lance cunningham manager , research  > alex huang manager , research  >  > look forward to hearing from you .  >  > best regards ,  >  > shirley crenshaw  > administrative coordinator  > enron research group .  > 713 - 853 - 5290  >  >  >  jingming \"\" marshall \"\" yan jmyan @ leland . stanford . edu  department of economics ( 650 ) 497 - 4045 ( h )  stanford university ( 650 ) 725 - 8914 ( o )  stanford , ca 94305 358 c , economics bldg  if one seeks to act virtuously and attain it , then what is  there to repine about ? - - confucius  _ ? oo ? ? ooo ? ? t \u0015 xo - ? ? - - \u0014 ? ?\",0\n\"Subject: re : book notes  vince : look forward to meeting you . . .  amy  vince j kaminski @ ect  07 / 24 / 2000 08 : 33 am  to : amy oberg / hou / ees @ ees  cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect  subject : re : book notes  amy ,  i received your voice - mail message . i was traveling last week and unable  to answer it directly .  i shall be glad to join you on thursday for the presentation ( 3 p . m .  on my calendar ) .  vince\",0\n\"Subject: re : weather and energy price data  dear dr . kaminski :  thank you very much for the natural gas information . the electricity price  is also definitely of great help if it can be available .  could you kindly please let me know the contact information for ft or  megawatt daily ? i will contact them asap to get their permission for the  access of the price data .  thank you very much and have a great day !  mulong  on mon , 16 apr 2001 vince . j . kaminski @ enron . com wrote :  >  > mulong ,  >  > we shall send you natural gas henry hub prices right away .  > please look at the last winter and the winter of  > 95 / 96 .  >  > we shall prepare for you the electricity price  > information ( cinergy , cobb and palo verde ) but  > you have to approach ft ( the publishers of  > megawatts daily , a newsletter that produces the price  > index we recommend using ) and request the permision  > to use the data . we are not allowed to distribute  > this information .  >  > please , explain that this is for academic research and that  > we can produce the time series for you ,  > conditional on the permission from the publishers  > of megawatts daily .  >  > vince kaminski  >  >  >  >  > mulong wang on 04 / 15 / 2001 03 : 43 : 26 am  >  > to : vkamins @ ect . enron . com  > cc : richard macminn  > subject : weather and energy price data  >  >  > dear dr . kaminski :  >  > i am a phd candidate under the supervision of drs . richard macminn and  > patrick brockett . i am now working on my dissertation which is focused on  > the weather derivatives and credit derivatives .  >  > could you kindly please offer me some real weather data information about  > the price peak or plummet because of the weather conditions ?  >  > the past winter of 2000 was very cold nationwide , and there may be a  > significant price jump for natural gas or electricity . could you  > please offer me some energy price data during that time period ?  >  > your kind assistance will be highly appreciated and have a great day !  >  > mulong  >  >  >  >  >  >  >  >  >  >\",0\n\"Subject: meeting on the 20 th of march  robert ,  this is to confirm the meeting on march the 20 th at 9 : 00 a . m . enron will be  represented by  bill bradford , bryan seyfried , , vasant shanbhogue and myself .  could you , please , advise me what is the best hotel where we could stay  overnight ,  close to your location ?  vince kaminski  enron corp .  1400 smith street , room 1962  houston , tx 77251 - 1188  phone : ( 713 ) 853 3848  fax : ( 713 ) 646 2503  e - mail : vkamins @ enron . com\",0\n\"Subject: re : transport model  ken and greg ,  the gamma and cross gamma from our spread option appear to be correct .  one anomaly i found is the price change as function of maturity , see attached  figure .  it is odd , isn ' t it ? and the seeming gamma anomaly is largely because of  this .  zimin  enron north america corp .  from : kenneth shulklapper 08 / 07 / 2000 11 : 40 am  to : zimin lu / hou / ect @ ect  cc :  subject : transport model  zimin ,  i have been looking at the new transport model and there are some returns in  the greek calculations that i am not comfortable with . i have looked through  the formulas and do not see inconsistencies , but we are getting significantly  higher gamma values in ' out years ' than in the ' near months / years ' . rho also  seems to be very high throughout the curve . we are prepared to release this  model to be used on the floor , but would like you to sign off on the  calculations . i know that you have a meeting on this on wednesday , and  wanted to get you the model to review early .  a good example that i am talking about is on the tab \"\" longterm 9 \"\" . this is  the kingsgate to malin deal that we worked on previously .  please give me ( or greg couch ) a call with any questions .  thanks .  ken  3 - 7009  - - - - - - - - - - - - - - - - - - - - - - forwarded by kenneth shulklapper / hou / ect on 08 / 07 / 2000  10 : 58 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron north america corp .  from : victor guggenheim 08 / 07 / 2000 10 : 54 am  to : kenneth shulklapper / hou / ect @ ect  cc :  subject : transport model\",0\n\"Subject: wharton interviews  - - - - - - - - - - - - - - - - - - - - - - forwarded by kristin gandy / na / enron on 01 / 30 / 2001  03 : 19 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : kristin gandy 01 / 29 / 2001 05 : 32 pm  to : jeremy blachman / hou / ees @ ees  cc : bryan kite / enron communications @ enron communications , michele nezi  marvin / enron communications @ enron communications  subject : wharton interviews  this is a request for your interview participation . the associate program  will be on the wharton , mba campus interviewing summer associate interns next  week . due to business reasons , previously scheduled interviewers from the  wharton team have had to cancel their participation .  currently , i need two interviewers for monday , february 5 th and two  interviewers for tuesday , february 6 th . please let me know of your  availability . campus interviews are scheduled as follows :  place : rittenhouse hotel  210 west rittenhouse square  philadelphia , pa 19103  date : monday , february 5 th tuesday , february 6 th  day one interviews day two interviews  time : 8 : 30 a . m . to 5 : 00 p . m . 8 : 30 a . m . to 4 : 00 p . m .  interviewers : bryan kite - confirmed  michele nezi marvin - confirmed  in the event that you have scheduling conflicts and cannot participate , any  referrals at the director or vp level would be greatly appreciated .  as always , thank you for your time and please contact me @ ext . 5 - 3214 if you  have any questions .  kristin gandy  associate recruiting\",0\n\"Subject: re : storage book . . .  hi stinson , shales ' initial in road to ebs was through david cox ( after  vince ' s suggest to talk to david , i think ) . what shalesh did at the time was  to put a four page concept on trading storage as a commodity in the new  networked world . he has keen interest in such an idea and has done some  work . he will be a good fit unless that person has to be in ebs under jean  etc . . . . if so , we are not ready to let shalesh go ! he can support that  effort , but i need him to get the supply & demand work in real - time user  friendly form for jean ' s traders before shalesh ventures onto something  else . i did promising that i will get him involved in some juicy stuff like  new product / deals etc . . . . this may be his non - it stuff that he can do . . . . .  what do you think ?  ravi .  stinson gibner @ ect  02 / 18 / 00 10 : 10 am  to : ravi thuraisingham / enron communications @ enron communications  cc : vince j kaminski / hou / ect @ ect  subject : storage book . . .  ravi :  samer and i met this morning with sara ledbetter . she is starting the  groundwork for setting up a storage book and a streaming book for tracking  the e - powered products positions . they are having a meeting on next  tuesday to discuss this . samer will attend . this is a good opportunity to  start compiling the data that we will need for some of john grieblings  questions .  - - stinson  p . s . sara also asked if we knew anyone who would be interested in managing  the storage book . any suggestions ?\",0\n\"Subject: re : dabhol report  narottam ,  i have in fact not received a copy of the report . was this something you  sent by e - mail ? if so , please resend it to me so that i could make the  appropriate comments . please do this asap , since i have been waiting for  this report to give my comments for some time now .  regards ,  sandeep .  \"\" narottam aul \"\" on 05 / 06 / 2001 08 : 25 : 53 pm  please respond to  to :  cc :  subject : dabhol report  sandeep  trust you have had the opportunity to review the draft of the dabhol report  that was sent on 24 april 2001 . i assume that the circulation of the report  to the relevant people within dabhol and enron has been done at your end . it  will be helpful if all comments are collated and send through you . the  report can then be amended to incorporate your comments and a final version  sent for your records . we would very much to close the assignment with the  completion of the report .  please do let me know , if we can do any further analysis and sensitivities  to assist enron and dabhol in the existing phase of discussions with mseb  and the state government .  best regards  narottam  narottam aul  henwood energy services inc .  26 greenhill road  wayville sa 5034  australia  tel : + 61 8 8179 2006  fax : + 61 8 8179 2099  mobile : 0421 061 016\",0\n\"Subject: re : part - time work  vince ,  zimin and i talked briefly about the part - time work this morning . to recap ;  i am willing to work 20 hours a week , however , i expressed my concern about  commuting every week . i asked if commuting once every two weeks ( and work  out of austin every other week ) would be acceptable . as to the term of the  work , i suggested a 3 - mo period ( i have yet not talked to international  office which arranges work authorization using curricular practical training  of which i have used up 9 months already ) , i might run into problems if i  ask for more . i also mentioned that i would do my best to accomodate your  preferences . we did not discuss any other details .  i shall be awaiting for your response on this matter .  best ,  - - - - - - - - - oooo - - - - - oooo - - - - - - - - - -  cantekin dincerler  doctoral candidate  the university of texas at austin  graduate school of business  department of finance  office : ( 512 ) 471 - 1676  fax : ( 512 ) 471 - 5073  home : ( 512 ) 472 - 5356  cell : ( 512 ) 680 - 5355  http : / / uts . cc . utexas . edu / ~ cantekin  - - - - - - - - - - - - - oooo - - - - - oooo - - - - - - - - - -  > - - - - - original message - - - - -  > from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  > sent : monday , september 18 , 2000 5 : 50 pm  > to : cantekin @ mail . utexas . edu  > cc : vince . j . kaminski @ enron . com  > subject : re : part - time work  >  >  >  > cantekin ,  >  > i shall call you tomorrow to discuss the details .  >  > vince  >  >  >  >  >  > \"\" cantekin dincerler \"\" on 09 / 18 / 2000  > 02 : 59 : 41 pm  >  > please respond to  >  > to :  > cc :  > subject : part - time work  >  >  > hi vince ,  >  > i promised to get back to you on the part - time work issue .  > sorry for the  > delay , i got back to austin only last week . i talked to ehud  > about this and  > he is ok with it . just wanted to let you know .  >  > best ,  >  > - - - - - - - - - oooo - - - - - oooo - - - - - - - - - -  > cantekin dincerler  >  > doctoral candidate  > the university of texas at austin  > graduate school of business  > department of finance  > office : ( 512 ) 471 - 1676  > fax : ( 512 ) 471 - 5073  > home : ( 512 ) 472 - 5356  > cell : ( 512 ) 680 - 5355  > http : / / uts . cc . utexas . edu / ~ cantekin  > - - - - - - - - - - - - - oooo - - - - - oooo - - - - - - - - - -  >  >  >  >  >  >  >\",0\n\"Subject: re : congratulations  vince ,  congratulations to you too ! in my mind you ' ve always been an md , they ' re  just officializing it now .  thank you very for all your help and support .  - - anthony  vince j kaminski  01 / 11 / 2000 10 : 05 am  to : anthony dayao / hou / ect @ ect  cc :  subject : congratulations  anthony ,  congratulations . well deserved . i am very happy for you . better late than  never .  vince\",0\n\"Subject: re : risk ' s advanced stress testing course  dear all ,  i have been asked to give a talk on the use of copulas in stress testing  at a risk conference .  as i don ' t really work directly on those sorts of things anymore i would need  some help  putting anything together - i am happy with the theory , i would just need to  present some results . it is a risk conference in london / new york in february .  if i can ' t accept it soonish i ' ll have to turn it down .  the organiser has another person in mind and i don ' t want to give a rubbish  talk .  regards ,  sharad agnihotri  please respond to \"\" jean - pierre doggett \"\"  to :  cc :  subject : risk ' s advanced stress testing course  dear sharad ,  i attach a copy of the draft programme - please feel free to suggest any  amendments .  to give you some context , we ' re pitching the course at more senior risk  managers who are familiar with standard stress testing techniques so the  content must be a significant step further e . g . alternative approaches ,  incorporating credit risk etc .  my number is at the bottom of this message . thanks for your help ,  j - p  jean - pierre doggett  risk conference producer  risk waters group  phone : + 44 ( 0 ) 20 7484 9813  fax + 44 ( 0 ) 20 7484 9800  e - mail : jpdoggett @ riskwaters . com  www . riskwaters . com  - stress testing draft . doc\",0\n\"Subject: re : enron / stanford program  vince ,  i have managed to change my ticket and we can meet for dinner on sunday  10 / 15 / 00 .  shall we say at 7 pm ?  > > > > giuseppe : can you please join us for dinner on sunday 10 / 15 . we ' d like to  briefly  discuss the project too . could i please ask you to make reservations for 3 at  il fornaio or some other nice place in palo alto ? preferably a quiet place  where  we can talk .  > nick ,  >  > dinner on sunday would work for me . i shall stay  > in the bay area till monday morning .  >  > vince  >  > nick bambos on 09 / 28 / 2000 08 : 33 : 38 pm  >  > to : vince . j . kaminski @ enron . com  > cc :  > subject : re : enron / stanford program  >  > hi vince ,  >  > i am on the technical program committee of the infocom 2001 conference ,  > and we are meeting in new york city on saturday , october 14 th , to select  > papers for the conference program . i ' m leaving stanford on friday and  > getting back on sunday .  >  > it might be a possibility to have dinner together on sunday , if that would  > work for you . in that case i would have to reschedule my flight to land  > in sfo earlier than i ' m currently scheduled to land .  >  > would dinner on sunday work for you ? any chance we can meet monday for  > lunch ?  >  > i look forward to seeing you .  >  > best regards ,  >  > nick  >  > vince . j . kaminski @ enron . com wrote :  > >  > > nick ,  > >  > > i shall be in stanford oct 14 - 15 , visiting my family .  > > i would be glad to meet you ( and possibly giuseppe - your call ) for  > lunch .  > > please , let mer know if you are free on one of these days . saturday would  > > work better for me .  > >  > > vince  > >  > > nick bambos on 09 / 21 / 2000 02 : 09 : 46 pm  > >  > > to : stinson . gibner @ enron . com  > > cc : vince . j . kaminski @ enron . com  > > subject : re : enron / stanford program  > >  > > stinson ,  > >  > > great ! i ' m looking forward to a very productive collaboration .  > > i ' ll immediately start doing giuseppe ' s papers , for him to work  > > on the enron / stanford program .  > >  > > many thanks to you and vince , and i hope to see you soon at stanford  > > or enron . if i remember correctly , vince is visiting stanford in  > > october .  > >  > > best regards ,  > >  > > nick  > >  > > stinson . gibner @ enron . com wrote :  > > >  > > > nick ,  > > >  > > > i spoke with paul racicot , head of trading for ebs , north america this  > > > morning . he said that he is happy to send the $ 100 , 000 for your  > program  > > > from his budget . i have forwarded to him the draft letter to  > accompany  > > > the funds and will try to follow up to make sure that the money is sent  > > > promptly .  > > >  > > > - - stinson\",0\n\"Subject: breckenridge offsite  hello all :  fyi . the breckenridge offsite has officially been cancelled .  sheryl lara and i are notifying everyone today .  thanks .  shirley\",0\n\"Subject: colored printer taj mahal  hello everyone .  this memo only applies to the research group on the 19 th floor that use  the colored printer \"\" taj mahal \"\" .  vince has requested that i ask each of you to only use the colored printer  \"\" taj mahal \"\" for presentations , newsletters , etc . that require at least 90 %  of color . these cartridges are very expensive and several times we have  picked up a copy of something that only had color on the first page and it  would be maybe 15 - 20 pages long . this is not cost effective .  if you have something that has color on the first page , but not on the rest  of the presentation , then please just print the first page on the color  printer  and the rest on \"\" bandit \"\" or \"\" wagon \"\" .  your help will be greatly appreciated !  thanks !  shirley\",0\n\"Subject: re : joint probabilities  bob -  i ' ve edited our numbers a bit on the azurix analysis and would like you to  re - run the joint probabilities tables .  please note that i ' ve got 2 cases in the model now - an optimistic case and a  pessimistic case . i hope you can run both cases . ( you will need to toggle  for case 1 or 2 - real complicated stuff ! ! )  please keep everything else the same ( ie , the currency probabilities , rab  probabilities , etc . )  thanks for your help .  michael anderson  646 - 9666\",0\n\"Subject: re : eprm 2001 houston  layla ,  my associate ' s name is tanya tamarchenko . the  e - mail address is : tanya . tamarchenko @ enron . com .  location is the same as mine , enron , 1400 smith , houston .  thanks  vince  p . s . shirley , please send my bio to layla  \"\" layla o ' leary \"\" on 05 / 02 / 2001 10 : 33 : 00 am  please respond to  to :  cc :  subject : re : eprm 2001 houston  yes , that ' s fine . if you can please give me her full contact details  including e - mail and address i will have her registered as a co - speaker .  if you would like to bring your own copies to the event i would ask you to  send 200 copies directly to the venue . although if you can get it to me on  friday i can still insert it !  could i please trouble you for a short biography ?  kind regards  layla  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : 02 may 2001 15 : 38  to : loleary @ riskwaters . com  cc : vince . j . kaminski @ enron . com  subject : re : eprm 2001 houston  layla ,  a few points .  i shall be glad to attend the reception .  i am falling behind in getting my presentation ready . sorry for the delay .  i can commit to delivering the required number of copies on the day of my  presentation  ( or a day before ) . i have done it on two occasions before ( power 2000 and  power 1999 ) :  the copies were produced by our company copy center at no cost to you .  my associate , tanya tamarchenko , is helping me with one aspect of the  presentation and  i would like her to deliver part of my speach . it ' s only fair to give her  the credit when the  credit is due . is it ok to include her as an additional speaker ?  vince  \"\" layla o ' leary \"\" on 04 / 30 / 2001 09 : 04 : 52 am  please respond to  to :  cc :  subject : eprm 2001 houston  dear speaker ,  pre - congress cocktail reception - sunday 13 th may @ 5 : 30 pm in the juniper  room  we would be delighted to have you attend our pre - congress cocktail  reception . we will be extending this invitation to all our sponsors ,  exhibitors and eprm / risk waters group staff . we hope this will provide a  perfect opportunity for you to meet all our staff and clients before the  formal opening of eprm 2001 usa  + rsvp  i would also like to remind you that i need any missing presentations by  thursday 3 rd may . it is essential that i get these in as the delegates  rely  on these to make notes and get very upset if they are not included in the  packs .  if you still haven ' t informed me of your av requirements , please do so as  quickly as possible . i also require a short biography .  i would like to point out that i will not be taking any presentations on  disk to the event . if you are using a laptop , your presentation should be  loaded onto the laptop that you bring with you . you must bring your own  laptop and disc , with connecting cables .  any questions , please do not hesitate to contact me .  kind regards  layla o ' leary  event co - ordinator  risk waters group  haymarket house  28 - 29 haymarket  london  swly 4 rx  tel : + 44 ( 0 ) 20 7484 9871  fax : + 44 ( 0 ) 20 7484 9800\",0\n\"Subject: resending paper  - - - - - - - - - - - - - - - - - - - - - - forwarded by jason sokolov / hou / ect on 04 / 30 / 2001 05 : 04 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" lynn nazareth \"\" on 04 / 27 / 2001 12 : 46 : 37 pm  to : jason . sokolov @ enron . com  cc :  subject : resending paper  jason :  here is our team ' s assignment . please confirm receipt . i am also sending you  the file via my outlook address in case this doesn ' t work .  this is our team :  helen demianenko  javier lamas  lynn nazareth  shauywn smith  carlos wheelock  sarah wooddy  thanks , jason ! see you at enron this fall !  lynn  get your free download of msn explorer at http : / / explorer . msn . com  - mg _ analysis _ final . doc\",0\n\"Subject: last day notification  shelia walton , hr , told me that my last day with my department will be june  30 . meanwhile i talked last week to ebs , enrononline , and ees . i was most  interested in the ees talk with harold buchanan who needs to know that he has  the most complete list of potential customers and then information about  those customers .  any happenings from your talks ?\",0\n\"Subject: new mexico energy graphic presentations - cera report  title : new mexico energy graphic presentations  e - mail category : report  cera knowledge area ( s ) :  mexico energy - http : / / www 20 . cera . com / eprofile ? u = 35 & m = 2396  cera is pleased to announce some new enhancements to the mexico energy advisory  service website .  in addition to recent research and upcoming events , the mexico service is  incorporating new features including rich media presentations .  areas of focus for these presentations include :  * the energy dialogue : players and issues ,  * mexico energy reform progress update : electric power , and  * mexico energy reform progress update : natural gas  to view these presentations , you must have the flash player software installed  on your computer . the free macromedia flash player can be downloaded at :  pl _ prod _ version = shockwaveflash  we encourage you to visit the mexico energy website today to obtain cera ' s  independent perspective on mexican energy market issue via a new medium !  these graphics presentations are presented under the market outlook area of the  mexican energy website at :  cera ' s spring 2001 roundtable event dates and agendas are now available  at http : / / www 20 . cera . com / event  to make changes to your cera . com profile go to :  forgot your username and password ? go to :  http : / / www 20 . cera . com / client / forgot  this electronic message and attachments , if any , contain information  from cambridge energy research associates , inc . ( cera ) which is  confidential and may be privileged . unauthorized disclosure , copying ,  distribution or use of the contents of this message or any attachments ,  in whole or in part , is strictly prohibited .  terms of use : http : / / www 20 . cera . com / tos  questions / comments : webmaster @ cera . com  copyright 2001 . cambridge energy research associates\",0\n\"Subject: re : maureen raymond - castaneda extension  maureen ,  i apologize that your phone was disconnected in error . at this time your  phone is working and your voice mail box needs to be set up . i would like to  add however , i do not appreciate your disrespect and unreasonable demands  placed on my employees . they were not the cause of this problem and can only  relay your information to the appropriate group .  enron has values of respect , integrity , communication and excellence . i  would appreciate you taking the time to review them .  robert knight  director voice communications  stella l ely  03 / 08 / 2000 11 : 08 am  to : move - team / epsc / hou / ect @ ect , telephone mods / corp / enron @ enron , dolores  sustaita / epsc / hou / ect @ ect , robert knight / hou / ect @ ect  cc :  subject : maureen raymond - castaneda extension  please reinstate maureen ' s extension immediately , if possible . it was  disconnected this past weekend when we had it taken off of the phone at eb  3073 f . her extension was on two phones at two different locations and should  not have been disconnected at eb 1939 . her extension no . is 30396 . sorry  for the confusion . please let me know timing asap .  thank you .  stella ely\",0\n\"Subject: finance club : e - trading and fixed income markets workshop  as faculty advisor to the finance club , prof . barb ostdeik is encouraging  all members to take advantage of a great opportunity to learn more about  trading operations from two very respected individuals in the industry .  keith anderson of blackrock , inc ( jgsm 1983 ) and dexter senft of lehman  brothers & tradeweb llc ( rice 1974 ) have visited the jones school to give  this lecture and students have raved about them . albert wang ' s fixed income  and advanced investments classes are required to attend , and james weston  recommends for his applied finance students and any first years taking  investments next year to be there .  when :  9 : 45 a . m . d 11 : 15 a . m .  wednesday  april 18  where :  room 117  herring hall  presentation / discussion topics :  trading tactics d phone trades vs . electronic trading  evolution of e - trading in fixed income markets  the future of the trading desk  buy - side vs . sell - side issues  speaker profiles :  keith anderson , managing director and chief investment officer , fixed income  of blackrock , inc . , is co - head of the fixed income operating committee ,  chairman of the investment strategy group and a member of blackrock \u0001 , s  management committee . mr . anderson is responsible for global fixed income  strategy , asset allocation and the overall management of client portfolios .  he coordinates a team of thirty - two portfolio managers and more than  twenty - five credit and quantitative analysts .  mr . anderson is a member of the treasury borrowing advisory committee , which  meets quarterly in washington , d . c . with the secretary and staff of the u . s .  treasury to advise them on the financing and management of the federal debt .  prior to founding blackrock in 1988 , mr . anderson was a vice president in  fixed income research at the first boston corporation , working in mortgage  securities and derivative products strategies . mr . anderson with criterion  investment management company where he had primary responsibility for a $ 2 . 8  billion fixed income portfolio .  mr . anderson has authored numerous articles on fixed income strategies ,  including two articles in the handbook of fixed income options : \"\" scenario  analysis and the use of options in total return portfolio management \"\" and  \"\" measuring , interpreting , and applying volatility within the fixed income  market \"\" .  dexter senft is a managing director with global responsibility for fixed  income electronic commerce for lehman brothers . during his eight years at  the firm , he has also managed or co - managed lehman \u0001 , s fixed income research ,  quantitative research , counterparty credit and global economics departments .  mr . senft is the former chairman of tradeweb llc , a consortium - owned  electronic bond trading system whose volume currently averages over $ 10  billion per day , and of which lehman brothers is a founding shareholder . he  remains on tradeweb \u0001 , s board , and chairs tradeweb \u0001 , s trading protocol  committee , which oversees the rules that govern the electronic flow of  information within the system .  mr . senft also serves on the bond market association \u0001 , s committee for  alternative trading systems , as well as its online bond steering committee  and he chairs the subcommittee on e - commerce protocols and standards .  prior to ejv , mr . senft spent 17 years at the first boston corporation ( now  part of cs first boston ) , where he was a managing director and head of fixed  income research and product development . he is a widely published author of  articles on mortgage securities , fixed income derivatives , and quantitative  portfolio management , and his work continues to be among the readings for  cfa applicants . in 1983 , mr . senft led the product team that created the  first cmo for freddie mac .  this is regarding the e - trading / bond market session  arranged for april 18 . as part of the lst year finance elective , you may  have already been informed by james weston ( were you ? ) but i need to get  the info out to more 2 nd years as well .  do you usually send out your speaker announcements to all faculty ,  students , and staff ?  albert wang ' s fixed income and advanced investments classes are required to  come and james weston will be encouraging lst years that took the finance  elective to come .  these guys are pretty good - they came a few years back .  thanks .  bbo\",0\n\"Subject: colleagues ,  i will be leaving enron next week . friday , september 8 , will be my last day . i  enjoyed knowing and working with you . for the time being , i can be reached at  takriti @ att . net .  - samer\",0\n\"Subject: re : research allocation  becky ,  i gave the % % for egm to shirley . i assume she communicated this info to you  already .  i assume egm includes f / x - i / r ( gary hickerson ) , weather , insurance ( jere  overdyke ) ,  oil trading and coal .  for calme i don ' t have any info . let ' s split the cost evenly .  vince  becky pham  11 / 02 / 2000 02 : 11 pm  to : shirley crenshaw / hou / ect @ ect , vince j kaminski / hou / ect @ ect  cc :  subject : research allocation  shirley ,  grm is now with egm group . egm wants to verify that the 17 . 5 % we are going  to allocate to grm is for the insurance , jere overdyke group . egm seems to  think that their weather , mark tawney group , is receiving support from  research . also , can we break out the support for calme ? calme is going to  split into 3 bus and i am trying to determine who i need to bill for research  supports . if you have any questions , call me . thanx .\",0\n\"Subject: d - g energy systems  vince ,  i just wanted to keep you informed - i have not received a contract from d - g  energy systems yet . they had said they would send it last weekend but it  never came . i sent helyette geman an e - mail yesterday asking the status but  she has not responded yet .  karla\",0\n\"Subject: london update  vince ,  more fuel for our discussion with john sheriff today ,  mike  - - - - - - - - - - - - - - - - - - - - - - forwarded by mike a roberts / hou / ect on 04 / 25 / 2001 05 : 44 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron north america corp . from : stephen bennett @ enron 04 / 25 / 2001 04 : 05 am  to : jose marquez / corp / enron @ enron , mike a roberts / hou / ect  cc : tony hamilton / eu / enron @ enron  subject : softs ( ag ) support  hi guys ,  i thought i would quickly update you on a few meetings we ' ve had with the ag folks here over the past 2 days . they are extremely interested in weather support and appear to be our most enthusiastic customer group to date . a summary :  1 ) they are interested in cocoa , coffee and sugar . specifically :  brazil : londrina , bauru , lavras ( all wmos available in accuweather )  vietnam : kentum , dalat ( no data immediately evident )  ivory coast : man , gagnoa ( wmos in accuwx )  indonesia : sumatra - kotubumi , sulawesi - dolo ( no data immediately evident )  2 ) they are specifically interested in event spikes - extreme temperature , precipitation or wind . they are also interested in any trend information we can devise . links between enso or other large scale oscillations that could have long range effects . tony has already given their group a 101 course on enso and its impacts on these areas .  3 ) they would eventually like daily am briefings - along with a daily product related to their market ( ie precip / temp graphs etc )  4 ) they do not begin actually trading for another 6 to 8 weeks - so we have some time to experiment with the type of support that fits them best .  tony and i agree that we would like to brainstorm this a bit with you guys to see what exactly can be produced daily - as efficiently as possible . we should be able to add any lat / long points we want to the list of international cities streaming through from the mrf / avn / ecmwf from earthsat . the problems here would be the models ' problems handling tropical weather along with specific local effects - especially in indonesia .  let ' s talk about this at some point and get our thoughts together .  steve\",0\n\"Subject: re : enron offsite - the great divide - april 27 , 28 , 29 and 30 th  hello all :  fyi !  how is the headcount coming ?  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 03 / 23 / 2000  09 : 40 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" steve collins \"\" on 03 / 23 / 2000 09 : 41 : 19 am  to : shirley crenshaw / hou / ect @ ect  cc :  subject : re : enron offsite - the great divide - april 27 , 28 , 29 and 30 th  hello !  the 29 th will be fine - - if we can definitely get everything in by then . i  just worry a little when we start getting less than a month out . we need to  make sure that our conference services office has enough time to detail all  of your functions properly so that everything flows smoothly .  also please know that the availability of those $ 274 airfares is also not  guaranteed until booked ( you know how those airlines are about changing fares  around ) . we need to be able to book a specific class of service to get that  fare , so once those are gone the fare cannot be guaranteed . do you want me  to get started with the air contract ?  please keep me posted ! thanks !  steve  steve collins  national sales manager  the village at breckenridge / great divide lodge  ( 800 ) 332 - 0424 or ( 970 ) 453 - 3156 direct  scollins @ vailresorts . com  > > > \"\" shirley crenshaw \"\" 03 / 23 / 00 08 : 12 am > > >  good morning steve :  i received your voice mail and the flight information sounds great !  i need to update you as to the status of everything at present .  the contract is fine , however , i am not authorized to sign it , so if it is  allright , we are putting \"\" john griebling ' s \"\" name in my place . he will  sign  the contract and we will put the charges on his credit card .  however , john is out of town and will not be back in until tomorrow . this  may cut it a little close as to getting everything back to you by monday ,  the 27 th . is there a possibility of getting this deadline pushed back a  couple of days ? we are also having a problem getting a commitment from  the  top management people - they are all out of town at present . this does not  involve very many - only 3 or 4 people , but we need to get a definate  count  so that we won ' t be short on rooms . if everyone can come , it looks like  we  might need at least 39 rooms .  we should be able to have everthything to you by the 29 th - is this a  problem ?  please let me know as soon as possible .  thanks and have a great day !  shirley crenshaw  telephone : 713 - 853 - 5290  fax : 713 - 646 - 2503  e - mail : shirley . crenshaw @ enron . com\",0\n\"Subject: update on energy book  vince ,  ?  just to let you know , the books will be shipped to both you and rice  university tomorrow by express mail , which means the books should arrive  within 5 days ( depending on customs ) .  ?  rice has purchased 25 books , and i informed them that if they don ' t sell  them all , we will ? credit their account ? with the amount of unsold copies . ?  i ' ve asked them to ? give you ? any extra copies instead of returning them .  ?  please find attached the invoice for the 50 books .  ?  thanks again , and if you need anything further , please let me know .  ?  julie  - enron 224 _ 10 _ 01 _ 01 . doc\",0\n\"Subject: re : clustering for power  jaesoo ,  as we discussed last week on wednesday meeting can you , please ,  implement clustering for power curves by geographical region . this involves the following :  1 . deciding together with risk control how many geographical regions we want to use  and which enron ' s curves belong to each region .  2 . deciding together with risk control how to choose core curves for each region . this decision can  be maid based on the a ) position size ; b ) statistical analysis . there might be other considerations .  3 . doing regression analysis for each curve versus the corresponding core curve .  winston ,  can is it possible to run var for the clustering results obtained by jaesoo with clustering done by sas ?  should we wait for the stage re - fresh and what is the status on this ?  tanya .\",0\n\"Subject: re : move research employee from one location to another on the 19 th  floor  shirley ,  your request has been scheduled for march 23 rd .  erica : )  shirley crenshaw  03 / 17 / 2000 12 : 16 pm  to : move - team / epsc / hou / ect @ ect  cc : stinson gibner / hou / ect @ ect , vince j kaminski / hou / ect @ ect , william  smith / corp / enron @ enron , kevin g moore / hou / ect @ ect , vasant  shanbhogue / hou / ect @ ect , clayton vernon / corp / enron @ enron  subject : move research employee from one location to another on the 19 th floor  hello all :  attached is a churn request to move clayton vernon from ebl 943 to ebl 952 .  he will need 3 boxes and labels delivered to his ebl 943 location , a few  days before you schedule his move .  if you need any other information , please let me know .  thanks and have a great weekend !\",0\n\"Subject: re : recent hardware repair  joe ,  we are extremely pleased with the support we receive from your team .  the problem was fixed very quickly .  vince  from : joe langston / enron @ enronxgate on 04 / 27 / 2001 11 : 31 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : recent hardware repair  vince ,  recently the hardware services team performed work on a piece of equipment for you . the technician that performed the work was jd marter , and this is just a follow up to insure that your problem was resolved . it is our goal to provide you with the best service possible , so please feel free to respond to this email if you have any comments that may help us provide you better service in the future . attached you will find a work log detailing what was done to resolve your issue . if you have any questions , or if the problem is not completely resolved please feel free to contact me .  thank you ,  joe langston  team lead hardware services  office : 713 - 345 - 8883  cell : 713 - 545 - 5912  pager : 877 - 239 - 2794\",0\n\"Subject: re : white wall board  anita ,  no problem .  vince  anita dupont @ enron  08 / 18 / 2000 10 : 27 am  to : shirley crenshaw / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : white wall board  shirely :  amitava wants one of those wall size white marker boards for his office . how  do i go about ordering one of those ? anita\",0\n\"Subject: re :  craig -  thanks for the feedback .  i ' ve received similar reports from other research customers on various  non - recurring and on - going projects elena has been able to help out on .  the most recent member of a long line of rice mba candidates who have \"\" made a  difference \"\" in our research efforts , elena will be staying with us throughout  this next ( her final ) year .  she ' ll be working the morning shift .  please let us know if she , or any other member of our group can assist you in  any way .  - mike\",0\n\"Subject: interview - credit derivatives  dear vince :  thank you for the invitation yesterday . it was a pleasure to meet you all and learn more about the group , it ' s structure and to some extent what you are involved in . please extend my thanks to all of them .  i am particularly interested in the credit swap trading platform that enron has recently started . such a platform will provide unique visibility into the credit markets . as you suggested i tried to learn more about this from tanya . i would like to learn more and if possible meet other people more directly linked to the effort .  just simple instruments like credit swaps will require serious modelling capability for the pricing and the hedging of these apparently simple intruments . the market visibility i mention above can be explored through credit derivatives trading successfully if enron possesses superior ( vis a vis morgan stanley , salomon smith barney , chase manhatan , etc . ) modelling technology in credit derivatives . i can and would like to consider the possibility of doing this for enron . i would like to help develop and participate in putting together that business .  as i mentioned to you i have done some work in credit derivatives and am deeply familiar with virtually all the work of the principal academics in credit derivatives namely : duffie , lando , tuffano , duffee , das , lelland , etc . i have read carefully most of their work ( published as well as working papers ) on the subject to date .  i look forward to hearing from you .  best regards  joao\",0\n\"Subject: feedback forms  vince ,  here are the feedback forms for the following :  vp and md  manager and professional  administrative support  let me know if you have any other questions .  norma  x 31545\",0\n\"Subject: boss ' s day  vince ,  happy boss day ! you have been a wonderful boss , thank you .  zimin  - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 10 / 16 / 2000 08 : 49 am  - - - - - - - - - - - - - - - - - - - - - - - - - - -  kevin g moore  10 / 16 / 2000 05 : 58 am  to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , pinnamaneni  krishnarao / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , mike a  roberts / hou / ect @ ect , joseph hrgovcic / hou / ect @ ect , tanya  tamarchenko / hou / ect @ ect , zimin lu / hou / ect @ ect , martin lin / hou / ect @ ect ,  maureen raymond / hou / ect @ ect , osman sezgen / hou / ees @ ees , paulo  issler / hou / ect @ ect , amitava dhar / corp / enron @ enron , alex  huang / corp / enron @ enron , kevin kindall / corp / enron @ enron , kevin g  moore / hou / ect @ ect , clayton vernon / corp / enron @ enron , william  smith / corp / enron @ enron , jose marquez / corp / enron @ enron , chonawee  supatgiat / corp / enron @ enron , shalesh ganjoo / hou / ect @ ect , tom  halliburton / corp / enron @ enron , elena chilkina / corp / enron @ enron , sevil  yaman / corp / enron @ enron , sofya tamarchenko / na / enron @ enron , bob  lee / na / enron @ enron , gwyn koepke / na / enron @ enron , hector campos / hou / ect @ ect ,  anita dupont / na / enron @ enron , youyi feng / na / enron @ enron , v charles  weldon / hou / ect @ ect , shane green / hou / ees @ ees , yana kristal / corp / enron @ enron ,  praveen mellacheruvu / hou / ees @ ees , li sun / na / enron @ enron , stephen  bennett / na / enron @ enron , roman zadorozhny / hou / ees @ ees , lance  cunningham / na / enron @ enron , shirley crenshaw / hou / ect @ ect , david  ryan / corp / enron @ enron , todd decook / corp / enron @ enron  cc :  subject : boss ' s day  reminder - let your boss know that  you care !  tell him or her happy boss ' s day !  happy boss ' s day , vince , mike , vasant and stinson and also to you  shirley ,  i hope you all have a wonderful day .  also remember the weather team will be over at ninfa ' s for  3 : 30 p . m . for happy hour . today  you are welcome to join us . . . . . . . . . . . .\",0\n\"Subject: @ ect . enron . com email notification !  we are one @ enron . com !  please be aware of the following senders were automatically notified to ( a ) .  stop sending internet mail to your @ ect . enron . com address and to ( b ) . send  future internet communications to vince . j . kaminski @ enron . com :  j _ martin @ baylor . edu , cantekin @ mail . utexas . edu  reminder :  your @ ect . enron . com address should not be used any longer and will be  deactivated soon . so please make sure these contacts switch to your new  @ enron . com address . if you have subscribed to mailing lists , please make  sure to update your addresses there as well .  and  your shortname @ enron . com address ( i . e . jsmith @ enron . com ) will continue to  work , even though your formal address is longname @ enron . com ( i . e .  john . smith @ enron . com )  please do not reply to this message as it was automatically generated .\",0\n\"Subject: * * get together * *  dear friends :  fall happy hour  friday , september 15 , 2000  after work : 5 : 30 pm - - 8 : 00 pm  ragin cajun - - on the patio  ( the new location )  westheimer at gessner  ( the randalls shopping center on the corner )  832 - 251 - 7171  feel free to bring friends !  hope to see you there ! !  jana\",0\n\"Subject: congratulations  vince : congratulations on your promotion . i know it is well deserved ! i  have not seen you in a while since i am not riding the woodlands bus much  these days . i am expecting a baby for the end of february 2000 and it is  much easier to drive than to ride the bus !  take care and congratulations again ,  darlene norris\",0\n\"Subject: yesterday  i enjoyed meeting you both yesterday to discuss my sincere interest in the  research group .  since many of the rotations for analysts are pre - determined , i think it is  best for me to wait until my candidacy  for the analyst program is finalized .  thank you for your interest in my skill - set . i am enrolled in the cfa  program , have completed numerous futures / options  courses in undergraduate school , and am confident that my profile will be  well - received after completing your in - house  project which will be utilized to test certain skills .  i ' ll talk to you soon after my discussions with the analyst program .  regards ,  david\",0\n\"Subject: re : argentina power & gas market modelling  team ,  for me it \u0001 % s ok . let us know the confimed date early , so we can arrange our  classes .  thanks  diego  julian poole  03 / 17 / 2000 10 : 35 am  to : michael guerriero / enron _ development @ enron _ development  cc : vince j kaminski @ ect , grant masson @ ect , jeff  kabel / enron _ development @ enron _ development , rodolfo  freyre / enron _ development @ enron _ development , diego  hollweck / enron _ development @ enron _ development , bernardo  andrews / enron _ development @ enron _ development , mario aguilar  benitez / enron _ development @ enron _ development , santiago  subject : re : argentina power & gas market modelling  all ,  let ' s arrange a conference call next week to discuss the process .  how does tuesday afternoon fit everyone ' s schedule ?  julian  enron international  from : michael guerriero 03 / 17 / 2000 03 : 49 pm  to : vince j kaminski @ ect , grant masson @ ect , jeff  kabel / enron _ development @ enron _ development , julian  poole / enron _ development @ enron _ development , rodolfo  freyre / enron _ development @ enron _ development , diego  hollweck / enron _ development @ enron _ development , bernardo  andrews / enron _ development @ enron _ development , mario aguilar  benitez / enron _ development @ enron _ development , santiago  cc :  subject : argentina power & gas market modelling  i would like to initiate a team to address the continued improvement of the  argentine power & gas market models . i spoke with vince this morning and we  reviewed that history of work to date and what we will need to do from here .  a summary is as follows :  team :  ba members : julian poole lead  mario benitez associate  ba associates : diego hollweck associate  bernardo andrews associate  santiago porta associate  houston members : to be named .  time schedule : as soon as possible . completed before june 1 , 2000 winter in  argentina .  scope of work :  power model : advance the current model from basic load forecasting to  incorporate weather , hydrology , improved short term and long term forecasting .  natural gas model : build a supply and demand load forecasting model  incorporating weather , thermal demand , pipeline flow rates , well head  supply , improved short term and long term forecasting .  phase i - data request  power  historic weather : temperature - daily , hourly , min , max , average  humidity  precipitation  cloud cover  regionally  forward weather : temperature - daily , hourly , min , max , average  humidity  precipitation  cloud cover  regionally  historic hydrology : reservoir levels  reservoir capacity  current hydrology : reservoir levels  remote monitoring : aireal , pressure device , laser  snow pack : density volume and mass  power supply : current and future capacity  transmission  capacity : current and future capacity  natural gas data list to be developed  phase ii - power model development  phase iii - natural gas model development  we will take advantage of the fact that the associates are in houston for the  next two weeks . vince is out next week but we can start with a process  discussion with grant masson next week . julian please get a meeting scheduled  as soon as possible . we should immediately start collecting data .  thanks  mfg\",0\n\"Subject: re : get together this coming tuesday ?  dale ,  please , call me on tuesday . my morning schedule is full but i am open in the  afternoon .  vince  \"\" dale m . nesbitt \"\" on 04 / 30 / 2001 01 : 51 : 21 am  please respond to  to : \"\" vincent kaminski \"\" , \"\" kimberly s . watson \"\"  cc :  subject : get together this coming tuesday ?  vince / kim :  i am flying to houston tonight and wondered if it would fit one or both of  your schedules to get together this coming tuesday sometime for 1 / 2 hour or  so . i really want to reinitiate the conversations marketpoint was having  with john goodpasture and you , and he said either or both of you were the  right people to continue after his responsibility shift . john was quite  positive about the idea of enron acquiring marketpoint narg through license ,  and he implied that one or both of you would be carrying the ball in that  direction after he handed it to you .  would this coming tuesday morning at 930 am be a good time for you guys ? if  so , please give me an email shout at the above address or leave a message on  my voicemail at ( 650 ) 218 - 3069 . i think you will be truly impressed with the  scope and progress we have been able to make with both the short run narg  and the long run narg in which you were interested ( not to mention our power  model ) . the progress is noticeable since you saw it . both long and short  term narg are having quite an impact on a number of gas decisions at the  moment ranging from venezuelan lng , north american lng import terminals and  term , gas basis calculations , trading support , power plant development ,  gas - to - power price spreads in key markets , veracity of heat rate trades ,  bank financings , storage field evaluation , and which new pipelines we can  expect to see enter and which are dogs .  i really hope we can fit it in and get our discussions moving in a mutually  productive direction again . i think narg can help you become even more  successful , and i look forward to working with you .  we have a new office address and new phone number as well . ( we move in may  1 . )  altos management partners  95 main street , suite 10  los altos , ca 94022  ( 650 ) 948 - 8830 voice  ( 650 ) 948 - 8850 fax  ( 650 ) 218 - 3069 cellular  give the phones a week or so to get \"\" debugged \"\" and then switch over .  dale\",0\n\"Subject: new basis report  bhavna :  the basis report has been updated to cover 2000 prices . it is called  basisnw 7 . xls and is in the erg database .  it looks to be working correctly , but of course without data it is a little  hard to confirm . as always , it is ultimately your job to verify that the  numbers reported are correct . lemme know if there are problems .  it is easy to change the spreadsheet to start a new year . you should keep  this mail message as a reference .  1 ) add 12 to the expression in \"\" printmacro \"\" ! b 35 i . e . change  copy ( offset ( henrycash , 12 * againstyear + 63 , i , 12 , 1 ) ) to  2 ) define a new cell reference on the basis page for the first date to be  printed out on the report page . for example , last year , the basis report  went from jan 93 to dec 1999 . in basisnw 6 . xls there is a name \"\" jan 93 \"\" defined  as \"\" basis \"\" ! a 64 ( i . e . refers to the row where the jan 1993 basis numbers are  recorded ) . this year , in basisnw 7 . xls , i defined \"\" jan 94 \"\" to refer to  \"\" basis \"\" ! a 76 . that ' s because the basis report will now run from jan 1994 to  dec 2000 .  3 ) change the expression in \"\" printmacro \"\" ! b 45 to use this new cell reference  i . e . change copy ( offset ( jan 93 , 12 * indexyear , report , 12 , 1 ) ) to  4 ) having executed steps 1 ) - 3 ) the spreadsheet will now print numbers  shifted up by one year . all that remains to do is to change the dates on the  \"\" printformat \"\" page to be one year more . by that i mean change 1998 to 1999 ,  1999 to 2000 , change 98 / 99 to 99 / 00 , etc . don ' t move any numbers or formulas !  that ' s it . as we discussed bhavna , while i am happy to do this for you , it  is not in your or my best interest for this to continue . please do work to  find some one in your shop to maintain this spreadsheet .  regards , and happy new year !  grant .\",0\n\"Subject: re : ruewan ' s resume  no interest for global risk markets . his background does not address the  needs .  vasant\",0\n\"Subject: re : fw : pserc nuggets related to market stem  hi vince and happy new year  good to hear from you and i can understand being busy . i am myself trying to  balance my commitments here .  like any research consortium pserc is trying to provide value to its members  while walking the fine line between cooperation and competition . we are  definitely not in the business of providing proprietary research to the  members but rather working on more generic areas that later individual  members could see way to convert to proprietary tools . the work that shijie  deng and rajnish kamat have been doing with me are good examples .  as to my trip , thanks for the invitation but i already committed myself to  get back friday night so i will save my visit for another time .  i will tell my son about the spring interviews at cornell . hopefully this  time he will not miss it .  regards , shmuel  - - - - - original message - - - - -  from :  to :  cc :  sent : monday , january 08 , 2001 1 : 40 pm  subject : re : fw : pserc nuggets related to market stem  >  > hello shmuel ,  >  > thanks for your message . the end of 2000 and the beginning of 2001 were  > extremely busy  > and i could not focus on pserc issues . i shall consult a few people in  > enron on this subject and get in  > touch with you . our concern right now is that the results of research are  > widely shared with  > our competition .  >  > i am out on the 19 th , but the 20 th would work for me . i would be glad to  > cover the cost of your austin  > to houston trip .  >  > regarding your son . the analyst / associate program will interview again  on  > the campus  > in the spring and they will be more than happy to interview him .  >  >  >  >  >  > \"\" shmuel oren \"\" on 12 / 19 / 2000 01 : 40 : 02 pm  >  > to :  > cc : \"\" dennis ray \"\" , ,  >  > subject : fw : pserc nuggets related to market stem  >  >  > hello vince  > happy holidays .  > i wanted to connect with you regarding the possibility of enron joining  > pserc . as you might have heard from lance and alex we are going through a  > transition period having doubled the number of universities and industry  > members within the last year . consequently , our business processes are not  > well developed . one of the problems we are facing is the balance between  > the  > electrical engineering folks and industry members that are more interested  > in market related research . i hope to recruit more of the later so tat we  > have more of a constituency in the advisory board that sees the value of  > market related research . i already have a verbal commitment from people at  > electrabell that expressed interest in joining pserc . with members like  > electrabell and enron we will be able to support more market stem projects  > such as the one that shijie deng proposed ( not funded in this round ) .  > please  > let me know if i can do anything to facilitate the decision at enron . i am  > going to be in austin on january 19 to participate at a puct hearing and  > could come through huston for a visit . attached are some items that i  > shared  > with our pserc members and thought that you might be interested in them as  > well .  > regards , shmuel .  >  > - - - - - original message - - - - -  > from : \"\" shmuel oren \"\"  > to : \"\" power systems engineering research center \"\"  > sent : tuesday , december 19 , 2000 9 : 47 am  > subject : re : pserc nuggets related to market stem  >  >  > > the following are 3 items that demonstrate the impact of pserc research  > in  > > the market stem area .  > >  > > 1 . on december 12 , i ( shmuel oren ) testified at a hearing in san  > francisco  > > before the blue ribbon panel ( chaired by alfred kahn ) for the that is  > > investigating the implications of uniform price vs . pay as bid auctions  > in  > > the california px . as part of my testimony i presented a movie produced  > by  > > tim mount and bob thomas that show results of an experimental economic  > study  > > showing how bidders respond by raising their bids in a pay as bid  > auction .  > > following is an acknowledgement i received .  > >  > > dear shmuel :  > >  > >  > > thank you for attending the blue ribbon panel this past tuesday in san  > > francisco . your presentation was very informative and valuable to all  > the  > > panel members and other participants . the panel greatly appreciates  your  > > involvement in this important project .  > >  > >  > > thanks again ,  > > natalie efland  > >  > >  > > 2 . a recent e - mail from the texas puc  > >  > > professor oren , i hope you and your family are doing well . we are  > seriously  > > considering your help and advice to facilitate the commission ' s final  > > decision regarding retail competition in ercot .  > >  > > i wanted to let you know that ercot stakeholders filled an application  > for  > > approval of the ercot protocols in november . we received comments  > including  > > list of issues on november 22 and reply comments on december 1 . staff  > will  > > draft and submit a preliminary order to the commissioners for their  > > discussion on december 13 . there will be a pre - hearing on december 15  > when  > > parties will be asked to brief the commission on list of issues by the  > end  > > of first week in january . there will be a hearing on january 16  followed  > > with another hearing if needed . parties have asked the commission to  > > finalize its decision by mid march .  > >  > > to give you some more background , i have to mention that almost most of  > your  > > suggestions were accepted and will be reflected in the final protocols ,  > > except for problems with intra - zonal gaming regarding congestion  > management  > > and pay - as - bid compensation for selected ancillary services . a few  > > additional concerns are raised regarding ancillary services and  > congestion  > > management . stakeholders are still working toward more load  > participation  > > in ercot market . however , the main problem is the fact that market  > ( pilot  > > that covers 100 % of wholesale , but only 5 % of retail load ) will be open  > on  > > june 1 , 2001 based on a version of the protocols locked on august 1 ,  > 2000 .  > > ( that was the deadline for ercot to give a final design to anderson  > > consulting . ) that version does not include some of your recommendations  > to  > > address market design flaws . the full version is highly possible to be  > > implemented by january 1 , 2002 when market for 100 % retail competition  is  > > scheduled to open . given this gap , some parties have recommended not to  > > implement incomplete protocols and wait for full implementation by  > january  > > 2002 . in other words , they say let ' s go ahead with 5 % pilot retail  load ,  > > but wait for full design implementation before allowing 100 % wholesale  > load  > > ( and retail load ) be subject to the rules of the game described in the  > final  > > protocols .  > >  > > thanks .  > >  > > parviz adib , ph . d .  > > director of market oversight division  > > public utility commission of texas  > > 1701 n . congress avenue  > > p . o . box 13326  > > austin , texas 78711 - 3326  > > ph . no . : 512 - 936 - 7365  > >  > > 3 . the following is a segment from a published summary of the dec 13  puct  > > hearing . this segment describes the commision ' s deliberation on an  agenda  > > item addressing the possibility of instituting price caps as part of the  > > ercot protocols . ( see reference to my involvement in the next to last  > > paragraph )  > >  > > docket no . 23220 - petition of the electric reliability council of  > texas  > > for approval of the ercot protocols . ( discussion and possible action )  > > parviz adib , jess totten , keith rogas , and tammy cooper  > > chairman wood turned to page 2 item number 3 of the draft order  > identifying  > > issues , recommending that the word \"\" including \"\" be changed to \"\" other  than \"\"  > in  > > the parentheses . he thinks they know the ups and downs of the two  > > mechanisms , which are bid caps and price caps , but would not mind having  > > parties focus on what other protections might be used . commissioner  > walsh  > > would say \"\" including , but not limited to \"\" because she does not think it  > is  > a  > > bad idea for ercot to at least consider in their protocols a fail - safe  > > mechanism . it ' s kind of like the stock market suspending trading when  > > something crazy happens . they could consider a maximum scenario , such  as  > > \"\" we don ' t think this will ever happen but if it does we need to muffle  > it \"\" ,  > > whether it is $ 1 , 000 or $ 99 or whatever it is . they could consider  > whether  > > to put into the protocols a self - enacting price cap . while not  expecting  > it  > > to happen , if it did , you don ' t have to declare it an emergency and have  > the  > > commission have to act . chairman wood asked if they could leave the  > > question without the parenthetical at all and just say \"\" what protections  > > should be added to avoid extreme price spikes . \"\" commissioner walsh  > > reiterated that she wants ercot to think about the unlikely possibility  > of  > > unacceptable price spikes . she would like for them to have their own  > > fail - safe mechanism that is self - initiating as opposed to leaving that  to  > > having someone have to come in and act . commissioner perlman stated  that  > he  > > thinks the california - type price caps is what the concern is about . he  > > thinks everyone in this state is opposed to those , but he thinks the  > point  > > commissioner walsh is making is an interesting one . he had not thought  > > about the circuit breaker idea , and it might have some merit . he agreed  > > that it was worth considering something like that . then the question  > > becomes what the level is . chairman wood suggested the wording \"\" what  > > self - implementing protections should be added to avoid the price spikes .  > > commissioner perlman said he did not think anyone is talking about $ 250  > > price caps . commissioner walsh agreed , but noted that if the unexpected  > > happens we should be prepared . commissioner perlman indicated that if  > > someone is making $ 10 , 000 in one particular hour that it probably does  > not  > b  > > enefit the market and is probably a windfall to them . it is not  > something  > > they would normally put in their business plan for determining whether  > they  > > are going to build a plant in texas . chairman wood stated that they  want  > to  > > lean toward the market as heavily as they can on these issues .  > >  > > chairman wood noted that some of these issues date back to when dr . oren  > was  > > assisting the commission , and asked if he could be brought back again .  > > staffer dr . parviz adib said that staff had already talked to dr . oren  > and  > > that he is available to assist the commission further . chairman wood  > noted  > > that dr . oren had helped people think outside the box without just  > focusing  > > on california .  > >  > > the final wording was clarified to state \"\" self - implementing mechanisms \"\"  > and  > > to delete the parenthetical part of the sentence in question . the order  > was  > > approved as amended .  > >  > >  > >  > >  > >  > >  > >  > >  > >  > >  > >  >  >  >  >  >  >\",0\n\"Subject: re : mec  steve ,  i spoke with david ealier today . he is planning a meeting with jim tour to  due diligence the technology .  i would like to put together a team to drive mec ' s strategy , including a  consolidation in houston . we would trade this commitment for warrants in the  company and a right to participate in future fundings . effectively , our team  could help drive the strategy for the company and due diligence a possible  investment at the same time .  thanks ,  mark  steven j kean @ ees  07 / 26 / 2000 05 : 11 pm  to : mark lay / hou / ect @ ect  cc : rex shelby / enron communications @ enron communications @ ect , mike  mcconnell @ ect , vince j kaminski / hou / ect @ ect , philippe a bibi / hou / ect @ ect ,  kenneth lay / corp / enron @ enron @ ect , fabricio soares / hou / ect @ ect  subject : re : mec  i think it would be useful to verify their view that they are really only 2 - 3  years from commercial production . ideally , we could get that confirmation  from someone familiar with the technology but without any financial interest  in its success . their technology pitch sounded good , but i don ' t know enough  to recognize the potential shortcomings . i want to feel comfortable that you  all feel this is real , then i would be happy to have me and my team spend  some time with them .  to : rex shelby / enron communications @ enron communications , steven j  kean / hou / ees @ ees , mike mcconnell , vince j kaminski / hou / ect @ ect , philippe a  bibi / hou / ect @ ect  cc : kenneth lay / corp / enron @ enron , fabricio soares / hou / ect @ ect  subject : mec  thank you for participating in yesterday ' s meeting . we spoke with harvey and  jim after the meeting and they took to speed to market comments to heart .  there is an opportunity for enron to participate with mec in the early  development of their company , but it seems the one thing they want is the one  thing we also want , people . i would appreciate your thoughts and comments on  the possiblity of creating a small team that could work directly with mec as  part of a potential investment and strategic relationship . given our  resource constraints , this would most likely be part of the organization that  sees the greatest strategic impact from mec ' s development .  mark  x 37408\",0\n\"Subject: re : spring 2001 conference participation by jeffrey k . skilling  ehud ,  i shall send a message to jeff ' s secretary today .  vince  \"\" ehud i . ronn \"\" on 09 / 20 / 2000 11 : 12 : 46 am  to : rcausey @ enron . com , vkamins @ enron . com  cc :  subject : spring 2001 conference participation by jeffrey k . skilling  rick / vince ,  good morning .  in my 9 / 14 e - mail , i advised you of the practitioner - industry cefer ( center  for energy finance education and research ) conference we are planning for  spring 2001 . as you know , we would like to invite jeff skilling to be the  keynote speaker at the thur . evening dinner . the following day ' s four  topics consist of risk management , deregulation , real options , and  international / globalization . the majority of invitees would be  ( predominantly u . s . - based ) energy - industry practitioners , as well as  several academics .  given lead time issues in these matters , we have reserved hotel rooms in  austin for feb . 22 , 2001 . could i ask you to ascertain jeff skilling ' s  availability for that evening ?  thanks ,  ehud ronn  ehud i . ronn  professor of finance and jack s . josey professor in energy studies  director , center for energy finance education and research  mccombs school of business  university of texas at austin  austin , tx . 78712 - 1179  voice : ( 512 ) 471 - 5853  fax : ( 512 ) 471 - 5073  internet : eronn @ mail . utexas . edu \",0\n\"Subject: re : greetings from garp  frank ,  looks good .  vince  enron north america corp .  from : frank hayden @ enron 12 / 12 / 2000 11 : 31 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : greetings from garp  vince , this is the announcement i ' m thinking about sending out . is there  anything else you would like to add ?  frank  greetings from garp ! we are having the next meeting january 30 th at enron .  time 6 : 30 pm until 8 : 30 pm  vince kaminski will lead a discussion regarding volatility in the energy  markets .  please rsvp to rita hennessy . her email address is rita . hennessy @ enron . com\",0\n\"Subject: re : benchmarking study  sally ,  thanks . the name of the person is at the bottom of this sequence of messages .  vince  enron north america corp .  from : sally beck 01 / 05 / 2001 09 : 27 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : benchmarking study  i passed this information along to some of my direct reports for their  thoughts , and truthfully didn ' t hear back from anyone and didn ' t follow up .  two years ago , we agreed to be part of a benchmarking study that was done by  aa ' s houston office ( interestingly enough , wes colwell was the aa partner who  led this effort ) and we had mixed results . the study was designed to cover  gas and power . despite our involvement in the steering committee , the study  itself was very , very detailed , such that it was troublesome to complete .  jim fallon at the time refused to submit information on the majority of the  questions surrounding power , so our survey data for power was not very  useful .  i would agree that at this time we will pass on this request . thanks for  passing it along , however . i would be happy to convey this directly to the  person that has contacted you . just let me know his / her name and number and  i will follow through on that if you would like .  hope that your holidays was enjoyable and that the new year will be a good  one for you . - - sally  vince j kaminski  01 / 03 / 2001 03 : 29 pm  to : sally beck / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : benchmarking study  sally ,  i gave you some time ago a brochure on this benchmarking study request .  they renewed their request for enron ' s participation .  what is your view on this ? do you think the benefits of knowing what ' s  going on offset the loss due information released and time spent on the  project .  my recommendation is to forget it .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 03 / 2001  03 : 28 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" theresa sanders \"\" on 12 / 27 / 2000 01 : 32 : 18 pm  to :  cc :  subject : benchmarking study  dear vince ,  peter nance and i wanted to follow - up our discussion of enron ' s participation  in our benchmarking study . have you discussed enron ' s participation in the  project with your colleagues ?  here is a small sample set of metrics that were taken from a comprehensive  list of over 700 metrics . the study group will decide which metrics to use .  with eei ' s credibility and teknecon ' s technical expertise , we intend to  become the industry standard in benchmarking . we would very much like to  have enron participate in the study .  i would be happy to set up another meeting with you and your colleagues with  peter nance if you think that would be helpful .  best regards ,  theresa sanders  director of business development  alliance of energy suppliers  edison electric institute  tel : 202 - 508 - 5183  - eei metrics - short list . xls  - ebrochure . doc  - riskbenc . ppt\",0\n\"Subject: re : research allocation  thank you\",0\n\"Subject: re : tff 2001 meeting date question  vince ,  i certainly understand . however , we are going to try to move the date up a  week or two to make sure there are no conflicts for anyone . we ' ve had some  trouble getting our hotel date even this far in advance . i ' ll be back in  touch when we get it ironed out .  john  at 05 : 42 pm 8 / 23 / 00 - 0500 , you wrote :  >  > john ,  >  > easter may not work for me because i shall most likely  > be visiting my son who goes to school in california ( we were spending  > easter together for the last three years ) .  >  > vince  >  >  >  >  >  >  > \"\" john d . martin \"\" on 08 / 21 / 2000 01 : 42 : 14 pm  >  > to : aagrawal @ cba . ua . edu , andres almazan ,  > bethel @ babson . edu , murat binay ,  > abutler @ finance . bus . lsu . edu , tyrone . callahan @ bus . utexas . edu , murray  > carlson , chapman @ eco . utexas . edu , kent  > daniel , fdiebold @ stern . nyu . edu ,  > lederington @ ou . edu , harperl @ u . washington . edu , sgillan @ tiaa - cref . org ,  > stuart gillan , denis gromb ,  > grullon @ rice . edu , jarradh @ oregon . uoregon . edu , jhartzel @ stern . nyu . edu ,  > jhund @ mail . utexas . edu , daveike @ rice . edu , jegadees @ uiuc . edu ,  > cindy . justice @ enron . com , matthias kahl  > , vince . j . kaminski @ enron . com ,  > zkhokher @ mail . utexas . edu , alynch @ debit . stern . nyu . edu , andras marosi  > , \"\" john d . martin \"\"  > , maxwell @ ba . ttu . edu , beth miertschin  > , metrick @ wharton . upenn . edu , \"\" thomas h .  > noe \"\" , parrino @ mail . utexas . edu , bill  > petty , manju puri ,  > ramnath @ rice . edu , rampini @ nwu . edu , steve _ rich @ baylor . edu ,  > eronn @ mail . utexas . edu ( ehud i . ronn ) , kemal saatcioglu  > , akin sayrak ,  > sirri @ babson . edu , laura starks ,  > suarez @ cemfi . es , \"\" a . subrahmanyam \"\" ,  > stice @ mailhost . tcs . tulane . edu , titman @ mail . utexas . edu ,  > stathis . tompaidis @ bus . utexas . edu , wangfa @ rice . edu ,  > hong . yan @ bus . utexas . edu , beth miertschin ,  > gwillard @ mit . edu  > cc :  > subject : tff 2001 meeting date question  >  >  > hello from texas ,  >  > we are trying to set up our meeting date for the 2001 conference and have  > run into a snag . we cannot get our san antonio hotel on the first weekend  > in april ( as last year ) . however , we can get the hotel and make all our  > \"\" fun \"\" arrangements for the second weekend in april . however , this is  > easter weekend . the good news is that the room rates are substantially  > lower because it ' s a holiday . however , we are concerned that holding the  > meeting on this particular friday - saturday will interfere with family plans  > such that some or many of you may not be able to attend .  >  > my related question to you is this :  >  > does holding the meeting on the second weekend in april ( easter weekend )  > pose a problem for you ? please give us your thoughts asap even if you  > think you may not be able to attend this year ' s conference . we need your  > opinion to guide our decision .  >  > thanks and i hope to see you all again next april ( sometime ) !  >  > john  >  > p . s . we are very fortunate to have enron return as our corporate sponsor  > again this year .  > john d . martin  > carr p . collins chair in finance  > finance department  > baylor university  > po box 98004  > waco , tx 76798  > 254 - 710 - 4473 ( office )  > 254 - 710 - 1092 ( fax )  > j _ martin @ baylor . edu  > web : http : / / hsb . baylor . edu / html / martinj / home . html  >  >  >  >  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: spread option code change  zhiyang and zhiyun ,  vince told me that london has some trouble to calculate spread option  for correl = 1 , voll = vol 2 . in such a case , the effective volatility becomes  zero , and the option has zero time value .  i have modified the unitcorrpremium ( ) routine to force the code to treat  this situation as a special case . ( it returns the discounted intrinsic value ) .  please incorporate this chang to your code so that it will no longer cause  any  problems that should not happen in the first place .  if you have any questions , please let me know .  zimin  - - - - - - - - - - - - - - - - - - - - - - -  double unitcorrpremium (  double sl ,  double s 2 ,  double strike ,  double r ,  double ql ,  double q 2 ,  double voll ,  double vol 2 ,  double correl ,  double tmat ,  int opttype  )  {  double retval ;  if ( tmat < = 0 . 0 )  return intrinsic ( sl , s 2 , strike , opttype ) ;  / / look right here for the change , only two lines .  if ( ( 1 . 0 - correl ) < tiny &  setup ( sl , s 2 , strike , r , ql , q 2 , voll , vol 2 , correl , tmat ) ;  if ( opttype )  retval = s . disc * gauherint ( ffuncoc ) / sqrtpi ;  else  retval = s . disc * gauherint ( ffuncop ) / sqrtpi ;  return retval ;  }\",0\n\"Subject: re : infocast ' s valuing electric power assets and companies : a real  options perspective  good morning ,  i am sorry , to hear that you will not be able to join us - would know of  anybody else at enron who would possibly be interested in presenting at our  conference ?  thank you for your assistance in this matter - - - - - britta - - - -  - - - - - original message - - - - -  from : vince j kaminski [ mailto : vince . j . kaminski @ enron . com ]  sent : thursday , april 13 , 2000 6 : 08 am  to : brittab @ . com  cc : vince j kaminski  subject : re : infocast ' s valuing electric power assets and companies : a  real options perspective  britta ,  thanks for your message .  i have several commitments at the time of the conference  and have to decline with regret .  vince  \"\" britta bothe \"\" on 04 / 12 / 2000 03 : 52 : 46 pm  please respond to  to :  cc :  subject : infocast ' s valuing electric power assets and companies : a real  options  perspective  dear mr . kaminsky ,  as i mentioned on your voice mail , infocast is going to host an ? valuing  electric power assets and companies : a real options perspective ? conference  to be held on july 31 - august 2 , 2000 , in chicago , il - i would like to  explore your or your organization ' s possible participation at this event  with you . this conference has been designed to bring together industry  professionals , like you , to provide the latest details on a \"\" real options \"\"  approach to electric power asset valuation .  i have attached a draft program outline for your review . if you or someone  else at your company is interested in presenting on one of the topics please  let me know .  i truly appreciate your taking the time to review the conference schedule  and hope that you will consider participating . i am running behind schedule  in finalizing this program . i will call you on tomorrow to follow up with  you on this invitation . in the meantime , if you have any questions or  suggestions , please do not hesitate to contact me at ( 818 ) 888 - 4445 , ext .  30 . i hope you can join us for this event .  sincerely ,  britta bothe  infocast  conference manager  ( see attached file : ea & cv , program outline , scenario 1 . doc )\",0\n\"Subject: ravi thuraisingham ' s skytel two way pager number  here is the pager number that has been setup via jim irvine .  email : 8776804806 @ skytel . com  direct dial :  800 dial : 1 - 800 - 759 - 8352 box # 877 - 680 - 4806  i can be reached at this pager if you need to get me asap .  ravi .\",0\n\"Subject: energycast  please could you sort out an guest id for one month .  - - - - - - - - - - - - - - - - - - - - - - forwarded by louise kitchen / hou / ect on 27 / 07 / 2000  13 : 59 - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  26 / 07 / 2000 09 : 05  to : louise kitchen / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : energycast  louise ,  can we grant him guest access to eol again ? he is he same  person who requested it a few weeks ago . evidently he was busy  working on another project .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 07 / 26 / 2000  09 : 06 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" edward krapels \"\" on 07 / 25 / 2000 11 : 09 : 47 am  please respond to ekrapels @ esaibos . com  to : vince j kaminski / hou / ect @ ect  cc :  subject : energycast  dear vince ,  i hope your trip to australia was successful . it ' s one of my favorite places  to go .  i ' ve copied you on the email to mike initiating enron ' s trial service to  energycast . thanks for helping to set this up .  would you ask the authorities in enron to refresh my access to enrononline ?  my guest user id as ena 61296 and my guest password was tr 84 byl 3 . they no  longer work , probably because i haven ' t visited the site in months as we  were in full development mode on energycast .  vince , you will note in our website references to forward prices of power in  nepool , nypp , and pjm . we use reuters as a reference - - not satisfactory . if  your traders like energycast and enron became a client , would enron consider  linking its prices to our site ? we have to improve over the reuters quotes  and regard enrononline or bloomberg as the best candidates . over time , as  our service spreads i believe this could help generate deal flow for your  traders .  let me know what you think .  ed\",0\n\"Subject: enterprise risk  paul bristow gave me a call a few minutes ago , and is sending over some  info . i also received an email yesterday relating to operational risk .  evidently cibc has purchased some software to help quantify there exposure .  - kevin  - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin kindall / corp / enron on 08 / 08 / 2000  10 : 06 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" tao , xin \"\" on 08 / 07 / 2000 12 : 26 : 00 pm  to : undisclosed - recipients : ;  cc :  subject : press release - netrisk announces sale of riskopstm software to c  anadian imperial bank of commerce and erste bank  > please find attached an update on our most recent riskops sales . in  > addition , we are currently implementing riskops at a continental european  > financial insitution and a tokyo based japanese financial institution ,  > neither of whom are more members . we hope to issue a press release on  > these clients in the near future .  >  > kind regards ,  >  > lara swann  >  >  >  > >  >  > netrisk announces sale of riskopstm software  > to canadian imperial bank of commerce and erste bank  >  >  > greenwich , ct . july 11 , 2000 - netrisk , inc . , the risk management software  > and advisory firm , today announced that both canadian imperial bank of  > commerce ( cibc ) and erste bank have purchased licenses to its riskops ( tm )  > software product for measuring and managing enterprise - wide operational  > risk . operational risk includes the risk of direct and indirect loss from  > causes as diverse as rogue trading to technology failures to improper  > sales practices .  >  > erste bank , the second largest austrian bank , and canadian imperial bank  > of commerce , the second largest canadian bank , plan to use riskops ( tm ) on  > a continuing basis to help evaluate and quantify their firm - wide  > operational risk capital . the results will be integrated into their  > risk - adjusted return on capital ( raroc ) and consolidated enterprise  > ( market , credit and operational ) risk measures . these measures will help  > both banks to better allocate resources , evaluate individual business  > units on a risk - adjusted basis and improve strategic decision - making .  >  > \"\" we are delighted to continue our working relationships with cibc and  > erste bank by offering the riskops ( tm ) solution to complete their  > operational risk measurement and management processes , \"\" says dan mudge , a  > founding partner of netrisk . \"\" operational risk has been at the forefront  > of the regulators ' minds and both cibc and erste bank are taking leading  > positions in the industry by quantifying capital at risk by business  > line . \"\"  >  > \"\" riskops ( tm ) has enabled us to comprehensively measure and manage  > operational risk for each of our businesses , \"\" says tony peccia , head of  > operational risk management at cibc . \"\" riskops ( tm ) gives us the tools we  > need not only for capital allocation purposes but also for strategic  > decision making . \"\"  >  > \"\" the formal inclusion of operational risk into our overall risk management  > framework has required a significant commitment of erste bank .  > riskops ( tm ) will be used to estimate capital at risk for each business ,  > thereby creating an incentive for stronger risk management within the  > bank , \"\" says franz reif head of risk management of erste bank . \"\" in  > addition , we plan to work with swiss re new markets to evaluate our risk  > financing alternatives to ensure our capital is being used most  > efficiently . \"\"  >  > \"\" netrisk is pleased to continue its leadership role in helping the  > financial services industry develop methods and tools to quantify and  > manage operational risk , \"\" said rob ceske , head of netrisk ' s operational  > risk management division . \"\" as another example , the data standards we are  > developing in conjunction with multinational operational risk exchange ( tm )  > ( more ( tm ) ) , which includes cibc , will significantly benefit the industry ' s  > ability to exchange loss and risk data . \"\"  >  > riskops ( tm ) incorporates a database of published operational risk losses  > from the financial services industry , combined with web - based software to  > allow users to understand operational risk , analyze loss probabilities ,  > scale these losses to their firm and determine operational risk profiles ,  > including operational capital - at - risk . the product displays graphical  > analyses of the causes , effects , probabilities and severities of  > operational risk , specific descriptions of events and measures to help  > senior management and risk managers understand and quantify the sources of  > operational risk . riskops ( tm ) is available via the internet , by means of  > any standard browser .  >  > about netrisk  > netrisk ' s mission is to bring cost - effective , practical , leading edge risk  > solutions to its clients . to do so it is creating on - line communities and  > risk analytic software delivered via the internet . products and services  > offered by netrisk include : riskops - internet - based operational risk  > management solution ; crystal box - interactive performance and risk  > reporting for the investment professional ; and risk advisory - enterprise  > risk management consulting , advice and solutions to the financial services  > industry . gene shanks , the former president of bankers trust , founded  > netrisk , inc . in 1997 . netrisk has offices in greenwich , ct ; new york  > city ; and london . additional information on netrisk is available at  > http : / / www . netrisk . com / and on more at morexchange . org .  >  > about canadian imperial bank of commerce  > canadian imperial bank of canada is canada ' s number two bank . its 1350  > branches a range of banking services , including checking and savings  > accounts , investment products , mortgages and other loans , and credit cards  > to consumers and small to mid - sized businesses . in addition , the bank  > underwrites and sells life , credit , personal property / casualty , and  > non - medical health insurance . cibc world markets provides investment  > banking and other financial services in north america , europe and latin  > america .  > about erste bank  > erste bank is austria ' s oldest and second - largest commercial bank . the  > bank is doing business in six core segments : retail banking , corporate  > banking , treasury , trading and sales , and real estate financing and asset  > management . it has approximately 300 branches with international offices  > in new york , hong kong , and london . as austrian banks consolidate , erste  > bank is increasing its presence in eastern europe . it has subsidiaries in  > croatia and hungary and acquired 52 % of the shares in ceska sporitelna ,  > the second largest bank in the czech republic from the czech government .  > one of erste bank ' s largest shareholders is savings foundation  > anteilsverwaltung sparkasse .  >  >  >  >  >\",0\n\"Subject: re : ( no subject )  candice ,  maureen was sick for the last few days .  when she comes back , i shall ask her to start the process regarding  a formal offer for you .  vince  cedkao @ aol . com on 01 / 24 / 2001 11 : 00 : 52 am  to : vkamins @ enron . com  cc : shirley . crenshaw @ enron . com , cedkao @ aol . com  subject : ( no subject )  dear dr . kaminski ,  i would like to thank you and your colleagues , dr . gibner and ms .  raymond - castaneda , for taking the time to talk with me . i enjoyed the visit  very much and will be looking forward to the opportunity of working as a  summer intern at enron . you mentioned that you will call me this week . in the  event i ' m not at home , please leave a message at my home phone number ( 713 )  647 - 7161 or email me at my houston email address cedkao @ aol . com .  sincerely ,  candice kao\",0\n\"Subject: a resume for your consideration  vince , stinson :  i gave a talk to a bunch of uh mba students taking a course on options . one  of the more interesting of the inevitable stream of resumes is the enclosed .  perhaps an ebs hire ?  grant  - - - - - - - - - - - - - - - - - - - - - - forwarded by grant masson / hou / ect on 04 / 24 / 2000 08 : 18  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" matthew crouse \"\" on 04 / 21 / 2000 05 : 06 : 08 pm  to : grant . masson @ enron . com  cc :  subject : uh lecture and potential career opportunity  dr . masson ,  i attended your lecture at uh and enjoyed it tremendously . if possible , i  would like to investigate a career opportunity with your group in particular  or enron in general . would you please review my resume and / or forward to  potentially interested parties ?  in tandem will all of enron ' s other propaganda efforts , your top - notch  lecture at uh spurred me to do some soul searching . i currently work at  duke energy trading and marketing , but have been extremely impressed with  enron ' s cutting - edge research and market - leading position .  i have a ph . d in electrical engineering from rice ( statistical signal  processing ) with two years of experience at duke relating to the valuation ,  risk management , and risk measurement of financial derivatives and physical  assets . i seek a similar position that would allow me to leverage my  quantitative skills and grow within in the corporation .  i believe i would be a great fit with enron and hope you would consider me  for a potential position .  best regards ,  matt crouse  get your private , free e - mail from msn hotmail at http : / / www . hotmail . com  - matt crouse cv . doc\",0\n\"Subject: re : fw : opportunities  gerry ,  i may have unexpected meeting ( s ) in the morning .  please , keep trying and i shall try to call you as well .  vince  \"\" sheble , g . b . \"\" on 10 / 27 / 2000 09 : 09 : 16 am  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc :  subject : re : fw : opportunities  vince  since we were not able to connect this morning , would you identify any other  time as convenient for you ? should i try monday morning ?  thank you  gerry  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  gerald b . shebl ,  professor , electrical and computer engineering  director of complex adaptive systems program  1115 coover hall  ames , iowa 50011  voice : 515 . 294 . 3046  fax : 515 . 294 . 4263  email : gsheble @ iastate . edu  web : http : / / www . ee . iastate . edu / ~ sheble /  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =\",0\n\"Subject: re : contract update  got the copies and i have the corrected copies for you . will have them hand  delivered to you this afternoon .  sheila  - - - - - original message - - - - -  from : kaminski , vince  sent : wednesday , march 07 , 2001 8 : 37 am  to : walton , sheila  cc : kaminski , vince  subject : re : contract update  sheila ,  there were some handwritten changes made by greg whalley on the draft . .  i am sending you a copy in a few minutes .  vince  from : sheila walton / enron @ enronxgate on 03 / 06 / 2001 06 : 05 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : contract update  vince , if there are some differences that we need to correct , you and i can  meet tomorrow when you bring the contract in . i am available anytime after  lunch . please call me at x 30649 .  sheila  - - - - - original message - - - - -  from : kaminski , vince  sent : tuesday , march 06 , 2001 3 : 10 pm  to : sheila walton / hou / ect @ enron  cc : kaminski , vince  subject : contract update  sheila ,  some minor differences between the draft and the final executed version .  i have forgotten to bring the draft today , i shall send a copy to you  tomorrow .  there were some hand - written changes made by greg ijn the draft that were not  transferred to  the final version .  vince\",0\n\"Subject: new resume  dear vince ,  i am so grateful for your efforts . i really appreciate you taking time from  your busy schedule . if you have not contacted michael maddox , it ' s even  better . i have updated and re - worded my resume to better reflect my  accomplishments . would you please contact michael maddox of cera and forward  my resume to him ? his contact information is ( 617 ) 497 6446 or email :  mmaddox @ cera . com  have you had a chance to talk to david port ? maybe there are other options .  i am flexible and willing to do whatever it takes .  sincerely ,  bessik matchavariani  manager  enron broadband services  tel : 713 . 345 . 7230  fax : 713 . 646 . 8861  bessik _ matchavariani @ enron . net\",0\n\"Subject: re : status  vince -  understood .  i am going to request two days of vacation , for monday and tuesday .  clayton\",0\n\"Subject: request for update  vince ,  hopefully you have had a chance to look at mr . valverde ' s resume . please  let me know if you have an interest in talking with him or not .  thank you .  johan  johan c . dahl  director energy staffing group  management recruiters of portland , inc .  phone : 503 - 290 - 1153  fax : 503 - 282 - 4380  e - mail : jdahl @ mrportland . com  web : http : / / www . mrportland . com\",0\n\"Subject: comments  hi sheridan ,  how are you ? i hope that you had a good vacation . vasant and i looked at  your memo and found it to be interesting . i shall first briefly summarize  our understanding of the methodology you propose . the comments follow .  finally , i shall sketch a simple gas field project you can use as a test case  in further refining the model .  it appears that you are proposing a state - space approach where probabilities  of different states at various future dates are specified . the next step is  to assume a discount rate and to compute the present value by following the  branches from the origin to one of the terminal points . traversing through  the tree in this manner over many iterations will permit us to compute the  average present value of the project . also , you are using the simulation to  assign a value of the project to each node . thus each node will have a cash  flow associated with it which will occur if the node is reached and a value  which is an expectation of the value to be realized going forward . if some  of these values turn out to be negative , zero - coupon , risk - free bonds are  purchased to neutralize the negative realization .  next , we find a comparable and apply the expected rate of return back to our  project ( based on the variance of the returns ) . we iterate until  convergence .  finally , we subtract the initial investment and the computed risk capital  from the pv of the gross cash flows ( including debt ) to determine if the  project merits further consideration .  comments / clarifications  1 . the money is being set aside to avoid negative values . it is not clear  if you mean the values of the cash flow or the pv at the node . anyhow , we  shall be setting aside money not just for that specific node but all nodes at  that cross - section of time as the risk - free asset pays in all states of  nature . this will have to be done every time there is a negative  realization . thus , for the typical project we have , the value of risk  capital may be extremely high , as we are not following a tail - based norm  anymore .  2 . your memo appears to suggest that debt capacity is contingent on all  values being positive . if so , we are only issuing risk - free debt . also , a  project with a single negative value at each cross - section of time will not  have a positive debt capacity .  3 . it seems that our optimization argument is the discount rate , which is  obtained in each step from the comparison investment ( by equating the  variances ) . it is not clear if changing the discount rate will have such an  effect on the project variance so as to lead to a global convergence . also ,  our project has a finite life and the market - based assets will have infinite  lives . in the light of this fact , how will we define the relevant variance ?  is it the spot variance of the returns of the comparison investment ?  4 . finally , our criterion is to subtract from the average pv the investment  and also the risk capital . setting risk capital to zero , this model closely  resembles the intuitive present value criterion and endogenously determines  the discount rate .  gas field case  to facilitate your thinking , we are providing a gas field example below .  we invest x million dollars to buy and develop a gas field . a profile of  expected production and variance of the production per year is available from  the engineers at the beginning . production will be autocorrelated , as the  profile will shift up or down based on the actual gas reserves being more or  less than the estimated reserves . we assume the life of the field to be 10  years with no salvage value . there are fixed and variable operating costs .  it might be useful for you to think about applying the framework to this  problem .  do let me know if you have further questions .  rakesh\",0\n\"Subject: re :  vince ,  sorry for getting back a little late . i have been in touch with kirstee to  figure out how to treat positions data which is the primary cause for  fluctuations . apparently , as of 7 / 19 , mg still has july position . this may be  spot or balance of the month , or some settlement issue . this indeed is what  we are trying to find out / verify ( it may be an error too ) . kirstee is going  to get back to me on this . if it is not an error , then anjam ' s latest results  ( $ 5 . 5 million total var ) are reasonable given all the assumptions and the  missing pieces . i will keep you posted .  cantekin  vince j kaminski  07 / 26 / 2000 10 : 12 am  to : cantekin dincerler / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , ted murphy / hou / ect @ ect  subject : re :  cantekin ,  can you figure out the reason for cocoa beans var fluctuations ?  the same is true of aluminum . i assume this is the position change .  vince  cantekin dincerler  07 / 26 / 2000 09 : 28 am  to : anjam ahmad / lon / ect @ ect , kirstee hewitt / lon / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject :  anjam and kirstee ,  as i have suspected the position as of 6 / 30 vs 7 / 19 makes the difference . the  first table first column is my var number with 6 / 30 position and gold & silver  prices , the second column is your var with 7 / 19 position and dummy  gold & silver prices . the second table first column is my var with 7 / 19  position and 6 / 30 gold & silver prices , the second column is as before .  i would ask you to plug the gold and silver prices and see what kind of  numbers you get in order to verify we are on the same page . please refer to  modelvar 2000 . xls that i have sent you for gold & silver prices and  volatilities .  thank you ,  cantekin  table 1  table 2\",0\n\"Subject: faculty contact and schedule persentation  please respond to dear mr . kaminski ,  the following are the faculty details :  ms . deborah j . barrett  instructor & dir . , mba communications  phone 713 - 348 - 5394  barrett @ rice . edu  mr . wil uecker  associate dean for executive education  phone 713 - 348 - 5869  uecker @ rice . edu  mr . dennis wayne loughridge  adjunct professor - management  phone 713 - 348 - 4869  lounghrid @ rice . edu  i will also speak with the faculty and inform them about the details  concerning the presentation on may 7 at enron office ( time to be determine )  and the dinner following it .  sincerely ,  luigi calabrese  rice mba candidate  class of 2002\",0\n\"Subject: re : jaesoo lew  vince , we should start working on the offer for jaesoo , should we ?  tanya .  jlew @ kent . edu > on 11 / 01 / 2000 09 : 59 : 25 am  to : tanya . tamarchenko @ enron . com  cc : jlew @ kent . edu  subject : thanks  dear tanya ,  thank you very much for the offer .  basically , i can start at anytime if the condition is acceptable .  currently i ' m in the middle of a decision that i can extend my internship or  accept a job offer at here . but i think that decision should be done soon  since my original internship expires this week . so the exact time to start  work at enron depends on how quickly i can get your official offer including  employment condition .  i hope this will help to your question . if you have any question on me , please  feel free to contact me .  again , i appreciate your decision .  sincerely ,  jaesoo lew\",0\n\"Subject: organizational announcement  enron is off to a fantastic start this year as we continue strong growth in  our wholesale energy businesses and begin rapidly developing a global market  for premium broadband services . to help accomplish our goals in these  businesses , the following management appointments are effective immediately :  kevin p . hannon has been appointed chairman and ceo of enron global risk  management . in his new role , kevin will devote the vast majority of his time  and efforts to building a successful bandwidth intermediation business for  enron , in addition to providing global risk management oversight . kevin will  report to enron \u0001 , s office of the chairman and will serve on the executive  committee . because of his efforts to build bandwidth intermediation  capabilities , he also will report to the office of the chairman of enron  broadband services .  greg whalley has been named president and coo of enron north america , where  he will fully dedicate his efforts to ena \u0001 , s continued growth and success .  greg will retain responsibility for ena \u0001 , s risk management functions but will  transition his global responsibilities to kevin .  please join us in congratulating greg and kevin in their new positions .\",0\n\"Subject: moody ' s upgrade  to the great and powerful research group :  as you may know , moody ' s has recently upgraded enron from baa 2 to baal .  we had been on watch for an upgrade for a while and after their intitial  credit meeting , they still had questions primarily related to our control of  market and credit risk . to that end , jeff mcmahon and tim despain had rick  buy , bill bradford and i meet with eight members of the moody ' s team . the  questions centered around policy and procedure in the wholesale businesses .  we discussed var , stress testing and potential credit exposure . to make a  long story short , subsequent to that meeting , they reconvened their committee  and announced the upgrade .  i want you to know how critical your contribution was to the discussion and  will continue to be as the bar gets raised . i am sure that next year they  will continue to be concerned with our risk management capabilities as well  as extensions of our current platform - tail risk , intra day risk ,  operational risk , and enterprise wide risk .  thank you for your efforts in supporting rac - it has tangible benefits .  ted  p . s . - there is still lots of interesting opportunities to extend the  paradigm\",0\n\"Subject: research  mike ,  vince and i are eager to see if our group can play a role in helping you in  your development work using some combination of the or experts in our group  and the resources to which we have access at stanford .  can we get together for a short planning session when you are next in  houston ? please let me know your schedule , or have your assistant coordinate  a time with vince ' s assistant , shirley crenshaw ( x 35290 ) .  thanks ,  stinson\",0\n\"Subject: warning system  greg ,  as a follow up . we are talking to jay webb today about the data we can get  from  the enron online system to develop an early warning system for automated  crude trading .  by the way , it was a good catch . you left us red faced .  vince\",0\n\"Subject: year end 2000 performance feedback  note : you will receive this message each time you are selected as a reviewer .  you have been selected to participate in the year end 2000 performance  management process by providing meaningful feedback on specific employee ( s ) .  your feedback plays an important role in the process , and your participation  is critical to the success of enron ' s performance management goals .  to complete requests for feedback , access pep at http : / / pep . corp . enron . com  and select perform review under performance review services . you may begin  providing feedback immediately and are requested to have all feedback forms  completed by friday , november 17 , 2000 .  if you have any questions regarding pep or your responsibility in the  process , please contact the pep help desk at :  houston : 1 . 713 . 853 . 4777 , option 4  london : 44 . 207 . 783 . 4040 , option 4  email : perfmgmt @ enron . com  thank you for your participation in this important process .  the following is a cumulative list of employee feedback requests with a  status of \"\" open . \"\" once you have submitted or declined an employee ' s request  for feedback , their name will no longer appear on this list .  review group : enron  feedback due date : nov 17 , 2000  employee name supervisor name date selected  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  andrews , naveen c rudi c zipter oct 31 , 2000  crenshaw , shirley j wincenty j kaminski oct 26 , 2000  kindall , kevin vasant shanbhogue oct 30 , 2000  lamas vieira pinto , rodrigo david port oct 31 , 2000  supatgiat , chonawee peyton s gibner oct 27 , 2000  tamarchenko , tanya v vasant shanbhogue oct 26 , 2000  villarreal , norma e sheila h walton oct 26 , 2000  walton , sheila h david oxley oct 27 , 2000  yaman , sevil vasant shanbhogue oct 27 , 2000  yuan , ding richard l carson oct 31 , 2000\",0\n\"Subject: re : recruiting at carnegie - mellon  john ,  i haven ' t received the invitation yet to the sep 13 th meeting .  i shall contact you thursday regarding the cmu presentation .  vince  john b gordon @ enron  08 / 23 / 2000 05 : 01 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : recruiting at carnegie - mellon  vince :  i understand that you are the lead recruiter for cmu . as you know , i am the  only alum from that school in enron ' s associate program . i assume i will be  joining you for our corporate presentation on 9 / 13 at 7 : 30 am . please let me  know what i can do to help prepare for this event . enron and gsia are a  great fit , so i want this recruiting effort to go well .  are you also giving a talk / lecture to the computational finance students ? if  so , what time ? maybe we can schedule a lunch with duane seppi . i look  forward to hearing from you .  john gordon\",0\n\"Subject: thank you for the opportunity  hello vince ,  i have heard you were sick . hope it is over .  thank you for the opportunity to visit enron , again , and to speak to the  guys . you have a good team . i wonder if you have come up with a decision  regarding my employment ?  look forward to hearing from you .  regards ,  martin\",0\n\"Subject: holiday gift basket  thank you , so very much for the gift basket , it is beautiful , i will share  with the group .  happy , happy , holiday ' s !  dolores sustaita & move - team\",0\n\"Subject: re : carl tricoli  i think i will coordinate with zimin , and have guadalupe do some research on  equities linked to corn price . initially , there will be some scenario  analysis done , and we can explore the possible use of options theory .  vasant  vince j kaminski  04 / 05 / 2000 02 : 41 pm  to : carl tricoli / corp / enron @ enron  cc : zimin lu / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , vince j  kaminski / hou / ect @ ect  subject : re : carl tricoli  carl ,  depends if it is more like financial or insurance type hedging .  i shall leave it to vasant to decide .  vince  carl tricoli @ enron  04 / 05 / 2000 11 : 19 am  to : vince j kaminski / hou / ect @ ect  cc : zimin lu / hou / ect @ ect , vince j kaminski / hou / ect @ ect , vasant  shanbhogue / hou / ect @ ect , christopher a helfrich / hou / ect @ ect  subject : re : carl tricoli  vince , thank you for the response . in the interim , we met with vasant  shanbhogue yesterday and explained the deal and what we needed . should  vasant continue to work on it , or would you still like us to loop in zimin  lu ?  vince j kaminski @ ect  04 / 05 / 2000 10 : 11 am  to : zimin lu / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , carl tricoli / corp / enron @ enron  subject : carl tricoli  zimin ,  carl tricoli ( 5 - 8958 ) will call you regarding help on ethanol ( hedging ) .  vince\",0\n\"Subject: re : recruiting for weather risk management group  hello vince ,  thank you very much for forwarding the message . i hope all is well with  you !  regards ,  heather  on fri , 27 apr 2001 vince . j . kaminski @ enron . com wrote :  >  > heather ,  >  > i am forwarding this message to 2 groups in enron that may be interested .  >  > vince  >  >  >  >  >  > \"\" heather thorne \"\" on 04 / 26 / 2001 08 : 55 : 56 pm  >  > to : \"\" christie patrick \"\" , \"\" vince kaminsky \"\"  >  > cc : \"\" greg hunt home \"\"  > subject : recruiting for weather risk management group  >  >  >  >  > dear vince and christie ,  >  >  >  > i hope that you are both well , and are ready for the onset of summer in  > houston ! ? i was disappointed that i was not able to see you at the final  > tiger team presentations last month due to a family emergency . ? i hope that  > the teams ' analyses will be helpful to your work , and echo their  > appreciation of your involvement and support .  >  >  >  > i am writing with a question regarding recruiting for enron ' s weather risk  > management group . ? my boyfriend , greg hunt , is currently seeking  > opportunities to combine his background in meteorology ( ms and 2 years of  > research at lawrence livermore nat ' l lab ) and an mba in finance and  > information technology . ? i began thinking about enron ' s work in weather  > derivatives , and realized that there could possibly be a great fit there .  >  >  >  > i have copied greg on this message , and would appreciate any suggestions  > you can offer regarding opportunities in this group . ? thank you very much !  >  >  >  > best regards ,  >  >  >  > heather  >  >  >  >  >  >  >  >  >  > heather n . thorne  >  > mba candidate , 2001  >  > the wharton school at university of pennsylvania  >  > 2516 pine street  >  > philadelphia , pa 19103  >  > ( 215 ) 545 - 3022  >  >  >  >  >  >\",0\n\"Subject: risk management it offsite meeting notes  fyi .  - - - - - - - - - - - - - - - - - - - - - - forwarded by pinnamaneni krishnarao / hou / ect on  08 / 24 / 2000 10 : 06 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron north america corp .  from : maureen craig @ ees 08 / 23 / 2000 06 : 19 pm  to : dennis benevides / hou / ees @ ees , scott yeargain / hou / ees @ ees , ress  young / hou / ees @ ees , timothy j hamilton / hou / ees @ ees , barend  vanderhorst / hou / ees @ ees , ford cooper / hou / ees @ ees , megan corley / hou / ees @ ees ,  steven r meyers / hou / ees @ ees , burt bailey / hou / ees @ ees , dave  roberts / hou / ees @ ees , james w lewis / hou / ees @ ees , mallik avs / hou / ees @ ees ,  travis julian / efs / ees @ ees , ryan tull / hou / ees @ ees , glenn dickson / hou / ees @ ees ,  scott stoness / hou / ees @ ees , neil hong / hou / ees @ ees , sanjay agarwal / hou / ees @ ees ,  david draper / hou / ees @ ees , monica hwang / hou / ees @ ees , cathy  pittenger / hou / ees @ ees , kenneth lee / hou / ees @ ees , pinnamaneni  krishnarao / hou / ect @ ect , osman sezgen / hou / ees @ ees , tony spruiell / hou / ees @ ees ,  sean a holmes / hou / ees @ ees , wanda curry / hou / ect @ ect , meredith m  eggleston / hou / ees @ ees , chuck hahn / sfo / ees @ ees  cc : marty sunde / hou / ees @ ees , mike harris / hou / ees @ ees , mohsin  manzoor / hou / ees @ ees , stephen douglass / hou / ees @ ees , john krakoski / hou / ees @ ees ,  brian haskett / hou / ees @ ees , kelly cunningham / hou / ees @ ees , bernard  felefli / hou / ees @ ees , rudy tobias / hou / ees @ ees , michael clark / hou / ees @ ees ,  terry caudill / hou / ees @ ees , wpicker @ us . ibm . com , james welsh / hou / ees @ ees , james  johnson / hou / ees @ ees , ben castro / hou / ees @ ees , carol moffett / hou / ees @ ees  subject : risk management it offsite meeting notes  the ees / ibm it team would again like to thank all of you for your vigorous  participation in last weeks it needs analysis workshop . in particular , we  would like to extend appreciation to jay , dave roberts , and dennis for their  business presentations . thanks , as well , to meghan corley , barry  vanderhorst , burt bailey , and glenn dickson for presenting their individual  area needs , to meredith for overall assistance in creating and delivering the  agenda , and to marty for his sponsorship and support .  the team is currently assimilating the results and formulating an action plan  to address priority 1 , 2 , and 3 needs . actions to address many priority 1  items are underway . we will be reporting on this in marty ' s weekly staff  meeting .  attached below are the results from the meeting , as well as copies of all  materials that were presented . any additional feedback is welcome and  encouraged .  apologies to any participants that do not appear on this distribution . one  thing we failed to do was to take an attendees list . please forward to your  team mates , accordingly .  thank you ,  maureen craig and john krakoski\",0\n\"Subject: re : global risk management operations  rick ,  i read your memo regarding global risk management initiative . i am sending  you the  information regarding a related initiative on which i have been working last  year and which  is moving now into the implementation stage . it ' s enterprise - wide risk  management  and it ' s really an effort to measure business risks consistently across the  company .  i hope my group can be helpful in designing the general approach to this  problem .  please , let me know what your thoughts are .  vince  enron north america corp .  from : rick causey @ enron 01 / 17 / 2000 06 : 04 pm  sent by : enron announcements @ enron  to : all enron worldwide  cc :  subject : global risk management operations  recognizing enron \u0001 , s increasing worldwide presence in the wholesale energy  business and the need to insure outstanding internal controls for all of our  risk management activities , regardless of location , a global risk management  operations function has been created under the direction of sally w . beck ,  vice president . in this role , sally will report to rick causey , executive  vice president and chief accounting officer .  sally \u0001 , s responsibilities with regard to global risk management operations  will mirror those of other recently created enron global functions . in this  role , sally will work closely with all enron geographic regions and wholesale  companies to insure that each entity receives individualized regional support  while also focusing on the following global responsibilities :  1 . enhance communication among risk management operations professionals .  2 . assure the proliferation of best operational practices around the globe .  3 . facilitate the allocation of human resources .  4 . provide training for risk management operations personnel .  5 . coordinate user requirements for shared operational systems .  6 . oversee the creation of a global internal control audit plan for risk  management activities .  7 . establish procedures for opening new risk management operations offices  and create key benchmarks for measuring on - going risk controls .  each regional operations team will continue its direct reporting relationship  within its business unit , and will collaborate with sally in the delivery of  these critical items . the houston - based risk management operations team under  sue frusco \u0001 , s leadership , which currently supports risk management activities  for south america and australia , will also report directly to sally .  sally retains her role as vice president of energy operations for enron  north america , reporting to the ena office of the chairman . she has been in  her current role over energy operations since 1997 , where she manages risk  consolidation and reporting , risk management administration , physical product  delivery , confirmations and cash management for ena \u0001 , s physical commodity  trading , energy derivatives trading and financial products trading .  sally has been with enron since 1992 , when she joined the company as a  manager in global credit . prior to joining enron , sally had four years  experience as a commercial banker and spent seven years as a registered  securities principal with a regional investment banking firm . she also owned  and managed a retail business for several years .  please join me in supporting sally in this additional coordination role for  global risk management operations .\",0\n\"Subject: re : new business  h ? lyette ,  i am working systematically through un - answered messages .  yes , i shall be delighted to meet your friend .  vince  helyette geman on 04 / 05 / 2001 04 : 58 : 47 am  to : vkamins @ enron . com  cc : vkaminski @ aol . com  subject : new business  dear vince ,  a friend of mine , head of research and new projects in a major bank ,  wanted to get in touch with the energy industry to possibly develop  working relationships . i said that enron was the right place to start  and \"\" you \"\" the right person to meet . in this order , he would come to  the power 2001 and i would introduce him to you .  is this o . k with you ?  best regards  helyette  h ? lyette geman  professor of finance  university paris ix dauphine and essec\",0\n\"Subject: re : lng may 19 decision  vince - thanks for the update . what i am not sure of is what if any decision  has to be  made on may 19 . it seems to me that the mystic lady and elba island deals  have already  been approved and executed - but it is quite likely i am missing a detail or  two .  john  vince j kaminski  15 / 05 / 2000 17 : 14  to : john sherriff / lon / ect @ ect  cc : vince j kaminski / hou / ect @ ect , david gorte / hou / ect @ ect , rick  buy / hou / ect @ ect , ted murphy / hou / ect @ ect  subject : re : lng may 19 decision  john ,  this is the update on what i have done for the lng transactions .  1 . i was not involved in the lng ship project . i shall read the dash  and give you my comments . without looking at the details , i think that the  decision  to charter a tanker removes one significant risk we have at the elba island  project ( please , see point 2 ) .  2 . elba island . i am working with doug rotenberbg , brad hitch , scott earnest  ( sally beck ' s organization ) and rac to set up the book for the elba island  transaction . the next step  will be to expand the book to capture all the enron ' s lng - related positions  in one place and  to look for natural risk offsets and possible hedges . a working group is  meeting to close a few  remaining gaps tomorrow ( tuesday ) at 8 : 30 .  a few comments on the book design and my view of the project :  a . the current thinking is that lng will be sourced for the elba island  facility  by buying marginal cargos on the fob basis . marginal cargos will represent  supply from excess capacity that has not been committed under long - term  contracts or became available due to some short - term frictions .  the fob cargos are typically selling at a significant discount to the  long - term  contract prices . the economics of the deal , as represented by the book we are  setting up , will reflect the assumption that not only we can locate marginal  cargos  but that we shall be able to do it on a regular basis , arranging shipping and  coordinating  the facility schedule and natural gas transactions in the us . in other words ,  we have a significant logistical and operational risk in this transaction .  b . the transaction will cover the period of 17 years ( with an extension  option of  5 years ) . even if we can lock - in the lng volumes over this time period , we  have no ability to lock - in the other side of the spread ( us gas prices ) for  such a long tenor . this is  essentially a tolling transaction with exposure to the lng - nat gas spread  and  i would not recommend locking - in only one leg of the spread .  one solution would be to cover , let ' s say , 50 % of he lng volumes for the  first  5 years and lock - in the nat gas side on the us market side .  c . the book we are setting up will be based on many managerial assumptions  regarding sources of lng , shipping rates , schedules , etc . i would set up a  big prudence reserve  in case we mark it to market .  d . my group will work on valuation of some options we have in the elba island  deal  ( that are good for enron ) and on the hedging strategy for the lng positions .  long - term lng contracts are typically based on the japanese crude cocktail  that  correlates very well with brent .  vince  john sherriff  05 / 14 / 2000 01 : 40 am  to : vince j kaminski / hou / ect @ ect  cc : lauren urquhart / lon / ect @ ect  subject : lng may 19 decision  vince  i haven ' t spoken to you for awhile but hope the world is treating you well .  anyway with greg moving to his  new role i have ( i hope only temporarily ) staff trading oversight for the  eastern hemishere plus lng .  i understand that your group is taking a first cut at developing curves for  lng and lng ship values . i also understand  that another lng ship decision is on the dockets for may 19 ( not very far  away ) . anway i understand this  is a big decision but i still have gotten very little info yet . can you  please let me know where you stand now ?  i will ask my assistant lauren to set up a time that i can speak with you in  the next couple of days and if you  have anything for me to review before then she can get it faxed to me as well .  look forward to connecting with you vince .  john\",0\n\"Subject: re : message from ken rice  dorothy ,  no problem . please , cc - mail me  tom ' s number . one of the members of the group has a phd in  computer science and he will join me for the call .  vince  from : dorothy dalton @ enron communications on 05 / 01 / 2001 08 : 53 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : message from ken rice  vince :  ken rice received a call through a friend ' s referral from dr . tom limperis ( a professor at the university of michigan ) . dr . limperis has developed a statistical database management system he would like to show enron . ken would like you to return this call on his behalf . he feels that you are probably the only person who will understand and be able to determine if enron should have an interest .  do you mind returning this call ? please let me know .  thanks !  dorothy dalton  office of the chairman  enron broadband services  1400 smith street , eb 4505  houston , tx 77002  713 - 853 - 6724 - direct  713 - 853 - 9469 - fax\",0\n\"Subject: financial mathematics course - urgent  hi vince ,  in order to provide the marketing department with sufficient lead time for  our financial mathematics course , the brochure will need to be printed by  the end of next week . i would like to confirm the bullets for your two  sessions at the 2001 series of courses . if you feel that there is little  need to update the points i ' ll include the previous outlines . the one  addition i would like to make is on the ' practical example ' point at the end  of each session . if we could provide a line outlining what the example would  be , this would add some important information to this event .  i will be in the office until wedesday afternoon and would very much like to  talk with you about your views on this years ' event . i will be out of the  office on thursday and friday and will need to confirm my changes at the  start of next week .  i look forward to speaking with you soon .  best wishes ,  paul bristow\",0\n\"Subject: re : wednesday meeting  eric ,  we are looking at the model . i shall get back to you next week .  vince  enron north america corp .  from : eric groves 09 / 06 / 2000 08 : 55 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : wednesday meeting  vince ,  i was wondering if you or someone in your group has had a chance to overview  the lng shipping model that i sent you . merritt thomas is sending me more  data to add the to model on all of the other ports and nautical miles . i  would like to to have your input on the functionality of this file before we  go farther .  please call with any questions or comments .  thanks ,  eric  vince j kaminski  09 / 06 / 2000 08 : 26 am  to : eric groves / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , scott earnest / hou / ect @ ect  subject : re : wednesday meeting  eric ,  i think we can skip the meeting and discuss any issues between us .  the meeting was convened at the request of doug arnell , but jeff  shankman thinks that there is no need for formal meetings : we can  ask them for the information directly on as needed basis .  vince  enron north america corp .  from : eric groves 09 / 05 / 2000 11 : 01 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : wednesday meeting  are we still having the meeting tomorrow ? at what time ?  thanks ,  eric\",0\n\"Subject: december 6 th meeting  dear mr . kaminski :  this is to confirm the december 6 th meeting here at our center .  the location for the meeting is room # 3212 steinberg hall - dietrich hall and  the time will run from 9 : 00 am - 11 : 00 am .  please let us know if you need anything further .  we look forward to seeing you then .  regards ,  theresa convery  ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~  theresa convery  administrative assistant  risk and decision processes center  the wharton school of the university of pennsylvania  ( 215 ) 898 - 5688 / fax : ( 215 ) 573 - 2130  tconvery @ wharton . upenn . edu\",0\n\"Subject: today ' s gathering  hello , vince !  i was planning to stop by damian ' s this evening , but i think i ' ll go home  instead . i ' ve contracted a sneezy cold , and i don ' t want to spread it around  anymore than i already have .  thank you for putting this together . i ' ll have to make the one in january  for sure !  sam\",0\n\"Subject: welcome to - energy news live  dear vincent kaminski ,  welcome to energy news live - http : / / www . energynewslive . com !  you are receiving this email as a result of your recent registration .  free energy news live membership  we ' re glad you ' ve joined us ; we think you ' ll find enl an amazing business tool ,  with live , up - to the - minute news every hour on the hour of every business day .  insight from actual traders . exotic and proprietary  weather modeling . a new cross - commodity index . we ' ll break every  energy headline around the world , and bring them right to your desktop .  so sign on , leave it on , stay on top . and enjoy your membership to  energynewslive . com , the first real - time energy network .  also , thank you for your request to receive more information from  energynewslive . com . keep checking your email for updates and  special offers .  if you did not request to receive special offers from enl please  click here to de - activate :  you have also indicated that you would like to receive a daily  video wrap - up from energynewslive . com .  if you did not request to receive a daily video wrap - up from enl please  click here to de - activate :  sincerely ,  the energy news live team\",0\n\"Subject: re :  simon ,  i shall bring a floppy to paris .  vince  \"\" simon turner \"\" on 09 / 29 / 2000 10 : 13 : 47 am  please respond to \"\" simon turner \"\"  to :  cc :  subject : re :  vince  this works .  are you attaching your presentation for next week ? ?  thanks  simon  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com  to : simon @ localbloke . freeserve . co . uk  cc : vince . j . kaminski @ enron . com  date : wed 27 september 2000 5 : 04 : pm  > test  >  > vince kaminski  >  >\",0\n\"Subject: czesc ludmilo , wicku i wicusiu  co slychac . w polsce zimno , ponuro , w gdansku aktualnie odwilz , co sprzyja  grypie . uciekamy przed grypa na tydzien do bialki tatrzanskiej pod  zakopanem . bylismy tam w zeszlym roku przez 4 dni w zimie i bardzo nam sie  podobalo . gory w zimie sa naprawde piekne . bylismy pierwszy raz w zimie w  gorach od 25 lat .  bardzo bedziemy chcieli wpasc jutro do pabianic ( albo w drodze powrotnej do  gdanska ) . nie wiem , czy to sie uda , bo wieczor zapada bardzo wczesnie , a ja  nie moge jezdzic w nocy . latwo sie mecze i szybki zasypiam . bylem u twoich  dziewczyn we wrzesniu , przypominalem sobie stare czasy jak nocowalismy u was  z rodzicami , ojciec siedzial na lezaku pod jablonia . ech .  bylo , minelo . slyszalem , ze wicusiowi idzie nadzwyczajnie . pamietam , jakim ty  byles ulubienicem taty ( peptydy w juracie , pamietasz ) .  michal ze swoja narzeczona wybiera sie w lecie do ameryki . chcialby  podszkolic sie w angielskim i przy okazji troche popracowac . oboje studiuja  medycyne na trzecim roku . jak myslisz , mogliby znalezc prace w houston ? czy  moglbys im w tym pomoc ? oni chcieliby tylko znalezc prace , nie chca was w  niczym absorbowac .  co o tym myslisz ?  jak bedziesz znowu w polsce , daj znac . musze z przyjemnoscia powiedziec , ze  poglady polityczne eli , jadzi i nasze sa identyczne . nawet nie mamy sie o co  poklocic . generalnie sie zgadzam z balcerowiczem , ale uwazam , ze  reforma zdrowia jest do d . doznajemy tego na wlasnej skorze .  trzymajcie sie cieplo i do uslyszenia .  pa , pa adam t . chemat @ softel . gda . pl\",0\n\"Subject: important information about united healthcare - please read !  to : houston area employees participating in the domestic medical plan benefits  you may have recently received communication from united healthcare ( uhc )  concerning memorial hermann health systems ' ( mhhs ) decision to terminate  their contract with uhc in the houston / beaumont area . this communication  also included the names of physicians who will be dropped from the network  due to this action . it is our intent to help you understand the situation .  it is our understanding that memorial herman health systems asked for a 40 %  increase in fees - a substantial increase that would have been passed on to  you and enron ! when united healthcare attempted to negotiate with a counter  proposal , memorial hermann cancelled their contract .  while this contractual arrangement was between the hospital system and uhc ,  enron continues to support uhc in their ongoing contract negotiation  efforts . at this time , it is only uhc which has been affected , however , it  is our understanding that cigna has also been contacted by the hospital group  and may be in contract negotiations at this time as well .  many doctors have obtained admission privileges to other area hospitals  within the uhc network or have contracted directly with uhc including those  with admission privileges to the woodlands , sugarland and clear lake  hospitals , to name a few . in a further effort to limit disruption to our  affected employees and families who are enrolled in the uhc network or epo  options , enron has authorized uhc to process claims incurred between  september 28 and december 31 , 2000 as if the termination of the memorial  hermann health systems from the network had not occurred and in - network  benefits applied . office visits will have a $ 10 copayment and all other  charges will be covered at 90 % . hospital admissions will still need to be  pre - certified with uhc .  these steps have decreased the number of participants ' affected by primary  care physician disruption from 1 , 050 to 127 .  if you need medical attention : you or your doctor / hospital must call uhc ' s  customer service number so proper benefits can be verified . in some cases  the hospital or doctor may request payment at the time service is performed .  if this should happen , please obtain an itemized statement and submit it to  uhc with a claim form for prompt reimbursement . claim forms can be obtained  by calling 1 - 800 - 332 - 7979 or in houston at 713 - 853 - 7979 ( press 1 ) .  open enrollment materials will be coming soon . take this opportunity to  consider your elections for 2001 .  united healthcare and enron hr are committed to assisting enron employees  through this transition . we will communicate any further developments that  may impact you or your family .\",0\n\"Subject: sample day - ahead lmp postings  message sent from the pjm - customer - info mailing list at  pjm - customer - info @ majordomo . pjm . com :  from 04 / 10 / 00 through 05 / 12 / 00 , pjm will be posting sample day - ahead prices  produced using the two - settlement software and  generation bids and ties schedules as bid into the pjm real time market .  perturbations may be applied to the demand bids in order  to illustrate the impact of total demand mws bid on day - ahead lmps ( such  perturbations will be discussed in the day - ahead case description  file ) . sample prices will be posted for weekdays only . these prices are for  illustration purposes only . they will not be used in any pjm  settlements . sample lmps will be posted in a csv file using the following name  convention yyyymmdd - da . csv . the names of files initially  posted for 4 / 10 / 00 and 4 / 11 / 00 have been changed to this name convention .  questions may be directed to pjm customer service at ( 610 ) 666 - 8980 .  to unsubscribe from this list , send an e - mail to majordomo @ majordomo . pjm . com  containing only the following line in the body of the e - mail :  unsubscribe pjm - customer - info\",0\n\"Subject: california update 3 / 06 / 01  executive summary  ? if no comprehensive deal is reached by april 9 th , chances of bankruptcy  increase due to a one day \"\" opt - out \"\" clause in all long - term power contracts .  ? pg & e and state locked in tough negotiations , several issues on the table :  puc - imposed requirement forcing pg state - 2 . 3 times book value vs . pg & e - 4 times book value  ? pg & e will not use any of the $ 1 b secured last week to help their ailing  utility .  ? davis ' s announcement of long term power contract didn ' t include some  details :  of the 8 , 800 megawatts secured this far , only 6 , 000 are available this  summer  some of the \"\" long term contracts \"\" are really only for three months  none of the contracts prevent california from buying peak demand on the spot  market  ? one the same day davis announced long term contracts , davis also quietly  announce a 10 % rate hike .  ? ferc may be the wild card in approving this deal .  pg & e  transmissions deal  one thing that is still uncertain is pg & e . bankruptcy may still be a likely  alternative if current negotiations to buy pg & e ' s share of the electric  transmission grid fail to produce a deal by april 9 ( when all long - term power  contracts being negotiated have a one - day \"\" opt - out \"\" clause they can exercise  unilaterally if a \"\" comprehensive solution \"\" has not been reached by the state  and its major utilities ) . according to sources close to senior pg & e  officials , pg & e made it clear that any hope for a politically acceptable deal  on the transmission lines depends on the california government ' s willingness  to make a major financial commitment it has been completely unwilling to make  until now .  pg & e will not make a final deal to sell its grid unless davis agrees to  relieve it of the puc - imposed requirement to be the \"\" electricity buyer of  last resort . \"\" current state regulations make the utility companies  ultimately responsible for generating or purchasing enough electricity at all  times to supply california ' s energy needs . as long as the state steps in and  makes those purchases , as it has for the past three months , the utilities are  shielded from absorbing the losses generated by paying premiums for spot  market power and selling to consumers who are shielded by low rate ceilings .  but , pg & e officials are worried 1 ) this summer ' s supply and 2 ) davis ' s  concern over how fast he is draining the state ' s budget surplus . if things  get into a crunch this summer and davis makes a new decision that the state  will pay only for the electricity it buys through long - term contracts , then  pg & e will be left holding the bag .  thus , as part of the negotiations over buying the electricity grid , pg & e is  demanding a \"\" comprehensive solution \"\" that includes not being liable for cost  differentials between the spot market purchase and what consumers are allowed  to pay . state officials are in no mood to grant that kind of \"\" get out of  jail free \"\" card , so the two sides remain locked in extremely tough  negotiations that are complicated by three other factors : ( 1 ) pg ( 2 ) state legislative  demands that the price davis negotiate for pg and ( 3 ) the ferc must  \"\" positively approve \"\" any grid purchase by the state of california .  the principal concern on the price front is that pg & e wants to sell the  electricity grid for nearly four times the estimated book value of their  transmission , while consumer groups insist that two times book value is the  politically acceptable limit . \"\" we see 2 . 3 times book value as an absolute  upper bound . there is no way pg & e will get more than that , whatever they  think , \"\" according to the leader of one main consumer groups . \"\" we are going  to try to force any deals down to about 2 . 0 in any case . \"\" negotiators for  davis are also trying to ' proposition - proof ' any transmission deal to protect  against a later ballot proposal . they think there are ways to do that , but  not if the price of pg & e ' s part of the grid triggers a ballot initiative .  remember , if davis ' s eventual solution triggers a ballot initiative , he will  be running for re - election on the same ballot as a public initiative designed  to overturn his solution .  on the sacramento front - no one understands pg & e ' s motives  the one question no one in sacramento can figure out is what kind of game  pg & e is playing . in a three day period pg & e made a series of announcements  that left everyone scratching their heads .  ? late thursday , pg & e officials leaked information to california papers that  they had agreed in principle to sell their part of the electricity  transmission grid to the state , which seemed like obvious good news , but then  made it clear in discussions that the price they were asking was at least 30 %  above what the state was currently offering . while a deal can still be done ,  anything like the $ 10 billion pg & e wants would be very hard to get through  the california legislature which needs to approve any purchase .  ? late friday , pg & e officials announced that they had secured a $ 1 billion  loan for the parent company ( not the electricity utility ) and would use the  money to pay off bondholders , other creditors and to return $ 161 million to  shareholders in a new dividend payout . not a cent of that money was  earmarked to help the struggling electricity orphan of pg & e and that left at  least one rating agency convinced that the company was more ready to send the  utility into bankruptcy than had been previously understood .  ? over the weekend , pg & e leaked a story claiming that it was willing to pay  off its energy suppliers ' debt for 15 cents on the dollar right now . for  generators who are having to make decisions each morning about whether to  start legal actions that protect their rights in any eventual bankruptcy  action or hold off on the assumption that the politics of this process will  \"\" make them whole \"\" in a couple of months , that kind of trial balloon is  extremely unnerving .  thus , in a very short time period , pg & e ' s corporate owners showed they could  access public credit markets with relative ease and then showed that they  were unwilling to use these funds to smooth the way toward a solution to the  energy crisis . davis has demanded that all of the major utilities absorb at  least a part of the $ 13 billion debt they have accumulated since last summer  and pg & e ' s fund - raising will harden and deepen those demands . as one senior  political official told our source \"\" just when you think the corporate  leadership of that company has insulted us as completely as possible , they  come up with something even more outrageous . \"\"  pg and some of these \"\" long - term contracts \"\" are actually only good  for three months . none of these contracts , however , keep california from  having to buy the most expensive peak demand electricity on the spot market .  davis agrees on new consumer electricity rate hikes for next year  while the media was concern with davis ' s announcement of long term contracts  for california , of less concern to the media was davis ' s quietly announced a  decision to let rates rise again for electricity consumers . the state will  accept the 10 % emergency surcharge levied on consumers in january as a  permanent increase as well as an additional 10 % increase for consumers that  will take effect early 2002 when the old 1996 rate cut legislation expires .  that would bring the average charge to about 8 cents a kilowatt hour .  ferc  the other major danger to the transmission line deal is that the federal  energy regulatory commission can block the deal simply by failing to approve  it in a positive vote . senior california officials and legislators doubt that  ferc has jurisdiction , and believe that ferc would not dare stop a deal . but  they may be wrong . \"\" the deal can only go through if ferc specifically signs  off on the deal . its power over transmission deal is absolute , no matter what  anyone says , \"\" according to source close to the president . there are three  possibilities : 1 ) ferc could \"\" pocket veto \"\" it by not even putting it on  agenda for discussion ; 2 ) the deal is put on the agenda but it gets voted  down . the democrat on the commission , william massey , has already said he is  opposed to it ; or 3 ) the commission could approve it but with condition that  davis has to agree to bring the lines into a regional grid system .  one complicating factor in the ferc decision , however , is that its chairman  curt hebert , who is adamantly opposed to the transmission line sale , may not  be around long enough to have his say . \"\" hebert is definitely not a shoo in  for the ferc chairman position , \"\" says one washington official . two other  appointments to the commission will soon be named , this official notes , and  one of them \"\" could easily become chairman . \"\"\",0\n\"Subject: wharton business plan competition  hi anne !  thank you for your reply . enron is delighted to be a part of the wharton  business plan competition !  first , our assistant in the university affairs group , melinda mccarty , will  provide you with our logo .  enron would definitely like to be judge in phase iii and participate in the  venture fair , including the display table .  as to the mentoring and university community program , let ; s discuss that  further so i can better judge our way forward .  after i ' ve had the chance to discuss all of this with our entire university  affairs and wharton team here at enron , you and i can get together to plan a  more difinitive participatory strategy for enron . i will call you next week .  again , we at enron are very enthusiastic about participation with wharton in  this mutually interesting endeavor . !  best regards !  - - christie .  - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 01 / 26 / 2001  06 : 33 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" stamer , anne \"\" on 01 / 26 / 2001 03 : 47 : 39 pm  to : \"\" ' christie _ patrick @ enron . com ' \"\"  cc :  subject : wharton business plan competition  dear christie :  thank you for your voice mail . things are moving along nicely with the  competition . phase ii deadline was today , so we hope to have some  statistics in the next few weeks . i have attached the statistics from phase  i , for your files . listed below are ways that enron could be involved , let  me know in which ( or all ) of these enron would be interested in participating .  * we want to start listing our sponsors , so it would be really good if we  could get your logo .  * also , does enron wish to be a judge in phase iii and the venture fair  ( vf ) ? for phase iii , we would mail each judge about 3 full blown business  plans to be ranked . we anticipate this taking no more than 1 afternoon  * for the vf , we would need a judge to be present for the entire day . the  vf is by invitation only and we anticipate about 350 students , venture  capitalists , business entrepreneurs and faculty . the vf will be held in  philadelphia on april 30 th .  * at the vf we will provide an opportunity for our sponsors with a 6 foot  table for exhibits or materials to hand out . we will need to know if you  wish to use the exhibit space .  * we plan on providing our 25 semi - finalist teams with one - on - one  mentoring . if enron is interested , that would be about 1 / 2 or 1 day  commitment .  * there might be an opportunity for a workshop to the university community .  would enron be interested in participating in something like this ?  i look forward to working with you to make this year ' s bpc a success . thank  you .  sincerely ,  anne stamer  >  anne stamer  wharton business plan competition  wharton entrepreneurial programs  the wharton school  419 vance hall , 3733 spruce street  philadelphia , pa 19104 - 6374  215 - 746 - 6460 ( direct )  215 - 898 - 4856 ( office )  215 - 898 - 1299 ( fax )  stamer @ wharton . upenn . edu  - phase ioverview . doc\",0\n\"Subject: another addition from enron tiger member  vince :  please add deepa mallik to the list , as well , as she is interested in a  summer internship with enron . she said she forwarded her resume to you last  week . will gladly resend , if necessary .  thanks ,  donna  > - - - - - original message - - - - -  > from : fap  > sent : friday , february 02 , 2001 2 : 04 pm  > to : ' vkamins @ enron . com '  > cc : ' clayton . degiacinto . wgo 2 @ wharton . upenn . edu ' ;  > ' hethorne @ wharton . upenn . edu ' ; thomas ; weigelt ; fap  > subject : addition from enron tiger member  > importance : high  >  > vince :  >  > please add clayton degiancinto as an applicant to a summer internship at  > enron . he told me that he sent christie patrick his resume two weeks ago .  > let me know if you need to have it resent .  >  > thanks ,  > donna\",0\n\"Subject: re : enron default swaps  no hurry about those documents , i have  so much to do already !  thanks and warm regards ,  darrell  on mon , 2 apr 2001 vince . j . kaminski @ enron . com wrote :  >  > darrell ,  >  > thanks . i am beating up on my group to accelerate preparation of  > documentation for  > the audit .  >  > vince  >  >  >  >  >  > j d duffie on 04 / 02 / 2001 03 : 35 : 31 pm  >  > to :  > cc :  > subject : re : enron default swaps  >  >  >  > hi vince !  >  > i got those notes . they should indeed  > be useful . the one from deutsche bank  > is especially helpful !  >  > i am suppose to know this stuff , as i teach it !  >  > sorry about the delayed billing .  > i have had trouble getting a bill  > from my excellent asistant , taichi hoshino ,  > who has returned to goldman tokyo ,  > and has not been able to get anything else  > done lately . i will try to get something out soon !  >  > we had several energy people ,  > from several companies , at our credit risk  > exec ed course last month . seems that  > credit risk and power risk go  > together these days !  >  > warm regards , darrell  >  >  >  >  > on fri , 30 mar 2001 vince . j . kaminski @ enron . com wrote :  >  > >  > > darrell ,  > >  > > i am sending you 2 technical notes on enron default swaps : i hope that  > they  > > will  > > be useful . i shall read the articles on weekend . i am curious if you  > > find these explanations satisfactory .  > >  > > we are very slow in preparing a number of technical documents  > > for you for model reviews . we still hope you will be able  > > to find some time to review our credit models ( for our london  > > credit trading ) and var and option pricing related models .  > >  > > also , please check your invoices . i still think we owe you money .  > >  > >  > > vince  > > ( see attached file : cds vs as . pdf ) ( see attached file : cdsstrat . pdf )  > >  > >  > >  > >  > > darrell duffie on 03 / 28 / 2001 08 : 07 : 38 am  > >  > > to : vince j kaminski  > > cc :  > > subject : re : enron default swaps  > >  > >  > >  > >  > > vince : according to a bank of america  > > publication , your ( enron ) default swap spreads  > > are consistently trading about 80  > > basis points wider than your asset swaps .  > > any idea of what is going on here ?  > >  > > thanks for any guidance , darrell  > >  > >  > > _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  > > darrell duffie  > > mail gsb stanford ca 94305 - 5015 usa  > > phone 650 723 1976  > > fax 650 725 7979  > > email duffie @ stanford . edu  > > web http : / / www . stanford . edu / ~ duffie /  > > _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  > >  > >  > >  > >  >  > _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  > darrell duffie  > mail gsb stanford ca 94305 - 5015 usa  > phone 650 723 1976  > fax 650 725 7979  > email duffie @ stanford . edu  > web http : / / www . stanford . edu / ~ duffie /  > _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  >  >  >  >  >  >  darrell duffie  mail gsb stanford ca 94305 - 5015 usa  phone 650 723 1976  fax 650 725 7979  email duffie @ stanford . edu  web http : / / www . stanford . edu / ~ duffie / \",0\n\"Subject: december 11 prc meeting  please mark your calendars for the december 11 , 2000 prc meeting to prereview  vice presidents in the following organizations :  enron north america  enron industrial markets  enron global markets  enron networks  enron south america  apachi  calme  the meeting will be held at the st . regis hotel , 1919 briar oaks lane ,  houston in the plaza room . the meeting is scheduled from 8 : 00 am to 5 : 00 pm .  for those of you who are part of the enron wholesale services group , please  plan to be there at 8 : 00 am , as the first part of the meeting will be devoted  to discussing prc results of groups below vice president , and manager to  director / sr . director promotion nominations . the vice president rating is  scheduled to begin at approximately 9 : 45 am .  the telephone number of the hotel is 713 - 840 - 7600 .  a complete agenda and details will be forthcoming later this week .  for those of you in the organization units listed above , please be prepared  to present and discuss your vice presidents .  please feel free to contact me at x 36628 in houston , should you have any  questions .  sheila knudsen\",0\n\"Subject: re : weather course  julie ,  i forwarded your message to the weather desk .  i think you can cancel hyatt and save some money .  vince  \"\" julie \"\" on 02 / 19 / 2001 03 : 19 : 45 pm  please respond to \"\" julie \"\"  to : \"\" vincejkaminski \"\"  cc :  subject : re : weather course  vince ,  enron is fine ( although i think we have to pay for the hyatt anyway ) .  ?  good discount ( i have a feeling that my idea of a good discount and the  weather desk ' s idea is probably different ? ) : ? for the one day , $ 1100 per  person . ? if you think that there will be ? around 10 people or more , then we  can offer a day rate , regardless of the number of people . ?  ?  thanks vince  ?  julie  ?  ps - of course when i announced that we were cancelling , people started  responding that they wished to attend . ? ugh !  ?  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com  to : julie  cc : vince . j . kaminski @ enron . com  sent : friday , february 16 , 2001 4 : 05 pm  subject : re : weather course  julie ,  enron location makes more sense . no reason to pay for the hotel .  also , i think that one day makes more sense .  i contacted the weather desk about including other people at the training  course . i think that they would be interested if they got a good discount .  vince  \"\" julie \"\" on 02 / 16 / 2001 09 : 39 : 37 am  please respond to \"\" julie \"\"  to : ? ?  cc :  subject : ? re : weather course  vince ,  great . just to let you know , we decided not to wait on the indecisive  ones , and postponed the open course . it ' s yours , whatever you want : ? 1  day ( specific to what you feel will be of the most benefit ) , 2 days , hyatt  or ? enron , or not at all . i hope this doesn ' t cause problems for you .  special deal , for sure . i owe my godfather .  julie  - - - - - original message - - - - -  from : ? vince . j . kaminski @ enron . com  to : julie  cc : joseph . hrgovcic @ enron . com  sent : thursday , february 15 , 2001 3 : 16 ? pm  subject : re : weather course  julie ,  that ' s definitely an option .  we can ? provide the room . maybe we can cut with you a special deal for  enron  and ? increase the # of people attending . i am forwarding your message to  our ? weather desk .  vince  joe ,  what do you think about ? it ?  vince  \"\" julie \"\" on ? 02 / 15 / 2001 08 : 20 : 24 am  please respond to \"\" julie \"\"  to : ? \"\" vincejkaminski \"\"  cc :  subject : ? weather course  vince ,  we just wanted to let you know ? that we only have 3 people signed up for  the  weather derivatives course ? ( all from enron ) so far . we have a couple more  that have expressed strong ? interest , but we are awaiting their final  decision . if no one else signs ? up , chris and les thought that you guys  could probably get through the ? first day pretty easily , and thus thought  it  may be an option to teach just ? the 2 nd day material ( pricing ) only at  enron  ( doing it at the hyatt is an ? option as well but the room might be on the  large side ) ? we would ? obviously reimburse you for the day not taught . we  can teach both days as ? well , but thought you may want to save some time .  i just wanted to give ? you some time to think about it . we will know where  we stand on final ? numbers by next ? wednesday .  julie\",0\n\"Subject: re : fw : mtg . scheduled  frank ,  regarding simulating power prices in var we might discuss the following items  and show some results :  1 . clustering for power :  - clustering based on historical prices and correlations from them ;  - geographical clustering ;  - flexibility in choosing \"\" core curves \"\" ( based on position size ) ;  2 . jump - diffusion process for intramonth and prompt month :  - parameter estimation from historical data ( do we want to use it ? )  - working out parameters ( jumps frequency , jump size ) as stress scenarios ;  3 . correlations within a cluster and across clusters .  4 . changing correlations estimations ( using fixed contact ' time series ) .  5 . joint estimation of factors for selected regions .  let me know what you think should be in the agenda for this meeting .  regards ,  tanya  from : frank hayden / enron @ enronxgate on 04 / 18 / 2001 03 : 43 pm  to : tanya tamarchenko / hou / ect @ ect  cc :  subject : fw : mtg . scheduled  if you want , i welcome your help in putting together an agenda .  frank  - - - - - original message - - - - -  from : black , tamara jae  sent : wednesday , april 18 , 2001 3 : 32 pm  to : presto , kevin ; davis , mark dana ; sturm , fletcher ; herndon , rogers ;  gilbert - smith , doug ; white , stacey ; kaminski , vince ; andrews , naveen ; belden ,  tim ; gorny , vladimir ; davenport , lacrecia  cc : hayden , frank  subject : mtg . scheduled  please mark your calendar for a meeting with :  frank hayden  reg . value @ risk  april 26 th  3 - 4 pm  rm 3125 b  thanks  tjae black  x 35800\",0\n\"Subject: re : credit risk technical article  ben ,  let me review it one more time from this angle . if you don ' t hear from me by  wednesday ,  it ' s ok to post it .  vince  benjamin parsons  01 / 04 / 2000 04 : 31 am  to : vince j kaminski / hou / ect @ ect  cc : ross prevatt / hou / ect @ ect , bijoya banerjea / lon / ect @ ect  subject : credit risk technical article  vince ,  bijoya is currently working on the development of the website for the new  credit trading initiative , and we thought it would be a good idea to put my  recent technical article \"\" measuring credit risk \"\" on it . are you okay with  this release , or does it contain any proprietary information we should edit  out ?  ben\",0\n\"Subject: re : christmas list  will do , vince  thanks  vince j kaminski  11 / 08 / 2000 10 : 42 am  to : kevin g moore / hou / ect @ ect  cc : shirley crenshaw / hou / ect @ ect  subject : re : christmas list  kevin ,  the donuts are a great idea . i think we should add jeff and john as well  ( baskets ) .  vince  kevin g moore  11 / 07 / 2000 11 : 14 am  to : vince j kaminski / hou / ect @ ect , mike a roberts / hou / ect @ ect  cc :  subject : re : christmas list  while the thought is still on my mind , so you want think i ' m  being selfish .  what i am thinking we could do is send the move team , help desk and  facilities  complimentary donuts from the research group during the holiday season .  - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 11 / 07 / 2000 12 : 07  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  kevin g moore  11 / 07 / 2000 11 : 02 am  to : vince j kaminski / hou / ect @ ect , mike a roberts / hou / ect @ e  cc :  subject : re : christmas list  i sent the last e - mail before asking this question .  vince ,  what about dave delainey , john lavorato and jeff shankman .  please inform . . . . . . . . . . . . . . . .  kevin g moore  11 / 07 / 2000 10 : 57 am  to : vince j kaminski / hou / ect @ ect , mike a roberts / hou / ect @ ect  cc :  subject : christmas list  hello vince and mike  i want to keep you informed .  this year all baskets will be done in a timely manner .  on last year we were going through a major move therefore  many people played key roles in keeping us together .  this year however , is a little different , as it is always nice  to give unfortunately we can not give to everyone .  i am sending a lists of who we have so far .  there are a few names on the list that i feel we should do something else  for this year .  under shirley ' s list of names .  ( not so expensive )  they are : move team who ?  mail room who ?  facilities help desk who ?  there are other tokens of appreciation that we can get for them .  please note that you two are the only ones that have seen this e - mail so far  i will need your approval for all baskets , however your input on the matter  will be  greatly appreciated . the list is not completed i am still waiting for  additions .  thanks  kevin moore\",0\n\"Subject: re : enron open positions  vince ,  just fine . i will be there at 11 : 30 am on friday , september 8 , 2000 .  see you at the enron building .  thank you .  maruti  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com  to : mmore @ houston . rr . com  cc : vince . j . kaminski @ enron . com  date : monday , august 28 , 2000 2 : 14 pm  subject : re : enron open positions  maruti ,  does 11 : 30 enron building work for you ?  vince  \"\" more \"\" on 08 / 28 / 2000 01 : 25 : 54 pm  to : \"\" vince j kaminski \"\"  cc :  subject : re : enron open positions  hello vince ,  thank you very much for getting back to me .  friday , september 8 is fine with me . please let me know what time would be  convenient for you and where we can meet . i can come any time anywhere .  sincerely ,  maruti  832 - 251 - 7267  - - - - - original message - - - - -  from : vince j kaminski  to : more  cc : vince j kaminski  date : monday , august 28 , 2000 12 : 12 pm  subject : re : enron open positions  maruti ,  what about september 8 , friday ?  vince  \"\" more \"\" on 08 / 25 / 2000 03 : 27 : 26 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : enron open positions\",0\n\"Subject: re : comments  hi vince ,  sorry to have missed you in paris . many thanks for your comments - they ' ve  now been incorporated and sent to eprm . things are crazy at the moment , but  hopefully will calm down in a couple of weeks and we ' ll have time to catch  up better .  best regards .  chris .  - - - - - original message - - - - -  from :  to :  cc : ; ;  sent : sunday , october 15 , 2000 11 : 06 am  subject : comments  > julie ,  >  > sorry for the delay . here are he comments .  >  > vince  >  > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  >  > sorry for long delay in responding . i have a few comments . most are  focused  > on the third article as here is till time to make modifications .  >  > 1 . in the second article , i would mention that the formulation of the  mean  > reversion process represents one of several possible equations that  capture  > the same type of market evolution of prices over time .  > 2 . one comment that applies to both articles . the problem is how one  defines  > the time series of energy prices . the numbers used for australian nsw pool  > prices seem to correspond to chronological prices . one alternative  approach  > is to build different time series for the corresponding time intervals for  > each day . this would result in different price behavior and estimates of  > jump . the choice is one of convenience and depends on actual problem under  > investigation . one could argue that volumes of electricity traded during  > different time slots represent different economic commodities .  > figure 3 a ( jump frequency ) has units on the vertical axis that require  > explanation . are we talking about an expected number of jumps in the total  > number of half hourly periods in a year ? the same goes for f in table 2  > ( article number 3 ) .  >  >\",0\n\"Subject: hello from enron  dear dr . mcmullen ,  a few weeks ago i received a call from your university  regarding employment opportunities at enron .  i called back and summarized the needs of my group ( an ideal profile of a  candidate ) :  1 . mathematical finance  2 . computer programming ( c , c + + )  3 . understanding of the energy markets  i shall appreciate any information about potential candidates .  i have also given some other suggestions regarding potential  opportunities for graduates with different profiles .  please , feel free to call me . my number is 713 853 3848 .  vince kaminski\",0\n\"Subject: it support for research weather group  mark ,  first let me say thank you for your assistance in making it possible for meteorologists tony hamilton and stephen bennett to hit the groung running this week when they came over to london from houston . when we came into our offices in houston monday morning , tony and steve had already gathered and analyzed their data , prepared reports and were ready for the avistar briefings ! the cross - atlantic communication and data - sharing and manipulation went seamlessly ! we have great expectations for continued synergy with this new set - up .  the research weather group is excited about our expanded responsibilities in london . we are committed to maximizing the value added we can provide to the weather derivatives , crude & products , uk trading , continental power , and analytics efforts . we are , however , also extremely dependent on computers and communication , associated software and peripherals . plus the datastreams we access and the reports we generate are very time - critical in their value to traders . we need a very stable environment , with reliable back - up and 24 - hour support to fulfill our commitments to providing the trading operation with timely , never - fail research and information flows .  so , thanks again , and please do whatever you can to continue this high level of support by passing this letter of praise and thanks to your team , and show them our appreciation for your efforts .  mike roberts\",0\n\"Subject: re : energy derivatives  hi vince ,  thanks for your call today - i look forward t speaking to you tomorrow .  i ' ll be working at home in the mornng ( my time ) - trying to finish up my  chapters ! - my number is 61 2 9460 3079 .  best regards .  chris .\",0\n\"Subject: re : ed krapels  louise ,  thanks . his e - mail address is ekrapels @ esaibos . com . the company  coordinates are as follows :  esai  301 edgewater place , suite 108  wakefield , ma 01880  ( 781 ) 245 - 2036  ( 781 ) 245 - 8706  vince  louise kitchen  02 / 11 / 2000 05 : 13 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : ed krapels  absolutely - i can ' t find the previous email but it may have been lost during  the few days they moved my email box from london to houston - i know i had a  lot of lost emails - do you have his phone number and email and we can sort  out a password for a few days for him too .  louise  vince j kaminski  10 / 02 / 2000 22 : 15  to : louise kitchen / lon / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : ed krapels  louise ,  some time ago i sent you a message regarding ed krapels . he is writing a book  on energy  commodity markets and would like to learn more about eol .  can you give him a call and chat with him for 10 minutes . he is a good  friend of enron and  it would be free ad for us .  vince\",0\n\"Subject: re : cplex floating license  chonawee and i just had a phone conversation with cplex . there are other  alternatives ( products ) that may help in saving time and cost . chonawee and i  feel that one floating develoment license , and one or two opl ( a package on  sale that provides modeling and optimization features ) licenses will do . in  addition , we need floating deployment licenses . for the development licenses ,  the charges should be split \"\" equally \"\" between the different groups that may  ask for optimization help ( although it is hard to predict who may ask for  future help ) . we are suggesting equally since these licenses are used to  develop the needed solution but are not ( in general ) used to run the  software . the deployment licenses can be charged on per - use basis for  different groups .  cplex is going to send us a new quote . we ' ll make the decision soon after  that .  - samer\",0\n\"Subject: re : alp presentation  for your information , the alp project presenation that vince kaminski  invited you to will be held in the enron bldg . in conference room eb 49 cl .  if you need any other information , please let me know .  regards ,  shirley crenshaw  administrative coordinator  enron research group  713 - 853 - 5290  email : shirley . crenshaw @ enron . com\",0\n\"Subject: john martin , energy finance article  vince ,  f . y . i . i have not talked to john martin about it yet . i don ' t know if you  have any interest .  stinson  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 07 / 24 / 2000  10 : 03 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  john martin on 07 / 21 / 2000 07 : 36 : 31 pm  to : stinson gibner  cc :  subject : re : your call  my number is 254 - 710 - 4473 ( office ) and 254 - 757 - 0852 ( home ) . the editor of  the journal of applied corporate finance is doing a special issue on energy  finance for the fall and i want to see if you and vince would like to put  something together describing enron ' s basic business model . i would love  to join you if you would like and i can actually draft the paper with your  help . i ' ll get in touch with you on monday . have a great weekend .  john  p . s . mitch taylor was in class today and did his usual great job . i sure  enjoy using enron as my \"\" premier company example \"\" .  at 04 : 48 pm 7 / 20 / 00 - 0500 , you wrote :  >  >  > john ,  >  > i misplaced your phone number . please let me have it , and i promise to give  > you a call . i ' d love to hear what you have in mind .  >  >  > best regards ,  >  > stinson  >\",0\n\"Subject: re : seminar series mug  marge ,  the person at rice to work with is barbara ostdiek . her e - mail address  is below ( on one of the messages appended at the bottom ) .  vince  marge  nadasky  08 / 17 / 2000 10 : 13 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : seminar series mug  vince , would it be possible for me to work with whomever is designing this  mug to see if we could incorporate the enron logo into the design ? i agree  with mark that it would be preferable to have the logo somewhere on this .  please let me know .  marge , ext . 36631  - - - - - - - - - - - - - - - - - - - - - - forwarded by marge nadasky / hou / ect on 08 / 17 / 2000 10 : 10  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  mark palmer @ enron  08 / 17 / 2000 09 : 40 am  to : marge nadasky / hou / ect @ ect  cc :  subject : seminar series mug  looks a little off - brand to me . do you think we need an enron logo ? can you  help vince ? anything from the catalog they could personalize ?  mark  - - - - - - - - - - - - - - - - - - - - - - forwarded by mark palmer / corp / enron on 08 / 17 / 2000  09 : 37 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski @ ect  08 / 16 / 2000 05 : 14 pm  to : mark palmer / corp / enron @ enron  cc : vince j kaminski / hou / ect @ ect  subject : seminar series mug  mark ,  rice univ . wants to produce a coffee mug for the participants of the workshop  enron sponsors .  please , take a look at the proposed design . do we need any formal approval ?  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 08 / 16 / 2000  05 : 17 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  barbara ostdiek on 08 / 15 / 2000 10 : 26 : 12 pm  to : vince . j . kaminski @ enron . com ( vince kaminski )  cc :  subject : seminar series mug  vince :  i have attached the general design we are proposing for the enron seminar  series mug . we have a little refinement to do - spacing here and there a  couple type - o ' s but this is the idea . if you like it , we will put an order  in .  i ' ll put out an announcement on the seminar schedule shortly . so far the  fall line up includes will goetzman - yale , lenard mirman - virgina , jeff  pontiff - u . of washington , george allyannis - darden , and charles lee -  cornell .  thank you .  bbo  - mugl 1 . pdf\",0\n\"Subject: organizational announcement  to help accomplish our business goals , the following management appointments  are effective immediately :  tod lindholm , previously managing director - chief accounting officer for  ebs , will move to corporate as managing director and assume responsibility  for business risk management , it compliance as well as working on a number of  special assignments for rick causey , executive vice president - chief  accounting officer for enron corp .  john echols , currently managing director - risk systems development for ebs  will assume responsibility for accounting and administration for ebs as well  as his current responsibilities and will report to the office of the chairman  for ebs .  everett plante , currently vice president - chief information officer for ebs  will now report directly to the office of the chairman for ebs .\",0\n\"Subject: re : charm  jim ,  i shall be glad to talk to them .  vince  james l bouillion  04 / 24 / 2001 01 : 43 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : charm  vince , would you be agreeable to such a phone call , or would you prefer to  designate someone in your group ?  - - - - - - - - - - - - - - - - - - - - - - forwarded by james l bouillion / hou / ect on 04 / 24 / 2001  01 : 41 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" bertil olsson \"\" on 04 / 24 / 2001 01 : 40 : 06 pm  to : james . l . bouillion @ enron . com  cc : \"\" carl groth \"\" , \"\" kenneth risko \"\"  subject : re : charm  jim ,  thanks for the feed - back . to assist in the further development of the  product , are there any specific areas your group would like to see improved  ? based on comments made during our meeting , it sounded like your main  concern was whether or not charm would have the capacity to cover the very  different and complex risk areas that your company is involved in . would  you mind if someone from our charm group called you or mr . kaminski for  some specific comments ?  regards ,  bertil  james . l . bouillion @ enron . com on 04 / 24 / 2001 01 : 35 : 09 pm  to : bertil olsson / hou / us / wcg @ wcg  cc :  bcc :  subject : re : charm  bertil , i again wish to thank you for the presentation on the charm  product . the response from the group is that the model requires more work  before enron could consider it as a commercial product . please keep me  advised as i assume that you will continue to develop the model .  james l bouillion  04 / 11 / 2001 06 : 50 am  to : \"\" bertil olsson \"\" @ enron  cc :  subject : re : charm ( document link : james l bouillion )  no word yet . i will follow up with the attendees .  thanks for taking thje time to make the presentation .  \"\" bertil olsson \"\" on 04 / 10 / 2001 04 : 07 : 11 pm  to : james . l . bouillion @ enron . com  cc :  subject : re : charm  jim ,  any feed - back on our meeting ? we certainly appreciated the opportunity and  the fact that the meeting was very interactive .  regards ,  bertil  the information in this email and in any attachments is confidential and  may be privileged . if you are not the intended recipient , please destroy  this message , delete any copies held on your systems and notify the sender  immediately . you should not retain , copy or use this email for any  purpose , nor disclose all or any part of its content to any other person .  the information in this email and in any attachments is confidential and  may be privileged . if you are not the intended recipient , please destroy  this message , delete any copies held on your systems and notify the sender  immediately . you should not retain , copy or use this email for any  purpose , nor disclose all or any part of its content to any other person .\",0\n\"Subject: re : wharton finance conference sponsorship information  i ' d be interested to see who else is sponsoring the conference and who the  other panelists would be . since it is a first year conference , the success  of it is highly dependent on the people who are pulling it together . since  the deadline on the sponsorship form is sept . 8 , they should be able to give  us an indication of other participants . do you want me to call suresh to  find out - he ' s been emailing me every other day about how interested he is  in working for ebs anyway . the timing of it is good - the week after  everyone comes for super saturday . i ' d also be interested in what tom says .  i ' d only do a gold sponsorship - i don ' t think we need or want to be on more  than 1 panel - either the corporate finance or sales and trading .  michele nezi marvin  manager  enron broadband services  ( 713 ) 853 - 6848  jeffrey a shankman @ ect  10 / 05 / 00 10 : 55 am  to : kristin gandy / na / enron @ enron  cc : michele nezi marvin / enron communications @ enron communications , vince j  kaminski / hou / ect @ ect , mark palmer / corp / enron @ enron  subject : re : wharton finance conference sponsorship information  it ' s not necessarily an either / or decision . michelle , do you think this is a  good program ? kristin , can you call tom piazze at wharton , and ask him what  he thinks about the importance of our participation in this ?  jeff  kristin gandy @ enron  10 / 05 / 2000 08 : 56 am  to : jeffrey a shankman / hou / ect @ ect  cc :  subject : wharton finance conference sponsorship information  here is another conference we can participate in . would you rather do this  conference or the entrepreneurship conference ?  kristin  - - - - - - - - - - - - - - - - - - - - - - forwarded by kristin gandy / na / enron on 10 / 04 / 2000  08 : 55 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" suresh balasubramanian \"\" on 10 / 04 / 2000 02 : 09 : 56 pm  please respond to  to :  cc :  subject : wharton finance conference sponsorship information  hi kristin  i am following up on our conversation earlier with respect to enron  participating in the whartons finance conference and the evening  reception known as bullish on finance .  i think this forum will be a great opprotunity for enron to reach  the students interested in finance and it also provides a great platform  to talk about enrons unique position in the global financial  community .  please do consider the option of sponsoring a panel at the gold level .  it provides a great value and essentially a full panel \"\" ownership \"\" to  talk about enrons acitivities .  i would like to touch base with you early next week to hear you thoughts  and feedback on these proposals .  looking forward to a great conference participation .  kind regards  suresh  suresh balasubramanian  mba class of 2001 the wharton business school  ph # : 215 - 893 - 9491  - financel . con . enron . doc\",0\n\"Subject: market maker simulation v . 2  stinson and vince ,  i finished the second version of the model which deals with open to close  trading .  the major difference is that there is an additional mark to market at open  price which  will affect the p / l .  i also added the output features that john wants to see .  the cumulative p / l is path dependent , the net open allowed seemingly has  a strong influence on the cumulative p / l trajectory . ( the anomaly i  discussed  with vince is due to the trajectory shape change which needs further  examination ) .  could you review what i have done before we talk to john again ?  zimin\",0\n\"Subject: swaps monitor research .  elena ,  please , review the energy related info in this database ( if any ) and talk to  me  about it .  i would like to do some research in this area and ask you to write a summary  report .  nothing urgent .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 12 / 2000  03 : 52 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  andrei osonenko on 10 / 11 / 2000 04 : 26 : 38 pm  to : ( recipient list suppressed )  cc :  subject : swaps monitor research .  we have today published information about the otc derivative activities of  the largest dutch dealers . this research is contained in the attached pdf  file .  through our web site , swapsmonitor . com , you can obtain additional information  about otc derivatives dealers , including rankings and a database of  outstandings going back to 1994 .  as an e - mail subscriber to our research , you will automatically receive all  free research at the same time it is placed on our web site . if you wish to  remove your name from the e - mailing list , please use the reply feature of  your e - mail application and type the word \"\" remove \"\" in the subject line .  regards ,  - dutch _ dealers . pdf  andrei osonenko  research department\",0\n\"Subject: wti - new eol product  please provide comments on the summary below . after i have collected them ,  we can decide to distribute to greg , john , jeff and anyone else involved .  the following is my summary of our collective thoughts regarding the proposed  24 x 7 trading of prompt wti :  1 ) appears advisable to have on - site human monitoring for the following  reasons :  a ) public relations  b ) in case there are operational bugs  c ) unforeseen market events , particulary during off exchange hours , long  weekends , etc  2 ) we advocate some live trading simulation with incentives to \"\" bust \"\" the  system prior to launch to work our  operational glitches , and because the historical simulations used daily ,  not intra - day prices .  3 ) consider a daily position limit ( a sub - limit of the overall global  products limit ) whereby each day , at least once a day ,  the open position will be reduced under the limit ( or to close to flat ? )  4 ) consider a \"\" trigger \"\" whereby the fixed spread widens if a certain number  of consecutive trades occurs on the same  side of the market  5 ) consider the purchase of deep out - of - the - money puts and calls to protect  against extreme events .  ted\",0\n\"Subject: re : summer visits  steve ,  i can pick up the cost of your trip from the research group budget .  the more i think about it , the more i am convinced it would be difficult  to justify 2 trips per person . i think that we should go for one contiguous  stay per person and make a good  effort to make these trips productive .  vince  steven leppard  05 / 11 / 2000 03 : 41 am  to : vince j kaminski / hou / ect @ ect  cc : dale surbey / lon / ect @ ect  subject : summer visits  vince  thanks for offering to look my presentation over . the deadline for  submission has been extended until tomorrow ( friday ) , so there ' s less of a  hurry .  as regard our summer visits , we ' ll need to speak to dale over the budget .  personal commitments mean it ' s difficult for me to take two whole months to  visit , so if the cost is prohibitive i may need to make just one shorter  visit . i ' d obviously like to spend longer , and two visits seems to be the  only way i can do it . i believe the situation is similar for kirstee .  i ' ve persuaded richard to pay for matt ' s visit in its entirety , and i ' ve no  doubt that rac / credit trading will pick up the bills for ben and kirstee .  it ' s difficult to think who ' d be the natural group to pay for me . i honestly  think i ' ll have difficulty persuading , e . g . richard , that it ' s worth his  while to pay for my visit . i get the impression he thinks i ' m doing ok  without the need to go to houston for further training .  i ' m interviewing a candidate for bjorn ' s model review role during today ' s  videoconference , so we ' ll need to speak beforehand or perhaps friday .  all the best ,  steve  vince j kaminski  05 / 10 / 2000 01 : 54 pm  to : steven leppard / lon / ect @ ect  cc : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , grant  masson / hou / ect @ ect , pinnamaneni krishnarao / hou / ect @ ect  subject : conference  steve ,  i am tied up at the power 2000 conference .  i shall get back to you with my comments on thursday morning .  i also want to talk to you tomorrow about finalizing the dates of the summer  rotations . we are talking to hr here about apartments , car rentals ,  and other arrangements for the london team for the summer . i promised  to give them the names and dates by the end of the week .  sorry for the delay in sending you my comments .  vince\",0\n\"Subject: re : hi :  zeigham ,  mike roberts from my group will help you .  vince  on 09 / 22 / 2000 07 : 14 : 37 pm  to :  cc :  subject : hi :  hi vince :  this zeigham khokher at the university of texas at austin , finance  department .  ?  i need some publicly available data that unfortunately is not available  here . ? it is basically the historical prices for price of oil , gas and gold  futures contracts and options .  ?  again the data is strictly public info and not proprietary at all . ? let me  know if there is a central data person at enron who would be able to help . ?  all help will be of course gratefully acknowledged .  ?  hope all is well , i hear you will be giving a talk at ut this fall ? and look  forward to seeing you then .  ?  regards  zeigham  ?  ?\",0\n\"Subject: development of a program in \"\" econo - physics \"\"  good afternoon professors :  i am the administrative coordinator for the enron corp . research group .  yannis tzamouranis spoke with vince kaminski about meeting with you to  discuss the development of a program for the u of h .  i understand from your email that you will be available wednesday , may  24 th . if this is correct , and if professors mccauley and reiter will also be  available that date , we would like to schedule a meeting at 4 : 00 pm on the  24 th of may at vince kaminski ' s enron office .  if this is not acceptable , please let me know .  sincerely ,  shirley crenshaw  administrative coordinator  enron corp . research group  713 / 853 - 5290  email : shirley . crenshaw @ enron . comi\",0\n\"Subject: stentofon  goodmorning liz ,  we are in need of another stentofon for trisha tlapek .  she works very closely with the traders and it is important  for quick communication .  thanks  kevin moore\",0\n\"Subject: credit exposure model  alex ,  i have set up a meeting with bill bradford on monday , nov . 6 , at 10 : 00 am in  his office ( eb 2861 ) to  discuss the credit exposure model specifications .  zimin  - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 11 / 01 / 2000 09 : 19 am  - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : william s bradford on 10 / 31 / 2000 06 : 50 pm  to : zimin lu / hou / ect @ ect  cc : stinson gibner / hou / ect @ ect , alex huang / corp / enron @ enron , dorothy  youngblood / hou / ect @ ect  subject : re : credit exposure model  i am out of the office this week but will be back in the office all next  week . please coordinate a time with my assistant dorothy youngblood .  zimin lu  10 / 31 / 2000 02 : 44 pm  to : william s bradford / hou / ect @ ect  cc : stinson gibner / hou / ect @ ect , alex huang / corp / enron @ enron  subject : credit exposure model  bill ,  alex and i are working on the credit exposure model . we finished the initial  design issues regarding  input and output . we would like to have a meeting with you to seek feedback .  we also preceeded  to write the underlying model . so feedback at early stage can be important  for the later development .  paulo issler is working on the short term enhancement to the credit loss  model : adding asian option to  the model built by vasant and amitava .  let me know when is a good time for us to meet .  zimin\",0\n\"Subject: re : new pc with two 128 mb of ram  vince :  i was confused also - but i think this is the computer we ordered for  the new employee that is coming next week ( rakesh bharati ) . phillip our  it floor tech said that the computer in the back room at ebl 972 g was very  old and did not have much memory so i ordered a new one with an  upgrade to bring it up to 196 m ( this is what phillip said we need ) . also  there  is another computer back there that does not have much memory and we  ordered an upgrade for it ( jason ' s ) . i went ahead an did it so that they  would  be ready when the new employees come in .  maureen already has her upgrade .  shirley  vince j kaminski  12 / 18 / 2000 03 : 58 pm  to : shirley crenshaw / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : new pc with two 128 mb of ram  shirley ,  is this an upgrade for maureen ?  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 12 / 18 / 2000  03 : 58 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : felix buitron jr . / enron @ enronxgate on 12 / 18 / 2000 02 : 27 pm  to : vince j kaminski / hou / ect @ ect  cc : shirley crenshaw / hou / ect @ ect  subject : new pc with two 128 mb of ram  vince , i have your new pc . i will get with you when i ' m done to schedule a  delivery time . i will need your network and notes password to test your apps .  thanks ,  felix\",0\n\"Subject: the equipment you ordered is in stock .  - - - automatic notification system ( request # : ecth - 4 r 5 mlm , po # : 20110550 )  requested for : vince j kaminski  requested by : shirley crenshaw  your equipment ( see below ) has arrived . please allow 3 to 5 days for  configuration . you will be notified when a technician has been assigned .  en 6600 desktop p 3 - 600 10 gb 64 mb 32 x nt 4 . 0  en 6600 128 mb installed in desktop  21 \"\" vl 100 monitor\",0\n\"Subject: update  hello all ,  the program for the 2000 texas finance festival has been formalized and can  be found on our web site at  i do need to remind you of a few things before we converge on san antonio .  first , be sure to contact the convention hotel and make your reservations .  at last count there were only 6 rooms left . second , i need a completed  application form from everyone so that we can get an accurate meal count .  i am attaching the program announcement so you can fill out the appropriate  boxes for meals and numbers of guests in the event you have not sent in a  form .  remember that we are starting the conference off with a luncheon on friday  so plan on arriving early friday or coming in on thursday evening if you  can . our hotel is right on the river and there are lots of restaurants and  interesting things to visit in the immediate area ( the alamo is across the  plaza from the hotel ) .  we are making plans for spouses and children to attend both the dinner on  friday and saturday evenings . the friday evening dinner begins at 6 p . m .  so that we can be done in plenty of time for our private guided tour of the  alamo at 8 : 00 p . m . for saturday we are still working out plans for the  evening so stay tuned .  there will be more information later as the conference nears . looking  forward to seeing you all and in beautiful , sunny san antonio .  john - announcerev . doc  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: storage modeling  john ,  i want to thank you for your compliment to the work that we have done for the  liberty  county storage facility valuation .  you and your talented associate ms . tian gave me a lot of valuable insights  to understand all  the aspects of the deal , so it was also a great learning experience for me .  if you think the research can help you in any way to your deals , storage ,  transport , mtbe , real options ,  or whatever , just let me know , we will get the job done .  zimin\",0\n\"Subject: cuiaba models  hey ding . if you recall , we looked at southern cone during july , as this  was the feedback that we got from our presentation in late may . the cuiaba  gas and power volumes may be found in several different places since there is  more than one model . the models do not necessarily agree with each other . i  have attached a few models that should contain the necessary info . i also  have a summary sheet template that was to be attached in maps . enjoy .  - kevin k .\",0\n\"Subject: reference on bruce kimich  mike , below are some references on bruce . sorry for the delay . we needed  to get the contact info from him . call me if you have questions .  mcm : i was able to verify dates and position as well as a positive reference  to his ability to work on a team , complete projects timely . and stated that  he was a \"\" great guy \"\" .  dr . carl palash : was a co - manager at mcm . confirmed all that bruce listed  on his resume as what they had worked on and stated that bruce is considerate  and that he would work with bruce or hire him if he had the opportunity in  the future .  david krell : helped co - coordinate graduate level classes re : technical  analysis at rutgers . bruce is now the lead teacher and the course is highly  regarded , gets positive reviews and has a full enrollment each time it is  offered .  sheila walton\",0\n\"Subject: interviews scheduled for monday , november 6 th ( gary hickerson ' s  position )  good morning all :  below are two more candidates for gary hickerson ' s tech position . they  will be here monday , november 6 th for interviews .  cynthia shanley  vince kaminski 8 : 30 am ebl 938  mike roberts 9 : 00 am ebl 938  christopher burford  vince kaminski 9 : 00 am ebl 9 c 2  mike roberts 9 : 30 am ebl 9 c 2  please mark your calendars .  thanks !  shirley  molly :  do you have copies of the resumes for these two and the others that  are being interviewed today and tomorrow ?  thanks !\",0\n\"Subject: contract agreement for energy derivatives  i work with john ambler in apachi pr , and have been assisting vince with  efforts on the energy derivatives book , which lacima consultants is  publishing and to which vince is contributing a chapter . attached is the  draft contract agreement , which requires your legal review and approval .  could you kindly look it over and let me know your comments . when we have  your approval , we will send lacima a copy for their signature , after which  vince will sign the document . we will ensure that your office has a copy for  your records .  if you wish to speak to me , please do not hesitate to call me at ext . 66503 .  thank you for your kind assistance .  habiba\",0\n\"Subject: re : vacation  shirley ,  no problem .  vince  shirley crenshaw  03 / 07 / 2001 03 : 14 pm  to : vince j kaminski / hou / ect @ ect  cc : anita dupont / na / enron @ enron , kevin g moore / hou / ect @ ect  subject : vacation  vince :  if it is allright , i would like to take vacation , thursday and friday , march  15 th and 16 th ( next week ) .  thanks !  shirley\",0\n\"Subject: australian energy 2000  dear vince ,  dzien dobry . many thanks for agreeing to take the remainder of the var  seminar - it is a great help . i asked raymond yeow of enron australia if he  would chair day one but he said that you would be a bigger draw and perhaps  better placed . to this end , i am hoping that you would consider chairing day  one ' s plenary session and trading stream . you can blame raymond for  recommending you ! i appreciate that this is asking even more of you than  you originally signed up for but you seem to be famous in this small market  and it would be great if you could do it .  i apologise for imposing once again but look forward to hearing back from  you when you get a chance . as ever , let me know if you have any questions .  best regards ,  joel\",0\n\"Subject: enron , case study at nordic business schools  good morning vince ,  could you please provide with some guidance in relation to mark ' s comments  directly below . i don ' t have any recollection of recent case studies that we  could send oddbjorn tysnes - do you know of any ?  i will send him a number of reprints of articles . please let me know if you  have anything at your fingertips . . . .  regards ,  cindy  - - - - - forwarded by cindy derecskey / corp / enron on 10 / 30 / 2000 10 : 21 am - - - - -  mark palmer  10 / 30 / 2000 08 : 48 am  to : christie patrick / hou / ect @ ect , michael b rosen / hou / ect @ ect , cindy  derecskey / corp / enron @ enron  cc :  subject : enron , case study at nordic business schools  i don ' t want to spend a lot of time right now , from this office , pursuing  these opportunities . but , if we have some case studies \"\" on the shelf \"\" we  could send something to oddbjorn .  thanks ,  mark  - - - - - forwarded by mark palmer / corp / enron on 10 / 30 / 2000 08 : 45 am - - - - -  oddbj > rn tysnes  10 / 29 / 2000 01 : 36 pm  to : \"\" ' mark . palmer @ enron . com ' \"\"  cc : \"\" thor lien ( e - post ) \"\" , \"\" julie green ( e - post ) \"\"  , j > rn bremtun  subject : enron , case study at nordic business schools  dear mark ,  i want to thank you for two very interesting days and a very pleasant  evening in london at the european pr conference .  as you may remember from the session \"\" ideas forum \"\" , i presented an idea of  introducing enron ' s transformation from an \"\" old \"\" industry / energy company to  an innovative player in the \"\" new \"\" economy as a case study at the leading  nordic business schools . i have later discussed the idea with enron ' s head  of the nordic region , thor lien . he agrees that this could be a good way of  raising the awareness of enron in the nordic business community . one reason  for this is that several professors of the nordic business schools are  frequent speakers at business conferences , they are very often sought by  business reporters to give comments etc . if enron becomes a \"\" top of mind \"\"  innovative company with these professors , it will help relation - building and  pr work towards the business community .  i understood from you that some us business schools have developed similar  ( ? ) case studies on enron . do you or someone else in enron have access to  such case studies ? if so , would it be possible for you to send us copies ? it  would be a great help for us .  best regards ,  oddbjorn tysnes\",0\n\"Subject: power plant model  ken of rdi and i have gone through his model together and i have a clear idea  of how it ' s going step by step . i believe we can almost start recoding now .  i need a c programmer who ' s familiar with access data base .  i . e . , he ( or she ) knows how to extract data from an access data table ( of  certain format ) and output the results into an access data table of certain  format . once the programmer is assigned , i will go through the model  with him and incorporate his ideas and ken ' s , then we can start coding .  alex\",0\n\"Subject: re : harvard business school case studies  vince -  the only one i can find is the dhabol one . do you still want that one  alone ? i ' m sorry we don ' t have the others .  beth  vince j kaminski  07 / 31 / 2000 04 : 17 pm  to : beth miertschin / hou / ect @ ect  cc :  subject : re : harvard business school case studies  beth ,  thanks .  dhabol is one . there should be 2 more case studies we used .  one about old egs , the 2 nd about tva options .  2 - 3 copies will be sufficient .  vince  from : beth miertschin 07 / 31 / 2000 03 : 44 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : harvard business school case studies  try this . . .  - - - - - - - - - - - - - - - - - - - - - - forwarded by beth miertschin / hou / ect on 07 / 31 / 2000  03 : 43 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : beth miertschin 07 / 31 / 2000 03 : 14 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : harvard business school case studies  vince -  i just found some copies ! how many do you need and i will have them  delivered to you .  they are the case about the dabhol project in india . is that the one you  were thinking of ?  beth  vince j kaminski  07 / 31 / 2000 03 : 10 pm  to : beth miertschin / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : harvard business school case studies  beth ,  i have a favor to ask . do we have copies of harvard business school  case studies about enron ? we use these case studies during super saturdays .  i need a few copies . this is for prof . john martin .  vince\",0\n\"Subject: re : thomas knudsen  steve ,  yes , please arrange the interview . the resume is very interesting .  i shall be on vacation all of next week ; you can make arrangements  for the following week , monday through thursday . please , include  stinson , grant and vasant .  vince  steven leppard  03 / 17 / 2000 03 : 36 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : thomas knudsen  hi vince  i met with thomas this morning ( i gave you his cv before , though i don ' t know  if you had time to read it ) . he ' s extremely interested in moving to enron ,  and accepts that our work is far less academic than his postdoc research ,  although far broader than his investment banking quant experience . he  remains interested , and emphasised he wants to stay close to the traders , but  wants to look at new markets and products . i think we should seriously  consider hiring him . he is ( understandably ) reluctant to move to houston ,  but there ' s no doubt that there is plenty of ( unnmet ) demand for derivatives  pricing ( and thinking ) here in london .  would you be interested in my setting up a videoconference in the next couple  of weeks so you have a chance to chat with him ? i ' m meeting with him again  on tuesday at an academic quant finance seminar organised by lane at king ' s  college . i ' ve attached his cv for your reference .  all the best ,  steve\",0\n\"Subject: grades  pam ,  the last group .  please , let me know if any name is missing .  grade : a  thanks a lot . it was a pleasure working with you .  vince kaminski\",0\n\"Subject: re : contact  jana ,  a correction . i am going to spend one week in australia and i have  just realized that i have to leave on friday , july the 14 th , at night ,  to arrive in sydney on sunday morning .  maybe we can meet on friday the 7 th ( we would like to invite you  to dinner and then we can have a glass of wine outside , the weather  and mosquitoes permitting ) .  alternatively , we can meet during the weekend of july the 29 th .  vince  jlpnymex @ aol . com on 06 / 26 / 2000 01 : 27 : 41 pm  to : vince . j . kaminski @ enron . com  cc :  subject : re : contact  vince ,  the weekend of july 15 , 2000 is fine for us . which day is better for  you - - friday or saturday ?  do you want to go to the woodlands for a show , or just visit ? also , let me  know if i can bring something .  thanks and we look forward to meeting your family .  jana\",0\n\"Subject: re : grades  pam ,  the students resent the documents .  the group members :  rakhi israni  felix feng lu  winny so  orlandotaylor  sanjay wankhade  ning zhang  grade : a  separately , i think i have sent you already :  jeffrey planck  grade : a  please , confirm this message .  vince kaminski\",0\n\"Subject: deadline information : ehronline is now available  today is a big day for enron ! this morning , we are rolling out the next step  toward empowering our most valuable resource - - you . as of this morning ,  most of you have access to the new ehronline intranet site .  the new ehronline functionality ( a feature of the sap implementation ) is very  easy to use and is accessible through the enron intranet ( at  http : / / ehronline . enron . com ) . using ehronline , not only can you enter your  own time , but also maintain your profile , and update personal data , including  home address , phone numbers , w - 4 changes and emergency contact information .  additionally , you will be able to view your individual pay advice and benefit  elections .  remember the deadline for time entry is 3 : 00 pm cst , on june 30 th - - all time  must be submitted and ready for payroll processing . because this is the  first period using sap to record time , please work closely with your  timekeeper to ensure the deadline is met . by now , you should have received a  note from your timekeeper . however , if you have not and are unsure who your  timekeeper is , please call the site manager for your business unit . their  names and numbers are listed below .  because of the size of this rollout , we have to expect a few \"\" bumps in the  road . \"\" so , we \u0001 , re asking you to be patient and work with us over the next few  weeks . if you have questions , are experiencing problems , or would like more  information , please contact the center of expertise ( coe ) .  center of expertise ( coe )  the center of expertise can help answer many of your questions and provide  you with assistance if you are experiencing problems . the coe is available  24 hours a day from monday at 7 : 00 am cst through friday at 7 : 00 pm cst . you  can contact the coe :  via phone at ( 713 ) 345 - 4 sap ( 4727 )  coe website : sap . enron . com ( contains job aids , instructional materials ,  forms and policies )  via lotus notes at sap coe / corp / enron  via internet email at sap . coe @ enron . com  bu site managers  enron north america  cindy morrow , ( 713 ) 853 - 5128  yvonne laing , ( 713 ) 853 - 9326  global products  shelly stubbs , ( 713 ) 853 - 5081  yvonne laing , ( 713 ) 853 - 9326  global finance  jill erwin , ( 713 ) 853 - 7099  yvonne laing , ( 713 ) 853 - 9326  gas pipeline group  michael sullivan , ( 713 ) 853 - 3531  greg lewis , ( 713 ) 853 - 5967  diane eckels , ( 713 ) 853 - 7568  global e & p  diane eckels , ( 713 ) 853 - 7568  enron energy services  bobby mahendra , ( 713 ) 345 - 8467  daler wade , ( 713 ) 853 - 5585  corporate  todd peikert , ( 713 ) 853 - 5243  enron renewable energy corp  joe franz , ( 713 ) 345 - 5936  daler wade , ( 713 ) 853 - 5585  enron investment partners  yvonne laing , ( 713 ) 853 - 9326  job aids and reference guides  finally , the apollo & beyond training team has developed several useful  reference guides that you can access via the sap website at sap . enron . com  also , a brochure will be delivered to your mailstop today . this brochure  provides step by step instructions on how you can use ehronline to view and  update your personal information .\",0\n\"Subject: re : telephone interview with the enron research group  i have had to reschedule the interview with nina knirel for tomorrow . the  following is the new schedule .  zimin lu and tanya tamarchenko 3 : 30 - 4 : 00 pm  vince kaminski and stinson gibner 4 : 00 - 4 : 30 pm  her flight does not arrive until noon .  thanks !  shirley  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 11 / 29 / 2000  04 : 01 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  shirley crenshaw  11 / 29 / 2000 09 : 59 am  to : nina knirel @ enron  cc : stinson gibner / hou / ect @ ect , vince j kaminski / hou / ect @ ect , zimin  lu / hou / ect @ ect , tanya tamarchenko / hou / ect @ ect  subject : re : telephone interview with the enron research group  hi nina :  we would be glad to see you tomorrow . since this is a preliminary  interview to see if there is a fit and an interest , we will schedule an hour  and probably the interviewers will double up their time .  i have scheduled the following , if the times do not work for you , please  let me know .  9 : 00 am vince kaminski and stinson gibner  9 : 30 am tanya tamarchenko and zimin lu  when you come into the enron bldg , go to the security desk and ask  for me , they will call me and i will meet you in the lobby of the 19 th  floor .  thanks and have a safe trip .  regards ,  shirley crenshaw  nina knirel on 11 / 29 / 2000 09 : 52 : 02 am  to : shirley . crenshaw @ enron . com  cc :  subject : re : telephone interview with the enron research group  dear shirley crenshaw ,  thank you very much for your interest . i will be in  houston tomorrow morning and i thought that it could  be more convenient if we can meet in person . if you  prefer the phone interview , let me know what number i  should call and we can have it tomorrow .  thanks again ,  nina knirel  - - - shirley . crenshaw @ enron . com wrote :  > good morning ms . knirel :  >  > vince kaminski and several members of the research  > group would like  > to conduct a telephone interview with you sometime  > this week at your  > convenience . please let me know the times that you  > are available and  > they will contact you .  >  > the telephone interviews usually last approximately  > 1 hour and will be  > conducted via a speaker phone .  >  > the interviewers will be :  >  > vince kaminski managing director and head of  > research  > stinson gibner vice president , research  > tanya tamarchenko director , research  > zimin lu director , research  >  > look forward to hearing from you .  >  > best regards ,  >  >  > shirley crenshaw  > administrative coordinator  > enron research group  >  do you yahoo ! ?  yahoo ! shopping - thousands of stores . millions of products .  http : / / shopping . yahoo . com /\",0\n\"Subject: re : meeting requested  kevin ,  let ' s meet for lunch next week ( monday of friday would be best ) . we can talk  about the  project and decide who has the right skills to help you .  the person who supports ebs is stinson gibner and his lead person is martin  lin .  my secretary ' s number is 3 - 5290 ( shirley crenshaw ) .  vince  to : vince j kaminski / hou / ect @ ect  cc : rebekah rushing / enron communications @ enron communications  subject : meeting requested  vince ,  i would like to meet with you or someone in your group to discuss some of the  investment ideas and structures we are exploring . how is your group  structured these days ? who would be best for me to meet ? might you be  available for lunch next week ? i will have my assistant contact you .  thank ,  kevin garland\",0\n\"Subject: work at enron  hi , vince  i just wanted to thank you for the opportunity to interview for a  position with your group . i find the work described very interesting and  the work environment very appealing .  i think the retail area would be a good match with my skills and  interests , and i could make a contribution very quickly . i believe that  the power and options valuation areas would make a good fit as well , if  that matches your needs .  thanks again ,  bob lee\",0\n\"Subject: please note that my email address has been changed to : jhanley @ riskwaters . com  please update your address books .  thanks .  joel .  direct : + 44 ( 0 ) 20 7484 9885  www . riskwaters . com  - attl . htm\",0\n\"Subject: re : price processes for ng  grant & vince ,  i am sending you the results of fitting different price process models into ng  prompt month prices . the fit is quite good for some models .  we might think of using these mean - reverting jump - diffusion models in our  credit model .  i should examine other contracts behavior ( beyond prompt month ) as well .  tanya .\",0\n\"Subject: re : enron finance conference sponsorship  this is great . . . . i ' ll get it on the calendar . . . . thanks .  from : michele nezi marvin @ enron communications on 10 / 25 / 2000 02 : 13 pm  to : kristin gandy , jeffrey a shankman / hou / ect @ ect  cc :  subject : re : enron finance conference sponsorship  this is exciting news . suresh must really want a job with us ! ! jeff - are  you in to be the speaker on the panel ? it is friday , december 8 .  michele nezi marvin  manager  enron broadband services  ( 713 ) 853 - 6848  - - - - - forwarded by michele nezi marvin / enron communications on 10 / 25 / 00 02 : 11  pm - - - - -  sureshb @ wharton . upenn . edu  10 / 25 / 00 02 : 05 pm  please respond to sureshb  to : michele nezi marvin / enron communications @ enron communications  cc :  subject : re : enron finance conference sponsorship  hi michele  i am writing to confirm that enron will be participating in the  sales / trading  panel .  i have some great news . we have decided to give enron the sponsorship  spot for the sales and trading panel .  key benifits of being a panel sponsor  - a big enron banner can be displayed indicating that you are the official  sponsor of the entire sales / trading panel  - mention in the program guide and all other conference material  - in addition to the panelist spot on the sales / trading panel , enron  gets to open the panel session with a 15 - 20 min presentation on general  trends in the sales and trading industry , an excellent opportunity  for a senior person from enron to address the audience .  also for folks from enron coming to the conference we have hotel rooms  blocked at a discount price at the park hyatt .  i will be getting you a lot of the details with regards to logistics for the  panel and enrons participation in the conference in the coming weeks . .  once again , i would like to thank you for the sponsorship and presence at  the finance conference .  looking forward to it . .  regards  suresh balasubramanian  215 - 893 - 9491  > - - - - - original message - - - - -  > from : michele _ nezi _ marvin @ enron . net  > [ mailto : michele _ nezi _ marvin @ enron . net ]  > sent : friday , october 20 , 2000 5 : 31 am  > to : sureshb @ wharton . upenn . edu  > cc : kristin _ gandy @ enron . net ; jeffrey _ a _ shankman @ ect . enron . net  > subject : enron finance conference sponsorship  >  >  >  >  > please see attached for our sponsorship form . can you let me  > know asap which  > panel we are on - i think we would be a great contributer to  > either the sales  > and trading or corporate finance panels . looking forward to a  > great conference .  >  > ( see attached file : finance conference form . doc )  >  > michele nezi marvin  > manager  > enron broadband services  > ( 713 ) 853 - 6848  >\",0\n\"Subject: re : summer internship  vince ,  i appreciate your inquiry regarding an extra spot in the summer associate  pool . i am looking forward to hearing from you soon .  best regards ,  - - - - - - - - - oooo - - - - - oooo - - - - - - - - - -  cantekin dincerler  doctoral candidate  the university of texas at austin  graduate school of business  department of finance  office : ( 512 ) 471 - 1676  fax : ( 512 ) 471 - 5073  home : ( 512 ) 472 - 5356  http : / / uts . cc . utexas . edu / ~ cantekin  - - - - - - - - - - - - - oooo - - - - - oooo - - - - - - - - - -  > - - - - - original message - - - - -  > from : vince j kaminski [ mailto : vince . j . kaminski @ enron . com ]  > sent : wednesday , march 29 , 2000 8 : 34 am  > to : cantekin @ mail . utexas . edu  > cc : vince j kaminski ; vasant shanbhogue  > subject : re : summer internship  >  >  >  >  > cantekin ,  >  > the summer associate program has closed but i shall check to see  > if i can get one extra place .  >  > vince  >  >  >  >  >  >  > \"\" cantekin dincerler \"\" on 03 / 28 / 2000  > 11 : 48 : 53 am  >  > please respond to cantekin @ mail . utexas . edu  >  > to : vkamins @ ect . enron . com  > cc : ( bcc : vince j kaminski / hou / ect )  > subject : summer internship  >  >  >  > hi vince ,  >  > i am writing you at this time to inquire as to the potential  > of renewing my  > internship at enron for the summer of 2000 .  >  > while the date of my request is later than i would have  > wished , the reason  > is that i had originally planned to go back to turkey this  > summer and get  > my mandatory military duty done . however , i now realize i can  > put it off to  > a further date . that left me wondering if you believe there  > is a project  > that i can get involved in this summer and be useful . if that were the  > case , i would be more than happy to postpone my military duty  > and spend the  > summer with the research group . i discussed this with dr .  > ronn , and he is  > very supportive of this idea .  >  > i apologize again for bringing up this issue late , and look forward to  > hearing from you .  >  > best regards ,  >  > - - - - - - - - - oooo - - - - - oooo - - - - - - - - - -  > cantekin dincerler  >  > doctoral candidate  > the university of texas at austin  > graduate school of business  > department of finance  > office : ( 512 ) 471 - 1676  > fax : ( 512 ) 471 - 5073  > home : ( 512 ) 472 - 5356  > http : / / uts . cc . utexas . edu / ~ cantekin  > - - - - - - - - - - - - - oooo - - - - - oooo - - - - - - - - - -  >  >  >  >  >  >  >\",0\n\"Subject: lsu visit ( resume )  mr . kaminski ,  it was a pleasure and honor to have lunch with you . i also enjoyed your  presentation in our graduate class . i hope you enjoyed your visit to  baton rouge . come back to visit us sometime ! !  attached is my resume as you suggested . thank you for your interest in  lsu and me .  sincerely ,  datren l . williams  - resume . doc\",0\n\"Subject: if you arrange administrative or clerical temporary employees , this  e - mail contains important information for you .  as you probably know by now , enron recently entered into a new relationship  with corestaff ' s managed services group to manage and administer its  temporary staffing program . this new arrangement is designed to improve  service and quality as well as increase efficiency in meeting enron ' s  temporary employment needs . there are many benefits , including a web - based  application which will provide enron ' s temporary staffing users with online  ordering , approval and reporting . more details on this system will be coming  soon .  in order to help the managed services group serve you better in the days  ahead , please take a moment now to fill out the profile questions below and  forward your reply to joseph marsh at joseph marsh / na / enron . this  information will not be used for solicitation , but rather to facilitate a  more efficient ordering process .  name :  business unit :  department :  phone / e - mail :  cost center :  number of temporaries currently in use :  average / peak number of temporaries used per week :  skill sets / positions required :  phase i of the program , which starts january 2 , 2001 , encompasses all  administrative / clerical temporary employees in the houston area . please  note that we anticipate no changes for temporary employees currently on  assignment at enron as we make this transition . again , more details on the  managed services program and processes will be distributed in the coming  weeks .  as of january 2 , the managed services account team will be on - site to answer  any questions and handle your temporary employee needs . they will be  available via e - mail or by calling 713 - 345 - 6899 . please note that the  current process for requesting temporary employees will remain in effect  through the end of the year .  thank you ,  the enron corp implementation team\",0\n\"Subject: rice math course : hector  vince ,  in case i forget by monday : hector campos asked if he can take a course in  pde ' s at rice this fall . it would meet tues and thurs . mornings and would  cost about $ 3000 . i ' ll try to catch you on monday to see what you think .  stinson\",0\n\"Subject: ( no subject )  greg ,  blake johnson sent me this proposal ( i think some of his friends are  the founders of this group ) . it looks like a good project for brad romine  to evaluate it .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 08 / 09 / 2000  01 : 03 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  blake johnson on 07 / 20 / 2000 01 : 02 : 59 pm  please respond to blakej @ stanford . edu  to : vkamins @ enron . com  cc :  subject : ( no subject )  vince ,  here are the overview powerpoint slides for the investment and strategic  relationship management firm , azure capital , i mentioned in my voice  mail . the transactions they completed in their past lives at csfb and  already in the new firm , as well as their advisory board are probably  the strongest evidence of their capabilities .  hope all is well .  blake  - azure slides . ppt\",0\n\"Subject: re : interview with the enron research group - reply - reply  mark :  good to hear from you ! i think it is a good idea for you to talk to maureen  raymond - castaneda , enron ' s chief economist or dr . vince kaminski ,  managing director and head of research . unfortunately both are out  of the office at present . maureen will return on monday , the 23 rd and  vince will return on wednesday , the 25 th .  if you will be available for a telephone call on wednesday , the 25 th ,  please let me know when and the telephone number and i will arrange  the telephone interview .  regards ,  shirley crenshaw  713 - 853 - 5290  mark . giancola @ do . treas . gov on 10 / 20 / 2000 01 : 57 : 40 pm  to : mark . giancola @ do . treas . gov , shirley . crenshaw @ enron . com  cc :  subject : re : interview with the enron research group - reply - reply  date : 10 / 20 / 2000 02 : 54 pm ( friday )  from : mark giancola  to : ex . mail ( \"\" shirley . crenshaw @ enron . com \"\" , \"\" mark . giancola \"\" )  subject : re : interview with the enron research group - reply - reply  shriley :  i ' m terribly sorry it ' s taking me so long to get back to you . because i am  moving to a new office after my trip next week it is difficult to make  definite plans . looking at my schedule now i would suggest tentatively  that i could come on friday november 3 . again , i would like to reconfirm  with you after i return from montreal a week from now .  i would also be interested in having a phone conversation with someone  who can tell me in a bit more detail about enron ' s research group and this  particular position . that would be very helpful in preparing to come to  houston . please let me know if this is feasible .  thanks for your patience .  mark giancola  > > > ex . mail . \"\" shirley . crenshaw @ enron . com \"\" 10 / 13 / 00 10 : 09 am > > >  mark :  while we are anxious to fill this position , we certainly understand  scheduling  conflicts ! please let us know as soon as you have a definate time .  dr . kaminski will be out of the office the next two weeks also . maybe  the  week  of the 30 th or the 6 th of november ?  look forward to hearing from you .  sincerely ,  shirley crenshaw  mark . giancola @ do . treas . gov on 10 / 13 / 2000 08 : 47 : 57 am  to : shirley . crenshaw @ enron . com  cc :  subject : interview with the enron research group - reply  date : 10 / 13 / 2000 09 : 42 am ( friday )  from : mark giancola  to : ex . mail ( \"\" shirley . crenshaw @ enron . com \"\" )  subject : interview with the enron research group - reply  thanks for your message . our e - mail system was down all day  yesterday so i was not able to respond until today .  i am very interested in coming in for an interview . unfortunately , my  schedule will make traveling on a weekday difficult for at least the next  two weeks . i am travelling as part of the us delegation to the g - 20 on  the 24 th and 25 th and will be busy until then in preparation . immediately  following that trip i will be moving to a new office here in treasury and  am not sure about my schedule .  i would like to wait until next week when i have a better idea of my  schedule to propose times to come to houston . please let me know if  there are time constraints on your side .  thanks ,  mark giancola  > > > ex . mail . \"\" shirley . crenshaw @ enron . com \"\" 10 / 12 / 00 09 : 06 am > > >  good morning mr . giancola :  your resume was forwarded to vince kaminski , managing director and  head of research with enron .  we would like to bring you in for an informal interview at your  convenience .  this would be for a position of \"\" economist \"\" or \"\" associate economist \"\" ,  reporting to maureen raymond castaneda .  please give me some dates and times that would be convenient with you  and i will have our hr rep contact you to schedule your coming to  houston .  i look forward to hearing from you .  sincerely ,  shirley crenshaw  administrative coordinator  enron research group  713 - 853 - 5290\",0\n\"Subject: re : dinner this fri . in london ?  ehud ,  i had to cancel my trip to london . steve leppard will  take care of my presentations .  vince  \"\" ehud i . ronn \"\" on 09 / 18 / 2000 09 : 12 : 47 am  to : lane hughston , vkamins @ enron . com ,  pnance @ teknecon . com , ds 64 @ cyrus . andrew . cmu . edu , steven . leppard @ enron . com ,  geman @ edu . essec . fr , chris . harris @ natpower . com  cc :  subject : dinner this fri . in london ?  colleagues ,  greetings .  i ' d like to plan a dinner subsequent to the adjournment of this week ' s eprm  conference in london fri . 9 / 22 . whereas some of you have already notified  me of your availability or travel plans , please advise whether you are  available for dinner on fri . 9 / 22 or sat . 9 / 23 .  ehud  ehud i . ronn  jack s . josey professor in energy studies  department of finance  mccombs school of business  university of texas at austin  austin , tx . 78712 - 1179  voice : ( 512 ) 471 - 5853  fax : ( 512 ) 471 - 5073  internet : eronn @ mail . utexas . edu \",0\n\"Subject: risk boston  please read the attached important information .  ?  thank you  ?  regards  catriona clowes  conference co - ordinator  tel + 44 ( 0 ) 20 7484 9864  - chase . doc\",0\n\"Subject: rabi de phone interview  shirley ,  let ' s act on it .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 07 / 07 / 2000  05 : 07 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  zimin lu  07 / 07 / 2000 01 : 51 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : rabi de phone interview  vince ,  we had phone interview with rabi de . my impression is good . we should invite  him for a formal interview .  he is a hands on person with wide range of experience ( energy financing ,  derivatives trading , hedging , etc ) .  he communicates very well and expressed interest in financial engineering &  modeling .  zimin\",0\n\"Subject: re : exotic options presentation  vince  the presentation is riddled with errors , which were pointed out at the  conference . they ' re only there because i was working on the presentation at  midnight !  i ' ll send a new version as soon as it ' s ready .  steve  vince j kaminski  09 / 28 / 2000 04 : 35 pm  to : steven leppard / lon / ect @ ect  cc :  subject : re : exotic options presentation  steve ,  thanks a lot .  vince\",0\n\"Subject: time sensitive : executive impact & influence program survey  * * * reminder * * *  we have not yet received your feedback . your input is  very valuable and to be included in the participant ' s  summary report , it must be received no later than close  of business on wednesday , october 25 . without your  feedback , the participant may not receive a summary  report or be eligible to attend the program .  * immediate action required - do not delete *  executive impact & influence program  dear vince kaminski ,  as part of the executive impact and influence program ,  each participant is asked to gather input on the  participant ' s own management styles and practices as  experienced by their immediate manager , each direct  report , and up to eight colleagues / peers .  you have been requested to provide feedback for a  participant attending the next program . your input  ( i . e . , a self assessment , if you are a participant in  this program , manager assessment , direct report  assessment , or colleague / peer assessment ) will be  combined with the input of others and used by the  program participant to develop an action plan to  improve his / her management styles and practices . if  you are providing feedback as a manager of the  participant , please note that your feedback will be  identified in the summary report .  it is important that you complete this assessment no  later than close of business on wednesday , october 25 .  to begin the online administration process , you will  need the following internet address and password ( s ) .  note : if you are providing feedback for more than one  person , each password and participant name is  individually listed below .  open your internet browser e . g . , internet explorer or  netscape navigator , and please type or copy the url  address below into your internet browser ( please do not  go through lotus notes ) :  www . fsddatasvc . com / enron  ph 9 jbm ( mike roberts )  if you experience technical problems , please call  dennis ward at fsd data services , 713 - 942 - 8436 . if you  have any questions about this process , you may contact  debbie nowak at enron , 713 - 853 - 3304 , or christi smith  at keilty , goldsmith & company , 858 - 450 - 2554 .  thank you for your participation .\",0\n\"Subject: super saturday changes - update  i am sure that all of you have seen the notice sent this morning from  charlene jackson , managing director of the associate and analyst program . i  wanted to follow up with a note to all campus team mds and it team members to  clarify any confusion surrounding super saturdays and technologist recruiting  for the global technology track . although the global technology track is  part of the analyst and associate program - we will not be participating in  the super saturday events listed below . technologist candidates will be  brought into the office for a friday office visit .  super saturdays were first initiated for commercial analyst and associate  recruiting because many enron representatives were not able to leave their  desks while the market was open during the workday . bringing candidates in  during the weekend works well in this situation because enron representatives  can fully participate in the office visit and candidates can still see the  office .  however , many technology vps have suggested that seeing enron \"\" alive and in  action \"\" during the week would be a high selling point for technologist  candidates . therefore , we have opted to have technology office visits on  fridays . the first three office visits are listed below :  november 10 th  december lst  january 19 th  we will be sending out more detailed information on how you can become more  involved with technology office visits . i apologize for any confusion .  please feel free to contact me with any questions or comments . 3 - 3589 .  thanks ,  ashley  - - - - - - - - - - - - - - - - - - - - - - forwarded by ashley baxter / corp / enron on 10 / 25 / 2000  08 : 56 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : charlene jackson 10 / 24 / 2000 09 : 20 pm  sent by : enron announcements  to : all enron employees north america  cc :  subject : super saturday changes  the recruiting season has officially begun . the first super saturday weekend  is the weekend of october 27 th and 28 th . we have undergone a rigorous  interview process on campus , which will allow us to focus on \u0001 however , we are still in need of interviewers for each  of the super saturdays . please respond with your willingness to interview  at : http : / / axis . enron . com / notice / ssinvite . asp  ( when selecting dates please avoid selecting to interview candidates who  attend the schools for which you are a team member ) .  we thank you in advance for your participation and support of the program .\",0\n\"Subject: re : power flow software question  thanks . i ' ll let walter know if he calls . i just wanted to make sure things  were done correctly .  martin  vince j kaminski @ ect  10 / 10 / 00 03 : 25 pm  to : martin lin / contractor / enron communications @ enron communications @ enron  cc : vince j kaminski / hou / ect @ ect , walter coffer / hou / ect @ ect  subject : re : power flow software question  martin ,  it ' s ok for walter to use remaining hours . no real cost to enron ,  just the benefits .  vince  from : martin lin @ enron communications on 10 / 09 / 2000 03 : 06 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : power flow software question  walter coffer contacted me regarding whether we still have power flow  software available . we do have almost all of a 200 execution - hour license  for pss / e , which was purchased for the transmission congestion project last  summer . this was purchased by east power trading . should walter want to use  the remaining hours , who has authority to grant this ?  thanks ,  martin\",0\n\"Subject: california update 1 / 31 / 01  please do not hesitate to contact robert johnston ( x 39934 ) or kristin walsh  ( x 39510 ) with additional questions .  executive summary  an announcement could be made as early as today regarding the first wave of  long - term contracts ( price and term ) .  the threat of bankruptcy is significantly diminishing as davis hatches a plan  to 1 ) pass on \"\" court ordered rate increases \"\" and 2 ) issue revenue bonds .  audit results are in and questions loom about the amount of funds transferred  to parent companies . davis is expected to use the threat of \"\" endless  appeals \"\" in courts and a possible ballot initiative in november to keep the  pressure on the parent companies to pay a share of the utility debt , as well  as to limit the scope of the rate hikes .  davis hopes that a court ruling in favor of the utilities would provide him  with the political cover he needs to pass on rate hikes to california  consumers and avoid utility bankruptcy .  davis walking a fine line with consumer advocacy groups . if there is a  ballot initiative in november to challenge the expected court - ordered rate  hikes , it could be disastrous for investor confidence in the state .  legislation and bail out  bill ablx was heard for several hours in the senate appropriations  yesterday . issues still remain regarding the tiered rate structure ,  specifically for communities that have harsh climates . however , the bill has  received support from almost everyone including consumer groups . the bill  is expected to pass sometime today . tim gage , ca director of finance said  davis supports all the provisions in ablx and expected to sign .  bill abl 8 x was not heard in the assembly yesterday but is expected to be hear  today . in committee hearings monday , the dwr testified it is spent all of  the $ 400 m and were spending $ 45 m / day in the spot market to buy power .  according to sources with direct access to governor davis , the on - going court  battle , as discussed below , is viewed as an excellent opportunity for a  settlement . davis recognizes that 1 ) the expected court ruling in the cpuc  case will likely authorize the utilities to increase rates charged to  california rate payers ; 2 ) despite that ruling , the state government has the  ability to delay the eventual reward of that order long enough to cripple the  two utilities unless they come to terms . thus , davis believes that  california consumers cannot avoid getting hit with higher electricity  charges , but he plans to use the threat of an appeal ( and a possible ballot  initiative ) to limit the amount of the rate hikes .  a plan to exempt the lowest income , smallest consumers from any rate increase  and to concentrate rate increases among consumers using 130 % of a baseline  usage rate was gaining serious momentum last night in sacramento . that would  still hit about one half of all consumers ( since the \"\" baseline \"\" is set at 60 %  of average consumption ) , but it is \"\" progressive \"\" in a politically important  sense .  making this work would require solving a minor crisis that erupted last night  when pg & e admitted they had stopped reading electricity meters for many  customers and were estimating their bills based on previous usage rates .  the company ' s defense ( they had laid off meter readers to conserve cash ) was  met with widespread derision as consumer advocates pointed out the estimation  policy conveniently allowed the company to charge more despite serious  efforts by californians to use less electricity . \"\" every time you think  there ' s a moment when these utilities will not embarrass themselves ,  something like this happens , \"\" one legislator moaned .  long - term contracts  a second key to keeping the eventual rate increases down lies in the  negotiations now almost complete for the first wave of long - term power buying  contracts davis initiated earlier this month . the first wave of those  contracts will be announced perhaps as early as today and they will be  surprisingly positive , according to officials in the talks . \"\" we got a series  of good offers in those initial proposals . and some not so good ones , \"\" one  official told our source . \"\" the idea is to announce the results of the first  contract talks with the good guys and then go back to the others and say ,  ' you want in on this with these terms ? ' we think we ' ll eventually shake  loose a lot of supply with this strategy . \"\"  bankruptcy  because of these new dynamics , there is improved market confidence that  california will emerge from the current energy crisis without bankruptcy for  socal edison and pg & e , even as they are set to miss another round of payments  to creditors and suppliers today ( remember , there is a standstill agreement  among creditors not to ask for accelerated payment until feb . 13 ) .  we believe that sense of optimism will be given an even more credible boost  by the court case in front of us district judge ronald s . w . lew in los  angeles , which is likely to mushroom into the kind of political cover for  elected officials that make a settlement possible by the end of next week , at  the latest . in fact , without that political cover it would be impossible to  square all the various circles of this crisis .  audit results and ballot initiatives  markets , bush administration officials , and perhaps utility companies  themselves are underweighting the possibility that citizens groups will  launch a successful ballot initiative in the fall of 200 l to bring all  electricity generation back under state control . the threat of a proposition  initiative mounted as the two audits of the utility companies ordered by the  california public utilities commission released in the last 48 hours  confirmed two seriously damaging points we have been warning about since  mid - january . first , the audit of socal edison confirmed that $ 2 billion of  the debt the utility claims it owes to energy suppliers is actually owed to  itself through its corporate holding structure that generates and sells  power . second , it confirmed that edison electric paid nearly $ 5 billion in  profits to the holding company which then used that money to buy back its  stock and increase dividends in an effort to keep its stock price up even  while it was going on a debt - issuing binge .  the audit of pg & e released late last night was even more damaging : pg & e  management was sharply criticized for poor decisions in failing to react to  \"\" clear warning signs of an approaching energy crisis \"\" by not making deep  spending cuts , \"\" including scaling back management salaries . \"\" the auditors  also questioned the utility ' s decision to funnel some $ 4 . 7 billion of its  profits since deregulation into the coffers of its parent holding company ,  which then used the cash mostly to pay dividends and buy back stocks .  \"\" basically , they took the money and ran , \"\" as state senate speaker burton put  it yesterday .  what appears to be governor gray davis ' grudging acceptance of reality is  actually a highly evolved effort to produce a solution that provides enough  rate hikes / taxpayer subsidy to help solve the current crisis without  triggering a new - - and far more damaging - - burst of populist outrage among  a voter base that still thinks the utility companies are basically making  this all up . there is no doubt that this use of money by socal edison and  the debts it owes to itself are perfectly legal and in keeping with the  spirit of the 1996 deregulation law , but that is irrelevant in popular  political terms . were it not for the political cover potentially afforded by  the court case discussed below , these audits would make settlement extremely  difficult .  keeping that anger from exploding into a ballot initiative this fall is key  to understanding the very complex game that davis , his advisers and senior  legislators are now playing . a ballot initiative would be a potential  disaster since it would almost certainly be aimed at re - establishing full  public control over the electric utilities . even if the state and utilities  successfully challenged such an initiative in court it would be years before  that victory was clear and it would freeze all new private investment during  that prolonged period . that ' s something california cannot afford as  businesses would be moving out and new ones failing to relocate .  court battle  thus , legislators are listening in horror as they hear the ugly details of  the court case in los angeles that socal edison and pg & e are likely to win in  mid - february . the court will most likely grant the two utilities $ 12 . 7  billion in relief and that the cost would fall immediately on the shoulders  of consumers who would see bills rise by at least 30 % , california politicians  could see the emergence of the one thing everyone has needed since the start  of this extended drama : political cover . davis will then have to rely on his  political and negotiating skills to pressure the parent companies of the  utilities to pass on something less than the full $ 12 . 7 billion debt .  pg & e and socal edison have already won round one of a legal battle designed  to let them raise electricity rates enough to recover all of the debt they  have accumulated since august last year when the puc refused to let them  raise prices even as electricity prices soared . the court said the 1996  deregulation law was crystal clear - - when the two utilities had repaid  so - called \"\" stranded costs , \"\" they were free to begin charging whatever they  needed to charge consumers to cover their cost of acquiring power .  although the utilities won this case , the judge stayed his order until  february 14 th at the state government ' s request . as that deadline  approaches , an intense new negotiating round is under way . on the one hand ,  political officials know they have the ultimate political cover for higher  electric prices ( \"\" the courts made me do it \"\" ) , but on the other hand , they  also know that immediate and full compliance with that court order would  force electricity rates up by about 40 % on top of natural gas bills that have  soared by about 300 % since last year . utility companies are playing this  card aggressively in negotiations about the scope and shape of the final  bailout . \"\" we ' ll just wait until the court puts the order into effect in  mid - february then even if we are in bankruptcy we will emerge quickly and  easily . \"\"  one tactic the state political officials are using , in order to force a  settlement , is the threat of keeping the law suit tied up in court for the  next couple of years . one political official pointed out that they could  keep the utilities from receiving their money this year , next year or perhaps  even the year after . \"\" sure , we tell them , they will probably win in court and  get that money . eventually . we are making them well aware that unless we  have a settlement we will appeal that court ruling all the way to the supreme  court and keep them tied up for the next two years at least . we don ' t think  the creditors will be quite that patient . \"\"\",0\n\"Subject: it support for research weather group  mark ,  first let me say thank you for your assistance in making it possible for  meteorologists tony hamilton and stephen bennett to hit the groung running  this week when they came over to london from houston . when we came into our  offices in houston monday morning , tony and steve had already gathered and  analyzed their data , prepared reports and were ready for the avistar  briefings ! the cross - atlantic communication and data - sharing and manipulation  went seamlessly ! we have great expectations for continued synergy with this  new set - up .  the research weather group is excited about our expanded responsibilities in  london . we are committed to maximizing the value added we can provide to the  weather derivatives , crude & products , uk trading , continental power , and  analytics efforts . we are , however , also extremely dependent on computers  and communication , associated software and peripherals . plus the datastreams  we access and the reports we generate are very time - critical in their value  to traders . we need a very stable environment , with reliable back - up and  24 - hour support to fulfill our commitments to providing the trading operation  with timely , never - fail research and information flows .  so , thanks again , and please do whatever you can to continue this high level  of support by passing this letter of praise and thanks to your team , and show  them our appreciation for your efforts .  mike roberts\",0\n\"Subject: re : convergence of the research model  i was curious about the accuracy of our credit reserve model as a function of  the  number of simulations we use . this question , i think , is not so important  when we  calculate credit reserve , because the assumptions underlying our model are  pretty  rough anyway ( here i mean the assumptions regarding price processes ,  correlations , etc . )  this question becomes more essential when we talk about calculating  sensitivities of the  credit reserve to various factors . when the magnitude of the sensitivity is  comparable  to the accuracy of calculation of the credit reserve , what is the accuracy of  such sensitivity ?  i performed a numerical experiment where i calculated the expected loss  for a simple portfolio with one counterparty ( sithe ind power ) for different  number of simulations ( 10 , 100 , 1000 , 10000 , 100000 ) using old research  credit model .  you can see how the result converges and the relative error ( compared to the  result for 100000 simulations which is assumed to be the most accurate ) in  the  attached file .  tanya .\",0\n\"Subject: monday 4 th september 2000  > monday 4 th september 2000  >  > the monte carlo rendez - vous reporter from reactions , in association with  > guy carpenter [ http : / / www . guycarp . com ] . simply click on the link next to  > each headline to read the full story .  >  > top stories of the day :  >  > haag ' s rendez - vous curtain call  > http : / / www . reactionsnet . com / conferences / viewstory . asp ? id = 666  >  > how lothar and martin changed the european landscape  > http : / / www . reactionsnet . com / conferences / viewstory . asp ? id = 669  >  > also :  > holocaust haunts munich re  > http : / / www . reactionsnet . com / conferences / viewstory . asp ? id = 668  > movie financing - mind the gap  > http : / / www . reactionsnet . com / conferences / viewstory . asp ? id = 670  > uk insurers commit legal suicide  > http : / / www . reactionsnet . com / conferences / viewstory . asp ? id = 672  > monaco claim victory  > http : / / www . reactionsnet . com / conferences / viewstory . asp ? id = 674  > swiss re enjoys life in the us  > http : / / www . reactionsnet . com / conferences / viewstory . asp ? id = 667  > yasuda and dai - ichi consider merger  > http : / / www . reactionsnet . com / conferences / viewstory . asp ? id = 671  > reliance go it alone in india  > http : / / www . reactionsnet . com / conferences / viewstory . asp ? id = 673  >  >  > please visit http : / / www . reactionsnet . com for all the latest news from the  > world ' s largest insurance and reinsurance conference .  >  > alternatively , you can read these stories on the official rendez - vous  > website at http : / / www . rvs - monte - carlo . com  >  >  > book of the industry :  >  > reinsurance  > fourth edition of professor robert l carter ' s industry - standard textbook .  > https : / / ecommerce . waterside . net / reactions / reins _ fourth . asp  >\",0\n\"Subject: re : interview schedule change for bruce james  sean ,  i think we should invite bruce for additional interviews . i think that he  does not have  the skills required in my unit , but he could contribute in other areas .  here is the list of potential interviewees :  john echols  ted murphy  mark ruane  vince  sean grady @ enron  07 / 26 / 2000 02 : 17 pm  to : grant masson / hou / ect @ ect , pinnamaneni krishnarao / hou / ect @ ect , william s  bradford / hou / ect @ ect , vince j kaminski / hou / ect @ ect , stinson  gibner / hou / ect @ ect , zimin lu / hou / ect @ ect , bjorn hagelmann / hou / ect @ ect , david  port / market risk / corp / enron @ enron  cc : toni graham / corp / enron @ enron , shirley crenshaw / hou / ect @ ect , rita  hennessy / na / enron @ enron , dorothy youngblood / hou / ect @ ect  subject : interview schedule change for bruce james  attached please find the interview packet for the above - referenced person .  the interview will happen thursday july 27 , 2000 . please print all three  documents for your hard copies . if you have any questions , or conflicts of  schedule , please do not hesitate to contact me .  sean grady  58701\",0\n\"Subject: london visit  hi maureen  how many days are you coming over for ? in addition to the couple of days  you ' ll be spending at brook hunt , i can see one further day with our metals  people , and one extra day with rodrigo ( from rac ) looking at our inflation  model . do you have 4 + days ?  all the best  steve\",0\n\"Subject: re : 2001 fma european conference  that ' s fine . i didn ' t want to change anything until i heard from you guys .  see ya !  john  at 11 : 06 am 11 / 28 / 00 - 0600 , you wrote :  >  > john ,  >  > thanks . stinson will be able to join us for dinner . he is opting out of  > the paper due to his big workload but we can get his perspective on  > the last 8 years he spent at enron .  >  > vince  >  >  >  >  >  > \"\" john d . martin \"\" on 11 / 28 / 2000 09 : 44 : 17 am  >  > to : vkamins @ enron . com  > cc :  > subject : 2001 fma european conference  >  >  > here ' s the info on the european conference . just for your files .  >  > john  >  > > date : tue , 28 nov 2000 08 : 40 : 39 - 0500  > > from : karen wright  > > subject : 2001 fma european conference  > > to : kwright @ fma . org  > > x - mailer : mozilla 4 . 5 [ en ] ( win 98 ; i )  > > x - accept - language : en , pdf  > >  > > 2001 fma european conference  > >  > > the fifth annual european meeting of the financial management  > > association international ( fma ) will be held may 31 and june 1 , 2001 at  > > the hotel sofitel ( rive gauche ) in paris , france . fma ' s european  > > meeting brings together academicians and practitioners with interests in  > > financial decision - making . the meeting provides a forum for presenting  > > new research and discussing current issues in financial management ,  > > investments , financial markets and institutions , and related topics .  > > keynote addresses and other special presentations will be held in  > > addition to research paper presentations .  > >  > > paper submissions  > > research papers . the program includes traditional research paper  > > presentations . criteria used to determine the suitability of these  > > papers for the program include the nature of the research problem ,  > > implications of the proposed research , the quality of the research  > > design , and the expected contribution of the research to the  > > literature . please note that the purpose of these sessions is to  > > present new and unpublished research .  > >  > > submission fee . there is no submission fee for the fma european  > > conference .  > >  > > submissions . please follow these steps :  > > complete the presentation form that can be downloaded at  > > www . fma . org / paris . htm . carefully select the subject code on the  > > presentation form that most closely describes your research . the code  > > number you select will be used to select reviewers for your proposal .  > >  > > send six ( 6 ) copies of your completed paper , along with the completed  > > presentation form , to the fma office ( financial management association ,  > > university of south florida , college of business administration , tampa  > > fl 33620 - 5500 , usa ) .  > > please note that only completed papers will be accepted for the fma  > > european conference review process .  > >  > > the paper submission deadline is friday , december 1 , 2000 .  > >  > > you will receive an electronic confirmation of your submission within  > > six weeks of its receipt by the fma office , and you will be notified of  > > the results of the reviewing process by the middle of february , 2001 .  > >  > > competitive paper awards  > > the financial management association international is pleased to  > > announce that four ( 4 ) $ 1 , 500 awards will be presented in conjunction  > > with the 2001 fma european conference . the \"\" young scholars \"\" award will  > > be presented to the best paper authored by a ph . d . student ( or  > > equivalent ) or recent ph . d . ( or equivalent ) graduate . three additional  > > $ 1 , 500 awards will be presented to the papers deemed \"\" best of the best \"\"  > > by the members of the 2001 fma european conference competitive paper  > > awards committee . please note that these awards will be made only if , in  > > the opinion of the fma awards committee , a paper warrants such a  > > decision . the decisions of the fma awards committee are final .  > >  > > accepted papers . if your proposal is accepted , the version of the paper  > > you submit will be sent to its discussant as soon as he / she is  > > identified . you are obligated to send the final version of your paper to  > > the discussant and session chair by april 27 , 2001 . you also are  > > obligated to present your paper in a professional manner at the assigned  > > fma program session .  > >  > > the collegiality of the meeting provides a very special opportunity for  > > participants to share their work and to hear about the work others are  > > doing . thus , individuals whose papers are accepted for presentation at  > > the 2001 fma european conference will be expected to either chair a  > > session or discuss a paper .  > >  > > program co - chairs  > >  > > francois degeorge  > > hec paris  > > 1 rue de la lib , ration  > > 78351 jouy en josas cedex  > > france  > > 33 - 1 - 39 - 67 - 72 - 34 ( ph )  > > 33 - 1 - 39 - 67 - 94 - 34 ( fax )  > > degeorge @ hec . fr  > >  > > kent womack  > > dartmouth college  > > amos tuck school  > > hanover , nh 03755  > > 1 603 646 2806 ( ph )  > > 1 603 646 1308 ( fax )  > > kent . womack @ dartmouth . edu  > >  > > additional opportunities for participation  > >  > > session chairperson or discussant . if you wish to serve as the  > > chairperson of a session or paper discussant , but are not submitting a  > > paper , please complete the participation form which can be downloaded  > > from www . fma . org / paris . htm . submit the completed form to the fma office  > > by december 1 , 2000 . session organization will take place in march ,  > > 2001 .  > >  > > deadline summary  > >  > > completed papers : december 1 , 2000  > > chairperson / discussant requests : december 1 , 2000  > >  > >  > >  > john d . martin  > carr p . collins chair in finance  > finance department  > baylor university  > po box 98004  > waco , tx 76798  > 254 - 710 - 4473 ( office )  > 254 - 710 - 1092 ( fax )  > j _ martin @ baylor . edu  > web : http : / / hsb . baylor . edu / html / martinj / home . html  >  >  >  >  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: ( no subject )  stinson ,  henwood can help us with the project in our time frame ( end of january ) . the  henwood person who will coordinate the project is david branchcomb , located  in london . he will have to involve the henwood ? manager for asia , who works  out of australia .  i told him that you would call him wednesday morning on his cell phone to set  up a conference call later the same day with the guy in australia . given time  difference it may happen late afternoon .  they expect that we shall give them the specs of the project . it makes sense  to involve sandeep at the conference call : he will be very specific about our  needs . i sent you his coordinates in an earlier message . sandeep may have to  come to the office : i don ' t know if anita knows how to set up a conference  call .  david ' s phone numbers :  44 207 242 8950  44 787 942 5375 ( cell ) .  i may be at the office in the morning for an hour or two .  vince\",0\n\"Subject: tiger evals - attachment  tiger hosts :  i understand that some hosts have had problems accessing the database to  complete the tiger team evaluations . i apologize for the difficulties and  have attached the form for your convenience . please feel free to return it  electronically or by fax ( 215 - 573 - 5727 ) .  thank you again for your time .  donna piazze  program director  field application project  the wharton school  univ . of pennsylvania  215 . 573 . 8394 fax 215 . 573 . 5727  fap @ management . wharton . upenn . edu  piazze @ wharton . upenn . edu  >  - tiger team host evaluation . doc\",0\n\"Subject: re : ken lay ' s speech  the $ 1 . 3 trillion tax cut which is frequently quoted by the press is over 10  years , the $ 460 tax cut below is over five years .  maureen raymond  01 / 02 / 2001 12 : 44 pm  to : alhamd alkhayat / na / enron @ enron , steven j kean / na / enron @ enron , margaret  carson / corp / enron @ enron  cc : vince j kaminski / hou / ect @ ect  subject : ken lay ' s speech  i looked into the proposed tax cut by george w . bush . on his website he  proposes a $ 460 billion tax cut over five years .  the $ 213 billion \"\" energy tax \"\" imposed from 1999 to 2001 by higher energy  prices , is roughly half of bush ' s proposed tax cut .  maureen\",0\n\"Subject: your approval is overdue : access request for  tom . halliburton @ enron . com  this request has been pending your approval for 9 days . please click  approval to review and act upon this request .  request id : 000000000003619  request create date : 9 / 27 / 00 9 : 18 : 21 am  requested for : tom . halliburton @ enron . com  resource name : unlisted application / software  resource type : applications\",0\n\"Subject: vince ,  here is why analytical var does not work for non - normal variables .  rakesh reviewed this argument as well .  tanya\",0\n\"Subject: kin tso - ut candidate for direct hire  vince ,  just wanted to follow up on our conversation yesterday regarding kin tso .  charlene actually called kin yesterday to let him know that your group was  interested in him as a direct hire and would be contacting him this week . as  we discussed , kin was told that his quantitative skills were a much better  fit for your group instead of our rotating associate program . we let him  know that the associate program would not be making him an offer but he is  being considered for a direct hire . kin was receptive and is looking forward  to hearing from you . we will consider this issue closed from the associate  and analyst program . we hope that you might find a direct hire fit for him  in your area . if you have any additional questions , please let me know .  thanks so much .\",0\n\"Subject: bachelier finance society congress , crete 2002  dear dr kaminsky ,  on behalf of the scientific committee of the 2 nd world congress of the  bachelier finance society , it is my pleasure to invite you to give one of  the plenary lectures .  the bachelier finance society came into being in 1996 by the initiative of  mathematical finance researchers who found the need to create an  organization where academia and practitioners would meet and exchange  ideas spanning on the crossroads between finance , economics , econometrics ,  insurance and mathematics .  the conference is the society ' s second biannual meeting and it will take  place in the island of crete , from june 12 to june 15 , 2002 .  the other members of the scientific committee are g . constantinides ,  m . davis , f . delbaen , d . duffie , h . foellmer , m . jeanblanc and e . platen .  either myself or any other member of the committee would be happy to  discuss with you about the conference and the society .  crete is one of the most beautiful greek islands . the conference will take  place in a resort in xersonissos , a picturesque site close to irakleion  and knossos . the airfare ( economy class ) and all local expenses ( lodging ,  meals and local transportation ) will be covered .  we will all be honored by your presence .  sincerely ,  thaleia zariphopoulou  chair of the scientific committee  v . n . neuhaus professor  dpts of mathematics and msis  the university of texas at austin \",0\n\"Subject: london research group  john ,  i am writing to you regarding the management of the london research group .  as you know , dale surbey , who was managing the london unit of the research  group ,  is moving to ebs . dale did a terrific job helping me to develop the pool of  talent we have currently  in london .  given that dale is likely to be transfered to houston , it ' s time  to nominate one member of the research group for a management position .  my recommendation is steve leppard . steve emerged not only as the most  technically qualified member of the group but also as a natural leader ,  highly  respected by his peers and internal customers . steve has a very high energy  level  and is very efficient as a manager and as coach of new talent .  his promotion is likely to cause anjam ' s departure form enron . i value  technical  skills of anjam , but in spite of my loyalty to him , don ' t think he is the  same caliber  as steve . however , i would not like to lose him and think about moving him to  houston  for 2 years . i think that the opportunity to work in houston , would be a  sufficient  incentive to keep him in enron . by the way , his performance feedback has  greatly improved .  please , let me know what you think .  vince\",0\n\"Subject: re : baylor professors lunch  beth ,  i would appreciate it . see you at 11 : 45 tomorrow .  vince  from : beth miertschin 07 / 11 / 2000 03 : 05 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : baylor professors lunch  yes vince , i will drive and you are welcome to ride with me if you would  like . i can meet you in the lobby about 11 : 45 tomorrow .  beth  vince j kaminski  07 / 11 / 2000 02 : 51 pm  to : beth miertschin / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : baylor professors lunch  beth ,  thanks . you can always track me down on my cell phone  713 410 5396 in case i am mia .  also , will you drive ? please , let me know .  vince  from : beth miertschin 07 / 11 / 2000 02 : 26 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : baylor professors lunch  try this vince and i ' m sorry !  beth  - - - - - - - - - - - - - - - - - - - - - - forwarded by beth miertschin / hou / ect on 07 / 11 / 2000  02 : 26 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : beth miertschin 07 / 11 / 2000 09 : 40 am  to : mitchell taylor / corp / enron @ enron , bill w brown / hou / ect @ ect , vince j  kaminski / hou / ect @ ect  cc : shelly jones / hou / ect @ ect , geynille dillingham / hou / ect @ ect , sheila  pardo / hou / ect @ ect  subject : baylor professors lunch  the lunch with the baylor professors will be tomorrow , july 12 th , at  damian ' s . the reservation is for 12 : 00 pm and you are welcome to meet us in  the lobby around 11 : 45 or meet us at the restaurant . please let me know  where we should look for you so we don ' t inadvertently leave you .  i look forward to seeing you all then and thanks for your support and  participation .  beth miertschin  - - - - - - - - - - - - - - - - - - - - - - forwarded by beth miertschin / hou / ect on 07 / 11 / 2000  09 : 27 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : beth miertschin 07 / 07 / 2000 05 : 01 pm  to : mitchell taylor / corp / enron @ enron , bill w brown / hou / ect @ ect , vince j  kaminski / hou / ect @ ect  cc : shelly jones / hou / ect @ ect , geynille dillingham / hou / ect @ ect  subject : baylor professors lunch  on wednesday , july 12 dr . john martin , chair of finance department , and dr .  bill petty , chair of entrepreneurship department , of baylor university will  be at the enron building to discuss future sponsorship of the texas finance  festival and to talk about recruiting .  they have asked me to invite all of you to lunch with us on that day so that  they might have a chance to visit with you all as well . please let me know  if you are available for lunch on july 12 at noon .\",0\n\"Subject: customer profiling meeting  bob shults is scheduled to be in atlanta , ga on the 17 th of march and would  like to reschedule the \"\" customer profiling meeting \"\" , to tuesday , march 21 st  at t 1 : 30 p . m . , location to be announced . if you are unable to attend please  let me know .  lydia  3 - 9975\",0\n\"Subject: meeting confirmed : mit / aa new value research lab  this will confirm the meeting requested below . please note , all invitees are  not available , but the confirmed meeting time is the best time for most of  the invitees .  date : thursday - august 10  time : 11 : 00 a to noon  place : conference room 4741  confirmed attendees : rick causey  marie hejka  steve kean  amy oberg  mark palmer  mark ruane  thanks for your help , everyone .  - - - - - - - - - - - - - - - - - - - - - - forwarded by carol moffett / hou / ees on 08 / 03 / 2000 04 : 03  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron energy services  from : carol moffett 08 / 02 / 2000 03 : 44 pm  phone no : 713 - 853 - 6658 phone  888 - 782 - 3518 pager  eb 613 b  to : ginger dernehl / hou / ees @ ees , shirley crenshaw / hou / ect @ ect , karen k  heathman / hou / ect @ ect , sharron westbrook / corp / enron @ enron , laura  gutierrez / hou / ect @ ect , laura valencia / corp / enron @ enron , patty  pennington / enron communications @ enron communications  cc : steven j kean / hou / ees @ ees , vince j kaminski / hou / ect @ ect , rick  buy / hou / ect @ ect , richard causey / corp / enron @ enron , mark ruane / hou / ect @ ect ,  mark koenig / corp / enron @ enron , mark palmer / corp / enron @ enron , amy  oberg / hou / ees @ ees , marie hejka / corp / enron @ enron  subject : meeting request : mit / aa new value research lab  good afternoon . i am assisting amy oberg with setting up a meeting among the  individuals listed below . would you be so kind as to review their calendars  and let me know if they are available during any of the suggested meeting  times .  meeting topic : mit / aa new value research lab  meeting purpose : follow up to discussion from 8 / 1 / 00 ; rick causey to brief  group on  conversations w / aa regarding \"\" where they intend to go with this effort \"\" .  attendees : steve kean  vince kaminski  rick buy  rick causey  mark ruane  mark koenig  mark palmer  amy oberg  marie hejka  suggested meeting dates and times :  thursday - august 10 anytime between 8 : 00 a and 10 : 00 a  thursday - august 10 11 : 00 to noon  friday - august 11 anytime between 8 : 00 a and 9 : 30 a  friday - august 11 1 : 00 p to 2 : 00 p  thank you .\",0\n\"Subject: prc meeting  hello everyone :  it looks like friday , december 8 th is the day that you will have the prc  meeting listed below .  mark your calendars - details later .  thanks !  shirley  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 10 / 30 / 2000  01 : 23 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  norma villarreal  10 / 28 / 2000 10 : 47 am  to : shirley crenshaw / hou / ect @ ect , stinson gibner / hou / ect @ ect , mike a  roberts / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , pinnamaneni  krishnarao / hou / ect @ ect , maureen raymond / hou / ect @ ect , zimin lu / hou / ect @ ect ,  osman sezgen / hou / ees @ ees  cc : vince j kaminski / hou / ect @ ect , ramona perkins / corp / enron @ enron  subject : performance  the research group will be conducting a performance review committee ( prc )  meeting in early december . all vice presidents , sr . directors and directors  should attend . shirley crenshaw will be contacting you to schedule the prc  meeting date and time . these are the current available dates :  december 4 , 8 .  in preparation for the meeting please submit recommended rankings and  promotions to me based on employee feedback by november 29 , 2000 . please  included analyst / associates ,  if you have any questions please feel free to call me or ramona perkins at  x 58165 .  here is some helpful information for you as we proceed throughout he  performance evaluation process  october 25 , 2000 - november 17 , 2000 ( 3 1 / 2 weeks ) :  employees will provide a list of accomplishments occurring after june 1 , 2000  to their supervisors  employees will receive an email advising of access and passwords to pep  system ( 10 / 25 )  employees identify selected reviewers on line and will submit to supervisor  supervisor will add and / or delete reviewers in order to capture a full 360  degree feedback  supervisor will submit and reviewers will receive an e : mail advising them of  their reviewer role  reviewers can decline or complete the review  once system closes on november 17 , 2000 ,  prepare for research prc meeting ( print consolidate review , pre rank  employees , identify candidates for promotion and submit to hr )  important dates ( i will notify you of any changes ) :  september 30 , 2000 only employees before 10 / 1 / 00 will be included for pep and  bonuses  october 15 , 2000 whomever is the supervisor for employees on 10 / 15 / 00 will be  responsible for their reviews  october 25 , 2000 pep system opens ( http : / pep . corp . enron . com )  october 30 - 31 , 2000 pep overview session at doubletree  november 17 , 2000 pep system closes for feedback  november 23 - 24 thanksgiving holiday  november 29 , 2000 provide hr with pre - rankings and promotions  december tbd , 2000 research prc  january 31 , 2001 all reviews must be complete , signed and submitted to hr  norma  sr . hr representative  x 31545\",0\n\"Subject: customer profiling meeting - amendment  bob shults is scheduled to be in atlanta , ga on the 17 th of march and would  like to reschedule the \"\" customer profiling meeting \"\" , to tuesday , march 24 st  at t 1 : 30 p . m . , location to be announced . if you are unable to attend please  let me know .  lydia  3 - 9975\",0\n\"Subject: re : evaluation for barbara pierce  patricia ,  barbara pierce did not show up on my list of people asking for a review .  maybe a glitch in the system .  vince  patricia payton @ enron  11 / 22 / 2000 08 : 56 am  to : vince . kaminski @ enron . com  cc :  subject : evaluation for barbara pierce  thank you for agreeing to interview barbara pierce . unfortunately we are  unable to proceed because we have not received all of her evaluations . can  you please fax the evaluation to me at your earliest convenience at ( 713 )  646 - 3441 and send the original via interoffice mail to ebl 171 .  thanks again ,  patricia  ext . 54903\",0\n\"Subject: * special notification * aurora version 5 . 5 release , what ' s new ?  iv  friends :  i spoken with most of you over the last few weeks regarding the new  version of aurora due to be released tomorrow . we ' ve broken a lot of  new ground with this version , and this version will serve as our  official launch into the eastern u . s . we ' ve worked closely with our  eastern customers , and responded to the needs of the market . some of  the enhancements :  aurora software modeling enhancements :  * energy storage - resources ( pumped hydro )  * market areas : no limit on number of areas  * transmission : congestion pricing .  * price caps  * risk analysis  * modeling enhancements via vb scripting : \"\" update data \"\" capability  general capabilities  * aurora ' s run time speed improved again .  * file transfers to epis  * interface enhancements  reporting enhancements  * marginal resource reporting  * resource operations reporting  * resource stacks detail consolidated  aurora databases  * east - central aurora database - - 25 market areas modeled with 11  market areas in new york iso .  * wscc aurora database - - updated ipp resources  * ercot aurora database - updated resources  * all databases updated to use the new modeling capabilities  as aurora continues to grow , and we meet the needs of the market , we  have made several procedural changes . we continue to offer free 7 - day  demos to those companies that want to take a look at the model , and get  a brief idea of how it thinks and feels . after that 7 - day demo period  we now offer either a discount for moving into a full license , or we  offer a 60 - day trial for $ 10 , 000 . 00 - - we also now offer more options  for the licensing of the model . annual licenses are priced as follows :  single user ( 1 user / 1 pc )  $ 33 , 000 . 00  limited - use ( 1 user / multiple pcs or multiple users / 1 pc )  $ 45 , 000 . 00  two - user ( 2 users / 2 pcs )  $ 55 , 000 . 00  site license ( unlimited users / pcs excluding affiliates )  $ 79 , 000 . 00  affiliate - site ( unlimited users / pcs including affiliates )  $ 99 , 000 . 00  for additional information , please contact me , and i ' ll speak with you  about how aurora can help you in your specific operations and projects .  v . todd wheeler  sales manager  epis , inc .  ( 503 ) 722 - 2023 tel . x 210  ( 503 ) 722 - 7130 fax  www . epis . com  todd @ epis . com  >  - what ' s new - version 5 . 5 information . doc\",0\n\"Subject: akamai  kevin ,  i have followed up on your request to identify a potential hire  from akamai ( a person familiar with their technology ) . we can start  discussions with the targets in a few days .  please , let me know which unit in ebs is a potential hiring agent .  if it ' s research , who inside ebs can sponsor this position ? we have to  discuss  the responsibilities and job description .  vince\",0\n\"Subject: re : houston visit  hi vince ,  sorry that we couldn ' t meet in houston . hope your philadelphia trip was  fruitful and you didn ' t suffer from weather related flight delays on your  way back to houston . your phone message stated that you may be coming to ny  in jan . 2001 . that ' s great vkaminski @ aol . com  subject : re : houston visit  soussan ,  it seems we have planned for all contingencies .  look forward to meeting you next week .  vince  \"\" faiz , soussan \"\" on 11 / 28 / 2000 06 : 51 : 51 pm  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc :  subject : re : houston visit  vince ,  your suggested arrangement is perfect with me and i love both italian or  steak . . . the choice is yours . i really look forward to our meeting vkaminski @ aol . com  subject : re : houston visit  soussan ,  let ' s meet at westin oaks next to the reception around 6 : 30 p . m . thursday .  there are several nice restaurants within a walking distance to the  galleria .  i shall make a reservation ( is italian or a steakhouse ok ? ) .  you can reach me on thursday at my cell phone 713 410 5396 .  look forward to meeting you .  vince  \"\" faiz , soussan \"\" on 11 / 27 / 2000 04 : 37 : 30 pm  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc :  subject : re : houston visit  great ! i look forward to our dinner on thurs . 12 / 7 evening . hopefully  your  flight will be on time . . . although having watched 60 minutes last night and  suffered from a # of delays lately , let ' s hope that the \"\" weather blame \"\"  doesn ' t get in the way . it ' s best to leave me a message @ my usual work #  on thurs . , 914 253 4187 , . . . i can easily check it in houston .  i ' ll be staying @ the westin oaks in the galleria . . . any preferred place  that i can book ( & for what time ) ? ? coming over to down town won ' t be a  problem for me either .  will be great to see you again .  soussan  914 253 4187  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : monday , november 27 , 2000 12 : 10 pm  to : faizs @ texaco . com  cc : vince . j . kaminski @ enron . com  subject : re : houston visit  soussan ,  thanks for your message . it would be great to meet you when you come to  houston .  i shall be in town on december 7 , flying back from philly in the morning .  assuming that the flight is on schedule , i shall be available for dinner .  please , let me know how i can contact you on thursday , december the 7 th ,  to confirm .  look forward to meeting you .  vince  \"\" faiz , soussan \"\" on 11 / 26 / 2000 09 : 04 : 01 pm  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc :  subject : houston visit  dear vince ,  greetings from ny and hope that all is well and you had a great  thanksgiving . i ' ll be coming to houston for 12 / 6 - 12 / 7 and hope you are  available either evening for dinner . would be great to see you again and  catch up with the latest . . . i really enjoyed my visit last april , your  insights , and the risk book you gave me .  i do hope you ' re available to meet and pls let me know which evening suits  you better .  best ,  soussan faiz  texaco inc .  914 253 4187\",0\n\"Subject: re : country risk jr . economist hiring  vince ,  thanks .  - - gwyn  vince j kaminski @ ect  05 / 02 / 2001 03 : 20 pm  to : gwyn koepke / na / enron @ enron  cc : vince j kaminski / hou / ect @ ect  subject : re : country risk jr . economist hiring  gwyn ,  try to reduce the number of potential candidates to 3 , before i shall  get involved .  also , i contacted hr regarding your promotion .  the process has started .  vince  gwyn koepke @ enron  05 / 02 / 2001 03 : 09 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : country risk jr . economist hiring  thanks vince . i have the resume book from sais . i ' d like to start contacting them individually telephonically prior to meeting with maureen . i will begin to contact them and do some initial screening . would you like to participate in the initial screening ?  thanks , - - gwyn  vince j kaminski @ ect  05 / 02 / 2001 03 : 06 pm  to : gwyn koepke / na / enron @ enron  cc :  subject : re : country risk jr . economist hiring  gwyn ,  yes , please go ahead and get a resume book from sais .  vince  gwyn koepke @ enron  05 / 02 / 2001 11 : 40 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : country risk jr . economist hiring  vince ,  maureen had mentioned to me a while back that our group had approval to hire an junior / full economist . she then asked me to contact johns hopkins sais to get resumes of possible candidates . i have completed all this . but , before i begin contacting these potential candidates , i wanted to confirm with you that we have the approval to hire another person at the either junior or associate economist level .  thank you .  gwyn koepke \",0\n\"Subject: request submitted : access request for tony . harris @ enron . com  you have received this email because you are listed as an alternate data  approver . please click  approval to review and act upon this request .  request id : 000000000006452  approver : stinson . gibner @ enron . com  request create date : 11 / 2 / 00 1 : 12 : 58 pm  requested for : tony . harris @ enron . com  resource name : \\ \\ enehou \\ houston \\ common \\ research - [ read ]  resource type : directory\",0\n\"Subject: re : hello from vince kaminski at enron  great  you are on for the 23  shmuel s . oren , professor  dept . of industrial engineering  and operations research  4117 etcheverry hall  university of california  berkeley , ca 94720 - 1777  e - mail : oren @ ieor . berkeley . edu  phone : ( 510 ) 642 - 1836 or 5484  fax : ( 510 ) 642 - 1403  - - - - - original message - - - - -  from :  to :  cc :  sent : friday , september 15 , 2000 6 : 04 pm  subject : re : hello from vince kaminski at enron  >  > shmuel ,  >  > sorry for not getting back to you earlier .  > if the 23 rd of october is still open , i can make the presentation on this  > day .  >  > vince  >  >  >  >  >  >  > \"\" shmuel oren \"\" on 08 / 30 / 2000 08 : 18 : 15 am  >  > to :  > cc :  > subject : re : hello from vince kaminski at enron  >  >  > originally you mentioned october 23 so i reserved that week which is still  > open .  > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / /  > shmuel s . oren , professor  > dept . of industrial engineering  > and operations research  > 4117 etcheverry hall  > university of california  > berkeley , ca 94720 - 1777  > e - mail : oren @ ieor . berkeley . edu  > phone : ( 510 ) 642 - 1836 or 5484  > fax : ( 510 ) 642 - 1403  > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / /  >  > - - - - - original message - - - - -  > from :  > to :  > cc : ; ;  >  > sent : wednesday , august 30 , 2000 9 : 03 am  > subject : re : hello from vince kaminski at enron  >  >  > >  > > shmuel ,  > >  > > let ' s see if we can either rearrange the seminar speakers  > > or change the date of our visit to the campus . ashley baxter , our  > > coordinator is very efficient and  > > got a faculty room for a presentation on monday morning on the 16 th .  > >  > > vince  > >  > >  > >  > >  > >  > >  > > \"\" shmuel oren \"\" on 08 / 29 / 2000 05 : 37 : 33 pm  > >  > > to :  > > cc :  > > subject : re : hello from vince kaminski at enron  > >  > >  > > dear vince . i spoke too soon . apparently the seminar slot on the 16 was  > > already filled . i will see if i can switch the speaker for that week to  > the  > > following week . in any case we are on for dinner on the 16 .  > > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / /  > > shmuel s . oren , professor  > > dept . of industrial engineering  > > and operations research  > > 4117 etcheverry hall  > > university of california  > > berkeley , ca 94720 - 1777  > > e - mail : oren @ ieor . berkeley . edu  > > phone : ( 510 ) 642 - 1836 or 5484  > > fax : ( 510 ) 642 - 1403  > > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / /  > >  > > - - - - - original message - - - - -  > > from :  > > to :  > > cc : ;  > > sent : tuesday , august 29 , 2000 5 : 01 pm  > > subject : re : hello from vince kaminski at enron  > >  > >  > > >  > > > shmuel ,  > > >  > > > the date of our trip to berkeley has been set . it will be october 16 th  > > and  > > > 17 th  > > > ( monday and tuesday ) .  > > >  > > > i shall be glad to make a presentation on energy derivatives markets  > > > ( development of the markets in the us and europe , valuation  > difficulties ,  > > > enron ' s role  > > > in developing the forward markets for natural gas and electricity ) .  > > >  > > > please , let me know if this topic would be of interest to you . if this  > is  > > > the  > > > case , i shall follow with a title and an abstract .  > > >  > > > by the way , are you free for dinner on monday ?  > > >  > > > vince  > > >  > > >  > > >  > > >  > > >  > > >  > > > \"\" shmuel oren \"\" on 08 / 24 / 2000 08 : 59 : 38 am  > > >  > > > to : \"\" vince j kaminski \"\"  > > > cc :  > > > subject : re : hello from vince kaminski at enron  > > >  > > >  > > > great . our seminars are 3 : 30 to 5 pm . if it works for you please send  me  > a  > > > title and abstract .  > > > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / /  > > > shmuel s . oren , professor  > > > dept . of industrial engineering  > > > and operations research  > > > 4117 etcheverry hall  > > > university of california  > > > berkeley , ca 94720 - 1777  > > > e - mail : oren @ ieor . berkeley . edu  > > > phone : ( 510 ) 642 - 1836 or 5484  > > > fax : ( 510 ) 642 - 1403  > > > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / /  > > >  > > > - - - - - original message - - - - -  > > > from : \"\" vince j kaminski \"\"  > > > to : \"\" shmuel oren \"\"  > > > cc : \"\" vince j kaminski \"\" ; \"\" ashley baxter \"\"  > > >  > > > sent : thursday , august 24 , 2000 9 : 58 am  > > > subject : re : hello from vince kaminski at enron  > > >  > > >  > > > >  > > > >  > > > > shmuel ,  > > > >  > > > > thanks for the message . i am working with our recruiter , ashley  > baxter ,  > > > > to finalize the date of the trip . i shall shoot for october the 23 rd  > > > > if this date works for the rest of our team .  > > > >  > > > > vince  > > > >  > > > >  > > > >  > > > >  > > > >  > > > >  > > > > \"\" shmuel oren \"\" on 08 / 23 / 2000 11 : 46 : 19 am  > > > >  > > > > to : vince j kaminski / hou / ect @ ect  > > > > cc :  > > > > subject : re : hello from vince kaminski at enron  > > > >  > > > >  > > > >  > > > > dear vince .  > > > > i sent you a reply earlier this month but i haven ' t heard from you  > > about  > > > the  > > > > date of your visit . our department has a seminar every monday . if  you  > > can  > > > > schedule your visit on a monday i would like to invite you to give a  > > > seminar  > > > > which will be attended by many of our graduate students and faculty  > and  > > > will  > > > > give you an opportunity to tell them about your program . with  > > sufficient  > > > > lead - time i can advertise the seminar in the hass school to their  > > > financial  > > > > engineering students .  > > > > shmuel .  > > > > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / /  > > > > shmuel s . oren , professor  > > > > dept . of industrial engineering  > > > > and operations research  > > > > 4117 etcheverry hall  > > > > university of california  > > > > berkeley , ca 94720 - 1777  > > > > e - mail : oren @ ieor . berkeley . edu  > > > > phone : ( 510 ) 642 - 1836 or 5484  > > > > fax : ( 510 ) 642 - 1403  > > > > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / /  > > > >  > > > > - - - - - original message - - - - -  > > > > from :  > > > > to : ; ;  > > > >  > > > > sent : tuesday , august 08 , 2000 10 : 59 am  > > > > subject : hello from vince kaminski at enron  > > > >  > > > >  > > > > > shmuel ,  > > > > >  > > > > > i hope you remember me . i visited you together with aram  > sogomonian ,  > > a  > > > > > good friend of mine , a few years ago . i am currently responsible ,  > > among  > > > > > other things , for recruiting graduates with finance and / or  > technical  > > > > > backgrounds at the university of berkeley . i would be glad to give  > > you  > > > a  > > > > > call and talk more about the details of our program . my colleague ,  > > > > > ashleybaxter , from the analyst / associate program at enron would  > join  > > me  > > > > > as well .  > > > > >  > > > > > i am sending you a copy of the brochure about the analyst /  > associate  > > > > > program .  > > > > >  > > > > > vince kaminski  > > > > >  > > > > >  > > > > > vincent kaminski  > > > > > managing director - research  > > > > > enron corp .  > > > > > 1400 smith street  > > > > > room ebl 962  > > > > > houston , tx 77002 - 7361  > > > > >  > > > > > phone : ( 713 ) 853 3848  > > > > > fax : ( 713 ) 646 2503  > > > > > e - mail : vkamins @ enron . com  > > > > >  > > > >  > > > >  > > > >  > > > >  > > > >  > > > >  > > >  > > >  > > >  > > >  > > >  > > >  > >  > >  > >  > >  > >  > >  >  >  >  >  >  >\",0\n\"Subject: re : visit to houston and vince kaminski ' s research group  shijie ,  we would like you to meet tomorrow morning , starting at 9 : 00 , with a few  members of the  group . around 11 : 15 we shall go to lunch ( myself , stinson gibner and zimin  lu ) .  at 1 : 00 we would like you to make a presentation to the research group on the  topic  of your choice . after 2 : 30 we shall continue with individual meetings .  we shall give you an agenda with the names and times when you arrive .  you can come to the lobby of the enron building ( 1400 smith )  between 8 : 30 and 9 : 00 and call me ( 3 - 3848 ) or my assistant ,  shirley crenshaw ( 3 - 5290 ) , to be admitted to the building .  we are on the 19 th floor .  look forward to meeting you .  vince kaminski  shijie deng on 07 / 27 / 2000 10 : 10 : 03 am  to : shirley . crenshaw @ enron . com  cc : vince kaminski  subject : re : visit to houston and vince kaminski ' s research group  hi shirley ,  an overhead would be good . thanks .  btw , is there happen to be an agenda for my visit ? thank you .  shijie  shi - jie deng  assistant professor  school of isye  georgia institute of technology  office phone : ( 404 ) 894 - 6519  e - mail : deng @ isye . gatech . edu  home page : http : / / www . isye . gatech . edu / ~ deng  on fri , 7 jul 2000 shirley . crenshaw @ enron . com wrote :  >  > shijie :  >  > thanks for the information .  >  > please let me know if you need av equipment , i . e . , lcd projector , overhead  > projector , etc .  >  > thanks !  >  > shirley  >  >  >  >  >  >  >  >  >  > shijie deng on 07 / 03 / 2000 11 : 40 : 05 am  >  > to : shirley . crenshaw @ enron . com  > cc : vince kaminski  > subject : re : visit to houston and vince kaminski ' s research group  >  >  >  > shirley ,  >  > i just booked my flights and the hotel . i ' ll be arriving houston on  > the evening of 7 / 27 and leaving on 7 / 29 . i ' ll stay at the doubletree  > houston allen center for two nights . looking forward to meeting you at  > enron .  >  > regards ,  >  > shijie  >  > shi - jie deng  > assistant professor  > school of isye  > georgia institute of technology  >  > office phone : ( 404 ) 894 - 6519  > e - mail : deng @ isye . gatech . edu  > home page : http : / / www . isye . gatech . edu / ~ deng  >  >  >  >  >  >  >\",0\n\"Subject: risk contact  steve ,  i talked to sh ? n about your paper .  please , feel free to contact her directly and discuss  the publication options .  vince  sh ? n millie  risk books  28 - 29 haymarket  london swly 4 rx  phone : 44 ( 0 ) 171 484 9740  fax : 44 ( 0 ) 171 484 9758  e - mail : shan @ risk . co . uk  www . riskpublications . com\",0\n\"Subject: re : fed ex from iris  sounds good to me , vince .  thanks ,  molly  vince j kaminski  01 / 17 / 2001 09 : 52 am  to : molly magee / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect  subject : re : fed ex from iris  molly ,  yes , march 1 would work .  vince  enron north america corp .  from : molly magee 01 / 16 / 2001 03 : 36 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : fed ex from iris  just checking to be sure you ' re okay with a march 1 start date for iris ?  molly  - - - - - - - - - - - - - - - - - - - - - - forwarded by molly magee / hou / ect on 01 / 16 / 2001 03 : 35  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron capital & trade resources corp .  from : \"\" iris mack \"\"  01 / 16 / 2001 03 : 13 pm  to : molly . magee @ enron . com , vince . j . kaminski @ enron . com  cc :  subject : fed ex from iris  hi ,  thanks for the fed ex with the offer letter , and other pertinent  information about enron .  i have signed the letter and returned it to you , along with a couple of  other forms . you should receive these documents via fed ex on tomorrow  morning .  because i have to tie up a few loose ends here in california , i won ' t  be able to start until march lst . i hope that is okay .  thanks so much .  regards ,  iris  get your free download of msn explorer at http : / / explorer . msn . com\",0\n\"Subject: re : offsite meeting - - great divide lodge - - invited guest list  hi sheryl , please add david cox ' s name in the list . additionally , please  include chonawee supatgiat for research .  once john approves the current list and we get some feed back by talking to  people ' s admin to book attendees time .  ravi .  here is the latest version of the agenda .  sheryl lara  03 / 27 / 00 04 : 59 pm  to : vince j kaminski / hou / ect @ ect , stinson gibner / enron communications , john  griebling / enron communications @ enron communications , ravi thuraisingham / enron  communications @ enron communications  cc : shirley crenshaw / hou / ect @ ect  subject : offsite meeting - - great divide lodge - - invited guest list  gentlemen :  attached please find the \"\" proposed \"\" final invitees list for the technical ,  research , and operations offsite meeting to be held april 27 - 29 , 2000 at the  great divide lodge in breckenridge , colorado . i am working with shirley  crenshaw to secure cost - efficient travel and meeting arrangements for the  entire group . in order to secure a group rate , we must make sure we have a  \"\" final headcount \"\" in place . please let me know by tuesday , march 28 th at  12 : 00 noon if you have any additions or corrections to the attached list .  many thanks in advance for your prompt attention !\",0\n\"Subject: briefing robert johnston on metals  vince ,  sorry , i was not able to take your call this morning , to avoid distractions i  was editing a technical coner article on ppp out of my office . last friday ,  i called robert johnston immediately after you told me to contact him to  brief him on nonferrous metals . i let him know that i was scheduled to speak  about metals in our research meeting on october 12 th . i also talked with him  a few weeks ago that i would like to meet with him and scott tholan to brief  them on metals . robert did not arrange the meeting . i arranged a meeting  for 10 : 30 tomorrow to take them both through the metals fundametals speech .  the london metals confererence sounds great , since i have five years  experience in metals fundamental analysis and pricing , i would also like to  attend . many of my new research group customers are asking for my expertise  in this new business for enron . i could certainly help our customers better  by getting the latest information on metals . please let me know if this is  ok with you .  regards ,  maureen\",0\n\"Subject: re : uk portfolios and books setup in risktrac  naveen and matthew ,  i started looking systematically through uk positions and corresponding var  numbers in the risckrac .  i found a few inconsistencies so far .  1 . the portfolio elsb 1 - nbp has a book elsb 1 under it . the sum of delta  positions for this book is  239 , 021 , 655 , the sum of gamma positions is - 211 , 031 , 450 . var for the  portfolio elsb 1 - nbp is zero .  the same refers to a few other portfolios , for example elsb 2 - nbp , elsb 3 - nbp ,  e 2 xxl - nbp .  2 . the portfolio elsbp 1 - ppp also has the book elsb 1 under it . this book  contains the positions on pppwdl  through pppwd 6 and pppwel through pppwe 4 .  the same refers to the other books , for example elsb 2 .  this looks messy . can someone in rac go over all the portfolios , all the  corresponding books and curves  in risktrac and make sure they are set up properly ?  thank you ,  tanya .\",0\n\"Subject: re : update  john ,  i shall be traveling thu and fri this week and mon and tue next week .  please , give me a call tuesday morning and i shall carve out  an hour from my schedule to discuss the paper . stinson will be gone for three  weeks so  we have to do the work without him .  alternatively , we can delay the conversation till next week .  vince  \"\" john d . martin \"\" on 09 / 12 / 2000 04 : 23 : 34 pm  to : vkamins @ enron . com  cc :  subject : update  vince ,  sorry i haven ' t been pressing you on the paper but there ' s always more to  do than we have time for . however , i had a phone call from the editor  encouraging me to get the paper to him by christmas so it could serve as  the centerpiece of his energy issue . his comment to me was \"\" everyone wants  to know what enron ' s doing \"\" . so , with that said i ' ll try to put together a  list of materials that i have collected and maybe we can have a phone  conversation to get your ideas on a plan to put the paper together . the  harvard cases do a nice job of laying out institutional and historical  details but we will need a \"\" tack \"\" or theme to begin the writing process .  by the way , we have managed to delay the spring texas finance festival one  week so that it will not coincide with easter ( hope you can now attend ) .  we didn ' t have too many problems with the easter weekend but there were  some and we would prefer not to use that weekend either .  hope all is going well for you guys . tell stinson hello for me .  your friend ,  john  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: re : further actions on anjam ' s departure  anjam has told me he is not going to an energy competitor ( he mentioned  weather derivatives as a the only overlap . i therefore see this as low risk  from a security point of view , so let ' s make sure handover is thorough . you  might focus our security efforts on his access to weather - related info .  richard  steven leppard  26 / 10 / 2000 17 : 06  to : melanie doyle / lon / ect @ ect  cc : vince j kaminski / hou / ect @ ect , dale surbey / lon / ect @ ect , richard  lewis / lon / ect @ ect  subject : further actions on anjam ' s departure  hi mel  further to our earlier discussions here ' s the full list of actions we ' d like  to put into place regarding anjam ' s departure :  hr - type stuff :  1 . get anjam off the trading floor as soon as possible . there is no need for  him to remain on the floor . this will need to be delayed until it number 1  is completed ( cataloguing his work ) .  2 . determine where anjam is heading . we need to know who is going to know  our positions and curves next .  3 . remove his security pass , and insist that he is always accompanied when in  the building . sharad is to sit with him while he catalogues his work .  it - type stuff :  1 . ask him to catalogue the contents of his h : drive , since the rest of the  group will need to support his work in the future . this should take no more  than a day or two .  2 . get it to obtain their backups of anjam ' s h : drive for weekly intervals  over the last two months . this will allow us to determine what he has  deleted .  3 . get it to provide a snapshot of anjam ' s notes folders , and provide records  of mail sent out to the internet over the last couple of months . i ' m worried  about code / data he may have zipped up and mailed out .  4 . ask it to use a utility program to determine what has been deleted from  anjam ' s c : drives . there may be useful info here too .  5 . revoke all internet access , whether via explorer or notes mail .  6 . get a record of all files he has printed over the last couple of months .  vince has ok ' d this lot , so let ' s do it asap .  many thanks ,  steve\",0\n\"Subject: new procedures for enron it purchasing  attention ! starting 06 / 22 / 00 , enron it purchasing will no longer be able to  receive orders for it equipment . to place an order , please proceed to the  following website : http : / / itcentral . enron . com any orders  sent to enron it purchasing before this date will be processed - - you do not  need to enter another request . enron it purchasing will still be open to  status requests , approval notifications and pricing inquiries . thank you  very much for your patience and cooperation !  it sourcing and procurement .\",0\n\"Subject: enron europe research group intranet site  announced to enron europe with very positive response .  hope to catch up with you soon ( probably july ) ,  anjam  x 35383  - - - - - - - - - - - - - - - - - - - - - - forwarded by anjam ahmad / lon / ect on 15 / 06 / 2000 09 : 20  - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron europe  from : enron europe general announcement 14 / 06 / 2000  18 : 53  please respond to anjam ahmad / lon / ect  to : ect europe  cc :  subject : research group intranet site  research group intranet site  following the recent lunch presentations , there has been considerable  interest from enron europe staff in improving their quantitative skills ,  helping to maintain our competitive advantage over competitors . we have  recently created the research group ' s intranet site which you can find on the  enron europe home page under london research group . the site contains an  introduction to the group and also information on :  derivatives pricing  risk management  weather derivatives  credit risk  extensive links database  if you have any questions or issues on quantitative analysis ( including  hedging and risk management of derivatives ) please don ' t hesitate to get in  touch .  regards ,  anjam ahmad  research group  first floor enron house  x 35383\",0\n\"Subject: java class starting feb 20 th .  some notes on the upcoming java class . we have an extremely high interest  in the class , which is good , but since we are limited to 15 students , not  everyone who expressed an interest could be accomodated .  those registered are :  1 martin lin  2 . chonawee  3 . tom barkley  4 . lance cunningham  5 . seksan kiatsupaibul  6 . wichai narongwanich  7 . praveen mellacheruvu  8 . sevil yaman  9 . stephen bennett  10 . sam smith  11 . jason sokolov  12 . jaesoo lew  13 . amitava dhar  14 . george hopley ' s group  15 . george hopley ' s group  each person taking the class will need to find a laptop computer ( shirley may  be able to help ) and be sure that the proper software is installed before the  course . chonawee will try to install the s / w on his laptop as a test case .  the class is divided into two weeks . each week consisting of 4 days , noon  to 5 p . m . the first four days are feb 20 - 23 , so mark your calendars . the  classes in feb . will be in 30 cl ( tuesday ) and 30 c 2 ( remainder of the week ) .  if you can not attend please let me know , so that others who want to take the  class can take your place .  - - stinson\",0\n\"Subject: info about enron ' s bandwidth market  dear dr . kaminski ,  i enjoyed your talk this afternoon at ieor very much .  i wonder if you could point me to some information  resource on enron ' s bandwidth market .  i am a ph . d student at ieor . i work with professor  oren and professor varaiya from eecs department on  the topic of pricing the internet . in particular , i am designing  pricing mechanism in the framework of the diffserv  architecture which is the latest proposal made by  ietf to provide scalable service differentiation .  i would very much like to get in touch with people  in enron working on the similar topics .  thank you very much .  jun shu  http : / / www . ieor . berkeley . edu / ~ jshu\",0\n\"Subject: interview with norberto valdes  hello all :  norberto telephoned me this morning and will not be able to come on  friday , may 5 th . we have rescheduled the interview for monday , may 1 .  the times are as follows :  vasant shanbhogue 1 : 00 pm  vince kaminski 1 : 15 pm  clayton vernon 1 : 30 pm  stinson gibner 1 : 45 pm  tanya tamarchenko 2 : 00 pm  grant masson 2 : 15 pm  they will be conducted in ebl 938  thanks !  shirley\",0\n\"Subject: re : ut short course travel arrangements  martin ,  i can join the car pool .  vince  from : martin lin on 04 / 25 / 2001 10 : 59 am  to : vince j kaminski / hou / ect @ ect , vasant shanbhogue / enron @ enronxgate , sandeep kohli / enron _ development @ enron _ development , lance cunningham / na / enron @ enron , sevil yaman / corp / enron @ enron  cc :  subject : ut short course travel arrangements  if the schedule works , perhaps a carpool is best for attending the course , given the number of us going . vasant has offered to drive . dependiing on driving speed and traffic , leaving houston by 9 : 30 am should give sufficient time to make the lpm class , including some time for lunch .  please let me know if you are interested in the carpool or have alternate plans or suggestions .  thanks ,  martin\",0\n\"Subject: my gratitude  dear :  i would like to express my gratitude to you for giving me an opportunity to  have an interview with enron . i have to accept that enron provides an  excellent working environment . i am looking forward to hearing good news  from the research group . if there is anything else that i can do to  accelerate the process , don ' t hesitate to e - mail me .  best regards ,  seksan .\",0\n\"Subject: re : charm  jim ,  charm looks more like a prototype that requires a lot of work to make it more a  production tool .  we have developed a similar model ( without some nice functionalities charm has )  in about two weeks , at request of rick jones who joined ees from hsb . rick  worked on a similar model at his old company and wanted to have a similar tool  for his projects with enron . i can tell you more about it when we meet ( hopefully ) later  this week .  i would tell willis that the model requires more work before enron can  consider it as commercial product .  vince  james l bouillion  04 / 11 / 2001 06 : 52 am  to : vince j kaminski / hou / ect @ ect  cc : jonathan davis / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect  subject : re : charm  vince , what feedback should i give willis on their charm product ?  - - - - - - - - - - - - - - - - - - - - - - forwarded by james l bouillion / hou / ect on 04 / 11 / 2001 06 : 50 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  james l bouillion  04 / 11 / 2001 06 : 50 am  to : \"\" bertil olsson \"\" @ enron  cc :  subject : re : charm  no word yet . i will follow up with the attendees .  thanks for taking thje time to make the presentation .  \"\" bertil olsson \"\" on 04 / 10 / 2001 04 : 07 : 11 pm  to : james . l . bouillion @ enron . com  cc :  subject : re : charm  jim ,  any feed - back on our meeting ? we certainly appreciated the opportunity and  the fact that the meeting was very interactive .  regards ,  bertil  the information in this email and in any attachments is confidential and  may be privileged . if you are not the intended recipient , please destroy  this message , delete any copies held on your systems and notify the sender  immediately . you should not retain , copy or use this email for any  purpose , nor disclose all or any part of its content to any other person . \",0\n\"Subject: change of role  just a quick note to say that i have now left the eprm / risk conference  division after two and a half very happy years . i am however still at risk  waters group , where i am now working as a journalist on eprm magazine .  future conference enquiries should go to paul bristow ( us - 212 925 6990 ) or  frances tully ( europe - + 44 ( 0 ) 20 7484 9731 ) .  many thanks for your work my events and i hope we can work together again in  the future . if you have any ideas on the writing side then i would always  appreciate a call or email - my contact details all remain the same .  best regards ,  joel .  joel hanley  eprm magazine  direct : + 44 ( 0 ) 20 7484 9885  www . riskwaters . com\",0\n\"Subject: uk gas data  hi vince ,  i only just got forwarded this request - i can deal with the uk gas data  requirments .  regards ,  anjam  x 35383  - - - - - - - - - - - - - - - - - - - - - - forwarded by kyran hanks / lon / ect on 01 / 08 / 2000 09 : 21  - - - - - - - - - - - - - - - - - - - - - - - - - - -  margaret carson @ enron  31 / 07 / 2000 22 : 12  to : vince j kaminski / hou / ect @ ect  cc : kyran hanks / lon / ect @ ect  subject : vince does your group have a monthly or a quarterly price history in  nominal terms  for a us onshore louisiana natural gas price ( or a texas wellhead price ) and  a uk landed beach price for the past 15 years ? i am gathering historical data  for jim o hara for our colombia pipeline in south america and these are among  the series of data they are seeking . they would like the data  from a published source in an electronic file if possible . . their timetable  is by cob weds this week . thank you for your help . margaret\",0\n\"Subject: class speaker  vince ,  as a reminder , i am hoping that you can identify a speaker for my  class at ut on real options ( perhaps you ! ) . i look forward to hearing from  you .  jim  james s . dyer  fondren centennial chair in business  department of management science and information systems  cba 5 . 202  the university of texas at austin  austin , texas 78712 - 1175  email : j . dyer @ bus . utexas . edu  telephone : 512 - 471 - 5278  fax : 512 - 471 - 0587\",0\n\"Subject: mgmt 656  enclosed please find the final grade rosters for mgmt 656 . grades are due into our office no later than friday , may 4 .  remember that this is the university deadline for graduating students .  thank you for your help ! - pam ( 713 - 348 - 6223 )  - 656 . doc\",0\n\"Subject: re : informs abstract ( fwd )  - - - - - - - - - - forwarded message - - - - - - - - - -  date : sun , 1 oct 2000 14 : 29 : 20 - 0400 ( edt )  from : shijie deng  to : vkaminski @ aol . com  cc : shijie deng  subject : re : informs abstract  vince ,  thanks for the abstract ! for the purpose of the conference program  listing , the conference organizers need a title and an abstract which is  longer than 50 words . based on the abstract that you sent me , i took the  liberty to make up a title and the 50 - word abstract ( attached below ) .  please make changes as you feel necessary and send them back to me . i ' ll  send them out to the organizers once i get your confirmation on this .  best ,  shijie  title : current challenges in modeling power price volatility  author : dr . vince kaminski , head of quantitative research , enron capital &  trade resources  abstract :  the power market developments in the us have created several unique  challenges for energy industry economists . we discuss the major factors  underlying  the exceptionally high volatility of electricity prices . we feel that some of  them may be a necessary price to pay for increased market efficiency and  expanded customer choice .  shi - jie deng  assistant professor  school of isye  georgia institute of technology  office phone : ( 404 ) 894 - 6519  e - mail : deng @ isye . gatech . edu  home page : http : / / www . isye . gatech . edu / ~ deng  on sun , 1 oct 2000 vkaminski @ aol . com wrote :  > shijie ,  >  > i am sending you the abstract for my informs presentation .  >  > vince  >  >  > * * * * *  >  >  > the last three years were characterized by exceptionally high volatility of  > the power prices in the us markets . the market developments have created a  > number of unique challenges for energy industry economists . one immediate  > question we have to answer is how to measure volatility of energy prices .  > although we can all agree that the prices in the power markets are  > characterized by high variability , the traditional measures used in  financial  > economics ( annualized standard deviation of log price returns ) may not fit  > well electricity prices . the second challenge is to explain the sources of  > high price volatility and to answer the question to what extent it can be  > attributed to problems that can be addressed in the long run . such problems  > include flaws in market design that allow some market participants to abuse  > market power , limited availability and / or unequal access to transmission ,  > temporary shortages of generation capacity . some factors underlying high  > volatility of electricity prices may be of permanent nature and may be a  > necessary price to pay for increased market efficiency and expanded customer  > choice .  >\",0\n\"Subject: re : good morning / afternoon  john ,  the phone number for ken lay is ( 713 ) 853 - 6773 .  my recommendation is to call mark palmer first and discuss the book  with him . his recommendation will open the door . i shall mention this to him  as well . mark ' s phone number is ( 713 ) 853 - 4738 .  vince  \"\" john d . martin \"\" on 03 / 30 / 2001 12 : 12 : 50 pm  to : vkamins @ enron . com  cc :  subject : good morning / afternoon  vince ,  one of my colleagues here at baylor is writing a book about \"\" the business  of heaven \"\" in which he interviews prominent business leaders . bob darden  is his name and he ' s a former journalist and nice guy . he would like to  contact ken lay about being one of his interviews . do you think this is  possible ? if so , could you give me an address / phone numbers that bob might  use to contact ken ' s secretary about setting up an interview ?  if this is in any way \"\" not ok \"\" please just say so .  see ya ,  john  > date : fri , 30 mar 2001 11 : 35 : 03 - 0600  > from : robert darden  > subject : yo !  > x - sender : \"\" robert darden \"\" ( unverified )  > to : j _ martin @ baylor . edu  > organization : the door  > x - mailer : mozilla 4 . 04 [ en ] c - flashnet ( win 95 ; i )  >  > hi john - - i enjoyed our meeting yesterday . this looks very promising .  > meanwhile , as i mentioned at the table , i ' m getting a little nervous  > about the book that is due june 1 .  > one of the names on our \"\" wish \"\" list of interviewees for \"\" the business of  > heaven \"\" is ken lay at enron .  > would it be possible for you to give me a good address and phone number  > for mr . lay ' s office ?  > and may i mention your name in the cover letter ?  > i would be forever indebted . i might even buy the next lunch .  > bob  > p . s . thanks for sharing your concerns about church yesterday , too . i ' m  > genuinely sorry things didn ' t work out better and feel more than a  > little embarrassed that i didn ' t work harder to make you guys feel more  > welcome and connected . on the other hand , please know that mary and i  > will always love you and consider you both friends . i know you ' ll be  > happy at lake shore - - even as we miss you at 7 th !  >  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: re : reminder  thanks , so much for your support !\",0\n\"Subject: fw : modified version  lance ,  any comment ?  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 05 / 2001  08 : 37 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : beth perlman / enron @ enronxgate on 04 / 04 / 2001 04 : 50 pm  to : louise kitchen / hou / ect @ ect , tim belden / hou / ect @ ect , kevin m  presto / hou / ect @ ect , hunter s shively / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : fw : modified version  this may be of interest to you . i was contacted by steve lake from argonne  national laboratory who is interested in selling us some of their models and  mapping software . let me know if there is any interest .  thanks ,  beth  - - - - - original message - - - - -  from : \"\" lake , stephan \"\" @ enron  nron . com ]  sent : wednesday , april 04 , 2001 3 : 52 pm  to : perlman , beth  cc : conzelmann , guenter  subject : fw : modified version  beth ,  i enjoyed talking with you this afternoon regarding possible enron / argonne  national laboratory collaboration . as i mentioned , one of our divisions ,  decision information sciences has built state of the art tools for modeling  and simulating energy use . they have trained many country energy ministries  on the use of their tools as well as solved complex energy technology issues .  i ' ve attached a presentation which describes some of their capabilities in  this area . decision information sciences also has done much work in studying  critical infrastructure issues in both gas and electric systems which also  may be of interest . finally , they have been pioneers in the development of  agent based complex adaptive systems for modeling very complex systems that  are impossible to view with over approaches .  i will also include a copy of my correspondences with one of your e - business  groups under separate transmission .  regards ,  stephan lake  manager , business development and marketing  argonne national laboratory  630 - 252 - 5685 telephone  630 - 252 - 5230 fax  - - - - - original message - - - - -  from : conzelmann , guenter  sent : monday , april 02 , 2001 4 : 50 pm  to : lake , stephan  subject : modified version  guenter conzelmann  manager , national and international studies section  energy and environmental systems analysis group  argonne national laboratory  9700 south cass avenue  building 900  argonne , il 60439 - 4832  telephone : + + 1 - 630 - 252 - 7173  fax : + + 1 - 630 - 252 - 6073  email : guenter @ anl . gov  web : http : / / enpep . dis . anl . gov / enpep /  fedex / dhl address :  1200 international parkway  woodridge , il 60517  - enpep overview industrial partnership 02 lake . ppt\",0\n\"Subject: re : saturday lunch  nick ,  thanks for your message . saturday , 11 : 45 at the terman is fine with  me . see you there .  vince  nick bambos on 03 / 01 / 2000 12 : 32 : 24 pm  to : vince . j . kaminski @ enron . com  cc : vkaminski @ aol . com , lorriep @ stanford . edu  subject : saturday lunch  vince ,  unfortunately , the faculty club is closed on saturday .  > > > lorrie , could you please make reservations  for 2 at , say , spieto ' s . < < < <  i am looking forward to seeing you on saturday . shall  we meet at the terman ground floor lobby at 11 : 45 ?  i think the packard building is locked on saturday .  thanks ,  nick\",0\n\"Subject: weather deriv . presentation  vince ,  here is the info we discussed . if you need anything else , let me know  joe  x 33914  our london group ' s web page :  http : / / www . weather - risk . com /  ( especially check out the press presentations section ; it has a lot of good  general info )  pdo ' s  http : / / www . srh . noaa . gov / bro / pdo . htm  more general info :  ( has a bit more on precip derivatives than usual , given the audience )  finally , according to our traders , cme trading activity is down to a couple  of deals a month .  i ' ll try to dig up some specific articles , but i suspect most of them are in  one way or another cme  press releases so that they will gloss over the low liquidity .\",0\n\"Subject: ipps in ercot  jim ,  can we meet on friday to discuss this topic .  the person who supports power , grant masson ,  will be out for the next two days .  vince\",0\n\"Subject: re : fw : eprm article  chris ,  i have read the paper . it reads very well . two comments .  1 . it probably makes sense to include a note on the standard gbm simulation  equation and  the way it ' s typically discretized .  2 . it will help the reader who did not read the earlier articles to explain  what ct is ( perhaps a footnote ) .  i am also including a message i sent to julie today .  * * * * * * * * * * * * * * *  1 . i would like to register 2 members of my group for both courses ( in  houston ) :  a . paulo issler  b . alex huang  i shall attend the course on weather only .  2 . i have started the process to issue a check for 5 , 000 aud for lacima .  shirley sent you an update on this . the 2 nd installment comes from the budget  of our  office in australia . i shall talk to paul quilkey today about it . please , let  me know if there is any delay .  3 . the book will be used as textbook for the class i shall be teaching at  rice .  rice univ bookshop is placing an order .  4 . i would like to order 50 copies for my group . what is the best  way to place the order ? can we pay in us dollars ?  * * * * * * * * * * * * * * *  best regards .  vince  \"\" chris strickland \"\" on 12 / 12 / 2000 05 : 21 : 22 pm  please respond to \"\" chris strickland \"\"  to :  cc : \"\" julie \"\"  subject : fw : eprm article  hi vince ,  i ' m wondering if you got this last week ? if you could have a quick look and  get back to me with any comments that would be great - robin is chasing me  on this one !  best regards .  chris .  - - - - - original message - - - - -  from : chris strickland  to :  sent : wednesday , december 06 , 2000 4 : 16 am  subject : eprm article  > hi vince ,  >  > hope things are fine with you . i ' m sorry that i only ever write to you  when  > i ' m after something , but could you look at this simulation article - the  > next installment in the eprm articles .  >  > many thanks and best regards .  >  > chris .  >  >  >  > - - - - - original message - - - - -  > from :  > to : ; ;  ;  >  > sent : friday , september 08 , 2000 4 : 23 am  > subject : re : var article  >  >  > > les ,  > >  > > the revised version of the var article looks fine .  > >  > > vince  > >  >  - eprm _ 04 _ sim _ mr . zip\",0\n\"Subject: vince and stinson ,  i got this resume from my friend ming sit who has a ph . d . from stanford .  please take a look at his resume to see if we can use him . i classify him as  a structurer , but things may change after all these years .  zimin  - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 05 / 17 / 2000 04 : 08 pm  - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" sit , ming \"\" on 05 / 17 / 2000 02 : 41 : 50 pm  to : \"\" zimin lu ( e - mail ) \"\"  cc :  subject :  - resume . doc\",0\n\"Subject: re : request for suggestions : vince ' s visit to sydney in july  raymond ,  i shall call you on sunday after my arrival in sydney .  look forward to meeting you again .  i shall be ready to speak on all the topics you mentioned .  vince  raymond yeow @ enron _ development  07 / 09 / 2000 09 : 07 pm  to : vince j kaminski @ ect  cc : paul quilkey / enron _ development @ enron _ development , shirley crenshaw @ ect  subject : re : request for suggestions : vince ' s visit to sydney in july  dear vince ,  after getting our heads together here ,  we would much apprecaite if you could share the research group ' s latest on  - - -  - var ie \"\" . . . repeat my workshop presentation on value - at - risk . . . \"\"  as well as cover additional topics viz .  - discuss , with application , enrons internal v @ r model , and how this is used  internally .  - discuss volatility modelling , and whether it is possible to maintain and  trade a term structure of volatility in electricity  - modelling forward curves with reference to associated markets ( eg oil ) .  can we gain some insights through spreads to related market curves ( spark ) .  i assume your hotel is booked already . catching the taxi is the best way to  get to your hotel .  since you are arriving on the weekend , if you need to contact me - my mobile  is 0417 - 692295 , home tel / fax  is 9232 - 8892  rgds raymond  - - - - - - - - - - - - - - - - - - - - - - forwarded by raymond yeow / enron _ development on  07 / 07 / 2000 04 : 45 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski @ ect  07 / 06 / 2000 09 : 20 am  to : paul quilkey / enron _ development @ enron _ development  cc : raymond yeow / enron _ development @ enron _ development , vince j  kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect  subject : re : your visit to sydney in july  paul , raymond ,  thanks for your message .  sorry i did not get in touch with you earlier . the last few weeks were very  hectic . i am starting  right now my preparations for the presentation i am going to give at the  conference .  here are the details of my itinerary ( i shall send you a copy tomorrow ) . i  arrive sunday morning  and leave saturday morning . the conference takes place on monday and tuesday .  on wednesday , i am making a presentation at the workshop on value - at - risk . i  would  like to stay at the conference for the duration : it ' s a great learning  opportunity for me .  on thursday and friday , as well as in the evenings ( except for the evening  of july 18 ) , i am at you disposal .  i would like to take advantage of this trip and learn as much as i can  about the australian markets and discuss with you the research agenda .  i shall be glad to make several presentation .  i can repeat my workshop presentation on value - at - risk as well as cover  additional  topics .  vince  paul quilkey @ enron _ development  07 / 04 / 2000 05 : 23 am  to : vince j kaminski @ ect  cc :  subject : your visit to sydney in july  vince  i support raymond ' s email and would welcome the opportunity to have you give  a presentation ( formal or informal ) to the trading group on latest research  initiatives in houston . please let us know your schedule so that we do not  overly burden you during your visit . look forward to seeing you and catching  up over a beer .  thnx  paul  - - - - - - - - - - - - - - - - - - - - - - forwarded by paul quilkey / enron _ development on  07 / 05 / 2000 08 : 23 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  raymond yeow  07 / 04 / 2000 08 : 21 pm  to : vince j kaminski @ ect  cc : paul quilkey / enron _ development , kirsty hogarth / enron _ development , elliott  katz / enron _ development , david gray / enron _ development  subject : your visit to sydney in july  dear vince ,  hi ! , it ' s only two weeks until the aust energy risk ( 17 - 19 july ) seminar in  sydney .  is risk organising your hotel ?  otherwise , kirsty can organise for you ,  eg harbour view at the regent or convenience to the seminar location at the  sheraton ?  we would like to make sure that you have all the necessary \"\" comforts \"\" of home  when you are with us ,  elliott & david can set up a desk for you in the office / trading room with  phone etc  so you can use one of our pc to access email or plug in your laptop .  please let elliott or david kmow your requirements .  how long will you be with us ?  is this your first trip to sydney ?  there are several of us in the office who would like to take you for a  meal ( s ) / show you the sights etc and  discuss the latest research findings with you whilst you are in sydney eg var .  hear from you soon .  raymond  725 pm 4 july\",0\n\"Subject: a request  vince ,  i am writing to ask for your help with some research i am doing with john  lehoczky and a phd student . we trying to apply recent advances in monte  carlo for american options to value swing and other options with multiple  early exercise decisions that are important in energy markets . i know in  general that early exercise shows up in a wide range of energy contracts ,  both real as welll as financial . would it be possible for you , either via  email or on the phone , to give us some examples of typical terms for such  instruments ? we would like our examples to look realistic . we also want to  make sure we are focusing on the right sorts of optionality .  thanks in advance ,  duane  * * * * * * * *  duane seppi  graduate school of industrial administration  carnegie mellon university  pittsburgh pa 15213 - 3890  tel . ( 412 ) 268 - 2298  fax ( 412 ) 268 - 8896  email ds 64 + @ andrew . cmu . edu\",0\n\"Subject: renshi zhang ' s resume  fyi .  please cancel the interview schedule for renshi zhang . hr just notified me  that he has accepted another position . it was scheduled for tomorrow .  i have removed it from the calendars that i have access to .  thanks !  shirley  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 23 / 2001  10 : 19 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  zimin lu  04 / 19 / 2001 04 : 08 pm  to : shirley crenshaw / hou / ect @ ect , molly magee / enron @ enronxgate  cc : vince j kaminski / hou / ect @ ect  subject : renshi zhang ' s resume  shirley and molly ,  vince is interested to set up an interview for renshi zhang . any day except  thursday next week  is good .  interviewers : vince , stinson , vasant , tanya , alex , bob , krishna and myself .  contact number for mr . zhang is 713 - 544 - 5989 .  zimin  - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 04 / 19 / 2001 03 : 52 pm  - - - - - - - - - - - - - - - - - - - - - - - - - - -  zimin lu  04 / 05 / 2001 09 : 49 am  - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 04 / 05 / 2001 09 : 46 am  - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  03 / 14 / 2001 10 : 06 am  to : zimin lu / hou / ect @ ect  cc :  subject : resume  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 14 / 2001  10 : 07 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  marshall brown on 03 / 09 / 2001 07 : 46 : 22 am  to : vince kaminski  cc :  subject : resume  vince ,  how are you . this candidate would be interested in any positions in  your group .  regards ,  marshall brown  vice president  robert walters associates  tel : ( 212 ) 704 - 0596  fax : ( 212 ) 704 - 4312  mailto : marshall . brown @ robertwalters . com  http : / / www . robertwalters . com  >  caution : electronic mail sent through the internet is not secure and could  be intercepted by a third party .  this email and any files transmitted with it are confidential and  intended solely for the use of the individual or entity to whom they  are addressed . if you have received this email in error please notify  the system manager .  this footnote also confirms that this email message has been swept by  mimesweeper for the presence of computer viruses .  - zhan _ ren . doc\",0\n\"Subject: confidential : valuation of collateralized mortgages  dear vince ,  we have just received the signed confidentiality agreement . according to  the terms in the agreement , i am sending you an attachment with the pdf  file of the paper discussing the valuation of collateralized debt . we  would be glad to discuss further about a possible collaboration at your  convenience .  please let me know if you have any trouble deciphering the attachment .  with best regards ,  stathis  stathis tompaidis  assistant professor  msis department , cba 5 . 202  mccombs school of business  university of texas at austin  austin , tx 78752 - 1175  tel . 512 - 4715252  fax . 512 - 4710587  stathis . tompaidis @ bus . utexas . edu  - paper . pdf\",0\n\"Subject: fw : aram g . sogomonian  per my voice mail , attached is the resume for aram sogomonian . please  schedule a telephone interview with john lavorato and aram sogomonian . if  you have any questions please let me know .  norma villarreal  sr . human resource represenative  x 31545  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 12 / 2000  11 : 02 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" sogomonian , aram \"\" on 10 / 11 / 2000 12 : 03 : 16 pm  to : \"\" ' vkamins @ enron . com ' \"\"  cc :  subject : fw : aram g . sogomonian  - aram g 2 . doc\",0\n\"Subject: approval for reviewer  raymond , maureen j has suggested reviewers and submitted them for your  approval . you may review / modify this list of reviewers by logging on to pep  at http : / / pep . corp . enron . com and going to supervisor services . please  remember , no feedback can be completed on raymond , maureen j until you have  approved the list .\",0\n\"Subject: my new info  please respond to dear friends and colleagues ,  i have switched again my employment status between self - employment and  employment by joining the txu energy trading on the capacity of their  managing director of risk management operations . will commute home on  weekends , but otherwise , will be stationed in dallas . the new email address  is mjermakl @ txu . edu , and the phone number is ( 214 ) 875 - 9603 .  regards ,  martin jermakyan  www . txu . com  - winmail . dat\",0\n\"Subject: anthony dayao happy hour  - - - - - - - - - - - - - - - - - - - - - - forwarded by anthony dayao / hou / ect on 07 / 10 / 2000 10 : 00  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  cherylene r westbrook  07 / 06 / 2000 04 : 47 pm  to : cindy cicchetti / hou / ect @ ect , giselle james / corp / enron @ enron , terry  furches / corp / enron @ enron , xochil moreno / hou / ect @ ect , linda shoup / hou / ect @ ect ,  kim ladish / corp / enron @ enron , cheryl oliver / corp / enron @ enron , angelina v  lorio / hou / ect @ ect , diana ovalle / corp / enron @ enron , peggy mccurley / hou / ect @ ect  cc : anthony dayao / hou / ect @ ect , beth perlman / hou / ect @ ect  subject : anthony dayao happy hour  assistants :  please forward to your groups asap .  thanks ,  cheri x 3 - 6477\",0\n\"Subject: fwd : mgmt 656  - - - \"\" jack blanton , jr . \"\" wrote :  > date : wed , 28 feb 2001 13 : 09 : 16 - 0800 ( pst )  > from : \"\" jack blanton , jr . \"\"  > subject : mgmt 656  > to : vince . j . kaminski @ enron . com  >  > dear proffesor kaminski  > i wish to audit the energy derivatives class  > which  > you are teaching on thursday nights . i am currently  > a  > second year student in the emba program and am  > chairman of nicklos drilling company . nicklos  > drilling currently operates three land rigs along  > the  > texas gulf coast and is constucting a fourth . i  > have  > received permision from the emba program to audit  > the  > class and the only conditions would be your  > permission  > and space avalability .  > thank you for your consideration ,  > jack s . blanton , jr .  > jblantonjr @ yahoo . com  > 713 - 222 - 0191  >  > _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  > do you yahoo ! ?  > get email at your own domain with yahoo ! mail .  > http : / / personal . mail . yahoo . com /  >  do you yahoo ! ?  get email at your own domain with yahoo ! mail .  http : / / personal . mail . yahoo . com /\",0\n\"Subject: re : revision of lst request  i approve of the attached request .  - - stinson gibner  x 34748  from : information risk management 12 / 30 / 99 12 : 02 pm  to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect  cc :  subject : revision of lst request  sorry don ' t know if you can see the request below . but , william smith is  request access to the o : research drive . need your approval or rejection .  thanks  information risk management  for your approval .  tori  - - - - - - - - - - - - - - - - - - - - - - forwarded by information risk management / hou / ect on  12 / 30 / 99 12 : 00 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  security resource request system  directory line item pending access processing  directory name : o : \\ research \\ ( all folders )  service type : grant  expiration date :  comments : i need to be able to save / modify files in these folders . to make it  easier on you , you can just copy whatever rights kevin moore ( kmoore 2 ) has .  those will be all that i will need .  security processing  processing status :  e - mail to requestor :  comments / justification :  general information request : wsmh - 4 esnva  requested by : william smith / corp / enron phone : 713 - 345 - 8322  requested for : william smith / corp / enron employee type :  company : 0011 rc # : 100038  priority : normal  comments / justification :  editing history ( only the last five ( 5 ) are shown )  edit # past authors edit dates  1 information risk management 12 / 22 / 99 12 : 35 : 11 pm\",0\n\"Subject: re : documents from iris mack  iris ,  i have received your e - mail and phone message .  i shall distribute your papers to the other interviewers .  also , i shall contact you by thursday regarding a job offer .  vince  \"\" iris mack \"\" on 12 / 11 / 2000 08 : 09 : 10 pm  to : irismmack @ hotmail . com , zlu @ enron . com , vshanbh @ enron . com  cc : vince . j . kaminski @ enron . com  subject : re : documents from iris mack  hi again ,  i don ' t recall if i mentioned that my harvard doctoral dissertation  involved another energy problem - the transient stability of electrical  power systems .  much of the data , model and analysis was done with lots of  collaborative efforts with my advisors at harvard and mit and with the  electrical power research institute ( epri ) in palo alto .  kind regards ,  iris mack  > from : \"\" iris mack \"\"  > to : zlu @ enron . com , vshanbh @ enron . com  > cc : vince . j . kaminski @ enron . com  > subject : documents from iris mack  > date : sun , 10 dec 2000 16 : 57 : 21  >  _ _ _ _ _ _ _  get more from the web . free msn explorer download : http : / / explorer . msn . com  received : from 64 . 20 . 165 . 171 by lwl 1 fd . lawl 1 . hotmail . msn . com with http ; sun ,  10 dec 2000 16 : 57 : 21 gmt  x - originating - ip : [ 64 . 20 . 165 . 171 ]  from : \"\" iris mack \"\"  to : zlu @ enron . com , vshanbh @ enron . com  cc : vince . j . kaminski @ enron . com  subject : documents from iris mack  date : sun , 10 dec 2000 16 : 57 : 21  mime - version : 1 . 0  content - type : text / html  x - stn - info :  dear zimin and vasant ,  ?  ? ? ? ? how are you ? ? thank you for taking time out of your busy schedules to  tell me about the work you are doing at enron .  ?  ? ? ? ? this email is in reference to your requests for two documents i  forwarded to dr . kaminski :  ? ? ? ? ? ? ? ? ? 1 . ? my london business school executive mba thesis on weather  derivatives  ? ? ? ? ? ? ? ? ? 2 . ? a document describing some work i did on real options applied  to the commodities industry .  ?  ? ? ? ? you should be able to get a copy of these documents from dr . kaminski . ?  if not , please let me know .  ?  kind regards ,  iris mack\",0\n\"Subject: resume from ningxiong xu  vince :  this is a candidate from stanford i mentioned to you about last friday . he is a student of my thesis advisor there . he seems to have solid math and statistics background ( including stochastic calculus ) and his thesis is on supply - chains . you mentioned about two possible positions : one in net works and another in freight trading .  thanks ,  krishna .  - - - - - - - - - - - - - - - - - - - - - - forwarded by pinnamaneni krishnarao / hou / ect on 04 / 09 / 2001 09 : 55 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  ningxiong xu on 04 / 09 / 2001 03 : 18 : 33 am  to :  cc : arthur veinott  subject : resume from ningxiong xu  41 b . escondido village  stanford , ca 94305  april 9 , 2001  dr . pinnamaneni v . krishnarao  vice president , enron corporation  dear dr . krishnarao ,  professor veinott told me a little about the research going on at enron  from his conversation with you late last week . the work sounded very  interesting to me . professor veinott also told me that the research group  at enron may have some positions for which i might be qualified . i am  writing to let you know that i would have great interest in exploring this  potential opportunity with you . to that end i attach my resume together  with an abstract of my ph . d . thesis under professor veinott as a word  document . i might also add that i expect to finish my ph . d . in management  science and engineering here by july 1 , 2001 .  incidentally , my work has led me to study your own thesis in some detail  and i have been very impressed with it . it may be of some interest to you  that our work is related and seems to require a different generalization  of karush ' s additivity - preservation theorem than the lovely ones you  develop .  i look forward to hearing from you .  sincerely ,  ningxiong xu  - 10408 resume 3 . doc\",0\n\"Subject: new computer  hello again ,  lyn i will like to add to the previous request  another computer and flat screen .  the location for the equipment will be eb 3130 c .  the r . c . and company is below .  any additional please call x 34710 .  - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 02 / 03 / 2000 06 : 54  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  kevin g moore  02 / 01 / 2000 11 : 47 am  to : lyn malina / hou / ect @ ect  cc :  subject : new computer  hello lyn  i am in need of another computer .  i will also need a flat screen monitor . ( large )  the location is eb 3130 a .  the co . # is 0011 .  the r . c . # is 100038 .  the computer is needed a . s . a . p .  lyn , please give me a estimated time of arrival .  thank you  kevin moore  x 34710\",0\n\"Subject: re : prospective 6 / 22 houston visit  professor ronn :  thank you for your email and i wish to respond as follows :  i have left a message with our travel agency asking if they can get you a  hotel reservation closer into town . i will let you know .  i have ordered an overhead projector and the room already has a screen  installed . however , there is really not room for a lectern . the overhead  will  sit on the end of the large conference table and most have room to use part  of the table for their presentation copies .  i will be glad to make copies for you , however , it would be a big help if you  could email me a copy of your presentation on wednesday . thursday  mornings around here get pretty hectic sometimes and we may not have  time to make the copies .  i hope this meets with your approval . please let me know if you need  anything else .  we look forward to your visit .  regards ,  shirley crenshaw  713 / 853 - 5290  email : shirley . crenshaw @ enron . com\",0\n\"Subject: request for payroll reclassification  the following payroll reclassification request has been submitted for your  approval .  click on this link to view document - - >\",0\n\"Subject: re : accounting adjustment  vince , many thanks ! i will let our accounting department know . kim .\",0\n\"Subject: re : real options conference in cambridge  steve  thanks for agreeing to talk . i attach the program to see the other speakers  and style ( it is addressed to a professional autience )  please give me a suitable title for the talk ( replacing kaminski \u0001 % s slot on  july 6 / energy session ) and the details of your position  thanks  lenos  at 05 : 01 _ _ 04 / 20 / 00 + 0100 , steven leppard wrote :  >  >  > dear prof trigeorgis  >  > vince kaminski has suggested that i would be a suitable speaker at your july  > conference in cambridge , and i ' d be happy to come along if required . please  > could you send me appropriate details , and the audience type expected .  >  > many thanks .  >  > yours sincerely ,  > steve leppard  >  >  >  >  - 4 thconfsessions . doc  lenos trigeorgis  professor of finance  university of cyprus  dept of business  75 kallipoleos , po box 20537  cy 1678 nicosia cyprus  tel : + 357 2 892261  fax : 339063\",0\n\"Subject: fyi : howard haughton  thanks vince .  my guys in london are working on howard right now .  keep you informed and updated .  thank you ,  jeff  949 813 2241  hi jeff ,  re . howard haughton  further to your recent communications with vince kaminski with regards to  the above candidate we would like to see him for an interview at our london  offices . could you please advise me of a convenient time for howard or  details on how to contact him to arrange this . he will be seeing four  people for approximately 45 minutes each . we would like to do this  preferably on wednesday or thursday of this week as some of vince ' s team  will be in london on those days .  please contact me if you have any queries on 0044 20 7783 5677 or via  e - mail .  look forward to hearing from you  with regards  rachel quirke  human resources  * get free , secure online email at http : / / www . ziplip . com / *\",0\n\"Subject: re : power conference  sevil ,  no problem .  vince  sevil yaman @ enron  10 / 18 / 2000 10 : 42 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : power conference  vince ,  please check the university of california energy institute web site (  http : / / www . ucei . berkeley . edu / ucei / ) . you may already be aware of it but if  you are not , there are lots of paper that i am using as a reference and that  you might be interested in reading them . also , every year they are holding a  one day power conference in uc berkeley . i ' d like to attend the one in march  of 2001 . is that fine ?  sevil ,\",0\n\"Subject: enron metals  hi tanya  thanks for your time last week - i ' ve been travelling a bit but i ' m now back  in london at mg to commence obtaining information for you .  i ' m not really sure where to start on this , so initially i propose to get :  a complete data set ( i . e . all live trades from all entities ) which includes  prices and volatilities  a separate file of options  any written valuation methodologies used by the core systems  there is a project to obtain a data feed from an mg system called mercur .  this is their risk management system but we are proposing to use it along the  lines of a data warehouse , not a risk system . i ' d be happy to talk you  through any other current issues .  let me know if there ' s anything else you need at present .  regards\",0\n\"Subject: re : daily lunches  kevin ,  please , talk to jeff shankman ' s secretary about including all the research  group members on  the 31 st floor in the company provided lunches ( when they are available ) .  if an additional lunch is needed from time to time , it ' s fine , but it should  be seen as a something done  under exceptional circumstances .  vince  kevin g moore  12 / 20 / 99 12 : 10 pm  to : vince j kaminski / hou / ect @ ect , mike a roberts / hou / ect @ ect , shirley  crenshaw / hou / ect @ ect  cc :  subject : daily lunches  hi vince ,  it has been brought to my attention that several  members of the weather team may require a  lunch from time to time .  the person right now is trisha tlapek she  has to be at her desk .  please , could i provide daily lunches for her .  thanks  kevin moore\",0\n\"Subject: everybody ,  as vince suggested , i made a topical allocation of our new website for  quality control . can you please check out in detail , and put through the  paces , the following list ?  weather mike  links maureen  technical analysis steve bigalow  options library zimin ( this is a big one ! ! )  european weather jose  agricaltural weather jose ( be sure and run spell check ! ! ! )  weather derivatives stephen  presentations tanya  nuclear outage updates sam  fx and sovergn risk maureen  industry analysis vasant  publications osman  research intelligence stinson  hot button # 8 vince  thanks , just email me with any problems or ideas for adds / changes  - - - mike\",0\n\"Subject: re : dram trading authority  vince  thanks - i think this one is fairly hot at the moment - so as soon as you can  get comfortable would be good !  it might be worth spending some time together on it - let me know what you  would prefer  rgds  dp  vince j kaminski @ ect  11 / 08 / 2000 05 : 08 pm  to : david port / market risk / corp / enron @ enron  cc : vince j kaminski / hou / ect @ ect  subject : re : dram trading authority  david ,  when do you need my signature . i missed the presentation last tuesday  ( i was sick ) and would like a day or two to review the product .  vince  from : david port @ enron  11 / 08 / 2000 02 : 43 pm  to : vince j kaminski / hou / ect @ ect , robbi rossi / enron communications @ enron  communications , tanya rohauer / hou / ect @ ect , james ginty / enron  communications @ enron communications , kristin albrecht / enron  communications @ enron communications  cc : ted murphy / hou / ect @ ect , barry pearce / enron communications @ enron  communications , michael moulton / enron communications @ enron communications  subject : dram trading authority  here is the latest trading request :  specifically it requires the following to get it over the line :  vince , your concurrence with a simplistic var calculation the start - up  period  everybody else , your signatures , or agreement to sign via email  in addition , here is the commercial presentation which wil be attached to the  request on its way to eb 5007  many thanks  dp\",0\n\"Subject: re : fmrc  mark ,  thanks for the info . i shall check it out .  vince  mark courtney  05 / 17 / 2000 03 : 48 pm  to : vince j kaminski / hou / ect @ ect  cc : joe gordon / corp / enron @ enron  subject : fmrc  vince ,  i ran across this during my recruiting at vanderbilt . it is headed by hans  stoll , one of the leading derivative academicians in the country . i looked  at their website briefly and thought you might be interested . i have also  forwarded some email correspondence between dr . stoll and joe gordon , one of  our associates and a former student of his at owen school . we have been very  successful lately in recruiting at vanderbilt , both at the undergrad and mba  levels , and have gotten some high quality people . please let me know if you  have any interest in this and i would be glad to follow up with dr . stoll or  help out in any way i can .  thank you ,  mark courtney  - - - - - - - - - - - - - - - - - - - - - - forwarded by mark courtney / hou / ect on 05 / 17 / 2000 03 : 42  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron north america corp .  from : joe gordon @ enron 05 / 11 / 2000 11 : 33 am  to : mark courtney / hou / ect @ ect  cc :  subject : re : fmrc  mark - -  i dropped the ball as far as getting someone to the april meeting , but i  would to try to get this going .  thanks ,  joe  - - - - - - - - - - - - - - - - - - - - - - forwarded by joe gordon / corp / enron on 05 / 11 / 2000 08 : 42  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  hans stoll on 03 / 20 / 2000 12 : 22 : 36 pm  to : \"\" ' joe . gordon @ enron . com ' \"\"  cc :  subject : re : fmrc  joe ,  thanks for your note .  the purpose of the fmrc is to stimulate research on financial markets and to  provide a link between academic research , real world issues and regulation .  members of the center sit on the advisory board and help direct the research  of the center . they send an unlimited number of participants to center  conferences . our center is unique in its mix of academics , practitioners and  regulators . for members , such as enron , it provides a window on the academic  world , and would give enron an opportunity to stimulate research in the use  of markets in heretofore unusual commodities .  more information on the center can be found at  http : / / mba . vanderbilt . edu / fmrc /  center members include , nyse , nasdaq , cme , some high tech trading firms ,  merrill lynch . . . .  joining the center usually requires a top management decision , but i would  approach it through the research and the trading areas . one way to start is  to see if anyone in a position to recommend joining the center would like to  attend this year ' s conference on april 13 - 14 . the program is on the web  site . ( membership is $ 10 , 000 per year )  appreciate your interest and help .  let me know if we should provide more detail to someone .  regards ,  hans  - - - - - original message - - - - -  from : joe . gordon @ enron . com [ mailto : joe . gordon @ enron . com ]  sent : monday , march 20 , 2000 10 : 45 am  to : hans . stoll @ owen . vanderbilt . edu  subject : fmrc  dr . stoll :  sorry for the delay , but we haven ' t forgotten about your interest in having  enron participate in the fmrc . our holdup is determining who is the  appropriate contact person at enron ( that , and neglect ) . we ' re not sure if  we should approach someone from trading , research , senior management , etc .  also , any additional information on the role the participating firms play  would be helpful .  thanks ,  joe gordon\",0\n\"Subject: wti trading simulation presentation  john ,  i prepared the presentation in the way we discussed on wednesday .  in summary i have included the following scenarios :  tenor : 1 , 3 , 5 years back from nov , 2000  1 , 3 , 5 years back from nov , 1998  1 , 3 , 5 years back from nov . 1995  number of trade per day : 200 , 600 , 1000  bid - offer spread : $ 0 . 04 and $ 0 . 06  net open position allowed : 1 , 000 , 000 and 5 , 000 , 000  volume per trade is fixed at 1 , 000 bbl .  all together , there are 9 * 12 = 108 scenarios included in the presentation .  i will be on vocation starting next week . but i will check my e - mail and  phone  messages to make modifications you need .  happy holidays ,  zimin\",0\n\"Subject: approval is overdue : access request for peter . makkai @ enron . com  this request has been pending approval for 5 days and you are the  alternate . please click  approval to review and act upon this request .  request id : 000000000003997  approver : stinson . gibner @ enron . com  request create date : 10 / 3 / 00 1 : 14 : 27 pm  requested for : peter . makkai @ enron . com  resource name : \\ \\ enehou \\ houston \\ common \\ research - [ read ]  resource type : directory\",0\n\"Subject: re : \"\" analytical \"\" var implementation in risktrac  debbie ,  i am forwarding to you a 2 page document describing implementation of  \"\" analytical \"\" var in risktrac .  here is why this effort is very important :  1 . we need to calculate var for other percentile but 5 ( 1 % or even 0 . 2 % as  mentioned by rick buy )  and our simulation model can not handle required number of simulations ;  2 . we need to present additional risk measures ( such as mean tail loss ) to  the board .  the analytical approach is implemented in a spreadsheet and fully tested  already so there will be no problems  with the algorithm itself .  we need to get together and discuss it implementation .  what do you think ?  tanya\",0\n\"Subject: presentation on metals  - - - - - - - - - - - - - - - - - - - - - - forwarded by leann walton / na / enron on 10 / 26 / 2000 10 : 52  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  alison sealy on 10 / 09 / 2000 10 : 37 : 40 am  to : mraymon @ enron . com  cc :  subject : presentation on metals  hi maureen ,  it was good to meet you last week and hear your presentation on the metals -  full of advice on what to think about and all the various things that affect  the market place . i am only sorry i had to dash off to the airport - good  job i left when i did though as check - in took ages !  anyway , please could you send me through a copy of that presentation either  on email or if it is located on the network somewhere then i could access it  over the intranet ? i will be joining the lme conference tomorrow so am  currently trying to do a bit of reading in preparation .  thanks very much in advance & look forward to seeing the presentation over  here in london .  kind regards  alison\",0\n\"Subject: re : here ' s a 4 th try ! ! !  rick ,  i shall ask my assistant to schedule a meeting early next week .  vince  richard b jones @ ees  02 / 01 / 2001 10 : 23 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : here ' s a 4 th try ! ! !  - - - - - - - - - - - - - - - - - - - - - - forwarded by richard b jones / hou / ees on 02 / 01 / 2001  10 : 22 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  richard b jones  01 / 31 / 2001 04 : 39 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : here ' s a third try ! ! !  vince ,  while i was at hsb , i designed an insurance or reinsurance financial model  that hsb uses for new product development , pricing different reinsurance  strategies , computing stochastic earnings forecast , and estimating  probabilistic maintenance & repair costs . the code , written in visual basic &  ms access belongs to hsb , and i want to replicate it here for our use at  enron . i would like to arrange a time to specifically talk to you and perhaps  vasant who was briefed on the model , about how we can use your group for the  analytical and programming support to get this model re - constructed .  i have screen outputs from the code and vasant thought the re - design and  construction here at enron is a problem that your group can do . could you let  me know when we can setup an hour to discuss ?  thanks ,  rick jones\",0\n\"Subject: re : rice / enron speakers for fall 2001 and spring 2002  david kendrick from the university of texas may be good .  martin  vince j kaminski  04 / 24 / 2001 05 : 11 pm  to : stinson gibner / hou / ect @ ect , vasant shanbhogue / enron @ enronxgate , rakesh  bharati / na / enron @ enron , pinnamaneni krishnarao / hou / ect @ ect , zimin  lu / hou / ect @ ect , iris mack / enron @ enronxgate , martin lin / hou / ect @ ect , lance  cunningham / na / enron @ enron , vince j kaminski / hou / ect @ ect  cc : wangfa @ rice . edu  subject : rice / enron speakers for fall 2001 and spring 2002  any recommendations . please , let me know asap .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 24 / 2001  05 : 09 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  albert wang on 04 / 23 / 2001 12 : 37 : 55 pm  to : vince . j . kaminski @ enron . com  cc :  subject : rice / enron speakers for fall 2001 and spring 2002  hi , vince :  we are considering a preliminary list of speakers for rice / enron seminar  series in finance for fall 2001 and spring 2002 . ? do you have any persons in  mind that you and your group want to include in the list ? ? finance faculty  will meet to finalize the list later .  thanks ,  albert  p . s . : is ronnie chahal still around ? ? she is currently in my enron  distribution list with email address : rchahal @ ess . enron . com . ? i have received  an error message indicating a failure of delivering email to her address .  fu - kuo albert wang  assistant professor  jones graduate school of management - - ms 531 ?  rice university ?  6100 main street ?  houston , tx 77005 ?  phone : 713 - 348 - 5404 ?  fax : ? ? ? ? 713 - 348 - 5251  email : wangfa @ rice . edu  http : / / www . ruf . rice . edu / ~ wangfa /\",0\n\"Subject: access to o ; . . .  vince , this e - mail is to request access to the o : / research / power  meteorlogy / weather temps / txtemps . xls file . . . i was told by tech - support to  e - mail you with this request and everything would get squared away .  daniel , could you please advise on what to do next . thank you . . .  juan  - - - - - - - - - - - - - - - - - - - - - - forwarded by juan padron / na / enron on 09 / 19 / 2000 02 : 17  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  daniel  muschar  09 / 19 / 2000 09 : 14 am  to : juan padron / na / enron @ enron  cc :  subject : access to o ; . . .  i called security again and here is what is happening :  this request is waiting on the approver . stinson gibner :  here is the info on the user we are waiting on .  stinson ? ? gibner  contact info company info  phone : ( 713 ) 853 - 4748 employee type : enron employee  email : sgibner @ enron . com job title : vp research  location : eb 1963 supervisor : kaminski , wincenty j  fax : ( 713 ) 646 - 2503 contract company : ect resources corp  cellular : company number : 0413  pager : cost center : 0000107043 click here for others in cost center  cost center name : na - research group ena  city : houston  bner or vince kaminski are the approvers for this directory\",0\n\"Subject: b 2 b at enron  tom ,  i am sending you the information about our new b 2 b unit .  i have talked yesterday with greg whalley who is heading the new  unit about the e - commerce project at wharton and recommended that enron join  this program .  i have sent him this morning a copy of the materials you gave me .  the meeting with jeff skilling has been pushed till the 2 nd half of july .  i talked to him briefly twice that jeff shankman and i want to discuss with  him building a relationship with wharton . jeff shankman is , by the way , a  great friend of  your institution .  vince  * * * * * * * * * * * * * * * * * * * * * * *  companies & finance : the americas : enron sees bricks and  bytes mix reshaping energy market : purchase of mg only  a start in  building b 2 b platforms , writes hillary durgin :  companies financial times ; 16 - jun - 2000 12 : 00 : 00 am ;  604 words  by hillary durgin  if jeffrey skilling is right ,  enron ' s acquisition of mg is only the tip of the iceberg .  enron ' s president and  chief operating officer is engineering a fundamental  strategy shift at the  houston energy company , aimed at making it a dominant  \"\" new economy \"\"  player across various industrial markets .  the dollars 446 m acquisition last month of mg , the  uk - based metals trader ,  is only the first of more than dollars lbn in estimated  new investments the  company is targeting . it is seeking vehicles on which to  build  business - to - business ( b 2 b ) platforms in sectors such as  logistics , chemicals ,  agricultural products and pulp & paper .  mr skilling wants to take the business model the company  developed in  natural gas and power and apply it to other wholesale  commodity markets . he  argues the electronic platforms it creates will not only  become the principal  b 2 b sites for those sectors , but reshape those  industries .  as an example , he points to enron ' s new e - commerce  platform , enrononline ,  which has changed the way the company does business with  its customers  while significantly increasing sales .  the company - the largest wholesale merchant of natural  gas and power - saw  wholesale , physical deliveries of natural gas surge 53  per cent in the first  quarter .  critics argue that enron ' s move away from its familiar  energy business into  new industries , where the learning curve is steep and the  competition  entrenched , is risky . yet a number of industry analysts  point out enron has  proved it understands markets and how to manage risks  while becoming the  largest importer of coal in the uk , the largest trader of  gas and power in the  us and grabbing an advantage in bandwidth .  \"\" it ' s a prudent strategy , but it ' s got to be done in an  orderly way , \"\" says ronald  barone , analyst with paine - webber in new york . \"\" what  they ' re doing here is  what they ' ve been incredibly successful at doing , \"\" he  adds , noting that enron  posted dollars 1 . 3 bn in earnings before interest and  taxes ( ebit ) from its  wholesale energy and services business in 1999 , up 34 per  cent from the  previous year .  earnings from that division accounted for two - thirds of  the company ' s overall  income before interest and taxes last year , and mr barone  sees the unit ' s ebit  increasing 15 - 30 per cent annually over several years .  as with gas and power and now broadband , where enron is  standardising  contracts and creating a market in bandwidth , it wants to  create markets by  entering as a physical player and providing merchant ,  risk management and  financial services over the internet .  \"\" we will provide electronic commerce , but we will provide  liquidity and we will  provide settlement , or fulfilment of that contract , \"\" mr  skilling says . \"\" that is an  extremely powerful model . if you look at other b 2 b sites ,  they don ' t do that . \"\"  mr skilling argues enron ' s e - commerce platform will  triumph over the other ,  bulletin board - type exchanges , where striking a deal  depends on two parties  hooking up and working through uncertainties over timing ,  price , credit and  fulfilment .  not everyone shares that view . some energy companies , for  example , would  rather not do business with a competitor . bp amoco  recently purchased a 3  per cent stake in altra energy technologies , a houston -  based , neutral  wholesale energy exchange . with koch industries and  american electric  power , it also committed to carry out a fixed volume of  transactions on the  site to lend it liquidity .  just as in gas and power and now broadband and metals ,  enron believes it  needs networks of strategic physical assets . in acquiring  mg , enron got a  stable of warehouses , lending it a strong physical  position .  \"\" it should provide ( mg ) with a more vibrant , more active  physical spot market  in more markets in the world , \"\" says greg whalley , chief  executive officer of  enron net works , the new division enron is launching to  identify and enter  commodity markets . he argues that in metals and other  markets , enron will  deliver better pricing , price risk management services ,  cross - commodity  transactions and flexible transactions for a wider range  of customers .  mr skilling says there are significant rewards for  restructuring an industry .  \"\" if you can take that platform , and you use the  capabilities the bricks bring to  the table , e - commerce the industry and change the  structure , you ' re selling for  more than a 50 multiple . \"\"  copyright , the financial times limited\",0\n\"Subject: re : mba career opportunity  vince ,  thanks for your consideration . please let me know details for the phone  interview at your earliest convenience .  happy thanksgiving .  qing  - - - - - original message - - - - -  from :  to :  sent : tuesday , november 21 , 2000 8 : 45 am  subject : re : mba career opportunity  >  > christine ,  >  > we shall arrange a phone interview with you .  >  > vince  >  >  >\",0\n\"Subject: re : seneca lake storage  deirdre ,  i run two senarios using two different curves .  i got $ 1 . 39 / mmbtu per year for if - cng / north , and  $ 1 . 41 / mmbtu per year for if - cng / n _ cityga .  therefore if we look at 20 years time horizon , the storage  can generate $ 1 . 40 * 1 . 4 * 20 = 39 . 2 mm dollars .  let us discuss if you have any questions .  zimin  enron north america corp .  from : deirdre mccaffrey 06 / 12 / 2000 10 : 45 am  to : zimin lu / hou / ect @ ect  cc :  subject : seneca lake storage  zimin -  the gas assets group is looking at investing in a storage facility in western  ny . here are the specs :  total capacity : 1 , 400 , 000 mmbtus  mdqw : 140 , 000 mmbtus  mdiq : 70 , 000 mmbtus  injection fuel : 1 . 5 %  injection fee : $ . 003  w / d fuel : 0 %  w / d fee : $ . 003  injection curve : cng north city gate  w / d curve : cng north pool point  please call with any questions - x 39685 .  thanks - deirdre\",0\n\"Subject: re : get together this coming tuesday ?  dale ,  please , call me on tuesday . my morning schedule is full but i am open in the afternoon .  vince  \"\" dale m . nesbitt \"\" on 04 / 30 / 2001 01 : 51 : 21 am  please respond to  to : \"\" vincent kaminski \"\" , \"\" kimberly s . watson \"\"  cc :  subject : get together this coming tuesday ?  vince / kim :  i am flying to houston tonight and wondered if it would fit one or both of  your schedules to get together this coming tuesday sometime for 1 / 2 hour or  so . i really want to reinitiate the conversations marketpoint was having  with john goodpasture and you , and he said either or both of you were the  right people to continue after his responsibility shift . john was quite  positive about the idea of enron acquiring marketpoint narg through license ,  and he implied that one or both of you would be carrying the ball in that  direction after he handed it to you .  would this coming tuesday morning at 930 am be a good time for you guys ? if  so , please give me an email shout at the above address or leave a message on  my voicemail at ( 650 ) 218 - 3069 . i think you will be truly impressed with the  scope and progress we have been able to make with both the short run narg  and the long run narg in which you were interested ( not to mention our power  model ) . the progress is noticeable since you saw it . both long and short  term narg are having quite an impact on a number of gas decisions at the  moment ranging from venezuelan lng , north american lng import terminals and  term , gas basis calculations , trading support , power plant development ,  gas - to - power price spreads in key markets , veracity of heat rate trades ,  bank financings , storage field evaluation , and which new pipelines we can  expect to see enter and which are dogs .  i really hope we can fit it in and get our discussions moving in a mutually  productive direction again . i think narg can help you become even more  successful , and i look forward to working with you .  we have a new office address and new phone number as well . ( we move in may  1 . )  altos management partners  95 main street , suite 10  los altos , ca 94022  ( 650 ) 948 - 8830 voice  ( 650 ) 948 - 8850 fax  ( 650 ) 218 - 3069 cellular  give the phones a week or so to get \"\" debugged \"\" and then switch over .  dale\",0\n\"Subject: @ jones : news and information from the jones school  @ jones : news and information from the jones school  february 15 , 2001  forbes magazine survey request  financial times rankings : jones school is in top ten in four categories ;  35 th of 51 u . s . schools and 54 th of world ' s best 100 mba programs .  digital technology panel : february 20  2001 alumni weekend : march 2 - 3  lecture - - gordon bethune , ceo , continental airlines : march 5  lecture - - bruce dunlevie , founder , benchmark capital : march 12  neuhaus lecture - - c . k . prahalad , professor , university of michigan : march  19  dean ' s lecture - - rodney eads , executive vice president , el paso corp . :  april 11  black leadership conference : april 27  rice alliance continues expansion of network , enhances services  seven rules for success in the new economy  tips on financial risk management by marc shapiro , vice chairman , j . p .  morgan employed at three months ; finance ;  entrepreneurship . overall , the jones was ranked 35 th of 51 u . s . schools and  54 th among the world ' s best 100 graduate business schools .  the yale club of houston and the jones school hosts a panel discussion on  digital technology at 6 p . m . on tuesday , february 20 at 124 herring hall .  rsvp by february 16 . cost is $ 20 for jones school alumni and $ 25 for  non - members / guests .  the 2001 alumni weekend reunion will be held march 2 - 3 , 2001 . register by  feb . 16 . http : / / jonesgsm . rice . edu / alumni / alumni _ weekend 2001 . html .  gordon bethune , ceo of continental airlines , will speak at the jones school  at 9 : 45 a . m . on monday , march 5 at 124 herring hall . alumni and students are  invited to attend the lecture .  bruce dunlevie , founder and general partner of benchmark capital , will  speak at noon on monday , march 12 at the farnsworth pavilion , rmc / ley  student center . jones school students and alumni are invited to attend .  c . k . prahalad , harvey c . fruehauf professor of business administration at  the university of michigan business school in ann arbor , will deliver the  2001 w . oscar neuhaus lecture at 9 : 45 a . m . on monday , march 19 , 124 herring  hall .  rodney w . eads , group executive vice president of merchant energy and  production for el paso corp . , will speak at the dean ' s lecture series  scheduled for 9 : 45 a . m . on wednesday , april 4 at 124 herring hall .  this year ' s black leadership conference , scheduled for april 27 , brings  together mbas , lawyers , accountants , engineers , healthcare professionals ,  educators , and entrepreneurs from houston to discuss key issues facing black  professionals . last year ' s keynote speakers include ambassador cynthia  shepherd perry , honorary consul general to senegal and ambassador berhane g .  christos , ambassador of ethiopia .  the rice alliance for technology and entrepreneurship enters its second year  determined to enhance services that have promoted the entrepreneurial spirit  in the rice community and in houston . the alliance brings together students ,  faculty , alumni and other rice - associated parties as collaborators , mentors  and investors in engineering , science , software , or e - commerce innovations .  murray weidenbaum , founder and chairman of the murray weidenbaum center on  the economy , government , and public policy , joins the jones  school as the ken lay , vinson & elkins visiting scholar through may 31 . a  noted expert on american and global economics and top adviser on economic  issues during the nixon and reagan administrations , weidenbaum is working on  a study of u . s . and international trade policy , developing a high middle  ground in a controversial area .  marc j . shapiro , vice chairman , j . p . morgan & chase , talked about six tenets  of success in financial risk management at the jan . 22 dean ' s lecture .  a distinguished panel of e - commerce and energy industry leaders addressed  current trends and the future of e - commerce at the jan . 10 forum \"\" 2001 : an  internet odyssey \"\" jointly hosted by the rice alliance for technology and  entrepreneurship , the jones school , rice university executive education , and  texasecomm .  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  online :  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  visit the construction web cam url for up - to - the - minute live feeds of the  new jones school building construction .  learn about new and upcoming initiatives and programs at the school , and  view artist renderings of the new $ 60 million building , currently under  construction . http : / / jonesgsm . rice . edu / campaign / campaign . html  @ jones : news and information from the jones school , the jones school  e - newsletter , is published monthly by the public relations department of the  jesse h . jones graduate school of management . the jones school website  http : / / jonesgsm . rice . edu is updated frequently and we  encourage you to visit the site regularly to get the latest news and  information about new initiatives and programs at the jones school . to  submit items to be posted on the jones school website , please e - mail  jgsmnews @ rice . edu .\",0\n\"Subject: visit to carnegie mellon  dear dr . kaminski :  pierre ste - marie tells me he has invited you to visit carnegie mellon . i  would just like to emphasize how much we hope you can arrange a visit . we  have had the good fortune of attracting outstanding students into our  master ' s program in computational finance , and i think you will enjoy  meeting them . last year alexander eydeland visited , and at the conclusion  of the year hired one of the students . i look forward to meeting you .  sincerely yours ,  steve shreve  steven e . shreve  department of mathematical sciences  carnegie mellon university  pittsburgh , pa 15213 - 3890  e - mail : shreve @ cmu . edu  direct telephone : 412 - 268 - 8484  department telephone : 412 - 268 - 2545  fax : 412 - 268 - 6380\",0\n\"Subject: re :  i have you scheduled .  dolores  vince j kaminski  08 / 30 / 2000 08 : 13 am  to : dolores muzzy / hou / ect @ ect  cc : shirley crenshaw / hou / ect @ ect , vince j kaminski / hou / ect @ ect  subject : re :  dolores  please , register me for a session on 9 / 29 / 2000 at 12 : 45 .  vince kaminski  celeste roberts  08 / 29 / 2000 06 : 21 pm  to : celeste roberts / hou / ect @ ect  cc : ( bcc : vince j kaminski / hou / ect )  subject :  urgent  the associate and analyst recruiting department will be conducting a number  of two hour workshops to review our recruiting and interview process for the  fall on - campus recruiting effort . critical information regarding our  on - campus interview process , revised evaluation forms and program structure  will be reviewed during these two hours sessions .  it is mandatory that all team members attend these workshops . all team  members must attend in order to articulate and demonstrate the enron  recruiting process . knowing how busy schedules are , we have made  arrangements to present these workshops in two hours sessions for a total of  40 workshops that will run during the last week of august , through the month  of september and end at mid october .  listed below are the dates , location and times for each session . please  select a date and time and e - mail this information to my assistant , dolores  muzzy . we can accommodate 25 participants at a time . dolores will take  dates and times on a first come , first serve basis . we have scheduled enough  sessions to accommodate every member of both the associate and analyst  recruiting teams .  in order to participate in the recruiting process , you must attend one of  these sessions . we will be tracking participation . cpe credits will also be  given for attending this workshop .\",0\n\"Subject: thanks again  vince :  i ' m looking forward to getting your outline on the economic paradigm . i hope  that , among all the paper i ' ve bombarded you with over the last few weeks , i  have included a reprint of a fall 1998 jacf article entitled \"\" how to use eva  in the oil and gas industry . \"\" if this is not among the things i have left you  with , i ' d be happy to send you a copy .  the discussion of hydrocarbon reserve values is very much along the lines we  have been discussing .  best regards ,\",0\n\"Subject: vol skew no - arbitrage constraints  the attached note lists conditions that can be used to verify that a given vol skew curve does not generate arbitrage opportunities in a strip of option prices .  if you have questions or want to discuss implementation , please give me a call .  bob lee  x 35163\",0\n\"Subject: harvard business school - - enron case study - - ' final ' draft  friends ,  attached is the \"\" final \"\" draft of the harvard business school case study  prepared by harvard professor chris bartlett and his research assistant meg  wozny . [ please scroll down to the end of the next message for the attachment ]  . the content was developed from interviews with most of you .  please review the case and let me know of any desired  edits / corrections / comments as soon as possible . [ one obvious correction is  the spelling of cindy olson ' s last name ] .  we ' d like to \"\" sign off \"\" on this within the next 2 or 3 days . harvard  professors are excited about teaching this case this coming semester . in  fact , professor don sull will be focusing largely on this enron case this  semester , culminating in \"\" enron day \"\" at harvard business school april 26 th ,  featuring jeff skilling . also , chris and meg will be in houston this  thursday , jan . 11 th , ' capping off ' their work with video interviews with ken ,  jeff and louise , which will help \"\" bring the case to life \"\" for the students  studying it .  please forward any edits / corrections / comments to me via e - mail or via hard  copy ( please deliver to eb 4710 , or call me [ 3 - 6117 ] and we ' ll have it picked  up ) .  thanks to everyone for all your contributions to this exciting work !  - - christie .  - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 01 / 08 / 2001  09 : 57 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  meg wozny on 01 / 08 / 2001 09 : 31 : 00 am  to : christie . patrick @ enron . com  cc :  subject : re : enron case study  christie :  congratulations ! i don ' t know how you manage to work full - time at enron  and study for a phd at the same time . sounds superhuman to me !  the fedex was marked for saturday delivery , but in case you haven ' t  received it yet , i ' m enclosing the draft as an attachment .  it would be great if we could get enron ' s approval during our visit . ( i  know professors at hbs are interested in teaching that case as soon as it ' s  available . )  thanks for all your help , and let me know if you have any questions ,  comments , etc .  best ,  meg  at 09 : 12 am 1 / 8 / 01 - 0600 , you wrote :  > meg . . . just got back in the office - - - anxiously looking for the package ! !  >  > i finished my phd ( psychology @ usc ) class work last week - - i made my last  case presentations this past friday ! ! now i only have my dissertation to  go ! . . . hooray !  > looking forward to seeing you and chris thursday !  >  > - - christie .  - latest draftl . doc  * * * * * * * * * * * * * *  meg wozny  research associate  harvard business school  gallatin lounge c  soldiers field  boston , ma 02163  voicemail : ( 617 ) 496 - 0802  facsimile : ( 617 ) 496 - 6943  email : mwozny @ hbs . edu\",0\n\"Subject: research get - together at sandeep kohli ' s new home  hello everyone :  here is your invitation and a map to sandeep ' s home .  see you saturday !\",0\n\"Subject: action learning project  congratulations ! your company project was selected by the students for the  2001 action learning project program at rice university . the company day was  a huge success last week , and we appreciate all your time and effort . on  monday , january 22 , we will send you a list of your team members via email  with a hard copy to follow . student team members will be in touch soon so  that you can plan your first meeting .  thanks for your continued support and interest in the jones school .  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  carrie chamberlin miller  director of mba program  jesse h . jones graduate school of management  rice university  6100 main street , ms 531  houston , texas 77005 - 1892  phone : ( 713 ) 348 - 5260  fax : ( 713 ) 348 - 5251  e - mail : cmiller @ rice . edu  http : / / www . ruf . rice . edu / ~ jgs /\",0\n\"Subject: message from john martin  - - - - - forwarded by cindy derecskey / corp / enron on 10 / 26 / 2000 06 : 32 am - - - - -  \"\" john martin \"\"  10 / 25 / 2000 06 : 58 pm  to :  cc :  subject : re : enron case study  cindy ,  great to hear from you and i look forward to getting our interviews done . i  am answering this from a hotel in seattle so i don ' t have questions for you  at this time but can get them together for you . i will contact vince next  week and get a set of questions together for each of the three individuals  you mentioned . i will have to talk to vince about others who would be of  interest to interview . i really appreciate your help in getting this  together and i ' ll work hard to get everything together for you next week . i  don ' t have vince ' s e - mail address with me here so i would appreciate your  forwarding this message on to him for me .  thanks again ,  john  - - - - - original message - - - - -  from : cindy . derecskey @ enron . com [ mailto : cindy . derecskey @ enron . com ]  sent : wednesday , october 25 , 2000 11 : 23 am  to : j _ martin @ baylor . edu  cc : christie . patrick @ enron . com ; vince . j . kaminski @ enron . com  subject : enron case study  importance : high  good morning mr . martin ,  i would like to introduce myself . i currently work with christie patrick  and michael b rosen in the enron university affairs department .  in recent discussions with christie , she has suggested that i liaise with  you and our management in preparation for your and vince kaminski ' s case  study . christie has forwarded recent emails sent by you suggesting a few  convenient times that work with your schedule . i will work with our  management and do my best to schedule one hour time slots for interviews  that fit with your outline .  initially , i will schedule interviews with : ken lay - chairman and ceo ,  jeff skilling - president and coo , and andy fastow - cfo . if you feel that  you may need to speak with additional management , we will definitely try to  work something out the same day , so you don ' t have to travel back here . i  will forward your project outline to the aforementioned participants once  the interviews are scheduled . do you anticipate drafting specific  questions ? if so , i would greatly appreciate a copy when convenient .  i greatly look forward to working with you and i hope that we can touch  base very soon .  regards ,  cindy derecskey  enron university affairs  ( 713 ) 853 - 5670\",0\n\"Subject: summary of dabhol lenders ' presentation  vince / stinson ,  please find below a summary of the presenation given to lenders at the april  23 rd meeting in london .  the key points that emerge are :  phase ii will require commitments of about $ 700 mm to complete ( phase i + ii  total $ 3 . 2 billion )  several commercial issues are getting severe in the current environment in  india , could result in cost escalations  makes the case that mseb does not have the financial strength to absorb phase  ii power  management to seek authority to serve preliminary termination notice ( ptn ) ,  triggering a 6 month cure period  a copy of the full presenation is available .  regards ,  sandeep .\",0\n\"Subject: re : presentation  will do - - thank you very much .  dawn  from : dawn scovill , event coordinator  designs event consulting  dawn @ perfectmeeting . com  - - - - - original message - - - - -  from : vince j kaminski  to :  cc : ; vince j kaminski  ;  sent : friday , march 17 , 2000 5 : 38 pm  subject : re : presentation  >  >  > david ,  >  > i am leaving for vacation this weekend and i haven ' t received the copy of  your  > presentation yet .  > the window during which i could make changes to my presentation is closing  very  > fast . let ' s  > do the following : i shall keep my presentation as is ( this means that i  shall  > use the copy of my  > presentation i sent to dawn scovill and you this week ) . if there is an  overlap  > between our presentations , so be it .  >  > dawn , please use the copy of my presentation i sent you earlier this week .  >  > vince  >  >  > - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 17 / 2000  04 : 33  > pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  >  >  > vince j kaminski  > 03 / 16 / 2000 08 : 02 am  >  > to : \"\" dawn scovill \"\" @ enron  > cc : sobotkad @ kochind . com , vince j kaminski / hou / ect @ ect  > subject : re : presentation ( document link : vince j kaminski )  >  > dawn ,  >  > i met david sobotka from koch this morning and we talked about  coordinating our  > presentations .  > this means there will be changes intended to avoid overlaps . sorry for  that . the  > portions of my presentation  > will survive ( those about valuation paradigms ) and i shall add a few more  pages  > on accounting treatment of weather derivatives  > plus more specific examples . david will cover primarily market evolution +  plus  > examples of some  > standard structures , and we shall both give more interesting examples of  > specific deals executed by our companies .  >  > i shall send you an updated version of my part next week . let me know what  the  > deadline is .  >  > vince  >  >  >  > \"\" dawn scovill \"\" on 03 / 14 / 2000 07 : 53 : 47 am  >  > to : \"\" vince j kaminski \"\"  > cc :  > subject : re : presentation  >  >  > thanks - - would you like me to include these in the conference book ? or do  > you anticipate changes ?  >  > dawn  > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  > from : dawn scovill , conference coordinator  > \"\" powerful new ideas 2000 \"\"  > dawn @ perfectmeeting . com  >  >  > - - - - - original message - - - - -  > from : vince j kaminski  > to :  > cc : shirley crenshaw ; vince j kaminski  > ; vince j kaminski  > sent : monday , march 13 , 2000 1 : 56 pm  > subject : presentation  >  >  > >  > >  > > dawn ,  > >  > > i am sending you an electronic version of my presentation .  > >  > > vince kaminski  > >  > > ( see attached file : fplo 400 . ppt )  > >  >  >  >  >  >  >  >  >\",0\n\"Subject: vince ,  i ' ll see you around 8 : 45 in the morning . meanwhile , the attached file  contains the latest draft of our questions . please run us a copy .  thanks ,  john  - enroninterview . doc\",0\n\"Subject: letter for lloyd  shirley ,  please , add the date at the right place .  vince\",0\n\"Subject: re : i am zhendong  zhendong ,  thanks . please , send me your updated resume as well .  vince  zhendong xia on 04 / 11 / 2001 09 : 14 : 01 pm  to : vince . j . kaminski @ enron . com  cc :  subject : i am zhendong  hi , dr . kaminski :  i am zhendong , the student of dr . deng . i think dr . deng has sent my  resume to you . i am very happy to have an opportunity to work with you  this summer .  i am a student in both ms qcf and ph . d eda programs in georgia tech  now . i plan to find a job in industry instead of academic after my  graduation . so i intend to do internship during the process of prusuing my  degree to acquire some experience for my future career .  i hope to start on 5 / 14 / 2001 and end on 8 / 17 / 2001 .  thanks a lot .  zhendong xia  georgia institute of technology  school of industrial and systems engineering  email : dengie @ isye . gatech . edu  dengie @ sina . com  tel : ( h ) 404 - 8975103  ( o ) 404 - 8944318\",0\n\"Subject: hello from enron  dear dr . mcmullen ,  a few weeks ago i received a call from your university  regarding employment opportunities at enron .  i called back and summarized the needs of my group ( an ideal profile of a  candidate ) :  1 . mathematical finance  2 . computer programming ( c , c + + )  3 . understanding of the energy markets  i shall appreciate any information about potential candidates .  i have also given some other suggestions regarding potential  opportunities for graduates with different profiles .  please , feel free to call me . my number is 713 853 3848 .  vince kaminski\",0\n\"Subject: re : hello from vince kaminski at enron  dear vince .  i sent you a reply earlier this month but i haven ' t heard from you about the  date of your visit . our department has a seminar every monday . if you can  schedule your visit on a monday i would like to invite you to give a seminar  which will be attended by many of our graduate students and faculty and will  give you an opportunity to tell them about your program . with sufficient  lead - time i can advertise the seminar in the hass school to their financial  engineering students .  shmuel .  shmuel s . oren , professor  dept . of industrial engineering  and operations research  4117 etcheverry hall  university of california  berkeley , ca 94720 - 1777  e - mail : oren @ ieor . berkeley . edu  phone : ( 510 ) 642 - 1836 or 5484  fax : ( 510 ) 642 - 1403  - - - - - original message - - - - -  from :  to : ; ;  sent : tuesday , august 08 , 2000 10 : 59 am  subject : hello from vince kaminski at enron  > shmuel ,  >  > i hope you remember me . i visited you together with aram sogomonian , a  > good friend of mine , a few years ago . i am currently responsible , among  > other things , for recruiting graduates with finance and / or technical  > backgrounds at the university of berkeley . i would be glad to give you a  > call and talk more about the details of our program . my colleague ,  > ashleybaxter , from the analyst / associate program at enron would join me  > as well .  >  > i am sending you a copy of the brochure about the analyst / associate  > program .  >  > vince kaminski  >  >  > vincent kaminski  > managing director - research  > enron corp .  > 1400 smith street  > room ebl 962  > houston , tx 77002 - 7361  >  > phone : ( 713 ) 853 3848  > fax : ( 713 ) 646 2503  > e - mail : vkamins @ enron . com  >\",0\n\"Subject: calendars and reviews  could all of you please give access to your calendars ( lotus organizer ) to  anita dupont , and also make sure that if you step away from your desk that  your calendar indicates where you will be ? it has happened a few times  recently that people have come for appointments and the person has been away  from his / her desk and anita could not get hold of the person . this does not  portray a good image of the group . also , if you have cell phones , please  make sure anita has the number .  also , please make sure to complete your self - assessment performance review ,  and either indicate list of projects worked on since june in there or at  least separately e - mail me a list .  thanks ,  vasant\",0\n\"Subject: enron on line and tracking  this meeting has been rescheduled for :  friday , january 7 th  2 : 15 - 3 : 15 pm  eb 3084  if you have questions please call george smith @ 36993  or alex @ 57389 . i will keep you informed of any changes .  thanks  alex  - - - - - - - - - - - - - - - - - - - - - - forwarded by alex saldana / hou / ect on 01 / 05 / 2000 12 : 10  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  alex saldana  01 / 05 / 2000 11 : 30 am  to : george smith / hou / ect @ ect , edward terry / hou / ect @ ect , katherine l  kelly / hou / ect @ ect , robert superty / hou / ect @ ect , randall l gay / hou / ect @ ect ,  hunter s shively / hou / ect @ ect , scott neal / hou / ect @ ect , robert  shring / hou / ect @ ect  cc : heather choate / hou / ect @ ect , kimberly brown / hou / ect @ ect , airam  arteaga / hou / ect @ ect , brenda flores - cuellar / hou / ect @ ect , elizabeth  rivera / corp / enron @ enron  subject : enron on line and tracking  please plan to attend the above mentioned meeting :  thursday , january 6 th  3 : 30 - 4 : 30 pm  eb 3013  if you have any questions please call george smith @ 36993 ,  for any scheduling conflicts call me at @ 57389 .  thanks  alex\",0\n\"Subject: ebs goes live ! . . . 15 , 000 will be impacted on 7 / 1 / 00  enron broadband services is the latest addition to the enron sap rollout .  the apollo and beyond project team and enron ' s business units are currently  preparing for the project ' s final implementation . apollo and beyond is an  enron initiative tasked with laying a common financial , human resources ,  project management , and procurement foundation throughout the majority of  enron ' s businesses .  ebs \"\" go - live \"\"  on april lst , enron broadband services supplemented their current sap  functionality with hr online and sap hr , including payroll and organizational  structure management . hr online enables the ebs population to enter their  own time , view and update their personal information , and view their vacation  time and individual payroll information via enron ' s intranet .  additionally , this implementation enhanced the sap financial , project and  procurement processes that ebs has had in operation since april 1 , 1999 .  these enhancements included an ebs pilot of b 2 b , a web - based requisitioning  tool . among the benefits of these enhancements will be improved information  flow across business units currently on sap .  july 1 \"\" go - live \"\"  this final apollo and beyond implementation will directly impact more than  15 , 000 enron employees and contractors - - odds are that you are one of them !  people impacted on july lst include :  all enron employees paid out of corporate payroll in houston , excluding  azurix employees  the financial communities of enron energy services , enron investment  partners , enron north america , enron renewable energy corporation , gas  pipeline group , global finance , and global products .  the project management communities of enron north america , gas pipeline  group , global asset operations , global finance , and global products .  the human resources communities of corporate , global e & p , enron energy  services , enron engineering and construction company , enron investment  partners , enron north america , enron renewable energy corporation ( houston  only ) , the international regions , gas pipeline group , global finance , and  global products .  general sap training will be available in late april via the enron intranet .  additional , specific , sap classes and workshops are scheduled to begin in may  and continue through august . information on the project can be obtained  through the enron intranet at http : / / sap . enron . com and by contacting business  unit representatives currently working with the project . a list of business  unit representatives is located on the intranet site .  additional information related to the july lst implementation will be  communicated to you over the next few months .  thank you .  melissa becker  project leader , apollo and beyond\",0\n\"Subject: power 2000  power 2000 - may 8 - 11  ?  please note to hand in the following by no later than april 24 :  ?  presentation ( s ) ( if you are not giving one , please advise )  biography  speaker checklist  ?  as some portions of materials have already been handed over , please only  turn in what you haven ' t already submitted . please also note that if  emailing a powerpoint presentation , please email it in a 97 version or  lower . ? ? ? ? ? ? ?  ?  it is urgent that all your materials be sent by this monday , as the  conference is rapidly approaching . if you have any questions , please contact  me to further discuss . i will be out of the office this thursday and friday  but will be returning on monday . ?  ?  ?  regards ,  amy lamonsoff  conference coordinator  t ( 212 ) 925 - 1864 xl 48  f ( 212 ) 925 - 7585  alamonsoff @ watersinfo . com  ? ? ? ? ? ? ? ? ? ?\",0\n\"Subject: mike roberts  john ,  i have received your message regarding mike roberts . i could not  agree more . mike deserves to be compensated for his exceptional  contribution .  additional recommendation . i think that all weather forecasting support  should be consolidated under mike ( including the weather guys supporting  power trading ) . in my view , it was a mistake to remove mike from  power support . it would also mean a lot to him personally .  vince\",0\n\"Subject: vince ,  this morning i got a call from richard bryant , director of computational  finance  program at carnegie mellon university ( the program kevin and i went through ) .  he ' s interested in getting enron involved with their program designing and  ( more critically i guess ) campus recruiting effort . i gave him your phone  number  and email . you can expect to hear something from him soon .  best ,  alex\",0\n\"Subject: christmas baskets  kevin :  i do not know who half of these people are !  my list would be :  move team  susan kennedy and judy schlesinger ( order all of our subscriptions )  demonica lipscomb ( video scheduling - should include stuart )  dave delainey  mail room  help desk ( our tech is : doug doring )  facilities help desk ( don ' t know who )  marriott ( trina - she takes care of all the lunches we order )  i don ' t think we need to give the ozarka guy one , we have several  who deliver down here , it is not always the same one .  vince probably has more , i will let you know .  thanks !  shirley  kevin g moore  11 / 03 / 2000 12 : 00 pm  to : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , mike a  roberts / hou / ect @ ect , stinson gibner / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect  cc :  subject : new listing  goodmorning everyone ,  last year we did quite a bit of christmas baskets , during the time we were in  the process of  another major move .  we are currently settled on all floors now , therefore our christmas basket  list will be cut more than half .  here are a list of the names that received baskets last year .  matt rodgers  chris hyde  darren prager  charlie notis  harvey freese  jon davis  maryam golnarghi  delores sustaita rodney keys iain  russell trina williams todd  butler pamela ford facilities  robert knight phillip randle mary  martinez daniel hornbuckle ( ozarka )  guy move - team  greg whalley  richard weeks  mary sue rose  there are several names boldly printed that probably will not receive the  baskets this year .  the christmas season is approaching therefore we must start preparing  .  please note that i will be out on vacation dec 13 th - 18 th , if possible i  would like your list of names  before my vacation begins whereby all baskets can arrive at their  destinations on time .  thanks  kevin moore  please any comments , question , answers - feel free to call x 34710\",0\n\"Subject: help on cluster analysis  just wanted to pass a quick note to say thanks for all of your help that the  three of you each gave me concerning cluster analysis . your help was  invaluable . as you may have been aware , we were performing the cluster  analysis to define the commercial zones in ercot . i only had a few days in  which to learn the fastclus procedure in sas and prepare graphical views of  the results .  your assistance ensured that enron was seen as one of three market leaders  who had the capability to perform the analysis and cross check other market  participants analysis . we were the only participant who had the ability to  graphically display the results .  i was able to take the lead in a commercial meeting because of the data and  results . i just wanted you guys to know that i really appreciated your help .  i have attached a couple of files that show some of the results . the  presentation has the best overview .  best regards ,  lance\",0\n\"Subject: re : real options  hi navroz  having presented my real options work at a recent conference , i think i can  see my way clear to producing a much reduced version ( 3 or 4 pages ) of my  \"\" diagrammatic real options \"\" paper . would risk still be interested in such a  shortened article ?  cheers ,  steve  enron capital & trade resources corp .  from : \"\" navroz patel \"\"  05 / 23 / 2000 11 : 37 am  please respond to \"\" navroz patel \"\"  to :  cc :  subject : real options  steven ,  after further consultation with the technical editor , we feel that your work  would find a more suitable environment for exposure in the journal of risk .  ?  if you email a copy of your work ( to the editor - in - chief , philippe jorion )  and outline what has happened to :  ?  ? pjorion @ uci . edu  ?  then i am sure that they will be keen to give due consideration .  ?  thank you for your interest and sorry for the delay in coming to this  decision .  ?  best wishes ,  ?  navroz patel ,  technical assistant , risk magazine .  ?\",0\n\"Subject: good morning / afternoon  vince ,  one of my colleagues here at baylor is writing a book about \"\" the business  of heaven \"\" in which he interviews prominent business leaders . bob darden  is his name and he ' s a former journalist and nice guy . he would like to  contact ken lay about being one of his interviews . do you think this is  possible ? if so , could you give me an address / phone numbers that bob might  use to contact ken ' s secretary about setting up an interview ?  if this is in any way \"\" not ok \"\" please just say so .  see ya ,  john  > date : fri , 30 mar 2001 11 : 35 : 03 - 0600  > from : robert darden  > subject : yo !  > x - sender : \"\" robert darden \"\" ( unverified )  > to : j _ martin @ baylor . edu  > organization : the door  > x - mailer : mozilla 4 . 04 [ en ] c - flashnet ( win 95 ; i )  >  > hi john - - i enjoyed our meeting yesterday . this looks very promising .  > meanwhile , as i mentioned at the table , i ' m getting a little nervous  > about the book that is due june 1 .  > one of the names on our \"\" wish \"\" list of interviewees for \"\" the business of  > heaven \"\" is ken lay at enron .  > would it be possible for you to give me a good address and phone number  > for mr . lay ' s office ?  > and may i mention your name in the cover letter ?  > i would be forever indebted . i might even buy the next lunch .  > bob  > p . s . thanks for sharing your concerns about church yesterday , too . i ' m  > genuinely sorry things didn ' t work out better and feel more than a  > little embarrassed that i didn ' t work harder to make you guys feel more  > welcome and connected . on the other hand , please know that mary and i  > will always love you and consider you both friends . i know you ' ll be  > happy at lake shore - - even as we miss you at 7 th !  >  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: re : lawyer  ian ,  sorry for a delay in getting back to you .  i have one challenge i did not anticipate  when i talked to you the first time about our real options  internal seminar .  the materials were prepared in collaboration with a professor  from another school , and there is some sensitivity regarding  the intellectual property rights and the ability to distribute the materials  outside enron .  please , give me some time to find out if i can work  around this issue .  vince  \"\" macmillan , ian \"\" on 03 / 07 / 2001 06 : 46 : 28 am  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc :  subject : lawyer  i still have not heard from your lawyer . i would like to see whar materials  you are using and assess how we could work on the topic of real options with  enron\",0\n\"Subject: cera conference call - - scheduled for wednesday , march 8 , 2000 -  cera conference call  cera conference call : wed , march 01 , 2000  title : cera conference call - - scheduled for wednesday , march 8 , 2000  author : cera  e - mail category : conference call  product line : north american gas , north american power , refined products ,  url : http : / / www . cera . com / cfm / track / eprofile . cfm ? u = 5166 & m = 1109 ,  http : / / www . cera . com / cfm / track / eprofile . cfm ? u = 5166 & m = 1110 ,  http : / / www . cera . com / cfm / track / eprofile . cfm ? u = 5166 & m = 1111 ,  conference call and web presentation  scheduled for wednesday , march 8 , 2000  topic  northeast us energy markets : implications of the winter price spikes  cera is pleased to invite you to participate in a conference call and web  presentation with our experts on global energy . we will be discussing :  * understanding the winter price spikes in electric power , natural gas , and  oil products markets in the northeast us  netscape navigator 3 . 02 or higher ; or sun hot java ( tm )  * close all desktop applications and disable your screen saver  technical assistance  if you are calling from the united states and are experiencing difficulties  during the call , you may signal for technical assistance by pressing * 0  ( star , zero ) on your telephone keypad after you have connected to the audio  portion of the conference . international callers please re - dial into the  call , asking the operator for assistance before giving the confirmation code .  for more information  for more information , please contact kari paakaula via e - mail at  kpaakaula @ cera . com or via telephone at ( 617 ) 441 - 1362 .  a recording of this call will be available until april 8 , 2000 . to access  this recording , please call 1 - 888 - 203 - 1112 ( within the us ) or ( 719 ) 457 - 0820  ( outside the us ) . please use confirmation number 915415 to access the call .  * * end * *  follow url for html version of this message only .  note : should the above url not work , please use the following :  http : / / www . cera . com / client / nap / cc / 022900 _ 16 / nap _ cc _ 022900 _ 16 _ ab . html [ for  north american electric power clients ]  http : / / www . cera . com / client / nag / cc / 022900 _ 16 / nag _ cc _ 022900 _ 16 _ ab . html [ for  north american natural gas clients ]  http : / / www . cera . com / client / rp / cc / 022900 _ 16 / rp _ cc _ 022900 _ 16 _ ab . html [ for  refined products clients ]  this electronic message and attachments , if any , contain information  from cambridge energy research associates , inc . ( cera ) which is  confidential and may be privileged . unauthorized disclosure , copying ,  distribution or use of the contents of this message or any attachments ,  in whole or in part , is strictly prohibited .  terms of use : http : / / www . cera . com / tos . html  questions / comments : webmaster @ cera . com  copyright 2000 . cambridge energy research associates\",0\n\"Subject: joao neves  dear vince :  ?  i am in a somewhat delicate position . one of the people in the group here  has asked me to introduce him to you . ? as an el paso vice president , i  should not have agreed to do this , and frankly , the guy should not have  asked . ? but he is clearly very unhappy at el paso , so , as a human being , i  felt it was appropriate . also , because this guy would have contacted you  anyway , with or without my introduction , as a professional courtesy , i would  like you to benefit from my experience with this fellow .  ?  the guy ' s name is joao neves ( portugese ) . ? i think he is reasonably bright  and seems to have a quite deep understanding of general finance and  financial mathematics . he is a manager and feels very frustrated because he  had hoped to be promoted to a position of authority . instead the group ' s  m . d . brought in two price - waterhouse - coopers consultants as v . p ' s to run the  structuring and quant sides of the group . in this respect , i can understand  his unhappiness . unfortunately for him , however , i also think it is in his  nature to whine . ? i have observed him to bad mouth lots of people starting  with the it guys ( ok , that ' s perhaps not much an indictment ! ) all the way to  dismissing broadie & glasserman ' s or eduardo schwartz ' works as shoddy or  shallow . ? he does not seem to suffer well people he considers fools . ? caveat  emptor , therefore ! having said all this , i do want to emphasize that he is a  bright guy , is very pleasant with me , and , perhaps given the appropriate  environment and supervision , might be quite productive . ? but don ' t take my  word for it . talk to him , and see what you think . ? obviously , i would ask  that you keep these comments in confidence . i have given you an honest  assessment - - brutally so .  ?  ' nuff said ! i have fulfilled my moral obligations both to joao and to you .  ?  best regards ,  grant .\",0\n\"Subject: welcome to pjm - customer - info  - -  welcome to the pjm - customer - info mailing list !  please save this message for future reference . thank you .  if you ever want to remove yourself from this mailing list ,  you can send mail to with the following  command in the body of your email message :  unsubscribe pjm - customer - info  or from another account , besides vince . j . kaminski @ enron . com . :  unsubscribe pjm - customer - info vince . j . kaminski @ enron . com .  if you ever need to get in contact with the owner of the list ,  ( if you have trouble unsubscribing , or have questions about the  list itself ) send email to .  this is the general rule for most mailing lists when you need  to contact a human .  here ' s the general information for the list you ' ve subscribed to ,  in case you don ' t already have it :  this mailing list is maintained by the pjm interconnection l . l . c .  to communicate information about pjm and pjm ' s upcoming events .\",0\n\"Subject: re : cover design / copy for energy derivatives publication  fiona ,  to answer your questions :  1 . we approved chapter 3 for publication .  2 . my current affiliation is enron n . a . grant left the company but my advice  it to leave his bio as is ( it reflects his employment status when he was  working on the chapter ) .  i don ' t think we should update the bio and advertise his new employer .  3 . ad material is fine .  vinnce\",0\n\"Subject: visit with vince kaminski on may 4 th  carol :  for your information and susan ' s , christie patrick will not be available on the  4 th of may . she will be out of the city . maybe susan can contact her directly  at another time .  i still have 1 : 30 as the time for vince and susan to meet .  thanks !  shirley crenshaw  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 09 / 2001 03 : 30 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  shirley crenshaw  04 / 09 / 2001 11 : 14 am  to : susan . hansen @ stanford . edu  cc :  subject : visit with vince kaminski on may 4 th  good morning susan :  vince forwarded the below message to me and after looking over his  calendar , he appears to be free most of the afternoon on the 4 th of may .  please let me know what would be a good time for you and i will block  it out before someone else gets it .  thanks !  shirley crenshaw  administrative coordinator  enron research group  713 - 853 - 5290  email : shirley . crenshaw @ enron . com  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 09 / 2001 11 : 05 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  04 / 06 / 2001 05 : 36 pm  to : \"\" susan c . hansen \"\" @ enron  cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect  subject : re : visit from stanford ?  susan ,  thank you for your message . i shall be glad to meet with you on may the 4 th .  i shall ask my assistant , shirley crenshaw ( 713 ) 853 5290 , to call you to set up the meeting .  also , for your information , we have recently set up a special unit to coordinate enron ' s  relationships with the universities . the person running this unit is christie patrick .  please , feel free to contact her and give my name as a reference . i shall coordinate the meeting  on may the 4 th with her .  vince  additional information re christie :  phone : ( 713 ) 853 - 6117  email : christie _ patrick @ enron . com  \"\" susan c . hansen \"\" on 04 / 03 / 2001 04 : 33 : 54 pm  to : vkamins @ enron . com  cc :  subject : visit from stanford ?  dear dr . kaminski ,  let me briefly introduce myself , i am the director of corporate relations  for the school of engineering at stanford university . in this role , i am  always on the watch for ways to bring our faculty together with companies  that have an appetite for engagement with top tier research institutions .  i believe you know hill huntington , who is a senior researcher with  stanford ' s energy modeling forum . he suggested i get in touch with you for  some ideas about contacts at enron . i ' m in the process of planning a trip  to texas in early may along with my colleague donna lawrence , the  university ' s director of corporate relations . we were hoping to be able to  include a stop at enron on our itinerary . right now it appears that friday ,  may 4 th would work best for us but we ' re at the very beginning of our trip  planning .  the purpose of our visit would be to review the current relationship  between enron and stanford , to give you an overview of current priorities  in the school of engineering , and ask for your help in identifying the best  points of contact .  i look forward to hearing from you about your availability ,  sincerely ,  susan hansen  susan c . hansen  director , corporate relations  school of engineering  stanford university  stanford , ca 94305 - 4027  ( 650 ) 725 - 4219 \",0\n\"Subject: re : job application  thank you .  nurit  nurit krausz , ph . d . http : / / www . ma . utexas . edu / users / nurit /  dept . of mathematics phone : ( 512 ) 471 - 7170  university of texas at austin office : rlm 11 . 170 hours : mwf 8 : 30 - 10  on thu , 2 mar 2000 , vince j kaminski wrote :  >  >  > nurit ,  >  > we shall schedule a phone interview for you sometimes next week .  > my assistant , shirley crenshaw ( 713 853 5290 ) , will call you to discuss the  > timing .  >  > vince kaminski  >  >  >  >  >  >  > nurit krausz on 03 / 01 / 2000 10 : 44 : 00 am  >  > to : vince j kaminski / hou / ect @ ect  > cc : nurit krausz  > subject : job application  >  >  >  >  > dear dr . kaminski ,  >  > i currently hold a post - doctorate position in the mathematics  > department at the university of texas at austin ( with a ph . d .  > in theoretical physics ) . although my position here is renewable  > until summer 2001 , i would like to move on to a more dynamic field  > where i can still use my analytical skills and mathematical knowledge .  > since attending a series of lectures on mathematical finance given  > by dr . marc potters last summer i started studying the subject on my  > own and found it intriguing and challenging .  >  > i am interested in a position in your group ( rac ) at enron .  > last fall in a career seminar at ut you mentioned that people who are  > interested can send you their resume . if this is still relevant , please  > find below my resume ( in word 97 and text formats ) .  > thank you for your time .  >  > yours ,  > nurit krausz  >  > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  > nurit krausz , ph . d . http : / / www . ma . utexas . edu / users / nurit /  > dept . of mathematics phone : ( 512 ) 471 - 7170  > university of texas at austin office : rlm 11 . 170 hours : mwf 8 : 30 - 10  > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  >  > resume  >  > nurit krausz  > university of texas  > department of mathematics  > austin , tx 78712  > phone : ( 512 ) 471 - 7170  > e - mail : nurit @ math . utexas . edu  > http : / / rene . ma . utexas . edu / users / nurit /  >  > objective  >  > a position in the field of mathematical finance utilizing broad  > mathematical knowledge , innovative thinking and creativity .  >  > summary of qualifications  >  > with extensive academic background and research experience ,  > combined with experience as an engineer in the israeli air force ,  > i possess the following :  > * deep mathematical and scientific knowledge .  > * strong analytical and problem - solving skills .  > * proven ability to quickly become an expert in new subjects .  > * ability to present clearly and effectively complicated subjects .  > * ability to work productively both independently and in teams .  >  > academic positions  >  > 1998 - present : post - doctorate position at the university of texas  > at austin , department of mathematics .  >  > education  >  > 1994 - 1998 : d . sc . in physics at the technion - israel inst . of tech .  > research thesis : quantum dynamics on non - compact group manifolds .  > supervisor : prof . m . marinov .  >  > 1992 - 1994 : m . sc . in physics at the technion - israel inst . of tech .  > research thesis : a study of scintillation in doped silica glass  > for detection of neutrino oscillation .  > supervisor : prof . j . goldberg .  > the experiments were performed at cern during the summer of 1993 .  > * performed the design , testing , and installation of the experimental  > setup from remote - controlled mechanical equipment to sophisticated  > electronics .  > * performed statistical data analysis and critical interpretation of  > results using software developed at cern ( paw ) .  > * solved a complicated problem of track reconstruction through an  > unusually shaped magnet for the chorus collaboration at cern , and  > delivered a computer code ready for implementation , still in use  > today .  >  > 1985 - 1989 : b . sc . in aeronautical engineering cum laude at the  > technion - israel institute of technology .  >  > military service  >  > 1989 - 1992 : aeronautic design engineer in the israeli air force .  > rank : first lieutenant .  > * designed and supervised numerous prototype installations of  > electronic equipment and changes in combat planes .  > * wrote procedures for harsh environmental durability tests for cockpit  > and avionics bay - mounted equipment .  > * negotiated and supervised manufacturing of parts with contractors .  > * attended project management , engineering and product reliability  > and maintenance courses .  > * programmed simulations of ammunition trajectories from moving  > aircrafts .  >  > teaching experience :  >  > 1998 - present : lecturer at the university of texas  > undergraduate courses : precalculus , calculus , linear algebra  > graduate course : theory of lie groups  >  > 1992 - 1997 physics department , technion , teaching assistant  > undergraduate course : elementary lab in mechanics  > graduate courses : group theory for physics ,  > introduction to particle physics , relativistic quantum mechanics .  >  > computer knowledge :  >  > unix and windows os , most common word processors , excel ,  > maple , mathematica , fortran , html , latex .  >  > publications :  >  > 1 . j . goldberg and n . krausz , response of cerium - doped silica glass  > in a beam at cern , proceedings of the scifi conference , notre dame  > university , notre dame , indiana ( 1993 ) .  > 2 . n . krausz and m . s . marinov , quantal dynamics on non - compact  > groups , proceedings of the 5 th international wigner symposium ,  > world scientific ( 1998 ) , 398 .  > 3 . n . krausz and m . s . marinov , exact evolution operator on  > non - compact group manifolds , quant - ph / 9709050 ,  > submitted to j . of math . phys .  > 4 . n . krausz , spherical averages in minkowski space , in preparation .  > 5 . n . krausz , quantum field theory in minkowski space , in preparation .  >  >  >\",0\n\"Subject: re : long term demand forecast - looking for more information  hi slava  i ' m not sure who ' s looking after power - related stuff in houston at present .  best to let vince redirect your query .  steve  viacheslav danilov  11 / 10 / 2000 15 : 51  to : steven leppard / lon / ect @ ect  cc : graham mullin / lon / ect @ ect  subject : long term demand forecast - looking for more information  hi steve ,  i plan to spend next week building relatively simple long term ( 1 - 2 years )  demand forecast - it will be a starting point and will allow our guys to work .  for more detailed analysis i will need more information , particularly on  recent changes in demand in the sates ( california ) .  i tried to contact vince , but probably he is very busy right now .  please , could you help me to find somebody in the houston who may provide any  help .  many thanks ,  slava\",0\n\"Subject: re : maureen raymond - castaneda extension  norma  fyi  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 11 / 22 / 2000  09 : 57 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : robert knight on 03 / 08 / 2000 04 : 09 pm  to : maureen raymond / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : maureen raymond - castaneda extension  maureen ,  i apologize that your phone was disconnected in error . at this time your  phone is working and your voice mail box needs to be set up . i would like to  add however , i do not appreciate your disrespect and unreasonable demands  placed on my employees . they were not the cause of this problem and can only  relay your information to the appropriate group .  enron has values of respect , integrity , communication and excellence . i  would appreciate you taking the time to review them .  robert knight  director voice communications  stella l ely  03 / 08 / 2000 11 : 08 am  to : move - team / epsc / hou / ect @ ect , telephone mods / corp / enron @ enron , dolores  sustaita / epsc / hou / ect @ ect , robert knight / hou / ect @ ect  cc :  subject : maureen raymond - castaneda extension  please reinstate maureen ' s extension immediately , if possible . it was  disconnected this past weekend when we had it taken off of the phone at eb  3073 f . her extension was on two phones at two different locations and should  not have been disconnected at eb 1939 . her extension no . is 30396 . sorry  for the confusion . please let me know timing asap .  thank you .  stella ely\",0\n\"Subject: henwood ' s 2001 ercot symposium : january 23 , 2001  shirley ,  please , register me , lance and alex for this event .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 12 / 22 / 2000  04 : 42 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" chris farrell \"\" on 12 / 22 / 2000 06 : 13 : 50 am  to :  cc :  subject : henwood ' s 2001 ercot symposium : january 23 , 2001  mark your calendar - tuesday january 23 , 2001 downtown houston hyatt hotel  henwood will be hosting a comprehensive ercot symposium on tuesday , january  23 , 2001 . a team of henwood regional power market specialists will be  presenting the latest analysis and  information to assist you in preparing for the new ercot restructured power  market , in addition to an anlysis of the issues now playing out in the wscc  markets . coffee and registration will  begin at 9 : 30 am and the program will run until 3 : 00 pm . lunch and snacks  will be provided .  agenda topics include :  * what will be the critica - success factors for qualified scheduling entities  operating in ercot ' s new wholesale & retail markets ?  * how will market restructuring impact mid to long - term wholesale prices ?  * what is the outlook for new generation ?  * what are the impacts of upcoming emission regulations on ercot ' s generation  resources ?  * what are the new analytical tools available to capture market uncertainty  impacts to your supply contracts and generation assets ?  * what are the restructuring lessons learned from the california experience  and the implications to ercot ?  in conjunction with this program , henwood will have a demonstration room  available to present its latest software applications and e - business  solutions . a nominal $ 75 registration fee is required  to reserve a space in the workshop .  for more information or to reserve your spot , please contact chris farrell at  henwood : cfarrell @ hesinet . com or 916 / 569 - 0985 .  about henwood : henwood offers integrated business solutions , strategic  consulting , and innovative e - business applications to meet the challenges of  the restructured energy markets throughout  north america , australia , and europe , serving clients that include eight of  the ten top utilities in north america , in addition to energy services  providers and power marketers .  if you want to be removed from our email list please reply to the sender and  put \"\" remove \"\" in the subject box .\",0\n\"Subject: biliana ' s resume  mr . kaminski ,  thank you for referring me to your recruitment  representative .  attached is my resume . i would appreciate you letting  me know the name of the hr person whom i can folow up  with .  best regards ,  biliana  = = = = =  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  biliana pehlivanova  vice president of incoming exchange  aiesec houston  713 743 - 4927  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  do you yahoo ! ?  yahoo ! photos - 35 mm quality prints , now get 15 free !  http : / / photos . yahoo . com /  - biliana ' s resume . doc\",0\n\"Subject: jacob feedback  vince ,  chonawee and tom halliburton had feedback about jacob to me .  tom ' s feedback is what he does for pros is actually too simple . their  so - called  trading system is actually a scheduling system .  my impression is that jacob is good at selling himself , his knowledge  of finance and derivatives is very limited .  zimin  - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 04 / 11 / 2001 03 : 31 pm  - - - - - - - - - - - - - - - - - - - - - - - - - - -  chonawee supatgiat @ enron  03 / 21 / 2001 07 : 28 pm  to : zimin lu / hou / ect @ ect  cc : tom halliburton / corp / enron @ enron  subject : jacob feedback  i asked jacob two questions to check his basic knowledge . he answered  correctly in the optimization question so i believe that he has a good  foundation on his optimization skill . i have a doubt about his stochastic  skill because he took only one course in stochastic processes and his  previous models are simple deterministic models . if we had more interview  time i would be able to check his stochastic and modeling skills .  he completely failed to answer the second question , which is to check his  basic risk management skill . it is clear to me that he has a very weak  background in finance and risk management . he does not understand the  relationship between a discount rate and risk . he showed some weakness in  annuity calculation .  in conclusion , i feel that he has good basic in optimization but a very weak  background in finance . based on his experiences , i have a doubt on his  advance optimization skills , such as his stochastic skill and his ability to  attack a complex optimization problem . i would recommend a second - round  interview if he will be solving a complex - optimization problem .  - chonawee\",0\n\"Subject: job spec for junior quant  hi dale ,  please see the job spec that i plan to get posted on the enron europe  internet site - please could you review before i hand over to hr ?  thanks ,  anjam\",0\n\"Subject: re : info help .  hi niclas ,  i am in the middle of preparing some presentations right now , so it might be  more productive to speak by phone ( 503 - 464 - 8430 ) . please leave your number ,  if you get my voicemail .  to get you started , you might see if you can get access to the ferc gads  database of plant forced and planned availability . it seems others in  research have asked about this , so you may already have this at your  disposal . the eia has a good electronic database of plant for and por  available for free ( http : / / www . nerc . com / ~ esd / ) . i know alexios in re / ees has  this . if you wanted to do it the hard way , you can also ask jaison to access  the epa ' s cems data he has summarized on a machine there in research . it  contains hourly plant operation for every unit over about 50 mw , which you  could aggregate up .  the wscc 10 - year forecast of new plant construction and loads is a good place  to start for plant construction information , but suffers from some notorious  \"\" self - reporting \"\" error . it is available in pdf form from the web site  http : / / www . wscc . com / . other sources that should be more near - term , but more  accurate are the cec inventory of plants ( http : / / www . energy . ca . gov / ) and the  bpa whitebook ( http : / / www . transmission . bpa . gov ) .  as far as basic economic data is concerned , you can either rely on the  reported utility forecasts for loads , or you can go to fundamental data . the  ultimate source of the census data collected by the us dept of commerce ,  which you can buy on cdrom for cheap . it would have this kind of information  by sic code , by zip code . you may also have access to one of the economic  forecasting businesses ( wharton ' s wefa , dri , etc . ) they have this in highly  digested and complete form .  btw , tim heizenrader , who runs fundamental analysis and research on the west  desk , is a sharp cookie and should have all this under control . is your  client aware of this resource ?  give me a buzz and we can talk more ,  michael  > > > niclas egmar / hou / ees @ enron 08 / 14 / 00 12 : 49 pm > > >  michael ,  i ' m an analyst in the research group . i would like your help with finding  some information specific for the west coast . a new analyst on the west power  desk needs information on planned outages and planned new generation . he is  studying the long - term fundamentals of electricity volatility on the west  coastso so he also needs info on housing starts , computer sales or industrial  production figures for computer manufacturing , growth of start - up companies ,  and population stats .  any help in finding the needed info would be greatly appreciated . contact me  or daniel kang ( new analyst ) .  niclas  - text . htm\",0\n\"Subject: schedule to chelmsford  hi all , here is what i have so far on the agenda front !  shirley , we need travel arrangement to attend the meeting mentioned below .  here are our prelimnary schedule .  please try to check us all in at the double tree in chelmsford , ma where the  meeting will be .  vince cannot attend . there will be four people from our group attending  including myself , stinson , krishna and samer . only stinson and i will attend  the dinner on monday night . here is the suggest times by names :  ravi & stinson :  leave houston around 12 : 00 pm on monday ( jan 31 , 2000 ) to be there for the  dinner . try to get us in chelmsford , ma in time so that we can attend the  dinner .  leave chelmsford , ma around 2 : 00 pm thursday .  one full size rental car for all four of us . you can put this in either mine  or stinson ' s name .  krishna & samer :  leave houston around 5 : 00 pm to get in time to get a good night sleep to  attend the meeting tue ( feb 1 ) :  leave chelmsford , ma either wed 6 : 00 pm or thurs afternoon depending on  individual schedule . krishna and samer , please let shirely know when you want  to get back . as long as you are there for tue and wed full day , you should  get enough out of the meeting .  shireley , please call me for more details .  regards ,  ravi .  - - - - - forwarded by ravi thuraisingham / enron communications on 01 / 27 / 00 04 : 45  pm - - - - -  phil markwart  01 / 26 / 00 08 : 00 pm  to : barb . vanbeyrer @ sycamorenet . com  cc : ravi thuraisingham / enron communications @ enron communications , erik  simpson / enron communications @ enron communications , stinson gibner / hou / ect @ ect  subject : schedule  please copy the persons in the cc line with the schedule of 31 jan as soon as  you get it .  at this point , you have told me :  31 jan travel to chelmsford and dinner around 7 pm ?  1 feb overall optical design considerations  2 feb specific route designs  3 feb more route design\",0\n\"Subject: eprm  vince ,  ?  could you please provide me with an indication on whether you will be able  to review the latest eprm article in the next day or so ? ?  ?  look forward to hearing from you shortly .  ?  julie\",0\n\"Subject: software license  ms . geman ,  i am just following up to see if you had received my previous message  forwarded below and whether you have a response so that we can move forward  with this contract ?  thank you ,  karla feldman  - - - - - forwarded by karla feldman / hou / ect on 08 / 08 / 2000 09 : 23 am - - - - -  karla feldman  07 / 28 / 2000 01 : 41 pm  to : geman @ dauphine . fr  cc :  subject : software license  dear ms . geman ,  i met with vince kaminski yesterday regarding picking back up with the  license agreement we were working on back in march . he relayed some  additional requirements which need to be added to the agreement , which  include the following :  1 . the price agreed upon is $ 90 , 000 .  2 . d - g will provide system support .  3 . no later than 12 months of execution of the agreement , d - g will provide  the source code to enron . in the meantime , the source code is to be in  escrow . additionally , the source code would be released sooner than the 12  months if any of the following conditions occur : ( i ) d - g goes out of  business ; ( ii ) d - g is unable to provide effective technical support ; or ( iii )  if d - g agrees to release it sooner .  before i have our attorney add these things to the agreement , we need to  discuss the escrow situation . vince mentioned that you had suggested that  your attorney keep the software in escrow . is your attorney a u . s .  attorney ? it seems like i may have recalled that way back in march you might  have said you had a friend or relative that was an attorney . is that the  same person ? does this attorney work for a large firm , small firm , or solo  practitioner ? basically , if you could just provides some additional  information about your attorney , i would appreciate it .  we normally would use an escrow company to put the software in escrow . we  have dealt with a company here in the u . s . called dsi technology . i will  check into that pending your answer regarding your attorney .  once we decide what we want to do regarding placing the software in escrow ,  we will red - line the agreement to reflect such changes and e - mail it back to  you for your review .  i look forward to hearing from you .  karla feldman  enron corp .  contract administration  ( 713 ) 646 - 7554\",0\n\"Subject: potential new analyst  hi guys  a number of us interviewed a guy named matthew williams last week for an  analyst position . he has a phd in particle physics and experience with monte  carlo simulation ( albeit in fortran 77 ) from his academic work . he ' s also a  good communicator , having completed a postgrad course in acting , and has been  active in the theatre as performer and director .  if he accepts our job offer then ( after discussion with dale and bryan ) we ' ve  decided to give him his first rotation in research here in london . i hope he  accepts .  i ' ll keep you posted .  steve\",0\n\"Subject: re : ut short course travel arrangements  martin ,  i can join the car pool .  vince  from : martin lin on 04 / 25 / 2001 10 : 59 am  to : vince j kaminski / hou / ect @ ect , vasant shanbhogue / enron @ enronxgate , sandeep  kohli / enron _ development @ enron _ development , lance cunningham / na / enron @ enron ,  sevil yaman / corp / enron @ enron  cc :  subject : ut short course travel arrangements  if the schedule works , perhaps a carpool is best for attending the course ,  given the number of us going . vasant has offered to drive . dependiing on  driving speed and traffic , leaving houston by 9 : 30 am should give sufficient  time to make the lpm class , including some time for lunch .  please let me know if you are interested in the carpool or have alternate  plans or suggestions .  thanks ,  martin\",0\n\"Subject: re : extreme value theory applied to weathet  vince ,  thanks for responding to christian . i had replied earlier and said that evt  is based on iid events , and is therefore not useful in weather , where there  is so much correlation going on . jitendra from aa raised the same issue  yesterday .  joe  vince j kaminski  08 / 22 / 2000 04 : 49 pm  to : christian werner / enron _ development @ enron _ development  cc : joseph hrgovcic / hou / ect @ ect , vince j kaminski / hou / ect @ ect  subject : re : extreme value theory applied to weathet  christian ,  about two years ago i asked joe hrgovcic  to look tinto evt applications . as far as i know  he is the only person in the group , in addition to me , looking at evt .  vince  christian werner @ enron _ development on 08 / 18 / 2000 07 : 00 : 42 pm  to : vince j kaminski @ ect  cc :  subject : extreme value theory applied to weathet  - - - - - - - - - - - - - - - - - - - - - - forwarded by christian werner / enron _ development on  19 / 08 / 2000 10 : 06 - - - - - - - - - - - - - - - - - - - - - - - - - - -  christian werner on 19 / 08 / 2000 02 : 08 : 56  to : vince . kaminski @ enron . com  cc :  subject : extreme value theory applied to weather  - - - - - - - - - - - - - - - - - - - - - - forwarded by christian werner / enron _ development on  19 / 08 / 2000 01 : 15 - - - - - - - - - - - - - - - - - - - - - - - - - - -  christian werner on 19 / 08 / 2000 01 : 55 : 56  to : vkamins @ enron . com  cc :  subject : extreme value theory applied to weather  dear vince ,  back in july , when you visited our sydney office you mentioned extreme value  theory . i am wondering whether research is looking into the application  of extreme value theory to power and esp . to weather . in a recent news  article it was highlighted that a trend in the industry towards t _ max , t _ min ,  etc .  i am in particular referring to the news article below :  in the past we have observed a similar trend where customers are asking for  t _ max , t _ min , or below or above precipitation structures . the choice in the  past has been the burn analysis on historical data . however , we are in  particular interested in the extreme events , and the application of evt could  provide a meaningful tool for the analysis .  has the research group looked into the application of evt to weather ? evt has  a long history of application in hydrology ( which would cover parts  of the precipitation structures . . . ) . also , research ( esp . at eth in zuerich )  is indicating the application of evt to v @ r . . . .  thank you !  regards ,  christian\",0\n\"Subject: california update 4 / 27 / 01  the following report contains confidential and sensitive information . please treat with discretion .  executive summary :  ? ferc price cap decision reflects bush political and economic objectives . politically , bush is determined to let the crisis blame fall on davis ; from an economic perspective , he is unwilling to create disincentives for new power generation  ? davis finds four major flaws with ferc plan , most notably its exclusion of out - of - state generators  ? june lst \"\" kill clause \"\" for ferc order could coincide with new bush regional plan  ? california facing growing fiscal risk following bond downgrade , expected $ 20 billion power bill this summer - - economic crisis would force deeper administration involvement  ? qf bid for advance payments from pg & e likely to fail in bankruptcy court  ? new generation delays probable because of state / qf squabbling  ? consumer groups are preparing a constitutional challenge to socal bailout deal  1 . ferc fallout  the ferc decision is a holding move by the bush administration that looks like action , but is not . rather , it allows the situation in california to continue to develop virtually unabated . the political strategy appears to allow the situation to deteriorate to the point where davis cannot escape shouldering the blame . once they are politically inoculated , the administration can begin to look at regional solutions . moreover , the administration has already made explicit ( and will certainly restate in the forthcoming cheney commission report ) its opposition to stronger price caps on the grounds that they are unwilling to create disincentives to the construction of new generation .  it is interesting and ironic to note that electricity generators were generally happy with the ferc order and that the only ferc commissioner who favors price caps actually voted against this plan .  2 . something less than effective price caps  from davis ' s point of view , the ferc plan has four major flaws :  ? the order applies only to california , not to the rest of the west . non - california generators are not required to sell at capped rates to california .  ? as the order is written , it is more of a price floor for emergency power than a ceiling .  ? state officials also believe that energy suppliers will continue to game the system , because the price mitigation scheme only kicks in after a stage 2 emergency and does not require any collusion .  ? even when the price caps kick in , they are based on the cost - plus for the highest cost producer supplying power to california and do not require wholesalers to abide by the cap . the generators can also charge above the cap , provided they can subsequently justify the excess charge to ferc .  3 . proposal \"\" kill clause \"\" adds to the political dilemma for davis  the ferc proposal includes a \"\" kill clause \"\" that says the caps will be withdrawn unless california ' s iso agrees by june lst to become part of the regional grid now under ferc control . if davis doesn ' t sign on to the regional grid by june lst , then he will have to live with june 2 nd headlines blaming him for letting the \"\" bush price caps plan \"\" collapse .  4 . growing fiscal risk in california  sources speculate that california could therefore pay as much as $ 20 billion on power this summer - this is more than the combined enterprise value of pg & e and sce . these sources believe that , because of the severity of the situation , the ferc and / or the federal government will be forced to take further action to control prices for power .  the consensus is that the state of california will run out of money in about 90 days . one of the first projects to be cancelled will be state plans to finance new power plant construction in exchange for long - term power deals . the bleak fiscal picture is also causing bank creditors to revisit the bridge loans they are providing to california .  the bush administration and the fed are only now waking up to the seriousness of the fiscal picture . the country ' s largest and most prosperous state will have gone from large surpluses to serious debt downgrades and devastating deficits in a matter of months .  5 . qfs to seek advance payment from pg & e  meanwhile , on the bankruptcy front , the qfs reportedly will ask the bankruptcy judge today to give them advance payment from pge ' s accounts , since their natural gas vendors have likewise demanded advance payment for gas . it appears very unlikely that the qfs ' request will be granted . if the qfs do not receive advance payment , it is likely that most of the 4 , 000 mw of gas - fired qf capacity will remain offline .  6 delays likely in new qf generation  the qf deals made with the state for long - term contracts are being continually renegotiated , which is likely to mean that the new plants those contracts are supposed to finance will not be online as early as anticipated .  7 . consumer groups ready to challenge constitutionality of sce bailout plan  harvey rosenfield and his colleagues reportedly have been reviewing an analysis of the mou for the sce bailout plan . the analysis was done by a utilities analyst , rather than a lawyer , though it appears to raise a number of good legal points . for example , one of the elements of the mou is a \"\" non - bypassable \"\" charge on ratepayers that would require them to pay even if they disconnect from the grid . this is effectively a tax , since there is no exchange of value for money , which under the ca constitution cannot be used to directly benefit a private entity . this makes the bonds that would be issued are general obligation bonds , rather than revenue bonds . according to the constitution , the state cannot be put into debt to benefit a private company . for this and other reasons , even if the republicans would vote for the sce bailout , which remains unlikely , the bailout probably would not stand a likely constitutional challenge .  8 . governor hurt by continued failure to disclose long - term power contracts  the issue of the governor ' s failure to disclose the details of the long - term power contracts continues to distress the other players in the crisis . even if he were to disclose everything he and his staff have been negotiating , it is likely that their actions and negotiations will challenged , creating an even further delay .\",0\n\"Subject: phone time  dear dr . kaminski  thanks for your arrangement . i have received email from shirley . either  wednesday or thursday will be fine to me . i am looking forward to talking to  you at that time . it is always my pleasure to work with you .  best wishes  quentin kerr  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  quentin kerr , email : qkerr @ maths . uq . edu . au  room : 67 - 625 tel : ( 07 ) 33461428  department of mathematics , the university of queensland\",0\n\"Subject: re : stinson gibner  richard  we actually need to duplicate his ena workstation as he will be reporting at  both locations  p\",0\n\"Subject: confirming your attendance - oct . 19 / 20 - wharton  vince ,  we are delighted that you , christie ( and possibly mark palmer ) will be  attending our upcoming wharton impact conference on october 19 - 20 . the  final agenda is enclosed ( below ) - please note - unless we hear otherwise  from you , we will assume that you will be attending both the dinner on oct .  19 and the conference on oct . 20 .  this very timely event has generated enormous interest . we look forward to  your participation , and hope you will find this to be a valuable  insight - building experience .  please call or e - mail if you have any questions about any aspect of the  conference .  also - i ' ll look forward to hearing some stories of your exploits during  your recent trip to poland . must have been extremely interesting !  best regards ,  michael tomczyk  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  winners and losers in the e - commerce shakeout  thurs . oct . 19 ( dinner ) and fri . oct . 20 ( conference )  agenda  winners and losers in the e - commerce shakeout  thursday , october 19 , 2000 ( dinner )  friday , october 20 ( conference )  the wharton school - philadelphia , pa  jointly sponsored by the  william and phyllis mack center on managing technological innovation ,  wharton school  marketing science institute  wharton e - business initiative ( webi )  conference themes & objectives  e - commerce is heading inextricably and rapidly toward an inevitable  shakeout and consolidation that tends to characterize every major new  industry . this impact conference bringstogether a distinguished group of  industry and academic leaders to discuss what is required to survive the  e - commerce shakeout , and what it takes to be a \"\" winner \"\" when the shakeout  hits , full - force .  shakeouts are spawned in the boom - and - bust environment of hot emerging  markets . an unsustainable glut of competitors is attacted by the  contagious enthusiasm for the emerging technology . as competition  intensifies and falling prices put pressure on margins there is a wave of  ailures and mergers that removes the weaker players .  few ecommerce markets - - whether e - tailing online exchanges or others - - - will  be exempted from the forces that cause shakeouts . this conference will  combine lessons from markets that have experienced shakeouts , with the  latest thinking about the unique features of e - commerce , to identify  successful strategies for surviving a shakeout .  questions to be addressed include :  - are the patterns seen in previous shakeouts of high technology markets  applicable to ecommerce ? what are the early warning signs of an impending  shakeout ?  - which ecommerce markets are most susceptible to a shakeout ? will there  be single or multiple winners ?  - which companies are likely to survive ? what strategies will the winners  use ?  there is controversy and uncertainty about which factors will most  contribute to prospects for survival . how important are first mover  advantages and building brand equity ? what do incumbents have to do to  prevail ? which business models are most robust ? how important is the  ability to manage strategic partnerships ?  these issues will be addressed with a program that encourages active  dialogue and interaction and includes speakers from industry , academia and  wall street .  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  agenda  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  dinner co - author of the best - selling books net  gain and net worth )  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  conference - riday , october 20  8 : 00 - 8 : 30 a  continental breakfast and  david reibstein , woodside prof . of marketing , wharton school and director ,  marketing science institute )  11 : 30 - 12 : 15 p  technology investing , 15 things that should be true  ( stephen j . andriole , senior vice president and chief technology officer ,  safeguard scientifics )  12 : 15 - 1 : 30  working lunch  participants will work in small groups . half the group will be asked to  select an ecommerce firm with a strong likelihood of winning and identify  the most important reasons for success ; the other half will be asked to do  the same for a firm that is likely to fail .  1 : 30 - 2 : 15  small group reports  2 : 15 - 3 : 00  finding a winning strategy  ( norman drapeau , chief executive officer of mro . com )  3 : 00 - 3 : 15 break  3 : 15 - 4 : 00  living through a consolidation  ( harry smilow , previously chief executive officer of telebank which is now  part of e * trade )  4 : 00 - 4 : 45  a view from wall street  ( henry blodget , first vice president and senior internet / e - commerce  analyst , merrill lynch )  4 : 45 - 5 : 00  sum up - what have we learned ? what do we need to learn ?  5 : 00 adjourn  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  directions to the event & accommodations :  the dinner will be held at the inn at penn which is located at 3600 sansom  street . there is also an entrance on walnut street between 36 h and 37 th .  the conference will be held in steinberg - dietrich hall which is located on  locust walk on the wharton campus in philadelphia . from the airport or  train station take a taxi to the intersection of 37 th street and walnut ,  walk left onto the campus ( there is a broad paved walkway leading into the  campus from that intersection ) . at the first intersection you will see a  life sized bronze status of ben franklin sitting on a park bench reading a  newspaper . turn left at this intersection and steinberg - dietrich hall is  the first building on the right . there is a broad entrance with several  doors . also , any student can direct you to this building . go inside and  take the staircase down to the right - - room 350 is on the lower ( basement )  level .  accommodations  overnight accommodations are available at the inn at penn which is across  the street from the campus ( tel 215 - 222 - 0200 - mention you are here for  the emerging tech conference on e - commerce shakeouts , to receive the  $ 164 / night wharton room rate ) . please make your reservations early because  the inn is often fully booked . we have reserved a set of rooms for this  event .  if you stay at another hotel in center city , most hotels ( rittenhouse ,  latham , ritz carlton ) are approximately 15 minutes by taxi from the campus .  there is also a sheraton approximately 3 blocks from the campus , on  chestnut st .  michael s . tomczyk  managing director  emerging technologies management research program  1400 sh - dh / 6371  the wharton school  philadelphia , pa 19104 - 6371  tel 215 - 573 - 7722  fax 215 - 573 - 2129  website : http : / / emertech . wharton . upenn . edu\",0\n\"Subject: re : estimating tail of distribution and additional risk measures  naveen ,  the \"\" analytical var \"\" approach is working for equity portfolio .  it gives us the tool to examine the tails ' behavior for this portfolio and  calculate \"\" expected tail loss \"\" .  the same should be done for commodities portfolio as well .  meanwhile , as we discussed , we can give some rough estimates of the losses  corresponding to percentiles other than 5 th .  look at the figure below . you can see var numbers for 5 % , 1 % , 0 . 5 % and 0 . 1 %  calculated with  1 ) simulations ( 100 thousand simulations ) ;  2 ) analytical var ( gamma - delta positions representation )  1 ) and 2 ) are very close because there are not many options in equity  portfolio .  3 ) simulations ( 1000 simulations ) to calculate 5 % var . then in order to  approximately estimate var for 1 % , 0 . 5 % and 0 . 1 %  i scaled 5 % var with factors corresponding to normal distribution ( for  example : norminv ( 0 . 001 , 0 , 1 ) / norminv ( 0 . 05 , 0 , 1 ) for 0 . 1 % ) .  the result of such extrapolation in this case is quite good ( just 5 %  different from the correct number ) .  we probably can use such rough estimates of tail for commodities portfolio  until we have proper methods implemented .  tanya tamarchenko  02 / 28 / 2001 01 : 17 pm  to : wenyao jia / hou / ect , debbie r brackett / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : \"\" analytical \"\" var implementation in risktrac  debbie ,  i am forwarding to you a 2 page document describing implementation of  \"\" analytical \"\" var in risktrac .  here is why this effort is very important :  1 . we need to calculate var for other percentile but 5 ( 1 % or even 0 . 2 % as  mentioned by rick buy )  and our simulation model can not handle required number of simulations ;  2 . we need to present additional risk measures ( such as mean tail loss ) to  the board .  the analytical approach is implemented in a spreadsheet and fully tested  already so there will be no problems  with the algorithm itself .  we need to get together and discuss it implementation .  what do you think ?  tanya\",0\n\"Subject: re : meeting requested  i will ask rebekah to try to set it up for monday .  kg  vince j kaminski @ ect  01 / 05 / 01 01 : 48 pm  to : kevin garland / enron communications @ enron communications @ enron  cc : rebekah rushing / enron communications @ enron communications , vince j  kaminski / hou / ect @ ect  subject : re : meeting requested  kevin ,  let ' s meet for lunch next week ( monday of friday would be best ) . we can talk  about the  project and decide who has the right skills to help you .  the person who supports ebs is stinson gibner and his lead person is martin  lin .  my secretary ' s number is 3 - 5290 ( shirley crenshaw ) .  vince  to : vince j kaminski / hou / ect @ ect  cc : rebekah rushing / enron communications @ enron communications  subject : meeting requested  vince ,  i would like to meet with you or someone in your group to discuss some of the  investment ideas and structures we are exploring . how is your group  structured these days ? who would be best for me to meet ? might you be  available for lunch next week ? i will have my assistant contact you .  thank ,  kevin garland\",0\n\"Subject: welcome to the new cera . com !  dear cera . com client :  we are pleased to welcome you to the new cera . com !  we hope you will agree that this new site represents another positive step in  the evolution of cera ' s internet services .  to access the new site , please visit : http : / / www 20 . cera . com  if you have forgotten your username and password , please use our new username  and password reminder located at :  http : / / www 20 . cera . com / client / forgot /  please note : bookmarks you have for specific cera reports will no longer be  valid . shortcuts to specific client knowledge areas will still work . for  example , the link to cera ' s world oil service home page  ( http : / / www . cera . com / client / wo / ) will remain the same ( note this link only  active for members of the world oil service ) .  please take time to surf the new cera . com to see what ' s new !  sincerely ,  cera . com development team\",0\n\"Subject: reliant tigers interested in enron  vince :  below , please find 2 names of wharton students who are interested in  internships this summer .  thanks ,  donna  - - - - - original message - - - - -  from : chen , vincent [ mailto : chenvinc @ wharton . upenn . edu ]  sent : sunday , february 04 , 2001 11 : 24 pm  to : ' fap '  subject : re : call from enron  donna , i had also passed along the resumes of two reliant energy tiger team  members , david gershenson and james iker , who were both interested in  working for enron this summer . i had spoken to vince about these candidates  when we were in houston , and he said he would arrange internships for them  as well .  he should already have copies of their resumes and cover letters . please let  me know if you have any questions or need clarification .  thanks ! !  vincent  - - - - - - - - end of unsent message\",0\n\"Subject: eol wti maket maker simulation model  john ,  here is the spreadsheet zimin built for estimaing p / l from trading wti  forwards . let zimin , vince , or i know if you have questions or comments .  - - stinson  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 11 / 20 / 2000  11 : 14 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  zimin lu  11 / 17 / 2000 04 : 37 pm  to : stinson gibner / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : eol wti maket maker simulation model  stinson ,  i add the total p / l due to contract rollover . when the number of trades is  large  and the spread is not too small , the model prints a lot of money , dominated by  those trade earning the half of bo spread .  i also wrote an explaination about the model on the front page . i think we  are  ready to deliever the model v . 1 .  zimin\",0\n\"Subject: 4 - urgent - owa please print this now .  current notes user :  reasons for using outlook web access ( owa )  1 . once your mailbox has been migrated from notes to outlook , the outlook  client will be configured on your computer .  after migration of your mailbox , you will not be able to send or recieve mail  via notes , and you will not be able to start using outlook until it is  configured by the outlook migration team the morning after your mailbox is  migrated . during this period , you can use outlook web access ( owa ) via your  web browser ( internet explorer 5 . 0 ) to read and send mail .  please note : your calendar entries , personal address book , journals , and  to - do entries imported from notes will not be available until the outlook  client is configured on your desktop .  2 . remote access to your mailbox .  after your outlook client is configured , you can use outlook web access ( owa )  for remote access to your mailbox .  please note : at this time , the owa client is only accessible while  connecting to the enron network ( lan ) . there are future plans to make owa  available from your home or when traveling abroad .  how to access outlook web access ( owa )  launch internet explorer 5 . 0 , and in the address window type :  http : / / nahou - msowaolp / exchange / john . doe  substitute \"\" john . doe \"\" with your first and last name , then click enter . you  will be prompted with a sign in box as shown below . type in \"\" corp / your user  id \"\" for the user name and your nt password to logon to owa and click ok . you  will now be able to view your mailbox .  please note : there are some subtle differences in the functionality between  the outlook and owa clients . you will not be able to do many of the things  in owa that you can do in outlook . below is a brief list of * some * of the  functions not available via owa :  features not available using owa :  - tasks  - journal  - spell checker  - offline use  - printing templates  - reminders  - timed delivery  - expiration  - outlook rules  - voting , message flags and message recall  - sharing contacts with others  - task delegation  - direct resource booking  - personal distribution lists  questions or concerns ?  if you have questions or concerns using the owa client , please contact the  outlook 2000 question and answer mailbox at :  outlook . 2000 @ enron . com  otherwise , you may contact the resolution center at :  713 - 853 - 1411  thank you ,  outlook 2000 migration team\",0\n\"Subject: conference call on friday , march 17 th  hello nick :  i agree e - mail is much easier .  there is a two - hour time difference between calif and texas , i . e . , 1 : 00 pm  texas time - 11 : 00 am calif time .  would tomorrow at 11 : 00 am calif time be ok with you ( 1 : 00 pm texas ) ?  this time is fine for vince , tom gros and stinson gibner .  can they call you and if so , what number ?  please let me know .  thanks !  shirley  713 - 853 - 5290  nick bambos on 03 / 16 / 2000 12 : 28 : 58 pm  to : shirley . crenshaw @ enron . com  cc : bambos @ stanford . stanford . edu  subject : re : visit to enron  shirley ,  it ' s easier to communcate by e - mail , since i am moving from  meeting to meeting ( but i have the laptop always with me ) .  please give me a phone number that i could call tomorrow .  what is the time difference between california and your  location ? i think it ' s 2 hours ( ca - > tx ) - is that right ?  i can do the conference call any time from 9 - 11 ca time .  would that be ok on your side ?  thanks ,  nick  vince . j . kaminski @ enron . com wrote :  >  > nick ,  >  > we can close the loop on our commitment to support the research projects  > before your visit to enron .  >  > my assistant , shirley crenshaw , will call you to set up a conference call  > with me , stinson gibner ,  > and tom gros from enron broadband services to discuss all the isssues .  > friday this week would work for  > both tom and me . i think we need about 15 minutes .  >  > vince  >  > p . s . shirley , nick ' s phone number is 650 796 8163 ( cell ) , 650 - 725 - 5525  > ( office ) .  >  > nick bambos on 03 / 12 / 2000 05 : 32 : 35 pm  >  > to : vince . j . kaminski @ enron . com , bambos @ stanford . stanford . edu  > cc :  > subject : visit to enron  >  > hello vince ,  >  > it was nice seeing you at stanford and many thanks for the lunch  > we had together . i really enjoyed our discussions , both at the  > technical level and otherwise .  >  > i promised to send you an e - mail regarding possible dates for  > a visit to enron . i delayed it for a week till my schedule was  > clearer . let ' s see if we can get a match with your schedule -  > mine is rather terrible :  >  > friday , 21 st of april looks good . but april 23 rd is easter  > sunday , so that may make it difficult for some people at enron  > to be around . let me know if that is the case . i am willing to  > visit then , because the week after that i am scheduled to be in  > japan and in the previous weeks i am all committed on fridays .  >  > friday , 19 th of may is the next possibility , but this probably  > is too far out . the main problem is that i am operating within  > a window of opportunity for attracting top students for this  > research . this window closes by the end of april , and it would be  > important for the student support funds to be in place then , so  > that i can make hard commitments to students and attract top  > talent . i am already reviewing files of students who have  > approached me for phd advising , and i am in a mode of doing \"\" soft  > commitments to star - level students \"\" to get this research and its  > potential on their radar screen . top students are highly sought  > after by advisors and i want to be an early player in this  > competition .  >  > does my visit to enron have to happen before we can set up the  > project and student support at stanford ? if so , doing it before the  > end of april is important for getting top people . if the visit can  > happen after we get the ball rolling , then we can schedule it in may .  > i assume there will be multiple visits both ways when the project gets  > going . please let me know what you think .  >  > best regards ,  >  > nick\",0\n\"Subject: fw : research allocations to egm  vince :  can you tell me where to get this info ?  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 25 / 2001  03 : 53 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : becky pham / enron @ enronxgate on 04 / 25 / 2001 10 : 58 am  to : shirley crenshaw / hou / ect @ ect  cc : diane fellers / enron @ enronxgate  subject : fw : research allocations to egm  back in november of last year , you have indicated that 40 % of the 17 . 5 % ( 40 %  of 17 . 5 is 7 % ) that we are allocating to egm should be billed to gary  hickson ' s group . gary is asking for further broken down of this 40 % to his  world . can you check with vince to see what portion of the 7 % should be  charged to equity trading , rate & currency trading , agricultural trading &  origination and convertible trading ? and can i get this information back by  the end of this week because we are going to start closing on friday . if you  have any questions , call me . thanx .  - - - - - original message - - - - -  from : khoja , sayed  sent : wednesday , april 25 , 2001 10 : 17 am  to : pham , becky  subject : research allocations to egm  becky ,  i have attached your original emails below . can you provide further break  out of the 40 % allocation to gary hickerson . gary is responsible for  financial trading which includes :  ? equity trading  ? rate & currency trading  ? agricultural trading & origination  ? convertible trading  thanks for your help .  sayed  to : sayed khoja / na / enron @ enron  cc :  subject : re : research allocation  - - - - - - - - - - - - - - - - - - - - - - forwarded by becky pham / hou / ect on 11 / 02 / 2000 03 : 00 pm  - - - - - - - - - - - - - - - - - - - - - - - - - - -  to : becky pham / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : research allocation  becky ,  i gave the % % for egm to shirley . i assume she communicated this info to you  already .  i assume egm includes f / x - i / r ( gary hickerson ) , weather , insurance ( jere  overdyke ) ,  oil trading and coal .  for calme i don ' t have any info . let ' s split the cost evenly .  vince  to : shirley crenshaw / hou / ect @ ect , vince j kaminski / hou / ect @ ect  cc :  subject : research allocation  shirley ,  grm is now with egm group . egm wants to verify that the 17 . 5 % we are going  to allocate to grm is for the insurance , jere overdyke group . egm seems to  think that their weather , mark tawney group , is receiving support from  research . also , can we break out the support for calme ? calme is going to  split into 3 bus and i am trying to determine who i need to bill for research  supports . if you have any questions , call me . thanx .  to : sayed khoja / na / enron @ enron  cc :  subject : re : research allocation  - - - - - - - - - - - - - - - - - - - - - - forwarded by becky pham / hou / ect on 11 / 02 / 2000 02 : 47 pm  - - - - - - - - - - - - - - - - - - - - - - - - - - -  to : becky pham / hou / ect @ ect  cc :  subject : re : research allocation  becky :  vince said to allocate it as follows :  gary hickerson 40 %  jeff shankman  weather 20 %  insurance 30 %  oil 5 %  coal 5 %  hope this helps !  shirley  to : shirley crenshaw / hou / ect @ ect , vince j kaminski / hou / ect @ ect  cc :  subject : research allocation  shirley ,  grm is now with egm group . egm wants to verify that the 17 . 5 % we are going  to allocate to grm is for the insurance , jere overdyke group . egm seems to  think that their weather , mark tawney group , is receiving support from  research . also , can we break out the support for calme ? calme is going to  split into 3 bus and i am trying to determine who i need to bill for research  supports . if you have any questions , call me . thanx .\",0\n\"Subject: vince ,  i ' ve been out of the office the last few days .  as we discussed friday , veronica and i hope you can join us , the stocks and  the chaneys ( craig chaney is with enroncredit . com ) for dinner at 7 : 00 friday ,  april 27 th .  directions from research and gosling :  go west on research forest  turn left the 2 nd time you cross alden bridge ( stop sign after kuykendall ,  shopping center on right with albertson ' s , exxon ) .  go approximately 1 . 4 miles .  will pass park and elementary school on left .  take next left - noble bend .  turn right on the 2 nd street - freestone place .  we are # 30 freestone place - the next - to - last home on the right .  phone # 281 - 362 - 7267  mike  x 39990\",0\n\"Subject: eol project  vince ,  just to update you on how things are going with regard to eol -  i had a meeting with john arnold yesterday to show him what had been  accomplished to date , and i think that he was fairly impressed by the  information available . i asked him for his input , and he expressed his  interest in having a couple of reports made up that couldn ' t be created from  the format the data was in . i spoke to clayton about this , and he has already  made changes that will reflect a number of the modifications john requested .  i am also continuing to research the issue of an automated trading platform  for eol . i have some information about how the nasdaq operates , and i have  looked at some websites for ecns , such as archipelago , island and instinet . i  have also had a look at the international securities exchange ( ise ) web - site ,  but they do not seem to explain much about their system . any further  suggestions would be appreciated .  i want to find out more about where eol is currently and what modifications  may be necessary in the existing system , finish reading the material at the  websites i have investigated , and then i will try to put together a  presentation for you and / or greg whalley .  tom\",0\n\"Subject: re : from george huan , ut austin mba  thanks a lot !  george huan  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com  to : xiaojun huan  cc : vince . j . kaminski @ enron . com  sent : 5 / 22 / 00 1 : 18 pm  subject : re : from george huan , ut austin mba  george ,  i have resent your resume to the risk management group . please ,  give them a few more days .  vince  xiaojun huan on 05 / 22 / 2000 01 : 08 : 07 pm  to : \"\" ' vkamins @ enron . com ' \"\"  cc :  subject : from george huan , ut austin mba  dear mr . kaminski :  how are you doing ?  i called you on may 11 th about my first rotational assignment . you  recommended risk management and asked me to email you my resume .  it seems like risk management group are not very interested in me ,  because  i  haven ' t received any feedback from them yet . do you think i should wait  for  a few days or call them ?  i do appreciate your help , which will make a difference on my career  path .  sincerely  xiaojun george huan  mba 2000 , ut austin  tel : ( 512 ) 477 - 8690  >  ( see attached file : resume - george huan . doc )  >\",0\n\"Subject: re : confidential  sophie ,  thanks . i shall discuss this with steve as soon as we have the nomination  form signed .  i can do it while he is stioll here at houston .  vince  sophie kingsley 09 / 05 / 2000 10 : 37 am  to : dale surbey / lon / ect @ ect  cc : vince j kaminski / hou / ect @ ect , michele small / lon / ect @ ect  subject : re : confidential  we need to get a nomination form signed by you & vince . once we have this  you guys can discuss the figures with steve and once everything is agreed we  will get the nomination form signed by sherriff and the agreement drawn up .  i will get one up to you today / tomorrow .  dale surbey  05 / 09 / 2000 15 : 33  to : vince j kaminski / hou / ect @ ect  cc : sophie kingsley / lon / ect @ ect , michele small / lon / ect @ ect  subject : re : confidential  sophie - what do we need to do to implement this ?  vince - do you want to go through this with steve while he ' s in houston ?  - dale  vince j kaminski  30 / 08 / 2000 23 : 43  to : sophie kingsley / lon / ect @ ect  cc : dale surbey / lon / ect @ ect , vince j kaminski / hou / ect @ ect , michele  small / lon / ect @ ect  subject : re : confidential  sophie ,  i think it ' s a fair deal .  vince  sophie kingsley 08 / 30 / 2000 11 : 49 am  to : dale surbey / lon / ect @ ect  cc : vince j kaminski / hou / ect @ ect , michele small / lon / ect @ ect  subject : re : confidential  both ,  thanks for your comments and comparisons , it is good to get context .  based on your comments here would be my proposal  o 63 , 500 basic salary -  ol 5 k kickers for each of the 2 years - these are paid as a lump sum on each  anniversary guaranteed . therefore guaranteed salary is effectively o 78 , 500 -  this is completely separate and in addition to any performance bonus  increase the value of options to o 60 k to vest 1 / 3 as before - which leaves a  1 / 3 ( $ 20 , 000 ) hanging out there at the end of the contract .  just fyi - anjam is currently on o 68 , 000 but does not have an agreement , so  this would effectively put a 10 . 5 k gap between the two .  let me know your thoughts .  dale surbey  30 / 08 / 2000 16 : 09  to : sophie kingsley / lon / ect @ ect  cc :  subject : re : confidential  sophie ,  here ' s vince ' s comments on your proposal for steve . also , what ' s a 2 - yr  exec ? how do the kickers work - are they basically a guaranteed minimum  bonus or incremental bonus ?  - dale  - - - - - - - - - - - - - - - - - - - - - - forwarded by dale surbey / lon / ect on 30 / 08 / 2000 16 : 10  - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  30 / 08 / 2000 14 : 21  to : dale surbey / lon / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : confidential  dale ,  thanks for your message .  i don ' t know the labor market in london that well but here the market  for quants is very hot . steve is in my view an exceptionally talented person  and i would go an extra mile to retain him long - term for the company .  i would adjust the base salary or the kicker upward a bit .  o 62 , 000 basic is what anjam is receiving currently ( if i remember  correctly ) . steve has a much higher value  to enron than anjam .  vince  dale surbey  08 / 30 / 2000 07 : 49 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : confidential  vince ,  this is the package hr is proposing for steven . what do you think ?  - dale  - - - - - - - - - - - - - - - - - - - - - - forwarded by dale surbey / lon / ect on 30 / 08 / 2000 13 : 50  - - - - - - - - - - - - - - - - - - - - - - - - - - -  sophie kingsley 29 / 08 / 2000 20 : 32  to : dale surbey / lon / ect @ ect  cc :  subject : confidential  sorry dale , long day , here are the proposed numbers  2 year exec  o 62 , 000 basic ( currently o 55 k )  ol 0 k each year kickers  $ 50 , 000 worth of options to vest 1 / 3 1 / 3 1 / 3  let me know what you think .  regards  sophie\",0\n\"Subject: re : new web address  shannon ,  thanks for the message . see you soon in houston .  your message serves as a useful reminder .  i have to start work on my presentation .  vince  \"\" shannon burchett \"\" on 04 / 11 / 2000 02 : 35 : 29 pm  please respond to \"\" shannon burchett \"\"  to : vince j kaminski / hou / ect @ ect  cc :  subject : new web address  email background - primary templete dfw addressgood morning vince ,  hope all is going great with you there .  today we launched a new version of our web site . the permanent url is . . .  www . risklimited . com  my email address remains the same , sburchett @ risklimited . com  hope to see you at one of the upcoming houston conferences .  cheers ,  shannon  risk limited corporation  box 612666 dallas , texas 75261 usa tel : 972 . 245 . 8300 fax : 972 . 245 . 8318  www . risklimited . com  - attl . htm\",0\n\"Subject: job posting  i am teaching a class at rice and one of my very bright students sent her  resume  in response to this posting . do you know who posted this job ?  vince kaminski  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 24 / 2001  05 : 27 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" helen demianenko \"\" on 04 / 24 / 2001 02 : 11 : 05 pm  please respond to  to :  cc :  subject : job posting  dear vince ,  thanks for talking to me this morning about the sr . risk analyst position .  here is where you can find the job description for that position :  also , i have cut and pasted it down below , just in case .  i appreciate your assistance in this matter and will start working on my  cover letter right away .  i would also like to talk to somebody to get a better feel for the position  ( is this really an mba level position and how much of the in - depth learning  opportunities for the derivatives market does it entail ? )  sincerely ,  helen demianenko  p . s . i have attached my resume ( one more time ) .  sr risk analyst  essential functions : primary accountability for managing the ets risk book  structure and processes from a pipeline ( front office ) perspective . work  within current nng and tw marketing organizations to effectively integrate  risk books into daily marketing and structured product activities . provide  feedback to management regarding overall and specific risk positions .  provide support for consistent and accurate deals entry / reporting for stand  alone risk management system . create ad - hoc reports to assist management in  risk analysis . responsible for managing and providing enhancements to the  capacity books : ? maintain functionality and provide leadership for new  functionality from a users perspective . provide support and direction for  integration of capacity books and revenue management project . support revenue  management team  essential requirements : ba / bs in finance or accounting ( mba preferred ) .  minimum of two years financial instruments experience . excellent  quantitative / analytic and systems skills . knowledge of commodity risk book  concepts . understanding of physical natural gas market , interstate  transportation and financial derivatives . ability to interface with  structuring / marketing groups in order to define business requirements .  ability to provide leadership for business and system processes . excellent  communication skills with an ability to communicate across organization with  varied skill sets and ideas . must be self - motivated with a high level of  energy  preferred skills : na .  special characteristics : this job functions in a team - oriented , fast - paced  environment with multiple concurrent assignments and constantly changing  priorities .  contact : responses will be accepted through may 3 , 2001 . respond to enron  corp . , human resources 235 , p o box 3330 , omaha , ne 68103 - 0330 or e - mail :  dea . crum @ enron . com as a . doc or . txt attachment . please include this  requisition number .  job id 0000108729  department risk management & reporti  company enron transportation services  enron transportation services  location houston , tx  type  posting date 19 - apr - 01  - helen _ d _ resume . doc\",0\n\"Subject: enron storage analysis model audit  professor darrel duffie  450 miramonte avenue  palo alto , ca 94306  may 8 , 2000  dear professor duffie ,  i enclosed with this e - mail enron storage analysis model ( sam ) for your  review . the attached files include :  1 ) a brief documentation of the model ( sam . doc ) , 2 ) c - code of the main  routines , 3 ) excel spreadsheet interface ,  4 ) sam _ audit . dll .  dr . vince kaminski , dr . stinson gibner and myself have spent about one year  in developing this model .  with traders \u0001 , feedback incorporated , the model results are close to reality .  although there are features to be included ,  we believe the model is ready for your review . we look forward to your  comments and suggestions .  please feel free to contact me should you need additional detail .  sincerely ,  zimin lu  director , enron research  zlu @ enron . com  713 - 853 - 6388  enclosures\",0\n\"Subject: revised speaker contact details for power 2000  ? attached is the revised speaker contact details for the power 2000  conference in houston this upcoming may .  please contact me with any questions you may have . ?  ?  regards ,  amy lamonsoff ?  conference coordinator ?  power 2000 ?  ?  - power 2000 speaker contact details . doc\",0\n\"Subject: invitees for grant ' s party  vince :  when do you want to try and have grant ' s party ?  below is a list of people that he would like to invite .  shirley  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 10 / 09 / 2000  10 : 07 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" grant masson \"\" on 10 / 09 / 2000 10 : 09 : 46 am  to : shirley . crenshaw @ enron . com  cc : vince . kaminski @ enron . com  subject : invitees for grant ' s party  shirley :  vince suggested i send you a list of non - research folks whom i would like to  invite to the going away party .  ted murphy  george hopley  bernie aucoin  edith cross  vlady gorny  naveen andrews  debbie brackett .  the above are the essentials . i also like to invite the following , but i  recognize that vince may want to control costs , so i will leave it up to you  and him to invite or not .  bill bradford  jim simpson ( structuring , works for bernie )  rudi zipter  greg woulfe ( ebs trader , not a portland marketer ! )  scott tholan  kevin golden  rebecca ? ? ? ( works with vlady ) .  i will also try to invite terry lohrenz unless instructed not to .  give me a call at home if you have questions .  regards ,  grant .  get your private , free e - mail from msn hotmail at http : / / www . hotmail . com .  share information about yourself , create your own public profile at  http : / / profiles . msn . com .\",0\n\"Subject: term project :  this is the list of projects for the members of the \"\" quant \"\" team .  if you are working on different project , please , ignore this message .  please , develop in a spreadsheet solutions / examples for the following :  1 . black - scholes formula  2 . black ' s formula  3 . develop a spreadsheet to simulate price trajectory using :  a . gbm  b . gbm + jump ( formula 2 . 16 in the book , figure 2 . 7 )  c . mean reversion + jump ( formula 2 . 17 , figure 2 . 8 )  4 . schwartz single factor model ( formula 6 . 12 )  5 . develop models corresponding to the figures 7 . 1 , 7 . 3 , 7 . 5 , 7 . 6 , 7 . 8  vince\",0\n\"Subject: p . c .  what do i need to do in order to get this  p . c . early a . m .  please let me know .  thanks  kevin moore  very important  - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 12 / 22 / 99 06 : 30  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  kevin g moore  12 / 20 / 99 11 : 28 am  to : lyn malina / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , vince j  kaminski / hou / ect @ ect , mike a roberts / hou / ect @ ect  cc :  subject : p . c .  we spoke about the p . c . for trisha tlapek .  location eb 3132 b .  co . # 0011  r . c . 100038  thanks  kevin moore  x 34710\",0\n\"Subject: contacting iris mack  vince ,  iris mack finally returned my call . her message said she had been in  california on a job interview and it looks like she may take the  position . i will contact her to get the details and confirm if she is  off the market .  toni graham  staffing consultant  - - - - - - - - - - - - - - - - - - - - - - forwarded by toni graham / corp / enron on 07 / 06 / 2000  09 : 28 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron north america corp .  from : teresa bien 06 / 22 / 2000 01 : 51 pm  to : toni graham / corp / enron @ enron  cc :  subject : re : re [ 10 ] : greetings from london ( to enron )  fyi . can you look in to this for him ?  - - - - - - - - - - - - - - - - - - - - - - forwarded by teresa bien / corp / enron on 06 / 22 / 2000  01 : 49 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski @ ect  06 / 16 / 2000 10 : 14 am  to : teresa bien / corp / enron @ enron  cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect  subject : re : re [ 10 ] : greetings from london ( to enron )  teresa ,  i would like to invite iris for an interview in houston .  she works currently in london can you call her  and ask when she is planning to visit the states .  we could pay the airfare from a location in the states .  i would hate to pay the lst class ticket from london to houston ,  though i would go for it , if necessary ( i don ' t  want a candidate to think that we are that cheap ) .  business class is a standard  for business related , cross - atlantic flights .  i would be more comfortable if you could negotiate this issue .  thanks  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 06 / 16 / 2000  10 : 13 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  06 / 12 / 2000 03 : 51 pm  to : iris . mack @ bnpparibas . com @ enron  cc : vince j kaminski / hou / ect @ ect  subject : re : re [ 10 ] : greetings from london ( to enron )  iris ,  at this point it ' s my group : research , i . e . quantitative modeling .  please , let me know what your interests are and i shall try to line up  other groups for the interview .  vince  iris . mack @ bnpparibas . com on 06 / 09 / 2000 02 : 33 : 50 am  to : vince . j . kaminski @ enron . com  cc :  subject : re [ 10 ] : greetings from london ( to enron )  hi ,  i will be out of the country until wednesday afternoon - london time .  maybe we can chat then .  also , could you please tell me about the group ( s ) that are interested in  speaking with me .  thanks ,  iris  internet  from : vince . j . kaminski @ enron . com on 06 / 06 / 2000 20 : 31 gmt  to : iris mack  cc : vince . j . kaminski  bcc :  subject : re : re [ 8 ] : greetings from london ( to enron )  iris ,  leaving for ca in a few minutes . i shall get back to you monday .  vince  iris . mack @ bnpparibas . com on 06 / 06 / 2000 10 : 36 : 46 am  to : vince . j . kaminski @ enron . com  cc :  subject : re [ 8 ] : greetings from london ( to enron )  hi ,  thanks for your email . begining of july - what about july 4 th week ?  could you give me a bit more info regarding the best days for you and  your  colleagues .  thanks ,  iris  internet  from : vince . j . kaminski @ enron . com on 06 / 06 / 2000 14 : 29 gmt  to : iris mack  cc : vince . j . kaminski  bcc :  subject : re : re [ 6 ] : greetings from london ( to enron )  iris ,  the beginning of july would be better for us . please , let me know what  is your availability .  vince  iris . mack @ bnpparibas . com on 06 / 06 / 2000 02 : 30 : 49 am  to : vince . j . kaminski @ enron . com  cc :  subject : re [ 6 ] : greetings from london ( to enron )  hi ,  thank you for your email . how many days do we need ?  i have checked my calendar . and think that i should be able to come on  monday june 19 th ( tuesday june 20 th - if you need more than one day ) . .  i can fly from london to houston during the following weekend to  arrive in  time for monday morning .  let me know if these days are good for you and your colleagues .  regards ,  iris  internet  from : vince . j . kaminski @ enron . com on 25 / 05 / 2000 18 : 33 gmt  to : iris mack  cc : vince . j . kaminski  bcc :  subject : re : re [ 4 ] : greetings from london ( to enron )  iris ,  we can invite you for an interview to houston .  what would be a the time for you ?  vince  iris . mack @ bnpparibas . com on 05 / 25 / 2000 11 : 32 : 04 am  to : vince . j . kaminski @ enron . com  cc :  subject : re [ 4 ] : greetings from london ( to enron )  hi ,  thank you for your prompt response . i am interested in any contacts  you  may have in your rolodex .  also , i would be opened to talk to enron as well . please let me know  more  details .  kind regards ,  iris  internet  from : vince . j . kaminski @ enron . com on 25 / 05 / 2000 16 : 19 gmt  to : iris mack  cc : vince . j . kaminski , stinson . gibner , grant . masson ,  pinnamaneni . krishnarao ,  vasant . shanbhogue  bcc :  subject : re : re [ 2 ] : greetings from london ( to enron )  iris ,  i shall go through my rolodex and try to find some good leads for you . i  left  investment banking 8 years ago and this field changes very fast .  alternatively , would you be interested in a company like enron  or another energy company in houston ?  please , let me know .  vince  iris . mack @ bnpparibas . com on 05 / 25 / 2000 09 : 20 : 01 am  to : vince . j . kaminski @ enron . com  cc :  subject : re [ 2 ] : greetings from london ( to enron )  hi ,  how are you ? thank you kindly for your email . sorry i have not  responded  sooner .  currently i am working in derivatives structured products and risk  management at bnp paribas in london . although i currently enjoy living and  working in london , i may need to return to the states - because of my  mother ' s  failing health .  do you know of any good contacts at investment banks that i may  forward my  details to ?  for your information , i have attached my cv . ( please see attached  file :  iris marie mack . doc ) .  thank you in advance for your time and consideration .  kind regards ,  iris mack  44 ( 0 ) 20 7595 8665 ( work )  44 ( 0 ) 20 7229 9986 ( home )  ( see attached file : iris marie mack . doc )  internet  from : vince . j . kaminski @ enron . com on 04 / 04 / 2000 15 : 03 gmt  to : iris mack  cc : vince . j . kaminski  bcc :  subject : re : greetings from london ( to enron )  iris ,  please , feel free to give me a call when you have a few minutes .  i shall be glad to chat with you .  vince  iris . mack @ paribas . com on 03 / 30 / 2000 02 : 24 : 27 am  to : vkamins @ enron . com  cc : denis . autier @ paribas . com  subject : greetings from london ( to enron )  dear dr . kaminski ,  how are you ? it was nice to meet you at the real options conference  in  nyc .  i was intrigued by some of the comments in your conference talk . in  particular , by your use of real options to hedge financial options . this  is  something i am interested in as well .  when you have some time , could we chat about this topic in a bit more  detail ?  thanks for your time and consideration . hope to hear from you soon .  regards ,  iris mack  - - - - - - - - - - - - - - - -  this message is confidential ; its contents do not constitute a  commitment by bnp paribas group * except where provided  for in a written agreement between you and bnp paribas group * .  any unauthorised disclosure , use or dissemination , either  whole or partial , is prohibited . if you are not the intended  recipient of the message , please notify the sender immediately .  * bnp paribas group is a trading name of bnp sa and paribas sa  ce message est confidentiel ; son contenu ne represente en  aucun cas un engagement de la part du groupe bnp paribas *  sous reserve de tout accord conclu par ecrit entre vous et le  groupe bnp paribas * . toute publication , utilisation ou diffusion ,  meme partielle , doit etre autorisee prealablement . si vous n ' etes  pas destinataire de ce message , merci d ' en avertir immediatement  l ' expediteur .  * le groupe bnp paribas est le nom commercial utilise par bnp sa et paribas  sa  ( see attached file : iris marie mack . doc )  ( see attached file : iris marie mack . doc )  ( see attached file : iris marie mack . doc )  ( see attached file : iris marie mack . doc )  - iris marie mack . doc\",0\n\"Subject: re : avistar training  i will keep you informed !  - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 11 / 06 / 2000 02 : 45  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : paige cox @ enron on 11 / 06 / 2000 01 : 21 pm  to : kevin g moore / hou / ect @ ect , ian richardson / corp / enron @ enron  cc : phillip daigle / corp / enron @ enron , cedric belt / corp / enron @ enron ,  bwood @ avistar . com  subject : re : avistar training  hi kevin ,  brian wood with avistar is going to be here next tuesday ( 11 / 14 ) . i have  asked him to schedule some time to meet with you and vince , and whomever else  needs to be trained . i was not aware that you would be using the media  server , so i didn ' t arrange to have him spend any time with you when he was  here alst . i ' ll let you kow what time ( s ) he ' ll be available next tuesday .  sorry for the delay  ian - - please ensure that vince kaminski is set up to use the media server  thanks !  paige  kevin g moore @ ect  11 / 06 / 2000 12 : 43 pm  to : ian richardson / corp / enron @ enron , cedric belt / corp / enron @ enron  cc : paige cox / corp / enron @ enron  subject : avistar training  we are still waiting on avistar training / set up .  please inform me on the situation .  thanks  kevin moore\",0\n\"Subject: re : confirm participation at real options conference at cambridge  u . - urgent  steve ,  are you interested in speaking at this conference ?  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 20 / 2000  08 : 10 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  lenos trigeorgis on 04 / 19 / 2000 05 : 32 : 27 pm  to : \"\" vince j kaminski \"\"  cc :  subject : re : confirm participation at real options conference at cambridge  u . - urgent  vince  can you please check with steve leppard and ask him to confirm , and send to  me his position and title of his talk ( if different from yours ) ?  thanks very much again  lenos  at 05 : 14 _ _ 04 / 19 / 00 - 0500 , you wrote :  >  >  > lenos ,  >  > my busy schedule does not allow me to attend .  >  > i would like , however , to recommend my colleague who works  > in london , steve leppard .  > he can make a very interesting and original presentation on real options .  > please , let me know what you think .  >  > vince  >  >  >  >  >  >  > lenos trigeorgis on 04 / 18 / 2000 09 : 29 : 18 pm  >  > to : lenos . trigeorgis @ rogroup . com  > cc : ( bcc : vince j kaminski / hou / ect )  > subject : confirm participation at real options conference at cambridge  > u . - urgent  >  >  >  > the attached file contains the tentative program for two back - to - back real  > options conferences ( a professional one for july 5 - 6 , and the standard  > annual academic one for july 7 - 8 ) at cambridge u .  >  > your name has been provisionally included on the program . please check all  > the information relating to you and confirm your participation as listed  > ( or advice us of desired changes immediately ) .  >  > thank you .  >  > lenos  >  >  >  > attachment converted : \"\" c : \\ drive _ e \\ eudora \\ attach \\ 4 thconfsessionsl 2 . doc \"\"  >  >  > lenos trigeorgis  > professor of finance  > university of cyprus  > dept of business  > 75 kallipoleos , po box 20537  > cy 1678 nicosia cyprus  >  > tel : + 357 2 892261  > fax : 339063  >  >  >  lenos trigeorgis  professor of finance  university of cyprus  dept of business  75 kallipoleos , po box 20537  cy 1678 nicosia cyprus  tel : + 357 2 892261  fax : 339063\",0\n\"Subject: garp presentation  vince ,  would i be able to get a copy of your presentation last night at garp ? i  have a coworker who was unable to attend .  thanks ,  allen bryson  conoco inc\",0\n\"Subject: iraq and crude output  an interesting piece of information from the oil markets .  iraq is trying to extract concessions from the us and threatens to shut down  production as of oct 1 ( just in time for the us elections ) .  the source of this info is phil verlaeger ( an oil analyst ) .  he is very good but excessively concerned with iraqi machinations .  he is the source of news ( reported by friedman of the new york times in  his op - ed columns ) about massive iraqi trading in the  oil futures markets . i personally discount this info : the volume and  transparency of  the oil markets would not support this type of huge scale operations by  saddam ' s  government . there may be some trading by iraqi officials on the side .  vince\",0\n\"Subject: re : risk 2000 , 12 - 15 june , boston - speaker confirmation  oliver ,  thanks a lot for your message .  here is the information you requested :  vincent kaminski  managing director - research  enron corp .  1400 smith street  room ebl 962  houston , tx 77002 - 7361  phone : ( 713 ) 853 3848  fax : ( 713 ) 646 2503  e - mail : vkamins @ enron . com  vince  \"\" oliver bennett \"\" on 03 / 21 / 2000 11 : 00 : 16 am  please respond to \"\" oliver bennett \"\"  to : \"\" zou , zhou \"\" , \"\" young , derek \"\" ,  \"\" walter gontarek \"\" , \"\" vince j kaminski \"\"  , \"\" steven e shreve \"\" ,  \"\" stephen ross \"\" , \"\" staley , mark \"\" , \"\" selvaggio ,  robert \"\" , \"\" ross mayfield \"\" ,  \"\" ritchken , peter \"\" , \"\" prasad nanisetty \"\"  , \"\" philipp schoenbucher \"\"  , \"\" pesco , anthony \"\"  , \"\" merrell hora \"\" , \"\" mark  d ames \"\" , \"\" lirtzman , harris \"\"  , \"\" leslie rahl \"\" , \"\" john  mcevoy \"\" , \"\" john hull \"\" , \"\" joe  pimbley \"\" , \"\" jeremy berkowitz \"\" ,  \"\" javaid , masood ( mlmam ) \"\" , \"\" ethan berman \"\"  , \"\" browne , sid \"\" , \"\" bob  maynard \"\" , \"\" amarger , regis \"\"  , \"\" derman , emanuel \"\" ,  , , ,  , , ,  , , ,  , , ,  , ,  , , ,  , , ,  , ,  , ,  , , ,  , , ,  , ,  , ,  , ,  , , ,  , ,  , , ,  , , ,  , , ,  , , ,  , , ,  , ,  , ,  , ,  ,  cc :  subject : risk 2000 , 12 - 15 june , boston - speaker confirmation  thank you for agreeing to speak at risk magazine ' s annual us congress , risk  2000 , taking place in boston between 12 - 15 june 2000 .  ?  could you please return this email with your full postal address and contact  details so we can send you hard copies of the brochure , inform you of  congress and hotel locations and let you know when we will need a copy of  your presentation . if you are part of a panel discussion , myself or the  panel moderator will contact you shortly .  ?  in the meantime the full brochure can be viewed and / or downloaded from the  following web address -  ?  www . riskpublications . com / risk 2000 us  ?  if you have any further questions , please don ' t hesitate to contact me .  ?  best regards ,  ?  oliver bennett  senior conference producer  ?  ?  direct : + 44 ( 0 ) 20 7484 9880  ?  risk publications , 28 - 29 haymarket , london swly 4 rx  fax : + 44 ( 0 ) 20 7484 9800 ? email : oliver @ risk . co . uk  www . riskpublications . com\",0\n\"Subject: re : videoconferences w / enron  melinda ,  thanks .  vince  melinda mccarty @ enron  01 / 24 / 2001 10 : 02 am  to : vince j kaminski / hou / ect @ ect , christie patrick  cc : shirley crenshaw / hou / ect @ ect  subject : re : videoconferences w / enron  i have reserved 32 c 2 video conference room - 3 : 30 - 5 : 30 for tomorrow  ( thursday , january 25 )  let me know if you need anything else  melinda  x 31641  vince j kaminski @ ect  01 / 24 / 2001 09 : 37 am  to : melinda mccarty / corp / enron @ enron  cc :  subject : videoconferences w / enron  fyi  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 24 / 2001  09 : 38 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  fap on 01 / 23 / 2001 11 : 21 : 10 am  to : clay degiacinto , deepa mallik  , dennis feerick  , edson otani  , gustavo palazzi ,  \"\" heather n . thorne ( e - mail ) \"\" , jack rejtman  , jaideep singh  , jason cummins  , joshua leventhal  , kim whitsel ,  \"\" louis a thomas ( e - mail ) \"\" , murat camoglu  , nick levitt  , omar bassel  , pat henahan , ram  vittal , steve lessar  , tulika bhalla  , vincent chen  cc : \"\" ' vkamins @ enron . com ' \"\" , \"\" ' christie . patrick @ enron . com ' \"\"  , fap  subject : videoconferences w / enron  team and host :  i have set up the following dates / times for videoconferences .  unfortunately , 4 : 00 - 6 : 00 was not available , so i arranged for 4 : 30 - 6 : 30 pm on  the following dates . i hope this does not cause anyone inconvenience , but i  took time and space that was available .  note : i did not schedule during interview week , finals week or spring  break .  1 / 25 shdh 1203  2 / 1 shdh 1203  2 / 15 shdh 1203  3 / 1 shdh 215  3 / 22 shdh 215  3 / 29 shdh 215  any questions , please contact the fap office .  donna piazze  program director  field application project  the wharton school  univ . of pennsylvania  215 . 573 . 8394 fax 215 . 573 . 5727  fap @ management . wharton . upenn . edu  piazze @ wharton . upenn . edu\",0\n\"Subject: fwd : invitation to the 20 th annual rutgers conference  paul ,  thank you for the invitation to speak at the eastern conferences on  regulation and competition on may the 25 th . i shall be glad to attend and  make an after dinner presentation . i hope to be able to attend the entire  conference .  sorry for a delay in responding to your message . i have been traveling  extensively in the last few weeks .  vince  return - path :  from : vkaminski @ aol . com  full - name : vkaminski  message - id :  date : thu , 15 mar 2001 17 : 04 : 02 est  subject : fwd : invitation to the 20 th annual rutgers conference  to : vkaminski @ aol . com  mime - version : 1 . 0  content - type : multipart / mixed ; boundary = \"\" part 2 _ 70 . 8 aeecl 9 . 27 e 29652 _ boundary \"\"  x - mailer : aol 6 . 0 for windows us sub 10501  return - path :  received : from rly - yho 3 . mx . aol . com ( rly - yho 3 . mail . aol . com [ 172 . 18 . 147 . 35 ] )  by air - yho 3 . mail . aol . com ( v 77 _ rl . 21 ) with esmtp ; fri , 09 mar 2001 18 : 01 : 27  - 0500  received : from postmaster . enron . com ( outbound 5 . enron . com [ 192 . 152 . 140 . 9 ] ) by  rly - yho 3 . mx . aol . com ( v 77 _ rl . 21 ) with esmtp ; fri , 09 mar 2001 18 : 01 : 01 - 0500  received : from mailman . enron . com ( mailman . enron . com [ 192 . 168 . 189 . 66 ] ) by  postmaster . enron . com ( 8 . 8 . 8 / 8 . 8 . 8 / postmaster - 1 . 00 ) with esmtp id xaao 2258 for  ; fri , 9 mar 2001 23 : 00 : 59 gmt  from : vince . j . kaminski @ enron . com  received : from nahou - msmswo 3 px . corp . enron . com ( [ 172 . 28 . 10 . 39 ] ) by  mailman . enron . com ( 8 . 10 . 1 / 8 . 10 . 1 / corp - 1 . 05 ) with esmtp id f 29 noxp 22494 for  ; fri , 9 mar 2001 17 : 00 : 59 - 0600 ( cst )  received : from ene - mtaol . enron . com ( unverified ) by  nahou - msmswo 3 px . corp . enron . com ( content technologies smtprs 4 . 1 . 5 ) with esmtp  id for  ; fri , 9 mar 2001 17 : 01 : 07 - 0600  subject : invitation to the 20 th annual rutgers conference  to : vkaminski @ aol . com  date : fri , 9 mar 2001 17 : 00 : 58 - 0600  message - id :  x - mimetrack : serialize by router on ene - mtaol / enron ( release 5 . 0 . 6 | december  14 , 2000 ) at 03 / 09 / 2001 04 : 58 : 03 pm  mime - version : 1 . 0  content - type : text / plain ; charset = us - ascii  x - mailer : unknown ( no version )  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 09 / 2001  05 : 01 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" kleindorfer , paul \"\" on 03 / 08 / 2001 03 : 41 : 21  pm  to : \"\" ' vkamins @ enron . com ' \"\"  cc : \"\" ' mcrew @ andromeda . rutgers . edu ' \"\"  subject : invitation to the 20 th annual rutgers conference  vince :  for two decades now , i have been a member of the faculty helping to  organize the eastern conferences on regulation and competition that michael  crew of rutgers has chaired . this year will be , in fact , the 20 th  anniversary conference and a number of notable personages will be joining  us to celebrate what we have learned and what we haven ' t about the  economics of network industries . fred kahn , al philipps , bill hogan and a  number of other distinguished academics will be reviewing our progress and  the prospects for the future . the conference will take place at a  beautiful site in the poconos , about 90 minutes north of philadelphia , from  wednesday afternoon may 24 th to friday afternoon may 26 th . you can check  for yourself the nature of the program and the conference site / hotel at the  following website url :  http : / / www . rci . rutgers . edu / ~ crri / ws . htm  michael crew and i would both be delighted if you would be willing to be an  after dinner speaker on thursday evening ( may 25 th ) , just before the key  research reviews of friday morning take place on the electricity , telephone  and gas industries , and following a day of special topics on emerging power  markets and other developments in network industries . naturally we would  be pleased if you would be able to stay for the entire conference , but  knowing your schedule , you may only have time for a part of it . that would  not be a problem . the usual after - dinner address is for 30 minutes ,  followed by a short q & a period .  your presentation would help to underline the tremendous importance of  enron in driving the development of new risk instruments to assist in price  discovery and efficient risk management for market participants , in energy  markets and more generally . both michael and i feel that your perspectives  on the \"\" new science of risk management \"\" and what can be expected from it  could be a very important addition to this special anniversay event .  please let me know ( and please do copy michael on your response ) whether  your schedule will allow your participation in this very special event .  michael and i would , of course , be very happy to follow up with you in  discussing the nature of the presentation , participants and so forth , if  this is a go . i look forward to hearing from you .  regards ,  paul  paul kleindorfer  215 898 - 5830\",0\n\"Subject: message 1  dear dr . kaminski  this is quentin kerr from australia , i just came back from the sydney ' s  conference . glen dixon has told me that you are interested in my work . it is  always my honor to work with you . i am currently a phd student at the  mathsmatics department of the university of queensland ( aiming to finish my  thesis at the end of this year ) . my research interest is financial  mathematics , in particular , energy market modeling and derivatives pricing .  now i send you copies of my first paper ( submitted to the applied  mathematical finance ) and my talk ( the full version of the academic paper  will be available in 2 weeks ) . any comment will be appreciated .  ps : attached with the talk at the conference .  best regard  quentin  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  quentin kerr , email : qkerr @ maths . uq . edu . au  room : 67 - 622 tel : ( 07 ) 33461428  department of mathematics , the university of queensland  - conl . ppt\",0\n\"Subject: re : d dhar , amitava  cc : chaney , craig ; mumford , mike ; kirkpatrick , eric ; brent , richard ; parsons ,  ben ; albanis , george  subject : re : d & b contact names  iris / amitava ,  i may have already said this , but we ' ve had so many e - mails and telephone  calls flying back and forth that i wanted to make sure i at least got this  much out to you . clearly , i would like you to set up the meeting with the  riskcalc gurus to dig deeper into their methodology ( as much as they ' ll tell )  and the impact of missing variables and any other idiosyncracies the model  may have . also try to get a better feel for how well they think the model  extends to other countries . i know from a previous conversation with lea  carty and reading about the model that it was calibrated off north american  names but they suspect it might extend to other countries . conversely , i  know they are working efforts within moody ' s risk management services to  develop private ( and probably public ) firm models specific to regions . one  they mentioned was australia and also within western europe . data , as  always , was the issue . see if the quants have any perspective on their  success / plan in that area .  lastly , we truly appreciate the aggressive efforts you both have made toward  pushing off this private model initiative and i ' m very confident we ' ll be  able to nail a firm plan down upon receipt of either d & b and / or experian data .  cheers ,  scott  - - - - - - - - - - - - - - - - - - - - - - forwarded by scott salmon / eu / enron on 19 / 04 / 2001 20 : 51  - - - - - - - - - - - - - - - - - - - - - - - - - - -  mike mumford @ ect  19 / 04 / 2001 17 : 55  to : scott salmon / eu / enron @ enron  cc :  subject : re : d & b contact names  - - - - - - - - - - - - - - - - - - - - - - forwarded by mike mumford / lon / ect on 19 / 04 / 2001 17 : 59  - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : iris mack / enron @ enronxgate on 19 / 04 / 2001 09 : 23 cdt  to : mike mumford / lon / ect @ ect  cc : amitava dhar / corp / enron @ enron  subject : re : d & b contact names  hi ,  two riskcalc sales people made a presentation this week about their product .  they stated that they could set up a meeting with their quants and our  people to discuss the model input and what happens if we have less than 17  inputs .  regards ,  iris  - - - - - original message - - - - -  from : mumford , mike  sent : thursday , april 19 , 2001 1 : 37 am  to : mack , iris  subject : re : d & b contact names  ooops . . . part ii .  i just threw out 12 as a number for something we might develop . . . it ' s really  not based on anything . we know 17 will work for pre - packaged programs . we  also know there will be a great number of names with less than the full 17 . . .  i assume we would pursue another model ( internal or external ) to provide  probably less accurate numbers but at least available for names with fewer  inputs .  mike  from : iris mack / enron @ enronxgate on 18 / 04 / 2001 15 : 02 cdt  to : mike mumford / lon / ect @ ect  cc : amitava dhar / corp / enron @ enron , scott salmon / eu / enron @ enron , eric  kirkpatrick / eu / enron @ enron  subject : re : d salmon , scott ; kirkpatrick , eric  subject : re : d & b contact names  iris ,  thanks .  after our meeting we stuck around to discuss things a little further .  specifically with respect to global counterparty names . . . we have duns  cross - references on about 70 of active names ( 13 k out of 18 . 5 k ) . we could  greatly accellerate purchase of some useful data by buying blind all major  data associated with these specific duns numbers .  pro - data gets in on names we know we want to review asap , but without  resolution on which specific fields are most useful . we also get to test for  completeness of data ( how many have all 17 fields . . . how many have only 12 of  which fields , etc . ) .  con - costs could be significantly higher . . . buying info we don ' t know we  need ( converse of buying only the 17 fields doesn ' t seem best answer ) . we  would end up buying additional info later . . . overhead costs and piecemeal  buying will increase costs . it development time would be greatly  increased . . . multiple file formats . . . developing to unknown maximum size ,  etc . . . . redoing when more data is purchased .  any thoughts .  mike\",0\n\"Subject: re : dr . bernard loyd at mckinsey ( agriculture )  hi ,  thanks for the document on your practice . i forwarded it to the  relevant parties .  they will take a look at it and get back to me when they wish to take  the next steps with you and your colleagues at mckinsey .  regards ,  iris  - - - - - original message - - - - -  from : @ enron  sent : wednesday , march 07 , 2001 11 : 28 am  to : mack , iris  subject : re : dr . bernard loyd at mckinsey ( agriculture )  below is some material on the practice . b  to : bernard _ loyd @ mckinsey . com  03 / 07 / 2001 cc :  10 : 21 am subject : re : dr . bernard loyd at  mckinsey  ( agriculture )  hi ,  thanks for your prompt response . my colleagues would indeed like to  chat with you about the agriculture industry some time in the future .  can we touch bases in a few weeks .  in the mean time , do you have any materials you can forward to us  about mckinsey ' s agriculture group ?  thanks ,  iris  - - - - - original message - - - - -  from : @ enron  sent : wednesday , march 07 , 2001 2 : 17 am  to : mack , iris  subject : re : iris mack at enron  hey iris ,  great to hear from you and welcome back stateside ! i would be delighted  to  meet with you and your colleagues .  bernard  margot tyler  03 / 06 / 2001 to : bernard  02 : 41 pm loyd / chi / northamerica / mckinsey  cc :  subject : re : iris mack at  enron  - - - - - forwarded by margot tyler / chi / northamerica / mckinsey on 03 / 06 / 2001  02 : 41 pm - - - - -  to :  margot _ tyler @ mckinsey . com  03 / 06 / 2001 cc :  02 : 27 pm subject : re : message for  bernard  hi again ,  i had lunch today with some of the guys in my group who work on  agriculture - related deals and on weather derivatives .  i mentioned to them about bernard ' s working at mckinsey and  specializing in the agriculture area .  we thought it might be worthwhile if we all had a chat and / or  met  to discuss possible collaborative efforts .  will you please forward this email on to bernard to see if this  might be of interest to him ?  thanks ,  iris  | this message may contain confidential and / or privileged |  | information . if you are not the addressee or authorized to |  | receive this for the addressee , you must not use , copy , |  | disclose or take any action based on this message or any |  | information herein . if you have received this message in |  | error , please advise the sender immediately by reply e - mail |  | and delete this message . thank you for your cooperation . |  | this message may contain confidential and / or privileged |  | information . if you are not the addressee or authorized to |  | receive this for the addressee , you must not use , copy , |  | disclose or take any action based on this message or any |  | information herein . if you have received this message in |  | error , please advise the sender immediately by reply e - mail |  | and delete this message . thank you for your cooperation . |  - afc qual pack . zip >\",0\n\"Subject: re : gwen koepke  anne ,  thanks for contacting me about this .  as a matter of fact , i wanted to talk to you about it  today as this matter was outstanding for a long time .  i think we should go ahead and adjust gwen to manager ,  effective march 1 . the compensation would be her current base plus  10 k . this is what we typically do when we promote an associate to a manager .  such promotions take place in march and i think  gwen should not be penalized for the inefficiency of her management  ( i . e . my and maureen ' s procrastination ) .  on unrelated and more serious matter . gary hickerson is the primary client  for maureen ' s services . he communicated to me a few weeks ago that he is  unwilling to underwrite maureen ' s position ( he is in general unhappy with  her contribution ) . this means that maureen will have to find another sponsor  or leave enron .  given her abrasive and aggressive personality finding another internal  customer  will be quite a challenge .  gary volunteered to pay a very generous severance to maureen from his budget .  i would like to talk to you about it when you have a few minutes .  vince  from : anne labbe / enron @ enronxgate on 05 / 02 / 2001 10 : 34 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : gwen koepke  vince ,  just wanted to touch base with you . i have tried to contact maureen so that  gwen ' s title and salary can be adjusted to manager just as you requested , but  have not heard any response from her . would you like for me to wait until i  hear from maureen or should i go ahead and proceed in changing her title ? i  just want to make sure that gwen is in the right peer group during prc .  also , i am going to try and set up a meeting with you next week through  shirley to discuss any buring issues that you are experiencing , and your  expectations during prc .  thanks ,  anne\",0\n\"Subject: grep for windows .  folks ,  those of you who have used unix are probably familiar with the grep command .  it ' s used to extract lines from a set of files that contain a given input  string , and is very useful . ( if you have any questions on how to invoke it ,  ask me . )  the grep command is now available in a pc version - - see below .  joe  - - - - - - - - - - - - - - - - - - - - - - forwarded by joseph hrgovcic / hou / ect on 12 / 01 / 2000  10 : 50 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  carlos uribe @ enron  12 / 01 / 2000 11 : 23 am  to : todd kimberlain / na / enron , joseph hrgovcic / hou / ect  cc : malcolm wells / na / enron , michael barber / hou / ect  subject : grep for windows .  todd and joseph ,  as discussed earlier , i did recall reading somewhere that grep had been  ported to windows . i did some research and was able to find the windows  ported version of grep . attached you will find a compressed file that  contains the grep binary and source . please let me know if i can be of any  further assistance . thanks .  - carlos\",0\n\"Subject: re : approval is overdue : access request for paul . d . thomas @ enron . com  agree , especially if the guy doesn ' t even want it anymore !  for background , this directory id one i set up for dave ryan and todd decook  to deposit there forecast data and exchange with mine  - - - mike\",0\n\"Subject: resume of mark giancola  richard :  i am vince kaminski ' s assistant , and vince received an email from you  yesterday concerning employment for mark giancola . he forwarded the  email to maureen raymond , sr . economist with the research group .  she is currently looking for an associate economist and would very much  like to interview mark .  can you let us know the best way to approach this ? can you contact him  or should i send him an email asking him to give us some dates he might  be available for an interview .  your quick response will be appreciated .  thanks richard !  shirley crenshaw  3 - 5290\",0\n\"Subject: the neural network site  www . pfr . com / ptonline ? and username : june ? with password : ? ? trend : change\",0\n\"Subject: summer intern : paulo oliveira  vince : here is the information that i have on paulo . he would be slated  to work for the summer with april hodgeson and matt harris on how streaming  media products may add value to advertising or some related area .  actually , he would also be a good fit for helping to think ways to analyze  our enron on - line data . i have asked if he can send a resume . in the  mean time , most of his relevant information is attached below .  - - stinson  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 02 / 17 / 2000  11 : 14 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  paulo rocha e oliveira on 02 / 10 / 2000 12 : 04 : 56 pm  to : \"\" stinson gibner \"\"  cc :  subject : re : trip to houston  stinson ,  thank you for your e - mail . my phone number is ( 617 ) 492 - 9551 .  i graduated from princeton university in 1996 ( mathematics ) , and came  straight to mit for a  ph . d . in operations management at the sloan schoolof management . in my first  three years i took all the required coursework in mathematics ,  optimization , stochastic processes , etc . , as well as a number of courses in  psychology ( at mit and harvard ) . i am working with prof . gabriel bitran ,  and i am interested in the mathematical modeling of service operations . in  particular , i am interested in the interaction between customers and  companies ( hence the interest in psychology ) . the ( tentative ) title of my  phd thesis is \"\" pricing substitute products on the internet \"\" , and i am  sending you the summary which i sent to tom gros a few weeks ago that will  give you an idea of what this research is about .  thanks again , and i ' m looking forward to meeting you and your research  group next week .  paulo  pricing substitute products on the internet  objective :  to develop new tools to decide pricing policies for goods and services sold  on  the internet .  motivation :  this research is motivated by the fact that traditional choice and  optimization  models are not appropriate for internet - related businesses . the technological  innovations associated with the internet brought about an overload of  information  which inevitably affects the ways in which consumers make choices .  furthermore ,  companies have a great deal of influence on how much information consumers can  have access to .  the problem of pricing substitute products is an important strategic issue  faced  by internet companies . consumers usually search for generic products ( e . g .  vcrs  or computers ) without knowing exactly what they will buy . companies can show  different products and different prices to each consumer . this type of  flexibility  was not available until the internet came about .  the problem of pricing substitute products is not unique to the internet . the  methodology developed by this research should be transferable to a number of  other settings , such as pricing services . services are unique , and there are  many cases where customers will only buy one of many services offered by a  given company . our model will help companies decide which services to offer  to which customers and how much to charge for these services .  research strategy :  our research strategy is to divide the pricing problem into two components  which can be combined to generate optimal pricing strategies . these  components are choice models and optimization models .  choice models :  choice models describe how customers make choices . the management literature  draws on two main sources for these models : psychology and economics . the  common approach in psychology models is to use what are called heuristic  elimination methods . these methods consist of the elimination of options  based on the sequential elimination of features until only one choice  remains .  these methods tend to be very context - specific and do not lend themselves very  easily to mathematical analysis . economists focus on utility - maximing models  that are significantly more mathematically tractable than psychological  models .  the most common economic model of choice is the logit model . the problem with  these types of models is that they are not very accurate reflections of how  consumer make choices on the internet . the first step in our research will  be  to develop choice models that capture the interactions going on between  customers  and companies on the internet .  optimization :  traditionally , the optimization problem consists of maximizing revenue over a  certain planning horizon . on the internet , the problem of maximizing revenue  still exists , but there is also a need to learn about customers . short term  profit is based on sales , but long term profit is based on how well you know  your customers and are able to retain them . the optimization problem must  therefore include a short term component ( sales ) and a long term component  ( learning ) .\",0\n\"Subject: re : book for lacima course attendees  julie ,  thanks .  also , as a follow up : did you receive the check from paul quilkey ?  vince  \"\" julie \"\" on 01 / 14 / 2001 02 : 15 : 57 pm  please respond to \"\" julie \"\"  to :  cc :  subject : book for lacima course attendees  just wanted to let you know that the energy derivatives : ? pricing and risk  management book , by clewlow and strickland and sponsored by enron corp . , ? is  completed . ? we will begin shipping 15 january , which will include  distributing ? your complimentary copy .  ?  thank you for your patience and support .  ?  sincerely ,  julie  ?  lacima group  ?  ?\",0\n\"Subject: 1 - urgent - outlook email notification ( new )  outlook email notification  your date of migration is : may 7 th  you will be unable to send e - mail unless you take the following action :  please go through your notes email and clean out as many old / un - needed email items as possible before your date of migration . after you are migrated to outlook you will only be allocated 100 mb of total mailbox space . if more than this amount of data is migrated to outlook you will not be able to send e - mail until it is below the 100 mb limit . cleaning up your notes email now will prevent this from happening to you .  enron ' s messaging platform is migrating from lotus notes to microsoft outlook 2000 worldwide . you will be accessing outlook for all of your email functions .  why is enron migrating to outlook 2000 ?  many factors contributed to the decision to migrate from lotus notes to microsoft exchange / outlook . the most prominent factors were :  ? significant advantages to moving to a product that is more integrated with current enron apps ( windows 2000 , office and internet explorer )  ? more efficient shared pc and roaming user features  ? improved support and integration for palm / ce devices  ? instant messaging capabilities  what is being migrated to outlook 2000 ?  ? email messages . from the date of your scheduled migration , the last ( 30 ) thirty days of your email will be converted for use in outlook .  ? all your folders in notes you use to store email messages in .  ? to do items  ? journal items  ? calendar entries dating from ( 1 ) one year in the past to ( 10 ) ten years in the future will be converted .  ? address books , but not your distribution lists that you created . you will need to re - create these in outlook .  thank you ,  outlook 2000 migration team\",0\n\"Subject: re : clayton vernon  thanks for the e - mail . please let me know if clayton does not honor his  commitment to complete his current project . i am giving clayton an  opportunity ( next 6 months ) to prove he can add value to our operation  creating state of the art decision support tools . if he fails , i will take  the necessary steps .  thank you .\",0\n\"Subject: my new info  dear friends and colleagues ,  i have switched again my employment status between self - employment and  employment by joining the txu energy trading on the capacity of their  managing director of risk management operations . will commute home on  weekends , but otherwise , will be stationed in dallas . the new email address  is mjermakl @ txu . edu , and the phone number is ( 214 ) 875 - 9603 .  regards ,  martin jermakyan  www . txu . com  - winmail . dat\",0\n\"Subject: re : test  shirley ,  please , remind me about making arrangements for this trip later this week .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 11 / 2000  09 : 40 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" piazze , thomas \"\" on 04 / 05 / 2000 02 : 47 : 10 pm  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc :  subject : re : test  vince : my schedule indicates that should be a good day to be on campus , so  let ' s plan for it .  please forward to me those brief topic write - ups you promised so that i can  schedule appropriate faculty to meet with you .  thanks .  tom  > - - - - - original message - - - - -  > from : vince . j . kaminski @ enron . com [ smtp : vince . j . kaminski @ enron . com ]  > sent : wednesday , april 05 , 2000 11 : 08 am  > to : piazzet @ wharton . upenn . edu  > cc : vince . j . kaminski @ enron . com ; shirley . crenshaw @ enron . com  > subject : re : test  >  >  > tom ,  >  > the conference in new york is held on may 18 and may 19 . i can visit  > wharton  > the day before .  >  > vince kaminski  >  >  >  >  > \"\" piazze , thomas \"\" on 04 / 05 / 2000 08 : 40 : 55 am  >  > to : \"\" ' vince j kaminski ' \"\"  > cc :  > subject : re : test  >  >  > vince : i enjoyed talking with you yesterday and look forward to receiving  > information relative to your visit to campus .  >  > tom piazze  >  > > - - - - - original message - - - - -  > > from : vince j kaminski [ smtp : vince . j . kaminski @ enron . com ]  > > sent : tuesday , april 04 , 2000 4 : 52 pm  > > to : piazzet @ wharton . upenn . edu  > > subject : test  > >  > >  > >  > > test  > >  >  >  >\",0\n\"Subject: energy operations promotions  i am pleased to announce the following promotions effective february 1 within  ena energy operations . these individuals have been promoted in recognition  of their outstanding performance and their contributions to the continuing  success of enron north america . please join me in congratulating these  employees on their promotions .  promotions to senior director  kristin albrecht serves as business controller for ena \u0001 , s power business .  along with leslie reeves , kristin ensures that power transactions are handled  accurately and smoothly from beginning to end . kristin \u0001 , s primary focus is on  risk controls and daily reporting of positions and p & l for east power  trading , west power trading and genco operations .  brenda herod serves as business controller for ena \u0001 , s assets business , working  with the gas assets group and the texas trading desk . her responsibilities  include global contracts and facilities , risk management , confirmations , gas  scheduling , volume management , settlements and regulatory compliance for  houston pipeline , lrc and enron midstream services .  leslie reeves is a business controller for ena \u0001 , s power business , working  closely with kristin albrecht in managing mid and back office support for the  east , west and genco power trading groups . her primary responsibilities are  documentation and settlements , with a focus on contract administration , cash  forecasting and cash management .  mary solmonson leads ena \u0001 , s global database management group , collecting and  validating information on our customers , contracts , pipelines and facilities ,  as well as published prices . these activities support overall energy  operations responsibilities from risk to logistics to settlement . in  addition , mary has been instrumental in the promotion and implementation of  the global systems across enron to provide control , consistency , and common  data throughout the organization .  promotions to director  scott pleus serves as business controller for enron \u0001 , s emerging products .  these businesses include bandwidth , pulp and paper , and weather . his primary  responsibilities include day - to - day functions of risk management ,  confirmations , pulp and paper scheduling , and settlements as well as long  term system development .  sheri thomas led ena \u0001 , s natural gas off - system settlements function throughout  1999 . her responsibilities included cash forecasting , collections , and  accountability for receivables and payables for ena \u0001 , s gas business in the  east , west and central regions of the us . sheri accepted a new assignment in  january 2000 and is now managing the enron online operations .  promotions to manager  bennett kaufman manages the risk management administration function for the  equity trading and debt trading groups . he has also had experience in  supporting the options book for natural gas derivatives trading . prior to  joining enron in early 1998 , bennett worked in trading operations for  investment banking firms in new york .  richard mckeel is the systems integration analyst within global database  management , overseeing the change management process and new software  development needed to interface the global applications with strategic  systems \u0001 ) sitara , unify , enpower , solarc , sap , and enrononline .  other promotions  specialist to senior specialist : analyst to specialist :  sylvia campos \u0001 ) deal compliance contract records tara eslick \u0001 ) financial  trading risk management  kam keiser \u0001 ) gas risk management - central desk victoria versen \u0001 ) gas  logistics - east desk  phillip love \u0001 ) risk controls operational analysis  jeff coats \u0001 ) gas risk management - central desk  monica lande \u0001 ) west power risk management ( portland ) senior clerk to staff :  trang le \u0001 ) strategic operations \u0001 ) project unify  john postlewaite \u0001 ) east power risk management anthony campos \u0001 ) deal  compliance contract records  diane seib \u0001 ) documentation ( calgary ) kori loibl \u0001 ) gas risk management -  financial books  donnie vinson \u0001 ) west power risk management ( portland )  imelda frayre \u0001 ) strategic operations - project sitara  clerk to senior clerk :  staff to specialist :  leslie smith \u0001 ) information & records management  amy degeyter \u0001 ) power documentation melinda whalen \u0001 ) documentation ( calgary )  michael nguyen \u0001 ) emerging products risk management  sherlyn schumack \u0001 ) logistics volume management  karie hastings \u0001 ) strategic operations - project sitara  in addition , peggy hedstrom and brent price were promoted to vice president ,  as announced in the memo issued by enron corp . office of the chairman . peggy  leads energy operations for enron canada , with responsibility for risk  management , documentation and gas logistics . peggy also serves as a key  interface with canadian pipelines as a member of several industry  committees . brent is the senior business controller for gas trading  operations in the u . s . his responsibilities include risk management ,  confirmations , volume management and settlements for the east , west and  central regions . he also provides operational expertise in the due diligence  phase of the evaluations of joint ventures and acquisitions .\",0\n\"Subject: list of teams and projects  vince ,  here is the list of teams and projects .  there are still a couple of people who have not found their teams yet .  i will try to put them in one of the existing teams .  jason  teaml : project metalgesselschaft ( mg )  lynn nazareth  javier lamas  shauywn smith  carlos wheelock  team 2 : energy related futures contracts  john ganguzza  neeraj hingorani  grant johnson  duane maue  rishad patel  eric van stone  paulo yoshiura  team 3 : standard option contracts  yue guo  fang li  nan li  tracy pan  wei wu  jeff planck  team 4 : standard options contract  felix feng lu  ning zhang  rakhi israni  sanjay wankhade  winni so  orlando taylor  team 5 : power pool analysis  elena chilkina  rob gaudette  joe helms  ken jett  todd litton  marc westmoreland\",0\n\"Subject: summer internship  hello charlene ,  i am forwarding you a resume of a student from berkeley .  we would like very much to have him as a summer intern with my group .  please , let me know if your program can accommodate him .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 11 / 15 / 2000  07 : 44 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  ezequiel luis on 11 / 13 / 2000 04 : 23 : 23 pm  to : vkamins @ enron . com  cc :  subject : summer internship  dear mr . kaminski  i am currently pursuing the m . s . in ieor at uc berkeley . i attended the  speech you gave some weeks ago .  i am interested in summer internship positions available in enron . you will  find enclosed my resume .  sincerely ,  ezequiel luis  este mensaje fue enviado desde http : / / commcenter . infosel . com  internet gratis  http : / / www . terra . com . mx / terralibre  - resume elm . doc\",0\n\"Subject: congestion pricing & forecasting program  i would like to go to this conference / tutorial on congestion modeling and  management . is that ok , or would you prefer somebody else to go ?  thanks ,  vasant  - - - - - - - - - - - - - - - - - - - - - - forwarded by vasant shanbhogue / hou / ect on 01 / 19 / 2001  05 : 38 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  infocast on 01 / 19 / 2001 03 : 58 : 13 pm  to : vasant . shanbhogue @ enron . com  cc :  subject : congestion pricing & forecasting program  as an infocast preferred customer , we would like to invite you to attend our  highly acclaimed program , congestion pricing & forecasting , scheduled for  february 21 - 23 , 2001 in washington dc at a very special discount ! attend  this program for only $ 895 . 00 and the pre - conference workshop , congestion  pricing tutorial : from lmp to flow - based for only $ 520 . 00 . this is a 25 %  savings off the standard tuition ! however , this special offer is only good  through friday , january 26 , 2001 and seats are rapidly filling ! attached you  will find a copy of this timely and informative infocast program , or you can  visit our website at www . infocastinc . com .  congestion pricing & forecasting has been designed to provide you with a  clear understanding of how to predict the impacts of congestion and what  mechanisms can be used to control these impacts . experts will discuss :  ? the most advanced techniques for forecasting transmission congestion ,  locational prices and ftr prices  ? the latest approaches to the \"\" seams \"\" issues  ? the pros and cons of implementing a flow - based congestion management system  don ' t miss this excellent opportunity . but remember , this offer is only good  until january 26 , 2001 so please phone me at ( 818 ) 888 - 4444 ext . 20 or email  me at mail @ infocastinc . com and mention this letter to be registered at this  exceptional price . you can also fax or mail me your completed registration  form along with this letter .  best regards ,  hiedy vitug  preferred customer representative  infocast  ( 818 ) 888 - 4444 ext . 20  fax ( 818 ) 888 - 4440  email : mail @ infocastinc . com  enclosure  if you do not wish to receive e - mail notification of infocast conferences ,  click on the text below and send  mailto : mail @ . com ? subject = delete from mailing list  - congest . pdf\",0\n\"Subject: approval for restricted websit : web _ research _ pub  per kevin moore , please approve elena chilkina ' s access for the following  restricted website : web _ research _ pub .  thank you ,  information risk management ( et )  - - - - - - - - - - - - - - - - - - - - - - forwarded by information risk management / hou / ect on  05 / 02 / 2000 09 : 05 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  security resource request system  directory line item pending access processing  directory name : website : web _ research _ pub  service type : grant  expiration date :  comments : will send to vince kaminski for approval .  security processing  processing status :  e - mail message :  comments / justification :  general information request : kgme - 4 jtf 4 c  requested by : kevin g moore / hou / ect phone : 713 / 853 - 4710  requested for : elena chilkina / hou / ect employee type :  company : 100038 rc # : 0011  priority : high  comments / justification : she will need the same as michael sergeev . a few has  been listed there may be  some others that are not listed . please apply .  editing history ( only the last five ( 5 ) are shown )  edit # past authors edit dates  1 information risk management 05 / 02 / 2000 09 : 03 : 15 am\",0\n\"Subject: draft agenda for meeting between icf consulting and enron corp  - - - - - - - - - - - - - - - - - - - - - - forwarded by pinnamaneni krishnarao / hou / ect on  01 / 27 / 2000 12 : 56 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" gabriel , steven vaol \"\" on 01 / 10 / 2000 02 : 25 : 00 pm  to : pinnamaneni krishnarao / hou / ect @ ect , \"\" vikas , shree vaol \"\"  , \"\" balakrishnan , s . tx 99 \"\"  cc :  subject : draft agenda for meeting between icf consulting and enron corp  >  krishna :  i ' ve attached a draft agenda for the meeting we ' ve been discussing  ( tentatively for february ) . we ' ll try to contact you thursday of this week  to get your comments . thanks .  - steve gabriel & shree vikas  = = = = = = = = = = = = = = = = = = = = = = = = = = =  steven a . gabriel , ph . d .  industrial address  project manager  icf consulting  9300 lee highway  fairfax , va 22031 - 1207  tel . ( 703 ) 218 - 2624  fax ( 703 ) 934 - 3968  sgabriel @ icfconsulting . com  www . icfconsulting . com  academic address  professorial lecturer  dept . of engineering management & systems engineering  the george washington university  washington , dc 20052  sgabriel @ seas . gwu . edu  - enron . doc\",0\n\"Subject: re : fw : fw : get together this coming tuesday ?  thanks for the update . kim .  - - - - - original message - - - - -  from : kaminski , vince  sent : tuesday , may 01 , 2001 2 : 08 pm  to : watson , kimberly  cc : gadd , eric ; kaminski , vince  subject : re : fw : fw : get together this coming tuesday ?  kim ,  i talked to dale early this morning and suggested that we meet during his next trip to houston  when we decide on timing of our project .  vince  from : kimberly watson / enron @ enronxgate on 05 / 01 / 2001 08 : 41 am  to : vince j kaminski / hou / ect @ ect , eric gadd / et & s / enron @ enron  cc :  subject : fw : fw : get together this coming tuesday ?  vince ,  if dale comes in to see you , it looks like eric might be available to meet with you as well . it would be a good opportunity for eric to meet dale and get a little more information on his model . eric ' s phone number is x 54713 .  thanks ,  kim .  - - - - - original message - - - - -  from : gadd , eric  sent : monday , april 30 , 2001 8 : 12 pm  to : watson , kimberly  subject : re : fw : get together this coming tuesday ?  works for me . give me a call at 9 : 30 .  from : kimberly watson / enron @ enronxgate on 04 / 30 / 2001 05 : 09 pm  to : eric gadd / et kaminski , vince  subject : re : get together this coming tuesday ?  dale ,  please , call me on tuesday . my morning schedule is full but i am open in the afternoon .  vince  >  \"\" dale m . nesbitt \"\" on 04 / 30 / 2001 01 : 51 : 21 am  please respond to  to : \"\" vincent kaminski \"\" , \"\" kimberly s . watson \"\"  cc :  subject : get together this coming tuesday ?  vince / kim :  i am flying to houston tonight and wondered if it would fit one or both of  your schedules to get together this coming tuesday sometime for 1 / 2 hour or  so . i really want to reinitiate the conversations marketpoint was having  with john goodpasture and you , and he said either or both of you were the  right people to continue after his responsibility shift . john was quite  positive about the idea of enron acquiring marketpoint narg through license ,  and he implied that one or both of you would be carrying the ball in that  direction after he handed it to you .  would this coming tuesday morning at 930 am be a good time for you guys ? if  so , please give me an email shout at the above address or leave a message on  my voicemail at ( 650 ) 218 - 3069 . i think you will be truly impressed with the  scope and progress we have been able to make with both the short run narg  and the long run narg in which you were interested ( not to mention our power  model ) . the progress is noticeable since you saw it . both long and short  term narg are having quite an impact on a number of gas decisions at the  moment ranging from venezuelan lng , north american lng import terminals and  term , gas basis calculations , trading support , power plant development ,  gas - to - power price spreads in key markets , veracity of heat rate trades ,  bank financings , storage field evaluation , and which new pipelines we can  expect to see enter and which are dogs .  i really hope we can fit it in and get our discussions moving in a mutually  productive direction again . i think narg can help you become even more  successful , and i look forward to working with you .  we have a new office address and new phone number as well . ( we move in may  1 . )  altos management partners  95 main street , suite 10  los altos , ca 94022  ( 650 ) 948 - 8830 voice  ( 650 ) 948 - 8850 fax  ( 650 ) 218 - 3069 cellular  give the phones a week or so to get \"\" debugged \"\" and then switch over .  dale\",0\n\"Subject: telephone interview with enron corp . research group  good morning todd :  david hunker has suggested that you might be a good fit with the research  group of enron corp . with this in mind , we would like to conduct and  informal  telephone interview with you at your convenience .  if you could give me some times and dates during the week of may 22 nd ,  i will coordinate the interview . please let me know the telephone number  that you may be reached at , also .  the interviewers would be :  vince kaminski managing director and head of research  stinson gibner vice president , research  zimin lu director , research  thanks .  shirley crenshaw  adminstrative coordinator  research group  713 / 853 - 5290\",0\n\"Subject: i believe all of you received a request from jeremy blachman to hold the  afternoon of january 10 th open for an off - site to discuss the manner in which  rac and research assess / test the credit quality of ees transactions . i  realize that rac and ees have had many discussions as to the methodology , but  it might be helpful for all of us to understand the actual derivation of some  of analysis . please call me with any questions or comments at ext # 30349 .  the agenda will be as follows :  12 : 00 - 1 : 00 lunch  1 : 00 - 3 : 30 presentations  3 : 30 - to close discussion  rac / research presentations  the following topics would be of interest to ees :  1 - the derivation of default probabilities including ( research )  - - a discussion of the actual mathematical process ,  - - the analytics behind why these computations are deemed the best for  enron ,  - - a comparison to historic default rates and why they differ ( in respect  to actual default rates , shape of the cumulative default curves etc .  2 - the volatilities which are used to determine possible loss scenarios for  the commodity portion of ees deals including ( research )  - - the selection of curves  - - the application of those curves to the actual credit reserve model and  - - why these particular tests are applicable to our products .  3 - the recovery rates used in the credit reserve model . how are these  figures derived ? ( rac )  4 - how rac and research have adjusted the credit reserve model to  accommodate unusual aspects of the deal including ( rac )  - - promotion payments ,  - - accounts receivable  - - committed capital  - - and other factors  ees also understands that some of you may be familiar with our processes ,  however , there are perhaps areas that you would like to understand more  fully . please tell us what you would like to hear from us .  also , rac has sent us the credit reserve model and i have seen completed  models . perhaps prior to our meeting on wednesday , someone from rac and / or  research could sit with me and someone from phil layton ' s group and go  through the process of how the various pieces are put together .\",0\n\"Subject: re : grades  thank you mr . kaminsky !  i received your first group of grades and will keep track as you work your  way through the class to make sure that we don ' t miss anyone . - pam  at 04 : 55 pm 5 / 1 / 01 - 0500 , you wrote :  > pam ,  >  > the term papers arrived at my internet mailbox .  > i shall be sending you the information as i make progress reading the  > papers .  >  > first group of students :  >  > helen demianenko  > javier lamas  > lynn nazareth  > shauywn smith  > carlos wheelock  > sarah woody  >  > grade : a  >  >  > please , confirm receipt of this message and please double check  > that all registered students have been graded ( to make sure no student  > falls through  > the cracks ) .  >  >  > vince\",0\n\"Subject: re : power point slides about enron  vince - please ask your associate to contact laura valencia in my group - she  can give you the recent lq anaylst slides and the enron . com year end  presentation on the web ( these two should give you enough for a \"\" basic \"\" ene  pitch . mark  vince j kaminski @ ect  04 / 14 / 2000 08 : 54 am  to : mark koenig / corp / enron @ enron , m rajgopal / corp / enron @ enron  cc : stinson gibner / hou / ect @ ect , vince j kaminski / hou / ect @ ect  subject : power point slides about enron  mark ,  i want to ask you for a favor .  one of my associates , stinson gibner , is making a presentation to the mba  students at  texas a & m university next week .  do you have a power point general presentation about enron , emphasizing our  growth ,  creativity and employment opportunities ? we could use it for presentations  we make on campuses to business and science students . there are many  presentations available on our intranet site , but the are outdated .  it was nice meeting you in san antonio .  vince\",0\n\"Subject: re : amit ' s visit  sounds great .  there is another mit student , juan - carlos , who i would like to have accompany  amit on the 16 th . i ' ll speak to him to clear the date .  all the best .  stinson gibner @ ect  01 / 17 / 00 09 : 57 am  to : thomas d gros / hou / ect @ ect  cc : jean mrha / enron communications @ enron communications , ravi  thuraisingham / hou / ect @ ect , samer takriti / hou / azurix @ azurix , vince j  kaminski / hou / ect @ ect , melissa jones / enron communications @ enron communications  subject : amit ' s visit  amit planning to spend the day of february 16 th at enron in order to give an  update on his bandwidth pricing research . we will also try to spend some  time in more of a round - table discussion designed pick his brain on any other  related issues on which he may be able to help us . i am corresponding with  amit to set up a more detailed agenda . please let me know if there are  conflicts which should lead us to choose a different date .  regards ,  - - stinson\",0\n\"Subject: class speaker  vincent ,  we met last year when you were visiting the university , and talking  primarily with our finance faculty . as you may have heard , i tried to call  to talk with you about the possiblity of a guest speaker in my class on real  options from your group at enron . naturally , i would be delighted if you  could speak , but i could also appreciate the possibility that someone else  might also be a good choice .  i have attached a copy of the course syllabus for your information .  this is the first time this course has been offered at ut , and i was  motivated to do so because of the \"\" buzz \"\" regarding the topic in industry . i  have about 30 mba students in the class , many of whom were in the energy  finance classes offered by sheridan titman and ehud ronn ( both of whom have  been very supportive of the development of this class ) . my own background  is decision analysis rather than finance , so i tend to approach the topic  with that perspective . as you can see , i have covered both traditional  decison analysis topics and a review of the options literature . at the  present time , i don ' t think there is a really complete textbook that fits  the course at the mba level , so i ' ve tried to focus on how to do things in  practice , and have provided software ( dpl , spreadsheets , @ risk , etc ) as  tools for the students to use .  the course is scheduled on thursday afternoons from 3 : 30 to 6 : 30 ,  which is a time that i chose to make possible the participation of some  executive mba students from houston ( 3 are participating ) . i look forward  to hearing from you about the possiblity of a speaker , or any other  suggestions that you might have .  james s . dyer  fondren centennial chair in business  department of management science and information systems  cba 5 . 202  the university of texas at austin  austin , texas 78712 - 1175  email : j . dyer @ bus . utexas . edu  telephone : 512 - 471 - 5278  fax : 512 - 471 - 0587\",0\n\"Subject: re : prc  dave ,  no problem . i shall do it this weekend .  also , i left you a message regarding grant masson ( a vp in my group  who left and went to work for el paso 2 months ago ) .  i made a bet that he would be knocking on our door in a year . i lost . he  wants to come back  after 2 months .  my recommendation is to take him back . he left on good terms and is quite  competent .  i would also like to send a message to the group that the grass on the other  side  of the fence may look greener , but in reality it may be painted hay . \"\" the  return of grant  masson \"\" would demonstrate that enron offers best long - term growth  opportunities ( and that  i am good manager ) .  grant would come back to his original vp position . can we short - circuit the  hiring procedures for a vp . grant ' s body is still warm and we can just  re - instate  him in the original position instead of going through all the loops required  to hire a vp .  vince  david w delainey  12 / 14 / 2000 10 : 29 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : prc  vince , can you provide for me a detailed list of 2000 accomplishments ,  strengths / weaknesses and feedback against the criteria for the 2000 prc .  i need that in the next week or so .  thanks  delainey\",0\n\"Subject: constellation delta positions  jim ,  i can provide some explaination about the spread option function in the  exotica library .  my phone number is 713 - 853 - 6388 . let us set up a time .  zimin  - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 03 / 06 / 2001 10 : 22 am  - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  03 / 06 / 2001 09 : 56 am  to : zimin lu / hou / ect @ ect , stinson gibner / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : constellation delta positions  zimin , stinson  i think i forwarded the message to you .  did we act on it ?  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 06 / 2001  09 : 55 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  jim meyn @ enron  02 / 27 / 2001 03 : 53 pm  to : vince j kaminski / hou / ect @ ect  cc : robert stalford / na / enron @ enron , mason hamlin / hou / ect @ ect  subject : constellation delta positions  vince ,  rob and i would like to coordinate a meeting with one of your research people  to review the spread option calculation from the exotica options library .  we ' re pricing a spread option deal in nyc and have some questions related to  the formula , greeks , etc . please let me know who might be available to sit  with us for about 1 / 2 hour . thanks  - jim  - - - - - - - - - - - - - - - - - - - - - - forwarded by jim meyn / na / enron on 02 / 27 / 2001 03 : 49 pm  - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : mason hamlin @ ect 02 / 27 / 2001 01 : 48 pm  to : tom may / corp / enron @ enron , robert stalford / na / enron @ enron  cc : jim meyn / na / enron @ enron , gautam gupta / hou / ect @ ect  subject : constellation delta positions  attached are the delta positions for the nyc constellation deal . if you have  any questions or would like to review the model , please call me .  thanks ,  mason\",0\n\"Subject: re : term project :  please respond to dear vince ,  i was wondering if you were able to open the attachment with my resume this  time . rumor has it that you are currently hiring people for your group . is  this true ?  sincerely ,  helen  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : wednesday , april 11 , 2001 3 : 22 pm  to : isranir @ rice . edu ; demianen @ rice . edu ; tbal 93 @ yahoo . com ;  maue @ rice . edu ; loughrid @ rice . edu ; jblantonjr @ yahoo . com ;  gjohnson @ rice . edu ; emchombo @ rice . edu ; nazareth @ rice . edu ;  vanstone @ rice . edu ; ganguzza @ rice . edu ; nelsonb @ rice . edu ;  sssmith @ rice . edu ; wheelock @ rice . edu ; westmore @ rice . edu ;  gaudette @ rice . edu ; otaylor @ rice . edu ; dikeman @ rice . edu ; jettke @ rice . edu ;  litton @ rice . edu ; chilkina @ rice . edu ; helms @ rice . edu ; wankhade @ rice . edu ;  monfan @ rice . edu ; kostya @ rice . edu ; pcp @ rice . edu ; yueguo @ rice . edu ;  nlwbio @ rice . edu ; zhangn @ rice . edu ; rishad @ rice . edu ; yoshiura @ rice . edu ;  howard @ rice . edu ; dayangd @ rice . edu ; wuwei @ rice . edu ; so @ rice . edu ;  wooddy @ rice . edu ; lamas @ rice . edu ; tbalestrery @ houston . rr . com ;  hingoran @ rice . edu ; planck @ rice . edu  cc : vkaminski @ aol . com ; vince . j . kaminski @ enron . com ;  jason . sokolov @ enron . com  subject : term project :  this is the list of projects for the members of the \"\" quant \"\" team .  if you are working on different project , please , ignore this message .  please , develop in a spreadsheet solutions / examples for the following :  1 . black - scholes formula  2 . black ' s formula  3 . develop a spreadsheet to simulate price trajectory using :  a . gbm  b . gbm + jump ( formula 2 . 16 in the book , figure 2 . 7 )  c . mean reversion + jump ( formula 2 . 17 , figure 2 . 8 )  4 . schwartz single factor model ( formula 6 . 12 )  5 . develop models corresponding to the figures 7 . 1 , 7 . 3 , 7 . 5 , 7 . 6 , 7 . 8  vince\",0\n\"Subject: re : improve communication  zimin ,  i will make sure that you have the opportunity to present your contributions .  it makes also sense to ask paulo every time to say a few words .  vince  zimin lu  06 / 22 / 2000 10 : 06 am  to : vince j kaminski / hou / ect @ ect  cc : stinson gibner / hou / ect @ ect  subject : re : improve communication  vince ,  thanks for your reply . that is what i feel too : vince knows what we are  doing , so he does not have to ask us again .  in another dimension , i want to make sure that people like paulo get enough  incentive to perform . the group meeting , i  think , will provide a sense of accomplishment when other members in the group  know what we have been through .  thanks again for your understanding .  zimin  vince j kaminski  06 / 21 / 2000 06 : 30 pm  to : zimin lu / hou / ect @ ect  cc : stinson gibner / hou / ect @ ect  subject : re : improve communication  zimin ,  sorry if you get this impression . the real reason is that i treat  the lunch meetings as an opportunity to get updates on things  that are going on at more remote locations . i interact with each of the  members of your group daily and i know what ' s going on .  i agree with you , however , that the lunch meetings are not exclusively  for my benefit , but also for the benefit of the other members of  the group . i shall make sure that you have the opportunity  to communicate your contribution to the company .  vince  zimin lu  06 / 20 / 2000 02 : 47 pm  to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect  cc :  subject : improve communication  vince and stinson ,  the valuation group has accomplished a lot during last six months . the  number of  projects we are working on is keeping increasing . however , when comes to the  staff meeting ( thursday lunch meeting ) , we are often left out for updating  our projects .  this makes me feel that what we are doing is no longer interesting or worth  mentioning .  i am hoping that we can get more exposure , despite we are still in the old  economy .  zimin\",0\n\"Subject: re : texas finance festival  fyi : below is some information on the 2 nd annual texas finance festival .  - - - - - - - - - - - - - - - - - - - - - - forwarded by cindy justice / hou / ect on 03 / 13 / 2000 09 : 52  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" john d . martin \"\" on 03 / 13 / 2000 09 : 43 : 51 am  to : cindy justice  cc : bill petty  subject : re : texas finance festival  cindy ,  yes , it ' s just around the corner and we have our very best program ever .  our web site is up at  check it out . actually , i was waiting for the final version of the program  from sheridan to post it before getting in touch with you this week . we  are planning on a room capacity group of 45 - 50 folks and are finalizing the  plans for entertainment for friday and saturday night on the riverwalk .  bill is handling the arrangements this year and i ' ll pass this message on  to him as well .  do you think we could get an enron speaker for saturday ' s luncheon ? last  year was fabulous and would be hard to top but we ' d like to try . san  antonio should be a bit easier on the speaker too . let me know what your  thoughts are on everything including the speaker .  bill and i are leaving town wed afternoon to go to a harvard conference so  maybe we could talk before then .  we ' re getting excited and want to get you guys involved for it is your  personal ( and financial ) support that makes the conference really work .  john  at 01 : 09 pm 3 / 10 / 00 - 0600 , you wrote :  >  >  > john -  >  > i haven ' t heard from you in a while and realized that the texas finance  festival  > is around the corner on april 7 & 8 . how are things going ?  >  > cindy justice  >  >  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: re : enron visit - - thanks  larry ,  i was thinking about the potential applications over the weekend  and i think i shall have a proposal for you in a few days .  vince  p . s . i want to remind you about the favor i asked you about .  we would like to talk ( no commitments ) to the prediction company .  can you refer me to your friend .  vince  lawrencelrtnmt @ aol . com on 05 / 06 / 2001 12 : 07 : 18 am  to : vkamins @ enron . com  cc :  subject : enron visit - - thanks  dear vince ,  i just wanted to thank you for inviting me to visit enron last friday and  for the generous amount of time you spent with me personally while i was  there . i found our discussions both informative and stimulating .  vince , i was genuinely impressed by the caliber of the group you have  assembled at enron . their individual and collective expertise is obvious ;  and they were most generous in exchanging ideas and sharing opinions with me .  if you or any of your people have , over the weekend , developed further  questions or thought of additional information that might be helpful , i ' m  standing by . i ' m eager to continue our dialogue .  sincerely ,  larry thorne\",0\n\"Subject: f / up  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 12 / 22 / 2000  04 : 34 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  clayton vernon @ enron  12 / 21 / 2000 03 : 51 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : f / up  vince -  i got your message ( i was up on the roof of the building helping to fix the  weather satellite dish - what a gorgeous view of houston ! ) .  i appreciate your words . everything remains fine , vince . you are my \"\" father \"\"  here at enron , and i admire and respect you greatly . i think i know the kind  of person you are , in terms of your integrity , and i admire the high  standards you set for all of us in your extended \"\" group . \"\"  i want to let you know i am not the only one in the group who doesn ' t  appreciate the way maureen disrespects you . you remain the key external  factor in their success - it is not simply their own abilities that matter to  their futures but your own - vince ' s - success with upper management that  matters .  we respect you , and we don ' t like it when you are disrespected . maureen  didn ' t disrespect me today , vince , she disrespected you .  it ' s time i told you something . last april , maureen , highly intoxicated  following a work - related function at ninfa ' s , made an unsolicited predatory  sexual advance on me at my desk on the 19 th floor . i was shocked and  disgusted , but i didn ' t say one word about this , vince , because i played it  out and didn ' t want to put you into the position of having a raving maureen  in your midst as you perhaps had to fire her and then endure a litany of  gender - bias crap lawsuits .  i \"\" took one for the team , \"\" vince . i can ' rt say i would do it again - maureen  is brazen to berate me after what she did , in public no less .  i appreciate your bringing me into enron . i ' ve found a respectful and ,  indeed , a loving work environment . i remain willing to do whatever i can to  help the group .  clayton\",0\n\"Subject: giuseppe ' s bio  vince ,  i will take care of the few typos , capitalizations , etc . , but i wanted to get  this to you asap . he has a fine sense of humor !  sam  - - - - - - - - - - - - - - - - - - - - - - forwarded by william smith / corp / enron on 08 / 28 / 2000  12 : 12 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : giuseppe paleologo @ enron communications on 08 / 28 / 2000 12 : 11 pm  to : william smith / corp / enron @ enron  cc :  subject : re : hello !  i landed in the research group as a summer associate at the end of june ,  straight from sunny palo alto , where i am pursuing a phd in management  science and engineering . since my area of research is the performance  evaluation and economic analysis of communication networks , enron is \"\" the \"\"  place to be : enron broadband services has the first mover ' s advantage in this  field , and nearly every decision requires an understanding of both data  networks and financial mathematics . enron has most of the needed skills to  succeed , and the right attitude . after two months here , i am more convinced  than ever that the best is still to come .  i am from rome , italy , where i have spent most of my life ( my pre - columbian  period , properly speaking ) . italy is the nation known among americans for  having invented the pasta alfredo and for having elected a porn star as a  member of parliament . the former allegation is indeed false : pasta alfredo is  quintessential american . about the latter , one of my dubious achievement is  to have interviewed the aforementioned member of parliament about her  political agenda , receiving predictably fuzzy answers .  as many members of the research groups , my background is in physics . i fell  in love with operation research and management science while working for a  large it consulting firm in italy , and wanted to learn more . i have been a  student at stanford university since then . studying there has been a very  enjoyable experience , and i am sorry i will have to leave it sometime soon .  management science is not the only hobby in my life . i am an avid  motorcyclist , and am a lifelong student of argentine tango . i also like  reading ( a skill i learned in lst grade and has never failed me ) , in  particular 20 th century english , italian and french poetry .  william smith @ enron  08 / 11 / 00 02 : 10 pm  to : giuseppe paleologo / enron communications @ enron communications  cc :  subject : hello !  giuseppe ,  i ' m sam smith and among other things i ' m the department newsletter editor .  are you going to be leaving after today or will you be around next week ? if  you ' ll be around , i ' d love for you to write a short bio piece for the  newsletter . have a look at some recent issues for examples . if you ' ll be  here monday morning , i can get a quick photo .  if not , then i ' m sorry i missed you !  sam\",0\n\"Subject: re : your mail  dear vince ,  the following message is from co - pi , prof . baichun xiao in long island  university .  in this message , he told me how enron would be registered . to my best  knowledge ,  ibm , lucent and other big companies have registered in nsf for long .  your kindly understanding is acknowledged very much .  good weekend ,  youyi  - - - - - - - - - - - - - - - - - - - - - - forwarded by youyi feng / na / enron on 09 / 08 / 2000 03 : 08  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  baichun xiao on 09 / 07 / 2000 09 : 39 : 38 am  to : youyi . feng @ enron . com  cc :  subject : re : your mail  dear youyi :  the person in charge of external grants in your company needs to contact  nsf by calling the following numbers for institution registration .  fastlane user support : 1 - 800 - 673 - 6188 .  fastlane availability ( recording ) : 1 - 800 - 437 - 7408 .  after enron is registered ( i think it ' s a free registration ) , you provide  the following information to the enron official so he / she will send it to nsf .  nsf will assign you a password for future access to electronic submission  ( called fastlane ) . since all proposals have to be submitted through  fastlane after oct . 1 , 2000 , this is the must .  name  highest degree  year conferred  present institution  department  street address  city  state  zip code  social security number ( ssn )  email address  business phone number  business fax number  for more information , you may go to  www . fastlane . nsf . gov / fastlane . htm  baichun  at 05 : 14 pm 9 / 6 / 00 - 0500 , you wrote :  >  > dear baichun ,  >  > i am having no idea about contacting nsf while the  > managing director of this research group has kindly agreed  > on doing anything he can to help us pursue fund rising .  > please let me know how enron can put my profile into nsf ' s  > database officially .  >  > the first four pages of the project application have been revised by  > me . i do not  > really know if you like the revision . appended is the primary  > and description of the project document files .  >  > best regards ,  >  >  > youyi  >  > ( see attached file : project summary . doc ) ( see attached file : project  > description . doc )  > attachment converted : \"\" c : \\ bcx \\ res \\ eudora \\ attach \\ project summary . doc \"\"  >  > attachment converted : \"\" c : \\ bcx \\ res \\ eudora \\ attach \\ project description . doc \"\"  >\",0\n\"Subject: re : fw : invitation to 2001 energy finance conference - the  university of texas at austin  joe ,  i shall probably ask tanya to attend . it coincides with parents '  weekend at stanford . please , send me the slides anyway .  i shall help tanya to prepare her presentation .  vince  from : joseph hrgovcic / enron @ enronxgate on 02 / 12 / 2001 09 : 47 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : fw : invitation to 2001 energy finance conference - the university of  texas at austin  vince ,  i understand you ' ll be speaking at the cefer conference . gary taylor , the  head of marketing in the weather deriv . group , would like to know if you plan  on mentioning weather derivatives at all and that if you do , he has numerous  existing slides and presentations that might be useful to you .  joe  - - - - - original message - - - - -  from : angela dorsey [ mailto : angela . dorsey @ bus . utexas . edu ]  sent : wednesday , january 10 , 2001 9 : 06 pm  to : angela dorsey  cc : ehud ronn ; sheridan titman ( e - mail )  subject : invitation to 2001 energy finance conference - the university of  texas at austin  colleagues and friends of the center for energy finance education and  research ( cefer ) :  happy new year ! hope you all had a wonderful holiday season .  on behalf of the university of texas finance department and cefer , we  would  like to cordially invite you to attend our :  2001 energy finance conference  austin , texas  february 22 - 23 , 2001  hosted by the university of texas finance department  center for energy finance education and research  dr . ehud i . ronn and dr . sheridan titman are currently in the process of  finalizing the details of the conference agenda . we have listed the  agenda  outline below to assist you in your travel planning . each conference  session will be composed of a panel discussion between 3 - 4 guest  speakers  on the designated topic .  as supporters of the center for energy finance education and research ,  representatives of our trustee corporations ( enron , el paso , reliant ,  conoco , and southern ) will have the $ 500 conference fee waived .  the conference package includes thursday evening ' s cocktails &  dinner and hotel / ut shuttle service , as well as friday ' s conference  meals ,  session materials and shuttle service . travel to austin and hotel  reservations are each participant ' s responsibility .  a limited number of hotel rooms are being tentatively held at the  radisson  hotel on town lake under the group name \"\" university of texas finance  department \"\" for the nights of thursday , 2 / 22 / 01 and friday , 2 / 23 / 01 ( the  latter evening for those who choose to stay in austin after the  conference ' s conclusion ) . to guarantee room reservations , you will need  to  contact the radisson hotel at ( 512 ) 478 - 9611 no later than monday ,  january  22 nd , and make your reservations with a credit card . please let me know  when you have made those arrangements so that i can make sure the  radisson  gives you the special room rate of $ 129 / night .  please rsvp your interest in attending this conference no later than  january 22 nd to angela . dorsey @ bus . utexas . edu , or ( 512 ) 232 - 7386 , as  seating  availability is limited . please feel free to extend this invitation to  your colleagues who might be interested in attending this conference .  center for energy finance education and research  program of the 2001 energy finance conference  february 22 - 23 , 2001  thursday , feb 22 :  3 : 00 p . m . reserved rooms at the radisson hotel available for  check - in  5 : 30 p . m . bus will pick up guests at the radisson for transport to  ut club *  6 : 00 p . m . cocktails , ut club 9 th floor  7 : 00 p . m . dinner , ut club  8 : 00 p . m . keynote speaker  9 : 00 p . m . bus will transport guests back to hotel  friday , feb 23 :  7 : 45 a . m . bus will pick up at the radisson for transport to ut  8 : 30 a . m . session 1 - real options  panelists : jim dyer , ut ( chair )  sheridan titman , ut  john mccormack , stern stewart & co .  10 : 00 a . m . coffee break  10 : 15 a . m . session 2 - deregulation  panelists : david eaton , ut ( chair )  david spence , ut  jeff sandefer , sandefer capital  partners / ut  peter nance , teknecon energy risk  advisors  11 : 45 a . m . catered lunch & keynote speaker  1 : 30 p . m . guest tour - eds financial trading & technology center  2 : 00 p . m . session 3 - risk management  panelists : keith brown , ut ( chair )  vince kaminski , enron  alexander eydeland , southern co .  ehud i . ronn , ut  3 : 30 p . m . snack break  3 : 45 p . m . session 4 - globalization of the energy business  panelists : laura starks , ut ( chair )  bob goldman , conoco  ray hill , southern co .  5 : 15 p . m . wrap - up  5 : 30 p . m . bus picks up for transport to airport / dinner  6 : 30 p . m . working dinner for senior officers of energy finance  center  trustees  * we have made arrangements to provide shuttle service between the  radisson  hotel and ut during the conference . however , if you choose to stay at an  alternative hotel , then transportation to conference events  will become your responsibility .  * * * * * * * * * * * * * *  angela dorsey  assistant director  center for energy finance education & research  the university of texas at austin  department of finance , cba 6 . 222  austin , tx 78712  angela . dorsey @ bus . utexas . edu  * * * * * * * * * * * * * *\",0\n\"Subject: phone interview  shirley ,  please , arrange a phone interview next week . tt , sg , zl , vk .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 11 / 21 / 2000  08 : 46 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  nina knirel on 11 / 20 / 2000 05 : 13 : 47 pm  to : vince . j . kaminski @ enron . com  cc :  subject :  708 graham place # 207  austin , tx 78705  november 20 , 2000  dear mr . kaminski :  i read with interest your company \u0001 , s description on the  web page . i was highly impressed by the work that  enron corporation does and would like to inquire about  employment opportunities with your company .  enclosed is a copy of my resume that details my  academic qualifications and practical experience . i am  excited about stepping into a position , which will  utilize my technical , analytical , and interpersonal  skills in a fast paced environment , and look forward  to expanding my horizons with new challenges and  opportunities that enron corporation will offer . i  know from customer and supervisor feedback that i have  the interpersonal skills imperative to building a  successful career at the enron corporation and am  motivated to do so . your firm has an excellent  reputation and i genuinely look forward to becoming a  part of the enron corporation community .  i know you must be busy during this time of the year ,  but i would sincerely appreciate a few minutes of your  time . i plan to call you within the next seven days to  discuss how my education , practical skills , and  background would qualify me as a member of your  company . in the meantime , if you need to contact me ,  my daytime and nighttime number is ( 512 ) 474 - 6683 and  my e - mail address is knirel @ mail . utexas . edu .  thank you very much for your time and consideration . i  look forward to talking to you .  sincerely ,  nina knirel  do you yahoo ! ?  yahoo ! calendar - get organized for the holidays !  http : / / calendar . yahoo . com /  - knirel resume final [ 1 ] . doc\",0\n\"Subject: risk 2000 panel discussion  draft agenda attached . please mark up at will .  >  - boston risk conference agenda . doc\",0\n\"Subject: interview schedule for rabi s . de  attached please find the interview packet for the above - referenced person .  the interview will happen friday august 11 , 2000 . please print all three  documents for your hard copies . if you have any questions , or conflicts of  schedule , please do not hesitate to contact me .  sean grady  58701\",0\n\"Subject: re : invitation to present at risk ' s advanced stress testing course  jean - pierre ,  sorry . i have previous commitments on these days .  vince  \"\" jean - pierre doggett \"\" on 11 / 07 / 2000 10 : 14 : 05 am  please respond to \"\" jean - pierre doggett \"\"  to : \"\" risk conferences \"\"  cc :  subject : invitation to present at risk ' s advanced stress testing course  i would like to invite you to present a section on risk ' s course entitled ,  \"\" practical application of advanced stress testing \"\" which will be held in  london ( 5 & 6 february 2001 ) and new york ( 12 & 13 february 2001 ) .  ?  you have been recommended to me in the course of my research as an authority  in this field so i would be delighted for you to present any of the sections  that are still available on the attached programme :  for london : sections 1 , 2 . 1 , 2 . 2 , 3 , 4 and  for new york : sections 1 , 2 . 1 , 2 . 2 , 4 and 8  my market research indicates that advanced stress testing is a highly  interesting theme for a wide range of senior quantitative analysts and risk  managers . i anticipate the course to be technical and practical in nature  and assume a high level of knowledge from the delegates . it aims to extend  the scope of accepted practices into the new areas of liquidity and credit  risk stress testing and complement var methods by introducing new risk  measurement techniques that can be applied in an integrated context .  ?  please contact me as soon as possible with an indication of which section is  most suitable for your current interests . if you feel that you will not be  able to participate on this occasion , i would welcome any speaker  suggestions you may have . please call me if you have any questions .  ?  many thanks ,  ?  jean - pierre doggett  risk conference producer  risk waters group  phone : + 44 ( 0 ) 20 7484 9813  fax + 44 ( 0 ) 20 7484 9800  e - mail : jpdoggett @ riskwaters . com  www . riskwaters . com  - stress testing draft . doc  - stress testing draft . txt\",0\n\"Subject: enron announcement  car rental options for enron travelers  rental car contracts for 2001 have been awarded to :  national car rental ( primary ) and alamo rent - a - car ( secondary ) .  the intent of these agreements is to consolidate and leverage enron ' s total  car rental spend to achieve the most favorable rates and non - pricing  provisions ( i . e . insurance ) .  national car rental , due to its service levels , availability and total value  proposition , has been awarded primary status and is recommended as the first  choice for enron travelers ' needs .  alamo rent - a - car , a sister company to national , has been awarded a contract  reflecting a secondary status , due to its service levels , availability and  low cost solutions . alamo is recommended as an alternative to national ,  where available .  when you rent a vehicle in the united states , ( including puerto rico ) or  canada , the following insurance provisions are included , regardless of rate  selected :  1 . l / dw ( loss / damage waiver ) - this is what is called comprehensive or  collision on your personal auto . it covers the rental vehicle and pays for  any damage to it .  2 . liability - this covers people and property outside the rental vehicle .  for both national and alamo , the coverage is $ 100 , 000 per person , $ 300 , 000  per occurrence and $ 50 , 000 for property damage .  * * important * * *  these coverages apply regardless of rate selected , as long as the following  contract id is communicated at the time of reservation and rental is recorded  on the transaction rental agreement . ( national - 5000838 alamo - # 143974 )  to enjoy the highest levels of service while renting a vehicle from enron ' s  preferred suppliers , it is recommended that each traveler enroll in  national ' s and alamo ' s preferred traveler programs . national ' s emerald club  membership and alamo ' s quicksilver program are designed to speed the  transaction time by providing services such as counter bypass and rapid  return . the enrollment fees for these programs have been waived for enron  travelers . enrollment packets will be mailed to the addresses of enron  american express t & e cardholders . you may also find an enrollment form on  the enron travel program intranet @ gss . enron . com .  if you have any questions or comments , please contact jeff leath at  713 - 646 - 6165 .\",0\n\"Subject: itinerary  phelim ,  fyi  vince\",0\n\"Subject: aiesec  vince ,  my name is shelly jones , i am the analyst recruiting manager for the  associate / analyst program . christy young passed on information from the  university of houston aiesec program . due to the restructuring of the  associate / analyst program and the new policies regarding the interview  process , compensation , offers , etc . , we will not be participating in the  aiesec program this year . due to your past interest in the program , i have  forwarded the literature on to you , via inter - office mail , for your  consideration .  please contact me if you have any questions .  thank you for your time .  shelly jones\",0\n\"Subject: re : power 2000  zimin ,  you are the lst . feel free to register as my guest .  vince  zimin lu  02 / 14 / 2000 02 : 59 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : power 2000  vince ,  could you take me as your guest for the power 2000 conference if  no one has asked already ?  there are a few interesting topics i would like to hear .  zimin\",0\n\"Subject: hib visa application - sevil yaman  sevil ,  please , make sure you provide this information asap .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 25 / 2001 12 : 35 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  margaret daffin  04 / 25 / 2001 12 : 04 pm  to : sevil yaman / corp / enron @ enron  cc : norma villarreal / enron @ enronxgate , vince j kaminski / hou / ect @ ect , ramona perkins / enron @ enronxgate  subject : hib visa application - sevil yaman  sevil : please let me know when you will be sending me the information for your hib visa ?  thanks  margaret  - - - - - - - - - - - - - - - - - - - - - - forwarded by margaret daffin / hou / ect on 04 / 25 / 2001 12 : 03 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  margaret daffin  04 / 10 / 2001 04 : 04 pm  to : sevil yaman / corp / enron @ enron  cc : norma villarreal / enron @ enronxgate , vince j kaminski / hou / ect @ ect , ramona perkins / enron @ enronxgate  subject : hib visa application - sevil yaman  sevil : in order that we may proceed with your request for permanent residency , our immigration attorneys have advised us that we need to process the hib visa , prior to the permanent residency application .  therefore , i am attaching an hib visa questionnaire that i would like you to complete and return to me , together with copies of all of the documents listed at the bottom of the form .  please bring these to me in 3 ac 2026 a .  please let me know if you have any questions at x 55083 .  thank you  margaret\",0\n\"Subject: year end 2000 performance feedback  note : you will receive this message each time you are selected as a reviewer .  you have been selected to participate in the year end 2000 performance  management process by providing meaningful feedback on specific employee ( s ) .  your feedback plays an important role in the process , and your participation  is critical to the success of enron ' s performance management goals .  to complete requests for feedback , access pep at http : / / pep . corp . enron . com  and select perform review under performance review services . you may begin  providing feedback immediately and are requested to have all feedback forms  completed by friday , november 17 , 2000 .  if you have any questions regarding pep or your responsibility in the  process , please contact the pep help desk at :  houston : 1 . 713 . 853 . 4777 , option 4  london : 44 . 207 . 783 . 4040 , option 4  email : perfmgmt @ enron . com  thank you for your participation in this important process .  the following is a cumulative list of employee feedback requests with a  status of \"\" open . \"\" once you have submitted or declined an employee ' s request  for feedback , their name will no longer appear on this list .  review group : enron  feedback due date : nov 17 , 2000  employee name supervisor name date selected  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  andrews , naveen c rudi c zipter oct 31 , 2000  baxter , ashley david davies nov 02 , 2000  campos , hector o peyton s gibner nov 06 , 2000  carson , richard l richard b buy oct 30 , 2000  crenshaw , shirley j wincenty j kaminski oct 26 , 2000  gandy , kristin h celeste c roberts nov 01 , 2000  gorny , vladimir theodore r murphy ii nov 02 , 2000  hewitt , kirstee l steven leppard nov 06 , 2000  kindall , kevin vasant shanbhogue oct 30 , 2000  lamas vieira pinto , rodrigo david port oct 31 , 2000  pham , bich anh t sarah brown nov 06 , 2000  raymond , maureen j wincenty j kaminski nov 02 , 2000  rosen , michael b christie a patrick nov 06 , 2000  sun , li kevin kindall nov 09 , 2000  supatgiat , chonawee peyton s gibner oct 27 , 2000  tamarchenko , tanya v vasant shanbhogue oct 26 , 2000  tawney , mark r jeffrey a shankman oct 26 , 2000  williams , matthew steven leppard nov 08 , 2000  yaman , sevil vasant shanbhogue oct 27 , 2000  yuan , ding richard l carson oct 31 , 2000\",0\n\"Subject: a visit  joe ,  this is a message from the japanese guy interested in energy risk management .  please , let me know if you want somebody from your organization at the  meeting . he will be here  next monday at 3 : 00 p . m .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 12 / 2000  06 : 11 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  masayuki fujita on 03 / 31 / 2000 08 : 36 : 00 am  to : vkamins @ enron . com  cc : eugenio perez  subject : a visit  professor vincent kaminski  vice president of research  enron corp .  dear professor kaminski  i , masayuki fujita was the only japanese attendee of the energy  derivatives seminar  in houston last december and a member of japanese consultation firm :  mitsubishi research  institute , inc . i would be very honored if you can meet with me 17 or 18  april after  attending energy trading summit in 12 th - 14 th . as you know , japanese  electricity trading is  on the way of deregulation beneficial to the consumers from a long stage of  the nine major  companies ' regional monopoly . we are giving a hand to help the ministry and  industry to  find the right course of them . i and my colleague yamada , who will attend risk  publications monte calro seminar in four seasons hotel , would like to visit  you and your  company for studying the sophisticated risk management at enron . in return ,  we may give  you the information about recent institutional progress and major electricity  companies  response in japan .  we are now personally translating your book \"\" managing energy price risk \"\"  second  edition and wondering if you have not given the right to publish in japanese  and nay give  us the chance to help you introduce modern technology to manage energy risk  in the  japanese energy industry .  i do not hope japanese english power prevent me to pass my sincerity to  you and i can  visit you soon .  best regards ,  masayuki fujita  principal financial engineer  financial technologies section  mitsubishi research institute , inc .  3 - 6 otemachi 2 - chome , chiyoda - ku  tokyo 100 - 8141  japan  tel + 81 - 3 - 3277 - 0582  fax + 81 - 3 - 3277 - 0521\",0\n\"Subject: confirmation : arthur andersen 21 st annual energy symposium  thank you for your event rsvp . we hope that the process was quick and simple .  for any further questions , please contact the event coordinator .  your confirmation number is : 49297  you are registered for : arthur andersen 21 st annual energy symposium  event date : tuesday , november 28 , 2000 7 : 00 : 00 am  westin galleria hotel  5060 west alabama  houston , texas 77056  fee information  if you register on or before october 31 , the registration fee is $ 950 . 00 .  after that date , the registration fee is $ 1 , 200 . 00 . , $ 950 . 00  total amount : $ 950 . 00\",0\n\"Subject: making room for \"\" summer interns \"\"  hello all :  i have some \"\" good \"\" news and i have some \"\" bad \"\" news . the \"\" good \"\" news  is that we are growing ! the \"\" bad \"\" news is that we are running out of space .  therefore , just for the summer we need to use jose ' s and joe ' s offices  on the 19 th floor for \"\" summer \"\" interns .  i will have to remove the extensions from those offices so they won ' t be  ringing all the time . however , we can put them back after the summer is  over .  i hope this is not too inconvenient for you , but with roman and jason needing  spaces on the 19 th floor , and another new hire coming on board , we are left  without any extra spaces .  thanks !  shirley\",0\n\"Subject: big rumor  vince -  i know you ' re very busy , so you might not have heard this . . .  apparently , the board will meet this week to approve the sale of * all * of  enron international ' s assets to a member of hte saudi royal family , the same  prince who once invested heavily in citicorp to bail it out .  the source of this is someone i trust .  clayton\",0\n\"Subject: el paso statement on california situation  in case you haven ' t already seen this :  el paso addresses the california energy situation ( february 26 , 2001 )  houston , feb . 26 / prnewswire / - - el paso corporation ( nyse : epg )  reaffirmed today its continuing commitment to work with all parties  involved to help improve california ' s energy situation . \"\" we are surprised  to see continuing misinformation in the media concerning el paso ' s  involvement in california , \"\" said norma dunn , senior vice president of  corporate communications and external affairs at el paso corporation . \"\" we  would like to take this opportunity to clarify the record . \"\" the  significant increase in electricity demand at a time when available power  supplies are short has caused a sharp climb in the price of power , which  has in turn increased the price of natural gas used to generate  electricity . high natural gas prices are , therefore , an effect rather than  a cause of the power shortage . allegations that natural gas prices were  deliberately manipulated by withholding capacity on the el paso natural gas  pipeline overlook critical facts and are demonstrably untrue . it is not  possible for any holder of capacity on the el paso natural gas pipeline to  cause a significant increase in california gas prices by refusing to use  that capacity . the el paso natural gas pipeline is required by law to post  the availability of any unused capacity on its public bulletin board and is  obligated to sell that capacity for no more than the published tariff rate  found to be just and reasonable by the federal energy regulatory  commission . all capacity held by el paso merchant energy on the el paso  natural gas pipeline has been used or made available for use by others to  serve california and other western markets . allegations that there was a  \"\" conspiracy \"\" in 1996 to limit new interstate pipeline capacity into  california are absolutely refuted by facts that no one can challenge . the  facts show that all new pipelines considered during the 1990 s were either  built or were not viable projects because they lacked sufficient customer  support to justify their construction . for example , despite years of  marketing efforts by tenneco , not a single potential customer could be  induced to make the sort of binding commitment required for the proposed  altamont project to proceed . for that reason alone , it was ultimately  dropped . in 1996 , according to estimates , there were between one and two  billion cubic feet per day ( bcf / d ) of excess natural gas transportation  capacity on existing interstate pipelines serving california . indeed , it  was misplaced reliance on the continuing availability of such excess  capacity that prompted the california public utilities commission to  encourage pg & e , socal edison , and socal gas , beginning in 1996 and  continuing into 1998 , to relinquish over 1 . 5 bcf / d of firm transportation  capacity on the el paso natural gas pipeline . processes are now under way  to assess present demand and support for new interstate pipeline capacity  into california , and el paso intends to do its part to help satisfy  whatever needs may be established today . as recently as last year , there  were periods when significant quantities of unused capacity were available  on the el paso natural gas pipeline that were not necessary to meet demands  at that time . notwithstanding its availability , this capacity was not used  by shippers to california to fill in - state natural gas storage facilities  for future use . if california had taken advantage of the opportunity in  2000 to store the same volumes of natural gas that had been stored in 1999 ,  reliance on the spot market would have been reduced and the steep rise in  prices at the california border could have been substantially mitigated or  avoided . it is now widely recognized that the california \"\" energy crisis \"\"  was caused by the inability of the supply of power available in california  to keep pace with the state ' s economy and increased demand . a combination  of factors caused a sharp increase in power prices . first , the construction  of new power plants in california is a slow , difficult , and heavily  regulated process . as a result , the growing demand has far outstripped  in - state generating capabilities . second , unfavorable precipitation and  increased out - of - state demand caused some of the hydroelectric power  normally relied on by california to become unavailable . third , increased  demand for power in the western united states drove up prices that  california had to pay to out - of - state generators . fourth , state policies  deregulated wholesale power prices but capped the rates paid by consumers ,  leaving demand unrestrained and preventing utilities from recovering their  costs . fifth , because rate caps prevented utilities from passing increased  costs to consumers , the utilities ' creditworthiness was impaired , causing  supplemental power needed during peak periods to become more difficult and  expensive to purchase . sixth , the early and greater - than - normal use of  peaking units - plants that are designed to only operate under peak demand  conditions - necessitated unscheduled maintenance , rendering them unavailable  at critical times . seventh , during the final months of 2000 , some power  plants were forced to shut down because increased usage exhausted their air  emissions credits . eighth , a warm summer followed by an early onset of cold  weather further drove up demand for power . finally , the increased power  costs in california could have been substantially mitigated through  long - term power contracts and less reliance on the volatile short - term  power market . \"\" california is currently in a difficult position , but now  has the opportunity to refine its regulatory model and craft a long - term  energy policy , \"\" said dunn . \"\" el paso has been one of the largest suppliers  of energy to california for more than 50 years , and we are actively  participating with all parties in california to be a part of a long - term ,  stable solution to california ' s energy needs . \"\" el paso corporation , the  largest and most broadly based natural gas company in the world , spans the  energy value chain from wellhead to electron . with an enterprise value in  excess of $ 50 billion , el paso is a leader in every phase of the natural  gas industry . the company owns and operates a significant portion of the  north american natural gas delivery grid , operates the fastest growing ,  most sophisticated energy merchant group , and is the nation ' s third largest  natural gas producer . el paso , a leader in risk management techniques , is  focused on maximizing shareholder value , transforming existing markets , and  speeding the development of new markets . visit el paso at www . epenergy . com .  cautionary statement regarding forward - looking statements this release  includes forward - looking statements and projections , made in reliance on  the safe harbor provisions of the private securities litigation reform act  of 1995 . the company has made every reasonable effort to ensure that the  information and assumptions on which these statements and projections are  based are current , reasonable , and complete . however , a variety of factors  could cause actual results to differ materially from the projections ,  anticipated results or other expectations expressed in this release . while  the company makes these statements and projections in good faith , neither  the company nor its management can guarantee that the anticipated future  results will be achieved . reference should be made to the company ' s ( and  its affiliates ' ) securities and exchange commission filings for additional  important factors that may affect actual results .  bob brooks  gpcm natural gas market forecasting system  http : / / gpcm . rbac . com\",0\n\"Subject: fw : usaee conference  dear mr . kaminski ,  attached please find our vip speaker letter , two program announcements ,  registration form and hotel information . please complete the registration  form and fax to 216 - 464 - 2768 .  if you have questions or need additional information please contact us . we  look forward to seeing you later this month .  kind regards .  dave williams  and  mary novak  - vip speaker letter . doc  - final sec prog for pdf . pdf  - usaee - iaee 2000 conference program 0728 . pdf  - regform . doc  - hotel & conference info . doc\",0\n\"Subject: re : tiger team event  michele ,  i have defined the project for the students . it ' s one project that is  divided into three sections .  feel free to stop by to talk about it .  vince  from : michele nezi marvin @ enron communications on 01 / 03 / 2001 05 : 33 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : tiger team event  i understand that you have been involved with the wharton tiger teams . i am  the commerical team lead for wharton recruiting . do you know the 3 projects  that the students are working on and who within enron is working with them on  the projects ?  thanks for helping to facilitate this opportunity for wharton students .  michele nezi marvin  manager  enron broadband services  ( 713 ) 853 - 6848  - - - - - forwarded by michele nezi marvin / enron communications on 01 / 03 / 01 05 : 34  pm - - - - -  kristin gandy @ enron  01 / 02 / 01 11 : 30 am  to : michele nezi marvin / enron communications @ enron communications  cc :  subject : re : tiger team event  i will try to get that information from christie .  from : michele nezi marvin @ enron communications on 01 / 01 / 2001 06 : 38 pm  to : kristin gandy / na / enron @ enron  cc :  subject : re : tiger team event  i can attend . do you know any of the details of the tiger team project and  who they are working with ? also , names of the students would be helpful . so  we can see if any are applying for summer positions .  michele nezi marvin  manager  enron broadband services  ( 713 ) 853 - 6848  kristin gandy @ enron  12 / 28 / 00 10 : 28 am  to : jeffrey a shankman / hou / ect @ ect , william keeney / hou / ect @ ect , catherine  clark / hou / ect @ ect , rajesh chettiar / enron _ development @ enron _ development , tom  dutta / hou / ect @ ect , jayshree desai / hou / ect @ ect , colin jackson / enron  communications @ enron communications , laura howenstine / enron  communications @ enron communications , michele nezi marvin / enron  communications @ enron communications , jennifer fraser / hou / ect @ ect , natalie  halich / enron communications @ enron communications , ranabir  dutt / corp / enron @ enron , teresa dyar / na / enron @ enron , jeff golden / hou / ees @ ees ,  charles ward / corp / enron @ enron , sarah wesner / corp / enron @ enron , li  sun / na / enron @ enron , gillian johnson / na / enron @ enron , lisa  connolly / na / enron @ enron , michael j popkin / na / enron @ enron , kevin  mcgowan / corp / enron @ enron , evan betzer / enron communications @ enron  communications , jebong lee / enron communications @ enron communications , chu chu  wang / corp / enron @ enron , brad hitch / eu / enron @ enron , betsy bassis / enron  communications @ enron communications , matthew goering / hou / ect @ ect , claude  tellis / enron @ enronxgate  cc : christie patrick / hou / ect @ ect  subject : tiger team event  hello team ,  i hope that everyone had a wonderful and restful holiday season .  down to business : the university affairs group is putting together a tiger  team of students to do a project for enron . those students will be in town  on january 18 th and will be having dinner at churrasco ' s that night . i think  it would be a great opportunity for some of the wharton alum to come out and  meet the participants , talk about enron and eat some good food . : - ) if you  are interested in participating please rsvp to me via email or at extension  53214 no later than 1 / 5 / 01 .  thank you and hope to see you soon ,  kristin gandy\",0\n\"Subject: confirmation of your order  this is an automatic confirmation of the order you have placed using it  central .  request number : ecth - 4 pks 7 y  order for : maureen raymond  1 x ( standard desktop $ 1319 )  enron it purchasing\",0\n\"Subject: intelligence : el paso capacity - - someone has upped the ante but  match still possible  fyi . kim .  - - - - - - - - - - - - - - - - - - - - - - forwarded by kimberly watson / et & s / enron on 12 / 16 / 99  04 : 51 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  lorna brennan  12 / 16 / 99 09 : 59 am  to : rockey storie / et & s / enron @ enron , stephanie miller / et & s / enron @ enron , kent  miller / et & s / enron @ enron , john dushinske / et & s / enron @ enron , dave  neubauer / et & s / enron @ enron , michael bodnar / et & s / enron @ enron , joni  bollinger / et & s / enron @ enron , david badura / et & s / enron @ enron , janet  bowers / et & s / enron @ enron , craig buehler / et & s / enron @ enron , bob  burleson / et & s / enron @ enron , allen cohrs / et & s / enron @ enron , john  fiscus / et & s / enron @ enron , bret fritch / et & s / enron @ enron , steve  gilbert / et & s / enron @ enron , morgan gottsponer / et & s / enron @ enron , brenda  harris / et & s / enron @ enron , james harvey / et & s / enron @ enron , stephen  herber / et & s / enron @ enron , dana jones / et & s / enron @ enron , jane  joyce / et & s / enron @ enron , stephanie korbelik / et & s / enron @ enron , therese  lohman / et & s / enron @ enron , bill mangels / et & s / enron @ enron , penny  mccarran / et & s / enron @ enron , vernon mercaldo / et & s / enron @ enron , larry  pavlou / et & s / enron @ enron , eileen peebles / et & s / enron @ enron , maria  perales / et & s / enron @ enron , tony perry / et & s / enron @ enron , loren  penkava / et & s / enron @ enron , ken powers / et & s / enron @ enron , joan  schwieger / et & s / enron @ enron , chris sebesta / et & s / enron @ enron , frank  semin / et & s / enron @ enron , neal shaw / et & s / enron @ enron , larry  swett / et & s / enron @ enron , kay threet / et & s / enron @ enron , mike  ullom / et & s / enron @ enron , lisa valley / et & s / enron @ enron , chuck  wilkinson / et & s / enron @ enron , jim wiltfong / et & s / enron @ enron , jo  williams / et & s / enron @ enron , karen lagerstrom / et & s / enron @ enron , ray  stelly / et & s / enron @ enron , bob stevens / et & s / enron @ enron , sue m  neville / et & s / enron @ enron , mike barry / et & s / enron @ enron , miriam  martinez / et & s / enron @ enron , martha janousek / et & s / enron @ enron , kimberly  watson / et & s / enron @ enron , don powell / et & s / enron @ enron , melinda  tosoni / et & s / enron @ enron , steve weller / et & s / enron @ enron , michael g  stage / et & s / enron @ enron , tim johanson / et & s / enron @ enron , mike  mcgowan / et & s / enron @ enron , lynn blair / et & s / enron @ enron , rick  dietz / et & s / enron @ enron , steven january / et & s / enron @ enron , sheila  nacey / et & s / enron @ enron , steven harris / et & s / enron @ enron , lindy  donoho / et & s / enron @ enron , jeffery fawcett / et & s / enron @ enron , lorraine  lindberg / et & s / enron @ enron , kevin hyatt / et & s / enron @ enron , christine  stokes / et & s / enron @ enron , julia white / et & s / enron @ enron  cc :  subject : intelligence : el paso capacity - - someone has upped the ante but match  still possible  negotiated el paso deal topped  el paso confirmed that someone had upped the ante on the negotiated deal  for slightly  more than 1 . 2 bcf / d in firm capacity to the california border that was  announced friday  ( see daily gpi , dec . 13 ) . a higher bid was submitted prior to  wednesday ' s 1 p . m . mst  deadline in a four - day open season , a pipeline spokesman said . however ,  the original  negotiating party has until this afternoon to match the new price and  retain the capacity .  the new bid was for $ 38 million over one year starting jan . 1 , about $ 8  million more than  the amount in friday ' s announcement ( $ 30 million ) . one source called it  \"\" ridiculous \"\" that  someone was willing to pay so much for the space , given that on a  mark - to - market basis  the capacity is worth only about $ 20 - 25 million .  late last week some sources speculated that duke energy was the  recipient of next  year ' s package given its large power generation holdings in california .  a marketer  yesterday said he believed dynegy upped the ante . \"\" rather than go  through all the  hassles they [ dynegy ] had at ferc with the 1998 - 99 package , they let  someone else do  all the work this time and then came in late with a higher bid . that way  no one can  complain that the procedure was tainted . after all , dynegy has quite a  few power plants  in california to keep fueled , and all of their current ft on el paso  expires at the end of  this year . of course , they still could be thwarted if the original  negotiated customer  matches their bid . it may all sound kind of machiavellian but sort of  makes sense . \"\" other  sources heavily discounted the chances of dynegy being the new high  bidder , pointing out  that the company made significantly less than expected this year because  san  juan / border basis differentials narrowed significantly . a dynegy source  indicated that the  company was involved in the bidding and lost to duke in the first round .  regardless of what happens next year , a marketer noted that the southern  california  border / san juan basis spread continues to compress as socal gas  withdraws from  storage and east - of - california utilities exercise their peaking  contracts because of cold  weather in the rockies and elsewhere in the west . from a december index  spread of 29  cents , the border / basin gap was down to about 18 cents wednesday , she  said .\",0\n\"Subject: re : sorry .  chonawee ,  this was perfectly all right . as a matter of fact i expect and encourage  the members of the group to disagree with me ( or anybody else )  on any subject . i am never offended by it and take it as a manifestation  of ability to think independently and having the courage of one ' s  convictions .  nobody has the monopoly on truth and nobody knows everything . the only  way we can learn and avoid costly errors ( to ourselves and the  company ) is by having open communication . in enron ,  facts are friendly .  by the way , it was an excellent presentation .  vince  chonawee supatgiat @ enron  01 / 04 / 2001 03 : 10 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : sorry .  hi vince , i am sorry for correcting on the revenue of the different auctions .  vickrey 1961 showed that all 4 kinds of auctions would yield the same  expected revenue to the auctioneer . ( dutch , english , first price - sealed bid ,  and second - price sealed bid . ) in fact , the selling price is equal to the  valuation of the second highest bidder . for example , in vickrey auction ,  everyone bids at his own valuation . hence , the winner pays the valuation of  the second highest bidder . in english auction , the second highest valuation  bidder will stop competing if the price is above his valuation . hence , the  winner also gets the item at the price of the second highest valuation bidder .  thank you for attending the meeting and giving many helpful contributions .  - chonawee\",0\n\"Subject: livelink access  sorry for the miscommunication but your password is blank . after you log in .  please change your password by going to the go to menu and change your  password .  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 03 / 06 / 2001  08 : 44 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  stinson gibner  03 / 05 / 2001 03 : 37 pm  to : kenneth parkhill / na / enron @ enron , jaesoo lew / na / enron @ enron , tom  halliburton / corp / enron @ enron , kevin kindall / corp / enron @ enron , bob  lee / na / enron @ enron , alex huang / corp / enron @ enron , tanya  tamarchenko / hou / ect @ ect , joseph hrgovcic / enron @ enronxgate , gwyn  koepke / na / enron @ enron , rakesh bharati / na / enron @ enron , martin lin / hou / ect @ ect ,  rabi de / na / enron @ enron , chonawee supatgiat / corp / enron @ enron , seksan  kiatsupaibul / hou / ees @ ees , wichai narongwanich / hou / ees @ ees , sevil  yaman / corp / enron @ enron , tom barkley / na / enron @ enron , pinnamaneni  krishnarao / hou / ect @ ect , osman sezgen / hou / ees @ ees , praveen  mellacheruvu / hou / ees @ ees , sandeep kohli @ enron , vince j kaminski / hou / ect @ ect  cc :  subject : livelink access  you have been added to the livelink test instance for research . see below  for the link .  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 03 / 05 / 2001  03 : 32 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron technology  from : moyez lallani @ enron 01 / 16 / 2001 10 : 46 am  to : stinson gibner / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect  cc :  subject : livelink access  gentlemen ,  i have created a folder called research projects folder in the livelink test  instance . the url to the test instance is  to log in , use your nt login id as your userid and password ( all lowercase ) .  you will find the folder on the enterprise workspace . please call me should  you require further assistance .  moyez lallani  x 5 - 3683\",0\n\"Subject: re : opportunities at enron  vince kaminski ,  i am one of the stanford students that you interviewed last october .  i really apologize for contacting you that late , but for  some reason when i wrote the email that i transcribe below i did not send  it , and just realized about that until now .  also , i want to thank you again for opening the  possibility of a summer internship at enron .  regards ,  jorge picazo  > vince kaminski ,  >  > i am one of the students that you interviewed at stanford university  > last october .  >  > during our meeting i asked for the possibility of an internship position  > at enron during this summer , and you asked me to send you an email  > by february .  >  > however and after a long talk with my advisor , i have decided to focus  > on my academic research during the summer , and i am writing to let you  > know about my decision .  >  > in any case , i really want to thank you for opening the possibility of a  > summer internship at enron . if my academic duties had not keep me at  > stanford , i am sure that it would have been a great experience .  >  > thanks anyway ,  >  > jorge picazo  >  >  >  >  > > hello ,  > >  > > my name is vince kaminski and i am in charge of quantitative research at  enron  > > corp . i shall visit the stanford campus on october 21 and 22 ( thursday and  > > friday )  > > and hope to talk to a number of faculty members about recruiting stanford  > > graduates for enron .  > >  > > i shall be accompanied by two other enron employees : greg whalley , a  stanford  > > graduate , head of risk management at enron and my boss , and celeste  roberts ,  > > head of our associate / analyst program .  > >  > > if you are interested in meeting with me and two other members of the  enron  > > team to talk about opportunities at enron , send me a message to two  e - mail  > > addresses : vkaminski @ aol . com ( home ) and vkamins @ enron . com ( office ) . i  shall  > > send you in the beginning of the next week information about the time and  > > place of the meeting .  > >  > > you can also reach me at ( 713 ) 853 3848 .  > >  > > vince kaminski  > >  =  jorge a . picazo hidalgo  ph . d . candidate adress : 1600 villa st apt 391  department of statistics 94041 , mountain view ca  stanford university  sequoia hall rm 237 phone : ( 650 ) 965 - 4119  m . s . email : jpicazo @ leland . stanford . edu  department of engineering - economic jpicazo @ stat . stanford . edu  systems and operations research  stanford university  =\",0\n\"Subject: ola oladeji  we are in the process of placing our remaining new associates as they are  here for orientation and will be available for work august 28 . ola has yet  to be placed and i am inquiring if there is any interest in him joining one  of your groups . i know some of you expressed interest upon interviewing  him . if so , please advise as soon as possible . if you have any questions ,  please contact me at 3 - 4584 . thanks so much for your participation in the  associate program ! !\",0\n\"Subject: re : real options conference in cambridge  steve ,  risk will give you more exposure in the peer group faster .  shan left ( i think they are firing people at risk - a normal development  for a successful company that got ahead of itself ) .  if risk does not work , i shall talk to phelim about speeding the publication .  vince  steven leppard  04 / 25 / 2000 08 : 06 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : real options conference in cambridge  hi vince  the person i was dealing with ( shan millie ) passed on my paper to her  successor , and i ' ve heard nothing since . the plan was to try and publish the  article in risk ' s \"\" game choices \"\" real options book , which is being published  in june , along with a summary version for the magazine .  i ' m supposed to be waiting for them to get back to me , and it ' s not been at  the front of my mind until now . i think i ' ll chase them up .  interestingly at a recent risk course phelim boyle expressed an interest in  my work to appear in one the the journals he edits , i think it ' s decision  science or something like that . do you think this would be a more  appropriate home for the work ?  one more thing that may be of interest to you is that i ' ve now worked forward  recursive dp into my notation too . it ' s simply a matter of putting the  decision nodes on the left hand side of the value symbols !  should i chase risk , or pursue the peer reviewed phelim boyle option ?  steve  vince j kaminski  04 / 25 / 2000 02 : 00 pm  to : steven leppard / lon / ect @ ect  cc :  subject : re : real options conference in cambridge  steve ,  how are the discussions with risk about an article progressing ?  vince  steven leppard  04 / 25 / 2000 05 : 07 am  to : lenos trigeorgis @ enron  cc : vince j kaminski / hou / ect @ ect  subject : re : real options conference in cambridge  lenos  i ' d like to give a talk entitled \"\" diagrammatic representation of real options  in enron \"\" , in which i will give a brief run - down of a diagrammatic technique  i have developed for representing real option deals . my notation allows  originators , managers and quants to communicate unambiguously , while still  appreciating the complexity and subtlety of real optionality . i have defined  a \"\" diagrammatic grammar \"\" which guarantees that the pricing of the deal  follows immediately and automatically from the diagram .  i propose to introduce the symbols and grammar , then go on to present some  suitable examples of diagrams . if appropriate i ' ll talk about the links with  dynamic programming . ( i will need some guidance as to how much technical  detail i can go into based on the audience . )  all the best ,  steve  enron capital & trade resources corp .  from : lenos trigeorgis  04 / 20 / 2000 08 : 45 pm  to : \"\" steven leppard \"\"  cc : \"\" vince j kaminski \"\"  subject : re : real options conference in cambridge  steve  thanks for agreeing to talk . i attach the program to see the other speakers  and style ( it is addressed to a professional autience )  please give me a suitable title for the talk ( replacing kaminski \u0001 % s slot on  july 6 / energy session ) and the details of your position  thanks  lenos  at 05 : 01 _ _ 04 / 20 / 00 + 0100 , steven leppard wrote :  >  >  > dear prof trigeorgis  >  > vince kaminski has suggested that i would be a suitable speaker at your july  > conference in cambridge , and i ' d be happy to come along if required . please  > could you send me appropriate details , and the audience type expected .  >  > many thanks .  >  > yours sincerely ,  > steve leppard  >  >  >  >  - 4 thconfsessions . doc  lenos trigeorgis  professor of finance  university of cyprus  dept of business  75 kallipoleos , po box 20537  cy 1678 nicosia cyprus  tel : + 357 2 892261  fax : 339063\",0\n\"Subject: projects update  vince ,  a quick project update .  1 . sandeep and i spoke with robert schenck in adelaide . he will email a  henwood proposal to us . they already figured that we must be interested in  modelling dabhol .  2 . the wti eol trading simulation had an error . we were counting a  mid - offer spread profit on each trade , but we actually would make the spread  on each round - trip transaction ( one trade to open , one trade to close ) . i  modified the calculation and sent the new numbers to greg whalley ( he is the  one who caught the mistake , so there goes my bonus for the year . ) and john  lavorato . i should probably re - run the earning volatility numbers , and  update ted murphy as well .  - - stinson\",0\n\"Subject: re : enron / stanford program  nick ,  vince asked me to coordinate the planning for you august visit to enron .  vince and i are free almost any date except august 14 and 15 th , but we would  like to try and schedule your visit at a time when you could meet with other  key ebs executives such as kevin hannon and perhaps ken rice and john  echols . if you could send me a few of your preferred choices of dates , i  will try to optimize getting you on the calendars of these individuals .  by the way , giuseppe is doing a great job and has already made a very good  impression on everyone he has worked with . it ' s been a real pleasure having  him here for the summer .  regards ,  stinson\",0\n\"Subject: resume : dipak agarwallah ph . d . econ .  here is a resume forwarded to our group . dipak has some industry  experience , but does not seem to have programming skills . any interest ?  - - stinson  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 11 / 09 / 2000  10 : 01 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  paulo issler  11 / 07 / 2000 02 : 56 pm  to : stinson gibner / hou / ect @ ect  cc :  subject : resume and cover letter  stinson :  per our conversation i am forwarding you dipak ' s resume .  - - - - - - - - - - - - - - - - - - - - - - forwarded by paulo issler / hou / ect on 11 / 07 / 2000 02 : 48  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  guido caranti @ enron _ development  11 / 02 / 2000 01 : 44 pm  to : paulo issler @ ect  cc :  subject : resume and cover letter  poulo , this is the info of the guy i talked to you about . please let me know  what you think .  thanks a lot  guido  - - - - - - - - - - - - - - - - - - - - - - forwarded by guido caranti / enron _ development on  11 / 02 / 2000 01 : 47 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" dipak agarwalla \"\" on 10 / 13 / 2000 11 : 36 : 22 am  to : guido . caranti @ enron . com  cc : a _ dipak @ hotmail . com  subject : resume and cover letter  hi mr . caranti ,  please find the attached cover letter and resume . please let me know if you  need any further information and i look forward to talking to you on  saturday at 8 : 30 pm .  thank you very much  dipak  get your private , free e - mail from msn hotmail at http : / / www . hotmail . com .  share information about yourself , create your own public profile at  http : / / profiles . msn . com .  - resume - dipak agarwalla . doc  - cover letter - dipak agarwalla . doc\",0\n\"Subject: year end 2000 feedback deadline  prc meetings begin on monday , november 20 th . if you have not already done  so , please go in to pep at http : / / pep . corp . enron . com and complete the  requests for feedback on the employees listed below .  if you have any questions , please call the pep help desk at :  houston : 1 - 713 - 853 - 4777 , option 4  london : 44 - 207 - 783 - 4040 , option 4  e - mail : perfmgmt @ enron . com  thank you for your participation .  andrews , naveen c  baxter , ashley  campos , hector o  carson , richard l  crenshaw , shirley j  gandy , kristin h  gorny , vladimir  hewitt , kirstee l  hickerson , gary j  kaminski , wincenty j  kindall , kevin  leppard , steven  patrick , christie a  pham , bich anh t  raymond , maureen j  rosen , michael b  sun , li  supatgiat , chonawee  tamarchenko , tanya v  tawney , mark r  thuraisingham , ravi  williams , matthew  yaman , sevil  yuan , ding\",0\n\"Subject: re : weather course  julie ,  enron location makes more sense . no reason to pay for the hotel .  also , i think that one day makes more sense .  i contacted the weather desk about including other people at the training  course . i think that they would be interested if they got a good discount .  vince  \"\" julie \"\" on 02 / 16 / 2001 09 : 39 : 37 am  please respond to \"\" julie \"\"  to :  cc :  subject : re : weather course  vince ,  ?  great . ? just to let you know , we decided not to wait on the indecisive ones ,  and postponed the open course . ? it ' s yours , whatever you want : ? 1 day  ( specific to what you feel will be of the most benefit ) , 2 days , hyatt or  enron , or not at all . ? i hope this doesn ' t cause problems for you . ? special  deal , for sure . ? i owe my godfather .  ?  julie  ?  ?  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com  to : julie  cc : joseph . hrgovcic @ enron . com  sent : thursday , february 15 , 2001 3 : 16 pm  subject : re : weather course  julie ,  that ' s definitely an option .  we can provide the room . maybe we can cut with you a special deal for enron  and increase the # of people attending . i am forwarding your message to  our weather desk .  vince  joe ,  what do you think about it ?  vince  \"\" julie \"\" on 02 / 15 / 2001 08 : 20 : 24 am  please respond to \"\" julie \"\"  to : ? ? \"\" vincejkaminski \"\"  cc :  subject : ? weather course  vince ,  we just wanted to let you know that we only have 3 people signed up for the  weather derivatives course ( all from enron ) so far . we have a couple more  that have expressed strong interest , but we are awaiting their final  decision . if no one else signs up , chris and les thought that you guys  could probably get through the first day pretty easily , and thus thought it  may be an option to teach just the 2 nd day material ( pricing ) only at enron  ( doing it at the hyatt is an option as well but the room might be on the  large ? side ) ? we would obviously reimburse you for the day not taught . we  can teach both days as well , but thought you may want to save some time .  i just wanted to give you some time to think about it . we will know ? where  we stand on final numbers by next wednesday .  julie\",0\n\"Subject: re : joint probabilities  michael  the updated probabilities are attached . the probability of reaching any fx  times rab multiple are the same as the original analysis . the probabilities  of reaching a given stock price are lower than the original analysis in both  the optimistic and pessimistic cases because the debt levels are higher , and  hence the stock value is lower for any fx - rab value .  bob lee  x 35163\",0\n\"Subject: re : green card  vince ,  thanks for initiating this information flow . i think the confusion is coming  from the question of if an fl can apply for green card or not . to my  knowledge and to the knowledge of international student services in my  university , yes i can apply . anyway , thanks again and i am sure we ' ll find a  good answer for this question since here is enron .  sevil ,  - - - - - - - - - - - - - - - - - - - - - - forwarded by sevil yaman / corp / enron on 03 / 09 / 2001  10 : 37 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : norma villarreal / enron @ enronxgate on 03 / 08 / 2001 06 : 31 pm  to : sevil yaman / corp / enron @ enron , margaret daffin / hou / ect @ ect  cc : norma villarreal / hou / ect @ enron , vince j kaminski / hou / ect @ ect  subject : re : green card  sevil ,  i believe you and margret daffin have spoken about the next steps for your  green card . you will need to start working on you hib at the begining of  october 2001 .  if there is any confusion on my part please let me know .  norma villarreal  x 31545  below is dicussion between margret daffin and sevil in an e : mail january 26 ,  2001 :  \"\" sevil : first of all we have to get you an hib visa before we can work on  getting you the green card .  after you get your opt , contact me sometime in the summer and i will start  working on your hib visa which we will obtain in approx . october , 2001 . we  cannot start the green card process when you are still on an fl visa - you  have to be on an hib visa . there is no rush - you will have six years on the  hib visa - plenty of time in which to get the green card . \"\"  this was in reference to her note to me , as follows :  \"\" i think i ' ll have time approximately until the end of 2002 by using cpt and  opt . this makes almost two years . if we can start green card process now , do  you think that i would get it before i need hl . in every case , can ' t we start  green card before i get hl ? because i don ' t want to waste these two years  given the fact that green card process is a long process . \"\"  - - - - - original message - - - - -  from : yaman , sevil  sent : thursday , march 08 , 2001 3 : 59 pm  to : daffin , margaret  cc : norma villarreal / hou / ect @ enron  subject : green card  i haven ' t heard back from any of you regarding my immigration status . could  you please get back to me with the information about the initialization of my  green card process ? thank you .  sevil yaman  eb 1943  x 58083\",0\n\"Subject: associate and analyst program contacts  associate and analyst programs ( the \u0001 & programs \u0001 8 ) are administered globally .  listed below is the contact information for the offices that utilize the  programs . please do not hesitate to contact the individuals identified with  any questions , placement needs or hiring needs .  houston / portland / australia  celeste roberts , program director . manages the daily operations . her  assistant is dolores muzzy and can be reached at ext . 3 - 6245 .  ginger gamble . overall responsibility for associate recruiting . candidates  interested in the associate program can forward their inquiries and resumes  to ginger at ebl 191 . ginger can also be reached at ext . 3 - 7583 or by e - mail  at ginger . b . gamble @ enron . com .  shelly jones . overall responsibility for analyst recruiting . candidates  interested in the analyst program can forward their inquiries and resumes to  shelly at ebl 175 . shelly can also be reached at ext . 3 - 0943 or by e - mail at  shelly . jones @ enron . com .  jana giovannini . responsible for operations and expenses . jana can be  reached at ext . 3 - 9233 or by e - mail at jana . giovannini @ enron . com . jana is  located at ebl 187 .  shannon rodgers . responsible for associate rotations . associates and hiring  managers who need information on rotations and associate availability should  contact shannon at extension 3 - 3853 or by e - mail at shannon . rodgers @ enron . com  . shannon is located at ebl 186 a .  elizabeth boudreaux . responsible for analyst rotations . analysts and hiring  managers who need information on rotations and analyst availability should  contact elizabeth at ext . 3 - 6176 or by e - mail at  elizabeth . boudreaux @ enron . com . elizabeth is located at ebl 186 b .  argentina / bolivia / brazil  miguel padron . responsible for associate and analyst rotations , operations  and expenses . his assistant is rosely nassar and can be reached at 5503 - 1243 .  disneau santiago . responsible for associate and analyst recruitment .  disneau \u0001 , s assistant is marlene muniz and can be reached at 5503 - 1244 .  calgary  dawn doucet . responsible for associate and analyst recruiting and rotations .  candidates interested in either the associate or analyst programs can forward  their inquiries and resumes to dawn in the calgary office . dawn can be  reached at ( 403 ) 974 - 6724 , the fax number is ( 403 ) 974 - 6985 or by e - mail at  dawn . doucet @ enron . com .  london  elizabeth barrett , director of european program . she can be reached at + 44  20 7783 7701 .  sophie kingsley . responsible for day to day management of the european  program , both pre / post hire , including associate and analyst rotations and  international transfers . sophie can be reached at + 44 20 7783 7975 or by  e - mail at skingsley @ enron . com .  india  ranen sengupta and dick liebert . responsible for associate and analyst  recruiting and rotations . candidates interested in either the associate or  analyst programs can forward their inquiries and resumes to ranen sengupta or  dick liebert . ranen can be reached at ext . 6 - 7967 and his e - mail is  ranen . sengupta @ enron . com . dick leibert \u0001 , s extension is 6 - 7145 and his e - mail  is dick . liebert @ enron . com .\",0\n\"Subject: re : meeting ( fwd )  - -  bradley romine  ees / or stanford university  bradley @ leland . stanford . edu  - - - - - - - - - - forwarded message - - - - - - - - - -  date : thu , 20 jan 2000 12 : 09 : 05 - 0800 ( pst )  from : bradley romine  to : nick bambos  subject : re : meeting  professor bambos ,  3 pm on wed . is fine with them . so i ' ll see you then in your office  in terman .  brad  on thu , 20 jan 2000 , nick bambos wrote :  > brad ,  >  > yes , i would be happy to meet with them .  > how about 3 pm on wed .  >  > thanks ,  >  > nick  >  > bradley romine wrote :  > >  > > hello professor bambos ,  > > i was talking to some friends i have at enron about pricing  > > options for bandwidth trading and other optimization algorithms for  > > broadband networks . anyway they are interested in talking to you about  > > your research . they will be in town next week tuesday and wednesday and  > > would appreciate getting a chance to talk to you . are you available ?  > >  > > thanks ,  > > brad  > >  > > - -  > > bradley romine  > > ees / or stanford university  > > bradley @ leland . stanford . edu  >  - -  bradley romine  ees / or stanford university  bradley @ leland . stanford . edu\",0\n\"Subject: re : vlady gorny  perfect . thanks , vince .  in all likelihood , it would be just fine , it is just not customary for job  talks to include others . again , since you are a member of the risk  management chair search committee ( you may not know of this official  capacity , but i believe it is the case ) , we by all means hope that you will  be able to attend the seminar as well as dinner .  i will get details on the schedules to you early next week .  bbo  at 03 : 38 pm 3 / 2 / 01 - 0600 , you wrote :  > barbara ,  >  > i called vlady gorny and explained that the presentation by jorion is not  > offered  > under the umbrella of the seminar sponsored by enron and that it is a  > closed meeting for the school faculty .  >  > i don ' t think that enron would open its job interviews to rice observers  > who expressed interest and i made this comment to vlady . he is ok with  > this .  >  > you can let his program director know that i have explained to vlady  > that it is a meeting for limited audience and that he does not expect to be  > invited .  >  >  > please , let me know the details of the dinners .  >  > vince\",0\n\"Subject: recommendations  vince and joe ,  this is just a short reminder about the four letters of recommendation .  i have attached an envelope with each recommendation . once you  seal each envelope , please don ' t forget to sign it ( over the adhesive  seal ) and to label the front , e . g . \"\" columbia - joseph hrgvocic \"\" . also ,  i will be mailing everything in one package to each university , so  please don ' t mail them out .  that is all . as always , i really do appreciate the time you ' re taking to  do this .  thank you ,  hector\",0\n\"Subject: alp presentation  christie ,  shirley reserved room 49 cl for monday 4 : 00 p . m . presentation .  can you issue the formal invitation to our guests with the game / dinner  details ? i don ' t have all the details regarding the enron field  box and time . i am out most of the day on wednesday but we can  discuss the details on thursday .  hope to see you on saturday at the concert .  vince\",0\n\"Subject: re : forecast rates !  vince ,  we responded to kellie and osman on march 21 . don reid decided that he did  not need a curve for turkey at this time .  regards ,  maureen  vince j kaminski  03 / 27 / 2000 06 : 14 pm  to : kellie fleeks / enron _ development @ enron _ development  cc : vince j kaminski / hou / ect @ ect , maureen raymond / hou / ect @ ect , farouk  lalji / hou / ect @ ect  subject : re : forecast rates !  kellie ,  i was on vacation last week . sorry for the delay in getting back to you .  i am forwarding this request to maureen raymond who is handling such requests .  vince kaminski  to : vince j kaminski @ ect  cc :  subject : forecast rates !  vince ,  your name was given as a contact to get information on some exchange rates .  don reid is needing some information on forecast rates and inflation rates  for turkish ponds for the years 2000 - 2006 . if you can help me we really  would appreciate it , we need it as soon as possible . thank you in advance  for your help .  kellie  5 . 5205\",0\n\"Subject: marking chairs  hello all :  unfortunately , in the last two weeks we have had two of our research \"\" chairs \"\"  disappear from their location . we have reported this to security , but in all  likelihood they will be almost impossible to locate .  facilities has told us that they are not responsible for missing chairs and we  will have to order new ones . since they are very expensive , we have  decided to \"\" mark \"\" our chairs underneath the seat with a location or name .  sam is going to order some \"\" silver or white \"\" markers and we will begin  marking  each chair .  it is a shame we have to do this , but know of no other alternative . we will  let you  know when this will take place .  thanks !  shirley\",0\n\"Subject: term paper  dr . kaminski ,  attached please find a copy of our term paper . advise  if you experience problems opening the attachment .  best regards ,  ken jett  - combo 2 [ 1 ] . v 2 . doc\",0\n\"Subject: martin lin  norma ,  thanks for your excellent suggestion of using a retention bonus for martin  lin in order to address both the issues of compensation and retention for  him . as i mentioned during our meeting , just my small team within research  has lost 3 people over about the last 2 years , and we have had a hard time  recruiting good candidates . last year we made an offer to a person  graduating from ut ( ms in computational finance ) of 75 k plus 25 k signing  bonus . he replied that he would like to work at enron but was already in  the position of turning down an offer with a base salary above $ 100 k .  martin is a very skilled individual with a ph . d . in electrical engineering  and almost two years experience at enron . he would be very difficult ( and  expensive ) to replace . for this reason i feel it necessary to be proactive  in finding ways of retaining him as an employee .  please let me know if we have a green light to go forward with a 1 - year  retention bonus of 10 k and a raise to 87 k base salary for mr . lin . i would  plan to then give martin an additional raise at his next review period .  regards ,  stinson  x 34748\",0\n\"Subject: li sun  vince ,  thanks for your response . apparently , we were under the incorrect impression  that your group would be taking li ( based on jeff ' s note below ) . we  apologize for not contacting you last friday to confirm prior to \"\" placing \"\" li  in your group . i have faxed li ' s resume to you and hope that you will have  time to review it today . please call me back as soon as you can to discuss  li ' s opportunities in your group .  if vince is not interested in li for his group , we will consider li placed in  ena - gas trading ( original placement ) in john lavorato ' s organization . once  i hear from vince one way or the other , the program will consider li ' s  placement final in either research or ena - gas trading . hopefully this will  be resolved by tuesday morning so that we may communicate to li her rotation  information . if you have any questions , please let me know .  thank you !  vince j kaminski  08 / 21 / 2000 01 : 03 pm  to : jana giovannini / hou / ect @ ect  cc :  subject : re : vikas dwivedi  fyi  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 08 / 21 / 2000  01 : 08 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  08 / 21 / 2000 12 : 58 pm  to : shelly butler / hou / ect @ ect  cc : john j lavorato / corp / enron @ enron , jeffrey a shankman / hou / ect @ ect , hunter  s shively / hou / ect @ ect , vince j kaminski / hou / ect @ ect  subject : re : vikas dwivedi  shelly ,  i shall not accept anybody for a rotation without a prior interview .  li was scheduled to meet with me last thursday but she never showed  up . she did not call to cancel or to apologize for not showing up .  i have not seen her resume .  please , assume she is not rotating into my group till further notice .  vince  from : shelly butler 08 / 18 / 2000 03 : 37 pm  to : jeffrey a shankman / hou / ect @ ect  cc : hunter s shively / hou / ect @ ect , john j lavorato / corp / enron @ enron , vince j  kaminski / hou / ect @ ect , craig breslau / hou / ect @ ect , ina rangel / hou / ect @ ect  subject : vikas dwivedi  jeff ,  just wanted to confirm that li will be placed in vince kaminski ' s group .  vikas has been placed in ena middle market reporting to craig breslau .  please contact me at 3 - 4584 if you have any questions . thanks for your help ! !  shelly  from : jeffrey a shankman 08 / 18 / 2000 03 : 18 pm  to : shelly butler / hou / ect @ ect  cc : hunter s shively / hou / ect @ ect , john j lavorato / corp / enron @ enron  subject :  shelly ,  hunter spoke with li today and agrees that her first rotation should be in  vince ' s group doing modelling , etc . this will give her the broadest  experience for a first rotation . i ' m sure the other person in question ,  vikas , will do very well in hunter ' s group .  thanks for your help .  jeff\",0\n\"Subject: visiting enron  dr . kaminski , i would like to thank you very much for taking care of amy and  me  during our trip to houston . what i saw at enron communication was nothing  short  of revolutionary . more than that , i was impressed with the drive of the  people ,  their kindness , and their proficiency . i look forward to meeting you again in  stanford during the last weekend of february . i will send you an email next  week , so that we can arrange a meeting between you and prof . bambos .  all the best wishes ,  giuseppe  - -  : : giuseppe a paleologo : : http : / / www . stanford . edu / ~ gappy  \"\" what a waste it is to lose one ' s mind . or not to have a mind is being  very wasteful . how true that is . \"\"  - vice president dan quayle winning friends while  speaking to the united negro college fund , 5 / 9 / 89 -\",0\n\"Subject: credit exposure model  bill ,  alex and i are working on the credit exposure model . we finished the initial  design issues regarding  input and output . we would like to have a meeting with you to seek feedback .  we also preceeded  to write the underlying model . so feedback at early stage can be important  for the later development .  paulo issler is working on the short term enhancement to the credit loss  model : adding asian option to  the model built by vasant and amitava .  let me know when is a good time for us to meet .  zimin\",0\n\"Subject: please read  mike :  enron is one of only a handful of institutions that could facilitate the  following ( see attached ) . call to discuss if you ' re interested .  best regards ,  - pressrelease . pdf  - monetization . pdf\",0\n\"Subject: a \"\" bit \"\" of history on the fourth of july  hello everyone :  vince asked me to send this to you . it definately is eye opening and heart  wrenching . we sometimes forget the price that was paid for our wonderful  country .  have a wonderful 4 th of july !  shirley\",0\n\"Subject: london fyi research weather link  vince -  fyi  research ' s customer base growing by the hour !  - mike  - - - - - - - - - - - - - - - - - - - - - - forwarded by mike a roberts / hou / ect on 04 / 10 / 2001  10 : 03 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron north america corp .  from : stephen bennett @ enron 04 / 10 / 2001 09 : 02 am  to : annette harris / lon / ect @ ect  cc : tony hamilton / eu / enron @ enron , mike a roberts / hou / ect @ ect , jose  marquez / corp / enron @ enron  subject : research weather link  http : / / enaresearch . corp . enron . com /  from here - there is a drop down menu at the top left . the \"\" weather \"\" tab -  \"\" main weather page \"\" is the full support site for the houston gas traders .  look under the \"\" european weather \"\" tab \"\" main europe weather \"\" page for what  we ' ve started doing here . let us know how we can build this to better meet  your needs . . .  steve  stephen bennett  senior meteorologist  enron research  london through april 27 : ext - 34761\",0\n\"Subject: allocation schedule  shirley ,  will you check with vince on the support schedule for me ? i need to get the  support to the bus in order to get them to agree on the 2001 billing . if you  have any questions , call me . thanx .  - - - - - - - - - - - - - - - - - - - - - - forwarded by becky pham / hou / ect on 01 / 16 / 2001 01 : 49 pm  - - - - - - - - - - - - - - - - - - - - - - - - - - -  becky pham  01 / 02 / 2001 11 : 12 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : allocation schedule  we spoke prior to the holiday and you were working on a list on support names  and projects that research is working on for various bus . can you tell me  how you are doing on that ? sarah brown , my manager , had a meeting with corp  and they are disputing the billing we are proposing to bill to them ( $ 1 . 9 m ) .  their argument is that they are going to bill ena back anyway ; therefore ,  they have agreed to take 40 % of the amount we intented to bill them in 2001 ,  which is approximately $ 760 k . if you have any questions , please call . thanx .\",0\n\"Subject: charlie weldon  charlene ,  thank you for accomodating our request to start charlie weldon in his  rotation in the research group earlier than the incoming associate official  start date of august 7 th .  as we discussed , the business purpose for this request is related to the  project we have earmarked for him , which is linked to the hurricane season ,  which starts in june .  and you have my e - handshake that we will release him to participate in the  regularly organized orientation activities scheduled for august .  we expect he will report on wednesday , june 21 st .  thanks again ,  - - mike roberts\",0\n\"Subject: re : status  clayton ,  we can discuss your request when i come back to the office on monday .  regarding the trip to portland . such a trip requires an explicit prior  permission from your boss ,  myself in his absence , or stinson in my and vasant ' s absence .  in case you did not ask for such a permission before , the request is denied .  vince  clayton vernon @ enron  07 / 20 / 2000 03 : 12 pm  to : vasant shanbhogue / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : status  vasant -  i hope you had a wonderful vacation back home , and are rested and recovered  from the long flight back .  i wanted to give you an update of the eol project , the gas model , and of my  intentions here at enron .  software ( in compiled c on the unix platform ) has been developed and debugged  to listen to the eol trades , process them , book them , and file them away . in  addition , software has been developed and debugged to mark these to market on  a continual basis , and to store the entirety of open positions on eol in a  dynamic matrix facilitating analysis . it has yet to get back with me on how  the software can be informed of those trades ultimately rejected for credit  purposes .  these data files are stored in a format for reading by excel or by sas , for  which i have written the data step program and basic tabulation routines  elucidating the structure of the data .  i am in the process of documenting all of this for you .  with regards the gas model and its slow performance on the compaq , dell has  agreed to loan me one of their competing machines to the compaq , to see if  the performance issue of the lp is related to the compaq . i have been  researching this issue with it here and with compaq and dell . the new machine  will be here any day now ( no financial obligation to anyone ) , and i will be  able to immediately ascertain whether the problem the model is having is  compaq - specific .  i am also in the process of documenting the gas model for you .  i ' ve tried to do my best for you , vasant , but i have been frustrated by not  only the death of my mother but some internal systems in it here . just the  other day , sas could not open a full query of the eol database because there  wasn ' t enough free space on the server ' s hard drive for the workfiles . in  discussing some of these issues with some good friends of mine in power  trading , people whom i have known for over 10 years , they indicated they were  ubiquitous here . the power traders have similar pc ' s to my new one , and they  have complained from day 1 that theirs are slower than their old ones . also ,  there remains a large frustration with the development of data warehouses ;  during my brief tenure here it has gone through two differing proposals as to  how to address this . when i have been told of tools available for real - time  data harvesting , my requests for such have typically been met with \"\" well , we  have it , but we haven ' t really tested it yet . \"\" an example is the weather : we  still do not record to disk the hourly nws observations from the goes  satellite .  my interests here are to help enron to do well , because i will do well only  if enron does well . these aren ' t empty words - my ira is 100 % invested in the  enron stock fund . i believe my best contributions to enron will be in the  areas of systems as well as modeling , and the difficulty working in the  research group , in terms of systems development , is that , frankly , few people  at enron seem to care what a researcher thinks about our systems . we aren ' t  directly generating revenues for enron , and we aren ' t really their customers ,  except in our relatively small deparrtmental infrastructure expenses .  as it happens , power trading posted an opening for a modeling and forecasting  person , and i spoke with them and they asked me to take the job , reporting to  george hopley . it is a wonderful opportunity for me , vasant , as they are  interested in large system modelng of power grids as well as improving their  traders ' access to real - time fundamentals data . i was completely candid with  kevin presto regarding my shortcomings here in research - i told him you were  disgusted with me because i repeatedly failed to meet time deadlines . they  also understand i have yet to be at enron for 1 year , and thus may only bid  on a job with your permission . we agree the move is good for enron ; we all  work for enron , and your acquiescence to the move does not endorse it but  merely permit it . they are comfortable with me - they have known me for years  as a hard worker , honest and unpretensive . they have already ordered a  state - of - the - art unix workstation and server for me , and they have told me  they will commit whatever resources are necessary for me to be successful ,  including hiring an analyst to work for me . and , i have already been able to  teach their analysts improved techniques for data harvesting and analysis i  have learned here .  so , i am requesting your permission to bid for this job opening . it would be  a lateral move in position and salary , and i would commit to you to help you  in any way possible in the future with regards the gas model or the eol  database . i will continue to work on their improvement , and complete their  documentation .  as it happens , i am away on enron business in portland monday and tuesday ,  and will be back wednesday . i had wanted to talk face - to - face instead of by  email , but enron business supercedes - i am on a team designing the data  warehouse for floor trader support .  clayton .\",0\n\"Subject: california power update 1 / 17 / 01 pt . iii  1 . california ag exploring investigation of power profits  sources report that the california attorney general ' s office , in a meeting  yesterday , ordered a review of the federal profiteering statute . in keeping  with the recent  rhetoric by gov . davis , this action is almost certainly directed toward  investigations of profits made by generators and marketers .  2 . more detail on bankruptcy - creditors concerned about lengthy \"\" cure period \"\"  the generators want to limit their exposure as general creditors in a chapter  11 proceeding . their ability to their exposure depends on the \"\" cure period \"\"  for  making good on a defaulted payment , which would be dictated by the specific  contract terms . if the \"\" cure period \"\" - that is , the time the utilities have  available to  make up for missed payments before the generators or the power exchange can  take them to court - is a short period of time , for the sake of argument 30  days , then the utilities ' creditors have to swallow another 30 days of  accumulated ( impaired ) receivables before they can move to the more  desirable position of postpetition suppliers ( in which bills do get paid , as  would be directed by the bankruptcy court judge ) . if , however , the utilities  have a longer \"\" cure period \"\" , for the sake of argument 60 days , then their  creditors will effectively have to swallow 60 days of accumulated impaired  receivables on which they will ultimately have to take a substantial haircut .\",0\n\"Subject: weather derivatives : under cover  - - - - - - - - - - - - - - - - - - - - - - forwarded by joseph hrgovcic / hou / ect on 06 / 01 / 2000  12 : 53 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron north america corp .  from : lucy ortiz 06 / 01 / 2000 08 : 58 am  to : mark tawney / hou / ect @ ect , steven vu / hou / ect @ ect , brando  hayden / hou / ect @ ect , david kistler / hou / ect @ ect , gary taylor / hou / ect @ ect , paul  r henry / hou / ect @ ect , joseph hrgovcic / hou / ect @ ect , rajib saha / hou / ect @ ect ,  michael nguyen / hou / ect @ ect , tony harris / hou / ect @ ect , seth  hurwitz / corp / enron @ enron , timothy m norton / hou / ect @ ect , nick mooney , ingrid  wees , catherine woolgar / lon / ect @ ect , victoria bedingfield , raymond  yeow / enron _ development @ enron _ development , christian  cc :  subject : weather derivatives : under cover  - - - - - - - - - - - - - - - - - - - - - - forwarded by lucy ortiz / hou / ect on 06 / 01 / 2000 08 : 56 am  - - - - - - - - - - - - - - - - - - - - - - - - - - -  djcustomclips @ djinteractive . com on 06 / 01 / 2000 09 : 21 : 18 am  please respond to nobody @ maill . djnr . com  to : 126812 @ mailman . enron . com  cc :  subject : weather derivatives : under cover  business  under cover  martin waller  05 / 31 / 2000  the times of london  2 w  31  ( copyright times newspapers ltd , 2000 )  corney & barrow , the mainly city wine bar chain , is going into the  derivatives market . the chain is thought to be the first in the  hospitality industry to take a position against our atrocious  weather .  sarah heward , the managing director , got the idea after meeting a  bunch of customers who had just left garban to set up their own  business , speedwell weather derivatives . about half her wine bars  have outside terraces which have understandably not proven too  popular of late .  \"\" they set me up with a hedge - my counterparty is enron us , \"\" says  heward . this safeguards a modest pounds 15 , 000 of turnover .  folder name : weather derivatives  relevance score on scale of 100 : 94  to review or revise your folder , visit http : / / www . djinteractive . com or  contact dow jones customer service by e - mail at custom . news @ bis . dowjones . com  or by phone at 800 - 369 - 7466 . ( outside the u . s . and canada , call 609 - 452 - 1511  or contact your local sales representative . )  copyright ( c ) 2000 dow jones & company , inc . all rights reserved\",0\n\"Subject: interview schedule for stephen bennett  attached please find the interview packet for the above - referenced person .  the interview will happen friday august 4 , 2000 . please print all three  documents for your hard copies . if you have any questions , or conflicts of  schedule , please do not hesitate to contact me .  sean grady  58701\",0\n\"Subject: news article on enron  india : enron aftermath  business line - 02 / 21 / 2000  abhay mehta  copyright ( c ) 2000 kasturi source : world reporter ( tm ) -  asia intelligence wire  power play  a study of the enron project  * publishers : orient longman , new delhi * price : rs . 195  the enron power project at dabhol in ratnagiri district of maharashtra has  been mired in nationwide controversy ever since the  inception of the project proposal in 1992 ; and the sordid tale ends only  in 1997 , with the supreme court of india refusing to even  admit an appeal against the bombay high court decision , of december 1996 ,  which while commenting that \"\" this case has  highlighted to the people as to how even after 50 years of independence ,  political considerations outweigh the public interest and  the interest of the state and to what extent the government can go to  justify its actions not only before the public but even before  the courts of law \"\" - yet dismissed a public interest petition against the  project on the ( purely technical ) ground of res judicata , even  though new facts , new arguments , new evidence of the violation of the laws  of the land had been advanced by the petitioners .  the fact that the fresh violations of the law were not even considered and  recorded , despite the petitioners adducing the required  evidence , can only be termed as strange , perhaps bizarre .  abhay mehta ' s simple , factual documentation - in fact a chronological  narration - of all events , including the process of bending all  rules , of subverting the law for promoting a project involving  unparalleled future liabilities for maharashtra , indeed for the whole of  india - is not only masterly , it is devastating .  it is a short , pithy book which deserves to be read from cover to cover by  all thinking citizens of this country . barring the  concluding chapter , the epilogue , there are no personal comments , only  facts , disseminated from the original papers , mostly ' secret '  documents .  all documentation has been carefully , faithfully recorded , including  extracts from supposedly ' top secret ' minutes of cabinet  committee meetings ; and the specific violations of the law ( which were  opposed by a few public spirited civil servants , much to  their disadvantage ) have been pointed up . apart from an introductory  ' primer on electricity ' - introduced for the benefit of the  layman , explaining some technical issues relating to electricity  generation , transmission and distribution - and the background of the  events of 1991 , the foreign exchange crisis , and the aftermath of the  crisis , the other fifteen chapters , three appendices and fourteen  annexes of the small book ( of 226 pages ) packs in an enormous volume of  factual information . the strange saga of the enron  project , and the sheer magnitude of the future problems this one single  project poses for the country , need to be briefly recounted  here , for essentially , it is the coming generation which would have to  face the problem .  the mseb has contracted to buy - and if not used , to pay for - 2000 mw of  electricity ( for a period of 20 years ) from the  dabhol power company ( the legal entity set up by enron , as an unlimited  liability company registered in india , through a maze of  intricate crossholdings of equity by half a dozen or more ' front '  companies registered in various tax - free havens .  abhay mehta has indicated the total payments to enron over 20 years amount  to $ 35 billion ( at 1998 exchange rates , around rs .  1 , 25 , 000 crores ) over the life of the project . one must record that : ( a )  crude oil / oil product prices have as of writing , more than  doubled since the above calculations were made . a per the ' doctored '  figures presented by the company ( and its advocate ) , the  charge per unit of electricity supplied , at the 1998 level of prices , was  to 4 . 39 cent ( per unit ) as ' capacity charge ' and 3 . 43 cents  ( per unit ) for ' energy costs ' .  the former is indexed to the us inflation rate , and the latter to  international fuel prices . the former may be assumed to have gone  up only marginally ( rounded to 4 . 4 cents per unit ) ; we know that fuel  prices have more than doubled internationally over 1999 .  assuming the ' fuel costs ' to have increased less than 100 per cent - even  though international prices have more than doubled - we  may assume ( for 1999 ) energy costs of 6 . 85 cents per units , making for a  total payment of 11 . 25 us cents per unit of electricity  supplied by the dabhol power company ( dpc ) to mseb in late 1999 , in phase  i of the project .  within another two years , at 2000 mw , the annual offtake ( for 365 days x  24 hours / day ) would be 17 . 52 billion kwh ; and at  11 . 25 cents per unit , the total payment amounts to $ 1 . 97 billion annually ;  for 20 years , this workout to $ 39 . 4 billion .  this is not counting any further inflation in either energy costs or  capacity charge . at today ' s exchange rate - about rs . 43 . 5 per us  dollar - in rupee terms this works out to wore than rs . 175 , 000 crores ( as  compared to rs . 125 , 000 crores indicated by abhay  mehta ) . this is the cost to mseb in rupee ; and to the country in foreign  exchange as payment to just one project authority , for  supply of part of the power required in maharashtra .  the really significant point to note in this connection is that this  payment - and considerably more , depending on ( a ) future increase  in ' capacity charges ' depending on us inflation rate , and international  prices of lngaphtha ( for ' fuel costs ' ) , and ( b ) depreciation of  the exchange rate of the rupee vis - a - vis the us dollar - is obligatory ;  the assets of the mseb , the maharashtra government  indeed , all assets of the government of india ( present and future ) are  mortgaged to enron , by way of sovereign guarantees  extended by both governments .  the other significant point in this connection is that - as predicted by  all independent indian experts as well as the world bank - the  enron project he forced the mseb to cut its offtake of tata electric  company ' s and its own much cheaper thermal power  already ; in a postscript dated august 1999 , abhay mehta has indicated that  already , the mseb had stopped buying between 200  and 250 mw of power from tata electric ( available at rs . 1 . 80 per unit )  and has had to backdown its own chandrapur thermal  power station ( cost of this power being rs . 1 . 20 per unit ) , while forced  to buy more expensive enron power at rs . 5 per unit .  the loss to mseb on this count alone comes to rs . 460 crore per year .  this had in fact , been predicted earlier even by the world bank .  it is pointless here to go into the details of how precisely all this was  contrived , by a deliberate campaign of ' disinformation ' , of  blatant lies , of sidelining of expert opinion , not only of independent  experts but also the goi ' s own official advisers in this matter ,  namely , the central electricity authority as well as that of the world  bank , which was resolutely opposed to this project . the  detailed facts , the letters exchanged in the above context , the pressure  tactics adopted , the flouting of all procedures norms , even  statutory provisions of the electricity ( supply ) act , are all carefully  documented by abhay mehta .  mehta correctly concludes : \"\" we frequently blame external agencies - like  the world bank - for all our problems , when , as a  matter of fact , we ourselves are our own worst enemies . in the instant  case , the world bank not only advised the government of  india against the project , it stood resolutely firm in its assessment of  the total inadvisability of this project . in fact , one must note  here that in 1996 , neighbouring pakistan , which had entered into a  somewhat similar mou with enron , cancelled the project ( and  the power purchase agreement with enron ) , for a $ 670 million , 782 mw  residual oil - fuelled power plant , even though that  agreement had stipulated enron power supply at a fixed rate of 6 . 4 us  cents per kwh over a 30 year period . ( note the  estimated rate of 11 . 25 cents per kwh for dabhol power for the mseb in  december 1999 , which works out to around rs . 5  per unit ) .  one could go on ; but one must leave the reader to go through abhay mehta ' s  crisp , factual , matter of fact narration of the enron  saga , and switch over to the point made by him in the epilogue to the  story , about ' the next round of scams ' .  for quite some time , the ruling elite in india has been intent on  ' privatising ' all public enterprises ; and even ' utilities ' are no  exception . the ' unbundling ' of infrastructure with a view to privatisation  of all the ' profitable ' segments . all this - as per the current  ' disinformation campaign ' - is supposedly in the interest of  rationalisation and greater efficiency of poorer supply .  the author has referred in this context to the acquisition from the  government - by the torrent group - of the ahmedabad and  surat electricity companies at less than one - tenth of the market value of  the assets of thee facilities . again , much like the enron  saga , all objections by the finance department of the gujarat government  were overruled .  and , abhay mehta has predicated that this onslaught - the break - up of  power utilities into three segments , generation , transmission  and distribution , - with a view to their privatisation is likely to be the  new thrust by the ruling elite , for reasons that do not require to  be spelt out .  though mehta had the examples of the torrent group takeover of ahmedabad  and surat electricity companies , and of the break  up of the orissa state electricity board before him , yet his statement can  be stated today to be prophetic ; the upseb is now on  the firing line . the recent strike by the workers and engineers of the  upseb in protest of the announced up government decision  to trifurcate the upseb ; and the union minister of power , mr . rangarajan  kumaramangalam ' s statement that the upseb is a  loss making , inefficient unit and that privatisation of the facilities  after the trifurcation - need to be noted .  that 40 per cent of the dues of the upseb are from the up government ; that  tariffs for up electricity supply are fixed by the up  government and not by the upseb ; that the upseb does not have the cash  even for routine maintenance as a result of the above  - these are facts that nobody is prepared even to consider . that the  remedy for upseb lies in a different kind of reform and  restructuring , is not even to be debated . the whole idea is to privatise  the profitable segments , and to leave the public sector entity  with all the problem areas , including rural energy supply . it is against  this background that abhay mehta ' s book needs to be widely  disseminated , read , and its implications understood .  what is at stake is not a ' utility ' here or a psu there . what is at stake  is the future of some 80 per cent of the have - nots in this  country .  what is at stake is the ' pillory ' of the assets of the nation for private  aggrandisement .  arun ghosh\",0\n\"Subject: re : your visit to enron  frank ,  great idea . i think it will be an opportunity to brainstorm about the problem .  vince  \"\" francis x . diebold \"\" on 11 / 06 / 2000 04 : 08 : 26 pm  to : vince . j . kaminski @ enron . com  cc :  subject : re : your visit to enron  vince ,  now that ' s an interesting idea - - the problem is that i don ' t really have any  work yet , as i am just now beginning ! but yes , why don ' t i put a talk  together  as to what i ' m thinking about , why it ' s important , why existing methods may be  inadequate , and how i think econometricians can contribute . does that sound  ok ?  f .  vince . j . kaminski @ enron . com wrote :  > frank ,  >  > thanks a lot . are you planning to make a general presentation on your work  > in the weather area ? if this is the case , i would  > invite to our lunch meeting the traders from the weather derivatives  > desk .  >  > vince  >  > \"\" francis x . diebold \"\" on 11 / 04 / 2000 08 : 47 : 41 am  >  > to : shirley . crenshaw @ enron . com  > cc : vince kaminski  > subject : re : your visit to enron  >  > shirley ,  >  > the 21 st is perfect . i will go ahead and purchase my plane tickets . would  > you  > please make me a hotel reservation for the night of the 21 st ?  >  > many thanks ,  >  > frank diebold  >  > shirley . crenshaw @ enron . com wrote :  >  > > good morning professor diebold :  > >  > > i am vince kaminski ' s assistant and he has forwarded your emails to me  > > for scheduling purpose . unfortunately , we have a conflict on december  > > 14 th . can you possibly come on the 21 st ?  > >  > > i hope you have not already made your reservations . if i can do anything  > > to assist you , please let me know .  > >  > > best regards ,  > >  > > shirley crenshaw  > > administrative coordinator  > > enron research group  > > 713 - 853 - 5290  > >  > > - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on  > 11 / 03 / 2000  > > 09 : 29 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  > >  > > vince j kaminski  > > 11 / 02 / 2000 04 : 30 pm  > >  > > to : \"\" francis x . diebold \"\" @ enron  > > cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect  > > subject : re : visit ? ( document link : shirley crenshaw )  > >  > > frank ,  > >  > > dec 14 would be better for us . we have already scheduled  > > an internal presentation on december 7 . please , go ahead and make a  > > reservation .  > > the best place to stay is hyatt regency downtown or doubletree downtown  > > ( within a walking distance to enron ) . it is important to specify the  > > downtown  > > location for both hotels .  > >  > > vince  > >  > > \"\" francis x . diebold \"\" on 11 / 02 / 2000 03 : 00 : 49 pm  > >  > > to : vince . j . kaminski @ enron . com  > > cc :  > > subject : re : visit ?  > >  > > sounds good , vince . how about dec 7 ? the roundtrip coach fare ,  > regardless  > > of  > > airline , is about $ 1900 . i hope that won ' t break the bank . once i have  > > your  > > approval , i ' ll go ahead and book it . best , frank  > >  > > vince . j . kaminski @ enron . com wrote :  > >  > > > frank ,  > > >  > > > yes , i would be very interested in meeting with you in houston in  > > december .  > > > the best day for visit would be thursday when my group has a lunch  > > meeting  > > > and you could meet the rest of the research unit .  > > >  > > > please , let me know what day would work for you . we shall be very glad  > to  > > > cover the cost of your trip .  > > >  > > > vince  > > >  > > > i  > > >  > > > \"\" francis x . diebold \"\" on 10 / 31 / 2000 01 : 01 : 11 pm  > > >  > > > to : vince kaminski  > > > cc :  > > > subject : visit ?  > > >  > > > hi vince ,  > > > are you still interested in my visiting for a day , perhaps in dec or  > > > jan ? i have begun a project on unobserved - components modeling of  > > > weather patterns , so it would be productive and fun to compare notes .  > > > best ,  > > > frank  > > >  > > > - -  > > > francis x . diebold  > > > wp carey professor  > > >  > > > department of economics  > > > university of pennsylvania  > > > 3718 locust walk  > > > philadelphia , pa 19104 - 6297  > > >  > > > fdiebold @ sas . upenn . edu  > > > http : / / www . ssc . upenn . edu / ~ diebold  > > >  > > > ( 215 ) 898 - 1507 telephone  > > > ( 215 ) 573 - 4217 fax  > >  > > - -  > > francis x . diebold  > > wp carey professor  > >  > > department of economics  > > university of pennsylvania  > > 3718 locust walk  > > philadelphia , pa 19104 - 6297  > >  > > fdiebold @ sas . upenn . edu  > > http : / / www . ssc . upenn . edu / ~ diebold  > >  > > ( 215 ) 898 - 1507 telephone  > > ( 215 ) 573 - 4217 fax  >  > - -  > francis x . diebold  > wp carey professor  >  > department of economics  > university of pennsylvania  > 3718 locust walk  > philadelphia , pa 19104 - 6297  >  > fdiebold @ sas . upenn . edu  > http : / / www . ssc . upenn . edu / ~ diebold  >  > ( 215 ) 898 - 1507 telephone  > ( 215 ) 573 - 4217 fax  - -  francis x . diebold  wp carey professor  department of economics  university of pennsylvania  3718 locust walk  philadelphia , pa 19104 - 6297  fdiebold @ sas . upenn . edu  http : / / www . ssc . upenn . edu / ~ diebold  ( 215 ) 898 - 1507 telephone  ( 215 ) 573 - 4217 fax\",0\n\"Subject: re : invitation to 2001 energy finance conference - the university  of texas at austin  steve ,  no problem . it was a very short meeting ( most people were out ) .  yes , i will be in houston during the week of the conference .  see you in austin and in houston .  vince  steven leppard  01 / 19 / 2001 06 : 03 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : invitation to 2001 energy finance conference - the university of  texas at austin  hi vince  i see you ' re speaking at the austin conference . will you be in the houston  office during the earlier part of the week ? if so , i may look into arranging  a trip out to meet you guys , and take in the conference too .  sorry i didn ' t dial in to the updat emeeting on tuesday - i was delivering  prc feedback to my team .  steve  - - - - - - - - - - - - - - - - - - - - - - forwarded by steven leppard / lon / ect on 19 / 01 / 2001  12 : 04 - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" angela dorsey \"\" on 10 / 01 / 2001 21 : 06 : 18  to : \"\" angela dorsey \"\"  cc : \"\" ehud ronn \"\" , \"\" sheridan titman ( e - mail ) \"\"  subject : invitation to 2001 energy finance conference - the university of  texas at austin  colleagues and friends of the center for energy finance education and  research ( cefer ) :  happy new year ! hope you all had a wonderful holiday season .  on behalf of the university of texas finance department and cefer , we  would  like to cordially invite you to attend our :  2001 energy finance conference  austin , texas  february 22 - 23 , 2001  hosted by the university of texas finance department  center for energy finance education and research  dr . ehud i . ronn and dr . sheridan titman are currently in the process of  finalizing the details of the conference agenda . we have listed the  agenda  outline below to assist you in your travel planning . each conference  session will be composed of a panel discussion between 3 - 4 guest  speakers  on the designated topic .  as supporters of the center for energy finance education and research ,  representatives of our trustee corporations ( enron , el paso , reliant ,  conoco , and southern ) will have the $ 500 conference fee waived .  the conference package includes thursday evening ' s cocktails &  dinner and hotel / ut shuttle service , as well as friday ' s conference  meals ,  session materials and shuttle service . travel to austin and hotel  reservations are each participant ' s responsibility .  a limited number of hotel rooms are being tentatively held at the  radisson  hotel on town lake under the group name \"\" university of texas finance  department \"\" for the nights of thursday , 2 / 22 / 01 and friday , 2 / 23 / 01 ( the  latter evening for those who choose to stay in austin after the  conference ' s conclusion ) . to guarantee room reservations , you will need  to  contact the radisson hotel at ( 512 ) 478 - 9611 no later than monday ,  january  22 nd , and make your reservations with a credit card . please let me know  when you have made those arrangements so that i can make sure the  radisson  gives you the special room rate of $ 129 / night .  please rsvp your interest in attending this conference no later than  january 22 nd to angela . dorsey @ bus . utexas . edu , or ( 512 ) 232 - 7386 , as  seating  availability is limited . please feel free to extend this invitation to  your colleagues who might be interested in attending this conference .  center for energy finance education and research  program of the 2001 energy finance conference  february 22 - 23 , 2001  thursday , feb 22 :  3 : 00 p . m . reserved rooms at the radisson hotel available for  check - in  5 : 30 p . m . bus will pick up guests at the radisson for transport to  ut club *  6 : 00 p . m . cocktails , ut club 9 th floor  7 : 00 p . m . dinner , ut club  8 : 00 p . m . keynote speaker  9 : 00 p . m . bus will transport guests back to hotel  friday , feb 23 :  7 : 45 a . m . bus will pick up at the radisson for transport to ut  8 : 30 a . m . session 1 - real options  panelists : jim dyer , ut ( chair )  sheridan titman , ut  john mccormack , stern stewart & co .  10 : 00 a . m . coffee break  10 : 15 a . m . session 2 - deregulation  panelists : david eaton , ut ( chair )  david spence , ut  jeff sandefer , sandefer capital  partners / ut  peter nance , teknecon energy risk  advisors  11 : 45 a . m . catered lunch & keynote speaker  1 : 30 p . m . guest tour - eds financial trading & technology center  2 : 00 p . m . session 3 - risk management  panelists : keith brown , ut ( chair )  vince kaminski , enron  alexander eydeland , southern co .  ehud i . ronn , ut  3 : 30 p . m . snack break  3 : 45 p . m . session 4 - globalization of the energy business  panelists : laura starks , ut ( chair )  bob goldman , conoco  ray hill , southern co .  5 : 15 p . m . wrap - up  5 : 30 p . m . bus picks up for transport to airport / dinner  6 : 30 p . m . working dinner for senior officers of energy finance  center  trustees  * we have made arrangements to provide shuttle service between the  radisson  hotel and ut during the conference . however , if you choose to stay at an  alternative hotel , then transportation to conference events  will become your responsibility .  * * * * * * * * * * * * * *  angela dorsey  assistant director  center for energy finance education & research  the university of texas at austin  department of finance , cba 6 . 222  austin , tx 78712  angela . dorsey @ bus . utexas . edu  * * * * * * * * * * * * * *\",0\n\"Subject: wharton risk center advisory committee meeting june 14 , 2001  dear vince ,  attached please find a prelimary agenda for the wharton risk management and  decision process center advisory committee meeting taking place june 14 ,  2001 . howard kunreuther and paul kleindorfer co - directors for the center  would like to extend to you the opportunity to serve as an advisory committee  member .  if you could kindly let me know your attendance status and if you are  interested in serving as soon as possible i would be very grateful . we are  presently working on the spring edition of the center ' s newsletter which  always prints a list of members . we would like to add your name , title and  company .  thank you ,  theresa  >  ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~  theresa convery  administrative assistant  risk and decision processes center  the wharton school of the university of pennsylvania  ( 215 ) 898 - 5688 / fax : ( 215 ) 573 - 2130  tconvery @ wharton . upenn . edu  - agenda - draft . doc\",0\n\"Subject: meeting with petronas  rick ,  i was contacted by petronas who requested a meeting  with enron on risk management . i have met with them  a few years ago and they want to discuss with us  their progress implementing risk management practices .  can we arrange for them a standard presentation , like the one we have for  banks  ( you or david port , bill bradford , research ) ?  unfortunately , they gave us no choice as far as the timing is concerned  ( given a very tight schedule ) . they want to visit on thursday , feb . 8 ,  at 10 a . m . i shall take them out to lunch after the meeting .  i shall also contact jeff shankman and john nowlan  to arrange a short courtesy meeting with them .  vince\",0\n\"Subject: re : referral  vince :  according to alex , li xiao gave your email address to alex . did li xiao  talk to you first about alex ? i don ' t know for certain . alex contacted you  in march , interviewed once , but nothing came of it . after gary left , li xiao  suggested to alex that he try again , and the rest is history .  grant .  vince j kaminski  02 / 15 / 2000 08 : 58 am  to : grant masson / hou / ect @ ect  cc :  subject : re : referral  grant ,  did li xiao refer alex to us ?  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 15 / 2000  08 : 57 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  linda vargo  02 / 14 / 2000 02 : 39 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : referral  can you advise as to whether or not li xiao referred alex to you last  summer . i need to know this in order to process  an employee referral ( under old plan ) for her .  - - - - - - - - - - - - - - - - - - - - - - forwarded by linda vargo / hou / ect on 02 / 14 / 2000 02 : 39  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  li xiao @ enron  02 / 14 / 2000 11 : 19 am  to : linda vargo / hou / ect @ ect  cc :  subject : re : referral  hi , linda ,  i wonder if you heard from vince kaminski regarding my referral for alex  huang .  thanks ,  li x 39635  - - - - - - - - - - - - - - - - - - - - - - forwarded by li xiao / corp / enron on 02 / 14 / 2000 11 : 12 am  - - - - - - - - - - - - - - - - - - - - - - - - - - -  linda vargo @ ect  01 / 17 / 2000 04 : 29 pm  to : li xiao / enron _ development @ enron _ development  cc :  subject : re : referral  i am waiting for feedback from vince kaminsky . as soon as i know something ,  i will advise .\",0\n\"Subject: re : mec  mark ,  one option is to talk to a number of physicists in my group who might be  interested .  vince  enron investment partners  from : mark lay 07 / 26 / 2000 07 : 57 am  to : rex shelby / enron communications @ enron communications , steven j  kean / hou / ees @ ees , mike mcconnell , vince j kaminski / hou / ect @ ect , philippe a  bibi / hou / ect @ ect  cc : kenneth lay / corp / enron @ enron , fabricio soares / hou / ect @ ect  subject : mec  thank you for participating in yesterday ' s meeting . we spoke with harvey and  jim after the meeting and they took to speed to market comments to heart .  there is an opportunity for enron to participate with mec in the early  development of their company , but it seems the one thing they want is the one  thing we also want , people . i would appreciate your thoughts and comments on  the possiblity of creating a small team that could work directly with mec as  part of a potential investment and strategic relationship . given our  resource constraints , this would most likely be part of the organization that  sees the greatest strategic impact from mec ' s development .  mark  x 37408\",0\n\"Subject: karolyi dinner tonight  i ' m writing to confirm our dinner plans with andrew karolyi for this evening .  we have reservations for 7 pm at damian ' s , 3011 smith st . , 713 . 522 . 0439  dave  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  prof . david ikenberry  jones graduate school of management  rice university  713 - 348 - 5385\",0\n\"Subject: your approval is overdue : access request for  tom . halliburton @ enron . com  this request has been pending your approval for 2 days . please click  approval to review and act upon this request .  request id : 000000000003619  request create date : 9 / 27 / 00 9 : 18 : 21 am  requested for : tom . halliburton @ enron . com  resource name : unlisted application / software  resource type : applications\",0\n\"Subject: fw : eprm article  hi vince ,  i ' m wondering if you got this last week ? if you could have a quick look and  get back to me with any comments that would be great - robin is chasing me  on this one !  best regards .  chris .  - - - - - original message - - - - -  from : chris strickland  to :  sent : wednesday , december 06 , 2000 4 : 16 am  subject : eprm article  > hi vince ,  >  > hope things are fine with you . i ' m sorry that i only ever write to you  when  > i ' m after something , but could you look at this simulation article - the  > next installment in the eprm articles .  >  > many thanks and best regards .  >  > chris .  >  >  >  > - - - - - original message - - - - -  > from :  > to : ; ;  ;  >  > sent : friday , september 08 , 2000 4 : 23 am  > subject : re : var article  >  >  > > les ,  > >  > > the revised version of the var article looks fine .  > >  > > vince  > >  >  - eprm _ 04 _ sim _ mr . zip\",0\n\"Subject: uk gas desk  hi vince & stinson ,  for your information , jonathan whitehead is moving to the japan opportunity -  tomorrow is his last day as head of uk gas trading . the new head of uk gas  is moving over from continental trading team , and his name is david gallagher .  regards ,  anjam  x 35383\",0\n\"Subject: re : approval for restricted websit : web _ research _ pub  approved .  vince kaminski  information risk management  05 / 02 / 2000 09 : 04 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : approval for restricted websit : web _ research _ pub  per kevin moore , please approve elena chilkina ' s access for the following  restricted website : web _ research _ pub .  thank you ,  information risk management ( et )  - - - - - - - - - - - - - - - - - - - - - - forwarded by information risk management / hou / ect on  05 / 02 / 2000 09 : 05 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  security resource request system  directory line item pending access processing  directory name : website : web _ research _ pub  service type : grant  expiration date :  comments : will send to vince kaminski for approval .  security processing  processing status :  e - mail message :  comments / justification :  general information request : kgme - 4 jtf 4 c  requested by : kevin g moore / hou / ect phone : 713 / 853 - 4710  requested for : elena chilkina / hou / ect employee type :  company : 100038 rc # : 0011  priority : high  comments / justification : she will need the same as michael sergeev . a few has  been listed there may be  some others that are not listed . please apply .  editing history ( only the last five ( 5 ) are shown )  edit # past authors edit dates  1 information risk management 05 / 02 / 2000 09 : 03 : 15 am\",0\n\"Subject: contact info . during my vacation  cell : 011 - 91 - 984 - 9022360 ( try this first )  hyderabad : 011 - 91 - 40 - 7114833  vijayawada : 011 - 91 - 866 - 430928 ( dec 28 - jan 8 )  bombay office : 011 - 91 - 982 - 1038711  also , i will be checking my email regularly ( as long as i can get the  connected ) . have a great christmas and holidays . i will see you all in the  new year !  best wishes  krishna .\",0\n\"Subject: re : high - end desktop computing ?  shirley ,  yes , it will be a swap of one machine for another .  vince  shirley crenshaw  03 / 17 / 2000 12 : 17 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : high - end desktop computing ?  vince :  is this ok to order ?  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 03 / 17 / 2000  12 : 17 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  clayton vernon @ enron  03 / 17 / 2000 09 : 34 am  to : mark davidson / corp / enron @ enron , shirley crenshaw / hou / ect @ ect  cc :  subject : re : high - end desktop computing ?  mark -  shirley will order an 800 mhz machine with 512 mb of ram , and a large ( 17 \"\" + )  flat - screen monitor for me .  clayton  mark davidson  03 / 17 / 2000 08 : 52 am  to : clayton vernon / corp / enron @ enron  cc : shirley crenshaw / hou / ect @ ect  subject : re : high - end desktop computing ?  clayton -  sorry it took so long to get back to you . there are a couple of things to  keep in mind :  - enron it supports enron equipment .  - all equipment must be purchased through \"\" enron it purchasing \"\"  our current high end desktop is a 800 mhz pentium iii machine with 128 m of  ram . you can bump up the ram to whatever you feel is appropriate . when the lghz processors come out ( in the very near future ) that will become our  standard .  what we want to avoid is getting equipment that we do not have a image for .  the \"\" image \"\" is the complete package of software that we put on a machine when  it is deployed . if you go out and buy a machine that we do not have a image  for , we can ' t support it for a multitude of reasons .  hopefully this answered your questions / concerns .  if not , please call me so that we can discuss this further .  thanks  mark davidson  x 39038  clayton vernon  03 / 14 / 2000 03 : 39 pm  to : mark davidson / corp / enron @ enron  cc :  subject : high - end desktop computing ?  mark -  i have developed a model for enron that requires ultra - high - end pc  performance ( it does many calculations in excel ) , and my boss has authorized  me to buy whatever pc i need . i ' m looking at the compaq 850 , but richard ( our  floor rep ) says no pc ' s over the 600 series will be supported by it . i need  to resolve this issue ; we are sophisticated buyers , we know the type of  machine we want , and we have the money to pay for it .  sincerely ,  clayton vernon  manager , research\",0\n\"Subject: ieor monday seminar - october 23 , 2000  ?  ?  industrial engineering and operations research  monday seminar  ieor 298 - 1 - fall 2000  monday , october 23 , 2000  - - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" volatility of electricity prices - measurement and analysis of underlying  causes \"\"  dr . vincent kaminski  managing director and head of research for enron corp .  ?  abstract :  the last three years were characterized by exceptionally high volatility of  the power prices in the us markets . the market developments have created a  number of unique challenges for energy industry economists . one immediate  question we have to answer is how to measure volatility of energy prices .  although we can all agree that the prices in the power markets are  characterized by high variability , the traditional measures used in  financial economics ( annualized standard deviation of log price returns ) may  not fit well electricity prices .  the second challenge is to explain the sources of high price volatility and  to answer the question to what extent it can be attributed to problems that  can be addressed in the long run . such problems include flaws in market  design that allow some market participants to abuse market power , limited  availability and / or unequal access to transmission , temporary shortages of  generation capacity . some factors underlying high volatility of electricity  prices may be of permanent nature and may be a necessary price to pay for  increased market efficiency and expanded customer choice .  time and location : 3 : 30 - 5 : 00 p . m . - 3108 etcheverry  refreshments : 3 : 00 p . m . - 4 th floor hallway\",0\n\"Subject: dr . rafael campo  good morning ,  ?  i have attached a press release that may be of interest to you .  ?  if you have any questions regarding it , or if we can be of assistance in any  other way , please call me directly at 972 - 245 - 8300 .  ?  thanks and best regards ,  katheryn stalker  ?  risk limited corporation  box 612666 ? ? dallas , texas 75261 ? ? usa ? ? ? tel : 972 . 245 . 8300 ? ? fax :  972 . 245 . 8318 ? ? ? www . risklimited . com  - press release dr . rafael campo 5 - 2 - 01 . doc\",0\n\"Subject: re : visit to enron  fyi  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 05 / 01 / 2000  09 : 06 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  nick bambos on 05 / 01 / 2000 04 : 26 : 30 am  to : vince . j . kaminski @ enron . com  cc :  subject : re : visit to enron  vince ,  how are you ? hope all is well .  is there any chance we can schedule my visit to enron on friday , may 19 ,  or friday , may 26 ?  by the end of april i was able to attract a top new student to work on the  project .  the other one for the coming year will be giuseppe . by spending the summer  at enron , he will be in a position to bring the new one up to speed and  create an intellectual team here at stanford to look at these problems .  i must move ahead soon to put the project in place and get the work going .  talk to you soon ,  nick  vince . j . kaminski @ enron . com wrote :  >  > nick ,  >  > we can close the loop on our commitment to support the research projects  > before your visit to enron .  >  > my assistant , shirley crenshaw , will call you to set up a conference call  > with me , stinson gibner ,  > and tom gros from enron broadband services to discuss all the isssues .  > friday this week would work for  > both tom and me . i think we need about 15 minutes .  >  > vince  >  > p . s . shirley , nick ' s phone number is 650 796 8163 ( cell ) , 650 - 725 - 5525  > ( office ) .  >  > nick bambos on 03 / 12 / 2000 05 : 32 : 35 pm  >  > to : vince . j . kaminski @ enron . com , bambos @ stanford . stanford . edu  > cc :  > subject : visit to enron  >  > hello vince ,  >  > it was nice seeing you at stanford and many thanks for the lunch  > we had together . i really enjoyed our discussions , both at the  > technical level and otherwise .  >  > i promised to send you an e - mail regarding possible dates for  > a visit to enron . i delayed it for a week till my schedule was  > clearer . let ' s see if we can get a match with your schedule -  > mine is rather terrible :  >  > friday , 21 st of april looks good . but april 23 rd is easter  > sunday , so that may make it difficult for some people at enron  > to be around . let me know if that is the case . i am willing to  > visit then , because the week after that i am scheduled to be in  > japan and in the previous weeks i am all committed on fridays .  >  > friday , 19 th of may is the next possibility , but this probably  > is too far out . the main problem is that i am operating within  > a window of opportunity for attracting top students for this  > research . this window closes by the end of april , and it would be  > important for the student support funds to be in place then , so  > that i can make hard commitments to students and attract top  > talent . i am already reviewing files of students who have  > approached me for phd advising , and i am in a mode of doing \"\" soft  > commitments to star - level students \"\" to get this research and its  > potential on their radar screen . top students are highly sought  > after by advisors and i want to be an early player in this  > competition .  >  > does my visit to enron have to happen before we can set up the  > project and student support at stanford ? if so , doing it before the  > end of april is important for getting top people . if the visit can  > happen after we get the ball rolling , then we can schedule it in may .  > i assume there will be multiple visits both ways when the project gets  > going . please let me know what you think .  >  > best regards ,  >  > nick\",0\n\"Subject: re : alp presentation  christie ,  what about the invitation to dinner for gillis and whitaker ?  vince  christie patrick  04 / 10 / 2001 06 : 01 pm  to : mgillis @ rice . edu , grwhit @ rice . edu  cc : vince j kaminski / hou / ect @ ect , steven j kean / na / enron @ enron  subject : alp presentation  president gillis and dean whitaker ,  enron would be honored with your presense at the presentation set forth  below .  under the guidance of vince kaminski and his team here at enron , we are  thoroughly enjoying working with this group of bright and enthusiastic rice  students . we hope you can join us for the culmination of their significant  efforts .  please let me know - - thanks ! !  - - christie .  - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 04 / 10 / 2001  05 : 52 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  04 / 10 / 2001 08 : 13 am  to : barrett @ rice . edu , uecker @ rice . edu , cmiller @ rice . edu , lounghrid @ rice . edu ,  luigical @ rice . edu  cc : vince j kaminski / hou / ect @ ect , christie patrick / hou / ect @ ect , shirley  crenshaw / hou / ect @ ect , kenneth parkhill / na / enron @ enron  subject : alp presentation  on behalf of enron corp . i would like to invite you to an alp project  presentation by a group of students  of jesse h . jones graduate school of management , rice university .  the students will present the results of a research project regarding  electronic trading  platforms in the energy industry .  the presentation will be held on may 7 , at 4 : 00 p . m . at enron , 1400 smith .  we would also like to invite you to dinner , following the presentation .  vince kaminski  vincent kaminski  managing director - research  enron corp .  1400 smith street  room ebl 962  houston , tx 77002 - 7361  phone : ( 713 ) 853 3848  ( 713 ) 410 5396 ( cell )  fax : ( 713 ) 646 2503  e - mail : vkamins @ enron . com\",0\n\"Subject: re : summary spreadsheet for data vendor research and model  development  hi ,  fyi here is an updated spreadsheet summarizing the data vendor research and model development .  please let me know if any thing is missing , wrong , should be deleted , etc .  thanks ,  iris  - - - - - original message - - - - -  from : salmon , scott  sent : monday , april 09 , 2001 2 : 15 pm  to : dhar , amitava  cc : mumford , mike ; kirkpatrick , eric ; mack , iris  subject : re : data for private firm model  great work iris ! this gets us heading down the right direction and we ' ll have some project scope documentation asap .  cheers ,  scott  amitava dhar  09 / 04 / 2001 19 : 25  to : scott salmon / eu / enron @ enron , mike mumford / lon / ect @ ect , eric kirkpatrick / eu / enron @ enron  cc : iris mack / enron @ enronxgate  subject : data for private firm model  the enclosed spreadsheet contains a summary of preliminary data search plan prepared by iris . we will talk about further progress during our conf . call on wednesday .  > \",0\n\"Subject: recruiting at cmu computational finance program  vince ,  thanks for the prompt reply . i ' ll plan to call early next week .  rick  - - - - - original message - - - - -  from : \"\" vince j kaminski \"\"  to : \"\" rick bryant \"\"  cc : \"\" vince j kaminski \"\" ; \"\" kevin kindall \"\"  sent : friday , july 28 , 2000 9 : 05 am  subject : re : recruiting at cmu computational finance program  >  >  > rick ,  >  > thanks for your message . i am familiar with the computational finance  program  > and value its high quality .  >  > please , call me next week . the best time is between 7 : 00 and 8 : 30 a . m .  > cst .  >  > vince  >  >  >  >  >  >  >  > \"\" rick bryant \"\" on 07 / 26 / 2000 01 : 27 : 23 pm  >  > to : vince j kaminski / hou / ect @ ect  > cc : \"\" kevin kindall \"\" , \"\" ken keeley \"\"  ,  > \"\" sanjay srivastava \"\"  > subject : recruiting at cmu computational finance program  >  >  >  > vince ,  >  > greetings ! i am the director of the ms in computational finance program  at  > carnegie mellon . i am following up on a conversation i had with kevin  > kindall , a graduate of our program , who gave me your e - mail address and  > suggested i contact you as the individual making the recruiting decisions  > for the research group at enron .  >  > in speaking with the director of the career opportunity center at the  > business school , i am told that although an alison bailey from enron  > ( mary . alison . bailey @ enron . com ) has arranged for a sizable block of rooms  in  > which to conduct interviews on campus on december 11 th , there is as yet no  > indication of whether the comp finance students will have opportunity to  > compete for these spaces .  >  > we are regarded by many in the industry as the top quantitative finance  > program in the country . focused on derivative pricing , econometrics , var  > and portfolio management , our graduates should be an excellent fit for  your  > business . i would be happy to talk with you further about our  > rogram ( http : / / student . gsia . cmu . edu / mscf / ) as well as our students '  interest  > in enron ( the name comes up a lot ! ) . also , if you are interested , we run  a  > \"\" speaker series \"\" on most friday ' s during the fall and spring that would  > give you ( or another in your group ) the opportunity to address our  students  > in an area of interest . such a meeting would , i think , help you better  > understand the careers our students are preparing to pursue as well as  give  > our students first hand knowledge of enron and its future .  >  > when might be a good time to contact you by telephone ?  >  > thank you for your time .  >  > rick  >  > richard l . bryant  > director , computational finance program  > carnegie mellon university  > graduate school of industrial administration  > pittsburgh , pa 15213  > phone / fax ( 412 ) 268 - 4592 / ( 412 ) 268 - 6837  > http : / / fastweb . gsia . cmu . edu / mscf  >  >  >  >  >  >  >  >  >  >\",0\n\"Subject: interview - credit derivatives  ? ? ? ? ? ? ?  ?  ? ? ? ? ? ? dear vince :  ?  ? ? ? ? ? ? thank you for the invitation yesterday . it was a pleasure to meet  you all and learn more about the group , it ' s structure and to some extent  what you are involved in . please extend my thanks to all of them .  ?  ? ? ? ? ? ? i am particularly interested in the credit swap trading platform  that enron has recently started . such a platform will provide unique  visibility into the credit markets . as you suggested i tried to learn more  about this from tanya . ? i would like to learn more and if possible meet other  people more directly linked to the effort .  ?  ? ? ? ? ? ? just simple instruments like credit swaps will require serious  modelling capability for the pricing and the hedging of these apparently  simple intruments . the market visibility i mention above can be explored  through credit derivatives trading successfully if enron possesses superior  ( vis a vis morgan stanley , salomon smith barney , chase manhatan ,  etc . ) ? modelling technology in credit derivatives . i can and would like  to ? consider the possibility of doing this for enron . i would like to help  develop and participate in putting together that business .  ?  ? ? ? ? ? ? as i mentioned to you i have done some work in credit derivatives  and am deeply familiar with virtually all the work of the principal  academics in credit derivatives namely : duffie , lando , tuffano , duffee , das ,  lelland , etc . i have read carefully most of their work ( published as well as  working papers ) on the subject to date .  ?  ? ? ? ? ? ? i look forward to hearing from you .  ?  ? ? ? ? ? ? best regards  ?  ? ? ? ? ? ? joao\",0\n\"Subject: enron opportunities  dr . kaminski :  ?  here is my resume and cover letter .  ?  thanks ,  ?  richard iles  - enron cover and resume . doc\",0\n\"Subject: re : training courses  shirley ,  no problem .  vince  shirley crenshaw  03 / 13 / 2000 12 : 08 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : training courses  vince :  kevin moore and jose marquez would like to take a course entitled  \"\" wellhead to burnertip \"\" which is scheduled monthly . the first course  available would be may 18 th and the cost would be $ 600 . 00 each .  is this ok ?  thanks !\",0\n\"Subject: re : storage model : simple issues  brad ,  here are my thoughts on your concerns .  * you needs curve inputs . this is an it job . i can help you for the curves  before the system is properly set up .  * intrinsic value vs time value :  the intrinsic value depends on how you allocate the volumes . if you have a  rough idea about the allocation as  you did in the spreadsheet , we can calucate the intrinsic value within the  model . the difference between the  total and the intrinsic will be the ( option ) time value . however , by  pre - allocating volumes , you killed some options .  in the storage model , volumes are allocated dynamically , therefore it is  hard to distinguish the intrinsic vs . time value .  * factor of loading : factor of loadings are used to give historical  correlation matrix . the three factors correspond to  paralle shift , slopping and curveture . the covariance matrix in the model  is expressed in the form  covar = row ( vol _ { i } ) * ( correl ( i , j ) ) * colum ( vol _ { j } ) where vols are  the implied volatilities from the vol curve .  ( correl ( i , j ) ) = l * l ' + residue ( small )  where l is the factor of loading matrix . so in a simple words , the factor of  loadings ( say , 60 x 3 ) are a simplier way for us to  remember the historical correlation matrix ( say , 60 x 60 ) .  let me know if i can offer further help .  zimin  brad horn 02 / 15 / 2000 07 : 15 am  to : zimin lu / hou / ect @ ect  cc : sandra henderson / hou / ect @ ect  subject : storage model : simple issues  zimin :  thanks for your time with the revised storage valuation . your right to  point out the similarity to market bids . here are some basic questions tied  to implementation and calibration :  model infrastructure / it support : i obviously need to re - build my link to the  forward curves as the model is not working in my new location . short - term  ( aprox 1 month ) , i ' d like to establish a link to the ena database egsprod 32  in order to fetch the long - dated price and volatility curves . my link to ena  forward curves would then be quickly severed in favor of the curves generated  by the new bridgeline entity ( database name and data structure yet to be  defined ) . however , its not clear to me what is required in this two stage  process to support your model . any definition of model input or minimum  support requirements you provide is appreciated . i ' ll then work with sandra  henderson , an enron employee providing our it support , to ensure the model  continues to work regardless any downstream system changes that may take  place as we build and establish our separate trading systems or databases .  meanwhile , is there anything you think you can do to ensure im up and running  quickly ?  sandra : linking excel spreadsheets to bridgeline forward curves will be key  to all our pricing projects , not just the storage model supplied by research .  intrinsic vs extrinsic value : it would be helpful to decompose the model ' s  calculated storage price and to distinguish intrinsic vs extrinsic ( time or  option ) value . i could easily link a new spreadsheet tab to your model  inputs and to calculate the intrinsic value , and then through a simple  difference i could determine the extrinsic value . ive included a simple  spreadsheet calculation for the intrinsic value for review . i wanted to  share this with you to ask the following :  does the nature of the model define intrinsic and extrinsic value differently  than the simple difference proposed ?  do you think it would make sense to do the simple value decomposition in the  backcode c - code via . dll in order to ensure run - time is faster ?  my goal here is straightforward : a ) to better understand the model and its  sensitivities . ; and b ) to determine if and when the option approach is  associating significant value above and beyond the simple present value of  the time spreads .  factor loadings : what are some of the thoughts or insights you can offer with  regards to factor loadings and how i should interpret the graph of the 3  factors calculated ? factor loadings have always been a mystery to me . for  example , what problems should i be looking for as a warning against  mispricing ? what , if anything , is implied about 1 day price change or  expected curve re - shapings ( after all , curve - reshapings are key to storage  valuation ! ! ! ) ?  calibration : we are preparing a simple summary of descriptive statistics  which should allow me to refine some of the model inputs . i ' ll share the  data when we are and model results once im up and running .\",0\n\"Subject: credit support value for mg and paperco  find below a spreadsheet with my very rough calculation of the value of  credit support for mg and paperco .  my approach is as follows :  1 . assume all contracts can be modelled as financial swaps .  2 . spread the notional trading volumes over the estimated swap tenors .  3 . calculate the value of defaulting at each period of the swap ( the  default option ) using black ' s formula .  4 . treat the value of the default options as risky cash flows . that is  treat this value just like you would an annuity stream . by discounting back  this stream of cash flows at the original risky rate and at the risk - reduced  rate , i find the value of credit enhancement as the difference in the two  npv ' s .  please give your comments , especially if this makes no sense to you .  stinson\",0\n\"Subject: energy finance critiques  david ,  here are the reviews of the ut energy finance program that you requested :  from jennifer martinez ( mba class of 1999 , energy finance taken fall of  1998 ) :  the energy finance program 2 years ago was very good , especially considering  it was the first year of the program . there were a lot of guest speakers  from various energy companies who gave us a lot of practical knowledge about  the energy industry through case studies , lectures , etc . basically , we  learned all the same finance concepts and tools as in the regular finance  classes , but all the cases and examples were energy - related . the professors  were good for the most part but didn ' t have a great deal of practical  industry experience . if i had to guess the reason for decreased  participation in the program , i would probably say it is the professors .  ronn and titman are great but known as being very technical and  quantitative . some students prefer less technical professors and classes  that aren ' t limiting to the energy industry . also , the fact that the class  meets for 3 hours twice a week may not be so appealing . other than those  things , i can ' t imagine why there has been such a drop in enrollment . i  especially don ' t understand why every single person didn ' t drop for enron . i  wonder if it has something to do with international status . ? ? ?  from john massey ( mba class of 1999 , energy finance taken fall of 1998 ) :  bottom line -  ut business schools is great - investment fund - best activity available to  students  energy finance program - fairly weak -  it was a watered down version of the futures options class crossed with a  weak finance appendage -  the finance teacher was pathetic - both a poor teacher , ignorant about  industry specific analysis , devoid of industry experience , rude to outside  lectures ( from industry )  keith brown was the only educator that was any good and he only had a small  portion of the class time -  way to make better :  get teachers with practical industry experience -  make it a seminar class - focus on case studies , lectures - given by people  from industry -  promote the class within the business school - i felt like ut did a poor job  of internally ( to students ) promoting the class -  - - - - - - - - - - -  from ross mesquita ( mba class of 1999 , energy finance taken fall of 1998 ) :  to be honest , a great majority of the coursework was not energy specific .  when energy applications were presented , it seemed more like general finance  questions were reworded to include energy lingo . we had some very good  speakers , but for the most part , i did not feel like the 6 hours of class had  enough energy focus . i assumed that this would get better as the program  progressed .  one reason that may account for the decline in enrollment is that energy  finance is a very specific focus . i would have probably not enrolled in the  energy finance program had it been available in my first year . i did not  know enough about energy at that time and i had returned to b - school to  consider several career options - - i . e . , investment banking , corporate  finance , entrepreneurship , marketing , etc . as a new mba student , i would not  want to narrow my window of opportunities to only energy companies .  here is my perspective and probably something that is true of many mbas - -  my interest in enron brought me to the energy industry and not vice versa .  - - - - - - - - - -  from billy braddock ( mba class of 1999 , energy finance taken fall of 1998 ) :  i was a participant in the inaugural energy finance program in the fall of  1998 . the primary positives to the class revolved around outside  panels / instruction . for example , enron sent representatives on 2 separate  occasions to discuss particular topics ( vince kaminski and gary hickerson ) .  other notable speakers were jeff sandefer ( independent business consultant  and e & p professional ) , the beacon group , and encap investments . another good  speaker was a professor from ut ' s school of engineering . he brought a good  perspective as to the \"\" basics \"\" of the energy business .  the class was structured via a team - based instruction approach , with 3  professors team - teaching a 6 - hour credit course . none of the 3 professors  had any product knowledge of the energy business . of the 3 professors , 2  were research focussed / tenured with little credibility in \"\" teaching . \"\" one of  the professors primary focus of research was fixed income , while the other 2  were investments and corporate finance , respectively .  as is the case for ut ' s finance program in general , and energy finance in  particular , ut is in dire need of teaching professors ( as opposed to research  professors ) that have the ability to convey finance with practical examples  and at a level that can be more easily be understood by students without a  finance background . particular to the energy program , ut needs to have more  instruction from energy professionals ( such as the instructors used for  enron ' s internal learning programs ( ie . derivatives classes , etc . ) .  - - - - - - - - - - - - - - - - - - - - - - -  from bryan williams ( mba class of 1999 , energy finance taken fall of 1998 ) :  i participated in the first energy finance class offered in fall of 1998 , at  the university of texas .  the curriculum was understandably \u0001 & rough around the edges \u0001 8 as 1998 was the  first year the energy finance course was offered . however , the instruction  also suffered as none of the instructors had any energy background to speak  of ( the 6 - credit hour class was team taught by three tenured professors ) .  two of the three professors have co - authored textbooks , and the third  professor \u0001 , s claim to fame is fixed income . as a group , the three professors  are research - heavy ( as opposed to industry focused ) , and the team - teaching  format did not incent any one of the profs to be personably accountable for  the success of the class .  that said , the instructors did a good job attracting some top notch outside  speakers . among them : vince  kaminski & gary hickerson , both of enron . they also dedicated one class  period to a video conference call with the beacon group , an energy consulting  group that i believe was recently acquired by goldman .  jeff sandefer , an independent businessman , an entreprenuership instructor ,  and one of the foremost experts in the e  - there are some experienced , brand - name professors ( e . g . sheridan titman )  teaching in the program ;  cons :  - the program should give the students more exposures to energy companies  such as enron . specifically , it might need to help students link to the  interview oppurtunites from these energy companies such as enron ;  from george huan ( mba class of 2000 , energy finance taken fall of 1999 ) :  companies expect mba students to have both general management ( new ideas ) and  analytic ( quantative ) skills . energy industry is no exception .  energy finance program offers financial strategy and risk managements courses  which fit in the insudtry need . however , these two courses are far from  enough to help students understand the dynemic of industrial transformation  and excitements and opportunities in this industry . other management and  quantitive courses are needed to complete this program .  my suggestions :  1 ) seminars or lectures about energy industry and energy companies . before  students make their decisions , let them know : what ' s happening and what ' s  going to happen in this industry ; what the companies are doing now ; who  they are looking for .  2 ) management and / or analytical courses should be included . such as :  strategy , financial enginering and real option .  3 ) more industry connections . presentations and discussions .  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  from charlie weldon ( mba class of 2000 , energy finance taken in fall of 1999 )  my experience in the energy finance program overall was a positive  experience . the most rewarding part of the class was the guest speakers  brought in during dr . titman ' s portion of the class . this part of the course  is taught in the second half of the semester and consisted of ~ 10 case  classes all focusing on the energy industry . two of the cases were based on  enron , and overall the case selection in my opinion was very appropriate and  well thought out . value added by the professor was less than from the  speakers and cases .  the first eight weeks of the course covered futures and options . nearly all  of the examples and problems discussed pertained directly to the energy  industry and special emphasis was placed on increasing the student ' s  understanding of the supply and demand dynamics in the power market . the use  of options and futures for speculating and / or hedging was stressed on  numerous occasions and a decent attempt at explaining how to value a power  plant project .  i believe that the university energy finance faculty are trying to  continuously make improvements to the program . however , i do not believe  that they are moving fast enough or necessarily down the right path to  improvement . there is a strong need for more practical based training on  energy derivatives similar to the course taught by paradigm here at enron .  the focus of the university teachers is quite theoretical , due in large part  to their background . while the theoretical basis is crucial to understanding  the basics , the real value of such a program in my opinion is the effective  bridging of the theoretical with the practical all in one course .  until measures are taken to inject practicality from someone with extensive  industry experience , i believe the energy finance program will continue to  underdeliver on its objectives . additionally , i believe that the course  structure should be changed to eliminate the need of having 3 consecutive  hours of classroom instruction .\",0\n\"Subject: technical analysis  more fallout  - - - - - - - - - - - - - - - - - - - - - - forwarded by mike a roberts / hou / ect on 05 / 04 / 2001  03 : 03 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : lee ferrell / enron @ enronxgate on 05 / 04 / 2001 02 : 26 pm  to : mike a roberts / hou / ect @ ect  cc :  subject : technical analysis  mike ,  our department has been using your technical analysis to support commercial  decisions . you stated that these services would be discontinued . we opted  to use your technical analysis in lieu of outside services . please continue  to provide technical analysis data with regard to natural gas ( candlestick  and elliot wave ) .  lee ferrell  director , risk management and reporting  ets\",0\n\"Subject: approval for reviewer  krishnarao , pinnamaneni v has suggested reviewers and submitted them for your  approval . your may review / modify this list of reviewers by logging on to pep  at http : / / pep . corp . enron . com and going to supervisor services . please  remember , no feedback can be completed on krishnarao , pinnamaneni v until you  have approved the list .\",0\n\"Subject: re : mg integration support - daily update # 6  hi richard ,  lloyd fleming introduced me to the key personnel on the trading and risk side  at mg today ; i spent most of today discussing forward curves and option  volatilities with tim jones , russell plackett and jon barrett . i hope to be  able to get historical data from david thompson to facilitate forward curve  analysis for our var models . also discussed valuation issues ( e . g . option on  calendar spread that they need a model for ) . also was able to get a good  understanding of trading strategies and nuances of aluminum , copper and  nickel markets .  regards ,  anjam  x 35383  richard sage  04 / 07 / 2000 02 : 37  to : stop : mike jordan / lon / ect @ ect , andrew cornfield / lon / ect @ ect , naomi  connell / lon / ect @ ect , stephen wood / lon / ect @ ect , tim  poullain - patterson / lon / ect @ ect , andrea m kerch / lon / ect @ ect , janine  juggins / lon / ect @ ect , lloyd fleming / lon / ect @ ect , tim davies / lon / ect @ ect , david  hardy / lon / ect @ ect , barry sangster / lon / ect @ ect , robert campbell / lon / ect @ ect ,  alex holland / lon / ect @ ect , michael heap / lon / ect @ ect , phil redman / lon / ect @ ect ,  fiona grant / lon / ect @ ect , toby knight / lon / ect @ ect , melissa laing / lon / ect @ ect ,  jeanie slone / lon / ect @ ect , beth apollo / lon / ect @ ect , mark  pickering / lon / ect @ ect , suzanne lane / lon / ect @ ect , stephen evans / lon / ect @ ect ,  niamh o ' regan / lon / ect @ ect , anjam ahmad / lon / ect @ ect , fernley  dyson / lon / ect @ ect , eric gadd / lon / ect @ ect  cc :  subject : re : mg integration support - daily update # 6  deal entry  the need for 3 data - entry clerks becomes clearer when we understand that  between 200 and 2000 manual deal tickets are written each day which then have  to be keyed in .  romulus  the trading assets of rudolf wolff in london and new york were bought after  close of play on friday .  included with the metals trading is a proprietary fx desk , and a softs desk ,  trading coffee , cocoa , and sugar .  the softs people are expected to arrive in enron house at the end of july .  eol  two metals trades have been executed on eol .\",0\n\"Subject: re : for your approval  erica ,  yes , no problem .  vince  information risk management  12 / 01 / 2000 09 : 50 am  to : gary taylor / hou / ect @ ect , vince j kaminski / hou / ect @ ect , stinson  gibner / hou / ect @ ect  cc :  subject : for your approval  please let me know if he is approved .  thanks ,  erica garcia  - - - - - - - - - - - - - - - - - - - - - - forwarded by information risk management / hou / ect on  12 / 01 / 2000 09 : 39 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  security resource request system  directory line item pending access processing  directory name : o : \\ weather derivatives \\ , o : \\ research \\ common  service type : grant  expiration date :  comments :  security processing  processing status :  e - mail message :  comments / justification :  general information request : jhrc - 4 rkjjz  requested by : joseph hrgovcic / hou / ect phone : 33914  requested for : joseph hrgovcic / hou / ect employee type :  company : 0011 rc # : 100038  priority : high  comments / justification : i have a test windows 2000 machine running ( with  userid t _ weatherol , for which i need access to o : \\ research \\ common and  o : \\ weather derivatives \\  editing history ( only the last five ( 5 ) are shown )  edit # past authors edit dates  1 information risk management 11 / 30 / 2000 12 : 30 : 19 pm\",0\n\"Subject: latest draft  don ,  attached is my latest effort . it entailed fairly drastic \"\" restructuring  and reorganization \"\" of the earlier draft . my revision effort has been  directed at improving the focus of the paper . the new story is the following :  1 . enron was formed as a regulated gas pipeline company in the mid - eighties .  2 . economic and competitive conditions conspired to force a dramatic  reorganization of the company almost immediately . the result was the  creation of a new , unregulated energy trading operation . the strategy of  the new unit was to capitalize on business opportunities in the  deregulation of markets that was occuring at the time ( mid - eighties until  now ) .  3 . the business model adopted for the new unregulated business was that of  a \"\" gas bank \"\" . the analogy to a commercial bank posed a very difficult  problem to enron ' s management in that there was no source of liquidity to  the market from a central bank authority . as a consequence enron had to  develop its own very elaborate risk management procedures .  4 . another consequence of the new business model was that it required a  different set of employee skills and talents . specifically , it required  were bright , energetic and innovative individuals capable of identifying  entrepreneurial opportunities and starting new businesses . furthermore , a  new , flatter organizational structure entailing decentralized decision  making was required to facilitate quick response to changing market  conditions . to monitor and manage this new \"\" empowered \"\" labor force  required that the firm develop new personnel policies and procedures .  5 . three primary tools of personnel management were adopted : ( i ) measure  performance semi - annually , ( ii ) tie compensation closely to performance ,  and ( iii ) allow personnel free movement within enron to seek out the best  opportunities .  6 . other attributes of the enron model include consideration for asset  optionality , recognition of the value of networks in adding value to  trading platforms , and the use of mark - to - market accounting for business  transactions as a means of ensuring transparency and promoting prompt actions .  if my \"\" story line \"\" sounds better than the draft i have attached its because  its the last thing i ' ve written . at any rate i look forward to hearing  your comments and to getting this wrapped up .  thanks and i look forward to seeing you in february .  john  - enron _ paper _ 1 _ 26 _ 01 . doc  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: re : hello  sounds great - - i ' ll coordinate with shirley . jacob was very excited about his prior meeting with you and the group .  molly  - - - - - original message - - - - -  from : kaminski , vince  sent : tuesday , may 01 , 2001 4 : 42 pm  to : magee , molly  cc : kaminski , vince ; krishnarao , pinnamaneni ; watson , kimberly  subject : re : hello  molly ,  kim watson would like us to bring jacob for another interview .  we can do it later this week .  vince  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 05 / 01 / 2001 02 : 22 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : kimberly watson / enron @ enronxgate on 05 / 01 / 2001 09 : 17 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : hello  hi vince ,  if you are still interested in bringing back this gentleman back for another interview , i would very much like to meet with him . sean talked with him when you brought him in a few weeks ago and he thought it would be a good idea for me to meet with him so we can compare thoughts .  thanks , kim .  - - - - - original message - - - - -  from : kaminski , vince  sent : monday , april 16 , 2001 1 : 21 pm  to : watson , kimberly  cc : krishnarao , pinnamaneni ; kaminski , vince  subject : re : hello  kim ,  this is a letter from one of the job applicants who works for pros .  it seems that the system they develop for williams  is more a scheduling system .  would you like to ask him to come back for another interview ,  to get more information out of him ?  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 16 / 2001 01 : 18 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  >  \"\" jacob y . kang \"\" on 04 / 11 / 2001 11 : 18 : 44 pm  to : vince . j . kaminski @ enron . com  cc :  subject : re : hello  dear vince :  it was so nice meeting and talking with you too . i did  not take any pen back , i lost my pen too somewhere in  enron .  as i mentioned to you , after i got my ph . d in 1999 , i  have been working two years as lead scientist and  science manager in energy division at pros revenue  management inc . in houston .  i developed and implemented the mathematical models  for trading optimization system and firm  transportation optimization system .  the trading optimization system becomes the most  popular product in the industry this year . duke energy  just signed the contract to buy this product  yesterday . conoco and williams also signed the  contracts for it . according to pros sales department ,  the potential marketer to buy this product exceeds 15  companies in one or two years .  enron is the ideal place for me to continue my  research and system developing efforts to combine  revenue management with risk management . i am  confident that i can make significant contributions to  enron in this area .  i would like to thank you again for giving me this  opportunity to come to enron for this interview . i am  looking forward to having the opportunity to work in  enron .  sincerely yours  jacob  - - - vince . j . kaminski @ enron . com wrote :  > jacob ,  >  > it was nice meeting you . did take by any chance  > my pen ? if not , i apologize .  >  > vince  >  do you yahoo ! ?  get email at your own domain with yahoo ! mail .  http : / / personal . mail . yahoo . com /\",0\n\"Subject: faculty contact and schedule persentation  dear mr . kaminski ,  the following are the faculty details :  ms . deborah j . barrett  instructor & dir . , mba communications  phone 713 - 348 - 5394  barrett @ rice . edu  mr . wil uecker  associate dean for executive education  phone 713 - 348 - 5869  uecker @ rice . edu  mr . dennis wayne loughridge  adjunct professor - management  phone 713 - 348 - 4869  lounghrid @ rice . edu  i will also speak with the faculty and inform them about the details  concerning the presentation on may 7 at enron office ( time to be determine )  and the dinner following it .  sincerely ,  luigi calabrese  rice mba candidate  class of 2002\",0\n\"Subject: your riskmetrics site password  dear ,  thank you for registering .  your requested username is vincek and your password is longrun .  you may use this login to :  - use the data directory at http : / / www . riskmetrics . com / products / data / index . cgi  - access the creditmetrics datasets at  . html  - access the riskmetrics datasets at  tml  - read our technical documents at  - read our monitors at http : / / www . riskmetrics . com / research / journals / index . cgi  - read risk management : a practical guide at  please let us know if you have any questions or concerns ,  rmg web services  web @ riskmetrics . com\",0\n\"Subject: complexity science seminar confirmation  confirmation  date : april 18 th , 2001  time : 11 : 30 am - 1 : 30 pm  location : koch industries  20 e . greenway plaza  conference room 1  dress is business casual .  parking is free . there is parking available in the koch building or across  the street in a lot .  lunch will be provided and is scheduled to start at 11 : 15 am .  please feel free to pass along the word to anyone you think might like to  join us . information can be found on our website at http : / / www . nesanet . org /  or the can contact me at ( 713 ) 856 - 6525 with any questions .  thanks ,  lana moore\",0\n\"Subject: re : cplex floating license  samer ' s suggestion makes a lot of sense . we can start with something like one  floating dev . license + 2 opl licenses and buy more later based on actual  usage . on the pricing agreement , it probably makes sense to get a guarantee  on the discounts for additional licenses for one year ( or till dec . ) . i am  definitely interested and can provide the share of funding necessary from my  clients .  thanks ,  krishna .  from : samer takriti @ enron communications on 05 / 19 / 2000 11 : 14 am  to : ravi thuraisingham / enron communications @ enron communications  cc : chonawee supatgiat / corp / enron @ enron , pinnamaneni  krishnarao / hou / ect @ ect @ enron , samer _ takriti @ enron . net , stinson  gibner / hou / ect @ ect @ enron , tom halliburton / corp / enron @ enron , vince j  kaminski / hou / ect @ ect  subject : re : cplex floating license  chonawee and i just had a phone conversation with cplex . there are other  alternatives ( products ) that may help in saving time and cost . chonawee and i  feel that one floating develoment license , and one or two opl ( a package on  sale that provides modeling and optimization features ) licenses will do . in  addition , we need floating deployment licenses . for the development licenses ,  the charges should be split \"\" equally \"\" between the different groups that may  ask for optimization help ( although it is hard to predict who may ask for  future help ) . we are suggesting equally since these licenses are used to  develop the needed solution but are not ( in general ) used to run the  software . the deployment licenses can be charged on per - use basis for  different groups .  cplex is going to send us a new quote . we ' ll make the decision soon after  that .  - samer\",0\n\"Subject: re : information  dear mr kaminski :  thank you very much for your help .  sincerely ,  yann  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : tuesday , november 21 , 2000 10 : 05 am  to : ydhallui @ elora . math . uwaterloo . ca  cc : vince . j . kaminski @ enron . com  subject : re : information  yann ,  i have forwarded this request to a member of my group who  supports enron broadband services .  he will check into availability of data and confidentiality issues .  vince\",0\n\"Subject: re : telephone interview with the enron corp . research group  hello yong cho :  sorry it has taken me so long to get back with you .  thursday , may 4 is a good time for the telephone interview . would  3 : 30 pm ( houston time - 1 : 30 pm california time ) be ok with you ?  please let me know . they will call you at 408 - 541 - 3502 .  the position title is : sr . specialist .  thanks and have a great day !  shirley crenshaw  713 - 853 - 5290  yongcho 70 @ aol . com on 04 / 27 / 2000 02 : 59 : 19 pm  to : shirley . crenshaw @ enron . com  cc :  subject : re : telephone interview with the enron corp . research group  dear shirley crenshaw ,  hi . this is yong cho . i ' m very excited to have the interview offer from  enron . either 5 / 1 or 5 / 4 will do . if i should choose one , i prefer 5 / 4 .  i ' m in my office from 10 am - 6 pm ( pt ) . you can set a time at your convenience  and just let me know . my number here is 408 - 541 - 3502 . i would like to know  how long it will take , and also exact job title i ' m interviewing for . thank  you very much for your help .  sincerely ,  yong\",0\n\"Subject: re : copy room  kevin ,  you have full charge . thanks for volunteering .  liz  kevin g moore  04 / 06 / 2000 07 : 50 am  to : barbara lewis / hou / ect @ ect , mike a roberts / hou / ect @ ect , frances  ortiz / hou / ect @ ect , liz m taylor / hou / ect @ ect , vince j kaminski / hou / ect @ ect ,  shirley crenshaw / hou / ect @ ect  cc :  subject : copy room  to whom it may concern :  i would like to know who will be responsible for keeping up with  the copy room near my area . eb 32 copy rooml  i am aware that this is something that must be decided by  whoever is in charge however , i would like to participate in keeping this  room operational .  please note that i use this room more often than anyone else  and i pay more attention to what is needed there on a daily basis .  i am not asking for full charge over the room but i would like to assist  whereby , it will always be operational .  thanks  kevin moore\",0\n\"Subject: re :  i would like to help , but i am in kansas hunting pheasant during the last  week in december .  vince j kaminski  18 / 12 / 2000 15 : 46  to : debbie r brackett / hou / ect @ ect , william s bradford / hou / ect @ ect , ted  murphy / hou / ect @ ect , bjorn hagelmann / hou / ect @ ect , david port / market  risk / corp / enron @ enron , mark tawney / hou / ect @ ect , joseph hrgovcic / hou / ect @ ect ,  greg whalley / hou / ect @ ect , louise kitchen / hou / ect @ ect  cc : molly magee / hou / ect @ ect  subject :  i am asking molly magee , our hr rep , to set up an interview for iris mack  with , depending on your availability between christmas and new year .  iris was interviewed by a number of my associates for a position  with the research group and my objective is to introduce her to a number  of enron units that she may eventually support . i shall appreciate your  comments .  vince kaminski\",0\n\"Subject: organizational announcement - introducing enron industrial markets  we are pleased to announce the creation of a new business unit \u0001 ) enron  industrial markets \u0001 ) within our wholesale energy business . enron industrial  markets will be responsible for leading all worldwide business activities in  the paper , pulp , lumber , and steel markets , including trading , origination  and energy outsourcing activities .  enron industrial markets is being created to accelerate the growth of enron  north america \u0001 , s existing paper , pulp , & lumber business and to establish and  grow a new business in the steel market . the formation of enron industrial  markets will allow the enron north america and enron europe management to  continue to focus its efforts on the aggressive expansion of our core gas and  electricity business . as a standalone business unit , enron industrial  markets can accelerate the growth of the paper , pulp & lumber and steel  businesses into major contributor \u0001 , s to enron \u0001 , s overall growth and , working  closely with enron networks , position enron as the leader in the  transformation of these industries into new economy markets .  enron industrial markets will be headed by jeff mcmahon , president and chief  executive officer , and ray bowen , chief operating officer . they will report  to mark frevert who will be chairman of enron industrial markets . mark ,  jeff , and ray will comprise the office of the chairman for enron industrial  markets .  included in this new business unit and reporting to the office of the  chairman will be the following individuals and their respective groups :  pulp , paper , & lumber origination bryan burnett  pulp , paper & lumber trading bob crane  steel trading greg hermans  transaction development rodney malcolm  enron industrial markets has established an operating group to manage the  operations of physical assets . this unit will temporarily report to the  enron industrial markets office of the chairman .  coincident with the establishment of enron industrial markets , all energy  outsourcing activities associated with industries other than paper , pulp ,  lumber and steel will be the responsibility of enron energy services .  with jeff mcmahon \u0001 , s departure from enron networks , louise kitchen will assume  the role of president and chief operating officer .  please join us in congratulating these individuals for their new roles .\",0\n\"Subject: p + option valuation model  mark ,  after recently reviewing the booking of the p + options , it is my  understanding that these options are being valued using a standard spread  option model where the price evolution of the two legs of the spread are  assumed to be correlated geometric brownian motion processes ( i . e . the price  process assumptions are consistent with standard black - 76 model assumptions  extended to two commodities ) .  the payoff for a call option is :  payoff = max ( 0 , a \u0001 ) b \u0001 ) k ) .  where :  a = nxwti ( delivery price for nymex )  b = posting price = ( wti swap ) \u0001 ) ( posting basis )  k = posting bonus ( fixed ) .  the only complication of this option as compared to most other spread options  is that leg \"\" b \"\" of the spread is a combination of three prices , the two  futures prices which make up the wti swap for the given month , and the  average posting basis during the delivery month . combination of these  prices is easily addressed by simply setting the volatility of leg \"\" b \"\" and  the correlation to correctly account for the volatility of this basket of  prices and its correlation with the nxwti price . i believe that this  approach is more straightforward than the alternative , which would be to use  a three or four - commodity model with its associated volatility and  correlation matrices .  in summary , i believe that this is an appropriate model for valuation of  these types of options , assuming that the inputs are set correctly .  regards ,  stinson gibner  v . p . research\",0\n\"Subject: re : willow and pathstar evaluations  i will check with michael and see if it ' s feasible to do a quick evaluation of his software here in houston .  - - stinson  vince j kaminski  04 / 24 / 2001 05 : 22 pm  to : stinson gibner / hou / ect @ ect  cc :  subject : willow and pathstar evaluations  stinson ,  he keeps bugging us about it .  any thoughts what we should do ?  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 24 / 2001 05 : 22 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" mike curran \"\" on 04 / 24 / 2001 10 : 03 : 24 am  please respond to \"\" mike curran \"\"  to :  cc :  subject : willow and pathstar evaluations  hi vince -  hope all is well with you .  sharad hasn ' t had time to evaluate our willow tree or monte carlo software  since the middle of last year . is there somebody else that could do it ?  please let me know who i should send the evaluation to .  best regards ,  michael curran  ceo  quantin ' leap limited  piercy house  7 copthall avenue  london ec 2 r 7 nj  tel : + 44 ( 0 ) 20 7562 3450  fax : + 44 ( 0 ) 20 7562 3411  mailto : mcurran @ quantinleap . com  http : / / www . quantinleap . com\",0\n\"Subject: vince ,  the book \"\" power economics \"\" can be downloaded from  http : / / www . stoft . com /  best ,  alex\",0\n\"Subject: updated electricity homepage ( great links - university of queensl  and - australia )  hi vince ,  have a look at my homepage which i have been updating ( see energy markets ) :  regards glen dixon  part - time phd student - department of mathematics ( university of  queensland )  p . s i am hopefully attending the australian risk conference where you are a  speaker in july 2000 ( sydney ) . hope to hear you speak .  glen w . dixon  project officer - procurement profiling  queensland purchasing  department of public works  \"\" important  this electronic message and any attachments are supplied in  good faith and are believed to be free of year 2000 or other date related  problems ( i . e . year 2000 compliance ) . the department of public works  forwards this message and attachments to you on the basis that you use them  at your own risk . the department accepts no responsibility for damage or  loss ( arising from negligence or otherwise ) which may occur through the use  or transmission of this message and attachments and recommends that you  conduct your own independent tests to determine year 2000 compliance before  use .  the contents of this electronic message and any attachments  are intended only for the addressee and may contain privileged or  confidential information . they may only be used for the purposes for which  they were supplied . if you are not the addressee , you are notified that any  transmission , distribution , downloading , printing or photocopying of the  contents of this message or attachments is strictly prohibited . the  privilege or confidentiality attached to this message and attachments is not  waived , lost or destroyed by reason of a mistaken delivery to you . if you  receive this message in error please notify the sender by return e - mail or  telephone .  thank you . \"\"\",0\n\"Subject: re : visit to houston and vince kaminski ' s research group  shirley ,  i just booked my flights and the hotel . i ' ll be arriving houston on  the evening of 7 / 27 and leaving on 7 / 29 . i ' ll stay at the doubletree  houston allen center for two nights . looking forward to meeting you at  enron .  regards ,  shijie  shi - jie deng  assistant professor  school of isye  georgia institute of technology  office phone : ( 404 ) 894 - 6519  e - mail : deng @ isye . gatech . edu  home page : http : / / www . isye . gatech . edu / ~ deng\",0\n\"Subject: reschedule - meeting with riskcare to discuss joint ventures  ( michael curran , manuel rensink & richard haddow )  vince j kaminski / hou / ect wants to reschedule a meeting .  on 02 / 23 / 2000 03 : 00 : 00 am cst  for 2 hours  with : anjam ahmad / lon / ect ( chairperson )  vince j kaminski / hou / ect ( invited )  shirley crenshaw / hou / ect ( invited )  dale surbey / lon / ect ( invited )  stinson gibner / hou / ect ( invited )  meeting with riskcare to discuss joint ventures ( michael curran , manuel  rensink & richard haddow )\",0\n\"Subject: re : steve leppard  dale ,  my recommendation is to make steve the head of the research unit in london .  we were talking originally about september but i think we should accelerate  this process .  of course , anjam will be very unhappy about it , but we cannot manage around  him  any longer .  i think that the promotion should be combined with a salary increase .  i would like to offer him a significant increase that  goes with expanded responsibilities and much higher visibility .  a salary increase will also bring him closer to the market .  we see the market for technical people going through the roof in  practically every location  where we operate .  a contract is not a good solution in my view . it creates a sense of false  security for  both an employee and the company .  i shall send a message to john sherriff with my recommendation . i shall cc  you .  i would appreciate if you could bring it up with john as well .  vince  dale surbey  07 / 11 / 2000 10 : 23 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : steve leppard  hi vince ,  hr is working on a mid - year salary review for london people that have a  noticeable gap between their compensation at enron and what we would have to  pay in the market for a replacement . they highlighted steve as someone with  a potential gap - particularly in light of what we ' re seeing in our quant  recruiting effort for credit trading and research .  i ' d like your opinion on the best way to make sure we keep steve happy and  keep him at enron . there are several things i see we can do :  1 ) give him a mid - year pay increase to move him closer to market . i ' m not  sure this is the best way to go , especially if we only offer him a token  salary increase .  2 ) offer him more responsibility : what are your thoughts on timing for  making steve the official head of the london research team ? with my move to  ebs , should we accelerate this ? i think this is good way to keep him happy  and motivated , and then follow up with a more meaningful salary review at  year - end ( as part of the regular process ) that takes into account his greater  responsibility .  3 ) we have some people that we ' re trying to get under long - term ( 3 - yr )  contract with a 12 - month notice clause . obviously anyone signing one of  these will want significant up - front compensation for being handcuffed .  we ' ve not had a lot of success with these here in london , and i would prefer  to keep steve happy so he wants to stay with enron rather than contractually  binding him to the job .  i ' d value your thoughts on this .  thanks ,  dale\",0\n\"Subject: re : bryan seyfried visiting houston  i have scheduled the meeting for friday , february 11 at 9 : 00 am .  have a great day !  shirley  vince j kaminski  01 / 31 / 2000 08 : 52 am  to : shirley crenshaw / hou / ect @ ect , vince j kaminski / hou / ect @ ect , danya  moody / lon / ect @ ect  cc :  subject : bryan seyfried visiting houston  shirley ,  can you please set up the meeting .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 31 / 2000  08 : 51 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  danya moody  01 / 31 / 2000 08 : 32 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : bryan seyfried visiting houston  hi vince  bryan seyfried will be in houston on the 9 , 10 & 11 th february and was hoping  to arrange an hour with you on one of these days . he is available any time  except the morning of 10 th february .  could you please let me know if this is possible and if so what time suits  you .  thanks  danya\",0\n\"Subject: re : potential prospect  hey vince ,  i e - mailed george to send you a resume .  tom  professor tom arnold  e . j . ourso college of business administration  department of finance  2155 ceba  louisiana state university  baton rouge , la 70803  o : 225 - 388 - 6369  f : 225 - 388 - 6366\",0\n\"Subject: enron global messaging announcement  over the last few months , we have been discussing our standard e - mail  platform with you , our customer . your feedback from the various  demonstrations , surveys and technology showcases validated that e - mail is a  vital part of your ability to communicate effectively . however , your  feedback also indicated that you need your e - mail client to have additional  functionality and increased integration with other applications you use .  therefore , to meet the demands of our fast - paced business , enron net works is  standardizing our e - mail platform by deploying microsoft outlook 2000 to all  the business units we currently support for messaging . ( project plans for  ebs , ees and azurix are still being finalized and will be communicated  separately . )  this conversion from lotus notes to outlook 2000 will improve your ability to  communicate and provide a more consistent look and feel across the standard  office applications you use on a daily basis . we are excited about this  opportunity to provide a more robust , full function solution for your  messaging needs . to provide you with additional details about the  conversion from lotus notes to outlook 2000 , we are including a list of  frequently asked questions about this project .  how does this project affect me ?  your current lotus notes e - mail system will be converted to microsoft outlook  2000 .  what is microsoft outlook 2000 ?  outlook 2000 is the messaging client you will use to read your e - mail , update  your calendar and personal address book , record to do lists , etc .  why are we switching to outlook 2000 ?  outlook 2000 integrates more effectively with our new operating system ,  windows 2000 , and the microsoft products that enron currently uses . with  outlook 2000 , we can provide you with a more robust mail platform including  the following new features :  instant messaging \u0001 ) ability to send person - to - person , immediate , pop - up  messages .  improved palm / ce synchronization \u0001 ) allows for simpler and quicker updates of  your hand held device from multiple places .  conferencing server \u0001 ) ability to conduct video conferences from your desktop .  web access \u0001 ) ability to retrieve your enron e - mail via a browser .  fax integration \u0001 ) ability to send / receive faxes from your e - mail inbox .  voice mail integration \u0001 ) ability to have your voice mail delivered to your  e - mail inbox for retrieval .  when will the outlook 2000 rollout start and when will i get it ?  the pilot will begin in late october with the production rollout beginning in  late november . we are finalizing our business unit rollout schedule .  additional information will be provided to all business units as it becomes  available . project updates will be posted on the project section of the it  central web site at http : / / itcentral . enron . com . additionally , you may send  questions to outlook . 2000 @ enron . com , and a member of the project team will be  happy to address these individually .\",0\n\"Subject: year end 2000 performance feedback  note : you will receive this message each time you are selected as a reviewer .  you have been selected to participate in the year end 2000 performance  management process by providing meaningful feedback on specific employee ( s ) .  your feedback plays an important role in the process , and your participation  is critical to the success of enron ' s performance management goals .  to complete requests for feedback , access pep at http : / / pep . corp . enron . com  and select perform review under performance review services . you may begin  providing feedback immediately and are requested to have all feedback forms  completed by friday , november 17 , 2000 .  if you have any questions regarding pep or your responsibility in the  process , please contact the pep help desk at :  houston : 1 . 713 . 853 . 4777 , option 4  london : 44 . 207 . 783 . 4040 , option 4  email : perfmgmt @ enron . com  thank you for your participation in this important process .  the following is a cumulative list of employee feedback requests with a  status of \"\" open . \"\" once you have submitted or declined an employee ' s request  for feedback , their name will no longer appear on this list .  review group : enron  feedback due date : nov 17 , 2000  employee name supervisor name date selected  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  andrews , naveen c rudi c zipter oct 31 , 2000  baxter , ashley david davies nov 02 , 2000  campos , hector o peyton s gibner nov 06 , 2000  carson , richard l richard b buy oct 30 , 2000  crenshaw , shirley j wincenty j kaminski oct 26 , 2000  gandy , kristin h celeste c roberts nov 01 , 2000  gorny , vladimir theodore r murphy ii nov 02 , 2000  hewitt , kirstee l steven leppard nov 06 , 2000  hickerson , gary j jeffrey a shankman nov 15 , 2000  kindall , kevin vasant shanbhogue oct 30 , 2000  leppard , steven dale surbey nov 06 , 2000  patrick , christie a mark a palmer nov 09 , 2000  pham , bich anh t sarah brown nov 06 , 2000  raymond , maureen j wincenty j kaminski nov 02 , 2000  rosen , michael b christie a patrick nov 06 , 2000  sun , li kevin kindall nov 09 , 2000  supatgiat , chonawee peyton s gibner oct 27 , 2000  tamarchenko , tanya v vasant shanbhogue oct 26 , 2000  tawney , mark r jeffrey a shankman oct 26 , 2000  thuraisingham , ravi paul h racicot jr nov 12 , 2000  williams , matthew steven leppard nov 08 , 2000  yaman , sevil vasant shanbhogue oct 27 , 2000  yuan , ding richard l carson oct 31 , 2000\",0\n\"Subject: re : maths course  vicky ,  my affiliation is enron corp . my assistant , shirley crenshaw , will send you  an updated version of my bio .  here are the bullet points :  practical techniques to price exotic energy options  definition of an exotic option  - pay - off profile  - price process assumptions  - different sources of risk  different types of exotic options used in the energy industry  - asian options  - spread options  - basket options  - swing options  evaluating methodologies for pricing exotics  ? ? ? - assessing the pros and cons of different techniques  - approximations of closed - form formulas  - monte carlo techniques  - trees  - numerical solutions of pdes  ? ? ? - applying multi - factor models to price exotic energy derivatives  ? ? ? - building trees for pricing and hedging exotics  practical examples  ?  analysing approaches to weather derivatives valuation  ?  definition of a weather derivative  why does energy industry need weather derivatives ?  - hedging volume / price risk as opposed to hedging exclusively price risk  - the energy industry ' s exposure to weather : numerical estimates  different types of weather derivatives used in the energy industry  ? ? ? - heating and cooling degree day swaps and options  ? ? ? - precipitation contracts  - hurricane contracts  - financial options contingent on weather  - digital options  valuation controversy : actuarial valuation vs . valuation based on the  black - scholes paradigm  use of monte carlo techniques in valuation of weather derivatives  valuing long term transactions  practical example  please , feel free to edit my bullet points to improve my english .  it was a pleasure working with you and i hope our roads will cross at some  point .  the best of luck to you .  vince  \"\" vicky windsor \"\" on 04 / 13 / 2000 01 : 00 : 18 pm  please respond to \"\" vicky windsor \"\"  to :  cc :  subject : maths course  dear vince ,  ?  i just wondered whether you have had chance to look at your bullet points  and bio for the maths course . if so please could could email them to me as  soon as possible . could you also let me know whether your company  affiliation should now be enron north america .  ?  thanks vince and best regards ,  ?  vicky\",0\n\"Subject: telerate service  hello everyone :  please let me know if you have a subscription to \"\" telerate \"\" ? we are  being billed for this service and i do not know who is using it .  thanks !  shirley\",0\n\"Subject: re : simulated trading  jana ,  i shall be glad to join you .  vince  jlpnymex @ aol . com on 09 / 12 / 2000 01 : 51 : 06 pm  to : rsbaker @ duke - energy . com , blackj @ wellsfargo . com ,  martha @ plunkettresearch . com , dgriffin 240 @ earthlink . net , genieand @ hotmail . com ,  robyn _ howard @ aimfunds . com , agerhardt @ pkftexas . com , colgin @ campbellriggs . com ,  crowsley @ flash . net , carol _ fitzpatrick @ agc . com ,  gburrows @ capstonefinancial . com , jhall @ harvardreit . com , jlpnymex @ aol . com ,  cefi @ dynegy . com , clairta @ yahoo . com , mara _ smith @ aimfunds . com ,  ddenbina @ mpr . com , rdyerlaw @ houston . rr . com , edwards @ nwol . net ,  sgoldfield @ tmh . tmc . edu , theath @ coral - energy . com , vkamins @ enron . com ,  tknight @ houstonenergy . org , monica _ kolb @ aimfunds . com , lanejb @ wellsfargo . com ,  info @ . com , elizabethmorrell @ excite . com ,  kimmorrell @ excite . com , adrian . a . nunez @ usa . conoco . com ,  jack _ plunkett @ plunkettresearch . com , daricha @ ppco . com ,  mroberts @ coral - energy . com , jstanton @ calpine . com ,  jstephenson @ navigantconsulting . com , dstowers @ watersinfo . com ,  chtremel @ epri . com , reneeb @ swiftenergy . com , njfitzgerald @ coral - energy . com ,  cthomso @ ppco . com , mwolper @ alum . mit . edu , carol _ mccutcheon @ oxy . com ,  leesa . foster @ ipaper . com , woodybc @ bp . com , dzerba @ teldatasolutions . com  cc :  subject : simulated trading  dear friends and colleagues :  nymex is hosting a cocktail reception and a simulated open outcry trading  \"\" class \"\" :  thursday , sept . 28 , 2000  5 : 00 - 7 : 00 pm  houston center club  ( downtown - across from the 4 seasons )  this is being held in conjuction with the crude oil association . they charge  $ 25 at the door .  however , as a host i can have as many of my colleagues there for free !  but , i must know if you are coming by september 24 , 2000 c . o . b . , to give a  count to the houston center club .  i hope you can all attend . please feel free to invite someone to come with  you . the simulated trading will be held three times during the evening , and  is very interesting .  i look forward to hearing from you , and seeing you on 9 / 28 !  jana  ps - call me if you have any questions\",0\n\"Subject: your king ' s college london conference  hi lane  i * will * be free to speak at your conference on 12 th july , so put my name  down . i will give a talk on my \"\" diagrammatic approach to real options \"\" .  will you have a laptop projector available ? do you require any advance  submission of material ?  cheers ,  steve\",0\n\"Subject: dg energy software  vince ,  here is my edited version of the software license agreement . can you read  it once before i forward it for internal approval ? i specified that the  $ 100 , 000 covers a single user perpetural license , access to source after  one year , and covers maintenance and support for one year .  any suggestions ?  - - stinson\",0\n\"Subject: summer internship  hi ,  i ' d like to thank you for the opportunity of letting me work here this  summer . i ' ve learned a lot in the past three months and hopefully have been  of some help around here . i was very impressed with this department , and  enron itself , and i really appreciate the chance for me to have worked in  such an environment .  so anyway , thank you and i wish you and the department well ,  brad\",0\n\"Subject: fea announces the release of @ energy 2 . 0  zimin ,  please , take a look at it .  i think we should download the update .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 31 / 2001  11 : 21 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" michelle mendoza \"\" on 01 / 26 / 2001 02 : 33 : 14 pm  to :  cc :  subject : fea announces the release of @ energy 2 . 0  january 26 , 2001  vince kaminski  enron north america corp .  1400 smith street  30 th floor , rm . 3036 b  houston , tx 77251 - 1188  1 713 - 853 - 3848  dear vince kaminski ,  this is to inform you of the release of @ energy 2 . 0 . ftp download  instructions are available immediately . the download instructions are  included at the end of this email . your cd ' s and manuals will be shipped to  you within 2 weeks . please see below for more information regarding this new  release .  please confirm that you are the correct recipient for this shipment and your  address above is correct by clicking reply and send . if any changes need to  be made , please make the changes above and reply .  * * warning : please note that if you did not received a license key for  @ energy after june 2000 , you will need to contact support @ fea . com or call  510 . 548 . 6200 to obtain a new license key to enable the new version . * *  * * swing users : @ energy / swing now replaces the \"\" swing \"\" product . see the  @ energy user manual for a discussion of the changes . contact fea for the  necessary license keys . you will be able to run both the new and old swing  simultaneously .  heres an overview of the new and changed features since version 1 . 6 :  @ energy ( forward curve )  jump parameters are now calibrated for use in other @ energy functions .  inputs and outputs to powercalib and comcalib have changed . see the  corresponding function syntax in the user guide for additional information .  35 - 40 % speed improvement . the module is now out of beta .  @ energy ( basics )  different interpolation schemes on forward prices are now supported . if you  use indexswap , exoticswap , or optindexswap with floating price linked to a  series of futures dates , such futures dates need not be close to dates  specified in the forward curve input . a new utility function , pathutil ,  allows you to simulate and visualize price paths consistent with the models  supported by @ energy . 25 - 30 % speed improvement .  @ energy ( advanced )  different interpolation schemes on forward prices are now supported . if you  use optdiffswap or diffswap with floating price linked to a series of  futures dates , such futures dates need not be close to dates specified in  the forward curve input . calspreadopt now allows for the specification of  two different mean reversion rates . 30 - 35 % speed improvement .  @ energy ( swing )  swingopt and stripswingopt now allow for valuation of swing straddle  contracts with overall load constraints . 65 - 70 % speed improvement . the  module is now out of beta .  @ energy ( weather )  30 - 35 % speed improvement .  if you have any questions please feel free to contact us . we appreciate this  opportunity to be of continuing service to enron north america corp . .  regards ,  michelle mendoza  support @ fea . com  + 1 - 510 - 548 - 6200  financial engineering associates , inc . ( fea )  * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  to download @ energy 2 . 0 via ftp , follow the following instructions :  note : using explorer leads to unpredictable results , so we suggest using  netscape or a dos shell .  using netscape :  in the location box type : ftp : / / energy @ ftp . fea . com  password : 2 rbzxgv 5  energy - 2 . 0 - win 32 . exe is for windows 95 / 98 / 2000 / nt . download and run on  a local drive .  using a dos shell :  at a dos prompt type : ftp ftp . fea . com  user : energy  password : 2 rbzxgv 5  type \"\" binary \"\" and hit ' return ' .  type \"\" ls \"\" for a list of available files .  type \"\" get \"\" energy - 2 . 0 - win 32 . exe and and wait for the ftp > prompt .  type \"\" quit \"\" .  the file will be downloaded into the directory at which you entered the ftp  site .  double click on the exe and follow the instructions on the screen .\",0\n\"Subject: sap expense report form  with the implementation of sap , the employee expense report form has been  modified to reflect the new coding system . the procedures for its use are  unchanged , but there are some cosmetic differences . one item to note : the  form no longer requires entry of your social security number ; instead use  your new personnel number assigned through human resources ( see  http : / / hrweb . enron . com ) . for electronically submitted expense reports , enter  the same number on the receipt envelope .  the form is now available at the sap website . to access the form :  from the enron home page , go to the sap intranet site http : / / sap . enron . com  choose one of the following paths :  click on quick reference tools on the left menu  click drop - down arrow for accounts payable forms  click sap expense report form  click on forms and procedures library on the left menu  click drop - down arrow for accounts payable forms  click sap expense report form  wait for it to load  click enable macros ( or yes , allow macros )  after you enter the data , save as excel workbook ( . xls file extension ) with a  new filename . do not save as excel template ( . xlt extension ) .  you may print the spreadsheet for submission to accounts payable , or attach  it to notes for electronic submission . instructions are available at the  website , on the same drop down box as the form .  if you have any questions , contact the center of expertise ( coe ) at 713  345 - 7427 .\",0\n\"Subject: re : conference may 31 on energy derivatives in toronto  phelim ,  i shall be glad to join you for dinner on sunday .  i shall be also available for the panel discussion .  i would like to thank you one more time for the invitation  to speak at the conference .  vince  phelim boyle on 05 / 12 / 2000 03 : 47 : 59 pm  to : vince . j . kaminski @ enron . com , amy aldous ,  pconcessi @ deloitte . com , ross raymond - cmmrcl ops  cc :  subject : conference may 31 on energy derivatives in toronto  vince  thanks again for agreeing to speak at our conference .  it is attracting considerable interest . .  is it possible for you to send us copies of your slides by may 18 to meet our  deadline for  preparing the material . ? if you have ? a related paper available that covers  some of the same material that would do instead but  naturally we would prefer the slides .  i would like to mention again the ? ? the pre - conference dinner at  7 pm on sunday may 30 for the speakers  we hope very much you can be present  i was also hoping you would be available for the last ? session of the day to  be panel member  the provisional title ? is  managing risk in illiquid markets  the chair is pat concessi of deloitte and touche  the panel last from 3 . 30 until 4 . 30 and we would like panel members should  speaker for  a few minutes and take questions from the floor .  in the meantime if you have any questions please let amy or myself know  sincerely  phelim p boyle  ?  - -  phelim p boyle  director  centre for advanced studies in finance ,  university of waterloo ,  waterloo , ontario  canada n 2 l 3 gl  tel ? 519 885 1211 ( 6513 )  fax 519 888 7562  ?\",0\n\"Subject: esource presents esearch  esource launches esearch site bringing research to your desktop  esource , enron ' s premier research group , launched their new product , esearch ,  on december 8 , 2000 .  esource ' s team of specialized researchers have created a web site to bring  information and research to every employee ' s desktop . the esearch web site  offers many links to information resources , access to research databases ,  specialized searches , sites to purchase books , articles , and reports , and  training . employees can use the web site to conduct their own research or as  a vehicle to submit research requests . esource ' s researchers and industry  specialists are available to all enron business units to provide timely and  cost efficient research , to work with individuals or groups to fulfill one  time research requests , or to design ongoing , customized monitoring projects  or news updates .  the preferred browser is internet explorer  join us for a demonstration and training session on friday , december 15 th at  1 : 00 - 1 : 30 and 2 : 00 - 2 : 30 in room eb 5 c 2 .  http : / / esource . enron . com  discover a wealth of information at your desktop\",0\n\"Subject: summer internship position  celeste ,  i would like to ask you for a favor . we would like to have sevil as an intern  in our group  this summer . she prepares a ph . d . dissertation on transmission : a critical  issue to the power  markets everywhere .  i have also a few other students i would like to take in as summer interns . i  shall send you  the resumes in separate messages .  vince kaminski  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 11 / 2000  12 : 51 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  sevil yaman on 02 / 10 / 2000 10 : 22 : 28 pm  to : vkamins @ enron . com  cc :  subject : summer internship position  hi dr . kaminski ,  as i told you last monday in dr . kao ' s class i am  looking for a summer internship position in your group  in which i can use my economics background together  with my quantitative skills and knowledge in  electricity markets . currently , i am a third year  ph . d . student at the economics department of the  university of houston . at the end of this semester  i ' ll be completing my coursework and starting to write  my dissertation which analyzes the access pricing  issue in network industries , especially in electricity  transmission .  i would like to give you a few examples from my  coursework . in addition to basic statistics i - ii and  econometrics i - ii , i have taken \"\" macroeconomic  modeling and forecasting \"\" ( time series ) class in which  i learned rats . in \"\" applied econometrics \"\" class , it  was given a great deal of attention to the case method  learning approach that involved extensive computer  analysis . we were taught sas . as a term paper i worked  on electricity demand forecasting . this semester i am  taking \"\" special topics in applied econometrics \"\" course  in which i am being taught qualitative dependent  models , mle , panel data techniques , and so on , and as  software stata . moreover , this semester i am also  taking \"\" options theory and its applications \"\" class and  auditing dr . kao ' s class . i definitely agree with you  in what you mentioned in your lecture last monday  about the understanding of the options theory as a  necessity in the energy sector .  besides , i spent my last summer in the oil and gas  unit of the world bank as a research assistant . this  work experience in which i had great exposure to the  energy market issues and my own research area , which  is regulation of transmission pricing ( congestion  pricing ) , made me believe that the ongoing  restructuring of the electricity sector , especially  the transmission network issue , could be well  understood by working in the industry .  dr . kaminski , attached you can find my resume . i would  be glad if you could find a chance to review it and  get back to me soon .  many thanks ,  = = = = =  sevil yaman  department of economics  university of houston  houston , tx 77204 - 5882  ( 713 ) 743 - 3814 / 3817  do you yahoo ! ?  talk to your friends online with yahoo ! messenger .  http : / / im . yahoo . com  - resume - sevil . doc\",0\n\"Subject: ken ,  attached is a correction to pages 10 , 11 , and 12 that were presented by the  iso staff at a recent qse training session . i have attached pages 10 , 11 ,  and 12 for ease of reference .  this is the example that i told you about at out at the last csc meeting .  best regards ,  lance  - enron correction for congestion management example . pdf  - pagel 2 . pdf  - pagel 1 . pdf  - pagel 0 . pdf\",0\n\"Subject: alp presentation  on behalf of enron corp . i would like to invite you to an alp project  presentation by a group of students  of jesse h . jones graduate school of management , rice university .  the students will present the results of a research project regarding  electronic trading  platforms in the energy industry .  the presentation will be held on may 7 , at 4 : 00 p . m . at enron , 1400 smith .  we would also like to invite you to dinner , following the presentation .  vince kaminski  vincent kaminski  managing director - research  enron corp .  1400 smith street  room ebl 962  houston , tx 77002 - 7361  phone : ( 713 ) 853 3848  ( 713 ) 410 5396 ( cell )  fax : ( 713 ) 646 2503  e - mail : vkamins @ enron . com\",0\n\"Subject: re : ebs var transaction policy  that would be great .  b .  vince j kaminski @ ect  06 / 29 / 00 10 : 27 am  to : barry pearce / enron communications @ enron communications  cc : stinson gibner / hou / ect @ ect , tanya tamarchenko / hou / ect @ ect , grant  masson / hou / ect @ ect , vince j kaminski / hou / ect @ ect  subject : ebs var transaction policy  barry ,  stinson forwarded your message to me . i am meeting ted murphy today and i  shall bring it up with him .  we have unit at research ( tanya tamarchenko , reporting to grant mason ) who is  responsible for  v @ r support .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 06 / 29 / 2000  10 : 28 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  stinson gibner  06 / 29 / 2000 09 : 55 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : ebs var transaction policy  fyi  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 06 / 29 / 2000  09 : 54 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  barry pearce @ enron communications  06 / 29 / 2000 09 : 09 am  to : stinson gibner / hou / ect @ ect , dale surbey / lon / ect @ ect , ted  murphy / hou / ect @ ect  cc : lou casari / enron communications @ enron communications , john echols / enron  communications @ enron communications , jim fallon / enron communications @ enron  communications  subject : ebs var transaction policy  hey you guys ,  we are trying to implement a ' var transaction ' policy - and would like your  opinion .  this is going to be tough - because i ' m not sure we have implemented a  similiar policy across any of our other ' books ' - that is - we looking to  bring in all the accrual / operational assets as well as the mtm stuff  ( lambdas ) . to have a real - live ' configuration ' of the system .  if assets / routes / servers etc . . . are added - what is the impact on the ' value '  of the system and what it ' s worth .  john has attached a draft below - for your review and thoughts .  i can see how this works in a trading environment - when you actually know  the var of your whole trading portfolio . however - i ' ve not seen this done  with a mixture of mtm & accrual assets . add the spice of a ' operational  system ' valuation - and this will be tough to quantify and model .  step 1 - configure system and value it  step 2 - calculate a var on this . we will need to do some work here !  step 3 - calculate the incremental var of new deals / amendements / reconfigs etc  - tough . . . .  see what you think ?  b .  john echols  06 / 28 / 00 05 : 41 pm  to : jim fallon / enron communications @ enron communications , barry pearce / enron  communications @ enron communications , lou casari / enron communications @ enron  communications  cc :  subject : policies  here is a first rough draft of a \"\" value @ risk \"\" transaction policy .  i would like you to start looking at where we are going on the policy and get  some early thinking going on limits for the v @ r . for example , should we  effectively shut down all server relocations without approval , or allow some  level of mb of storage to be moved around or reconfigured ?  i need some commercial and industry realism for this . we may need rick  paiste or your industry helpers ( marquardt , etc . to help us ) .  barry , lou , i need your input .\",0\n\"Subject: re : charles shen  thanks so much , vince - - i couldn ' t agree with you more .  molly  vince j kaminski  11 / 27 / 2000 02 : 40 pm  to : molly magee / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : charles shen  molly ,  i think you called his bluff . if he does not fax a copy of his paycheck stub ,  we should not talk to him . he never talked to me about it . if he made a true  statement  about his compensation , he should have no reservations about sending us the  confirmation .  vince  enron north america corp .  from : molly magee 11 / 27 / 2000 01 : 58 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : charles shen  vince : i left you a voicemail about charles shen a week or so ago , but  wanted to follow up with you . when i called him to extend our offer to him ,  he expressed surprise at the base salary offer of $ 110 , 000 , and told me that  he was currently earning base pay in the amount of $ 120 , 000 . i told him  that the salary figure he had written himself on the application was  $ 102 , 000 , but he insisted that he had made an error and that it should have  been $ 120 , 000 . i asked him what base salary he was looking for , and he said  he would expect at least a 10 % increase in his base . i then told him that i  was not authorized to make an offer above our initial one , and would contact  you and get back to him .  i called him later that afternoon and asked him to fax me a copy of his last  paycheck stub so that we could minimize the confusion about his base pay . he  said that he would be happy to do so , but i never received the fax . he left  me a voicemail message during the evening that said he was on vacation and  didn ' t have access to the pay stubs , but would send me a copy when he  returned .  i have not heard from him since , and wondered if he had contacted you . if  not , would you want to get together to discuss our next step ?  i ' ll wait to hear from you ,  molly  x 34804\",0\n\"Subject: research prc next steps  the pep system is no longer available to accept feedback from reviewers . if  necessary , you can still call the employee ' s reviewers who have not submitted  feedback via the pep system . verbal feedback can be included as part of the  consolidated review .  the following is a list of action items for next steps for supervisors :  action item deadline  print consolidated feedback wednesday , nov 22  thanksgiving holidays thursday - friday november 23 - 24  review / approve employees peer group and supervisor ( hr will provide report  by 11 / 21 ) tuesday , november 28  pre - rank employees based on consolidated feedback tuesday , november 28  send pre - rankings to norma via encrypted e : mail wednesday , november 29  vince will review pre - rankings monday , december 4 , 2000  ena research prc meeting friday , december 8  written / verbal review provided to employee december 20 - january 20  signed review form due to hr january 27 , 2000  forward to appropriate parties , with sensitivity of the confidentiality of  this information . if you have questions regarding the prc process please  feel free to call me .  norma villarreal  x 31545\",0\n\"Subject: var  david ,  during today ' s var coordination meeting we had a discussion of issues  related to mapping of the forward price curves into core locations .  mapping is a necessity dictated by the limitations of the computer system :  we have to reduce the dimensionality of the problem to stay within the bounds  of available cpu memory . also , in some cases the quality of price discovery  is poor  and it ' s difficult to model the price curves independently : we solve the  problem by mapping  them into more liquid and better behaved core locations curves .  we have agreed on the following :  1 . winston will investigate the it side and determine to what extent we can  increase the number  of forward price curves that are simulated as basic ( core ) curves . he will  investigate the impact of a larger  number of the core curves on the time required to complete the var run .  2 . the curves associated with the biggest 10 - 20 positions in each commodity  should be  modeled as core curves ( i . e . no mapping into other locations ) . it makes sense  to monitor  the biggest risks separately and avoid aggregating them into less  transparent aggregates .  3 . the results of an automated clustering ( mapping ) procedures should be  systematically  monitored by a human and corrected if they misrepresent the risks of the  trading positions .  this responsibility should be vested with one person ( right now the  responsibility is  dispersed through the organization and this means in practice that nobody  is responsible ) . research can allocate one person to this task ;  cooperation of trading and rac will be critical .  vince\",0\n\"Subject: zingales seminar  fyi !  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 23 / 2001  03 : 44 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  albert wang on 04 / 23 / 2001 11 : 23 : 22 am  to : ( recipient list suppressed )  cc :  subject : zingales seminar  enron seminar series in finance  jones graduate school of management , rice university  luigi zingales  university of chicago  will give a seminar at the jones school on friday , april 27 , ?  \"\" the great reversals : the politics of financial development in the 20 th  century . \"\"  the seminar will begin at 3 : 30 in room 105 .  a pdf of the paper is available through the seminar website :  http : / / www . ruf . rice . edu / ~ jgsfss / .  fu - kuo albert wang  assistant professor  jones graduate school of management - - ms 531 ?  rice university ?  6100 main street ?  houston , tx 77005 ?  phone : 713 - 348 - 5404 ?  fax : ? ? ? ? 713 - 348 - 5251  email : wangfa @ rice . edu  http : / / www . ruf . rice . edu / ~ wangfa /\",0\n\"Subject: credit applicatiions in grms  this note is from ted murphy ( not bjorn hagelman )  my understanding is that yet another meeting has been scheduled with the  intent of diverting resources from the grms project to some other project .  while i am not privy to the urgency of this other project , i do know that we  have a very large , multi - phase project going in grms .  grms stands for the global risk monitoring system . it is not intended to be  a commercial trading product not is its primary purpose for commercial  decision - making . conceptually , it is a risk warehouse for the primary  purpose of rac due to the deficiency of current front office trading systems  and their inability to provide timely , aggregated information useful to rac .  rac has spent over a year developing a business plan scope and detailed task  list to accomplish its objectives . as a firm we are woefully behind our  press clippings in our ability to aggregate and understand our risk profile .  my most recent sojorn in europe is a classic example of the current systems  inabilty to aggregate and meet the needs of rac having abetted poor decision  making and causing cash losses in well in excess of the grms budget or that  of the market risk group in rac .  the grms project is a requirement that bill bradford and i have in order to  do our jobs . we have delegated authority to debbie brackett and rudi zipter  to make decisions regarding priorities and as such meet regularly with  jonathon and his team as well as rick buy to provide updates . while progress  is never as fast as we would like it , in every instance in which we have only  to rely on rac , jonathon ' s team and research to make a deadline it haas been  hit . the primary reason for any delays whatsoever has been the diversion of  resources off the project or the reliance for cooperation from some other  source - most recently the it staff in london was a tremendous impediment to  deadlines .  please excuse the frustration that is apparently coming through in this note ,  but i feel like the boy with his finger in the dyke and no one is listening .  also , i have had several employees come to resignation over their frustration  on the lack of management support for this project , usually manifesting  itself in the lack of resources or the diversion of resources devoted to it .  i think we have proven collectively that we can organize a modular multiphase  project and provide tangible deliverables when not distracted . please let us  do our jobs . i do not denigrate the efforts of others , but i believe that  they must either submit their detailed requirements to us for our  consideration of their worthiness to put in our que or develop their own  project with their own resources .  thank you for your consideration of this opinion . as it relates to things  that will effect the ability of market risk to do its job , please consult me  as i would you .  ted\",0\n\"Subject: congratulations  congrats on your promotion to md . i appreciate the work you group is doing  for et & s , and i know the promotion is well deserved .  bill cordes\",0\n\"Subject: departure  the research group is a unique and extraordinarily valuable organization for  enron . the success of the group has led to widespread recognition of enron ' s  leadership in quantitative finance as it relates to the energy markets .  therefore , it is with great mixed emotions that i announce my resignation as  i move on to the next phase of my career .  i have enjoyed getting to work with each of you and wish you continued  success for the future .  highest regards ,  kevin kindall  ps : comments , question , and anecdotes will be addressed in thursday ' s  meeting .  shirley will have my contact info .\",0\n\"Subject: trisha lunch  - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 01 / 10 / 2000 11 : 12  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  frances ortiz  01 / 07 / 2000 02 : 54 pm  to : ina rangel / hou / ect @ ect , kevin g moore / hou / ect @ ect  cc :  subject : trisha lunch  jeff has approved for her to be added for lunch everyday and bodweek  thanks  fso\",0\n\"Subject: updated org chart  vince ,  i updated my part of the org chart with the following changes .  1 . corrected samer ' s title to director ( he was hired by azurix as a director  and has retained that title )  2 . corrected spelling of samar khleif ' s name .  3 . added vacant analyst under zimin  stinson\",0\n\"Subject: re : vacation  vincent :  congratulations ! please take whatever time is necessary .  i hope the complications are only with the in - laws and not the police / u . s .  immigration , etc .  let me know if there is anything we can do for you .  regards ,  grant .  vincent tang on 04 / 17 / 2000 12 : 40 : 26 pm  to : grant . masson @ enron . com  cc :  subject : ?  hi , grant ,  how are you ? hope everything is going well .  my wedding ceremony was very good but the whole  process is more complex than i expected . it might  take several more days . so i am wondering , if it is  not too much a trouble for you , i would like to extend  my vacation several more days . please let me know .  best regards ,  vincent  do you yahoo ! ?  send online invitations with yahoo ! invites .  http : / / invites . yahoo . com\",0\n\"Subject: re : stinson vacation plans  stinson ,  no problem .  vince  stinson gibner  03 / 31 / 2000 05 : 28 pm  to : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect  cc :  subject : stinson vacation plans  vince ,  i would like to plan on taking 6 days of vacation on june 2 through june 9 th .  thanks ,  - - stinson\",0\n\"Subject: rosters ( rice university )  i have enclosed your latest rosters for mgmt 656 : energy derivatives . the  word document is your official rosters . the excel document is a list of  names with e - mail addresses . i ' ll keep you updated as students  add / drop . as always , let me know if you have any questions .  pamela castro  mba program associate  rice university  713 - 348 - 6223  - 656 . xls  - 656 . doc\",0\n\"Subject: 3 - urgent - to prevent loss of information  critical migration information :  1 . your scheduled outlook migration date is the evening of : may 7 th  2 . you need to press the \"\" save my data \"\" button ( only once ) to send us your  pre - migration information .  3 . you must be connected to the network before you press the button .  4 . if a pop - up box appears , prompting you to \"\" abort , cancel or trust signer \"\"  please select trust signer .  5 . any information you add to your personal address book , journal or calendar  after you click on the button will need to be manually re - added into outlook  after you have been migrated .  6 . clicking this button does not complete your migration to outlook . your  migration will be completed the evening of your migration date .  failure to click on the button means you will not get your calendar ,  contacts , journal and todo information imported into outlook the day of your  migration and could result in up to a 2 week delay to restore this  information .  if you encounter any errors please contact the resolution center @  713 - 853 - 1411\",0\n\"Subject: re : off - site : john griebling ' s organization and research group  vince , jeff does plan to attend the off - site in breckenridge . i ' m not sure  exactly what time he ' ll arrive on friday , 4 / 28 , but will send those details  when available . thanks , srs  vince j kaminski @ ect  03 / 27 / 2000 04 : 43 pm  to : jeff skilling / corp / enron @ enron  cc : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , ravi  thuraisingham / enron communications @ enron communications , sherri  sera / corp / enron @ enron , katherine brown / corp / enron @ enron , ken rice / enron  communications @ enron communications , kevin hannon / enron communications @ enron  communications , joe hirko / enron communications @ enron communications , john  griebling / enron communications @ enron communications  subject : off - site : john griebling ' s organization and research group  jeff ,  i would like to invite you to an off - site meeting of john griebling ' s  organization  and the research group .  date : april 27 - april 29  location : breckenridge , colorado  as you know , john griebling is managing the network design and construction  project  currently under way in ebs . the research group is actively involved in this  effort  which requires advanced quantitative skills in the area of stochastic  optimization and  stochastic processes ( for modeling and forecasting internet traffic flows ) .  the objective of this meeting is to develop common language and accomplish  transfer  of skills between the two groups , to facilitate cooperation on this project  in the future .  we are also inviting to this off - site senior management of ebs and plan to  have  on the agenda several presentations about strategic directions of ebs . the  effort  of network design and construction currently under way is unprecedented in  terms  of its scope and complexity and it is important for technical people , who  often have  highly specialized technical skills , to understand the broad picture .  i would appreciate if you could join us for friday afternoon ( april 28 ) and  saturday ( april 29 ) . i understand that you have commitments on thursday and  friday  morning . we have reorganized the tentative agenda of the meeting to devote  friday afternoon to more general topics .  vince\",0\n\"Subject: mid - year 2000 performance feedback  note : you will receive this message each time you are selected as a reviewer .  you have been selected to participate in the mid - year 2000 performance  management process by providing meaningful feedback on specific employee ( s )  that have been identified for you . your feedback plays an important role in  the performance management process , and your participation is very critical  to the success of enron ' s performance management goals .  please provide feedback on the employee ( s ) listed below by accessing the  performance management system ( pep ) and completing an online feedback form as  described in the \"\" performance management quick reference guide \"\" . you may  begin your feedback input immediately . please have all feedback forms  completed by the date noted below .  if you have any questions regarding pep or your responsibility in the  process , please call the pep help desk at the following numbers :  in the u . s . : 1 - 713 - 853 - 4777 , option 4  in europe : 44 - 207 - 783 - 4040 , option 4  in canada : 1 - 403 - 974 - 6724 ( canada employees only )  or e - mail your questions to : perfmgmt @ enron . com  thank you for your participation in this important process .  the following list of employees is a cumulative list of all feedback  requests , by operating company , that have an \"\" open \"\" feedback status . an  employee ' s name will no longer appear once you have completed the feedback  form and select the \"\" submit \"\" button in pep .  review group : enron  feedback due date : jun 16 , 2000  employee name supervisor name date selected  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  ahmad , anjam dale surbey may 22 , 2000  carson , margaret m james d steffes may 26 , 2000  carson , richard l richard b buy may 22 , 2000  crenshaw , shirley j wincenty j . kaminski may 24 , 2000  ghosh , soma timothy davies may 31 , 2000  kaminski , wincenty j . david w delainey jun 05 , 2000  peyton , john a randal t maffett jun 05 , 2000  thuraisingham , ravi vasant shanbhogue may 30 , 2000  vernon , clayton j vasant shanbhogue may 26 , 2000  yuan , ding richard l carson jun 02 , 2000  zipter , rudi c theodore r murphy may 25 , 2000\",0\n\"Subject: re : is this data of interest to any of you ?  yannis ,  it makes a lot of sense to get this info .  also , you are welcome to make a presentation to the group this thursday at  lunch .  please , call shirley crenshaw ( x 3 - 5290 ) to coordinate and order sandwich  you would like to have .  vince  joe , can you , please , babysit this presentation ( make sure we have all the  audiovisual  equipment we need , etc . ) .  vince  yannis tzamouranis  03 / 28 / 2000 02 : 50 pm  to : yannis tzamouranis / hou / ect @ ect  cc : ( bcc : vince j kaminski / hou / ect )  subject : is this data of interest to any of you ?  fyi :  the following file describes the contents of the monthly energy review  ( application , current , and historical ) .  the data is available through a doe site and we can get it for free and  incorporate it in the lim database , if there is interest .  review the attached file ( look for keywords of interest ) and let us know  whether need dictates loading these datasets .  for the  market analysis and infomration management group ,  yannis c . tzamouranis  enron it\",0\n\"Subject: research group  hello norma :  in answer to your phone message i am sending you the following information .  there is one thing you probably need to be aware of . on the research  list , elena chilkina is shown as an analyst p / t , however , in the records she  is shown as an \"\" adm coord \"\" . this was done so that she could be considered  non - exempt and receive overtime . however , her actual job is an analyst .  also , roman zadarozhny is an analyst that rotated out of our group 6 months  ago , but was never moved to the new group . he is now up for rotation again  and vince said that we will just keep him until he finds a new rotation .  if you have any questions , please call me .\",0\n\"Subject: zingales seminar  enron seminar series in financejones graduate school of management , rice  universityluigi zingalesuniversity of chicagowill give a seminar at the jones  school on friday , april 27 , ? \"\" the great reversals : the politics of financial  development in the 20 th century . \"\" the seminar will begin at 3 : 30 in room 105 . a  pdf of the paper is available through the seminar website :  http : / / www . ruf . rice . edu / ~ jgsfss / .  fu - kuo albert wangassistant professorjones graduate school of management - -  ms 531 ? rice university ? 6100 main street ? houston , tx 77005 ? phone :  713 - 348 - 5404 ? fax : ? ? ? ? 713 - 348 - 5251 email : wangfa @ rice . eduhttp  : / / www . ruf . rice . edu / ~ wangfa /\",0\n\"Subject: re : the garp 2001 convention : invitation to speak  andreas ,  this looks ok . i look forward to receiving a formal confirmation from you .  vince  \"\" andreas simou \"\" on 08 / 17 / 2000 11 : 49 : 29 am  to :  cc :  subject : re : the garp 2001 convention : invitation to speak  dear mr kaminski  thank you very much for agreeing to speak at the garp 2001 convention .  i will be sending you a formal letter of confirmation in the next few days ,  in the meantime i have selected the session below for you and included some  preliminary details ; are these correct ? i apologize if your details are not  correct but this is the information that was available to me . is the title  of the session to you liking , or would you like to ' spice it up ' a little ?  measuring energy risk - tackling price volatility , adapting var , scenario  modelling and regulatory requirements  vince kaminski , head of quantitative research , enron energy  once again , thank you for agreeing to participate and i look forward to  working with you on this event .  kind regards  andreas  - - - - - original message - - - - -  from :  to :  cc :  sent : thursday , august 17 , 2000 5 : 22 pm  subject : re : the garp 2001 convention : invitation to speak  andreas ,  i shall be glad to speak . i can address topic 2 or 4  ( energy risk or volatility ) .  vince kaminski  \"\" andreas simou \"\" on 08 / 15 / 2000 09 : 58 : 26  am  to :  cc :  subject : the garp 2001 convention : invitation to speak  invitation to speak  garp 2001  the 2 nd annual risk management convention  13 ( superscript : th ) & 14 ( superscript : th ) february , 2001 ? marriott world  trade center , new york  dear kaminski  further to my telephone conversation today with your secretary , shirley  crenshaw , and on behalf of the global association of risk professionals , i  have great pleasure in inviting you to speak at our 2 ( superscript : nd )  annual risk management convention ? garp 2001 .  this event has rapidly establishing itself as the risk management  industry ' s most important meeting point . garp 2000 reflected the key  concerns of risk management experts world - wide , with over 400 attendees in  its first year . three simultaneous streams address traditional pricing and  risk management techniques , along with specialised streams addressing new  sectors , such as the corporate world and the insurance industry . with a  speaker panel of over 55 senior and executive financial professionals from  investment banks , regulatory bodies , asset management firms , academics ,  insurers / re - insurers , corporate and system providers this is the financial  risk management event of the year .  key areas that this convention will consider include market risk ( stress  testing , liquidity , jump diffusion , evt ) , credit risk ( regulation ,  modeling , stress testing , credit portfolio management , credit  derivatives ) , operational risk , ( regulation , data , modeling , validation ,  evt ) advanced asset & liability management , corporate / energy risk  management and the insurance & capital markets .  from my research and discussions with experts in this arena your name was  highly recommended as a speaker for this event . below is the stream on  corporate / energy risk management and i had in mind one of the sessions  below for you . also , the topic titles are provisional and i am open to  suggested alterations .  corporate / energy risk management  modelling corporate risk ? risk management from a shareholder value  perspective  measuring energy risk ? tackling price volatility , adapting var ,  scenario modelling and regulatory requirements  forward pricing ? construction of the forward curve , correlations ,  transparency issues  the volatility challenge ? modelling price volatility and examining the  new products designed to stabilise volatility  energy credit risk management  garp is a not - for - profit , independent organisation of risk management  practitioners and researchers from leading financial institutions  world - wide . garp ' s mission is to facilitate the exchange of information ,  developing educational programs and promoting standards in the area of  financial risk management . for more information please refer to our web  site : www . garp . com  i sincerely hope you will be able to accept this invitation and i look  forward to hearing from you in due course . should you have any questions  please do not hesitate to contact me , otherwise i will call you again on  to discuss this further .  best regards  andreas  ps i have also attached a copy of garps 2000 program for your attention .  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  andreas simou  garp 2001 - conference producer  tel + 44 ( 0 ) 20 7626 9301  fax + 44 ( 0 ) 20 7626 9900  ( see attached file : draft programme . doc )  ( see attached file : g 2000 b & wlowr . pdf )\",0\n\"Subject: re : from a previous summer intern  dear giuseppe :  unfortunately , i am no longer with the associate and analyst recruiting department and will be unable to assist you directly . please contact tracy warner , who is now responsible for recruiting . she will be able to assist you directly . tracy can be contacted at tracy . warner @ enron . com . i would also recommend having vince kaminski contact her as well to ensure that all communications are in order .  best regards ,  celeste roberts  giuseppe andrea paleologo @ stanford . edu on 04 / 20 / 2001 01 : 53 : 39 pm  please respond to gappy @ stanford . edu  sent by : gappy @ stanford . edu  to : celeste roberts  cc :  subject : from a previous summer intern  celeste , my name is giuseppe a . paleologo and you amy remember me : i was  a summer intern last summer in the research group , and attended the  hiring event this year at stanford . in that occasion i had an informal  offer from vince kaminski , and the assurance that i would receive a  written one in the following two weeks , but since then i have not  received any letter from enron . i would like to know if the offer is  still valid , and if it has been sent . i am asking because i am in the  process of evaluating my offers , and would like to wait for enron before  i make my final decision .  thanks in advance ,  giuseppe paleologo  - -  giuseppe a . paleologo  email : gappy @ stanford . edu  office phone : ( 650 ) 725 - 0541\",0\n\"Subject: a chapter to be published in a book by clewlow / strickland  darrell ,  grant masson , ronnie chahal and myself made a contribution to the book  on energy derivatives to be published soon in australia ( a book by  clewlow and strickland ) .  given our growing workload and responsibilities , the quality of the paper is  less  than satisfactory . i would like to make sure that there are no obvious and  embarrassing errors in what we submit . i would appreciate if you could  take a quick look at the chapter and give us the feedback ( under the same  arrangement as in the previous cases ) .  thanks for looking at our storage model . i shall give you a call within the  next few days to update you on our work and developments at enron .  vince will start his senior year in 6 weeks . he wants to graduate and look  for work : he thinks getting an advanced degree in his field makes  no economic sense . he spent the summer building his  own computer ( 1000 mhz clock speed ) . i was the unskilled immigrant worker  toiling under his management .  i hope everything is well at home and that your wife ' s company is doing great .  regards .  vince\",0\n\"Subject: re : alp presentation  dennis ,  thanks for you message . i shall send you more information regarding the dinner later this week .  christie patrick , who is in charge of our university liaison unit , is making arrangements for  the evening at the enron field . hopefully , we shall be able to combine dinner with a game .  vince  \"\" dennis w . loughridge \"\" on 04 / 30 / 2001 10 : 49 : 10 am  please respond to  to :  cc :  subject : re : alp presentation  vince  i will be attending the alp presentation on may 7 and would be pleased to  join the team for dinner if it is not too late .  thank you  dennis loughridge  dennis w . loughridge  director of energy consortium  rice university  713 - 348 - 2812  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : tuesday , april 10 , 2001 8 : 16 am  to : loughrid @ rice . edu  cc : luigical @ rice . edu  subject : alp presentation  sorry , trying again . i probably got a wrong e - mail address and the original  message  was returned .  vince kaminski  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 10 / 2001  08 : 15 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  04 / 10 / 2001 08 : 13 am  to : barrett @ rice . edu , uecker @ rice . edu , cmiller @ rice . edu ,  lounghrid @ rice . edu , luigical @ rice . edu  cc : vince j kaminski / hou / ect @ ect , christie patrick / hou / ect @ ect , shirley  crenshaw / hou / ect @ ect , kenneth parkhill / na / enron @ enron  subject : alp presentation  on behalf of enron corp . i would like to invite you to an alp project  presentation by a group of students  of jesse h . jones graduate school of management , rice university .  the students will present the results of a research project regarding  electronic trading  platforms in the energy industry .  the presentation will be held on may 7 , at 4 : 00 p . m . at enron , 1400 smith .  we would also like to invite you to dinner , following the presentation .  vince kaminski  vincent kaminski  managing director - research  enron corp .  1400 smith street  room ebl 962  houston , tx 77002 - 7361  phone : ( 713 ) 853 3848  ( 713 ) 410 5396 ( cell )  fax : ( 713 ) 646 2503  e - mail : vkamins @ enron . com\",0\n\"Subject: re : ebs research telecom rercruiting effot  hi kristy , please track down electronic form of the four students that we  interviewed ( 2 stanford , 2 mit ) . if you need help , feel free to talk to  vince to find out which one he has etc . . . .  vince , there will be salal from mit coming in march 5 th ( i think , kristy  please confirm ) . he is very qualified and most like a good fit . so , please  let hr know that we may add a couple , etc .  ravi .  - - - - - forwarded by ravi thuraisingham / enron communications on 02 / 20 / 00 12 : 46  am - - - - -  vince j kaminski @ ect  02 / 18 / 00 08 : 24 am  to : ravi thuraisingham / enron communications @ enron communications @ enron  cc : stinson gibner / hou / ect @ ect  subject : re : ebs research telecom rercruiting effot  ravi ,  our compensation for summer interns is very generous . it ' s more than what an  engineering student expects .  vince  p . s . any progress on the resumes in electronic form ? i want to send a  package to charlene today .  vince  ravi thuraisingham @ enron communications on 02 / 17 / 2000 02 : 34 : 01 pm  to : vince kaminski , stinson gibner / hou / ect @ ect  cc :  subject : ebs research telecom rercruiting effot  hi , vince please put your best effort in making sure that we differentiate  summer interns and associates that ebs research will be hiring . i am talking  about compensation here . ken rice mentioned that ebs is in the process of  developing a technical equivalent of our aa pool . ebs research people can  potentially rotate through this pool in the future . i just don ' t want to  risk losing people like giuseppe ( & get the word out that we are low - ballers )  because we have to fit them into certain set of categories that was designed  for the energy business . i realize that you have estabilished such  differentiation for research as a whole , but i think that would have to be  moved up a notch in the case of ebs .  ravi .\",0\n\"Subject: re : worldpower  mark ,  i agree with you . they do not seem to have the market penetration we need .  the benefits don ' t justify the expense .  i shall notify them .  vince  mark palmer @ enron  01 / 21 / 2000 08 : 22 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : worldpower  i think we should decline .  mark\",0\n\"Subject: dram trading authority  here is the latest trading request :  specifically it requires the following to get it over the line :  vince , your concurrence with a simplistic var calculation the start - up  period  everybody else , your signatures , or agreement to sign via email  in addition , here is the commercial presentation which wil be attached to the  request on its way to eb 5007  many thanks  dp\",0\n\"Subject: re : visit to houston  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 03 / 02 / 2001  01 : 22 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  nick bambos on 03 / 02 / 2001 11 : 33 : 11 am  to : stinson . gibner @ enron . com  cc : gappy @ stanford . edu , cope @ csli . stanford . edu , bambos @ stanford . edu  subject : re : visit to houston  hi stinson ,  giuseppe , eric and i , arrive on thusday night at 10 pm . we ' ll try  to reserve rooms at the doubletree hotel next to the enron building .  does enron get special deals with this hotel ? > > > giuseppe , can you  please make the reservations ? > > giuseppe , can you please call stinson and see how we can optimize the  agenda and maximize the value of the visit . i am swamped today . . . nick ,  >  > i hope everything is ok in palo alto . are you able to come to houston on  > the 9 th of march ? please let me know of your plans so we will know what  > times to set up discussions . i will try calling you tomorrow to check on  > your plans , or feel free to call me .  >  > regards ,  >  > stinson  > 713 853 4748\",0\n\"Subject: financial mathematics - houston , august 31 and september 1  ?  - speaker chase - vince kaminski . doc\",0\n\"Subject: lance cunningham  vince :  i have left a message with teresa and have sent the following terse note to  lance to let him know that we are moving .  as we discussed , i asked teresa to offer 90 k + 10 k signing bonus .  regards ,  grant  - - - - - - - - - - - - - - - - - - - - - - forwarded by grant masson / hou / ect on 06 / 30 / 2000 11 : 21  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron north america corp .  from : grant masson 06 / 30 / 2000 11 : 21 am  to : lbcunningham @ mail . utexas . edu  cc :  subject : enron  lance :  i am going on vacation tomorrow , but i wanted to get in touch with you before  i left .  i have asked hr to extend an offer to you . teresa bien should be sending you  an offer letter via fedex . of course , with the july 4 th weekend , i ' m not sure  when you will get it .  if you have questions , i suggest that you call vince kaminski at 713 853  3848 .  regards ,  grant masson .\",0\n\"Subject: re :  tani ,  yes , i am aware of it .  thanks for letting me know who  is the hr rep in london .  vince  tani nath  05 / 02 / 2001 09 : 01 am  to : vince j kaminski / hou / ect @ ect  cc : tara rozen / lon / ect @ ect  subject :  vince ,  i don ' t know if you are already aware of this , but maureen raymond has been taken ill and i understand has received medical advice that she should not travel before the end of next week at the earliest .  tara is the appropriate hr representative in london ; i will ask her to keep both you and houston hr informed of the situation .  many thanks , tani\",0\n\"Subject: re : informs abstract ( fwd )  shijie ,  additional changes .  abstract :  the power market developments in the us have created several unique  challenges for energy industry economists . we discuss the major factors  underlying  the exceptionally high volatility of electricity prices . we feel that some of  them may reflect the flaws in power pools design and incomplete transition to  fully deregulated markets in  generation and transmission .  the title is fine .  vince  shijie deng on 10 / 01 / 2000 07 : 47 : 53 pm  to : vkamins @ enron . com  cc :  subject : re : informs abstract ( fwd )  - - - - - - - - - - forwarded message - - - - - - - - - -  date : sun , 1 oct 2000 14 : 29 : 20 - 0400 ( edt )  from : shijie deng  to : vkaminski @ aol . com  cc : shijie deng  subject : re : informs abstract  vince ,  thanks for the abstract ! for the purpose of the conference program  listing , the conference organizers need a title and an abstract which is  longer than 50 words . based on the abstract that you sent me , i took the  liberty to make up a title and the 50 - word abstract ( attached below ) .  please make changes as you feel necessary and send them back to me . i ' ll  send them out to the organizers once i get your confirmation on this .  best ,  shijie  title : current challenges in modeling power price volatility  author : dr . vince kaminski , head of quantitative research , enron capital &  trade resources  abstract :  the power market developments in the us have created several unique  challenges for energy industry economists . we discuss the major factors  underlying  the exceptionally high volatility of electricity prices . we feel that some of  them may be a necessary price to pay for increased market efficiency and  expanded customer choice .  shi - jie deng  assistant professor  school of isye  georgia institute of technology  office phone : ( 404 ) 894 - 6519  e - mail : deng @ isye . gatech . edu  home page : http : / / www . isye . gatech . edu / ~ deng  on sun , 1 oct 2000 vkaminski @ aol . com wrote :  > shijie ,  >  > i am sending you the abstract for my informs presentation .  >  > vince  >  >  > * * * * *  >  >  > the last three years were characterized by exceptionally high volatility of  > the power prices in the us markets . the market developments have created a  > number of unique challenges for energy industry economists . one immediate  > question we have to answer is how to measure volatility of energy prices .  > although we can all agree that the prices in the power markets are  > characterized by high variability , the traditional measures used in  financial  > economics ( annualized standard deviation of log price returns ) may not fit  > well electricity prices . the second challenge is to explain the sources of  > high price volatility and to answer the question to what extent it can be  > attributed to problems that can be addressed in the long run . such problems  > include flaws in market design that allow some market participants to abuse  > market power , limited availability and / or unequal access to transmission ,  > temporary shortages of generation capacity . some factors underlying high  > volatility of electricity prices may be of permanent nature and may be a  > necessary price to pay for increased market efficiency and expanded customer  > choice .  >\",0\n\"Subject: re : fwd : australian energy 2000  dear vince ,  i am truly grateful . that would be excellent .  many thanks ,  joel  - - - - - original message - - - - -  from : vince j kaminski  to : eprmconf @ asiarisk . com . hk  cc : vince j kaminski ; vkaminski @ aol . com  date : 02 march 2000 14 : 56  subject : re : fwd : australian energy 2000  >  >  > joel ,  >  > i shall be glad to take all the remaining sections .  >  > i have spoken on this subject several times so it will  > relatively easy to prepare it .  >  > vince  >  >  >  >  >  > vkaminski @ aol . com on 02 / 29 / 2000 09 : 27 : 19 pm  >  > to : vkamins @ enron . com  > cc :  > subject : fwd : australian energy 2000  >  >  >  >  > return - path :  > received : from rly - ydol . mx . aol . com ( rly - ydol . mail . aol . com [ 172 . 18 . 150 . 1 ] )  by  > air - ydo 3 . mail . aol . com ( v 69 . 17 ) with esmtp ; tue , 29 feb 2000  : 30 : 22 - 0500  > received : from srol . imsbiz . com ( srol . imsbiz . com [ 206 . 161 . 62 . 5 ] ) by  > rly - ydol . mx . aol . com ( v 69 . 17 ) with esmtp ; tue , 29 feb 2000  9 : 51 - 0500  > received : from joel ( [ 210 . 176 . 232 . 92 ] ) by srol . imsbiz . com ( 8 . 8 . 8 / 8 . 8 . 8 )  with  > smtp id kaao 0361 for ; wed , 1 mar 2000 10 : 29 : 44 + 0800  > message - id :  > x - sender : eprmconf @ pop . asiarisk . com . hk  > x - mailer : qualcomm windows eudora light version 3 . 0 . 5 ( 32 )  > date : wed , 01 mar 2000 10 : 32 : 41 + 0800  > to : vkaminski @ aol . com  > from : joel hanley  > subject : re : australian energy 2000  > in - reply - to :  > mime - version : 1 . 0  > content - type : multipart / mixed ;  >  > dear vince ,  > i am delighted to be working with you at last . i can confirm the lessons  > learned session , and i shall leave it up to you to consider the content .  > the session will last one hour , including q the second topic  > will  > > be \"\" value - at - risk \"\" ( please , feel free to make this title more specific ) .  > >  > > i look forward to meeting you in australia in july .  > >  > > vince  > >  > >  >  >  >  >  > ps . as of friday 3 rd march , i shall be back in my london office where my  > email address is hanley @ risk . co . uk and my number is + 44 207 484 9885 .  >  > ( see attached file : varseml . doc )  >  >  >\",0\n\"Subject: re : zakup ksiazki \"\" inzynieria finansowa \"\" w wnt  pani grazyno ,  dziekuje bardzo za wiadomosc . autor ksiazki przeslal mi egzemplarz .  na pewno skorzystam z okazji , by kupic inne ksiazki pani wydawnictwa .  any web - site i can access ?  w . kaminski  \"\" wydawnictwa naukowo - techniczne \"\" on 03 / 01 / 2001  09 : 57 : 19 am  to :  cc :  subject : zakup ksiazki \"\" inzynieria finansowa \"\" w wnt  uprzejmie informuje , ze do dnia dzisiejszego nie wplynely pieniadze na  zamowiona ksiazke , wobec czego uwazam to za rezygnacje z zakupu .  serdecznie pozdrawiam .  grazyna piesniewska\",0\n\"Subject: re : mgmt 656 ( rice university )  pam ,  thanks . the list of e - mail addresses would be useful as well .  vince  pamela vande krol castro on 01 / 17 / 2001 03 : 05 : 01 pm  to : vince . j . kaminski @ enron . com  cc :  subject : mgmt 656 ( rice university )  here are your rosters for mgmt 656 . let me know if you need a list of  e - mail addresses as well . i will update you as student schedules change .  - pam  ( 713 - 348 - 6223 )  - 656 . doc\",0\n\"Subject: giuseppe paleologo  molly ,  giuseppe is finishing his ph . d . at stanford and worked for us last summer . we would like to make him an offer to bring him as a manager . vince would like to offer $ 110 k base plus a $ 20 k signing bonus and whatever would be the appropriate relocation package ( he is single . ) . he is leaving on monday for europe , so it would be preferable if we can get an offer letter in his hands by friday or saturday . i have verbally given him this offer already , but told him that you would be the expert regarding what is covered in the relocation part . he should be sending me his current address by email which i will forward to you a . s . a . p .  thanks ,  stinson  x 34748  p . s . regarding jinbaek . we would be happy to pay his air ticket .  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 04 / 25 / 2001 03 : 26 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  giuseppe andrea paleologo @ stanford . edu on 04 / 23 / 2001 07 : 33 : 29 pm  please respond to gappy @ stanford . edu  sent by : gappy @ stanford . edu  to : stinson . gibner @ enron . com  cc :  subject : re : from stinson  stinso , nice to hear from you . things are going well here . the only  annoyance comes from the ins . i applied for curricular practical  training , and it will take about three months to have the work permit .  receiving an h - 1 takes understably much longer . other than this , i would  like to know how are things in the research group and ebs .  i will leave for italy next monday and will stay there two weeks . i hope  to hear from you before my departure .  giuseppe  stinson . gibner @ enron . com wrote :  >  > giuseppe ,  >  > how are you ? is your thesis still on schedule ? i hope things are going  > well . i will try and give you a call in the next day or two to see how  > things are going and to bring you up to date on what ' s going on here at  > enron . look forward to talking with you .  >  > - - stinson  - -  giuseppe a . paleologo  email : gappy @ stanford . edu  office phone : ( 650 ) 725 - 0541\",0\n\"Subject: re : preface for book  julie ,  the introduction looks fine . i have made some cosmetic changes  ( typos and split infinitives that slipped by ) . you can safely ignore most of  them .  english is not even my second language .  the corrections are in pink .  vince  \"\" julie \"\" on 08 / 01 / 2000 07 : 43 : 10 am  to : \"\" vincejkaminski \"\"  cc :  subject : preface for book  vince ,  ?  hope you are well .  ?  we spoke a while ago about who should write the preface for the book , and  you kindly offered that you would provide this . ? is this still possible ? ? we  realise that you are extremely busy , so chris and les went ahead and wrote  something , which is below , and if you want to review , change or re - write ? the  preface , that would be very appreciated . ? let me know what your thoughts are .  ?  thanks ,  julie  ( we ' re getting close )  ?  ?  preface  ?  ?  ?  one of our main objectives in writing energy derivatives : pricing and risk  management has been to bring together as many of the various approaches for  the pricing and risk management energy derivatives as possible , to discuss  in - depth the models , and to show how they relate to each other . ? in this  way we hope to help the reader to analyse the different models , price a wide  range of energy derivatives , or to build a risk management system which uses  a consistent modelling framework . ? we believe that for practitioners this  last point is very important and we continue to stress in our articles and  presentations the dangers of having flawed risk management and giving  arbitrage opportunities to your competitors by using ad - hoc and inconsistent  models for different instruments and markets ( see also others who propose  consistent models ? ) . ? however , it is not our wish to concentrate on one  particular model or models , at the exclusion of the others because we  believe that the choice should rest with the user ( although it will probably  be clear from our discussions the model ( s ) we prefer ) . ? we therefore try and  give as clear account as possible of the advantage and disadvantages of all  the models so that the reader can make an informed choice as to the models  which best suit their needs .  ?  in order to meet our objectives the book is divided into 11 chapters . ? in  chapter 1 we give an overview of the fundamental principals needed to model  and price energy derivatives which will underpin the remainder of the book . ?  in addition to introducing the techniques that underlie the black - scholes  modelling framework we outline the numerical techniques of trinomial trees  and monte carlo simulation for derivative pricing , which are used throughout  the book .  ?  in chapter 2 we discuss the analysis of spot energy prices . ? as well as  analysing empirical price movements we propose a number of processes that  can be used to model the prices . ? we look at the well - know process of  geometric brownian motion as well as mean reversion , stochastic volatility  and jump processes , discussing each and showing how they can be simulated  and their parameters estimated .  ?  chapter 3 , written by vince kaminski , grant masson and ronnie chahal of  enron corp . , discusses volatility estimation in energy commodity markets . ?  this chapter builds on the previous one . ? it examines in detail the methods ,  merits and pitfalls of the volatility estimation process assuming different  pricing models introduced in chapter 2 . ? examples from crude , gas , and  electricity markets are used to illustrate the technical and interpretative  aspects of calculating volatility .  ?  chapter 4 examines forward curves in the energy markets . ? although such  curves are well understood and straight - forward in the most financial  markets , the difficulty of storage in many energy markets leads to less well  defined curves . ? in this chapter we describe forward price bounds for energy  prices and the building of forward curves from market instruments . ? we  outline the three main approaches which have been applied to building  forward curves in energy markets ; the arbitrage approach , the econometric  approach , and deriving analytical values by modelling underlying stochastic  factors .  ?  chapter 5 presents an overview of structures found in the energy derivative  markets and discusses their uses . ? examples of products analysed in this  chapter include a variety of swaps , caps , floors and collars , as well as  energy swaptions , compound options , asian options , barrier options , lookback  options , and ladder options .  ?  chapter 6 investigates single and multi - factor models of the energy spot  price and the pricing of some standard energy derivatives . ? closed form  solutions for forward prices , forward volatilities , and european option  prices both on the spot and forwards are derived and presented for all the  models in this chapter including a three factor , stochastic convenience  yield and interest rate model .  ?  chapter 7 shows how the prices of path dependent and american style options  can be evaluated for the models in chapter 6 . ? simulation schemes are  developed for the evaluation of european style options and applied to a  variety of path dependent options . ? in order to price options which  incorporate early exercise opportunities , a trinomial tree scheme is  developed . ? this tree is built to be consistent with the observed forward  curve and can be used to price exotic as well as standard european and  american style options .  ?  chapter 8 describes a methodology for valuing energy options based on  modelling the whole of the market observed forward curve . ? the approach  results in a multi - factor model that is able to realistically capture the  evolution of a wide range of energy forward curves . ? the user defined  volatility structures can be of an extremely general form . ? closed - form  solutions are developed for pricing standard european options , and efficient  monte carlo schemes are presented for pricing exotic options . ? the chapter  closes with a discussion of the valuation of american style options .  ?  chapter 9 focuses on the risk management of energy derivative positions . ?  in this chapter we discuss the management of price risk for institutions  that trade options or other derivatives and who are then faced with the  problem of managing the risk through time . ? we begin with delta hedging a  portfolio containing derivatives and look at extensions to gamma hedging \u0001 )  illustrating the techniques using both spot and forward curve models . ? the  general model presented in chapter 8 is ideally suited to multi - factor  hedging of a portfolio of energy derivatives and this is also discussed .  ?  chapter 10 examines the key risk management concept of value at risk ( var )  applied to portfolios containing energy derivative products . ? after  discussing the concept of the measure , we look at how the key inputs  ( volatilities , covariances , correlations , etc ) can be estimated . ? we then  compare the fours major methodologies for computing var ; delta , delta - gamma ,  historical simulation and monte - carlo simulation , applying each to the same  portfolio of energy options . ? in this chapter we also look at testing the  var estimates for various underlying energy market variables .  ?  finally , in chapter 11 we review modelling approaches to credit risk . ? we  look in detail at two quite different approaches , creditmetrics ( j . p . morgan  ( 1997 ) ) and creditrisk + ( credit suisse financial products ( 1997 ) ) for which  detailed information is publicly available . ? together these provide an  extensive set of tools with which to measure credit risk . ? we present  numerical examples of applying these techniques to energy derivatives .  ?  before we begin we stress that the models and methods we present in this  book are tools which should be used with the benefit of an understanding of  how both the \u0001 + tool \u0001 , and the market works . ? the techniques we describe are  certainly not \u0001 & magic wands \u0001 8 which can be waved at data and risk management  problems to provide instant and perfect solutions . ? to quote from the  riskmetrics technical document \u0001 & \u0001 ( no amount of sophisticated analytics will  replace experience and professional judgement in managing risk . \u0001 8 . ? however ,  the right tools , correctly used make the job a lot easier !\",0\n\"Subject: livelink access  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 04 / 11 / 2001  01 : 13 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron technology  from : moyez lallani @ enron 01 / 16 / 2001 10 : 46 am  to : stinson gibner / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect  cc :  subject : livelink access  gentlemen ,  i have created a folder called research projects folder in the livelink test  instance . the url to the test instance is  to log in , use your nt login id as your userid and password ( all lowercase ) .  you will find the folder on the enterprise workspace . please call me should  you require further assistance .  moyez lallani  x 5 - 3683\",0\n\"Subject: re : london , new york , houston , financial mathematics june / july 2001  vince :  are you just speaking at the one in houston ?  vince j kaminski  05 / 01 / 2001 04 : 45 pm  to : shirley crenshaw / hou / ect @ ect  cc :  subject : london , new york , houston , financial mathematics june / july 2001  fyi  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 05 / 01 / 2001 04 : 45 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" joanna vidal \"\" on 05 / 01 / 2001 03 : 43 : 11 pm  to : , \"\" geman helyette \"\" , , , , , ,  cc :  subject : london , new york , houston , financial mathematics june / july 2001  hello speakers !  my name is joanna vidal and i am the coordinator for the financial mathematics training course being in held on the following dates :  london on june 28 & 29  new york on july 9 & 10  houston on july 16 & 17  i am in the process of preparing the speaker packs which will include an updated contact information sheet with all your details . you will receive this pack shortly after you confirm your addresses . i will list them below and i ask that you please look it over and make any necessary corrections .  my contact details , for your information are :  joanna vidal  events coordinator  risk waters group  t : ( 212 ) 925 1864 ext . 197  f : ( 212 ) 925 7585  jvidal @ riskwaters . com  www . riskwaters . com  thank you and i look forward to working with you .  duane seppi  carnegie mellon university  graduate school of industrial administrations  pittsburgh , pa 15213 - 3890  t : 001 412 - 268 - 2298  f : 001 412 - 269 - 8896  helyette geman  universite de paris dauphine  finance department au de ka grand ecole  corgy pontois , paris  france 95021  t : 00 33 60 - 807 - 4200  vincent kaminski  enron credit  1400 smith street  room ebl 962  houston , tx 77002 - 7361  t : 001 713 - 853 - 3848  f : 001 713 - 646 - 2503  peter nance  teknecon , inc .  1515 s . capital of texas highway  suite 101  austin , tx 78746  t : 001 512 - 732 - 7084  f : 001 512 - 732 - 7099  chris harris  innogy holdings place  windmill hill business park  whitehill way  swindon , wiltshire  uk , 5 n 5 6 pb  t : 44 793 387 - 7777  f : 44 793 389 - 7811  spyros maragos  dynergy , inc .  1000 louisiana street  suite 5800  houston , tx 77002  t : 011 713 - 507 - 6589  f : 001 713 - 767 - 5958  ehud ronn  university of texas at austin  department of finance  mccombs school of business  austin , tx 78712 - 1179  t : 001 512 - 471 - 5853  f : 001 512 - 471 - 5073\",0\n\"Subject: uk ppi curve generator with smoothing  - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 03 / 31 / 2000 01 : 43 pm  - - - - - - - - - - - - - - - - - - - - - - - - - - -  anjam ahmad  03 / 28 / 2000 02 : 08 pm  to : martina angelova / lon / ect @ ect , trena mcfarland / lon / ect @ ect  cc : dale surbey / lon / ect @ ect , mary thambiah / lon / ect @ ect , zimin lu / hou / ect @ ect ,  stinson gibner / hou / ect @ ect , vince j kaminski / hou / ect @ ect  subject : uk ppi curve generator with smoothing  hi martina & trena ,  i think this is a reasonable smoothing method between the short and long - term  models - let me know if you need me to explain it . i also included the  short - term models so this is now a self - standing spreadsheet , but probably  still needs cleaning up a bit .  zimin & stinson :  we agreed on short - term and long - term models for dzcv and pllu ppi indices in  a meeting with dale and trena and a simple smoothing is employed to give the  results as follows . blue and red curves are the proposed dzcv and pllu ppi  index forward curves whilst rpi is the market - derived black curve .  regards ,  anjam  x 35383\",0\n\"Subject: re : mg metals : additional areas to look at  dear richard ,  thanks for your message - i just met lloyd fleming who is setting up meetings  for me and getting me some of the information requested . houston research  has started on this process , but i believe that i will take over from here -  i am in houston in 10 days time and will also discuss initial findings with  them .  regards ,  anjam hmad  london research  x 35383  richard sage  30 / 06 / 2000 09 : 50  to : anjam ahmad / lon / ect @ ect  cc :  subject : mg metals : additional areas to look at  phil redman will come to see you to capture appropriate tasks on the overall  project plan and identify dependencies .  i hope lloyd has kept you up to date so far .  i have added you to the address list for daily updates affecting the support  functions .  - - - - - - - - - - - - - - - - - - - - - - forwarded by richard sage / lon / ect on 30 / 06 / 2000 09 : 50  - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron europe  from : anjam ahmad 30 / 06 / 2000 09 : 46  to : lloyd fleming / lon / ect @ ect , richard sage / lon / ect @ ect  cc : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , bjorn  hagelmann / hou / ect @ ect , dale surbey / lon / ect @ ect , tanya tamarchenko / hou / ect @ ect  subject : mg metals : additional areas to look at  dear lloyd & richard ,  i have been discussing with eric gadd about two particular areas of concern  that will affect the london research group . i believe there are a number of  issues to address to ensure that the integration goes smoothly from a risk  management and quantitative analysis perspective , and i have put together a  ( by no means exhaustive ) list : -  i ) seamless transfer of front and middle office systems from an exotic  options linking perspective ( e . g . their spreadsheets link to different option  pricing add - ins )  ii ) development of volatility curves and factor analysis to ensure that we  can capture metals risk in our var system ( we will require historical data  for this ) . i am sure bjorn will be looking to the research group to assist  in this matter .  iii ) ensure that mg staff on quant and risk side become familiar with our  methods and systems and vice versa  these tasks will involve a significant degree of cross - communication with  relevant contacts within mg metals , and so i look forward to starting on the  process as soon as possible - i hope to play a full part from a quantitative  research and risk management perspective to ensure that everything goes  smoothly in this exciting new development , so please do not hesitate to  involve me .  best regards ,  anjam ahmad  research  x 35383\",0\n\"Subject: re : follow - up  thanks , vince , that is great information .  eric  vince j kaminski @ ect  08 / 25 / 2000 02 : 51 pm  to : eric thode / corp / enron @ enron  cc : vince j kaminski / hou / ect @ ect  subject : re : follow - up  eric ,  mandeep chahal , ainsley gaddis , sofya tamarchenko , elena chilkina , james  aimone  should not count . m . chahal was transferred to the new company , the rest are  summer interns  ( gone back to school ) , or part - time high school or college kids . i shall  walk around and remind the rest  of the crowd about the deadline .  vince  eric thode @ enron  08 / 25 / 2000 02 : 31 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : follow - up  vince - -  we have been working the last few days to get ena ' s united way participation  rate up as high as possible . i called earlier about your cost center because  the following 16 employees were listed in power trading , but i believe are  part of the research organization .  if you have a chance , could you encourage them to log onto  http : / / unitedway . enron . com on the intranet and make a contribution to the  united way . the deadline is today .  thanks .  eric  employees in your cost center :  ainsley gaddis elena chilkina james aimone jose marquez  kevin moore mandeep chahal maureen raymond osman sezgen  paulo issler peyton gibner pinnamaneni krishnarao samer takriti  sofya tamarchenko thomas halliburton william smith yana kristal\",0\n\"Subject: call option - promigas  zimin , thanks for the meeting yesterday , your help is going to be very  valuable for the analysis of our deal .  below you will find the names of the comparable companies you can use for the  study of the volatility :  cablevision  comcast  cox communications  mediaone group  rogers communications  time warner  morgan stanley dean witter published a memorandum on january 5 / 00 \"\" us  investment research : cable television \"\" where you can get detailed  information on the performance of these companies  we will be working on the histogram during the weekend and we will be sending  the results to you as soon as possible .  regarding the quotes for the loan guarantee we will be getting them on monday .  please let me know if you will need any additional information for the  volatility study  thanks and regards ,  maria elena\",0\n\"Subject: friday brown bag for options pricing  hello , researchers :  this friday we have paulo issler speaking on \"\" implied trees and edgworth  binomial trees \"\" .  time : 12 noon , may 26 ; place : 19 c 2 .  the brown bag series has been a success thanks to your participation . hope to  see you again this friday .  zimin ,  alex .\",0\n\"Subject: california 1 / 17 / 01  summary :  late night efforts by the california assembly to craft a legislative solution  are falling short of market and creditor expectations . bankruptcy appears  increasingly likely , but the dynamics of a ch . 11 proceeding remain unclear .  socal edison is likely to be the first in ch . 11 following its suspended  payments to creditors yesterday and is now in a 30 day cure period . attempts  to bring in the assets of the parent companies are unlikely to succeed .  bankruptcy would provide davis with some political cover to implement the  tough decisions that he has so far avoided on the questions of rate hikes and  other costs to taxpayers connected to the proposed operations of the  california power authority .  1 . legislation passes assembly , but generators and consumers remain unhappy  the first legislation ( ab lx ) passed the california general assembly last  night , but both generators and consumers are unhappy with the terms .  generators object to the 5 . 5 cent per kw / h price in the proposed long - term  contract , while consumer groups such as the foundation for taxpayer and  consumer rights object to the state acting as a purchaser of power . the  legislation is expected to pass the senate today and to be signed by governor  davis as early as tonight .  press and source reporting this morning confirms that the principal financial  creditors and utility analysts are also unimpressed with the bill , which is  viewed as insubstantial and falling short of creating a solution to the  financial pressures on the utilities .  2 . financial institutions exposure to california utilities  bank of america : $ 215 million  j . p . morgan : $ 202 million  there is a total of $ 12 billion in outstanding loans , but much of this  ( arranged by societe general ) is to the parents national energy group and  edison international . the $ 417 million mentioned above is the most immediate  concern . the southern california edison loans are subject to immediate  repayment in the aftermath of yesterday ' s rating downgrade to junk status .  the fed will not be involved , except in a routine way as a bank regulator  making sure that the appropriate risk reserves are made against the  utilities ' loans and securities . there is no moral hazard here , because the  fed is not going to guarantee any of the utilities ' credits , which , by the  way , they do not have the authority to do .  3 . pg & e / national energy group - shielding assets  despite considerable anger at pg & e for reorganizing to shield its profitable  assets from its debt - plagued utility business , it would seem that davis has  little authority to intervene . the question of \"\" fraudulent conveyance \"\" , which  is a term in bankruptcy law for transferring assets to favored parties not  long before a filing ( which transfer can then be reversed by the court ) would  not seem to apply here , since pg dynegy has threaten to take take edison into  bankruptcy court if they default  pg & e  current available : $ 500 m in cash and reserves  due feb : lst - $ 580 m to iso  15 th - $ 431 m to california power exchange  contrary to press reports and leaks from the governor ' s office yesterday  about political brinksmanship , edison is clearly not playing negotiating  games and is really short of cash . in this situation , it is unlikely that its  executives will be making fraudulent statements . the bonds on which they  failed to pay would have a 30 - day cure period . after that the trustees will  move on edison , if edison has not already filed . they have three ways of  financing power purchases going forward : 1 ) the state continues to buy power  and sell edison ( and pg or 2 ) pending the passage of today ' s legislation , the state  legislature authorizes the purchase of power through long - term contracts  under the proposed borrowing authority ; or 3 ) edison files for reorganization  under chapter 11 and obtains almost immediately superpriority post - petition  lines of credit secured against its unmortgaged assets , which it uses to pay  for power until the puc and the rest of the state government recognize that  rates have to increase .  6 . new hampshire experience a guide for davis ?  following the bankruptcy of the public service company of new hampshire , the  bankruptcy judge was authorized by a higher court to mandate rate hikes . the  prospect of imposed rate hikes from the bankruptcy court caused the state  government to subsequently determine that rate hikes to consumers were  unavoidable , passing a seven year rate hike of 7 . 5 percent .  for davis , a similar scenario would provide him with some political cover , if  he were forced by the bankruptcy court to pass through rate hikes as part of  a settlement .\",0\n\"Subject: re : d - g energy  karla ,  the wording you have below sounds reasonable as we would only use the code  for internal valuation purposes .  i also checked with vince regarding the issues we discussed by phone  yesterday . he would like to specify a 2 day response time for the software  support . also , he would like to specify that the payment schedule be : 50 %  at time of initial contract and 50 % at the time when the software is  released . this would give them an incentive to release the software before  the full year is over if they want to accelerate the payment .  thanks again for all the help ,  stinson  from : karla feldman on 09 / 06 / 2000 10 : 30 am  to : stinson gibner / hou / ect @ ect  cc :  subject : d - g energy  stinson ,  while trying to put together the agreements for d - g energy , i have an  additional question :  i need to know exactly what yall plan to do with the source code once you  have it after the initial one year period is up ? there are still limitations  as to what you can do with it , so i will need to know so we can try to revise  the contract so that you will be legal .  for example , in the language regarding release of the source code from  escrow , it states that once you have the source code , you just have the  \"\" right to use , copy and modify the source code , solely for our internal  purposes in connection with support , maintenance and operation of the  software \"\" .  do yall plan to reverse engineer , decompile , etc ? do you plan on using any  of their code to create our own product ? if so - i think these are going to  be a problem . the latter would be an infringement issue , unless we were to  contract to do so .  please let me know more details of your plan so i can see how we need to  proceed in this area .  thanks ,  karla  x 67554\",0\n\"Subject: re : enron , india database  sandeep ,  ?  we ' ve ? completed a review ? this morning to try to fill in missing pieces ? of  information on hourly load shapes , hydro dispatch history , and transactions  for india and have not come up with anything yet . would you know of any of  the above information which would ? assist us in our efforts ?  ?  thanks ,  ?  david yomogida  ?  - - - - - original message - - - - -  from : david  to : sandeep kohli  cc : robert schenck - australia ; vince j kaminski ; stinson gibner  sent : wednesday , january 10 , 2001 6 : 20 pm  subject : enron , india database  sandeep ,  ?  below , i have summarized henwood ' s work on the india database to date .  ?  the \"\" inter _ regional links . ppt \"\" file shows the topology and links between  bubbles in the our model and \"\" expand _ india _ data _ 011000 . xls \"\" details the  existing station information that we have compiled to date . ? total resources  closely match reported resources as shown in \"\" l & r _ 0110 . xls \"\" . reported india  total in 1997 is 86 , 000 mw and that in the henwood database is 84 , 000 mw  through 1997 .  ?  region  emss database  reported [ 1 ]  difference  india total  84 , 103  86 , 120  2 , 017  ?  ?  we are currently working on the development of hourly load shaping , seasonal  hydro energy allocation , and the gathering of transaction information .  sandeep , we will try to contact you tomorrow ( thursday - - australia ? or  wednesday - - united states ) to answer any questions that you may have on  this information .  ?  sincerely ,  ?  david yomogida  ?  ?\",0\n\"Subject: part - time work  vince :  i enjoyed the lunch and part of your presentation last week ( i had an other  engagement to attend to , and hence could not make it to the rest of the  presentation and reception following it ) .  i appreciate the part - time offer , however , i must admit that i did not find  the terms very favorable . unlike a person who is permamently located in  houston , i would have the inconvenience and cost of commuting between austin  and houston , and of accomodation both in austin and houston .  i really would love to work in the research group and am sincere about this .  i would just hope that you would consider compensating me at manager level  so that i can cover transportation , accomodation expenses and more  importantly , justify the decision to devote at least half of my time to  enron away from my thesis .  i will be looking forward to hearing from you soon .  best ,  cantekin dincerler  doctoral candidate  the university of texas at austin  graduate school of business  department of finance  office : ( 512 ) 471 - 1676  fax : ( 512 ) 471 - 5073  home : ( 512 ) 472 - 5356  cell : ( 512 ) 680 - 5355  http : / / uts . cc . utexas . edu / ~ cantekin\",0\n\"Subject: texas finance festival registration  the attached is the registration form and information for the texas finance  festival which will be held on april 7 - 8 , 2000 in san antonio .  cindy  - - - - - - - - - - - - - - - - - - - - - - forwarded by cindy justice / hou / ect on 01 / 06 / 2000 08 : 35  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" john d . martin \"\" on 01 / 03 / 2000 10 : 23 : 21 am  to : cindy justice / hou / ect @ ect  cc :  subject : good morning !  cindy ,  i tried to send this out earlier and it bounced back . hope it makes it  this time .  john  - announcerev . doc  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: review of paper by titman , et al  resending . . .  vasant  - - - - - - - - - - - - - - - - - - - - - - forwarded by vasant shanbhogue / hou / ect on 10 / 10 / 2000  11 : 58 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  vasant shanbhogue  10 / 02 / 2000 02 : 04 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : review of paper by titman , et al\",0\n\"Subject: re : options calculator  hi , michael ,  i will take a look .  zimin  michael danielson  10 / 06 / 2000 09 : 26 am  to : zimin lu / hou / ect @ ect  cc :  subject : options calculator  here ' s the link to the options calculator : \",0\n\"Subject: telephone interview with the enron corp . research group  good afternoon mr . xu  your resume has been forwarded to the research group with enron corp .  they would like to conduct a telephone interview with you at your convenience .  please let me know your available dates and times along with the telephone  number you may be reached at and they will call you .  the interviewers would be :  vince kaminski managing director  stinson gibner vice president  zimin lu director  look forward to hearing from you .  regards ,  shirley crenshaw  administrative coordinator  enron corp . research  713 / 853 - 5290  email : shirley . crenshaw @ enron . com\",0\n\"Subject: treasury memo  kevin ,  the memo looks good . one suggestion i have is to emphasize what we can  deliver by end of january since that was the initial deadline . although the  memo indicates that a lot of work has been done , the reader might want to  know what he can get in his hand in terms of models or quantitative results .  you will of course describe everything in your presentation , but given that  setting up presentations may take time , you should think about creating some  template / model and send it with brief explanations . for example , a template  for trs as it stands , and a template listing trigger events and how the  results will be displayed . you can then expand on this in your presentations .  vasant\",0\n\"Subject: tony hamilton / joe carson questions  vince ,  i just wanted to follow - up with you regarding the action items that were  taken away from yesterday ' s meeting with you , mike roberts , norma , and myself .  1 ) tony hamilton  as you know tony ' s official start date was march 12 , 2001 , and he has yet to  receive a paycheck . london ' s pay cycles are different than ours however , and  they only get paid on the 20 th of each month . tony did not receive a  paycheck on march 20 th because all of his new hire information has to be put  into sap ( the payroll system ) by the first of the month for the employee to  receive a check on the 20 th . consequently , tony will not receive his first  paycheck until april 20 th . if you would like for me to try and work with the  london office however and try to get him a paycheck quicker than that , please  let me know .  2 ) joe carson  from what i am able to gather , gary hickerson did make joe carson an offer  that consisted of a one - year contract . however , gary is out of town until  monday , and no one is sure of the specifics of the deal . would you like me  to contace joe to find out the specifics , or would it be more acceptable for  me to wait until gary returns so that i can get all of the facts .  i look forward to working with you .  thanks ,  anne labbe '\",0\n\"Subject: re : equity investment fair value in turkey  john ,  it seems to me that using a risk - free rate is not appropriate . i shall  elaborate on my  position and send you a longer message this afternoon ( my time ) .  vince  enron capital & trade resources corp . - europe  from : john bottomley 06 / 19 / 2000 05 : 55 am  to : vince j kaminski / hou / ect @ ect  cc : john sherriff / lon / ect @ ect , dale surbey / lon / ect @ ect  subject : equity investment fair value in turkey  vince ,  john sherriff recommended that i contact you regarding an interesting ( and  potentially contentious ) option valuation issue we are currently dealing with  in london . we hold longish term options in a private company in turkey which  is currently seeking to ipo . the issue we are discussing with rac is which  discount rate ( i . e . , risk - free ? and if so turkish or us ? ) should we use to  value these options  first , some additional information .  option characteristics :  - - 116 , 000 options ( representing 9 % of the company )  - - term : minimum of 3 years but possibly longer - - still being renegotiated  - - strike price : 20 % below the upcoming ipo price ( either priced in us $ or  turkish lire )  we currently hold the above number of options with a fixed price of $ 118 . 75  per option but 34 , 800 expire on july 15 , 2000 with the remainder expiring on  december 15 , 2000 . the company ' s investment bankers ( abn / amro rothchilds )  are concerned regarding the strike price because it values the company at  $ 118 million and they believe the company is worth approx $ 300 million . due  to such a large \"\" valuation gap \"\" , they originally encouraged us to exercise  all of the options by the end of june ( ipo target date in late sept / early  oct ) . our counter - proposal is to \"\" swap \"\" instrinsic value for time value by  repricing the options strike higher while extending their term .  we are currently negotiating with rac the most appropriate discount rate to  use to value the options . we are arguing that the us risk free is the most  appropriate discount rate and their current position is that the company ' s  historical senior debt cost ( 18 % ) is the more appropriate number to use  ( although admit that this is not justifiable - - only a proxy )  a few key points :  - - rac is valuing the options via crystal ball simulations such that this \"\" to  be negotiated \"\" discount rate is used to calculate the pv of the future  options intrinsic value in 3 years  ( i . e . , for black - scholes , a higher discount rate yields a higher value but  the opposite is true using crystal ball simulation )  - - the model simulates both an ipo / no ipo case and in the case of no ipo we  have put options for our equity priced at a fixed 17 % return  - - the model assigns a 30 % illiquidity discount  - - in the simulated cases where the options are out - of - the - money , we  obviously do not exercise .  we understand that for black - scholes option valuation , one needs to be able  to construct a comparable portfolio of cash flows using equity futures and  the risk free in order for the valuation to hold . and here is where we reach  our difficulty : since the company doesn ' t currently trade on a public market  and since equity futures do not exist for turkish equities , rac is arguing  that a us risk free is not appropriate to use . our argument is that the  non - ipo scenario , a 30 % illiquidity discount and a us $ based option  volatility are already in the factored into the simulation . as such , we feel  rac ' s approach is double counting .  if you managed to get through the above , your a patient man ! i ' ll give you a  call today or tomorrow after you ' ve had a chance to digest the information .  regards ,  john bottomley\",0\n\"Subject: california update 5 / 4 / 01  if you have any questions , please contact kristin walsh at ( 713 ) 853 - 9510 .  bridge loan financing bills may not meet their may 8 th deadline due to lack  of support  sources report there will not be a vote regarding the authorization for the  bond issuance / bridge loan by the may 8 th deadline . any possibility for a  deal has reportedly fallen apart . according to sources , both the republicans  and democratic caucuses are turning against davis . the democratic caucus is  reportedly \"\" unwilling to fight \"\" for davis . many legislative republicans and  democrats reportedly do not trust davis and express concern that , once the  bonds are issued to replenish the general fund , davis would \"\" double dip \"\" into  the fund . clearly there is a lack of good faith between the legislature and  the governor . however , it is believed once davis discloses the details of  the power contracts negotiated , a bond issuance will take place .  additionally , some generator sources have reported that some of the long - term  power contracts ( as opposed to those still in development ) require that the  bond issuance happen by july 1 , 2001 . if not , the state may be in breach of  contract . sources state that if the legislature does not pass the bridge  loan legislation by may 8 th , having a bond issuance by july lst will be very  difficult .  the republicans were planning to offer an alternative plan whereby the state  would \"\" eat \"\" the $ 5 billion cost of power spent to date out of the general  fund , thereby decreasing the amount of the bond issuance to approximately $ 8  billion . however , the reportedly now are not going to offer even this  concession . sources report that the republicans intend to hold out for full  disclosure of the governor ' s plan for handling the crisis , including the  details and terms of all long - term contracts he has negotiated , before they  will support the bond issuance to go forward .  currently there are two bills dealing with the bridge loan ; ab 8 x and ab  31 x . ab 8 x authorizes the dwr to sell up to $ 10 billion in bonds . this bill  passed the senate in march , but has stalled in the assembly due to a lack of  republican support . ab 31 x deals with energy conservation programs for  community college districts . however , sources report this bill may be  amended to include language relevant to the bond sale by senator bowen ,  currently in ab 8 x . senator bowen ' s language states that the state should  get paid before the utilities from rate payments ( which , if passed , would be  likely to cause a socal bankruptcy ) .  according to sources close to the republicans in the legislature ,  republicans do not believe there should be a bridge loan due to money  available in the general fund . for instance , tony strickland has stated  that only 1 / 2 of the bonds ( or approximately $ 5 billion ) should be issued .  other republicans reportedly do not support issuing any bonds . the  republicans intend to bring this up in debate on monday . additionally ,  lehman brothers reportedly also feels that a bridge loan is unnecessary and  there are some indications that lehman may back out of the bridge loan .  key points of the bridge financing  initial loan amount : $ 4 . 125 b  lenders : jp morgan $ 2 . 5 b  lehman brothers $ 1 . 0 b  bear stearns $ 625 m  tax exempt portion : of the $ 4 . 125 b ; $ 1 . 6 b is expected to be tax - exempt  projected interest rate : taxable rate 5 . 77 %  tax - exempt rate 4 . 77 %  current projected  blended ir : 5 . 38 %  maturity date : august 29 , 2001  for more details please contact me at ( 713 ) 853 - 9510  bill sb 6 x passed the senate yesterday , but little can be done at this time  the senate passed sb 6 x yesterday , which authorizes $ 5 billion to create the  california consumer power and conservation authority . the $ 5 billion  authorized under sb 6 x is not the same as the $ 5 billion that must be  authorized by the legislature to pay for power already purchased , or the  additional amount of bonds that must be authorized to pay for purchasing  power going forward . again , the republicans are not in support of these  authorizations . without the details of the long - term power contracts the  governor has negotiated , the republicans do not know what the final bond  amount is that must be issued and that taxpayers will have to pay to  support . no further action can be taken regarding the implementation of sb  6 x until it is clarified how and when the state and the utilities get paid  for purchasing power . also , there is no staff , defined purpose , etc . for  the california public power and conservation authority . however , this can  be considered a victory for consumer advocates , who began promoting this  idea earlier in the crisis .  socal edison and bankruptcy  at this point , two events would be likely to trigger a socal bankruptcy . the  first would be a legislative rejection of the mou between socal and the  governor . the specified deadline for legislative approval of the mou is  august 15 th , however , some decision will likely be made earlier . according  to sources , the state has yet to sign the mou with socal , though socal has  signed it . the republicans are against the mou in its current form and davis  and the senate lack the votes needed to pass . if the legislature indicates  that it will not pas the mou , socal would likely file for voluntary  bankruptcy ( or its creditor - involuntary ) due to the lack operating cash .  the second likely triggering event , which is linked directly to the bond  issuance , would be an effort by senator bowen to amend sb 31 x ( bridge loan )  stating that the dwr would received 100 % of its payments from ratepayers ,  then the utilities would receive the residual amount . in other words , the  state will get paid before the utilities . if this language is included and  passed by the legislature , it appears likely that socal will likely file for  bankruptcy . socal is urging the legislature to pay both the utilities and  the dwr proportionately from rate payments .\",0\n\"Subject: re : meeting nov 8 th  vince ,  i look forward to seeing you tomorrow around 3 : 30 / 3 : 45 . ?  christie ,  many thanks for helping get this organized . ? i am working on the tour list  also .  thanks , carrie  at 12 : 48 pm 11 / 7 / 00 - 0600 , you wrote :  hi vince and carrie !  per my voice mails to each of you , here are your respective phone numbers :  vince kaminski : 713 - 853 - 3848  carrie miller : 713 - 348 - 5260 .  i hope your respective schedules allow for a meeting at rice tomorrow to  discuss rice ' s action learning program . please leave me a voice mail if  there is anything else i can do regarding this effort . ? ( 713 ) - 853 - 6117 .  thanks !  - - christie .  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  carrie chamberlin miller  director of mba program  jesse h . jones graduate school of management  rice university  6100 main street , ms 531  houston , texas 77005 - 1892  phone : ? ( 713 ) 348 - 5260  fax : ? ( 713 ) 348 - 5251  e - mail : ? cmiller @ rice . edu  http : / / www . ruf . rice . edu / ~ jgs /\",0\n\"Subject: an interview  shirley ,  please schedule an interview with konstantin on may 8 .  stinson , zimin , alex , tanya , krishna , myself .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 05 / 02 / 2001  03 : 07 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" konstantin n . kudin \"\" on 05 / 02 / 2001 01 : 39 : 15 pm  to :  cc :  subject : an interview  dear dr . kaminski  we have talked earlier during your energy class at rice about career  opportunities in risk management at enron . if it is possible , i would like  to meet with you and people from your group next week , preferably tuesday  ( may 8 ) . my time is flexible , i could come any time . other days are also  fine .  thank you very much in advance .  sincerely ,  konstantin kudin\",0\n\"Subject: fwd : hea renewals & crawfish boil teaser  shirley ,  please , enroll me in this organization .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 04 / 2000  10 : 11 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  jlpnymex @ aol . com on 03 / 22 / 2000 04 : 24 : 33 pm  to : nalexander @ texasmonthly . emmis . com , blackj @ wellsfargo . com ,  rdyerlaw @ houston . rr . com , sgoldfield @ tmh . tmc . edu , ggulen @ uh . edu ,  lesley . guthrie @ cpa . state . tx . us , elizabethherring @ pzlqs . com ,  robyn _ howard @ aimfunds . com , vkamins @ enron . com , mmfoss @ uh . edu ,  adrian . a . nunez @ usa . conoco . com , jack _ plunkett @ plunkettresearch . com ,  james . stanton @ et . pge . com , dstowers @ watersinfo . com , woodybc @ bp . com  cc :  subject : fwd : hea renewals tue , 21 mar 2000 17 : 20 : 25 - 0500  received : from cobaltl . crescentcon . com ( cobaltl . crescentcon . com  [ 208 . 244 . 126 . 12 ] ) by rly - ydol . mx . aol . com ( v 70 . 21 ) with esmtp ; tue , 21 mar  2000 17 : 20 : 07 - 0500  received : ( from httpd @ localhost ) by cobaltl . crescentcon . com ( 8 . 9 . 3 / 8 . 9 . 3 ) id  qaao 2187 ; tue , 21 mar 2000 16 : 20 : 06 - 0600  date : tue , 21 mar 2000 16 : 20 : 06 - 0600  message - id :  to : jlpnymex @ aol . com  from : houston energy association  subject : hea renewals & crawfish boil teaser  dear hea member :  this week is the absolute last week you can renew and be included in the  annual  directory . just call the office ( 713 / 651 - 0551 ) and if you have no changes ,  you  can renew with your credit card over the phone .  also , our next event is april 11 th at woodrow ' s on chimney rock . hea is  proud  to announce that the new york mercantile exchange ( nymex ) is our corporate  sponsor of the 8 th annual crawfish boil . nymex is celebrating their 10 th  anniversary of natural gas futures trading , and will be awarding several door  prizes that evening . this will be the last event at which to purchase one of  the remaining raffle tickets for the harley davidson sportster which will be  awarded to some lucky winner at energy extravaganza on may 6 , 2000 .  so renew your dues , and watch your fax and email for more details about april  11 th !  this message was sent by :  teresa knight , executive director  houston energy association ( hea )  phone : ( 713 ) 651 - 0551  fax : ( 713 ) 659 - 6424  tknight @ houstonenergy . org  if you would like to have your email address removed from our mailing list ,  please click the link below to the hea home page , where you will find a  mini - form to remove your name automatically .  http : / / www . houstonenergy . org /\",0\n\"Subject: holiday gift  thank you so much for your thoughtfulness . . . . this basket is absolutely  beautiful . . . . . thanks again for your thoughtfulness and for thinking of  me . . . . . .  you have a wonderful holiday . . . . . .  kay\",0\n\"Subject: re : 1 . your thur . / fri . austin trip ; 2 . presentation of my  risk - management optimization model ; 3 . enron on - line  ehud ,  sorry i shall miss you on thursday .  i shall definitely attend you presentation at power 2000 .  i shall ask about a guest accounton eol . typically , such an account allows  an outside user to take a look at the system , but i don ' t think the traders  will allow  systematic access to the price data over a long period of time by a third  party .  vince  \"\" ehud i . ronn \"\" on 05 / 01 / 2000 05 : 54 : 50 pm  to : vince . j . kaminski @ enron . com  cc :  subject : 1 . your thur . / fri . austin trip ; 2 . presentation of my  risk - management optimization model ; 3 . enron on - line  vince ,  greetings .  i am following up at this time with respect to the above issues we  discussed in san antonio .  1 . i am leaving thur . morn for philadelphia , and shall not be back until  late fri . ( my etd is 9 : 40 a . m . , which i understand is less than an hour  before your arrival . . . ) thus i shall regrettably miss your current ut  visit , which we had hoped to also use as an opportunity to present / discuss  my enterprise - wide risk management model .  2 . that said , i shall be presenting an abridged version of this model at  power 2000 ' s first day , 5 / 9 4 : 15 - 4 : 55 p . m . while i realize you ' ll be  very busy over power 2000 ' s two days , should your schedule permit , i should  most welcome the opportunity for you to see the model .  3 . per your suggestion in san antonio , i would like to take this  opportunity to inquire whether i might obtain an enron on - line account to  obtain electricity prices quoted by enron .  i look forward to seeing you at power 2000 . best regards ,  ehud  ehud i . ronn  department of finance  college and graduate school of business  university of texas at austin  austin , tx . 78712 - 1179  voice : ( 512 ) 471 - 5853  fax : ( 512 ) 471 - 5073  internet : eronn @ mail . utexas . edu \",0\n\"Subject: re : eprm 2001 houston  layla ,  a few points .  i shall be glad to attend the reception .  i am falling behind in getting my presentation ready . sorry for the delay .  i can commit to delivering the required number of copies on the day of my  presentation  ( or a day before ) . i have done it on two occasions before ( power 2000 and  power 1999 ) :  the copies were produced by our company copy center at no cost to you .  my associate , tanya tamarchenko , is helping me with one aspect of the  presentation and  i would like her to deliver part of my speach . it ' s only fair to give her the  credit when the  credit is due . is it ok to include her as an additional speaker ?  vince  \"\" layla o ' leary \"\" on 04 / 30 / 2001 09 : 04 : 52 am  please respond to  to :  cc :  subject : eprm 2001 houston  dear speaker ,  pre - congress cocktail reception - sunday 13 th may @ 5 : 30 pm in the juniper  room  we would be delighted to have you attend our pre - congress cocktail  reception . we will be extending this invitation to all our sponsors ,  exhibitors and eprm / risk waters group staff . we hope this will provide a  perfect opportunity for you to meet all our staff and clients before the  formal opening of eprm 2001 usa  + rsvp  i would also like to remind you that i need any missing presentations by  thursday 3 rd may . it is essential that i get these in as the delegates rely  on these to make notes and get very upset if they are not included in the  packs .  if you still haven ' t informed me of your av requirements , please do so as  quickly as possible . i also require a short biography .  i would like to point out that i will not be taking any presentations on  disk to the event . if you are using a laptop , your presentation should be  loaded onto the laptop that you bring with you . you must bring your own  laptop and disc , with connecting cables .  any questions , please do not hesitate to contact me .  kind regards  layla o ' leary  event co - ordinator  risk waters group  haymarket house  28 - 29 haymarket  london  swly 4 rx  tel : + 44 ( 0 ) 20 7484 9871  fax : + 44 ( 0 ) 20 7484 9800\",0\n\"Subject: weather and energy price data  elena ,  please , prepare for mulong ng and power price series .  we can use henry hub for ng , cinergy , cobb and pv for electricity .  we can send him ng price right away . electricity prices are different : he has  to obtain  permission from ft ( megawatts daily ) . i shall cc you on my msg to him .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 16 / 2001  02 : 03 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  mulong wang on 04 / 15 / 2001 03 : 43 : 26 am  to : vkamins @ ect . enron . com  cc : richard macminn  subject : weather and energy price data  dear dr . kaminski :  i am a phd candidate under the supervision of drs . richard macminn and  patrick brockett . i am now working on my dissertation which is focused on  the weather derivatives and credit derivatives .  could you kindly please offer me some real weather data information about  the price peak or plummet because of the weather conditions ?  the past winter of 2000 was very cold nationwide , and there may be a  significant price jump for natural gas or electricity . could you  please offer me some energy price data during that time period ?  your kind assistance will be highly appreciated and have a great day !  mulong\",0\n\"Subject: re :  dave ,  both days .  vince  david ikenberry on 02 / 06 / 2001 01 : 39 : 58 pm  to : vince . j . kaminski @ enron . com  cc : ostdiek @ rice . edu  subject :  hi vince ,  i just now heard back from andrew karolyi . he will be here on monday march  12 . would you be available for dinner either on sunday march 11 or monday  march 12 ?  thanks , dave  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  prof . david ikenberry  jones graduate school of management  rice university  713 - 348 - 5385\",0\n\"Subject: conference  steve ,  the slides are ok . how are the negotiations with risk proceeding ?  they had recently many changes ( firing people ) .  vince\",0\n\"Subject: re : biliana ' s resume  biliana ,  i am glad i could help .  look forward to working with you .  vince  biliana pehlivanova on 12 / 31 / 2000 08 : 19 : 52 am  to : vince . j . kaminski @ enron . com  cc :  subject : re : biliana ' s resume  mr . kaminski ,  i would like to thank you for forwarding my resume . i  have resently accepted enron ' s offer for a position  with the analyst program and will be joining the  company in february .  hope you had a merry christmas and wish you a happy  new year ' s !  regards ,  biliana  - - - vince . j . kaminski @ enron . com wrote :  >  > biliana ,  >  > i forwarded your resume to the hr person  > responsible for recruiting at your university  > with my recommendation .  >  > vince  >  >  >  >  >  > biliana pehlivanova  > on 09 / 28 / 2000 06 : 02 : 20  > pm  >  > to : vkamins @ enron . com  > cc :  > subject : biliana ' s resume  >  >  > mr . kaminski ,  >  >  > thank you for referring me to your recruitment  > representative .  >  > attached is my resume . i would appreciate you  > letting  > me know the name of the hr person whom i can folow  > up  > with .  >  > best regards ,  > biliana  >  >  > = = = = =  > = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  > biliana pehlivanova  > vice president of incoming exchange  > aiesec houston  > 713 743 - 4927  > = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  >  > _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  > do you yahoo ! ?  > yahoo ! photos - 35 mm quality prints , now get 15  > free !  > http : / / photos . yahoo . com /  > ( see attached file : biliana ' s resume . doc )  >  >  >  > attachment part 2 application / octet - stream  name = biliana ' s resume . doc  = = = = =  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  biliana pehlivanova  vice president of incoming exchange  aiesec houston  713 743 - 4927  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  do you yahoo ! ?  yahoo ! photos - share your holiday photos online !  http : / / photos . yahoo . com /\",0\n\"Subject: re : tony hamilton  tony hamilton reports to mike roberts in the houston office .  vince kaminski will answer these questions for you at any  given time .  tony ' s start date in london will be april 9 th  thanks  kevin moore  desleigh langfield  04 / 04 / 2001 08 : 29 am  to : kevin g moore / hou / ect @ ect  cc :  subject : tony hamilton  kevin  tani nath who heads up the structuring and research teams rang this morning  to get more information on tony .  can you tell me who he reports to in houston and whether that person will  continue to manage him remotely ?  what cost centre he should be charged to ? whose headcount he appears on , and  for what group he will be providing services for , tani was unsure on all of  the above and wants clarification .  also can you confirm his start date in london  thanks  desleigh  - - - - - - - - - - - - - - - - - - - - - - forwarded by desleigh langfield / lon / ect on 04 / 04 / 2001  14 : 27 - - - - - - - - - - - - - - - - - - - - - - - - - - -  desleigh langfield  06 / 03 / 2001 13 : 40  to : steven leppard / lon / ect @ ect  cc :  subject : tony hamilton  steve  all sorted and we will check later in the week with it that all is okay .  can you please tell your assistant to organise a desk for tony , no rush  obviously  thanks  desleigh  - - - - - - - - - - - - - - - - - - - - - - forwarded by desleigh langfield / lon / ect on 06 / 03 / 2001  13 : 38 - - - - - - - - - - - - - - - - - - - - - - - - - - -  desleigh langfield  06 / 03 / 2001 13 : 38  to : european resolution center / lon / ect @ ect  cc : kevin g moore / hou / ect @ ect , steven leppard / lon / ect @ ect , anna  seymour / lon / ect @ ect  subject : tony hamilton  hi  tony is a uk employee who starts next monday 12 th march 2001 , we have done a  quick start in nest today for him .  tony will be working his first month in the houston office , however we still  need to set up a log on and notes account here .  can you please send the log on and password for both accounts to kevin as he  will be meeting with tony on monday morning in the houston office .  tony will not have a desk arranged for him until he comes back in  approximately a month so no actual pc is necessary until then .  one question - with a uk log on and notes account , will tony be able to  access these from houston ? if it ' s complicated can you please let kevin know  how to do this .  any problems let me know  thanks  desleigh\",0\n\"Subject: london research intranet  felipe  following our discussion please close down all intranet access to the london  research group site . inaccuracies have been found in the content which may  have implications for our trading operations . closing the site will force  traders to contact our group direct , ensuring only correct information is  passed .  the site will be completely overhauled over the coming months , so i see  little benefit in reinstating access to the site in the near future .  many thanks ,  steve\",0\n\"Subject: harvard - - nyu itinerary  hi !  attached please find the itinerary for the harvard - - - nyu trip ; please  disregard any parts of the trip that don ' t apply to you .  if i have not already done so , i ' ll try this morning to get you a copy of the  enron online case being taught at harvard tomorrow ( thursday ) . otherwise ,  i ' ll give it to you on the plane - - it ' s fewer than 15 pages , so it ' s a quick  read .  please call me if you have any questions ( 3 - 6117 ) . otherwise , i ' ll see you  at the corporate hangar at 6 pm .  ( for anyone unfamiliar with the location of the corporate hangar , i believe  you can get a map / address / directions from the enron aviation department . )  thanks !  - - christie .\",0\n\"Subject: job description for sr . adm . asst - research group posting  norma :  here is the \"\" job description \"\" that vince asked me to provide .  let me know if you need anything else .  shirley  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 08 / 07 / 2000  01 : 24 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  08 / 07 / 2000 08 : 29 am  to : sheila walton / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , norma  villarreal / hou / ect @ ect  subject : re : anita dupont resume  sheila ,  no , we have to go through the posting phase first .  i shall ask shirley to provide the job description .  vince  from : sheila walton 08 / 04 / 2000 02 : 44 pm  to : vince j kaminski / hou / ect @ ect  cc : norma villarreal / hou / ect @ ect  subject : re : anita dupont resume  vince , alice has strong qualities for a sr admin asst . vince , have we posted  this position on the job posting board ? if so , great . if not , we need to  post this opening to prove that we have given an opportunity to all existing  enron employees before we go outside to external candidates . otherwise ,  existing employees have a valid complaint that we are limiting their  advancement within enron but hiring externally . if we have not posted this ,  i will have the recruiter contact shirley so shirley can give us a job  description . then we can post and interview anita simultaneously . please  let me know asap if this has been posted . thanks .  sheila walton  vince j kaminski  08 / 02 / 2000 08 : 48 am  to : sheila walton / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : anita dupont resume  sheila ,  i would like to hire anita dupont as a senior admin assistant , reporting  to shirley .  please , call me about it after you review the resume .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 08 / 02 / 2000  08 : 52 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  anita dupont @ enron  08 / 02 / 2000 08 : 17 am  to : vince j kaminski / hou / ect @ ect  cc : shirley crenshaw / hou / ect @ ect  subject : anita dupont resume  vince :  here is the resume you requested . thanks . anita\",0\n\"Subject: assume i will not be chairing . . .  dear joel ,  as i have not received any reply yet re email below ,  i have arranged other appts for myself on monday  and will not be chairing any seesions .  rgds raymond  345 pm ; 14 july  - - - - - - - - - - - - - - - - - - - - - - forwarded by raymond yeow / enron _ development on  07 / 14 / 2000 03 : 40 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  raymond yeow  07 / 12 / 2000 07 : 39 pm  to : \"\" joel hanley \"\"  cc :  subject : re : is there any chance you could chair a session at the conference ?  dear joel ,  will be glad to help out but had a look at the stream 2 on monday  and it is 1120 am - 520 pm covering three sessions ! ! !  could i suggest that i take the 1120 am - lunch session and you can find another  speaker ( s ) from day 2  to chair the afternoon session ( s ) .  i am flexible if you need me to take a different time on the monday .  rgds raymond  \"\" joel hanley \"\" on 07 / 12 / 2000 03 : 37 : 39 am  please respond to \"\" joel hanley \"\"  to :  cc :  subject : is there any chance you could chair a session at the conference ?  raymond ,  by the way , is there any chance you could chair a session at the conference ?  glenn labhart from the us has unfortunately dropped out so i am hoping you  could chair stream two on day one ( monday 17 th ) . please let me know asap . it  would be a great help is you ' re available .  best wishes ,  joel .  direct : + 44 ( 0 ) 20 7484 9885  ?  www . riskpublications . com\",0\n\"Subject: meeting to discuss presentation materials  hello vince and kenneth ,  my teammates and i would like to schedule a time with you to discuss our  presentation materials . we would prefer to meet with you sometime on  thursday so that we can have the weekend to include any changes that you may  suggest , but we will accommodate your schedules .  thank you for all of your help ,  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  charles womack jr .  mba candidate 2002  rice university  jesse h . jones graduate school of management  cwomack @ rice . edu  cell : 281 - 413 - 8147\",0\n\"Subject: request  vince ,  would you mind making a few luncheon comments to the texas finance festival  group at our sat luncheon ? i struck out with andy and sheridan thought  that you could relate very well to the group . how about it ?  john  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: enron net works  it is becoming increasingly clear that the development of ecommerce will have  a significant and continuing impact on the conduct of business in a broad  array of industries . through enrononline , enron has quickly become a major  catalyst for the transition to the web in the gas and electric industries .  enrononline has been an enormous success since its launch . since launch , we  have completed 67 , 043 transactions on line , with a total dollar value of over  $ 25 billion . enrononline is now the largest ecommerce site in the world .  we believe that the competitive success of enrononline is due to one very  specific reason . in addition to providing a web - based platform for  transactions , enron acts as principal to provide direct liquidity to the  site . we stand ready at all times , in any market conditions , to buy and sell  at the posted price . this converts a \u0001 & bulletin board \u0001 8 ( the more typical  ecommerce concept ) into a true market . there are very few , if any ,  competitors that can provide this capability .  we are increasingly convinced that this competitive advantage can be  dramatically expanded to other products and other geographies . if we are  correct , this could provide an enormous new opportunity for growth for enron .  accordingly , we are initiating a major new effort to capture this  opportunity . effective today we are creating a new business , enron net  works , to pursue new market development opportunities in ecommerce across a  broad range of industries . it is likely that this business will ultimately  be our fifth business segment , joining transmission mike  mcconnell , chief operating officer ; and jeff mcmahon , chief commercial  officer . these individuals will comprise the office of the chairman for  enron net works and remain on the executive committee of enron corp .  replacing greg whalley as president and chief operating officer of enron  north america is dave delainey , who will also join enron \u0001 , s executive  committee .  global technology will remain intact but will now be a part of enron net  works . it will maintain all of the same businesses and services as it did as  an enron global function . philippe bibi will remain the chief technology  officer for all of enron corp . and continues to be responsible for the  development of worldwide technology standards and platforms .  enrononline , headed by louise kitchen , will also remain intact and will now  be a part of enron net works . the success of enrononline enables us to  utilize this site as a model as we explore other markets . in addition , the  following individuals are included in enron net works along with their  current ecommerce initiatives : harry arora , public financial securities ; jay  fitzgerald , new markets identification ; bruce garner , metals ; and greg piper ,  pulp and paper .  over the next several weeks we will complete staffing and organizational  design and will provide full details on this exciting new business  opportunity .\",0\n\"Subject: re : ( no subject )  great ,  please , let me know . there are several good films playing currently .  vince  jlpnymex @ aol . com on 04 / 04 / 2000 10 : 09 : 28 am  to : vince . j . kaminski @ enron . com  cc :  subject : re : ( no subject )  vince ,  i will check with david and get back with you . i still want to hear about  your california trip .  jana\",0\n\"Subject: re : recommendation of an outstanding baylor mba student for summer  internship  jim ,  i shall contact althea and make sure rusty meets with the research group  members .  vince  jim garven on 03 / 28 / 2001 01 : 01 : 42 pm  to : stinson _ gibner @ enron . com  cc : vince _ j _ kaminski @ enron . com  subject : recommendation of an outstanding baylor mba student for summer  internship  dear stinson ,  i would like to call your attention to rusty parks , who is an mba student  here and has been serving as my research assistant since last fall . ? rusty is  a very outstanding individual with a very impressive work ethic and interest  in topics such as financial engineering and technology , particularly as these  issues pertain to the energy industry . ? ? in fact , you met rusty during your  recent visit to baylor ( specifically , last month over dinner at the gamma  iota sigma chartering ceremony ) .  i happen to know that rusty is already scheduled to visit enron for an  interview for a summer internship on april 19 . ? he has been invited by althea  gordon . ? if there is any possibility that you could meet with him during his  visit , i am sure that he would be most grateful . ? rusty is one of the very  best research assistants i have ever had , and i am sure that enron would  benefit from having him aboard during the coming summer .  sincerely ,  jim garven  p . s . : please find rusty ' s resume attached to this email .  james r . garven , ph . d .  professor of finance & insurance  department of finance , insurance and real estate  hankamer school of business  hsb 336  baylor university  box 98004  waco , tx ? 76798  voice : ( 254 ) 710 - 6207  fax : ( 603 ) 994 - 6680  e - mail : james _ garven @ baylor . edu  home page : http : / / garven . baylor . edu  vita : http : / / garven . baylor . edu / dossier . html  research paper archive : http : / / garven . baylor . edu / research . html  - rusty parks resume . doc\",0\n\"Subject: re : eastern  unless we can model the protection in some form we will not know what our  true exposure is . so i need our team reassessing how we can  model the benefit of the credit proctection . please keep working on this .  john  soma ghosh  07 / 03 / 2000 17 : 57  to : john sherriff / lon / ect @ ect  cc : william s bradford / hou / ect @ ect , tanya rohauer / hou / ect @ ect , vasant  shanbhogue / hou / ect @ ect , bryan seyfried / lon / ect @ ect  subject : re : eastern  john ,  we are currently not modelling the effect of insurance on eastern on an  individual risk basis . i have spoken at length with houston research &  credit risk management on this given that the portfolio of risk is  dynamic , specific allocation of protection is not appropriate . as i mentioned  in my earlier message there is $ 135 mm cap on any one loss , assuming no losses  have occured prior to that .  i am happy to discuss this further with you if required .  bill , i ' d appreciate any comments you may have re . the above .  regards ,  soma  john sherriff  06 / 03 / 2000 15 : 06  to : soma ghosh / lon / ect @ ect , bryan seyfried / lon / ect @ ect , mariano  gentilini / lon / ect @ ect  cc :  subject : re : eastern  soma  how are we modeling the affect of the insurance packages on the eastern deal ?  john  soma ghosh  06 / 03 / 2000 11 : 53  to : john sherriff / lon / ect @ ect  cc :  subject : re : eastern  the protection is not a fixed allocation of protection to individual  counterparties but covers the global portfolio of risk . enron has in place 3  tranches of credit insurance covering up to $ 135 mm per event . whilst the  insurance is not counterparty specific , it would be available for credit loss  on eastern provided that losses had not been incurred prior to an eastern  loss . i have already discussed with houston credit risk management at this  point in time there has been no resolution in finding an appropriate way to  allocate protection by name .  summary of insurance :  enron absorbs the first $ 10 mm of losses in any one year capped at the  aggregate of $ 30 mm over a ten year period .  aegis absorbs the next $ 35 mm of losses for the same ten year period .  chubb will pick up the next $ 50 mm losses for any single event and $ 100 mm in  losses in the aggregate for 5 years  rsa takes the next $ 50 mm for losses in excess of $ 95 mm over a five year  period & covers the top 9 counterparties by exposure  regards ,  soma  john sherriff  03 / 03 / 2000 18 : 16  to : soma ghosh / lon / ect @ ect  cc :  subject : re : eastern  soma  how does the company ' s credit insurance ( done by houston last year ) affect  this exposure ?  john  soma ghosh  03 / 03 / 2000 16 : 24  to : john sherriff / lon / ect @ ect  cc : david weekes / lon / ect @ ect , steve w young / lon / ect @ ect , barry  pearce / lon / ect @ ect , fernley dyson / lon / ect @ ect , william s  bradford / hou / ect @ ect , rick buy / hou / ect @ ect , oliver gaylard / lon / ect @ ect  subject : re : eastern  please note that total exposure $ number is $ 979 . 8 mm not $ 783 . 2 mm .  apologies ,  soma  - - - - - - - - - - - - - - - - - - - - - - forwarded by soma ghosh / lon / ect on 03 / 03 / 2000 16 : 22  - - - - - - - - - - - - - - - - - - - - - - - - - - -  soma ghosh  03 / 03 / 2000 16 : 17  to : john sherriff / lon / ect @ ect  cc : david weekes / lon / ect @ ect , steve w young / lon / ect @ ect , barry  pearce / lon / ect @ ect , fernley dyson / lon / ect @ ect , william s  bradford / hou / ect @ ect , rick buy / hou / ect @ ect , oliver gaylard / lon / ect @ ect  subject : re : eastern  john , as requested :  total exposure as at 29 feb 2000 : o 620 . 9 mm ( $ 783 . 2 mm )  eurocash i monetezation : - ol 24 . 7 mm ( - $ 196 . 1 mm )  less credit derivatives : o 40 . 0 mm ( $ 63 . 1 mm )  total net exposure as at 29 feb 2000 : o 456 . 2 mm ( $ 713 . 9 mm )  net month on month increase : ol 25 . 4 mm ( $ 197 . 9 mm )  total value of eastern group guarantee : o 520 mm ( $ 820 . 6 mm )  amount backed by txu : zero  as well as the increase in overall exposure , please note the change in shape  of the exposure month on month most notably credit exposure now peaking at  the front end of the transaction ( ex credit derivs . the max exposure is at  day 1 ) , compare to max . exp . at feb 2005 for month end jan . .  shape of profile & increase in mtm primarily due to :  - power curve downward shift at front end yrs 0 - 11  - power curve upward shift at back end yrs 12 - 18  - gas curve upward shift yrs 1 - 5 .\",0\n\"Subject: petition for summer internship  celeste ,  i am recommending jason sokolov for summer internship with enron .  jason is currently working part - time for mike roberts and makes  very valuable contribution to a number on - going projects .  we are very happy with his performance and see him as a valuable future  enron employee .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 05 / 2000  07 : 30 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : jason sokolov 01 / 04 / 2000 01 : 32 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : petition for summer internship  vince :  as we discussed earlier , i attached the copy of the petition for my summer  internship with enron analyst and associate group .  i also have the hard copy of the letter , which i will deliver to you  presonally .  i am looking forward to , finally , become an official enron employee . thank  you very much for your valuable contributions to  my experience with the company .  jason sokolov\",0\n\"Subject: re : p + spread options  fyi  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 01 / 29 / 2001  12 : 48 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : jeffrey a shankman on 01 / 29 / 2001 12 : 38 pm  to : stinson gibner / hou / ect @ ect  cc : john l nowlan / hou / ect @ ect , don schroeder / hou / ect @ ect  subject : re : p + spread options  let ' s get together on this in the next couple of days . thanks . jeff  stinson gibner  01 / 29 / 2001 12 : 10 pm  to : jeffrey a shankman / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : p + spread options  jeff ,  we are reviewing the p + spread option book . one item of note is that the  correlations used to book the spread options have dropped significantly from  what was being used a year ago ( see charts below ) . i also remember that  john mee was using even higher correlations when he ran this book . in fact  he wanted to book options with a correlation of 1 . 0 , but our model would not  allow it , so he was using 0 . 999 .  we are currently calculating historical correlations for you as well . if  you want , vince and i can review this with you at the end of the day . just  let me know what time would be convenient .  - - stinson  x 34748\",0\n\"Subject: rice seminar  hello all :  fyi :  jones graduate school research seminar series in finance  sponsored by enron corp .  alon brav  fuqua school of business  duke university  will give a seminar at the jones school on friday , march 31 ,  \"\" competing theories of financial anomalies \"\"  * the seminar will begin at 3 : 15 pm in room 115 .  * note the slightly early start time to accommodate an early flight .  a pdf of the paper is available through the seminar website \",0\n\"Subject: re : yvan ' s application  thanks for your help , vince .  molly  vince j kaminski  05 / 11 / 2000 08 : 29 am  to : molly magee / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : yvan ' s application  molly ,  i am enclosing my recommendation letter for yvan chaxel .  vince\",0\n\"Subject: congratulations  your majesty ,  congratulations on your well deserved promotion to managing director . i am  very happy for you and a little sad as well because this was so long overdue .  the list every year was not complete without your name on it . we shall need  to celebrate this sometime .  all the best ,  tony .\",0\n\"Subject: risk 2000 boston - speaker reception 12 june 2000  there will be a drinks reception taking place on monday 12 june 2000 between  6 . 00 - 7 . 00 pm in the lower level of the congress center - for speakers ,  sponsors and exhibitors of risk 2000 , boston  ?  please let me know if you would like to attend so we can guage numbers .  ?  best regards ,  oliver  ?  ?  ?  direct : + 44 ( 0 ) 20 7484 9880  ?  risk publications , 28 - 29 haymarket , london swly 4 rx  fax : + 44 ( 0 ) 20 7484 9800 ? email : oliver @ risk . co . uk  www . riskpublications . com\",0\n\"Subject: re : university of texas conference on energy finance , february 2001  vince ,  greetings .  i write at this time to follow up on your kind intercession on our behalf  with jeff skilling ' s office regarding his participation in our spring  conference . we have secured hotel rooms at the radisson hotel , will  shortly have to provide a guarantee on those rooms , and would therefore  like to ascertain his participation as keynote speaker the evening of thur .  2 / 22 .  hope all is well . see you oct . 11 th , if not sooner . best ,  ehud  ehud i . ronn  jack s . josey professor in energy studies  department of finance  mccombs school of business  university of texas at austin  austin , tx . 78712 - 1179  voice : ( 512 ) 471 - 5853  fax : ( 512 ) 471 - 5073  internet : eronn @ mail . utexas . edu \",0\n\"Subject: natural gas production  vince -  i spoke with roy kass of the energy information agency this morning . apart  from clarifying the timeliness , or lack thereof , of the published  state - specific wellhead production estimates , he indicates their scientists  find severe weather in the fields ( freezes , hurricanes ) to be a far more  significant issue in production , and in wellhead prices , than is severe  weather in the northeast , for instance . also , he agrees with you as to there  being strictly increasing marginal costs in production , there being a rich  texture of wells in terms of their efficiency , technologies , maintenance and  investment issues .  clayton\",0\n\"Subject: re : john martin - baylor  cindy ,  i am in wharton on december 6 . other days prior to dec 6 are ok .  vince  from : mark palmer @ enron on 10 / 25 / 2000 10 : 33 am  sent by : cindy derecskey @ enron  to : vince j kaminski / hou / ect @ ect  cc : christie patrick / hou / ect @ ect  subject : john martin - baylor  good morning vince ,  christie has suggested that i be the liaison for john martin and your  research project ' enron - case study of a company reinventing itself ' .  in john ' s lastest email , he suggested that the first week of december works  with his schedule - up to december 6 th - or the following couple of weeks  after dec . 8 th . do these dates work for you as well ? if so , i will proceed  in booking one hour sessions with the following enron management :  ken lay  jeff skilling  andy fastow  if these dates do not work for you let me know when you are available and i  will try to coordinate with john , jeff , ken and andy . also , i will send an  introductory email to john .  i ' m looking forward to hearing from you ,  cindy derecskey  3 - 5670\",0\n\"Subject: re : mgmt 656  jack ,  this is up to the mba program .  i have no problem if they agreed to it .  the only constraint is the space and we  shall have to address the issue on thursday  during the first class .  vince  \"\" jack blanton , jr . \"\" on 02 / 28 / 2001 03 : 09 : 16 pm  to : vince . j . kaminski @ enron . com  cc :  subject : mgmt 656  dear proffesor kaminski  i wish to audit the energy derivatives class which  you are teaching on thursday nights . i am currently a  second year student in the emba program and am  chairman of nicklos drilling company . nicklos  drilling currently operates three land rigs along the  texas gulf coast and is constucting a fourth . i have  received permision from the emba program to audit the  class and the only conditions would be your permission  and space avalability .  thank you for your consideration ,  jack s . blanton , jr .  jblantonjr @ yahoo . com  713 - 222 - 0191  do you yahoo ! ?  get email at your own domain with yahoo ! mail .  http : / / personal . mail . yahoo . com /\",0\n\"Subject: re : followup  vince ,  i have left a message w / bruce requesting the password for the neural network  site , and am waiting for his reply .  trish  vince j kaminski  06 / 16 / 2000 10 : 16 am  to : patricia tlapek / hou / ect @ ect  cc :  subject : re : followup  trish ,  i could not access his neural network site .  it requires access password .  vince  from : patricia tlapek 06 / 12 / 2000 03 : 57 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : followup  - - - - - - - - - - - - - - - - - - - - - - forwarded by patricia tlapek / hou / ect on 06 / 12 / 2000  03 : 57 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  barcharts @ aol . com on 06 / 09 / 2000 10 : 01 : 59 am  to : patricia . tlapek @ enron . com , mike . roberts @ enron . com  cc :  subject : followup  good morning ,  i enjoyed visiting you yesterday afternoon to discuss the opportunity at  enron . sounds exciting , challenging and a good use of a lot of my skills and  experience . i look forward to further talks , hopefully this coming week .  i mentioned a couple web sites and don ' t know if they came through clearly on  the phone with my sore throat .  the neural network approach to timing can be found at  http : / / www . pfr . com / ptonline /  the introductory piece on technical analysis i wrote for forbes . com and the  glossary can be found at htttp : / / www . forbes . com / tool / html / 00 / jun / 0603 / feat . htm  i am also working with long time friend and neighbor steve nison with his  site and you can see the first on line lesson for free at  http : / / www . candlecharts . com /  have a nice weekend . hope to hear from you next week .  bruce m . kamich , cmt  barcharts @ aol . com  732 - 463 - 8438\",0\n\"Subject: re : fw : parent - subsidary model  hi iris  we started off with about 105 companies , which were enron europe ' s uk power and gas desk counterparties . i ' m not sure where you got the figure of 500 from - maybe this is the entire enron europe counterparty list , which constitutes the next major effort for end - july .  from this list of 104 , only the 72 in the spreadsheet had information in amadeus . the other firms had no information available , most likely because they were too new .  ben  from : iris mack / enron @ enronxgate on 17 / 04 / 2001 19 : 37 cdt  to : ben parsons / lon / ect @ ect  cc : tomas valnek / lon / ect @ ect , amitava dhar / corp / enron @ enron , mike mumford / lon / ect @ ect , vasant shanbhogue / enron @ enronxgate , vince j kaminski / hou / ect @ ect  subject : re : fw : parent - subsidary model  hi again ,  thanks for the financial data on enron ' s european counterparties .  it is my understanding that you started out with a list of 500 such counterparties . however , your spreadsheet only contains information for 72 of these european counterparties .  will you please tell me the logic behind the elimination of the 400 + other counterparties ?  thanks so much ,  iris  - - - - - original message - - - - -  from : parsons , ben  sent : tuesday , april 17 , 2001 2 : 56 am  to : mack , iris  cc : valnek , tomas ; dhar , amitava ; mumford , mike  subject : re : fw : parent - subsidary model  hi iris  the inputs and outputs generated by riskcalc can be seen in the attached file :  >  we only looked at the 5 - yr pd .  inputs are in columns a - u . these are the inputs generated by amadeus . you can run these inputs through the riskcalc model over the web ( http : / / www . moodysqra . com / privfirm ) using the login : dupred , password : detective . this is our trial licence which lasts for about 2 more weeks ( mike mumford will have more details about the current licence )  tomas valnek was getting the data from the amadeus database , so i ' ll leave it to him to determine if houston access is possible . in the meantime you can use the dataset attached for testing purposes .  ben  from : iris mack / enron @ enronxgate on 12 / 04 / 2001 17 : 58 cdt  to : ben parsons / lon / ect @ ect  cc : amitava dhar / corp / enron @ enron  subject : fw : parent - subsidary model  hi ben ,  how are you ? today we had a meeting with craig chaney and jeff kinneman to discuss the private firm model .  they requested that i spend some time carefully analyzing the moody ' s riskcalc model . i noticed that you also have been looking at riskcalc - as indicated in your paper entitled \"\" pricing parent companies and their subsidiaries : model description and data requirements \"\"  other than the example discussed in your paper , did generate any other test statistics , scores , etc .  also , you stated that you used amadeus database . we are in the process of trying to obtain data from various data vendors - but that may take a while . in the mean time , may we have access to the amadeus database or some sample dataset ?  thanks so much ,  iris  - - - - - original message - - - - -  from : valnek , tomas  sent : tuesday , april 10 , 2001 9 : 10 am  to : fiala , markus ; seyfried , bryan ; salmon , scott ; kirkpatrick , eric ; mumford , mike ; fontaine , jean - sebastien ; brooks , simon ; price , nigel ; diprose , robert ; rezaeian , reza ; gordon , mike ; lee , derek ; hershkovitz , ilan ; golden , sally ; stephan , nicholas ; albanis , george ; shanbhogue , vasant ; mack , iris  cc : parsons , ben  subject : parent - subsidary model  attached is a description of the parent - subsidiary model that ben and i have been working on over the last few weeks .  comments welcome !  tv  >\",0\n\"Subject: risk 2000 - boston  dear vince ,  i apologise for sending another email . i was wondering if you could confirm  your talk title ( plus some bullet points ) for your presentation at our annual  us congress . i have attached a condensed programme for the event - you are  speaking on stream three , part of the new research in derivatives modelling  and analysis section .  unfortunately we are printing the brochure at the end of the week and will  need these details by thursday 27 january .  best regards ,  oliver  direct : + 44 171 484 9880  risk publications , 28 - 29 haymarket , london swly 4 rx  fax : + 44 171 484 9800 email : conf - ny @ msn . com  www . riskpublications . com  - attl . htm  - condensed . doc\",0\n\"Subject: friday brown bag on derivative pricing  hello all :  if you think any of your people would be interested in the following - please  pass the messages on .  thanks !  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  message one  dear everyone ,  we understand the as members of enron research group , all of us are working  on very interesting projects , some of which are ground - breaking , and we all  keep a very keen mind on any development of new technology . we also find  out , through our own experience , that at this age of information explosion ,  it becomes more and more difficult to have enough time and energy to keep  abreast with most of the exciting stuff taking place in this department , let  alone in the industry . it is also our personal experience that many a  project we are working on has partially been attempted by other members of  this group .  as a remedy , we propose that the research group start an informal brown bag  lunch group meeting , once every two weeks on friday , for about 50 minutes .  it is hoped that it will provide a forum for us to facilitate with new  technology and development , as well as with each other \u0001 , s work , so that we do  not have to reinvent the wheels .  we envision the following : in this meeting ( or seminar ) , each one of us will  take turns to make presentations to the group . the topics could range from  theoretical consideration to practical implementation , be it option pricing ,  process modelling , insurance issue , or monte carlo simulation , or anything  one finds fascinating . the presentation material could be papers you have  been reading recently , projects you are working on , some problem that  bothers you , or an idea that is fascinating . you choose your own  presentation style . it could be  everything - you - always - wanted - to - know - but - were - afraid - to - ask , hand waving  style , or it can involve nitty - gritty , detailed derivations , anyway a style  that suits you and the topic . or it can simply be a dry - run for your  presentation at the next risk conference . zimin and alex will take upon the  responsibility of organizing the seminar .  we hope the seminar will be up and running in two - three weeks . for that  purpose your support will be greatly appreciated . please let either zimin or  alex know if you are interested in giving a presentation to the group and  provide a tentative schedule . surely the rest of the group will be happy to  hear your presentation .  we encourage everyone to participate this brown bag meeting , either to give a  talk or just sit in .  zimin lu  alex huang  message two  dear everyone ,  it looks like the proposed bblop has great support and is to have a great  start . vince , grant , , amitava , kevin , clayton and chonawee have promised  to give presentations to us . vince will kindly deliver the inaugural  presentation next friday ( march 31 ) on new methodology for option pricing  ( precise title  tba ) . bblop will start at 12 noon and last about 45 to 50 minutes . let ' s  make this a new enron tradition !  best regards .  zimin ,  alex\",0\n\"Subject: re : seminar series mug  barabara ,  it looks great . it ' s a very nice design .  vince  barbara ostdiek on 08 / 15 / 2000 10 : 26 : 12 pm  to : vince . j . kaminski @ enron . com ( vince kaminski )  cc :  subject : seminar series mug  vince :  i have attached the general design we are proposing for the enron seminar  series mug . we have a little refinement to do - spacing here and there a  couple type - o ' s but this is the idea . if you like it , we will put an order  in .  i ' ll put out an announcement on the seminar schedule shortly . so far the  fall line up includes will goetzman - yale , lenard mirman - virgina , jeff  pontiff - u . of washington , george allyannis - darden , and charles lee -  cornell .  thank you .  bbo  - mugl 1 . pdf\",0\n\"Subject: seating on the 32 nd floor  mike roberts eb 3240 a  jose marquez eb 3240 b  kevin moore eb 3240 c  vince kaminski eb 3240 d  patricia tlapek eb 3240 e  william smith eb 3240 f  elena chilkina eb 3240 g  open  eb 3239 f  charlie weldon eb 3239 e  open  eb 3274 a  open eb 3273 a  these are the only seats we have on the 32 nd floor .  the two open spaces are being used by another group temporally .  if you need additional information please feel free to call x 34710 .  thanks  kevin moore\",0\n\"Subject: dr . kaminski ,  thank you for giving me an opportunity to talk with you and zimin . it ' s my  great pleasure to meet with you  and your group members .  i met zimin last week . we had a wonderful talk . after our meeting , i handed  in him my current resume .  he may already forwarded my resume to you . if not , i will be very happy to  send you a copy .  by talking with you , zimin and by attending your presentation yesterday at  uh , i find i am really interesting the  fields that you are working on . i am deeply impressed by the research works  your team have done and i am  looking forward i am able to become one of your members . i am also looking  forward to be able to do researches  under your guidance .  i strongly feel that your research department provides the kind of jobs and  environments that i have been looking  for a long time . my career objective matches your research fields and  directions . i believe my training in mathematics  and computer science will provide me some necessary backgrounds in energy  risk management . i am also sure that  by working with you , i can greatly expand my it skills and experiences . i  also can learn tremendously from  you and your research teams .  currently after finishing my programing work as an it spcialist , i am  reading john hull ' s book and try to catch up necessary  background in finance and related fields . i am also readingyour \"\" managing  energy price risk \"\" book .  thank you for giving me a copy of this book .  again , thank you for giving me this opportunity and i am looking forward to  working in your team .  john hou  713 - 853 - 1600\",0\n\"Subject: energy book  hi grant ,  hope all is well with you . i trust you got my message via the voicemail  that ileft with vince late friday afternoon about my inability to travel -  i ' m trying to rearrange my trip for a couple of week ' s time when my ear has  cleared up , and i look forward to meeting with you one day .  i wrote to vince last week asking for a favour , but i ' m not sure ifhe is  there in houston . i know that you guys are probably very busy but i was  wondering if you can write a few sentences for me . i ' m sending out some  sample chapters to the people who responded positively ( all of them ! ) to my  request for some feedback on the book . chapter 1 has an ' overview ' of the  book with just a couple of sentences on each chapter . could you please  write a sentence or two for your chapter ?  i ' m including what i have already written ( although i think it has changed  slightly from this version ) so that you can see the style .  many thanks and best regards .  chris .  2 overview of this book  this book aims to provide an in - depth understanding of the pricing and risk  management of energy derivatives . in the remainder of this chapter we give  an overview of the fundamental principals needed to model and price energy  assets , and which underlie the rest of the book . as well as introducing  the techniques that underlie the black - scholes modelling framework we  discuss the numerical techniques of trinomial trees and monte carlo  simulation for derivative pricing which are used extensively later in the  book .  in chapter 2 we analyse spot energy prices . apart from describing  empirical prices we propose a number of processes that can be used to model  the prices . we look at the well - know process of gbm as well as mean  reversion , stochastic volatility and jump processes , discussing each , and  showing how they can be simulated and their parameters estimated .  chapter 3 , written by vince kaminski and grant masson of enron capital and  trade .  chapter 4 examines forward curves in the energy markets . although such  curves are well understood and straight forward in the world debt markets  the difficulty of storage in many energy markets leads to less well defined  curves . what we do in this chapter  chapter 5 presents an overview of the common and not - so - common derivative  structures in the energy markets and discusses their uses . examples of  products analysed in this chapter include a variety of swaps , caps , floors  and collars , as well as energy swaptions , compound options , asian ( or  average rate ) options , barriers , lookbacks , and ladder options .  chapter 6 investigates single and multi - factor models of the energy spot  price and the pricing of some standard energy derivatives . closed form  solutions for forward prices , forward volatilities , and european option  prices are derived and presented for all the models in this chapter  including a three factor stochastic convenience yield and interest rate  model with jumps .  chapter 7 shows how the prices of path dependent and american style options  can be evaluated for the models in chapter 6 . simulation schemes are  developed for the evaluation of european style options and applied to a  variety of path dependent options . in order to price options which  incorporate early exercise opportunities , a trinomial tree scheme is  developed . this tree is built to be consistent with the observed forward  curve and can be used to price exotic as well as standard american style  options .  chapter 8 develops a new methodology for valuing energy options based on  modelling the market observed forward curve . the approach results in a  multi - factor model that is able to capture realistically the evolution of a  wide range of energy forward curves and where the user defined volatility  structures can be of an extremely general form . closed - form solutions are  developed for pricing standard european options and efficient monte carlo  schemes for exotic options . the chapter finishes with a discussion of the  valuation of american style options .  chapter 9 focuses on the risk management of energy derivative positions .  in this chapter we discuss the management of price risk for institutions  that sell options or other derivatives to a client and who is then faced  with the problem of managing the risk through time . we begin with delta  hedging a portfolio containing derivatives and look at extensions to gamma  hedging - using the models from chapters 5 and 7 . the general model of  chapter 7 ideally suited to multi - factor hedging and this is also  discussed .  chapter 10 looks at the key risk - management concept of value at risk  applied to portfolios containing energy derivative portfolios . after  discussing the concept of the measure , we look at how the key inputs  ( volatilities , covariances , correlations , etc ) can be estimated . we then  compare the fours major methodologies for computing var ; delta ,  delta - gamma , historical simulation and monte - carlo simulation . finally , we  look at testing the var estimates for various underlying energy market  variables .\",0\n\"Subject: storage meeting  ladies and gentlemen ,  due to unavailability of conference rooms on the 44 th floor i have reserved a  conference room on the 19 th floor from 2 : 30 pm to 4 : 30 pm . the room number  is 19 c 2 . i realize some people might not be able to attend , so please let me  know and i will e - mail you a summary of the discussions after the meeting . i  would also like to suggest that we make this a regularly scheduled meeting  and have it bi - weekly or monthly . this will allow everyone to share their  opinions and knowledge to direct or redirect our efforts based on the market  situation . please let me know if you have any comments or suggestions .  thank you .  shalesh ganjoo\",0\n\"Subject: re : my son  vince ,  i left a message with one of yaron ' s roommates on thursday afternoon for him  to call asap for an interview on sunday . i guess he took the wrong number  down but i do not understand this because the roommate read the number back  to me and it was correct . when i did not hear from yaron i called on friday  and left a voice mail with my cell and office numbers . i still did not hear  from him and called again yesterday morning . i finally received a call at 4  pm yesterday but by that time my team and myself were half way back to  houston . sorry it did not work out . i have a call into charlene jackson as  to how she wants me to proceed and i will get back with you .  kristin  vince j kaminski @ ect  11 / 01 / 2000 08 : 40 am  to : john goodpasture / ots / enron @ enron , kristin gandy / na / enron @ enron  cc :  subject : my son  fyi  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 11 / 01 / 2000  08 : 47 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" shmuel oren \"\" on 10 / 31 / 2000 02 : 27 : 18 pm  to :  cc :  subject : my son  vince  apparently the recruiter spoke to one of my son ' s roommates and left a phone  number ( 713 ) 343 - 3214 which he tried several times and got busy signals .  today she called just before you called me and left her cellphone number but  he was in classes all morning and got the message in the afternoon . i really  appreciate your going out of your ? way to help . perhaps there will be another  opportunity . ?  shmuel ?\",0\n\"Subject: talon  vince :  here is the document sent by ryan today . i did not have the chance to look at  it yet .  paulo issler  - - - - - - - - - - - - - - - - - - - - - - forwarded by paulo issler / hou / ect on 04 / 12 / 2000 04 : 19  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  ryan siurek @ enron  04 / 12 / 2000 10 : 05 am  to : paulo issler / hou / ect @ ect  cc :  subject : re : draft analysis  fyi  - - - - - - - - - - - - - - - - - - - - - - forwarded by ryan siurek / corp / enron on 04 / 12 / 2000  10 : 05 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron capital management  from : trushar patel 04 / 11 / 2000 09 : 49 am  to : ryan siurek / corp / enron @ enron  cc :  subject : re : draft analysis  - - - - - - - - - - - - - - - - - - - - - - forwarded by trushar patel / corp / enron on 04 / 11 / 2000  09 : 49 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  ian . c . dsouza @ us . pwcglobal . com on 04 / 04 / 2000 01 : 42 : 34 pm  to : trushar . patel @ enron . com  cc : steven . j . stampf @ us . pwcglobal . com , timothy . luehrman @ us . pwcglobal . com  subject : re : draft analysis  hi trushar  please find attached our draft analysis . it is still very preliminary as we  have not been provided the latest version of legal documents and so the  analysis  reflects our understanding of the economics of the transaction as outlined to  us  based on discussions with enron and available prior draft documentation . .  the analysis uses the enron share price as of march 28 , 2000 ( $ 72 . 81 ) and  assumes the ljm 2 distribution is based on $ 30 m or 25 % irr . we anticipated  that  this might reach 30 % irr based on enron discussions with ljm 2 .  please call steve stampf ' s phone number for tomorrow ' s conference call at  9 . 30 am  our time on 212 597 3162 .  regards  ( see attached file : raptor v 5 . ppt )  the information transmitted is intended only for the person or entity to which  it is addressed and may contain confidential and / or privileged material . any  review , retransmission , dissemination or other use of , or taking of any action  in reliance upon , this information by persons or entities other than the  intended recipient is prohibited . if you received this in error , please  contact the sender and delete the material from any computer .  - raptor v 5 . ppt\",0\n\"Subject: enron team 3 question  hi melinda !  we need to get this to john henderson , but he did not come up on my email .  otherwise , likely any manager level at new power would know . any help in  forwarding would be great ! thanks !  - - christie ,  - - - - - forwarded by christie patrick / hou / ect on 03 / 27 / 01 07 : 47 pm - - - - -  \"\" degiacinto , clayton \"\"  03 / 27 / 01 02 : 51 pm  to : \"\" ' christie . patrick @ enron . com ' \"\"  cc : vince . j . kaminski @ enron . com  subject : enron team 3 question  hi christie and vince ,  we really look forward to seeing you all next week . we ' ve learned a lot  working on this project , and think we will provide some useful information  for you .  if possible , we need to know what states newpower is operating in .  specifically , what states there is a current marketing campaign ? should i  ask melinda mccarty for this information ?  thanks again for your help .  regards ,  tiger team 3\",0\n\"Subject: erac koch p + spread options  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 01 / 29 / 2001  10 : 42 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  stinson gibner  01 / 29 / 2001 09 : 47 am  to : bob lee / na / enron @ enron , paulo issler / hou / ect @ ect , zimin lu / hou / ect @ ect  cc :  subject : erac koch p + spread options  booking spreadsheet in in o : \\ research \\ common \\ projects \\ exotic 2001 _ 0125 . xls  sheet where options are booked is called \"\" index deals \"\" .  - - stinson  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 01 / 29 / 2001  09 : 43 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  mark fondren  01 / 26 / 2001 10 : 53 am  to : stinson gibner / hou / ect @ ect  cc :  subject : erac koch p + spread options  - - - - - - - - - - - - - - - - - - - - - - forwarded by mark fondren / hou / ect on 01 / 26 / 2001 10 : 53  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  mark fondren  01 / 25 / 2001 12 : 07 pm  to : john l nowlan / hou / ect @ ect  cc : spencer vosko / hou / ect @ ect  subject : erac koch p + spread options  price 1 = wti cushing physical cash price ( wti nymex  contract ) for example , the april 2001  wti cushing price equals the aprol wti nymex  contract .  price 2 = koch oil posting for west texas / new mexico intermediate .  koch p + = price 1 - price 2  price 2 is calculated by subtracting 3 spreads from price 1  1 . koch posting / wti nymex basis spread  2 . 66 . 6 % ( aprilol / mayol wti nymex spread )  3 . 33 . 3 % ( aprilol / junol wti nymex spread )  example using 1 / 24 / 2001 wti settles aprol 28 . 31  mayol 27 . 72  junol 27 . 19  april 2001 koch posting = april 2001 wti nymex settlement -  koch / nymex basis spread - . 666 ( apr / may ) - . 333 ( apr / jun )  = 28 . 31 -  2 . 75 - . 666 ( . 59 ) - . 333 ( 1 . 12 )  = 28 . 31 -  2 . 75 - . 3929 - . 37296  = 24 . 794  koch p + = 28 . 31 - 24 . 794  = 3 . 516  please call with any questions  mark f  ext 853 - 1982\",0\n\"Subject: \"\" enron day \"\" to be declared in spearman , texas  vince , f . y . i  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 09 / 20 / 2000  02 : 28 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  stinson gibner  09 / 20 / 2000 02 : 28 pm  to : cindy olson / corp / enron @ enron  cc :  subject : \"\" enron day \"\" to be declared in spearman , texas  cindy ,  you may or may not remember that i sent a short note to you last may  outlining a fundraising effort for the hansford county library in spearman ,  texas . the community was challenged to raise $ 20 , 000 which i offered to  match 2 to 1 . with enron foundations employee match , this grows to a total  mathching ratio of $ 4 for every $ 1 raised by the community . ( of course ,  because of the $ 15 , 000 / year limit , i have to spread my gifts over several  years in order to get the total amount matched by enron . )  sherry benton , the librarian in spearman just called and gave me the great  news that the $ 20 , 000 in community donations has been achieved . in fact , i  expect that the total community number will come to almost $ 25 , 000 once all  of the donations are received .  in order to recognize our part in all this , the mayor of the town is planning  to declare october 17 th as \"\" stinson gibner and enron day \"\" in spearman , and  they would like to have some public ceremony to bestow this recognition .  there will be coverage by the local radio station and newspaper and ,  possibly , by the amarillo newspaper as well .  they are asking if a representative from enron ( other than myself ) would be  interested in coming to spearman for this event . please let me know if you  or anyone else would be interested in doing this . spearman is about a 90  minute drive north from the airport in amarillo , and it is possible to get  there and back to houston on the same day .  thanks ,  stinson gibner  x 34748  p . s . is there any possibility of getting a one time raise on the $ 15 , 000 / year  matching cap so that i can have $ 40 , 000 matched in just two years instead of  three ?  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 09 / 20 / 2000  02 : 01 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  stinson gibner  05 / 05 / 2000 11 : 47 am  to : cindy olson / corp / enron @ enron  cc :  subject : thanks  cindy ,  i just received notification of enron ' s match of my $ 8000 donation to the  hansford county library in spearman , texas . ( all old pipeline hands know  spearman because both northern natural and transwestern pipelines run near by  the city . )  you may be interested to know what i am trying to accomplish there . the  library is one of the few independent public libraries in the state of texas  as it is owned neither by the county nor city . it ' s budget is met through a  combination of city , county , and private contributions . a big part of their  income comes from the \"\" thrift shop , \"\" spearman ' s version of the blue bird  circle . in order to help the library continue to provide quality services  to the community ( our library in spearman , population 3000 , is by all  accounts much better than the one in nearby perryton , population 15000 ) , i  am trying to help the library establish an endowment fund . we have set a  goal of raising $ 100 , 000 over the next 3 years . with enron ' s matching , i am  planning to provide about $ 80 , 000 of that amount with the other $ 20 , 000  coming from contributions from others in the local community .  i am also investigating if the library can get any type of matching grant  from other foundations , but it looks like most prefer to fund specific  projects rather than put funds towards endowments . let me know if you have  any suggestions for us .  thanks ,  stinson  x 34748\",0\n\"Subject: re : visit to enron  vince ,  dec . 29 at 9 : 00 will be fine . i have talked to shirley and have  directions .  thanks , bob  vince j kaminski wrote :  > bob ,  >  > can you come to our office on dec 29 at 9 : 00 a . m . ?  >  > please , call shirley crenshaw ( 3 - 5290 ) or stinson gibner ( 3 - 4748 )  > from the reception to be admitted to the building .  >  > vince kaminski\",0\n\"Subject: re : enron case study update  good afternoon john ,  i just want to drop you a line to update you re : andy fastow . i have  confirmed a one hour interview slot with mr . fastow in monday , december 4 th  from  11 : 00 a . m . - noon . this is in addition to your schedule interviews with mr .  lay and mr . skilling - outline below .  if you have any questions , please do not hesitate to contact me at  713 - 853 - 5670 .  regards ,  cindy  - - - - - forwarded by cindy derecskey / corp / enron on 11 / 06 / 2000 04 : 49 pm - - - - -  cindy derecskey  10 / 31 / 2000 01 : 44 pm  to : \"\" john martin \"\"  cc : vince j kaminski / hou / ect @ ect , christie patrick / hou / ect @ ect  subject : re : enron case study  good afternoon john ,  i hope things are well with you . i am writing to update you on the status of  your meetings with andy fastow , ken lay and jeff skilling . i have arranged  the following meeting dates and times with ken lay and jeff skilling , ( i am  still trying to work with andy fastow ' s schedule ) :  jeff skilling  december 4 th  2 : 00 - 3 : 00 p . m .  ken lay  december 4 th  3 : 30 - 4 : 30 p . m .  also , i will attempt to schedule the meeting with andy fastow for december  4 th for convenience - this will also allow us to possibly schedule additional  meetings for the 5 th ( as needed ) . i will let you know as soon as i ' m  successful .  regards ,  cindy derecskey  university affairs  enron corp .\",0\n\"Subject: sandeep kohli  dave ,  i would like to recommend to you sandeep kohli who is likely to approach you  regarding a  position in your area .  i have been working with sandeep for a number of years and i was always  impressed with his  skills , intelligence and mature , thoughtful approach to solving business  problems .  he is currently located in india ( our dpc unit ) and is looking for a  permanent position with enron in houston  for family reasons ( his wife is from houston and has a family here ) . of  course , there are  some other obvious factors affecting his decision .  vince\",0\n\"Subject: moddeling support for dpc related issues  a quick update on the status of sandeep kohli .  he is working currently in my group . he is available on a very short notice  to help you with  any quantitative modeling that can be required in making decisions regarding  our dpc strategy . in case you need his help , he can also rely on the support  of other members of my group with skills in different areas .  vince kaminski\",0\n\"Subject: alp presentation  on behalf of enron corp . i would like to invite you to an alp project presentation by a group of students  of jesse h . jones graduate school of management , rice university .  the students will present the results of a research project regarding electronic trading  platforms in the energy industry .  the presentation will be held on may 7 , at 4 : 00 p . m . at enron , 1400 smith .  we would also like to invite you to dinner , following the presentation .  vince kaminski  vincent kaminski  managing director - research  enron corp .  1400 smith street  room ebl 962  houston , tx 77002 - 7361  phone : ( 713 ) 853 3848  ( 713 ) 410 5396 ( cell )  fax : ( 713 ) 646 2503  e - mail : vkamins @ enron . com\",0\n\"Subject: re : real options  jim ,  i am scheduled to arrive in austin on may 4 at 10 : 32 a . m .  i shall be glad to join you and a group of your colleagues for lunch .  i am flying back to houston friday morning and we can meet for dinner after  the class .  i shall have a power point presentation on my pc . i can also  prepare a set of transparencies if this is more convenient for you .  vince  jim dyer on 04 / 27 / 2000 05 : 44 : 51 am  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc : sheridan titman  subject : real options  vince ,  i am traveling at this time , attending a nsf meeting in washington .  however , i wanted to touch base regarding plans for your presentation in my  class on real options next thursday ( may 4 ) . as you recall , the class is  from 3 : 30 to 6 : 30 , and you could plan to take a significant part of that  time for your presentation . sheridan titman has agreed to join us after his  class at about 6 : 00 for a 30 minute \"\" panel discussion \"\" with the students on  issues related to real options in practice . l  i am not sure about your travel plans , but we would be happy to plan  lunch on thursday with several of my colleagues . i would also be delighted  to be your host for dinner on thursday night if that is convenient for you .  i ' ll be back in my office on monday , and will look forward to  hearing from you .  jim  james s . dyer  fondren centennial chair in business  department of management science and information systems  cba 5 . 202  the university of texas at austin  austin , texas 78712 - 1175  email : j . dyer @ bus . utexas . edu  telephone : 512 - 471 - 5278  fax : 512 - 471 - 0587\",0\n\"Subject: request submitted : access request for iris . mack @ enron . com  you have received this email because the requester specified you as their  manager . please click  approval to review and act upon this request .  request id : 000000000024099  request create date : 3 / 16 / 01 5 : 39 : 34 pm  requested for : iris . mack @ enron . com  resource name : visual studio enterprise  resource type : applications\",0\n\"Subject: telephone interview with the enron research group  good morning richard :  your resume was forwarded to vince kaminski and the research group  and they would like to conduct a telephone interview with you at your  convenience .  please give me some dates and times that you would be available and  i will coordinate the schedule . also , the telephone number you wish to be  contacted at .  the telephone interview will be last approximately an hour and the  interviewers would be :  vince kaminski managing director , research  stinson gibner vice president , research  vasant shanbhogue vice president , research  thanks richard and we look forward to hearing from you .  regards ,  shirley crenshaw  administrative coordinator  enron research group  713 - 853 - 5290  email : shirley . crenshaw @ enron . com\",0\n\"Subject: li sun  vince ,  i am so glad that your meeting went well with li yesterday . this is a  confirmation email to let everyone know that li sun will begin in vince ' s  organization on monday , august 28 th . if you have any questions , please let  me know . thanks .  - - - - - - - - - - - - - - - - - - - - - - forwarded by jana giovannini / hou / ect on 08 / 23 / 2000  10 : 00 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : jana giovannini 08 / 21 / 2000 01 : 25 pm  to : vince j kaminski / hou / ect @ ect  cc : john j lavorato / corp / enron @ enron , jeffrey a shankman / hou / ect @ ect , hunter  s shively / hou / ect @ ect , shelly butler / hou / ect @ ect , ina rangel / hou / ect @ ect  subject : li sun  vince ,  thanks for your response . apparently , we were under the incorrect impression  that your group would be taking li ( based on jeff ' s note below ) . we  apologize for not contacting you last friday to confirm prior to \"\" placing \"\" li  in your group . i have faxed li ' s resume to you and hope that you will have  time to review it today . please call me back as soon as you can to discuss  li ' s opportunities in your group .  if vince is not interested in li for his group , we will consider li placed in  ena - gas trading ( original placement ) in john lavorato ' s organization . once  i hear from vince one way or the other , the program will consider li ' s  placement final in either research or ena - gas trading . hopefully this will  be resolved by tuesday morning so that we may communicate to li her rotation  information . if you have any questions , please let me know .  thank you !  vince j kaminski  08 / 21 / 2000 01 : 03 pm  to : jana giovannini / hou / ect @ ect  cc :  subject : re : vikas dwivedi  fyi  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 08 / 21 / 2000  01 : 08 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  08 / 21 / 2000 12 : 58 pm  to : shelly butler / hou / ect @ ect  cc : john j lavorato / corp / enron @ enron , jeffrey a shankman / hou / ect @ ect , hunter  s shively / hou / ect @ ect , vince j kaminski / hou / ect @ ect  subject : re : vikas dwivedi  shelly ,  i shall not accept anybody for a rotation without a prior interview .  li was scheduled to meet with me last thursday but she never showed  up . she did not call to cancel or to apologize for not showing up .  i have not seen her resume .  please , assume she is not rotating into my group till further notice .  vince  from : shelly butler 08 / 18 / 2000 03 : 37 pm  to : jeffrey a shankman / hou / ect @ ect  cc : hunter s shively / hou / ect @ ect , john j lavorato / corp / enron @ enron , vince j  kaminski / hou / ect @ ect , craig breslau / hou / ect @ ect , ina rangel / hou / ect @ ect  subject : vikas dwivedi  jeff ,  just wanted to confirm that li will be placed in vince kaminski ' s group .  vikas has been placed in ena middle market reporting to craig breslau .  please contact me at 3 - 4584 if you have any questions . thanks for your help ! !  shelly  from : jeffrey a shankman 08 / 18 / 2000 03 : 18 pm  to : shelly butler / hou / ect @ ect  cc : hunter s shively / hou / ect @ ect , john j lavorato / corp / enron @ enron  subject :  shelly ,  hunter spoke with li today and agrees that her first rotation should be in  vince ' s group doing modelling , etc . this will give her the broadest  experience for a first rotation . i ' m sure the other person in question ,  vikas , will do very well in hunter ' s group .  thanks for your help .  jeff\",0\n\"Subject: non - disclosure agreement and intellectual property rights  hi kay ,  i was referred to you by julia for assistance . here in research , we are in  the process of retaining prof . sheridan titman of university of texas at  austin to perform some consulting work . in anticipation , we would like to  have a non - disclosure agreement to protect the confidentiality of any  information we might provide him . also , we would like have an agreement on  how the intellctual property rights of any outcome of this effort will be  shared .  please let me know what information i can provide from this end to help you  draft these documents . my extension is 30936 . thanks .  rakesh\",0\n\"Subject: re : telephone interview with the enron corp . research group  dear kevin :  dr . kaminski , stinson gibner and zimin lu will interview you at the same time  in a group interview , which will last approximately 1 hour .  if it meets with your approval , i have scheduled the telephone interview for  this friday , august 4 at 1 : 00 pm . they will call you at 713 - 630 - 0768 .  fyi . the research group is responsible for option modeling , building systems  for risk quantification and management , development of optimization systems ,  assisting with statistical analysis and anything that requires advanced math ,  for  all of enron .  if you have any other questions , please let me know .  regards ,  shirley crenshaw  administrative assistant  enron corp . research  713 - 853 - 5290  email : shirley . crenshaw @ enron . com  ningbo xu on 08 / 01 / 2000 11 : 30 : 44 am  to : \"\" ' shirley crenshaw ' \"\"  cc : \"\" ' kevinxu 98 @ yahoo . com ' \"\"  subject : re : telephone interview with the enron corp . research group  dear shirley ,  sorry for getting back with you until today . i have been out of town since  last friday and didn ' t have access to emails .  i appreciate the opportunities to talk with mr . kaminski , mr . gibner , and  mr . lu and look forward to their phone calls . as to the date and time , i  will be available all day this friday and any day next week . please let me  know when they will be available so that i can arrange schedule to  accommodate . i can be reached at 713 - 630 - 0768 .  also , i have a couple of questions that i hope to get your help :  1 . will the interview be a group interview or each of them will talk with me  individually ?  2 . what ' s the role of the research group at enron ?  thank you very much and look forward to hearing from you .  kevin xu  - - - - - original message - - - - -  from : shirley crenshaw  to : xuni @ olin . wustl . edu  sent : 7 / 28 / 00 11 : 45 am  subject : telephone interview with the enron corp . research group  good afternoon mr . xu  your resume has been forwarded to the research group with enron corp .  they would like to conduct a telephone interview with you at your  convenience .  please let me know your available dates and times along with the  telephone  number you may be reached at and they will call you .  the interviewers would be :  vince kaminski managing director  stinson gibner vice president  zimin lu director  look forward to hearing from you .  regards ,  shirley crenshaw  administrative coordinator  enron corp . research  713 / 853 - 5290  email : shirley . crenshaw @ enron . com\",0\n\"Subject: weather person for london egm  folks :  we interviewed three candidates . one of the three ( tony hamilton ) seems to  be a very good fit within the enron culture and values .  recommended next steps  vince , mike and jeff interview tony via video conference or avistar  tony hamilton key strengths  quick thinker  good teams skills  driven - will be able to get the project off the ground quickly  has a commercial attitude  sees \"\" the big picture \"\"  tony hamilton is available for follow up interviews the first week of january .  thanks  jen\",0\n\"Subject: re : hello from london  zimin ,  i have a copy of the article .  i agree with you . the model is  essentially the same ( in intentions ) .  i shall distributed the copy of the paper  to the trades here . it explains  well the logic behind the model and it ' s  an independent source .  vince  zimin lu  05 / 30 / 2000 10 : 44 am  to : vince j kaminski / hou / ect @ ect  cc : stinson gibner / hou / ect @ ect  subject : re : hello from london  vince ,  i got the article . i can make a copy for you when i get back .  the article is pretty much for marketing purpose . my reading  from that paper is as follows :  1 . solve optimal exercise bounday using stocastic dp ;  2 . runing price trajectory to tracking storage level to give average storage  cycling ;  our model addresses the same issues , althrough maybe the implementation is  not quite the same .  i will fax to you if i can find the article here .  regards ,  zimin  vince j kaminski  05 / 30 / 2000 09 : 56 am  to : zimin lu / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : hello from london  zimin ,  there was an interesting article on gas storage modeling  by people from camminus in the march issue  of energy and power risk management .  please , see if you can get this article .  vince  zimin lu  05 / 30 / 2000 04 : 59 am  to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect  cc : anjam ahmad / lon / ect @ ect  subject : hello from london  vince and stinson ,  i am in the london office this week . things are quite nice here . my host  anjam arranged a full itinerary for me .  tuesday is reserved for anjam to talk about various subjects including  inflation modeling , power vol curve ,  mean reverting price & vol model , and i will talk about the spot and  multi - factor models , xll . wednesday , i  will concentrate on the gas storage model with natasha danilochkina .  thursday and friday i will talk to  haakan olafsson , mark jones , anjam , and natasha about uk gas forward curve  simulation , gas swing model ,  and implementation issues of uk virtural storage model . i will give you a  full report when i get back .  it is cold and rainy here in london . it makes me feel sunny and hot houston  actually is not that bad .  zimin\",0\n\"Subject: re : clustering for power  jaesoo ,  as we discussed last week on wednesday meeting can you , please ,  implement clustering for power curves by geographical region . this involves  the following :  1 . deciding together with risk control how many geographical regions we want  to use  and which enron ' s curves belong to each region .  2 . deciding together with risk control how to choose core curves for each  region . this decision can  be maid based on the a ) position size ; b ) statistical analysis . there might  be other considerations .  3 . doing regression analysis for each curve versus the corresponding core  curve .  winston ,  can is it possible to run var for the clustering results obtained by jaesoo  with clustering done by sas ?  should we wait for the stage re - fresh and what is the status on this ?  tanya .\",0\n\"Subject: re : exotica ( second request )  thanks anjam .  that ' s looks great .  sorry about the second request .  i didn ' t realise you were in a meeting .  thanks ,  sharad\",0\n\"Subject: mba career opportunity  shirley ,  please , arrange a phone interview . tt , vk , sg , zl .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 11 / 21 / 2000  09 : 06 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" qing chen \"\" on 11 / 17 / 2000 06 : 01 : 28 pm  to :  cc :  subject : mba career opportunity  dear ? vincent kaminski :  ?  i got your contact details from the web site for power marketers . i have a  strong interest in pursuing a career in the energy industry ? with a top  energy company like ? enron , where my abilities and qualifications can be  fully applied for our mutual benefit .  i am graduating in may with an mba ? degree with concentrations in finance and  information systems . this summer i worked ? as an intern with structuring and  analytics group of ameren energy . ? this internship ? has been especially  challenging and has enhanced my professional competencies . while there , i  was afforded the opportunity to ? develop a forward view model ? for ? off -  peak ? electricity price forecasting and analyze the data sets of a  fundamental ? model to create forward price curves . both projects added value  to the company and provided me with first - hand experience in the area of  energy trading and marketing as well as modeling techniques .  in addition , i have an undergraduate degree in mechanical engineering and  two years ' experience in power generating . with my work experience in energy  finance and exceptional academic and professional achievements , along with  my exemplary leadership and management potential and outstanding analytical ,  business communication , problem - solving and computer skills , i ' m convinced  that i will be able to make immediate contributions to your company .  i am attaching my resume for your review . should you have any questions or  need clarification , please feel free to contact me at ( 504 ) 861 - 9110 or  qchenl @ tulane . edu .  as i have some offers with deadlines approaching , i would appreciate it if  you could give me a quick response . i also expect ? a base compensation above  $ 75 k . i look forward to ? hearing from you soon .  ?  best regards ,  qing ( christine ) chen  mba 2001  a . b . freeman school of business  tulane university  tel : ( 504 ) 861 - 9110  - resumeus . doc  - resumeus txt . txt\",0\n\"Subject: resid fx option  - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 08 / 17 / 2000 09 : 57 am  - - - - - - - - - - - - - - - - - - - - - - - - - - -  zimin lu  08 / 17 / 2000 09 : 59 am  to : stinson gibner / hou / ect @ ect , paulo issler / hou / ect @ ect  cc :  subject : resid fx option  i have created a directory residfx in  where i put my monte - carlo model ( c project ) and calling spreadsheet for  the valuation .  zimin\",0\n\"Subject: re : spreadsheet for george posey  vince -  here is an analysis of the fund giving at the church .  first off , it appears from the data that a special \"\" appeal \"\" for fund giving  was made ( from the pulpit ? ) on april 19 , 1998 and april 25 , 1999 , ( perhaps  tied rhetorically into income taxes ? ) . then , by going back and incorporating  obvious dates from the calendars for 1997 - 1999 , the following regression  analysis is made , where each effect is added independently :  giving this sunday = $ 4403  + a minor $ 3 weekly time trend ( i . e . , multiply by the number of weeks since  jan . 5 , 1997 )  + no pure effect from last week ' s contributions ( i . e . , denies first - order  autoregressive effects )  + $ 2426 if easter sunday or the sunday nearest christmas  + $ 9695 if ( pastoral appeal ) april 19 , 1998 or april 25 , 1999  - $ 340 if the sunday falls on the weekend of a monday federal holiday  - $ 50 if the sunday following thanksgiving  - $ 73 if a summer weekend ( june 1 thru august 31 )  the pure time trend is very small , so an annual projection based on all 3  years data would be for giving to increase only a minor amount ( $ 150 ) for  2000 assuming a similar appeal for giving is made this april .  clayton\",0\n\"Subject: friday brown bag on derivative pricing  dear everyone ,  we understand the as members of enron research group , all of us are working  on very interesting projects , some of which are ground - breaking , and we all  keep a very keen mind on any development of new technology . we also find  out , through our own experience , that at this age of information explosion ,  it becomes more and more difficult to have enough time and energy to keep  abreast with most of the exciting stuff taking place in this department , let  alone in the industry . it is also our personal experience that many a  project we are working on has partially been attempted by other members of  this group .  as a remedy , we propose that the research group start an informal brown bag  lunch group meeting , once every two weeks on friday , for about 50 minutes .  it is hoped that it will provide a forum for us to facilitate with new  technology and development , as well as with each other \u0001 , s work , so that we do  not have to reinvent the wheels .  we envision the following : in this meeting ( or seminar ) , each one of us will  take turns to make presentations to the group . the topics could range from  theoretical consideration to practical implementation , be it option pricing ,  process modelling , insurance issue , or monte carlo simulation , or anything  one finds fascinating . the presentation material could be papers you have  been reading recently , projects you are working on , some problem that  bothers you , or an idea that is fascinating . you choose your own  presentation style . it could be  everything - you - always - wanted - to - know - but - were - afraid - to - ask , hand waving  style , or it can involve nitty - gritty , detailed derivations , anyway a style  that suits you and the topic . or it can simply be a dry - run for your  presentation at the next risk conference . zimin and alex will take upon the  responsibility of organizing the seminar .  we hope the seminar will be up and running in two - three weeks . for that  purpose your support will be greatly appreciated . please let either zimin or  alex know if you are interested in giving a presentation to the group and  provide a tentative schedule . surely the rest of the group will be happy to  hear your presentation .  we encourage everyone to participate this brown bag meeting , either to give a  talk or just sit in .  zimin lu  alex huang\",0\n\"Subject: year end 2000 performance feedback  note : you will receive this message each time you are selected as a reviewer .  you have been selected to participate in the year end 2000 performance  management process by providing meaningful feedback on specific employee ( s ) .  your feedback plays an important role in the process , and your participation  is critical to the success of enron ' s performance management goals .  to complete requests for feedback , access pep at http : / / pep . corp . enron . com  and select perform review under performance review services . you may begin  providing feedback immediately and are requested to have all feedback forms  completed by friday , november 17 , 2000 .  if you have any questions regarding pep or your responsibility in the  process , please contact the pep help desk at :  houston : 1 . 713 . 853 . 4777 , option 4  london : 44 . 207 . 783 . 4040 , option 4  email : perfmgmt @ enron . com  thank you for your participation in this important process .  the following is a cumulative list of employee feedback requests with a  status of \"\" open . \"\" once you have submitted or declined an employee ? s request  for feedback , their name will no longer appear on this list .  review group : enron  feedback due date : nov 17 , 2000  employee name supervisor name date selected  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  tamarchenko , tanya v vasant shanbhogue oct 26 , 2000  walton , sheila h david oxley oct 27 , 2000  yaman , sevil vasant shanbhogue oct 27 , 2000\",0\n\"Subject: another bet  vince  i here you are running abook on how quickly we can implement convolution var for power and since i am up against a summer deadline for this i felt i should take the other side .  so how about i buy you dinner if i get it done ?  rgds  dp\",0\n\"Subject: re : a personal favor  thanks very much . i am attaching his resume for your review .  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : monday , may 07 , 2001 12 : 08 pm  to : anurag . saksena @ gmacrfc . com  cc : vince . j . kaminski @ enron . com  subject : re : a personal favor  anurag ,  i shall talk about vikas to our it people .  can you send me his resume ?  vince  \"\" saksena , anurag \"\" on 05 / 07 / 2001 10 : 06 : 54 am  to : ? ? \"\" ' vkamins @ ect . enron . com ' \"\"  cc :  subject : ? a personal favor  vince ,  i have ? left a voice mail to you and will wait to talk to you personally .  my brother ? vikas , who is now in london , is trying to make a switch from  consulting world to ? working for a specific firm . over last few months , i  have heard of great deal ? about the success of enron on line business which  fits well in the area of his ? expertise . i am wondering if you know of some  one in london who he can speak to ? regarding career opportunities .  since ? i spoke to you last , a number of things have changed . recently , my  manadate was ? broaden to include leading a charge for developing a risk  management function ? for both the domestic and international businesses for  gmac . needless to say , ? this is exciting albeit making the life a little  more hectic than ? usual .  talk ? to you later .  anurag  952 - ? 857 - 6133  ?  - resl . doc\",0\n\"Subject: d - g energy software procurement  laine ,  enclosed is a revised copy of the software licence agreement with d - g energy . the earlier version had prices and conditions of use which differed from what had been discussed over the telephone . this version brings into line the terms with what has been agreed upon , and has been given tentative approval by the president of d - g , who i met with last week .  i have highlighed the sections which have changed from the version that you sent out for signature last november .  i assume that the revised document will have to be reviewed by legal again . let me know if i can be of any assistance in this process .  regards ,  stinson gibner\",0\n\"Subject: re : statistician from rice  osman ,  this guy is too much .  i would tell him that we understand  that he has to make the best choice  for himself and can change his mind but at this point we treat  his decision as final but we still appreciate the interest he showed  in enron .  we never had any luck hiring a statistician .  maybe we shall get one some day .  vince  osman sezgen @ ees  04 / 20 / 2001 11 : 54 am  to : vince j kaminski / hou / ect @ ect , pinnamaneni krishnarao / hou / ect @ ect  cc :  subject : statistician from rice  i had a message on my phone this morning from william indicating that  he had changed his mind and will be taking another job . he also mentions that  the other organization will give him time to publish his thesis and he assumes  enron would not do that .  i am inclined to give up on him but wanted to get your input before doing so .  osman\",0\n\"Subject: business trip to houston  dear all ,  i will be in the houston office from monday 10 th july through wednesday 19 th  july and stopping in ny on the return leg to meet staff at mg metals ny on  thursday 20 th july at the suggestion of lloyd fleming who is co - ordinationg  the rac activities for the integration of mg metals . i will probably take a  day of leave on friday 21 st which would mean that i will be back in the  london office on monday 24 th july .  regards ,  anjam  p . s . as usual i will be contactable on my cellular : ( 07747 ) 868131 or through  lotus notes .\",0\n\"Subject: re : moving roy ibasco  hi vanessa :  you will need to fill out a \"\" churn request \"\" and forward it to the \"\" move team \"\"  they will take care of everything that you put on the form . i am attaching a  copy  of the form for your information . the receiving department is responsible  for  doing this . he will need boxes to pack his belongings ( ask him how many  he needs - he will have to do the packing ) . the only item that moves other  than his personal items , is his telephone . the computer , chair , etc .  belongs to  the research group .  if you have any questions , or need help , please let me know .  thanks !  vanessa carranza @ enron  06 / 08 / 2000 04 : 47 pm  to : shirley crenshaw / hou / ect @ ect  cc :  subject : moving roy ibasco  shirley -  i need to have roy ibasco ' s things moved to eb 2930 c from ebl 948 and have it  charged to co / rc 413 - 1708 . please give me a call if you have any questions !  thanks -  vanessa c  3 - 5030\",0\n\"Subject: re : agenda for vc  craig ,  thanks for your email regarding tomorrow ' s houston / london videoconference .  attached is an updated spreadsheet which elaborates upon the issues amitava  and i will discuss tomorrow .  regards ,  iris  - - - - - original message - - - - -  from : chaney , craig  sent : thursday , april 19 , 2001 2 : 34 pm  to : kirkpatrick , eric ; salmon , scott ; cruver , brian ; dhar , amitava ; mack ,  iris ; mumford , mike ; detiveaux , kim  subject : agenda for vc  folks ,  here were some of the things i thought would be useful we could discuss :  status and schedule on data aquistion : iris and mike  riskcalc testing : methodology , criteria , and schedule : iris and amitava  model development : which model are going be developed and when : iris and  amitava  feel free to add to the agenda .  craig\",0\n\"Subject: mgmt 656  enclosed please find the final grade rosters for mgmt 656 . ? grades are due  into our office no later than friday , may 4 .  remember that this is the university deadline for graduating students .  thank you for your help ! - pam ( 713 - 348 - 6223 )  - 656 . doc\",0\n\"Subject: re : outage tracker option and background  karl ,  thanks a lot . i have passed this information to grant masson  who worked here on a related problem .  he will get in touch with you regarding this technology .  vince  karl tomlinson @ enron _ development  07 / 24 / 2000 06 : 00 pm  to : vince j kaminski @ ect  cc :  subject : outage tracker option and background  vince ,  to follow up on the idea of a means for effectively tracking instantanious  plant faliure utilising either system frequency or connection point voltage .  the system frequency phase shift across a network will probably be the best  option as this would allow alll significant deviations to be tracked along  with relative network performance from a few points .  i am currently chasing nemmco ( au system operator ) to get hold of a few weeks  of 4 second metering data for the whole system to see if there is enough  measurement consistency to prove one of the ideas .  the idea follows along the lines ( literally ! ) that when a unit fails it will  introduce a shock into the system and reduce system frequency , which is then  reacted to by frequency control services offered in by generators . the drop  in frequency is noticable across the whole network and as one option may  change the phase shift across the whole grid . the phase shift across the  network is constantly changing due to loads and power factor correctrion  devices switching on and off , however a unit failure may be distinct .  the second option relates to how a unit fails , whereby if a circuit breaker  is involved as in the case of uncontrolled shutdowns , then the outage will  cause an rf pulse that should propogate across some of the network .  transformers will attenuate the pulse , however it should be detectable many  miles away from the fault location . measure the arrival time at several point  on the network , work out the shift and backtrack on the network . part of the  solution is already proven in lightning trackers . the solution may be made  more simple by detecting the exact point on the sinewave that the unit failed  ( i . e . measuring the three phases at lmhz and then sending the data through a  dsp ) . this solution is more complex , however this should allow unit failure  to be pinpointed to a station . the timing base for each of the nodes may be  sourced from gps timing , self locating at the same time !  will send you some links and documents for potentail hardware and setups .  karl .\",0\n\"Subject: cal berkeley recruiting  congratulations ! ! !  you have been nominated to join the cal berkeley campus team . beginning this  fall , enron will head to the university of california at berkeley for the  first time ! in addition to traditional analyst recruiting focusing on  finance , economics , and business majors , the analyst program will add a new  addition to it ' s rotational program - the global technology track . the  global technology track will provide a pipeline for mis , computer science and  engineering majors to join enron and rotate within enron net works and ebs  technology functions . therefore , we would like to create a recruiting team  that represents all aspects of enron including both it and business \"\" swat  teams \"\" to help attack campus during career fairs , presentations , dinners , and  other events searching for the ideal candidate .  in the next week you will receive an invitation to the cal berkeley planning  session and kickoff . at that time we will review strategies , profiles , and  events to ensure that enron is able to attract the top candidates ! please  make every effort to attend .  if you have any questions , please do not hesitate to contact me at 3 - 3589 .  thanks ,  ashley baxter  global technology track  recruiter\",0\n\"Subject: re : gwen koepke  i will see you on friday at 3 . if you would like for me to come before then , just let me know .  - - - - - original message - - - - -  from : kaminski , vince  sent : wednesday , may 02 , 2001 3 : 01 pm  to : labbe , anne  cc : kaminski , vince  subject : re : gwen koepke  anne ,  thanks for contacting me about this .  as a matter of fact , i wanted to talk to you about it  today as this matter was outstanding for a long time .  i think we should go ahead and adjust gwen to manager ,  effective march 1 . the compensation would be her current base plus  10 k . this is what we typically do when we promote an associate to a manager .  such promotions take place in march and i think  gwen should not be penalized for the inefficiency of her management  ( i . e . my and maureen ' s procrastination ) .  on unrelated and more serious matter . gary hickerson is the primary client  for maureen ' s services . he communicated to me a few weeks ago that he is  unwilling to underwrite maureen ' s position ( he is in general unhappy with  her contribution ) . this means that maureen will have to find another sponsor or leave enron .  given her abrasive and aggressive personality finding another internal customer  will be quite a challenge .  gary volunteered to pay a very generous severance to maureen from his budget .  i would like to talk to you about it when you have a few minutes .  vince  from : anne labbe / enron @ enronxgate on 05 / 02 / 2001 10 : 34 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : gwen koepke  vince ,  just wanted to touch base with you . i have tried to contact maureen so that gwen ' s title and salary can be adjusted to manager just as you requested , but have not heard any response from her . would you like for me to wait until i hear from maureen or should i go ahead and proceed in changing her title ? i just want to make sure that gwen is in the right peer group during prc .  also , i am going to try and set up a meeting with you next week through shirley to discuss any buring issues that you are experiencing , and your expectations during prc .  thanks ,  anne\",0\n\"Subject: re : next visit to houston  yes and so would the northeast trader john suarez  vince j kaminski  06 / 29 / 2000 04 : 07 pm  to : george hopley / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : next visit to houston  george ,  would you like to take a like at the service ( see below ) .  the meeting is on july 12 at 2 : 30 ( 19 th floor ) .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 06 / 29 / 2000  04 : 08 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" edward krapels \"\" on 06 / 29 / 2000 03 : 53 : 40 pm  please respond to  to : \"\" ' vince j kaminski ' \"\"  cc : \"\" jeffrey shorter \\ ( e - mail \\ ) \"\"  subject : re : next visit to houston  vince ,  good to hear from you and i ' m glad you ' re available . how is wednesday at  2 : 30 ?  i did look at eol and am not surprised to see its quality . i was unable to  say much about it in my risk electricity hedging and trading report because  of deadline pressures . how is the site doing ? i am intrigued by the  competition for trading platforms and was astonished to hear that goldman ,  morgan , bp and shell were going to launch a site to compete with yours . talk  about a shotgun marriage !  if we have time next week , i could step you through our website - -  www . weathereffects . com . i ' m very proud of what we ' ve done . i can ' t give out  a password yet but would be happy to walk through the site with you over the  phone using my password . it ' s a very ambitious site - - with state - of - the - art  wsi weather ( seasonal , 6 - 10 , and day to day ) driving a good load model for  pjm and nepool . esai contributes oil and gas input price forecasts , capacity  judgments , and \"\" herding \"\" ideas to develop power price forecasts for same  time periods . after one month ' s full - bore effort , i ' m pleased with the  results ( e . g . , we forecast nepool onpeak to be $ 43 and it turned out $ 46 ) .  have a great weekend .  ed  - - - - - original message - - - - -  from : vince j kaminski [ mailto : vince . j . kaminski @ enron . com ]  sent : wednesday , june 28 , 2000 5 : 29 pm  to : ekrapels @ esaibos . com  cc : vince j kaminski ; shirley crenshaw  subject : re : next visit to houston  ed ,  i shall be available on both days . what about wednesday ,  july 12 , between 1 : 30 and 4 : 00 . please , let me know  what time would work for you .  it will be nice to see you again .  vince  p . s . by the way , did you have a chance to take a look at the eol ?  \"\" edward krapels \"\" on 06 / 28 / 2000 02 : 49 : 41 pm  please respond to ekrapels @ esaibos . com  to : vince j kaminski / hou / ect @ ect  cc :  subject : next visit to houston  dear vince ,  i will be returning to houston during the week of july 10 .  esai and weather services international have launched - - after more than 18  months of r & d - - our service , called energycast power trader and energycast  gas trader , for power traders in nepool and pjm . i would be happy to review  the service with you as well as take you on a tour of our web site . are you  available on july 12 - 13 ?  sincerely ,  ed krapels\",0\n\"Subject: year end 2000 performance feedback  note : you will receive this message each time you are selected as a reviewer .  you have been selected to participate in the year end 2000 performance  management process by providing meaningful feedback on specific employee ( s ) .  your feedback plays an important role in the process , and your participation  is critical to the success of enron ' s performance management goals .  to complete requests for feedback , access pep at http : / / pep . corp . enron . com  and select perform review under performance review services . you may begin  providing feedback immediately and are requested to have all feedback forms  completed by friday , november 17 , 2000 .  if you have any questions regarding pep or your responsibility in the  process , please contact the pep help desk at :  houston : 1 . 713 . 853 . 4777 , option 4  london : 44 . 207 . 783 . 4040 , option 4  email : perfmgmt @ enron . com  thank you for your participation in this important process .  the following is a cumulative list of employee feedback requests with a  status of \"\" open . \"\" once you have submitted or declined an employee ' s request  for feedback , their name will no longer appear on this list .  review group : enron  feedback due date : nov 17 , 2000  employee name supervisor name date selected  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  andrews , naveen c rudi c zipter oct 31 , 2000  baxter , ashley david davies nov 02 , 2000  campos , hector o peyton s gibner nov 06 , 2000  carson , richard l richard b buy oct 30 , 2000  crenshaw , shirley j wincenty j kaminski oct 26 , 2000  gandy , kristin h celeste c roberts nov 01 , 2000  gorny , vladimir theodore r murphy ii nov 02 , 2000  hewitt , kirstee l steven leppard nov 06 , 2000  kindall , kevin vasant shanbhogue oct 30 , 2000  lamas vieira pinto , rodrigo david port oct 31 , 2000  raymond , maureen j wincenty j kaminski nov 02 , 2000  rosen , michael b christie a patrick nov 06 , 2000  sun , li kevin kindall nov 09 , 2000  supatgiat , chonawee peyton s gibner oct 27 , 2000  tamarchenko , tanya v vasant shanbhogue oct 26 , 2000  villarreal , norma e sheila h walton oct 26 , 2000  walton , sheila h david oxley oct 27 , 2000  williams , matthew steven leppard nov 08 , 2000  yaman , sevil vasant shanbhogue oct 27 , 2000  yuan , ding richard l carson oct 31 , 2000\",0\n\"Subject: update - meteorologist search  we have identified two good candatites who would be available for a london  interview the week of the 18 th :  1 . kerryn hawke  2 . stephen cusack  also strong but not available for that week is  3 . piero chessa ( working for ecmwf in italy )  we have a couple others here in the states if the london interviews don ' t  work out .  i am forwarding under separate cover kerryn and stephen ' s cv ' s with telephone  numbers to jen  - - - mike\",0\n\"Subject: vince ,  i ' ll have him e - mail you a cv .  i ' d be happy to speak at the power risk conference .  frank  professor frank a . wolak email :  wolak @ zia . stanford . edu  department of economics phone : 650 - 723 - 3944  ( office )  stanford university fax : 650 - 725 - 5702  stanford , ca 94305 - 6072 phone : 650 - 856 - 0109 ( home )  world - wide web page : http : / / www . stanford . edu / ~ wolak cell phone : 650 - 814 - 0107\",0\n\"Subject: your advice is appreciated  vince ,  in the morning we were talking about the el paso candidate who thinks he is above something and is not  willing to take certain project or responsibility . in real life , we also occasionally have similar stiuation . ( an  example is attached ) .  i would like to have your guidance when such a situation occurs .  zimin  - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 05 / 02 / 2001 02 : 07 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  zimin lu  05 / 02 / 2001 01 : 41 pm  to : paulo issler / hou / ect @ ect  cc :  subject : re : asian option for pavel  our convention is whoever finalizes the model should write the documentation . it does not make sense  to write one when changes are anticipated . you have been working on this almost a year , it never  strikes you that we need a documentation ?  i created exotica . xll , does that also give you an excuse not working on exotica documentation ?  zimin  paulo issler  05 / 02 / 2001 11 : 52 am  to : zimin lu / hou / ect @ ect  cc : tai woo / enron @ enronxgate @ enron , pavel zadorozhny / enron @ enronxgate  subject : re : asian option for pavel  i am surprised that we do not have the documentation ready .  i can make that for you . it is not there because you did not put that together by the time it was created and all the changes i have made did not required changes on the functionality .  paulo issler  zimin lu  05 / 02 / 2001 11 : 29 am  to : tai woo / enron @ enronxgate @ enron , paulo issler / hou / ect @ ect  cc : pavel zadorozhny / enron @ enronxgate  subject : re : asian option for pavel  tai woo ,  here are the c - codes for the crudeapo . ' sig ' is the spot  volatility meaning the price volatility within the delivery period .  you should consult with pavel for the definition of this \"\" extra \"\" parameters . we  would like to see the position monitor once you get it running .  we might have some additional suggestions .  paulo ,  why don ' t we have a documentation on crudeapo you worked on ?  i can not find it in exotica help file . please supply that to tai , thanks .  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : tai woo / enron @ enronxgate on 05 / 02 / 2001 09 : 55 am  to : paulo issler / hou / ect @ ect  cc : kara maloney / enron @ enronxgate , zimin lu / hou / ect @ ect  subject : asian option for pavel  this morning , zimin told me that pavel is using a special model in evaluating his asian option portfolio .  he asked me to talk to you in order to access to the code so that i can see the difference made to the model .  as i cannot find the doc . describing this model , please tell me what that new input parameter ' sig ' is .  thanks , \",0\n\"Subject: re : dabhol power  jim ,  can you meet with us tomorrow ? one of my associates worked  on a few projects with dpc and will visit them in january . his name is  krishnarao  pinnnamaneni and he will be gone for 3 weeks , starting wednesday  please , let shirley crenshaw , my assistant ( 3 - 5290 ) , know what time would  work for you tuesday .  vince  james a hughes @ enron _ development  12 / 18 / 2000 01 : 07 pm  to : vince j kaminski @ ect  cc :  subject : dabhol power  vince :  as i am sure you are aware , we are facing significant challenges with the  dabhol project . as i have delved into the project and our problems , i have  been disturbed by our lack of information / data relative to our position in  the grid and the overall fundamentals for the region . i would like to meet  with you and get your assistance in identifying some resources to try and  help the india team develop a better understanding of their market and how to  identify / develop / use the fundamentals .  thanks .  jim\",0\n\"Subject: password for pjm 101 : the basics  dear pjm attendees :  for pjm 101 : the basics - febuary 27 , 2001 @ 9 : 00 am et  your username and password will both be pjm + the first 3 letters of your  last name . for instance my username and password would be pjmcur .  feel free to go to our web site and change this at any time .  http : / / www . virtual - workshops . com  if you have any questions regarding this , give me a call .\",0\n\"Subject: re : flat screens  f . y . i .  - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 01 / 07 / 2000 06 : 03  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  kevin g moore  01 / 07 / 2000 06 : 03 am  to : tommy garza / hou / ect @ ect  cc :  subject : re : flat screens  thanks tommy ,  the locations are correct .  eb 3131 b and eb 3132 b .  the persons at the locations  are trisha tlapek and michael sergeev .  thanks  also we need a computer for roman zadorozhny  location ebl 972 b .  please inform me on this . . . . . . . . .  kevin moore\",0\n\"Subject: giuseppe paleologo  molly ,  giuseppe is finishing his ph . d . at stanford and worked for us last summer .  we would like to make him an offer to bring him as a manager . vince would  like to offer $ 110 k base plus a $ 20 k signing bonus and whatever would be the  appropriate relocation package ( he is single . ) . he is leaving on monday  for europe , so it would be preferable if we can get an offer letter in his  hands by friday or saturday . i have verbally given him this offer already ,  but told him that you would be the expert regarding what is covered in the  relocation part . he should be sending me his current address by email  which i will forward to you a . s . a . p .  thanks ,  stinson  x 34748  p . s . regarding jinbaek . we would be happy to pay his air ticket .  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 04 / 25 / 2001  03 : 26 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  giuseppe andrea paleologo @ stanford . edu on 04 / 23 / 2001  07 : 33 : 29 pm  please respond to gappy @ stanford . edu  sent by : gappy @ stanford . edu  to : stinson . gibner @ enron . com  cc :  subject : re : from stinson  stinso , nice to hear from you . things are going well here . the only  annoyance comes from the ins . i applied for curricular practical  training , and it will take about three months to have the work permit .  receiving an h - 1 takes understably much longer . other than this , i would  like to know how are things in the research group and ebs .  i will leave for italy next monday and will stay there two weeks . i hope  to hear from you before my departure .  giuseppe  stinson . gibner @ enron . com wrote :  >  > giuseppe ,  >  > how are you ? is your thesis still on schedule ? i hope things are going  > well . i will try and give you a call in the next day or two to see how  > things are going and to bring you up to date on what ' s going on here at  > enron . look forward to talking with you .  >  > - - stinson  - -  giuseppe a . paleologo  email : gappy @ stanford . edu  office phone : ( 650 ) 725 - 0541\",0\n\"Subject: ca for henwood engagement  bonnie ,  thanks for getting back to me on friday .  enron will be contracting with henwood for henwood to provide an analysis of  the indian power system . however , enron will be providing a significant  part of the input data used for the study including our views on the indian  market in the future and also very detailed information about our dabhol  plant . we want to be sure that the information provided by us to henwood  remains confidential . we also want to be sure that henwood considers as  confidential the results of this study provided by henwood to enron .  the enron and related entities providing information are likely to include  dabhol power corp .  enron india  also possibly enron north america  the primary henwood contact for the project is robert schenck in australia at  henwood energy services , inc .  26 greenhill road  wayville , sa 5034  australia  the henwood corporate office is in sacramento :  2710 gateway oaks drive  suite 300 north  sacramento , ca 95833  let me know if you need any additional information .  - - stinson  x 34748\",0\n\"Subject: global risk management initiative  rick ,  i read your memo regarding global risk management initiative . i am sending  you the  information regarding a related initiative on which i have been working last  year and which  is moving now into the implementation stage . it ' s enterprise - wide risk  management  and it ' s really an effort to measure business risks consistently across the  company .  i hope my group can be helpful in designing the general approach to this  problem .  please , let me know what your thoughts are .  vince\",0\n\"Subject: re : credit reserve update  we have not done any recent analysis since the end of january or maybe even  the end of december . i will have rod nelson and tanya rohauer relook at the  impact of the changing yield curve on credit reserve .  we have a lot of improvements we need to make on our current methodology when  we have the time and resources to dedicate to it .  bill  vince j kaminski  02 / 17 / 2000 10 : 14 am  to : william s bradford / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : credit reserve update  bill ,  most recent vincent ' s update on what ' s going on with the credit model .  another issue . i am increasingly concerned with our general approach to the  generation  of probabilities of default . recent developments in the credit markets are  likely to  change completely the dynamics and levels of interest rate spreads . i am  curious if  you looked at the credit reserve based on the current yield curves ( as of the  last few days ) .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 17 / 2000  09 : 05 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  vincent tang  02 / 15 / 2000 05 : 12 pm  to : vince j kaminski / hou / ect @ ect  cc : grant masson / hou / ect @ ect , tanya tamarchenko / hou / ect @ ect  subject : credit reserve update\",0\n\"Subject: re : 2 - survey / information email 5 - 7 - 01  outlook migration team @ enron  05 / 04 / 2001 03 : 26 pm  to : alex huang / corp / enron @ enron , amitava dhar / corp / enron @ enron , anita dupont / na / enron @ enron , bob lee / na / enron @ enron , chonawee supatgiat / corp / enron @ enron , elena chilkina / corp / enron @ enron , gwyn koepke / na / enron @ enron , jaesoo lew / na / enron @ enron , jason sokolov / hou / ect @ ect , jose marquez / corp / enron @ enron , kate lucas / hou / ect @ ect , kenneth parkhill / na / enron @ enron , kevin g moore / hou / ect @ ect , lance cunningham / na / enron @ enron , leann walton / na / enron @ enron , martin lin / hou / ect @ ect , maureen raymond / lon / ect @ ect , mike a roberts / hou / ect @ ect , nelson neale / na / enron @ enron , paulo issler / hou / ect @ ect , pinnamaneni krishnarao / hou / ect @ ect , rabi de / na / enron @ enron , rakesh bharati / na / enron @ enron , sandeep kohli / enron _ development @ enron _ development , sevil yaman / corp / enron @ enron , shirley crenshaw / hou / ect @ ect , sofya tamarchenko / na / enron @ enron , stinson gibner / hou / ect @ ect , tanya tamarchenko / hou / ect @ ect , tom barkley / na / enron @ enron , tom halliburton / corp / enron @ enron , vince j kaminski / hou / ect @ ect , william smith / corp / enron @ enron , youyi feng / na / enron @ enron , zimin lu / hou / ect @ ect , alan muntz / npng / enron @ enron , anita swanson / npng / enron @ enron , bambi heckerman / npng / enron @ enron , christopher burns / npng / enron @ enron , darla steffes / npng / enron @ enron , geneva patterson / npng / enron @ enron , jerry boston / npng / enron @ enron , jody warner / npng / enron @ enron , john freeman / npng / enron @ enron , judith weakly / npng / enron @ enron , laurie willemyns / npng / enron @ enron , leon schneider / npng / enron @ enron , loren charbonneau / npng / enron @ enron , ray neppl / npng / enron @ enron , scott coburn / npng / enron @ enron , alliece morris / ots / enron @ enron , etsweb @ enron , joe zhou / fgt / enron @ enron , ladonna dervin / ots / enron @ enron , larry hill / fgt / enron @ enron , max brown / ots / enron @ enron , patty hermanek / fgt / enron @ enron , peter lu / et & s / enron @ enron , randy cantrell / gco / enron @ enron , richard abramowicz / et & s / enron @ enron , rick craig / ots / enron @ enron , robert fugel / et & s / enron @ enron , tina dunnaway / fgt / enron @ enron , wendy koh / et & s / enron @ enron , anne bike / corp / enron @ enron , barry tycholiz / na / enron @ enron , carli smith / na / enron @ enron , doug fletcher / enron _ development @ enron _ development , jacquelyn matthews / na / enron @ enron , janelle russell / enron _ development @ enron _ development , joanne smith / corp / enron @ enron , kayla bruzzese / na / enron @ enron , michael j beyer / hou / ect @ ect , michael j miller / enron communications @ enron communications , michelle lincoln / enron _ development @ enron _ development , shelly jones / hou / ect @ ect , susan huston / hr / corp / enron @ enron , zachary sampson / na / enron @ enron , alison smith / nyc / mgusa @ mgusa , bernie penner / nyc / mgusa @ mgusa , janet vala - terry / nyc / mgusa @ mgusa , lilia penagos / nyc / mgusa @ mgusa , patricia benington / nyc / mgusa @ mgusa , jack netek / enron communications @ enron communications  cc :  subject : 2 - survey / information email 5 - 7 - 01  current notes user :  to ensure that you experience a successful migration from notes to outlook , it is necessary to gather individual user information prior to your date of migration . please take a few minutes to completely fill out the following survey . when you finish , simply click on the ' reply ' button then hit ' send ' your survey will automatically be sent to the outlook 2000 migration mailbox .  thank you .  outlook 2000 migration team  full name : vince j kaminski  login id : vkamins  extension : 3 - 3848  office location : ebl 962  what type of computer do you have ? ( desktop , laptop , both ) desktop , laptop  do you have a pda ? if yes , what type do you have : ( none , ipaq , palm pilot , jornada ) palm pilot  do you have permission to access anyone ' s email / calendar ? no  if yes , who ?  does anyone have permission to access your email / calendar ? shirley crenshaw , anita dupont  if yes , who ?  are you responsible for updating anyone else ' s address book ? no  if yes , who ?  is anyone else responsible for updating your address book ? no  if yes , who ?  do you have access to a shared calendar ? no  if yes , which shared calendar ?  do you have any distribution groups that messaging maintains for you ( for mass mailings ) ? no  if yes , please list here :  please list all notes databases applications that you currently use :  in our efforts to plan the exact date / time of your migration , we also will need to know :  what are your normal work hours ? from : 7 : 30 to : 6 : 30  will you be out of the office in the near future for vacation , leave , etc ? no  if so , when ? from ( mm / dd / yy ) : to ( mm / dd / yy ) :\",0\n\"Subject: option hedging for ees  eugene ,  bob and i had a discussion about your question you raised yesterday .  for an option writer , he has the obligation to deliver , so he hedges it with  the underlying by adjesting delta positions . the hedging cost , theoretically ,  should be equal to the fair value of the option premium .  on the other hand , for the option holder , he has no obligation , by delta  heging ,  he would pay double for the option , with no upside . so he should not hedge  it at all .  if the option holder wants to protect the time value of the option , he should  sell  the option to the market or some equivalent options to create a theta - neutral  portfolio .  this may require trading in both the orginal and the equivalent option  underlyings .  our question to you , if the call options you mentioned are embedded in the  ees  contracts , say fixed price sale contracts , what makes it possible to just  separate those options  and sell them to the market to retain the full values of the options ? we  conjecture that these  options are meant to hedge the original contract . by selling those options  you eliminate the upside of the  original contract .  give one of us a call if you want to discuss this further .  zimin\",0\n\"Subject: interview schedule for seksan kiatsupaibul  attached please find the interview packet for the above - referenced person .  the interview will happen friday , july 7 , 2000 . print all three documents  for your hard copies . if you have any questions , or conflicts of schedule ,  please do not hesitate to contact me .  shawn grady  59385\",0\n\"Subject: re : anita dupont resume  sheila walton is out of the office this week . i will be the hr representative  handling this group in her absence . please send the job description to me ,  norma villarreal , so that i can begin the process .  please call me if you have any questions on this or any other hr related  issue .  thank you  norma villarreal  x 31545  vince j kaminski  08 / 07 / 2000 08 : 29 am  to : sheila walton / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , norma  villarreal / hou / ect @ ect  subject : re : anita dupont resume  sheila ,  no , we have to go through the posting phase first .  i shall ask shirley to provide the job description .  vince  from : sheila walton 08 / 04 / 2000 02 : 44 pm  to : vince j kaminski / hou / ect @ ect  cc : norma villarreal / hou / ect @ ect  subject : re : anita dupont resume  vince , alice has strong qualities for a sr admin asst . vince , have we posted  this position on the job posting board ? if so , great . if not , we need to  post this opening to prove that we have given an opportunity to all existing  enron employees before we go outside to external candidates . otherwise ,  existing employees have a valid complaint that we are limiting their  advancement within enron but hiring externally . if we have not posted this ,  i will have the recruiter contact shirley so shirley can give us a job  description . then we can post and interview anita simultaneously . please  let me know asap if this has been posted . thanks .  sheila walton  vince j kaminski  08 / 02 / 2000 08 : 48 am  to : sheila walton / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : anita dupont resume  sheila ,  i would like to hire anita dupont as a senior admin assistant , reporting  to shirley .  please , call me about it after you review the resume .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 08 / 02 / 2000  08 : 52 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  anita dupont @ enron  08 / 02 / 2000 08 : 17 am  to : vince j kaminski / hou / ect @ ect  cc : shirley crenshaw / hou / ect @ ect  subject : anita dupont resume  vince :  here is the resume you requested . thanks . anita\",0\n\"Subject: re : a resume - canadian trader  john ,  he is currently a student at carnegie mellon , one - year computational finance  program . i got his resume recruiting in the campus . i would recommend him as  a potential hire ( my group or trading ) .  vince  john j lavorato @ enron  12 / 10 / 2000 11 : 40 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : a resume - canadian trader  vince where did this resume come from and is he still employed by the  national bank in monteal .\",0\n\"Subject: enterprise risk management conference  it appears that things are filling up fast . among the open topics listed ,  \"\" techniques for the clarification and quantification of operational risk  within the energy industry \"\" and \"\" var , stress testing , and extreme value  theory within an enterprise risk management framework \"\" seem to be the best .  we have liberty to suggest our own topic , maybe along the lines of  asset / liability management . do you have a preference ?  - kevin k .  - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin kindall / corp / enron on 08 / 08 / 2000  04 : 20 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" paul bristow \"\" on 08 / 08 / 2000 10 : 28 : 37 am  please respond to \"\" paul bristow \"\"  to :  cc :  subject : enterprise risk management conference  dear kevin ,  ?  following our telephone conversation , please find attached a summary of  topics proposed for inclusion in the forthcoming enterprise risk management  conference . last year the event attracted over eighty delegates and more are  expected this year . the conference will be held in houston on thursday 16 th  and friday 17 th november , with a pre - conference seminar on the 15 th . as we  discussed , i would be delighted to invite enron to lead a session . i would  be happy to consider any of the available sessions or if you have a session  that you feel is currently missing from the programme , do not hesitate to  make a suggestion .  ?  i have attached a file that gives an indication of the topics that have been  identified so far . although i have bullet points for the sessions i would  first like to identify interested parties and then work with them to develop  a session that reflects their particular expertise and experience . i also  think that by continuously developing the points we can make greater  allowances for continuity between each participant .  ?  i look forward to speaking with you soon .  ?  yours sincerely ,  ?  paul bristow , senior course and conference producer , eprm  + 44 ( 0 ) 20 7484 9883  - maildoc . doc\",0\n\"Subject: fw : luncheon meeting : asap  dear mr . kaminski :  just to bring you up to date . i am no longer with american general . i shall ,  therefore , appreciate an opportunity to meet with you for lunch at the  earliest possible time . i can be reached at 713 - 722 - 7199 .  thank you .  maruti more  713 - 722 - 7199  - - - - - original message - - - - -  from : more  to : vince j kaminski  date : friday , december 17 , 1999 8 : 55 pm  subject : re : luncheon meeting  thank you for your response . i was very happy to hear from you .  i am also taking next week off and will be back to work on december 27 th .  please do call me when you get back . would very much appreciate the  opportunity to have a quick lunch with you , if possible . hope everything is  going well .  have wonderful christmas holidays .  regards  maruti more  713 - 831 - 6209 ( o )  - - - - - original message - - - - -  from : vince j kaminski  to : more  cc : vince j kaminski  date : friday , december 17 , 1999 3 : 35 pm  subject : re : luncheon meeting  hello ,  i shall be taking a few days off around xmas . i shall call you at the end  of  december  when i get back to the office .  with best holiday wishes ,  vince  \"\" more \"\" on 12 / 01 / 99 09 : 28 : 09 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : luncheon meeting  dear mr . kaminski :  how are you doing ? i want to find out if we can meet again for a quick  lunch .  you might know that in maharashtra , india there is now a new chief  minister  ( ceo of the state government ) . i am proud to say that he and i are from  the same  town , latur .  i would really enjoy talking with you again , at your convenience .  i will call you tomorrow to follow up .  thank you .  sincerely ,  maruti more  - - - - - original message - - - - -  from : vince j kaminski  to : more  cc : vince j kaminski ; vkaminski @ aol . com  date : thursday , july 01 , 1999 6 : 16 am  subject : re : luncheon meeting  dear mr . more ,  let ' s meet at 11 : 45 in the lobby of the enron building .  we can walk to one of the restaurants in the downtown area .  vince kaminski  ( embedded enron capital & trade resources corp .  image moved  to file : from : \"\" more \"\"  picl 7002 . pcx ) 06 / 30 / 99 10 : 38 pm  to : vince j kaminski / hou / ect  cc :  subject : luncheon meeting  dear mr . kaminski :  i am looking forward to our luncheon meeting on this friday , july 2 ,  1999  at  11 : 30 am . please let me know where we should meet . thank you for  taking time  out  from your busy schedule .  sincerely ,  maruti more  tel . : 713 - 831 - 6209  - attl . htm\",0\n\"Subject: amr research preview information  vince ,  feel free to use this username and password to surf around the amrresearch site  ken  - - - - - - - - - - - - - - - - - - - - - - forwarded by kenneth parkhill / na / enron on 04 / 12 / 2001 01 : 23 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  webmaster @ www . amrresearch . com ( craig mackay ) on 04 / 11 / 2001 05 : 34 : 08 pm  to : kenneth parkhill  cc :  subject : amr research preview information  the following is your user name and password for an amr research preview account .  username : parkhilll 51647  password : remain  the preview section will give you access to the executive summaries section and the presentation library . if you have any questions about amr research , please email info @ amrresearch . com or call ( 617 ) 542 - 6600 .  to access the preview section , please go to the following url .  http : / / www . amrresearch . com / members\",0\n\"Subject: vol skew no - arbitrage constraints  the attached note lists conditions that can be used to verify that a given  vol skew curve does not generate arbitrage opportunities in a strip of option  prices .  if you have questions or want to discuss implementation , please give me a  call .  bob lee  x 35163\",0\n\"Subject: re : research resumes  molly ,  below are the resumes sent to us by focus . vince suggested that we  interview one person plus sriram , who already lives in houston . karim looks  like the most qualified , but my fear is that we may not be able to afford  him . i am assuming that vince will want to hire at most at the manager  level . can you first check and see if karim would consider coming at a  manager level salary before we spend time talking with him . if he is too  senior , then we should talk to samir , who looks like a more junior level  person .  thanks ,  stinson  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 04 / 05 / 2001  02 : 03 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  stinson gibner  04 / 05 / 2001 08 : 42 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : resumes  vince ,  see below for my picks based on the resumes . the others marked as \"\" no \"\"  might be ok as well , but did not seem to have as much slant towards finance .  - - stinson  vince j kaminski  04 / 04 / 2001 03 : 45 pm  to : stinson gibner / hou / ect @ ect  cc :  subject : resumes  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 04 / 2001  03 : 45 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  to :  cc :  subject : resumes  here are some people you might want to speak with . ? siriam lives in  houston . ? please see the attached resumes of the following :  ?  karim ashktorab yes ( might be expensive ? )  stephen liu no  farshad ravanshad no  matthew rusk no  samir ranjan yes  cedric chow no  sriram vasudevan maybe ( already in houston )  ?  regards ,  ?  scott gerson  focus capital markets  71 vanderbilt avenue  suite 200  new york , ny 10017  ( 212 ) 986 - 3344 tele  ( 212 ) 986 - 3370 fax  - focus sriram vasudevan . doc  - focus cedric chow . doc  - focus samir ranjan . doc  - focus matthew rusk . doc  - focus farshad ravanshad . doc  - focus stephen liu . doc  - focus karim ashktorab . doc\",0\n\"Subject: mid - year 2000 performance feedback  note : you will receive this message each time you are selected as a reviewer .  you have been selected to participate in the mid - year 2000 performance  management process by providing meaningful feedback on specific employee ( s )  that have been identified for you . your feedback plays an important role in  the performance management process , and your participation is very critical  to the success of enron ' s performance management goals .  please provide feedback on the employee ( s ) listed below by accessing the  performance management system ( pep ) and completing an online feedback form as  described in the \"\" performance management quick reference guide \"\" . you may  begin your feedback input immediately . please have all feedback forms  completed by the date noted below .  if you have any questions regarding pep or your responsibility in the  process , please call the pep help desk at the following numbers :  in the u . s . : 1 - 713 - 853 - 4777 , option 4  in europe : 44 - 207 - 783 - 4040 , option 4  in canada : 1 - 403 - 974 - 6724 ( canada employees only )  or e - mail your questions to : perfmgmt @ enron . com  thank you for your participation in this important process .  the following list of employees is a cumulative list of all feedback  requests , by operating company , that have an \"\" open \"\" feedback status . an  employee ' s name will no longer appear once you have completed the feedback  form and select the \"\" submit \"\" button in pep .  review group : enron  feedback due date : jun 16 , 2000  employee name supervisor name date selected  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  ahmad , anjam dale surbey may 22 , 2000  carson , margaret m james d steffes may 26 , 2000  carson , richard l richard b buy may 22 , 2000  crenshaw , shirley j wincenty j . kaminski may 24 , 2000  ganjoo , shalesh peyton s gibner jun 15 , 2000  ghosh , soma timothy davies may 31 , 2000  kaminski , wincenty j . david w delainey jun 05 , 2000  overdyke , jere c . david w delainey jun 12 , 2000  peyton , john a randal t maffett jun 05 , 2000  rotenberg , douglas m . david l . haug jun 15 , 2000\",0\n\"Subject: please approve : application request ( wsmh - 4 esnva )  security resource request wsmh - 4 esnva has been submitted for your approval .  to view the request , double click your left mouse button on the notes  document link below .  quick steps to approve or reject request form :  1 . click the button to view details of the requests .  2 . click the button to approve or reject the requests .  3 . to edit the request form , double - click anywhere on the form .  see the online help for instructions or call ect security .\",0\n\"Subject: raptor position reports for 12 / 28 / 00  attached are the latest available daily position report files for the 4  raptor vehicles which include spreadsheets detailing what is hedged within  each vehicle . one thing that i forgot to mention in our meeting yesterday is  that there is considerable indecision as to whether or not raptor 4 will be  included in the cross - guarantees , so we will need to have a value with or  without raptor 4 . i will send a follow - up e - mail with the latest drafts  available for the cross guarantees . let me know as questions arise . thanks  again .  ron  - - - - - forwarded by ron baker / corp / enron on 01 / 03 / 2001 09 : 25 am - - - - -  gordon mckillop  12 / 29 / 2000 12 : 26 pm  to : ben f glisan / hou / ect @ ect , andrew s fastow / hou / ect @ ect , richard  causey / corp / enron @ enron , rick buy / hou / ect @ ect , greg whalley / hou / ect @ ect  cc : barry schnapper / corp / enron @ enron , andrea v reed / hou / ect @ ect , ryan  siurek / corp / enron @ enron , kevin d jordan / corp / enron @ enron , michael  kopper / hou / ect @ ect , chris loehr / hou / ect @ ect , anne yaeger / hou / ect @ ect , rodney  faldyn / corp / enron @ enron , ron baker / corp / enron @ enron ,  amy . flores @ ljminvestments . com , l ' sheryl hudson / hou / ect @ ect , wes  colwell / hou / ect @ ect , kevin howard / enron communications @ enron communications ,  david port / market risk / corp / enron @ enron , jordan mintz / hou / ect @ ect , maria  lebeau / hou / ect @ ect , michael s galvan / hou / ect @ ect , david maxwell / hou / ect @ ect ,  susie ayala / hou / ect @ ect , hope vargas / hou / ect @ ect , bob butts / gpgfin / enron @ enron  subject : raptor position reports for 12 / 28 / 00\",0\n\"Subject: request submitted : access request for  pinnamaneni . krishnarao @ enron . com  you have received this email because the requester specified you as their vp .  please click  approval to review and act upon this request .  request id : 000000000010552  request create date : 12 / 18 / 00 8 : 53 : 23 am  requested for : pinnamaneni . krishnarao @ enron . com  resource name : vpn  resource type : applications\",0\n\"Subject: re : petrochemical forward curves  vince ,  you will find the most recent email exchanges below . per our discussion , i did sit down with christian last week to talk about a fundamental / econometric approach to forward curve construction as was done for the agricultural efforts . let me know how you , vasant , and stinson would like to proceed on this matter .  nelson  - - - - - - - - - - - - - - - - - - - - - - forwarded by nelson neale / na / enron on 04 / 18 / 2001 08 : 55 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : christian lebroc / enron @ enronxgate on 04 / 17 / 2001 04 : 41 pm  to : nelson neale / na / enron @ enron  cc :  subject : re : petrochemical forward curves  please review the \"\" curve model 2 k \"\" file which was built by research a few years back for plastics trading group . i would like to work with you or someone in research as far as building the same model for all petrochemical products .  the \"\" benz _ curve \"\" file is what i have done so far but it is very primitive compare to the other model . let me know what i need to do going forward .  christian  - - - - - original message - - - - -  from : neale , nelson  sent : friday , april 13 , 2001 11 : 28 am  to : lebroc , christian  subject : re : petrochemical forward curves  what kind of crude price volatility are you proposing to use ( nymex ) ? as i recall , we did find some relationship between the time series price variable and one of the s & d terms that you had placed in the excel worksheet . there was no relationship with lagged price either ? if you don ' t mind , please forward the data to me so that i can take a quick look at it .  nelson  from : christian lebroc / enron @ enronxgate on 04 / 12 / 2001 05 : 44 pm  to : nelson neale / na / enron @ enron  cc :  subject : re : petrochemical forward curves  for gbm , i was thinking about using crude volatility . unfortunately , supply and demand is not a good indicator of predicting prices because of the economic complexity of processing aromatics . statistically , there is no relationship between utilization , supply , demand and price . inserting time lag does not make the number any better either .  christian  - - - - - original message - - - - -  from : neale , nelson  sent : thursday , april 12 , 2001 5 : 23 pm  to : lebroc , christian  subject : re : petrochemical forward curves  hi christian ,  both mean reversion and gbm models assume that all information related to a future price may be found in the historical price . the approach employed in the ag curves suggests that there may be some fundamental information related to supply and demand that impacts also drives future price . a portion of the mean reversion process is actually captured with inclusion of lagged prices ( autoregressive component ) . a gbm process requires some information on price volatility . since there is presumably no forward / future curve for the commodity of interest , it is difficult to come up with historical volatility values . hope it helps .  nelson  from : christian lebroc / enron @ enronxgate on 04 / 12 / 2001 11 : 46 am  to : nelson neale / na / enron @ enron  cc :  subject : petrochemical forward curves  neslon ,  i would like to insert \"\" mean reversion \"\" and \"\" geometric brownian motion \"\" in the linear forward curve equation you put together for me earlier this week . please inform me on how to assemble the above request .  thanks  christian  - - - - - original message - - - - -  from : lebroc , christian  sent : tuesday , april 10 , 2001 2 : 29 pm  to : neale , nelson  subject : petchem data  > >\",0\n\"Subject: ed krapels  louise ,  some time ago i sent you a message regarding ed krapels . he is writing a book  on energy  commodity markets and would like to learn more about eol .  can you give him a call and chat with him for 10 minutes . he is a good  friend of enron and  it would be free ad for us .  vince\",0\n\"Subject: carnegie mellon candidates  kristin :  we are sending the interview request form information to molly magee to  bring the following two candidates in for interviews :  frank ( feng ) qian  punit rawal  we have no further interest in the following two candidates . do you handle  contacting them ?  heap - ho tan  kyubaek heo  thanks !  shirley\",0\n\"Subject: summer internship at enron  jana :  vince kaminski is interested in taking kyriakos frantzeskakis into his group  as a summer associate . once you have finalized your staffing , please confirm  with vince kaminski the placement status .  thanks ,  celeste  - - - - - - - - - - - - - - - - - - - - - - forwarded by celeste roberts / hou / ect on 03 / 12 / 2001  11 : 14 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  03 / 12 / 2001 11 : 08 am  to : celeste roberts / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , kevin kindall / corp / enron @ enron , shirley  crenshaw / hou / ect @ ect , kristin gandy / na / enron @ enron  subject : summer internship at enron  celeste ,  we shall be happy to take him as an intern ( summer asociate ) .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 12 / 2001  11 : 07 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  kevin kindall @ enron  03 / 12 / 2001 09 : 27 am  to : vince j kaminski / hou / ect @ ect  cc : vasant shanbhogue / hou / ect @ ect  subject : summer internship at enron  - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin kindall / corp / enron on 03 / 12 / 2001  09 : 26 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  kf 2 @ andrew . cmu . edu on 03 / 12 / 2001 09 : 15 : 09 am  please respond to  to :  cc :  subject : summer internship at enron  dear kevin ,  following my interviews at gsia on february 15 / 16 , i will join enron as a  summer associate this may . i would be very excited to join the research  team , if possible .  thank you in advance ,  kyriakos frantzeskakis\",0\n\"Subject: interview  dear mr . kaminski :  i am very sorry to tell you that i have to cancel my interview with you  scheduled on feb 9 th . i had a job offer from citadel investment at chicago  with a deadline on feb 5 th . i have been trying to get an extension for the  past week and unfortunately it failed today . with this very short time  frame , it is impossible for me and enron ' s interviewing process to meet the  feb 5 th deadline . how unwillingly , i would not be able to visit enron for  after taking citadel ' s offer . i hope you will find another candidate from  our class . there are some people still available . i will be happy to help  you get in touch with those interested .  please keep in touch and i wish you well in your business !  frank qian  fqian @ andrew . cmu . edu\",0\n\"Subject: ees implementation  message sent from the pjm - customer - info mailing list at  pjm - customer - info @ majordomo . pjm . com :  valued customer :  ees production cut - over  the production ees application will be made available to the registered users  on  monday april 17 , 2000 for day - ahead scheduling . the production system will be  preloaded with all schedules submitted through the current scheduling process  to  that point ( pjm identifiers for these pre - loaded schedules will be provided  through the usual scheduling practices ) . hourly schedules may be entered  beginning april 18 , 2000 .  the sandbox will be made unavailable at the time of production implementation .  prior to april 17 , the https : / / eestest . pjm . com url will be reserved for the  sandbox . beginning april 17 , the https : / / ees . pjm . com url will point to the  production ees application .  registration  users with accounts on the sandbox will automatically have accounts on the  production system . if you have not registered , please complete the  authorization and registration forms located at  http : / / www . pjm . com / ees / ees _ index . html . the contact designated on the ees  authorization form will be faxed a list of user id ' s and passwords upon  completion of the registration process .  ees support  pjm is enthusiastic about providing the responsive support you and your  technical staff require . please contact our customer hotlines with your  functional and technical inquiries .  * functional support : ( 610 ) 666 - 8980  * technical support : ( 610 ) 666 - 8886  * email : eeshelp @ pjm . com  questions may be directed to pjm customer service at ( 610 ) 666 - 8980 .  to unsubscribe from this list , send an e - mail to majordomo @ majordomo . pjm . com  containing only the following line in the body of the e - mail :  unsubscribe pjm - customer - info\",0\n\"Subject: re : confirmation of meeting  i would very much like to meet vince , unfortunately i am in back to back  meetings all day today . maybe we could rearrange next time vince is in london  or i am in houston .  regards  paul  to : paul e . day  cc :  date : 29 / 09 / 2000 17 : 52  from : shirley . crenshaw @ enron . com  subject : re : confirmation of meeting  paul :  fyi .  regards ,  shirley  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 09 / 29 / 2000  11 : 49 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  shirley crenshaw  09 / 29 / 2000 11 : 51 am  to : wendy . dunford @ arthurandersen . com @ enron  cc :  subject : re : confirmation of meeting ( document link : shirley crenshaw )  wendy :  i am so sorry for the late notice , but vince will be in london for 1 day  only ,  monday , october 2 nd . he has had some time freed up and if paul and  julian could meet with him , they can call him at the grosvenor house ,  870 - 400 - 8500 . his morning is already full , but lunch , dinner or afternoon  would work .  regards ,  shirley  wendy . dunford @ arthurandersen . com on 09 / 18 / 2000 10 : 14 : 51 am  to : shirley . crenshaw @ enron . com  cc :  subject : re : confirmation of meeting  hi shirley  thanks for getting back to me .  regards  wendy  * * * * * * * * * * * * * * * * * * * internet email confidentiality footer * * * * * * * * * * * * * * * * * * *  privileged / confidential information may be contained in this message . if  you  are not the addressee indicated in this message ( or responsible for  delivery of  the message to such person ) , you may not copy or deliver this message to  anyone .  in such case , you should destroy this message and kindly notify the sender  by  reply email . please advise immediately if you or your employer do not  consent to  internet email for messages of this kind . opinions , conclusions and other  information in this message that do not relate to the official business of  my  firm shall be understood as neither given nor endorsed by it .  * * * * * * * * * * * * * * * * * * * internet email confidentiality footer * * * * * * * * * * * * * * * * * * *  privileged / confidential information may be contained in this message . if you  are not the addressee indicated in this message ( or responsible for delivery  of  the message to such person ) , you may not copy or deliver this message to  anyone .  in such case , you should destroy this message and kindly notify the sender by  reply email . please advise immediately if you or your employer do not consent  to  internet email for messages of this kind . opinions , conclusions and other  information in this message that do not relate to the official business of my  firm shall be understood as neither given nor endorsed by it .\",0\n\"Subject: re : rtp conference  hill ,  yes , i think it can be done . i am in london  right now and i shall come back next week thursday .  please , give me call about it .  vince  vincent kaminski  managing director - research  enron corp .  1400 smith street  room ebl 962  houston , tx 77002 - 7361  phone : ( 713 ) 853 3848  ( 713 ) 410 5396 ( cell )  fax : ( 713 ) 646 2503  e - mail : vkamins @ enron . com  hill huntington on 03 / 22 / 2001 04 : 47 : 33 pm  to : vince kaminsky  cc :  subject : rtp conference  vince ,  sounds like there are several enron people very interested in our  seminar . many thanks for passing the idea around .  do you think that these groups might provide some sponsorship ? i didn ' t  know whether you have already asked them and they are thinking about it or  whether i need to approach them directly . i would appreciate any  suggestions you have .  regards ,  hill  hillard g . huntington  emf - an international forum on  energy and environmental markets voice : ( 650 ) 723 - 1050  408 terman center fax : ( 650 ) 725 - 5362  stanford university email : hillh @ stanford . edu  stanford , ca 94305 - 4026  emf website : http : / / www . stanford . edu / group / emf /\",0\n\"Subject: re : cairn gas purchase bid  fyi  - - - - - - - - - - - - - - - - - - - - - - forwarded by doug leach / hou / ect on 08 / 17 / 2000 09 : 59 am  - - - - - - - - - - - - - - - - - - - - - - - - - - -  douglas s parsons @ enron _ development  08 / 15 / 2000 09 : 30 am  to : doug leach / hou / ect @ ect  cc : marc de la roche / hou / ect @ ect  subject : re : cairn gas purchase bid  i can appreciate and share your objective . earlier today i sent a separate  note to vince forwarding your concerns and asking again for his assistance .  i ' ll start there and if needed i ' ll contact michael popkin ' s structuring  group . however , before getting too many people involved i want to see what  feedback we get from cairn after they ' ve discussed the offers internally this  week .  doug leach @ ect  08 / 15 / 2000 08 : 37 am  to : douglas s parsons / enron _ development @ enron _ development  cc : marc de la roche / hou / ect @ ect  subject : re : cairn gas purchase bid  i gave you several clear alternatives such as contacting vince ' s structuring  group , michael popkin ' s southern cone structuring group and a long discussion  regarding the pricing and suggested \"\" collar . \"\" i also asked if you had spoken  to your customer about what they were willing to pay , but that was a non  starter . trust me , i have seen almost every bad deal enron has entered into  or attempted to enter into and i am trying to get metgas to objectively  relook at their offer to cairn become it becomes another bad deal .  douglas s parsons @ enron _ development  08 / 15 / 2000 08 : 31 am  to : doug leach / hou / ect @ ect  cc :  subject : re : cairn gas purchase bid  that ' s fine , but don ' t you think i would also prefer not receiving criticism  that assumes i didn ' t do something and provides no clear alternative .  doug leach @ ect  08 / 15 / 2000 07 : 52 am  to : douglas s parsons / enron _ development @ enron _ development  cc : marc de la roche / hou / ect @ ect , bobby  subject : re : cairn gas purchase bid  you spoke to me once and i gave you my opinions which were contrary to your  resultant offer to cairn . currently , i have better things to do with my time .  douglas s parsons @ enron _ development  08 / 15 / 2000 12 : 10 am  to : doug leach / hou / ect @ ect  cc : marc de la roche / hou / ect @ ect , bobby  subject : re : cairn gas purchase bid  i talked to vince after we hung up and his only suggestion was to call  sandeep kohli . i spoke with marc and yourself four times on this matter over  a 3 day period and given the timing , i put forth a non - binding offer , after  discussing it further with bobby , based on the information i had that appears  to position us close to our competitors offers . we haven ' t committed  ourselves and should we be selected for negotiations there are numerous  variables to affect the outcome . if you ' ve got any suggestions for a better  deal , please advise .  doug leach @ ect  08 / 14 / 2000 07 : 45 am  to : douglas s parsons / enron _ development @ enron _ development  cc : marc de la roche / hou / ect @ ect , bobby  subject : re : cairn gas purchase bid  i strongly disagree with the pricing and structure of your non - binding offer  to cairn . this reminds me of the debacle in brazil . you should have contacted  vince kaminski ' s research group as we talked about before an offer was made .  this is a bad deal .  douglas s parsons @ enron _ development  08 / 12 / 2000 01 : 51 am  to : doug leach @ ect , marc de la roche @ ect  cc :  subject : cairn gas purchase bid  doug & marc ,  fyi , please let me know if you think we ' re totally off base . i appreciate  your help .  regards ,  doug  - - - - - - - - - - - - - - - - - - - - - - forwarded by douglas s parsons / enron _ development on  08 / 12 / 2000 01 : 48 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  douglas s parsons  08 / 11 / 2000 06 : 24 am  to : bobby farris / enron _ development @ enron _ development  cc : f b virani / enron _ development @ enron _ development , ujjwal  dey / enron _ development @ enron _ development , nilesh  subject : cairn gas purchase bid  bobby ,  after meeting with cairn today in delhi , my perception is that our offer was  received well . they were more open and relaxed then they were on wed .  morning and made several encouraging comments about our price range , ( once we  talked through the price movements ) , and the seriousness of our gas related  activities on the west coast of india , in light of the ioc agreement . i  think the overall package is attractive to them and no serious objections  were raised . we did talk to some extent about the guarantees , but we didn ' t  get too far and they ' re willing to accept at this point that what ' s  acceptable to the lng suppliers , should be suitable for their needs .  however , they would like to understand the corporate structure and assets of  enron energy marketing a little better and i told them i would get back to  them on that point .  david and ajay were up in hazira yesterday looking at some property for their  gas treatment facility , which apparently is across the road from pipeline  access . while there they went and looked at shell ' s proposed lng site after  walking the last 1 km , inaccessible to their 4 wd vehicle and not surprisingly  found a beach .  in summary , here is what we offered on a non - binding basis :  six year production plateau  85 % top  $ 3 . 67 / mmbtu net , at a base of $ 18 / bbl brent , with point of sale at the  tail - end of the gas processing plant  floor & cap of $ 15 . 50 - $ 27 . 00 / bbl  price movement : + / - $ 1 . 00 / bbl from the $ 18 / bbl base price ( on a 3 mo .  rolling average ) equals + / - $ 0 . 145 / mmbtu fixed on a quarterly basis  guarantees : same protection we ' re providing the lng suppliers under the  trust retention account  i appreciate everyone ' s help in submitting this offer .  thanks ,  doug\",0\n\"Subject: re : monday presentation  i have made one correction to guadalupe ' s degree - - - it is actually ma , law  and diplomacy rather than ms , finance .  here is the corrected version .\",0\n\"Subject: oracle nt client software upgrade - manual upgrade steps  this weekend , the enron global information technologies department will be  distributing a new version of the oracle 8 i client . due to the mobile  environment of our user base , not all machines will receive the automatic  update . if you are a user of an oracle based application and your machine is  not available to the network this weekend , you can manually upgrade your  machine via the following steps :  1 ) click on start - programs - utilities  2 ) then click on \"\" install oracle 8 i client \"\" .  if you are a user of microsoft excel spreadsheets or microsoft access  databases that retrieve information from our oracle databases , you can  manually convert your oracle odbc connections to the proper drivers via the  following steps :  1 ) click on start - programs - utilities  2 ) then click on \"\" update odbc data source names to oracle 8 i \"\" .  if you do not see these icons , there is another icon under start - programs -  utilities called \"\" update start menu \"\" that will re - populate your start menu .  thank you for your co - operation -  scott williamson  director , database infrastructure  enron global technology\",0\n\"Subject: re : updated message - preliminary rankings  norma ,  i could not open the message . i get the message : encrypted , not intended for  you .  vince  norma villarreal  11 / 29 / 2000 06 : 06 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : updated message - preliminary rankings\",0\n\"Subject: re : sevil yaman  great ! let me know how she performs .  at 02 : 54 am 2 / 23 / 2000 - 0600 , you wrote :  >  >  > hi michelle ,  >  > thanks for your input . we are moving ahead to offer sevil a summer  > internship with us .  >  > vince  >  >  >  >  > michelle michot foss on 02 / 21 / 2000 05 : 29 : 36 pm  >  > to : vince j kaminski / hou / ect @ ect  > cc :  > subject : sevil yaman  >  >  >  > hi - - one of the ph . d . - econ students over here , sevil yaman , has been  > talking with you . she ' s interested in a summer internship that will help  > her \"\" ground \"\" her dissertation . with our help , sevil has become totally  > corrupted ( ! ) . i have successfully impacted her view of the world re .  > academic economics v . industry . she would like her diss to be as relevant  > as possible , and with that in mind already moved from a pure electricity  > transmission pricing topic to focusing more on congestion management and  > trying to address practical market problems . she has in mind to work in  > industry when her degree is finished . i recommend her to you highly . she  > is extremely bright and competent , needs some guidance and input to get  > going in the right direction to finish up . talk soon - -  >  > michelle  > * * * * * * * * * *  > \"\" this e - mail contains information which is privileged , confidential and  > protected  > from disclosure . please do not disclose the contents or take copies without  > contacting us first . thank you . \"\"  >  > michelle michot foss , ph . d .  > director , energy institute  > college of business administration  > university of houston  > houston , tx 77204 - 6283  > tel : 713 - 743 - 4634  > fax : 713 - 743 - 4881  > please note our new email addresses !  > e - mail : mmfoss @ uh . edu  > web : http : / / www . uh . edu / energyinstitute /  >  >  >  >  >  * * * * * * * * * *  \"\" this e - mail contains information which is privileged , confidential and  protected  from disclosure . please do not disclose the contents or take copies without  contacting us first . thank you . \"\"  michelle michot foss , ph . d .  director , energy institute  college of business administration  university of houston  houston , tx 77204 - 6283  tel : 713 - 743 - 4634  fax : 713 - 743 - 4881  please note our new email addresses !  e - mail : mmfoss @ uh . edu  web : http : / / www . uh . edu / energyinstitute /\",0\n\"Subject: information you requested from economic capital iconference  thank you for requesting information about our products during the registration  for the recent erisk iconference on economic capital .  please click on the link below to read an overview of our offerings in the  areas of analytics , consulting , and risk transfer :  note : if you can ' t open this pdf , you need to upgrade to the new version of adobe acrobat reader at  additional materials :  read a case study about implementation of our erisk analytics at cobank :  read a case study about implementation of p & c raroc at the st . paul companies :  if you would like to speak directly with an erisk representative ,  please contact angela isaac at aisaac @ erisk . com regarding consulting  and risk transfer projects and murray nash at mnash @ erisk . com to learn  more about our erisk analytics product .  regards ,  erisk client services  this is a one - time mailing only . to subscribe to our regular email  newsletter , please register at  if you received this mailing in error , please email info @ erisk . com with  \"\" unsubscribe \"\" in the subject line .\",0\n\"Subject: summer associate mentor  the summer associate program is a critical component of our recruiting  efforts . we appreciate you acting as a mentor for the following summer  associate .  vince ,  a reception to introduce you to the summer associates is scheduled for june  22 nd . the reception will be held from 6 : 00 pm until 7 : 30 pm at sierra ' s  grill located at 4704 montrose ( 713 - 942 - 7757 ) . we have also provided the  summer associate with your name and phone number ; however , we encourage you  to contact guiseppe prior to the reception if possible .  please rsvp your attendance to cheryl kuehl at x 39804 or by email .  thank you  charlene jackson\",0\n\"Subject: thank you , i am on board  vince :  i have just finished talking with rick . he will have the hr person to  workout the details and get me on board this week . thank you so much for  your help . i would like to let you know that your help meant a great deal  for me , i am not taking it lightly . i will do my best to get the work down  and live up to yours and rick ' s expectations .  thank you again .  ding .  6 - 7072\",0\n\"Subject: ees t & d interest rate hedge  vince -  osman asked me to forward a copy of the memo to you . we hope to speak to you  tomorrow and bring you the original for your approval .  regards ,  dave foti\",0\n\"Subject: f / up  vince -  i got your message ( i was up on the roof of the building helping to fix the  weather satellite dish - what a gorgeous view of houston ! ) .  i appreciate your words . everything remains fine , vince . you are my \"\" father \"\"  here at enron , and i admire and respect you greatly . i think i know the kind  of person you are , in terms of your integrity , and i admire the high  standards you set for all of us in your extended \"\" group . \"\"  i want to let you know i am not the only one in the group who doesn ' t  appreciate the way maureen disrespects you . you remain the key external  factor in their success - it is not simply their own abilities that matter to  their futures but your own - vince ' s - success with upper management that  matters .  we respect you , and we don ' t like it when you are disrespected . maureen  didn ' t disrespect me today , vince , she disrespected you .  it ' s time i told you something . last april , maureen , highly intoxicated  following a work - related function at ninfa ' s , made an unsolicited predatory  sexual advance on me at my desk on the 19 th floor . i was shocked and  disgusted , but i didn ' t say one word about this , vince , because i played it  out and didn ' t want to put you into the position of having a raving maureen  in your midst as you perhaps had to fire her and then endure a litany of  gender - bias crap lawsuits .  i \"\" took one for the team , \"\" vince . i can ' rt say i would do it again - maureen  is brazen to berate me after what she did , in public no less .  i appreciate your bringing me into enron . i ' ve found a respectful and ,  indeed , a loving work environment . i remain willing to do whatever i can to  help the group .  clayton\",0\n\"Subject: papers  vince ,  did you receive this paper ?  jason  - - - - - - - - - - - - - - - - - - - - - - forwarded by jason sokolov / hou / ect on 05 / 01 / 2001 03 : 55  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" stuart russell hamel \"\" on 04 / 30 / 2001 04 : 52 : 12 pm  please respond to  to :  cc :  subject :  dr . kaminski :  please see our attached paper .  thank you ,  jed howard , brian nelson , and  stuart hamel  ( 713 ) 218 - 8903  - winmail . dat\",0\n\"Subject: entouch newsletter  business highlights  weather group  on wednesday , december 6 th , the weather channel aired an episode of their  show \"\" atmospheres , \"\" which included a fifteen minute segment focusing on  enron ' s weather risk management business . mark tawney , steven vu , gary  taylor , and steve bennett were featured . the weather channel has aired the  episode periodically since then . the parts that make it through the enron  cutting room floor will be coming soon to an elevator near you ! if you would  like to view a copy of the episode in its entirety , please contact yvette  simpson at ext . 3 - 9595 .  the weather risk management group completed the first ever power demand  transaction this week . the transaction was a swap based on the pjm demand  index . power demand contracts use average peak power demand as an index and  allow power market participants ( generators , btu distributors , marketers ,  etc . . . ) to mitigate volumetric exposures . weekly swaps are available on  enrononline and the desk has placed option contracts on this index in the  broker market . inquiries regarding this product should be directed to  claudio ribeiro , product manager ext . 3 - 7313 , gary taylor ext . 3 - 1511 , or  valter stoiani ext . 3 - 6906 .  west power trading  it \u0001 , s been a wild and crazy holiday season in the west . electricity prices  have remained extremely bullish throughout the entire wscc , due in large part  to below - normal temperatures , \u0001 & less than stellar \u0001 8 river flows in the  northwest and northern california , tremendously volatile natural gas prices ,  and a number of generating plants down for both planned and unplanned  maintenance . recently , the federal regulatory energy commission ( ferc ) has  stepped in to implement several orders in an effort to try to correct this  \u0001 some have the feeling  that the best is yet to come .  happy holidays  seasons greetings from ena pr . the entouch newsletter will be on holiday  break next week . if you have information for future issues of entouch ,  please send it to michelle vitrella . we hope you have a wonderful and safe  holiday . see you next year !  welcome  new hires ena / eim / egm  ena \u0001 ) kimberly hardy , adam johnson , daniel lisk , william fleenor , stacey  wales , jason fischer , aparna rajaram  legal stuff  the information contained in this newsletter is confidential and proprietary  to enron corp . and its subsidiaries . it is intended for internal use only  and should not be disclosed .\",0\n\"Subject: parking pass for van ngo  good morning louis :  please cancel the \"\" secom \"\" parking badge that was issued to van ngo  for parking in the 777 clay garage while she was working part time with  the research group during the holidays . the number on the card is 4280 .  i will return the badge to you this morning .  the co . # is 0011 and the rc # is 100038 .  thanks louis and have a great day !  shirley  3 - 5290\",0\n\"Subject: greg , fyi - jeff asked me to forward this to you for your review . srs  - - - - - - - - - - - - - - - - - - - - - - forwarded by sherri sera / corp / enron on 05 / 15 / 2000  04 : 25 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" joseph a . cherian \"\" on 05 / 09 / 2000 08 : 10 : 19 am  to : \"\" jeffrey k . skilling \"\"  cc : vince j kaminski , \"\" robert a . jarrow \"\"  , \"\" robert c . merton \"\"  subject :  mr . jeffrey k . skilling  president and c . o . o . ,  enron corp .  dear jeff ,  this email is from robert jarrow ( cornell ) and myself ( joe cherian ) . i hope  you recall meeting / lunching with bob jarrow & me when you keynoted at my  1999 math finance day conference here at boston university . i wanted to  introduce you to skg inc . , a startup that is focused on providing an  innovative service to the electronic trading community . messers kuppuswamy  seshadhri , sriketan mahanti , and gaurav mallik are the principal founders  of skg , inc . bob jarrow and i represent the company ' s scientific advisory  board . nobel laureate robert merton , who also sat on our table during your  keynote address , very kindly serves as an ad hoc senior advisor to skg and  has been an invaluable resource to skg , including putting us in touch with  jp morgan . coincidentally , the c . o . o . of jp morgan capital corp . ed  colloton , in an april 7 meeting told us he would introduce us to the c . f . o .  of enron online , whom he knows and at which he felt skg would have huge  value - adding opportunities . however , given ed ' s busy travel schedule , i  don ' t believe he has been able to do that yet . hence this joint decision by  bob jarrow and myself to send you this email .  skg ' s solution is to provide dynamic pricing and value maximization in  electronic trading of securities / commodities on ecns and atss ( alternative  trading systems ) . it achieves this through a process of \"\" strategic  negotiation \"\" using automated agents ( intelligent software manifestations ) .  our system should not be viewed as an ecn , but rather as an enhancement to  any extant trading system , be it an ecn , ats , clob , nasdaq , etc . our  initial system design has been conducted for financial instruments trading ,  e . g . bonds / equities , but our strategy is as much applicable to energy / power  instruments trading , high speed communications bandwidth trading , and other  web - based commodities trading , which we believe is of interest to enron  online .  skg is superior to existing solutions in the following way :  1 ) it considers multiple attributes , e . g . , price , time , volatility ,  bandwidth . ( in high speed communication bandwidth scenarios , for example ,  the dimensions could be price , bandwidth size , time for which bandwidth  available , continguity of the allocation , and such . )  2 ) it involves dynamic matching as opposed to \"\" static \"\" matching .  3 ) it is multi - lateral .  4 ) it adapts itself dynamically to changing market conditions .  5 ) it allows traders to make important trade - offs , as they do in  traditional markets .  currently , skg is involved in discussions with the heads of trading at  fidelity , putnam investments , lehman bros . , kpmg , meridien research ,  salomon smith barney , jp morgan , state street , banc of america , mckinsey ,  citizens power , and a host of other folks .  we think we have a value - adding service to provide to enron online or any  other enron subsidiary that the skg offering matches and that you deem fit .  skg ' s founders and i will be very happy to provide you or your  representative ( s ) with more details , including a demo of the prototype , in  a meeting . we are therefore hopeful that you will be able to arrange  something appropriate .  thanks very much , jeff ! we look forward to hearing from you .  with warm regards ,  joseph cherian and robert jarrow  cc : professor robert c . merton  joseph a . cherian  associate professor of finance  boston university school of management  595 commonwealth avenue , room 522 h  boston , ma 02215  tel : 617 - 353 - 2679 ( o )  617 - 353 - 6667 ( fax )\",0\n\"Subject: lunch presentation  london is very pleased with the speech . thanks it was a great idea to  prepare the presentation . both mike hutchinson and mike farmer were very  please .  thanks ,  maureen  - - - - - - - - - - - - - - - - - - - - - - forwarded by maureen raymond / hou / ect on 11 / 09 / 2000  06 : 44 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  maria abello  11 / 09 / 2000 03 : 20 am  to : maureen raymond / hou / ect @ ect  cc : kirsten ross / lon / ect @ ect  subject : lunch presentation  hi maureen ,  thanks very much for presenting yesterday . your presentation created much  interest and as always we look forward to your return to london office for  another talk . the viewing statistics on iptv were excellent and are as  follows :  current : 85  cumulative : 110  i have spoken to the audio visual team regarding the possibility of showing  your presenting on iptv in houston . it will take a couple of days to encode  the videotape , but as soon as this done , i will send a copy to you in  houston . they are also looking send the file to the relevant person in  houston so they can put in on iptv .  if you have any questions at all , please do not hesitate to call me .  kind regards and thanks again  maria abello  european training and development  enron europe ltd  email : maria . abello @ enron . com  + 44 ( 0 ) 207 783 4787\",0\n\"Subject: full circle : asps the new big blue ?  network world fusion focus : mike jude and nancy meachim  on application service providers  today ' s focus : full circle : asps the new big blue ?  03 / 15 / 00  dear wincenty kaminski ,  today ' s focus : full circle : asps the new  big blue ?  by mike jude and nancy meachim  the terms \u0001 & asp \u0001 8 and \u0001 & ibm \u0001 8 may have more in common than being three -  letter acronyms .  remember big blue of the early \u0001 + 60 s ? the vision , then , was centralized  computing . mainframe computers hosted complex , expensive applications  that end users accessed via dumb terminals . it infrastructure ,  especially memory , was expensive and needed to be controlled . with  computing resources centralized , ibm reasoned , they were easier to  maintain .  of course , ibm got it wrong , in that computers became a cheap commodity .  and users weren \u0001 , t happy simply using dumb terminals . they wanted a  bigger share in all that technology offered . so , as memory prices fell ,  so did the idea of central control . dumb terminals were transformed into  intelligent desktop machines that could store applications and data . the  glass house populated by white - smocked technicians went out of fashion .  looking back on those times , many of us would shake our heads and wonder  how ibm could have been so wrong . but maybe big blue wasn \u0001 , t so far off .  thanks to the advent of application service providers , centralized  computing is making a comeback . asps offer centralized application  management .  the market started as a way to offer the benefits of server  advertisement protocol and other complex enterprise resource planning  software to small companies or companies with less technical savvy . but  asps now host all kinds of applications , including small , multilicensed  programs whose images are downloaded to end users on demand . but , the  principle remains the same : central control makes support much more  efficient and usually cheaper . how about that , ibm ?  to be fair , the dynamics of an asp are very different from old  centralized mainframe operations . an asp doesn \u0001 , t just host and support  an application for general distribution over an in - house proprietary  network . unlike the ibm vision , an asp is very dependent on network  service . it is also very sensitive to service levels . in the \u0001 + 60 s , if  the mainframe let you down , you ended up twiddling your thumbs for an  hour or so , and your only recourse was that white - smocked fellow .  nowadays , users start to scream if service is interrupted for even a  minute . and woe to the asp who brings down a customer operation . the  world of the asp is much more complex than that of the old \u0001 + 60 s shop .  however , if one could magically transport a computer user from the \u0001 + 60 s  to the wonderful new 2000 s , would it seem all that different to him ? in  an ideal asp world , a la scott mcnealy \u0001 , s vision , users would sit down  at a semidumb terminal , download the application du jour , and start  working . what did the \u0001 + 60 s user do ? kind of the same thing !  so you are probably wondering , what is the point ? just this : ibm \u0001 , s  problem was leaving the customer out of the equation . and look what  happened . customers rebelled . they didn \u0001 , t buy ibm \u0001 , s spiel . it became  the \u0001 & in \u0001 8 thing to hate ibm . why ? because the guys in white smocks  couldn \u0001 , t spell service and didn \u0001 , t care about customers .  to be successful , asps need to learn from the past . they need to tattoo  service on the forehead of each of their employees . there are too many  choices , today , for customers to put up with inferior service . that \u0001 , s  one big difference from the \u0001 + 60 s . customers now can literally choose  any service provider in the world . just being big doesn \u0001 , t cut it these  days .  to contact mike jude and nancy meachim :  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  senior consultant michael jude and research director nancy meachim are  with enterprise management associates in boulder , colo . ,  ( http : / / www . . com ) , a leading analyst and market  research firm focusing exclusively on all aspects of enterprise  management . jude has over 18 years of experience in the  telecommunications industry , most recently with us west , where he was a  manager of public policy . mike can be reached at  mailto : jude @ . com . meachim focuses on e - business  management . she is currently conducting a research study on asp  management that is due to be released in april . nancy ' s email address  is mailto : meachim @ . com .  for related links - - click here for network world ' s home page :  http : / / www . nwfusion . com  buzz : application otsourcing , network world fusion , 09 / 27 / 99  asp research page , network world  all about asps  information center for application service providers , their customers  and delivery partners . includes resources , events and news . the asp  industry consortium .  http : / / www . aspindustry . org /  subscription services  to subscribe or unsubscribe to any network world e - mail newsletters ,  go to :  to change your email address , go to :  subscription questions ? contact customer service by replying to this  message .  other questions / comments  have editorial comments ? write jeff caruso , newsletter editor , at :  mailto : jcaruso @ nww . com  for advertising information , write jamie kalbach , account executive ,  at : mailto : jkalbach @ nww . com  network world fusion is part of idg . net , the idg online network .  it all starts here :  http : / / www . idg . com  copyright network world , inc . , 2000\",0\n\"Subject: approval for reviewer  crenshaw , shirley j has suggested reviewers and submitted them for your  approval . your may review / modify this list of reviewers by logging on to pep  at http : / / pep . corp . enron . com and going to supervisor services . please  remember , no feedback can be completed on crenshaw , shirley j until you have  approved the list .\",0\n\"Subject: re : var article  les ,  the revised version of the var article looks fine .  vince\",0\n\"Subject: re : american gas association  mike ,  please , draft a message to js , dd and jl outlining the aga  benefits and costs . this will be their decision .  vince  from : mike a roberts 07 / 27 / 2000 09 : 10 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : american gas association  vince - - -  this project is getting lost in the cracks  should we meet with dave delainy to get it off high center ? ?  - - - mike  - - - - - - - - - - - - - - - - - - - - - - forwarded by mike a roberts / hou / ect on 07 / 27 / 2000  09 : 08 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  elizabeth linnell @ ees  07 / 27 / 2000 08 : 41 am  to : mike a roberts / hou / ect @ ect  cc : richard shapiro / hou / ees @ ees  subject : re : american gas association  please see the string of messages below .  - - - - - - - - - - - - - - - - - - - - - - forwarded by elizabeth linnell / hou / ees on 07 / 27 / 2000  08 : 36 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  carolyn cooney @ enron  07 / 27 / 2000 08 : 35 am  to : elizabeth linnell / hou / ees @ ees  cc :  subject : re : american gas association  - - - - - - - - - - - - - - - - - - - - - - forwarded by carolyn cooney / corp / enron on 07 / 27 / 2000  09 : 44 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : allison navin 07 / 26 / 2000 05 : 23 pm  to : cynthia sandherr / corp / enron @ enron  cc : carolyn cooney / corp / enron @ enron  subject : re : american gas association  i actually called stan horton ' s office yesterday to find out if they knew  anything about the aga membership , and cindy stark who works with stan  informed me that stan cancelled our associate membership with aga effective  january , 2000 . i called jay copan with aga back and left him a voicemail  with the information . i asked him to call me if he had any questions and i  have not heard back from him . i ' ll considered it closed unless i hear back  from him .  from : cynthia sandherr 07 / 25 / 2000 08 : 08 pm  to : carolyn cooney / corp / enron @ enron  cc : allison navin / corp / enron @ enron  subject : re : american gas association  this is a joe hillings issue .  carolyn cooney  07 / 25 / 2000 11 : 01 am  to : allison navin / corp / enron @ enron  cc : cynthia sandherr / corp / enron @ enron  subject : re : american gas association  i believe that stan horton ' s office handled the dues for aga .  from : allison navin 07 / 25 / 2000 10 : 33 am  to : cynthia sandherr / corp / enron @ enron  cc : carolyn cooney / corp / enron @ enron  subject : american gas association  jay copan with american gas assn . called . julie caboose suggested that he  talk with you about enron ' s aga dues . ( he spoke to rick shapiro who said  that he has no knowledge of the dues situation ) . please call at 202 - 824 - 7020 .\",0\n\"Subject: re : file cabinet for mike roberts  kevin g moore  11 / 20 / 2000 12 : 14 pm  to : mike a roberts / hou / ect @ ect  cc :  subject : re : file cabinet for mike roberts  this file cabinet will also be located on the  32 nd floor .  what i will try and attempt is keeping all weather data nearby therefore ,  once  we move into the new building the information will not be lost .  thanks  kevin moore  shirley crenshaw  11 / 20 / 2000 11 : 24 am  to : vince j kaminski / hou / ect @ ect  cc : kevin g moore / hou / ect @ ect  subject : file cabinet for mike roberts  vince :  since we have to clear kevin ' s office for the new employee jaesoo lew ,  can kevin order a tall file cabinet to put the material in ?  thanks !  shirley  vince j kaminski  11 / 20 / 2000 10 : 55 am  to : shirley crenshaw / hou / ect @ ect  cc :  subject : re : \"\" skunkworks \"\" meeting with scott tholan  shirley ,  no , that ' s it .  vince  shirley crenshaw  11 / 20 / 2000 10 : 06 am  to : vince j kaminski / hou / ect @ ect , mike a roberts / hou / ect @ ect  cc : kevin g moore / hou / ect @ ect  subject : \"\" skunkworks \"\" meeting with scott tholan  the \"\" skunkworks \"\" meeting with scott tholan scheduled for this wednesday ,  the 22 nd has been cancelled , per scott tholan .  mike / vince : is there anyone else , that needs to be notified ?  thanks !  shirley\",0\n\"Subject: re : the transportion model worked  great to hear that . you are right , we should include rho ( done ) and theta  ( to do ) for the cost term .  zimin  enron north america corp .  from : kenneth shulklapper 04 / 26 / 2000 12 : 07 pm  to : zimin lu / hou / ect @ ect  cc :  subject : it worked  zimin ,  the model worked well today . hopefully it will continue the same in the  future .  do we need to make a similar change in the model to \"\" drift \"\" to account for  changes on the demand charges over time ?  ken\",0\n\"Subject: re : cross - guarantees  attached are the latest drafts of 3 of the cross - guarantee agreements . i  have the other nine as well , in case you need them . the agreements are  basically identical with one exception . the debt to enron in raptor 3  ( approx . $ 259 mm ) is excluded from the guarantees . you may also note that  this debt is not represented on the dprs which i sent earlier . this is  because the formation of raptor 3 was a failed fas 125 transaction , therefore  we did not get sale treatment and can ' t recognize the debt in looking at  credit capacity . let me know if you have questions or if you need the other  nine guarantees . thanks ,  ron  - - - - - forwarded by ron baker / corp / enron on 01 / 03 / 2001 09 : 40 am - - - - -  \"\" kornreich , craig \"\"  12 / 18 / 2000 04 : 55 pm  to : \"\" curry , alicia \"\" , \"\" mintz , jordan ( enron ) \"\"  , \"\" ' joel . ephross @ enron . com ' \"\"  cc : \"\" ' kevin . d . jordan @ enron . com ' \"\" ,  \"\" ' george . mckean @ enron . com ' \"\" ,  \"\" ' ryan . siurek @ enron . com ' \"\" , \"\" patel trushar ( enron ) \"\"  , \"\" tiller , annmarie ( enron ) \"\"  , \"\" ' brent . vasconcellos @ enron . com ' \"\"  , \"\" ' ron . baker @ enron . com ' \"\"  , \"\" ' clint . walden @ enron . com ' \"\" ,  \"\" ' alan . quaintance @ enron . com ' \"\" , \"\" spradling , mark \"\"  , \"\" halbert , elaine \"\"  subject : re : cross - guarantees  attached please find drafts of the 3 remaining raptor guaranty agreements  ( i . e . , those where pronghorn is the beneficiary ) .  regards ,  craig s . kornreich  vinson & elkins l . l . p .  2300 first city tower  1001 fannin street  houston , tx 77002  ph ( 713 ) 758 - 4816  fax ( 713 ) 615 - 5862  e - mail : ckornreich @ velaw . com  + + + + + + confidentiality notice + + + + +  the information in this email may be confidential and / or privileged . this  email is intended to be reviewed by only the individual or organization  named above . if you are not the intended recipient or an authorized  representative of the intended recipient , you are hereby notified that any  review , dissemination or copying of this email and its attachments , if any ,  or the information contained herein is prohibited . if you have received  this email in error , please immediately notify the sender by return email  and delete this email from your system . thank you  - talon ( i ) ifo pronghorn ( iii ) cross - guarantee . doc  - timberwolf ( ii ) ifo pronghorn ( iii ) cross - guarantee ( v . 2 ) . doc  - bobcat ( iv ) ifo pronghorn ( iii ) cross - guarantee . doc\",0\n\"Subject: candidate to bring in for interviews with the research group  hello toni :  the research group would like to bring bruce r . james in for an exploratory  interview sometime next week ( june 26 - 30 ) .  the individuals who would be interviewing him are :  vince kaminski managing director  stinson gibner vice president  grant masson vice president  vasant shanbhogue vice president  p . v . krishnarao director  zimin lu director  tanya tamarchenko manager  please ask bruce to give you several dates within next week that would  accommodate him and we can coordinate his dates with vince ' s schedule  and the schedules of the rest of the group . just call me when you have some  dates and times .  his resume is attached .\",0\n\"Subject: correction : risk and purchasing meeting - - august 8 th  correction - - - this meeting is being held on august 8 th ( not aug . 9 th ) sorry  for the mistake .  kristin j . harrelson  enron broadband services , inc .  procurement , logistics , and contracts  1400 smith , suite eb - 4573 a  houston , tx 77002  phone : 713 . 853 . 6814  fax : 713 . 646 . 8582  cell : 713 . 594 . 1385  kristin harrelson  07 / 28 / 00 12 : 54 pm  to : denise bradley / enron communications , eric merten / enron communications ,  jim mandis / enron communications , michael moore / enron communications , paula  corey / enron communications , richard weeks / enron communications , tobin  carlson / enron communications  cc : diane cutsforth / enron communications @ enron communications , shirley  crenshaw / hou / ect @ ect , vince j kaminski / hou / ect @ ect  subject : risk and purchasing meeting  due to time constraints on mr . kaminski ' s schedule during the time that you  all are in town from portland , the meeting being held on august 9 , 2000 in  eb - 45 cl must be held to one hour ( 2 : 00 - 3 : 00 pm )  please have your questions , comments , and / or materials ready in advance and  expect this to be a fast paced meeting .  kristin j . harrelson  enron broadband services , inc .  procurement , logistics , and contracts  1400 smith , suite eb - 4573 a  houston , tx 77002  phone : 713 . 853 . 6814  fax : 713 . 646 . 8582  cell : 713 . 594 . 1385 \",0\n\"Subject: re : real options  paul ,  krishna and i are thinking that you may be able to book this type of option  as a call swaption on power . if you would like to discuss further , let ' s  set up a time when we can call you .  - - stinson  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 04 / 04 / 2001  04 : 27 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  04 / 02 / 2001 08 : 16 am  to : paul smith / enron _ development @ enron _ development  cc : stinson gibner / hou / ect @ ect , vince j kaminski / hou / ect @ ect , paul  quilkey / enron _ development @ enron _ development , raymond  yeow / enron _ development @ enron _ development  subject : re : real options  paul ,  we have done a lot of work in this area . i shall call you later  today ( monday my time ) , tuesday morning your time with  some recommendations .  vince  p . s . shirley , please send a real options binder to paul .  vince  from : paul smith @ enron _ development on 03 / 30 / 2001 08 : 42 am zel 0  to : vince j kaminski @ ect  cc : paul quilkey / enron _ development @ enron _ development , raymond  yeow / enron _ development @ enron _ development  subject : real options  vince ,  the sydney office is currently evaluating a proposal that involves an option  to participate in building a wind farm . should this proceed , we would like to  mark this option \"\" to market \"\" .  have the research group completed any work on methods for booking and  remarking real options ? alternatively , do you have any suggestions as to the  best way to value , and book , real options fairly ?  regards  paul smith\",0\n\"Subject: re : visit to houston  allan ,  i shall be glad to meet you . i am planning to attend the energy symposium  and we can meet on the location . if business keeps me at the office ,  feel free to contact me at 713 853 3848 and we can schedule a meeting during  the day  or in the evening .  vince  allan . roberts @ uk . arthurandersen . com on 11 / 22 / 2000 06 : 45 : 42 am  to : vince . j . kaminski @ enron . com  cc : george . e . danner @ us . arthurandersen . com ,  david . b . duncan @ us . arthurandersen . com  subject : visit to houston  vince ,  i hope things are well with you and your family .  the reason for contacting you today is to let you know i will be in houston  next  week between monday and wednesday inclusive . if there is an opportunity to  meet  up , probably informally , it would be useful to discuss our continuing  activities  in the areas of strategy , value and , increasingly , real options .  if you are attending our energy symposium , or can meet up , please contact me  at  your convenience . if we do meet , i would also like to introduce you to one of  our senior managers from houston : george e . danner . george is a member of  our  us national strategy team and part of our global network of specialists  working  on real option pricing .  if i do not speak to you before tomorrow - happy thanksgiving .  allan  * * * * * * * * * * * * * * * * * * * internet email confidentiality footer * * * * * * * * * * * * * * * * * * *  the uk firm of arthur andersen is authorised by the institute of chartered  accountants in england and wales to carry on investment business . a list of  partners is available at 1 surrey street , london , wc 2 r 2 ps ( principal place of  business ) .  privileged / confidential information may be contained in this message . if you  are not the addressee indicated in this message ( or responsible for delivery  of  the message to such person ) , you may not copy or deliver this message to  anyone .  in such case , you should destroy this message and kindly notify the sender by  reply email . please advise immediately if you or your employer do not consent  to  internet email for messages of this kind . opinions , conclusions and other  information in this message that do not relate to the official business of my  firm shall be understood as neither given nor endorsed by it .\",0\n\"Subject: re : got a hold of fiona grant  i think it was the copying of your name on my latest email ; - )  ?  thanks for your help  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com  to : julie  sent : wednesday , april 11 , 2001 6 : 37 pm  subject : re : got a hold of fiona grant  julie ,  you have more luck than myself . i called a few times  and left messages on her voice mail .  vince  \"\" julie \"\" on 05 / 11 / 2001 07 : 04 : 40 am  please respond to \"\" julie \"\"  to : ? ? \"\" vincejkaminski \"\"  cc :  subject : ? got a hold of fiona grant  vince ,  just to let you know , i finally got in touch with fiona grant .  j\",0\n\"Subject: re : the national forum on corporate finance  andy ,  thanks . i shall forward your message to  prof . ikenberry .  vince  from : andrew s fastow / enron @ enronxgate on 02 / 22 / 2001 01 : 45 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : the national forum on corporate finance  vince :  i would be interested in participating . thanks .  andy  - - - - - original message - - - - -  from : kaminski , vince  sent : monday , february 05 , 2001 10 : 23 am  to : andrew s fastow / hou / ect @ enron  cc : kaminski , vince  subject : the national forum on corporate finance  andy ,  i am sending you a draft oof a proposal regarding national forum for top  finance practitioners and  academics . the idea came from a professor at rice university who  has already received a commitment from a number  of most distinguished cfos .  please , read the outline and see if you would be interested in joining this  forum .  i shall be glad to help to arrange a meeting with prof . ikenberry .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 05 / 2001  10 : 22 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  david ikenberry on 02 / 02 / 2001 06 : 10 : 02 pm  to : \"\" vkamins @ ennron . com \"\"  cc :  subject :  it was great talking with you .  dave  - brochure . doc >  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  prof . david ikenberry  jones graduate school of management  rice university  713 - 348 - 5385\",0\n\"Subject: accomplishments / self evaluation  prc is just around the corner and dave has not been provided the  accomplishment / self evaluation from some of you . this serves as a reminder to  please provide dave with a list of accomplishments / self evaluation for the  past six ( 6 ) months as soon as possible .  thanks in advance for your prompt attention to this matter . if you have any  questions , please feel free to call kay 3 - 0643 .  thanks ,  kay\",0\n\"Subject: re : summer work . .  jinbaek ,  this is a project related to automated trading platforms for commodities .  vince  jinbaek kim on 05 / 02 / 2001 05 : 21 : 40 pm  to : vince . j . kaminski @ enron . com  cc :  subject : re : summer work . .  dr . kaminski ,  thanks for your mail .  i am sorry that i ' ll not be available earlier ,  i will talk with my advisor , but  probably it will be pretty negative .  however , i may be able to start it from junel ,  depending on what he tells . .  we will meet tomorrow afternoon ,  so i ' ll be able to let you know  whether we can start work earlier then .  and could you tell me briefly  what are those projects you have in mind ?  thanks !  jinbaek kim  ph . d candidate  dept . of industrial engineering and operations research  u . c . berkeley  http : / / www . ieor . berkeley . edu / ~ jinbaek  go bears !  : \"\" ' . _ . . - - - . . _ . ' \"\" ; ` . . ' . ' ` .  : a a : _ _ . . . . . _  : _ . - 0 - . _ : - - - ' \"\" \"\" ' \"\" - . . . . - - ' \"\" ' .  : . ' : ` . : ` , ` .  ` . : ' - - ' - - ' : . ' ; ;  : ` . _ ` - ' _ . ' ; . '  ` . ' \"\" ' ;  ` . ' ;  ` . ` : ` ;  . ` . ; ; : ;  . ' ` - . ' ; : ; ` .  _ _ . ' . ' . ' : ; ` .  . ' _ _ . ' . ' ` - - . . _ _ _ . _ . ' ; ;  ` . . . . . . ' . ' ` ' \"\" \"\" ' ` . ' ; . . . . . . - '  ` . . . . . . . - ' ` . . . . . . . . '  on wed , 2 may 2001 vince . j . kaminski @ enron . com wrote :  >  > jinbaek ,  >  > thanks for your message .  >  > we have a number of additional fascinating projects that you can work  > on . as a matter of fact , it would be great to have you here earlier .  >  > vince  >  >  >  >  >  > \"\" jinbaek kim \"\" on 05 / 02 / 2001 05 : 18 : 32 am  >  > to : , \"\" raghavan , suresh \"\"  > , \"\" mesquita , ross \"\"  >  > cc :  > subject : summer work . .  >  >  > long time no see ,  > how have you been . . . must be busy and living a challenging life ?  > i have been pretty busy too ,  > to finish a project and write a paper , these days .  >  > everything looks going ok for my summer internship .  > i took necessary steps to work out of campus , and sent  > signed contract to molly a week ago . .  >  > here is what i am expecting to do in the summer .  > please let me know if you have any change in mind .  > actually , i wonder a little bit if dealbench changed its business model . . .  > and maybe you got priority in something different  > because it has been quite a while since we talked .  > i ' d like to what ' s going on in dealbench team . . .  > raghavan and ross ,  > if we talk over phone it will be great !  >  > dr . kaminski ,  > if you think there is something else interesting to work with during the  > summer ,  > to both you and i , please let me know .  > my interest is auction , market design , and simulation .  > i am taking a financial engineering class , ( mostly on option pricing )  > and working on electricity generator valuation problem based on  > spark spread option .  >  > all of you ,  > let ' s keep in touch until we meet in june ! !  >  > best regards ,  > jinbaek  >  >  > tentative work period : 6 / 4 - 8 / 4  >  > 1 . tasks :  > 1 ) survey on auctions : the state of art  > single - item auction , multi - unit auction , sequential auction ,  > multi - attribute auction , combinatorial auction  >  > - theoretical  > - experimental  > - algorithmical  >  > 2 ) deal bench ' s auction model analysis  >  > 2 . deliverables :  > 1 ) 3 presentations :  > - lst presentation : around 6 / 30 : on different auction types and  > researches  > - 2 nd presentation : around 7 / 15 : the state of art in auction studies  > - 3 rd presentation : around 8 / 1 : deal bench ' s model analysis  >  > 2 ) report :  > summary of auction study in laymen ' s term  > deal bench ' s model analysis  >  >  >  >  >  >  >\",0\n\"Subject: lunch with it and credit  tanya ,  can you coordinate , in my absence , the lunch with it  and credit .  we need the body count and reservation at the restaurant for the 14 th .  vince\",0\n\"Subject: re : synfuel option valuation  lenny ,  i believe that you must have done your home work on the the tax credit  issue . however , it may  make sense to create some kind of reserve in case the tax credit is removed  in the future .  i am glad that you like the way we treat the tax credit , which is built into  the strike price for the  digital option . with the tax credit , it is most likely the option will be  exercised .  paulo issler is the person who worked on this model initially . he will be  back this wednesday .  we can talk to him about the standard deviation he put into the model .  zimin  lenny hochschild @ enron  02 / 12 / 2001 08 : 15 am  to : zimin lu / hou / ect @ ect  cc :  subject : re : synfuel option valuation  zimin ,  thanks for your e - mail . sorry for the late reply , i was travelling last week .  i ' m under the impression that the with the new administration , there is a  greater chance that section 29 will be extended beyond 2007 than repealed . if  this happens , we contractually have the right to extend this contract . we  have not valued the chance of this happening , so i don ' t think we should  value the chance of this not happening .  anyways , let me speak to my supervisor on this and revert .  in the meantime , i looked over the amendment you made with regard to adding  the second strike of the tax credit and think this is now reflective of the  deal and am happy with it . i still do not understand a few things re : where  did the st . deviations come from . i believe you said that someone who works  for you put this together but was away last week .  please revert with his / her name so that i can get together and understand  this .  thanks .  lenny  zimin lu @ ect  02 / 06 / 2001 01 : 09 pm  to : lenny hochschild / na / enron @ enron  cc : eric groves / hou / ect @ ect , stinson gibner / hou / ect @ ect  subject : synfuel option valuation  lenny ,  i think we had a good discussion about the deal valuation .  one thing , i think you are prefectly aware of it , is that the economics  of this deal is driven by the tax credit ( $ 25 . 03 ) . the risk on our side  is that if the tax credit is removed , aig will not deliver the synfuel  and pay $ 4 . 55 to us .  vince mentioned that congress might act quickly enough to eliminate  the tax benefit . i just want to remind you we should take this risk  into consideration .  zimin  ps :  i changed the results in sheetl slightly . the values in column a was shifted  by 0 . 5 . use the attached model .\",0\n\"Subject: re : part - time work  zimin ,  can you call cantekin to discuss the details ?  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 09 / 19 / 2000  08 : 44 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  09 / 18 / 2000 05 : 50 pm  to :  cc : vince j kaminski / hou / ect @ ect  subject : re : part - time work  cantekin ,  i shall call you tomorrow to discuss the details .  vince  \"\" cantekin dincerler \"\" on 09 / 18 / 2000 02 : 59 : 41 pm  please respond to  to :  cc :  subject : part - time work  hi vince ,  i promised to get back to you on the part - time work issue . sorry for the  delay , i got back to austin only last week . i talked to ehud about this and  he is ok with it . just wanted to let you know .  best ,  - - - - - - - - - oooo - - - - - oooo - - - - - - - - - -  cantekin dincerler  doctoral candidate  the university of texas at austin  graduate school of business  department of finance  office : ( 512 ) 471 - 1676  fax : ( 512 ) 471 - 5073  home : ( 512 ) 472 - 5356  cell : ( 512 ) 680 - 5355  http : / / uts . cc . utexas . edu / ~ cantekin  - - - - - - - - - - - - - oooo - - - - - oooo - - - - - - - - - -\",0\n\"Subject: re : d - g energy  karla ,  we may use 1 workstation in london , 1 in houston .  yes , please call ms . geman and ask for more detailed price information .  vince  from : karla feldman 03 / 20 / 2000 01 : 15 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : d - g energy  hello vince ,  i didn ' t know if that was your correct e - mail address listed below on  receiving from outside the company , so i thought i would forward this with a  couple of comments .  she states below that she has enclosed a proposal , however , the only pricing  i really see is in the software license agreement , article 2 , which states  that the license fee is $ 100 , 000 and lists out when you must pay for it . it  then states in article 3 that the fees are set forth in appendix 1 , but there  are no prices in appendix 1 .  i have reviewed the actual terms and conditions to the license and am going  to prepare it as we usually do to send to mark holsworth for review . in the  meantime , do you want me to go back to ms . geman and ask her for more  detailed pricing information or do you have what you need ? also , in appendix  2 , you will need to list the number of sites and workstations you want to  have .  please let me know .  thanks ,  karla  - - - - - - - - - - - - - - - - - - - - - - forwarded by karla feldman / hou / ect on 03 / 20 / 2000 01 : 11  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  geman on 03 / 18 / 2000 04 : 39 : 43 am  to : karla . feldman @ enron . com  cc : vkamins @ enron . com  subject :  dear ms . feldman ,  please find enclosed a proposal for the d - g energy  software license agreement in which enron may be  interested . we deliberately left blank the appendix 2  related to the number of sites and workstations it  would cover , in order to let dr . kaminski decide what  is best for enron .  sincerely  - appendices . doc  - contract . doc  h , lyette geman  professor of finance  university paris ix dauphine and essec\",0\n\"Subject: grades  pam ,  the term papers arrived at my internet mailbox .  i shall be sending you the information as i make progress reading the papers .  first group of students :  helen demianenko  javier lamas  lynn nazareth  shauywn smith  carlos wheelock  sarah woody  grade : a  please , confirm receipt of this message and please double check  that all registered students have been graded ( to make sure no student falls  through  the cracks ) .  vince\",0\n\"Subject: norberto  elizabeth ,  i want to discuss the issue of the compensation of norberto with my boss .  vince\",0\n\"Subject: the garp convention  dear shirley  ?  further to our telephone conversation earlier today , i am writing concerning  the garp 2001 convention , which will be held in new york between 13 th and  14 th february .  ?  i have set a new deadline for presentations to be sent to me , which is  friday 5 th january . i am sure you can appreciate that collating , arranging ,  organising and printing over 80 presentations is a mammoth logistical task ,  hence why i require the presentations as soon as possible .  ?  can i please have an indication of when i am likely to receive vince ' s  presentation ? below is the talk he has agreed to give ( he has also agreed to  chair the stream on energy & corporate risk on tuesday 13 th february ) :  ?  measuring energy risk - tackling price volatility , adapting var , scenario  modeling and regulatory requirements  - mean ( or floor ) reversion  [ image ]  the challenge of modeling price dynamics in the energy markets  - bullitl . jpg\",0\n\"Subject: re : approval is overdue : access request for stewart . range @ enron . com  he told me that he has what he needs .  - - stinson  vince j kaminski  12 / 14 / 2000 09 : 53 am  to : stinson gibner / hou / ect @ ect  cc :  subject : approval is overdue : access request for stewart . range @ enron . com  stinson ,  did we resolve this case ?  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 12 / 14 / 2000  09 : 54 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  arsystem @ mailman . enron . com on 12 / 13 / 2000 07 : 00 : 54 pm  to : vince . j . kaminski @ enron . com  cc :  subject : approval is overdue : access request for stewart . range @ enron . com  this request has been pending approval for 18 days and you are the  alternate . please click  approval to review and act upon this request .  request id : 000000000007876  approver : stinson . gibner @ enron . com  request create date : 11 / 20 / 00 2 : 36 : 29 pm  requested for : stewart . range @ enron . com  resource name : \\ \\ enehou \\ houston \\ common \\ research - [ read / write ]  resource type : directory\",0\n\"Subject: thanks for the interview  dear vince ,  thanks for the interview with enron . i appreciated your time and the  conversation that we had together . i really enjoyed my time at enron and  believe that it is the type of company that i would like to work for . more  specifically i enjoyed meeting the people in the research group and feel  that i could make a contribution and fit in well . i look forward to  hearing from you or an enron representative .  sincerely ,  lance\",0\n\"Subject: energy in europe congress 2000  8 th floor , 29 bressenden place london swle 5 dr tel : + 44 171 915 5100 fax :  + 44 171 915 5101 conference bookings : + 44 171 915 5103  date : may 15 , 2000  from : tanuja tulsiani phone : 44 171 915 5173  fax : 44 171 915 5101  re : energy in europe congress 2000 , berlin  urgent - urgent - urgent - urgent - urgent - urgent - urgent  message  dear energy in europe speaker  as the conference in berlin draw closer , i would like to remind you that we  urgently need to receive a copy of your presentation materials by friday ,  26 th may 2000 .  if you could please send me a hard copy of your talk text or copies of any  slides you plan to use , as soon as possible i would be most grateful . i am  sure you are aware of the importance of documentation , even if you plan to  speak off the cuff please try and supply at least an outline of your proposed  speech . if this material doesn ' t reach me by 26 th may i am afraid they will  not form part of the delegate packs . you can send a hard copy either by post  or fax to the above address and details or you can e - mail it to me at the  following address : ttulsi @ icbi . co . uk .  if you have already sent copies of your presentation then please ignore this  fax . should you have any queries , please do not hesitate to contact me , and i  look forward to seeing you in berlin shortly .  kind regards  tanuja tulsiani  tanuja tulsiani  logistics manager  !  !  !  !\",0\n\"Subject: reminder  stinson ( and vince - - don ' t think your e - mail address is correct )  this is just a reminder about the \"\" care package \"\" of enron cases and  materials that you guys were going to send to me .  stinson , please convey this request on to vince because i think the e - mail  address i have is an old one .  thanks and have a great weekend .  john  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: reprint of my article - the gas - fired future : boom or bust ?  my article \"\" the gas - fired future : boom or bust ?  last year brought prices not seen for decades . so consumers will buy less  gas , just as before , and send forecasts out the window . \"\" was just published  in april 1 , 2001 issue of public utilities fortnightly .  if you would like to receive a reprint when i receive them send me your  address .  best regards ,  jhherbert\",0\n\"Subject: petition for summer internship  vince :  as we discussed earlier , i attached the copy of the petition for my summer  internship with enron analyst and associate group .  i also have the hard copy of the letter , which i will deliver to you  presonally .  i am looking forward to , finally , become an official enron employee . thank  you very much for your valuable contributions to  my experience with the company .  jason sokolov\",0\n\"Subject: alliance info alert  dear generation / power marketing executive :  this alliance info alert includes three items of interest :  1 ) the weekly alliance express newsletter  2 ) listing of recent filings at ferc  3 ) timeline for ferc action on california markets ( attached )  alliance of energy suppliers express \u0002 \u0005 december 19 , 2000  inside washington \u0002 \u0005 federal affairs  * * * ferc de - federalizes california markets , adopts other structural reforms * * *  at a special meeting friday afternoon , ferc unanimously approved its eagerly  awaited final order reforming the california wholesale markets , adopting the  major outlines of its november 1 proposed order and sending back to  california the responsibility for addressing state - related matters . at the  same time , ferc deferred consideration of retroactive refund issues as well  as the imposition of region - wide price caps . ferc reiterated their earlier  conclusions that under certain circumstances , california ratepayers were  subjected to unjust and unreasonable power rates due to california ' s  \"\" seriously flawed \"\" market structure and rules in conjunction with tight  demand and supply conditions throughout the west .  ferc adopted the november proposal to eliminate , effective immediately , the  state ' s mandatory requirement that the state ' s investor - owned utilities buy  and sell electricity through the px , and allow these utilities to purchase  electricity through forward contracts and other alternative mechanisms to  manage supply risks . ferc terminated the px ' s rate schedules effective at  the close of business on april 30 , 2001 . in effect , as chairman james  hoecker stated , the order de - federalizes 60 percent of the california  wholesale market established under the state ' s restructuring law , returning  ratemaking authority over company - owned generation to the california public  utilities commission ( cpuc ) .  the agency also modified the effective period of the $ 150 / mwh \"\" soft cap \"\"  proposal , limiting its application through april 2001 , whereupon a  \"\" comprehensive and systematic monitoring and mitigation program which  incorporates appropriate thresholds , screen and mitigation measures \"\" must be  in place . in a related move , ferc ordered a technical conference early next  year to develop such a program by march 1 , 2001 , so that these measures can  be place by the may 1 , deadline .  * * * energy secretary issues order to power generators and marketers to bolster  california ' s supplies * * *  energy secretary bill richardson has responded to the severely constrained  power supply situation in california by issuing an order , pursuant to section  202 ( c ) of the federal power act , to require generators and marketers to make  power available to meet the state ' s electricity needs . the emergency  directive requires that , if the california independent system operator ( iso )  certifies that there is an inadequate supply of electricity , certain  suppliers would be required to make power available to the iso if they have  power available in excess of the amount needed to satisfy service to firm  customers . those suppliers that have provided power to the california power  exchange ( px ) and the iso over the last 30 days that have firm capacity  available would be subject to the order .  under the order , the iso is required to provide notice to each supplier  subject to the order of the amount and type of service requested by 9 : 00 pm  est on the day before the requested service . the iso must , to the extent  feasible , allocate the requests in proportion to the amount of each  supplier ' s available power . the price for the power provided pursuant to the  order will be set by an agreement between the iso and the supplier . if no  agreement is reached , ferc is to determine the just and reasonable rate at a  later date . the order will remain in effect until 3 : 00 am est on december  21 , 2000 unless modified .  * * * epa sets plans to regulate plants ' mercury emissions * * *  epa administrator carol browner , in a long - awaited announcement , indicated  last week that the administration will require reductions of mercury  emissions from coal - and oil - fired power plants . the agency stated that it  plans to propose new regulations in december 2003 , and hopes to finalize new  rules by december 2004 .  in the wake of the decision , eei called on epa to make certain that any  program to control utilities ' mercury emissions be based on the best  scientific information available in order to assure the protection of public  health . \"\" eei urges epa to maintain its commitment to resolving the key  scientific and technological issues , \"\" said paul bailey , eei vice president ,  environmental affairs . given these uncertainties , eei is disappointed that  the regulatory determination includes statements regarding public health  threats and hazards that are unsupported by current science , \"\" said mr . bailey .  \"\" in the meantime , the electric power industry will continue to work with all  stakeholders to determine the extent to which additional mercury reductions  from power plants may be needed , and how those cuts should be achieved , \"\" mr .  bailey concluded .  mergers & acquisitions  * * * calpine completes acquisition of emi power assets * * *  calpine corporation has announced that it has completed the acquisition of  power assets from energy management , inc . ( emi ) . in the deal , calpine  acquired the remaining interest in three recently constructed , combined - cycle  power generating facilities located in new england , as well as a joint  marketing venture between calpine and emi . prior to the transaction , calpine  held a 50 percent net interest in the projects .  \"\" we are very pleased to have completed the acquisition of these new and  highly efficient power plants . the dighton , tiverton , and rumford facilities  were among the first merchant power plants to enter commercial operation in  new england , \"\" said calpine senior vice president bob alff . \"\" combined with  our other announced project in the northeast , we have created a coordinated  system of low - cost assets , with excellent geographic diversity , to provide  power to a very attractive new england market , \"\" added alff .  * * * exelon completes acquisition of 49 . 9 percent of sithe * * *  exelon corporation and sithe energies have announced the completion of  exelon ' s acquisition of 49 . 9 percent of the stock of sithe . the completion  of the acquisition finalizes an agreement in which peco energy company agreed  to purchase 49 . 9 percent of sithe ' s assets in north america for $ 682  million . peco has since merged with unicom corporation to form exelon  corporation .  under the terms of the agreement , exelon has the option to purchase the  remaining 50 . 1 percent of sithe within two to five years at a price based on  prevailing market conditions when the purchase option is exercised . exelon  and sithe will continue to operate independently , said the companies .  energy data  * * * weekly electric output ( week 50 ) * * *  electric output reached 74 , 737 gwh for the week ending december 9 ( week 50 ) ,  with the highest increase over 1999 levels in the mid - atlantic region , which  had a 15 . 8 percent increase over 1999 . looking at year - to - date information ,  the pacific southeast leads the nation in growth of output . for more  information , email alliance @ eei . org .  who ' s who  * * * allegheny energy announces leadership change * * *  allegheny energy , inc . this week announced the appointment of michael  morrell , senior vice president and cfo , as president of its unregulated  supply business , allegheny energy supply company , effective february 1 ,  2001 . morrell will replace peter skrgic , current president , who will be  retiring on that date after 37 years of service to the company .  in his new position , mr . morrell will direct and continue the growth of  allegheny ' s energy supply business , which operates and markets competitive  retail and wholesale electric generation throughout the eastern us .  additionally , morrell will identify new opportunities to expand the company ' s  generation holdings , announced a press release .  the alliance express is a free news service sponsored by the alliance of  energy suppliers . this document can be redistributed . please send  questions , comments , or requests to alliance @ eei . org , or telephone  202 / 508 - 5680 .  * * * due to the holidays , the alliance express will not be published next  tuesday , december 26 .  = = recent ferc filings = =  ( 1 ) rto developments  * the following entities filed comments regarding the california wholesale  electric market . elo 0 - 95 - 000 , et . al . filed december 13 , 2000 .  - american public power assoc . : \"\" market power : will we know it when we see  it ? the california experience \"\"  - southern california edison co . : \"\" proof that soft price caps do not result  in lawful rates \"\" and request for rehearing  - southern california edison co . : request for immediate modification of the  december 8 , 2000 order  - san diego gas & electric : motion to clarify the record  * the following entities filed motions for an immediate modification and to  intervene regarding the commission ' s emergency order december 8 approving the  ca iso ' s tariff amendments . erol - 607 - 000 , ero 0 - 95 - 000 et . al . filed  december 13 , 2000 .  - western power trading forum  - reliant energy power generation  - pacific gas and electric  - ca iso  - dynegy power marketing  * southern energy companies filed a supplemental protest regarding pjm ' s  order 2000 compliance filing . rtol - 2 - 000 . filed december 14 , 2000 .  ( 2 ) oatt / transmission  * ugi utilities filed an interconnection agreement with allegheny energy  supply co . erol - 617 - 000 . comments due by december 28 , 2000 .  * public service company of new mexico filed proposed revisions to its ferc  electric tariff , a statement of policy and code of conduct governing the  relationship between itself and wholesale power marketing affiliates and a  notification of a change in status relating to its authorization to sell  power at market - based rates . erol - 615 - 000 . comments due by december 28 ,  2000 .  * american electric power service corp . ( aep ) filed an executed  interconnection agreement between indiana michigan power co . and duke energy  berrien . the agreement is pursuant to aep companies ' oatt . erol - 626 - 000 .  comments due by december 29 , 2000 .  * commonwealth edison co . filed revisions to its oatt to reflect the  creation of a new generation subsidiary of excelon corp . , comed ' s holding  company . erol - 628 - 000 . comments due by december 29 , 2000 .  * detroit edison company filed a service agreement for network integration  transmission service under the joint oatt between itself and consumers  energy . the service agreement is between itself and nordic marketing .  erol - 622 - 000 . comments due by december 28 , 2000 .  * detroit edison company filed service agreements for short - term firm and  non - firm point - to - point transmission service under the joint oatt between  itself and consumers energy . the service agreement is between itself and h . q .  energy services . erol - 621 - 000 . comments due by december 28 , 2000 .  * louisiana generating filed a motion to intervene and protest regarding  southwestern electric power company ' s restated and amended electric system  interconnection agreement between southwestern and louisiana generating .  erol - 504 - 000 . filed december 13 , 2000 .  * alliant energy corporate services filed a response to several protests  regarding its proposed amended oatt . erol - 312 - 000 . filed december 14 , 2000 .  * electricities of north carolina , piedmont municipal power agency and the  cities of orangeburg and seneca , sc filed a motion to intervene and protest  regarding duke energy , carolina power & light and south carolina electric &  gas ' proposed accounting and rate treatment of start - up costs associated with  establishing a new rto . elol - 13 - 000 . filed december 14 , 2000 .  * southern company services filed a proposed amendment to its oatt in order  to incorporate creditworthiness criteria , interconnection procedures and  source and sink requirements . erol - 668 - 000 . filed december 14 , 2000 .  * bonneville power administration filed a petition for declaratory order  stating that its proposed oatt satisfies the commission ' s reciprocity  compliance principles . njol - 1 - 000 . filed december 14 , 2000 .  * american transmission co . filed proposed open access transmission rates  and requested expedited consideration . erol - 677 - 000 . filed december 15 ,  2000 .  ( 3 ) market complaints  * h . q . energy services filed for an order directing the ny iso to restore  the original market clearing prices for energy on may 8 , 2000 . elol - 19 - 000 .  comments due january 2 , 2001 .  * new england power co . filed an answer to the rhode island attorney  general ' s protest regarding the application of the joint owners of the  undivided interest in the millstone 3 nuclear plant to transfer ownership to  the dominion applicants . eco 0 - 137 - 000 and ero 0 - 3639 - 000 . filed december 13 ,  2000 .  ( 4 ) mergers / corporate restructuring  ( 5 ) miscellaneous  * ca iso filed an amendment to schedule 1 of the participating generator  agreement between ca iso and sierra pacific industries . erol - 619 - 000 .  comments due by december 28 , 2000 .  * automated power exchange filed a new rate schedule under which it will  provide its auction and scheduling service in its california market .  erol - 658 - 000 . filed december 14 , 2000 .  * automated power exchange filed a new rate schedule under which it will  provide its auction and scheduling service in a new geographic market , known  as the apx midwest market . erol - 659 - 000 . filed december 14 , 2000 .  nancy tarr  manager , business development  ntarr @ eei . org  202 - 508 - 5680  - timeline . doc\",0\n\"Subject: draft from the editor with questions . i ' ll call  vince ,  attached is the editor ' s latest edits on my draft . there are a couple of  things i ' d like to discuss with you and will call right after lunch .  john  - 134 martin 2 . doc  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: fwd fwd volatility for metals var  hi tanya ,  i think using the 60 business day fwd fwd vols based on historical data is  reasonable , to ensure consistency with the amount of data we use to estimate  the eigenvalues . i am just finishing the correlations study .  regards ,  anjam  x 35383  zinc :  lead :  aluminum h :  aluminum s :  tin :  copper :  nickel :\",0\n\"Subject: load forecasting project schedule  based on the discussions we had on monday , august 14 th , the preliminary  project timeline shown below , and your request that some gas supply planning  personnel be available to review and assist with the work :  data collection : august 15 to september 14  model design and building : september 15 to october 14  interface design and building : october 15 to november 15  gas supply planning proposes the following schedule for visits to houston :  ketra schmitt : september 18 , 19 , 20 ( model structure )  john wirick : october 23 , 24 , 25 ( model test and interface basics )  jake norment : november 6 , 7 , 8 ( interface refinement )  we understand that we should fly into houston international and stay at  either the hyatt downtown or the doubletree to be near the enron office at  1400 smith street .  looking forward to an interesting and successful project .  john p . wirick , jr .  ext . 4910  the information transmitted is intended only for the person  or entity to which it is addressed and may contain confidential  and / or privileged material . any review , retransmission ,  dissemination or other use of , or taking of any action in  reliance upon , this information by persons or entities other than the  intended recipient is prohibited . if you received this in error , please  contact the sender and delete the material from any computer .\",0\n\"Subject: fyi : sycamore support on network planning  fyi :  note that the person mentioned in the text below ( ming lung lee ) is very  experienced in traditional traffic engineering work . he comes from mci where  he was responsible for modeling traffic etc . it appears that sycamore  finally got him . one time they had lost him to corvis ( another optical  equipment company ) , i guess sycamore went back to him with a better deal ! as  soon as this guy is available , i ' ll set up an all day technical meeting to  hash out what needs to be done as far as optimization algorithm development  is concerned . i want to produce a technical requirement document to clearly  outline what needs to be done to support dynamic , optical - switched - circuits  based trading and streaming media applications , etc . having such an industry  expert help us will help ' justify ' internally all the the effort on the  traffic analysis side that john griebling has asked us to support . keep in  mind that even though he is an expert in the field , the field that we need to  play in has not develop yet . even the emerging data based traffic ( as opposed  to voice where blocking of traffic is allowed ) analysis is an order of  magnitude more difficult ( due to uncertain load ) , let alone trading such load  ( which we are planning to do ! ) .  ravi .  . . . sycamore hired a guy per griebling ' s request , to work with you on the  design / planning piece of the business . he will be contracted out to enron  for a period of 6 months initially . he lives in sf but will be traveling to  whereever you need him . jim , griebling wanted us to set up a meeting  between you guys for wednesday morning , if you have time . his name is ming  lung lee and he comes to us from mci . let me know what works .  - - - - - forwarded by ravi thuraisingham / enron communications on 03 / 07 / 00 11 : 09  am - - - - -  kristin . bethurem @ sycamorenet . com  03 / 07 / 00 09 : 44 am  to : ravi thuraisingham / enron communications @ enron communications ,  kristin . bethurem @ sycamorenet . com  cc : jim irvine / enron communications @ enron communications ,  barb . vanbeyerer @ sycamorenet . com , brett . leida @ sycamorenet . com  subject : re : pooling point profiles  hi ravi . fair enough , we will make sure we keep you guys in the loop . let  barb / me know which items we can offload to you guys .  first thing to be done is barb will schedule a call between us and you all  to gain a better understanding of a number we are trying to back into with  the metro solutions ( there are alot of options on our side and we need some  guidelines ) . i already talked to john about this this morning so we need to  make some headway on that number . also , we are scheduled for a conference  call wednesday morning with griebling to discuss where we are at with  initial solutions for metro . would you like to join us ?  thursday night , we have a dinner tentatively planned ( talk with griebling  about who , where , etc . ) . friday we will be meeting all day at the omni in  interlocken .  ravi and jim , per my conversations with john , he is going to run point on  the metro solutions . dorn is swamped with other activities . as for the  switching piece , we discussed our routing software on monday and i think  that is all we are going to do until ahi is done then we will set up a  meeting between our guys and the ahi folks . the expectation is that this  meeting will occur in the next 30 days .  also , sycamore hired a guy per griebling ' s request , to work with you on the  design / planning piece of the business . he will be contracted out to enron  for a period of 6 months initially . he lives in sf but will be traveling to  whereever you need him . jim , griebling wanted us to set up a meeting  between you guys for wednesday morning , if you have time . his name is ming  lung lee and he comes to us from mci . let me know what works .  the best ways to reach me are my cell phone or text pager . cell is  303 - 619 - 2485 and pager is 888 - 467 - 6167 - - you can send me a text message  from either your pager ( if you have a 2 way ) or press 3 to get an operator .  thanks , kristin  - - - - - original message - - - - -  from : ravi _ thuraisingham @ enron . net [ mailto : ravi _ thuraisingham @ enron . net ]  sent : monday , march 06 , 2000 9 : 52 am  to : kristin . bethurem @ sycamorenet . com  cc : jim _ irvine @ enron . net ; barb . vanbeyerer @ sycamorenet . com ;  brett . leida @ sycamorenet . com  subject : re : pooling point profiles  hi kristin , jim and i will be in broomfield , co from tueday late ~ 10 am  until  friday end of day . we would appriciate being in the loop of any discussion  that  you may have with john and dorn ( provided that they can be shared with us ) .  both  john and dorn are very busy and you can help alleviate some of the  congestion by  send information directly to jim barb . vanbeyerer @ sycamorenet . com  subject : pooling point profiles  kristin  attached is the sanitized file promised .  what is the status on next weeks meeting and more specifically , what is the  location ?  jim  - - - - - forwarded by jim irvine / enron communications on 03 / 03 / 00 03 : 40 pm  - - - - -  | - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - >  | | andre bourque |  | | |  | | 03 / 03 / 00 |  | | 01 : 27 pm |  | | |  | - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - >  |  |  |  | to : jim irvine / enron communications @ enron communications  |  | cc :  |  | subject : pooling point profiles  |  |  jim :  as part of your vendor negotiation requirements .  andre f . bourque  enron broadband services  - - - - - forwarded by andre bourque / enron communications on 03 / 03 / 00 01 : 28 pm  - - - - -  | - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - >  | | andre bourque |  | | |  | | 03 / 02 / 00 |  | | 05 : 42 pm |  | | |  | - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - >  |  |  |  | to : ravi thuraisingham / enron communications @ enron  communications |  | cc : rob kolosvary / enron communications @ enron communications ,  |  | lisa rosenberg / enron communications @ enron communications , andre  |  | bourque / enron communications @ enron communications , john  |  | griebling / enron communications @ enron communications , laura  |  | beneville / enron communications @ enron communications  |  | subject : pooling point profiles  |  |  ravi :  as per your request , the attached profiles have been sanitized of their  sources .  regards ,  andre f . bourque  enron broadband services  ( see attached file : pooling point profiles . xls )\",0\n\"Subject: re : lunch  john ,  thanks . see you on monday .  vince  enron north america corp .  from : john goodpasture @ enron 03 / 31 / 2000 01 : 11 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : lunch  we are confirmed for lunch this coming monday , april 3 . i ' ll meet you in the  lobby at 11 : 15 and drive us to otto ' s barbecue on memorial .  thanks , jng\",0\n\"Subject: power trading  fyi . this could be quite important for us . through forming a tradinf co . we  could be brokering deals on behalf of mseb , without letting them off the hook .  in this manner we could be doing short term deals and increasing despatch  from dabhol or other mseb marginal units . any money flowing from these sales  should go into an escrow account that goes directly towards payment of dpc  bills .  in this manner we would be increasing the payment ability of mseb .  regards ,  sandeep .  - - - - - - - - - - - - - - - - - - - - - - forwarded by sandeep kohli / enron _ development on  01 / 29 / 2001 08 : 45 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  k seethayya  01 / 29 / 2001 03 : 49 pm  to : wade cline / enron _ development @ enron _ development , neil  cc : jane wilson / enron _ development @ enron _ development , sandeep  kohli / enron _ development @ enron _ development , mohan  gurunath / enron _ development @ enron _ development , ashok  subject : power trading  wade : the group of ministers on foreign investment had decided to recommend  foreign equity participation upto 100 % for trading in power sector , subject  to prevailing laws . however , they left the final decision to the union  cabinet . it is understood that a note supporting the recommendation of gom is  being put up for consideration of union cabinet . since power minister is  willing to support the proposal and industry minister is already ok with such  proposals , i don ' t anticipate any problem at the cabinet level . let us wait  and watch the developments .  seethayya\",0\n\"Subject: interview with the research group  hi kathy and elizabeth :  vince kaminski would like to bring chris kenyon in for a formal interview  with the research group . we would like to bring him in on monday ,  may 15 th , or monday , wednesday , thursday , and friday of the week of  may 22 - 26 th . if these dates do not work for chris , please let me know . .  the interview participants would be :  vince kaminski  stinson gibner  zimin lu  vasant shanbhogue  grant masson  paul issler  krishna krishnarao  if you need any other information , please let me know .  thanks and have a great day !  shirley  3 - 5290  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 05 / 08 / 2000  09 : 41 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  05 / 08 / 2000 09 : 25 am  to : christopher m kenyon @ enron  cc : stinson gibner / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , vince j  kaminski / hou / ect @ ect  subject : re : real options openings ?  chris ,  we shall make arrangements to bring you over for an interview .  our hr department will contact you later this week .  vince  christopher m kenyon on 05 / 05 / 2000 07 : 56 : 11 am  to : vkamins @ enron . com  cc :  subject : real options openings ?  dear vince kaminski ,  i was auditing prof dyer ' s real options class on thursday when you spoke  on enron ' s activities in this area . i would be interested in exploring the  possibility of joining the group that works on real options in response to  and in anticipation of enron ' s business requirements . i ' m currently  working in the development and application of real options methodology at  schlumberger . in particular i ' ll be speaking at an industry real options  valuation conference in london ( http : / / www . iqpc . co . uk / finance / rov / ) and i  just had the paper accepted for publication in operations research . could  you pass my resume on to the relevant people to have a look at ?  thanks in advance ,  chris kenyon  - cmkenyon _ cv _ mayo 0 . doc\",0\n\"Subject: accounting organizational changes  in order to support enron \u0001 , s development of new business and desire to  maximize its return on invested capital ; the following organizational changes  are taking place .  the current accounting groups supporting calme , apachi and south america  activities will be consolidated into one accounting group at enron corp .  this group will continue to provide accounting support to these international  regions and related enron corp initiatives . jeff sommers , currently calme  vice president and cao will head this accounting group . cassandra schultz ,  currently apachi vice president and cao will join rick buy \u0001 , s risk assessment  and control organization as a vice president in market risk management . kent  castleman , currently south america vice president and cao will become vice  president and cao of enron industrial markets .  please join us in congratulating everyone in their new assignments .\",0\n\"Subject: new website for an exciting conference  applications of physics in financial analysis 2  liege , belgium  13 to 15 july 2000  the website for this conference is now available at  www . eps . org / apfa  for further details on all eps conferences contact : christine bastian ,  conferences , european physical society , 34 rue marc seguin , bp 2136 , f - 68060  mulhouse cedex , france  tel + 33 389 32 94 42 fax + 33 389 32 94 49  email eps . conf @ univ - mulhouse . fr  this conference is a europhysics conference . it is organised by the european  physical society and its division of statistical and non - linear physics .  - attl . htm\",0\n\"Subject: projects completed and work in progress  dear vince ,  hi , i hope your having fun on you vacation ! i just want to drop you a line  since we haven ' t talked in a while and give you a progress update . first , i  feeling much better . eventhough i was out last week , i finished the  following curves :  canadian cpi  phillippines fx and cpi  mexican fx and cpi  saudi arabian fx and cpi  guatemalan fx  we also helped london rac with finding information on the uk inflation model  to backtest it . gwyn and yana kept me very busy last week . yana , who lives  close by me was nice enough to drop off work at night . gywn and i worked on  the curves over the phone .  yesterday , i got a call from terry thorn , he needed economic information and  a presentation to give to egm management . i gave him a copy of the  conforming assets presentation , he was very pleased . this week , i ' m working  on a urgent request from rac . the board has decided to resurrect dragon 2 ,  so we are preparing all the curves for the apachi region . i ' m also working  on the metals presentation . see you thursday .  regards ,  maureen\",0\n\"Subject: henwood & psim  stinson / vince ,  the henwood runs for dabhol are , at least temporarily , over . however , the  main modeller for henwood ( david yumigada ) works out of their california  office .  it maybe worth our while to have him come and demonstrate the runs , and  explain the modelling algorithm to the larger group .  in aparticular , now that i am going through some of the comments people have  raised on the psim model , i think there is value in understanding the way  henwood deals with hot and cold starts , ramp up costs , and with issues of  cycling plants .  i think understanding these will help in developing the next version of the  psim , and will also give the group here ideas to build into existing models .  this is a suggestion , and so please let me know if you see value in this .  regards ,  sandeep .\",0\n\"Subject: re : summer  van ,  thanks for your message . we are taking a number of interns this summer , but  the a & a  program has closed the books for this year . we were able to reopen the list  to add one candidate a few weeks ago , but cannot do it again . we promised it  would be the last addition .  vince  van ngo on 04 / 23 / 2000 11 : 42 : 54 am  to : vince kaminski  cc :  subject : summer  dear vince ,  i ' m writing to let you know that i have been in touch with christy young from  the a & a program and will be finding out my assignment for this summer soon . ?  i am very excited to be back at enron , and i hope to see the research team  again .  i ' d also like to inquire about summer positions within research . ? will the  research group be taking on another intern this summer ? ? since i know there  is no busier place at enron than the research group , if there is a position  available for this summer that you are looking to fill or that may be open  for consideration , i would love to connect you to another rice student .  please let me know if the group is considering receiving a new intern this  summer . ? if so , i would be thrilled to put you in touch with brad aimone , a  senior chemical engineering student here at rice who will be graduating with  both his b . s . and his masters in chemical engineering next may . ? brad has  gained extensive laboratory research experience over the past two years . ? his  academic focus gives him a strong mathematical , quantitative background and  excellent computer skills . ? i believe his skills are transferable and  relevant to the group , and he is a deeply dedicated individual . ? if the  research group is looking for a summer intern , i hope it will continue  enron ' s strong support and recruit of rice university students .  please feel free to contact brad directly to pursue this discussion . ( as i  realize the summer months are not far off , if it is easier , an arrangement  through prostaff may be made similar to my work extension at the end of last  summer ) . ? i have attached a copy of his resume for your review . ? brad will be  in houston this summer . ? his contact information is given below .  james bradley ( brad ) aimone  6320 main , houston , tx ? 77005  713 - 630 - 8035  imaknee @ rice . edu  ?  also , please feel free to contact me if you have any questions . ? i sincerely  hope that you will have the opportunity to discover the contributions brad  can make to the research group . ? i certainly know that he would gain  tremendously from the experience as i did last summer .  thank you very much for your consideration .  sincerely ,  van  ph : 713 - 630 - 8038  - brad _ resume . doc\",0\n\"Subject: dg energy software  vince ,  here is my edited version of the software license agreement . can you read it once before i forward it for internal approval ? i specified that the $ 100 , 000 covers a single user perpetural license , access to source after one year , and covers maintenance and support for one year .  any suggestions ?  - - stinson\",0\n\"Subject: re : mathworks  great , please keep us informed .  louis casari  vice president , mid office operations  enron broadband services  713 - 853 - 4302 , room eb 4492  lou _ casari @ enron . net  vince j kaminski @ ect  09 / 28 / 00 10 : 39 am  to : lou casari / enron communications @ enron communications @ enron  cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , lou  casari / enron communications @ enron communications  subject : re : mathworks  molly ,  i met lou in the building lobby last wednesday and he suggested that he  ( or his representatives ) join the mathworks presentation to my group ) .  it ' s a good software package for mathematical modeling ,  but there is a limit to the number of different installations any group  can productively use .  i shall take a look at some new features they offer  and decide whether it ' s worth the effort .  vince kaminski  lou casari @ enron communications  09 / 20 / 2000 02 : 10 pm  sent by : molly carnes @ enron communications  to : vince j kaminski / hou / ect @ ect  cc :  subject : mathworks  do you know this person or this company ? they are want to set an appointment  with ebs and i believe , are wanting to meet with you , also . any feedback ?  thanks .  molly carnes for lou casari  enron broadband services  713 - 853 - 1467 , room eb 4486 a  molly _ carnes @ enron . net  - - - - - forwarded by molly carnes / enron communications on 09 / 20 / 00 02 : 09 pm  - - - - -  scottw @ mathworks . com  09 / 20 / 00 08 : 46 am  to : lou casari / enron communications @ enron communications  cc :  subject : we ' ll be in houston  hello mr . casari :  myself and our energy trading financial team will be visiting with the r & d  group at enron the week of 10 / 16 / 00 . they have several applications can be  dramatically improved with our tools .  we are very interested to understand the bandwidth trading market , to see  if any additional challanges can be overcome with our tools .  i would like to understand your challanges of modeling , simulating and  deploying applications to control risk .  are you available to discuss these items prior to our visit ?  i look forward to hearing from you .  thanks  scott wakefield\",0\n\"Subject: re : tanya vacation  vince ,  i just found out that none of my vacation days from the last year is in the  computer system  ( it says that i have 0 c / over days ) .  it was november 3 , 1999 when i asked your approval to carry over 12 vacation  days to the next year .  i was thinking that if you ( or hr ) do not approve i could at least take these  days in 1999 .  i know that your tried to help me and sent to brad mcsherry the  justification for me to carry over 10 days .  i bothered you a few times in november and december 1999 and since your  response was optimistic  i did not take any of those 10 days in 1999 . but i never heard from hr .  now i am not sure - may be these days are not in the system by mistake .  i would like to take 5 of them in march ( from 3 / 13 / 00 to 3 / 17 / 00 ) .  what is your advice ? should i contact brad mcsherry ? even negative response  from hr in november or  december last year would be better than loosing vacation days .  i really appreciate your help ,  tanya .  tanya tamarchenko  12 / 02 / 99 12 : 51 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : tanya vacation  hi , vince ,  sorry to bother again with my question .  i first e - mailed my question a month ago ( on nov . 3 ) .  since we still have not heard from hr , is it fair to assume that i can carry  over my 10 vacation days to the next year ?  if not - i have to take 5 days before dec . 17 , because then i go on vacations  anyhow . i would really prefer not to take off  most of december , there are quite a lot of things going on .  thank you for your help in resolving this question .  tanya .\",0\n\"Subject: re : weather and energy price data  mulong ,  we shall send you natural gas henry hub prices right away .  please look at the last winter and the winter of  95 / 96 .  we shall prepare for you the electricity price  information ( cinergy , cobb and palo verde ) but  you have to approach ft ( the publishers of  megawatts daily , a newsletter that produces the price  index we recommend using ) and request the permision  to use the data . we are not allowed to distribute  this information .  please , explain that this is for academic research and that  we can produce the time series for you ,  conditional on the permission from the publishers  of megawatts daily .  vince kaminski  mulong wang on 04 / 15 / 2001 03 : 43 : 26 am  to : vkamins @ ect . enron . com  cc : richard macminn  subject : weather and energy price data  dear dr . kaminski :  i am a phd candidate under the supervision of drs . richard macminn and  patrick brockett . i am now working on my dissertation which is focused on  the weather derivatives and credit derivatives .  could you kindly please offer me some real weather data information about  the price peak or plummet because of the weather conditions ?  the past winter of 2000 was very cold nationwide , and there may be a  significant price jump for natural gas or electricity . could you  please offer me some energy price data during that time period ?  your kind assistance will be highly appreciated and have a great day !  mulong\",0\n\"Subject: re : jinbaek kim  molly ,  we can pay for the plane ticket .  we have to make sure that we shall extend the same  treatment to other summer interns to avoid  bad feelings .  vince  from : molly magee / enron @ enronxgate on 04 / 25 / 2001 11 : 47 am  to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect  cc :  subject : jinbaek kim  we received some correspondence this morning from jinbaek in which he says he  plans to start on june 4 , 2001 . since we are trying to offer a package  comparable to that of an associate in the program , i assume we will also pay  for his plane ticket here ? ? ? just wanted to check before i contacted  him . . . . , so i ' ll wait to hear from you .  thanks ,  molly  x 34804\",0\n\"Subject: karthik rajan  i spoke with karthik this morning about our offer , and answered some additional questions that he had . he has accepted our offer , but with one additional request . he would now like for us to ship his car . i asked him why he couldn ' t drive it down here , and he said that it was too old . i am going to check with relocation for an approximate cost and will get back to you . . . .  thanks ,  molly  x 34804\",0\n\"Subject: interview schedule for jinbaek kim  please find the interview packet for the above - referenced candidate . the  interview will occur on friday january 19 , 2001 . please print all documents  for your reference . if you have any questions , or conflicts of schedule ,  please do not hesitate to contact me .  shawn grady  58701\",0\n\"Subject: re : energy derivatives conference - may 29 , toronto  amy :  attached please find a short \"\" bio \"\" for dr . kaminski . please let me know  if i can help further .  amy aldous on 03 / 30 / 2000 11 : 24 : 13 am  to : vince . j . @ uwaterloo . ca . kaminski @ enron . com  cc : shirley . crenshaw @ enron . com  subject : energy derivatives conference - may 29 , toronto  dear mr . kaminski ,  i have just spoken with phelim boyle , who was very pleased to report that  you will be speaking at our energy derivatives conference in toronto on may  29 .  i understand that the title of your presentation is \"\" current challenges in  pricing and risk management of energy derivatives . \"\" would you also be  available and willing to join a panel discussion / question and answer period  at the end of the day ?  speakers , with tentative titles , to follow you are :  corwin joy ( positron , houston )  \"\" modeling physical assets : real option theory applied to generation assets \"\"  david emanuel ( williams , tulsa )  \"\" modeling issues in power markets \"\"  shijie deng ( georgia institute of technology , atlanta )  \"\" research on pricing electricity derivatives and the basic models \"\"  melanie cao ( queen ' s university , kingston ontario )  \"\" equilibrium pricing of weather derivatives \"\"  panel discussion  perhaps ms . crenshaw could send me your short biographical sketch , by email  or fax ( 519 ) 888 - 7562 so that i can proceed with promoting this event as  soon as possible .  many thanks ,  amy  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  amy aldous , conference co - ordinator  centre for advanced studies in finance  university of waterloo  waterloo , on n 2 l 3 gl  tel : ( 519 ) 888 - 4567 ext . 5728  fax : ( 519 ) 888 - 7562  email : aaldous @ uwaterloo . ca  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *\",0\n\"Subject: re : reminder  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 10 / 2001  05 : 21 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  01 / 08 / 2001 01 : 10 pm  to : sandeep kohli / enron _ development @ enron _ development  cc : vince j kaminski / hou / ect @ ect  subject : re : reminder  sandeep ,  i am meeting jeff on tuesday , 1 : 30 .  the best number to reach me ( outside the office ) is my cell phone  ( always on ) : 713 410 5396 .  my home number is 281 367 5377 .  vince  sandeep kohli @ enron _ development  01 / 06 / 2001 08 : 30 pm  to : vince j kaminski @ ect  cc :  subject : reminder  vince ,  before leaving for india i just wanted to jot you this small reminder to talk  to jeff shankman on monday .  aside from myself , i wanted to remind you to talk about anshuman shrivastava ,  who is currently assistant manager in india , and has my recommendation for  promotion to manager . he is our point person on many dpc matters , and is  also the person i have used on most fuel related issues . he will be a real  asset to jeff when located in houston . sinc he is single , and quite young ,  it will not be a problem to move him here at short notice .  i will call you from india as soon as i get in . it will be monday evening in  houston at that time , so could you please jot me a note telling me what would  be a good number to call you on .  i look forward to working with the team in research .  thanks again ,  regards ,  sandeep .\",0\n\"Subject: re : reminder  sandeep ,  i am meeting jeff on tuesday , 1 : 30 .  the best number to reach me ( outside the office ) is my cell phone  ( always on ) : 713 410 5396 .  my home number is 281 367 5377 .  vince  sandeep kohli @ enron _ development  01 / 06 / 2001 08 : 30 pm  to : vince j kaminski @ ect  cc :  subject : reminder  vince ,  before leaving for india i just wanted to jot you this small reminder to talk  to jeff shankman on monday .  aside from myself , i wanted to remind you to talk about anshuman shrivastava ,  who is currently assistant manager in india , and has my recommendation for  promotion to manager . he is our point person on many dpc matters , and is  also the person i have used on most fuel related issues . he will be a real  asset to jeff when located in houston . sinc he is single , and quite young ,  it will not be a problem to move him here at short notice .  i will call you from india as soon as i get in . it will be monday evening in  houston at that time , so could you please jot me a note telling me what would  be a good number to call you on .  i look forward to working with the team in research .  thanks again ,  regards ,  sandeep .\",0\n\"Subject: re : 1 / 2 day seminar : the new texas electric market  fyi !  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 24 / 2001  10 : 19 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  shirley crenshaw  04 / 24 / 2001 10 : 19 am  to : ron mcnamara / na / enron @ enron , jean ryall / na / enron @ enron  cc :  subject : re : 1 / 2 day seminar : the new texas electric market  hello ron and jean :  please furnish me your co # and cc # so that i can make a group reservation  to the \"\" new texas electric market \"\" seminar in austin on may 2 nd .  i will charge the entire amount to vince kaminski ' s credit card , but we will  need to cross charge the charges when we submit his expense report .  thanks !  shirley crenshaw  3 - 5290  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 24 / 2001  10 : 17 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  lance cunningham @ enron on 04 / 23 / 2001 11 : 10 : 33 am  to : ron mcnamara / na / enron @ enron , jean ryall / na / enron @ enron  cc : shirley crenshaw / hou / ect @ ect  subject : re : 1 / 2 day seminar : the new texas electric market  could i please get the following information from you , so that shirley can  register us for the upcoming seminar .  thanks ,  lance  - - - - - - - - - - - - - - - - - - - - - - forwarded by lance cunningham / na / enron on 04 / 23 / 2001  11 : 06 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  shirley crenshaw @ ect  04 / 20 / 2001 01 : 34 pm  to : lance cunningham / na / enron @ enron  cc :  subject : re : 1 / 2 day seminar : the new texas electric market  do you have any information on them so i can make the reservations .  name : ron mcnamara & jean ryall  co . #  cc #  etc .  lance cunningham @ enron on 04 / 20 / 2001 01 : 30 : 56 pm  to : shirley crenshaw / hou / ect @ ect  cc :  subject : re : 1 / 2 day seminar : the new texas electric market  shirley ,  i think that we will only have 1 or 2 people outside of research to attend .  lance\",0\n\"Subject: re : garp  frank ,  i have reviewed materials from garp but did not find any information  about the speaker ' s perks ( like , for example , the right to invite another  person ,  free of charge ) .  i shall message garp with this question .  please , give me a few more days to think about garp presentation .  vince  enron north america corp .  from : frank hayden @ enron 11 / 27 / 2000 03 : 27 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : garp  vince ,  i just wanted to follow up and see if i can be your guest at the ny garp  meeting . also , have you had any time to think of a topic for january . i  would like to get an email out announcing the meeting . let me know your  thoughts ,  thanks ,  frank\",0\n\"Subject: michael catanese  vince ,  mr . catanese is not ready yet . his statistics is rusty , and he only finishes  11 chapters of john hull ( 18 chapters are minimal  to be serious ) .  zimin\",0\n\"Subject: fw : notes for var course  > - - - - - original message - - - - -  > from : mccarthy , jane j  > sent : wednesday , 25 october 2000 16 : 55  > to : ' vkaminski @ aol . com '  > subject : notes for var course  >  > dr . kaminski ,  >  > i attended your var course in sydney in july , but when i went back to look  at the notes recently i found that i am missing some sections ( e . g . optimal  techniques for measuring var , using monte carlo techniques to accurately  calculate var , evaluating the impact of volatility and extreme values on  var ) . would you be able to send me a copy of your notes , as i am about to  embark on a var modelling exercise and i am sure they would be very useful .  >  > regards ,  > jane mccarthy  > manager market risk  > bhp co . pty ltd .  > lvl . 45 , 600 bourke street  > melbourne , vic 3000  > australia  >  > ph : 613 9 609 3860  > fax : 613 9 609 3861  > email : mccarthy . jane . j @ bhp . com . au  >  >  >  eom  notice - this message contains information intended only for the use of the  addressee named above . it may also be confidential and / or privileged . if  you are not the intended recipient of this message you are hereby notified  that you must not disseminate , copy or take any action in reliance on it . if  you have received this message in error please notify postmaster @ bhp . com .\",0\n\"Subject: thank you !  fyi from valeria .  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 09 / 12 / 2000  10 : 03 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  valeria . i . stone @ exxon . sprint . com on 09 / 12 / 2000 09 : 59 : 37 am  to : shirley . crenshaw @ enron . com  cc :  subject : thank you !  date : september 12 , 2000  from : stone , v . i . ( valeria ) vistone - americas  to : ext - shirley . crenshaw ( a ) enron . co shirlecl - fpexmail  subject : thank you !  dear shirley ,  can you please forward this thank you note to kevin kindall , grant masson ,  tanya tamarchenko and  vince kaminski for me .  dear kevin , grant , tanya , and vince :  i just wanted to thank you for the time you shared with me on friday ,  september 8 th , regarding employment opportunities with enron . i enjoyed  meeting with you and discussing your company ' s structure and mission as well  as the objectives of the research group . i was impressed by the fast - paced  environment and dedication that were displayed by your group . it is apparent  to me that your group greatly contributes to the overall success of enron .  i am looking forward to hearing from you soon .  sincerely ,  valeria stone  - - - - - original message - - - - -  from : ext - shirley . crenshaw ( a ) enron . co  sent : thursday , september 07 , 2000 10 : 27 am  to : stone , v . i . ( valeria )  subject : re : informal exploratory interview with enron research group  valeria :  3 : 30 pm tomorrow the 9 th will be fine . we will have to change the schedule  a little bit , but i believe it will work .  kevin kindall 3 : 30 pm  grant masson 4 : 00 pm  tanya tamarchenko 4 : 30 pm  vince kaminski 5 : 00 pm  same scenario - upon arrival in the lobby go to the security desk and ask  for me . i will meet you in the lobby of the 19 th floor .  thanks so much for your flexibility !  shirley crenshaw  valeria . i . stone @ exxon . sprint . com on 09 / 07 / 2000 08 : 56 : 24 am  to : shirley . crenshaw @ enron . com  cc :  subject : re : informal exploratory interview with enron research group  date : september 7 , 2000  from : stone , v . i . ( valeria ) vistone -  americas  to : ext - shirley . crenshaw ( a ) enron . co shirlecl -  fpexmail  subject : re : informal exploratory interview with enron research group  sure , tomorrow is fine with me . is it possible to schedule it at 3 : 30 pm ?  and i am sure it is not an easy task to fit the schedule of several people  to  be available at the same time window . so please feel free to let me know  if  you will need to do another time adjustment .  - - - - - original message - - - - -  from : ext - shirley . crenshaw ( a ) enron . co  sent : thursday , september 07 , 2000 9 : 47 am  to : stone , v . i . ( valeria )  subject : re : informal exploratory interview with enron research group  valeria :  please do not think we are always this unorganized , but things just seem  to be happening right now and it is disrupting everyone ' s schedule .  would you possibly be able to come tomorrow the 8 th ? kevin kindall  will not be here on the 15 th and he would definately like to interview you .  then vince kaminski will be gone for two weeks after the 15 th . it seems  like tomorrow might be the best time for everyone , if it is for you .  we can begin the interviews at 3 : 00 pm and probably end them at 5 : 00  or 5 : 30 pm .  please let me know .  thanks so much for your understanding .  [ stone , v . i . ( valeria ) ! :  regards ,  shirley crenshaw  valeria . i . stone @ exxon . sprint . com on 09 / 07 / 2000 07 : 46 : 13 am  to : shirley . crenshaw @ enron . com  cc :  subject : re : informal exploratory interview with enron research group  date : september 7 , 2000  from : stone , v . i . ( valeria ) vistone -  americas  to : ext - shirley . crenshaw ( a ) enron . co shirlecl -  fpexmail  subject : re : informal exploratory interview with enron research group  [ stone , v . i . ( valeria ) ! 0  definitely - any of these days sound good to me . the only concern that i  have , is that i have my graduate class on thursday night at 6 pm which is  september the 14 th .  so if you will schedule the interview on the 14 th of september , i would  need  to leave around 5 : 15 pm so i could attend my class .  it actually might be more convenient for me to meet with the interviewers  on  the 15 th of september . if this day does not fit the schedule of any of the  interested in interviewing individuals , i surely will be able to meet with  them on the 14 th .  i will be looking forward to your reply .  sincerely ,  valeria stone  - - - - - original message - - - - -  from : ext - shirley . crenshaw ( a ) enron . co  sent : wednesday , september 06 , 2000 4 : 32 pm  to : stone , v . i . ( valeria )  subject : re : informal exploratory interview with enron research group  valeria :  would you be able to do the interview on the 14 th or 15 th instead of the  13 th ? vince kaminski , who would really like to interview you , has been  called out of town on the 13 th . he will be back on the 14 th .  also grant masson is conducting an options seminar on the 13 th and  would not be able to interview you until after 5 : 00 pm .  please let me know if we can just push the interview to the same time  frame only on the 14 th or 15 th .  thanks !  shirley crenshaw  713 - 853 - 5290\",0\n\"Subject: re : visit to enron by professor nalin kulatilaka of boston  university  hi iris :  may 17 th is fine . he will probably need to come in the night before ( the  16 th )  and he can make a hotel reservation at the doubletree or the hyatt and tell  them he is a guest of enron and he will get a corporate rate . we will  reimburse  him for room expense only . he will need to pick up any miscellaneous room  charges . we will also reimburse him for his flight expense and cab fare .  the doubletree telephone # is : 713 - 759 - 0202 and the hyatt telephone is :  713 - 654 - 1234 .  he can either leave his receipts with me when he is here or mail them  to me and i will have a check cut . i will need his ss # .  if you have any more questions , please let me know .  thanks !  shirley  from : iris mack / enron @ enronxgate on 04 / 20 / 2001 04 : 32 pm  to : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , shirley  crenshaw / houston / eott @ eott  cc : nalink @ bu . edu @ smtp @ enronxgate  subject : re : visit to enron by professor nalin kulatilaka of boston  university  hi shirley ,  vince has requested that we invite professor nalin kulatilaka of boston  university to speak at one of our thursday group luncheons / seminars .  nalin says he is available to speak on may 17 th .  can you let me know if this is okay , and what the procedure is for invited  speakers .  thanks and have a good weekend ,  iris\",0\n\"Subject: re : recent hardware repair  joe ,  we are extremely pleased with the support we receive from your team .  the problem was fixed very quickly .  vince  from : joe langston / enron @ enronxgate on 04 / 27 / 2001 11 : 31 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : recent hardware repair  vince ,  recently the hardware services team performed work on a piece of equipment  for you . the technician that performed the work was jd marter , and this is  just a follow up to insure that your problem was resolved . it is our goal to  provide you with the best service possible , so please feel free to respond to  this email if you have any comments that may help us provide you better  service in the future . attached you will find a work log detailing what was  done to resolve your issue . if you have any questions , or if the problem is  not completely resolved please feel free to contact me .  thank you ,  joe langston  team lead hardware services  office : 713 - 345 - 8883  cell : 713 - 545 - 5912  pager : 877 - 239 - 2794\",0\n\"Subject: re : suggestion : implementing var based on non - normal log - returns  simulations  everybody ,  we were talking for a while about using non - normal distributions in the  monte - carlo simulations in our var model .  i put together some suggestion regarding this . the text is under  o : \\ _ dropbox \\ tanya \\ non _ normal _ logs . doc  look through this 3 page document , and let me know what you think , please .  tanya\",0\n\"Subject: re : lng \"\" book \"\" meeting  doug ,  we were trying to get everybody together for today  but with no luck . wednesday next week is the first feasible  date .  sorry for that .  vince  doug arnell @ enron _ development  08 / 29 / 2000 01 : 59 pm  to : shirley crenshaw / hou / ect @ ect  cc : vince j kaminski @ ect  subject : re : lng \"\" book \"\" meeting  i ' m assuming that this meeting is tomorrow ( wednesday the 30 th ) not next  wednesday .  shirley crenshaw @ ect  08 / 29 / 2000 09 : 06 am  to : sally beck / hou / ect @ ect , eric groves / hou / ect @ ect , doug . arnell @ enron . com ,  vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect  cc :  subject : lng \"\" book \"\" meeting  hello everyone :  the next lng \"\" book \"\" meeting has been scheduled for wednesday ,  september 6 at 2 : 00 pm in ebl 9 c 2 .  thanks !  shirley crenshaw  3 - 5290\",0\n\"Subject: transport model  andy ,  the scale effect in the transport model can be explained .  i use a european option to do the illustration .  i raise the underlying and strike price by the same amount , use the fuel  percentage to adjust the strike .  the net result is the intrinsic value decreases as the level goes up .  if the fuel percentage is not very high , the option premium actually  increases with the level , although the  intrinsic value decreases .  if the fuel percentage is very high ( > 8 % ) , then we see a decreasing option  price .  in the transport deal , fuel change is often below 5 % , so you will not see a  decreasing spread option price  when nymex moves up . so i think the transport model still does what it  should do .  zimin  in the following exmaple , i used r = 6 % , vol = 20 % , t = 100 days , see spreadsheet  for details .  - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 10 / 20 / 2000 01 : 24 pm  - - - - - - - - - - - - - - - - - - - - - - - - - - -  zimin lu  10 / 20 / 2000 10 : 45 am  to : andrew h lewis / hou / ect @ ect  cc : colleen sullivan / hou / ect @ ect , stinson gibner / hou / ect @ ect  subject : level effect in transport  andy ,  the following spread sheet domenstrates the leve effect in transport  valuation .  i add an \"\" nymex add - on \"\" to both delivery and receipt price curve before fuel  adjustment , keep everything else the same . the transport value ( pv of the  spread options )  increases when nymex add - on increases .  i can visit you at your desk if you have further question .  zimin\",0\n\"Subject: re : project tracking database access  hi sandy :  yes he does . actually in our group meeting today , vince kaminski said  that he wants most of his group to have access . i believe stinson gibner  is working on the list . is there a way we could submit a request to  incorporate  a list of people to give them access ? they would need writing access also .  thanks !  shirley  from : enron messaging security @ enron 11 / 30 / 2000  03 : 26 pm  to : shirley crenshaw / hou / ect @ ect  cc :  subject : project tracking database access  shirley ,  the default access is read only . does this person need more rights , i . e .  editor ?  thanks ,  sandy  - - - - - - - - - - - - - - - - - - - - - - forwarded by enron messaging security / corp / enron on  11 / 30 / 2000 03 : 24 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  security resource request system  application line item pending provider processing  application name : unlisted lotus notes appliction how to process this request . . .  for : kenneth parkhill / na / enron  request type : grant  comments : efc \\ research \\ projtrak . nsf - needs access to project tracking database click  .  if you wish to approve this request , select \"\" approve \"\" in the dialog box .  otherwise , select \"\" reject \"\" .  enter comments ( if any ) .  provider approval section  provider ( s ) : enron messaging security / corp / enron status :  e - mail message :  comments : sr  general request : scrw - 4 rjl 94  requested by : shirley crenshaw / hou / ect phone : 3 - 5290  company : 0413 rc # : 107043  priority : normal  application  icons added : expiration date :  unix db required : no  network login id : kparkhil unix login id :  required information :  general comments kenneth parkhill is a new research employee that needs access  to the project tracking database  editing history ( only the last five ( 5 ) are shown )  edit # past authors edit dates  1  2 information risk management  enron messaging security 11 / 29 / 2000 02 : 47 : 37 pm  11 / 30 / 2000 10 : 00 : 43 am\",0\n\"Subject: operational risk iconference  \"\" the person who goes farthest is generally the one who is willing to do and  dare . the sure - thing boat never gets far from shore . \"\" - - dale carnegie  erisk is pleased to announce an iconference on  practical methodologies for operational risk management  keynote speaker : tony peccia , vice president of operational risk at cibc  followed by a panel discussion , which will include the following  distinguished panelists :  marcelo cruz , director of operational risk at ubs ag  tony peccia , vice president of operational risk at cibc  karim rajwani , senior manager of operational risk at royal bank of canada  when : thursday , december 14 at 12 noon est / 5 p . m . london time .  topics to be covered : the battle between \"\" quantitative \"\" and \"\" qualitative \"\"  approaches , measuring the success of operational risk management , applying  large institution methodologies to smaller institutions , and much more .  recommended background reading :  the operational risk piece in our risk jigsaw  you will need to log in to be able to click through to this tutorial , which  features insights from \"\" expert witnesses \"\" ( including panelist marcelo cruz ) ,  the 12 steps of the operational risk management process , and links to  additional resources .  registration : this conference is totally free , and you can participate by  using any computer with internet access and a telephone .  you will need to register for this conference in advance by clicking here  if you have any questions regarding our iconferences , please send email to  iconferences @ erisk . com  see you at the iconference !  your friends at erisk . com ( formerly erisks . com )  p . s . the archived slides , polling results , and real - time replays of our  previous iconferences , including our last iconference on compensation for  risk managers , can be accessed here free of charge .  your email : [ vkamins @ enron . com ] is in our erisks . com mailing list . if you  wish to unsubscribe from future mailings , please forward this message  to : unsub _ opriskl @ email . erisks . com to subscribe , please forward this message  to sub _ opriskl @ email . erisks . com [ image ]\",0\n\"Subject: address for recommendations  vince ,  please forward the recommendations to the following address :  2569 windbreak dr .  alexandria , va 22306  don ' t forget to label each envelope , e . g . \"\" columbia \"\" , etc . , and to sign  each envelope over the adhesive seal . i must receive the package  before the new year in order to meet the submission deadline .  thank you for your time , and happy holidays .  - hector\",0\n\"Subject: course outlines  jeff ,  i am sending you a draft of the outline of the course on energy derivatives .  i would appreciate your comments before i finalize it .  by the way , did we agree on the time schedule for the class ?  tuesday or thursday evening would work for me .  vince\",0\n\"Subject: approval is overdue : access request for mark . breese @ enron . com  this request has been pending approval for 2 days and you are the  alternate . please click  approval to review and act upon this request .  request id : 000000000005820  approver : stinson . gibner @ enron . com  request create date : 10 / 26 / 00 2 : 27 : 45 pm  requested for : mark . breese @ enron . com  resource name : \\ \\ enehou \\ houston \\ common \\ research - [ read / write ]  resource type : directory\",0\n\"Subject: information you requested from economic capital iconference  thank you for requesting information about our products during the  registration  for the recent erisk iconference on economic capital .  please click on the link below to read an overview of our offerings in the  areas of analytics , consulting , and risk transfer :  note : if you can ' t open this pdf , you need to upgrade to the new version of  adobe acrobat reader at  additional materials :  read a case study about implementation of our erisk analytics at cobank :  read a case study about implementation of p & c raroc at the st . paul companies :  if you would like to speak directly with an erisk representative ,  please contact angela isaac at aisaac @ erisk . com regarding consulting  and risk transfer projects and murray nash at mnash @ erisk . com to learn  more about our erisk analytics product .  regards ,  erisk client services  this is a one - time mailing only . to subscribe to our regular email  newsletter , please register at  if you received this mailing in error , please email info @ erisk . com with  \"\" unsubscribe \"\" in the subject line .\",0\n\"Subject: re : jcc  kevin ,  thanks for the heads - up . i ' m doing face - time with a customer on wednesday ,  but i ' m in all day tomorrow , thursday and friday ( i ' ve a got a deadline to  meet this pm ) . when would it be convenient to meet , and could we do it early  in the morning so as to be able to conference ansguman srivastav ( enron  india ) into the meeting ?  regards ,  marc  kevin kindall @ enron  10 / 30 / 2000 10 : 55 am  to : marc de la roche / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect  subject : jcc  good morning . i apologize for the response delay . i ' ve gone back through  the analysis that i did back in april , and have thrown around some ideas with  vince and stinson . the issue may be summarized as follows .  the hedge relationship was derived using jcc and prompt brent , and is valid  for jcc and prompt brent . no problems here . however , it will not be valid  for points far out on the forward curve . intuitively , this hedge  relationship will approach one as we move far out on the curve , but since  there is no data , i can not statistically determine this . one can imagine a  term structure of heding ratios that start at 0 . 67 and move to 1 . 0 , so that  the back end of the curves would move together , but how fast it converges to  one is anyone ' s guess .  if there is a way of determining the historical jcc forward curve , then the  hedge relationships may be estimated . however , i have been unable to  determine a rigorous approach to building the jcc curve .  i can explain this far better in person , and would like to talk as soon as  possible at your convenience .  - kevin kindall\",0\n\"Subject: order confirmation  thank you for your order . instructions regarding any electronic product  purchases and a full order summary are listed below , beginning after the  special announcement .  special announcement  introducing hbr onpoint , an indispensible new resource from \"\" harvard  business review \"\" that makes it faster and easier to put important  management thinking to work .  hbr onpoint gives you :  * a quick overview of critical management concepts  * different experts ' views on a given topic  * the context critical for sharing and applying the knowledge you ' ve  acquired  to learn more and pick up a free article overview , visit our web site :  your order contains adobe acrobat files . you can download and print these  files by using the temporary url listed below . the url will expire in 24  hours . feel free to use the url from your office or home computer . to go  immediately to the temporary web page , click on the link below , or copy  and paste the url in to your browser .  below you will find your order information . if you have any questions  concerning this order , please e - mail us at orderreceipt @ hbsp . harvard . edu  ( or just reply to this message ) . for technical inquiries , email us at  techhelp @ hbsp . harvard . edu  your order reads as follows :  - - - - - - - - - - - - - - - - - - - - - - - - - - - -  customer ' s web id : 299070  sold - to no : a 49227  sold - to information :  first name : wincenty  last name : kaminski  institution / company name : enron corp  job title : managing director  mail stop / dept . : ebl 962  address : 1400 smith  address :  city : houston  state : tx  zip / postal code : 77002  country : united states  email address : vkamins @ enron . com  phone number : 713 853 3848  fax number : 713 646 2503  attn :  name of person who placed order : wincenty kaminski  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  bill - to information :  first name : wincenty  last name : kaminski  institution / company name : enron corp  job title : managing director  mail stop / dept . : ebl 962  address : 1400 smith  address :  city : houston  state : tx  zip / postal code : 77002  country : united states  email address : vkamins @ enron . com  phone number : 713 853 3848  fax number : 713 646 2503  attn :  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  ship - to information :  first name : wincenty  last name : kaminski  institution / company name : enron corp  job title : managing director  mail stop / dept . : ebl 962  address : 1400 smith  address :  city : houston  state : tx  zip / postal code : 77002  country : united states  email address : vkamins @ enron . com  phone number : 713 853 3848  fax number : 713 646 2503  attn :  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  order  prod . # product title quantity price total  98506 strategy as a portfo . . . 1 $ 5 . 50 $ 5 . 50  97305 what ' s it worth ? : a . . . 1 $ 5 . 50 $ 5 . 50  97306 using apv : a better . . . 1 $ 5 . 50 $ 5 . 50  sub - total : $ 16 . 50  surcharge : $ 0 . 00  shipping and handling : $ 0 . 00  gst : $ 0 . 00  tax : $ 0 . 00  grand total : $ 16 . 50  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  total due : $ 0 . 00 ( pre - paid by visa )  shipping method : non - shippable , pdfs  * please note that there is applicable sales tax in ca , ct , il , ma , md , and  tn for the products you have ordered . if you are ordering from one of  these states , the amount shown on your invoice and / or credit card  statement will be slightly higher than the total listed above , to reflect  the applied sales tax . *  listservs are a great way to keep up with what ' s going on at the harvard  business publishing web site . right now , we offer 3 alerts : management  alert , strategy alert , or hr / training alert . each of these e - mail   combines a specially selected excerpt with  announcements of new and bestselling products from ourextensive catalog .  you can also find out what ' s coming up in both harvard business review and  harvard managementupdate newsletter . to subscribe to one or more of these  free services , follow the link below . and thank you for ordering from  harvard business school publishing , the power of ideas at work . \",0\n\"Subject: re : energy course  julie ,  no objections . please , include our names .  vince  \"\" julie \"\" on 05 / 05 / 2000 04 : 22 : 29 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : energy course  dear vince ,  thanks for attending the energy derivatives course , and i hope you found it  valuable .  there ' s been some interest from other course attendees to put together a  contact list and distribute it to one another . i ' m contacting you to see if  you or zimin lu have any objection to being included on the list . we will  include only details that you approve , such as name , company name , address  and email if you wish .  we would like to send out the list early next week , so please let us know .  thanks ,  julie  ps - how ' s the chapter ?  - attl . htm\",0\n\"Subject: rice course  vince  i am an adjunct professor at rice , working with wil uecker in executive  education . with your concurence , i would like to sit in your energy  derivatives course . i understand from wil that there are 38 students  registered for the course . if you consent , would you let me know what  material i need .  thank you ,  dennis w . loughridge  713 - 348 - 2812\",0\n\"Subject: meeting at wharton  i am out of the office next week . please send details on the meeting at  wharton to my assistant , danielle dees . she will make my travel  arrangements . i believe you were recommending a hotel as well .\",0\n\"Subject: luigi zingales seminar on april 27  rice / enron finance seminar participants :  luigi zingales will present a paper co - authored with raghuram g . rajan ,  entitled \"\" the great reversals : the politics of financial development in the  20 th century . \"\" ? the full text of the paper is available in pdf form on the  seminar website :  http : / / www . ruf . rice . edu / ~ jgsfss  the baton for organizing the seminar series has been passed from barbara  ostdiek to myself . ? if you have questions regarding the series , please  contact me ( wangfa @ rice . edu or 713 - 348 - 5404 ) .  as we have done in the past , we will post the abstract and a downloadable  version of the paper ( if available ) to the website a week or two before the  seminar . ? the website will also provide a link to the speaker ' s homepage so  you can access his or her biographical information . ? if the paper is not  available at the website , i will send a hardcopy to interested jones school  faculty , to felecia jones ( economics ) , sorin sorescu ( university of houston ) ,  and vince kaminski ( enron ) .  i will e - mail an announcement before each seminar , reminding you of the  seminar date , time , and location . ? the distribution list will include  everyone that receives this e - mail . ? please let me know if you would like to  be deleted from the mailing list or if you know of someone who should be  added .  albert  fu - kuo albert wang  assistant professor  jones graduate school of management - - ms 531 ?  rice university ?  6100 main street ?  houston , tx 77005 ?  phone : 713 - 348 - 5404 ?  fax : ? ? ? ? 713 - 348 - 5251  email : wangfa @ rice . edu  http : / / www . ruf . rice . edu / ~ wangfa /\",0\n\"Subject: last day , contact numbers , etc .  hi guys !  as most of you know by now today is my last day at enron north america . it  has been really great few months and maureen has most graciously put up with  my school and exam schedule . as today is also my graduation from the  university of houston , i don ' t have any formal reasons to remain in houston  and will be heading to the misty albion to work for enron europe as soon as  my work permit for the uk is ready . the latter is still a mystery but is  anticipated some time in early february . right now i am planning to come back  to houston middle of january to wait for the work permit and sell my car ,  some furniture , etc . ( stay tuned for great deals : - ) so , i will be back to  see you guys . if you miss me too much try to find consolation in miss yana  kristal , a u of h student of slavic origin , who will be taking over my  responsibilities starting early january . i know i will miss you and am  planning to sneak in the video conferencing room during the thursday  meetings . i know it won ' t be the same , but it ' s better than nothing . or you  can start planning that trip to london . . .  below are the numbers where if you can ' t reach me there will be information  where i might be .  phone numbers :  houston : 713 - 213 - 7733 - cell  come back to houston january 15 ( depending on how the work permit is coming ) .  have very , very happy holidays and a great millenium !  martina\",0\n\"Subject: interview with the enron research group  hello mr . kudin :  vince kaminski has asked me to schedule interviews for you with some  of the research group . however , tuesday , the 8 th is not a good day for  everyone as we will need approximately 3 hours .  could you do it thursday afternoon may 10 th ? we could start at 1 : 00 pm  and be through by 4 : 00 pm .  the interviewers would be :  vince kaminski managing director  stinson gibner vice president  krishna krishnarao vice president  tanya tamarchenko director  zimin lu director  alex huang director  please let me know if this will work for you . if so , i will need you to  forward  me a copy of your resume .  regards ,  shirley crenshaw  administrative coordinator  enron research group  713 - 853 - 5290  email : shirley . crenshaw @ enron . com\",0\n\"Subject: interesting article about enron in japan ' s electricity newspaper  japan ' s electricity newspaper ( \"\" denki shimbun \"\" , the equivalent of megawatt  daily ) has been running a series of articles about the new century . several  of these have focused on the power industry in the u . s . a friend of mine ran  across one on enron that was published on april 13 and sent it to me . i  thought you would find it interesting .  the article focuses on ees in particular and about how we try to succeed by  being first to meet our clients ' changing needs . it also describes how we  use derivatives and risk management to reduce costs and stay competitive .  the article also briefly mentions the new office in japan .  the most interesting thing about the article is how incredibly positive it is  about enron . given what i have read and heard about how nervous the japanese  are about deregulation of the industry , i really did not expect such praise .  denki shimbun also has a web site at \"\" www . shimbun . denki . or . jp \"\" . they have  small summaries of the important articles of the day ( the site , however , is  completely in japanese ) . another interesting site is  \"\" www . criepi . denken . or . jp \"\" , the english home site of japan ' s central research  institute of electric power industry ( denryoku chuo kenkyuujou ) . the site  has many links to other english - language sites related to the power industry  in japan .  regards ,  eugenio\",0\n\"Subject: job application  dear dr . kaminski ,  i currently hold a post - doctorate position in the mathematics  department at the university of texas at austin ( with a ph . d .  in theoretical physics ) . although my position here is renewable  until summer 2001 , i would like to move on to a more dynamic field  where i can still use my analytical skills and mathematical knowledge .  since attending a series of lectures on mathematical finance given  by dr . marc potters last summer i started studying the subject on my  own and found it intriguing and challenging .  i am interested in a position in your group ( rac ) at enron .  last fall in a career seminar at ut you mentioned that people who are  interested can send you their resume . if this is still relevant , please  find below my resume ( in word 97 and text formats ) .  thank you for your time .  yours ,  nurit krausz  nurit krausz , ph . d . http : / / www . ma . utexas . edu / users / nurit /  dept . of mathematics phone : ( 512 ) 471 - 7170  university of texas at austin office : rlm 11 . 170 hours : mwf 8 : 30 - 10  resume  nurit krausz  university of texas  department of mathematics  austin , tx 78712  phone : ( 512 ) 471 - 7170  e - mail : nurit @ math . utexas . edu  http : / / rene . ma . utexas . edu / users / nurit /  objective  a position in the field of mathematical finance utilizing broad  mathematical knowledge , innovative thinking and creativity .  summary of qualifications  with extensive academic background and research experience ,  combined with experience as an engineer in the israeli air force ,  i possess the following :  * deep mathematical and scientific knowledge .  * strong analytical and problem - solving skills .  * proven ability to quickly become an expert in new subjects .  * ability to present clearly and effectively complicated subjects .  * ability to work productively both independently and in teams .  academic positions  1998 - present : post - doctorate position at the university of texas  at austin , department of mathematics .  education  1994 - 1998 : d . sc . in physics at the technion - israel inst . of tech .  research thesis : quantum dynamics on non - compact group manifolds .  supervisor : prof . m . marinov .  1992 - 1994 : m . sc . in physics at the technion - israel inst . of tech .  research thesis : a study of scintillation in doped silica glass  for detection of neutrino oscillation .  supervisor : prof . j . goldberg .  the experiments were performed at cern during the summer of 1993 .  * performed the design , testing , and installation of the experimental  setup from remote - controlled mechanical equipment to sophisticated  electronics .  * performed statistical data analysis and critical interpretation of  results using software developed at cern ( paw ) .  * solved a complicated problem of track reconstruction through an  unusually shaped magnet for the chorus collaboration at cern , and  delivered a computer code ready for implementation , still in use  today .  1985 - 1989 : b . sc . in aeronautical engineering cum laude at the  technion - israel institute of technology .  military service  1989 - 1992 : aeronautic design engineer in the israeli air force .  rank : first lieutenant .  * designed and supervised numerous prototype installations of  electronic equipment and changes in combat planes .  * wrote procedures for harsh environmental durability tests for cockpit  and avionics bay - mounted equipment .  * negotiated and supervised manufacturing of parts with contractors .  * attended project management , engineering and product reliability  and maintenance courses .  * programmed simulations of ammunition trajectories from moving  aircrafts .  teaching experience :  1998 - present : lecturer at the university of texas  undergraduate courses : precalculus , calculus , linear algebra  graduate course : theory of lie groups  1992 - 1997 physics department , technion , teaching assistant  undergraduate course : elementary lab in mechanics  graduate courses : group theory for physics ,  introduction to particle physics , relativistic quantum mechanics .  computer knowledge :  unix and windows os , most common word processors , excel ,  maple , mathematica , fortran , html , latex .  publications :  1 . j . goldberg and n . krausz , response of cerium - doped silica glass  in a beam at cern , proceedings of the scifi conference , notre dame  university , notre dame , indiana ( 1993 ) .  2 . n . krausz and m . s . marinov , quantal dynamics on non - compact  groups , proceedings of the 5 th international wigner symposium ,  world scientific ( 1998 ) , 398 .  3 . n . krausz and m . s . marinov , exact evolution operator on  non - compact group manifolds , quant - ph / 9709050 ,  submitted to j . of math . phys .  4 . n . krausz , spherical averages in minkowski space , in preparation .  5 . n . krausz , quantum field theory in minkowski space , in preparation .  - resume . doc\",0\n\"Subject: slides for jeff ' s presentation  all requested slides and updates , including raw data and calculations , are in  the spreadsheet below  volatility calculations are up to december 8 , 2000 .  - hector\",0\n\"Subject: re : henwood contract  vince / stinson ,  just fyi ! !  regards ,  sandeep .  - - - - - - - - - - - - - - - - - - - - - - forwarded by sandeep kohli / enron _ development on  03 / 08 / 2001 08 : 38 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  paul kraske  03 / 07 / 2001 11 : 03 pm  to : sandeep kohli / enron _ development @ enron _ development  cc : anshuman srivastav / enron _ development @ enron _ development  subject : re : henwood contract  sandeep ,  just to let you know , i was at a couple of meetings in london with rebecca  macdonald . she pretty much raved about your presentation . sounds like you  guys impresed her a fair amount and that you guys did a great job . regards  to the family .  paul\",0\n\"Subject: re : ll visa - anshuman shrivastava  molly : for your information , i received this reply from anshuman today .  as i mentioned in my voicemail to you today after seeing the note from neil  mcgregor , there is no possible way that anshuman could be in the us to work  on february 5 th . until i receive all of his documents , and the necessary  information from you regarding his position in the us , i do not have the  information to send to the attorneys for the visa application .  once they receive the paperwork , they will need to prepare the documents in  triplicate , and send to me . at this stage , i will send the documents to  anshuman in india and he will need to make an appointment at the us consulate  in order to have the ll visa stamped into his passport . he will not be able  to come to the states to work without this visa in his passport ! all of this  could take approx . 3 - 4 weeks to accomplish . i think march would be a more  realistic timeframe !  please let me have your thoughts .  thanks  margaret  - - - - - - - - - - - - - - - - - - - - - - forwarded by margaret daffin / hou / ect on 01 / 25 / 2001  09 : 45 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  anshuman srivastav @ enron _ development  01 / 25 / 2001 12 : 35 : 53 am  to : margaret daffin / hou / ect @ ect  cc : sandeep kohli / enron _ development @ enron _ development , harsimran  subject : re : ll visa - anshuman shrivastava  hi margaret ,  apologies for not getting in touch earlier . i am unfortunately out of mumbai  and will be back only on sunday . will send you all the documents on monday  morning . they will reach you by latest wednesday .  appreciate the help ! !  thanks !  regards ,  anshuman  margaret daffin @ ect  01 / 24 / 2001 10 : 57 pm  to : anshuman . srivastav @ enron . com  cc : molly magee / hou / ect @ ect , vince j kaminski / hou / ect @ ect , jane  allen / hou / ect @ ect , timothy callahan / na / enron @ enron , ranendra  sengupta / enron _ development @ enron _ development , wade  cline / enron _ development @ enron _ development , neil  mcgregor / enron _ development @ enron _ development @ ect , harsimran  subject : ll visa - anshuman shrivastava  anshuman : please go ahead and complete the visa questionnaire and send the  required documents so that i can proceed with your working visa for the us .  regardless of the length of time you will be in the us , you will still need  the ll visa in order to work here .  many thanks  margaret  - - - - - - - - - - - - - - - - - - - - - - forwarded by margaret daffin / hou / ect on 01 / 24 / 2001  11 : 24 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  margaret daffin  01 / 23 / 2001 11 : 01 am  to : anshuman . srivastav @ enron . com  cc : molly magee / hou / ect @ ect , vince j kaminski / hou / ect @ ect , jane  allen / hou / ect @ ect , timothy callahan / na / enron @ enron , ranendra  sengupta / enron _ development @ enron _ development , wade  cline / enron _ development @ enron _ development , neil  mcgregor / enron _ development @ enron _ development @ ect , harsimran  subject : ll visa - anshuman shrivastava  anshuman : i have been asked to contact you regarding your possible move to  houston , texas . in order that i may begin the process of getting you an ll  immigration visa , i will need you to complete the attached visa questionnaire  and return it to me with copies of the following documents :  a copy of all pages of your passport , even if blank  copies of all previous us visas issued  an updated resume , showing months and years  copies of all diplomas and transcripts received  if you have dependent family members coming to the states with you , copies of  their passports  please send to my attention , via fedex to :  enron corp .  3 allen center , 3 ac 2026 a  333 clay street  houston , tx 77002  please call me with any questions you may have at 713 - 345 - 5083 .\",0\n\"Subject: seasonal greetings  seasonal greetings and best wishes for a happy and prosperous new year !  les .  dr . les clewlow  visiting research fellow , school of finance and economics , university of  technology , sydney , australia .  associate research fellow , financial options research centre , warwick  business school , coventry , uk , cv 4 7 al .  director , lacima group ltd . 55 skylines village , limeharbour , london , el 4  9 ts , uk . phn : + 44 ( 0 ) 171 531 9628 , fax : + 44 ( 0 ) 171 538 5781  www : http : / / www . lacimagroup . com\",0\n\"Subject: outage pricing model revision : allowing for power price vs . outage  correlation  i have included provision for providing rank correlation between \"\" jump occurrence in daily average power price \"\" and \"\" outage occurrence \"\" . the model will provide the same claim distribution as before when pricevsoutage correlation = 0 is used . claim goes up as the correlation is increased . i have performed some sensitivity analysis and the results seem to make sense .  the new model workbook is \"\" 40901 . xls \"\" and corresponding dll is \"\" outagepricingo 40901 . dll \"\" , both located in o : \\ grm \\ research \\ outagerisk \\ subdirectory . the price vs . outage rank correlation input will need to be provided in \"\" main \"\" spreadsheet . please call me if you have any questions .  - amitava\",0\n\"Subject: welcome  network world fusion focus : jason meserve on  security and bug patch alert  today ' s focus : bug alert : welcome  03 / 06 / 00  dear wincenty kaminski ,  today ' s focus : bug alert : welcome  by jason meserve  welcome to the security and bug patch alert newsletter !  given the recent spate of high - profile denial - of - service and hack  attacks and the large number of people who have signed up for this  newsletter before this first edition has been even published , it is  clear that security is a major concern in the it community as it  should be .  with technology now being looked upon as a profit rather than cost  center , it departments face more pressure to keep critical systems up  and running as well as secure . no chief information officer or network  manager wants to have to tell the ceo that their e - commerce site has  been broken into and customer credit card data copied . stories like that  tend to stick in a potential customer \u0001 , s mind more than an expensive  super bowl ad .  it \u0001 , s hard enough to keep up with the latest new technologies , never mind  latest security patch for your operating system or e - commerce  application . but we \u0001 , re here to help .  once a week we \u0001 , ll publish a list of patches and alerts from all the  major vendors and security organizations with links to the source . we \u0001 , ll  also provide other ( hopefully ) useful resources for the security -  conscious it manager .  comments and suggestions are always welcome ! send mail to  jmeserve @ nww . com .  now on with the latest patches and alerts :  security glitch hits foundry switches  from this week \u0001 , s network world : a security problem has cropped up in  foundry networks \u0001 , serveriron switches that make the devices susceptible  to denial - of - service attacks .  read the story :  download the patch :  http : / / www . foundrynet . com / bugtraq . html  * * * * * * * *  new version of apache web server released  the apache server project released version 1 . 3 . 12 of the popular apache  web server this week . the new release fixes what apache calls a cross -  site scripting problem that could allow malicious html tags to be  inserted into client - side scripts . download the new version at :  http : / / www . apache . org / dist /  * * * * * * * *  problem with linux htdig package  both freebsd and debian are reporting a problem with the htdig package  that runs on their respective platforms . the problem is with the  htsearch and could allow a user to read any file on the local machine  accessible to the user id that the script is running under ( which in  most cases is \u0001 + nobody \u0001 , ) .  for more information from debian :  http : / / www . debian . org / security /  to download a patch from freebsd :  http : / / www . freebsd . org / ports /  * * * * * * * *  nmh linux package patched  versions of nmh prior to 1 . 0 . 3 have a vulnerability that could allow  malicious users to modify the mime headers in a mail message that may  cause nmh \u0001 , s mshow command to execute arbitrary commands . a patch is  available at :  * * * * * * * *  zombie zapper 1 . 1 available  zombie zapper 1 . 1 helps shut down the troj _ trinoo denial - of - service  client on windows nt and unix machines . more information at :  * * * * * * * *  problem with mysql password authentication  according to the makers of freebsd , a vulnerability in the mysql  database server ( prior to version 3 . 22 . 32 ) could allow anyone that can  connect to the database to access it without a password . more  information at :  * * * * * * * *  to contact jason meserve :  - - - - - - - - - - - - - - - - - - - - - - - - -  jason meserve is a staff writer with network world , covering search  engines , portals , videoconferencing , ip multicast and document management .  he also oversees the \"\" security alerts \"\" page on fusion  ( http : / / www 2 . nwfusion . com / security / bulletins . html ) . jason can be reached  at mailto : jmeserve @ nww . com .  subscription services  to subscribe or unsubscribe to any network world e - mail newsletters ,  go to :  to change your email address , go to :  subscription questions ? contact customer service by replying to this  message .  other questions / comments  have editorial comments ? write jeff caruso , newsletter editor , at :  mailto : jcaruso @ nww . com  for advertising information , write jamie kalbach , account executive ,  at : mailto : jkalbach @ nww . com  network world fusion is part of idg . net , the idg online network .  it all starts here :  http : / / www . idg . com  copyright network world , inc . , 2000\",0\n\"Subject: houston visit  dear research and related group team members ,  i will be visiting the houston office from monday 10 th july and hope to have  another very useful information exchange , including updating you all on the  activities in the london office by means of a presentation . for those of you  who are unfamiliar with me , i have been looking after quantitative analysis  for the european markets for the last 3 + years , in particular focusing on  derivatives pricing and risk management techniques ( e . g . load forecasting ,  inflation curve building , financial options on real power stations etc . ) -  look forward to meeting you all again soon .  best regards ,  anjam ahmad  research group  enron europe  cellular : ( 07747 ) 868131\",0\n\"Subject: re : agenda for ny mg metals visit  hi ted and vince ,  thank you for conveying our thoughts exactly - tanya and i hope to close the  circle with you at 4 pm , ted .  regards ,  anjam and tanya  from : ted murphy  14 / 07 / 2000 16 : 02  to : vince j kaminski / hou / ect @ ect  cc : richard sage / lon / ect @ ect , vince j kaminski / hou / ect @ ect , anjam  ahmad / lon / ect @ ect , bjorn hagelmann / hou / ect @ ect , ted murphy / hou / ect @ ect , dale  surbey / lon / ect @ ect , stinson gibner / hou / ect @ ect , steve w young / lon / ect @ ect ,  eric gadd / lon / ect @ ect , david port / market risk / corp / enron @ enron  subject : re : agenda for ny mg metals visit  i agree with vince . ideally , this visit would supplement rather than  duplicate effort . however , on the front end , i would prefer a little  overkill to underkill - especially with respect to the var process . i would  defer to anjam / tanya ' s opinion as to what is necessary to get an initial  comfort level . remember that this is the first cut , but it will need to be  refined over time to the point where it is credible enough to force someone  to take a position down based on the calculatiion . if this causes some  heartburn please refer those people to me .  ted  vince j kaminski  07 / 14 / 2000 09 : 04 am  to : lloyd fleming / lon / ect @ ect  cc : richard sage / lon / ect @ ect , vince j kaminski / hou / ect @ ect , anjam  ahmad / lon / ect @ ect , bjorn hagelmann / hou / ect @ ect , ted murphy / hou / ect @ ect , dale  surbey / lon / ect @ ect , stinson gibner / hou / ect @ ect  subject : re : agenda for ny mg metals visit  lloyd ,  speaking from experience , i think that it ' s critical for tanya and anjam to  visit mg in new york  and establish direct relationship with technical people . merging two risk  management systems  requires handling many very technical issues and face to face discussions  between it and quants  will be very helpful .  vince  from : lloyd fleming 07 / 14 / 2000 03 : 42 am  to : tanya tamarchenko / hou / ect @ ect  cc : andreas . barschkis @ mgusa . com @ enron , richard sage / lon / ect @ ect , vince j  kaminski / hou / ect @ ect , anjam ahmad / lon / ect @ ect , bjorn hagelmann / hou / ect @ ect ,  ted murphy / hou / ect @ ect , dale surbey / lon / ect @ ect , stinson gibner / hou / ect @ ect  subject : re : agenda for ny mg metals visit  tanya ,  i think most of your queries can be dealt with on the phone - i ' ll be at mg  with andreas today and we ' ll call you . most of these points have already  been covered with anjam in any case . i ' m also attaching a file downloaded  from mercur ( mg ' s risk aggregation system ) showing monthly total positions  for each metal in each entity . you can fairly easily create tables and graph  what you want to see . we can talk today about getting a full deal download .  regards  tanya tamarchenko  13 / 07 / 2000 22 : 45  to : andreas . barschkis @ mgusa . com @ enron  cc : dale surbey / lon / ect @ ect , lloyd fleming / lon / ect @ ect , richard  sage / lon / ect @ ect , vince j kaminski / hou / ect @ ect , anjam ahmad / lon / ect @ ect ,  stinson gibner / hou / ect @ ect , bjorn hagelmann / hou / ect @ ect , ted  murphy / hou / ect @ ect  subject : agenda for ny mg metals visit  hi andreas ,  here are the issues we would like to discuss on our thursday meeting in ny :  1 . inputs for options valuation , in particular the origins of volatility  curves ;  2 . information on exotic options structures ( existing  3 . the data flow ( are we going to get data from london or ny ) .  4 a . storage of positions information at mg . how to extract the positions  info from  mg database into spreadsheets .  4 b . existing positions structure for each metal .  5 . introduction to concentrates trading business , key personnel .  best regards ,  tanya & anjam  713 853 3997\",0\n\"Subject: contact info  fyi !  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 03 / 21 / 2001  10 : 27 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  kevin _ kindall @ fpl . com @ fpl . com on 03 / 21 / 2001 10 : 25 : 28 am  to : shirley . crenshaw @ enron . com , anita . dupont @ enron . com  cc :  subject : contact info  hi . i have email access ! ! my contact info . . .  phone number : ( 561 ) 625 7525  fax : ( 561 ) 625 7519  feel free to forward this info to other members of the group . i ' m  still in corporate housing , so no home address yet .  the only loose end that i can think of pertains to an issue that came  up in the exit interview . am i to be reimbursed for unused vacation ?  norma villereal said something about this , but i ' m not certain about the  details .  stay in touch .  kevin kindall\",0\n\"Subject: tiger team application forms  vince :  the application forms , as promised .  good talking to you and christie this morning . the project sounds very  exciting and we look forward to working with enron .  let me know if there is further info we can provide .  thanks ,  donna  - 2001 field application form 1 . doc  - 2001 field application form 2 . doc\",0\n\"Subject: department of energy is deploying a corporate portal at facilitie s  across the country  star information technology brings has the tools needed to help energy  companies gain knowledge . if it ' s information from oasis to market prices .  the events that change prices such as weather and more are always just one  click away with star information technologys ' powerful portal tools . our  portal products are the difference between seeing and doing . hosting dynamic  applications such as on - line reports , calendars , e - mail , and commerce  services create a one - stop shop for users to go about almost all of their  daily tasks : analyzing customer trends , checking schedules , viewing revenue -  or project - related performance metrics , and buying or selling products .  combining all the information relevant to users ' work with the ability to  act on that information enables organizations to get more done .  five government agencies deploy plumtree corporate portal at hundreds of  facilities -  the naval air systems command ( navair ) , department of energy ( doe ) ,  department of defense , national institutes of health and army public affairs  center are deploying a corporate portal at facilities across the country as  part of ongoing governmental initiatives to maximize efficiency , develop  more online content and provide private sector levels of customer service .  the plumtree corporate portal integrates regulatory , enforcement and  incident database reports , enterprise applications and internet services  into the agencies ' portals as portal gadgets ( tm ) , plug - in modules that embed  components of applications and interactive internet services in a  personalized portal page . the portal growth in the public sector is driven  by its success applying business technology to the specific challenges of  government , empowering federal agencies to simplify access to their data ,  reduce paperwork , benefit from the resources on the internet and share  information securely with their employees , contractors and constituencies .  for more information on how star information technology can help your  business turn knowledge into power contact us today at 508 - 359 - 6891 ext 115 .  christopher k . heisler  product manager  508 - 359 - 6892 ext 115  www . starit . com  cheisler @ starit . com  we make knowledge power\",0\n\"Subject: user id and password update  dear subscriber ,  ? ? ? ? ? ? ? ? institutional investors newsletters is in the process of upgrading  its web sites backend database . ? we have found that you have different user  names and passwords for the following newsletters :  derivatives week ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? http : / / www . derivativesweek . com  power finance ( 212 ) 224 - 3491 fax  nhumphrey @ iinews . com\",0\n\"Subject: re : energy book and articles  vince ,  that ' s good news . anything you need from me please feel free to ask - if we  can get the ball rolling soon we can time things well with the publication  of the book ( my diary says that there are 2 weeks until the contract goes  out on you and grant . . . ) .  best regards .  chris .  - - - - - original message - - - - -  from : vince j kaminski  to : chris strickland  cc : vince j kaminski ;  sent : wednesday , may 17 , 2000 12 : 53 am  subject : re : energy book and articles  >  >  > chris ,  >  > yes , i mentioned it to both the us - editor and robin .  > they were very interested and i don ' t think there should be any problem  > with this initiative .  >  > i shall follow up with another message to jane locke and robin lancaster .  >  > vince  >  >  >  >  > \"\" chris strickland \"\" on 05 / 15 / 2000 06 : 00 : 00 pm  >  > please respond to \"\" chris strickland \"\"  >  > to : \"\" vince j kaminski \"\"  > cc :  > subject : re : energy book and articles  >  >  > vince ,  >  > thanks , i would be very interested to have a look .  >  > my question was a bit vague - i meant to ask if you had spoken to the  editor  > about the series of articles ?  >  > best regards .  >  > chris .  >  >  > - - - - - original message - - - - -  > from : vince j kaminski  > to : chris strickland  > cc : vince j kaminski  > sent : tuesday , may 16 , 2000 8 : 15 am  > subject : re : energy book and articles  >  >  > >  > >  > > chris ,  > >  > > yes , i was a keynote speaker . i shall send you my presentation .  > >  > > vince  > >  > >  > >  > >  > >  > >  > > \"\" chris strickland \"\" on 05 / 15 / 2000 06 : 31 : 14 am  > >  > > please respond to \"\" chris strickland \"\"  > >  > > to : \"\" vincejkaminski \"\"  > > cc :  > > subject : energy book and articles  > >  > >  > >  > > dear vince  > >  > > thanks for your voice mail last week . did you get to talk to eprm in  > houston  > > last week ?  > >  > > best regards .  > >  > > chris .  > >  > >  > >  > >  > >  > >  > >  > >  >  >  >  >  >  >  >  >\",0\n\"Subject: re : resumes  vince ,  see below for my picks based on the resumes . the others marked as \"\" no \"\"  might be ok as well , but did not seem to have as much slant towards finance .  - - stinson  vince j kaminski  04 / 04 / 2001 03 : 45 pm  to : stinson gibner / hou / ect @ ect  cc :  subject : resumes  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 04 / 2001  03 : 45 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  to :  cc :  subject : resumes  here are some people you might want to speak with . ? siriam lives in  houston . ? please see the attached resumes of the following :  ?  karim ashktorab yes ( might be expensive ? )  stephen liu no  farshad ravanshad no  matthew rusk no  samir ranjan yes  cedric chow no  sriram vasudevan maybe ( already in houston )  ?  regards ,  ?  scott gerson  focus capital markets  71 vanderbilt avenue  suite 200  new york , ny 10017  ( 212 ) 986 - 3344 tele  ( 212 ) 986 - 3370 fax  - focus sriram vasudevan . doc  - focus cedric chow . doc  - focus samir ranjan . doc  - focus matthew rusk . doc  - focus farshad ravanshad . doc  - focus stephen liu . doc  - focus karim ashktorab . doc\",0\n\"Subject: re : confidential  molly ,  we are in process of setting up an interview .  vince  enron north america corp .  from : molly magee 10 / 18 / 2000 02 : 56 pm  to : jlew @ kent . edu  cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect  subject : confidential  dr . lew : vince kaminski has asked me to contact you in connection with your  interest in enron . he would like to schedule a mutually convenient time for  you to visit houston and meet with his group . the dates that have been  suggested are : wednesday , 10 / 25 / 2000 ; thursday , 10 / 26 / 2000 ; or friday ,  10 / 27 / 2000 . i hope that one of these dates will be convenient for you to  come in for interviews .  you may either respond to me by email , or phone me at 713 853 - 4804 , whichever  is easier for you . i am also leaving a voicemail message for you at your  home phone number .  we hope to hear from you soon .  molly magee  recruiting manager\",0\n\"Subject: re : garp credit derivatives discussion group  vince  first meeting will be dec 11 or 12 at west deutche landesbank , ny .  look for phone - in details next week .  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : friday , december 01 , 2000 10 : 24 am  to : garpnyl @ home . com  cc : vince . j . kaminski @ enron . com  subject : re : garp credit derivatives discussion group  philip ,  thanks for keeping me in mind . yes , i would be interested .  vince  \"\" philip merrill \"\" on 11 / 30 / 2000 04 : 47 : 20 pm  please respond to  to :  cc :  subject : garp credit derivatives discussion group  vince  we are starting a credit derivatives discussion group in new york .  is this something you would be interested in ?  like fas 133 an 800 - call - in number will be provided for houston  participants .  our first meeting will be in a week or so .  regards ,  philip merrill  garp regional director , new york  973 - 258 - 1540\",0\n\"Subject: university of texas conference on energy finance , february 2001  jeff ,  our friends at the university of texas are planning a conference on energy  economics and finance in february of next year . they would like very much to  have  you as a keynote speaker .  given our good , long - term relationship with ut , i would recommend  that you speak at this conference . i talked to prof . ehud ronn  a few times about the program and i think that this will be  an excellent forum to present enron ' s accomplishments and  agenda for the future .  i am sure that rick causey will join me in making the same recommendation .  vince\",0\n\"Subject: public affairs organizational announcement  i am pleased to announce the following changes in the government and  regulatory affairs organization :  rick shapiro \u0001 ) managing director of government affairs for the americas .  rick is currently leading the government and regulatory affairs teams for the  us and canada . he will now assume responsibility for north and south  america . ricardo charvel ( senior director of government affairs for  mexico ) , jose bestard ( vice president of government affairs for south  america ) , and joe hillings ( vice president of federal government affairs )  will now report to rick . rick and his team will support enron \u0001 , s north  american business units as well as the caribbean and southern cone regions .  mark schroeder \u0001 ) vice president government affairs for europe , asia and  africa . mark is currently leading the government and regulatory affairs  teams for enron europe . he will now assume the additional responsibility of  supporting the apachi and india organizations . jane wilson will now focus  her attention on enron india and will report to mark as will our government  and regulatory affairs teams serving the apachi region .  mike terraso \u0001 ) vice president environment , health & safety and chief  environmental officer . mike is currently serving as vice president of  environment , health and safety for the gas pipeline group . mike has  increasingly become involved in environmental issues facing enron \u0001 , s  businesses around the world . mike will retain his current responsibilities  and will assume leadership of the environmental affairs team .  john hardy \u0001 ) vice president global project finance . john will report  directly to me and will continue his current responsibilities representing  enron before us and multilateral project finance agencies .  please join in me in congratulating these individuals on their  responsibilities .  attached is a revised organization chart reflecting these changes .  attachment :\",0\n\"Subject: re : march real options conference  vince . thanks for getting back to me . i will have my secretary try to  set up something among the three of us . gary , as vince cannot make a call  on wednesday , i will have my assistant call you to try to find a suitable  time . rachel , gary jackson ' s phone number is 423 751 2593 and vince  kaminski ' s secretary ' s number is given below .  at 03 : 34 pm 2 / 21 / 00 - 0600 , you wrote :  >  >  > peter ,  >  > i am in london till wednesday afternoon . i shall be back at the office on  > thursday .  >  > please , feel free to call my secretary , shirley crenshaw 713 853 5290 , to  > schedule  > a conference call . i cannot access my calendar from london and don ' t know my  > commitments for this day .  >  > vince  >  >  >  >  >  > peter tufano on 02 / 18 / 2000 03 : 56 : 33 pm  >  > to : vince j kaminski / hou / ect @ ect , gljackson 2 @ tva . gov  > cc :  > subject : re : march real options conference  >  >  >  > dear vince and gary ,  >  > we are all speaking at the march real options session in ny . my work in  > real options in the energy field has come , to a large part , from my  > casewriting in your two organizations , so i feel that we should probably  > allocate more time toward your presentations and less to mine . while we  > have a two hour block among the three of us , i think we can freely  > re - arrange things to produce the best result . would you two like to  > schedule a brief conference call to coordinate our talks ? i am free  > virtually all of next wednesday 2 / 23 , perhaps we could talk at 10 am ( est )  > or 2 pm ( est ) ? i am happy to arrange the call , if you send me your phone  > numbers . thanks .  >  > peter tufano  >  >  > - - - - - - - - - - - - - - - - - - - - - - - - - - -  > prof . peter tufano  > harvard business school  > morgan hall 377  > soldiers field  > boston , massachusetts 02163  > phone : ( 617 ) 495 - 6855  > fax : ( 617 ) 496 - 6592  > email : ptufano @ hbs . edu  > http : / / www . people . hbs . edu / ptufano  >  professor peter tufano  harvard business school  morgan 377  soldiers field  boston , ma 02163  phone ( 617 ) 495 - 6855  fax ( 617 ) 496 - 6592  email ptufano @ hbs . edu  http : / / www . people . hbs . edu / ptufano\",0\n\"Subject: re : spreadsheet for george posey  george ,  this is the first cut at the problem you gave us , done by my associate  clayton vernon .  please , feel free to call him with any question . your friend should check  what were the sermons  he gave on april 19 and april 25 , in 1998 and 1999 , respectively .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 20 / 2000  02 : 49 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  clayton vernon @ enron  01 / 20 / 2000 10 : 56 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : spreadsheet for george posey  vince -  here is an analysis of the fund giving at the church .  first off , it appears from the data that a special \"\" appeal \"\" for fund giving  was made ( from the pulpit ? ) on april 19 , 1998 and april 25 , 1999 , ( perhaps  tied rhetorically into income taxes ? ) . then , by going back and incorporating  obvious dates from the calendars for 1997 - 1999 , the following regression  analysis is made , where each effect is added independently :  giving this sunday = $ 4403  + a minor $ 3 weekly time trend ( i . e . , multiply by the number of weeks since  jan . 5 , 1997 )  + no pure effect from last week ' s contributions ( i . e . , denies first - order  autoregressive effects )  + $ 2426 if easter sunday or the sunday nearest christmas  + $ 9695 if ( pastoral appeal ) april 19 , 1998 or april 25 , 1999  - $ 340 if the sunday falls on the weekend of a monday federal holiday  - $ 50 if the sunday following thanksgiving  - $ 73 if a summer weekend ( june 1 thru august 31 )  the pure time trend is very small , so an annual projection based on all 3  years data would be for giving to increase only a minor amount ( $ 150 ) for  2000 assuming a similar appeal for giving is made this april .  clayton\",0\n\"Subject: candlestick charts  fyi fallout  - - - - - - - - - - - - - - - - - - - - - - forwarded by mike a roberts / hou / ect on 05 / 04 / 2001 02 : 05 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : sue neville / enron @ enronxgate on 05 / 04 / 2001 02 : 02 pm  to : mike a roberts / hou / ect @ ect  cc : lee ferrell / enron @ enronxgate , kent miller / et & s / enron @ enron  subject : candlestick charts  mike ,  i work for enron transportation and storage in their storage marketing group . my group has been using technical analysis from your website to help make daily storage trading revenue decisions . on your web site , you indicated you would be discontinueing some of the information we use . we had interviewed external technical service profiders , and chose not to buy their service because we had your information available to us to help us make financial decisions . specifically , we need the candlestick charts and analysis on natural gas , and we also need the elliot wave analysis on natural gas .  can you please reconsider your decision to discontinue the technical analysis data aforementioned ?  sue neville  director , storage marketing  ets\",0\n\"Subject: tiger team info  vince ,  here is the info re : tiger team . i haven ' t opened it yet , but i will have my  group work on any of the general enron information requested .  thanks for your time and input this morning !  - - christie .  - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 10 / 10 / 2000  03 : 38 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  piazze on 10 / 10 / 2000 10 : 49 : 35 am  to : \"\" ' christie . patrick @ enron . com ' \"\"  cc :  subject : tiger team info  christie :  nice talking with you and vince this morning . the project sounds very  exciting and we look forward to working with enron .  attached is info for your review . let me know if there is further info i  can provide to you .  sincerely ,  donna piazze  program director  field application project  the wharton school  univ . of pennsylvania  ( 215 ) 573 - 8394  ( 215 ) 573 - 5727 fax  fap @ management . wharton . upenn . edu  piazze @ wharton . upenn . edu  - tiger team brochure 2000 - 2001 . doc  - tiger host responsibilities . doc  - non - disclosure - redraft 1 _ . doc  - 2001 field application form 1 . doc  - 2001 field application form 2 . doc\",0\n\"Subject: re : invitation to speak at infocast ' s upcoming \"\" market price  volatility \"\" program  ron ,  i am sorry to inform you that due to a scheduling conflict i cannot speak at  this conference .  i want to thank you for considering me as a speaker .  vince kaminski  \"\" ron henderson \"\" on 12 / 30 / 99 06 : 57 : 05 pm  please respond to ronh @ . com  to : vince j kaminski / hou / ect @ ect  cc :  subject : invitation to speak at infocast ' s upcoming \"\" market price volatility \"\"  program  hi vince ,  i would like to invite you , or one of your staff , to be a speaker at  infocast ' s upcoming conference \"\" market price volatility : how to model ,  assess , and manage price volatility in today ' s power markets , \"\" scheduled for  may 10 - 12 , 2000 , in chicago . i am attaching a copy of the draft program  agenda for your review . as you may note , we wish to take our recent houston  meeting a step farther by making this next session a more  technically - oriented meeting .  there are two spots you may wish to consider :  1 . the session entitled \"\" case study in modeling volatility , \"\" scheduled for  wednesday , may 10 th , from 3 : 30 to 5 : 00 pm . you will note below , what we had  in mind for the case study .  2 . the talk \"\" a real options approach to asset valuation , \"\" scheduled for  thursday , may 11 th , from 10 : 30 am to 12 : 00 pm .  i am running behind schedule in finalizing this program , so i will give you  a call shortly to follow up with you . if you wish , please feel free to call  me at 818 - 888 - 4445 ext . 28 .  i hope you can join us .  ron henderson  infocast  818 - 888 - 4445 ext . 28  ronh @ . com  case study guidelines  1 . model should be for a particular market . examples : pjm , chicago , ecar ,  southern california . lb ( optional ) . model should be for a particular purpose . examples : valuing a  new combustion turbine at the florida / georgia border , bidding on a portfolio  of power plants up for sale in nepool , valuing a retail portfolio in  pennsylvania .  2 . model should be estimated on a particular data set . examples : daily nymex  close prices for palo verde , pjm hourly spot prices for 1998 - 1999 .  3 . case study should describe several candidate models , for volatility  and / or market price , that were considered . case study should discuss why  these models were considered . candidate models should be described  mathematically and verbally .  4 . evaluation criteria for choosing among the models should be explicitly  identified , and quantified to the extent possible . examples of evaluation  criteria : residuals that are not autorcorrelated , stationarity , r - squared ,  akaike information criterion .  5 . parameter estimates for each candidate model should be displayed . the  estimation procedure employed should be briefly described .  6 . some diagnostics of model fit ( vis - a - vis data set ) should be presented .  7 . if possible , predictive power of model should be assessed .  generally , the case study should include all of the items above . the case  study may include other things .  - draft agenda v . 2 . doc\",0\n\"Subject: re : phone interview  there will be a telephone interview with jerzy jarosz ( resume attached  below ) on wednesday , july 5 at 4 : 30 pm houston time .  he would like you to call him at his home - telephone # : 416 / 237 - 0977  i have reserved ebl 938 for this interview .  if you have any questions , please call me .  thanks !  shirley crenshaw  vince j kaminski  06 / 27 / 2000 10 : 11 am  to : shirley crenshaw / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : phone interview  shirley ,  please , set up a phone interview with this person .  stinson , krishna , zimin .  vince\",0\n\"Subject: no job  you have probably heard that our group is being broken up . some people were  put in other groups but i was not fortunate enough to be one of those  people . hr will try for the month of march to find a position for me within  enron but that is not likely to happen .  tomorrow is my last full day here - i will be in and out for the month of  march .  i am informing nice people that i like and you are one of those .\",0\n\"Subject: re : spring 2001 energy finance conference participation  ehud ,  i want to invite louise kitchen to this conference .  she is the president of enrononline .  greg whalley will be in london this day .  vince  \"\" ehud i . ronn \"\" on 11 / 02 / 2000 05 : 03 : 22 pm  to : vince . j . kaminski @ enron . com  cc :  subject : spring 2001 energy finance conference participation  vince ,  > given the energy - finance focus of the conference , do you believe the  networks topics is sufficiently energy - related ?  per my above concern , i ' d like to discuss the matter with you further .  thanks ,  ehud  ehud i . ronn  jack s . josey professor in energy studies  department of finance  mccombs school of business  university of texas at austin  austin , tx . 78712 - 1179  voice : ( 512 ) 471 - 5853  fax : ( 512 ) 471 - 5073  internet : eronn @ mail . utexas . edu \",0\n\"Subject: abstract  shmuel ,  this is the abstract for my presentation on the 23 rd of october .  i am in london and paris this week . i can be reached at my  private e - mail address vkaminski @ aol . com .  please , feel free to suggest modifications to the abstract .  vince  > the last three years were characterized by exceptionally high volatility of  > the power prices in the us markets . the market developments have created a  > number of unique challenges for energy industry economists . one immediate  > question we have to answer is how to measure volatility of energy prices .  > although we can all agree that the prices in the power markets are  > characterized by high variability , the traditional measures used in  financial  > economics ( annualized standard deviation of log price returns ) may not fit  > well electricity prices . the second challenge is to explain the sources of  > high price volatility and to answer the question to what extent it can be  > attributed to problems that can be addressed in the long run . such problems  > include flaws in market design that allow some market participants to abuse  > market power , limited availability and / or unequal access to transmission ,  > temporary shortages of generation capacity . some factors underlying high  > volatility of electricity prices may be of permanent nature and may be a  > necessary price to pay for increased market efficiency and expanded customer  > choice .\",0\n\"Subject: re : enron - nevrl - aa meeting on july 27  professor kothari :  thank you for the communique . your recollection regarding a \"\" next step \"\" for  enron is correct - we are currently working  to define enron ' s key issues and research questions . the group will reconvene  this week . following that meeting , i  will provide an update to you regarding our progress .  with regards ,  amy oberg  \"\" s . p . kothari \"\" on 08 / 07 / 2000 07 : 43 : 41 am  to : aoberg @ enron . com  cc :  subject : enron - nevrl - aa meeting on july 27  dear amy :  thank you and your colleagues for taking the time to video - conference with  us at mit and aa professionals associated with nevrl . i enjoyed the  exchange and was left impressed by the technical savvy and keen interest in  research on part of enron . i look forward to hearing from you sometime  soon .  as i recall , we agreed that enron would forward a few issues / questions that  nevrl could potentially address . once we have a meeting of minds on the  set of issues , we can discuss further how best to collaborate and  accomplish our goals . i believe both sides would benefit immensely . mit  faculty can research questions relevant to industry and you might receive  some answers you are looking for !  with best regards ,  s . p .  - - - - - - - - - - - - - -  professor s . p . kothari phone : ( 617 ) 253 - 0994  gordon y billard professor fax : ( 617 ) 253 - 0603  of accounting e - mail : kothari @ mit . edu  sloan school of management , e 52 - 325 web : http : / / web . mit . edu / kothari / www /  massachusetts institute of technology  50 memorial drive  cambridge , ma 02142 - 1347  - - - - - - - - - - - - - - -\",0\n\"Subject: class request : xl 97 range - 567 excel 97 , range names and database  features , william smith  your approval is required for william smith to attend the following class .  to grant approval , send a reply to \"\" lpharr @ enron . com \"\" ( notesmail : lerea  pharr / hou / ect @ ect ) .  be sure to include employee ' s name and class number in reply .  excel 97 , range names and database features  session dates & times :  4 / 11 / 2000 8 : 30 : 00 am - 11 : 30 : 00 am  location : eb 572  no show / participant fee : $ 110 . 00  if you have any questions , please call the technology training coordinator at  713 - 853 - 1816 .\",0\n\"Subject: re : follow - up interview on 8 / 21 / 00  rabi ,  thanks for your message .  everybody who interviewed you was greatly impressed with your technical  skills and professional attitude .  we shall extend an offer to you within a day or two .  vince  rabi de on 08 / 22 / 2000 02 : 57 : 37 pm  to : vince kaminsky  cc :  subject : follow - up interview on 8 / 21 / 00  dear dr . kaminsky :  thank you very much for arranging the follow - up interview with your internal  clients . i visited mr . ted murphy and his staff at rac and mr . dennis  benevides at ees yesterday . i was impressed with level of risk technology  employed by enron to achieve its business objectives . i want to reiterate my  strong interest in joining your group , which is held in very high esteem both  inside and outside of enron . ? i look forward to hearing from you .  sincerely ,  rabi s . de  do you yahoo ! ?  yahoo ! mail - free email you can access from anywhere !\",0\n\"Subject: re : bullet points  hi vince ,  thanks for the bullets . regarding power 2001 , it certainly does promise to  be a very interesting event .  have a great week ,  paul  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : monday , april 09 , 2001 9 : 11 am  to : pbristow @ riskwaters . com  cc : vince . j . kaminski @ enron . com ; vkaminski @ aol . com  subject : bullet points  paul ,  i am sending you modified bullet points . the modifications are in red .  apologies for a delay in responding to your messages .  by the way , power 2001 gets only more and more interesting every day .  vince  ( see attached file : financial maths draft . doc )\",0\n\"Subject: re : attend pserc seminar on 11 / 30 and 12 / 1  lance .  perfect .  vince  lance cunningham @ enron on 11 / 13 / 2000 10 : 06 : 26 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : attend pserc seminar on 11 / 30 and 12 / 1  vince ,  i will be able to attend the pserc seminar on nov . 30 and dec . 1 . i also  picked up some additional information from ut concerning pserc this past  weekend while i was in austin .\",0\n\"Subject: re : e - strategy for metals trading  - - - - - - - - - - - - - - - - - - - - - - forwarded by leann walton / na / enron on 10 / 26 / 2000 10 : 50  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : jeffrey a shankman @ ect on 10 / 25 / 2000 03 : 28 pm  to : maureen raymond / hou / ect @ enron  cc :  subject : re : e - strategy for metals trading  thanks fo rthe update . jeff  maureen raymond @ enron  10 / 25 / 2000 02 : 58 pm  sent by : gwyn koepke @ enron  to : john sherriff / lon / ect @ ect , larry lawyer / enron communications @ enron  communications , jeffrey a shankman / hou / ect @ ect , mike  mccullough / et & s / enron @ enron  cc : bob schorr / hou / ect @ ect  subject : e - strategy for metals trading  attached is an article from yesterday ' s ft regarding the efforts by a  consortia of four major international metals and mining producers to develop  an internet marketplace for producers and consumers . as we come across this  type of information to keep you abreast of developments in the commodity  markets , we will pass it along .  maureen raymond - castaneda\",0\n\"Subject: re : brown bag  tom :  yes , we can arrange that .  zimin  tom halliburton @ enron  12 / 05 / 2000 01 : 52 pm  to : alex huang / corp / enron @ enron , zimin lu / hou / ect @ ect  cc :  subject : brown bag  alex , zimin ,  friday 19 th january i have asked leon lasdon from ut austin to talk on  non - linear programming . let me know asap if you have something else  planned . yo folks are co - ordinating these talks ? ?  tom\",0\n\"Subject: termination payments - ees energy outsource agreements  vince , attached is a very brief white paper on the issue of termination  payments for facility closures and sales . i would like to discuss this  concept with you and some of your people in the coming days to establish  whether this has merit and how we might proceed . my assistant , cheryl  brashier , will set up some time with you .  thanks .  richard\",0\n\"Subject: cinergy monthly prices 1998 to date  margaret ,  please find attached file with cinergy prices ( last day of the month )  starting 1998 to date . i have also included daily price for the same period  just in case you might need it . the source of the data is megawatt daily  price survey . note that prices are given as common low and common high which  means that data was gathered through representative sample survey .  please let me know if you need any additional data .  regards ,  elena  vince j kaminski @ ect  02 / 27 / 2001 05 : 41 pm  to : elena chilkina / corp / enron @ enron  cc : kevin g moore / hou / ect @ ect , vince j kaminski / hou / ect @ ect , margaret  carson / corp / enron @ enron  subject : cinergy monthly prices 1998 to date  elena ,  can you , please , help wiht this request ?  kevin ,  please , call me if elena is not in the office on wednesday .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 27 / 2001  05 : 40 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  margaret carson @ enron  02 / 27 / 2001 09 : 15 am  to : vince j kaminski / hou / ect @ ect  cc : kathryn corbally / corp / enron @ enron  subject : cinergy monthly prices 1998 to date  from your historical databases can you kindly have someone send me and  kathleen corbally the 12 month ( either last day of month or monthly  average , whichever you have available ) cinergy prices for 1998 to  date . . . for an investor relations slide we are working on ? ? thanks a  lot . . . margaret\",0\n\"Subject: re : your visit to enron  joe ,  fyi . please plan on attending . we should schedule a meeting with  mark and the rest of the weather team .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 11 / 06 / 2000  10 : 54 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" francis x . diebold \"\" on 11 / 04 / 2000 08 : 47 : 41 am  to : shirley . crenshaw @ enron . com  cc : vince kaminski  subject : re : your visit to enron  shirley ,  the 21 st is perfect . i will go ahead and purchase my plane tickets . would  you  please make me a hotel reservation for the night of the 21 st ?  many thanks ,  frank diebold  shirley . crenshaw @ enron . com wrote :  > good morning professor diebold :  >  > i am vince kaminski ' s assistant and he has forwarded your emails to me  > for scheduling purpose . unfortunately , we have a conflict on december  > 14 th . can you possibly come on the 21 st ?  >  > i hope you have not already made your reservations . if i can do anything  > to assist you , please let me know .  >  > best regards ,  >  > shirley crenshaw  > administrative coordinator  > enron research group  > 713 - 853 - 5290  >  > - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 11 / 03 / 2000  > 09 : 29 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  >  > vince j kaminski  > 11 / 02 / 2000 04 : 30 pm  >  > to : \"\" francis x . diebold \"\" @ enron  > cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect  > subject : re : visit ? ( document link : shirley crenshaw )  >  > frank ,  >  > dec 14 would be better for us . we have already scheduled  > an internal presentation on december 7 . please , go ahead and make a  > reservation .  > the best place to stay is hyatt regency downtown or doubletree downtown  > ( within a walking distance to enron ) . it is important to specify the  > downtown  > location for both hotels .  >  > vince  >  > \"\" francis x . diebold \"\" on 11 / 02 / 2000 03 : 00 : 49 pm  >  > to : vince . j . kaminski @ enron . com  > cc :  > subject : re : visit ?  >  > sounds good , vince . how about dec 7 ? the roundtrip coach fare , regardless  > of  > airline , is about $ 1900 . i hope that won ' t break the bank . once i have  > your  > approval , i ' ll go ahead and book it . best , frank  >  > vince . j . kaminski @ enron . com wrote :  >  > > frank ,  > >  > > yes , i would be very interested in meeting with you in houston in  > december .  > > the best day for visit would be thursday when my group has a lunch  > meeting  > > and you could meet the rest of the research unit .  > >  > > please , let me know what day would work for you . we shall be very glad to  > > cover the cost of your trip .  > >  > > vince  > >  > > i  > >  > > \"\" francis x . diebold \"\" on 10 / 31 / 2000 01 : 01 : 11 pm  > >  > > to : vince kaminski  > > cc :  > > subject : visit ?  > >  > > hi vince ,  > > are you still interested in my visiting for a day , perhaps in dec or  > > jan ? i have begun a project on unobserved - components modeling of  > > weather patterns , so it would be productive and fun to compare notes .  > > best ,  > > frank  > >  > > - -  > > francis x . diebold  > > wp carey professor  > >  > > department of economics  > > university of pennsylvania  > > 3718 locust walk  > > philadelphia , pa 19104 - 6297  > >  > > fdiebold @ sas . upenn . edu  > > http : / / www . ssc . upenn . edu / ~ diebold  > >  > > ( 215 ) 898 - 1507 telephone  > > ( 215 ) 573 - 4217 fax  >  > - -  > francis x . diebold  > wp carey professor  >  > department of economics  > university of pennsylvania  > 3718 locust walk  > philadelphia , pa 19104 - 6297  >  > fdiebold @ sas . upenn . edu  > http : / / www . ssc . upenn . edu / ~ diebold  >  > ( 215 ) 898 - 1507 telephone  > ( 215 ) 573 - 4217 fax  - -  francis x . diebold  wp carey professor  department of economics  university of pennsylvania  3718 locust walk  philadelphia , pa 19104 - 6297  fdiebold @ sas . upenn . edu  http : / / www . ssc . upenn . edu / ~ diebold  ( 215 ) 898 - 1507 telephone  ( 215 ) 573 - 4217 fax\",0\n\"Subject: re : grades  got them - thank you ! - pvc  at 05 : 21 pm 5 / 2 / 01 - 0500 , you wrote :  > pam ,  >  > another team :  >  > elena chilkina  > robert j . guadette  > joseph helms  > kenneth jett  > todd litton  > mark westmoreland  >  >  > grade : a -  >  >  > vince kaminski\",0\n\"Subject: allocations  it is now official ! ! ! effective august 1 , 2000 , research is part of ena .  can you review the attached file and let me know if we need to update the  allocation ? also , can you tell me which commercial teams in ena does  research support ? if you have any questions , please call me at 5 - 7094 .  thanx .  - - - - - - - - - - - - - - - - - - - - - - forwarded by becky pham / hou / ect on 08 / 17 / 2000 03 : 18 pm  - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  04 / 26 / 2000 01 : 12 pm  to : becky pham / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : allocations  becky ,  please , take a look at the allocations sheet .  vince\",0\n\"Subject: re : mgmt 656  pam  thanks  yes , please , send me the e - mail addresses .  vince  pamela vande krol castro on 01 / 26 / 2001 10 : 40 : 17 am  to : vince . j . kaminski @ enron . com  cc :  subject : mgmt 656  here are your latest rosters . let me know if you would like the spreadsheet  with their e - mail addresses as well ! - pam ( 6223 )  - 656 . doc\",0\n\"Subject: credit reserve model meeting  vince ,  the number you will need to call - in for the credit reserve model meeting on  tuesday , february 13 at 4 : 00 is 713 . 345 . 3324 .  if you have any questions , please do not hestitate to call me at x 33565 .  thank you .  terri greenlee\",0\n\"Subject: schedule for aram sogomonian  following is the schedule for aram sogomonian :  friday , april 28 - eb 2935  8 : 30 - 9 : 30 . - vince kaminski  9 : 30 - 10 : 30 - andrea reed  10 : 30 - 11 : 30 - carl tricoli  11 : 30 - 12 : 30 - jesus ' melendrez\",0\n\"Subject: re : enron - resume interview of james valverde  johan  my apologies for getting back to you with a delay .  we shall be interested in talking to james . please ,  let me know if :  1 . you have an umbrella agreement with enron  2 . can we contact james directly , or should we work  through you .  vince  johan dahl on 01 / 09 / 2001 12 : 33 : 08 pm  to : vkamins @ enron . com  cc :  subject : enron - resume interview of james valverde\",0\n\"Subject: re : summer associate mentor  ginger however , we encourage you  to contact guiseppe prior to the reception if possible .  please rsvp your attendance to cheryl kuehl at x 39804 or by email .  thank you  charlene jackson\",0\n\"Subject: re : nj alliance  michael lassle is in charge of our lighting best - practices . he is the person  mr . eaton should contact . michael is in houston and his number is  ( 713 ) 853 - 5023 .  osman  vince j kaminski @ ect  02 / 17 / 2000 07 : 55 am  to : \"\" william eaton \"\"  cc : osman sezgen / hou / ees @ ees  subject : re : nj alliance  bill ,  i forwarded your message to my associate , osman sezgen , who supports our  energy services group . he will e - mail you the name of a contact at  enron .  vince kaminski  \"\" william eaton \"\" on 02 / 16 / 2000 08 : 25 : 02 pm  to : shelm @ globalcloud . net  cc : steing @ conedsolutions . com , robert . blake @ conectiv . com ,  marianne . abdul @ conectiv . com , bekmank @ conedenergy . com , david l  fairley / hou / ect @ ect , robinsonm @ conedenergy . com , nwilson @ delmarva . com ,  hudsonw @ detroitedison . com , cndavis @ duke - energy . com ,  hbburnham @ duke - energy . com , jhickman @ duke - energy . com ,  paul . skurdahl @ engageenergy . com , james mackey / hou / ect @ ect , vince j  kaminski / hou / ect @ ect , mrollhei @ enron . com , hnmorris @ metromediaenergy . com ,  npalmer @ execpc . com , chibbard @ noresco . com , mhuang @ usgen . com ,  bshay @ powerdirect . com , cmidura @ pseg . com , ghallam @ energy . twc . com  subject : nj alliance  aesp members and utility affiliates ,  we are looking for a good fit with one of the utilities intent on doing  business in the nj , ct , pa , ny territory . our qualifications and company  profile may be previewed at our web site , www . lightsourceonline . com . email  contact information in response to this message .  thanks ,  bill eaton  - attl . htm\",0\n\"Subject: contract summaries  attached are the contract summaries for elba island term sheet , the heogh  galleon and exmar charter parties and the option contract on the 3 rd and 4 th  vessel .  i hope to finish summaries on eco - electrica and jose soon .\",0\n\"Subject: re : working with enron on catastrophic risk  howard ,  thanks for the message and the paper .  we shall hold an internal follow - up meeting next monday to  review potential projects on which we could cooperate in  the future .  vasant and i will contact you to discuss our recommendations  regarding the future research agenda .  vince  \"\" kunreuther , howard \"\" on 12 / 14 / 2000 10 : 07 : 11 am  to : \"\" bouillion ( e - mail ) \"\" , \"\" carrick ( e - mail ) \"\"  , \"\" hoog ( e - mail ) \"\" , \"\" kaminski  ( e - mail ) \"\" , \"\" vasant ( e - mail ) \"\"  cc : \"\" doherty , neil a \"\" , \"\" kleindorfer , paul \"\"  , \"\" thomas , louis a \"\"  , \"\" weigelt , keith w \"\"  subject : working with enron on catastrophic risk  dear vince , jim , george , david and vasant :  neil doherty , paul kleindorfer and i very much enjoyed our discussion last  wednesday at wharton with you on future joint research with enron over the  coming year . in particular , we see the whole area of capital management and  catastrophic risk as a fruitful area for foint collaboration . i am sharing  this message with louis thomas and keith weigelt who direct the fap mba  program in the hopes that we can find a team to work with us on these issues  next semester .  attached is a revised version of our paper on \"\" evaluating risk bearing ,  mitigation and risk transfer using exceedance probability curves : project  update \"\" . we would greatly appreciate you and your colleagues looking at the  section on \"\" cat bonds covering multiple risks \"\" ( pp . 15 - 19 ) to see whether our  example and conclusions make sense to you . we look forward to working with  your team at enron regarding ways that we can build on these preliminary  findings to make cat bonds for weather risks more attractive .  best wishes for the holiday .  regards ,  howard  howard kunreuther  cecilia yen koo professor of decisions sciences and public policy  chairperson operations and information management department  1326 steinberg hall - dietrich hall  wharton school  university of pennsylvania  philadelphia , pa 19104 - 6366  phone : 215 - 898 - 4589  fax : 215 - 573 - 2130  email : kunreuth @ wharton . upenn . edu  - epcurvepaper - final - dl 0 . doc\",0\n\"Subject: re : desk move / computer stuff  thanks karin . . . .  - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 04 / 20 / 2001 08 : 07  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron capital & trade resources  canada corp .  from : karin ahamer @ enron 04 / 20 / 2001 06 : 57 am  to : kevin g moore / hou / ect @ ect  cc :  subject : re : desk move / computer stuff  kevin  don ' t worry i haven ' t forgotten about stephen . he will be moved and sit next  to tony . don ' t know what they are talking about loan computers but i am on  the case .  regards  karin  avistar has been all set up as far as i know but someone has to come in  again on monday to re - install it on tonys new computer .  kevin g moore @ ect  20 / 04 / 2001 12 : 27  to : karin ahamer / eu / enron @ enron , stephen bennett / na / enron @ enron , mike a  roberts / hou / ect @ ect , tony hamilton / eu / enron @ enron  cc :  subject : re : desk move / computer stuff  hello karin ,  i noticed that tony is taken care of , but what about stephen .  tony and stephen are a team , they work very closely together .  stephen also needs to be aware of what is taking place as well .  if there is a problem with cost centers please contact me , but  please try and have both guys set up for monday morning .  thanks so much .  kevin moore  by the way have the avistar set - up been completed . . . . . . .  please inform . . .  enron capital & trade resources  canada corp .  from : karin ahamer @ enron 04 / 20 / 2001 03 : 00 am  to : stephen bennett / na / enron @ enron , graham aley / lon / ect  cc : tony hamilton / eu / enron @ enron , kevin g moore / hou / ect @ ect  subject : re : desk move / computer stuff  steve  i have ordered a computer for tony which it should know about . i believe the  contact person is steve deakin . i am in a course all day today but will look  into it at lunchtime .  regards  karin  enron capital & trade resources corp .  from : stephen bennett 19 / 04 / 2001 16 : 53  to : karin ahamer / eu / enron @ enron  cc : tony hamilton / eu / enron @ enron , kevin g moore / hou / ect @ ect  subject : desk move / computer stuff  hi karin ,  i just wanted to check the status of our change in equipment for start of  business monday . i ' ve been told that tony and i will be using loaner pc ' s .  the folks in it are asking me where that loaner pc is so they can install all  of the software that i need . slava has told me that you are the point of  contact . i just wanted to check with you to see if you need any additional  information from me - or if i can be of help in any way . thanks ! !  steve  stephen bennett  senior meteorologist  enron research  london temp ext : 34761  houston : 001 713 345 3661\",0\n\"Subject: maureen raymoin ' ds review  norma ,  maureen raymond refuses to sign her review . can you , please , join us  tomorrow to discuss it . i have a time slot available at 2 : 00 but i can  reorganize my schedule  to accommodate you .  vince\",0\n\"Subject: john sherriff ' s copper position  ted , bjorn ,  any info about this position ?  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 07 / 26 / 2000  08 : 19 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron capital & trade resources corp . - europe  from : anjam ahmad 07 / 26 / 2000 03 : 55 am  to : esther gerratt / lon / ect @ ect  cc : vince j kaminski / hou / ect @ ect , andreas . barschkis @ mgusa . com @ enron , tanya  tamarchenko / hou / ect @ ect  subject : john sherriff ' s copper position  hi esther ,  i just talked to john sherriff about his \"\" enron \"\" copper position . i suspect  that this is not currently being captured within the mg mercur position  database - he would like to have that included in the var spreadsheet and  shown as a separate line . do you have any information regarding this deal  ( i . e . position sizes , qualities etc . ) or be able to direct me to someone who  may be able to assist in getting this information ?  thanks ,  anjam  x 35383\",0\n\"Subject: is the supply rebound beginning ? an update on cera ' s outlook for us  gas productive capacity - cera conference call notification  title : is the supply rebound beginning ? an update on cera ' s outlook for us  gas productive capacity  url : http : / / www 20 . cera . com / eprofile ? u = 35  netscape navigator 3 . 02 or higher ; or sun hot java ( tm )  close all desktop applications and disable your screen saver .  to ensure computer compatibility , complete the internet instructions before  the  day of the call . a message will appear telling you that your meeting is not  ready to start . however , it also informs you about any action that you may  need to take to prepare your computer to participate .  technical assistance  if you experience difficulties during the call , you may signal for technical  assistance by pressing * 0 ( star , zero ) on your telephone keypad , once  connected  to the audio portion of the conference .  for more information , please contact katya ashe via e - mail at kashe @ cera . com  or  via telephone at ( 617 ) 441 - 2659 .  a recording of this call will be available until may 10 , 2001 . to access this  recording , please call + 1 888 - 203 - 1112 ( within the united states ) or  + 1 719 - 457 - 0820 ( outside the united states ) . please use confirmation number  574828 to access the call .  * * end * *  e - mail category : conference call notification  cera knowledge area ( s ) : north american gas ,  cera ' s spring 2001 roundtable event dates and agendas are now available  at http : / / www 20 . cera . com / event  to make changes to your cera . com profile go to :  forgot your username and password ? go to :  http : / / www 20 . cera . com / client / forgot  this electronic message and attachments , if any , contain information  from cambridge energy research associates , inc . ( cera ) which is  confidential and may be privileged . unauthorized disclosure , copying ,  distribution or use of the contents of this message or any attachments ,  in whole or in part , is strictly prohibited .  terms of use : http : / / www 20 . cera . com / tos  questions / comments : webmaster @ cera . com  copyright 2001 . cambridge energy research associates\",0\n\"Subject: re : resco database and customer capture  steve ,  it makes sense to meet with abacus . retail marketing is very data intensive .  if you set up a meeting with them ,  please , let me know .  vince  steven r meyers @ ees  04 / 11 / 2000 08 : 17 am  to : timothy edward vail / hou / ees @ ees  cc : vince j kaminski / hou / ect @ ect  subject : resco database and customer capture  tim ,  i hope things are going well in resco . i think somebody from resco ( or  research ) may be interested in the email i received below from brad davids .  brad is now working at abacus who works with residential customer patterns as  well as predictive modelling . he ' s going to be here the 25 and 26 of this  month . i ' m not sure who is responsible for resco marketing , but i think they  would find this interesting . who should i send this to ? please let me know  if anybody in resco may have any interest .  thanks ,  steve  ps : vince , simply an fyi since they do focus on modelling and research .  - - - - - - - - - - - - - - - - - - - - - - forwarded by steven r meyers / hou / ees on 04 / 11 / 2000  08 : 14 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  bradley davids on 04 / 10 / 2000 08 : 35 : 32 pm  to : \"\" ' steven . r . meyers @ enron . com ' \"\"  cc :  subject : re : possible meeting ?  steve :  i ' ll see if i can get in on the 25 th . . . will let you know , but i think  it ' ll work .  just to give you a very brief overview so you can think about who might be  interested , abacus has the largest transactional database of consumer buying  behavior in the world ( 89 million us households , 3 billion + purchases ) ,  along with sophisticated modeling capabilities to help predict customer  response to various offers at the household level . given the critical need  to reduce customer acquisition costs in retail energy markets , we believe  that our data and modeling can help energy retailers target their direct  marketing efforts toward the residential customers most likely to respond to  whatever the offer is - - improving the efficiency of mailings and other  promotional campaigns ( so there is an efficiency angle , see ! )  because our data allow the modeling of future buying behavior based on  actual purchases , our results tend to be significantly more predictive than  demographic - based models . so far , the the response from utilities and \"\" new  entrants \"\" i ' ve been talking to so far has been quite positive , and we have  some tests of our data underway , but we ' re interested in talking to as many  players in the market as possible as we develop specific products to meet  utility needs .  i can provide more background if desired to whoever might be interested , but  i guess the key immediate question is whether it might be worthwhile to  arrange a short meeting sometime on the 25 th of april with whoever at enron  might have interest in hearing what we ' re up to , and ( most importantly )  listening to what your data needs might be as you enter new markets .  thanks very much for any help . . . i look forward to catching up and  hearing how things are going for you .  regards ,  brad davids  303 - 410 - 5531  - - - - - original message - - - - -  from : steven . r . meyers @ enron . com [ mailto : steven . r . meyers @ enron . com ]  sent : monday , april 10 , 2000 12 : 13 pm  to : brad . davids @ abacus - direct . com  subject : re : possible meeting ?  it ' d be great to meet on the 25 th in the afternoon . i have a flight in the  evening . i ' m interested in hearing about life at abacus . i too have heard  that enron is getting back into the residential market . what type of  database do you have ? i might be able to find somebody for you to talk  with here .  - steve  bradley davids on 04 / 10 / 2000 12 : 04 : 00 pm  to : \"\" steve meyers ( e - mail ) \"\"  cc :  subject : possible meeting ?  steve :  sorry we ' ve been unable to hook up . . . i can probably get down there on  the 25 th , if you ' re going to be in town that afternoon ? would love to catch  up - - both on how things are going with ees and tell you about my new life .  also , i ' m hearing rumors that enron is about to get back into the  residential market in a big way - - you know anything about that ? anybody i  should talk to there about my huge database of consumer buying behavior ?  thanks - - looking forward to connecting . . . i ' ll be travelling most of this  week , but you can leave a vm and let me know when i can call you , or try me  on the cell at 303 - 886 - 3458 .  best ,  brad davids  bradley j . davids  associate vice president , utilities  abacus direct , a division of doubleclick , inc .  11101 west 120 th avenue  broomfield , co 80021 usa  e - mail brad . davids @ abacus - direct . com  tel 303 . 410 . 5531  fax 303 . 410 . 5300  www . doubleclick . net  www . abacus - direct . com  ( see attached file : c . dtf )\",0\n\"Subject: team 3  ken ,  it seems that there may be an internet bias as well ( more affluent  and educated households are on - line ) .  one solution : develop a control group . arm - twist clerical  employees of the school to fill out the questionnaire  and also ask them to provide the questionnaire to their friends and families .  vince\",0\n\"Subject: re : clustering for gas and power  frank ,  following up on our discussions ,  can you please send us the list of enron ' s curves by geographical region  separately for gas and power .  appreciate it ,  tanya .  tanya tamarchenko  04 / 16 / 2001 09 : 16 am  to : jaesoo lew / na / enron @ enron  cc : vladimir gorny / enron @ enronxgate , winston jia / enron @ enronxgate , vince j kaminski / hou / ect @ ect  subject : re : clustering for power  jaesoo ,  as we discussed last week on wednesday meeting can you , please ,  implement clustering for power curves by geographical region . this involves the following :  1 . deciding together with risk control how many geographical regions we want to use  and which enron ' s curves belong to each region .  2 . deciding together with risk control how to choose core curves for each region . this decision can  be maid based on the a ) position size ; b ) statistical analysis . there might be other considerations .  3 . doing regression analysis for each curve versus the corresponding core curve .  winston ,  can is it possible to run var for the clustering results obtained by jaesoo with clustering done by sas ?  should we wait for the stage re - fresh and what is the status on this ?  tanya . \",0\n\"Subject: apex conference 2000 update  apex 2000 is an opportunity to join colleagues from around the globe for a  conference on relevant , timely and strategic issues facing our industry .  delegates and speakers from asia , australia , europe and north and south  americas will be meeting in canada in october to discuss issues that will  shape electrical deregulation in the foreseeable future . the conference is  scheduled for october 25 and 26 , 2000 in kananaskis , near calgary , alberta .  visit the apex 2000 conference web site at  http : / / www . apex 2000 conf . com / update 4 . html for more details and an updated  list of speakers and topics . registration space is limited ! don ' t miss out !  plan to be a part of this forum on significant issues and opportunities  facing the electric industry as it moves through deregulation .  any questions or inquiries should be forwarded to apex 2000 @ incentre . net or  by phone at 1 - 403 - 244 - 4487 or by fax at 1 - 403 - 244 - 2340 .\",0\n\"Subject: interview thanks . . .  vince and stinson ,  it seems we made a good impression to rodney . can we have him  working for our sub - group ?  zimin  - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 03 / 13 / 2000 08 : 35 am  - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" rodney greene \"\" on 03 / 13 / 2000 12 : 05 : 57 am  to :  cc :  subject : interview thanks . . .  dear dr . lu :  thank - you for meeting with me to discuss opportunities in your derivative  pricing group . i very much enjoyed talking with you . the projects you are  working on are quite interesting to me . it appears to me the resources and  culture at enron are excellent for accomplishing quality value - adding work .  i would very much like to be a part of your group . thank - you once again for  meeting with me . and it goes without saying - lunch was great !  sincerely ,  rodney greene  ?\",0\n\"Subject: confidential information and securities trading  to : kaminski , wincenty  email : vkamins @ enron . com - 7138533848  ?  enron wholesale services - office of the chairman  ?  from : ? ? mark frevert , chairman & ceo  ? ? ? ? ? ? greg whalley , president & coo  ? ? ? ? ? ? mark haedicke , managing director & general counsel  ?  subject : ? ? confidential information and securities trading  ?  enron wholesale services ( ' ews ' ) maintains official policies and procedures  regarding confidential information and securities trading ( ' policies and  procedures ' ) , which have been revised as of november 15 , 2000 to reflect the  new ews structure . these policies and procedures are intended to allow us  simultaneously to pursue our diverse businesses and to protect confidential  information , our reputation for integrity , and ews and its employees from  legal liability .  ?  you are required to become familiar with , and to comply with , the policies  and procedures . the newly revised policies and procedures are available for  your review on legalonline , the new intranet website maintained by the enron  wholesale services legal department . please click on the attached link to  access legalonline :  ?  ?  you must certify your compliance with the policies and procedures within two  weeks of your receipt of this message . the legalonline site will allow you  to quickly and conveniently certify your compliance on - line with your sap  personal id number . if you have any questions concerning the policies or  procedures , please call lance schuler at extension 3 - 5419 , mark haedicke at  extension 3 - 6544 , alan aronowitz at extension 3 - 3214 , bob bruce at extension  5 - 7780 or donna lowry at extension 3 - 1939 .\",0\n\"Subject: internship opportunities  dear mr . kaminski ,  i have found the enrononline project a very interesting one and have enjoyed  working with everyone in the research department as well as those from other  departments . i am keenly interested in this area and was wondering if there  would be any summer internship opportunities . i have attached my resume to  this mail for your review and look forward to hearing from you soon .  thank you  ivy ghose  rice mba 2002  - resume . doc\",0\n\"Subject: color copier  i ' m so sorry !  color printer .  thanks  - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 01 / 05 / 2000 01 : 27  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  kevin g moore  01 / 05 / 2000 11 : 30 am  to : lyn malina / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , vince j  kaminski / hou / ect @ ect , mike a roberts / hou / ect @ ect , william  smith / corp / enron @ enron  cc :  subject : color copier  hello lyn ,  how are you ? certainly hope you enjoyed the holidays .  i have not received the color printer as of yet .  could you please provide me with information concerning this .  thanks  kevin moore\",0\n\"Subject: fw :  vince and ravi ,  attached below is the resume of a student graduating from the university of  chicago with an ms in mathematics . his specialty is financial mathematics  and his coursework seems to have covered a lot of the sorts of things that i  understand your group to do , vince . he is extremely interested in enron and  contacted me because i am an alum of the college at the u of c . i gather he  didn ' t go through enron ' s typical recruiting process for analysts or  associates because his background is more technical , than commercial . he  acknowledged that his business experience is limited and from his resume you  can tell that he is young . he would therefore be willing to start as an  analyst or whatever the equivalent would be for a non - rotating position , but  his interest is in doing the kind of work that you do , vince , and ravi , i  know you have a similar background .  please let me know if this candidate would be of interest to either of you .  if so , feel free to contact him directly . he would like to start work this  summer after graduating in june .  thanks for your time and i hope this is useful to you .  regards ,  laura  laura howenstine  manager , origination  enron net works  713 - 853 - 0308 ( office )  laura . howenstine @ enron . com  - - - - - original message - - - - -  from : \"\" kodjo adovor \"\" @ enron  + 40 enron @ enron . com ]  sent : monday , february 26 , 2001 4 : 48 pm  to : howenstine , laura  cc : lhowenstine @ hotmail . com  subject :  dear laura ,  thanks for taking the time to talk to me about the opportunities available  in financial derivatives at enron . i appreciate your help . my resume is  attached to this email as resume . doc . i look forward to talking to you soon .  regards ,  n . kodjo adovor  the university of chicago  financial mathematics  - resume . doc\",0\n\"Subject: lunch  dzien dobry ,  mam nadzieje , ze nic sie nie zmienilo i jestesmy umowieni na dziesiejszy  lunch . proponuje sie spotkac o godzinie 12 . 00 na parterze obok biurka  \"\" security ladies \"\" ( bo wiem gdzie to jest ) . ubrany jestem w czarne spodnie ,  bezowe buty i szara bluze . nie jestem pewien czy bede mogl przeczytac  potwierdzenie , bo od 10 do 11 . 45 przeprowadzam szkolenie .  juliusz\",0\n\"Subject: harvard business school pub order confirmation  order confirmation notification  thank you for ordering hbs materials . your order has been received and  entered with the confirmation number 01928923 . the purchase order or  reference number you provided is [ c ] kaminski , w . our projected ship date is  11 / 13 / 00 , your order will be shipping via ups .  per your request , your order will be shipped to the following address :  wincenty kaminski  enron corp  managing director  ebl 962  1400 smith  houston tx 77002  we appreciate your interest in harvard business school publishing . if we can  be  of further assistance , please contact our customer service department at  ( 800 ) 988 - 0886 or ( 617 ) 783 - 7500 , by fax at ( 617 ) 783 - 7555 , or via email at  corpcustserv @ hbsp . harvard . edu .\",0\n\"Subject: thomas knudsen  hi vince  i met with thomas this morning ( i gave you his cv before , though i don ' t know  if you had time to read it ) . he ' s extremely interested in moving to enron ,  and accepts that our work is far less academic than his postdoc research ,  although far broader than his investment banking quant experience . he  remains interested , and emphasised he wants to stay close to the traders , but  wants to look at new markets and products . i think we should seriously  consider hiring him . he is ( understandably ) reluctant to move to houston ,  but there ' s no doubt that there is plenty of ( unnmet ) demand for derivatives  pricing ( and thinking ) here in london .  would you be interested in my setting up a videoconference in the next couple  of weeks so you have a chance to chat with him ? i ' m meeting with him again  on tuesday at an academic quant finance seminar organised by lane at king ' s  college . i ' ve attached his cv for your reference .  all the best ,  steve\",0\n\"Subject: fwd : eprm article  return - path :  from : vkaminski @ aol . com  full - name : vkaminski  message - id :  date : fri , 8 dec 2000 00 : 19 : 50 est  subject : fwd : eprm article  to : vkamins @ enron . com  cc : vkaminski @ aol . com  mime - version : 1 . 0  content - type : multipart / mixed ; boundary = \"\" part 2 _ 1 e . e 608831 . 2761 c 976 _ boundary \"\"  x - mailer : unknown sub 171  return - path :  received : from rly - xao 5 . mx . aol . com ( rly - xao 5 . mail . aol . com [ 172 . 20 . 105 . 74 ] )  by air - xaol . mail . aol . com ( v 77 . 14 ) with esmtp ; tue , 05 dec 2000 12 : 47 : 35 - 0500  received : from mailolb . rapidsite . net ( mailolb . rapidsite . net  [ 207 . 158 . 192 . 229 ] ) by rly - xao 5 . mx . aol . com ( v 76 _ rl . 19 ) with esmtp ; tue , 05 dec  2000 12 : 47 : 00 - 0500  received : from www . lacima . co . uk ( 209 . 41 . 1 . 121 ) by mailolb . rapidsite . net ( rs  ver 1 . 0 . 58 s ) with smtp id 0923182 for ; tue , 5 dec 2000  12 : 46 : 46 - 0500 ( est )  message - id :  reply - to : \"\" chris strickland \"\"  from : \"\" chris strickland \"\"  to :  references :  subject : eprm article  date : wed , 6 dec 2000 04 : 16 : 05 + 1100  organization : lacima consultants  mime - version : 1 . 0  content - type : multipart / mixed ;  x - priority : 3  x - msmail - priority : normal  x - mailer : microsoft outlook express 5 . 00 . 2615 . 200  x - mimeole : produced by microsoft mimeole v 5 . 00 . 2615 . 200  x - loop - detect : 1  hi vince ,  hope things are fine with you . i ' m sorry that i only ever write to you when  i ' m after something , but could you look at this simulation article - the  next installment in the eprm articles .  many thanks and best regards .  chris .  - - - - - original message - - - - -  from :  to : ; ; ;  sent : friday , september 08 , 2000 4 : 23 am  subject : re : var article  > les ,  >  > the revised version of the var article looks fine .  >  > vince  >  - eprm _ 04 _ sim _ mr . zip\",0\n\"Subject: re : factors for us power curves  tanya ,  i have checked the factors for us power and all except the  following are acceptable :  rl 1 , rlc , rlf , rlj , rlk , rll , rlm , rln , rlz , r 4 a , r 4 b .  for global liquids , the requisite curves have been submitted to the  liquids team . i will review their results and confirm .  naveen  tanya tamarchenko @ ect  01 / 25 / 2001 12 : 52 pm  to : naveen andrews / corp / enron @ enron , rabi de / na / enron @ enron , jaesoo  lew / na / enron @ enron  cc : oliver gaylard / lon / ect @ ect  subject : re : factors for us power curves  naveen ,  attached spreadsheet contains the factors for us power curves calculated  based on 9 / 28 / 00 - 11 / 28 / 00 data in stage with the latest version of vatrfacs .  by specifying integer number from 1 to 32 in cell jl you can see the factors  for different regions .  i suggest to consider the following sets of factors as acceptable :  rla , rle , r 2 , r 2 a , r 2 b , r 3 , r 3 a , r 3 b , r 4 , r 4 c , r 5 , r 5 a , r 6 , r 7 , r 7 a , r 8 , r 9 .  please review and confirm .  tanya .\",0\n\"Subject: re : astros season tickets  cathy ,  thanks . in order of priority : fridays ( 20 , 27 ) , apr 25 , 24 , 23 .  vince  from : cathy phillips on 04 / 03 / 2001 04 : 54 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : astros season tickets  how about two games ? just select a couple of dates and i will have the  tickets delivered to you . the dates that are still available are as follows :  friday , april 20 st . louis  monday , april 23 atlanta  tuesday , april 24 atlanta  wednesday , april 25 atlanta  friday , april 27 florida  thanks .  cathy phillips  x - 36898  vince j kaminski  04 / 02 / 2001 05 : 43 pm  to : cathy phillips / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : astros season tickets  cathy ,  yes , i shall be glad to use a few tickets for my group as a token of  appreciation .  how many can you spare ?  vince  from : cathy phillips on 04 / 02 / 2001 01 : 06 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : astros season tickets  all of the tickets in the initial time frame have been taken . the next set  of tickets i have available are for the series of april 20 th - 25 th . please  let me know if you are interested in any of the tickets in this series .  thanks .  cathy phillips  x - 36898  vince j kaminski  03 / 30 / 2001 11 : 25 am  to : cathy phillips / hou / ect @ ect  cc :  subject : re : astros season tickets  cathy ,  i shall appreciate 4 tickets , any day . i shall use them internally  as a token of appreciation for the members of my group .  vince  from : cathy phillips on 03 / 30 / 2001 08 : 45 am  to : jeffrey a shankman / hou / ect @ ect , doug  arnell / enron _ development @ enron _ development , alan aronowitz / hou / ect @ ect ,  pierre aury / lon / ect @ ect , sally beck / hou / ect @ ect , rick  bergsieker / enron _ development @ enron _ development , stephen h  douglas / hou / ect @ ect , jennifer fraser / hou / ect @ ect , shanna  funkhouser / corp / enron @ enron , eric gonzales / lon / ect @ ect , gary  hickerson / hou / ect @ ect , vince j kaminski / hou / ect @ ect , larry  lawyer / na / enron @ enron , chris mahoney / lon / ect @ ect , george  mcclellan / hou / ect @ ect , thomas myers / hou / ect @ ect , john l nowlan / hou / ect @ ect ,  beth perlman / hou / ect @ ect , brent a price / hou / ect @ ect , daniel reck / hou / ect @ ect ,  cindy skinner / hou / ect @ ect , stuart staley / lon / ect @ ect , mark  tawney / hou / ect @ ect , scott tholan / corp / enron @ enron , lisa yoho / na / enron @ enron ,  neil davies / corp / enron @ enron , per sekse / ny / ect @ ect , stephen h  douglas / hou / ect @ ect , scott vonderheide / corp / enron @ enron  cc : cathy phillips / hou / ect @ ect , jennifer burns / hou / ect @ ect , angie  collins / hou / ect @ ect , donna baker / hou / ect @ ect , helen marie taylor / hou / ect @ ect ,  chantelle villanueva / hou / ect @ ect , betty j coneway / hou / ect @ ect , patti  thompson / hou / ect @ ect , cherylene r westbrook / hou / ect @ ect , candace  parker / lon / ect @ ect , sharon purswell / hou / ect @ ect , gloria solis / hou / ect @ ect ,  brenda j johnston / enron _ development @ enron _ development , kim  hickok / enron _ development @ enron _ development , susan mccarthy / lon / ect @ ect , paula  forsyth / corp / enron @ enron , shirley crenshaw / hou / ect @ ect , jody  underwood / na / enron @ enron , kathleen d  hardeman / enron _ development @ enron _ development , judy zoch / na / enron @ enron ,  sunita katyal / enron _ development @ enron _ development , cherry mont / ny / ect @ ect ,  lydia reeves / hou / ect @ ect , kristy armstrong / enron @ enronxgate , nita  garcia / na / enron @ enron , christina brandli / enron @ enronxgate  subject : astros season tickets  astros tickets available  please note that the tickets for the astros games scheduled for saturday ,  march 31 st , through sunday , april 8 th , ( no game on monday , april 2 nd ) are  still available . please let me know this morning if you are interested in  any of the tickets . thank you .  - - - - - - - - - - - - - - - -  as mike mentioned at the staff meeting yesterday , enron global markets has  season tickets for the houston astros for the 2001 season which begins this  friday , march 30 th , with an exhibition game against boston . exhibition games  are also scheduled for saturday , march 31 st , and sunday , april lst . the  regular season opening game will be on tuesday , april 3 rd .  we have four seats in section 116 , row 33 , seats 20 - 23 . the seats are  located in the dugout section between home plate and the visitor ' s dugout .  the tickets are available on a first come , first serve basis with preference  given for customer entertainment if more than one request is received for the  same game . please contact me at x - 36898 or via e - mail at  cathy . phillips @ enron . com to request tickets . in addition , copies of the  astros 2001 season schedule are available upon request .  please let me know if you have any questions . thank you .  cathy phillips  x - 36898  eb 3327\",0\n\"Subject: request submitted : access request for mraymon @ enron . com  you have received this email because the requester specified you as their  manager . please click  approval to review and act upon this request .  request id : 000000000007494  request create date : 11 / 15 / 00 12 : 57 : 59 pm  requested for : mraymon @ enron . com  resource name : unlisted application / software  resource type : applications\",0\n\"Subject: re : rabi de  fyi , i do not send out a written offer package until the verbal offer issues  are resolved and a final offer is made . so , i ' d like to put the details  below in writing and send out to him for tuesday delivery . i ' m playing  phone tag with him regarding the other details and will follow up with him  again in the morning .  thanks  toni  from : grant masson @ ect 09 / 15 / 2000 11 : 24 am  to : toni graham / corp / enron @ enron  cc : norma villarreal / hou / ect @ ect , vince j kaminski / hou / ect @ ect  subject : rabi de  toni :  we talked to rabi . he ' s sitting on the fence for some good reasons , and he  has to weigh what is fairly comfy job situation for one that starts out at a  lower level but has more potential . wrt the green , vince verbally offered  salary of $ 105 k plus a guarantee that his bonus at year end would be a  minimum of $ 15 k cash . that ' s in addition to the $ 15 k sign on bonus . vince  said that we would not bother working up a revised offer letter unless and  until rabi came back with a verbal ok . he will ponder the offer ; probably  for a few more days and get back with us . he may well call you to discuss  the exact details of the benefits . esop , 401 ( k ) contributions , etc .  regards ,  grant .\",0\n\"Subject: re : energy book  chris ,  no problem . feel free to mention our names .  vince  chris strickland on 01 / 28 / 2000 03 : 54 : 17 am  to : vince j kaminski / hou / ect @ ect , les , jules  cc :  subject : energy book  hi vince ,  i have pulled a list of names together that i would like to send some  samples of our chapters of the book too , in the next couple of days , in  order to try and get one or two sentence \"\" reviews \"\" for the dust jacket of  the book . i obviously won ' t say anything about enron ' s sponsorship until it  is official sorted out , but is it ok if i indicate that yourself and grant  are contributing material to the book ?  i ' m proposing to send 5 or 6 chapters to the following - unless you have  any objections or suggestions ?  david shimko  ehud ronn  helyette geman  mark garman  dragana pilipovic  corwin joy  ilia bouchouev  alexander edyleland  steve thomas  hope the writing is going ok , and regards to grant .  best regards .  chris\",0\n\"Subject: approval is overdue : access request for paul . d . thomas @ enron . com  mike ,  following request has been made for a number of people .  the access requested is : o : \\ research \\ power meteorology \\ weather temperatures -  read / write  data approval grant  this is what i wrote , denying the request :  the reason for the rejection has been communicated several times .  the person who requested the access does not want it any more . granting both  read / write access could threaten the integrity of the data .  any comments ?  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 29 / 2001  08 : 19 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  arsystem on 01 / 26 / 2001 07 : 16 : 10 pm  to : \"\" vince . j . kaminski @ enron . com \"\"  cc :  subject : approval is overdue : access request for paul . d . thomas @ enron . com  this request has been pending approval for 2 days and you are the  alternate . please click  approval to review and act upon this request .  request id : 000000000015384  approver : stinson . gibner @ enron . com  request create date : 1 / 25 / 01 7 : 59 : 02 am  requested for : paul . d . thomas @ enron . com  resource name : \\ \\ enehou \\ houston \\ common \\ research - [ read / write ]  resource type : directory\",0\n\"Subject: long - term volatility curves  grant ,  can research in houston put together a comparison of the long - term volatility  curves for gas and power in north america and europe ? based on where europe  is marked ( especially for the uk ) , i think we ' ll find a significant  difference out beyond 10 years . fundamentally , it seems like the long - term  vol should be similar for a given commodity regardless of geographic location .  has research done any work on this in the past ? if not , we should study this  since long - term vol feeds into the var - based position limits .  give me a call so we can discuss .  thanks  dale\",0\n\"Subject: re : model effort in houston  mike  pls discuss with mark tawney . under the revised egm structure for weather we  need to revisit theintended arrangement .  thnx  paul  from : mike a roberts @ ect 10 / 04 / 2001 04 : 59 am  to : christian werner / enron _ development @ enron _ development  cc : vince j kaminski / hou / ect @ ect , paul  quilkey / enron _ development @ enron _ development , mark tawney / enron @ enronxgate  subject : model effort in houston  christian ,  our spring / fall window of \"\" < nactivity \"\" is rapidly eluding us . . .  we need to get our internal model operational without delay .  along these lines , let ' s go ahead and plan your visit to houston as soon as  possible ,  but by all means get you in at least 4 weeks before hurricane season .  that would mean the month of may looks good .  please inform me what duties you could not perform from here to support the  sydney office ,  we ' ll figure out how to keep that office whole .  ( it ' s working without a hitch to have steve bennett in london , but continuing  his houston duties )  if the first week in may ( for the whole month ) will work , please respond asap  and we ' ll get housing arrangements finalized .  looking forward to your visit ,  - - - mike\",0\n\"Subject: re : fw : pserc nuggets related to market stem  hello shmuel ,  thanks for your message . the end of 2000 and the beginning of 2001 were  extremely busy  and i could not focus on pserc issues . i shall consult a few people in enron  on this subject and get in  touch with you . our concern right now is that the results of research are  widely shared with  our competition .  i am out on the 19 th , but the 20 th would work for me . i would be glad to  cover the cost of your austin  to houston trip .  regarding your son . the analyst / associate program will interview again on  the campus  in the spring and they will be more than happy to interview him .  \"\" shmuel oren \"\" on 12 / 19 / 2000 01 : 40 : 02 pm  to :  cc : \"\" dennis ray \"\" , ,  subject : fw : pserc nuggets related to market stem  hello vince  happy holidays .  i wanted to connect with you regarding the possibility of enron joining  pserc . as you might have heard from lance and alex we are going through a  transition period having doubled the number of universities and industry  members within the last year . consequently , our business processes are not  well developed . one of the problems we are facing is the balance between the  electrical engineering folks and industry members that are more interested  in market related research . i hope to recruit more of the later so tat we  have more of a constituency in the advisory board that sees the value of  market related research . i already have a verbal commitment from people at  electrabell that expressed interest in joining pserc . with members like  electrabell and enron we will be able to support more market stem projects  such as the one that shijie deng proposed ( not funded in this round ) . please  let me know if i can do anything to facilitate the decision at enron . i am  going to be in austin on january 19 to participate at a puct hearing and  could come through huston for a visit . attached are some items that i shared  with our pserc members and thought that you might be interested in them as  well .  regards , shmuel .  - - - - - original message - - - - -  from : \"\" shmuel oren \"\"  to : \"\" power systems engineering research center \"\"  sent : tuesday , december 19 , 2000 9 : 47 am  subject : re : pserc nuggets related to market stem  > the following are 3 items that demonstrate the impact of pserc research in  > the market stem area .  >  > 1 . on december 12 , i ( shmuel oren ) testified at a hearing in san  francisco  > before the blue ribbon panel ( chaired by alfred kahn ) for the that is  > investigating the implications of uniform price vs . pay as bid auctions in  > the california px . as part of my testimony i presented a movie produced  by  > tim mount and bob thomas that show results of an experimental economic  study  > showing how bidders respond by raising their bids in a pay as bid auction .  > following is an acknowledgement i received .  >  > dear shmuel :  >  >  > thank you for attending the blue ribbon panel this past tuesday in san  > francisco . your presentation was very informative and valuable to all the  > panel members and other participants . the panel greatly appreciates your  > involvement in this important project .  >  >  > thanks again ,  > natalie efland  >  >  > 2 . a recent e - mail from the texas puc  >  > professor oren , i hope you and your family are doing well . we are  seriously  > considering your help and advice to facilitate the commission ' s final  > decision regarding retail competition in ercot .  >  > i wanted to let you know that ercot stakeholders filled an application  for  > approval of the ercot protocols in november . we received comments  including  > list of issues on november 22 and reply comments on december 1 . staff  will  > draft and submit a preliminary order to the commissioners for their  > discussion on december 13 . there will be a pre - hearing on december 15  when  > parties will be asked to brief the commission on list of issues by the end  > of first week in january . there will be a hearing on january 16 followed  > with another hearing if needed . parties have asked the commission to  > finalize its decision by mid march .  >  > to give you some more background , i have to mention that almost most of  your  > suggestions were accepted and will be reflected in the final protocols ,  > except for problems with intra - zonal gaming regarding congestion  management  > and pay - as - bid compensation for selected ancillary services . a few  > additional concerns are raised regarding ancillary services and congestion  > management . stakeholders are still working toward more load participation  > in ercot market . however , the main problem is the fact that market ( pilot  > that covers 100 % of wholesale , but only 5 % of retail load ) will be open on  > june 1 , 2001 based on a version of the protocols locked on august 1 , 2000 .  > ( that was the deadline for ercot to give a final design to anderson  > consulting . ) that version does not include some of your recommendations  to  > address market design flaws . the full version is highly possible to be  > implemented by january 1 , 2002 when market for 100 % retail competition is  > scheduled to open . given this gap , some parties have recommended not to  > implement incomplete protocols and wait for full implementation by january  > 2002 . in other words , they say let ' s go ahead with 5 % pilot retail load ,  > but wait for full design implementation before allowing 100 % wholesale  load  > ( and retail load ) be subject to the rules of the game described in the  final  > protocols .  >  > thanks .  >  > parviz adib , ph . d .  > director of market oversight division  > public utility commission of texas  > 1701 n . congress avenue  > p . o . box 13326  > austin , texas 78711 - 3326  > ph . no . : 512 - 936 - 7365  >  > 3 . the following is a segment from a published summary of the dec 13 puct  > hearing . this segment describes the commision ' s deliberation on an agenda  > item addressing the possibility of instituting price caps as part of the  > ercot protocols . ( see reference to my involvement in the next to last  > paragraph )  >  > docket no . 23220 - petition of the electric reliability council of texas  > for approval of the ercot protocols . ( discussion and possible action )  > parviz adib , jess totten , keith rogas , and tammy cooper  > chairman wood turned to page 2 item number 3 of the draft order  identifying  > issues , recommending that the word \"\" including \"\" be changed to \"\" other than \"\"  in  > the parentheses . he thinks they know the ups and downs of the two  > mechanisms , which are bid caps and price caps , but would not mind having  > parties focus on what other protections might be used . commissioner walsh  > would say \"\" including , but not limited to \"\" because she does not think it is  a  > bad idea for ercot to at least consider in their protocols a fail - safe  > mechanism . it ' s kind of like the stock market suspending trading when  > something crazy happens . they could consider a maximum scenario , such as  > \"\" we don ' t think this will ever happen but if it does we need to muffle  it \"\" ,  > whether it is $ 1 , 000 or $ 99 or whatever it is . they could consider  whether  > to put into the protocols a self - enacting price cap . while not expecting  it  > to happen , if it did , you don ' t have to declare it an emergency and have  the  > commission have to act . chairman wood asked if they could leave the  > question without the parenthetical at all and just say \"\" what protections  > should be added to avoid extreme price spikes . \"\" commissioner walsh  > reiterated that she wants ercot to think about the unlikely possibility of  > unacceptable price spikes . she would like for them to have their own  > fail - safe mechanism that is self - initiating as opposed to leaving that to  > having someone have to come in and act . commissioner perlman stated that  he  > thinks the california - type price caps is what the concern is about . he  > thinks everyone in this state is opposed to those , but he thinks the point  > commissioner walsh is making is an interesting one . he had not thought  > about the circuit breaker idea , and it might have some merit . he agreed  > that it was worth considering something like that . then the question  > becomes what the level is . chairman wood suggested the wording \"\" what  > self - implementing protections should be added to avoid the price spikes .  > commissioner perlman said he did not think anyone is talking about $ 250  > price caps . commissioner walsh agreed , but noted that if the unexpected  > happens we should be prepared . commissioner perlman indicated that if  > someone is making $ 10 , 000 in one particular hour that it probably does not  b  > enefit the market and is probably a windfall to them . it is not something  > they would normally put in their business plan for determining whether  they  > are going to build a plant in texas . chairman wood stated that they want  to  > lean toward the market as heavily as they can on these issues .  >  > chairman wood noted that some of these issues date back to when dr . oren  was  > assisting the commission , and asked if he could be brought back again .  > staffer dr . parviz adib said that staff had already talked to dr . oren and  > that he is available to assist the commission further . chairman wood  noted  > that dr . oren had helped people think outside the box without just  focusing  > on california .  >  > the final wording was clarified to state \"\" self - implementing mechanisms \"\"  and  > to delete the parenthetical part of the sentence in question . the order  was  > approved as amended .  >  >  >  >  >  >  >  >  >  >  >\",0\n\"Subject: magic 15 , 000 level on nikkei  - - - - - - - - - - - - - - - - - - - - - - forwarded by leann walton / na / enron on 10 / 26 / 2000 10 : 47  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : darren delage @ enron on 10 / 16 / 2000 02 : 53 pm ze 9  to : maureen raymond / hou / ect @ ect  cc :  subject : magic 15 , 000 level on nikkei  maureen ,  hope all is well . thank you for your coverage last week . i certainly  appreciate the value - added that you provide in your research . i had a quick  question for you regarding any anticipated japan central bank intervention at  the 15 , 000 level in the nikkei .  if i am understanding the mechanism correctly , bis reserve requirements fall  below certain threshold and banks can no longer lend money and meet bis  lending criteria due to improper reserve base . and this roughly happens at  15 , 000 level ?  reason i ask is goldman sachs put out an article suggesting that  break - evenpoint for bank holding of stocks is roughly 12 , 000 - 12 , 500 a  different index level than the one you have mentioned .  i can appreciate the difference between reserve liquidity and actual  break - even on equity positions , but just wanted to clarify this point with  you , as we are trying to gain a complete understanding of how a trigger would  effect japanese capital markets . and so , as i currently understand it , there  are ( 2 ) trigger levels to watch :  15 , 000 where banks fail bis criteria and hence cannot extend new loans with  bis stamp of approval . clearly ctl bank would have incentive in restoring  this or else financial system would be thrown into turmoil .  12500 where banks begin to take an actual loss on equity holdings  is this right ?  thanks maureen , take care ,  darren\",0\n\"Subject: re : cv of rodney greene re quantitative positions .  amy ,  yes , i am interested . i am in london now , but i shall contact him on  thuirsday .  vince  amy fitzpatrick  02 / 21 / 2000 03 : 34 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : cv of rodney greene re quantitative positions .  vince -  would you have any interest in this candidate ?  kind regards -  amy  - - - - - - - - - - - - - - - - - - - - - - forwarded by amy fitzpatrick / lon / ect on 21 / 02 / 2000  09 : 34 - - - - - - - - - - - - - - - - - - - - - - - - - - -  bryan seyfried  18 / 02 / 2000 19 : 50  to : amy fitzpatrick / lon / ect @ ect  cc :  subject : re : cv of rodney greene re quantitative positions .  probably a bit to techy for me but maybe a good fit for vince kaminski in  houston research .  bs  amy fitzpatrick  17 / 02 / 2000 12 : 52  to : david port / corp / enron @ enron , david weekes / lon / ect @ ect , steve w  young / lon / ect @ ect , bryan seyfried / lon / ect @ ect  cc :  subject : cv of rodney greene re quantitative positions .  any thoughts on this candidate ?  kind regards -  amy  - - - - - - - - - - - - - - - - - - - - - - forwarded by amy fitzpatrick / lon / ect on 17 / 02 / 2000  12 : 52 - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron capital & trade resources corp .  from : simon bragg  17 / 02 / 2000 12 : 36  to : \"\" ' amy . fitzpatrick @ enron . com ' \"\"  cc :  subject : cv of rodney greene re quantitative positions .  hi amy  a colleague of mine interviewed someone last week who is a phd whose  background is as a developer within catastrophe risk management . he is  looking to move into more of a quantitative role which will utilise his  developing skills and also his statistical and theoretical knowledge as  well . the issue is that he is based in chicago and i wondered if there  would be any interest from your headquarters there .  please find attached his details .  speak to you soon .  regards  simon  - do 075530 . doc\",0\n\"Subject: re : o  andrew ,  vince and grant from research would like to have risktrack on their pcs .  can you install it for them ?  appreciate it ,  tanya .\",0\n\"Subject: re : fw : mtg . scheduled  frank ,  regarding simulating power prices in var we might discuss the following items  and show some results :  1 . clustering for power :  - clustering based on historical prices and correlations from them ;  - geographical clustering ;  - flexibility in choosing \"\" core curves \"\" ( based on position size ) ;  2 . jump - diffusion process for intramonth and prompt month :  - parameter estimation from historical data ( do we want to use it ? )  - working out parameters ( jumps frequency , jump size ) as stress scenarios ;  3 . correlations within a cluster and across clusters .  4 . changing correlations estimations ( using fixed contact ' time series ) .  5 . joint estimation of factors for selected regions .  let me know what you think should be in the agenda for this meeting .  regards ,  tanya  from : frank hayden / enron @ enronxgate on 04 / 18 / 2001 03 : 43 pm  to : tanya tamarchenko / hou / ect @ ect  cc :  subject : fw : mtg . scheduled  if you want , i welcome your help in putting together an agenda .  frank  - - - - - original message - - - - -  from : black , tamara jae  sent : wednesday , april 18 , 2001 3 : 32 pm  to : presto , kevin ; davis , mark dana ; sturm , fletcher ; herndon , rogers ; gilbert - smith , doug ; white , stacey ; kaminski , vince ; andrews , naveen ; belden , tim ; gorny , vladimir ; davenport , lacrecia  cc : hayden , frank  subject : mtg . scheduled  please mark your calendar for a meeting with :  frank hayden  reg . value @ risk  april 26 th  3 - 4 pm  rm 3125 b  thanks  tjae black  x 35800\",0\n\"Subject: re : mutually agreed upon changes okay  larry ,  i have your fax and the message . unfortunately the corporate policy is very  clear and standard on these matters and we cannot make exceptions . it would  appear impossible for us to proceed with the non - disclosure agreement if it  is not consistent with the version suggested by our legal department . please  let me know your thoughts . thanks .  rakesh\",0\n\"Subject: brownsville peaker data  hey guys ,  further to our meeting , here ( courtesy of john t ) are the addresses to view  the peaker data for our upcoming testing :  a . o : \\ _ dropbox \\ peakerdata \\ peakersl 999 . htm  b . o : \\ _ dropbox \\ peakerdata \\ peakers 2000 . htm  at the present time , these pages display on microsoft internet explorer only .  type in the above urls in the address area of your ie . the pages refresh  automatically once every minute .  cheers , - - scott\",0\n\"Subject: fea announces the release of @ energy 2 . 0  january 26 , 2001  vince kaminski  enron north america corp .  1400 smith street  30 th floor , rm . 3036 b  houston , tx 77251 - 1188  1 713 - 853 - 3848  dear vince kaminski ,  this is to inform you of the release of @ energy 2 . 0 . ftp download  instructions are available immediately . the download instructions are  included at the end of this email . your cd ' s and manuals will be shipped to  you within 2 weeks . please see below for more information regarding this new  release .  please confirm that you are the correct recipient for this shipment and your  address above is correct by clicking reply and send . if any changes need to  be made , please make the changes above and reply .  * * warning : please note that if you did not received a license key for  @ energy after june 2000 , you will need to contact support @ fea . com or call  510 . 548 . 6200 to obtain a new license key to enable the new version . * *  * * swing users : @ energy / swing now replaces the \"\" swing \"\" product . see the  @ energy user manual for a discussion of the changes . contact fea for the  necessary license keys . you will be able to run both the new and old swing  simultaneously .  heres an overview of the new and changed features since version 1 . 6 :  @ energy ( forward curve )  jump parameters are now calibrated for use in other @ energy functions .  inputs and outputs to powercalib and comcalib have changed . see the  corresponding function syntax in the user guide for additional information .  35 - 40 % speed improvement . the module is now out of beta .  @ energy ( basics )  different interpolation schemes on forward prices are now supported . if you  use indexswap , exoticswap , or optindexswap with floating price linked to a  series of futures dates , such futures dates need not be close to dates  specified in the forward curve input . a new utility function , pathutil ,  allows you to simulate and visualize price paths consistent with the models  supported by @ energy . 25 - 30 % speed improvement .  @ energy ( advanced )  different interpolation schemes on forward prices are now supported . if you  use optdiffswap or diffswap with floating price linked to a series of  futures dates , such futures dates need not be close to dates specified in  the forward curve input . calspreadopt now allows for the specification of  two different mean reversion rates . 30 - 35 % speed improvement .  @ energy ( swing )  swingopt and stripswingopt now allow for valuation of swing straddle  contracts with overall load constraints . 65 - 70 % speed improvement . the  module is now out of beta .  @ energy ( weather )  30 - 35 % speed improvement .  if you have any questions please feel free to contact us . we appreciate this  opportunity to be of continuing service to enron north america corp . .  regards ,  michelle mendoza  support @ fea . com  + 1 - 510 - 548 - 6200  financial engineering associates , inc . ( fea )  * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  to download @ energy 2 . 0 via ftp , follow the following instructions :  note : using explorer leads to unpredictable results , so we suggest using  netscape or a dos shell .  using netscape :  in the location box type : ftp : / / energy @ ftp . fea . com  password : 2 rbzxgv 5  energy - 2 . 0 - win 32 . exe is for windows 95 / 98 / 2000 / nt . download and run on  a local drive .  using a dos shell :  at a dos prompt type : ftp ftp . fea . com  user : energy  password : 2 rbzxgv 5  type \"\" binary \"\" and hit ' return ' .  type \"\" ls \"\" for a list of available files .  type \"\" get \"\" energy - 2 . 0 - win 32 . exe and and wait for the ftp > prompt .  type \"\" quit \"\" .  the file will be downloaded into the directory at which you entered the ftp  site .  double click on the exe and follow the instructions on the screen .\",0\n\"Subject: martin lin ' s rotation into jim ' s group  hi paul and anad , please make the appropriate arrangements ( via enron corp .  aa pool ) to \"\" rotate \"\" martin lin into my group . as you know , i am heading up  the ebs research unit that is reporting to vince kaminski and stinson gibner  ( md & vp of enron research group , respectively ) . martin will work for jim  irvine and report to him on a day - to - day basis . martin will spend most of  his time at jim ' s office location . this arrangement is very similar to samar  khleif ' s role in portland with john mcclain ' s broadband delivery group .  martin has already discussed his rotation with jim irvine and scheduled to  start on march 1 , 00 . ebs research will be working very closely with jim  irvine and john griebling in the area of network planning and model  development ( traffic engineering in telecom - speak ) . martin has a ph . d . in  electrical engineering and has been working within research supporting  electricity transmission analysis and modeling .  regards ,  ravi .\",0\n\"Subject: osman sezgen  steve kromer is requesting that osman spend 1 day / week in san francisco .  steve heads the risk analytics group for enery asset management under steve  meyers . i will find from marty why they are setting up shop in sf .  krishna .  - - - - - - - - - - - - - - - - - - - - - - forwarded by pinnamaneni krishnarao / hou / ect on  08 / 04 / 2000 04 : 40 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  to : pinnamaneni krishnarao / hou / ect @ ect  cc : dave roberts / hou / ees @ ees , osman sezgen / hou / ees @ ees  subject : osman sezgen  krishna ,  osman has informed me that he has been requested to provide research services  to a larger number of clients in ees , leaving him less time to contribute to  our work here at the eam desk . while i am happy for him and believe that the  company will benefit from his services , i am concerned that he may not be  available at a crucial time in the development of the eam option strategy .  the eam desk is continuing to develop standard models for the bulk of our ecm  projects . we have hired 4 people in the past month and all of them will be  working by early september . osman provides an important link for our new  staff to several core areas of our business . first , his experience with  modeling and energy analysis are invaluable . second , as we move to treating  our projects as options , and pricing them as such , osman will be needed to  assist us in creating auditable methods to assess savings volatility .  i am expecting two of the team members to start in san francisco in the near  future . my request is for osman to be available to this team for one day a  week for the next several months , preferably until christmas .  thank you for your consideration of this matter .  steve kromer\",0\n\"Subject: re : tanya ' s vacation  shirley ,  i am going to take 5 vacation days in march , 3 / 13 / 00 - 3 / 17 / 00 .  these are the days that i did not use in 1999 and vince approved  that i take them this year .  tanya .\",0\n\"Subject: congratulations on your promotion . lou \",0\n\"Subject: re : f / u to dr . kaminski @ enron from iris mack  hi ,  how are you ? seems like we have had a bit of difficulty contacting each  other . sorry i missed your call . i am now in nyc - until december 2 nd .  i will try to call you on tomorrow morning about 8 am houston time .  take care ,  iris  > from : vince . j . kaminski @ enron . com  > to : irismmack @ hotmail . com  > cc : vince . j . kaminski @ enron . com  > subject : hello  > date : tue , 21 nov 2000 15 : 14 : 31 - 0600  >  > iris ,  >  > we are trying to reach you but we are getting error messages .  > please , call me 713 853 3848 .  >  > vince  >  >  _ _ _ _ _ _ _  get more from the web . free msn explorer download : http : / / explorer . msn . com\",0\n\"Subject: technical writer position  just a note to confirm that we will cease recruiting for the new technical  writer position that was being considered . i will notify the candidates who  have been interviewed , but please let me know if you would like us to do  anything else .  molly\",0\n\"Subject: re : fw : wharton resume submission - summer intern  let ' s make sure she gets an offer . thanks . jeff  vince j kaminski  01 / 23 / 2001 01 : 23 pm  to : kristin gandy / na / enron @ enron  cc : jeffrey a shankman / hou / ect @ ect , vince j kaminski / hou / ect @ ect  subject : fw : wharton resume submission - summer intern  kristin .  kim is a member of the tiger team . she is interested in a summer  internship with enron and i shall be glad to take her .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 23 / 2001  01 : 24 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" kim whitsel \"\" on 01 / 22 / 2001  12 : 07 : 35 am  to : ,  cc :  subject : fw : wharton resume submission  - - - - - original message - - - - -  from : kim whitsel [ mailto : kimberly . whitsel . wgo 2 @ wharton . upenn . edu ]  sent : friday , december 22 , 2000 6 : 51 pm  to : kristin . gandy @ enron . com  subject : wharton resume submission  summer position under wharton schedule # 1823  - kim whitsel - enron cover letter . doc  - kim whitsel - wharton 2 resume . doc\",0\n\"Subject: reminder  stinson ,  fyi  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 05 / 2001  11 : 45 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" john d . martin \"\" on 02 / 02 / 2001 01 : 39 : 17 pm  to : timopler @ yahoo . com , raj _ srivastava @ bus . emory . edu ,  vaysman @ mail . utexas . edu , vkamins @ enron . com , cpaoli @ sternstewart . com ,  bill _ petty @ baylor . edu , michael . froehls @ citicorp . com ,  corey . carbonara @ systems . tstc . edu , michael _ korpi @ baylor . edu ,  klifford _ kuehl @ baylor . edu , terry _ maness @ baylor . edu , dpalumbo @ sapient . com ,  dchew @ sternstewart . com , j _ martin @ baylor . edu  cc :  subject : reminder  good afternoon ,  i just want to give you a reminder about the one - page questionnaire  regarding arrival and departure times for the workshop . your responses  will make planning a bit easier on this end . also , please get me your  \"\" one - page \"\" background statement as soon as possible . i am attaching  michael froehl ' s to give you some guidance ( thanks michael , i thought i was  going to have to prepare mine first ) .  let me also tell you that the television producer has requested 15 minutes  of each of your time either the morning of the 23 rd before the luncheon or  after the workshops to do individual interviews . they will then work these  individual shots into the final edited program ( bring your best tv smiles ) .  by the way , i have been assured by the producer that we have final say  over whether particular comments are edited in or out of the final product  so we can all relax , this is not live tv .  i ' ll be out of town the end of next week but hope to have all my plans put  together the following week so please respond to both the questionnaire and  the request for a one - page background / positions / ideas write - up .  thanks guys and i ' m looking forward to seeing you all very soon .  john  p . s . in case you ' ve misplaced it i have appended a copy of the questionnaire .  - waco _ background _ mf . doc  - questionnaire . doc  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: final dates for houston visits  dear all ,  shirley has kindly arranged the accommodation for these new dates - i ' d be  grateful if we could stick to the dates that you confirmed to me below as it  will be next to impossible to change these again . of course , it should be  fine for you to arrive a day early to lose your jet lag and depart a day late  so that you get a full week in the office .  matthew williams mon 31 st july through friday 18 th august  steve leppard mon 21 st aug through fri 15 th sep  kirstee hewitt mon 18 th sep through friday 13 th oct  ben parsons mon 16 th oct through friday 10 th nov  let me know if you have any more logistical questions - i might even be able  to suggest some nice restaurants ! for cars , i think that is best arranged  from london when the flight is booked . by the way , you will all need a full  uk drivers licence to hire the car and a passport with more than a six ( ? )  months to go before expiry .  shirley - would it be best to use the usual 3 coupons on the guest car park  ticket method for parking ?  regards ,  anjam  x 35383\",0\n\"Subject: cmu students  i have given your email to richard bryant , who is the director of the comp .  fin . program at cmu . no doubt he will be in touch . here ' s a link :  i feel that i should mention something : from my experience at cmu , there are  three types of students . those that work very very hard and are basically  ethical ; those that cheat their way through school , and the sharks . it is  very difficult to distinguish between the groups when interviewing . in my  class of about 30 students , there were three sharks , about six or seven hard  workers , and then there was everyone else . anyway , for what its worth !  - kevin k .\",0\n\"Subject: fw : mckinsey partner specializing in agriculture  hi vasant ,  as per our lunch conversation on yesterday , i mentioned that a friend of  mine is a partner at mckinsey and he specializes in agriculture .  attached is an email from him regarding meeting you and others here at  enron .  how do you wish to proceed ?  thanks ,  iris  - - - - - original message - - - - -  from : @ enron  sent : wednesday , march 07 , 2001 2 : 17 am  to : mack , iris  subject : re : iris mack at enron  hey iris ,  great to hear from you and welcome back stateside ! i would be delighted to  meet with you and your colleagues .  bernard  margot tyler  03 / 06 / 2001 to : bernard  02 : 41 pm loyd / chi / northamerica / mckinsey  cc :  subject : re : iris mack at enron  - - - - - forwarded by margot tyler / chi / northamerica / mckinsey on 03 / 06 / 2001  02 : 41 pm - - - - -  to : margot _ tyler @ mckinsey . com  03 / 06 / 2001 cc :  02 : 27 pm subject : re : message for bernard  hi again ,  i had lunch today with some of the guys in my group who work on  agriculture - related deals and on weather derivatives .  i mentioned to them about bernard ' s working at mckinsey and  specializing in the agriculture area .  we thought it might be worthwhile if we all had a chat and / or met  to discuss possible collaborative efforts .  will you please forward this email on to bernard to see if this  might be of interest to him ?  thanks ,  iris  | this message may contain confidential and / or privileged |  | information . if you are not the addressee or authorized to |  | receive this for the addressee , you must not use , copy , |  | disclose or take any action based on this message or any |  | information herein . if you have received this message in |  | error , please advise the sender immediately by reply e - mail |  | and delete this message . thank you for your cooperation . | \",0\n\"Subject: enside  good morning !  here is the latest draft of your article for the enside newsletter . i have  forwarded it to the design team and expect them to send me a layout copy  sometime next week . we will be able to make any additional changes then .  talk to you next week - have a great weekend !  best regards ,  kathie\",0\n\"Subject: projects list  stinson ,  just want to give you a quick update about the current projects on my plate ,  so that you can update your blackbroad  1 ) wti trading simulation v . 2 , ready for you to review  2 ) storage valuation for paul bieinawski ( new )  3 ) product production margin modeling for doug friedman ( new )  need to model explicitly the jump piece . some new ideas for discussion .  4 ) espeed warrant valuation for randy petersen ( new )  5 ) correlation skew for larry may  6 ) credit exposure model , alex finished the coding , testing next  have you had a chance to review brad ' s back testing results for the storage  model ?  zimin\",0\n\"Subject: charlie weldon  - - - - - - - - - - - - - - - - - - - - - - forwarded by mike a roberts / hou / ect on 02 / 11 / 2000  03 : 29 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  charlene jackson @ enron  02 / 11 / 2000 03 : 13 pm  to : celeste roberts / hou / ect @ ect , ginger b gamble / hou / ect @ ect , jana  giovannini / hou / ect @ ect , mike a roberts / hou / ect @ ect  cc :  subject : charlie weldon  charlie weldon is a candidate who was a summer associate last year . i have  made the one and only exception for him on the starting date . he works with  mike roberts and they had prearranged for him to work on a special project  during hurricane season . unfortunately , the project can ' t be delayed due to  the timing of hurricane season . he will start in june to work on this  project . it is not a project that a summer associate could work on so it is  not taking a job from one of them .  mike totally understands the rationale for the starting date , etc . and has  promised in blood that charlie will start the orientation with his class and  will not be pulled out to work on any projects during the 4 week  orientation . he is also someone that they would take into their group after  orientation .  mike is drafting a letter that he will sign in blood indicating his promise  re orientation . please keep an eye out for this individual when we send out  the material regarding starting dates , etc .  we need to also make sure charlie understands that he must attend the entire  orientation .  mike also promises to sing our praises about how great we are ( smile - this is  my addition mike did not say that , but i am sure he will do it )  thanks\",0\n\"Subject: summer associate offers for full - time associate positions  fyi  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 09 / 21 / 2000  01 : 09 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  celeste roberts  09 / 20 / 2000 05 : 30 pm  to : stephen r horn / hou / ect @ ect , tony mataya / hou / ees @ ees , kevin  kuykendall / hou / ect @ ect , stan dowell / hou / ees @ ees , patrick hickey / enron  communications @ enron communications , scott porter / hou / ees @ ees , stinson  gibner / hou / ect @ ect , heather kroll / hou / ect @ ect , mark s palmer / enron  communications @ enron communications , ermes  melinchon / enron _ development @ enron _ development , rick  sierra / enron _ development @ enron _ development , steve pearlman / enron  communications @ enron communications , tammy l mulrooney / hou / ect @ ect , gustavo  junqueira / hou / ect @ ect , catherine simoes / hou / ees @ ees , stephen  thome / hou / ect @ ect , james w lewis / hou / ees @ ees , antonio jenkins  lara / corp / enron @ enron , doug rotenberg / enron _ development @ enron _ development ,  samer takriti / enron communications @ enron communications , william  keeney / hou / ect @ ect , david j botchlett / hou / ect @ ect , larry ciscon / enron  communications @ enron communications , jeanette reese / hou / ees @ ees , lance  mccarthy / epsc / hou / ect @ ect , rudi zipter / hou / ect @ ect , thomas  suffield / na / enron @ enron , mark meier / corp / enron @ enron , bill w  brown / hou / ect @ ect , stinson gibner / hou / ect @ ect , grant masson / hou / ect @ ect  cc :  subject : summer associate offers for full - time associate positions  listed below are the summer associates who will receive offers to join us  full - time . offers were made verbally on friday , september 15 and the offer  letters were mailed out on tuesday , september 19 .  the associate offers by school are as follows :  rice  andrew adams  shruti gandhi - gupta  kenneth jett  jason sokolov  darren sanders  nyu  lucia barrantes  chicago  terrell benke  texas a & m  mike seely  ucla  vladimir blinov  * * irina liskovets - visa issues , working with london to resolve and see if  placement there is possible  michigan  luis bravo  sherman \"\" alex \"\" james  ut  cantekin dincerler  steven luong  vanderbilt  charles donovan  chung taek oh  maxim phillippov  georgetown  andrea gonzalez  cornell  miriam kaggwa  mit sloan  josef lieskovsky  yale  braden mcelroy  stanford  guiseppe paleologo  darden  ning pan  thunderbird  steve west  lsu  datren williams  houston  sevil yaman\",0\n\"Subject: re : clustering for power  tanya ,  as we discussed in the last meeting , to simulate secondary power curve we need correlated jump sizes . this is totally different from the current secondary price curve simulation which assume the perfect correlation and also totally different from the secondary gas basis curve simulation which is based on the hedging ratio .  there are two more issues on my side i need to resolve :  1 . i want resolve the power basis curve issue . currently all power position on these basis curve are actually price positions . we are hard coding this : if power basis we add basis to corresponding region curve . i am trying to remove this hard coding by asking loading the price curve for all these basis locations .  2 . same is true for all those power f curves . these curves looks similar to those basis curves . currently we just directly map these f curves to the corresponding region curves . i would also prefer to load the price curves instead of the price differences .  from research , i need those jump size correlations .  clearly , all these involve many new development , unless we want to use simpler way to simulate secondary power curves .  regards ,  winston  - - - - - original message - - - - -  from : tamarchenko , tanya  sent : monday , april 16 , 2001 9 : 17 am  to : lew , jaesoo  cc : gorny , vladimir ; jia , winston ; kaminski , vince  subject : re : clustering for power  jaesoo ,  as we discussed last week on wednesday meeting can you , please ,  implement clustering for power curves by geographical region . this involves the following :  1 . deciding together with risk control how many geographical regions we want to use  and which enron ' s curves belong to each region .  2 . deciding together with risk control how to choose core curves for each region . this decision can  be maid based on the a ) position size ; b ) statistical analysis . there might be other considerations .  3 . doing regression analysis for each curve versus the corresponding core curve .  winston ,  can is it possible to run var for the clustering results obtained by jaesoo with clustering done by sas ?  should we wait for the stage re - fresh and what is the status on this ?  tanya .\",0\n\"Subject: re : chapter  dear vince ,  that ' s fine - i didn ' t know if yours had changed as grant ' s did - i have  your earlier part and that has already been type set .  best regards .  chris .  - - - - - original message - - - - -  from : \"\" vince j kaminski \"\"  to : \"\" chris strickland \"\"  cc : \"\" vince j kaminski \"\"  sent : tuesday , august 29 , 2000 5 : 18 am  subject : re : chapter  >  >  > chris ,  >  > my part has not changed for some time ( since early july ) .  >  > i sent the last vintage of corrections to you when i was in sydney .  > you can send the version you consider final to us just to double check .  >  > i took the liberty of sending our chapter to darrell duffie and he liked  it .  > what is more important he did not find any error .  >  >  > i shell send you my comments on the article for robin in a day or so .  >  > vince  >  >  >  >  >  >  > \"\" chris strickland \"\" on 08 / 28 / 2000 02 : 55 : 31 pm  >  > please respond to \"\" chris strickland \"\"  >  > to : ,  > cc :  > subject : chapter  >  >  >  > hi vince ,  >  > how are things with you ? well i hope . do you have the latest version of  your  > part of chapter 3 ? ( i think grant has sent thru a seperate , updated  version to  > you , which has been typeset ) . everything else has been tied up and we  will go  > with the version we have , unless we hear otherwise .  >  > many thanks and best regards .  >  > chris .  >  >  >  >  >  >  >  >\",0\n\"Subject: re : f / u to dr . kaminski @ enron from iris mack  hi ,  hope you had a happy thanksgiving . so what do you think of the way we  select our president ?  regarding the passwords , they are as follows :  password # 1 : roviris  password # 2 : hannah  i will try to call you shortly .  kind regards ,  iris  > from : vince . j . kaminski @ enron . com  > to : irismmack @ hotmail . com  > subject : re : f / u to dr . kaminski @ enron from iris mack  > date : mon , 27 nov 2000 08 : 19 : 52 - 0600  >  >  > hi iris ,  >  > thanks for your messages . please , call me on my cell phone ( 713 ) 410 5396  > or at my office ( 713 ) 853 3848 .  >  > by the way , the 2 nd file you sent is password protected .  >  > vince  >  >  _ _ _ _ _ _ _  get more from the web . free msn explorer download : http : / / explorer . msn . com\",0\n\"Subject: re : fea announces the release of @ energy 2 . 0  vince and stinson ,  i have successfully downloaded the @ energy 2 . 0 . i am working with it  to update the license before we can use the software .  zimin  vince j kaminski  01 / 31 / 2001 11 : 20 am  to : zimin lu / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect  subject : fea announces the release of @ energy 2 . 0  zimin ,  please , take a look at it .  i think we should download the update .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 31 / 2001  11 : 21 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" michelle mendoza \"\" on 01 / 26 / 2001 02 : 33 : 14 pm  to :  cc :  subject : fea announces the release of @ energy 2 . 0  january 26 , 2001  vince kaminski  enron north america corp .  1400 smith street  30 th floor , rm . 3036 b  houston , tx 77251 - 1188  1 713 - 853 - 3848  dear vince kaminski ,  this is to inform you of the release of @ energy 2 . 0 . ftp download  instructions are available immediately . the download instructions are  included at the end of this email . your cd ' s and manuals will be shipped to  you within 2 weeks . please see below for more information regarding this new  release .  please confirm that you are the correct recipient for this shipment and your  address above is correct by clicking reply and send . if any changes need to  be made , please make the changes above and reply .  * * warning : please note that if you did not received a license key for  @ energy after june 2000 , you will need to contact support @ fea . com or call  510 . 548 . 6200 to obtain a new license key to enable the new version . * *  * * swing users : @ energy / swing now replaces the \"\" swing \"\" product . see the  @ energy user manual for a discussion of the changes . contact fea for the  necessary license keys . you will be able to run both the new and old swing  simultaneously .  heres an overview of the new and changed features since version 1 . 6 :  @ energy ( forward curve )  jump parameters are now calibrated for use in other @ energy functions .  inputs and outputs to powercalib and comcalib have changed . see the  corresponding function syntax in the user guide for additional information .  35 - 40 % speed improvement . the module is now out of beta .  @ energy ( basics )  different interpolation schemes on forward prices are now supported . if you  use indexswap , exoticswap , or optindexswap with floating price linked to a  series of futures dates , such futures dates need not be close to dates  specified in the forward curve input . a new utility function , pathutil ,  allows you to simulate and visualize price paths consistent with the models  supported by @ energy . 25 - 30 % speed improvement .  @ energy ( advanced )  different interpolation schemes on forward prices are now supported . if you  use optdiffswap or diffswap with floating price linked to a series of  futures dates , such futures dates need not be close to dates specified in  the forward curve input . calspreadopt now allows for the specification of  two different mean reversion rates . 30 - 35 % speed improvement .  @ energy ( swing )  swingopt and stripswingopt now allow for valuation of swing straddle  contracts with overall load constraints . 65 - 70 % speed improvement . the  module is now out of beta .  @ energy ( weather )  30 - 35 % speed improvement .  if you have any questions please feel free to contact us . we appreciate this  opportunity to be of continuing service to enron north america corp . .  regards ,  michelle mendoza  support @ fea . com  + 1 - 510 - 548 - 6200  financial engineering associates , inc . ( fea )  * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  to download @ energy 2 . 0 via ftp , follow the following instructions :  note : using explorer leads to unpredictable results , so we suggest using  netscape or a dos shell .  using netscape :  in the location box type : ftp : / / energy @ ftp . fea . com  password : 2 rbzxgv 5  energy - 2 . 0 - win 32 . exe is for windows 95 / 98 / 2000 / nt . download and run on  a local drive .  using a dos shell :  at a dos prompt type : ftp ftp . fea . com  user : energy  password : 2 rbzxgv 5  type \"\" binary \"\" and hit ' return ' .  type \"\" ls \"\" for a list of available files .  type \"\" get \"\" energy - 2 . 0 - win 32 . exe and and wait for the ftp > prompt .  type \"\" quit \"\" .  the file will be downloaded into the directory at which you entered the ftp  site .  double click on the exe and follow the instructions on the screen .\",0\n\"Subject: re : lost cell telephone  chris :  vince found his cell phone - can we have it reinstated ?  hope you had wonderful holidays !  thanks !  shirley crenshaw  3 - 5290  chris samaniego on 12 / 18 / 2000 03 : 06 : 09 pm  to : \"\" ' shirley . crenshaw @ enron . com ' \"\" , enron  cc :  subject : re : lost cell telephone  request completed .  chris samaniego  account associate  houston cellular corporate accounts  petrochemical vertical  ( 713 ) 562 - 2995 cellular  ( 713 ) 345 - 7183 enron direct  ( 713 ) 646 - 2415 fax  enron @ houstoncellular . com e - mail  samaniec @ houstoncellular . com e - mail  samaniec @ bellsouthips . com interactive pager  > - - - - - original message - - - - -  > from : shirley . crenshaw @ enron . com [ smtp : shirley . crenshaw @ enron . com ]  > sent : monday , december 18 , 2000 2 : 19 pm  > to : enron  > subject : lost cell telephone  >  > hello :  >  > vince kaminski left his cell phone on the bus last friday . he has  > contacted  > the bus line , but the person in charge of the lost and found is not in the  > office today .  >  > if there any way that we can put a hold on this telephone until he can see  > whether it has been turned in or not ?  >  > the cell # is : 713 / 410 - 5396 and the account # is : 88563580 .  >  > please let me know as soon as possible .  >  > thanks !  >  > shirley crenshaw  > 3 - 5290  > ebl 961  > shirley . crenshaw @ enron . com  >  >\",0\n\"Subject: research get - together at sandeep kohli ' s new home  hello everyone :  here is your invitation and a map to sandeep ' s home .  see you saturday !\",0\n\"Subject: approval is overdue : access request for grace . kim @ enron . com  this request has been pending approval for 2 days and you are the  alternate . please click  approval to review and act upon this request .  request id : 000000000006238  approver : stinson . gibner @ enron . com  request create date : 10 / 31 / 00 5 : 03 : 29 pm  requested for : grace . kim @ enron . com  resource name : \\ \\ enehou \\ houston \\ common \\ research - [ read ]  resource type : directory\",0\n\"Subject: re : address  confirmed  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : friday , june 02 , 2000 03 : 21 pm  to : deangelo , david j .  cc : vince . j . kaminski @ enron . com  subject : address  vincent kaminski  managing director  enron corp .  1400 smith street , room 1962  houston , tx 77251 - 1188  phone : ( 713 ) 853 3848  fax : ( 713 ) 646 2503  e - mail : vkamins @ enron . com\",0\n\"Subject: new businesses in london : weather & insurance  hi vince ,  talking to the staff in london , i heard that lynda clemmons and a few of the  key weather desk members left to start their own business . i am hearing that  london may gain more independence from houston and gain its own book and ,  interestingly , also having ideas about developing the insurance / insurance  derivatives market . i therefore thought this might be a useful opportunity  to formalise a gradual transfer of responsibility for weather deal pricing  from joe to myself plus start talking to vasant about the new markets on the  insurance side . i will call you later to discuss this with you .  regards ,  anjam  x 35383\",0\n\"Subject: re : london research prc  dale ,  thanks for the update . i fully concur with all the rankings .  it seems things are going well with the research group in  london and this is , to a very large extent , your contribution .  i think that anjam has improved a lot . i don ' t think , however ,  that he can run the group in the future . steve emerged as a natural  leader and has overwhelming support in the organization .  vince  dale surbey  06 / 15 / 2000 02 : 28 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : london research prc  vince ,  we had the prc preranking for rac and research in london yesterday . here ' s  how everyone came out :  steven - superior : no controversy here . steve received consistently strong  feedback ( ranked as either superior or excellent in all categories ) . the  only rough spot was teamwork , arising from the friction between anjam and  himself .  anjam - excellent : anjam received rankings of superiors or excellents in all  categories . several reviewers commented that anjam ' s performance in the  areas of producing results in a timely manner and communication have  improved . i felt the overall ranking of excellent was justified based on  this feedback , even though in terms of leadership i don ' t rate him high  enough to run the group here .  stinsen provided the most insightful comment on anjam ' s performance :  \"\" technically superior but lets his quest for a leadership position detract  from his overall performance \"\" .  on a related topic , anjam has been taking random days off , typically on short  notice , so i suspect he ' s interviewing for a new job . given his inability to  work with steven ( especially in the future when stephen heads the group ) ,  this may be the best long - term solution . any thoughts ?  ben - superior : another non - controversial ranking . ben received  consistently high marks from all the groups he supports , especially in the  area of non - technical skills .  i nominated ben for promotion to senior specialist . even though he was  promoted at year end , he ' s taken on a lot of responsibility training kirstee  and helping manage the other quant resources in brian ' s group . also , since  kirstee was hired in at the same level as ben , a mid - year promotion is  appropriate since he ' s effectively her supervisor .  kirstee - strong : only limited feedback in the 2 months she ' s been here .  high marks for technical / quantitative , strong in the \"\" soft \"\" skills . i think  the strong rating is the right message for early in the game - gives her a  target for improvement for the rest of the year .  - dale\",0\n\"Subject: re : prof . carmona  vince ,  my apologies for the late response - and thank you for your input .  yannis  - - - - - original message - - - - -  from : kaminski , vince  sent : tuesday , march 06 , 2001 3 : 15 pm  to : yannis tzamouranis / hou / ect @ enron  cc : kaminski , vince ; mark tawney / hou / ect @ enron ; shanbhogue , vasant  subject : prof . carmona  yannis ,  i have looked at the outline of the proposed course and  find that practically all the topics of the program are the  staple of what we do every day . i don ' t think research should spend  money for this class .  if we want to establish a relationship , we can easily do it  by asking him to work on a research project .  vince\",0\n\"Subject: re : chicago partners  david ,  i sent a message with information to several different units but no  response so far . i think people need a specific need to focus  and i shall keep the chicago partners in mind when a relevant  project arrives . i shall resend the message with attachments on  cp in a few weeks as a reminder .  vince  vince  david _ barr @ enron . net on 03 / 01 / 2000 10 : 15 : 57 am  to : vkamins @ enron . com  cc :  subject : chicago partners  vince ,  hope this finds you well . i am sure you are more than busy but i wanted to  see  where we stand with feedback regarding me coordinating a potential  presentation  by chris culp at cp risk management .  regards ,  david\",0\n\"Subject: exotica ( yet again )  hi guys  i need some advice .  sharad is in the process of finding differences between your and our versions  of exotica . at some point we will need to migrate london office over to your  more up - to - date version , and i ' m concerned that there may be rac - style  implications . i ' m in favour of using the it testers to carry out formal  regression testing , and they are apparently able to do this .  do we need to get our heads together to \"\" form a view \"\" before we involve rac  or the business groups ?  anjam tells sharad that london exotica was built using excel 95 , and that  neither he nor zimin knows how to build / compile the xla using later versions  of excel . is this true ? if so , then we need to migrate to xlls sooner  rather than later because of the maintenance implications .  steve\",0\n\"Subject: re : willow and pathstar evaluations  please respond to mike curran  ok - thanks .  - - - - - original message - - - - -  from :  to : \"\" mike curran \"\"  cc : ;  sent : monday , april 30 , 2001 11 : 34 pm  subject : re : willow and pathstar evaluations  >  > mike ,  >  > we are short manpower in london . we shall try to  > evaluate the software in houston .  >  > vince  >  >  >  >  >  > \"\" mike curran \"\" on 04 / 24 / 2001 10 : 03 : 24 am  >  > please respond to \"\" mike curran \"\"  >  > to :  > cc :  > subject : willow and pathstar evaluations  >  >  >  > hi vince -  >  > hope all is well with you .  >  > sharad hasn ' t had time to evaluate our willow tree or monte carlo software  > since the middle of last year . is there somebody else that could do it ?  >  > please let me know who i should send the evaluation to .  >  > best regards ,  >  > michael curran  > ceo  > quantin ' leap limited  > piercy house  > 7 copthall avenue  > london ec 2 r 7 nj  >  > tel : + 44 ( 0 ) 20 7562 3450  > fax : + 44 ( 0 ) 20 7562 3411  >  > mailto : mcurran @ quantinleap . com  >  > http : / / www . quantinleap . com  >  >  >  >  >  >  >  >  >  >  >\",0\n\"Subject: livelink access  moyez ,  i could not access the system .  vince kaminski  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 06 / 2001  08 : 26 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  stinson gibner  03 / 05 / 2001 03 : 37 pm  to : kenneth parkhill / na / enron @ enron , jaesoo lew / na / enron @ enron , tom  halliburton / corp / enron @ enron , kevin kindall / corp / enron @ enron , bob  lee / na / enron @ enron , alex huang / corp / enron @ enron , tanya  tamarchenko / hou / ect @ ect , joseph hrgovcic / enron @ enronxgate , gwyn  koepke / na / enron @ enron , rakesh bharati / na / enron @ enron , martin lin / hou / ect @ ect ,  rabi de / na / enron @ enron , chonawee supatgiat / corp / enron @ enron , seksan  kiatsupaibul / hou / ees @ ees , wichai narongwanich / hou / ees @ ees , sevil  yaman / corp / enron @ enron , tom barkley / na / enron @ enron , pinnamaneni  krishnarao / hou / ect @ ect , osman sezgen / hou / ees @ ees , praveen  mellacheruvu / hou / ees @ ees , sandeep kohli @ enron , vince j kaminski / hou / ect @ ect  cc :  subject : livelink access  you have been added to the livelink test instance for research . see below  for the link .  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 03 / 05 / 2001  03 : 32 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron technology  from : moyez lallani @ enron 01 / 16 / 2001 10 : 46 am  to : stinson gibner / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect  cc :  subject : livelink access  gentlemen ,  i have created a folder called research projects folder in the livelink test  instance . the url to the test instance is  to log in , use your nt login id as your userid and password ( all lowercase ) .  you will find the folder on the enterprise workspace . please call me should  you require further assistance .  moyez lallani  x 5 - 3683\",0\n\"Subject: re : new color printer  goodmorning lyn ,  please inform me on the status of the color printer for  the 19 th floor .  we need this printer a . s . a . p .  this printer should be placed where the black and white printer  is located on the same counter .  co . 0011  r . c . 100038  let me know !  merry christmas  kevin moore  - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 12 / 22 / 99 06 : 23  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  kevin g moore  12 / 14 / 99 09 : 21 am  to : lyn malina / hou / ect @ ect  cc :  subject : re : new color printer  - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 12 / 14 / 99 09 : 17  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  kevin g moore  12 / 14 / 99 08 : 13 am  to : vince j kaminski / hou / ect @ ect , mike a roberts / hou / ect @ ect  cc :  subject : re : new color printer  yes ! right away , please  also let me know the e . t . a .  thanks , lyn  kevin moore\",0\n\"Subject: re : presentation to faculty and students at berkeley  charlene ,  i coordinate my schedule with ashley baxter from your organization , who is  responsible  for recruiting at berkeley . i have talked to her about this presentation a  few times . as you can see ,  she is on the distribution list .  the presentation is scheduled for the 23 rd of october . we have tried to  combine the presentation with  another recruiting trip , but we have to many conflicting schedules .  vince  charlene jackson @ enron  09 / 18 / 2000 02 : 34 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : presentation to faculty and students at berkeley  vince when is your presentation scheduled ? i can get someone from my group  but since the recruiters are all on the road i would need a date so that they  or i could coordinate with you . thanks  vince j kaminski @ ect  09 / 18 / 2000 01 : 26 pm  to : steven j kean / na / enron @ enron  cc : charlene jackson / corp / enron @ enron , celeste roberts / hou / ect @ ect , vince j  kaminski / hou / ect @ ect , ashley baxter / corp / enron @ enron  subject : presentation to faculty and students at berkeley  steve ,  i am a lead recruiter at the university of california at berkeley for  enron analyst / associate program .  i contacted several friends who work at berkeley and received an invitation  from one of them to make a presentation at the weekly faculty seminar  of the dept . of industrial engineering and operations research .  the students and faculty members from the business school will be also  invited .  berkeley in general , and department of industrial engineering and operations  research in  particular , are important centers of academic research on electricity markets  ( s . oren works very closely with severin borenstein ) .  my presentation will focus on the analyst / associate program . i shall also  have  an opportunity to discuss the power markets in california ( i expect many  questions ) before many experts who are very important to shaping  public opinion and regulatory agenda .  please , let me know who in you group could help me in preparing this  presentation  and in presenting enron ' s point of view in a more effective way .  vince  fyi . the name of my friend who invited me :  shmuel s . oren , professor  dept . of industrial engineering  and operations research  4117 etcheverry hall  university of california  berkeley , ca 94720 - 1777\",0\n\"Subject: re : resume  vasant ,  i agree .  vince  from : vasant shanbhogue / enron @ enronxgate on 05 / 01 / 2001 10 : 00 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : resume  vince ,  he seems to have mostly equity and fixed income background ( and then some  credit exposure calculation ) with not much credit data analysis experience .  i do not think he would be appropriate for bryan ' s group - - he needs a person  who tracks market developments and understands fundamental data , and although  this guy may be good at modeling , we already have iris and amitava doing the  modeling and looking at data . at this stage , i would prefer to hire somebody  with direct experience in credit analysis ( banking , rating agency ) . i am  worried that if we get another person without data analysis experience , then  amitava will find himself with two people ( iris being the other one ) who are  both inexperienced in this area , and he will find himself doing a lot of the  work anyway .  if you want to pursue him , we should probably do a phone interview first .  vasant  - - - - - original message - - - - -  from : kaminski , vince  sent : monday , april 30 , 2001 5 : 33 pm  to : shanbhogue , vasant  subject : re : resume  vasant ,  what do you think ? he may be expensive .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 30 / 2001  05 : 31 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  marshall brown on 04 / 25 / 2001 01 : 13 : 44 pm  to : vince . j . kaminski @ enron . com  cc :  subject : re : resume  vince ,  i apologize , i sent you the wrong resume ! here is the correct one .  >  marshall brown  vice president  robert walters associates  phone # : 212 - 704 - 0596  fax # : 212 - 704 - 4312  marshall . brown @ robertwalters . com  www . robertwalters . com  > - - - - - original message - - - - -  > from : vince . j . kaminski @ enron . com [ smtp : vince . j . kaminski @ enron . com ]  > sent : wednesday , april 25 , 2001 1 : 08 pm  > to : marshall . brown @ robertwalters . com  > subject : re : resume  >  >  > marshall ,  >  > he looks ok but below the level of quant skills i typically look for  >  > vince  >  >  >  >  >  > marshall brown on 04 / 23 / 2001 09 : 33 : 00  > am  >  > to : vince kaminski  > cc :  > subject : resume  >  >  > vince ,  > i know this candidate is actively interviewing at el paso and i think  > reliant . he has excellent quantitative background , but no real energy  > experience . if you are interested in speaking with him let me know .  > regards ,  > marshall brown  > vice president  > robert walters associates  > phone # : 212 - 704 - 0596  > fax # : 212 - 704 - 4312  > marshall . brown @ robertwalters . com  > www . robertwalters . com  >  >  > >  >  >  > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  > caution : electronic mail sent through the internet is not secure and could  > be intercepted by a third party .  >  > this email and any files transmitted with it are confidential and  > intended solely for the use of the individual or entity to whom they  > are addressed . if you have received this email in error please notify  > the system manager .  >  > this footnote also confirms that this email message has been swept by  > mimesweeper for the presence of computer viruses .  >  > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  >  > ( see attached file : litt _ har . doc )  >  > >  - litt _ tho . doc >\",0\n\"Subject: re : qian ( frank ) feng interview with the research group  shirley : we ' ve also been in touch with frank . he wasn ' t going to receive  his class schedule until yesterday , so we will follow up today and find a  mutually convenient date .  molly  shirley crenshaw  01 / 16 / 2001 09 : 51 am  to : molly magee / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , kevin kindall / corp / enron @ enron , bob  lee / na / enron @ enron  subject : re : qian ( frank ) feng interview with the research group  hi molly :  i guess it is time to try and schedule frank ' s interview . we would like to  bring him in sometime around the first of february ( when krishna returns ) .  please contact him and see what a good time for him would be .  attached is his resume and interview request form .  - enron _ resume . doc  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 01 / 16 / 2001  09 : 42 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron north america corp .  from : molly magee 12 / 20 / 2000 05 : 35 pm  to : shirley crenshaw / hou / ect @ ect  cc :  subject : re : qian ( frank ) feng interview with the research group  you , too , shirley . we ' ll be back in touch .  molly  shirley crenshaw  12 / 20 / 2000 02 : 07 pm  to : cheryl arguijo / enron _ development @ enron _ development , molly  magee / hou / ect @ ect  cc :  subject : qian ( frank ) feng interview with the research group  hello molly and cheryl :  attached is frank ' s resume . we still have quite a bit of time as we want to  schedule this for after krishna returns on the 25 th of january .  this position would be for the research group directly , and would include  all of vince ' s direct reports .  thanks and merry christmas and happy new year ! !\",0\n\"Subject: re : yana kristal ' s rotation  hi vince , i already spoke with maureen and we discussed timing . yana will  stay until a replacement is found and trained . as for the permanent  transfer , that is not a problem . thanks for getting back with me .  avr  vince j kaminski  12 / 05 / 2000 03 : 26 pm  to : andrea v reed / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : yana kristal ' s rotation  andrea ,  it ' s fine with me . few points :  1 . as a courtesy to maureen raymond , please , discuss the timing with her .  2 . yana is not a member of the analyst / associate pool . this is not a rotation .  she was hired directly and this means that we transfer her  permanently to your unit .  vince  andrea v reed  12 / 05 / 2000 01 : 14 pm  to : vince j kaminski / hou / ect @ ect , maureen raymond / hou / ect @ ect  cc : yana kristal / corp / enron @ enron  subject : yana kristal ' s rotation  i spoke to yana today and understand that you are supportive of yana rotating  through our group , eim fundamental analysis . we are very pleased that yana  will be joining us . her skill set will be particularly helpful as we build  the steel business .  i was hoping that yana could begin working with us mid december . does a  start date in eim of dec . 18 work for you ? please let me know .  once again , thank you for your support .  andrea\",0\n\"Subject: enrondirectfinance . com usernames and passwords  the enrondirectfinance website was launched this morning . for access ,  please use the following :  url = www . enrondirectfinance . com  username = enroninternal  password = astros  real player v 7 . 0 and adobe acrobat v 4 . 0 are required to view deal  information . free downloads these programs are available on the  enrondirectfinace website .  if you have any technical difficulties , please contact the enrondirectfinance  technical help desk at 3 - 9438 .  please direct comments regarding the website to any of the following  individuals :  harry arora 3 - 6750  jeff bartlett 3 - 5629  suresh raghavan 3 - 4217\",0\n\"Subject: prc review  stinson ,  i am going to do the prc review for bob and paulo .  if your time permits , please join me for these two meetings .  bob : 9 : 00 am  paulo : 10 : 00 am  i attended the prc training , they suggested letting employees  read their review before the meeting . so i did that . here are the  two files attached .  zimin\",0\n\"Subject: re : windows 2000 - alcar  brenda ,  what test are we supposed to carry out ?  is monday next week ok ?  vince  from : brenda cassel @ enron on 07 / 05 / 2000 10 : 28 am  to : dan feather / sa / enron @ enron , vince j kaminski / hou / ect @ ect , hector  campos / hou / ect @ ect  cc :  subject : windows 2000 - alcar  hello ,  i am on the qa team for the win 2 k roll - out . we need your help in testing  \"\" alcar \"\" in a windows 2000 environment .  this testing is crucial to the success of converting all pc ' s from nt 4 to  windows 2000 . we ask that you make an appointment to come to our offices  ( eb 2224 b ) to preform the test . it should not take more than 15 minutes .  please e - mail me as soon as possible .  thanks ,  brenda cassel  qa - w 2 k  x 36226\",0\n\"Subject: fx curve for rupee  harry :  i am krishna , just visiting our bombay office . can you send the rupee / us $  forward curve ( upto atleast 2005 ) to this address asap ? we are working on a  deal for which we need this urgently . i will be back in houston next week and  can talk to you in more detail then . if you need to call here the # is  91 - 022 - 8239856 ( ask for rajesh sivaraman ) .  thanks ,  krishna .\",0\n\"Subject: iif / oxan - info sources  vince ,  we would like to continue to receive the iif service for a cost to the  research group of $ 15 , 000 per annum . can i ask you to approve this charge ?  please let me know if you ' d like to discuss . we decided to cancel the oxford  analytica service ( daily country briefs and access to the website ) as we are  getting consensus forecasts for fx and inflation from another source , so we  will not be subject to the $ 10 , 000 fee referenced below .  thanks ,  gwyn  - - - - - - - - - - - - - - - - - - - - - - forwarded by gwyn koepke / na / enron on 02 / 13 / 2001 01 : 55  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  robert johnston @ ect  02 / 13 / 2001 09 : 46 am  to : maureen raymond / hou / ect @ ect , gwyn koepke / na / enron @ enron  cc : scott tholan / corp / enron @ enron  subject : iif / oxan  hi maureen and gwyn -  on the oxford analytica front , i ' m glad you have found the service useful .  our contract with them has expired and we are currently negotiating for more  users to have access . our current contract is for $ 50 k or $ 10 k per user per  year . we can charge $ 10 k back to you .  on the iif front , the invoice for $ 47 k is due at the end of the month . here  i would propose that we pay two thirds ( to cover our costs and the costs of  our competitive analysis colleagues in london ) , leaving $ 15 k for you to cover .  since we took on these services last year , we have expanded our range of  sources and projects and are consequently trying to do more with less . thus i  need to allocate some of our costs from oxan and iif to other projects .  let me know what you think about this proposal . maureen , congratulations on  your secondment to enron metals ( gwyn mentioned it to me ) . fyi , our  colleague jim roth is providing competitive analysis support to joe gold and  john sherriff on that project from london .  rj\",0\n\"Subject: re :  rafal ,  dziekuje za odpowiedz . bede bardzo wdzieczny za ksiazke :  wincenty kaminski  10 snowbird  the woodlands , tx 77381  phone : ( 281 ) 367 5377  cell : ( 713 ) 898 9960  wicek  rafal weron c - 11 on 01 / 29 / 2001 08 : 11 : 48 am  to : vkamins @ enron . com  cc : aleksander weron c - 11  subject :  dear vince ,  bardzo dziekuje za podeslana literature , szczegolnie drugie wydanie  ksiazki . bylismy w londynie w czerwcu zeszlego roku , ale w ksiegarni  znalezlismy tylko piersze wydanie . obaj z alkiem ( ojcem ) wspolpracujemy z  energetyka ( glownie polska ) od kilku lat . w zeszlym roku wydalismy ksiazke  \"\" gielda energii : strategie zarzadzania ryzykiem \"\" , a obecnie pracujemy nad  jej angielskim wydaniem . na jaki adres ci ja przyslac ?  serdeczne pozdrowienia ,  rafal\",0\n\"Subject: evaluation form  mike ,  please , sign and return to me .  vince\",0\n\"Subject: re : visit ?  frank ,  we shall be glad to meet you in houston . i am sure that we can find many  interesting  topics to discuss  we can pay for your trip to houston . i shall call you next week to discuss  the details .  vince  \"\" francis x . diebold \"\" on 04 / 11 / 2000 04 : 15 : 40 pm  to : vince kaminski  cc :  subject : visit ?  dear vince ,  i very much enjoyed speaking with you at lunch , if only briefly , at the  \u0001 see  http : / / www . stern . nyu . edu / ~ fdiebold .  the upshot : it seems to me that we would both benefit from a more  extensive conversation . i  would be happy to visit you in houston to learn more about your  operations , and to tell you more  about mine . please do let me know if you are interested .  best regards ,  frank diebold  - -  francis x . diebold  armellino professor of finance  stern school of business  new york university  44 west 4 th street , k - mec , suite 9 - 190  new york , ny 10012 - 1126  fdiebold @ stern . nyu . edu  http : / / www . stern . nyu . edu / ~ fdiebold  ( 212 ) 998 - 0799 office telephone  ( 610 ) 585 - 4057 voicemail  ( 212 ) 998 - 0351 fax\",0\n\"Subject: re : henwood query  hi karolina ,  yes , it might be more productive to talk on the phone . given our time  difference , why don ' t we plan on tomorrow ( friday ) 8 : 00 am pdt , 4 : 00 pm bdt ? my  number in the states is 503 - 464 - 8430 . give me your number , too , so that i can  call back if i get hung up in a meeting or something .  the situation is complicated by the fact that the marginal cost is set by the  capacity increment of a plant that is on the margin in a particular hour , but  in constructing the stack , increments of a plant may be scattered throughout  the stack , based on their respective incremental heat rates . ( this is why  increment heat rates must be strictly increasing in this model . ) results for  the capacity increments , however , are not available as output ; only each  plant ' s aggregate values are reported .  i had to construct the stack for a particular hour to answer question about a  homer city , ny plant we were studying a few years ago . attached is the sql  query you can import into ms access to do the same thing for you ( making  appropriate modifications to the year , hour , etc . ) unfortunately , no henwood  documentation on the output variables existed when i created this query , so i  can not really tell you what they represent anymore . an acquaintance of mine  at entergy and i were lobbying to get henwood to provide some documentation ,  so it may be available now .  let ' s talk and maybe we can help you out ,  michael  > > > karolina potter / lon / ect @ enron 08 / 24 / 00 07 : 08 am > > >  michael ,  i am an analyst in paul mead ' s continental power trading group in london . i am  currently working on the project , which requires the use of emss , and  experience some difficulties interpreting the output results . steven leppard  from our research group gave me your name as an expert in this system and  consequently the person to contact in case of problems .  i have been running simulations for the dutch market and was asked to provide  the traders with some front - end screen graphs in order to interpret the  numerical results . one of the graphs is to show an hourly generation stack and  system ' s marginal cost , as we only run cost based scenarios . to sort each  station ' s hourly generation i need its marginal cost . to my knowledge though ,  marginal cost is only generated for a systems marginal unit ( transarea  marginal units query , marg _ cost unit ) . therefore i was sorting the stations  according to the cost which i calculated based on the outputs from station  detail by hour query . the calculation was as follows :  for each hour , for each generating station :  \"\" marginal cost \"\" [ o / mwh ] = ( generation _ cost [ oo 00 ] * 1000 ) / generation [ mwh ] -  vom _ cost [ o / mwh ]  this i thought would include fuel cost and start up costs . however , a marginal  station which i get on the stack as a result of the above calculation is not a  station given in marginal station field in transarea marginal units query . i  have also looked into transarea _ data _ hr table and transarea _ data table but non  of the costs there match my results .  do you happen to know what formula is used to determine marg _ cost and which  outputs i should be using to obtain the right results ?  it might be easier if we could discuss this issue on the phone . in this case  could you please send me your direct telephone number . i am struggling  understanding what is going on and would appreciate your help very much .  regards  karolina\",0\n\"Subject: class request : xl 97 - 564 excel 97 , introduction , william smith  your approval is required for william smith to attend the following class .  to grant approval , send a reply to \"\" lpharr @ enron . com \"\" ( notesmail : lerea  pharr / hou / ect @ ect ) .  be sure to include employee ' s name and class number in reply .  excel 97 , introduction  session dates & times :  3 / 23 / 2000 8 : 30 : 00 am - 3 : 00 : 00 pm  location : eb 568  no show / participant fee : $ 150 . 00  if you have any questions , please call the technology training coordinator at  713 - 853 - 1816 .\",0\n\"Subject: dispatch within maharashtra  jim ,  please find attached some slides that show the results of the henwood run  giving dispatch for the dabhol plant within maharashtra . i have also sent  the presentation we made to you to wade . he is to get back on when would be  an appropriate time for him to go over the presentation with me .  vince , stinson and i have placed ourselves on rebecca ' s calender for friday ,  and we will make the complete pitch to her . it would be great if you too  could be present at the meeting . if it is possible , please do let me know .  on the attached slides , please note that :  the slides all assume that there is a 1 part power tariff , mseb liability for  the entire capacity payment is not considered .  the henwood model was with no power flowing out of maharashtra  when variable o & m costs , fixed o though in  some months ( jan ) it goes as high as $ 69 mm . hence , overall , mseb can pay  for the dispatches as shown in the henwood run provided , they are not paying  for the capacity payment for the whole 2184 mw plant .  in conclusion , therefore , mseb has the need for between 1200 to 410 mw on a  seasonal basis . this means that the power remaining to be sold to other  states is the difference between that and 2184 mw .  however , since the demand within maharashtra varies seasonally , it may mean  that we need to market seasonal products to other states , not long term  blocks .  these are our conclusions . we may continue to work some more on the fuel and  hedging side . if you have any more questions for me , please let me know ,  else for now there will not be any new henwood runs .  regards ,  sandeep .\",0\n\"Subject: missing prc information  vince , the following information is missing from your employee profile which  will be used at the md prc meeting on 8 / 15 / 00 :  current responsibilities  previous experience at enron  please go into your gis file and update by end of business day monday , july  31 st .  if you have any questions or problems getting into your file , please call  kathy schultea at ext 33841 .  thank you .\",0\n\"Subject: adaptive trade  vince , zimin ,  i participated in a telephone conference on this company this morning . there  was a possibility enron would invest in it .  their product appears to be a gui interface over the top of ilog solver ( and  possibly ilog cplex ) which allows problems to be expressed in high level  terms . i do not see any immediate application at enron , but i am interested  in the concepts used so expressed an interest in a demo . maybe it would be  useful for general modelling projects here .  they do not even have a user manual for their software , so it will be  difficult to figure out what it does unless a demo is arranged . the  possibility for growth in the company seems small as the ilog software is a  modest size market and their product is aimed at only a small part of that  market . i think the scheduling tools in sap , i 2 , etc are more likely to  succeed than this one as they are already integrated into an information  system .  because of the small market for this software , the many competitors , the  absence of any clear use for it at enron and the early stage of development ,  there is very little prospect of us funding this company .  tom\",0\n\"Subject: re : java training  stinson -  looks like we ' re in , to split the costs of the class with you . george will  contact you soon .  clayton  - - - - - - - - - - - - - - - - - - - - - - forwarded by clayton vernon / corp / enron on 01 / 29 / 2001  08 : 38 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  lloyd will @ ect  01 / 29 / 2001 08 : 38 am  to : george hopley / hou / ect @ ect , clayton vernon / corp / enron @ enron  cc :  subject : re : java training  sounds good .  george please coordinate our attendance .  thanks .  george hopley  01 / 27 / 2001 01 : 29 pm  to : lloyd will / hou / ect @ ect  cc :  subject : java training  let ' s offer this to the analysts / specialists .  george  - - - - - - - - - - - - - - - - - - - - - - forwarded by george hopley / hou / ect on 01 / 27 / 2001 01 : 29  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  clayton vernon @ enron  01 / 27 / 2001 09 : 06 am  to : george hopley / hou / ect @ ect  cc :  subject : java training  george -  here ' s the story .  research forwarded to their personnel a solicitation they received for java  training by an outside person , weeklong classes for true beginners and for  those with decent programming experience in other languages ( esp c + + ) . vince  had pre - agreed tlo pay for it for anyone who wanted it . but , the response  they got was so \"\" overwhelming \"\" they reconsidered , for financial reasons , and  decided it would be better to just hire a professor to teach a class for a  week here . the costs would be around $ 15 , 000 , and there should be room for  around 15 people in the class . they have 6 - 8 people , and wonder if we might  have some people who would want to do it ( a no - brainer - java is a big - time  resume pad these days ) and would be willing to share the costs with them .  what is your opinion on this ? personally , i think it ' s a relatively  inexpensive investment in our people , although , selfishly , it does increase  their ' market value ' so to speak . ( of course , nothing keeps directors from  going to the class as well : ) )  clayton\",0\n\"Subject: elements of power ( 4 )  dear colleagues :  we are writing to remind you of an opportunity for in - depth education on  electric power restructuring in texas through a training workshop offered  by the university of houston .  with the passage of senate bill 7 , texas is moving forward with electric  power restructuring . what will the new marketplace look like ? how will it  function ? how will existing business opportunities be affected , and what  new ones are likely to emerge ? join us for a comprehensive two - day  training workshop march 1 - 2 , 2000 that addresses these issues and  accommodates both new and experienced professionals . hosted by the energy  institute at the university of houston ' s college of business  administration , the training workshop features an introductory day that  will refresh participants on the basics of the electric power market and  key aspects of the restructuring process in texas and the u . s . the second  day targets advanced issues in the emerging marketplace and case studies  for practicioners . the training workshop will be held at the center for  executive development at the uh - cba . instructors are ms . dottie anderson  and mr . jim stanton , each with extensive experience in the power industry  and ercot implementation , and dr . michelle michot foss , director of the  energy institute ( see biographies , following workshop details ) . to  register , return the form below with your information . payment , or an  indication of payment , must be received by monday , february 28 . for more  information , contact energyinstitute @ uh . edu or telephone 713 - 743 - 4634 .  this workshop is appropriate for new and / or advanced professionals in  operations , trading , marketing , planning , public and regulatory affairs and  in related fields such as law and accounting .  new era in electric power value creation  energy institute  university of houston - - college of business administration  center for executive development facilities  melcher hall - - main campus  registration ( return by february 28 , 2000 with payment or indication of  payment )  workshop pricing :  full course , march 1 and 2 - - $ 950 per person ( government agencies and  nonprofits , $ 475 per person ) ; for groups of 3 or more from a single  organization , $ 900 per person ( $ 425 for government agencies and nonprofits )  advanced audiences , march 2 only - - $ 700 ( government agencies and  nonprofits , $ 350 ) ; for groups of 3 or more from a single organization , $ 650  per person ( $ 375 for government agencies and nonprofits )  fee includes all workshop materials , meals , refreshments and parking at  uh - cba . sorry , we do not accept credit card payment . lodging for  out - of - town participants is available at the university of houston hilton  hotel at your own cost . you may contact the hilton at 713 - 741 - 2447 for  reservation information .  name ( s ) and title ( s ) :  organization :  address :  telephone / fax / e - mail for contact :  total payment and form of payment :  ceu credit desired ( yes / no ) :  training workshop details  march 1 , 2000 - - principles  8 : 30 - 9 : 30 introduction and workshop overview  9 : 30 - 10 : 30 regulatory framework : national electricity reliability council  ( nerc ) , federal energy regulatory commission ( ferc ) , and electric  reliability council of texas ( ercot )  10 : 30 - 10 : 45 break  10 : 45 - 12 : 00 operational , marketing and trading basics  12 : 00 - 1 : 00 lunch  1 : 00 - 1 : 30 texas senate bill 7 overview  1 : 30 - 2 : 00 public utility commission ( puc ) - texas basic rule making  2 : 00 - 3 : 00 ercot independent system operator ( iso ) functions and governance  3 : 00 - 3 : 15 break  3 : 15 - 5 : 00 ercot issues by committee  * restructuring policy development  * ancillary services  * single control area  * settlement / registration  * congestion management  * standard interconnection agreement  5 : 00 - 6 : 30 social  march 2 - - advanced application  8 : 30 - 12 : 00 regional transmission organizations ( rtos ) and the ferc notice  of proposed rulemaking ( nopr )  future of isos  status of the nopr , public comments made  isos under development : ercot , midwest , desert star  12 : 00 - 1 : 00 lunch  1 : 00 - case studies  * changing electricity providers : town hall issues  bringing together the elements of regulatory activity , market power and  restructuring to the retail level , this exercise allows the participants to  make active decisions as our experimental \"\" town \"\" weighs the option of  separating from its traditional electricity provider and treading the  waters of competition . our group will assume roles centered around  \"\" regulators , \"\" \"\" power marketers , \"\" the present \"\" investor owned utility \"\" and  the \"\" town \"\" itself . a town meeting will be convened in which each entity is  allowed to present their issues in an effort to persuade municipal  decision - makers that theirs is the best option . embedded in the exercise is  the regulatory and operational framework that is built into the modules  leading up to this participatory segment . frequent references to the basic  materials provided to the workshop participants will be encouraged in the  process of moderating discussions that the workshop facilitators will  implement .  * congestion management  congestion management is one of the most critical components of ercot  implementation . a number of approaches exist for pricing electricity  during periods of high demand . each methodology bears important  consequences for both providors and customers . workshop participants will  participate in construction of a virtual transmission grid and experiment  with different methods of managing congestion .  4 : 00 re - cap , q & a  instructors  ms . dottie anderson  ms . anderson has over 19 years experience in the energy industry with  extensive experience in federal and state regulatory policy analysis and  advocacy on behalf of natural gas and electric companies . she is currently  president and managing principal of consulting firm specializing in policy  development and strategic analysis and planning for the electric and  natural gas industries . ms . anderson served as member of steering  committee responsible for coordinating the stakeholder process in the pjm  restructuring meetings and also actively participated in developing the  governance structure for pjm . she was a member of stakeholder group that  designed wholesale market rules for texas in 1996 and currently serves as  one of the power marketer segment representatives on the ercot technical  advisory committee and chair of the congestion management working group  developing a congestion management mechanism for use when texas begins its  retail access pilot in june 2001 . she has participated in ercot technical  advisory committees ad hoc committees on transmission adequacy and  possible impacts of future electric market changes on the independent  system operator and now involved in the broad - based stakeholder processes  to restructure markets in texas in response to legislation passed in may  1999 . she also is chair of nerc market interface committee a standing  committee addressing commercial business practices and standards in the  electric industry and their interface with reliability . in collaboration  with ercot iso staff , ms . anderson developed training seminar for  conducting business in ercot under the puct ' s open access transmission  rules and participated as a course instructor on the transition from nerc  to naero . she also participated as a course instructor in the annual ercot  iso operator training program . she participated as a member of government  interface issues task force , a group participating in nerc restructuring  process by addressing issues related to federal legislation and  participation by canada in a north american self - regulation reliability  organization . ms anderson is a certificated search conference manager by  new mexico state university for completion of training in designing and  managing search conferences and participative design workshops conducted by  dr . merrelyn emery , australian national university .  mr . jim stanton  mr . stanton has 15 years in the electric power industry , divided between  state agencies , investor owned utilities and power marketing . his  background in generation , transmission and systems operations has proven  valuable in the constantly changing world of power . combining a bs in  management with a working knowledge of the commercial electric power  business gives mr . stanton a unique view of the operational challenges of  the industry , and most especially , the people who make it work on a daily  basis . mr . stanton is a certified system operator in the southwest power  pool and with the north american reliability council . he is currently  involved with policy development in both ercot and the midwest independent  system operator .  dr . michelle michot foss  dr . michot foss has been an analyst of u . s . and foreign energy and non - fuel  resource development and environmental issues for nearly 21 years . she has  a particular focus on policy and regulatory frameworks for energy  commercialization and energy business enterprise strategy and firm / industry  structure . dr . michot foss has been involved extensively in research and  consulting on north american natural gas and electric power restructuring  and convergence and development of continental cross - border trade and  related issues . she is participating in ercot technical advisory committee  workshops and committee processes for sb 7 implementation . dr . michot foss  speaks and writes frequently on energy issues and energy sector  restructuring in north and south america , western europe , japan and other  world regions .  about the energy institute  the institute is engaged in business and public policy issues associated  with commercial energy development worldwide . major portfolio areas for  the institute are worldwide gas and power market development ( with emphasis  on north america , the northern andes , western europe , the black  sea / caucasus / caspian region and east asia ) , best practices in energy sector  reform , special topics in energy technology and markets and energy  commodity trading and marketing and the energy business enterprise of the  future . in addition , the institute provides research and training  initiatives in the u . s . , canada , mexico and latin america , china , the nis  region , and other countries and is developing both a non - degree  professional commercial practices program and an international training  program on oil and gas sector reform and commercial development . faculty  members are drawn from business administration , law , economics , geosciences  and engineering . the institute is underwritten by leading oil , gas and  electric power companies and consultancies . with the center for global  studies at the houston advanced research center , the institute published  the guide to electric power in texas as a public service for electric power  restructuring . the guide is recognized as one of the most widely used  resources by business and government participants .  * * * * * * * * * *  \"\" this e - mail contains information which is privileged , confidential and  protected  from disclosure . please do not disclose the contents or take copies without  contacting us first . thank you . \"\"  michelle michot foss , ph . d .  director , energy institute  college of business administration  university of houston  houston , tx 77204 - 6283  tel : 713 - 743 - 4634  fax : 713 - 743 - 4881  please note our new email addresses !  e - mail : mmfoss @ uh . edu  web : http : / / www . uh . edu / energyinstitute /  ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~  cba energy institute  university of houston  4800 calhoun , mh 320  houston , tx 77204 - 6283  ( 713 ) 743 - 4634  fx : ( 713 ) 743 - 4881  email : energyinstitute @ uh . edu  web : www . uh . edu / energyinstitute\",0\n\"Subject: north atlantic forecasts  update for fyi  also , highly recommend adding tony hamilton to the research group ,  cross - train him one month in houston , per our teleconference this am .  - - - mike  - - - - - - - - - - - - - - - - - - - - - - forwarded by mike a roberts / hou / ect on 01 / 26 / 2001  02 : 59 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron north america corp .  from : stephen bennett @ enron 01 / 26 / 2001 02 : 48 pm  to : mike a roberts / hou / ect @ ect  cc :  subject : north atlantic forecasts  mike . . .  in response to phil clifford ' s request - i have constructed webpage that  provides wind , wave , and storm information for the production and  tranportation areas of the north atlantic . i ' ve linked the site from the  research weather homepage to the european weather support page . here is the  link :  from here - follow the : \"\" north atlantic production / transport \"\" link . let ' s  see what customer feedback we get - and i will continue to investigate  further avenues  of support .  steve  stephen bennett  meteorologist - research  enron americas  ext . 5 - 3661\",0\n\"Subject: re : aiesec  dear mr . kaminski ,  we will be glad to have you with us this saturday for the mock sales day .  this event is part of our recruitment process . so far this semester the  recruitment has been very successful - we have 16 new members , compared to 10  experienced ones .  the next goal is to keep these people interested in what we do and build the  aieseec spirit in them . i hope that this saturday will greatly contribute to  that .  here is the schedule so far :  9 : 00 - 10 : 00 breakfast  10 : 00 - 12 : 00 sales training session  12 : 00 - 1 : 00 lunch break ( board of advisors and alumni coming )  1 : 00 - 3 : 30 practice sales calls  some details :  i don ' t have the training program finalized yet , but i ' m sure it will be  good . i have a teacher from uh program for excellence in selling and the  local committee president , tim , organizing it . it should be interactive and  motivating : ) . if you are interested you are more than welcome to come in  the morning and have fun with us .  i ' m inviting the board of advisors members and some alumni to join us at  noon . lunch will be provided . our members are cooking ! and it is a very  international crowd ! so far we have german meatballs , some venesuelan soup  ( don ' t remember the name , but it ' s supposed to be very good and a lot of it ) ,  spanish tortilla de patata and other international dishes .  the part when you would help is the practise sales calls . this is a way to  provide experience to our new members , we are inviting our board of advisors ,  alumni and everyone who is interested in aiesec to play as company  representatives . i will give you case scenarios , everyone will have an office  and the new members will have to \"\" sell \"\" aiesec to you . one of the goals of  the organization is to create as many exchange opportunities as possible , so  the new members will try to get you to sign a contract for taking an  international intern into your imaginary company .  i hope you find it interesting : ) .  directions to uh , college of business :  take i - 45 south , exit spur 5 , at the street light at the end of the freeway  take a right , at calhoun street light take a right again , the college of  business will be on your left hand side . park in the parking lot in front  ( you don ' t need a permit on the weekends ) .  please , let me know if you are coming and what time and i will make sure  someone will meet you at the entrance of the building .  thank you for your time ,  biliana  at 04 : 01 pm 2 / 2 / 00 - 0600 , you wrote :  >  >  > biliana ,  >  > i have prior commitments on saturday , february the 5 th . please , send me more  > information about the following saturday . there is a remote possibility i  shall  > have  > to go to london that weekend . otherwise , i shall be glad to join you .  >  > vince  >  >  >  >  >  >  > biliana pehlivanova on 01 / 28 / 2000  > 11 : 54 : 58 am  >  > to : vince j kaminski / hou / ect @ ect  > cc :  > subject : aiesec  >  >  >  > dear mr . kaminski ,  >  > the following are the personal and work e - mail addresses of the polish  > trainees in college station .  >  > sylwester rutkowski sylwesterr @ usa . net , sylwester . rutkowski @ destia . com  > patricia dalecka pdalecka @ hotmail . com , patrycia . dalecka @ destia . com  > danusia mas danusia . mas @ destia . com  > lidia olczyk lolczyk @ usa . net , lidia . olczyk @ destia . com  > robert lyczak rlyczak @ yahoo . com , robert . lyczak @ destia . com  >  > i would like to invite you to join us for a paintball game next saturday ,  > feb 5 th . the purpose of this event is to develop team building among our  > student members , board of advisors , and corporate clients .  >  > in addition , i would like to invite you to participate in our mock  > sales day on saturday , feb . 12 th . during this day , the new members will  > first receive training on aiesec sales / knowledge and then role play with our  > board of advisors and alumni acting as company  > representatives . sharing your aiesec and work experience would be a  > valuable contribution to our training program .  >  > i will get in touch with you regarding these events in the beginning of  > next week , as soon as i have the time and place finalized .  >  > i appreciate your interest in working with us .  >  > best regards ,  >  > biliana pehlivanova  > vice president of incoming exchange  > aiesec houston  >  >  >  >  >  >  >  >\",0\n\"Subject: re : charm conference call  jim ,  i was on vacation last week . i shall be out tuesday and wednesday .  what about a call next week ?  vince  james l bouillion  02 / 07 / 2001 09 : 32 am  to : vince j kaminski / hou / ect @ ect , kevin kindall / corp / enron @ enron , jonathan  davis / hou / ect @ ect , kate lucas / hou / ect @ ect  cc :  subject : charm conference call  please let me know what works for you . i have a meeting monday from 10 : 00  a . m . through lunch . please advise .  - - - - - - - - - - - - - - - - - - - - - - forwarded by james l bouillion / hou / ect on 02 / 07 / 2001  07 : 33 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" bertil olsson \"\" on 02 / 06 / 2001 10 : 37 : 21 am  to : james . l . bouillion @ enron . com  cc :  subject : charm conference call  carl and i are both available either monday 12 th or tuesday 13 th . we can do  either am or pm but would prefer am if possible . please let me know your  preference and i will set it up .  regards ,  bertil  the information in this email and in any attachments is confidential and  may be privileged . if you are not the intended recipient , please destroy  this message , delete any copies held on your systems and notify the sender  immediately . you should not retain , copy or use this email for any  purpose , nor disclose all or any part of its content to any other person .\",0\n\"Subject: in confidence : prc summary  hi vince  following our prc meeting yesterday , here are the high - level facts as i  presented them :  ben parsons , overall : satisfactory . good interpersonal skills , we have  questions on his quant abilities . reluctant to discuss / share his modelling  work , and that which i have seen has too many hand fixes to give me  confidence in his rigour . other enroncredit . com feedback indicates that he  is sometimes prepared to compromise quant analysis to keep the traders happy .  matthew williams , overall : excellent . superior quant skills , excellent  everywhere else . recommended for promotion to senior specialist .  kirstee hewitt , overall : excellent . a solid all - round performance , and a  huge workload . in recognition of the level of responsibility kirstee is  bearing i ' m recommending her for promotion to senior specialist .  sharad agnihotri , overall : excellent . superior quant skills , excellent  everywhere else . very self - directed and commercial - minded . already  operating at manager level in my opinion . flagged for promotion next  mid - year if performance continues at this level .  slava danilov , overall : excellent . superior quant skills , excellent  everywhere else . as a non - commercial - type quant he is hard to fault , but  will probably never work on a trading desk . already operating at manager  level in terms of his depth and rigour of analysis , and the extent to which  he is contributing to the team . flagged for promotion next mid - year if  performance continues at this level .  steve\",0\n\"Subject: exmar credit  john ,  bill bradford is on vacation . i passed your question regarding exmar credit  rating  to debbie brackett .  vince\",0\n\"Subject: martin jermakyan  hi there ,  i am favourably impressed by martin . i think he ' s an intelligent person  and understands the power industry . he has good ideas about  modeling various of things ( even though he thinks that  technical constraints are just technicalities and are easy to deal with ) .  please take note that he admitted he does not like to  write code ( he has / had someone else doing it for him ) .\",0\n\"Subject: tips  fyi - us inflation - linked bond  i can not replicate the nominal yield and inflation adjected cash flow  calculation from bloomberg . so i called the bond analytics group .  i got to the point that they admit that they have made mistakes in their  calculation , and promised to fix it .  once i got the issues settled , there will be a better us inflation model .  zimin\",0\n\"Subject: re : program attached ; march ny ro conference / participation  confirmation  lenos ,  thank you again for the invitation . i shall be glad  to attend and speak on the topic indicated in the program .  one correction : i am a vp .  thanks  vince  lenos trigeorgis on 01 / 01 / 2000 01 : 17 : 11 pm  to : gordon . sick @ rogroup . com  cc : gordon . sick @ rogroup . com ( bcc : vince j kaminski / hou / ect )  subject : program attached ; march ny ro conference / participation confirmation  the current version of the conference program is attached  please confirm your participation as speaker ( and confirm your presentation  title as listed on the attached conference program ) by next tuesday . the  program is about to be sent to the printers next week  please cc your reply also to gordon . sick @ rogroup . com  lenos  - nymarch 2000 conferencetimes . doc  lenos trigeorgis  professor of finance  university of cyprus  dept of business  75 kallipoleos , po box 20537  cy 1678 nicosia cyprus  tel : + 357 2 892261  fax : 339063\",0\n\"Subject: approval is overdue : access request for tony . hamilton @ enron . com  this request has been pending approval for 3 days and you are the  alternate . please click  approval to review and act upon this request .  request id : 000000000023619  approver : stinson . gibner @ enron . com  request create date : 3 / 14 / 01 11 : 00 : 28 am  requested for : tony . hamilton @ enron . com  resource name : \\ \\ enehou \\ houston \\ common \\ research - [ read / write ]  resource type : directory\",0\n\"Subject: dba administrator  michelle ,  the name of the db administrator for enpower is charlene fricker ,  5 - 3487 . alex will contact her regarding the access to the curve .  i think it ' s a problem many layers below gary hickerson ' s level  of responsibility and i hope we can handle it without using his valuable  time .  vince\",0\n\"Subject: re : enron opportunities  thanks vince . we will follow up with this lsu graduate .  hope you are doing well .  regards ,  lynn dunphy  vince j kaminski  02 / 15 / 2000 08 : 53 am  to : lynn dunphy / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : enron opportunities  lynn ,  i am forwarding you the resume of a very bright and motivated young man  who attended a lecture i gave recently at lsu .  i think we should consider him for an analyst position .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 15 / 2000  08 : 52 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" richard c . iles \"\" on 09 / 14 / 2000 11 : 14 : 56 am  please respond to \"\" richard c . iles \"\"  to :  cc :  subject : enron opportunities  dr . kaminski :  ?  here is my resume and cover letter .  ?  thanks ,  ?  richard iles  - enron cover and resume . doc\",0\n\"Subject: confirm participation at real options conference at cambridge  u . - urgent  the attached file contains the tentative program for two back - to - back real  options conferences ( a professional one for july 5 - 6 , and the standard  annual academic one for july 7 - 8 ) at cambridge u .  your name has been provisionally included on the program . please check all  the information relating to you and confirm your participation as listed  ( or advice us of desired changes immediately ) .  thank you .  lenos  - 4 thconfsessions . doc  lenos trigeorgis  professor of finance  university of cyprus  dept of business  75 kallipoleos , po box 20537  cy 1678 nicosia cyprus  tel : + 357 2 892261  fax : 339063\",0\n\"Subject: proposal  christie ,  thanks for helping out . attached is a one page \"\" intro \"\" to the project that  vince and i are undertaking . please let me know how you would like it  \"\" transformed \"\" before passing it along to the leadership at enron .  you have the basic story - - enron ' s leadership purposefully and very  successfully transformed the company . we plan to document in broad strokes  the \"\" plan \"\" as it was set out , and trace its evolution through the history  of enron ' s history . the final result will be a 20 - 40 page paper written in  the style of a harvard business review piece .  please let me know what else you may need . i ' ll put it together for you .  thanks again ,  john  - enronproposal . doc  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: request submitted : access request for tom . barkley @ enron . com  you have received this email because you are listed as an alternate data  approver . please click  approval to review and act upon this request .  request id : 000000000012677  approver : stinson . gibner @ enron . com  request create date : 1 / 8 / 01 2 : 30 : 03 pm  requested for : tom . barkley @ enron . com  resource name : \\ \\ enehou \\ houston \\ common \\ research - [ read / write ]  resource type : directory\",0\n\"Subject: agenda & pre - work for valuation visioning session  attached is a copy of the agenda for thursday ' s meeting . in preparation for  the meeting , please think about and be prepared to discuss what \"\" valuation \"\"  means to you in the systems you support or the job you do .  if you have any questions , feel free to contact me at 5 - 9353 .  thanks .  chris\",0\n\"Subject: re : summer internship  vince ,  i just wanted to tell you that i am looking forward to being there again and  thank you for giving me this opportunity to contribute and learn . official  starting dates ( as i was told by a vasant shanbhogue  > subject : re : summer internship  >  >  >  >  > cantekin ,  >  > the summer associate program has closed but i shall check to see  > if i can get one extra place .  >  > vince  >  >  >  >  >  >  > \"\" cantekin dincerler \"\" on 03 / 28 / 2000  > 11 : 48 : 53 am  >  > please respond to cantekin @ mail . utexas . edu  >  > to : vkamins @ ect . enron . com  > cc : ( bcc : vince j kaminski / hou / ect )  > subject : summer internship  >  >  >  > hi vince ,  >  > i am writing you at this time to inquire as to the potential  > of renewing my  > internship at enron for the summer of 2000 .  >  > while the date of my request is later than i would have  > wished , the reason  > is that i had originally planned to go back to turkey this  > summer and get  > my mandatory military duty done . however , i now realize i can  > put it off to  > a further date . that left me wondering if you believe there  > is a project  > that i can get involved in this summer and be useful . if that were the  > case , i would be more than happy to postpone my military duty  > and spend the  > summer with the research group . i discussed this with dr .  > ronn , and he is  > very supportive of this idea .  >  > i apologize again for bringing up this issue late , and look forward to  > hearing from you .  >  > best regards ,  >  > - - - - - - - - - oooo - - - - - oooo - - - - - - - - - -  > cantekin dincerler  >  > doctoral candidate  > the university of texas at austin  > graduate school of business  > department of finance  > office : ( 512 ) 471 - 1676  > fax : ( 512 ) 471 - 5073  > home : ( 512 ) 472 - 5356  > http : / / uts . cc . utexas . edu / ~ cantekin  > - - - - - - - - - - - - - oooo - - - - - oooo - - - - - - - - - -  >  >  >  >  >  >  >\",0\n\"Subject: model effort in houston  christian ,  our spring / fall window of \"\" ? nactivity \"\" is rapidly eluding us . . .  we need to get our internal model operational without delay .  along these lines , let ' s go ahead and plan your visit to houston as soon as possible ,  but by all means get you in at least 4 weeks before hurricane season .  that would mean the month of may looks good .  please inform me what duties you could not perform from here to support the sydney office ,  we ' ll figure out how to keep that office whole .  ( it ' s working without a hitch to have steve bennett in london , but continuing his houston duties )  if the first week in may ( for the whole month ) will work , please respond asap and we ' ll get housing arrangements finalized .  looking forward to your visit ,  - - - mike\",0\n\"Subject: re : visit to houston and vince kaminski ' s research group  vince - thanks for the note . i ' ll mention downtown for sure when making a  reservation .  shijie  on fri , 30 jun 2000 , vince j kaminski wrote :  >  >  > shijie ,  >  > a note : in both cases makes a reservation explicitly at a downtown hotel .  > there are hotels with the same names elsewhere in houston .  >  > vince  >  >  >  > - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 06 / 30 / 2000  02 : 44  > pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  >  >  > shirley crenshaw  > 06 / 30 / 2000 02 : 25 pm  >  > to : shijie deng @ enron  > cc : ( bcc : vince j kaminski / hou / ect )  > subject : re : visit to houston and vince kaminski ' s research group  ( document  > link : vince j kaminski )  >  > shijie :  >  > i spoke with vince and he said friday the 28 th of july would be fine for  > your visit to enron .  >  > please let me know your itinerary when you have it confirmed . there  > are two hotels downtown houston , the doubletree and the hyatt regency  > that are very close to the enron bldg .  >  > if you need help with anything , please let me know .  >  > look forward to having you at enron .  >  > regards ,  >  > shirley crenshaw  >  >  >  >  >  >  >  >  > shijie deng on 06 / 30 / 2000 10 : 15 : 43 am  >  > to : shirley crenshaw  > cc :  > subject : re : visit to houston and vince kaminski ' s research group  >  >  >  > shirley ,  >  > thank you for your message . i ' m fine with 7 / 28 ( friday ) . i could fly in  > to houston early evening on 7 / 27 . please let me know after you confirm  > the date with vince . thanks !  >  > shijie  >  > shi - jie deng  > assistant professor  > school of isye  > georgia institute of technology  >  > office phone : ( 404 ) 894 - 6519  > e - mail : deng @ isye . gatech . edu  > home page : http : / / www . isye . gatech . edu / ~ deng  >  > on fri , 30 jun 2000 , shirley crenshaw wrote :  >  > >  > >  > > good morning professor deng :  > >  > > i am vince kaminski ' s assistant and he has asked me to coordinate your  > > visit to enron . the last week in july would be best for vince and his  group .  > > especially the 24 th , 26 th , 27 th , or 28 th . tuesday , the 25 th is already  > filling  > > up . please let me know which day would work for you .  > >  > > best regards ,  > >  > > shirley crenshaw  > > administrative coordinator  > > enron corp . research group  > > 713 / 853 - 5290  > > email : shirley . crenshaw . com  > >  > >  > >  > >  > >  > >  > >  >  >  >  >  >  >  >  >\",0\n\"Subject: re : alex ' s article  vince ,  did you make any more corrections after stinson ? he sent me the file , i  removed the comments , and have put it on the page .  sam  vince j kaminski @ ect  06 / 26 / 2000 10 : 35 am  to : william smith / corp / enron @ enron  cc : vince j kaminski / hou / ect @ ect  subject : re : alex ' s article  sam ,  stinson ' s corrections are in red . mine are in magenta . remove  all redundant comments .  vince  enron north america corp .  from : william smith @ enron 06 / 26 / 2000 08 : 52 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : alex ' s article  vince ,  was alex ' s article okay to include in the newsletter ? i ' d like to use it  today unless you believe otherwise .  sam\",0\n\"Subject: reactions log - in password  http : / / www . reactionsnet . com  dear reactions subscriber ,  you are entitled to free access to the reactions website .  here is your username and password ( case sensitive ) to use this service . you  can use them to access the latest issue of reactions on the web whenever you  wish . you can also search the extensive archive of back issues and contact  us via email .  username = kaminski  password = 105006  web address = http : / / www . reactionsnet . com  please keep them in a safe place as you will need them every time you log on .  if you have any problems in logging on or using this site please feel free to  contact our dedicated help desk - telephone number + 44 ( 0 ) 20 7779 8006 or  email web - help @ eurmoneyplc . com\",0\n\"Subject: cme and catex  - - - - - - - - - - - - - - - - - - - - - - forwarded by joseph hrgovcic / hou / ect on 04 / 05 / 2000  04 : 06 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  lucy ortiz  04 / 05 / 2000 04 : 02 pm  to : joseph hrgovcic / hou / ect @ ect  cc :  subject : cme and catex  spotlight report  exchange products seeing slow trading  gavin souter  03 / 20 / 2000  business insurance  page 3  copyright ( c ) 2000 crain communications , inc . all rights  reserved .  exchange - based insurance products developed in recent years have  been somewhat slow to get off the ground .  although several exchanges have offered derivative contracts since  the mid - 1990 s to cover insurance risks , none so far has posted a  significant volume of trades .  few insurers , reinsurers or policyholders have been drawn away  from the traditional insurance markets , where capacity remains  abundant and relatively cheap .  as long as those traditional markets manage to weather major  natural catastrophes , the allure of the exchange - based products will  remain limited , observers say .  also stifling the growth of the exchange - based contracts is the  limited number of contracts available , one expert noted . dealers , he  said , are unable to secure a suitable hedge by laying off one  contract against another .  although the various exchanges have had a good opportunity to  establish a widely used set of new risk financing products , that has  not been achieved , said morton lane , senior managing director ,  capital markets division at gerling global financial products in  new york .  the main problem with the existing exchanges is that they do not  offer a sufficiently diverse array of products , he said . the only way  to control the risks in the catastrophe options is to have a diversified  portfolio of other contracts , and none of the exchanges currently  offers a sufficiently broad range of options to provide for that  hedge , he said .  florida windstorm options , for example , cannot be bought and then  hedged in the same way that international business machines corp .  stock options contracts can be hedged with ibm stock , mr . lane  explained .  the exchanges might be more attractive to investors if , in addition to  natural catastrophe options , they included options on other risks , he  said . those might include , for example , satellite , aviation and crop  indexes , mr . lane said . \"\" for the insurance buyer , such exchange  instruments would not represent the perfect risk transfer vehicle , but  as long as they are quantifiable and indexable , they may represent a  good surrogate , \"\" he said .  the exchanges could also be used to create a derivatives market for  over - the - counter securitized deals , if there are regular issuers of  catastrophe bonds , mr . lane said .  the soft insurance market has also hindered the growth of  exchange - based insurance products , said sean f . mooney , senior  vp and chief economist at guy carpenter & co . , the reinsurance  brokerage unit of marsh inc . in new york .  \"\" the traditional market has been so competitive that people are not  looking for other ways of doing business , \"\" he said .  at least in concept , the exchange - based deals are generally similar  to the mortgage - backed securities that have been a huge success  since they were introduced in the 1970 s . \"\" there is a belief that  alternative means of transferring risks will grow , but it is difficult to  predict when , \"\" mr . mooney said .  currently , the trading that is taking place typically involves  established insurers and reinsurers , so the exchanges have not  brought substantial new capacity to the marketplace , he said .  guy carpenter provided the index for the bermuda commodities  exchange reinsurance products . the bce did not take off ,  however , and was suspended last year after two years of little  activity .  the oldest of the insurance - related , exchange - based derivative  products are the catastrophe options traded on the chicago board  of trade , which began trading the options in 1996 .  initially , there was substantial interest in the options , but the soft  traditional market has hampered use of the contracts to hedge  catastrophe exposures , said carlton purty , an independent broker  at the cbot who trades in options .  no catastrophe option trades have been completed at the cbot  so far this year , he said . last year , there was increased interest in  the contracts because of hurricane floyd , but few contracts were  traded , mr . purty said .  \"\" i think a major , major catastrophe will have to happen before they  really take off , \"\" he said .  the contracts offer real protection , and options dealers are keen to  trade in a new niche , but the conventional insurance and reinsurance  markets are so soft that few companies are turning to alternative  coverage options , mr . purty said .  the catastrophe risk exchange , located in princeton , n . j . , has  radically changed its structure since it was originally announced in  mid - 1996 , and it is well positioned to expand , said frank sweeney ,  chief operating officer .  catex initially planned to be a computer - based facility for  reinsurers that would enable them to exchange catastrophe risks  and to build balanced portfolios .  but by the time the exchange was operational in november 1996 , it  was clear that most reinsurers and insurers interested in catex  wanted only to buy and sell conventional reinsurance , mr . sweeney  said .  although there was some interest in risk swapping , only a handful of  risks were posted on the system , and none was traded , mr .  sweeney said .  consequently , catex has become chiefly a \"\" cash for cover \"\"  exchange , he said , noting that the risks reinsured on the exchange  include property catastrophe coverage , aviation and liability  coverages . catex also trades industry loss warranties , where  coverage is triggered by an actual loss combined with an industry  loss over an agreed threshold .  other adjustments to the exchange included making it accessible  through the internet in november 1998 . and late last year , catex  offered users the ability to set up smaller networks , allowing them  form groups whose members do business only with one another .  since its inception , catex has completed about 450 trades ,  totaling $ 400 million in premium and more than $ 3 billion in limits ,  he said . catex ' s roughly 160 subscribers include reinsurers ,  insurers and corporate entities that purchase coverage through their  captives , mr . sweeney said .  \"\" we obviously have a long way to go , but we are pretty satisfied  with what we have achieved so far , \"\" mr . sweeney said .  the exchange sees increased activity after major losses , as cedents  seek to buy replacement coverage to offset depletions in their  existing cover , he said . for example , mr . sweeney said , there was  a flurry of activity after the european windstorms in december last  year .  last september , the chicago mercantile exchange entered the field  of insurance - related derivatives when it began offering weather  derivatives .  thus far , 420 futures contracts have been traded , said larry  grannan , senior director in product marketing at the cme .  such contracts are designed to allow businesses to hedge against  weather - related losses . for example , a utility may sell less power in  a mild winter , and it would be able to use the futures to hedge a  resultant fall in revenues .  the exchange first offered heat - based indexes for atlanta , chicago ,  cincinnati and new york . in january , it added philadelphia , dallas ,  des moines , las vegas , tucson and portland , and it began offering  contracts based on cold weather .  currently , most of the trades are between securities dealers  themselves , but , eventually , the contracts will likely be used more  extensively by utilities and insurers , mr . grannan said .  in addition , the futures contracts could be used as hedges for  over - the - counter securitized deals , he said .  copyright , 2000 dow jones & company , inc . all rights reserved .\",0\n\"Subject: re : cusip  vince , i am waiting to hear back from our compliance department on this . i  will get you the info as soon as i rec . it . i mailed the receipt for the  deposit today .  david c . walkup  sr . financial consultant  713 - 658 - 1685  800 - 456 - 9712  > - - - - - - - - - -  > from : vince . j . kaminski @ enron . com [ smtp : vince . j . kaminski @ enron . com ]  > sent : tuesday , december 19 , 2000 11 : 09 am  > to : david _ walkup @ ml . com  > cc : vince . j . kaminski @ enron . com  > subject : cusip  >  > david ,  >  > the cusip of the bond i have is 694308 efo  > pgc 8 . 375 % 5 / 1 / 25 lst & ref mortgage bond , ser 92 b .  >  >  > vince  >  >  caution : electronic mail sent through the internet is not secure and could  be intercepted by a third party . for your protection , avoid sending  identifying information , such as account , social security or card numbers to  us or others . further , do not send time - sensitive , action - oriented  messages , such as transaction orders , fund transfer instructions , or check  stop payments , as it is our policy not to accept such items electronicall\",0\n\"Subject: re : hotel for the wharton trip  i ' m not sure i ' m going to make it to phila because of prc . i will advise  next week . also , can you tell me paula ' s last name that we rode with the  other day when you all took me to the airport ? thanks .  vince j kaminski  11 / 20 / 2000 04 : 34 pm  to : jennifer burns / hou / ect @ ect  cc : jeffrey a shankman / hou / ect @ ect , vince j kaminski / hou / ect @ ect ,  piazzet @ wharton . upenn . edu  subject : hotel for the wharton trip  jennifer ,  this is the address of the hotel within a walking distance to the wharton  school .  please , make the reservation for jeff shankman at this hotel for the december  the 6 th meeting .  vince kaminski  http : / / www . innatpenn . com / contact . html  the inn at penn  sansom common , 3600 sansom street  philadelphia , pa . 19104  phone : 1 - 800 - 809 - 7001  fax : 215 - 222 - 4600  please , mention that the stay is related to the university business  when making the reservation .  tom piazze at wharton can confirm it .  tom piazze  phone : ( 215 ) 898 1615  piazzet @ wharton . upenn . edu\",0\n\"Subject: confirmation of your order  this is an automatic confirmation of the request you have placed using it  central .  request number : ecth - 4 usr 8 v  order for : anita dupont  1 x ( standard desktop $ 905 ) enron it purchasing  * please send all status inquiries regarding this request to :  mailto : receiving & hardware @ enron . com\",0\n\"Subject: re : e - mail address chnage  thanks for your message , your account has been updated .  should you wish to make any changes to your personal account on www . cera . com ,  go to :  http : / / www . cera . com / cfm / edit / account . cfm  sincerely ,  cera webmaster  - - - - - original message - - - - -  from : vince j kaminski [ mailto : vince . j . kaminski @ enron . com ]  sent : monday , march 27 , 2000 9 : 59 am  to : webmaster @ cera . com  cc : vince j kaminski  subject : e - mail address chnage  to all whom it may concern :  please change my e - mail address from  vkamins @ ect . enron . com  to  vkamins @ enron . com  vincent kaminski\",0\n\"Subject: re : enron tiger kick off  donna ,  jeff shankman will join me for the kickoff .  we would like to invite the students and faculty members to dinner ,  following the presentation .  any recommendations regarding the restaurant ?  vince  fap on 11 / 08 / 2000 12 : 15 : 10 pm  to :  cc : weigelt , \"\" ' kemallor @ wharton . upenn . edu ' \"\"  , thomas ,  \"\" ' vkamins @ enron . com ' \"\"  subject : enron tiger kick off  tiger team hosts , faculty , students and teaching assistants :  this is to confirm the date , time and location for the upcoming tiger team  kick - off .  the enron project date will be wed . , dec 6 at vh 210 from 3 : 00 - 5 : 00 pm .  the purpose of the kick - off meeting is for the teams , faculty , ta ' s and  hosts to meet , learn more about the hosting organization and to further  discuss the project .  for hosts who may need a campus map , please see  http : / / www . upenn . edu / fm / map . html  from the 30 th street train station , it is a quick taxi ride to spruce st and  37 th st .  the inn at penn , a new hotel , is one block from campus , if lodging is  necessary . the phone number there is 215 . 222 . 0200 . please mention you will  be at penn for business .  the address is :  the inn at penn  sansom common  3600 sansom street  philadelphia , pa 19104  hosts , please let me know the names and titles of those representatives who  will be attending the kick - off . also , let me know if you will need  technology ( laptop for ppt or overhead for slides ) for presentation  purposes .  if you have any questions , please feel free to contact me .  sincerely ,  donna piazze  program director  field application project  the wharton school  univ . of pennsylvania  ( 215 ) 573 - 8394  ( 215 ) 573 - 5727 fax  fap @ management . wharton . upenn . edu  piazze @ wharton . upenn . edu\",0\n\"Subject: re : lance cunningham  discussions with lance during his hire were intended to have lance start  prior to bonus and merit eligibility . therefore , lance accepted the position  under the impression he would be eligible for both bonus and merit .  kari oquinn  01 / 25 / 2001 10 : 45 pm  to : norma villarreal / hou / ect @ ect  cc :  subject : lance cunningham  lance cunningham , mgr , hired 10 / 2 / 00 , rated \"\" satisfactory \"\" has a $ 5 k ( 5 . 55 % )  equity inc indicated in gcs . please give more detail . i realize he was  rated ; however , he was hired after 10 / 1 and his rating is sat .\",0\n\"Subject: re : prc meeting date  anne ,  thanks . shirley is checking my calendar and will call you about the schedule .  the entire week of the 11 th does not look good for me .  vince  from : anne labbe / enron @ enronxgate on 04 / 30 / 2001 11 : 17 am  to : vince j kaminski / hou / ect @ ect  cc : shirley crenshaw / houston / eott @ eott  subject : prc meeting date  vince ,  just wanted to check with you to see if you have a preference as to when you would like to have your mid - year prc meeting . if you and your team are available , i would prefer to have it on either june 12 th , 13 th or 14 th . i am very flexible though , so please just let me know so that i can start making the necessary accommodations .  thanks ,  anne\",0\n\"Subject: e - mail addresses of nevrl video conference participants  following are email addresses of all who participated in the video conference  july 27 th for future reference .  enron corp . arthur andersen  steve kean - skean @ enron . com  victor . a . burk @ us . arthurandersen . com  vince kaminski - vkamins @ enron . com  angela . a . minas @ us . arthurandersen . com  amy oberg - aoberg @ enron . com  marie hejka - mhejka @ enron . com  edward . j . giniat @ us . arthurandersen . com  barry . d . libert @ us . arthurandersen . com  james . w . petrie . jr @ us . arthurandersen . com  george . e . kronman @ us . arthurandersen . com  allan . roberts @ arthurandersen . com  * * * * * * * * * * * * * * * * * * * internet email confidentiality footer * * * * * * * * * * * * * * * * * * *  privileged / confidential information may be contained in this message . if you  are not the addressee indicated in this message ( or responsible for delivery  of  the message to such person ) , you may not copy or deliver this message to  anyone .  in such case , you should destroy this message and kindly notify the sender by  reply email . please advise immediately if you or your employer do not consent  to  internet email for messages of this kind . opinions , conclusions and other  information in this message that do not relate to the official business of my  firm shall be understood as neither given nor endorsed by it .\",0\n\"Subject: re : recommendation for john gordon  vince ,  thanks for your quick action on this . i try to be selective about sending  out recommendations proactively , but in john ' s case i am very confident that  he will add a lot of value to whoever hires him . on a different topic i was  pleased to see that you will also be on the eprm program again in the fall .  duane  - - on monday , may 15 , 2000 , 9 : 28 am - 0500 \"\" vince j kaminski \"\"  wrote :  >  >  > celeste ,  >  > i am forwarding you a letter from prof . duane seppi from carnegie mellon  > university .  > i have known duane for many years and i know that he does not make his  > recommendations without very good reasons .  >  > i would recommend looking at john gordon as a very strong candidate :  > i think he will make a terrific contribution to enron .  >  >  > vince  >  > - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 05 / 15 / 2000  09 : 25  > am - - - - - - - - - - - - - - - - - - - - - - - - - - -  >  >  > ds 64 @ maill . andrew . cmu . edu on 05 / 12 / 2000 01 : 30 : 14 pm  >  > to : vince j kaminski / hou / ect @ ect  > cc :  > subject : recommendation for john gordon  >  >  >  > dear vince ,  >  > i am writing to bring to your attention a gsia student , john gordon , who  is  > currently being considered for enron ' s associates program . my  understanding  > is that mark courtney and andrew miles at enron are championing john as a  > late addition to the program .  >  > while i know enron doesn ' t routinely recruit at gsia , john would be an  ideal  > candidate if you are willing to make an exception . he is a terrific  finance  > student with a strong transcript ; including an a + in my options class .  since  > john has an engineering / energy background , he asked early on for  additional  > background reading about finance and energy . john is personable and  > outgoing . normally the job market for someone of john ' s caliber would  have  > already cleared , but i have been told that there are dual career issues at  > play here .  >  > i would be very appreciative if you would take a look at john . a copy of  > his resume is attached to this email .  >  > best regards ,  > duane  >  > * * * * * * * *  > duane seppi  >  > graduate school of industrial administration  > carnegie mellon university  > pittsburgh pa 15213 - 3890  >  > tel . ( 412 ) 268 - 2298  > fax ( 412 ) 268 - 8896  >  > email ds 64 @ andrew . cmu . edu  >  * * * * * * * *  duane seppi  graduate school of industrial administration  carnegie mellon university  pittsburgh pa 15213 - 3890  tel . ( 412 ) 268 - 2298  fax ( 412 ) 268 - 8896  email ds 64 + @ andrew . cmu . edu\",0\n\"Subject: interview with enron corp . research group  good afternoon mr . ball :  the enron corp . research group would like to conduct an informal interview  with you at your convenience . please give me some dates and times within  the next 2 weeks that you might be available and i will arrange the schedule .  the people that will be interviewing you are :  vince kaminski managing director  stinson gibner vice president  grant masson vice president  vasant shanbhogue vice president  krishna krishnarao director  zimin lu director  tanya tamarchenko manager  alex huang manager  each individual interview will last approximately 15 - 20 minutes , so we  probably  should allow at least 3 hours .  if you would prefer to call me with some dates and times - i can check  the calendars while we are talking .  look forward to hearing from you .  thank you .  shirley crenshaw  administrative coordinator  research group  713 / 853 - 5290\",0\n\"Subject: term papers  team ,  can you resend your text document to vince asap .  we could open your spreadsheet ok , but not the document .  vince ' s contact information is on the attached email below .  thanks  jason  - - - - - - - - - - - - - - - - - - - - - - forwarded by jason sokolov / hou / ect on 05 / 04 / 2001 05 : 32  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  05 / 04 / 2001 05 : 29 pm  to : monfan @ rice . edu  cc : vkaminski @ aol . com , jason sokolov / hou / ect @ ect , vince j  kaminski / hou / ect @ ect  subject : term papers  felix ,  please , resend me the term papers of your group , each as a separate file .  please send it to my aol address as well as work address .  my aol address is vkaminski @ aol . com  my home phone number is 281 367 5377 .  vince\",0\n\"Subject: re : interview  steve ,  i submitted my evaluation . general impression was rather  negative : he seems to be a consultant type person  who speaks about everything with confidence but is short on depth  and technical details .  he is personable , outspoken , organized - on the positive  side .  also , the red flag is that he jumps from job to job : typical after  18 - 24 months when any organization can ascertain his usefulness .  vince  from : stephen stock / enron @ enronxgate on 04 / 17 / 2001 01 : 03 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : interview  hi vince ,  what did you think of david hsu ?  my thoughts .  overall a good guy . personable . intelligent .  he could communicate reasonably well , but seemed to be capable of losing  objectivity in favour of technical advancement .  he didn ' t seem comfortable with taking a man - management role ( at least he  didn ' t want to be an ' administrator ' )  he appeared to know a lot about risk . ( in fact jay web called me to say he  felt david was one of the better risk guys he had seen but also commented  that he needed to be coupled with a project manager to be successfull ) .  regards  steve\",0\n\"Subject: re : thanks !  karin ,  i talked to mike roberts ( the head of the whole weather team ) , and he is  saying that all expenses for tony should be charged to global products team .  this is agreed between vince and jeff shankman .  mike and vince are negotiating with john to put stephen ( or somebody who will  replace him ) to some other cost centres ( via research ) .  it looks like kevin moore is happy if stephen is charged to the same cost  centre as tony .  let us right now charge tony and stephen to the cost centre below .  please , could we charge them separately - when john and vince make their  decision , we should be able to re - charge .  many thanks ,  slava  enron capital & trade resources  canada corp .  from : karin ahamer @ enron 18 / 04 / 2001 15 : 06  to : tani nath / lon / ect @ ect , viacheslav danilov / lon / ect @ ect  cc :  subject : re : thanks !  tani / slava  could you please let me know which costcentre i can bill for any charges  relating to tony and stephen .  thx karin  - - - - - - - - - - - - - - - - - - - - - - forwarded by karin ahamer / eu / enron on 18 / 04 / 2001 15 : 04  - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron capital & trade resources corp .  from : stephen bennett 18 / 04 / 2001 12 : 14  to : karin ahamer / eu / enron @ enron  cc :  subject : re : thanks !  - - - - - - - - - - - - - - - - - - - - - - forwarded by stephen bennett / na / enron on 04 / 18 / 2001  06 : 11 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  kevin g moore @ ect  04 / 18 / 2001 06 : 11 am  to : stephen bennett / na / enron @ enron  cc :  subject : re : thanks !  r . c . 107043  co . # 0413  stephen , all charges for soft ware that you use in london  should be charged to the same cost center as tony hamilton ,  reason being , is that someone will replace you in that position .  thanks  kevin moore  enron north america corp .  from : stephen bennett @ enron 04 / 18 / 2001 05 : 08 am  to : karin ahamer / eu / enron @ enron  cc : kevin g moore / hou / ect @ ect  subject : re : thanks !  you can cost it to my group in houston . kevin moore has the proper number  enron capital & trade resources  canada corp .  from : karin ahamer 04 / 18 / 2001 05 : 06 am  to : kevin g moore / hou / ect @ ect  cc : tony hamilton / eu / enron @ enron , mike a roberts / hou / ect @ ect , stephen  bennett / na / enron @ enron , tani nath / lon / ect @ ect  subject : re : thanks !  kevin  do you know whose costcentre the microsoft frontpage is supposed to go on ?  thx karin  enron capital & trade resources corp .  from : stephen bennett 18 / 04 / 2001 10 : 10  to : karin ahamer / eu / enron @ enron  cc : kevin g moore / hou / ect @ ect , tony hamilton / eu / enron @ enron , mike a  roberts / hou / ect @ ect  subject : thanks !  hi karin . . .  i hope you had a splendid holiday ! i wanted to thank you for getting tony  and i set up here last week . we seem to have established a steady daily  routine and are supporting several different trading groups in london as well  as continuing our daily support of traders in houston . we ' ve gotten far more  requests for information than we expected , so as a result i will be remaining  in london a little longer than originally expected . as of now - i ' m not sure  exactly when i ' ll be going back to houston - but vince has let me know that i  will remain here as long as necessary to ensure adequate daily weather  support for the london traders .  to that end - i think i will need one additional piece of software installed  on the machine that i will be using on a regular basis . could i please get  microsoft frontpage installed as soon as we can get it ?  that leads to the second issue of desks . i know that space is a premium here  - and i understand that i may need to move around some as a result . i  certainly want keep things as simple as possible for everyone - but i also  wanted to make sure that you know that there are certain applications that  are essential for the daily trader support in london and houston . as such ,  if i move , we will need to make sure that these applications are available  from the beginning of the day ( we start about 0600 ) . the applications are :  1 ) adobe acrobat - full version  2 ) accuweather for windows - ( this is something i will need to install )  3 ) microsoft front page  4 ) terminal server  5 ) the full ms office software package  one idea would be to have a pc move with me - that way we would not need to  reinstall this software which could cause problems with the daily support  routine .  thanks again for all of your help . i will let you know - once i know - how  long i will be here . i should hear something from vince over the next few  days giving me an idea .  cheers ,  steve  stephen bennett  senior meteorologist  enron research  temporarily in london : ext 3 - 4761  otherwise : ( 713 ) 345 - 3661\",0\n\"Subject: re : interview with the enron research group - reply  mark :  while we are anxious to fill this position , we certainly understand  scheduling  conflicts ! please let us know as soon as you have a definate time .  dr . kaminski will be out of the office the next two weeks also . maybe the  week  of the 30 th or the 6 th of november ?  look forward to hearing from you .  sincerely ,  shirley crenshaw  mark . giancola @ do . treas . gov on 10 / 13 / 2000 08 : 47 : 57 am  to : shirley . crenshaw @ enron . com  cc :  subject : interview with the enron research group - reply  date : 10 / 13 / 2000 09 : 42 am ( friday )  from : mark giancola  to : ex . mail ( \"\" shirley . crenshaw @ enron . com \"\" )  subject : interview with the enron research group - reply  thanks for your message . our e - mail system was down all day  yesterday so i was not able to respond until today .  i am very interested in coming in for an interview . unfortunately , my  schedule will make traveling on a weekday difficult for at least the next  two weeks . i am travelling as part of the us delegation to the g - 20 on  the 24 th and 25 th and will be busy until then in preparation . immediately  following that trip i will be moving to a new office here in treasury and  am not sure about my schedule .  i would like to wait until next week when i have a better idea of my  schedule to propose times to come to houston . please let me know if  there are time constraints on your side .  thanks ,  mark giancola  > > > ex . mail . \"\" shirley . crenshaw @ enron . com \"\" 10 / 12 / 00 09 : 06 am > > >  good morning mr . giancola :  your resume was forwarded to vince kaminski , managing director and  head of research with enron .  we would like to bring you in for an informal interview at your  convenience .  this would be for a position of \"\" economist \"\" or \"\" associate economist \"\" ,  reporting to maureen raymond castaneda .  please give me some dates and times that would be convenient with you  and i will have our hr rep contact you to schedule your coming to  houston .  i look forward to hearing from you .  sincerely ,  shirley crenshaw  administrative coordinator  enron research group  713 - 853 - 5290\",0\n\"Subject: re : my son  kristin ,  i think that we have done enough for this guy . all we can do is to give  somebody a chance .  the god helps those who help themselves .  thanks for all your help and your efforts .  vince  kristin gandy @ enron  11 / 01 / 2000 03 : 19 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : my son  vince ,  i left a message with one of yaron ' s roommates on thursday afternoon for him  to call asap for an interview on sunday . i guess he took the wrong number  down but i do not understand this because the roommate read the number back  to me and it was correct . when i did not hear from yaron i called on friday  and left a voice mail with my cell and office numbers . i still did not hear  from him and called again yesterday morning . i finally received a call at 4  pm yesterday but by that time my team and myself were half way back to  houston . sorry it did not work out . i have a call into charlene jackson as  to how she wants me to proceed and i will get back with you .  kristin  vince j kaminski @ ect  11 / 01 / 2000 08 : 40 am  to : john goodpasture / ots / enron @ enron , kristin gandy / na / enron @ enron  cc :  subject : my son  fyi  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 11 / 01 / 2000  08 : 47 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" shmuel oren \"\" on 10 / 31 / 2000 02 : 27 : 18 pm  to :  cc :  subject : my son  vince  apparently the recruiter spoke to one of my son ' s roommates and left a phone  number ( 713 ) 343 - 3214 which he tried several times and got busy signals .  today she called just before you called me and left her cellphone number but  he was in classes all morning and got the message in the afternoon . i really  appreciate your going out of your ? way to help . perhaps there will be another  opportunity . ?  shmuel ?\",0\n\"Subject: \"\" help millions \"\" - pledge today !  thank you for attending one of the executive breakfasts held at depelchin  children \u0001 , s center this week . seeing is believing . i hope you enjoyed seeing  first hand how the dollars you give really do make a difference .  as was mentioned in the breakfasts , it is very easy to make your contribution  this year by simply clicking on the united way link ,  http : / / unitedway . enron . com or go directly to internet explorer or netscape  and type in unitedway . enron . com in the address field . either option should  take you directly to enron \u0001 , s united way 2000 campaign site . pledge cards  will not be distributed this year , so please make your pledge electronically  - it only takes minutes !  please call me at 713 / 853 - 3264 if you have questions or have any difficulties  at all accessing the site .  thanks again ! your participation is important to the success of the campaign .\",0\n\"Subject: message 4  dear dr . kaminski ,  this is a message of discussing the problem in lacima ' s paper . i think that  glen dixon has told you there is a fault in the paper written by dr . clewlow  and dr . strickland . it is understandable to have some errors in their work .  people always make mistakes .  actually , i found the problem in appendix a of their paper . they can ' t prove  the eq . a 4 rigorously . there is something wrong in mathematical  interpretation . if you like , i can give you a full analysis of this problem .  ps : attached with their paper .  best regard  quentin  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  quentin kerr , email : qkerr @ maths . uq . edu . au  room : 67 - 622 tel : ( 07 ) 33461428  department of mathematics , the university of queensland  - energy _ single _ factor . zip\",0\n\"Subject: sevil yamin  vince ,  do you want me to do this , or vasant ?  - - stinson  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 04 / 10 / 2001 02 : 57 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : anne labbe / enron @ enronxgate on 04 / 06 / 2001 09 : 57 am  to : stinson gibner / hou / ect @ ect  cc :  subject : sevil yamin  stinson ,  i am the new hr generalist for the research group because norma villarreal is moving to business analysis and reporting . earlier this week , norma and i met with vince , and he said that he was going to talk to you about writing up a list of sevil ' s projects / accomplishments for last year and this year , so that we can give her a project bonus since she did not receive a bonus during the normal prc time . at your earliest convenience , will you please email me this list so that i can get started putting together all of the paperwork so that she can receive a check on april 16 th .  if you have any questions , please feel free to contact me at 5 - 7809 . i look forward to meeting you , and the rest of the group next week at vince ' s staff meeting .  thanks ,  anne labbe '\",0\n\"Subject: vince kaminski  good morning mr . bandini :  i am dr . kaminski ' s assistant and he has asked me to forward a copy of  his \"\" bio \"\" and the following information to you .  dr . kaminski ' s email address : vkamins @ enron . com  telephone number : 713 / 853 - 3848  thank you for your interest .  sincerely ,  shirley crenshaw  administrative coordinator  enron corp . research  713 / 853 - 5290  email : scrensh @ enron . com\",0\n\"Subject: re : bullet points  please respond to hi vince ,  thanks for the bullets . regarding power 2001 , it certainly does promise to  be a very interesting event .  have a great week ,  paul  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : monday , april 09 , 2001 9 : 11 am  to : pbristow @ riskwaters . com  cc : vince . j . kaminski @ enron . com ; vkaminski @ aol . com  subject : bullet points  paul ,  i am sending you modified bullet points . the modifications are in red .  apologies for a delay in responding to your messages .  by the way , power 2001 gets only more and more interesting every day .  vince  ( see attached file : financial maths draft . doc )\",0\n\"Subject: technical corner  for when you return . . .  sam  - - - - - - - - - - - - - - - - - - - - - - forwarded by william smith / corp / enron on 09 / 11 / 2000  07 : 11 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  giuseppe _ paleologo @ enron . net on 09 / 08 / 2000 05 : 00 : 17 pm  to : william . smith @ enron . com  cc :  subject : technical corner  hi will ( or sam ) ! i hope you had a good weekend ! the probability of the car  being blue should be . . . . hemmm . . . . let ' s see . . . . 41 . 38 % ? ? ?  by the way , do you know of any book on the collapse of ltcm ?  ciao ,  giuseppe\",0\n\"Subject: new volatility curve generator for uk power  we have established a set of power volatility curves down to the efa / monthly  level of detail that can be marked to market up to 6 years out . beyond this ,  the volatility decays to what we understand to be the long - term level for  power volatility , given our understanding of the behaviour of forward prices  over large time - scales .  the swaption traders can now fit the first 5 - 6 years of the volatility curve  to the market - observed baseload swaption implied volatilities ( typically 3 to  12 months duration for the underlying swap ) and then be in a good position to  price other swaptions ( including swaptions on individual efa slots )  consistent with the curve . there may also be an impact on the daily var  calculation .  an illustration of the current volatility curves is pasted below : -  these curves will be reset as the market moves , and allow a mark - to - market  approach to be followed for our volatility book . the spreadsheet model is  saved in t : \\ readwrte \\ elec _ uk \\ models \\ . xls and also  attached below for houston staff to review .  [ stinson - i ' d be grateful if you could offer an opinion / audit to ensure that  i haven ' t missed anything , thanks . ]  regards ,  anjam  x 35383\",0\n\"Subject: interview with enron corp .  good morning mr . parsons :  the enron corp . research dept . would like to conduct a telephone  interview with you at your convenience .  the interviewers would be :  vince kaminski managing director  p . v . krishnarao director  osman sezgen manager  please give me some dates and times either this week or july 5 , 6 & 7  of next week that you would be available and i will coordinate the  calendars .  look forward to hearing from you .  regards ,  shirley crenshaw  administrative coordinator  enron corp . research  713 / 853 - 5290  email : shirley . crenshaw @ enron . com\",0\n\"Subject: re : resume from a neural networks zealot  celeste ,  we can use this guy as a help for enron broad band svc ' s .  we are getting many projects in this area .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 24 / 2000  07 : 38 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  konstantin mardanov on 01 / 24 / 2000 12 : 06 : 42 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : resume from a neural networks zealot  on wed , 20 oct 1999 , vince j kaminski wrote :  > konstantin ,  >  > i am sending your resume to the analyst / associate program  > with the recommendation to accept you as an intern in my group .  >  > vince  dear dr . kaminski ,  it has been a long time since i contacted you so i was wondering if  my resume had been considered for an internship in your group .  i will appreciate it very much if you let me know when i should expect  to learn about a decision on the issue .  thank you for you time .  sincerely ,  konstantin .  konstantin mardanov  department of physics , | 5012 duval st , apt . 206  university of texas @ austin , | austin , tx 78751 , u . s . a .  rlm 7 . 316 , austin , tx 78712 |  u . s . a . | phone : 001 ( 512 ) 374 - 1097  e - mail : mardanov @ physics . utexas . edu  url ( almost obsolete ) : http : / / www . niif . spb . su / ~ mardanov  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\",0\n\"Subject: cameron payne  vince , congratulations on your promotion . hope the litigation lawyers are  leaving you alone .  i ' m attaching a resume of a friend of mine , cameron payne . i don ' t know if  you are looking for anyone but cameron is pretty special , as you ' ll see from  his resume . call him or me if you ' re interested in talking to him . i ' m  forwarding his resume to fastow and whalley , too , in case they see a fit .  take care . bob\",0\n\"Subject: re : summer internship  cantekin ,  the summer associate program has closed but i shall check to see  if i can get one extra place .  vince  \"\" cantekin dincerler \"\" on 03 / 28 / 2000 11 : 48 : 53 am  please respond to cantekin @ mail . utexas . edu  to : vkamins @ ect . enron . com  cc : ( bcc : vince j kaminski / hou / ect )  subject : summer internship  hi vince ,  i am writing you at this time to inquire as to the potential of renewing my  internship at enron for the summer of 2000 .  while the date of my request is later than i would have wished , the reason  is that i had originally planned to go back to turkey this summer and get  my mandatory military duty done . however , i now realize i can put it off to  a further date . that left me wondering if you believe there is a project  that i can get involved in this summer and be useful . if that were the  case , i would be more than happy to postpone my military duty and spend the  summer with the research group . i discussed this with dr . ronn , and he is  very supportive of this idea .  i apologize again for bringing up this issue late , and look forward to  hearing from you .  best regards ,  - - - - - - - - - oooo - - - - - oooo - - - - - - - - - -  cantekin dincerler  doctoral candidate  the university of texas at austin  graduate school of business  department of finance  office : ( 512 ) 471 - 1676  fax : ( 512 ) 471 - 5073  home : ( 512 ) 472 - 5356  http : / / uts . cc . utexas . edu / ~ cantekin  - - - - - - - - - - - - - oooo - - - - - oooo - - - - - - - - - -\",0\n\"Subject: candidate evaluation , wendi germani  please complete the attached form and also let me know if you have an  interest in proceeding with wendi .  thanks !  pam\",0\n\"Subject: copiers on 19  hi iain :  got a questions for you ? we have a small copier in our research area  ( a minolta cspro ) that stays on the blink somewhere , quite a bit of the  time . the temporary copier in 19 kl is a kodak image source 50 . what  is the difference in price of these two copiers ? is there any way we could  exchange the minolta for the image source when you bring our permanent  copier to 19 kl ?  please let me know . we would like to do that if we can and it is not too much  more money .  thanks and have a great day !  shirley  3 - 5290\",0\n\"Subject: summer internship  hi vince ,  i am writing you at this time to inquire as to the potential of renewing my  internship at enron for the summer of 2000 .  while the date of my request is later than i would have wished , the reason  is that i had originally planned to go back to turkey this summer and get  my mandatory military duty done . however , i now realize i can put it off to  a further date . that left me wondering if you believe there is a project  that i can get involved in this summer and be useful . if that were the  case , i would be more than happy to postpone my military duty and spend the  summer with the research group . i discussed this with dr . ronn , and he is  very supportive of this idea .  i apologize again for bringing up this issue late , and look forward to  hearing from you .  best regards ,  - - - - - - - - - oooo - - - - - oooo - - - - - - - - - -  cantekin dincerler  doctoral candidate  the university of texas at austin  graduate school of business  department of finance  office : ( 512 ) 471 - 1676  fax : ( 512 ) 471 - 5073  home : ( 512 ) 472 - 5356  http : / / uts . cc . utexas . edu / ~ cantekin  - - - - - - - - - - - - - oooo - - - - - oooo - - - - - - - - - -\",0\n\"Subject: energy : oil drilling : survey finds producers plan to spend more  than originally planned in . . .  survey finds producers plan to spend more than originally planned in 2000  06 / 19 / 2000  petroleum finance week  ( c ) 2000 phillips business information , inc .  oil and gas producers plan to increase their worldwide exploration and  production expenditures by more than they anticipated  at the beginning of the year , lehman brothers inc . found in a mid - year  update of its annual e & p survey . \"\" the 326 companies  we surveyed are planning on an 18 . 2 percent increase , versus a 10 . 2 percent  rise budgeted in december , \"\" said james d .  crandell , who follows oil services and drilling for the new york investment  banker .  he emphasized that the gain by the 326 producers in lehman ' s survey reflects  increases in budgets for 2000 and not  underspending of budgets during 1999 . \"\" among the companies that were  included in our december 1999 and may 2000  surveys , global spending actually came in slightly above what was estimated  to have been spent during 1999 in december . it  also indicates that nearly $ 6 billion has been added to 2000 worldwide  exploration budgets since december , \"\" crandell said .  the survey ' s respondents said that they planned to increase u . s . e & p  expenditures by 17 . 6 percent , up from 15 . 9 percent  earlier in the year . crandell said that the greater increase was driven  almost entirely by independent producers . \"\" in our survey ,  227 independents indicated e & p spending growth in 2000 of 26 . 1 percent  versus a 22 . 9 percent increase budgeted for the  year in december , \"\" he indicated . \"\" some 40 percent of the independents we  surveyed have increased their u . s . e & p budgets ,  while about 23 percent plan on spending less than what they indicated last  december . higher natural gas prices and increased  cash flow are the main drivers behind this . \"\"  crandell said that anadarko petroleum corp . ( nyse : apc ) , apache corp . ( nyse :  apa ) , bhp petroleum , h . s . resources inc .  ( nyse : hse ) , mcmoran exploration co . ( nyse : ran ) , mdu resources group inc .  ( nyse : mdu ) , mitchell energy and  development corp . ( nyse : mnd . a and mnd . b ) , santa fe snyder corp . ( nyse :  sfs ) , stone energy corp . ( nyse : sgy ) and  titan exploration inc . - now pure resources inc . ( nyse : prs ) - were among  the larger independents to make the most  significant upward revisions . the ones that significantly reduced planned  u . s . e & p outlays for the year included barrett  resources corp . ( nyse : brr ) , belco oil and gas corp . ( nyse : bog ) , burlington  resources inc . ( nyse : br ) , coastal corp .  ( nyse : cgp ) , forcenergy inc . ( nyse : fen ) , houston exploration co . ( nyse :  hex ) , kerr - mcgee corp . ( nyse : kmg ) , mariner  energy corp . and williams production co .  the survey found that major oil companies plan about the same percentage  gain in their 2000 u . s . e & p expenditures ( 8 . 8  percent ) at midyear as they did at the beginning of the year ( 8 . 4 percent ) .  among the 14 companies in this category , 31  percent made meaningful increases in their 2000 e & p spending estimates  during the first six months , including amerada hess  corp . ( nyse : ahc ) , conoco inc . ( nyse : coc . a and coc . b ) , occidental petroleum  corp . ( nyse : oxy ) and total fina elf s . a .  ( nyse : tot ) . another 19 percent - including eni spa ( nyse : e ) , royal  dutch / shell ( nyse : rdp and stt ) and texaco inc .  ( nyse : tx ) - scaled back their domestic spending estimates , while the  remaining 50 percent of the majors in the survey  remained the same .  ' the increase in canada . . . is nothing short of staggering . . . '  \"\" the increase in canada indicated by the 85 companies in our survey is  nothing short of staggering , \"\" crandell continued . of  the 85 companies that he contacted , 44 . 7 percent budgeted higher  expenditures for 2000 than for 1999 . \"\" compared with  december , 41 percent of them have increased their estimated spending in 2000  by more than 10 percent , while 20 percent  have reduced it by more than 10 percent . the remaining 39 percent have kept  it within 10 percent of what was originally  estimated , \"\" crandell said . talisman energy inc . ( nyse : tlm ) led the group  with a huge increase , followed by anderson  exploration ltd . ( tse : axl ) , gulf canada resources ltd . ( nyse : gou ) , murphy  oil corp . ( nyse : mur ) , pan canadian  petroleum ltd . ( tse : pcp ) and shell canada ltd . ( tse : shc ) . like their u . s .  counterparts , producers above the border raised  their 2000 e & p budgets in response to higher gas prices and increased cash  flow , according to the lehman analyst .  he said that foreign upstream budgets were an area of surprise : \"\" the 14 . 9  percent gain indicated by the 99 oil and gas  companies that have operations outside the united states and canada was well  above the 5 . 7 percent increase for 2000  estimated last december . as in other geographies , there were more companies  that increased budgets than decreased them . \"\"  overall , crandell said that 33 percent of the surveyed companies raised  their 2000 e & p budgets by more than 10 percent , 43  estimated expenditures in roughly the same range and 24 percent indicated  that they would spend less than originally planned .  he said that the larger increases were driven by some big companies which  materially increased their budgets , including  texaco , petroleos brasileiros s . a . , petroleos mexicanos s . a . and repsol ypf  s . a . ( nyse : rep ) among the multinationals and  amerada hess , apache , premier oil plc . and woodside energy among mid - sized  companies .  crandell noted that while respondents ' average price assumptions rose during  2000 ' s first six months ( to $ 22 . 04 from $ 19 . 25  per barrel of crude oil and to $ 2 . 58 from $ 2 . 38 per thousand cubic feet of  natural gas ) , they still trail current prices and what  lehman brothers estimates for the year ( $ 28 per barrel of crude and $ 3 . 30  per mcf of gas ) . \"\" this suggests a stronger second  half than expected , should companies raise budgets further to reflect the  higher prices , \"\" he said .  - nick snow in washington  - - - - - - - - - - - - - - - - - - - - - - forwarded by john peyton / hou / ect on 06 / 19 / 2000 07 : 36  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  djcustomclips @ djinteractive . com on 06 / 19 / 2000 08 : 27 : 26 pm  please respond to nobody @ maill . djnr . com  to : 1346 @ wctopics . djnr . com  cc :  subject : energy : oil drilling : survey finds producers plan to spend more than  originally planned in . . .  survey finds producers plan to spend more than originally planned in  2000  oil and gas producers plan to increase their worldwide exploration and  production expenditures by more than they anticipated at the beginning  of the  year , lehman brothers inc . found in a mid - year update of its annual e & p  survey . \"\" the 326 companies we . . .  published by : petroleum finance week  date : 06 / 19 / 2000  word count : 894  relevance score on scale of 100 : 80  folder name : energy : oil drilling  full - text article available at  c = ptry  articles are included at no charge for flat - fee corporate customers . ( under  standard pricing , charges apply . for details , click the $ icon on the dow  jones interactive home page , located at http : / / www . djinteractive . com . )  to review or revise your folder , visit http : / / www . djinteractive . com or  contact dow jones customer service by e - mail at custom . news @ bis . dowjones . com  or by phone at 800 - 369 - 7466 . ( outside the u . s . and canada , call 609 - 452 - 1511  or contact your local sales representative . )  copyright ( c ) 2000 dow jones & company , inc . all rights reserved\",0\n\"Subject: re : \"\" expected tail loss \"\" for equity portfolio  everybody ,  i attached here the equity portfolio var spreadsheet model ( version x ) .  the improvement over the previous version ( 1 x ) is that it calculates  an additional measure of risk - expected tail loss .  expected tail loss is the expectation of the loss under the condition that  losses exceed var . as you know equity var model allows you to calculate var  for the percentile specified in the input sheet .  now you have to click 2 more buttons on the \"\" varinput \"\" sheet :  \"\" calculate gamma and delta \"\" and \"\" fast var \"\" .  isaac , please run the model to make sure it works for you .  regards ,  tanya\",0\n\"Subject: re : visual numerics cnl licensing issues  rakesh ,  to confirm our conversation :  please , go ahead and buy a copy .  vince  rakesh bharati @ enron  03 / 29 / 2001 02 : 06 pm  to : vince j kaminski / hou / ect @ ect  cc : tanya tamarchenko / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect  subject : visual numerics cnl licensing issues  vince ,  tanya and i feel that there is a need for a constrained optimization routine  for our var related research . numerical recipes does not contain  subroutines where equality and inequality contraints can be easily  incorporated . also , the number of arguments that can be handled is also  limited .  imsl provides a comprehensive library of more than 300 c / c + + statistical and  mathematical analysis functions . we think that it would be of great value to  our efforts and to the efforts of our research group . presently the cost is  aproximately around $ 1500 and mike bothwell ( visual numerics rep ) assures us  as the version is not license protected , we all can use it as long as  simultaneous usage is within the license .  please let me know if you should need further information .  thanks ,  rakesh  - - - - - - - - - - - - - - - - - - - - - - forwarded by rakesh bharati / na / enron on 03 / 29 / 2001  01 : 44 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  mike bothwell on 03 / 29 / 2001 12 : 56 : 03 pm  to : \"\" ' rakesh . bharati @ enron . com ' \"\"  cc :  subject : visual numerics cnl licensing issues  rakesh , i ' m just following up to see how things looked on this . any change  in status ? let me know i can furhter help you .  best regards ,  mike bothwell  account manager  visual numerics inc .  phone : 713 - 954 - 6423  fax : 713 - 781 - 9260  cell : 713 - 417 - 9069  mbothwell @ houston . vni . com  visual numerics celebrates 30 years  as an independent software vendor  rakesh ,  as we discussed , the cnl 4 . 0 pc libraries are not license managed . version  5 will be . the pc version 4 . 0 can be installed on a network drive and  called from networked pcs . as expected , we would ask that enron honor the  license agreement by allowing only the number of simultaneous uses permitted  by the license . version 5 . 0 will be license managed and can be licensed as  node locked or floating .  with regard to unix licensing , the current version of cnl for unix is  license managed . it can be licensed as node locked or floating . if you  install the libraries on a unix server as node locked , the number of  simultaneous sessions on that server is not limited except by the  capabilities of the machine . a floating unix license would be checked out  by the individual user to be executed on a local machine .  also as mentioned , your investment is protected by allowing you to upgrade  in the future by paying only the price difference between your current and  desired platforms . this upgrade option only applies to licenses covered  under support .  if you have any additional questions , please let me know . i look forward to  providing you the best math and statistical libraries available today to  help you solve your problems and understand your data .  best regards ,  mike bothwell  account manager  visual numerics inc .  phone : 713 - 954 - 6423  fax : 713 - 781 - 9260  cell : 713 - 417 - 9069  mbothwell @ houston . vni . com  visual numerics celebrates 30 years  as an independent software vendor\",0\n\"Subject: grant ,  would you take a look at the following correlation matrix ? does it make sense ?  ps : this is an updated correlation matrix with gold and silver correlations .  i used bloomberg ' s generic closest month gold and silver contract prices for  the correlation analysis .\",0\n\"Subject: wti trading simulation model - presentation  vince ,  since you are not here today , i just sent out the presentation of the model i  prepared for john  for his feedback . i would appreciate that you review it before we make the  final version .  obviously , this simulation model is going to make a big impact on our online  trading . and i am happy  that we have accomplished this task effciently and elegantly .  zimin  - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 12 / 06 / 2000 01 : 25 pm  - - - - - - - - - - - - - - - - - - - - - - - - - - -  zimin lu  12 / 06 / 2000 01 : 21 pm  to : john j lavorato / corp / enron @ enron  cc : stinson gibner / hou / ect @ ect , vince j kaminski / hou / ect @ ect  subject : wti trading simulation model - presentation  john ,  i put together a presentation of the simulation model for wti market maker  for you .  the p / l results are investigated by assuming different scenarios .  the key variable is the number of trade per day , therefore is varied from  200 to 1000 trades .  scenarios are generated by different spreads , net open position allowed , and  time period .  take a look what i have prepared , and let me know things you want to add or  delete .  if you have any questions , i will be happy to discuss with you .  zimin  ps : this presentation is only for the open - close trading . i will produce  exact the same  sequence for the continuous trading ( close - close ) once you approve the  content .\",0\n\"Subject: renshi zhang ' s resume  shirley and molly ,  vince is interested to set up an interview for renshi zhang . any day except thursday next week  is good .  interviewers : vince , stinson , vasant , tanya , alex , bob , krishna and myself .  contact number for mr . zhang is 713 - 544 - 5989 .  zimin  - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 04 / 19 / 2001 03 : 52 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  zimin lu  04 / 05 / 2001 09 : 49 am  - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 04 / 05 / 2001 09 : 46 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  03 / 14 / 2001 10 : 06 am  to : zimin lu / hou / ect @ ect  cc :  subject : resume  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 14 / 2001 10 : 07 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  marshall brown on 03 / 09 / 2001 07 : 46 : 22 am  to : vince kaminski  cc :  subject : resume  vince ,  how are you . this candidate would be interested in any positions in  your group .  regards ,  marshall brown  vice president  robert walters associates  tel : ( 212 ) 704 - 0596  fax : ( 212 ) 704 - 4312  mailto : marshall . brown @ robertwalters . com  http : / / www . robertwalters . com  >  caution : electronic mail sent through the internet is not secure and could  be intercepted by a third party .  this email and any files transmitted with it are confidential and  intended solely for the use of the individual or entity to whom they  are addressed . if you have received this email in error please notify  the system manager .  this footnote also confirms that this email message has been swept by  mimesweeper for the presence of computer viruses .  - zhan _ ren . doc\",0\n\"Subject: re : meeting today and trip to houston  omar , thanks for the presentation and the e - mail . as i tried to emphasize on  the phone call , there will be short - term and long - term efforts to utilize  opnet . often the short - term needs rules at ebs . we will sort out what they  during our discussion in houston . i am confirming the meeting in houston  6 - 8 th .  i shall ask shirely crenshaw to arrange for a conference room on the 19 th  floor . the meeting will be held all day from april 6 th , 7 th and half day 8 th .  the 8 th is a saturday and the meeting will be held to wrap things up if  needed .  ravi .  background info . for enron research people . opnet is a simulation tool that  many in the industry use to do capacity planning to ip based applications and  services on a network . detail adenda will follow .  i wanted to take the opportunity to thank you for the time we had this  morning to discuss the performance engineering program at ebs . i think  you ' ll find that the value to enron from the overall approach is quite  high . i have a much better picture now of some of the short term drivers  that need to be addressed as we move forward . as i work with you , i think  we ' ll quickly emerge with a clear picture of what needs to be done and when .  as soon as you confirm your schedule for april 6 - 8 , i ' ll book my travel to  get to houston . i ' ve already put in a call to opnet technologies to have  them get a resource out to houston on one of those days for a demonstration  and q & a about the opnet toolset .  i ' ll compose an agenda for us to use during that meeting in houston and get  it out to you next week .  if there are any questions , please email me at  ozaidi @ lucent . com  you can also call me at 503 778 0653 . i am also pageable at 1 800 467 1467 .  have a great weekend and i look forward to hearing from you next week about  the april 6 - 8 meeting .  best wishes . . . .\",0\n\"Subject: latest revision  vince ,  i have made bold face edits to the attached document . i still have two edits  to make but am concerned that you were not reading the most recent version .  sorry for any confusion but the editor doesn ' t use the edit function in word  so i have ended up making edits on new versions of the paper .  i still haven ' t made the change regarding the take - or - pay problem ( i left  that paper at home in my briefcase and will make the change tomorrow  morning ) . also , i haven ' t added anything regarding the conflict that arose  over pay for new hires nor have i received the business week e - mail from you .  however , if the paper looks ok to mark palmer we can make these minor edits  on the galley pages of the article .  thanks  john  p . s . i am very disappointed about the scheduling conflict you have on feb  23 rd . you will be greatly missed but i certainly understand .  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: enron year end 2000 performance management process  enron ' s year - end 2000 performance management process opens on :  wednesday , october 25 th .  during this process , you will be able to suggest reviewers who can provide  feedback on your performance . in addition , you may be requested to provide  feedback on fellow employees . to participate in the feedback process , access  the performance management system ( pep ) at http : / / pep . corp . enron . com . your  userid and password are provided below .  the system will be open for feedback from october 25 th - november 17 th , and  help desk representatives will be available to answer questions throughout  the process . you may contact the help desk at :  houston : 1 - 713 - 853 - 4777 , option 4  london : 44 - 207 - 783 - 4040 , option 4  e - mail : perfmgmt @ enron . com  during the year - end prc process , employee profiles will be made available at  meetings . if you haven ' t already done so , we encourage you to update your  personal information and current responsibilities before the meeting process  begins on november 20 th . please access ehronline at  http : / / ehronline . enron . com ( london users please go to http : / / home . enron . co . uk  , click on quick links , and choose hr online ) .  your user id & password are :  user id : 90012910  password : welcome\",0\n\"Subject: coming back to london  hi guys ,  it was nice to work with each of you for the last couple of weeks . it was  great time and i enjoyed every single day here .  i am very much impressed with research team in houston and looking forward to  strengthen our co - operation even further .  have all great time and not a very hot summer .  hope to see all you soon .  many thanks ,  slava\",0\n\"Subject: lng meeting  bjorn :  the lng meeting will be held tomorrow the 17 th of may at 11 : 00 pm  houston time . the phone number for the conference room is :  713 / 853 - 3135  thanks !  shirley\",0\n\"Subject: re : lng may 19 decision  john ,  yes . i have additional info about this transaction .  vince  john sherriff  05 / 16 / 2000 10 : 47 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : lng may 19 decision  thanks vince - i understand we are on at lpm your time today to review this .  john  vince j kaminski  16 / 05 / 2000 14 : 48  to : john sherriff / lon / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : lng may 19 decision  john ,  sorry for the confusion .  this is a second tanker on which very few details  are available . the lng group is working as we speak  to provide some information for joe sutton before  his departure for paris this ( tuesday ) afternoon .  there is no dash on this 2 nd tanker yet . i asked dave gorte  on monday to send me one and was not told that  he can provide me with the mystic lady dash as the closest  substitute .  vince  john sherriff  05 / 16 / 2000 12 : 20 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : lng may 19 decision  vince - thanks for the update . what i am not sure of is what if any decision  has to be  made on may 19 . it seems to me that the mystic lady and elba island deals  have already  been approved and executed - but it is quite likely i am missing a detail or  two .  john  vince j kaminski  15 / 05 / 2000 17 : 14  to : john sherriff / lon / ect @ ect  cc : vince j kaminski / hou / ect @ ect , david gorte / hou / ect @ ect , rick  buy / hou / ect @ ect , ted murphy / hou / ect @ ect  subject : re : lng may 19 decision  john ,  this is the update on what i have done for the lng transactions .  1 . i was not involved in the lng ship project . i shall read the dash  and give you my comments . without looking at the details , i think that the  decision  to charter a tanker removes one significant risk we have at the elba island  project ( please , see point 2 ) .  2 . elba island . i am working with doug rotenberbg , brad hitch , scott earnest  ( sally beck ' s organization ) and rac to set up the book for the elba island  transaction . the next step  will be to expand the book to capture all the enron ' s lng - related positions  in one place and  to look for natural risk offsets and possible hedges . a working group is  meeting to close a few  remaining gaps tomorrow ( tuesday ) at 8 : 30 .  a few comments on the book design and my view of the project :  a . the current thinking is that lng will be sourced for the elba island  facility  by buying marginal cargos on the fob basis . marginal cargos will represent  supply from excess capacity that has not been committed under long - term  contracts or became available due to some short - term frictions .  the fob cargos are typically selling at a significant discount to the  long - term  contract prices . the economics of the deal , as represented by the book we are  setting up , will reflect the assumption that not only we can locate marginal  cargos  but that we shall be able to do it on a regular basis , arranging shipping and  coordinating  the facility schedule and natural gas transactions in the us . in other words ,  we have a significant logistical and operational risk in this transaction .  b . the transaction will cover the period of 17 years ( with an extension  option of  5 years ) . even if we can lock - in the lng volumes over this time period , we  have no ability to lock - in the other side of the spread ( us gas prices ) for  such a long tenor . this is  essentially a tolling transaction with exposure to the lng - nat gas spread  and  i would not recommend locking - in only one leg of the spread .  one solution would be to cover , let ' s say , 50 % of he lng volumes for the  first  5 years and lock - in the nat gas side on the us market side .  c . the book we are setting up will be based on many managerial assumptions  regarding sources of lng , shipping rates , schedules , etc . i would set up a  big prudence reserve  in case we mark it to market .  d . my group will work on valuation of some options we have in the elba island  deal  ( that are good for enron ) and on the hedging strategy for the lng positions .  long - term lng contracts are typically based on the japanese crude cocktail  that  correlates very well with brent .  vince  john sherriff  05 / 14 / 2000 01 : 40 am  to : vince j kaminski / hou / ect @ ect  cc : lauren urquhart / lon / ect @ ect  subject : lng may 19 decision  vince  i haven ' t spoken to you for awhile but hope the world is treating you well .  anyway with greg moving to his  new role i have ( i hope only temporarily ) staff trading oversight for the  eastern hemishere plus lng .  i understand that your group is taking a first cut at developing curves for  lng and lng ship values . i also understand  that another lng ship decision is on the dockets for may 19 ( not very far  away ) . anway i understand this  is a big decision but i still have gotten very little info yet . can you  please let me know where you stand now ?  i will ask my assistant lauren to set up a time that i can speak with you in  the next couple of days and if you  have anything for me to review before then she can get it faxed to me as well .  look forward to connecting with you vince .  john\",0\n\"Subject: re : energy derivatives conference - may 29 , toronto  hi amy :  that is fine , vince was going to come on the 28 th anyway , but he will probably  need to come earlier - please let me know what time you have scheduled  the dinner so i can make his airline reservations .  thanks !  shirley  amy aldous on 04 / 06 / 2000 09 : 10 : 01 am  to : \"\" shirley crenshaw \"\"  cc :  subject : re : energy derivatives conference - may 29 , toronto  hi shirley ,  i just realized that i goofed on the dinner - it will be held on sunday ,  may 28 th instead of the 29 th . sorry about that !  i hope your day is going well so far .  amy  at 07 : 59 am 4 / 4 / 00 - 0500 , you wrote :  >  >  > good morning amy :  >  > vince kaminski will need the following :  >  > an lcd projector to hook up to a lap tap for his presentation  > he will have dinner with the conference organizers and speakers on the  29 th .  > he will need 2 nights ( the 28 th and the 29 th ) hotel reservations .  >  > he will send you an abstract shortly .  >  > thanks and have a great day !  >  > shirley crenshaw  > 713 - 853 - 5290  >  >  >  >  >  >  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  amy aldous , conference co - ordinator  centre for advanced studies in finance  university of waterloo  waterloo , on n 2 l 3 gl  tel : ( 519 ) 888 - 4567 ext . 5728  fax : ( 519 ) 888 - 7562  email : aaldous @ uwaterloo . ca  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *\",0\n\"Subject: petrochem desk  i had a chance to speak with christian lebroc this morning with regard to curve building for petrochemicals . as it turns out , christian left rac in april and joined the petrochem desk as a trader . previous efforts at construction of a forward curve by the group have focused on intuition or swags . unfortunately , the group had a rough p & l year with at least some of the blame directed toward the forward curve or lack thereof . when asked about the fundamentals group , christian indicated that they ' d only been around about 3 - 4 months and are not yet well - suited to curve building . john nowlan is indeed the head of the group .  from a timing perspective , i told christian that it would probably take at least 6 - 8 weeks to develop a curve , especially considering the need to understand the key market drivers / fundamentals . as was suggested yesterday during our meeting , a strong relationship between petrochemicals and a nymex component ( e . g . , crude oil ) would provide a great beginning point - - we could then potentially strengthen / augment this relationship with other key factors ( e . g . , supply and demand terms ) borne out of our market research .  nelson\",0\n\"Subject: re : arthur andersen model validation request  yes , i sent a reply to gillian .  - - stinson\",0\n\"Subject: thanks a lot .  dr . kaminski ,  i appreciate you for giving me a good  opportunity to have the interview .  the visit to enron was very impressive .  thanks for arranging interviews with people  at research department and extra interview  at the enron net work .  it was good to have chance to meet such nice people ,  and have a talk with them .  it was a good experience for me and  i hope we have chance to see each other .  jinbaek  jinbaek kim  ph . d candidate  dept . of industrial engineering and operations research  u . c . berkeley  http : / / www . ieor . berkeley . edu / ~ jinbaek  go bears !  : \"\" ' . _ . . - - - . . _ . ' \"\" ; ` . . ' . ' ` .  : a a : _ _ . . . . . _  : _ . - 0 - . _ : - - - ' \"\" \"\" ' \"\" - . . . . - - ' \"\" ' .  : . ' : ` . : ` , ` .  ` . : ' - - ' - - ' : . ' ; ;  : ` . _ ` - ' _ . ' ; . '  ` . ' \"\" ' ;  ` . ' ;  ` . ` : ` ;  . ` . ; ; : ;  . ' ` - . ' ; : ; ` .  _ _ . ' . ' . ' : ; ` .  . ' _ _ . ' . ' ` - - . . _ _ _ . _ . ' ; ;  ` . . . . . . ' . ' ` ' \"\" \"\" ' ` . ' ; . . . . . . - '  ` . . . . . . . - ' ` . . . . . . . . '  on tue , 24 oct 2000 vince . j . kaminski @ enron . com wrote :  >  > jinbaek ,  >  > we shall invite you to an interview in houston .  >  > vince  >  >  >  >  >  > jinbaek kim on 10 / 23 / 2000 07 : 25 : 36 pm  >  > to : vkamins @ enron . com  > cc :  > subject : resume ,  >  >  > dear mr . kaminski ,  >  > hi ,  > i am a ph . d student at ieor department at u . c . berkeley .  > thanks for your presentation today .  > it gave me knowledge and interest in electricity markets ,  > and your company .  > as you mentioned in the presentation ,  > i send a resume to give me opportunity to learn more  > about your company .  > i hope i can join the super saturday event .  >  > jinbaek  >  >  > ( see attached file : resume . doc )  >  >  >\",0\n\"Subject: optical network engineering & enron research offsite meeting  ravi ,  the proposed dates work for me .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 09 / 2000  05 : 09 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  stinson gibner  03 / 09 / 2000 02 : 22 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : optical network engineering & enron research offsite meeting  vince ,  i will not be able to attend on this weekend ( april 15 ) , but i think the main  point is for john ' s guys to meet the rest of our group . most of them know  me already .  - - stinson  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 03 / 09 / 2000  02 : 19 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  ravi thuraisingham @ enron communications on 03 / 06 / 2000 04 : 29 : 34 pm  to : john _ griebling @ palm . net , dorn _ hetzel @ palm . net , vince kaminski  cc : stinson gibner / hou / ect @ ect , kenny burroughs / enron communications @ enron  communications , jim irvine / enron communications @ enron communications  subject : optical network engineering & enron research offsite meeting  hi john , as per our discussion and e - mails , i am suggesting the following  dates for the subject offsite : april 14 & 15 th ( friday & sat ) . place and  agenda to follow once this date is nailed up . the heads of each group will  decide who will attend . we would also invite kevin hannon , scott yeager , tom  gros , ted seitz and jean mrha once the dates and agenda are agreed upon by  the technical folks .  as before , the idea is to introduce the two of the most technical groups  within enron and to exchange ideas and issues . the enron research team will  provide trading and modeling presentations and the optical network  engineering team will present networking and components related topics .  take away from the two days will be to provide john griebling ' s group with  better understanding about how the trading markets have developed in general  and energy markets in particular via enron ( i . e . , how the sausage was  made ! ) . likewise , john ' s group will provide us with better understanding of  optical networking from a technical perspective . particularily , how ebs is  planning to develop the puplic switched optical network ( pson ) that john has  ' branded ' our pooling point based network !  please reply asap if these two days ( april 14 & 15 ) will work . additionally ,  john , is the original suggestion to hold it in scott yeager ' s cabin somewhere  up in colorado mts . still holds ? if yes , i should probably let scott know !  if not , i ' ll try to find other places - - any suggestions , anyone ?  regards ,  ravi .\",0\n\"Subject: fwd : credit applicatiions in grms  return - path :  received : from rly - yho 3 . mx . aol . com ( rly - yho 3 . mail . aol . com [ 172 . 18 . 147 . 35 ] )  by air - yho 3 . mail . aol . com ( v 67 _ bl . 21 ) with esmtp ; fri , 28 jan 2000 17 : 34 : 19  - 0500  received : from mailman . enron . com ( mailman . enron . com [ 192 . 152 . 140 . 66 ] ) by  rly - yho 3 . mx . aol . com ( v 67 _ bl . 21 ) with esmtp ; fri , 28 jan 2000 17 : 34 : 06 - 0500  received : from dservl . ect . enron . com ( dservl . ect . enron . com [ 172 . 16 . 1 . 37 ] ) by  mailman . enron . com ( 8 . 8 . 8 / 8 . 8 . 8 / corp - 1 . 03 ) with esmtp id waal 2938 for  ; fri , 28 jan 2000 22 : 33 : 40 gmt  received : from notes . ect . enron . com ( notes . ect . enron . com [ 172 . 16 . 4 . 33 ] ) by  dservl . ect . enron . com ( 8 . 8 . 8 / 8 . 8 . 8 ) with smtp id qaa 21960 for  ; fri , 28 jan 2000 16 : 34 : 05 - 0600 ( cst )  received : by notes . ect . enron . com ( lotus smtp mta v 4 . 6 . 5 ( 863 . 2 5 - 20 - 1999 ) )  id 86256874 . 007 bf 6 c 3 ; fri , 28 jan 2000 16 : 34 : 00 - 0600  x - lotus - fromdomain : ect  from : \"\" vince j kaminski \"\"  to : vkaminski @ aol . com  message - id :  date : fri , 28 jan 2000 16 : 33 : 56 - 0600  subject : credit applicatiions in grms  mime - version : 1 . 0  content - type : text / plain ; charset = us - ascii  content - disposition : inline  content - transfer - encoding : 7 bit  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 28 / 2000  04 : 33  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  bjorn hagelmann  01 / 28 / 2000 09 : 25 am  to : william s bradford / hou / ect @ ect , jonathan le / hou / ect @ ect , gary  hickerson / hou / ect @ ect , philippe a bibi / hou / ect @ ect , vince j  kaminski / hou / ect @ ect  cc : rick buy / hou / ect @ ect , mike mcconnell / hou / ect @ ect  subject : credit applicatiions in grms  this note is from ted murphy ( not bjorn hagelman )  my understanding is that yet another meeting has been scheduled with the  intent  of diverting resources from the grms project to some other project .  while i am not privy to the urgency of this other project , i do know that we  have a very large , multi - phase project going in grms .  grms stands for the global risk monitoring system . it is not intended to be a  commercial trading product not is its primary purpose for commercial  decision - making . conceptually , it is a risk warehouse for the primary purpose  of rac due to the deficiency of current front office trading systems and their  inability to provide timely , aggregated information useful to rac .  rac has spent over a year developing a business plan scope and detailed task  list to accomplish its objectives . as a firm we are woefully behind our press  clippings in our ability to aggregate and understand our risk profile . my  most  recent sojorn in europe is a classic example of the current systems inabilty  to  aggregate and meet the needs of rac having abetted poor decision making and  causing cash losses in well in excess of the grms budget or that of the market  risk group in rac .  the grms project is a requirement that bill bradford and i have in order to do  our jobs . we have delegated authority to debbie brackett and rudi zipter to  make decisions regarding priorities and as such meet regularly with jonathon  and  his team as well as rick buy to provide updates . while progress is never as  fast as we would like it , in every instance in which we have only to rely on  rac , jonathon ' s team and research to make a deadline it haas been hit . the  primary reason for any delays whatsoever has been the diversion of resources  off  the project or the reliance for cooperation from some other source - most  recently the it staff in london was a tremendous impediment to deadlines .  please excuse the frustration that is apparently coming through in this note ,  but i feel like the boy with his finger in the dyke and no one is listening .  also , i have had several employees come to resignation over their frustration  on  the lack of management support for this project , usually manifesting itself in  the lack of resources or the diversion of resources devoted to it .  i think we have proven collectively that we can organize a modular multiphase  project and provide tangible deliverables when not distracted . please let us  do  our jobs . i do not denigrate the efforts of others , but i believe that they  must either submit their detailed requirements to us for our consideration of  their worthiness to put in our que or develop their own project with their own  resources .  thank you for your consideration of this opinion . as it relates to things  that  will effect the ability of market risk to do its job , please consult me as i  would you .  ted\",0\n\"Subject: re : iif / oxan  vince ,  per the dialogue below , there seems to be some agreement between our two  groups that a subscription to the \"\" institute for international finance \"\" is  worth receiving , but to do so in one central subscription and split the  cost . is a $ 16 k share ok for your group ? we ' ll do $ 32 k on our end , and then  try and sell some of our share to my european counterpart once he gets better  established with a bigger budget .  - - scott  - - - - - - - - - - - - - - - - - - - - - - forwarded by scott tholan / corp / enron on 02 / 26 / 2001  06 : 21 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  robert johnston @ ect  02 / 26 / 2001 07 : 51 am  to : scott tholan / corp / enron @ enron  cc :  subject : re : iif / oxan  scott - could you give vince a call or an email to recommend that he kick in  16 k for the institute for international finance ? we would pay 32 k ( maybe get  jim roth to pick up some down the road ) .  rj  - - - - - - - - - - - - - - - - - - - - - - forwarded by robert johnston / hou / ect on 02 / 26 / 2001  07 : 50 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  gwyn koepke @ enron  02 / 23 / 2001 06 : 18 pm  to : robert johnston / hou / ect @ ect  cc :  subject : re : iif / oxan  i haven ' t heard back from vince yet on the price , but we definitely need to  continue our access to iif . can you count us in for a slice of the cost and  advise me how many others depts you can recruit to help pay the annual fees .  once you have a final count , it may reduce our costs in research . thanks ,  gek  robert johnston @ ect  02 / 16 / 2001 04 : 31 pm  to : gwyn koepke / na / enron @ enron  cc : maureen raymond / hou / ect @ ect  subject : re : iif / oxan  if you need access to consensus data occasionally let me know and i can pull  it for you . let me know when you get an answer on iif . i will also be  looking for others to buy in .  rj  gwyn koepke @ enron  02 / 13 / 2001 01 : 55 pm  to : robert johnston / hou / ect @ ect  cc : maureen raymond / hou / ect @ ect , scott tholan / corp / enron @ enron  subject : re : iif / oxan  robert ,  thanks for itemizing the costs . we have decided to cancel the oxford  analytica , as we receive a consensus forecast for currency and inflation from  another source . regarding iif , it is an important source for us . i will  discuss the costs within the research group and advise you of how we will  proceed .  gwyn  robert johnston @ ect  02 / 13 / 2001 09 : 46 am  to : maureen raymond / hou / ect @ ect , gwyn koepke / na / enron @ enron  cc : scott tholan / corp / enron @ enron  subject : iif / oxan  hi maureen and gwyn -  on the oxford analytica front , i ' m glad you have found the service useful .  our contract with them has expired and we are currently negotiating for more  users to have access . our current contract is for $ 50 k or $ 10 k per user per  year . we can charge $ 10 k back to you .  on the iif front , the invoice for $ 47 k is due at the end of the month . here  i would propose that we pay two thirds ( to cover our costs and the costs of  our competitive analysis colleagues in london ) , leaving $ 15 k for you to cover .  since we took on these services last year , we have expanded our range of  sources and projects and are consequently trying to do more with less . thus i  need to allocate some of our costs from oxan and iif to other projects .  let me know what you think about this proposal . maureen , congratulations on  your secondment to enron metals ( gwyn mentioned it to me ) . fyi , our  colleague jim roth is providing competitive analysis support to joe gold and  john sherriff on that project from london .  rj\",0\n\"Subject: promotion  vince : just a short note to congratulate you on your well - deserved promotion .  jordan\",0\n\"Subject: re : f / u to dr . kaminski @ enron from iris mack  hi again ,  thank you for your email . sorry for the phone tag and email tag . i will  try to call you again next week .  in the mean time , i thought i would send you a couple of documents to give  you an idea of some of the work that i have done that may be of interest to  enron .  1 . the first word document is my london busines school executive mba  thesis relating to weather derivatives .  2 . the second word document describes a hybrid derivatives structure i i  workded on at bnp paribas . it has applications to the enerygy industry .  because these documents are very large i will forward them in two separate  emails . your comments on them would be appreciated .  happy thanksgiving ,  iris  > from : vince . j . kaminski @ enron . com  > to : irismmack @ hotmail . com  > cc : vkaminski @ aol . com  > subject : contact #  > date : wed , 22 nov 2000 08 : 10 : 12 - 0600  >  > iris ,  >  > yu can reach me on my cell phone during the coming holidays .  > 713 410 5396  >  > vince  >  _ _ _ _ _ _ _  get more from the web . free msn explorer download : http : / / explorer . msn . com  - lbs thesis - weather derivatives . doc\",0\n\"Subject: re : new copier information for 55 , 60 & 65 cpm digital machines  iain :  we went and looked at the toshiba copier on the 32 nd floor and while it  does not appear to be extremely fast , i believe it will work for the 19 th  floor . i spoke with vince kaminski and he agreed with our getting this  copier .  we noticed this copier has a button that says \"\" network connection \"\"  and were wondering it this copier could be hooked up to the network and  we could run copies from our computer ? please let us know .  thanks for all your help and have a wonderful christmas and new  year !  shirley  co # 0011  rc # 100038  copier information including pictures & weblinks  from : iain russell on 12 / 17 / 99 10 : 47 am  to : shirley crenshaw / hou / ect @ ect  cc :  subject : new copier information for 55 , 60 & 65 cpm digital machines  shirley ,  following up on the telephone conversation , please see the attached  spreadsheet for pricing information plus important information about \"\" true  world \"\" copy speeds .  pricing was centered on the 42 . 315 k per month volume band so that you can get  a good feel for copier expenditure based on average month volumes . i have  left the spreadsheet \"\" unprotected \"\" so that you can play with the volume  figures and see how this changes the price overall + how the \"\" cost per image \"\"  is affected by volume changes .  ? pricing spreadsheet : under \"\" notes \"\" towards under the pictures .  the \"\" true world \"\" copy speed information has been supplied by buyers lab  incorporated , which is an independent testing house that rates office  equipment , including copiers and publishes their findings on a quarterly  basis . unfortunately they have not released their findings on the canon ir 550  as testing is not yet complete .  ? copier speeds : @ the end of the notes - mail  { these include 1 - 1 , 1 - 2 and duplexing + detail on completion of \"\" sets \"\" }  as you will see , duplexing speeds are widely different across the various  manufacturers equipment & the \"\" true world \"\" copy speeds are a soft $ expense  which impacts the true cost of running a copier .  listed below are the url ' s for the different 55 , 60 & 65 cpm b / w copiers .  a ) overview  b ) specifications  from lanier  ricoh equipment  55 copies per minute  a ) & b ) weblink for machine specifications - - > click here - - - >  65 copies per minute  a ) & b ) weblink for machine specifications - - > click here - - - >  from danka  canon equipment { ir 550 }  55 copies per minute  looks like : - - - >  weblink for machine specifications - - > click below :  a ) http : / / www . usa . canon . com / corpoffice / netofficesys / ir 550 / ir 550 fea . html  b ) http : / / www . usa . canon . com / corpoffice / netofficesys / ir 550 / ir 550 spec . html  canon equipment { ir 600 } > > currently on 45 day backorder  weblink for machine specifications - - > click below :  a ) http : / / www . usa . canon . com / corpoffice / netofficesys / ir 600 / ir 600 fea . html  b ) http : / / www . usa . canon . com / corpoffice / netofficesys / ir 600 / ir 600 spec . html  toshiba equipment  55 copies per minute  weblink for machine specifications - - > click below :  a ) http : / / www . toshiba . com / taiseid / copiers / 5570 / features . htm  b ) http : / / www . toshiba . com / taiseid / copiers / 5570 / spec . htm  65 copies per minute  weblink for machine specifications - - > click here - - >  a ) http : / / www . toshiba . com / taiseid / copiers / 6570 / features . htm  b ) http : / / www . toshiba . com / taiseid / copiers / 6570 / spec . htm  notes  here is the pricing spreadsheet for your records : - - >  the highlighted rows on the spreadsheet reflect you current average monthly  volume .  fyi - - > target cpi or cost per image is in the region $ 0 . 017 up to and  including $ 0 . 023 .  copier model monthly volume capacities  model manufacturer max rec / level realistic level { up to }  toshiba 5570 340 k 115 k  toshiba 6570 400 k 135 k  lanier 5255 { per rep . } 200 k 100 k  lanier 5265 { per rep . } 200 k 100 k  canon ir 550 200 k 100 k  canon ir 600 250 k 100 k  fyi : we currently have a toshiba 6570 @ eb 32 kl that is averaging 69 , 332  images per month with the top month producing 86 , 673 images and a toshiba  5570 @ eb 3080 area that is averaging 39 , 309 per month . both of these machines  are in the enron north america trading environment .  the copiers quoted are all \"\" digital \"\" .  digital : scan once print many = 99 copies of one sheet ? 1 scan !  analog : scan for every image made = 99 copies of 1 sheet ? 99 scans = possible  noise issue .  copier speeds = total print time  this comparison gives the speed @ which the document set is printed  { no staple , no 3 - hole punch }  > > > > > 60 & 65 copy per minute machines > > > > 55 copy per minute machines < < < < <  please call me with any questions .  thanks , iain russell @ 713 - 853 - 6861  contracts supervisor administration  enron property & services corp .  privileged / confidential information may be contained in this message . if  you are not the addressee indicated in this message ( or responsible for  delivery of the message to such person ) , you may not copy or deliver this  message to anyone . in such case , you should destroy this message , and  notify us immediately . if you or your employer does not consent to internet  email messages of this kind , please advise us immediately . opinions ,  conclusions and other information expressed in this message are not given  or endorsed by my department or employer unless otherwise indicated by an  authorized representative independent of this message . \",0\n\"Subject: management announcement  we are pleased to announce that cliff baxter has been named vice chairman of  enron corp .  cliff joined enron in 1991 and has served in a variety of leadership  positions in enron corp . as well as enron \u0001 , s wholesale business , including sr .  vice president of corporate development for enron corp . , chairman and ceo of  enron north america , and chief strategy officer for enron corp .  in his new role , cliff will focus on the strategic repositioning of the  company as we continue to increase our return on invested capital .  initially , much of that activity will center on the disposition of certain  assets . cliff \u0001 , s leadership and experience at both the corporate and  operating company levels will enable him to lead the effort on this  company - wide priority .  please join us in congratulating and supporting cliff in his new role .\",0\n\"Subject: update on project x  gentlemen ,  john norden will be in sydney on monday morning to evaluate the it process .  he will coordinate with stinson .  spoke to vince k today and asked if he would send stinson gibner to sidney  to be available on monday to review the x system .  paul , make sure our x friends are available and the confidentially agreement  is signed . further , i spoke to phillip b . about a technical going too .  g ' day mates ,  gary\",0\n\"Subject: a classic  a classic i forgot to attach the resume !  ?  ?  pierre - philippe ste - marie  http : / / pstemarie . homestead . com  - ppl . doc\",0\n\"Subject: the national forum on corporate finance  hello mr . fastow ,  sheridan titman from ut - austin and i are both delighted you will be able to  participate in the conference we are organizing here at rice . attached is  a revised overview of the organization - the second page contains an  up - to - date list of the firms involved .  also , i ' m attaching a draft of the actual program . after each  presentation , i have a panel of three or four people who will can respond  to some of the points or issues raised in each discussion . these remarks  will be very informal and ad hoc and thus should require no preparation on  your part . reaction to this format has been good and i think it will be a  great way to stimulate discussion / debate .  i have you penciled in to serve on one such panel on saturday morning , may  5 . the topic deals with handing the dilution arising from executive stock  options and involves the top academic expert on executive stock options ,  david yermack from nyu .  let me know if you have any concerns about this or if a conflict  arises . also , i will be e - mailing some registration materials to you in  the next week .  i look forward to seeing you soon .  dave ikenberry .  at 11 : 20 am 2 / 26 / 2001 - 0600 , vince . j . kaminski @ enron . com wrote :  > andy ,  >  > thanks . i shall forward your message to  > prof . ikenberry .  >  > vince  >  >  >  >  >  > from : andrew s fastow / enron @ enronxgate on 02 / 22 / 2001 01 : 45 pm  >  > to : vince j kaminski / hou / ect @ ect  > cc :  > subject : re : the national forum on corporate finance  >  > vince :  >  > i would be interested in participating . thanks .  >  > andy  >  > - - - - - original message - - - - -  > from : kaminski , vince  > sent : monday , february 05 , 2001 10 : 23 am  > to : andrew s fastow / hou / ect @ enron  > cc : kaminski , vince  > subject : the national forum on corporate finance  >  > andy ,  >  > i am sending you a draft oof a proposal regarding national forum for top  > finance practitioners and  > academics . the idea came from a professor at rice university who  > has already received a commitment from a number  > of most distinguished cfos .  >  > please , read the outline and see if you would be interested in joining  > this forum .  > i shall be glad to help to arrange a meeting with prof . ikenberry .  >  > vince  >  >  > - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on  > 02 / 05 / 2001 10 : 22 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  >  > ( embedded image moved to file : pic 26299 . pcx )  > david ikenberry on 02 / 02 / 2001 06 : 10 : 02 pm  >  > to : \"\" vkamins @ ennron . com \"\"  > cc :  > subject :  >  >  > it was great talking with you .  >  > dave  > - brochure . doc >  >  >  > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  > prof . david ikenberry  > jones graduate school of management  > rice university  > 713 - 348 - 5385  >  >  >  >  >  - brochure . doc  - may 4 - 5 program _ nfcf . doc  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  prof . david ikenberry  jones graduate school of management  rice university  713 - 348 - 5385\",0\n\"Subject: resume greg mikkelson  vince ,  i will contact you shortly to confirm that greg is able to make it in  tomorrow . thanks .  have a good day  chris williams  ena staffing  x 39866  - - - - - - - - - - - - - - - - - - - - - - forwarded by chris williams / hou / ect on 07 / 10 / 2000  10 : 08 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron north america corp .  from : chris williams 07 / 10 / 2000 09 : 52 am  to : kevin mcgowan / corp / enron @ enron  cc :  subject : resume greg mikkelson  - - - - - - - - - - - - - - - - - - - - - - forwarded by chris williams / hou / ect on 07 / 10 / 2000  09 : 52 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron north america corp .  from : chris williams 06 / 26 / 2000 09 : 00 am  to : kevin mcgowan / corp / enron @ enron  cc :  subject : resume greg mikkelson  kevin ,  this is an internal referral from steve douglas . greg does have a good  research background and a pretty impressive education , too . any interest in  speaking with him regarding a research type position within your group ?  chris  x 39866  - - - - - - - - - - - - - - - - - - - - - - forwarded by chris williams / hou / ect on 06 / 26 / 2000  08 : 56 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : ted c bland 06 / 21 / 2000 06 : 51 am  to : dave hill / corp / enron @ enron , chris williams / hou / ect @ ect , sheila  walton / hou / ect @ ect , larry burton / hou / ees @ ees , daniel  cc :  subject : resume ( ms word )  please look over the attached resume . steve douglas referred mr . mikkelson  to us . sheila , he may have a fit in kaminski ' s group . dave , ? . chris ,  maybe coal ' s emmissions group ? . dan , do you see a fit ? larry , an help ?  thanks . ted  - - - - - - - - - - - - - - - - - - - - - - forwarded by ted c bland / hou / ect on 06 / 21 / 2000 06 : 47  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : stephen h douglas 06 / 20 / 2000 05 : 39 pm  to : ted c bland / hou / ect @ ect  cc :  subject : resume ( ms word )  as discussed .  - - - - - - - - - - - - - - - - - - - - - - forwarded by stephen h douglas / hou / ect on 06 / 20 / 2000  06 : 37 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  gregory matthew mikkelson on 06 / 20 / 2000 12 : 35 : 40 pm  to : sdougla @ enron . com  cc :  subject : resume ( ms word )  howdy steve .  - r , sum ,\",0\n\"Subject: re : houston visit with vince kaminski  good afternoon shirley ,  it is great that vince is available on 4 / 19 . w . r . t . the attached from  vince , let ' s go for the afternoon slot on 4 / 19 . i look forward to seeing  you both @ lpm on 4 / 19 . have a great w / e .  many thanks ,  soussan  ( 914 ) 253 4187  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : friday , march 31 , 2000 12 : 53 pm  to : faizs @ texaco . com  cc : vince . j . kaminski @ enron . com ; shirley . crenshaw @ enron . com  subject : re : houston visit  soussan ,  my assistant , shirley crenshaw , will call you regarding the time of the  meeting .  right now the afternoon is open .  i look forward to meeting you on the 19 th .  vince  - - - - - original message - - - - -  from : shirley crenshaw [ mailto : shirley . crenshaw @ enron . com ]  sent : friday , march 31 , 2000 1 : 00 pm  to : faizs @ texaco . com  subject : houston visit with vince kaminski  good afternoon :  vince kaminski is available on wednesday , april 19 th from 8 : 00 - 11 : 00 am  and 1 : 00 - 4 : 00 pm . please let me know what time is more convenient for  you .  shirley crenshaw  administrative coordinator  713 - 853 - 5290  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 31 / 2000  11 : 50  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" faiz , soussan \"\" on 03 / 30 / 2000 02 : 31 : 18 pm  to : \"\" ' vkamins @ enron . com ' \"\"  cc :  subject : houston visit  dear vince ,  greetings from ny & hope all is well . as you may recall from the rog real  options conference in ny , i ' d indicated the opportunity to visit with you  next time i ' m in houston . i ' ll be there during 4 / 18 - 4 / 21 & wonder if we can  pls meet on wed . 4 / 19 in your offices . would appreciate it if you can pls  let me know whether you ' re available then ( i ' m flexible on the schedule  particulars ) . if not , pls let me know whether 4 / 18 ( afternoon ) , 4 / 20  ( afternoon ) , or 4 / 21 ( morning ) will work for you .  i really look forward to the opportunity & would appreciate to learn more  about how you ' ve instigated the real options thinking in enron and  especially its integration within the organizational & incentive matters .  many thanks ,  soussan faiz  mgr . of global valuation services  texaco inc .  ( 914 ) 253 - 4187\",0\n\"Subject: volatility curves - linked from reuters  hi tanya ,  attached are the live reuters - linked volatility curves . please don ' t  re - establish links , as i don ' t think that your telerate connection works in  the same way as ours in london . i will get back to you on cleaning up the  historical forward curve database as i complete each metal . we can talk at  5 pm as we agreed .  regards ,  anjam  p . s . i think the fast dial is : 830 5383 or 830 35383\",0\n\"Subject: request submitted : access request for anita . dupont @ enron . com  you have received this email because you are listed as an alternate data  approver . please click  approval to review and act upon this request .  request id : 000000000012738  approver : stinson . gibner @ enron . com  request create date : 1 / 8 / 01 4 : 31 : 26 pm  requested for : anita . dupont @ enron . com  resource name : \\ \\ enehou \\ houston \\ common \\ research - [ read / write ]  resource type : directory\",0\n\"Subject: re : li sun  jeff ,  no problem . we shall invite her for an interview . a / a programs has real  problems with logistics .  vince  from : jeffrey a shankman 08 / 22 / 2000 05 : 11 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : li sun  hi vince , i ' m over in london so i ' m sorry for not calling this morning . i  met li last year and at wharton . i ' m sorry the a / a program did not contact  you earlier as they were supposed to . li is a great modeller and would love  to work in your group . thanks for taking care of her . i ' ll be in touch  later . jeff\",0\n\"Subject: presentation for cal berkeley  hello vince and john ,  i wanted to forward to you both the current presentations for campus . we can  tweak these however we feel appropriate to match cal berkeley on monday . i  believe that we can probably expect about 30 - 50 students ( based on interest  shown at the career fair ) . these tend to be fairly informal . i was thinking  that we could present in this order :  vince gives the enron overview presentation ( 30 minutes )  john gives the global technology specific presentation ( 20 minutes )  ashley goes over recruiting information at the end ( 10 minutes )  please take a look at each presentation and speaker notes to ensure that you  feel comfortable with the layout and content . i am meeting with john today  at 1 : 30 - vince if you would like to get together and discuss as well that  would be great .  if you have any questions , please don ' t hesitate to contact me . 3 - 3589  thanks ,  ashley  vince , here is a copy of the current enron overview presentation . there are  also speaker notes that go into great detail .  john , here is a copy of the current technology presentation for carnegie  mellon . the only changes will be to the recruiting dates at the end . there  are also speaker notes that go into greater detail . - - - >\",0\n\"Subject: my resume  vince :  attached please find my resume .  thanks ,  ding  6 - 7072\",0\n\"Subject: benchmarking questionnaires  vince ,  attached are two sets of benchmarking questionnaires for your kind perusal .  regards ,  khairuddin  ( see attached file : q _ bench _ rms . doc ) ( see attached file : feb 5 - 17 , 2001 . doc )  disclaimer : this e - mail and any files transmitted with it ( \"\" message \"\" )  is intended only for the use of the recipient ( s ) named above and may  contain confidential information . you are hereby notified that the  taking of any action in reliance upon , or any review , retransmission ,  dissemination , distribution , printing or copying of this message or any  part thereof by anyone other than the intended recipient ( s ) is strictly  prohibited . if you have received this message in error , you should  delete this message immediately and advise the sender by return e - mail .  opinions , conclusions and other information in this message that do not  relate to the official business of petronas or its group of companies  shall be understood as neither given nor endorsed by petronas or any of  the companies within the group .  ( embedded image moved to file : pic 24962 . pcx )  - q _ bench _ rms . doc  - feb 5 - 17 , 2001 . doc  - pic 24962 . pcx\",0\n\"Subject: platts energy trader free trial  please find today ' s complimentary issue of platts energy trader attached  above . if you have any questions or would like to subscribe now , call  877 - 286 - 8897 or 212 - 904 - 2004 ; e - mail , info @ platts . com . meanwhile , we hope you  enjoy today ' s issue of platts energy trader .  if you need to download acrobat reader to read this file , go to  www . adobe . com . to stop the free trial , hit reply and type \"\" stop trial . \"\"  - eto 32301 . pdf\",0\n\"Subject: follow - up meeting on wharton  good morning everyone :  vince would like to schedule a follow - up meeting on wharton as soon as  we can agree on a time .  how does monday the 18 th look for you ? vince is free from 9 : 30 am -  11 : 30 am and from 1 : 00 pm - 4 : 00 pm .  please let me know if you are available during any of these times .  thanks !  shirley crenshaw  3 - 5290\",0\n\"Subject: trip to houston  here is some information on one of the students invited to enron next week by  tom gros .  - - stinson  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 02 / 10 / 2000  05 : 24 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" juan - carlos o . ferrer \"\" on 02 / 10 / 2000 04 : 17 : 17 pm  to : stinson . gibner @ enron . com  cc :  subject : trip to houston  hi stinson , i am juan - carlos ferrer , also ph . d . student working with gabriel  bitran and going to houston with amit and paulo on the 16 th . paulo told me  that you are interested in some information of us before going to houston .  well , i am form chile , married , and father of two girls ( 3 and 2 ) . i  graduated from the engineering school at the catholic university of chile in  1995 having followed the track in computer science during the last 3 years of  school . then , late in 1995 , i was hired by the industrial engineering  department as a full - time assistant professor of management science , where i  was teaching and doing research until june 1997 . in august 1997 i came to  boston to join the operations management group in the sloan school of  management here at mit . i already finished courses and qualifiers  requirements of my program , so now i am trying to come up with an interesting  research topic to develop my ph . d . thesis .  i have been dealing with some interesting topics during the last months but  since enron appears as an opportunity to find a more challenging and  appealing problem to me i decided to explore it . my intention in going to  visit enron is to have a better understanding of the bandwidth business in  order to define a problem to work with . i would really like to do a thesis  that involves internet issues and yield management models , in the line of  amit ' s work .  any other information or question you need , please feel free to contact me .  looking forward to meeting you on the 16 th .  juan carlos ferrer  ? ? - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  ? ? ? ? ? ? ? ? ? juan - carlos o . ferrer  ? ? ? ph . d . student , operations management  ? ? ? ? sloan school of management - m . i . t .  ? ? ? ? of : ( 617 ) 253 - 3597 fax : ( 617 ) 258 - 7579  ? ? ? ? ? ? http : / / web . mit . edu / jferrer / www /  ? ? - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -\",0\n\"Subject: this summer ' s houston visits  richard has agreed to pay for matt ' s visit , so here ' s the schedule so far :  kirstee all of july , all of september . ( kirstee ' s personal commitments mean  she needs to be in the uk for august . )  ben all of october . ( no crossover with kirstee , ensures var / credit cover  in london office . )  steve 2 - 3 weeks in july , first 3 weeks of september .  ( no crossover with matt , ensures power cover in london office . )  matt a couple of weeks in august . ( preferably the hottest ones . )  anjam to be arranged at anjam and houston ' s mutual convenience .  - - - - - - - - - - - - - - - - - - - - - - forwarded by steven leppard / lon / ect on 04 / 28 / 2000  04 : 19 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  steven leppard  04 / 28 / 2000 10 : 15 am  to : vince j kaminski / hou / ect @ ect , dale surbey / lon / ect @ ect  cc : anjam ahmad / lon / ect @ ect , benjamin parsons / lon / ect @ ect , kirstee  hewitt / lon / ect @ ect , matthew d williams / lon / ect @ ect , steven  leppard / lon / ect @ ect  subject : this summer ' s houston visits  vince , dale  here are our proposals for houston visits from our group :  kirstee all of july , all of september . ( kirstee ' s personal commitments mean  she needs to be in the uk for august . )  ben all of october . ( no crossover with kirstee , ensures var / credit cover  in london office . )  steve 2 - 3 weeks in july , first 3 weeks of september .  anjam to be arranged at anjam and houston ' s mutual convenience .  matt not a permanent research group member . i ' m asking richard ' s group to  pay for his visit , probably in august .  steve\",0\n\"Subject: re : wharton dinner 1 / 18 / 01  jennifer ,  thanks for your note ! as these trip details get more formalized , i ' ll keep  yopu copied . for now , know that there are approximately 18 wharton students  participating in 3 research projects - - enron proposed topics - - called the  \"\" tiger program \"\" . they ' ll be visiting enron , arriving houston thursday the  18 th , dinner at churrasco ' s ( their choice ) on the 18 th , enron meetings on the  19 th .  as the details unfold , i ' ll keep you and jeff copied .  thanks !  - - christie .\",0\n\"Subject: re : action learning project information  vince ,  thanks for the information .  kathy  at 01 : 03 pm 1 / 8 / 01 - 0600 , you wrote :  > kathy ,  >  > enron will be represented by myself ( vince kaminski ) and kenneth parkhill .  >  > vince  >  >  >  >  >  > kathy spradling on 01 / 05 / 2001 05 : 04 : 21 pm  >  > to : ( recipient list suppressed )  > cc : chamberl @ rice . edu , castro @ rice . edu , spradlin @ rice . edu  > subject : action learning project information  >  >  > dear company representative ,  >  > we are pleased to announce that your company ' s proposal has been selected  > as a potential project in the jones graduate school of management ' s action  > learning project ( alp ) program . as indicated in the alp brochure , company  > representatives are invited to attend the alp program introduction and  > student networking session on wednesday , january 10 . please rsvp to kathy  > spradling , mba program coordinator , at 713 - 348 - 3313 or e - mail her at  > spradlin @ rice . edu by monday , january 8 to let her know if you plan to  > attend the session . please provide your company name and the names of  > representatives attending the session so nametags can be prepared . dress  > is business casual . below is the schedule of events :  >  > 8 : 30 9 : 00 a . m .  > ? continental breakfast and setup of your company table  > ? farnsworth pavilion ( located in rice student center )  >  > 9 : 00 9 : 45 a . m .  > ? introduction and program overview with company representatives , alp  > administration and faculty liaisons  > ? farnsworth pavilion ( located in rice student center )  >  > 10 : 00 12 : 00 p . m .  > ? student networking session with company representatives and  > first - year students  > ? grand hall ( located in rice student center )  >  > the alp program introduction and student networking session will be held in  > the rice student center ( numbers 10 and 11 on the campus map sent with your  > acceptance letter ) . please contact kathy spradling if you need an  > additional map faxed to you . there is a large amount of construction taking  > place on campus . once the visitor ' s lot near the rice memorial center is  > full , we recommend you park in the stadium lot in the designated visitor  > area and take the shuttle bus to the rice memorial center . make sure to  > let the bus driver know your destination .  >  >  > the mba program office has reserved the grand hall for the student  > networking session . each company represented will have a table set up with  > signage for your company . you may bring additional materials you feel  > might be of interest to students such as company brochures , articles and  > packets . due to the limited space , we are discouraging the use of display  > boards in the networking session . unfortunately , no internet connections  > will be available for use during the session .  >  > again , thank you for your interest in rice . we look forward to working  > with you , and hope to see you on wednesday , january 10 .  >  > carrie miller  > pam castro  > kathy spradling  >  >  >  > kathy m . spradling  > mba program coordinator  > jesse h . jones graduate school of management  > rice university  > 6100 main street , ms 531  > houston , texas 77005 - 1892  > phone : ( 713 ) 348 - 3313  > fax : ( 713 ) 348 - 5251  > email : spradlin @ rice . edu  > http : / / www . rice . edu / jgs  > e - mail : spradlin @ rice . edu  > http : / / www . ruf . rice . edu / ~ jgs /  kathy m . spradling  mba program coordinator  jesse h . jones graduate school of management  rice university  6100 main street , ms 531  houston , texas 77005 - 1892  phone : ( 713 ) 348 - 3313  fax : ( 713 ) 348 - 5251  email : spradlin @ rice . edu  http : / / www . rice . edu / jgs  e - mail : spradlin @ rice . edu  http : / / www . ruf . rice . edu / ~ jgs /\",0\n\"Subject: re : ken lay ' s speech  is there a difference though - - is the 460 part of the 1300 ?  alhamd alkhayat  enron corp .  + 1 ( 713 ) 853 - 0315  this message ( including any attachments ) contains confidential information  intended for a specific individual and purpose , and is protected by law . if  you are not the intended recipient , you should delete this message and are  hereby notified that any disclosure , copying , or distribution of this  message , or the taking of any action based on it , is strictly prohibited .  maureen raymond @ ect  01 / 02 / 2001 01 : 20 pm  to : alhamd alkhayat / na / enron @ enron , steven j kean / na / enron @ enron , margaret  carson / corp / enron @ enron  cc : vince j kaminski / hou / ect @ ect  subject : re : ken lay ' s speech  the $ 1 . 3 trillion tax cut which is frequently quoted by the press is over 10  years , the $ 460 tax cut below is over five years .  maureen raymond  01 / 02 / 2001 12 : 44 pm  to : alhamd alkhayat / na / enron @ enron , steven j kean / na / enron @ enron , margaret  carson / corp / enron @ enron  cc : vince j kaminski / hou / ect @ ect  subject : ken lay ' s speech  i looked into the proposed tax cut by george w . bush . on his website he  proposes a $ 460 billion tax cut over five years .  the $ 213 billion \"\" energy tax \"\" imposed from 1999 to 2001 by higher energy  prices , is roughly half of bush ' s proposed tax cut .  maureen\",0\n\"Subject: re : vol rollup  john ,  we can approach this problem this way . basically you are asking how  the total variance ( 66 % ) 2 * 143 are distributed among 113 days and the last ? 30 days . assuming volatility for the first period is simgal and that in the ? last 30 ? days is sigma 2 , then ? ? ( 66 % ) 2 * 143 = sigmal 2 * 113 + sigma 22 * 30  futhermore , we can use nov - 00 implied volatility as a proxy to sigmal , then  we can  calculate sigma 2 which is the volatility for dec - 00 contract in the last 30  days .  sigam 2 = sqrt ( ( 66 % ) 2 * 143 - sigmal 2 * 113 ) / 30 .  make sense ?  zimin  john disturnal  07 / 09 / 2000 04 : 10 pm  to : zimin lu / hou / ect @ ect  cc :  subject : vol rollup  zimin , i am trying to understand what the near winter ng implied vols will  look like as they approach expiration . for example , is it possible to infer  what the implied volatility of the deco 0 ng contract will look like with 30  days to expiry given we know current vol ( 66 % ) and term to maturity ( 143  days ) ?\",0\n\"Subject: the solution presentation , text , & budget  vincent :  attached are the three documents i used in the presentation : the power  point slides , the budget , and the written description .  if you have any questions , you can e - mail me or call at 972 - 727 - 0999 , or  my cell phone at 214 - 213 - 2205 .  thanks for the support , and i look forward to working with you .  mak  - the text portion of the final solution presentation . zip\",0\n\"Subject: re : contact  vince ,  david ' s parents are coming to visit the weekend of the 7 th .  i will check with david , but i think the weekend of the 29 th is fine . i will  get back to you as soon as i can .  jana\",0\n\"Subject: candidate decisions  vince :  they are already asking for evaluations on the following individuals most  of whom were just interviewed yesterday ! however , i do not know who  bruce kamich is - i don ' t remember his interview at all .  can you give me something to tell toni .  thanks !  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 07 / 28 / 2000  11 : 17 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron north america corp .  from : toni graham @ enron 07 / 28 / 2000 02 : 39 am  to : shirley crenshaw / hou / ect @ ect  cc :  subject : candidate decisions  shirley ,  could you please give me a yes , no , maybe decision on the following  candidates interviewed :  bruce kamich  philip roan  jerzy jarosz  bruce james  oleg bondar  thanks  toni\",0\n\"Subject: re : fw : possible visit to enron by professor nalin kulatilaka of  boston university  iris ,  please , check with shirley . she keeps my calendar up to date .  also , we got a 2 nd desk for you with the credit group  on the 23 rd floor . you can divide your time  bet the 19 th floor and the 23 rd floor to stay in touch with the  business unit . please , check with vasant and he will introduce you to the  credit team here in houston ( jeff kinneman , craig chaney ) .  also , please plan for a trip to london in 3 - 4 weeks .  vince  vince  from : iris mack / enron @ enronxgate on 04 / 02 / 2001 09 : 57 am  to : vince j kaminski / hou / ect @ ect  cc : stinson gibner / hou / ect @ ect  subject : re : fw : possible visit to enron by professor nalin kulatilaka of  boston university  hi ,  thanks for your prompt response .  nalin kulatilaka wants to visit when you are in town . what are good  thursdays for you ?  thanks ,  iris  - - - - - original message - - - - -  from : kaminski , vince  sent : monday , april 02 , 2001 8 : 14 am  to : mack , iris  cc : gibner , stinson ; kaminski , vince  subject : re : fw : possible visit to enron by professor nalin kulatilaka of  boston university  iris ,  i wrote an endorsement for his book on real options ( it was on the cover  under jeff skilling ' s  name ) . let ' s invite him to the thursday lunch .  vince  from : iris mack / enron @ enronxgate on 03 / 29 / 2001 05 : 52 pm  to : stinson gibner / hou / ect @ ect , stinson gibner / enron communications  cc : vince j kaminski / hou / ect @ ect  subject : fw : possible visit to enron by professor nalin kulatilaka of boston  university  hi stinson ,  a colleague of mine - professor nalin kulatilaka of boston university -  is interested in visiting enron to give a talk on work he is doing in the  broadband area .  please see the forwarded emails for further information and available  dates .  can you let me know if we can give him a forum at one of our thursday  research lunches or a friday brown bag lunch ?  thanks ,  iris  - - - - - original message - - - - -  from : nalin kulatilaka @ enron  com ]  sent : thursday , march 29 , 2001 5 : 40 pm  to : mack , iris  cc : lin , martin  subject : re : possible visit to enron by professor nalin kulatilaka of boston  university  hi iris  i have two different hats to wear in talking to enron . one is as a  financial economist . the other as the director of the newly formed \"\" global  mobility innovation initiative ( gmii ) - - this is the research project  funded by lucent , involving bu , lbs , and insead , to study various aspects  of the mobile internet ( read 3 g ) .  on the former i am working with a couple of ph . d . students in understanding  ( a ) details of how having physical supply ( inventory ) can be used by a  market maker . this is a problem that has been studies in the context of  specialists inventory in the stock market but i think really interesting in  the way enron does it in some of the newer markets like bandwidth . i  think this is a big issue in lighting up all the dark fiber that is in the  ground .  ( b ) how enron is disciplining the internal decision making process with  market . this is in many ways the critical aspect of real options that  most finance people miss - - having options is one thing but exercising them  and realizing their value is another . all of the incomplete contracting ,  asymmetric information , and incentive issues are ignored in real options  valuation models . but they are real in practice . my impression is enron ' s  real success is in putting place an organization that is able to mitigate  these problems by imposing a market disciplining .  ( c ) how enron manages the various books that involve physicals , financials ,  credit etc . this is specially important when many of the real assets have  options features and therefore , include non - linear risk profiles . the  story of gas is pretty well understood but not many of the others markets  enron has been moving into over the last few years .  on the gmii front , i think that some interesting opportunities arise when  you think of the spectrum in a way similar to that of dark fiber . i am  working with several people at lucent on this issue . i think it would be  wonderful to engage in a conversation with enron and lucent folks in the room .  i can do a lunch time talk on any of these issues . perhaps we can discuss  some of these over a conference call . clearly , having vince kaminski in the  room would be very important to me .  as for schedules , the first 3 weeks of april are horrible . april 26 / 27 ,  may 3 / 4 are good for me .  regards  nalin  at 06 : 56 pm 03 / 22 / 2001 , mack , iris wrote :  > hi ,  >  > as we briefly discussed , i spoke with one of my colleagues ( dr .  > martin lin ) about your visiting enron to give a talk and to spend some  > time with us to discuss you work in telecommunications , real options ,  > etc .  >  > martin and i are working on various broadband related problems .  >  > we thought it might be helpful if you let us know a bit more about  > the following :  > * when you want to come ( the research group has weekly  > catered lunch on thursday and brown bag lunches on every other friday ) .  >  > * a description of what you want to talk about with respect  > to telecoms , broadband , etc .  > * who you would like to meet with me - vince kaminski ( our  > boss ) , any other of our colleagues in research , broadband , etc .  > . . . . . . . . . . . . . . . . . etc .  >  >  >  >  > look forward to hearing from you .  >  > regards ,  > iris\",0\n\"Subject: jury duty  shirley ,  i have been summoned for jury duty and plan to be out tomorrow , wednesday , may 2 .  thanks ,  stinson\",0\n\"Subject: restricted list  neither ena / rac / egf employees nor family members or others living in their  household or financially dependent on the ena / rac / egf employee may purchase  or sell securities of any entity ( or derivatives thereof ) listed on the  restricted list for your or their personal or related accounts or recommend  the purchase or sale of such securities to any person , except with the prior  approval of the compliance department in consultation with the ena legal  department .  in addition to the trading restrictions above , should you at any time possess  non - public material information about any public company , you , your family  members and anybody that is financially dependent on you , are restricted from  trading in that issue , and you may not disclose the non - public material  information to anyone that does not have a business need to know .  company name stock symbol  3 tec energy corp . tten  adrian resources adrrf  beau canada exploration ltd bau cn  belco oil & gas corporation bog  bonus resource services corp bou  brigham exploration bexp  canfibre group ltd . cfgl  carrizo oil & gas inc . crzo  costilla energy cose  crown energy croe  cynet , inc . cyne  cypress energy cyz  esenjay exploration esnj  firstworld communications inc . fwis  hanover compressor co . hc  ice drilling enterprises inc . idf  industrial holdings , inc . ihii  inland resources , inc . inln  kafus environmental industries , inc . ks  nakornthai strip mill public co ltd nsm set  paladin resources plc plr ld  paradigm geophysical pgeof  place resources , inc . plg cn  quanta services inc . pwr  queen sand resources , inc . qsri  quicksilver resources inc . kwk  saxon petroleum , inc . sxn cn  startech seh cn  syntroleum corp . synm  tejon ranch corp . trc  titan exploration texp  transcoastal marine services , inc . tcms  the restricted list is solely for the internal use of ena / rac / egf . no one  may engage in discussions regarding whether a security is or is not on the  restricted list with persons outside ena / rac / egf without specific clearance  from the compliance department in consultation with the ena legal department .  in addition to the above , you are reminded that pursuant to enron corp . ' s  risk management policy ( \"\" policy \"\" ) , no ena / rac / egf employee may engage in the  trading of any \"\" position \"\" ( \"\" position \"\" means any commodity , financial  instrument , security , equity , financial asset or liability that are  authorized for trading in the policy for the benefit of any party other than  ena / rac / egf , whether for his / her own account or the account of any third  party , where such position relates to ( i ) any commodity , financial  instrument , security , equity , financial asset or liability which falls within  such employee ' s responsibility at ena / rac / egf or ( ii ) any energy commodity .  the prohibitions listed above do not replace or modify the policies set forth  in ena ' s policies and procedures regarding confidential information and  securities trading , enron corp . ' s risk management policy , or enron corp . ' s  conduct of business affairs . should you have any questions regarding the  above , please contact me at ext . 31939 .\",0\n\"Subject: re : dinner with your training colleague 11 / 15 ?  ehud ,  november 15 is a bad day for me . i shall be in san antonio for our  annual management conference .  practically everybody who counts in enron will be there .  still no response from louise . i shall catch her tomorrow  in person .  vince  \"\" ehud i . ronn \"\" on 11 / 07 / 2000 09 : 04 : 36 am  to : vince . j . kaminski @ enron . com  cc :  subject : dinner with your training colleague 11 / 15 ?  vince ,  good morning .  further to our conversation thereon during your austin visit 10 / 11 , i am  writing at this time to inquire whether we might schedule a circa 7 p . m .  dinner next wed . 11 / 15 , to include the participation of your enron training  arm colleague . we could then discuss ut partcipation in enron training  activities , as well as the forthcoming spring 2001 conference .  best ,  ehud  ehud i . ronn  jack s . josey professor in energy studies  department of finance  mccombs school of business  university of texas at austin  austin , tx . 78712 - 1179  voice : ( 512 ) 471 - 5853  fax : ( 512 ) 471 - 5073  internet : eronn @ mail . utexas . edu \",0\n\"Subject: more details on karolyi visit  vince :  we will have cocktails with andrew at mi luna in the village ( on  university , south side of the street between kirby and morningside ) at 5 : 30  monday evening . you can join in there or meet up with the dinner crew at  the appointed place .  we ' ll see you monday .  bbo\",0\n\"Subject: re : telephone interview with the enron corp . research group  dear :  thank you for giving me an opportunity to have an interview with enron corp .  i am looking forward to hearing the result from you . in case you  are interested in reading some of my works , you can go to  best regards ,  seksan .  - - - - - original message - - - - -  from : shirley . crenshaw @ enron . com [ mailto : shirley . crenshaw @ enron . com ]  sent : tuesday , june 20 , 2000 4 : 45 pm  to : centered @ engin . umich . edu  cc : vince j kaminski ; pinnamaneni krishnarao ; osman sezgen  subject : re : telephone interview with the enron corp . research group  seksan :  this friday , the 23 rd , at 2 : 30 pm eastern time ( 1 : 30 pm central ) would work  fine . please let me have the telephone number you can be reached at .  regards ,  shirley crenshaw  seksan kiatsupaibul on 06 / 20 / 2000 03 : 19 : 37 pm  to : shirley crenshaw  cc : vince j kaminski , pinnamaneni krishnarao  , osman sezgen  subject : re : telephone interview with the enron corp . research group  dear :  thank you for giving an opportunity to have an interview with enron corp .  this friday afternoon from lpm to 4 pm eastern time would be good for me .  please let me know whether or not the time is also convenient for you .  best regards ,  seksan .  on tue , 20 jun 2000 , shirley crenshaw wrote :  >  >  > good afternoon mr . kiatsupaibul :  >  > the enron corp . research group would like to conduct a telephone  interview  > with you at your convenience .  >  > please let me know your availability this friday , the 23 rd and during the  week  > of june 26 - 30 th and i will shedule the interview .  >  > the interviewers would be :  >  > vince kaminski managing director  > p . v . krishnarao director  > osman sezgen manager  >  > look forward to hearing from you .  >  > regards ,  >  > shirley crenshaw  > administrative coordinator  > enron corp . research  > 713 / 853 - 5290  > email : shirley . crenshaw @ enron . com  >  >  >  >  >  >\",0\n\"Subject: talk to us  over the last several years , we ' ve received numerous questions and candid  comments from many of you on a wide range of topics during our espeak  sessions and through the office of the chairman online mailbox and  voicemail . while espeak is an open , informal chat between employees and  management , the office of the chairman online mailbox and voicemail box are  designed as confidential upward feedback tools for employees who choose  anonymity . we are pleased that many of you have openly expressed your  thoughts and your identity , which made it possible for us to quickly respond  to your questions and concerns . this is the kind of work environment we all  must strive for at enron , and we encourage you to continue sending us  comments about the things that are important to you .  many times , however , we wanted to respond to those of you who contacted us  anonymously with your good ideas , observations and questions . we now have a  way to do this while maintaining your confidentiality . in the future , when  we receive an anonymous question or comment from an employee , both the  question and our response will be posted on emeet . this will allow us to  answer all the questions that we receive , and it will give other employees an  opportunity to provide their insight , if they choose to do so , since emeet is  an open discussion board .  remember : you can send your questions and comments to us in two ways :  - email to office of the chairman , or  - office of the chairman voicemail box at 713 - 853 - 7294 , which is a  confidential call  promoting open and honest communication is consistent with our vision and  values and absolutely vital to our continued success as a company . so don ' t  be hesitant or afraid to speak your mind . we want to hear from you .\",0\n\"Subject: bio ' s  hi john !  so sorry for the delay in getting these to you this evening - - - \"\" connectivity \"\"  issues . . . a few monks too few ! ! ( haha ) .  here are the most current bio ' s for jeff and ken :  .  i thoroughly enjoyed our dinner this evening and look forward to seeing you  tomorrow !  thanks !  - - christie .\",0\n\"Subject: re : fw : re : valuation  . . . . see you there . . .  steve  - - - - - original message - - - - -  from : kaminski , vince  sent : tuesday , january 23 , 2001 5 : 28 pm  to : stock , stephen  subject : re : fw : re : valuation  steve ,  around 6 : 00 p . m .  vince  from : stephen stock / enron @ enronxgate on 01 / 23 / 2001 05 : 26 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : fw : re : valuation  vince ,  i ' m in all this week . . . . . what time are you going for the bus tonight ?  regards  steve  - - - - - original message - - - - -  from : stevestock @ pagenetips . com @ enron  sent : tuesday , january 23 , 2001 4 : 42 pm  to : stock , stephen  subject : fwd : re : valuation  - - - - - -  from : vince kaminski  subject : re : valuation  steve ,  please , let me know when you come back .  i have detected a tendency to implement different  approaches to valuation in the past .  to some extent , it reflects the absence of formal  rules for sign - off on the valuation techniques  which , in turn , reflects , the turf wars and the desire by the  originators to control the outcomes .  vince  stevestock @ pagenetips . com on 01 / 19 / 2001 06 : 53 : 14 pm  to : vince . j . kaminski @ enron . com  cc :  subject : valuation  vince ,  i ' d like an opportunity to talk to you about valuation .  i ' m hearing confusing messages about the way that the uk it team and the uk  traders get their valuation code aparently signed off by research , while  here . . . you provide it for our guys to wrap up .  we have now a situation where the uk team are using a home grown valuation  piece called dove , where results differ from those of the equivalent usa  portcalc .  i need to break through the pride barriers and the \"\" not built here \"\"  syndrome , and try to do the right thing , but i don ' t beleive i can do that  without you guidance .  i ' m scared that if we diverge too much we will never work globally on these  systems .  steve  - - - - - - - - - - - - - - - - - - - - - - - -  tel : 713 - 345 - 8980  cell : 281 - 541 - 1862  page : stevestock @ pagenetips . com  steve  - - - - - - - - - - - - - - - - - - - - - - - -  tel : 713 - 345 - 8980  cell : 281 - 541 - 1862  page : stevestock @ pagenetips . com\",0\n\"Subject: re : australian energy risk 2000  lucie ,  yes , i have received the package .  vince  \"\" lucie deathridge \"\" on 05 / 24 / 2000 05 : 31 : 09 pm  please respond to \"\" lucie deathridge \"\"  to :  cc :  subject : australian energy risk 2000  thank you for agreeing to speak at the australian energy risk 2000  conference in sydney in july . last week i sent a speaker pack to you . i  would be grateful if you would confirm receipt of this by return of email .  in the event that you have not received it please let me know immediately  and send me your full contact details . i am the co - ordinator of this  conference and please do not hesitate to contact me if you have any queries .  regards  lucie deathridge  conference co - ordinator  risk publications  ?  tel : ( + 44 ) ( 0207 ) 484 9867\",0\n\"Subject: re : program attached ; march ny ro conference / participation  confirmation  vince . thanks very much  at 07 : 24 d _ 01 / 04 / 00 - 0600 , you wrote :  >  >  > lenos ,  >  > thank you again for the invitation . i shall be glad  > to attend and speak on the topic indicated in the program .  > one correction : i am a vp .  >  > thanks  >  > vince  >  >  >  >  > lenos trigeorgis on 01 / 01 / 2000 01 : 17 : 11 pm  >  > to : gordon . sick @ rogroup . com  > cc : gordon . sick @ rogroup . com ( bcc : vince j kaminski / hou / ect )  > subject : program attached ; march ny ro conference / participation  confirmation  >  >  >  > the current version of the conference program is attached  >  > please confirm your participation as speaker ( and confirm your presentation  > title as listed on the attached conference program ) by next tuesday . the  > program is about to be sent to the printers next week  >  > please cc your reply also to gordon . sick @ rogroup . com  >  > lenos  >  >  > attachment converted :  >  >  >  > lenos trigeorgis  > professor of finance  > university of cyprus  > dept of business  > 75 kallipoleos , po box 20537  > cy 1678 nicosia cyprus  >  > tel : + 357 2 892261  > fax : 339063  >  >  >  lenos trigeorgis  professor of finance  university of cyprus  dept of business  75 kallipoleos , po box 20537  cy 1678 nicosia cyprus  tel : + 357 2 892261  fax : 339063\",0\n\"Subject: issue 4  - http : / / www . financewise . com / risk  riskbrief issue 4  from financewise : the only dedicated financial search engine  22 march 2000  dear riskbrief subscribers  the fourth edition is here , and this month ' s theme is weather .  weather derivatives is increasingly a hot topic on the web at the  moment . four sites have been launched in the last three months ,  including tradeweather . com , weather - risk . com and . com .  along with the weather trading site from liffe ( i - wex . com ) ,  launched in january , and the introduction last september of  weather futures on the chicago mercantile exchange ( cme ) , there is  something of a rush on .  to provide you with an online resource to weather risk , we have  an introductory guide , two site reviews , 22 articles and an  exclusive book offer .  http : / / www . tradeweather . com ( see site reviews )  http : / / www . weather - risk . com ( see site reviews )  http : / / www . . com  http : / / www . i - wex . com  http : / / www . cme . com / news / weather 921 . html  how fast will the weather derivatives market grow ? will there be  enough liquidity ? let us know what you think .  in the meantime , please enjoy the rest of this month ' s issue ,  with 14 articles on currency trading , e - trading , and news of conferences ,  jobs and more .  regards  rob minto  producer , financewise  rminto @ risk . co . uk  before you forget , why not forward this e - mail to a  colleague / friend now , who might find our coverage of  risk management on the web a useful resource ?  contents :  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  > > weather risk guide  > > site reviews  > > articles and features : weather risk , e - trading , currency trading  > > new # 1 site  > > book special offer : insurance and weather risk  > > conferences & training  > > new jobs  please view the newsletter online and get the full story :  this month ' s sponsor :  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  credit :  the new forum for international credit markets .  with its mix of news , features , data and technical articles ,  credit magazine is a vital source of information for all investors ,  issuers and market professionals operating in the global  credit markets .  subscribe before april to claim a 40 % discount  http : / / www . creditmag . com  weather risk guides :  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  introduction to weather derivatives from the cme . a market history ,  plus a discussion of pricing and analyzing weather contracts .  an overview article from james roemer of the weatherrisk institute .  bob dischel ' s site on weather derivatives , with articles , links and  seminar details .  http : / / www . wxpx . com  for further links to weather derivatives online see the html version :  site reviews :  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  who is doing what on the web ? a double helping of site reviews this month :  - new bond trading site from jp morgan bear stearns , chase  manhattan and moneyline  - weather derivatives trading & info : enron ' s weather - risk . com  & tradeweather . com  - foreign - exchange trading from financial market solutions  - the french tr , sor site covering sovereign bond issues  - algorithmic ' s risk management methodology - ' mark - to - future '  - rent applications and analytical tools from cygnifi , a new web  offering from jp morgan , bridge & sybase  - revamped inventure . com site - provider of data & analytics  - keep up to date on new - issue markets with s & p ' s new site  articles & features :  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  14 new articles and features have been added to the financewise  risk management special report . the new supplements are :  - electronic trading  - currency risk  continuing our theme of weather , we also have two editions of  weather risk . these 22 articles include glossaries and technical  articles on data and forecasting , options pricing , emissions  trading and weather - linked bonds .  # 1 site  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  the new # 1 site on financewise is the picture of risk site  from risk metrics , displacing finmath . com ( triple # 1 award winner )  as the most visited site in february . click below to view the  latest rankings  http : / / www . financewise . com / rankings  book special offer : exclusive  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  and completing our weather coverage for this month , there is a  10 % discount available exclusive to riskbrief subscribers on :  \"\" insurance and weather derivatives  from exotic options to exotic underlyings \"\"  for further details and information see :  there are other special offers available on the risk books site :  http : / / www . riskbooks . com  conferences & training  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  full details are now online for risk 2000 . risk ' s 6 th annual us  derivatives and risk management congress will be held in boston  on june 13 & 14 . keynote speakers : myron scholes and jeffrey skilling .  jobs  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  this month , the search term \"\" jobs \"\" has moved up to 5 th position in the  financewise rankings .  http : / / www . financewise . com / rankings  if you were one of those searching for \"\" jobs \"\" , don ' t forget our own  job search section . it currently holds 46 treasury and risk management , a  record 29 additions since the last brief .  visit the job search and select the job category  \"\" finance : treasury and risk mgmt \"\" .  http : / / www . financewise . com / jobs  * * *  also :  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  please e - mail us if there is anything you would like to see  in this newsletter , or any questions that you would like  addressed . riskbrief now reaches over 1200 subscribers  worldwide . so if you have something interesting to say , or  an opinion to share with all your fellow subscribers send  your comments to :  rminto @ risk . co . uk  p . s . also suggest sites for us to review / index  if this has been forwarded to you , please subscribe to  receive your own copy at :  are you registered with financewise ? if not , please click :  http : / / www . financewise . com  you will then have the full functionality of the site .  if you have any problems with this newsletter , please  contact me :  rminto @ risk . co . uk  to unsubscribe , write to financewise - unsubscribe @ listbot . com  to unsubscribe , write to financewise - unsubscribe @ listbot . com\",0\n\"Subject: announcing the third annual texas finance festival  hello friends ,  attached is the program announcement for the third edition of the texas  finance festival to be held in san antonio ( once again ) . you will note  that we have some new and fun entertainment lined up to accompany the  superb program put together by sheridan titman ( and company ) .  you can help us by registering early so we have put a discount into the  registration fee if you get your registration form and check in by january  15 , 2001 . however , we would really appreciate hearing from you asap if you  do plan to come via return e - mail .  looking forward to seeing you all again in the spring .  john  - announcerev . doc  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: tropical cyclones  dear all ,  yesterday , i mentioned to vince the inhouse modelling capabilities and the  impact weather and the weather forecast can have on some of enron ' s  operations and risk management positions . for this reason i have attached  three files , two of those show to tropical cyclones off the coasts of  australia , i . e . rachel and drena . tropical cyclones pose a significant risk ,  and an early warning system can be part of a better risk strategy .  please , note that the modelling system has been further improved since the  simulation was done .  also , we can focus on another large problem and associated risk . dust storms  can pose a significant risk to a number of industries , and the prediction  of such events has been very difficult , if not impossible . for this reason a  gis database has been developed and coupled to the nwp model , which  allows prediction of such events in realtime . for the depicted event an  estimated 6 million tonnes of top soil was lost , and with it $ $ .  maybe we can set up a conference call to discuss  * the above mentioned points  * further improvments in forecasting based on the high resolution forecasts  * weather and climate on a global perspective for enron  * how to further improve the forecast for enron  regards ,  christian  ps : i tried to sent of this e - mail last night , but their appears to be a  limit of 10 mb , so i will send off the individual files . . . .\",0\n\"Subject: re : invitation to speak at power 2000  emma ,  mergers and acquisitions are not my cup of tea .  chairing stream 1 on day 1 seems to be a better match .  vince  \"\" emma wolfin \"\" on 12 / 15 / 99 10 : 51 : 34 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : invitation to speak at power 2000  hi vince  thanks for getting back to me quickly ! as it happens , all of the sessions  you suggested are already taken !  so , would you be interested in chairing either stream 1 on day 1 of the  conference - \"\" pricing and trading in the us power market \"\" or stream 3 on  day 2 of the conference - \"\" latest developments in the us energy industry \"\" .  for your information , the people presenting on day 1 in stream 1 include :  - spyros maragos , dynegy on volatility  - sanjeev khanna , pg & e on correlation  - gary morsches , southern on optimising information to accurately price and  trade electricity  - blake johnson , stanford university on modelling power prices  - craig pirrong , olin school of business , washington university on building  the optimal forward curve  on day 2 , stream 3 , there are only 3 talks in that stream , as after lunch we  will be breaking for plenary sessions and the industry briefing sessions  too . but the people who will be speaking in that stream are :  - venu nagali , stanford university on real options  - ram challa , sithe energies ( he was formerly at bankers trust ) on  generation assets  i have the slot on mergers and acquisitions in stream 3 on day 2 as still  available but i ' m not sure if that session is your area of speciality ? let  me know .  thanks vince and very much looking forward to working with you again .  emma  - - - - - original message - - - - -  from : vince j kaminski  to : emma wolfin  cc : vince j kaminski  date : wednesday , december 15 , 1999 11 : 36 am  subject : re : invitation to speak at power 2000  >  >  > emma ,  >  > it ' s your choice . i can chair the session of day 2 or speak on one of these  > topics .  > please , let me know what works for you .  >  > possible presentations :  >  > evaluating the effectiveness of insurance as a risk management tool  >  > or  >  > applying real option theory to value power plants  >  > or  >  > overcoming the difficulties of accurately estimating volatility  >  >  > vince  >  >  >  >  >  > \"\" emma wolfin \"\" on 12 / 14 / 99 04 : 08 : 03 pm  >  > to : vince j kaminski / hou / ect @ ect  > cc :  > subject : invitation to speak at power 2000  >  >  >  >  > hi vince  >  > it is my great pleasure to invite you to speak at power 2000 which will be  > in houston on 9 & 10 may 2000 .  >  > would you be interested in chairing one of the streams on day 2 of the  > conference ? or making a full presentation on one of the days ? please let me  > know which talks interest you . obviously , some of the talks are no longer  > available but i would like to give you a choice as much as possible . please  > could you get back to me asap on 212 925 1864 ext 151 or by return email .  >  > i very much hope you can make the dates as i ' m very keen to have you  > participate at power . not to flatter you unnecessarily , but i know that a  > lot of people come to our conferences to hear what you have to say .  >  > best regards  >  > emma  >  >  >  >  >\",0\n\"Subject: re : informs national conference at san antonio  hi ,  details of our session info . at the informs conference can be found at the  following link . it ' ll be in the afternoon of 11 / 6 ( monday ) .  since we have 5 speakers , i expect each of us will have no more than 20  minutes to present . please keep that in mind and e - mail me if you have  any questions . please also inform me if there will be any changes . look  forward to seeing you all in san antonio .  best regards ,  shijie  shi - jie deng  assistant professor  school of isye  georgia institute of technology  office phone : ( 404 ) 894 - 6519  e - mail : deng @ isye . gatech . edu  home page : http : / / www . isye . gatech . edu / ~ deng\",0\n\"Subject: marketpoint gas model  dear mr . braun :  as i mentioned , i have recently been reassigned here at enron . although i am  still in the enron transportation services group , i am no longer the most  appropriate contact for consideration of the altos gas model . i would  suggest you contact kim watson at 713 - 853 - 3098 or of course , vince kaminski ,  who will remain very much a part of the decision process .  regards ,  john goodpasture\",0\n\"Subject: candidate  vince :  here is the resume of samer ' s friend in azurix .  - - stinson  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 01 / 25 / 2000  10 : 20 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : chonawee supatgiat @ azurix on 01 / 11 / 2000 03 : 47 pm  to : stinson gibner @ ect  cc :  subject : candidate  hi dr . gibner , i just called you but you were not there . as you might  remember , i am working with samer and you was the one who interviewed me for  this position . samer and i now keep our eyes open for the other job  possibilities . i would like to know if there is a position available in enron  research group that i might fit in ? my updated resume and transcript are  attached in hector ' s e - mail . i am looking forward to hearing from you .  - chonawee  - - - - - - - - - - - - - - - - - - - - - - forwarded by chonawee supatgiat / hou / azurix on  01 / 11 / 2000 03 : 37 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  hector campos @ ect 01 / 11 / 2000 11 : 26 am  to : stinson gibner / hou / ect @ ect  cc : chonawee supatgiat / hou / azurix @ azurix , chonawee @ umich . edu  subject : candidate  stinson ,  here ' s my friend ' s information . he is looking for other opportunities within  enron . i think he would be a good candidate for  the research group . his extension at azurix is 6 - 9654 .  - hector  - - - - - - - - - - - - - - - - - - - - - - forwarded by hector campos / hou / ect on 01 / 11 / 2000 11 : 22  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" chonawee supatgiat \"\" on 01 / 10 / 2000 09 : 50 : 36 am  to : hector campos / hou / ect @ ect  cc :  subject : here they are  thank you , hector . attached are my resume and transcript .  - chonawee  - attl . htm  - chonaweecv . doc  - acadrep . txt\",0\n\"Subject: cell phone  for the next two days , you can call me on the cell # 832 - 724 - 6346 .  krishna .\",0\n\"Subject: moddeling support for dpc related issues  a quick update on the status of sandeep kohli .  he is working currently in my group . he is available on a very short notice to help you with  any quantitative modeling that can be required in making decisions regarding  our dpc strategy . in case you need his help , he can also rely on the support  of other members of my group with skills in different areas .  vince kaminski\",0\n\"Subject: names  sheila ,  i am attaching the list of people who are top retention priority .  the list is in the spreadsheet and the names are in the highlighted cell  ( red background ) .  i am also attaching the resume you asked for .  vince\",0\n\"Subject: re : enron case study update  fantastic . i look forward to receiving them . also , will you be keeping dec .  5 th open , in case there is a need for you to meet with additional executives ?  regards , cindy  \"\" john d . martin \"\"  11 / 06 / 2000 09 : 54 pm  to : cindy . derecskey @ enron . com  cc : vkamins @ enron . com  subject : re : enron case study update  wow ! all on the same day . that ' s super . thank you so very much . vince  is coming up to baylor on monday of next week and we will hash out our  question list then .  thanks  john  at 04 : 54 pm 11 / 6 / 00 - 0600 , you wrote :  > good afternoon john ,  >  > i just want to drop you a line to update you re : andy fastow . i have  > confirmed a one hour interview slot with mr . fastow in monday , december 4 th  > from  > 11 : 00 a . m . - noon . this is in addition to your schedule interviews with  > mr . lay and mr . skilling - outline below .  >  > if you have any questions , please do not hesitate to contact me at  > 713 - 853 - 5670 .  >  > regards ,  >  > cindy  >  >  > - - - - - forwarded by cindy derecskey / corp / enron on 11 / 06 / 2000 04 : 49 pm - - - - -  >  > cindy  > derecskey to : \"\" john martin \"\"  > cc : vince j  kaminski / hou / ect @ ect , christie patrick / hou / ect @ ect  > 10 / 31 / 2000 subject : re : enron case  study ( document link : cindy derecskey )  > 01 : 44 pm  >  >  >  >  >  > good afternoon john ,  >  > i hope things are well with you . i am writing to update you on the status  > of your meetings with andy fastow , ken lay and jeff skilling . i have  > arranged the following meeting dates and times with ken lay and jeff  > skilling , ( i am still trying to work with andy fastow ' s schedule ) :  >  > jeff skilling  > december 4 th  > 2 : 00 - 3 : 00 p . m .  >  > ken lay  > december 4 th  > 3 : 30 - 4 : 30 p . m .  >  > also , i will attempt to schedule the meeting with andy fastow for december  > 4 th for convenience - this will also allow us to possibly schedule  > additional meetings for the 5 th ( as needed ) . i will let you know as soon  > as i ' m successful .  >  > regards ,  >  > cindy derecskey  > university affairs  > enron corp .  >  >  >  >  >  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: enron case study  good morning mr . martin ,  i would like to introduce myself . i currently work with christie patrick and  michael b rosen in the enron university affairs department .  in recent discussions with christie , she has suggested that i liaise with you  and our management in preparation for your and vince kaminski ' s case study .  christie has forwarded recent emails sent by you suggesting a few convenient  times that work with your schedule . i will work with our management and do  my best to schedule one hour time slots for interviews that fit with your  outline .  initially , i will schedule interviews with : ken lay - chairman and ceo , jeff  skilling - president and coo , and andy fastow - cfo . if you feel that you  may need to speak with additional management , we will definitely try to work  something out the same day , so you don ' t have to travel back here . i will  forward your project outline to the aforementioned participants once the  interviews are scheduled . do you anticipate drafting specific questions ? if  so , i would greatly appreciate a copy when convenient .  i greatly look forward to working with you and i hope that we can touch base  very soon .  regards ,  cindy derecskey  enron university affairs  ( 713 ) 853 - 5670\",0\n\"Subject: london , new york , houston , financial mathematics june / july 2001  hello speakers !  my name is joanna vidal and i am the coordinator for the financial mathematics training course being in held on the following dates :  london on june 28 & 29  new york on july 9 & 10  houston on july 16 & 17  i am in the process of preparing the speaker packs which will include an updated contact information sheet with all your details . you will receive this pack shortly after you confirm your addresses . i will list them below and i ask that you please look it over and make any necessary corrections .  my contact details , for your information are :  joanna vidal  events coordinator  risk waters group  t : ( 212 ) 925 1864 ext . 197  f : ( 212 ) 925 7585 jvidal @ riskwaters . com www . riskwaters . com  thank you and i look forward to working with you .  duane seppi  carnegie mellon university  graduate school of industrial administrations  pittsburgh , pa 15213 - 3890  t : 001 412 - 268 - 2298  f : 001 412 - 269 - 8896  helyette geman  universite de paris dauphine  finance department au de ka grand ecole  corgy pontois , paris  france 95021  t : 00 33 60 - 807 - 4200  vincent kaminski  enron credit  1400 smith street  room ebl 962  houston , tx 77002 - 7361  t : 001 713 - 853 - 3848  f : 001 713 - 646 - 2503  peter nance  teknecon , inc .  1515 s . capital of texas highway  suite 101  austin , tx 78746  t : 001 512 - 732 - 7084  f : 001 512 - 732 - 7099  chris harris  innogy holdings place  windmill hill business park  whitehill way  swindon , wiltshire  uk , 5 n 5 6 pb  t : 44 793 387 - 7777  f : 44 793 389 - 7811  spyros maragos  dynergy , inc .  1000 louisiana street  suite 5800  houston , tx 77002  t : 011 713 - 507 - 6589  f : 001 713 - 767 - 5958  ehud ronn  university of texas at austin  department of finance  mccombs school of business  austin , tx 78712 - 1179  t : 001 512 - 471 - 5853  f : 001 512 - 471 - 5073\",0\n\"Subject: california update 1 / 22 / 01  executive summary  discussions continue today over bill ablx , focus will be on price and term .  new legislation introduced today whereby the state will try to save the  utilities from bankruptcy by taking ownership of utilities ' hydro assets in  exchange for rate increases .  wednesday , state receives bids from auction , rate ranges are expected to be  between 5 . 5 and 8 . 0 cents per kilowatt hour .  mid week , audit findings will be released ; audit expected to show pg & e ' s  utility subsidiary handed over $ 5 b to the holding company . the holding  company used $ 4 . 4 b to pay shareholder dividends and buyback stock .  state commissioned study to see who would benefit more in a possible  bankruptcy scenario . bankruptcy still very possible for both  companies .  davis concerned about possible ballot issues and how those may effect futue  solutions or \"\" bail out \"\" .  legislation  there will be continued discussion regarding bill ablx in the senate today .  the discussion will focus on the rate cap of 5 . 5 cents per kilowatt hour as  well as the term . assemblyman keeley , the author , indicated that he believed  5 . 5 cents was \"\" a fantasy \"\" and impossible to obtain .  today , assembly speaker bob hertzberg , d - sherman oaks and assemblyman fred  keeley , d - boulder creek will introduce legislation whereby the state  would temporary or permanently take both pg & e and edision ' s hydroelectric  facilities or transmission lines ( or both ) in exchange for keeping the  utilities out of  bankruptcy . the state would allow pg & e and edison to impose rate increases ,  however , the rates would not rise beyond the hikes approved earlier this  month by the cpuc as an emergency surcharge . the money collected from  consumers would go toward paying off their current debt and the state  would then enter into long - term contracts with power generators . under the  bill , the state of california would control 10 % of all california ' s  electricity . as you  can imagine , this legislation has not received unanimous praise . according  to recent corporate filings , pg & e ' s hydroelectric plants alone would be  valued  between $ 3 and $ 5 billion . this amount just happens to be what davis  estimates to be the final amount of money the state will have to guarantee  once  the audit of the utility companies is released and the political pressure is  escalated on the parent companies to absorb some of the $ 12 billion in debt .  davis  is telling people that he thinks the audit will show the state should help  with about $ 4 billion in debt , while the utilities , of course , say the full  $ 12 billion should  be covered .  on wednesday , state officials will see the results of sealed bids from energy  suppliers for long term contracts and see how close to reality their  effort to keep utility rates unchanged for consumers will come . davis  insists there are already several bids for his 5 . 5 cents per kilowatt hour  ceiling , though few  agree with his opinion . a handful of smaller , independent electricity  providers with about a 30 % share of california power market , indicated sunday  night they would come down to \"\" less than eight cents \"\" or less than half of  what they currently charge , in return for the stability of long term  contracts . because  consumers pay about 6 . 5 cents per kilowatt hour for electricity under current  puc rules , any hope california has to \"\" work off \"\" the back debts for these  utilities lies  in hitting something very close to davis ' price cap , without falling back on  higher prices for consumers . the level of bids will be particularly  important since bond  rating agencies moved to put the state of california on a credit watch on  friday , worried that there was no obvious long - term repayment plan for the  billions of  dollars they are on the hook for spending to keep the lights on in the state .  utility ' s audit  by the middle of this week , california auditors will release their findings  about how much money pg & e and socal edison actually owe to institutions  outside their own holding company structure . this will define the limits of  what the state will guarantee , if they guarantee any of the debt . the truly  explosive  part of the audit may be its findings that the two companies used billions of  dollars from consumers to buy back their own stock in recent years . a  source with  knowledge of the audits said the audit is expected to show that in the last  three years , pg & e ' s utility subsidiary handed over about $ 5 billion to the  holding  company . of that total , the holding company used $ 4 . 4 billion to pay  shareholder dividends and buyback shares of its stock .  another finding from the audit shows that state helped caused the current  power crisis when regulators , at the time of deregulation ( under the  direction of  former r - gov . pete wilson ) , forced the two utilities to sell at least half of  their power - generating plants . auditors are expected to say that if the  utilities  still owned all these plants , electricity would cost only 7 cents a kilowatt  hour , compared with over 30 cents an hour on average in december and january .  bankruptcy  the threat of bankruptcy is still very real for both utilities . senior  advisors said that these utilities were on the path often followed by utility  companies that  ended in bankruptcy . as all the parties involved hunker down for another  intensely political week , they all remain determined to avoid bankruptcy , but  to push  this as close to the brink as possible in the hopes of squeezing out an  advantage . under such conditions , the risks of one or more of the players  fumbling and  triggering the great unknowable outcome of bankruptcy , is still quite high .  california ' s political leaders order a series of independent analyses to  determine who would suffer most in a case of bankruptcy , the state or the two  utilities .  the short answer was that no one has any idea . below are the findings of the  report and some of the possible scenarios that would face a bankruptcy judge :  1 ) would the companies be eligible for chapter 11 style temporary bankruptcy ?  some of the advisors thought that pg & e and edison ' s finances were so  bad that chapter 11 style temporary bankruptcy may not even be an option .  advisors said that a bankruptcy judge might take a good look at the corporate  debt load and decide that reorganization would do no good and order the  companies into full liquidation . this would most certainly be guaranteed  chaos .  2 ) could the bankruptcy court actually force the puc to raise the price of  electricity to consumers ? the legal basis for passing on rate increases to  consumers is a lot less solid than originally thought , particularly if there  is widespread public outrage directed at the electricity companies . and  there is still the  question of the unilateral power of a bankruptcy judge .  3 ) if the bankruptcy judge takes his job of protecting corporate assets  seriously and finds that pg & e and edison cannot afford to buy electricity ,  he could order them to stop buying it and thus lead to massive power outages .  4 ) if the utilities go into bankruptcy , the first creditors in line would be  the lenders and bondholders with collateral pledges . the state could become  almost the last creditor in line as it is just another electricity supplier  ( one of the reasons why suppliers won ' t sell electricity on credit to these  companies now ) .  5 ) if the two companies went bankrupt , it would be the largest bankruptcies  in history , straining just about everyone involved in the process .  6 ) the corporate approval allowing the parent company to segregate assets  from the utility by the ferc for pg & e and already in place for edison  may be far less effective than the utilities or the ratings agencies  currently think . this is particularly true if this week ' s audit shows the two  corporations transferring  billions of dollars in the last few years into stock buybacks and shareholder  dividend payments .  davis  opinion polls show that governor gray davis is getting high marks for his  job , and the utilities are increasingly viewed as the culprits . one of davis  concern ' s is , according to a senior official in the governor ' s office , that a  deal is carved out that triggers a popular ballot initiative which is so  anti - utility and  anti - business that it cripples future growth in the state . according to a  senior official , \"\" no one thought howard jarvis and his property tax  initiative would  succeed in destroying our education system , but he did , with one just ballot  line and a lot of popular revulsion . the threat of direct , popular action  is at least as large now as then . \"\" consumer advocate harvey rosenfield is  already threatening to draw up a ballot initiative at the first sign that  individual  electricity consumers are being asked to help the utility companies repay  their debt through higher rate - payer bills . this official goes on to say ,  \"\" the  anger at utility companies is so high here , that almost anything rosenfield  could think of would pass and we couldn ' t do anything about it . \"\" this threat  has  begun to complicate the one escape route on the debt front that had always  appeared wide open to political leaders - - floating a bond issue or a  guarantee  for the money owed to institutions outside the corporate holding structure ,  and then letting the companies work that off with profits over the next  several years .\",0\n\"Subject: fyi : energy operations promotions  hi vince , scott pleus ( listed below in the director promotion section ) is  bandwidth - trading backoffice person we \u0001 , ve been working with . i have known  scott from ebs since he and i started around the same time . in fact , i was  one of the first people to talk to sally beck about booking some of our  network positions \u0001 * at which time i met scott . i know we have discussed this  matter many times before , but this is a specific example of how people at all  functional areas are benefiting from ebs ' rapid ' growth . ' scott has been at  enron for about the same time i have been . he came from another energy  company ' s backoffice before that .  as for my specific situation , after our discussion yesterday , i understand  clearly what happened . it appears bad luck had a lot to do with it ! ! !  thanks for looking into the promotion in the first place and i am certain  that you ' ll push the promotion through at the earliest convenience of the hr  folks !  kind regards ,  ravi .  - - - - - forwarded by ravi thuraisingham / enron communications on 02 / 08 / 00 09 : 22  am - - - - -  sally beck @ enron  sent by : enron announcements @ enron  02 / 07 / 00 07 : 01 am  to : all ena domestic employees  cc :  subject : energy operations promotions  ena energy operations  sally beck vice president of energy operations  i am pleased to announce the following promotions effective february 1 within  ena energy operations . these individuals have been promoted in recognition  of their outstanding performance and their contributions to the continuing  success of enron north america . please join me in congratulating these  employees on their promotions .  promotions to senior director  kristin albrecht serves as business controller for ena \u0001 , s power business .  along with leslie reeves , kristin ensures that power transactions are handled  accurately and smoothly from beginning to end . kristin \u0001 , s primary focus is on  risk controls and daily reporting of positions and p & l for east power  trading , west power trading and genco operations .  brenda herod serves as business controller for ena \u0001 , s assets business , working  with the gas assets group and the texas trading desk . her responsibilities  include global contracts and facilities , risk management , confirmations , gas  scheduling , volume management , settlements and regulatory compliance for  houston pipeline , lrc and enron midstream services .  leslie reeves is a business controller for ena \u0001 , s power business , working  closely with kristin albrecht in managing mid and back office support for the  east , west and genco power trading groups . her primary responsibilities are  documentation and settlements , with a focus on contract administration , cash  forecasting and cash management .  mary solmonson leads ena \u0001 , s global database management group , collecting and  validating information on our customers , contracts , pipelines and facilities ,  as well as published prices . these activities support overall energy  operations responsibilities from risk to logistics to settlement . in  addition , mary has been instrumental in the promotion and implementation of  the global systems across enron to provide control , consistency , and common  data throughout the organization .  promotions to director  scott pleus serves as business controller for enron \u0001 , s emerging products .  these businesses include bandwidth , pulp and paper , and weather . his primary  responsibilities include day - to - day functions of risk management ,  confirmations , pulp and paper scheduling , and settlements as well as long  term system development .  sheri thomas led ena \u0001 , s natural gas off - system settlements function throughout  1999 . her responsibilities included cash forecasting , collections , and  accountability for receivables and payables for ena \u0001 , s gas business in the  east , west and central regions of the us . sheri accepted a new assignment in  january 2000 and is now managing the enron online operations .  promotions to manager  bennett kaufman manages the risk management administration function for the  equity trading and debt trading groups . he has also had experience in  supporting the options book for natural gas derivatives trading . prior to  joining enron in early 1998 , bennett worked in trading operations for  investment banking firms in new york .  richard mckeel is the systems integration analyst within global database  management , overseeing the change management process and new software  development needed to interface the global applications with strategic  systems \u0001 ) sitara , unify , enpower , solarc , sap , and enrononline .  other promotions  specialist to senior specialist : analyst to specialist :  sylvia campos \u0001 ) deal compliance contract records tara eslick \u0001 ) financial  trading risk management  kam keiser \u0001 ) gas risk management - central desk victoria versen \u0001 ) gas  logistics - east desk  phillip love \u0001 ) risk controls operational analysis  jeff coats \u0001 ) gas risk management - central desk  monica lande \u0001 ) west power risk management ( portland ) senior clerk to staff :  trang le \u0001 ) strategic operations \u0001 ) project unify  john postlewaite \u0001 ) east power risk management anthony campos \u0001 ) deal  compliance contract records  diane seib \u0001 ) documentation ( calgary ) kori loibl \u0001 ) gas risk management -  financial books  donnie vinson \u0001 ) west power risk management ( portland )  imelda frayre \u0001 ) strategic operations - project sitara  clerk to senior clerk :  staff to specialist :  leslie smith \u0001 ) information & records management  amy degeyter \u0001 ) power documentation melinda whalen \u0001 ) documentation ( calgary )  michael nguyen \u0001 ) emerging products risk management  sherlyn schumack \u0001 ) logistics volume management  karie hastings \u0001 ) strategic operations - project sitara  in addition , peggy hedstrom and brent price were promoted to vice president ,  as announced in the memo issued by enron corp . office of the chairman . peggy  leads energy operations for enron canada , with responsibility for risk  management , documentation and gas logistics . peggy also serves as a key  interface with canadian pipelines as a member of several industry  committees . brent is the senior business controller for gas trading  operations in the u . s . his responsibilities include risk management ,  confirmations , volume management and settlements for the east , west and  central regions . he also provides operational expertise in the due diligence  phase of the evaluations of joint ventures and acquisitions .\",0\n\"Subject: re : letter to nesbitt  vince ,  your note looks good to me , short and to the point .  i assume this will prompt further detailed discussions with dale . i would  want to clarify that we are primarily interested in the long term gas model  and database for north america . unless a familiarity with the short term  model is a prerequisite , i doubt that we would want to spend a lot of time on  it .  depending upon how long it would take to become familiar with the long term  model , it might be helpful to have access in both omaha and houston ?  we would eventually need specifications for the computer system we would need  for testing the model . steve hotte , cio for ets , would co - ordinate the  in - house installation for us . at some point , it will be helpful to get steve  in contact with the appropriate marketpoint it rep .  assuming that you get acceptable clarification of these issues , dale should  probably send to us a modified licensing agreement for review .  let me know what i should do next .  jng\",0\n\"Subject: my resume  molly ,  we would like to bring this student as a summer intern ( the last one ,  we are running out of space ) .  i shall send you another message regarding his proposed dates .  thanks . i hope you have a very happy easter .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 13 / 2001  10 : 03 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  zhendong xia on 04 / 12 / 2001 03 : 58 : 25 pm  to : vince . j . kaminski @ enron . com  cc :  subject : my resume  hi , dr . kaminski :  glad to get your reply . here is my resueme . if you wanna know more  about me , please feel free to contact me . thanks .  zhendong xia  georgia institute of technology  school of industrial and systems engineering  email : dengie @ isye . gatech . edu  dengie @ sina . com  tel : ( h ) 404 - 8975103  ( o ) 404 - 8944318  - cv . doc\",0\n\"Subject: powerisk 2000 - cocktail parties  for your information  thanks  iona  - - - - - - - - - - - - - - - - - - - - - - forwarded by iona maclean / lon / ect on 21 / 09 / 2000 15 : 00  - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron capital & trade resources corp .  from : tunuja tulsiani  21 / 09 / 2000 14 : 50  to :  cc : rosemary fitzgerald , simon turner  subject : powerisk 2000 - cocktail parties  important announcement  two key social functions at powerisk 2000 *  your personal invitation  powerisk 2000 has teamed up with three key industries partners to  bring two important networking functions at this year ' s powerisk  2000 . a full invitation has been sent to you in the post but please  print out and bring the two attached invitations with you in case  your postal copy does not reach you for any reason .  the first cocktail party will be held on tuesday 3 rd october  between 6 pm and 9 pm and will be hosted by virtual credit services  and true quote . com . this welcome cocktail party is open to all  delegates and speakers whether or not you are attending the  e - commerce day on the tuesday . running until 9 pm , it should  allow you time to attend even if you have a late evening flight .  the second cocktail party will be held on wednesday 4 th october  at the palais brongniart , the home of parisbourse who will be  hosting the function . transport to and from this event will be  provided for all delegates .  there is no need to reply * we look forward to seeing you at  both events .  regards  rosemary fitzgerald  powerisk 2000 director\",0\n\"Subject: summer rotation in rac  vince ,  i had a lunch meeting with rudi and vladi from rac , and i also met with ted  murphy .  they are supposed to get back with me by friday to confirm the proposed  summer rotation .  so far i have a very positive impression of the group , and the projects that  they are involved in .  they also told me that rac and research people are often working on projects  together , so i am sure that my ties with research are not going to go away  with me rotating to rac .  i will keep you posted on further developments .  coordially ,  jason sokolov\",0\n\"Subject: re : congratulations  thank you very much for the note . i am very happy that you have been  promoted to managing director . it was long over due .  sincerely ,  jean  vince j kaminski @ ect  01 / 11 / 00 10 : 03 am  to : jean mrha / enron communications @ enron communications  cc :  subject : congratulations  jean ,  congratulations . well deserved .  vince\",0\n\"Subject: thanks from charles  dear vince :  it was great talking to you on friday . thank you very  much for the opportunity and your time .  after having talked with you and other people in the  group , i was very impressed by enron research group ' s  deep insights , high professionalism , and the friendly  attitude . i really wish that i could have the  opportunity to join the group and contribute to the  future success of the research group with my solid  background in finance and econometrics .  if you have any questions , please feel free to let me  know . i look forward to hearing from you soon , thank  you very much .  sincerely ,  charles  do you yahoo ! ?  yahoo ! messenger - talk while you surf ! it ' s free .  http : / / im . yahoo . com /\",0\n\"Subject: re : mscf speaker series  pierre - philippe ,  the time of the presentation , 11 : 30 is fine with me .  i shall arrive thu evening and i shall get to the hotel by cab . thanks  for your kind offer to meet me at the airport but i shall be arriving at late  hour  and don ' t want to inconvenience you . kevin kindall from enron will come with  me .  i shall also need a projector for my m / s power point presentation on  \"\" volatility in the us power markets \"\" .  i shall be very glad to meet with duane .  vince  \"\" pierre - philippe ste - marie \"\" on 10 / 30 / 2000 08 : 47 : 17 pm  to :  cc :  subject : re : mscf speaker series  dear mr . kaminski ,  the presentation is scheduled on friday the 3 rd at 11 . 30 so that new york  students can attend .  would you like me to get you at the airport ?  if you want i can also organize a short meeting with professor seppi which  is very interested in energy derivatives .  my goal is to make your trip to pittsburgh as pleasant as possible .  therefore if there is anything i can do to help ( i am sounding a little  repetitive . . . i know ) let me know .  sincerely ,  pierre - philippe ste - marie  http : / / pstemarie . homestead . com\",0\n\"Subject: wti simulation model 30 , 000 bbl / trade  john ,  attached are updated results of zimin ' s model assuming each trade is on a  total notional of 30 , 000 bbls . note that i have re - scaled the results to be  in $ mm .  - - stinson  open - close prices continuous prices\",0\n\"Subject: re : hello from vince kaminski at enron  shmuel ,  sorry for not getting back to you earlier .  if the 23 rd of october is still open , i can make the presentation on this  day .  vince  \"\" shmuel oren \"\" on 08 / 30 / 2000 08 : 18 : 15 am  to :  cc :  subject : re : hello from vince kaminski at enron  originally you mentioned october 23 so i reserved that week which is still  open .  shmuel s . oren , professor  dept . of industrial engineering  and operations research  4117 etcheverry hall  university of california  berkeley , ca 94720 - 1777  e - mail : oren @ ieor . berkeley . edu  phone : ( 510 ) 642 - 1836 or 5484  fax : ( 510 ) 642 - 1403  - - - - - original message - - - - -  from :  to :  cc : ; ;  sent : wednesday , august 30 , 2000 9 : 03 am  subject : re : hello from vince kaminski at enron  >  > shmuel ,  >  > let ' s see if we can either rearrange the seminar speakers  > or change the date of our visit to the campus . ashley baxter , our  > coordinator is very efficient and  > got a faculty room for a presentation on monday morning on the 16 th .  >  > vince  >  >  >  >  >  >  > \"\" shmuel oren \"\" on 08 / 29 / 2000 05 : 37 : 33 pm  >  > to :  > cc :  > subject : re : hello from vince kaminski at enron  >  >  > dear vince . i spoke too soon . apparently the seminar slot on the 16 was  > already filled . i will see if i can switch the speaker for that week to  the  > following week . in any case we are on for dinner on the 16 .  > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / /  > shmuel s . oren , professor  > dept . of industrial engineering  > and operations research  > 4117 etcheverry hall  > university of california  > berkeley , ca 94720 - 1777  > e - mail : oren @ ieor . berkeley . edu  > phone : ( 510 ) 642 - 1836 or 5484  > fax : ( 510 ) 642 - 1403  > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / /  >  > - - - - - original message - - - - -  > from :  > to :  > cc : ;  > sent : tuesday , august 29 , 2000 5 : 01 pm  > subject : re : hello from vince kaminski at enron  >  >  > >  > > shmuel ,  > >  > > the date of our trip to berkeley has been set . it will be october 16 th  > and  > > 17 th  > > ( monday and tuesday ) .  > >  > > i shall be glad to make a presentation on energy derivatives markets  > > ( development of the markets in the us and europe , valuation  difficulties ,  > > enron ' s role  > > in developing the forward markets for natural gas and electricity ) .  > >  > > please , let me know if this topic would be of interest to you . if this  is  > > the  > > case , i shall follow with a title and an abstract .  > >  > > by the way , are you free for dinner on monday ?  > >  > > vince  > >  > >  > >  > >  > >  > >  > > \"\" shmuel oren \"\" on 08 / 24 / 2000 08 : 59 : 38 am  > >  > > to : \"\" vince j kaminski \"\"  > > cc :  > > subject : re : hello from vince kaminski at enron  > >  > >  > > great . our seminars are 3 : 30 to 5 pm . if it works for you please send me  a  > > title and abstract .  > > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / /  > > shmuel s . oren , professor  > > dept . of industrial engineering  > > and operations research  > > 4117 etcheverry hall  > > university of california  > > berkeley , ca 94720 - 1777  > > e - mail : oren @ ieor . berkeley . edu  > > phone : ( 510 ) 642 - 1836 or 5484  > > fax : ( 510 ) 642 - 1403  > > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / /  > >  > > - - - - - original message - - - - -  > > from : \"\" vince j kaminski \"\"  > > to : \"\" shmuel oren \"\"  > > cc : \"\" vince j kaminski \"\" ; \"\" ashley baxter \"\"  > >  > > sent : thursday , august 24 , 2000 9 : 58 am  > > subject : re : hello from vince kaminski at enron  > >  > >  > > >  > > >  > > > shmuel ,  > > >  > > > thanks for the message . i am working with our recruiter , ashley  baxter ,  > > > to finalize the date of the trip . i shall shoot for october the 23 rd  > > > if this date works for the rest of our team .  > > >  > > > vince  > > >  > > >  > > >  > > >  > > >  > > >  > > > \"\" shmuel oren \"\" on 08 / 23 / 2000 11 : 46 : 19 am  > > >  > > > to : vince j kaminski / hou / ect @ ect  > > > cc :  > > > subject : re : hello from vince kaminski at enron  > > >  > > >  > > >  > > > dear vince .  > > > i sent you a reply earlier this month but i haven ' t heard from you  > about  > > the  > > > date of your visit . our department has a seminar every monday . if you  > can  > > > schedule your visit on a monday i would like to invite you to give a  > > seminar  > > > which will be attended by many of our graduate students and faculty  and  > > will  > > > give you an opportunity to tell them about your program . with  > sufficient  > > > lead - time i can advertise the seminar in the hass school to their  > > financial  > > > engineering students .  > > > shmuel .  > > > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / /  > > > shmuel s . oren , professor  > > > dept . of industrial engineering  > > > and operations research  > > > 4117 etcheverry hall  > > > university of california  > > > berkeley , ca 94720 - 1777  > > > e - mail : oren @ ieor . berkeley . edu  > > > phone : ( 510 ) 642 - 1836 or 5484  > > > fax : ( 510 ) 642 - 1403  > > > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / /  > > >  > > > - - - - - original message - - - - -  > > > from :  > > > to : ; ;  > > >  > > > sent : tuesday , august 08 , 2000 10 : 59 am  > > > subject : hello from vince kaminski at enron  > > >  > > >  > > > > shmuel ,  > > > >  > > > > i hope you remember me . i visited you together with aram sogomonian ,  > a  > > > > good friend of mine , a few years ago . i am currently responsible ,  > among  > > > > other things , for recruiting graduates with finance and / or technical  > > > > backgrounds at the university of berkeley . i would be glad to give  > you  > > a  > > > > call and talk more about the details of our program . my colleague ,  > > > > ashleybaxter , from the analyst / associate program at enron would join  > me  > > > > as well .  > > > >  > > > > i am sending you a copy of the brochure about the analyst /  associate  > > > > program .  > > > >  > > > > vince kaminski  > > > >  > > > >  > > > > vincent kaminski  > > > > managing director - research  > > > > enron corp .  > > > > 1400 smith street  > > > > room ebl 962  > > > > houston , tx 77002 - 7361  > > > >  > > > > phone : ( 713 ) 853 3848  > > > > fax : ( 713 ) 646 2503  > > > > e - mail : vkamins @ enron . com  > > > >  > > >  > > >  > > >  > > >  > > >  > > >  > >  > >  > >  > >  > >  > >  >  >  >  >  >  >\",0\n\"Subject: re : datren williams acceptance  you are right , vince . . . . celeste and i did discuss it , and she approved his  feb . start date .  datren does know about that , so it sounds like it is cleared up .  thanks so much , and we are sorry for the confusion !  carol  vince j kaminski  10 / 12 / 2000 03 : 58 pm  to : stinson gibner / hou / ect @ ect  cc : carol coats / hou / ect @ ect  subject : re : datren williams acceptance  stinson ,  i think it ' s a mistake . it should be february .  vince  stinson gibner  10 / 10 / 2000 08 : 11 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : datren williams acceptance  fyi  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 10 / 10 / 2000  08 : 10 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  carol coats  09 / 29 / 2000 02 : 36 pm  to : celeste roberts / hou / ect @ ect  cc : stinson gibner / hou / ect @ ect  subject : datren williams acceptance  celeste ,  i just received datren williams ' acceptance with the following note attached :  \"\" my graduation date ( ph . d . candidate from lsu ) is dec . 2000 . celeste roberts  has informed me that i would have the option of starting work feb . 2001 . i am  under the impression that i will start in feb . 2001 . my offer letter has a  start date  of aug . 2001 . if this is a problem , please give me a call .  looking forward to working at enron .  thanks a million ,  datren w . \"\"  please let me know if he may in fact start in feb . 2001 , and if so , do you  have  a specific date for him , or may he choose ?  thanks , celeste ,  carol\",0\n\"Subject: re : looking for \"\" fat tails \"\" in time - series for ngi - socal  vince ,  i quite agree , we have to separate out price and position ,  and that is what we have done with the historical simulations / evt ideas . we  have taken today ' s delta - gamma , hold that frozen , and gone back historically  and looked at price changes and see what happens to portfolio changes .  garman and company have looked at gross historical portfolio changes , which i  agree is not the best approach , due to the artificiality imposed by largest  net open positions ( nop ) , such as we have seen recently .  regards  naveen  vince j kaminski @ ect  11 / 13 / 2000 10 : 31 am  to : tanya tamarchenko / hou / ect @ ect  cc : naveen andrews / corp / enron @ enron , vince j kaminski / hou / ect @ ect , vladimir  gorny / hou / ect @ ect  subject : re : looking for \"\" fat tails \"\" in time - series for ngi - socal  tanya , naveen ,  just a thought . changes in the portfolio values may combine both the changes  of prices and positions .  this happens if one tracks changes in the value of our historical gas  portfolio . a big jump in  the volumetric position from day to day , combined with a moderate price  movement may produce an  observation that looks artificially big .  if the volumetric position was frozen , it ' s just a scaling factor and there  should be  no discrepancy between your numbers . of course , the correct approach  is to separate the price process from the position changes .  vince  tanya tamarchenko  11 / 13 / 2000 08 : 38 am  to : naveen andrews / corp / enron @ enron  cc : vince j kaminski / hou / ect @ ect , vladimir gorny / hou / ect @ ect  subject : re : looking for \"\" fat tails \"\" in time - series for ngi - socal  naveen ,  i am trying to answer the question : what is the appropriate stochastic  process to model the behavior  of commodities ' prices in our var model . so what i do care about is the  behavior of log - returns .  any help is appreciated .  tanya .  naveen andrews @ enron  11 / 10 / 2000 04 : 35 pm  to : tanya tamarchenko / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , vladimir gorny / hou / ect @ ect  subject : re : looking for \"\" fat tails \"\" in time - series for ngi - socal  tanya ,  we care about portfolio value changes , not log - returns of a  single contract , which has extremes in the behavior and can be fit to a  fat - tailed distribution . a 1 . 20 basis move , with 500 bcf position , is an  extreme event , anyway you slice it . in the literature , as elsewhere , i agree  for a single contract log - returns , they don ' t divide by vols .  regards  naveen  tanya tamarchenko @ ect  11 / 10 / 2000 04 : 17 pm  to : naveen andrews / corp / enron @ enron  cc : vince j kaminski / hou / ect @ ect , vladimir gorny / hou / ect @ ect  subject : re : looking for \"\" fat tails \"\" in time - series for ngi - socal  naveen ,  i got ngi - socal prices for prompt , prompt + 1 , . . . , prompt + 59 contracts .  for each contract i calculated moving average based on 21 log - returns as  well as moving volatility . then i calculated normalized log - returns :  [ return ( t ) - ave ( t ) ] / vol ( t )  and compared the results to normal distribution .  i could not find fat tails !  volatility changes a lot from day to day , so when people look at  log - returns ( not normalized ) it seems that there fat tails ( big spikes , large  returns more frequent than normal ) ,  which comes from the fact that volatility is not constant ( at all ) .  see the spreadsheet is under o : \\ _ dropbox \\ tanya  tanya\",0\n\"Subject: research meeting  all  john sherriff has suggested we all get together in the near future to discuss  the demands being placed on the research group . i will be making a request  for additional resources , and the aim of the meeting is to determine the most  appropriate size for the team .  assistants : can we aim for week commencing 6 th november ?  vince : would you like to teleconference in ?  many thanks  steve\",0\n\"Subject: meeting with dale nesbitt - altos management partners  the meeting with dale nesbitt has now been scheduled for 2 : 00 pm tuesday ,  november 7 , in eb 49 c 2 video conference room . your attendance is welcomed .  jng\",0\n\"Subject: re : interviews  vince ,  no problem , i know hr can slow the process down .  marshall brown  vice president  robert walters associates  phone # : 212 - 704 - 0596  fax # : 212 - 704 - 4312  marshall . brown @ robertwalters . com  www . robertwalters . com  > - - - - - original message - - - - -  > from : vince . j . kaminski @ enron . com [ smtp : vince . j . kaminski @ enron . com ]  > sent : friday , april 06 , 2001 5 : 50 pm  > to : marshall . brown @ robertwalters . com  > cc : vince . j . kaminski @ enron . com  > subject : re : interviews  >  >  > marshall ,  >  > sorry for a delay in responding to you .  > my hr people were asked to get in touch with you re  > the candidates .  >  > vince  >  >  >  >  >  > marshall brown on 03 / 27 / 2001 02 : 36 : 12  > pm  >  > to : \"\" ' vince kaminski ' \"\"  > cc :  > subject : interviews  >  >  > vince ,  > i had two candidates speak with zamin lu on 3 / 14 / 01 and 3 / 16 / 01 .  > ( renshi zhang and bill koures respectively ) . i know you were in london  > last  > week . if you could please give me some feedback ( either positive or  > negative ) as soon as possible , i would appreciate it .  > regards ,  >  > marshall brown  > vice president  > robert walters associates  > phone : 212 - 704 - 0596  > fax : 212 - 704 - 4312  > marshall . brown @ robertwalters . com  >  >  >  > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  > caution : electronic mail sent through the internet is not secure and could  > be intercepted by a third party .  >  > this email and any files transmitted with it are confidential and  > intended solely for the use of the individual or entity to whom they  > are addressed . if you have received this email in error please notify  > the system manager .  >  > this footnote also confirms that this email message has been swept by  > mimesweeper for the presence of computer viruses .  >  > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  >  >  >\",0\n\"Subject: eprm understanding and applying fin math - houston  please register me as vince kaminski ' s free guest at the houston session of  the above conference on 31 / 8 and 1 / 9 .  many thanks ,  steve leppard  enron europe research group\",0\n\"Subject: backwardation hedge strategy  i have completed an evaluation of a \"\" backwardation \"\" hedge strategy requested  by wendy king . the stratregy is intended to hedge oil inventories and is  based of trading nymex futures and options .  wendy has suggested she wants to review this with jeff shankman . i would  like to review my conclusions with you before i send it to wendy and will ask  shirley to set up a meeting .  a writeup is attached .  bob\",0\n\"Subject: re : interview request  kevin ,  yes , i am available . please send a resume to shirley crenshaw .  shirley will call you to set up the time .  vince  from : kevin mcgowan @ enron 07 / 10 / 2000 09 : 28 am  to : vince j kaminski / hou / ect @ ect , george hopley / hou / ect @ ect  cc :  subject : interview request  i am trying to schedule an interview with a gentleman who is currently a  professor at rice . we are interested in possibly hiring him in a research  capacity in the coal and emissions group . would you have time to interview  him tom ' w ? let me know if you can .  thank you  kevin mcgowan x - 3 - 7499\",0\n\"Subject: just fyi  vince ,  please see below some of the ideas being bounced , fyi . please keep this  confidential .  the unused capacity in maharashtra should be dispatched on a merchant basis ,  on behalf of mseb to any customers outside mseb ' s current purview . i would  like us to look at the whole issue as one of mseb ' s poor credit , and hence (  as jeff pointed out on the call ) , one where we need to identify all deep  pockets in and out of maharashtra .  secondly , there is ( as shubh and i had pointed out ) the ability to evacuate  about 700 - 1000 mw to customers other than mseb . the challege is - at what  price , and in coordination with which agencies . as always , in india your  greatest challenge will be in dealing with govt . agencies .  another point to consider is that in - all we have about 5 - 7 customers  identified . will all the customers we have earmarked bite ? ? ? this is the  reason why systems need to be set up with a bulletin board on pricing 10 - 15  day power on the screens of the different sebs we can connect up with . this  also substantially gets around the credit quality issue , as this would be an  arrangement akin to cash - and - carry . i see a lot of hope for such a  strategy . i do not see much hope for a strategy of selling blocks of power  to either ntpc or ptc . i would agree however , that we not put all our eggs  in one basket , and hence you could designate a team to look into the ntpc  sale issue inparallel .  in order to set up the trading sytems , however , we need to start by the end  of ql 2001 , and just start doing small deals where we break even , simply to  test the waters and introduce liquidity into the market .  hand - in - hand with this we need a fuel risk management strategy , as i have  been pushing for . for this to happen , we need to get the special import  licence reinstated . if that is not possible , we need to lobby with the  highest authorities within govt . and rbi to allow for hedging , irrespective  of whether we have an sil . the discussions being held with ioc are therefore  very important in this regard , and i am going to get anshuman and mukesh  involved with the same .  finally , i do not see much hope for your strategy of asking ene management  for $ 75 million to build transmission lines in a country where the regulatory  framework on transmission access is even less defined and understood than the  generation side of the equation . i would refrain from stating this in any  senior management forum until we are able to clearly demonstrate the  cost - benefit of this . i have some ideas on that side which i need to develop  further .  regards ,  sandeep .\",0\n\"Subject: many  dear vince ,  1 . i apologize for not having got back to karla  earlier but dauphine is not properly equipped yet .  2 . the conference with samuelson , merton , heath ,  ross , mckean etc was spectacular . 512 academics  and practitioners came to college de france and  were very grateful .  3 . i was so worn out afterwards that i did not make  it to houston . i just went to visit alex after a week  conference on quantitative risk management  where i was speaking at carnegie mellon  4 . another former phd student of mine has been  testing and improving the software . he is great  and modest ; giving the papers i referee and the  conferences i go to , i do believe that we are still  ahead ( or way ahead ) today . we also beautifully  simplified the valuation of the hourly swings .  obviously , in case of a problem , my reputation  and your esteem would be more valuable  than 30 % of 90 , 000 usd ( to be shared . . . )  5 . i declined risk in houston and newyork  and am not sure i will have the pleasure  to see you in london . in all cases , we  should coordinate for paris soon  helyette\",0\n\"Subject: re : analyst candidate mitra mujica  thank you so much for reserving an analyst for our group . tomorrow is my  last day in houston until i return from london in 2 months . i won ' t forget  something for your baby . i ' ve asked gwyn koepke and vince kaminski to  interview mitra mujica in my absence . vince likes to interview all  candidates prior to being employed in the research department . i can  interview over the telephone . could you please send us mitra ' s resume .  regards ,  maureen  enron north america corp .  from : andrea richards @ enron 02 / 16 / 2001 04 : 42 pm  to : maureen raymond / hou / ect @ ect , gwyn koepke / na / enron @ enron  cc : jana giovannini / hou / ect @ ect , shelly butler / hou / ect @ ect , althea  gordon / na / enron @ enron , teresa bosien / hr / corp / enron @ enron  subject : analyst candidate mitra mujica  maureen ,  mitra mujica , an analyst candidate from super thursday 2 / 15 , has been  reserved for your group . please note that this placement is contingent upon  the candidate accepting the analyst program ' s offer . mitra will have two  weeks to respond and we will contact you once her response is received .  please contact me if you have any questions .  thank you ,  andrea richards  career development  associate & analyst program  x 3 - 6499\",0\n\"Subject: it ' s time for prc  it ' s time once again to administer the research group ' s prc ! !  attached you will find a list of your ee ' s . pls take a moment to pre - rank  your employees using the consolidated feedback from their mid - year  performance reviews . on the spreadsheet below , there is a category titled  \"\" ranking \"\" , please place your recommended ranking in this column and e - mail it  back to me by noon this friday .  vince will be meeting with you all on friday to discuss these pre - rankings .  on wednesday , 7 / 5 at 9 a , pls join vince and i in room ebl 938 to formalize  your employee rankings .  the ranking categories are as follows :  superior  excellent  strong  satisfactory  needs improvement  issues  additionally , i know that there have been many changes in staff and  reportships over the last 6 months . if you see that you are missing someone  or someone is reporting to the wrong person , just let me know and i ' ll get it  corrected asap .  call me with any questions or concerns !\",0\n\"Subject: dinner with vince kaminski  good morning mr . saksena :  reservations have been made for 6 : 00 pm , the evening of thursday ,  march 9 at latour d ' argent restaurant . the restaurant is located at 2011  ella blvd at t . c . jester blvd . men are required to wear a coat .  directions to restaurant :  coming from downtown houston :  take i - 45 north to 610 west .  take 610 west to ella blvd exit .  go south ( back under the freeway )  on ella blvd to 2011 ella at t . c . jester .  vince will meet you at the restaurant .  if you have any questions , please call me .  thanks .  shirley crenshaw  713 - 853 - 5290\",0\n\"Subject: re : tradespark  vince ,  thanks for the tradespark article .  i very much appreciate being able to participate in the applied learning  projects . it has been very stimulating for me . i ' ve really enjoyed all the  projects i ' ve worked on with the research group , and ever since my interview  i have had plenty of second thoughts about going back to graduate school .  i ' m sure mit will be a good and unique experience , but i wonder if it can  help me find a job and a community i enjoy as much as i already have here .  if possible , i would like to talk with you and / or stinson about the  possibility of my staying on the research team , or coming back after the  fall .  thanks for your time .  ken\",0\n\"Subject: book  vince ,  ?  i have made contact with fiona grant , director public relations and  communications enron europe limited , and she mentioned that there are some  changes to your bios , which are located both on the cover and in the  preliminary section in \"\" about the authors \"\" . ? we would appreciate it if you  could help in ? collecting or passing along these edits ? since these ? are ? the  only items delaying the printing of the book . ?  thanks vince .  ?  regards ,  julie  ?  ?\",0\n\"Subject: rice / enron seminar series  fyi !  shirley  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 09 / 15 / 2000  02 : 43 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  barbara ostdiek on 09 / 15 / 2000 02 : 39 : 53 pm  to : ostdiek @ rice . edu  cc :  subject : rice / enron seminar series  jones graduate school research seminar series in finance  sponsored by enron corp .  jeff pontiff  university of washington  will give a seminar at the jones school on friday , september 22 , ?  \u0001 & market valuation of tax - timing options : evidence from capital gains  distributions . \u0001 8  the seminar will begin at 3 : 30 in room 115 .  a word file with the paper is available through the seminar website  http : / / www . ruf . rice . edu / ~ jgsfss / .  there have also been several updates to the schedule in the last week or ten  days .\",0\n\"Subject: re : fw : enron credit model docs for the comparative model study -  to be sent to professor duffie @ stanford  iris ,  we can mention to ben that the papers will be edited and  combined into a coherent review .  vince  from : iris mack / enron @ enronxgate on 04 / 23 / 2001 01 : 49 pm  to : vasant shanbhogue / enron @ enronxgate , vince j kaminski / hou / ect @ ect , amitava  dhar / corp / enron @ enron  cc :  subject : fw : enron credit model docs for the comparative model study - to be  sent to professor duffie @ stanford  hi ,  attached is a bit of feedback from ben regarding the papers listed below .  can you help me out here ?  thanks ,  iris  - - - - - original message - - - - -  from : parsons , ben  sent : monday , april 23 , 2001 3 : 05 am  to : mack , iris  subject : re : enron credit model docs for the comparative model study - to be  sent to professor duffie @ stanford  hi iris  i would not include paper 8 , as paper 7 supersedes it . also how much  rewriting of these papers do you envisage ? some of them are not up - to - date ,  or were written poorly and under time - pressure , so what do you envisage  eventually sending to duffie ?  thanks  ben  from : iris mack / enron @ enronxgate on 21 / 04 / 2001 22 : 30 cdt  to : ben parsons / lon / ect @ ect  cc : vasant  6525 - 68 daao @ ex @ enronxgate , vince j kaminski / hou / ect @ ect , scott  salmon / eu / enron @ enron , bryan seyfried / lon / ect @ ect , nigel price / lon / ect @ ect ,  tomas valnek / lon / ect @ ect , george albanis / lon / ect @ ect , markus  fiala / lon / ect @ ect , craig chaney / enron @ enronxgate , kim  detiveaux / enron @ enronxgate , amitava dhar / corp / enron @ enron , tanya  tamarchenko / hou / ect @ ect , mike mumford / lon / ect @ ect  subject : re : enron credit model docs for the comparative model study - to be  sent to professor duffie @ stanford  hi ben ,  i think i have read all the papers that are to be used in the comparative  model study to be sent to professor duffie at stanford .  these documents are all listed below . please let me know if i have omitted  any ( however , don ' t get the impression that i am begging for more papers to  read ) .  now i will try to transform my notes into a draft for professor duffie .  thanks ,  iris  list of papers for comparative model study  1 . actively managing corporate credit risk : new methodologies and  instruments for non - financial firms  by r . buy , v . kaminski , k . pinnamaneni & v . shanbhogue  chapter in a risk book entitled credit derivatives : application for risk  management , investment and portfolio optimisation  2 . neural network placement model  by george albanis , enroncredit ( 12 / 22 / 00 )  3 . pricing parent companies and their subsidiaries : model description and  data requirements  by ben parsons and tomas valnek , research group  4 . a survey of contingent - claims approaches to risky debt valuation  by j . bohn  www . kmv . com / products / privatefirm . html  5 . the kmv edf credit measure and probabilities of default  by m . sellers , o . vasicek & a . levinson  www . kmv . com / products / privatefirm . html  6 . riskcalc for private companies : moody ' s default model  moody ' s investor service : global credit research  7 . discussion document : asset swap model  by ben parsons , research group ( 4 / 20 / 01 )  8 . asset swap calculator : detailed functional implementation specification  ( version 1 . 0 )  by ben parsons , research group  9 . discussion document : live libor bootstrapping model  by ben parsons , research group ( 4 / 20 / 01 )  10 . the modelling behind the fair market curves : including country and  industry offsets  by nigel m . price , enron credit trading group  11 . pricing portfolios of default swaps : synthetic cbos - moody ' s versus  the full monte ( carlo )  by nigel m . price , enron credit trading group  12 . placement model vl . 0 : discussion document  by ben parsons , research group , 2000  13 . credit pricing methodology - enroncredit . com  by ben parsons , research group  14 . correlation : critical measure for calculating profit and loss on  synthetic credit portfolios  by katherine siig , enron credit group  15 . discussion document : var model for enron credit  by ben parsons , research group , ( 1 / 3 / 01 )  16 . methodology to implement approximate var model for the credit trading  portfolio  by kirstee hewitt , research group\",0\n\"Subject: re : weather and energy price data  mulong wang on 04 / 24 / 2001 10 : 58 : 43 am  to :  cc :  subject : re : weather and energy price data  hello , elena :  thank you very much for your data . i sent an email to ft but had no  response so far . as soon as i got their permission i will let you know .  have a great day !  mulong  on thu , 19 apr 2001 elena . chilkina @ enron . com wrote :  >  > mulong ,  >  > please find attached a file with henry hub natural gas prices . the data  > starts from 1995 and given on the daily basis , please let us know when we  > can proceed with electricity prices .  >  > sincerely ,  > elena chilkina  >  > ( see attached file : henryhub . xls )  >  >  >  >  >  >  > vince j kaminski @ ect  > 04 / 16 / 2001 08 : 19 am  >  > to : mulong wang @ enron  > cc : vince j kaminski / hou / ect @ ect , elena chilkina / corp / enron @ enron ,  > macminnr @ uts . cc . utexas . edu  >  > subject : re : weather and energy price data ( document link : elena  > chilkina )  >  > mulong ,  >  > we shall send you natural gas henry hub prices right away .  > please look at the last winter and the winter of  > 95 / 96 .  >  > we shall prepare for you the electricity price  > information ( cinergy , cobb and palo verde ) but  > you have to approach ft ( the publishers of  > megawatts daily , a newsletter that produces the price  > index we recommend using ) and request the permision  > to use the data . we are not allowed to distribute  > this information .  >  > please , explain that this is for academic research and that  > we can produce the time series for you ,  > conditional on the permission from the publishers  > of megawatts daily .  >  > vince kaminski  >  >  >  > mulong wang on 04 / 15 / 2001 03 : 43 : 26 am  >  > to : vkamins @ ect . enron . com  > cc : richard macminn  > subject : weather and energy price data  >  >  > dear dr . kaminski :  >  > i am a phd candidate under the supervision of drs . richard macminn and  > patrick brockett . i am now working on my dissertation which is focused on  > the weather derivatives and credit derivatives .  >  > could you kindly please offer me some real weather data information about  > the price peak or plummet because of the weather conditions ?  >  > the past winter of 2000 was very cold nationwide , and there may be a  > significant price jump for natural gas or electricity . could you  > please offer me some energy price data during that time period ?  >  > your kind assistance will be highly appreciated and have a great day !  >  > mulong  >  >  >  >  >  >  >  >  >  >  >\",0\n\"Subject: option pricing discrepancy for j . c . penny transaction  amitava and seksan have identified the source of the discrepancy between the  option prices calculated by the credit - reserve model and the stand - alone  spreadsheet model used in deal pricing . the discrepancy can be traced to  differences in input variables of the two models and not to any algorithmic  differences .  the options being priced are a strip of options on monthly instruments . the  credit reserve simulation program calculates the time to expiration by  assuming that the option expires on first day of the contract month of the  underlying contract , which is a very reasonable assumption .  the stand - alone option pricing spreadsheet allows specification of the option  expiration date independent of the contract month of the underlying . in the  jc penney transaction , the monthly options were assumed to expire in the  middle of the contract month , when in reality the underlying monthly  contracts expire before the start of their respective contract months . the  stand - alone spreadsheet model allows such specifications and it is up to the  user to ascertain that the expiration dates entered are legal . at present ,  seksan is ascertaining that the option contracts involved are in deed monthly  options and not a strip of daily options , in which case we would require  estimates of intramonth volatilities for both the spreadsheet model and the  credit reserve model .  regards ,  rabi de\",0\n\"Subject: re : interview with rabi s . de on friday , august 11 , 2000  anita :  i believe that zimin was the one that asked me to bring him in . maybe you  can check with him as to whether there is anyone else he wants you to  include .  thanks !  anita dupont @ enron  07 / 31 / 2000 10 : 26 am  to : vince j kaminski / hou / ect @ ect  cc : shirley crenshaw / hou / ect @ ect  subject : interview with rabi s . de on friday , august 11 , 2000  vince :  shawn grady from hr staffing called me and asked me to schedule interviews  with the people in research . he also mentioned that i should email you to  find out if you want anyone from any other department to interview rabi . i  am currently scheduling interviews with you , krishna , grant , stinson , zimin  and vasant . is their anyone else in research that you want to interview  him ? please get back to me and i will set up the appts . thanks . anita\",0\n\"Subject: re : b 2 b at enron  tom ,  greg ' s phone number is 713 853 5220 . he is very difficult to reach  ( frequent trips ) .  you may find this information useful : greg is a west point graduate  and spent a few years in the military , before obtaining an mba from stanford .  he is a very dynamic person and a very pragmatic thinker .  i hope you have a great holiday weekend .  vince  \"\" piazze , thomas \"\" on 06 / 29 / 2000 08 : 51 : 48 am  to : \"\" ' vince j kaminski ' \"\"  cc : \"\" gerrity , thomas \"\" , \"\" lohse , gerald lee \"\"  , \"\" wind , yoram \"\" , \"\" harker ,  patrick \"\" , \"\" amit , raffi \"\" ,  \"\" ' shankman , jeff ' \"\" , \"\" macmillan , ian \"\"  subject : re : b 2 b at enron  vince : thanks for this message and update on your recent actions to  establish a closer research relationship between enron and wharton . we are  anxious to work with your firm on many fronts and appreciate all that you  and jeff shankman are doing to facilitate closure on a number of  initiatives .  the below article is very interesting and reinforces the entrepreneurial  culture of enron ; it also points out one more reason why our faculty is so  interested in collaborating with you and other executives as the company  moves into this new space .  i would like to call greg whalley after the 4 th of july weekend to establish  contact and begin a dialogue regarding his interest in joining our efforts  as a corporate partner . will you please provide me contact information ?  please let me know if there is any additional information or material you  will need prior to your meeting with jeff skilling . we are anxious to learn  how he responds to your suggestions .  thanks again for all that you are doing . hope you have a great 4 th of  july ! !  tom  > - - - - - original message - - - - -  > from : vince j kaminski [ smtp : vince . j . kaminski @ enron . com ]  > sent : wednesday , june 28 , 2000 9 : 53 am  > to : piazzet @ wharton . upenn . edu  > cc : vince j kaminski  > subject : b 2 b at enron  >  >  >  > tom ,  >  > i am sending you the information about our new b 2 b unit .  > i have talked yesterday with greg whalley who is heading the new  > unit about the e - commerce project at wharton and recommended that enron  > join  > this program .  >  > i have sent him this morning a copy of the materials you gave me .  >  > the meeting with jeff skilling has been pushed till the 2 nd half of july .  > i talked to him briefly twice that jeff shankman and i want to discuss  > with  > him building a relationship with wharton . jeff shankman is , by the way , a  > great  > friend of  > your institution .  >  >  > vince  >  > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  > * * * * * * * * * * * * * * * * * * * * * * * * * * *  >  > companies & finance : the americas : enron sees bricks and  > bytes mix reshaping energy market : purchase of mg  > only a  > start in  > building b 2 b platforms , writes hillary durgin :  >  >  >  >  > companies financial times ; 16 - jun - 2000 12 : 00 : 00 am ;  > 604  > words  > by hillary durgin  >  > if jeffrey skilling is right ,  >  > enron ' s acquisition of mg is only the tip of the  > iceberg .  > enron ' s president and  > chief operating officer is engineering a fundamental  > strategy shift at the  > houston energy company , aimed at making it a dominant  > \"\" new  > economy \"\"  > player across various industrial markets .  >  > the dollars 446 m acquisition last month of mg , the  > uk - based  > metals trader ,  > is only the first of more than dollars lbn in  > estimated new  > investments the  > company is targeting . it is seeking vehicles on which  > to  > build  > business - to - business ( b 2 b ) platforms in sectors such  > as  > logistics , chemicals ,  > agricultural products and pulp & paper .  >  > mr skilling wants to take the business model the  > company  > developed in  > natural gas and power and apply it to other wholesale  > commodity markets . he  > argues the electronic platforms it creates will not  > only  > become the principal  > b 2 b sites for those sectors , but reshape those  > industries .  >  > as an example , he points to enron ' s new e - commerce  > platform ,  > enrononline ,  > which has changed the way the company does business  > with its  > customers  > while significantly increasing sales .  >  > the company - the largest wholesale merchant of  > natural gas  > and power - saw  > wholesale , physical deliveries of natural gas surge 53  > per  > cent in the first  > quarter .  >  > critics argue that enron ' s move away from its familiar  > energy business into  > new industries , where the learning curve is steep and  > the  > competition  > entrenched , is risky . yet a number of industry  > analysts  > point out enron has  > proved it understands markets and how to manage risks  > while  > becoming the  > largest importer of coal in the uk , the largest trader  > of  > gas and power in the  > us and grabbing an advantage in bandwidth .  >  > \"\" it ' s a prudent strategy , but it ' s got to be done in  > an  > orderly way , \"\" says ronald  > barone , analyst with paine - webber in new york . \"\" what  > they ' re  > doing here is  > what they ' ve been incredibly successful at doing , \"\" he  > adds ,  > noting that enron  > posted dollars 1 . 3 bn in earnings before interest and  > taxes  > ( ebit ) from its  > wholesale energy and services business in 1999 , up 34  > per  > cent from the  > previous year .  >  > earnings from that division accounted for two - thirds  > of the  > company ' s overall  > income before interest and taxes last year , and mr  > barone  > sees the unit ' s ebit  > increasing 15 - 30 per cent annually over several years .  >  > as with gas and power and now broadband , where enron  > is  > standardising  > contracts and creating a market in bandwidth , it wants  > to  > create markets by  > entering as a physical player and providing merchant ,  > risk  > management and  > financial services over the internet .  >  > \"\" we will provide electronic commerce , but we will  > provide  > liquidity and we will  > provide settlement , or fulfilment of that contract , \"\"  > mr  > skilling says . \"\" that is an  > extremely powerful model . if you look at other b 2 b  > sites ,  > they don ' t do that . \"\"  >  > mr skilling argues enron ' s e - commerce platform will  > triumph  > over the other ,  > bulletin board - type exchanges , where striking a deal  > depends  > on two parties  > hooking up and working through uncertainties over  > timing ,  > price , credit and  > fulfilment .  >  > not everyone shares that view . some energy companies ,  > for  > example , would  > rather not do business with a competitor . bp amoco  > recently  > purchased a 3  > per cent stake in altra energy technologies , a  > houston -  > based , neutral  > wholesale energy exchange . with koch industries and  > american  > electric  > power , it also committed to carry out a fixed volume  > of  > transactions on the  > site to lend it liquidity .  >  > just as in gas and power and now broadband and metals ,  > enron  > believes it  > needs networks of strategic physical assets . in  > acquiring  > mg , enron got a  > stable of warehouses , lending it a strong physical  > position .  >  >  > \"\" it should provide ( mg ) with a more vibrant , more  > active  > physical spot market  > in more markets in the world , \"\" says greg whalley ,  > chief  > executive officer of  > enron net works , the new division enron is launching  > to  > identify and enter  > commodity markets . he argues that in metals and other  > markets , enron will  > deliver better pricing , price risk management  > services ,  > cross - commodity  > transactions and flexible transactions for a wider  > range of  > customers .  >  > mr skilling says there are significant rewards for  > restructuring an industry .  >  > \"\" if you can take that platform , and you use the  > capabilities  > the bricks bring to  > the table , e - commerce the industry and change the  > structure ,  > you ' re selling for  > more than a 50 multiple . \"\"  >  > copyright , the financial times limited  >\",0\n\"Subject: a & a math majors  vince ,  thank you so much for meeting with me friday morning about the research  group .  after leaving your office , i remembered an issue i have had with the analyst  & associate program that might be of interest to you .  during a texas a & m recruiting meeting , i learned that we have expanded our  list of majors to include computer science . i wondered why math majors were  not mentioned , and was told that there was not a business need for math  majors . like liberal arts majors , they said math majors were only considered  on a person by person basis . in my opinion , math majors have many of the  same skills as finance majors , and can easily adjust to accounting rotations  as well ( i did last summer , and finance majors in the program are forced to  every year . ) i think that enron is missing out on many qualified candidates  by limiting their recruitment effort .  at texas a & m the career center asks companies for a list of majors they are  targeting , and only allows those majors to sign up for interviews through the  career center . i sent my resume to enron and asked to be included in the  interview process on campus . however , many other math majors had not heard  of enron or the other companies , and assumed that there was no place for a  math major at a company like enron . many math majors want to continue their  education , become teachers , or work for an actuarial firm . however , many  are undecided . we are constantly told of the many business possibilities  available to math majors by our teachers and staff , but many undergraduates  are still not sure exactly what math majors can contribute in a business  environment . by not mentioning math majors to the career center ( a very  simple and inexpensive step ) , enron is losing out on a very talented pool of  people . while it would be nice to get the math majors that knew about enron  already , had thoroughly researched all companies and determined that math  majors would fit perfectly , and went the extra step to send enron their  resume outside the career center system , there are many qualified students  who do not do this , and opt for other companies who did mention math majors .  i called a manager in the a & a program to suggest that we consider at least  mentioning math majors to the career centers . i realize that it may cost  more to actively pursue them , talk to teachers , and attend math society  events . however , i told her that including them at the career center would  be very inexpensive for enron . she reiterated that they saw no business need  for math majors , and that if more upper level people began requesting them ,  it would be considered . i searched for \"\" mathematics \"\" on the enron job  website , and had a surprising number of results . i know that your group  could use math majors as well . however , this still may be too small a number  to merit a focus from the a & a recruiting department . i just wanted to bring  it to your attention in case it was something that you felt should be changed .  thanks ,  heather johnson  x 53240\",0\n\"Subject: re : nikkei and pko  - - - - - - - - - - - - - - - - - - - - - - forwarded by leann walton / na / enron on 10 / 26 / 2000 10 : 48  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : darren delage @ enron on 10 / 24 / 2000 02 : 30 pm ze 9  to : maureen raymond / hou / ect @ ect  cc :  subject : re : nikkei and pko  this information has been most useful ! thank you maureen and please keep me  informed of any changes in pko policy , as we are right at levels were  everyone is watching for intervention .\",0\n\"Subject: year end 2000 performance feedback  note : you will receive this message each time you are selected as a reviewer .  you have been selected to participate in the year end 2000 performance  management process by providing meaningful feedback on specific employee ( s ) .  your feedback plays an important role in the process , and your participation  is critical to the success of enron ' s performance management goals .  to complete requests for feedback , access pep at http : / / pep . corp . enron . com  and select perform review under performance review services . you may begin  providing feedback immediately and are requested to have all feedback forms  completed by friday , november 17 , 2000 .  if you have any questions regarding pep or your responsibility in the  process , please contact the pep help desk at :  houston : 1 . 713 . 853 . 4777 , option 4  london : 44 . 207 . 783 . 4040 , option 4  email : perfmgmt @ enron . com  thank you for your participation in this important process .  the following is a cumulative list of employee feedback requests with a  status of \"\" open . \"\" once you have submitted or declined an employee ' s request  for feedback , their name will no longer appear on this list .  review group : enron  feedback due date : nov 17 , 2000  employee name supervisor name date selected  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  andrews , naveen c rudi c zipter oct 31 , 2000  baxter , ashley david davies nov 02 , 2000  crenshaw , shirley j wincenty j kaminski oct 26 , 2000  kindall , kevin vasant shanbhogue oct 30 , 2000  lamas vieira pinto , rodrigo david port oct 31 , 2000  supatgiat , chonawee peyton s gibner oct 27 , 2000  tamarchenko , tanya v vasant shanbhogue oct 26 , 2000  villarreal , norma e sheila h walton oct 26 , 2000  walton , sheila h david oxley oct 27 , 2000  yaman , sevil vasant shanbhogue oct 27 , 2000  yuan , ding richard l carson oct 31 , 2000\",0\n\"Subject: weather and energy price data  elena ,  please , prepare for mulong ng and power price series .  we can use henry hub for ng , cinergy , cobb and pv for electricity .  we can send him ng price right away . electricity prices are different : he has to obtain  permission from ft ( megawatts daily ) . i shall cc you on my msg to him .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 16 / 2001 02 : 03 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  mulong wang on 04 / 15 / 2001 03 : 43 : 26 am  to : vkamins @ ect . enron . com  cc : richard macminn  subject : weather and energy price data  dear dr . kaminski :  i am a phd candidate under the supervision of drs . richard macminn and  patrick brockett . i am now working on my dissertation which is focused on  the weather derivatives and credit derivatives .  could you kindly please offer me some real weather data information about  the price peak or plummet because of the weather conditions ?  the past winter of 2000 was very cold nationwide , and there may be a  significant price jump for natural gas or electricity . could you  please offer me some energy price data during that time period ?  your kind assistance will be highly appreciated and have a great day !  mulong\",0\n\"Subject: right of first refusal pricing  lorrian and michel ,  the rofr option , which grants the shipper the right to lock in the  transportation rate ( max rate ) for next  a few years , is priced as a spread swaption .  i priced two scenarios for you : the strip starts 1 ) nov . 1 - 00 and 2 ) nov . 1 - 01 .  for the first one i assume that the shipper makes decision on oct . 31 , 00 ( 54  days to maturity )  and on oct . 31 , 01 ( 419 days to maturity ) for the second case .  the second case has longer time to expiration , therefore larger option time  value . see the attached  spreadsheets for more detail .  let me know if you have any questions .  zimin\",0\n\"Subject: re : ebs var transaction policy  i have two things biting me .  first is time . i need to turn a draft for hannon and rice asap . so , the  value of a deliberative approach to coming up with a v @ r policy will quickly  evaporate if we take 2 weeks to study what the policy should say .  second , i have a unique situation . our concept of v @ r is really unlike the  rest of enron ' s today . what happens today is that network engineers  unilaterally make decisions about deployment , configuration and other matters  which effect the longs and shorts of our asset / contract portfolio that they  view strictly from a network operating standpoint .  a good example was a decision to move our primary terapop ( three large  servers storing 165 gigabytes each ) from portland to la . the servers are  already in place and purchased , so no capital was involved . but the  decision has huge ramifications on the future la / new york and other bandwidth  usage , and that cost money . now it could be that the la / new york cost is  cheaper than the portland / new york cost , the whole point is no one knows .  what our \"\" value - at - risk \"\" policy attempt to corral is these types of decisions  and put them into the hands of the risk management group , where the decision  will be made with at least some economic work behind it .  i really see the ebs v @ r policy to be misnamed , since we don ' t really have  the math done to calc v @ r . it really is a volumetric - based control policy  that says you can ' t make network changes over xx amount of megabytes ( a  storage measure ) or oc - 3 equivalents ( a bandwidth measure ) without risk  management making or approving the decision . i do believe that with  research ' s help , we can in time actually calculate the v @ r impact of such  decisions . at that time , the policy should be modified to set metrics based  on the v @ r calculations .  so if you have an open enough mind to let us co - op your word for a minute ,  we need to start turning the minds of the network industry people into  thinking about their decisions as having value effects . said directly ,  kevin hannon has given me authority to write a policy to move control over  significant network changes from the field to the trading floor , and i am  going to issue something now to effectuate that . . . . . .  so . . . i really want your views on what we are doing , but thought you needed  some flavor and an sense of the urgency . if you can weigh in , do so  quickly . . . . .  barry pearce  06 / 30 / 00 04 : 47 am  to : john echols / enron communications @ enron communications , lou casari / enron  communications @ enron communications  cc :  subject : re : ebs var transaction policy  positive . . . .  - - - - - forwarded by barry pearce / enron communications on 06 / 30 / 00 04 : 49 am  - - - - -  ted murphy @ ect  06 / 29 / 00 11 : 33 am  to : barry pearce / enron communications @ enron communications @ enron  cc :  subject : re : ebs var transaction policy  barry ,  conceptually , i see no reason that a process like this can not be  implemented . in some way we have attempted to do so through the enron corp  transaction approval process ( tap ) . i have forwarded to john a copy of this ,  along with the risk management policy . i ' ll let him share with you if ok ( i  really don ' t want to act as the firm ' s in - house kinko ' s ! ! ) . we have taken  the first step and done poorly on follow - up steps to create a very easy to  follow process for anything other than direct funded capital . however , some  process around a greater number of assets / deals is better than none . i  agree that i have not seen a really good fully baked one implemented , but i  think it is wrong not to try .  the only concerns i have is that , given that we want to have \"\" standard \"\"  metrics and approval processes around the firm , ebs creates a process / metric  which is complementary to and integrates with processes / metrics that the  other business units are subjected to .  ted  barry pearce @ enron communications  06 / 29 / 2000 09 : 09 am  to : stinson gibner / hou / ect @ ect , dale surbey / lon / ect @ ect , ted  murphy / hou / ect @ ect  cc : lou casari / enron communications @ enron communications , john echols / enron  communications @ enron communications , jim fallon / enron communications @ enron  communications  subject : ebs var transaction policy  hey you guys ,  we are trying to implement a ' var transaction ' policy - and would like your  opinion .  this is going to be tough - because i ' m not sure we have implemented a  similiar policy across any of our other ' books ' - that is - we looking to  bring in all the accrual / operational assets as well as the mtm stuff  ( lambdas ) . to have a real - live ' configuration ' of the system .  if assets / routes / servers etc . . . are added - what is the impact on the ' value '  of the system and what it ' s worth .  john has attached a draft below - for your review and thoughts .  i can see how this works in a trading environment - when you actually know  the var of your whole trading portfolio . however - i ' ve not seen this done  with a mixture of mtm & accrual assets . add the spice of a ' operational  system ' valuation - and this will be tough to quantify and model .  step 1 - configure system and value it  step 2 - calculate a var on this . we will need to do some work here !  step 3 - calculate the incremental var of new deals / amendements / reconfigs etc  - tough . . . .  see what you think ?  b .  john echols  06 / 28 / 00 05 : 41 pm  to : jim fallon / enron communications @ enron communications , barry pearce / enron  communications @ enron communications , lou casari / enron communications @ enron  communications  cc :  subject : policies  here is a first rough draft of a \"\" value @ risk \"\" transaction policy .  i would like you to start looking at where we are going on the policy and get  some early thinking going on limits for the v @ r . for example , should we  effectively shut down all server relocations without approval , or allow some  level of mb of storage to be moved around or reconfigured ?  i need some commercial and industry realism for this . we may need rick  paiste or your industry helpers ( marquardt , etc . to help us ) .  barry , lou , i need your input .\",0\n\"Subject: research memo on mg var  dear all :  comments on this document should be directed to vince and / or me .  regards ,  grant .\",0\n\"Subject: re : subscription renewal  barbara ,  yes , i would like to renew the  subscription .  thanks for the reminder .  vince  barbara lee @ enron  08 / 04 / 2000 03 : 37 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : subscription renewal  esource  august 4 , 2000  dear vince ,  this is to inform you that your subscription to operational risk is up for  renewal . if you would like to renew please let me know and i will take care  of it . the price for this publication .  ? 1 year $ 795 . 00  ? 2 years  ? 3 years  if you should have any questions , please do not hesitate to call me at ext .  3 - 7928 .  thank you for using esource .  sincerely ,  barbara\",0\n\"Subject: confirmation of 3 / 20 9 a . m . meeting at kmv in san francisco  dear mr . kaminski :  thank you for your phone messages , confirming that you and mr . bill bradford  will be meeting with mr . robert rudy ( managing director - head of client  service ) this monday , march 20 th , from 9 a . m . - 12 p . m . we are looking  forward to seeing you , and hopefully we ' ll even have some sunny weather for  you .  attached are the directions to our office . please be sure to note that our  dress code is business casual , so please do not feel obligated to wear a  suit and tie .  >  please let me know if you have any questions .  sincerely ,  kristina j . wun  marketing coordinator  kmv llc  1620 montgomery street , suite 140  san francisco , california 94111  415 - 765 - 5988 ( direct line )  415 - 296 - 9669 ( general line )  415 - 296 - 9458 ( fax line )  wun @ kmv . com  - directions to kmv . doc\",0\n\"Subject: re : wharton business plan competition  christie ,  look fwd to the trip .  shirley is sending you my itinerary .  when are you flying back ? what about a dinner on  tuesday ?  vince  from : christie patrick on 02 / 16 / 2001 10 : 10 am  to : stamer @ wharton . upenn . edu , piazzet @ wharton . upenn . edu  cc : vince j kaminski / hou / ect @ ect , jeffrey a shankman / hou / ect @ ect  subject : wharton business plan competition  hi anne !  i ' ll be at wharton on tuesday the 20 th - - perhaps we can get together to  discuss this sometime later in the afternoon . what does your schedule look  like ?  thanks !  - - christie .  - - - - - forwarded by christie patrick / hou / ect on 02 / 16 / 2001 10 : 08 am - - - - -  \"\" stamer , anne \"\"  01 / 26 / 2001 03 : 47 pm  to : \"\" ' christie _ patrick @ enron . com ' \"\"  cc :  subject : wharton business plan competition  dear christie :  thank you for your voice mail . things are moving along nicely with the  competition . phase ii deadline was today , so we hope to have some  statistics in the next few weeks . i have attached the statistics from phase  i , for your files . listed below are ways that enron could be involved , let  me know in which ( or all ) of these enron would be interested in participating .  * we want to start listing our sponsors , so it would be really good if we  could get your logo .  * also , does enron wish to be a judge in phase iii and the venture fair  ( vf ) ? for phase iii , we would mail each judge about 3 full blown business  plans to be ranked . we anticipate this taking no more than 1 afternoon  * for the vf , we would need a judge to be present for the entire day . the  vf is by invitation only and we anticipate about 350 students , venture  capitalists , business entrepreneurs and faculty . the vf will be held in  philadelphia on april 30 th .  * at the vf we will provide an opportunity for our sponsors with a 6 foot  table for exhibits or materials to hand out . we will need to know if you  wish to use the exhibit space .  * we plan on providing our 25 semi - finalist teams with one - on - one  mentoring . if enron is interested , that would be about 1 / 2 or 1 day  commitment .  * there might be an opportunity for a workshop to the university community .  would enron be interested in participating in something like this ?  i look forward to working with you to make this year ' s bpc a success . thank  you .  sincerely ,  anne stamer  >  anne stamer  wharton business plan competition  wharton entrepreneurial programs  the wharton school  419 vance hall , 3733 spruce street  philadelphia , pa 19104 - 6374  215 - 746 - 6460 ( direct )  215 - 898 - 4856 ( office )  215 - 898 - 1299 ( fax )  stamer @ wharton . upenn . edu  - phase ioverview . doc\",0\n\"Subject: prc review : list of key projects  hi dale & vince ,  for your benefit i have compiled a shortlist of the main projects worked on  over the past five months :  1 ) inflation curve modelling ( february and march )  2 ) uk power monthly vol curve generator  3 ) nordic power monthly vol curve generator  4 ) energydesk . com models & support  5 ) compound options for uk power desk ( options to build power stations )  6 ) continental power non - generic options ( using arbitrary trader - specified  distributions )  7 ) global products : non - generic options modelling and new commodity forward  curve construction ( benzene fwd curve from naphtha )  8 ) exotic options library upgrade / model test / bug fixes ( e . g . testing new / old  asian models )  9 ) continental gas volatility curve construction  the best summary for this is in the attached presentation that i gave to the  london and oslo staff recently .  regards ,  anjam  x 35383  presentation attached :\",0\n\"Subject: re : henwood query  good talking with you this morning . by all means , talk to grant masson about  who else is using the henwood model within enron .  attached are the workbooks i mentioned . the \"\" details of jan and july . xls \"\"  workbook contains the resulting listing from the query i gave you yesterday  and you can see how the supply curve was created from that . the supply curve  becomes nonsense at points for reasons i believe are related to reliability  commitment constrants , instead of pure economic dispatch , and to the aggregate  reporting problem i described in my note yesterday .  the workbook \"\" supply curve . xls \"\" has the simplistic , average supply curve i  mentioned , constructed from fuel and vom costs . depending on the question you  are trying to answer , it may be an approach to consider .  the henwood contacts i had in mind are :  tao guo , phd , senior \"\" algorithmist \"\" ( 916 - 569 - 0985 ) * the one i was thinking  of  wenxiong huang , phd senior project consultant ( 916 - 569 - 0985 )  ajit kulkarni , phd , software product manager ( 916 - 569 - 0985 ) * more a trainer ,  but sharp  cosimo coscia , senior consultant ( south australia ) 618 - 8357 - 1244 * very  resourceful  wade schauer , staff consultant , ( 916 - 569 - 0985 ) * best for questions about emss  per se  all have emails , of course . template : tguo @ hesinet . com  also , if you can not get satisfaction , contact eric toolson , vp  ( 916 - 569 - 0985 ) . he has a laconic style , but is very focused on customer  satisfaction and retention . and he has the pull to make things happen .  regards ,  michael  > > > karolina potter / lon / ect @ enron 08 / 24 / 00 07 : 08 am > > >  michael ,  i am an analyst in paul mead ' s continental power trading group in london . i am  currently working on the project , which requires the use of emss , and  experience some difficulties interpreting the output results . steven leppard  from our research group gave me your name as an expert in this system and  consequently the person to contact in case of problems .  i have been running simulations for the dutch market and was asked to provide  the traders with some front - end screen graphs in order to interpret the  numerical results . one of the graphs is to show an hourly generation stack and  system ' s marginal cost , as we only run cost based scenarios . to sort each  station ' s hourly generation i need its marginal cost . to my knowledge though ,  marginal cost is only generated for a systems marginal unit ( transarea  marginal units query , marg _ cost unit ) . therefore i was sorting the stations  according to the cost which i calculated based on the outputs from station  detail by hour query . the calculation was as follows :  for each hour , for each generating station :  \"\" marginal cost \"\" [ o / mwh ] = ( generation _ cost [ oo 00 ] * 1000 ) / generation [ mwh ] -  vom _ cost [ o / mwh ]  this i thought would include fuel cost and start up costs . however , a marginal  station which i get on the stack as a result of the above calculation is not a  station given in marginal station field in transarea marginal units query . i  have also looked into transarea _ data _ hr table and transarea _ data table but non  of the costs there match my results .  do you happen to know what formula is used to determine marg _ cost and which  outputs i should be using to obtain the right results ?  it might be easier if we could discuss this issue on the phone . in this case  could you please send me your direct telephone number . i am struggling  understanding what is going on and would appreciate your help very much .  regards  karolina\",0\n\"Subject: re : background information  vince : i will send to you later today the information you requested in  electronic form ; in the meantime , please discuss with jeff shankman . he just  alerted me that he has procured the required funding and that jeff skilling  has agreed to enron joining the webi at the corporate partner level . i am to  call jeff shankman later today to discuss .  this is great news for the school and enron ! ! would not have been possible  without your persistance and assistance and i thank you for it .  we will discuss more later .  tom  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com  sent : tuesday , november 07 , 2000 6 : 23 pm  to : piazzet @ wharton . upenn . edu  cc : vince . j . kaminski @ enron . com  subject : re : background information  tom ,  electronic version is ok .  vince  \"\" piazze , thomas \"\" on 11 / 07 / 2000 10 : 25 : 45 am  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc :  subject : re : background information  vince : i will be happy to do so . do you wish to have it in hard copy or  electronically ? if in hard copy , how many copies ?  tom  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com  sent : monday , november 06 , 2000 6 : 00 pm  to : piazzet @ wharton . upenn . edu  cc : vince . j . kaminski @ enron . com  subject : background information  tom ,  can you send me additional copies of the information about the webi  program ? i want to distribute it internally .  vince\",0\n\"Subject: re : new computer  jarod :  can you help her with the sun equipment ?  shirley :  what type equipment are you requesting for the other users  thanks  lyn  shirley crenshaw  01 / 17 / 2000 03 : 43 pm  to : lyn malina / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , kevin g moore / hou / ect @ ect , william  smith / corp / enron @ enron  subject : new computer  hi lyn :  i have not received an answer for the below request for another sun  computer . did you get it ?  we also need to order another regular computer like the others that have  been supplied to the research group . it will be for tanya tamarchenko  and her location on the 19 th floor is eb 1940 . tanya has two offices and  does not have a computer in her office on the 19 th floor .  co # 0011 - rc # 100038  thanks !  shirley crenshaw  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 01 / 17 / 2000  03 : 39 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  shirley crenshaw  01 / 12 / 2000 11 : 14 am  to : lyn malina / hou / ect @ ect  cc :  subject : sun computer  hi lyn ;  the research group is in need of another sun computer to be located at  ebl 951 . please let me know that eta .  co . # 0011 - rc # 100038  thanks !  shirley  3 - 5290  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 01 / 12 / 2000  11 : 10 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  shirley crenshaw  01 / 07 / 2000 01 : 49 pm  to : lyn malina / hou / ect @ ect  cc : william smith / corp / enron @ enron , vince j kaminski / hou / ect @ ect , alex  huang / corp / enron @ enron  subject : new pc  hi lyn :  alex huang has requested a new pc and vince kaminski has ok ' d it . please  order the computer as listed below in alex ' s request .  thanks !  shirley  3 - 5290  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 01 / 07 / 2000  01 : 48 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  01 / 07 / 2000 12 : 12 pm  to : shirley crenshaw / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , grant masson / hou / ect @ ect , alex  huang / corp / enron @ enron  subject : new pc  shirley ,  ok .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 07 / 2000  12 : 02 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  alex huang @ enron  01 / 07 / 2000 08 : 28 am  to : shirley crenshaw / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , grant masson / hou / ect @ ect  subject : new pc  hi shirley ,  i would like to request for a new pc . my current pc is quite old with not  enough memory . twice  i ran out of memory and had to have it people coming to clean it for me .  their suggestion is  to either get a new hard drive or a new pc . given that dell has pentiumc iii  processor at 800 mhz  on market , i would like to request a pc with process at 500 mhz or higher  level .  thank you very much .  best ,  alex\",0\n\"Subject: reschedule - iv amit bartarya first floor sel 002 ( 21 feb 16 : 00 gmt )  interview schedule  16 . 00 - 16 . 30 vince kaminski & anjam ahmad  16 . 30 - 17 . 00 ben parsons  17 . 00 - 17 . 30 stephen leppard\",0\n\"Subject: hea sporting clays tourney - august 15 , 2000  this member favorite is just a few weeks away , and there ' s still time for you  to register and be eligible for the private drawing for a remington 1187 !  just send in your form and payment by august 1 , and remember you must be  present to win !  the sporting clays committee and hea want to thank this year ' s sponsors to  date and encourage other companies to participate if possible . if you ' d like  to join this elite list , contact jim cody ( 713 / 230 - 3550 ) , t . kemp jones  ( 713 / 207 - 5189 ) or jeff eatherton ( 713 / 529 - 5247 ) .  duke field services ; coral energy / tejas energy ; sanchez oil el  paso field services ; reliant energy gas transmission ; reliant energy field  services ; mitchell gas services ; coastal field services ; and reliant energy  pipeline services . the continued success of this tournament through the  enhanced quality of the prizes , dinner and services are made affordable only  through your contributions and we appreciate your support !  other door prizes this year include a browning citori and several other  guns ! all prizes will be awarded during dinner in the air conditioned  pavilion . the two man flush will be shot from a newly covered deck , and  other areas on the courses have been covered as well .  so visit the website , www . houstonenergy . org , and fill out a registration  form under \"\" next event \"\" . that ' s august 15 at the american shooting centers  ( 16500 westheimer parkway ) , and choose between 50 and 100 targets . even  non - shooters can come out , eat dinner , have some drinks and possibly win a  door prize and have lots of fun . if you have other questions , contact eva  pollard at 713 / 651 - 0551 .  this message was sent by :  teresa knight , executive director  houston energy association ( hea )  phone : ( 713 ) 651 - 0551  fax : ( 713 ) 659 - 6424  tknight @ houstonenergy . org  if you would like to have your email address removed from our mailing list ,  please click the link below to the hea home page , where you will find a  mini - form to remove your name automatically .  http : / / www . houstonenergy . org /\",0\n\"Subject: re : chase  chris ,  we don ' t have yet any report on broadband that might help you , developed  internally  by my group . we are working on a tutorial and we shall send you a copy when  it ' s ready .  the person who can give you an introduction to this market is ravi  thuraisingham .  vince  chris holmes @ ees  04 / 05 / 2000 09 : 55 pm  sent by : chris holmes @ ees  to : vince j kaminski / hou / ect @ ect  cc :  subject : chase  vince :  i am working now in ees as the chase national account manager and am  developing new products to sell chase . one of the products i am working on  integrates the provision of broad band with a package of computer  hardware and software for a company ' s employees .  i can explain more if you are interested .  i understand you put together a report on broadband which has helped educate  people as to the technology and economics . can i get a copy ? .  also do you have any analyses on chase that might help me detect other  opportunities ?  is there anyone on your staff with whom i should talk ?  thanks  chris\",0\n\"Subject: re : interview schedule for punit rawal  shirley : i have been in touch with punit over the past several week , and it  appears that february 2 nd would suit his schedule best for the visit . how  does that date look for vince and the others in the group who will be  interviewing him ?  stephanie cody , my new admin whom you met last week , will be contacting punit  to make his travel arrangements .  molly  shirley crenshaw  01 / 16 / 2001 09 : 24 am  to : molly magee / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , kevin kindall / corp / enron @ enron , bob  lee / na / enron @ enron  subject : interview schedule for punit rawal  hi molly :  punit rawal is a carnegie mellon student that kevin kindall and bob lee  interviewed back in december . we would like to bring him in for an  interview . he is definately a \"\" trading support \"\" prospect .  i forwarded his resume to john lavorato back in december and inquired  as to whether he would be interested in interviewing him or not , but have  had no response , except that he has not had a chance to look at his  resume yet .  vince originally said that either john or gary hickerson might be interested .  i did not send his resume to gary , maybe you can check with him ?  i am attaching the interview request form and his resume . thanks !  shirley  - punit + rawal + newresume . doc\",0\n\"Subject: anshuman  neil ,  i would like to apologize for the confusion regarding anshuman .  we have floated a number of possible scenarios regarding his  trip to houston and there was a lot of confusion  regarding the terms ( given that i was talking to sandeep  every few days ) .  currently , we expect anshuman to come to houston for one month  to work on the dpc project ( at jeff shankman ' s request ) . the lawyers advised  me that we need an ll visa for him , irrespective of the duration  of his stay .  sorry for the confusion .  vincent kaminski  managing director - research  enron corp .  1400 smith street  room ebl 962  houston , tx 77002 - 7361  phone : ( 713 ) 853 3848  fax : ( 713 ) 646 2503  e - mail : vkamins @ enron . com\",0\n\"Subject: followup  - - - - - - - - - - - - - - - - - - - - - - forwarded by patricia tlapek / hou / ect on 06 / 12 / 2000  03 : 57 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  barcharts @ aol . com on 06 / 09 / 2000 10 : 01 : 59 am  to : patricia . tlapek @ enron . com , mike . roberts @ enron . com  cc :  subject : followup  good morning ,  i enjoyed visiting you yesterday afternoon to discuss the opportunity at  enron . sounds exciting , challenging and a good use of a lot of my skills and  experience . i look forward to further talks , hopefully this coming week .  i mentioned a couple web sites and don ' t know if they came through clearly on  the phone with my sore throat .  the neural network approach to timing can be found at  http : / / www . pfr . com / ptonline /  the introductory piece on technical analysis i wrote for forbes . com and the  glossary can be found at htttp : / / www . forbes . com / tool / html / 00 / jun / 0603 / feat . htm  i am also working with long time friend and neighbor steve nison with his  site and you can see the first on line lesson for free at  http : / / www . candlecharts . com /  have a nice weekend . hope to hear from you next week .  bruce m . kamich , cmt  barcharts @ aol . com  732 - 463 - 8438\",0\n\"Subject: hello  shirley ,  can you , please , call him and ask what would be best timing .  the last week of july would be best . i would like grant , alex , zimin , krishna  and stinson  to meet him .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 06 / 29 / 2000  08 : 13 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  shijie deng on 06 / 29 / 2000 12 : 00 : 37 am  to : vkamins @ enron . com  cc :  subject : hello  hi vince ,  how are you . it was really a pleasure meeting you and talking to you at  the toronto energy derivative conference . thank you for speaking with  me about the possibility of visiting your research group . it will be  great if i could have such opportunity whenever you see your schedule  fits . i am very much open for the last week of july and early august .  i ' m looking forward to hearing from you soon .  best ,  shijie  shi - jie deng  assistant professor  school of isye  georgia institute of technology  office phone : ( 404 ) 894 - 6519  e - mail : deng @ isye . gatech . edu  home page : http : / / www . isye . gatech . edu / ~ deng\",0\n\"Subject: re : corporate allocation from enron research group  i discussed the numbers with vince and we have the sign off from him . so ,  vera and shirley , you can go ahead to execute the adjustment .  thanks ,  krishna .  kimberly watson @ enron  12 / 06 / 2000 02 : 07 pm  to : pinnamaneni krishnarao / hou / ect @ ect , vera apodaca / et & s / enron @ enron  cc :  subject : corporate allocation from enron research group  krishna ,  attached is a spreadsheet with the figures we discussed earlier . for  july - dec , ets will keep half of the amount allocated ( equivalent to 1 . 5  employees , $ 135 . 6 ) from the corporate allocations to ets . if this looks ok  to you , i would like to have vera work with shirley to handle the accounting  adjustment similar to mid year . many thanks , kim .  vera ,  here is the year 2000 spreadsheet . as you will see , we will need to work  with shirley crenshaw ( x 35290 ) with enron research group to coordinate a  similar accounting adjustment to the one we made mid year . i will send the  year 2001 budgeted spreadsheet to you in the next few days ( just in case it  changes with the approval of the science workorder ) . please call me if you  have any questions about this spreadsheet . thanks , kim .\",0\n\"Subject: west power model  lance and i spoke with tim heizenrader regarding modeling work and needs for  the west desk . the differences in the markets between east and west are , in  tim ' s opinion , sufficient that he does not need an approach as sophisticated  as the one we are pursuing for ercot . in particular , the termal limits for  which load flows are so useful are not generally binding in the west . loop  flows are also not considered a major issue at present .  in summary , it seems that the west is an unlikely customer of any extension  to an ercot / east transmission model for the time being . they have also done  little in this area that would directly relate to our efforts here .  martin\",0\n\"Subject: fw : memo : re : your work phone number  hi ,  i am forwarding an email from a former bnp paribas colleague of mine who now works at hsbc .  can you please advise ?  thanks ,  iris  - - - - - original message - - - - -  from : antonella . saulle @ hsbcib . com @ enron [ mailto : imceanotes - antonella + 2 esaulle + 40 hsbcib + 2 ecom + 40 enron @ enron . com ]  sent : tuesday , may 22 , 2001 1 : 30 am  to : mack , iris  subject : memo : re : your work phone number  iris  i would like you to put me in contact with s / one at enron here in london that  deals with weather derivatives and would be in a position to sell us options on  weather derivatives ( temperature , cat ) . let me know if you are able to do that  or if i need to work internally here in order to find out whom we have contacts  with at enron .  if you want to call me my direct line is + 44 207 336 - 2836 . alternatively i could  call you but do bear in mind that i leave the office around 6 : 30 - 7 pm london  time . send me an email and let me know when is a good time to talk and i will  call you back .  thanks in advance .  antonella  this transmission has been issued by a member of the hsbc group ( \"\" hsbc \"\" )  for the information of the addressee only and should not be reproduced  and / or distributed to any other person . each page attached hereto must  be read in conjunction with any disclaimer which forms part of it . unless  otherwise stated , this transmission is neither an offer nor the solicitation  of an offer to sell or purchase any investment . its contents are based on  information obtained from sources believed to be reliable but hsbc makes  no representation and accepts no responsibility or liability as to its  completeness or accuracy .\",0\n\"Subject: computer  hello again ,  the computer i mentioned earlier will  remain at the location eb 3239 d however ,  it belongs to us ,  i got with chris and it is not really in  his way at this point .  fyi - computer # 002813  monitor # 202803  kevin moore\",0\n\"Subject: re : dale nesbitt meeting tues  margaret ,  i shall invite hunter shiveley . i think it will cover ena .  vince  margaret carson @ enron  11 / 02 / 2000 09 : 57 am  to : vince j kaminski / hou / ect @ ect  cc : james d steffes / na / enron @ enron  subject : dale nesbitt meeting tues  vince do you plan on inviting anyone from the power issues side  - - perhaps ben jacoby , julie gomez , jean mrha , scott neal to this meeting ?  thanks margaret  - - - - - - - - - - - - - - - - - - - - - - forwarded by margaret carson / corp / enron on 11 / 02 / 2000  09 : 54 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : john goodpasture 11 / 01 / 2000 05 : 53 pm  to : vince j kaminski / hou / ect @ ect , margaret carson / corp / enron @ enron , mike  mcgowan / et & s / enron @ enron , dave neubauer / et & s / enron @ enron , robert  hill / npng / enron @ enron , shelley corman / et & s / enron @ enron  cc : danny mccarty / lon / ect @ ect , bill cordes / et & s / enron @ enron , michael  moran / et & s / enron @ enron , rod hayslett / fgt / enron @ enron  subject : dale nesbitt meeting  margaret carson is going to join us in the meeting next week with nesbitt .  vince will check with ena to see if they also want to attend . i would also  like to determine if ets and / or nbp would want to send a representative ( s ) ,  although margaret said she would take copious notes for distribution to other  key players as necessary . we should ask nesbitt how he would structure a  deal for multiple clients ( eg . ets , nbp , ena , and maybe el paso ) .  [ we need to remain aware of any \"\" affiliate \"\" issues that may result , and make  certain that we are in complete compliance with the regs . ]  i will wait until after our meeting with nesbitt before deciding if / how to  approach el paso . presumably , if asked to particpate , they would share the  cost and have independent access to any working model that is developed .  jng  - - - - - - - - - - - - - - - - - - - - - - forwarded by john goodpasture / ots / enron on 11 / 01 / 2000  04 : 51 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski @ ect  10 / 30 / 2000 04 : 42 pm  to : john goodpasture / ots / enron @ enron  cc : vince j kaminski / hou / ect @ ect  subject : dale nesbitt  john ,  i talked to dale nesbitt . he suggested that the best way to evaluate his  model is to  go through a one week intensive project with assistance of somebody from his  company .  our cost is a flat fee of $ 12 , 500 that would be deducted from the purchase  price of $ 55 , 000 ,  in case we buy the software package .  the price of 55 k is indicative and will be adjusted based on the required  level of support .  dale will be in houston next week . i have tentatively invited him to visit  with us on tuesday ,  november 7 , at 3 : 00 p . m . he will adjust if you are busy at this time .  please , let me know what you think .  vince\",0\n\"Subject: re : test  vince :  candice ' s contact information at mount holyoke is as follows :  phone : ( 413 ) 493 - 5092  email : cgkao @ mtholyoke . edu  address : 1453 blanchard campus center  mount holyoke college  south hadley , ma 01075 - 6002  ed  ps : i hope ron singer has given you the needed info . please feel free to  contact me if i can be of any help with regard to your colleague ' s inquiry  about pursuing doctoral study at uh .\",0\n\"Subject: year end 2000 performance feedback  note : you will receive this message each time you are selected as a reviewer .  you have been selected to participate in the year end 2000 performance  management process by providing meaningful feedback on specific employee ( s ) .  your feedback plays an important role in the process , and your participation  is critical to the success of enron ' s performance management goals .  to complete requests for feedback , access pep at http : / / pep . corp . enron . com  and select perform review under performance review services . you may begin  providing feedback immediately and are requested to have all feedback forms  completed by friday , november 17 , 2000 .  if you have any questions regarding pep or your responsibility in the  process , please contact the pep help desk at :  houston : 1 . 713 . 853 . 4777 , option 4  london : 44 . 207 . 783 . 4040 , option 4  email : perfmgmt @ enron . com  thank you for your participation in this important process .  the following is a cumulative list of employee feedback requests with a  status of \"\" open . \"\" once you have submitted or declined an employee ' s request  for feedback , their name will no longer appear on this list .  review group : enron  feedback due date : nov 17 , 2000  employee name supervisor name date selected  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  andrews , naveen c rudi c zipter oct 31 , 2000  baxter , ashley david davies nov 02 , 2000  campos , hector o peyton s gibner nov 06 , 2000  carson , richard l richard b buy oct 30 , 2000  crenshaw , shirley j wincenty j kaminski oct 26 , 2000  gandy , kristin h celeste c roberts nov 01 , 2000  gorny , vladimir theodore r murphy ii nov 02 , 2000  hewitt , kirstee l steven leppard nov 06 , 2000  kindall , kevin vasant shanbhogue oct 30 , 2000  leppard , steven dale surbey nov 06 , 2000  patrick , christie a steven j kean nov 09 , 2000  pham , bich anh t sarah brown nov 06 , 2000  raymond , maureen j wincenty j kaminski nov 02 , 2000  rosen , michael b christie a patrick nov 06 , 2000  sun , li kevin kindall nov 09 , 2000  supatgiat , chonawee peyton s gibner oct 27 , 2000  tamarchenko , tanya v vasant shanbhogue oct 26 , 2000  tawney , mark r jeffrey a shankman oct 26 , 2000  thuraisingham , ravi paul h racicot jr nov 12 , 2000  williams , matthew steven leppard nov 08 , 2000  yaman , sevil vasant shanbhogue oct 27 , 2000  yuan , ding richard l carson oct 31 , 2000\",0\n\"Subject: re : vacation  shirley ,  no problem .  vince  shirley crenshaw  03 / 08 / 2000 03 : 56 pm  to : vince j kaminski / hou / ect @ ect  cc : kevin g moore / hou / ect @ ect , william smith / corp / enron @ enron  subject : vacation  vince :  i would like to take the following days as vacation :  wednesday , march 15 th  friday , march 31 st .  please let me know if this is ok with you .  thanks !  shirley\",0\n\"Subject: vince kaminski  vince :  did you get the below email from jim garven ?  would you be able to stay over and speak at the risk management fraternity  and perhaps come in a day early and speak to his students ?  shirley  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 12 / 05 / 2000  02 : 08 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  jim garven on 12 / 05 / 2000 02 : 09 : 27 pm  to : \"\" shirley crenshaw \"\"  cc :  subject : vince kaminski  dear ms . crenshaw ,  on november 28 , i sent vince kaminski an email inviting him to visit baylor  university ( where i now hold an appointment as professor of finance having resigned from lsu this pas spring ) . ? i have yet to receive  a reply from him . ? can you bring this email ( copied below ) to his attention ?  thanks ,  jim garven  = = = = = = = = = = = = = = = = = = = = = = = = = = =  dear vince ,  since we last corresponded , i have left lsu and am now professor of finance &  insurance at baylor university in waco , tx . my colleague at baylor , john  martin , mentioned that you will be coming to campus for a conference on  friday , february 23 that he is organizing . i am curious whether your schedule  might permit staying over that evening so that we can feature you as our  dinner speaker for the chartering ceremony of gamma iota sigma , a national  risk management fraternity . for that matter , would you also possibly be  available to make any presentations to undergraduate and graduate students on  the previous day ( thursday , february 22 ) ? what i have in mind is a  presentation similar to the presentations you made last spring to my lsu  classes .  thank you for your consideration of this request . i am looking forward to  seeing you once again .  sincerely ,  jim garven  james r . garven , ph . d .  professor of finance & insurance  department of finance , insurance and real estate  hankamer school of business  hsb 336  baylor university  box 98004  waco , tx ? 76798  voice : ( 254 ) 710 - 6207  fax : ( 603 ) 994 - 6680  e - mail : ? james _ garven @ baylor . edu  home page : http : / / garven . baylor . edu  vita : http : / / garven . baylor . edu / dossier . html  research paper archive : http : / / garven . baylor . edu / research . html \",0\n\"Subject: re : corn subsidy govt program analysis  vasant ,  thanks . let ' s contact wharton next week .  vince  from : vasant shanbhogue / enron @ enronxgate on 04 / 25 / 2001 10 : 15 am  to : vince j kaminski / hou / ect @ ect  cc : nelson neale / na / enron @ enron  subject : corn subsidy govt program analysis  hi vince ,  nelson and i had a meeting yesterday with the ag desk folks on how to go  forward on the analysis and presentation for this program . the consensus  from the ag side was that the choice of university will be highly politically  driven , ie preferably the university should be from a state that has close  ties to sympathetic senators or other political figures . also it is  preferable if the university faculty have worked on ag issues before , lending  more credibility in the ag community . the names that came up were  mississippi state and texas a & m . nelson knows of a person at mississippi  state who worked with the usda on risk management issues .  the needed analysis itself is not necessarily very deep , and the focus is  primarily to get a non - quantitative presentation out that outlines how enron  can take on the downside risk of local crop prices ( enron probably needs to  cover actual local prices and not simply an index because i do not think the  govt will want to worry about basis risk ) .  the pilot program itself will be very small , and lends itself to continuing  down the path of short term trading rather than long term origination .  another thought on hedging our potential short positon ( on the origination  side ) is that the govt program can only provide a partial hedge to the extent  of the premium received - - we still have unlimited downside from the short .  vasant  p . s . i am writing up jim bouillion ' s project suggestion as a potential  project for wharton . of course , we may still ask wharton for their insights  on the corn price protection approach .\",0\n\"Subject: re : introduction meeting : rac london quants and houston research  hi vince ,  thanks for organizing the meetings , and a special thanks for organizing the  reservations for the dinner .  i am looking forward the visit to houston .  rodrigo  vince j kaminski  24 / 08 / 2000 20 : 25  to : rodrigo lamas / lon / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : introduction meeting : rac london quants and houston research  rodrigo ,  i think it is churrasco ' s , a south american restaurant .  i shall make reservations for the 12 th . i shall also  arrange the meetings on tuesday with different units of the research group .  vince  rodrigo lamas  08 / 24 / 2000 01 : 59 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : introduction meeting : rac london quants and houston research  vince ,  thank you very much .  i would rather talk to your group on sep the 12 th ( tuesday ) .  i hope i will be entitled to disturb them again during the rest of the week  as well .  we can certainly go out for dinner . steven mentioned a brazilian restaurant he  went to and i am looking forward going there . this in case you are not  vegetarian .  thanks again ,  rodrigo  vince j kaminski  24 / 08 / 2000 19 : 54  to : rodrigo lamas / lon / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : introduction meeting : rac london quants and houston research  rodrigo ,  we shall be very glad to meet you .  if you can dedicate one day to meeting the members of the research group i  could arrange a series of meetings with different units .  what about sep the 11 th or sep the 12 th ( monday or tuesday ) ?  if you are free one evening we can have dinner together .  vince  rodrigo lamas  08 / 24 / 2000 11 : 01 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : introduction meeting : rac london quants and houston research  vince ,  i work for the market risk rac london group . i review the quantitative issues  arising from enron europe models .  i am in this function given my background ( phd from imperial college - london )  and also due to my past experience  as risk manager for a brazilian investment bank and louis dreyfus .  my agenda includes the review of a number of deals ( wessex , tpl , eastern ,  . . . ) , as well as the  review of the construction of european gas and power price curves and their  respective volatility curves .  currently i am devoting most of my time to the analysis of the uk gas market ,  its respective  price curve and term structure of volatility .  bjorn and david suggested it could be very productive if i had the chance to  meet you and your team  to discuss issues related to modelling prices and risk measurement tools .  i will be in houston from the 10 th to 15 th september . i wonder if you could  book some time for me in  your agenda and also ask some members of your team to do the same .  thanks ,  rodrigo\",0\n\"Subject: reviewer approval  please note that your employees have suggested the following people to  complete a feedback form on their behalf . you will need to access the  performance management system ( pep ) to either approve or decline these  suggested reviewers . once you have approved the suggested reviewers they  will be notified and can begin completing the feedback form .  your list of employees that have suggested reviewers are listed below :  date suggested : may 19 , 2000  feedback due date : jun 16 , 2000  employee name : kollaros , alexios\",0\n\"Subject: to basak  vince ,  please find attached a small note i had prepared at wade ' s request . the note  is to be used for a private meeting of the ex - chairman of mseb with the  governor of maharashtra . in the indian system , the governor represents the  federal government in the state . hence any information he gathers is for the  central govt .  this informal note is to be passed to him . the focus as you will see is to  see if we can engage the central govt . through this route .  krishna is here and sends his regards .  regards ,  sandeep .  - - - - - - - - - - - - - - - - - - - - - - forwarded by sandeep kohli / enron _ development on  01 / 16 / 2001 08 : 55 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  sandeep kohli  01 / 16 / 2001 08 : 51 am  to : wade cline / enron _ development @ enron _ development  cc :  subject : to basak  wade ,  please find the note attached for mr . basak . the tariff data is all from the  information sheet put out by mohan , so you should have no conflicts .  i have tried to give it the appropriate spin .  let me know if there is something you would like to do differently on this .  regards ,  sandeep .\",0\n\"Subject: ferc ' s soft price caps : what do they mean ? - cera conference call  notification  * * * please accept our apologies if you have received this message already * * *  we have been experiencing some technical difficulties , and you may have  already received this message last week . ? we apologize for any inconvenience  this may have caused . - cera webmaster  title : ferc ' s soft price caps : what do they mean ?  url :  0 . html  or  0 . html  topic : ferc ' s price caps : what do they mean ?  * objectives and methodology outlined by ferc in these orders  * implications of this form of price cap on competitive power markets  * ferc ' s application of other price cap methodologies in other regions  format  our speakers will address this topic for 30 minutes , with accompanying  graphics  presented on the internet , followed by an open question and answer period .  speakers  john athas , cera associate director , north american electric power  mike zenker , cera director , western energy  time  4 : 00 p . m . eastern , tuesday , april 10 , 2001  eligibility  clients eligible to participate in this conference call are those who  subscribe  to the cera north american electric power retainer advisory service or the  western energy retainer advisory service .  to enroll  to enroll , please send a fax to kari paakaula at ( 617 ) 497 - 0423 or send an  e - mail to kpaakaula @ cera . com before 4 : 00 p . m . , monday , april 9 , 2001 . please  include your name , company , and telephone number with your correspondence .  to participate  to participate in the audio portion of the call , please call in on one of the  following numbers approximately 10 - 15 minutes before the call :  within the united states : 1 - 800 - 946 - 0713  outside the united states : ( 719 ) 457 - 2642  confirmation code : 713248  title of the call : cera power call  to participate in the internet portion of the call ( audio is by telephone ) ,  log  on to the internet approximately 15 - 30 minutes before the presentation to  ensure technological compatibility .  1 . point your browser to http : / / www . placeware . com / cc / visioncastconferencing  2 . enter the following information , then click \"\" attend \"\" :  * your name  * meeting id : w 713248  * meeting key : 713838  3 . access audio for the meeting using the audio information above .  system requirements and suggestions  * internet connection not reliant on the phone line you will use for the  call .  * a java - enabled browser , such as microsoft internet explorer 3 . 02 or higher ;  netscape navigator 3 . 02 or higher ; or sun hot java ( tm )  * close all desktop applications and disable your screen saver  to ensure computer compatibility , complete the internet instructions before  the  day of the call . a message will appear telling you that your meeting is not  ready to start . however , it also informs you about any action that you may  need  to take to prepare your computer to participate .  technical assistance  if you experience difficulties during the call , you may signal for technical  assistance by pressing * 0 ( star , zero ) on your telephone keypad , once  connected  to the audio portion of the conference .  for more information , please contact kari paakaula via e - mail at  kpaakaula @ cera . com or via telephone at ( 617 ) 441 - 1362 .  a recording of this call will be available until may 10 , 2001 . to access this  recording , please call 1 - 888 - 203 - 1112 ( within the united states ) or  719 ) 457 - 0820 ( outside the united states ) . please use confirmation number  713248 to access the call .  * * end * *  e - mail category : conference call notification ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?  cera knowledge area ( s ) : north american power , western energy ,  cera ' s spring 2001 roundtable event dates and agendas are now available  at http : / / www 20 . cera . com / event  to make changes to your cera . com profile go to :  forgot your username and password ? go to :  http : / / www 20 . cera . com / client / forgot  this electronic message and attachments , if any , contain information  from cambridge energy research associates , inc . ( cera ) which is  confidential and may be privileged . unauthorized disclosure , copying ,  distribution or use of the contents of this message or any attachments ,  in whole or in part , is strictly prohibited .  terms of use : http : / / www 20 . cera . com / tos  questions / comments : webmaster @ cera . com  copyright 2001 . cambridge energy research associates\",0\n\"Subject: carnegie mellon speech  following are the reservations for the speech on friday november 3 :  hotel : westin william penn hotel  ( 412 ) 281 - 7100  conf . : kristin - 401220  vince - 401221  any questions , call me .  alyse\",0\n\"Subject: re : test  tom ,  the conference in new york is held on may 18 and may 19 . i can visit wharton  the day before .  vince kaminski  \"\" piazze , thomas \"\" on 04 / 05 / 2000 08 : 40 : 55 am  to : \"\" ' vince j kaminski ' \"\"  cc :  subject : re : test  vince : i enjoyed talking with you yesterday and look forward to receiving  information relative to your visit to campus .  tom piazze  > - - - - - original message - - - - -  > from : vince j kaminski [ smtp : vince . j . kaminski @ enron . com ]  > sent : tuesday , april 04 , 2000 4 : 52 pm  > to : piazzet @ wharton . upenn . edu  > subject : test  >  >  >  > test  >\",0\n\"Subject: 3 - urgent - to prevent loss of information  critical migration information :  1 . your scheduled outlook migration date is the evening of : may 7 th  2 . you need to press the \"\" save my data \"\" button ( only once ) to send us your pre - migration information .  3 . you must be connected to the network before you press the button .  4 . if a pop - up box appears , prompting you to \"\" abort , cancel or trust signer \"\" please select trust signer .  5 . any information you add to your personal address book , journal or calendar after you click on the button will need to be manually re - added into outlook after you have been migrated .  6 . clicking this button does not complete your migration to outlook . your migration will be completed the evening of your migration date .  failure to click on the button means you will not get your calendar , contacts , journal and todo information imported into outlook the day of your migration and could result in up to a 2 week delay to restore this information .  if you encounter any errors please contact the resolution center @ 713 - 853 - 1411\",0\n\"Subject: re : spring 2001 schematic  kathy ,  what is embanet ? do i have access from the outside ?  vince kaminski  kathy spradling on 01 / 11 / 2001 11 : 01 : 48 am  to : ( recipient list suppressed )  cc : cmiller @ rice . edu , castro @ rice . edu , spradlin @ rice . edu  subject : spring 2001 schematic  spring 2001 faculty ,  the spring 2001 schematic has been posted to embanet . to access the  schematic please open the jgsm area icon on the embanet desktop . next  please open the announcement jgsm icon . you will find the spring 2001  schematic located under the subject column . please open the document . if  you do not have access to embanet you will need to speak with david kilgore  at kilgore @ rice . edu or by calling david at 713 - 348 - 5378 .  thanks ,  kathy  kathy m . spradling  mba program coordinator  jesse h . jones graduate school of management  rice university  6100 main street , ms 531  houston , texas 77005 - 1892  phone : ( 713 ) 348 - 3313  fax : ( 713 ) 348 - 5251  email : spradlin @ rice . edu  http : / / www . rice . edu / jgs  e - mail : spradlin @ rice . edu  http : / / www . ruf . rice . edu / ~ jgs /\",0\n\"Subject: re : pricing credit on thousands of names  we can continue the discussion in tuesday ' s conference call , but i discussed  with ben about the issues below , and here are some thoughts . this is not a  complete approach , but only a starting point for discussion .  the main task is to build a pricing system for many names .  this has two components - - -  1 ) how to price a single name ?  1 . 1 ) how to price a liquid single name ?  1 . 2 ) how to price an illiquid single name ?  2 ) how to efficiently apply the methodology to multiple names ?  the approach i would take for 1 . 1 is  a ) define a small set of liquid names  b ) apply each of the different models we have , say , the six models ben has  mentioned below , to these names  c ) include market prices , if any , for these names  d ) sit with traders , get trader ' s intuition on where each liquid name should  price and note this on the spectrum of prices obtained in ( b ) and ( c )  e ) try to determine attributes of the names that may explain the dispersion  of the trader prices across the models  f ) quantify these attributes , if possible  g ) try a different set of liquid names and repeat the process , and see if the  decisions in the last round still make sense  the approach for 1 . 2 may be  a ) define a small set of illiquid names  b ) apply each of the different models we have to these names  c ) sit with traders , get trader ' s intuition on where each illiquid name  should price and note this on the spectrum of prices obtained in ( b )  d ) try to determine attributes of the names that may explain the dispersion  of the trader prices across the models  e ) check if these are similar to the attributes identified for liquid names  f ) define a master set of liquid names  g ) look for relationships ( by analyzing cross - section of data ) between  attributes or prices of illiquid names to those of liquid names  once a mapping has been defined for an illiquid name to a set of liquid names  and their attributes , then this mapping can be entered into a table , and the  pricing can be automated for all names ( in theory ) ! the success will depend  on the success of the round - table sessions for the approaches for 1 . 1 and  1 . 2 .  building a new fundamental model is always a worthwhile task , but we can get  going with the above approaches immediately in parallel with developing any  new models that we may build . new models can be added to the suite of  existing models . i do not believe there will ever be a single model that will  answer all questions for all names , but rather we can refine the mappings and  relative choices among models over time , which would mean continuing  round - table sessions with traders . limited data makes calibration very hard ,  so i would continually ask the question \"\" what do we calibrate ? \"\" throughout  the discussions for 1 . 1 and 1 . 2 , and this may help guide us to new models .  vasant  benjamin parsons  06 / 19 / 2000 04 : 11 am  to : ect london credit trading  cc : vince j kaminski / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , amitava  dhar / corp / enron @ enron , steven leppard / lon / ect @ ect , grant masson / hou / ect @ ect ,  dale surbey / lon / ect @ ect , david a wall / risk mgmt / lon / ect @ ect , jitendra j  patel / lon / ect @ ect , oliver gaylard / lon / ect @ ect  subject : pricing credit on thousands of names  all -  our challenge for the next few months is to build an automated system to  provide differential pricing on thousands of credits [ 5 , 000 by year - end ] .  most of these credits will be illiquid in terms of market price information ,  making the challenge harder , and the end result more important in terms of  competitive pricing advantage . what we need is an overall strategy for how we  plan to achieve this from the quantitative perspective .  currently we have several models for credit pricing either in use or under  development :  fmc model ( default probability approach ) . using bloomberg ' s fair market ( par  yield ) curves , probabilities are generated from the risky - libor , then  default / bankruptcy swap prices computed using expectation methodology .  fmc model ( credit spread approach ) . using the fmcs , then directly taking the  libor credit spread at each tenor , adjusting for basis and compounding  differences .  bond model ( fmc approach ) . taking the fmcs as benchmark curves , the model  regresses the input bonds ( specific to a name ) on the two best fitting  benchmarks . the result is a zero yield curve with the same shape as the fmcs ,  but with the level tweaked for the specific issuer . prices are then generated  using both spread and probability approaches . under testing .  bond model ( spline approach ) . taking only the bonds specific to an issuer ,  the model fits an exponential cubic spline to the zero - coupon price curve ,  then builds a zero yield curve from this . under testing .  market prices . for certain liquid names , or sectors / ratings , cds market  prices are used , then recovery and event discount used to get bankruptcy swap  prices .  kmv . using expected default frequencies ( edfs ) from the kmv model and  database , we will build a model to price default swaps , making appropriate  risk adjustments . kmv is being installed now , so model will be worked on next .  each of these models returns a price ( credit default and bankruptcy ) , and the  accuracy of the price depends on many factors - liquidity and regulatory  differences between bond and cds markets , recovery assumptions , risk premia ,  capital charges , etc . the aim will be to accurately price as many liquid  names as possible , based upon these models , then use these prices , alongside  other financial information , as the backbone to a full automated pricing  system .  our inputs to the proposed pricing system for a specific name are model and  market prices for all issuers , alongside name - specific ' soft ' data from  credit reports and financial statements . if the credit is liquid enough , a  price will be generated from their own information only . otherwise , the  credit will be mapped onto a subset of liquid credits , with financial  information and historical price movements providing the mapping and weights .  the model price will then be periodically adjusted to align itself with  market ( or trader ) prices , and this adjustment will feed back into the  weighting and mapping composition . in loose terms , we could think of the  system price for an illiquid credit as being a weighted average of liquid  market prices ( bonds , equities , default swaps ) , where the weightings are  calibrated using credit analysis , financial ratios , etc .  the key steps to implementing such a system will be :  establishing what exactly we want to ' predict ' - is it a price , a rating , a  probability , or a score ? we will need a clean market history to calibrate to ,  which we only really have for ratings . we will then need to develop a mapping  from rating / score to price .  getting and cleaning the historical financial and credit data required to  calibrate the model .  building the mechanics of the model , ie , the calibration methodology . neural  nets / fuzzy logic seem the obvious candidates , but which exact methods and  software packages to use ?  determining an automated methodology for mapping names with limited  information into the model .  getting the \"\" true \"\" market price , in order to feed back an error . at present  such a price exists for very few credits .  allocating resources to the development . mckinsey claimed such a system would  take 6 - 10 man - months to develop .  further ideas or comments are requested , as we need to develop our strategy  asap . the model description above is fairly vague , as we don ' t yet have the  knowledge needed to fill in the specific details . further help will be  especially required on this if we are to continue to move at ' internet speed ' .  regards  ben\",0\n\"Subject: re : summer internship  ezequiel ,  i have forwarded your resume to our analyst / associate program with a request  to accept you as summer intern . if the summer program is full , my group  will hire you directly for the summer .  vince  ezequiel luis on 11 / 13 / 2000 04 : 23 : 23 pm  to : vkamins @ enron . com  cc :  subject : summer internship  dear mr . kaminski  i am currently pursuing the m . s . in ieor at uc berkeley . i attended the  speech you gave some weeks ago .  i am interested in summer internship positions available in enron . you will  find enclosed my resume .  sincerely ,  ezequiel luis  este mensaje fue enviado desde http : / / commcenter . infosel . com  internet gratis  http : / / www . terra . com . mx / terralibre  - resume elm . doc\",0\n\"Subject: re : chase  vince : thanks very much . i will call ravi  chris  vince j kaminski @ ect  04 / 12 / 2000 10 : 36 am  to : chris holmes @ enron  cc :  subject : re : chase  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 12 / 2000  10 : 37 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  04 / 12 / 2000 10 : 11 am  to : chris holmes / hou / ect @ ees  cc : stinson gibner / hou / ect @ ect , vince j kaminski / hou / ect @ ect  subject : re : chase  chris ,  we don ' t have yet any report on broadband that might help you , developed  internally  by my group . we are working on a tutorial and we shall send you a copy when  it ' s ready .  the person who can give you an introduction to this market is ravi  thuraisingham .  vince  chris holmes @ ees  04 / 05 / 2000 09 : 55 pm  sent by : chris holmes @ ees  to : vince j kaminski / hou / ect @ ect  cc :  subject : chase  vince :  i am working now in ees as the chase national account manager and am  developing new products to sell chase . one of the products i am working on  integrates the provision of broad band with a package of computer  hardware and software for a company ' s employees .  i can explain more if you are interested .  i understand you put together a report on broadband which has helped educate  people as to the technology and economics . can i get a copy ? .  also do you have any analyses on chase that might help me detect other  opportunities ?  is there anyone on your staff with whom i should talk ?  thanks  chris\",0\n\"Subject: rw : howard confirmation for vince  hi vince - please examine . i think it ' s going to happen and you have  confirmation below - need sleep it ' s 3 : 30 pst - i ' ll need 7 hours sleep and  then i ' ll be up . . . add 2 more for time difference and i ' ll be available for  you , at your service ( your time around ( 1 : 30 afternoon ) .  i called rachel @ enron london - she said it is set up too . i am confident .  thank you for the opportunity .  jeff wesley 949 813 2241  hi howard ,  > please find following confirmation as promised .  >  >  > date of interview : tuesday 30 january 2001  >  > time of interview : 2 . 30 pm  >  > interviewers : 2 . 30 pm nigel price - credittrading  > 3 . 00 pm ben parsons - research & trading  > controls - senior specialist  > 3 . 30 pm vasant shanbhogue research  > group houston  >  >  > address : 40 grosvenor place  > london  > swlx 7 en  >  > switchboard : 020 7783 - 0000  >  > closest tube / train station : victoria  >  >  > location map attached  > ( see attached file : location map . pdf )  >  > manager  > robert walters  > manager  > risk & quantitative analysis  * get free , secure online email at http : / / www . ziplip . com / *\",0\n\"Subject: java for managers ! ! !  vince ,  durasoft ( who just taught the java class for our group ) offers a 3 - day short  course in java for managers . details are below , if you are interested .  - - stinson  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 04 / 16 / 2001  12 : 16 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" siva thiagarajan \"\" on 04 / 16 / 2001 11 : 25 : 50 am  please respond to \"\" siva thiagarajan \"\"  to :  cc :  subject : java for managers ! ! !  hi stinson ,  ?  thanks for meeting with us on thursday . ? we enjoyed  talking with you .  ?  as per our discussion , i have attached the course  outline of java for managers along with this email .  after our conversation with you we think this course  may be a little bit heavy for your group . ? but we can definetly  take it down to concepts level and make it appropriate for  our audience . ? please review and let me know , if this  course would be of value to you . ? this is a 3 day course  and costs $ 11 , 000 ( maximum of 15 students ) .  ?  regards ,  ?  - siva  - oojavaformanagers . doc\",0\n\"Subject: re : wednesday lunch - credit group  hi , everybody ,  get ready for our lunch meeting : this wednesday , april 19 , the  \"\" new credit model development and testing team \"\" is going to go to vincent ' s  restaurant .  the address is 2701 w . dallas , the reservation is made for 11 : 30 a . m .  see you there ,  tanya .\",0\n\"Subject: update on spring conference  hello everyone ,  i wanted to get a message out to each of you to update you on the february  23 conference plans . the conference promises to provide an exciting  opportunity to share the ideas of a diverse group of academic and industry  professionals on a topic that is dear to all our hearts , the future of  business education in the new economy . i will be sharing updates and  information with you over the weeks to come but thought it might be useful  to start before the holidays .  i am attaching the most recent \"\" description of the program of events \"\" which  remains somewhat fluid as we develop it . however , there are some new  developments that you will find interesting . first , i have arranged for  \"\" filming \"\" of the event by our local public tv station and we will be  working toward the development of the best product possible out of the  sessions . second , david palumbo ( human code - - an internet content  provider - http : / / www . humancode . com / index 2 . htm - now owned by sapient ) will  join us . david is very knowledgable about both educational issues ( he  served on the faculty of the university of houston for 10 years before  joining human code ) . he has some very interesting insights to offer on the  future of higher education having now worked from the industry side of the  equation ) . finally , i am currently reading a couple of books that you may  find interesting ( telecosm and the new barbarian manifesto ) . i ' m sure  there are many more interesting sources of information that you are each  aware of and it would be helpful if we all began sharing our notes .  finally , let me suggest that each of you begin thinking about the issue ( s )  that you feel most comfortable commenting upon and phrasing \"\" lead in \"\"  questions for me . i would like to build a list of such questions to  circulate among all so that we begin to get a feel for the range of topics  we will encounter in the discussion and begin to formulate our individual  opinions .  i hope that this note finds you all anticipating a wonderful holiday season  and thank you for participating in this inaugural \"\" think tank \"\" conference  on the future of business education .  sincerely yours ,  john  - revised workshop - planning . doc  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: color copier  hello lyn ,  how are you ? certainly hope you enjoyed the holidays .  i have not received the color printer as of yet .  could you please provide me with information concerning this .  thanks  kevin moore\",0\n\"Subject: alliance info alert  dear generation / power marketing executive :  the following is this week ' s alliance express newsletter , and a special  announcement regarding a proposed action by the financial accounting  standards board ( fasb ) .  fasb 133  fasb is considering an exception to statement of financial accounting  standards ( sfas ) no . 133 that will exempt energy companies from the  requirement to account for capacity contracts as derivatives . a vote against  the exception would result in a significant increase in earnings volatility ,  and raises other important concerns for energy suppliers . ( attached is a  summary of this issue . ) the board is expected to vote on this issue during  may 2001 . eei will be taking steps to appraise fasb of our concerns . if  you , or company cfo would like more information about this effort , please  contact richard mcmahon , executive director of the alliance of energy  suppliers , at rmcmahon @ eei . org , or at 202 - 508 - 5571 .  alliance of energy suppliers express \u0002 \u0005 april 25 ,  2001  inside washington  federal affairs  * * * bill repealing puhca is approved by senate committee * * *  the senate banking committee today approved s 206 , a bill that repeals the  public utility holding company act of 1935 . the bill would repeal puhca and  transfer oversight of public utility holding companies from the securities  and exchange commission to the federal energy regulatory commission and  appropriate state agencies .  s . 206 was approved with two amendments . offered by sen . mike enzi ( r - wy ) ,  the first amendment would establish the electric energy market competition  task force to study competition in the wholesale and retail market for  electric energy in the united states . the task force would be made up of  representatives of ferc , the department of justice and the federal trade  commission , as well as non - voting representatives from the department of  agriculture and the securities and exchange commission . the amendment also  contained a provision , co - sponsored by sen . paul sarbanes ( d - md ) , that would  preserve ferc ' s authority to require that energy rates are reasonable and do  not include the pass - through of holding company costs that are unrelated to  energy .  another amendment , offered by sen . jon corzine ( d - nj ) , initiated a study by  the general accounting office of the success of federal and state governments  in preventing anticompetitive practices by public utility holding companies  and in promoting competition and efficient energy markets .  * * * institute \u0002 \u0007 s tax agreement with public power again introduced on hill * * *  the tax agreement eei reached with the american public power association  ( appa ) and the large public power council ( lppc ) again has been introduced in  the house . the bill ( hr 1459 ) contains the same provisions as were in a  measure ( hr 4971 ) , with technical corrections , introduced during the 106 th  congress . hr 1459 was introduced by rep . j . d . hayworth ( r - az ) and nine  original co - sponsors from the ways and means committee .  hr 1459 contains four key provisions with tax code changes : 1 ) the tax - free  sale or spin - off of transmission assets into an rto is allowed , 2 ) nuclear  decommissioning laws are adapted to a competitive market by allowing  deductions to a trust fund no longer subject to cost - of service ratemaking ,  3 ) the contributions in aid of construction ( ciac ) tax on interconnections to  transmission and distribution facilities is eliminated , and 4 ) private use  tax rules are changed to permit open access to transmission and distribution  facilities .  the measure was referred to the house ways and means committee , and eei has  urged congress to act without delay in moving it forward . enactment will  help encourage a vigorous but fair competitive environment , the institute  noted . the same legislation has been incorporated into s 389 , senate energy  committee chairman frank murkowski ' s ( r - ak ) energy security bill , and  stand - alone legislation could also be introduced . hearings are expected to  be held in both the senate finance and house ways and means committees ,  probably after consideration of president bush ' s individual tax proposal .  administration / ferc  * * * white house seeks $ 2 trillion budget in fiscal year 2002 * * *  president bush last week transmitted a $ 2 trillion fiscal year 2002 budget  request to capitol hill . the administration noted that its proposal  * moderates recent explosive growth in discretionary spending to four percent  in 2002 , * an increase of $ 26 billion over the preceding fiscal year . the  budget bid contains a $ 231 billion total surplus in 2002 , and projects a $ 5 . 6  trillion surplus over the next ten years .  in the energy area , the administration noted the federal government \u0002 \u0007 s  * longstanding and evolving role * in the sector , pointing out that most  federal energy programs and agencies have no state or private counterparts .  it proposed about $ 2 . 8 billion in discretionary spending for energy programs ,  and about $ 2 . 1 billion in tax benefits , * mainly to encourage development of  traditional and alternative energy sources . * doe \u0002 \u0007 s budget request was $ 19 . 2  billion , including $ 2 . 3 billion for energy resources programs . this later  figure represents a decrease of $ 196 million , or 7 . 9 percent , from fiscal  year 2001 .  in the environmental sector , the administration sought some $ 7 . 3 billion in  discretionary funding for epa , including a $ 3 . 7 billion operating program  focused on implementation of most federal pollution control laws .  * * * success of restructuring tied to energy strategy , ferc \u0002 \u0007 s massey asserts * * *  electric restructuring may be in jeopardy , and its success * is in the hands  of regulators and policymakers , * ferc commissioner william massey has  asserted . speaking at a recent national governors association policy forum  in philadelphia , commissioner massey urged officials to pay attention to the  key elements of a national energy strategy .  first , he specified , there is a need for an adequate supply of the energy  commodity . turning to a second element , commissioner massey told forum  attendees that * all the supply in the world won \u0002 \u0007 t help unless it can be  delivered over an adequate , efficient , non - discriminatory network . *  commissioner massey identified market structure as the third essential  element of a national energy strategy , while citing an inherent difficulty :  that * good structure cannot be easily parsed between wholesale and retail  jurisdictions . * accordingly , he said , ferc and the states must work together  on market structure .  the final element of a successful energy strategy , the commissioner  specified , is the need for aggressive ferc intervention when markets fail to  do their job . * if the states cannot depend on the wholesale market regulator  to ensure reasonable prices for consumers , * he cautioned , they * will surely  think twice before heading down the restructuring path . *  new generation  * * * dynegy to build second plant in kentucky * * *  dynegy has announced plans to construct a new 330 megawatt plant adjacent to  the riverside generating project in lawrence county , kentucky . dynegy will  sell the power generated at the plant in the wholesale market . commercial  operation is expected to begin first quarter of 2002 .  * * * ppl to expand generation capacity * * *  ppl corporation this week said it would build a 540 megawatt power plant near  chicago and would increase the capacity of its susquehanna nuclear plant by  100 megawatts . ceo william hecht said the illinois plant is expected to be  in service by the summer of 2002 .  * * * constellation energy group announces eight new plants * * *  constellation energy group this week announced that the company is scheduled  to bring four peaking power plants on line this summer . additionally , four  larger power plants are scheduled to enter service in the following two  summers . the four peaking plants are located in illinois , pennsylvania ,  virginia and west virginia . the larger power plants are under construction  in california , florida , illinois , and texas .  * we \u0002 \u0007 re building in these seven states because they serve regions where  wholesale electricity is needed and where we can provide energy to support  our national power marketing business , * said constellation energy group  chairman and ceo christian poindexter .  * * * california energy commission approves construction of otay mesa generating  plant * * *  pg & e corporation \u0002 \u0007 s national energy group ( neg ) last week announced that the  california energy commission ( cec ) has approved construction of the otay mesa  generating plant in san diego county , which the neg has developed . the 500  megawatt project will produce enough electricity to power about 1 , 000 homes .  after the development process is completed , calpine corporation will assume  ownership of the project and will construct and operate the plant . neg will  contract for up to half the plants output .  energy data  * * * weekly electric output ( week 15 ) * * *  electric output reached 63 , 528 gwh for the week ending april 14 ( week 15 ) ,  with the highest increase over 2000 levels in the south central states , which  both had a 12 . 6 percent increase over 2000 for week 15 . year - to - date , the  rocky mountain region experienced the greatest increase in output ( 7 . 6  percent ) over 2000 . for more information , email alliance @ eei . org .  the alliance express is a free news service sponsored by the alliance of  energy suppliers . this document can be redistributed . please send  questions , comments , or requests to alliance @ eei . org , or telephone  202 / 508 - 5680 .  nancy tarr  manager , business development  eei alliance of energy suppliers  701 pennsylvania ave . , n . w .  washington , d . c . 20004  telephone : 202 - 508 - 5680  fax : 202 - 508 - 5600  www . eei . org / alliance  ntarr @ eei . org  - text . htm  - fasb - the impact on energy companies of treatment of capacity c\",0\n\"Subject: re : texas finance festival ( urgent request )  peggy ,  friday ( lunch , supper ) , sat ( breakfast , lunch ) . one person .  vince kaminski  peggy davies on 03 / 30 / 2000 04 : 21 : 36 pm  please respond to peggy davies  to : andres almazan , murray carlson  , kent daniel , wayne  ferson , denis gromb , john hund  , narasimhan jegadeesh , cindy  justice , matthias kahl ,  vince kaminski , anthony lynch  , thomas noe ,  robert parrino , manju puri ,  ehud ronn , laura starks ,  andrew subra , steathis tompaidis  cc :  subject : texas finance festival ( urgent request )  texas finance festival attendee  please respond to the below request asap  in preparing for the texas finance festival , we are needing to finalize the  meal counts . while we are excited about everyone coming , we do not want to  pay for meals ( expensive ones by the way when on the riverwalk in san  antonio ) if someone will not be in attendance . please indicate below the  meals you will be inattendance . if you have family / significant others coming  with you , please indicate the total number including yourself . thanks for  your help . bill petty  number to attend  friday lunch friday supper saturday  breakfast saturday lunch saturday supper  rfc 822 header  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  return - path :  received : from ccc _ petty ( ccc - petty . baylor . edu [ 129 . 62 . 162 . 79 ] )  by ccisol . baylor . edu ( 8 . 9 . 1 / 8 . 9 . 1 ) with smtp id oaa 21931  for ; thu , 30 mar 2000 14 : 35 : 32 - 0600 ( cst )  message - id :  date : 30 mar 00 14 : 34 : 59 - 0600  from : bill petty  subject : texas finacne festival ( urgent request )  to : peggy davies  x - mailer : quickmail pro 1 . 5 . 4 ( windows 32 )  x - priority : 3  mime - version : 1 . 0  reply - to : bill petty  content - type : text / plain ; charset = \"\" us - ascii \"\"  content - transfer - encoding : 8 bit  x - mime - autoconverted : from quoted - printable to 8 bit by ccisol . baylor . edu id  oaa 21931  status :  peggy davies  administrative assistant  department of finance , insurance , fax ( 254 ) 710 - 1092  peggy _ davies @ baylor . edu\",0\n\"Subject: fwd : our conversation today  return - path :  from : awenda 2000 @ cs . com  full - name : awenda 2000  message - id :  date : mon , 4 dec 2000 12 : 47 : 07 est  subject : our conversation today  to : wkamins @ enron . com  mime - version : 1 . 0  content - type : multipart / mixed ; boundary = \"\" part 2 _ 12 . 59 ad 86 b . 275 d 329 b _ boundary \"\"  x - mailer : unknown sub 111  hi wincenty ,  it was a pleasure talking to you today . i am enclosing my resume and look  forward to talking to you again .  best regards  bibianna  - bibianna res . # 2 . doc\",0\n\"Subject: steven roeder ( chemical engineer )  vince ,  i do not think that there is match with our group but i forwarded steve ' s  resume  to ford cooper and joe phalen of the water group .  regards ,  osman\",0\n\"Subject: ljm pricing  vince :  here are the files for pricing the deal without and with credit risk :  1 ) without credit risk :  2 ) with credit risk : ( two factor model )  talk to you tomorrow 1 : 00 pm .  thanks .  paulo issler\",0\n\"Subject: organizational announcement  fyi .  - - - - - - - - - - - - - - - - - - - - - - forwarded by osman sezgen / hou / ees on 04 / 23 / 2001 02 : 29  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron energy services  from : ees distribution 04 / 23 / 2001 01 : 29 pm  sent by : kay chapman  to : all ees  cc :  subject : organizational announcement  consistent with the floor talks of a couple weeks ago , we are following up  with an e - mail describing the latest changes in our risk and back - office  functions that are now complete . ees \u0001 , s risk management and the vast majority  of ees \u0001 , s risk controls and operations group will become a new group in enron  wholesale services . this group \u0001 , s sole function will be to provide pricing ,  structuring , commodity risk management , logistics and back - office services  for ees . both don black and wanda curry will report to the ews office of the  chairman .  this change was driven by the explosive growth of ees and the resulting need  to tap the systems , resources and risk expertise of the wholesale groups in  order to continue to grow and take advantage of current market  opportunities . this change will allow us to more quickly capture the  benefits of scale , process , and technology in risk , logistics and back - office  functions from the larger enron capability . as discussed at the all employee  meeting in march , these are important objectives , and this change allows us  to reach those goals more quickly .  specifically , the following groups within the former ees risk management  group , will become a part of this new group reporting to don black :  - the gas , power and tariff desks ,  - the options desk ,  - the site profiles and consumption desks , and  - the matrix products / secondary products desks .  the dsm group and iam , along with its execution capability , will remain in  ees and report to the ees office of the chairman . we are pleased to announce  that ozzie pagan has agreed to lead this function . ozzie is an established  commercial dealmaker in ena . he has experience in power trading , origination  and plant development . in addition , the services group , which will provide  billing , information and other retail services , led by evan hughes , will  remain in ees and report to the ees ooc . all support functions , within the  former ees risk controls and operations group , that currently support the dsm  and the services groups , will remain in ees . the remaining parts of the risk  controls and operations group will become part of ews reporting to wanda  curry . as part of this change , we are pleased to add evan hughes and ozzie  pagan to the ees operating committee .  in addition , the structuring group , led by sean holmes , will be re - named deal  management . the vision for this group remains the same as that discussed at  the all employee meeting ; however , it will also facilitate and ensure  productive transaction interaction between ees and ews .  we have asked , marty sunde , as part of his vice chairman role , to resource  and lead a formal restructuring group to enhance or protect value in several  key transactions in our portfolio primarily in california .  the newly created it function , led by anthony dayao , will continue to report  into the ees ooc but will support both ees and ews it requirements .  other than these changes , the organizational structure , vision and objectives  detailed out for ees at the all - employee meeting in march remain . we need to  continue to understand and drive deeper into our markets , manage our client  relationships , mine our portfolio , build new products and execute on our  opportunities .  thanks for all your hard work . with your help we will become the worlds  leading energy retailer and enron \u0001 , s leading division . if you have any  questions please do not hesitate to ask\",0\n\"Subject: enside draft  good afternoon !  attached , please find the combined interview notes for the first draft of the  article for the enside newsletter . read and review your sections - they are  divided by color . vince , please check ' everything ' for content and accuracy .  feel free to make corrections and delete anything as you see fit .  please make changes and then send back to me . i need it by wednesday , april  4 , if possible .  call me if you have any questions !  kathie grabstald  ews public relations  x 3 - 9610  p . s . i am looking forward to the photo shoot on friday , march 30 at 2 : 30 pm .  i will meet you all in front of the building at the big e !\",0\n\"Subject: re : marketpoint license agreement  dale ,  thanks for your message . in our phone conversation before the meeting you  mentioned  another contractual arrangement under which we could work with your company  employees on a case - study .  the cost of a weekly project would be $ 12 , 000 that would be applied to the  purchase price should  we go ahead and decide to acquire the software . this project would allow us  to evaluate the model and  come up with an estimate of the manpower necessary to support the model  internally .  please , let me know more about this option .  we are primarily interested in a long - term natural gas model and the database  for north america .  unless a familiarity with the short term model is a prerequisite , we don ' t  have resources to spend too much time on it .  of course , a trading desk may be interested in the short term  version of the model . i shall talk to them about it .  vince  \"\" dale m . nesbitt \"\" on 11 / 13 / 2000 06 : 00 : 05 pm  to : , \"\" vince . j . kaminski \"\"  cc :  subject : marketpoint license agreement  john / vince :  i really enjoyed the meeting the other day with you and a broad cross  section of your people . thank you very much for setting it up , and thank  you for giving me the opportunity to speak with your people .  as i mentioned to john , i am sending you the license paperwork for  marketpoint . i have attached our standard license agreement for your  consideration . as i mentioned , the license agreement covers the entire  bundled product , which includes  ? north american gas , short and long term  ? north american electricity , short and long term  ? world gas  ? western european gas  ? world oil  we are just finishing porting the world oil , world gas , and western european  gas models over from our old ( now obsolete ) software system into  marketpoint , so they will not be fully tested and complete for a couple of  months . however , the gas and electricity models for north america are  presently complete and tested . that should allow us to give you an  attractive price before the full worldwide toolkit is available throughout  your worldwide business .  as i understood it , you will want the gas modeling capability first and will  want to defer decisions on electric or other capability . as i mentioned at  the meeting , we are prepared to offer that for approximately  the fully  bundled price . as you read the license agreement , you will see that the  software licenses for $ 100 , 000 annually , the gas data for $ 5 , 000 , and the  electric data for $ 10 , 000 . marketpoint will agree to license you the gas  model plus the data for  the software license plus the data license for a  total of $ 55 , 000 annually . this is just under  the fully bundled price . i  think that is consistent with the discussions at our meeting , and from  marketpoint \u0001 , s perspective would provide a great basis to move forward  together with enron . if or when enron ever desires to \u0001 & scale up \u0001 8 to another  model or model ( s ) from the marketpoint portfolio , we will simply scale you  up to the entire license agreement . this will allow you to decouple the gas  decision from any other decisions you might make . ( i will be glad to put  this additional pricing provision into the agreement if you decide to move  forward . )  i felt i was able to communicate the philosophy , scope , and operation of our  approach during the meeting and to deliver you much of the information you  might need to evaluate whether marketpoint meets your needs . i thought you  were able to see the depth and sophistication of the product yet at the same  time its simplicity and effectiveness . i thought you were able to see the  benefits of the marketpoint dimension of economic equilibrium as a  complement and supplement to other approaches you will assuredly use . i  would be interested in your impressions and those of your colleagues . i  look forward to your response and to moving ahead together . we view you as  a very important prospective customer and client and will work with you to  earn and secure your business .  if you decide to license marketpoint , we can arrange to transfer and mount  marketpoint and the short term narg model ( which is the model we suggest you  begin with ) and travel to houston to deliver our 1  day training seminar .  our clients are usually very fluent after that 1  day training seminar .  thereafter , we would want you to work with the short term narg model for a  few weeks while you get up to speed , very fluent , and very comfortable  before you take delivery of the longer term version of narg several weeks  later .  thanks again , and all the best . if there is some item from the meeting that  i might have forgotten to send , please remind me . my notes don ' t show  anything , but i was speaking a lot rather than writing notes during the  meeting and might have overlooked something someone wanted .  dale nesbitt  president  marketpoint inc .  27121 adonna ct .  los altos hills , ca 94022  ( 650 ) 218 - 3069  dale . nesbitt @ marketpointinc . com  - license . doc\",0\n\"Subject: re : gsia visit  duane ,  sorry i will miss you . i have a meeting with chester already on my schedule .  vince  ds 64 @ cyrus . andrew . cmu . edu on 10 / 31 / 2000 03 : 40 : 40 pm  to : \"\" vince j kaminski \"\"  cc : \"\" chester s spatt \"\" , \"\" pierre - philippe ste - marie \"\"  subject : gsia visit  vince ,  this friday during your visit i will be in california for a cousin ' s  wedding . i am having miserable luck connecting with you . however , while  you are at gsia , chester spatt ( one of my co - authors ) would like to meet  with you if your schedule permits . i am copying him on this email so you  can contact him directly . please also let peirre ( who is also copied on this  email ) know whatever you work out .  see you next time i hope ,  duane  * * * * * * * *  duane seppi  graduate school of industrial administration  carnegie mellon university  pittsburgh pa 15213 - 3890  tel . ( 412 ) 268 - 2298  fax ( 412 ) 268 - 8896  email ds 64 + @ andrew . cmu . edu\",0\n\"Subject: alliance info alert  ferc acts to remove obstacles to address western energy crisis  * * omnibus order mobilizes ferc ' s entire energy pricing and infrastructure  authority  * * to adopt financial incentives for capacity increases in transmission  facilities  * * streamlines regulation of wholesale market , energy facilities siting and  licensing  * * promotes conservation and wholesale side of demand - response bidding  * * order doesn ' t address price caps  * * meeting with western state regulators / officials set for april 6 , 2001 in  boise , idaho  ferc moves to bring more economic and reliable energy supplies to the  stressed california and western energy markets . ferc proposes to increase  bulk power supply in the west by removing barriers and providing incentives  that are within its jurisdiction over facility certification , licensing , and  the regulation of transmission and wholesale power sales in interstate  commerce . ferc quickly wants to increase electric generation and  transmission capacity , as well as to streamline the regulation of wholesale  power transactions , as well as increase the capacity of the supporting  infrastructure of natural gas and oil pipelines . the order , which sets new  precedent in its broadness , also proposes actions to reduce electricity  demand in the west as well as promoting the necessary wholesale - market  portion of demand - response bidding where states wish to implement the retail  side . ferc asks for comments on additional actions it may take in the future  by march 30 , 2001 .  effective immediately , ferc said in a statement , * the commission is  streamlining regulatory procedures for wholesale electric power sales ,  expediting the certification of natural gas pipeline projects into california  and the west , including the reallocation of staff resources to more quickly  address pending pipeline applications , and urging all licensees to review  their ferc - licensed hydroelectric projects in order to assess the potential  for increased generating capacity . *  among the actions ferc takes are to : 1 ) require the california iso and  transmission owners within all 11 states of the western systems coordinating  council ( wscc ) to prepare a list of grid enhancements that can be completed  in the short term ; 2 ) waive prior notice requirements for any on - site or  self - generators that sell at wholesale within the wscc area ; 3 ) grant blanket  market - based rate authority for sales on the wholesale market of electric  energy that becomes available as a result of demand - response reductions in  retail and wholesale loads ; and 4 ) broadening and extending through december  31 , 2001 the temporary waivers of the operating and efficiency standards for  qualifying facilities ( qfs ) to increase the availability of generating  capacity .  ferc seeks comments by march 30 on a series of economic incentives aimed at  ensuring timely upgrades to the western transmission grid , including an  increased rate of return on equity ( roe ) for projects that significantly  increase transmission and can be in service by either june 1 , 2001 , or  november 1 , 2001 . other areas that ferc requested comment on include the use  of interconnection authority under the federal power act , and to raise the  dollar limits on the issuance of blanket certificates authorizing gas  pipeline construction . on hydro issues , ferc requested comment on ways to  increase operating flexibility at ferc - licensed projects while protecting  environmental resources .  in its effort to encourage investment in transmission infrastructure , ferc  asked for comments - again by march 30 - on a series of economic incentives  aimed at ensuring upgrades to the western interconnection , including the  increased roe for projects that significantly increase transmission on  constrained paths and can be in service by the above dates in 2001 .  increased roe , ferc said , will also be given to system upgrades over new  transmission paths that can be in service by june 1 , 2002 , or november 1 ,  2002 . ferc seeks comment on a proposed 10 - year depreciation period for  projects that increase transmission capacity in the short - term and a 15 - year  depreciation period for upgrades involving new rights - of - way that can be of  service by november 1 , 2002 .  in his dissent to the order , commissioner massey argued the order focuses on  \"\" quick fixes , \"\" and that the measures will not close the gap between supply in  demand in california . the order also \"\" fails to address price relief , \"\" noted  massey . massey also called for a full federal power act ( fpa ) section 206  investigation of california issues , which would allow for the possibility of  refunds . on transmission incentive provisions , massey lamented that the  proposed roe increase to 14 percent appeared arbitrary and inconsistent with  ferc policy under order no . 2000 . the financial provisions , he said ,  appeared to be \"\" just throwing money at the problem . \"\" while generally  disappointed with the order , massey did express limited support for many  parts of the order . many of the suggestions in the order are the \"\" same  actions as authorized last may , \"\" said massey . \"\" they were good ideas then ,  and they are good ideas now , \"\" he concluded .  for his part in comments at the open meeting when the order was adopted ,  chairman hebert said the order was designed to \"\" squeeze every additional mw  of supply available \"\" and to encourage the conservation of mw , and stressed  that ferc is \"\" doing all it can in its power to alleviate western problems . \"\"  he said the order seeks to eradicate the projected supply shortfall in  california , but noted that generation / transmission siting , and conservation  are generally state issues .  ferc ' s * removing obstacles * order is posted on its web site at :  citation : ferc issued is order removing obstacles to increased electric  generation and natural gas supply in the western united states and asking for  comments was issued on march 14 , 2001 , docket no . elol - 47 - 000 .  a detailed analysis and summary of the specific actions taken and proposals  made follows :  electric transmission infrastructure  within 30 days , the california iso and transmission owners in wscc are to  prepare and file for information purposes a list of grid enhancement projects  that may be underway or may not require initial siting and acquisition of  rights of way .  ferc proposes a scaled transmission infrastructure incentive under which  transmission owners of projects that increase transmission capacity at  present constraints and can be in service by july 1 , 2001 would receive a  cost - based rate reflecting a 300 basis point premium return on equity and a  10 - year depreciable life . projects in service by november 1 , 2001 , would get  a 200 basis point premium and 10 - year depreciable life . ferc would use a  uniform baseline return on equity for all jurisdictional transmission  providers in wscc of 11 . 5 % , based on the roe ferc approved for southern  california edison .  system upgrades that involve new rights of way , add significant transfer  capability and can be in service by november 1 , 2002 , would get a cost - based  rate reflecting 12 . 5 % roe , or al 00 basis point premium , and 15 - year  depreciable life .  facilities needed to interconnect new supply to the grid , which go into  service as required to accommodate the in - service date of the new plant would  get a cost - based rate that reflected a 13 . 5 % roe , or a 200 basis point  premium , if in service by november 1 , 2001 and 12 . 5 % roe if in service by  november 1 , 2002 .  for increases in transmission capacity on constrained interfaces that do not  involve significant capital investments , for example , installing new  technology , ferc proposes to allow transmission owners to increase the  revenue requirement of their network service rates to ensure that each  additional mw of capacity will generate revenues equal to their current firm  point - to - point rate . ferc requests comment on whether to assign the cost of  any interconnection or system upgrade to a particular load or supply , or  alternatively , to roll these costs into the average system rate .  extension of waivers for qfs  ferc proposes to extend its temporary waivers of operating and efficiency  standards for qfs - applicable throughout wscc - to allow increased  generation through december 31 , 2001 . the waivers were to expire on april  30 , 2001 . the proposed waiver would allow qualifying cogenerators to sell  their output above the level at which they have historically supplied this  output to purchasing utility . the waiver for qualifying small power  production facilities in wscc with respect to their fuel use requirements  under ferc regulation section 292 . 204 ( b ) , would be extended to december 31 ,  2001 .  additional capacity from on - site generation  ferc will adopt streamlined regulatory procedure to accommodate wholesale  sales from such facilities that serve load within wscc . through december 31 ,  2001 , owners of generating facilities located at business locations in wscc  and used primarily for back - up or self - generation who would become subject  to fpa by virtue of sales of such power will be permitted to sell power at  wholesale without prior notice under fpa section 205 . ferc also authorizes  such power to be sold at market - based rates . ferc waives its prior notice  requirement for mutually agreed upon interconnection agreements for  interconnections necessary to accomplish these sales . quarterly reporting is  required .  allows demand response bidding  ferc will allow retail customers , as permitted by state law , and wholesale  customers to reduce consumption for the purpose of reselling their load  reduction at wholesale . ferc is granting blanket authorization , consistent  with its prior discussion on sales from on - site generation and requires  similar reporting .  ferc ' s december 15 order on the california market directed , as a longer - term  measure that the iso pursue establishing an integrated day - ahead market in  which all demand and supply bids are addressed in one venue . ferc seeks  comments on the desirability of accelerating action on this .  ferc says it realizes that states play an important role in regulating retail  electric service and that allowing retail load to reduce consumption for  resale in wholesale markets raises legal , commercial , technical and  regulatory issues . safeguards may be needed to protect and enhance retail  demand - response bidding programs . intention is not to undermine state  programs but to promote the necessary complementary wholesale programs .  requests comments on how helpful this action is and how it can be  accomplished consistent with state jurisdiction over retail sales .  contract modifications for demand - response bidding  there may be opportunities for public utilities to make other types of  demand - response arrangements with their wholesale customers . as for mutually  agreeable qf interconnections , ferc will waive prior notice requirement for  any mutually agreeable demand - response related rate schedule amendments that  may be required to effectuate these arrangements . clarifies that  demand - response program costs should be treated consistently with all other  types of incremental and out - of - pocket costs .  interconnections  fpa section 210 ( d ) allows ferc to issue an order requiring interconnection if  it makes a finding that such an order : 1 ) is in the public interest ; 2 ) would  encourage overall conservation of energy or capital , optimize the efficiency  of use of facilities and resources , or improve the reliability of any  electric utility system or federal power marketing agency to which the order  applies ; and 3 ) meets the requirements of fpa section 212 .  ferc requests comments on whether it can use this authority under fpa section  210 ( d ) to alleviate existing impediments to electricity reaching load . if  the exercise of this authority may be warranted , ferc seeks comments on  whether it could make some of the required findings generically for the wscc  region in order to respond quickly should circumstances arise requiring  immediate action .  longer term regional solutions  ferc believes an rto for the entire western region or the seamless  integration of western rtos is the best vehicle for designing and  implementing a long - term regional solution .  natural gas pipeline capacity  ferc has realigned its resources to respond to new applications for gas  pipeline capacity and is soliciting comments on ways to expedite the approval  of pipeline infrastructure needed to serve california and the west . requests  comments on how it might further exercise its authority over new pipeline  construction to alleviate the present crisis , including increasing the dollar  limit thresholds for blanket certificates to $ 10 million , and for prior  notice authorizations to $ 30 million in order to increase the facilities  qualifying for automatic authorization ; offering blanket certificates for  construction or acquisition of portable compressor stations to enhance  pipeline capacity to california ; and offering rate incentives to expedite  construction of projects that will make additional capacity available this  summer on constrained pipeline systems .  hydroelectric power  ferc staff will hold a conference to discuss methods to address environmental  protection at hydro projects while allowing increased generation . requests  comments on ways to allow for greater operating flexibility at  commission - licensed hydro projects while protecting environmental resources .  comments should consider : 1 ) methods for agency involvement ; 2 ) ways to  handle and expedite endangered species act consultations ; 3 ) criteria for  modifying licenses ; and 4 ) identification of processes that could be  implemented to provide efficiency upgrades .  oil pipelines  ferc will explore with oil pipelines innovative proposals that could lead to  ensuring an adequate flow of petroleum product into the california market .  conference with state commissioners  ferc will hold a one - day conference with state commissioners and other state  representatives from western states to discuss price volatility in the west  as well as other ferc - related issues identified by the governors of western  states . by notice issued march 16 , this meeting is scheduled for april 6 ,  2001 in boise , idaho .  [ source : ferc 03 / 14 / 01 order , docket elol - 47 - 000 , and news release . ]  - text . htm\",0\n\"Subject: last minute things  tff participants ,  we are looking forward to seeing everyone in san antonio this friday .  attached is a welcome letter that indicates the meeting room and describes  the two evenings ( friday dinner and tour of the alamo and saturday barbeque  dinner at a ranch outside of san antonio ) . we have arranged for five  horses for the brave at heart and a hayride for the interested so come with  jeans and boots .  see you friday  john  - welcomel . doc  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: re : forward prices simulations in the credit reserve model  bill and mark ,  the figure below shows you what happens when we simulate forward prices using  current methodology of our credit reserve model .  the time scale on this figure goes from 0 to 30 years . i started with $ 5 . 2  gas prices at time 0 and used the ng forward volatility curve which  has 50 % volatilities in the front and 13 . 5 % vols for long - term contracts . you  can see from the figure , that , for example , at 30 years horizon  the price will be more than $ 13 . 4 with probability 5 % but less than $ 22 . 1  with probability 99 % . the corresponding lower bounds are  $ 1 . 17 and $ 0 . 71 .  tanya  from : william s bradford / enron @ enronxgate on 03 / 26 / 2001 11 : 22 am  to : mark ruane / enron @ enronxgate , naveen andrews / enron @ enronxgate , tanya  rohauer / enron @ enronxgate , debbie r brackett / hou / ect @ ect , tanya  tamarchenko / hou / ect @ ect , rabi de / na / enron @ enron , wenyao jia / enron @ enronxgate  cc :  subject : re : gbm vs reversion  both seem to provide fairly unrealistic values . $ 50 gas over the term seems  improbable , however , a $ 6 gas peak does not represent capture all potential  price movement at 99 % confience interval .  what were your assumptions on price curves , volatilty curves , and trend  reversion ?  bill  - - - - - original message - - - - -  from : ruane , mark  sent : monday , march 26 , 2001 11 : 11 am  to : bradford , william s . ; andrews , naveen ; rohauer , tanya ; brackett , debbie ;  tamarchenko , tanya ; de , rabi ; jia , winston  subject : gbm vs reversion  a quick example of the impact of using gbm based simulation : based on a five  year swap , the expected losses are 18 % higher as a result of gbm . attached  chart shows the relative long - term gas prices under both processes . >  mark\",0\n\"Subject: reply to your email / ignore my voicemail  please respond to vince :  thanks for that . i just wanted to get a sense from you who the right people  are and how i can establish effective contact . when he went on to different  responsibilities , john goodpasture suggested i get the dialog going with the  right commercial people in enron . i will be in your neighborhood in the 200  pm time range and will give you a quick call . that will conserve your  valuable time and hopefully get me in touch with the right people . i am  reading this after your voicemail , so this supersedes that .  dale  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : tuesday , may 01 , 2001 6 : 03 am  to : dale . nesbitt @ marketpointinc . com  cc : vince . j . kaminski @ enron . com  subject : re : get together this coming tuesday ?  dale ,  i can reserve 2 to 2 : 30 time slot but there is really not much that  i can tell you at this point .  the commercial groups are still interested and are moving  towards the test of the package . as soon as they will decide  to move ahead , we ( research ) shall be involved , helping to evaluate the  product . as i have said , we are not the  decision makers in this case .  i think that we should allow simply the process to run its course .  vince  \"\" dale m . nesbitt \"\" on 04 / 30 / 2001 05 : 59 : 30  pm  please respond to  to :  cc :  subject : re : get together this coming tuesday ?  vince :  i will call tomorrow in the morning . lunch or right after lunch would be  great . how would 100 pm work for you ?  dale  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : monday , april 30 , 2001 3 : 07 pm  to : dale . nesbitt @ marketpointinc . com  cc : kimberly . watson @ enron . com ; vince . j . kaminski @ enron . com  subject : re : get together this coming tuesday ?  dale ,  please , call me on tuesday . my morning schedule is full but i am open in  the afternoon .  vince  \"\" dale m . nesbitt \"\" on 04 / 30 / 2001 01 : 51 : 21  am  please respond to  to : \"\" vincent kaminski \"\" , \"\" kimberly s . watson \"\"  cc :  subject : get together this coming tuesday ?  vince / kim :  i am flying to houston tonight and wondered if it would fit one or both of  your schedules to get together this coming tuesday sometime for 1 / 2 hour or  so . i really want to reinitiate the conversations marketpoint was having  with john goodpasture and you , and he said either or both of you were the  right people to continue after his responsibility shift . john was quite  positive about the idea of enron acquiring marketpoint narg through  license ,  and he implied that one or both of you would be carrying the ball in that  direction after he handed it to you .  would this coming tuesday morning at 930 am be a good time for you guys ?  if  so , please give me an email shout at the above address or leave a message  on  my voicemail at ( 650 ) 218 - 3069 . i think you will be truly impressed with  the  scope and progress we have been able to make with both the short run narg  and the long run narg in which you were interested ( not to mention our  power  model ) . the progress is noticeable since you saw it . both long and short  term narg are having quite an impact on a number of gas decisions at the  moment ranging from venezuelan lng , north american lng import terminals and  term , gas basis calculations , trading support , power plant development ,  gas - to - power price spreads in key markets , veracity of heat rate trades ,  bank financings , storage field evaluation , and which new pipelines we can  expect to see enter and which are dogs .  i really hope we can fit it in and get our discussions moving in a mutually  productive direction again . i think narg can help you become even more  successful , and i look forward to working with you .  we have a new office address and new phone number as well . ( we move in may  1 . )  altos management partners  95 main street , suite 10  los altos , ca 94022  ( 650 ) 948 - 8830 voice  ( 650 ) 948 - 8850 fax  ( 650 ) 218 - 3069 cellular  give the phones a week or so to get \"\" debugged \"\" and then switch over .  dale\",0\n\"Subject: risk 2000 panel discussion  hello everyone :  vince kaminski would be available for a conference call on wednesday ,  may 31 at 10 : 00 or 11 : 00 am est . the rest of the day is rather full .  please let me know if either time is convenient for you . if not , maybe we  could do it on june 1 - he is free most of the day with the exception of  12 : 30 - 2 : 00 est .  look forward to hearing from you .  thanks !  shirley crenshaw  administrative coordinator  enron corp . research  713 - 853 - 5290  email : shirley . crenshaw @ enron . com\",0\n\"Subject: re : eprm conferences  hi paul ,  ?  thanks for the e - mail . sorry i missed your calls this morning but i was at  the dentist , where its difficult to speak at the best of times !  ?  i ' m sorry but it doesn ' t look like we will be able to commit to ? the eprm var  conference . we are still a small company and the trip would tie us up for  over a week . i ' m sure you ' ll understand that internally we just can ' t  justify ? the two senior members of the company ? to be away on eprm business  and to have to pay money from our own pocket ? to run this course for you . it  was a difficult decision originally to ? offer our services at expenses only  with no fee , but we did so for the potential opportunity to work some more  with vince .  ?  good luck in your search for alternative course leaders .  ?  best regards .  ?  chris .  ?  ?  dr chris strickland  ?  director , lacima group ltd  www . lacimagroup . com  ?  school of finance and economics , university of technology , sydney  financial options research centre , university of warwick , uk  ?  ?  ?  - - - - - original message - - - - -  from : paul bristow  to : chris @ lacimagroup . com  sent : thursday , february 22 , 2001 8 : 13 am  subject : fw : eprm conferences  hi chris ,  ?  just an extra note regarding the course . if the reimbursements are suitable  i would like to finalise the line - up asap ( vince and a european enron  representative ) . if you were unable to participate i would need to offer  alternative invitations by the end of this week .  ?  all the best ,  ?  paul ? ?  ?  - - - - - original message - - - - -  from : paul bristow [ mailto : pbristow @ riskwaters . com ]  sent : wednesday , february 21 , 2001 9 : 13 am  to : ' chris strickland '  subject : re : eprm conferences  hi chris ,  ?  i ' ve been looking at the forward plan and the total budget for speaker  expenses is 5500 pounds ( us keyboard , no pound sign ) . at current exchange  rates this comes to a little over 15 , 000 australian dollars . i would be  happy to cover your expenses up to this figure .  ?  the course is scheduled to run in amsterdam ( not london as originally  planned ) and houston . the dates are slightly flexible ? to ? work with your  travel schedules . for instance , would you prefer to travel to  sydney - houston - amsterdam - sydney , or in the opposite direction ?  ?  if you could contact me to ? let me know if this would ? enable you to commit  to the course , i would be delighted to forward the notes from the research .  i would plan to then work on the outline until march lst . i look forward to  speaking with you soon .  ?  best wishes ,  ?  paul bristow ?  - - - - - original message - - - - -  from : chris strickland [ mailto : chris @ lacimagroup . com ]  sent : tuesday , february 06 , 2001 5 : 18 pm  to : pbristow @ riskwaters . com  subject : re : eprm conferences  hi paul ,  ?  bit of a busy morning here - i ' ll be out for about 1 . 5 hrs ( 9 . 15 sydney  time ) . if we don ' t catch up today , i ' ll call tomorrow .  ?  chris .  ?  - - - - - original message - - - - -  from : paul bristow  to : ' chris strickland '  sent : tuesday , february 06 , 2001 1 : 33 am  subject : re : eprm conferences  hi chris ,  ?  i would like to confirm the dates of some of the forthcoming eprm events :  ?  effective var and stress testing techniques for the us energy industry . this  event will run on the 21 & 22 may in london and the 28 & 29 may in houston .  michele du berry ( director of conferences ) and i are looking at how we have  structured the training courses and are keen to present a different outline  than on previous courses . i would like to run this event with 2 - 3 trainers  per venue , rather than with 7 - 8 as we have done in the past . if you and les  clewlow would be interested in leading this course ( possible with vince  kaminski ) i would be delighted to discuss the event in greater detail .  ?  energy & power risk management , europe . our largest annual european event is  scheduled to between september 19 - 21 . victoria kerridge will be producing  this event from the london office and will be starting research in two  weeks . i am going to be providing her with a brief and will ensure that she  has your contact details .  ?  i have also been finalizing the details for the annual energy & power risk  management event in houston . this will take place on may 14 th & 15 th and is  close to completion . i would be happy to provide you with more details ,  without potentially running the risk of overloading your schedule with a  number of events in a short space of time ( var and eprm , houston ) . my  priority is to secure trainers for our var course .  ?  if you would be interested in any of the events listed , i would be happy to  talk with you this week . my direct line is 212 925 6990 , extension 225 .  ?  best wishes ,  ?  paul bristow  ?  ?  - - - - - original message - - - - -  from : chris strickland [ mailto : chris @ lacimagroup . com ]  sent : sunday , january 28 , 2001 8 : 02 pm  to : pbristow @ riskwaters . com  subject : eprm conferences  hi paul ,  ?  just a note so that you have my address . do you have dates for the us and  european conferences yet ? i ' m sure that we can arrange other work at the  same time to offset the expenses of speaking at these events if you want us  to participate .  ?  you also mentioned a training course on var and the energy area . we had an  eprm article last year with vince on a comparison of the different  techniques on a trial portfolio that might form the basis of something  useful . anyway , let me know .  ?  best regards .  ?  chris .  ?  ?  ?  ?\",0\n\"Subject: re :  i was very pleased to get your note and wish that i could be of help with  respect to a phd program . unfortunately our only related program here is  in statistics . i would suggest that you contact professor sheridan titman  at the university of texas in austin .  good luck ,  john  at 05 : 31 pm 1 / 12 / 01 + 0600 , you wrote :  > dear mr . martin ,  > having visited your web page http : / / hsb . baylor . edu / html / martinj / i have  > found information about your research paper . i have a similar area of  > interests and i am keen to pursue a degree in finance program . i am  > especially interested in the following areas :  >  > 1 . valuation of the exotics style options  > 2 . credit portfolio models - assessment of the value at risk of a  > non - investment grade eurobonds portfolio and contributions of the  > individual assets to portfolio risk  > 3 . estimation of expected default frequency for individual default risk  >  > if you have any open ph . d . student positions for the fall 2001 , please do  > not hesitate to get in touch with me .  >  >  > i have the following background :  >  > i graduated ( m . s . ) from moscow institute of physics and technology in 1998 ,  > majoring in economics and applied mathematics , with a degree in applied  > mathematics gpa 4 . 5 / ( 5 . 0 ) . diploma matter as \"\" mathematical methods in the  > modern theory of oligopoly \"\" . i have three and a half years working  > experience in bank and investment company in russia and kazakhstan . i had  > been working on the following positions :  >  > 1 . trader - fixed income , equities , futures , forwards , swaps , options , money  > market .  >  > 2 . analyst - estimation of the market value of illiquid equities , valuation  > of principal protected notes and reverse convertible notes , valuation of  > exotics options .  >  > 3 . risk manager - risk management in banking currency , margin and liquidity  > risks .  >  > 4 . portfolio manager - management of the banking securities portfolio using  > mathematical and statistical approach .  >  > articles :  >  > 1 . custodian ' s functions and its role in the management of securities  > portfolios . \"\" securities market journal \"\" . june , 2000  >  > 2 . options as an instrument for receiving guaranteed income . \"\" securities  > market journal \"\" . december , 2000  > computer languages : visual basic , pascal , and fortran  >  > i have got the following scores :  >  > 1 . gre - 1810 ( v - 290 , q - 800 , a - 720 )  >  > 2 . toefl 563  >  >  >  > look forward to hearing from you .  >  > sincerely ,  >  > yeremenko alexey  >  > e - mail : aeremenko @ turanalem . almaty . kz  >  >  >  >  >  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: old and new extensions  hello ,  may i please have several lines disconnected from my phone  and several new lines added .  you can delete 36336 and 33135 .  you can delete 33376 and 39719  also 34768 .  will you please add 36615 and 34305  will you add please jose marquez extension ,  a new hire . ( a new number )  also add 39737 and 36286 .  r . c . 100038  co . # 0011  thanks  kevin moore  any questions please feel free to call . x 34710\",0\n\"Subject: re : rice / enron finance seminar series  thank you , vince . we look forward to another successful seminar series .  i will check into getting a mug design and get cost figures for you . we ' ll  get something done this summer so that we are ready to go for the fall .  bbo  at 02 : 45 pm 5 / 25 / 00 - 0500 , you wrote :  > barbara ,  >  > we shall extend the funding for the seminar in the fall for the next  > season .  >  > i shall be glad to cover the cost of a coffee mug with our logos . can you  > identify a  > producer who can come up with a design ?  > i think that we may use the company that produces  > rice memorabilia .  >  > i shall run the design through our pr department and then we can have it  > produced .  >  > vince  >  >  >  >  >  > barbara ostdiek on 05 / 24 / 2000 01 : 15 : 12 pm  >  > to : vince . j . kaminski @ enron . com ( vince kaminski )  > cc :  > subject : rice / enron finance seminar series  >  >  > vince :  >  > i have checked with our accounting folks and it looks like the balance in  > the seminar account is under $ 5000 . this will get us going in the fall so  > we have some flexibility for the next enron funding - whatever works best  > on your end .  >  > also , i am interested in pursuing the idea of designing some sort of a gift  > - a coffee cup perhaps - to give to our seminar guests . i think we could  > do something neat with the enron and rice / jgs logos that folks would be  > happy to display on their shelf or desk top . what do you think ?  >  > as always , thank you so much for your support of our efforts over here . it  > is truly appreciated .  >  > bbo  >  >  >  > barbara ostdiek 713 - 348 - 5384 ( voice )  > assistant professor of finance 713 - 348 - 5251 ( fax )  > jones graduate school of management ostdiek @ rice . edu  > rice university www . ruf . rice . edu / ~ ostdiek /  > 6100 main street - ms 531  > houston , tx 77005 - 1892  >  >  >  >  >\",0\n\"Subject: re : mscf speaker series / recruitment  thanks for your message . a call sometimes between 7 : 00 and 8 : 00  is fine . i come to the office around 7 : 00 traffic permitting .  vince  pierre - philippe ste - marie on 08 / 02 / 2000 07 : 38 : 42 am  to : vkamins @ enron . com  cc :  subject : mscf speaker series / recruitment  dear mr . kaminsky ,  mr . bryant informed me of the possibility of having you as a guest speaker  for our speaker series . it would be a great honor and a pleasure for me to  help you organize a trip to pittsburgh . would it be possible to give you a  call tomorrow ( thursday ) at 7 . 00 am central time ?  sincerely ,  pierre - philippe ste - marie\",0\n\"Subject: super saturday participation and off - cycle interview request  thank you for volunteering your time for this weekend ' s super saturday . we  appreciate your commitment to enron ' s recruiting success . at this time we do  have an adequate number of interviewers and will not need you to sacrifice  your saturday . however , as last minute changes occur in the interview  schedule we may have to contact you for back up .  although we are in good shape so far for saturday , our off - cycle recruiting  department is looking for interview volunteers for the following dates :  thursday , november 9 th from 9 : 00 a . m - 12 : 00 p . m  thursday , november 16 th from 9 : 00 a . m . - 12 : 00 p . m .  thursday , december 7 th from 9 : 00 a . m . - 1 : 00 p . m .  over 50 candidates will be interviewing over these 3 days . the candidates  will be a combination of associates and analysts representing schools such as  princeton , harvard , university of north carolina , notre dame , university of  illinois , emory and many others . each candidate will have 4 interviews .  pending the outcome of their interviews we will invite them to stay and  attend super saturday that weekend . if for some reason we decide not to  further pursue the candidate , we will fly them home that friday morning .  we are asking enron employees manager level or higher to volunteer at least  one hour to interview candidates ( you will see two candidates in that time ) .  if you can volunteer for more than an hour or for more than just one of the  stated dates , that would be great ! your help is needed ! please contact  cathy lira , at cathy . lira @ enron . com or x 54049 as soon as possible , if you can  volunteer any time for interviewing .  thanks again for your participation in the associate & analyst programs .\",0\n\"Subject: re : thursday visit  frank ,  we shall have about 30 people , highly technical ( ph . d . , m . s . level ) .  a presentation of 45 minutes would be optimal , assuming you may arrive  around 11 : 45 - 12 : 00 .  we shall get the projector for you .  please , keep all the receipts for refund .  vince  \"\" francis x . diebold \"\" on 12 / 18 / 2000 09 : 47 : 16 am  to : vince . j . kaminski @ enron . com  cc : shirley . crenshaw @ enron . com  subject : re : thursday visit  excellent , vince ! yes , i will be happy to make a presentation . do you have a  projector to which i could simply hook up my laptop ? could we also have an  overhead projector as a backup ? many thanks , frank  p . s . how long is optimal ? how large an audience and what are the  participants ' backgrounds ?  vince . j . kaminski @ enron . com wrote :  > frank ,  >  > we are located at 1400 smith . any cab driver can identify the enron  > building . when you arrive ,  > please , call me at 3 - 3848 from the reception to be admitted into the  > building .  >  > alternative phone numbers : 3 - 5290 ( my assistant shirley crenshaw ) . you can  > also try to call me on  > my cell phone : 713 898 9960 .  >  > the research group meeting starts at 11 : 30 and lasts till 1 : 00 . can you  > make a presentation  > about your research projects ? what audio / video equipment do you need ? what  > sandwich would  > you like to have for lunch ?  >  > we shall make a hotel reservation for you thursday night .  >  > vince  >  > \"\" francis x . diebold \"\" on 12 / 18 / 2000 07 : 02 : 46 am  >  > to : vince kaminski  > cc : bmierts @ enron . com  > subject : thursday visit  >  > hi vince , looking forward to seeing you thursday . i arrive at houston - bush  > on usair 1769 at 10 : 55 am . please let me know where to go . i also want to  > verify that you have booked me a hotel for thurs night . many thanks , and  > see you soon , frank  >  > - -  > francis x . diebold  > wp carey professor  >  > department of economics  > university of pennsylvania  > 3718 locust walk  > philadelphia , pa 19104 - 6297  >  > fdiebold @ sas . upenn . edu  > http : / / www . ssc . upenn . edu / ~ diebold  >  > ( 215 ) 898 - 1507 telephone  > ( 215 ) 573 - 4217 fax  - -  francis x . diebold  wp carey professor  department of economics  university of pennsylvania  3718 locust walk  philadelphia , pa 19104 - 6297  fdiebold @ sas . upenn . edu  http : / / www . ssc . upenn . edu / ~ diebold  ( 215 ) 898 - 1507 telephone  ( 215 ) 573 - 4217 fax\",0\n\"Subject: re : test  dear vince : the email address of candice is  cgkao @ mtholyoke . edu  i will email you her phone number at mount holyoke this evening .  regards  ed  on wed , 18 apr 2001 vkamins @ ect . enron . com wrote :  > test  >  > vince  >  >\",0\n\"Subject: re : powerisk 2001 - your invitation  angelika ,  thanks for the invitation .  yes , i shall be glad to attend and repeat the same presentation .  vince  angelika staude on 04 / 09 / 2001 04 : 19 : 08 am  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc :  subject : powerisk 2001 - your invitation  powerisk 2001  the global premier forumforenergy trading & risk management  6 th - 9 th november 2001 , paris  dear mr kaminski ,  i am responsible for the programme of this year ' s powerisk conference in paris . helyette geman has informed me that she has contacted you concerning the workshop and that you are happy to do it with her again this year - brilliant !  i would like to know if you are also interested in delivering a paper again . the audience in previous years greatly appreciated your contribution , and i would me more than happy if you could join us again .  to give you an idea of the programme so far , these are the ( \"\" technical \"\" ) topics that are already covered :  chris strickland : forward curve models with jumps for the pricing of exotic energy contracts  multi - factor forward curve models for the valuation of energy contracts  adding jumps  applying the models to exotic energy options  extensions to multiple energy contracts  les clewlow : valuation and risk management of virtual power stations and gas supply agreements  structures of gas supply agreements ( gsa )  relationships between physical and virtual power stations ( pps / vps )  valuation methods for gsa ' s and vps ' s  risk analysis of gsa ' s and vps ' s  derek bunn , professor of decision sciences , london business school : analysing the impact of neta on market efficiency & volatility in the uk energy market  chris harris , director of market development . operations and engineering , innogy : applying cutting - edge portfolio management theory in order to optimise your risk exposure  establishing and valuing the key factors using a bottom up approach  looking at the interconnection between key factors  the treatment of the risk of infrequent but high impact events  peter nance , principal , teknecon : combining power systems and monte carlo simulations for effective pricing  dan mansfeld , head of risk control , vattenfall : assessing the benefits and risks of using derivatives as part of your risk management strategy  spyros maragos : analysing new approaches to building forward curves from available market data  tamara weinert , credit and contracts manager , mirant energy : successfully measuring limit setting ; risk reducing structures  importance of credit in the organizational structure : reporting ; dependence ; structure of credit department  brett humphreys : examining cutting - edge credit exposure mitigation tools : combining counterparty and portfolio credit var techniques  helyette geman : pricing of exotic energy derivatives and structured contracts  please let me know if you are interested in joining the powerisk 2001 speaker panel , and which topic you would like to cover . i think that something along the lines of last year ' s talk ( state - of - the - art volatility and correlation estimation techniques for multiple energy portfolios ) would be brilliant again , but please feel free to chose something else that has not been covered yet .  i look forward to hearing from you ,  kind regards ,  angelika staude  director powerisk 2001  tel : 0044 207 915 5675  fax : 0044 207 915 5101  ps : for your information , please find enclosed a list of confirmed speakers for powerisk 2001 .  - confirmed speakers . doc\",0\n\"Subject: re : resume  vince ,  could you give him ( bill ) a call at 1 or 2 on friday cst ? his cell  phone is 918 - 625 - 6683 .  marshall brown  vice president  robert walters associates  tel : ( 212 ) 704 - 0596  fax : ( 212 ) 704 - 4312  mailto : marshall . brown @ robertwalters . com  http : / / www . robertwalters . com  > - - - - - original message - - - - -  > from : vince . j . kaminski @ enron . com [ smtp : vince . j . kaminski @ enron . com ]  > sent : monday , march 12 , 2001 6 : 36 pm  > to : marshall . brown @ robertwalters . com  > cc : vince . j . kaminski @ enron . com  > subject : re : resume  >  >  > marshall ,  >  > i am catching up with my mail . we would like to talk to this candidate as  > well  > ( phone interview ) .  >  > vince  >  >  >  >  >  > marshall brown on 02 / 21 / 2001 12 : 36 : 39  > pm  >  > to : vince kaminski  > cc :  > subject : resume  >  >  > vince ,  > this candidate would be interested in speaking with you .  > regards ,  >  > marshall brown  > vice president  > robert walters associates  > tel : ( 212 ) 704 - 0596  > fax : ( 212 ) 704 - 4312  > mailto : marshall . brown @ robertwalters . com  > http : / / www . robertwalters . com  >  >  > >  >  >  > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  > caution : electronic mail sent through the internet is not secure and could  > be intercepted by a third party .  >  > this email and any files transmitted with it are confidential and  > intended solely for the use of the individual or entity to whom they  > are addressed . if you have received this email in error please notify  > the system manager .  >  > this footnote also confirms that this email message has been swept by  > mimesweeper for the presence of computer viruses .  >  > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  >  > ( see attached file : kour _ vas . doc )  >  > >\",0\n\"Subject: nymex  chris ,  the first file might have gone to a wrong chris long .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 09 / 27 / 2000  05 : 33 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron north america corp .  from : v charles weldon 09 / 27 / 2000 12 : 22 pm  to : christopher . long @ enron . com  cc : mike a roberts / hou / ect @ ect , vince j kaminski / hou / ect @ ect  subject : nymex  chris ,  here is the analysis you requested . let me know if i can be of any further  assistance .  charlie weldon\",0\n\"Subject: revised 10 cpm color copier information  kevin ,  i revised the cost on the 10 cpm tab under cpi : - - >  thanks , iain . . . . . . . . . . . . . . . . . . .  - - - - - - - - - - - - - - - - - - - - - - forwarded by iain russell / epsc / hou / ect on 02 / 01 / 2000  10 : 05 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  color copier information  from : iain russell on 01 / 31 / 2000 11 : 45 pm  to : kevin g moore / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , mike a roberts / hou / ect @ ect , shirley  crenshaw / hou / ect @ ect , carole rogers / epsc / hou / ect @ ect  subject : color copier information\",0\n\"Subject: thank you  dear dr . kaminsky :  i want to thank you for interviewing me last friday and inviting me back for  a follow - up interview . it was a pleasure to meet you and other members of  your staff .  my interest in working for enron research was strengthened as a result of the  interview . i was most impressed by the quality and diversity of talents  within your group . my proficiency in probabilistic analysis and experience in  engineering and financial risk management fit nicely with the activities of  your group . i have a demonstrated ability to adapt my skills with changing  business needs . as a member of shell research , i supported internal clients  from different business units . i am confident that i could make a significant  contribution to your organization over time .  i want to reiterate my strong interest in working with you and your staff .  you provide the kind of opportunity i seek . i look forward to seeing you  again on my follow - up interview next week . again , thank you for the interview  and your consideration .  sincerely ,  rabi s . de  ?  do you yahoo ! ?  yahoo ! mail - free email you can access from anywhere !\",0\n\"Subject: re : a friend of mine  vince ,  thank you very much for the follow up report . i am sure richard will be very enthusiastic about the opportunity to speak with you and your team . i appreciate your help , and please feel free to contact me if you or shirley need assistance with logistics .  again , thank you and i look forward to working with you again this recruiting season .  regards ,  kristin  - - - - - original message - - - - -  from : kaminski , vince  sent : wednesday , may 02 , 2001 8 : 27 am  to : gandy , kristin  subject : re : a friend of mine  kristin ,  thanks a lot for the resume .  we shall arrange a phone interview with richard . this is out standard procedure .  a phone interview is followed by the on - site interview , after we determine what is the best team to interview  the candidate .  vince  from : kristin gandy / enron @ enronxgate on 05 / 01 / 2001 05 : 14 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : a friend of mine  vince ,  last week i was contacted by one of my friends who is very interested in becoming an enron employee . he has a phd and several years research and lab experience .  richard is afraid that being a phd is a dying breed and may need to go back to school to obtain an mba . i was wondering if you would mind looking at the attached resume to assess if you have any interest in richard , or if you feel i should encourage him to go back to school . i am unclear as to the qualifications for your group so i apologize if this request is way off base .  thank you for your help ,  kristin gandy  associate recruiter  enron corporation  1400 smith street eb 1163  houston , texas 77002  713 - 345 - 3214  kristin . gandy @ enron . com  >\",0\n\"Subject: re : aiesec polska - eurolds 2000  czesc wicek ,  dzieki za notke .  spotkalem sie z ta osoba w ubieglym tygodniu - niestety ale wczesniej bylem  na urlopie i nikt mi nie sygnalizowal nic na ten temat .  a . wodnicki niestety pomieszal fakty i moj numer kontaktowy dostal od ciebie a  nie twoj ode mnie - tak jak pisze w swojej notatce .  biorac pod uwage , ze pozostalo niecale 7 dni od dnia mojego z nim spotkania  do dnia rozpoczecia - nie bylo fizycznej mozliwosci wprowadzenia enron  formalnie jako sponsora - zwlaszcza biorac pod uwage , ze caly pr dept . jest  zaangazowany w otwarcie siedziby w londynie jutro i pojutrze a aiesec  potrzebowal ode mnie decyzje i pieniadze w piatek czyli dwa dni temu .  jedyne co moglem zrobic ( i zrobilem ) to wprowadzilem ich do kilku innych  instytucji ( czytaj kolegow z hz ) ktorzy mogli podjac decyzje szybciej .  pan andrzej wodnicki niestety przyznal sie do organizacyjnego balaganu w  wyniku ktorego zagubiono moje namiary telefoniczne i faksowe , a nikt nie  pomyslal o zajzeniu do ksiazki telefonicznej po numer naszego biura w  warszawie . drugi problem to to ze zabral sie on za organizacje dodatkowych  srodkow na dwa tygodnie przed rozpoczeciem imprezy .  niestety nic wiecej instytucjonalnie nie moglem dla nich zrobic .  zasugerowalem tez , ze gdyby nie dopieli calego finansowania to jeszcze moge  sprobowac zebrac mala grupe ludzi , ktorzy mogliby ew . dofinansowac brakujaca  kwote jako darowizne indywidualna - ale biorac pod uwage kto jest w komitecie  honorowym i ze kwasniewski jest glownym sponsorem - taka forma moze byc  politycznie niewlasciwa .  mam od nich dostac jakas informacje w przyszlym tygodniu czy dzieki moim  dzialaniom cos im sie uda czy tez beda nadal potrzebowac pomocy .  pech - ale niestety zawiedli organizacyjnie .  pozdrowienia - jarek\",0\n\"Subject: re : one more thing  clayton ,  i agree . this would happen when there is an insufficient pipeline capacity  to move gas . the market developments you describe happen quite  often and this is one of the reasons we want to have the model you are working  on .  vince  vince  clayton vernon @ enron  01 / 17 / 2000 09 : 30 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : one more thing  vince -  i forgot to mention to you one other development i propose , a theory i call  \"\" uncoupling \"\" of basis . as an example , severe cold weather specific to the  midwest can result in an elevation of spot market prices at henry hub , where  prices elsewhere in the northeast are such that the basis appears to be less  than the commodity charge to ship gas from louisiana to the northeast . this  can happen when gas is not being moved in the spot market from louisiana to  the northeast at that time . the notion of \"\" equilibrium \"\" cannot , in my view ,  always assume \"\" spot \"\" gas is flowing along all nodes of the network .  clayton\",0\n\"Subject: re : [ fwd : new commodity marketplace opportunity ]  mark lay : again , thank you for listening to my concept . in my search for  co - foounder / collaborators and  angel investors , disclosing the concept ( for lack of a better title now , i  call the system \"\" lifetrak \"\" )  and formulating a simple , clear picture is not easy . the attached schematic  depicts an overview of the  effort . part of the diagram hopes to separate the special interests as  participants and member  organizations so as to be helpful in the public sector with social issues .  the groups fall into two  natural sectors ; ( 1 ) supply generators ; and ( 2 ) user / service organizations .  in the middle is the system  and its management that interconnects those benefiting groups and the  donor / recipient lifetrak  cardholders . i can embellish more on these later . the diagram gives us a  place to begin discuss and  talking points in order to try to simplify how the concept could be developed  and supported and where the  revenue model which creates dramatic efficiencies generates management and  license fee . i hope we can  get together soon . although vince kaminski cannot directly contribute due to  his other commitments , i  have copied him to keep him advised ( hoping that he might be able to do more  at a later date . ) . best  regards , al arfsten  mark . lay @ enron . com wrote :  > i did understand that you were still at the concept stage . it is a very  > interesting proposal and i would like to think about it .  >  > thanks ,  > mark  >  > - - - - - original message - - - - -  > from : al arfsten @ enron  >  enron . com ]  >  > sent : thursday , january 25 , 2001 10 : 45 am  > to : lay , mark  > subject : [ fwd : new commodity marketplace opportunity ]  >  > mark : per our brief conversation this morning , the attached email was  > sent to you yesterday . i hope that you might understand that i am  > conceptually looking for \"\" founders \"\" and at the \"\" pre \"\" business plan  > stage . there is an enormous problem existing with a very attractive  > economic reward and willing participants needing this solution . i need  > help . al arfsten 713 965 2158  >  > content - transfer - encoding : 7 bit  > x - mozilla - status 2 : 00000000  > message - id :  > date : wed , 24 jan 2001 15 : 49 : 37 - 0600  > from : al arfsten  > organization : bfl associates , ltd .  > x - mailer : mozilla 4 . 7 [ en ] c - cck - mcd nscpcd 47 ( win 98 ; i )  > x - accept - language : en  > mime - version : 1 . 0  > to : mark . lay @ enron . com  > subject : new commodity marketplace opportunity  > content - type : text / plain ; charset = us - ascii  >  > mark lay : i shared confidentially with vince kaminski my developing  > concept of a highly inefficient not - for - profit enterprise with  > dramatically increasing costs . i believe that a for - profit economic  > model is possible that should reverse these skyrocketing costs and  > ultimately lower the commodity thereby having a national , if not , global  > impact of health care costs . vince seems to also believe in the  > concepts potential . the ceo of one of the biggest u . s . blood banks has  > already asked to become involved . i would like involve more people  > with vision , means and desire to help make this a reality . i would look  > forward to meeting with you to talk further . al arfsten 713 965 2158  - lifetrak vision chart 012601 . doc\",0\n\"Subject: aram  rick ,  aram is coming to houston , in my view , to explore the possibility of coming  back to enron  ( given uncertain situation under the scottish rule at the old pacificorp ) .  i shall suggest that he meet with you and / or ted murphy as well .  i can wait for karen to come back . it ' s not urgent . we are still working on  the volumetric risk module and the team is making a very good progress .  they gave a presentation today to rick carson and me .  we have to decide what comes next ( asset / liability model or  operational risk model ) .  vince\",0\n\"Subject: re : publishing my real options work  steve ,  we can accelerate the process . we need some internal approvals .  please , talk to richard lewis and let him know i think it ' s ok  to publish it because it is a very high level theoretical paper .  vince  steven leppard  02 / 01 / 2000 09 : 56 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : publishing my real options work  vince  what are the chances of , say , risk publishing my work before the june  conference ? do they have peer review etc . ?  steve\",0\n\"Subject: re : b . brandfass  barbara ,  my apologies . i was traveling and then we had the usual end of the quarter  pandemonium .  i am sending you my presentations and would like to get back to you with  some questions regarding your products .  vince  \"\" barbara e . brandfass \"\" on 07 / 10 / 2000 04 : 15 : 33 pm  to :  cc : \"\" amir sadr \"\"  subject : b . brandfass  hello vince ,  ?  sorry to be a bother but do you have those materials from your talk in may ?  ?  i look forward to hearing from you .  ?  thank you ,  ?  barbara e . brandfass , chief of business development  panalytix , inc . , www . panalytix . com  212 974 1022 , b @ panalytix . com\",0\n\"Subject: re : university of texas conference on energy finance , february 2001  sherri ,  thanks . yes , it ' s february the 22 nd .  vince  enron north america corp .  from : jeff skilling @ enron 09 / 20 / 2000 12 : 49 pm  sent by : sherri sera @ enron  to : vince j kaminski / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , richard causey / corp / enron @ enron  subject : re : university of texas conference on energy finance , february 2001  vince , i am checking the date on jeff ' s calendar ( i ' m assuming the date is  february 22 ? ) . i am holding that date whole week for a trip abroad , but i  think we have some flexibility on that and am checking it out . i ' ll be back  in touch as soon as i ' ve resolved that . srs  vince j kaminski @ ect  09 / 20 / 2000 11 : 41 am  to : jeff skilling / corp / enron @ enron  cc : vince j kaminski / hou / ect @ ect , richard causey / corp / enron @ enron  subject : university of texas conference on energy finance , february 2001  jeff ,  our friends at the university of texas are planning a conference on energy  economics and finance in february of next year . they would like very much to  have  you as a keynote speaker .  given our good , long - term relationship with ut , i would recommend  that you speak at this conference . i talked to prof . ehud ronn  a few times about the program and i think that this will be  an excellent forum to present enron ' s accomplishments and  agenda for the future .  i am sure that rick causey will join me in making the same recommendation .  vince\",0\n\"Subject: london research  the enron europe research group has experienced rapid growth over the last  year as it has become clear that there are tremendous opportunities to  utilize their unique quantitative skills in supporting both new and ongoing  business efforts in the london offices . because of this , we are appointing a  group leader with the view to leveraging the group better across the many  business areas in enron europe which are benefiting from research support .  effective immediately , steven leppard will take responsibility for  spearheading research efforts in london and managing the london based  research team . steve joined enron in early 1999 and has distinguished  himself through his many contributions including analysis of the \"\" supergoal \"\"  scheduling system and development of a diagrammatic approach for real options  analysis . he holds a phd . in mathematical physics from kings college london  and an honours degree in mathematics from imperial college . steve is also a  black - belt level instructor in kungfu .  please join us in congratulating steve on his new responsibilities .\",0\n\"Subject: re : enron broadband services  dear stinson ,  i apologize for the delay in responding . i was away wed - sun and  just returned . thank you very much for your email . i plan to make  a firm decision on my future plans sometime in the later half of  april , and would be extremely interested in getting an offer from  enron . i think the opportunities at enron are very exciting and  there is room for some real contribution to the group .  best wishes ,  salal  | >  | >  | > salal ,  | >  | > hope everything is going well with your thesis . we enjoyed hearing  about  | > your research topics during your visit to houston and feel that you could  ad  * d  | > many new ideas to the innovative environment that we are cultivating at  ebs .  | > i regret being a bit slow to get back to you after your visit . please  let  * me  | > know if you are still available and interested in coming to ebs . if so ,  i  | > will work on getting a formal offer out to you asap . if not , we would  sti  * ll  | > be interested in staying in touch in case you would be interested in  working  | > with us at some point in the future .  | >  | > best regards ,  | >  | > - - stinson  | >  | >  salal humair  massachvsetts institvte of technology  operations research center  rooms e 40 - 130 , 5 - 332 a  x 3 - 3014 , x 5 - 9727 \",0\n\"Subject: maths course  dear vince ,  ?  i just wondered whether you have had chance to look at your bullet points  and bio for the maths course . if so please could could email them to me as  soon as possible . could you also let me know whether your company  affiliation should now be enron north america .  ?  thanks vince and best regards ,  ?  vicky\",0\n\"Subject: energycast  dear vince ,  i hope your trip to australia was successful . it ' s one of my favorite places  to go .  i ' ve copied you on the email to mike initiating enron ' s trial service to  energycast . thanks for helping to set this up .  would you ask the authorities in enron to refresh my access to enrononline ?  my guest user id as ena 61296 and my guest password was tr 84 byl 3 . they no  longer work , probably because i haven ' t visited the site in months as we  were in full development mode on energycast .  vince , you will note in our website references to forward prices of power in  nepool , nypp , and pjm . we use reuters as a reference - - not satisfactory . if  your traders like energycast and enron became a client , would enron consider  linking its prices to our site ? we have to improve over the reuters quotes  and regard enrononline or bloomberg as the best candidates . over time , as  our service spreads i believe this could help generate deal flow for your  traders .  let me know what you think .  ed\",0\n\"Subject: re : lawyer  sorry to hear this - i have generally shared my materials with colleagues  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : thursday , march 22 , 2001 6 : 21 am  to : macmilli @ wharton . upenn . edu  cc : vince . j . kaminski @ enron . com  subject : re : lawyer  ian ,  sorry for a delay in responding to you .  i am currently in london , flying back to houston tomorrow .  the problem is not with the lawyers . we worked on our presentation  materials together with a professor from another university  and we agreed to use these materials only internally .  we have to honor our commitment to him . i am sure  that this is exactly what you would have expected from us if we had  made a similar commitment to you .  vince  \"\" macmillan , ian \"\" on 03 / 21 / 2001 04 : 31 : 27 pm  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc :  subject : re : lawyer  what do i need to do to move this thing forward ?  i suspect that the problem is basically with the lawyers . they only know  how to stop things , but in a way they play a role in global society . if it  were not for the handicaps they lay on us the rest of the world would never  have a chance .  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com  to : macmilli @ wharton . upenn . edu  cc : vince . j . kaminski @ enron . com  sent : 3 / 8 / 01 12 : 12 pm  subject : re : lawyer  ian ,  sorry for a delay in getting back to you .  i have one challenge i did not anticipate  when i talked to you the first time about our real options  internal seminar .  the materials were prepared in collaboration with a professor  from another school , and there is some sensitivity regarding  the intellectual property rights and the ability to distribute the  materials  outside enron .  please , give me some time to find out if i can work  around this issue .  vince  \"\" macmillan , ian \"\" on 03 / 07 / 2001 06 : 46 : 28 am  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc :  subject : lawyer  i still have not heard from your lawyer . i would like to see whar  materials you are using and assess how we could work on the topic of  real  options with enron\",0\n\"Subject: re : your visit to enron  frank ,  thanks a lot . are you planning to make a general presentation on your work  in the weather area ? if this is the case , i would  invite to our lunch meeting the traders from the weather derivatives  desk .  vince  \"\" francis x . diebold \"\" on 11 / 04 / 2000 08 : 47 : 41 am  to : shirley . crenshaw @ enron . com  cc : vince kaminski  subject : re : your visit to enron  shirley ,  the 21 st is perfect . i will go ahead and purchase my plane tickets . would  you  please make me a hotel reservation for the night of the 21 st ?  many thanks ,  frank diebold  shirley . crenshaw @ enron . com wrote :  > good morning professor diebold :  >  > i am vince kaminski ' s assistant and he has forwarded your emails to me  > for scheduling purpose . unfortunately , we have a conflict on december  > 14 th . can you possibly come on the 21 st ?  >  > i hope you have not already made your reservations . if i can do anything  > to assist you , please let me know .  >  > best regards ,  >  > shirley crenshaw  > administrative coordinator  > enron research group  > 713 - 853 - 5290  >  > - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 11 / 03 / 2000  > 09 : 29 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  >  > vince j kaminski  > 11 / 02 / 2000 04 : 30 pm  >  > to : \"\" francis x . diebold \"\" @ enron  > cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect  > subject : re : visit ? ( document link : shirley crenshaw )  >  > frank ,  >  > dec 14 would be better for us . we have already scheduled  > an internal presentation on december 7 . please , go ahead and make a  > reservation .  > the best place to stay is hyatt regency downtown or doubletree downtown  > ( within a walking distance to enron ) . it is important to specify the  > downtown  > location for both hotels .  >  > vince  >  > \"\" francis x . diebold \"\" on 11 / 02 / 2000 03 : 00 : 49 pm  >  > to : vince . j . kaminski @ enron . com  > cc :  > subject : re : visit ?  >  > sounds good , vince . how about dec 7 ? the roundtrip coach fare , regardless  > of  > airline , is about $ 1900 . i hope that won ' t break the bank . once i have  > your  > approval , i ' ll go ahead and book it . best , frank  >  > vince . j . kaminski @ enron . com wrote :  >  > > frank ,  > >  > > yes , i would be very interested in meeting with you in houston in  > december .  > > the best day for visit would be thursday when my group has a lunch  > meeting  > > and you could meet the rest of the research unit .  > >  > > please , let me know what day would work for you . we shall be very glad to  > > cover the cost of your trip .  > >  > > vince  > >  > > i  > >  > > \"\" francis x . diebold \"\" on 10 / 31 / 2000 01 : 01 : 11 pm  > >  > > to : vince kaminski  > > cc :  > > subject : visit ?  > >  > > hi vince ,  > > are you still interested in my visiting for a day , perhaps in dec or  > > jan ? i have begun a project on unobserved - components modeling of  > > weather patterns , so it would be productive and fun to compare notes .  > > best ,  > > frank  > >  > > - -  > > francis x . diebold  > > wp carey professor  > >  > > department of economics  > > university of pennsylvania  > > 3718 locust walk  > > philadelphia , pa 19104 - 6297  > >  > > fdiebold @ sas . upenn . edu  > > http : / / www . ssc . upenn . edu / ~ diebold  > >  > > ( 215 ) 898 - 1507 telephone  > > ( 215 ) 573 - 4217 fax  >  > - -  > francis x . diebold  > wp carey professor  >  > department of economics  > university of pennsylvania  > 3718 locust walk  > philadelphia , pa 19104 - 6297  >  > fdiebold @ sas . upenn . edu  > http : / / www . ssc . upenn . edu / ~ diebold  >  > ( 215 ) 898 - 1507 telephone  > ( 215 ) 573 - 4217 fax  - -  francis x . diebold  wp carey professor  department of economics  university of pennsylvania  3718 locust walk  philadelphia , pa 19104 - 6297  fdiebold @ sas . upenn . edu  http : / / www . ssc . upenn . edu / ~ diebold  ( 215 ) 898 - 1507 telephone  ( 215 ) 573 - 4217 fax\",0\n\"Subject: re : risk 2000 panel discussion  my phone 816 - 467 - 3569  - - - - - original message - - - - -  from : shirley crenshaw [ mailto : shirley . crenshaw @ enron . com ]  sent : friday , may 26 , 2000 9 : 17 am  to : oliver @ risk . co . uk ; jefferid @ kochind . com ; sbramlet @ utilicorp . com  cc : vince j kaminski  subject : risk 2000 panel discussion  good morning gentlemen :  i will go ahead and schedule the conference call for wednesday , may 31 st  at 11 : 00 am est ( 10 : 00 cst ) . please let me know the telephone numbers  you may be reached at and vince will call you .  if you find you cannot do this , please let me know .  thanks and have a wonderful weekend .  shirley crenshaw  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 05 / 26 / 2000  08 : 11  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  shirley crenshaw  05 / 25 / 2000 03 : 54 pm  to : oliver @ risk . co . uk , jefferid @ kochind . com , sbramlet @ utilicorp . com  cc :  subject : risk 2000 panel discussion  hello everyone :  vince kaminski would be available for a conference call on wednesday ,  may 31 at 10 : 00 or 11 : 00 am est . the rest of the day is rather full .  please let me know if either time is convenient for you . if not , maybe we  could do it on june 1 - he is free most of the day with the exception of  12 : 30 - 2 : 00 est .  look forward to hearing from you .  thanks !  shirley crenshaw  administrative coordinator  enron corp . research  713 - 853 - 5290  email : shirley . crenshaw @ enron . com\",0\n\"Subject: enron in europe : emerging europe : enron plugs on in poland - - -  power market ' s vast . . .  vicek - sadzilem , ze moze bedziesz chcial to przeczytac .  pozdrowienia - jarek  - - - - - - - - - - - - - - - - - - - - - - forwarded by jarek astramowicz / war / ect on 2000 - 04 - 17  17 : 15 - - - - - - - - - - - - - - - - - - - - - - - - - - -  iona maclean  2000 - 04 - 13 08 : 23  to : jackie gentle / lon / ect @ ect , eric shaw / lon / ect @ ect , jarek  astramowicz / war / ect @ ect , brian stanley / eu / enron @ enron , philip  davies / lon / ect @ ect , ed cattigan / eu / enron @ enron , nigel  beresford / eu / enron @ enron , andrew morrison / lon / ect @ ect  cc :  subject : enron in europe : emerging europe : enron plugs on in poland - - - power  market ' s vast . . .  - - - - - - - - - - - - - - - - - - - - - - forwarded by iona maclean / lon / ect on 13 / 04 / 2000 07 : 23  - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron capital & trade resources corp .  from : djcustomclips @ djinteractive . com 13 / 04 / 2000  07 : 30  please respond to nobody @ maill . djnr . com  to : 96939 @ mailman . enron . com  cc : ( bcc : iona maclean / lon / ect )  subject : enron in europe : emerging europe : enron plugs on in poland  - - - power market ' s vast . . .  emerging europe :  enron plugs on in poland  - - -  power market ' s vast potential holds allure , but an uncertain future  - - -  after six years , profit from company ' s power operations remains years  away  by elizabeth williamson  04 / 13 / 2000  the wall street journal europe  9  ( copyright ( c ) 2000 , dow jones & company , inc . )  nowa sarzyna , poland - - from a small power plant humming among the  birches near the ukrainian border , enron corp . has staked its claim on  the polish energy market .  yet after six years , the company is still seeking a mother lode .  the houston - based energy producer and trader entered poland in 1994 ,  nabbed one of the first power - trading licenses to go to a foreign  company and began work on elektrocieplownie nowa sarzyna , poland ' s first  new , foreign - operated heat - and - power plant .  other companies followed , including electricite de france , rwe ag of  germany , vattenfall ab of sweden and tractebel sa of belgium .  the prize could be a rich one . all of these companies hope to profit  as poland sells its state energy assets and frees prices before joining  the european union .  a wholesale power bourse is due to open in warsaw in july . and the  country ' s transmission links to markets east and west could make poland  the power - trading hub of central europe .  but after six years in poland , enron has yet to earn a profit . net  income from nowa sarzyna , which is to begin commercial production later  this month , is at least five years away . power - trading operations might  generate profits next year , if the new bourse gets moving . but that is  \"\" one big question mark , \"\" says jarek astramowicz , enron poland ' s  president .  indeed , despite its promise , poland ' s energy sector remains a  sizzling tangle of aging plants , archaic market agreements and complex ,  shifting regulations .  enron , with $ 40 billion ( 41 . 69 billion euros ) in annual revenue , is  an innovator and an investment bellwether for its peers . but in a power  market as negatively charged as poland ' s , the company also is an example  of how shaky market conditions can keep even the savviest competitors  offline .  \"\" these are very large operations and to some extent they can bear  some risks , \"\" says pawel kaminski , energy - sector operations officer at  the world bank in warsaw . \"\" but eventually they have to generate some  return . \"\"  enron pioneered wholesale gas and electricity trading in the u . s . it  entered europe in 1989 , setting up in london as the u . k . ' s energy sector  liberalized . it entered the nordic market in 1996 , and today is the nord  pool ' s largest - volume trader .  enron says it takes about two years to find a site and obtain permits  for a power plant , and a further 29 months for construction .  just four years after entering the u . k . , enron finished its  1 , 875 - megawatt teesside plant . teesside ' s capacity and cost , at gbp 795  million ( 1 . 32 billion euros ) , are many times larger than nowa sarzyna ' s .  yet teesside was completed in only two - thirds the time . the company  declines to compare development times in various countries .  \"\" i wouldn ' t necessarily put poland into the same category as russia , \"\"  says philip davies , regulatory and government - affairs manager at enron  europe in london . \"\" but obviously , given poland ' s ( planned economy ) past ,  it probably takes a bit longer to work through the regulatory process  and get to the starting point . \"\"  at nowa sarzyna , it took enron nearly twice the usual time to reach  the starting point , even though mr . astramowicz already knew the site ,  and the polish power industry ' s rules .  the nowa sarzyna plant was mr . astramowicz ' s brainchild , and he  burned out the engine in his first bmw as he traveled between warsaw and  the town to craft the deal . a freelance energy - sector entrepreneur  before joining enron , mr . astramowicz sold his interest in nowa sarzyna  to enron in 1998 .  enron has spent $ 132 million to build nowa sarzyna , a 116 - megawatt ,  gas - fired combined heat - and - power plant . quiet , clean and efficient , the  plant stands in stark contrast to most of poland ' s belching , coal - fired  behemoths . when it starts up this month , it will sell its electricity to  the polish power grid , the country ' s high - voltage network , under a  20 - year power - purchase agreement , or ppa , that enron won in 1997 . steam  output goes to organika , the chemical company next door , and helps heat  the town of nowa sarzyna .  the nowa sarzyna plant is more than 80 % financed by commercial - bank  loans for which the only collateral is the plant ' s concluded contracts .  \"\" they were betting on their good name , \"\" says michael davies , a  partner with allen & overy , the warsaw law firm that advised enron  poland ' s lenders . \"\" they are pushing envelopes all the time . \"\"  that is especially true in a market with 30 % overcapacity , where an  energy law didn ' t even exist until 1997 .  says peter bisztyga , emerging europe utilities analyst at solomon  smith barney in london : \"\" because enron signed a ppa , they are ok . . .  ( but ) i ' m really not sure building nowa sarzyna was such a good idea . \"\"  mr . bisztyga says enron could have generated a faster return by  renovating an existing power plant . but , he acknowledges , nowa sarzyna  \"\" allowed enron to get into the polish market early and stamp their name  on it . \"\"  in 1994 , polish power plants weren ' t for sale . energy asset  privatization , discussed for years , began in earnest only this year . by  2002 , the polish government proposes to sell off stakes in dozens of  power plants , 33 distribution companies and the polish power grid , a  12 , 000 - kilometer national transmission network of high - voltage lines .  the assets have a total book value of 33 billion zlotys ( 8 . 4 billion  euros ) , but murky regulations have driven prices down .  \"\" the regulations don ' t promote competition and so you don ' t really  know the price of electricity , \"\" says bengt wegemo , president of  vattenfall poland . earlier this year , vattenfall paid $ 235 million for  55 % in warsaw - based elektrocieplownie warszawskie , promising $ 340  million in investment in the heat - and - power plant over the next 10  years .  investors hope the new power market will bring clarity over pricing .  ultimately , 170 licensed energy traders and 200 large power users will  trade on the bourse , setting the wholesale price of electricity . the  polish bourse will be modeled on its nordic counterpart . enron , the nord  pool ' s largest trader , hopes to post polish trading profits by 2001 .  but first , say market experts , poland ' s 1997 energy law must be  amended to ease functioning of the bourse , and free up access to  poland ' s distribution network .  further , the government says it must solve the competition problem  posed by the polish power grid ' s power - purchase agreements , which  account for 70 % of energy sales in poland . some state - owned plants used  the agreements as collateral to secure modernization financing . when  prices are freed , these plants might go bankrupt if forced to compete  with plants that didn ' t spend money to modernize .  the government is contemplating a special fund to compensate the  modernized plants for their extra costs . though nowa sarzyna is a  private plant , the price enron must charge for its power is about twice  what outmoded plants charge .  \"\" we are hoping that continuous , efficient operation of the plant will  generate us a ( bigger ) profit , \"\" mr . astramowicz says .  another problem is cross - border power trading , where contradictory  legislation essentially gives a monopoly to the polish power grid , also  known as pse . enron and others protest that pse shouldn ' t compete with  electricity - market participants who contract with it for transmission  service .  pse intends to stay in the trading business , says marek zerka , pse ' s  vice president . in late march , pse and local company kulczyk holding  signed an agreement with preussenelektra ag of germany to export  electricity and coal to eu countries via germany .  \"\" this is great news , \"\" mr . astramowicz says . \"\" if this joint venture  gets access to pse ' s cross - border transmission capacity . . . i would  expect pse to confirm open access to all market participants . \"\"  enron and others are pushing hard for that access . \"\" as soon as the  market becomes open , free and non - discriminatory , we will come out at a  decent profit , \"\" mr . astramowicz says .  folder name : enron in europe  relevance score on scale of 100 : 78  to review or revise your folder , visit http : / / www . djinteractive . com or  contact dow jones customer service by e - mail at custom . news @ bis . dowjones . com  or by phone at 800 - 369 - 7466 . ( outside the u . s . and canada , call 609 - 452 - 1511  or contact your local sales representative . )  copyright ( c ) 2000 dow jones & company , inc . all rights reserved\",0\n\"Subject: re : stanford check  paul ,  thanks a lot .  vince  from : paul racicot @ enron communications on 10 / 20 / 2000 06 : 03 am  to : stinson gibner / enron communications  cc : vince j kaminski / hou / ect @ ect  subject : stanford check  fyi  - - - - - forwarded by paul racicot / enron communications on 10 / 20 / 00 06 : 06 am  - - - - -  steven batchelder  10 / 19 / 00 04 : 36 pm  to : paul racicot / enron communications @ enron communications , sally  slaughter / enron communications @ enron communications  cc :  subject : stanford check  just wanted to let you know that the check went out fedex - priority  overnight . they should have it tomorrow morning .  the tracking number is 823038069157 and can be tracked at www . fedex . com  sally ~ per our conversation i will interoffice you the airbill slip .  if you need anything else , please let us know .  thanks .  steven batchelder  accountant  enron broadband services  713 - 345 - 9340  steven _ batchelder @ enron . net\",0\n\"Subject: off site with john griebling ' s optical network engineers  hi shirley , please give me a few dates form end of march to first week in  april to do an offsite for vince ' s direct reports ( including myself ) and  selected ebs research people . this includes , vince direct report from our  research group and the following people from ebs research :  ravi , stinson , samer , chinowee .  the agenda will include : research people giving several mini presentations on  trading , market development ( history of nat gas , electricity , etc . ) , pricing ,  etc . . .  john ' s people will do similar mini presentations on optical network  engineering , optical components , provisioning , telecom markets , pricing ,  etc . . . .  if scott yeager can make it , he will do his magic via quick motivational  speech on the vision of ebs , etc . .  it is will be strictly technical to technical professional meeting to get to  know each others group . so , do not include others unles stinson or i look at  the additions case - by - case .  john suggested scott yeager ' s summar house in denver for this event . please  follow this up with scott ' s assistant ( scott may not know about this if john  has not told him so you should explain the intend , etc . ) to get in touch with  scott . i ' ll cc this e - mail to give scott a heads up .  we can do half day friday and all day saturday . or , we can do the whole  weekend and people will have an option to bring family to nearby hotel  ( family expense in not on ebs ) . we will have to sort all this out when we  have a chance to talk to john & scott .  i just wanted to get the ball rolling but getting dates and place first .  thanks ,  ravi .\",0\n\"Subject: vince kaminski ' s itinerary - week of 9 / 30 - 10 / 7 / 00  professor martin :  attached is vince ' s itinerary . let me know if you need anything else .  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 09 / 27 / 2000  11 : 24 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  09 / 27 / 2000 10 : 45 am  to : \"\" john d . martin \"\" @ enron  cc : shirley crenshaw / hou / ect @ ect , vince j kaminski / hou / ect @ ect  subject : re : hello vince  john ,  i shall be in paris and london next week . we can schedule a call sometimes  next week . i shall ask my assistant to send you my itinerary . a late call  ( paris time )  would work for me . the time difference is 6 hours . this would mean a call  sometimes around 3 - 4 p . m . our time .  please , indicate which day works best for you .  vince  \"\" john d . martin \"\" on 09 / 27 / 2000 09 : 45 : 50 am  to : vince . j . kaminski @ enron . com  cc :  subject : re : hello vince  vince ,  good morning . unfortunately i ' ll be in milwaukee visiting harley - davidson  about a book revision project both thursday and friday . how about early  next week . i appreciate your patience with me . when you suggested a time  last week i was \"\" unprepared \"\" and embarassed to call and expose my  ignorance . since then i have re - read the enron gas services case and have  a pretty good feel for how you guys have melded the physical and financial  sides of the business . the other theme that i have heard many enron  speakers use is the \"\" de - regulation \"\" of markets . this certainly played a  factor in the power business and presumeably was behind the water business .  if you ' ll let me know when it ' s convenient to call next week i ' ll have some  notes put together . i ' m teaching a class for a colleague on monday so  anytime after that is great .  thanks and hope you had a pleasant trip .  john  p . s . i saw that the univ of new orleans has an energy finance endowed  chair for a financial economist open . if you ever decide to move back to  the life of poverty of an academic i would love to recommend you for such a  post .  at 08 : 26 am 9 / 27 / 00 - 0500 , you wrote :  >  > john ,  >  > what about thursday , 10 : 30 a . m . ? i have just come back from europe  > last night and i am trying to organize my schedule for the next few days .  >  > my phone number is 713 853 3848 .  >  >  > vince  >  >  >  >  >  >  > \"\" john d . martin \"\" on 09 / 22 / 2000 01 : 57 : 47 pm  >  > to : vkamins @ enron . com  > cc :  > subject : hello vince  >  >  > vince ,  >  > can i call you tuesday morning about our writing project ? i have to be in  > austin for a dental appointment on monday at noon and that will probably  > wipe out the day . give me a time and number where i can reach you .  >  > john  >  >  > john d . martin  > carr p . collins chair in finance  > finance department  > baylor university  > po box 98004  > waco , tx 76798  > 254 - 710 - 4473 ( office )  > 254 - 710 - 1092 ( fax )  > j _ martin @ baylor . edu  > web : http : / / hsb . baylor . edu / html / martinj / home . html  >  >  >  >  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: re : in confidence  steve ,  rac will be a bit unhappy about it . i think that bjorn will object to it .  let me talk to you tomorrow over the phone and discuss it .  the question is how to present it to rac in a such a way that  rodrigo will not be put in a bad light .  vince  steven leppard  11 / 06 / 2000 06 : 37 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : in confidence  hi vince  i ' ve had a chat with rodrigo lamas , who is a bit unhappy in his current role  in rac ( he wants to be a bit more proactive , and finds the inertia  frustrating ) . i would be very interested in bringing him into research with  responsibility for var / risk mgt , which is where his professional experience  lies . he also has a phd in optimization from imperial college london which  i ' m sure we can make use of .  there will obviously be some political issues involving such a move only 4  months into his career at enron , and if you ' re able then i ' m sure he ' d  appreciate a chat with you .  we ' re awaiting your response before rodrigo mentions this to anyone else .  steve\",0\n\"Subject: carnegie mellon team meeting  greetings , carnegie mellon recruiting team !  each of you has been chosen to represent enron for our fall 2000 recruiting  efforts at carnegie mellon university . as part of the team , you will be  challenged with choosing the best candidates from carnegie mellon ' s graduate  school to join our associate program .  our first campus event will be on september 15 and interviews will be held on  campus december 11 and 12 . i hope you are all able to participate in the  exciting process of recruiting young talent .  we will be more formally organising ourselves in the next couple of weeks .  currently , we are planning to have a brief team meeting in order to make  introductions , inform you about the associate program , and discuss the fall  recruiting calendar . to that end , please contact me with any questions or  comments you may have .  the team meeting date is set for august 31 st at 10 am in room 19 c 2 .  please rsvp to me as soon as possible .  i look forward to meeting you all soon .  sincerely ,  kristin gandy  associate recruiter  x 53214\",0\n\"Subject: iris mack  vince : i received a phone call yesterday afternoon from iris , with a special  request of you . she says that she will have to break her lease when she  comes to houston . she will have a three - month period during which she will  have to pay rent ( march , april and may ) , at the monthly rate of $ 1 , 175 . she  is asking if we would be willing to pay $ 3 , 525 to compensate her for this  extra expense .  i have a phone call in to the relocation department to find out how much cash  iris will be receiving from us under the normal relocation benefits , and will  let you know as soon as i hear from them . i would imagine that it is a  fairly substantial amount , since she is moving from california and since our  relocation benefit is very generous .  molly\",0\n\"Subject: professor bambos ' visit  shirley :  professor bambos has the following appointments :  jim fallon 9 : 00 am - 9 : 30 am per fallon ' s assistant lucy marshall - ext .  34525  john echols 2 : 00 pm - 2 : 30 pm per echols ' assistant jo olsovsky - ext . 58064  enron tour 2 : 30 pm - 3 : 30 pm per courtney votaw - ext . 39390  anita\",0\n\"Subject: re : introduction meeting : rac london quants and houston research  rodrigo ,  i think it is churrasco ' s , a south american restaurant .  i shall make reservations for the 12 th . i shall also  arrange the meetings on tuesday with different units of the research group .  vince  rodrigo lamas  08 / 24 / 2000 01 : 59 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : introduction meeting : rac london quants and houston research  vince ,  thank you very much .  i would rather talk to your group on sep the 12 th ( tuesday ) .  i hope i will be entitled to disturb them again during the rest of the week  as well .  we can certainly go out for dinner . steven mentioned a brazilian restaurant he  went to and i am looking forward going there . this in case you are not  vegetarian .  thanks again ,  rodrigo  vince j kaminski  24 / 08 / 2000 19 : 54  to : rodrigo lamas / lon / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : introduction meeting : rac london quants and houston research  rodrigo ,  we shall be very glad to meet you .  if you can dedicate one day to meeting the members of the research group i  could arrange a series of meetings with different units .  what about sep the 11 th or sep the 12 th ( monday or tuesday ) ?  if you are free one evening we can have dinner together .  vince  rodrigo lamas  08 / 24 / 2000 11 : 01 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : introduction meeting : rac london quants and houston research  vince ,  i work for the market risk rac london group . i review the quantitative issues  arising from enron europe models .  i am in this function given my background ( phd from imperial college - london )  and also due to my past experience  as risk manager for a brazilian investment bank and louis dreyfus .  my agenda includes the review of a number of deals ( wessex , tpl , eastern ,  . . . ) , as well as the  review of the construction of european gas and power price curves and their  respective volatility curves .  currently i am devoting most of my time to the analysis of the uk gas market ,  its respective  price curve and term structure of volatility .  bjorn and david suggested it could be very productive if i had the chance to  meet you and your team  to discuss issues related to modelling prices and risk measurement tools .  i will be in houston from the 10 th to 15 th september . i wonder if you could  book some time for me in  your agenda and also ask some members of your team to do the same .  thanks ,  rodrigo\",0\n\"Subject: 2000 expenses  as you all know the deadline for 2000 invoices to ap was on friday , december  15 , 2000 . in order to get all 2000 expenses accounted for in 2000 , i need an  e - mail from you with name of the vendor , amount , cost center to be billed to ,  contact person ( if any ) . some of the costs to consider : services provided  to enron in 2000 but we have not receive the invoices , employee expense  reports , and / or any purchases we made in 2000 , but have not submit the  invoices to ap by the cutoff date . i need this information by noon friday ,  december 29 , 2000 . if you have any questions , call me at 5 - 7094 . thanx  irma , kristi and ramona ,  will you make sure everyone in hr department know the deadline . thanx .\",0\n\"Subject: day rate hedge  vince ,  included is the rest of the prices for 4 th and 5 th generation  semi - submersibles in the gulf of mexico . the only additional data is from  sept 99 through dec 99 .  chris and i look forward to your analysis on tuesday .\",0\n\"Subject: re : greetings  frank ,  thanks for your message .  see you in houston and happy holidays .  vince  frank qian on 12 / 19 / 2000 11 : 56 : 14 pm  to : vince . j . kaminski @ enron . com  cc :  subject : greetings  dear mr . kaminski :  i am very glad to be slected for the 2 nd round interview at enron . it will  be at the end of january . i look forward to seeing you again and meeting  other people of research group .  have a happy holiday and new year !  frank\",0\n\"Subject: reviewer approval  please note that your employees have suggested the following people to  complete a feedback form on their behalf . you will need to access the  performance management system ( pep ) to either approve or decline these  suggested reviewers . once you have approved the suggested reviewers they  will be notified and can begin completing the feedback form .  your list of employees that have suggested reviewers are listed below :  date suggested : jun 09 , 2000  feedback due date : jun 16 , 2000  employee name : roberts , michael a\",0\n\"Subject: fw : meeting follow - up  dan sent this information as a follow up to our meeting this week . if there  is any additional information you would like to see , please let me know .  in the absense of any objections , i would like to begin having our analysts  use the financial stress score to underwrite small exposures where financial  statements are not received . in addtion to saving some expense , this will  allow greater consistentency . and moving forward , i believe we can map  expected defaults from fstress score ranges to those implied in credit  spreads , and in doing so map to e - ratings for use in credit reserve  analytics . i ' ve had prelimiary discussions with rabi and amititava regarding  this .  any additional insights would be helpful , and thanks for your help .  - - - - - original message - - - - -  from : \"\" barry , dan \"\" @ enron  on . com ]  sent : thursday , march 15 , 2001 10 : 26 am  to : mark _ wilson @ enron . com  cc : marcom , karen ; johnson , judy  subject : meeting follow - up  mark ,  attached are a presentation on the financial stress score and the countries  that have risk scores available today . please let me know if you have any  questions .  in response vince ' s question regarding false positives from the model , that  is a little difficult to answer . the model is predicting the likelihood of  a company experiencing financial distress . we are not saying that all  companies with a high risk score will experience financial distress . in  other words , it is not really a yes or no proposition . it ' not like a drug  test where the test either comes back positive or negative and ocassionally ,  you get a false positive test result . we are identifying companies that are  at high risk for failure . some of those high risk companies will fail and  some will not fail . how many in each classification that will ultimately  fail is addressed in the performance charts attached below .  please let me know if you have any other questions or need any additional  information .  dan barry  dun & bradstreet  analytical services  barryd @ dnb . com  phone ( 713 ) 953 - 5458  fax ( 713 ) 953 - 5454  > > >  >  - enron fss . ppt  - globalfailure . ppt  - fin stress understanding . doc  - fss performance . doc\",0\n\"Subject: benefits - personal days  good morning all :  the question has arisen as to whether enron has \"\" personal days \"\" , that ,  you can take in case of repair problems at home ; car problems ; sick spouse ,  sick child , etc .  i checked with hr and the policy manual and the answer is \"\" no \"\" , but they  can be designated at the discretion of the supervisor . i talked this over  with vince and he has decided that the research group will be allowed  two ( 2 ) personal days per year to take care of personal business and  not have to take a vacation day , discretionary day , or leave of absence .  if you have advance notice ( such as an air conditioner repair scheduled ) ,  please let me know when you are going to take these days . if an  emergency arises with no notice , please call in and let me know that you  are taking a personal day . it will be coded on your time sheet .  these two personal days will in no way cancel or take the place of , \"\" funeral  leave \"\" , \"\" family leave \"\" , or \"\" civic duty leave \"\" . they are just a way of being  able to take care of repair problems and other personal problems that arise .  these should be very beneficial and i am sure very much appreciated by  all of us .  if you have any questions , please call me .  shirley  3 - 5290\",0\n\"Subject: restructuring today - 6 / 23  mark ,  please , tale a look at the attached newsletter . an interesting story on  gaming cal  px . let me know if you have problems opening the document .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 06 / 23 / 2000  05 : 45 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  energy info source on 06 / 23 / 2000 07 : 24 : 22 am  to :  cc :  subject : restructuring today - 6 / 23  energy info source - http : / / www . energyinfosource . com - is privileged to  make available to you a free trial subscription to restructuring today  until july 11 .  restructuring today is the leading daily trade newsletter focused solely  on the deregulation , restructuring and convergence of the electric , natural  gas and telecommunications industries , with a special focus on emerging  markets .  you do not need to do anything to continue to receive this trial . however ,  if you do not want to receive any more trial issues , please reply to us  and with the word \"\" cancel \"\" in the subject line .  restructuring today has distinctive industry news and analysis which energy  info source can ' t deliver from the wire services , and at only $ 487 ( regular  price for an individual subscription ) for 250 issues each year , we consider  it a bargain . as a special offer to energy info source users , restructuring  today is offering $ 50 off the regular subscription price .  act before july 14 to receive your $ 50 off !  check out the attached sample , and if you ' d like to order an annual  subscription ,  choose your favorite way :  - hit reply and fill out the subscriber information below .  - for fastest service call 888 - 986 - 2250 today !  - there ' s a handy subscription coupon on the last page of each issue of  restructuring today .  for credit card orders , please use the subscription coupon in the back  of the sample issue or call 888 - 986 - 2250 .  for more information , feel free to email us at custsvc @ energyinfosource . com  or call us at 888 - 986 - 2250 .  requires acrobat reader 3 . 1 or higher . the latest version is available  free at :  - - - - - - - - - - - - - - - - - - - - - -  please begin my subscription to restructuring today right away !  name :  title :  company :  billing address :  address cont . :  city :  st :  zip :  country : usa  phone :  fax :  email address :  [ ] bill me  [ ] call me for my credit card information  - rto 00623 - eis . pdf\",0\n\"Subject: enside draft  here is the version with my modifications over mike ' s version . please feel  free  to make modifications / corrections .  osman\",0\n\"Subject: default rates  please see below for my note to jeremy at the bottom and his reponse . i  have placed mark ruane ' s yields against a mid november default frequency  table . note there may be a slight shearing in dates , but the concept is  more important :  market implied cumulative default rates ( % ) :  1 year 5 year 10 year  aaa 0 . 51 5 . 74 14 . 54  aa 0 . 67 6 . 39 16 . 61  a 0 . 98 8 . 98 21 . 03  bbb 1 . 17 9 . 88 22 . 39  bb 3 . 27 18 . 62 37 . 51  b 4 . 65 24 . 21 46 . 27  s & p historical default rates ( % ) :  1 year 5 year 10 year  aaa 0 . 00 0 . 13 0 . 67  aa 0 . 01 0 . 33 0 . 90  a 0 . 04 0 . 47 1 . 48  bbb 0 . 21 1 . 81 3 . 63  bb 0 . 91 8 . 82 14 . 42  b 5 . 16 20 . 95 27 . 13  in looking at the one - year transition rates as a very rough proxy for how  many more defaults occur in a recession ( 1991 ) versus average ( 1981 - 1999 )  historical default rates ( % ) :  investment grade non - investment  grade  avg . 1981 - 99 0 . 07 4 . 21  1991  0 . 12 10 . 40  multiple 1 . 7 x  2 . 5 x  looking at where the market implied default rates divided by the historicals  default rates to obtain a \"\" multiple \"\" ( how much more severe than historical ) :  1 year 5 year 10 year  aaa infinite 44 . 2 x 21 . 7 x  aa 67 . 0 x 19 . 4 x 18 . 5 x  a 24 . 5 x 19 . 1 x 14 . 2 x  bbb 5 . 6 x 5 . 5 x 6 . 2 x  bb 3 . 6 x 2 . 1 x 2 . 6 x  b 1 . 1 x 1 . 2 x 1 . 7 x  on the 10 year historical figures , we need to be careful as the s & p static  pool figures show a definite seasoning ( lower defaults in late years probably  due to prepayment ) versus our contracts . secondly , the s & p figures have  withdrawn ratings , which usually mean they are stale , but loosing some  information content .  i will ask emy to set up a meeting to discuss further .  - - - - - - - - - - - - - - - - - - - - - - forwarded by michael tribolet / corp / enron on 12 / 11 / 2000  07 : 06 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : jeremy blachman @ ees on 12 / 10 / 2000 07 : 21 am  to : michael tribolet / corp / enron @ enron  cc :  subject : default rates  thanks . i would strongly suggest an offsite sooner than later with a handful  of the right people so that we can step back and design the right  architecture for looking at credit in our deals . it is broken , not clear ,  killing our velocity and true capabilities . we also need to look at staffing ,  skills sets , the credit reserve model etc . perhaps you should take a crack at  an agenda .  - - - - - - - - - - - - - - - - - - - - - - forwarded by jeremy blachman / hou / ees on 12 / 10 / 2000  07 : 08 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  michael tribolet @ enron  12 / 09 / 2000 03 : 51 pm  to : jeremy blachman / hou / ees @ ees  cc :  subject : default rates  i visited with vince kaminski for about 20 minutes today regarding the market  implied defaults rates and the disconnect in investment grade land . he is  seeing the same anomaly and agreed that we as a company need to revisit the  methodology employed in calculating the implied figures . i will follow  through and report back .\",0\n\"Subject: re : resume ,  thanks a lot ,  and just let me know the schedule afterwards . . .  jinbaek  jinbaek kim  ph . d candidate  dept . of industrial engineering and operations research  u . c . berkeley  http : / / www . ieor . berkeley . edu / ~ jinbaek  go bears !  : \"\" ' . _ . . - - - . . _ . ' \"\" ; ` . . ' . ' ` .  : a a : _ _ . . . . . _  : _ . - 0 - . _ : - - - ' \"\" \"\" ' \"\" - . . . . - - ' \"\" ' .  : . ' : ` . : ` , ` .  ` . : ' - - ' - - ' : . ' ; ;  : ` . _ ` - ' _ . ' ; . '  ` . ' \"\" ' ;  ` . ' ;  ` . ` : ` ;  . ` . ; ; : ;  . ' ` - . ' ; : ; ` .  _ _ . ' . ' . ' : ; ` .  . ' _ _ . ' . ' ` - - . . _ _ _ . _ . ' ; ;  ` . . . . . . ' . ' ` ' \"\" \"\" ' ` . ' ; . . . . . . - '  ` . . . . . . . - ' ` . . . . . . . . '  on tue , 24 oct 2000 vince . j . kaminski @ enron . com wrote :  >  > jinbaek ,  >  > we shall invite you to an interview in houston .  >  > vince  >  >  >  >  >  > jinbaek kim on 10 / 23 / 2000 07 : 25 : 36 pm  >  > to : vkamins @ enron . com  > cc :  > subject : resume ,  >  >  > dear mr . kaminski ,  >  > hi ,  > i am a ph . d student at ieor department at u . c . berkeley .  > thanks for your presentation today .  > it gave me knowledge and interest in electricity markets ,  > and your company .  > as you mentioned in the presentation ,  > i send a resume to give me opportunity to learn more  > about your company .  > i hope i can join the super saturday event .  >  > jinbaek  >  >  > ( see attached file : resume . doc )  >  >  >\",0\n\"Subject: mid - year 2000 performance feedback  note : you will receive this message each time you are selected as a reviewer .  you have been selected to participate in the mid - year 2000 performance  management process by providing meaningful feedback on specific employee ( s )  that have been identified for you . your feedback plays an important role in  the performance management process , and your participation is very critical  to the success of enron ' s performance management goals .  please provide feedback on the employee ( s ) listed below by accessing the  performance management system ( pep ) and completing an online feedback form as  described in the \"\" performance management quick reference guide \"\" . you may  begin your feedback input immediately . please have all feedback forms  completed by the date noted below .  if you have any questions regarding pep or your responsibility in the  process , please call the pep help desk at the following numbers :  in the u . s . : 1 - 713 - 853 - 4777 , option 4  in europe : 44 - 207 - 783 - 4040 , option 4  in canada : 1 - 403 - 974 - 6724 ( canada employees only )  or e - mail your questions to : perfmgmt @ enron . com  thank you for your participation in this important process .  the following list of employees is a cumulative list of all feedback  requests , by operating company , that have an \"\" open \"\" feedback status . an  employee ' s name will no longer appear once you have completed the feedback  form and select the \"\" submit \"\" button in pep .  review group : enron  feedback due date : jun 16 , 2000  employee name supervisor name date selected  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  ahmad , anjam dale surbey may 22 , 2000  carson , margaret m james d steffes may 26 , 2000  crenshaw , shirley j wincenty j . kaminski may 24 , 2000  ghosh , soma timothy davies may 31 , 2000  vernon , clayton j vasant shanbhogue may 26 , 2000  yuan , ding richard l carson jun 02 , 2000  zipter , rudi c theodore r murphy may 25 , 2000\",0\n\"Subject: re : pre - submitted question on espeak  erin ,  a book by martha amram and nalin kulatilaka is an excellent  non - technical introduction to real options and it contains all the most  important  references to more advanced books and papers .  the book has an endorsement by jeff skilling on the cover page .  the research group offered several one - day seminars on real options  and applications to the energy industry . we still have a few binders with  the presentation materials available if you are interested .  we plan to repeat the seminar sometimes in the fall .  the first part of the seminar ( about 4 hours in the morning ) covers general  concept of real options  and their applicability to the energy business .  the second , more technical afternoon session , covers stochastic processes used  to model price uncertainty in the energy markets and specific case  studies ( valuation of natural gas storage facilities and of peaking gas - fired  power plants ) .  the real options approach has been developed specifically to address the  problem of making  investment decisions under uncertainty . nobody in this field claims that this  is a  perfect tool , but it represents a significant progress compared to other  techniques developed  earlier .  discounted cash flow analysis that tries to incorporate uncertainty through  analysis of several , in most cases , arbitrary scenarios ( most likely ,  optimistic ,  pessimistic ) . these scenarios don ' t identify explicitly the risk drivers  and don ' t specify the future proactive management decisions .  the real , option approach is very powerful because it allows to ( 1 ) capture  uncertainty in an explicit way and ( 2 ) to design investment projects that  allow to exploit future positive developments and reduce future exposures to  downside risk .  this approach allows also create a link between investment decisions and  future  operational decisions . forward - looking investment decisions create options  that are exercised  in the future through active management of a project .  the real options technology relies heavily on advanced statistical tools to  come  up with the representation of future possible states of the world . the real  challenge is  to use these tools in a sensible way . i have seen in my career ( almost 30  years  of applying mathematical tools to business and economic problems ) many quants  armed with  powerful computers who reminded me of monkeys armed with hammers . the  challenge is not  to run mechanically thousands of simulations based on arbitrary assumptions  but to translate in a creative way the insights of people who understand  specific businesses  into parsimonious quantitative models . it is especially critical to  stress - test the assumptions  of any model and to ask the question if the outcome of a model depends  critically on any set of assumptions .  if this is the case one should use common sense to examine the underlying  assumptions .  i remember that in the early eighties quite a few models simulated the  dynamics of oil prices ,  but all the stochastic scenarios represented fluctuations around a very  optimistic upward trend .  one would have been better off stepping back and asking a simple question  what economics 101  teaches about cartels and the dynamics of supply and demand .  enron north america corp .  from : erin rice @ enron 06 / 27 / 2000 03 : 52 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : pre - submitted question on espeak  good news ! there is already a question waiting for your july 12 espeak  session . i have pasted it below , although you don ' t have to respond until  the actual event . don ' t forget to send a bulleted list of discussion topics  if you would still like us to advertise the event on the elevator screens .  thanks .  - er  submitted by breineck  i was doing some reading about the application of real options in the  evaluation of non - financial assets . would you recommend any texts or articles  for a  more in - depth study of this area ? is quantification of risk or uncertainty  the major challenge in using this concept ? can statistical tools be used with  this to do  a sort of sensitivity analysis ?\",0\n\"Subject: move on may 30 th  please note : the weather team will move on may 30 th .  we will return to our location near the kitchen eb 3240 however ,  each person in the group will have a desk in the area .  we will know longer be in separate locations .  mike roberts eb 3240 a  jose marquez eb 3240 b  kevin moore eb 3240 c  vince kaminski eb 3240 d  patricia tlapek eb 3240 e  sam smith eb 3240 f  elena chilkina eb 3240 g  please pack your desk on tuesday for the churn tuesday night .  if you did not sit in this area listed above before , space is limited .  please label all boxes , telephones , computers , etc .  thanks  kevin moore  any questions please call kevin moore x 34710\",0\n\"Subject: title  dear mr . kaminski ,  ?  i hope i got your title right . i looked everywhere for it and i could not  find it . in one of the numerous discussions i had with professor shreve  about you i remember having heard \"\" head of research \"\" . . . probably energy , but  that i could not recall . is this ok ? also i would like to have the title of  the conference , it is useful !  ?  finnally , there is a request for your e - mail by a phd student , do you allow  me to provide this info ?  ?  ?  sincerely ,  ?  pierre - philippe ste - marie  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  pstemarie . homestead . com\",0\n\"Subject: impending visit  vince :  i sent you an email a couple of days ago to inquire if we might get together  at your offices on july 5 or july 7 in houston to follow up our earlier  discussions . i notice i have two email addresses for you , so i am sending  this to both . i am not sure the earlier transmission got to you .  would you be available the afternoon of the 5 th or the morning of the 7 th to  continue our earlier discussions ? give me an email or phone shout at  650 . 218 . 3069 .  thanks  dale nesbitt\",0\n\"Subject: larry thorpe  hi vince ,  been meaning to ask for your input about larry thorpe ' s proprietary model for  electricity returns . i have not been able to get much information about the  parameters as larry says the nature is proprietary . it is hard to make a  judgement about its usefulness without such information .  larry ' s e - mails to me indicate that he is working on npl 5 real time prices  and he promises to share the results with us . please advise on direction to  take as i am not quite sure about the model without further information .  separately , larry indicated that you had promised him some data and would  like to know if you have forwarded it to him . i can convey your position to  him .  thanks .\",0\n\"Subject: financial maths course , part 2  vince ,  just in case , here is a draft copy of the event for you to refer to .  paul  - finmathmail . doc\",0\n\"Subject: re : uc - berkeley graduate student  molly ,  i would like to invite this student for an interview ,  sometimes in late december when things slow down .  interviews with all my direct reports and george hopley .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 30 / 2000  09 : 59 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  10 / 24 / 2000 04 : 07 pm  to : rajnish kamat @ enron  cc : vince j kaminski / hou / ect @ ect  subject : re : uc - berkeley graduate student  rajnish ,  we shall invite you for an interview in houston .  vince  rajnish kamat on 10 / 23 / 2000 07 : 55 : 31 pm  to : vkamins @ enron . com  cc :  subject : uc - berkeley graduate student  dr . vincent kaminski  managing director and head of research  enron corp .  dear dr . kaminski ,  it was a pleasure talking with you and attending your talk today .  i am a graduate student in industrial engg . and operations  research working with prof . shmuel oren  on topics in financial instrument pricing and design of  contracts in deregulated electricity markets . i am also  doing research in auction models and computable equilibrium  models with applications in electricity market design .  i am planning to graduate with a ph . d . in may 2001 and would  appreciate hearing about any opportunities in your group at enron .  i am attaching at copy of my resume ( file : cvrkamat . doc ) for your perusal .  thanking you ,  sincerely ,  rajnish kamat  graduate student  ieor , uc - berkeley  4135 , etcheverry hall  dept . of industrial engineering and operations research  university of california at berkeley  berkeley , ca , 94710  - cvrkamat . doc\",0\n\"Subject: re : monday aug . 7  stinson ,  no problem .  vince  stinson gibner  08 / 02 / 2000 12 : 51 pm  to : vince j kaminski / hou / ect @ ect  cc : shirley crenshaw / hou / ect @ ect  subject : monday aug . 7  vince ,  may i take a vacation day next monday , aug . 7 th ?  thanks ,  stinson\",0\n\"Subject: year end 2000 performance feedback  note : you will receive this message each time you are selected as a reviewer .  you have been selected to participate in the year end 2000 performance  management process by providing meaningful feedback on specific employee ( s ) .  your feedback plays an important role in the process , and your participation  is critical to the success of enron ' s performance management goals .  to complete requests for feedback , access pep at http : / / pep . corp . enron . com  and select perform review under performance review services . you may begin  providing feedback immediately and are requested to have all feedback forms  completed by friday , november 17 , 2000 .  if you have any questions regarding pep or your responsibility in the  process , please contact the pep help desk at :  houston : 1 . 713 . 853 . 4777 , option 4  london : 44 . 207 . 783 . 4040 , option 4  email : perfmgmt @ enron . com  thank you for your participation in this important process .  the following is a cumulative list of employee feedback requests with a  status of \"\" open . \"\" once you have submitted or declined an employee ' s request  for feedback , their name will no longer appear on this list .  review group : enron  feedback due date : nov 17 , 2000  employee name supervisor name date selected  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  andrews , naveen c rudi c zipter oct 31 , 2000  baxter , ashley david davies nov 02 , 2000  campos , hector o peyton s gibner nov 06 , 2000  carson , richard l richard b buy oct 30 , 2000  crenshaw , shirley j wincenty j kaminski oct 26 , 2000  kindall , kevin vasant shanbhogue oct 30 , 2000  lamas vieira pinto , rodrigo david port oct 31 , 2000  raymond , maureen j wincenty j kaminski nov 02 , 2000  supatgiat , chonawee peyton s gibner oct 27 , 2000  tamarchenko , tanya v vasant shanbhogue oct 26 , 2000  villarreal , norma e sheila h walton oct 26 , 2000  walton , sheila h david oxley oct 27 , 2000  yaman , sevil vasant shanbhogue oct 27 , 2000  yuan , ding richard l carson oct 31 , 2000\",0\n\"Subject: bollerslev seminar  vince :  i don ' t know if you noticed that we have tim bollerslev on the seminar  schedule for december 8 . in order for tim to get back to north carolina on  friday , we need to move the seminar time . i thought that the enron folks  might be interested in his talk so i wanted to get you input on a new  time . i know that 3 : 30 is best but would over the noon hour be second best  or would 2 : 00 be better ?  thanks .  bbo\",0\n\"Subject: re : aiesec polska - eurolds 2000  drogi panie andrzeju ,  probuje skontaktowac sie z jarkiem astramowiczem , by znalezc sposob  dofinansowania waszej imprezy .  jedyna mozliwosc , by to zrobic jest poprzez enron poland . mnie byloby  bardzo trudno usprawiedliwic to z mojego budzetu .  w . kaminski  \"\" andrzej wodnicki \"\" on 02 / 16 / 2000 02 : 50 : 05 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : aiesec polska - eurolds 2000  szanowny panie kaminski !  nazywam sie andrzej wodnicki i jestem czlonkiem stowarzysznia studentow  aiesec przy szkole glownej handlowej ( dawnej sgpis ) .  prosze o poswiecenie paru chwil na przeczytanie tego maila .  ( kontakt do pana otrzymalem od kolegi , ktory organizowal prezentacje firmy  enron na sgh , a posrednio od pana jarka astramowicza , przedstawiciela enron  na polske . )  w imieniu aiesec polska chcialbym zwrocic sie do pana z wielka prosba pomocy  przy wydarzeniu , ktore w tym roku organizujemy .  aiesec polska , a w szczegolnosci aiesec przy szkole glownej handlowej ma  zaszczyt organizowac w tym roku european leadership development seminar . jest  to seminarium na temat przywodztwa skierowne do obecnych i przyszlych  czlonkow rad wykonawczych komitetow lokalnych aiesec w calej europie .  po raz pierwszy aiesec polska ma mozliwosc organizacji takiego wydarzenia i  stanowi ono dla nas olbrzymie wyzwanie .  przygotowywalismy sie do niego od kilku lat i obecnie jestesmy juz w koncowej  fazie organizacji eurolds 2000 .  projekt rozpoczyna sie 7 marca 2000 roku oficjalnym otwarciem przez pana  prezydenta aleksandra kwasniewskiego w sali kongresowej . pozniej odbeda sie  dyskusje panelowe ( udzial wielu znakomitych gosci - m . in jan krzysztof  bielecki , jacek saryusz wolski , andrzej olechowski ) oraz wyklady i  prezentacje regionow polski w auli spadochronowej szkoly glownej handlowej , a  nastepnie delegaci udadza sie do hotelu mrongovia na szkolenia , casy i  wyklady na temat przywodztwa . ( szczegolowy program eurolds 2000 przesylam w  zalaczniku . )  jak do tej pory staralismy sie mozliwie najwiecej dokonac wlasnymi silami ,  jednak obecnie na 3 tygodnie przed tym wydarzeniem stoimy przed pewnym  problemem i stad tez pojawil sie pomysl skontaktowania pana , jako osoby ,  ktora moglaby nam wydatnie pomoc .  chcielibysmy poprosic pana o wsparcie finansowe .  wspolpracujemy juz z wieloma firmami i instytucjami ( m . in . deloitte & touche ,  arthur andersen , fundusz phare , fundacja konrada adenauera oraz wieloma  innymi ) , jednak na obecnym etapie organizacji projektu wciaz brakuje nam  12000 $ .  poczatkowo chcielismy nawiazac kontakt z pania eileen price z londynu , jednak  wydaje nam sie , ze pan jako zalozyciel aiesec w polsce powienien po pierwsze  o takim wydarzeniu wiedziec , a po drugie mamy nadzieje , ze moze nam pan pomoc .  bardzo prosze o odpowiedz ,  z powazaniem  andrzej wodnicki  prezydent eurolds 2000  aiesec szkola glowna handlowa  - attl . htm  - eurolds _ prezentacja . ppt\",0\n\"Subject: f / up  sheila ,  i am forwarding you a message i received a few days ago . i want to ask you  for advice how to handle this case .  my first reaction was to ignore it . the longer i think about it , the more  convinced i become that some action  is required .  let ' s try to reverse the situation and assume for the sake of argument that a  female employee  was harassed by a male colleague . an employee informs her boss a few months  later about  the alleged incident and the boss chooses to ignore it . in many similar  cases , courts subsequently  found against the companies that decided to turn a blind eye to such  complaints .  the fact that we are dealing with the case of reverse harassment is  immaterial .  if i ignore this complaint i may expose the company to charges of double  standard in  handling sexual harassment cases .  my recommendation would be to ask maureen to attend sensitivity training and  sexual harassment prevention class .  please , let me know what you think . sorry to burden you with this case .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 12 / 29 / 2000  11 : 01 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  clayton vernon @ enron  12 / 21 / 2000 03 : 51 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : f / up  vince -  i got your message ( i was up on the roof of the building helping to fix the  weather satellite dish - what a gorgeous view of houston ! ) .  i appreciate your words . everything remains fine , vince . you are my \"\" father \"\"  here at enron , and i admire and respect you greatly . i think i know the kind  of person you are , in terms of your integrity , and i admire the high  standards you set for all of us in your extended \"\" group . \"\"  i want to let you know i am not the only one in the group who doesn ' t  appreciate the way maureen disrespects you . you remain the key external  factor in their success - it is not simply their own abilities that matter to  their futures but your own - vince ' s - success with upper management that  matters .  we respect you , and we don ' t like it when you are disrespected . maureen  didn ' t disrespect me today , vince , she disrespected you .  it ' s time i told you something . last april , maureen , highly intoxicated  following a work - related function at ninfa ' s , made an unsolicited predatory  sexual advance on me at my desk on the 19 th floor . i was shocked and  disgusted , but i didn ' t say one word about this , vince , because i played it  out and didn ' t want to put you into the position of having a raving maureen  in your midst as you perhaps had to fire her and then endure a litany of  gender - bias crap lawsuits .  i \"\" took one for the team , \"\" vince . i can ' rt say i would do it again - maureen  is brazen to berate me after what she did , in public no less .  i appreciate your bringing me into enron . i ' ve found a respectful and ,  indeed , a loving work environment . i remain willing to do whatever i can to  help the group .  clayton\",0\n\"Subject: transportation for m . gillis and g . whitaker for post presentation  celebration at enron box at enron field  hi judith !  i have a special parking ticket for malcolm and gil to use in dr . gillis ' s car . then , i ' ll have a car pick up gil when he ' s ready to leave the game - - we ' ll take care of everything ( thanks for offering ) - - we ' re really looking forward to the event !  best regards for a great weekend !  - - christie .  - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 05 / 04 / 2001 04 : 10 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  judith duvall on 05 / 04 / 2001 02 : 09 : 26 pm  to : christie . patrick @ enron . com  cc :  subject : re : rice alp final presentation and post presentation celebration at enron box at enron field  christie :  could you please fill me in on the logistics ? dr . gillis and gil whitaker  will  be at the apl project presentation at enron at 4 p . m . . further , they both  plan  to attend the dinner at enron field . however , dr . gillis must skip the  game due  to an early morning breakfast the next day . will you provide special parking  at the dinner / game ? i think dr . g and gil will go together , then i will have  dr . gillis picked up by limo , at approximately 8 : 00 p . m . does this sound  feasible ?  judith duvall  at 10 : 00 am 5 / 4 / 01 - 0500 , you wrote :  > hi friends !  >  > the big rice - alp final presentation day is almost here : monday , may 7 th ,  > 4 pm , at enron , 1400 smith . please come to the enron lobby and ask for  > me or my assistant , melinda mccarty .  >  > after the presentation , you are cordially invited to dinner and an astro ' s  > game ( vs phillies ) at the enron box at enron field . as participation in  > the enron box at enron field is limited to this special invitation list  > only , please confirm your attendance via return email , or via voice mail to  > me at 713 - 853 - 6117 asap .  >  > we ' re very excited about the work the rice alp team has done and we ' re all  > greatly looking forward to the presentation .  >  > hope to see everyone monday ! !  >  > best regards !  >  > - - christie .  >  >  >  judith duvall  secretary to the president  rice university  6100 main street - - msl  houston , tx 77005  713 / 348 - 4601  713 / 348 - 5271 ( fax )\",0\n\"Subject: re : liquids limits oct . 20  john :  i will be here most of the week , and am looking forward to working with niamh  c . i will also check the availability of people in vince k . group as well as  naveen andrews in ours .  regards  bjorn h .  john l nowlan  24 / 10 / 2000 10 : 32  to : bjorn hagelmann / hou / ect @ ect  cc : ted murphy / hou / ect @ ect  subject : re : liquids limits oct . 20  bjorn , niamh clarke is going to come to houston from mon afternoon to friday  next week to work on nvar . she developed var models for mitsubishi and has  lots of experience in this area . can you please provide her with the best  people we can from research and rac so we can try and get a better  understanding and more confidence in our model . i ' m sure you agree with me  that if my group is going to make any progress we need to get this sorted .  thanks in advance .  - - - - - - - - - - - - - - - - - - - - - - forwarded by john l nowlan / hou / ect on 10 / 24 / 2000 09 : 51  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : bjorn hagelmann  10 / 24 / 2000 07 : 31 am  to : john l nowlan / hou / ect @ ect  cc : scott earnest / hou / ect @ ect  subject : re : liquids limits oct . 20  i think we need to sit down and talk about developing reporting that will  show the risk in the books . at this point and time it can be derived , but  only if you know what to look for . i would appreciate if you had some time to  do so .  regards  bjorn h  john l nowlan  23 / 10 / 2000 13 : 10  to : christian lebroc / corp / enron @ enron , scott earnest / hou / ect @ ect , bjorn  hagelmann / hou / ect @ ect  cc :  subject : re : liquids limits oct . 20  looking at these numbers i think the var model must be waaaaaaaaaay over  calcing something , most likely the spreads . the net and outright product  position are negligible . seems it would take one hell of a daily move to  loose 12 . 7 on these positions .\",0\n\"Subject: re : rice course  thank you , see you this evening .  dennis loughridge  > from : vince . j . kaminski @ enron . com  > to :  > subject : re : rice course  > date : wed , 28 feb 2001 17 : 36 : 59 - 0600  >  >  > dennis ,  >  > no problem .  >  > vince  >  >  >  >  >  > \"\" dennis w . loughridge \"\" on 02 / 28 / 2001  > 04 : 24 : 35 pm  >  > please respond to  >  > to :  > cc :  > subject : rice course  >  >  > vince  > i am an adjunct professor at rice , working with wil uecker in executive  > education . with your concurence , i would like to sit in your energy  > derivatives course . i understand from wil that there are 38 students  > registered for the course . if you consent , would you let me know what  > material i need .  > thank you ,  > dennis w . loughridge  > 713 - 348 - 2812  >  >  >  >  >  >  >  >  get your free download of msn explorer at http : / / explorer . msn . com\",0\n\"Subject: re : kwi user group  vince  sorry to hear you cannot make it . . . you would obviously have been the big  catch ! !  in terms of a london based replacement , who did you have in mind and what  sort of subject could they cover ?  david  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : 24 april 2001 23 : 22  to : djw @ kwi . com  cc : vince . j . kaminski @ enron . com ; shirley . crenshaw @ enron . com  subject : re : kwi user group  david ,  i regret to inform you i am unable to attend the conference due to previous  commitments .  would you consider a speakers form our london office ?  vince  david warwick on 04 / 24 / 2001 09 : 47 : 31 am  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc :  subject : re : kwi user group  vince  any further thoughts on this ?  david  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : 13 april 2001 21 : 44  to : djw @ kwi . com  cc : vince . j . kaminski @ enron . com ; vkaminski @ aol . com  subject : re : kwi user group  david ,  thanks for the invitation .  i shall check my schedule on monday and will get back to you  regarding the conference .  i hope you will a very happy easter .  vince  david warwick on 04 / 12 / 2001 04 : 04 : 32 pm  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc :  subject : kwi user group  dear vince  please may i reintroduce myself . we met last year at the sydney eprm  conference which my company kwi sponsored . i chaired the session at which  you spoke .  as you may remember , my company , kwi are one of the world ' s leading  provider  of systems ( kw 3000 ) and consultancy for energy , trading and risk  management .  we have over 60 clients worldwide including many of the world ' s leading  energy companies ( not enron unfortunately ) :  north america  - tva  - ontario power  - cinergy  - bonneville power  europe  - enel  - atel  - electrabel  - edf  nordic  - vattenfall  - fortum  - sydkraft  - statkraft  - birka energi  - norsk hydro  each year we stage a \"\" kwi users forum \"\" - a 2 - day event attended by leading  trading and risk staff from our clients . last year there were about 100  delegates . the agenda primarily focusses on issues surrounding risk  management for the energy sector .  the agenda comprises keynote presentations on burning risk issues from  industry leading energy speakers and practical workshops focussed around  using our software .  this years event is at a luxury hotel in the wonderful spanish city of  barcelona and runs from the evening of sunday september 9 th to tuesday  september 11 th . the main conference dinner is on the monday evening and is  always a memorable event . this year it is in a leading barcelona restaurant  preceded by a bus tour of the city with a stop for pre - dinner drinks .  i would like to invite you to make the opening keynote address , the  highlight of the conference .  the subject could be :  * a general energy risk related topic  * a general insight into the secret of enron ' s continued success in  the energy markets  * your thoughts on the future development on energy markets ( and other  commodity related - bandwidth etc . ) worldwide  obviously , we would cover all your delagate costs including accomodation ,  food and drink .  what ' s in it for you ? many of our users are some the energy sectors  leading  risk thinkers and i ' m sure you would enjoy meeting them and exchanging  views .  please let me know if you are able to accept the invitation .  best regards  david warwick - marketing dierctor and co - founder\",0\n\"Subject: feedback from your espeak  vince :  i had a phone call from joe phelan late yesterday . he was thrilled that you  had answered his question so thoroughly . i ' ve talked to a few other people  who really got a lot out of your session , including someone who wants to come  work for you !  thanks , again , for giving us some of your time .  - er\",0\n\"Subject: re : time keeping  please arrange for time - keeping training for kevin moore .  thanks ,  mike roberts\",0\n\"Subject: updated presentation  i added guadalupe ' s experience .\",0\n\"Subject: good news on endorsements  vince & vasant ,  jeff skilling has said that enron would not make any endorsements of  third - party services , so please disregard my previous e - mail regarding aer  press releases .  joe\",0\n\"Subject: christmas list  hello vince and mike  i want to keep you informed .  this year all baskets will be done in a timely manner .  on last year we were going through a major move therefore  many people played key roles in keeping us together .  this year however , is a little different , as it is always nice  to give unfortunately we can not give to everyone .  i am sending a lists of who we have so far .  there are a few names on the list that i feel we should do something else  for this year .  under shirley ' s list of names .  ( not so expensive )  they are : move team who ?  mail room who ?  facilities help desk who ?  there are other tokens of appreciation that we can get for them .  please note that you two are the only ones that have seen this e - mail so far  i will need your approval for all baskets , however your input on the matter  will be  greatly appreciated . the list is not completed i am still waiting for  additions .  thanks  kevin moore\",0\n\"Subject: re : invitation to speak at infocast ' s upcoming \"\" market price  volatility \"\" program  ron ,  we are really swamped and i would like to keep our involvement in  conferences to a reasonable minimum . i can promise that we shall help you  with a future conference if it happens to be in houston .  vince  \"\" ron henderson \"\" on 01 / 11 / 2000 03 : 13 : 56 pm  please respond to ronh @ . com  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : invitation to speak at infocast ' s upcoming \"\" market price  volatility \"\" program  vince ,  i am sorry you can ' t join us . is there someone on your staff who might be  able to do the presentation \"\" a real options approach to asset valuation , \"\"  scheduled for thursday , may 11 th , from 10 : 30 am to 12 : 00 pm . ?  ron  - - - - - original message - - - - -  from : vince j kaminski [ mailto : vkamins @ ect . enron . com ]  sent : monday , january 10 , 2000 10 : 53 am  to : ronh @ . com  cc : vince j kaminski ; shirley crenshaw  subject : re : invitation to speak at infocast ' s upcoming \"\" market price  volatility \"\" program  >  ron ,  i am sorry to inform you that due to a scheduling conflict i cannot speak at  this conference .  i want to thank you for considering me as a speaker .  vince kaminski  \"\" ron henderson \"\" on 12 / 30 / 99 06 : 57 : 05 pm  please respond to ronh @ . com  to : vince j kaminski / hou / ect @ ect  cc :  subject : invitation to speak at infocast ' s upcoming \"\" market price  volatility \"\"  program  hi vince ,  i would like to invite you , or one of your staff , to be a speaker at  infocast ' s upcoming conference \"\" market price volatility : how to model ,  assess , and manage price volatility in today ' s power markets , \"\" scheduled for  may 10 - 12 , 2000 , in chicago . i am attaching a copy of the draft program  agenda for your review . as you may note , we wish to take our recent houston  meeting a step farther by making this next session a more  technically - oriented meeting .  there are two spots you may wish to consider :  1 . the session entitled \"\" case study in modeling volatility , \"\" scheduled for  wednesday , may 10 th , from 3 : 30 to 5 : 00 pm . you will note below , what we had  in mind for the case study .  2 . the talk \"\" a real options approach to asset valuation , \"\" scheduled for  thursday , may 11 th , from 10 : 30 am to 12 : 00 pm .  i am running behind schedule in finalizing this program , so i will give you  a call shortly to follow up with you . if you wish , please feel free to call  me at 818 - 888 - 4445 ext . 28 .  i hope you can join us .  ron henderson  infocast  818 - 888 - 4445 ext . 28  ronh @ . com  case study guidelines  1 . model should be for a particular market . examples : pjm , chicago , ecar ,  southern california . lb ( optional ) . model should be for a particular purpose . examples : valuing a  new combustion turbine at the florida / georgia border , bidding on a portfolio  of power plants up for sale in nepool , valuing a retail portfolio in  pennsylvania .  2 . model should be estimated on a particular data set . examples : daily  nymex  close prices for palo verde , pjm hourly spot prices for 1998 - 1999 .  3 . case study should describe several candidate models , for volatility  and / or market price , that were considered . case study should discuss why  these models were considered . candidate models should be described  mathematically and verbally .  4 . evaluation criteria for choosing among the models should be explicitly  identified , and quantified to the extent possible . examples of evaluation  criteria : residuals that are not autorcorrelated , stationarity , r - squared ,  akaike information criterion .  5 . parameter estimates for each candidate model should be displayed . the  estimation procedure employed should be briefly described .  6 . some diagnostics of model fit ( vis - a - vis data set ) should be presented .  7 . if possible , predictive power of model should be assessed .  generally , the case study should include all of the items above . the case  study may include other things .\",0\n\"Subject: re :  thanks , please tell me if you need anything from ees .  vince j kaminski @ ect  01 / 09 / 2001 02 : 30 pm  to : denise furey / hou / ees @ ees  cc : vince j kaminski / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect  subject : re :  denise ,  no problem .  we shall prepare a short presentation to address these issues .  vince kaminski  denise furey @ ees  01 / 09 / 2001 11 : 12 am  to : vince j kaminski / hou / ect @ ect  cc :  subject :  i hope you have seen the email below . do you have any problem with what  jeremy has asked you or your group to address . is there anything that you  want us to supply to you to assist you ?  - - - - - - - - - - - - - - - - - - - - - - forwarded by denise furey / hou / ees on 01 / 09 / 2001 11 : 11  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  denise furey  01 / 08 / 2001 11 : 46 am  to : gayle w muench / hou / ees @ ees , michael tribolet / corp / enron @ enron , william s  bradford / hou / ect @ ect , vince j kaminski / hou / ect @ ect , vasant  shanbhogue / hou / ect @ ect  cc : don black / hou / ees @ ees , tony spruiell / hou / ees @ ees  subject :  i believe all of you received a request from jeremy blachman to hold the  afternoon of january 10 th open for an off - site to discuss the manner in which  rac and research assess / test the credit quality of ees transactions . i  realize that rac and ees have had many discussions as to the methodology , but  it might be helpful for all of us to understand the actual derivation of some  of analysis . please call me with any questions or comments at ext # 30349 .  the agenda will be as follows :  12 : 00 - 1 : 00 lunch  1 : 00 - 3 : 30 presentations  3 : 30 - to close discussion  rac / research presentations  the following topics would be of interest to ees :  1 - the derivation of default probabilities including ( research )  - - a discussion of the actual mathematical process ,  - - the analytics behind why these computations are deemed the best for  enron ,  - - a comparison to historic default rates and why they differ ( in respect  to actual default rates , shape of the cumulative default curves etc .  2 - the volatilities which are used to determine possible loss scenarios for  the commodity portion of ees deals including ( research )  - - the selection of curves  - - the application of those curves to the actual credit reserve model and  - - why these particular tests are applicable to our products .  3 - the recovery rates used in the credit reserve model . how are these  figures derived ? ( rac )  4 - how rac and research have adjusted the credit reserve model to  accommodate unusual aspects of the deal including ( rac )  - - promotion payments ,  - - accounts receivable  - - committed capital  - - and other factors  ees also understands that some of you may be familiar with our processes ,  however , there are perhaps areas that you would like to understand more  fully . please tell us what you would like to hear from us .  also , rac has sent us the credit reserve model and i have seen completed  models . perhaps prior to our meeting on wednesday , someone from rac and / or  research could sit with me and someone from phil layton ' s group and go  through the process of how the various pieces are put together .\",0\n\"Subject: congratulations on your promotion  congratulations on the much deserved recognition you have recently received  from the enron executive committee .  sue haynes  enron staffing\",0\n\"Subject: re : greg spaniolo resume  johnny ,  greg spaniolo seems to be better suited for work in liquid markets - - certainly  not the situation with coal and emissions . brad romiane suggested that vince  kaminski might be interested in this resume .  as far as my search goes , keep an eye out for the bs and ms - level folks .  thanks .  jeff  johnny palmer @ enron _ development  02 / 12 / 2001 10 : 15 am  to : jeff andrews @ enron  cc :  subject : greg spaniolo resume  jeff ,  please advise me of your interest in greg ' s experience .  thanks ,  johnny  - - - - - - - - - - - - - - - - - - - - - - forwarded by johnny palmer / enron _ development on  02 / 12 / 2001 10 : 15 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" gregory v . spaniolo \"\" on 02 / 12 / 2001 10 : 12 : 58 am  to : johnny . palmer @ enron . com  cc :  subject : resume  here is my resume .  greg  - resume . doc\",0\n\"Subject: initial collection of research material for your web sites  dear sven the packets cover electricity and gas markets and modelling ,  deregulation & exchanges , weather derivatives and value - at - risk / risk  management / case studies . this is by no means final , and i hope to supplement  with some more ideas over the next few days . once you have considered the  material , i can fine - tune the type of material that is relevant for you and  then we can look at starting to put something together , after which we can  pass on to mike roberts  if you need some simple articles on pricing options or an explanation on how  to calculate volatility , then i am sure we can put that together for you .  regards ,  anjam  x 35383\",0\n\"Subject: credit model  vince and stinson ,  we met bill bradford yesterday , the credit model modification turns out to be  three projects .  1 ) potential exposure calculator  this requres forward curves simulation and revaluation of all deals over  the tenor ( typically 20 years ) .  it needs multi - factor hjm and gas - electricity joint factors of loading .  output from this model is the maximal loss amount and  its confidence interval .  expected delivery time : 1 month  2 ) include asian option model into the current xll calculation engine .  this is more concrete and simly to do .  expected delivery time : 2 weeks .  3 ) incorporate krishna ' s \"\" eam \"\" option valuation into the credit model  this one is not yet urgent .  i may need more resources to accomplish these tasks . paulo has difficulty  to commit himself to even to the second task ,  citing that he has other things to do . therefore i need your help in setting  the prorities .  thanks ,  zimin\",0\n\"Subject: re : alp presentation  dennis ,  thanks for you message . i shall send you more information regarding the  dinner later this week .  christie patrick , who is in charge of our university liaison unit , is making  arrangements for  the evening at the enron field . hopefully , we shall be able to combine  dinner with a game .  vince  \"\" dennis w . loughridge \"\" on 04 / 30 / 2001 10 : 49 : 10 am  please respond to  to :  cc :  subject : re : alp presentation  vince  i will be attending the alp presentation on may 7 and would be pleased to  join the team for dinner if it is not too late .  thank you  dennis loughridge  dennis w . loughridge  director of energy consortium  rice university  713 - 348 - 2812  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : tuesday , april 10 , 2001 8 : 16 am  to : loughrid @ rice . edu  cc : luigical @ rice . edu  subject : alp presentation  sorry , trying again . i probably got a wrong e - mail address and the original  message  was returned .  vince kaminski  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 10 / 2001  08 : 15 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  04 / 10 / 2001 08 : 13 am  to : barrett @ rice . edu , uecker @ rice . edu , cmiller @ rice . edu ,  lounghrid @ rice . edu , luigical @ rice . edu  cc : vince j kaminski / hou / ect @ ect , christie patrick / hou / ect @ ect , shirley  crenshaw / hou / ect @ ect , kenneth parkhill / na / enron @ enron  subject : alp presentation  on behalf of enron corp . i would like to invite you to an alp project  presentation by a group of students  of jesse h . jones graduate school of management , rice university .  the students will present the results of a research project regarding  electronic trading  platforms in the energy industry .  the presentation will be held on may 7 , at 4 : 00 p . m . at enron , 1400 smith .  we would also like to invite you to dinner , following the presentation .  vince kaminski  vincent kaminski  managing director - research  enron corp .  1400 smith street  room ebl 962  houston , tx 77002 - 7361  phone : ( 713 ) 853 3848  ( 713 ) 410 5396 ( cell )  fax : ( 713 ) 646 2503  e - mail : vkamins @ enron . com\",0\n\"Subject: visit may 4 th  vince :  per susan ' s email below , do you want to go to the luncheon for john  hennessey ? she doesn ' t say where the lunch is going to be , did you  get an invite ?  the only thing you have that day is 9 : 00 am larry thorne and the  energy derivatives class at 11 : 30 .  let me know .  thanks !  shirley  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 17 / 2001  11 : 55 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" susan c . hansen \"\" on 04 / 17 / 2001 10 : 47 : 38 am  to : shirley . crenshaw @ enron . com  cc : clovell @ stanford . edu , donna lawrence  subject : visit may 4 th  hi shirley ,  thanks for corresponding with carol during my absence , and confirming our  meeting with vince kaminski at 1 : 30 on may 4 th . i have a question about  the logistics . i believe dr . kaminski has received an invitation to an  event in houston : new stanford president john hennessy is visiting a number  of cities on a \"\" welcome tour , \"\" and it just so happens he is hosting a  luncheon in houston on may 4 th . if dr . kaminski wants to attend the  hennessy welcome tour luncheon , donna lawrence and i could meet with him at  1 : 30 somewhere in the hotel . if he ' s not attending the presidential event ,  please let me know where you are located , and we ' ll plan travel time  accordingly .  regards ,  susan  susan c . hansen  director , corporate relations  school of engineering  stanford university  stanford , ca 94305 - 4027  ( 650 ) 725 - 4219\",0\n\"Subject: 9 inch t . v .  goodmorning ,  we need another 9 inch t . v .  i am sorry to say but we need it  as quickly as possible .  the location for the set is eb 31301 c .  delores , you may have to install cable ,  i am not sure , so would you please check  for me .  company # 0011  r . c . # 100038  thanks  kevin moore\",0\n\"Subject: working at home this afternoon  i will be working from my home this afternoon after 1 : 30 pm . my extension  will be forwarded to my home . if i happen to be away from the phone taking  care of my mother , leave a message and i will return your call immediately .  there is a generic message on my home phone , \"\" please leave message after  tone \"\" , so don ' t worry that you have the wrong number . you may reach me by  email at adupont @ pdq . net . in the next several days , i will be set up to dial  in and you will be able to use my regualr enron email address . i will be at  my desk most days , but until we have mother settled in the rehab facility  there may be some days or afternoons that i will be working at home . please  do not hesitate to contact me if you need meetings set up or any other thing  that you would normally request of me . thanks . anita\",0\n\"Subject: re : video conference for interview : stig faltinsen  anjam ,  sorry , i am busy on thursday .  i shall ask shirley to contact you . friday 9 : 30 to 10 : 30 my time would work .  vince  vince  anjam ahmad  04 / 25 / 2000 09 : 51 am  to : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect  cc :  subject : video conference for interview : stig faltinsen  hi vince ,  this candidate was forwarded from the norway office . he is finishing his phd  in cambridge but is available soon . if you are free on thursday before the  regular weekly meeting that would be good - would 3 pm or 4 pm work for you  ( 9 am or 10 am your time ) to set up the video interview ?  regards ,  anjam  x 35383  cv attached :\",0\n\"Subject: re : support on statistical modeling  thanks for the quick response . i look forward to meeting martin .  regards ,  rh  randall hicks  director - marketing  enron broadband services  1400 smith street  houston , tx 77002  work - 713 . 853 . 9970  randall _ hicks @ enron . net\",0\n\"Subject: bonds  hello , vince .  we still have the 2 other bonds in our inventory . are you interested ?  david c . walkup  financial consultant  713 - 658 - 1685  800 - 456 - 9712  caution : electronic mail sent through the internet is not secure and could  be intercepted by a third party . for your protection , avoid sending  identifying information , such as account , social security or card numbers to  us or others . further , do not send time - sensitive , action - oriented  messages , such as transaction orders , fund transfer instructions , or check  stop payments , as it is our policy not to accept such items electronicall\",0\n\"Subject: reply to your email / ignore my voicemail  vince :  thanks for that . i just wanted to get a sense from you who the right people  are and how i can establish effective contact . when he went on to different  responsibilities , john goodpasture suggested i get the dialog going with the  right commercial people in enron . i will be in your neighborhood in the 200  pm time range and will give you a quick call . that will conserve your  valuable time and hopefully get me in touch with the right people . i am  reading this after your voicemail , so this supersedes that .  dale  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : tuesday , may 01 , 2001 6 : 03 am  to : dale . nesbitt @ marketpointinc . com  cc : vince . j . kaminski @ enron . com  subject : re : get together this coming tuesday ?  dale ,  i can reserve 2 to 2 : 30 time slot but there is really not much that  i can tell you at this point .  the commercial groups are still interested and are moving  towards the test of the package . as soon as they will decide  to move ahead , we ( research ) shall be involved , helping to evaluate the  product . as i have said , we are not the  decision makers in this case .  i think that we should allow simply the process to run its course .  vince  \"\" dale m . nesbitt \"\" on 04 / 30 / 2001 05 : 59 : 30  pm  please respond to  to :  cc :  subject : re : get together this coming tuesday ?  vince :  i will call tomorrow in the morning . lunch or right after lunch would be  great . how would 100 pm work for you ?  dale  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : monday , april 30 , 2001 3 : 07 pm  to : dale . nesbitt @ marketpointinc . com  cc : kimberly . watson @ enron . com ; vince . j . kaminski @ enron . com  subject : re : get together this coming tuesday ?  dale ,  please , call me on tuesday . my morning schedule is full but i am open in  the afternoon .  vince  \"\" dale m . nesbitt \"\" on 04 / 30 / 2001 01 : 51 : 21  am  please respond to  to : \"\" vincent kaminski \"\" , \"\" kimberly s . watson \"\"  cc :  subject : get together this coming tuesday ?  vince / kim :  i am flying to houston tonight and wondered if it would fit one or both of  your schedules to get together this coming tuesday sometime for 1 / 2 hour or  so . i really want to reinitiate the conversations marketpoint was having  with john goodpasture and you , and he said either or both of you were the  right people to continue after his responsibility shift . john was quite  positive about the idea of enron acquiring marketpoint narg through  license ,  and he implied that one or both of you would be carrying the ball in that  direction after he handed it to you .  would this coming tuesday morning at 930 am be a good time for you guys ?  if  so , please give me an email shout at the above address or leave a message  on  my voicemail at ( 650 ) 218 - 3069 . i think you will be truly impressed with  the  scope and progress we have been able to make with both the short run narg  and the long run narg in which you were interested ( not to mention our  power  model ) . the progress is noticeable since you saw it . both long and short  term narg are having quite an impact on a number of gas decisions at the  moment ranging from venezuelan lng , north american lng import terminals and  term , gas basis calculations , trading support , power plant development ,  gas - to - power price spreads in key markets , veracity of heat rate trades ,  bank financings , storage field evaluation , and which new pipelines we can  expect to see enter and which are dogs .  i really hope we can fit it in and get our discussions moving in a mutually  productive direction again . i think narg can help you become even more  successful , and i look forward to working with you .  we have a new office address and new phone number as well . ( we move in may  1 . )  altos management partners  95 main street , suite 10  los altos , ca 94022  ( 650 ) 948 - 8830 voice  ( 650 ) 948 - 8850 fax  ( 650 ) 218 - 3069 cellular  give the phones a week or so to get \"\" debugged \"\" and then switch over .  dale\",0\n\"Subject: new computer  hi lyn :  i have not received an answer for the below request for another sun  computer . did you get it ?  we also need to order another regular computer like the others that have  been supplied to the research group . it will be for tanya tamarchenko  and her location on the 19 th floor is eb 1940 . tanya has two offices and  does not have a computer in her office on the 19 th floor .  co # 0011 - rc # 100038  thanks !  shirley crenshaw  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 01 / 17 / 2000  03 : 39 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  shirley crenshaw  01 / 12 / 2000 11 : 14 am  to : lyn malina / hou / ect @ ect  cc :  subject : sun computer  hi lyn ;  the research group is in need of another sun computer to be located at  ebl 951 . please let me know that eta .  co . # 0011 - rc # 100038  thanks !  shirley  3 - 5290  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 01 / 12 / 2000  11 : 10 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  shirley crenshaw  01 / 07 / 2000 01 : 49 pm  to : lyn malina / hou / ect @ ect  cc : william smith / corp / enron @ enron , vince j kaminski / hou / ect @ ect , alex  huang / corp / enron @ enron  subject : new pc  hi lyn :  alex huang has requested a new pc and vince kaminski has ok ' d it . please  order the computer as listed below in alex ' s request .  thanks !  shirley  3 - 5290  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 01 / 07 / 2000  01 : 48 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  01 / 07 / 2000 12 : 12 pm  to : shirley crenshaw / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , grant masson / hou / ect @ ect , alex  huang / corp / enron @ enron  subject : new pc  shirley ,  ok .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 07 / 2000  12 : 02 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  alex huang @ enron  01 / 07 / 2000 08 : 28 am  to : shirley crenshaw / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , grant masson / hou / ect @ ect  subject : new pc  hi shirley ,  i would like to request for a new pc . my current pc is quite old with not  enough memory . twice  i ran out of memory and had to have it people coming to clean it for me .  their suggestion is  to either get a new hard drive or a new pc . given that dell has pentiumc iii  processor at 800 mhz  on market , i would like to request a pc with process at 500 mhz or higher  level .  thank you very much .  best ,  alex\",0\n\"Subject: dpc memo  vince ,  i am in houston ( rrived satruday ) , and will be in office on monday ( though  officially , i am on vacation ) . would like to catch up with you if possible .  it looks like your team will be getting involved in some form on the dpc  side . i have already made a recommendation to wade .  i am attaching a small memo that i have addressed to wade on the dpc position  and possible workout . this is still a draft and will likely get shared later  with others . i would love to get your comments on the same . at the same  time , this also will give you some idea of the problem , in conjunction with  the other plan presentation i had sent you .  look forward to touching base with you .  regards ,  sandeep .\",0\n\"Subject: transmission roundtable  everyone ,  several of us have talked about starting an ongoing meeting that we can use  as a platform to discuss various transmission issues .  i invite everyone to our first meeting , i have received names from several  different sources for the invitation list . if any of you feel that others  should be present please let me know .  vince has agreed that the research group will sponsor this activity and our  first meeting is scheduled for friday , december 8 th . , from 11 : 30 - 1 : 00 .  please rsvp to anita dupont whether or not you will be able to attend and  your lunch preference for sandwiches or salads . anita ' s extension is 30329  and her e - mail is adupont @ enron . com .  regards ,  lance\",0\n\"Subject: california update 4 / 27 / 01  the following report contains confidential and sensitive information . please  treat with discretion .  executive summary :  ? ferc price cap decision reflects bush political and economic objectives .  politically , bush is determined to let the crisis blame fall on davis ; from  an economic perspective , he is unwilling to create disincentives for new  power generation  ? davis finds four major flaws with ferc plan , most notably its exclusion of  out - of - state generators  ? june lst \"\" kill clause \"\" for ferc order could coincide with new bush regional  plan  ? california facing growing fiscal risk following bond downgrade , expected  $ 20 billion power bill this summer - - economic crisis would force deeper  administration involvement  ? qf bid for advance payments from pg & e likely to fail in bankruptcy court  ? new generation delays probable because of state / qf squabbling  ? consumer groups are preparing a constitutional challenge to socal bailout  deal  1 . ferc fallout  the ferc decision is a holding move by the bush administration that looks  like action , but is not . rather , it allows the situation in california to  continue to develop virtually unabated . the political strategy appears to  allow the situation to deteriorate to the point where davis cannot escape  shouldering the blame . once they are politically inoculated , the  administration can begin to look at regional solutions . moreover , the  administration has already made explicit ( and will certainly restate in the  forthcoming cheney commission report ) its opposition to stronger price caps  on the grounds that they are unwilling to create disincentives to the  construction of new generation .  it is interesting and ironic to note that electricity generators were  generally happy with the ferc order and that the only ferc commissioner who  favors price caps actually voted against this plan .  2 . something less than effective price caps  from davis ' s point of view , the ferc plan has four major flaws :  ? the order applies only to california , not to the rest of the west .  non - california generators are not required to sell at capped rates to  california .  ? as the order is written , it is more of a price floor for emergency power  than a ceiling .  ? state officials also believe that energy suppliers will continue to game  the system , because the price mitigation scheme only kicks in after a stage 2  emergency and does not require any collusion .  ? even when the price caps kick in , they are based on the cost - plus for the  highest cost producer supplying power to california and do not require  wholesalers to abide by the cap . the generators can also charge above the  cap , provided they can subsequently justify the excess charge to ferc .  3 . proposal \"\" kill clause \"\" adds to the political dilemma for davis  the ferc proposal includes a \"\" kill clause \"\" that says the caps will be  withdrawn unless california ' s iso agrees by june lst to become part of the  regional grid now under ferc control . if davis doesn ' t sign on to the  regional grid by june lst , then he will have to live with june 2 nd headlines  blaming him for letting the \"\" bush price caps plan \"\" collapse .  4 . growing fiscal risk in california  sources speculate that california could therefore pay as much as $ 20 billion  on power this summer - this is more than the combined enterprise value of  pg & e and sce . these sources believe that , because of the severity of the  situation , the ferc and / or the federal government will be forced to take  further action to control prices for power .  the consensus is that the state of california will run out of money in about  90 days . one of the first projects to be cancelled will be state plans to  finance new power plant construction in exchange for long - term power deals .  the bleak fiscal picture is also causing bank creditors to revisit the bridge  loans they are providing to california .  the bush administration and the fed are only now waking up to the seriousness  of the fiscal picture . the country ' s largest and most prosperous state will  have gone from large surpluses to serious debt downgrades and devastating  deficits in a matter of months .  5 . qfs to seek advance payment from pg & e  meanwhile , on the bankruptcy front , the qfs reportedly will ask the  bankruptcy judge today to give them advance payment from pge ' s accounts ,  since their natural gas vendors have likewise demanded advance payment for  gas . it appears very unlikely that the qfs ' request will be granted . if the  qfs do not receive advance payment , it is likely that most of the 4 , 000 mw  of gas - fired qf capacity will remain offline .  6 delays likely in new qf generation  the qf deals made with the state for long - term contracts are being  continually renegotiated , which is likely to mean that the new plants those  contracts are supposed to finance will not be online as early as anticipated .  7 . consumer groups ready to challenge constitutionality of sce bailout plan  harvey rosenfield and his colleagues reportedly have been reviewing an  analysis of the mou for the sce bailout plan . the analysis was done by a  utilities analyst , rather than a lawyer , though it appears to raise a number  of good legal points . for example , one of the elements of the mou is a  \"\" non - bypassable \"\" charge on ratepayers that would require them to pay even  if they disconnect from the grid . this is effectively a tax , since there is  no exchange of value for money , which under the ca constitution cannot be  used to directly benefit a private entity . this makes the bonds that would  be issued are general obligation bonds , rather than revenue bonds . according  to the constitution , the state cannot be put into debt to benefit a private  company . for this and other reasons , even if the republicans would vote for  the sce bailout , which remains unlikely , the bailout probably would not  stand a likely constitutional challenge .  8 . governor hurt by continued failure to disclose long - term power contracts  the issue of the governor ' s failure to disclose the details of the long - term  power contracts continues to distress the other players in the crisis .  even if he were to disclose everything he and his staff have been  negotiating , it is likely that their actions and negotiations will  challenged , creating an even further delay .\",0\n\"Subject: congrats !  vince ,  congrats on your promotion ! well - done !  rob\",0\n\"Subject: cera conference call and web presentation : winter weather  scenarios . . . - cera conference call  cera conference call : sent fri , november 10 , 2000  title : cera conference call and web presentation : winter weather scenarios . . .  author : n . american gas team  e - mail category : conference call  product line : north american gas ,  url : http : / / www . cera . com / cfm / track / eprofile . cfm ? u = 5166 netscape navigator 3 . 02 or  higher ; or sun hot java ( tm )  * close all desktop applications and disable your screen  saver  technical assistance  u . s . callers : if you are experiencing difficulties  during the call , you may signal for technical assistance  by pressing * 0 ( star , zero ) on your telephone keypad  after you have connected to the audio portion of the  conference .  international callers : please re - dial and ask the  operator for assistance before giving the confirmation  code .  a recording of this call ( audio only ) will be available  until december 17 , 2000 . to access this recording ,  please call 1 - 888 - 203 - 1112 ( within the u . s . ) or ( 719 )  457 - 0820 ( outside the u . s . ) . please use confirmation  number 432374 to access the call .  if you have any questions , please contact mary rice via  e - mail at mrice @ cera . com , or via telephone at ( 617 ) 498 -  9123 .  * * end * *  follow url for html version of this message only .  account changes  to edit your personal account information , including your e - mail  address , etc . go to : http : / / eprofile . cera . com / cfm / edit / account . cfm  this electronic message and attachments , if any , contain information  from cambridge energy research associates , inc . ( cera ) which is  confidential and may be privileged . unauthorized disclosure , copying ,  distribution or use of the contents of this message or any attachments ,  in whole or in part , is strictly prohibited .  terms of use : http : / / www . cera . com / tos . html  questions / comments : webmaster @ cera . com  copyright 2000 . cambridge energy research associates\",0\n\"Subject: re : houston research opportunity : anjam ' s plight  grant ,  i agree . we shall give him an offer of a job in houston ( on the terms  we discussed with ) plus an option to stay in  london , if he does not like houston . his choice . i think we extended a very  generous offer to him  and he may have an excessive perception of his contribution to enron .  vince  enron north america corp .  from : grant masson 08 / 09 / 2000 02 : 41 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : houston research opportunity : anjam ' s plight  vince :  i got the following note from uk hr after had a call from them earlier  today . i told them that the deal you and i communicated to anjam was firm  and not negotiable ( with the exception of the issues regarding the flat  rental ) . apparently , anjam is trying to play hard ball . what ' s your  commitment to anjam ? should we explore a package deal ? my vote is no .  grant .  tara rozen  08 / 09 / 2000 12 : 17 pm  to : grant masson / hou / ect @ ect  cc : melanie doyle / lon / ect @ ect  subject : houston research opportunity  grant  unfortunately , we were unsuccessful in our attempt to convince anjam that he  should transfer on a local us package . the difficulty is not so much the  compensation and benefits , it seems more to do with the actual job and  long - term prospects . he will only , therefore , commit to 12 months and only on  assignment terms .  we explained to anjam the rationales for transferring locally , ie not just  cost but equitability among his peers . he is convinced that his skills and  enron knowledge are valueable enough to warrant an assignment rather than a  local deal . also , he was apparently told by vince that it was impossible for  you to find a local hire for this role as you were not paying the market  rate .  would you like to move further with this ? if so , we can put together costs  for you for a 12 month assignment and see what you think . i am out tomorrow  but back in on friday and could do it for you then .  let us know !  regards  tara  - - - - - - - - - - - - - - - - - - - - - - forwarded by tara rozen / lon / ect on 09 / 08 / 2000 18 : 14  - - - - - - - - - - - - - - - - - - - - - - - - - - -  melanie doyle  08 / 08 / 2000 13 : 07  to : tara rozen / lon / ect @ ect  cc : madeline fox / lon / ect @ ect  subject : houston research opportunity  tara ,  can we discuss tomorrrow ?  thanks  mel  - - - - - - - - - - - - - - - - - - - - - - forwarded by melanie doyle / lon / ect on 08 / 08 / 2000 13 : 04  - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron europe  from : anjam ahmad 08 / 08 / 2000 12 : 08  to : vince j kaminski / hou / ect @ ect , grant masson / hou / ect @ ect  cc : melanie doyle / lon / ect @ ect  subject : houston research opportunity  dear vince i would like to make  the suggestion that we make this opportunity a one - year assignment working  with tanya , and then re - evaluate the situation at the end of the year in  terms a new role for me in houston thereafter , subject to mutual agreement .  the alternative situation of resigning from enron europe and re - joining enron  corp is too dramatic and requires me to \"\" burn bridges \"\" and my return to enron  europe would be difficult . also , i would lose the valuable support  structures available to me in london . the amount of any fixed costs  ( flights , modest cargo , a few months of mortgage carrying cost ) are entirely  reasonable , not excessive given my single status and not so great that they  justify making the contract a three year ( local ) one .  i would expect that on the basis of almost 3 1 / 2 years solid experience &  value - added at enron europe , the value of several million pounds i have  identified & justified to external auditors for enron europe this year and an  \"\" excellent \"\" rating ( my fourth making my 3 1 / 2 yr average rating also  \"\" excellent \"\" ) , i could reasonably be expected to justify a fair deal ( i . e . my  existing enron europe salary & benefits package plus a reasonable one - off  allowance to cover unavoidable additional personal expenses ) .  regards & thanks again for the opportunity ,  anjam  x 35383\",0\n\"Subject: interview  dear dr . kaminski  i would like to thank for the interview opportunity at enron . it was very nice  and pleasant to talk with very talented people .  i wish this interview develop to the further stage of the opportunity .  as matter of fact , i have started the current job at kansas city with an  internship expiring november 3 rd . i got an permanent job offer from them and i  think i should decide whether to accept the offer or not very soon . but after  i visited enron , i feel that i want to pursue my career development at enron  for many reasons .  so if the decision process is made soon , i will appreciate it greatly . ( i  apologize for the hurry . i already sent a message regarding my situation to  molly a minute ago . )  thank you very much .  sincerely ,  jaesoo\",0\n\"Subject: congratulations  vince ,  congratulations ! i wish you the best of luck with your new responsibilities .  shalesh ganjoo\",0\n\"Subject: re : move computer from the research group 19 th floor to the 44 th  floor  shirley -  i spoke with janelle duree ( manager - move team ) , she is investigating the  mystery of the missing phone and will call me back with status - if you can  take care of the pc , i think we look good on the phone . i also spoke with  paul racicot to make sure we are all of the same mind and he is set as well .  p  shirley crenshaw @ ect  06 / 15 / 00 02 : 06 pm  to : emmanuel mangin / corp / enron @ enron  cc : clayton vernon / corp / enron @ enron , paula corey / enron communications @ enron  communications , vince j kaminski / hou / ect @ ect  subject : move computer from the research group 19 th floor to the 44 th floor  hi emmanuel :  we need a computer installed on the 44 th floor tomorrow , if at all possible .  we have a new summer intern coming on monday the 19 th and the  computer and everything else has disappeared from his desk .  the location is eb 4444 b .  the computer we are moving is clayton vernon ' s old computer . he is  finishing up moving his files to his new computer as i am writing this .  please call me in the morning and we will talk further .  thanks !  shirley crenshaw  3 - 5290\",0\n\"Subject: re : requests for help  thanks vince .\",0\n\"Subject: re : eprm article  chris ,  this is very well written and will serve the reader well . a few comments .  1 . when i think about the taxonomy of the var models , i typically use the  classification based on 3 categories :  a . variance / covariance method  b . historical simulation  c . monte carlo simulation .  delta approach is the way of representing a position in a nonlinear  instrument .  2 . i would define monte carlo as an approach based on statistical simulation  of behavior of  all the market prices / rates , etc . , and revaluation of the entire portfolio .  the revaluation may be based on an approximation ( using taylor ' s expansion )  that may  involve delta , delta / gamma , delta / gamma / omega or may be exact ( based on the  same  model that produces the mark - to - market portfolio valuations ) .  the main benefit of using the mc simulation in the energy markets is the  ability to capture  the gapping behavior of the energy markets in a straightforward way . i would  emphasize that  there are attempts to incorporate jumps in the v / c model ( i shall send you  the references  from home ) .  3 . i would mention that historical simulation may break down in the markets  that are evolving  quickly ( new instruments for which we have no comparable prices ,  behavior of prices may change as markets mature or de - mature ) .  4 . for bigger portfolios , virtually all methods require some level of  aggregation into  atomic , elemental instruments to reduce the dimensionality of the problem .  this process may be a source of a big error .  5 . the computational burden of mc can be reduced through clever preprocessing  of a portfolio that introduces no error . many swaps with the same underlying  can be aggregated into one positions ( they are portfolios of forwards and  they are linear  instruments ) .  please , feel free to use any comment ( or none ) .  vince  \"\" chris strickland \"\" on 08 / 28 / 2000 02 : 58 : 56 pm  please respond to \"\" chris strickland \"\"  to :  cc :  subject : eprm article  dear vince ,  ?  d you think you might be able to look at this in the next day or so ? robin  is after something by the end of this week .  ?  best regards .  ?  chris .  ?  - eprm _ 01 _ var . doc\",0\n\"Subject: energy book  hi vince ,  i have pulled a list of names together that i would like to send some  samples of our chapters of the book too , in the next couple of days , in  order to try and get one or two sentence \"\" reviews \"\" for the dust jacket of  the book . i obviously won ' t say anything about enron ' s sponsorship until it  is official sorted out , but is it ok if i indicate that yourself and grant  are contributing material to the book ?  i ' m proposing to send 5 or 6 chapters to the following - unless you have  any objections or suggestions ?  david shimko  ehud ronn  helyette geman  mark garman  dragana pilipovic  corwin joy  ilia bouchouev  alexander edyleland  steve thomas  hope the writing is going ok , and regards to grant .  best regards .  chris\",0\n\"Subject: masayuki fujita from the mitsubishi research institute  i have been at enron for eight months and work under sally beck .  in december i attended the exotic energy derivatives conference , where i met  masayuki fujita from the mitsubishi research institute . he is doing research  on the deregulation of the japanese power market . we had lunch together and  chatted for some time about his work ( i worked in a japanese company for 8  1 / 2 years and speak fluent japanese , so we got along easily ) .  he was in houston this week and came by to visit . on monday , we met with  vince kaminski and grant masson and later had dinner with them . sally  suggested that i introduce him to alan aronowitz and you . of course , you  were out of town , but we did meet with alan who said you would probably want  to meet him back in tokyo anyway .  would you like for me to set something up ?  regards ,  eugenio\",0\n\"Subject: re : forward oil prices  jens ,  i think i have cc ' ed you on this . john nowlan approved and stinson gibner  has the curves available for you .  vince  jens gobel @ enron  11 / 10 / 2000 04 : 44 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : forward oil prices  hi vince ,  have you already heard back from john nowlan ?  thanks a lot for your help again . have a great weekend .  jens  jens gobel  10 / 26 / 2000 12 : 06 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : forward oil prices  vince ,  as discussed on the phone , i am sending you the request that i have received  from prof . buehler . prof . buehler is the  head of the faculty of finance at mannheim university in germany . currently ,  he is writing a study about the hedging  strategy that led to the metallgesellschaft debacle . for this study he would  like to get forward oil prices form us .  the forward oil prices should be for wti with cushing as the delivery point  for the time period july 1986 and december 1996  with remaining contract durations between one and ten years . it would be  ideal to get this data on a daily basis . weekly  or monthly data is helpful as well , of course .  since mannheim university is among enron ' s tier one recruiting universities  in germany , it would be great if we could help  him with some data . thanks a lot for your help .  jens  o . korn @ uni - mannheim . de on 10 / 10 / 2000 11 : 44 : 57 am  to : jens . gobel @ enron . com  cc :  subject : daten  sehr geehrter herr goebel ,  bezugnehmend auf ihr heutiges telefongespraech mit herrn prof .  buehler hat mich prof . buehler gebeten , ihnen genauer  darzustellen , welche daten idealerweise fuer unsere studie  benoetigt wuerden .  zunaechst zum hintergrund . wir sind auf enron gestossen , weil  eduardo schwartz in einer seiner arbeiten die folgende datenquelle  angibt :  \"\" in addition to the publicly available futures data described above ,  for the purpose of this study enron capital and trade resources  made available some proprietary historical forward price curves  from 1 / 15 / 93 to 5 / 16 / 96 . from these data ten forward prices were  used in estimation , ranging in maturities from two months to nine  years \"\"  dies laesst uns annehmen , dass enron bestimmte daten  verfuegbar hat .  nun zum idealen datensatz :  forwardoelpreise ( am besten wti mit lieferung in cushing ) fuer  restlaufzeiten zwischen einem und zehn jahren fuer den zeitraum  juli 1986 bis dezember 1996 . dabei waere eine hohe  datenfrequenz ideal ( taeglich , ansonsten woechentlich oder  monatlich ) . zusaetzlich waeren auch spotpreise fuer wti mit  lieferung in cushing nuetzlich .  diese idealen datenanforderungen werden sich vermutlich nicht  erfuellen lassen . jedoch waere uns auch schon geholfen , wenn ein  kuerzerer zeitraum oder eine niedrigere datenfrequenz vorlaege .  wir waernen ihnen sehr dankbar , wenn sie in erfahrung bringen  koennten , inwiefern solche daten von enron zu erhalten sind .  herzlichen dank fuer ihre muehe und beste gruesse  olaf korn  p . s . bei rueckfragen stehe ich ihnen jederzeit gern zur verfuegung  dr . olaf korn  university of mannheim  chair of finance  d - 68131 mannheim  germany  tel . : + + 49 / 621 / 181 - 1487  fax . : + + 49 / 621 / 181 - 1519  e - mail : o . korn @ uni - mannheim . de\",0\n\"Subject: re : forecasting project  barbara ,  we are in touch with ketra and john and we shall work with them when they are  here .  vince  barbara g dillard @ enron  08 / 29 / 2000 11 : 23 am  to : mark mixon / hou / ees @ ees @ ect  cc : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , laura  luce / corp / enron @ enron , d . wear @ pecorp . com @ ees @ ect ,  k . schmitt @ pecorp . com @ ees @ ect , j . wirick @ pecorp . com @ ees @ ect  subject : re : forecasting project  mark :  f . y . i . - i have been informed by ketra that she plans to be in the houston  office on monday september 18 th through wednesday september 20 th to meet with  vince and stinston .  hopefully we will be ready to continue phase i of the forecasting project .  can you make arrangements with vince and stinson ( hopefully they will be  available to meet ! ) .  thanks !  barbara  ( 312 ) 541 - 1232\",0\n\"Subject: anjam  vince ,  let me know when you ' ve talked to anjam about moving to houston . i need to  do his performance review this week and it would be good to get this on the  table with him before then .  thanks  - dale\",0\n\"Subject: global technology organization changes  as the global technology group moves forward in accomplishing its goals of  developing worldwide technology standards , ecommerce opportunities and global  platforms , we continue to make changes in the organization to enhance  communication and maximize our intellectual capital . with that in mind , we  are pleased to announce the following organization changes within global  technology :  jay fitzgerald , md ecommerce , will be moving to enron north america and will  have responsibility for all of ena \u0001 , s ecommerce initiatives . although this  will be a big loss for global technology , jay will provide immediate benefits  to the explosion of ebusiness opportunities that are developing in the ena  lines of business . jay will report to greg whalley .  steve horn , vp investments , will be moving into global technology to head the  ecommerce ventures group responsible for ecommerce merchant investing . the  scope of this new group will include investing in the following areas :  strategic sourcing / procurement / demand aggregation / asset disposition businesses  ecommerce enabling technologies  global ecommerce opportunities outside of ebs / ena / ee . ebs , ee and ena will  be evaluating and making equity investments within their specific business  units .  examining houston technology business opportunities not directly related to  enron \u0001 , s business .  steve will report directly to me in his new role .  jenny rub has accepted the newly formed position of vp of infrastructure for  enron corp . her responsibilities include managing all it infrastructure  support activities . jenny will report to philippe bibi . jenny is currently  vp and cio for the gas pipeline group and she will be transitioning out of  that role as she completes several important initiatives .  beth perlman has recently relocated to the united states as vp of ena \u0001 , s  application development , rac and treasury applications . she was previously  heading up application development for enron europe . she will report to  philippe bibi .  dan bruce , vp , is responsible for it support in the international regions ,  ee & cc and asset operations . he will report to philippe bibi .  john pavetto , vp , will be responsible for all ecommerce initiatives outside  of enrononline . john will report to philippe bibi .  jay webb , sr . director , will continue to lead the enron online team reporting  to philippe bibi .  arshak sarkissian , sr . director , has accepted a position with ebs \u0001 , s strategic  development group and will be transitioning his responsibilities over the  course of the next few weeks . he will report to scott yeager .  please join me in congratulating everyone on their new positions .\",0\n\"Subject: h - ib visa application  chonawee : further to our telephone conversation this morning , i am attaching  a visa questionnaire that i need you to complete and return to me  immediately , together with the documents listed at the bottom of the form .  as explained , i will send everything to our attorney ' s office in the hope  that they can file for the h - ib prior to reaching the cap , but in the event  this does not go through , your h - ib will not be available until october ,  2000 . as your opt does not expire until november 1 , 2000 , we will still have  the opportunity to get you an h - ib before your opt runs out .  please bring these documents to me in eb 3694 .  margaret daffin x 57843\",0\n\"Subject: christmas break  fyi  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 12 / 14 / 99  07 : 51 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" van t . ngo \"\" on 12 / 04 / 99 11 : 17 : 01 am  to : vince j kaminski / hou / ect @ ect  cc : shirley crenshaw / hou / ect @ ect  subject : christmas break  dear vince ,  as the holidays approach , i am excited by my coming break from classes  but also about the opportunity to see everyone at enron again and to  work with you and them soon . i am writing to let you know that i would  be very happy to work at enron over my break and i would like to plan  out a schedule .  my semester officially ends dec . 20 th but i may be out of town the week  before christmas . i will be available the following three weeks , from  monday , dec . 27 to friday , jan . 14 . please let me know if during those  three weeks , you would like me to work and for what dates you would need  the most help so that we can arrange a schedule that would be most  helpful to you and so that i can contact andrea at prostaff soon .  please let me know if you have any concerns or questions about a  possible work schedule for me .  give my regards to everyone at the office and wishes for a very happy  holiday season ! i look forward to seeing you soon .  sincerely ,  van ngo  ph : 713 - 630 - 8038  - attl . htm\",0\n\"Subject: vp & director count for the research group  hello deborah :  i would like to introduce myself and anita dupont to you as we will probably  be working together quite a bit between now and our move . please feel  free to contact either one of us regarding any questions or needs you  may have .  headcount  the executive , vp and director headcount for the research group is :  managing director 1  vice presidents 6  directors 5  also , anita and i would like to invite you to meet with us and go over our  library space requirements . please let me know when you have some  free time and we will be available .  my number is : 3 - 5290 - ebl 961  anita ' s # is : 3 - 0329 - ebl 969  i look forward to meeting you ,  shirley crenshaw  administrative coordinator  enron research group  3 - 5290\",0\n\"Subject: metals cross correlations  dear all ,  i have completed the cross - correlation study for the seven metals we have  data for - will complete for gold , silver and cocoa . i have also attached  the spreadsheet . correlations based on log - returns , 21 , 42 or 63 business  days for either front month only or average of entire futures curve - please  see data below or drill into spreadsheet . we can choose the most appropriate  time - bucket and whether to use front month or \"\" average of curve \"\" data .  regards ,  anjam  x 35383  spreadsheet :\",0\n\"Subject: performance management process  as our existing businesses grow and new businesses are created , ease of  movement and development of our top talent becomes essential to our success .  as you heard at the management conference all officers will be titled ,  reviewed , promoted , and compensated according to a more standard set of  guidelines . the process recognizes the intrinsic value of each officer ,  rather than tying that individual to the value of their specific job or  reporting relationship .  officer titling has been standardized throughout enron . there are four  levels of officers : members of the enron office of the chairman make up level  4 . level 3 includes all other members of the enron executive committee .  level 2 is made up of managing directors , including company presidents and  some senior vice presidents . level 1 are vice presidents and some senior  vice presidents with grandfathered titles .  this year a common evaluation process is being implemented for level 1 and  level 2 officers . officers will be evaluated by a committee , through a  process referred to as the performance review committee ( prc ) , utilizing a  standard set of performance criteria and performance ratings . performance  committee reviews will occur twice a year \u0001 ) in july for feedback purposes and  at year - end for feedback as well as bonus and total compensation  considerations . the executive committee will handle the prc for all level 2  officers . review of level 1 officers will occur at the business - unit level  first with the results \u0001 & cross calibrated \u0001 8 by the executive committee and a  group of approximately sixteen managing directors .  the goals of the prc process is to insure a consistent standard for our  overall pool of executive talent and to provide a tool to more effectively  utilize talent throughout the organization . to further promote consistency  the executive committee will consider all promotions in january of each  year . exceptions , internally or externally , will be infrequent .  the individual \u0001 , s performance evaluation will be the starting point for all  compensation decisions . compensation includes base pay , bonus and long - term  awards . a long - term program that replaces individual or business unit plans  has been approved and will be communicated to individuals before bonus  payments are made .  in addition to the level 1 and level 2 reviews , business unit , global and  corporate cross - functional prc reviews for directors , senior directors and  general managers have started . this year - end process will be utilized as a  benchmark to determine how we further refine the evaluation process at this  level in the future .  if you should have any questions about the process , please direct them to  your human resources business unit leads per the following :  mary ann long ( gpg ) x 36810 david oxley ( ena / eel / global trading ) x 33557  ray bennett ( ees ) x 37039 robert jones ( global technology / global  finance / global  gwen petteway ( corp ) x 37351 asset operations / global engineering &  construction ) x 35810  janie bonnard ( caribbean / middle east / scott gilchrist ( asia  pacific / africa / china ) x 67081  lng ) x 68202 gerry chatham ( egep ) x 35141  miguel padron ( esa ) x 66552 marla barnard ( eci ) x 58158  ranen sengupta ( india ) x 67967  cc : enron executive committee members  28599\",0\n\"Subject: reviewer approval  please note that your employees have suggested the following people to  complete a feedback form on their behalf . you will need to access the  performance management system ( pep ) to either approve or decline these  suggested reviewers . once you have approved the suggested reviewers they  will be notified and can begin completing the feedback form .  your list of employees that have suggested reviewers are listed below :  date suggested : may 24 , 2000  feedback due date : jun 16 , 2000  employee name : crenshaw , shirley j  date suggested : jun 01 , 2000  feedback due date : jun 16 , 2000  employee name : gibner , peyton s  date suggested : may 19 , 2000  feedback due date : jun 16 , 2000  employee name : kollaros , alexios  date suggested : may 22 , 2000  feedback due date : jun 16 , 2000  employee name : krishnarao , pinnamaneni v  date suggested : may 22 , 2000  feedback due date : jun 16 , 2000  employee name : shanbhogue , vasant\",0\n\"Subject: ng prices  margaret ,  please find attached texas and louisiana wellhead prices ( daily , monthly and  quarterly ) . we had data available starting 1983 and the information source is  natural gas intelligence . information on uk \"\" beach \"\" prices will be available  for the following locations : teesside , bacton and st . fergus . would you like  to have data on a specific one ?  sincerely ,  elena  elena chikina  enron research group  vince j kaminski @ ect  08 / 01 / 2000 07 : 52 am  to : mike a roberts / hou / ect @ ect  cc : elena chilkina / corp / enron @ enron , vince j kaminski / hou / ect @ ect  subject : re : vince does your group have a monthly or a quarterly price  history in nominal terms  for a us onshore louisiana natural gas price ( or a texas wellhead price ) and  a uk landed beach price for the past 15 years ? i am gathering historical data  for jim o hara for our colombia pipeline in south america and these are among  the series of data they are seeking . they would like the data  from a published source in an electronic file if possible . . their timetable  is by cob weds this week . thank you for your help . margaret  mike do you agree with me ? please , ask elena to check what price info is  available at xmim .  vince  margaret ,  the prices going back 15 years are not too informative ( for the first 5  years ) , as he industry was still regulated .  we shall try to get you the us series as soon as possible .  vince  margaret carson @ enron  07 / 31 / 2000 04 : 12 pm  to : vince j kaminski / hou / ect @ ect  cc : kyran hanks / lon / ect @ ect  subject : vince does your group have a monthly or a quarterly price history in  nominal terms  for a us onshore louisiana natural gas price ( or a texas wellhead price ) and  a uk landed beach price for the past 15 years ? i am gathering historical data  for jim o hara for our colombia pipeline in south america and these are among  the series of data they are seeking . they would like the data  from a published source in an electronic file if possible . . their timetable  is by cob weds this week . thank you for your help . margaret\",0\n\"Subject: power plant model  jeff ,  a few comments on the model :  1 . we have a few reservations about some features of the model but would like  to  discuss it internally and make the improvements without giving the benefit of  our insights to the consultant .  in general , the model is not unreasonable but the devil is always in the  details and in the inputs and  calibration . the same model may produce drastically different results  depending  on the quality of inputs .  2 . we don ' t have a separate pool of programmers in the research group . we  were told that you  would provide an it resource . alex would supervise this person .  vince\",0\n\"Subject: 3 hours vacation  vince :  if it is all right i would like to take a couple hours vacation in the  morning . my  grandson starts \"\" middle school \"\" ( 6 th grade ) and he wants me to take him .  i should be in by 10 : 00 am .  thanks !  shirley\",0\n\"Subject: re : trading ag prods .  vince ,  just wanted to let you know that i have done some preliminary , high level ,  research into this commodity and would be glad to share it . please let me  know if you would be interested in it . thank you .  shalesh ganjoo  vince j kaminski @ ect  05 / 01 / 01 10 : 20 am  to : shalesh ganjoo / enron communications @ enron communications @ enron  cc : elsa piekielniak / corp / enron @ enron  subject : re : trading ag prods .  shalesh ,  a good idea . i shall forward it to the ag traders .  vince  from : shalesh ganjoo @ enron communications on 05 / 01 / 2001 10 : 12 am  to : nelson neale / na / enron @ enron  cc : vince j kaminski / hou / ect @ ect  subject : trading ag prods .  nelson ,  i know you are focusing on agricultural products for trading , so i just  wanted to know if we are looking at wool . i know that it ' s traded in  australia and new zealand , so we might be able to look into it as well .  please let me know . thank you .  shalesh ganjoo\",0\n\"Subject: enron cover letter & resume for dave gershenson  celeste ,  i am sending you the resume of david gershenson , an mba student from wharton .  he is interested in a summer internship with enron and i shall be glad  to take him .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 17 / 2001  01 : 34 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" chen , vincent \"\" on 01 / 17 / 2001 02 : 35 : 00 am  to : vince . j . kaminski @ enron . com  cc : \"\" gershenson , david \"\"  subject : enron cover letter & resume for dave gershenson  vince , i am passing along a cover letter and resume for my classmate and  friend , dave gershenson , who is very interested in working for enron this  summer . he is working on reliant energy ' s tiger team this quarter . please let  us know if you have any questions .  thanks much and see you friday !  vincent  vincent y chen  mba candidate , class of 2002  the wharton school  university of pennsylvania  chenvinc @ wharton . upenn . edu  > - - - - - original message - - - - -  > from : gershenson , david  > sent : tuesday , january 16 , 2001 6 : 24 am  > to : chen , vincent  > subject : enron cover letter & resume  >  > vincent ,  >  > please find attached a cover letter and resume for the enron summer finance  internship . as we discussed , i would appreciate it if you could pass these  along to your tiger team contact , mr . kaminski .  >  > thanks ,  > dave  >  > > > > > >  - enron letter . doc  - dave gershenson . doc\",0\n\"Subject: re : potential prospect  tom ,  we are currently space constrained but we shall always take a qualified  candidate . please , ask george to send me a resume and we shall get in touch  with him  to arrange a phone / on - location interview .  vince  tom arnold on 04 / 25 / 2001 09 : 15 : 09 am  to : vince . j . kaminski @ enron . com  cc :  subject : potential prospect  hey vince ,  given that the eastern finance conference is already taking place , i think  it is safe to assume that they did not desire an energy derivative round  table discussion . however , i appreciate you volunteering to potentially  having been on such a round table discussion .  i ' ve been teaching a \"\" real options \"\" course that has the students performing  monte carlo analysis , black - scholes pricing , and binomial pricing along  with a heavy dosage of understanding risk neutral pricing . a few of your  new hires from the undergraduate program will be coming from this course .  however , i have a student who will be finishing his mba next spring that is  particularly good . he is genuinely interested and curious about option  pricing , trading , and hedging with excel / vba skills . in fact , he usually  figures out when i make even very small mistakes in my calculations .  this is not to say that some of my other students aren ' t very talented  themselves , but that this person really stands out . do you think you  and / or enron would be interested in such a person ? if so , what do you  recommend that he do to get his foot in the door ?  his intention is to finish the mba , but i do not know if this would  preclude you from hiring or at least taking a look at him now . his name is  george moss and i ordinarily would not bother you directly about a  potential employee . i am making an exception in this case because he is a  particularly good talent without being the slightest bit arrogant .  otherwise , i hope this e - mail finds you doing well and not travelling too  much .  tom  professor tom arnold  e . j . ourso college of business administration  department of finance  2155 ceba  louisiana state university  baton rouge , la 70803  o : 225 - 388 - 6369  f : 225 - 388 - 6366\",0\n\"Subject: re : congratulations  thanks . congratulations to you .  ray  vince j kaminski  01 / 11 / 2000 09 : 49 am  to : raymond bowen / hou / ect @ ect  cc :  subject : congratulations  ray ,  congratulations . well deserved .  vince\",0\n\"Subject: re : credit trading brought to you by bryan seyfried  ted ,  i ' m happy to sign off on the basis discussed with bryan at the end of last  week and outlined in the attached memo .  regards  fernley  from : ted murphy 08 / 02 / 2000 22 : 16  to : steve w young / lon / ect @ ect , fernley dyson / lon / ect @ ect , michael r  brown / lon / ect @ ect , william s bradford / hou / ect @ ect , john sherriff / lon / ect @ ect ,  vince j kaminski / hou / ect @ ect  cc : rick buy  subject : credit trading brought to you by bryan seyfried  my understanding is that bryan will be in houston to present his strategy  regarding credit trading for approval under an interim trading policy -  signed off by jeff and rick . before making any recommendation to jeff , rick  wants to be sure that the people on the list above are comfortable with the  activity and will be willing to signoff on the approval . given that bryan  will be physically here , i am requesting that you e - mail your concurrence to  me no later than tommorrow . otherwise rac will not present to jeff for  approval .  thank you for your help in puttting this together and making it a success !  ted\",0\n\"Subject: subscribe  this message has been automatically generated in response to your  mckinseyquarterly . com registration .  you requested notification about new articles in the categories  listed below . to confirm your enrollment , please reply to this  message and remove any / all characters that may preceed the  word subscribe .  subscribe economic - performance  subscribe retail  subscribe environment  subscribe countries  subscribe strategy  subscribe interviews  subscribe financial - institutions  subscribe energy  subscribe telecommunications  subscribe corporate - finance  subscribe electronic - commerce\",0\n\"Subject: wti models  stinson and vince ,  i finalized the presentation for john lavorato , he said he is ready  to present it to greg . he is happy with the work we provided .  i will be on vocation starting next week . i attached the simulation models  here in case that you need them . the oc version deals with open - close  trading and cc version deals with continuous trading .  should you have any questions , or need to run different scenarios , please  call me at home . otherwise , i will see you next year .  merry chrismas and happy new year !  zimin\",0\n\"Subject: new pc with two 128 mb of ram  shirley ,  is this an upgrade for maureen ?  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 12 / 18 / 2000  03 : 58 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : felix buitron jr . / enron @ enronxgate on 12 / 18 / 2000 02 : 27 pm  to : vince j kaminski / hou / ect @ ect  cc : shirley crenshaw / hou / ect @ ect  subject : new pc with two 128 mb of ram  vince , i have your new pc . i will get with you when i ' m done to schedule a  delivery time . i will need your network and notes password to test your apps .  thanks ,  felix\",0\n\"Subject: re : telephone interview with the enron research group  mr . yaralov :  i want to apologize to you , i have had the flu and have been out of the  office . would you be able to receive the call in the morning ( thursday ,  september 28 th ) at 8 : 30 am california time ( 10 : 30 am houston time ) ?  we will call you at your home , 213 / 250 - 5424 .  please let me know as soon as possible and i will arrange the interview .  sincerest apologies !  shirley crenshaw  \"\" georgi yaralov \"\" on 09 / 25 / 2000 06 : 51 : 45 pm  to :  cc :  subject : re : telephone interview with the enron research group  dear shirley crenshaw .  unfortunately i did not get any response on my previous e - mail . i would like  to find out if you want me to set up new time frames for the interview .  please let me know .  sincerely ,  georgi yaralov  - - - - - original message - - - - -  from :  to :  sent : wednesday , september 20 , 2000 8 : 50 am  subject : telephone interview with the enron research group  > good morning mr . yaralov :  >  > your resume was forwarded to vince kaminski and the research group  > with enron . they would like to schedule a telephone interview with you  > at your convenience to see if there might be a fit somewhere within our  > group .  >  > please let me know several time frames that might be acceptable to you  > for this interview .  >  > the interviewers would be :  >  > stinson gibner ( before monday the 25 th ) vice president  > grant masson ( after monday the 25 th ) vice president  > zimin lu director  > tanya tamarchenko director  > vasant shanbhogue vice president  >  >  > regards ,  >  > shirley crenshaw  > administrative coordinator  > enron research group  > 713 - 853 - 5290  > email : shirley . crenshaw @ enron . com  >  >  >\",0\n\"Subject: re : letter  larrissa ,  i spoke with joe pokalsky . he will be glad  to help you .  please , call him at the number 770 393 7411 .  vince  larrissa sharma  04 / 26 / 2000 08 : 20 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : letter  vince ,  the letter was perfect . thanks for the trouble .  my name however is spelt with a double \"\" r \"\" . = = > larrissa sharma .  larrissa .  vince j kaminski  04 / 25 / 2000 09 : 19 am  to : larrissa sharma / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : letter  larrissa ,  please , take a look at the letter .  my assistant is on vacation , she will be back tomorrow .  please , check the spelling of your first name . it was inconsistent in the  original letter from the lawyer .  vince\",0\n\"Subject: risk magazine - enron sponsored issue on energy derivatives  i have recently come on board as treasurer , enron india . prior to joining ,  i was with reliance industries , a petrochemical conglomerate in india .  the central banking authorities are now thinking of permitting  corporates to hedge their oil and other related risks . i believe the  literature published  by risk in collaboration with enron has come to be considered as an  industry standard . would it be possible to arrange for two copies to be sent  across to us .  thanx n regards  g . subramaniam  treasurer ,  enron india pvt . ltd .  36 , maker chambers vi ,  nariman point ,  mumbai 400 021\",0\n\"Subject: re : sorry  see you at 11 : 30 in the hyatt lobby .  vince j kaminski @ ect  04 / 05 / 2000 03 : 01 pm  to : michael j popkin / enron _ development @ enron _ development  cc : shirley crenshaw / hou / ect @ ect , vince j kaminski / hou / ect @ ect  subject : re : sorry  monday 4 / 10 looks fine .  vince  michael j popkin @ enron _ development  04 / 05 / 2000 02 : 55 pm  to : vince j kaminski / hou / ect @ ect  cc : shirley crenshaw / hou / ect @ ect  subject : re : sorry  vince ,  i am not totally clear from your note on your availability . are you free  next monday ( 4 / 10 ) ?  michael  vince j kaminski @ ect  04 / 05 / 2000 02 : 45 pm  to : michael j popkin / enron _ development @ enron _ development  cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect  subject : re : sorry  michael ,  next week starting friday . outr on thu and fri .  vince  michael j popkin @ enron _ development  04 / 05 / 2000 12 : 54 pm  to : vince j kaminski @ ect  cc :  subject : sorry  vince ,  sorry about lunch yesterday . i hope you got the message in time that i was  out sick . i ' d like to rescheduel . when are you free ?  michael\",0\n\"Subject: re : enron contact info  christie ,  thanks again for taking the time to visit wharton and share about enron  and our upcoming project . i know each of us is excited about the opportunity  to learn and contribute to enron . specifically , thank you for the awesome  dinner at the palladium . it was a great way to get to know you , visant , and  vince better .  i look forward to visiting houston in january . please let me know if  you need any additional information with regard to the trip . have a great  holiday season , and i look forward to seeing each of you in january .  sincerely ,  jason cummins  - - - - - original message - - - - -  from : christie . patrick @ enron . com  to : fap @ management . wharton . upenn . edu  cc : clayton . degiacinto . wgo 2 @ wharton . upenn . edu ; mallikd @ wharton . upenn . edu ;  dennis . feerick . wgo 2 @ wharton . upenn . edu ; edsono @ wharton . upenn . edu ;  gustavop @ wharton . upenn . edu ; hethorne @ wharton . upenn . edu ;  jack . rejtman . wgo 2 @ wharton . upenn . edu ; singhjai @ wharton . upenn . edu ;  marc . cummins . wgo 2 @ wharton . upenn . edu ; levent 86 @ wharton . upenn . edu ;  whitselk @ wharton . upenn . edu ; thomas @ wharton . upenn . edu ;  camoglum @ wharton . upenn . edu ; nicholas . levitt . wgo 2 @ wharton . upenn . edu ;  bassalo @ wharton . upenn . edu ; mhenahan @ wharton . upenn . edu ;  mvittal @ wharton . upenn . edu ; stephen . lessar . wgo 2 @ wharton . upenn . edu ;  bhallat @ wharton . upenn . edu ; vincent . chen . wgo 2 @ wharton . upenn . edu ;  weigelt @ wharton . upenn . edu ; fap @ management . wharton . upenn . edu ;  christie . patrick @ enron . com ; vkamins @ enron . com ; jeffrey . a . shankman @ enron . com  sent : 12 / 7 / 2000 7 : 33 pm  subject : re : enron contact info  hi evryone !  vince , vasant and i are very excited about the tiger project ! we all  thoroughly enjoyed the opportunity to meet with such an incredibly  interesting , enthusiastic and intelligent group . thank you for your  time !  for those interested in the houston trip on january 18 - 19 th , please let  me  know by the 15 th of december so that i can get the best deal on air fare  ( one - month in advance ) .  also , i ' ll be forwarding the enron information packages to donna piazze  for  your receipt next week . i am including jeff shankman in this reply , as  jeff is a wharton grad , leader of one of our enron business units , and  one  of the most enthusiastic enron / wharton cheerleaders .  please feel free to individually contact me if there is anything i can  do  for any of you .  thanks again for your enthusiastic interest in enron !  - - christie .\",0\n\"Subject: summary of dabhol lenders ' presentation  vince / stinson ,  please find below a summary of the presenation given to lenders at the april 23 rd meeting in london .  the key points that emerge are :  phase ii will require commitments of about $ 700 mm to complete ( phase i + ii total $ 3 . 2 billion )  several commercial issues are getting severe in the current environment in india , could result in cost escalations  makes the case that mseb does not have the financial strength to absorb phase ii power  management to seek authority to serve preliminary termination notice ( ptn ) , triggering a 6 month cure period  a copy of the full presenation is available .  regards ,  sandeep .\",0\n\"Subject: james aimone  james aimone is a canditate for a summer position supporting the ena option  pricing and valuation team .  he will be at enron , friday april 28 from 2 : 30 to 4 : 00 .  schedule of interviews :  stinson gibner 2 : 30 - 2 : 45  zimin lu 2 : 45 - 3 : 00  paulo issler 3 : 00 - 3 : 15  elizabeth grant 3 : 30 - 4 : 00  thanks ,  stinson\",0\n\"Subject: shalesh  jim ,  clarification regarding shalesh ' transfer to ebs .  the request to rotate shalesh out of research into ebs  came from ravi thuraisingham . my understanding was that it was  fully coordinated with you and i was more than happy to oblige .  shalesh is concerned that his integrity is being questioned and i can assure  you that he was not the instigator of the move .  my impression is that shalesh is doing a very good job and ravi is very happy  him . i shall be glad to keep him in the research group in his current role .  have a good 4 th of july .  vince\",0\n\"Subject: schedules , maps , etc .  gentlemen :  attached is a schedule of activities as well as maps and driving  instructions for those who are driving to campus friday morning . the dress  for friday is casual ( no ties , sport shirts and jackets if you wish ) .  for those of you who have asked about thursday night ' s dinner please note  that we have pushed it up to 6 - 8 pm at ninfa ' s mexican restaurant . at this  point i plan to pick up bennett s . and don c . from the marriott before 6  and will do the same for anyone else ( let me know ) . the restaurant is in  easy walking distance of the hilton and marriott .  please note the times for your individual interviews / video taping on  friday . some of you are leaving early so we are taping you from 11 - 12  friday morning while others are being taped after the program is over .  i ' m sure i ' ve forgotten something so you ' ll probably get more e - mails .  however , this should take care of the primary stuff . i ' m really looking  forward to seeing all of you and to hearing your thoughts in the workshops .  more later ,  john  - schedule _ map . doc  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: re : weekly report  vasant ,  yes , it ' s perfect . please , indicate that the wording was unfortunate .  vince  vasant shanbhogue  03 / 08 / 2001 11 : 20 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : weekly report  hi vince ,  regarding david port ' s response to kevin kindall ' s email , i feel that i  should respond , at least to make our position clear . please indicate if the  following response is appropriate - - - - - - -  \"\" hi david ,  i understand that you were slightly upset over a comment kevin kindall made  in one of his weekly reports . the intention was never to disparage anybody .  it is just that since research gets data from a large number of sources , we  feel obligated to the data donor to ask any requester for clarification of  need . i completely understand that rac typically has access to much  sensitive information and they have a right to know much information . we  just want to make sure there is open flow of information ( it is in  everybody ' s best interests and the company ' s best interests ) and that  everybody is aware of how data is flowing .  best wishes ,  vasant \"\"  - - - - - - - - - - - - - - - - - - - - - - forwarded by vasant shanbhogue / hou / ect on 03 / 08 / 2001  11 : 11 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : david port / enron @ enronxgate on 03 / 08 / 2001 08 : 46 am  to : kevin kindall / corp / enron @ enron  cc : vince j kaminski / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , rudi  zipter / enron @ enronxgate  subject : re : weekly report  kevin - thanks for the update .  on the stock option plans , if your angle is what i suspect , i suggest you get  with rudi zipter , who has done a great deal of work on this exposure ,  including characterising and actually booking the short option positions in  enron ' s equity system . we are already working with ben glisan ' s team firming  up a hedging program . we are well advanced in this effort so if you get with  my people it could save you a great deal of time .  secondly , i am afraid i do take some exception to your references to naveen ' s  team in your last point . generally in rac i don ' t believe we are obliged to  explain why we need information , except as a courtesy - otherwise that would  compromise our role somewhat . specifically , i am aware of the sensitivity of  raptor , just as i am of the sensitivity of all the information my group is  privvy to on a daily basis . again , we have done a good deal of work on these  structures too ( i see a position report daily ) . as i have discussed with  vince , naveen ' s request would have been derived from a discussion we all had  with rick , concerning \"\" meltdown \"\" scenarios and their effect on , amongst other  things , funding vehicles .  but i would rather have had a conversation about this than see slightly  disparaging remarks about my people in email traffic .  rgds  dp  - - - - - original message - - - - -  from : kindall , kevin  sent : monday , march 05 , 2001 8 : 19 am  to : kaminski , vince ; shanbhogue , vasant  cc : port , david  subject : weekly report  >\",0\n\"Subject: wharton entrepreneurship conference info .  this looks like a great opportunity for us . jeff  - - - - - - - - - - - - - - - - - - - - - - forwarded by jeffrey a shankman / hou / ect on 10 / 04 / 2000  05 : 54 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  kristin gandy @ enron  10 / 04 / 2000 02 : 14 pm  to : jeffrey a shankman / hou / ect @ ect  cc :  subject : wharton entrepreneurship conference info .  do you want to participate in this event ?  kristin  - - - - - - - - - - - - - - - - - - - - - - forwarded by kristin gandy / na / enron on 10 / 04 / 2000  02 : 08 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  cassandra santos on 09 / 29 / 2000 01 : 04 : 21 pm  to : celeste . roberts @ enron . com  cc : kristin . gandy @ enron . com  subject : wharton entrepreneurship conference info .  dear celeste and kristin :  i am re - sending information regarding the wharton entrepreneurship  conference and the opportunities to sponsor the conference as well as  participate in the expo . we are expecting the conference to double in  size with more than 1000 attendees . in addition , we would like to  emphasize that the spirit of entrepreneurship is alive and well outside  of the \"\" dot . com \"\" world including in large , innovative companies such as  enron . we have already lined up some smash hit speakers including  christy jones of trilogy and pcorder as well as anita roddick of the  body shop . we would be very interested to have the participation of  enron in the conferences as a sponsor or at the very least , a  participant in our career expo .  thank you very much for your time and consideration .  sincerely ,  cassandra santos  co - chair , wharton entrepreneurship conference  215 . 732 . 7940 h  215 . 498 . 3243 w  - resend enron . doc  - fundraising packet 2000 . doc\",0\n\"Subject: re : digitals  many thanks .  gillian .\",0\n\"Subject: re : power plant model  hi vince :  number one below is fine . . . the more accurate the ebitda model the better .  your \"\" tweaking \"\" of the model at this point won ' t create any chinese wall  problems .  michelle and gary will talk about the programmer issue on monday , and get  back to you . i apologize if there was any confusion . we ' re certainly  grateful for alex ' s involvement .  today is my last day of associate rotation within the financial trading  group , and i start at ees on monday . i handed off the project as best i  could , and of course will be available if you need me . my e - mail and phone  number will be the same .  have a nice weekend .  jeff  vince j kaminski @ ect  01 / 05 / 2001 03 : 26 pm  to : jeff m gray / na / enron @ enron  cc : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , alex  huang / corp / enron @ enron , gary hickerson / hou / ect @ ect , michelle d  cisneros / hou / ect @ ect  subject : power plant model  jeff ,  a few comments on the model :  1 . we have a few reservations about some features of the model but would like  to  discuss it internally and make the improvements without giving the benefit of  our insights to the consultant .  in general , the model is not unreasonable but the devil is always in the  details and in the inputs and  calibration . the same model may produce drastically different results  depending  on the quality of inputs .  2 . we don ' t have a separate pool of programmers in the research group . we  were told that you  would provide an it resource . alex would supervise this person .  vince\",0\n\"Subject: re : congrats  vince ,  thanks for the note - and congratulations on yours as well .  i haven ' t had too much to do yet with the research guys here as they ' re  pretty much self directed . once a week ( thursday am ) i ' ve started a joint  project update meeting with structuring and research . i hope this way the  structuring team can bounce quantitative issues off research and the research  guys can stay closer to the commercial deals .  - dale  vince j kaminski  11 / 01 / 2000 16 : 08  to : dale surbey / lon / ect @ ect  cc :  subject : congrats  dale ,  congratulations . well deserved . i am very happy your tremendous  contribution to the company has been recognized .  vince\",0\n\"Subject: 1997 risk paper on pricing of electricity derivatives  hello vince ,  my name is bernard murphy - i received your e - mail address from les clewlow ,  who was my phd supervisor at the financia options research centre at warwick  business school . i ' ve just finished my phd on electricity price jump  diffusions : a theoretical and empirical study in incomplete markets -  hence my interest in electricity price modelling and derivative pricing . i  was looking to get hold of a copy of your 1997 paper , which has recently  come to my attention :  \"\" the challenge of pricing & risk - managing electricity derivatives \"\" , the us  power market , risk publications , pp . 149 - 171 .  and les suggested that i contact you directly ( les is travelling at present  and doesn ' t have an electronic copy available ) to request an e - copy .  incidentally , i am lecturer in finance / financial mathematics at university  of limerick ( ireland ) and have taken a year out to work for caminus uk ,  where i am working on introducing and developing a markets - based approach  ( spark - spread ) to real asset valuations in the uk power industry .  thanks in advancve  bernard murphy\",0\n\"Subject: news review update  the news review site , http : / / www . news - review . co . uk  home of weekend city press review , now offers registered users two new  features :  all registered users can now :  - do a text search in addition to a company search on the full six - year  archive  - and set up favourite companies on their home page for easier and faster  access  to articles within the review and the archive which relate to those  companies  the best way to keep abreast of the weekend ' s financial news and views is to  receive an email copy of weekend city press review , either via the full  review ,  or the clippings relating to specific companies in which you are interested .  registered users are invited to take up the free offer of a 4 week  subscription  to any of the services , including pdf delivery of the review , and the  clippings service .  to login please use this url :  ype = login  you can download this weekend ' s full review free of charge at  http : / / www . news - review . co . uk / freepdf . pdf from 8 pm uk time this sunday  your username for this service is vkaminski  if you have forgotton your password you can retrieve it at  to remove yourself from this service please login and use the ' my profile '  option .  our ref wcprvl : vkaminski\",0\n\"Subject: year end 2000 performance feedback  note : you will receive this message each time you are selected as a reviewer .  you have been selected to participate in the year end 2000 performance  management process by providing meaningful feedback on specific employee ( s ) .  your feedback plays an important role in the process , and your participation  is critical to the success of enron ' s performance management goals .  to complete requests for feedback , access pep at http : / / pep . corp . enron . com  and select perform review under performance review services . you may begin  providing feedback immediately and are requested to have all feedback forms  completed by friday , november 17 , 2000 .  if you have any questions regarding pep or your responsibility in the  process , please contact the pep help desk at :  houston : 1 . 713 . 853 . 4777 , option 4  london : 44 . 207 . 783 . 4040 , option 4  email : perfmgmt @ enron . com  thank you for your participation in this important process .  the following is a cumulative list of employee feedback requests with a  status of \"\" open . \"\" once you have submitted or declined an employee ' s request  for feedback , their name will no longer appear on this list .  review group : enron  feedback due date : nov 17 , 2000  employee name supervisor name date selected  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  andrews , naveen c rudi c zipter oct 31 , 2000  baxter , ashley david davies nov 02 , 2000  carson , richard l richard b buy oct 30 , 2000  crenshaw , shirley j wincenty j kaminski oct 26 , 2000  kindall , kevin vasant shanbhogue oct 30 , 2000  lamas vieira pinto , rodrigo david port oct 31 , 2000  supatgiat , chonawee peyton s gibner oct 27 , 2000  tamarchenko , tanya v vasant shanbhogue oct 26 , 2000  villarreal , norma e sheila h walton oct 26 , 2000  walton , sheila h david oxley oct 27 , 2000  yaman , sevil vasant shanbhogue oct 27 , 2000  yuan , ding richard l carson oct 31 , 2000\",0\n\"Subject: summer internship  dr . kaminski ,  sorry for the late response ,  it took me some time to coordinate things .  finally , it ' s almost dont : - )  it turned out that from june to august  will be best for me for work at enron  ( say june . 4 to august . 4 )  but i still need to know several things from your side .  could you answer following questions ?  first :  is my suggested working period is ok with you ?  if so , let me know what to do for settlement  during the period .  second :  i got a list of work , i might be able to do for  dealbench team from ross and suresh .  i ' d like to know it is still a valid work list :  the list he sent is as following :  > 1 . write a paper in layman ' s terms that answers  > questions like the following :  > benefits of auctioning online for both buyers and  > sellers , particularly in reverse auctions  > explanation how multi - variable auctions are not  > as efficient as price - only auctions ( is this true ? )  > how many participants are recommended for a  > successful live auction  > what types of goods and services are best suited  > for live auctions versus sealed bid quotes  > opinions on lotting strategies  > trends in online private auctions  > 2 . identify appropriate recent auction research ( 3  > or 4 papers out of the 90 + you provided ) and obtain approvals from the  > authors to post on our site  > 3 . create a list / bibiliography of relevant auction  > literature ( with hyperlinks ? )  > 4 . would you be willing to offer auction consulting  > services to our customers ( if they are interested )  third :  there is an e - procurement forum at haas school of business ,  in may 22 . the chair of the forum is my advisor prof . arie segev .  a person from wells fargo bank will talk about wells fargo ' s role  in e - marketplace payment initiative ,  where enron broadband services is also one of key players  along with citibank .  he asked me whether you can contact a person at  enron broadband services , who ' s related to the initiative .  he wants to know whether we will have a speaker from enron  to see enron ' s perspective , in the forum .  here is a link to news related to the initiative ,  fourth :  my advisor wants to know whether  there could be any opportunity to do a case study ,  regarding enron ' s business .  he is interested in e - procurement and e - marketplaces .  business model and system architecture . . .  thanks for reading this long email .  i ' ll look forward to your answer . .  i am sorry for giving you so much burden  to answer those questions possibly not easy to answer .  warm regards ,  jinbaek  jinbaek kim  ph . d candidate  dept . of industrial engineering and operations research  u . c . berkeley  http : / / www . ieor . berkeley . edu / ~ jinbaek  go bears !  : \"\" ' . _ . . - - - . . _ . ' \"\" ; ` . . ' . ' ` .  : a a : _ _ . . . . . _  : _ . - 0 - . _ : - - - ' \"\" \"\" ' \"\" - . . . . - - ' \"\" ' .  : . ' : ` . : ` , ` .  ` . : ' - - ' - - ' : . ' ; ;  : ` . _ ` - ' _ . ' ; . '  ` . ' \"\" ' ;  ` . ' ;  ` . ` : ` ;  . ` . ; ; : ;  . ' ` - . ' ; : ; ` .  _ _ . ' . ' . ' : ; ` .  . ' _ _ . ' . ' ` - - . . _ _ _ . _ . ' ; ;  ` . . . . . . ' . ' ` ' \"\" \"\" ' ` . ' ; . . . . . . - '  ` . . . . . . . - ' ` . . . . . . . . '  on mon , 5 mar 2001 vince . j . kaminski @ enron . com wrote :  >  > jinbaek ,  >  > this is fine though you are welcome to spend more  > time with us this summer .  >  > vince  >  >  >  >  >  > jinbaek kim on 03 / 04 / 2001 03 : 45 : 40 pm  >  > to : vince . j . kaminski @ enron . com  > cc :  > subject : re : summer internship  >  >  > dr . kaminski ,  >  > thanks for your answer .  > before i tell you the time frame ,  > i ' ll need to talk with my advisor , first .  > because here is an on - going - project .  > i need to coordinate the schedule .  >  > i ' ll appreciate it if you understand my situation ,  > and give me some time ( less than a week , of course ) .  >  > for your reference ,  > probably  > the dates i ' d like to ask you will be  > from mid - may to mid - july ( 2 months )  >  > warm regards ,  > jinbaek  >  > - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  > jinbaek kim  > ph . d candidate  > dept . of industrial engineering and operations research  > u . c . berkeley  > http : / / www . ieor . berkeley . edu / ~ jinbaek  >  > go bears !  >  > : \"\" ' . _ . . - - - . . _ . ' \"\" ; ` . . ' . ' ` .  > : a a : _ _ . . . . . _  > : _ . - 0 - . _ : - - - ' \"\" \"\" ' \"\" - . . . . - - ' \"\" ' .  > : . ' : ` . : ` , ` .  > ` . : ' - - ' - - ' : . ' ; ;  > : ` . _ ` - ' _ . ' ; . '  > ` . ' \"\" ' ;  > ` . ' ;  > ` . ` : ` ;  > . ` . ; ; : ;  > . ' ` - . ' ; : ; ` .  > _ _ . ' . ' . ' : ; ` .  > . ' _ _ . ' . ' ` - - . . _ _ _ . _ . ' ; ;  > ` . . . . . . ' . ' ` ' \"\" \"\" ' ` . ' ; . . . . . . - '  > ` . . . . . . . - ' ` . . . . . . . . '  >  >  > on fri , 2 mar 2001 vince . j . kaminski @ enron . com wrote :  >  > >  > > jinbaek ,  > >  > > you can coordinate the details with me .  > > let me know what the time frame is for you  > > and we shall send you an appropriate offer .  > >  > > vince  > >  > >  > >  > >  > >  > > jinbaek kim on 03 / 02 / 2001 04 : 43 : 06 pm  > >  > > to : vince . j . kaminski @ enron . com  > > cc :  > > subject : re : summer internship  > >  > >  > > dr . kaminski ,  > >  > > thank you very much .  > > of course , i ' ll be happy to have an opportunity  > > to work at such a wonderful company .  > > i was contacting with surech raghavan at deal bench team ,  > > and was going to express my appreciation to you again  > > after settling down process with them .  > >  > > for the period of working ,  > > i still need to coordinate with my advisor and  > > may need to adjust according to that .  > > but anyway , i ' ll try to coordinate smoothly .  > >  > > please let me know whether i should keep contacting  > > with deal bench team ,  > > for working period and  > > for misc . living support such as finding a place , rent a car , etc .  > >  > > i appreciate you so much again ,  > > for arranging such meetings and giving me an opportunity .  > > all this opportunity will not be available to me ,  > > without your kind help .  > >  > > warm regards ,  > > jinbaek  > >  > > - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  > > jinbaek kim  > > ph . d candidate  > > dept . of industrial engineering and operations research  > > u . c . berkeley  > > http : / / www . ieor . berkeley . edu / ~ jinbaek  > >  > > go bears !  > >  > > : \"\" ' . _ . . - - - . . _ . ' \"\" ; ` . . ' . ' ` .  > > : a a : _ _ . . . . . _  > > : _ . - 0 - . _ : - - - ' \"\" \"\" ' \"\" - . . . . - - ' \"\" ' .  > > : . ' : ` . : ` , ` .  > > ` . : ' - - ' - - ' : . ' ; ;  > > : ` . _ ` - ' _ . ' ; . '  > > ` . ' \"\" ' ;  > > ` . ' ;  > > ` . ` : ` ;  > > . ` . ; ; : ;  > > . ' ` - . ' ; : ; ` .  > > _ _ . ' . ' . ' : ; ` .  > > . ' _ _ . ' . ' ` - - . . _ _ _ . _ . ' ; ;  > > ` . . . . . . ' . ' ` ' \"\" \"\" ' ` . ' ; . . . . . . - '  > > ` . . . . . . . - ' ` . . . . . . . . '  > >  > >  > > on fri , 2 mar 2001 vince . j . kaminski @ enron . com wrote :  > >  > > > hello ,  > > >  > > > sorry for a delay in getting back to you .  > > > we would like very much to offer you a summer internship .  > > >  > > > please , let me know if you are interested .  > > >  > > > vince kaminski  > > >  > > >  > >  > >  > >  > >  > >  > >  >  >  >  >  >  >\",0\n\"Subject: re : enron case studies  eric ,  i have a number of case studies on enron but not the one on sutton bridge .  i know that peter tufano was working on it but when i checked the hbs  site and tried to purchase it , i could not locate it .  when i talked to peter a few months ago , he told me that the case study was  ready  and he was going through enron ' s internal approvals .  i cc mark palmer on it . maybe he knows about this specific case study .  i wander if it was completed , given sutton bridge developments .  vince  eric gadd  11 / 10 / 2000 05 : 49 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : enron case studies  vince -  where might i find copies of the case studies enron has published ? i ' m  particularly interested in the sutton bridge publication for havard but would  like to know if there is a library of case studies .\",0\n\"Subject: earthsat summer seminar  fyi  - - - mike  - - - - - - - - - - - - - - - - - - - - - - forwarded by mike a roberts / hou / ect on 07 / 26 / 2000  05 : 49 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  todd decook  07 / 25 / 2000 01 : 07 pm  to : mike a roberts / hou / ect @ ect , jose marquez / corp / enron @ enron  cc :  subject : earthsat summer seminar  - - - - - - - - - - - - - - -  the earthsat summer seminar can be downloaded from the following site . . .  ?  ?  just click on the above link to download the file , or copy the link and  paste it for the url address in the browser of your choice .  ?  if you have any questions or problems downloading this file , please contact  me ( scott gay ) or dave birmingham at ( 301 ) 231 - 0664 .  ?  - scott  - - -  scott gay ( sgay @ earthsat . com )  staff meteorologist / computer support  cropcast services  earth satellite corporation  phone : ( 301 ) 231 - 0664  fax : ? ? ? ? ( 301 ) 231 - 5246  ?  ?  - imageo 01 . gif\",0\n\"Subject: re : willow and pathstar evaluations  mike ,  we are short manpower in london . we shall try to  evaluate the software in houston .  vince  \"\" mike curran \"\" on 04 / 24 / 2001 10 : 03 : 24 am  please respond to \"\" mike curran \"\"  to :  cc :  subject : willow and pathstar evaluations  hi vince -  hope all is well with you .  sharad hasn ' t had time to evaluate our willow tree or monte carlo software  since the middle of last year . is there somebody else that could do it ?  please let me know who i should send the evaluation to .  best regards ,  michael curran  ceo  quantin ' leap limited  piercy house  7 copthall avenue  london ec 2 r 7 nj  tel : + 44 ( 0 ) 20 7562 3450  fax : + 44 ( 0 ) 20 7562 3411  mailto : mcurran @ quantinleap . com  http : / / www . quantinleap . com\",0\n\"Subject: re : get together for dinner  vasant ,  thanks for the invitation . it works for me .  vince  vasant shanbhogue  10 / 27 / 2000 01 : 49 pm  to : massong @ epenergy . com , vince j kaminski / hou / ect @ ect , stinson  gibner / hou / ect @ ect , pinnamaneni krishnarao / hou / ect @ ect  cc :  subject : get together for dinner  hi everyone ,  before grant leaves houston , i wanted to have a small get - together at my  house for dinner . since everybody is very busy , i want to schedule a date  well in advance , so i am suggesting saturday , dec 2 . this will be dinner  with family . please let me know if this works for you .  thanks ,  vasant\",0\n\"Subject: power 2001  paul ,  my apologies for a delay in getting back to you with my bullet points . the  beginning of the year was quite hectic . i am working from home today , trying  to catch up .  the program for the 2001 conference looks great ; it ' s likely to be the most  interesting and best attended eprm conference ( hopefully , some players will  be still around ) .  to answer some of your questions :  1 . i shall be glad to serve on the panel  2 . the title of the talk is fine ( american spelling of modelling is modeling )  3 . bullet points will follow in the next message ( i shall send it in a few  minutes )  4 . vincent kaminski , managing director , enron corp .  5 . vincent kaminski  ? ? ? enron corp .  ? ? ? 1400 smith  ? ? ? room ebl 962  ? ? ? houston , tx 77002  ? ? ? ? ? ? regards ,  vince\",0\n\"Subject: resume of mark giancola  attached is the resume of mark giancola . mark is the husband of penny pan , a  uva business school student for whom i was mentor last summer . penny has  received a permanent offer and is inclined to accept if her husband can find  suitable employment in houston . as you will see from his resume , mark has  worked as an economist in the public and private sectors for the past 2 . 5  years . mark is interested in a role where he can use his abilities to  analyze political , credit currency and related risks . please let me know if  you have any interest . thanks , rich  john : is there a place here in enroncredit . com ?  _ _ _ _ _ _ _ _ _  penny mentioned that you might have some ideas about job opportunities  in houston for someone with my background . as you know , penny was  pleased to receive an offer from enron and i plan to earnestly look into  the houston job market myself .  the weeks leading up to the annual imf / world bank meetings are one of  the busiest times of year for us , but now that they are over i have had a  chance to update my resume ( attached ) . i would be grateful if you  would take a look and pass it on to anyone you think might be interested .  as you will see , most of my background is policy related , and most  recently international economic policy . however the skills i have  developed have applicability in the private sector as well . for example , a  large part of my job at the treasury involves sovereign risk analysis .  two possible avenues i see for building on this knowledge are : 1 )  applying my knowledge to decisions regarding allocation of global  financial assets ; or 2 ) identifying risks facing a mutinational company and  developing strategies to reduce that risk .  i should mention that in addition to my economics training i do understand  basic finance , and i am preparing to begin the cfa . i should also note  that the work environment here at the treasury is quite fast paced , with  constant deadlines and a great deal of pressure placed on economists . i  tend to work 55 + hours per week so i do not expect i would need to  adjust signifiantly if i were to move to the private sector .  i greatly appreciate your taking the time to look at my resume and giving  some thought to where i might look . i welcome any comments and ideas  you might have .  thanks ,  mark giancola  p . s . the formatting on my resume seems to change whenever i e - mail it ;  let me know if you prefer that i fax it to you .  - resume 8 . doc\",0\n\"Subject: re : address  i trust things are well in houston .  the reason for contacting you is to inquire as to your schedule during the  week  commencing monday 18 th september . i and several of my colleagues would very  much like to meet up with you , however , we are tied up at a large conference  between tuesday through to friday of that week .  is there any chance in meeting with you on monday 18 th ? if so , i will brief  you  more fully on our people and will contact you to discuss an agenda .  regards , allan  * * * * * * * * * * * * * * * * * * * internet email confidentiality footer * * * * * * * * * * * * * * * * * * *  privileged / confidential information may be contained in this message . if you  are not the addressee indicated in this message ( or responsible for delivery  of  the message to such person ) , you may not copy or deliver this message to  anyone .  in such case , you should destroy this message and kindly notify the sender by  reply email . please advise immediately if you or your employer do not consent  to  internet email for messages of this kind . opinions , conclusions and other  information in this message that do not relate to the official business of my  firm shall be understood as neither given nor endorsed by it .\",0\n\"Subject: re : pre - meeting weathereffects site cruise  sold ! i ' ll initiate the call .  - - - - - original message - - - - -  from : vince j kaminski [ mailto : vince . j . kaminski @ enron . com ]  sent : friday , june 30 , 2000 3 : 44 pm  to : ekrapels @ esaibos . com  cc : vince j kaminski  subject : re : pre - meeting weathereffects site cruise  ed ,  thursday works for me . what about 10 : 30 my time ?  vince  \"\" edward krapels \"\" on 06 / 30 / 2000 02 : 43 : 00 pm  please respond to  to : \"\" ' vince j kaminski ' \"\"  cc :  subject : re : pre - meeting weathereffects site cruise  how about thursday , july 6 ?  - - - - - original message - - - - -  from : vince j kaminski [ mailto : vince . j . kaminski @ enron . com ]  sent : friday , june 30 , 2000 3 : 29 pm  to : ekrapels @ esaibos . com  cc : vince j kaminski  subject : re : pre - meeting weathereffects site cruise  ed ,  a correction . i shall spend an entire day at prc ( performance review )  on friday , july 7 . can we do on another day  vince  \"\" edward krapels \"\" on 06 / 30 / 2000 12 : 40 : 59 pm  please respond to  to : \"\" ' vince j kaminski ' \"\"  cc :  subject : re : pre - meeting weathereffects site cruise  i ' ll still be here in boston so we ' d do it over the phone . ok ?  - - - - - original message - - - - -  from : vince j kaminski [ mailto : vince . j . kaminski @ enron . com ]  sent : friday , june 30 , 2000 12 : 11 pm  to : ekrapels @ esaibos . com  cc : vince j kaminski  subject : re : pre - meeting weathereffects site cruise  ed ,  will you be in houston on that day or we shall do it over the phone ?  vince  \"\" edward krapels \"\" on 06 / 30 / 2000 09 : 13 : 04 am  please respond to  to : \"\" ' vince j kaminski ' \"\"  cc : \"\" jeffrey shorter \\ ( e - mail \\ ) \"\"  subject : pre - meeting weathereffects site cruise  vince ,  how about a pre - meeting web site cruise on friday , july 7 at 11 am edt ?  ed  - - - - - original message - - - - -  from : vince j kaminski [ mailto : vince . j . kaminski @ enron . com ]  sent : friday , june 30 , 2000 9 : 52 am  to : ekrapels @ esaibos . com  cc : vince j kaminski  subject : re : next visit to houston  ed ,  july 12 , 2 : 30 it is . i would like the pre - meeting site cruise .  how can we arrange it ?  vince  \"\" edward krapels \"\" on 06 / 30 / 2000 04 : 00 : 53 am  please respond to  to : \"\" ' vince j kaminski ' \"\"  cc : \"\" jeffrey shorter \\ ( e - mail \\ ) \"\"  subject : re : next visit to houston  vince ,  we ' re all set for 2 : 30 on july 12 . how about a pre - meeting web site cruise  on friday , july 7 at 11 am edt ?  ed  - - - - - original message - - - - -  from : vince j kaminski [ mailto : vince . j . kaminski @ enron . com ]  sent : thursday , june 29 , 2000 5 : 04 pm  to : ekrapels @ esaibos . com  cc : vince j kaminski ; shirley crenshaw  subject : re : next visit to houston  ed ,  wednesday , july 12 , 2 : 300 will work for me .  i shall be glad to review your website - -  www . weathereffects . com . i shall invite some  people who work on electricity in  my group to join me .  vince  \"\" edward krapels \"\" on 06 / 29 / 2000 03 : 53 : 40 pm  please respond to  to : \"\" ' vince j kaminski ' \"\"  cc : \"\" jeffrey shorter \\ ( e - mail \\ ) \"\"  subject : re : next visit to houston  vince ,  good to hear from you and i ' m glad you ' re available . how is wednesday at  2 : 30 ?  i did look at eol and am not surprised to see its quality . i was unable to  say much about it in my risk electricity hedging and trading report because  of deadline pressures . how is the site doing ? i am intrigued by the  competition for trading platforms and was astonished to hear that goldman ,  morgan , bp and shell were going to launch a site to compete with yours . talk  about a shotgun marriage !  if we have time next week , i could step you through our website - -  www . weathereffects . com . i ' m very proud of what we ' ve done . i can ' t give out  a password yet but would be happy to walk through the site with you over the  phone using my password . it ' s a very ambitious site - - with state - of - the - art  wsi weather ( seasonal , 6 - 10 , and day to day ) driving a good load model for  pjm and nepool . esai contributes oil and gas input price forecasts , capacity  judgments , and \"\" herding \"\" ideas to develop power price forecasts for same  time periods . after one month ' s full - bore effort , i ' m pleased with the  results ( e . g . , we forecast nepool onpeak to be $ 43 and it turned out $ 46 ) .  have a great weekend .  ed  - - - - - original message - - - - -  from : vince j kaminski [ mailto : vince . j . kaminski @ enron . com ]  sent : wednesday , june 28 , 2000 5 : 29 pm  to : ekrapels @ esaibos . com  cc : vince j kaminski ; shirley crenshaw  subject : re : next visit to houston  ed ,  i shall be available on both days . what about wednesday ,  july 12 , between 1 : 30 and 4 : 00 . please , let me know  what time would work for you .  it will be nice to see you again .  vince  p . s . by the way , did you have a chance to take a look at the eol ?  \"\" edward krapels \"\" on 06 / 28 / 2000 02 : 49 : 41 pm  please respond to ekrapels @ esaibos . com  to : vince j kaminski / hou / ect @ ect  cc :  subject : next visit to houston  dear vince ,  i will be returning to houston during the week of july 10 .  esai and weather services international have launched - - after more than 18  months of r & d - - our service , called energycast power trader and energycast  gas trader , for power traders in nepool and pjm . i would be happy to review  the service with you as well as take you on a tour of our web site . are you  available on july 12 - 13 ?  sincerely ,  ed krapels\",0\n\"Subject: saturday  on saturday i came to work and did some things that i needed to do .  also , there were some things left undone that i felt i should do .  mainly the conference room - we will schedule all birthday ' s and meetings in  the large conference room therefore , i made the room look more spacious .  also on monday - we need to check with the painters too see if they are going  to repair our walls .  we also need to get the additional pictures from the cage and get  them placed on the wall whereby the move can be completed .  if either of you have any questions or know of more things to do please  let ' s get together and discuss .  thanks  kevin moore\",0\n\"Subject: re : enron default swaps  darrell ,  i am sending you 2 technical notes on enron default swaps : i hope that they  will  be useful . i shall read the articles on weekend . i am curious if you  find these explanations satisfactory .  we are very slow in preparing a number of technical documents  for you for model reviews . we still hope you will be able  to find some time to review our credit models ( for our london  credit trading ) and var and option pricing related models .  also , please check your invoices . i still think we owe you money .  vince  darrell duffie on 03 / 28 / 2001 08 : 07 : 38 am  to : vince j kaminski  cc :  subject : re : enron default swaps  vince : according to a bank of america  publication , your ( enron ) default swap spreads  are consistently trading about 80  basis points wider than your asset swaps .  any idea of what is going on here ?  thanks for any guidance , darrell  darrell duffie  mail gsb stanford ca 94305 - 5015 usa  phone 650 723 1976  fax 650 725 7979  email duffie @ stanford . edu  web http : / / www . stanford . edu / ~ duffie / \",0\n\"Subject: re :  cantekin ,  can you figure out the reason for cocoa beans var fluctuations ?  the same is true of aluminum . i assume this is the position change .  vince  cantekin dincerler  07 / 26 / 2000 09 : 28 am  to : anjam ahmad / lon / ect @ ect , kirstee hewitt / lon / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject :  anjam and kirstee ,  as i have suspected the position as of 6 / 30 vs 7 / 19 makes the difference . the  first table first column is my var number with 6 / 30 position and gold & silver  prices , the second column is your var with 7 / 19 position and dummy  gold & silver prices . the second table first column is my var with 7 / 19  position and 6 / 30 gold & silver prices , the second column is as before .  i would ask you to plug the gold and silver prices and see what kind of  numbers you get in order to verify we are on the same page . please refer to  modelvar 2000 . xls that i have sent you for gold & silver prices and  volatilities .  thank you ,  cantekin  table 1  table 2\",0\n\"Subject: re : research sign off  i totally agree . what you list is all we are after .  steven leppard  29 / 01 / 2001 15 : 45  to : james new / lon / ect @ ect  cc : tani nath / lon / ect @ ect , ted murphy / lon / ect @ ect , vince j  kaminski / hou / ect @ ect  subject : re : research sign off  james  i agree with what you say - my view is that research can :  - assess a model ;  - state what the model does ;  - give a view of how closely the model achieves its objectives ;  - assess what the risks of using the model are .  it is for rac to determine whether enron is prepared to accept this risk . i  discussed this issue with ted , and he seems to agree with this broad  splitting of responsibilities .  steve  james new  29 / 01 / 2001 13 : 59  to : steven leppard / lon / ect @ ect  cc : sharad agnihotri / lon / ect @ ect , tani nath / lon / ect @ ect , ted  murphy / lon / ect @ ect , vince j kaminski / hou / ect @ ect  subject : re : research sign off  steve ,  i understand your comments but the ' sign off ' is a cross functional thing and  research are effectively only being asked to sign off their part which is  broadly as you describe below . if you have doubts as to the interpretation of  a research sign off then it should be qualified to state what you are  prepared to sign off on . other functions should be asked to do like wise for  their area which will mean that when all areas have signed off their part  the picture is complete . somebody needs to coordinate this and usually in  london it is the risk management guy .  does this make sense ?  steven leppard  24 / 01 / 2001 09 : 42  to : sharad agnihotri / lon / ect @ ect  cc : tani nath / lon / ect @ ect , ted murphy / lon / ect @ ect , james new / lon / ect @ ect ,  vince j kaminski / hou / ect @ ect  subject : research sign off  hi sharad  i note from our discussion earlier this morning that you ' ve been asked to  sign off a calculation from another group , which is something we ' re asked to  do from time to time .  i take the view that we in research can assess a computation in terms of what  it achieves with respect to its requirements , what its shortfalls are , and  therefore what the risks associated with using this method are . we cannot  provide an opinion on whether these risks are acceptable to enron , which i  feel falls firmly within rac territory .  this then raises the question of can research sign off anything for other  groups after all ? to \"\" sign off \"\" means to accept something , which our opinion  in itself cannot do . it is most appropriate for us to provide a technical  note outlining the methodology , risks and shortcomings of a method , leaving  the formal \"\" sign off \"\" to those best placed to assess these risks for our  company . the alternative is for multiple groups each to have their own view  on what is acceptable risk for the company .  steve\",0\n\"Subject: re : real options presentation  thanks for the comments grant . the presentation is for a couple of external  conferences that vince volunteered me for - vince has ok ' d the content , and  stinson raised exactly the same issues as you . unfortunately i just don ' t  seem to be getting any response from risk whatsoever on the publication of my  article , so these conferences will be the public debut for my real options  notation .  of course the discounting / risk neutrality thing is where the real judgement  sits . when questions arise i ' ll take the line that while research formulates  the models using appropriate derivatives / market based valuation methods , we  work with our rac group which considers the discounting to be associated with  various risks , and chooses these rates appropriately . the notation makes  clear which uncertainties we are exposed to at different stages of the deals ,  which assists in choosing the rates .  in practice i ' m not yet at the stage where originators are using my notation  yet - another reason i can ' t say too much about its actual use at the  conference . i ' m producing various tools for deterministic hydro  optimization , gbm swing option valuation , and deterministic dp optimization  for genset dispatch which people want right now - i ' m working in the  background on the kind of modelling my notation demands . people are getting  to know me as a guy who can solve their immediate problems , and they ' ll be  more likely to listen when i start rolling out the \"\" proper \"\" options - based  models . my notation is currently used only in the specs i ' m writing for the  tools i ' m producing .  i ' ll be turning dale ' s spreadsheet - based power plant spread model into an  american monte carlo tool , which will then be available for inclusion in  other models . i think by the end of the summer the real options theoretical  work will start to bear fruit , one year after i initially proposed the  notation . with the quant it group i ' m co - creating in place , i may yet see  the automated diagramming / pricing tool made real .  thanks also for the pointer to tom halliburton . the use of the lingo  lp / integer package is something i ' ve been presented with for the teesside  plant operation optimizer , rather than something i chose . the perm ( physical  energy risk mgt ) group just got a couple of analysts to hack it together  ( including natasha danilochkina ) , then asked me to tidy it up when it didn ' t  work . they are going to use their existing faulty model for now ( to meet  their project deadlines ) , and i ' m sketching out a proper mathematical spec  for the problem .  i ' ve persuaded ( ! ) them that this sort of business - critical system should be  developed properly by research , and they now seem happy to fall into line .  their wilton plant optimizer was developed by one peter morawitz , the guy i  hoped to recruit into research , and they obviously didn ' t realise he was  better than average at quantitative modelling . anyway they now accept that  doing it properly will take months rather than weeks , and i ' ll have a freer  hand in my choice of modelling tool - so a chat with tom would be extremely  valuable .  cheers ,  steve  enron capital is  this an internal enron or external presentation ? if external , i would say it  is just at the limit before sliding into proprietary stuff . perhaps that ' s  why you ' ve neatly almost entirely avoided questions about discounting and  risk - neutrality or lack of it ?  regards ,  grant .\",0\n\"Subject: re : backtesting  naveen ,  most of these tests have been already coded . the code and the associated  spreadsheets may have been lost inn the sands of time . please , check with  vasant : it may save you some time .  vince  naveen andrews @ enron  08 / 23 / 2000 05 : 51 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : backtesting  vince ,  i am currently implementing the backtesting features into our  risk management system . i distributed the following document at our research  meeting today ; it outlines the conventional binomial test and some other  tests , including the basle regulatory test . of course , no one test is  powerful and the efficacy of these tests breakdown for low sample sizes ,  etc . if you can think of other tests to complement these , please let me know .  regards  naveen\",0\n\"Subject: invitation to sunday dinner with vince @ 6 . 45 pm  dinner changed to 6 . 45 pm - 6 . 30 pm is too early for them . table for 4 booked  under vince ' s name .  regards ,  anjam  x 35383  - - - - - - - - - - - - - - - - - - - - - - forwarded by anjam ahmad / lon / ect on 17 / 02 / 2000 17 : 55  - - - - - - - - - - - - - - - - - - - - - - - - - - -  anjam ahmad  14 / 02 / 2000 15 : 48  to : steven leppard / lon / ect @ ect , benjamin parsons / lon / ect @ ect  cc : shirley crenshaw / hou / ect @ ect , vince j kaminski / hou / ect @ ect  subject : invitation to sunday dinner with vince @ 6 . 30 pm  hi steve & ben ,  we are planning an early sunday dinner ( one of the few evening slots that are  free in vince ' s schedule ) at :  diverso restaurant  85 piccadilly  london wlv 9 hd  tel : 020 7491 2222  it ' s just a few yards to the left of park lane hotel on park lane , close to  hyde park corner underground and we ' ve been there before . vince would like  to discuss the latest developments and it seems like the best opportunity to  do so . please let me know if you can make it and i can make sure the table  is booked accordingly .  regards ,  anjam  x 35383  p . s . vince will be staying at the park lane hotel , telephone number 0171 499  6321\",0\n\"Subject: re : presentation  dawn ,  i met david sobotka from koch this morning and we talked about coordinating  our presentations .  this means there will be changes intended to avoid overlaps . sorry for that .  the portions of my presentation  will survive ( those about valuation paradigms ) and i shall add a few more  pages on accounting treatment of weather derivatives  plus more specific examples . david will cover primarily market evolution +  plus examples of some  standard structures , and we shall both give more interesting examples of  specific deals executed by our companies .  i shall send you an updated version of my part next week . let me know what  the deadline is .  vince  \"\" dawn scovill \"\" on 03 / 14 / 2000 07 : 53 : 47 am  to : \"\" vince j kaminski \"\"  cc :  subject : re : presentation  thanks - - would you like me to include these in the conference book ? or do  you anticipate changes ?  dawn  from : dawn scovill , conference coordinator  \"\" powerful new ideas 2000 \"\"  dawn @ perfectmeeting . com  - - - - - original message - - - - -  from : vince j kaminski  to :  cc : shirley crenshaw ; vince j kaminski  ; vince j kaminski  sent : monday , march 13 , 2000 1 : 56 pm  subject : presentation  >  >  > dawn ,  >  > i am sending you an electronic version of my presentation .  >  > vince kaminski  >  > ( see attached file : fplo 400 . ppt )  >\",0\n\"Subject: mark keeter presentation - proposal - solution  the july 6 th meeting from 2 : 30 till 4 : 30 is being held in eb 45 cl\",0\n\"Subject: re : agenda for houston visit  christian ,  good news  vince has approved getting a corporate apartment for your stay  please forward your finalized arrival date and extent of stay and i will  coordinate  - - - mike\",0\n\"Subject: re : recruiting at cmu computational finance program  rick ,  thanks for your message . i am familiar with the computational finance program  and value its high quality .  please , call me next week . the best time is between 7 : 00 and 8 : 30 a . m .  cst .  vince  \"\" rick bryant \"\" on 07 / 26 / 2000 01 : 27 : 23 pm  to : vince j kaminski / hou / ect @ ect  cc : \"\" kevin kindall \"\" , \"\" ken keeley \"\" ,  \"\" sanjay srivastava \"\"  subject : recruiting at cmu computational finance program  vince ,  greetings ! i am the director of the ms in computational finance program at  carnegie mellon . i am following up on a conversation i had with kevin  kindall , a graduate of our program , who gave me your e - mail address and  suggested i contact you as the individual making the recruiting decisions  for the research group at enron .  in speaking with the director of the career opportunity center at the  business school , i am told that although an alison bailey from enron  ( mary . alison . bailey @ enron . com ) has arranged for a sizable block of rooms in  which to conduct interviews on campus on december 11 th , there is as yet no  indication of whether the comp finance students will have opportunity to  compete for these spaces .  we are regarded by many in the industry as the top quantitative finance  program in the country . focused on derivative pricing , econometrics , var  and portfolio management , our graduates should be an excellent fit for your  business . i would be happy to talk with you further about our  rogram ( http : / / student . gsia . cmu . edu / mscf / ) as well as our students ' interest  in enron ( the name comes up a lot ! ) . also , if you are interested , we run a  \"\" speaker series \"\" on most friday ' s during the fall and spring that would  give you ( or another in your group ) the opportunity to address our students  in an area of interest . such a meeting would , i think , help you better  understand the careers our students are preparing to pursue as well as give  our students first hand knowledge of enron and its future .  when might be a good time to contact you by telephone ?  thank you for your time .  rick  richard l . bryant  director , computational finance program  carnegie mellon university  graduate school of industrial administration  pittsburgh , pa 15213  phone / fax ( 412 ) 268 - 4592 / ( 412 ) 268 - 6837  http : / / fastweb . gsia . cmu . edu / mscf\",0\n\"Subject: henwood ' s ercot symposium - registration confirmation  dear vince ,  thank you for registering for henwood ' s ercot symposium on january 23 , 2001 .  we are pleased to confirm your attendance . attached is a copy of the  program agenda . as indicated , registration will begin at 9 : 30 am . the  program begins at 10 : 00 am and runs until 3 : 00 pm . lunch along with  refreshments will be provided . demonstrations of henwood ' s software  applications and ebusiness solutions will be available following the  workshop for interested parties .  directions to the hyatt regency houston are attached for your convenience .  please do not hesitate to contact me with any questions or concerns that you  may have .  we look forward to seeing you in houston !  heather mason  marketing assistant  henwood energy services , inc .  2710 gateway oaks dr .  suite 300 n  sacramento , ca 95833  phone : ( 916 ) 569 - 0985  fax : ( 916 ) 569 - 0999  - agenda version b . doc  - hyatt directions . doc\",0\n\"Subject: update on mg var model  hi vince ,  thanks for the e - mail . we have included live links to price curves through  reuters quotes via telerate bridge but we still have static curves for gold  and cocoa . kirstee is talking to andreas in ny to obtain position files on a  daily basis , addressing point 2 ) in your e - mail , as well as looking into  longer term integration issues . cantekin and i have agreed the correct  correlations for the metals between us , but cantekin is currently checking  the correlations for silver and gold . preliminary results based on positions  as of 19 th july are as follows :  we noticed that position mapping at the front months can change var  significantly .  as you stated , kirstee hewitt will now be assuming responsibility for further  modifications to the model on the london side and to this end i have ensured  that kirstee is put in touch with key personnel like andreas ( andreas will be  in the london office next week ) and has access to all the information she  needs .  regards ,  anjam ahmad  research  x 35383  spreadsheet :\",0\n\"Subject: confirmation of your order  this is an automatic confirmation of the order you have placed using it  central .  request number : ecth - 4 r 5 mlm  order for : vince j kaminski  1 x ( standard desktop $ 1262 )  1 x ( standard 21 \"\" monitor $ 739 ) enron it purchasing\",0\n\"Subject: re : visit to enron by professor nalin kulatilaka of boston  university  hi iris :  may 17 th is fine . he will probably need to come in the night before ( the 16 th )  and he can make a hotel reservation at the doubletree or the hyatt and tell  them he is a guest of enron and he will get a corporate rate . we will reimburse  him for room expense only . he will need to pick up any miscellaneous room  charges . we will also reimburse him for his flight expense and cab fare .  the doubletree telephone # is : 713 - 759 - 0202 and the hyatt telephone is :  713 - 654 - 1234 .  he can either leave his receipts with me when he is here or mail them  to me and i will have a check cut . i will need his ss # .  if you have any more questions , please let me know .  thanks !  shirley  from : iris mack / enron @ enronxgate on 04 / 20 / 2001 04 : 32 pm  to : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , shirley crenshaw / houston / eott @ eott  cc : nalink @ bu . edu @ smtp @ enronxgate  subject : re : visit to enron by professor nalin kulatilaka of boston university  hi shirley ,  vince has requested that we invite professor nalin kulatilaka of boston university to speak at one of our thursday group luncheons / seminars .  nalin says he is available to speak on may 17 th .  can you let me know if this is okay , and what the procedure is for invited speakers .  thanks and have a good weekend ,  iris\",0\n\"Subject: re : hib visa application - sevil yaman  margaret ,  thanks for reminding me this issue . i think i ' ll be fine until i start full time here in the research group . as you know right now i am using curricular practical training as work permission . and until i graduate i am allowed do as many as part time cpt i want to do . because of tax purposes i think i ' ll use this right given to me . in this case , what i need to do is that after i and vince make sure about my full time start date ( this may happen in the beginning of 2002 ) , i ' ll let you know and send you the necessary document you require to initiate my hlb visa application process . thanks again .  sevil ,  margaret daffin @ ect  25 - 04 - 2001 12 : 04  to : sevil yaman / corp / enron @ enron  cc : norma villarreal / enron @ enronxgate , vince j kaminski / hou / ect @ ect , ramona perkins / enron @ enronxgate  subject : hib visa application - sevil yaman  sevil : please let me know when you will be sending me the information for your hib visa ?  thanks  margaret  - - - - - - - - - - - - - - - - - - - - - - forwarded by margaret daffin / hou / ect on 04 / 25 / 2001 12 : 03 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  margaret daffin  04 / 10 / 2001 04 : 04 pm  to : sevil yaman / corp / enron @ enron  cc : norma villarreal / enron @ enronxgate , vince j kaminski / hou / ect @ ect , ramona perkins / enron @ enronxgate  subject : hib visa application - sevil yaman  sevil : in order that we may proceed with your request for permanent residency , our immigration attorneys have advised us that we need to process the hib visa , prior to the permanent residency application .  therefore , i am attaching an hib visa questionnaire that i would like you to complete and return to me , together with copies of all of the documents listed at the bottom of the form .  please bring these to me in 3 ac 2026 a .  please let me know if you have any questions at x 55083 .  thank you  margaret\",0\n\"Subject: re : enron / stanford program  nick ,  i shall be in stanford oct 14 - 15 , visiting my family .  i would be glad to meet you ( and possibly giuseppe - your call ) for lunch .  please , let mer know if you are free on one of these days . saturday would  work better for me .  vince  nick bambos on 09 / 21 / 2000 02 : 09 : 46 pm  to : stinson . gibner @ enron . com  cc : vince . j . kaminski @ enron . com  subject : re : enron / stanford program  stinson ,  great ! i ' m looking forward to a very productive collaboration .  i ' ll immediately start doing giuseppe ' s papers , for him to work  on the enron / stanford program .  many thanks to you and vince , and i hope to see you soon at stanford  or enron . if i remember correctly , vince is visiting stanford in  october .  best regards ,  nick  stinson . gibner @ enron . com wrote :  >  > nick ,  >  > i spoke with paul racicot , head of trading for ebs , north america this  > morning . he said that he is happy to send the $ 100 , 000 for your program  > from his budget . i have forwarded to him the draft letter to accompany  > the funds and will try to follow up to make sure that the money is sent  > promptly .  >  > - - stinson\",0\n\"Subject: re : tony hamilton  chris ,  e hired tony to support global markets but jeff shankman decided that , given  highly specialized nature of his work it makes sense to put him in the  research group , with a dotted line to mike roberts who is running our weather  group .  given that his work will directly and exclusively benefit gm , it makes sense  for research to charge his expenses  to global markets . we can adjust allocations to reflect his contributions to  different sub - units of gm .  tony spent the last few weeks in houston training for his position in london  with mike roberts .  we are very excited about the prospect of working with him .  vince  chris mahoney  04 / 05 / 2001 03 : 56 am  to : tani nath / lon / ect @ ect , mark tawney / enron @ enronxgate , vince j  kaminski / hou / ect @ ect  cc : scott moncrieff / lon / ect @ ect , pierre aury / lon / ect @ ect , christie  marshall / lon / ect @ ect , richard smith / lon / ect @ ect  subject : re : tony hamilton  tony was hired to work for global markets . think costs should be assigned  to vince or mark but if you  believe those costs should be for my group let me know .  tani nath  05 / 04 / 2001 09 : 33  to : chris mahoney / lon / ect @ ect , scott moncrieff / lon / ect @ ect , pierre  aury / lon / ect @ ect  cc : christie marshall / lon / ect @ ect , richard smith / lon / ect @ ect  subject : tony hamilton  i now have tony on one of my rcs ( research ) . i understand he will be doing  weather forecasts for some or all of you , and that he has a desk allocated in  global . i need to recharge his costs - can someone please advise the right  cost centre .  many thanks ,  tani\",0\n\"Subject: timesheets  hello all :  i am afraid i did not allow enough time to do the time sheets by asking for  them by the 15 th and 31 st . i really need these sheets by the 13 th and 28 th  of each month as it takes a good half day to enter all the new times in the  time sheets .  i am resending this , because as of now i have received very few timesheets  and i really need to start imputting the time .  thanks !  shirley  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 07 / 12 / 2000  11 : 25 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  shirley crenshaw  07 / 11 / 2000 03 : 12 pm  to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , pinnamaneni  krishnarao / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , mike a  roberts / hou / ect @ ect , joseph hrgovcic / hou / ect @ ect , grant masson / hou / ect @ ect ,  tanya tamarchenko / hou / ect @ ect , zimin lu / hou / ect @ ect , alexios  kollaros / hou / ees @ ees , martin lin / hou / ect @ ect , maureen raymond / hou / ect @ ect ,  osman sezgen / hou / ees @ ees , paulo issler / hou / ect @ ect , patricia  tlapek / hou / ect @ ect , farouk lalji / hou / ect @ ect , amitava dhar / corp / enron @ enron ,  alex huang / corp / enron @ enron , kevin kindall / corp / enron @ enron , kevin g  moore / hou / ect @ ect , clayton vernon / corp / enron @ enron , william  smith / corp / enron @ enron , yanna crystal / corp / enron @ enron , jose  marquez / corp / enron @ enron , samer takriti / corp / enron @ enron , chonawee  supatgiat / corp / enron @ enron , shalesh ganjoo / hou / ect @ ect , tom  halliburton / corp / enron @ enron , elena chilkina / corp / enron @ enron , cantekin  dincerler / hou / ect @ ect , brad aimone / na / enron @ enron , datren  williams / na / enron @ enron , sevil yaman / corp / enron @ enron , sofya  tamarchenko / na / enron @ enron , bob lee / na / enron @ enron , ainsley  gaddis / na / enron @ enron , gwyn koepke / na / enron @ enron , guiseppe  paleologo / na / enron @ enron , hector campos / hou / ect @ ect , anita  dupont / na / enron @ enron , youyi feng / na / enron @ enron , v charles  weldon / hou / ect @ ect  cc :  subject : timesheets  hello everyone :  well it is almost that time again ! i am going to try something different . i  am  forwarding you the time sheet by email . save the document to whatever  drive you want to and then fill out any off duty time or overtime that you  had  and return to me by email . i will need this by the 15 and 30 ( or 31 st ) of  each  month .  this may work better than hand delivering .  let me know what you think .\",0\n\"Subject: re : 1 / 2 day  kevin ,  i ' m scheduled to attend the quarterly new - hire orientation all day on 16  march . i had planned to work the morning rush and then go over there . can  we cover the noon and 2 : 00 p . m . tasks ?  sam  kevin g moore @ ect  03 / 10 / 2000 07 : 51 am  to : shirley crenshaw / hou / ect @ ect , mike a roberts / hou / ect @ ect , vince j  kaminski / hou / ect @ ect , william smith / corp / enron @ enron  cc :  subject : 1 / 2 day  goodmorning shirley ,  reminder : i have a doctor ' s appointment  on the 16 th of march .  my appointment is for 11 : 30 am .  i plan to leave around 11 : 00 a . m .  thanks  kevin moore\",0\n\"Subject: re : schedule for trip  christie ,  john henderson committed in principle to speaking to the tigers .  please , send him the location info and conform the time ( 2 : 00 p . m . ) .  vince  christie patrick @ ect  01 / 17 / 2001 07 : 46 am  to : \"\" kim whitsel \"\" @ enron  cc : @ enron , @ enron ,  \"\" chen , vincent \"\" @ enron , \"\" levitt , nicholas \"\"  @ enron , \"\" bhalla , tulika \"\"  @ enron , \"\" mallik , deepa \"\"  @ enron , \"\" whitsel , kimberly \"\"  @ enron , @ enron  subject : re : schedule for trip  hi kim ,  vince and i have received your questions , along with those of other tiger  teams , and we are planning the agenda for the day accordingly .  we look forward to seeing you tomorrow evening at churrasco ' s !  safe travel !  - - christie .\",0\n\"Subject: re : testing ir & fx var  nick and winston ,  i understand that ir & fx var numbers are calculated every day in risktrac .  this results are overwritten  everyday in the database table by the official numbers calculated with the  old version of the code .  for the consistent testing we need historical results for each ir and fx  sub - portfolio .  can we store the numbers every day ?  tanya\",0\n\"Subject: aga for 7 / 7 is forecasted at 68  the aga weekly change for the week ending on 7 / 7 is at 68 .  the model predicted 66 for 6 / 30 , it came out at 69 .  the following graph depicts the past performance .  mike ,  where can i get the temperature data ? i believe the model can be further  improved by incorporating some  explanatory variables like temperature .\",0\n\"Subject: hotel for the wharton trip  jennifer ,  this is the address of the hotel within a walking distance to the wharton  school .  please , make the reservation for jeff shankman at this hotel for the december  the 6 th meeting .  vince kaminski  http : / / www . innatpenn . com / contact . html  the inn at penn  sansom common , 3600 sansom street  philadelphia , pa . 19104  phone : 1 - 800 - 809 - 7001  fax : 215 - 222 - 4600  please , mention that the stay is related to the university business  when making the reservation .  tom piazze at wharton can confirm it .  tom piazze  phone : ( 215 ) 898 1615  piazzet @ wharton . upenn . edu\",0\n\"Subject: 2 - survey / information email 5 - 7 - 01  current notes user :  to ensure that you experience a successful migration from notes to outlook ,  it is necessary to gather individual user information prior to your date of  migration . please take a few minutes to completely fill out the following  survey . when you finish , simply click on the ' reply ' button then hit ' send '  your survey will automatically be sent to the outlook 2000 migration mailbox .  thank you .  outlook 2000 migration team  full name :  login id :  extension :  office location :  what type of computer do you have ? ( desktop , laptop , both )  do you have a pda ? if yes , what type do you have : ( none , ipaq , palm pilot ,  jornada )  do you have permission to access anyone ' s email / calendar ?  if yes , who ?  does anyone have permission to access your email / calendar ?  if yes , who ?  are you responsible for updating anyone else ' s address book ?  if yes , who ?  is anyone else responsible for updating your address book ?  if yes , who ?  do you have access to a shared calendar ?  if yes , which shared calendar ?  do you have any distribution groups that messaging maintains for you ( for  mass mailings ) ?  if yes , please list here :  please list all notes databases applications that you currently use :  in our efforts to plan the exact date / time of your migration , we also will  need to know :  what are your normal work hours ? from : to :  will you be out of the office in the near future for vacation , leave , etc ?  if so , when ? from ( mm / dd / yy ) : to ( mm / dd / yy ) :\",0\n\"Subject: your approval is requested  please be informed that you have one or more srrs requests that are  outstanding due to a pending action to approve or reject decision on your  part . please go to the srrs ( lotus notes desktop icon ) and select the  \"\" requests awaiting my approval \"\" option and complete the necessary action .  more srrs request information can be seen within the request by clicking on  \"\" resource display \"\" .  your response will enable the srrs process to continue for eventual closure .  thank you ,  information risk management\",0\n\"Subject: summer internship  dear mr . kaminski  i am currently pursuing the m . s . in ieor at uc berkeley . i attended the  speech you gave some weeks ago .  i am interested in summer internship positions available in enron . you will  find enclosed my resume .  sincerely ,  ezequiel luis  este mensaje fue enviado desde http : / / commcenter . infosel . com  internet gratis  http : / / www . terra . com . mx / terralibre  - resume elm . doc\",0\n\"Subject: met office presentation . . .  vince -  just fyi to keep you informed on our ews european effort . . .  steve is doing a good job taking the bull by the horns ,  i asked him to rapidly build a client base and associated support system  looking good !  - mike  - - - - - - - - - - - - - - - - - - - - - - forwarded by mike a roberts / hou / ect on 04 / 10 / 2001  08 : 31 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron north america corp .  from : stephen bennett @ enron 04 / 10 / 2001 08 : 10 am  to : annette harris / lon / ect @ ect  cc : tony hamilton / eu / enron @ enron , mike a roberts / hou / ect @ ect , jose  marquez / corp / enron @ enron  subject : met office presentation . . .  annette . . .  we just wanted to drop you a quick line to thank you for the invitation to  the uk met presentation today ! tony and i are currently trying to get a  grasp of what the traders here require in the way of weather information and  are building a support structure for them . as such - we will need to have  close ties with the uk met office as well as other data providers . the  information presented today was very helpful .  we ' d like to take a little time to sit down with you - and / or some of the  other participants whose markets are weather driven . we ' d like to get a feel  for what data is already streaming in - and then get an idea as to how we can  utilize and supplement that data for the europe markets . we have a model  created in houston to start from - but we want to make sure to tailor to the  needs of the traders here .  would you like to take some time to sit down and chat ? perhaps tony and i  can take you and some others out to lunch - or for an afternoon coffee ?  thanks for your help . . .  stephen bennett  senior meteorologist  enron research  in london : april 7 - 27 : ext - 34761  tony hamilton  meteorology manager  enron research  ext . 3 - 2523\",0\n\"Subject: re : var and credit meeting on wednesday , april 11 at 11 : 30 am  everybody ,  this week our regular meeting will be devoted primarily to 2 subjects :  1 . simulating power prices in var ;  2 . capturing correlations across commodities as well as across term structure  of  forward prices .  research will present some suggestions based on data analysis .  detailed agenda is enclosed .  please , let shirley crenshaw know if you are not planning to attend .  tanya .\",0\n\"Subject: re : enron cover letter & resume for dave gershenson  vincent ,  i have forwarded the resume to our analysts / associate pool with  a recommendation to accept david as a summer intern .  i expressed interest in taking him into my group . he may , of course ,  work for a different unit of enron . it ' s up to him and i shall not be offended  if he would like to go into trading or deal origination .  vince\",0\n\"Subject: pr department  vince , i received this inquiry about you . i am forwarding it to you so you  can respond to it or politely tell them your not interested .  - - - - - - - - - - - - - - - - - - - - - - forwarded by cindy derecskey / corp / enron on 07 / 18 / 2000  12 : 03 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" alex . bandini \"\" on 07 / 18 / 2000 11 : 10 : 23  am  please respond to  to :  cc :  subject :  dear sir / madam ,  i am writing on behalf of petroleum economics ltd , an energy consultancy  firm based in london . we are currently updating our lists of contact  addresses , and i would be most grateful if you could pass on contact details  for mr vince kaminski , your head of quantitative research .  yours faithfully  alex bandini  alex bandini  petroleum economics limited  tel : + 44 ( 0 ) 20 - 7553 - 2000  fax : + 44 ( 0 ) 20 - 7553 - 2001  e - mail : alex . bandini @ petroleum - economics . com  http : / / www . petroleum - economics . com\",0\n\"Subject: hi  hi shirley & vince :  happy new year ! i am in our bombay offices for a couple of days , so am able  to contact you . for some reason , the modem dialup from my computer hasn ' t  been working . hope everything is going well in houston . anitha & i have good  news . we are having our second baby . it was confirmed after we came to india .  shirley , i have a favor to ask you on this matter . can you make an  appointment for anitha with her doctor ? the details are as follows :  dr . dolar patolia  tel : 713 - 756 - 5500  name : anitha kakani  dates : jan 29 th or 31 st .  times : in order of preferance , after 3 pm , 12 - 3 pm , 10 am - 12 noon .  reason : pregnant with due date of aug 8 th . needs a full checkup .  anitha is having severe nausea , so she is taking rest most of the time .  pallavi and i are enjoing our vacation thoroughly .  thanks and best wishes ,  krishna .  ph . 011 - 91 - 40 - 7114833  ps : please count jan 16 th & 17 th as working days for me .\",0\n\"Subject: re : f / u to dr . kaminski @ enron from iris mack  molly ,  i would like to invite iris for an interview . you can contact her at the  addresses she listed below  or at her e - mail address .  the following persons will participate at the interview :  stinson gibner  zimin lu  tanya tamarchenko  vasant shanbhogue  myself  stinson and i will take her out to lunch .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 11 / 27 / 2000  01 : 35 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" iris mack \"\" on 11 / 21 / 2000 04 : 12 : 43 pm  to : irismmack @ hotmail . com , vince . j . kaminski @ enron . com  cc :  subject : re : f / u to dr . kaminski @ enron from iris mack  hi again ,  i am visiting several family members and friends over the next few days .  therefore it will be hard to contact me .  however , next week i will be easier to reach . my contact details in nyc are  as follows . i will be staying at the following hotels :  washington square hotel  from november 28 th for 3 nights ( tue , wed and thur )  212 . 777 . 9515  marriott nyc financial  december lst for 1 night ( fri )  212 . 385 . 4900  at any rate , i will still try to reach you on tomorrow morning . if all  fails , we will try to reach each other next week .  happy thanksgiving ,  iris  > from : \"\" iris mack \"\"  > to : vince . j . kaminski @ enron . com  > subject : re : f / u to dr . kaminski @ enron from iris mack  > date : tue , 21 nov 2000 22 : 07 : 09  >  > hi ,  >  > how are you ? seems like we have had a bit of difficulty contacting each  > other . sorry i missed your call . i am now in nyc - until december 2 nd .  >  > i will try to call you on tomorrow morning about 8 am houston time .  >  > take care ,  > iris  >  >  >  >  > > from : vince . j . kaminski @ enron . com  > > to : irismmack @ hotmail . com  > > cc : vince . j . kaminski @ enron . com  > > subject : hello  > > date : tue , 21 nov 2000 15 : 14 : 31 - 0600  > >  > > iris ,  > >  > > we are trying to reach you but we are getting error messages .  > > please , call me 713 853 3848 .  > >  > > vince  > >  > >  >  _ _ _ _ _ _ _  get more from the web . free msn explorer download : http : / / explorer . msn . com\",0\n\"Subject: request submitted : access request for leann . walton @ enron . com  you have received this email because you are listed as an alternate data  approver . please click  approval to review and act upon this request .  request id : 000000000005168  approver : stinson . gibner @ enron . com  request create date : 10 / 18 / 00 2 : 06 : 37 pm  requested for : leann . walton @ enron . com  resource name : \\ \\ enehou \\ houston \\ common \\ research - [ read / write ]  resource type : directory\",0\n\"Subject: re : another stanford acceptance  thanks so much vince !  vince j kaminski @ ect  04 / 23 / 2001 11 : 09 am  to : althea gordon / na / enron @ enron  cc : greg . whalley @ enron . com , traci . warner @ enron . com , patricia . payton @ enron . com  subject : re : another stanford acceptance  althea  great news . it ' s all your hard work .  vince  althea gordon @ enron  04 / 20 / 2001 01 : 43 pm  to : vince . kaminski @ enron . com , brad . romine @ enron . com , brad . alford @ enron . com ,  martin . lin @ enron . com , stephen . swain @ enron . com , matt _ harris @ enron . net ,  elliot . mainzer @ enron . com , mauricio . mora @ enron . com , victor . browner @ enron . com  cc : greg . whalley @ enron . com , traci . warner @ enron . com , patricia . payton @ enron . com  subject : another stanford acceptance  stanford team ,  we have received yet another acceptance - noah jacobs has accepted our offer  as a summer associate . we are now 4 of 6 for our summer offers . i have sent  paul kasper , our one full time offer a cultivation gift and will be checking  in on him next week . also eric cope , a stanford student that vince  kaminski ' s group had interviewed here in houston for a summer associate  position has also accepted . all in all our stanford numbers are looking  great !  many thanks to everyone and keep up the great work !  althea\",0\n\"Subject: sheila ,  gran ' t number : ( 281 ) 381 9987 .  this is his cell phone number .  vince\",0\n\"Subject: re : japanese crude cocktail & prompt brent  vince  marc and i spoke about the jcc brent relationship . i don ' t know enough about  jcc to have a view if putting jcc on eol is a good idea . would be interested  to know the realtionship to brent and learn more about it . also spoke to john  chismar about jcc . it sounds pretty non - liquid acc . to john .  let me know if there is something we can do .  regards  chris glaas  enron capital & trade resources corp .  from : marc de la roche 13 / 10 / 2000 13 : 18  to : chris glaas / lon / ect @ ect  cc : doug leach / hou / ect @ ect , kevin kindall / corp / enron @ enron  subject : re : japanese crude cocktail & prompt brent  chris ,  thanks for the response . the comment about hedgeing jcc with brent is right  on if the exercise is to hedge our own lng positions that we have tieds to  jcc . note that the high jcc correlation to prompt brent is not something that  is obvious to non - enron lng - tied - to - jcc buyers . if you are an lng - tied - to - jcc  buyer , and you wish to hedge your purchases , wouldn ' t you want to be able to  transact ona a jcc contract ? my objective is to have a jcc contract on eol ,  whereby we , enron , take the jcc / brent risk ( which is why we asked vince  kaminski ' s group to study the relationship and give us a hedge ratio to use ) .  i ' m attaching a model used to calculate jcc for dabhol power co . ' s adgas and  oman lng contracts . basically what happens is that all the \"\" raw oil \"\" volumes  imported into japan and added up and the total price is divide by the total  volume , and there is a yen / us $ foreighn exchange component as well . that is  jcc . it was designed by the japanese so that they could tie their lng imports  to their average price of crude imports whereby the lng would be cheaper on  an mmbtu basis .  comments ?  brgds ,  marc  chris glaas  10 / 13 / 2000 03 : 11 am  to : marc de la roche / hou / ect @ ect  cc :  subject : re : japanese crude cocktail & prompt brent  marc  regarding putting jcc on eol i get a negative respons from our sing office .  it is not a very liquid market . everyone is going the same way .  i understand there is good correlation between brent and jcc . i know little  about jcc , but if there is good correlation u should be able to hedge  yourself with brent . i need to know more about how jcc works in order to help  u , if u require any help at all ?  let me know  chris glaas  enron capital & trade resources corp .  from : marc de la roche 10 / 11 / 2000 03 : 16 pm  to : chris glaas / lon / ect @ ect  cc : doug leach / hou / ect @ ect , larry gagliardi / corp / enron @ enron  subject : japanese crude cocktail & prompt brent  chris ,  some of egm ' s lng group ' s lng is priced using a jcc - based formula . there ' s  also a lot of other lng contracts that use jcc as the pricing basis . in june  we obtained sign - off from vince kaminski ' s group to hedge jcc using prompt  brent ( see the messages with the relevant hedge ratio below ) . can we set up a  contract on eol , using the prompt brent - jcc hedge ratio , to hedge jcc ?  fyi , on a btu conversion basis :  therefore , to hedge 1000 mt of lng , a customer would need to transact on a  hedge for 9000 bbl of jcc . can we list a jcc swap in 9000 bbl / month  increments ?  thanks in advance ,  marc  - - - - - - - - - - - - - - - - - - - - - - forwarded by marc de la roche / hou / ect on 10 / 11 / 2000  08 : 32 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  kevin kindall @ enron  06 / 06 / 2000 03 : 47 pm  to : marc de la roche / hou / ect @ ect  cc :  subject : re : jcc & brent  yes on both counts .  - kevin k .  from : marc de la roche @ ect 06 / 06 / 2000 02 : 50 pm  to : kevin kindall / corp / enron @ enron  cc : grant masson / hou / ect @ ect , vince j kaminski / hou / ect @ ect  subject : re : jcc  that this email constitutes your groups ( vince kaminski ' s ) sign - off on using  this hedge ratio to hedge jcc and jcc - based products ?  thanks in advance ,  marc de la roche  kevin kindall @ enron  06 / 06 / 2000 02 : 18 pm  to : marc de la roche / hou / ect @ ect  cc : grant masson / hou / ect @ ect  subject : re : jcc & brent  good afternoon . i have performed a review of the jcc data that you sent  some time ago . the study was done using several different excel workbooks ,  and are available upon request . relevant charts are embedded in the  powerpoint attachment . questions / comments welcome .  - kevin kindall\",0\n\"Subject: global risk management operations  recognizing enron \u0001 , s increasing worldwide presence in the wholesale energy  business and the need to insure outstanding internal controls for all of our  risk management activities , regardless of location , a global risk management  operations function has been created under the direction of sally w . beck ,  vice president . in this role , sally will report to rick causey , executive  vice president and chief accounting officer .  sally \u0001 , s responsibilities with regard to global risk management operations  will mirror those of other recently created enron global functions . in this  role , sally will work closely with all enron geographic regions and wholesale  companies to insure that each entity receives individualized regional support  while also focusing on the following global responsibilities :  1 . enhance communication among risk management operations professionals .  2 . assure the proliferation of best operational practices around the globe .  3 . facilitate the allocation of human resources .  4 . provide training for risk management operations personnel .  5 . coordinate user requirements for shared operational systems .  6 . oversee the creation of a global internal control audit plan for risk  management activities .  7 . establish procedures for opening new risk management operations offices  and create key benchmarks for measuring on - going risk controls .  each regional operations team will continue its direct reporting relationship  within its business unit , and will collaborate with sally in the delivery of  these critical items . the houston - based risk management operations team under  sue frusco \u0001 , s leadership , which currently supports risk management activities  for south america and australia , will also report directly to sally .  sally retains her role as vice president of energy operations for enron  north america , reporting to the ena office of the chairman . she has been in  her current role over energy operations since 1997 , where she manages risk  consolidation and reporting , risk management administration , physical product  delivery , confirmations and cash management for ena \u0001 , s physical commodity  trading , energy derivatives trading and financial products trading .  sally has been with enron since 1992 , when she joined the company as a  manager in global credit . prior to joining enron , sally had four years  experience as a commercial banker and spent seven years as a registered  securities principal with a regional investment banking firm . she also owned  and managed a retail business for several years .  please join me in supporting sally in this additional coordination role for  global risk management operations .\",0\n\"Subject: additional e - mail addresses  vince ,  three new students gave me their e - mails :  wooddy @ rice . edu , lamas @ rice . edu , tbalestrery @ houston . rr . com  jason\",0\n\"Subject: re : meet during cmu visit ?  aziz ,  please , contact me before or after the presentation and we can find  a time slot to chat later on friday .  vince  al 3 v on 10 / 31 / 2000 01 : 59 : 11 pm  to : vince . j . kaminski @ enron . com  cc :  subject : meet during cmu visit ?  dr . kaminski :  i am a ph . d . student here at carnegie mellon who has a long - standing  interest in the energy industry .  i have recently developed the framework of a simple model for electricity  prices that i would like your opinion on . could you please chalk out some  time for me during your cmu visit this friday ?  unlike traditional electricty pricing models , which assume that the  log - price is a sum of a couple of stochastic factors , i assume that some  fundamentals of the electricity market are driven by stochastic factors .  next , given the current values of these factors , price is determined by  economic forces of profit maximization by price setting electricity  generators . unlike typical factor models , the factors in my model are  potentially observable .  thank you ,  aziz a . lookman  graduate school of industrial administration  5000 forbes avenue  carnegie mellon university  pittsburgh , pa 15213  tel : 412 - 268 - 3681  fax : 412 - 268 - 6837  ( pls . mark the fax c / o jackie cavendish )\",0\n\"Subject: re : monday night rodeo suite - the judds  vince ,  you are welcome to the twenty tickets if you like . please advise me asap .  many thanks ,  liz taylor  x 31935  vince j kaminski  02 / 15 / 2000 05 : 30 pm  to : liz m taylor / hou / ect @ ect  cc : shirley crenshaw / hou / ect @ ect , vince j kaminski / hou / ect @ ect  subject : re : monday night rodeo suite - the judds  liz ,  i would be glad to use some tickets for the group members .  vince  liz m taylor  02 / 15 / 2000 05 : 18 pm  to : jeffrey a shankman / hou / ect @ ect , james b fallon / hou / ect @ ect , jere c  overdyke / hou / ect @ ect , vince j kaminski / hou / ect @ ect , george  mcclellan / hou / ect @ ect , lynda clemmons / hou / ect @ ect , gary  hickerson / hou / ect @ ect , louise kitchen / lon / ect @ ect  cc :  subject : monday night rodeo suite - the judds  i have twenty suite tickets available for monday night , february 21 rodeo  activities featuring \"\" the judds . \"\" please let me know if you would like to  utilize any of these tickets for your group and / or customers .  many thanks ,  liz taylor\",0\n\"Subject: dave d . presentation  vince ,  here it is . i did not include a slide about london . let me know if you  think it is needed .  stinson\",0\n\"Subject: for vince j kaminski ' s approval  below you will find a copy of a request that is awaiting your approval .  please advise us as to your approval or rejection of this request by way of  email , since your system does not allow you to open the icon that was  submitted by way of a doc link .  i thank you in advance for your cooperation in this matter .  leola barnett  information risk management  - - - - - - - - - - - - - - - - - - - - - - forwarded by information risk management / hou / ect on  04 / 05 / 2000 03 : 50 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  security resource request system pending vp approval  resource request how to find the status of this request . . .  general information initials :  requestor : jason sokolov / hou / ect phone : ( 713 ) 853 - 6286  requested for : jason sokolov / hou / ect  request type : update access  rc # : 100038 wo # :  company # : 0011 priority : high  manager : mike a roberts vp : vince j kaminski  location :  in the request processing section , see the status column for each requested  resource .  look at the overall status of the request in the title bar above . the status  will display closed when your request is complete .  click the \"\" status \"\" button below .  comments :  request # : jsov - 4 f 8 r 44  submitted : 01 / 04 / 2000 01 : 58 : 37 pm  name cost status implementation comments  application / database  bloomberg $ 1 , 800 . 00 monthly not started  request processing path  processed by status when comments  manager approved 01 / 20 12 : 57 pm  vp  security  implementation  editing history ( only the last five ( 5 ) are shown )  edit # past authors edit dates  2  3  4  5  6 jason sokolov  jason sokolov  jason sokolov  jason sokolov  mike a roberts 01 / 04 / 2000 01 : 56 : 27 pm  01 / 04 / 2000 01 : 57 : 47 pm  01 / 04 / 2000 01 : 58 : 30 pm  01 / 04 / 2000 01 : 58 : 37 pm  01 / 20 / 2000 12 : 57 : 16 pm\",0\n\"Subject: power crisis in the west  dear vince ,  i spoke with you briefly yesterday regarding grant masson . you informed me  that he is no longer an enron employee . i have also been informed that  grant has not yet been replaced .  i am inquiring because infocast would like to have an enron representative  speak at an upcoming conference entitled \"\" power crisis in the west : status it is certainly  going to be an exciting conference due to all of the controversy surrounding  the situation in san diego .  kind regards ,  nia mansell  infocast  conference manager  ( 818 ) 888 - 4445 ext . 45  ( 818 ) 888 - 4440 fax  niam @ . com  >  - power crisis in the west invite . doc\",0\n\"Subject: energy derivatives conference - toronto , may 29  details of the upcoming energy derivatives conference are now posted at  i look forward to receiving your papers by may 5 .  thank you ,  amy ( for p . p . boyle )  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  amy aldous , conference co - ordinator  centre for advanced studies in finance  university of waterloo  waterloo , on n 2 l 3 gl  tel : ( 519 ) 888 - 4567 ext . 5728  fax : ( 519 ) 888 - 7562  email : aaldous @ uwaterloo . ca  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *\",0\n\"Subject: re : visit to enron  yes you did and my assistant felicia solis is working on the schedule . she  will be contacting bob today to introduce herself and to let him know the  arrangements she is making .  - elizabeth  vince j kaminski  01 / 17 / 2000 12 : 48 pm  to : elizabeth grant / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect  subject : re : visit to enron  elizabeth ,  we want to bring this guy for a formal interview on jan 24 . did i send you  his resume ?  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 17 / 2000  12 : 47 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  robert lee on 01 / 17 / 2000 09 : 36 : 01 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : visit to enron  hi , vince  i haven ' t yet heard from hr . is there someone i should contact so i can  finalize my travel arrangements ?  i ' m looking forward to the visit .  thanks , bob lee  vince j kaminski wrote :  > bob ,  >  > human resources should contact you regarding this trip .  > see you in 2 weeks .  >  > vince  >  > robert lee on 01 / 10 / 2000 07 : 13 : 08 am  >  > to : vince j kaminski / hou / ect @ ect  > cc :  > subject : re : visit to enron  >  > hi , vince  >  > this is to confirm my visit on jan . 24 . i am arriving in houston on  > sunday , so i can be there at your convenience on monday . let me know  > the desired time .  >  > thanks , bob lee\",0\n\"Subject: prof . at rice  here is this prof ' s home page at rice . his name is richard baraniuk .  http : / / www - dsp . rice . edu / ~ richb /  - - stinson\",0\n\"Subject: wharton fap 2001 webcafe access  about a month , ago you should have received an invitation to your fap 2001  webcafe room ( s ) that contained log on information to access the room . if you  have not received the email or are having difficulty logging into the  webcafe , please contact the wharton webcafe team be sending email to  webcafe @ wharton . upenn . edu and we will be happy to assist you .  best regards ,  michele krull  wcit webcafe team  webcafe @ wharton . upenn . edu  215 - 573 - 4262\",0\n\"Subject: re : recommendation letter  vincent ,  sorry for a delay in responding to your message .  i shall be very glad to write a letter of recommendation .  please , send me the forms .  i hope you are doing ok .  vince  vincent tang on 02 / 28 / 2001 01 : 10 : 33 pm  to : vkamins @ enron . com  cc :  subject : recommendation letter  dear vince ,  how are you ?  i am just wondering whether you have received the  email i sent to you a couple of weeks back . in that  email , i asked whether you would have time to write me  a recommendation letter to support my application for  a master program ( mathematical finance ) in columbia  university this coming fall . if you will be able to  write the letter , would you please let me know ?  thanks a lot .  best regards ,  vincent tang  do you yahoo ! ?  get email at your own domain with yahoo ! mail .  http : / / personal . mail . yahoo . com /\",0\n\"Subject: re : airfaire for tony  kevin / karin :  my understanding from vince is that london is reponsible for the expenses  incurred while their people are here for training , as well as for any of our  people that go to london at their request .  it should be easy for them to expense this airfare for steve from their office  and charge it to whatever cost center tony is going to be under in london .  shirley  kevin g moore  04 / 03 / 2001 06 : 24 am  to : mike a roberts / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , vince j  kaminski / hou / ect @ ect  cc :  subject : airfaire for tony  please take a look at this e - mail . . . . . . .  i am also in need of instruction . . . .  thanks  kevin moore  - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 04 / 03 / 2001 06 : 19  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron capital & trade resources  canada corp .  from : karin ahamer @ enron 04 / 03 / 2001 05 : 15 am  to : kevin g moore / hou / ect @ ect  cc : tony hamilton / eu / enron @ enron , mike a roberts / hou / ect @ ect , tani  nath / lon / ect @ ect , steve leppard / lon / ect @ ect  subject : airfaire for tony  kevin  with regards to tony ' s airfare ticket , which has been put onto steve leppards  credit card as tony hasn ' t got an amex yet , could you please let me know who  is responsible for payment ? i guess it is your costcentre , if so please  supply me with the number .  thanks  karin\",0\n\"Subject: retail markets conference  i would like to invite you to participate in a conference on \"\" retail  participation in competitive power markets \"\" to be held at stanford  university on june 21 - 22 , 2001 . although california and other regional  markets will likely be introducing some demand - response programs by june ,  there is a clear need for continual evaluation of these nascent efforts to  transform the market . the conference provides an opportunity to learn from  different experiences .  this policy research meeting will focus on establishing a foundation for  understanding the key concepts and methods for demand response programs and  to provide an opportunity for participants to raise questions and recommend  directions for additional research and analysis . participants will come  from companies , government , and universities . you can obtain more  information about the conference by checking under \"\" meetings \"\" on our emf  website listed below .  please let me know if you plan on attending . also , if you would like to  make a brief 15 - minute presentation , please let me know your topic and  describe it in a few sentences . i will try to choose speakers that will  cover the full range of interests represented by this group . researchers  should focus on the implications of their analysis for designing demand  response programs rather than on the technical details of their  methodology . i would also encourage practitioners to discuss their  experience in implementing demand response programs or in raising selected  issues .  thank you ,  hill huntington  hillard g . huntington  emf - an international forum on  energy and environmental markets voice : ( 650 ) 723 - 1050  408 terman center fax : ( 650 ) 725 - 5362  stanford university email : hillh @ stanford . edu  stanford , ca 94305 - 4026  emf website : http : / / www . stanford . edu / group / emf /\",0\n\"Subject: special epri mtg on ancillary services  dear dr . kaminski ,  thanks for your email address . would like to invite you or others from enron  to our one - day planning meeting in houston , sept . 7 , to review state of the  art assessment of ancillary services markets , hear preliminary research on  related topics , and help define a course of research that epri could  undertake .  here is one of our announcements . pls feel free to call with any questions .  - - jeremy platt  > re . ancillary services markets and management - -  > changing market structures , pricing , settlement , operational and  > cost issues  >  > epri has organized a workshop on ancillary services markets and management  > issues , to be held september 7 in houston . file attached .  >  > dr . rajat deb , pres . of lcg consulting , is our featured  > speaker / investigator . additional experts contributing to this special  > workshop are :  > * andy van horn , van horn consulting  > * phillip mcleod , mhb consultants  > * jens kure - jensen , encotech , and  > * carl pechman , power economics  >  > >  > this workshop is part of a program of epri research on ancillary services  > markets and management topics . * you or your colleagues are welcome to  > attend and contribute to the discussions . the workshop is timely , offers  > unique content , and will help shape future work of value . we encourage you  > to register promptly . please call me if you have any questions .  >  > if you are unable to attend or feel someone else in the company may have a  > more direct responsibilty , please forward this note . thanks ,  >  > jeremy platt  > manager , power and fuel markets  > 650 / 855 - 2628  >  > dale gray  > manager , generation asset management  > 704 - 547 - 6016  >  > * background on epri research on ancillary services . epri , known formerly  > as the electric power research institute , offers research on a wide range  > of energy , technology , environmental and business / market topics . epri ' s  > 2000 research on a / s is value package 64 . 3 , strategic value and  > measurement of ancillary services . this value package is part of a larger  > program of research ( a \"\" target \"\" ) , called understanding power and fuel  > markets and generation response . other 2000 ancillary services projects  > underway are : a report on markets and pricing ( now in preparation ) and a  > demonstration this fall of measurement procedures at a generating site for  > reactive supply and voltage control and for spinning and supplemental  > reserves .  >  >  >  >  - ancillary - wkshp . pdf\",0\n\"Subject: congratulations  congratulations on your promotion to md !  alan\",0\n\"Subject: enron projects by team  enron tiger team :  thank you for your input on project requests . the breakout of projects is  as follows :  team 1 : wholesale trading  team 2 : impact of e - commerce on energy markets  team 3 : retail business applications  any questions , please call the fap office .  good luck with your finals . have a wonderful winter break .  sincerely ,  donna piazze  program director  field application project  the wharton school  univ . of pennsylvania  ( 215 ) 573 - 8394  ( 215 ) 573 - 5727 fax  fap @ management . wharton . upenn . edu  piazze @ wharton . upenn . edu\",0\n\"Subject: promotion for martin lin  sheila ,  a reminder about promoting martin lin from associate to manager . do we have  any leeway on his salary adjustment ? he is currently at 81 k , and i  understand that his new salary can be made retroactive to aug . 1 , 2000 .  thanks ,  stinson\",0\n\"Subject: re : fw : gmm - 30 mar 2001  jeff ,  the newsletter is addressed to a wide audience in enron , not  exclusively one group . we are providing forward interest rate  foreign exchange curves to multiple units of enron  to revalue our assets . maureen and gwen spend  of lot of time answering questions regarding countries  like argentina , korea , brazil , etc . the newsletter can  be used as a reference in answering many of those  questions .  vince  from : jeffrey a shankman / enron @ enronxgate on 04 / 02 / 2001 01 : 52 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : fw : gmm - 30 mar 2001  this report is not great . i only like the g - 7 bank info and the weekly  economic table . any thoughts ? jeff  - - - - - original message - - - - -  from : koepke , gwyn on behalf of maureen raymond / lon / ect @ enron  sent : monday , april 02 , 2001 11 : 05 am  to : hickerson , gary ; shahi , pushkar ; stuart , william ; delage , darren ; su ,  ellen ; martina angelova / lon / ect @ ect ; mcfarland , trena ; hess , jurgen ;  kaminski , vince ; fraser , jennifer ; mehrer , anna ; sgibner @ enron . com ;  gmcclel @ enron . com ; staley , stuart ; harora @ enron . com ; boyt , eric ; dallmann ,  shane ; armstrong , aaron ; allario , john ; reed , andrea v . ; joverdy @ enron . com ;  mead , paul ; sherriff , john ; harper , richard ; mcgowan , kevin ; reck , daniel ;  beyer , michael ; ruffcorn , kevin ; hudler , cindy ; ruane , mark ; heu , mog ;  mcleish , alex ; mahoney , chris ; whalley , greg ; alkhayat , alhamd ; haggerty ,  john ; beck , sally ; profir , diana ; kristal , yana ; clara  carrington / hou / ect @ enron ; jshankm @ enron . com ; foti , david ; ferlic , suzanne ;  mckeever , tom ; thorn , terence ; dupre , david ; boettcher , thomas ; farmer ,  michael ; hutchinson , michael ; gold , joe ; fraser , bridget ; dwivedi , vikas ;  raghavan , suresh ; bhavna pandya / hou / ect @ enron ; hill , andrew ; lawyer , larry ;  egmcontent ; ibarra , felipe ; nordstrom , mary  subject : gmm - 30 mar 2001  please find attached this week ' s global markets monitor , dated march 30 .  maureen raymond - castaneda and  gwyn koepke\",0\n\"Subject: interview candidate allen humbolt  dear elizabeth :  we interviewed allen last week for my group . the consensus is that there is  not a sufficiently good match between his skills and our requirements , so we  will not extend an offer to him . i would appreciate if you can send him a  thank you note conveying our decision .  thanks ,  krishna\",0\n\"Subject: yesterday ' s power outage  as you are painfully aware , we had a power outage wednesday morning in the  enron building . this outage was caused by localized structural failure of  the raised floor in our 34 th floor data center . this resulted in disruption  to the power distribution system servicing the phone switch and a number of  ena servers .  as a cautionary move , enron online was interrupted while the extent of the  failure was assessed , resulting in the system being unavailable from 11 : 23 to  11 : 39 . all enron building telephones and voicemail were unavailable for  approximately one hour and 20 minutes and certain ena trading systems were  unavailable for over two hours . during this time the power was stabilized  and systems were restored . immediate steps are being taken to correct this  problem .  we apologize for this inconvenience .  if you have any questions in regard to this outage , please call philippe bibi  at x 37698 or bill donovan at x 35459\",0\n\"Subject: re : turkey  the group to whom this message was sent is rac in london , related to london ' s focus on enron ' s equity interest in opet ( $ 18 million exposure ) .  gwyn  - - - - - - - - - - - - - - - - - - - - - - forwarded by gwyn koepke / na / enron on 04 / 19 / 2001 06 : 59 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  gwyn koepke  04 / 19 / 2001 06 : 58 pm  to : suryan wirya simunovic / lon / ect @ ect  cc : gkoepke @ enron . com @ ect , jolyon manning / eu / enron @ enron , padmesh thuraisingham / lon / ect @ ect , maureen raymond / lon / ect @ ect , mitra mujica / enron @ enronxgate  subject : re : turkey  suryan ,  please find attached a brief on turkey , per your request . as stated in the brief , this is a preliminary forecast and is subject to change upon further government announcements related to external financing and monetary / fx policies .  gwyn koepke  suryan wirya simunovic @ ect  04 / 19 / 2001 10 : 48 am  to : gkoepke @ enron . com  cc : jolyon manning / eu / enron @ enron , padmesh thuraisingham / lon / ect @ ect  subject : turkey  gwyn ,  paddy and i spoke to you earlier today regarding eel ' s turkish investment . you mentioned that you could send us a brief report on what has been going on in turkey in the last couple of weeks . as we are having a meeting tomorrow am could you still send us this report before business closing houston to myself , paddy and jolyon manning .  thank you  suryan wirya simunovic \",0\n\"Subject: re : lacima energy and weather derivatives courses by clewlow and  strickland  sure :  i think that would be a great opportunity to get more insights on modeling  forward curves .  i would like to participate on both courses if possible .  many thanks for remembering my name .  paulo issler .  vince j kaminski  11 / 13 / 2000 08 : 15 am  to : paulo issler / hou / ect @ ect , alex huang / corp / enron @ enron  cc :  subject : lacima energy and weather derivatives courses by clewlow and  strickland  paulo , alex ,  any interest ?  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 11 / 13 / 2000  08 : 22 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" julie \"\" on 11 / 12 / 2000 02 : 05 : 40 pm  to :  cc :  subject : lacima energy and weather derivatives courses by clewlow and  strickland  please find attached information ? for our next two courses and workshops : ?  energy derivatives : ? pricing and risk management and  weather derivatives , which will be conducted in houston and in london in feb  / march 2001 . ? instructors will be dr les clewlow and dr chris strickland .  ?  because the course requires intense interaction , the courses will be ? limited  to a maximum of 15 people , so early registration is encouraged .  ?  if you require further information , or would like to register for either or  both ? courses , please contact me via this email or our web site , ? www .  lacimagroup . com  - energy . pdf  - weather . pdf\",0\n\"Subject: hurricane warning derivatives  folks ,  this note is intended to update all who may be concerned on our progress  toward developing a commercial hurricane warning derivative product or line  of products .  it is clear that numerous entities have underlying exposures to hurricane  warning frequency and / or duration . it is our objective to develop derivative  products that will enable these entities to effectively hedge this  exposure . we have generated a partial brainstorm - style list of whom natural  counterparties might be according to their underlying exposure :  pro - hurricane anti - hurricane  the weather channel resorts  home depot cruise ships  lowes riverboat casinos  cnn chemical plants and refineries  local tv stations u . s armed forces  dry ice manufacturers athletic teams  chainsaw manufacturers city governments  insect repellant manufacturers state governments  it is obvious that there are numerous naturally offsetting parties but it is  important to note that the pro - hurricane entities are more macro in nature  while the anti - hurricane entities are typically more regional . thus , we have  documented the frequency and duration data by regional location with the  thought that the anti - hurricane entities would be interested in regional  products and the pro - hurricane entities would likely be more interested in  bundled regional products depending on their exposure .  thus far , we have collected and documented all u . s hurricane warning data  from 1980 - 2000 in the form of an excel database . the data can be sorted by  year , storm , or location on the u . s coastline . total hurricane warning  duration as well as number of discrete hurricane warnings are the primary  data sets of interest for any given location ( or year or storm ) . the u . s  coast has been divided into 11 different geographic regions of roughly  similar size . these regions are : new england , mid - atlantic , virginia , north  carolina , georgia / south carolina , east florida , west florida , florida  panhandle , orleans / miss / bama , lousiana , and texas .  while this data set may not yet be sufficient for price modeling purposes , it  has confirmed our expectation that hurricane warning frequency and duration  is quite volatile and unpredictable . it is believed that this volaility ,  when graphically depicted and mathematically represented , could be used to  effectively demonstrate to would - be customers the impact of hurricane warning  frequency on their business financials . in many cases , businesses may be  well aware of their exposure but may not have quantified it and certainly  probably felt as if this was a risk they would have to wear themselves .  as we move forward on the modeling front , the data will certainly need to be  scrutinized to correct for any skewing factors such as political trends ,  satellite availability , population trends , etc . additionally , we need to go  further back in time so long as the accuracy doesn ' t decline .  on the marketing front , i am certainly open to ideas . it is believed the  weather channel would be the most natural party for such a product . given  our positive relationship that we currently have with them , they might be the  easiest sell . any and all ideas are welcome with regard to how and when  we should approach customers .  please respond with any questions , comments or concerns on this project .  thanks ,  charlie\",0\n\"Subject: swaps monitor research .  we have today published information about the global exchange - traded options and futures volume . this research is contained in the attached pdf file .  through our web site , swapsmonitor . com , you can obtain additional information about otc derivatives dealers , including rankings and a database of outstandings going back to 1994 .  as an e - mail subscriber to our research , you will automatically receive all free research at the same time it is placed on our web site . if you wish to remove your name from the e - mailing list , please use the reply feature of your e - mail application and type the word \"\" remove \"\" in the subject line .  regards ,  - total _ et . pdf  andrei osonenko  research department\",0\n\"Subject: re : interviewing candidates for research  steve ,  i am speaking at a conference either on monday or tuesday . i shall let you  know tomorrow  the details of my schedule .  we can always invite them to visit with enron in the evening .  steven leppard  02 / 10 / 2000 11 : 27 am  to : vince j kaminski / hou / ect @ ect  cc : dale surbey / lon / ect @ ect , shirley crenshaw / hou / ect @ ect  subject : interviewing candidates for research  hi vince  do you think you will be able to find the time to carry out some interviewing  on monday 21 st february ? are there any times you ' d particularly like me to  avoid ?  the first people i ' m inclined to invite in are the candidates whose cvs i ' ve  attached below . i ' d like to hear what you think before i invite them along .  steve\",0\n\"Subject: re : summer internships at enron  thanks , vince .  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : friday , march 02 , 2001 3 : 09 pm  to : piazze @ wharton . upenn . edu  subject : re : summer internships at enron  donna ,  fyi  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 02 / 2001  02 : 09 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  celeste roberts  03 / 02 / 2001 02 : 04 pm  to : vince j kaminski / hou / ect @ ect  cc : kristin gandy / na / enron @ enron , alyse herasimchuk / na / enron @ enron  subject : re : summer internships at enron ( document link : vince j  kaminski )  vince :  thanks . yes it is unfortunate that we were not able to quickly identify  who the interested tiger team students were . we will go ahead and process  an offer letter for kim and get it to her immediately .  also , thanks for agreeing to help out with stanford . hopefully we will get  a few good ones !  regards ,  celeste  vince j kaminski  03 / 01 / 2001 09 : 32 am  to : celeste roberts / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : summer internships at enron  celeste ,  i have just talked to kim . i told her she will receive one .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 01 / 2001  09 : 31 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  03 / 01 / 2001 09 : 25 am  to : celeste roberts / hou / ect @ ect  cc : kristin gandy / na / enron @ enron , christie patrick / hou / ect @ ect , vince j  kaminski / hou / ect @ ect , piazze @ wharton . upenn . edu  subject : summer internships at enron  celeste ,  it seems that the process lasted too long for some students  and only kim whitsel is interested in the internship at this point .  her resume has been forwarded to you .  i am enclosing it just in case .  thanks for your help .  vince  ( see attached file : kim whitsel - wharton 2 resume . doc ) ( see attached file :  kim whitsel - enron cover letter . doc )  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 01 / 2001  09 : 20 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  fap on 02 / 23 / 2001 02 : 28 : 48 pm  to : \"\" ' vkamins @ enron . com ' \"\"  cc : \"\" ' piazze @ wharton . upenn . edu ' \"\"  subject : summer internships at enron  vince :  thank you to you , ken and christie for coming to campus for the enron tiger  team mid - project review . the students are working hard and appreciate your  insight and suggestions to the project . thank you for your support of the  wharton school .  kim whitsel ( whitselk @ wharton . upenn . edu ) of tiger team 1 has informed me  that she is very much interested in a summer internship at enron this year .  i don ' t believe some of the students understood the process you had setup  for them at enron as part of the tiger team . being concerned with having  summer employment , they interviewed with other firms and ultimately  accepted  positions . the students asked that i express to you that this does not mean  they are not interested in full time work at enron next year . i apologize  and take responsibility for the lack of communication in this regard . i  think it is a lesson learned and perhaps , in the future , we can make the  agreement to students understood in advance of their \"\" dedicated interview  week \"\" and eliminate their need to interview at all . this can also be an  added advantage of applying to be a member of the tiger team .  please let me know if you have any questions and exactly how kim whitsel  should proceed .  thank you ,  donna piazze  program director  field application project  the wharton school  univ . of pennsylvania  215 . 573 . 8394 fax 215 . 573 . 5727  fap @ management . wharton . upenn . edu  piazze @ wharton . upenn . edu\",0\n\"Subject: re :  shirley ,  i will take half day off tomorrow morning , on friday , in addition to today ' s  afternoon .  tanya\",0\n\"Subject: re : meetings with petronas on february 8 th  eric :  mr . nur azmin abu bakar of petronas , along with 4 of  his corporate risk management team will visit enron on  thursday , february 8 th . jeff shankman and vince kaminski  would like to invite you to attend all or some of the  presentations .  a tentative agenda has the petronas team meeting with  jeff and john nowlan at 10 : 00 am and then a presentation  by david port and the rac group , followed by vince  kaminski and the research group . vince will take the  team to lunch and you are invited .  please let me know if you plan to attend all or part of  the presentations and if you would like to go to lunch .  thanks eric .  shirley crenshaw  3 - 5290\",0\n\"Subject: re : meeting re : wharton strategy  i am sorry . . . . . . as per message below we are changing it to friday at 9 : 00 .  vince j kaminski  10 / 24 / 2000 04 : 43 pm  to : jennifer burns / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect  subject : re : meeting re : wharton strategy  jennifer ,  i can rearrange some other meetings . thursday , oct 26 @ 3 : 00 works for me .  vince  jennifer burns  10 / 24 / 2000 04 : 14 pm  to : michele nezi marvin / enron communications @ enron communications , mark  palmer / corp / enron @ enron , cindy derecskey / corp / enron @ enron , vince j  kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , beth  miertschin / hou / ect @ ect , christie patrick / hou / ect @ ect , kristin  gandy / na / enron @ enron  cc :  subject : meeting re : wharton strategy  lets try for friday , october 27 @ 9 : 00 am , please let me know if you are  available . thanks !  - - - - - - - - - - - - - - - - - - - - - - forwarded by jennifer burns / hou / ect on 10 / 24 / 2000  04 : 07 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  jennifer burns  10 / 23 / 2000 11 : 08 am  to : michele nezi marvin / enron communications @ enron communications , sarah  mulholland / hou / ect @ ect , mark palmer / corp / enron @ enron , kristin  gandy / na / enron @ enron , beth miertschin / hou / ect @ ect , christie  patrick / hou / ect @ ect , jeffrey a shankman / hou / ect @ ect , vince j  kaminski / hou / ect @ ect  cc :  subject : meeting re : wharton strategy  jeff shankman would like to have a meeting re : wharton strategy . please let  me know if you would be available thursday , october 26 @ 3 : 00 . i will get  back with everyone to confirm a location . thanks !  jennifer\",0\n\"Subject: henwood power market symposium - april 2001  * we apologize for the previous message , we experienced an error in our system  henwood power market symposium , april 29 th - may lst  we are excited to offer you an invitation to attend the henwood power market  symposium . this annual three - day event will take place from april 29 to may  1 , 2001 in atlanta , ga at the  evergreen mountain resort . the goal of the symposium is to provide our  guests a forum to conduct business across all energy markets through the  sharing of experiences and innovations , and  through numerous networking opportunities . participants will also gain  access to henwood ' s software products , consulting services and e - business  products , as a means to develop competitive  strategies and unequalled value in restructured markets .  the focus of the symposium is to provide relevant discussion topics ,  technologies and competitive strategies . this year ' s featured speakers  include senior representatives from enron , conoco ,  electric power research institute , ferc , new england iso , and more .  please register early because space is limited ! if you register prior to  april lst , the symposium cost is only $ 875 . after april lst , the  registration fee will be increased to $ 975 . your registration is  inclusive of the following :  * complete hotel accommodations for sunday april 29 th and monday april 30 th ,  2001  * all meals and refreshments for april 29 th through may lst . a welcome  reception is planned for sunday , april 29 th . this reception is an excellent  opportunity to network with market participants  and decision - makers of the electric power industry .  * a river boat dinner cruise scheduled for monday , april 30 th on board the  henry w . grady paddlewheel riverboat . spouses are welcome to attend the  evening reception and dinner cruise .  a captain and crew golf tournament is also planned for sunday , april 29 th for  an additional fee . we invite golfers of all levels to participate in this  event .  for more information contact heather mason ( e - mail : hmason @ hesinet . com ) at  916 569 - 0985 . you can also learn more about the symposium by visiting our web  site at www . hesinet . com .  * make sure to ask about our special 2001 henwood client discount .\",0\n\"Subject: energy derivative courses  dear vince / grant ,  it was good to meet and talk with you both this morning - very interesting .  here are the details of the course ( actually there are two seperate  courses , one on var ) that i promised you .  i hope to see you both again later in the month .  best regards .  chris .  course 1 : energy derivatives : pricing and risk management  -  course leaders : dr les clewlow and dr chris strickland  houston : 29 - 30 march 2000  london : 3 - 4 april 2000  fee : stg 1950 / usd 2950  this is an intermediate course aimed at the energy professional who is  familiar with energy derivative products but who requires the mathematical  foundations of derivative pricing and an understanding of the pricing and  risk management of energy derivatives .  this course assumes that participants are familiar with standard basic  option pricing theory ( the black - scholes formula , monte carlo simulation ,  and the use of binomial trees for option pricing ) .  the format for the course will follow our usual highly practical and  successful style of alternate sessions of lectures and excel based computer  workshops . to facilitate intensive interaction , the course will be limited  to a maximum of 15 participants so early booking is advisable .  the excel based computer workshops deal with oil and gas as well as  electricity derivatives and contain detailed calculations for pricing and  risk management . at the end of the 2 days , participants leave with a  diskette containing answers to all the workshops as well as valuable code  for pricing and simulation .  registration fee includes : pre - course reading , course materials , copies of  relevant research materials , diskette with fully worked solutions to  computer workshops , lunch and refreshments . additionally , each attendee  will receive a free copy of clewlow and strickland ' s forthcoming book  \"\" energy derivatives : pricing and risk management \"\" which includes  valuable contributions from enron ' s vince kaminski and grant masson .  upon registration , participants will be sent a pack containing relevant  pre - course reading .  course outline  day 1 , am : introduction to energy derivatives modelling  energy derivatives - structures and applications  fundamentals of modeling and pricing  analysing energy data  spot price behaviour  building forward curves - assessing available models  the relationship between the spot price and forward curve dynamics  workshop : analysing the properties of energy data - mean reversion ,  volatility structures , jumps  day 1 , pm : spot price models and pricing by simulation and trees  review of spot price models  the pros and cons of spot price models  pricing standard options , swaptions , caps , floors , and collars  simulation for spot price models  pricing exotic options ( barriers , lookbacks , asians , etc . )  building and using trees for energy derivatives  building trees consistent with the forward curve  pricing options in trees  workshop : using simulation and trinomial trees to price energy  derivatives  day 2 , am : forward curve based models  forward curve dynamics and forward curve models  the relationship to spot price dynamics  multi - factor forward curve models  volatility function interpretation and estimation  pricing standard energy options  pricing energy swaptions  pricing energy exotics using simulation  workshop : using simulation to implement multi - factor models and price  energy options  day 2 , pm : risk management of energy derivatives  energy market risk and hedging  computing hedge sensitivities  determining the hedge instruments  hedging a energy derivatives book  value - at - risk in energy markets - the pros and cons of the approaches  credit risk in energy markets - issues and models  workshop : hedging an energy portfolio  please feel free to e - mail us to register for this course and we will  contact you regarding payment .  course 2 : var for energy markets  course leaders : dr les clewlow and dr chris strickland  houston : 31 march 2000  london : 5 april 2000  fee : stg 950 / usd 1950  this is an intermediate course aimed at the energy professional who is  familiar with energy derivative products but who requires an understanding  of the theory and calculation of value at risk for energy derivative  portfolios .  the format for the course will follow our usual highly practical and  successful style of alternate sessions of lectures and excel based computer  workshops . to facilitate intensive interaction the course will be limited  to a maximum of 15 participants so early booking is advisable .  the excel based computer workshops deal with oil and gas as well as  electricity derivatives . at the end of the course participants leave with a  diskette containing answers to all the workshops as well as valuable code  for pricing and var calculations .  registration fee includes : pre - course reading , course materials , copies of  relevant research materials , diskette with fully worked solutions to  computer workshops , lunch and refreshments . additionally , each attendee  will receive a free copy of clewlow and strickland ' s forthcoming book  \"\" energy derivatives : pricing and risk management \"\" .  upon registration , participants will be sent a pack containing relevant  pre - course reading .  course outline  day 1 , am : understanding the var methodologies and issues  what is var ?  uses of var  types of var methodologies  implications of applying the riskmetrics assumptions in energy markets  delta var , historical simulation  linear and non linear instruments  workshop : applying simple var methodologies in the energy market  day 1 , pm : calculation of energy portfolio var using simulation  modelling the energy forward curve - single and multi - factor  modelling the joint behaviour of different energies simultaneously  calculation of covariances and correlations  incorporating jumps  detailed example var calculation for an energy portfolio  workshop : simulating energy forward curves and calculation of var for an  energy portfolio .  dr . les clewlow and dr chris strickland hold associate research positions  at both the school of finance and economics , university of technology ,  sydney and the financial options research centre , university of warwick ,  uk . together they have over 20 years combined experience in the financial  and energy derivative markets and have published many articles in academic  and trade journals . they are the authors of the book \"\" implementing  derivatives models \"\" ( wiley , 1998 ) and editors of \"\" exotic options : the state  of the art \"\" ( itp , 1998 ) . their forthcoming book , \"\" energy derivatives :  pricing and risk management , \"\" is due to be published during the second  quarter 2000 . currently , their interests are concentrated in the energy  derivatives area , where they have developed a wide range of pricing tools  for electricity options and other energy derivatives .\",0\n\"Subject: entouch newsletter  business highlights  enron industrial markets  enron industrial markets has recently completed the first transaction for a  new 60 - day fixed price product for the lumber industry . available for  delivery in houston and dallas , the product is offered by enron in the  over - the - counter market and via clickpaper . com , enron \u0001 , s internet - based  transaction system dedicated to the forest products industry . the first  transaction was completed via clickpaper . com on march 14 with a major lumber  buyer in the southern united states . this represents the first online fixed  price transaction contract in the industry . with the growing volatility in  the lumber industry , the availability of a long - term fixed price product  provides companies with another opportunity to mitigate their exposure .  additionally , this transaction represents the convergence of enron \u0001 , s  increasing involvement in physical lumber transactions with our recognized  expertise in financial risk management .  in addition , eim has announced that it has completed its acquisition of the  quebec city , canada newsprint mill and related assets from daishowa forest  products ltd . in july 2000 , enron purchased garden state paper , a recycled  newsprint mill located in garfield , nj . the acquisition of the daishowa mill  now positions enron as the seventh largest producer of newsprint in north  america . the daishowa mill in quebec city will now be called papiers  stadacona . the new name has great historical significance to the local  community in quebec city . when jacques cartier first explored the mouth of  the st . charles river in 1535 , the aboriginal people living there referred to  the village as stadacona . this is now the site of modern - day quebec city .  enron freight markets  in march , enron freight markets ( efm ) completed the acquisition of webmodal ,  inc to help launch the traditional intermediary transportation business . efm  also started its spot trading business and completed 981 transactions in its  first month .  east power origination  on tuesday , april 3 , the st . lucie county commission voted 3 - 2 to approve the  midway energy center near fort pierce , florida , which is a 510 megawatt  peaking power plant . next steps for this facility include receiving a water  permit from the south florida water management district and an environmental  resource permit ( erp ) from the florida department of environmental protection .  enron canada  ken lay addressed a breakfast meeting of the toronto board of trade on  wednesday , april 4 , as part of the \"\" power breakfast series \"\" . his topic was  \"\" moving forward with electricity deregulation . \"\" before his speech , the  chairman of the board of trade commented that \"\" this was the best attendance  ever \"\" at one of their breakfast meetings . after the meeting , mr . lay spoke  with reporters from reuters , the globe and mail , the national post , and  report on business tv emphasizing enron ' s commitment to deregulation of the  ontario power market .  in the news  japan : enron presents power plant plan to japan government  tokyo , u . s . - based enron corp on wednesday presented plans to build a  liquefied natural gas ( lng ) fired power plant in northern japan , aiming to  become the first foreign company to build such a plant in japan . the move  brings enron one step closer to realizing its plan to build a power plant  with an initial capacity of two million kilowatts in aomori prefecture .  \"\" we submitted our basic plan to build the plant to the governor of aomori  prefecture today in line with last november ' s announcement , \"\" tatsuro seguchi ,  president of enron corp ' s japanese affiliate encom corp , told a news  conference . \"\" we are aiming to start construction of the plant in 2004 and  start operations by 2007 since japan ' s power market is one of our highest  priorities , \"\" he said . 03 / 28 / 2001 reuters english news service ( c )  reuters limited 2001 .  welcome  new hires  egm - lyelle bellard , damian nelson , edward soo , jonathan whitehead  eim - elsa aguilar , melia dickson , john hark , phaedra jones , maricar jose ,  ian mccrory , mirella bertrone , roland holub , arthur miller , miriam watson ,  richard albert , randy biagini , thomas duchnicki , diego tabbachino  ena - mitra mujica , karen phillips , sarah domonoskie , kelly donlevy - lee  transfers ( to or within )  ena - john moore , mitchell robinson , larry valderrama , holden salisbury ,  grace rodriguez , mary martinez , dominic carolan , kari oquinn , katherine  kelly , david fuller , anguel grigorov , oren zimmerman , chuanli deng , glenn  surowiec , tharsilla broussard , geynille dillingham , philip conn , lola  weller , christina brandli , noemi camacho , randel young , ina rangel  egm - shelia benke , homer lin , william mckone , william berkeland , valarie  curry , tomas tellez  eim - allen ueckert , john w . jennings , sarveen kohli  nuggets & notes  the next ews brown bag is scheduled for april 19 with tim battaglia  discussing the steel industry .  legal stuff  the information contained in this newsletter is confidential and proprietary  to enron corp . and its subsidiaries . it is intended for internal use only  and should not be disclosed .\",0\n\"Subject: data for moody ' s riskcalc  craig and kim ,  as you know , i have obtained a 60 day trial subscription to moody ' s  riskcalc .  you wanted to know if it makes sense for enron to purchase riskcalc .  well , after plowing through their 100 page manual and sitting through  today ' s 2 - hour moody ' s presentation , it is necessary for us to have  information about enron ' s counterparties to move to the next step with  riskcalc .  we have obtained some information on enron ' s european counterparties from  our colleagues in the london office .  we need for you and / or your colleagues in the houston office to supply us  with a list of enron ' s north american counterparties .  more specifically , to evaluate moody ' s riskcalc we will need the following  financial inputs for enron ' s north american ( private firm ) counterparties :  fiscal year  the prior twelve months of financial data are represented . annual statements  are usable as well as quarterly statements after summing the flow variables ,  such as cost of goods sold , net income , sales , and ebit . the value should be  a four - digit integer year without mention of the day or month such as 1999 or  2000 . forecasts until the year 2009 can be made . a constant rate of inflation  is applied to future years using last year ' s ( 1999 ) inflation level . in  general this ' estimation error ' will not cause any great problems , as size  affects default rates at very large scales ( e . g . , $ 10 , 000 , 000 vs . $ 1 , 000 , 000  makes a significant difference , $ 1 , 000 , 000 vs . $ 1 , 050 , 00 does not ) .  cash & equivalents  this measure of liquid assets includes cash and marketable securities .  inventory  inventories are taken directly from the balance sheet , in thousands dollars ,  without any alterations for accounting method ( e . g . , lifo , fifo , average  cost ) . this item represents merchandise bought for resale and materials and  supplies purchased for use in production of revenue . specifically this would  include purchase cost , sales cost , sales taxes , transportation costs ,  insurance costs , and storage costs .  current assets  this item primarily represents cash , inventories , accounts receivables ,  marketable securities , and other current assets .  total assets  total assets and every other variable are entered in thousands of dollars .  for example , $ 15 , 500 , 000 should be entered as 15500 . specifically , total  assets are the sum of current assets plus net property , plant , and equipment  plus other noncurrent assets ( including intangible assets , deferred items ,  and investments and advances ) . leave previous year ' s total assets blank for  australian companies .  current liabilities  liabilities are positive values . included in current liabilities are  short - term debt , accounts payable , and other current liabilities .  total liabilities  this balance sheet account , total liabilities , is a positive number  representing the sum of current liabilities plus long - term debt plus other  noncurrent liabilities ( including deferred taxes , investment tax credit , and  minority interest ) .  retained earnings  retained earnings , a historical measure of performance , is the cumulative  earnings of the company less total dividend distributions to shareholders .  typically , it is the prior year ' s retained earnings plus net income less  distributions . retained earnings are generally positive . some firms with low  credit quality will have negative retained earnings . leave this field blank  for australian companies .  sales  this item consists of the industry segment ' s gross sales ( the amount of  actual billings to customers for regular sales completed during the period )  reduced by cash discounts , trade discounts , and returned sales and allowances  for which credit is given to customers .  cost of goods sold  entered in thousands of dollars , this value is generally a positive number  less than sales . it represents all costs directly allocated by the company to  production , such as material , labor , and overhead . not fixed overhead or  items that would be included in selling , general , and administrative  expenses . leave this field blank for australian companies .  ebit  earning before interest expense is operating income after depreciation . it  can be positive or negative but is usually greater then net income .  interest expense  this item represents the periodic expense to the company of securing short -  and long - term debt . typically , we expect this charge to be approximately the  prevailing interest rate times the total liabilities . one measure of  computing this is : interest expense = 0 . 07 * total liabilities .  net income  this item represents the income ( or loss ) reported by a company after  expenses and losses have been subtracted from all revenues and gains for the  fiscal period including extraordinary items and discontinued operations . a  loss is represented by a negative sign . for example , a $ 5 , 000 , 000 loss would  be entered as - 5000 . leave previous year ' s net income blank for australian  companies .  extraordinary items  positive or negative , this item represents unusual items that sometimes  appear on the income statement . the items are designated by the company as  extraordinary and presented after net income from continuing operations and  discontinued operations . these items include extraordinary gains / losses ,  income ( loss ) from discontinued operations , and cumulative affect of  accounting changes . expenses are entered as negative values , gains as  positive values . leave previous year ' s extraordinary items blank for  australian companies .  country  this model is calibrated for the united states , canada , and australia .  we look forward to receiving this information for enron ' s private firm north  american counterparties so that we can move on to the next step with the  evaluation of riskcalc .  thanks ,  iris\",0\n\"Subject: re : mscf speaker series  pierre ,  i am working with kristin gandy on my trip . hopefully , she will be able to  confirm the  november date in a day or two . kristin is taking care of all the  arrangements .  vince  pierre - philippe ste - marie on 08 / 28 / 2000 09 : 34 : 47 am  to : vince . j . kaminski @ enron . com  cc :  subject : mscf speaker series  dear mr . kaminski ,  any news yet about your trip to pittsburgh ? i would sure appreciate a  message saying that everything is ok for early november ! !  pierre\",0\n\"Subject: houston visit with vince kaminski  good afternoon :  vince kaminski is available on wednesday , april 19 th from 8 : 00 - 11 : 00 am  and 1 : 00 - 4 : 00 pm . please let me know what time is more convenient for you .  shirley crenshaw  administrative coordinator  713 - 853 - 5290  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 31 / 2000  11 : 50 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" faiz , soussan \"\" on 03 / 30 / 2000 02 : 31 : 18 pm  to : \"\" ' vkamins @ enron . com ' \"\"  cc :  subject : houston visit  dear vince ,  greetings from ny & hope all is well . as you may recall from the rog real  options conference in ny , i ' d indicated the opportunity to visit with you  next time i ' m in houston . i ' ll be there during 4 / 18 - 4 / 21 & wonder if we can  pls meet on wed . 4 / 19 in your offices . would appreciate it if you can pls  let me know whether you ' re available then ( i ' m flexible on the schedule  particulars ) . if not , pls let me know whether 4 / 18 ( afternoon ) , 4 / 20  ( afternoon ) , or 4 / 21 ( morning ) will work for you .  i really look forward to the opportunity & would appreciate to learn more  about how you ' ve instigated the real options thinking in enron and  especially its integration within the organizational & incentive matters .  many thanks ,  soussan faiz  mgr . of global valuation services  texaco inc .  ( 914 ) 253 - 4187\",0\n\"Subject: re : vacation  shirley ,  no problem .  vince  shirley crenshaw  11 / 29 / 2000 03 : 34 pm  to : vince j kaminski / hou / ect @ ect  cc : anita dupont / na / enron @ enron  subject : vacation  vince :  i have 4 days vacation left . i would like to take friday , the 8 th and the  27 th , 28 th and 29 th . please let me know if this is ok .  anita will be here .  thanks !  shirley\",0\n\"Subject: hc costless collar  andrea ,  we finished the the costless collar valuation . see the spreadsheets for  details .  we checked the bloomberg for volatility assumption . the 100 days volatility is  around 50 % . since the option is for 3 years , the volatility should be  somewhat smaller .  so we put an array of calculations , with the volatility ranges from 20 % to  60 % .  if you have any questions , please call me or bob lee .  zimin  - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 01 / 09 / 2001 09 : 02 am  - - - - - - - - - - - - - - - - - - - - - - - - - - -  bob lee @ enron  01 / 09 / 2001 08 : 48 am  to : zimin lu / hou / ect @ ect  cc :  subject : hc costless collar\",0\n\"Subject: re : ashley baxter - review  neil ,  i shall do the review with pleasure .  vince  neil davies @ enron  11 / 07 / 2000 01 : 37 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : ashley baxter - review  vince  sorry i missed you off the list  neil  - - - - - - - - - - - - - - - - - - - - - - forwarded by neil davies / corp / enron on 11 / 07 / 2000  01 : 36 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  neil davies  11 / 07 / 2000 01 : 36 pm  to : lara marie berry / corp / enron @ enron , marty chrisman / corp / enron @ enron ,  shelly jones / hou / ect @ ect , simone lewis / na / enron @ enron , beth  perlman / hou / ect @ ect  cc :  subject : ashley baxter - review  you have all been selected from reviewers for ashley . our hr pre ranking will  take place on 14 november therefore i ' d be grateful if you could complete her  review by the close of business on 13 november  thanks for your help with this .  neil\",0\n\"Subject: baylor professors lunch  i ' m sorry . . . try this .  beth  - - - - - - - - - - - - - - - - - - - - - - forwarded by beth miertschin / hou / ect on 07 / 07 / 2000  05 : 23 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : beth miertschin 07 / 07 / 2000 05 : 01 pm  to : mitchell taylor / corp / enron @ enron , bill w brown / hou / ect @ ect , vince j  kaminski / hou / ect @ ect  cc : shelly jones / hou / ect @ ect , geynille dillingham / hou / ect @ ect  subject : baylor professors lunch  on wednesday , july 12 dr . john martin , chair of finance department , and dr .  bill petty , chair of entrepreneurship department , of baylor university will  be at the enron building to discuss future sponsorship of the texas finance  festival and to talk about recruiting .  they have asked me to invite all of you to lunch with us on that day so that  they might have a chance to visit with you all as well . please let me know  if you are available for lunch on july 12 at noon .\",0\n\"Subject: re : hello  hi vince ,  thank you for your offer to bring jacob back for another interview . yes , if it is not too much trouble , i would like to talk with him . i was sorry i had to be out of town last week when he was in the office . thanks , just let me know when you would like me to be available .  kim .  - - - - - original message - - - - -  from : kaminski , vince  sent : monday , april 16 , 2001 1 : 21 pm  to : watson , kimberly  cc : krishnarao , pinnamaneni ; kaminski , vince  subject : re : hello  kim ,  this is a letter from one of the job applicants who works for pros .  it seems that the system they develop for williams  is more a scheduling system .  would you like to ask him to come back for another interview ,  to get more information out of him ?  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 16 / 2001 01 : 18 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" jacob y . kang \"\" on 04 / 11 / 2001 11 : 18 : 44 pm  to : vince . j . kaminski @ enron . com  cc :  subject : re : hello  dear vince :  it was so nice meeting and talking with you too . i did  not take any pen back , i lost my pen too somewhere in  enron .  as i mentioned to you , after i got my ph . d in 1999 , i  have been working two years as lead scientist and  science manager in energy division at pros revenue  management inc . in houston .  i developed and implemented the mathematical models  for trading optimization system and firm  transportation optimization system .  the trading optimization system becomes the most  popular product in the industry this year . duke energy  just signed the contract to buy this product  yesterday . conoco and williams also signed the  contracts for it . according to pros sales department ,  the potential marketer to buy this product exceeds 15  companies in one or two years .  enron is the ideal place for me to continue my  research and system developing efforts to combine  revenue management with risk management . i am  confident that i can make significant contributions to  enron in this area .  i would like to thank you again for giving me this  opportunity to come to enron for this interview . i am  looking forward to having the opportunity to work in  enron .  sincerely yours  jacob  - - - vince . j . kaminski @ enron . com wrote :  > jacob ,  >  > it was nice meeting you . did take by any chance  > my pen ? if not , i apologize .  >  > vince  >  do you yahoo ! ?  get email at your own domain with yahoo ! mail .  http : / / personal . mail . yahoo . com / \",0\n\"Subject: sat  vince ,  i hope you are having a great trip . i look forward to hearing about it .  let ' s aim for the 5 : 00 show , if that is ok with you . i always have so many  errands to run , i don ' t want to run late for the movie .  talk to you saturday a . m . - - 713 - 355 - 8311  jana\",0\n\"Subject: re : interview for the research group  vince : i apologize - - i had emailed shirley to let her know that toni had  forwarded your email to me and that i would be handling this for you , but i  didn ' t copy you on the email .  please call me with any questions ,  molly  x 34804  vince j kaminski  10 / 18 / 2000 03 : 14 pm  to : molly magee / hou / ect @ ect  cc :  subject : interview for the research group  fyi  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 18 / 2000  03 : 21 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  shirley crenshaw  10 / 18 / 2000 12 : 58 pm  to : toni graham / corp / enron @ enron , stephanie summers / na / enron @ enron  cc : vince j kaminski / hou / ect @ ect  subject : interview for the research group  hello everyone :  vince would like to bring jaesoo lew in next week for an exploratory interview  with the research group . the dates that would work best for us are :  wednesday ,  the 25 th ( am ) , thursday , 26 th ( am ) and friday , 27 th ( am ) . please see if mr .  lew  is available for any of these times .  thanks !  shirley  3 - 5290  - vitae 2 . doc  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 10 / 18 / 2000  12 : 51 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  10 / 18 / 2000 12 : 29 pm  to : stinson gibner / hou / ect @ ect , shirley crenshaw / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : position  shirley ,  i would like to invite him to an interview next week . we should use his home  phone  number and / or private e - mail address .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 18 / 2000  12 : 33 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" jaesoo lew \"\" on 10 / 17 / 2000 09 : 59 : 01 pm  to : vkamins @ enron . com  cc :  subject : position  dear dr . kaminski  my name is jaesoo lew and i am referred by dr . wayne lee .  currently i ' ve been working at aquila energy in kansas city as an pricing  analyst since july 2000 . since then , i have developed a natural gas storage  valuation model applying the swing options ( forest method ) pricing approach .  the price processes would be considered critical for the storage valuation  since a trinomial forest is required to value storage . also the c + +  programming using excel dll has been developed , too .  i attached my resume to this message for your consideration and am looking  forward to talking about an opportunity at enron .  my home phone number is 913 - 649 - 0578 , dr . kaminski , i will wait your call in  this week as dr . lee informed me . if possible , please let me know your  expected calling day through the mail . i appreciate your consideration .  thank you very much .  sincerely ,  jaesoo lew  get your private , free e - mail from msn hotmail at http : / / www . hotmail . com .  share information about yourself , create your own public profile at  http : / / profiles . msn . com .  - vitae 2 . doc\",0\n\"Subject: re : asset auctions  stinson :  i don ' t think chonawee can do much in this time frame . it ' s your call if you  want to go through the motions .  grant .  - - - - - - - - - - - - - - - - - - - - - - forwarded by grant masson / hou / ect on 07 / 26 / 2000 09 : 21  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  derek davies  07 / 25 / 2000 05 : 35 pm  to : grant masson / hou / ect @ ect  cc :  subject : re : asset auctions ?  grant ,  thanks for all your help .  the auction is scheduled to commence a week wednesday ( aug 2 / 2000 ) .  derek\",0\n\"Subject: re : urgent deadline : rsvp by jan 22 nd : invitation to 2001 energy  finance conference feb . 22 - 23 , 2001 - the university of texas at austin  thanks vince . if there are other members in your group that did not get this  e - mail , please forward it to them . the school called yesterday and they said  that no one from enron was taking advantage of the conference other than  yourself .  thanks again .  karen\",0\n\"Subject: price caps  - - - - - - - - - - - - - - - - - - - - - - forwarded by vladimir gorny / hou / ect on 11 / 01 / 2000  03 : 39 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : tim belden 10 / 27 / 2000 05 : 40 pm  to : john j lavorato / corp / enron , dave delainey , mike swerzbin / hou / ect @ ect ,  robert badeer / hou / ect @ ect , sean crandall / pdx / ect @ ect , tim belden / hou / ect @ ect ,  jeff richter / hou / ect @ ect , diana scholtes / hou / ect @ ect , tom alonso / pdx / ect @ ect ,  mark fischer / pdx / ect @ ect , john m forney / hou / ect @ ect , paul choi / sf / ect @ ect ,  john malowney / hou / ect @ ect , holli krebs / hou / ect @ ect , greg wolfe / hou / ect @ ect ,  chris h foster / hou / ect @ ect , stewart rosman / hou / ect @ ect , kim ward / hou / ect @ ect ,  debra davidson / pdx / ect @ ect , tim belden / hou / ect @ ect , lester  rawson / pdx / ect @ ect , john zufferli / cal / ect @ ect , james d  steffes / na / enron @ enron , mary hain / hou / ect @ ect , christopher f  calger / pdx / ect @ ect , dave parquet , phillip k allen / hou / ect @ ect , vladimir  gorny / hou / ect @ ect , monica lande / pdx / ect @ ect , elliot mainzer / pdx / ect @ ect , tim  heizenrader / pdx / ect @ ect , cooper richey , stephen swain / pdx / ect @ ect , susan j  mara / sfo / ees @ ees , steven j kean / na / enron @ enron , mark palmer / corp / enron @ enron  cc : debra davidson / pdx / ect @ ect  subject : price caps  the following summarizes recent price cap events in california . i think that  i have most of it right . if there is anything wrong or missing please let me  know . please don ' t share the attached spreadsheet with anyone outside of  enron .  regards ,  tim  new cap specifics  on 10 / 26 / 2000 the iso board passed a motion by a vote of 13 - 10 to implement a  new price cap methodology .  the new methodology will become effective 11 / 3 / 2000 or as soon thereafter as  can be implemented . caiso staff has indicated that it will be difficult to  achieve that start date . they have not yet indicated what an achievable date  might be .  the new price cap methodology will remain in place until :  comprehensive market changes have been implemented and the market has proven  to be workably competitive under a variety of load conditions .  either ferc or the iso board orders its removal .  cap prices will be based on the average nymex l 3 d settlement average and the  following heat rate table :  load level heat rate 4 . 00 gas example cap  40 gw $ 250 / mwh $ 250 / mwh  caps will be rounded up to the nearest $ 5 / mwh increment .  demand bids and demand responsiveness programs are exempt from these caps .  the iso will post the price caps for each load level at least 48 hours prior  to the beginning of each calendar month . based on the iso ' s two day - ahead  system load forecast , the iso will post hourly caps at least 24 hours prior  to the hour of delivery .  ferc context  ferc has delegated cap authority to the caiso until 11 / 15 / 2000 .  the iso has asserted that they don ' t need ferc authority since it is a bid  cap rather than a sales cap . ferc regulates sales , not purchases , of  electricity and therefore can regulate sales prices but not purchase prices .  the iso has filed with ferc for an extension of the price cap authority .  ferc has to rule on the filing by 11 / 18 / 2000 . ( note that this is 3 days  after their authority expires )  ferc will release its proposed order on 11 / 1 / 2000 based on the results of its  206 investigation of the california wholesale power markets . we don ' t know  what they will find or what they will propose .  the proposed order will have a 30 day comment period , after which ferc will  likely issue a final order . ferc will be accepting oral comments on  11 / 9 / 2000 in washington . enron still has to determine who will provide oral  comments .  many companies have filed at ferc advocating or opposing a litany of price  caps , cost based rates , and market redesign recommendations .  it is likely that the price caps approved by the iso board will go into  effect . how long they will remain in effect will depend on whether ferc  extends the iso price cap authority and whether the final order stemming from  the current 206 investigation stipulates a specific price cap policy .  impact of price caps  the attached spreadsheet contains a table of likely maximum monthly prices at  different gas price levels . we think that this is the highest that markets  would clear since it assumes that each hour clears at the cap . it is hard to  say whether actual prices would clear significantly lower than the cap  because we don ' t know whether sellers will offer below the cap or at the  cap . the assumptions behind our analysis are detailed in the bullets below .  take actual historical loads from 1999 and 2000 .  calculate implied price cap for each hour using actual historical load , new  price cap methodology , and a range of gas prices .  divide historical hours into peak and off - peak buckets .  calculate average price for each month for peak hours and off - peak hours .  for example , we have two years worth of data for the months of january  through september . each month has approximately 400 hours . for january  through september , we took approximately 800 observations for each month ( 400  from each year ) and calculated a simple average of all of the individual  observations .  we created a peak table and an off - peak table . the table shows the  calculated implied cap based off of the acutal loads at varying gas prices  for each month . this value represents what the month would clear at if each  hour cleared at the cap ( based on historic loads ) . while any given hour  could be above this value , our calculation estimates the likely monthly  average cap value !  the blue shading indicates what the caps would be given current ( 10 / 27 / 2000  nymex ) forward prices . the yellow shading indicates those forward power  prices which are in excess of the proposed cap .\",0\n\"Subject: re : copper curve  ted ,  i agree . curve review has always been rac responsibility . please , let me know  if we can assist you in any way .  vince  from : ted murphy  10 / 29 / 2000 10 : 23 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : copper curve  tani ,  please touch base with lloyd fleming as to whom from rac should review the  methodology . i view that it is the commercial team ' s responsibility to post  the curve , operations responsibility to gather objective information on the  efficacy of the curve on a ( minimum ) monthly basis and report all highly  sensitive curves , rac will not approve or disapprove a curve but question  methodology / motivations and subsequent changes and do so in a senior  management forum ( i . e . , we will tell on those who have suspect curves or  curve movements ) . obviously , we are looking for the best estimate of the  value of those products in those time buckets today , we also favor object ,  consistent application of methodoology intra and inter commodity .  ted  vince j kaminski  10 / 27 / 2000 04 : 18 pm  to : tani nath / lon / ect @ ect  cc : vince j kaminski / hou / ect @ ect , steven leppard / lon / ect @ ect , tim  poullain - patterson / lon / ect @ ect , harry tefoglou / lon / ect @ ect , esther  gerratt / lon / ect @ ect , maureen raymond / hou / ect @ ect , ted murphy / hou / ect @ ect  subject : re : copper curve  tani ,  no problem . we shall look at the curve on monday . i have organized a small  team to examine  the curve from different perspectives .  curve validation is normally a rac prerogative and i shall get them involved  on monday  vince  tani nath  10 / 27 / 2000 11 : 40 am  to : maureen raymond / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , steven leppard / lon / ect @ ect , tim  poullain - patterson , harry tefoglou / lon / ect @ ect , esther gerratt / lon / ect @ ect  subject : copper curve  following steve ' s note to you earlier today , i wanted to mention that we have  a fairly urgent need for review of the copper curve in particular , as there  is a deal due for final pricing in the next few days .  i am not sure what data you have received from enron metals in london , so i  am asking tim poullain - patterson to ensure that you have the curves and the  economic justification proposed as soon as possible . please direct any  questions to him or to harry tefoglou . i will be in the tokyo office next  week , but available via e - mail .  thanks in advance for your assistance ,  tani\",0\n\"Subject: re : summary spreadsheet for data vendor research and model  development  hi ,  fyi here is an updated spreadsheet summarizing the data vendor research and  model development .  please let me know if any thing is missing , wrong , should be deleted , etc .  thanks ,  iris  - - - - - original message - - - - -  from : salmon , scott  sent : monday , april 09 , 2001 2 : 15 pm  to : dhar , amitava  cc : mumford , mike ; kirkpatrick , eric ; mack , iris  subject : re : data for private firm model  great work iris ! this gets us heading down the right direction and we ' ll  have some project scope documentation asap .  cheers ,  scott  amitava dhar  09 / 04 / 2001 19 : 25  to : scott salmon / eu / enron @ enron , mike mumford / lon / ect @ ect , eric  kirkpatrick / eu / enron @ enron  cc : iris mack / enron @ enronxgate  subject : data for private firm model  the enclosed spreadsheet contains a summary of preliminary data search plan  prepared by iris . we will talk about further progress during our conf . call  on wednesday .  >\",0\n\"Subject: re : university of texas conference on energy finance , february 2001  vince , i am checking the date on jeff ' s calendar ( i ' m assuming the date is  february 22 ? ) . i am holding that date whole week for a trip abroad , but i  think we have some flexibility on that and am checking it out . i ' ll be back  in touch as soon as i ' ve resolved that . srs  vince j kaminski @ ect  09 / 20 / 2000 11 : 41 am  to : jeff skilling / corp / enron @ enron  cc : vince j kaminski / hou / ect @ ect , richard causey / corp / enron @ enron  subject : university of texas conference on energy finance , february 2001  jeff ,  our friends at the university of texas are planning a conference on energy  economics and finance in february of next year . they would like very much to  have  you as a keynote speaker .  given our good , long - term relationship with ut , i would recommend  that you speak at this conference . i talked to prof . ehud ronn  a few times about the program and i think that this will be  an excellent forum to present enron ' s accomplishments and  agenda for the future .  i am sure that rick causey will join me in making the same recommendation .  vince\",0\n\"Subject: tage  paul :  just to let you know i have made reservations for thursday night , june 1  at latour d ' argent restaurant . it is located at 2011 ella blvd @ t . c .  jester .  please let mr . m aragos know that a coat is required for dinner .  if you need directions , please let me know .  thank you .  regards ,  shirley crenshaw  administrative coordinator  research group  enron corp .  713 / 853 - 5290  email : shirley . crenshaw @ enron . com\",0\n\"Subject: re : d - g energy  great . i still haven ' t heard back from them regarding our escrow agreement  butn hope to soon . if not , i will call .  laine\",0\n\"Subject: summer hire  molly ,  we would like to hire mr bhalachandra mehendale for a summer position . he is  currently working on his ms finance at u . of wisconsin and is scheduled to  finish december 2001 . his resume is attached .  he will be available from about may 28 until the end of august . please let  me know what additional info you need research to provide .  regards ,  stinson  - bhala _ resume . doc\",0\n\"Subject: re : obrona - mba  pani agato ,  dwa punkty :  1 . pytania  2 . dodatkowe komplikacje .  i . pytania  controlling wprzedsiebiorstwie  1 . prosze przedyskutowac podzial funkcji i  rachunkowoscia .  czym rozni sie controlling odwewnetrznego i zewnetrznego auditing .  2 . prosze omowic zalety ? oraz wady \u0001 & rachunku kosztow dzialan \u0001 8 ( abc ) .  analiza wskaznikowa  1 . prosze przedyskutowac ograniczenia analizy wskaznikowej .  2 . prosze omowic istote analizy piramidalnej . jakie informacje o stanie  finansowym przedsiebiorstwa mozna uzyskac stosujac te metode ?  pezentacja instrumentow analizy finansowej  1 . prosze omowic metody przewidywania potencjalnego ? bankructwa firmy przy  zastosowaniu analizy wskaznikiwej .  2 . prosze przedyskutowac klasyfikacje wskaznikow ekonomicznych  wykorzystywanych do .  ii . komplikacje .  we wtorek , 3 kwietnia rano , wylatuje do filadelfii . powinienem dotrzec do  hotelu okolo godziny 12 czasu lokalnego , czyli godziny 6 : 00 wieczorem czasu  polskiego . roznica czasu w stosunku do houstonu jest 7 godzin , ? w stosunku  do  wybrzeza wschodniego jest 6 godzin .  jutro przesle szczegolowy plan podrozy , ktory bedzie zawierac adres i numer  hotelu . prosze przeslac mi numer , na ktory moge zadzwonic , by podac numer  pokoju , lub zadzwonic z samolotu w przypadku opoznienia lotu .  w . kaminski\",0\n\"Subject: concerning the move to the 32 nd floor  goodmorning liz ,  hopefully your morning is going well .  liz , we are currently moving up to the 32 nd floor  as you are already aware of .  i had been speaking with brenda concerning  the move however , things has changed since then .  liz , i need for you to understand the importance  of me knowing exactly when and where we will move .  first of all - the space , we have several machines  that must move with us .  secondly - we must make arrangements for our satellite ,  the cable may need adjusting .  thirdly - i need to know where every copy machine is located  on the floor and hopefully we are closest to the largest one .  please liz , these are most important .  we prepare for morning meetings daily and we are the first to get  here to work , so if any problems occur we try and tackle them beforehand .  please i know that you are very busy however , this will really be helpful  in making our move a success .  maybe we can meet and discuss ?  thank you  kevin moore\",0\n\"Subject: re :  darrell ,  thanks a lot .  a quick question : we haven ' t  received your invoice for the last few model / paper reviews .  please , make sure that we are billed .  clewlow / strickland book is out . i shall send you a copy today .  vince  darrell duffie on 01 / 24 / 2001 03 : 17 : 01 pm  please respond to darrell duffie  to : vince . j . kaminski @ enron . com  cc : hoshino @ stanford . edu  subject : re :  vince / taiichi  in case you are interested , i attach  this paper on gas storage value modeling .  best , darrell  darrell duffie  mail gsb stanford ca 94305 - 5015 usa  phone 650 723 1976  fax 650 725 7979  email duffie @ stanford . edu  web http : / / www . stanford . edu / ~ duffie /  - paper 4 . pdf\",0\n\"Subject: re : my involvement in leadership fort worth  ken  enron supports employees ' involvement in civic organization  and i think you should continue tour involvement with lwf .  it ' s important that we give something back to society .  you don ' t have to take a day off to attend workshops .  vince  kenneth parkhill @ enron  12 / 04 / 2000 09 : 19 am  to : vince . kaminski @ enron . com  cc :  subject : my involvement in leadership fort worth  vince ,  i am currently a candidate member of leadership fort worth through august of  2001 . i don ' t know if you are familiar with leadership houston or any other  leadership group , but it is basically a civic organization that provides a  forum for leaders to learn more about their community and opportunities for  civic leadership . for their first year , members are candidates and must  attend about 1 full - day workshop a month in fw , normally on a thursday .  after that , members can transfer to other leadership cities . i talked with  stinson about the group and he thought i should talk with you about whether  or not i should stay involved with lfw . the attached email describes the  december meeting scheduled for 12 / 14 . thanks  ken  - - - - - - - - - - - - - - - - - - - - - - forwarded by kenneth parkhill / na / enron on 12 / 04 / 2000  09 : 07 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  ann @ abarr . net on 12 / 01 / 2000 11 : 35 : 42 am  please respond to  to : \"\" william jenkins , jr . \"\" , \"\" walter lincoln office \"\"  , \"\" victor howell \"\" ,  \"\" vicki dickerson \"\" , \"\" vanessa boling \"\"  , \"\" steve johnson \"\" , \"\" sandra  short \"\" , \"\" rusty hodapp \"\" , \"\" ron  stutes \"\" , \"\" rob sell \"\"  , \"\" rita vinson \"\" , \"\" platt allen ,  iii \"\" , \"\" michelle peebles - trollope \"\"  , \"\" melanie hoover \"\" , \"\" matt  byars \"\" , \"\" mary jane ashmore \"\"  , \"\" martha musgrove \"\" ,  \"\" marla sapp \"\" , \"\" lynn lester \"\" , \"\" lori  smith \"\" , \"\" linda winkelman \"\" ,  \"\" liane janovsky \"\" , \"\" leslie pope \"\" ,  \"\" lauri newlin \"\" , \"\" kenneth parkhill \"\"  , \"\" keith kline \"\" , \"\" julie johncox \"\"  , \"\" john hallam \"\" , \"\" joe drago \"\"  , \"\" jim rhodes \"\" , \"\" jeff  conner \"\" , \"\" jeff cashman \"\"  , \"\" janet pacatte \"\" , \"\" janet  hahn \"\" , \"\" flavel chastain \"\" ,  \"\" duane paul \"\" , \"\" don allen \"\" ,  \"\" debbie liles \"\" , \"\" david wells \"\" ,  \"\" david duman \"\" , \"\" damon gaines \"\"  , \"\" cynthia persons phillips \"\"  , \"\" cynthia harnest \"\" , \"\" craig  goldman \"\" , \"\" courtney jeans \"\" ,  \"\" cornell thomas \"\" , \"\" cathy coleman \"\" ,  \"\" cal martinez \"\" , \"\" bonita maurer \"\"  , \"\" ardina washington \"\"  cc :  subject : economic and workforce development day  attached is information about economic and workforce development day . ? this  class day will be thursday , december 14 , 2000  - meme economic development day dec 2000 . doc  - christmas invitation 2000 reata . doc\",0\n\"Subject: re : hi  zeigham ,  we discussed two options ( not necessarily mutually exclusive ) :  1 . summer internship  2 . full employment .  are you interested exclusively in full employment ?  i need the answer asap , as we are going to discuss the additional summer  intern positions this afternoon .  vince  zkhokher @ mail . utexas . edu on 04 / 11 / 2000 01 : 06 : 14 pm  to :  cc :  subject : hi  vince :  it was very nice talking to you at the texas finance festival and i think  the telecom market that enron is entering is very interesting and very  lucrative . ? i would be very interested in working in that segment for enron .  ?  however , i talked to sheridan about this oppurtunity and he said that it is  probably going to be another six months before i finish my dissertation . ? so  while i am definitely interested , the start date will probably have to be  around that time . ?  ?  at any rate , it was a pleasure meeting you again and hopefully once i have  defended my dissertation ? we can discuss employment oppurtunities in greater  detail .  ?  ?  regards  zeigham  zkhokher @ mail . utexas . edu  512 - 471 - 1676\",0\n\"Subject: enron credit : more recent business plan  - - - - - - - - - - - - - - - - - - - - - - forwarded by amitava dhar / corp / enron on 04 / 30 / 2001  11 : 52 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  scott salmon  04 / 27 / 2001 09 : 04 am  to : iris mack / enron @ enronxgate , amitava dhar / corp / enron @ enron  cc :  subject : more recent business plan  iris / amitava ,  here ' s something more recent to chew on . . . note : strictly confidential .  cheers ,  scott\",0\n\"Subject: pserc iab meeting  dear dennis ,  vince kaminski forwarded your invitation to attend the pserc iab meeting . i  look forward to meeting you and attending the meeting . i am a manager in  vince ' s research group and my background is in economics of power systems .  sincerely ,  lance b . cunningham , p . e .  manager  enron north america\",0\n\"Subject: travel announcement  enron global travel management ( a division of global strategic sourcing ) is  pleased to announce that american express corporate cardholders can now view  account details online .  highlights of this service include :  review previously billed , current , and unbilled charges  review corporate direct payments and personal payments applied to your  account  dispute a charge online , if needed  access customer service 24 hours a day , 7 days a week  to log on to american express online services :  gss has prepared a special registration / log on page for corporate cardmembers  for your convenience . to access it , go to http : / / travel . enron . com and click  on the corporate card button .  cardmembers with cards issued within the last 45 days , need to call american  express customer service to enroll . the number is 1 - 800 - 297 - 1234 .  if you have already registered your personal american express card in the  american express online services program :  please click on the \"\" check your bill \"\" link and login using your existing user  id and password . you will be able to add your american express corporate  card to your existing registration by clicking on the \"\" update your online  profile \"\" link which appears on the left hand menu bar once you are logged in .  we hope you enjoy using american express online services .  for questions or additional information , contact tracy ramsey ( director ,  global travel management ) at 713 / 853 - 6457 .\",0\n\"Subject: re : research group  thanks vince ,  i will get on it right away !  / 28 / 2000 11 : 35 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  02 / 28 / 2000 11 : 05 am  to : kevin g moore / hou / ect @ ect  cc : shirley crenshaw / hou / ect @ ect , vince j kaminski / hou / ect @ ect  subject : re : research group  kevin ,  i think it ' s very important .  it is important that our work area looks neat .  vince  kevin g moore  02 / 28 / 2000 11 : 01 am  to : shirley crenshaw / hou / ect @ ect , vince j kaminski / hou / ect @ ect , mike a  roberts / hou / ect @ ect  cc :  subject : research group  hello vince ,  vince , before i get with delores on the matter of the  department i wanted to ask you how important it  that we get the walls repaired ?  is the research department satisfactory or is  there anything else that i can do ?  thanks  kevin moore\",0\n\"Subject: re : network planning  stinson , i had a discussion with jim and he said that the company ' s name is  mill three . they provide modeling tools for tiered qos and the like for  network planning . he said that the code is written in c and that we should  be able to work with it . he will get us the contact name and we can get a  presentation for us . jim said that he arranged for this before he met me and  learned of our ( ebs research ) role in this matter . i made it clear to jim  that john griebling had asked us to set up this group to do modeling and that  we are in the process of arranging for 4 or modeling experts to reside in  houston . from now on jim and i will work hand and hand on such issues along  with you to make sure that we initiate development efforts as soon as  possible to utilize krishna , samer and co . asap . . .  i ' ll take care of arranging a meeting with these consultatants asap .  my involvement in hamachi is through jim irvine . jim and i are working very  well together due to our engineering background . jim has been a network  ( communications ) engineer in the army for about 20 years . for hamachi , there  were gap analysis that needed to be done w . r . t . network reach and when and  where the network will be available ( ebs ' and hamachi ' s ) . additionally , we  would look at when tom gros wanted pooling points up and running , we would  then look at hamachi ' s pooling point sites and come up with requests to  change dates or third party involvements .  for the most part , our efforts has been to interview hamachi network  developers about their plans and put the data together in a manner that we  can summarize for john . additionally , we ' ve had two meetings with sycamore  ( they have offices in denver ) on their products and brett gave a presentation  on his effort to jim , etc . . . . more details later when we meet .  ravi .  stinson gibner @ ect  03 / 02 / 00 08 : 52 am  to : ravi thuraisingham / enron communications @ enron communications @ enron  cc :  subject : network planning  ravi :  i was told by john bloomer that there is a group of consultants in the  portland office from a company called ( i think ) m 3 i . they are doing  network consumption and operations modelling . jim irvine or shawna meyer  were given as enron contacts on this project . we need to find out what  exactly this group is doing and see if we should get samer and either you or  me to go , find out the details , and get a brain dump of what they have  accomplished to see if it can be used in our modelling efforts .  can you find out what jim knows about this project and get back to me ?  thanks ,  - - stinson  ps how is hamachi going , and what has been your role there ?\",0\n\"Subject: super saturday june 3 , 2000  gentlemen - thanks for your support of ena ' s super saturday next week . i  have attached a preliminary schedule ( which will change i ' m surebut i will  keep you updated ) for your review . thanks again . ted\",0\n\"Subject: re : thomas knudsen  steve ,  i shall talk to anjam about it . our impression here in houston is that thomas  is quite qualified  and we are very interested in him . a few days will not make much difference  in the hiring process .  vince  steven leppard  04 / 17 / 2000 03 : 50 am  to : dale surbey / lon / ect @ ect , vince j kaminski / hou / ect @ ect  cc :  subject : thomas knudsen  dale , vince  as you all know i have attempted to get thomas knudsen interviewed as a  result of prof lane hughston ' s recommendation ( lane is an acquaintance of  vince and me , and is a very senior figure in the world of quant finance ) .  anjam vetoed the idea of interviewing thomas since he was \"\" too old and too  experienced \"\" . since i felt that thomas has some merit , i asked houston to  have an informal chat with thomas . houston wish to pursue the interview  process further , and anjam has set about setting up the interviews . i ' m  somewhat concerned about the way in which anjam is going about this , since it  seems he ' s trying to put up barriers to these interviews .  i received a concerned email from thomas knudsen this morning in which he  recounts some strange conversations with anjam . he says he received a call  from anjam on thursday ( 13 th april ) evening ( outside office hours ) , asking  how he got his cv into enron ( i ' d shown anjam the email and cv back in early  february ) , and how anjam could contact him ( despite the fact he was  contacting him at that moment ) .  anjam then called thomas on his work number ( bad form ) on friday 14 th asking  thomas to come in for interviews on monday ( one working day ' s notice ) .  thomas told anjam he was going on holiday on wednesday of this week , and that  he ' d have to see if he could make time given the need to tidy up some things  at work . he said he ' d contact anjam on monday ( today ) to confirm his  availability .  today ( 17 th april ) thomas called anjam to say he couldn ' t make it , and that  he wouldn ' t be able to make it for two weeks ( not so serious , he thought ,  given that we ' re losing time to easter anyway ) . anjam told thomas that the  position might be filled in two weeks ' time .  thomas is concerned about missing the boat , and i for one didn ' t even realise  it was leaving so soon !  can anyone shed any light on this ?  steve\",0\n\"Subject: re : anshuman srivastava  thanks margaret . will keep you in the loop if things change .  i am attaching a job description for anshuman , as we had discussed , foir your  files .  regards ,  sandeep .  margaret daffin @ ect  02 / 16 / 2001 09 : 41 am  to : sandeep kohli / enron _ development @ enron _ development  cc : molly magee @ ect , vince j kaminski / hou / ect @ ect , jane allen / hou / ect @ ect  subject : re : anshuman srivastava  sandeep : further to my voice mail to you today , i will meet with anshuman at  10 : 30 am and will keep his documents in a file .  however , without some type of job offer in the us , we cannot move forward  with an ll visa for him and if you believe he will not be returning to the us  to work , then we really do not need to get him the ll at this time .  if the circumstances change , please let me know .  margaret  sandeep kohli @ enron _ development  02 / 15 / 2001 02 : 05 pm  to : margaret daffin @ ect  cc : molly magee @ ect , anshuman srivastav / enron _ development @ enron _ development  subject : anshuman srivastava  margaret ,  please find attached the resume of anshuman , as well as the form needed for  l - 1 visa , duly filled in .  copies of all required material for the visa , has already been put into  inter - office mail .  please do call me at 713 - 857 - 6826 . i want to reschedule today ' s meeting for  another time , since we are working on a deadline here .  regards ,  sandeep .  - - - - - - - - - - - - - - - - - - - - - - forwarded by sandeep kohli / enron _ development on  02 / 15 / 2001 01 : 58 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  sandeep kohli  02 / 15 / 2001 11 : 21 am  to : anshuman srivastav / enron _ development @ enron _ development  cc :  subject :\",0\n\"Subject: internship opportunities  please respond to dear mr . kaminski ,  i have found the enrononline project a very interesting one and have enjoyed  working with everyone in the research department as well as those from other  departments . i am keenly interested in this area and was wondering if there  would be any summer internship opportunities . i have attached my resume to  this mail for your review and look forward to hearing from you soon .  thank you  ivy ghose  rice mba 2002  - resume . doc\",0\n\"Subject: rendez - vous reporter : tuesday 5 th september 2000  > tuesday 5 th september 2000  >  > the monte carlo rendez - vous reporter from reactions , in association with  > guy carpenter [ http : / / www . guycarp . com ] . simply click on the link next to  > each headline to read the full story .  >  > top stories of the day :  >  > back to basics for employers re  > http : / / www . reactionsnet . com / conferences / viewstory . asp ? id = 675  >  > deconstructing the nature of risk  > http : / / www . reactionsnet . com / conferences / viewstory . asp ? id = 680  >  > also :  > quackenbush report condemned  > http : / / www . reactionsnet . com / conferences / viewstory . asp ? id = 683  > fremont moves to stem loses  > http : / / www . reactionsnet . com / conferences / viewstory . asp ? id = 684  > independent toughs it out  > http : / / www . reactionsnet . com / conferences / viewstory . asp ? id = 677  > xl to grow reinsurance business  > http : / / www . reactionsnet . com / conferences / viewstory . asp ? id = 679  > taylor will stay in industry after leaving lloyd ' s  > http : / / www . reactionsnet . com / conferences / viewstory . asp ? id = 676  > st paul re restructures  > http : / / www . reactionsnet . com / conferences / viewstory . asp ? id = 678  > purkiss unveils alea  > http : / / www . reactionsnet . com / conferences / viewstory . asp ? id = 681  > wurtt uk goes digital  > http : / / www . reactionsnet . com / conferences / viewstory . asp ? id = 682  > unum boosts max re ' s premiums  > http : / / www . reactionsnet . com / conferences / viewstory . asp ? id = 685  > alexander forbes to acquire in uk  > http : / / www . reactionsnet . com / conferences / viewstory . asp ? id = 686  >  >  >  > please visit http : / / www . reactionsnet . com for all the latest news from the  > world ' s largest insurance and reinsurance conference .  >  > alternatively , you can read these stories on the official rendez - vous  > website at http : / / www . rvs - monte - carlo . com  >  >  > book of the industry :  >  > reinsurance  > fourth edition of professor robert l carter ' s industry - standard textbook .  > https : / / ecommerce . waterside . net / reactions / reins _ fourth . asp  >\",0\n\"Subject: re : 1 . power 2000 ; 2 . my proposed 5 / 25 houston visit  ehud ,  thanks fro your message .  what about june 22 ? i have several trips in between may 25 and june 22 .  vince  \"\" ehud i . ronn \"\" on 05 / 16 / 2000 02 : 47 : 49 pm  to : vince . j . kaminski @ enron . com  cc :  subject : 1 . power 2000 ; 2 . my proposed 5 / 25 houston visit  vince ,  greetings .  1 . thanks again for hosting the dinner at power 2000 . congratulations  also on a thoughtful keynote address , a copy of which i picked up on the  way out of the conference .  2 . my family and i are leaving on a family trip 5 / 25 thru 6 / 4 . thus , i  would like to reschedule my proposed houston visit , and presentation of the  \"\" enterprise - wide risk management \"\" model to enron ' s research dept . , to the  next mutually - convenient date .  best ,  ehud  ehud i . ronn  department of finance  college and graduate school of business  university of texas at austin  austin , tx . 78712 - 1179  voice : ( 512 ) 471 - 5853  fax : ( 512 ) 471 - 5073  internet : eronn @ mail . utexas . edu \",0\n\"Subject: re : many  helyette ,  sorry for not getting back to you earlier . i took a few days off before my  family goes back to california .  i have arranged a replacement for you for the houston and new york risk  courses . my colleagues , stinson gibner and steve leppard , gave two  presentations . i shall be speaking in london on thursday only . steve leppard  will make a presentation on friday in my place .  i look forward to meeting you in london . i want to make sure that we can sit  down for a few minutes and talk about the paris presentations .  vince\",0\n\"Subject: re : backtesting for different percentiles  vlady , i enclosed the file with 2 backtesting plots ( you saw them before ) .  the following table shows what was the percentage of the days when pnl fell  below var 95 , var 90 , var 85 .  these results are based on the real ng forward prices from 1 / 1 / 99 to 6 / 7 / 00  for 2 different portfolios :  - portfolio 1 contained the positions equal to ng - price - prc portfolio  positions on 6 / 6 / 00 ,  - portfolio 2 consists of the positions equal to storage - prc positions on  5 / 25 / 00 .  portfolio 1  var 95 var 90 var 85  implied vols 2 . 93 4 . 11 5 . 57  historical vols with decay = 1 7 . 62 12 . 02 15 . 54  historical vols withdecay = 0 . 97 6 . 75 12 . 02 15 . 54  historical vols withdecay = 0 . 94 6 . 45 12 . 02 15 . 54  portfolio 2  var 95 var 90 var 85  implied vols 4 . 1 6 . 74 9 . 97  historical vols with decay = 1 7 . 04 11 . 14 15 . 84  historical vols withdecay = 0 . 97 6 . 74 10 . 56 16 . 13  historical vols withdecay = 0 . 94 7 . 04 11 . 14 15 . 84  this shows that when we have more observations ( columns corresponding to  var 90 and var 85 )  compared to the column corresponding to var 95 the frequency of curve shift  being lower than var  becomes closer to the theoretical value ( 5 % , 10 % and 15 % ) . the numbers in the  column \"\" var 85 \"\" are  very close to 15 % . this is the argument in favor of using historical vols .  and also the results do not depend on the decay factor in this experiment .  also notice : the numbers in column \"\" var 95 \"\" are higher than 5 % and this is an  indication of fat tails .  let me know if you have any questions .  tanya .\",0\n\"Subject: ( no subject )  pierre - philippe ,  thanks for your message . i shall be glad to make a presentation in early  november . i understand the presentation are on fridays and november the 3 rd  would be the best date for me .  if you prefer november the 10 th , we have to wait a few more days with the  decision . we have a management conference every year in san antonio and it  will be held either in the 2 nd or the 3 rd week of november . i shall know in a  few days . the same goes for november 9 , assuming it was not a mistake ( it ' s  thursday ) .  i shall be free for dinner on the day of the conference . thanks for the  invitation .  vince\",0\n\"Subject: jaesoo lew  vince : jaesoo lew has just returned my phone call . he is interested in  meeting with you and your group , and would like to do so on wednesday ,  10 / 25 / 2000 . he had already made travel arrangements to fly to a conference  in seattle on 10 / 25 , but is willing to come here for the interviews first and  then travel from houston to seattle for the seminar . he did ask if we would  be willing to reimburse him for the additional cost of the ticket , and i told  him i was sure that you would consider it .  dr . lew asked that we schedule his flight into houston for some time after  6 : 00 pm on tuesday , 10 / 24 / 2000 . i will work on the travel arrangements  tomorrow morning , and keep you advised .  please call me with any questions ,  molly  x 34804\",0\n\"Subject: re : research leads  hello team 1 ,  i spoke with larry gagliardi on the crude / refinery products desk this morning  and he agreed to talk with you after 12 : 30 today or after 2 : 30 any other  weekday . he is very familiar with the other platforms and should be a great  resource . larry suggested that you surf eol to find names of power and / or  natural gas traders , and call them up . please let me know if you have  difficulty finding / contacting folks this way and i will see if i can help .  larry ' s office number is 713 - 853 - 0543 , and his email is  larry . gagliardi @ enron . com .  good luck  ken\",0\n\"Subject: research support in london  vince ,  steve leppard informed my today that he will be moving to enron metals . i  think that leaves a leadership hole in research here . when that happens in a  place like this , resources get diverted to the squeakiest wheel . do you have  any advice ? i am concerned that london continues to lag behind in the  implementation and analysis of var - most commodities are on spreadsheets and  there is not a lot of attention on calibration , analyzing output , refining ,  improving etc . .  pls advise  ted\",0\n\"Subject: password  login kkindal  password marketcredit !\",0\n\"Subject: thank you for renewing your subscription to power finance & risk  dear vince kaminski :  thank you for renewing your subscription to power finance & risk - your  exclusive source for power financing and trading news -  http : / / www . iipower . com .  remember , your subscription entitles you to breaking news emails , print  issues and access to http : / / www . iipower . com . online , you can access breaking  news and the current issue , as well as a searchable archive and special  supplements .  please continue to enjoy access to http : / / www . iipower . com , using the user id  and password you provided :  user id : vkaminski  pass word : italia  please note your account 00235424 - 0015  * please remember that your user name and password may be used only by you .  violation of this rule will cause you to forfeit your complimentary access to  the subscribers only area of the web site .  why not bookmark http : / / www . iipower . com now , or make it your homepage for  easy access in the future ?  if you have any questions , please email us at  mailto : customerservice @ iinews . com or call customer service at ( 212 ) 224 - 3800  between 8 a . m . and 6 p . m . eastern time .  sincerely ,  nalini humphrey  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  nalini humphrey  customer service  ( 212 ) 224 - 3800  mailto : customerservice @ iinews . com\",0\n\"Subject: job well done / bob lee , kenneth parkhill  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 02 / 28 / 2001  03 : 27 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  mario de la ossa @ enron  02 / 28 / 2001 03 : 26 pm  to : stinson gibner / hou / ect @ ect  cc :  subject : job well done / bob lee , kenneth parkhill  just wanted to pass along my appreciation for the fine work these 2 gents are  doing on the products model . their attention to detail and customer focus  has greatly facilitated the performance of my job . thanks , mario .\",0\n\"Subject: executive solicitation - united way 2000  \u0001 & who wants to help millions ? \u0001 8 is our theme for enron \u0001 , s 2000 houston united  way campaign , which officially kicks off on august 9 , 2000 . last year , enron  achieved a 17 percent increase overour 1998 campaign . this success would not  have been possible without the support of all levels of management .  enron \u0001 , s executive solicitation begins today , and we are counting on your  leadership and strong support this year . your generous contribution will  enable united way agencies in our community to continue providing quality  programs and services .  our goal this year is $ 2 , 310 , 000 \u0001 ) a challenging goal , but we believe it is  achievable with your help . including the dollar for dollar corporate match ,  enron \u0001 , s total pledge to united way in 2000 will be more than $ 4 . 5 million .  to get there , we invite you to \u0001 & help millions \u0001 8 by making your pledge in one  of the following way :  ? alexis de tocqueville society ( gifts of $ 10 , 000 or more ) \u0001 ) every member of  enron \u0001 , s executive committee is a member of this elite group . last year ,  enron was houston \u0001 , s leader with 39 members and ranked in the top 25  nationally . members are recognized at a dinner hosted by the united way .  ? chairman \u0001 , s club \u0001 ) the giving levels in this united way group are :  ? diamond \u0001 ) $ 7 , 500 - $ 9 , 999  ? platinum \u0001 ) $ 5 , 000 - $ 7 , 499  ? gold \u0001 ) $ 2 , 500 - $ 4 , 999  ? silver \u0001 ) $ 1 , 500 - $ 2 , 499  ? bronze \u0001 ) $ 1 , 000 - $ 1 , 499  by pledging 1 . 2 percent or more of your annual base salary of $ 90 , 000 or  more , you also will qualify as a member of enron \u0001 , s \u0001 & make a difference club . \u0001 8  an exciting edition to our campaign this year is that we have implemented an  electronic pledging system . please click on the united way link ,  http : / / unitedway . enron . com to learn more about this year \u0001 , s campaign and make  your contribution . you will find that it is a very easy process and only  takes a few moments to complete . please make your electronic pledge no later  than monday , august 7 . if you have any questions at all regarding the  campaign or the new e - pledging , please contact kathy mayfield , campaign  coordinator at 713 - 853 - 3264 .  last year , enron \u0001 , s executive team pledged a total of $ 2 . 9 million , including  the corporate match , which accounted for approximately 66 percent of the  total enron dollars pledged . enron also ranked among the highest in per  capita giving for large companies for the 10 th straight year . this is a  tremendous achievement , and you played a significant role in making it a  reality . let \u0001 , s continue the momentum in 2000 .  together we will make a positive difference in the lives of many people in  need in our community as we all join in \u0001 & who wants to help millions ? \u0001 8 .\",0\n\"Subject: contact information  dear mr . kaminski ,  i sent my resume to your well respected company a few weeks ago  in regards to establishing a long - lasting career with them . i never  received a response and was wondering if you knew who was in charge of  the electric power disbatching / scheduling department or know of who i  may contact to inquire this information ? i know you are a very busy  professional and i apologize for the inconvenience . thank you for your  valuable time .  warmest regards ,  eric hilton\",0\n\"Subject: re : india model  vince ,  i forwarded this to sandeep so he could reply .  - - stinson  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 12 / 28 / 2000  03 : 04 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" robert schenck \"\" on 12 / 27 / 2000 11 : 21 : 18 pm  to :  cc :  subject : re : india model  stinson ,  i am trying to contact our data base experts at the moment to clarify some  issues with the region and may need another day to get something more  concrete in front of you .  what i would like to know is the extent of your company knowledge re the  following  generation units ' nameplate capacity , fuel type , efficiency , o vince . j . kaminski @ enron . com  > subject : india model  >  >  > robert ,  >  > enron would like to do a study of power prices and dispatch for  > india we  > have spoken with david branchcomb to see if henwood can help with this  > project in our time frame ( results needed by end of january ) , and he  > suggested that we speak directly with you about the project .  >  > i will try and give you a call later today ( wednesday afternoon  > in houston ,  > thurday morning , adelaide ) at around 9 : 00 a . m . your time to see we can  > describe for you the project in more detail .  >  > regards ,  >  > stinson gibner  > enron research group  > ( 713 ) 853 - 4748  >\",0\n\"Subject: brad romine  celeste ,  i was under the impression i sent you a message regarding brad romine but  i cannot find a copy in my msg folder . there might have been a glitch in the  cc - mail  and the message did not go through and wasn ' t stored .  i wanted to make the following points :  1 . brad will not show up on march 15 . he is still working on his dot - com  business and wants to  pursue this opportunity .  2 . my recommendation is that we should draw a line in the sand . either brad  or a stipend  refund check should show up on march 15 .  3 . i told brad that a failure to show up on march 15 will not imperil his  future employment opportunities  with enron . we just need clarity and ability to plan our human resource  needs . if he decides to re - apply  at some point in the future , we shall not hold his decision to pursue him  entrepreneurial plans against him .  please , let me know what you think .  vince\",0\n\"Subject: your confirmation is needed  please respond to energy news live daily update confirmation from lyris listmanager please reply to this email message to confirm your subscription to  enl - dailyupdate - txt .  your email address has been entered for a subscription to the  enl - dailyupdate - txt mailing list . however , your new subscription requires  a confirmation that you received this email message and want  to join this mailing list .  if you do not want to join , do nothing . you will be automatically  removed .  to confirm that you do want to join , simply reply to this message .  make sure that your message is addressed to  to unsubscribe immediately , you send an email message to \",0\n\"Subject: maureen raymond has completed derivatives i - applied energy  derivatives  thank you for supporting maureen raymond in attending derivatives i - applied  energy derivatives on august 8 - 9 , 2000 .  $ 800 has been charged to your company and rc . if you have any questions ,  please call the development center team at 713 - 853 - 0357 .\",0\n\"Subject: entouch newsletter  business highlights  enron freight markets  enron freight markets ( efm ) launched its over - the - road trucking business this week . in addition , efm completed 199 intermodal transactions in the first week of april .  ena west power  ena west power recently closed the sale of two power projects . the 750 mw pastoria energy facility in kern county , california was sold to calpine and the 240 mw fountain valley power project in colorado was sold to black hills energy capital . given the power shortage in the west , ena is developing additional power generation in nevada , california and washington .  enron industrial markets  the newsprint group of eim is working to revolutionize the newsprint market and bring financial rigor and market efficiencies to a business that has remained relatively unchanged for more than a century . the global newsprint market is a 23 billion dollar a year business with the north american market comprising one third . the group ' s originators , mid - marketers , and financial and physical traders offer our customers numerous financial and physical products not previously available in the market .  eim has made a substantial commitment to this business with the purchase of garden state paper company last year and the recent purchase of daishowa paper in quebec city . the number of transactions has grown exponentially with the physical trading alone reaching a nominal trading volume of more than $ 10 , 000 , 000 per month in little more than four months since opening . in addition to physical spot transactions , the desk offers our counterparties log - term fixed priced transactions , indexed based pricing , forward contracts , swaps , and derivative products .  forest products  forestweb inc . , an internet - based generator , aggregator and integrator of knowledge and information for the forest products industry , announced a new window to industry financial and risk management tools available from clickpaper . com . clickpaper allows the industry direct access to transactable prices for both physical and financial products , in an electronic format .  paperloop . com , one of the leading online resources for the forest products industry , announced the addition of clickpaper . com in their emarketplace , which showcases various e - commerce companies and highlights their services . paperloop provides clickpaper . com exposure to its 250 , 000 + monthly users in the pulp , paper and converting industries .  in the news  ken lay was the cover story for the april 2001 issue of continental magazine . he had positive things to say about his employees .  \"\" sitting in his 50 th floor mahogany - paneled office overlooking his much - beloved downtown houston , lay , with a self - conscious smile , bows his head slightly as he ' s described as an innovative market maker . ' i really can ' t take any credit , he says . my employees are responsible for what enron does . ' what he does best , the missouri - born corporate icon says , is ' to create an atmosphere of empowerment and creativity and hire bright , innovative people who aren ' t afraid to take risks and try new things . \"\"  welcome  new hires  eim - craig rickard , lisa mcclendon  ena - ben brasseaux , stephen swisher , tamera joyner , vanessa griffin , kathleen ashton  weekly enrononline statistics  below are the latest figures for enrononline as of april 6 , 2001 .  * total life to date transactions > 845 , 000  * life to date notional value of transactions > $ 500 billion  nuggets & notes  mark your lunch calendars now ! the next ews brown bag is thursday , april 19 at 11 : 30 am . tim battaglia vp / eim will be discussing steel origination .  congratulations to peter del vecchio , eim senior counsel , and his wife , nair . they are the proud parents of dante valentin del vecchio , born april 3 , weighing 4 pounds , 8 ounces .  news from the global flash  enron poland obtains gas trading license  on 22 nd march 2001 enron poland received a 10 - year gas trading license , valid for both domestic gas trading within poland as well as for gas exports . the license is a key component to our entering the gas trading market in poland and , coupled with the power trading license we obtained in 1999 , will give enron poland a strong position in the developing wholesale energy market . in the next two to three weeks , we expect to receive a cross - border trading license covering gas imports that are further regulated under the polish energy law ordinance on gas import diversification .  enron wind announces first uk off - shore wind farm  on 5 th april 2001 , enron wind announced that it had been granted the right to initiate the planning process for its first uk offshore wind farm , located at gunfleet sands , 7 km from clacton - upon - sea in essex . construction is expected to start towards the end of 2002 , with the wind farm of 30 turbines being operational by q 4 2003 . enron wind is also actively involved in a number of on - shore projects in the uk , including the development of wind farms in wales and northern ireland .  legal stuff  the information contained in this newsletter is confidential and proprietary to enron corp . and its subsidiaries . it is intended for internal use only and should not be disclosed .\",0\n\"Subject: [ amy @ sdsc . edu : re : caida ' metrics ' wg meeting , 2 mar 00 ( fwd ) ]  vince , stinson , looks like just me and jim irvine attending this one may  suffice since this is a working group meeting . as the note describes below ,  there will be a separate trip for you guys and me to determine long - term  involvement , etc . . . let me now when to schedule .  vince and stinson may want to  wait until kc claffy or i can visit portland , or have several enron  reps visit san diego for demos and related discussions .  ravi .  - - - - - forwarded by ravi thuraisingham / enron communications on 02 / 29 / 00 01 : 28  pm - - - - -  tmonk @ caida . org  02 / 29 / 00 09 : 18 am  to : ravi thuraisingham / enron communications @ enron communications  cc : amy @ caida . org , tmonk @ caida . org  subject : [ amy @ sdsc . edu : re : caida ' metrics ' wg meeting , 2 mar 00 ( fwd ) ]  ravi ,  hi , amy forwarded me your note . since thursday is the kick off  discussions for the new working group , it might not be the ideal venue  for enron to get acquainted with caida . vince and stinson may want to  wait until kc claffy or i can visit portland , or have several enron  reps visit san diego for demos and related discussions .  we have been talking to stan hanks for some time about enron ' s  interests in passive measurement and are in the process of implementing  some of the performance features in coralreef that he has described as  relevant to enron . examples of existing coralreef analyses on oc 3 / 12  links can be found at :  ( real - time )  https : / / anala . caida . org / aix /  ( post - processed traces )  we are also working to better tune the skitter tool for reachability  analysis and for use by providers , an example of some existing  analyses can be found at  for end - to - end measurements , including those relating to service level  guarantees , we are working to make skping and sktrace more useful to  providers and their noc personnel , see  another tool of relevance to providers is our cflowd which analyzes  flow export data from cisco routers , see  http : / / www . caida . org / tools / cflowd / .  we would appreciate the opportunity to talk with enron personnel about  how to make these tools more relevant and useful to your needs ,  however , it is doubtful that we will have time to discuss specific  tools on thursday .  we look forward to meeting you soon !  take care ,  tracie monk  director , caida  858 / 822 - 0943  - - - - - - - - - - forwarded message - - - - - - - - - -  to : amy @ sdsc . edu  cc : christine _ blair @ enron . net , kristy _ carnes @ enron . net  date : thu , 24 feb 2000 19 : 52 : 00 - 0600  subject : re : caida ' metrics ' wg meeting , 2 mar 00 ( fwd )  hi amy , jim irvine ( ebs head of network planning ) and i ( team lead , ebs  research ) will attend the meeting . we will have our assistances ( christine  blair  & kristy carnes , respectively ) arrange the trip . we will plan to come in the  night before and return on march 2 , 00 .  also , either vince kaminski ( md and head of enron research ) or stinson gibner  ( vp , enron research ) may also attend . they will let me know shortly if they  plan to attend .  regards ,  ravi .  p . s . our company name has been changed to enron broadband services  kristy , christine please make the appropriate travel arrangements . the place ,  time , etc . are listed .  | - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - >  | | amy @ sdsc . edu |  | | |  | | 02 / 24 / 00 |  | | 07 : 07 pm |  | | |  | - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - >  | |  | to : ravi thuraisingham / enron communications @ enron  communications |  | cc :  |  | subject : caida ' metrics ' wg meeting , 2 mar 00  ( fwd ) |  hi ravi ,  i wanted to follow up directly with you and see if you or anyone at enron  had any interest in participating in the proposed caida \"\" metrics \"\" working  group meeting ?  please let me know .  amy e . blanchard  caida  % % % % % % % % % % % % %  e - mail : amy @ caida . org  phone : ( 858 ) 534 - 8338  fax : ( 858 ) 534 - 5117  b . wg charters , meeting on 2 mar 00  i believe that we should instead run a single caida working group  on ' network metrics , ' rather than the two proposed earlier . my draft  of its charter is appended below . it focuses on producing educational  material about network measurement , and on developing new metrics - these  were the two areas of greatest interest amongst the caida members .  the wg co - chairs are  sue moon ( sprintlabs ) and brett watson ( mfn / abovenet )  you are invited to attend the first wg meeting .  the agenda is as follows . .  agenda for caida wg meeting on : thursday 2 mar 00  - - - - - - - - - - - - - - - - -  10 am - 4 pm , abovenet , downtown sjc ( see below for details )  - - - - - - - - - - - - - - - - - - - - - - - -  1 . review wg charter  - is it reasonable as set out in the draft ?  - what should be removed or added ?  2 . work through revised charter in detail  - identify the work required for each part  - determine who ' s willing to work on it  - attempt to determine delivery times  3 . discussion of new metrics  - first attempt at making a list of metrics to be considered  4 . anything else ?  location : abovenet is located in the knight - ridder building ,  attached to the fairmont hotel complex . the address is  50 w . san fernando st .  san jose , ca 95113  rsvp : to help us with organising the meeting , please send email to  nevil @ caida . org telling us how many will attend from  your organisation .  cheers , nevil  nevil brownlee visiting researcher  phone : ( 619 ) 822 0893 caida , san diego  caida network metrics working group : draft charter , tue 23 feb 00  goals :  1 education  + faq on what does ' measuring the internet actually mean ? '  - why measure anyway ?  - what can be measured ? how ? where ? by whom ?  - active vs passive , end - to - end vs provider network only ,  application vs transport layer  - rating schemes : provider ' net performance ' pages , internet  ' weather map ' s , keynote , etc .  publish as caida web pages , or maybe as an info rfc  + survey paper on metrics and internet measurement  - current measurement efforts ( surveyor , ripe test traffic ,  amp , iperf , at & t , keynote , skitter , . . . )  - current tools  publish as caida web pages  2 service metrics  + define new metrics  - taxonomy of current metrics ( ippm , rtfm , itu , . . )  - summary of metrics used for current services  - gather information / ideas about new / emerging services ,  especially diffserv - based ones  - make list of new metrics , either to improve measurement of  existing services or to support new ones  [ list of ' metrics ' questions ( appendix a ) goes here ]  + organise experimental implementation / testing of tools  for new metrics  + make recommendations on implementation  - define core set of ' really useful ' metrics  - recommend that caida implement these as a  ' service measurement toolkit '  + publish new metric definitions through ippm or rtfm  + produce document \"\" measurement requirements for hardware / software  vendors . \"\" publish on caida web pages  appendix a : questions from the earlier draft caida wg charters  a . what types of network - and transport - layer metrics are being  used by isps in engineering and operating their networks ?  by customers for verifying service guarantees ?  b . what new services are being ( or are likely to be ) offered , e . g .  diffserv ? is there a need for higher - layer metrics to better  monitor and manage these services ?  c . will these new differentiated transport - and  application - layer services need new metrics ?  d . how can the service metrics be measured in a multi - isp  environment ?  e . how can customers verify these measurements ?  f . what requirements would service measurement introduce for  equipment vendors ?  g . how relevant are specific techniques ( e . g . which flow ) and  points of measurement to specific users ( isp , customer , etc . )  requirements ?  h . how do these metrics relate to network behavior as perceived  by users ? how do they correlate with performance ?  appendix b : background on the ietf working groups  * rtfm wg : realtime traffic flow measurement  rtfm is concerned with passive measurements of two - way traffic flows ,  specified in terms of their end - point attributes . its primary goal was  to produce an improved traffic flow measurement model considering at least the  following needs :  a . wider range of measurable quantities , e . g . those  relating to ipv 6 , and to class of service  b . simpler ways to specify flows of interest  c . better ways to control access to measured flow data  d . strong focus on data reduction capabilities  e . efficient hardware implementation  * ippm wg : ip performance measurement  the ippm wg charter is to develop a set of standard metrics that can  be applied to the quality , performance , and reliability of internet  data delivery services . these metrics will be designed such that they  can be performed by network operators , end users , or independent  testing groups . it is important that the metrics not represent a value  judgement ( i . e . define \"\" good \"\" and \"\" bad \"\" ) , but rather provide unbiased  quantitative measures of performance .  rfcs  framework for ip performance metrics ( rfc 2330 )  metrics :  connectivity ( rfc 2678 ) ,  one - way delay ( rfc 2679 ) , one - way packet loss ( rfc 2680 )  round - trip delay ( rfc 2681 )  i - ds  bulk transfer capacity ( 2 x )  instantaneous packet delay variation  one - way loss patterns  * other wgs  the rmonmib wg is thinking about ' application performance  measurement . ' this is clearly a hard problem ( e . g . does this just  mean response - time measurement , can it be done by passive means , how  should the measurements be presented , etc . ) .  in short  - rtfm provides a good distributed measuring system for traffic  volumes  - ippm has concentrated on transport - layer behaviour of the  current , best - effort internet .  - rmonmib is beginning to consider application - layer measurement  - - - - - end of forwarded message - - - - -\",0\n\"Subject: re : 1 . your thur . / fri . austin trip ; 2 . presentation of my  risk - management optimization model ; 3 . enron on - line  vince ,  > i shall definitely attend you presentation at power 2000 .  thanks , i appreciate it .  > i shall ask about a guest accounton eol . typically , such an account allows  > an outside user to take a look at the system , but i don ' t think the traders  > will allow  > systematic access to the price data over a long period of time by a third  > party .  i quite understand , and will appreciate the ability to use the system while  the permission is applicable .  > would you like to meet with me , alex , helyette for dinner tuesday ?  i would be delighted to join you , alex and helyette for dinner tue . when  that info is available , please advise when and where .  look forward to seeing you tue . best ,  ehud  ehud i . ronn  department of finance  college and graduate school of business  university of texas at austin  austin , tx . 78712 - 1179  voice : ( 512 ) 471 - 5853  fax : ( 512 ) 471 - 5073  internet : eronn @ mail . utexas . edu \",0\n\"Subject: do vidzenija !  vince ,  today is the last day of my internship here this summer . i have had a  terrific summer . thank you so much for all of your support ! i have talked  with my supervisor from this group and i am pleased that he feels strongly  and positively about my performance . of course , my job decision is a very  important one for me and as i consider job offers in the upcoming months , a  variety of factors will be influencing my choice . certainly one of them will  be the positive experiece i have had with enron . but regardless of my  decision in future , i am so glad that i have had the opportunity to glimpse  into enron ' s business and culture . i have met some amazing people here , and  my experience with enron is something i will always take with me whereever i  go .  i hope to hear from you again . please feel free to contact me at any time .  my email remains : vngo @ rice . edu and i will leave shirley my phone number as  soon as i know it !  deepest regards ,  van\",0\n\"Subject: interview schedule for sanjeev khanna  hello all :  sanjeev khanna spoke with vince at the \"\" power 2000 \"\" conference and vince  has invited him to come in for an informal interview . he will be in the  office friday  afternoon , may 12 th . with the exception of vince , each of you might spend  at least 15 min with the individual . all interviews will be in ebl 938  the schedule is below and his resume is attached .  vince 1 : 00 pm ( 5 min )  vasant 1 : 15 pm  amitava 1 : 30 pm  stinson 1 : 45 pm  tanya 2 : 00 pm  zimin 2 : 15 pm  paulo 2 : 30 pm  krishna 2 : 45 pm  grant 3 : 00 pm  pg & e energy trading and any other company referenced herein which uses the  pg & e name or logo are not the same company as pacific gas and electric  company , the california utility . these companies are not regulated by the  california public utilities commission , and customers do not have to buy  products from these companies in order to continue to receive quality  regulated services from the utility .  - . doc\",0\n\"Subject: re : martin lin support for jim  hi stinson , i have sent an e - mail to martin to give him heads up on what to  expect in terms of transition . i have talked to jim about this and we are in  agreement on the following schedule for martin .  first two week martin will just read up stuff and get up to speed . i have  suggested some reading material . if you guys can do the same .  i ' ll set up a meeting for all of us with jim . jim and i will draft a game  plan document to outline major areas of work that we need to support from the  traffic engineering perpective ( this will involve our or guys , stinson and  i ) . martin will be on jim ' s team supporting general network planning  ( through this work i am doing right now for project hamachi , i will support  jim on other similar initiatives ) projects . martin will work with jim and me  on this . stinson , i will e - mail a draft of our game plan once i have  something on paper . after that we can distribute the document to tom  gros / jean mrha ( trading ) and ted seitz for information .  ravi .  stinson gibner @ ect  02 / 29 / 00 01 : 57 pm  to : ravi thuraisingham / enron communications @ enron communications @ enron  cc :  subject : martin lin support for jim  ravi :  since you are spending time with jim irvine , can you find out what martin lin  needs to do to start coming up to speed in supporting jim ? martin is ready  to transition , but needs to find out what he will be working on . will jim  be in houston anytime soon or should martin go to portland to talk to him ,  etc . . .  - - stinson\",0\n\"Subject: interview with ruewan jayasuriya  good morning ruwan :  the enron corp . research group would very much like to interview you on  friday , april 28 . the following schedule has been set up . please let me  know if it is not convenient for you .  friday , april 28 th :  1 : 00 pm vasant shanbhogue  1 : 30 pm vince kaminski  2 : 00 pm stinson gibner  2 : 30 pm krishna krishnarao  3 : 00 pm zimin lu  3 : 30 pm tanya tamarchenko  all interviews will be conducted in conference room eb 1938 .  please come to the reception desk in the lobby of the enron bldg . and ask  for me . they will call me and i will meet you in the 19 th floor elevator  lobby .  if you have any questions , please do not hesitate to call me .  sincerely ,  shirley crenshaw  administrative coordinator  enron corp . research  713 / 853 - 5290  email : shirley . crenshaw @ enron . com  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 19 / 2000  09 : 03 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  04 / 19 / 2000 08 : 56 am  to : shirley crenshaw / hou / ect @ ect  cc : pushkar shahi / hou / ect @ ect , vince j kaminski / hou / ect @ ect , stinson  gibner / hou / ect @ ect , tanya tamarchenko / hou / ect @ ect , zimin lu / hou / ect @ ect  subject : ruewan ' s resume  shirley ,  please set up an informal interview :  vk  vs  sg  kp  zl  tt  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 19 / 2000  08 : 57 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  pushkar shahi  04 / 18 / 2000 04 : 52 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : ruewan ' s resume  vince :  as discussed , i am forwarding ruwan ' s resume to you . ruwan is very excited  about meeting with you and elaborating on his qualifications . please let me  know a convenient time for next friday ( 4 / 28 / 00 ) when he could visit with  you ( or any other day next week at your convenience ) .  i have briefly explained to him the nature of the job at enron research  laying special stress on quantitative , programming and modelling experience .  ruwans seems very interested in that kind of work .  sincerely ,  pushkar shahi  financial trading\",0\n\"Subject: british pound analysis  vince ,  the attached report on the pound incorporates some minor edits from your  version . we will be inserting graphics into the report tomorrow to show  interest rate differentials , exchange rate movements , and growth rate  differentials .  maureen\",0\n\"Subject: pricing default and our may 22 conference call  julia ,  i am sending you a copy of the nondisclosure agreement i received from a  professor at ut  austin . three ut academics developed a model that may be useful in our pricing  applications . they envisage the possibility of either selling this model to  enron or of joint research  effort in this area .  can you , please , take a look at the attached legal document .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 05 / 22 / 2000  08 : 52 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  sheridan titman on 05 / 17 / 2000 08 : 56 : 42 am  to : sheridan titman ,  \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc : \"\" ' vkaminski @ aol . com ' \"\" , \"\" ' shirley crenshaw ' \"\"  subject : pricing default and our may 22 conference call  >  dear vince :  i spoke with ms crenshaw yesterday afternoon about a conference call about  developing internet course material . if you have already discussed this  with your colleagues , it might be helpful if you could very briefly outline  the questions and issues they might raise in the conference call so that i  can be a bit better prepared .  ms crenshaw also mentioned that you never received my earlier email  regarding the credit spread model i developed with stathis and sergey . my  earlier email follows , and the nondisclosure agreement is attached .  i look forward to talking with you next week .  regards ,  sheridan  sheridan titman  department of finance  college of business administration  university of texas  austin , texas 78712 - 1179  512 - 232 - 2787 ( phone )  512 - 471 - 5073 ( fax )  titman @ mail . utexas . edu  > - - - - - original message - - - - -  > from : sheridan titman  > sent : friday , may 05 , 2000 12 : 48 pm  > to : ' vince . j . kaminski @ enron . com '  > cc : stathis tompaidis  > subject : pricing default  >  >  > dear vince :  >  > i really enjoyed meeting with you yesterday and learned a lot from our  > discussions .  >  > the ut office of technology licensing and intellectual property has given  > us the attached form which they would like you to sign before we send you  > a copy of our paper on pricing default . please let me know if this is  > agreeable to you .  >  > i hope we have the opportunity to work with you in the future , either on  > the debt pricing models or on the other issues we discussed .  >  > i look forward to hearing from you .  >  > regards ,  >  > sheridan  >  > >  > sheridan titman  > department of finance  > college of business administration  > university of texas  > austin , texas 78712 - 1179  >  > 512 - 232 - 2787 ( phone )  > 512 - 471 - 5073 ( fax )  >  > titman @ mail . utexas . edu  >  - nondisclosure agreement . doc\",0\n\"Subject: request submitted : access request for  praveen . mellacheruvu @ enron . com  you have received this email because you are listed as an alternate data  approver . please click  approval to review and act upon this request .  request id : 000000000012987  approver : stinson . gibner @ enron . com  request create date : 1 / 9 / 01 3 : 03 : 48 pm  requested for : praveen . mellacheruvu @ enron . com  resource name : \\ \\ enehou \\ houston \\ common \\ research - [ read / write ]  resource type : directory\",0\n\"Subject: re : insead high - tech acquisitions workshop  ben  thanks for attending . i was on \"\" vacation \"\" last week ( driving from ca to  houston )  and could not answer your first message regardoing insead conference in time .  the objective was to find out more about the he workshop on high - tech  acquisitions  and evaluate the usefulness of the program for enron . i shall be making a  recommendation  to jeff skilling that we should work with wharton as a partner in a number of  different research projects .  i shall try to catch you next week to find out what was said about valuation  of small high - tech firms .  vince  benjamin parsons  06 / 12 / 2000 05 : 50 am  to : vince j kaminski / hou / ect @ ect  cc : bryan seyfried / lon / ect @ ect  subject : insead high - tech acquisitions workshop  vince  i attended the workshop on high - tech acquisitions at insead on saturday  alongside participants from cisco , eads , razorfish and cable + wireless , and  academics from insead and wharton . the basic premise was to discuss and get  feedback from practitioners about the research project , and a phd study which  is currently underway at wharton . the discussions were very interesting -  especially as this was my first exposure to this area .  examples of the discussions raised include  why firms acquire new businesses instead of developing them in - house  what degree of post - acquisition integration was optimal  difficulties of us firms acquiring euro / asian high - tech companies  how to value small high - tech firms  how to quantify the success / failure of an acquisition  my feeling is that further work with them in this area would be beneficial to  enron because it would help the development of the academic research and give  us first - hand access to the results . plus it would enable us to learn from  the mistakes of others , through meeting practitioners at such workshops and  having greater access to the case studies . i guess it could also aid our  realignment within the high - tech / communication industry to be seen in such  studies .  regards  ben\",0\n\"Subject: re : grant / anjam  per a converstion with vince kaminski , anjam provided his resignation this  past wednesday . therefore , we are on longer requesting activity on anjam .  thank you for your follow up and assistance with anjam .  norma villarreal  sr . hr represenative  713 / 853 - 1845  tara rozen  10 / 09 / 2000 11 : 42 am  to : norma villarreal / hou / ect @ ect  cc : melanie doyle / lon / ect @ ect  subject : grant / anjam  hi , norma  what happened to grant ? did he leave enron for a competetor ?  i assume vince is still interested in anjam even though anjam still hasn ' t  agreed the offer . please confirm as i presume anjam is waiting until the last  possible minute to accept .  thanks  tara\",0\n\"Subject: re : prc meeting date  anne ,  thanks . shirley is checking my calendar and will call you about the schedule .  the entire week of the 11 th does not look good for me .  vince  from : anne labbe / enron @ enronxgate on 04 / 30 / 2001 11 : 17 am  to : vince j kaminski / hou / ect @ ect  cc : shirley crenshaw / houston / eott @ eott  subject : prc meeting date  vince ,  just wanted to check with you to see if you have a preference as to when you  would like to have your mid - year prc meeting . if you and your team are  available , i would prefer to have it on either june 12 th , 13 th or 14 th . i am  very flexible though , so please just let me know so that i can start making  the necessary accommodations .  thanks ,  anne\",0\n\"Subject: re : iris mack  let me see what we can work out , vince , and we ' ll get back to you .  molly  vince j kaminski  12 / 18 / 2000 01 : 46 pm  to : molly magee / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : iris mack  molly ,  this is the list of people we can ask to interview iris .  i would include one ( or possibly more ) people from each group below ,  depending on availability .  1 . debbie brackett or bill bradford  2 . ted murphy , bjorn hagelman or david port  3 . mark tawney or joe hrgovcic  4 . greg whalley or louise kitchen  i shall send a message to them explaining that we try to identify the best  fit for a good  candidate .  vince  enron north america corp .  from : molly magee 12 / 18 / 2000 11 : 57 am  to : vince j kaminski / hou / ect @ ect  cc : shirley crenshaw / hou / ect @ ect  subject : iris mack  iris would like to come on thursday , 12 / 28 / 2000 , to visit with you and your  group . she will be in new orleans , and will just fly in for the day .  molly\",0\n\"Subject: re : credit . com cv ' s  my feedback :  philip has an excellent cv and background - - - phd coursework at university  of chicago , and work experience at long term capital ( hopefully he learned  something ) . his views are somewhat idealistic - - - his aim is to make  bid - offers in any product , and he could not really address how he would  handle illiquidity . nevertheless , if bryan needs traders , he can fit the  role .  zak seemed somewhat unfocused . he has worked on a variety of projects , but  does not have any specific view in mind as to what he would like to do . he  seemed very academically oriented , and might be hard to communicate and work  with . i do not see him working in the trenches , and i do not see him leading  the group either . he would be a good person to brainstorm ideas with .  vasant  - - - - - - - - - - - - - - - - - - - - - - forwarded by vasant shanbhogue / hou / ect on 05 / 22 / 2000  08 : 22 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  bryan seyfried  05 / 20 / 2000 09 : 35 am  to : vince j kaminski / hou / ect @ ect  cc : vasant shanbhogue / hou / ect @ ect  subject : re : credit . com cv ' s  could we talk on monday pls . obtain the feedback of your team .  thanks for the assistance  vince j kaminski  08 / 05 / 2000 22 : 46  to : rosalinda resendez / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , bryan  seyfried / lon / ect @ ect  subject : re : credit . com cv ' s  rosie ,  we are making arrangements to bring them to houston for an  interview .  vince  rosalinda resendez  05 / 08 / 2000 11 : 10 am  to : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect  cc :  subject : credit . com cv ' s  vince ,  i ' ve been asked to forward these resumes to you .  rosie  - - - - - - - - - - - - - - - - - - - - - - forwarded by rosalinda resendez / hou / ect on 05 / 08 / 2000  11 : 06 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  louise  bratby  05 / 08 / 2000 10 : 11 am  to : rosalinda resendez / hou / ect @ ect  cc :  subject : credit . com cv ' s  rosalinda  i work with melanie doyle in london hr . i have two candidates who i ' m trying  to arrange ( for bryan seyfried ) to come in and see vince kaminski however i ' m  finding it difficult to co - ordinate from this end . would it be possible for  you to forward these cv ' s on to vince ' s assistant as i ' m not sure who the  correct person is .  thanks for your help and if you need more details my number is 44 20 7783  6945 .  regards  louise\",0\n\"Subject: 2001 research support for ebs  barry ,  thanks for the timely email . i have your name on my list of people to  contact this week as kevin hannon had mentioned to me just yesterday that our  group might be able to help you in translating positions for the new risk  system for ebs .  you are right that i haven ' t been spending much time on 44 . martin lin has  been taking the lead in day to day management of most of the current projects  that we are supporting . we have been somewhat short handed since samer  takriti left the group last fall and we were out - bid by mckinsey for cantekin  dincerler who had helped us with ebs projects as an intern over the  summer . however , we do have additional help coming . iris mack , a very  bright new hire who comes with significant consulting and risk management  experience , will be starting with the group next week . i am hoping that ,  together with martin , she will allow us to significantly increase the  research group presence on 44 and address areas which are currently  undersupported .  can i get on your schedule some time next week in order to map out the areas  where we could best contribute to the risk management projects and to  introduce iris and martin to you ? almost any time would be fine , or you can  have your assistant coordinate with shirley crenshaw x 35290 .  regards ,  stinson  x 34748\",0\n\"Subject: mit phone interview - zachary inman  jim coffey , vince kaminski , mark palmer and james scribner ,  thank you all for taking time out of your busy schedules to conduct the  following interviews . included is the itinerary for each of your phone  interviews with zachary inman from mit .  you may reach zach at 617 - 577 - 1565 .  vince kaminski - please call zach at 7 : 30 am . this will be 8 : 30 am zach ' s  time .  mark palmer - please call zach at 10 : 30 am . this will be 11 : 30 am  zach ' s time  james scribner - please call zach at 11 : 30 am . this will be 12 : 30 pm  zach ' s time .  jim coffey - please call zach at 1 : 30 pm . this will be 2 : 30 pm zach ' s  time .  the four phone interviews will determine if we are going to invite zach to  our december 8 th and 9 th analyst super saturday .  i will send you a packet with all the pertinent details that you will need  to conduct the 30 - minute phone interview . the packet will contain his resume  and an evaluation form , which structures the format of your interview . if  you have any questions please feel free to give me a call .  please interoffice the evaluation form , once you have completed the  interview , to ebl 167 . it is important that i receive this evaluation  promptly .  if there are any changes , due to the unforeseen , i will call you prior to the  scheduled interviews .  thanks so much for your help !  beth miertschin  recruiter  ext . 30322  shawna johnson  recruiting coordinator  ext . 58369\",0\n\"Subject: re : grades  pam ,  another group :  stuart hamel  jed howard  brian nelson  b +  vince  pamela vande krol castro on 05 / 03 / 2001 08 : 58 : 24 am  to : vince . j . kaminski @ enron . com  cc :  subject : re : grades  got them - thank you ! - pvc  at 05 : 21 pm 5 / 2 / 01 - 0500 , you wrote :  > pam ,  >  > another team :  >  > elena chilkina  > robert j . guadette  > joseph helms  > kenneth jett  > todd litton  > mark westmoreland  >  >  > grade : a -  >  >  > vince kaminski\",0\n\"Subject: re : yaron ' s resume  alison ,  thanks a lot .  vince  enron north america corp .  from : mary alison bailey 10 / 25 / 2000 10 : 47 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : yaron ' s resume  i promise we will do everything we can . right now kristin ' s assistant , alyse  herasimchuk , has a call the cornell career office to put him on the  schedule . if that doesn ' t work , kristin will ask for the interviewers to  stay longer to interview him . will let you know as soon as we do .  thanks for everything you do for us .  alison  vince j kaminski  10 / 25 / 2000 10 : 02 am  to : mary alison bailey / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : yaron ' s resume  alison ,  i appreciate it . i really need your help on this one . his father is very  helpful in my recruiting  efforts at berkeley .  vince  enron north america corp .  from : mary alison bailey 10 / 25 / 2000 09 : 38 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : yaron ' s resume  correction - i was going too fast last night ( you said cornell not carneige  mellon ) . cornell interviews are monday , october 30 & tuesday , october 31 . we  are faxing shmuel oren ' s resume to kristin and checking to see if there is  any time on the closed schedule , or if the interviewers will stay longer to  include him . i will let you know today if we can make it work .  sorry my first e - mail was incorrect .  vince j kaminski  10 / 24 / 2000 04 : 37 pm  to : charlene jackson / corp / enron @ enron  cc : mary alison bailey / hou / ect @ ect , vince j kaminski / hou / ect @ ect  subject : yaron ' s resume  charlene ,  please , help . this is a son of a professor at berkeley who helps me a lot in  the recruiting process .  his son goes to cornell . can we invite him ( the son , not the professor ) to a  super saturday ? i really want  to repay the debt to his father who is very instrumental in my recruiting  efforts .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 24 / 2000  04 : 40 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" shmuel oren \"\" on 10 / 23 / 2000 04 : 37 : 25 pm  to :  cc :  subject : yaron ' s resume  ?  - yaron - resume 3 . doc\",0\n\"Subject: re : message from bogdan  thanks vince . we ' ll talk to him this week .  - - dan  vince j kaminski  02 / 02 / 2001 05 : 03 pm  to : daniel reck / hou / ect @ ect  cc :  subject : message from bogdan  dan ,  i am sending you a resume of one of my compatriots who  lives in houston . i met him socially a few times .  he graduated from the same university i did .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 02 / 2001  05 : 00 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  awenda 2000 @ cs . com on 02 / 01 / 2001 09 : 57 : 42 am  to : vince . j . kaminski @ enron . com  cc :  subject : message from bogdan  hi vince ,  i am enclosing my resume , as per our most recent conversation .  best regards ,  bogdan m . szopa  - bogdan res . . doc\",0\n\"Subject: iafe update  dear iafe member :  i would like to take this opportunity to wish you a happy new year .  2001 marks the 10 anniversary of the iafe and we will be celebrating with  a winter gala at the yale club ballroom on february 8 th . the black tie  event will begin with cocktails at 6 : 00 and a sit down dinner at 7 : 30 .  there will be  dancing and festivities including war stories by iafe senior fellows , a  silent auction ,  and a financial engineering retrospective , to name a few .  a special award will be presented to myron scholes for his work on the  black - scholes model . for more information and to register for the  event please go to .  we are pleased to report that we had a very exciting and productive  year with dozens of activities around the world . as we enter our 10 th  year of operations , the iafe has additional membership options available  to you . please take a moment to renew your membership , if you have not  done so : . based on member  requests , a premium membership is now being offered that includes the  annual conference at a 30 % discount , the financial engineer of the year  dinner , plus a subscription to the journal of derivatives ( jod ) . the full  membership remains as in previous years . the new regular  membership includes all full membership benefits except jod . membership is  based on the calendar year january 1 - december 31 , 2001 .  our website was recently updated , when you get a moment , please visit our  web site . make sure to check the calendar for upcoming events regularly  since we add to it frequently . >  i hope to see you at an iafe event in 2001 .  donna jacobus  iafe office manager  main @ iafe . org\",0\n\"Subject: gpcm summary 1999  this has been a great year for rbac and gpcm .  during the year we have doubled to 10 the number of gpcm licensees .  this means we ' ve also doubled the number of wonderful people we ' ve trained  and are supporting .  and , i sincerely mean it when i say it has been a real pleasure working  with you all .  one of the things we stress when we are selling gpcm is that it takes a  strong commitment on the part of the licensee , a commitment to find skilled  and dedicated people to make optimal use of this sophisticated tool . and ,  i ' m happy to report that we have that quality in the gpcm teams we work  with .  next year we have some big challenges . we will be converting the system  from office 97 to office 2000 and will also need to make sure it will run  in the windows 2000 environment .  we will be adding new flexibility in defining our transportation zone price  curves to enable users , especially pipeline users , to test variations of  pricing strategies for their impacts on basis and utilization .  we will be adding a capability for modeling future ft contracting .  we will upgrade our existing database comparison program to allow you to  select those items you want to have automatically updated in your own  databases .  we will continue to work with rdi to improve pipeline and storage  infrastructure representations , to provide interfaces between gasdat and  gpcm , and to give you regular optional updates for your own databases .  we are beginning to plan out a new website dedicated to gpcm licensees ( and  possibly prospects ) . we have acquired gpcm . rbac . com and gpcm . net for this  purpose .  in making these various changes , we look also to you , our existing  licensees , for enhancement and improvement ideas . we are planning to  conduct interviews of our licensees during the next 30 - 60 days to find  out what you like , but also what you would like to see improved , as well as  some new ideas for gpcm .  i would like to thank the following people for their contributions to gpcm  during 1999 .  o liam leahy for his excellent marketing , sales , and planning support  o charles carr for his quality work on our website and support with subtle  visual basic programming issues  o richard berman for thorough research on design tools and skilled windows  programming  o richard mcbride for continuing support and development of his emnet  optimization program  o aaron and james brooks for design and production of the powerpoint  pipeline maps now available in gpcm  o mike farina and rdi for their continuing improvement of the gpcm data and  gasdat database  o gpcm users who have found data bugs and reported them to use so that we  could get them corrected  o gpcm users who have suggested new features which would make gpcm a better  product  o gpcm users who have given us sales leads during the year  o gpcm users who have used gpcm to help their companies make better plans  and decisions , which is , after all , the purpose for which it was designed  we hope all of you have a wonderful holiday season and look forward to an  even better year 2000 .  bob brooks\",0\n\"Subject: lng models  can you guys please take a look , and eric , please show to farzad . . . . jeff  - - - - - - - - - - - - - - - - - - - - - - forwarded by jeffrey a shankman / hou / ect on 07 / 07 / 2000  07 : 37 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  merritt thomas 07 / 06 / 2000 12 : 00 pm  to : jeffrey a shankman / hou / ect @ ect  cc :  subject : lng models  jeff ,  here are some models which i received from rotenberg ' s lng group when i was  in houston last month . i haven ' t had the opportunity to really take a look  at them , but you will probably want to pass them along to your lng people .  thanks ,  merritt\",0\n\"Subject: re : prospective 6 / 22 houston visit  ehud ,  june 22 works for me . do you want to firm it up ?  vince  \"\" ehud i . ronn \"\" on 05 / 25 / 2000 06 : 45 : 49 pm  to : vince . j . kaminski @ enron . com  cc :  subject : prospective 6 / 22 houston visit  vince ,  many thanks for your e - mail .  > what about june 22 ? i have several trips in between may 25 and june 22 .  i thank you for the invitation . may i at this time acquire an \"\" option \"\" to  visit on that date , with the finalization of the visit ' s timing to be  completed early next month ?  thanks and best regards ,  ehud  ehud i . ronn  department of finance  college and graduate school of business  university of texas at austin  austin , tx . 78712 - 1179  voice : ( 512 ) 471 - 5853  fax : ( 512 ) 471 - 5073  internet : eronn @ mail . utexas . edu \",0\n\"Subject: erisks event information  thank you for registering for the erisks iconference  \"\" quantifying mid - market default risk : estimation & validation of internal  grades for basle & securitization \"\"  featuring eric falkenstein , vice president of moody ' s risk management  services  the iconference is scheduled for  wednesday , october 18 , 2000 at 12 : 00 noon edt , 5 : 00 p . m . london .  following are the details you will need to access the event .  you may wish to save or print this page for future reference .  1 . dial 1 - 800 - 275 - 3210 ( u . s . ) or 973 - 628 - 6885 ( international ) to listen to  the audio for this program . audio is available by telephone only .  2 . wait for an operator and give the following code : \"\" erisks iconference . \"\"  music will play until the webconference begins .  3 . join the web - based portion of the program to see slides , participate in  polls and ask questions .  - open netscape or internet explorer 3 . 0 or higher .  - enter the following web address : http : / / www . communicast . com / login  4 . fill out the form on this page and enter the following confirmation  number : 10006 .  5 . click the \"\" communicast now \"\" button . in a few moments you will be placed  in the erisks conference .  communicast system requirements :  - communicast requires the ability to run java applets .  - netscape or internet explorer browsers 3 . 0 or higher .  if this is your first communicast event , you may wish to test your computer .  visit http : / / www . communicast . com / login at any time and click the \"\" test \"\"  button at the bottom of the page . for this conference , you may skip the last  three tests relating to streaming audio . you will not need realplayer to  participate in this conference .  if you require further assistance , contact support @ communicast . com .\",0\n\"Subject: here ' s your chance  what do we need to know to make ebs a successful business ?  we need to identify 5 to 10 critical issues in order to help m . i . t . professor  gabriel bitran get his students focused on areas of interest to ebs .  your suggestions for interesting and useful research topics are due by next  wednesday morning , may 31 . tom gros will then forward the topics to  professor bitran .  stinson  p . s .  i really need your help on this .\",0\n\"Subject: re : fw : opportunities  vince  i went through my secretary ' s things and found the following number :  713 . 853 . 3848  is this the number to use ?  thanks  gerry  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : thursday , october 26 , 2000 5 : 48 pm  to : gsheble @ iastate . edu  cc : vince . j . kaminski @ enron . com  subject : re : fw : opportunities  gerry ,  the best time is morning , 7 : 30 to 8 : 30 central .  vince  \"\" sheble , g . b . \"\" on 10 / 26 / 2000 05 : 43 : 28 pm  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc :  subject : fw : opportunities  dear sir :  i have attached my resume for your review . i have meetings from 8 - 9 , and  10 - 2 tomorrow . when would it be best for me to call you ?  cordially ,  gerry  - - - - - original message - - - - -  from : lloyd . will @ enron . com [ mailto : lloyd . will @ enron . com ]  sent : wednesday , october 25 , 2000 12 : 12 pm  to : vince . j . kaminski @ enron . com  cc : gsheble @ iastate . edu  subject : re : opportunities  thanks vince .  i have contacted him and have given him your phone number .  he will attempt to contact you thursady or friday .  good luck .  vince j kaminski  10 / 24 / 2000 03 : 59 pm  to : lloyd will / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : opportunities ( document link : lloyd will )  lloyd ,  yes , i would be very interested .  vince  lloyd will  10 / 24 / 2000 02 : 45 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : opportunities  vince would you be interested in this professional .  i would be glad to facilitate a conference call .  thanks .  - - - - - - - - - - - - - - - - - - - - - - forwarded by lloyd will / hou / ect on 10 / 24 / 2000 02 : 43  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" sheble , g . b . \"\" on 10 / 17 / 2000 04 : 52 : 57 pm  to : \"\" ' lloyd . will @ enron . com ' \"\"  cc :  subject : re : opportunities  loyd  i tried to call yesterday , but you were out of the office . my schedule  follows , would you want to pick a time for me to call you or send me a list  of times to pick ?  gerry  fall 2000 teaching schedule  ee 553 mtwr 10 - 11 am curtis hall 308  engr 161 mw 2 - 4 howe hall 2228  other commitments  m 11 - 12 ep & es  m 1 - 2 office hours  t 12 - 2 ep & es seminar  t 2 - 3 office hours  t 3 - 4 pserc  t 5 - 6 epri - dod  w 11 - 12 office hours  w 4 - 9 dsm  r 11 - 12 office hours  f 11 - 12 p & t  f 1 - 3 cas  f 3 - 4 departmental meeting  - - - - - original message - - - - -  from : lloyd . will @ enron . com [ mailto : lloyd . will @ enron . com ]  sent : monday , october 16 , 2000 8 : 00 am  to : sheble , g . b .  subject : re : opportunities  give me a call any time to discuss things .  713 - 853 - 3383 .  thanks .  \"\" sheble , g . b . \"\" on 10 / 15 / 2000 02 : 17 : 02 pm  to : lloyd will / hou / ect @ ect  cc :  subject : re : opportunities  lloyd  i am attaching another resume for your review , please pass it along if  there  is any interest .  i would also like to discuss opportunities with you as i expect to graduate  with my mba summer 2001 .  cordially ,  gerry  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  gerald b . shebl ,  professor , electrical and computer engineering  director of complex adaptive systems program  1115 coover hall  ames , iowa 50011  voice : 515 . 294 . 3046  fax : 515 . 294 . 4263  email : gsheble @ iastate . edu  web : http : / / www . ee . iastate . edu / ~ sheble /  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  ( see attached file : short _ resume . doc )\",0\n\"Subject: fw : having iris visit london  anita ,  it seems that i am going to london next week . please see forwarded emails .  can you please assist me with my travel arrangements .  thanks ,  iris  - - - - - original message - - - - -  from : kaminski , vince  sent : tuesday , april 24 , 2001 5 : 25 pm  to : shanbhogue , vasant ; mack , iris ; dhar , amitava ; kaminski , vince  subject : having iris visit london  it ' s ok to delay the materials for duffie . he is very busy anyway and is not  going to complain .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 24 / 2001  05 : 23 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  scott salmon @ enron  04 / 24 / 2001 01 : 23 pm  to : amitava dhar / corp / enron @ enron  cc : vince j kaminski / hou / ect @ ect , vasant shanbhogue / enron @ enronxgate , ben  parsons / lon / ect @ ect , george albanis / lon / ect @ ect , tomas valnek / lon / ect @ ect ,  bryan seyfried / lon / ect @ ect  subject : having iris visit london  hi amitava ,  we ' ve been doing some thinking and discussing here regarding the information  on our modelling process we ' ll provide to darryl duffie . we think it would  be extremely valuable for iris to come out to london for a couple weeks to  gain a better understanding of the how the models integrate and are truly  employed . i think this would greatly enhance the \"\" product \"\" we ' ll send to  duffie as well as giving iris a firm view of enron credit . in addition , she  could also explore some of the data sources such as amadeus and others that  might be helpful in private firm modelling . if we ' re extremely  efficient / lucky in receiving data from d & b or experian , she might be able to  begin analysis on that for the private model efforts .  i would recommend she plan on coming out for 2 weeks starting the week of 30  apr perhaps . depending on the progress with the private firm data sources ,  it probably makes sense to send her back to houston to work on calibration  sets with a likely return visit to london as required .  please let me know your thoughts .  cheers ,  scott\",0\n\"Subject: re : invitation to speak at infocast ' s upcoming \"\" market price  volatility \"\" program  vince ,  ok . i appreciate your keeping us in mind .  thanks ,  ron  - - - - - original message - - - - -  from : vince j kaminski [ mailto : vkamins @ ect . enron . com ]  sent : wednesday , january 12 , 2000 8 : 27 am  to : ronh @ . com  cc : vince j kaminski  subject : re : invitation to speak at infocast ' s upcoming \"\" market price  volatility \"\" program  ron ,  we are really swamped and i would like to keep our involvement in  conferences to a reasonable minimum . i can promise that we shall help you  with a future conference if it happens to be in houston .  vince  \"\" ron henderson \"\" on 01 / 11 / 2000 03 : 13 : 56 pm  please respond to ronh @ . com  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : invitation to speak at infocast ' s upcoming \"\" market price  volatility \"\" program  vince ,  i am sorry you can ' t join us . is there someone on your staff who might be  able to do the presentation \"\" a real options approach to asset valuation , \"\"  scheduled for thursday , may 11 th , from 10 : 30 am to 12 : 00 pm . ?  ron  - - - - - original message - - - - -  from : vince j kaminski [ mailto : vkamins @ ect . enron . com ]  sent : monday , january 10 , 2000 10 : 53 am  to : ronh @ . com  cc : vince j kaminski ; shirley crenshaw  subject : re : invitation to speak at infocast ' s upcoming \"\" market price  volatility \"\" program  >  ron ,  i am sorry to inform you that due to a scheduling conflict i cannot speak at  this conference .  i want to thank you for considering me as a speaker .  vince kaminski  \"\" ron henderson \"\" on 12 / 30 / 99 06 : 57 : 05 pm  please respond to ronh @ . com  to : vince j kaminski / hou / ect @ ect  cc :  subject : invitation to speak at infocast ' s upcoming \"\" market price  volatility \"\"  program  hi vince ,  i would like to invite you , or one of your staff , to be a speaker at  infocast ' s upcoming conference \"\" market price volatility : how to model ,  assess , and manage price volatility in today ' s power markets , \"\" scheduled for  may 10 - 12 , 2000 , in chicago . i am attaching a copy of the draft program  agenda for your review . as you may note , we wish to take our recent houston  meeting a step farther by making this next session a more  technically - oriented meeting .  there are two spots you may wish to consider :  1 . the session entitled \"\" case study in modeling volatility , \"\" scheduled for  wednesday , may 10 th , from 3 : 30 to 5 : 00 pm . you will note below , what we had  in mind for the case study .  2 . the talk \"\" a real options approach to asset valuation , \"\" scheduled for  thursday , may 11 th , from 10 : 30 am to 12 : 00 pm .  i am running behind schedule in finalizing this program , so i will give you  a call shortly to follow up with you . if you wish , please feel free to call  me at 818 - 888 - 4445 ext . 28 .  i hope you can join us .  ron henderson  infocast  818 - 888 - 4445 ext . 28  ronh @ . com  case study guidelines  1 . model should be for a particular market . examples : pjm , chicago , ecar ,  southern california . lb ( optional ) . model should be for a particular purpose . examples : valuing a  new combustion turbine at the florida / georgia border , bidding on a portfolio  of power plants up for sale in nepool , valuing a retail portfolio in  pennsylvania .  2 . model should be estimated on a particular data set . examples : daily  nymex  close prices for palo verde , pjm hourly spot prices for 1998 - 1999 .  3 . case study should describe several candidate models , for volatility  and / or market price , that were considered . case study should discuss why  these models were considered . candidate models should be described  mathematically and verbally .  4 . evaluation criteria for choosing among the models should be explicitly  identified , and quantified to the extent possible . examples of evaluation  criteria : residuals that are not autorcorrelated , stationarity , r - squared ,  akaike information criterion .  5 . parameter estimates for each candidate model should be displayed . the  estimation procedure employed should be briefly described .  6 . some diagnostics of model fit ( vis - a - vis data set ) should be presented .  7 . if possible , predictive power of model should be assessed .  generally , the case study should include all of the items above . the case  study may include other things .\",0\n\"Subject: ps on the new xmim tool for excel  when you install this , you need to change the xmim server from \"\" xmimhost \"\" to  \"\" limbo \"\" ( port is still 0 )\",0\n\"Subject: re : real world option pricing  tom ,  thanks . i shall try to pick up the paper tonight .  the e - mail caught me in a better place than an air conditioned place .  i am in australia and it ' s winter here .  vince  tom arnold on 07 / 20 / 2000 11 : 44 : 43 am  to : vince . j . kaminski @ enron . com  cc :  subject : re : real world option pricing  hey vince ,  since i saw you last , the \"\" real world option princing \"\" paper has taken on  some more interesting results . tim crack and i would certainly like your  comments on the previous version and current version because we feel there  are still more areas to explore , such as , value at risk . here is where you  can download the paper :  i hope this e - mail finds you in air conditioned room away from the heat .  tom\",0\n\"Subject: vacation carry - over report  the vacation carry - over report is due to payroll by the end of this week .  below are the days that the system shows for your carry over . please let  me know if this is correct as soon as possible .  vince kaminski 40 . 00 hours  stephen bennett 30 . 00 hours  anita dupont 14 . 00 hours  seksan kiatsupaibul 20 . 00 hours  sandeep kohli 40 . 00 hours  kate lucas 40 . 00 hours  youyi feng 36 . 00 hours  shane green 40 . 00 hours  jose marquez 40 . 00 hours  kevin moore 13 . 00 hours  mike roberts 40 . 00 hours  sam smith 10 . 50 hours  hector campos 40 . 00 hours  rabi de 10 . 00 hours  shalesh ganjoo 40 . 00 hours  paulo issler 40 . 00 hours  martin lin 40 . 00 hours  zimin lu 40 . 00 hours  kenneth parkhill 10 . 00 hours  roman zadorozhny 40 . 00 hours  joe hrgovcic 40 . 00 hours  nelson neale 10 . 00 hours  vasant shanbhogue 28 . 00 hours  lance cunningham - 4 . 00 hours  tom halliburton 14 . 00 hours  alex huang 40 . 00 hours  praveen mellacheruvu 14 . 00 hours  jason sokolov 8 . 32 hours  tanya tamarchenko 40 . 00 hours  sevil yaman 13 . 32 hours  thanks !  shirley\",0\n\"Subject: re : meeting tuesday  dale ,  your memory did not fail you .  we would like , however , to move the meeting to 2 p . m . tuesday .  i left you a voice message about it . please call me s soon as  possible to confirm .  vince  \"\" dale m . nesbitt \"\" on 11 / 02 / 2000 07 : 41 : 40 pm  please respond to  to : \"\" vincent kaminski \\ ( e - mail \\ ) \"\"  cc :  subject : meeting tuesday  vince :  i was writing to confirm the meeting you wanted to set up with me , yourself ,  and mr . goodpasture for next tuesday . i believe it was set for 300 pm this  coming tuesday at your offices . ( i seem to have misplaced where i wrote the  specific time , so i wanted to be sure to reconfirm . ) please confirm if you  get a second so that i can finalize my travel schedule . you can email or  phone 650 . 218 . 3069 . thanks . i look forward to meeting with you again and  with mr . goodpasture .  dale nesbitt\",0\n\"Subject: re : internship  shane ,  monday would work for us .  my assistant will contact you wednesday to arrange the interviews .  vince  \"\" shane green \"\" on 06 / 30 / 2000 11 : 33 : 53 am  to :  cc :  subject : internship  dr . kaminski :  ?  i just wanted to touch base and see if i needed to snail mail a copy of my  resume or get in touch with anyone else over at enron . ?  ?  the finance department at lsu will be sending out financial award letters to  new ph . d . students before long , and my interning at enron would free up some  additional departmental funds . ? in addition , if i will be here in baton  rouge during the fall , i will need to pay my tuition next month . ? i am able  to pursue an internship in large part because of the department ' s  cooperation and assurance that when i return i will still have a research and  or teaching assistantship to help fund the completion of ph . d . ? i have been  told that such cooperation and assurances are rare at lsu , so i am trying to  rock the boat as little as possible .  ?  i realize until i receive an offer from enron my internship ( i say  internship rather than sabbatical because lsu will not continue to pay me my  stipend while i am away ) is not assured until an offer has been extended by  enron . ? i understand that there are procedures ? and protocols that must be  followed before this occurs , and i would be willing to do whatever is  necessary to move to the next step in that process .  ?  i will be in houston on july 8 & 9 for my wife ' s grandmother ' s 80 th  birthday . ? if it would be convenient , i could be in town ? on the preceding  friday , or following monday for a visit and / or interview . ? if not , given the  relatively close proximity between baton rouge and houston , i would be happy  to come at another time .  ?  thanks again ,  shane green  ?\",0\n\"Subject: re : ( no subject )  jana ,  \"\" cotton mary \"\" sounds good . it ' s a film by ismail merchant who collaborated  on \"\" a room with a view \"\" , \"\" howard ' s view \"\" , and other well known movies .  it ' s a story about two anglo - indian sisters .  vince  jlpnymex @ aol . com on 04 / 11 / 2000 08 : 02 : 45 am  to : vince . j . kaminski @ enron . com  cc :  subject : re : ( no subject )  vince ,  the angelika has several movies that would be good . i am familiar with all  but one - - \"\" cotton mary . \"\" do you know anything about it ?  if you still haven ' t seen \"\" american beauty \"\" , that is fine with us . just let  me know what sounds good to you . we are flexible when it comes to movies .  jana\",0\n\"Subject: ethylene margin collar simulation model  i set up the simulation model . the margin follows a mean - reverting process .  i seperarted the data into two category , margin > 0 . 04 and margin < 0 . 04 .  then i estimate the mean reverting speed seperately for these two data sets .  i got higher mean reverting speed than that i estimated using the whole data  set .  the high mr speed surpresses the probability at high payout side .  since the mr speed is sensitive to where i divide the data , so bob will run  a few senarios .  i put the overal settlement cap and floor into the montly premium  calculation , so the  the result in el 8 on the summary page is the ultimate answer to the deal  pricing .  i also calculate the undiscounted payout distribution and overall collar  worth .  relax the overall cap and floor will have a direct comparison with the spread  option  approach that bob and lee set up .  look like we got a reasonable model .  stinson :  i ' d like to have you check my set up for the simulation model .  lee and douglas :  you can play with the model , and let me know what do you think .  bob :  we need run different price curve senarios using the simulation model .  plus different mr speed .  zimin\",0\n\"Subject: mid - year 2000 performance feedback  note : you will receive this message each time you are selected as a reviewer .  you have been selected to participate in the mid - year 2000 performance  management process by providing meaningful feedback on specific employee ( s )  that have been identified for you . your feedback plays an important role in  the performance management process , and your participation is very critical  to the success of enron ' s performance management goals .  please provide feedback on the employee ( s ) listed below by accessing the  performance management system ( pep ) and completing an online feedback form as  described in the \"\" performance management quick reference guide \"\" . you may  begin your feedback input immediately . please have all feedback forms  completed by the date noted below .  if you have any questions regarding pep or your responsibility in the  process , please call the pep help desk at the following numbers :  in the u . s . : 1 - 713 - 853 - 4777 , option 4  in europe : 44 - 207 - 783 - 4040 , option 4  in canada : 1 - 403 - 974 - 6724 ( canada employees only )  or e - mail your questions to : perfmgmt @ enron . com  thank you for your participation in this important process .  the following list of employees is a cumulative list of all feedback  requests , by operating company , that have an \"\" open \"\" feedback status . an  employee ' s name will no longer appear once you have completed the feedback  form and select the \"\" submit \"\" button in pep .  review group : enron  feedback due date : jun 16 , 2000  employee name supervisor name date selected  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  ahmad , anjam dale surbey may 22 , 2000  carson , margaret m james d steffes may 26 , 2000  ghosh , soma timothy davies may 31 , 2000  vernon , clayton j vasant shanbhogue may 26 , 2000  zipter , rudi c theodore r murphy may 25 , 2000\",0\n\"Subject: request submitted : access request for anita . dupont @ enron . com  you have received this email because you are listed as an alternate data  approver . please click  approval to review and act upon this request .  request id : 000000000012735  approver : stinson . gibner @ enron . com  request create date : 1 / 8 / 01 4 : 26 : 26 pm  requested for : anita . dupont @ enron . com  resource name : \\ \\ enehou \\ houston \\ common \\ research - [ read / write ]  resource type : directory\",0\n\"Subject: message from anjam s ahmad  dear all ,  on 25 th october i announced my resignation from enron europe to pursue other  opportunities . i just wanted to say that the past 3 1 / 2 years has been a  very interesting and positive experience for me , having been a key part of  such a dynamic and fast - moving organisation . enron is by far the best  organisation i have ever worked for , and i am proud to have had the  opportunity to work here and become a shareholder . i have found it a real  pleasure to have worked with such talented and interesting individuals as  exist within enron europe and enron corp in houston & portland and i  genuinely wish you the best of success going forward . i would also like to  take this opportunity to thank vince kaminski , john sherriff and richard  lewis for hiring me in april 97 and thereafter offering such interesting and  challenging projects to work on .  i have made some excellent friends at enron and hope to keep them - i have a  base in london and will probably be visiting houston soon , so please feel  free to stay in touch !  contact :  e - mail : citywhizkid @ hotmail . com ( easy to remember ! )  mobile : 0961 111 192  home : 020 8877 9741  address : apt 213 , compass house , riverside west , smugglers way , wandsworth ,  london swl 8  i will be at the talbot pub tomorrow friday 27 th october from 6 pm where i  hope to catch up with you as a final farewell !  best wishes for the future !  anjam  x 35383\",0\n\"Subject: ena meeting and event expenditure approval process  the approval process initiated in 1998 for all meeting and event expenditures  in excess of $ 5 , 000 has enabled ena to better assess the business value of  events , accurately track our activities and save money . these events include  customer and employee meetings , and trade shows .  ena has made some modifications to the process , which are described in this  memo .  the $ 5 , 000 threshold remains in effect for all customer events . however , the  threshold for approval for employee meetings and events has been lowered to  $ 2 , 000 , and some additional requirements must be met prior to approval .  please be sure to follow the procedures described below for all meetings and  events , so we can continue to successfully manage these events .  1 ) prior to making any commitments to customers or vendors , all customer  events with anticipated costs in excess of $ 5 , 000 , and all employee events  with anticipated costs in excess of $ 2 , 000 must be reviewed by the ena public  relations ( pr ) department and approved by the ena office of the chairman  2 ) the pr department will handle the site search and hotel contract  negotiations for all such events . once this is completed , the pr department  will work with you to plan and produce your event in its entirety ; or they  can provide as much or as little assistance as you require . the pr department  will be responsible for helping you achieve the best value for your program  and ena .  3 ) a completed expenditure request form ( see attached ) and supporting  documentation is required for each event . employee meetings require a  detailed agenda as part of the event documentation prior to approval . please  submit the completed expenditure request form and documentation to the pr  department at eb 3642 , or work with pr department employees to complete the  form .  4 ) after pr review , the expenditure will be submitted to the ena office of  the chairman for final approval .  additionally , the pr department can assist in the procurement of tickets for  various local sporting events and concerts .  if you have any questions regarding this process , would like assistance  planning an event , or need tickets for a houston event , please contact dorie  hitchcock in the pr department at ( 713 ) 853 - 6978 .  thank you for your cooperation .\",0\n\"Subject: re : possible rtp conference  i look forward to seeing you at 10 am on thursday march 15 . my office is  408 terman center . you can find a searchable campus map under \"\" contact  information \"\" on our homepage ( address below ) .  at 05 : 24 pm 3 / 12 / 01 - 0600 , you wrote :  > dear professor huntington ,  >  > thursday 10 a . m . works for me .  > please , let me know where i can meet you .  >  > i am attaching my itinerary , so that you can contact me  > if necessary  > .  > my cell phone number is 713 410 5396 .  >  > vince kaminski  > ( see attached file : vk - sf - stanford - 3 - 14 - 01 . doc )  hillard g . huntington  emf - an international forum on  energy and environmental markets voice : ( 650 ) 723 - 1050  408 terman center fax : ( 650 ) 725 - 5362  stanford university email : hillh @ stanford . edu  stanford , ca 94305 - 4026  emf website : http : / / www . stanford . edu / group / emf /\",0\n\"Subject: re : mutually agreed upon changes okay  larry ,  i had a brief discussion with our lawyers . they are strongly advising us to keep the changes we earlier incorporated , but to which you have not assented . as this is a matter of company policy , unfortunately we do not have much room to maneuver . if it would help you to have a direct conversation with the lawyers to appreciate our company ' s perspective , i can arrange for a phone call . please advise . thanks .  rakesh  lawrencelrtnmt @ aol . com on 05 / 01 / 2001 08 : 06 : 47 am  to : rakesh . bharati @ enron . com  cc :  subject : mutually agreed upon changes okay  hi rakesh ,  thanks for your work on the non - disclosure agreement .  your integration of our mutually agreed upon modifications looks good ,  rakesh . thanks ! i ' ll await your next version .  larry\",0\n\"Subject: powerisk 2000 - more cocktail info  - - - - - - - - - - - - - - - - - - - - - - forwarded by iona maclean / lon / ect on 22 / 09 / 2000 12 : 24  - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron capital & trade resources corp .  from : simon turner  22 / 09 / 2000 11 : 29  to : keiron . ferguson @ accessenergy . nl , mcrosno @ altra . com , ed @ apx . com ,  alaw @ avistaenergy . com , markw @ citizenspower . com ,  chris _ strickland @ compuserve . com , hbrett @ cyberbuilding . com , geman @ dauphine . fr ,  charles . heard @ dc . com , chris . miller @ dc . com , gilbert . toppin @ dc . com ,  pat . breen @ dc . com , stuart . beeston @ dc . com , klaus . petzel @ dowjones . com ,  sama @ dynegy . com , jdaly @ enermetrix . com , iona . maclean @ enron . com ,  vkaminski @ enron . com , mwalsh @ envifi . com , mark @ fea . com ,  bachar . samawi @ gen . pge . com , garman @ haas . berkeley . edu ,  fgetman @ houstonstreet . com , dave . gardner @ innogy . com , stepheng @ ipe . uk . com ,  lecoq _ sophie @ jpmorgan . com , ruckt @ kochind . com , les @ lacima . co . uk ,  simon @ localbloke . freeserve . co . uk , carlhans . uhle @ lpx . de , e . westre @ mvv . de ,  pwold @ . com , david . whitley @ nordpool . com ,  lburke @ nymex . com , xavier . bruckert @ omgroup . com ,  aram . sogomonian @ pacificorp . com , peter . haigh @ pgen . com ,  sven . otten @ preussenelektra . de , detlef _ r _ hallermann @ reliantenergy . com ,  phil . saunders @ southernenergy - europe . nl ,  alexander . eydeland @ southernenergy . com , juerg _ trueb @ swissre . com ,  alang @ tfs - ln . co . uk , annunziata @ tradecapture . com ,  martin . stanley @ txu - europe . com , simon . harrington @ txu - europe . com ,  rob @ weatherderivs . com  cc :  subject : powerisk 2000 - important invitation  * * high priority * *  dear colleague  please find attached two invitations to cocktail parties to be held at  powerisk 2000 .  you will receive a formal invitation by post . however , just in case this  does not reach you by any chance , please print off the attached copies and  bring these with you .  the cocktails will provide the opportunity to meet all other speakers and  delegates .  we look forward to seeing you next week .  regards  rosemary fitzgerald  powerisk 2000  - cocktail - invite . doc\",0\n\"Subject: re : carnegie mellon  kristin ,  the presentation went quite well .  kevin and i would like to brief you about cmu in general . let ' s go out to  lunch when  you come back .  vince  kristin gandy @ enron  11 / 03 / 2000 03 : 55 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : carnegie mellon  vince ,  i wanted to email you and let you know how sorry i am that i was not able to  make your presentation at carnegie mellon . i really was looking forward to  the trip and the presentation but unfortunately since i have been on the road  a lot lately things started backing up in the office . after my meeting on  thursday there was no way i would make the 6 pm flight and my original flight  would have put me in pittsburgh to late for the presentation .  anyway , i hope you understand and i am looking forward to working with you in  december for the interviews on campus . maybe once you return you can give me  a recap of the days events . in the meantime if you need any assistance  please do not hesitate to call .  thank you ,  kristin gandy  713 - 345 - 3214\",0\n\"Subject: jason sokolov ' s removal from ted murphy ' s cost center  norma :  ted murphy would like to have jason removed from his cost center  effective december 16 th . vince said that it would be ok to have him  added to our cost center , effective that date . he is not supposed to start  with the research group until the 28 th , but needs a home from the 16 th to  the 28 th , so we will pick him up .  can you take care of this ?  thanks !  shirley  3 - 5290\",0\n\"Subject: re : greetings  dear professor boyle ,  i shall be glad to speak at the conference on energy derivatives in may in  toronto .  i shall call you thursday morning ( houston time )  to discuss the details .  vince  phelim boyle on 03 / 28 / 2000 06 : 23 : 07 pm  to : vkamins @ enron . com  cc :  subject : greetings  i am sorry i missed your call today .  i will be in london tomorrow night by around 11 . 30 ( uk time )  i will be teaching on a risk course and staying at  the grosvenor house hotel ;  phone 44 ( 0 ) 20 7499 6363  fax 44 ( 0 ) 20 7499 3341  it would be great if you can come to our conference  i will be happy to discuss it with you  best wishes  phelim p boyle  - -  phelim p boyle  director  centre for advanced studies in finance ,  university of waterloo ,  waterloo , ontario  canada n 2 l 3 gl  tel 519 885 1211 ( 6513 )  fax 519 888 7562\",0\n\"Subject: congrats  congratulations on your promotion ! that is really good .\",0\n\"Subject: re : grades  mr . kaminsky ,  i still need grades for :  israni , rakhi  lu , feng  planck , jeffrey  so , winny  taylor , orlando  wankhade , sanjay  zhang , ning  i will be available by e - mail this evening or by phone ( 5 : 30 or so ) at 713 - 668 - 1704 . i just called the registrar ' s office and if i bring in the grades by 8 : 30 tomorrow morning we will be fine . please advise .  thanks for your help . - pam  at 08 : 23 am 5 / 4 / 01 - 0500 , vince . j . kaminski @ enron . com wrote :  pam ,  the last group .  please , let me know if any name is missing .  ( embedded image moved to file : pic 25177 . pcx )  grade : a  thanks a lot . it was a pleasure working with you .  vince kaminski\",0\n\"Subject: re : private firm schedule  thanks for the schedule update  - - - - - original message - - - - -  from : kirkpatrick , eric  sent : monday , april 23 , 2001 10 : 52 am  to : mack , iris ; dhar , amitava ; brent , richard ; salmon , scott ; chaney , craig ; mumford , mike ; detiveaux , kim ; cruver , brian  subject : private firm schedule  all :  this is the rough schedule we came up with at today ' s video conference :  submit rfp to d & b , experian , and amadeus 2 days 25 apr mumford  receive back rfps 1 . 5 weeks 4 may mumford  complete evaluation , selection & authorization 1 week 11 may mumford / mack  contract complete and signed 2 weeks 25 may mumford  data to iris & amitava 3 weeks 15 june mumford  model development complete 4 weeks 15 july mack  * integration of model and data feeds into cts 6 weeks 30 august kirkpatrick  prior to integration into cts any prices would have to be manually uploaded into cts via spreadsheet .  the rfp will include a request for a smaller data calibration set that we may select to purchase immediately .  we can revisit this schedule at our wednesday video conference .  eric kirkpatrick\",0\n\"Subject: reminder : cera executive roundtables in houston  dear cera members and friends :  we wanted to make sure you had seen our announcement regarding a series of  executive roundtables in houston next week - on april 17 and 18 , 2001 . these  meetings will feature presentations and interactive discussions with cera  experts . for complete details on the events , please visit  http : / / www 20 . cera . com / event .  the events will feature speakers from the following cera teams :  * north american electric power - april 17  * north american natural gas - april 17 & 18 ( two events )  * western energy - april 17  * latin america energy - april 18  * asia pacific energy - april 18  location and accommodations :  the four seasons hotel  1300 lamar street  houston , tx 77010 - 3098  tel . : + 1 713 650 1300  fax : + 1 713 650 1203  * please contact the hotel directly for room reservations .  to enroll , please complete the form found on our website at  http : / / www 20 . cera . com / event and return it by fax to cera registration :  cera  20 university road  cambridge , ma 02138 usa  fax : + 1 617 498 9176  tel . : + 1 617 497 6446 x 800  e - mail : register @ cera . com  sincerely ,  cera event registration  please note : dates and locations of events are subject to change .  participation at a roundtable is a function of the terms of the cera / client  contract . for more information about eligibility , please contact cera  registration .  our relationship with you is very important to us . ? if you do not wish to  receive future e - mail notifications , please send a reply to this message with  \"\" donotemail \"\" as the subject of your message .  ( mailto : info @ cera . com ? subject = donotemail ) \",0\n\"Subject: re : seismic data via satellite  bob ,  i ' ve just now had time to add some comments to your summary . my comments  are in the attachment which encorporates your work .  greg  bob lee @ enron  16 / 10 / 2000 14 . 47  to : gregory p smith / hou / ect @ ect , richard reichardt / enron communications @ enron  communications , vince j kaminski / hou / ect @ ect  cc : zimin lu / hou / ect @ ect , stinson gibner / hou / ect @ ect  subject : seismic data via satellite  i have attached a background piece to brief oil traders on this subject prior  to a possible meeting with them .  please give me any comments on 1 ) accuracy 2 ) completeness and 3 ) coverage  of the areas we want to explore .  as a side note , i found some info on the web stating current proven oil  reserves are 1 , 000 billion bbls . discovery of a 1 billion bbl field would  add only 0 . 1 % . while we will pursue the trading advantage option , it is not  looking promising that it has great short term value , given the long time  frame and high cost of bringing deep water reserves to market .  bob lee\",0\n\"Subject: re : rice / enron speakers for fall 2001 and spring 2002  david kendrick from the university of texas may be good .  martin  vince j kaminski  04 / 24 / 2001 05 : 11 pm  to : stinson gibner / hou / ect @ ect , vasant shanbhogue / enron @ enronxgate , rakesh bharati / na / enron @ enron , pinnamaneni krishnarao / hou / ect @ ect , zimin lu / hou / ect @ ect , iris mack / enron @ enronxgate , martin lin / hou / ect @ ect , lance cunningham / na / enron @ enron , vince j kaminski / hou / ect @ ect  cc : wangfa @ rice . edu  subject : rice / enron speakers for fall 2001 and spring 2002  any recommendations . please , let me know asap .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 24 / 2001 05 : 09 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  albert wang on 04 / 23 / 2001 12 : 37 : 55 pm  to : vince . j . kaminski @ enron . com  cc :  subject : rice / enron speakers for fall 2001 and spring 2002  hi , vince :  we are considering a preliminary list of speakers for rice / enron seminar series in finance for fall 2001 and spring 2002 . do you have any persons in mind that you and your group want to include in the list ? finance faculty will meet to finalize the list later .  thanks ,  albert  p . s . : is ronnie chahal still around ? she is currently in my enron distribution list with email address : rchahal @ ess . enron . com . i have received an error message indicating a failure of delivering email to her address .  fu - kuo albert wang  assistant professor  jones graduate school of management - - ms 531  rice university  6100 main street  houston , tx 77005  phone : 713 - 348 - 5404  fax : 713 - 348 - 5251  email : wangfa @ rice . edu  http : / / www . ruf . rice . edu / ~ wangfa /\",0\n\"Subject: avg . monthly electricity prices for the past 13 months  margaret ,  please find attached file with average monthly prices for regions your  requested . this file gives more information than the previous ( yesterday )  one . as the one before , source for this file is megawatt daily , it includes  on - peak and off - peak prices and you can also see daily data that was  converted to monthly average data . there are two types of averages prices :  average and weighted average . weighted average takes into account number of  transactions of certain price .  for example : pjm had average price of $ 53 . 61 and weighted average price of  $ 53 . 15 in august , it means that there were more transactions of lower price  than higher . also , megawatt daily has its own methodology and i am attaching  it with this message .  if you have any questions regarding prices or methodology , please contact  sevil yaman ( 5 - 8083 ) or me ( 3 - 4305 ) .  sincerely , elena  enron research group  3 - 4305\",0\n\"Subject: the 1999 form w - 2 and retiree tax form 1099 - r  the 1999 form w - 2 and retiree tax form 1099 - r will be mailed to your address  of record by january 31 , 2000 . if you have not received your form by february  16 th , you may request , in writing , for a duplicate copy to be sent to you .  please note that a written request , including authorized signature is  required .  when requesting a duplicate form , please specify the year for which you need  a copy , sign your request , and include the following information :  name  complete mailing address  phone number  social security number  you may mail your request to :  enron corp  eb 1667  p o box 1188  houston tx 77002  or you may fax your request to 713 - 646 - 3755 .  your request will be processed within one week of receipt .  if you have a question regarding the information on your form w 2 , please  contact ginger sinclair at 713 - 853 - 9567 . ginger will take a detailed message  of your questions and someone from the payroll tax group will contact you as  soon as possible .  thank you\",0\n\"Subject: summer intern for the research group  elizabeth ,  can you please direct me to someone to assist us in making an offer to a  young lady we just interviewed ? we would like to bring her in as a summer  intern the same way that we brought in james bradley aimone .  she will be reporting to stinson gibner and i believe she is available right  away .  i am attaching her resume .  thanks for your help .\",0\n\"Subject: vince ,  here is a rough schedule as we had discussed . we can work the details once i  get there .  thanks again for all your efforts . look forward to my stint in houston .  regards ,  sandeep .\",0\n\"Subject: re : emission trading  vince ,  i spoke with susan wood , who heads up our emissions marketing effort who  says we don ' t really have any materials we send out . she did recommend the  emissions trading handbook which can be purchased for $ 50 from  in general , the site http : / / www . etei . org / is a great source of info , and the  the parent site , http : / / www . emissions . org should be checked out as well . if  you ' d like me to purchase the handbook ( it will take three weeks ) let me know .  joe  vince j kaminski  12 / 16 / 99 08 : 15 am  to : joseph hrgovcic / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : emission trading  joe ,  do we have any materials about it ?  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 12 / 16 / 99  08 : 14 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  adam brulinski  12 / 14 / 99 08 : 22 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : emission trading  thank you in advance .  let me just mention that the issue is quite urgent so i would appreciate if i  could get sth asap .  adam  vince j kaminski  99 - 12 - 14 15 : 24  to : adam brulinski / war / ect @ ect  cc :  subject : re : emission trading  adam ,  let me gather some information for you .  vince  adam brulinski  12 / 14 / 99 08 : 08 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : emission trading  szanowny panie ,  chcielibysmy zaczac propagowac w polsce idee handlu prawami do emisji  zanieczyszczen . dlatego tez prosilbym o przeslanie , najlepiej droga emailowa  materialow dotyczacych tej koncepji - glownie chodzi mi o strone  \"\" merytoryczna \"\" .  z powazaniem ,  adam brulinski\",0\n\"Subject: short term private firm model : static historical  snapshot + performance data for model development  mike , scott , eric ,  after brainstorming and discussing further on data here , we think that our final specifications for modelling data requirement need to be as follows :  we need bankrupt , default and nondefault ( which covers nonbankrupt ) accounts with 4 quarterly observation snapshots and 12 months performance following the latest snapshot . monthly performance indicator need to be available for the entire 12 months performance period . we will need all the bankrupt and default accounts and comparable sample of good accounts with weights .  for the purpose of model validation , we will need data with above specs covering 16 months of performance . this means that we will need rolling ( 4 quarterly snapshots + 12 months performance ) data for 4 monthly shifts :  input snapshots performance  1999 march end , 1999 june end , 1999 september end , 1999 december end 12 month end performance for jan 2000 through dec 2000  1999 feb end , 1999 may end , 1999 august end , 1999 november end 12 month end performance for dec 1999 through nov 2000  1999 jan end , 1999 apr end , 1999 july end , 1999 october end 12 month end performance for nov 1999 through oct 2000  1998 december end , 1999 mar end , 1999 june end , 1999 september end 12 month end performance for oct 1999 through sep 2000  we will need bankruptcy chapterwise indicator , if available during the performance period . our definition of default is either bankruptcy or 90 + days delinquency on any trade credit .  we have also discussed the cost aspect and we think considering the big picture , it makes sense to spend the extra amount to get the right data for analysis .  please let me know your thoughts . this will require d & b to give us a modified quote and we could possibly move forward quickly .  regards ,  amitava\",0\n\"Subject: re : real options e & p course  larry ,  i sent the information to mark ruane , 713 853 3569 .  he is the best customer at enron for real options applications .  vince  larry chorn on 01 / 25 / 2000 12 : 30 : 17 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : real options e & p course  vince :  as you requested , we mailed you a brochure about our upcoming course  ( 2 / 22 - 4 / 4 ) in houston .  we are now following up with that mailing to identify remaining  attendees for the session . i wanted to make sure that we did not  overlook anyone at enron , so i am dropping you this email to see if you  have anyone there in mind as an attendee .  best regards ,  larry chorn  972 . 814 . 5342  www . realoptions - software . com\",0\n\"Subject: re : approval for paulo issler  anita ,  good decision .  vince  anita dupont @ enron  02 / 23 / 2001 12 : 13 pm  to : shirley crenshaw / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : approval for paulo issler  fyi : carolyn needed approval today for charges relating to paulo ' s green  card process . mike was the only vp here today so i asked him to approve  them . hope that was alright . anita  - - - - - - - - - - - - - - - - - - - - - - forwarded by anita dupont / na / enron on 02 / 23 / 2001 12 : 06  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  mike a roberts @ ect  02 / 23 / 2001 11 : 04 am  to : carolyn wedel / enron @ enronxgate @ enron  cc : anita dupont / na / enron @ enron  subject : re : approval for paulo issler  carolyn ,  approval to post the attached charges for paulo issler is granted .  mike roberts  v . p . research\",0\n\"Subject: request for training session  folks ,  i am a vice president with enron , and have been with the company some 6 years  now . i was hired through enron associate pool , and started off by marketing  power on the east coast with jim fallon . currently i am working in the india  region , looking into different ways to develop merchant type activities in  india , anticipating the start of trading activities some time in the future .  one of my challenges is to make the team in india aware of the type of  sophisticated operations and processes that we have in place for trading  activities , as well as the range of products we have to offer .  i have been in conversation with mike mcconnell and jeff shankman on the  global products side , and are planning a session to acquaint the team in  india with activities in that group . similarly , on the power side , we have  been interacting with john sherriff ' s team in london .  i feel that it will be very beneficial for some of the team members to get  acquainted with the processes on the power trading side in houston , and to  get an idea of the rac process , the research side , the back - offices , as well  as the trading operations here . similarly , the team there could present to  you the state of the market in india , and give you an idea of the type of  opportunities there . i am therefore eliciting your support to put together a  session in houston where they can be acquainted with these functions , as well  as the people responsible for them in the us . there are three people in the  group who would benefit from this exposure . one of them is from the  associate pool , while the other two are people hired locally in india .  i have already spoken with our coo , wade cline in this regard , and seek your  support in putting together an agenda for such a session . please let me know  who i should contact within your groups to discuss this further .  regards ,  sandeep .\",0\n\"Subject: re : eprm 2001 houston  layla ,  my associate ' s name is tanya tamarchenko . the  e - mail address is : tanya . tamarchenko @ enron . com .  location is the same as mine , enron , 1400 smith , houston .  thanks  vince  p . s . shirley , please send my bio to layla  \"\" layla o ' leary \"\" on 05 / 02 / 2001 10 : 33 : 00 am  please respond to  to :  cc :  subject : re : eprm 2001 houston  yes , that ' s fine . if you can please give me her full contact details  including e - mail and address i will have her registered as a co - speaker .  if you would like to bring your own copies to the event i would ask you to  send 200 copies directly to the venue . although if you can get it to me on  friday i can still insert it !  could i please trouble you for a short biography ?  kind regards  layla  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : 02 may 2001 15 : 38  to : loleary @ riskwaters . com  cc : vince . j . kaminski @ enron . com  subject : re : eprm 2001 houston  layla ,  a few points .  i shall be glad to attend the reception .  i am falling behind in getting my presentation ready . sorry for the delay .  i can commit to delivering the required number of copies on the day of my  presentation  ( or a day before ) . i have done it on two occasions before ( power 2000 and  power 1999 ) :  the copies were produced by our company copy center at no cost to you .  my associate , tanya tamarchenko , is helping me with one aspect of the  presentation and  i would like her to deliver part of my speach . it ' s only fair to give her  the credit when the  credit is due . is it ok to include her as an additional speaker ?  vince  \"\" layla o ' leary \"\" on 04 / 30 / 2001 09 : 04 : 52 am  please respond to  to :  cc :  subject : eprm 2001 houston  dear speaker ,  pre - congress cocktail reception - sunday 13 th may @ 5 : 30 pm in the juniper  room  we would be delighted to have you attend our pre - congress cocktail  reception . we will be extending this invitation to all our sponsors ,  exhibitors and eprm / risk waters group staff . we hope this will provide a  perfect opportunity for you to meet all our staff and clients before the  formal opening of eprm 2001 usa  + rsvp  i would also like to remind you that i need any missing presentations by  thursday 3 rd may . it is essential that i get these in as the delegates  rely  on these to make notes and get very upset if they are not included in the  packs .  if you still haven ' t informed me of your av requirements , please do so as  quickly as possible . i also require a short biography .  i would like to point out that i will not be taking any presentations on  disk to the event . if you are using a laptop , your presentation should be  loaded onto the laptop that you bring with you . you must bring your own  laptop and disc , with connecting cables .  any questions , please do not hesitate to contact me .  kind regards  layla o ' leary  event co - ordinator  risk waters group  haymarket house  28 - 29 haymarket  london  swly 4 rx  tel : + 44 ( 0 ) 20 7484 9871  fax : + 44 ( 0 ) 20 7484 9800\",0\n\"Subject: research group move to the 19 th floor  hello all :  in case any of you feel energetic , \"\" the boxes are here \"\" . they are located  at 2963 b ( michael sergeev ' s old desk ) . feel free to take as many as  you will need . be sure to label everything with your new office location .  if your file cabinets lock , you can just label them and lock them .  again , listed below is your new office location :  stinson gibner eb 1936  joseph hrgovcic eb 1947  paulo issler eb 1935  vince kaminski eb 1933  krishna krishnarao eb 1938  martin lin eb 1930 e  grant masson eb 1941  kevin moore eb 1944  maureen raymond eb 1928  mike roberts eb 1945  vasant shanbhogue eb 1949  vincent tang eb 1934  ravi thuraisingham eb 1932  zimin lu eb 1942  if you have any questions , or need any assistance , please contact me , kevin ,  or sam .  thanks and have a great day !  shirley  3 - 5290\",0\n\"Subject: research ' s summer outlook  the research weather group has posted the 2001 summer outlook on research  intranet page , under the afternoon video report .  the links are :  cussioncontent . asp ? item = afternoon  and http : / / enaresearch . corp . enron . com / research / framework / default . asp\",0\n\"Subject: howard london  hi vince - i just got off the phone with rw and enron london .  alec told me that howard is idle and waiting for your command and the  coordination of the directors .  melanie is working with vuthy rw directly on this for you and rachel quirk  said she will contact you to set the time up . . . \"\" unofficially \"\" they were  trying to do something with howard tomorrow as i was told - not sure .  i have a couple other candidates i would like to send you after i collect  some sleep ( 3 ; 30 am now ) - i ' ll send them to you after i wake .  one guy from oxford , worked citibank fixed income risk the other over at ford  motor company who is looking to move to london ( highly recommended by the  professor ) .  i ' ll send them later as to let you be the judge .  talk soon - thanks for the business !  jeff  always held in strict confidence .  jeff wesley  949 813 2241 hotline  347 487 8957 voice / fax us  + 44 ( 845 ) 3341644 uk  * get free , secure online email at http : / / www . ziplip . com / *\",0\n\"Subject: vp & director count for the research group  hello deborah :  i would like to introduce myself and anita dupont to you as we will probably  be working together quite a bit between now and our move . please feel  free to contact either one of us regarding any questions or needs you  may have .  headcount  the executive , vp and director headcount for the research group is :  managing director 1  vice presidents 6  directors 5  also , anita and i would like to invite you to meet with us and go over our  library space requirements . please let me know when you have some  free time and we will be available .  my number is : 3 - 5290 - ebl 961  anita ' s # is : 3 - 0329 - ebl 969  i look forward to meeting you ,  shirley crenshaw  administrative coordinator  enron research group  3 - 5290\",0\n\"Subject: cal berkeley presentation  hello vince and shirley ,  thank you so much for your patience as i tried to shuffle dates and events  around ! i have some great news . i was able to secure a room on campus at  the faculty club for the presentation on monday october 16 th at 7 : 00 - 9 : 00 .  that should work out perfectly as far as being about to present at the  seminar from 3 : 30 - 5 : 00 . furthermore , i was able to adjust the resume drop  dates so that we have through the week of the 16 th for students to submit  their resumes .  i will go into more detail about this tomorrow at the cal berkeley team  meeting . i have put together some booklets to hand out to the team  tomorrow . vince , i have put some time into the agenda for you to welcome the  team and get everyone excited about cal recruiting this fall . thank you for  all of your help ! please let me know if there is something that you would  like me to add to the agenda for tomorrow .  thanks !  ashley\",0\n\"Subject: miscellaneous items  good morning tom :  please furnish the following information to me for the research directory :  name : tom halliburton  title :  location : ebl 957  phone # : 5 - 8539  home address :  home telephone :  wife ' s name :  your birthday :  also for your information , there will be a research group staff meeting  every thursday from 11 : 30 am to 1 : 00 pm in eb 30 cl . lunch will be  provided .  please let me know what kind of sandwich or salad you would like and  what you would like to drink .  thanks !  shirley  3 - 5290\",0\n\"Subject: re : movie  jana ,  we should have tomorrow the movie schedule for the weekend .  saturday around 5 : 00 p . m . would work for me .  vince  jlpnymex @ aol . com on 04 / 13 / 2000 09 : 49 : 11 am  to : vkamins @ enron . com  cc :  subject : movie  vince  let ' s talk tomorrow and see what time that movie starts and when we should  meet , ok ?  jana\",0\n\"Subject: re : rankings  thank you .\",0\n\"Subject: request submitted : access request for anita . dupont @ enron . com  you have received this email because you are listed as an alternate data  approver . please click  approval to review and act upon this request .  request id : 000000000012741  approver : stinson . gibner @ enron . com  request create date : 1 / 8 / 01 4 : 34 : 26 pm  requested for : anita . dupont @ enron . com  resource name : \\ \\ enehou \\ houston \\ common \\ research - [ read / write ]  resource type : directory\",0\n\"Subject: 4 - urgent - owa please print this now .  current notes user :  reasons for using outlook web access ( owa )  1 . once your mailbox has been migrated from notes to outlook , the outlook client will be configured on your computer .  after migration of your mailbox , you will not be able to send or recieve mail via notes , and you will not be able to start using outlook until it is configured by the outlook migration team the morning after your mailbox is migrated . during this period , you can use outlook web access ( owa ) via your web browser ( internet explorer 5 . 0 ) to read and send mail .  please note : your calendar entries , personal address book , journals , and to - do entries imported from notes will not be available until the outlook client is configured on your desktop .  2 . remote access to your mailbox .  after your outlook client is configured , you can use outlook web access ( owa ) for remote access to your mailbox .  please note : at this time , the owa client is only accessible while connecting to the enron network ( lan ) . there are future plans to make owa available from your home or when traveling abroad .  how to access outlook web access ( owa )  launch internet explorer 5 . 0 , and in the address window type : http : / / nahou - msowaolp / exchange / john . doe  substitute \"\" john . doe \"\" with your first and last name , then click enter . you will be prompted with a sign in box as shown below . type in \"\" corp / your user id \"\" for the user name and your nt password to logon to owa and click ok . you will now be able to view your mailbox .  please note : there are some subtle differences in the functionality between the outlook and owa clients . you will not be able to do many of the things in owa that you can do in outlook . below is a brief list of * some * of the functions not available via owa :  features not available using owa :  - tasks  - journal  - spell checker  - offline use  - printing templates  - reminders  - timed delivery  - expiration  - outlook rules  - voting , message flags and message recall  - sharing contacts with others  - task delegation  - direct resource booking  - personal distribution lists  questions or concerns ?  if you have questions or concerns using the owa client , please contact the outlook 2000 question and answer mailbox at :  outlook . 2000 @ enron . com  otherwise , you may contact the resolution center at :  713 - 853 - 1411  thank you ,  outlook 2000 migration team\",0\n\"Subject: request submitted : access request for amitava . dhar @ enron . com  you have received this email because the requester specified you as their vp .  please click  approval to review and act upon this request .  request id : 000000000011185  request create date : 12 / 21 / 00 4 : 20 : 10 pm  requested for : amitava . dhar @ enron . com  resource name : vpn  resource type : applications\",0\n\"Subject: weijun decided not to interview  i guess this means \"\" back to the drawing board \"\" . weijun has decided not to interview .  lance  - - - - - - - - - - - - - - - - - - - - - - forwarded by lance cunningham / na / enron on 04 / 18 / 2001 09 : 40 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" ji , weijun \"\" on 04 / 18 / 2001 08 : 06 : 44 am  to : \"\" ' lance . cunningham @ enron . com ' \"\"  cc :  subject : please call me  dear lance ,  thank you very much for all of your help through this process .  at present , i am really tied up with mock market activities in austin  energy . it would be inappropriate for me to leave at this time since the  whole project will be jeopardized . therefore , i decided not coming to  houston for an interview . i sincerely apologize for any inconvenience this  may cause you .  i do appreciate what you did and hope we can keep in touch in the future .  thank you again for your help and wish you best .  sincerely ,  weijun ji\",0\n\"Subject: re : happy new year !  shannon ,  thanks . the same to you .  sorry to have missed your class . i had a very bad case  of flu with some additional complications . i shall be glad to make  a presentation on the same topic on another occasion .  vince  \"\" shannon burchett \"\" on 12 / 28 / 99 12 : 15 : 59 pm  please respond to \"\" shannon burchett \"\"  to : vince j kaminski / hou / ect @ ect  cc :  subject : happy new year !  vince ,  wishing you a very happy and prosperous new millennium !  happy new year ,  shannon  risk limited corporation  box 612666 dallas , texas 75261 usa tel : 972 . 245 . 8300 fax : 972 . 245 . 8318  www . risklimited . com  - attl . htm\",0\n\"Subject: re : confirmation of meeting  i ' ll probably be in houston sometime in the next couple of months , otherwise  if  you let me know when you ' ll be in london we ' ll rearrange for then . . .  hope to meet up eventually !  paul  to : paul e . day  cc :  date : 02 / 10 / 2000 11 : 28  from : vince . j . kaminski @ enron . com  subject : re : confirmation of meeting  paul ,  sorry for the late notice . please , let me know when you are coming to  houston .  i shall be again in london sometimes in november .  vince  paul . e . day @ uk . arthurandersen . com on 10 / 02 / 2000 02 : 29 : 57 am  to : shirley . crenshaw @ enron . com  cc : vince . j . kaminski @ enron . com , wendy . dunford @ uk . arthurandersen . com  subject : re : confirmation of meeting  i would very much like to meet vince , unfortunately i am in back to back  meetings all day today . maybe we could rearrange next time vince is in  london  or i am in houston .  regards  paul  to : paul e . day  cc :  date : 29 / 09 / 2000 17 : 52  from : shirley . crenshaw @ enron . com  subject : re : confirmation of meeting  paul :  fyi .  regards ,  shirley  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 09 / 29 / 2000  11 : 49 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  shirley crenshaw  09 / 29 / 2000 11 : 51 am  to : wendy . dunford @ arthurandersen . com @ enron  cc :  subject : re : confirmation of meeting ( document link : shirley crenshaw )  wendy :  i am so sorry for the late notice , but vince will be in london for 1 day  only ,  monday , october 2 nd . he has had some time freed up and if paul and  julian could meet with him , they can call him at the grosvenor house ,  870 - 400 - 8500 . his morning is already full , but lunch , dinner or afternoon  would work .  regards ,  shirley  wendy . dunford @ arthurandersen . com on 09 / 18 / 2000 10 : 14 : 51 am  to : shirley . crenshaw @ enron . com  cc :  subject : re : confirmation of meeting  hi shirley  thanks for getting back to me .  regards  wendy  * * * * * * * * * * * * * * * * * * * internet email confidentiality footer * * * * * * * * * * * * * * * * * * *  privileged / confidential information may be contained in this message . if  you  are not the addressee indicated in this message ( or responsible for  delivery of  the message to such person ) , you may not copy or deliver this message to  anyone .  in such case , you should destroy this message and kindly notify the sender  by  reply email . please advise immediately if you or your employer do not  consent to  internet email for messages of this kind . opinions , conclusions and other  information in this message that do not relate to the official business of  my  firm shall be understood as neither given nor endorsed by it .  * * * * * * * * * * * * * * * * * * * internet email confidentiality footer * * * * * * * * * * * * * * * * * * *  privileged / confidential information may be contained in this message . if  you  are not the addressee indicated in this message ( or responsible for  delivery of  the message to such person ) , you may not copy or deliver this message to  anyone .  in such case , you should destroy this message and kindly notify the sender  by  reply email . please advise immediately if you or your employer do not  consent to  internet email for messages of this kind . opinions , conclusions and other  information in this message that do not relate to the official business of  my  firm shall be understood as neither given nor endorsed by it .  * * * * * * * * * * * * * * * * * * * internet email confidentiality footer * * * * * * * * * * * * * * * * * * *  privileged / confidential information may be contained in this message . if you  are not the addressee indicated in this message ( or responsible for delivery  of  the message to such person ) , you may not copy or deliver this message to  anyone .  in such case , you should destroy this message and kindly notify the sender by  reply email . please advise immediately if you or your employer do not consent  to  internet email for messages of this kind . opinions , conclusions and other  information in this message that do not relate to the official business of my  firm shall be understood as neither given nor endorsed by it .\",0\n\"Subject: jcc  good morning . i apologize for the response delay . i ' ve gone back through  the analysis that i did back in april , and have thrown around some ideas with  vince and stinson . the issue may be summarized as follows .  the hedge relationship was derived using jcc and prompt brent , and is valid  for jcc and prompt brent . no problems here . however , it will not be valid  for points far out on the forward curve . intuitively , this hedge  relationship will approach one as we move far out on the curve , but since  there is no data , i can not statistically determine this . one can imagine a  term structure of heding ratios that start at 0 . 67 and move to 1 . 0 , so that  the back end of the curves would move together , but how fast it converges to  one is anyone ' s guess .  if there is a way of determining the historical jcc forward curve , then the  hedge relationships may be estimated . however , i have been unable to  determine a rigorous approach to building the jcc curve .  i can explain this far better in person , and would like to talk as soon as  possible at your convenience .  - kevin kindall\",0\n\"Subject: usaee conference update from louise burke  content - transfer - encoding : binary  date : thu , 29 jun 2000 16 : 38 : 24 edt  subject : u : \\ wp 60 \\ usaeekaminska . doc  mime - version : 1 . 0  content - type : application / vms - rms ; vms - fdl = \"\" system ; source vax / vms ; ; file ;  allocation 54 ; best _ try _ contiguous no ; bucket _ size 0 ; contiguous no ;  deferred _ write no ; extension 0 ; global _ buffer _ count 0 ; mt _ block _ size 0 ;  max _ record _ number 0 ; maximize _ version no ; organization sequential ; read _ check  no ; supersede no ; write _ check no ; ; record ; block _ span yes ; carriage _ control  carriage _ return ; control _ field _ size 0 ; format stream ; size 0 ; ; area 0 ;  allocation 54 ; best _ try _ contiguous no ; bucket _ size 0 ; contiguous no ;  exact _ positioning no ; extension 0 ; position none ; volume 0 ; \"\" ; mr - type = msword ;  name = msword  content - disposition : attachment ; filename = msword  importance : normal  al - format : msword  al - type : document  - msword\",0\n\"Subject: re : invitation - whartonetevent - apr 20 / plsrsvp  vince and chistie ,  sorry you won ' t be attending our april 20 et event , but of course we realize that many of our partners can ' t attend every event .  with this in mind , we put conference reports online in a \"\" quick read \"\" format for busy executives . our site is located at : http : / / emertech . wharton . upenn . edu - we ' ll be adding new reports in the coming 2 weeks .  i would also ask , is there anyone else at enron involved in mergers and acquisitions who would benefit from the april 20 event ? this will be one of our most \"\" content - rich \"\" events - reporting on surveys on high tech acquisitions as well as best practices in successful mergers and partnerships . please feel free to pass on the invitation to colleagues at enron who you feel might find this worthwhile , or you can give me email addresses if you ' d like me to extend the invitation with the most recent agenda .  we very much appreciate enron ' s support of the et program and look forward to your participation in the future .  best regards ,  michael  hi michael !  sorry i will be unable to attend ! i believe both vince and i are  previously committed .  thanks !  - - christie .  - -  michael s . tomczyk  managing director  emerging technologies management research program  1400 sh - dh / 6371  the wharton school  philadelphia , pa 19104 - 6371  tel 215 - 573 - 7722  fax 215 - 573 - 2129  website : http : / / emertech . wharton . upenn . edu\",0\n\"Subject: re : abstract  thanks  vince . this is good but i also need a title . it would be good if you can as  part of the talk present an example of a technical problem addressed by your  group describing the problem and the general methodology employed or  developed . you can also start with an introduction about your organization  and the program .  shmuel  shmuel s . oren , professor  dept . of industrial engineering  and operations research  4117 etcheverry hall  university of california  berkeley , ca 94720 - 1777  e - mail : oren @ ieor . berkeley . edu  phone : ( 510 ) 642 - 1836 or 5484  fax : ( 510 ) 642 - 1403  - - - - - original message - - - - -  from :  to :  cc : ;  sent : monday , october 02 , 2000 6 : 44 am  subject : abstract  > shmuel ,  >  > this is the abstract for my presentation on the 23 rd of october .  > i am in london and paris this week . i can be reached at my  > private e - mail address vkaminski @ aol . com .  >  > please , feel free to suggest modifications to the abstract .  >  >  >  > vince  >  >  > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  >  > > the last three years were characterized by exceptionally high volatility  > of  > > the power prices in the us markets . the market developments have created  > a  > > number of unique challenges for energy industry economists . one  immediate  > > question we have to answer is how to measure volatility of energy  prices .  > > although we can all agree that the prices in the power markets are  > > characterized by high variability , the traditional measures used in  > financial  > > economics ( annualized standard deviation of log price returns ) may not  > fit  > > well electricity prices . the second challenge is to explain the sources  > of  > > high price volatility and to answer the question to what extent it can  be  > > attributed to problems that can be addressed in the long run . such  > problems  > > include flaws in market design that allow some market participants to  > abuse  > > market power , limited availability and / or unequal access to  transmission ,  > > temporary shortages of generation capacity . some factors underlying high  > > volatility of electricity prices may be of permanent nature and may be a  > > necessary price to pay for increased market efficiency and expanded  > customer  > > choice .  >  >\",0\n\"Subject: enron image 2000 video is here  enron ' s image 2000 video is now available  we think you will like enron ' s new corporate image video , which can be used  for employees , customers , suppliers , government officials , and other  audiences who want to know about enron . the video features ken lay , jeff  skilling and joe sutton who discuss four key business initiatives :  broadband ; wholesale energy ; energy outsourcing services and enrononline .  the look and feel represents our people , culture and new branding .  mooresource has a large supply of standard vhs ( also known as ntsc ) copies ,  which is the format used in the u . s . and some international locations , and  copies in pal , which is the format used in the u . k . and in most european  locations . there also are special pal formats ( pal - m and pal - n ) available  for locations in south america .  you may use the order form below or , for those of you who prefer to order  electronically , you may do so from mooresource using the following item  numbers . if you aren ' t familiar with mooresource , please go  tohttp : / / home . enron . com : 84 / imgctr / and click on the mooresource button .  instructions for ordering will be provided there . if you have questions  about using mooresource , contact michael shea at 713 / 853 - 5418 .  order a copy today .  item # description price  43162 image video - vhs $ 4 . 25  43163 image video - pal $ 8 . 25  43164 image video - pal / m $ 15 . 00  43165 image video - pal / n $ 15 . 00\",0\n\"Subject: re : interview  steve ,  i submitted my evaluation . general impression was rather  negative : he seems to be a consultant type person  who speaks about everything with confidence but is short on depth  and technical details .  he is personable , outspoken , organized - on the positive  side .  also , the red flag is that he jumps from job to job : typical after  18 - 24 months when any organization can ascertain his usefulness .  vince  from : stephen stock / enron @ enronxgate on 04 / 17 / 2001 01 : 03 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : interview  hi vince ,  what did you think of david hsu ?  my thoughts .  overall a good guy . personable . intelligent .  he could communicate reasonably well , but seemed to be capable of losing objectivity in favour of technical advancement .  he didn ' t seem comfortable with taking a man - management role ( at least he didn ' t want to be an ' administrator ' )  he appeared to know a lot about risk . ( in fact jay web called me to say he felt david was one of the better risk guys he had seen but also commented that he needed to be coupled with a project manager to be successfull ) .  regards  steve\",0\n\"Subject: you are now subscribed to the frbnyrmagl list  mon , 18 sep 2000 18 : 42 : 47  your subscription to the frbnyrmagl list ( federal reserve bank of ny  research publications ) has been accepted .  please save this message for future reference , especially if this is the  first time you are subscribing to an electronic mailing list . if you ever  need to leave the list , you will find the necessary instructions below .  perhaps more importantly , saving a copy of this message ( and of all  future subscription notices from other mailing lists ) in a special mail  folder will give you instant access to the list of mailing lists that you  are subscribed to . this may prove very useful the next time you go on  vacation and need to leave the lists temporarily so as not to fill up  your mailbox while you are away ! you should also save the \"\" welcome  messages \"\" from the list owners that you will occasionally receive after  subscribing to a new list .  to send a message to all the people currently subscribed to the list ,  just send mail to frbnyrmagl @ peach . ease . lsoft . com . this is called  \"\" sending mail to the list , \"\" because you send mail to a single address and  listserv makes copies for all the people who have subscribed . this  address ( frbnyrmagl @ peach . ease . lsoft . com ) is also called the \"\" list  address . \"\" you must never try to send any command to that address , as it  would be distributed to all the people who have subscribed . all commands  must be sent to the \"\" listserv address , \"\" listserv @ peach . ease . lsoft . com . it  is very important to understand the difference between the two , but  fortunately it is not complicated . the listserv address is like a fax  number that connects you to a machine , whereas the list address is like a  normal voice line connecting you to a person . if you make a mistake and  dial the fax number when you wanted to talk to someone on the phone , you  will quickly realize that you used the wrong number and call again . no  harm will have been done . if on the other hand you accidentally make your  fax call someone ' s voice line , the person receiving the call will be  inconvenienced , especially if your fax then re - dials every 5 minutes . the  fact that most people will eventually connect the fax machine to the  voice line to allow the fax to go through and make the calls stop does  not mean that you should continue to send faxes to the voice number .  people would just get mad at you . it works pretty much the same way with  mailing lists , with the difference that you are calling hundreds or  thousands of people at the same time , and consequently you can expect a  lot of people to get upset if you consistently send commands to the list  address .  you may leave the list at any time by sending a \"\" signoff frbnyrmagl \"\"  command to listserv @ peach . ease . lsoft . com . you can also tell listserv how  you want it to confirm the receipt of messages you send to the list . if  you do not trust the system , send a \"\" set frbnyrmagl repro \"\" command and  listserv will send you a copy of your own messages , so that you can see  that the message was distributed and did not get damaged on the way .  after a while you may find that this is getting annoying , especially if  your mail program does not tell you that the message is from you when it  informs you that new mail has arrived from frbnyrmagl . if you send a \"\" set  frbnyrmagl ack norepro \"\" command , listserv will mail you a short  acknowledgement instead , which will look different in your mailbox  directory . with most mail programs you will know immediately that this is  an acknowledgement you can read later . finally , you can turn off  acknowledgements completely with \"\" set frbnyrmagl noack norepro \"\" .  contributions sent to this list are automatically archived . you can get a  list of the available archive files by sending an \"\" index frbnyrmagl \"\"  command to listserv @ peach . ease . lsoft . com . you can then order these files  with a \"\" get frbnyrmagl logxxxx \"\" command , or using listserv ' s database  search facilities . send an \"\" info database \"\" command for more information  on the latter .  important : this list is confidential . you should not publicly mention its  existence , or forward copies of information you have obtained from it to  third parties . please note that the \"\" give \"\" command is automatically  disabled for all archive files .  more information on listserv commands can be found in the listserv  reference card , which you can retrieve by sending an \"\" info refcard \"\"  command to listserv @ peach . ease . lsoft . com .\",0\n\"Subject: look forward to hearning from you .  vince ,  please let me know what day might be convenient for you this week for a  quick lunch if possible .  thank you .  maruti  - - - - - original message - - - - -  from : more  to : vince . j . kaminski @ enron . com  date : monday , august 28 , 2000 2 : 31 pm  subject : re : enron open positions  > vince ,  >  > just fine . i will be there at 11 : 30 am on friday , september 8 , 2000 .  >  > see you at the enron building .  >  > thank you .  >  > maruti  >  > - - - - - original message - - - - -  > from : vince . j . kaminski @ enron . com  > to : mmore @ houston . rr . com  > cc : vince . j . kaminski @ enron . com  > date : monday , august 28 , 2000 2 : 14 pm  > subject : re : enron open positions  >  >  >  > maruti ,  >  > does 11 : 30 enron building work for you ?  >  > vince  >  >  >  >  >  > \"\" more \"\" on 08 / 28 / 2000 01 : 25 : 54 pm  >  > to : \"\" vince j kaminski \"\"  > cc :  > subject : re : enron open positions  >  >  >  > hello vince ,  >  > thank you very much for getting back to me .  >  > friday , september 8 is fine with me . please let me know what time would be  > convenient for you and where we can meet . i can come any time anywhere .  >  > sincerely ,  >  > maruti  > 832 - 251 - 7267  >  >  >  >  > - - - - - original message - - - - -  > from : vince j kaminski  > to : more  > cc : vince j kaminski  > date : monday , august 28 , 2000 12 : 12 pm  > subject : re : enron open positions  >  >  >  > maruti ,  >  > what about september 8 , friday ?  >  > vince  >  >  >  >  >  > \"\" more \"\" on 08 / 25 / 2000 03 : 27 : 26 pm  >  > to : vince j kaminski / hou / ect @ ect  > cc :  > subject : enron open positions  >  >  >  >  >  >  >  >\",0\n\"Subject: re : job posting  vince ,  thank you very much . i applied for the position yesterday ( via e - mail  address ) and mentioned your name in the cover letter . i ' ll keep my fingers  crossed .  sincerely ,  helen  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : wednesday , april 25 , 2001 9 : 42 am  to : demianen @ ruf . rice . edu  subject : re : job posting  helen ,  fyi .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 25 / 2001  09 : 40 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : lee ferrell / enron @ enronxgate on 04 / 24 / 2001 06 : 20 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : job posting  hi vince ,  this posting is for my group . thanks for the referral .  - - - - - original message - - - - -  from : kaminski , vince  sent : tuesday , april 24 , 2001 5 : 31 pm  to : goodpasture , john ; watson , kimberly ; ferrell , lee ; kaminski ,  vince  cc : krishnarao , pinnamaneni  subject : job posting  i am teaching a class at rice and one of my very bright students sent  her resume  in response to this posting . do you know who posted this job ?  vince kaminski  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on  04 / 24 / 2001 05 : 27 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  ( embedded image moved to file : pico 5601 . pcx )  \"\" helen demianenko \"\" on 04 / 24 / 2001  02 : 11 : 05 pm  please respond to  to :  cc :  subject : job posting  dear vince ,  thanks for talking to me this morning about the sr . risk analyst  position .  here is where you can find the job description for that position :  also , i have cut and pasted it down below , just in case .  i appreciate your assistance in this matter and will start working on my  cover letter right away .  i would also like to talk to somebody to get a better feel for the  position  ( is this really an mba level position and how much of the in - depth  learning  opportunities for the derivatives market does it entail ? )  sincerely ,  helen demianenko  p . s . i have attached my resume ( one more time ) .  sr risk analyst  essential functions : primary accountability for managing the ets risk  book  structure and processes from a pipeline ( front office ) perspective . work  within current nng and tw marketing organizations to effectively  integrate  risk books into daily marketing and structured product activities .  provide  feedback to management regarding overall and specific risk positions .  provide support for consistent and accurate deals entry / reporting for  stand  alone risk management system . create ad - hoc reports to assist management  in  risk analysis . responsible for managing and providing enhancements to  the  capacity books : ? maintain functionality and provide leadership for new  functionality from a users perspective . provide support and direction  for  integration of capacity books and revenue management project . support  revenue  management team  essential requirements : ba / bs in finance or accounting ( mba preferred ) .  minimum of two years financial instruments experience . excellent  quantitative / analytic and systems skills . knowledge of commodity risk  book  concepts . understanding of physical natural gas market , interstate  transportation and financial derivatives . ability to interface with  structuring / marketing groups in order to define business requirements .  ability to provide leadership for business and system processes .  excellent  communication skills with an ability to communicate across organization  with  varied skill sets and ideas . must be self - motivated with a high level of  energy  preferred skills : na .  special characteristics : this job functions in a team - oriented ,  fast - paced  environment with multiple concurrent assignments and constantly changing  priorities .  contact : responses will be accepted through may 3 , 2001 . respond to  enron  corp . , human resources 235 , p o box 3330 , omaha , ne 68103 - 0330 or  e - mail :  dea . crum @ enron . com as a . doc or . txt attachment . please include this  requisition number .  job id 0000108729  department risk management & reporti  company enron transportation services  enron transportation services  location houston , tx  type  posting date 19 - apr - 01  - helen _ d _ resume . doc >\",0\n\"Subject: re : a request  vince ,  i will supply a generic example .  zimin  vince j kaminski  03 / 06 / 2001 09 : 31 am  to : zimin lu / hou / ect @ ect  cc :  subject : a request  zimin ,  it seems that the academia is catching up .  do you have a realistic case we can show them ?  something generic .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 06 / 2001  09 : 31 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  ds 64 @ cyrus . andrew . cmu . edu on 03 / 02 / 2001 09 : 39 : 43 am  to : \"\" vince j kaminski \"\"  cc :  subject : a request  vince ,  i am writing to ask for your help with some research i am doing with john  lehoczky and a phd student . we trying to apply recent advances in monte  carlo for american options to value swing and other options with multiple  early exercise decisions that are important in energy markets . i know in  general that early exercise shows up in a wide range of energy contracts ,  both real as welll as financial . would it be possible for you , either via  email or on the phone , to give us some examples of typical terms for such  instruments ? we would like our examples to look realistic . we also want to  make sure we are focusing on the right sorts of optionality .  thanks in advance ,  duane  * * * * * * * *  duane seppi  graduate school of industrial administration  carnegie mellon university  pittsburgh pa 15213 - 3890  tel . ( 412 ) 268 - 2298  fax ( 412 ) 268 - 8896  email ds 64 + @ andrew . cmu . edu\",0\n\"Subject: interview with enron  dear mr . kaminski ,  ?  even though i cannot pass \"\" official \"\" interviews , i would like to discuss  with enron . i was really impressed by your presentation and i think i would  be a good fit for your firm .  ?  i know that you ? will be soon recruiting on campus , maybe we could set up an  \"\" informal meeting \"\" . either give me a call at home ( 412 - 802 - 6429 ) or send me  an email at this address . i would appreciate though not to appear on  interview lists .  ?  pierre - philippe ste - marie  http : / / pstemarie . homestead . com\",0\n\"Subject: jcc study  here is the information produced in the study for marc de la roche .  - kevin k .  - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin kindall / corp / enron on 12 / 20 / 2000  05 : 42 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  kevin kindall  11 / 28 / 2000 09 : 29 am  to : russell dyk / corp / enron @ enron  cc :  subject : jcc study  - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin kindall / corp / enron on 11 / 28 / 2000  09 : 32 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  kevin kindall  09 / 29 / 2000 05 : 11 pm  to : james pyke / ap / enron @ enron  cc :  subject : jcc study  hello . please read the jcc note . feedback welcome .  - kevin k .\",0\n\"Subject: [ no subject ]  thanks vince - i didn ' t know - i was worried for a while ; thanks for reducing  me stress ! i ' ll let alec and vuthy know @ this .  thank you very much - we ' ll get him ( howard ) in !  jeff  i live in dana point , ca . ( known for it ' s harbor ) here are a few pictures for  you on your coffee break : http : / / www . danapointharbor . com / tour / ptwend . htm  bye  jeff ,  we have video facilities both in houston and london .  we shall invite howard to visit our office in london again .  vince  * get free , secure online email at http : / / www . ziplip . com / *\",0\n\"Subject: re : message from ken rice  dorothy ,  no problem . please , cc - mail me  tom ' s number . one of the members of the group has a phd in  computer science and he will join me for the call .  vince  from : dorothy dalton @ enron communications on 05 / 01 / 2001 08 : 53 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : message from ken rice  vince :  ken rice received a call through a friend ' s referral from dr . tom limperis ( a  professor at the university of michigan ) . dr . limperis has developed a  statistical database management system he would like to show enron . ken  would like you to return this call on his behalf . he feels that you are  probably the only person who will understand and be able to determine if  enron should have an interest .  do you mind returning this call ? please let me know .  thanks !  dorothy dalton  office of the chairman  enron broadband services  1400 smith street , eb 4505  houston , tx 77002  713 - 853 - 6724 - direct  713 - 853 - 9469 - fax\",0\n\"Subject: resending paper  - - - - - - - - - - - - - - - - - - - - - - forwarded by jason sokolov / hou / ect on 04 / 30 / 2001 08 : 18 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" lynn nazareth \"\" on 04 / 27 / 2001 12 : 46 : 37 pm  to : jason . sokolov @ enron . com  cc :  subject : resending paper  jason :  here is our team ' s assignment . please confirm receipt . i am also sending you  the file via my outlook address in case this doesn ' t work .  this is our team :  helen demianenko  javier lamas  lynn nazareth  shauywn smith  carlos wheelock  sarah wooddy  thanks , jason ! see you at enron this fall !  lynn  get your free download of msn explorer at http : / / explorer . msn . com  - mg _ analysis _ final . doc\",0\n\"Subject: allocations  becky ,  please , take a look at the allocations sheet .  vince\",0\n\"Subject: new jcc stuff  vince , i ' m gone through wednesday of next week . i plan to work more on this  over the holiday . contact information is in the . doc  in other news , i didn ' t get the total return swaps finished . i have been  unable to nail down certain details . concepts are quite clear .  - kevin k .\",0\n\"Subject: re : london research group  richard ,  please , let me know what the timetable is . i would like to talk to anjam a  few days before  to break the news to him . i hope i can save him for the company and offer him  a position in houston .  we desperately need skills he has .  vince  richard lewis  07 / 27 / 2000 02 : 20 am  to : dale surbey / lon / ect @ ect  cc : john sherriff / lon / ect @ ect , vince j kaminski / hou / ect @ ect , grant  masson / hou / ect @ ect , stinson gibner / hou / ect @ ect , joe gold / lon / ect @ ect  subject : re : london research group  i agree with dale - no point in delaying .  dale surbey  27 / 07 / 2000 08 : 13  to : john sherriff / lon / ect @ ect  cc : vince j kaminski / hou / ect @ ect , richard lewis / lon / ect @ ect , grant  masson / hou / ect @ ect , stinson gibner / hou / ect @ ect , joe gold / lon / ect @ ect  subject : re : london research group  john ,  i propose accelerating steve ' s move to head the research group here . it  makes sense to include this as part of the mid - year prc process by giving him  a tangible reward along with his performance feedback .  thoughts ?  - dale  john sherriff  27 / 07 / 2000 06 : 44  to : vince j kaminski / hou / ect @ ect  cc : dale surbey / lon / ect @ ect , vince j kaminski / hou / ect @ ect , richard  lewis / lon / ect @ ect , grant masson / hou / ect @ ect , stinson gibner / hou / ect @ ect , joe  gold / lon / ect @ ect  subject : re : london research group  vince - i agree with your conclusion here . we are still trying to fill  dale ' s structuring role as well so part of the question is  how we announce steve ' s lead research role relative to when we know who will  take dale ' s spot . perhaps we should just  move forward with the steve announcement the day that dale moves full time to  ebs . i will ask richard lewis to take the lead  in working with you on finalizing the decision and communcicating the changes  to the organization .  but i do want to reinforce how pleased we are to have steve here . he is a  wonderfull asset to our efforts .  thanks !  john  vince j kaminski  26 / 07 / 2000 22 : 18  to : john sherriff / lon / ect @ ect  cc : dale surbey / lon / ect @ ect , vince j kaminski / hou / ect @ ect , richard  lewis / lon / ect @ ect , grant masson / hou / ect @ ect , stinson gibner / hou / ect @ ect  subject : london research group  john ,  i am writing to you regarding the management of the london research group .  as you know , dale surbey , who was managing the london unit of the research  group ,  is moving to ebs . dale did a terrific job helping me to develop the pool of  talent we have currently  in london .  given that dale is likely to be transfered to houston , it ' s time  to nominate one member of the research group for a management position .  my recommendation is steve leppard . steve emerged not only as the most  technically qualified member of the group but also as a natural leader ,  highly  respected by his peers and internal customers . steve has a very high energy  level  and is very efficient as a manager and as coach of new talent .  his promotion is likely to cause anjam ' s departure form enron . i value  technical  skills of anjam , but in spite of my loyalty to him , don ' t think he is the  same caliber  as steve . however , i would not like to lose him and think about moving him to  houston  for 2 years . i think that the opportunity to work in houston , would be a  sufficient  incentive to keep him in enron . by the way , his performance feedback has  greatly improved .  please , let me know what you think .  vince\",0\n\"Subject: 2 missing from the mailing list  hingoran @ rice . edu  planck @ rice . edu\",0\n\"Subject: vacation carryover  want to verify your vacation carryover ? beginning january 22 , 2001 , all  eligible enron employees will be able to access the hours of vacation that  were carried over from the previous year by going to the ehronline website .  1 . navigate to the ehronline website : http : / / ehronline . enron . com .  2 . read the disclaimer ; click accept .  3 . enter your user id and password ; click logon .  4 . select time management from the menu at the left .  5 . select vacation information from the drop - down menu .  to see all types of vacation ( accrual , lump sum , vacation ) , click the radio  button for \"\" all types . \"\"  click display .  to see specific types of vacation ( accrual , lump sum , vacation ) , click the  radio button below \"\" all types \"\" and make your selection from the drop - down  menu .  click display .  click exit to log off .  the system will default to show all types of vacation , including ( if  available ) vacation - ( accrual ) or vacation - ( lump sum ) or vacation . the  carryover amount will be displayed next to the type : \"\" vacation \"\" under the  \"\" entitlement \"\" column .  enron policy states that employees are entitled to a maximum of 40 hours of  vacation carryover without supervisor approval . hours in excess of 40 hours  are subject to supervisor approval and will be updated once supervisor  approval has been received  if you have questions regarding your vacation , please call the payroll  hotline at 713 . 345 . 5555 .\",0\n\"Subject: re : software  hi helyette ,  congratulations on your papers .  the purchase contract is in the last stage of approvals  ( it ' s circulating through different parts of the company  where it has to be signed ) . i think we should be able to execute  the contract in the first few days of december .  i shall let you know as soon as our internal process is completed .  vince  gemanix @ aol . com on 11 / 29 / 2000 02 : 26 : 12 pm  to : vkaminski @ aol . com  cc : vkamins @ enron . com  subject : software  dear vince ,  i guess time has been flying for you by since our brilliant show  in paris . in my case , it is the same : i got 3 papers accepted in the  3 major journals in finance ( journal of business , journal of finance  and journal of financial economics ) . we should write a piece !  our software seems to be quite satisfactory for the oil people . my  lawyer had added a paragraph to karla ' s document : since she had  mentioned the right for enron to check at any time the code source  etc , he wanted to request enron to pay his fees in the case d - g  disappeared . in any case , if you are still interested , we are ready to  use your escrow account to make things simpler . moreover , i am  striking an agreement with a software company , 13 years with  people from polytechnique + finance , to be our hot line ( with us paying  royalties , of course ) . this would complement my 2 associates .  looking forward to hearing from you  helyette\",0\n\"Subject: program posted  hello all ,  the program for next week ' s conference is posted at the following address :  we have lots of fun stuff planned to go with the serious so come prepared  for a great weekend .  john  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: re : your encouragement would be appreciated  to all a - team members :  check out the nice recognition note below  i also receive numerous verbal high fives from the other desk heads as well  we had a great year  kudos to all members of the team  - - - mike  - - - - - - - - - - - - - - - - - - - - - - forwarded by mike a roberts / hou / ect on 12 / 21 / 2000  03 : 29 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  12 / 21 / 2000 03 : 00 pm  to : jim schwieger / hou / ect @ ect  cc : jeff skilling / corp / enron @ enron , greg whalley / hou / ect @ ect , david w  delainey / hou / ect @ ect , john j lavorato / corp / enron @ enron ( bcc : mike a  roberts / hou / ect )  subject : re : your encouragement would be appreciated  jim ,  thanks a lot . it is difficult to find a better example example of commitment  to enron and to professional excellence  than our weather guys .  vince  jim schwieger  12 / 21 / 2000 10 : 32 am  to : jeff skilling / corp / enron @ enron , greg whalley / hou / ect @ ect , david w  delainey / hou / ect @ ect , john j lavorato / corp / enron @ enron  cc : ( bcc : vince j kaminski / hou / ect )  subject : your encouragement would be appreciated  the gas and power trading organizations have had a tremendous year .  sometimes we as traders forget some of the crucial parts of the organization  that significantly contributed to that success . i believe the weather group  comprised of mike robert ' s , jose marquez , stephen bennett and dave ryan from  power are one of those groups . these individuals have done a tremendous job  of predicting summer weather along with the route hurricanes would take . the  greatest achievement has been the november and december winter forecast .  they held fast to their cold forecast even when outside services were  moderating . on a score card with all other services they definitely deserve  an \"\" a + \"\" . when you are down on the 32 nd floor it would be nice if you would  stop and congratulate them on a tremendous job and their contribution to our  success .  thanks , jim schwieger\",0\n\"Subject: an interview  shirley ,  please schedule an interview with konstantin on may 8 .  stinson , zimin , alex , tanya , krishna , myself .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 05 / 02 / 2001 03 : 07 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" konstantin n . kudin \"\" on 05 / 02 / 2001 01 : 39 : 15 pm  to :  cc :  subject : an interview  dear dr . kaminski  we have talked earlier during your energy class at rice about career  opportunities in risk management at enron . if it is possible , i would like  to meet with you and people from your group next week , preferably tuesday  ( may 8 ) . my time is flexible , i could come any time . other days are also  fine .  thank you very much in advance .  sincerely ,  konstantin kudin\",0\n\"Subject: ceo meeting with governor johanns  to margaret and beth ,  in order to ensure a comprehensive speech to goveror johanns , i am in the  process of compiling some preliminary research on the impacts of energy  prices on agri - business in nebraska . before i can make a decision of whether  i can accept this offer to speak , i would like to finish this preliminary  study .  i need to know the deadline of your request . can you give me a better  understanding as to the duration of the speech and the type of forum in which  i will be speaking ? should i expect a q & a after the speech ? who will be in  the audience ? what companies and ceo ' s will be attending the meeting ? who  will be speaking on energy derivatives ? please let me know when you need my  decision .  regards ,  maureen raymond - castaneda\",0\n\"Subject: churn list  vince ,  here is your new location on the 32 nd floor .  have a wonderful morning !  - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 04 / 28 / 2000 07 : 48  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  kevin g moore  04 / 28 / 2000 07 : 49 am  to : lisa b cousino / hou / ect @ ect , heather choate / hou / ect @ ect  cc :  subject : churn list  goodmorning ,  today is the day for the great move .  well i certainly hope this is not a bother .  i have a few changes since a few members has  left our group .  new locations  sam smith - eb 3274 a  elena chilkina - eb 3274 b ( michael sergeev )  patricia tlapek - eb 3273 a  vince kaminski - eb 3273 b  eb 7273 c - vacant ( roman zadorozhny )  if you are not able to make changes on the churn list ,  please be aware that we are going to label all items to  the locations listed , whereby these items will be at the  locations listed above .  please if you need more information feel free to call  x 34710 .  hope this day be a good one for you !  thanks  kevin moore\",0\n\"Subject: material for thu 2 mar wg meeting  fyi .  - - - - - forwarded by ravi thuraisingham / enron communications on 02 / 29 / 00 01 : 15  pm - - - - -  nevil @ ipn . caida . org  02 / 28 / 00 10 : 35 pm  to : metrics @ caida . org  cc : ( bcc : ravi thuraisingham / enron communications )  subject : material for thu 2 mar wg meeting  hello all :  appended below you ' ll find a summary of ideas that people have contributed  since we at caida began to get the metrics wg started . some of this  material has already appeared on the metrics mailing list , the older  material comes from personal emails . i ' m posting it again to give us all  some more ideas to think about .  for those who are able to attend the wg meeting in san jose this thursday  ( 2 mar ) , i ' d like to spend time in the morning getting to know about  attendees interests and experience in making internet measurements .  i suggest that a good way to do this would be to have each group give a  short ( 10 minutes , response times , and this gets even more interesting . . . you only need  > to be able to see traffic in one direction ( from client to server ) to  > get a fairly accurate round - trip time from the client to the server  > ( irrespective of how far away the client is from your measurement  > host ) , because of tcps three - way handshake for connection  > establishment ; when you see the opening syn , you wait for the client  > to ack the server ' s syn ack and you have the client - > server round - trip  > time . i think you ' ve actually already done some of this ? we could  > also potentially try to correlate dns queries and tcp connections ,  > perhaps determining some probabilities in a given environment of a  > host initiating a tcp connection to a host for which it just received  > an a record , and track various application - level response times ( i ' d  > personally love to have a lot of data on the ratio of dns response  > time to tcp transfer time for http connections ) . even if the  > measurement makes no attempt to discern what constitutes a web  > transaction to the user ( a full page , usually many tcp connections ) .  >  > anyway , i think there are some fairly interesting things we can  > measure with simple techniques , these are just some simple ones .  > there may be some interesting things we could do by digging into  > payloads of a few of the other highly - utilized applications , but doing  > it for tcp is a nightmare perfomance - wise . but we now have the basic  > infrastructure to do things with dns over udp . we can probably cover  > any open udp protocol without incurring performance penalties that  > would make it completely unusable . snmp , for example . . . while its  > application is limited , network service providers would find  > round - trip time information for snmp packets from their network  > management stations to agents very useful . i think there are some  > rudimentary things we can do with tcp as well , and i also think some  > sites would be interested in having some rudimentary information . for  > example , a weighted ( by traffic ) round - trip time distribution for tcp  > traffic to / from all networks with which you communicated ( say at / 24  > granularity ) . this gives sites a notion of how close they are to  > those they talk to most frequently . with a little more work , we could  > probably make reasonable bandwidth estimates for every end network for  > which we see tcp data ( we could certainly get a reasonable number for  > the maximum observed bandwidth ) .  >  > these methods also decouple the measurement from the traffic . while we  > all know the value of that , i think it ' s significant in that active  > probers can be run on the same host , decoupled from the actual  > measurement , and with timestamps coming from kernel space ( bpf ) . i ' ve  > been thinking about this for a long time , because eventually i ' d like  > skitter ( and other tools ) to be able to do use tcp packets for probing ,  > with no need for things like ip firewall code ; if i can just properly  > time non - blocking connects , and count on the passive tool to see the syn  > and syn ack , i can use any tcp port for round - trip time measurements and  > not trick my kernel by sending tcp packets on a raw socket . i need  > feedback from the passive tool for tracing like skitter ( it needs to  > know when a reply has been seen from a hop and when the destination has  > been reached ) , but it ' s not difficult ( simple bytestream - oriented ipc is  > sufficient ) .  >  > going further , i like the idea proposed by some others ( maybe funded at  > this point , i ' m not tracking it ) of instrumenting the freenix tcp / ip  > stacks . a lot of useful information could be pulled from the stack .  > but eventually someone ' s going to have to come up with what pieces of  > information are desirable enough for someone to want their stack  > instrumented ( and it ' ll have to be somewhere between what ' s currently  >  > implemented and a full - blown metering system like rtfm ) . and i think in  > the interim , there are a lot of things we could do using libpcap on our  > local machines , non - promiscuous and in user space ( safe , easy to  > implement and test ) . to me the benefits here are :  >  > - a user is likely to have a tangible , well - understood relationship  > with their workstation ( understood by them ) . this is particularly  > true for those of us with network expertise . so it ' s at least  > plausible that we can find correlations of measurements with  > user experience in a fairly short period of time , helping us hone in  > on what ' s useful . even if we only find weak correlations ( for  > whatever reason ) , once a correlation exists , more people will be  > interested in helping with development because it ' ll be something  > they ' ll use personally .  > - we ' re essentially guaranteed to see traffic in both directions .  >  > i ' d personally be interested in trying to find some small sets of  > information that correlate to user experiences , so that it doesn ' t  > take a terabyte of disk and 64 processors to deal with data from say  > 10 , 000 desktops . : - )  >  > anyway , just some random thoughts . the hard part for me at the moment  > is thinking about useful generalizations and infrastructure to support  > them . . .  cindy bickerstaff responded . .  > we ' re just starting to capture the mss and window size negotiations between  > timeit and servers to get an idea of what is typical or usual . wonder if  > daniel ' s code could do that too from the various traffic monitoring points  > caida has out there ? the data could be used to fill in some parameters for  > trying to model some of the passive data collected . since a typical web page  > has many elements between a single client and server the first or base page  > gives you a starting idea of what to expect and the subsequent elements are  > like repeat measurements of the same path over a very short time interval .  > since there is a strong time of day / week effect ( volumes and perf ) , the  > short duration of the data collection from a single web page ( incl .  > elements ) might give some options for modeling ( and maybe getting a better  > estimate of packet loss ) . i ' ve really enjoyed joining the e 2 e - interest group  > for the ideas on factors and the references to past modeling attempts ( e . g .  > mathis , et . al . paper . . . ack its bulk transfer focus ) .  paul krumviede highlighted the difficulty of agreeing on details  of how to measure common metrics like availability , reliability ,  throughput and latency .  > an example was throughput . since it was proposed  > that this be measured using a tcp file transfer of  > random data , one concern was what does this do  > to latency ? and where does this get measured ? as  > many customers of this service would not be large  > businesses , measuring this from the customer end  > of a 56 - or 64 - kbps circuit was almost certain to  > drive end - to - end latency measurements beyond  > defined bounds . measuring it from within points in  > the provider ' s network ( s ) might show figures that the  > customers could never see themselves .  >  > the compromise was to define the throughput metric  > as ocurring at access link loads of no more than 50 %  > of the bit rate . but how does one measure that ? and  > so on . . .  >  > given that this discussion was recognized as being the  > prelude to the imposition of minimal slas , as part of the  > \"\" certification \"\" process for service providers , this may be  > an illustration of the perils of discussing slas and metrics  > in some interchangable form . but they may not be easy  > to separate in the minds of some .  carter bullard said  > i ' m specifically interested in bridging  > rtfm and ippm work , particularly to describe how an  > rtfm can be a generic connectivity monitor . ippm  > describes type - p - unidirection and bidirectional  > connectivity , and a single point rtfm can detect  > these conditions , but standard descriptions for how  > this can be done would be very useful .  >  > personally , one of the things that i ' m interested  > in is tcp based streaming services performance , such  > as that seen in internet radio distribution , and of  > course ip telephony wireline performance metrics would  > be very good to describe .  nevil brownlee comments that he ' s also very interested in  developing the rtfm meter as a platform for more general measurements .  two areas seem interesting ( apart from getting more information  from tcp streams ) : ~  + qos / difserv performance  ( what metrics do we need to characterise this ? )  + ipsec ( what metrics will still be useful when we can ' t  look at port numbers ? what kinds of traffic can still be  identified ? )  curtis villamizar said  > i ' m particularly interested in the work on dos at  > http : / / www . cs . washington . edu / homes / savage / traceback . html and would  > like to see that on the agenda .  this would provide a general way of determining where packets came from ,  not just a tool for tracing dos attacks . \",0\n\"Subject: credit business plan  hi jeff ,  my research colleagues and i are working on a document to lay out our credit derivatives modeling strategy . for lack of a better term , we refer to this as our credit business plan .  it is my understanding that various business plans have been previously written for the credit group - one by gillian johnson and another by john bottomley .  it would be very helpful to our efforts in the research group , it you would allow us to see these plans .  thanks ,  iris\",0\n\"Subject: re : for vince j kaminski ' s approval  approved  vince kaminski  information risk management  04 / 05 / 2000 03 : 50 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : for vince j kaminski ' s approval  below you will find a copy of a request that is awaiting your approval .  please advise us as to your approval or rejection of this request by way of  email , since your system does not allow you to open the icon that was  submitted by way of a doc link .  i thank you in advance for your cooperation in this matter .  leola barnett  information risk management  - - - - - - - - - - - - - - - - - - - - - - forwarded by information risk management / hou / ect on  04 / 05 / 2000 03 : 50 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  security resource request system pending vp approval  resource request how to find the status of this request . . .  general information initials :  requestor : jason sokolov / hou / ect phone : ( 713 ) 853 - 6286  requested for : jason sokolov / hou / ect  request type : update access  rc # : 100038 wo # :  company # : 0011 priority : high  manager : mike a roberts vp : vince j kaminski  location :  in the request processing section , see the status column for each requested  resource .  look at the overall status of the request in the title bar above . the status  will display closed when your request is complete .  click the \"\" status \"\" button below .  comments :  request # : jsov - 4 f 8 r 44  submitted : 01 / 04 / 2000 01 : 58 : 37 pm  name cost status implementation comments  application / database  bloomberg $ 1 , 800 . 00 monthly not started  request processing path  processed by status when comments  manager approved 01 / 20 12 : 57 pm  vp  security  implementation  editing history ( only the last five ( 5 ) are shown )  edit # past authors edit dates  2  3  4  5  6 jason sokolov  jason sokolov  jason sokolov  jason sokolov  mike a roberts 01 / 04 / 2000 01 : 56 : 27 pm  01 / 04 / 2000 01 : 57 : 47 pm  01 / 04 / 2000 01 : 58 : 30 pm  01 / 04 / 2000 01 : 58 : 37 pm  01 / 20 / 2000 12 : 57 : 16 pm\",0\n\"Subject: bad supervisor : me !  norma ,  i have attached an updated org chart for my team .  i think the following changes need to be made  1 . paulo issler is reporting to zimin lu  2 . shalesh ganjoo is reporting to me ( who does the system show as his  supervisor , zimin ? )  also , i just found out that chonawee did not get his mid - year review . i  didn ' t realize that samer takriti never gave him a review . i have found all  of the mid - year feedback for chonawee , but i don ' t have an official \"\" form \"\" to  fill out for him to sign . can you send one to me , or what should i do ?  thanks ,  stinson  x 34748  norma villarreal  10 / 26 / 2000 08 : 30 am  to : stinson gibner / hou / ect @ ect  cc :  subject : re : peoplefinder feedback  please confrim that you are the supervisor for shalesh ganjoo . also , please  send an updated organizational chart of your group so that i can verify the  correct information .  thank you for your assistance in this matter .  norma villarreal  x 31545  - - - - - - - - - - - - - - - - - - - - - - forwarded by norma villarreal / hou / ect on 10 / 26 / 2000  08 : 28 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : shalesh ganjoo 10 / 25 / 2000 09 : 29 pm  to : norma villarreal / hou / ect @ ect  cc :  subject : re : peoplefinder feedback  fyi . . .  - - - - - - - - - - - - - - - - - - - - - - forwarded by shalesh ganjoo / hou / ect on 10 / 25 / 2000  09 : 26 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  people . finder @ enron  10 / 23 / 2000 10 : 19 am  sent by : curtis fincher @ enron  to : shalesh . ganjoo @ enron . com  cc :  subject : re : peoplefinder feedback  shalesh ,  sap is showing ms . norma villarreal as your hr rep . we don ' t have the  authority to change supervisor names .  please work with your hr rep to correct this information .  regards ,  curtis fincher  shalesh . ganjoo @ enron . com on 10 / 21 / 2000 03 : 25 : 29 pm  to : people . finder @ enron . com  cc :  subject : peoplefinder feedback  my chain of command is :  stinson gibner vp ( supervisor )  vince kaminski md ( stinson ' s supervisor )  please correct this immediately . thank you .\",0\n\"Subject: re : henwood query  hi karolina ,  yes , it might be more productive to talk on the phone . given our time  difference , why don ' t we plan on tomorrow ( friday ) 8 : 00 am pdt , 4 : 00 pm bdt ?  my number in the states is 503 - 464 - 8430 . give me your number , too , so that i  can call back if i get hung up in a meeting or something .  the situation is complicated by the fact that the marginal cost is set by the  capacity increment of a plant that is on the margin in a particular hour , but  in constructing the stack , increments of a plant may be scattered throughout  the stack , based on their respective incremental heat rates . ( this is why  increment heat rates must be strictly increasing in this model . ) results for  the capacity increments , however , are not available as output ; only each  plant ' s aggregate values are reported .  i had to construct the stack for a particular hour to answer question about a  homer city , ny plant we were studying a few years ago . attached is the sql  query you can import into ms access to do the same thing for you ( making  appropriate modifications to the year , hour , etc . ) unfortunately , no henwood  documentation on the output variables existed when i created this query , so i  can not really tell you what they represent anymore . an acquaintance of mine  at entergy and i were lobbying to get henwood to provide some documentation ,  so it may be available now .  let ' s talk and maybe we can help you out ,  michael  > > > karolina potter / lon / ect @ enron 08 / 24 / 00 07 : 08 am > > >  michael ,  i am an analyst in paul mead ' s continental power trading group in london . i  am currently working on the project , which requires the use of emss , and  experience some difficulties interpreting the output results . steven leppard  from our research group gave me your name as an expert in this system and  consequently the person to contact in case of problems .  i have been running simulations for the dutch market and was asked to provide  the traders with some front - end screen graphs in order to interpret the  numerical results . one of the graphs is to show an hourly generation stack  and system ' s marginal cost , as we only run cost based scenarios . to sort each  station ' s hourly generation i need its marginal cost . to my knowledge though ,  marginal cost is only generated for a systems marginal unit ( transarea  marginal units query , marg _ cost unit ) . therefore i was sorting the stations  according to the cost which i calculated based on the outputs from station  detail by hour query . the calculation was as follows :  for each hour , for each generating station :  \"\" marginal cost \"\" [ o / mwh ] = ( generation _ cost [ oo 00 ] * 1000 ) / generation [ mwh ] -  vom _ cost [ o / mwh ]  this i thought would include fuel cost and start up costs . however , a  marginal station which i get on the stack as a result of the above  calculation is not a station given in marginal station field in transarea  marginal units query . i have also looked into transarea _ data _ hr table and  transarea _ data table but non of the costs there match my results .  do you happen to know what formula is used to determine marg _ cost and which  outputs i should be using to obtain the right results ?  it might be easier if we could discuss this issue on the phone . in this case  could you please send me your direct telephone number . i am struggling  understanding what is going on and would appreciate your help very much .  regards  karolina  - text . htm  - stack generator sql . txt\",0\n\"Subject: market opportunity from ut generators  doug , fyi  i ' m sure that baldick would just as soon sell us energy as ae . plus we have  a better handle on market opportunites . see his e - mail below .  lance  - - - - - - - - - - - - - - - - - - - - - - forwarded by lance cunningham / na / enron on 04 / 16 / 2001  10 : 08 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" ross baldick \"\" on 04 / 15 / 2001 03 : 37 : 59 pm  to :  cc :  subject : re : dissertation  dear lance ,  the university is predicting a shortfall due to increased  gas costs of between $ 30 and $ 40 million , over the next 1 to 2  years . for a long time , i have been wanting to explore opportunities for  the  campus to sell energy to austin energy when its load is below  peak . this big shortfall provides an impetus for the university  to want to maximize the value of its plant .  ross\",0\n\"Subject: interview with the enron research group  hello mr . kudin :  vince kaminski has asked me to schedule interviews for you with some  of the research group . however , tuesday , the 8 th is not a good day for  everyone as we will need approximately 3 hours .  could you do it thursday afternoon may 10 th ? we could start at 1 : 00 pm  and be through by 4 : 00 pm .  the interviewers would be :  vince kaminski managing director  stinson gibner vice president  krishna krishnarao vice president  tanya tamarchenko director  zimin lu director  alex huang director  please let me know if this will work for you . if so , i will need you to forward  me a copy of your resume .  regards ,  shirley crenshaw  administrative coordinator  enron research group  713 - 853 - 5290  email : shirley . crenshaw @ enron . com\",0\n\"Subject: re : returning you call  celeste ,  we shall match the tuition cost . we are very anxious to have gappy here at  enron  supporting ebs .  vince  celeste roberts  03 / 08 / 2000 06 : 49 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : returning you call  would you be willing to pay for this ? since he is a ph . d . and specifically  for your group , this should be your call . let me know if your business unit  agree to pick up this additional cost .  celeste  - - - - - - - - - - - - - - - - - - - - - - forwarded by celeste roberts / hou / ect on 03 / 08 / 2000  06 : 47 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  giuseppe andrea paleologo @ stanford . edu on 03 / 06 / 2000  03 : 23 : 24 pm  please respond to gappy @ stanford . edu  sent by : gappy @ stanford . edu  to : celeste roberts  cc :  subject : re : returning you call  ms . roberts , thanks for the quick reply ! i received the offer on thursday ,  and i  am very excited about joining enron this summer . my research group is  establishing a long term collaboration with dr . kaminski and dr . gibner , and i  hope to help foster this relationship this summer .  i would just like to discuss one issue that is very specific to my status of  international student . as an international student , i am required to enroll  part  time at stanford university during the summer quarter in order to be  considered  eligible for a summer internship ( \"\" optional practical training \"\" ) . the cost of  the part - time tuition will be approx . $ 2300 for this academic year . the past  summer , my employer ( at it would be of  course  very much appreciated ( given the notoriously precarious financial condition of  ph . d . students ) . yet , to make things clear , please rest assured that my  acceptance of your offer is not conditioned on your reply regarding this  issue ,  and that i intend to be at enron this summer .  all the best ,  giuseppe  - -  : : giuseppe a paleologo : : http : / / www . stanford . edu / ~ gappy\",0\n\"Subject: institutional investor journals profile update confirmation  thank you for updating your ii journals profile information . changes to your  user id , password and e - mail address have been made . please allow 24 hours  for any other changes you ' ve made to take effect in our system . here is the  profile information we have for you :  account number : 12973228  first name : vince  last name : kaminski  company name : enron corp  position : managing director  department :  address 1 : 1400 smith st eb 1962  address 2 :  city : houston  state : tx  zip code : 77002 - 7327  country : usa  phone : ( 713 ) 853 - 3848  extension :  fax : ( 713 ) 646 - 2503  foreign phone :  foreign fax :  email : vkamins @ enron . com  user id : vkaminski  password : italia\",0\n\"Subject: oral surgery  vince , anita and kevin :  i went to the dentist yesterday afternoon , and unfortunately , i am going to  have to have some oral surgery .  it is scheduled for 9 : 30 am on thursday the 21 st of september , so i will  probably  be out the rest of the day . hopefully , i will return on friday , the 22 nd if  all goes  well .  just wanted to let you know .  thanks !  shirley  * * * * * *  anita and kevin :  i will also be on vacation next wednesday , the 13 th for one day .  thanks !  shirley\",0\n\"Subject: re : shalesh  jim ,  i agree with you . it just burns your time and mine . i shall take care of it  when ravi comes back from vacation .  vince  from : jim fallon @ enron communications on 06 / 29 / 2000 06 : 38 pm  to : vince j kaminski / hou / ect @ ect @ enron  cc :  subject : re : shalesh  vince ,  ravi never said a word to me and should have closely coordinated with me -  otherwise he should have used his own name . i have a problem with ravi  acting in that manner . no one is questioning shalesh ' integrity but the  associate analyst program called me and stated that shalesh told them that i  had requested the move . if he did that he should not have used my name . i  am very sensitive to analysts moving within a rotation . it has happened to  me numerous times and i do not appreciate the disruption it can cause . if  you need shalesh for any reason then he will not be moving .  regards  jim  vince j kaminski @ ect  06 / 29 / 00 05 : 39 pm  to : jim fallon / enron communications @ enron communications , celeste  roberts / hou / ect @ ect , ravi thuraisingham / enron communications @ enron  communications  cc : vince j kaminski / hou / ect @ ect  subject : shalesh  jim ,  clarification regarding shalesh ' transfer to ebs .  the request to rotate shalesh out of research into ebs  came from ravi thuraisingham . my understanding was that it was  fully coordinated with you and i was more than happy to oblige .  shalesh is concerned that his integrity is being questioned and i can assure  you that he was not the instigator of the move .  my impression is that shalesh is doing a very good job and ravi is very happy  him . i shall be glad to keep him in the research group in his current role .  have a good 4 th of july .  vince\",0\n\"Subject: new project  vasant ,  vince and i spoke with gary hickerson and michelle cisneros about the  consultant ' s power plant model this afternoon . we will take their model ' s  interface and recode the calculation engine , incorporating useful insights  from the consultant . it help will be available  via gary ' s group . so i will spend the next 4 weeks working on this .  alex\",0\n\"Subject: re : suggestion : implementing var based on non - normal log - returns  simulations  vince , sorry , the files from that directory get deleted periodically . i  attached this file here .  rabi did some analysis related to implementation of correlated non - normally  ( rtdm - distributed )  variables . let ' s discuss later ?  tanya .  vince j kaminski  12 / 22 / 2000 05 : 58 pm  to : tanya tamarchenko / hou / ect @ ect  cc :  subject : re : suggestion : implementing var based on non - normal log - returns  simulations  tanya ,  i could not locate the file .  vince  tanya tamarchenko  12 / 07 / 2000 01 : 17 pm  to : vince j kaminski / hou / ect @ ect , rabi de / na / enron @ enron , jaesoo  lew / na / enron @ enron  cc :  subject : re : suggestion : implementing var based on non - normal log - returns  simulations  everybody ,  we were talking for a while about using non - normal distributions in the  monte - carlo simulations in our var model .  i put together some suggestion regarding this . the text is under  o : \\ _ dropbox \\ tanya \\ non _ normal _ logs . doc  look through this 3 page document , and let me know what you think , please .  tanya\",0\n\"Subject: henwood stuff and thoughts about valuation  did you guys get this ?  i was too interested in the conversation to interrupt with comments about  risk / return if the decision would be covered in rates , it is the  customers ' curves or equivalently the puc ' s curve .  i think if i were going to approach valuation in commodities where the  assumptions of black / scholes do not apply , i would start with the capm for  large industries in an area , use pro formas to translate this to utility  curves for the input commodities , and add the utility curves .  another issue : the factor that explains why enron is lowest bidder is its  role in the market . in the 1930 s , keynes argued that if most market  participants with long position were hedgers , futures prices would be higher  than spot ; if they were speculators or traders , future prices would be lower  than spot . traders must be compensated for holding the risk ; hedgers  ( including utilities and consumers ) are willing to pay a premium for the  certainty . consequently , enron traders have bigger bid / ask spreads and lower  bid prices .  just some random thoughts ,  michael  - - - - - original message - - - - -  date : 01 / 04 / 2001 10 : 41 am ( thursday )  from : \"\" heather mason \"\"  to : hq 3 . em 5 ( michael schilmoeller )  mark your calendar - tuesday january 23 , 2001 downtown houston hyatt hotel  henwood will be hosting a comprehensive ercot symposium on tuesday , january  23 , 2001 . a team of henwood regional power market specialists will be  presenting the latest analysis and  information to assist you in preparing for the new ercot restructured power  market , in addition to an anlysis of the issues now playing out in the wscc  markets . coffee and registration will  begin at 9 : 30 am and the program will run until 3 : 00 pm . lunch and snacks  will be provided .  agenda topics include :  * what will be the critical - success factors for qualified scheduling entities  operating in ercot ' s new wholesale & retail markets ?  * how will market restructuring impact mid to long - term wholesale prices ?  * what is the outlook for new generation ?  * what are the impacts of upcoming emission regulations on ercot ' s generation  resources ?  * what are the new analytical tools available to capture market uncertainty  impacts to your supply contracts and generation assets ?  * what are the restructuring lessons learned from the california experience  and the implications to ercot ?  in conjunction with this program , henwood will have a demonstration room  available to present its latest software applications and e - business  solutions . a nominal $ 75 registration fee is required  to reserve a space in the workshop .  for more information or to reserve your spot , please contact heather mason at  henwood : hmason @ hesinet . com or 916 / 569 - 0985 .  about henwood : henwood offers integrated business solutions , strategic  consulting , and innovative e - business applications to meet the challenges of  the restructured energy markets throughout  north america , australia , and europe , serving clients that include eight of  the ten top utilities in north america , in addition to energy services  providers and power marketers .\",0\n\"Subject: re : energy derivatives conference - may 29 , toronto  good morning amy :  vince kaminski will need the following :  an lcd projector to hook up to a lap tap for his presentation  he will have dinner with the conference organizers and speakers on the 29 th .  he will need 2 nights ( the 28 th and the 29 th ) hotel reservations .  he will send you an abstract shortly .  thanks and have a great day !  shirley crenshaw  713 - 853 - 5290  amy aldous on 03 / 31 / 2000 10 : 50 : 11 am  to : shirley . crenshaw @ enron . com  cc :  subject : re : energy derivatives conference - may 29 , toronto  ms . crenshaw ,  thank you for sending the bio so quickly . it ' s exactly what i was looking  for .  we are planning to compile the conference speakers ' papers for distribution  to the participants . while i will not need dr . kaminski ' s contribution for  several weeks , an abstract of his presentation as soon as possible would be  very useful to the conference organizers .  i will also need the following information :  - dr . kaminski ' s audio / video equipment requirements for his presentation  - will he be joining the conference organizers and speakers for dinner on  may 29 ?  - which nights will he be staying in toronto ? i will reserve a room at the  conference hotel  - any dietary restrictions or special requests  your help is much appreciated .  best wishes ,  amy  at 11 : 50 am 3 / 30 / 00 - 0600 , you wrote :  >  > amy :  >  > attached please find a short \"\" bio \"\" for dr . kaminski . please let me know  > if i can help further .  >  >  > ( see attached file : vincent kaminski bio . doc )  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  amy aldous , conference co - ordinator  centre for advanced studies in finance  university of waterloo  waterloo , on n 2 l 3 gl  tel : ( 519 ) 888 - 4567 ext . 5728  fax : ( 519 ) 888 - 7562  email : aaldous @ uwaterloo . ca  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *\",0\n\"Subject: re : resume ,  jinbaek ,  we shall invite you to an interview in houston .  vince  jinbaek kim on 10 / 23 / 2000 07 : 25 : 36 pm  to : vkamins @ enron . com  cc :  subject : resume ,  dear mr . kaminski ,  hi ,  i am a ph . d student at ieor department at u . c . berkeley .  thanks for your presentation today .  it gave me knowledge and interest in electricity markets ,  and your company .  as you mentioned in the presentation ,  i send a resume to give me opportunity to learn more  about your company .  i hope i can join the super saturday event .  jinbaek  - resume . doc\",0\n\"Subject: reminder  happy new year to all !  don ' t forget to get registered early for this year ' s conference . it  promises to be the best yet . the fun stuff is already organized and the  program looks to be the best that \"\" trail boss \"\" titman has yet produced .  notice the \"\" friendly encouragement \"\" ( translation discount in the  registration fee ) for early registration . the conference info and  registration form can be found at  happy new year and hope to see you in san antonio in april !  john  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: re : oracle tables which contain the position and curves information  for enron ' s var system  andreas ,  as we discussed today , i am sending you some information on how the positions  and curves  are stored in our database . in the enclosed file you ' ll find the list of  columns for 4 tables and  2 quarries as an example . 3 of these tables contain the positions  information , 1 table has the curves information .  ramesh ( who supports our var model from it side ) will send you the  description of these tables .  regards ,  tanya .\",0\n\"Subject: revised budget allocations  please disregard the previous allocations , because i forgot enroncredit . com !  here goes :  rac 20 %  uk power 15 %  uk gas 5 %  continental power 15 %  continental gas 3 %  global products 7 %  ebs 10 %  ees 10 %  enroncredit . com 15 %  that should do it .  - - - - - - - - - - - - - - - - - - - - - - forwarded by steven leppard / lon / ect on 08 / 24 / 2000  10 : 51 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  steven leppard  08 / 24 / 2000 10 : 46 am  to : dale surbey / lon / ect @ ect  cc : vince j kaminski / hou / ect @ ect , grant masson / hou / ect @ ect , stinson  gibner / hou / ect @ ect , steven leppard / lon / ect @ ect  subject : budget  hi dale  following discussions with vince , grant and stinson , we ' ve drawn up the  proposed budget . we ' re working on the basis that research group headcount  will grow to 8 in the near future .  business trips us : 8  business trips europe : 10  computer software and licences : gbp 10 , 000  office postage : gbp 350  employee recruitment fees : gbp 30 , 000 ( = 3 x 20 % x gbp 50 , 000 )  professional subscriptions and memberships and books : gbp 15 , 000  training courses : gbp 16 , 000 ( = 8 x gbp 2 , 000 )  conferences : gbp 8 , 000 ( = 4 x gbp 2 , 000 )  mobile phones : gbp 1 , 500 ( = 3 x gbp 500 = me + 2 floaters )  hardware : gbp 10 , 000 ( = laptops , workstations )  suggested allocation as follows . . .  rac 20 %  uk power 20 %  uk gas 5 %  continental power 20 %  continental gas 5 %  global products 10 %  ebs 10 %  ees 10 %  . . . unless you ' ve got any other views on this one ( i ' m happy to take advice  here ) .  vince has said you can give him a call if you want to discuss any of these  points further , but i ' m happy to field initial queries ( i ' ll have to get used  to it ! ) .  cheers ,  steve\",0\n\"Subject: re : projects i will be working on or assisting in  stinson , shalesh & martin will be on loan / attached to my group for the next  few months . this similar to the arrangement that i had originally at ebs .  ravi .\",0\n\"Subject: rtp project  mr huntington  we at the new power company are very interested in participating in this  conference . we are going through a major initiative to shed light on the  benefits of real - time pricing and determining the price elasticity of various  components of retail demand . kindly include us as participants in this  conference . sincerely ,  anoush farhangi  vice president , load research  new power company  713 . 853 . 9273\",0\n\"Subject: re : energy conference - sydney  chris ,  thanks for the invitation . i shall be glad to meet you and your family in  sydney at your home .  i am enclosing the draft of my part of the chapter . it ' s more than  preliminary but i hope  to improve it greatly over the weekend . i shall forward you a new version on  sunday evening  my time . grant is moving along on his part . i hope it reduces the penalty to  broken knee - caps .  i shall send you a longer message from home to give you an update on my  conversations  with eprm regarding the articles .  vince  \"\" chris strickland \"\" on 06 / 01 / 2000 07 : 45 : 53 am  please respond to \"\" chris strickland \"\"  to : \"\" vincejkaminski \"\"  cc : \"\" julie \"\"  subject : energy conference - sydney  hi vince ,  ?  just a friendly reminder that the hired guns are making their way up to  houston to visit with you and grant .  ?  i was reading the promotional material for the eprm conference here in july .  i wanted to invite you to dinner at my apartment on the evening between the  main conference and the post - conference seminars ( 18 th july ) . we have a  pretty spectacular view of the harbour here that you might enjoy .  ?  best regards .  ?  chris .  ?  dr chris strickland  ?  school of finance and economics , university of technology , sydney  financial options research centre , university of warwick , uk  ?  director , lacima consultants ltd  www . lacima . co . uk\",0\n\"Subject: re : loan documents  thanks for the kind words , vince . what a lovely way to start my monday !  molly  - - - - - original message - - - - -  from : kaminski , vince  sent : monday , april 02 , 2001 7 : 40 am  to : magee , molly  subject : re : loan documents  molly ,  thanks . you are the most dependable  person in enron .  vince  from : molly magee / enron @ enronxgate on 03 / 31 / 2001 04 : 27 pm  to : vince j kaminski / hou / ect @ ect , kenneth parkhill / na / enron @ enron  cc :  subject : loan documents  just wanted to reassure both of you that i had not forgotten to draft these  documents . i hope to have them complete some time during this next week and  will forward them for review .  thanks ,  molly  x 34804\",0\n\"Subject: fw : enron recruitment  vince : i ' m sure that you are already aware of this , but i wanted to forward it to you since this didn ' t come up in our meeting the other morning . . . .  molly  - - - - - original message - - - - -  from : koepke , gwyn  sent : tuesday , april 10 , 2001 1 : 20 pm  to : rtlambert @ mail . jhuwash . jhu . edu  cc : molly magee / hou / ect @ enron  subject : enron recruitment  dear ron ,  my boss , enron ' s chief international economist , is interested in talking with sais grads who might want to come to houston and do economics work . same drill as last time , looking for someone whose done the quant track but with excellent writing skills . i think i sent you a job description a few months back .  can you help identify some candidates , and send their resumes our way ? molly magee is our recruiting expert and she can help setup the interviews with maureen . maureen is still in london on secondment but is available to interview people of the phone .  thanks for your help .  gwyn\",0\n\"Subject: linux - - hit or miss ?  network world fusion focus : phil hochmuth  on linux  today ' s focus : will linux be a hit or miss on the corporate desktop ?  03 / 15 / 00  dear wincenty kaminski ,  today ' s focus : will linux be a hit or miss  on the corporate desktop ?  by phil hochmuth  so far this year , the buzz about linux in enterprise networks has  focused on servers and embedded systems , with the growth of linux  severs being most heralded . according to idc , a research firm based in  framingham , mass . , linux was the fastest - growing server operating  system last year , with a 93 % growth rate over the year before . linux  was the second most - shipped operating system in 1999 after windows nt ,  capturing 24 % of new licenses shipped .  as for the embedded market , linux has emerged as an ideal platform for  network appliances , because the system can be modified to handle  specialized , dedicated tasks very well . companies such as cobalt  networks , picazo and progressive systems have announced linux - based  appliances , ranging from web servers to pbxs to firewalls .  but what of the open source hacker \u0001 , s dream of \u0001 & linux on every desktop ? \u0001 8  sure , linux on the desktop has become more accessible than ever , with  colorful , shrink - wrapped boxes of caldera , red hat and corel linux now  available at places like compusa . however , analysts have said that  linux \u0001 , s growth in the enterprise will be limited to the macro and micro  areas of network servers and embedded operating systems .  according to idc , linux currently runs on only 4 % of u . s . desktops . the  hold microsoft windows has on the desktop market will remain strong ,  analysts say , despite such factors as microsoft \u0001 , s antitrust problems  and the surging popularity of linux .  even some linux executives are skeptical of their product \u0001 , s desktop  future . recently , suse ceo roland dyroff downplayed linux \u0001 , s future on  desktops . dyroff said , \u0001 & given the lack of applications available , we  really can ' t claim it as being competitive on the desktop yet . \u0001 8  a recent survey by survey . com gives more hope for linux desktops .  according to the survey of 1 , 640 enterprise network managers , open  source operating systems are used on 10 % of desktops , with the number  jumping to a surprising 23 % of enterprise desktops by 2002 .  despite the mix of numbers being thrown around , two important factors  that will determine the success of linux as an enterprise client  desktop are : a standardized , easy - to - use graphical user interface ( gui )  and available applications .  one company that is working to make linux more user friendly is palo  alto - based eazel , which is designing a next - generation file management  system and user interface to run on top of the linux kernel . according  to eazel \u0001 , s web site , the company \u0001 , s goal is to bring linux to the masses  and \u0001 & do it in a way that appeals to today ' s linux users and to mere  mortals . \u0001 8  the company was founded by a group of former apple executives , and is  allied with the gnome project , which has been doing extensive linux  desktop environment development for several years . eazel is due to have  a product out by the middle of this year . with an intuitive , icon - based  file management environment , eazel is hoping its user interface will be  an improvement over the two current linux guis , gnome and kde , and will  help standardized the look and feel of linux for \u0001 & regular \u0001 8 users . for  enterprise mangers who have already embraced linux on the server side ,  this development will be worth keeping an eye on .  on the applications side , several office productivity suites have been  available for some time , such as sun \u0001 , s staroffice suite and koffice for  the kde desktop . corel has also ported its office products , such as  wordperfect , over to linux to complement its own distribution of the  operating system . while there have been recent rumors ( started by linux  care vice president arthur tyde ) that microsoft is working on a port of  ms office to linux , microsoft officials deny this .  while linux may never supplant windows as the industry - standard desktop ,  there should be plenty of opportunity for linux pcs in enterprise nets  in the future .  to contact phil hochmuth :  - - - - - - - - - - - - - - - - - - - - - - - - -  phil hochmuth is a writer and researcher for network world , and a former  systems integrator . you can reach him at mailto : phochmut @ nww . com .  for related links - - click here for network world ' s home page :  http : / / www . nwfusion . com  staroffice software from sun  http : / / www . sun . com / staroffice  corel linux os  http : / / www . corel . com / freedom / freedom . htm  eazel  http : / / www . eazel . com  gnome - - the gnu network object model environment  http : / / www . gnome . org  koffice - - the integrated office suite for kde , the k desktop  environment  http : / / koffice . kde . org /  cobalt networks , inc .  http : / / www . cobaltnetworks . com  progressive systems  http : / / www . progressive - systems . com  picazo  http : / / www . picazo . com  other linux - related articles from network world :  active directory upgrade requires strong game plan , network world ,  03 / 13 / 00  subscription services  to subscribe or unsubscribe to any network world e - mail newsletters ,  go to :  to change your email address , go to :  subscription questions ? contact customer service by replying to this  message .  other questions / comments  have editorial comments ? write jeff caruso , newsletter editor , at :  mailto : jcaruso @ nww . com  for advertising information , write jamie kalbach , account executive ,  at : mailto : jkalbach @ nww . com  network world fusion is part of idg . net , the idg online network .  it all starts here :  http : / / www . idg . com  copyright network world , inc . , 2000\",0\n\"Subject: security question  dear guys  having been out of the office for a couple of days , i ' ve found myself the  victim of theft ( again ) . this time my desk drawer key has been stolen from  its \"\" hiding place \"\" under my telephone . i * always * lock my drawers and keep  the key in the same place , but on arriving in the office today i found the  drawers unlocked , and the key missing . although there ' s nothing sensitive on  or around my desk , i ' m concerned about the security implications of someone  sniffing around the office in this manner . i also found the papers on my  desk extensively reshuffled last week .  last year , in our old office , i had my only two real options books stolen  from among the many and varied books on my desk . that couldn ' t have been a  random theft , and i fear this isn ' t either . i can ' t understand who ' d be so  interested in a research guy ' s belongings !  can we ask security to check their surveillance footage for any suspicious  activity around my desk ?  cheers ,  steve\",0\n\"Subject: position  dear dr . kaminski  my name is jaesoo lew and i am referred by dr . wayne lee .  currently i ' ve been working at aquila energy in kansas city as an pricing  analyst since july 2000 . since then , i have developed a natural gas storage  valuation model applying the swing options ( forest method ) pricing approach .  the price processes would be considered critical for the storage valuation  since a trinomial forest is required to value storage . also the c + +  programming using excel dll has been developed , too .  i attached my resume to this message for your consideration and am looking  forward to talking about an opportunity at enron .  my home phone number is 913 - 649 - 0578 , dr . kaminski , i will wait your call in  this week as dr . lee informed me . if possible , please let me know your  expected calling day through the mail . i appreciate your consideration .  thank you very much .  sincerely ,  jaesoo lew  get your private , free e - mail from msn hotmail at http : / / www . hotmail . com .  share information about yourself , create your own public profile at  http : / / profiles . msn . com .  - vitae 2 . doc\",0\n\"Subject: internal guest access to enrononline  vince ,  following is an internal guest id and password which will allow you view only  access to enrononline .  please note , the user id and password are case sensitive .  user id : eol 59545  password : welcome !  if you have any difficulties logging in , please contact the enrononline  helpdesk at 713 - 853 - help ( 4357 )  with any questions .\",0\n\"Subject: re : hello from vince kaminski at enron  shmuel ,  let ' s see if we can either rearrange the seminar speakers  or change the date of our visit to the campus . ashley baxter , our coordinator  is very efficient and  got a faculty room for a presentation on monday morning on the 16 th .  vince  \"\" shmuel oren \"\" on 08 / 29 / 2000 05 : 37 : 33 pm  to :  cc :  subject : re : hello from vince kaminski at enron  dear vince . i spoke too soon . apparently the seminar slot on the 16 was  already filled . i will see if i can switch the speaker for that week to the  following week . in any case we are on for dinner on the 16 .  shmuel s . oren , professor  dept . of industrial engineering  and operations research  4117 etcheverry hall  university of california  berkeley , ca 94720 - 1777  e - mail : oren @ ieor . berkeley . edu  phone : ( 510 ) 642 - 1836 or 5484  fax : ( 510 ) 642 - 1403  - - - - - original message - - - - -  from :  to :  cc : ;  sent : tuesday , august 29 , 2000 5 : 01 pm  subject : re : hello from vince kaminski at enron  >  > shmuel ,  >  > the date of our trip to berkeley has been set . it will be october 16 th and  > 17 th  > ( monday and tuesday ) .  >  > i shall be glad to make a presentation on energy derivatives markets  > ( development of the markets in the us and europe , valuation difficulties ,  > enron ' s role  > in developing the forward markets for natural gas and electricity ) .  >  > please , let me know if this topic would be of interest to you . if this is  > the  > case , i shall follow with a title and an abstract .  >  > by the way , are you free for dinner on monday ?  >  > vince  >  >  >  >  >  >  > \"\" shmuel oren \"\" on 08 / 24 / 2000 08 : 59 : 38 am  >  > to : \"\" vince j kaminski \"\"  > cc :  > subject : re : hello from vince kaminski at enron  >  >  > great . our seminars are 3 : 30 to 5 pm . if it works for you please send me a  > title and abstract .  > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / /  > shmuel s . oren , professor  > dept . of industrial engineering  > and operations research  > 4117 etcheverry hall  > university of california  > berkeley , ca 94720 - 1777  > e - mail : oren @ ieor . berkeley . edu  > phone : ( 510 ) 642 - 1836 or 5484  > fax : ( 510 ) 642 - 1403  > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / /  >  > - - - - - original message - - - - -  > from : \"\" vince j kaminski \"\"  > to : \"\" shmuel oren \"\"  > cc : \"\" vince j kaminski \"\" ; \"\" ashley baxter \"\"  >  > sent : thursday , august 24 , 2000 9 : 58 am  > subject : re : hello from vince kaminski at enron  >  >  > >  > >  > > shmuel ,  > >  > > thanks for the message . i am working with our recruiter , ashley baxter ,  > > to finalize the date of the trip . i shall shoot for october the 23 rd  > > if this date works for the rest of our team .  > >  > > vince  > >  > >  > >  > >  > >  > >  > > \"\" shmuel oren \"\" on 08 / 23 / 2000 11 : 46 : 19 am  > >  > > to : vince j kaminski / hou / ect @ ect  > > cc :  > > subject : re : hello from vince kaminski at enron  > >  > >  > >  > > dear vince .  > > i sent you a reply earlier this month but i haven ' t heard from you about  > the  > > date of your visit . our department has a seminar every monday . if you  can  > > schedule your visit on a monday i would like to invite you to give a  > seminar  > > which will be attended by many of our graduate students and faculty and  > will  > > give you an opportunity to tell them about your program . with sufficient  > > lead - time i can advertise the seminar in the hass school to their  > financial  > > engineering students .  > > shmuel .  > > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / /  > > shmuel s . oren , professor  > > dept . of industrial engineering  > > and operations research  > > 4117 etcheverry hall  > > university of california  > > berkeley , ca 94720 - 1777  > > e - mail : oren @ ieor . berkeley . edu  > > phone : ( 510 ) 642 - 1836 or 5484  > > fax : ( 510 ) 642 - 1403  > > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / /  > >  > > - - - - - original message - - - - -  > > from :  > > to : ; ;  > >  > > sent : tuesday , august 08 , 2000 10 : 59 am  > > subject : hello from vince kaminski at enron  > >  > >  > > > shmuel ,  > > >  > > > i hope you remember me . i visited you together with aram sogomonian , a  > > > good friend of mine , a few years ago . i am currently responsible ,  among  > > > other things , for recruiting graduates with finance and / or technical  > > > backgrounds at the university of berkeley . i would be glad to give you  > a  > > > call and talk more about the details of our program . my colleague ,  > > > ashleybaxter , from the analyst / associate program at enron would join  me  > > > as well .  > > >  > > > i am sending you a copy of the brochure about the analyst / associate  > > > program .  > > >  > > > vince kaminski  > > >  > > >  > > > vincent kaminski  > > > managing director - research  > > > enron corp .  > > > 1400 smith street  > > > room ebl 962  > > > houston , tx 77002 - 7361  > > >  > > > phone : ( 713 ) 853 3848  > > > fax : ( 713 ) 646 2503  > > > e - mail : vkamins @ enron . com  > > >  > >  > >  > >  > >  > >  > >  >  >  >  >  >  >\",0\n\"Subject: bogdan szopa - cv  vince :  can you give me some background on bogdan ?  many thanks . shawn  - - - - - - - - - - - - - - - - - - - - - - forwarded by shawn cumberland / enron _ development on  02 / 12 / 2001 08 : 12 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  awenda 2000 @ cs . com on 02 / 11 / 2001 11 : 26 : 12 pm  to : shawn . cumberland @ enron . com  cc :  subject : bogdan szopa - cv  dear shawn ,  it was a pleasure talking to you today . i will call you upon my return from  europe . in the meantime we will stay in touch via e - mail .  enclosed is my curriculum vitae .  best regards ,  bogdan m . szopa  - bogdan res . . doc\",0\n\"Subject: re : carl tricoli  carl ,  depends if it is more like financial or insurance type hedging .  i shall leave it to vasant to decide .  vince  carl tricoli @ enron  04 / 05 / 2000 11 : 19 am  to : vince j kaminski / hou / ect @ ect  cc : zimin lu / hou / ect @ ect , vince j kaminski / hou / ect @ ect , vasant  shanbhogue / hou / ect @ ect , christopher a helfrich / hou / ect @ ect  subject : re : carl tricoli  vince , thank you for the response . in the interim , we met with vasant  shanbhogue yesterday and explained the deal and what we needed . should  vasant continue to work on it , or would you still like us to loop in zimin  lu ?  vince j kaminski @ ect  04 / 05 / 2000 10 : 11 am  to : zimin lu / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , carl tricoli / corp / enron @ enron  subject : carl tricoli  zimin ,  carl tricoli ( 5 - 8958 ) will call you regarding help on ethanol ( hedging ) .  vince\",0\n\"Subject: interview schedule  good morning :  i am attaching dr . valverde ' s interview schedule for thursday , february 1 .  when he arrives at the enron bldg . ( 1400 smith street ) , go to the  security desk and ask for me . they will call and i will meet dr . valverde  at the elevator on our floor .  we look forward to his visit on thursday .  regards ,  shirley crenshaw  administrative coordinator  enron research group  713 - 853 - 5290  email : shirley . crenshaw @ enron . com\",0\n\"Subject: re : super saturday , june 3 , 2000  dave ,  i will be glad to participate .  vince  enron north america corp .  from : david w delainey 05 / 23 / 2000 02 : 11 pm  sent by : kay chapman  to : sally beck / hou / ect @ ect , raymond bowen / hou / ect @ ect , wes  colwell / hou / ect @ ect , janet r dietrich / hou / ect @ ect , jeff donahue / hou / ect @ ect ,  w david duran / hou / ect @ ect , mark e haedicke / hou / ect @ ect , gary  hickerson / hou / ect @ ect , mike jakubik / hou / ect @ ect , scott  josey / corp / enron @ enron , john j lavorato / corp / enron @ enron , rodney  malcolm / hou / ect @ ect , george mcclellan / hou / ect @ ect , julia murray / hou / ect @ ect ,  jere c overdyke / hou / ect @ ect , david oxley / hou / ect @ ect , kevin m  presto / hou / ect @ ect , brian redmond / hou / ect @ ect , jeffrey a  shankman / hou / ect @ ect , john thompson / lon / ect @ ect , james a ajello / hou / ect @ ect ,  edward ondarza / hou / ect @ ect , vince j kaminski / hou / ect @ ect  cc : patti thompson / hou / ect @ ect , marsha schiller / hou / ect @ ect , shirley  tijerina / corp / enron @ enron , christy chapman / hou / ect @ ect , tina  rode / hou / ect @ ect , janette elbertson / hou / ect @ ect , stella l ely / hou / ect @ ect ,  nicole mayer / hou / ect @ ect , tonai lehr / corp / enron @ enron , kimberly  hillis / hou / ect @ ect , ana alcantara / hou / ect @ ect , yolanda ford / hou / ect @ ect ,  carolyn george / corp / enron @ enron , donna baker / hou / ect @ ect , rhonna  palmer / hou / ect @ ect , felicia doan / hou / ect @ ect , katherine benedict / hou / ect @ ect ,  barbara lewis / hou / ect @ ect , terrellyn parker / hou / ect @ ect , dusty warren  paez / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , nicki daw / na / enron @ enron , kay  chapman / hou / ect @ ect  subject : super saturday , june 3 , 2000  during our off - site at columbia lakes recently , we identified areas in ena  where significant gaps exist that need filling at the analyst and associate  level . we have scheduled an off - cycle super saturday on june 3 , 2000 and i  would like your participation as an interviewer . we will need approximately  25 - 30 interviewers to fill approximately 30 associate & analyst positions . i  am counting on everyone making themselves available on the third to  facilitate this priority action item .  ted bland will be forwarding information concerning the event to each of you  early next week .  thank you for your participation .  dave\",0\n\"Subject: alp presentation  hi vince ! !  i ' ll take care of the invitations and i am planning to be at the concert on saturday !  thanks ! !  - - christie .  - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 05 / 01 / 2001 09 : 14 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  05 / 01 / 2001 04 : 55 pm  to : christie patrick / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , kenneth parkhill / na / enron @ enron , shirley crenshaw / hou / ect @ ect , melinda mccarty / corp / enron @ enron  subject : alp presentation  christie ,  shirley reserved room 49 cl for monday 4 : 00 p . m . presentation .  can you issue the formal invitation to our guests with the game / dinner  details ? i don ' t have all the details regarding the enron field  box and time . i am out most of the day on wednesday but we can  discuss the details on thursday .  hope to see you on saturday at the concert .  vince\",0\n\"Subject: re : tanya ' s vacation  everybody ,  fyi : i will be out tomorrow 3 / 10 / 00 and all next week ( 3 / 13 - 3 / 17 ) on vacation .  grant and vincent can handle urgent matters while i am away .  tanya .\",0\n\"Subject: interviews for gary hickerson - wednesday , november 1 , 2000  mike / vince :  your schedule to interview nancy beaty for gary hickerson ' s position is  below :  wednesday , november 1  mike roberts 4 : 30 pm ebl 938  vince kaminski 5 : 00 pm ebl 938  shirley\",0\n\"Subject: initial meeting of the ena analyst and associate roundtable august  18 , 2000  just a reminder we will have the initial meeting of the ena / aa roundtable on  friday at 9 : 00 am in room eb 30 cl . again , the agenda is as follows :  discussion of prc  immediate and future aa needs by business unit  skill shortages  campus and off - cycle recruitment  mottom 10 % management  projecting aa needs from core schools for summer 2001 intake  existing talent in specialist roles who should be in aa program  ideas / suggestions on how we improve the program / ena retention  your groups need to be represented and if you can ' t attend please send  someone to represent you . those of you out of town need to call me if you  have any input . thanks again for all your support . ted\",0\n\"Subject: re : hello guys  john ,  thanks . i have reserved march the 2 nd for the meeting .  vince  \"\" john d . martin \"\" on 08 / 18 / 2000 02 : 02 : 31 pm  to : vkamins @ enron . com , sgibner @ ect . enron . com  cc :  subject : hello guys  vince and stinson ,  just got a copy of the attached paper and thought it may have some interest  for you guys .  on another note , i am putting together a workshop in the spring on the new  economy and business education and will be seeking out some enron network  people to join in the discussion ( 2 - hours on friday march 2 nd ) . i ' ll let  you know more as we work through the details . the idea is to \"\" brainstorm \"\"  about the new world you guys work in every day and its implications for  what we should be doing . hope this is interesting to you and that you ' ll  want to spend the day with us .  take care and enjoy the weekend .  john  - risk . pdf  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: re : volume ii of the technical corner collection  sam ,  yes , let ' s omit the guys who left the company , but we can include  the summer interns .  vince  enron north america corp .  from : william smith @ enron 01 / 09 / 2001 01 : 56 pm  to : vince j kaminski / hou / ect @ ect  cc : mike a roberts / hou / ect @ ect  subject : re : volume ii of the technical corner collection  vince ,  sounds good ! it will take two or three days for me to strip out , reformat ,  and assemble the kaminski columns ( since we didn ' t do this last year , i ' m  guessing you mean all columns since the beginning ) , so i envision us being  ready with the completed set the first part of next week . i assume that you  would like me to omit those people who have moved on ?  also , on page three of the first volume , you had written an introduction . i  have updated the content for volume two , but would you perhaps like to do a  new one ?  sam  vince j kaminski @ ect  01 / 09 / 2001 01 : 43 pm  to : william smith / corp / enron @ enron  cc : vince j kaminski / hou / ect @ ect , mike a roberts / hou / ect @ ect  subject : re : volume ii of the technical corner collection  sam ,  this is a partial list of people to whom i would like to send the volumes :  volume 1 & 2  winokur ( enron board member , shirley has his address )  jeff skilling  ken lay  mark frevert  greg whalley  rick buy  jeff shankman  john lavorato  dave delainey  i shall write the cover letter .  also , we can add additional volume for kaminski ' s columns ( just 10 copies ) ,  including bios and my contributions .  i would like to show the depth of talent we have in the group .  vince  enron north america corp .  from : william smith @ enron 01 / 09 / 2001 01 : 07 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : volume ii of the technical corner collection  vince ,  i have successfully integrated martin ' s article into volume ii and am  following mike ' s instructions for reproduction . i ' m also having some  additional volume i ' s printed , too . would you mind disposing of the other  set i gave you ? i wouldn ' t want things to get confused . also , i ' m doing 20  volume i ' s and 60 volume ii ' s . please let me know how many you personally  need and i will deliver them to your office .  thank you ,  sam\",0\n\"Subject: re : real options  vince ,  if you take a cab , ask them to take you to the college of business  building at the corner of 21 st and speedway . the main entrance to the  business school is on speedway , across from the old gymnasium . come in the  main entrance , which has a large , glass structure , and you will be on the  second floor . go to your left and ride up the first set of escalators to  the third floor . when you step off of the escalators , you ' ll be facing  north and continue in that direction through two sets of glass doors into  the northern side of the building . this is where most faculty offices are  found . my office is 3 . 218 , which is in the northwest corner of the  building .  if you have any problems , you should be able to ask directions from  most anyone in the halls . i will look for you around 11 : 00 on thursday , and  will be happy to provide any other transportation that you need . please let  me know if you have any other questions .  jim  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : tuesday , may 02 , 2000 9 : 23 am  to : jim . dyer @ bus . utexas . edu  cc : vince . j . kaminski @ enron . com ; vkaminski @ aol . com ;  shirley . crenshaw @ enron . com  subject : re : real options  jim ,  i can take a cab or get a rental car from the airport ( thanks for your  kind offer ) .  i shall appreciate , however , if you could drop me off at the hotel before  dinner .  the time allocation for my speech is about right . i think i shall need  about 90  minutes .  please let me know where we can meet on thursday . i shall be at an  off - site  on wednesday but you can reach me on my cell phone ( 713 410 5396 )  and by sending a cc message to my aol address : vkaminski @ aol . com .  i look forward to meeting you .  vince  jim dyer on 05 / 01 / 2000 01 : 42 : 44 pm  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc : sheridan titman  subject : re : real options  vince ,  i could pick you up at the airport , or you could rent a car and come  to campus . i have made tentative plans for us to go to lunch with some  other faculty between 11 : 30 and 12 : 00 , and then you would have some time to  visit with sheridan and perhaps with some other faculty members as well  between lunch and my class .  sheridan and a guest speaker from his class , suresh sundaresan from  columbia , will be joining us for dinner . i could provide transportation to  your hotel , and pick you up for dinner as well if you consider that to be  the most convenient alternative .  i will have a pc available in the classroom , with office 2000 and  windows nt . you could use powerpoint with no difficulty from that machine ,  if that ' s most convenient . you could simply email the presentation , and i  would have it for you if you prefer .  how much time would you like ? i would like to reserve about 30  minutes at the end for a general discussion of issues related to real  options , and about 30 minutes at the beginning of class for some remarks  regarding the final assignment and a class evaluation by the students  ( which  is required for all classes ) . at some point , we should take a brief break ,  so that would leave approximately 1 . 5 to 2 hours for your presentation if  you would like that flexibility . otherwise , i could take up the \"\" slack \"\" .  i look forward to seeing you on thursday .  jim  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : friday , april 28 , 2000 11 : 21 am  to : jim . dyer @ bus . utexas . edu  cc : vince . j . kaminski @ enron . com ; vkaminski @ aol . com  subject : re : real options  jim ,  i am scheduled to arrive in austin on may 4 at 10 : 32 a . m .  i shall be glad to join you and a group of your colleagues for lunch .  i am flying back to houston friday morning and we can meet for dinner  after  the class .  i shall have a power point presentation on my pc . i can also  prepare a set of transparencies if this is more convenient for you .  vince  jim dyer on 04 / 27 / 2000 05 : 44 : 51 am  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc : sheridan titman  subject : real options  vince ,  i am traveling at this time , attending a nsf meeting in washington .  however , i wanted to touch base regarding plans for your presentation in my  class on real options next thursday ( may 4 ) . as you recall , the class is  from 3 : 30 to 6 : 30 , and you could plan to take a significant part of that  time for your presentation . sheridan titman has agreed to join us after  his  class at about 6 : 00 for a 30 minute \"\" panel discussion \"\" with the students on  issues related to real options in practice . l  i am not sure about your travel plans , but we would be happy to plan  lunch on thursday with several of my colleagues . i would also be delighted  to be your host for dinner on thursday night if that is convenient for you .  i ' ll be back in my office on monday , and will look forward to  hearing from you .  jim  james s . dyer  fondren centennial chair in business  department of management science and information systems  cba 5 . 202  the university of texas at austin  austin , texas 78712 - 1175  email : j . dyer @ bus . utexas . edu  telephone : 512 - 471 - 5278  fax : 512 - 471 - 0587\",0\n\"Subject: re : efa meetings  tom ,  thanks for your message .  i shall be glad to attend the meeting ( of course a lot may happen between  now and then and we may have many unexpected developments  in a company as dynamic as enron ) .  i want to get back to you at some point with comments on your paper .  vince  tom arnold on 07 / 03 / 2000 05 : 19 : 48 pm  to : vkamins @ enron . com  cc :  subject : efa meetings  hello vince ,  a colleague and i are hoping to have a panel discussion on energy  securities for the coming eastern finance association meetings ( april  25 - 28 , 2001 in charleston , south carolina ) . i was wondering if you or  someone you know at enron would be interested in participating in such a  meeting . i realize that you may not be able to plan this far in advance  and would certainly not be offended in the least if you cannot participate .  we already appreciate you taking time out of your schedule this past  semester to visit lsu .  i hope all is going well and wish you continued success in your ventures ,  tom arnold\",0\n\"Subject: sfa licenses  iris :  i forwarded the information to donna lowry in our compliance dept . however ,  i am afraid she had bad news .  enron would sponsor the renewals , but the us securities group does not  recognize uk securities exams without further testing here in the us .  she said she would get back with you and explain it in greater detail . but ,  from what i understand , you will need to take some exam here before renewing .  when you hear from her let me know .  shirley\",0\n\"Subject: year end 2000 performance feedback  note : you will receive this message each time you are selected as a reviewer .  you have been selected to participate in the year end 2000 performance  management process by providing meaningful feedback on specific employee ( s ) .  your feedback plays an important role in the process , and your participation  is critical to the success of enron ' s performance management goals .  to complete requests for feedback , access pep at http : / / pep . corp . enron . com  and select perform review under performance review services . you may begin  providing feedback immediately and are requested to have all feedback forms  completed by friday , november 17 , 2000 .  if you have any questions regarding pep or your responsibility in the  process , please contact the pep help desk at :  houston : 1 . 713 . 853 . 4777 , option 4  london : 44 . 207 . 783 . 4040 , option 4  email : perfmgmt @ enron . com  thank you for your participation in this important process .  the following is a cumulative list of employee feedback requests with a  status of \"\" open . \"\" once you have submitted or declined an employee ' s request  for feedback , their name will no longer appear on this list .  review group : enron  feedback due date : nov 17 , 2000  employee name supervisor name date selected  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  andrews , naveen c rudi c zipter oct 31 , 2000  baxter , ashley david davies nov 02 , 2000  campos , hector o peyton s gibner nov 06 , 2000  carson , richard l richard b buy oct 30 , 2000  crenshaw , shirley j wincenty j kaminski oct 26 , 2000  gorny , vladimir theodore r murphy ii nov 02 , 2000  kindall , kevin vasant shanbhogue oct 30 , 2000  lamas vieira pinto , rodrigo david port oct 31 , 2000  raymond , maureen j wincenty j kaminski nov 02 , 2000  supatgiat , chonawee peyton s gibner oct 27 , 2000  tamarchenko , tanya v vasant shanbhogue oct 26 , 2000  villarreal , norma e sheila h walton oct 26 , 2000  walton , sheila h david oxley oct 27 , 2000  yaman , sevil vasant shanbhogue oct 27 , 2000  yuan , ding richard l carson oct 31 , 2000\",0\n\"Subject: iv for rama gatiganti rm fifth floor se 5001  interview schedule  16 . 30 - 17 . 00 vince kaminski & anjam ahmad  17 . 00 - 17 . 30 ben parsons  17 . 30 - 18 . 00 stephen leppard\",0\n\"Subject: marketpoint business plan summary  greg ,  e - commerce related proposal from dale nesbitt .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 05 / 16 / 2000  10 : 02 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" dale nesbitt \"\" on 04 / 06 / 2000 01 : 47 : 15 am  to :  cc :  subject : marketpoint business plan summary  vince :  thanks very much for your interest in our marketpoint product , and thanks  for the hour you gave me this morning . as promised , i am enclosing our  executive summary and first chapter from our business plan for you to take  forward to your management as a prospective enron - marketpoint investment  collaboration . i want to reiterate that should enron elect to be the lead  investor here , you will be exclusive in your industry if you want . if enron  wants to be the lead and ensure the entire second round of resources we  need , we would not offer and investment opportunity to other trading  companies , pipelines , or electrics until the third or subsequent rounds and  then only with your participation as a marketpoint board member . i am aware  you have coinvested with sap in the past and that you might want to coinvest  with them again . i presume you would not have a problem with  non - competitors such as epri , our management consulting service provider  partner , or our vc partner ( but i would want guidance from you in this  arena ) . i think you would find our vc partner very suitable and very  attractive . they have done several interesting energy and trading plays ,  and they would provide good management skills i believe . i hope we can move  forward together . i am looking forward to a positive response . thanks  again and best regards .  dale nesbitt  ps : you might hear from drew ries of your investments group . i spoke with  him after speaking with you about many of the same issues .  - longexecsum . doc\",0\n\"Subject: re : invitation - whartonetevent - apr 20 / plsrsvp  hi michael !  sorry i will be unable to attend ! i believe both vince and i are previously  committed .  thanks !  - - christie .\",0\n\"Subject: re : f / u to dr . kaminski @ enron from iris mack  hi again ,  here is the second document :  2 . the second word document describes a hybrid derivatives structure i i  workded on at bnp paribas . it has applications to the energy industry .  regards ,  iris  _ _ _ _ _ _ _  get more from the web . free msn explorer download : http : / / explorer . msn . com  - real options business specs , part i . doc\",0\n\"Subject: re : hi ,  jinbaek ,  great , i look forward to working with you .  please , call me during the next few days  ( 713 ) 853 3848 and we can chat about the projects .  please , contact molly magee to talk about the first day  orientation program . her e - mail address  is molly . magee @ enron . com , and her phone number is  ( 713 ) 853 - 4804 .  vince  - - - - - original message - - - - -  from : jinbaek kim @ enron [ mailto : imceanotes - jinbaek + 20 kim + 20 + 3 cjinbaek + 40 ieor + 2 eberkeley + 2 eedu + 3 e + 40 enron @ enron . com ]  sent : sunday , may 20 , 2001 8 : 07 pm  to : kaminski , vince j  subject : hi ,  dr . kaminski  how are you ?  the process for starting summer work is going well ,  and there will be no problem we start work  on may 30 .  i got a place to live , and reserved a flight .  i ' m going to leave for houston on may 29  ( expected time to arrival is around noon )  i am very much excited to have opportunity  to join the project making an exchange platform .  i think it ' s time i ' d better remind you  of scheduling a meeting with me ,  sometime on may 30 .  i hope you let me know what to to  after i arrive at houston .  and please let me know if you have anything  you think i prepare , to get better outcome  from the summer work .  if you give me a brief on the work ,  it would be a great help for me to decide  which material i should carry from here to houston .  i look forward to the date we meet ,  warm regards ,  jinbaek  jinbaek kim  ph . d candidate  dept . of industrial engineering and operations research  u . c . berkeley  http : / / www . ieor . berkeley . edu / ~ jinbaek  go bears !  : \"\" ' . _ . . - - - . . _ . ' \"\" ; ` . . ' . ' ` .  : a a : _ _ . . . . . _  : _ . - 0 - . _ : - - - ' \"\" \"\" ' \"\" - . . . . - - ' \"\" ' .  : . ' : ` . : ` , ` .  ` . : ' - - ' - - ' : . ' ; ;  : ` . _ ` - ' _ . ' ; . '  ` . ' \"\" ' ;  ` . ' ;  ` . ` : ` ;  . ` . ; ; : ;  . ' ` - . ' ; : ; ` .  _ _ . ' . ' . ' : ; ` .  . ' _ _ . ' . ' ` - - . . _ _ _ . _ . ' ; ;  ` . . . . . . ' . ' ` ' \"\" \"\" ' ` . ' ; . . . . . . - '  ` . . . . . . . - ' ` . . . . . . . . '\",0\n\"Subject: re : i am zhendong  sure thing !  - - - - - original message - - - - -  from : kaminski , vince  sent : thursday , april 12 , 2001 3 : 21 pm  to : molly magee / hou / ect @ enron  cc : gibner , stinson ; crenshaw , shirley  subject : i am zhendong  molly ,  we would like to hire this person for the summer ( standard offer ) .  thanks .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 12 / 2001  03 : 22 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  zhendong xia on 04 / 11 / 2001 09 : 14 : 01 pm  to : vince . j . kaminski @ enron . com  cc :  subject : i am zhendong  hi , dr . kaminski :  i am zhendong , the student of dr . deng . i think dr . deng has sent my  resume to you . i am very happy to have an opportunity to work with you  this summer .  i am a student in both ms qcf and ph . d eda programs in georgia tech  now . i plan to find a job in industry instead of academic after my  graduation . so i intend to do internship during the process of prusuing my  degree to acquire some experience for my future career .  i hope to start on 5 / 14 / 2001 and end on 8 / 17 / 2001 .  thanks a lot .  zhendong xia  georgia institute of technology  school of industrial and systems engineering  email : dengie @ isye . gatech . edu  dengie @ sina . com  tel : ( h ) 404 - 8975103  ( o ) 404 - 8944318\",0\n\"Subject: re : working gas price model  vince -  i have a simplified version of brad ' s model in mind .  the \"\" no arbitrage \"\" condition equates trading margins across the country .  costs of transmission rise with congestion on the network . wellhead supply is  almost completely price - elastic , while burner - tip demand is almost  completely price inelastic . storage is rationalized as a perpetual call  option .  the least time - variant parameters are the costs of injecting and withdrawing  gas from storage to the pipeline , followed by the costs of delivering gas  from the wellhead to the pipeline . the intermediate - variant parameters are  the capacity - dependent costs paid to the pipeline ( above shrinkage ) for  transmission . the most time - variant parameters are the trading margins and  the valuations of the storage option .  there are 8 parameters to be estimated at each major node of the betwork .  they are identifiable in either of two straightforward ways : using a short  time series of the last 3 days prices based on the assumed variability  mentioned above , or point - estimates ( \"\" calibrations \"\" ) using only today ' s data  based on a node - based model of competition between pipelines where pipes with  the same region of origination , albeit markedly different terminus , price  versus capacity similarly , \"\" competing \"\" for outflows .  i will write this up for you in scientific word and present it to you at your  earliest convenience .  clayton\",0\n\"Subject: june 21 - 22 retail electricity conference  dear workshop participant :  i hope you will be able to join us for the conference on \"\" retail  participation in competitive power markets \"\" to be held at the littlefield  conference center , stanford university , on june 21 - 22 , 2001 . conference  attire will be business casual .  the meeting will begin on thursday morning , june 21 , at 9 : 00 a . m . and will  conclude by 5 : 00 p . m . on friday , june 22 . a continental breakfast will be  available in the meeting room each morning beginning at 8 : 30 a . m .  please visit the \"\" june 21 - 22 \"\" meeting under  for a description of the meeting and some information about hotels .  please help us in our planning by using the form there to respond back to  emf about your participation . we have listed potential participants and  planned presentations based upon previous messages . please update me with  any additional presentations or changes in existing presentations .  i look forward to seeing you in june . in the interim , please do not  hesitate to call me or email me if you have questions or suggestions  regarding this workshop .  hill huntington  hillard g . huntington  emf - an international forum on  energy and environmental markets voice : ( 650 ) 723 - 1050  408 terman center fax : ( 650 ) 725 - 5362  stanford university email : hillh @ stanford . edu  stanford , ca 94305 - 4026  emf website : http : / / www . stanford . edu / group / emf /\",0\n\"Subject: re : var meetings in houston  shirley ,  do you think we can get another room with better speaker phone ?  or , may be we can get better speaker phone ?  tanya  viacheslav danilov  04 / 19 / 2001 12 : 58 pm  to : tanya tamarchenko / hou / ect @ ect  cc : stig faltinsen / eu / enron @ enron , kirstee hewitt / lon / ect @ ect  subject : var meetings in houston  hi tanya ,  in my view it is very good if stig and kirstee are involved in your var meetings . therefore , i think it is very useful for them to call houston .  could we get a little bit better equipment to allow them to hear everything well ?  many thanks ,  slava  - - - - - - - - - - - - - - - - - - - - - - forwarded by viacheslav danilov / lon / ect on 19 / 04 / 2001 12 : 55 - - - - - - - - - - - - - - - - - - - - - - - - - - -  stig faltinsen @ enron  19 / 04 / 2001 16 : 23  to : viacheslav danilov / lon / ect @ ect  cc : kirstee hewitt / lon / ect @ ect  subject : var meetings in houston  hi slava ,  kirstee and i find it useful to listen in on the var meetings in houston on wednesdays .  however , it is very difficult to follow the discussion due to a practical problem : we hear little or nothing at times .  a possible solution to this problem might be to ask whether one could install a \"\" spider phone \"\" in the var meeting room .  what i mean is a phone similar to the one in the rac morning meetings which have several remote speakers going out  from the main phone ( do you understand what i mean ? ) . if this is done , we would hear everyone around the table ,  not just those seated close to the phone .  what is you opinion on  a . us in london calling in to these meetings  b . getting some better equipment which would make it easier to follow the conversation ( \"\" spider phone \"\" or bigger speaker . . )  please let me know what your thoughts are ,  best regards ,  stig \",0\n\"Subject: re : enron case studies  eric ,  i have one on egs , one on dhabol and a recent one on  entrepreneurship in enron . you can buy  the case studies from the hbs web - site .  vince  eric gadd  11 / 13 / 2000 05 : 36 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : enron case studies  vince ,  what case studies do you have on enron ?  vince j kaminski  10 / 11 / 2000 16 : 15  to : eric gadd / lon / ect @ ect  cc : mark palmer / corp / enron @ enron , vince j kaminski / hou / ect @ ect  subject : re : enron case studies  eric ,  i have a number of case studies on enron but not the one on sutton bridge .  i know that peter tufano was working on it but when i checked the hbs  site and tried to purchase it , i could not locate it .  when i talked to peter a few months ago , he told me that the case study was  ready  and he was going through enron ' s internal approvals .  i cc mark palmer on it . maybe he knows about this specific case study .  i wander if it was completed , given sutton bridge developments .  vince  eric gadd  11 / 10 / 2000 05 : 49 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : enron case studies  vince -  where might i find copies of the case studies enron has published ? i ' m  particularly interested in the sutton bridge publication for havard but would  like to know if there is a library of case studies .\",0\n\"Subject: meeting on feb 8 , 2001  dear sir ,  i would like to apologize for the delay in responding to your fax .  i was on vacation for the last few days .  i shall be honored to meet your delegation on thursday , february 8 at 10 : 00  a . m .  please , let me know if you will be free for lunch after the meeting .  vince kaminski\",0\n\"Subject: real options conference - speaker confirmation  dear steven ,  further to our conversation i am delighted that you will be speaking at the  forthcoming real options conference which will take place on monday 27 th &  tuesday 28 th november in central london .  i have attached the pdf of the conference vince spoke at in february and the  draft programme of the november conference .  as discussed could you please email me with a suggested talk title and  between 5 and 8 bullet points to be included in the conference programme .  it would be great if you could emphasise the practicality of your talk and  that you will be using your own experience of working with real options at  enron as part of the talk .  if you do have the delegate list from the iqpc conference it would be useful  to see who attended so that we can improve on our marketing for the  conference in november . you can either email me or fax it to me on 020 7393  0313 .  i look forward to receiving your talk in the next day or so .  kind regards  julia  julia shaw  senior conference producer  tel : 020 7915 5650  fax : 020 7915 5001  email : jshaw @ iirltd . co . uk  web address : www . iir - conferences . com  - prog 3 . pdf  - talktitles . rtf\",0\n\"Subject: re : d - g energy  laine ,  i can initial it . please , contact beth perlman as an it officer .  i shall explain the reason we are buying the software to her .  i want the software to reside in our london office - the software is used  primarily by european utilities and we shall use it as a pricing tool  in negotiations with european clients .  vince  from : laine borgman @ enron on 11 / 29 / 2000 09 : 29 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : d - g energy  vince , i am circulating the d - g energy software license agreement for  signature . i need for you or your senior director to initial and i also need  to know if you have identified an enron officer within it to execute on  behalf of enron corp . please let me know .  thanks ,  laine\",0\n\"Subject: re : weekly report  vasant  thanks for your clarification .  i understand how this can happen and i feel better for having heard from you  folks .  rgds  dp  - - - - - original message - - - - -  from : shanbhogue , vasant  sent : thursday , march 08 , 2001 5 : 33 pm  to : port , david  cc : kaminski , vince ; kindall , kevin  subject : weekly report  hi david ,  i understand that you were slightly upset over a comment kevin kindall made  in one of his weekly reports . the wording was unfortunate , but the intention  was never to disparage anybody . it is just that since research gets data  from a large number of sources , we feel obligated to the data donor to ask  any requester for clarification of need . i completely understand that rac  typically has access to much sensitive information and they have a right to  know much information . we just want to make sure there is open flow of  information ( it is in everybody ' s best interests and the company ' s best  interests ) and that everybody is aware of how data is flowing .  best wishes ,  vasant\",0\n\"Subject: ewrm update , july 7 th .  rick  attached please find the project update .  thanks ,  ding .\",0\n\"Subject: resume forwarded at request of brian mihura  vince -  this is the resume i told you about  p  - - - - - forwarded by paula corey / enron communications on 01 / 29 / 01 03 : 37 pm - - - - -  mateog @ gofree . indigo . ie  01 / 29 / 01 02 : 58 pm  to : paula corey / enron communications @ enron communications  cc :  subject : resume forwarded at request of brian mihura  dear paula :  my name is matt gunning and i am a friend and former colleague of brian  mihura . brian mentioned that you would be interested in seeing my resume ,  which i have attached . if you have questions or need more information ,  please contact me . thank you for your consideration .  - attl . htm  - resumel . wps\",0\n\"Subject: re : portcalc methodology  keith ,  both power and emrs use a c library provided ( also implemented ) by research  group . the methodology of greek calculations in power portcalc has not  changed for more than 6 years since i joined enron 6 years ago . vince  kaminski , stinson gibner or grant masson should be able to help you with both  questions .  zhiyong  keith bowie  06 / 28 / 2000 04 : 22 am  to : zhiyong wei / hou / ect @ ect  cc : brian hudson / lon / ect @ ect  subject : portcalc methodology  zi  i ' ve been asked by risk management :  a ) who in research originally signed off the portcalc formulae  b ) for a copy of the documentation of the methodology ( greek calculations ,  etc . )  hope you can help on both counts .  thanks  keith\",0\n\"Subject: re : reschedule  clayton ,  no problem . i asked shirley to reschedule .  vince  clayton vernon @ enron  01 / 29 / 2001 12 : 38 am  to : vince j kaminski / hou / ect @ ect  cc : stinson gibner / hou / ect @ ect , tom barkley / na / enron @ enron  subject : reschedule  vince -  i apologize , but something has come regarding this afternoon . my server ' s os  is acting up , and is affecting all of my apps right now .  can we think about later this week ? i promise it will be worth it to you . the  eol stuff is nice .  again , my apologies .  clayton\",0\n\"Subject: thomas knudsen interview  guys  i ' m out of the office until wednesday next week . i ' ll chase you up for  feedback on your video interview with thomas next week ( if i don ' t get any  from grant before then ) .  i thought i ' d better clear up the fact that you ' re the only research people  ( except me ) to have spoken to thomas so far . although vince agrees that he ' s  a strong candidate , anjam was strongly opposed to thomas ' s being brought in  for interview . i thought last night ' s video interview was a reasonable way  to get an objective view from other research guys .  cheers ,  steve  ( thomas ' s cv attached for dale ' s reference :  )\",0\n\"Subject: new timesheet procedures  hello everyone :  just when you get used to something it changes !  as you may have heard , enron is implementing a new time entry system as part  of the july 1 sap implementation . time entry for the june 16 th - 30 th period  must be entered into sap by 3 : 00 pm cst on june 30 th . as your timekeeper , i  will assist with this process and ensure that we meet this very important  deadline .  i will continue to do the time sheets for the 19 th floor and for osman and  samer .  sam smith and / or kevin moore will be responsible for the timesheets for the  weather group on the 32 nd floor .  time can be entered in sap in two ways :  ? you can enter your time yourself using the new ehronline feature ; or ,  ? timekeepers can enter time on your behalf .  if you are unsure as to which approach you should use , please call me .  please remember that all time for this period must be submitted before 3 : 00  pm cst , on june 30 th .  for those of you using ehronline :  first of all , congratulations on taking this next step toward enron \u0001 , s vision  of empowering the employee . by using the new ehronline feature , you are  helping enron to realize the value in this sap implementation . hopefully ,  you too , will receive value from having instant access to your personal  information .  the new ehronline functionality is :  ? easy to use  ? accessible through the enron intranet at ehronline . enron . com  using this feature , you can not only enter your own time , but also maintain :  ? your profile information ( skills , education , and experience )  ? home address  ? phone numbers  ? w - 4 changes  ? emergency contact information  additionally , you will be able to view your individual pay advice and benefit  elections .  you will receive your personal id and password via e - mail from sap _ security  by june 22 nd . because of the confidentiality of the information accessible  using ehronline , it is important that you keep your id and password  confidential . if you do not receive your information by the end of the day  on june 22 nd , please call the coe at ( 713 ) 345 - 4 sap to obtain your id and  password .  the apollo & beyond team has teamed with ebs to deliver training on how to  enter time using ehronline via ebs \u0001 , new product enroncast . this tool is  available to you on your desktop . you can access enroncast at  www . enroncast . com and follow the instructions .  step by step guides - http : / / sap . enron . com / coe  ? enter time via ehronline ( employee ) step by step procedure  ? correct time via ehronline ( employee ) step by step procedure  ? enter time via ehronline ( non - employee contractor ) step by step procedure  ? correct time via ehronline ( non - employee contractor ) step by step procedure ]  for those of you who need me to enter your time :  attached is a manual time entry form that i must have completed and returned  by june 28 th . please estimate the last two days of the period as accurately  as possible . if necessary , i can make corrections on the next time entry  period . if you do not want to use this form , i will have hard copies at my  desk and will be glad to help you fill them  out . i know this is creating more work for everyone , but what can i say ?  where can you get help ?  i am here to help you with the new coding necessary on your timesheet . also ,  if you do not know which absence or attendance type you should use , please  come see me or give me a call .  if you have other questions or are experiencing problems , you can also get  help from any of the following places :  center of expertise ( coe )  the center of expertise can help answer many of your questions and provide  you with assistance if you are experiencing problems . the coe is available  24 hours a day from monday at 7 : 00 am cst through friday at 7 : 00 pm cst . you  can contact the coe at ( 713 ) 345 - 4 sap .  dedicated support personnel  during the time period right after the initial \u0001 & go live \u0001 8 the project team has  dedicated additional resources to help support you . these resources can be  contacted at :  marla hernandez at x 39763 for now and after 6 / 22 at x 31645 at workstation #  eb 3661 b  mark timmons at 57919 for now , pager number 888 - 620 - 3896 , at workstation #  eb 3667 a  regards ,  shirley  3 - 5290\",0\n\"Subject: edith terry  scott ,  i spoke briefly with edith terry from our dc office . there is not a good fit  for my group  but she could be a great asset for you .  i have her resume in case you are hiring and would like to take a look at  her .  vince\",0\n\"Subject: may 9 / 10 , 2000 seminar  my name is guillermo c ? novas , and i am regulatory and government affairs  director for enron am , rica del sur ( argentina ) .  i understand you spoke in a seminar that took place on may 9 / 10 where it was  discussed : 1 ) effective power price modelling ; 2 ) applying a real option  approach for the valuation of power plants .  one consultant and researcher , who shares enron ' s belief in open markets and  competition ( and therefore is helping us to open argentine energy markets ) ,  asked me if we could send him a copy of the booklet or slides that you and  other speakers presented during the seminar .  if this is feasible , i would appreciate if you could send a copy of the  material to me at enron am , rica del sur , located at : av . eduardo madero 900 -  piso 17 ( 1106 ) - buenos aires - argentina  please , do not hesitate to contact me should you have any questions or  require further information . i can be reached at the following number :  5411 - 4891 - 3600  sincerely ,  guillermo .\",0\n\"Subject: risk desk , issue # 1  hello - - listen , wanted to make sure you received a copy of our newest publication last week , the risk desk . because of the size of the files we sent out , quite a few bounced back because some corp firewalls halt emails over a certain size . anyhow , if you didn ' t receive the issue , hit the reply button and type \"\" resend risk desk . \"\" responce so far has been great for those of you that received the free copy - - we think you ' ll agree that it ' s soon to become the leading \"\" must read \"\" publication on market , credit , price and operational risk management in the energy space .  also , just a reminder , the charter price for a one year subscription ( $ 199 ) ends soon . let us know .  john sodergreen  editor - in - chief  scudder publishing group , llc  ph : 410 / 923 - 0688  fax : 410 / 923 - 0667  johns @ scudderpublishing . com  the desk , the risk desk , power executive  the bandwidth desk , energy ebusiness\",0\n\"Subject: today ' s idea  dear mr . kaminski ,  attached , there are 2 new samples of our daily market research : today ' s  issue of the morning faxes fixed income today and financial markets today .  we also have intraday market coverage , on bloomberg : idea > go , reuters : idus ,  and bridge / telerate .  if the info looks useful , we ' d like to arrange a free 30 - day trial for you  and your colleagues . for your reference , please find our price list  attached . i look forward to your reply .  best regards ,  vadim pokhlebkin  account manager  vpokhlebkin @ ideaglobal . com  tel . + 1 212 571 4332  fax + 1 212 571 4334  ideaglobal . com  140 broadway , 21 st floor  new york , ny 10005 , usa  any views expressed in this message are those of the individual sender ,  except where the sender specifically states them to be the views of  ideaglobal . com . this email , its content and any files transmitted with it  are intended solely for the addressee ( s ) and may be legally privileged  and / or confidential . access by any other party is unauthorized without the  express written permission of the sender . if you have received this email in  error you may not copy or use the contents , attachments or information in  any way . please destroy it and contact the sender via the ideaglobal . com  switchboard in one of the following three offices : new york + 1 212 571 4332 ;  london + 44 171 430 2888 ; singapore + 65 332 0700  - fito 317 a . pdf  - fmto 317 n . pdf  - onesheet . doc\",0\n\"Subject: re : credit reserve simulation for ees  one the outputs would be expected loss for each of the trials ( flat file ) and  a graph depicting the distribution ( example below from an early owens  illinois model )  - - - - - original message - - - - -  from : de , rabi  sent : thursday , february 22 , 2001 3 : 20 pm  to : o ' leary , martin ; tribolet , michael ; estrems , connie ; bradford , william  cc : tamarchenko , tanya ; dhar , amitava ; kaminski , vince ; kiatsupaibul , seksan ;  issler , paulo  subject : credit reserve simulation for ees  amitava and seksan have identified the source of the discrepancy between the  option prices calculated by the credit - reserve model and the stand - alone  spreadsheet model used in deal pricing . we expect to put a fix in place by  tomorrow .  in response to your desire to see more output from credit reserve simulation ,  i have identified a list of possible items that may be of interest to you for  credit pricing .  1 . potential exposure across time  2 . for each simulated credit event , display :  default time  exposure - - is deal - by - deal breakdown of any interest ?  commodity forward curves ( or spot price ? ) at default time  i would appreciate it if you could let me know your wish list at your  earliest .  thanks ,  rabi de  5 - 4593\",0\n\"Subject: re : eol wti historical trade simulation  stinson ,  thanks a lot for so much work you have done for the simulation model .  it seems that our work will make an impact on eol trading , that is very  exciting .  could you e - mail me the spreadsheet model so that i can catch up with  the changes you have made ?  i read a few books during this vocation . especially a stochastic processes  book , i finished the entire book . the queueing theory is very fascinating ,  and hopefully we can apply the theory to a real ebs project .  i will take my family out to see the nature bridge caverns near san antonio  tomorrow .  see you on tuesday .  happy new year !  zimin  stinson gibner  12 / 27 / 2000 08 : 09 pm  to : greg whalley / hou / ect @ ect , john j lavorato / corp / enron @ enron  cc : vince j kaminski / hou / ect @ ect , zimin lu / hou / ect @ ect  subject : eol wti historical trade simulation  greg ,  here are results corrected for spread profit per round - trip transaction .  prior results incorrectly counted a spread profit per trade .  stinson\",0\n\"Subject: the latest ( last ? )  . . sorry . . . i found something else :  p . 1 , footnote : the newspaper is the \"\" houston chronicle \"\" ( purchased the  ' post ' several years ago ) . . : - )  - - - - - forwarded by christie patrick / hou / ect on 02 / 07 / 2001 05 : 34 pm - - - - -  christie patrick  02 / 07 / 2001 05 : 27 pm  to : mark palmer / corp / enron @ enron  cc : vince j kaminski / hou / ect @ ect , j _ martin @ baylor . edu  subject : the latest ( last ? )  . . as columbo would say . . \"\" . . just one more thing \"\"  p . 20 last bullet : enron focusing on recruiting and retaining talent  thanks again ! christie .  - - - - - forwarded by christie patrick / hou / ect on 02 / 07 / 2001 05 : 24 pm - - - - -  christie patrick  02 / 07 / 2001 05 : 23 pm  to : mark palmer / corp / enron @ enron  cc : vince j kaminski / hou / ect @ ect , j _ martin @ baylor . edu  subject : the latest ( last ? )  mark !  please review the attached article and forward your comments / authorization  for its use to john martin at baylor , copying me and vince .  john and vince ,  i have a few simple comments :  1 . please use \"\" enron corp . \"\" [ rather than \"\" enron corporation \"\" ]  2 . page 3 : as of yesterday , fortune magazine named enron \"\" most innovative \"\"  for the sixth year in a row  3 . page 5 : 2 nd paragraph : regarding the \"\" gas bank \"\" concept - - i believe when  jeff first introduced it , it fell flat . i think john pick ' s that up ( and  enron ' s subsequent recovery of a version of the concept on p . 6 ) , but it ' s  probably accurate to mention that at first , it didn ' t go over .  4 . page 13 : re : cindy olson ' s comment on a possible 5 x difference between  a \"\" satisfactory \"\" and \"\" superior \"\" vp - - the difference referred to is probably  the \"\" bonus \"\" rather than \"\" compensation \"\" ( which , to me , is generally means  base salary ) ; also , it varies for each review period , as comparative  performance might vary ; further , we might want to run that quote by cindy  just to make sure she ' s ok with it ' s publication ( she might have no problem  with it whatsoever , but i know for other articles , she ' s been more reluctant  to provide that kind of statistic ) .  5 . page 17 ( after annual report quote ) : i suggest changing \"\" enron ' s  wholesale business . . . provides \"\" to \"\" . . . businesses . . provide \"\" ; also , rather  than \"\" enron wholesale \"\" we might want to define this by the term enron uses :  \"\" enron wholesale services \"\"  6 . page 18 : 2 nd paragraph : the tense switching from past to present is  technically correct if read carefully , but seems awkward when reading it  7 . page 19 : effective february , jeff skilling is \"\" ceo \"\" .  . . . that ' s my 2 - cents worth ! ! i think the article is great . . . even  interesting ( ha ! ) . . . even to non - mba ' s like me ! !  thanks !  - - christie .  - - - - - forwarded by christie patrick / hou / ect on 02 / 07 / 2001 04 : 41 pm - - - - -  vince j kaminski  02 / 02 / 2001 08 : 45 am  to : mark s palmer / na / enron @ enron  cc : vince j kaminski / hou / ect @ ect , christie patrick / hou / ect @ ect  subject : the latest ( last ? )  mark ,  i am sending you the final ( ? ) draft of the paper by john martin  on enron ' s transformation . john martin is a prof from baylor who visited us  a few weeks ago .  can you take a look at the paper and bless it . i haven ' t read this last  version  of the paper yet and i will go through it on weekend .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 02 / 2001  08 : 44 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" john d . martin \"\" on 02 / 01 / 2001 04 : 15 : 36 pm  to : vkamins @ enron . com  cc :  subject : the latest ( last ? )  vince ,  attached is my latest attempt to wrap everything together . our timetable  is very short as we need an \"\" approved by enron \"\" version of the paper to don  by next wednesday . don has already made editorial changes for us and may  make some additional \"\" writing style \"\" changes but he doesn ' t change the  content .  i ' ll give you a call later today to alert you to the e - mail .  take care ,  john  p . s . i had a nice conversation with steve . sounds like he ' s landed a  pretty good contract with wiley .  - enron _ paper _ 2 _ 1 _ 01 . doc  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: re : telephone interview with the houston research group  dear dr . kaminski  i am sorry i missed your phone call today . i was waiting for your call until  7 : 50 am ( australia time ) this morning . my mother - in - law told me you ringed  me at 8 : 05 . i guess we made a mistake at the time difference . i promise i  won ' t leave home tomorrow until i receive your call .  your faithfully  quentin  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  quentin kerr , email : qkerr @ maths . uq . edu . au  room : 67 - 625 tel : ( 07 ) 33461428  department of mathematics , the university of queensland  - - - - - original message - - - - -  from :  to :  cc : ; ;  sent : tuesday , 15 august 2000 2 : 09  subject : re : telephone interview with the houston research group  >  > hi quentin :  >  > i have scheduled the interview for 7 : 00 am , thursday , august 17 ( your time  > 5 : 00 pm wednesday , august 16 , our time ) . they will call you at your home ,  > 011 - 61 - 7 - 38798780 .  >  > regards ,  >  > shirley crenshaw  >  >  >  >\",0\n\"Subject: re : from today ' s paper  clayton ,  it translates into a credit risk for those on the other side of the hedge .  many producers have a long history of poor timing of hedges .  i could give you quite a long list . they definitely need a bright  adviser who will tell them the price of gas two years from now .  vince  clayton vernon @ enron  06 / 29 / 2000 01 : 02 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : from today ' s paper  vince :  here ' s an amazing factoid in today ' s paper related to the issue of how much  money you can \"\" make \"\" ( sic ) by hedging :  . . .  other companies analysts say are saddled with hedges include el paso energy  corp . and coastal corp . , which are merging .  a coastal official declined to comment on the company ' s forward positions .  although el paso is known for its pipeline business , it produces gas as  result of its $ 6 . 2 billion acquisition last year of sonat . \"\" more than 90  percent \"\" of that gas is hedged through the rest of the year , said bruce  connery , vice president of investor relations . the forward contracts are for  $ 2 . 40 , he said .  hedging in the current market plays to the company ' s primary aim of meeting  investors ' expectations , connery said .  \"\" our first goal is to deliver the earnings goal that we set out , and that  dictates that we hedge out commodity volatility , \"\" he said .  . . .  $ 2 . 40 ? ? ? are you kidding ? ? ? ?  clayton\",0\n\"Subject: re : current var issues  here are the current issues related to var and credit models :  1 . factor loadings ( fl ) for all \"\" primary \"\" commodities :  - the code is tested ;  - factors loadings have been calculated for every primary curve and examined  closely by research ;  - using different number of maturities for fl calculations ( it ) ;  - selecting \"\" good \"\" curves , setting mappings for the others ( rac ) ;  2 . reviewing power var model :  - implementing term structure of correlations ( preliminary research is in  progress by research , to be implemented by it ) ;  - implementing caps in var model ( it ) ;  - jumps for intramonth prices ( re - examine prices behavior , research ) ;  3 . historical ff vols ( research , rac ) ;  4 . interest rate and fx :  - preliminary research is completed ( research ) ;  - implementation in risktrack ( it ) ;  5 . credit model :  - resolving the problem of identical runs giving different results ( it with  research ' s help ) ;  6 . mg metals var model :  - merging with risktrack ( rac , it , research ) ;  - refining the model ( research ) ;  7 . var calculations for uk curves :  - merging with risktrack , elimination spreadsheets ( rac , it , research ) ;  - looking closely at var calculations for each commodity ;  8 . merchant portfolio var :  - unification with equity var model ;  9 . fat tails modeling ( research ) ;  let me know what i missed .  thank you ,  tanya .\",0\n\"Subject: presentation to dave delainey  good morning :  vince ' s direct reports will give a presentation to dave delainey , monday ,  april 24 th at 3 : 00 pm in conference room eb 3321 .  this presentation will be an update of the one that was given to greg  whalley .  if you have any questions , please call me .  thanks !  shirley  3 - 5290\",0\n\"Subject: a message from ken lay and jeff skilling  with deep regret we announce that joe sutton , vice chairman of enron , has  decided to leave the company . joe has indicated his desire to pursue other  opportunities in the energy asset development and operations business .  joe has been instrumental in making enron a global company . we will miss his  energy and enthusiasm . we wish joe the very best as he pursues new endeavors .  ken and jeff\",0\n\"Subject: order confirmation  thank you for your order . instructions regarding any electronic product  purchases and a full order summary are listed below , beginning after the  special announcement .  special announcement  introducing hbr onpoint , an indispensible new resource from \"\" harvard  business review \"\" that makes it faster and easier to put important  management thinking to work .  hbr onpoint gives you :  * a quick overview of critical management concepts  * different experts ' views on a given topic  * the context critical for sharing and applying the knowledge you ' ve  acquired  to learn more and pick up a free article overview , visit our web site :  below you will find your order information . if you have any questions  concerning this order , please e - mail us at orderreceipt @ hbsp . harvard . edu  ( or just reply to this message ) . for technical inquiries , email us at  techhelp @ hbsp . harvard . edu  your order reads as follows :  - - - - - - - - - - - - - - - - - - - - - - - - - - - -  customer ' s web id : 431620  sold - to no : 148820  sold to information :  first name : wincenty  last name : kaminski  institution / company name : enron corp  job title : managing director  mail stop / dept . : ebl 962  address : 1400 smith  address :  city : houston  state : tx  zip / postal code : 77002  country : united states  email address : vkamins @ enron . com  phone number : 713 853 3848  fax number : 713 646 2503  attn :  name of person who placed order : wincenty kaminski  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  billing information :  first name : wincenty  last name : kaminski  institution / company name : enron corp  job title : managing director  mail stop / dept . : ebl 962  address : 1400 smith  address :  city : houston  state : tx  zip / postal code : 77002  country : united states  email address : vkamins @ enron . com  phone number : 713 853 3848  fax number : 713 646 2503  attn :  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  shipping information :  first name : wincenty  last name : kaminski  institution / company name : enron corp  job title : managing director  mail stop / dept . : ebl 962  address : 1400 smith  address :  city : houston  state : tx  zip / postal code : 77002  country : united states  email address : vkamins @ enron . com  phone number : 713 853 3848  fax number : 713 646 2503  attn :  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  order  prod . # product title quantity price total  297055 copper and zinc mark . . . 1 $ 6 . 50 $ 6 . 50  293053 sally jameson : valui . . . 1 $ 6 . 50 $ 6 . 50  sub - total : $ 13 . 00  surcharge : $ 0 . 00  shipping and handling : $ 4 . 00  gst : $ 0 . 00  tax : $ 0 . 00  grand total : $ 17 . 00  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  total due : $ 0 . 00 ( pre - paid by visa )  shipping method : standard delivery u . s . , 48 states  * please note that there is applicable sales tax in ca , ct , il , ma , md , and  tn for the products you have ordered . if you are ordering from one of  these states , the amount shown on your invoice and / or credit card  statement will be slightly higher than the total listed above , to reflect  the applied sales tax . *  mailing lists are a great way to keep up with what ' s going on at the  harvard business publishing web site . right now , we offer 3 alerts :  management alert , strategy alert , or hr / training alert . each of these  e - mail newsletters regularly combines a specially selected excerpt with  announcements of new and bestselling products from our extensive catalog .  you can also find out what ' s coming up in both harvard business review and  harvard management update newsletter . to subscribe to one or more of  these free services , follow the link below . and thank you for ordering  from harvard business school publishing , the power of ideas at work . \",0\n\"Subject: re : tage resume submittal  vince ,  thanks for forwarding the resume . we have generally had great success with  ex - koch people .  he sounds might like he may be a good fit for michael l . miller in principal  investments . at this point  i have very recently inherited two other stron vps from ei and therefore will  probably focus on a few  manager and associates for the near term but i would like to keep james '  resume for further opportunities .  he sounds like someone we should at least meet with and figure out a spot  within wholesale services .  what do you think ?  regards ,  - larry -\",0\n\"Subject: re : visit  vince ,  > please , give me a call when you land on my regular and cell phone .  > i shall proceed to the restaurant ( about 10 minutes from the office ) .  > please , keep the copies of all the receipts .  10 - 4 . see you approx . 7 p . m . this evening .  ehud  ehud i . ronn  department of finance  mccombs school of business  university of texas at austin  austin , tx . 78712 - 1179  voice : ( 512 ) 471 - 5853  fax : ( 512 ) 471 - 5073  internet : eronn @ mail . utexas . edu \",0\n\"Subject: re : energy derivatives  hi vince ,  hope all is well with you . i ' m looking forward to seeing you again next  week and meeting with grant . can you guys do me favour ? i ' m sending out  some sample chapters to the people who responded positively ( all of them ! )  to my request for some feedback on the book . chapter 1 has an ' overview ' of  the book with just a couple of sentences on each chapter . could you please  write a sentence or two for your chapter ?  i ' m including what i have already written so that you can see the style .  many thanks and best regards .  chris .  2 overview of this book  this book aims to provide an in - depth understanding of the pricing and risk  management of energy derivatives . in the remainder of this chapter we give  an overview of the fundamental principals needed to model and price energy  assets , and which underlie the rest of the book . as well as introducing  the techniques that underlie the black - scholes modelling framework we  discuss the numerical techniques of trinomial trees and monte carlo  simulation for derivative pricing which are used extensively later in the  book .  in chapter 2 we analyse spot energy prices . apart from describing  empirical prices we propose a number of processes that can be used to model  the prices . we look at the well - know process of gbm as well as mean  reversion , stochastic volatility and jump processes , discussing each , and  showing how they can be simulated and their parameters estimated .  chapter 3 , written by vince kaminski and grant masson of enron capital and  trade .  chapter 4 examines forward curves in the energy markets . although such  curves are well understood and straight forward in the world debt markets  the difficulty of storage in many energy markets leads to less well defined  curves . what we do in this chapter  chapter 5 presents an overview of the common and not - so - common derivative  structures in the energy markets and discusses their uses . examples of  products analysed in this chapter include a variety of swaps , caps , floors  and collars , as well as energy swaptions , compound options , asian ( or  average rate ) options , barriers , lookbacks , and ladder options .  chapter 6 investigates single and multi - factor models of the energy spot  price and the pricing of some standard energy derivatives . closed form  solutions for forward prices , forward volatilities , and european option  prices are derived and presented for all the models in this chapter  including a three factor stochastic convenience yield and interest rate  model with jumps .  chapter 7 shows how the prices of path dependent and american style options  can be evaluated for the models in chapter 6 . simulation schemes are  developed for the evaluation of european style options and applied to a  variety of path dependent options . in order to price options which  incorporate early exercise opportunities , a trinomial tree scheme is  developed . this tree is built to be consistent with the observed forward  curve and can be used to price exotic as well as standard american style  options .  chapter 8 develops a new methodology for valuing energy options based on  modelling the market observed forward curve . the approach results in a  multi - factor model that is able to capture realistically the evolution of a  wide range of energy forward curves and where the user defined volatility  structures can be of an extremely general form . closed - form solutions are  developed for pricing standard european options and efficient monte carlo  schemes for exotic options . the chapter finishes with a discussion of the  valuation of american style options .  chapter 9 focuses on the risk management of energy derivative positions .  in this chapter we discuss the management of price risk for institutions  that sell options or other derivatives to a client and who is then faced  with the problem of managing the risk through time . we begin with delta  hedging a portfolio containing derivatives and look at extensions to gamma  hedging - using the models from chapters 5 and 7 . the general model of  chapter 7 ideally suited to multi - factor hedging and this is also  discussed .  chapter 10 looks at the key risk - management concept of value at risk  applied to portfolios containing energy derivative portfolios . after  discussing the concept of the measure , we look at how the key inputs  ( volatilities , covariances , correlations , etc ) can be estimated . we then  compare the fours major methodologies for computing var ; delta ,  delta - gamma , historical simulation and monte - carlo simulation . finally , we  look at testing the var estimates for various underlying energy market  variables .  finally , we finish with credit risk in energy markets in chapter 11 .\",0\n\"Subject: interview - jaesoo lew 10 / 25 / 00  attached please find the resume , interview schedule , and evaluation form for  jaesoo lew . jaesoo will be interviewing with vince kaminski ' s group on an  exploratory basis on october 25 , 2000 . please contact me with any comments  or concerns .  thank you ,  cheryl arguijo  ena recruiting  713 - 345 - 4016\",0\n\"Subject: re : re : conference volume  hi vince ,  i am resending you this request by dr . jacque for a paper . they are  expecting something by jan 22 . should we sit down and decide on what to put  in a short paper ( i think their limit was 30 pages , but that is impossible - -  i think a few pages should suffice ) .  regards , and happy new year ,  vasant  - - - - - - - - - - - - - - - - - - - - - - forwarded by vasant shanbhogue / hou / ect on 01 / 06 / 2000  08 : 31 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  laurent jacque on 12 / 13 / 99 03 : 29 : 26 pm  please respond to ljacque @ infonet . tufts . edu  to : vasant shanbhogue / hou / ect @ ect  cc :  subject : re : re : conference volume  dear dr . shanboghe :  i certainly understand that it would be difficult for you to  contribute a chapter . i thought of an alternative : would dr . kaminski be  willing to allow us to reprint his article ( in an abridged form ) on \"\" energy  exotic options \"\" published in his excellent book \"\" managing energy price risk \"\"  as i would really like to have a contribution from enron on energy  derivatives . would you be willing to talk to dr . kaminski about my proposal ?  in any event i appreciate your interest in the conference and i only  regret that hurricane floyd prevented us from meeting in person .  with very best wishes in the new year / millenium  laurent jacque  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  laurent l . jacque  professor  international finance & banking  director  international business studies program  the fletcher school of law and diplomacy  tufts university  medford , ma 02155  ( 617 ) 627 - 5982 tel  ( 617 ) 627 - 3712 fax  ljacque @ infonet . tufts . edu\",0\n\"Subject: interview with the enron research group  good morning mr . giancola :  your resume was forwarded to vince kaminski , managing director and  head of research with enron .  we would like to bring you in for an informal interview at your convenience .  this would be for a position of \"\" economist \"\" or \"\" associate economist \"\" ,  reporting to maureen raymond castaneda .  please give me some dates and times that would be convenient with you  and i will have our hr rep contact you to schedule your coming to houston .  i look forward to hearing from you .  sincerely ,  shirley crenshaw  administrative coordinator  enron research group  713 - 853 - 5290\",0\n\"Subject: strategic management society conference  our proposal was accepted . dust off your san francisco shoes .  rita mcgrath - the designer of our particular panel - will forward details  when they are sent to her by sms\",0\n\"Subject: e - commerce conference at berkeley , may 22  any interest in this conference ?  vince\",0\n\"Subject: additional attachments  vince :  i forgot to attach the final slam report , the file of the white paper ,  the white paper calculations . the final slam report discusses the  availability of service level agreement monitoring , and nms generally that  meet ebs ' s needs .  i am convinced that at a minimum ebs would gain the foundation of a great  nms that will be critical to the success of ebs , and that ebs could actually  gain the distributed machine tool that could be the foundation of the  internet of the 21 st century . i hope we get the chance to prove this .  let me know if i can be of further assistance .  mak  - final s l a m report september 1999 . zip\",0\n\"Subject: contract for henwood engagement  sandeep ,  bonnie nelson , who has drafted the attached contract for the henwood  engagement , feels that we should make every attempt to put a written  agreement in place immediately . otherwise , we may be in violation of enron  policy regarding contract work . can you review the document prior to coming  back to houston , so that it can be sent to henwood ?  - - stinson  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 01 / 19 / 2001  04 : 10 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  bonnie nelson @ enron _ development  01 / 19 / 2001 11 : 54 am  to : stinson gibner / hou / ect @ ect , bruce  lundstrom / enron _ development @ enron _ development , lauren  cc : vince j kaminski / hou / ect @ ect , sandeep  subject : re : ca for henwood engagement  stinson ,  please find attached a revised version of the draft consulting agreement with  henwood . fyi , i am attaching both a clean version and one marked toshow  changes from the last draft i sent you . please let me know if you have any  questions or comments on the agreement or the most recent changes .  what is the status of henwood ? do you still want to engage them and what is  the timeframe for their work ( the dates in the draft may need to be  corrected ) .  bruce and lauren : please advise on which enron entity should be the party to  this consulting agreement .  thanks , bonnie\",0\n\"Subject: reviewer approval  please note that your employees have suggested the following people to  complete a feedback form on their behalf . you will need to access the  performance management system ( pep ) to either approve or decline these  suggested reviewers . once you have approved the suggested reviewers they  will be notified and can begin completing the feedback form .  your list of employees that have suggested reviewers are listed below :  date suggested : may 19 , 2000  feedback due date : jun 16 , 2000  employee name : kollaros , alexios  date suggested : may 22 , 2000  feedback due date : jun 16 , 2000  employee name : krishnarao , pinnamaneni v  date suggested : may 22 , 2000  feedback due date : jun 16 , 2000  employee name : shanbhogue , vasant\",0\n\"Subject: rice cfos conference  christie ,  this is one of the communications regarding rice cfos conference .  andy requires some gentle persuasion .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 10 / 2001  08 : 20 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  david ikenberry on 04 / 09 / 2001 01 : 27 : 24 pm  to : vince . j . kaminski @ enron . com  cc :  subject :  hi vince ,  i may have missed something , however don ' t believe i have received any  communication recently from andy festow about this upcoming may 4 - 5 corp .  fin . conference . i hope he is still planning to come , yet i don ' t know as  of now .  i have andy penciled in as a participant on a \"\" panel \"\" that is discussing  equity dilution from stock option compensation ( the role of panelist should  require little , if any , preparation time ) . of course , i want andy to  come , however he is concerned about his ability to attend , i probably  should identify another person or two to serve on the panel .  dave .  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  prof . david ikenberry  jones graduate school of management  rice university  713 - 348 - 5385\",0\n\"Subject: the garp 2001 convention  dear garp 2001 speaker  ?  just a gentle reminder that the information i requested for your  presentation at the garp 2001 convention , was due in today . can i please  have this information by friday 8 th september so that i will have adequate  time to include all the details in the brochure , which is due to go to press  very shortly .  the information that i require as soon as possible is as follows :  1 . confirmation of professional details ( including the speaker ' s name , job  title , and organisation )  2 . confirmation that the topic title is accurate and to your liking  3 . bullet points for your presentation ( up to 5 to 6 bullet points - please  as technical and detailed as possible )  4 . contact details ( including telephone numbers , fax no , colleague / pa , full  address )  ?  if you have any questions please do not hesitate to contact me , otherwise i  look forward to receiving the above information by friday 8 th september .  ?  kind regards  ?  andreas  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  andreas simou  garp 2001 - conference producer  tel ? + 44 ( 0 ) 20 7626 9301  fax + 44 ( 0 ) 20 7626 9900\",0\n\"Subject: re : cairn gas purchase bid  vince - - shades of cuiba  - - - - - - - - - - - - - - - - - - - - - - forwarded by doug leach / hou / ect on 08 / 15 / 2000 07 : 53 am  - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : doug leach on 08 / 15 / 2000 07 : 52 am  to : douglas s parsons / enron _ development @ enron _ development  cc : marc de la roche / hou / ect @ ect , bobby  subject : re : cairn gas purchase bid  you spoke to me once and i gave you my opinions which were contrary to your  resultant offer to cairn . currently , i have better things to do with my time .  douglas s parsons @ enron _ development  08 / 15 / 2000 12 : 10 am  to : doug leach / hou / ect @ ect  cc : marc de la roche / hou / ect @ ect , bobby  subject : re : cairn gas purchase bid  i talked to vince after we hung up and his only suggestion was to call  sandeep kohli . i spoke with marc and yourself four times on this matter over  a 3 day period and given the timing , i put forth a non - binding offer , after  discussing it further with bobby , based on the information i had that appears  to position us close to our competitors offers . we haven ' t committed  ourselves and should we be selected for negotiations there are numerous  variables to affect the outcome . if you ' ve got any suggestions for a better  deal , please advise .  doug leach @ ect  08 / 14 / 2000 07 : 45 am  to : douglas s parsons / enron _ development @ enron _ development  cc : marc de la roche / hou / ect @ ect , bobby  subject : re : cairn gas purchase bid  i strongly disagree with the pricing and structure of your non - binding offer  to cairn . this reminds me of the debacle in brazil . you should have contacted  vince kaminski ' s research group as we talked about before an offer was made .  this is a bad deal .  douglas s parsons @ enron _ development  08 / 12 / 2000 01 : 51 am  to : doug leach @ ect , marc de la roche @ ect  cc :  subject : cairn gas purchase bid  doug & marc ,  fyi , please let me know if you think we ' re totally off base . i appreciate  your help .  regards ,  doug  - - - - - - - - - - - - - - - - - - - - - - forwarded by douglas s parsons / enron _ development on  08 / 12 / 2000 01 : 48 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  douglas s parsons  08 / 11 / 2000 06 : 24 am  to : bobby farris / enron _ development @ enron _ development  cc : f b virani / enron _ development @ enron _ development , ujjwal  dey / enron _ development @ enron _ development , nilesh  subject : cairn gas purchase bid  bobby ,  after meeting with cairn today in delhi , my perception is that our offer was  received well . they were more open and relaxed then they were on wed .  morning and made several encouraging comments about our price range , ( once we  talked through the price movements ) , and the seriousness of our gas related  activities on the west coast of india , in light of the ioc agreement . i  think the overall package is attractive to them and no serious objections  were raised . we did talk to some extent about the guarantees , but we didn ' t  get too far and they ' re willing to accept at this point that what ' s  acceptable to the lng suppliers , should be suitable for their needs .  however , they would like to understand the corporate structure and assets of  enron energy marketing a little better and i told them i would get back to  them on that point .  david and ajay were up in hazira yesterday looking at some property for their  gas treatment facility , which apparently is across the road from pipeline  access . while there they went and looked at shell ' s proposed lng site after  walking the last 1 km , inaccessible to their 4 wd vehicle and not surprisingly  found a beach .  in summary , here is what we offered on a non - binding basis :  six year production plateau  85 % top  $ 3 . 67 / mmbtu net , at a base of $ 18 / bbl brent , with point of sale at the  tail - end of the gas processing plant  floor & cap of $ 15 . 50 - $ 27 . 00 / bbl  price movement : + / - $ 1 . 00 / bbl from the $ 18 / bbl base price ( on a 3 mo .  rolling average ) equals + / - $ 0 . 145 / mmbtu fixed on a quarterly basis  guarantees : same protection we ' re providing the lng suppliers under the  trust retention account  i appreciate everyone ' s help in submitting this offer .  thanks ,  doug\",0\n\"Subject: re : job posting  hi vince ,  this posting is for my group . thanks for the referral .  - - - - - original message - - - - -  from : kaminski , vince  sent : tuesday , april 24 , 2001 5 : 31 pm  to : goodpasture , john ; watson , kimberly ; ferrell , lee ; kaminski , vince  cc : krishnarao , pinnamaneni  subject : job posting  i am teaching a class at rice and one of my very bright students sent her resume  in response to this posting . do you know who posted this job ?  vince kaminski  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 24 / 2001 05 : 27 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" helen demianenko \"\" on 04 / 24 / 2001 02 : 11 : 05 pm  please respond to  to :  cc :  subject : job posting  dear vince ,  thanks for talking to me this morning about the sr . risk analyst position .  here is where you can find the job description for that position :  also , i have cut and pasted it down below , just in case .  i appreciate your assistance in this matter and will start working on my  cover letter right away .  i would also like to talk to somebody to get a better feel for the position  ( is this really an mba level position and how much of the in - depth learning  opportunities for the derivatives market does it entail ? )  sincerely ,  helen demianenko  p . s . i have attached my resume ( one more time ) .  sr risk analyst  essential functions : primary accountability for managing the ets risk book  structure and processes from a pipeline ( front office ) perspective . work  within current nng and tw marketing organizations to effectively integrate  risk books into daily marketing and structured product activities . provide  feedback to management regarding overall and specific risk positions .  provide support for consistent and accurate deals entry / reporting for stand  alone risk management system . create ad - hoc reports to assist management in  risk analysis . responsible for managing and providing enhancements to the  capacity books : ? maintain functionality and provide leadership for new  functionality from a users perspective . provide support and direction for  integration of capacity books and revenue management project . support revenue  management team  essential requirements : ba / bs in finance or accounting ( mba preferred ) .  minimum of two years financial instruments experience . excellent  quantitative / analytic and systems skills . knowledge of commodity risk book  concepts . understanding of physical natural gas market , interstate  transportation and financial derivatives . ability to interface with  structuring / marketing groups in order to define business requirements .  ability to provide leadership for business and system processes . excellent  communication skills with an ability to communicate across organization with  varied skill sets and ideas . must be self - motivated with a high level of  energy  preferred skills : na .  special characteristics : this job functions in a team - oriented , fast - paced  environment with multiple concurrent assignments and constantly changing  priorities .  contact : responses will be accepted through may 3 , 2001 . respond to enron  corp . , human resources 235 , p o box 3330 , omaha , ne 68103 - 0330 or e - mail :  dea . crum @ enron . com as a . doc or . txt attachment . please include this  requisition number .  job id 0000108729  department risk management & reporti  company enron transportation services  enron transportation services  location houston , tx  type  posting date 19 - apr - 01  - helen _ d _ resume . doc > \",0\n\"Subject: re : running credit model  tanya ,  although i ' m quite comfortable with providing support for running the model ,  and assisting in providing the tools to enable easier analysis of the  results , i ' m not entirely comfortable with supporting a java debug  environment within your team ( including ad - hoc training ) , when we have  facilities within the it development team to do it here .  i ' d like to meet with you to discuss this , as this seems to be an ongoing  issue , and would like to understand the ground rules by which your team  operates in conjunction with it in general .  regards  steve  tanya tamarchenko  23 / 06 / 2000 15 : 48  to : stephen stock / hou / ect @ ect  cc : grant masson / hou / ect @ ect , vince j kaminski / hou / ect @ ect , debbie r  brackett / hou / ect @ ect  subject : re : running credit model  steve ,  in order to be able to test the new credit model as well as to answer credit  group ' s  questions regarding the outputs from this model research needs to be able to  do the following :  1 . run credit model independently of the other runs . it is quite ok for now  to be able to run it just for small artificial portfolios .  2 . debug the code to see what actual values are used during the run time .  please , let me know if your team can help us .  tanya .\",0\n\"Subject: [ fwd : new commodity marketplace opportunity ]  mark : per our brief conversation this morning , the attached email was  sent to you yesterday . i hope that you might understand that i am  conceptually looking for \"\" founders \"\" and at the \"\" pre \"\" business plan  stage . there is an enormous problem existing with a very attractive  economic reward and willing participants needing this solution . i need  help . al arfsten 713 965 2158  content - transfer - encoding : 7 bit  x - mozilla - status 2 : 00000000  message - id :  date : wed , 24 jan 2001 15 : 49 : 37 - 0600  from : al arfsten  organization : bfl associates , ltd .  x - mailer : mozilla 4 . 7 [ en ] c - cck - mcd nscpcd 47 ( win 98 ; i )  x - accept - language : en  mime - version : 1 . 0  to : mark . lay @ enron . com  subject : new commodity marketplace opportunity  content - type : text / plain ; charset = us - ascii  mark lay : i shared confidentially with vince kaminski my developing  concept of a highly inefficient not - for - profit enterprise with  dramatically increasing costs . i believe that a for - profit economic  model is possible that should reverse these skyrocketing costs and  ultimately lower the commodity thereby having a national , if not , global  impact of health care costs . vince seems to also believe in the  concepts potential . the ceo of one of the biggest u . s . blood banks has  already asked to become involved . i would like involve more people  with vision , means and desire to help make this a reality . i would look  forward to meeting with you to talk further . al arfsten 713 965 2158\",0\n\"Subject: fw : stanford or - summer intern  stinson ,  should we get him as well ?  it seems he has the right skills .  we might have maxed out on the  number of summer interns through  the a / a program . we would have to  hire him directly .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 29 / 2000  08 : 20 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" shikhar ranjan \"\" on 02 / 28 / 2000 02 : 31 : 39 pm  to : ravi _ thuraisingham @ enron . net  cc : vince j kaminski / hou / ect @ ect  subject : fw : stanford or - summer intern  hi ravi :  i had sent an email about a week back with my resume for the summer  internship . i think the address i sent it to was not correct , so i am  resending it . i will also tell the others in the group to send there resumes  to you . thanks .  regards ,  shikhar  - - - - - - - - - - - - - - - - - - - - - - - -  shikhar ranjan  phd student  management science & engineering  stanford university ca  ( 650 ) 497 5762  - - - - - original message - - - - -  from : shikhar ranjan  to :  cc :  sent : sunday , february 20 , 2000 5 : 24 pm  subject : stanford or - summer interns  > hi ravi :  >  > please find attached my resume for the summer internship program . i  > apologize for the delay . we actually lost your contact info . please let me  > know if you will need any additional information and / or a cover letter  > besides the resume and i can send it right away .  >  > thanks  >  > regards ,  > shikhar  > - - - - - - - - - - - - - - - - - - - - - - - -  > shikhar ranjan  > phd student  > management science & engineering  > stanford university ca  > ( 650 ) 497 5762  >  - resumeo 0 - ene . doc\",0\n\"Subject: merry xmas and a happy new year !  hi all  merry xmas and a happy new year !  les .\",0\n\"Subject: re : resume  vasant ,  i agree .  vince  from : vasant shanbhogue / enron @ enronxgate on 05 / 01 / 2001 10 : 00 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : resume  vince ,  he seems to have mostly equity and fixed income background ( and then some credit exposure calculation ) with not much credit data analysis experience . i do not think he would be appropriate for bryan ' s group - - he needs a person who tracks market developments and understands fundamental data , and although this guy may be good at modeling , we already have iris and amitava doing the modeling and looking at data . at this stage , i would prefer to hire somebody with direct experience in credit analysis ( banking , rating agency ) . i am worried that if we get another person without data analysis experience , then amitava will find himself with two people ( iris being the other one ) who are both inexperienced in this area , and he will find himself doing a lot of the work anyway .  if you want to pursue him , we should probably do a phone interview first .  vasant  - - - - - original message - - - - -  from : kaminski , vince  sent : monday , april 30 , 2001 5 : 33 pm  to : shanbhogue , vasant  subject : re : resume  vasant ,  what do you think ? he may be expensive .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 30 / 2001 05 : 31 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  marshall brown on 04 / 25 / 2001 01 : 13 : 44 pm  to : vince . j . kaminski @ enron . com  cc :  subject : re : resume  vince ,  i apologize , i sent you the wrong resume ! here is the correct one .  >  marshall brown  vice president  robert walters associates  phone # : 212 - 704 - 0596  fax # : 212 - 704 - 4312  marshall . brown @ robertwalters . com  www . robertwalters . com  > - - - - - original message - - - - -  > from : vince . j . kaminski @ enron . com [ smtp : vince . j . kaminski @ enron . com ]  > sent : wednesday , april 25 , 2001 1 : 08 pm  > to : marshall . brown @ robertwalters . com  > subject : re : resume  >  >  > marshall ,  >  > he looks ok but below the level of quant skills i typically look for  >  > vince  >  >  >  >  >  > marshall brown on 04 / 23 / 2001 09 : 33 : 00  > am  >  > to : vince kaminski  > cc :  > subject : resume  >  >  > vince ,  > i know this candidate is actively interviewing at el paso and i think  > reliant . he has excellent quantitative background , but no real energy  > experience . if you are interested in speaking with him let me know .  > regards ,  > marshall brown  > vice president  > robert walters associates  > phone # : 212 - 704 - 0596  > fax # : 212 - 704 - 4312  > marshall . brown @ robertwalters . com  > www . robertwalters . com  >  >  > >  >  >  > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  > caution : electronic mail sent through the internet is not secure and could  > be intercepted by a third party .  >  > this email and any files transmitted with it are confidential and  > intended solely for the use of the individual or entity to whom they  > are addressed . if you have received this email in error please notify  > the system manager .  >  > this footnote also confirms that this email message has been swept by  > mimesweeper for the presence of computer viruses .  >  > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  >  > ( see attached file : litt _ har . doc )  >  > >  - litt _ tho . doc > \",0\n\"Subject: re : vandy student  kristin ,  the problem with this guy is that we maxed out on the number of interns we  can gainfully employ and provide adequate supervision . so , we have to pass on  him .  vince  enron north america corp .  from : kristin gandy @ enron 02 / 16 / 2001 07 : 54 am  to : stinson gibner / hou / ect @ ect , vince j kaminski / hou / ect @ ect  cc :  subject : vandy student  i hear that you have been in contact with this student . do you have any  interest in hiring him for a summer position ? if not please just let me know  and i will call him to let him know .  regards ,  kristin  - - - - - - - - - - - - - - - - - - - - - - forwarded by kristin gandy / na / enron on 02 / 16 / 2001  07 : 49 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  dmitri villevald on 02 / 15 / 2001  04 : 00 : 51 pm  to : \"\" ' kristin . gandy @ enron . com ' \"\"  cc :  subject :  dear ms . gandy :  thank you for taking time out of your busy schedule to visit the owen  graduate school of management at vanderbilt on january 23 - 24 for on - campus  interviews for the summer associate positions at enron . it was a pleasure  talking with you , and i hope i conveyed to you how excited i am about the  prospect of applying my skills at enron .  i realize that enron offers a limited number of positions and greatly  respect your choice of summer associates . i would like to ask you if there  is any opportunity for me to work at enron during this summer for free . i am  confident that my sincere interest in derivatives will allow me to greatly  contribute to enron during this summer . i am particularly interested in  enron research group . ( i had a phone interview with mr . gibner on january  31 st , and i sent him email yesterday asking for the opportunity to work for  free during this summer ) .  i am looking forward to hearing from you . if i can provide more information  or answer additional questions , please feel free to contact me either by  telephone ( 615 - 496 - 1132 ) or via e - mail  ( dmitri . villevald @ owen 2002 . vanderbilt . edu ) . also , i am always ready to fly  to houston for additional interviews .  again , thank you for your time and consideration .  sincerely ,  dmitri villevald  owen mba 2002\",0\n\"Subject: re : options model  jeff ,  i got 20 cents for the swith option per dth . my assumptions are as follows :  price curve assumption :  waha - - - if - waha  la plata pool and tw ( ignacio ) - - if - epso / sj  california border - - ngi - socal  correlation assumption :  waha - sj 95 %  socal - sj 90 %  see the attached spreadsheet for more info . call me for questions .  zimin  jeffery fawcett @ enron  10 / 11 / 2000 02 : 56 pm  to : zimin lu / hou / ect @ ect  cc :  subject : options model  zimin ,  we ' re trying to price out a \"\" live \"\" options deal . here are the parameters :  volume : 32 , 000 dth / d  term : jan . 1 , 2002 through oct . 31 , 2006 ( 58 mos . )  price : one part rate , $ 0 . 2175 / dth , plus applicable fuel  primary receipt / delivery points : ( east - to - east transport )  receipt : la plata pool ( use san juan , blanco price equivalent )  delivery : waha area  option :  alternate delivery pnt . : california border ( east - to - west transport )  price :  floor - $ 0 . 2175 / dth , plus 4 . 75 % pipeline fuel , plus 50 % of the difference  between the california border index  price and the san juan basin index price . specifically , we ' ll use :  ( socalgas large pkgs . minus tw ( ignacio , pts . south ) )  an important things to consider :  this option is only for alternate firm deliveries . alternate firm is really  just a glorified version of interruptible .  can you run the option model and tell me what is the dollar value of this  rather \"\" unpure \"\" option ?  i appreciate it . give me a call at 3 - 1521 if you have any questions . also ,  can you get us an answer by friday , 10 / 13 / 00 ? we ' re looking to get the  proposal out to the customer by the end of the week if possible . thanks .\",0\n\"Subject: earth day - trash bash  i hardly know what to say ! ! ! what a great turnout from the research  department . we had 15 including spouses and children who worked check - in  and picked up trash . thanks so much . everyone from community relations was  blown away by the turnout we had from research . i heard very nice comments  about our effort and about the fact that vince came out and worked . thanks  again for all your support . i personally appreciated it and i know everyone  else from enron that was involved in this event appreciated it because i got  so many comments about our participation . i don ' t know what else to say but  that you are a great group . anita\",0\n\"Subject: hr deadlines and action items  please forward to all your direct reports  - - - - - - - - - - - - - - - - - - - - - - forwarded by norma villarreal / hou / ect on 11 / 16 / 2000  11 : 23 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  norma villarreal  11 / 16 / 2000 11 : 23 am  to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , vasant  shanbhogue / hou / ect @ ect , mike a roberts / hou / ect @ ect , pinnamaneni  krishnarao / hou / ect @ ect , maureen raymond / hou / ect @ ect  cc : sheila walton / hou / ect @ ect , shirley crenshaw / hou / ect @ ect  subject : hr deadlines and action items  pep system for feedback  action item  employees need to provide feedback on requested employees  supervisor ' s need to contact employee ' s requested reviewers ( via phone mail  or email ) who have not submitted feedback .  deadline for pep feedback : friday , november 17 , 2000 cst  open enrollment for 20001 benefit election  action item  employees who want change their benefit election need to go to  www . enron . benefitsnow . com or call 1 ( 800 ) 425 - 5864 . if you do not have your  2001 enrolment personal worksheet which contains your personal identification  number please contact benefits at 1 ( 800 ) 3327373 option 1 .  extended deadline : friday , november 17 , 2000 , 5 p . m . cst  bonus defferal election  action item  employees wishing to receive stock options and phantom stock in lieu of all  or a portion of the cash bonus received during 20001 can will need to access  ehronline . enron . com .  deadline : friday , december 8 , 2000 cst  please let me know if you have any questions .  norma villarreal  hr generalist  x 31545\",0\n\"Subject: spring 2001 conference participation by jeffrey k . skilling  rick / vince ,  good morning .  in my 9 / 14 e - mail , i advised you of the practitioner - industry cefer ( center  for energy finance education and research ) conference we are planning for  spring 2001 . as you know , we would like to invite jeff skilling to be the  keynote speaker at the thur . evening dinner . the following day ' s four  topics consist of risk management , deregulation , real options , and  international / globalization . the majority of invitees would be  ( predominantly u . s . - based ) energy - industry practitioners , as well as  several academics .  given lead time issues in these matters , we have reserved hotel rooms in  austin for feb . 22 , 2001 . could i ask you to ascertain jeff skilling ' s  availability for that evening ?  thanks ,  ehud ronn  ehud i . ronn  professor of finance and jack s . josey professor in energy studies  director , center for energy finance education and research  mccombs school of business  university of texas at austin  austin , tx . 78712 - 1179  voice : ( 512 ) 471 - 5853  fax : ( 512 ) 471 - 5073  internet : eronn @ mail . utexas . edu \",0\n\"Subject: re : summer internship  jinbaek ,  the answer to the lst question is yes .  the project list is fine with me and is still valid . we are an organization  driven by the needs of our internal customers .  i shall froward your message to the person in ebs .  hopefully , we shall get a positive response .  vince  jinbaek kim on 03 / 15 / 2001 01 : 12 : 32 am  to : vince . j . kaminski @ enron . com  cc :  subject : summer internship  dr . kaminski ,  sorry for the late response ,  it took me some time to coordinate things .  finally , it ' s almost dont : - )  it turned out that from june to august  will be best for me for work at enron  ( say june . 4 to august . 4 )  but i still need to know several things from your side .  could you answer following questions ?  first :  is my suggested working period is ok with you ?  if so , let me know what to do for settlement  during the period .  second :  i got a list of work , i might be able to do for  dealbench team from ross and suresh .  i ' d like to know it is still a valid work list :  the list he sent is as following :  > 1 . write a paper in layman ' s terms that answers  > questions like the following :  > benefits of auctioning online for both buyers and  > sellers , particularly in reverse auctions  > explanation how multi - variable auctions are not  > as efficient as price - only auctions ( is this true ? )  > how many participants are recommended for a  > successful live auction  > what types of goods and services are best suited  > for live auctions versus sealed bid quotes  > opinions on lotting strategies  > trends in online private auctions  > 2 . identify appropriate recent auction research ( 3  > or 4 papers out of the 90 + you provided ) and obtain approvals from the  > authors to post on our site  > 3 . create a list / bibiliography of relevant auction  > literature ( with hyperlinks ? )  > 4 . would you be willing to offer auction consulting  > services to our customers ( if they are interested )  third :  there is an e - procurement forum at haas school of business ,  in may 22 . the chair of the forum is my advisor prof . arie segev .  a person from wells fargo bank will talk about wells fargo ' s role  in e - marketplace payment initiative ,  where enron broadband services is also one of key players  along with citibank .  he asked me whether you can contact a person at  enron broadband services , who ' s related to the initiative .  he wants to know whether we will have a speaker from enron  to see enron ' s perspective , in the forum .  here is a link to news related to the initiative ,  fourth :  my advisor wants to know whether  there could be any opportunity to do a case study ,  regarding enron ' s business .  he is interested in e - procurement and e - marketplaces .  business model and system architecture . . .  thanks for reading this long email .  i ' ll look forward to your answer . .  i am sorry for giving you so much burden  to answer those questions possibly not easy to answer .  warm regards ,  jinbaek  jinbaek kim  ph . d candidate  dept . of industrial engineering and operations research  u . c . berkeley  http : / / www . ieor . berkeley . edu / ~ jinbaek  go bears !  : \"\" ' . _ . . - - - . . _ . ' \"\" ; ` . . ' . ' ` .  : a a : _ _ . . . . . _  : _ . - 0 - . _ : - - - ' \"\" \"\" ' \"\" - . . . . - - ' \"\" ' .  : . ' : ` . : ` , ` .  ` . : ' - - ' - - ' : . ' ; ;  : ` . _ ` - ' _ . ' ; . '  ` . ' \"\" ' ;  ` . ' ;  ` . ` : ` ;  . ` . ; ; : ;  . ' ` - . ' ; : ; ` .  _ _ . ' . ' . ' : ; ` .  . ' _ _ . ' . ' ` - - . . _ _ _ . _ . ' ; ;  ` . . . . . . ' . ' ` ' \"\" \"\" ' ` . ' ; . . . . . . - '  ` . . . . . . . - ' ` . . . . . . . . '  on mon , 5 mar 2001 vince . j . kaminski @ enron . com wrote :  >  > jinbaek ,  >  > this is fine though you are welcome to spend more  > time with us this summer .  >  > vince  >  >  >  >  >  > jinbaek kim on 03 / 04 / 2001 03 : 45 : 40 pm  >  > to : vince . j . kaminski @ enron . com  > cc :  > subject : re : summer internship  >  >  > dr . kaminski ,  >  > thanks for your answer .  > before i tell you the time frame ,  > i ' ll need to talk with my advisor , first .  > because here is an on - going - project .  > i need to coordinate the schedule .  >  > i ' ll appreciate it if you understand my situation ,  > and give me some time ( less than a week , of course ) .  >  > for your reference ,  > probably  > the dates i ' d like to ask you will be  > from mid - may to mid - july ( 2 months )  >  > warm regards ,  > jinbaek  >  > - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  > jinbaek kim  > ph . d candidate  > dept . of industrial engineering and operations research  > u . c . berkeley  > http : / / www . ieor . berkeley . edu / ~ jinbaek  >  > go bears !  >  > : \"\" ' . _ . . - - - . . _ . ' \"\" ; ` . . ' . ' ` .  > : a a : _ _ . . . . . _  > : _ . - 0 - . _ : - - - ' \"\" \"\" ' \"\" - . . . . - - ' \"\" ' .  > : . ' : ` . : ` , ` .  > ` . : ' - - ' - - ' : . ' ; ;  > : ` . _ ` - ' _ . ' ; . '  > ` . ' \"\" ' ;  > ` . ' ;  > ` . ` : ` ;  > . ` . ; ; : ;  > . ' ` - . ' ; : ; ` .  > _ _ . ' . ' . ' : ; ` .  > . ' _ _ . ' . ' ` - - . . _ _ _ . _ . ' ; ;  > ` . . . . . . ' . ' ` ' \"\" \"\" ' ` . ' ; . . . . . . - '  > ` . . . . . . . - ' ` . . . . . . . . '  >  >  > on fri , 2 mar 2001 vince . j . kaminski @ enron . com wrote :  >  > >  > > jinbaek ,  > >  > > you can coordinate the details with me .  > > let me know what the time frame is for you  > > and we shall send you an appropriate offer .  > >  > > vince  > >  > >  > >  > >  > >  > > jinbaek kim on 03 / 02 / 2001 04 : 43 : 06 pm  > >  > > to : vince . j . kaminski @ enron . com  > > cc :  > > subject : re : summer internship  > >  > >  > > dr . kaminski ,  > >  > > thank you very much .  > > of course , i ' ll be happy to have an opportunity  > > to work at such a wonderful company .  > > i was contacting with surech raghavan at deal bench team ,  > > and was going to express my appreciation to you again  > > after settling down process with them .  > >  > > for the period of working ,  > > i still need to coordinate with my advisor and  > > may need to adjust according to that .  > > but anyway , i ' ll try to coordinate smoothly .  > >  > > please let me know whether i should keep contacting  > > with deal bench team ,  > > for working period and  > > for misc . living support such as finding a place , rent a car , etc .  > >  > > i appreciate you so much again ,  > > for arranging such meetings and giving me an opportunity .  > > all this opportunity will not be available to me ,  > > without your kind help .  > >  > > warm regards ,  > > jinbaek  > >  > > - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  > > jinbaek kim  > > ph . d candidate  > > dept . of industrial engineering and operations research  > > u . c . berkeley  > > http : / / www . ieor . berkeley . edu / ~ jinbaek  > >  > > go bears !  > >  > > : \"\" ' . _ . . - - - . . _ . ' \"\" ; ` . . ' . ' ` .  > > : a a : _ _ . . . . . _  > > : _ . - 0 - . _ : - - - ' \"\" \"\" ' \"\" - . . . . - - ' \"\" ' .  > > : . ' : ` . : ` , ` .  > > ` . : ' - - ' - - ' : . ' ; ;  > > : ` . _ ` - ' _ . ' ; . '  > > ` . ' \"\" ' ;  > > ` . ' ;  > > ` . ` : ` ;  > > . ` . ; ; : ;  > > . ' ` - . ' ; : ; ` .  > > _ _ . ' . ' . ' : ; ` .  > > . ' _ _ . ' . ' ` - - . . _ _ _ . _ . ' ; ;  > > ` . . . . . . ' . ' ` ' \"\" \"\" ' ` . ' ; . . . . . . - '  > > ` . . . . . . . - ' ` . . . . . . . . '  > >  > >  > > on fri , 2 mar 2001 vince . j . kaminski @ enron . com wrote :  > >  > > > hello ,  > > >  > > > sorry for a delay in getting back to you .  > > > we would like very much to offer you a summer internship .  > > >  > > > please , let me know if you are interested .  > > >  > > > vince kaminski  > > >  > > >  > >  > >  > >  > >  > >  > >  >  >  >  >  >  >\",0\n\"Subject: congratulations ! ! !  vince :  congratulations on your promotion ! !  barbara\",0\n\"Subject: jacob feedback  vince ,  chonawee and tom halliburton had feedback about jacob to me .  tom ' s feedback is what he does for pros is actually too simple . their so - called  trading system is actually a scheduling system .  my impression is that jacob is good at selling himself , his knowledge  of finance and derivatives is very limited .  zimin  - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 04 / 11 / 2001 03 : 31 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  chonawee supatgiat @ enron  03 / 21 / 2001 07 : 28 pm  to : zimin lu / hou / ect @ ect  cc : tom halliburton / corp / enron @ enron  subject : jacob feedback  i asked jacob two questions to check his basic knowledge . he answered correctly in the optimization question so i believe that he has a good foundation on his optimization skill . i have a doubt about his stochastic skill because he took only one course in stochastic processes and his previous models are simple deterministic models . if we had more interview time i would be able to check his stochastic and modeling skills .  he completely failed to answer the second question , which is to check his basic risk management skill . it is clear to me that he has a very weak background in finance and risk management . he does not understand the relationship between a discount rate and risk . he showed some weakness in annuity calculation .  in conclusion , i feel that he has good basic in optimization but a very weak background in finance . based on his experiences , i have a doubt on his advance optimization skills , such as his stochastic skill and his ability to attack a complex optimization problem . i would recommend a second - round interview if he will be solving a complex - optimization problem .  - chonawee\",0\n\"Subject: darden case study on \"\" the transformation of enron \"\"  shirley ,  please , provide this info .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 30 / 2000  02 : 33 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron north america corp .  from : sherri sera @ enron 03 / 30 / 2000 12 : 47 pm  to : lou l pai / hou / ees @ ees , gene humphrey / hou / ect @ ect , ken rice / enron  communications @ enron communications , andrew s fastow / hou / ect @ ect , vince j  kaminski / hou / ect @ ect  cc : karen owens / hou / ees @ ees , bert frazier / hou / ect @ ect , mercedes estrada / enron  communications @ enron communications , bridget maronge / hou / ect @ ect , mark  palmer / corp / enron @ enron , katherine brown / corp / enron @ enron , fabricio  soares / hou / ect @ ect  subject : darden case study on \"\" the transformation of enron \"\"  gentlemen ,  jeff has asked that each of you make time to meet with professors bruner and  bodily regardig the above referenced case ( i have attached a project overview  for your review ) .  they are scheduled to be in houston on tuesday , april 18 , to begin conducting  interviews ( some of which may be videotaped ) . please let me know your  availablility on that date .  thanks for your help , and please don ' t hesitate to call me ( x 3 - 5984 ) should  you need additional information . srs\",0\n\"Subject: meeting  tracy ,  confirming the meeting tomorrow , thursday , 1 : 30 p . m .  vince kaminski\",0\n\"Subject: re : telephone interview with the enron research group  hi ramaswamy :  thank you for responding so promptly . i have scheduled the telephone  interview for monday , march 19 th from 10 : 30 - 11 : 30 am ( central time ) .  please let me know if this is not convenient .  they will call you at ( 773 ) 324 - 5077 .  sincerely ,  shirley crenshaw  \"\" ramaswamy garimella \"\" on 03 / 05 / 2001  09 : 27 : 26 pm  to : shirley . crenshaw @ enron . com  cc : ramaswamy _ garimella @ hotmail . com  subject : re : telephone interview with the enron research group  hi shirley ,  thanks for providing me an opportunity to interview with enron research  group . i have final exams in the next week till march 15 . so , any date from  march 19 onwards will be convenient to me . my phone number is  ( 773 ) 324 - 5077 . any time after 10 a . m will be fine with me .  please let me know the date and time that will be convenient to vince  kaminski ' s group . thank you very much .  best regards ,  ramaswamy garimella .  - - - - original message follows - - - -  from : shirley . crenshaw @ enron . com  to : ramaswamy _ garimella @ hotmail . com  cc : vince . j . kaminski @ enron . com , stinson . gibner @ enron . com ,  vasant . shanbhogue @ enron . com , tanya . tamarchenko @ enron . com  subject : telephone interview with the enron research group  date : mon , 5 mar 2001 14 : 38 : 18 - 0600  mime - version : 1 . 0  received : from [ 192 . 152 . 140 . 9 ] by hotmail . com ( 3 . 2 ) with esmtp id  mhotmailbc 6 d 45780030 d 82197 daco 988 co 99 a 960 ; mon mar 05 12 : 43 : 36 2001  received : from mailman . enron . com ( mailman . enron . com [ 192 . 168 . 189 . 66 ] ) by  postmaster . enron . com ( 8 . 8 . 8 / 8 . 8 . 8 / postmaster - 1 . 00 ) with esmtp id uaal 0526 for  ; mon , 5 mar 2001 20 : 43 : 35 gmt  received : from nahou - msmswo 2 px . corp . enron . com ( [ 172 . 28 . 10 . 38 ] ) by  mailman . enron . com ( 8 . 10 . 1 / 8 . 10 . 1 / corp - 1 . 05 ) with esmtp id f 25 khzal 4665 for ;  mon , 5 mar 2001 14 : 43 : 35 - 0600 ( cst )  received : from ene - mtaol . enron . com ( unverified ) by  nahou - msmswo 2 px . corp . enron . com ( content technologies smtprs 4 . 1 . 5 ) with  esmtp id for ; mon , 5 mar 2001 14 : 43 : 41 - 0600\",0\n\"Subject: enron in india  mark ,  two points .  1 . you probably know about it already . abhay mehta , the author of \"\" power  play \"\" , is on a  tour of the united states . please , take a look at the information about a  meeting last sunday  at stanford university . the web site address is given below . my wife went to  the presentation and told me it was quite critical about enron . about 40  people attended .  2 . i was approached by john martin , a professor of finance at baylor , to  write jointly an  academic paper on enron for a financial journal . he wanted to work on an  article on ebs .  i have suggested a different topic : enron - case study of a company  reinventing itself .  i made a few points to john :  a . enron ' s evolution did not just happen by accident .  it was a result of implementation of a far - reaching  strategy developed by the management .  b . in the process of its evolution enron changed its environment . i came up  with a term  \"\" proactive evolution \"\" , as opposed to \"\" reactive evolution . \"\"  c . the strategy included many elements , including emphasis on the quality  of human resources , changing corporate attitudes to risk taking and employee  empowerment .  d . there are very few companies that match enron ' s experience and  accomplishemnts .  the paper could become a standard reading at the mba courses on corporate  strategy  and would help greatly our recruiting efforts .  writing the paper would require interviews with ken , jeff and a few other key  players .  let me know what you thing about it . john is really excited about this paper .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 09 / 2000  08 : 07 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  vkaminski @ aol . com on 10 / 07 / 2000 05 : 29 : 41 pm  to : vkamins @ enron . com  cc :  subject : enron  http : / / www . stanford . edu / group / sia /  stanford india association\",0\n\"Subject: re : european energy 2000  vince ,  i ' ve been invited to speak at the conference below in amsterdam in april .  this is along with the monte carlo conference a week later which stinson has  forwarded my name for . both are by eprm , and shouldn ' t take too much time to  prepare as will be on similar topics to the previous conference at which i  spoke . should i go to both , or start prioritising these events ?  ben  - - - - - - - - - - - - - - - - - - - - - - forwarded by benjamin parsons / lon / ect on 20 / 12 / 99  17 : 03 - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron capital & trade resources corp .  from : \"\" angela adedeji \"\"  20 / 12 / 99 11 : 57  please respond to \"\" angela adedeji \"\"  to : benjamin parsons / lon / ect @ ect  cc :  subject : european energy 2000  dear ben  re : european energy 2000 , 3 & 4 april , amsterdam  it is with great pleasure that i enclose details of eprm ' s 3 rd annual  congress . i would like to invite you to become involved as a speaker on the  programme and / or on either of the two seminars on modelling power prices and  var .  the following sessions are currently available on the main programme :  - trouble shooting roundtables -  var  forward curve  electricity derivatives  heding  - developing and implementing enterprise wide risk management  - quantifying and minimising operational risk  unfortunately this project needs to be signed off before christmas . i would  therefore appreciate receiving a response from at your earliest convenience .  i hope we can work together on this event and i look forward to hearing from  you soon .  kind regards  angela adedeji  senior producer , energy conferences & courses  tel - 0171 484 9886  fax - 0171 484 9888  email - aadedeji @ risk . co . uk  - attl . htm  - fgrid . doc  - seminar . doc  - seminar 2 . doc\",0\n\"Subject: re : grades  mr . kaminsky ,  i still need grades for :  israni , rakhi  lu , feng  planck , jeffrey  so , winny  taylor , orlando  wankhade , sanjay  zhang , ning  i will be available by e - mail this evening or by phone ( 5 : 30 or so ) at  713 - 668 - 1704 . ? i just called the registrar ' s office and if i bring in the  grades by 8 : 30 tomorrow morning we will be fine . ? please advise .  thanks for your help . - pam  at 08 : 23 am 5 / 4 / 01 - 0500 , vince . j . kaminski @ enron . com wrote :  pam ,  the last group .  please , let me know if any name is missing .  ( embedded image moved to file : pic 25177 . pcx )  grade : a  thanks a lot . it was a pleasure working with you .  vince kaminski\",0\n\"Subject: organization announcement  given the growth in ees it has become apparent that it is time to consolidate  the risk functions between ees and ews . this will provide ees with the  systems , resources and risk expertise of the wholesale energy groups  necessary for it to continue to grow and take advantage of current market  opportunities .  with this in mind and in agreement with the management of ees , two new risk  groups inside enron americas will be formed to provide ees with pricing ,  structuring , retail and wholesale commodity risk management , logistics and  back - office services . these groups main function is to provide these  services to ees . we have asked rogers herndon , currently vice  president - trading in the eastern power group to manage this function in the  eastern interconnect ( this includes both gas and power ) . rogers will  continue to report to kevin presto . we have asked don black , formerly vice  president - ees risk management and sourcing , to manage this function in the  western u . s . don will manage this group from houston and will report to tim  belden .  these groups will work very closely with ees to pursue shared goals while  ensuring close coordination with the wholesale gas and power trading  organizations .  these changes are effective immediately . please congratulate rogers and don  on their new roles .  john lavorato & louise kitchen\",0\n\"Subject: alp presentation  this will be in eb 49 cl  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 10 / 2001  08 : 22 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  04 / 10 / 2001 08 : 13 am  to : barrett @ rice . edu , uecker @ rice . edu , cmiller @ rice . edu , lounghrid @ rice . edu ,  luigical @ rice . edu  cc : vince j kaminski / hou / ect @ ect , christie patrick / hou / ect @ ect , shirley  crenshaw / hou / ect @ ect , kenneth parkhill / na / enron @ enron  subject : alp presentation  on behalf of enron corp . i would like to invite you to an alp project  presentation by a group of students  of jesse h . jones graduate school of management , rice university .  the students will present the results of a research project regarding  electronic trading  platforms in the energy industry .  the presentation will be held on may 7 , at 4 : 00 p . m . at enron , 1400 smith .  we would also like to invite you to dinner , following the presentation .  vince kaminski  vincent kaminski  managing director - research  enron corp .  1400 smith street  room ebl 962  houston , tx 77002 - 7361  phone : ( 713 ) 853 3848  ( 713 ) 410 5396 ( cell )  fax : ( 713 ) 646 2503  e - mail : vkamins @ enron . com\",0\n\"Subject: re : invitation to speak at power 2000  hi vince  that ' s great - delighted you ' ll be participating . i ' ve put you down as the  chairman for stream 1 , day 1 on 9 may 2000 .  by the way , is your job title still vp , head of research at enron north  america ? i need to know for the brochure .  if i don ' t speak to you before the new year , i wish you a very merry xmas  and a happy new millennium !  emma  - - - - - original message - - - - -  from : vince j kaminski  to : emma wolfin  cc : vince j kaminski  date : thursday , december 16 , 1999 9 : 02 am  subject : re : invitation to speak at power 2000  >  >  > emma ,  >  > mergers and acquisitions are not my cup of tea .  >  > chairing stream 1 on day 1 seems to be a better match .  >  > vince  >  >  >  >  >  > \"\" emma wolfin \"\" on 12 / 15 / 99 10 : 51 : 34 am  >  > to : vince j kaminski / hou / ect @ ect  > cc :  > subject : re : invitation to speak at power 2000  >  >  >  >  > hi vince  >  > thanks for getting back to me quickly ! as it happens , all of the sessions  > you suggested are already taken !  >  > so , would you be interested in chairing either stream 1 on day 1 of the  > conference - \"\" pricing and trading in the us power market \"\" or stream 3 on  > day 2 of the conference - \"\" latest developments in the us energy industry \"\" .  > for your information , the people presenting on day 1 in stream 1 include :  >  > - spyros maragos , dynegy on volatility  > - sanjeev khanna , pg & e on correlation  > - gary morsches , southern on optimising information to accurately price and  > trade electricity  > - blake johnson , stanford university on modelling power prices  > - craig pirrong , olin school of business , washington university on building  > the optimal forward curve  >  > on day 2 , stream 3 , there are only 3 talks in that stream , as after lunch  we  > will be breaking for plenary sessions and the industry briefing sessions  > too . but the people who will be speaking in that stream are :  >  > - venu nagali , stanford university on real options  > - ram challa , sithe energies ( he was formerly at bankers trust ) on  > generation assets  >  > i have the slot on mergers and acquisitions in stream 3 on day 2 as still  > available but i ' m not sure if that session is your area of speciality ? let  > me know .  >  > thanks vince and very much looking forward to working with you again .  >  > emma  >  >  > - - - - - original message - - - - -  > from : vince j kaminski  > to : emma wolfin  > cc : vince j kaminski  > date : wednesday , december 15 , 1999 11 : 36 am  > subject : re : invitation to speak at power 2000  >  >  > >  > >  > > emma ,  > >  > > it ' s your choice . i can chair the session of day 2 or speak on one of  these  > > topics .  > > please , let me know what works for you .  > >  > > possible presentations :  > >  > > evaluating the effectiveness of insurance as a risk management tool  > >  > > or  > >  > > applying real option theory to value power plants  > >  > > or  > >  > > overcoming the difficulties of accurately estimating volatility  > >  > >  > > vince  > >  > >  > >  > >  > >  > > \"\" emma wolfin \"\" on 12 / 14 / 99 04 : 08 : 03 pm  > >  > > to : vince j kaminski / hou / ect @ ect  > > cc :  > > subject : invitation to speak at power 2000  > >  > >  > >  > >  > > hi vince  > >  > > it is my great pleasure to invite you to speak at power 2000 which will be  > > in houston on 9 & 10 may 2000 .  > >  > > would you be interested in chairing one of the streams on day 2 of the  > > conference ? or making a full presentation on one of the days ? please let  me  > > know which talks interest you . obviously , some of the talks are no longer  > > available but i would like to give you a choice as much as possible .  please  > > could you get back to me asap on 212 925 1864 ext 151 or by return email .  > >  > > i very much hope you can make the dates as i ' m very keen to have you  > > participate at power . not to flatter you unnecessarily , but i know that a  > > lot of people come to our conferences to hear what you have to say .  > >  > > best regards  > >  > > emma  > >  > >  > >  > >  > >  >  >  >  >  >  >\",0\n\"Subject: ben zhang : nuts !  i also heard from joe toussaint that ben ' s boss counter - offered with a bump  in salary .  - - - - - - - - - - - - - - - - - - - - - - forwarded by grant masson / hou / ect on 09 / 18 / 2000 09 : 24  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" zhang , ben \"\" on 09 / 18 / 2000 07 : 58 : 58 am  to : grant . masson @ enron . com  cc :  subject : thanks  dear mr . masson :  thank you very much for offering me an opportunity to work in your group .  however because of family reasons , i have to regrettably inform you that i  will not be able to make the move at this time . it has been a great  experience working with you on this process , and i greatly appreciate your  help .  i realized that this would have been a great opportunity for me , and i thank  you very much for everything . i hope you will still consider me for a  position in the future .  sincerely ,  ben\",0\n\"Subject: biliana ' s resume  geynille ,  i understand you are in charge of recruiting at the uofh . i am forwarding to  you the resume  of one of the students of the university of houston .  she is involved with the international organization called aiesec and i was  most  impressed by her organizational skills and professional attitude . i used  to work as a volunteer for this organization many years ago and i am  still helping their local chapter .  as far as i know , she signed up for an interview with enron .  vince kaminski  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 09 / 29 / 2000  02 : 13 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  biliana pehlivanova on 09 / 28 / 2000 06 : 02 : 20 pm  to : vkamins @ enron . com  cc :  subject : biliana ' s resume  mr . kaminski ,  thank you for referring me to your recruitment  representative .  attached is my resume . i would appreciate you letting  me know the name of the hr person whom i can folow up  with .  best regards ,  biliana  = = = = =  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  biliana pehlivanova  vice president of incoming exchange  aiesec houston  713 743 - 4927  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  do you yahoo ! ?  yahoo ! photos - 35 mm quality prints , now get 15 free !  http : / / photos . yahoo . com /  - biliana ' s resume . doc\",0\n\"Subject: lng meeting  hello all :  the lng meeting that was to be held this morning has been changed to  tomorrow , wednesday , the 17 th at 11 : 00 am in ebl 938 .  thanks !  shirley  3 - 5290\",0\n\"Subject: re : vacation in march , april  stinson ,  no problem .  vince  stinson gibner  02 / 15 / 2001 06 : 41 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : vacation in march , april  vince ,  if possible i would like to take some vacation time in march and april .  specifically the week of hisd spring break , which is march 12 - 16 . also , i  would like to take march 21 - 30 .  please let me know if this is ok .  regards ,  stinson\",0\n\"Subject: resume of a former fx trader  i am forwarding the resume of wendell licon who works for enron  in the hr department ( executive compensation ) . he used to be an  fx trader . i am thinking about moving him to research when his current boss  is ready to release him .  i think , however , that you  should take a look at him as well and see if he fits your needs .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 07 / 11 / 2000  04 : 29 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  wendell licon @ enron  07 / 11 / 2000 04 : 04 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : resume  vince ,  per your request , i ' ve attached a copy of my resume . please let me know if  you have any questions .  regards ,  wendell\",0\n\"Subject: re : fyi : uk var issues  vince ,  uk var breached the limit last week .  uk traders asked us to review the correlations across uk gas and power as  well as the correlations across efa slots .  we did part of the work last week .  now we ' ll update the correlations based on historical prices .  tanya .  richard lewis  10 / 08 / 2000 07 : 31 am  to : tanya tamarchenko / hou / ect @ ect  cc : oliver gaylard / lon / ect @ ect , james new / lon / ect @ ect , steven  leppard / lon / ect @ ect , rudy dautel / hou / ect @ ect , kirstee hewitt / lon / ect @ ect ,  naveen andrews / corp / enron @ enron , david port / market risk / corp / enron @ enron , ted  murphy / hou / ect @ ect , simon hastings / lon / ect @ ect , paul d ' arcy / lon / ect @ ect , amir  ghodsian / lon / ect @ ect  subject : re : var correlation scenarios  thanks tanya , these are interesting results . i am on vacation next week , so  here are my current thoughts . i am contactable on my mobile if necessary .  gas to power correlations  i see your point about gas to power correlation only affecting var for the  combined gas and power portfolio , and this raises an interesting point : at a  conservative 30 % long term correlation , combined var is olmm less than  previously expected - so how does this affect the limit breach ? strictly  speaking , we are still over our uk power limit , but the limit was set when we  were assuming no gas power correlation and therefore a higher portfolio var .  a suggested way forward given the importance of the spread options to the uk  gas and power books -  can we allocate to the gas and power books a share of the reduction in  portfolio var - ie [ reduction = portfolio var - sum ( power var + gas var ) ] ?  also , if i understand your mail correctly , matrix 1 implies 55 % gas power  correlation is consistent with our correlation curves , and this reduces total  var by ol . 8 mm .  efa slot correlations  the issue of whether our existing efa to efa correlation matrix is correct is  a separate issue . i don ' t understand where the matrix 2 efa to efa  correlations come from , but i am happy for you to run some historical  correlations from the forward curves ( use the first 2 years , i would  suggest ) . our original matrix was based on historicals , but the analysis is  worth doing again . your matrix 2 results certainly indicate how important  these correlations are .  closing thoughts  friday ' s trading left us longer so i would not expect a limit breach on  monday . we are still reviewing the shape of the long term curve , and i ' d  like to wait until both simon hastings and i are back in the office ( monday  week ) before finalising this .  regards  richard  tanya tamarchenko  06 / 10 / 2000 22 : 59  to : oliver gaylard / lon / ect @ ect , richard lewis / lon / ect @ ect , james  new / lon / ect @ ect , steven leppard / lon / ect @ ect , rudy dautel / hou / ect @ ect , kirstee  hewitt / lon / ect @ ect , naveen andrews / corp / enron @ enron , david port / market  risk / corp / enron @ enron , ted murphy / hou / ect @ ect  cc :  subject : re : var correlation scenarios  everybody ,  oliver sent us the var number for different correlations for uk - power  portfolio separately from uk - gas portfolio .  first , if var is calculated accurately the correlation between power and gas  curves should not affect var number for power and var number for gas , only  the aggregate number will be affected . the changes you see are due to the  fact that we use monte - carlo simulation method ,  which accuracy depends on the number of simulations . even if we don ' t change  the correlations but use different realizations of random numbers ,  we get slightly different result from the model .  so : to see the effect of using different correlations between gas and power  we should look at the aggregate number .  i calculated weighted correlations based on 2 curves i got from paul . as the  weights along the term structure i used the product of price , position and  volatility for each time bucket for gas and each of efa slots . the results  are shown below :  inserting these numbers into the original correlation matrix produced  negatively definite correlation matrix , which brakes var engine .  correlation matrix for any set of random variables is non - negative by  definition , and remains non - negatively definite if calculated properly based  on any historical data .  here , according to our phone discussion , we started experimenting with  correlations , assuming the same correlation for each efa slot and et elec  versus gas . i am sending you the spreadsheet which summaries the results . in  addition to the aggregate var numbers for the runs oliver did , you can see  the var numbers based on correlation matrix 1 and matrix 2 . in matrix 1 the  correlations across efa slots are identical to these in original matrix .  i obtained this matrix by trial and error . matrix 2 is produces by naveen  using finger ' s algorithm , it differs from original matrix across efa slots as  well  as in power versus gas correlations and gives higher var than matrix 1 does .  concluding : we will look at the historical forward prices and try to  calculate historical correlations from them .  tanya .  oliver gaylard  10 / 06 / 2000 01 : 50 pm  to : richard lewis / lon / ect @ ect , james new / lon / ect @ ect , steven  leppard / lon / ect @ ect , rudy dautel / hou / ect @ ect , kirstee hewitt / lon / ect @ ect ,  naveen andrews / corp / enron @ enron , tanya tamarchenko / hou / ect @ ect , david  port / market risk / corp / enron @ enron  cc :  subject : var correlation scenarios  the results were as follows when changing the gas / power correlations :  correlation var - uk power book var - uk gas book  0 . 0 ol 0 . 405 mm o 3 . 180 mm  0 . 1 ol 0 . 134 mm o 3 . 197 mm  0 . 2 ol 0 . 270 mm o 3 . 185 mm  0 . 3 ol 0 . 030 mm o 3 . 245 mm  0 . 4 cholesky decomposition failed ( not positive definite )  0 . 5 cholesky decomposition failed ( not positive definite )  0 . 6 cholesky decomposition failed ( not positive definite )  0 . 7 cholesky decomposition failed ( not positive definite )  0 . 8 cholesky decomposition failed ( not positive definite )  0 . 9 cholesky decomposition failed ( not positive definite )  1 . 0 cholesky decomposition failed ( not positive definite )  peaks and off peaks were treated the same to avoid violating the matrix ' s  integrity .  interesting to note that for a higher correlation of 0 . 2 the power var  increases which is counter to intuition . this implies that we need to look  into how the correlations are being applied within the model . once we can  derive single correlations from the term structure , is the next action to  understand how they are being applied and whether the model captures the p + l  volatility in the spread option deals .  from 0 . 4 onwards the var calculation failed .  oliver\",0\n\"Subject: addition to enron - summer internships  kristin  another tiger .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 05 / 2001  09 : 47 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  fap on 02 / 05 / 2001 08 : 34 : 26 am  to : \"\" ' vkamins @ enron . com ' \"\"  cc : fap , \"\" ' mvittal @ wharton . upenn . edu ' \"\"  subject : addition to enron - summer internships  vince :  please include ram vittal to the summer internship list , if you have not  already done so .  according to my count , that make a total of 8 students from the enron tiger  team who have a desire to work with enron .  thanks ,  donna  - - - - - original message - - - - -  from : vittal , maheshram [ mailto : mvittal @ wharton . upenn . edu ]  sent : friday , february 02 , 2001 10 : 17 pm  to : ' fap '  subject : re : call from enron  donna :  i had submitted my resume directly to their recruiting office and haven ' t  heard from them . i would be very willing to reforward my resume , if  required .  thanks ,  ram\",0\n\"Subject: alp presentation  hi vince ! !  i ' ll take care of the invitations and i am planning to be at the concert on  saturday !  thanks ! !  - - christie .  - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 05 / 01 / 2001  09 : 14 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  05 / 01 / 2001 04 : 55 pm  to : christie patrick / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , kenneth parkhill / na / enron @ enron , shirley  crenshaw / hou / ect @ ect , melinda mccarty / corp / enron @ enron  subject : alp presentation  christie ,  shirley reserved room 49 cl for monday 4 : 00 p . m . presentation .  can you issue the formal invitation to our guests with the game / dinner  details ? i don ' t have all the details regarding the enron field  box and time . i am out most of the day on wednesday but we can  discuss the details on thursday .  hope to see you on saturday at the concert .  vince\",0\n\"Subject: marketing for your espeak session  vince :  thanks for your time earlier this week ; i ' m looking forward to your espeak  event .  sarah and i met with our etv contact yesterday , and we will be able to put a  bulleted list on the elevator screens to advertise your espeak . please let  me know what you would like us to post for you , and we will do the rest !  we also have plans to market specifically to the trader community here at  enron , so you should get a high participation rate , especially from those  groups .  thanks , again .  - er\",0\n\"Subject: lng hedging  vince ,  fyi . this is something the team has been working on with krishna .  regards ,  sandeep .  - - - - - - - - - - - - - - - - - - - - - - forwarded by sandeep kohli / enron _ development on  12 / 21 / 2000 04 : 03 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  sandeep kohli  12 / 21 / 2000 04 : 00 pm  to : james a hughes / enron _ development @ enron _ development  cc :  subject : lng hedging  jim ,  i am attaching below a small draft note prepared by anshuman on lng hedging .  it talks of two products :  ( 1 ) volumetric options ( where we buy a call on 100 % of the volumes and sell a  put on 50 % of the volumes to finance the call ) , and  ( 2 ) ratio derivative where we buy two calls at a higher price , and sell one  at a lower price to finance it . this is not one that the traders agree to ,  since at the upper price , the calls bought are just at the money , while the  sold call is in the money , and will cost the seller .  hence , only option 1 is useful . it could provide risk mitigation in the high  price scenario , while allowing some participation in low prices . to test it ,  we used march 2001 period . to have it cost neutral , we would buy a call at  $ 26 , and sell the put at $ 25 . 15 .  as we bounce these ideas , i think it is very important that we work closely  with the global markets group . the team on the ground knows the contracts  better , and maybe able to give you insights on what can be sold to mseb .  would love to discuss the same with you .  regards ,  sandeep .\",0\n\"Subject: cal berkeley general presentation confirmation - 10 / 16 / 00  we have been able to secure rooms at the claremont hotel in berkeley . please  note the confirmation numbers listed below . thanks !  claremont resort and spa - berkeley  41 tunnel road  berkeley , ca 94705  510 - 843 - 3000  from oakland airport : go straight out of the airport on airport blvd . turn  right on hegenberger road . from hegenberger  follow signs for 880 north . follow hwy 880 north and follow signs for hwy 24  to walnut creek . take the claremont avenue exit , turning  left at the bottom of the exit onto claremont . turn right on ashby avenue  ( 5 th stoplight ) and the hotel ' s entrance is two blocks ahead on the left .  from san francisco airport : follow signs for hwy 101 north to san francisco ,  take hwy 80 east to the bay bridge to oakland .  cross bay bridge on hwy 80 , follow to 580 east , and exit onto hwy 24 to  berkeley / walnut creek . follow hwy 880 north and follow signs for  hwy 24 to walnut creek . take the claremont avenue exit , turning left at the  bottom of the exit onto claremont . turn right on ashby avenue  ( 5 th stoplight ) and the hotel ' s entrance is two blocks ahead on the left .  - - - - - - - - - - - - - - - - - - - - - - forwarded by ashley baxter / corp / enron on 10 / 12 / 2000  07 : 15 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  lara marie berry  10 / 10 / 2000 04 : 58 pm  to : vince j kaminski / hou / ect @ ect , john pavetto / corp / enron @ enron , radu  tutos / enron communications @ enron communications , denise  rancour / corp / enron @ enron  cc : ashley baxter / corp / enron @ enron , simone lewis / na / enron @ enron  subject : cal berkeley general presentation confirmation - 10 / 16 / 00  cal berkeley  general presentation  monday , october 16 th  this note is to confirm that you are scheduled to attend the cal berkeley  general presentation on monday october 16 th . this e - mail should contain any  information that you need to know pertaining to your trip . please print out  a hard copy and bring with you in case of emergency . if you have any  questions , there is a list of contacts listed below .  once again , thank you for offering to help with technology recruiting at cal  berkeley . see you on campus !  lara  the general presentation will be held :  monday , october 16 th  the faculty club  seaborg room - 2 nd floor  7 : 00 p . m . to 9 : 00 p . m .  * * please plan on arriving at the general presentation by 6 : 00 p . m .  the general presentation is designed to educate the students on enron and the  global technology track . following the presentation we will invite the  students to ask questions about enron and the global technology track .  please plan to arrive at the general presentation by 6 : 00 p . m . it is  business casual attire .  flight arrangements :  you are responsible for scheduling your own flight arrangements with your  preferred airline provider . please schedule your flight to arrive to the san  francisco airport on monday , october 16 th . please remember that there can  be significant traffic over the bay bridge and to get into town at least an  hour prior to the event . please make all flight arrangements through the  travel agency in the park so that we are able to take advantage of discount  fares . if you do not have a representative that you currently use at the  travel agency in the park - feel free to contact liz mendiola at 713 - 860 - 1140 .  rental car arrangements :  once again , you are responsible for scheduling your own rental car  arrangements with your preferred provider . your travel agency in the park  representative should be able to assist you with rental car reservations .  hotel arrangements :  hotel reservations are currently being made by our representative at the  travel agency in the park .  as soon as we have confirmation numbers , i will let you know .  san francisco airport to the faculty club  take 101 northbound  exit to san francisco / oakland bay bridge  exit to 1 - 80 east  exit on university ave .  east on university avenue for 1 . 5 miles to oxford st .  right on oxford st . , left on durant ave . , left on piedmont  you will see parking on the right side  once again , thank you so much for helping with the general presentation .  below are some last minute tips to keep in mind :  please remember to dress business casual .  please remember to bring some business cards for students .  i have attached a pdf version of the global technology track brochure .  please forward all expense receipts to grace garcia . she will handle any  expenses incurred for this recruiting trip including : flight costs , hotel ,  car , food , valet , etc . however , you must turn in some sort of receipt - so  be sure and save them !  ashley baxter work : 713 - 853 - 3589  cell : 281 - 793 - 0567  lara berry work : 713 - 345 - 8320  cell : 713 - 857 - 1034  grace garcia work : 713 - 853 - 7252  simone lewis work : 713 - 853 - 1645\",0\n\"Subject: re : petronas benchmarking visit  khairuddin ,  thanks for your message . the fax has been sent .  vince  khairuddinbmjaafar @ petronas . com . my on 01 / 17 / 2001 01 : 50 : 36 am  please respond to khairuddin _ mjaafar @ petronas . com . my  to : vkamins @ ect . enron . com  cc : azminab @ petronas . com . my  subject : petronas benchmarking visit  dear mr . kaminski ,  pertaining to our visit to your kind company in february , we are required  to obtain visas for the trip . to apply for the visas , the embassy requires  a letter from the us company confirming our meeting or visit . we would  really be grateful if you can fax us a confirmation letter so that we can  proceed with our visa application . please fax the letter to :  mr . nur azmin abu bakar  head , risk assessment and control  corporate risk management unit ,  corporate planning and development division  level 71 , tower 1 , petronas twin towers ,  kuala lumpur city centre ,  50088 kuala lumpur ,  malaysia  fax : ( 603 ) 2051 - 3252  your speedy reply is greatly appreciated .  thank you and regards ,  khairuddin .  disclaimer : this e - mail and any files transmitted with it ( \"\" message \"\" )  is intended only for the use of the recipient ( s ) named above and may  contain confidential information . you are hereby notified that the  taking of any action in reliance upon , or any review , retransmission ,  dissemination , distribution , printing or copying of this message or any  part thereof by anyone other than the intended recipient ( s ) is strictly  prohibited . if you have received this message in error , you should  delete this message immediately and advise the sender by return e - mail .  opinions , conclusions and other information in this message that do not  relate to the official business of petronas or its group of companies  shall be understood as neither given nor endorsed by petronas or any of  the companies within the group .  ( embedded image moved to file : pico 5415 . pcx )  - pico 5415 . pcx\",0\n\"Subject: re : ( no subject )  thanks vince .  vince j kaminski wrote :  > blake ,  >  > i forwarded the azure presentation to greg whalley recommending  > that he takes a look at it .  >  > vince\",0\n\"Subject: jury duty  shirley ,  i have been summoned for jury duty and plan to be out tomorrow , wednesday ,  may 2 .  thanks ,  stinson\",0\n\"Subject: re : fw : fw : visit to enron by professor nalin kulatilaka of boston  university  hi nalin ,  martin lin asked if you have a paper \"\" or something \"\" related to the lecture  you will be giving to us on may 17 th .  ciao ,  iris  - - - - - original message - - - - -  from : lin , martin  sent : monday , april 30 , 2001 8 : 52 am  to : mack , iris  subject : re : fw : fw : visit to enron by professor nalin kulatilaka of boston  university  is there a paper or something related to this topic that we can look over  beforehand ?  thanks ,  martin  iris mack / enron @ enronxgate 04 / 27 / 01 05 : 42 pm to : chonawee  supatgiat / corp / enron @ enron , shalesh ganjoo / enron communications @ enron  communications , martin lin / hou / ect @ ect , martin lin / contractor / enron  communications @ enron communications cc : subject : fw : fw : visit to enron by  professor nalin kulatilaka of boston university  fyi  - - - - - original message - - - - -  from : mack , iris  sent : monday , april 23 , 2001 2 : 45 pm  to : crenshaw , shirley ; crenshaw , shirley ; dupont , anita  cc : kaminski , vince ; ' nalink @ bu . edu '  subject : fw : fw : visit to enron by professor nalin kulatilaka of boston  university  hi ,  here is the title and abstract for professor kulatilaka ' s talk on may 17 th  at our 11 : 30 am research group luncheon / seminar .  iris  title : \"\" using the mobile internet to make new markets \"\"  abstract :  professor kulatilaka will talk about some new ideas that he is working on  which involve  using the micro billing / payments capability of a packet - switched wireless  network to create new markets . the potential markets range from spot  markets for local spectrum to congestion - based pricing for highways .\",0\n\"Subject: re : real time var  tanya ,  thank you for the information . i agree that we need to talk about more what  and how global valuation can facilitate a more competitive var engine .  winston and nilay are going to give my group a presentation regarding the  current var system next tuesday . i am sure the presentation will help my team  better understand the requirements of var engine on global valuation . please  join us if you have the time . i would also appreciate your insight on this  matter .  thanks  zhiyong  tanya tamarchenko  01 / 08 / 2001 11 : 09 am  to : zhiyong wei / hou / ect @ ect , nilay basu / hou / ect @ ect , wenyao jia / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : real time var  ziyong ,  we met with nilay and winston last week regarding real time var calculation  possibility .  winston has an overview of var system which consists of :  - main curves simulation ;  - curve server ;  - book server ;  - id server  - clients  as a first step i want to see where the time is spent when var runs , which  percentages of time are spent by each part .  nilay is going to get this information for a few portfolios ( agg - ect , agg - gas  and ng - price - prc ) .  preliminary information : currently var run takes about 1 hour , half of this  time taken by \"\" book server \"\"  ( we have about 4500 lower level portfolios in the portfolio hierarchy , about  5500 portfolios all together ) ,  most of the rest is taken by \"\" clients \"\" , \"\" main curves simulation \"\" does not  take much time .  i am looking also at using alternative methods of faster var calculation , but  having so many portfolios in the hierarchy will slow down  even analytical var .  we also have to think more about what \"\" real time \"\" calculation means and what  it should produce .  tanya\",0\n\"Subject: ftr team ,  the copy of the auction results that you got at yesterday ' s meeting is  incorrect . what happened was when i tried to sort the entire page , i only  highlighted the related column and expected excel 98 would sort the whole  page . ( as steve told me before , i should highlight the whole thing if i try  to do sorting in excel ) . i appolized for the misleading and have redone the  whole thing . thanks for the patience . wish you all have a great weekend .\",0\n\"Subject: re : your questions and requests to judy schlesinger  thanks susan :  however , vince has not received his financial times at all this week . i have  called everyday and they tell me they will send a recovery copy , but so far  we have not received one . is there anyway we could get a copy for him  today ?  your help will be greatly appreciated .  thanks !  enron north america corp .  from : susan l kennedy 06 / 21 / 2000 05 : 12 pm  to : shirley crenshaw / hou / ect @ ect  cc :  subject : re : your questions and requests to judy schlesinger  shirley ,  please find the below answers to the questions you had sent to judy .  financial times - vince ' s subscription does not exprire until january 4 , 2001  vince ' s subscription to power finance & risk - what you recieved was not a  renewal , it was for a free trial that began on june 5 th and ends on june 26 .  please disregard it . his subscription that we recently renewed does not  expire until march 26 , 2001 .  i have sent in payment for vince ' s renewal for oxford energy forum .  if there is anything else that i can help you with , please do not hesitate to  call me .  susan\",0\n\"Subject: re : access to o ; . . .  please , grant access as requested .  vince kaminski  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 09 / 19 / 2000  03 : 41 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  daniel muschar @  enron  09 / 19 / 2000 03 : 27 pm  to : juan padron / na / enron @ enron  cc : vince j kaminski / hou / ect @ ect  subject : re : access to o ; . . .  vince has this under control . he will forward it to the security group .  daniel a . muschar  juan padron  09 / 19 / 2000 02 : 22 pm  to : vince j kaminski / hou / ect @ ect  cc : daniel muschar / aa / corp / enron @ enron  subject : access to o ; . . .  vince , this e - mail is to request access to the o : / research / power  meteorlogy / weather temps / txtemps . xls file . . . i was told by tech - support to  e - mail you with this request and everything would get squared away .  daniel , could you please advise on what to do next . thank you . . .  juan  - - - - - - - - - - - - - - - - - - - - - - forwarded by juan padron / na / enron on 09 / 19 / 2000 02 : 17  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  daniel  muschar  09 / 19 / 2000 09 : 14 am  to : juan padron / na / enron @ enron  cc :  subject : access to o ; . . .  i called security again and here is what is happening :  this request is waiting on the approver . stinson gibner :  here is the info on the user we are waiting on .  stinson ? ? gibner  contact info company info  phone : ( 713 ) 853 - 4748 employee type : enron employee  email : sgibner @ enron . com job title : vp research  location : eb 1963 supervisor : kaminski , wincenty j  fax : ( 713 ) 646 - 2503 contract company : ect resources corp  cellular : company number : 0413  pager : cost center : 0000107043 click here for others in cost center  cost center name : na - research group ena  city : houston  bner or vince kaminski are the approvers for this directory\",0\n\"Subject: re : check and car hire  - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 04 / 03 / 2001 06 : 24  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  tony hamilton @ enron  04 / 03 / 2001 05 : 16 am  to : kevin g moore / hou / ect @ ect  cc :  subject : re : check and car hire  kevin  my wife checked with our bank - it will take up to 10 days for the $ 2000  check to clear .  i checked with enterprise ( the car hire people ) last night and the total bill  will be about $ 1251 - i don ' t have this much left on my credit card , help !  i am really sorry about the hassle this is causing you , but i need some way  for enron to pay directly for the car , that way i won ' t need the $ 2000 check .  many thanks for your help  tony\",0\n\"Subject: re : confirmation of meeting  fyi  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 09 / 28 / 2000  10 : 26 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  wendy . dunford @ arthurandersen . com on 09 / 20 / 2000 10 : 11 : 43 am  to : shirley . crenshaw @ enron . com  cc :  subject : re : confirmation of meeting  vince sounds very busy !  just let me know when he is free and i will sort something out .  thanks  wendy  * * * * * * * * * * * * * * * * * * * internet email confidentiality footer * * * * * * * * * * * * * * * * * * *  privileged / confidential information may be contained in this message . if you  are not the addressee indicated in this message ( or responsible for delivery  of  the message to such person ) , you may not copy or deliver this message to  anyone .  in such case , you should destroy this message and kindly notify the sender by  reply email . please advise immediately if you or your employer do not consent  to  internet email for messages of this kind . opinions , conclusions and other  information in this message that do not relate to the official business of my  firm shall be understood as neither given nor endorsed by it .\",0\n\"Subject: re : hi !  please delete this soon as per jeff ' s request .  krishna .  - - - - - - - - - - - - - - - - - - - - - - forwarded by pinnamaneni krishnarao / hou / ect on  04 / 05 / 2001 03 : 06 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" jeff fleming \"\" on 04 / 05 / 2001 01 : 46 : 26 pm  please respond to  to :  cc :  subject : re : hi !  good to hear from you . things are going pretty well hear , but busy with the  end of the semester coming up .  as for u of h , i guess there are several possibilities depending on what  shane wants to do . the best researcher in their group by far , in my  opinion , is bong - soo lee . but he does more general asset pricing stuff .  minnesota econ phd , really smart . their main derivatives guy is rabon  rabinovich . he ' s done some good work in the past but not very active in the  last five or ten years . or , you could go with ron singer or art warga  ( art ' s more respected and more active ) . these guys are more senior , more  general , and do more research than ramon - - i would guess that they tend to  be the workhorses in terms of advising phd students at u of h .  in any case , please destroy this info as soon as you digest it . i would  hate for my candidate assessments to ever get passed along to the good folks  at u of h .  jeff  jeff fleming  associate professor  jones graduate school of management - - ms 531  rice university  6100 main street  houston , tx 77005  713 / 348 - 4677 ( voice )  713 / 348 - 5251 ( fax )  http : / / www . ruf . rice . edu / ~ jfleming\",0\n\"Subject: re : bfl - jim woods info  al ,  thanks . confirmed for wednesday , next week , 7 : 00 a . m .  vince  al arfsten on 08 / 09 / 2000 01 : 41 : 59 pm  please respond to arfsten @ bflassociates . com  to : vince j kaminski  cc :  subject : re : bfl - jim woods info  vince : jim is confirmed to meet you at 7 : 00 a . m . next wednesday . he will go  to the hostess stand at the atrium restaurant and await you . he is about 5 ' 6 \"\"  brownish hair , glasses , youthful appearance and will be in a sport jacket for  casual attire . i look forward to tallking with you again soon . al arfsten  vince j kaminski wrote :  > al ,  >  > wednesday next week is fine with me . i would prefer to meet earlier  > rather than later . what about 6 : 45 or 7 : 00 ?  >  > vince  >  > al arfsten on 08 / 09 / 2000 11 : 38 : 46 am  >  > please respond to arfsten @ bflassociates . com  >  > to : vkamins @ enron . com  > cc :  > subject : bfl - jim woods info  >  > vince : pursuant to bjorn ' s suggestion and my voice mail message ,  > attached you will find the background information on jim woods . jim is  > not a pure quant and enjoys much more the areas of strategic thinking  > and related processes . from what i can tell , he enjoys the process of  > creating an arguement for a client ' s position in some disputed matter .  > he is looking forward to having an opportunity of meeting you . his  > availability next week is only on wednesday . an early breakfast at the  > hyatt would work great for him . please let me know if that might work .  > if not , when ? al arfsten  >  > ( see attached file : wood jim . doc )  >  > - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  > name : wood jim . doc  > wood jim . doc type : winword file ( application / msword )  > encoding : base 64  > description : mac word 3 . 0\",0\n\"Subject: re : mgmt 656  let me know if you need anything else . - pam  at 11 : 00 am 1 / 26 / 01 - 0600 , you wrote :  > pam  >  > thanks  >  > yes , please , send me the e - mail addresses .  >  > vince  >  >  >  >  >  > pamela vande krol castro on 01 / 26 / 2001 10 : 40 : 17 am  >  > to : vince . j . kaminski @ enron . com  > cc :  > subject : mgmt 656  >  >  > here are your latest rosters . let me know if you would like the spreadsheet  > with their e - mail addresses as well ! - pam ( 6223 )  > ( see attached file : 656 . doc )  >  >  - 656 . xls\",0\n\"Subject: message 3  ps : attached with the flyer of the conference .  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  quentin kerr , email : qkerr @ maths . uq . edu . au  room : 67 - 622 tel : ( 07 ) 33461428  department of mathematics , the university of queensland  - engy . pdf\",0\n\"Subject: elena chilkha  please fill - out the evaluation sheets on elena chilkina .  thanks sorry i didn ' t includ the evalutation form .\",0\n\"Subject: prof . carmona  yannis ,  i have looked at the outline of the proposed course and  find that practically all the topics of the program are the  staple of what we do every day . i don ' t think research should spend  money for this class .  if we want to establish a relationship , we can easily do it  by asking him to work on a research project .  vince\",0\n\"Subject: my new email address  hello -  please note that i have a new email address :  alamonsoff @ riskwaters . com  ?  also , if you have not already submitted a copy of your presentation for the  financial mathematics training course , please let me know the status asap  and if you are planning either to bring copies with you to the course or if  you will be submitting a copy to me . if you plan on bringing copies , please  note to bring 40 copies .  ?  ?  regards ,  amy lamonsoff  training course coordinator\",0\n\"Subject: re : fed ex from iris  molly ,  yes , march 1 would work .  vince  enron north america corp .  from : molly magee 01 / 16 / 2001 03 : 36 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : fed ex from iris  just checking to be sure you ' re okay with a march 1 start date for iris ?  molly  - - - - - - - - - - - - - - - - - - - - - - forwarded by molly magee / hou / ect on 01 / 16 / 2001 03 : 35  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron capital & trade resources corp .  from : \"\" iris mack \"\"  01 / 16 / 2001 03 : 13 pm  to : molly . magee @ enron . com , vince . j . kaminski @ enron . com  cc :  subject : fed ex from iris  hi ,  thanks for the fed ex with the offer letter , and other pertinent  information about enron .  i have signed the letter and returned it to you , along with a couple of  other forms . you should receive these documents via fed ex on tomorrow  morning .  because i have to tie up a few loose ends here in california , i won ' t  be able to start until march lst . i hope that is okay .  thanks so much .  regards ,  iris  get your free download of msn explorer at http : / / explorer . msn . com\",0\n\"Subject: re : var model - some questions  i know nothing about this . since neither research nor energydesk know about  it , all we can do is collect their requirements and provide what they ' re  looking for as a new project . this will require vince ' s input since we ' ll  essentially be sending research models to the outside world .  steve  sharad agnihotri  27 / 02 / 2001 14 : 48  to : steven leppard / lon / ect @ ect  cc :  subject : var model - some questions  steve ,  do you know anything about this ?  sharad  - - - - - - - - - - - - - - - - - - - - - - forwarded by sharad agnihotri / lon / ect on 27 / 02 / 2001  14 : 48 - - - - - - - - - - - - - - - - - - - - - - - - - - -  andreas lorenz  27 / 02 / 2001 14 : 01  to : sharad agnihotri / lon / ect @ ect  cc :  subject : var model - some questions  hi sharad ,  could you please have a look at below var model - the dll file should have  been provided by research ( if some time back . . . )  can you provide any information re  what and how it does it ?  underlying assumptions ?  shortfalls ?  many thanks for your help !  cheers ,\",0\n\"Subject: ( no subject )  dear dr . kaminski :  i am sending the attached letter and a copy of my resume for my application  as a summer intern at enron at the suggestion of my father edward kao . if you  need additional information , please feel free to contact me .  sincerely ,  candice kao  p . s . i am sending a hardcopy of my letter and resume to you today . thank you  once again .  - letter to kaminski . zip\",0\n\"Subject: meetings with petronas on february 8 th  good morning all :  the petronas meetings and presentations will be in eb 3321 on the 8 th .  thanks !  shirley  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 01 / 11 / 2001  09 : 11 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  01 / 08 / 2001 12 : 06 pm  to : rick buy / hou / ect @ ect , david port / market risk / corp / enron @ enron , john l  nowlan / hou / ect @ ect , jeffrey a shankman / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect  subject : re : meeting on feb 8 , 2001  fyi .  this is the list of the petronas executives visiting enron on feb 8 .  i have invited them to lunch . would you like to join me for lunch .  i would like to propose a short courtesy meeting at 10 with jeff / john ( 5 -  10 minutes ) ,  followed by rac / research presentation till 11 : 30 .  vince  p . s . i shall reserve a conference room for this meeting  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 08 / 2001  10 : 02 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  azminab @ petronas . com . my on 01 / 07 / 2001 06 : 37 : 33 pm  to : vince . j . kaminski @ enron . com , shirley . crenshaw @ enron . com ,  khairuddinbmjaafar @ petronas . com . my  cc :  subject : re : meeting on feb 8 , 2001  dear kaminski  4 members from corporate risk management unit  1 . iqbal abdullah - general manager  2 . nur azmin abu bakar - head , risk assessment & controls  3 . zulkifli a rahim - head , risk measurement & systems  4 . adnan adams - head , special projects  regards  vince . j . kaminski @ enron . com on 03 / 01 / 2001 09 : 45 : 02 pm  to : azminab @ petronas . com . my  cc : vince . j . kaminski @ enron . com , shirley . crenshaw @ enron . com  subject : re : meeting on feb 8 , 2001  dear mr . nur azmin abu bakar ,  thanks for your prompt reply .  please , let us know how many members of your team will  visit enron .  i look forward to our meeting on february 8 .  vince kaminski  azminab @ petronas . com . my on 01 / 02 / 2001 06 : 38 : 33 pm  to : vince . j . kaminski @ enron . com , khairuddinbmjaafar @ petronas . com . my ,  shirley . crenshaw @ enron . com  cc :  subject : re : meeting on feb 8 , 2001  dear kaminski ,  happy new year and thank you for the reply . we are honored to have  lunch with you and your team however we have another appointment at  2 . 30 p . m .  regards  vince . j . kaminski @ enron . com on 03 / 01 / 2001 07 : 38 : 19 am  to : azminab @ petronas . com . my  cc : vince . j . kaminski @ enron . com , shirley . crenshaw @ enron . com  subject : meeting on feb 8 , 2001  dear sir ,  i would like to apologize for the delay in responding to your fax .  i was on vacation for the last few days .  i shall be honored to meet your delegation on thursday , february 8 at 10 : 00  a . m .  please , let me know if you will be free for lunch after the meeting .  vince kaminski\",0\n\"Subject: vlady gorny  barbara ,  i called vlady gorny and explained that the presentation by jorion is not  offered  under the umbrella of the seminar sponsored by enron and that it is a  closed meeting for the school faculty .  i don ' t think that enron would open its job interviews to rice observers  who expressed interest and i made this comment to vlady . he is ok with this .  you can let his program director know that i have explained to vlady  that it is a meeting for limited audience and that he does not expect to be  invited .  please , let me know the details of the dinners .  vince\",0\n\"Subject: re : seminar on beyond ols  clayton ,  we can offer the seminar / discussion session on monday , december 18 ,  at 3 : 30 . please , let me know if this would work .  vince  clayton vernon @ enron  12 / 07 / 2000 01 : 55 pm  to : vince j kaminski / hou / ect @ ect  cc : vasant shanbhogue / hou / ect @ ect  subject : seminar on beyond ols  vince -  george is fully enthusiastic for a seminar by research on these ideas and  resource tools . any afternoon is fine to him - we can probably push the time  up to 3 : 00 or so so everyone who needs to cheat to get away from work early  to go shopping can .  clayton\",0\n\"Subject: re : financial engineering associates  it is the special package for options with multiple assets and options on  averages .  - - stinson  vince j kaminski  03 / 06 / 2000 03 : 31 pm  to : stinson gibner / hou / ect @ ect  cc :  subject : financial engineering associates  stinson ,  what is spav ? is it the basket option model ?  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 06 / 2000  03 : 30 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : karla feldman 03 / 06 / 2000 01 : 50 pm  to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect  cc :  subject : financial engineering associates  vince and stinson ,  i checked the file and the maintenance that automatically renews on 4 / 1 / 2000  is for the following products :  all 4 of your @ global licenses  spav  swing  i will go ahead and contact fea and see about getting the renewal invoice for  these . i ' ll send it to shirley for payment once i have it .  the products : @ interest , seapc , and seapp have not been on maintenance for a  while . fea told us a couple of years ago i believe that they do not have  maintenance available for these products any longer . so , you don ' t need to  worry about cancelling @ interest .  also , just fyi - your @ energy . 1 and @ energy . 2 licenses have maintenance  through 10 / 20 / 2000 .  if you have any questions , please let me know . otherwise , i will proceed  with contacting fea about you renewal of the @ global , spav , and swing  licenses .  thanks ,  karla\",0\n\"Subject: re : completion of ibuyit request for wincenty ( vince ) kaminski :  eva : remedy 412144  vince ,  you have been approved for the technical view within ibuyit . changes will take effect on next login .  thank you ,  sap security ( eva -  from : raul davila / enron @ enronxgate on 04 / 19 / 2001 06 : 02 pm  to : sap security @ enron  cc :  subject : re : pending approval for ibuyit request for wincenty ( vince ) kaminski : eva : remedy 412144  approved  - - - - - original message - - - - -  from : tow , eva on behalf of sap security  sent : thursday , april 19 , 2001 5 : 39 pm  to : davila , raul  cc : vkamins @ enron . com ; crenshaw , shirley  subject : re : pending approval for ibuyit request for wincenty ( vince ) kaminski : eva : remedy 412144  raul ,  raul ,  vince kaminiski is requesting acces to the technical view for catalog along with the ibuyit approval role . this is pending your approval . please send your response to sap security .  thanks !  shirley crenshaw @ ect  04 / 19 / 2001 03 : 01 pm  to : sapsecurity @ enron . com  cc : vince j kaminski / hou / ect @ ect  subject : ibuyit form  attached please find the completed form for vince kaminski , managing  director , research group .  he will be approving all purchases for cost center 107043 .  >  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 19 / 2001 02 : 58 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : debbie skinner / enron @ enronxgate on 04 / 19 / 2001 02 : 52 pm  to : shirley crenshaw / houston / eott @ eott , shirley crenshaw / hou / ect @ ect  cc :  subject : ibuyit form  hi shirley  there were two shirleys , so sending to both  >  isc help desk \",0\n\"Subject: re : contract update  vince , if there are some differences that we need to correct , you and i can  meet tomorrow when you bring the contract in . i am available anytime after  lunch . please call me at x 30649 .  sheila  - - - - - original message - - - - -  from : kaminski , vince  sent : tuesday , march 06 , 2001 3 : 10 pm  to : sheila walton / hou / ect @ enron  cc : kaminski , vince  subject : contract update  sheila ,  some minor differences between the draft and the final executed version .  i have forgotten to bring the draft today , i shall send a copy to you  tomorrow .  there were some hand - written changes made by greg ijn the draft that were not  transferred to  the final version .  vince\",0\n\"Subject: sas  to the group :  if you wish to use sas , there are a few simple things you need to do :  1 ) you need to get a unix password if you don ' t already have one ( your user  id will be the same as on the nt network , but a different password is issued )  2 ) you need a program called \"\" exceed \"\" on your pc . request it from it ( you  already have this if you are already a user of lim on the unix platform )  3 ) you need an \"\" ftp \"\" program on your pc . you can go to www . download . com and  download one ( i like wsftp )  4 ) exceed is funny in the way it runs . when you invoke exceed ( or lim  advanced user ( under infobases ) if you already have this ) it will install  itself the first time , and will then \"\" disappear \"\" to the taskbar . you need to  * right * click on the taskbar on exceed , and then choose \"\" tools \"\" and \"\" client  startup \"\" and then \"\" new . \"\"  you will enter a box which should already be set for rexec and an xwindow  emulation . you need to specify the host type as sun , enter your user name and  password , set the host name to :  capers . ect . enron . com  and then , on the command line , type the following ( carefully ) :  / usr / openwin / bin / xterm - display @ d  then , use the file menu to save this as capers . xs and then click on the run !  menu . within a second or two , a window will open up with you logged into the  serve capers . you are now on a unix server , and the directory is your home  directory . from here , if you simply type \"\" sas \"\" the 3 windows for an  interactive session with sas should open on your desktop . you are in business .  5 ) you also need to install your ftp . follow the procedures with the  software , and then create a new session called \"\" enron \"\" where you choose as  the server simply \"\" earth \"\" ( do not add any further descriptors such as  . enron . com ) . supply your user name and * unix * password , check the \"\" remember  password \"\" box , and the default communication setups should be correct ( eg ,  host type as \"\" automatic detect \"\" ) .  when you invoke ftp and connect to enron , it will put you in your home  directory on the unix system , the same directory your xwindow comes up in  under exceed .  if you have any problems , i ' ll be happy to help  clayton  ps i have a complete set of new sas manuals i am happy to loan out if you ' ll  just write your name down when you take them .\",0\n\"Subject: new resume  dear vince ,  i am so grateful for your efforts . i really appreciate you taking time from your busy schedule . if you have not contacted michael maddox , it ' s even better . i have updated and re - worded my resume to better reflect my accomplishments . would you please contact michael maddox of cera and forward my resume to him ? his contact information is ( 617 ) 497 6446 or email : mmaddox @ cera . com  have you had a chance to talk to david port ? maybe there are other options . i am flexible and willing to do whatever it takes .  sincerely ,  bessik matchavariani  manager  enron broadband services  tel : 713 . 345 . 7230  fax : 713 . 646 . 8861  bessik _ matchavariani @ enron . net\",0\n\"Subject: re : enron / stanford program  vince ,  are we on for dinner on sunday at 7 pm ?  best regards ,  nick  nick bambos wrote :  >  > vince ,  >  > i have managed to change my ticket and we can meet for dinner on sunday  10 / 15 / 00 .  > shall we say at 7 pm ?  >  > > > > > giuseppe : can you please join us for dinner on sunday 10 / 15 . we ' d like  to briefly  > discuss the project too . could i please ask you to make reservations for 3  at  > il fornaio or some other nice place in palo alto ? preferably a quiet place  where  > we can talk .  > thanks ,  >  > nick  >  > vince . j . kaminski @ enron . com wrote :  > >  > > nick ,  > >  > > dinner on sunday would work for me . i shall stay  > > in the bay area till monday morning .  > >  > > vince  > >  > > nick bambos on 09 / 28 / 2000 08 : 33 : 38 pm  > >  > > to : vince . j . kaminski @ enron . com  > > cc :  > > subject : re : enron / stanford program  > >  > > hi vince ,  > >  > > i am on the technical program committee of the infocom 2001 conference ,  > > and we are meeting in new york city on saturday , october 14 th , to select  > > papers for the conference program . i ' m leaving stanford on friday and  > > getting back on sunday .  > >  > > it might be a possibility to have dinner together on sunday , if that would  > > work for you . in that case i would have to reschedule my flight to land  > > in sfo earlier than i ' m currently scheduled to land .  > >  > > would dinner on sunday work for you ? any chance we can meet monday for  > > lunch ?  > >  > > i look forward to seeing you .  > >  > > best regards ,  > >  > > nick  > >  > > vince . j . kaminski @ enron . com wrote :  > > >  > > > nick ,  > > >  > > > i shall be in stanford oct 14 - 15 , visiting my family .  > > > i would be glad to meet you ( and possibly giuseppe - your call ) for  > > lunch .  > > > please , let mer know if you are free on one of these days . saturday  would  > > > work better for me .  > > >  > > > vince  > > >  > > > nick bambos on 09 / 21 / 2000 02 : 09 : 46 pm  > > >  > > > to : stinson . gibner @ enron . com  > > > cc : vince . j . kaminski @ enron . com  > > > subject : re : enron / stanford program  > > >  > > > stinson ,  > > >  > > > great ! i ' m looking forward to a very productive collaboration .  > > > i ' ll immediately start doing giuseppe ' s papers , for him to work  > > > on the enron / stanford program .  > > >  > > > many thanks to you and vince , and i hope to see you soon at stanford  > > > or enron . if i remember correctly , vince is visiting stanford in  > > > october .  > > >  > > > best regards ,  > > >  > > > nick  > > >  > > > stinson . gibner @ enron . com wrote :  > > > >  > > > > nick ,  > > > >  > > > > i spoke with paul racicot , head of trading for ebs , north america  this  > > > > morning . he said that he is happy to send the $ 100 , 000 for your  > > program  > > > > from his budget . i have forwarded to him the draft letter to  > > accompany  > > > > the funds and will try to follow up to make sure that the money is  sent  > > > > promptly .  > > > >  > > > > - - stinson\",0\n\"Subject: july conference on real options  please find attached the programs for two back - two - back conferences on real  options at cambridge university in uk . the two conferences are separate but  complementary events . the first conference , co - sponsored with andersen  consulting and morgan stanley dean witter , on july 5 - 6 , is a professional  conference on real options valuation in the information economy :  internet / high - tech / telecom , r & d / pharma , energy . for info . and online  registration see www . rogroup . com .  the second is the 4 th annual international conference on real options :  theory meets practice ( the annual industry event where academics and  practitioners get together to share the latest developments on theory and  applications ) , co - organized with u . cambridge on july 7 - 8 . for info . and  online registration see www . realoptions . org  among the two events , we are pleased to present an extensive array of  practitioner and academic presentations , sharing of experiences by corporate  executives , and panel discussions by experts from leading organizations and  universities . our keynote speaker this year will be myron s . scholes ,  co - developer of the black - scholes option valuation .  interested participants must register for the conference ( preferably on  line ) and indicate hotel preferences ( among 5 - 6 hotels ) by june 15  ( latest ) .  we look forward to seeing you at this exciting event , and would appreciate  if you share this with interested colleagues .  - camjuly 2000 profconference . doc  - conf 4 program . doc\",0\n\"Subject: capa 2000 conference  vince and stinson ,  alex and i attended the international chinese petroleum and petrocehmical  technology conference  in houston . we presented two talks 1 ) risk management in petroleum industry  and 2 ) real option  valuation of oil field . the section chairman said our talks were the high  moments in the business session .  there were several interesting talks in the business section . i am going to  get a copy of the presentation on  internet opportunity in energy trading , where the author did a study about  all energy trading sites including  enrononline . a talk from a gentleman working for costal ( used to be pal of  song yip ) on real  assets management is also very informative . a talk about using real option  theory for it managenet was  also interesting .  big players , exxonmobil , shell , taxco , and bp have strong presence in the  conference .  i made a copy for you of the keynote speech by bob gee , the assistant energy  secretary under clinton  administration about the energy outlook .  zimin\",0\n\"Subject: proposal submission  francois and kent ,  hope this proposal reaches you in time for consideration for the upcoming  fma - european meeting . i normally don ' t like to commit myself to a proposal  but in this case i ' m very comfortable doing so in light of the status of  the project . as you will see this \"\" clinical \"\" paper is a study of strategy  formulation in a very innovative company that uses financial derivatives in  conjunction with real asset investments . the firm , enron , has been the  most innovative company in america for more than five years now and has  expanded its strategy abroad . we have the unique opportunity to document  the firm ' s strategy from the inside with my co - authors being members of the  corporate research staff that manage the pricing of the energy derivatives  in which the firm makes a market , as well as provide the analysis upon  which firm risk positions are managed . although , specific enron projects  have been documented and published , noone has captured the story of the  company visionaries that formulated and executed the firm ' s business  strategy . of course , what makes the story of particular interest to  finance scholars is the fact that the strategy hinges in very important  ways on financial innovations . this is going to be a very informative and  fun story to tell and i hope to bring along my colleagues from enron to  paris for the meeting .  thanks for asking me to join the program advisory board and i look forward  to your comments on the attached proposal .  sincerely yours ,  john  - enron transformation paper . doc  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: re : weatherdelta demonstration scheduling  alex ,  i agree . let them make up the data . please , ask shirley to determine  convenient date and time .  vince  alex huang @ enron  11 / 01 / 2000 03 : 59 pm  to : vince j kaminski / hou / ect @ ect , joseph hrgovcic / hou / ect @ ect , vasant  shanbhogue / hou / ect @ ect , lance cunningham / na / enron @ enron , sevil  yaman / corp / enron @ enron , stinson gibner / hou / ect @ ect  cc :  subject : re : weatherdelta demonstration scheduling  hi all ,  i got the following reply from mike denton .  can you let me know what time is most convenient for you so i will  arrange a time for the presentation ?  i don ' t think we should provide them any data , unless you think otherwise .  alex  - - - - - - - - - - - - - - - - - - - - - - forwarded by alex huang / corp / enron on 11 / 01 / 2000 03 : 54  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  denton mike on 11 / 01 / 2000 03 : 05 : 48 pm  to : alex . huang @ enron . com  cc :  subject : re : weatherdelta demonstration scheduling  mr . huang ,  we would be happy to demonstrate the features and functionality of the  weatherdelta tool set for your team at enron . early next week ( tuesday or  wednesday ) are both possible , as well as early the following week . the  demonstration can take 90 minutes or more , depending on the number of  questions and the level of detail .  ideally , you could provide us with some of your data and we could  demonstrate how to value a full - requirements contract to service that  particular load . to do this we will need one or more years of hourly  consumption data , and the general location of the load . ideal data formats  are csv files of either 365 rows x 25 columns ( date , hrl , hr 2 . . ) or 8760 rows  x 3 columns ( date , hr , load ) . in lieu of using your data , we will provide  sample load data .  please feel free to call me and we can discuss schedules and the particulars  of the product overview and demonstration .  thank you for your interest ,  michael j . denton  vp na strategic consulting  caminus corporation  212 - 515 - 3667\",0\n\"Subject: re : time keeping  what about me !  i may need this in the future . . . .  - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 03 / 21 / 2000 08 : 12  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  shirley crenshaw  03 / 21 / 2000 07 : 27 am  to : brad mcsherry / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , william smith / corp / enron @ enron , kevin g  moore / hou / ect @ ect  subject : re : time keeping  hi brad :  i am it for our group ! however , it might be a good idea to train sam smith  also .  please let us know .  thanks !  shirley  3 - 5290  from : brad mcsherry on 03 / 20 / 2000 05 : 38 pm  to : lydia cannon / hou / ect @ ect , rosalinda resendez / hou / ect @ ect , donna  baker / hou / ect @ ect , shirley crenshaw / hou / ect @ ect  cc :  subject : time keeping  lydia / rosie / donna / shirley ,  we are looking to implement sap hr by 7 / 1 / 00 . there is a time keeping module  in the program . please send me a list of the time keepers for your groups .  do not forget to send your own name if you keep time . time keepers will be  contacted in the near future for training on the new system .  thank you for your help ,  brad\",0\n\"Subject: re : hi !  - - - - - - - - - - - - - - - - - - - - - - forwarded by pinnamaneni krishnarao / hou / ect on  04 / 05 / 2001 03 : 58 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" jeff fleming \"\" on 04 / 05 / 2001 03 : 24 : 25 pm  please respond to  to :  cc :  subject : re : hi !  one other person that i forgot to mention - - praveen kumar . i don ' t know  exactly what he does , mostly theory stuff i guess . any way , he is also  really good and highly respected in the profession ; probably ranks right up  there with ( but second to ) bong - soo .  jeff  jeff fleming  associate professor  jones graduate school of management - - ms 531  rice university  6100 main street  houston , tx 77005  713 / 348 - 4677 ( voice )  713 / 348 - 5251 ( fax )  http : / / www . ruf . rice . edu / ~ jfleming\",0\n\"Subject: restricted list  neither ena / rac / egf employees nor family members or others living in their  household or financially dependent on the ena / rac / egf employee may purchase  or sell securities of any entity ( or derivatives thereof ) listed on the  restricted list for your or their personal or related accounts or recommend  the purchase or sale of such securities to any person , except with the prior  approval of the compliance department in consultation with the ena legal  department .  in addition to the trading restrictions above , should you at any time possess  non - public material information about any public company , you , your family  members and anybody that is financially dependent on you , are restricted from  trading in that issue , and you may not disclose the non - public material  information to anyone that does not have a business need to know .  company name stock symbol  3 tec energy corp . tten  active power acpw  adrian resources adrrf  beau canada exploration ltd bau cn  belco oil & gas corporation bog  bonus resource services corp bou  brigham exploration bexp  canfibre group ltd . cfgl  carrizo oil & gas inc . crzo  costilla energy cose  crown energy croe  cynet , inc . cyne  cypress energy cyz  esenjay exploration esnj  firstworld communications inc . fwis  hanover compressor co . hc  ice drilling enterprises inc . idf  industrial holdings , inc . ihii  inland resources , inc . inln  kafus environmental industries , inc . ks  nakornthai strip mill public co ltd nsm set  paladin resources plc plr ld  paradigm geophysical pgeof  place resources , inc . plg cn  quanta services inc . pwr  queen sand resources , inc . qsri  quicksilver resources inc . kwk  saxon petroleum , inc . sxn cn  southwest royalties swroy  startech seh cn  syntroleum corp . synm  tejon ranch corp . trc  tetonka drilling tdi  transcoastal marine services , inc . tcms  the restricted list is solely for the internal use of ena / rac / egf . no one  may engage in discussions regarding whether a security is or is not on the  restricted list with persons outside ena / rac / egf without specific clearance  from the compliance department in consultation with the ena legal department .  in addition to the above , you are reminded that pursuant to enron corp . ' s  risk management policy ( \"\" policy \"\" ) , no ena / rac / egf employee may engage in the  trading of any \"\" position \"\" ( \"\" position \"\" means any commodity , financial  instrument , security , equity , financial asset or liability that are  authorized for trading in  the  policy for the benefit of any party other than ena / rac / egf , whether for  his / her own account or the account of any third party , where such position  relates to ( i ) any commodity , financial instrument , security , equity ,  financial asset or liability which falls within such employee ' s  responsibility at ena / rac / egf or ( ii ) any energy commodity .  the prohibitions listed above do not replace or modify the policies set forth  in ena ' s policies and procedures regarding confidential information and  securities trading , enron corp . ' s risk management policy , or enron corp . ' s  conduct of business affairs . should you have any questions regarding the  above , please contact me at ext . 31939 .\",0\n\"Subject: re :  lloyd ,  i think that we can arrange a few video conference meetings instead .  i don ' t see a justification for extending the stay over the weekend if we  have an alternative solution .  vince  enron capital & trade resources corp . - europe  from : lloyd fleming 07 / 06 / 2000 12 : 37 pm  to : vince j kaminski / hou / ect @ ect  cc : maureen raymond / hou / ect @ ect  subject :  vince  i met maureen yesterday and had a useful discussion on her role within  enron . i think it would be very helpful to promote the research group  function of the company , particularly given maureen ' s background , if she  could be introduced to some of the main traders down at mg . unfortunately  she won ' t have time to meet with mg unless we can schedule some meetings on  monday .  would you be happy for her to extend her stay here till monday to allow the  meetings to take place ?  regards\",0\n\"Subject: re : grant masson  fyi . i shall not be surprised if grant knock on our door again in a few weeks .  i told him he could not count on the same generous treatment  he got the first time .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 08 / 2001  08 : 16 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" grant masson \"\" on 01 / 07 / 2001 06 : 43 : 08 pm  to :  cc :  subject : re : grant masson  dear vince :  ?  after a very great deal of thought , i have decided to stick it out with el  paso .  ?  please be assured that this exercise was not a \"\" fishing expedition \"\" to  extract concessions from el paso . ? rather , it is simply that , although i  continue to harbor doubts about some of el paso ' s methods and about the  people running the business , i have concluded that two months is not enough  time to fully judge the company . ? i feel that i have not yet given el paso  ( or myself for that matter ) a fair chance . ? after all , if i disagree with  the way the business is run , i should regard that as an opportunity to  effect changes and not an excuse to run away .  ?  please extend my sincerest thanks and apologies to all those who worked so  hard over the holidays to produce the offer : david oxley , sheila walton , and  especially norma villarreal .  ?  and thanks also to you vince for your patience , humor , and good advice . ? as  i ' ve said before , i consider it an honor to be able to call you a colleague  and friend .  ?  with best regards ,  grant .\",0\n\"Subject: california update 5 / 22 / 01  please treat as confidential  a source had a meeting today with california state treasurer phil angelides . here are the main points from their conversation  1 . anglelides certain that socal will go bankrupt  corroborating our line over the past four months , anglelides stated with confidence that socal would go bankrupt and that \"\" he was surprised they hadn ' t already . \"\" he noted that the only reason they haven ' t yet is that \"\" they were too stupid to ring - fence the parent \"\" and that \"\" their two biggest equity holders were screaming not to do it . \"\"  he added that the davis / socal mou is dead and that all the \"\" plan b ' s \"\" are \"\" speculative \"\" at best . he also thought that socal was being \"\" naive if they thought they would get a better deal from the legislature than from the bankruptcy court . \"\"  2 . bond issuance - $ 12 b not enough  angelides conceded that a $ 12 b bond issue would not be enough to buy power for the summer and that the true costs would probably be $ 18 - 24 b . the only reason they didn ' t issue more is that angelides felt that \"\" $ 12 b was all the market could handle . \"\" the current game plan for bonds assumes an average peak price for power of $ 400 / mwh , which angelides said explains the difference between his estimates and the higher estimates from state comptroller ' s kathleen connell ' s office .  3 . new generator construction  anglelides was explicit that the california public power authority ( authorized by the legislature last week ) will \"\" build plants and not stop until we [ california ] has a 10 - 15 % capacity cushion above expected demand . angelides expects the state to be \"\" 5 - 10 % short on power all summer . \"\"\",0\n\"Subject: re : sddp  tom ,  can you send the info regarding sddp to john ?  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 07 / 28 / 2000  10 : 52 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  07 / 19 / 2000 06 : 41 pm  to : \"\" o ' brien john \"\" @ enron  cc : vince j kaminski / hou / ect @ ect  subject : re : sddp  john ,  i shall e - mail the information about sddp from houston .  vince  \"\" o ' brien john \"\" on 07 / 18 / 2000 01 : 47 : 41 am  to : vkamins @ enron . com  cc :  subject : sddp  vincent ,  you kindly suggested that i email you with regard to some information you  have on the sddp system ( i ' m not sure if i ' ve got the abbreviation correct ,  but it ' s something that is currently used in south america ) .  your presentation was very interesting and informative .  kind regards ,  john o ' brien  manager , treasury & risk management  snowy hydro trading pty ltd  level 17 , bligh house  4 bligh street  sydney nsw 2000\",0\n\"Subject: re : comments  fyi .  - - - - - - - - - - - - - - - - - - - - - - forwarded by rakesh bharati / na / enron on 03 / 27 / 2001  07 : 43 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  sheridan titman on 03 / 27 / 2001 06 : 46 : 31 pm  to : rakesh . bharati @ enron . com  cc :  subject : re : comments  rakesh :  thanks for your input . they are quite useful for helping me clarify my own  thinking . the following are my responses to your comments and  clarifications . the * * ed paragraphs are from me and the others are from you .  1 . the money is being set aside to avoid negative values . it is not clear  if you mean the values of the cash flow or the pv at the node . anyhow , we  shall be setting aside money not just for that specific node but all nodes  at that cross - section of time as the risk - free asset pays in all states of  nature . this will have to be done every time there is a negative  realization . thus , for the typical project we have , the value of risk  capital may be extremely high , as we are not following a tail - based norm  anymore .  * * i agree that this is confusing and needs further refinement . i do this  because i have some concerns about discounting negative cash flows , ( this  is discussed in my first memo ) . this clearly provides a conservative  estimate of firm value , and a measure of risk capital that is too high .  from the perspective of evaluating the appropriate level of risk capital ,  it is sufficient that enough capital be employed so that the pv at each  node is positive . also , one might want to set the level so that the pv is  positive in say 98 % of all nodes .  2 . your memo appears to suggest that debt capacity is contingent on all  values being positive . if so , we are only issuing risk - free debt . also , a  project with a single negative value at each cross - section of time will not  have a positive debt capacity .  * * again , this is a very conservative initial estimate . when the model is  refined , you probably want to define debt capacity so that the project  defaults a certain percent of the time .  3 . it seems that our optimization argument is the discount rate , which is  obtained in each step from the comparison investment ( by equating the  variances ) . it is not clear if changing the discount rate will have such  an effect on the project variance so as to lead to a global convergence .  * * i am not assuming that the change in the discount rate has a major effect  on volatility . in fact , i think the process requires only one iteration  when the volatility is independent of the discount rate . again , the idea  is that we calculate the volatility of the project ' s value calculated with  an initial discount rate . using the calculated volatility and the stock of  a comparison firm , calculate a more appropriate discount rate . if the  volatility of the project ' s value is not affected by the change in discount  rates then we are done . if , however , the change in discount rates changes  volatility , then we may have to iterate .  let me know if this makes sense . * *  also , our project has a finite life and the market - based assets will have  infinite lives . in the light of this fact , how will we define the relevant  variance ? is it the spot variance of the returns of the comparison  investment ?  * * this is a good point . i was thinking in terms of the average variance ,  but this may not be correct . actually , we know that this is just an  approximation and we need to think about whether or not it is a good  approximation . typically , firms tend to ignore issues relating to the  duration of their project cash flows when they determine discount rate ,  which clearly does not make sense . this requires some additional thought . * *  4 . finally , our criterion is to subtract from the average pv the  investment and also the risk capital . setting risk capital to zero , this  model closely resembles the intuitive present value criterion and  endogenously determines the discount rate .  * * this is correct . my goal was to come up with something that was closely  related to what you are already doing but which gives you some insight into  how to define risk capital and the appropriate discount rate . there are a  number of ways that we can refine and improve this procedure . what we need  to first consider is whether or not the basic approach makes sense for the  kind of projects that you are evaluating . * *  gas field case  to facilitate your thinking , we are providing a gas field example below .  we invest x million dollars to buy and develop a gas field . a profile of  expected production and variance of the production per year is available  from the engineers at the beginning . production will be autocorrelated , as  the profile will shift up or down based on the actual gas reserves being  more or less than the estimated reserves . we assume the life of the field  to be 10 years with no salvage value . there are fixed and variable  operating costs . it might be useful for you to think about applying the  framework to this problem .  * * this problem is probably pretty straightforward because it is unlikely  that the cash flows will be negative once the gas field is producing .  hence , there is no need to be concerned about risk capital ( other than the  x million dollars to buy and develop the property ) . to value the property  assuming all - equity financing we calculate the value process of the  developed project and compare its volatility to a comparison investment  whose value process is observable ( e . g . , a traded mlp ) . the risk - adjusted  return of the comparison investment would then be used to discount the cash  flows of the gas field .  please note that this procedure requires relatively strong assumptions and  calculating the risk - adjusted return on the comparison investment is not  necessarily straightforward . * *  let me know when you would like to discuss this .  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  on another topic , is it possible for you to give me information about one  case where enron bought or sold a base load power plant , where the  purchaser financed the transaction with non - recourse debt . we would like  the following information :  1 . the value of the power plant ( or purchase price )  2 . the amount of debt financing and the terms of the debt contract .  3 . some information about the pricing of gas - power swaps and options .  about a year ago i gave vince a paper which develops a pricing model for  project debt . i don ' t think he thought that it could be implemented on the  type of projects that enron finances . however , my coauthors would like to  try applying the model for one case study .  let me know when you want to discuss these issues .  thanks ,  sheridan  sheridan titman  department of finance  college of business administration  university of texas  austin , texas 78712 - 1179  512 - 232 - 2787 ( phone )  512 - 471 - 5073 ( fax )  titman @ mail . utexas . edu\",0\n\"Subject: garp fas 133 training  garp  philip merrill  973 - 258 - 1540  garpnyl @ home . com  may 19 , 2000  for immediate release  garp announces fas 133 training series  garp , the global association of risk professionals , today announces that  they will present a series of training sessions to educate the public about  fas 133 accounting for derivative and hedging instruments .  the standard has been changed and amended significantly in the last two  years . this program is being offered because garp recognizes the need to  educate the public as to the implications of this complex and significant  financial reporting requirement .  the series will consist of basic training sessions and an advanced seminar .  garp members philip merrill and benton brown will present the basic training  sessions . fasb staff members , legal , tax and technology specialists will  join mr . merrill and mr . brown at an advanced seminar scheduled for july .  the basic training sessions will update participants as to the definition of  a derivative , cash flow hedging , fair value hedging , foreign exchange  hedging , and elements of implementation . this course will cover the  prerequisites for successful participation in the advanced seminar . the  basic will also help facilitate participation in the garp fas 133 sessions .  the first basic training seminar will be held june 28 , 2000 at the new york  society of security analysts headquarters in the world trade center .  registration and other detailed information are available from philip  merrill at garpnyl @ home . com , or on www . garp . com .  the advanced seminar will cover more complex issues relating to fasb staff  accounting interpretations , tax , legal and technology implications and  advanced risk management tools and techniques . participants in the advanced  seminar should have mastered the content of the basic training session .  the following people should attend : risk managers , accountants , auditors ,  lawyers , tax specialists , credit , compliance , technology and other risk  professionals .\",0\n\"Subject: mid - year 2000 performance feedback  note : you will receive this message each time you are selected as a reviewer .  you have been selected to participate in the mid - year 2000 performance  management process by providing meaningful feedback on specific employee ( s )  that have been identified for you . your feedback plays an important role in  the performance management process , and your participation is very critical  to the success of enron ' s performance management goals .  please provide feedback on the employee ( s ) listed below by accessing the  performance management system ( pep ) and completing an online feedback form as  described in the \"\" performance management quick reference guide \"\" . you may  begin your feedback input immediately . please have all feedback forms  completed by the date noted below .  if you have any questions regarding pep or your responsibility in the  process , please call the pep help desk at the following numbers :  in the u . s . : 1 - 713 - 853 - 4777 , option 4  in europe : 44 - 207 - 783 - 4040 , option 4  in canada : 1 - 403 - 974 - 6724 ( canada employees only )  or e - mail your questions to : perfmgmt @ enron . com  thank you for your participation in this important process .  the following list of employees is a cumulative list of all feedback  requests , by operating company , that have an \"\" open \"\" feedback status . an  employee ' s name will no longer appear once you have completed the feedback  form and select the \"\" submit \"\" button in pep .  review group : enron  feedback due date : jun 16 , 2000  employee name supervisor name date selected  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  ahmad , anjam dale surbey may 22 , 2000  vernon , clayton j vasant shanbhogue may 26 , 2000  zipter , rudi c theodore r murphy may 25 , 2000\",0\n\"Subject: re : new color printer  this is the color printer that is being ordered .  here is the info . that i needed .  thanks  kevin moore  - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 12 / 14 / 99 08 : 19  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron technology  from : lyn malina 12 / 14 / 99 08 : 09 am  to : kevin g moore / hou / ect @ ect  cc :  subject : re : new color printer  kevin :  the color printer we currently order is the 4500 n for $ 2753 . 00 . please let  me know if this is the one you would like to order .  thanks  lyn  kevin g moore  12 / 14 / 99 06 : 29 am  to : lyn malina / hou / ect @ ect  cc :  subject : new color printer  - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 12 / 14 / 99 06 : 29  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  kevin g moore  12 / 14 / 99 06 : 27 am  to : shirley crenshaw / hou / ect @ ect , vince j kaminski / hou / ect @ ect , mike a  roberts / hou / ect @ ect  cc :  subject : new color printer  we are in need of a new color printer .  we are also in the process of moving to the 19 th floor .  we need the color printer a . s . a . p .  if you would please , i need information concerning this  matter whereby , we can get the printer ordered and delivered  to our new location .  thanks  kevin moore\",0\n\"Subject: publishable research . . . . . .  vince :  the enclosed is from another of the people in the audience of my kao  presentation . i talked to him , and he seemed slightly flaky . however , any  research he does would be free . he ' s looking for direction . i doubt we  would want to waste our time and effort on him , but i thought i should send  this to you on the off chance that you might have a need for such a guy .  ( maybe doing some research for trish ? )  grant .  - - - - - - - - - - - - - - - - - - - - - - forwarded by grant masson / hou / ect on 04 / 25 / 2000 05 : 54  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  steve j on 04 / 22 / 2000 10 : 02 : 11 pm  to : grant masson  cc :  subject : publishable research . . . . . .  hi grant ,  thanks for writing . i have attached my resume and  transcripts for your perusal .  as you can see , my background is not finance . i became  interested in finance via trading the markets . so my  research interests initially revolved around the central  concept of trading . . . . pricing , technical type thinking ,  insider transactions , volume , and such . but with exposure ,  my interests have grown and i have discovered that i really  enjoy economics . also there are many issues in finance  that sound interesting as i am exposed to them . the point  is , i am too early in my career to set strict limits on my  interests .  my goals are to get introduced to research and to new  ideas , to associate with good people , and to work on  strengthening my weaknesses . i am interested in starting  to build a network within the field of finance and  especially quantitative finance . ultimately , i have to  prepare myself for independent research in order to succeed  in my field .  this brings me to my final point . publications are  important for me . thus i would want to work on topics that  enron would be willing to publish . i would be willing to  work on proprietary models , as long as there was a portion  of the research that could be written up for publication  without jeapordizing the proprietary aspects of the model .  just to let you know . i was not in dr . kao ' s energy class .  i took his stochastic processes class . dr . kao just  mentioned your talk to me as he thought i might be  interested in meeting you and learning more about what is  being done at enron .  thanks again . if you need any more info or want anything  clarified , just write me .  steve  - - - grant masson wrote :  >  >  > steve :  >  > send me your resume and research interests , and i will  > circulate them .  >  > regards ,  > grant .  >  >  >  = = = = =  i believe in a free internet ! ! ! more importantly , i believe in a safe ,  secure and private internet ! !  do you yahoo ! ?  send online invitations with yahoo ! invites .  http : / / invites . yahoo . com  - r _ t 2 . 1 . doc\",0\n\"Subject: overview of hr associates / analyst project  per david ' s request , attached is an overview of the hr associates / analysts  project - creating a human resource value index . this document will provide  a brief , top - line overview of the following :  description of the challenges  people involved  positive outcomes  high - level description of the process we suggest  if you have any questions before our tuesday meeting please contact either  myself or dan brown .  thanks ! tana cashion  david oxley @ ect  10 / 05 / 2000 10 : 20 am  to : gerry gibson / corp / enron @ enron  cc : andrea yowman / corp / enron @ enron , bob sparger / corp / enron @ enron , tim  o ' rourke / corp / enron @ enron , ted c bland / hou / ect @ ect , daniel  brown / na / enron @ enron , tana cashion / na / enron @ enron , rhonna palmer / hou / ect @ ect ,  cindy olson / corp / enron @ enron , vince j kaminski / hou / ect @ ect , kay  chapman / hou / ect @ ect , sarah a davis / hou / ect @ ect , marla barnard / enron  communications @ enron communications , pam butler / hr / corp / enron @ enron , michelle  cash / hou / ect @ ect , brian schaffer / corp / enron @ enron , suzanne brown / hou / ect @ ect ,  robert jones / corp / enron @ enron , neil davies / corp / enron @ enron  subject : re : mission impossible - hr associate groups recommendation and next  steps  i notice my calender doesn ' t yet seem to have this meeting scheduled . i will  ask kay chapman ( since rhonna has now deserted me ! ) to help put a time  together . drew / mary , fyi sorry i didn ' t get a chance to send you this before .  let me know if you want to attend , happy to have you there .  gerry , can you help me put an agenda together so that everyone knows what we  are looking to achieve here . in broad terms i am looking to do the following :  update all on project we set hr associate group and their recommendations  discuss their recommendations and look at any refinements or ideas we think  we should also incorporate ( see my thumb nail sketch notes inspired by  associate group below ) .  reaffirm commitment to take this project forward and agree :  team for doing so  resources and timimg  methodology for agreeing final version .  my ambition is that we ( but in particular andrea , bob , gerry , tim , tana , dan ,  neil , myself and possibly suzanne if she can given the work she had already  done in this area ) all agree to contribute to this and get it done without  the need for a formation of a new team or group . obviously everyone welcome  to participate .  tana / dan ,  can you cicruclate a summary of your teams proposals to this group so we they  can review before meeting . could you also agree within your team who you  would like to attend this meeting ( i would suggest 2 or 3 of you attend  rather than all ) .  thanks  david  david oxley  09 / 26 / 2000 11 : 38 am  to : andrea yowman / corp / enron @ enron , bob sparger / corp / enron @ enron , gerry  gibson / corp / enron @ enron , tim o ' rourke / corp / enron @ enron , ted c  bland / hou / ect @ ect , vince j kaminski / hou / ect @ ect  cc : daniel brown / na / enron @ enron , tana cashion / na / enron @ enron , rhonna  palmer / hou / ect @ ect , cindy olson / corp / enron @ enron  subject : mission impossible - hr associate groups recommendation and next  steps  rhonna ,  please arrange a meeting later this week for all of those addressed by this  message ( vince , it would great if one of your team could attend since we will  need some heavy statistical and analytical help to complete this project ) .  the prupose of the meeting will be to discuss and delegate next steps  required to implement the hr associate groups recommendations for the  development of an hr \"\" value index \"\" at enron .  i would anticipate we will need approx 45 minutes .  david\",0\n\"Subject: review and starting on october 2  vince ,  you mentioned yesterday to send you an e - mail reminder to speak with norma .  i appreciate your support . just as a reminder , i started on october 2 ,  which was a monday . october 1 was a sunday .  thanks for your support on this issue vince .  sincerely ,  lance\",0\n\"Subject: fw : having iris visit london  anita ,  it seems that i am going to london next week . please see forwarded emails .  can you please assist me with my travel arrangements .  thanks ,  iris  - - - - - original message - - - - -  from : kaminski , vince  sent : tuesday , april 24 , 2001 5 : 25 pm  to : shanbhogue , vasant ; mack , iris ; dhar , amitava ; kaminski , vince  subject : having iris visit london  it ' s ok to delay the materials for duffie . he is very busy anyway and is not going to complain .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 24 / 2001 05 : 23 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  scott salmon @ enron  04 / 24 / 2001 01 : 23 pm  to : amitava dhar / corp / enron @ enron  cc : vince j kaminski / hou / ect @ ect , vasant shanbhogue / enron @ enronxgate , ben parsons / lon / ect @ ect , george albanis / lon / ect @ ect , tomas valnek / lon / ect @ ect , bryan seyfried / lon / ect @ ect  subject : having iris visit london  hi amitava ,  we ' ve been doing some thinking and discussing here regarding the information on our modelling process we ' ll provide to darryl duffie . we think it would be extremely valuable for iris to come out to london for a couple weeks to gain a better understanding of the how the models integrate and are truly employed . i think this would greatly enhance the \"\" product \"\" we ' ll send to duffie as well as giving iris a firm view of enron credit . in addition , she could also explore some of the data sources such as amadeus and others that might be helpful in private firm modelling . if we ' re extremely efficient / lucky in receiving data from d & b or experian , she might be able to begin analysis on that for the private model efforts .  i would recommend she plan on coming out for 2 weeks starting the week of 30 apr perhaps . depending on the progress with the private firm data sources , it probably makes sense to send her back to houston to work on calibration sets with a likely return visit to london as required .  please let me know your thoughts .  cheers ,  scott \",0\n\"Subject: re : real world option pricing  hey vince ,  since i saw you last , the \"\" real world option princing \"\" paper has taken on  some more interesting results . tim crack and i would certainly like your  comments on the previous version and current version because we feel there  are still more areas to explore , such as , value at risk . here is where you  can download the paper :  i hope this e - mail finds you in air conditioned room away from the heat .  tom\",0\n\"Subject: correlation matrix reduction  zhiyang ,  got your message .  as we discussed , the best way to breakdown the big correlation matrix between  different location indices is through \"\" cluster analysis \"\" . the idea is to  select major  hubs and the \"\" satellite \"\" markets . by establish the correlation between the  hubs  and correlation between the satellites and the hubs , the big matrix can be  significantly  reduced . then the traders only need to input the correlations between the  hubs .  this technique has been applied in our value at risk system . you may talk to  tanya to find out the details .  zimin  ps : the wsprd code you requested .\",0\n\"Subject: pricing default and our may 22 conference call  >  dear vince :  i spoke with ms crenshaw yesterday afternoon about a conference call about  developing internet course material . if you have already discussed this  with your colleagues , it might be helpful if you could very briefly outline  the questions and issues they might raise in the conference call so that i  can be a bit better prepared .  ms crenshaw also mentioned that you never received my earlier email  regarding the credit spread model i developed with stathis and sergey . my  earlier email follows , and the nondisclosure agreement is attached .  i look forward to talking with you next week .  regards ,  sheridan  sheridan titman  department of finance  college of business administration  university of texas  austin , texas 78712 - 1179  512 - 232 - 2787 ( phone )  512 - 471 - 5073 ( fax )  titman @ mail . utexas . edu  > - - - - - original message - - - - -  > from : sheridan titman  > sent : friday , may 05 , 2000 12 : 48 pm  > to : ' vince . j . kaminski @ enron . com '  > cc : stathis tompaidis  > subject : pricing default  >  >  > dear vince :  >  > i really enjoyed meeting with you yesterday and learned a lot from our  > discussions .  >  > the ut office of technology licensing and intellectual property has given  > us the attached form which they would like you to sign before we send you  > a copy of our paper on pricing default . please let me know if this is  > agreeable to you .  >  > i hope we have the opportunity to work with you in the future , either on  > the debt pricing models or on the other issues we discussed .  >  > i look forward to hearing from you .  >  > regards ,  >  > sheridan  >  > >  > sheridan titman  > department of finance  > college of business administration  > university of texas  > austin , texas 78712 - 1179  >  > 512 - 232 - 2787 ( phone )  > 512 - 471 - 5073 ( fax )  >  > titman @ mail . utexas . edu  >  - nondisclosure agreement . doc\",0\n\"Subject: re : support for exotica  i briefed vince this morning that we have supplied a fully functional exotica  options library to london office ( executable and source codes ) .  if you have any questions , my team is ready to help .  zimin  steven leppard  10 / 13 / 2000 03 : 50 am  to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , dale  surbey / lon / ect @ ect , tani nath / lon / ect @ ect  cc : paulo issler / hou / ect @ ect , sharad agnihotri / lon / ect @ ect , zimin  lu / hou / ect @ ect  subject : support for exotica  all  sharad ' s investigations of exotica ' s status in london have turned up a very  confused state of affairs . this isn ' t being helped by the fact that :  1 . anjam is rarely at his desk , and can ' t be found anywhere in the building .  2 . when he is around he isn ' t willing or able to provide all the information  sharad might need to support exotica .  this is worrying since much of our business depends on the validity of  exotica ' s valuations .  sharad will now request information from anjam via email to leave a trail ,  and i want to alert you to the fact that sharad will be cc ' ing you in on  these emails .  if things don ' t improve soon , i may need to request some assistance in  extracting this information from anjam .  many thanks ,  steve\",0\n\"Subject: greg ball interview  shirley :  could you please organize interviews for mr . ball with the usual research  suspects , including alex huang and tanya tamerchenko ?  mr . ball ' s phone numbers are on his enclosed resume . thanks .  grant .  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  vince :  i talked to this guy briefly . i think he is desparate to get out of unocal  before they downsize him out of a job .  he has a decent resume and the attached comment from don winslow is  interesting .  grant .  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  grant - here ' s the resume of the guy that called . sorry for the delay . here  are don winslow ' s comments :  \"\" greg was my predecessor in the risk mgt dept at unocal . he reminds me  somewhat of remi ' s cousin - mild mannered , physics phd . he is brilliant and  expresses himself well . i think he might fit in vince ' s group better than  in your group . he has not had much exposure to commercial transactions . he  was in bill bradford ' s mba class . he graduated # 1 . \"\"\",0\n\"Subject: re : energy and e - business : a brief history of the future  james ,  i hall appreciate a copy of \"\" a brief history of the future . \"\"  vince kaminski  enron  \"\" j . p . rosenfield \"\" on 04 / 24 / 2000 12 : 16 : 25 pm  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc :  subject : energy and e - business : a brief history of the future  mr . vincent j . kaminski  managing director  enron capital dan yergin , joe stanislaw and julian west of  cera ; andy lippman of mit ' s media lab ; susan desanti of the ftc ; and others . ?  participation is limited .  for more details or to enroll in the summit and / or the e - squared retainer  service , please visit http : / / www . cera . com / offerings / ret / e 2 / .  please feel free to contact me , or my colleague tim fitzgerald at  617 - 441 - 2679 ; email to tfitzgerald @ cera . com if you have any questions or  further considerations  sincerely ,  james rosenfield  executive vice president  our relationship with you is very important to us . ? if you wish not to  receive future e - mail notifications , please send a reply to this message with  \"\" donotemail \"\" as the subject of your message . (  mailto : info @ cera . com ? subject = donotemail ) \",0\n\"Subject: anonymous reporting facilities  this is to remind you that various anonymous reporting facilities are  available for you to report violations of company policy and suspected  criminal conduct by any officer , employee , or agent of the company relating  to the performance of his or her duties . these reporting facilities are also  available for your questions , messages , comments , and suggestions .  any policy violation or criminal conduct may be reported by letter , e - mail ,  or voice mail , as set forth below , describing the suspected violation or  criminal conduct with as much detail as possible to allow the company to  conduct an investigation of the reported matter .  1 . letters should be sent to the confidential post office box :  enron compliance officer  confidential - conduct of business affairs  p . o . box 1188  houston , texas 77251 - 1188  2 . e - mails should be sent to the office of the chairman \u0001 , s e - mail box :  employees with enron e - mail can access this box by sending an e - mail to the  office of the chairman . simply type \u0001 & office of the chairman \u0001 8 in the address  box , type your message , and send . your message will be completely  anonymous . if , however , you copy your message and e - mail it to someone else ,  the copy will not be anonymous .  3 . voice mail messages should be left with the office of the chairman  phonemail box . you can access the office of the chairman phonemail box by  calling ( 713 ) 853 - 7294 . if you call from your extension or an outside line ,  your message will be completely anonymous . if , however , you access the  phonemail box while you are in the phonemail system , your message will not be  anonymous .  you may , but are not required to , identify yourself . if you would like to  identify yourself , please submit your name and phone number with your letter  or message . all anonymously reported matters will be investigated and acted  upon in the same manner as those that contain signatures .  the company takes great pride in ensuring that enron is a great place to  work . we encourage each employee to continue to conduct the business affairs  of the company in accordance with all applicable laws and in a moral and  honest manner .\",0\n\"Subject: the installation of the equipment you ordered is completed  - - - automatic notification system ( request # : ebut - 4 kpqew )  requested for : vince j kaminski  requested by : kevin g . moore  the installation of the equipment ( see below ) has been completed .  18 in tft 8020 flatpanel opal\",0\n\"Subject: rooming list for enron offsite  candice :  listed below are the individuals that will be attending the offsite , august  18 -  20 , 2000 .  vince kaminski  stinson gibner  p . v . krishnarao  grant masson  zimin lu  vasant shanbhogue  mike roberts  maureen raymond castaneda  tanya tamarchenko  osman sezgen  samer takriti  shirley crenshaw  regards ,  shirley crenshaw\",0\n\"Subject: enron cost of capital  vince -  tim despain asked me to forward this information to you as part of the effort  to establish enron ' s cost of capital . if you need any additional information  or clarification , feel free to give me a call at x 57538 .  cf\",0\n\"Subject: tw capacity options  we ' re at the point in the project where we are soliciting comments on a draft  ferc filing we ' d like to file at the end of the month . if you would , please  review our filing , with particular emphasis on product definition , position  management and how we described in footnote [ generally ] how the marketplace  would evaluate the option fees .  you help in this project is greatly appreciated .  - - - - - - - - - - - - - - - - - - - - - - forwarded by jeffery fawcett / et & s / enron on 07 / 12 / 2000  03 : 23 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : susan scott 07 / 12 / 2000 03 : 19 pm  to : steven harris / et & s / enron @ enron , jeffery fawcett / et & s / enron @ enron , kevin  hyatt / et & s / enron @ enron , lorraine lindberg / et & s / enron @ enron , tk  lohman / et & s / enron @ enron , michele lokay / et & s / enron @ enron , christine  stokes / et & s / enron @ enron , bill cordes / et & s / enron @ enron , mary kay  miller / et & s / enron @ enron , julia white / et & s / enron @ enron , shelley  corman / et & s / enron @ enron , sstojic @ gbmdc . com , mary darveaux / et & s / enron @ enron ,  glen hass / et & s / enron @ enron , drew fossum @ enron , john  buchanan / et & s / enron @ enron , ramona betancourt / et & s / enron @ enron  cc : tony pryor / et & s / enron @ enron , brian hensley / et & s / enron @ enron  subject : tw capacity options  attached for your review is a draft of transport options filing that  incorporates the comments and suggestions i ' ve received since last week .  please provide any further suggestions / changes to me as soon as possible , but  in no case later than close of business , friday , july 14 .  the timeline i ' ve discussed with tw commercial for this project is as follows :  final draft comments friday , july 14  circulate draft to customers ,  customer meetings , time for  customers to respond , informal  discussion with ferc mon . july 17 - wed . july 26  final internal review / edit of filing thursday , july 27  ferc filing monday , july 31  please let me know your comments on this proposed timeline as well . thank  you .\",0\n\"Subject: risk assessment  this is to confirm the meeting setup for november 22 nd at 9 : 00 am w / mechelle  atwood and shawn kilchrist regarding risk assessment for 2001 . location is  ebl 962 . if you have any questions , please call me at x 58174 .  thanks\",0\n\"Subject: derivative classes  i discovered that clewlow and strickland have at least two books ,  \"\" implementing derivative models , \"\" and \"\" exotic options . \"\" i gather that \"\" exotic  options \"\" is the one you intend to use in your class , correct ?  by the way , i queried participants in my class , and i heard that the case  study approach we occaisionally used was appreciated by several . the var  class i taught was from jorian ' s book , which has no exercises and which  assumes a particular background in finance and statistics . i created a  problem ( not exactly a case study ) that required participant to learn some  statistics and try some different approaches . from this , participants got a  better idea of why one bothers with certain issues . some liked the \"\" real  world \"\" flavor of this kind of approach . ( without the case approach , you could  provide good counterexampes as a partial remedy . )  best regards and season ' s greetings ,  michael\",0\n\"Subject: re : copper curve  tani ,  please touch base with lloyd fleming as to whom from rac should review the  methodology . i view that it is the commercial team ' s responsibility to post  the curve , operations responsibility to gather objective information on the  efficacy of the curve on a ( minimum ) monthly basis and report all highly  sensitive curves , rac will not approve or disapprove a curve but question  methodology / motivations and subsequent changes and do so in a senior  management forum ( i . e . , we will tell on those who have suspect curves or  curve movements ) . obviously , we are looking for the best estimate of the  value of those products in those time buckets today , we also favor object ,  consistent application of methodoology intra and inter commodity .  ted  vince j kaminski  10 / 27 / 2000 04 : 18 pm  to : tani nath / lon / ect @ ect  cc : vince j kaminski / hou / ect @ ect , steven leppard / lon / ect @ ect , tim  poullain - patterson / lon / ect @ ect , harry tefoglou / lon / ect @ ect , esther  gerratt / lon / ect @ ect , maureen raymond / hou / ect @ ect , ted murphy / hou / ect @ ect  subject : re : copper curve  tani ,  no problem . we shall look at the curve on monday . i have organized a small  team to examine  the curve from different perspectives .  curve validation is normally a rac prerogative and i shall get them involved  on monday  vince  tani nath  10 / 27 / 2000 11 : 40 am  to : maureen raymond / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , steven leppard / lon / ect @ ect , tim  poullain - patterson , harry tefoglou / lon / ect @ ect , esther gerratt / lon / ect @ ect  subject : copper curve  following steve ' s note to you earlier today , i wanted to mention that we have  a fairly urgent need for review of the copper curve in particular , as there  is a deal due for final pricing in the next few days .  i am not sure what data you have received from enron metals in london , so i  am asking tim poullain - patterson to ensure that you have the curves and the  economic justification proposed as soon as possible . please direct any  questions to him or to harry tefoglou . i will be in the tokyo office next  week , but available via e - mail .  thanks in advance for your assistance ,  tani\",0\n\"Subject: risk management book order  vince ,  fyi , i ordered the risk management book you requested . it will be published  on june 2 nd , and we will receive it shortly thereafter .  judy  3 - 9584\",0\n\"Subject: sevile  vasant ,  i spoke with norma about getting a special reward for sevil , in lieu of bonus .  please , send to norma the list of projects sevil worked on .  vince\",0\n\"Subject: chairman ' s award - supervisor announcement  hello to each of you . i would like to let you know that i will be  facilitating the 2000 chairman ' s award program , a vision & values initiative  designed to recognize those employees who daily embody enron ' s values of  respect , integrity , communication and excellence . this is an annual ,  employee - driven award which encourages employees to nominate their everyday  heroes .  a critical component of the award process , and one in which ken lay has given  his full support , is the employee selection committee . this year ' s selection  committee is made up of a diverse representation from our workforce both in  the us and around the world . these individuals were chosen as last year ' s  chairman ' s roundtable and have been invited to be part of this year ' s  employee selection committee . their infallible enthusiasm for enron ' s vision  & values will support the seamless transition from recognized winners to  award decision - makers which is necessary to sustain the spirit of the award .  you are being notified because one of your employees is on this important  committee . the time commitment will be primarily during the first two weeks  of october when we will meet either in person or via video / phone  conferencing to review the nominations and select the winners .  i hope you will congratulate and support them as this is a special honor to  be asked to serve on the employee selection committee . if you have any  questions at any time , please feel free to contact me via email or phone .  warm regards ,  charla reese  713 . 853 . 5202  members of the 2000 employee selection committee :  billi aherns - omaha , ne  bobbye brown - portland , or  karen campos - houston , tx  jaiprakash desai - mumbai , india  gary douthwaite - teeside , england  donna johnson - portland , or  janis hansen - portland , or  gene lauritsen - beatrice , ne  doug mcneilly - houston , tx  kevin moore - houston , tx  mason morris - jenkintown , pa  craig sutter - houston , tx  sue tihista - mandan , nd\",0\n\"Subject: enronoptions - your stock option program  it is amazing and yet not surprising how much enron has accomplished in the  first six months of this year . you continue to make it happen . we recognize  that you work hard every day to accomplish enron \u0001 , s business goals , and we are  pleased that many of you have shared in the company \u0001 , s financial success  through enron stock options .  as you may know , the current employee stock option program ( also known as the  all employee stock option program or aesop ) began in 1994 and provided value  to participants through 2000 . employees who have participated in this  program from its inception have realized a 1 , 119 % increase in the value of  their stock options ( assuming a stock price of $ 70 ) over the life of the  program .  enron stock options are a valuable part of your total compensation package  and a contributing factor to your performance and to enron \u0001 , s continued  success . therefore , the enron executive committee and the compensation and  management development committee of the enron board of directors have decided  to continue to offer stock options as a part of your compensation package .  on may 1 , 2000 , the committee approved an employee stock option program for  calendar years 2001 - 2005 ( enronoptions \u0001 ) your stock option program ) . it is  expected that enronoptions \u0001 ) your stock option program will be granted ,  effective on or about december 29 , 2000 , for those employees who are eligible  on that date ( please see note below ) . the new program , which is subject to  final approval by enron \u0001 , s board of directors , is as follows :  ? enronoptions \u0001 ) your stock option program will give stock options to  eligible full - time and part - time regular employees in domestic and  international companies / locations .  ? the grant of non - qualified stock options will equal 25 % of annual base  salary ( 5 % of annual base salary for each year of a 5 - year period ) on  december 29 , 2000 . ( salary calculation and value may vary in some  international locations . )  ? the board will grant the stock options on december 29 , 2000 .  ? eligible employees hired in subsequent years will receive a prorated grant  of stock options .  why commit your talent and energy to enron ? enronoptions \u0001 ) your stock option  program , among other good reasons \u0001 ( that \u0001 , s why .  in the coming weeks , you will be receiving more details about enronoptions \u0001 )  your stock option program . to provide information and answer your questions ,  we will introduce a special link on the human resources web - site , host  several espeak sessions and continue to communicate with you on a regular  basis . in the meantime , if you have immediate questions , please contact your  human resources representative .  note : in addition to final approval by enron \u0001 , s board of directors , granting  of options will be subject to new york stock exchange and state and federal  regulatory requirements . it is expected that enronoptions \u0001 ) your stock  option program will be available to most enron employees ; however , some enron  companies \u0001 , employees may not be eligible due to legal , accounting , tax , labor  or business issues . as you know , enron changes to meet the needs of the  marketplaces we serve . given that need to change , we will continue to refine  the eligibility for enronoptions \u0001 ) your stock option program and will  communicate more details throughout the year with final eligibility being  determined on december 29 , 2000 .\",0\n\"Subject: re :  jeff ,  the meeting is scheduled for wednesday afternoon .  vince  from : jeffrey a shankman 07 / 31 / 2000 12 : 56 pm  to : vince j kaminski / hou / ect @ ect  cc : barbara lewis / hou / ect @ ect  subject :  please make sure our meeting with skilling gets onto my calendar . thanks .  jeff\",0\n\"Subject: re : video conference for interview : stig faltinsen  hi shirley ,  i hope you had a pleasant easter break . . . . for the video interview for stig  faltinsen , if we do friday 28 th april , the only slot available is from 5 pm  onwards london time - can vince do from 5 pm to 5 . 30 pm ?  regards ,  anjam  x 35383  vince j kaminski  25 / 04 / 2000 16 : 25  to : anjam ahmad / lon / ect @ ect  cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect  subject : re : video conference for interview : stig faltinsen  anjam ,  sorry , i am busy on thursday .  i shall ask shirley to contact you . friday 9 : 30 to 10 : 30 my time would work .  vince  vince  anjam ahmad  04 / 25 / 2000 09 : 51 am  to : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect  cc :  subject : video conference for interview : stig faltinsen  hi vince ,  this candidate was forwarded from the norway office . he is finishing his phd  in cambridge but is available soon . if you are free on thursday before the  regular weekly meeting that would be good - would 3 pm or 4 pm work for you  ( 9 am or 10 am your time ) to set up the video interview ?  regards ,  anjam  x 35383  cv attached :\",0\n\"Subject: re : off site with john griebling ' s optical network engineers  ravi ,  sounds good .  vince  ravi thuraisingham @ enron communications on 03 / 06 / 2000 12 : 44 : 08 pm  to : shirley crenshaw / hou / ect @ ect , vince kaminski  cc :  subject : re : off site with john griebling ' s optical network engineers  john can ' t do it till after april 10 th . so we will shoot for april 13 , etc .  ravi .  - - - - - forwarded by ravi thuraisingham / enron communications on 03 / 06 / 00 12 : 32  pm - - - - -  john _ griebling @ palm . net  03 / 02 / 00 09 : 58 am  please respond to john _ griebling  to : ravi thuraisingham / enron communications @ enron communications  cc :  subject : re : off site with john griebling ' s optical network engineers  i won ' t be available until after april 10 th .  ravi _ thuraisingham @ enron . net wrote on 3 / 1 / 00 12 : 29 :  hi shirley , please give me a few dates form end of march to first week  in april  to do an offsite for vince ' s direct reports ( including myself ) and  selected ebs  research people . this includes , vince direct report from our research  group and  the following people fr\",0\n\"Subject: fwd : follow - up call  return - path :  received : from rly - yho 3 . mx . aol . com ( rly - yho 3 . mail . aol . com [ 172 . 18 . 147 . 35 ] ) by air - yho 2 . mail . aol . com ( v 77 _ rl . 36 ) with esmtp ; mon , 21 may 2001 17 : 26 : 01 - 0400  received : from nx . numerix . com ( [ 63 . 71 . 167 . 197 ] ) by rly - yho 3 . mx . aol . com ( v 77 _ rl . 36 ) with esmtp ; mon , 21 may 2001 17 : 25 : 21 - 0400  received : from nx . numerix . com ( localhost [ 127 . 0 . 0 . 1 ] ) by nx . numerix . com ( 8 . 9 . 3 / 8 . 9 . 3 ) with esmtp id raao 5633 for ; mon , 21 may 2001 17 : 24 : 32 - 0400  received : from dtallam ( hercules . numerix . com [ 63 . 71 . 167 . 196 ] ) by nx . numerix . com ( 8 . 9 . 3 / 8 . 9 . 3 ) with smtp id raao 5628 ; mon , 21 may 2001 17 : 24 : 32 - 0400  from : \"\" dean tallam \"\"  to :  cc :  subject : follow - up call  date : mon , 21 may 2001 17 : 18 : 41 - 0400  message - id :  mime - version : 1 . 0  content - type : multipart / alternative ; boundary = \"\" - - - - = _ nextpart _ 000 _ 0054 _ 01 coe 21 a . 15 b 849 co \"\"  x - priority : 3 ( normal )  x - msmail - priority : normal  x - mailer : microsoft outlook cws , build 9 . 0 . 2416 ( 9 . 0 . 2911 . 0 )  x - mimeole : produced by microsoft mimeole v 5 . 50 . 4133 . 2400  importance : normal  vince ,  i hope all is well with you .  dimitri raevsky , formerly the head of quantitative analysis and risk for global credit derivatives at jp morgan chase , has joined numerix as the product manager for credit products . at jp morgan chase , one of the leading players within the credit derivatives market , dimitri played an active role in the structuring , valuing and marketing of credit derivative products .  dimitri provides numerix with strong expertise in credit - related analytics / valuation methodologies as well as market practices . dimitri will be responsible for developing state - of - the - art credit software solutions for numerix . one of the first credit software products he will be developing is a toolkit for credit derivatives that will provide end - users with all the analytical tools and modules necessary for building credit derivatives solutions .  we would be pleased to have dimitri speak with you and your colleagues at enron to review our plans for credit derivatives .  we are available any time on friday may 25 th .  please advise as to whether this date would be convenient .  dean\",0\n\"Subject: re : grades  thank you ! - pam  at 08 : 15 am 5 / 4 / 01 - 0500 , you wrote :  > pam ,  >  > another term paper :  >  >  > john ganguzza  > neeraj hingorani  > grant johnson  > duane maue  > rishad patel  > eric van stone  > palo yoshiuro  >  >  > grade : a  >  > please , confirm .  >  >  > vince\",0\n\"Subject: re :  tani ,  yes , i am aware of it .  thanks for letting me know who  is the hr rep in london .  vince  tani nath  05 / 02 / 2001 09 : 01 am  to : vince j kaminski / hou / ect @ ect  cc : tara rozen / lon / ect @ ect  subject :  vince ,  i don ' t know if you are already aware of this , but maureen raymond has been  taken ill and i understand has received medical advice that she should not  travel before the end of next week at the earliest .  tara is the appropriate hr representative in london ; i will ask her to keep  both you and houston hr informed of the situation .  many thanks , tani\",0\n\"Subject: storage model change : commodity delta  dear all ,  i change the storage model output to its total value versus the unit value  before .  the total value refers to the total present value of the storage capacity at  given  status ( initial conditions ) .  the way i calculate the unit value is  ( total pv - s * capacity taken ) / total capacity  which could suffer some negative numbers since s , the spot price could be  very high . the correct way is to define the s as the average injection gas  price , but  this would be troublesome to compute .  by switching to total pv , the delta can be interpreted as total commodity  delta for the  hedge . actually , duffie also suggested using the total pv as the output in  his audit  review .  i have attached the xll model below .  zimin\",0\n\"Subject: forward oil prices  john ,  i am forwarding to you the request by jens . we gave in the past  our forward oil curves ( with approval of greg whalley ) to some academics .  what is your position on this request ?  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 27 / 2000  04 : 29 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  jens gobel @ enron  10 / 26 / 2000 12 : 06 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : forward oil prices  vince ,  as discussed on the phone , i am sending you the request that i have received  from prof . buehler . prof . buehler is the  head of the faculty of finance at mannheim university in germany . currently ,  he is writing a study about the hedging  strategy that led to the metallgesellschaft debacle . for this study he would  like to get forward oil prices form us .  the forward oil prices should be for wti with cushing as the delivery point  for the time period july 1986 and december 1996  with remaining contract durations between one and ten years . it would be  ideal to get this data on a daily basis . weekly  or monthly data is helpful as well , of course .  since mannheim university is among enron ' s tier one recruiting universities  in germany , it would be great if we could help  him with some data . thanks a lot for your help .  jens  o . korn @ uni - mannheim . de on 10 / 10 / 2000 11 : 44 : 57 am  to : jens . gobel @ enron . com  cc :  subject : daten  sehr geehrter herr goebel ,  bezugnehmend auf ihr heutiges telefongespraech mit herrn prof .  buehler hat mich prof . buehler gebeten , ihnen genauer  darzustellen , welche daten idealerweise fuer unsere studie  benoetigt wuerden .  zunaechst zum hintergrund . wir sind auf enron gestossen , weil  eduardo schwartz in einer seiner arbeiten die folgende datenquelle  angibt :  \"\" in addition to the publicly available futures data described above ,  for the purpose of this study enron capital and trade resources  made available some proprietary historical forward price curves  from 1 / 15 / 93 to 5 / 16 / 96 . from these data ten forward prices were  used in estimation , ranging in maturities from two months to nine  years \"\"  dies laesst uns annehmen , dass enron bestimmte daten  verfuegbar hat .  nun zum idealen datensatz :  forwardoelpreise ( am besten wti mit lieferung in cushing ) fuer  restlaufzeiten zwischen einem und zehn jahren fuer den zeitraum  juli 1986 bis dezember 1996 . dabei waere eine hohe  datenfrequenz ideal ( taeglich , ansonsten woechentlich oder  monatlich ) . zusaetzlich waeren auch spotpreise fuer wti mit  lieferung in cushing nuetzlich .  diese idealen datenanforderungen werden sich vermutlich nicht  erfuellen lassen . jedoch waere uns auch schon geholfen , wenn ein  kuerzerer zeitraum oder eine niedrigere datenfrequenz vorlaege .  wir waernen ihnen sehr dankbar , wenn sie in erfahrung bringen  koennten , inwiefern solche daten von enron zu erhalten sind .  herzlichen dank fuer ihre muehe und beste gruesse  olaf korn  p . s . bei rueckfragen stehe ich ihnen jederzeit gern zur verfuegung  dr . olaf korn  university of mannheim  chair of finance  d - 68131 mannheim  germany  tel . : + + 49 / 621 / 181 - 1487  fax . : + + 49 / 621 / 181 - 1519  e - mail : o . korn @ uni - mannheim . de\",0\n\"Subject: institutional investor journals profile update confirmation  thank you for updating your ii journals profile information . changes to your user id , password and e - mail address have been made . please allow 24 hours for any other changes you ' ve made to take effect in our system . here is the profile information we have for you :  account number : 12973228  first name : vince  last name : kaminski  company name : enron corp  position : managing director  department :  address 1 : 1400 smith st eb 1962  address 2 :  city : houston  state : tx  zip code : 77002 - 7327  country : usa  phone : ( 713 ) 853 - 3848  extension :  fax : ( 713 ) 646 - 2503  foreign phone :  foreign fax :  email : vkamins @ enron . com  user id : vkaminski  password : italia\",0\n\"Subject: natural gas storage research  i am working on a report aimed at energy marketers that will examine  natural gas storage : effects on energy trading . i am looking for people  who can talk about the importance of this subject to power marketers .  please contact me if you can inform me on any of the following subjects .  i am interested in exploring the following issues :  1 . storage process : transportation , injection , withdrawal  2 . are all storage facilities connected to pipelines ?  3 . description of types of storage facilities : salt caverns ,  above - ground tanks , inactive underground volcano , others  4 . problems that limit underground reservoir effectiveness  5 . historical storage data  6 . contributing factors to storage levels : weather , generation demand ,  reliability concerns  7 . national map of storage facilities and capacities  8 . terms definitions : base gas , working gas , underground storage ,  traditional storage , salt caverns , other relevant terms  9 . impact of storage fluctuations on prices and energy trading  10 . safety issues of natural gas storage  11 . seasonal storage trends  12 . total amount of national storage capacity  13 . future storage capacity needs  14 . lng as storage alternative  15 . technology improvements  16 . who regulated natural gas storage ?  17 . list of storage facility owners  if you are involved with natural gas storage , or are an energy trader  who is affected by natural gas storage , please contact me by november  13 th . thank you in advance for your help !  barbara drazga  independent journalist  denver , colo .  tel : 303 - 369 - 3533  fax : 303 - 369 - 3510  energywriter @ aol . com\",0\n\"Subject: re : resume - norberto valdes  elizabeth ,  yes , she referred norberto to us . we had an informal interview  with him .  we would like to invite him for a round of formal interviews later this week .  please include me , tanya tamarchenko , ted murphy , krishnarao pinnamaneni ,  grant masson .  i asked liza to talk to you to set up formal arrangements with enron  hr ( a contract , fee schedule approval , etc . ) .  i shall ask you for help next week when we have more information :  several members of our group from london will rotate through our houston  office this summer . we shall need help in making living arrangements ,  including apartments , car , etc . also , we have an employee from india  rotating through our group this summer . please , let me know  who is the best person in hr to ask for assistance .  vince  from : elizabeth grant 05 / 05 / 2000 08 : 10 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : resume - norberto valdes  vince ,  lisa woods ford ( independent recruiter ) tells me that she has referred this  resume to you . any interest in setting norberto up for interviews ?  - elizabeth  - - - - - - - - - - - - - - - - - - - - - - forwarded by elizabeth grant / hou / ect on 05 / 05 / 2000  08 : 08 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  nvaldes @ txuenergy . com on 05 / 03 / 2000 09 : 32 : 29 am  to : elizabeth . grant @ enron . com  cc :  subject : norberto ' s resume  dear elizabeth  per our conversation here is norberto ' s resume . thanks .  lisa ford  ( see attached file : resumen 4 . doc )  - resumen 4 . doc\",0\n\"Subject: dinner speaker - may 23  shirley ,  this is to follow up today ' s conversation with anita . as mentioned paul  kleindorfer invited vince to be our dinner speaker on thursday , may 24 . on  reflection given the strong line up for wednesday - fred kahn et al - we  would very much like vince to be the speaker on wednesday . this will  conclude the day very well giving participants a strong incentive to be there  for the wednesday .  i gather that this change should be acceptable to vince .  we will show vince ' s name as follows :  wincety j . kaminski  managing director - research  enron  jeremy will be em ailing you the program with this information immediately .  we would like to go to press today . failing that we can go to press  tomorrow . we would very much appreciate your confirming this and making any  corrections or changes . if you would respond to all of us it would be  appreciated .  michael  michael a . crew  professor ii  director - center for research in regulated industries  editor - journal of regulatory economics  rutgers university , graduate school of management  180 university avenue  newark , n . j . 07102 - 1897  phone : 973 353 5049 fax : 973 353 1348  http : / / www - rci . rutgers . edu / ~ crri\",0\n\"Subject: re : thank you  dear vince ,  it was our privilege to have you here .  paul ' s wife had a baby yesterday , and paul will be back on thursday . so  maybe item 3 can wait until paul ' s return .  as for ( 2 ) , yes - i will need a ps reader : o )  again , let us check paul ' s diary on his return before fixing a time for  quentin kerr  1 1 . the resume you sent to me and grant looks quite good .  i think it makes sense to interview this person and we can help  you with a phone interview .  is this simon ? ? ?  thanks  raymond  vince j kaminski @ ect  08 / 08 / 2000 06 : 30 am  to : paul quilkey / enron _ development @ enron _ development , raymond  yeow / enron _ development @ enron _ development  cc : vince j kaminski / hou / ect @ ect , grant masson / hou / ect @ ect  subject : thank you  paul & raymond ,  it took more than a few days to catch up after i came back from australia .  there are few things i would like to bring up to your attention .  first of all , i would like to thank you for your hospitality . i learned a lot  about the australian markets and was greatly impressed with the  quality of the people at the sydney office .  1 . the resume you sent to me and grant looks quite good .  i think it makes sense to interview this person and we can help  you with a phone interview .  2 . i have received another resume that looks very promising . i am  very interested in this guy and would be ready to bring him over  to the states where we lack desperately technical talent .  can you help us by interviewing him in sydney ?  the main determination i need from you is whether he can  function in a company like enron . as any good academic  he sent his resume in a ps format and i shall fax you a copy in case  you don ' t have a postscript reader on your system .  3 . christian werner does some really neat things on  the weather front . i would like to determine if he can help  us to upgrade our systems . can we bring him to houston  for a week to discuss the weather forecasting technology with mike  roberts and joe hrgovcic ? i think that he could learn a lot  from mike and other weather guys here how we translate  weather info into business - related information . i shall be glad to  underwrite the cost of this trip .  vince\",0\n\"Subject: lng by rail  vince ,  i was thinking about the type of things you could be talking to jeff shankman  about , in the dabhol lng context . it occurred to me that one way to collect  on regas charges , and still find alternate cutomers for gas is through the  railways .  some time back , i had looked into the possiblility of transporting lng by  train . apparently , technology exists wherein lng can be put into cryogenic  containers that can be trucked as well as the same containers being loaded  from trucks to train bogies . i believe this maybe a way to earn some monies  with lng by developing just such a market in india for commercial customers .  it is pertinent to note that the konkan rail line is just about 1 hr . 45  minutes from the dabhol plant . trucks from dabhol could carry lng to the  rail line at guhagar from where it could travel up and down the west coast of  india . if we target end - consumers directly , we could easily sell at retail  type prices , and build in a large margin , even if the volumes disposed are  relatively smaller . ( the alternative fuel for most of these establishments  is diesel or naphtha which is highly priced , and mostly trucked along  roads , increasing costs ) . the end aim is to keep income targets in india , so  that the analysts do not have a field day with the stock .  hence keeping activity up in india , and showing that solutions exist , will  keep stock price buoyed . we could explore this idea if it appeals !  regards ,  sandeep .\",0\n\"Subject: spring 2001 module and calendar schedule attached  spring 2001 faculty ,  attached is the spring 2001 module and calendar schedules for your  review . please note the jones graduate school is not following the  traditional university calendar for spring break this year . if you have  any questions please contact me .  kathy  kathy m . spradling  mba program coordinator  jesse h . jones graduate school of management  rice university  6100 main street , ms 531  houston , texas 77005 - 1892  phone : ( 713 ) 348 - 3313  fax : ( 713 ) 348 - 5251  email : spradlin @ rice . edu  http : / / www . rice . edu / jgs  e - mail : spradlin @ rice . edu  http : / / www . ruf . rice . edu / ~ jgs /  - spring module 2001 sch . doc  - spring module 2001 cal . doc\",0\n\"Subject: mid - year 2000 performance feedback  note : you will receive this message each time you are selected as a reviewer .  you have been selected to participate in the mid - year 2000 performance  management process by providing meaningful feedback on specific employee ( s )  that have been identified for you . your feedback plays an important role in  the performance management process , and your participation is very critical  to the success of enron ' s performance management goals .  please provide feedback on the employee ( s ) listed below by accessing the  performance management system ( pep ) and completing an online feedback form as  described in the \"\" performance management quick reference guide \"\" . you may  begin your feedback input immediately . please have all feedback forms  completed by the date noted below .  if you have any questions regarding pep or your responsibility in the  process , please call the pep help desk at the following numbers :  in the u . s . : 1 - 713 - 853 - 4777 , option 4  in europe : 44 - 207 - 783 - 4040 , option 4  in canada : 1 - 403 - 974 - 6724 ( canada employees only )  or e - mail your questions to : perfmgmt @ enron . com  thank you for your participation in this important process .  the following list of employees is a cumulative list of all feedback  requests , by operating company , that have an \"\" open \"\" feedback status . an  employee ' s name will no longer appear once you have completed the feedback  form and select the \"\" submit \"\" button in pep .  review group : enron  feedback due date : jun 16 , 2000  employee name supervisor name date selected  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  ahmad , anjam dale surbey may 22 , 2000  carson , margaret m james d steffes may 26 , 2000  ghosh , soma timothy davies may 31 , 2000  vernon , clayton j vasant shanbhogue may 26 , 2000  yuan , ding richard l carson jun 02 , 2000  zipter , rudi c theodore r murphy may 25 , 2000\",0\n\"Subject: re : sharad agnihotri  kate ,  has the paperwork been finalized yet ? let me know if we ' ve agreed a start  date yet .  thanks ,  dale  kate bruges  18 / 07 / 2000 12 : 52  to : dale surbey / lon / ect @ ect , anjam ahmad / lon / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : sharad agnihotri  i have just spoken to alex blair from alexander mann who met with sharad this  morning .  sharad has verbally accepted our revised offer and is expected to return the  paperwork tomorrow . i will let you know as soon as i get a start date from  him .  regards  kate\",0\n\"Subject: hickerson / egm knowledge management  following our meeting with gary today , scott and i prepared the following  work plan . hopefully , this reflects the conversation and planning in today ' s  meetings .  please send comments and revisions .  cordially ,  robert johnston  manager , political & sovereign risk  enron north america  713 - 853 - 9934\",0\n\"Subject: grms access  grant & vince ,  i have approved your request for risktrac ( formerly grms ) access . in about a  week , contact your it help desk representative to verify the deployment onto  your desktop .  thanks ,  rudi\",0\n\"Subject: petrochem desk  i had a chance to speak with christian lebroc this morning with regard to  curve building for petrochemicals . as it turns out , christian left rac in  april and joined the petrochem desk as a trader . previous efforts at  construction of a forward curve by the group have focused on intuition or  swags . unfortunately , the group had a rough p & l year with at least some of  the blame directed toward the forward curve or lack thereof . when asked  about the fundamentals group , christian indicated that they ' d only been  around about 3 - 4 months and are not yet well - suited to curve building . john  nowlan is indeed the head of the group .  from a timing perspective , i told christian that it would probably take at  least 6 - 8 weeks to develop a curve , especially considering the need to  understand the key market drivers / fundamentals . as was suggested yesterday  during our meeting , a strong relationship between petrochemicals and a nymex  component ( e . g . , crude oil ) would provide a great beginning point - - we could  then potentially strengthen / augment this relationship with other key factors  ( e . g . , supply and demand terms ) borne out of our market research .  nelson\",0\n\"Subject: book order  julie ,  we received the shipment of 50 books . thanks .  the book was an instant hit . we need 50 more books .  vince  p . s . i understand paul sent you the check for the remaining 50 %\",0\n\"Subject: re : research and development charges to gpg  vera ,  we shall talk to the accounting group about the correction .  vince  08 / 09 / 2000 03 : 26 pm  vera apodaca @ enron  vera apodaca @ enron  vera apodaca @ enron  08 / 09 / 2000 03 : 26 pm  08 / 09 / 2000 03 : 26 pm  to : pinnamaneni krishnarao / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : research and development charges to gpg  per mail dated june 15 from kim watson , there was supposed to have occurred  a true - up of $ 274 . 7 in july for the fist six months of 2000 . reviewing july  actuals , i was not able to locate this entry . would you pls let me know  whether this entry was made , if not , when do you intend to process it .  thanks .\",0\n\"Subject: re : tanya ' s vacation  tanya ,  no problem .  vince  tanya tamarchenko  12 / 12 / 2000 01 : 28 pm  to : vince j kaminski / hou / ect @ ect  cc : shirley crenshaw / hou / ect @ ect  subject : re : tanya ' s vacation  vince ,  i was going to take afternoon off this thursday .  is it ok ?  tanya\",0\n\"Subject: re : lsu seminar visit  dear vince ,  i just left voice mail for you . we are interested in obtaining copies of  the papers you ' ll be using as the basis for your presentations on thursday  and friday so that we can get these materials distributed . can you call me  at 225 - 388 - 0447 so we can discuss this ? i would also like to be able to go  over the schedule with you just to make sure that we are on the same page .  thanks for taking the time to visit us . we are looking forward to your visit .  sincerely ,  jim garven  james r . garven  william h . wright , jr . endowed chair for financial services  department of finance  2158 ceba  e . j . ourso college of business administration  louisiana state university  baton rouge , la 70803 - 6308  voice ( 225 ) 388 - 0477 | fax : ( 800 ) 859 - 6361  e - mail : jgarven @ lsu . edu  home page : http : / / garven . lsu . edu  vita : http : / / garven . lsu . edu / dossier . html  research paper archive : http : / / garven . lsu . edu / research . html  - attl . htm\",0\n\"Subject: energy extravaganza - 2 weeks away !  energy extravaganza is just two weeks away - saturday , may 6 , 2000 ! if you  haven ' t bought your ticket or asked your company to sponsor a table , do so  and  let us know . there are still spots available for both , and you won ' t want to  miss this exciting evening ! there will be magic , dinner , dancing and some  wonderful silent auction items for the taking ! bid on condos in maui , lake  tahoe and a log home in angelfire ! there will be golf and hunting packages ,  sports memorabilia , and pamper packages for your significant other !  there are still a limited number of raffle tickets left for a chance at that  new  2000 harley davidson 1200 custom sportster , so call the hea office if you  would  like to buy one or to purchase your gala tickets . don ' t delay - we want to  see  you there !  this message was sent by :  teresa knight , executive director  houston energy association ( hea )  phone : ( 713 ) 651 - 0551  fax : ( 713 ) 659 - 6424  tknight @ houstonenergy . org  if you would like to have your email address removed from our mailing list ,  please click the link below to the hea home page , where you will find a  mini - form to remove your name automatically .  http : / / www . houstonenergy . org /\",0\n\"Subject: fw : final revised document . thanks .  - - - - - - - - - - - - - - - - - - - - - - forwarded by jeffrey a shankman / hou / ect on 08 / 04 / 2000  01 : 56 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" piazze , thomas \"\" on 08 / 04 / 2000 01 : 50 : 31 pm  to : \"\" ' shankman , jeff ' \"\"  cc :  subject : fw : final revised document . thanks .  jeff : good talking with you earlier this week and happy to hear that your  conversation with jeff skilling was such a positive one . i am looking  forward to working with you , vince and mark palmer in the near future to put  in place a comprehensive plan to maximize the enron / wharton relationship in a  number of different areas . i also know that a number of the faculty will be  extremely pleased to learn of this news and will be quick to get the ball  rolling .  as promised , i am forwarding a document outlining all on campus sponsorship  opportunities , minus the student business plan competition , for the upcoming  school year . please review and pass it on the celeste roberts , for whom i do  not have an accurate e - mail address . there are a number of student  conferences that you may wish to consider participating in as a means for  getting the enron name in front of them . please don ' t hesitate to contact me  with any questions you may have or requests for additional information .  i will also contact the career management office and ask that they call  celeste to discuss career orientation panel sessions . i know that you must  plan your schedule well in advance and will do my best to facilitate that  process .  thanks again for all you are doing to bring our two institutions together .  it is important and makes a big difference .  look forward to hearing from you soon .  tom  - - - - - original message - - - - -  from : henley , nadina  sent : friday , july 28 , 2000 9 : 54 am  to : piazze , thomas  subject : final revised document . thanks .  >  - opportunities . doc\",0\n\"Subject: re : i am zhendong  sure thing !  - - - - - original message - - - - -  from : kaminski , vince  sent : thursday , april 12 , 2001 3 : 21 pm  to : molly magee / hou / ect @ enron  cc : gibner , stinson ; crenshaw , shirley  subject : i am zhendong  molly ,  we would like to hire this person for the summer ( standard offer ) .  thanks .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 12 / 2001 03 : 22 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  zhendong xia on 04 / 11 / 2001 09 : 14 : 01 pm  to : vince . j . kaminski @ enron . com  cc :  subject : i am zhendong  hi , dr . kaminski :  i am zhendong , the student of dr . deng . i think dr . deng has sent my  resume to you . i am very happy to have an opportunity to work with you  this summer .  i am a student in both ms qcf and ph . d eda programs in georgia tech  now . i plan to find a job in industry instead of academic after my  graduation . so i intend to do internship during the process of prusuing my  degree to acquire some experience for my future career .  i hope to start on 5 / 14 / 2001 and end on 8 / 17 / 2001 .  thanks a lot .  zhendong xia  georgia institute of technology  school of industrial and systems engineering  email : dengie @ isye . gatech . edu  dengie @ sina . com  tel : ( h ) 404 - 8975103  ( o ) 404 - 8944318 \",0\n\"Subject: subscription renewals  vince :  do you want to renew the below listed subscriptions ?  please let me know .  thanks  shirley  shirley ,  i hope you had a good weekend . the following subscriptions for vince are up  for renewal . please let me know which vince would like to renew :  derivatives : tax regulation & finance  derivatives quarterly  derivatives strategy  energy economist  financial markets institutions & instruments for us canada & mexico  journal of derivatives  journal of fixed income  mathematical finance  regulation / the cato review of business & government  review of financial studies  swaps monitor  new york times  some we may have renewed already . call me with any questions .  thank you  susan\",0\n\"Subject: message 2  i am sorry to send you the multi - email , because the mail server doesn ' t have  enough memory . it always cause some troubles .  ps : attached with my paper entitled \"\" multireset american - style put options  valuation and optimal resetting \"\" .  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  quentin kerr , email : qkerr @ maths . uq . edu . au  room : 67 - 622 tel : ( 07 ) 33461428  department of mathematics , the university of queensland  - multiresets . ps\",0\n\"Subject: re : information  vince ,  i will look into this right away . i am sorry for the slow response . in the  future please send me e - mails at shalesh _ ganjoo @ enron . net because i check  that address more frequently than this one . thank you .  shalesh ganjoo  vince j kaminski  11 / 21 / 2000 09 : 15 am  to : shalesh ganjoo / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect  subject : information  shalesh ,  please , look into it . can we give them this information ?  i see a remote possibility of a gain for enron : it ' s in our interest to  support  the growth of this market and part of the process is development of the  infrastructure for this market and maintaining public interest .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 11 / 21 / 2000  09 : 18 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" yann d ' halluin \"\" on 11 / 16 / 2000 01 : 18 : 39 pm  to : vince . j . kaminski @ enron . com  cc :  subject : information  dear sir :  the scientific computation group at the university of  waterloo , ontario , canada , has recently started to be very  interested in the recent developments of the bandwidth  market . we find that the specifics of the bandwidth market  offer challenges from the modelling point  of view .  however , we have encountered difficulties when looking for  data , and we were wondering if you could help us . specifically  we would like to know for a given city pair for the different  existing type of lines ( e . g . oc 3 , ocl 2 , oc 48 . . . . )  1 . what has been the spot lease prices ( e . g . $ / line - type / mile ) for  the past 12 months ?  2 . what is the price of the dark fiber for a given type of line ?  3 . what is the maintenance cost $ / month ?  ( for the same lines , e . g . oc 3 , ocl 2 , oc 48 , . . . )  4 . what is the upgrading cost for the different lines ?  ( e . g . how much does it cost to upgrade )  oc 3 - - > ocl 2  oc 3 - - > oc 48  ocl 2 - - > oc 48  5 . how long does it take to upgrade a line from a certain  capacity to another ( e . g . 1 month , 2 month , . . . ) ?  we realize that some of these questions may ask for confidential  data , in that case we would really appreciate if an order of magnitude  was provided . i look forward to hearing from you .  sincerely ,  yann d ' halluin  p . s : here is a link to our web page :  http : / / www . scicom . uwaterloo . ca  - -  this email and any files transmitted with it are confidential and  intended solely for the use of the individual or entity to whom they  are addressed . any unauthorized review , use , disclosure or distribution  is prohibited . if you are not the intended recipient , please contact  the sender by reply e - mail and destroy all copies of the original  message . \",0\n\"Subject: computers from research group  good morning all :  this past weekend you moved two computers from ebl 972 b and 1972 g  and were supposed to install them in ebl 941 and eb 1952 . what  happened ? there is no computer in eb 1941 and only the monitor in  eb 1952 . we need this equipment back . please install as soon as  possible .  thanks and have a great day !  shirley  3 - 5290\",0\n\"Subject: re : replied resume  vince / sally  it appears that the implied vol on this one is quite high . perhaps we can  lower our var using historical vols .  i would be happy to interview him . his resume does not appear to be  research - worthy by any stretch so i guess rac or ops might be a fit  should i forward his resume to tony vasut and bring him in to see a couple of  racs and a couple of ops as sort of a first exploratory interview ? ?  sally - pls advise your thoughts .  vince - is this the price of being a risk management rock star ?  ted  vince j kaminski  06 / 23 / 2000 08 : 18 am  to : sally beck / hou / ect @ ect , michael e moscoso / hou / ect @ ect , bob  shults / hou / ect @ ect , ted murphy / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : replied resume  i am forwarding a resume of one candidate who is very  persistent and quite aggressive .  please , take a look at him .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 06 / 23 / 2000  08 : 18 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  eric hilton on 06 / 22 / 2000 11 : 20 : 11 pm  to : vince . j . kaminski @ enron . com  cc :  subject : replied resume  mr . kaminski ,  ? ? ? ? ? ? ? i sent an actual resume via the postal service . i guess you never  received it . thank you for your patience .  a few features i possess that suggest that i may be a representative your  well established company would value are :  ? seven - plus years as a manager / junior executive of logistics in a fast - paced ,  demanding , and constantly evolving retail industry .  experience in effectively developing and implementing policies and tasks  under marketing , logistics , brand management , and best practices .  ba degree in marketing with a 3 . 88 gpa from the university of san moritz ,  london england .  extensive knowledge in management with the ability to effectively manage  multiple tasks , as well as multiple associates , to achieve specific goals in  research and brand management within the company ' s deadline .  seven - plus years effectively implementing and teaching dynamic and successful  customer service .  with my current employer , i am in charge of logistics research and  reports / data collection , as well as responsible for developing new and  successful ideas and implementing them under constantly evolving brand  management and best practices .  traveling to london , england and extensively finishing my degree indicates  that i am willing to go the \u0001 & extra mile \u0001 8 to achieve and obtain my goals .  perhaps , mr . kaminiski , ? i am an associate you need at your well - respected  company . i would be very happy to meet with you , at your convenience , to  discuss the possibility of putting my education and experience to work for  enron .  thank you for your consideration . i look forward to hearing from you . i have  attached my resume to this email formatted under microsoft word .  warmest regards ,  eric hilton  ?  - my resume\",0\n\"Subject: mg memo  i am sending you an updated version of the mg var memo , following the  discussion  grant and i had with bjorn thursday evening .  please , let me know if you think more changes are required .  vince\",0\n\"Subject: managing energy price risk - - second edition  dear vince : i just wanted to thank you for supplying a copy of the book .  the article on the natural gas market is just what i ' ve been looking for .  the new addition , coupled with the first version ' s discussion of the  volatility of the gas market in the mid 90 ' s should be very helpful in  convincing these government watchdog types that basis adjustments in  pricing formulas are not some sinister plot to deprive the feds of their  royalties . or should if there is any rationality in government .  thanks again for your help .  best regards ,  steve williams  eog resources\",0\n\"Subject: web based expense report implementation deadline  xms communication  the expense management system ( xms ) is a tool used to electronically submit  your expense report for approval and payment through the enron intranet . it  is user friendly , accurate and less labor intensive for you and our  accounting staff . this product was initially made available october 15 , 2000  and approximately 50 % of the houston employees are currently using it to  submit their expense reports . our goal is to have all enron employees using  the xms system by april 15 ( income tax day \u0001 * easy to remember ) .  there are some changes coming to the accounts payable ( ap ) department that  are compelling us to fully utilize the xms system . in the near future paper  and e - mail directed expense reports will not be accepted . if you are unsure  of how to use the xms system there is training available through leap that  will explain how to use the system . the following training information is  from the december 14 th enron announcement about xms :  training  go to the it central web page . select services > training . click on  \"\" schedules \"\" in the north america column , and go to the xms workshop schedule  to choose your class . if no > classes are listed , call the training  department and place your request at ( 713 ) 853 - 1816 . those in outlying  locations and those who prefer on - line training can use leap by signing on to  isc . enron . com and clicking on \"\" training and education , \"\" then leap ( shown as a  link ) . use xms ( lower case ) as the user id and password .  documentation  step by step documentation is also available from it central web page . select  services > training . click on \"\" documentation \"\" in the north america column and  choose xms user ' s guide from the list .  application support services  call the isc help desk at ( 713 ) 345 - 4 sap ( 4727 ) . do not call accounts  payable with questions about how to use the system or with issues regarding  electronic pre - populated data .\",0\n\"Subject: re : visiting enron  giuseppe ,  thanks a lot . i would appreciate if you could set up a meeting with prof .  bambos .  we talked to him during our last visit and we would like to follow up with  some  specific proposals regarding research projects enron could sponsor .  vince  giuseppe andrea paleologo on 02 / 14 / 2000 03 : 20 : 52 pm  please respond to gappy @ stanford . edu  to : vince j kaminski / hou / ect @ ect  cc :  subject : visiting enron  dr . kaminski , i would like to thank you very much for taking care of amy and  me  during our trip to houston . what i saw at enron communication was nothing  short  of revolutionary . more than that , i was impressed with the drive of the  people ,  their kindness , and their proficiency . i look forward to meeting you again in  stanford during the last weekend of february . i will send you an email next  week , so that we can arrange a meeting between you and prof . bambos .  all the best wishes ,  giuseppe  - -  : : giuseppe a paleologo : : http : / / www . stanford . edu / ~ gappy  \"\" what a waste it is to lose one ' s mind . or not to have a mind is being  very wasteful . how true that is . \"\"  - vice president dan quayle winning friends while  speaking to the united negro college fund , 5 / 9 / 89 -\",0\n\"Subject: demand price elasticities  here are excerpts from some work i recently did for epri . perhaps you will  find it of some interest .  i don ' t have the right to send you the whole article but i was allowed to  send you some excerpts .  naturally , this is intended for you alone .  best regards ,  jhherbert  - t 64 - 67 nletter 1 - 01 rev . doc\",0\n\"Subject: williams licenses prosrm capacity management system from pros  revenue management  since i left , i don ' t know where this project stands . however , thought you  might want to see this .  hope all is well .  regards ,  stephanie  - - - - - - - - - - - - - - - - - - - - - - forwarded by stephanie miller / corp / enron on 03 / 15 / 2000  10 : 54 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  trobison @ prosrm . com on 03 / 15 / 2000 10 : 38 : 31 am  to : smiller @ enron . com  cc :  subject : williams licenses prosrm capacity management system from pros  revenue management  tina robison  corporate communications  pros revenue management  713 - 335 - 5397 - fax  713 - 335 - 5813 - phone  trobison @ prosrm . com  - williams . pros . pdf\",0\n\"Subject: re : next visit to houston  ed ,  i shall be available on both days . what about wednesday ,  july 12 , between 1 : 30 and 4 : 00 . please , let me know  what time would work for you .  it will be nice to see you again .  vince  p . s . by the way , did you have a chance to take a look at the eol ?  \"\" edward krapels \"\" on 06 / 28 / 2000 02 : 49 : 41 pm  please respond to ekrapels @ esaibos . com  to : vince j kaminski / hou / ect @ ect  cc :  subject : next visit to houston  dear vince ,  i will be returning to houston during the week of july 10 .  esai and weather services international have launched - - after more than 18  months of r & d - - our service , called energycast power trader and energycast  gas trader , for power traders in nepool and pjm . i would be happy to review  the service with you as well as take you on a tour of our web site . are you  available on july 12 - 13 ?  sincerely ,  ed krapels  - 61900 _ wsiesai _ energycast . doc\",0\n\"Subject: re : rtp project  please count the following 3 people from enron energy services to attend the  conference :  anoush farhangi  osman sezgen  p v krishnarao  if there are additional people interested in attending the conference , i will  let you know .  best regards ,  krishna .  - - - - - - - - - - - - - - - - - - - - - - forwarded by pinnamaneni krishnarao / hou / ect on  03 / 20 / 2001 03 : 12 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  03 / 19 / 2001 11 : 32 am  to : pinnamaneni krishnarao / hou / ect @ ect  cc :  subject : re : rtp project  krishna ,  please , confirm with hill huntington .  vince  pinnamaneni krishnarao  03 / 19 / 2001 09 : 28 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : rtp project  yes , i would be definitely interested . count me and osman also to  participate . i will forward your email to others in ees who might be  interested also .  krishna .  vince j kaminski  03 / 19 / 2001 08 : 12 am  to : john henderson / hou / ees @ ees , pinnamaneni krishnarao / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect  subject : rtp project  john and krishna ,  i am sending you an outline of a conference at stanford on topics related to  demand - side pricing and management in the power markets .  please , let me know if you are personally interested and who else  in your respective organizations would like to attend .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 19 / 2001  08 : 10 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  hill huntington on 03 / 15 / 2001 05 : 26 : 55 pm  to : vkamins @ enron . com  cc :  subject : rtp project  vince ,  targetted conference date is th - f june 21 - 22 at stanford . enclosed in the  recent revision to what i sent before .  great to meet you ,  hill  - retail notes . rtf  hillard g . huntington  emf - an international forum on  energy and environmental markets voice : ( 650 ) 723 - 1050  408 terman center fax : ( 650 ) 725 - 5362  stanford university email : hillh @ stanford . edu  stanford , ca 94305 - 4026  emf website : http : / / www . stanford . edu / group / emf /\",0\n\"Subject: capital book  to further the process of reaching the stated objectives of increasing enron america ' s velocity of capital and associated return on invested capital , we have decided to create a capital book . the capital book will have no profit target associated with it and will be managed by joe deffner . the purpose of creating this book is to ensure that all transactions within enron americas , with any form of capital requirement , are structured correctly and are allocated the appropriate cost of capital charge .  the previous numbers used in the business plans at the beginning of this year will remain for all transactions in place and where we hold assets . therefore , on any assets currently held within each business area , the capital charge will remain at 15 % . internal ownership of these assets will be maintained by the originating business unit subject to the internal ownership policy outlined below .  the cost of capital associated with all transactions in enron americas will be set by joe . this process is separate and apart from the current rac process for transactions which will continue unchanged .  capital investments on balance sheet will continue to accrue a capital charge at the previously established rate of 15 % . transactions which are structured off credit will receive a pure market pass through of the actually incurred cost of capital as opposed to the previous 15 % across the board charge . transactions which are structured off balance sheet , but on credit will be priced based upon the financial impact on enron america ' s overall credit capacity .  on transactions that deploy capital through the trading books , the capital book will take a finance reserve on each transaction , similar to the way the credit group takes a credit reserve . this finance reserve will be used specifically to fund the capital required for the transaction . as noted above , the capital book will have no budget and will essentially charge out to the origination and trading groups at actual cost .  by sending market - based capital pricing signals internally , enron america ' s sources of capital and liquidity should be better optimized across the organization .  questions regarding the capital book can be addressed to :  joe deffner 853 - 7117  alan quaintance 345 - 7731\",0\n\"Subject: re : manabu matsumoto  hi lucy / natalie  given that manabu is perceived as the \"\" specialist \"\" type , and probably  shouldn ' t go straight into the gas trading group , this may have implications  for research headcount if he ' s considered a good non - a & a hire .  i ' ll be spending the next couple of weeks canvassing opinions from various  vps and mds over their preferred size , role and style of research group for  europe . i think we should delay manabu ' s second round interviews for a while .  cheers ,  steve  lucy page  07 / 20 / 2000 07 : 38 pm  to : steven leppard / lon / ect @ ect  cc : natalie cilliers / lon / ect @ ect  subject : manabu matsumoto  steve ,  i am out of the office tomorrow and was just wondering if you ' d had a chance  to think about the interview list for manabu ?  if you get a list together , natalie will be able start working on it -  alternatively i will catch up with you on monday .  natalie - just so you know manabu will be coming in for second round but not  for the a & a programme - probably a specialist in steve ' s group ( we ' ll pass it  over to commercial support next week )  cheers  lucy\",0\n\"Subject: thank you .  i would like to take this brief opportunity to thank you all for inviting me  to visit enron . ? the day was extremely interesting and educational for me and  i was extremely impressed by the people and environment enron had to offer .  i look forward to speaking with you about this opportunity in the near  future .  sincerely ,  michael gorman  michael f . gorman , ph . d .  ( w ) 817 352 - 2396  ( c ) 817 296 - 3273  ( f ) ? 817 352 - 6300\",0\n\"Subject: follow - up on siam workshop  i am forwarding for your attention the resume of peter percell  who has an extensive experience in modeling physical flows  of natural gas in pipeline systems . peter is looking currently for a job .  i met him last week at the meeting of the science and industry advance with  mathematics  society at the university of houston .  the application of recent developments in optimization theory  and numerical methods can help enron to improve further  efficiency of our pipeline system and reduce the consumption of compressor  fuel .  please , let me know if you interested in introducing peter to executives  in your organization . i shall be glad to make arrangements for an interview .  vince kaminski  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 30 / 2001  02 : 17 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  peter percell on 04 / 30 / 2001 11 : 16 : 58 am  to : vincent kaminski  cc :  subject : follow - up on siam workshop  i enjoyed your presentation , and meeting you briefly afterwards , at the  siam workshop last friday .  i have extensive experience as a technical leader in the design and  development of modeling and simulation software products , mostly  for the oil and gas pipeline industry .  i am looking for a position that can utilize my software development and  mathematical skills . getting out of the narrow confines of the pipeline  simulation industry would be a plus .  please consider whether i might fit in your group . your answer to a  question indicated that i have several of the skills you look for .  also , please let me know , by email , the names and contact information of  other managers within enron who might benefit from having someone with  my qualifications in their group .  attached are my resume and an addendum covering academic & consulting  experience . publications are available on request .  i will call you in a couple of days to follow up on this email .  thank you for your time .  peter percell 10030 doliver drive  percell @ swbell . net houston , tx 77042 - 2016  ( 713 ) 532 - 3836 voice & fax  - percell , peter resume only . doc  - percell , peter a & c exp . doc\",0\n\"Subject: forma platnosci z \"\" inzynierie finansowa \"\"  uprzejmie informuje , ze przyjmujemy czeki , ale niechetnie . wysokie koszty  przy realizacji czekow .  gdyby rodziana sz . pana wplacila naleznosc w zlotowkach , to odpadna koszta  bankowe - 5 $ . naleznosc w zl wynosi 81 zl lub 99 zl ( lot ) .  w liscie pomylilam sie ? - zamiast 25 , 25 $ napisalam 15 , 25 $ . przepraszam .  wplacenie pieniedzy w polsce znacznie przyspieszy wysylke .  ewentualny czek prosze przyslac na sume 25 , 25 $ lub 29 , 75 $  pozdrawiam serdecznie  grazyna piesniewska\",0\n\"Subject: evaluations - enron  please pass this along to others who may have worked with the students .  to : tiger hosts  from : field application project office  the wharton school  university of pennsylvania  re : tiger team evaluations  thank you for hosting the tiger team project , field application project  2001 . this opportunity provided the student team a worthwhile experience to  apply newly acquired skills to a real world issue facing your company . your  dedication and support of the project contributed greatly to its success .  hopefully , by now you have had the opportunity to review the final reports .  please take a moment to complete the host evaluation form available at :  ( use internet explorer )  username : tiger  password : fap 2001 ( no space between )  ( note : case sensitive , please use lower case )  deadline for acceptance : wednesday , april 25 , 2001  your feedback is important to us . it is taken into consideration when  calculating student grades and when implementing changes that will impact  and enhance the program in the future . also , in an effort to insure the  return of meaningful and contributing host companies , we ask that you  indicate your interest in returning as a host next year and the fap office  will contact you in september 2001 .  thank you again for your support of the wharton school and participation in  the field application project this year . we look forward to working with  you in the future .  if you have any questions , please contact the fap office at ( 215 ) 573 - 8394  or email : fap @ management . wharton . upenn . edu  sincerely ,  donna piazze  program director  field application project\",0\n\"Subject: re : programming for rdi model  michelle ,  i ' ve just met with cecil and christin . we have divided the code into 3 parts ,  and cecil ' s  looking at the first part . cecil , helen and i will meet again tomorrow  morning to go through  the logic of the other two parts . since cecil is devoted completely to this  project , once he  starts coding , it should not take too long .  best ,  alex\",0\n\"Subject: outsourcing communication  access . benefits . 2001  benefits customer service and its administrative functions just got better !  starting 01 . 01 . 2001 , this service was outsourced to vendors offering the  latest in technology and the best in customer service .  keeping pace with your lifestyle , your benefits are now securely accessible  on demand .  check out our new web address http : / / benefits . enron . com to view or print your  health & group elections , to request a pension estimate , or to view your  savings plan elections .  if you are not near your computer one number is all you need for benefit  forms , questions and changes .  800 . 332 . 7979 .  option 1 - enron group health plans  option 2 - enron corp . cash balance plan  option 3 - savings plan or esop  check it out . it \u0001 , s easy !  enter your social security number and a 4 digit personal identification  number ( pin ) .  ? for health & group and pension , your initial pin is the last 4 digits of  your ssn .  ? your savings plan pin number does not change .  no need for voice mail or e - mail addresses or long waits in the elevator  banks to get to the 16 th floor in the enron building .  for 2001 , if you need help , customer service reps are available to assist you  m - f from 8 : 00 am cst - 5 : 00 pm cst .  but wait , there \u0001 , s more .  the hr info zone is located in the lobby of the enron building to help you  navigate . and coming soon , when you are outside the houston area , the kiosk  will be a phone call away 800 . 332 . 7979 , option 5  in addition , later this year , we will offer the ability to make family status  changes online .  note : your 2001 elections are no longer available through ehronline .  make it a new year \u0001 , s resolution to  get connected !  enron benefits \u0001 ( keeping pace with your lifestyle .\",0\n\"Subject: informal interview with the enron research group  dr . neale :  your resume was forwarded to vince kaminski and the research group  with enron corp .  they would like to conduct an informal interview with you at your convenience .  on one of the following days :  wednesday , sept 27  friday , sept 29  monday , oct 2  tuesday , oct 3  thursday , oct 12  friday , oct 13  please let me know what day and the time frame you are available .  the interviewers would be :  vince kaminski managing director and head of research  stinson gibner vice president . research  grant masson vice president , research  vasant shanbhogue vice president , research  zimin lu director , research  paulo issler manager , research  we look forward to hearing from you .  sincerest regards ,  shirley crenshaw  administrative coordinator  enron research department\",0\n\"Subject: chapter  hi vince ,  ?  how are things with you ? well i hope . do you have the latest version of your  part of chapter 3 ? ( i think grant has sent thru a seperate , updated version  to you , which has been typeset ) . everything else has been tied up and we  will go with the version we have , unless we hear otherwise .  ?  many thanks and best regards .  ?  chris .  ?\",0\n\"Subject: vince kaminski ' s bio  good morning jim :  attached please find a short \"\" bio \"\" for vince kaminski . if you need anything  else , please let me know .  the presentations will be forthcoming .  have a great day !  shirley  3 - 5290\",0\n\"Subject: re : cplex  i agree . i ( or chonawee ) will go ahead and place the order for cplex . i think  that this will provide us with a great set of tools .  - samer  pinnamaneni krishnarao @ ect  05 / 24 / 00 01 : 34 pm  to : samer takriti / enron communications @ enron communications @ enron , tom  halliburton / corp / enron @ enron  cc : grant masson / hou / ect @ ect , stinson gibner / hou / ect @ ect , chonawee  supatgiat / corp / enron @ enron , vince j kaminski / hou / ect @ ect  subject : re : cplex  i talked to vince about the optimization software issue . vince said that if  there are technical reasons for having two different packages and the  benefits outweigh the costs of maintaining two licenses , we can go ahead and  buy both . in my view , it is a great advantage to have both , as each has its  own strengths relative to the other . we have spent some time trying to come  up with one package that solves all of our problmes without success . there is  no point is wasting more time on this effort . let ' s go ahead and purchase  both .  krishna .  from : samer takriti @ enron communications on 05 / 24 / 2000 10 : 22 am  to : tom halliburton / corp / enron @ enron  cc : grant masson / hou / ect @ ect , pinnamaneni krishnarao / hou / ect @ ect , stinson  gibner / hou / ect @ ect , chonawee supatgiat / corp / enron @ enron  subject : re : cplex  tom ,  vince prefers to have one software package ( if possible ) . it is my  understanding that special ordered sets are recognized automatically  ( internally ) by cplex . this seems to be the case for both cplex and osl  according to ampl ' s web page and other references ( check  lorderedsetsfeature ) . as a result , the cplex people feel that there is no  need to provide the user with the tools to represent special - ordered sets in  opl . as a matter of fact , the incapability of xpress to recognize them  automatically concerns me .  if you have special requirements , c code may be used to pass the information  to the solver ( which is straight forward ; all of chonawee ' s testing was done  this way ) . chonawee ' s benchmark shows a superior performance by cplex ( which  you indicated yourself in an earlier message ) .  if you feel that xpress is the only way to go , then feel free to purchase it  ( the purchase order is on hold for the time being ) . however , we need to check  with vince first . i strongly feel that we should have one solver in order to  minimize cost and contractual headaches .  let us try to get this issue resolved by this afternoon . thanks .  - samer\",0\n\"Subject: super saturday iv interviews  thank you for volunteering to participate in the interview process of the  january 15 associate super saturday . our team is working on the weekend  arrangements and will deliver your information packet to you thursday ,  january 15 . if you have any questions , please let elizabeth boudreaux know  at x 3 - 6176 .  thank you !  ginger gamble  manager  associate & analyst program\",0\n\"Subject: enterprise risk management  dear vince ,  ?  thanks for your call the other day regarding eprm ' s upcoming enterprise risk  management conference . we seem to be making progress and are pulling  together some interesting subjects for inclusion this year . i am currently  at a stage where there are plenty of possible sessions and over the next  week i will be able to decide of which will stay and which will go .  ?  i have attached a file that gives an indication of the topics that have been  identified so far . although i have bullet points for the sessions i would  first like to identify interested parties and then work with them to develop  a session that reflects their particular expertise and experience . i also  think that by continuously developing the points we can make greater  allowances for continuity between each participant .  ?  based on our discussion i would be extremely interested in inviting you to  lead a session on the main conference . you seemed to have an interesting  view on operational risk and the particular challenges that are presented  within the energy industry . this session will run on thursday , november  16 th . the title is reasonably broad at this stage and any suggestions are  welcome .  ?  your overall views on the current conference content is also welcome and if  you feel that another session is more suited to your work do not hesitate to  contact me . i look forward to speaking with you soon .  ?  yours sincerely ,  ?  paul bristow  senior course and conference producer , energy & power risk management  + 44 ( 0 ) 20 7484 9883  - maildoc . doc\",0\n\"Subject: re : default rates  per our discussion , see attached for impact of assumed recovery rates :  michael tribolet @ enron  12 / 11 / 2000 08 : 09 am  to : william s bradford / hou / ect @ ect , david gorte / hou / ect @ ect , vince j  kaminski / hou / ect @ ect , mark ruane / hou / ect @ ect  cc :  subject : default rates  please see below for my note to jeremy at the bottom and his reponse . i  have placed mark ruane ' s yields against a mid november default frequency  table . note there may be a slight shearing in dates , but the concept is  more important :  market implied cumulative default rates ( % ) :  1 year 5 year 10 year  aaa 0 . 51 5 . 74 14 . 54  aa 0 . 67 6 . 39 16 . 61  a 0 . 98 8 . 98 21 . 03  bbb 1 . 17 9 . 88 22 . 39  bb 3 . 27 18 . 62 37 . 51  b 4 . 65 24 . 21 46 . 27  s & p historical default rates ( % ) :  1 year 5 year 10 year  aaa 0 . 00 0 . 13 0 . 67  aa 0 . 01 0 . 33 0 . 90  a 0 . 04 0 . 47 1 . 48  bbb 0 . 21 1 . 81 3 . 63  bb 0 . 91 8 . 82 14 . 42  b 5 . 16 20 . 95 27 . 13  in looking at the one - year transition rates as a very rough proxy for how  many more defaults occur in a recession ( 1991 ) versus average ( 1981 - 1999 )  historical default rates ( % ) :  investment grade non - investment  grade  avg . 1981 - 99 0 . 07 4 . 21  1991  0 . 12 10 . 40  multiple 1 . 7 x  2 . 5 x  looking at where the market implied default rates divided by the historicals  default rates to obtain a \"\" multiple \"\" ( how much more severe than historical ) :  1 year 5 year 10 year  aaa infinite 44 . 2 x 21 . 7 x  aa 67 . 0 x 19 . 4 x 18 . 5 x  a 24 . 5 x 19 . 1 x 14 . 2 x  bbb 5 . 6 x 5 . 5 x 6 . 2 x  bb 3 . 6 x 2 . 1 x 2 . 6 x  b 1 . 1 x 1 . 2 x 1 . 7 x  on the 10 year historical figures , we need to be careful as the s & p static  pool figures show a definite seasoning ( lower defaults in late years probably  due to prepayment ) versus our contracts . secondly , the s & p figures have  withdrawn ratings , which usually mean they are stale , but loosing some  information content .  i will ask emy to set up a meeting to discuss further .  - - - - - - - - - - - - - - - - - - - - - - forwarded by michael tribolet / corp / enron on 12 / 11 / 2000  07 : 06 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : jeremy blachman @ ees on 12 / 10 / 2000 07 : 21 am  to : michael tribolet / corp / enron @ enron  cc :  subject : default rates  thanks . i would strongly suggest an offsite sooner than later with a handful  of the right people so that we can step back and design the right  architecture for looking at credit in our deals . it is broken , not clear ,  killing our velocity and true capabilities . we also need to look at staffing ,  skills sets , the credit reserve model etc . perhaps you should take a crack at  an agenda .  - - - - - - - - - - - - - - - - - - - - - - forwarded by jeremy blachman / hou / ees on 12 / 10 / 2000  07 : 08 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  michael tribolet @ enron  12 / 09 / 2000 03 : 51 pm  to : jeremy blachman / hou / ees @ ees  cc :  subject : default rates  i visited with vince kaminski for about 20 minutes today regarding the market  implied defaults rates and the disconnect in investment grade land . he is  seeing the same anomaly and agreed that we as a company need to revisit the  methodology employed in calculating the implied figures . i will follow  through and report back .\",0\n\"Subject: telephone interview with the research group  tammy :  please excuse the error on the email below . i misunderstood - the position  will be a full - time position with the research group .  look forward to hearing from you . thanks !  shirley crenshaw  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 27 / 2000  09 : 50 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  shirley crenshaw  04 / 27 / 2000 09 : 41 am  to : dasyuan @ yahoo . com  cc :  subject : telephone interview with the research group  good morning tammy :  the enron corp . research group would like to conduct a telephone  interview with you at your convenience . this will be as a \"\" summer  intern \"\" with the research group .  please let me know your availability on monday , may lst or thursday ;  may 4 th .  the persons who will be interviewing you are :  vince kaminski managing director  stinson gibner vice president  krishna krishnarao director  osman sezgen manager  i look forward to hearing from you .  thank you and have a great day  shirley crenshaw  administrative coordinator  713 - 852 - 5290\",0\n\"Subject: re : spring 2001 conference participation by jeffrey k . skilling  i think he can do it , vince , but ut has asked him to speak at a leadership  conference also on 2 / 16 , which rick causey is encouraging him to do . he has  all the information ( i just sent it home in his mail as he returned this  afternoon from a week of travel ) , so will press him to make a decision  tomorrow . he may decide to do both or one or the other . . . i ' ll let you know  as soon as i do . srs  vince j kaminski @ ect  10 / 12 / 2000 04 : 57 pm  to : sherri sera / corp / enron @ enron  cc : vince j kaminski / hou / ect @ ect , richard causey / corp / enron @ enron  subject : re : spring 2001 conference participation by jeffrey k . skilling  sherri ,  any resolution of the scheduling conflict jeff skilling had for february the  22 nd ?  our friends at ut are ready to make the reservations and send out invitations  to this conference  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 12 / 2000  05 : 00 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" ehud i . ronn \"\" on 10 / 12 / 2000 10 : 12 : 56 am  to : richard . causey @ enron . com , vince . j . kaminski @ enron . com  cc :  subject : re : spring 2001 conference participation by jeffrey k . skilling  rick / vince :  good morning .  further to my discussions with vince during his visit to the energy finance  program yesterday , i write at this time to inquire whether mr . skilling ' s  assistant has been able to confirm his participation as 2 / 22 / 2001 keynote  speaker at our conference .  with thanks for your intercession on our behalf ,  ehud ronn  ehud i . ronn  professor of finance and jack s . josey professor in energy studies  director , center for energy finance education and research  mccombs school of business  university of texas at austin  austin , tx . 78712 - 1179  voice : ( 512 ) 471 - 5853  fax : ( 512 ) 471 - 5073  internet : eronn @ mail . utexas . edu \",0\n\"Subject: resignation effective june 5  vince ,  i am planning to make my resignation from enron so that june 5 th would be my last day at work . i am interested in the trading opportunity this fall and will talk again with andy about it . it will still make sense for me to resign in the mean time in order that i may start burning my non - compete period to open up my other options . in addition , it will allow me to be rehired without the burden of the noncompete should i come back in the fall .  regards ,  stinson\",0\n\"Subject: re : confidential  sophie - what do we need to do to implement this ?  vince - do you want to go through this with steve while he ' s in houston ?  - dale  vince j kaminski  30 / 08 / 2000 23 : 43  to : sophie kingsley / lon / ect @ ect  cc : dale surbey / lon / ect @ ect , vince j kaminski / hou / ect @ ect , michele  small / lon / ect @ ect  subject : re : confidential  sophie ,  i think it ' s a fair deal .  vince  sophie kingsley 08 / 30 / 2000 11 : 49 am  to : dale surbey / lon / ect @ ect  cc : vince j kaminski / hou / ect @ ect , michele small / lon / ect @ ect  subject : re : confidential  both ,  thanks for your comments and comparisons , it is good to get context .  based on your comments here would be my proposal  o 63 , 500 basic salary -  ol 5 k kickers for each of the 2 years - these are paid as a lump sum on each  anniversary guaranteed . therefore guaranteed salary is effectively o 78 , 500 -  this is completely separate and in addition to any performance bonus  increase the value of options to o 60 k to vest 1 / 3 as before - which leaves a  1 / 3 ( $ 20 , 000 ) hanging out there at the end of the contract .  just fyi - anjam is currently on o 68 , 000 but does not have an agreement , so  this would effectively put a 10 . 5 k gap between the two .  let me know your thoughts .  dale surbey  30 / 08 / 2000 16 : 09  to : sophie kingsley / lon / ect @ ect  cc :  subject : re : confidential  sophie ,  here ' s vince ' s comments on your proposal for steve . also , what ' s a 2 - yr  exec ? how do the kickers work - are they basically a guaranteed minimum  bonus or incremental bonus ?  - dale  - - - - - - - - - - - - - - - - - - - - - - forwarded by dale surbey / lon / ect on 30 / 08 / 2000 16 : 10  - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  30 / 08 / 2000 14 : 21  to : dale surbey / lon / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : confidential  dale ,  thanks for your message .  i don ' t know the labor market in london that well but here the market  for quants is very hot . steve is in my view an exceptionally talented person  and i would go an extra mile to retain him long - term for the company .  i would adjust the base salary or the kicker upward a bit .  o 62 , 000 basic is what anjam is receiving currently ( if i remember  correctly ) . steve has a much higher value  to enron than anjam .  vince  dale surbey  08 / 30 / 2000 07 : 49 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : confidential  vince ,  this is the package hr is proposing for steven . what do you think ?  - dale  - - - - - - - - - - - - - - - - - - - - - - forwarded by dale surbey / lon / ect on 30 / 08 / 2000 13 : 50  - - - - - - - - - - - - - - - - - - - - - - - - - - -  sophie kingsley 29 / 08 / 2000 20 : 32  to : dale surbey / lon / ect @ ect  cc :  subject : confidential  sorry dale , long day , here are the proposed numbers  2 year exec  o 62 , 000 basic ( currently o 55 k )  ol 0 k each year kickers  $ 50 , 000 worth of options to vest 1 / 3 1 / 3 1 / 3  let me know what you think .  regards  sophie\",0\n\"Subject: re : invitation . . . welcome new analyst reception  ashley ,  thnaks . i shall attend the reception . i shall ask shirley to set up a meeting  with you to discuss  spring events on campus .  vince  ashley baxter @ enron on 01 / 04 / 2001 04 : 01 : 01 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : invitation . . . welcome new analyst reception  hello vince  i wanted to forward the following invitation to you . we are putting the  technologists through an orientation which includes a few days with the  analyst program - and the following is one of the events that they have  scheduled on jan . 16 th . i wanted to forward to you as more of an fyi since  we do not have any cal berkeley candidates starting on jan . 8 th . also - we  are starting to set some of the events on campus for the spring - so we  should probably get together soon . please let me know what works best for  you !  thanks ,  ashley\",0\n\"Subject: revenue management meeting  please plan to attend a revenue management science kick - off meeting on  wednesday , august 23 , from 10 : 30 - 5 : 00 p . m . located in the enron building  conference room 49 cl . the purpose of this meeting will be to identify and  prioritize our forecasting and optimization efforts for revenue management .  your attendance in houston for this meeting is critical . we will send out  an agenda prior to the meeting . please call kim watson at 713 - 853 - 3098 , by  friday , august 18 , if you are unable to attend . lunch will be provided .  we look forward to seeing you there .\",0\n\"Subject: re : enron offsite  hi steve :  listed below is the information you will need . if i have left out anything ,  please let me know .  * * * * * * * * * *  friday , august 18 th  2 : 00 - 4 : 00 pm arrival in denver ( two separate flights )  can you arrange for shuttle to pick up ?  6 : 30 - 8 : 00 pm dinner at the lodge  saturday , august 19 th  we will need a conference room that will hold 12 - 15 people .  from 8 : 00 am until 4 : 00 pm .  8 : 00 am breakfast buffet set up in meeting room  10 : 00 am break - bring in fresh coffee and water  11 : 30 - 1 : 00 pm lunch ( lunch buffet in meeting room ? )  1 : 00 pm meeting resumes  2 : 30 pm break - bring in coffee , juice , cokes and water  4 : 00 pm meeting ends .  we will need an overhead projector and an lcd projector .  we will have dinner somewhere in the village on saturday night ,  any suggestions ?  sunday , august 20 th  8 : 00 - 11 : 00 check out and return to denver for flight to houston  can you arrange shuttle to denver ?  * * * * * * * * * * *  steve : some of the guys may bring their family ( will share the same room )  and stay a couple of days after the meeting ends . is there a problem with  them staying on at the lodge ? if not , please let me know how soon you  need to know how long they plan on staying .  this is all i can think of right now . if anything else comes up i will let  you  know .  thanks and have a great day !  shirley crenshaw  713 / 853 - 5290  email : shirley . crenshaw @ enron . com  \"\" steve collins \"\" on 06 / 27 / 2000 02 : 58 : 37 pm  to :  cc :  subject : re : enron offsite  rates are a little higher in august than they are in april ( august is high  season for summer ) , but i can do those rooms at $ 125 ( your april rate was  $ 105 ) .  what kind of meeting space will you need ? if you can get me a tentative  agenda , i will get the contract drawn up right away .  thanks again !  steve  > > > 06 / 27 / 00 01 : 28 pm > > >  let ' s do it ! august 18 - 20 is our first choice !  please send me all the information and then we will discuss the  particulars .  i will get vince to sign it immediately .  thanks steve !  shirley  \"\" steve collins \"\" on 06 / 27 / 2000 02 : 22 : 27 pm  to :  cc :  subject : re : enron offsite  hello again !  i promise i am not running ! the deal that we worked out with the general  manager ( tom pratt ) is that enron has a $ 6000 credit with the great divide  lodge that will expire on 8 / 1 / 00 . you can either use that credit for  individual rooms prior to 8 / 1 / 00 , or we have agreed that we can apply that  amount to a meeting prior to the thanksgiving holiday in 2000 if the  contract is signed before 8 / 1 / 00 .  at this point , august 18 - 20 is available , but the 25 - 28 is not . if we can  get this signed prior to 7 / 31 / 00 , your $ 6000 credit would be able to be  applied to this event .  please let me know if this will work for you . thanks !  steve  steve collins  national sales manager  the village at breckenridge / great divide lodge  ( 800 ) 332 - 0424 or ( 970 ) 453 - 3156 direct  scollins @ vailresorts . com  > > > \"\" shirley crenshaw \"\" 06 / 27 / 00 01 : 06 pm > > >  hello steve :  please don ' t run ! i know after the last fiasco with an enron offsite you  are  probably running for the hills !  i do want to apologize to you and thank you for all of your assistance even  though we were unable to make the trip .  however , i understand there has been an arrangement made with enron ,  that if we book a time and come before thanksgiving we can recoup the money  that we forfeited ? please let me know if i am understanding this  correctly .  if so , we have been told that our group can use this for an offsite .  we are looking at the weekends of august 18 , 19 and 20 or august 25 ,  26 and 27 th . there will be approximately 12 people .  please let me know your understanding of the arrangement and the  availability of the dates mentioned .  look forward to hearing from you .  regards ,  shirley crenshaw  administrative coordinator  enron corp . research  telephone : 713 / 853 - 5290  email : shirley . crenshaw @ enron . com\",0\n\"Subject: interview with the enron corp . research group  several of the enron corp . research team would like for you to come  in for an interview . they are :  vince kaminski managing director  stinson gibner vice president  maureen raymond - castaneda director  please give me some dates and times of your availability during the rest  of january and i will try to coordinate them with our schedule .  looking forward to hearing from you soon .  regards ,  shirley crenshaw  adminsitrative coordinator  enron research group  713 / 852 - 5290  email : shirley . crenshaw @ enron . com\",0\n\"Subject: message from bogdan  hi vince ,  i am enclosing my resume , as per our most recent conversation .  best regards ,  bogdan m . szopa  - bogdan res . . doc\",0\n\"Subject: as promised . . . 2 guys , vince  hi vince ,  here are two guys :  the first asked for you ( the guy from oxford ) .  the second has a \"\" high profile \"\" name - brand risk job .  candidate 1 : done at oxford in sept . math finance .  will move anywhere necessary .  citibank / andersen consulting background .  well known candidate in london .  fixed income / structured contol of 450 mil .  i have direct ownership and contact with .  this guy is really impressive by phone !  highly recommended by dr . donnelly oxford  candidate 2 : no real investment banking / energy risk experiences . . . but , asked  me to get him out in london as he and his wife lived / worked there for ford  credit europe . has operational risk skills and experience ! can probably steal  him away from ford ( ford has no agreement with me ) . . . he is fair game .  thanks for the consideration !  jeff  always held in strict confidence .  jeff wesley  949 813 2241 hotline  347 487 8957 voice / fax us  + 44 ( 845 ) 3341644 uk  * get free , secure online email at http : / / www . ziplip . com / *  - oxfordagent 9498132241 . doc  - fordmattagent 9498132241 . doc\",0\n\"Subject: wharton tiger team agenda  friends ,  attached below are please find :  1 . wharton tiger team agenda , friday , 19 january 2001 , 7 : 30 am - 4 : 30 pm ;  2 . wharton tiger team brochure ( explaining the program ) .  thank you in advance for your participation . meeting room 32 c 2 will be  equipped for computer presentations . the format of your presentation is  entirely up to you - - formal , conversational , computerized , hard copy - - however  you feel most comfortable . we ' re currently expecting a total of 18 in the  group .  everyone is invited to come to churrasco ' s this evening . the wharton group  will be picked up from the warwick at 6 : 30 , so should arrive at the  restaurant at about 6 : 45 - 7 p . please come if you can !  thanks again ! this is an enthusiastic , talented group of prospective enron  recruits - - and their research efforts might also well prove interesting to our  businesses .  regards - - christie .\",0\n\"Subject: re : fwd : invitation to the 20 th annual rutgers conference  vince ,  i am delighted that you accept our invitation . we hope it works out that you  can attend the whole conference as we are confident that you will find the  program stimulating and will enjoy getting to know our participants . the  pleasure will certainly be mutual . you will bring a new and different  perspective from which we can all benefit .  michael  at 05 : 54 pm 3 / 15 / 01 est , vkaminski @ aol . com wrote :  > > > >  paul ,  thank you for the invitation to speak at the eastern conferences on  regulation and competition on may the 25 th . i shall be glad to attend and  make an after dinner presentation . i hope to be able to attend the entire  conference .  sorry for a delay in responding to your message . i have been traveling  extensively in the last few weeks .  vince return - path :  from : vkaminski @ aol . com  full - name : vkaminski  message - id :  date : thu , 15 mar 2001 17 : 04 : 02 est  subject : fwd : invitation to the 20 th annual rutgers conference  to : vkaminski @ aol . com  mime - version : 1 . 0  content - type : multipart / mixed ; boundary = \"\" part 2 _ 70 . 8 aeecl 9 . 27 e 29652 _ boundary \"\"  x - mailer : aol 6 . 0 for windows us sub 10501  return - path :  received : from rly - yho 3 . mx . aol . com ( rly - yho 3 . mail . aol . com [ 172 . 18 . 147 . 35 ] )  by air - yho 3 . mail . aol . com ( v 77 _ rl . 21 ) with esmtp ; fri , 09 mar 2001 18 : 01 : 27  - 0500  received : from postmaster . enron . com ( outbound 5 . enron . com [ 192 . 152 . 140 . 9 ] ) by  rly - yho 3 . mx . aol . com ( v 77 _ rl . 21 ) with esmtp ; fri , 09 mar 2001 18 : 01 : 01 - 0500  received : from mailman . enron . com ( mailman . enron . com [ 192 . 168 . 189 . 66 ] )  by postmaster . enron . com ( 8 . 8 . 8 / 8 . 8 . 8 / postmaster - 1 . 00 ) with esmtp id xaao 2258  for ; fri , 9 mar 2001 23 : 00 : 59 gmt  from : vince . j . kaminski @ enron . com  received : from nahou - msmswo 3 px . corp . enron . com ( [ 172 . 28 . 10 . 39 ] )  by mailman . enron . com ( 8 . 10 . 1 / 8 . 10 . 1 / corp - 1 . 05 ) with esmtp id f 29 noxp 22494  for ; fri , 9 mar 2001 17 : 00 : 59 - 0600 ( cst )  received : from ene - mtaol . enron . com ( unverified ) by  nahou - msmswo 3 px . corp . enron . com  ( content technologies smtprs 4 . 1 . 5 ) with esmtp id for ;  fri , 9 mar 2001 17 : 01 : 07 - 0600  subject : invitation to the 20 th annual rutgers conference  to : vkaminski @ aol . com  date : fri , 9 mar 2001 17 : 00 : 58 - 0600  message - id :  x - mimetrack : serialize by router on ene - mtaol / enron ( release 5 . 0 . 6 | december  14 , 2000 ) at  03 / 09 / 2001 04 : 58 : 03 pm  mime - version : 1 . 0  content - type : text / plain ; charset = us - ascii  x - mailer : unknown ( no version )  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 09 / 2001  05 : 01 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" kleindorfer , paul \"\" on 03 / 08 / 2001 03 : 41 : 21  pm  to : \"\" ' vkamins @ enron . com ' \"\"  cc : \"\" ' mcrew @ andromeda . rutgers . edu ' \"\"  subject : invitation to the 20 th annual rutgers conference  vince :  for two decades now , i have been a member of the faculty helping to  organize the eastern conferences on regulation and competition that michael  crew of rutgers has chaired . this year will be , in fact , the 20 th  anniversary conference and a number of notable personages will be joining  us to celebrate what we have learned and what we haven ' t about the  economics of network industries . fred kahn , al philipps , bill hogan and a  number of other distinguished academics will be reviewing our progress and  the prospects for the future . the conference will take place at a  beautiful site in the poconos , about 90 minutes north of philadelphia , from  wednesday afternoon may 24 th to friday afternoon may 26 th . you can check  for yourself the nature of the program and the conference site / hotel at the  following website url :  http : / / www . rci . rutgers . edu / ~ crri / ws . htm  michael crew and i would both be delighted if you would be willing to be an  after dinner speaker on thursday evening ( may 25 th ) , just before the key  research reviews of friday morning take place on the electricity , telephone  and gas industries , and following a day of special topics on emerging power  markets and other developments in network industries . naturally we would  be pleased if you would be able to stay for the entire conference , but  knowing your schedule , you may only have time for a part of it . that would  not be a problem . the usual after - dinner address is for 30 minutes ,  followed by a short q & a period .  your presentation would help to underline the tremendous importance of  enron in driving the development of new risk instruments to assist in price  discovery and efficient risk management for market participants , in energy  markets and more generally . both michael and i feel that your perspectives  on the \"\" new science of risk management \"\" and what can be expected from it  could be a very important addition to this special anniversay event .  please let me know ( and please do copy michael on your response ) whether  your schedule will allow your participation in this very special event .  michael and i would , of course , be very happy to follow up with you in  discussing the nature of the presentation , participants and so forth , if  this is a go . i look forward to hearing from you .  regards ,  paul  paul kleindorfer  215 898 - 5830  michael a . crew  professor ii  director - center for research in regulated industries  editor - journal of regulatory economics  rutgers university , graduate school of management  180 university avenue  newark , n . j . 07102 - 1897  phone : 973 353 5049 fax : 973 353 1348  http : / / www - rci . rutgers . edu / ~ crri\",0\n\"Subject: site license for power world  gentlemen ,  i recommend that we purchase this package and split the cost 3 ways between 3  power trading desks .  i think that we should go for option 3 ( ~ $ 15 , 000 ) .  lance cunningham in my group looked at this software package and found it  very useful for modeling transmission problems .  please , feel free to ask him for technical details in support of this  recommendation .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 11 / 10 / 2000  09 : 17 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  lance cunningham @ enron on 11 / 09 / 2000 06 : 15 : 14 pm  to : vince j kaminski / hou / ect @ ect  cc : vasant shanbhogue / hou / ect @ ect  subject : site license for power world  vince ,  we have three options to increase our availability across enron for the power  world load flow software .  option 1 , upgrade to a site license for the load flow software only . price  $ 9 , 990 . 00  this would give all of enron the ability to perform load flows , but not  determine marginal cost or available transfer capacity ( atc ) because only the  optimal power flow ( opf ) version can perform that task .  option 2 , site license for the load flow and purchase 1 opf package for  walter coffer ' s group . price $ 11 , 240 .  this would give all of enron the ability to perform load flows and one other  group the ability to determine marginal cost and atc .  option 3 , site license for load flows , opf and atc . price $ 14 , 990 . 00  this would give all of enron the ability to perform load flows , marginal  cost , and atc .  regards ,  lance\",0\n\"Subject: siam invitation  dear dr . kaminski  here is an email invitation for teh siam event . a hard copy will follow  dr . v . kaminski  enron  p . o . box 1188  houston , texas 77251 - 1188  dear dr . kaminski  march 12 , 2001  i am writing to formalize your invitation to attend , participate , and speak  in the siam southwest regional mathematics in industry workshop . a time  span of thirty minutes is being allotted to invited talks with an additional  ten minutes or so for discussion . the workshop , funded under the auspices  of a national science foundation grant to siam will not be a standard  applied mathematics event with representatives from industry , academe , and  governmental agencies presenting their latest research results . instead the  meeting will emphasize the mathematics and technology currently applied to  the projects of industry and governmental laboratories . additionally the  event will focus upon the mechanisms facilitating interaction and  collaboration between the academy , industry , and government laboratories .  the workshop will be held at the university of houston hilton hotel , april  27 - 28 . funds will be available to support both travel expenses and the cost  of food and lodging of invited speakers . we will be happy to make travel  arrangements on this end if so desired .  we hope that you can accept our invitation . if this is the case please  furnish us with a title , a short abstract , and a list of the necessary  equipment for your presentation .  we look forward to seeing you at the university of houston .  sincerely  w . fitzgibbon\",0\n\"Subject: re : job posting  please respond to vince ,  thank you very much . i applied for the position yesterday ( via e - mail  address ) and mentioned your name in the cover letter . i ' ll keep my fingers  crossed .  sincerely ,  helen  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : wednesday , april 25 , 2001 9 : 42 am  to : demianen @ ruf . rice . edu  subject : re : job posting  helen ,  fyi .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 25 / 2001  09 : 40 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : lee ferrell / enron @ enronxgate on 04 / 24 / 2001 06 : 20 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : job posting  hi vince ,  this posting is for my group . thanks for the referral .  - - - - - original message - - - - -  from : kaminski , vince  sent : tuesday , april 24 , 2001 5 : 31 pm  to : goodpasture , john ; watson , kimberly ; ferrell , lee ; kaminski ,  vince  cc : krishnarao , pinnamaneni  subject : job posting  i am teaching a class at rice and one of my very bright students sent  her resume  in response to this posting . do you know who posted this job ?  vince kaminski  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on  04 / 24 / 2001 05 : 27 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  ( embedded image moved to file : pico 5601 . pcx )  \"\" helen demianenko \"\" on 04 / 24 / 2001  02 : 11 : 05 pm  please respond to  to :  cc :  subject : job posting  dear vince ,  thanks for talking to me this morning about the sr . risk analyst  position .  here is where you can find the job description for that position :  also , i have cut and pasted it down below , just in case .  i appreciate your assistance in this matter and will start working on my  cover letter right away .  i would also like to talk to somebody to get a better feel for the  position  ( is this really an mba level position and how much of the in - depth  learning  opportunities for the derivatives market does it entail ? )  sincerely ,  helen demianenko  p . s . i have attached my resume ( one more time ) .  sr risk analyst  essential functions : primary accountability for managing the ets risk  book  structure and processes from a pipeline ( front office ) perspective . work  within current nng and tw marketing organizations to effectively  integrate  risk books into daily marketing and structured product activities .  provide  feedback to management regarding overall and specific risk positions .  provide support for consistent and accurate deals entry / reporting for  stand  alone risk management system . create ad - hoc reports to assist management  in  risk analysis . responsible for managing and providing enhancements to  the  capacity books : ? maintain functionality and provide leadership for new  functionality from a users perspective . provide support and direction  for  integration of capacity books and revenue management project . support  revenue  management team  essential requirements : ba / bs in finance or accounting ( mba preferred ) .  minimum of two years financial instruments experience . excellent  quantitative / analytic and systems skills . knowledge of commodity risk  book  concepts . understanding of physical natural gas market , interstate  transportation and financial derivatives . ability to interface with  structuring / marketing groups in order to define business requirements .  ability to provide leadership for business and system processes .  excellent  communication skills with an ability to communicate across organization  with  varied skill sets and ideas . must be self - motivated with a high level of  energy  preferred skills : na .  special characteristics : this job functions in a team - oriented ,  fast - paced  environment with multiple concurrent assignments and constantly changing  priorities .  contact : responses will be accepted through may 3 , 2001 . respond to  enron  corp . , human resources 235 , p o box 3330 , omaha , ne 68103 - 0330 or  e - mail :  dea . crum @ enron . com as a . doc or . txt attachment . please include this  requisition number .  job id 0000108729  department risk management & reporti  company enron transportation services  enron transportation services  location houston , tx  type  posting date 19 - apr - 01  - helen _ d _ resume . doc >\",0\n\"Subject: re : running credit model  steve ,  in order to be able to test the new credit model as well as to answer credit  group ' s  questions regarding the outputs from this model research needs to be able to  do the following :  1 . run credit model independently of the other runs . it is quite ok for now  to be able to run it just for small artificial portfolios .  2 . debug the code to see what actual values are used during the run time .  please , let me know if your team can help us .  tanya .\",0\n\"Subject: confirmation of your order  this is an automatic confirmation of the order you have placed using it  central .  request number : ecth - 4 qhlkd  order for : tom halliburton  this computer is required to run a software licence manager only . it will be  running continously , but will not be used by any individual . the smallest ,  cheapest machine suitable connecting to the enron network will be adequate .  secondhand hardware will be suitable .  enron it purchasing\",0\n\"Subject: re : hello  hi vince ,  thank you for your offer to bring jacob back for another interview . yes , if  it is not too much trouble , i would like to talk with him . i was sorry i had  to be out of town last week when he was in the office . thanks , just let me  know when you would like me to be available .  kim .  - - - - - original message - - - - -  from : kaminski , vince  sent : monday , april 16 , 2001 1 : 21 pm  to : watson , kimberly  cc : krishnarao , pinnamaneni ; kaminski , vince  subject : re : hello  kim ,  this is a letter from one of the job applicants who works for pros .  it seems that the system they develop for williams  is more a scheduling system .  would you like to ask him to come back for another interview ,  to get more information out of him ?  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 16 / 2001  01 : 18 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" jacob y . kang \"\" on 04 / 11 / 2001 11 : 18 : 44 pm  to : vince . j . kaminski @ enron . com  cc :  subject : re : hello  dear vince :  it was so nice meeting and talking with you too . i did  not take any pen back , i lost my pen too somewhere in  enron .  as i mentioned to you , after i got my ph . d in 1999 , i  have been working two years as lead scientist and  science manager in energy division at pros revenue  management inc . in houston .  i developed and implemented the mathematical models  for trading optimization system and firm  transportation optimization system .  the trading optimization system becomes the most  popular product in the industry this year . duke energy  just signed the contract to buy this product  yesterday . conoco and williams also signed the  contracts for it . according to pros sales department ,  the potential marketer to buy this product exceeds 15  companies in one or two years .  enron is the ideal place for me to continue my  research and system developing efforts to combine  revenue management with risk management . i am  confident that i can make significant contributions to  enron in this area .  i would like to thank you again for giving me this  opportunity to come to enron for this interview . i am  looking forward to having the opportunity to work in  enron .  sincerely yours  jacob  - - - vince . j . kaminski @ enron . com wrote :  > jacob ,  >  > it was nice meeting you . did take by any chance  > my pen ? if not , i apologize .  >  > vince  >  do you yahoo ! ?  get email at your own domain with yahoo ! mail .  http : / / personal . mail . yahoo . com /\",0\n\"Subject: pr resume  - - - - - - - - - - - - - - - - - - - - - - forwarded by bjorn hagelmann / hou / ect on 06 / 05 / 2000  06 : 33 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  proan @ mindspring . com on 06 / 02 / 2000 10 : 02 : 34 pm  to : bjorn hagelmann / hou / ect @ ect  cc :  subject : pr resume  bjorn ,  it was good to talk to you on yesterday . i was contacted by jason sokolov  this morning and he advised me to forward my resume to you . the best day  for me to interview would be friday , june 9 th . i hope to hear from you  soon .  phil roan  ( 713 ) 759 - 1741 ( h )  ( 713 ) 544 - 7469 ( w )  proan @ mindspring . com  roanp @ kochind . com  - quant resume _ 4 . dot\",0\n\"Subject: status  vasant -  i hope you had a wonderful vacation back home , and are rested and recovered  from the long flight back .  i wanted to give you an update of the eol project , the gas model , and of my  intentions here at enron .  software ( in compiled c on the unix platform ) has been developed and debugged  to listen to the eol trades , process them , book them , and file them away . in  addition , software has been developed and debugged to mark these to market on  a continual basis , and to store the entirety of open positions on eol in a  dynamic matrix facilitating analysis . it has yet to get back with me on how  the software can be informed of those trades ultimately rejected for credit  purposes .  these data files are stored in a format for reading by excel or by sas , for  which i have written the data step program and basic tabulation routines  elucidating the structure of the data .  i am in the process of documenting all of this for you .  with regards the gas model and its slow performance on the compaq , dell has  agreed to loan me one of their competing machines to the compaq , to see if  the performance issue of the lp is related to the compaq . i have been  researching this issue with it here and with compaq and dell . the new machine  will be here any day now ( no financial obligation to anyone ) , and i will be  able to immediately ascertain whether the problem the model is having is  compaq - specific .  i am also in the process of documenting the gas model for you .  i ' ve tried to do my best for you , vasant , but i have been frustrated by not  only the death of my mother but some internal systems in it here . just the  other day , sas could not open a full query of the eol database because there  wasn ' t enough free space on the server ' s hard drive for the workfiles . in  discussing some of these issues with some good friends of mine in power  trading , people whom i have known for over 10 years , they indicated they were  ubiquitous here . the power traders have similar pc ' s to my new one , and they  have complained from day 1 that theirs are slower than their old ones . also ,  there remains a large frustration with the development of data warehouses ;  during my brief tenure here it has gone through two differing proposals as to  how to address this . when i have been told of tools available for real - time  data harvesting , my requests for such have typically been met with \"\" well , we  have it , but we haven ' t really tested it yet . \"\" an example is the weather : we  still do not record to disk the hourly nws observations from the goes  satellite .  my interests here are to help enron to do well , because i will do well only  if enron does well . these aren ' t empty words - my ira is 100 % invested in the  enron stock fund . i believe my best contributions to enron will be in the  areas of systems as well as modeling , and the difficulty working in the  research group , in terms of systems development , is that , frankly , few people  at enron seem to care what a researcher thinks about our systems . we aren ' t  directly generating revenues for enron , and we aren ' t really their customers ,  except in our relatively small deparrtmental infrastructure expenses .  as it happens , power trading posted an opening for a modeling and forecasting  person , and i spoke with them and they asked me to take the job , reporting to  george hopley . it is a wonderful opportunity for me , vasant , as they are  interested in large system modelng of power grids as well as improving their  traders ' access to real - time fundamentals data . i was completely candid with  kevin presto regarding my shortcomings here in research - i told him you were  disgusted with me because i repeatedly failed to meet time deadlines . they  also understand i have yet to be at enron for 1 year , and thus may only bid  on a job with your permission . we agree the move is good for enron ; we all  work for enron , and your acquiescence to the move does not endorse it but  merely permit it . they are comfortable with me - they have known me for years  as a hard worker , honest and unpretensive . they have already ordered a  state - of - the - art unix workstation and server for me , and they have told me  they will commit whatever resources are necessary for me to be successful ,  including hiring an analyst to work for me . and , i have already been able to  teach their analysts improved techniques for data harvesting and analysis i  have learned here .  so , i am requesting your permission to bid for this job opening . it would be  a lateral move in position and salary , and i would commit to you to help you  in any way possible in the future with regards the gas model or the eol  database . i will continue to work on their improvement , and complete their  documentation .  as it happens , i am away on enron business in portland monday and tuesday ,  and will be back wednesday . i had wanted to talk face - to - face instead of by  email , but enron business supercedes - i am on a team designing the data  warehouse for floor trader support .  clayton .\",0\n\"Subject: re : alberto jimenez ( analyst program )  alberto ,  we would definitely be interested in talking to you when you get to  houston . i will have our assistant , shirley crenshaw , set up some time for  you to meet with people in our group , which would include myself , zimin lu ,  and vince kaminski .  best regards ,  - - stinson  \"\" alberto jimenez crespo \"\" on 01 / 24 / 2000  11 : 43 : 53 am  please respond to a _ jimenezcrespo @ mailcity . com  to : stinson gibner / hou / ect @ ect  cc :  subject : alberto jimenez ( analyst program )  dear mr . gibner :  it was very interesting talking to you during enron ' s recruiting weekend the  first week of last december .  i am starting as an analyst next february and i have alot of interest in real  options . i have done much of my research in the application of real options  in the valuation of oil and mining properties using black - scholes , merton ,  binomial lattices , etc . i have also done forecast of commodity prices such as  copper and oil using both , a geometric brownian motion and a mean reverting  process .  i remember in our conversation you told me that your department is very  involved with real options so i would like to know if there is an opportunity  to talk either on the phone or once i am in houston the first week for the  orientation . because i am very interested in working in your department . i  won ' t be in houston until february 6 th , but you can reach me at 310 390 7817  or ajimenez @ mines . edu  looking forward to hearing from you .  sincerely ,  alberto jimenez  lycoshop . thousands of products ! one location !  http : / / shop . lycos . com /\",0\n\"Subject: mentor / summer associate program  as a reminder , the summer associate program is an integral and critical part  of our recruiting efforts . you have been asked to act as mentors for summer  associates who attend the schools for which you have recruiting  responsibility . you were invited to meet the summer associates at a  reception being held at the sierra grill , located at 4704 montrose , on  thursday , june 22 nd from 6 : 00 p . m . to 7 : 30 p . m .  to date several of you have not responded . please respond to cheryl kuehl  ( ext . 3 - 9804 ) by tuesday , june 20 th . if you are unable to attend , please  advise cheryl that you intend to make other arrangements to meet your summer  associate so that she may advise the associate not to look for you at the  reception . we thank you for your co - operation and your efforts to assist  will not go unnoticed .  jeff and joe\",0\n\"Subject: re : consulting arrangement  thanks vince - - - i will be teaching this afternoon . if you can ' t reach me  this morning , we can talk tomorrow .  sheridan  at 05 : 28 pm 1 / 24 / 01 - 0600 , you wrote :  >  > sheridan ,  >  > i have just checked with rac ( david gorte ) and we have a green light  > to go ahead with the project . i shall you tomorrow to discuss the details .  >  > vince  >  >  >  >  >  > sheridan titman on 01 / 24 / 2001 02 : 45 : 50 pm  >  > to :  > cc :  > subject : consulting arrangement  >  >  > vince :  >  > i just wanted to check with you regarding the consulting arrangement we  > discussed a couple of weeks ago .  >  > perhaps , we should start with just a 1 or 2 day contract where i give some  > thoughts to the kind of issues that we discussed and come to houston to  > present my preliminary thoughts and possible avenues for additional work .  >  > regards ,  >  > sheridan  > sheridan titman  > department of finance  > college of business administration  > university of texas  > austin , texas 78712 - 1179  >  > 512 - 232 - 2787 ( phone )  > 512 - 471 - 5073 ( fax )  >  > titman @ mail . utexas . edu  >  >  >  >  >  >  sheridan titman  department of finance  college of business administration  university of texas  austin , texas 78712 - 1179  512 - 232 - 2787 ( phone )  512 - 471 - 5073 ( fax )  titman @ mail . utexas . edu\",0\n\"Subject: stinson out on jan . 4 , 2000  shirley :  i am planning to take a vacation day on jan . 4 .  thanks ,  - - stinson\",0\n\"Subject: working paper list & etc  dear vince :  i have put together a list of finance working papers ( some of which i brought to the interview last wednesday ) which i have written since 1995 mostly in support of my work but also ( at least initially ) as a learning tool . several of them , however , do contain innovations .  i have asked ms . de claris to forward a copy to you .  as i expressed to you earlier i am particularly interested in enron credit swaps trading platform and the business opportunities that it will spawn .  i also think that there are tremendous opportunities to be explored in the secondary mortgage maket in the us . i do not know if enron has considered or is active in this market . this would be an area that i am also very interested and in which i think much better can be done than most of the players in the street .  the question in my mind ( hopefully not prematurely ) is : if there is interest here would enron consider letting me put together this business ?  i look forward to hearing from you soon .  best regards  joao\",0\n\"Subject: california power 1 / 19 / 00  executive summary :  sb - 7 x gives dept . of water and resources given legislative authority to  undertake short - term power purchases with no price cap through feb . 2 nd  new legislation ( ab - 1 x and sb - 6 x ) would seek ( 1 ) long - term contracts with 5 . 5  cent cap and ( 2 ) creation of california power and conservation financing  authority  the long - term contracts proposed in ab - 1 x are likely to be subject to  significant amendment and renegotiation prior to the feb . 2 nd expiration of  sb - 7 x .  the authority proposed in sb - 6 x would have bond issuance powers to finance  new generation capacity and conservation measures  negotiations under way on using bond authority for a utility  bailout - - utilities and state government split over debt obligations of  utility parents  state borrowing plans and power purchases create credit risks for state  treasury ; socal edison misses more payments  bush administration opposes price caps , but is supporting state efforts to  split pg we believe he then could be willing to guarantee or  issue  bonds to deal with the rest .  as one very senior california political leader explained , getting the utility  holding companies to eat a substantial part of the debt they owe themselves  is the key to solving the back debt problem without provoking widespread  public outrage about a \"\" bailout \"\" of private price - gouging companies with  taxpayer money . since 75 % of californians currently blame the utilities and  the puc for this crisis ( and only 10 % blame davis ) , this is a crucial  political stance for the governor .  but , of course , absorbing anything like $ 6 billion in debt would be quite a  shock to the seemingly healthy holding company and power - generating branches  of the two utilities , and they began spreading the word that they were quite  willing to accept bankruptcy . thus by mid - week , both  sides had pushed themselves toward a resolution in federal bankruptcy court  that would be a worst case solution for all sides : the country ' s economy  would  suffer from the resulting credit shock , the governor ' s political future would  suffer from the electricity rate increases almost certain to be mandated by a  bankruptcy judge , while most private sector legal authorities believe the  utilities corporate holding structure would ultimately be breached during  bankruptcy  procedures and they would end up having to absorb some significant amount of  the debt in the end . in addition , they would most likely face a state  government  determined to use state powers of condemnation to enter the power business in  a major way .  senator burton ' s sb 6 x legislation will strengthen those powers dramatically  to make this point quite explicit . it would set up a \"\" california power and  conservation  financing authority , \"\" with the power to issue bonds and invoke eminent  domain . it would finance new power plants , and \"\" consider the feasibility and  public  interest of the state acquiring , operating , and maintaining transmission  facilities currently owned by investor - owned and municipal utilities . \"\"  as we write this , all sides are trying to construct a path back down from the  bankruptcy ledge to safe ground , and there is no question the tone has  shifted  in the last 24 hours from macho confrontation to \"\" maybe we ' ve run this thing  out as far as we can . \"\" but as we have noted , the chance for miscalculation is  still quite high . there is no solution agreed to at this time , the stand - off  over how much debt the state government will absorb versus the utilities '  holding  company is continuing , and the technical fact of default still makes it  possible for some bank to trigger bankruptcy by demanding immediate  accelerated payment .  5 . default update - thursday  socal edison - $ 215 million default to california power exchange .  after edison failed to make a $ 215 m electricity payment yesterday , the  california power authority began seizing long - term contacts and reselling  them to recoup some of the money owed to generators . pg & e said it expects  its trading privileges at the cal . power authority to be suspended today ,  leaving them with only its generation from nuclear and hydroelectric sources .  while the ongoing wave of defaults has severely restricted pg & e ' s and socal ' s  ability to buy power , the department of water and resources will be able to  pick up some of the slack , at least in the very short - term .  the state itself may be getting into risky credit territory . the proposed  california public power authority would borrow in the neighborhood of $ 1 . 3  billion from the state general fund in advance of this year ' s expected fiscal  surplus , with the loan to be repaid by the authority from expected future  revenues . with near - bankrupt utilities and a freeze on rate hikes , it is  unclear where the revenues would come from . the amount borrowed and terms of  repayment will be no doubt examined very carefully by the bond rating  agencies .  5 . bush policies  as we reported on wednesday , the bush administration continues to demonstrate  little interest in getting involved in the california crisis .  president - elect bush surprised state leaders yesterday with his comments ,  which essentially said that excessive environmental regulation was the root  of the current supply shortage . bush and his top officials appear to be  unanimously opposed to long - term price caps .  however , there is one issue of considerable importance to the administration ,  according to a source close to a top bush economic advisor . there is  significant concern that pg & e ' s credit problems could cause gas suppliers to  stop shipments of gas through pg & e ' s pipeline . the risk would be that the  pipeline could \"\" go dry \"\" , causing significant and possibly dangerous  disruptions in california residences and businesses . to prevent this  problem , bush is working with davis on a proposal to split pg & e into separate  gas and electric companies . the gas company would be solvent , but the  electric company would go immediately into ch . 11 following significant  defaults .\",0\n\"Subject: vince ' s travel itinerary  ludmilla :  here is vince ' s travel itinerary for sunday to new york .  date 06 septembero 0  booking ref ze 56 tx  kaminski / wincenty soc 0011 rl 0  enron corp kaminski / wincenty  eb 1962  e - tkt receipt  * * review upgrade below * *  service date from to depart arrive  continental airlines 10 sep houston tx new york ny 539 p 1000 p  co 1672 a sun g . bush interco la guardia  terminal c terminal m  dinner non stop  reservation confirmed 3 : 21 duration  aircraft : boeing 737 - 800  seat 01 f no smoking confirmed kaminski / wincen  first class upgrade is confirmed  hotel 10 sep hilton millenium  11 sep 55 church street  new york , ny 10007  united states of america  telephone : 212 - 693 - 2001  fax : 212 - 571 - 2316  telex : tlx none  confirmation : 3110994415  single room queen size bed  rate : ral usd 339 . 00 per night  guarantee given  nonsmoking king enron corp  to avoid billing cancel 24 hours prior to arrival hotel time  continental airlines 11 sep new york ny houston tx 745 p 1033 p  co 1963 a mon la guardia g . bush interco  terminal m terminal c  snack non stop  reservation confirmed 3 : 48 duration  aircraft : boeing 737 - 300  seat 01 f no smoking confirmed kaminski / wincen  first class upgrade is confirmed  miscellaneous 10 nov houston tx  fri * * thank you for using the tap * *  kaminski / wincenty soc 0011 rl 000  co frequent flyer cowt 472179  shirley crenshaw : 853 - 5290  intl tvlrs : carry sos wallet card w / enronassistance info  call sos : in u . s 800 523 - 6586 / intl 215 245 - 4707 ( collect )  this is the passenger receipt for your electronic ticket\",0\n\"Subject: interview schedule for alex tartakouski  attached please find the interview packet for the above - referenced person .  the interview will happen wednesday , november 29 , 2000 . please print all  three documents for your hard copies . if you have any questions , or  conflicts of schedule , please do not hesitate to contact me .  liz alvarado  58714\",0\n\"Subject: tiger team  hi vince ,  re : my voice mail sent earlier today , i think this is the group requesting  the telephone conference .  they prefer a call tuesday , 16 jan , after 2 pm .  let me know !  thanks !  - - christie .  - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 01 / 12 / 2001  09 : 26 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" vittal , maheshram \"\" on 12 / 26 / 2000 10 : 59 : 38 am  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc : \"\" ' christie . patrick @ enron . com ' \"\"  subject : re : houston trip  dear vince / christie ,  thanks for coming to philadelphia to present an overview of the projects . we  enjoyed meeting you and your colleagues and look forward to working with  enron . i would also like to pass on my team ' s appreciation for the dinner as  well .  we wanted to give you an update on our project and get some feedback and  additional information prior to our upcoming visit to houston on january  19 th . our project is going to be geared to the 3 rd option you mentioned . we  plan on addressing some part of the retail energy services business . we are  considering two options regarding this topic and would like to pursue either  ( i ) how customers are acquired and recommending new processes and ways to  serve retail customers , or  ( ii ) studying the supply chain and coming up with recommendations for areas  for further investments .  however , we would like to get some more information on the retail energy  services before truly scoping the project . we are also very open to  suggestions , especially if you had a much broader or different scope in mind ;  so please let us know .  we have not yet reviewed the introductory information received last week , but  here are the questions we have specific to the retail energy services unit :  can we look at its overall business plan or a more detailed summary than is  in the annual report ?  what is the pricing philosophy / overall structure ?  who are the customers and how are they acquired ?  what would the customers be doing if they did not work with enron ?  what are the international expansion plans and capabilities ?  is there any important regulatory summary information we can have ?  if this information is not already covered in the review material you sent ,  will you be able recommend other sources where we may find such information ?  after we have reviewed the material sent to us recently , we may want to  schedule a phone call with you and / or one of your colleagues directly  involved in the retail energy services business . i would like to call you in  the new year to discuss this further . in the meantime , please feel free to  call me at ( 215 ) 546 - 9416 if you need any information .  regards ,  retail energy services tiger team  ram  dennis  jason  omar  steve  clay\",0\n\"Subject: re : a quant  i did . . . trying to get him in next week so that vasant can see him as well .  thanks  vince j kaminski  24 / 01 / 2001 22 : 24  to : bryan seyfried / lon / ect @ ect  cc :  subject : a quant  bryan ,  did you have a chance to take a look at the resume i sent you ?  he looked like a great guy for your group .  vince\",0\n\"Subject: propane prices  vince ,  please find attached file with propane price statistics . there are two kinds  of data : ( 1 ) prompt month futures prices , no location specified , starting  from 1987 ; ( 2 ) index prices for different locations ( north sea , venezuela and  saudi arabia ) , starting 1988 . source of both is platts publications .  please notice that price of futures in given in us cents / gallon , and index  prices in usd / mt .  sincerely , elena\",0\n\"Subject: please add our contact information to your database . what follows are a  couple of active searches , should you become aware of interested  individuals .  chief executive officer  location : san diego , ca  company : * * rates . com  compensation : targeted compensation in the > $ 200 k base range plus extensive  stock ownership and bonus .  description : the board of directors of * * rates . com is seeking a dynamic  and experienced executive for the position of ceo of this pre - ipo internet  company . the ceo would play a key role in the business strategy of a highly  entrepreneurial and fast - growing company and answer directly to the board of  directors . this individual must be smart , highly motivated team leader able  to offer strong business strategies , especially involving the rapid growth  of operations and resulting financial challenges . the ceo must be  expansion - capable and have experience with business start ups , growing  businesses and the ability to get the company to a public offering  the chief executive officer for this 1 - year start - up , b 2 b e - commerce , single  location company must be able to commercially launch the company in the  energy industry , and ultimately expanding into other market niches while  making this company a market leader in the internet rate comparison market .  * * rates . com is a california c corporation company with an industry leading  board of directors and advisory board . the company in the process of  assembling a management team , finalizing the business plan and taking the  rate comparison service to market . the initially targeted electric and  natural gas industries have over $ 200 billion in annual revenues . currently ,  the three largest internet rate comparison companies have little or no  market share in the energy industry .  possible candidates can come from a variety of experiences , but experience  in starting up an energy company or leading - edge technology company is  critical .  requirements : the candidate must have 8 - 15 years of executive management  experience ( i . e . , ceo , president , sr . vice - president , partner level  consultancy ) in the private sector either with a deregulated energy company ,  a large consulting or a services oriented firm . extensive background in  either the energy field , high technology , including telecommunications ,  systems software , e - commerce development or e - commerce . must have a strong  background in business development and building relationships with large  companies . strong visionary with proven leadership qualities and capable of  building a company . degree essential .  computer literate in word processing / budget formats / and e - mail necessary  group and people skills essential organizational and planning skills a must  over all must be a self - starter and a communicator must be willing to travel  in states as necessary .  position title : director of acquisitions department : corporate development  location : dc reports to : vice president , acquisitions  position summary :  the person holding this position serves as a transaction team leader for  large acquisition projects within the energy group , performing all  activities and managing all resources necessary to successfully acquire  operating power plants , or gas assets . working largely through  self - direction , he or she manages the project team for an assigned project  and establishes and adheres to budgets and schedules . due to high deal  flow , the energy group needs two directors of acquisitions , and has one open  position .  principal duties and responsibilities :  1 . manages the project team for an assigned project . successfully manages  the project through signing of an asset purchase agreement .  2 . manages development of and inputs to , project / proposal economic  projections . obtains sign - off on pro forma inputs from appropriate company  officers .  3 . identifies problems and solicits input from appropriate team members  and / or senior management on project issues . develops alternative solutions  and assesses the alternatives in the context of project and corporate  objectives . chooses and implements the best solutions .  4 . establishes project budgets and schedules and manages expenditures to  budgeted levels .  5 . plans and organizes tasks and short - term goals for the project team  members to ensure the project stays on schedule . coordinates activities of  team members ( including third parties ) from different disciplines to ensure  activities with overlapping disciplinary impacts are performed efficiently .  6 . represents the project and the company in discussions with interested  parties , at lender meetings , etc . , and develops appropriate relationships  with individuals involved .  7 . identifies key issues associated with an acquisition and its potential  \u0001 & fatal flaws . \u0001 8  8 . assists in maintaining relations with investment banks and legal firms to  assure that company receives all appropriate \u0001 advanced degree in business or related field preferred .  2 . strong analytical skills , experience in building and managing pro formas .  3 . substantial record of successfully managing and participating in the  development or acquisition and financial closing of independent power  projects or merchant plants .  4 . excellent oral and written communication skills .  5 . ability to function in a team environment with multiple and changing  priorities , as either leader or team member .  interview with : chief financial officer  vice president , acquisitions  managing director , development  director , acquisitions  asian sales manager position .  selling turbomachinery controls throughout asia . the best location for this  position is in singapore . all  candidates for this position should have a proven track record selling  controls in the region .  the asian sales manager will be responsible for growing i & c systems product  line ( direct sales ) throughout asia . this will include sales of control  systems through engine and turbine packagers and rebuilders . company will  also pursue sales directly to end - users with the best candidates being the  oil & gas producers and power companies . the company will emphasize gas  turbine applications including compressor and generator drives . the company  is interested in developing alliances with large users such as ongc ,  petronos , and caltex , as well as pursuing the individual retrofits with  energy companies . retrofit opportunities will not be limited to this  company ' s machines . the company will retrofit any gas turbine . we will also  retrofit gas or diesel engines .  the company expects sales results and then growth plans for leveraging these  early successes . as they grow , additional sales personnel may be added and  they will report to the asian sales manager .  company hot buttons :  1 . familiar with asian oil & gas and power generation markets .  2 . strong technical understanding of control systems and turbomachinery  applications .  3 . well organized , self - managed individual .  4 . ability to manage and direct other sales people .  5 . ability to work with key customers , to understand their turbomachinery  requirements and communicate i & c solutions .  6 . ability to achieve early sales results and to develop sustained sales  growth .  7 . ability to develop long - term alliances with key customers , as well as ,  sales opportunities on individual control retrofit projects .  8 . strong understanding of sales & marketing principles with the ability to  implement these principles .  9 . ability to work well with people of various cultural backgrounds .  10 . the asian sales manager will be based in singapore and report to the  director of sales and marketing , located in houston , texas .  an undergraduate degree in electrical or mechanical engineering is required .  a graduate degree is business is also desirable .  regards ,  dave weir , sr . managing partner  ieg , inc .  215 - 957 - 9012 fax . 215 - 957 - 1753 or 215 - 957 - 6090  website : www . iegsearch . com  email : dgweir @ iegsearch . com or dgweir @ aol . com  dave weir , sr . managing partner  ieg , inc .  215 - 957 - 9012 fax . 215 - 957 - 1753 or 215 - 957 - 6090  website : www . iegsearch . com  email : dgweir @ iegsearch . com or dgweir @ aol . comdave weir , sr . managing partner  ieg , inc .  215 - 957 - 9012 fax . 215 - 957 - 1753 or 215 - 957 - 6090  website : www . iegsearch . com  email : dgweir @ iegsearch . com or dgweir @ aol . com\",0\n\"Subject: research intelligence  stinson ,  please , take a look at this memo and forward with changes , if any , to ross  prevat .  enron corp . research group publishes weekly newsletter , \"\" research  intelligence , \"\" available to the internal users on the intranet , at the  following location : xxx . xxx . xxx . this site contains not only the new issues  of the newsletter as they become available , but also the archived copies of  the previous editions .  each issue of \"\" research intelligence \"\" contains a regular feature called  technical corner which is devoted to discussion of various quantitative  techniques that can be applied across different business units of enron .  i am sending you a binder with the archive copies of the technical corner  articles . please , review these articles and let us know whether some of the  techniques discussed in them could find application in your area . we shall be  glad to use our technical expertise to support your business .  binders would go to skilling , sutton , hannon , baxter , delainey , bowen , w .  curry , buy , bowen , overdyke , whalley , shankman , pai , etc . this is a partial  list . i think we should ask the head of each unit to make recommendations .  thanks .  vince\",0\n\"Subject: re : tom halliburton  dear all :  a few words about tom . he is a power engineer type who has previously worked  at northwestern us and new zealand utilities on various projects including  asset planning and hydro scheduling . he was hired by ei structuring to  oversee modeling efforts using sddp , henwood , etc . because of the recent  implosion at ei apache , tom ' s group has effectively evaporated , and thus he  is looking for a new home . he has some finance background from having to  do asset evaluation for utility rate filings . he has almost no options  experience . he seems to have quite a bit of experience in some classes of or  problems .  clearly the most obvious fit is with my group , but the idea is for you all to  see if tom has a tool set that may be of use to other research projects .  and , as usual , the personality fit is the other aspect to examine .  this is meant to be casual . if the consensus is positive , then i will explore  the formalities of such a transfer .  thanks ,  grant .\",0\n\"Subject: possible summer internship with enron  good morning ainsley :  a copy of your resume was forwarded to vince kaminski and the research  group of enron corp . they are very interested in talking with you about the  possibility of a summer internship with the research group .  please let us know if you would be interested and we will arrange either  a telephone interview or bring you into the office for an interview .  you may contact me at :  shirley crenshaw  administrative coordinator  enron corp . research  telephone : 713 / 853 - 5290  email : shirley . crenshaw @ enron . com  look forward to hearing from you ainsley .  sincerely ,  shirley crenshaw\",0\n\"Subject: re : enron / stanford program  vince ,  i will call paul racicot tomorrow . can you try and do the same ?  thanks ,  stinson  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 10 / 10 / 2000  07 : 59 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  nick bambos on 10 / 09 / 2000 12 : 04 : 19 am  to : stinson . gibner @ enron . com  cc :  subject : re : enron / stanford program  hi stinson ,  i am under pressure from the department to wrap up giuseppe ' s raship ,  and i am probing to see how things are going on this matter on your  side . i ' m deep in the red in terms of the deadline - way beyond it !  would it be possible to wrap this up this week ?  many thanks ,  nick  stinson . gibner @ enron . com wrote :  >  > nick ,  >  > i spoke with paul racicot , head of trading for ebs , north america this  > morning . he said that he is happy to send the $ 100 , 000 for your program  > from his budget . i have forwarded to him the draft letter to accompany  > the funds and will try to follow up to make sure that the money is sent  > promptly .  >  > - - stinson\",0\n\"Subject: re : tanya vacation  brad ,  can we reverse this entry ? i shall call you later today regarding tanya .  vine  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 17 / 2000  08 : 16 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  tanya tamarchenko  02 / 16 / 2000 10 : 13 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : tanya vacation  vince ,  i just found out that none of my vacation days from the last year is in the  computer system  ( it says that i have 0 c / over days ) .  it was november 3 , 1999 when i asked your approval to carry over 12 vacation  days to the next year .  i was thinking that if you ( or hr ) do not approve i could at least take these  days in 1999 .  i know that your tried to help me and sent to brad mcsherry the  justification for me to carry over 10 days .  i bothered you a few times in november and december 1999 and since your  response was optimistic  i did not take any of those 10 days in 1999 . but i never heard from hr .  now i am not sure - may be these days are not in the system by mistake .  i would like to take 5 of them in march ( from 3 / 13 / 00 to 3 / 17 / 00 ) .  what is your advice ? should i contact brad mcsherry ? even negative response  from hr in november or  december last year would be better than loosing vacation days .  i really appreciate your help ,  tanya .  tanya tamarchenko  12 / 02 / 99 12 : 51 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : tanya vacation  hi , vince ,  sorry to bother again with my question .  i first e - mailed my question a month ago ( on nov . 3 ) .  since we still have not heard from hr , is it fair to assume that i can carry  over my 10 vacation days to the next year ?  if not - i have to take 5 days before dec . 17 , because then i go on vacations  anyhow . i would really prefer not to take off  most of december , there are quite a lot of things going on .  thank you for your help in resolving this question .  tanya .\",0\n\"Subject: agenda  christian -  i was thinking that your expertise in grads and grib formats will help  enron to obtain  a competitive edge over our competitors . development of the grads  visualization tool  will allow our international offices to obtain the mrf ( medium range forecast  model ) data first ,  without being dependant of internet sources . additionally , i think that we  could obtain  mrf ensemble data via the same sources as well .  can we include in the agenda the development of these tools ?  jose marquez\",0\n\"Subject: re : vacation  shirley ,  no problem .  vince  shirley crenshaw  05 / 16 / 2000 09 : 14 am  to : vince j kaminski / hou / ect @ ect  cc : kevin g moore / hou / ect @ ect , william smith / corp / enron @ enron  subject : vacation  vince ;  if it is allright , i would like to take a day of vacation , friday , may 19 th .  thanks .  shirley\",0\n\"Subject: re : contingencies  steve ,  i shall call you tomorrow about it . my preference is to move anjam to houston  for some time . anjam knows a lot about our business and specific positions  and it ' s better to prevent a potential leak . i have discussed this issue  with dale and richard and they concurred .  i don ' t expect anjam to act irrationally but it ' s better to be safe than  sorry .  vince  steven leppard  08 / 02 / 2000 03 : 08 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : contingencies  hi vince  if you ' re currently engaged in drawing up contingency plans for the anjam  situation , have you arranged for a \"\" snapshot \"\" of his computer directories to  be taken ? we all tend to use our personal areas ( on our h : drives ) for  development , and obviously there ' ll be a few years of work in anjam ' s  directories . i wouldn ' t want him to wipe it all out in a fit of bad temper .  although our it dept . obviously makes backups , i don ' t know how long they are  kept for .  cheers ,  steve\",0\n\"Subject: re : lost cell telephone  chris ,  the phone has been found and has not been compromised in any way .  can you , please , restore the service .  thanks .  vince kaminski  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 12 / 29 / 2000  12 : 01 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  shirley crenshaw  12 / 18 / 2000 03 : 13 pm  to : chris samaniego @ enron  cc : vince j kaminski / hou / ect @ ect  subject : re : lost cell telephone  thanks !  chris samaniego on 12 / 18 / 2000 03 : 06 : 09 pm  to : \"\" ' shirley . crenshaw @ enron . com ' \"\" , enron  cc :  subject : re : lost cell telephone  request completed .  chris samaniego  account associate  houston cellular corporate accounts  petrochemical vertical  ( 713 ) 562 - 2995 cellular  ( 713 ) 345 - 7183 enron direct  ( 713 ) 646 - 2415 fax  enron @ houstoncellular . com e - mail  samaniec @ houstoncellular . com e - mail  samaniec @ bellsouthips . com interactive pager  > - - - - - original message - - - - -  > from : shirley . crenshaw @ enron . com [ smtp : shirley . crenshaw @ enron . com ]  > sent : monday , december 18 , 2000 2 : 19 pm  > to : enron  > subject : lost cell telephone  >  > hello :  >  > vince kaminski left his cell phone on the bus last friday . he has  > contacted  > the bus line , but the person in charge of the lost and found is not in the  > office today .  >  > if there any way that we can put a hold on this telephone until he can see  > whether it has been turned in or not ?  >  > the cell # is : 713 / 410 - 5396 and the account # is : 88563580 .  >  > please let me know as soon as possible .  >  > thanks !  >  > shirley crenshaw  > 3 - 5290  > ebl 961  > shirley . crenshaw @ enron . com  >  >\",0\n\"Subject: 21 st annual energy symposium - november 28 - 29 , 2000 , houston , texas  dear vince ,  thank you for taking the time to dine with chris and me back on monday 2  october .  further to our dinner , i would like to forward you information on three  topics :  the partners who lead arthur andersen ' s relationship with enron are david  duncan , based in houston , and simon prew , based in london ;  our country managing partner for russia and  details of our 21 st energy symposium are attached below .  if you are interested in registering for our symposium please contact david  directly .  should you require any further information on the topics we discussed over  dinner ( strategy , value and risk ) please do not hesitate to contact us in  houston or london .  regards , allan  ( embedded image moved to file : pic 20284 . pcx )  the energy symposium is one of the largest energy conferences in the world and  we are successful in attracting senior energy executives as speakers to this  2 - day event . this year ' s event will be november 28 & 29 .  the energy symposium is much more that just an \"\" accounting conference . \"\"  industry leaders discuss a range of topics and share their perspectives on  strategic , economic , political , financial and operating issues .  participants find the networking aspect of the symposium to be especially  valuable . there is ample time during the event for them to meet and talk with  their counterparts and colleagues in the industry . and it is a premier  marketing opportunity for arthur andersen , where more than 300 partners and  managers get to spend two days with 700 executives from the energy and  utilities  industry in a forum .  the symposium check - in begins monday , november 27 at 6 p . m . , with a cocktail  reception in the galleria ballroom foyer . arthur andersen personnel are  encouraged to attend for an opportunity to network with colleagues , clients  and  prospective clients in an informal setting .  thank you in advance and i look forward to seeing you and your clients in  houston .  victor a . burk  monday , november 27 , 2000  6 - 10 p . m . opening reception  tuesday , november 28 , 2000  7 : 00 a . m . registration  8 : 15 a . m . symposium wide opening and welcome  8 : 30 a . m . opening plenary session  global power companies : strategies for success  10 : 00 a . m . break  10 : 30 a . m . concurrent session i  i - a the changing face of utilities : u . s . restructuring continues  i - b bandwidth markets : opportunities & pitfalls  noon lunch and keynote presentation  2 : 00 p . m . concurrent session ii  ii - a retail energy services : the new game  ii - b mergers & acquisitions : more to come ?  ii - c new business models and technologies : changing the supply  chain  3 : 30 p . m . break  4 : 00 p . m . concurrent session iii  iii - a opportunities and risks in the emerging global emissions  trading market  iii - b oil field services : the new landscape  iii - c accounting and reporting outlook  5 : 30 p . m . reception  wednesday , november 29 , 2000  7 : 00 a . m . registration  8 : 00 a . m . breakfast roundtable discussions  rt - 1 asia / pacific region  rt - 2 caspian region  rt - 3 bandwidth markets  rt - 4 customer relationship management  rt - 5 digital markets  rt - 6 value creation in the e & p industry  9 : 45 a . m . break  10 : 15 a . m . concurrent session iv  iv - a trading and marketing : new products and new players  iv - b creating value in the e & p industry  11 : 45 a . m . lunch and keynote presentation  2 : 00 p . m . supply chain optimization workshop  4 : 00 p . m . symposium adjourns  the printed program and registration materials will be mailed to more than  10 , 000 people on our us oil and gas and utility mailing lists on october 2 . a  copy of the materials is attached below . in addition , you can always refer to  our website , www . energysymposium . com , for any updates to the agenda .  ( see attached file : es _ 2000 . pdf )  headquarters : octel & network : 713 - 237 - 5400  fax : 713 - 237 - 2214  lotus notes : energy symposium hq or  energy . symposium @ arthurandersen . com  symposium in - charge : melissa l . spradley  octel & network : 713 - 237 - 2385  fax : 713 - 237 - 5673  symposium contact : mickey r . appel  octel & network : 713 - 237 - 2472  fax : 713 - 237 - 5673  * * * * * * * * * * * * * * * * * * * internet email confidentiality footer * * * * * * * * * * * * * * * * * * *  the uk firm of arthur andersen is authorised by the institute of chartered  accountants in england and wales to carry on investment business . a list of  partners is available at 1 surrey street , london , wc 2 r 2 ps ( principal place of  business ) .  privileged / confidential information may be contained in this message . if you  are not the addressee indicated in this message ( or responsible for delivery  of  the message to such person ) , you may not copy or deliver this message to  anyone .  in such case , you should destroy this message and kindly notify the sender by  reply email . please advise immediately if you or your employer do not consent  to  internet email for messages of this kind . opinions , conclusions and other  information in this message that do not relate to the official business of my  firm shall be understood as neither given nor endorsed by it .  - pic 20284 . pcx  - es _ 2000 . pdf\",0\n\"Subject: gpcm modeler news : august 31 , 2000  new gpcm pipeline schematics available on the web  you can now view gpcm pipeline schematics on the web by going to the gpcm  website , clicking \"\" gpcm pipelines \"\" and then clicking the code for the  pipeline you want . you can also go to that pipeline ' s website by clicking  it ' s url . finally , by \"\" right - clicking \"\" the code you can copy the pipeline  schematic ( a powerpoint file ) down to your local computer and use it there .  once you copy it down , if you put it into your gpcm 8 \\ maps sub - folder , you  can view it directly from your user interface in the data / pipelines form  ( click the has map box on ) . if you are a gpcm licensee and would like a  zip file of the current set of maps , you can pick it up from the customer  support area of the gpcm website ( http : / / gpcm . rbac . com ) .  from http : / / www . enerfax . com :  natural gas markets in mexico  natural gas demand in mexico in the coming years could grow by up to 8 %  annually . such demand could lead to natural gas imports approaching 2 bcf  per day , according to government forecasts . in response , pemex proposes two  actions : the first consists of measures to increase cross - border pipeline  infrastructure and capacity such as a new pipeline being built by coral  energy into pemex ' s supply hub at reynosa . the possibility of a new  pipeline to monterrey is still an option . a second measure is to implement  a gas - centric exploration and production program focused on five areas , two  of which are dry natural gas basins , burgos and macuspana . this second  measure is intended to reduce projected imports by up to 80 % . at present ,  pemex ' s 10 - year strategic plan does not contemplate a role for private  production companies in capacities other than that of technical assistance .  storage report  week prev  ending prev prev year  | region | 8 / 25 / 00 | week | diff | % full | year | % full  | prod | 529 | 517 | 12 | 55 % | 749 | 78 %  | east | 1254 | 1209 | 45 | 68 % | 1382 | 75 %  | west | 361 | 366 | - 5 | 71 % | 390 | 77 %  | | | | | | |  | total | 2144 | 2092 | 52 | 65 % | 2521 | 76 %\",0\n\"Subject: re : enroncredit . com  vasant , tanya  any interest ?  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 14 / 2000  03 : 56 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  melanie doyle  03 / 10 / 2000 04 : 33 am  to : vince j kaminski / hou / ect @ ect  cc : brad mcsherry / hou / ect @ ect  subject : re : enroncredit . com  hi  this guy has applied to credit . com in houston , i spoke to him yesterday and  then passed my comments to bryan seyfried . bryan suggested he may be of  interest to you . i let this this guy know that he would hear from us either  way and if we want to pursue the application we would invite him for  interviews in houston .  please give me a call if you need more information .  melanie  00 44 171 783 7740 .  - - - - - - - - - - - - - - - - - - - - - - forwarded by melanie doyle / lon / ect on 10 / 03 / 2000 10 : 26  - - - - - - - - - - - - - - - - - - - - - - - - - - -  bryan seyfried  08 / 03 / 2000 07 : 51  to : brad mcsherry / hou / ect @ ect  cc : melanie doyle / lon / ect @ ect  subject : re : enroncredit . com  let ' s start getting these guys in to interview . melanie can do initial  telephone interviews and then coordinate with brad to ensure we are seeing  the best people . i would like to move as quickly as practical .  bs  from : brad mcsherry on 07 / 03 / 2000 13 : 17 cst  to : bryan seyfried / lon / ect @ ect  cc :  subject : enroncredit . com  - - - - - - - - - - - - - - - - - - - - - - forwarded by brad mcsherry / hou / ect on 03 / 07 / 2000 01 : 17  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  alexander . c . davidson @ us . arthurandersen . com on 03 / 03 / 2000 01 : 55 : 23 pm  to : brad . mcsherry @ enron . com  cc :  subject : enroncredit . com  dear mr . mcsherry :  i am responding to your search for credit risk professionals on  the  enroncredit . com website . after working for seven years on credit  risk  management in a research and consulting capacity , i would like to transfer  my  experience in assessing credit risk modeling , information technology  and  methodology in complex top - tier institutions to an active credit  trading  managerial environment . i am excited about being involved in  trading ,  origination , risk management and r & d of credit derivatives .  i have seven years of experience in credit risk measurement and  management . i  have helped design , test and implement credit value - at - risk systems with  kmv  corp and with a major japanese bank . i was a major contributor at kmv  in  designing the expected default frequency model and i am thoroughly familiar  with  its assumptions , strengths , weaknesses and applications . i did the  empirical  research that lies behind the kmv default correlation model , the private  firm  edf model and i interfaced with j . p . morgan ( now r . m . g . ) personnel during  the  creation of the creditmetrics documentation .  i have excellent analytical , quantitative , statistical and programming  skills .  i studied finance extensively when i was a graduate student and i studied  credit  risk theory while i worked with kmv and arthur andersen . i am eager to join  the  credit derivative team at enroncredit . com where i am certain that my  combination  of quantitative research skills , credit risk consulting experience  and  technology expertise make me uniquely qualified to support the  credit  derivatives trading and risk management function .  i have included my resume with this e - mail . please e - mail me or call me  at  201 - 420 - 0191 ( home ) and 212 - 708 - 4027 ( work ) so that we can discuss  this  opportunity further .  ( see attached file : alex . doc )  * * * * * * * * * * * * * * * * * * * internet email confidentiality footer * * * * * * * * * * * * * * * * * * *  privileged / confidential information may be contained in this message . if you  are not the addressee indicated in this message ( or responsible for delivery  of  the message to such person ) , you may not copy or deliver this message to  anyone .  in such case , you should destroy this message and kindly notify the sender by  reply email . please advise immediately if you or your employer do not consent  to  internet email for messages of this kind . opinions , conclusions and other  information in this message that do not relate to the official business of my  firm shall be understood as neither given nor endorsed by it .  - alex . doc\",0\n\"Subject: re : eott options  tracy ,  attached is a spreadsheet model which contains both black - scholes and  american option valuation models . these are the generally accepted methods  for valuation of options on equity . the \"\" european \"\" option prices assume  that the option holder can exercise his options only at maturity , while the  \"\" american \"\" style options can be exercised at any time during their life .  i have assumed in the examples that the underlying equity units have a market  value of $ 13 . 00 and that the options are struck at this level . the  volatility input is the other main assumption . eott has been trading  recently with a volatility ranging between 30 % to 40 % although looking  further back , the range is much wider .  to run the model , you must be linked with the options library . i am not  sure what lan you are connected with , but you can coordinate with zimin lu  ( x 36388 ) for help with loading the option library add - in module . on the ena  lan it is located under o : \\ research \\ exotica \\ xll \\ exotica . xll . this is  loaded in excel using the tools / add - ins and browse to reach the add - in  location .  - - stinson  x 34748  p . s . i will mail you a hard - copy of a plot showing recent eott volatility  as well . if you would like us to help you in running specific examples ,  please let me , vince , or zimin know .\",0\n\"Subject: re : contract agreement  habiba ,  looks good to me . pleasure to work with you .  vince  habiba bayi @ enron _ development  04 / 03 / 2000 06 : 23 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : contract agreement  hi ,  attached is the draft copy of the agreement for your review . i will call  lacima in london in the morning to fill in the gaps for the name of the book ,  the date they intend to publish it and the name of the person who will sign  on their behalf . as soon as i get your comments back , i will send the copy  to david , our attorney , and copy you as well .  thank you .  habiba\",0\n\"Subject: re : new invoice for energy and weather  vince ,  thanks !  ?  can you also let me know who my contact is for getting copy approved by  enron so we can use it in our publications ? ? i will try fiona grant again ,  but i ' m not getting anywhere .  ?  thanks ,  julie  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com  to : julie  sent : tuesday , april 10 , 2001 9 : 16 pm  subject : re : new invoice for energy and weather  julie ,  i signed the request for a check today .  vince  \"\" julie \"\" on 05 / 09 / 2001 04 : 47 : 05 pm  please respond to \"\" julie \"\"  to : ? ? \"\" vincejkaminski \"\"  cc : ? ?  subject : ? new invoice for energy and weather  vince ,  please find attached a replacement invoice for invoice number 215 . ? this  invoice includes the correction in charges for the weather course , and for  only one attendee for the energy derivatives course .  if you should have any questions , please contact me .  sincerely ,  julie  ( see attached file : enron 283 _ 9 _ 04 _ 01 . doc )\",0\n\"Subject: petrochem desk  vasant ,  it seems we have to help them . can kate help  on this project ?  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 23 / 2001  09 : 28 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  nelson neale @ enron  04 / 20 / 2001 10 : 29 am  to : vince j kaminski / hou / ect @ ect , vasant shanbhogue / enron @ enronxgate  cc :  subject : petrochem desk  i had a chance to speak with christian lebroc this morning with regard to  curve building for petrochemicals . as it turns out , christian left rac in  april and joined the petrochem desk as a trader . previous efforts at  construction of a forward curve by the group have focused on intuition or  swags . unfortunately , the group had a rough p & l year with at least some of  the blame directed toward the forward curve or lack thereof . when asked  about the fundamentals group , christian indicated that they ' d only been  around about 3 - 4 months and are not yet well - suited to curve building . john  nowlan is indeed the head of the group .  from a timing perspective , i told christian that it would probably take at  least 6 - 8 weeks to develop a curve , especially considering the need to  understand the key market drivers / fundamentals . as was suggested yesterday  during our meeting , a strong relationship between petrochemicals and a nymex  component ( e . g . , crude oil ) would provide a great beginning point - - we could  then potentially strengthen / augment this relationship with other key factors  ( e . g . , supply and demand terms ) borne out of our market research .  nelson\",0\n\"Subject: re : enron credit model docs for the comparative model study - to be  sent to professor duffie @ stanford  hi ben ,  i think i have read all the papers that are to be used in the comparative  model study to be sent to professor duffie at stanford .  these documents are all listed below . please let me know if i have omitted  any ( however , don ' t get the impression that i am begging for more papers to  read ) .  now i will try to transform my notes into a draft for professor duffie .  thanks ,  iris  list of papers for comparative model study  1 . actively managing corporate credit risk : new methodologies and  instruments for non - financial firms  by r . buy , v . kaminski , k . pinnamaneni & v . shanbhogue  chapter in a risk book entitled credit derivatives : application for risk  management , investment and portfolio optimisation  2 . neural network placement model  by george albanis , enroncredit ( 12 / 22 / 00 )  3 . pricing parent companies and their subsidiaries : model description and  data requirements  by ben parsons and tomas valnek , research group  4 . a survey of contingent - claims approaches to risky debt valuation  by j . bohn  www . kmv . com / products / privatefirm . html  5 . the kmv edf credit measure and probabilities of default  by m . sellers , o . vasicek & a . levinson  www . kmv . com / products / privatefirm . html  6 . riskcalc for private companies : moody ' s default model  moody ' s investor service : global credit research  7 . discussion document : asset swap model  by ben parsons , research group ( 4 / 20 / 01 )  8 . asset swap calculator : detailed functional implementation specification  ( version 1 . 0 )  by ben parsons , research group  9 . discussion document : live libor bootstrapping model  by ben parsons , research group ( 4 / 20 / 01 )  10 . the modelling behind the fair market curves : including country and  industry offsets  by nigel m . price , enron credit trading group  11 . pricing portfolios of default swaps : synthetic cbos - moody ' s versus  the full monte ( carlo )  by nigel m . price , enron credit trading group  12 . placement model vl . 0 : discussion document  by ben parsons , research group , 2000  13 . credit pricing methodology - enroncredit . com  by ben parsons , research group  14 . correlation : critical measure for calculating profit and loss on  synthetic credit portfolios  by katherine siig , enron credit group  15 . discussion document : var model for enron credit  by ben parsons , research group , ( 1 / 3 / 01 )  16 . methodology to implement approximate var model for the credit trading  portfolio  by kirstee hewitt , research group\",0\n\"Subject: enron announcement  car rental options for enron travelers  rental car contracts for 2001 have been awarded to :  national car rental ( primary ) and alamo rent - a - car ( secondary ) .  the intent of these agreements is to consolidate and leverage enron ' s total car rental spend to achieve the most favorable rates and non - pricing provisions ( i . e . insurance ) .  national car rental , due to its service levels , availability and total value proposition , has been awarded primary status and is recommended as the first choice for enron travelers ' needs .  alamo rent - a - car , a sister company to national , has been awarded a contract reflecting a secondary status , due to its service levels , availability and low cost solutions . alamo is recommended as an alternative to national , where available .  when you rent a vehicle in the united states , ( including puerto rico ) or canada , the following insurance provisions are included , regardless of rate selected :  1 . l / dw ( loss / damage waiver ) - this is what is called comprehensive or collision on your personal auto . it covers the rental vehicle and pays for any damage to it .  2 . liability - this covers people and property outside the rental vehicle . for both national and alamo , the coverage is $ 100 , 000 per person , $ 300 , 000 per occurrence and $ 50 , 000 for property damage .  * * important * * *  these coverages apply regardless of rate selected , as long as the following contract id is communicated at the time of reservation and rental is recorded on the transaction rental agreement . ( national - 5000838 alamo - # 143974 )  to enjoy the highest levels of service while renting a vehicle from enron ' s preferred suppliers , it is recommended that each traveler enroll in national ' s and alamo ' s preferred traveler programs . national ' s emerald club membership and alamo ' s quicksilver program are designed to speed the transaction time by providing services such as counter bypass and rapid return . the enrollment fees for these programs have been waived for enron travelers . enrollment packets will be mailed to the addresses of enron american express t & e cardholders . you may also find an enrollment form on the enron travel program intranet @ gss . enron . com .  if you have any questions or comments , please contact jeff leath at 713 - 646 - 6165 .\",0\n\"Subject: spring 2001 schematic  spring 2001 faculty ,  the spring 2001 schematic has been posted to embanet . to access the  schematic please open the jgsm area icon on the embanet desktop . next  please open the announcement jgsm icon . you will find the spring 2001  schematic located under the subject column . please open the document . if  you do not have access to embanet you will need to speak with david kilgore  at kilgore @ rice . edu or by calling david at 713 - 348 - 5378 .  thanks ,  kathy  kathy m . spradling  mba program coordinator  jesse h . jones graduate school of management  rice university  6100 main street , ms 531  houston , texas 77005 - 1892  phone : ( 713 ) 348 - 3313  fax : ( 713 ) 348 - 5251  email : spradlin @ rice . edu  http : / / www . rice . edu / jgs  e - mail : spradlin @ rice . edu  http : / / www . ruf . rice . edu / ~ jgs /\",0\n\"Subject: approval ( sent by nguyen griggs )  user requests acces to / research / erg / basis / basisnw . . . . . please indicate if  you approve .  thanks  ngriggs  irm  o : / research / erg / basis / basisnw . . . .  - - - - - - - - - - - - - - - - - - - - - - forwarded by information risk management / hou / ect on  05 / 02 / 2000 01 : 17 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  security resource request system pending security processing  resource request how to process a request . . .  general information initials :  requestor : kimberly brown / hou / ect phone : 713 - 853 - 5193  requested for : kimberly brown / hou / ect  request type : update access  rc # : 0765 wo # :  company # : 413 priority : high  location : houston 1 . click to see what is being requested or see the resource  request ( s ) section below .  2 . click to process the request .  comments :  this is urgent request # : kbrn - 4 jxkk 6  submitted : 05 / 02 / 2000 09 : 59 : 11 am  name cost status implementation comments  directory / resource / other  o : / research / erg / basis / basisnw . . . . not started  request processing path  processed by status when comments  security  implementation  other security information  req ' s location :  network login id : unix login id :  editing history ( only the last five ( 5 ) are shown )  edit # past authors edit dates  1  2 kimberly brown  kimberly brown 05 / 02 / 2000 09 : 59 : 08 am  05 / 02 / 2000 09 : 59 : 11 am\",0\n\"Subject: very rough draft of the \"\" enron strategic plan \"\" to be sent to  professor duffie  hi ,  as per your request , here is a very rough draft of the document you  requested . it is far from being complete .  hopefully while in london i will have time to work on it some more .  your comments and feedback would be greatly appreciated .  thanks ,  iris\",0\n\"Subject: re : pserc industrial advisory board meeting invitation  vince ,  i agree with alex on this issue .  as an alternative for sponsorship . the ut electrical engineering dept . is  interested in sponsorship for research activities such as the one i just  completed or as martin performed when he was at ut ( just thought that i would  mention this as a possible alternative ) . would you be interested in a  presentation or a \"\" brown bag lunch \"\" on this subject ?  lance  alex huang  04 / 02 / 2001 08 : 55 am  to : vince j kaminski / hou / ect @ ect  cc : lance cunningham / na / enron @ enron  subject : re : pserc industrial advisory board meeting invitation  vince ,  i think it is important to keep a good relationship with pserc , but as of now ,  it is not worth two days of your time to attend the board meeting . besides ,  since  we are not a sponsor yet , we have virtually no voice in the meeting and our  presence  sometimes is awkward . again , even if we are one of the thirty or so sponsors ,  our  voice is rather limited , for most of the other sponsors have different  concerns from  ours . one way to remedy this is to individually sponsor some research  projects , via  sumer intern or invited talks .  alex\",0\n\"Subject: re : youyi  vince , this will be perfect for us . we will work with shirley while keeping  you and krishna informed of the timing and location of the move . i will also  speak with youyi tomorrow about our plans . many thanks , kim .  vince j kaminski @ ect  01 / 16 / 2001 01 : 39 pm  to : kimberly watson / et & s / enron @ enron  cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect  subject : re : youyi  hi kim ,  i don ' t see any problem . for the time being , he can keep his desk on the 19 th  floor as  well ( and the same phone number ) . it will be helpful when he has to work  closely with krishna  under time constraint .  at some point , as we hire more people and run out of space , we can move him  completely to  your floor .  please , ask your assistant to call shirley and arrange the move .  vince  kimberly watson @ enron  01 / 12 / 2001 04 : 21 pm  to : vince j kaminski / hou / ect @ ect  cc : pinnamaneni krishnarao / hou / ect @ ect  subject : youyi  hi vince !  i hope you and a nice christmas and new year ! it ' s nice to be back and in  the full swing of the new year .  i have a question for you . i spoke with krishna prior to him leaving for  india about the possibility of moving youyi up to our floor so that we can  work closer with him . krishna thought that this would be a good idea . it  would be great to have youyi with us soon so that he will be intimately  involved with the whole approach of our prototype model . although krishna  will be back at the end of the month , would you mind if i speak with youyi  and begin the paperwork for moving him onto our floor ? i ' m not sure if  krishna has mentioned this to youyi yet . i did not want to surprise anyone  and wanted to run this by you or krishna for final approval .  many thanks , kim .\",0\n\"Subject: re : fw : possible visit to enron by professor nalin kulatilaka of  boston university  iris ,  i wrote an endorsement for his book on real options ( it was on the cover  under jeff skilling ' s  name ) . let ' s invite him to the thursday lunch .  vince  from : iris mack / enron @ enronxgate on 03 / 29 / 2001 05 : 52 pm  to : stinson gibner / hou / ect @ ect , stinson gibner / enron communications  cc : vince j kaminski / hou / ect @ ect  subject : fw : possible visit to enron by professor nalin kulatilaka of boston  university  hi stinson ,  a colleague of mine - professor nalin kulatilaka of boston university -  is interested in visiting enron to give a talk on work he is doing in the  broadband area .  please see the forwarded emails for further information and available  dates .  can you let me know if we can give him a forum at one of our thursday  research lunches or a friday brown bag lunch ?  thanks ,  iris  - - - - - original message - - - - -  from : nalin kulatilaka @ enron  com ]  sent : thursday , march 29 , 2001 5 : 40 pm  to : mack , iris  cc : lin , martin  subject : re : possible visit to enron by professor nalin kulatilaka of boston  university  hi iris  i have two different hats to wear in talking to enron . one is as a  financial economist . the other as the director of the newly formed \"\" global  mobility innovation initiative ( gmii ) - - this is the research project  funded by lucent , involving bu , lbs , and insead , to study various aspects  of the mobile internet ( read 3 g ) .  on the former i am working with a couple of ph . d . students in understanding  ( a ) details of how having physical supply ( inventory ) can be used by a  market maker . this is a problem that has been studies in the context of  specialists inventory in the stock market but i think really interesting in  the way enron does it in some of the newer markets like bandwidth . i  think this is a big issue in lighting up all the dark fiber that is in the  ground .  ( b ) how enron is disciplining the internal decision making process with  market . this is in many ways the critical aspect of real options that  most finance people miss - - having options is one thing but exercising them  and realizing their value is another . all of the incomplete contracting ,  asymmetric information , and incentive issues are ignored in real options  valuation models . but they are real in practice . my impression is enron ' s  real success is in putting place an organization that is able to mitigate  these problems by imposing a market disciplining .  ( c ) how enron manages the various books that involve physicals , financials ,  credit etc . this is specially important when many of the real assets have  options features and therefore , include non - linear risk profiles . the  story of gas is pretty well understood but not many of the others markets  enron has been moving into over the last few years .  on the gmii front , i think that some interesting opportunities arise when  you think of the spectrum in a way similar to that of dark fiber . i am  working with several people at lucent on this issue . i think it would be  wonderful to engage in a conversation with enron and lucent folks in the room .  i can do a lunch time talk on any of these issues . perhaps we can discuss  some of these over a conference call . clearly , having vince kaminski in the  room would be very important to me .  as for schedules , the first 3 weeks of april are horrible . april 26 / 27 ,  may 3 / 4 are good for me .  regards  nalin  at 06 : 56 pm 03 / 22 / 2001 , mack , iris wrote :  > hi ,  >  > as we briefly discussed , i spoke with one of my colleagues ( dr .  > martin lin ) about your visiting enron to give a talk and to spend some  > time with us to discuss you work in telecommunications , real options ,  > etc .  >  > martin and i are working on various broadband related problems .  >  > we thought it might be helpful if you let us know a bit more about  > the following :  > * when you want to come ( the research group has weekly  > catered lunch on thursday and brown bag lunches on every other friday ) .  >  > * a description of what you want to talk about with respect  > to telecoms , broadband , etc .  > * who you would like to meet with me - vince kaminski ( our  > boss ) , any other of our colleagues in research , broadband , etc .  > . . . . . . . . . . . . . . . . . etc .  >  >  >  >  > look forward to hearing from you .  >  > regards ,  > iris\",0\n\"Subject: re : full version  darrell ,  thanks a lot . i really appreciate it . the text is below our usual  standards but we are completely swamped with work here .  vince  darrell duffie on 08 / 15 / 2000 04 : 54 : 23 pm  please respond to darrell duffie  to : vince . j . kaminski @ enron . com  cc :  subject : re : full version  i ' ll have a look !  i haven ' t much time , but can certainly  get you a quick reaction , at least !  best , darrell  > x - lotus - fromdomain : ect  > from : \"\" vince j kaminski \"\"  > to : duffie @ stanford . edu  > date : thu , 10 aug 2000 14 : 04 : 47 - 0500  > subject : full version  > mime - version : 1 . 0  > content - disposition : inline  > x - uidl : 9 fef 7462 afa 5 d 4 ee 6 co 4 c 9 co 2 df 71 b 25  > x - keywords :  >  >  >  > darrell ,  >  > grant just alerted me that i sent you only part of the text .  >  > here is the full chapter with an aged version of gran ' t part .  > what i sent you represents an update of his contribution .  >  > sorry for that .  >  > vince  >  > ( see attached file : volo 720 . doc )  darrell duffie  mail gsb stanford ca 94305 - 5015 usa  phone 650 723 1976  fax 650 725 7979  email duffie @ stanford . edu  web http : / / www . stanford . edu / ~ duffie / \",0\n\"Subject: follow - up on siam workshop  i am forwarding for your attention the resume of peter percell  who has an extensive experience in modeling physical flows  of natural gas in pipeline systems . peter is looking currently for a job .  i met him last week at the meeting of the science and industry advance with mathematics  society at the university of houston .  the application of recent developments in optimization theory  and numerical methods can help enron to improve further  efficiency of our pipeline system and reduce the consumption of compressor fuel .  please , let me know if you interested in introducing peter to executives  in your organization . i shall be glad to make arrangements for an interview .  vince kaminski  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 30 / 2001 02 : 17 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  peter percell on 04 / 30 / 2001 11 : 16 : 58 am  to : vincent kaminski  cc :  subject : follow - up on siam workshop  i enjoyed your presentation , and meeting you briefly afterwards , at the  siam workshop last friday .  i have extensive experience as a technical leader in the design and  development of modeling and simulation software products , mostly  for the oil and gas pipeline industry .  i am looking for a position that can utilize my software development and  mathematical skills . getting out of the narrow confines of the pipeline  simulation industry would be a plus .  please consider whether i might fit in your group . your answer to a  question indicated that i have several of the skills you look for .  also , please let me know , by email , the names and contact information of  other managers within enron who might benefit from having someone with  my qualifications in their group .  attached are my resume and an addendum covering academic & consulting  experience . publications are available on request .  i will call you in a couple of days to follow up on this email .  thank you for your time .  peter percell 10030 doliver drive  percell @ swbell . net houston , tx 77042 - 2016  ( 713 ) 532 - 3836 voice & fax  - percell , peter resume only . doc  - percell , peter a & c exp . doc\",0\n\"Subject: hea ' s 34 th annual sports tournament  vincent kaminski ,  you should have received a fax over the labor day weekend regarding our  upcoming sports tournament . if you did not receive it , please visit our  website at www . houstonenergy . org and go to the \"\" next scheduled event \"\" , or  just go directly to http : / / www . houstonenergy . org / public / sportscover . doc . for  all the information you need . hope to see you there and don ' t delay in  sending in your registration !  this message was sent by :  teresa knight , executive director  houston energy association ( hea )  phone : ( 713 ) 651 - 0551  fax : ( 713 ) 659 - 6424  tknight @ houstoneneryg . org  if you would like to have your email address removed from our mailing list ,  please click the link below to the hea home page , where you will find a  mini - form to remove your name automatically .  http : / / www . houstonenergy . org /  if you did not receive the attached file or it was corrupted , you can find it  at : http : / / www . houstonenergy . org / public /\",0\n\"Subject: re : datren williams acceptance  what a kind and thoughtful man you always are , vince . . . . i have always  appreciated  that in you ! i just moved to another position this week - with sheila  knudsen in ena  compensation , but i will always remember how wonderful you are with the  associates  and analysts in the program , and will miss having the opportunity to touch  base with  you occasionally . thank you for being the special man you are !  carol  p . s . i doubt that you know who i am , but i had worked with the program for  two years ,  having been hired by mike smalling in october 1998 . when i first moved to  houston  ( from ohio ) and enron , i rode the # 35 bus for a short while . you helped me  find enron the first  day i rode it , but i didn ' t know who you were until i saw you at our super  saturday  activities . you will never know how much that assistance meant to me - a  shy ,  street - dumb girl from toledo , ohio , in a city like houston , who didn ' t know  how to  ride a bus ! all of enron loves you , and i know why !  vince j kaminski  10 / 12 / 2000 04 : 32 pm  to : carol coats / hou / ect @ ect  cc :  subject : re : datren williams acceptance  carol ,  thanks .  vince  carol coats  10 / 12 / 2000 04 : 09 pm  to : vince j kaminski / hou / ect @ ect  cc : stinson gibner / hou / ect @ ect  subject : re : datren williams acceptance  you are right , vince . . . . celeste and i did discuss it , and she approved his  feb . start date .  datren does know about that , so it sounds like it is cleared up .  thanks so much , and we are sorry for the confusion !  carol  vince j kaminski  10 / 12 / 2000 03 : 58 pm  to : stinson gibner / hou / ect @ ect  cc : carol coats / hou / ect @ ect  subject : re : datren williams acceptance  stinson ,  i think it ' s a mistake . it should be february .  vince  stinson gibner  10 / 10 / 2000 08 : 11 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : datren williams acceptance  fyi  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 10 / 10 / 2000  08 : 10 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  carol coats  09 / 29 / 2000 02 : 36 pm  to : celeste roberts / hou / ect @ ect  cc : stinson gibner / hou / ect @ ect  subject : datren williams acceptance  celeste ,  i just received datren williams ' acceptance with the following note attached :  \"\" my graduation date ( ph . d . candidate from lsu ) is dec . 2000 . celeste roberts  has informed me that i would have the option of starting work feb . 2001 . i am  under the impression that i will start in feb . 2001 . my offer letter has a  start date  of aug . 2001 . if this is a problem , please give me a call .  looking forward to working at enron .  thanks a million ,  datren w . \"\"  please let me know if he may in fact start in feb . 2001 , and if so , do you  have  a specific date for him , or may he choose ?  thanks , celeste ,  carol\",0\n\"Subject: outage pricing model revision : allowing for power price vs . outage  correlation  i have included provision for providing rank correlation between \"\" jump  occurrence in daily average power price \"\" and \"\" outage occurrence \"\" . the model  will provide the same claim distribution as before when pricevsoutage  correlation = 0 is used . claim goes up as the correlation is increased . i  have performed some sensitivity analysis and the results seem to make sense .  the new model workbook is \"\" 40901 . xls \"\" and corresponding  dll is \"\" outagepricingo 40901 . dll \"\" , both located in  o : \\ grm \\ research \\ outagerisk \\ subdirectory . the price vs . outage rank  correlation input will need to be provided in \"\" main \"\" spreadsheet . please  call me if you have any questions .  - amitava\",0\n\"Subject: academic seeks job  find below resume and email from someone who has built an electric generation  commitment optimization model and is job - hunting .  his skills look pretty good .  should we bring him for an interview ?  - - stinson  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 04 / 10 / 2000  10 : 01 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : samer takriti @ enron communications on 04 / 07 / 2000 03 : 32 pm  to : stinson gibner / hou / ect @ ect  cc :  subject : fw : resume  another one .  - samer  - - - - - forwarded by samer takriti / enron communications on 04 / 07 / 00 03 : 34 pm  - - - - -  \"\" stephen schwartz \"\"  02 / 02 / 00 10 : 14 am  to : \"\" samer takriti \"\"  cc :  subject : fw : resume  - - - - - original message - - - - -  from : jorge f valenzuela [ mailto : \"\" jorgev + \"\" @ pitt . edu ]  sent : monday , january 31 , 2000 9 : 46 pm  to : stakrit @ ei . enron . com ; stakrit @ ei . enron . com  subject : resume  dear dr . takriti ,  my name is jorge valenzuela . we met last year in the workshop , \"\" the new  generation of unit commitment models \"\" . after your presentation , we had a  brief conversation . i defended my ph . d . dissertation in industrial  engineering at the university of pittsburgh last december . currently , i am  teaching at the business school of the university of pittsburgh , but my  interest is to work for an electric power company such as enron .  during the last three years , my work has revolved around modeling of  electric power systems . my ph . d . dissertation deals with the scheduling of  generating units under the new operating environment . i have proposed a  formulation that includes the option of trading at market - clearing prices  with a power pool . i model the market - clearing price by a stochastic  process based on the stochastic processes of the generating unit  availabilities and the aggregate load . i use probabilistic dynamic  programming to obtain the schedule that maximizes the expected profit .  in my resume , herewith attached , i have listed some other work that i have  done in modeling electric power systems . i would like to add that i am a  very versatile person with strong background in operations research ,  statistics , and information technology .  please call or e - mail me if you think that your company could make use of  a person as me . thank you very much for your kind consideration .  best regards ,  jorge valenzuela  215 sandy dr .  glenshaw , pa 15116  telephone : ( 412 ) 492 - 9886  email : jorgev @ pitt . edu  enclosure  - resume . doc\",0\n\"Subject: resumes  karen ,  i have forwarded all the resumes to charlene jackson about 10 days ago .  i am resending 4 resumes ( in the case of paolo it ' s a copy of his e - mail  message )  i have in electronic format . the resume for gappy will be faxed to you .  thanks for your help .  vince\",0\n\"Subject: sas online tutorial  hi -  we have access to the sas online tutorial for the next 30 days . point your  browser to  and use the username \"\" enron \"\" and password \"\" enron \"\" to enter .  the way this product works is designed for a single user ( it sets a \"\" cookie \"\"  allowing you to \"\" resume \"\" your place in the tutorial when you re - enter . )  since several of us may use it , we ' ll need to work around this , each of us  remembering where we were before and recreating any sample data sets , etc  necessary for the lesson in progress .  clayton  ps the module eis / olap will be a part of our installation next month , but is  not currently available  pps please remember to use your local browser to browse the sas online  documentation . invoking a browser on the unix server is inefficient .\",0\n\"Subject: re : loan recommendation form  li ,  i shall take care of it thursday .  please , call me at the end of the day .  vince  li xiao @ enron  06 / 27 / 2000 11 : 31 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : loan recommendation form  hi , vince ,  i was told by molly that she hasn ' t received the recommendation form from you  yet .  since i got admission late from the school , now i am short of time of getting  i - 20 which needs loan approval ,  and getting visa status transferred ( from h - 1 to f - 1 ) which requires i - 20 and  loan approval  and normally takes around 45 days through ins ( immigration naturalization  service ) .  now , i am trying to push every step to speed up the process in order to  catch up the school opening at beginning of sept .  i know i just told you this late last week . nevertheless , i am writing to see  if you can squeeze some time to finish the recommendation form anytime soon .  it will be a big help .  thank you very much , vince .  have a good day .  sincerely ,  li x 39635\",0\n\"Subject: daily rates - jackups  john :  claudio put together a spreadsheet for cheking the change on a composed  jackup index against the change on individual categories of jackups and  semis . he did not weighted the index because we think we will benefit from a  simpler index price calculation by taking the straight average .  the results show a good r - square between the general index and individual  jackup categories - on the range of 0 . 7 - 0 . 8 . only one category displayed a  poor r - square - about 0 . 3 . for semis of 4 tht and 5 th generation , however , we  noticed a degradation on the hedge effectiveness - r - squares about 0 . 2 - 0 . 3 .  you may verify each regression by changing the choice cell ( ax 2 on analysis ) .  claudio is also starting to analyze how gas and crude past moving averages ,  12 month swaps on gas / crude , and rigs utilization explains the daily rates .  we will forward the results as soon as we finish .  please call me or claudio if you have questions .  paulo issler\",0\n\"Subject: thanks for your help ! !  vince ,  my apologies for writing to you after such a long gap . i wanted to thank you  for the book you sent , as well as al the help that is been rendered by  krishna towards our efforts here  our efforts here are becoming more intense and i will continue to need your  group help as we proceed along the way .  separately i have not yet forgotten about the training we had spoken about .  however , give the intensity of our current effort we may need to hold on to  that for some months . in the meantime we will continue to work together .  once again i would like to thank you and krishna for all your help and  support .  thanks and best regards  sandeep\",0\n\"Subject: re : implementation of smothing algorithm for forward forward  volatilities calculation  winston ,  i am sending you the documentation on the new methodology for creating ffvols  from implied vols . this methodology requires some minimization procedure  to fit the given vol curve with a smoothing function . i am sending you the  code i wrote that performs minimization with simulated annealing method from  numerical recipes .  we might need to discuss some details . please , let me know if you have  questions .  tanya .\",0\n\"Subject: real options conference programs ( ucla , july 11 - 14 )  please find attached the programs for the two back - two - back conferences on  real options at ucla ( you may also download them from www . realoptions . org and  www . rogroup . com ) . the two conferences are separate but complementary events .  the first conference , co - sponsored with accenture and morgan stanley dean  witter , on july 11 - 12 , is a professional conference on real options valuation  in the connected economy : high tech , pharma , energy , corporate valuation &  strategic / portfolio management . for information and online registration see  www . rogroup . com .  the second is the 5 th annual international conference on real options : theory  meets practice ( the annual industry event where academics and practitioners  get together to share the latest developments on theory and applications ) ,  co - organized with the anderson school at ucla on july 13 - 14 . for information  and online registration see www . realoptions . org  between the two complementary events , we are pleased to present an extensive  array of practitioner and cutting - edge academic presentations , sharing of  experiences by corporate executives , and panel discussions by experts from  leading organizations and universities . our keynote speaker this year will be  eduardo s . schwartz of ucla .  interested participants must register for the conference online  www . realoptions . org ) and indicate hotel preferences by may 31 or asap .  we look forward to seeing you at this exciting event , and would appreciate if  you share this with interested colleagues .  lenos trigeorgis  - 5 2001 . doc  - 5 2001 . doc\",0\n\"Subject: baxter 16 oct . please review the following ticketed itinerary  vince ,  attached is a copy of my agenda for today ' s trip to berkeley . also , my cell  phone number is 281 - 793 - 0567 .  thanks ,  ashley  - - - - - - - - - - - - - - - - - - - - - - forwarded by ashley baxter / corp / enron on 10 / 16 / 2000  08 : 49 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  diane fitzgerald on 10 / 13 / 2000 05 : 36 : 50 pm  to : \"\" ' ashley baxter @ 7136463011 ' \"\"  cc : \"\" ' ashley . baxter @ enron . com ' \"\"  subject : baxter 16 oct . please review the following ticketed itinerary  baxter / ashley  eb 3614  etkt receipt  enron broadband services  date : oct 13 2000  service date from to depart arrive  continental airlines 16 oct houston tx san f ca 1155 a 158 p  co 1511 y mon g . bush interco san francisco  terminal c terminal s  snack non stop  reservation confirmed 4 : 03 duration  aircraft : mcdonnell douglas all md - 80 series  seat 09 d no smoking confirmed baxter / ashley ( i  continental airlines 17 oct oakland ca houston tx 630 a 1229 p  co 1720 y tue international g . bush interco  terminal 1 terminal c  snack non stop  reservation confirmed 3 : 59 duration  aircraft : boeing 737 - 500  seat 07 a no smoking confirmed baxter / ashley ( i  aisle seat unavailable . req again at ck in . window confirmed  your etkt confirmation number is : m x n c v t  miscellaneous 16 dec houston tx  sat * * thank you for using the tap * *  reservation number ( s ) co / mxncvt  baxter / ashley soc 083 erl 028  co frequent flyer cofcl 37772  ashley baxter 713 853 - 3589  intl tvlrs : carry sos wallet card w / enronassistance info  call sos : in u . s 800 523 - 6586 / intl 215 245 - 4707 ( collect )  this is the passenger receipt for your electronic ticket .  please check - in with photo identification and with  either ( 1 ) this receipt or ( 2 ) your confirmation number .  your etkt confirmation number is : m x n c v t  regards ,  diana fitzgerald  ( 713 ) 650 - 8080 ext . 1152  ( 713 ) 860 - 1152 - direct line  the travel agency in the park\",0\n\"Subject: vacation time available  here is a list of vacation time that i have at available for the ( research )  weather team .  mike roberts - 240 hours  jose marquez - 54 hours  william smith - 117 hours  elena chilkina - 0 hours  kevin moore - 53 hours  charlie weldon - 20 hours  joe hrgovcic - 136 hours  please if you feel you are due more hours of vacation time ,  please inform me whereby , i can get your hours corrected .  thanks  kevin moore\",0\n\"Subject: re : consulting arrangement  sheridan ,  i have just checked with rac ( david gorte ) and we have a green light  to go ahead with the project . i shall you tomorrow to discuss the details .  vince  sheridan titman on 01 / 24 / 2001 02 : 45 : 50 pm  to :  cc :  subject : consulting arrangement  vince :  i just wanted to check with you regarding the consulting arrangement we  discussed a couple of weeks ago .  perhaps , we should start with just a 1 or 2 day contract where i give some  thoughts to the kind of issues that we discussed and come to houston to  present my preliminary thoughts and possible avenues for additional work .  regards ,  sheridan  sheridan titman  department of finance  college of business administration  university of texas  austin , texas 78712 - 1179  512 - 232 - 2787 ( phone )  512 - 471 - 5073 ( fax )  titman @ mail . utexas . edu\",0\n\"Subject: re : vacation  shrley ,  no problem .  vince  shirley crenshaw  03 / 23 / 2001 02 : 02 pm  to : vince j kaminski / hou / ect @ ect  cc : anita dupont / na / enron @ enron , kevin g moore / hou / ect @ ect  subject : vacation  vince :  i have already requested friday , april 6 th as a vacation day , and if it is ok ,  i would also like to take friday the 30 th as a vacation day .  thanks !  shirley\",0\n\"Subject: re : kellogg class information on real options  jodi ,  chris can set up a conference call with myself , stinson gibner and zimin lu  to discuss  the real option applications . my assistant shirley crenshaw , 3 - 5290 , will be  glad to help him .  vince  enron capital management  from : jodi coulter 02 / 01 / 2000 11 : 36 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : kellogg class information on real options  vince -  per my voicemail , the following is the message i received from chris swenson  about the kellogg class he is trying to form . please let me know if you  would be able to help him . thanks .  jodi  x 56318  - - - - - - - - - - - - - - - - - - - - - - forwarded by jodi coulter / hou / ect on 02 / 01 / 2000 11 : 05  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" christopher p . swenson \"\" on 01 / 25 / 2000 06 : 42 : 58 pm  to : jodi coulter / hou / ect @ ect  cc :  subject : hello  hi jodi ,  i have been remiss in keeping up with you and letting you know what is  going on  in my little world here at kellogg .  in other matters , life at kellogg has me very busy at the moment . i am taking  a full load , including fin decisions and am helping prof . petersen write a new  class called advanced valuation , which will be offered in the spring . a big  part of the focus of this class is going to be on real options , which is cool  stuff . and as poor as my timing is , i would like to ask you a  question / favor .  for purposes of this class , do you think it would be possible to obtain  some of  enron ' s thoughts on real options ? i was thinking , for example , that a  fuel - switching analysis would be neat to included in the case packet . of  course , none of the numbers or names need be real - - only the concepts . well ,  let me know what you think of that - - who knows , enron might actually like the  free exposure .  all the best ,  chris\",0\n\"Subject: re : ca for henwood engagement  stinson ,  please find attached a revised version of the draft consulting agreement with  henwood . fyi , i am attaching both a clean version and one marked toshow  changes from the last draft i sent you . please let me know if you have any  questions or comments on the agreement or the most recent changes .  what is the status of henwood ? do you still want to engage them and what is  the timeframe for their work ( the dates in the draft may need to be  corrected ) .  bruce and lauren : please advise on which enron entity should be the party to  this consulting agreement .  thanks , bonnie\",0\n\"Subject: re : enron site / mepr 2  sorry vince  one must have got away !  will contact dan shortly .  conrad  at 08 : 04 am 6 / 5 / 00 - 0500 , you wrote :  >  > conrad ,  >  > thanks for your message .  >  > there are 3 papers enron contributed to the last mepr .  >  > there is also another paper on electricity i contributed to the \"\" red book \"\"  > on us  > power markets , as well as a paper or credit risk management , and a paper  > on weather derivatives . all these papers included in other risk books were  > written by enron  > employees .  >  > we would like them included as well , if technically possible .  >  >  > i think that offering other energy related books through our site , in  > addition to mepr 2 ,  > is fine , but i would leave the decision to dan diamond , who is responsible  > for the project .  >  >  > vince  >  >  >  >  >  > conrad gardner on 06 / 05 / 2000 07 : 08 : 36 am  >  > to : vince . j . kaminski @ enron . com  > cc :  > subject : enron site / mepr 2  >  >  > > date : mon , 05 jun 2000 13 : 02 : 02  > > to : vince kaminski  > > from : conrad gardner  > >  > > dear vince  > >  > > thanks for the call and email on friday . i will contact masuyuki and  > follow  > it from there .  > >  > > regarding the enron site , i think it is absolutely fine to put up the two  > enron chapters ( i ' ll provide pdfs ) , and prevent any customer leakages from  > your site by the use of \"\" submit \"\" buttons . as mentioned , i ' ll offer a 20 %  > discount on mepr 2 to customers but would you be interested in some of other  > energy titles ? - please let me know .  > >  > > many thanks  > >  > > conrad gardner  > >  > head of book publishing  > risk books  > haymarket house  > 28 - 29 haymarket  > london  > swly 4 rx  > direct tel : + 44 ( 020 ) 7 484 9750  > main tel : + 44 ( 020 ) 7 484 9700  > fax : + 44 ( 020 ) 7 484 9758  > e - mail : conrad @ risk . co . uk  > www . riskpublications . com  >  >  >  >  >  >  >  head of book publishing  risk books  haymarket house  28 - 29 haymarket  london  swly 4 rx  direct tel : + 44 ( 020 ) 7 484 9750  main tel : + 44 ( 020 ) 7 484 9700  fax : + 44 ( 020 ) 7 484 9758  e - mail : conrad @ risk . co . uk  www . riskpublications . com\",0\n\"Subject: fw : afternoon tea with fea  vince :  thanks for surfacing . happy new year !  linda  december 2000 financial engineering associates , berkeley , ca  gentlepeople ,  as the end of the year rapidly approaches , it seems timely to thank you for  your business this year . thank you for helping to make this the best year  ever for fea !  and , wed also like to wish you happy holidays and a healthy and prosperous  new year .  earlier this year , fea initiated \u000f 3 virtual coffee break \u000f 4 , an emailed  newsletter for fea alliance partners . it has proven to be a popular and  useful media to share information . this is our first effort at an emailed  newsletter to fea clients , \u000f 3 afternoon tea with tracie ) . we hope you will  take a few minutes to skim it for pertinent information and then move it to  your fea file folder for future reference .  * * * announcing fea product updates ! * * *  fea has been extraordinarily busy running extensive testing on new releases .  the following should be available to all clients , who are current on  maintenance , in just a couple weeks . we will send an email notification of  the availability of the release , and cds will be shipped . if you prefer ,  email support @ fea . com to request download instructions .  @ energy . 2 . 0 will feature the release of the forward curve builder and the  swing ( take or pay ) options valuation module . the forward curve builder , as  its name suggests , calibrated the forward price curve for power  ( electricity ) and other commodity markets . some additional new features in  the 2 . 0 release include a jump diffusion model for european - style options ,  an option on a strip of options and an option on a strip of spread options .  varworks 4 . 0 includes sophisticated stress testing , support for individual  equities , and new easier to use templates . eagerly awaited by fea clients ,  the addition of stress testing capabilities has been a top priority for  fea ' s engineering team . fund managers will be happy to hear that individual  ( sectorial ) equities are now supported in varworks . 4 . 0 .  if you do not own a license for @ energy or varworks , and want to evaluate  them , email sales @ fea . com and request a 30 day demo . product demos are free  to existing fea clients . curious about a product , but dont have time to  install a demo , read the instructions and experiment ? visit  www . fea . com / demos . htm and select alternative one . we can now demo fea  software on your computer screen , via the internet .  * * * list of current versions of fea products now posted on - line !  you may refer to www . fea . com / support . htm for details of the most current fea  product releases .  * * * fea newswire : fea and its chief scientistmark garman have been awarded a  4 th us patent ! patent 6 , 122 , 623 recognizes the \"\" watershed method \"\" as fea ' s  second us patent defining cutting - edge methodologies for var . the importance  of the recent invention is that it will allow market risk to be more  accurately allocated into accounting periods . mark ' sprior patent in the var  arena pertained to the calculation of \"\" marginal var \"\" or \"\" component var , \"\"  which allowed risk managers to \"\" slice and dice , \"\" or dissect enterprise - wide  var into its constituent components . ( see the pressrelease at  www . fea . com / pdf / watershed _ pr . pdf ) .  * * * first beta site for varworks se * * * www . fea . com / press _ rm . htm  look for a press release announcing the first beta site for feas varworks .  se ( server edition ) . varworks ses dynamic risk analysis and reporting  environment will enable the delivery of customized risk profiles to dozens  of exchange participants . ( see the product description at  http : / / www . fea . com / p _ varse . htm . )  * * * did you hear ? ? ? ? ?  riskmetrics , as of 1 / 15 / 2001 , will be charging for their previously free  data sets . only outdated data sets will be available at no charge .  feas makevc product allows you to build your own customized data sets  utilizing historical time series data that you may already have available to  you . you may request a free 30 day demo of makevc from  www . fea . com / demos . htm . product demos are free to existing fea clients .  * * * plan ahead  the next var seminar will be late spring 2001 . see  www . fea . com / seminars . htm for information as it becomes available , or browse  the october 2000 seminar brochure . you may also contact sales @ fea . com to  reserve your space .  * * * the fea frequent flyers * * *  december / january , madrid , spain , carlos  january 15 + calgary and toronto , canada , tracie  february 13 - 14 , new york , garp 2001 , laurent and christine  february 13 - 15 , germany , e * trade chris and ursula  february 19 , london , tracie  contact sales @ fea . com to arrange a meeting .  the fine print : we are interested in your feedback , and ideas for future  topics . please send an email if you do not want to receive future fea  newsletters . mailto : elena @ fea . com\",0\n\"Subject: re : holidays and vacations  tanya ,  no problem .  vince  tanya tamarchenko  11 / 20 / 2000 02 : 52 pm  to : shirley crenshaw / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : holidays and vacations  shirley ,  i am planning to take the following days off in december :  12 / 21 , 12 / 22 , 12 / 27 , 12 / 28 .  i ' d like to take 12 / 21 as discretionary day , and 3 other days as vacation  days .  tanya\",0\n\"Subject: re : a request  dr . lu ,  i would be grateful if i could talk with you some time about the typical  terms one sees in swing , take or pay , virtual storage , etc . options . this  is related to some research some colleagues and i are doing applying recent  innovations in monte carlo valuation of options with early exercise . we  would like to illustrate our techniques on some examples which look  realistic . when would be convenient for you ?  i look forward to talking with you .  duane seppi  - - on wednesday , march 14 , 2001 , 8 : 44 am - 0600 vince . j . kaminski @ enron . com  wrote :  >  > duane ,  >  > i shall be traveling for the rest of the week but my colleague  > dr . zimin lu will call you to talk about different  > structures .  >  > vince  >  >  >  >  >  > ds 64 @ cyrus . andrew . cmu . edu on 03 / 13 / 2001 09 : 54 : 24 am  >  > to : \"\" vince j kaminski \"\"  > cc :  > subject : re : a request  >  >  > vince ,  >  > sorry that i missed your call yesterday . i have a meeting from 2 - 3 today  > ( tuesday ) , but otherwise any time in the afternoon works for me . let me  > know what is convenient for you . thanks for your help .  >  > duane  >  > * * * * * * * *  > duane seppi  >  > graduate school of industrial administration  > carnegie mellon university  > pittsburgh pa 15213 - 3890  >  > tel . ( 412 ) 268 - 2298  > fax ( 412 ) 268 - 8896  >  > email ds 64 + @ andrew . cmu . edu  >  >  >  >  >  * * * * * * * *  duane seppi  graduate school of industrial administration  carnegie mellon university  pittsburgh pa 15213 - 3890  tel . ( 412 ) 268 - 2298  fax ( 412 ) 268 - 8896  email ds 64 + @ andrew . cmu . edu\",0\n\"Subject: organizational announcement : industrial origination , ctg , and ena  treasury  effective immediately , ray bowen will take over leadership of the industrial  origination group responsible for enron north america \u0001 , s origination  activities in the industrial market including pulp & paper , metals , refining ,  and petrochemicals . as part of the industrial origination group , jim ajello ,  will continue to lead the origination effort in the metals , refining , and  petrochemical sector . edward ondarza maintains oversight of origination in  the pulp and paper sectors . rodney malcolm retains primary responsibility  for leading the execution of transactions and delivery of the outsource  solutions to industrial customers .  when the commercial transactions group was created approximately a year ago ,  the objective was to create an internal emphasis on the development of  transaction execution skills that are necessary to execute complex ,  structured transactions and to foster better deal quality . we believe that  the primary objectives of the ctg have been achieved , and in order to better  position the organization for the remainder of 2000 and in response to ray  bowen \u0001 , s new position , the following changes will be made in the commercial  transactions group organization .  transaction development : transaction development , which was created to  provide focused deal execution capability to the origination groups , will be  merged into each respective origination group and report solely to the group  leaders .  portfolio management : all activities surrounding portfolio investments will  report to jeff donahue . jeff will be responsible for ena \u0001 , s \u0001 & capital book \u0001 8  and will have a high level of involvement in existing portfolio investments  and will work closely with ena treasury and the various origination groups to  assure that new transactions ( a ) incorporate appropriate risk / return  characteristics , ( b ) are evaluated in the context of market based pricing  signals , and ( c ) incorporate a specific investment plan which includes  syndication of the investment , if applicable , and a specific exit strategy .  portfolio management includes restructuring / special assets ( randy  maffett / dick lydecker ) and capital structuring ( andrea reed ) . steve pruett  ( energy capital resources ) , chuck ward ( generation investments ) , don miller  ( merchant generation ) , and chris helfrich ( coal and industrial ) will continue  to be responsible for day to day asset management for performing investments  and will report to their respective origination units with a dual report to  jeff . jeff will retain his corporate development and principal investments  activities .  commodity structuring : commodity structuring including berney aucoin ( power )  and ed mcmichael ( gas ) will report to janet dietrich . janet will retain  responsibility for east midstream origination . commodity structuring will  continue to work to facilitate and structure the highest priority and highest  value transactions across the entire ena organization .  technical / oec : the technical group ( wayne mays / bob virgo ) , which provides  technical support to industrial and power generation asset development  activities , and oec ( lead by mark dobler ) will report directly to the ena  office of the chairman .  in addition to these changes , joe deffner has been named ena \u0001 , s chief  financial officer and will head ena treasury . in this role he will be  responsible for managing ena \u0001 , s balance sheet and the sourcing of capital in  the bank and capital markets . joe will report jointly to the ena office of  the chairman and to enron corp . global finance .\",0\n\"Subject: org announcement - enron global markets  after having conducted our first of several business reviews , enron global  markets - office of the chairman would like to outline the following  organizational changes effective immediately .  the global risk markets group under jere overdyke illustrates enormous  opportunities given the size of those businesses . to better focus on the  different commercial functions and to capture market share and value , the  group is being realigned . jere will continue to manage global risk markets  and build on our insurance capabilities . mark tawney is responsible for our  weather business and will now report to the egm office of the chairman .  brent price will be joining enron global markets as vice president of  operations and chief accounting officer . he will report to the egm office of  the chairman , and to sally beck , vice president of global risk management  operations . in his role as chief accounting officer , brent will also report  to rick causey , executive vice president and chief accounting officer for  enron corp . reporting to brent in his new position will be sheila glover ,  business controller for financial products ; todd hall , business controller  for weather ; and scott earnest , business controller for global products and  coal . in addition , tom myers will join brent ' s management team as director  of accounting . brent and his team are responsible for all accounting , risk  reporting and trading operations for all the businesses within egm .  cindy skinner will join the enron global markets team with responsibility for  human resources . she will also report to david oxley and the hr organization .  please join us in congratulating everyone in their assignments .\",0\n\"Subject: erisk iconference 4 / 11 / 2001  please save this e - mail . it contains important information  about your event .  thank you for registering for practical considerations in measuring  economic capital , scheduled for wednesday , april 11 th , 2001 at  12 noon eastern / 5 p . m . london time .  click this link to visit the erisk . com homepage :  http : / / www . erisk . com  erisk iconference instructions :  1 . dial 1 - 877 - 864 - 3651 ( u . s . ) or + 1 - 973 - 341 - 3037 ( international ) to  listen to the audio for this program . audio is available by  telephone only .  2 . when prompted , enter the confirmation code 105764 , followed  by the \"\" # \"\" key . music will play until the conference begins .  3 . join the web - based portion of the program to see slides ,  participate in polls and ask questions .  - open netscape or internet explorer 3 . 0 or higher .  - enter the following web address : http : / / www . communicast . com / login  4 . fill out the form on this page and enter the following  confirmation number : 105764 .  5 . click the \"\" communicast now \"\" button . in a few moments you will  be placed in the erisk iconference .  communicast system requirements :  - communicast requires the ability to run java applets .  - netscape or internet explorer browsers 3 . 0 or higher .  if this is your first communicast event , you may wish to test your computer .  visit http : / / www . communicast . com / login at any time and click the \"\" test \"\"  button at the bottom of the page . for this conference , you may skip the  last three tests relating to streaming audio . you will not need realplayer  to participate in this conference .  if you require further assistance , contact support @ communicast . com .\",0\n\"Subject: re : congratulations .  congrats to you too ! i ' ll see you in february unless you ' re in london  sooner . can ' t wait to start up the dinner club again !  see you soon .  beth  vince j kaminski  11 / 01 / 2000 00 : 01  to : beth perlman / lon / ect @ ect  cc :  subject : congratulations .  beth ,  congratulations . well deserved .  vince\",0\n\"Subject: re : fw : luncheon meeting : asap  hello mr . kaminski ,  i am available to meet with you for lunch this week on tuesday ( 2 / 1 ) ,  wednesday ( 2 / 2 ) . or friday ( 2 / 4 ) . which day would be more convenient for you ?  please let me know .  i am planning to meet with mr . chris holmes ( introduced by a mutual family  friend ) of enron ' s energy services next week . mr . holmes also suggested that  i meet with you .  looking forward to the meeting . i will call you to follow up . for convenience  i am attaching my latest resume .  thank you .  maruti more  713 - 722 - 7199  - - - - - original message - - - - -  from : vince j kaminski  to : more  date : tuesday , january 25 , 2000 12 : 39 pm  subject : re : fw : luncheon meeting : asap  hello ,  i shall be traveling this week . i shall be glad to meet  you for lunch next week . please give me a call monday  at 713 853 3848 .  vince  \"\" more \"\" on 01 / 25 / 2000 10 : 27 : 09 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : fw : luncheon meeting : asap  dear mr . kaminski :  just to bring you up to date . i am no longer with american general . i  shall ,  therefore , appreciate an opportunity to meet with you for lunch at the  earliest  possible time . i can be reached at 713 - 722 - 7199 .  thank you .  maruti more  713 - 722 - 7199  - - - - - original message - - - - -  from : more  to : vince j kaminski  date : friday , december 17 , 1999 8 : 55 pm  subject : re : luncheon meeting  thank you for your response . i was very happy to hear from you .  i am also taking next week off and will be back to work on december 27 th .  please do call me when you get back . would very much appreciate the  opportunity  to have a quick lunch with you , if possible . hope everything is going  well .  have wonderful christmas holidays .  regards  maruti more  713 - 831 - 6209 ( o )  - - - - - original message - - - - -  from : vince j kaminski  to : more  cc : vince j kaminski  date : friday , december 17 , 1999 3 : 35 pm  subject : re : luncheon meeting  hello ,  i shall be taking a few days off around xmas . i shall call you at the  end of  december  when i get back to the office .  with best holiday wishes ,  vince  \"\" more \"\" on 12 / 01 / 99 09 : 28 : 09 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : luncheon meeting  dear mr . kaminski :  how are you doing ? i want to find out if we can meet again for a quick  lunch .  you might know that in maharashtra , india there is now a new chief  minister  ( ceo of the state government ) . i am proud to say that he and i are  from the  same  town , latur .  i would really enjoy talking with you again , at your convenience .  i will call you tomorrow to follow up .  thank you .  sincerely ,  maruti more  - - - - - original message - - - - -  from : vince j kaminski  to : more  cc : vince j kaminski ; vkaminski @ aol . com  date : thursday , july 01 , 1999 6 : 16 am  subject : re : luncheon meeting  dear mr . more ,  let ' s meet at 11 : 45 in the lobby of the enron building .  we can walk to one of the restaurants in the downtown area .  vince kaminski  ( embedded enron capital & trade resources corp .  image moved  to file : from : \"\" more \"\"  picl 7002 . pcx ) 06 / 30 / 99 10 : 38 pm  to : vince j kaminski / hou / ect  cc :  subject : luncheon meeting  dear mr . kaminski :  i am looking forward to our luncheon meeting on this friday ,  july 2 ,  1999  at  11 : 30 am . please let me know where we should meet . thank you for  taking  time  out  from your busy schedule .  sincerely ,  maruti more  tel . : 713 - 831 - 6209  - attl . htm  - more @ home . doc  - bio @ homel . doc\",0\n\"Subject: california power  rick & ted ,  one more thing to watch . california power prices next summer .  we see the possibility of higher prices and of spikes ( bad hydro conditions  in california , growing demand for power ) .  vince\",0\n\"Subject: re : zakup ksiazki w wnt - \"\" inzynieria finanasowa \"\"  dziekuje za szybka odpowiedz . czy mozliwa jest platnosc czekiem ?  jako alternatywne rozwiazanie prosze podac mi cene w zlotych i moja rodzina w  kraju  dokona przelewu .  prosze o kopie odpowiedzi na adres : vkaminski @ aol . com .  dziekuje .  w . kaminski  \"\" wydawnictwa naukowo - techniczne \"\" on 01 / 19 / 2001  10 : 09 : 27 am  to :  cc :  subject : zakup ksiazki w wnt - \"\" inzynieria finanasowa \"\"  uprzejmie informuje , ze ksiazke wyslemy po wplynieciu na nasze konto  odpowiedniej kwoty . kwota ta zawiera wartosc ksiazki ( 13 , 75 $ ) , koszty  bankowe ( 5 $ ) oraz koszty pocztowe ( 6 , 5 $ lub 11 $ ) .  - przy przesylce droga morska prosze wplacic 15 , 25 $  - przy przesylce lotniczej prosze wplacic 29 , 75 $  nietety , nie mamy mozliwosci technicznych pobrania oplaty karta kredytowa .  fakture wysylam poczta .  nasze konto : pbk s . a . iii o / warszawa  ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 11101024 - 401020003963  nazs adres : wydawnictwa naukowo - techniczne , mazowiecka 2 / 4 , 00 - 048 ? ? ? ? ? ? ?  warszawa , polska  serdecznie pozdrawiam  grazyna piesniewska\",0\n\"Subject: here ' s a 4 th try ! ! !  - - - - - - - - - - - - - - - - - - - - - - forwarded by richard b jones / hou / ees on 02 / 01 / 2001  10 : 22 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  richard b jones  01 / 31 / 2001 04 : 39 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : here ' s a third try ! ! !  vince ,  while i was at hsb , i designed an insurance or reinsurance financial model  that hsb uses for new product development , pricing different reinsurance  strategies , computing stochastic earnings forecast , and estimating  probabilistic maintenance & repair costs . the code , written in visual basic &  ms access belongs to hsb , and i want to replicate it here for our use at  enron . i would like to arrange a time to specifically talk to you and perhaps  vasant who was briefed on the model , about how we can use your group for the  analytical and programming support to get this model re - constructed .  i have screen outputs from the code and vasant thought the re - design and  construction here at enron is a problem that your group can do . could you let  me know when we can setup an hour to discuss ?  thanks ,  rick jones\",0\n\"Subject: re : mathworks  molly ,  we have a reasonably big room . 2 - 5 people is ok . it ' s ebl 938 .  vince  molly carnes @ enron communications  09 / 28 / 2000 03 : 10 pm  to : vince j kaminski / hou / ect @ ect @ enron  cc :  subject : re : mathworks  i ' ve got in on the calendar for the 18 th at 2 : 00 . what ' s the location ? how  many can we bring ? 2 or 3 ?  thanks .  molly carnes  for  louis casari  vice president , mid office operations  enron broadband services  713 - 853 - 4302 , room eb 4492  lou _ casari @ enron . net  vince j kaminski @ ect  09 / 28 / 00 10 : 39 am  to : lou casari / enron communications @ enron communications @ enron  cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , lou  casari / enron communications @ enron communications  subject : re : mathworks  molly ,  i met lou in the building lobby last wednesday and he suggested that he  ( or his representatives ) join the mathworks presentation to my group ) .  it ' s a good software package for mathematical modeling ,  but there is a limit to the number of different installations any group  can productively use .  i shall take a look at some new features they offer  and decide whether it ' s worth the effort .  vince kaminski  lou casari @ enron communications  09 / 20 / 2000 02 : 10 pm  sent by : molly carnes @ enron communications  to : vince j kaminski / hou / ect @ ect  cc :  subject : mathworks  do you know this person or this company ? they are want to set an appointment  with ebs and i believe , are wanting to meet with you , also . any feedback ?  thanks .  molly carnes for lou casari  enron broadband services  713 - 853 - 1467 , room eb 4486 a  molly _ carnes @ enron . net  - - - - - forwarded by molly carnes / enron communications on 09 / 20 / 00 02 : 09 pm  - - - - -  scottw @ mathworks . com  09 / 20 / 00 08 : 46 am  to : lou casari / enron communications @ enron communications  cc :  subject : we ' ll be in houston  hello mr . casari :  myself and our energy trading financial team will be visiting with the r & d  group at enron the week of 10 / 16 / 00 . they have several applications can be  dramatically improved with our tools .  we are very interested to understand the bandwidth trading market , to see  if any additional challanges can be overcome with our tools .  i would like to understand your challanges of modeling , simulating and  deploying applications to control risk .  are you available to discuss these items prior to our visit ?  i look forward to hearing from you .  thanks  scott wakefield\",0\n\"Subject: re : enron case study  outstanding , cindy . thank you so much . i will get you some questions  after i talk with vince .  john  at 01 : 44 pm 10 / 31 / 00 - 0600 , you wrote :  >  > good afternoon john ,  >  > i hope things are well with you . i am writing to update you on the status  > of your meetings with andy fastow , ken lay and jeff skilling . i have  > arranged the following meeting dates and times with ken lay and jeff  > skilling , ( i am still trying to work with andy fastow ' s schedule ) :  >  > jeff skilling  > december 4 th  > 2 : 00 - 3 : 00 p . m .  >  > ken lay  > december 4 th  > 3 : 30 - 4 : 30 p . m .  >  > also , i will attempt to schedule the meeting with andy fastow for december  > 4 th for convenience - this will also allow us to possibly schedule  > additional meetings for the 5 th ( as needed ) . i will let you know as soon  > as i ' m successful .  >  > regards ,  >  > cindy derecskey  > university affairs  > enron corp .  >  >  >  >  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: mark lay  vince : mark had not received my email so simply assumed that i had a  business plan and he would help if he could . i explained that i was at  the \"\" pre \"\" business plan stage . further , that i had hoped to discuss my  search for collaborators to become co - founders . people with vision that  might help develop and refine the concept , identify model components ,  isolate modules for the initial effort and build a business plan  suitable for angel investors not vcs . i might need your help in  conveying this to him . i have struggled to put on paper a very rough  draft of how it might be best describe as to the direction it might go  and what might conceptually be possible . please look at this and tell  me if i am going too far at this point . i do not want to implant  insurmountable obstacle in anyone ' s mind . i hope to hear from you . al  arfsten 713 965 2158  - lifetrak concept 012501 . doc\",0\n\"Subject: re : financial engineering associates  karla ,  thanks . here are helyette ' s coordinates :  helyette geman  universite de paris - dauphine  place du marechal de lattre - de - tassigny  75775 paris cedex 16  phone : 33 1 44 054 943 ( o )  33 1 46 040 110 ( h ) ( f )  fax : 33 1 44 054 937  geman @ cidmail . services . dauphine . fr  helyette . geman @ dauphine . fr  vince  from : karla feldman 03 / 06 / 2000 01 : 50 pm  to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect  cc :  subject : financial engineering associates  vince and stinson ,  i checked the file and the maintenance that automatically renews on 4 / 1 / 2000  is for the following products :  all 4 of your @ global licenses  spav  swing  i will go ahead and contact fea and see about getting the renewal invoice for  these . i ' ll send it to shirley for payment once i have it .  the products : @ interest , seapc , and seapp have not been on maintenance for a  while . fea told us a couple of years ago i believe that they do not have  maintenance available for these products any longer . so , you don ' t need to  worry about cancelling @ interest .  also , just fyi - your @ energy . 1 and @ energy . 2 licenses have maintenance  through 10 / 20 / 2000 .  if you have any questions , please let me know . otherwise , i will proceed  with contacting fea about you renewal of the @ global , spav , and swing  licenses .  thanks ,  karla\",0\n\"Subject: re : follow - up on siam workshop  vince ,  thanks for your quick response .  if you feel it is appropriate , i would like to know who you sent  my resume to , so that i will know that they have already been  \"\" covered \"\" .  peter  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : monday , april 30 , 2001 2 : 17 pm  to : percell @ swbell . net  subject : re : follow - up on siam workshop  peter ,  i forwarded your resume with my recommendation to two  senior executives in our transportation and storage group .  vince\",0\n\"Subject: congratulations  congratulations on your official designation as a poohbah ! just goes to show  you , smart guys can finish first also .  mark\",0\n\"Subject: re : prospective 6 / 22 houston visit  ehud ,  we shall make reservations for dinner at vincent ' s  on west dallas ( 2701 west dallas , 713 528 4313 ) .  we shall make reservations fro 7 : 00 p . m .  you can call me on my cell phone ( 713 410 5396 ) if there is a problem .  we shall have about 25 - 30 people at the meeting on thu at  11 : 30 .  see you tomorrow .  vince  \"\" ehud i . ronn \"\" on 06 / 19 / 2000 02 : 32 : 36 pm  to : vince . j . kaminski @ enron . com  cc : shirley . crenshaw @ enron . com  subject : re : prospective 6 / 22 houston visit  vince ,  greetings , and thanks for your 6 / 12 e - mail .  > we can meet for dinner on the 21 st . then you can visit with us on the 22 nd  > in the morning and have individual meetings . at 11 : 30 you can meet the  > entire  > research group at our weekly lunch meeting . we can continue  > individual meetings in the afternoon .  i thank you once again for your invitation and look forward to my visit  this wed . my current schedule calls for a hobby arrival on wed . at 6 : 23  p . m . , in time for the dinner scheduled for that evening . ( i can take a cab  directly to the restaurant if you ' re scheduling a circa 6 : 45 - 7 p . m .  dinner . ) further , i have tentatively set up the thur . return flight to  austin at 3 : 38 p . m . , and that can be modified as desired .  > please , make a reservation at hyatt regency downtown or double tree  > downtown ( there are several hotels with the same names ) .  when i made the room reservation last mon . 6 / 12 , it turned out that these  hotels showed no vacancy ( is there a conference in town ? ) , so the nearest i  could obtain is the hilton houston plaza ( 6633 travis ) some 3 . 5 miles away  from enron . ( if it is important that i stay at the closer hotels , shirley  might ascertain whether enron ' s travel agent can obtain a room there . )  i take this opportunity to request of shirley that , subject to your  approval , an overhead projector , screen and small lectern be made available  for the room where the 11 : 30 luncheon meeting takes place . also , since i  would like each participant to have his / her own copy , i would ask her to  advise me as to the number of participants expected to attend , or  alternatively , shirley could make copies of the presentation handout when i  bring the \"\" master \"\" copy in thur . morn .  i look forward to seeing you wed . and thur . best regards ,  ehud  ehud i . ronn  department of finance  mccombs school of business  university of texas at austin  austin , tx . 78712 - 1179  voice : ( 512 ) 471 - 5853  fax : ( 512 ) 471 - 5073  internet : eronn @ mail . utexas . edu \",0\n\"Subject: re : sharad update  hi kate ,  firstly it was very useful to hold the informal discussion with him . sharad  seemed hesitant due to the offer not being what he expected . he asked me  some questions about the \"\" bonus culture \"\" at enron and suggested that it was  not as good as at investment banks that he is interviewing with . i sold him  on the value he can extract from the excellence within the research group and  the ability to join a growing organisation at a critical point in , but he  still seemed reticent saying that he \"\" needs time \"\" which i understood to mean  that he was looking for a better offer elsewhere . he is a great candidate  and it would be a real shame to lose him , given the difficulty of getting  good candidates .  i discussed this with vince and given how much we need him in research in  london and vince agreed to discuss the possibility of an element of guarantee  or sign on to help him make the right decision .  i think vince will call you or dale to discuss this .  regards ,  anjam  tel : 713 345 9991  [ p . s . vince , kate bruges is on extension 37354 , dale is on 36726 ]  kate bruges  13 / 07 / 2000 11 : 02  to : anjam ahmad / lon / ect @ ect  cc :  subject : sharad  hi anjam  how did your conversation go yesterday ?  regards  kate\",0\n\"Subject: re : weather and energy price data  mulong wang on 04 / 24 / 2001 10 : 58 : 43 am  to :  cc :  subject : re : weather and energy price data  hello , elena :  thank you very much for your data . i sent an email to ft but had no  response so far . as soon as i got their permission i will let you know .  have a great day !  mulong  on thu , 19 apr 2001 elena . chilkina @ enron . com wrote :  >  > mulong ,  >  > please find attached a file with henry hub natural gas prices . the data  > starts from 1995 and given on the daily basis , please let us know when we  > can proceed with electricity prices .  >  > sincerely ,  > elena chilkina  >  > ( see attached file : henryhub . xls )  >  >  >  >  >  >  > vince j kaminski @ ect  > 04 / 16 / 2001 08 : 19 am  >  > to : mulong wang @ enron  > cc : vince j kaminski / hou / ect @ ect , elena chilkina / corp / enron @ enron ,  > macminnr @ uts . cc . utexas . edu  >  > subject : re : weather and energy price data ( document link : elena  > chilkina )  >  > mulong ,  >  > we shall send you natural gas henry hub prices right away .  > please look at the last winter and the winter of  > 95 / 96 .  >  > we shall prepare for you the electricity price  > information ( cinergy , cobb and palo verde ) but  > you have to approach ft ( the publishers of  > megawatts daily , a newsletter that produces the price  > index we recommend using ) and request the permision  > to use the data . we are not allowed to distribute  > this information .  >  > please , explain that this is for academic research and that  > we can produce the time series for you ,  > conditional on the permission from the publishers  > of megawatts daily .  >  > vince kaminski  >  >  >  > mulong wang on 04 / 15 / 2001 03 : 43 : 26 am  >  > to : vkamins @ ect . enron . com  > cc : richard macminn  > subject : weather and energy price data  >  >  > dear dr . kaminski :  >  > i am a phd candidate under the supervision of drs . richard macminn and  > patrick brockett . i am now working on my dissertation which is focused on  > the weather derivatives and credit derivatives .  >  > could you kindly please offer me some real weather data information about  > the price peak or plummet because of the weather conditions ?  >  > the past winter of 2000 was very cold nationwide , and there may be a  > significant price jump for natural gas or electricity . could you  > please offer me some energy price data during that time period ?  >  > your kind assistance will be highly appreciated and have a great day !  >  > mulong  >  >  >  >  >  >  >  >  >  >  >\",0\n\"Subject: stephen bennett  norma ,  i fully concur . what can we do about it ? can we change the job classification  retroactively ?  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 12 / 12 / 2000  02 : 41 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : mike a roberts 12 / 09 / 2000 10 : 33 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : stephen bennett  stephen bennett , professional meteorologist , was hired into the research  group in september of this year as a specialist based on salary alignment  criteria . in retrospect , and upon review , he should have been hired on as a  senior specialist .  after coming on board . it rapidly became apparent that stephen was clearly an  \"\" under hire . \"\" he is well - deserving of an immediate promotion ( really more of  a correction ) and pay raise , to be made retroactive at least to the lst of  this month . this memo outlines the circumstances surrounding this hiring  error and provides detailed justifications for this retroactive \"\" promotion . \"\"  at the time of the interview process , there was no position in enron  designated as \"\" professional meteorologist . \"\" in fact , the most recent similar  hire prior to that date was jose marquez , also a professional meteorologist ,  who was hired in , based on salary alignment criteria , as a manager . while  functionally , both these men are meteorologists , enron has no such job  classification . compounded by the urgency in bringing on additional  professional expertise in short time order , it was difficult to peg the  proper enron classification appropriate for this new position . this original  uncertainty and resulting misplacement of stephen into the specialist  category , rather than the senior specialist category , needs to be corrected  at this time .  although a \"\" new - hire \"\" to enron , stephen bennett has extensive work  experience . he has worked as a professional meteorologist at both the  weather services corporation in boston and at the weather channel in  atlanta . he came to enron well - referenced by both those organizations ,  needing no further training and only minimal supervision .  once aboard here in houston , stephen immediately demonstrated the core enron  values with our unique sense of urgency . after only a week , he assumed  responsibilities normally reserved for someone actually at even a manager  level - he was assigned and fully took over the critical afternoon weather  briefings to the gas traders . this includes analysis and report preparation  as well as presentation . also in the presentation arena , he now regularly  briefs various desks in the morning and throughout the day . stephen is a  master of communication and particularly adept at conveying what through  other messengers might otherwise seem confusing or ambiguous .  stephen has also demonstrated an unusually high level of self - initiative . he  designed , implemented , and now maintains several sub - sites on the research  web page which he tailored to various customers - in specific : the weather  derivatives team , the agricultural team , and most recently , the crude and  liquids team . i have recently assigned stephen to spearhead our conversion  and major upgrade of this web page .  these above described accomplishments are above and beyond stephen \u0001 , s regular  duties which include starting work at 5 am daily , reliably and without fail ,  to assemble and prepare our trader \u0001 , s weather report . recently , with the  advent of extended hours for both nymex and enrononline , stephen voluntarily  on his own accord , assists in our new sunday weather support effort . as his  supervisor , fully cognizant of his already standard 50 + hour work week , i do  not solicit , but readily accept , this above and beyond expectations  assistance .  in review , the circumstance which resulted in this under hire condition was  enron \u0001 , s immediate need for a non - standard , fairly unique professional - a  meteorologist , coupled with stephen \u0001 , s desire to work for our company in spite  of the absence of a hierarchy which included the exact entitled professional  title reflecting his chosen career path . . once hired , stephen has clearly  demonstrated through contribution and performance that he is well - deserving  of this immediate and retroactive promotion .\",0\n\"Subject: fw : enron recruitment  vince : i ' m sure that you are already aware of this , but i wanted to forward  it to you since this didn ' t come up in our meeting the other morning . . . .  molly  - - - - - original message - - - - -  from : koepke , gwyn  sent : tuesday , april 10 , 2001 1 : 20 pm  to : rtlambert @ mail . jhuwash . jhu . edu  cc : molly magee / hou / ect @ enron  subject : enron recruitment  dear ron ,  my boss , enron ' s chief international economist , is interested in talking with  sais grads who might want to come to houston and do economics work . same  drill as last time , looking for someone whose done the quant track but with  excellent writing skills . i think i sent you a job description a few months  back .  can you help identify some candidates , and send their resumes our way ? molly  magee is our recruiting expert and she can help setup the interviews with  maureen . maureen is still in london on secondment but is available to  interview people of the phone .  thanks for your help .  gwyn\",0\n\"Subject: re : cairn gas purchase bid  vince ,  i ' m following up on our conversation late last week and i ' m interested to see  what your group can advise , per doug leach ' s recommendation . as you can see  he is raising a major red flag in regards to our non - binding offer to cairn .  since , it was late the other night i didn ' t touch base with sandeep kohli ,  but bobby and i are probably the most knowledgeable in regards to the indian  gas market . please let me know what information you may need from us to  provide some guidance .  regards ,  doug  - - - - - - - - - - - - - - - - - - - - - - forwarded by douglas s parsons / enron _ development on  08 / 15 / 2000 07 : 51 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  bobby farris  08 / 14 / 2000 10 : 19 pm  to : douglas s parsons / enron _ development @ enron _ development  cc :  subject : re : cairn gas purchase bid  there is no harm in seeing what kaminski ' s group will advise . do you have  any problem in contacting them ?  bobby  doug leach @ ect  08 / 14 / 2000 07 : 45 am  to : douglas s parsons / enron _ development @ enron _ development  cc : marc de la roche / hou / ect @ ect , bobby  subject : re : cairn gas purchase bid  i strongly disagree with the pricing and structure of your non - binding offer  to cairn . this reminds me of the debacle in brazil . you should have contacted  vince kaminski ' s research group as we talked about before an offer was made .  this is a bad deal .  douglas s parsons @ enron _ development  08 / 12 / 2000 01 : 51 am  to : doug leach @ ect , marc de la roche @ ect  cc :  subject : cairn gas purchase bid  doug & marc ,  fyi , please let me know if you think we ' re totally off base . i appreciate  your help .  regards ,  doug  - - - - - - - - - - - - - - - - - - - - - - forwarded by douglas s parsons / enron _ development on  08 / 12 / 2000 01 : 48 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  douglas s parsons  08 / 11 / 2000 06 : 24 am  to : bobby farris / enron _ development @ enron _ development  cc : f b virani / enron _ development @ enron _ development , ujjwal  dey / enron _ development @ enron _ development , nilesh  subject : cairn gas purchase bid  bobby ,  after meeting with cairn today in delhi , my perception is that our offer was  received well . they were more open and relaxed then they were on wed .  morning and made several encouraging comments about our price range , ( once we  talked through the price movements ) , and the seriousness of our gas related  activities on the west coast of india , in light of the ioc agreement . i  think the overall package is attractive to them and no serious objections  were raised . we did talk to some extent about the guarantees , but we didn ' t  get too far and they ' re willing to accept at this point that what ' s  acceptable to the lng suppliers , should be suitable for their needs .  however , they would like to understand the corporate structure and assets of  enron energy marketing a little better and i told them i would get back to  them on that point .  david and ajay were up in hazira yesterday looking at some property for their  gas treatment facility , which apparently is across the road from pipeline  access . while there they went and looked at shell ' s proposed lng site after  walking the last 1 km , inaccessible to their 4 wd vehicle and not surprisingly  found a beach .  in summary , here is what we offered on a non - binding basis :  six year production plateau  85 % top  $ 3 . 67 / mmbtu net , at a base of $ 18 / bbl brent , with point of sale at the  tail - end of the gas processing plant  floor & cap of $ 15 . 50 - $ 27 . 00 / bbl  price movement : + / - $ 1 . 00 / bbl from the $ 18 / bbl base price ( on a 3 mo .  rolling average ) equals + / - $ 0 . 145 / mmbtu fixed on a quarterly basis  guarantees : same protection we ' re providing the lng suppliers under the  trust retention account  i appreciate everyone ' s help in submitting this offer .  thanks ,  doug\",0\n\"Subject: offer to rakish ( sp ? )  vince ,  norma called and said that rakish had requested stock options instead of a  signing bonus . she suggested giving $ 30 k worth of options which would vest  over a 3 year period , and i told her that i am sure this would be fine with  you . it should cost us less than the offered cash bonus of $ 20 k .  - - stinson\",0\n\"Subject: re : saturday  jana ,  saturday looks good . i shall be involved in job interviews at enron  all saturday and should be done by 5 p . m .  we can go the angelica movie center . i shall check the program  tonight and call you tomorrow to review the options .  vince  jlpnymex @ aol . com on 06 / 01 / 2000 10 : 56 : 38 am  to : vkamins @ enron . com  cc :  subject : saturday  vince ,  how are you ? are we still on for saturday ?  let me know what movie looks good . we saw \"\" mi 2 \"\" and really liked it . we  also saw \"\" small time crooks \"\" and it was slow .  jana\",0\n\"Subject: request submitted : access request for stewart . range @ enron . com  stinson ,  he is looking for blanket approach to our disk , both read and write .  is it legitimate ?  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 11 / 20 / 2000  03 : 35 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  arsystem @ mailman . enron . com on 11 / 20 / 2000 02 : 37 : 25 pm  to : vince . j . kaminski @ enron . com  cc :  subject : request submitted : access request for stewart . range @ enron . com  you have received this email because you are listed as an alternate data  approver . please click  approval to review and act upon this request .  request id : 000000000007876  approver : stinson . gibner @ enron . com  request create date : 11 / 20 / 00 2 : 36 : 29 pm  requested for : stewart . range @ enron . com  resource name : \\ \\ enehou \\ houston \\ common \\ research - [ read / write ]  resource type : directory\",0\n\"Subject: more hedge effectiveness testing  vince ,  have you seen the latest version of our article ? in a nutshell , it  establishes both what ' s right and what ' s wrong with r - squared / regression .  essentially , r - squared is fine provided that the amount of the derivative  optimal , but otherwise it makes little sense .  please let me know what you think about this .  regards ,  andy  andrew kalotay associates , inc .  ( 212 ) 482 - 0900  andy @ kalotay . com  visit our web - site http : / / www . kalotay . com  - fasl 33 article . pdf\",0\n\"Subject: vacation day feb . 16  shirley ,  please put me down for a vacation day of feb . 16 .  thanks ,  stinson\",0\n\"Subject: california power 1 / 19 / 00  1 . legislation passes - short - term measures , very long - term measures  as we said yesterday , sb - 7 x passed the california state senate easily . the  bill gives the state the immediate authority to purchase power via the  department of water and resources until february 2 nd . the department will  have $ 400 million available to finance power purchases , but there  expectations that these costs could easily rise to $ 1 billion by next week .  ab - 1 x has evolved into a longer - term solution and in its current form , would  authorize the department of water and resources to enter into long - term  contracts ( as opposed to the 15 day contracts in sb - 7 x ) to buy power at a  price cap of 5 . 5 cents per kw / h . this legislation is not expected to pass  today and will likely be changed considerably during the upcoming two week  period covered by sb - 7 x , when negotiations between generators , the utilities ,  and the state are likely to resume .  a second piece of legislation under - - sb 6 x - - has created uncertainty in the  markets . this legislation will create a california public power authority  with bond issuance authority . the uncertainty concerns whether the new  authority will address the problem of the $ 12 billion in outstanding debt  owed by the utilities . the current text of the legislation focuses only on  longer term measures such as expanding generation capacity and improving  efficiency . yet the legislation also says \"\" the authority may issue bonds ,  exercise power of eminent domain , and enter into joint power agreements and  buy , own , and sell land and facilities necessary for the financing of a  project . \"\" the general nature of this language leaves open the possibility of  either issuing bonds to finance past debts , or using eminent domain or the  bond authority to finance the utilities as they enter into a ch . 11 proceeding .  2 . default update  3 . bush  as we reported on wednesday , the bush administration continues to demonstrate  little interest in getting involved\",0\n\"Subject: re : joint probabilities  bob -  thanks for your help on this - it is exactly what we were looking for . i  also wanted to let you know that i will be revising some of these numbers and  asking you to rerun the probability table . i hope that this is not a problem .  thanks again  bob lee @ enron  08 / 31 / 00 11 : 00 am  to : michael anderson / hou / azurix @ azurix  cc : zimin lu / hou / ect @ ect , vince j kaminski / hou / ect @ ect , stinson  gibner / hou / ect @ ect  subject : re : joint probabilities  the attached spreadsheet has been updated to include probabilities for  exceeding stated stock prices in each year .  these numbers represent the probability for all combinations of rab ratio and  exchange rate . for example , 2003 shows a stock value of 7 . 38 for a rab = 1 . 1  and fx = 1 . 5 . we previously showed the prob of exceeding a stock price of  7 . 38 , and rab > 1 . 1 , fx > 1 . 5 as 14 % . the probability of exceeding 7 . 38 for  all possible values of rab and fx is 35 % ( interpolating between 40 % and 27 %  in the price table ) .  bob\",0\n\"Subject: agenda for mission possible meeting  our agenda for the october 16 meeting starting at 10 : 00 a . m . has been  attached for your review along with david ' s draft . as you will see , there is  a great deal to cover in a very limited amount of time .  cheers ,  tana / daniel\",0\n\"Subject: followup  patricia ,  i have forwarded your resume along with an introductory note to kerry  cooper , don fraser , and malcom richards of the a & m finance department .  please give them a phone call and tell them that i suggested you call .  they are all very nice folks and would be happy to help you i am sure .  good luck ,  john  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: re : tom costantino  i ' ll set him up on an interview schedule . thanks . jeff  vince j kaminski  01 / 29 / 2001 04 : 01 pm  to : jeffrey a shankman / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : tom costantino  jeff ,  it seems that nymex will not make a decision any time soon  or they rejected tom . i think the latter is the case .  tom is looking for a trading or origination job with enron .  i think that we can use his expertise here .  vince  from : jeffrey a shankman on 01 / 29 / 2001 03 : 50 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : tom costantino  i thought he was in the running for the president position , after pat died .  he phoned me today - - did he indicate to you in what he is interested ?  jeff  vince j kaminski  01 / 29 / 2001 02 : 12 pm  to : jeffrey a shankman / hou / ect @ ect , greg whalley / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , john j lavorato / corp / enron  subject : tom costantino  jeff , greg and john ,  our old friend tom costantino is interested in coming back  to enron . it seems that his move to nymex either will not happen  or will not happen for some time .  you can contact him at home :  phone : ( 713 ) 860 8687 ( h )  vince\",0\n\"Subject: re : interviews  vince ,  no problem , i know hr can slow the process down .  marshall brown  vice president  robert walters associates  phone # : 212 - 704 - 0596  fax # : 212 - 704 - 4312  marshall . brown @ robertwalters . com  www . robertwalters . com  > - - - - - original message - - - - -  > from : vince . j . kaminski @ enron . com [ smtp : vince . j . kaminski @ enron . com ]  > sent : friday , april 06 , 2001 5 : 50 pm  > to : marshall . brown @ robertwalters . com  > cc : vince . j . kaminski @ enron . com  > subject : re : interviews  >  >  > marshall ,  >  > sorry for a delay in responding to you .  > my hr people were asked to get in touch with you re  > the candidates .  >  > vince  >  >  >  >  >  > marshall brown on 03 / 27 / 2001 02 : 36 : 12  > pm  >  > to : \"\" ' vince kaminski ' \"\"  > cc :  > subject : interviews  >  >  > vince ,  > i had two candidates speak with zamin lu on 3 / 14 / 01 and 3 / 16 / 01 .  > ( renshi zhang and bill koures respectively ) . i know you were in london  > last  > week . if you could please give me some feedback ( either positive or  > negative ) as soon as possible , i would appreciate it .  > regards ,  >  > marshall brown  > vice president  > robert walters associates  > phone : 212 - 704 - 0596  > fax : 212 - 704 - 4312  > marshall . brown @ robertwalters . com  >  >  >  > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  > caution : electronic mail sent through the internet is not secure and could  > be intercepted by a third party .  >  > this email and any files transmitted with it are confidential and  > intended solely for the use of the individual or entity to whom they  > are addressed . if you have received this email in error please notify  > the system manager .  >  > this footnote also confirms that this email message has been swept by  > mimesweeper for the presence of computer viruses .  >  > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  >  >  >\",0\n\"Subject: real options 2000  ?  please find enclosed the complete conference agenda for real options 2000 :  capitializing on uncertainty and volatility in the new millennium ,  scheduled in chicago , il on september 25 - 26 , 2000 ( interactive  workshops available the 24 th , 26 th ( evening ) & 27 th ) . please  review this information and feel free to forward to any colleagues  or associates that would have an interest in this topic with my contact  information .  if you have questions , or wish to register yourself or any colleagues ,  ( three or more receive a discount ) , do not hesitate to call me  directly @ 212 . 885 . 2695 . otherwise , i will be in contact in a couple  of days to follow - up .  best regards ,  neda zoko  - real options sept . pdf\",0\n\"Subject: one page background and position statement  guys ,  attached are the \"\" one - page \"\" background / position statements that i have  received to date ( with the exception of mike korpi ' s which i left at home ) .  if you haven ' t provided me with this material please do so asap and if you  did please give my any edits you might like to make to the attached pages .  thanks  john  p . s . its rainey and 60 ' s this week but we ' ve put in an order for 70 ' s and  sunshine for next week ' s conference .  - bennett _ stewart . doc  - david palumbo current bio . doc  - g _ ferrell . doc  - jmartinbiosketch . doc  - m _ froehls . doc  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: bonds  the difference is $ 4 , 391 . you can send more if you would like to add to  the tax - free money fund .  thank you  keith hazlewood  edward jones  p . o . box 9479  the woodlands , tx 77387\",0\n\"Subject: correction : interim report to gary hickerson for ag trading  apologies . please note that i pasted the wrong graph in the previous version  i sent . this is the correct version .  thanks ,  kate  - - - - - - - - - - - - - - - - - - - - - - forwarded by kate lucas / hou / ect on 12 / 22 / 2000 02 : 56 pm  - - - - - - - - - - - - - - - - - - - - - - - - - - -  kate lucas  12 / 22 / 2000 02 : 27 pm  to : vince j kaminski / hou / ect @ ect  cc : vasant shanbhogue / hou / ect @ ect , nelson neale / na / enron @ enron , mauricio  mora / na / enron @ enron  subject : interim report to gary hickerson for ag trading  vince ,  please find attached the interim report on agricultural commodity trading for  gary hickerson . your comments are welcome as we would like to send this to  gary as soon as possible .  regards ,  kate  ext 3 - 9401\",0\n\"Subject: re : the garp 2001 convention  andreas :  here it is :  vincent kaminski  managing director - research  enron corp .  1400 smith street  room ebl 962  houston , tx 77002 - 7361  phone : ( 713 ) 853 3848  fax : ( 713 ) 646 2503  e - mail : vkamins @ enron . com  vince  \"\" andreas simou \"\" on 09 / 15 / 2000 09 : 11 : 00 am  to :  cc :  subject : the garp 2001 convention  dear garp speak  ?  i am writing to request some information regarding the garp 2001 convention .  ?  can you please furnish me with your full postal address so that i can send  you a copy of the garp brochure in the near future .  ?  i look forward to your response in due course .  ?  kind regards  ?  andreas  ?  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  andreas simou  garp 2001 - conference producer  tel ? + 44 ( 0 ) 20 7626 9301  fax + 44 ( 0 ) 20 7626 9900\",0\n\"Subject: re : address  shirley ,  they are from the uk , arthur andersen . i could meet with them on monday .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 08 / 31 / 2000  02 : 51 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  allan . roberts @ uk . arthurandersen . com on 08 / 31 / 2000 12 : 08 : 25 pm  to : vince . j . kaminski @ enron . com  cc :  subject : re : address  i trust things are well in houston .  the reason for contacting you is to inquire as to your schedule during the  week  commencing monday 18 th september . i and several of my colleagues would very  much like to meet up with you , however , we are tied up at a large conference  between tuesday through to friday of that week .  is there any chance in meeting with you on monday 18 th ? if so , i will brief  you  more fully on our people and will contact you to discuss an agenda .  regards , allan  * * * * * * * * * * * * * * * * * * * internet email confidentiality footer * * * * * * * * * * * * * * * * * * *  privileged / confidential information may be contained in this message . if you  are not the addressee indicated in this message ( or responsible for delivery  of  the message to such person ) , you may not copy or deliver this message to  anyone .  in such case , you should destroy this message and kindly notify the sender by  reply email . please advise immediately if you or your employer do not consent  to  internet email for messages of this kind . opinions , conclusions and other  information in this message that do not relate to the official business of my  firm shall be understood as neither given nor endorsed by it .\",0\n\"Subject: gene humphrey / mark palmer  vince :  do you have email addresses for gene and mark palmer ?  i look forward to seeing you next week .  regards ,\",0\n\"Subject: re : your guest for financial mathematics  amy ,  thanks . steve will contact you directly to give you all  the details .  vince  \"\" amy lamonsoff \"\" on 06 / 22 / 2000 05 : 32 : 49 am  to :  cc :  subject : your guest for financial mathematics  hello -  i hope you are well today . i understand that you would like to bring steve  leppard as your guest for financial mathematics . could you please provide me  with his complete contact details and which training course he will be  attending .  ?  ?  many thanks -  amy  ?  ps - hope you enjoyed risk 2000 in boston and it was nice to see you again .\",0\n\"Subject: re : fw : fw : get together this coming tuesday ?  kim ,  i talked to dale early this morning and suggested that we meet during his  next trip to houston  when we decide on timing of our project .  vince  from : kimberly watson / enron @ enronxgate on 05 / 01 / 2001 08 : 41 am  to : vince j kaminski / hou / ect @ ect , eric gadd / et & s / enron @ enron  cc :  subject : fw : fw : get together this coming tuesday ?  vince ,  if dale comes in to see you , it looks like eric might be available to meet  with you as well . it would be a good opportunity for eric to meet dale and  get a little more information on his model . eric ' s phone number is x 54713 .  thanks ,  kim .  - - - - - original message - - - - -  from : gadd , eric  sent : monday , april 30 , 2001 8 : 12 pm  to : watson , kimberly  subject : re : fw : get together this coming tuesday ?  works for me . give me a call at 9 : 30 .  from : kimberly watson / enron @ enronxgate on 04 / 30 / 2001 05 : 09 pm  to : eric gadd / et kaminski , vince  subject : re : get together this coming tuesday ?  dale ,  please , call me on tuesday . my morning schedule is full but i am open in the  afternoon .  vince  \"\" dale m . nesbitt \"\" on 04 / 30 / 2001 01 : 51 : 21 am  please respond to  to : \"\" vincent kaminski \"\" , \"\" kimberly s . watson \"\"  cc :  subject : get together this coming tuesday ?  vince / kim :  i am flying to houston tonight and wondered if it would fit one or both of  your schedules to get together this coming tuesday sometime for 1 / 2 hour or  so . i really want to reinitiate the conversations marketpoint was having  with john goodpasture and you , and he said either or both of you were the  right people to continue after his responsibility shift . john was quite  positive about the idea of enron acquiring marketpoint narg through license ,  and he implied that one or both of you would be carrying the ball in that  direction after he handed it to you .  would this coming tuesday morning at 930 am be a good time for you guys ? if  so , please give me an email shout at the above address or leave a message on  my voicemail at ( 650 ) 218 - 3069 . i think you will be truly impressed with the  scope and progress we have been able to make with both the short run narg  and the long run narg in which you were interested ( not to mention our power  model ) . the progress is noticeable since you saw it . both long and short  term narg are having quite an impact on a number of gas decisions at the  moment ranging from venezuelan lng , north american lng import terminals and  term , gas basis calculations , trading support , power plant development ,  gas - to - power price spreads in key markets , veracity of heat rate trades ,  bank financings , storage field evaluation , and which new pipelines we can  expect to see enter and which are dogs .  i really hope we can fit it in and get our discussions moving in a mutually  productive direction again . i think narg can help you become even more  successful , and i look forward to working with you .  we have a new office address and new phone number as well . ( we move in may  1 . )  altos management partners  95 main street , suite 10  los altos , ca 94022  ( 650 ) 948 - 8830 voice  ( 650 ) 948 - 8850 fax  ( 650 ) 218 - 3069 cellular  give the phones a week or so to get \"\" debugged \"\" and then switch over .  dale\",0\n\"Subject: enron recruiting / mscf speaker series  vince ,  pierre has informed me that ( if you can so co - ordinate with alison bailey )  you would like to move the recruiting event on campus for comp finance to  nov 3 in order to co - ordinate with pierre ' s invitation to speak in the mscf  speaker series the same day . i contacted our recruiting center about  availability on that date and have forwarded below his response . let me  know how else i can help and , again , thanks for your kind words about the  program and you obvious interest in meeting with us .  rick  richard l . bryant  director , computational finance program  carnegie mellon university  graduate school of industrial administration  pittsburgh , pa 15213  phone / fax ( 412 ) 268 - 4592 / ( 412 ) 268 - 6837  http : / / fastweb . gsia . cmu . edu / mscf  - - - - - original message - - - - -  from : \"\" ken keeley \"\"  to : \"\" rick bryant \"\"  cc : \"\" sally e gould \"\"  sent : thursday , august 03 , 2000 1 : 32 pm  subject : re : fw : mscf speaker series  enron currently has 8 interview rooms scheduled on december 11 , 2000 . . . as  we have 10 interview rooms available to us and as on 11 / 3 we currently have  nine rooms booked , if enron wants to move all 8 schedules to 11 / 3 , we  probably will not be able to host them on - campus unless [ the firm currently  holding the rooms ] moves off ( and there is a possibility of that - this is  like a game of dominos ) . however , enron could interview off campus , but  that is not as convenient for the students and it increases the cost for the  employer . if enron wants to move only one or two schedules to 11 / 3 for just  comp finance , we would find a way to accomodate them . our recruiting  coordinator , sally gould , will do everything she can to make this work for  enron . please suggest that enron re - contact her as soon as they know what  their preferences are . alison knows how to reach her .  > ken keeley , ph . d .  > director , career opportunities center  > graduate school of industrial administration  > carnegie mellon university  > tel : 412 - 268 - 3092  > fax : 412 - 268 - 4146  >\",0\n\"Subject: re : livelink test for research  moyez lallani has agreed to give a presentation on livelink , the application  which will replace the research projects tracking database at next thursday ' s  group meeting . let me know if there is any problem with this .  thanks ,  stinson  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 03 / 02 / 2001  07 : 45 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : moyez lallani / enron @ enronxgate on 03 / 02 / 2001 07 : 32 am  to : stinson gibner / hou / ect @ ect  cc : vasant shanbhogue / hou / ect @ ect  subject : re : livelink test for research  room 30 cl on thursday 3 / 8 / 2001 at 11 : 30 . i have it recorded in my calendar .  i \u0001 , ll bring a laptop . please let me know if there is a change of plans .  thanks .  moyez lallani  enron networks  713 - 345 - 3683  moyez . lallani @ enron . com  - - - - - original message - - - - -  from : gibner , stinson  sent : friday , march 02 , 2001 7 : 07 am  to : lallani , moyez  cc : shanbhogue , vasant  subject : re : livelink test for research  moyez ,  thanks , i will try and collect the information today . vasant and i were  thinking that it would make sense to let people try the application under the  test environment for a few weeks . then we can incorporate any additional  suggestions and move to production around the first week in april .  our meeting room does have a screen and network connection , and we can  profide an lcd projector as well . how about thursday of next week ?  thanks ,  stinson  from : moyez lallani / enron @ enronxgate on 03 / 01 / 2001 04 : 35 pm  to : stinson gibner / hou / ect @ ect  cc :  subject : re : liveline test for research  stinson ,  sorry to have to do this to you but i need some additional information in  order to add these users to the research projects group . please use the  attached template to capture the information needed and forward to me at your  convenience . also , the group has only been set up in the test environment .  do you want to add the users to the test environment or are you ready to  migrate to production ?  as far as the demo is concerned , i \u0001 , ll be happy to accommodate your group .  how many people do you expect at the demo and does the room have a display  screen and network connection ? let me know which thursday you would like me  to conduct the demo and i \u0001 , ll be there .  >  moyez lallani  enron networks  713 - 345 - 3683  moyez . lallani @ enron . com  - - - - - original message - - - - -  from : gibner , stinson  sent : thursday , march 01 , 2001 4 : 24 pm  to : lallani , moyez  subject : liveline test for research  moyez ,  can you add access to the following users for the livelink research projects  database ? also , would you be available to give a short demonstration and  tutorial on how to use livelink for our group ? we hold a lunch meeting  each thursday from 11 : 30 - 1 : 00 in 30 cl at which there is usually a short  presentation on a topic of interest . i think it would be very useful for the  group to have an overview of how to use the tool before everyone jumps into  it . the presentation can be quite informal . let me know if you would be  available in the next couple of weeks .  - - stinson  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 03 / 01 / 2001  04 : 12 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  s @ _ - \u0001 g _ , x ? \u0003 ~ o ? ' ] s ? _ _ _ _ s ? \b \u000f _ ? * ? ? ? j ? ? \u000f _ \"\" ? zn _ ? ? _ y _ 7 d ? [ t ? ? _ yn ? [ . _ _ _ \"\" ? * ? ? _ b ? ; _ _ _ y _ ? \u000f _  , ? _ ?\",0\n\"Subject: re : workshop  helyette ,  i shall be glad to join you .  vince  gemanix @ aol . com on 02 / 12 / 2000 11 : 27 : 56 am  to : vkamins @ enron . com  cc :  subject : workshop  dear vince ,  i would be delighted if you agreed to share with me  a one - day workshop before a major icbi conference  in berlin , on june 19 . the topics would be similar ; we  may add real options . could you answer me before  tuesday ?  kind regards  helyette\",0\n\"Subject: weather person for london egm  we need to set a further round of inteviews for tony hamilton . can everyone  let gloria solis know their availability over the next 2 weeks . below are  the results from our initial interviews and the candidate ' s resume  thanks  jen  - - - - - - - - - - - - - - - - - - - - - - forwarded by mike a roberts / hou / ect on 12 / 15 / 2000  10 : 16 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  tony hamilton on 12 / 15 / 2000 02 : 11 : 58 am  please respond to tony hamilton  to : mike . a . roberts @ enron . com  cc :  subject : meteorologist / forecaster  dear mike  i would like to apply for the above position as advertised in \"\" earthworks \"\" and  enclose my full cv ( in word 97 / 00 format ) in support .  i am currently a research fellow with ucl conducting research , and building  forecasting models for the statistical prediction of north atlantic sea  surface  temperatures and other climatic parameters at long leads ( 1 - 12 months ahead of  forecast period ) .  i have recently applied this model to the north sea in order to aid long - lead  forecasts of fish stocks ( see sap - symposium , 4 - 6 december , bergen , norway ) ,  and  have recently been applying similar models to the north atlantic oscillation ,  an  atmospheric phenomena which is strongly correlated with winter climate over  uk / norway and nw europe , particularly temperatures , rainfall and windspeeds  ( see  enclosed poster which was presented recently at an international conference on  the nao in vigo , spain )  as you will see from my cv , i have 2 + years experience consulting in several  areas of geoscience to the oil , gas and minerals industries and have good  programming skills , both on unix machines and on pcs .  i am particularly keen to apply my skills in the commercial sector and  initiate  a permanent career path .  i look forward to the opportunity of hopefully discussing my skills further  with  you in the near future .  yours sincerely  tony hamilton  * dr . tony hamilton *  * research fellow *  * benfield greig hazard research centre *  * department of space and climate physics *  * university college london *  * holmbury st mary *  * dorking *  * surrey rh 5 6 nt *  * *  * e - mail : th @ mssl . ucl . ac . uk *  * telephone : + 44 ( 0 ) 1483 560107 *  * fax : + 44 ( 0 ) 1483 278312 *  * web - site : http : / / forecast . mssl . ucl . ac . uk / *  - th _ cv . doc  - nao _ posterv 2 . gif  - - - - - - - - - - - - - - - - - - - - - - forwarded by jennifer fraser / hou / ect on 08 / 01 / 2001  13 : 11 - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : jennifer fraser 21 / 12 / 2000 07 : 32  to : jeffrey a shankman / hou / ect @ ect , chris mahoney / lon / ect @ ect , mike a  roberts / hou / ect @ ect , vince j kaminski / hou / ect @ ect  cc : stewart peter / lon / ect @ ect , niamh clarke / lon / ect @ ect  subject : weather person for london egm  folks :  we interviewed three candidates . one of the three ( tony hamilton ) seems to  be a very good fit within the enron culture and values .  recommended next steps  vince , mike and jeff interview tony via video conference or avistar  tony hamilton key strengths  quick thinker  good teams skills  driven - will be able to get the project off the ground quickly  has a commercial attitude  sees \"\" the big picture \"\"  tony hamilton is available for follow up interviews the first week of january .  thanks  jen\",0\n\"Subject: wharton program for business journalists  hi greg !  here is the information regarding the dec 13 th event at wharton . wharton is  beside itself with excitement at your acceptance , and communicated that with  jeff skilling at his visit there this past thursday .  they ' re also very interested in discussing their webi program with you and  would like to arrange to do that the day of your evening presentation , or  perhaps the following day , whichever suits your schedule . this was also  discussed with jeff skilling - - he is clearly interested in the program , but  will be especially looking to your input , along with that of vince kaminski ,  jeff shankman and me , in determining enron ' s decision to participate . as i  mentioned previously , vince , jeff and i think enron ' s involcvement with webi  holds very positive potential . financially , it involves a contribution of  $ 250 , 000 for 4 years .  please see the request for your \"\" bio \"\" and desired inclusion of program  materials , as well as the contact at wharton , toward the end of the message  below .  let me know by email or voice mail ( 3 - 6117 ) how university affairs can  further these efforts .  thanks !  - - christie .  - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 11 / 04 / 2000  10 : 20 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" baltes , michael \"\" on 11 / 02 / 2000 12 : 29 : 05 pm  to : \"\" ' christie _ patrick @ enron . com ' \"\"  cc : \"\" piazze , thomas \"\" , \"\" spigonardo , joanne \"\"  subject : wharton program for business journalists  christie ,  we are delighted that greg whalley , ceo of enron bandwidth business , has  agreed to be our featured dinner speaker at the upcoming wharton seminars for  business journalists on wednesday , december 13 , 2000 .  per instructions from tom piazze , i ' ve attached some information regarding  our seminars for business journalists , now in its 32 nd year  http : / / www . wharton . upenn . edu / media / journalists / . as i ' d mentioned in our  conversation a few weeks ago , we have a leader from business or government  speak each year at our sponsor ' s dinner , which is attended by all of the  business journalists ( about 50 ) and representatives from our corporate  sponsors ( lists attached below ) . our last 3 speakers were mark walsh ,  chairman of vertical net ; jason olim , ceo of cdnow ; and tom siebel , ceo of  siebel systems .  about 80 - 90 people are expected to attend this year ' s event . cocktails ,  dinner and mr . whalley ' s presentation will be held on wednesday , dec . 13 ,  from 6 : 00 to 9 p . m . in wharton ' s steinberg conference center , 38 th & spruce  streets , on the university of pennsylvania campus .  as tom may have mentioned , this audience likes to hear about interesting  industry trends , or something companies are doing that is leading edge , and  hasn ' t really hit the mainstream . past experience has shown that \"\" canned \"\"  corporate presentations do not go over so well with this group . however , you  are certainly welcome to provide literature to the audience or other  materials that may be appropriate . i would like to have a conversation with  you about your thoughts on a specific topic as we get closer to the event .  in the meantime , we would like to have mr . whalley ' s bio and any other  information you ' d like us to include in the course materials for the  journalists . please try to keep this to about 2 - 3 pages , given all of the  other material they ' ll have in their binders .  you may contact me or my colleague , joanne spigonardo , with any questions .  joanne is handling the logistics for the event , so please direct those types  of questions directly to her . she ' s at 215573 - 8599 .  thanks again , and i hope you can join us on the 13 th .  best regards ,  mike  > >  - pub & namelistbjs 200 . doc  - final sponsor list . doc\",0\n\"Subject: re : current address for brad romine  vince :  i have left brad two messages at this cell phone # - he has not responded .  any suggestions ?  vince j kaminski  03 / 16 / 2000 08 : 58 am  to : shirley crenshaw / hou / ect @ ect  cc :  subject : re : current address for brad romine  shirley ,  i have his cell phone : 650 814 9966 .  vince  shirley crenshaw  03 / 13 / 2000 02 : 15 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : current address for brad romine  vince :  do you have a current address for brad ?  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 03 / 13 / 2000  02 : 14 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  carol coats  03 / 13 / 2000 01 : 59 pm  to : shirley crenshaw / hou / ect @ ect  cc :  subject : current address for brad romine  shirley , is there any possibility that you might have an updated current  address for brad ? if not , would vince know ?  thanks much ,  carol\",0\n\"Subject: cost sharing of subscription to poten ' s fuel oil report  all :  ideally we will split this cost evenly among as many p & l ' s as need the  report , minimizing everyone ' s cost by sharing a single subscription .  please tell me whether you can justify sharing the cost and if so , the rc  code & co # for me to allocate your cost share . please indicate your choice  of the three cost choices .  attached note below clarifies poten ' s proposal on the $ 10 , 000 / yr subscription .  essentially we have three choices :  1 . for $ 2700 / yr , the standard edition ( 11 issues , excluding the monthly  \"\" special feature \"\" article )  2 . for $ 3800 / yr the premium edition , ( standard edition plus the monthly  \"\" special feature \"\" article , as in three attached examples )  3 . for $ 10 , 000 / yr the premium edition plus quarterly forward price view for  36 months .  poten explains that 85 % of their subscribers take the premium service . no  one has ever asked for the $ 10 , 000 / yr long - term price forecast . i have an  interest in a longer term price forecast and hope that it may be useful to  others in the corporation .  the example copies attached include the following special feature articles :  99 feb - analysis of resid trades in the eastern mediterranean  99 sep - patterns of fuel oil trade in the western hemisphere  99 dec - analysis of the resid market in chile  one either takes all or none of them for the incremental $ 1100 / yr . some may  be useless , others perhaps quite valuable . your call .  regards  guy  \"\" axelrod , larry \"\" on 02 / 03 / 2000 02 : 43 : 59 pm  to : guy dayvault / corp / enron @ enron  cc : fuel share group  subject : enron / fuel oil service  dear guy ,  it was a pleasure speaking to you today .  as discussed , poten is pleased to offer enron the following two - part  fuel - oil related service :  ( 1 ) a one - year subscription to poten ' s fuel oil in world markets ( premium  edition ) , and  ( 2 ) a forecast of delivered crude prices and fuel oil prices in northwest  europe ( brent and 1 % s fob fuel oil ) , the mediterranean ( bonny light and 1 % s  fob fuel oil ) , and singapore ( dubai and hsfo - 380 cst ) . the forecasts would  be provided four times a year and provide average quarterly price  projections over the forward 36 - month period . the forecast prices would be  accompanied by brief textual commentary . the forecasts would be issued over  the course of the one - year fuel oil in world markets subscription period .  the fee for the two - part service is us $ 10 , 000 , payable in two equal  installments  i look forward to hearing from you .  best regards ,  larry  l . axelrod  phone 212 - 230 - 2038  fax 212 - 355 - 0295  doug leach @ ect  02 / 03 / 2000 01 : 52 pm  to : guy dayvault / corp / enron @ enron  cc :  subject : re : poten ' s fuel oil report  - - - - - - - - - - - - - - - - - - - - - - forwarded by doug leach / hou / ect on 02 / 03 / 2000 01 : 52 pm  - - - - - - - - - - - - - - - - - - - - - - - - - - -  dale  snyder  02 / 03 / 2000 01 : 44 pm  to : doug leach / hou / ect @ ect  cc : david j botchlett / hou / ect @ ect , ron irvine / lon / ect @ ect , niamh  clarke / lon / ect @ ect  subject : re : poten ' s fuel oil report  we have an interest in sharing in the expenses of this information the only  question being which information and at what cost . can see what the monthly  newsletter describes which is relatively cheap but what considerable  information does one get for the usd 10 k yr report ? how many ways will we  split the costs ? psl advise and thx  doug leach  02 / 03 / 2000 07 : 08 am  to : dale snyder / hou / ect @ ect  cc :  subject : poten ' s fuel oil report  i have no interest . do you ?  - - - - - - - - - - - - - - - - - - - - - - forwarded by doug leach / hou / ect on 02 / 03 / 2000 07 : 08 am  - - - - - - - - - - - - - - - - - - - - - - - - - - -  guy dayvault @ enron  02 / 02 / 2000 03 : 35 pm  to : niamh clarke / lon / ect @ ect , doug leach / hou / ect @ ect , margaret  carson / corp / enron @ enron  cc :  subject : poten ' s fuel oil report  niamh & doug & margaret :  i want to chat about this and will call you , but the essence is :  can you justify sharing the cost of subscribing to poten ' s monthly fuel oil  report ?  attached below are 3 example copies that include their standard 12 month  price forecasts . the cost is $ 3800 / yr .  as an added service for a total of $ 10 , 000 / yr , poten will include a quarterly  update of their 36 month forward view on crude oil and fo prices with a brief  justification for their view . this would include the standard monthly price  forecast for the prompt 12 months and quarterly prices for the following 24  months for far east , med and nwe . ( i expect a more descriptive email from  poten , but i think this is the essence of their \"\" custom \"\" offer . )  the example copies attached include the following special features :  99 feb - analysis of resid trades in the eastern mediterranean  99 sep - patterns of fuel oil trade in the western hemisphere  99 dec - analysis of the resid market in chile  these type of features are produced monthly and run a spectrum of subjects  related to fuel oil .  i have a hard time justifying the cost of the newsletter and the price  forecast without the considered recommendation of colleagues such as yourself  regarding the utility of such a report . the best way to show your  recommendation is with money . if it is not worth any money to anyone else in  ene , then i have to question its validity and utility to me as well . doug ,  would this perhaps be useful to any other business units that have exposure  to fo prices ?  best regards  guy  - - - - - - - - - - - - - - - - - - - - - - forwarded by guy dayvault / corp / enron on 02 / 02 / 2000  03 : 05 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" axelrod , larry \"\" on 01 / 24 / 2000 03 : 38 : 53 pm  to : guy dayvault / corp / enron @ enron  cc : fuel share group  subject : poten ' s fuel oil report  guy ,  it was a pleasure speaking to you today .  three samples of fuel oil in world markets are attached .  let me know if you think the report could be useful to you .  regards ,  larry  phone 212 - 230 - 2038  > > >  - 99 dec . doc  - 99 sep . doc  - 99 feb . doc\",0\n\"Subject: new information about transfers  hi , vince ,  i had a chance to talk to my direct boss tom moore ( director ) about the  possibility of transfers to research group .  he had a positive reaction , he thinks me is a good fit for the research .  hope this is useful information .  regards  ningya  ( 3 - 5248 )\",0\n\"Subject: enside newsletter  good afternoon , mr . kaminski !  thank you for agreeing to an interview for a business unit article for the  next enside . molly magee spoke very enthusiastically about you and your  group .  i am on your calendar for thursday , march 1 at 10 am . i will bring a tape  recorder and plan to finish in 30 - 45 minutes . attached , please find some  possible questions / topics for us to discuss .  please call me if you have any questions .  thanks again .  kathie grabstald  ews public relations  x 3 - 9610\",0\n\"Subject: reporting lines  vince  i ' ve just had a chat with richard , who feels strongly that the natural  synergies between , and independence of , research and structuring will be best  served if i report to tani .  i expressed my concerns that i want to keep a strong link with :  1 . accountability to the trader sense of urgency , and  2 . traders ' willingness to spend money where necessary .  richard suggested that we have a strong \"\" dotted line \"\" of reporting in to him ,  and that he will be available to support these areas . we ' ll meet regularly  to keep richard in the loop .  i filled richard in on the fact that i wish to change the nature , not just  the size , of the research group , which will involve significant changes in  headcount and investment in hardware / software .  i ' ve no doubt that my main concerns of accountability and budget support will  be met whether i report to richard formally or informally .  tani has indicated that she ' d be prepared to have research report to her if  required .  all the best ,  steve\",0\n\"Subject: re : support for exotica  steve ,  i am calling anjam to give him a deadline regarding move to houston .  if he decides to stay in houston , you should meet with him to convey  the concerns regarding his performance .  vince  steven leppard  10 / 13 / 2000 03 : 50 am  to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , dale  surbey / lon / ect @ ect , tani nath / lon / ect @ ect  cc : paulo issler / hou / ect @ ect , sharad agnihotri / lon / ect @ ect , zimin  lu / hou / ect @ ect  subject : support for exotica  all  sharad ' s investigations of exotica ' s status in london have turned up a very  confused state of affairs . this isn ' t being helped by the fact that :  1 . anjam is rarely at his desk , and can ' t be found anywhere in the building .  2 . when he is around he isn ' t willing or able to provide all the information  sharad might need to support exotica .  this is worrying since much of our business depends on the validity of  exotica ' s valuations .  sharad will now request information from anjam via email to leave a trail ,  and i want to alert you to the fact that sharad will be cc ' ing you in on  these emails .  if things don ' t improve soon , i may need to request some assistance in  extracting this information from anjam .  many thanks ,  steve\",0\n\"Subject: cal berkeley  vince and john ,  i wanted to send you a quick note and once again say thank you for attending  the cal berkeley presentation last week . i am sorry for the low attendance  on campus , however i did want to send some refreshing news . i just received  the resumes of students who would like to interview with enron . there were  43 resumes submitted for the technologist position and 46 resumes submitted  for the analyst position .  please let me know if you have any questions .  thanks ,  ashley\",0\n\"Subject: credit reserve  vince ,  i ' d like to get someone to sit with one of team for a couple of days . . . . to  help with reviewing code .  there seems to be two view of how this is currently working .  your team seems to think winston group is not being co - operative enough .  winston ' s team seems to think they are co - operating . . .  i ' d like to resolve this .  if my suggestion above doesn ' t work ( putting some in your team for a couple  of days ) , i would like for us to sit down with winston , nilay and tanya and  try to work out what ' s happening .  regards  steve  - - - - - - - - - - - - - - - - - - - - - - - -  tel : 713 - 345 - 8980  cell : 281 - 541 - 1862  page : stevestock @ pagenetips . com\",0\n\"Subject: pac reminder  last month you received an email about enrolling in the enron pac . the  response has been positive .  thank you to those of you that have already enrolled or made a change to your  current contribution !  if you have not had an opportunity to visit the enrollment site , please  consider taking a moment to do so . the link to the website is at the end of  this message .  some of you may have experienced problems launching the site or enrolling .  we apologize for any trouble that you may have had . the enrollment works  best in either internet explorer or netscape . the most frequent problems  were a result of the lotus notes web browser that many employees have  installed as a default browser . if this is your case , please copy and paste  the link at the end of this message into either internet explorer or netscape .  as a reminder - following is the original message regarding the pac  enrollment :  last year the enron political action committee ( pac ) launched a campaign to  become a \"\" million dollar pac \"\" . enron employees , who provide all of the  funding for the pac , responded and the enron pac reached its objective ,  becoming one of the largest corporate pacs . this year we face a new  challenge . with the sale of eog , the announced sale of pge and normal  employee turnover , we have lost a significant number of consistent  contributors . we are seeking your support . if you are not a member , please  join . if you are a member , we hope you will consider increasing your  contribution .  the enron pac is an essential tool in our effort to promote sound public  policy . our pac funds support local , state and federal candidates , of both  parties , who support open markets , deregulation and customer choice . amounts  contributed may be used to make political contributions in connection with  federal and state elections and are subject to the limits of the federal  election campaign act . while our pac has grown thanks to our employee  contributions , it still generates just a fraction of the expenditures of  those who oppose these ideals .  this year , as always , we face challenges and opportunities for every one of  our businesses , including such issues as taxation and regulation of  e - commerce , electric industry restructuring , regulation of derivatives ,  international trade and investment legislation , pipeline safety , local and  state decisions affecting the siting and interconnection of power plants and  a variety of environmental and tax issues . enron has a long and successful  track record of supporting and advancing good public policy . that track  record depends on access to and regular communication with , decision makers .  the pac provides that access - - it shows policy makers that real voters care  about what they are doing .  one of the best things about enron is that we don \u0001 , t just take things as they  are . we challenge the status quo . we ask why . we change things . the pac  helps us do that . we need you to help the pac . sign up today \u0001 ) and please  consider the following contribution guidelines :  manager $ 500 / year  director $ 750 / year  sr . director / general manager $ 1 , 000 / year  vice president $ 2 , 500 / year  sr . vp / managing director $ 3 , 500 / year  executive committee $ 5 , 000 / year  all contributions are voluntary and these guidelines are merely suggestions .  you are free to contribute more or less than the guidelines suggested and  enron will not favor or disadvantage anyone by reason of the amount of their  contribution or their decision not to contribute . you may refuse to  contribute without fear of reprisal .  only u . s . citizens and resident - aliens living in the u . s . can contribute to  the enron pac . amounts contributed may be used to make contributions in  connection with federal and state elections and are subject to the  limitations of the federal election campaign act . the maximum contribution  is $ 5 , 000 per year per individual . an individual may not contribute more  than $ 25 , 000 to all federal candidates and committees within a calendar  year . the law requires that enron report name , address , employer and  occupation for every person who contributes over $ 200 / year .  no portion of any contribution is deductible as a charitable contribution for  federal income tax purposes .  thanks for your support ! sign up now , or revise your current contribution  level by connecting with the pac intranet site :  http : / / pacmembers . enron . com\",0\n\"Subject: re : telephone interview with enron corp . research dept .  dear shirley :  confirming that i will be waiting for the telephone interview at 1 pm  tomorrow . ? i would like to give you my cell phone number , 713 / 907 - 6717 , as a  back - up measure . ? please note that my first preference is to receive the call  at my home number , 713 / 669 - 0923 .  sincerely ,  rabi de  ?  ? shirley . crenshaw @ enron . com wrote :  dear rabi :  i have scheduled the telephone interview for 1 : 00 pm on friday , july 7 th .  we will call you at 713 / 669 - 0923 . if there are any changes , please let  me know .  sincerely ,  shirley crenshaw  713 - 853 - 5290  rabi deon 06 / 26 / 2000 10 : 37 : 24 pm  to : shirley crenshaw  cc :  subject : re : telephone interview with enron corp . research dept .  dear ms . crenshaw :  thanks for your prompt response . ? july 6 or 7 th will work best for me . . ? i  would prefer to be called at my home number . ? please let me know the  schedule and other details , if any .  sincerely ,  rabi de  ? shirley crenshawwrote :  good afternoon mr . de :  your resume has been forwarded to the enron corp . re ! search dept . and  they would like to conduct a telephone interview with you at your  convenience .  the interviewers would be :  vince kaminski managing director  stinson gibner vice president  grant masson vice president  p . v . krishnarao director  paulo issler manager  please give me some dates and times this week or july 5 , 6 , and 7 th when  you might be available and i will coordinate with the other calendars .  i look forward to hearing from you .  sincerely ,  shirley crenshaw  administrative coordinator  enron corp . research  713 / 853 - 5290  email : shirley . crenshaw @ enron . com  do you yahoo ! ?  get yahoo ! mail - free email you can access from anywhere !  do you yahoo ! ?  send instant messages & get email alerts with yahoo ! messenger .\",0\n\"Subject: video conference with the mars corp . \"\" cds \"\" group - avi hauser  good morning :  there will be a video conference this friday , june 30 at 11 : 30 am with  avi hauser of the cds group of mars corp .  the subject will be : commodity development services opportunity  in the emerging energy markets .  the video conference will be in eb 2802 a  thanks !  shirley crenshaw\",0\n\"Subject: re : follow - up  eric ,  mandeep chahal , ainsley gaddis , sofya tamarchenko , elena chilkina , james  aimone  should not count . m . chahal was transferred to the new company , the rest are  summer interns  ( gone back to school ) , or part - time high school or college kids . i shall  walk around and remind the rest  of the crowd about the deadline .  vince  eric thode @ enron  08 / 25 / 2000 02 : 31 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : follow - up  vince - -  we have been working the last few days to get ena ' s united way participation  rate up as high as possible . i called earlier about your cost center because  the following 16 employees were listed in power trading , but i believe are  part of the research organization .  if you have a chance , could you encourage them to log onto  http : / / unitedway . enron . com on the intranet and make a contribution to the  united way . the deadline is today .  thanks .  eric  employees in your cost center :  ainsley gaddis elena chilkina james aimone jose marquez  kevin moore mandeep chahal maureen raymond osman sezgen  paulo issler peyton gibner pinnamaneni krishnarao samer takriti  sofya tamarchenko thomas halliburton william smith yana kristal\",0\n\"Subject: re : programming for rdi model  michelle ,  the project is progressing . helen has done a great job , finding various flaws  in the initial design ( ken ' s design ) of the access table , and has been going  back  and forth with ken to modify the table . since helen can ' t devote full time to  this project ,  chris has hired a contractor , cecil stradford , to do the coding . i have  spoken with  cecil just now and he says no coding has been done yet . i am trying to  arrange  a meeting today with cecil , helen , christin ( the one who ' s overseeing coding  process in cecil ' s company ) and myself . will report back to you on what  is discussed in the meeting .  best ,  alex\",0\n\"Subject: mid - year 2000 performance feedback  note : you will receive this message each time you are selected as a reviewer .  you have been selected to participate in the mid - year 2000 performance  management process by providing meaningful feedback on specific employee ( s )  that have been identified for you . your feedback plays an important role in  the performance management process , and your participation is very critical  to the success of enron ' s performance management goals .  please provide feedback on the employee ( s ) listed below by accessing the  performance management system ( pep ) and completing an online feedback form as  described in the \"\" performance management quick reference guide \"\" . you may  begin your feedback input immediately . please have all feedback forms  completed by the date noted below .  if you have any questions regarding pep or your responsibility in the  process , please call the pep help desk at the following numbers :  in the u . s . : 1 - 713 - 853 - 4777 , option 4  in europe : 44 - 207 - 783 - 4040 , option 4  in canada : 1 - 403 - 974 - 6724 ( canada employees only )  or e - mail your questions to : perfmgmt @ enron . com  thank you for your participation in this important process .  the following list of employees is a cumulative list of all feedback  requests , by operating company , that have an \"\" open \"\" feedback status . an  employee ' s name will no longer appear once you have completed the feedback  form and select the \"\" submit \"\" button in pep .  review group : enron  feedback due date : jun 16 , 2000  employee name supervisor name date selected  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  ahmad , anjam dale surbey may 22 , 2000\",0\n\"Subject: cal berkeley career fair  recruiting season is quickly approaching and i wanted to go ahead and make  everyone aware of the first event at cal berkely this fall . the cal berkeley  career fair will take place on friday , september 8 th . we would like to take  three representatives on campus to discuss the analyst program as well as the  global technology track . travel arrangements would involve leaving on  thursday evening , september 7 th , to recruit on campus all day friday . if you  think that you may be available to help with this event , please click on the  button below .  we will discuss this and other events / dates on campus this fall during the  team meeting on tuesday , august 29 th at 2 : 00 in 49 c 4 . at that time we will  have sign - up sheets so that you can attend events that best fit in your  schedule . i will also follow up with an e - mail similar to this so that  everyone is able to express their date / event preferences .  thanks so much for helping recruit at cal berkeley this fall . if you have  any questions , please feel free to contact me at 3 - 3589 .  ashley\",0\n\"Subject: pjm publishes list of 1000 contingencies  message sent from the pjm - customer - info mailing list at  pjm - customer - info @ majordomo . pjm . com :  to meet customer requests , pjm has published the pjm contingency list on the  web  site at www . pjm . com . the file can be found under pjm markets , market and  system  data , under lmp model information . the list contains the approximately 1000  contingencies existing in the pjm energy management system . the contingencies  are the possible occurrences against which pjm system operators must protect  the  transmission system .  please do not reply to this message . if you have a question for pjm customer  relations and training , please send an e - mail to custsvc @ pjm . com .  to unsubscribe from this list , send an e - mail to majordomo @ majordomo . pjm . com  containing only the following line in the body of the e - mail :  unsubscribe pjm - customer - info\",0\n\"Subject: long sleeve denim shirts with the enron research logo  hello everyone :  i believe all of you are new employees since we last ordered the research  shirts .  they are a blue denim ( tencel ) , button down , long sleeve , shirt with a logo  over the left pocket .  several of you have been asking for them so i will place an order .  please let me know the size shirt you would like . they come in ladies , or  mens in small , medium , large , and extra - large . please circle the size  you would like .  name size  tom barkley s m l exl  stephen bennett s m l exl  rakesh bharati s m l exl  lance cunningham s m l exl  rabi de s m l exl  anita dupont s m l exl  shane green s m l exl  anguel grigorov s m l exl  seksan kiatsupaibul s m l exl  sandeep kohli s m l exl  jaesoo lew s m l exl  martin lin s m l exl  kate lucas s m l exl  iris mack s m l exl  praveen mellacheruvu s m l exl  mitra mujica s m l exl  wichai narongwanich s m l exl  nelson neale s m l exl  kenneth parkhill s m l exl  chris pernoud s m l exl  leann walton s m l exl\",0\n\"Subject: meeting at 2 : 00 pm friday  kevin ,  can you join us ? i may be 5 minutes late , coming from another meeting .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 12 / 15 / 2000  07 : 59 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  wenyao jia  12 / 14 / 2000 06 : 24 pm  to : debbie r brackett / hou / ect @ ect , vince j kaminski / hou / ect @ ect  cc :  subject : meeting at 2 : 00 pm friday  we will meet at debbie ' s office at 2 : 00 pm tomorrow afternoon . we will talk  about asset liability project from treasury dept .  see you there .  winston\",0\n\"Subject: year end 2000 performance feedback  note : you will receive this message each time you are selected as a reviewer .  you have been selected to participate in the year end 2000 performance  management process by providing meaningful feedback on specific employee ( s ) .  your feedback plays an important role in the process , and your participation  is critical to the success of enron ' s performance management goals .  to complete requests for feedback , access pep at http : / / pep . corp . enron . com  and select perform review under performance review services . you may begin  providing feedback immediately and are requested to have all feedback forms  completed by friday , november 17 , 2000 .  if you have any questions regarding pep or your responsibility in the  process , please contact the pep help desk at :  houston : 1 . 713 . 853 . 4777 , option 4  london : 44 . 207 . 783 . 4040 , option 4  email : perfmgmt @ enron . com  thank you for your participation in this important process .  the following is a cumulative list of employee feedback requests with a  status of \"\" open . \"\" once you have submitted or declined an employee ' s request  for feedback , their name will no longer appear on this list .  review group : enron  feedback due date : nov 17 , 2000  employee name supervisor name date selected  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  andrews , naveen c rudi c zipter oct 31 , 2000  baxter , ashley david davies nov 02 , 2000  campos , hector o peyton s gibner nov 06 , 2000  carson , richard l richard b buy oct 30 , 2000  crenshaw , shirley j wincenty j kaminski oct 26 , 2000  gandy , kristin h celeste c roberts nov 01 , 2000  gorny , vladimir theodore r murphy ii nov 02 , 2000  hewitt , kirstee l steven leppard nov 06 , 2000  kindall , kevin vasant shanbhogue oct 30 , 2000  lamas vieira pinto , rodrigo david port oct 31 , 2000  patrick , christie a steven j kean nov 09 , 2000  pham , bich anh t sarah brown nov 06 , 2000  raymond , maureen j wincenty j kaminski nov 02 , 2000  rosen , michael b christie a patrick nov 06 , 2000  sun , li kevin kindall nov 09 , 2000  supatgiat , chonawee peyton s gibner oct 27 , 2000  tamarchenko , tanya v vasant shanbhogue oct 26 , 2000  tawney , mark r jeffrey a shankman oct 26 , 2000  thuraisingham , ravi paul h racicot jr nov 12 , 2000  williams , matthew steven leppard nov 08 , 2000  yaman , sevil vasant shanbhogue oct 27 , 2000  yuan , ding richard l carson oct 31 , 2000\",0\n\"Subject: re : thank you for the e - mail .  joe ,  he is a research assistant of prof . darrell duffie from stanford  and i met him in this capacity . a very bright fellow .  i could not assess his commercial skills but he has enough common  sense to identify the winner ( as his interest in enron demonstrates ) .  vince  joseph p hirl @ enron _ development  12 / 17 / 99 08 : 05 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : thank you for the e - mail .  vince , thanks for the note and the voice mail this morning . do you have any  thoughts / comments on this person ' s abilities ?  joe  vince j kaminski @ ect  12 / 18 / 99 07 : 25 am  to : joseph p hirl / enron _ development @ enron _ development  cc :  subject : re : thank you for the e - mail .  joe ,  i am forwarding you the information about the student from stanford of  japanese ancestry interested in enron .  he lives currently in california .  vince kaminski  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 12 / 17 / 99  03 : 23 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  10 / 20 / 99 07 : 07 am  to : hoshino @ leland . stanford . edu  cc : celeste roberts / hou / ect @ ect , vince j kaminski / hou / ect @ ect , greg  whalley / hou / ect @ ect  subject : re : thank you for the e - mail .  taiichi ,  thank you for your messsage . i shall forward to our analyst / associate  program and a few other units of enron .  vince kaminski  hoshino @ leland . stanford . edu on 10 / 19 / 99 09 : 14 : 05 am  please respond to hoshino @ leland . stanford . edu  to : vince j kaminski / hou / ect @ ect , vkaminski @ aol . com  cc :  subject : thank you for the e - mail .  dear vince kaminski  thank you so much for the kind invitation for the meeting .  i have been always inspired by and having respect for the  recent revolutionary achievements of enron in the energy markets  my former employer mckinsey tokyo in fact featured  your company * s success in the last quarterly , and it clearly states  ( in japanese though ) that the quantitative research capability at enron  is now at the world * s top level , which has been always behind the scene .  i am extremely honored to receive the email from you and in fact  interested in knowing the opportunity of working in the energy field ;  however , very unfortunately i will have to come back to japan , or at  least to the east asian region , upon graduation due to an inevitable  family reason . my wife * s father passed away recently and an old  mother - in - law is now left alone without relatives . i understand that  enron has not yet embarked on the next big project of freeing  the outdated japanese energy market , ( which by the way i strongly  hope ) so i may not have a very good chance of making contribution  at your company right now .  lastly , if you need a staff in tokyo in some future who understands  both the risk management analytics at the f 622 level and the local  language and business custome better than average , please contact  me any time . i will be happy to assist as much as possible .  yours sincerely ,  / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~  taiichi hoshino  ph . d . candidate  engineering economic systems & operations research  graduate school of engineering  stanford university  the shadows apt # 171  750 north shoreline blvd .  mountain view ca 94043  tel / fax ) 650 - 960 - 1993  / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~\",0\n\"Subject: our meeting  vince :  i enjoyed meeting you last week to discuss my application to join your group .  please keep my inquiry confidential for now .  if selected , i think your group would greatly benefit from my diverse  skill - set including modeling skills utilizing excel , access , and  bloomberg as well as graphing , statistical , and other quantitative abilities ,  especially in the meteorology field .  i am particularly interested in being able to discover vital information  which may affect the markets ( e . g . pulp / paper , interest rates , weather ) as  well as arriving at a new variable which captures all market variables into  one which may be followed and forecasted for each of the groups .  furthermore , i am truly committed to adding value to your group , including  making significant contributions ,  and am sanguine about my ability to ensure that these achievements are  well - received .  i have met many people at enron thus far and am able to utilize these  strategic alliances by knowing who may be able  to assist your group in the quest for information on different projects . by  accessing information quickly , both internal and  external to the firm , the group would be able to extraordinarily benefit from  this diligence in addition , by seeking greater efficiencies in my work ,  i have been able to be instrumental in accumulating additional  responsibilities .  most importantly , i have the mathematical acumen and insight to ensure the  continued growth and prosperity of your group .  as a research - oriented individual , i am clearly interested in pursuing a  position in your group .  if selected , i would be able to bring my diverse experience , including  financial modeling and derivatives , from my tenure at  enron and cibc world markets .  i look forward to meeting with select members of your group .  thanks ,  david  3 - 3528\",0\n\"Subject: energy finance conference presentations available  fyi :  you can now retrieve most all the speaker presentations of the 2001 energy  finance conference ( feb 22 - 23 ) from our website at  http : / / cefer . bus . utexas . edu , with the exception of presentations made by john  mccormack , peter nance , sailesh ramamurtie , and ehud ronn / anoop kapoor ,  which i hope to still receive .  sincerely ,  angela  * * * * * * * * * * * * * *  angela dorsey  assistant director  center for energy finance education & research  the university of texas at austin  department of finance , cba 6 . 222  austin , tx 78712  angela . dorsey @ bus . utexas . edu  * * * * * * * * * * * * * *\",0\n\"Subject: re :  thanks vince .  dinner on sunday ok all round . do you want anjam along too ? i can ' t really  ask him , given our current relationship .  one other thing , have you had thoughts on reporting lines , who signs  expenses , etc . etc . , or are these issues to be resolved when you come over ?  cheers ,  steve  vince j kaminski  09 / 20 / 2000 04 : 14 pm  to : steven leppard / lon / ect @ ect  cc :  subject :  steve ,  steve , this is the spreadsheet .  also , please , let shirley know if the dinner on sun is ok .  vince\",0\n\"Subject: wallet size telephone cards for the research group  hi dee :  per our conversation , i am attaching the listing of the research group .  we would like 50 sets of the wallet size telephone cards made up .  our co . # is 0011 and our rc # is 100038 .  if you have any questions , please call me at 3 - 5290 .  thanks and have a great day !  shirley\",0\n\"Subject: presentation to faculty and students at berkeley  vince - attached are the documents that steve references below . we ' ll keep  you on the distribution list for further documents as they ' re created .  elizabeth  - - - - - forwarded by elizabeth linnell / na / enron on 09 / 20 / 2000 09 : 40 am - - - - -  steven j kean  sent by : steven j kean  09 / 20 / 2000 09 : 21 am  to : maureen mcvicker / na / enron @ enron , james d steffes / hou / ees @ ees , elizabeth  linnell / na / enron @ enron  cc : vince j kaminski / hou / ect @ ect  subject : presentation to faculty and students at berkeley  maureen - - please send vince my california testimony and the talking point  presentation for jeff skilling at the national press club .  eliz - - keep vince on the distribution list for the documents we are  generating now to repond to the california situation .  - - - - - forwarded by steven j kean / na / enron on 09 / 20 / 2000 09 : 18 am - - - - -  vince j kaminski @ ect  09 / 18 / 2000 01 : 26 pm  to : steven j kean / na / enron @ enron  cc : charlene jackson / corp / enron @ enron , celeste roberts / hou / ect @ ect , vince j  kaminski / hou / ect @ ect , ashley baxter / corp / enron @ enron  subject : presentation to faculty and students at berkeley  steve ,  i am a lead recruiter at the university of california at berkeley for  enron analyst / associate program .  i contacted several friends who work at berkeley and received an invitation  from one of them to make a presentation at the weekly faculty seminar  of the dept . of industrial engineering and operations research .  the students and faculty members from the business school will be also  invited .  berkeley in general , and department of industrial engineering and operations  research in  particular , are important centers of academic research on electricity markets  ( s . oren works very closely with severin borenstein ) .  my presentation will focus on the analyst / associate program . i shall also  have  an opportunity to discuss the power markets in california ( i expect many  questions ) before many experts who are very important to shaping  public opinion and regulatory agenda .  please , let me know who in you group could help me in preparing this  presentation  and in presenting enron ' s point of view in a more effective way .  vince  fyi . the name of my friend who invited me :  shmuel s . oren , professor  dept . of industrial engineering  and operations research  4117 etcheverry hall  university of california  berkeley , ca 94720 - 1777\",0\n\"Subject: re : check  julie ,  a clarification . we had an agreement with chris and les to contribute aus  10 , 000  as a part of the cost .  vince  \"\" julie \"\" on 10 / 30 / 2000 12 : 32 : 14 pm  to :  cc :  subject : re : check  vince ,  ?  thank you for your email . ?  ?  we will send you a copy of the book as soon as it is available , which we are  now estimating to be around ? 21 november ( no need to send us a cheque ; you  deserve it ) .  ?  just let us ? know if we should use a different address than your office in  houston .  ?  thanks again for all of your help .  ?  julie  ?  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com  to : julie @ lacima . co . uk  cc : vince . j . kaminski @ enron . com  sent : monday , october 30 , 2000 2 : 16 pm  subject : check  julie ,  this message was returned to me a few times when i sent it from my home  address .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 30 / 2000  08 : 00 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  vkaminski @ aol . com on 10 / 28 / 2000 12 : 12 : 57 pm  to : ? ? julie @ lacima . co . uk  cc : ? ? vkaminski @ aol . com , vkamins @ enron . com  subject : ? check  julie ,  as the book is about to be released to the market , i would like to start  the  process to issue the check to lacima . who will be the payee ( lacima ) and  what  is the address ?  vince\",0\n\"Subject: hello all ,  the program for the 2000 texas finance festival has been formalized and can  be found on our web site at  i do need to remind you of a few things before we converge on san antonio .  first , be sure to contact the convention hotel and make your reservations .  at last count there were only 6 rooms left . second , i need a completed  application form from everyone so that we can get an accurate meal count .  i am attaching the program announcement so you can fill out the appropriate  boxes for meals and numbers of guests in the event you have not sent in a  form .  remember that we are starting the conference off with a luncheon on friday  so plan on arriving early friday or coming in on thursday evening if you  can . our hotel is right on the river and there are lots of restaurants and  interesting things to visit in the immediate area ( the alamo is across the  plaza from the hotel ) .  we are making plans for spouses and children to attend both the dinner on  friday and saturday evenings . the friday evening dinner begins at 6 p . m .  so that we can be done in plenty of time for our private guided tour of the  alamo at 8 : 00 p . m . for saturday we are still working out plans for the  evening so stay tuned .  there will be more information later as the conference nears . looking  forward to seeing you all and in beautiful , sunny san antonio .  john  - announcerev . doc  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: re : hello from vince kaminski at enron  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 08 / 08 / 2000  11 : 55 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" shmuel oren \"\" on 08 / 08 / 2000 08 : 14 : 59 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : hello from vince kaminski at enron  dear vince  i will be happy to meet with you . please let me know when you will be here .  i will check among our students who may be interested . i have a ph . d .  student that is very good but he is still in the pipeline .  shmuel .  shmuel s . oren , professor  dept . of industrial engineering  and operations research  4117 etcheverry hall  university of california  berkeley , ca 94720 - 1777  e - mail : oren @ ieor . berkeley . edu  phone : ( 510 ) 642 - 1836 or 5484  fax : ( 510 ) 642 - 1403  - - - - - original message - - - - -  from :  to : ; ;  sent : tuesday , august 08 , 2000 10 : 59 am  subject : hello from vince kaminski at enron  > shmuel ,  >  > i hope you remember me . i visited you together with aram sogomonian , a  > good friend of mine , a few years ago . i am currently responsible , among  > other things , for recruiting graduates with finance and / or technical  > backgrounds at the university of berkeley . i would be glad to give you a  > call and talk more about the details of our program . my colleague ,  > ashleybaxter , from the analyst / associate program at enron would join me  > as well .  >  > i am sending you a copy of the brochure about the analyst / associate  > program .  >  > vince kaminski  >  >  > vincent kaminski  > managing director - research  > enron corp .  > 1400 smith street  > room ebl 962  > houston , tx 77002 - 7361  >  > phone : ( 713 ) 853 3848  > fax : ( 713 ) 646 2503  > e - mail : vkamins @ enron . com  >\",0\n\"Subject: re : kmi end - user license agreement ( enron ' s agreement for project  services  hi gene , looks like you are dealing with the subject . thanks for moving this  forward . kmi is dancing around relatively minor issues that i think we should  be able to overcome . essentially , the issue is that we will not resell their  database or misrepresent it . they want to put in all this restriction about  not using it for trading , exchange , etc . stretches our possible usage of this  database . it appears from your e - mail that the attament therein is our  standard agreement that we get our vendors to sign . at this point , i am  happy with whatever it takes to get those guys to close the deal .  thank you very much for the prompt service ,  regards ,  ravi .\",0\n\"Subject: ms 150  dear friends and family ,  on april 15 and 16 i will be joining thousands of riders and volunteers on  the ms 150 which is a two day bike tour from houston to austin covering 182  miles dedicated to end the devastating effects of multiple sclerosis .  multiple sclerosis is a disease that is total unpredictable . symptoms may be  mild such as numbness in the limbs , or severe paralysis or loss of vision .  most people with ms are diagnosed between the ages of 20 and 40 but the  unpredictable physical and emotional effects can be lifelong  my wife , ilene was diagnosed with ms almost three years ago ; at first i was  at a loss of how i could support her . that was until i heard of the ms 150 ,  which is one of the greatest challenges of my life . it is my choice to  participate in the ms 150 , ilene does not have a choice , as she has to live  with ms every day .  this will be my third year riding in the ms 150 raising money for the  national ms society to fight multiple sclerosis . in 1998 my goal was simple .  it was to raise money and ride the 182 miles on my own . i succeeded in my  endeavor by completing the ride on my own steam and raising $ 6 , 000 . in 1999  i raised my goal to $ 10 , 000 and finished the tour . not only did i meet my  goal , but surpassed it by raising $ 15 , 000 to fight this devastating disease  with the help of my friends and family . this year my goal is even greater !  my wife and i are once again asking for your help . this year on the 2000 ms  150 bike tour , my goal is to raise $ 20 , 000 .  enron is a big supporter of the ms 150 . for the past two years we were the  largest bike team and biggest fundraiser of any corporate team nationally .  last year we raised $ 310 , 000 with 300 riders . enron will match dollar for  dollar on all contributions donated in my name . using this secure , fast and  easy web page you can make a tax - deductible donation ( if clicking on the link  below does not work you can cut and paste the link to your browser ) .  mail = jnorden % 40 enron % 2 ecom  if you would prefer to send a check it should be made out to the national ms  society and sent to the address below .  i appreciate your continued support of the ms society and the isuzu ms 150  bike tour . the funds raised on the isuzu ms 150 bike tour provides  equipment , financial assistance , self - help groups , counseling , information  and resources , as well as education for people with ms and their families .  your support truly makes a difference in the lives of people with multiple  sclerosis .  for additional information on ms http : / / www . nmss . org  for additional information the ms 150 http : / / www . msl 50 . org  thank you for your support ,  john norden  john norden  director technology  enron  1400 smith st  houston tx 77002  713 / 853 - 3240\",0\n\"Subject: request submitted : access request ( scrw - 4 n 9 s 2 f )  fyi !  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 08 / 21 / 2000  01 : 07 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  information risk management  08 / 16 / 2000 03 : 34 pm  sent by : shirley crenshaw  to : shirley crenshaw / hou / ect @ ect  cc :  subject : request submitted : access request ( scrw - 4 n 9 s 2 f )  thank you for your request .  you will be notified via email when your request has been processed . you can  check the progress of your request by doing one of the following :  in the srrs application , click on requests i have made . a listing of recent  requests will be appear sorted by resource name .  click on the request link below . this is a link to information regarding your  request .  below is a summary of your request .  requested for : vince j kaminski / hou / ect  request date : 8 / 16 / 2000 3 : 32 : 19 pm  request type : update access  request link :  requested resources  comet  grms ( global risk management system )  unlisted application / software  if you have any questions , please contact information risk management at 35536\",0\n\"Subject: address  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 05 / 23 / 2000  06 : 28 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  keith alan baggerly @ stat . rice . edu on 05 / 23 / 2000  09 : 46 : 41 am  sent by : kabagg @ stat . rice . edu  to : vince . j . kaminski @ enron . com  cc :  subject : address  vince ,  thanks for chatting with me yesterday ! just a brief note  about info we talked about that i would find useful :  a ) your papers  b ) the latest version of managing energy price risk  c ) data  thanks !  keith  my address is :  keith baggerly  4038 drummond  houston , tx 77025\",0\n\"Subject: re : your visit to carnegie mellon  kent ,  thanks a lot . look forward to meeting you on campus .  vince  \"\" kent garrett \"\" on 11 / 05 / 2000 01 : 06 : 21 pm  to :  cc :  subject : your visit to carnegie mellon  vince :  i would like to personally thank you for spending the day with us at the  mscf program at carnegie mellon . the time you spent talking to us about  enron , and the energy industry in general , was very much appreciated . in  fact , i believe some students who were not previously interested in energy  are now interested because of the things about which you spoke . i have  signed up for an interview for the associate program at enron , and i hope to  speak to you again through involvement in the associate program . thanks  again .  sincerely ,  kent garrett  kent garrett  m . s . in computational finance  carnegie mellon university  ( 412 ) 362 - 7443\",0\n\"Subject: re : managing energy price risk - 2 nd edition  janette ,  thanks .  vince kaminski  enron corp .  1400 smith street , room 1962  houston , tx 77251 - 1188  phone : ( 713 ) 853 3848  fax : ( 713 ) 646 2599  e - mail : vkamins @ enron . com  vince  \"\" janette jagernauth \"\" on 01 / 06 / 2000 05 : 49 : 27 am  please respond to \"\" janette jagernauth \"\"  to : vince j kaminski / hou / ect @ ect  cc :  subject : managing energy price risk - 2 nd edition  dear mr kaminski ,  i do hope that you had a pleasant christmas and new year , like ourselves at  risk .  i am currently producing the author cards which you discussed with my  manager , paula soutinho , and would like to know where you would like them  delivered to . i have ordered a quantity of 200 which i hope is to your  satisfaction .  if you have any queries please do not hesitate in contacting either myself or  paula ,  kind regards  janette jagernauth  marketing assistant - risk books  - attl . htm\",0\n\"Subject: re : ll visa - anshuman shrivastava  molly ,  thanks for the update . two points .  please , let neil mcgregor know that many possible proposals were floated  with regard to anshuman and there was some noise in the system .  we need ll visa anyway and we decided to go ahead an arrange it .  i shall also write to him and explain the confusion .  also , if i have the choice between upsetting neil or jeffs ( shankman and  skilling ) ,  i shall choose neil .  vince  enron north america corp .  from : molly magee 01 / 24 / 2001 10 : 13 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : ll visa - anshuman shrivastava  vince : apparently neil mcgregor became upset when he received margaret  daffin ' s email . he is saying , however , that anshuman will only be in  houston for one month , and you had mentioned six months when we spoke  earlier . it really doesn ' t make any difference since he will need to get an  ll visa under either circumstance , but i thought you might want to see his  email .  molly  - - - - - - - - - - - - - - - - - - - - - - forwarded by molly magee / hou / ect on 01 / 24 / 2001 10 : 09  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  margaret daffin  01 / 24 / 2001 09 : 57 am  to : molly magee / hou / ect @ ect  cc :  subject : re : ll visa - anshuman shrivastava  molly : per our conversation today . please let me know the status so that i  can proceed with the visa process .  thanks  margaret  - - - - - - - - - - - - - - - - - - - - - - forwarded by margaret daffin / hou / ect on 01 / 24 / 2001  09 : 56 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  neil mcgregor @ enron _ development  01 / 24 / 2001 05 : 18 am  to : margaret daffin / hou / ect @ ect  cc : wade cline / enron _ development @ enron _ development  subject : re : ll visa - anshuman shrivastava  anshuman is not moving or immigrating to the us . we are allowing him to work  for a lmonth assignment in the us with enron . please carry out the necessary  approvals and visa ' s on this basis .  neil mcgregor  ceo dabhol power  margaret daffin @ ect  01 / 23 / 2001 10 : 31 pm  to : anshuman . srivastav @ enron . com  cc : molly magee / hou / ect @ ect , vince j kaminski / hou / ect @ ect , jane  allen / hou / ect @ ect , timothy callahan / na / enron @ enron , ranendra  sengupta / enron _ development @ enron _ development , wade  cline / enron _ development @ enron _ development , neil  mcgregor / enron _ development @ enron _ development @ ect , harsimran  subject : ll visa - anshuman shrivastava  anshuman : i have been asked to contact you regarding your possible move to  houston , texas . in order that i may begin the process of getting you an ll  immigration visa , i will need you to complete the attached visa questionnaire  and return it to me with copies of the following documents :  a copy of all pages of your passport , even if blank  copies of all previous us visas issued  an updated resume , showing months and years  copies of all diplomas and transcripts received  if you have dependent family members coming to the states with you , copies of  their passports  please send to my attention , via fedex to :  enron corp .  3 allen center , 3 ac 2026 a  333 clay street  houston , tx 77002  please call me with any questions you may have at 713 - 345 - 5083 .\",0\n\"Subject: rick jones ' address  18 pale dawn pl  936 271 3283  look for capstone - off of research . there are other turns but that will get  you in the ball park on the map .  see you monday !\",0\n\"Subject: storage model audit  vince ,  enclosed please find the storage model documentation , the c - code and  front - end spread sheet .  after your inputs and comments we can send it out .  zimin\",0\n\"Subject: presentation on equilibrium modeling for gas market  hi kim :  you and your associates are invited to attend this meeting .  if you have any questions , please call me .  thanks !  shirley  * * * * * * * * * * * * *  the following presentation will be this friday , the 18 th of february from  1 : 00 pm to 3 : 00 pm in eb 19 c 2 ( our large conference room ) .  please plan to attend this presentation by icf consulting .  agenda for presentation by icf consulting  1 . qualifications for icf consulting ( 6 slides )  a . energy consulting background ( 2 slides )  b . experience with computational market equilibrium modeling methodolgies ( 2  slides )  c . experience of key icf individuals ( 2 slides )  2 . description of enron \u0001 , s modeling interests ( to be discussed with enron )  3 . icf \u0001 , s intertemporal , interregional equilibrium model of the north american  natural gas analysis  system ( nangas ) ( 14 slides )  a . overview of nangas ( 2 slides )  b . upstream components ( 3 slides )  c . downstream components ( 4 slides )  d . computation of market equilibrium prices , quantities , and flows ( 5 slides )  4 . potential modeling consulting ( 9 slides )  a . assistance in developing market equilibrium models for the energy sector  ( 1 slide )  b . investigate alternative market equilibrium models for energy applications  i . models of imperfect competition ( e . g . , nash - cournot , etc . ) ( 3 slides )  ii . models of auctions in market forecasting ( 1 slide )  ii . models that incorporate stochastic inputs ( e . g . , stochastic  programming ) to take into account risk ( 2 slides )  c . actions items ( to be completed in consultation with enron ) ( 2 slides )\",0\n\"Subject: updated message - preliminary rankings  norma ,  i am sending you preliminary rankings for my entire  group , based on the results of a meeting we held on tuesday .  we have ranked shalesh ganjoo and clayton , in case  it ' s still our responsibility .  vince  permanent goup members , manager and below :  superior :  1 . martin lin  2 . joe hrgovcic  3 . tom haliburton  4 . jose marquez  excellent  1 . paulo issler  2 . robert lee  3 . chonawee supatgiat  4 . amitava dhar  5 . alex huang  6 . kevin kindall  7 . praveen mellacheruvu  8 . shanhe green  9 . stephen bennett  strong  1 . lance cunningham  2 . clayton vernon  3 . youyi feng  4 . yana kristal  5 . sevil yaman  permanent goup members , directors :  superior  1 . krishnarao pinnamaneni  excellent  1 . osman sezgen  2 . tanya tamarchenko  3 . zimin lu  satisfactory  1 . maureen raymond  associates , analysts  superior  1 . shalesh ganjoo  2 . gwyn koepke  excellent  1 . hector campos  2 . kate lucas  3 . sun li  4 . roman zadorozhny  5 . charles weldon\",0\n\"Subject: re : credit article  dear vince  thank you very much for the information .  i will get in touch with them today and will keep you informed as to the  outcome .  regards ,  katja  vince j kaminski  06 / 01 / 2000 19 : 52  to : katja schilling / lon / ect @ ect , vasant shanbhogue / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : credit article  katja ,  risk magazine has the copyright . you have to contact them to get the  permission to use this  for external users .  you can contact :  sh ? n millie  risk books  28 - 29 haymarket  london swly 4 rx  pone : 44 ( 0 ) 171 484 9740  fax : 44 ( 0 ) 171 484 9758  e - mail : shan @ risk . co . uk  www . riskpublications . com  and discuss the legal aspects with her .  vince  vasant shanbhogue  01 / 06 / 2000 08 : 28 am  to : katja schilling / lon / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : credit article  i do not think minor changes would allow you to just use the same file . you  will have to check with risk . this is risk books , a specialist division of  risk publications in london . address : haymarket house , 28 - 29 haymarket ,  london swly 4 rx .  the publication was in a book , entitled \"\" credit derivatives : applications for  risk management , investment and portfolio optimisation , \"\" publishd in 1998 . i  am not sure if a lawyer was involved , maybe vince will know .  vasant  katja schilling  01 / 05 / 2000 05 : 47 am  to : vasant shanbhogue / hou / ect @ ect  cc : bijoya banerjea / lon / ect @ ect  subject : credit article  hello vasant !  bijoya has updated me on the discussion you have been having on the article  from risk magazine about credit .  we have found that the attachments you sent her are actually not  word - for - word the same as the published version we have - the changes are  only minor , wever , and have not altered the article in any way .  my question now concerns the copyrights . since the version you sent is  slightly different , do you think this gives us the freedom to publish it  without the consent of risk ?  and if not - can you tell me if it was published by risk uk or risk in the  states ? and which issue was it ? i just want to have all of the details if i  need to call someone at the magazine . . .  also - was there a lawyer involved in the publication procedure , or was this  handled by london / houston pr ? or by vince himself ?  sorry about all of the questions . . . i just want to avoid problems well in  advance .  thank you !  regards ,  katja\",0\n\"Subject: re : panel session at 2001 pes summer meeting  that should be fine , as long as you keep to a general overview and  dissertation work . you can talk about different modeling approaches in the  industry , and indicate , if asked , that enron looks at all approaches but not  be specific about which particular one we believe in .  can you give me more details on the meeting ? i may like to attend as well .  thanks ,  vasant  lance cunningham @ enron on 03 / 27 / 2001 10 : 37 : 02 am  to : vkaminski @ aol . com , vasant shanbhogue / hou / ect @ ect , vince j  kaminski / hou / ect @ ect  cc :  subject : panel session at 2001 pes summer meeting  vince and vasant ,  i was asked by one of my advisors to be on a panel for the summer power  engineering society . i stated that i couldn ' t divulge any information on  modeling efforts at enron but could give a general overview and cover my  dissertation work . he stated that he understood and other companies had  expressed similar concerns .  i guess that i need your ok to attend this presentation and present .  thanks ,  lance  - - - - - - - - - - - - - - - - - - - - - - forwarded by lance cunningham / na / enron on 03 / 27 / 2001  10 : 24 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" martin l . baughman \"\" on 03 / 27 / 2001 08 : 59 : 35 am  to : shams . siddiqi @ lcra . org , harry . singh @ neg . pge . com ,  lance . cunningham @ enron . com , rosenberg @ hotmail . com , \"\" camporeale , robert \"\"  cc : baran @ eos . ncsu . edu , liu @ ee . washington . edu  subject : panel session at 2001 pes summer meeting  gentlemen :  thank you for agreeing to participate on the panel . to comply with the  quality control requirements of the society i must request from each of you  the following :  1 . name , affiliation , and title of presentation as you want it listed in  program .  2 . a 2 - 6 summary of the presentation . these summaries will appear in the  proceedings . many speakers simply provide a few powerpoint slides that  contain this information , or alternatively , a few paragraphs of text  summarizing the points they intend to make in their presentations .  please provide this information to me by april 2 .  here is the status of the panel so far .  title : power trading and asset management : tools of the trade  requested day and time : wed july 18 morning session  summary  a number of sophisticated anlytical tools are used in support power trading  and asset management activities . these include various time - series ,  stochastic , and physical models of quantities and prices , portfolio and  risk analysis tools , and other risk management tools . in this panel , the  analytical approaches are surveyed and discussed .  panelists :  lance cunningham / confirmed  manager , research  enron north america  micahel rosenberg / confirmed  txu  shams siddiqi / confirmed  lcra  harry singh / confirmed  director , market economics  pg & e national energy group  robert camporeale  coned energy  panel organizer and chair :  martin l . baughman  ece department  the university of texas at austin  remember , by april 2 .  marty  martin l . baughman  ece dept . ens 348  the university of texas at austin  austin , tx 78712  ph . ( 512 ) 471 - 5376  fax ( 512 ) 471 - 5532\",0\n\"Subject: network design optimization .  fyi ,  attached document is a specification of the network design optimization  program . just in case you want to see how it looks like .  - chonawee  - - - - - - - - - - - - - - - - - - - - - - forwarded by chonawee supatgiat / corp / enron on  06 / 19 / 2000 02 : 55 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  chonawee supatgiat  06 / 19 / 2000 02 : 34 pm  to : phil markwart / enron communications @ enron communications  cc : samer _ takriti @ enron . net  subject : network design optimization .  phil ,  the optimization engine is ready and the graphical user interface is almost  done . attached please find the updated network design optimization  specification . it contains some additions and modifications to the old  specification i sent you a while ago . the major changes are :  1 . the program now also supports ring design . and it can solve to optimality  2 . the graphical user interface is handled by visual basic on a pc . ( not on  the web browser as in the previous spec . ) .  please take a look at the specification document and let me know if there is  anything you want to add / change / remove . . . etc .  moreover , please do not forget to send us a test example .  we are buying cplex and will install it on our network . hopefully our it  teams can configure your machine to run it in a few weeks .  - chonawee\",0\n\"Subject: dinner for summer interns  vince ,  thursday , july 27 , seems to work for everyone for our summer intern  dinner . i have also told this date to  datren  ainsley  cantekin  brad  giuseppe and  seville  and asked mike roberts to tell his two summer interns .  please let me know if we are overlooking anyone .  stinson\",0\n\"Subject: re : london research group  i ' d do it as soon as possible . your call on exactly when .  regards  richard  vince j kaminski  27 / 07 / 2000 17 : 11  to : richard lewis / lon / ect @ ect  cc : john sherriff / lon / ect @ ect , vince j kaminski / hou / ect @ ect , grant  masson / hou / ect @ ect , stinson gibner / hou / ect @ ect , joe gold / lon / ect @ ect , dale  surbey / lon / ect @ ect  subject : re : london research group  richard ,  please , let me know what the timetable is . i would like to talk to anjam a  few days before  to break the news to him . i hope i can save him for the company and offer him  a position in houston .  we desperately need skills he has .  vince  richard lewis  07 / 27 / 2000 02 : 20 am  to : dale surbey / lon / ect @ ect  cc : john sherriff / lon / ect @ ect , vince j kaminski / hou / ect @ ect , grant  masson / hou / ect @ ect , stinson gibner / hou / ect @ ect , joe gold / lon / ect @ ect  subject : re : london research group  i agree with dale - no point in delaying .  dale surbey  27 / 07 / 2000 08 : 13  to : john sherriff / lon / ect @ ect  cc : vince j kaminski / hou / ect @ ect , richard lewis / lon / ect @ ect , grant  masson / hou / ect @ ect , stinson gibner / hou / ect @ ect , joe gold / lon / ect @ ect  subject : re : london research group  john ,  i propose accelerating steve ' s move to head the research group here . it  makes sense to include this as part of the mid - year prc process by giving him  a tangible reward along with his performance feedback .  thoughts ?  - dale  john sherriff  27 / 07 / 2000 06 : 44  to : vince j kaminski / hou / ect @ ect  cc : dale surbey / lon / ect @ ect , vince j kaminski / hou / ect @ ect , richard  lewis / lon / ect @ ect , grant masson / hou / ect @ ect , stinson gibner / hou / ect @ ect , joe  gold / lon / ect @ ect  subject : re : london research group  vince - i agree with your conclusion here . we are still trying to fill  dale ' s structuring role as well so part of the question is  how we announce steve ' s lead research role relative to when we know who will  take dale ' s spot . perhaps we should just  move forward with the steve announcement the day that dale moves full time to  ebs . i will ask richard lewis to take the lead  in working with you on finalizing the decision and communcicating the changes  to the organization .  but i do want to reinforce how pleased we are to have steve here . he is a  wonderfull asset to our efforts .  thanks !  john  vince j kaminski  26 / 07 / 2000 22 : 18  to : john sherriff / lon / ect @ ect  cc : dale surbey / lon / ect @ ect , vince j kaminski / hou / ect @ ect , richard  lewis / lon / ect @ ect , grant masson / hou / ect @ ect , stinson gibner / hou / ect @ ect  subject : london research group  john ,  i am writing to you regarding the management of the london research group .  as you know , dale surbey , who was managing the london unit of the research  group ,  is moving to ebs . dale did a terrific job helping me to develop the pool of  talent we have currently  in london .  given that dale is likely to be transfered to houston , it ' s time  to nominate one member of the research group for a management position .  my recommendation is steve leppard . steve emerged not only as the most  technically qualified member of the group but also as a natural leader ,  highly  respected by his peers and internal customers . steve has a very high energy  level  and is very efficient as a manager and as coach of new talent .  his promotion is likely to cause anjam ' s departure form enron . i value  technical  skills of anjam , but in spite of my loyalty to him , don ' t think he is the  same caliber  as steve . however , i would not like to lose him and think about moving him to  houston  for 2 years . i think that the opportunity to work in houston , would be a  sufficient  incentive to keep him in enron . by the way , his performance feedback has  greatly improved .  please , let me know what you think .  vince\",0\n\"Subject: re :  thank you ! ! !  vince j kaminski @ ect  08 / 08 / 2000 09 : 56 am  to : ashley baxter / corp / enron @ enron  cc :  subject :  ashley ,  the web site address of the prof at berkeley i contacted .  http : / / www . ieor . berkeley . edu : 80 / ~ oren /  vince\",0\n\"Subject: reminder : all - employee meeting  this is a reminder to join ken lay , jeff skilling and joe sutton for an  all - employee meeting hosted in the london office on monday , feb . 28 , 2000 .  the meeting will begin at 4 p . m . london time ( 10 a . m . houston time ) . ken ,  jeff and joe will discuss enron ' s year - end financial and operating results  and the company ' s outlook for 2000 and beyond .  using enron broadband services ' video streaming capabilities , the meeting  will be streamed live to the desktop for employees in houston , omaha ,  portland , calgary , new york , stockholm , amsterdam and frankfurt . to view the  meeting , you must have ip - tv and a sound card installed on your computer . if  you are not able to view the meeting live using ip - tv , a videotape will be  available after the meeting . u . k . and european employees may contact mary  gopalan for a copy of the video . u . s . and other international employees may  contact mary clark by email to reserve a copy .  if you plan to watch the meeting using ip - tv , you can test your ip - tv prior  to the meeting using the instructions below . if you experience technical  difficulties , please contact your pc help desk .  following are instructions for launching ip - tv by company lan and / or location :  ei employees in three allen center -  start menu . . . . programs . . . general information . . . iptv icon  ees and omaha employees -  start menu . . . . programs . . . cisco iptv viewer . . . iptv icon  ena houston , corp houston , new york , calgary and portland ( does not include  ebs and pge in portland )  start menu . . . programs . . . . iptv viewer icon  london -  menu option : start . . . programs . . . utilities . . . iptv viewer /  frankfurt / stockholm / amsterdam -  start menu . . . programs . . . cisco iptv viewer . . . cisco iptv viewer  for the first time , the question and answer session will be open to all  employees worldwide using espeak . you can submit your questions in advance  on the espeak web site at ethink . enron . com or during the meeting from 4 to 6  p . m . london time ( 10 a . m . to noon houston time ) . ken , jeff and joe will  attempt to answer as many questions as possible in the time available . all  espeak questions and those submitted by london employees during the meeting  will be included in an espeak transcript following the meeting .  mark your calendar for this global employee communications event . see you  there .\",0\n\"Subject: my model for spikes  dear dr . kaminski ,  i was recently allowed to release into the public domain on the limited basis  the first of the preprints that i recently authored on my model for spikes in  power prices and for the valuation of the contingent claims on power . in this  regard , i have just given a talk on this model at the joint seminar of the  center for energy finance education and research and the institute for  computational finance at the ut austin . right now i am also in the process of  forming a list of specialists both in the industry and academia who might be  interested in receiving this preprint . please let me know if you might be  interested in receiving this preprint .  i look forward to hearing from you .  sincerely yours ,  valery kholodnyi  manager of quantitative analysis  research and analytics group  txu energy trading  ps . here are the main preprints that i have recently authored on my model for  spikes in power prices and valuation of contingent claims on power :  1 . valery a . kholodnyi , the stochastic process for power prices with spikes  and  valuation of european contingent claims on power , preprint , txu - rag - 01 / 00 ,  july  2000 .  2 . valery a . khlolodnyi , valuation of a swing option on power with spikes ,  preprint txu - rag - 05 / 00 , august , 2000 .  3 . valery a . kholodnyi , valuation of a spark spread option on power with  spikes ,  preprint txu - rag - 21 / 00 , november 2000 .  4 . valery a . kholodnyi , valuation of european contingent claims on power at  two  distinct points on the grid with spikes in both power prices , preprint  txu - rag - 24 / 00 , november 2000 .  5 . valery a . kholodnyi , valuation of a transmission option on power with  spikes ,  preprint txu - rag - 25 / 00 , november 2000 .  as i have indicated to you in my previous e - mail , contrary to the standard  approaches , i model spikes directly , as self - reversing jumps on top of a  stochastic process for the regular dynamics of power prices in the absence of  spikes . in this way the dynamics of power prices is modeled as a non - markovian  process , even if the process for the regular dynamics of power prices is  markovian . among other things my model for spikes allows for the explicit  valuation and hedging of contingent claims on power with spikes , provided that  the corresponding contingent claims on power can be valued and hedged in the  absence of spikes .\",0\n\"Subject: fw : more energy amends  fiona ,  ?  please find attached a brochure for the advertisement of the book . ? it ' s  similar to the other material we sent , so i ' m assuming it will need the same  modifications . ? please pass along all the modifications as soon as  possible . ? receiving the changes from enron is the ? only thing holding up the  printing of the book . ? please let us know if there is anything that you need  from us .  ?  sincerely ,  ?  julie  ?  lacima group  - lres energ der a 4 flyer 2 . pdf\",0\n\"Subject: james valverde - interview schedule  attached you will find the interview packet for the above - referenced person .  the interview will happen thursday , february 1 , 2001 . please print all  three documents for your hard copies . if you have any questions , or  conflicts of schedule , please do not hesitate to contact me .  sasha divelbiss  58714\",0\n\"Subject: welcome to - energy news live  dear vincent kaminski ,  welcome to energy news live - http : / / www . energynewslive . com !  you are receiving this email as a result of your recent registration .  free energy news live membership  we ' re glad you ' ve joined us ; we think you ' ll find enl an amazing business  tool ,  with live , up - to the - minute news every hour on the hour of every business day .  insight from actual traders . exotic and proprietary  weather modeling . a new cross - commodity index . we ' ll break every  energy headline around the world , and bring them right to your desktop .  so sign on , leave it on , stay on top . and enjoy your membership to  energynewslive . com , the first real - time energy network .  also , thank you for your request to receive more information from  energynewslive . com . keep checking your email for updates and  special offers .  if you did not request to receive special offers from enl please  click here to de - activate :  you have also indicated that you would like to receive a daily  video wrap - up from energynewslive . com .  if you did not request to receive a daily video wrap - up from enl please  click here to de - activate :  sincerely ,  the energy news live team\",0\n\"Subject: re : uc - berkeley graduate student  thank you for your email .  i look forward to hearing from you .  sincerely ,  rajnish  on tue , 24 oct 2000 vince . j . kaminski @ enron . com wrote :  >  > rajnish ,  >  > we shall invite you for an interview in houston .  >  > vince  >  >  >  >  >  >  > rajnish kamat on 10 / 23 / 2000 07 : 55 : 31 pm  >  > to : vkamins @ enron . com  > cc :  > subject : uc - berkeley graduate student  >  >  > dr . vincent kaminski  > managing director and head of research  > enron corp .  >  > dear dr . kaminski ,  > it was a pleasure talking with you and attending your talk today .  > i am a graduate student in industrial engg . and operations  > research working with prof . shmuel oren  > on topics in financial instrument pricing and design of  > contracts in deregulated electricity markets . i am also  > doing research in auction models and computable equilibrium  > models with applications in electricity market design .  >  > i am planning to graduate with a ph . d . in may 2001 and would  > appreciate hearing about any opportunities in your group at enron .  > i am attaching at copy of my resume ( file : cvrkamat . doc ) for your perusal .  >  > thanking you ,  > sincerely ,  >  > rajnish kamat  > graduate student  > ieor , uc - berkeley  >  > 4135 , etcheverry hall  > dept . of industrial engineering and operations research  > university of california at berkeley  > berkeley , ca , 94710  >  > ( see attached file : cvrkamat . doc )  >  >  >\",0\n\"Subject: interviewing for the associate and analyst programs  the off - cycle department of the associate and analyst program is looking for  volunteer interviewers for the following dates :  thursday , november 9 th from 9 : 00 a . m - 12 : 00 p . m  thursday , november 16 th from 9 : 00 a . m . - 12 : 00 p . m .  thursday , december 7 th from 9 : 00 a . m . - 1 : 00 p . m .  over 50 candidates will be interviewing over these 3 days . the candidates  will be a combination of associates and analysts representing schools such as  princeton , harvard , university of north carolina , notre dame , university of  illinois , emory and many others . each candidate will have 4 interviews .  pending the outcome of their interviews we will invite them to stay and  attend super saturday that weekend . if for some reason we decide not to  further pursue the candidate , we will fly them home that friday morning .  also there will be continental breakfast at from 7 : 45 a . m . to 8 : 45 a . m . ( for  all three dates ) and a luncheon from 12 : 30 p . m . - 2 : 00 p . m . ( on nov . 9 and  nov . 16 th ) , the lunch will be at 1 : 30 for the dec . 7 th . interviewers are  welcome to attend both the breakfast and the lunch on their interviewing  date . the interviewing , breakfast and lunch will take place at the  doubletree hotel downtown .  we are asking enron employees associate ( associates who have been with the  program for at least one year ) level or higher to volunteer at least one  hour to interview candidates ( this will be 2 interviews ) . if you can  volunteer for more than an hour or for more than just one of the stated  dates , that would be great ! your help is needed ! please contact my  assistant , cathy lira , at cathy . lira @ enron . com or x 54049 as soon as possible ,  if you can volunteer any time for interviewing .  if you have any questions please do not hesitate to contact me .  once again , thanks ,  althea  althea p . gordon , jd  recruiter  associate & analyst programs\",0\n\"Subject: re : request for two powerpoint presentations from risk 2000 confe  renc e  i did not get the attachments . it may be better to send to my home email - -  firewall issues . my home email is  brysonpa @ hal - pc . org  thanks  allen  > - - - - - original message - - - - -  > from : vince . j . kaminski @ enron . com [ smtp : vince . j . kaminski @ enron . com ]  > sent : tuesday , june 27 , 2000 7 : 56 am  > to : r - allen . bryson @ usa . conoco . com  > cc : vince . j . kaminski @ enron . com  > subject : re : request for two powerpoint presentations from risk 2000  > conferenc e  >  >  > allen ,  >  > i responded to your message from home .  >  > please , let me know if you did not receive the attachments .  > aol malfunctions sometimes .  >  > vince  >  >  >  >  >  > \"\" bryson , allen \"\" on 06 / 26 / 2000 09 : 17 : 07 am  >  > to : \"\" ' vkamins @ enron . com ' \"\"  > cc :  > subject : request for two powerpoint presentations from risk 2000  > conferenc  > e  >  >  > vince ,  >  > i would like to receive copies of both your energy risk and weather  > presentations from the risk 2000 conference in boston .  >  > thanks ,  >  > allen bryson  > conoco  >  >  >  >\",0\n\"Subject: re : enroncredit . com  alex worked with jitendra on var review in the past . he did not strike me as  a dynamic person . i cannot use him for my group , and i am lukewarm about  getting him for research group . if bryan wants to hire him directly for his  kmv experience , then we can work with him .  vasant  vince j kaminski  04 / 14 / 2000 03 : 55 pm  to : vasant shanbhogue / hou / ect @ ect , tanya tamarchenko / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : enroncredit . com  vasant , tanya  any interest ?  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 14 / 2000  03 : 56 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  melanie doyle  03 / 10 / 2000 04 : 33 am  to : vince j kaminski / hou / ect @ ect  cc : brad mcsherry / hou / ect @ ect  subject : re : enroncredit . com  hi  this guy has applied to credit . com in houston , i spoke to him yesterday and  then passed my comments to bryan seyfried . bryan suggested he may be of  interest to you . i let this this guy know that he would hear from us either  way and if we want to pursue the application we would invite him for  interviews in houston .  please give me a call if you need more information .  melanie  00 44 171 783 7740 .  - - - - - - - - - - - - - - - - - - - - - - forwarded by melanie doyle / lon / ect on 10 / 03 / 2000 10 : 26  - - - - - - - - - - - - - - - - - - - - - - - - - - -  bryan seyfried  08 / 03 / 2000 07 : 51  to : brad mcsherry / hou / ect @ ect  cc : melanie doyle / lon / ect @ ect  subject : re : enroncredit . com  let ' s start getting these guys in to interview . melanie can do initial  telephone interviews and then coordinate with brad to ensure we are seeing  the best people . i would like to move as quickly as practical .  bs  from : brad mcsherry on 07 / 03 / 2000 13 : 17 cst  to : bryan seyfried / lon / ect @ ect  cc :  subject : enroncredit . com  - - - - - - - - - - - - - - - - - - - - - - forwarded by brad mcsherry / hou / ect on 03 / 07 / 2000 01 : 17  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  alexander . c . davidson @ us . arthurandersen . com on 03 / 03 / 2000 01 : 55 : 23 pm  to : brad . mcsherry @ enron . com  cc :  subject : enroncredit . com  dear mr . mcsherry :  i am responding to your search for credit risk professionals on  the  enroncredit . com website . after working for seven years on credit  risk  management in a research and consulting capacity , i would like to transfer  my  experience in assessing credit risk modeling , information technology  and  methodology in complex top - tier institutions to an active credit  trading  managerial environment . i am excited about being involved in  trading ,  origination , risk management and r & d of credit derivatives .  i have seven years of experience in credit risk measurement and  management . i  have helped design , test and implement credit value - at - risk systems with  kmv  corp and with a major japanese bank . i was a major contributor at kmv  in  designing the expected default frequency model and i am thoroughly familiar  with  its assumptions , strengths , weaknesses and applications . i did the  empirical  research that lies behind the kmv default correlation model , the private  firm  edf model and i interfaced with j . p . morgan ( now r . m . g . ) personnel during  the  creation of the creditmetrics documentation .  i have excellent analytical , quantitative , statistical and programming  skills .  i studied finance extensively when i was a graduate student and i studied  credit  risk theory while i worked with kmv and arthur andersen . i am eager to join  the  credit derivative team at enroncredit . com where i am certain that my  combination  of quantitative research skills , credit risk consulting experience  and  technology expertise make me uniquely qualified to support the  credit  derivatives trading and risk management function .  i have included my resume with this e - mail . please e - mail me or call me  at  201 - 420 - 0191 ( home ) and 212 - 708 - 4027 ( work ) so that we can discuss  this  opportunity further .  ( see attached file : alex . doc )  * * * * * * * * * * * * * * * * * * * internet email confidentiality footer * * * * * * * * * * * * * * * * * * *  privileged / confidential information may be contained in this message . if you  are not the addressee indicated in this message ( or responsible for delivery  of  the message to such person ) , you may not copy or deliver this message to  anyone .  in such case , you should destroy this message and kindly notify the sender by  reply email . please advise immediately if you or your employer do not consent  to  internet email for messages of this kind . opinions , conclusions and other  information in this message that do not relate to the official business of my  firm shall be understood as neither given nor endorsed by it .  - alex . doc\",0\n\"Subject: re : seeking opportunity in computational finance  dear vince :  thanks for your response .  i am not a programmer , nor a \"\" quant \"\" . i am an expert in excel and otherwise  have advanced skills in the remaining msoffice suite . beyond that i have  extensive experience working with research and computer progamming personnel  on projects from networks to databases , and in particular , automation .  for instance , the first generation of the risk analytics system that i  designed for quantlab was done in excel . in subsequent generations of the  system , excel served only as the gui - given its extreme flexibility - and a  sql database operated underneath ( compaq servers , raid array ) , integrating  real - time operations for all components of the system .  the research team at quantlab used many leading edge modelling  methodologies , such as genetic algorithms , neural networks , principal  component analysis , kernel density estimation , fast kernel regression ,  hidden markov modelling and many other pattern recognition , walk - forward  back testing , and other simulation techniques .  i was the sole individual on a team of 17 that had any practical trading  experience , and therefore , felt that i played a critical role in the  application and implementation of each of the system components from data  mining to research to signal generation to execution . beyond that , i was  uniquely qualified to articulate the project ' s mission to investors , and  therefore , was highly successful in spearheading support - financial and  otherwise - from our network .  althought i did not ask specifically , i surmise from your question that you  are leading a research effort . i believe that my skill set is best served  as a liaison between research and trading , since i speak both languages . i  believe that i possess great vision and enthusiasim that could be leveraged  in a group , project or product management role to integrate and streamline  diverse systems and processes ; a common scenario in most proprietary  development settings today .  in closing , i would like to learn more about enron and the financial  technology effort therein through further discussion with you , or if that is  not appropriate , someone to whom you would be comfortable referring me .  i look forward to your thoughts .  best regards ,  paul  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : tuesday , november 14 , 2000 4 : 30 pm  to : epr @ pipeline . com  subject : re : seeking opportunity in computational finance  paul ,  can you give me more information about your computer skills ?  my group is very hands - on oriented and computer programming is a critical  skill .  vince  \"\" paul rowady \"\" on 11 / 14 / 2000 04 : 09 : 43 pm  to : \"\" vince kaminski \"\"  cc :  subject : seeking opportunity in computational finance  dear vince :  in following up on my voicemail message today , i attach my resume below for  your review and consideration .  it ' s ironic that you called while i was putting the message together . i  will keep it short and look forward to speaking to you at your convenience .  best regards ,  paul  e . paul rowady , jr .  2300 west alabama , suite 69  houston , texas 77098  713 - 807 - 8624 home / fax  713 - 539 - 4541 mobile  epr @ pipeline . com  ( see attached file : paul rowady 2 . doc )\",0\n\"Subject: re : interview with the enron research group  you are quite welcome kin . we wish you the best in reaching your career  goals and we look forward to hearing from you in the future .  regards ,  shirley crenshaw  administrative coordinator  enron research group  \"\" kin tso \"\" on 11 / 01 / 2000 12 : 52 : 02 pm  to :  cc :  subject : re : interview with the enron research group  dear shirley ,  thank you so much for your email . after carefully considering my career  goals , i feel the associate program with a rotation in the enron  research group is a better fit . i am really interested in enron and i  would try to contact your colleagues in the associate program about this  issue before i schedule an interview with the enron research group . i  truly apologize for the inconvenience caused and i want to thank you  again for your kind assistance .  regards ,  kin tso  512 - 619 - 5323  - - - - - original message - - - - -  from : shirley . crenshaw @ enron . com  sent : tue 10 / 31 / 2000 12 : 16 pm  to : kin tso  cc : vince . j . kaminski @ enron . com ; stinson . gibner @ enron . com ;  zimin . lu @ enron . com ; tanya . tamarchenko @ enron . com ; molly . magee @ enron . com  subject : interview with the enron research group  good morning kin :  your resume was forwarded to the research group with enron north  america and they would like you to come in for an informal  interview  sometime next week . the following dates and times are available  within  our group . please let us know if either of these two dates fit  your  schedule .  monday , november 6 th :  8 : 00 am to 11 : 30 am  friday , november 10 th :  8 : 00 am to 11 : 30 am  since we prefer these interviews to begin at 8 : 00 am , it would  probably  be best if you came the night before , spent the night at a hotel  downtown  and then were able to be at the enron bldg by 8 : 00 am . please  let me  know if this is what you would like to do and we will make the  hotel  reservation .  i look forward to hearing from you .  best regards ,  shirley crenshaw  administrative coordinator  enron research group  713 - 853 - 5290  - winmail . dat\",0\n\"Subject: letter to academics  vince ,  ?  hi , sorry to bother you , but was wondering if you ' ve heard anything about  seeking approval to use the text in the letter i sent last week ? ? we would  like to send this out early next week so if you know of someone who i should  contact within corporate communications , please let me know .  ?  thanks , and hope all is well .  ?  julie\",0\n\"Subject: re : update - meteorologist search  great work mike !  i will arrange interviews with the london folks while i ' m there .  jen  from : mike a roberts 12 / 14 / 2000 09 : 54 am  to : jennifer fraser / hou / ect @ ect , jeffrey a shankman / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , jose marquez / corp / enron @ enron , stephen w  bennett / hou / ect @ ect  subject : update - meteorologist search  we have identified two good candatites who would be available for a london  interview the week of the 18 th :  1 . kerryn hawke  2 . stephen cusack  also strong but not available for that week is  3 . piero chessa ( working for ecmwf in italy )  we have a couple others here in the states if the london interviews don ' t  work out .  i am forwarding under separate cover kerryn and stephen ' s cv ' s with telephone  numbers to jen  - - - mike\",0\n\"Subject: re : introduction  i would be very happy to participate . thank you for thinking of us .\",0\n\"Subject: re : grades  thank you ! ?  you have been wonderful to work with this semester .  stay in touch and we ' ll see you next year .  - pam ( 713 - 348 - 6223 )  at 10 : 33 pm 5 / 4 / 01 - 0400 , vkaminski @ aol . com wrote :  pam ,  the students resent the documents .  the group members :  rakhi israni  felix feng lu  winny so  orlandotaylor  sanjay wankhade  ning zhang  grade : a  separately , i think i have sent you already :  jeffrey planck  grade : a  please , confirm this message .  vince kaminski\",0\n\"Subject: re : request for payroll reclassification - approved  joann ,  yes , sorry . 413 was the number on the form i received .  vince  enron property & services corp .  from : joann holloway 01 / 11 / 2000 02 : 01 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : request for payroll reclassification - approved  vince ,  on your reclass information , the company number indicated should be 0011 not  413 .  jo ann holloway  x 35957  vince j kaminski  01 / 11 / 2000 01 : 33 pm  to : stella l ely / hou / ect @ ect  cc : jeff kinneman / hou / ect @ ect , carmen chavira / hou / ect @ ect , michelle  hargrave / hou / ect @ ect , stephen wolfe / hou / ect @ ect , michael s  galvan / hou / ect @ ect , gary mccumber / hou / ect @ ect , billie  akhave / epsc / hou / ect @ ect , joann holloway / epsc / hou / ect @ ect , louis  allen / epsc / hou / ect @ ect , bradley stewart / hou / ect @ ect , carol coats / hou / ect @ ect  subject : request for payroll reclassification - approved  the following payroll reclassification request has been approved .  click on this link to view document - - >\",0\n\"Subject: following our stanford relationship  hi vince , i talked to tom gros today and metioned our desire to estabilish a  strategic relationship with nick bambos and his research effort . tom is very  excited about the idea and was willing to cut the check . i suggested that we  have more of a strategic relationship in mine ( enron / stanford ) and he  agreed to that as well . tom mentioned that greg whalley was interested in  estabilishing such a relationship . vince , could you follow this up and  ground this ? if you need any help in doing the leg work , i ' ll happy to do  that .  tom is excited about ebs research ' s role to support all of ebs including  bandwidth trading . he seems very interested in being our sponsor on the ebs  side . that would be very beneficial to us since he is involved in all senior  management decision through kevin hannon . vince , i would suggest that you  try to setup a meeting with kevin hannon and tom to discuss this further .  tom is also very interested in the new product development effort that larry  and i have been kicking around for some time . he wanted us to sit back and  think of structured products with better margins that blend & extend that  they are selling . he wanted to know now much more resource that we need in  that front . for this , i would like to get someone like meera natarajan . she  is an originator currently working in ees and have talked to zimin and  stinson . she is sufficiently analytical with commercial mind set to help with  new product ideas and to ground them .  regards ,  ravi .\",0\n\"Subject: fyi  due to the out of town deliveries , our cost for christmas  baskets will be over somewhat from the total estimated .  thanks  kevin moore\",0\n\"Subject: enron / stanford program  hello vince , stinson ,  thank you very much for hosting my visit at enron . i had a  very pleasant time there , and i found the meetings very  informative .  as discussed during my visit at enron , i am sending you below  a draft of the letter that would be needed to get the program  in place and rolling , and start the students working on it .  it took a while to find out what the appropriate process was  and how the letter should be structured . sorry for the delay .  if i may , i ' d like to visit enron again , sometime in august ,  to define the research agenda more precisely and prioritize  the problems to look at . i ' m in frequent contact with giuseppe ,  who is impressed by the environment there . we are trying to formulate  the research issues and problems to study , that would be of interest  to enron . the plan is this :  1 ) by august , giuseppe will have been there for almost 2 months  and will probably have a relatively good understanding of the enron problem  space .  2 ) i will work together with giuseppe till august to formulate a set of  good problems of :  a ) high practical importance  b ) high innovation potential  c ) serious scope .  3 ) i could visit in august ( say mid - august or so ) to :  a ) discuss these problems with you and get your feedback  b ) prioritize the problems and evaluate their impact  c ) make sure we ' re on the same page regarding research strategy  and execution path .  i hope we can fully set up the program at stanford before then , so  that i can bring on board one more ph . d . student to start his  doctoral work in this area .  i ' m all excited about our collaboration . i am even thinking of  starting a research seminar at stanford , specifically on these  research issues !  talk to you soon .  best regards ,  nick  draft of letter to be sent from enron to stanford .  prof . nicholas bambos  420 terman engineering center  management science & eng . dept . and  electrical engineering department  stanford university  stanford , ca 94305  dear nick ,  we are happy to provide gift funds of $ 100 , 000 per year , over  three years , to support a program in your research group , related  to bandwidth markets / trading and networking technologies .  enron would like to support research activities in the above  mentioned area , including pd . d . student work , research seminars etc .  there may also be opportunities to have the supported ph . d . students  do summer internships at enron , related to their research interests .  please find enclosed a check of $ 100 , 000 payable to stanford university  for supporting this research effort in your group during the first year .  best regards ,  name and title\",0\n\"Subject: enron global finance org changes  recently , jeff mcmahon , executive vice president and treasurer of enron  corp . , accepted the position of chief commercial officer of enron net works .  jeff ' s many accomplishments at enron global finance ( \"\" egf \"\" ) include over $ 30  billion of closed financings and an upgrade of enron ' s credit rating by  moody ' s to baal . we wish jeff well in his new endeavor .  ben glisan , vice president and head of egf ' s structured finance business ,  will assume jeff ' s responsibilities as vice president and treasurer of enron  corp . ben joined enron in 1996 from arthur andersen where he was responsible  for managing structured transactions with enron . prior to arthur andersen ,  ben worked at coopers & lybrand providing accounting and finance services  principally to financial institutions . ben will be a member of the enron  corp . executive committee .  for additional details regarding egf ' s organizational changes , please see the  attached memo .\",0\n\"Subject: re : ewrm outline  vince  thanks - based on a \"\" speed read \"\" it would appear that srm sits neatly in the  volumetric part of your framework . regarding systems i am keen to preserve  the work kevin has already done and i suspect we can eventually use the  visualization tools in the risktrac front end to display the results should  we require .  to be honest , i feel a good deal more comfortable that there is already a  framework and initiative in place - its very easy to feel like the \"\" angry  lone voice \"\" in an effort like this - fortunately the practitioners of the art  of risk management generally travel in a similar direction !  i shall make sure our efforts remain in congruence .  rgds  dp  vince j kaminski @ ect  10 / 27 / 2000 04 : 21 pm  to : david port / market risk / corp / enron @ enron  cc :  subject : ewrm outline  david ,  this is the outline of the ewrm project .  vince\",0\n\"Subject: enron research and ebs engineering and operations group technical  forum  joe ,  i would like to invite you to an off - site meeting of john griebling ' s  organization  and the research group .  date : april 27 - april 29  location : breckenridge , colorado  as you know , john griebling is managing the network design and construction  project  currently under way in ebs . the research group is actively involved in this  effort  which requires advanced quantitative skills in the area of stochastic  optimization and  stochastic processes ( for modeling and forecasting internet traffic flows ) .  the objective of this meeting is to develop common language and accomplish  transfer  of skills between the two groups , to facilitate cooperation on this project  in the future .  we are inviting ken rice and kevin hannon to this meeting . we would  appreciate if you could  speak , together with kevin and ken , on strategic directions of ebs . it is  important for a group  of technical people , with relatively specialized technical skills , to  understand the big picture .  i am attaching the preliminary agenda for this meeting .  vince kaminski\",0\n\"Subject: pac enrollment  last year the enron political action committee ( pac ) launched a campaign to  become a \"\" million dollar pac \"\" . enron employees , who provide all of the  funding for the pac , responded and the enron pac reached its objective ,  becoming one of the largest corporate pacs . this year we face a new  challenge . with the sale of eog , the announced sale of pge and normal  employee turnover , we have lost a significant number of consistent  contributors . we are seeking your support . if you are not a member , please  join . if you are a member , we hope you will consider increasing your  contribution .  the enron pac is an essential tool in our effort to promote sound public  policy . our pac funds support local , state and federal candidates , of both  parties , who support open markets , deregulation and customer choice . amounts  contributed may be used to make political contributions in connection with  federal and state elections and are subject to the limits of the federal  election campaign act . while our pac has grown thanks to our employee  contributions , it still generates just a fraction of the expenditures of  those who oppose these ideals .  this year , as always , we face challenges and opportunities for every one of  our businesses , including such issues as taxation and regulation of  e - commerce , electric industry restructuring , regulation of derivatives ,  international trade and investment legislation , pipeline safety , local and  state decisions affecting the siting and interconnection of power plants and  a variety of environmental and tax issues . enron has a long and successful  track record of supporting and advancing good public policy . that track  record depends on access to and regular communication with , decision makers .  the pac provides that access - - it shows policy makers that real voters care  about what they are doing .  one of the best things about enron is that we don \u0001 , t just take things as they  are . we challenge the status quo . we ask why . we change things . the pac  helps us do that . we need you to help the pac . sign up today - and please  consider the following contribution guidelines :  manager $ 500 / year  director $ 750 / year  sr . director / general manager $ 1 , 000 / year  vice president $ 2 , 500 / year  sr . vp / managing director $ 3 , 500 / year  executive committee $ 5 , 000 / year  all contributions are voluntary and these guidelines are merely suggestions .  you are free to contribute more or less than the guidelines suggested and  enron will not favor or disadvantage anyone by reason of the amount of their  contribution or their decision not to contribute . you may refuse to  contribute without fear of reprisal .  only u . s . citizens and resident - aliens living in the u . s . can contribute to  the enron pac . the maximum contribution is $ 5 , 000 per year per individual .  an individual may not contribute more than $ 25 , 000 to all federal candidates  and committees within a calendar year . the law requires that enron report  name , address , employer and occupation for every person who contributes over  $ 200 / year .  no portion of any contribution is deductible as a charitable contribution for  federal income tax purposes .  thanks for your support ! sign up now , or revise your current contribution  level by connecting with the pac intranet site :  http : / / pacmembers . enron . com\",0\n\"Subject: precious metals var  jason ,  after our brief discussion last night i think i should discuss a few of the  issues i have with respect to calculating a var on the deal that you are  proposing . the var model , as i illustrated , is set up to accept a term  structure of delta positions , prices and vols and it may be difficult to  translate the ' silver mine ' position into these inputs .  i do not think that we can simply take the net silver content of the mine and  then make some assumptions about vol and price . the var model  also assumes a certain amount of liquidity in the market and a 1 day holding  period .  to do this properly i would need to understand fully how the deal is priced  as these sensitivities are ultimately what will effect the change in mtm  in the future and that is essentially what var is supposed to predict .  if you need me to work on this then you need to contact steve who will help  to prioritise my time . i will also need to consult with vince kaminski and  tanya tamarachenko in houston for advice .  rac will also assist in the process .  please contact me if you have any further questions ,  kirstee  x 34529\",0\n\"Subject: re : stanford mba - interview  hi vince ,  unfortunately , i have not heard from him . he also forwarded his resume to  mauricio mora , who asked if we could interview him . when i asked celeste  about it back then she decided against it . if you need some help tracking  him down , let me know .  thanks ,  althea  vince j kaminski @ ect  04 / 16 / 2001 01 : 53 pm  to : althea gordon / na / enron @ enron  cc : vince j kaminski / hou / ect @ ect  subject : stanford mba - interview  althea ,  i was trying to get in touch with this guy .  did he contact you by any chance ? he missed  the interviews on the campus .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 16 / 2001  01 : 51 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" seade , juan j . \"\" on 03 / 19 / 2001 01 : 15 : 56 am  to : \"\" ' vkamins @ enron . com ' \"\"  cc :  subject : stanford mba - interview  dear vincent ,  as i told you on the phone on friday , i am very interested in a summer  internship at enron . i would like to point out that i want to pursue a  career in trading , and i am especially interested in derivatives . given that  enron is a pioneer in the market making of energy , broadband and weather  derivatives , i find it a company i would be most interested in working for .  i believe that you will find my background of interest to your firm , and i  hope to be interviewed by yourself and other colleagues of yours . i have  final exams from march 19 - 22 , but would be most willing to travel to houston  for interviews any time from friday march 23 rd onwards . i hope to hear from  you soon .  best regards ,  juan seade  mba class of 2002  stanford business school  796 escondido road apt . 29 c  stanford , ca 94305  tel : ( 650 ) 497 - 3705  email : jseade @ stanford . edu  >  - resume juan seade . doc\",0\n\"Subject: credit risk update  vince ,  per bill ' s request , attached is the credit supplement from the board meeting .  stephanie  3 - 9283\",0\n\"Subject: re : e - commerce & continental europe  anjam ,  this would be a good opportunity to update the content on the intranet site  and expand the coverage into new areas . can you arrange some it resources  for us ? if everyone in research works on developing the content , we just  need it to publish it out to the intranet .  thoughts ? ?  - dale  enron europe  from : anjam ahmad 15 / 06 / 2000 10 : 01  to : sven becker / fra / ect @ ect  cc : dale surbey / lon / ect @ ect , vince j kaminski / hou / ect @ ect , stinson  gibner / hou / ect @ ect , joe gold / lon / ect @ ect  subject : e - commerce & continental europe  hi sven ,  thanks a lot for your note - i think it would be great to see what we can do  to help you & joe ' s business units . plenty of our knowledge is no longer  proprietary in that quite a lot of this information is now in the public  domain - we can sit down and discuss this on thursday afternoon if that works  for you .  regards ,  anjam  x 35383  sven becker  14 / 06 / 2000 19 : 10  to : anjam ahmad / lon / ect @ ect  cc : clemens mueller / lon / ect @ ect  subject : re : research group intranet site  anjam , congratulations on your initiative . i appreciate that you share this  information throughout enron .  as you may know , my group is working with joe ' s business units to create  so - called market hubs .  i see great potential in sharing some of the information that you have  acucmulated and that is not proprietary to enron .  i would appreciate if we could sit down tomorrow and talk about the  possibility to leverage on the existing know - how .  regards  sven  please respond to anjam ahmad / lon / ect  to : ect europe  cc :  subject : research group intranet site  research group intranet site  following the recent lunch presentations , there has been considerable  interest from enron europe staff in improving their quantitative skills ,  helping to maintain our competitive advantage over competitors . we have  recently created the research group ' s intranet site which you can find on the  enron europe home page under london research group . the site contains an  introduction to the group and also information on :  derivatives pricing  risk management  weather derivatives  extensive links  weather derivatives  credit risk  extensive links database  if you have any questions or issues on quantitative analysis ( including  hedging and risk management of derivatives ) please don ' t hesitate to get in  touch .  regards ,  anjam ahmad  research group  first floor enron house  x 35383\",0\n\"Subject: march ny real options conference  please find attached the final program for an exciting conference on \"\" real  options valuation in the new economy : internet / e - commerce ,  r & d / pharmaceuticals , energy . \"\" the conference , organised in new york city  march 13 - 15 by the real options group and co - sponsored by ernst & young  llp , is addressed to a corporate audience .  the chairman of the conference is prof . michael j . brennan of ucla who will  deliver the opening address , and the keynote speaker is prof . stewart c .  myers of mit . many of the world / s thought leaders in real options  analysis , along with prominent experts from many leading corporations will  also share their ideas and experiences .  please note that the deadline for hotel registration is february 21 ( see  the attached brochure for hotel details ) and conference fees increase by  20 % for those registering after march 1 . the ( full ) conference brochure and  on - line conference registration are available at our website www . rogroup . com  we hope that you will be able to participate and would appreciate it if you  could also communicate this announcement among other interested colleagues .  in fact , it would be most helpful to us and would be greatly appreciated , if  you could send me ( also cc . to amicaliz @ sda . uni - bocconi . it ) a list of 5 - 10  colleagues to whom we can send the electronic version of the brochure .  best wishes ,  lenos trigeorgis  president , real options group  - rognyconference . pdf  lenos trigeorgis  professor of finance  university of cyprus  dept of business  75 kallipoleos , po box 20537  cy 1678 nicosia cyprus  tel : + 357 2 892261  fax : 339063\",0\n\"Subject: contacts at uh for \"\" econo - physics \"\"  vince ,  these are the contacts from uh .  i would recommend that for a first contact the following people be involved :  larry pinsky ( physicschair )  joe mccauley ( professor )  george reiter ( professor )  their coordinates and some schedules are below . if larry is out of town ,  prof . gunaratne would be a good alternative .  please let me know how i can help further .  yannis  - - - - - - - - - - - - - - - - - - - - - - forwarded by yannis tzamouranis / hou / ect on 05 / 08 / 2000  03 : 11 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" prof . lawrence pinsky \"\" on 05 / 08 / 2000 09 : 10 : 54 am  to : yannis . tzamouranis @ enron . com  cc : jenni @ mailman . enron . com , jmccauley @ uh . edu , greiter @ uh . edu , gemunu @ uh . edu  subject : contacts at uh for \"\" econo - physics \"\"  yannis :  let me give you the names and contact information regarding the  appropriate personnel here to include in an initial discussion regarding  the prospects for developing a program here in ( we have to find a better  name ) \"\" econo - physics . \"\" for an initial meeting it is reasonable to include  professores mccauley and reiter as well as myself , if i am available . if i  am not available you should consider including professor gemunu gunaratne ,  our current associate chair and a theoreticial with an interest in this  area in his own right .  professor joseph mccauley  phone : 713 743 3528  fax : 713 743 5389  email : jmccauley @ uh . edu  professor george reiter  phone : 713 743 3527  fax : 713 743 3589  email : greiter @ uh . edu  professor & chair lawrence pinsky  phone : 713 743 3552  fax : 713 743 3589  email : pinsky @ uh . edu  or an alternate for me :  associate professor and associate chair gemunu gunaratne  phone : 713 743 3534  fax : 713 743 3589  email : gemunu @ uh . edu  also , fyi , one other new faculty member with a potential interest in this  field is :  assistant professor ( effective 6 / 1 / 2000 ) kevin bassler  phone : 713 743 3568  fax : 713 743 3589  email : bassler @ uh . edu  general administrative contact :  ms . jennifer chin - davis , department business administrator  phone : 713 743 3524  fax : 713 743 3589  email : jenni @ shasta . phys . uh . edu  fyi , i will be in houston may 17 - 24 , june 9 , 19 - 23 . if the meeting is held  on another date , please include prof . gunaratne in my place . . .  larry\",0\n\"Subject: re :  hari ,  i shall send you a reprint of the article . i had to  cancel my presentation at san antonio .  vince  shirley ,  please , send a copy of the article to hari .  hari natrajan on 02 / 28 / 2001 06 : 45 : 29 am  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc :  subject :  dear mr . kaminski ,  i am a doctoral student at the indian institute of management bangalore ,  india . my area of interest is the energy sector , especially electricity  derivatives . i am interested in obtaining a copy of the following items :  1 ) your presentation \"\" current challenges in modeling power price volatility \"\"  at the session on price volatility & probabilistic methods in the energy  markets . ( http : / / www . informs . org / conf / sanantonio 2000 / / talks / md 29 . html )  2 ) your chapter \"\" the challenge of pricing and risk managing electricity  derivatives \"\" in the book ' the us power market ' , risk publications .  i would appreciate it if you could send me a soft / hard copy of the same .  thank you ,  yours sincerely ,  hari natarajan  fellowship student  indian institute of management bangalore  bannerghatta road  bangalore 560076  india  tel : 91 - 80 - 6993056  fax : 91 - 80 - 6584050  e - mail : hnatraj @ iimb . ernet . in\",0\n\"Subject: fw : london work  hi ,  how are you ? london seems to be the same as when i left in august - no sun ,  cold , serious looking people , expensive , etc . in addition , we have had may  day riots , a post office bombing , train strike , etc . not to mention all the  excitement in enron credit .  it would be nice to know who i am supposed to be reporting to . i am getting  loads of conflicting messages - as illustrated in the forwarded email from  vasant . according to you and slava , the strategy paper / duffie report seems  to be a higher priority . however , vasant seems to indicate ( in his forwarded  email ) that this is not the priority at the moment .  in addition , there seems to be lots of chaos in enron credit - not only in  the houston office , but even more so in the london office . this brings to  mind a russian proverb i learned from slava when he expressed his views on  the current state of enron credit - \"\" a fish rots from the head . \"\"  finally , i would like to know exactly what you want me to write in this  duffie report : do you want to hear what enron credit would like to hear -  that all they need is for us to develop a private firm model for their  exisiting \"\" infrastructure \"\" ? or do you want to hear what i really see , hear ,  read , etc . ? if the latter is true , then i may need to write two reports ,  because what i am learning does not look too good and would probably not make  the enron credit personnel too happy .  well , i think i have said enough for now . look forward to your feedback .  thanks ,  iris  - - - - - original message - - - - -  from : shanbhogue , vasant  sent : friday , may 04 , 2001 3 : 39 pm  to : mack , iris  cc : dhar , amitava  subject : london work  hi iris ,  amitava must have told you that both he and i are getting swamped with work  here . as a result , we expect you to take the lead in scoping the enron  credit project and making sure the infrastructure is readied . you should  also make sure to understand the econometric / data analysis software side of  the project - - this is probably more important than preparing a document for  duffie right now . you should definitely sit with ben / george and actually run  the software with them to get a feel for how it is to be used . but we also  need to be able to try out potential other ways of analyzing data . both  amitava and i will help as best as we can , and answer any direct questions ,  but we will have limited time to review documents , etc . i expect amitava to  get heavily involved once data starts coming , but we expect you to have  already set up the infrastructure etc for the data .  hope the trip is going well . would you be extending the trip for some more  time ?  vasant\",0\n\"Subject: re : energy conference  mark ,  we are really swamped and i would like to keep our involvement in  conferences to a reasonable minimum . i can promise that we shall help you  with a future conference if it happens to be in houston .  vince  mark thabet on 01 / 10 / 2000 12 : 58 : 56 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : energy conference  vince :  i am sorry to hear about your scheduling conflict . your expertise would have  been a great value to our conference . is there anyone else at your company  whom you could recommend as a speaker ? thanks again for your time .  mark thabet  vp , energy shirley crenshaw  subject : re : energy conference  mark ,  i am sorry to inform you that due to a scheduling conflict i cannot  speak at  this conference .  i want to thank you for considering me as a speaker .  vince kaminski  mark thabet on 01 / 06 / 2000 09 : 36 : 23 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : energy conference  vince :  i have attached a rough draft of the agenda with the topics being  considered  for the conference . it is being held in washington , dc on june  19 - 20 , 2000 .  if your schedule allows , please join our speaking faculty . you will  notice  that the topic on \"\" forecasting and measuring your exposures to  energy price  risk \"\" is not currently on the agenda . we can add it once you have a  chance  to check your schedule . i also ask that you make recommendations of  any  colleagues or industry professionals who can add expertise to the  conference  as well .  if you have any questions or concerns , please do not hesitate to  contact me  at 212 - 661 - 3500 x 3181 . i look forward to hearing from you . thank  you once  again for your time and assistance .  >  mark thabet  vp , energy & utilities division  institute for international research  708 third avenue , 4 th floor  new york , ny 10017  t : 212 - 661 - 3500 x 3181  f : 212 - 599 - 2192  >\",0\n\"Subject: organization announcement  enron purchases billions of dollars of products through its wholly owned  subsidiaries and venture companies worldwide . historically , the company has  conducted these purchases in a highly fragmented , decentralized manner  allowing each of the operating units the discretion to source their  requirements in a manner that optimizes unit performance . today , however ,  with the implementation of sap and the profound explosion in  internet / intranet - based technologies , we believe the company should change  its direction and focus on aggregating its demand for goods and strategically  sourcing these requirements on a global basis . we believe that there are  significant cash savings to be extracted by the company and also commercial  potential for the formation of a highly profitable , business - to - business  e - commerce venture .  effective february 1 , 2000 , enron will form a new global strategic sourcing  unit . this new unit will consolidate the current successful strategic  sourcing initiatives underway in the gas pipeline group , global asset  operations and enron corp . initially , global strategic sourcing will focus  on aggregating enron \u0001 , s internal , joint venture and business partner demand  for products and services with the objective of creating a future  business - to - business e - commerce venture .  it gives us great pleasure to announce that george wasaff , managing director ,  will lead this new global initiative . george will report directly to mike  mcconnell , chief executive officer for global technology .  george has been with enron for fourteen years and has held many senior  executive positions , the most recent of which was managing director of enron  south america ' s wholesale operations . george was also the interim chief  executive officer of elektro from july 1998 through june 1999 and chief  executive officer of transportadora de gas del sur s . a . ( \"\" tgs \"\" ) from june  1995 through february 1998 . george has also held numerous commercial  positions including vice president and country manager , mexico for enron  international and vice president of marketing for transwestern pipeline  company .  please join us in supporting this new global initiative and congratulating  george in his new role with the company .\",0\n\"Subject: eol wti historical trade simulation - more profitable trading  strategy  please ignor my previous mail regarding the same issue , which contains some  typos .  greg and john ,  i found that by reducing the volume per trade and increasing daily number of  trades ( keeping the  total volume per day constant ) , we can be more profitable . this is partially  because in a trending market  we lose less money by following the market more closely . for example , suppose  market move from  $ 30 to $ 35 . if per trade volume is 10 , 000 bbl and the half bid - offer spread  is $ 1 for simplicity , we take 5  trades of short positions , the total mtm for that day is  ( - 5 - 4 - 3 - 2 - 1 ) * 10 , 000 = - $ 150 , 000 and total trading  volume is 50 , 000 bbl short . if per trade volume is 50 , 000 bbl , we take one  trade , the total mtm is  - 5 * 50 , 000 = - $ 250 , 000 . thus the net difference between the two trading  strategies is $ 10 , 000 for that  particular day .  therefore it seems that by reducing per trade volume and increasing the  number of trades , we can be more  profitable as a market maker .  i rerun a scenario that stinson sent to you on dec . 27 where he used per  trade volume of 30 , 000 bbl .  i reduce the number of trade to 10 , 000 while increasing the number of trades  by factor of 3 . almost in all  cases , i saw increased profitability . see the colume marked \"\" change \"\" for  dollar amount change in millions .  please let stinson or me know your thoughts on this .  regards ,  zimin lu  x 36388  as compared to\",0\n\"Subject: an apology  kevin -  i need to apologize to you for speaking out - of - turn yesterday about  work - in - progress . any model our group has of the natural gas system remains  completely untested and unvalidated . i have not been asked by any one of my  superiors , vasant or wince , to give advice to anyone at enron concerning  natural gas ; i am not an expert in trading natural gas . my work exists within  a large and professional group , and , to the point , vince alone will decide  when , and if , any gas model is suitable for dissemination within enron .  sincerely ,  clayton vernon  manager , research\",0\n\"Subject: friday off  - - - - - - - - - - - - - - - - - - - - - - forwarded by maureen raymond / hou / ect on 05 / 31 / 2000  02 : 57 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  leandro ibasco @ enron  05 / 31 / 2000 09 : 59 am  to : shirley crenshaw / hou / ect @ ect , vanessa carranza / corp / enron @ enron  cc : vasant shanbhogue / hou / ect @ ect , harry arora / hou / ect @ ect , suresh  raghavan / corp / enron @ enron , jeff bartlett / hou / ect @ ect , maureen  raymond / hou / ect @ ect  subject : friday off  hi ,  please note that i will be taking a vacation day on friday , june 2 to study  for the cfa exams .  regards ,  roy\",0\n\"Subject: lng \"\" book \"\" meeting  hello bjorn :  vince wanted me to include you in this meeting also . hope you can come .  shirley  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 08 / 30 / 2000  07 : 44 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  shirley crenshaw  08 / 29 / 2000 09 : 06 am  to : sally beck / hou / ect @ ect , eric groves / hou / ect @ ect , doug . arnell @ enron . com ,  vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect  cc :  subject : lng \"\" book \"\" meeting  hello everyone :  the next lng \"\" book \"\" meeting has been scheduled for wednesday ,  september 6 at 2 : 00 pm in ebl 9 c 2 .  thanks !  shirley crenshaw  3 - 5290\",0\n\"Subject: var  david ,  during today ' s var coordination meeting we had a discussion of issues  related to mapping of the forward price curves into core locations .  mapping is a necessity dictated by the limitations of the computer system :  we have to reduce the dimensionality of the problem to stay within the bounds  of available cpu memory . also , in some cases the quality of price discovery is poor  and it ' s difficult to model the price curves independently : we solve the problem by mapping  them into more liquid and better behaved core locations curves .  we have agreed on the following :  1 . winston will investigate the it side and determine to what extent we can increase the number  of forward price curves that are simulated as basic ( core ) curves . he will investigate the impact of a larger  number of the core curves on the time required to complete the var run .  2 . the curves associated with the biggest 10 - 20 positions in each commodity should be  modeled as core curves ( i . e . no mapping into other locations ) . it makes sense to monitor  the biggest risks separately and avoid aggregating them into less transparent aggregates .  3 . the results of an automated clustering ( mapping ) procedures should be systematically  monitored by a human and corrected if they misrepresent the risks of the trading positions .  this responsibility should be vested with one person ( right now the responsibility is  dispersed through the organization and this means in practice that nobody  is responsible ) . research can allocate one person to this task ;  cooperation of trading and rac will be critical .  vince\",0\n\"Subject: re : action learning project and enron tour  hi vince !  i ' ll call you monday to further discuss this ! i ' ll be heading to atlanta for  a forbes conference and meeting at emory , but will call you at my first  opportunity !  thanks for the information about the meeting with bob !  thanks !  - - christie .  - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 11 / 04 / 2000  11 : 04 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  11 / 02 / 2000 01 : 55 pm  to : christie patrick / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , vkaminski @ aol . com  subject : re : action learning project and enron tour  christie ,  let ' s meet to discuss this project . i need more information from you about it .  by the way , i shall meet bob westbrook on wednesday to discuss unrelated  issues .  vince  christie patrick  11 / 02 / 2000 12 : 33 am  to : cmiller @ rice . edu , cindy derecskey / corp / enron @ enron , michael b  rosen / hou / ect @ ect , steven j kean / na / enron @ enron , vince j  kaminski / hou / ect @ ect , grwhit @ rice . edu , westbro @ rice . edu , mark  palmer / corp / enron @ enron  cc :  subject : action learning project and enron tour  hi carrie ,  it was great meeting with you and dean whitaker again last friday , as well as  mr . westbrook .  as we discussed , i have submitted the action learning program materials to  vince kaminski , our managing director of risk analysis and corporate  research . i ' ll be following up with him , and his recommendations for project  proposals next week .  also , i ' ve discussed with our university affairs team setting up the  faculty tours - - we ' re ready when you are ! ! the sooner the better - - i ' d love to  get these in pretty immediately , and in any event , before the reception at  the end of the month . i \"\" ll have cindy derecskey in my group email you - - she  is prepared to set these tours up .  i look forward to continuing to develop the multiple potential dynamics of  the enron - rice relationship !  thanks !  - - christie .  ps : thanks so much for the crystal rice owl - - my participation as a judge in  the rice invitational case competition was my pleasure indeed !  - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 11 / 02 / 2000  12 : 23 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  carrie miller on 11 / 01 / 2000 12 : 47 : 17 pm  to : christie _ patrick @ enron . com  cc : grwhit @ rice . edu , westbro @ rice . edu  subject : action learning project and enron tour  christie ,  i enjoyed visiting with you last week at the jones school . thanks for  taking time to come see us . i wanted to follow up with you regarding the  action learning project program and enron tour . we hope to have enron as  part of the program in 2001 . please let me know how i can help make this  happen . i look for the program to be full before the deadline of december lst . also , i am happy to help organize a group to tour enron . if you were  to participate in the alp program , january / february might be a good time to  put something together with key faculty and the alp team . let me know your  thoughts .  again , many thanks for your continued support of the jones school . i look  forward to hearing from you soon .  carrie  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  carrie chamberlin miller  director of mba program  jesse h . jones graduate school of management  rice university  6100 main street , ms 531  houston , texas 77005 - 1892  phone : ( 713 ) 348 - 5260  fax : ( 713 ) 348 - 5251  e - mail : cmiller @ rice . edu  http : / / www . ruf . rice . edu / ~ jgs /\",0\n\"Subject: re : corporate allocation from enron research group  vera :  vince wants to talk to becky pham before we do this - i have a call in to her  for a short meeting . i will let you know as soon as possible .  thanks !  shirley  12 / 07 / 2000 11 : 21 am  vera apodaca @ enron  vera apodaca @ enron  vera apodaca @ enron  12 / 07 / 2000 11 : 21 am  12 / 07 / 2000 11 : 21 am  to : shirley crenshaw / hou / ect @ ect  cc :  subject : corporate allocation from enron research group  shirley , i just talked to you over the phone and here is the information :  the adjustment total is $ 135 . 6 . nng receives a credit of $ 109 and tw  $ ( 26 . 6 ) . pls make sure it gets into the december business . thanks .  - - - - - - - - - - - - - - - - - - - - - - forwarded by vera apodaca / et & s / enron on 12 / 07 / 2000  11 : 18 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  kimberly watson  12 / 06 / 2000 02 : 07 pm  to : pinnamaneni krishnarao / hou / ect @ ect , vera apodaca / et & s / enron @ enron  cc :  subject : corporate allocation from enron research group  krishna ,  attached is a spreadsheet with the figures we discussed earlier . for  july - dec , ets will keep half of the amount allocated ( equivalent to 1 . 5  employees , $ 135 . 6 ) from the corporate allocations to ets . if this looks ok  to you , i would like to have vera work with shirley to handle the accounting  adjustment similar to mid year . many thanks , kim .  vera ,  here is the year 2000 spreadsheet . as you will see , we will need to work  with shirley crenshaw ( x 35290 ) with enron research group to coordinate a  similar accounting adjustment to the one we made mid year . i will send the  year 2001 budgeted spreadsheet to you in the next few days ( just in case it  changes with the approval of the science workorder ) . please call me if you  have any questions about this spreadsheet . thanks , kim .\",0\n\"Subject: times 2 filing units  pat :  recently , i talked with you about ordering another filing unit . it turns out that we need 2 more filing units . please order them the same size as the floor to ceiling cabinet we have . have the inside of the cabinets configured as follows :  1 cabinet should have 5 shelves  1 cabinet should have 6 shelves  when interstore was here today reconfiguing 2 of our existing cabinets , they removed 8 shelves that they are going to use on these new units .  please price these 2 new units and charge them to co . # 0413 , rc # 107043 . please let me the prices and approximate delivery date . also , let me know if you need anything else . thanks . anita\",0\n\"Subject: london exotica library migration  fyi  - exotic library :  issue : the london version is different from the houston version .  the problem is that some bugs in the london version were found .  temporary solution : bugs were immediately fixed at a local level .  permanent solution : the london exotic version will be replaced by the  houston exotic version .  the houston version is expected to be robust .  sharad ( london research ) is spending this coming week in houston .  when sharad is back to london , the houston version will replace the london  version .  approach : steven leppard is designing a regression testing procedure that  will involve it to fully test the similarity of the two versions .  the procedure is expected to take at least one month from commencement .  hopefully , no discrepancies will be found .  in the adverse case it happens , it will be necessary to conduct an analysis  to decide what is wrong .  if necessary further testing and development has to take place .  rodrigo\",0\n\"Subject: java for managers ! ! !  vince ,  durasoft ( who just taught the java class for our group ) offers a 3 - day short course in java for managers . details are below , if you are interested .  - - stinson  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 04 / 16 / 2001 12 : 16 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" siva thiagarajan \"\" on 04 / 16 / 2001 11 : 25 : 50 am  please respond to \"\" siva thiagarajan \"\"  to :  cc :  subject : java for managers ! ! !  hi stinson ,  thanks for meeting with us on thursday . we enjoyed  talking with you .  as per our discussion , i have attached the course  outline of java for managers along with this email .  after our conversation with you we think this course  may be a little bit heavy for your group . but we can definetly  take it down to concepts level and make it appropriate for  our audience . please review and let me know , if this  course would be of value to you . this is a 3 day course  and costs $ 11 , 000 ( maximum of 15 students ) .  regards ,  - siva  - oojavaformanagers . doc\",0\n\"Subject: tuesday interview  rachel ,  i would like very much to interview howard but i am in  philadelphia on tuesday .  vince\",0\n\"Subject: re : backwardation hedge strategy  wendy ,  i did not . i shall send somebody to your location to pick it up .  vince  wendy king @ enron  08 / 03 / 2000 01 : 12 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : backwardation hedge strategy  hi vince ,  just curious if you had a chance to review the docs i sent yet ?  thx  wendy  x 35814\",0\n\"Subject: kirstee ' s role in london  vince :  this is precisely the concern i have for kirstee . steve tells me that she is  very imaginative and eager to try to add value , but she has no local  supervisor to help push some of her ideas . i will give you an update of our  discussion later and solicit your suggestions .  grant .  - - - - - - - - - - - - - - - - - - - - - - forwarded by grant masson / hou / ect on 07 / 25 / 2000 09 : 07  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  kirstee hewitt  07 / 25 / 2000 08 : 48 am  to : grant masson / hou / ect @ ect  cc :  subject : meeting today  hi grant - as anjam has set up a meeting for 9 : 30 your time how about we try  and talk afterwards . originally we said 10 : 00 your  time but i guess that the mg meeting will take longer than half an hour . are  you free around 10 : 30 your time ?  i think some of the communication problems i originally had with anjam have  been resolved ( although it was a difficult situation to interpret ) however , i  would very much like to discuss the situation that i am in concerning my  immediate management .  i have felt that over the last month i have been floundering a little and  have not really been able to turn to anyone in london for direction  concerning var ( although as expected steve has been very helpful to give me  an idea on how to proceed theoretically ) . i do have many of my own ideas  although i think i need to obtain some kind of authority to start any  substantial work . at the moment i feel like i am doing a lot of small things  and am worried that at some stage someone is going to ask the question -  what exactly does she do over there in research ? ? ?  i have talked to rodrigo lamas ( rac model validation new hire ) and he has  helped me to focus on some points i had already made .  as a quick summary i have drawn up a memo which outlines some of the points i  think need to be addressed as far as the var model is concerned ( i could do a  similar memo for the credit reserve model but to start have focused my  comments on market risk ) .  it is a bit rough and ready ( pls excuse any appalling spelling mistakes ! ) but  i think it will help you to see what i have been thinking about since i have  been here .  i do think that the most important issue is that concerning the origin of the  vol / price curves and how they are constructed .  cheers  kirstee\",0\n\"Subject: free two week ft - online trial  - - - - - - - - - - - - - - - - - - - - - - forwarded by mike a roberts / hou / ect on 04 / 12 / 2000  12 : 34 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  rita hartfield @ enron  04 / 12 / 2000 10 : 32 am  to : mike a roberts / hou / ect @ ect , mary solmonson / hou / ect @ ect , amy  oberg / hou / ees @ ees , john a cote / hou / ect @ ect , elizabeth linnell / hou / ees @ ees ,  lynnette barnes / hou / ees @ ees , bruce ferrell / hou / ect @ ect , amr  ibrahim / enron _ development @ enron _ development , fiona grant / lon / ect @ ect , michael  grimes / enron _ development @ enron _ development , kyran hanks / lon / ect @ ect , julia  kazibwe / enron _ development @ enron _ development , patrick keene / hou / ees @ ees , harry  kingerski / hou / ees @ ees , valeria lima / enron _ development @ enron _ development ,  robert neustaedter / enron _ development @ enron _ development , carol  north / enron _ development @ enron _ development , mike g  cc :  subject : free two week ft - online trial  enron has been given a two week free trail [ until 4 / 25 / 00 ] for ft online .  the free trial has unlimited users so please feel free to pass this along to  anyone who may be interested .  various persons within enron currently purchase selected hard copies of ft ' s  newsletters for 18 , 331 british pounds . it would be much more efficient and  cheaper if all eleven newsletters [ 13 , 617 british pounds for 2 users plus  incremental costs for each additional user ] were purchased on - line and the  cost shared amoung the users .  - - - - - - - - - - - - - - - - - - - - - - forwarded by rita hartfield / corp / enron on 04 / 12 / 2000  11 : 15 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  vanessa . norton @ ft . com ( vanessa norton ) on 04 / 12 / 2000 03 : 54 : 04 am  to : rhartfi @ enron . com  cc :  subject :  dear rita  following our conversation yesterday , i am pleased to offer you two weeks  trial  access to our 22 online energy newsletters .  the prices for a years subscription to our online newsletters are as follows :  product number of users price ( for all eleven newsletters together )  oil market report 2 o 9 , 530 . 00  aisa gas report 3 ol 1 , 120 . 00  uk gas report 4 ol 2 , 180 . 00  power in aisa 5 ol 3 , 240 . 00 ( o 900 . 00 per extra user )  international coal report 10 ol 7 , 740 . 00 ( o 734 . 00 per extra user )  power in latin america 25 o 28 , 750 . 00 ( o 544 . 00 per extra user )  middle east energy  european energy report  african energy  global private power  global water report  the prices include a multiple product discount ( for example , 2 users for all  eleven newsletters would normally be ol 3 , 617 . 00 ) and as you will see the price  for extra users decreases by quantity of users to the publications .  your trial will last until 25 / 4 / 00 .  please find enclosed the access codes to ft energy online .  go to www . online . ftenergy . com  click on login and type in the following :  iu enront  password : enront  the current functionality of the service includes a fully searchable archive  that goes back to the first issue , an advanced full text search , acrobat pdf  files of the printed newsletter that can be downloaded for personal use in its  original printed version and the ability to download tables in csv format into  excel files .  please do not hesitate to contact me if you have any further questions about  the service or wish to have prices for individual publications sent .  i look forward to your comments .  yours sincerely  vanessa norton ( + 44 207 896 2282 )  ft energy online  * please visit the web site of the financial times at : *  * http : / / www . ft . com *  * *  * this e - mail is intended for the use of the addressee only and may *  * contain confidential information . if you are not the intended *  * recipient , you are hereby notified that any use or dissemination *  * of this communication is strictly prohibited . *  * if you receive this transmission in error , please notify us *  * immediately then delete this e - mail .  * *  * *  * postmaster @ ft . com * \",0\n\"Subject: my accomplishment  attached please find a brief description of my accomplishment during 7 / 1 / 00  to 11 / 14 / 00 , which might be useful for the pep system .  - chonawee\",0\n\"Subject: re : enron / stanford program  nick ,  sorry for the delay in my reply . august the 21 st will work the best , since  jim fallon ( head trader for bandwidth ) will be out the following week . we  will set up a meeting with him . kevin hannon is out , however , and there is  no need for you to stay for dinner if you prefer to head back earlier in the  afternoon .  should you want help in making any travel arrangements , our assistant  shirley crenshaw ( 713 853 5290 ) would be happy to help you .  thanks and look forward to your visit ,  stinson\",0\n\"Subject: re : congratulations  thanks vince . it was good to learn of your promotion as well .  cheers .\",0\n\"Subject: re : aiesec polska - eurolds 2000  drogi panie andrzeju ,  prosze powolac sie na mnie .  w . kaminski  andrzej wodnicki on 02 / 22 / 2000 04 : 02 : 42 pm  to : vince . j . kaminski @ enron . com  cc :  subject : re : aiesec polska - eurolds 2000  drogi panie kaminski !  bardzo przepraszam za klopot . wiem , ze jest pan niezmiernie  zajetym czlowiekiem . jednak chcialem zapytac sie pana o jeszcze  jedna kluczowa dla nas sprawe , ze wzgledy na termin naszego  wydarzenia - 7 marzec 2000 .  mianowicie , czy byloby mozliwe , aby w  rozmowie z panem astramowiczem powolac sie na pana .  wydaje mi sie , ze bardzo by nam pana nazwisko pomoglo .  bardzo liczymy na pana pomoc ,  pozdrawiam  andrzej wodnicki\",0\n\"Subject: re : chapter  chris ,  my part has not changed for some time ( since early july ) .  i sent the last vintage of corrections to you when i was in sydney .  you can send the version you consider final to us just to double check .  i took the liberty of sending our chapter to darrell duffie and he liked it .  what is more important he did not find any error .  i shell send you my comments on the article for robin in a day or so .  vince  \"\" chris strickland \"\" on 08 / 28 / 2000 02 : 55 : 31 pm  please respond to \"\" chris strickland \"\"  to : ,  cc :  subject : chapter  hi vince ,  ?  how are things with you ? well i hope . do you have the latest version of your  part of chapter 3 ? ( i think grant has sent thru a seperate , updated version  to you , which has been typeset ) . everything else has been tied up and we  will go with the version we have , unless we hear otherwise .  ?  many thanks and best regards .  ?  chris .  ?\",0\n\"Subject: organizational changes  to : enron north america corp .  from : cliff baxter and kevin hannon  in july , as part of the enron north america ( ena ) reorganization , the  implementation of several objectives were highlighted as critical to the  continued growth of ena including : 1 ) accelerate the development of our  people , 2 ) significantly expand our customer network and associated markets ,  and 3 ) accelerate and enhance the information flow between groups , both  within ena and across enron . consistent with these objectives and with the  corporate goal of fostering \u0001  b ) the downstream coverage / origination groups which focus on delivering a  broad range of products and services to the heavy industrial customers  including pulp and paper , chemicals , plastics , refined products , metals and  mining , heavy manufacturing , industrial gases , fertilizers , transportation ,  textiles and glass manufacturing the eastern and western u . s . midstream  coverage / origination groups which focus on energy , finance and industries .  downstream coverage / origination  as energy deregulation continues in north america , it is becoming clear that  the heavy industrial segment will be an important customer market for both  ena and enron corp . further , it is clear that ena can significantly expand  its industrial customer network and create more innovative industrial  solutions by having a group that can deploy all the capabilities of enron  corp . against this backdrop , the downstream coverage / origination function  will expand its product offering to include not only ena \u0001 , s existing energy  commodities , energy services , finance , assets and pulp and paper capabilities  but also ees \u0001 , s energy outsourcing capability and global fuel \u0001 , s chemicals ,  plastics and refined products risk management capability . these additional  capabilities will be offered in conjunction with ees and the global fuels  groups . given the size and importance of this enron initiative , greg piper  will be returning from portland to manage this business . under greg \u0001 , s  leadership , the downstream origination effort will be segmented into three  sub - groups given the nature of these industries and our product offering :  a ) pulp and paper \u0001 ) edward ondarza will continue to manage the coverage  activities in the pulp and paper business . this group will be responsible for  the provision of innovative  products and services in the pulp and paper industry including the provision  of paper risk management products ;  b ) chemicals , plastics and refined products \u0001 ) we have asked jim ajello to  lead the coverage activities in this business . this group will be  responsible for the provision of innovative products and services in the  chemicals and refined products industries ;  c ) non - integrated industrials \u0001 ) bruce garner , formerly leader of bankers  trust \u0001 , s global metals and mining group in london , has joined ena to lead the  coverage activities in this business . this group will be responsible for the  provision of innovative products and services for the metals and mining ,  heavy manufacturing , industrial gases , fertilizers , transportation , textiles  and glass manufacturing industries .  midstream coverage / origination  a ) eastern coverage / origination \u0001 ) this group \u0001 , activities will focus on  energy , finance and power development solutions for electric and gas  utilities , municipals , co - ops and energy service companies in the eastern  interconnect . we have asked janet dietrich to assume the leadership of this  group ;  b ) western coverage / origination \u0001 ) this group \u0001 , s activities will focus on  energy , finance and power development solutions for electric and gas  utilities , municipals , co - ops and energy service companies in the wscc . they  will also continue to manage all qualified facilities ( qf ) restructuring  opportunities in the western u . s . we have asked chris calger to assume the  leadership of this coverage group . chris will relocate to portland from  calgary where he currently leads the canadian downstream origination efforts ;  c ) ipp merchant coverage / origination \u0001 ) this group \u0001 , s activities will focus on  the provision of structured energy , finance and asset solutions for the  emerging merchant power generators who control large portfolio \u0001 , s of merchant  power generation either through development or acquisition . we have asked  mike miller to assume the leadership of this group . in addition , mike will  continue to manage the power development activities in the eastern  interconnect ;  d ) eastern qf restructuring \u0001 ) this group will focus on the qf restructuring  opportunities in the eastern interconnect including the existing  restructuring and re - capitalization of the east coast power assets . we have  asked dave duran to assume the leadership of this business . greg blair ,  formerly of enron asia \u0001 , s development group , doug clifford , formerly of  citizens power , and dick lydecker , formerly of cogen technology , will join  this newly formed business .  2 ) commercial transactions :  the commercial transactions group ( ctg ) , co - headed by ray bowen and jeff  donahue , was formed to provide a centralized resource for the execution of  transactions within ena \u0001 ) and thereby , improve ena \u0001 , s efficiency in executing  transactions and free - up the origination groups to increase their intensity  of client coverage . ctg consists of six primary functions : transaction  development , capital structuring and portfolio management , commodity  structuring and transportation , transactional support / accounting , technical  analysis and upstream asset management .  the transaction development group will be responsible for deal leadership ,  execution and optimization of all aspects of a transaction in conjunction  with the originator . the function will be divided into four teams , each of  which will be dedicated to between two and four origination groups . this  dedication to specific groups should provide a closer link , better service  and greater accountability with the origination groups ; however , the ctg  resources are designed to be a fungible and flexible resource allocated to  the highest value transactions across the coverage functions :  a ) midstream transaction development will be dedicated to the eastern and  western coverage / origination groups . the senior members of this group  include billy lemmons , george mccormick , erin norris and russ porter . billy  lemmons joined enron in 1992 . most recently , he was the vice - president of  capital structuring and risk management for ees . russ porter joins us today  from dynegy where he was a manager with responsibilities for power  origination .  b ) downstream transaction development will be dedicated to ena \u0001 , s industrial  origination efforts in pulp and paper , petrochemicals and refining ,  environmental energy , metals and mining and other industries as coverage is  established . the senior members of this team include rodney malcolm , jay  boudreaux , finley biggerstaff and chris helfrich . we anticipate announcing  two to four more additions to this team within the next few weeks .  c ) generation transaction development will be dedicated to the ipp merchant  services and power plant development and qf restructuring groups . the senior  members of this team include thomas suffield , andy kelemen , kelly mahmoud and  john house . thomas suffield joined enron in 1996 . most recently , he was the  vice - president of origination for the latin american group in azurix . we  anticipate announcing two more additions to this team within the next few  weeks .  d ) upstream transaction development will be dedicated to the producer  finance , coal and gas assets groups . the senior members of this team include  brad dunn , john curtin and chris hilgert . we hope to announce the addition  of at least one vp to this group prior to yearend .  ray bowen will have primary oversight responsibilities for the upstream and  downstream transaction development teams with jeff donahue having primary  responsibilities for the midstream and generation teams . andrea reed will  continue to head capital structuring and portfolio management : all junior  commercial resources within the transaction development teams will have dual  responsibilities to both their transaction development teams and to the  capital structuring group . the remaining four groups within ctg will remain  largely unchanged . in addition , the origination and the transaction  development teams and their respective origination groups will be located  together .  we believe that these changes will significantly enhance our market coverage  and industry knowledge in all ena \u0001 , s markets particularly in the industrial  markets . it will also provide a closer partnership and accountability between  the coverage / origination groups and the ctg groups .  please help us in continuing to build on the success we have enjoyed in north  america by working with us to implement these changes .\",0\n\"Subject: metals curves  hi maureen  i hope you ' re keeping well . london research has been asked to validate the  long - term copper ( and other ) forward curves being used by mg . clearly this  lies outside our domain of expertise ( being economics ) , so i ' ve referred tani  to you .  speak to you soon ,  steve\",0\n\"Subject: daily natural gas price outlook  vince . . .  can you believe it ?  - - - mike  - - - - - - - - - - - - - - - - - - - - - - forwarded by mike a roberts / hou / ect on 07 / 31 / 2000  10 : 13 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" edward krapels \"\" on 07 / 31 / 2000 08 : 57 : 56 am  please respond to  to :  cc :  subject : daily natural gas price outlook  today \u0001 , s esai daily natural gas price outlook will be delayed due to  unexpected illness of the weather forecaster . we will post our analysis as  soon as we gather all the necessary information .\",0\n\"Subject: credit business plan  hi jeff ,  my research colleagues and i are working on a document to lay out our credit  derivatives modeling strategy . for lack of a better term , we refer to this  as our credit business plan .  it is my understanding that various business plans have been previously  written for the credit group - one by gillian johnson and another by john  bottomley .  it would be very helpful to our efforts in the research group , it you would  allow us to see these plans .  thanks ,  iris\",0\n\"Subject: re : development of a program in \"\" econo - physics \"\"  hello shirley ,  i ' d understood from yannis that he ' d proposed a brown bag lunch where i ' d  give a talk and then the discussion about various possibilities would  follow . i ' m here until about mid - may and then will go on leave in europe  for a year . i could be available to make trips back and forth from time to  time to get things started .  best regards ,  joe mccauley\",0\n\"Subject: final details for energy course  hi ,  just wanted to let you know some final details about the course :  course titles : \"\" energy derivatives : pricing and risk management \"\" and / or  \"\" var for energy markets \"\"  venue details :  dates : 29 - 31 march  location : hyatt regency downtown houston , 1200 louisiana street , houston  phone : 713 - 654 - 1234  schedule :  continental breakfast : 8 . 30 am  start : 9 am  beverage break : 10 . 30 - 11 . 00  buffet lunch served in course room : 12 . 30 - 1 . 30 pm  snack break : 3 . 30 - 4 . 00 pm  end : approx . 5 . 30 pm  course leaders : dr les clewlow and dr chris strickland , lacima consultants  please let me know if you need anything further .  thanks and enjoy the course !  sincerely ,  julie  lacima consultants\",0\n\"Subject: re : stanford project  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 01 / 03 / 2001  08 : 54 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  stinson gibner  12 / 27 / 2000 05 : 04 pm  to : nick bambos @ enron  cc :  subject : re : stanford project  nick ,  hope you had a nice christmas . best wishes for the new year .  it would certainly be great to see you and to meet eric some time in the next  few months . everyone here  was very impressed with giuseppe and we are eager to have another of your  students come to enron .  enron broadband is continuing to evolve and the current vision is to rely on  enron ' s trading expertise while trying to  minimize our role as an engineering company and innovator of technology . i  spoke recently with jim fallon , the current  head trader in ebs , and we put together a short list of topics of interest  where you might be able to help educate us .  i put these in the order of interest ( to mr . fallon ) .  1 . where will bandwidth prices go ? the direction of prices , obviously is  the concern of any trader . we realize that  technological innovation will continue to drive down prices , but are still  interested in trying to quantify how fast prices will fall ,  if there are likely to be certain bottlenecks in the fiber network where you  could see prices stable or rising for some length of time ,  if there are applications on the horizon which would use such prodigious  amounts of bandwidth as to have some effect on pricing ,  and if there is a rational way of trying to quantify the timing and effect on  prices of new technologies .  the term \"\" bandwidth \"\" might primarily mean lit fiberoptic capacity , but could  also incompass dark fiber , or ip transit and transport  pricing .  2 . during the last year , enron purchased a company known as \"\" warpspeed \"\" in  order to acquire their metarouter technology . to quote from the enron press  release :  \"\" metarouter sends signals throughout distributed networks to determine the  optimal connectivity paths for any size bandwidth capacity from anywhere in  the world . capable of processing thousands of connections per second ,  metarouter significantly enhances enron \u0001 , s ability to automate circuit  provisioning . \"\"  there may be two separate questions to ask here . first , in the context of  the current market ( or the market which may develop in the next 1 - 2 years ) ,  will the metarouter be a commercially viable product ? that is , will it  address an actual need in the market , or would it be more cost effective just  to use technicians with jumper cables to provision circuits ?  the second question ( our first real technical question ) : is the metarouter  technology scalable ? before starting on this project , vince and i will  need to make the proper introductions with the principles who are  implementing this technology .  3 . aggregation of loads . a recurring question comes from a number of areas  such as ip , network storage , and streaming media transport sales : what  value can i get form aggregating customers , each of which has some type of  stochastic load profile ? giuseppe touched on this problem as it relates to  ip transport , but it may be interesting to try and look in more detail .  the main stumbling block may be that we currently have basically no actual  customer data . i am told that in a few months we will have some more useful  history . my understanding is that what will be available will be 5 - minute  averages of usage , so we still will not know on a short time scale what the  distribution of load looks like .  i hope that this gives you enough information to get some idea of what our  concerns are at this point . please let me know your thoughts about these  topics . i would expect , for instance that question number 1 may not be  reasonable as a research project , but might be a question which you would  feel comfortable in addressing by giving us your qualitative opinions , maybe  in the form of a talk here at enron .  again , let me know your thoughts , and i look forward to seeing you again  soon .  stinson  nick bambos on 12 / 20 / 2000 12 : 14 : 40 pm  to : vince . j . kaminski @ enron . com  cc : stinson . gibner @ enron . com  subject : stanford project  hello vince and stinson ,  first of all ,  best wishes for happy holidays ! ! ! !  if you are in the stanford area during the holidays , let ' s get together  some time to have dinner .  i have formally established the project - thanks again for funding  it - and i have also recruited the second phd student . his name is  eric cope , and he is a top - notch student , very mature , and entrepreneurial !  we have started working on some interesting problems in this area . i would  hope that eric could spend the coming summer at enron to get immersed into  the \"\" problem / opportunity generation environment . \"\" that really helps the  student  to develop a realistic vision about their research .  perhaps , our whole team could visit enron again some time in the next quarter ,  say in march or so , to discuss the research issues we are pursuing . and of  course  you could visit us before that too .  with my warmest wishes ,  nick\",0\n\"Subject: update : ffvols  ted ,  an update on the implementation for ffvols :  ( 1 ) in comparing 6 days of historical var calculations  ( with that of the implied ) for agg - gas , we have found that the historical var  calculations are consistently lower over this period , by roughly 17 mm . the  implied volatilities are much higher at this period , anticipating strong  winter prices .  ( 2 ) at this time , the consensus is not to relase the  historical implementation into production , and the official line to traders  will be that the method is still in testing . the historical var is 19 . 2 mm  and the implied is 37 mm for effective date of 09 / 25 .  ( 3 ) further testing is in progress on a hybrid methodology  ( which i mentioned last week , whereby historical vols are scaled by the ratio  of prompt to historical - prompt volatilities ) , to atleast capture some  implied / forward effects . tanya ' s analysis on a fictitious portfolio  indicates higher var numbers , but poorer backtesting in comparison to the  historical approach . this approach serves as an intermediate , and seems  appropriate in periods such as the current one , wherein the historical  numbers might be considerably lower than those of the implied .  ( 4 ) winston will start testing using these hybrid vols , and  if the results are deemed satisfactory , that will be the production  methodology .  of course , we will obtain all var numbers concurrently to serve as different  indicators and beacons of risk . the production number will hopefully be a  sensible compromise of the different methods .  regards  naveen\",0\n\"Subject: re : stinson gibner  paula :  he should access eci on our equipment , and the work that he is doing for ena  should be provided by them .  lyn :  can he bring his current pc with him , or can you provide him with another  system ?  thanks  richard weeks  enron communications inc .  purchasing manager  713 - 853 - 6995  paula corey  01 / 10 / 00 08 : 44 am  to : richard weeks / enron communications @ enron communications , culley  harrelson / enron @ gateway  cc : vince j kaminski / hou / ect @ ect , richard weeks / enron communications @ enron  communications  subject : stinson gibner  gentlemen :  stinson gibner will be joining us at desk location 4415 c . i have spoken with  it re : a new laptop for him on the eci lan . he will also need access to his  ect ( ena ) system . how should we proceed with duplicating his workstation from  19 ?  thank you  paula\",0\n\"Subject: fw : enron contact info  vince and jeff . . . the following is \"\" fyi \"\" . . . my assistant is working on the  flight arrangements . also , \"\" fyi \"\" , the doubletree and other downtown hotels  were entirely , or mostly , sold out , but my assistant found a good rate at the  warwick [ $ 115 ] by herman park , where everyone will be ' housed ' in the same  location for one night - - i also think this location is a good ' houston - sell ' .  dinner is scheduled for 7 thursday evening at churrasco ' s , and my group is  arranging the \"\" tourenron \"\" - - breaking this group into 2 . [ fyi : the energy club  from smu ( another skilling alma mater ) had long ago also schedule a tour that  day , so we ' ll have 19 from smu and 18 from wharton on the same day . . . but so  far , all seems manageable . ]  as \"\" tour times \"\" are set , and business unit interview requests are received  from the students , i ' ll keep you posted .  thanks !  - - christie .  - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 12 / 19 / 2000  05 : 30 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  fap on 12 / 19 / 2000 01 : 49 : 52 pm  to : \"\" ' christie . patrick @ enron . com ' \"\" ,  \"\" ' melinda . mccarthy @ enron . com ' \"\"  cc : fap  subject : fw : enron contact info  christie ( melinda and / or marie )  all contact info is listed below by team and project , as well as faculty , ta  and others . those with ( * ) will be traveling to houston . i have a total of  18 attending .  according to my records , the following will stay beyond the friday departure  ( at their own expense ) and leave houston on sunday , 21 jan : heather thorne ,  jack rejtman , deepa mallik , donna piazze . dennis feerick would like to  depart on sat am , if possible . he sent a separate email addressing this .  enron 1 * vincent chen  vincent . chen . wgo 2 @ wharton . upenn . edu  enron 1 * nick levitt  nicholas . levitt . wgo 2 @ wharton . upenn . edu ( wholesale project )  enron 1 * deepa mallik mallikd @ wharton . upenn . edu  enron 1 * jack rejtman  jack . rejtman . wgo 2 @ wharton . upenn . edu  enron 1 * kim whitsel whitselk @ wharton . upenn . edu  * * * team contact  enron 1 * tulika bhalla  bhallat @ wharton . upenn . edu  enron 2 * jaideep singh  singhjai @ wharton . upenn . edu  enron 2 * edson otani edsono @ wharton . upenn . edu  enron 2 * joshua leventhal levent 86 @ wharton . upenn . edu  * * * team contact  enron 2 * pat henahan mhenahan @ wharton . upenn . edu  ( future shape of energy markets project )  enron 2 murat camoglu camoglum @ wharton . upenn . edu  enron 2 * gustavo palazzi gustavop @ wharton . upenn . edu  enron 3 * clay degiacinto  enron 3 * steve lessar  stephen . lessar . wgo 2 @ wharton . upenn . edu  enron 3 * ram vittal mvittal @ wharton . upenn . edu  * * * team contact  enron 3 jason cummins marc . cummins . wgo 2 @ wharton . upenn . edu  ( retail project )  enron 3 * omar bassel bassalo @ wharton . upenn . edu  enron 3 * dennis feerick  dennis . feerick . wgo 2 @ wharton . upenn . edu  professors : louis thomas thomas @ wharton . upenn . edu  keith weigelt weigelt @ wharton . upenn . edu  ta : heather thorne hethorne @ wharton . upenn . edu *  fap : donna piazze piazze @ wharton . upenn . edu *\",0\n\"Subject: re :  lloyd ,  yes , this would be very useful . i was told that we should not do any official  business with  mg until july 15 . i don ' t want to violate those rules of engagement and go  beyond casual contacts .  after the 15 th all the stops are off .  vince  from : lloyd fleming 07 / 07 / 2000 01 : 51 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : re :  no problem - i do think this could wait until mg are more closely integrated  in any case . a useful first step might be an email to relevant trading  staff at mg outlining briefly what maureen does and how she can provide a  service to them . would you like me to send her a list of potential people to  email ?  regards  lloyd  vince j kaminski  06 / 07 / 2000 23 : 39  to : lloyd fleming / lon / ect @ ect  cc : vince j kaminski / hou / ect @ ect , maureen raymond / hou / ect @ ect  subject : re :  lloyd ,  i think that we can arrange a few video conference meetings instead .  i don ' t see a justification for extending the stay over the weekend if we  have an alternative solution .  vince  enron capital & trade resources corp . - europe  from : lloyd fleming 07 / 06 / 2000 12 : 37 pm  to : vince j kaminski / hou / ect @ ect  cc : maureen raymond / hou / ect @ ect  subject :  vince  i met maureen yesterday and had a useful discussion on her role within  enron . i think it would be very helpful to promote the research group  function of the company , particularly given maureen ' s background , if she  could be introduced to some of the main traders down at mg . unfortunately  she won ' t have time to meet with mg unless we can schedule some meetings on  monday .  would you be happy for her to extend her stay here till monday to allow the  meetings to take place ?  regards\",0\n\"Subject: mg var  hi - i just wanted to thank cantekin for his help this week to get me up to  speed with the project he has been extremely  helpful and more importantly patient ! !  cheers  kirstee\",0\n\"Subject: re : czesc  wicku ,  oczywiscie , ze sie spotkam z radoscia i przyjemnoscia .  sporo czasu minelo od czsu , gdy sie ostatni raz widzielismy .  w gre wchodzi praktycznie czwartek wieczorem . w srode sie przeprowadzam ,  a w piatek lece do nj o 21 : 30 .  moj telefon : 408 - 855 - 0263 .  na razie ,  grzegorz  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : monday , february 05 , 2001 10 : 29 am  to : gnapi @ intertrust . com  cc : vince . j . kaminski @ enron . com ; vkaminski @ aol . com  subject : czesc  grzegorz ,  ludmila doniosla mi , ze pracujesz w kalifornii .  bede w berkeley w srode i w palo alto w czwartek i piatek .  czy masz czas , by spotakc sie na obiad / lunch / kawe ?  pozdrowienia  wicek\",0\n\"Subject: high frequency market data analysis  stinson ,  we are going to update you and vince the progress of the eol george project . friday , 9 : 30 am - 10 : 00 am in eb 1938 .  bob ,  we may get some other ideas from the following book , take a look to see if it is worth to buy one .  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  risk executive reports  high - frequency financial market data sources , applications and market microstructure by dr owain ap gwilym and professor charles sutcliffe , school of management , university of southampton , uk a high - quality , non - technical resource on an increasingly invaluable topic for all users of high - frequency data . 10 sections cover the many aspects of high - frequency data by covering a broad set of information ranging from data suppliers to detailed research angles topics covered include : managing hfd ; arbitrage opportunities ; intra - day seasonalities ; regulation ; market efficiency and market making . format price report ? 175 / us $ 280 a 4 , 162 pp published : august 1999 review | table of contents | order now in ? | order now in $ for other titles of interest please click here : risk executive reports send this page to a colleaguehigh - frequency financial market datacontentsl . introduction and overview overview and background the motivation and demand for high - frequency data the uses of high - frequency data structure of this report 2 . sources and types of high - frequency data types of data data supplied by exchanges panel 2 . 1 ( by paul macgregor , liffe ) - the sourcing and preparation of liffe tick data specialist data providers real - time data providers summary 3 . managing and exploiting high - frequency data panel 3 . 1 - illustrative high - frequency data data storage , filtering and cleaning the treatment of time panel 3 . 2 - olsen filtering system constructing continuous series key considerations in manipulating high - frequency data modelling issues summary of chapter 4 . arbitrage opportunities in equity markets what is arbitrage ? empirical studies of arbitrage opportunities arbitrage in equity markets individual arbitrage trades 5 . intra - day seasonalities intra - day patterns in returns intra - day patterns in volume intra - day patterns in volatility intra - day patterns in the bid - ask spread intra - day patterns in the autocorrelation of returns intra - day patterns in hedge ratios other intra - day patterns effects of news announcements on intra - day patterns the turn - of - the - year effect and high - frequency data conclusions 6 . links between markets leads and lags in prices between different types of market based on the same asset the 1987 stock market crash leads and lags in price volatility links between geographically separated markets rival markets 7 . destabilisation of markets relative volatility programme trading and volatility price movements at expiration conclusions 8 . regulations governing the markets regulation of dual capacity circuit breakers restrictions on short selling taxes on transactions tick size and price clustering delayed publication of trades conclusions 9 . market efficiency weak - form efficiency semi - strong - form efficiency conclusionsl 0 . market makingrevision of prices other aspects of financial markets determinants of the bid - ask spread block trades conclusionsl 1 . conclusion and future developments references\",0\n\"Subject: merry christmas  dear mr . kaminski ,  in the name of all the mscf students i would like to wish you and your  family a merry christmas and a happy new year . thank you very much for  taking the time to come here and talk with us . it was greatly appreciated .  best regards ,  pierre\",0\n\"Subject: re : thursday visit  frank ,  we are located at 1400 smith . any cab driver can identify the enron building .  when you arrive ,  please , call me at 3 - 3848 from the reception to be admitted into the  building .  alternative phone numbers : 3 - 5290 ( my assistant shirley crenshaw ) . you can  also try to call me on  my cell phone : 713 898 9960 .  the research group meeting starts at 11 : 30 and lasts till 1 : 00 . can you make  a presentation  about your research projects ? what audio / video equipment do you need ? what  sandwich would  you like to have for lunch ?  we shall make a hotel reservation for you thursday night .  vince  \"\" francis x . diebold \"\" on 12 / 18 / 2000 07 : 02 : 46 am  to : vince kaminski  cc : bmierts @ enron . com  subject : thursday visit  hi vince , looking forward to seeing you thursday . ? i arrive at houston - bush  on usair 1769 at 10 : 55 am . ? please let me know where to go . ? i also want to  verify that you have booked me a hotel ? for thurs night . ? many thanks , and  see you soon , frank  - -  francis x . diebold  wp carey professor  department of economics  university of pennsylvania  3718 locust walk  philadelphia , pa 19104 - 6297  fdiebold @ sas . upenn . edu  http : / / www . ssc . upenn . edu / ~ diebold  ( 215 ) 898 - 1507 ? telephone  ( 215 ) 573 - 4217 ? fax  ?\",0\n\"Subject: marketing ideas for power 2000  dear vince  i am delighted that you have agreed to take part in the energy and power  risk management 4 th annual congress ? power 2000 ? which will be taking  place on 9 & 10 may 2000 in houston , tx at the houstonian .  as you know energy and power risk management magazine has an excellent  reputation in the energy community and we want to make this event as  successful as possible . we are currently in the process of launching the  event and researching the publications and associations mentioned during the  research for the conference to make sure that we are getting the best  coverage . before we complete the marketing plan for the conference we want  to be sure that we are reaching all the people who may be interested .  we constantly strive to improve the marketing of our events and therefore we  ask our speakers for further ideas and contacts . therefore please could you  let me know whether you could help with any of the following .  are there any particular people that you need to send brochures to ? - we can  carry out any mailing on your behalf if you supply us with contact names and  addresses , alternatively i can send you a quantity of brochures  do you have any in - house publications or a newsletter that we should insert  the course brochure into - or a diary date page that we could be included  on ?  would you like to write to your clients to invite them to attend ? we can  offer them a 10 % discount and can send them a letter or if you prefer to  write on your own letterhead we will organise the copying and distribution  for you .  have you any delegate lists from events you have spoken at or attended with  a similar target audience to whom we should be sending information about the  course ?  do you have an internet site on which the course could be mentioned ?  do you have any other ideas ? any suggestions would be welcome .  our marketing manager , caroline hyndman will contact you in the near future  to discuss any ideas you may have . alternatively please give me a call on  212 925 1864 ext 151 .  thanks very much for your help in this matter .  best regards ,  emma\",0\n\"Subject: hi vince ,  after we hung up the phone yesterday , i sent you an email as we  agreed . however today i looked in my \"\" outbox \"\" and see that nothing was  sent to you . thus , i ' m trying again . if this is redundant , sorry .  attached is a copy of the corporate finance forum i am trying to  organize . any comments or suggestions you might have would be  appreciated . i look forward to enron getting involved in this project if  at all possible .  secondly , i am confirming the dates for the two visitors for the risk  management chair .  philippe jorion , seminar on 2 / 15 and dinner on 2 / 14  andrew karolyi , seminar on 2 / 23 and dinner on 2 / 23 .  lets try to go flying sometime soon  thanks for your help and support ,  dave  - nfcfproposal . doc  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  prof . david ikenberry  jones graduate school of management  rice university  713 - 348 - 5385\",0\n\"Subject: the delivery of the equipment you ordered is scheduled .  - - - automatic notification system ( request # : ecth - 4 r 5 mlm )  requested for : vince j kaminski  requested by : shirley crenshaw  your order ( see below ) has been assigned to ron cooper . technician will  contact you for information and delivery time . please contact the technician  if you have any question .  en 6600 desktop p 3 - 600 10 gb 64 mb 32 x nt 4 . 0  en 6600 128 mb installed in desktop  21 \"\" vl 100 monitor\",0\n\"Subject: entouch newsletter  business highlights  east power group  enron power marketing , inc . ( epmi ) and enron wind corporation ( ewc ) have  joined forces in a deal that combines the expertise of both enron  subsidiaries . ewc is developing the indian mesa wind farm in pecos county ,  tx . epmi has agreed to purchase 135 mw of bundled capacity , energy and  renewable energy credits ( \u0001 firm dates will be announced soon .  if you have customers in the area interested in attending , please contact  lucy ortiz at 713 . 853 . 3238 .  in the news  what do enron , compaq , continental airlines and jpmorgan / chase bank know that  the city of houston doesn ' t ? they know that in order to attract top talent ,  they must stay competitive and current in the employment market .  domestic - partner benefits are a reality for those companies looking up toward  the future and down at the bottom line .  does anyone really think these companies would be offering these benefits if  they weren ' t cost effective and in the companies ' best interests ? - - houston  chronicle ( 02 / 11 / 2001 ) .  welcome  new hires  egm - kyle berryman / weather trading , carla murphy / operational accounting  eim - elizabeth hutchinson / fundamental analysis  ena - bryant frihart / origination enovate , lea sooter / public relations  enrononline statistics  below are figures for enrononline as of february 9 , 2001 .  * total life to date transactions > 670 , 000  * life to date notional value of transactions > $ 410 billion  nuggets & notes  \u0001 & who took the last twix out of the candy jar ? \u0001 8 - andrea reed , vice president  / fundamental analysis - eim  \"\" i ' m having an out of body experience . . . \"\" - scott josey , vice president &  co - manager / energy capital resources - ea  news from the global flash  uk origination team closes first deal under neta  congratulations to the uk origination team for closing their first  transaction under neta and the first long - term customer contract to be signed  under neta terms . on 7 th february , the team signed a 10 - year electricity  supply contract with the manx electricity authority , making enron the sole  supplier of the isle of man ' s ( iom ) electricity requirements over the next  decade . in addition to providing power to the inhabitants of the iom , enron  will contractually manage the iom interconnector and all generation to the  iom .  enron direct expanding customer service operations  enron direct continues to go from strength to strength , and as a result of  continued growth , is expanding its customer operations to teesside , creating  46 new jobs . enron direct will be setting up a new customer service center  at the etol administration building on the wilton international site . the new  center is scheduled to open in april and will support enron direct ' s existing  call center and customer service operations in oxford . the 46 new employees  will be recruited locally .  enron credit  enron credit announces the closure of its largest european digital bankruptcy  swap ( dbs ) transaction to date with a new counterparty . in addition to  detailed information on the dbs , registration on the web site  ( https : / / www . enroncredit . com / members / join . asp ) provides access to weekly  bankruptcy blasts covering current credit risk topics .  register today on www . enroncredit . com and take a look at how some of your own  counterparties may be performing !  legal stuff  the information contained in this newsletter is confidential and proprietary  to enron corp . and its subsidiaries . it is intended for internal use only  and should not be disclosed .\",0\n\"Subject: fwd : mark - to - market  return - path :  received : from rly - ygol . mx . aol . com ( rly - ygol . mail . aol . com [ 172 . 18 . 147 . 1 ] ) by  air - ygo 5 . mail . aol . com ( v 67 _ bl . 21 ) with esmtp ; fri , 28 jan 2000 18 : 00 : 52 - 0500  received : from mailman . enron . com ( mailman . enron . com [ 192 . 152 . 140 . 66 ] ) by  rly - ygol . mx . aol . com ( v 67 _ bl . 21 ) with esmtp ; fri , 28 jan 2000 18 : 00 : 36 - 0500  received : from dservl . ect . enron . com ( dservl . ect . enron . com [ 172 . 16 . 1 . 37 ] ) by  mailman . enron . com ( 8 . 8 . 8 / 8 . 8 . 8 / corp - 1 . 03 ) with esmtp id xaal 9726 for  ; fri , 28 jan 2000 23 : 00 : 07 gmt  received : from notes . ect . enron . com ( notes . ect . enron . com [ 172 . 16 . 4 . 33 ] ) by  dservl . ect . enron . com ( 8 . 8 . 8 / 8 . 8 . 8 ) with smtp id raa 24406 for  ; fri , 28 jan 2000 17 : 00 : 32 - 0600 ( cst )  received : by notes . ect . enron . com ( lotus smtp mta v 4 . 6 . 5 ( 863 . 2 5 - 20 - 1999 ) )  id 86256874 . 007 e 6242 ; fri , 28 jan 2000 17 : 00 : 26 - 0600  x - lotus - fromdomain : ect  from : \"\" vince j kaminski \"\"  to : vkaminski @ aol . com  message - id :  date : fri , 28 jan 2000 17 : 00 : 29 - 0600  subject : re : mark - to - market  mime - version : 1 . 0  content - type : text / plain ; charset = us - ascii  content - disposition : inline  content - transfer - encoding : 7 bit  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 28 / 2000  05 : 00  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : wade cline @ enron _ development on 01 / 28 / 2000 07 : 17 am ze 5 b  to : pinnamaneni krishnarao / hou / ect @ ect  cc : sandeep kohli / enron _ development @ enron _ development , vince j  kaminski / hou / ect @ ect  subject : re : mark - to - market ( document link : vince j kaminski )  sandeep ,  can dpc sell to mseb and have eipl buy an equivalent amount of power from mseb  at another spot on their grid , and then eipl sell to the 3 rd party state ?  pinnamaneni krishnarao @ ect  01 / 27 / 2000 04 : 00 pm  to : sandeep kohli / enron _ development @ enron _ development  cc : vince j kaminski / hou / ect @ ect , wade  subject : re : mark - to - market ( document link : wade cline )  sandeep :  i met with bob today and discussed the deal structure we put together . on  the mark - to - market issue , bob and his colleague wess told me that as long as  payments are tied to one particular plant , we cannot m - t - m them . they had same  problem with plants here in the us ( like the peaking plants ) and they had to  separate the plant from power sales to be able to m - t - m the assocated  cashflows .  what they did is : they sold power from the plant to an outside party and  bought  it back from them at completely different ( multiple ) locations . the buyback is  not tied to any specific plant and is marked to maket . even if enron can  somehow  mark - to - market a deal with dpc , it can do so for only 50 % of the cashflows  because only 50 % of dpc is owned by outsiders . and a simple loan to an  affiliate cannot also be marked to market .  bob was suggesting that if eipl buys options from dpc and from some other  plants and in turn sells power to ap or karnataka then we could have a case  for  m - t - m . politically dpc selling power to eipl may not be the best solution , to  put it rather mildly !  our alternatives , as i see them , are  1 . do the deal as we structured it . the only difference is that enron doesn ' t  mark it to market and income is earned only in 2002 - 03 .  2 . do the deal as we structured it . eipl / enron then sells the contract to  another party at a profit . the problem , of course , is finding this party and  forking part of the profit to them .  3 . same deal , except revenue securitization is done through an outside party  in  india ( not eipl ) .  bob said he will think about the issues some more this week . let me know when  you will be here next week so we can meet with bob together . i will be going  to  boston for tuesday and / or wednesday ( feb . 1 - 2 ) . i can book an appt . with bob  for  us .  sandeep kohli @ enron _ development  01 / 23 / 2000 09 : 45 pm  to : robert butts , pinnamaneni krishnarao @ ect  cc : vince kaminski , wade cline / enron _ development @ enron _ development , ananda  mukerji , jaiprakash desai / enron _ development @ enron _ development  subject : mark - to - market  bob ,  i wanted to continue the analysis on mark - to - market that i had spoken to you  about on the phone .  i thought that it was getting very difficult explaining the whole transaction  by  phone , so i am having krishnarao who is in vince ' s group explain the  transaction  to you .  krishna has been helping us structure the deal here in india , and he has just  returned to houston from india after working with the team here .  he will seek an appointment with you to explain the transaction . i would like  you to please spend some time with him , and then based on the discussion  please  send us a note detailing how sucha a transaction would be marked to market .  please cosider the fact that currently there are no such transactions from the  indian side . this is a very important transaction for us , and we may need to  repeat this in coming months , hence setting up the system to account for these  maybe well worth it . also , what i am concerned about is that there will be an  enron india ( eipl ) account in india based on indian gaap , and upon  consolidation  there will be a us gaap accounting in the us . it is here that we would like  to  have mark - to - market accounting . eipl is structured through mauritius , and  then  caymen islands .  another key question to consider is that when we m - t - m the transaction in the  us  there will be a tax accruing in the year of m - t - m ( say 2000 ) . however , in  india , as a result of the accrual accounting , there will not be any income  showing till the year 2002 or 2003 . we will need to know how that would get  treated , and whether there is a way to get credit for the tax payable in the  us .  i am also confused about whether us tax would be levied , since none of the  income is being brought back into the us ( remains overseas - subpart - f and  other  concerns ) .  finally , we have been working hard in structuring a fixed price contract and  getting a fixed for floating swap in the us ( this is still not allowed to  indian  corporates ) . i need you to think about this too , and see if some type of  accounting will solve this issue . krishna knows what i am talking about , and  will brief you on the same .  krishna - please walk bob through the three structures we had worked here .  look forward to your help and comments . this is going to be an exciting  project  for us all .  regards ,  sandeep .\",0\n\"Subject: rabi de  shirley ,  vince decided to have rabi de for a formal interview . could you co - ordinate  with hr  to arrange this ? thanks .  zimin  - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 07 / 26 / 2000 11 : 01 am  - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  07 / 07 / 2000 05 : 03 pm  to : shirley crenshaw / hou / ect @ ect  cc : zimin lu / hou / ect @ ect , vince j kaminski / hou / ect @ ect  subject : rabi de phone interview  shirley ,  let ' s act on it .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 07 / 07 / 2000  05 : 07 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  zimin lu  07 / 07 / 2000 01 : 51 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : rabi de phone interview  vince ,  we had phone interview with rabi de . my impression is good . we should invite  him for a formal interview .  he is a hands on person with wide range of experience ( energy financing ,  derivatives trading , hedging , etc ) .  he communicates very well and expressed interest in financial engineering &  modeling .  zimin\",0\n\"Subject: re : fw : energy book promotion  julie ,  i shall track down fiona .  she may be on vacation .  vince  \"\" julie \"\" on 03 / 22 / 2001 03 : 28 : 34 pm  please respond to \"\" julie \"\"  to : \"\" vincejkaminski \"\"  cc :  subject : fw : energy book promotion  hi vince ,  ?  i sent the attached for enron ' s approval to fiona grant , but haven ' t heard  back . ? in the contract that we signed it states that we need to seek  approval from enron if we want to use the company name . ? is there someone  else we should direct these requests ?  ?  hope you are well .  ?  julie  ?  ?  ?  - - - - - original message - - - - -  from : julie  to : fiona . grant @ enron . com  sent : thursday , march 15 , 2001 5 : 20 pm  subject : energy book promotion  fiona ,  ?  i ' ve attached a letter that is going to be ? sent out to some universities ,  promoting the energy derivative book . ? are we allowed to mention , \"\" . . . in  association with enron corp . \"\" ? ? please see attached .  ?  should we check with you every time we would like to use \"\" enron corp . \"\" when  advertising the book ? ? it will usually follow similar format .  ?  thanks ,  julie  ?  lacima group  - covering letter for book brochures . doc\",0\n\"Subject: re : vince ' s london visit  hi wendy :  we have finally made arrangements for vince ' s trip in september . he will  be arriving in london monday the 18 th at 9 : 55 am .  he would like to set up a meeting with paul and julian sometime on tuesday ,  the 19 th . just let me know when it is convenient .  thanks !  shirley  wendy . dunford @ arthurandersen . com on 08 / 29 / 2000 11 : 44 : 14 am  to : shirley . crenshaw @ enron . com  cc :  subject : vince ' s london visit  hi shirley  i would be grateful if you could give me some dates and times when vince will  be  free to meet with paul day and julian leake , tom leuthwaite is not available  to  meet unfortunately during the week that vince is here .  kind regards  wendy  * * * * * * * * * * * * * * * * * * * internet email confidentiality footer * * * * * * * * * * * * * * * * * * *  privileged / confidential information may be contained in this message . if you  are not the addressee indicated in this message ( or responsible for delivery  of  the message to such person ) , you may not copy or deliver this message to  anyone .  in such case , you should destroy this message and kindly notify the sender by  reply email . please advise immediately if you or your employer do not consent  to  internet email for messages of this kind . opinions , conclusions and other  information in this message that do not relate to the official business of my  firm shall be understood as neither given nor endorsed by it .\",0\n\"Subject: pjm customer load reduction pilot program approved  message sent from the pjm - customer - info mailing list at  pjm - customer - info @ majordomo . pjm . com :  august 4 , 2000  norristown , pa :  the members committee of pjm interconnection , llc approved a customer load  reduction pilot program following approval last week by the federal energy  regulatory commission ( ferc ) . the program targets existing on - site generation  and load management programs at facilities such as hospitals , hotels ,  factories ,  and stores during emergency conditions . after september 30 th , the end of the  trial period for the program , the program will be evaluated to determine its  success . the evaluation will explore program improvements in order to enhance  the program as a way to address potential capacity shortfalls next summer .  related procedures for interconnecting generation under 10 mw will be discussed  through pjm ' s committee process for additional advisory input and will be  refiled for further consideration by the ferc after the stakeholder process .  the pilot program was designed through a collaborative fast - track effort of  the  pjm distributed generation user group . currently , there are 35 participants  registered for the program representing a total of 61 . 5 mw . the smallest of  these generators represents 200 kw and the largest represents 15 mw . this user  group ' s efforts are consistent with the federal energy regulatory commission ' s  recent initiative to support interim procedures to assist with the on - going  efforts to maintain a reliable electric power system during the summer months .  distributed generation benefits the system by either reducing demand or  providing additional generating resources . the pilot program is designed to  provide additional flexibility during times of peak demand . it is not meant  to  replace pjm ' s successful generation interconnection process which deals with  generation projects applying to become part of regional capacity or to  interfere  with the active load management ( \"\" alm \"\" ) programs that are in operation .  please do not reply to this message . if you have a question for pjm customer  relations and training , please send an e - mail to custsvc @ pjm . com .  to unsubscribe from this list , send an e - mail to majordomo @ majordomo . pjm . com  containing only the following line in the body of the e - mail :  unsubscribe pjm - customer - info\",0\n\"Subject: 1 candidate and 2 interns  bryan  please , take a look at the resume of howard haughton . he looks like an answer  to your prayers .  it ' s the first attachment .  vince  p . s . jeff , the headhunter , can be reached at ( 949 ) 813 2241 . please , set up  the interview ,  if interested , through him .  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 18 / 2001  01 : 57 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ \"\" on 01 / 12 / 2001 12 : 51 : 59 pm  please respond to \"\" $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ \"\"  to : vince . j . kaminski @ enron . com  cc : molly . magee @ enron . com  subject : 1 candidate and 2 interns  hi vince and molly .  here attached is one candidate who is particularly interested in having his  profile sent to vince . . . he is going to be traveling to ny from the uk soon  for 2 wks .  he specifically asked my partner at robertwalters in the uk to investigate  enron through my new relationship with you guys . he would be howard haughton ,  attached below ( cv ) .  the other 2 resumes are my students at the university of michigan . howard lin  received a 4 . 0 / 4 . 0 for his last term and will be willing to do whatever it  takes to intern at enron for june - aug . i have his picture included as well .  the second is sung , they are friends . howy will be done expected in may 2001  and sung in may 2002 . they are my favorite interns and i expect they can be  cultivated to the enron culture with no real cost to you ( a \"\" test drive  before committal . i have agreed to represent them and  shall take ownership , as they become graduate candidates upon their degree  completion .  i hope these attachment can represent my value and commitment to quality of  talent to enron .  thank you for your acceptance .  best wishes for the weekend .  jeff  * get free , secure online email at http : / / www . ziplip . com / *  - 00343938 alec . doc  - sungvince . doc  - howardagent 9498132241 . doc  - howardlin . gif\",0\n\"Subject: directions to the tamiment resort and conference center , location  of the 20 th annual conference  dear participants :  here are the directions to the tamiment :  from new york fax : 973 - 353 - 1348  http : / / www . rci . rutgers . edu / ~ crri  crri @ andromeda . rutgers . edu  center for research in regulated industries  rutgers university - graduate school of management  180 university avenue , room 200 p  newark , nj 07102 - 1897  phone : 973 - 353 - 5761 ; fax : 973 - 353 - 1348  http : / / www . rci . rutgers . edu / ~ crri  crri @ andromeda . rutgers . edu \",0\n\"Subject: presentation slides  good morning vince :  this is a reminder for you to send me the slides of yesterday ' s  presentation at your earliest convenience .  as far as lunch is concerned , right now i am totally free for next week .  spyros\",0\n\"Subject: a colossal and dangerous failure - cera alert  title : a colossal and dangerous failure  url : http : / / www 20 . cera . com / eprofile ? u = 35 & m = 2185  overview : western energy \u0001 * california governor stays the course  california governor gray davis provided his strongest public statements to  date regarding the state \u0001 , s power crisis in his annual state of the state  address on january 8 , 2001 . echoing many of his previous positions on what he  perceives as a flawed and unfair california market structure , the governor  labeled the state \u0001 , s electricity market system a colossal and dangerous  failure . among other actions , he launched new initiatives valued at $ 1  billion to encourage conservation , provide financing and land to new  generators , grant authority to utilities to engage in a portfolio of  transactions to manage electricity costs , and increase regulatory scrutiny of  existing market suppliers . the governor also called for a greater role for  the state in overseeing and constructing new power plants .  the governor acknowledged that the actions proposed are only some of the  steps necessary to put california on the road to recovery . details regarding  sources of funding for the initiative are still forthcoming . although he  stated that california \u0001 , s investor - owned utilities must not be allowed to go  bankrupt , no formal plan for ensuring their solvency was given . the financial  community continues to lack the assurance it requires to continue to provide  financial backing for pacific gas and electric and southern california  edison . at this time the state legislature remains the body most likely to  guarantee their solvency .  the governor again criticized the federal energy regulatory commission for  what he believes has been its failure to manage and restrain properly the  wholesale market . merchant plant generators were accused of gouging the  state , and it was suggested that these generators acted illegally in their  operations , jeopardizing the reliability of the power grid . new , more severe  sanctions were promised for those caught withholding power or extracting what  investigators find as unreasonable profits .  a los angeles times poll released the morning before the governor \u0001 , s address  indicated that the majority of californians still do not believe there is an  energy crisis . although the 33 percent growth in the state \u0001 , s economy over the  past ten years has nearly outstripped the state \u0001 , s and surrounding region \u0001 , s  supplies of power , the bulk of the governor \u0001 , s statements continue to focus on  the culpability of power producers , rather than the serious supply shortfall .  though the governor introduced steps to fund and facilitate the construction  of new generating plants , increased regulatory scrutiny and the threat of  sanctions will exacerbate the concern already expressed by plant developers  and the financial community that the investment climate in california is  excessively risky .  * * end * *  follow above url for complete report .  come shoot the rapids with us at ceraweek 2001 , \"\" shooting the rapids :  strategies and risks for the energy future \"\" in houston , february 12 - 16 ,  2001 ! for more information and to register , please visit  http : / / www 20 . cera . com / ceraweek /  e - mail category : alert  cera knowledge area ( s ) : western energy ,  to make changes to your cera . com account go to :  forgot your username and password ? go to :  http : / / www 20 . cera . com / client / forgot  this electronic message and attachments , if any , contain information  from cambridge energy research associates , inc . ( cera ) which is  confidential and may be privileged . unauthorized disclosure , copying ,  distribution or use of the contents of this message or any attachments ,  in whole or in part , is strictly prohibited .  terms of use : http : / / www 20 . cera . com / tos  questions / comments : webmaster @ cera . com  copyright 2000 . cambridge energy research associates\",0\n\"Subject: ( no subject )  dear professor shreve ,  thank you for your message . i shall be glad to make a presentation at  carnegie mellon . i am discussing with pierre ste - marie possible dates and it  seems at this point that november the 3 rd would be the most convenient day .  november the 10 th is an alternative date , but i need a few more days to make  a commitment .  look forward to meeting you .  vince kaminski\",0\n\"Subject: re : howard haughton : no can do for wed / thurs .  jeff ,  my associates are leaving for london tonight ( monday ) .  they can still interview howard on tuesday afternoon .  vince  \"\" $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ \"\" on 01 / 29 / 2001 02 : 23 : 12 pm  please respond to \"\" $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ \"\"  to : rachel . quirke @ enron . com , vince . j . kaminski @ enron . com  cc :  subject : howard haughton : no can do for wed / thurs .  hi rachel . please read the following email from my collegue in the uk who  spoke directly to howard a bit ago by tele about wed / thurs interview .  can we do this alternative he suggested ? we will have to reschedule - maybe  ny ? or after howards trip in houston ?  thanks ,  jeff  hi jeff ,  i ' ve bad news . howard is off to new york on wednesday for 10 days until the  10 th of feb . either enron could fly him to houston after his holiday or  maybe vince ' s team could get out to new york . let me know .  regards  vuthy  * get free , secure online email at http : / / www . ziplip . com / *\",0\n\"Subject: changes in option valuation in enpower  - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 03 / 21 / 2001 08 : 33 am  - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : harry arora / enron @ enronxgate on 03 / 21 / 2001 07 : 26 am  to : sanjay gupta / enron @ enronxgate , steve nat / enron @ enronxgate  cc : zimin lu / hou / ect @ ect  subject : changes in option valuation in enpower  sanjay  wanted to confirm the changes to the option valuations in the enpower we  discussed yesterday evening .  1 . currently the trader volatility inputs are the daily vol curve and the  intra - monthly vol curve . the monthly options get marked directly to the  monthly curve ( plus the smile ) and the monthlies get marked to a time blend  of monthly and intra - month vol ( plus the skew ) .  we want to change the valuation ( for the eastern books ) so that the dailies  get marked to the intramonth curve ( which we want to call the daily curve )  and the monthly gets marked to the monthly curved . there will be not vol  blending done by the enpower system for the daily and monthly option  valuations . we want to make this change very soon ( by early next week )  2 . currently there exists one smile for every region , which is specified in  terms of volatility additive for specified dollar difference from the  underlying . since different months in a region can trade in a large range  ( $ 35 - $ 150 ) - this cannot result in accurate skew for all terms . what we  need is a system which has skew per month .  we suggest , for the short term , the skew should apply only to the summer  daily expiration options . we need to make this change by early next week .  however , we need to start modifing the system so that for every region we  can enter a grid which has a percentage scale and specifies the skew  differently for each month . research , has implemented this in our pricing  model , and we would like this grid to be input into the valuation system . i  am enclosing the pricing model ( which we both discussed yesterday ) for  reference . this model is however , work under construction , so pls call alex  huang for clarifications .  3 . the vol input system is complex and confusing .  i would very much be interested in moving to a direct database interface ,  which accomodates the skew inputs per region as in . we should implement a  ui which can input the dailies and monthlies at the moneys and the skew grid  directly - so that we do not need to go through multiple iterations .  i am very much interested in what we currently are releasing in delphi and  would love an early implementation for options .  on all these issues , i am speaking for the east desk . i am going to touch  base with west guys and see if they are on board with these changes .  thanks  harry\",0\n\"Subject: re : storage book / luken ' s storage model  just a reminder about the storage meeting today , april 27 . it is still  scheduled for 3 : 00 pm in 30 cl .  thank you .  geraldine irvine  04 / 24 / 2000 11 : 44 am  to : zimin lu / hou / ect @ ect , stinson gibner / hou / ect @ ect , vince j  kaminski / hou / ect @ ect , hunter s shively / hou / ect @ ect , colleen  sullivan / hou / ect @ ect , scott neal / hou / ect @ ect , phillip k allen / hou / ect @ ect ,  thomas a martin / hou / ect @ ect , jim schwieger / hou / ect @ ect , chris  gaskill / corp / enron @ enron , bhavna pandya / hou / ect @ ect , jeffrey a  shankman / hou / ect @ ect , sean boyle / corp / enron @ enron , ed mcmichael / hou / ect @ ect  cc : mark breese / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , airam  arteaga / hou / ect @ ect , kimberly brown / hou / ect @ ect , laura  harder / corp / enron @ enron , barbara lewis / hou / ect @ ect  subject : storage book / luken ' s storage model  please plan to attend a meeting on thursday , april 27 , from 3 : 00 - 5 : 00 p . m .  to discuss luken ' s storage model and , more importantly , where we want to go  with a storage book . this meeting will be in eb - 30 cl .  any questions , contact mark breese ( ext . 3 - 6751 ) or gerri irvine ( ext .  3 - 6145 ) .\",0\n\"Subject: monte - carlo library  stinson ,  i have created a directory ( o : \\ research \\ common \\ projects \\ options \\ mclib )  to hold our monte - carlo models we developed in the past .  i have the following mc models :  1 . asian option with two - point vol structure  2 . asian barrier option  3 . asian spread option  4 . time spread option  5 . asian digital option  do we want to include models using american monte - carlo ?  i have  1 . american spread option  2 . option on min or max of n assets with n as an input  3 . omicron option model with 3 price processes  i suggest that all of us save a copy of monte - carlo models in this directory ,  from these ,  we can build a general monte - carlo library . we can also calculate the mc  greeks more  efficiently now .  zimin\",0\n\"Subject: interview schedule - iris mack  attached please find the interview schedule , resume , and evaluation form for  iris mack . iris will be interviewing on december 28 , 2000 . please contact  me with any comments or concerns .  thank you ,  cheryl arguijo  ews staffing  713 - 345 - 4016\",0\n\"Subject: re : dinner  julie ,  thanks for the invitation .  tuesday would work better for me .  i came back from california this morning and i am quite exhausted .  what is the number at which i can reach you ?  vince  \"\" julie \"\" on 02 / 26 / 2001 11 : 00 : 46 am  please respond to \"\" julie \"\"  to : \"\" vincejkaminski \"\"  cc :  subject : dinner  would you like to get together for dinner with us tonight ( monday ) or  tomorrow night ?  ?  julie\",0\n\"Subject: nytimes . com article : the real wolf  this article from nytimes . com  has been sent to you by vkaminski @ aol . com .  / - - - - - - - - - - - - - - - - - - - - advertisement - - - - - - - - - - - - - - - - - - - - - - - \\  looking for better it solutions ?  toshiba is uniting digital , mobile and network innovations  in a bold new vision of information technology for today  and tomorrow . take a closer look at life in the new digital age .  and imagine how good it can be . visit toshiba . com for more details .  the real wolf  reckonings  by paul krugman  ecently i received a letter from an economist i respect , chiding me  for my \"\" naderite \"\" columns on the california energy crisis . he just  didn ' t believe that market manipulation by power companies could  possibly be an important issue ; it sounded too much to him like the  sort of thing one hears from knee - jerk leftists , who blame greedy  capitalists for every problem , be it third - world poverty or high  apartment rents . the left has cried \"\" wolf ! \"\" so many times that  sensible people have learned to discount such claims .  but now a bona fide wolf has arrived , whose predatory behavior is  doing terrible damage to our most populous state \u0001 * and nobody will  believe it .  true , california would be heading for a summer of power shortages  even if it had never deregulated . and even if there was workable  competition in the wholesale electricity market , prices in that  market would spike during periods of peak demand , transferring  billions of dollars from either taxpayers or consumers to the  generators .  but the evidence is now overwhelming that there isn ' t workable  competition in california ' s power market , and that the actions of  generators \"\" gaming the system \"\" have greatly magnified the crisis .  the key fact is that california has somehow remained in a state of  more or less continuous power shortage and very high wholesale  prices regardless of the level of demand . a rash of outages has  kept the electricity market conveniently \u0001 * and very profitably \u0001 *  short of supply even during periods of low demand , when there ought  to be lots of excess capacity .  as frank wolak , the stanford economist who also advises the  state ' s power grid , has pointed out , an outage at a power plant is  a lot like an employee calling in sick . you can ' t tell directly  whether he is really sick or has chosen to take the day off for  other reasons , but you can look for circumstantial evidence . and  such evidence has convinced mr . wolak that \"\" generators use forced  outages strategically to withhold capacity from the market \"\" \u0001 * a  view shared by a growing number of other researchers .  which brings us to the latest move by the federal energy  regulatory commission . on wednesday , the commission apparently  decided to offer california some relief , and put new price caps in  place on the california electricity market . i say \"\" apparently \"\"  because the more you look at the plan the less likely it seems to  be any help at all . indeed , the measure was passed on a 2 - to - 1  vote , with william massey \u0001 * the one commissioner who has been  sympathetic to calls for price controls \u0001 * voting against it on the  grounds that it would be ineffectual .  what ' s wrong with ferc ' s plan ? first , it caps prices only in  emergency conditions \u0001 * ignoring the fact that electricity prices  have stayed at hard - to - explain levels even when there is no  emergency . in effect , the plan is laid out as if the electricity  market were really competitive , in spite of all the evidence that  it is not .  second , even those emergency price caps are full of loopholes ,  offering extensive opportunities for what mr . wolak calls \"\" megawatt  laundering \"\" \u0001 * selling power to affiliated companies that for one  reason or another are exempted from the price controls ( for  example , the controls do not apply to \"\" imports \"\" from neighboring  states ) , then selling it back into the california market . severin  borenstein of the university of california energy institute adds  that because the allowed price depends on the cost of generation at  the least efficient plant , generators will have a clear incentive  to produce inefficiently : \"\" i predict we will find some plants we  never heard of before that are suddenly operating again , and they  will be pretty inefficient . \"\"  the general verdict seems to be that this is not a serious plan .  there are serious proposals to mitigate the crisis out there \u0001 *  indeed , last fall mr . wolak submitted a proposal that was well  received by other experts \u0001 * but ferc has ignored all of them .  the charitable interpretation is that ferc still doesn ' t get it ,  that it just can ' t bring itself to believe that this time the wolf  is real . the uncharitable interpretation is that last week ' s action  was meant to fail . the medley report , an online newsletter , calls  the ferc plan \"\" a grand exercise in posturing without substance . .  . a very clever temporary move by the bush administration to  deflect any political fallout \"\" from the looming disaster .  whatever the explanation , the plain fact is that ferc and the  administration have yet to offer california any significant  relief .  00 fo 04 b 3 blabf  visit nytimes . com for complete access to the  most authoritative news coverage on the web ,  updated throughout the day .  become a member today ! it ' s free !  http : / / www . nytimes . com ? eta  how to advertise  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  for information on advertising in e - mail newsletters  or other creative advertising opportunities with the  new york times on the web , please contact alyson  racer at alyson @ nytimes . com or visit our online media  kit at http : / / www . nytimes . com / adinfo  for general information about nytimes . com , write to  help @ nytimes . com .  copyright 2001 the new york times company\",0\n\"Subject: thanks  hi keith !  thanks so much for your additional thoughts , which i will definitely pass on  to our business units .  as for your nephew , please have him send his resume to me . i ' ll be happy to  see what i can do .  again , on behalf of enron and everyone involved in the project , especially  vince and i and ken parkhill , we had a great and informative experience with  the entire tiger project .  best regards !  - - christie .  - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 04 / 09 / 2001  07 : 15 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  weigelt on 04 / 06 / 2001 04 : 40 : 10 pm  to : \"\" ' christie . patrick @ enron . com ' \"\"  cc :  subject : thanks  christie ;  i wanted to send a short note to express my thanks to enron , and give some  additional thoughts about the enron presentation . both students and staff  enjoyed our interaction with enron . we hope enron got as much from the  project as we did .  i also had some additional thoughts about enrononline .  - during the presentation , the students referred to a market ' s \"\" critical  mass \"\" . however , we never defined what we meant by that . we had several  discussions on this topic . i think the best way for enron to think about  this is in terms of the psychology of traders . critical mass gives a market  liquidity . traders seem to think about liquidity in terms of breadth ( how  many products are being traded ) and depth ( the number of bids and offers ) .  our thoughts were that when a trader pulls up a screen , he ( or she ) wants to  see bids , offers , and trades occurring . so a simple ( and cheap ) metric that  enron could use to determine whether rivals are approaching critical mass is  simply to pull up screens and see if trades are occurring , and how quickly .  traders will generally not use a trading platform that lacks \"\" action \"\" .  - in terms of new power , i feel it is extremely important that your managers  create an identity for the company . luckily no rival has done this ( though  green energy is closer than most ) . the company that can communicate a  simple and powerful message will create a competitive advantage for itself .  i believe you can differentiate yourself in this market ( though you are  selling a commodity ) . since you are essentially selling service ,  differentiation is always possible .  on a final note , i wanted to ask a favor . my nephew recently graduate from  michigan state university with a degree in business . i brought him to  wharton to work on the tiger projects . this was because i knew he could add  value , and because i thought he needed more experience in some strategy  areas . he served as project coordinator and worked on several projects  ( including enron ) . i was hoping i could get him an interview at enron since  he expressed interest in your company . any help you could offer is  appreciated .  thanks again for making the experience memorable to the students .  keith\",0\n\"Subject: re : var for metals  ted , anjam ' s and myself ' s meeting at mg in ny office on 7 / 20 / 00 was  productive .  i am working on a summary of this discussions ( 1 a version layout )  and will send it to you after consulting with anjam .  regards ,  tanya .\",0\n\"Subject: reuters : ecommerce  mr kaminski ,  the 4 reports that you ordered : european gas market , european electricity  market , uk gas market and uk electricity market has now been processed . you  should get the 4 reports in the next week or so .  also , just to let you know we have just produced 23 ecommerce reports  covering all aspects of ecommerce . these reports are very extensive and  have all the latest data on ecommerce which is available exclusively within  these reports .  i have also enclosed a brochure with the title of all the ecommerce reports .  if you have any queries of if i can be of further assistance to you in the  future , please do not hesitate to contact me directly .  regards ,  miss . mychau phan  energy account manager  reuters business insight  85 fleet street  london ec 4 p 4 al .  tel : ( + 44 ) 20 675 7288 / 0990  fax : ( + 44 ) 20 7675 0991  mphan @ rbi - reports . com  website : http : / / www . . com / energy  - ecommerce cat . . pdf\",0\n\"Subject: re : costless collar for hanover  bob ,  good job .  zimin  bob lee @ enron  01 / 11 / 2001 08 : 10 am  to : zimin lu / hou / ect @ ect  cc :  subject : costless collar for hanover  fyi - looks like we ' ve converged .  bob  - - - - - - - - - - - - - - - - - - - - - - forwarded by bob lee / na / enron on 01 / 11 / 2001 07 : 04 am  - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : chris loehr @ ect on 01 / 10 / 2001 04 : 50 pm  to : ron baker / corp / enron @ enron  cc : anne yaeger / hou / ect @ ect , ryan siurek / corp / enron @ enron , wes  colwell / hou / ect @ ect , bob lee / na / enron @ enron  subject : costless collar for hanover  ryan and i have looked at the research model and made some adjustments .  the treasury rate at 12 / 28 / 00 was 5 . 127 % ( research uses 4 . 6 % which probably  takes into account the recent fed 50 bp cut )  the maturity is 6 / 30 / 03 or 2 . 5 years ( research uses 3 years )  using these assumptions and a 47 . 2 % volatility in the bloomberg collar  function results in a ceiling of 92 103 / 256 and a floor of 34 7 / 8 . after  adjusting the research model for the changes above , ryan and i got a similar  range from the research model so we are comfortable with these numbers .  let me know if there are any questions .  chris  x 33092  ron baker @ enron  01 / 10 / 2001 10 : 52 am  to : wes colwell / hou / ect @ ect , ryan siurek / corp / enron @ enron , chris  loehr / hou / ect @ ect , anne yaeger / hou / ect @ ect  cc :  subject : costless collar  attached is the updated valuation from bob lee in research using the actual  3 - year historical vol . of 47 . 2 which results in a call strike of 97 . 978 .  also , he has confirmed that the presence of the swap has no impact on the  value of the collar . let me know if you have questions . thanks ,  ron  - - - - - forwarded by ron baker / corp / enron on 01 / 10 / 2001 10 : 28 am - - - - -  bob lee  01 / 10 / 2001 08 : 44 am  to : andrea v reed / hou / ect @ ect , ron baker / corp / enron @ enron  cc : zimin lu / hou / ect @ ect  subject : costless collar  here ' s the calculation using the historical volatility . the strike drops  slightly . the volatility in the calculation is the expected future  vol ; atility - looking at traded options for hc and an expected fall off in  vol for long dated options , one could justify a vol estimate in the range 40  - 50 % for the collar .  the presence of the swap makes no difference on the collar valuation .  bob\",0\n\"Subject: re : giuseppe cell phone  stinson ,  no problem .  vince  stinson gibner  07 / 12 / 2000 11 : 26 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : giuseppe cell phone  vince ,  can i loan to giuseppe my cell phone for the summer ?  stinson  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 07 / 12 / 2000  11 : 25 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : samer takriti @ enron communications on 06 / 28 / 2000 10 : 49 am  to : stinson gibner / hou / ect @ ect @ enron  cc :  subject : re : bandwidth trading feature set  i will be on the call . i may disconnect around 4 : 00 to attend the traders '  daily meeting .  a couple of issues :  1 . would it be possible to get gappy a cell phone for the summer ? he does not  have a phone at home . i think the reason for avoiding installing a phone in  his apartment is the increasing cost of his houston stay .  2 . it is getting noisier here . gappy and i are wandering if we could get  office space downstairs ( that we share ) . we will maintain presence on 44 , but  we will be able to discuss when needed .  - samer\",0\n\"Subject: re : var  vince  thanks for the update - especially your point 3 which echoes our own discussion yesterday : i want to clarify responsibilities for maintenance and administration of var .  we need transparency around the process so that mapping decisions , for example , are easily made , supported and reviewed .  it became clear after last friday ' s events , that we are in an awkward paradigm with respect to how we handle var here , particularly at \"\" pressure points \"\" .  i am putting together the scope of a \"\" general overhaul \"\" of the var process , including method and administration , to which i hope we would all buy in , so be assured of our co - operation .  dp  - - - - - original message - - - - -  from : kaminski , vince  sent : wednesday , april 11 , 2001 2 : 49 pm  to : port , david  cc : lavorato , john ; kaminski , vince ; tamarchenko , tanya  subject : var  david ,  during today ' s var coordination meeting we had a discussion of issues  related to mapping of the forward price curves into core locations .  mapping is a necessity dictated by the limitations of the computer system :  we have to reduce the dimensionality of the problem to stay within the bounds  of available cpu memory . also , in some cases the quality of price discovery is poor  and it ' s difficult to model the price curves independently : we solve the problem by mapping  them into more liquid and better behaved core locations curves .  we have agreed on the following :  1 . winston will investigate the it side and determine to what extent we can increase the number  of forward price curves that are simulated as basic ( core ) curves . he will investigate the impact of a larger  number of the core curves on the time required to complete the var run .  2 . the curves associated with the biggest 10 - 20 positions in each commodity should be  modeled as core curves ( i . e . no mapping into other locations ) . it makes sense to monitor  the biggest risks separately and avoid aggregating them into less transparent aggregates .  3 . the results of an automated clustering ( mapping ) procedures should be systematically  monitored by a human and corrected if they misrepresent the risks of the trading positions .  this responsibility should be vested with one person ( right now the responsibility is  dispersed through the organization and this means in practice that nobody  is responsible ) . research can allocate one person to this task ;  cooperation of trading and rac will be critical .  vince\",0\n\"Subject: re : video conference with ross mcintyre  nick ,  we may have problems getting the vc location in houston on short notice .  we are currently on stand - by . we shall default , if we have no other choice ,  to a phone interview .  vince  enron capital & trade resources corp . - europe  from : nick mooney 04 / 18 / 2000 09 : 09 am  to : vince j kaminski / hou / ect @ ect  cc : mark tawney / hou / ect @ ect  subject : video conference with ross mcintyre  vince ,  you should have received an invitation through lotus notes which outlines the  vc location for the conference call tomorrow . it is schedule for 4 : 30 pm uk  time ( 10 : 30 am houston time )  ross ' s background is from investment banking ex dresner bank , he has a phd in  mathematical and is currently with speedwell weather derivatives where he has  been developing weather derivative pricing and portfolio optimisation tools  which they have been marketing to end - users with weather risks .  the attached word documents are articles that he has written for publication .  regards  nick mooney  - mcs . doc  - analytic . doc  - par . doc\",0\n\"Subject: the national forum on corporate finance  andrew fastow  enron co .  hi andy  i don ' t recall sending the above attachment . if so , please pardon my  redundancy .  attached is some registration details for the upcoming corporate finance  conference here at rice . when you get a moment , if you could have someone  on your staff return it that would be great .  each topic is followed by \"\" panel \"\" discussion . we have you slated to serve  on the panel dealing with \"\" equity dilution from option compensation \"\" and  will feature work by david yermack from nyu . stu gillan from tiaa / cref  will be serving on the panel with you along with john blahnik from delphi  automotive .  please call me direct if i can be of any help or assistance .  dave ikenberry  - registation details regarding . doc  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  prof . david ikenberry  jones graduate school of management  rice university  713 - 348 - 5385\",0\n\"Subject: us gas storage growth  huge growth in natural gas storage tracked  as the natural gas market approaches 30 tcf per year , demand for natural  gas storage capacity will rise exponentially . although the snowball has just  started rolling , current plans by natural storage operators will boost  working capacity by 430 bcf , or 10 % , and will raise peak - day deliverability  11 . 8 bcf per day , or 13 . 8 % , according to a new survey by intelligence press .  intelligence press ' new multimedia research package provides a comprehensive  look at all current activity on 458 storage fields with additional key  information on 101 lng facilities . among them are 38 proposed natural gas  storage fields and 15 storage expansion projects . depleted fields capture the  largest share of the proposed fields with 24 , followed by aquifers with six ,  and salt domes and salt beds with four each . altogether the proposed new  fields account for about 329 bcf in working capacity and 9 . 7 bcf per day in  deliverability . proposed and potential expansions represent an increase of  about 100 . 5 bcf of working capacity and 2 . 1 bcf per day in deliverability .  but these projects are just the tip of the iceberg . regulatory changes ,  shifting natural gas flows and increases in demand due to growth in the  economy and particularly in natural gas fired power generation are expected  to cause significant additional storage growth in the next decade . for more  information go to : www . intelligencepress . com  rbac  gpcm natural gas market forecasting system  - - - - - original message - - - - -  from : enerfax daily [ smtp : enerfax @ fastband . com ]  sent : friday , march 31 , 2000 1 : 52 am  to : * * aaaenerfax  subject : enerfax daily ( http : / / www . enerfax . com / )  - atto 0002 . htm\",0\n\"Subject: re : clewlow and strickland book  steve ,  i can order the books at 15 % discount . i am sending you  4 copies today and will be glad to order more on your behalf .  vince  steven leppard  01 / 23 / 2001 04 : 22 am  to : vince j kaminski / hou / ect @ ect  cc : sharad agnihotri / lon / ect @ ect  subject : clewlow and strickland book  hi vince  is there any way we can lay our hands on clewlow and strickland ' s new book at  a preferential price ?  steve\",0\n\"Subject: re : my model for spikes  valery ,  i am interested in receiving the preprint .  on another note , i would be glad to meet you for lunch / dinner  sometimes during the next few weeks .  please , let me know what would be the best time to meet .  vince  vincent kaminski  managing director - research  enron corp .  1400 smith street  room ebl 962  houston , tx 77002 - 7361  phone : ( 713 ) 853 3848  fax : ( 713 ) 646 2503  e - mail : vkamins @ enron . com  \"\" valery kholodnyi \"\" on 12 / 20 / 2000 03 : 13 : 09 pm  to : vkamins @ enron . com  cc :  subject : my model for spikes  dear dr . kaminski ,  i was recently allowed to release into the public domain on the limited basis  the first of the preprints that i recently authored on my model for spikes in  power prices and for the valuation of the contingent claims on power . in this  regard , i have just given a talk on this model at the joint seminar of the  center for energy finance education and research and the institute for  computational finance at the ut austin . right now i am also in the process of  forming a list of specialists both in the industry and academia who might be  interested in receiving this preprint . please let me know if you might be  interested in receiving this preprint .  i look forward to hearing from you .  sincerely yours ,  valery kholodnyi  manager of quantitative analysis  research and analytics group  txu energy trading  ps . here are the main preprints that i have recently authored on my model for  spikes in power prices and valuation of contingent claims on power :  1 . valery a . kholodnyi , the stochastic process for power prices with spikes  and  valuation of european contingent claims on power , preprint , txu - rag - 01 / 00 ,  july  2000 .  2 . valery a . khlolodnyi , valuation of a swing option on power with spikes ,  preprint txu - rag - 05 / 00 , august , 2000 .  3 . valery a . kholodnyi , valuation of a spark spread option on power with  spikes ,  preprint txu - rag - 21 / 00 , november 2000 .  4 . valery a . kholodnyi , valuation of european contingent claims on power at  two  distinct points on the grid with spikes in both power prices , preprint  txu - rag - 24 / 00 , november 2000 .  5 . valery a . kholodnyi , valuation of a transmission option on power with  spikes ,  preprint txu - rag - 25 / 00 , november 2000 .  as i have indicated to you in my previous e - mail , contrary to the standard  approaches , i model spikes directly , as self - reversing jumps on top of a  stochastic process for the regular dynamics of power prices in the absence of  spikes . in this way the dynamics of power prices is modeled as a non - markovian  process , even if the process for the regular dynamics of power prices is  markovian . among other things my model for spikes allows for the explicit  valuation and hedging of contingent claims on power with spikes , provided that  the corresponding contingent claims on power can be valued and hedged in the  absence of spikes .\",0\n\"Subject: visit to enron  tom ,  i am forwarding to you a copy of the message from nick bambos . i shall try to  catch you  for a few minutes today ( monday ) to close the loop on this effort .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 13 / 2000  11 : 15 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  nick bambos on 03 / 12 / 2000 05 : 32 : 35 pm  to : vince . j . kaminski @ enron . com , bambos @ stanford . stanford . edu  cc :  subject : visit to enron  hello vince ,  it was nice seeing you at stanford and many thanks for the lunch  we had together . i really enjoyed our discussions , both at the  technical level and otherwise .  i promised to send you an e - mail regarding possible dates for  a visit to enron . i delayed it for a week till my schedule was  clearer . let ' s see if we can get a match with your schedule -  mine is rather terrible :  friday , 21 st of april looks good . but april 23 rd is easter  sunday , so that may make it difficult for some people at enron  to be around . let me know if that is the case . i am willing to  visit then , because the week after that i am scheduled to be in  japan and in the previous weeks i am all committed on fridays .  friday , 19 th of may is the next possibility , but this probably  is too far out . the main problem is that i am operating within  a window of opportunity for attracting top students for this  research . this window closes by the end of april , and it would be  important for the student support funds to be in place then , so  that i can make hard commitments to students and attract top  talent . i am already reviewing files of students who have  approached me for phd advising , and i am in a mode of doing \"\" soft  commitments to star - level students \"\" to get this research and its  potential on their radar screen . top students are highly sought  after by advisors and i want to be an early player in this  competition .  does my visit to enron have to happen before we can set up the  project and student support at stanford ? if so , doing it before the  end of april is important for getting top people . if the visit can  happen after we get the ball rolling , then we can schedule it in may .  i assume there will be multiple visits both ways when the project gets  going . please let me know what you think .  best regards ,  nick\",0\n\"Subject: re : part - time work  cantekin  we shall get back to you when i return from europe in a week .  vince  \"\" cantekin dincerler \"\" on 09 / 25 / 2000 12 : 46 : 51 pm  please respond to  to :  cc :  subject : re : part - time work  vince ,  i have received the full - time offer package from associate & analyst program  last week . apparently they have pretty tight deadlines . because of a certain  clause in the contract , i may have to give them an answer by october 16 th .  since we discussed this before i left enron , i felt it would be a good idea  to inform you of the recent developments .  i am looking forward to hearing from you soon regarding both part - time and  full - time employment opportunities with the research group .  best ,  - - - - - - - - - oooo - - - - - oooo - - - - - - - - - -  cantekin dincerler  doctoral candidate  the university of texas at austin  graduate school of business  department of finance  office : ( 512 ) 471 - 1676  fax : ( 512 ) 471 - 5073  home : ( 512 ) 472 - 5356  cell : ( 512 ) 680 - 5355  http : / / uts . cc . utexas . edu / ~ cantekin  - - - - - - - - - - - - - oooo - - - - - oooo - - - - - - - - - -\",0\n\"Subject: re : dinner speaker - may 23  dear mr . kaminski ,  ?  attached ? is the brochure of the eastern conference . ? i have listed you as  the dinner speaker for the evening of wednesday , may 23 , 2001 . ? please  ensure that your name and title is correct . ? if you have any questions or  concerns please feel free to contact me .  ?  sincerely ,  ?  jeremy t . guenter  administrative assistant  center for research in regulated industries  rutgers university - graduate school of management  180 university avenue , room 200 p  newark , nj 07102 - 1897  phone : 973 - 353 - 5761 ; fax : 973 - 353 - 1348  http : / / www . rci . rutgers . edu / ~ crri  crri @ andromeda . rutgers . edu ?  - - - - - original message - - - - -  from : michael a . crew [ mailto : mcrew @ andromeda . rutgers . edu ]  sent : wednesday , march 21 , 2001 11 : 08 am  to : shirley . crenshaw @ enron . com  cc : vkamins @ enron . com ; crri @ andromeda . rutgers . edu ;  kleindorfer @ wharton . upenn . edu  subject : dinner speaker - may 23  shirley ,  this is to follow up today ' s conversation with anita . as mentioned paul  kleindorfer invited vince to be our dinner speaker on thursday , may 24 . on  reflection given the strong line up for wednesday - fred kahn et al - we  would very much like vince to be the speaker on wednesday . this will  conclude the day very well giving participants a strong incentive to be  there for the wednesday .  i gather that this change should be acceptable to vince .  we will show vince ' s name as follows :  wincety j . kaminski  managing director - research  enron  jeremy will be em ailing you the program with this information immediately .  we would like to go to press today . failing that we can go to press  tomorrow . we would very much appreciate your confirming this and making any  corrections or changes . if you would respond to all of us it would be  appreciated .  michael  michael a . crew  professor ii  director - center for research in regulated industries  editor - journal of regulatory economics  rutgers university , graduate school of management  180 university avenue  newark , n . j . 07102 - 1897  phone : 973 353 5049 fax : 973 353 1348  http : / / www - rci . rutgers . edu / ~ crri  - ecol . pdf\",0\n\"Subject: re : pre - meeting weathereffects site cruise  vince ,  you ' re right . it is wednesday ! see you then .  ed  - - - - - original message - - - - -  from : vince j kaminski [ mailto : vince . j . kaminski @ enron . com ]  sent : thursday , july 06 , 2000 12 : 14 pm  to : ekrapels @ esaibos . com  cc : vince j kaminski ; mike a roberts  subject : re : pre - meeting weathereffects site cruise  ed ,  this is a terrific site . i look forward to another presentation .  one question . you mentioned tuesday in our phone conversation .  i have the presentation scheduled for wednesday next week .  please , double check the time and date .  vince  \"\" edward krapels \"\" on 06 / 30 / 2000 03 : 15 : 43 pm  please respond to  to : \"\" ' vince j kaminski ' \"\"  cc : \"\" jeffrey shorter \\ ( e - mail \\ ) \"\"  subject : re : pre - meeting weathereffects site cruise  sold ! i ' ll initiate the call .  - - - - - original message - - - - -  from : vince j kaminski [ mailto : vince . j . kaminski @ enron . com ]  sent : friday , june 30 , 2000 3 : 44 pm  to : ekrapels @ esaibos . com  cc : vince j kaminski  subject : re : pre - meeting weathereffects site cruise  ed ,  thursday works for me . what about 10 : 30 my time ?  vince  \"\" edward krapels \"\" on 06 / 30 / 2000 02 : 43 : 00 pm  please respond to  to : \"\" ' vince j kaminski ' \"\"  cc :  subject : re : pre - meeting weathereffects site cruise  how about thursday , july 6 ?  - - - - - original message - - - - -  from : vince j kaminski [ mailto : vince . j . kaminski @ enron . com ]  sent : friday , june 30 , 2000 3 : 29 pm  to : ekrapels @ esaibos . com  cc : vince j kaminski  subject : re : pre - meeting weathereffects site cruise  ed ,  a correction . i shall spend an entire day at prc ( performance review )  on friday , july 7 . can we do on another day  vince  \"\" edward krapels \"\" on 06 / 30 / 2000 12 : 40 : 59 pm  please respond to  to : \"\" ' vince j kaminski ' \"\"  cc :  subject : re : pre - meeting weathereffects site cruise  i ' ll still be here in boston so we ' d do it over the phone . ok ?  - - - - - original message - - - - -  from : vince j kaminski [ mailto : vince . j . kaminski @ enron . com ]  sent : friday , june 30 , 2000 12 : 11 pm  to : ekrapels @ esaibos . com  cc : vince j kaminski  subject : re : pre - meeting weathereffects site cruise  ed ,  will you be in houston on that day or we shall do it over the phone ?  vince  \"\" edward krapels \"\" on 06 / 30 / 2000 09 : 13 : 04 am  please respond to  to : \"\" ' vince j kaminski ' \"\"  cc : \"\" jeffrey shorter \\ ( e - mail \\ ) \"\"  subject : pre - meeting weathereffects site cruise  vince ,  how about a pre - meeting web site cruise on friday , july 7 at 11 am edt ?  ed  - - - - - original message - - - - -  from : vince j kaminski [ mailto : vince . j . kaminski @ enron . com ]  sent : friday , june 30 , 2000 9 : 52 am  to : ekrapels @ esaibos . com  cc : vince j kaminski  subject : re : next visit to houston  ed ,  july 12 , 2 : 30 it is . i would like the pre - meeting site cruise .  how can we arrange it ?  vince  \"\" edward krapels \"\" on 06 / 30 / 2000 04 : 00 : 53 am  please respond to  to : \"\" ' vince j kaminski ' \"\"  cc : \"\" jeffrey shorter \\ ( e - mail \\ ) \"\"  subject : re : next visit to houston  vince ,  we ' re all set for 2 : 30 on july 12 . how about a pre - meeting web site cruise  on friday , july 7 at 11 am edt ?  ed  - - - - - original message - - - - -  from : vince j kaminski [ mailto : vince . j . kaminski @ enron . com ]  sent : thursday , june 29 , 2000 5 : 04 pm  to : ekrapels @ esaibos . com  cc : vince j kaminski ; shirley crenshaw  subject : re : next visit to houston  ed ,  wednesday , july 12 , 2 : 300 will work for me .  i shall be glad to review your website - -  www . weathereffects . com . i shall invite some  people who work on electricity in  my group to join me .  vince  \"\" edward krapels \"\" on 06 / 29 / 2000 03 : 53 : 40 pm  please respond to  to : \"\" ' vince j kaminski ' \"\"  cc : \"\" jeffrey shorter \\ ( e - mail \\ ) \"\"  subject : re : next visit to houston  vince ,  good to hear from you and i ' m glad you ' re available . how is wednesday at  2 : 30 ?  i did look at eol and am not surprised to see its quality . i was unable to  say much about it in my risk electricity hedging and trading report because  of deadline pressures . how is the site doing ? i am intrigued by the  competition for trading platforms and was astonished to hear that goldman ,  morgan , bp and shell were going to launch a site to compete with yours . talk  about a shotgun marriage !  if we have time next week , i could step you through our website - -  www . weathereffects . com . i ' m very proud of what we ' ve done . i can ' t give out  a password yet but would be happy to walk through the site with you over the  phone using my password . it ' s a very ambitious site - - with state - of - the - art  wsi weather ( seasonal , 6 - 10 , and day to day ) driving a good load model for  pjm and nepool . esai contributes oil and gas input price forecasts , capacity  judgments , and \"\" herding \"\" ideas to develop power price forecasts for same  time periods . after one month ' s full - bore effort , i ' m pleased with the  results ( e . g . , we forecast nepool onpeak to be $ 43 and it turned out $ 46 ) .  have a great weekend .  ed  - - - - - original message - - - - -  from : vince j kaminski [ mailto : vince . j . kaminski @ enron . com ]  sent : wednesday , june 28 , 2000 5 : 29 pm  to : ekrapels @ esaibos . com  cc : vince j kaminski ; shirley crenshaw  subject : re : next visit to houston  ed ,  i shall be available on both days . what about wednesday ,  july 12 , between 1 : 30 and 4 : 00 . please , let me know  what time would work for you .  it will be nice to see you again .  vince  p . s . by the way , did you have a chance to take a look at the eol ?  \"\" edward krapels \"\" on 06 / 28 / 2000 02 : 49 : 41 pm  please respond to ekrapels @ esaibos . com  to : vince j kaminski / hou / ect @ ect  cc :  subject : next visit to houston  dear vince ,  i will be returning to houston during the week of july 10 .  esai and weather services international have launched - - after more than 18  months of r & d - - our service , called energycast power trader and energycast  gas trader , for power traders in nepool and pjm . i would be happy to review  the service with you as well as take you on a tour of our web site . are you  available on july 12 - 13 ?  sincerely ,  ed krapels\",0\n\"Subject: re : monday presentation corrected  i made a few changes to make ebs projects slide more uniform and fixed  spelling of one name for ena projects slide .  - - stinson\",0\n\"Subject: re : henwood query  good talking with you this morning . by all means , talk to grant masson about  who else is using the henwood model within enron .  attached are the workbooks i mentioned . the \"\" details of jan and july . xls \"\"  workbook contains the resulting listing from the query i gave you yesterday  and you can see how the supply curve was created from that . the supply curve  becomes nonsense at points for reasons i believe are related to reliability  commitment constrants , instead of pure economic dispatch , and to the  aggregate reporting problem i described in my note yesterday .  the workbook \"\" supply curve . xls \"\" has the simplistic , average supply curve i  mentioned , constructed from fuel and vom costs . depending on the question  you are trying to answer , it may be an approach to consider .  the henwood contacts i had in mind are :  tao guo , phd , senior \"\" algorithmist \"\" ( 916 - 569 - 0985 ) \u0002 \u0005 the one i was thinking  of  wenxiong huang , phd senior project consultant ( 916 - 569 - 0985 )  ajit kulkarni , phd , software product manager ( 916 - 569 - 0985 ) \u0002 \u0005 more a trainer ,  but sharp  cosimo coscia , senior consultant ( south australia ) 618 - 8357 - 1244 \u0002 \u0005 very  resourceful  wade schauer , staff consultant , ( 916 - 569 - 0985 ) \u0002 \u0005 best for questions about  emss per se  all have emails , of course . template : tguo @ hesinet . com  also , if you can not get satisfaction , contact eric toolson , vp  ( 916 - 569 - 0985 ) . he has a laconic style , but is very focused on customer  satisfaction and retention . and he has the pull to make things happen .  regards ,  michael  > > > karolina potter / lon / ect @ enron 08 / 24 / 00 07 : 08 am > > >  michael ,  i am an analyst in paul mead ' s continental power trading group in london . i  am currently working on the project , which requires the use of emss , and  experience some difficulties interpreting the output results . steven leppard  from our research group gave me your name as an expert in this system and  consequently the person to contact in case of problems .  i have been running simulations for the dutch market and was asked to provide  the traders with some front - end screen graphs in order to interpret the  numerical results . one of the graphs is to show an hourly generation stack  and system ' s marginal cost , as we only run cost based scenarios . to sort each  station ' s hourly generation i need its marginal cost . to my knowledge though ,  marginal cost is only generated for a systems marginal unit ( transarea  marginal units query , marg _ cost unit ) . therefore i was sorting the stations  according to the cost which i calculated based on the outputs from station  detail by hour query . the calculation was as follows :  for each hour , for each generating station :  \"\" marginal cost \"\" [ o / mwh ] = ( generation _ cost [ oo 00 ] * 1000 ) / generation [ mwh ] -  vom _ cost [ o / mwh ]  this i thought would include fuel cost and start up costs . however , a  marginal station which i get on the stack as a result of the above  calculation is not a station given in marginal station field in transarea  marginal units query . i have also looked into transarea _ data _ hr table and  transarea _ data table but non of the costs there match my results .  do you happen to know what formula is used to determine marg _ cost and which  outputs i should be using to obtain the right results ?  it might be easier if we could discuss this issue on the phone . in this case  could you please send me your direct telephone number . i am struggling  understanding what is going on and would appreciate your help very much .  regards  karolina  - text . htm  - details of jan and july . xls  - supply curve . xls\",0\n\"Subject: re : fea announces the release of @ energy 2 . 0  thanks a lot , chris . yes , we only have one shared network license .  zimin  from : chris jeska / enron @ enronxgate on 02 / 15 / 2001 04 : 34 pm  to : zimin lu / hou / ect @ ect  cc :  subject : re : fea announces the release of @ energy 2 . 0  zmin ,  i spoke with the provider of this software . am i to understand that there is  only one concurrent user server licence for this software ?  i am almost completed and would like to test this out . let me know , thanks .  chris  57004  - - - - - original message - - - - -  from : lu , zimin  sent : tuesday , february 06 , 2001 10 : 27 am  to : jeska , chris  subject : fea announces the release of @ energy 2 . 0  here we go again .  zimin  - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 02 / 06 / 2001 10 : 25 am  - - - - - - - - - - - - - - - - - - - - - - - - - - -  zimin lu  02 / 06 / 2001 08 : 51 am  to : chris jeska / na / enron  cc :  subject : fea announces the release of @ energy 2 . 0  - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 02 / 06 / 2001 08 : 49 am  - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  01 / 31 / 2001 11 : 20 am  to : zimin lu / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect  subject : fea announces the release of @ energy 2 . 0  zimin ,  please , take a look at it .  i think we should download the update .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 31 / 2001  11 : 21 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" michelle mendoza \"\" on 01 / 26 / 2001 02 : 33 : 14 pm  to :  cc :  subject : fea announces the release of @ energy 2 . 0  january 26 , 2001  vince kaminski  enron north america corp .  1400 smith street  30 th floor , rm . 3036 b  houston , tx 77251 - 1188  1 713 - 853 - 3848  dear vince kaminski ,  this is to inform you of the release of @ energy 2 . 0 . ftp download  instructions are available immediately . the download instructions are  included at the end of this email . your cd ' s and manuals will be shipped to  you within 2 weeks . please see below for more information regarding this new  release .  please confirm that you are the correct recipient for this shipment and your  address above is correct by clicking reply and send . if any changes need to  be made , please make the changes above and reply .  * * warning : please note that if you did not received a license key for  @ energy after june 2000 , you will need to contact support @ fea . com or call  510 . 548 . 6200 to obtain a new license key to enable the new version . * *  * * swing users : @ energy / swing now replaces the \"\" swing \"\" product . see the  @ energy user manual for a discussion of the changes . contact fea for the  necessary license keys . you will be able to run both the new and old swing  simultaneously .  heres an overview of the new and changed features since version 1 . 6 :  @ energy ( forward curve )  jump parameters are now calibrated for use in other @ energy functions .  inputs and outputs to powercalib and comcalib have changed . see the  corresponding function syntax in the user guide for additional information .  35 - 40 % speed improvement . the module is now out of beta .  @ energy ( basics )  different interpolation schemes on forward prices are now supported . if you  use indexswap , exoticswap , or optindexswap with floating price linked to a  series of futures dates , such futures dates need not be close to dates  specified in the forward curve input . a new utility function , pathutil ,  allows you to simulate and visualize price paths consistent with the models  supported by @ energy . 25 - 30 % speed improvement .  @ energy ( advanced )  different interpolation schemes on forward prices are now supported . if you  use optdiffswap or diffswap with floating price linked to a series of  futures dates , such futures dates need not be close to dates specified in  the forward curve input . calspreadopt now allows for the specification of  two different mean reversion rates . 30 - 35 % speed improvement .  @ energy ( swing )  swingopt and stripswingopt now allow for valuation of swing straddle  contracts with overall load constraints . 65 - 70 % speed improvement . the  module is now out of beta .  @ energy ( weather )  30 - 35 % speed improvement .  if you have any questions please feel free to contact us . we appreciate this  opportunity to be of continuing service to enron north america corp . .  regards ,  michelle mendoza  support @ fea . com  + 1 - 510 - 548 - 6200  financial engineering associates , inc . ( fea )  * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  to download @ energy 2 . 0 via ftp , follow the following instructions :  note : using explorer leads to unpredictable results , so we suggest using  netscape or a dos shell .  using netscape :  in the location box type : ftp : / / energy @ ftp . fea . com  password : 2 rbzxgv 5  energy - 2 . 0 - win 32 . exe is for windows 95 / 98 / 2000 / nt . download and run on  a local drive .  using a dos shell :  at a dos prompt type : ftp ftp . fea . com  user : energy  password : 2 rbzxgv 5  type \"\" binary \"\" and hit ' return ' .  type \"\" ls \"\" for a list of available files .  type \"\" get \"\" energy - 2 . 0 - win 32 . exe and and wait for the ftp > prompt .  type \"\" quit \"\" .  the file will be downloaded into the directory at which you entered the ftp  site .  double click on the exe and follow the instructions on the screen .\",0\n\"Subject: re : check  vince ,  ?  please find attached an invoice that was sent to habiba back in september .  ?  thanks ,  julie  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com  to : julie @ lacima . co . uk  cc : vince . j . kaminski @ enron . com  sent : wednesday , november 01 , 2000 2 : 43 pm  subject : re : check  julie ,  yes , ? this is how we split this expense internally .  please , send it to me .  vince  \"\" julie \"\" on 10 / 31 / 2000 01 : 57 : 55 am  to : ? ?  cc :  subject : ? re : check  vince ,  oh . i sent an invoice to habiba for aus 5 k a while back , and she ? informed  me that she passed it along to the people who are handling the ? agreement  now ( i take that as fiona grant in london ? ) . i will then send ? out another  invoice of aus 5 k in the next week or so for the remaining ? balance .  should i have sent the invoice to you ?  thanks ,  julie  - - - - - original message - - - - -  from : ? vince . j . kaminski @ enron . com  to : julie @ lacima . co . uk  cc : vince . j . kaminski @ enron . com  sent : monday , october 30 , 2000 9 : 12 ? pm  subject : re : check  julie ,  a clarification . we had an agreement with ? chris and les to contribute aus  10 , 000  as a part of the ? cost .  vince  \"\" julie \"\" on 10 / 30 / 2000 ? 12 : 32 : 14 pm  to :  cc :  subject : ? re : check  vince ,  thank you for your email .  we ? will send you a copy of the book as soon as it is available , which we  are ? now estimating to be around 21 november ( no need to send us a cheque ;  you ? deserve it ) .  just let us know if we should use a different address than ? your office in  houston .  thanks again for all of your ? help .  julie  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com  to : ? julie @ lacima . co . uk  cc : vince . j . kaminski @ enron . com  sent : ? monday , october 30 , 2000 2 : 16 pm  subject : ? check  julie ,  this message was returned to me a few times ? when i sent it from my ? home  address .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by ? vince j kaminski / hou / ect on  10 / 30 / 2000  08 : 00 am ? - - - - - - - - - - - - - - - - - - - - - - - - - - -  vkaminski @ aol . com on 10 / 28 / 2000 ? 12 : 12 : 57 pm  to : julie @ lacima . co . uk  cc : vkaminski @ aol . com , vkamins @ enron . com  subject : ? check  julie ,  as the book is about to be released to ? the market , i would like to start  the  process to issue the check ? to lacima . who will be the payee ( lacima ) and  what  is the ? address ?  vince  - enron 202 _ 18 _ 09 _ 00 . doc\",0\n\"Subject: calculating bid - ask prices  this is about enron movie trading business where we are a market maker for  trading future of a movie ' s gross box office receipt . rich sent to many  people a writing explaining his movie trading idea and asked us to provide  some feedback .  i think the idea ( see below ) might be applicable to other parts of enron . we  can call it \"\" dynamic bid - ask price process \"\" .  in fact , we can set that the bidding period is closed when no new bid is  submitted to the system within a specified amount of time . the final  ( clearing ) bid and ask prices are just the last \"\" tentative \"\" price shown to  the public before the bidding period ends . ( so the customers can see the  final price before the market close and can revise their bids if they wish . )  i think this method is suitable for illiquid products to be traded via  enrononline . com .  - chonawee  - - - - - - - - - - - - - - - - - - - - - - forwarded by chonawee supatgiat / corp / enron on  04 / 24 / 2001 07 : 48 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  chonawee supatgiat  04 / 24 / 2001 07 : 40 pm  to : richard dimichele / enron communications @ enron communications  cc : chonawee supatgiat / corp / enron @ enron , cynthia harkness / enron  communications @ enron communications , greg wolfe / hou / ect @ ect , james  ginty / enron communications @ enron communications , jim fallon / enron  communications @ enron communications , kelly kimberly / enron  communications @ enron communications , kevin howard / enron communications @ enron  communications , key kasravi / enron communications @ enron communications ,  kristin albrecht / enron communications @ enron communications , kristina  mordaunt / enron communications @ enron communications , martin  lin / contractor / enron communications @ enron communications , paul racicot / enron  communications @ enron communications , zachary mccarroll / enron  communications @ enron communications , martin lin / contractor / enron  communications @ enron communications  subject : calculating bid - ask prices  i think we should let the price float with the market instead of trying to  forecast it . otherwise , if our forecast is not consistence with the market ,  we may have an imbalance in the bid - ask orders and we may end up taking some  positions . you know , as russ and martin pointed out , we cannot fight with the  studio and exhibitors because they have inside information and can game the  price easily .  one way to ensure the balance of the bid - ask orders is to embed an exchange  system inside our bid - ask prices front end . each week , we have a trading  period . during the period , instead of posting bid - ask prices , we post  \"\" tentative \"\" bid - ask prices , then we ask our customers to submit their  acceptable buying or selling price . these \"\" tentative \"\" bid - ask prices get  updated and are shown to the public . of course , customers can revise / withdraw  their bids anytime during the trading period . at the end of the period , we  calculate and post the final bid and ask prices . the seller who submits lower  selling price than our final bid price gets paid at the bid price . the buyer  who submits higher buying price than our final ask price pays at the ask  price . next week , we repeat the same process .  this way , we can manage our positions easily and we can also behave like a  broker where we don ' t take any position at all . we make profit from those  bid - ask spread . we don ' t have to worry about forecasting accuracy and  insiders ' trading because we don ' t have to take any position . let the market  be the one who decides the price .  if we maintain our net position as zero , at the end , when all the actual  gross box office numbers are reported in those publications , our customers  with open long / short positions are perfectly matched . using the  mark - to - market charge can reduce credit risk .  thanks ,  - chonawee  - - - - - - - - - - - - - - - - - - - - - - forwarded by chonawee supatgiat / corp / enron on  04 / 24 / 2001 07 : 24 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  chonawee supatgiat  04 / 20 / 2001 04 : 31 pm  to : richard dimichele / enron communications @ enron communications , key  kasravi / enron communications @ enron communications  cc : martin lin / contractor / enron communications @ enron communications  subject : some more input  hi rich and key ,  again i think your idea is very good . i think that we , as a market maker , can  reduce our credit risk ( risk of default ) if we do the \"\" mark - to - market \"\"  charging . that is , each week when we release a new expected value of the  gross box office receipt , we balance all the opening positions the same way  as in a regular future market . this way , we can give margin calls to the  couterparties who are expected to owe us a lots of money .  in the last paragraph , i think the gross box office can also be determined  from the market itself ( i . e . , if there are lots of buyers , our offer price  should go up . )  we can offer other derivative products such as options as well .  - chonawee\",0\n\"Subject: re : alpbacher finanzsymposium 2000 - invitation for a speech on  \"\" weatherderivatives \"\"  dear mr . enthofer ,  i regret to decline your kind invitation to speak at the alpbacher  finanzsymposium .  i have another engagement in the beginning of october in paris .  vince kaminski  finance trainer on 05 / 30 / 2000 08 : 02 : 42 am  to : \"\" ' vkamins @ enron . com ' \"\"  cc :  subject : alpbacher finanzsymposium 2000 - invitation for a speech on  \"\" weatherderivatives \"\"  dear mr . kaminski !  we are the organizer of the alpbacher finanzsymposium which is a top event  for austrian corporate and banking executives every year and takes place in  the mountains of tirol from 4 th to 6 th of october 2000 . it hosts  approximately 500 participants . this year ` s topic is \"\" balance sheet  protection \"\" .  we kindly ask you , if you are interested in presenting \"\" your latest research  into the application of weather risk management techniques \"\" at the symposium .  date and location : friday , october 6 th 2000 , 9 . 30 a . m . alpbach - tirol ,  congress centrum .  we would highly appreciate to welcome you in alpbach in october - please give  us notice as soon as possible . we will come back to you with organizational  details .  yours sincerely  hannes enthofer  hannes enthofer  finance trainer international gmbh  am hundsturm 11  a - 1050 wien  tel : + 431 5455277 - 0  fax : + 431 5455277 - 20  e - mail : enthofer @ financetrainer . com  web : www . financetrainer . com\",0\n\"Subject: visiting enron may 4 th  vince ( and shirley and melinda ) ,  thanks so much for including me in this meeting with stanford engineering - - - unfortunately , i ' m committed to participate in the enron law conference in san antonio that entire day .  thanks !  - - christie .  - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 04 / 09 / 2001 03 : 16 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  shirley crenshaw  04 / 09 / 2001 01 : 21 pm  to : christie patrick / hou / ect @ ect  cc : melinda mccarty / corp / enron @ enron  subject : visiting enron may 4 th  christie / melinda :  can christie meet with susan and vince on friday , may 4 th from 1 : 30 - 3 : 00 ?  please let me know .  thanks !  shirley  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 09 / 2001 01 : 15 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  04 / 09 / 2001 01 : 18 pm  to : shirley crenshaw / hou / ect @ ect  cc :  subject : visiting enron may 4 th  shirley ,  fyi  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 09 / 2001 01 : 19 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" susan c . hansen \"\" on 04 / 06 / 2001 06 : 14 : 10 pm  to : vince . j . kaminski @ enron . com  cc : clovell @ stanford . edu , donna lawrence , hillh @ stanford . edu , bambos @ stanford . edu  subject : visiting enron may 4 th  dear vince ,  this is great news ! donna and i are delighted that you have time to see us  on may 4 th .  i ' ll be out of the office next week . by copy of this email to my  assistant , carol lovell , i will ask her to get in touch with shirley for  scheduling as well as directions on where to meet you . we ' ll be glad to  meet with christie patrick as well .  looking forward to meeting you ,  susan  at 05 : 36 pm 4 / 6 / 01 - 0500 , you wrote :  > susan ,  >  > thank you for your message . i shall be glad to meet with you on may the  > 4 th .  > i shall ask my assistant , shirley crenshaw ( 713 ) 853 5290 , to call you to  > set up the meeting .  >  > also , for your information , we have recently set up a special unit to  > coordinate enron ' s  > relationships with the universities . the person running this unit is  > christie patrick .  > please , feel free to contact her and give my name as a reference . i shall  > coordinate the meeting  > on may the 4 th with her .  >  > vince  >  >  > additional information re christie :  >  > phone : ( 713 ) 853 - 6117  >  > email : christie _ patrick @ enron . com  >  >  >  >  >  > \"\" susan c . hansen \"\" on 04 / 03 / 2001 04 : 33 : 54 pm  >  > to : vkamins @ enron . com  > cc :  > subject : visit from stanford ?  >  >  > dear dr . kaminski ,  >  > let me briefly introduce myself , i am the director of corporate relations  > for the school of engineering at stanford university . in this role , i am  > always on the watch for ways to bring our faculty together with companies  > that have an appetite for engagement with top tier research institutions .  >  > i believe you know hill huntington , who is a senior researcher with  > stanford ' s energy modeling forum . he suggested i get in touch with you for  > some ideas about contacts at enron . i ' m in the process of planning a trip  > to texas in early may along with my colleague donna lawrence , the  > university ' s director of corporate relations . we were hoping to be able to  > include a stop at enron on our itinerary . right now it appears that friday ,  > may 4 th would work best for us but we ' re at the very beginning of our trip  > planning .  >  > the purpose of our visit would be to review the current relationship  > between enron and stanford , to give you an overview of current priorities  > in the school of engineering , and ask for your help in identifying the best  > points of contact .  >  > i look forward to hearing from you about your availability ,  >  > sincerely ,  > susan hansen  >  >  >  >  > susan c . hansen  > director , corporate relations  > school of engineering  > stanford university  > stanford , ca 94305 - 4027  > ( 650 ) 725 - 4219  susan c . hansen  director , corporate relations  school of engineering  stanford university  stanford , ca 94305 - 4027  ( 650 ) 725 - 4219\",0\n\"Subject: re : martin lin  stinson ,  thank you for following up promptly with support on martin lin . i spoke with  vince regarding a conversation i had with compenstation yesterday .  compensation has recently comleted an analysis for vince ' s group and  determined that the appropriate salary for managers in research should be  90 , 000 .  the following will be his pay structure :  effective august 1 , 2000  job title manager  base salary $ 90 , 000  retention bonus $ 10 , 000 ( ending 8 / 1 / 2001 )  please provide a job title that you would feel appropriate for this positon .  if you would like to discuss please let me know .  norma  x 31545  stinson gibner  08 / 23 / 2000 08 : 46 am  to : norma villarreal / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : martin lin  norma ,  thanks for your excellent suggestion of using a retention bonus for martin  lin in order to address both the issues of compensation and retention for  him . as i mentioned during our meeting , just my small team within research  has lost 3 people over about the last 2 years , and we have had a hard time  recruiting good candidates . last year we made an offer to a person  graduating from ut ( ms in computational finance ) of 75 k plus 25 k signing  bonus . he replied that he would like to work at enron but was already in  the position of turning down an offer with a base salary above $ 100 k .  martin is a very skilled individual with a ph . d . in electrical engineering  and almost two years experience at enron . he would be very difficult ( and  expensive ) to replace . for this reason i feel it necessary to be proactive  in finding ways of retaining him as an employee .  please let me know if we have a green light to go forward with a 1 - year  retention bonus of 10 k and a raise to 87 k base salary for mr . lin . i would  plan to then give martin an additional raise at his next review period .  regards ,  stinson  x 34748\",0\n\"Subject: rice / enron finance seminar series  enron seminar series in finance  jones graduate school of management , rice university  paul schultz  university of notre dame  will give a seminar at the jones school on friday , march 30 , ?  ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? \u0001 & who makes markets \u0001 8  the seminar will begin at 3 : 30 in room 115 .  the paper will be made available shortly .\",0\n\"Subject: tage resume submittal  i have no need at this time for external people . thanks for thinking of  berney and me .  regards ,  ed  - - - - - - - - - - - - - - - - - - - - - - forwarded by ed mcmichael / hou / ect on 11 / 25 / 2000 08 : 47  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : berney c aucoin 11 / 21 / 2000 01 : 15 pm  to : ed mcmichael / hou / ect @ ect  cc :  subject : tage resume submittal  let vince know if you ' re interested in this person .  bern  - - - - - - - - - - - - - - - - - - - - - - forwarded by berney c aucoin / hou / ect on 11 / 21 / 2000  01 : 13 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  11 / 21 / 2000 11 : 43 am  to : berney c aucoin / hou / ect @ ect , wanda curry / hou / ees @ ees  cc :  subject : tage resume submittal  please , take a look at the lst resume and let me know  what you think ( shelly wood ) .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 11 / 21 / 2000  11 : 50 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" pj \"\" on 11 / 15 / 2000 01 : 58 : 46 pm  to : \"\" vince j kaminski \"\"  cc :  subject : tage resume submittal  vince ,  two candidates for your review . please call me .  ?  paul johnson , cpc  president  ( 281 ) 497 - 8595  ?  please visit our website  ? www . austingrp . com  - wood , shelly . doc  - jpbresume 2 . doc\",0\n\"Subject: computerworld article  fyi : several errors like ' brokering ' in the report but given the fact that  the guy had no clue what enron does or companies like it do , this came out  okay . in all of the pr group ' s marketing effort , enron as a market - maker is  the message .  ravi .  - - - - - forwarded by ravi thuraisingham / enron communications on 02 / 05 / 01 10 : 54  am - - - - -  shelly mansfield  02 / 05 / 01 10 : 49 am  to : ravi thuraisingham / enron communications @ enron communications  cc :  subject : computerworld article  shelly mansfield  enron broadband services  713 - 853 - 4589 office  713 - 646 - 8887 fax  877 - 929 - 7889 pager  713 - 303 - 4720 cellular  - - - - - forwarded by shelly mansfield / enron communications on 02 / 05 / 01 10 : 51 am  - - - - -  norman levine  02 / 05 / 01 10 : 08 am  to : shelly mansfield / enron communications @ enron communications  cc :  subject : computerworld article  following is the computerworld article :  link :  enron seeks to broker storage deals between users , ssps  by lucas mearian  while technology service providers have long been talking about data storage  as a utility that should be sold in the open marketplace like electricity or  natural gas , little has been done to pool market resources in order to hawk  surplus disk - array capacity .  but that ' s exactly what a subsidiary of houston - based energy and  communications conglomerate enron corp . is doing by launching a  business - to - business exchange that it said will seek to match spare capacity  owned by storage service providers ( ssp ) with corporate users who want to be  able to quickly scale up and down the amounts of storage they have available .  enron broadband services this week announced that it has already signed a  deal with waltham , mass . - based storagenetworks inc . and is negotiating  similar agreements with at least six other ssps . if successful , analysts  said , enron ' s business proposition could go far toward generating a set of  operating standards for the emerging ssp business .  \"\" it ' s a market with mix of small and large players and companies that define  their roles differently , \"\" said ken weilerstein , an analyst at gartner group  inc . in stamford , conn . enron ' s plan also could help enterprise - level users  get additional benefits along with the storage capacity they ' re renting , such  as security and disaster recovery support , he added .  ravi thuraisingham , director of global bandwidth risk management at enron  broadband services , said the new offering won ' t include additional security  features . but enron does plan to standardize on a set of ssp services and  bundle them with disaster recovery and communications bandwidth capabilities ,  he said .  initially , enron - - which had total revenue of $ 101 billion last year - -  expects to charge users monthly fees of $ 25 to $ 55 per gigabyte of managed  storage , depending on market conditions and the length of time a company  expects to need the capacity . \"\" we ' re there to try to discover a market  clearing price , \"\" said thuraisingham , adding that the service is tentatively  due to go online in the third quarter .  enron said it has already signed best buy co . , one of the leading retailers  of consumer electronics , computers and software in the u . s . , to buy the  storage capacity it needs to support a customer relationship management  application through storagenetworks . connecting users such as best buy to  available storage could take anywhere from three days to three months ,  according to thuraisingham .  under enron ' s plan , storage capacity owned by participating ssps will be  connected to an existing network of switching hubs through which the company  currently trades telecommunications bandwidth . enron said it has 18 switching  centers , or \"\" pooling points , \"\" in the u . s . , and another seven overseas .  at first , the company plans to focus its attention on ssps in boston and  other metropitan areas where the necessary networking plumbing can be easily  installed . but even there , thuraisingham said , enron is \"\" pretty much in the  initial stages of getting ssps up to speed on what the market is about . \"\"  enron has been managing online trades of telecommunications bandwidth since  the spring of 1999 . later that year , it also launched a web site called  enrononline that oversees the trading of natural gas , electricity and other  commodities . that quickly became the world ' s largest e - commerce site and is  now said to be processing more than $ 1 billion worth of transactions daily .  norman levine  enron broadband services  713 - 853 - 5010  norman _ levine @ enron . net\",0\n\"Subject: contact details  dear mr . kaminski  it was good talking to you and i would like to thank you for your  interest in riskcare and willow . as discussed , i will contact you feb 1  to arrange a meeting . in the meantime please don ' t hesitate to contact  me if you have any further questions .  regards  manuel  manuel rensink  riskcare limited  piercy house  7 copthall avenue  london ec 2 r 7 nj  tel : + 44 ( 0 ) 207 562 3414  email : mrensink @ riskcare . com  http : / / www . riskcare . com\",0\n\"Subject: @ ect . enron . com email notification !  we are one @ enron . com !  please be aware of the following senders were automatically notified to ( a ) .  stop sending internet mail to your @ ect . enron . com address and to ( b ) . send  future internet communications to vince . j . kaminski @ enron . com :  jim . dyer @ bus . utexas . edu , john @ sava . com  reminder :  your @ ect . enron . com address should not be used any longer and will be  deactivated soon . so please make sure these contacts switch to your new  @ enron . com address . if you have subscribed to mailing lists , please make  sure to update your addresses there as well .  and  your shortname @ enron . com address ( i . e . jsmith @ enron . com ) will continue to  work , even though your formal address is longname @ enron . com ( i . e .  john . smith @ enron . com )  please do not reply to this message as it was automatically generated .\",0\n\"Subject: new frbny research : 5 / 3  now available at the new york fed ' s research site :  \"\" stocks in the household portfolio : a look back at the 1990 s , \"\" by tracy and  schneider ( current issues 7 , no . 4 )  \"\" currency orders and exchange - rate dynamics : explaining the success of  technical analysis , \"\" by osler ( staff report 125 )  \"\" recent changes in the u . s . business cycle , \"\" by chauvet and potter ( staff  report 126 )  u . s . and global economies charts , updated every wednesday  in addition , the foreign exchange committee ' s 2000 annual report is now  available  research home page  http : / / www . newyorkfed . org / rmaghome  feel free to forward these messages . to unsubscribe , contact  listserv @ peach . ease . lsoft . com . in the e - mail , type : signoff frbnyrmagl . for  more details : http : / / www . newyorkfed . org / rmaghome / subscribe / subscribe . html .  ?  this notification service is provided to you free of charge . by subscribing  to the service and providing your e - mail address , you agree to waive any  claim against the federal reserve bank of new york for any messages that you  may receive by reason of your subscription to this service and / or any  resultant harm to you and / or your computer from receipt of such messages . ?  the federal reserve bank of new york assumes no responsibility for any  inaccuracies in any messages you may receive as a result of your subscription  to this service .\",0\n\"Subject: request submitted : access request for maureen . raymond @ enron . com  vince :  maureen needed this access for her new lap top so she can take it with  her on vacation . there was no one here to approve it , so i approved it  for you . hope that was ok .  have a great time !  shirley  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 11 / 15 / 2000  01 : 51 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  arsystem @ mailman . enron . com on 11 / 15 / 2000 01 : 18 : 27 pm  to : shirley . crenshaw @ enron . com  cc :  subject : request submitted : access request for maureen . raymond @ enron . com  you have received this email because the requester specified you as their vp .  please click  approval to review and act upon this request .  request id : 000000000007498  request create date : 11 / 15 / 00 1 : 14 : 32 pm  requested for : maureen . raymond @ enron . com  resource name : vpn  resource type : applications\",0\n\"Subject: ena analyst and associate \"\" brownbag \"\" presentations  it is the intent of the office of the chairman to maintain a high quality  flow of analysts and associates rotating through enron north america as well  as provide them with up to date information on all the potential rotations in  ena . additionally , we would like to provide the ena aa ' s a forum for your  respective groups to promote your business unit as a viable alternative in  the rotation process . i need your assistance for this endeavor and want your  respective business unit to participate in the process by delivering an  informal presentation to the aa group which should include the following :  your business unit ' s current activities , purpose and interfaces with other  departments  recent successes and current projects  ideas on the horizon  opportunities in your business unit for aa ' s  the benifits of rotation in your business unit  an open q & a session  these presentations should be informal and it is not necessary to have  handouts . the goal is to provide an open forum for the aa ' s and to have them  ask questions about each business unit . also , bringing one of your current  aa ' s with you to provide their insight might help stimulate discussion . ted  bland will be contacting you to schedule your business unit for a  presentation . the first \"\" brownbag \"\" will take place september 8 between  12 : 00 pm and 1 : 00 pm in room 30 cl .  dave\",0\n\"Subject: electricity prices  vince ,  please find attached electricity prices file , let me know if you need any  additional information .  sincerely , elena\",0\n\"Subject: latest update on bp margin collar deal  - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 11 / 10 / 2000 11 : 56 am  - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : lee jackson 11 / 10 / 2000 10 : 40 am  to : bob lee / na / enron @ enron , zimin lu / hou / ect @ ect  cc : douglas s friedman / hou / ect @ ect  subject : margin collar  i wanted to give you the status on the bp margin collar deal . we submitted a  bid to bp yesterday where bp would pay enron just under $ 5 mm to assume the  contract . we have yet to have further discussions , so there ' s not much more  to report than that . we greatly appreciate your help on this project . i  feel like we put together a very good bid , and measured the risks  appropriately with limited time . i will keep you informed of how the  negotiations proceed .  thanks again ,  lee jackson\",0\n\"Subject: update on ut - enron activities : my conversation with rick causey  vince ,  good morning .  as you may know , last thur . enron honored this year ' s recipients of the  enron mba excellence fund scholars at a dinner in austin . in addition to  the three recipients , business school dean may and several of my  colleagues , enron attendees included sally beck , cindy justice , karen  marshall ( newly - appointed coordinator of higher education initiatives for  enron community relations dept . ) and rick causey .  i write you at this time to advise you i had occasion to discuss two  current enron / ut issues with rick :  i . spring 2001 conference participation by jeffrey k . skilling  ii . ut participation in enrontraining activities  per my conversation with rick last thur . , i followed up on that discussion  with an e - mail this morn that touched on those two topics .  i . with respect to the first , i wrote rick this morning that :  1 . we at the ut center for energy finance education and research ( cefer )  are planning a practitioner - industry conference in spring 2001 ( late feb .  or early march ) to discuss four topics : risk management , deregulation ,  real options , and international / globalization .  2 . the conference will kick off with a dinner / keynote address thur .  evening , then continue all day fri .  3 . i have had several discussions with you regarding conference timing ,  structure , participation and content .  4 . further to rick ' s agreement to do so during our discussion last thur . ,  in today ' s e - mail i asked rick to extend an invitation to jeff skilling to  be the keynote speaker at the thur . evening dinner .  ii . with respect to the second topic , rick and i also discussed ut  partcipation in enron corp . internal training for incoming enron corp .  analysts and associates . consequently , i e - mailed rick this morning a  specific set of issues - - \"\" valuation and risk management in energy markets \"\"  - - which my ut colleagues and i have covered in public as well as  customized exec ed settings , and which we would be pleased to customize for  presentation at enron . fyi , i am enclosing a copy of said topics at the  end of this e - mail .  i look forward to seeing you again soon , and to your ut visit on 10 / 11 . best ,  ehud  training program : \"\" valuation and risk management in energy markets \"\"  target audience : associates , analysts , traders , marketing / sales , risk  managers , financial analysts  program objectives :  1 . understanding the physical and financial u . s . markets for electricity  and natural gas  2 . understanding the structuring , reverse engineering and valuation of  exchange - traded and otc energy derivatives , including \"\" exotic \"\" options ,  structured products , and spread and basis products  3 . promoting a common language between trading and marketing personnel  regarding valuation and hedging of structured products  4 . risk - management  program contents :  i . \"\" electricity 101 \"\"  - - problems in pricing  - - spot markets  - - forward markets  - - trading : basis , fixed - price , volatility  - - markets : characteristics and participants  ii . valuation / structuring / hedging  1 . fundamentals of forwards and futures contracts :  - - forward contracts : definition , payoff diagram , pricing by arbitrage  - - futures vs . forwards  - - commodity futures  - - swaps  - - constructing forward curves : contrast with price forecast ; using the  spark spread ; incorporating regional bases  2 . introduction to option pricing :  - - payoffs  - - put - call parity  - - binomial model  - - black - scholes formula  - - option \"\" sensitivities \"\" ( the \"\" greeks \"\" ) ; delta and gamma  3 . uniqueness of energy derivatives :  - - \"\" term structure \"\" of volatility  - - convenience yield / seasonality  - - basis  4 . estimating volatility in energy markets :  - - estimating volatility in financial markets  - - hourly vs . daily vols  - - historical or implied vols ?  - - characterizing the volatility \"\" surface \"\" across time and strike  5 . design and valuation of structured products in commodity markets :  - - valuation of european call options in energy markets  - - average options on oil futures contracts  - - spread and basis products  - - \"\" swing \"\" options in power markets  - - weather derivatives  6 . risk - management  - - motivation for structured trades  - - valuation of real options ( e . g . , valuation of power plant or gas field )  - - value - at - risk ( one - and multi - factor models )  - - repowering option  7 . advanced topics ( for qualified audiences )  - - relationship between forward prices and expected spot prices  - - the importance of hedging volatility changes  - - consistent method for estimating hourly , daily and monthly term  structures of volatility  - - practical alternatives to vega - hedging  - - applying options theory to the valuation of power plants  - - valuation of \"\" swing \"\" options under ruthless and non - ruthless exercise  ehud i . ronn  professor of finance and jack s . josey professor in energy studies  director , center for energy finance education and research  mccombs school of business  university of texas at austin  austin , tx . 78712 - 1179  voice : ( 512 ) 471 - 5853  fax : ( 512 ) 471 - 5073  internet : eronn @ mail . utexas . edu \",0\n\"Subject: re : trading ag prods .  vince ,  just wanted to let you know that i have done some preliminary , high level , research into this commodity and would be glad to share it . please let me know if you would be interested in it . thank you .  shalesh ganjoo  vince j kaminski @ ect 05 / 01 / 01 10 : 20 am to : shalesh ganjoo / enron communications @ enron communications @ enron cc : elsa piekielniak / corp / enron @ enron subject : re : trading ag prods .  shalesh ,  a good idea . i shall forward it to the ag traders .  vince  from : shalesh ganjoo @ enron communications on 05 / 01 / 2001 10 : 12 am  to : nelson neale / na / enron @ enron  cc : vince j kaminski / hou / ect @ ect  subject : trading ag prods .  nelson ,  i know you are focusing on agricultural products for trading , so i just wanted to know if we are looking at wool . i know that it ' s traded in australia and new zealand , so we might be able to look into it as well . please let me know . thank you .  shalesh ganjoo \",0\n\"Subject: program  donna ,  i am sending you , as promised , the outline of the project . in case you have a  difficulty opening the attachment , i cc my assistant . she will be able to  fax it to you on monday .  vince  - 2001 field application form 2 . doc\",0\n\"Subject: fw : fea announces the release of @ energy 2 . 1 .  chris ,  fea just released a new version of @ energy 2 . 1 . could you update it with the new version ?  hopefully it will not take you too much time .  as always , i value your work and appreciate your help .  zimin  - - - - - original message - - - - -  from : kaminski , vince j  sent : tuesday , may 15 , 2001 8 : 37 am  to : lu , zimin  subject : fw : fea announces the release of @ energy 2 . 1 .  - - - - - original message - - - - -  from : \"\" erin hopkins \"\" @ enron [ mailto : imceanotes - + 22 erin + 20 hopkins + 22 + 20 + 3 cerin + 40 fea + 2 ecom + 3 e + 40 enron @ enron . com ]  sent : monday , may 14 , 2001 5 : 47 pm  to : kaminski , vince j  subject : fea announces the release of @ energy 2 . 1 .  05 / 14 / 2001  enron north america corp .  vince kaminski  1400 smith street  30 th floor , rm . 3036 b  houston , tx 77251 - 1188  1 713 - 853 - 3848  dear vince kaminski ,  this is to inform you of the release of @ energy 2 . 1 . ftp download  instructions are available immediately . the download instructions are  included at the end of this email . please see below for more information  regarding this new release . .  fea is pleased to enclose your new version of @ energy / erglib . the  accompanying documentation contains installation and other information .  here is an overview of the new and changed features since version 2 . 0 .  @ energy ( forward curve ) no change .  @ energy ( basics ) a control variate methodology hull ( 1997 ) has been  implemented for valuation of american options ( opt ) , black and  mean - reverting models . it greatly improves accuracy at minimal cost in  speed . all models now supports new scalar risk measures corresponding to  parallel displacement delta , hedge , and gamma . average price / strike options  now support an alternative way of computing theta . the definition of gamma  curves has been modified for all models .  @ energy ( advanced ) a faster and more accurate methodology is used to value  spread options . models affected are spreadopt , stripspreadopt , optspreadopt ,  optstripspreadopt . the new methodology dramatically improves speed . all  models now supports new scalar risk measures corresponding to parallel  displacement delta , hedge , and gamma . average price / strike options now  support an alternative way of computing theta . the definition of gamma  curves has been modified for all models .  @ energy ( swing ) the definition of gamma curves has been modified for all  models .  @ energy ( weather ) no change .  see the file fea \\ energy \\ ergnote . txt in your distribution for a list of bug  fixes .  here is an overview of the new and changed features since version 1 . 6 .  @ energy ( forward curve )  jump parameters are now calibrated for use in other @ energy functions .  inputs and outputs to powercalib and comcalib have changed . see the  corresponding function syntax in the user guide for additional information .  35 - 40 % speed improvement . the module is now out of beta .  @ energy ( basics )  different interpolation schemes on forward prices are now supported . if you  use indexswap , exoticswap , or optindexswap with floating price linked to a  series of futures dates , such futures dates need not be close to dates  specified in the forward curve input . a new utility function , pathutil ,  allows you to simulate and visualize price paths consistent with the models  supported by @ energy . 25 - 30 % speed improvement .  @ energy ( advanced )  different interpolation schemes on forward prices are now supported . if you  use optdiffswap or diffswap with floating price linked to a series of  futures dates , such futures dates need not be close to dates specified in  the forward curve input . calspreadopt now allows for the specification of  two different mean reversion rates . 30 - 35 % speed improvement .  @ energy ( swing )  swingopt and stripswingopt now allow for valuation of swing straddle  contracts with overall load constraints . 65 - 70 % speed improvement . the  module is now out of beta .  @ energy ( weather )  30 - 35 % speed improvement .  see the file fea \\ energy \\ ergnote . txt in your distribution for a list of bug  fixes .  if you are a user of the erglib library , please be aware of possible  backward compatibility issues in calls to eapo , easo , espreadapo ,  espreadaso , and ecrackapo . see fea \\ energy \\ ergnote . txt for additional  details .  here is an overview of the new and changed features since version 1 . 5 .  @ energy ( basics )  european options and strips of european options now support valuation via a  jump diffusion model ( see opt and stripopt functions ) . average price options  ( see the apo , spreadapo , crackapo functions ) , and average strike options  ( see the aso , spreadaso functions ) now allow for a direct input of the  fixing dates .  @ energy ( advanced )  includes two new functions , optstripopt and optstripspreadopt for valuation  of complex compound options .  if you are a user of the erglib library , please be aware of backward  compatibility issues in calls to eapo , easo , espreadapo , espreadaso , and  ecrackapo . see fea \\ energy \\ ergnote . txt for additional details .  here is an overview of the new and changed features since version 1 . 4 .  @ energy ( forward curve )  @ energy ( forward curve ) is the new module which includes functions designed  to generate forward curves , volatility curves and mean reversion rates used  in many other @ energy functions . module in beta release .  @ energy ( basics )  apo ' s and aso ' s : bug fixed when avg _ starts prompt .  type \"\" quit \"\" .  the file will be downloaded into the directory at which you entered the ftp  site .  double click on the exe and follow the instructions on the screen .  there is also a readme file which contains installation instructions .  you may wish to print this out for easy reference .  n . b . : the password is only valid until the first friday of next month .  if you have any questions please feel free to contact us . we appreciate this  opportunity to be of continuing service to enron north america corp . .  regards ,  erin hopkins  administrative assistant  financial engineering associtates , inc .  tel : + 1 . 510 . 548 . 6200  mailto : info @ fea . com  or  mailto : support @ fea . com\",0\n\"Subject: re : resume  i appreciate your recommendation of van for a summer internship with enron .  i have communicated with van and let her know that she will have a place on  our interview schedule at rice .  i will keep you updated regarding the status of van ' s application .  thank you ,  christy young  recruiter  enron  vince j kaminski  01 / 17 / 2000 07 : 39 am  to : christy young / hou / ect @ ect , beth miertschin / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , mike a roberts / hou / ect @ ect  subject : resume  christy and beth ,  van worked with us during the summer and over the winter break .  she did an outstanding job .  i would like to recommend her for another summer internship and  also keep her in mind for the future employment .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 17 / 2000  07 : 38 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" van t . ngo \"\" on 01 / 16 / 2000 06 : 00 : 57 pm  to : vince j kaminski / hou / ect @ ect  cc : shirley crenshaw / hou / ect @ ect  subject : resume  dear vince ,  please find attached a copy of my resume . i have  talked with christy young and beth miertschin , the  college recruiters for the a of those ,  i would be most interested in one of the \"\" finance  rotations . \"\" i would be happy to explore one of  the number of groups within this area . ( please  let me know if this is sufficient or if you will  need me to give more specific indication of which  department i would like to be considered for an  internship . )  i greatly appreciate your consideration regarding  my job opportunities with enron . please let me  know if there is anything else i can do to  facilitate this process . i look forward to our  meeting again .  sincerely ,  van ngo  p . s . shirley , i have mailed to you my parking  permit . please contact me if you had any problems  with it .  - myresume . doc\",0\n\"Subject: tage resume submittal  vince ,  two candidates for your review . please call me .  ?  paul johnson , cpc  president  ( 281 ) 497 - 8595  ?  please visit our website  ? www . austingrp . com  - wood , shelly . doc  - jpbresume 2 . doc\",0\n\"Subject: re : real options conference in cambridge  steve  given the practitioner audience , i would prefer a less technical  presentation . perhaps if you can talk about use of real options at enron in  general , and then give some examples ( graphically - - no notation ) of  diagrammatic representation might be good . remember there are many talks  and the capacity of the audience to absorb notation , grammar , and technical  detail is limited .  how about a more generic title \"\" real options at enron ? \"\"  please give me your title within enron please  at 11 : 07 d _ 04 / 25 / 00 + 0100 , steven . leppard @ enron . com wrote :  >  >  > lenos  >  > i ' d like to give a talk entitled \"\" diagrammatic representation of real  > options in enron \"\" , in which i will give a brief run - down of a diagrammatic  > technique i have developed for representing real option deals . my notation  > allows originators , managers and quants to communicate unambiguously , while  > still appreciating the complexity and subtlety of real optionality . i have  > defined a \"\" diagrammatic grammar \"\" which guarantees that the pricing of the  > deal follows immediately and automatically from the diagram .  >  > i propose to introduce the symbols and grammar , then go on to present some  > suitable examples of diagrams . if appropriate i ' ll talk about the links  > with dynamic programming . ( i will need some guidance as to how much  > technical detail i can go into based on the audience . )  >  > all the best ,  > steve  >  >  >  >  > ( embedded enron capital & trade resources corp .  > image moved  > to file : from : lenos trigeorgis  > pic 29415 . pcx )  > 04 / 20 / 2000 08 : 45 pm  >  >  >  >  >  >  > to : \"\" steven leppard \"\"  > cc : \"\" vince j kaminski \"\"  >  > subject : re : real options conference in cambridge  >  >  > steve  >  > thanks for agreeing to talk . i attach the program to see the other speakers  > and style ( it is addressed to a professional autience )  >  > please give me a suitable title for the talk ( replacing kaminski \u0001 % s slot on  > july 6 / energy session ) and the details of your position  >  > thanks  >  > lenos  >  > at 05 : 01 _ _ 04 / 20 / 00 + 0100 , steven leppard wrote :  > >  > >  > > dear prof trigeorgis  > >  > > vince kaminski has suggested that i would be a suitable speaker at your  > july  > > conference in cambridge , and i ' d be happy to come along if required .  > please  > > could you send me appropriate details , and the audience type expected .  > >  > > many thanks .  > >  > > yours sincerely ,  > > steve leppard  > >  > >  > >  > >  > ( see attached file : 4 thconfsessions . doc )  >  > lenos trigeorgis  > professor of finance  > university of cyprus  > dept of business  > 75 kallipoleos , po box 20537  > cy 1678 nicosia cyprus  >  > tel : + 357 2 892261  > fax : 339063  >  >  >  > attachment converted : \"\" c : \\ drive _ e \\ eudora \\ attach \\ pic 29415 . pcx \"\"  >  > attachment converted : \"\" c : \\ drive _ e \\ eudora \\ attach \\ 4 thconfsessionsl 7 . doc \"\"  >  lenos trigeorgis  professor of finance  university of cyprus  dept of business  75 kallipoleos , po box 20537  cy 1678 nicosia cyprus  tel : + 357 2 892261  fax : 339063\",0\n\"Subject: re : template for a proposal  mark & todd  vince and i have been working along those lines and have narrowed the search  to ( 1 ) scripps institution of oceanography , ( 2 ) lamont - daugherty earth  observatory , and ( 3 ) cola - center for ocean , land and atmosphere . we have  contacted the principles at each of these institutions , made on - site visits  to the facilities , and verbaly explored preliminary research program  proposals .  perhaps we could meet next week to coordinate this effort .  - - - mike\",0\n\"Subject: rollover of my vacation days to 2001  vince & shirley :  here are the details about my remaining 2000 vacation and their use :  vacation currently available now : 136  next week 3 days ( dec 27 - 29 ) 24  - - - - - - - - - - - - - - - - - - - - - - - - - - -  vacation remaining on 31 - dec : 112  officially rolled over to 2001 : 40  - - - - - - - - - - - - - - - - - - - - - - - - - - -  unused 2000 vacation : 72  thanks ,  krishna .  - - - - - - - - - - - - - - - - - - - - - - forwarded by pinnamaneni krishnarao / hou / ect on  12 / 18 / 2000 02 : 41 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  pinnamaneni krishnarao  12 / 11 / 2000 06 : 28 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : rollover of my vacation days to 2001  vince :  i would like to rollover my vacation days for 2000 remaining at the end of  this year to 2001 . i could not use us all of my available vacation this year  because of the following reasons :  1 . as you know , i have been supporting three business units ( ees , epg & enron  india ) this year . all these units had difficult and relatively long projects  that required experience in energy markets , derivatives pricing and business  knowledge that i had gained over the last few years at enron .  2 . there has been a significant change in the team members reporting to me . i  now have six people under me compared to only three at the begin of the year .  of the current six members , five joined us only this year and most of them  didn ' t have any prior work experience , thus requiring a lot of my time in  recruiting , training and mentoring .  3 . given that i had to visit our bombay office in january , 2000 for a  business trip ( 10 days ) and will need to go there again in january , 2001 , i  could not take leave from my work for the other two units ( ees & epg ) for an  extended period of time .  so , in summary , this year has been a long and challenging one , and as a  result , i could not take vacation for more than a few days . i request you to  grant the rollover of my remaining vacation to next year .  currently i have 136 hours of vacation available and , of these , i expect to  have 112 hours unused at the end of this year .  thank you ,  krishna .\",0\n\"Subject: finance club : e - trading and fixed income markets workshop  as faculty advisor to the finance club , prof . barb ostdeik is encouraging  all members to take advantage of a great opportunity to learn more about  trading operations from two very respected individuals in the industry .  keith anderson of blackrock , inc ( jgsm 1983 ) and dexter senft of lehman  brothers & tradeweb llc ( rice 1974 ) have visited the jones school to give  this lecture and students have raved about them . albert wang ' s fixed income  and advanced investments classes are required to attend , and james weston  recommends for his applied finance students and any first years taking  investments next year to be there .  when :  9 : 45 a . m . - 11 : 15 a . m .  wednesday  april 18  where :  room 117  herring hall  presentation / discussion topics :  trading tactics - phone trades vs . electronic trading  evolution of e - trading in fixed income markets  the future of the trading desk  buy - side vs . sell - side issues  speaker profiles :  keith anderson , managing director and chief investment officer , fixed income  of blackrock , inc . , is co - head of the fixed income operating committee ,  chairman of the investment strategy group and a member of blackrock ' s  management committee . mr . anderson is responsible for global fixed income  strategy , asset allocation and the overall management of client portfolios .  he coordinates a team of thirty - two portfolio managers and more than  twenty - five credit and quantitative analysts .  mr . anderson is a member of the treasury borrowing advisory committee , which  meets quarterly in washington , d . c . with the secretary and staff of the u . s .  treasury to advise them on the financing and management of the federal debt .  prior to founding blackrock in 1988 , mr . anderson was a vice president in  fixed income research at the first boston corporation , working in mortgage  securities and derivative products strategies . mr . anderson with criterion  investment management company where he had primary responsibility for a $ 2 . 8  billion fixed income portfolio .  mr . anderson has authored numerous articles on fixed income strategies ,  including two articles in the handbook of fixed income options : \"\" scenario  analysis and the use of options in total return portfolio management \"\" and  \"\" measuring , interpreting , and applying volatility within the fixed income  market \"\" .  dexter senft is a managing director with global responsibility for fixed  income electronic commerce for lehman brothers . during his eight years at  the firm , he has also managed or co - managed lehman ' s fixed income research ,  quantitative research , counterparty credit and global economics departments .  mr . senft is the former chairman of tradeweb llc , a consortium - owned  electronic bond trading system whose volume currently averages over $ 10  billion per day , and of which lehman brothers is a founding shareholder . he  remains on tradeweb ' s board , and chairs tradeweb ' s trading protocol  committee , which oversees the rules that govern the electronic flow of  information within the system .  mr . senft also serves on the bond market association ' s committee for  alternative trading systems , as well as its online bond steering committee  and he chairs the subcommittee on e - commerce protocols and standards .  prior to ejv , mr . senft spent 17 years at the first boston corporation ( now  part of cs first boston ) , where he was a managing director and head of fixed  income research and product development . he is a widely published author of  articles on mortgage securities , fixed income derivatives , and quantitative  portfolio management , and his work continues to be among the readings for  cfa applicants . in 1983 , mr . senft led the product team that created the  first cmo for freddie mac .  this is regarding the e - trading / bond market session  arranged for april 18 . as part of the lst year finance elective , you may  have already been informed by james weston ( were you ? ) but i need to get  the info out to more 2 nd years as well .  do you usually send out your speaker announcements to all faculty ,  students , and staff ?  albert wang ' s fixed income and advanced investments classes are required to  come and james weston will be encouraging lst years that took the finance  elective to come .  these guys are pretty good - they came a few years back .  thanks .  bbo\",0\n\"Subject: good morning  vince ,  two items . unless you have an objection , i plan to ship the paper on to  don chew at the journal this morning . we can still work on the article but  he needs something to begin the editing process .  second , in the same issue as our paper will appear the transcript of a  roundtable discussion involving sheridan titman , john mccormack ( stern  stewart ) , ron erd ( southern energy ) , jeff sandifer ( president of sandifer  capital - - $ 700 million undermanagement ) , and gene humphries . attached you  will find a section that will not be in the final document , but that i  thought you might like to read in light of our own discussions over the  course of writing this paper .  have a great day .  john  - interview _ outtakes . doc  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: interview schedule for aram sogomonian  please find the interview packet for the above - referenced person . the  interview will occur on wednesday october 25 , 2000 . please print both  documents for your reference . if you have any questions , or conflicts of  schedule , please do not hesitate to contact me . resume will be delivered via  runner .  stephanie  58701\",0\n\"Subject: the latest ( last ? )  . . as columbo would say . . \"\" . . just one more thing \"\"  p . 20 last bullet : enron focusing on recruiting and retaining talent  thanks again ! christie .  - - - - - forwarded by christie patrick / hou / ect on 02 / 07 / 2001 05 : 24 pm - - - - -  christie patrick  02 / 07 / 2001 05 : 23 pm  to : mark palmer / corp / enron @ enron  cc : vince j kaminski / hou / ect @ ect , j _ martin @ baylor . edu  subject : the latest ( last ? )  mark !  please review the attached article and forward your comments / authorization  for its use to john martin at baylor , copying me and vince .  john and vince ,  i have a few simple comments :  1 . please use \"\" enron corp . \"\" [ rather than \"\" enron corporation \"\" ]  2 . page 3 : as of yesterday , fortune magazine named enron \"\" most innovative \"\"  for the sixth year in a row  3 . page 5 : 2 nd paragraph : regarding the \"\" gas bank \"\" concept - - i believe when  jeff first introduced it , it fell flat . i think john pick ' s that up ( and  enron ' s subsequent recovery of a version of the concept on p . 6 ) , but it ' s  probably accurate to mention that at first , it didn ' t go over .  4 . page 13 : re : cindy olson ' s comment on a possible 5 x difference between  a \"\" satisfactory \"\" and \"\" superior \"\" vp - - the difference referred to is probably  the \"\" bonus \"\" rather than \"\" compensation \"\" ( which , to me , is generally means  base salary ) ; also , it varies for each review period , as comparative  performance might vary ; further , we might want to run that quote by cindy  just to make sure she ' s ok with it ' s publication ( she might have no problem  with it whatsoever , but i know for other articles , she ' s been more reluctant  to provide that kind of statistic ) .  5 . page 17 ( after annual report quote ) : i suggest changing \"\" enron ' s  wholesale business . . . provides \"\" to \"\" . . . businesses . . provide \"\" ; also , rather  than \"\" enron wholesale \"\" we might want to define this by the term enron uses :  \"\" enron wholesale services \"\"  6 . page 18 : 2 nd paragraph : the tense switching from past to present is  technically correct if read carefully , but seems awkward when reading it  7 . page 19 : effective february , jeff skilling is \"\" ceo \"\" .  . . . that ' s my 2 - cents worth ! ! i think the article is great . . . even  interesting ( ha ! ) . . . even to non - mba ' s like me ! !  thanks !  - - christie .  - - - - - forwarded by christie patrick / hou / ect on 02 / 07 / 2001 04 : 41 pm - - - - -  vince j kaminski  02 / 02 / 2001 08 : 45 am  to : mark s palmer / na / enron @ enron  cc : vince j kaminski / hou / ect @ ect , christie patrick / hou / ect @ ect  subject : the latest ( last ? )  mark ,  i am sending you the final ( ? ) draft of the paper by john martin  on enron ' s transformation . john martin is a prof from baylor who visited us  a few weeks ago .  can you take a look at the paper and bless it . i haven ' t read this last  version  of the paper yet and i will go through it on weekend .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 02 / 2001  08 : 44 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" john d . martin \"\" on 02 / 01 / 2001 04 : 15 : 36 pm  to : vkamins @ enron . com  cc :  subject : the latest ( last ? )  vince ,  attached is my latest attempt to wrap everything together . our timetable  is very short as we need an \"\" approved by enron \"\" version of the paper to don  by next wednesday . don has already made editorial changes for us and may  make some additional \"\" writing style \"\" changes but he doesn ' t change the  content .  i ' ll give you a call later today to alert you to the e - mail .  take care ,  john  p . s . i had a nice conversation with steve . sounds like he ' s landed a  pretty good contract with wiley .  - enron _ paper _ 2 _ 1 _ 01 . doc  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: re : enron offsite  let ' s do it ! august 18 - 20 is our first choice !  please send me all the information and then we will discuss the particulars .  i will get vince to sign it immediately .  thanks steve !  shirley  \"\" steve collins \"\" on 06 / 27 / 2000 02 : 22 : 27 pm  to :  cc :  subject : re : enron offsite  hello again !  i promise i am not running ! the deal that we worked out with the general  manager ( tom pratt ) is that enron has a $ 6000 credit with the great divide  lodge that will expire on 8 / 1 / 00 . you can either use that credit for  individual rooms prior to 8 / 1 / 00 , or we have agreed that we can apply that  amount to a meeting prior to the thanksgiving holiday in 2000 if the contract  is signed before 8 / 1 / 00 .  at this point , august 18 - 20 is available , but the 25 - 28 is not . if we can  get this signed prior to 7 / 31 / 00 , your $ 6000 credit would be able to be  applied to this event .  please let me know if this will work for you . thanks !  steve  steve collins  national sales manager  the village at breckenridge / great divide lodge  ( 800 ) 332 - 0424 or ( 970 ) 453 - 3156 direct  scollins @ vailresorts . com  > > > \"\" shirley crenshaw \"\" 06 / 27 / 00 01 : 06 pm > > >  hello steve :  please don ' t run ! i know after the last fiasco with an enron offsite you are  probably running for the hills !  i do want to apologize to you and thank you for all of your assistance even  though we were unable to make the trip .  however , i understand there has been an arrangement made with enron ,  that if we book a time and come before thanksgiving we can recoup the money  that we forfeited ? please let me know if i am understanding this correctly .  if so , we have been told that our group can use this for an offsite .  we are looking at the weekends of august 18 , 19 and 20 or august 25 ,  26 and 27 th . there will be approximately 12 people .  please let me know your understanding of the arrangement and the  availability of the dates mentioned .  look forward to hearing from you .  regards ,  shirley crenshaw  administrative coordinator  enron corp . research  telephone : 713 / 853 - 5290  email : shirley . crenshaw @ enron . com\",0\n\"Subject: enron credit modeling discussions  hi ,  this email is in reference to our plan for detailed discussions about enron credit ' s modeling strategy . several meetings have already been scheduled . please refer to the attached excel spreadsheet for further details .  also , if you like , we can have more informal discussions over lunch , dinner , drinks , etc .  thanks in advance for your time .  regards ,  iris\",0\n\"Subject: invitation - whartonetevent - apr 20 / plsrsvp  vice and christie hello ,  this is a followup to our previous invitation to attend  our next wharton / et event . ? you can rsvp by replying  to this email - or - if you cannot attent , you ' re always  welcome to designate someone else . ? there is no  limit on the number of attendees from your company .  _ _ _ yes i plan to attend  _ _ _ no , i cannot attend  _ _ _ someone else from our organization will attend ( name : _ _ _ _ )  best regards ,  michael tomczyk  managing strategic partnerships ?  friday april 20 , 2001 - - 8 : 30 am to 400 pm  location - room 1206 steinberg - dietrich hall - wharton school - philadelphia  we have designed this conference as an insight - building event ,  to present current industry experience from best practice firms ,  as well as our most recent research findings on best practices  and strategies for developing and managing alliances ,  mergers and high tech acquisitions . ? we will include research in progress  from our ongoing long term studies on alliances and acquisitions .  this is part of our research activity and there is no conference fee .  the emerging technologies management research program / mack center  is working to identify and develop best practices , competitive strategies and  management approaches for industry decision makers in industries that are  being  created or transformed by emerging technologies .  our industry partners include : bank of montreal , charles schwab ,  dupont , enron , general motors , glaxosmithkline , hewlett - packard ,  ibm , independence / blue cross , mckinsey , nsa , procter & gamble ,  sprint , 3 m and xerox .  the agenda is included below and more information can also be found on our  website : ? http : / / emertech . wharton . upenn . edu .  please call or email if you have any questions or comments about any aspect  of this event ? - 215 - 573 - 7722 .  agenda  managing strategic partnerships  an insight - building conference including new wharton research on  best practices and successful strategies for achieving corporate  growth through alliances , mergers and acquisitions .  friday , april 20 , 2001 - 8 : 30 to 4 : 30  1206 steinberg - dietrich hall , wharton school  presented for our industry partners and guests by the  emerging technologies management research program ,  mack center on managing technological innovation  faculty research presentations by : ?  harbir singh , paul schoemaker ,  lori rosenkopf , phanish puranam and prashant kale  industry best practice presentations by :  sun microsystems , cybersource , broadview and pfizer .  agenda & conference topics  8 : 00 - 8 : 30 ? - ? continental breakfast and informal networking  8 : 30 - 8 : 45  introduction : strategic partnering for growth and innovation  8 : 45 - 10 : 00  managing strategic networking  10 : 00 - 10 : 30 - break  10 : 30 - 11 : 30  building partnering skills and capabilities  11 : 30 - 12 : 00  success and failure factors in strategic partnering  12 : 00 - 1 : 30  working lunch - strategies  1 : 30 - 2 : 30  small group reports  2 : 30 - 2 : 45 - break  2 : 45 - 3 : 40  managing high technology acquisitions  3 : 40 - 4 : 00  summary of key insights and future research goals  4 : 00 - adjourn  directions : ? take a taxi to the corner of 37 th and walnut . ? at that  intersection , turn left and take the broad walkway onto campus . ? turn left at  the first intersection ( you will see a lifesize statue of ben franklin  sitting on a park bench ) . ? this is locust walk . ? the steinberg - dietrich hall  is the large brick building immediately behind \"\" ben \"\" - if you turn left and  proceed down the walk you will come to the large entrance with cantilevered  steps on the right side of the walk . ? the room iw room 1206 and there is an  information desk straight back from the entrance , to guide you to the room .  if you are staying at the inn at penn , which is directly across the street  from campus on walnut ( between 36 th and 37 th ) - take the walnut street exit  from the hotel ( where the restaurant is ) , turn right from the entrance and  walk to 37 th street , cross the street and continue onto campus following the  directions ( above paragraph ) .  wharton is 30 - 40 minutes from the airport , 10 - 15 minutes from the 30 th st .  train station and about 15 - 20 minutes from most hotels in center city .  - -  michael s . tomczyk  managing director  emerging technologies management research program  1400 sh - dh / 6371  the wharton school  philadelphia , pa 19104 - 6371  tel 215 - 573 - 7722  fax 215 - 573 - 2129  website : ? http : / / emertech . wharton . upenn . edu\",0\n\"Subject: a few times still available  we still have a few time slots available for appointments with bob brooks  while he is in houston next week . there are open slots on tuesday ( morning  and afternoon ) and wednesday morning . please reply to this e - mail with  preferred date and time or call bob at 323 - 663 - 4831 to schedule .\",0\n\"Subject: re : book order  julie ,  there are many employees in london who would be interested .  you can send an inquiry to steve leppard .  i had a presentation last night  to garp in houston and did a commercial for the book .  you should put me on commission .  vince  \"\" julie \"\" on 01 / 31 / 2001 06 : 31 : 39 am  please respond to \"\" julie \"\"  to :  cc :  subject : re : book order  vince ,  ?  i wasn ' t sure if i responded to your email , so apologise either for my  delayed response or repeating myself .  ?  thanks for the 2 nd order ! ? i believe they have already been dispatched . ?  yes , i believe we received payment ; thank you very much for following up  with paul . ? glad the book was a hit !  ?  on another subject , are there any enron ? employees in europe who may be  interested in attending either the energy or the weather course ? ? or , are  the quants and risk management mostly handled out of houston ?  ?  thanks again , and i ' ll forward an invoice on to shirley .  ?  julie  ?  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com  to : julie @ lacima . co . uk  cc : vince . j . kaminski @ enron . com  sent : friday , january 26 , 2001 11 : 29 pm  subject : book order  julie ,  we received the shipment of 50 books . thanks .  the book was an instant hit . we need 50 more books .  vince  p . s . i understand paul sent you the check for the remaining 50 %\",0\n\"Subject: research seminar  vince has asked that i forward the following :  we will begin a seminar devoted to the book on \"\" energy  derivatives \"\" , written by clewlow and strickland , every first and  third friday of each month , beginning january 19 th . stinson  gibner has volunteered to act as the seminar coordinator .  on january 19 th only , the seminar will be held in eb 30 cl .  every session thereafter will be in eb 49 cl . the seminar will be  conducted like a \"\" brown bag \"\" ( everyone bring their own lunch ) .  the seminar is mandatory for every member of the group who  started after january 1 , 2000 . however , all other members of  the group are invited to participate .  the books have been ordered and hopefully will arrive by the  day of the first meeting .  vince kaminski \",0\n\"Subject: re : real options article  steve ,  the journal of risk is a more technical and serious publication  than risk magazine .  if the article is published it will give you more exposure in  the academic circles . i think it will be a significant  accomplishment .  on the downside , it does not receive the same wide circulation as risk  among the practitioners .  i can also see the reason behind the recommendation given  by navroz : the article is fairly long for risk .  steven leppard  05 / 23 / 2000 05 : 39 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : real options article  vince  any thoughts on this proposal ?  steve  - - - - - - - - - - - - - - - - - - - - - - forwarded by steven leppard / lon / ect on 05 / 23 / 2000  11 : 41 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron capital & trade resources corp .  from : \"\" navroz patel \"\"  05 / 23 / 2000 11 : 37 am  please respond to \"\" navroz patel \"\"  to :  cc :  subject : real options  steven ,  after further consultation with the technical editor , we feel that your work  would find a more suitable environment for exposure in the journal of risk .  ?  if you email a copy of your work ( to the editor - in - chief , philippe jorion )  and outline what has happened to :  ?  ? pjorion @ uci . edu  ?  then i am sure that they will be keen to give due consideration .  ?  thank you for your interest and sorry for the delay in coming to this  decision .  ?  best wishes ,  ?  navroz patel ,  technical assistant , risk magazine .  ?\",0\n\"Subject: re : conference room  kevin  yes , it ' s a good idea .  vince  kevin g moore  02 / 18 / 2000 06 : 56 am  to : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , mike a  roberts / hou / ect @ ect  cc :  subject : conference room  goodmorning vince ,  we added a bookcase to the conference room on the 19 th floor  however , due to the departments growth i think we could use  another one .  vince , in the long run it would save us some time .  please let me know if this is okay !  thanks  kevin  moore\",0\n\"Subject: presentation - integrating market risk and credit risk  all ,  i will be giving a 40 min presentation on the above topic at the eprm energy  2000 conference in april . the bulletpoints are :  balancing market risk and credit risk to achieve a reliable estimation of  total risk  incorporating market risk into a credit risk model  calculating probability of default using credit risk and market risk  refining business practice to reflect credit risk and market risk evaluations  my proposed approach is to quickly step through the practical process of  modelling credit risk , resulting in measures for expected loss and  credit - var ; then show how default probs can be calculated using bond and  equity data . finally i ' ll describe how credit risk can be mitigated using  credit derivatives - plugging enroncredit . com of course .  any other ideas for broad topics and / or specific points to mention will be  appreciated . the presentation has to be submitted next week .  many thanks ,  ben\",0\n\"Subject: re : subscriptions  stephanie ,  please , discontinue credit and renew the two other publications :  energy & power risk management and the journal of computational finance .  enron north america corp .  from : stephanie e taylor 12 / 12 / 2000 01 : 43 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : subscriptions  dear vince ,  we will be happy to renew your subscription to risk . in addition , the  following publications are up for renewal :  reg . subscription cost with corp . discount  credit $ 1145 . 00 $ 973 . 25  energy & power risk management $ 375 . 00 $ 318 . 75  the journal of computational finance $ 291 . 75 $ 247 . 99  if you wish to renew these , we will also take care of this for you . i would  appreciate your responding by december 18 th . please include your company and  cost center numbers with your renewal .  thank you ,  stephanie e . taylor  esource  713 - 345 - 7928\",0\n\"Subject: re : baylor - enron case study  cindy ,  yes , i shall co - author this paper and i have planted the idea in john  martin ' s head .  vince  from : cindy derecskey @ enron on 10 / 25 / 2000 11 : 38 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : baylor - enron case study  vince ,  i forgot to inquire whether you would also like to be present during the  interview process with john martin and ken , jeff and andy ?  let me know . . . . thanks ,  cindy\",0\n\"Subject: 7 - 1 - 00 to 7 - 15 - 00 off duty and overtime report  oops ! forgot to attach !  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 07 / 14 / 2000  11 : 51 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  shirley crenshaw  07 / 14 / 2000 11 : 53 am  to : vasant shanbhogue / hou / ect @ ect , stinson gibner / hou / ect @ ect , grant  masson / hou / ect @ ect , amitava dhar / corp / enron @ enron , maureen  raymond / hou / ect @ ect , kevin kindall / corp / enron @ enron , kevin g  moore / hou / ect @ ect , osman sezgen / hou / ees @ ees , elena chilkina / corp / enron @ enron  cc : vince j kaminski / hou / ect @ ect  subject : 7 - 1 - 00 to 7 - 15 - 00 off duty and overtime report  attached is the off duty and overtime that was reported to me for the above  pay period . you are the only ones in our group that had these reported .  please review and if there is an error , please let me know by next monday  the 17 th and i can correct it . otherwise , we cannot correct it until the  next pay  period .  thanks !  shirley\",0\n\"Subject: operating & strategic plan 2001 - 2003  one more update . i think we finally have the file where we want it . please  use the file attached .  thanks again .  dawn  - - - - - - - - - - - - - - - - - - - - - - forwarded by dawn derr / corp / enron on 07 / 20 / 2000 11 : 15  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  dawn derr  07 / 17 / 2000 11 : 02 am  to : rob walls / na / enron @ enron , monica reasoner / hou / ect @ ect , greek  rice / corp / enron @ enron , larry dallman / gpgfin / enron @ enron , christine  schlaudraff / corp / enron @ enron , rodney faldyn / corp / enron @ enron , sally  beck / hou / ect @ ect , suzanne brown / hou / ect @ ect , mark koenig / corp / enron @ enron ,  elizabeth linnell / hou / ees @ ees , j mark metts / na / enron @ enron , charlene  jackson / corp / enron @ enron , gary mccumber / hou / ect @ ect , robert  johansen / corp / enron @ enron , paul clayton / hou / ect @ ect , vince j  kaminski / hou / ect @ ect , billie akhave / epsc / hou / ect @ ect , cynthia  barrow / hr / corp / enron @ enron , sharon aulds / hr / corp / enron @ enro  cc :  subject : operating & strategic plan 2001 - 2003  please use the budget format sheet attached below . there is an error in the  executive summary sheet of the original file . hope this does not cause  anyone undue problems .  thanks .  dawn  - - - - - - - - - - - - - - - - - - - - - - forwarded by dawn derr / corp / enron on 07 / 17 / 2000 12 : 01  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  dawn derr  07 / 14 / 2000 03 : 17 pm  to : rob walls / na / enron @ enron , monica reasoner / hou / ect @ ect , greek  rice / corp / enron @ enron , larry dallman / gpgfin / enron @ enron , christine  schlaudraff / corp / enron @ enron , rodney faldyn / corp / enron @ enron , sally  beck / hou / ect @ ect , suzanne brown / hou / ect @ ect , mark koenig / corp / enron @ enron ,  elizabeth linnell / hou / ees @ ees , j mark metts / na / enron @ enron , charlene  jackson / corp / enron @ enron , gary mccumber / hou / ect @ ect , robert  johansen / corp / enron @ enron , paul clayton / hou / ect @ ect , vince j  kaminski / hou / ect @ ect , billie akhave / epsc / hou / ect @ ect , cynthia  barrow / hr / corp / enron @ enron , sharon aulds / hr / corp / enron @ enron  cc : elaine schield / corp / enron @ enron , terry west / corp / enron @ enron  subject : operating & strategic plan 2001 - 2003  attached are the guidelines and the budget template for the 2001 - 2003  operating & strategic plan .  a budget template should be completed for each cost center in your  area / group that will be utilized for 2001 . all budgets are due to corp .  financial planning no later than close of business august 14 , 2000 .  while corporate financial planning has attempted to make the process as easy  as possible , we know questions will arise . please feel free to contact me at  x 37775 with any questions or problems .  thanks in advance .  dawn\",0\n\"Subject: budget  hi dale  following discussions with vince , grant and stinson , we ' ve drawn up the  proposed budget . we ' re working on the basis that research group headcount  will grow to 8 in the near future .  business trips us : 8  business trips europe : 10  computer software and licences : gbp 10 , 000  office postage : gbp 350  employee recruitment fees : gbp 30 , 000 ( = 3 x 20 % x gbp 50 , 000 )  professional subscriptions and memberships and books : gbp 15 , 000  training courses : gbp 16 , 000 ( = 8 x gbp 2 , 000 )  conferences : gbp 8 , 000 ( = 4 x gbp 2 , 000 )  mobile phones : gbp 1 , 500 ( = 3 x gbp 500 = me + 2 floaters )  hardware : gbp 10 , 000 ( = laptops , workstations )  suggested allocation as follows . . .  rac 20 %  uk power 20 %  uk gas 5 %  continental power 20 %  continental gas 5 %  global products 10 %  ebs 10 %  ees 10 %  . . . unless you ' ve got any other views on this one ( i ' m happy to take advice  here ) .  vince has said you can give him a call if you want to discuss any of these  points further , but i ' m happy to field initial queries ( i ' ll have to get used  to it ! ) .  cheers ,  steve\",0\n\"Subject: v @ r methodology for metal positions  vince -  it seems like we should be able use mg ' s v @ r methodology as version 1 . a if  the credit component is eliminated and the hold period is conformed to our  one day interval . could we do this and achieve an approximation of where you  want to be with the completion of anjam and tamara ' s work ? when submitting a  request for interim metals trading policy to rick buy and jeff skilling , i ' d  very much like to represent that , while our methodology may be imperfect , we  have ways + means of tracking v @ r right now that will be upgraded to enron  standards in very short order . thoughts ?\",0\n\"Subject: re : mountaintop meetings next week  ravi ,  it ' s fine with me . i think the expense is justified ( as it ' s equal to the  cost of the alternative ) .  vince  ravi thuraisingham @ enron communications on 03 / 09 / 2000 12 : 44 : 01 pm  to : stinson gibner / hou / ect @ ect , vince kaminski  cc :  subject : mountaintop meetings next week  fyi , i may have to stay over weekend . vince , if that is the case , i may have  to bring my wife or allow her to go to her sister for a week etc . i may ask  john to cover some of that cost as ( i think ) he is done with other people .  i ' ve seen other guys family members showup . this cost would equal what ebs  would have spend to send me home and bring me back again , etc .  ravi .  - - - - - forwarded by ravi thuraisingham / enron communications on 03 / 09 / 00 12 : 36  pm - - - - -  jeanette busse  03 / 09 / 00 10 : 16 am  to : dayne relihan / enron communications @ enron communications , dorn  hetzel / enron communications @ enron communications , jeanette busse / enron  communications @ enron communications , jim irvine / enron communications @ enron  communications , john bloomer / enron communications @ enron communications , john  griebling / enron communications @ enron communications , kelly williams / enron  communications @ enron communications , kenny burroughs / enron  communications @ enron communications , kevin kohnstamm / enron  communications @ enron communications , laura beneville / enron  communications @ enron communications , phil sisneros / enron communications @ enron  communications , ravi thuraisingham / enron communications @ enron communications ,  rob kolosvary / enron communications @ enron communications , scott smith / enron  communications @ enron communications , steve elliott / enron communications @ enron  communications , steve mcnear / enron communications @ enron communications , tom  huntington / enron communications @ enron communications , kenton erwin / enron  communications @ enron communications , rebecca lynch / enron communications @ enron  communications , stewart seeligson / enron communications @ enron communications  cc : sheryl lara / enron communications @ enron communications , judy timson / enron  communications @ enron communications , cheryl kondo / enron communications @ enron  communications  subject : mountaintop meetings next week  team ,  all meetings with hamachi during march 14 - 17 are located at the hamachi  campus .  negotiations  - - the negotiation meeting room is 21 - 10 . this is in building 2000 ( main  building with circular drive ) , the conference room is on the ground floor ,  right hand side .  - - all morning drinks , lunches and afternoon refreshments are scheduled ( 20  people )  - - the schedule is as follows :  tue 3 / 14 1 : 00 pm - until both parties agree to end .  wed 3 / 15 9 : 00 am - until both parties agree to end .  thu 3 / 16 9 : 00 am - until both parties agree to end .  fri 3 / 17 9 : 00 am - 3 : 00 pm  the negotiation team includes :  john griebling  steve elliott  stewart seeligson  tom huntington  kenton erwin  breakout meetings  the following rooms reserved for full days , tuesday through friday in  building 3000 .  34 a - 302  34 a - 702  34 a - 703  34 a - 705  - - coffee , lunch and afternoon drinks for 25 people , starting tuesday @ lpm  is also scheduled for delivery in 34 a - 302 as well .  the breakout team participants include :  laura beneville  jeanette busse  kenny burroughs  jim irvine  rebecca lynch  dayne relihan  scott smith  ravi thuraisingham  rob kolosvary  kelly williams  please let me know if you have any questions .  jeanette\",0\n\"Subject: hedge effectiveness test for fair value hedges  gentlemen :  we have had favorable responses regarding the use of our volatility  reduction method ( roger , i ' ve attached a copy of our article in case you  hadn ' t seen it ) . however , there continued to be a quibble about how to  create the set of data points that would be inputs into the testing process .  last week the consulting arm of a \"\" big five \"\" accounting firm indicated that  the following method proposed by us would be acceptable . we believe this  method overcomes the statistical problems that arise from using interest  rate differences from overlapping ( \"\" rolling \"\" ) quarters .  method :  1 ) calculate daily yield curve changes expressed as ratios , using historical  rates from the most recent , say , two years . ( note : no overlap ) . this  results in a set of around 494 vectors of ratios ( approximately 247 trading  days per  year ) .  example :  if the first three yield curves in the historical set look like this :  19980801 6 . 5 6 . 6 6 . 7 . . . . . . . . . 7 . 2  19980802 6 . 3 6 . 3 6 . 6 . . . . . . . . . 6 . 9  19980803 6 . 6 6 . 8 6 . 9 . . . . . . . . . 7 . 1  then the change from 8 / 1 / 98 to 8 / 2 / 98 is :  6 . 3 / 6 . 5 6 . 3 / 6 . 6 6 . 6 / 6 . 7 . . . . . . . . . . 6 . 9 / 7 . 1  and the change from 8 / 2 / 98 to 8 / 3 / 98 is :  6 . 6 / 6 . 3 6 . 8 / 6 . 3 6 . 9 / 6 . 6 . . . . . . . . . 7 . 1 / 6 . 9  2 ) randomly select 62 of these \"\" ratio \"\" vectors ( approx . 62 trading days in a  quarter ) .  3 ) multiply these ratio vectors together to get a single vector ( ie , the 62  6 mo ratios are multiplied together , the 62 lyr ratios are multiplied  togeter , etc . ) . the result represents a single quarterly yield curve  transformation . apply it to \"\" today ' s \"\" yield curve . the resulting yield  curve represents one simulated quarterly change in interest rates  4 ) repeat steps 2 and 3 until an adequate number of yield curves are  generated , say 100 .  5 ) proceed with testing process .  i would be interested in your comments .  leslie abreo  andrew kalotay associates , inc .  61 broadway , ste 3025  new york ny 10006  phone : ( 212 ) 482 0900  fax : ( 212 ) 482 0529  email : leslie . abreo @ kalotay . com  visit aka ' s website at http : / / www . kalotay . com  - fasl 33 article . pdf\",0\n\"Subject: your job application to enron research group  dear mr . palmer :  thank you for your interest in the research group at enron . we recieved your  resume and discussed your qualifications within the research group .  unfortunately , there is not a good match between our job requirements and  your skills .  once again , thank you for your interest in our company and best wishes for  your future .  regards ,  p . v . krishnarao .\",0\n\"Subject: 1 / 2 day seminar : the new texas electric market  fyi ,  i thought some of you might be interested in this half day seminar at ut .  bill hogan , as well as speakers from the iso and puc are scheduled to speak .  i plan to attend . if we have more than 3 , we can register as a group for  $ 145 / person - if more than 10 attend , the price is $ 100 / person . ross  baldick , one of martin lin ' s and my advisor is the moderator . it may prove  both interesting and contentious will hogan being there .  lance  - - - - - - - - - - - - - - - - - - - - - - forwarded by lance cunningham / na / enron on 04 / 16 / 2001  09 : 51 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" lance b . cunningham \"\" on 04 / 15 / 2001 05 : 06 : 06 pm  to : lance . cunningham @ enron . com  cc :  subject : fwd : the new texas electric market  > delivered - to : lbcunningham @ mail . utexas . edu  > date : tuesday , 10 apr 2001 23 : 30 : 14 cst  > to : lbcunningham @ mail . utexas . edu  > from : engineering foundation  > subject : the new texas electric market  >  > dear mr . cunningham ,  >  >  > \"\" the new texas electric market and how it  > compares to the california market \"\"  >  > may 2 , 2001 - 1 : 00 to 5 : 00 p . m .  >  > seminar presented by the college of engineering ,  > the university of texas at austin .  >  > electric reliability council of texas ( ercot )  > plans to open a pilot retail market in most areas  > of the texas region on june 1 , 2001 . this  > presentation will address aspects of the ercot  > market and how texas will avoid experiencing the  > same problems as california . ut austin ' s center  > for lifelong engineering is introducing a 1 / 2 day  > seminar to provide an overview of how this market  > will be structured .  >  > presenters will include officials from harvard ,  > university of california energy institute , ercot ,  > and the public utility commission of texas .  >  > for more information or to register , please visit  > our website at www . lifelong . engr . utexas . edu , or  > contact sharon campos at 512 - 471 - 3506 , or  > scampos @ mail . utexas . edu .  >  > ( this announcement was sent as a courtesy  > from ut - austin college of engineering to  > ut engineering alumni . it was e - mailed  > from the college ' s general e - mail address ,  > which is flagged as ' engineering  > foundation . ' if you wish to discontinue  > further email messages from the college of  > engineering , please reply to this message  > with your full name , degree information  > and \"\" unsubscribe . \"\" thank you ! )\",0\n\"Subject: transport fuel p / l  - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 08 / 30 / 2000 11 : 06 am  - - - - - - - - - - - - - - - - - - - - - - - - - - -  zimin lu  08 / 30 / 2000 11 : 07 am  to : colleen sullivan / hou / ect @ ect  cc : andrew h lewis / hou / ect @ ect , greg couch / hou / ect @ ect  subject : transport fuel p / l  colleen ,  after looking into the transport deals for nbpl ( long term deal 1 , 2 , 25 , 26 ) ,  i think i figured it out why  we see positive fuel p / l for deal 1 , 25 , and 26 and negative fuel p / l for deal  2 .  the following plot shows nymex curve as of 8 / 23 / 00 :  for short term , nymex moved up compared to that of 8 / 22 / 00 , while the long  term nymex moved down .  here are the tenor for each deal :  deal 1 : start 01 - sep - 00 , end 22 - may - 09 , the above graph suggested a  positve fuel p / l  deal 2 : start 01 - sep - 00 , end 28 - feb - 02 , the above graph suggested a  small negative p / l  deal 25 : start 01 - may - 02 , end 28 - feb - 09 , the above graph suggested a  positve fuel p / l  deal 26 : start 01 - mar - 09 , end 31 - may - 09 , the above graph suggested a  positve fuel p / l  the transport book seems to be correct on these fuel p / ls .  another point worth to mention is that the fuel cost is related to index  price ( nymex + basis + index premium ) , to correctly interpret fuel p / l ,  we need to look at the index curve change .  let me know your thoughts on this .  zimin\",0\n\"Subject: options library links  elena ,  the new research web page looks very nice .  recently i have a few users who called me about the links to exotica options  library .  i checked , both links to exotica . doc and example spreadsheets do not work .  i appreciate that if you could re - establish the links as soon as possible .  thanks .  zimin\",0\n\"Subject: worth a careful reading  best regards ,  jhherbert  - gdol 0314 abr . pdf\",0\n\"Subject: re : stinson vacation in feb .  stinson ,  n o problem .  vince  stinson gibner  01 / 07 / 2000 10 : 51 am  to : vince j kaminski / hou / ect @ ect  cc : shirley crenshaw / hou / ect @ ect , melissa jones / enron communications @ enron  communications , zimin lu / hou / ect @ ect , jean mrha / enron communications @ enron  communications  subject : stinson vacation in feb .  vince :  i would like to take four days of vacation time in february , from feb . 22  through 25 th .  thanks ,  - - stinson\",0\n\"Subject: re : corporate card  yes tony ,  mike authorized you for a corp . card , however that ' s  something your asst . can do in london for you .  if you need further asst . please inform . . . . . . .  kevin moore  tony hamilton @ enron  04 / 30 / 2001 07 : 28 am  to : mike . a . roberts @ enron . com , tani . nath @ enron . com , kevin . g . moore @ enron . com  cc :  subject : corporate card  is it possible for me to get a corporate card , and if so , who do i need to contact regarding this ?  thanks  tony\",0\n\"Subject: dba administrator  cecil ,  i ' ve spoken with charlene just now and she sounds very helpful .  can you give her a call tomorrow morning to iron out exactly how  you want to access the enpower data base ? i ' ve left your name  with her so she ' s expecting your call .  best ,  alex  - - - - - - - - - - - - - - - - - - - - - - forwarded by alex huang / corp / enron on 05 / 01 / 2001 05 : 31  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski @ ect  05 / 01 / 2001 05 : 13 pm  to : michelle d cisneros / hou / ect @ ect  cc : alex huang / corp / enron @ enron , vince j kaminski / hou / ect @ ect  subject : dba administrator  michelle ,  the name of the db administrator for enpower is charlene fricker ,  5 - 3487 . alex will contact her regarding the access to the curve .  i think it ' s a problem many layers below gary hickerson ' s level  of responsibility and i hope we can handle it without using his valuable  time .  vince\",0\n\"Subject: energy & power risk management 2001 , houston  dear vince ,  it is my great pleasure to confirm your participation at energy & power risk  management 2001 on may 14 th . please take a moment to look at the current  line - up on the attached draft program . i have held a position on the panel  discussion if you wish to take part . the current talk titles are based upon  our telephone conversations and i am happy to discuss any potential changes .  i would like to confirm the following details by thursday , january 18 th :  final talk title  bullet points ( 5 - 6 )  full name , job title , company title  postal address  i am sure that you will agree that this year , energy & power risk management  \u0001 , s annual event provides a wide range of highly topical sessions . i look  forward to receiving your full presentation details and meeting you in may .  yours sincerely ,  paul bristow  conferences manager , us  risk waters group  270 lafayette street  suite 7  new york 10012  212 925 6990 ext 225  pbristow @ riskwaters . com  - revspktemp 2 . doc\",0\n\"Subject: fwd : fw : will you be the difference ?  fyi  jana  return - path :  received : from rly - yhol . mx . aol . com ( rly - yhol . mail . aol . com [ 172 . 18 . 147 . 33 ] )  by air - yhol . mail . aol . com ( v 76 _ rl . 8 ) with esmtp ; wed , 18 oct 2000 18 : 57 : 48  - 0400  received : from texasmonthly . emmis . com ( texasmonthly . emmis . com  [ 208 . 139 . 95 . 3 ] ) by rly - yhol . mx . aol . com ( v 76 _ rl . 19 ) with esmtp ; wed , 18 oct  2000 18 : 56 : 49 - 0400  subject : fw : will you be the difference ?  to : alexana @ wellsfargo . com , jlpnymex @ aol . com , kingair 500 @ aol . com ,  mdesanto @ minddata . com , kwgre @ aol . com , pmarb @ yahoo . com  x - mailer : lotus notes release 5 . 0 . 3 march 21 , 2000  message - id :  from : nalexander @ texasmonthly . emmis . com  date : wed , 18 oct 2000 18 : 15 : 34 - 0500  x - mimetrack : serialize by router on tmnto 2 / aus / txmo ( release 5 . 0 . 4 a | july 24 ,  2000 ) at 10 / 18 / 2000 05 : 54 : 02 pm  mime - version : 1 . 0  content - type : text / plain ; charset = us - ascii  texas monthly : if you want to be big in texas .  nancy alexander  account executive  214 . 871 . 7704  - - - - - forwarded by nancy alexander / aus / txmo on 10 / 18 / 00 06 : 14 pm - - - - -  karen burke  to : sloansimmo @ yahoo . com ,  ccgarcia @ prodigy . net , cbsbcol @ aol . com ,  10 / 18 / 00 sschrump @ ziplink . net , \"\" hosty , maria \"\"  ,  02 : 10 pm yvonne anguiano  ,  tanya . davis @ us . pwcglobal . com ,  2 onza @ pdq . net , \"\" lisa elledge \"\"  ,  proyecto 4 @ yahoo . com , \"\" hughes , jennifer \"\"  , anita  zmolek / aus / txmo @ txmo , nancy  alexander / aus / txmo @ txmo  cc :  subject : fw : will you be the  difference ?  texas monthly : if you want to be big in texas .  karen burke  713 . 871 . 1643 phone  713 . 871 . 0335 fax  - - - - - forwarded by karen burke / aus / txmo on 10 / 18 / 2000 02 : 08 pm - - - - -  jacquelyne  o ' keefe to : bassw @ swbell . net , karen  burke / aus / txmo @ txmo , elizabeth  wallace fulghum / aus / txmo @ txmo , lanette  varnadoe / aus / txmo @ txmo ,  simmonds @ pdq . net  10 / 18 / 2000 cc :  11 : 15 am subject : fw : will you be the  difference ?  texas monthly : if you want to be big in texas .  jackie o ' keefe wallace  retail advertising director  phone 713 . 871 . 1762  fax 713 . 871 . 0335  - - - - - forwarded by jacquelyne o ' keefe wallace / aus / txmo on 10 / 18 / 00 11 : 14 am  - - - - -  \"\" karen  thompson \"\" to : \"\" tim marron \"\"  , \"\" suzanne waller \"\"  , \"\" shelley smelley  marron \"\" ,  . net > \"\" pammy poindexter \"\"  , \"\" molly vaughan \"\"  , \"\" melissa  garlington \"\"  10 / 17 / 00  , \"\" mary marron \"\"  09 : 07 pm ,  \"\" margie \\ \"\" aunt boggie \\ \"\" marron \"\"  , \"\" liz rotan \"\"  , \"\" julia \"\"  , \"\" joanie seay \"\"  , \"\" jenny clark  brown \"\" ,  \"\" jackie wallace \"\"  ,  \"\" gmommy clark \"\"  , \"\" george kkempl 65 @ aol . com  ; jflesher @ kprc . com ;  akdwyer @ yahoo . com  ; cara _ clement @ yahoo . com ;  merrie @ mail . evl . net ; krichardson @ texasnf . org  ; kprice @ texasnf . org ;  ddeleon @ texasnf . org ; rfreeman @ texasnf . org  ; dbadura @ texasnf . org ; karen  thompson ; cmlucas @ swbell . net ;  annie 319 @ aol . com ; bmratch @ yahoo . com ;  sarah @ thedykes . com ; laura @ thebairds . com  ; mtucker @ datamate . com ;  colecaroline @ hotmail . com ;  mark . m . meador @ us . arthurandersen . com ;  robert muse ; dmoriniere @ swbank . tx . com  ; joanna latham ; merritt  pappas ; chip rives ; reagan rives  ; angela hilary and corey pond  ;  jeffrey smith ; kent winfield  date : tuesday , october 17 , 2000 3 : 37 pm  subject : fw : will you be the difference ?  >  >  > - - - - - original message - - - - -  > from : jennifer . p . toomey @ us . arthurandersen . com  > sent : tuesday , october 17 , 2000 3 : 53 pm  > to : aford @ bpl . com ; birdsbecca @ aol . com ; bwilliamsl 236 @ austin . rr . com ;  > ckmattingly @ hotmail . com ; cshirley @ ccj - law . com ; cwilliams @ texasnf . org ;  > ewells @ nrsc . org ; jill . goldstein @ mbao 2 . bus . utexas . edu ; halejulie @ yahoo . com ;  > hollyk 8 @ aol . com ; lsm 34 @ columbia . edu ; mtucker @ dpj . com ; sew 7 @ flash . net ;  > elizabeth . reid @ turner . com ; rskappraiser @ email . msn . com ; tehunt @ aol . com ;  > wdtiidd @ aol . com  > subject : fw : will you be the difference ?  >  >  >  >  >  > - - - - - - - - - - - - - - - - - - - - - - forwarded by jennifer p . toomey on 10 / 17 / 2000 03 : 55  > pm  > - - - - - - - - - - - - - - - - - - - - - - - - - - -  >  >  > to : brian _ seiler @ aimfunds . com , fritz _ weiss @ aimfunds . com ,  > jean _ miller @ aimfunds . com , charles _ hebert @ aimfunds . com ,  > sue _ hendrickson @ aimfunds . com , ralph _ terry @ aimfunds . com ,  > gormanab @ mindspring . com , alysonfisher @ yahoo . com , amandam @ microsoft . com ,  > adjohnso @ students . uiuc . edu , knocks @ ecsis . net , cbidding @ post . cis . smu . edu ,  > mpblalock @ aol . com , gmbl @ compassbnk . com , bcahal @ acxiom . com , carle @ wt . net ,  > cmiller @ rice . edu , connelly . mcgreevy @ gs . com , gnconnelly @ aol . com ,  > dawn . beach @ bowne . com , aimeedodson @ aol . com , ddominic @ temmc . com ,  > heather . k . doyle @ ac . com , aeasterby @ lrmm . com , ferikson @ mdanderson . org ,  > rtfass @ fcflaw . com , fguinn @ flash . net , tina . hoffman @ petrocosm . com ,  > rhurt @ lctn . com , wingram @ ddsep . com , jrcoastal @ aol . com , jennyv @ dpwpr . com ,  > jbandctaylor @ mindspring . com , keasterby @ aglife . com , jkiani @ coair . com ,  > kianim @ epenergy . com , kristen . kors @ weil . com , brittonk @ perryhomes . net ,  > katek @ . com , clipscomb @ kma . com ,  > kaymassmanlobb @ yahoo . com , mm 52 @ lucent . com , cjmandola @ aol . com ,  > mikebid @ earthlink . net , nataliebiddinger @ yahoo . com , steven . w . murray @ ac . com ,  > jpecher @ ect . enron . com , receskim @ perryhomes . net , jennifer p . toomey ,  > cvanos @ texas . net , jennyv @ dpwpr . com , kwehner @ brobeck . com ,  > elizabeth @ keen . com , david . d . wolf @ chase . com  > cc :  > date : 10 / 16 / 2000 09 : 00 am  > from : jackie _ mcgreevy @ aimfunds . com  > subject : fw : will you be the difference ?  >  >  >  >  >  > > the year is 1960 .  > >  > > jfk wins the election because he receives  > >  > > 1 more vote per precinct in illinois ( 8 , 858 votes )  > > 3 more votes per precinct in missouri ( 9 , 880 votes )  > > 3 more votes per precinct in new jersey ( 22 , 091 votes )  > >  > > without those 40 , 829 votes , the election goes to nixon .  > >  > > your vote does matter .  > >  > > experts say this will be the closest election since 1960 .  > > we agree .  > >  > > what can you do about it ? join the bush e - train !  > > ( 1 ) forward this e - mail to your friends and colleagues  > > ( 2 ) then click on the link below and enter your e - mail :  > > http : / / www . georgewbush . com / bn . asp ? pagemode = frontpagesignup  > >  > > our goal :  > > 2 , 000 , 000 e - mail addresses to spread the word  > > and get out the vote .  > >  > > be a part of history , get on the bush e - train and join  > > what will become one of the largest grassroots  > > movements ever .  > >  > > make the difference ! and receive the e - mail on  > > nov . 8 that says , \"\" president - elect george w . bush  > > thanks you . \"\"  > >  > >  > > _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  > >  > > paid for by bush - cheney 2000 , inc .  > > http : / / www . georgewbush . com  > >  > >  >  =  > = =  > >  > > to unsubscribe , please go here :  > > http : / / www . georgewbush . com / unsubscribe . asp ? email = yolaa @ earthlink . net  > >  > > to change your e - mail address or any other subscription information ,  > please go here :  > > http : / / www . georgewbush . com / mygeorgew . asp  > >  > >  > >  >  >  >  >  >  >  >  >  > * * * * * * * * * * * * * * * * * * * internet email confidentiality  footer * * * * * * * * * * * * * * * * * * *  >  > privileged / confidential information may be contained in this message . if  > you  > are not the addressee indicated in this message ( or responsible for  delivery  > of  > the message to such person ) , you may not copy or deliver this message to  > anyone .  > in such case , you should destroy this message and kindly notify the sender  > by  > reply email . please advise immediately if you or your employer do not  > consent to  > internet email for messages of this kind . opinions , conclusions and other  > information in this message that do not relate to the official business of  > my  > firm shall be understood as neither given nor endorsed by it .  >  >  >\",0\n\"Subject: re : jcc  that this email constitutes your groups ( vince kaminski ' s ) sign - off on using  this hedge ratio to hedge jcc and jcc - based products ?  thanks in advance ,  marc de la roche  kevin kindall @ enron  06 / 06 / 2000 02 : 18 pm  to : marc de la roche / hou / ect @ ect  cc : grant masson / hou / ect @ ect  subject : re : jcc & brent  good afternoon . i have performed a review of the jcc data that you sent  some time ago . the study was done using several different excel workbooks ,  and are available upon request . relevant charts are embedded in the  powerpoint attachment . questions / comments welcome .  - kevin kindall\",0\n\"Subject: re : trip to houston  another student invited by tom gros to come next wednesday .  - - stinson  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 02 / 10 / 2000  05 : 25 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  paulo rocha e oliveira on 02 / 10 / 2000 12 : 04 : 56 pm  to : \"\" stinson gibner \"\"  cc :  subject : re : trip to houston  stinson ,  thank you for your e - mail . my phone number is ( 617 ) 492 - 9551 . i don ' t  have a currect resume , but if i did it would say that i graduated from  princeton university in 1996 ( mathematics ) , and came straight to mit for a  phd in operations management at the sloan schoolof management . in my first  three years i took all the required coursework in mathematics ,  optimization , stochastic processes , etc . , as well as a number of courses in  psychology ( at mit and harvard ) . i am working with prof . gabriel bitran ,  and i am interested in the mathematical modeling of service operations . in  particular , i am interested in the interaction between customers and  companies ( hence the interest in psychology ) . the ( tentative ) title of my  phd thesis is \"\" pricing substitute products on the internet \"\" , and i am  sending you the summary which i sent to tom gros a few weeks ago that will  give you an idea of what this research is about .  thanks again , and i ' m looking forward to meeting you and your research  group next week .  paulo  pricing substitute products on the internet  objective :  to develop new tools to decide pricing policies for goods and services sold  on  the internet .  motivation :  this reseach is motivated by the fact that traditional choice and optimization  models are not appropriate for internet - related businesses . the technological  innovations associated with the internet brought about an overload of  information  which inevitably affects the ways in which consumers make choices .  furthermore ,  companies have a great deal of influence on how much information consumers can  have access to .  the problem of pricing substitute products is an important strategic issue  faced  by internet companies . consumers usually search for generic products ( e . g ,  vcrs  or computers ) without knowing exactly what they will buy . companies can show  different products and different prices to each consumer . this type of  flexibility  was not available until the internet came about .  the problem of pricing substitute products is not unique to the internet . the  methodology developed by this research should be transferrable to a number of  other settings , such as pricing services . services are unique , and there are  many cases where customers will only buy one of many services offered by a  given company . our model will help companies decide which services to offer  to which customers and how much to charge for these services .  research strategy :  our research strategy is to divide the pricing problem into two components  which can be combined to generate optimal pricing strategies . these  components are choice models and optimization models .  choice models :  choice models describe how customers make choices . the management literature  draws on two main sources for these models : psychology and economics . the  common approach in psychology models is to use what are called heuristic  elimination methods . these methods consist of the elimination of options  based on the sequential eliminations of features until only one choice  remains .  these methods tend to be very context - specific and do not lend themselves very  easily to mathematical analysis . economists focus on utility - maximing models  that are significantly more mathematically tractable than psychological  models .  the most common economic model of choice is the logit model . the problem with  these types of models is that they are not very accurate reflections of how  consumer make choices on the internet . the first step in our research will  be  to develop choice models that capture the interactions going on between  customers  and companies on the internet .  optimization :  traditionally , the optimization problem consists of maximizing revenue over a  certain planning horizon . on the internet , the problem of maximizing revenue  still exists , but there is also a need to learn about customers . short term  profit is based on sales , but long term profit is based on how well you know  your customers and are able to retain them . the optimization problem must  therefore include a short term component ( sales ) and a long term component  ( learning ) .\",0\n\"Subject: re : vince kaminski ' s oct . 11 presentation - - \"\" enron day at the  energy finance program \"\"  cindy ,  october 11 would work for me . this is the date of my visit to austin to make  a presentation ehud ' s mba class .  if you need me to go to austin an a different day , please , let me know . i  shall be glad to help you , my schedule  permitting .  vince  cindy justice  07 / 05 / 2000 03 : 51 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : vince kaminski ' s oct . 11 presentation - - \"\" enron day at the energy  finance program \"\"  vince -  christy young is the ut mba recruiter . she is taking a couple of weeks off to  get married and will return on july 19 th as christy meador . in her absence ,  i wanted to make sure we coordianted our efforts with you .  below are a few key ut recruiting dates . ideally , we would like for your  presentation to occur a week or so before our interview list is due to the  career services office . this will allow for additional candidates to submit  their resumes for our review before we turn in the interview list .  wed . , sept . 13 - corporate presentation & reception - alumni center  fri . , sept . 22 - eye ' s of texas career fair - campus  thurs . , sept . 28 - enron interview list due to career services office  wed . , oct . 11 - pre - interview reception - selected candidates only  thurs . , oct . 12 - first round interviews  fri . , oct . 13 - second round interviews  sat . , oct . 28 - super saturday for ut candidates  please let me know what works best with your schedule . note that october 11  is the same date as our pre - interview reception .  we look forward to working with you on this .  thanks ,  cindy justice  x 57339  - - - - - - - - - - - - - - - - - - - - - - forwarded by cindy justice / hou / ect on 07 / 05 / 2000 03 : 35  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  celeste roberts  07 / 05 / 2000 11 : 57 am  to : cindy justice / hou / ect @ ect , shelly jones / hou / ect @ ect  cc :  subject : vince kaminski ' s oct . 11 presentation - - \"\" enron day at the energy  finance program \"\"  can you guys followup with him to coordinate an enron reception following a  presentation that vince kaminiski will give during their annual ut  foundations of energy finance class . we do want to do this , and of course  need to coordinate with vince and your dates on campus to ensure that we have  no conflicts .  i am not sure if this falls into the associate or analyst camp . you can best  determine who the appropriate contact should be . leave me an e - mail to  confirm .  celeste  - - - - - - - - - - - - - - - - - - - - - - forwarded by celeste roberts / hou / ect on 07 / 05 / 2000  11 : 47 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" ehud i . ronn \"\" on 07 / 05 / 2000 10 : 35 : 57 am  to : celeste roberts / hou / ect @ ect , celeste roberts / hou / ect @ ect  cc :  subject : vince kaminski ' s oct . 11 presentation - - \"\" enron day at the energy  finance program \"\"  celeste ,  greetings .  as you may recall , i am the director of the univ . of texas center for  energy finance ( cefer ) . i would like at this time to initiate planning for  your colleague vince kaminski ' s annual presentation to the ut foundations  of energy finance class which i will be presenting as usual the first half  of the fall semester .  thus , to begin , i wonder whether either the above is your current e - mail  account , and , with the departure of meryl barnett ( with whom i believe we  coordinated this in the past ) , whether this is an issue within your scope .  with respect to this reception , i appreciate that there may be other enron  receptions scheduled for this fall . however , if you so choose , i would  like to afford you the opportunity of scheduling an enron reception  following vince ' s presentation . if you would indeed like to do so , i  suggest we coordinate with vince the date for the presentation / reception .  sincerely ,  ehud  ehud i . ronn  professor of finance  director , center for energy finance education and research  mccombs school of business  university of texas at austin  austin , tx . 78712 - 1179  voice : ( 512 ) 471 - 5853  fax : ( 512 ) 471 - 5073  internet : eronn @ mail . utexas . edu \",0\n\"Subject: new computers  hi lyn :  hope things are going better for you !  the research group is getting one new employee beginning february  21 , 2000 , that needs a computer . we also have an employee that needs  a new computer because the one she has does not have enough memory .  we need at least 64 meg memory with a large screen ( 17 \"\" ) .  names and locations :  yana kristal ebl 947 ( replace computer she now has )  shalesh ganjoo ebl 951 ( new analyst rotating - 2 / 21 / 00 )  co . # : 0011  rc # : 100038  approver : vince kaminski , managing director , research  if you need anything else , please let me know .  thanks and have a great day !  shirley  3 - 5290\",0\n\"Subject: re : eprm article  julie / vince  ?  i worked on both the last couple of nights and made quite a few small  \"\" improvements \"\" .  ?  vince - if the 2 nd article ( eprm _ 02 _ mr . doc ) is ok with you then that is  ready .  ?  the 3 rd article needs fig 1 updating still will hopefully do that this w / e .  ?  les .  ?  - eprm _ 02 _ 03 . zip\",0\n\"Subject: uk inflation and storage model  hi zimin ,  inflation :  i am also spending a lot of time looking at short - term auto - regressive models  for ppi and long - term , more fundamentally - based models . this work is  important because we have potentially a large positive p & l that may be  unlocked by moving to our new indicative uk ppi curves . john sherriff and  trena are keen that any models i produce are vetted / approved in houston , so i  will forward to stinson or yourself initially for review once ready and  documented .  storage :  thanks for the current storage model . due to the complexity of the  modelling issues involved , i would strongly support a visit by you to help me  meet the needs of the london customers in this matter , and am happy to act as  the anchor for information flow in the mean time .  regards ,  anjam  x 35383  zimin lu  21 / 03 / 2000 19 : 31  to : anjam ahmad / lon / ect @ ect  cc : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect  subject : us inflation and storage model  anjam ,  thanks a lot . after getting that book i will redo the us inflation model .  our exposure  to cpi inflation risk is huge ( think about how many contracts signed by ees ) ,  so the  us model is very important .  the storage model is going through aduit by prof . d . duffie . we are adding  features  to it . i can send you the current version . maybe it is worthwhile for me to  go to london  to discuss with the users about the valuation .  zimin  anjam ahmad  03 / 21 / 2000 11 : 31 am  to : zimin lu / hou / ect @ ect  cc :  subject : book  hi zimin ,  you ' re book has arrived and i posted it today . also , wanted to ask what you  could give me and natasha regarding the new storage model ?  thanks ,  anjam  x 35383\",0\n\"Subject: re : credit . com cv ' s  could we talk on monday pls . obtain the feedback of your team .  thanks for the assistance  vince j kaminski  08 / 05 / 2000 22 : 46  to : rosalinda resendez / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , bryan  seyfried / lon / ect @ ect  subject : re : credit . com cv ' s  rosie ,  we are making arrangements to bring them to houston for an  interview .  vince  rosalinda resendez  05 / 08 / 2000 11 : 10 am  to : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect  cc :  subject : credit . com cv ' s  vince ,  i ' ve been asked to forward these resumes to you .  rosie  - - - - - - - - - - - - - - - - - - - - - - forwarded by rosalinda resendez / hou / ect on 05 / 08 / 2000  11 : 06 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  louise  bratby  05 / 08 / 2000 10 : 11 am  to : rosalinda resendez / hou / ect @ ect  cc :  subject : credit . com cv ' s  rosalinda  i work with melanie doyle in london hr . i have two candidates who i ' m trying  to arrange ( for bryan seyfried ) to come in and see vince kaminski however i ' m  finding it difficult to co - ordinate from this end . would it be possible for  you to forward these cv ' s on to vince ' s assistant as i ' m not sure who the  correct person is .  thanks for your help and if you need more details my number is 44 20 7783  6945 .  regards  louise\",0\n\"Subject: hiring at a vp level  jeff ,  i want to bring aram sogomonian back to enron at a vp level .  according to new human resources procedures this decision requires  a support of three senior executives .  i want to ask you to express your opinion on aram ( based on a phone interview  or just on your past interactions with him ) . you can send a reply to norma  villarreal at h / r .  thanks .  vince\",0\n\"Subject: re : recruiting  vince ,  thank you so much for forwarding this information to me as well as making  some initial contacts on campus ! i was wondering if you could provide a two  hour time slot in the next two weeks for the cal berkeley planning session  with the entire campus team here in the office ? i would like to get the  entire team together prior to the career fair on the 8 th so that we can go  over the strategy , dates on campus , and roles / responsibilities .  also , i know that you mentioned that the first couple of weeks in october  would be the best to target for the general information session . how does  the week of october 9 th look for you ? is there a certain day that works the  best ? i would like to work with your schedule to see if we can come up with  a date in that timeframe .  thanks again for your help !  ashley  vince j kaminski @ ect  08 / 11 / 2000 01 : 42 pm  to : ashley baxter / corp / enron @ enron  cc :  subject : recruiting  ashley ,  another professor i contacted . his web page is  http : / / are . berkeley . edu / ~ rausser /  can we firm up the trip date ? i shall be able to line up some meetings  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 08 / 11 / 2000  01 : 46 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  vkamins @ ect . enron . com on 08 / 11 / 2000 01 : 44 : 52 pm  to : rausser @ are . berkeley . edu , vkamins @ enron . com  cc :  subject : recruiting  gordon ,  this is the information about our recruiting program .  vince  - enronl . pdf\",0\n\"Subject: gaming of neta prices - constraints on the mccoy strategy  fyi ( bm = balancing market in his email ) .  i ' m still on eklavya ' s back to produce a white paper analysis of possible  trading stretagies under neta and their likely implications for prices and  volatilities . i ' ll forward it on as soon as ( if ever ) i receive it .  steve  - - - - - - - - - - - - - - - - - - - - - - forwarded by steven leppard / lon / ect on 02 / 09 / 2000  03 : 10 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  eklavya sareen 09 / 02 / 2000 14 : 43  to : ect london uk power trading , enron london power analytics , ect london uk  gas and power origination , paul dawson / lon / ect @ ect  cc :  subject : gaming of neta prices - constraints on the mccoy strategy  i believe most people are now familiar with the mccoy strategy for  manipulating imbalance prices in a favourable direction :  1 ) take a massive long or short position in forward trading  2 ) choose physical production decisions to drive system  i ) long if forward market postion is long  ii ) short if forward market postion is short  3 ) if system is long it needs to accept bids , if system is short it needs to  accept offers  4 ) if forward market postion is long submit very large postive bids to the bm  to drive ssp high - ssp is price received for spilling power to the bm ( going  into bm long )  5 ) if forward market postion is short submit very small ( even negative )  offers to the bm to drive sbp low - sbp is price paid for purchasing power  from bm ( going into bm short )  the neta programme intends to tag transmission cosntraint related trades in  the bm . according to disg 24 \"\" tagging constraint trades \"\" ( 21 dec 99 ) option  3 ( a ) [ the option that is proposed to be adopted ] , paragraph 2 . 3 ( p . 4 ) :  \"\" in the relevant settlement period , all accepted offers and bids volumes that  can be arbitraged , i . e . where a volume has been bid higher than the price at  which a volume has been offered , are eliminated ; \"\"  one of the implications of the above procedure is that the highest bids ( the  mccoy bids ) and the lowest offers ( the mccoy offers ) are likely to be  eliminated from the calculation of imbalance prices . this will make it harder  to pursue the mccoy strategy successfully .  thoughts and comments welcome .  thanks ,  eklavya .\",0\n\"Subject: re : var  vince  thanks for the update - especially your point 3 which echoes our own  discussion yesterday : i want to clarify responsibilities for maintenance and  administration of var .  we need transparency around the process so that mapping decisions , for  example , are easily made , supported and reviewed .  it became clear after last friday ' s events , that we are in an awkward  paradigm with respect to how we handle var here , particularly at \"\" pressure  points \"\" .  i am putting together the scope of a \"\" general overhaul \"\" of the var process ,  including method and administration , to which i hope we would all buy in , so  be assured of our co - operation .  dp  - - - - - original message - - - - -  from : kaminski , vince  sent : wednesday , april 11 , 2001 2 : 49 pm  to : port , david  cc : lavorato , john ; kaminski , vince ; tamarchenko , tanya  subject : var  david ,  during today ' s var coordination meeting we had a discussion of issues  related to mapping of the forward price curves into core locations .  mapping is a necessity dictated by the limitations of the computer system :  we have to reduce the dimensionality of the problem to stay within the bounds  of available cpu memory . also , in some cases the quality of price discovery  is poor  and it ' s difficult to model the price curves independently : we solve the  problem by mapping  them into more liquid and better behaved core locations curves .  we have agreed on the following :  1 . winston will investigate the it side and determine to what extent we can  increase the number  of forward price curves that are simulated as basic ( core ) curves . he will  investigate the impact of a larger  number of the core curves on the time required to complete the var run .  2 . the curves associated with the biggest 10 - 20 positions in each commodity  should be  modeled as core curves ( i . e . no mapping into other locations ) . it makes sense  to monitor  the biggest risks separately and avoid aggregating them into less  transparent aggregates .  3 . the results of an automated clustering ( mapping ) procedures should be  systematically  monitored by a human and corrected if they misrepresent the risks of the  trading positions .  this responsibility should be vested with one person ( right now the  responsibility is  dispersed through the organization and this means in practice that nobody  is responsible ) . research can allocate one person to this task ;  cooperation of trading and rac will be critical .  vince\",0\n\"Subject: december 15 th super saturday friday interview confirmation  please see the attached regarding interview confirmation and information for  friday , december 15 th .  thanks  shelly\",0\n\"Subject: promotion  vince ,  congrats on your promotion to md .  doug\",0\n\"Subject: re : lsu seminar visit  jim ,  i can send you copies of the reprints of some papers i wrote  or co - authored . please , let me know how many copies do you need .  i shall prepare power point presentations for the student meeting  and for the faculty meeting .  for the students : review of my group ( things we work on ) with an intention  of generating some interest among the students and soliciting resumes .  for the faculty meeting : challenges that energy markets pose to financial  modeling .  i shall be able to e - mail the power point presentations later this month .  vince  jim garven on 01 / 17 / 2000 04 : 00 : 25 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : lsu seminar visit  dear vince ,  would you mind emailing to me a short biography / vita sometime when you get  a chance ? also , if you have a paper to circulate or any powerpoint slides  that you ' ll want to use either in your presentations to my students  thursday afternoon , 2 / 3 , or to the faculty seminar on friday morning , 2 / 4 ,  please email these to me . this would be greatly appreciated .  my colleagues and i are looking forward to your visit on feb . 3 - 4 to lsu .  sincerely ,  jim garven  james r . garven  william h . wright , jr . endowed chair for financial services  department of finance  2158 ceba  e . j . ourso college of business administration  louisiana state university  baton rouge , la 70803 - 6308  voice ( 225 ) 388 - 0477 | fax : ( 800 ) 859 - 6361  e - mail : jgarven @ lsu . edu  home page : http : / / garven . lsu . edu  vita : http : / / garven . lsu . edu / dossier . html  research paper archive : http : / / garven . lsu . edu / research . html  - attl . htm\",0\n\"Subject: re : possible hire ?  kathy ,  thanks for your message . we are very interested in talking to keith .  please , give him my phone number / e - mail address  and he can contact me directly .  vince  \"\" kathy ensor \"\" on 04 / 18 / 2000 11 : 32 : 27 am  to :  cc :  subject : possible hire ?  dear vince ,  a faculty member in our department , namely dr . keith baggerly ,  is interested in pursuing other employment . he is currently an  assistant professor in our program and a highly valued member of  our department . we hate to lose him , however his interest has shifted  from the academic arena to one of high level but practical application  and development of statistical methodologies including  stochastic modeling .  keith is actually a graduate of our ph . d . program ; he was in the same  group of students as martin lawera . keith spent several years at los  alamos national lab before we recruited him back to rice . he has  been on our faculty now for three years and it is my expectation  ( and that of my colleagues ) that if he remained he would receive  tenure .  keith has a strong interest in financial models and the background  to support his interest . he is also a leading expert in statistical  computing , empirical likelihood , categorical models and areas  of statistics falling under the general bailiwick of \"\" data mining \"\" .  he is a creative thinker .  i do not know if there are possibilities for keith within your group ,  however  i believe it is an excellent match of talent and objectives . would you  have an interest in speaking with keith ? if so , i will suggest that he  contact you .  best regards ,  kathy ensor  katherine bennett ensor e - mail : ensor @ rice . edu  professor and chair or :  kathy @ stat . rice . edu  department of statistics , ms 138 phone # : ( 713 ) 348 4687  rice university dept . # : ( 713 )  348 6032  houston , tx 77251 - 1892 fax # : ( 713 ) 348 5476\",0\n\"Subject: fw : application for open positions within enron  dear mr . kaminski :  just wanted to let you know that i have submitted my slightly revised resume  ( attached ) for the following open positions within enron . i am seeking an  opportunity to have a job interview with the right individuals . i know you  have been trying to help me . this is a good time for a meeting with someone  within these departments .  1 . . credit analyst , spec sr , job # 000010220 , dept : trade credit : tony  vasut  2 . . manager , job # 0000102374 , dept : ena consolidated reporting : tony  vasut  3 . . director , b 8828 , dept : investments / ventures - broadband services  4 . . compliance manager , job # 0000102317 , dept : due diligence / asset  management  i shall , therefore , appreciate your guidance on how i can come in for a job  interview . as you know , i am really interested in working for enron , hence  request for your help .  thank you .  sincerely ,  maruti d . more , cfa  1 . .  - - - - - original message - - - - -  from : more  to : vince j kaminski  date : monday , february 07 , 2000 10 : 18 pm  subject : re : personal  dear mr . kaminski :  thank you very much for meeting with me again today over lunch . i appreciated  the opportunity to catch up with you .  please find attached my current resume ( both a short and a long version ) . i  have worked as a trader , portfolio risk manager , and a stock analyst . i have  traded derivatives , bonds , and stocks , and managed insurance and pension  investment portfolios to maximize risk - adjusted returns . let me highlight  some of my work experiences .  trading and risk management  a . . structured , negotiated , and traded otc interests rate swaps ,  cross - currency swaps , swaptions , and exchange - traded equity index futures and  options . made powerpoint presentations to garp and the uoh on credit  derivatives .  b . . developed investment hedging program utilizing exchanged - traded bond  futures and interest rate swaps .  c . . traded and managed pension and insurance fixed income portfolios to  maximize total return and funding ratios . bonds traded : treasuries , agencies ,  mbs / cmos , abs , corporate , yankees , and foreign .  d . . traded and managed stock mutual portfolios for total return .  e . . created a computer program to quantify the attribution of total  return for fixed income portfolios relative to market returns .  f . . programmed investment compliance rules to monitor the management of  domestic and global stock , bond and money market mutual funds .  g . . supervised market risks , credit risks , legal risks , and operations  risks of derivatives , bonds , money market securities , and equities .  policy , reporting and projects  a . . developed investment policy guidelines to manage fixed income  portfolios .  b . . rewrote derivatives policy manual .  c . . prepared a 20 - page powerpoint slide presentation on india for the  senior management .  d . . prepared and presented investment reports to cios , investment  committees , and boards of trustees  i shall , therefore , appreciate your help in connecting me with the right  individual within enron for a job interview to work as a financial  trader / risk manager . i can provide excellent references upon request .  thank you for the lunch .  sincerely ,  maruti d . more , cfa  713 - 722 - 7199  more @ insync . net  - - - - - original message - - - - -  from : vince j kaminski  to : more  date : tuesday , january 25 , 2000 12 : 39 pm  subject : re : fw : luncheon meeting : asap  hello ,  i shall be traveling this week . i shall be glad to meet  you for lunch next week . please give me a call monday  at 713 853 3848 .  vince  \"\" more \"\" on 01 / 25 / 2000 10 : 27 : 09 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : fw : luncheon meeting : asap  dear mr . kaminski :  just to bring you up to date . i am no longer with american general . i  shall ,  therefore , appreciate an opportunity to meet with you for lunch at the  earliest  possible time . i can be reached at 713 - 722 - 7199 .  thank you .  maruti more  713 - 722 - 7199  - - - - - original message - - - - -  from : more  to : vince j kaminski  date : friday , december 17 , 1999 8 : 55 pm  subject : re : luncheon meeting  thank you for your response . i was very happy to hear from you .  i am also taking next week off and will be back to work on december 27 th .  please do call me when you get back . would very much appreciate the  opportunity  to have a quick lunch with you , if possible . hope everything is going  well .  have wonderful christmas holidays .  regards  maruti more  713 - 831 - 6209 ( o )  - - - - - original message - - - - -  from : vince j kaminski  to : more  cc : vince j kaminski  date : friday , december 17 , 1999 3 : 35 pm  subject : re : luncheon meeting  hello ,  i shall be taking a few days off around xmas . i shall call you at the  end of  december  when i get back to the office .  with best holiday wishes ,  vince  \"\" more \"\" on 12 / 01 / 99 09 : 28 : 09 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : luncheon meeting  dear mr . kaminski :  how are you doing ? i want to find out if we can meet again for a quick  lunch .  you might know that in maharashtra , india there is now a new chief  minister  ( ceo of the state government ) . i am proud to say that he and i are  from the  same  town , latur .  i would really enjoy talking with you again , at your convenience .  i will call you tomorrow to follow up .  thank you .  sincerely ,  maruti more  - - - - - original message - - - - -  from : vince j kaminski  to : more  cc : vince j kaminski ; vkaminski @ aol . com  date : thursday , july 01 , 1999 6 : 16 am  subject : re : luncheon meeting  dear mr . more ,  let ' s meet at 11 : 45 in the lobby of the enron building .  we can walk to one of the restaurants in the downtown area .  vince kaminski  ( embedded enron capital & trade resources corp .  image moved  to file : from : \"\" more \"\"  picl 7002 . pcx ) 06 / 30 / 99 10 : 38 pm  to : vince j kaminski / hou / ect  cc :  subject : luncheon meeting  dear mr . kaminski :  i am looking forward to our luncheon meeting on this friday ,  july 2 ,  1999  at  11 : 30 am . please let me know where we should meet . thank you for  taking  time  out  from your busy schedule .  sincerely ,  maruti more  tel . : 713 - 831 - 6209  - attl . htm  - bio @ home . doc  - more @ home . doc  - consultant . doc\",0\n\"Subject: webi proposal  vince : per your request , i am forwarding the electronic version of the webi  proposal . as i mentioned to you yesterday , jeff shankman has procured funding  for enron to join at the corporate partner level , so you may wish to discuss  the matter with him prior to circulating this document . this funding is in  addition to that which you and christie have already committed to other  research and sponsorship activities at the school .  please let me know if i can be of any further help . i look forward to seeing  you again soon .  by the way , i cast my vote on time and with no confusion ; let ' s hope the  outcome is as we hoped it would be .  tom >  - webi proposal complete 5 - 26 . doc\",0\n\"Subject: re : hello  gerry ,  let me review my calendar in the beginning of the next year and i shall  e - mail you  with a suggested date . my assistant will update my schedule for 2001 in the  first week  of january and i shall be able to select a date for ypur presentaton .  vince kaminski  \"\" sheble , g . b . \"\" on 12 / 21 / 2000 10 : 43 : 50 am  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc :  subject : re : hello  dear mr . kaminski  please excuse the cancellation due to illness . the students do not care who  they infect near the end of the semester , they just want to get done !  here is my available schedule for next year . i am now overloaded next week  with tasks to complete the semester . i do hope that we can reschedule  during the first quarter next year .  i would note that my schedule is most free for thursday or friday . i could  fly out late wednesday night .  cordially ,  gerry  teaching schedule  m 11 - 12  t and r 10 - 12 and 2 - 4  t 12 - 2 ep & es seminar  m 6 - 8  t 6 - 8  w 6 - 8  ( r = thursday )  workshops :  jan 12 - 13 des moines  jan 26 - 27 des moines  feb 9 - 10 des moines  ieee wpm conference  feb 28 - 31 columbus , ohio\",0\n\"Subject: re : mba polish speakers  does he know any of the names identified by sophie ?  sidney cox  2000 - 02 - 23 19 : 31  to : jarek astramowicz / war / ect @ ect , jarek dybowski / war / ect @ ect , krzysztof  forycki / war / ect @ ect , sophie kingsley / lon / ect @ ect , sophie kingsley / lon / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : mba polish speakers  vince was in the office today and i mentioned to him the difficulties we are  having in finding good quality polish mbas .  vince has kindly agreed to make contacts and forward some names to us .  sid\",0\n\"Subject: todd kimberlain  vince / vasant :  do you know who todd kimberlain is ? is he supposed to be in the research  group and charged to our cost center ? he is .  i have never heard of him , but when you pull his name up , it shows that he  is reporting to mark tawny , but is in the research group and being charged  to our cost center .  he is also on our time site , but i have not been doing his time . i hope  somebody  has !  let me know ,  thanks !  shirley\",0\n\"Subject: re : agenda for thursday ' s meeting  hello all ,  i look forward to this meeting . since the time vince and i last spoke , we  have really gained some traction in this area of improving our relationships  with universities . i am going to take the liberty of inviting mike rosen to  the meeting . mike has done a great job on several relationship - based special  projects , and i ' d like to hear his thoughts as we develop the angles of this  initiative .  see you tomorrow ,  mark\",0\n\"Subject: interview thanks  dear dr . kaminski :  thank - you once again for inviting me to interview for a position in your  corporate research group . i very much enjoyed meeting you and your  colleagues . i was quite ? impressed by the excellent quality of the people  and the entrepreneurial spirit at enron . the ongoing projects in support of  energy and broadband ? marketing as well as insurance ? are very interesting  to me . i definitely would like to be a part of these efforts . thank - you  again for the opportunity to interview with your group .  ?  sincerely ,  rodney greene\",0\n\"Subject: dr . kaminski ,  on wednesday , june 14 th i attended your presentation entitled \"\" the challenge  of valuation of energy related derivatives \"\" at the risk 2000 conference in  boston . can you please e - mail me the slides you presented .  also , you mentioned that the method you used to calculate volatility for  energy prices was not the \"\" normal \"\" method . can you please tell me , or give  me a reference to the method that you did use .  thank you ,  aaron gould  senior risk management analyst  pseg services corporation  aaron . gould @ pseg . com  1 - 973 - 456 - 3527\",0\n\"Subject: bios of mit participants  vince : bios from mit participants did arrive - - - see below . amy  donald r . lessard  deputy dean ; epoch foundation professor of international management  office e 52 - 474  tel 617 - 253 - 6688  ? ? ? ? ? ? ? ? ? ? ?  lessard ' s current research is focused on the shaping and managing of risks in  large engineering projects , the globalization of financial services , and  knowledge development within multinational firms . as deputy dean , lessard  coordinates sloan ' s research centers and provides faculty leadership for its  international initiatives , institutional partnerships and executive  education . the international initiatives include joint programs with tsinghua  and fudan universities and lingnan ( university ) college in china , as well as  programs in taiwan and singapore . lessard is also the faculty director for  the mit - wide partnership between merrill lynch and mit .  general expertise international corporate strategy and finance  s . p . kothari  gordon y billard professor of accounting and finance  office e 52 - 325  tel 617 - 253 - 0994  ? ? ? ? ? ? ? ? ? ? ? ?  kothari is an editor of the journal of accounting & economics , and his  research work has been widely published in leading accounting and finance  journals . past research has focused on the relation between financial  information and security prices , accounting for executive stock options ,  tests of security - price performance and market efficiency , corporate uses of  derivatives for hedging and speculation , and issues surrounding executive  compensation . recent published research includes : \"\" the relation between  earnings and cash flows \"\" ( with patty dechow and ross watts ) , journal of  accounting \"\" a market - based evaluation of discretionaryaccrual  models \"\" ( with wayne guay and ross l . watts ) , journal of accounting research ,  1996 ; \"\" another look at the cross - section of expected returns \"\" ( with jay  shanken and richard sloan ) , journal of finance , 1995 ; and \"\" measuring  long - horizon security price performance \"\" ( with jerold b . warner ) , journal of  financial economics , 1997 .  general expertise accounting , india , stock trading\",0\n\"Subject: technical corner article  a proposed technical corner article on the work we did fitting the new york  area gas load data is attached for comment .  bob lee\",0\n\"Subject: re : pserc iab - who we are  i have completed the requested questionaire .  lance  sjdemarco @ nyseg . com on 11 / 20 / 2000 12 : 56 : 14 pm  to : james . stoupis @ us . abb . com , arun . arora @ tdb . alstrom . com , dakrummen @ aep . com ,  bajarang . agrawal @ aps . com , mwtwominer @ bpa . gov , ctwedick @ bpa . gov ,  phsiang @ caiso . com , james . crane @ exeloncorp . com , mwagee @ duke - energy . com ,  alex . huang @ enron . com , lance . cunningham @ enron . com , ttayyib @ epri . com ,  hamid . elahi @ ps . ge . com , huneault @ ireq . ca , mpotishnak @ iso - ne . com ,  wong @ merl . com , rbs 2 @ pge . com , kip . morison @ powertechlabs . com ,  don - sevcik @ reliantenergy . com , dspelley @ srpnet . com , sti @ apk . net ,  marty . brett @ wheatland . com , dtbradshaw @ tva . gov , kwmorris @ tva . gov ,  amander @ tristategt . org , bill . muston @ txu . com , w . b . dietzman @ txu . com ,  pmccrory @ txu . com , philip . overholt @ ee . doe . gov , quintana @ wapa . gov ,  torgersn @ wapa . gov , paul . walter @ wepco . com , louis . p . matis @ xcelenergy . com  cc : djray @ engr . wisc . edu  subject : pserc iab - who we are  one of the things i would like to accomplish over the next few weeks is for  we iab members to build a better working relationship . there have been many  changes to pserc over the past year , as well as many new iab members  joining with their universities . i ' ve felt that i don ' t know most of the  iab members and that makes it difficult for me to feel like i ' m adequately  representing your needs to the pserc executive committee . i hope to meet  many of you in denver and get to know you better , but i think we all need  to know each other better . i have an idea that might help us and it will  only take five minutes of your time .  if you could take the time to fill out the following short questionnaire  and email it back to me then i ' ll compile a list and distribute it to you .  depending upon when you respond i might be able to hand it out in denver ,  but i ' ll be sure to email you a copy later if i have to . this is , of  course , perfectly voluntary , so if you ' re not interested its okay . if you  want to respond via a telephone call , i ' m at 607 - 762 - 8825 .  email this back to me at sjdemarco @ nyseg . com and copy dennis ray at  djray @ engr . wisc . edu .  thank you very much , steve de marco ( iab chair )  _ _ _ _  your name : lance b . cunningham , p . e .  your title : manager  your department or division : research , enron north america  main r & d related responsibilities of your department or division : market  modeling and options pricing  the stem area you ' re most interested in ( x one ) :  markets ( xx )  t & d technology  systems  what do you hope to gain from attending the iab meeting : evaluation of pserc  for potential membership  would you like to add any specific agenda item to the closed iab meeting on  thursday ?  no  are there any specific agenda items that you would like covered in the open  feedback session with both the university and industrial pserc members on  friday ?  future research plans , applicability of research to industry ( perhaps a list  of previous research projects )\",0\n\"Subject: re : mid - project review dates - enron  hi donna ! !  please sign the enron team up for feb . 20 th .  thanks ! ! ! . . . and thanks for all your help last week ! everyone at enron is  enthusiastic about the project , and the students have been very gracious in  their \"\" thank you \"\" notes .  we ' re looking forward to the video conference thursday . my assistant ,  melinda mccarty , will contact you to make sure we ' re \"\" reciprocally \"\" in sinc  for the broadcast .  thanks !  - - christie .\",0\n\"Subject: fall 2001 module schedule and fall 2001 calendar schedule in your  mailboxes  students , faculty , and staff ,  i have placed a hard copy of the fall 2001 module schedule and fall 2001  calendar schedule in your mailboxes this afternoon for your review . i have  also posted a copy of the fall 2001 module schedule and fall 2001 calendar  schedule onto embanet . to access the fall 2001 module schedule and calendar  schedule please open the jgsm area icon on the embanet desktop . next  please open the announcement jgsm icon . you will find the fall 2001 module  schedule and the fall 2001 calendar schedule located under the subject  column . please open the documents . if you have any trouble accessing the  schedule or calendar please contact david kilgore at :  kilgore @ rice . edu  thanks ,  kathy  kathy m . spradling  mba program coordinator  jesse h . jones graduate school of management  rice university  6100 main street , ms 531  houston , texas 77005 - 1892  phone : ( 713 ) 348 - 3313  fax : ( 713 ) 348 - 5251  email : spradlin @ rice . edu  http : / / www . rice . edu / jgs  e - mail : spradlin @ rice . edu  http : / / www . ruf . rice . edu / ~ jgs /\",0\n\"Subject: matlab at enron  hello vince :  i ' m the territory manager for the mathworks , we develop matlab technical  software . we ' ve recently developed tools well suited for energy trading  industry .  enron has used our products in the past , but all of those end - users have  left enron .  risk management and research groups at southern energy , txu , dynegy , el  paso energy , koch , calpine , reliant and others have recently started using  our products in the following ways .  1 . create sophisticated option pricing models , risk analysis models , and  stress analysis models . creating gui front ends for the end - users .  2 . pull in data from odbc , corba , and sas databases to evaluate .  3 . visualize the results and quantify the solution .  4 . compile these models and distribute these applications to their  traders , analysists and managers with no distribution costs .  who should i contact at your company to discuss enron ' s situation to see if  our can help enron as it has with our other energy customers ?  thank you for your time and help .  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  scott wakefield  the mathworks , inc .  phone : ( 508 ) 647 - 7282  fax : ( 508 ) 647 - 4275  e - mail : swakefield @ mathworks . com  http : / / www . mathworks . com  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  matlab news group :  news : comp . soft - sys . matlab  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  visit the new mathworks store and buy matlab , simulink  and all of our products online  http : / / www . mathworks . com / store /\",0\n\"Subject: proj . x analytics diligence  paul ,  vince and i spent some time thinking about the diligence process for the  trading analytics . there is a limited amount that can be accomplished in a  two day time period . i think a reasonable start would be the following :  1 . obtain an audited history of the trading strategies which have been  implemented in order to verify profitability , and p / l volatility of each .  2 . review needed working capital and risk capital requirements and compare  these to projections for trading income .  3 . review current level of access to electronic markets and verify that a  change of ownership would not have adverse consequences , i . e . are there  guarantees of continued access using the current systems ?  4 . review feasibility of entry into proposed new markets ? it is far from  clear that there will be any synergy with most commodity markets given the  current limited \"\" electronic \"\" liquidity .  5 . review , at least qualitatively , the current trading strategies being  used . try to develop some estimate of how fast the profitability of these  strategies will disappear as other ' s implement similar trading models . what  is the trade off between trade quantity and slippage .  6 . review the methodology used to generate new trading strategies which will  be needed to replace the current models as they become unprofitable and  outdated .  7 . try to determine if there will be any value in transfer of trading  technology to enron ' s other markets , given the illiquidity of these markets  as compared to the financial equity markets .  if there were a sufficiently long time horizon for our analysis , we would  probably want to run their system on a test set of data .  let me know if you have other suggestions .  - - stinson\",0\n\"Subject: re : tanya ' s vacation  this is just to let you know that i am going to go on vacation from 7 / 26 / 00  to 8 / 8 / 00 .  tanya .\",0\n\"Subject: re : matthew williams  i ' m entirely ok with this . . . .  matt  sophie kingsley 11 / 10 / 2000 19 : 04  to : dale surbey / lon / ect @ ect  cc : steven leppard / lon / ect @ ect , melanie doyle / lon / ect @ ect , tani  nath / lon / ect @ ect , matthew d williams / lon / ect @ ect , vince j  kaminski / hou / ect @ ect , lucy page / lon / ect @ ect  subject : re : matthew williams  let ' s agree the switch happens november lst and we will change sap to reflect  specialist status and matthew will be send a letter .  matt , can you just send me a note confirming you are ok with this and cc .  karen tamlyn who will make the change .  regards  sk  dale surbey  11 / 10 / 2000 18 : 21  to : steven leppard / lon / ect @ ect  cc : melanie doyle / lon / ect @ ect , sophie kingsley / lon / ect @ ect , tani  nath / lon / ect @ ect , matthew d williams / lon / ect @ ect , vince j  kaminski / hou / ect @ ect  subject : re : matthew williams  i agree - sounds like a good idea .  - dale  steven leppard  11 / 10 / 2000 18 : 05  to : melanie doyle / lon / ect @ ect , sophie kingsley / lon / ect @ ect  cc : tani nath / lon / ect @ ect , dale surbey / lon / ect @ ect , matthew d  williams / lon / ect @ ect , vince j kaminski / hou / ect @ ect  subject : matthew williams  all  following discussions between matt , vince kaminski , and me , matt has decided  he ' d like to make a longer - term commitment to research . with this in mind  we ' d like to request that matt is switched from a & a to the specialist track .  vince and i feel this is clearly in the best interests of enron given matt ' s  proven strengths in quant analysis .  how do we proceed ?  all the best ,  steve\",0\n\"Subject: re : letter  thanks a lot for the letter . appreciate your help .  thanks ,  larrissa .  vince j kaminski  04 / 25 / 2000 09 : 19 am  to : larrissa sharma / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : letter  larrissa ,  please , take a look at the letter .  my assistant is on vacation , she will be back tomorrow .  please , check the spelling of your first name . it was inconsistent in the  original letter from the lawyer .  vince\",0\n\"Subject: organization announcement  we are pleased to announce the following organization changes within enron  global markets ( egm ) .  larry lawyer will be joining egm effective immediately to lead our new  finance activities . in this role , he will work with all commodity products ,  assets , and teams worldwide to lever our existing businesses with this new  focus . larry has worked as treasurer and was responsible for 3 rd party  financing for ebs for the last year . he has worked for enron for 4 1 / 2 years  in various positions in the finance area . he will be reporting to the office  of the chairman .  eric gonzales will be joining the lng team and will co - head this effort with  rick bergsieker . we believe there is significant opportunity in the  worldwide lng markets , and eric will direct all merchant activity and focus  on the atlantic regions of the world . he will also manage the lng shipping  book . eric is located in the london office and also has responsibility for  leading the newly formed pool markets origination group reporting to joe  gold .  rick bergsieker has relocated to dubai , in the uae . he is responsible for  all middle east activities and projects , managing the puerto rico assets and  will co - head the worldwide lng efforts . rick has over 20 years of lng  experience and together , he and eric will form an outstanding leadership team  as we expand enron \u0001 , s lng activities around the world . they both will report  to the office of the chairman .  jennifer fraser will come over and develop our market fundamentals group for  all products in egm , much like ena natural gas and power fundamentals and  intranet pages existing today . previously , jennifer was working in the mid  market origination group . heather purcell will be joining this group  developing the commercial interface for our intranet page . heather was with  azurix , where she worked on the platform interface for their ebusiness  initiatives .  gary hickerson will be chairing our traders \u0001 , roundtable . this new group will  be comprised of traders across enron ' s wholesale trading and risk management  businesses . this forum will give traders the opportunity to discuss topics  important to their individual markets , and to learn and explore other markets  in a macro sense . also , we will be forming a cross - commodity trading group .  traders who have shown extremely strong and consistent profitability will  have the opportunity to join this group and to exploit cross - commodity  opportunities with a bias toward structural shifts in markets . this group  will not be involved in customer activity and will execute through our  principal desks . gary will manage this new group , as well as continuing  with his current f / x , rates , equity , and agriculture initiatives .  please join us in congratulating everyone on their new positions .  organization charts outlining the entire egm organization are available upon  request from cathy phillips .\",0\n\"Subject: re : re [ 4 ] : greetings from london ( to enron )  iris ,  we can invite you for an interview to houston .  what would be a the time for you ?  vince  iris . mack @ bnpparibas . com on 05 / 25 / 2000 11 : 32 : 04 am  to : vince . j . kaminski @ enron . com  cc :  subject : re [ 4 ] : greetings from london ( to enron )  hi ,  thank you for your prompt response . i am interested in any contacts you  may have in your rolodex .  also , i would be opened to talk to enron as well . please let me know  more  details .  kind regards ,  iris  internet  from : vince . j . kaminski @ enron . com on 25 / 05 / 2000 16 : 19 gmt  to : iris mack  cc : vince . j . kaminski , stinson . gibner , grant . masson , pinnamaneni . krishnarao ,  vasant . shanbhogue  bcc :  subject : re : re [ 2 ] : greetings from london ( to enron )  iris ,  i shall go through my rolodex and try to find some good leads for you . i left  investment banking 8 years ago and this field changes very fast .  alternatively , would you be interested in a company like enron  or another energy company in houston ?  please , let me know .  vince  iris . mack @ bnpparibas . com on 05 / 25 / 2000 09 : 20 : 01 am  to : vince . j . kaminski @ enron . com  cc :  subject : re [ 2 ] : greetings from london ( to enron )  hi ,  how are you ? thank you kindly for your email . sorry i have not  responded  sooner .  currently i am working in derivatives structured products and risk  management at bnp paribas in london . although i currently enjoy living and  working in london , i may need to return to the states - because of my mother ' s  failing health .  do you know of any good contacts at investment banks that i may forward  my  details to ?  for your information , i have attached my cv . ( please see attached file :  iris marie mack . doc ) .  thank you in advance for your time and consideration .  kind regards ,  iris mack  44 ( 0 ) 20 7595 8665 ( work )  44 ( 0 ) 20 7229 9986 ( home )  ( see attached file : iris marie mack . doc )  internet  from : vince . j . kaminski @ enron . com on 04 / 04 / 2000 15 : 03 gmt  to : iris mack  cc : vince . j . kaminski  bcc :  subject : re : greetings from london ( to enron )  iris ,  please , feel free to give me a call when you have a few minutes .  i shall be glad to chat with you .  vince  iris . mack @ paribas . com on 03 / 30 / 2000 02 : 24 : 27 am  to : vkamins @ enron . com  cc : denis . autier @ paribas . com  subject : greetings from london ( to enron )  dear dr . kaminski ,  how are you ? it was nice to meet you at the real options conference  in  nyc .  i was intrigued by some of the comments in your conference talk . in  particular , by your use of real options to hedge financial options . this  is  something i am interested in as well .  when you have some time , could we chat about this topic in a bit more  detail ?  thanks for your time and consideration . hope to hear from you soon .  regards ,  iris mack  - - - - - - - - - - - - - - - -  this message is confidential ; its contents do not constitute a  commitment by bnp paribas group * except where provided  for in a written agreement between you and bnp paribas group * .  any unauthorised disclosure , use or dissemination , either  whole or partial , is prohibited . if you are not the intended  recipient of the message , please notify the sender immediately .  * bnp paribas group is a trading name of bnp sa and paribas sa  ce message est confidentiel ; son contenu ne represente en  aucun cas un engagement de la part du groupe bnp paribas *  sous reserve de tout accord conclu par ecrit entre vous et le  groupe bnp paribas * . toute publication , utilisation ou diffusion ,  meme partielle , doit etre autorisee prealablement . si vous n ' etes  pas destinataire de ce message , merci d ' en avertir immediatement  l ' expediteur .  * le groupe bnp paribas est le nom commercial utilise par bnp sa et paribas  sa  ( see attached file : iris marie mack . doc )  - iris marie mack . doc\",0\n\"Subject: swaps monitor research .  we have today published information about the global exchange - traded options  and futures volume . this research is contained in the attached pdf file .  through our web site , swapsmonitor . com , you can obtain additional information  about otc derivatives dealers , including rankings and a database of  outstandings going back to 1994 .  as an e - mail subscriber to our research , you will automatically receive all  free research at the same time it is placed on our web site . if you wish to  remove your name from the e - mailing list , please use the reply feature of  your e - mail application and type the word \"\" remove \"\" in the subject line .  regards ,  - total _ et . pdf  andrei osonenko  research department\",0\n\"Subject: re : 2001 fma european conference  thanks vince . looking forward to dinner on sunday with you and stinson .  john  at 11 : 52 am 11 / 29 / 00 - 0600 , you wrote :  >  > john ,  >  > the books have arrived and i shall fedex them tonight to your university  > address ( shown at the bottom of your messages ) .  > still fishing for the paper on network economy .  >  > vince  >  > p . s . shirley , the address is at the bottom .  >  >  >  >  >  > \"\" john d . martin \"\" on 11 / 28 / 2000 11 : 27 : 35 am  >  > to : vince . j . kaminski @ enron . com  > cc :  > subject : re : 2001 fma european conference  >  >  > that ' s fine . i didn ' t want to change anything until i heard from you guys .  >  > see ya !  >  > john  >  > at 11 : 06 am 11 / 28 / 00 - 0600 , you wrote :  > >  > > john ,  > >  > > thanks . stinson will be able to join us for dinner . he is opting out of  > > the paper due to his big workload but we can get his perspective on  > > the last 8 years he spent at enron .  > >  > > vince  > >  > >  > >  > >  > >  > > \"\" john d . martin \"\" on 11 / 28 / 2000 09 : 44 : 17 am  > >  > > to : vkamins @ enron . com  > > cc :  > > subject : 2001 fma european conference  > >  > >  > > here ' s the info on the european conference . just for your files .  > >  > > john  > >  > > > date : tue , 28 nov 2000 08 : 40 : 39 - 0500  > > > from : karen wright  > > > subject : 2001 fma european conference  > > > to : kwright @ fma . org  > > > x - mailer : mozilla 4 . 5 [ en ] ( win 98 ; i )  > > > x - accept - language : en , pdf  > > >  > > > 2001 fma european conference  > > >  > > > the fifth annual european meeting of the financial management  > > > association international ( fma ) will be held may 31 and june 1 , 2001 at  > > > the hotel sofitel ( rive gauche ) in paris , france . fma ' s european  > > > meeting brings together academicians and practitioners with interests in  > > > financial decision - making . the meeting provides a forum for presenting  > > > new research and discussing current issues in financial management ,  > > > investments , financial markets and institutions , and related topics .  > > > keynote addresses and other special presentations will be held in  > > > addition to research paper presentations .  > > >  > > > paper submissions  > > > research papers . the program includes traditional research paper  > > > presentations . criteria used to determine the suitability of these  > > > papers for the program include the nature of the research problem ,  > > > implications of the proposed research , the quality of the research  > > > design , and the expected contribution of the research to the  > > > literature . please note that the purpose of these sessions is to  > > > present new and unpublished research .  > > >  > > > submission fee . there is no submission fee for the fma european  > > > conference .  > > >  > > > submissions . please follow these steps :  > > > complete the presentation form that can be downloaded at  > > > www . fma . org / paris . htm . carefully select the subject code on the  > > > presentation form that most closely describes your research . the code  > > > number you select will be used to select reviewers for your proposal .  > > >  > > > send six ( 6 ) copies of your completed paper , along with the completed  > > > presentation form , to the fma office ( financial management association ,  > > > university of south florida , college of business administration , tampa  > > > fl 33620 - 5500 , usa ) .  > > > please note that only completed papers will be accepted for the fma  > > > european conference review process .  > > >  > > > the paper submission deadline is friday , december 1 , 2000 .  > > >  > > > you will receive an electronic confirmation of your submission within  > > > six weeks of its receipt by the fma office , and you will be notified of  > > > the results of the reviewing process by the middle of february , 2001 .  > > >  > > > competitive paper awards  > > > the financial management association international is pleased to  > > > announce that four ( 4 ) $ 1 , 500 awards will be presented in conjunction  > > > with the 2001 fma european conference . the \"\" young scholars \"\" award will  > > > be presented to the best paper authored by a ph . d . student ( or  > > > equivalent ) or recent ph . d . ( or equivalent ) graduate . three additional  > > > $ 1 , 500 awards will be presented to the papers deemed \"\" best of the best \"\"  > > > by the members of the 2001 fma european conference competitive paper  > > > awards committee . please note that these awards will be made only if , in  > > > the opinion of the fma awards committee , a paper warrants such a  > > > decision . the decisions of the fma awards committee are final .  > > >  > > > accepted papers . if your proposal is accepted , the version of the paper  > > > you submit will be sent to its discussant as soon as he / she is  > > > identified . you are obligated to send the final version of your paper to  > > > the discussant and session chair by april 27 , 2001 . you also are  > > > obligated to present your paper in a professional manner at the assigned  > > > fma program session .  > > >  > > > the collegiality of the meeting provides a very special opportunity for  > > > participants to share their work and to hear about the work others are  > > > doing . thus , individuals whose papers are accepted for presentation at  > > > the 2001 fma european conference will be expected to either chair a  > > > session or discuss a paper .  > > >  > > > program co - chairs  > > >  > > > francois degeorge  > > > hec paris  > > > 1 rue de la lib , ration  > > > 78351 jouy en josas cedex  > > > france  > > > 33 - 1 - 39 - 67 - 72 - 34 ( ph )  > > > 33 - 1 - 39 - 67 - 94 - 34 ( fax )  > > > degeorge @ hec . fr  > > >  > > > kent womack  > > > dartmouth college  > > > amos tuck school  > > > hanover , nh 03755  > > > 1 603 646 2806 ( ph )  > > > 1 603 646 1308 ( fax )  > > > kent . womack @ dartmouth . edu  > > >  > > > additional opportunities for participation  > > >  > > > session chairperson or discussant . if you wish to serve as the  > > > chairperson of a session or paper discussant , but are not submitting a  > > > paper , please complete the participation form which can be downloaded  > > > from www . fma . org / paris . htm . submit the completed form to the fma office  > > > by december 1 , 2000 . session organization will take place in march ,  > > > 2001 .  > > >  > > > deadline summary  > > >  > > > completed papers : december 1 , 2000  > > > chairperson / discussant requests : december 1 , 2000  > > >  > > >  > > >  > > john d . martin  > > carr p . collins chair in finance  > > finance department  > > baylor university  > > po box 98004  > > waco , tx 76798  > > 254 - 710 - 4473 ( office )  > > 254 - 710 - 1092 ( fax )  > > j _ martin @ baylor . edu  > > web : http : / / hsb . baylor . edu / html / martinj / home . html  > >  > >  > >  > >  > john d . martin  > carr p . collins chair in finance  > finance department  > baylor university  > po box 98004  > waco , tx 76798  > 254 - 710 - 4473 ( office )  > 254 - 710 - 1092 ( fax )  > j _ martin @ baylor . edu  > web : http : / / hsb . baylor . edu / html / martinj / home . html  >  >  >  >  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: re : firm power sale from phase i - issues  vince / vasant ,  it has been some time since we spoke at the san antonio conference .  unfortunately , as soon as i got to india i was diagnosed wih a slip disc and  had to be in bed for a long time .  in the mean time the team continued to work on the concept of a sale to  another state out of the dabhol plant . i have developed the concept whereby  we are now looking at a firm component ( over peak period ) , and an infirm  power sale during the monsoon .  the series of quesions and comments from my team in te attachment below  should help you a bit to get a feel for the proposal . i am currently in  houston and reachable at 281 - 345 - 9870 . i maybe needing a surgery for the  slip disc but am currently on medication hoping that surgery won ' t be needed .  i would like to wis you all a very happy x ' mas and a great new year , and will  catch you in the new year in houston to discuss this wit you further . i can  see that soem structuring help will be needed on this , and would like to get  some help from your end .  regards ,  sandeep .  - - - - - - - - - - - - - - - - - - - - - - forwarded by sandeep kohli / enron _ development on  12 / 25 / 99 10 : 17 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  sandeep kohli  12 / 25 / 99 10 : 06 pm  to : rajesh sivaraman / enron _ development  cc : vivek kejriwal / enron _ development @ enron _ development , shubh  shrivastava / enron _ development @ enron _ development , anshuman  subject : re : firm power sale from phase i - issues  team ,  please find my comments in the word document attached .  please go through this and run the sensitivities and get a good idea of way  to structure thsi . having gone through the comments , i feel that it maybe  necessary to get some help on the structuring side . i will try to get you  some structuring expertise asap . in the mean time , i would like you all to  focus on getting resources together and working this to the next pass .  lets see where we can get with this .  regards ,  sandeep .  rajesh sivaraman  12 / 24 / 99 10 : 06 pm  to : sandeep kohli / enron _ development @ enron _ development  cc : vivek kejriwal / enron _ development @ enron _ development , shubh  shrivastava / enron _ development @ enron _ development , anshuman  subject : firm power sale from phase i - issues  as discussed , please find enclosed a word document which essentially  discusses most of the issues involved with a firm power sale of 50 mw from  phase i , which would have to be sorted out with mseb .  vivek  will put the tariff formula in the next mail )  the tariff structure & the issue list obviously need further refinement ,  before we discuss it with mseb .  looking forward to your comments on both the issue list as well as the tariff  computation .  regards ,  rajesh s\",0\n\"Subject: re : weatherdelta demonstration scheduling  hi all ,  the scheduled wednesday ( nov . 8 ) presentation has to be cancelled . even  though in his earlier message  mike said wednesday is ok , now they will have problem sending people .  i will try to reschedule the presentation to a later date .  best ,  alex  - - - - - - - - - - - - - - - - - - - - - - forwarded by alex huang / corp / enron on 11 / 07 / 2000 07 : 54  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  denton mike on 11 / 06 / 2000 04 : 31 : 19 pm  to : alex . huang @ enron . com  cc : \"\" scanlan , brian \"\" , \"\" rookley , cameron \"\"  subject : re : weatherdelta demonstration scheduling  alex , i ' m glad that we had a chance to talk today about a weatherdelta  overview . the 8 th is not really going to work well for us , due to recent  reschedulings . several members of the weatherdelta team will be in or near  houston on the 14 th and 15 th of november ( i know that you said that week was  tight ) , and could arrange to be in the several weeks following those dates .  i have attached our standard non - disclosure agreement , which we will need to  execute prior to the product demonstration . i have also attached a reprint  of a recent article , describing weatherdelta ' s approach and functionality .  as soon as a meeting can be scheduled , a list of attendees would be very  helpful to us in preparing the appropriate materials .  thank you again ,  michael denton  caminus  212 - 515 - 3600  - caminus nda - unilat . doc  - weatherdelta - wp . pdf\",0\n\"Subject: re : the package  dear vince ,  thank you very much for your e - mail and for acknowledging receipt of my  package .  i am really excited about the opportunity to see you soon . i am available  every  day at the first half of february , except for february 8 after 2 pm . ( i will  give a presentation at the southern methodist university ) .  please let me know if it is more convenient for you to see me in houston and i  will be happy to fly there .  i look forward to hearing from you .  sincerely ,  valery\",0\n\"Subject: re : urgent deadline : rsvp by jan 22 nd : invitation to 2001 energy  financeconference feb . 22 - 23 , 2001 - the university of texas at austin  fyi  - - - - - - - - - - - - - - - - - - - - - - forwarded by karen marshall / hou / ect on 01 / 18 / 2001  03 : 07 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" angela dorsey \"\" on 01 / 18 / 2001 02 : 53 : 59 pm  to :  cc :  subject : re : urgent deadline : rsvp by jan 22 nd : invitation to 2001 energy  financeconference feb . 22 - 23 , 2001 - the university of texas at austin  karen ,  thanks for the extra support in getting the word out . i ' ve had a couple  rsvp ' s from enron .  sincerely ,  angela  - - - - - original message - - - - -  from : karen . marshall @ enron . com [ mailto : karen . marshall @ enron . com ]  sent : wednesday , january 17 , 2001 7 : 59 pm  to : david . haug @ enron . com ; gary . hickerson @ enron . com ; cchilde @ enron . com ;  thomas . suffield @ enron . com ; ben . f . glisan @ enron . com ;  ermes . melinchon @ enron . com ; hal . elrod @ enron . com ; clay . spears @ enron . com ;  kelly . mahmoud @ enron . com ; ellen . fowler @ enron . com ;  kevin . kuykendall @ enron . com ; fred . mitro @ enron . com ;  kyle . kettler @ enron . com ; jeff . bartlett @ enron . com ;  paul . j . broderick @ enron . com ; john . house @ enron . com ;  george . mccormick @ enron . com ; guido . caranti @ enron . com ;  ken . sissingh @ enron . com ; gwynn . gorsuch @ enron . com ; mark . gandy @ enron . com ;  shawn . cumberland @ enron . com ; jennifer . martinez @ enron . com ;  sean . keenan @ enron . com ; webb . jennings @ enron . com ; brian . hendon @ enron . com ;  billy . braddock @ enron . com ; paul . burkhart @ enron . com ;  garrett . tripp @ enron . com ; john . massey @ enron . com ;  v . charles . weldon @ enron . com ; phayes @ enron . com ; ross . mesquita @ enron . com ;  david . mitchell @ enron . com ; brian . kerrigan @ enron . com ;  mark . gandy @ enron . com ; jennifer . martinez @ enron . com ;  sean . keenan @ enron . com ; webb . jennings @ enron . com ; brian . hendon @ enron . com ;  billy . braddock @ enron . com ; garrett . tripp @ enron . com ;  john . massey @ enron . com ; v . charles . weldon @ enron . com ; phayes @ enron . com ;  ross . mesquita @ enron . com ; david . mitchell @ enron . com ;  christie . patrick @ enron . com ; michael . b . rosen @ enron . com ;  cindy . derecskey @ enron . com  cc : elyse . kalmans @ enron . com ; richard . causey @ enron . com ;  sally . beck @ enron . com ; vince . j . kaminski @ enron . com ;  jeffrey . a . shankman @ enron . com ; angela dorsey  subject : urgent deadline : rsvp by jan 22 nd : invitation to 2001 energy  financeconference feb . 22 - 23 , 2001 - the university of texas at austin  the $ 500 registration fee is waived for any enron employee who wishes to  attend this conference because of our relationship with the school .  please  forward this information to your managers and staff members who would  benefit from participating in this important conference . ( note : vince  kaminski is a panellist for the risk management session 3 . )  please note : the deadline for rsvp & hotel reservations is monday ,  january  22 nd don ' t miss this opportunity !  should you have any questions , please feel free to contact me at ext .  37632 .  karen  - - - - - - - - - - - - - - - - - - - - - - forwarded by karen marshall / hou / ect on 01 / 11 / 2001  07 : 38 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" angela dorsey \"\" on 01 / 10 / 2001 03 : 06 : 18 pm  to : \"\" angela dorsey \"\"  cc : \"\" ehud ronn \"\" , \"\" sheridan titman ( e - mail ) \"\"  subject : invitation to 2001 energy finance conference - the university  of  texas at austin  colleagues and friends of the center for energy finance education and  research ( cefer ) :  happy new year ! hope you all had a wonderful holiday season .  on behalf of the university of texas finance department and cefer , we  would  like to cordially invite you to attend our :  2001 energy finance conference  austin , texas  february 22 - 23 , 2001  hosted by the university of texas finance department  center for energy finance education and research  dr . ehud i . ronn and dr . sheridan titman are currently in the process of  finalizing the details of the conference agenda . we have listed the  agenda  outline below to assist you in your travel planning . each conference  session will be composed of a panel discussion between 3 - 4 guest  speakers  on the designated topic .  as supporters of the center for energy finance education and research ,  representatives of our trustee corporations ( enron , el paso , reliant ,  conoco , and southern ) will have the $ 500 conference fee waived .  the conference package includes thursday evening ' s cocktails &  dinner and hotel / ut shuttle service , as well as friday ' s conference  meals ,  session materials and shuttle service . travel to austin and hotel  reservations are each participant ' s responsibility .  a limited number of hotel rooms are being tentatively held at the  radisson  hotel on town lake under the group name \"\" university of texas finance  department \"\" for the nights of thursday , 2 / 22 / 01 and friday , 2 / 23 / 01 ( the  latter evening for those who choose to stay in austin after the  conference ' s conclusion ) . to guarantee room reservations , you will need  to  contact the radisson hotel at ( 512 ) 478 - 9611 no later than monday ,  january  22 nd , and make your reservations with a credit card . please let me know  when you have made those arrangements so that i can make sure the  radisson  gives you the special room rate of $ 129 / night .  please rsvp your interest in attending this conference no later than  january 22 nd to angela . dorsey @ bus . utexas . edu , or ( 512 ) 232 - 7386 , as  seating  availability is limited . please feel free to extend this invitation to  your colleagues who might be interested in attending this conference .  center for energy finance education and research  program of the 2001 energy finance conference  february 22 - 23 , 2001  thursday , feb 22 :  3 : 00 p . m . reserved rooms at the radisson hotel available for  check - in  5 : 30 p . m . bus will pick up guests at the radisson for transport to  ut club *  6 : 00 p . m . cocktails , ut club 9 th floor  7 : 00 p . m . dinner , ut club  8 : 00 p . m . keynote speaker  9 : 00 p . m . bus will transport guests back to hotel  friday , feb 23 :  7 : 45 a . m . bus will pick up at the radisson for transport to ut  8 : 30 a . m . session 1 - real options  panelists : jim dyer , ut ( chair )  sheridan titman , ut  john mccormack , stern stewart & co .  10 : 00 a . m . coffee break  10 : 15 a . m . session 2 - deregulation  panelists : david eaton , ut ( chair )  david spence , ut  jeff sandefer , sandefer capital  partners / ut  peter nance , teknecon energy risk  advisors  11 : 45 a . m . catered lunch & keynote speaker  1 : 30 p . m . guest tour - eds financial trading & technology center  2 : 00 p . m . session 3 - risk management  panelists : keith brown , ut ( chair )  vince kaminski , enron  alexander eydeland , southern co .  ehud i . ronn , ut  3 : 30 p . m . snack break  3 : 45 p . m . session 4 - globalization of the energy business  panelists : laura starks , ut ( chair )  bob goldman , conoco  ray hill , southern co .  5 : 15 p . m . wrap - up  5 : 30 p . m . bus picks up for transport to airport / dinner  6 : 30 p . m . working dinner for senior officers of energy finance  center  trustees  * we have made arrangements to provide shuttle service between the  radisson  hotel and ut during the conference . however , if you choose to stay at an  alternative hotel , then transportation to conference events  will become your responsibility .  * * * * * * * * * * * * * *  angela dorsey  assistant director  center for energy finance education & research  the university of texas at austin  department of finance , cba 6 . 222  austin , tx 78712  angela . dorsey @ bus . utexas . edu  * * * * * * * * * * * * * *\",0\n\"Subject: free latex  go to http : / / www . winedt . com / , select downloads , and download winedt 5 to your  c drive .  on bottom of the same page ( download ) , click on miktex ' s home page ,  click on miktex 2 . 0 , and download all the highlighted zip files . you may also  want to download miktex - 2 . 0 - manual . pdf .  you can then unzip all the files and follow the steps outlined in  miktex - 2 . 0 - manual . pdf to  install winedt and miktex . however , the procedure to \"\" add miktex bin  directory to path \"\"  may not work . it ' s best to manually add the following to your path :  c : \\ texmf \\ miktex \\ bin ;  this software is quite easy to use and very versatile . you can even include  colored picture in your tex document .  best ,  alex\",0\n\"Subject: request for visit and meeting  these guys are looking to come in the first few weeks of august . what is  your availability ?  grant .  - - - - - - - - - - - - - - - - - - - - - - forwarded by grant masson / hou / ect on 07 / 20 / 2000 08 : 18  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  carlos eduardo machado @ enron _ development  07 / 18 / 2000 06 : 28 pm  to : grant masson @ ect  cc : gabriel sanchez - sierra / enron _ development @ enron _ development  subject : request for visit and meeting  hi grant , we met briefly a couple of months ago . i work with pedro in the  colombia office . we are working closely with ecopetrol ( colombia ' s  state - owned oil company ) on a very important deal , and some of their highest  ranking officials ( 3 of them ) will like to visit our head quarters in early  august , to share some ideas on risk management tools ( very general concepts  that can obviously be disclosed ) .  my assumption is that vince and your - self are the perfect people to have the  meeting with . several consulting firms have advice ecopetrol to get in touch  with enron when referring to advance risk management techniques . do you think  this is possible ? please let me know , this means a great deal for this  office , but i also know you guys are extremely busy . thanks ,  carlos e\",0\n\"Subject: re : seismic data via satellite  fyi  - - - - - - - - - - - - - - - - - - - - - - forwarded by bob lee / na / enron on 10 / 16 / 2000 11 : 46 am  - - - - - - - - - - - - - - - - - - - - - - - - - - -  gregory p smith @ ect  10 / 16 / 2000 10 : 06 am  to : bob lee / na / enron @ enron  cc :  subject : re : seismic data via satellite  bob ,  here are a few comments on this note :  1 . deal with seismic company was done by a mark peterson who is still with  enron . i haven ' t caught up with him for details but it had to do with  underwriting ( risk of no sales ) seismic survey . timing is important .  interest may have picked up in new surveys and the survey company decided  that they didn ' t need enron anymore because they no longer saw a risk of no  sales .  2 . 3 - d surveys will happen where there is an abundance of e & p activity or  be spurred on by successes in a given basin . while activity continues in the  gulf of mexico on the shelf , the major discoveries are being found in the  deep water . worldwide , the shallow water plays have been looked at and  worked for years - they were accessible with the extraction technology of the  time . i don ' t think that deep water sedimentation / depositional systems were  completely understood to even begin to try to justify looking in deep water .  concepts have evolved quite quickly . the point is that many deep water  accumulations are incredibly large - billion barrel accumulations . these  sizes are like those accumulations that were found decades ago when companies  were drilling surface structures . the large reserves are needed to pay for  the corresponding incredibly expensive costs of deepwater field development .  i believe that finding and development costs ( $ / barrel ) are at least two to  three times shelf f & d costs in the gulf of mexico . this differential is  probably large with international projects ( and that doesn ' t take into  account political risk ) .  i ' ll look forward to more involvement if and when this project / concept goes  forward . feel free to forward this to all participants .  greg  bob lee @ enron  13 / 10 / 2000 08 . 30  to : gregory p smith / hou / ect @ ect , richard reichardt / enron communications @ enron  communications  cc : vince j kaminski / hou / ect @ ect  subject : seismic data via satellite  i am preparing a summary or our thursday discussions to be used as a  background piece for discussion / brainstorming with oil traders . i will  circulate this for review / correction later today , or , at the latest , monday .  greg , you mentioned that enron had participated in a speculative survey in  the gulf of mexico that was successful . it might be useful to get more info  on this . terms , return realized ( over what time frame ) , why we have not  continued to do this , etc .  also , from your comments , many , if not most of the 3 - d surveys are in deep  water . i read recently that shell , i believe , is participating in a deep sea  drilling / extraction project in the gulf . what oil price is required to make  these kinds of projects viable financially ?  bob lee\",0\n\"Subject: re : trying to find fat tails  naveen ,  i was trying to find \"\" fat tails \"\" . i looked at ng prompt month prices '  log - returns for 5 years 9 months .  on the figure below you can see the comparison of empirical cumulative  probability function with normal  cumulative for this time series ( standardized : mean subtracted , divided by  stdev ) . the effect of fat tails  is not pronounced so much . the \"\" fat tails \"\" effect was much more visible on  your plot when you looked at the  oct - 00 prices log - returns versus my time series of prompt month ' s prices .  the shape of the distribution is different from normal , though , and fits well  with the volatility switching model .  tanya .\",0\n\"Subject: congratulations !  congratulations ! on your promotion !\",0\n\"Subject: fw : understanding & applying financial mathematics to energy  derivatives  dear all ,  thanks for your responses regarding availability and thoughts for the 2001  financial maths course . attached is a word version of the previous outline .  i have also included some comments from previous delegates on what they  would like to see this year . most points address the level we should aim for  and the balance of theory and practical applications . i hope these points  help you to improve on what is already our premier eprm training course .  i would like to confirm the final points and any new biographical details by  thursday , march 22 nd in order to allow us a strong lead time to market the  event . if you have any questions , please call me on 212 925 6990 extension  225 or send me an email .  as a checklist these are the points i would like to clarify :  1 . confirmed availability for venues outlined in the draft programme .  london , 28 & 29 june  new york , 9 & 10 july  houston , 16 ' chris . harris @ innogy . com ' ;  ' eronn @ mail . utexas . edu ' ; ' vince . j . kaminski @ eron . com ' ; ' vkaminski @ aol . com ' ;  ' spyros . maragos @ dynegy . com ' ; ' ds 64 @ cyrus . andrew . cmu . edu ' ;  ' geman @ math . umass . edu '  subject : understanding & applying financial mathematics to energy  derivatives  dear all ,  firstly , i would like to thank you for all your help on the energy & power  risk management 2001 event . the line - up is exceptional and i am extremely  excited about this event .  as the course leaders of our annual financial mathematics training course , i  would like to notify you of the dates for the event this year . we plan to  hold the courses at the following venues on the following dates :  houston - june 21 & 22  london - june 28 & 29  new york - july 9 & 10  i would like to confirm availability for these events and to take on board  any update suggestions for the 2001 course . i do hope that these dates  enable you to participate in this event and i look forward to speaking with  each of you soon .  best wishes ,  paul bristow  - financial maths draft . doc\",0\n\"Subject: my resume  hi , dr . kaminski :  glad to get your reply . here is my resueme . if you wanna know more  about me , please feel free to contact me . thanks .  zhendong xia  georgia institute of technology  school of industrial and systems engineering  email : dengie @ isye . gatech . edu  dengie @ sina . com  tel : ( h ) 404 - 8975103  ( o ) 404 - 8944318  - cv . doc\",0\n\"Subject: fyi = re : color copier  kevin ,  update : one vendor has not provided enough information for me to give you an  \"\" apples to apples \"\" comparison , so i have sent him an urgent e - mail message  for him to provide clarification on some points .  all being well , we will have the info . to you sometime on monday = if the  vendor i mentioned above does not get back to me on monday , i will send you  the quote i have on file from danka .  thanks for your patience , iain . . . . . . . . . . . . . . . . .  iain russell  01 / 19 / 2000 02 : 10 pm  to : kevin g moore / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , mike a roberts / hou / ect @ ect , shirley  crenshaw / hou / ect @ ect , carole rogers / epsc / hou / ect @ ect  subject : re : color copier  kevin ,  i have sent a request to our vendors to provide us with quotes on the color  copier equipment available and will contact you as soon as i receive the bids .  thanks , iain . . . . . . . . . . . . . . . . .  kevin g moore  01 / 19 / 2000 07 : 23 am  to : iain russell / epsc / hou / ect @ ect , vince j kaminski / hou / ect @ ect , mike a  roberts / hou / ect @ ect , shirley crenshaw / hou / ect @ ect  cc :  subject : color copier  hello iain ,  i need your expertise again .  our department is in need of a color  copier .  we need a color copier that can handle  our daily work - load .  this printer will be for the use of research and  the trading floors .  as you may already know we use a lot of maps ,  charts , graphs etc . .  please inform me as soon as possible .  thanks  kevin moore  what i need is cost .\",0\n\"Subject: re : from vicky windsor  dear vince ,  i ' ve attached my resume . thank you so much for your help . i really  appreciate it .  best regards ,  vicky  > from : vince . j . kaminski @ enron . com  > to : vjwindsor @ hotmail . com  > cc : vince . j . kaminski @ enron . com  > subject : re : from vicky windsor  > date : thu , 12 oct 2000 15 : 55 : 57 - 0500  >  >  > vicky ,  >  > please , send me your resume .  >  > i shall forward it to a number of employees of enron in london  > with my strongest recommendation . i shall send you the list  > of names . the resume will make it easier for me to  > identify good targets .  >  > please , make sure you will contact me if there is no reaction .  > people here are very busy and , as you know , things fall through the cracks .  >  > vince  >  >  >  > vince  >  >  >  >  > \"\" vicky windsor \"\" on 10 / 11 / 2000 04 : 49 : 56 am  >  > to : vkamins @ enron . com  > cc :  > subject : from vicky windsor  >  >  > dear vince ,  >  > how are you ? well i hope .  >  > i hope you don ' t mind me writing to you . you may remember that 5 months ago  > i left risk publications and moved to a charity . having been here for only  > a  > few months , i have decided that this job is not for me ( i miss the buzz of  > a  > corporate office ) and i have decided to move back into the corporate  > sector .  >  > because of my previous experience and knowledge of the energy sector , i am  > very interested in moving into this area . i have always thought that it  > would be great to work for enron because it is such a dynamic company and i  > am planning to approach the london office to discuss any opportunities ,  > which might be available . i am particularly interested in product marketing  > and research , although i am very open - minded at the moment . i wondered  > whether you could recommend the right person to speak to in london .  >  > i know that you are incredibly busy , but any help you can give me would be  > fantastic vince .  >  > thanks and best regards ,  >  >  > vicky windsor  >  > get your private , free e - mail from msn hotmail at http : / / www . hotmail . com .  >  > share information about yourself , create your own public profile at  > http : / / profiles . msn . com .  >  >  >  >  >  get your private , free e - mail from msn hotmail at http : / / www . hotmail . com .  share information about yourself , create your own public profile at  http : / / profiles . msn . com .  - cv to vince kaminski 13 oct . doc\",0\n\"Subject: re : class request : xl 97 chart - 574 excel 97 , charting , william smith  approved  vince kaminski  \"\" ecthou - domwebl \"\" on 03 / 31 / 2000 09 : 38 : 08 am  to : vkamins @ enron . com  cc :  subject : class request : xl 97 chart - 574 excel 97 , charting , william smith  your approval is required for william smith to attend the following class .  to grant approval , send a reply to \"\" lpharr @ enron . com \"\" ( notesmail : lerea  pharr / hou / ect @ ect ) .  be sure to include employee ' s name and class number in reply .  excel 97 , charting  session dates & times :  4 / 21 / 2000 8 : 30 : 00 am - 11 : 30 : 00 am  location : eb 572  no show / participant fee : $ 110 . 00  if you have any questions , please call the technology training coordinator at  713 - 853 - 1816 .\",0\n\"Subject: re : associate / analyst super saturday participation  please read the following message regarding the associate and analyst super  saturday program . the message containing the details for each date and the  link to sign - up follows at the bottom of the message . jeff and mike would  appreciate 100 % participation .  thank you .  - - - - - - - - - - - - - - - - - - - - - - forwarded by jeffrey a shankman / hou / ect on 10 / 23 / 2000  02 : 55 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : jana giovannini 10 / 23 / 2000 11 : 54 am  to : jeffrey a shankman / hou / ect @ ect , larry lawyer / enron communications @ enron  communications  cc : charlene jackson / corp / enron @ enron , julie braly / na / enron @ enron  subject : super saturday interviewers  jeff / larry ,  to follow up on my voicemail , the associate and analyst program is in great  need of interviewers for october 28 th and november 4 th super saturdays .  these weekends are the most critical at this time . to date , we are in need  of an additional 38 interviewers for october 28 th and 67 for november 4 th .  in order to have a successful recruiting season , we would greatly appreciate  your assistance in getting more egm executives to participate in this  effort . please contact me at x 39233 with any questions . thanks for your  continued support .  enron north america corp .  from : shelly jones , recruiting manager @ enron  10 / 10 / 2000 06 : 03 pm  sent by : enron announcements @ enron  to : all enron employees north america  cc :  subject : associate / analyst super saturday participation  enron managing directors , vice presidents , directors , and managers who  utilize the associate / analyst pool  as a follow up from a \"\" save the date \"\" email regarding your participation in  the associate and analyst super saturday process , now is the time to select  your dates to attend and participate .  below are the dates for super saturday weekends during the upcoming  recruiting season . if you are houston - based or if you know you will be in  houston on business at the appropriate times please click the link below to  volunteer .  ( when selecting dates please avoid selecting to interview candidates who  attend the schools for which you are a team member . )  associates analysts  october 27 - 28 , 2000 november 3 - 4  thunderbird , ut , georgetown , rice rice , ut , baylor , a & m , ou , florida , lsu ,  uhcl  november 10 - 11 , 2000 november , 17 - 18 , 2000  columbia , stern nyu , ucla , darden , cornell penn , uva , vanderbilt , michigan ,  howard , auc ,  vanderbilt , michigan uhmain  december , 1 - 2 , 2000 december 8 - 9 , 20000  chicago , kellogg , harvard , wharton , mit wellesley , overflow and re - schedules  from previous s / s  friday , december 15 , 2000  carnegie mellon  thank you for your support of the associate and analyst programs .  shelly jones  recruiting manager\",0\n\"Subject: message from s . leppard  hello vince ,  steve leppard sends his apologies as he will be unable to call into the  project update meeting today . steve will be at the enron direct office in  oxford today and tomorrow and said he will send you the summary spreadsheet  at the end of this week .  regards ,  mary ward  tel : + 44 ( 0 ) 20 778 34346  fax : + 44 ( 0 ) 20 778 39062  enroncredit . com\",0\n\"Subject: enron and the new economy value research lab  gentlemen :  enron is exploring the possibility of becoming involved in a research  endeavor called the new economy value research lab . the lab is the result of  a joint effort between mit ' s sloan school of management and arthur andersen  ( aa ) . its purpose is to develop \"\" quantitative valuations of the intangible  assets wall street finds increasingly important in the new economy \"\" ( business  week , 2 / 7 / 00 ) . clearly , as enron continues to shift from a hard asset to  intangible asset based organization , the question of \"\" how to \"\" accurately and  appropriate measure and value our intangible assets is becoming increasingly  important .  last week , steve kean , vince kaminski , marie hejka , and myself met with a  team from aa , the deputy dean of the sloan school , and mit ' s lead  accounting / finance professor to discuss the intent of the lab , expected  outcomes , and how enron may be involved . post that meeting , the decision was  made to continue to explore participation in the lab . enron now needs to 1 )  define our corporate measurement and valuation process needs , and 2 ) identify  value attributes important to enron and the industries in which we operate .  once defined , a follow up meeting will be held with mit and next steps will  be determined .  your expertise and assistance could significantly impact the inputs and  outcomes of these next steps . please schedule time on tuesday august 1 from  2 : 00 to 3 : 30 to attend the next meeting , during which we will begin to  identify needs and define value attributes . location will be eb 49 c 4 . please  notify me if you are unable to attend .  lastly , to assist with preparation for this meeting , i am attaching notes  from a recently published book entitled cracking the value code : how  businesses are creating wealth in the new economy ( may 2000 , boulton , libert ,  samek - arthur andersen ) .  should you like more information on the lab , previous meeting , book or other ,  please feel free to contact me .  i look forward to meeting you .  regards ,  amy oberg\",0\n\"Subject: forwarded email  - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin kindall / corp / enron on 11 / 20 / 2000  04 : 47 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  kevin kindall  11 / 07 / 2000 03 : 12 pm  to : jean eisel  cc :  subject : re : recruiting  good afternoon . packing emails - - its just my style : )  currently , it is my understanding that we would like to interview the comp .  fin . students during the same period that we interview the mba ' s .  tentatively speaking , one schedule should be sufficient . i will attempt to  produce an official job description shortly .  kristen is out of town for the remainder of the week , so her response to any  inquiries may be delayed . her contact info : kristin . gandy @ enron . com 713  345 3214  regarding the satellite program , vince is interested in the ecommerce  program . we think that it would be easier to keep the program full as  compared to the comp . fin . program .  it was a pleasure to be back in pittsburgh and i enjoyed meeting all the  students from this year ' s comp . fin . class . i look forward to seeing you in  a few weeks .  - kevin kindall  jean eisel on 11 / 06 / 2000 03 : 34 : 05 pm  to : kevin . kindall @ enron . com  cc : sgould @ andrew . cmu . edu  subject : re : recruiting  hi kevin  wow you sure do pack one e - mail .  i will try to answer questions . . . after each of you . . . look in the email  for answers .  - - on monday , november 06 , 2000 , 2 : 39 pm - 0600 kevin . kindall @ enron . com wrote :  > hello . it was a pleasure to come back to cmu , and i enjoyed  > interacting with the students . vince k . has expressed interest in  > interviewing the computational finance students . enron will conduct first  > round interviews with the mba students in december , and would like to set  > up seperate interviews for the comp . fin . students . enron would like to  > interview all the pittsburgh based comp . fin students , and we need to  > select a date and a time .  we are excited that you want to interview the comp finance students .  do you want to do it in dec . or before ? let me know what best suits you .  since there are only 16 individuals in the pittsburgh area . . . we should be  able to accomodate you . . . would you want one or two schedules . . ?  what is the formal protocol in such matters ?  >  all you need to do is let me know some ideal dates . . . and you send a job  description and names of the students you want to interview .  we will try to be as accomodating as possible .  > enron is also interested in the ecommerce students as we have  > ecommerce initiatives underway . it is my understanding that kristen  > gandy will be the contact for such activities .  if you can send me an e - mail address for kristen , i can get this strating  asap .  >  > regarding a houston based satellite program , vince needs a proposal  > in writing . would you be so kind as to send one ?  what program is vince interested in having a satellite program ? when he was  here he seemed less intererted in comp finance and more interested in  e - commerce .  i sent a note to michael shamos and tridas discussing this .  let me know which program and i will see if we can work anything out ?  > thanks so much , and i look forward to seeing you again in a few  > weeks .  >  thanks kevin for you speedy response .  >  >  >  >  jean e . eisel , ph . d .  associate dean , admissions , coc and alumni relations  gsia  carnegie mellon university  pittsburgh , pa 15213  412 - 268 - 2277  412 - 268 - 4146 ( fax )  currently in the news : carnegie mellon university mba program ranked 14 th  in business week ' s list of the best graduate schools of business in the  united states . \",0\n\"Subject: re : waco visit  great . why don ' t you plan on getting here by 3 : 00 p . m . ( or sooner ) . we ' ll  do a little seminar at 4 for the faculty ( perhaps outlining your thoughts  on the paper we are preparing ) . we ' ll do the class 6 - 7 : 30 or so ( i ' ll get  you to your hotel for i teach until 10 pm ) . then we ' ll put in time tue  working on the paper .  john  at 03 : 22 pm 10 / 10 / 00 - 0500 , you wrote :  >  > john ,  >  > per our discussion , nov 13 is fine .  >  > vince  >  >  >  >  >  >  > \"\" john d . martin \"\" on 10 / 09 / 2000 05 : 27 : 30 pm  >  > to : vkamins @ enron . com  > cc :  > subject : waco visit  >  >  > vince ,  >  > i have penciled you in for nov 13 th for my class . does this work for you ?  > this is a monday and i would suggest you come up monday afternoon , you can  > give a brief talk to our department late in the afternoon , and then you can  > talk to my ex mbas at 6 p . m . for an hour or so . i ' ll get you to the hotel  > for the evening and we can work on the paper tuesday morning . i recommend  > this mon noon through tue noon arrangement since i will be out of town the  > weekend before the 13 th . if this needs reshuffling let me know . we ' ll  > make it work .  >  > i look forward to talking with you later this week along with mark palmer .  >  > john  >  >  > john d . martin  > carr p . collins chair in finance  > finance department  > baylor university  > po box 98004  > waco , tx 76798  > 254 - 710 - 4473 ( office )  > 254 - 710 - 1092 ( fax )  > j _ martin @ baylor . edu  > web : http : / / hsb . baylor . edu / html / martinj / home . html  >  >  >  >  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: summer intern  we can hire the person as a summer intern  directly ( outside the a & a pool ) .  shirley , please arrange a phone interview  as in the case of other candidates osman found .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 26 / 2000  09 : 09 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  osman sezgen @ ees  04 / 25 / 2000 05 : 41 pm  to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect  cc :  subject : summer intern  fyi .  osman  - - - - - - - - - - - - - - - - - - - - - - forwarded by osman sezgen / hou / ees on 04 / 25 / 2000 05 : 39  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  amyn saleh on 04 / 10 / 2000 06 : 11 : 50 pm  to : \"\" osman sezgen \"\"  cc :  subject : re : job opportunities at enron  hi osman ,  hope you are doing well . thank you for replying to my phone call . i have  attached my resume to this email and would be extremely grateful if you  could pass it around to hiring managers . thank you and i look forward to  hearing from you .  regards ,  amyn saleh  - amyn saleh ' s resume . doc  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  amyn saleh  ( 510 ) 644 - 9642  amyn @ uclink 4 . berkeley . edu  icq : 51792087\",0\n\"Subject: re : congratulations  thanks vince . congrats also , - it seems overdue in your case !  r  vince j kaminski  11 / 01 / 2000 15 : 54  to : richard lewis / lon / ect @ ect  cc :  subject : congratulations  richard ,  congratulations . well deserved . i am very happy your contribution to the  company has been recognized .  vince\",0\n\"Subject: re : exmar deal  dear vince ,  this is the final version of the dash that was presented to jeff and joe on  friday . please let me know if i can be of more help .  best regards ,  farhad ahad  vince j kaminski @ ect  05 / 16 / 2000 01 : 34 pm  to : farhad ahad / corp / enron @ enron  cc : john sherriff / lon / ect @ ect , vince j kaminski / hou / ect @ ect , stinson  gibner / hou / ect @ ect , david gorte / hou / ect @ ect  subject : exmar deal  farhad ,  please , cc - mail to john sherriff in london the dash of the exmar transaction  when it becomes official .  vince\",0\n\"Subject: re : 2 - survey / information email 5 - 7 - 01  outlook migration team @ enron  05 / 04 / 2001 03 : 26 pm  to : alex huang / corp / enron @ enron , amitava dhar / corp / enron @ enron , anita  dupont / na / enron @ enron , bob lee / na / enron @ enron , chonawee  supatgiat / corp / enron @ enron , elena chilkina / corp / enron @ enron , gwyn  koepke / na / enron @ enron , jaesoo lew / na / enron @ enron , jason sokolov / hou / ect @ ect ,  jose marquez / corp / enron @ enron , kate lucas / hou / ect @ ect , kenneth  parkhill / na / enron @ enron , kevin g moore / hou / ect @ ect , lance  cunningham / na / enron @ enron , leann walton / na / enron @ enron , martin  lin / hou / ect @ ect , maureen raymond / lon / ect @ ect , mike a roberts / hou / ect @ ect ,  nelson neale / na / enron @ enron , paulo issler / hou / ect @ ect , pinnamaneni  krishnarao / hou / ect @ ect , rabi de / na / enron @ enron , rakesh  bharati / na / enron @ enron , sandeep kohli / enron _ development @ enron _ development ,  sevil yaman / corp / enron @ enron , shirley crenshaw / hou / ect @ ect , sofya  tamarchenko / na / enron @ enron , stinson gibner / hou / ect @ ect , tanya  tamarchenko / hou / ect @ ect , tom barkley / na / enron @ enron , tom  halliburton / corp / enron @ enron , vince j kaminski / hou / ect @ ect , william  smith / corp / enron @ enron , youyi feng / na / enron @ enron , zimin lu / hou / ect @ ect , alan  muntz / npng / enron @ enron , anita swanson / npng / enron @ enron , bambi  heckerman / npng / enron @ enron , christopher burns / npng / enron @ enron , darla  steffes / npng / enron @ enron , geneva patterson / npng / enron @ enron , jerry  boston / npng / enron @ enron , jody warner / npng / enron @ enron , john  freeman / npng / enron @ enron , judith weakly / npng / enron @ enron , laurie  willemyns / npng / enron @ enron , leon schneider / npng / enron @ enron , loren  charbonneau / npng / enron @ enron , ray neppl / npng / enron @ enron , scott  coburn / npng / enron @ enron , alliece morris / ots / enron @ enron , etsweb @ enron , joe  zhou / fgt / enron @ enron , ladonna dervin / ots / enron @ enron , larry  hill / fgt / enron @ enron , max brown / ots / enron @ enron , patty  hermanek / fgt / enron @ enron , peter lu / et & s / enron @ enron , randy  cantrell / gco / enron @ enron , richard abramowicz / et & s / enron @ enron , rick  craig / ots / enron @ enron , robert fugel / et & s / enron @ enron , tina  dunnaway / fgt / enron @ enron , wendy koh / et & s / enron @ enron , anne  bike / corp / enron @ enron , barry tycholiz / na / enron @ enron , carli  smith / na / enron @ enron , doug fletcher / enron _ development @ enron _ development ,  jacquelyn matthews / na / enron @ enron , janelle  russell / enron _ development @ enron _ development , joanne smith / corp / enron @ enron ,  kayla bruzzese / na / enron @ enron , michael j beyer / hou / ect @ ect , michael j  miller / enron communications @ enron communications , michelle  lincoln / enron _ development @ enron _ development , shelly jones / hou / ect @ ect , susan  huston / hr / corp / enron @ enron , zachary sampson / na / enron @ enron , alison  smith / nyc / mgusa @ mgusa , bernie penner / nyc / mgusa @ mgusa , janet  vala - terry / nyc / mgusa @ mgusa , lilia penagos / nyc / mgusa @ mgusa , patricia  benington / nyc / mgusa @ mgusa , jack netek / enron communications @ enron  communications  cc :  subject : 2 - survey / information email 5 - 7 - 01  current notes user :  to ensure that you experience a successful migration from notes to outlook ,  it is necessary to gather individual user information prior to your date of  migration . please take a few minutes to completely fill out the following  survey . when you finish , simply click on the ' reply ' button then hit ' send '  your survey will automatically be sent to the outlook 2000 migration mailbox .  thank you .  outlook 2000 migration team  full name : vince j kaminski  login id : vkamins  extension : 3 - 3848  office location : ebl 962  what type of computer do you have ? ( desktop , laptop , both ) desktop , laptop  do you have a pda ? if yes , what type do you have : ( none , ipaq , palm pilot ,  jornada ) palm pilot  do you have permission to access anyone ' s email / calendar ? no  if yes , who ?  does anyone have permission to access your email / calendar ? shirley crenshaw ,  anita dupont  if yes , who ?  are you responsible for updating anyone else ' s address book ? no  if yes , who ?  is anyone else responsible for updating your address book ? no  if yes , who ?  do you have access to a shared calendar ? no  if yes , which shared calendar ?  do you have any distribution groups that messaging maintains for you ( for  mass mailings ) ? no  if yes , please list here :  please list all notes databases applications that you currently use :  in our efforts to plan the exact date / time of your migration , we also will  need to know :  what are your normal work hours ? from : 7 : 30 to : 6 : 30  will you be out of the office in the near future for vacation , leave , etc ? no  if so , when ? from ( mm / dd / yy ) : to ( mm / dd / yy ) :\",0\n\"Subject: see page 1  best regards ,  jhherbert  - gd . pdf\",0\n\"Subject: enron : wefa luncheon may 1  lloyd :  vince asked me to forward this to you and invite you to the wefa presentation  on may lst at 11 : 00 am and then go to lunch with the group . the presentation  will be in 49 cl .  please let me know if you will be able to attend .  thanks !  shirley  3 - 5290  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 24 / 2001  03 : 41 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  vasant shanbhogue  04 / 11 / 2001 01 : 41 pm  to : shirley crenshaw / hou / ect @ ect  cc :  subject : enron : wefa luncheon may 1  shirley ,  i would like to attend this presentation and go to the luncheon .  thanks ,  vasant  - - - - - - - - - - - - - - - - - - - - - - forwarded by vasant shanbhogue / hou / ect on 04 / 11 / 2001  01 : 41 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  04 / 11 / 2001 12 : 36 pm  to : lance cunningham / na / enron @ enron , vasant shanbhogue / hou / ect @ ect , alex  huang / corp / enron @ enron , sevil yaman / corp / enron @ enron  cc : shirley crenshaw / hou / ect @ ect , vince j kaminski / hou / ect @ ect  subject : enron : wefa luncheon may 1  would you like to attend the presentation and join me for lunch  with wefa .  any other suggestions re attendance .  please , let shirley know .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 11 / 2001  12 : 36 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" peter mcnabb \"\" on 04 / 11 / 2001 11 : 52 : 47 am  to :  cc : \"\" kemm farney \"\"  subject : enron : wefa luncheon may 1  dear vince  thanks for your voicemail and delighted to have you confirm lunch on may 1 .  kemm farney the head of wefa ' s electric power services will be travelling  with me this time . i expect there may be other enron colleagues that may  care to join us for lunch so don ' t hesitate to invite as you see fit . for  reservations purposes , perhaps you arrange to let me know numbers .  kemm would also be prepared to informally present our current power outlook  to a larger group at 11 : 00 , if this would be of interest .  as you know , these types of presentations are part of all your wefa energy  retainer package . i will also plan to update you with respect to our current  multi client study schedule for the remainder of the year .  regards , peter  peter a . mcnabb  vice president energy , north america  wefa inc .  2 bloor st . w .  toronto , canada  m 4 w 3 rl  416 - 513 - 0061 ex 227  - 2001 energy brochure . doc  - wefaenergy _ factsheet for energy scenarios 2001 . doc\",0\n\"Subject: re : clayton vernon  i have some concerns regarding vernon being able to transfer even if he is  temporarily successful with deliverables defined for him . according to enron  policy , an employee can only transfer if he is in satisfactory standing or  better . this is to prevent problem employees being moved from one  organization to the another . this sounds like a \"\" work ethic \"\" issue to me and  the chances that it would continue in another department are great even if he  is temporarily successful . but if kevin presto knows the situation and he  still wants vernon in the end , i will push for an exception as this satisfies  our obligation to be forthright . please keep me informed of clayton ' s  progress as time goes on so we do not get criticized for passing on a problem  employee . thanks .  sheila  vince j kaminski  07 / 28 / 2000 08 : 35 am  to : kevin m presto / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , sheila walton / hou / ect @ ect , vasant  shanbhogue / hou / ect @ ect  subject : clayton vernon  kevin ,  vasant and i talked to clayton about his request for transfer . clayton  received a conditional approval contingent  upon completion of the current project he works on . vasant will formulate  exact definition of the deliverables  and we will hold clayton to it . if he fails to deliver the request for  transfer will be rejected . anything else  would be highly demoralizing to everybody .  clayton has so far produced exactly zero ( no single output was delivered )  though he was advertising  the projects inside and outside the group as completed . i want you to be  aware of it , because i have  serious doubts regarding clayton ' s integrity .  vince\",0\n\"Subject: re : tony hamilton  tony has already done this . . . . . . . . . .  desleigh langfield  04 / 04 / 2001 09 : 46 am  to : kevin g moore / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , mike a roberts / hou / ect @ ect , shirley  crenshaw / hou / ect @ ect  subject : re : tony hamilton  thanks , can you tell tony to come to hr reception on monday morning at 8 . 30 am  for induction which will last until midday  kevin g moore  04 / 04 / 2001 15 : 41  to : desleigh langfield / lon / ect @ ect , vince j kaminski / hou / ect @ ect , mike a  roberts / hou / ect @ ect , shirley crenshaw / hou / ect @ ect  cc :  subject : re : tony hamilton  tony hamilton reports to mike roberts in the houston office .  vince kaminski will answer these questions for you at any  given time .  tony ' s start date in london will be april 9 th  thanks  kevin moore  desleigh langfield  04 / 04 / 2001 08 : 29 am  to : kevin g moore / hou / ect @ ect  cc :  subject : tony hamilton  kevin  tani nath who heads up the structuring and research teams rang this morning  to get more information on tony .  can you tell me who he reports to in houston and whether that person will  continue to manage him remotely ?  what cost centre he should be charged to ? whose headcount he appears on , and  for what group he will be providing services for , tani was unsure on all of  the above and wants clarification .  also can you confirm his start date in london  thanks  desleigh  - - - - - - - - - - - - - - - - - - - - - - forwarded by desleigh langfield / lon / ect on 04 / 04 / 2001  14 : 27 - - - - - - - - - - - - - - - - - - - - - - - - - - -  desleigh langfield  06 / 03 / 2001 13 : 40  to : steven leppard / lon / ect @ ect  cc :  subject : tony hamilton  steve  all sorted and we will check later in the week with it that all is okay .  can you please tell your assistant to organise a desk for tony , no rush  obviously  thanks  desleigh  - - - - - - - - - - - - - - - - - - - - - - forwarded by desleigh langfield / lon / ect on 06 / 03 / 2001  13 : 38 - - - - - - - - - - - - - - - - - - - - - - - - - - -  desleigh langfield  06 / 03 / 2001 13 : 38  to : european resolution center / lon / ect @ ect  cc : kevin g moore / hou / ect @ ect , steven leppard / lon / ect @ ect , anna  seymour / lon / ect @ ect  subject : tony hamilton  hi  tony is a uk employee who starts next monday 12 th march 2001 , we have done a  quick start in nest today for him .  tony will be working his first month in the houston office , however we still  need to set up a log on and notes account here .  can you please send the log on and password for both accounts to kevin as he  will be meeting with tony on monday morning in the houston office .  tony will not have a desk arranged for him until he comes back in  approximately a month so no actual pc is necessary until then .  one question - with a uk log on and notes account , will tony be able to  access these from houston ? if it ' s complicated can you please let kevin know  how to do this .  any problems let me know  thanks  desleigh\",0\n\"Subject: re : site license for power world  richard et al  under the new electricity trading arrangments ( neta ) in the uk and looking  forward i think it will be increasingly important in modelling market  behaviour and transmission related costs to have some form of system model  incorporating opf and atc .  therefore , in principle i am happy to support option 3 and to pay a 1 / 3 share  of the cost . however , before i commit to this particular package , i would  like to be comfortable that the generic powerworld software could be suitably  customised to capture the special features of neta .  i understand marco verreschi who initiated interest from our end is pursuing  this with martin lin ( research , houston ) . however , due to commitments next  week , and my desire to see powerworld in action etc it is likely to be the  following week before he and i can say \"\" lets do it \"\" .  michael wilks  manager , uk power analytics  enron europe ltd  tel : ( 44 ) 207 783 2405  richard lewis @ ect  05 / 01 / 2001 15 : 10  to : michael wilks / eu / enron @ enron  cc :  subject : site license for power world  can you recommend or otherwise this software and whether we should pay a  third share of the cost ?  r  - - - - - - - - - - - - - - - - - - - - - - forwarded by richard lewis / lon / ect on 05 / 01 / 2001 15 : 12  - - - - - - - - - - - - - - - - - - - - - - - - - - -  lance cunningham @ enron on 20 / 11 / 2000 20 : 02 : 22  to : vince j kaminski / hou / ect @ ect , richard lewis / lon / ect @ ect , tim  belden / hou / ect @ ect , tim . heizenrader @ enron . com , kevin m presto / hou / ect @ ect ,  george hopley / hou / ect @ ect  cc :  subject : site license for power world  gentleman ,  kevin presto concurred on the purchase of a site license as recommended by  vince . what are the thoughts of others ? i am available to demo the package  if others would like to see it .  thanks ,  lance  - - - - - - - - - - - - - - - - - - - - - - forwarded by lance cunningham / na / enron on 11 / 20 / 2000  01 : 51 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski @ ect  11 / 10 / 2000 09 : 16 am  to : vince j kaminski / hou / ect @ ect , richard lewis / lon / ect @ ect , tim  belden / hou / ect @ ect , tim . heizenrader @ enron . com , kevin m presto / hou / ect @ ect ,  george hopley / hou / ect @ ect  cc : lance cunningham / na / enron @ enron  subject : site license for power world  gentlemen ,  i recommend that we purchase this package and split the cost 3 ways between 3  power trading desks .  i think that we should go for option 3 ( ~ $ 15 , 000 ) .  lance cunningham in my group looked at this software package and found it  very useful for modeling transmission problems .  please , feel free to ask him for technical details in support of this  recommendation .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 11 / 10 / 2000  09 : 17 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  lance cunningham @ enron on 11 / 09 / 2000 06 : 15 : 14 pm  to : vince j kaminski / hou / ect @ ect  cc : vasant shanbhogue / hou / ect @ ect  subject : site license for power world  vince ,  we have three options to increase our availability across enron for the power  world load flow software .  option 1 , upgrade to a site license for the load flow software only . price  $ 9 , 990 . 00  this would give all of enron the ability to perform load flows , but not  determine marginal cost or available transfer capacity ( atc ) because only the  optimal power flow ( opf ) version can perform that task .  option 2 , site license for the load flow and purchase 1 opf package for  walter coffer ' s group . price $ 11 , 240 .  this would give all of enron the ability to perform load flows and one other  group the ability to determine marginal cost and atc .  option 3 , site license for load flows , opf and atc . price $ 14 , 990 . 00  this would give all of enron the ability to perform load flows , marginal  cost , and atc .  regards ,  lance\",0\n\"Subject: re : raptors  no  - - - - - original message - - - - -  from : bharati , rakesh  sent : thursday , march 15 , 2001 4 : 42 pm  to : port , david  cc : kaminski , vince  subject : raptors  hi david ,  i would like to check with you just to be on the safe side . i left our last  meeting with the impression that only naveen and i would be working together  on the raptors . however , i heard from naveen earlier today and he wanted to  include thomas ( mark , i presume ) in the meeting as well . i would like to  ensure if that is indeed your intention . please advise . thanks .  rakesh\",0\n\"Subject: re : grades  pam ,  another group :  stuart hamel  jed howard  brian nelson  b +  vince  pamela vande krol castro on 05 / 03 / 2001 08 : 58 : 24 am  to : vince . j . kaminski @ enron . com  cc :  subject : re : grades  got them - thank you ! - pvc  at 05 : 21 pm 5 / 2 / 01 - 0500 , you wrote :  > pam ,  >  > another team :  >  > elena chilkina  > robert j . guadette  > joseph helms  > kenneth jett  > todd litton  > mark westmoreland  >  >  > grade : a -  >  >  > vince kaminski\",0\n\"Subject: re : mg metals : summary of var methodology and current status  dear all ,  anjam and myself had a highly productive and informative set of meetings  with andreas barkchis of mg metals ny on thursday 20 th july in the ny  office . firstly we should say \"\" thanks \"\" to andreas for being so helpful in  addressing out numerous requests for information - we look forward to  establishing a solid working relationship with him going forward .  find below a summary of version _ 1 a for initial rough calculation of mg  metal ' s var .  also anjam , kirstee ( from london side ) and cantekin , grant , vince and myself  ( houston side ) have been working for last 2 days on the spreadsheet var  model .  the current status of this effort and a plan for future progress is  summarized in the enclosed document :  v @ r methodology for mg metals positions  version _ 1 a  introduction  this document describes the initial rough model for calculations  value - at - risk for mg metals . this model will be implemented in a spreadsheet ,  which will serve as a prototype for the risktrac implementation .  risk factors  the following positions represent most of mg metal \u0001 , s risk and will be covered  by version _ 1 a :  - base metals \u0001 , positions including :  - aluminium ;  - copper ;  - gold ;  - lead ;  - nickel ;  - silver ;  - tin ;  - zinc ;  risk related to these positions will be quantified by simulating forward  prices for each metal .  - copper concentrate ;  risk related to these positions will be quantified by simulating tc charges .  - cocoa beans ;  risk related to these positions will be quantified by simulating forward  prices for cocoa beans .  therefore these 10 curves will drive the risk : price curves for aluminium ,  copper , gold , lead , nickel , silver , tin , zinc and cocoa beans plus tc curve  for copper concentrate .  assumptions and simplifications :  - for each metal we are going to use a single price curve or all types of  products ( physical , financial , lme traded , comex traded , scrap , alloy , stock ,  etc . ) ;  - delta , gamma approach for risk on options \u0001 , positions ;  components required to implement v @ r model :  - current forward prices available from mercur ;  - current implied volatilities available through reuters ;  - current positions from mercur ;  - history of prices required to calculate factor loadings and correlations  across commodities ;  methodology  version _ 1 a will be based on risk matrix approach . we will calculate principal  components for each metal and cocoa beans to take in account the correlations  along the term structure . we will also calculate the correlations across  commodities based on prompt month prices history for last 3 months .  portfolio hierarchy  each position will be assigned to one of the following portfolios under the  whole portfolio agg - metals :  - mg metal  - mg metal  - mg metall recycling gmbh , ffm ;  under each of these sub - portfolio there will be the following sub - portfolios :  - comex ;  - frame contract ;  - lme ;  - lme alloy ;  - lme metal index ;  - option call ;  - option put ;  - physical ;  - physical alloy ;  - physical real ;  - physical scrap ;  - price part . ;  - prov . billing ;  - stock ;  - stock alloy ;  - stock comex ;  - stock physical ;  - stock scrap ;\",0\n\"Subject: replied resume  i am forwarding a resume of one candidate who is very  persistent and quite aggressive .  please , take a look at him .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 06 / 23 / 2000  08 : 18 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  eric hilton on 06 / 22 / 2000 11 : 20 : 11 pm  to : vince . j . kaminski @ enron . com  cc :  subject : replied resume  mr . kaminski ,  ? ? ? ? ? ? ? i sent an actual resume via the postal service . i guess you never  received it . thank you for your patience .  a few features i possess that suggest that i may be a representative your  well established company would value are :  ? seven - plus years as a manager / junior executive of logistics in a fast - paced ,  demanding , and constantly evolving retail industry .  experience in effectively developing and implementing policies and tasks  under marketing , logistics , brand management , and best practices .  ba degree in marketing with a 3 . 88 gpa from the university of san moritz ,  london england .  extensive knowledge in management with the ability to effectively manage  multiple tasks , as well as multiple associates , to achieve specific goals in  research and brand management within the company ' s deadline .  seven - plus years effectively implementing and teaching dynamic and successful  customer service .  with my current employer , i am in charge of logistics research and  reports / data collection , as well as responsible for developing new and  successful ideas and implementing them under constantly evolving brand  management and best practices .  traveling to london , england and extensively finishing my degree indicates  that i am willing to go the \u0001 & extra mile \u0001 8 to achieve and obtain my goals .  perhaps , mr . kaminiski , ? i am an associate you need at your well - respected  company . i would be very happy to meet with you , at your convenience , to  discuss the possibility of putting my education and experience to work for  enron .  thank you for your consideration . i look forward to hearing from you . i have  attached my resume to this email formatted under microsoft word .  warmest regards ,  eric hilton  ?  - my resume\",0\n\"Subject: iafe membership  shirley ,  please , renew my membership .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 12 / 07 / 2000  10 : 41 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  main @ iafe . org on 12 / 05 / 2000 03 : 47 : 45 pm  to :  cc :  subject : iafe membership  dear colleague :  we are pleased to report that we had a very exciting and productive year  with dozens of activities around the world . as we enter our 10 th year of  operations , the iafe has additional membership options available to you .  please take a moment to look at the attached membership form with the 2001  rate schedule . based on member requests , a premium membership is now being  offered that includes the annual conference at a 30 % discount , the financial  engineer of the year dinner , plus a subscription to the journal of  derivatives ( jod ) . the full membership remains as in previous years . the new  regular membership includes all membership benefits except jod . membership  is based on the calendar year january 1 - december 31 , 2001 .  membership is also available on our secured membership registration form at  our website http : / / www . iafe . org / about / join . ihtml . while on our website ,  please take a moment to visit our calendar listing upcoming events for the  new year .  if you have any questions please don ' t hesitate to contact me at  main @ iafe . org .  regards ,  donna jacobus  iafe office manager  - 2001 membership application . pdf\",0\n\"Subject: re : trip to san francisco 3 / 19 - 3 / 20 / 00  bryan ,  i talked to vasant about the model review in london . he thought that he could  accomplish this from houston ,  but i think direct communication makes things much easier . i think his trip  to london  makes a lot of sense . kmv confirmed the meeting on the 20 th . we hope to get  more information about  the scope of their model and assess its the applicability to your business .  vasant , after a few days of immersion in your operations , will be able to  assess better the usefulness of the  model .  vince  bryan seyfried  02 / 29 / 2000 03 : 35 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : trip to san francisco 3 / 19 - 3 / 20 / 00  vince - it is highly unlikely that i can make the trip but i spoke with  vasant today and he will try to get to london beforehand and will have good  idea of our needs . hopefully this will not cause too many problems .  bs  shirley crenshaw  29 / 02 / 2000 15 : 57  to : william s bradford / hou / ect @ ect , bryan seyfried / lon / ect @ ect , vasant  shanbhogue / hou / ect @ ect , robert . rudy @ kmv . com  cc :  subject : trip to san francisco 3 / 19 - 3 / 20 / 00  hello all :  attached is a copy of vince kaminski ' s itinerary for the trip to san francisco  on march 20 , 2000 .  please make your plans accordingly . if you need anything else , please  let me know  thanks !  shirley  adm . coord .  713 / 853 - 5290\",0\n\"Subject: black table for conference room and file cabinet  hi reggie :  conference room eb 19 c 2 is in need of a round black table to hold the  telephone . is there one available ?  also we would like a two - drawer lateral file cabinet for eb 19 c 2 .  co . # 0011 , rc # 100038 .  thanks and have a great day !  shirley  3 - 5290\",0\n\"Subject: hello from charles shen at williams co .  dear vince :  how are you ? i am not sure whether you still remember  me , we met in a conference last year in houston . after  having been working for williams for about two years ,  now i am ready to make a move . i have heard enron is a  great company , i am wondering whether there is any  opportunity for me , either in research group or in  structure group  here is brief description about myself : right after i  got my ph . d . on finance and econometrics from duke  university in 1998 , i joined williams energy trading  company as a quantitative analyst . now i am lead quant  and in charge of the quantitative research group with  7 highly talented people . i have done extensive  research and modeling about electricity ,  load - following deal and tolling deals .  if you need any additional information , please feel  free to call me at 918 - 409 - 4308 . i look forward to  hearing from you soon , thank you .  sincerely ,  charles  do you yahoo ! ?  yahoo ! photos - 35 mm quality prints , now get 15 free !  http : / / photos . yahoo . com /\",0\n\"Subject: re : turkey  the group to whom this message was sent is rac in london , related to london ' s  focus on enron ' s equity interest in opet ( $ 18 million exposure ) .  gwyn  - - - - - - - - - - - - - - - - - - - - - - forwarded by gwyn koepke / na / enron on 04 / 19 / 2001 06 : 59  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  gwyn koepke  04 / 19 / 2001 06 : 58 pm  to : suryan wirya simunovic / lon / ect @ ect  cc : gkoepke @ enron . com @ ect , jolyon manning / eu / enron @ enron , padmesh  thuraisingham / lon / ect @ ect , maureen raymond / lon / ect @ ect , mitra  mujica / enron @ enronxgate  subject : re : turkey  suryan ,  please find attached a brief on turkey , per your request . as stated in the  brief , this is a preliminary forecast and is subject to change upon further  government announcements related to external financing and monetary / fx  policies .  gwyn koepke  suryan wirya simunovic @ ect  04 / 19 / 2001 10 : 48 am  to : gkoepke @ enron . com  cc : jolyon manning / eu / enron @ enron , padmesh thuraisingham / lon / ect @ ect  subject : turkey  gwyn ,  paddy and i spoke to you earlier today regarding eel ' s turkish investment .  you mentioned that you could send us a brief report on what has been going on  in turkey in the last couple of weeks . as we are having a meeting tomorrow  am could you still send us this report before business closing houston to  myself , paddy and jolyon manning .  thank you  suryan wirya simunovic\",0\n\"Subject: career opportunity  dear mr . kaminski ,  ?  i will forward my resume . i am looking for a trading position . i have three  years of market - making experience in illiquid markets , which i beleive is  highly relevant . but it seems now that getting out of my contract is not an  alternative anymore . ? i learned yesterday that my firm finally decided to  grant me what i wanted . . . a new desk . sometimes i feel that when you become  a trader you come to trade everything , including your career .  ?  ? i thank you for your time and consideration .  ?  pierre  ?  ?\",0\n\"Subject: resume for insurance candidate  hi vince ,  ` this person was recommended by prof . macminn , and he is interested .  he seems to have the quantitative and insurance background . i am going to  call him again .  would you like to talk with him on the phone ?  vasant  - - - - - - - - - - - - - - - - - - - - - - forwarded by vasant shanbhogue / hou / ect on 01 / 06 / 2000  08 : 42 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" spudeck , ray e . ms - res \"\" on 12 / 29 / 99 02 : 24 : 09 pm  to : vasant shanbhogue / hou / ect @ ect  cc :  subject : my resume  vasant ,  i enjoyed our telephone conversation this morning . from our conversation ,  it sounds like enron is moving out on the cutting edge of risk transfer and  insurance finance . in my mind , there seem to be a myriad number of  interesting opportunities moving forward . as well , i see a number of issues  that would need to be resolved . frankly , i find that quite exciting . i  left academics largely because i wanted to move into a more \"\" front line \"\"  career . while i ' ve enjoyed my work here at the naic , it is still not where i  ultimately see myself . i gathered from your comments some concern about my  being too senior in the organization . if i am interpreting you correctly ,  you are concerned about hands on technical work . i enjoy that immensely and  some of the strengths i bring to the table are the ability to think  creatively about solving financial problems and the the ability to make data  tell the underlying story .  i look forward to talking to you next week . i just found out that our  office building will be closed monday , so i will not be in until tuesday  a . m .  ray spudeck  sr . research associate  ( 816 ) 889 - 4417  rspudeck @ naic . org  >  - resumeres . doc\",0\n\"Subject: re : probation period - matthew williams  hi karen  i ' m happy for matt to be made permanent - all relevant feedback is contained  in his prc .  cheers ,  steve  karen tamlyn  07 / 26 / 2000 10 : 50 am  to : steven leppard / lon / ect @ ect  cc :  subject : probation period - matthew williams  notice of end of probationary period  i am writing to inform you that the six month probationary period for matthew  williams is due to end on the on the 21 st august 2000 .  if you are happy to pass their probationary period please reply confirming  this giving any feedback you deem necessary .  however , if you are unsure and wish to either extend or fail the probationary  period please contact sophie kingsley immediately to discuss further .  many thanks  karen tamlyn  hr  ext . 34310\",0\n\"Subject: update / event time change  shirley , this is the committee that i discussed with you this morning . the  below email outlines the time required . thanks for your consideration .  anita  - - - - - - - - - - - - - - - - - - - - - - forwarded by anita dupont / na / enron on 11 / 29 / 2000 04 : 55  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  11 / 29 / 2000 04 : 46 pm  charla reese @ enron _ development  charla reese @ enron _ development  charla reese @ enron _ development  11 / 29 / 2000 04 : 46 pm  11 / 29 / 2000 04 : 46 pm  to : daryl kitchen @ enron communications , missy stevens @ enron , misha  siegel @ ect , zulie flores / corp / enron @ enron , maggie  valles / enron _ development @ enron _ development , rose  rivera / enron _ development @ enron _ development , donnis traylor / hou / ees @ ees ,  raquel guerrero @ enron communications , elsie lew @ ect , mary  ellenberger / corp / enron @ enron , rebecca longoria @ enron , joy werner @ enron , david  tagliarino @ ect , janie bonnard , sylvia thomas @ enron , lillian villarreal @ enron ,  valerie villareal / hou / ees @ ees , stephanie baker / hou / ees @ ees , dianne  langeland / enron _ development , laura schwartz @ enron , deb gebhardt @ enron ,  heather alon @ ect , michael cuccia / corp / enron @ enron , bert frazier @ ect , susan  rouse @ ees , sandy lewelling @ enron communications , sonia garcia / hou / ees @ ees ,  dolores escamilla @ ect , anita dupont / na / enron @ enron  cc : elyse kalmans @ enron , greg grissom @ enron  subject : update / event time change  thanks to everyone for attending the meeting today !  event time change ! ! !  i just spoke with the office of the chairman and have learned that ken and  jeff are actually available during the morning of december 19 th from 8 : 00 am  until 11 : 00 am . as a result , our plans have changed just a little and i have  requested whether or not they are willing to pose for polaroid pictures with  employees - i ' ll let you know what i find out ! we will still have the jazz  duet and informational poster displays in the lobby throughout the day and  instead of dessert items , we ' ll order breakfast stuff .  assignments / budget ! ! ! !  please note assignments below ; for each team , collaborate between now and our  next meeting to determine what purchases need to be made - budgets will be  discussed at that meeting . again , it will be on wednesday , december 6 th from  9 : 30 am until 10 : 30 am with the location tbd .  kwanzaa - daryl kitchen * / liz taylor  chinese new year - elsie lew * / anita dupont  las posadas - zulie flores * / maggie valles / lillian villeral  christmas - donnis traylor * / missy stevens / michael cuccia  chanukah - laura schwartz * / heather alon  ramadan - sylvia thomas * / janie bonnard / dianne langeland  st . lucia - joy werner * / stephanie baker  devali - sonia garcia * / sophie patel / rebecca longoria  greeters / traffic control / corsages - sandy lewelling  executive floor - deb gebhardt  logistics - charla reese ( communication , entertainment , food , picture holders )  photographer - laura schwartz  houston children ' s choir - misha siegel  * indicates holiday team leader  responsibilities  attend planning committee meetings and work with other volunteers assigned to  your holiday .  research meaning of holiday and determine appropriate decorations , symbols , &  food items - purchase after budget approval .  create information sheet for employee hand - out .  decorate between 7 : 00 am and 8 : 00 am on 12 / 19 .  be creative ! ( play appropriate recorded music , dress up in related clothing ,  etc . )  ensure office is manned during open house ( 8 : 00 am - 11 : 00 am ) - answer any  questions , pass out materials , etc .  recruit additional volunteers !  additional volunteers  delores escamilla  val villeral  raquel guerrero  bert frazier  david tagliarino  rose riveria  thank you !  charla  x 35202\",0\n\"Subject: re : informal exploratory interview with enron research group  valeria :  3 : 30 pm tomorrow the 9 th will be fine . we will have to change the schedule  a little bit , but i believe it will work .  kevin kindall 3 : 30 pm  grant masson 4 : 00 pm  tanya tamarchenko 4 : 30 pm  vince kaminski 5 : 00 pm  same scenario - upon arrival in the lobby go to the security desk and ask  for me . i will meet you in the lobby of the 19 th floor .  thanks so much for your flexibility !  shirley crenshaw  valeria . i . stone @ exxon . sprint . com on 09 / 07 / 2000 08 : 56 : 24 am  to : shirley . crenshaw @ enron . com  cc :  subject : re : informal exploratory interview with enron research group  date : september 7 , 2000  from : stone , v . i . ( valeria ) vistone - americas  to : ext - shirley . crenshaw ( a ) enron . co shirlecl - fpexmail  subject : re : informal exploratory interview with enron research group  sure , tomorrow is fine with me . is it possible to schedule it at 3 : 30 pm ?  and i am sure it is not an easy task to fit the schedule of several people to  be available at the same time window . so please feel free to let me know if  you will need to do another time adjustment .  - - - - - original message - - - - -  from : ext - shirley . crenshaw ( a ) enron . co  sent : thursday , september 07 , 2000 9 : 47 am  to : stone , v . i . ( valeria )  subject : re : informal exploratory interview with enron research group  valeria :  please do not think we are always this unorganized , but things just seem  to be happening right now and it is disrupting everyone ' s schedule .  would you possibly be able to come tomorrow the 8 th ? kevin kindall  will not be here on the 15 th and he would definately like to interview you .  then vince kaminski will be gone for two weeks after the 15 th . it seems  like tomorrow might be the best time for everyone , if it is for you .  we can begin the interviews at 3 : 00 pm and probably end them at 5 : 00  or 5 : 30 pm .  please let me know .  thanks so much for your understanding .  [ stone , v . i . ( valeria ) ] :  regards ,  shirley crenshaw  valeria . i . stone @ exxon . sprint . com on 09 / 07 / 2000 07 : 46 : 13 am  to : shirley . crenshaw @ enron . com  cc :  subject : re : informal exploratory interview with enron research group  date : september 7 , 2000  from : stone , v . i . ( valeria ) vistone -  americas  to : ext - shirley . crenshaw ( a ) enron . co shirlecl -  fpexmail  subject : re : informal exploratory interview with enron research group  [ stone , v . i . ( valeria ) ] 0  definitely - any of these days sound good to me . the only concern that i  have , is that i have my graduate class on thursday night at 6 pm which is  september the 14 th .  so if you will schedule the interview on the 14 th of september , i would  need  to leave around 5 : 15 pm so i could attend my class .  it actually might be more convenient for me to meet with the interviewers  on  the 15 th of september . if this day does not fit the schedule of any of the  interested in interviewing individuals , i surely will be able to meet with  them on the 14 th .  i will be looking forward to your reply .  sincerely ,  valeria stone  - - - - - original message - - - - -  from : ext - shirley . crenshaw ( a ) enron . co  sent : wednesday , september 06 , 2000 4 : 32 pm  to : stone , v . i . ( valeria )  subject : re : informal exploratory interview with enron research group  valeria :  would you be able to do the interview on the 14 th or 15 th instead of the  13 th ? vince kaminski , who would really like to interview you , has been  called out of town on the 13 th . he will be back on the 14 th .  also grant masson is conducting an options seminar on the 13 th and  would not be able to interview you until after 5 : 00 pm .  please let me know if we can just push the interview to the same time  frame only on the 14 th or 15 th .  thanks !  shirley crenshaw  713 - 853 - 5290\",0\n\"Subject: wti crude price and ny harbor resid prices vs henry hub and new  york city gate gas by month  michael ,  can you , please , provide this information .  let me take a look at it before it ' s released .  thanks .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 11 / 2000  08 : 15 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  margaret carson @ enron  04 / 06 / 2000 04 : 15 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : wti crude price and ny harbor resid prices vs henry hub and new york  city gate gas by month  vince i am doing some advocacy for ena to refute a law suit about  changes in  gas prices spiking in new york in dec 1999 - jan / mar 2000 compared to  dec 1998 - jan / mar 1999 .  for the december 1998 through march 2000 16 month period can you  please have someone in your group  provide me with a set of avg monthly prices for wti oil and ny harbor  resid vs henry hub and ny city gate avg monthly prices during this  period ? thanks for helping us out on this . margaret\",0\n\"Subject: re : weather course  vince ,  i ' ve distributed the info on the course . gary taylor , the head of marketing  said that there were perhaps two people he ' d like to send , and he thought  that the teachers would be able to benefit from having people from the  weather derivatives desk in attendance , but that the price of $ 1100 a person  was too steep . gary ( being the head of marketing that he is ) would like to  see if there would be some special deal that could be arranged for people  from the weather desk , but he doesn ' t want to cross the line .  joe  - - - - - original message - - - - -  from : kaminski , vince  - 86256517 - 749759 @ enron . com ]  sent : monday , february 19 , 2001 7 : 17 pm  to : joseph hrgovcic / hou / ect @ enron  cc : kaminski , vince  subject : re : weather course  joe ,  this is the most recent offer from lacima  ( weather derivatives course ) . what do you think ?  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 19 / 2001  07 : 15 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" julie \"\" on 02 / 19 / 2001 03 : 19 : 45 pm  please respond to \"\" julie \"\"  to : \"\" vincejkaminski \"\"  cc :  subject : re : weather course  vince ,  enron is fine ( although i think we have to pay for the hyatt anyway ) .  good discount ( i have a feeling that my idea of a good discount and the  weather desk ' s idea is probably different ? ) : for the one day , $ 1100 per  person . if you think that there will be around 10 people or more , then we  can offer a day rate , regardless of the number of people .  thanks vince  julie  ps - of course when i announced that we were cancelling , people started  responding that they wished to attend . ugh !  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com >  to : julie >  cc : vince . j . kaminski @ enron . com >  sent : friday , february 16 , 2001 4 : 05 pm  subject : re : weather course  julie ,  enron location makes more sense . no reason to pay for the hotel .  also , i think that one day makes more sense .  i contacted the weather desk about including other people at the training  course . i think that they would be interested if they got a good discount .  vince  \"\" julie \"\" > > on  02 / 16 / 2001 09 : 39 : 37 am  please respond to \"\" julie \"\" > >  to : > >  cc :  subject : re : weather course  vince ,  great . just to let you know , we decided not to wait on the indecisive  ones , and postponed the open course . it ' s yours , whatever you want : 1  day ( specific to what you feel will be of the most benefit ) , 2 days , hyatt  or enron , or not at all . i hope this doesn ' t cause problems for you .  special deal , for sure . i owe my godfather .  julie  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com >  to : julie  cc : joseph . hrgovcic @ enron . com >  sent : thursday , february 15 , 2001 3 : 16 pm  subject : re : weather course  julie ,  that ' s definitely an option .  we can provide the room . maybe we can cut with you a special deal for  enron  and increase the # of people attending . i am forwarding your message to  our weather desk .  vince  joe ,  what do you think about it ?  vince  \"\" julie \"\" > >  on 02 / 15 / 2001 08 : 20 : 24 am  please respond to \"\" julie \"\" > >  to : \"\" vincejkaminski \"\" > >  cc :  subject : weather course  vince ,  we just wanted to let you know that we only have 3 people signed up for  the  weather derivatives course ( all from enron ) so far . we have a couple more  that have expressed strong interest , but we are awaiting their final  decision . if no one else signs up , chris and les thought that you guys  could probably get through the first day pretty easily , and thus thought  it  may be an option to teach just the 2 nd day material ( pricing ) only at  enron  ( doing it at the hyatt is an option as well but the room might be on the  large side ) ? we would obviously reimburse you for the day not taught . we  can teach both days as well , but thought you may want to save some time .  i just wanted to give you some time to think about it . we will know where  we stand on final numbers by next wednesday .  julie\",0\n\"Subject: enroncredit . com - credit pricing methodology  dear all ,  attached is a paper describing the proposed methodology for pricing the  \"\" bankruptcy swaps \"\" the credit markets group is launching next week . the  methodology is intentionally simplistic - the emphasis has been on providing  transparent models to give prices in a quick , easy - to - understand manner ,  rather than create any new \"\" rocket science \"\" . could one or all of you please  review the paper , and give feedback on the approach and advice on the areas  still under development . this will give us peace - of - mind before the big  launch .  bryan - could you reread this and outline the sections that need omitting or  expanding for publication on the website .  many thanks ,  ben\",0\n\"Subject: re : powerisk 2001 - your invitation  angelika .  yes .  vince  angelika staude on 04 / 12 / 2001 03 : 01 : 25 am  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc :  subject : re : powerisk 2001 - your invitation  vince ,  brilliant , thanks . same sub points , same bio ?  best regards ,  angelika staude  director gas & powerisk 2001  tel : 0044 207 915 5675  fax : 0044 207 915 5101  www . icbi - uk . com / powerisk  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : wednesday , april 11 , 2001 6 : 59 pm  to : astaude @ iirltd . co . uk  cc : vince . j . kaminski @ enron . com  subject : re : powerisk 2001 - your invitation  angelika ,  thanks for the invitation .  yes , i shall be glad to attend and repeat the same presentation .  vince  angelika staude on 04 / 09 / 2001 04 : 19 : 08 am  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc :  subject : powerisk 2001 - your invitation  powerisk 2001  the global premier forumforenergy trading & risk management  ? 6 th - 9 th november 2001 , paris  dear mr kaminski ,  i am responsible for the programme of this year ' s powerisk conference in  paris . helyette geman has informed me that she has contacted you  concerning the workshop and that you are happy to do it with her again  this year - brilliant !  i would like to know if you are also interested in delivering a paper  again . the audience in previous years greatly appreciated your  contribution , and i would me more than happy if you could join us again .  to give you an idea of the programme so far , these are the ( \"\" technical \"\" )  topics that are already covered :  chris strickland : forward curve models with jumps for the pricing of  exotic energy contracts  multi - factor forward curve models for the valuation of energy contracts  adding jumps  applying the models to exotic energy options  extensions to multiple energy contracts  les clewlow : valuation and risk management of virtual power stations and  gas supply agreements  structures of gas supply agreements ( gsa )  relationships between physical and virtual power stations ( pps / vps )  valuation methods for gsa ' s and vps ' s  risk analysis of gsa ' s and vps ' s  derek bunn , professor of decision sciences , london business school :  analysing the impact of neta on market efficiency & volatility in the uk  energy market  chris harris , director of market development . operations and engineering ,  innogy : applying cutting - edge portfolio management theory in order to  optimise your risk exposure  establishing and valuing the key factors using a bottom up approach  looking at the interconnection between key factors  the treatment of the risk of infrequent but high impact events  peter nance , principal , teknecon : combining power systems and monte carlo  simulations for effective pricing  dan mansfeld , head of risk control , vattenfall : assessing the benefits  and risks of using derivatives as part of your risk management strategy  spyros maragos : analysing new approaches to building forward curves from  available market data  tamara weinert , credit and contracts manager , mirant energy :  successfully measuring limit  setting ; risk reducing structures  importance of credit in the organizational structure : reporting ;  dependence ; structure of credit department  brett humphreys : examining cutting - edge credit exposure mitigation tools :  combining counterparty and portfolio credit var techniques  helyette geman : pricing of exotic energy derivatives and structured  contracts  please let me know if you are interested in joining the powerisk 2001  speaker panel , and which topic you would like to cover . i think that  something along the lines of last year ' s talk ( state - of - the - art volatility  and correlation estimation techniques for multiple energy portfolios )  would be brilliant again , but please feel free to chose something else  that has not been covered yet .  i look forward to hearing from you ,  kind regards ,  angelika staude  director ? powerisk 2001  tel : 0044 207 915 5675  fax : 0044 207 915 5101  ps : for your information , please find enclosed a list of confirmed  speakers for powerisk 2001 .  ( see attached file : confirmed speakers . doc )\",0\n\"Subject: re : wharton business plan competition  hi vince !  please see the wharton information below , as well as jeff ' s comments .  do you want to be the judge ?  please let me know asap .  thanks !  - - christie .  - - - - - forwarded by christie patrick / hou / ect on 03 / 19 / 2001 01 : 53 pm - - - - -  jeffrey a shankman / enron @ enronxgate  03 / 19 / 2001 11 : 18 am  to : christie patrick / hou / ect @ ect  cc :  subject : re : wharton business plan competition  i ' ll be in new york that week . ask vince .  jeff  - - - - - original message - - - - -  from : patrick , christie  sent : monday , march 19 , 2001 9 : 43 am  to : shankman , jeffrey a .  subject : fw : wharton business plan competition  importance : high  jeff ,  please see wharton business plan information below .  do you want to be the judge ?  thanks !  - - christie .  - - - - - forwarded by christie patrick / hou / ect on 03 / 19 / 2001 09 : 40 am - - - - -  \"\" stamer , anne \"\" 03 / 19 / 2001 08 : 42 am to :  \"\" ' christie . patrick @ enron . com ' \"\" cc : subject :  fw : wharton business plan competition  hi christie :  i hope this email finds you well . the wharton business plan competition is  going really well .  we would really like to enron participate . is someone from your company  available to be a be a judge for our phase iii ? attached is some  information .  anne  - - - - - original message - - - - -  from : andrew gaffney [ mailto : gaffneya @ wharton . upenn . edu ]  sent : thursday , march 08 , 2001 9 : 47 am  to : christie . patrick @ enron . com  cc : stamer , anne  subject : wharton business plan competition  dear ms . patrick ,  anne stamer asked me to contact you regarding enron providing a judge for  phase iii of the business plan competition . phase iii judges are generally  partner - level individuals at venture capital firms , managing directors from  investment banks , or other senior individuals who have extensive experience  assessing and working with early stage ventures . a phase iii judge will  receive five business plans , with the entire judging process requiring 4 - 5  hours during the weeks of april 2 and april 9 . i am attaching a document  that describes the competition and judging procedures for phase iii in more  detail . we are looking to finalize the list of phase iii judges by march  23 , so if you could please forward either anne or i the name of the  appropriate individual , we can contact them directly with more details .  please let me know if you have further questions and we appreciate your  support of the competition .  sincerely ,  andrew gaffney  - phase iii judge info 00 - 01 . doc >\",0\n\"Subject: riskcenter . com / flatiron group alliance announce garp risk review  magazine  for immediate release  contact : tom groenfeld  the flatiron group corp .  973 - 925 - 9748  973 - 925 - 9681 fax  groenfeldt @ aol . com  garp leverages riskcenter . com / flatiron group corp . alliance to produce garp  risk review and daily online risk news  new york , new york \u0001 ) january 17 th , 2001 \u0001 ) after a competitive bidding  process , the global association of risk professionals ( garp ) has chosen an  alliance formed by riskcenter . com and the flatiron group corp . to produce  and manage garp \u0001 , s ( www . garp . com ) new proprietary online and print magazine  publishing efforts .  garp is the industry association that represents risk managers in the  securities industry . to serve these professionals , garp has publications ,  events , advocacy and 35 regional chapters worldwide . garp risk review will  serve as the flagship communication piece that unites all of these elements .  in the alliance , riskcenter . com will provide the daily risk management news  coverage on the garp web site . the flatiron group corp . will produce and  publish the hard copy magazine called garp risk review .  \"\" we are very excited about the publication of the online risk management  news and the garp risk review , \"\" says adam davids , ceo garp . \"\" both the daily  news and the garp risk review will provide our members with the information  they need to stay current on both a periodical and real - time basis . with  information delivered in print and online , readers will be able get the  information that they need in the method that works best for that  information . garp represents a community of risk managers that are changing  the definition of their roles and developing their profession rapidly . we  are extremely pleased to advance the growth of our profession with this  excellent marriage of content and medium through the combined efforts of  riskcenter . com and the flatiron group . \"\"  riskcenter . com , a financial risk management content media company ,  syndicates financial risk management news stories ( www . riskcenter . com )  focused on six risk categories - - credit , market , operational , ecommerce ,  energy and commodity \u0001 * that help financial executives make better decisions .  the flatiron group corp . ( www . windowsfs . com ) publishes windows in financial  services , a quarterly magazine covering the expanding use of microsoft  technologies in the financial enterprise , and an accompanying newsletter for  developers working in financial services .  \"\" i think our combination of news delivered over the internet in conjunction  with the garp risk review publication will play an important role in  educating and informing risk professionals around the world , \u0001 8 says joseph  viviani , president and publisher , the flatiron group . \"\" with our garp  affiliation , we will have an unparalleled understanding of what our readers  need to know , and we will have access to the leading experts to impart the  best thinking in the field . this will be a must - read magazine in risk  management . \u0001 8  about garp  the global association of risk professionals ( garp ) is an independent  organization of 15 , 000 financial risk management practitioners and  researchers . garp is a diverse international association of professionals  from a variety of backgrounds and organizations who share a common interest  in the field . garp ' s mission is to serve its members by facilitating the  exchange of information , developing educational programs , and promoting  standards in the area of financial risk management . garp members discuss  current practices and regulation , and help bring forth potential risks in  the financial markets to the attention of other members and the public .  about riskcenter . com  riskcenter . com is a media company that provides a daily web - based news  service that delivers original stories on six financial risk management  categories : market , credit , operational , ecommerce , commodity and energy .  the stories explain risk measurement and management issues , as well as the  use of risk information in capital allocation strategies .  about the flatiron group corporation  the flatiron group is a publishing company that currently produces a  portfolio of products , including a magazine and a newsletter . its windows in  financial services magazine focuses exclusively on the rapidly expanding use  of microsoft technologies in financial services , from front office  applications to back office processing . it provides real - world case studies  showing how firms are implementing new solutions built on the microsoft  platform .  erik helland phone : 212 - 825 - 1525  riskcenter , llc fax : 212 - 825 - 1530  80 wall street mobile : 917 - 544 - 7676  suite 417 helland @ riskcenter . com  new york , ny 10005 www . riskcenter . com  \"\" a financial risk management media company \"\"  - garp alliance pr . doc\",0\n\"Subject: re : my model for spikes  valery ,  i may be in dallas in the next few weeks .  i shall probably come to dallas one friday .  i shall let you know well in advance .  vince  \"\" valery kholodnyi \"\" on 01 / 04 / 2001 08 : 29 : 37 am  to : vince . j . kaminski @ enron . com  cc :  subject : re : my model for spikes  dear dr . kaminski ,  i would like to apologize for the delay responding , i was on vocation .  thank you very much for your interest in my work and for your suggestion to  meet  for lunch / dinner . i will be truly happy to do so . in this regard could you  please let me know what day might be convenient for you . since i am going to  fly  from dallas , i would like , if possible , to plan it in advance .  i look forward to hearing from you and to seeing you soon .  sincerely ,  valery kholodnyi\",0\n\"Subject: papers  vince ,  did you receive this paper ?  jason  - - - - - - - - - - - - - - - - - - - - - - forwarded by jason sokolov / hou / ect on 05 / 01 / 2001 03 : 55 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" stuart russell hamel \"\" on 04 / 30 / 2001 04 : 52 : 12 pm  please respond to  to :  cc :  subject :  dr . kaminski :  please see our attached paper .  thank you ,  jed howard , brian nelson , and  stuart hamel  ( 713 ) 218 - 8903  - winmail . dat\",0\n\"Subject: fw : aram g . sogomonian  norma ,  this is the resume of aram sogomonian i mentioned to you .  i would like to bring him over to talk to kevin presto , george hopley  alex huan , seville yaman , tom haliburton , myself .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 12 / 2000  11 : 02 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" sogomonian , aram \"\" on 10 / 11 / 2000 12 : 03 : 16 pm  to : \"\" ' vkamins @ enron . com ' \"\"  cc :  subject : fw : aram g . sogomonian  - aram g 2 . doc\",0\n\"Subject: re : stanford mba - interview  hi vince ,  unfortunately , i have not heard from him . he also forwarded his resume to mauricio mora , who asked if we could interview him . when i asked celeste about it back then she decided against it . if you need some help tracking him down , let me know .  thanks ,  althea  vince j kaminski @ ect  04 / 16 / 2001 01 : 53 pm  to : althea gordon / na / enron @ enron  cc : vince j kaminski / hou / ect @ ect  subject : stanford mba - interview  althea ,  i was trying to get in touch with this guy .  did he contact you by any chance ? he missed  the interviews on the campus .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 16 / 2001 01 : 51 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" seade , juan j . \"\" on 03 / 19 / 2001 01 : 15 : 56 am  to : \"\" ' vkamins @ enron . com ' \"\"  cc :  subject : stanford mba - interview  dear vincent ,  as i told you on the phone on friday , i am very interested in a summer  internship at enron . i would like to point out that i want to pursue a  career in trading , and i am especially interested in derivatives . given that  enron is a pioneer in the market making of energy , broadband and weather  derivatives , i find it a company i would be most interested in working for .  i believe that you will find my background of interest to your firm , and i  hope to be interviewed by yourself and other colleagues of yours . i have  final exams from march 19 - 22 , but would be most willing to travel to houston  for interviews any time from friday march 23 rd onwards . i hope to hear from  you soon .  best regards ,  juan seade  mba class of 2002  stanford business school  796 escondido road apt . 29 c  stanford , ca 94305  tel : ( 650 ) 497 - 3705  email : jseade @ stanford . edu  >  - resume juan seade . doc\",0\n\"Subject: 2001 budget for research  sir ,  i just got word that your bottom line needs to be 2 , 200 k . this is net of  corp charges and intercompany billings . in order to get to this number , we  have to reduce your budget by 83 k . do you have any suggestions in which  category ( ies ) we need to reduce ?  budget 10 , 521 , 000  i / c billings 8 , 238 , 000  subtotal 2 , 283 , 000  per delainey 2 , 200 , 000  need to dec by 83 , 000  here are my suggestions based on oct expenses :  category oct expense budget decrease yearly amount  periodical / subscription 5 , 200 10 , 000 3 , 000 36 , 000  tuition and reimbursement 11 , 000 21 , 000 4 , 000 48 , 000  this will bring you to the bottom line suggested by delainey . please let me  know your decision by november 21 . if you have any questions , call me at  5 - 7094 . thanx .\",0\n\"Subject: re : argentina power & gas market modelling  okay  julian poole  17 / 03 / 2000 10 : 35 am  to : michael guerriero / enron _ development @ enron _ development  cc : vince j kaminski @ ect , grant masson @ ect , jeff  kabel / enron _ development @ enron _ development , rodolfo  freyre / enron _ development @ enron _ development , diego  hollweck / enron _ development @ enron _ development , bernardo  andrews / enron _ development @ enron _ development , mario aguilar  benitez / enron _ development @ enron _ development , santiago  subject : re : argentina power & gas market modelling  all ,  let ' s arrange a conference call next week to discuss the process .  how does tuesday afternoon fit everyone ' s schedule ?  julian  enron international  from : michael guerriero 03 / 17 / 2000 03 : 49 pm  to : vince j kaminski @ ect , grant masson @ ect , jeff  kabel / enron _ development @ enron _ development , julian  poole / enron _ development @ enron _ development , rodolfo  freyre / enron _ development @ enron _ development , diego  hollweck / enron _ development @ enron _ development , bernardo  andrews / enron _ development @ enron _ development , mario aguilar  benitez / enron _ development @ enron _ development , santiago  cc :  subject : argentina power & gas market modelling  i would like to initiate a team to address the continued improvement of the  argentine power & gas market models . i spoke with vince this morning and we  reviewed that history of work to date and what we will need to do from here .  a summary is as follows :  team :  ba members : julian poole lead  mario benitez associate  ba associates : diego hollweck associate  bernardo andrews associate  santiago porta associate  houston members : to be named .  time schedule : as soon as possible . completed before june 1 , 2000 winter in  argentina .  scope of work :  power model : advance the current model from basic load forecasting to  incorporate weather , hydrology , improved short term and long term forecasting .  natural gas model : build a supply and demand load forecasting model  incorporating weather , thermal demand , pipeline flow rates , well head  supply , improved short term and long term forecasting .  phase i - data request  power  historic weather : temperature - daily , hourly , min , max , average  humidity  precipitation  cloud cover  regionally  forward weather : temperature - daily , hourly , min , max , average  humidity  precipitation  cloud cover  regionally  historic hydrology : reservoir levels  reservoir capacity  current hydrology : reservoir levels  remote monitoring : aireal , pressure device , laser  snow pack : density volume and mass  power supply : current and future capacity  transmission  capacity : current and future capacity  natural gas data list to be developed  phase ii - power model development  phase iii - natural gas model development  we will take advantage of the fact that the associates are in houston for the  next two weeks . vince is out next week but we can start with a process  discussion with grant masson next week . julian please get a meeting scheduled  as soon as possible . we should immediately start collecting data .  thanks  mfg\",0\n\"Subject: tim hiezenrader  stinson gibner wanted me to pass along the name of the individual who worked  with me on the west desk :  tim heizenrader  503 - 464 - 7462  i believe he is now in charge of fundamentals and research ( no relation to  vince ' s research ) for tim beldin , vp , westdesk .  michael schilmoeller\",0\n\"Subject: approval for reviewer  gibner , peyton s has suggested reviewers and submitted them for your  approval . you may review / modify this list of reviewers by logging on to pep  at http : / / pep . corp . enron . com and going to supervisor services . please  remember , no feedback can be completed on gibner , peyton s until you have  approved the list .\",0\n\"Subject: timesheets  hello everyone :  well it is almost that time again ! i am going to try something different . i  am  forwarding you the time sheet by email . save the document to whatever  drive you want to and then fill out any off duty time or overtime that you  had  and return to me by email . i will need this by the 15 and 30 ( or 31 st ) of  each  month .  this may work better than hand delivering .  let me know what you think .\",0\n\"Subject: fwd : summer internship - - ph . d . in chicago  celeste ,  i am a very good customer of your group .  this is another student ( this time from chicago ) i would be glad to take into  the group  as an intern . the resume is attached at the bottom of this message .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 17 / 2001  03 : 51 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  li xiao on 01 / 13 / 2001 01 : 41 : 29 pm  to : vkamins @ ect . enron . com  cc :  subject : fwd : summer internship - - ph . d . in chicago  hi , vince ,  this is li , writing from u . of chicago .  i am in the second quarter here .  the study and social life is extremely busy at the school .  but i enjoy connecting the knowledge i learn everyday here  with the experience i had with enron .  a schoolmate of mine , a chicago ph . d . candidate in finance ,  is looking for an internship for the coming summer .  i recommend him to write to you to see if you are interested in  or if there is a need . if so , you can contact with him directly .  he is a really bright guy . if not , hope you don ' t mind that  i sell enron at school so hard .  again , thanks for all the help you gave me .  have a good new year .  li  p . s . : cover letter below and resume attached .  li xiao  university of chicago  graduate school of business , class of 2002  ( 773 ) 955 - 0710  dear dr . vince kaminski ,  i am a ph . d . student in finance at the university of chicago gsb who =  hopes to find a summer internship at enron of 2001 ( between june and =  september ) . i heard your group from my friend li , who worked at enron =  for 3 year . she spoke highly of you . if it ' s okay , i am primarily =  interested in risk management .  at the university of chicago , i will have completed all the ph . d . =  courses in the area of finance by the end of the first year . as normally =  it takes two years to finish the required finance courses , i decided to =  take all the finance courses in the first year . in the fall quarter , i =  already took empirical asset pricing and theoretical asset pricing and =  did very well . in the winter quarter , i will be taking corporate =  finance , continuous time finance and behavioral finance . i am exposed to =  all fields of finance . prior to coming to chicago , i received a master ' s =  degree in economics at washington university in saint louis where i =  acquired skills in economic analysis . i also have a strong background in =  statistics and mathematics . this makes me believe that i have acquired =  the ability to do financial research .  prior to coming to the united state , i was an outstanding graduate from =  beijing university , china . i was the founder and president of beijng =  univeristy society of oceanology . i also organized a research jouney in =  the round - the - bo - sea economic region . these experience helped to hone my =  communication and interpersonal skills .  as illustrated above , my skills and expertise are ideally suited for =  financial research . my resume is enclosed . in the event that you think =  an interview is in need , my time is very flexible . your assistance is =  appreciated .  sincerely yours ,  jason chen ( huafeng )  6022 s . drexel ave , apt 612  chicago , il 60637  ( 773 ) 955 - 0348  - resume . doc\",0\n\"Subject: zimin ' s father  vince and stinson ,  i have to go back to china to attend my father ' s funeral on saterday jan . 20 .  my father passed away last sunday .  my schedule is :  leave houston : jan 18 ( thursday )  arrive houston : jan 27 ( saterday )  i will take care of a few things before i go  1 ) review for paulo and bob  2 ) talk to alex on the compound option on a power plant  3 ) talk to bob on volatility and correlation skews , to finish up this project  for john arnold  4 ) telephone interview for japan office .  zimin\",0\n\"Subject: introduction  mark , mike ,  i have scheduled a video conference with this gentleman on thursday this week  at 3 : 30  p . m . can you join me for this conversation ?  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 06 / 20 / 2000  04 : 16 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  on 06 / 20 / 2000 03 : 12 : 53 pm  to : \"\" vince j kaminski \"\"  cc : richard . larsen @ effem . com  subject : introduction  vince :  as way of introduction , i wanted to write a bit about mars inc . and then  about cds ,  the unit i head . mars is a private company , considered to be the largest  privately owned  manufacturing company in the world . mars is not in the habit of disclosing  its  finances ,  so the best i could do is refer to forbes ' estimate of $ 15 billion annual  revenue and  to the profit margins of similar companies between 5 - 12 % . mars is in the  business of  manufacturing confectionery ( m & m , dove bar , skittles , twix , - all ( r ) )  food ( uncle ben rice ( r ) ) pet food ( pedigree , whiskas waltham ( r ) ) and other  products .  mars has prospered during the years because of a unique philosophy that  emphasizes the  long term goals of the company . part of the philosophy is to look for win - win  solutions with  its suppliers , customers and partners .  as can be understood from the nature of the company , a large chunk of its  expenses  goes towards purchasing commodity like products , and hence the history of  researching  those commodities and the weather that influences their supply and the demand  ( people  eat less ice cream in the winter and less chocolate in the summer ) .  cds has a history of few decades in forecasting weather and has been very  successful ,  with an envious track record , in helping mars get a competitive advantage in  these arenas .  cds is a global group ( in 4 countries across two continents ) which supports  the  purchasing  function and the corporate at large in these and other arenas . it is a  multidiscipline and  multinational team with a lot to offer .  not having a ready access to the energy markets , and with a risk profile based  on  manufacturing expertise , mars has decided to look for potential partners in  this  area .  enron presence in the market place certainly makes it an interesting party to  talk to .  in talking to enron , we are careful to suggest that mars is not committing to  anything  at this point , and all we are after is to find out if there is an interest to  pursue the opportunity  we discussed in the future .  i am looking forward to our video conference call .  kind regards ,  avi  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  avi i . hauser phd mba  cds director  100 international drive mt olive nj 07828 - 1383  + 1 973 691 3664 ( office )  + 1 973 347 8189 ( fax )  + 1 973 727 3622 ( car + slow paging )  hauser @ cdsusa . com\",0\n\"Subject: non - firm power curve building  hi vince ,  amitava and i have received a request to build a non - firm power curve for each region from david hoog ' s double trigger folks . the objective , as they explain it , is to allow the desk to buy non - firm from the market , buy david ' s outage product , and sell firm to the market . accountants would like a curve to mark the non - firm position .  my initial thought is that the desk should provide this non - firm curve , but it seems that this market is very illiquid and they are reluctant so they have put the ball in david hoog ' s court to build the curve if david wants to sell his product internally to the desk .  assuming we build the curve , the next issue is how to define \"\" non - firm \"\" ? the only way i can think of is to tie the non - firmness to a specific generation unit or group of units . this will allow the purchase of david ' s outage product to cover the non - firmness risk . tying the definition of non - firmness to a whole region seems implausible - - - what does it mean to give a marketer the option to not deliver power if there is any problem anywhere in the region ? consequently , the non - firm curve takes on a unit - level interpretation , and not a region - level interpretation . consequently , i do not see how we can talk about the \"\" non - firm curve for the region \"\" ? we will need to build a non - firm curve for each generation unit or group of units .  maybe i could get your thoughts later today .  thanks ,  vasant\",0\n\"Subject: gas model  sorry so much time has passed since we last discussed your north american gas  model . i am however still interested in setting up a test process to  familiarize some of our key people with the model and the database , etc .  i am now reviewing the licensing agreement that you submitted in december and  will be back in touch soon . i need to discuss this further with the business  segments , but i suspect that our interest will be focused more on the long  term gas model .  another member of your firm had called last week , but i somehow misplaced his  name and number . i thought that an e - mail response would suffice for now .  my apologies .  regards ,  john goodpasture\",0\n\"Subject: re : ut conference trustees ' meeting  vince , there was a trustees ' meeting ( during dinner ) which i attended .  here are a few things that were discussed there :  1 . april 4 th is the date when different companies representatives will come  on ut campus to tell mba  students about their companies and job opportunities . the companies will have  to pay a small fee ( about  $ 200 ) to be able to participate .  2 . trustees ' continued support for in - class presentations , finance challenge  program and practicums .  i understand that ut wants you to give some classes in the autumn semester  for mba students .  3 . some companies ( like reliant ) select some well defined projects and give  them to ut students to  work on for a few months . students work in teams and discuss their progress  with ihud ron and then  report results to the company .  regards ,  tanya .\",0\n\"Subject: re : creditmanager net meeting  aidan ,  yes , this will work for us .  vince  \"\" aidan mc nulty \"\" on 12 / 16 / 99 08 : 36 : 14 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : creditmanager net meeting  vincent , i cannot rearrange my schedule for tomorrow so i would like to  confirm that we will have a net - meeting of creditmanager on friday 7 th of  january at 9 . 30 your time .  regards  aidan mc nulty  212 981 7422\",0\n\"Subject: var , reporting and resources meeting  the below meeting is going to take place today in eb 32 c 2 .  thanks ,  rain  - - - - - - - - - - - - - - - - - - - - - - forwarded by rita hennessy / na / enron on 08 / 08 / 2000  09 : 15 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  barbara lewis @ ect  06 / 19 / 2000 10 : 25 am  to : sally beck / hou / ect @ ect , vladimir gorny / hou / ect @ ect , grant  masson / hou / ect @ ect , michael e moscoso / hou / ect @ ect , ted murphy / hou / ect @ ect ,  beth perlman / hou / ect @ ect , stephen stock / hou / ect @ ect  cc : patti thompson / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , maria  sandoval / hou / ect @ ect , rita hennessy / na / enron @ enron , cherylene r  westbrook / hou / ect @ ect , giselle james / corp / enron @ enron  subject : reoccurring meeting  the meeting to discuss \"\" var , reporting and resources ii \"\" will take place  every tuesday at 3 : 00 p . m . beginning june 27 , 2000 .  please adjust your schedule to reflect this weekly reoccurring meeting .  many thanks ,  barbara lewis\",0\n\"Subject: re : corporate card  yes tony ,  mike authorized you for a corp . card , however that ' s  something your asst . can do in london for you .  if you need further asst . please inform . . . . . . .  kevin moore  tony hamilton @ enron  04 / 30 / 2001 07 : 28 am  to : mike . a . roberts @ enron . com , tani . nath @ enron . com , kevin . g . moore @ enron . com  cc :  subject : corporate card  is it possible for me to get a corporate card , and if so , who do i need to  contact regarding this ?  thanks  tony\",0\n\"Subject: launch issue / the risk desk  dear trading and risk exec : i ' ve attached the premier issue of our newest  publication covering the traded energy markets - - the risk desk - - sister  publication to our leading weekly , the desk . the attached issue ( a pdf file )  is of course free and has zero obligation .  the publication was created in response from readers like you , who requested  a less dense , more upbeat and generally more readable publication dedicated  to original news , analysis , and commentary on price , credit , operational and  market risk management in the evolving energy trading space .  and , because you ' re either a current or recent subscriber to one of our other  publications , we ' re offering you a very special charter rate to our new  publication - - that is if you contact us before may 27 th . contact us in the  next 30 days and subscribe to a full year of the risk desk for only $ 199 ! !  after may 27 , we will of course ratchet up the price , good capitalists that  we are .  but for now , enjoy your free , no - obligation issue to the risk desk . we look  forward to hearing from you , soon .  regards ,  john sodergreen  john sodergreen  editor - in - chief  scudder publishing group , llc  ph : 410 / 923 - 0688  fax : 410 / 923 - 0667  johns @ scudderpublishing . com  the desk , the risk desk , power executive  the bandwidth desk , energy ebusiness  - april 27 . 01 risk . pdf\",0\n\"Subject: re : var priorities  vince  thanks for the quick response . agree on # 5 just bear in mind it says scope  not implement so it is more of a development of a project .  re ; mg i will keep tanya apprised of travel plans and give her the option to  be in or out as you two see fit .  ted  vince j kaminski  07 / 11 / 2000 03 : 57 pm  to : ted murphy / hou / ect @ ect  cc : tanya tamarchenko / hou / ect @ ect , vince j kaminski / hou / ect @ ect  subject : re : var priorities  ted ,  item # 5 will require help from it . my understanding is that currently we are  receiving the  positions aggregated to a daily level .  also , i talked to tanya about visiting mg in new york . she is leaving for  vacation on the 26 th of july  and can go for a day to nyc prior to this date .  i think that it makes a lot of sense for her to visit mg and to kick  the tires . i asked her to coordinate the trip with you : it makes sense  for both of you to go together . i may join you depending on my availability .  vince  from : ted murphy  07 / 11 / 2000 03 : 20 pm  to : vince j kaminski / hou / ect @ ect , john sherriff / lon / ect @ ect  cc :  subject : var priorities  vince / john ,  below is a brief summary of near - term projects for the enhancement of var and  the use of var . as you can tell some are not directly research issues ( some  require the guidance but not direct work product ) , and are very north  american wholesale - centric .  vince ,  i think that the only one in which progress requires your input to get kick  started is # 5 . all others are in progress with tanya / grant involved through  jeff shankman ' s regular meeting .  we would like to get your input as to your priorities ( we were thinking top  5 ? ) and then start knocking some of them out . it is not meant to be  exhaustive and is focused on fixes as opposed to overhauls .  thanks  ted  - - - - - - - - - - - - - - - - - - - - - - forwarded by ted murphy / hou / ect on 07 / 11 / 2000 03 : 10 pm  - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : ted murphy  06 / 28 / 2000 07 : 45 am  to : rick buy  cc :  subject : var priorities  rick ,  this is my initial attempt to summarize our meeting with john . the next  steps would be to solicit feedback from other interested parties and scope  the resources and responsibilities .  ted  rick buy , john lavorato and i met to discuss priorities as it relates to the  calculation of var . we are making the following recommendations  1 ) inclusion of monthly index positions into var calculations as the  indicies set in north american natural gas  2 ) development of a methodology to re - run correlations ( factor loadings )  including criteria , responsibilities and acceptance / rejection criteria  3 ) development of process by which to analyze the output of factor loading  process . database to store output and management reports .  4 ) finalize debate on the calculation of forward / forward volatility  5 ) scope a project to analyze the possibility of calculating hourly  volatility for power .  it was further recommended that we continue to not include unpriced index  positions in var calculation .\",0\n\"Subject: requests for help  krishna ,  i have received two additional requests for help from ees .  1 . jeremy blachman called and asked us to increase very significantly the  level of  our support of ees . it probably makes sense to set up a meeting with jeremy  asap  and discuss specifics ( you , me , and it probably makes sense to invite marty  sunde  as well ) .  2 . george posey called and asked fro help with statistical sampling of dublin  customers . please , give him a call to set up a meeting .  i shall call you tomorrow to discuss both requests .  vince\",0\n\"Subject: joe h .  vince ,  mark tawney called and said that he needs to make a salary adjustment for joe  hrgovcic . it appears that he has an outside offer . i told him that we  would support this , within reason , and that you would be the person to  ultimately o . k . this request on the research side . he is also interested  in moving joe out of research and formally onto the weather desk . again , i  told him that it would have to be discussed with you on your return next week .  stinson\",0\n\"Subject: alp presentation  this will be in eb 49 cl  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 10 / 2001 08 : 22 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  04 / 10 / 2001 08 : 13 am  to : barrett @ rice . edu , uecker @ rice . edu , cmiller @ rice . edu , lounghrid @ rice . edu , luigical @ rice . edu  cc : vince j kaminski / hou / ect @ ect , christie patrick / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , kenneth parkhill / na / enron @ enron  subject : alp presentation  on behalf of enron corp . i would like to invite you to an alp project presentation by a group of students  of jesse h . jones graduate school of management , rice university .  the students will present the results of a research project regarding electronic trading  platforms in the energy industry .  the presentation will be held on may 7 , at 4 : 00 p . m . at enron , 1400 smith .  we would also like to invite you to dinner , following the presentation .  vince kaminski  vincent kaminski  managing director - research  enron corp .  1400 smith street  room ebl 962  houston , tx 77002 - 7361  phone : ( 713 ) 853 3848  ( 713 ) 410 5396 ( cell )  fax : ( 713 ) 646 2503  e - mail : vkamins @ enron . com\",0\n\"Subject: grades  pam ,  another team :  elena chilkina  robert j . guadette  joseph helms  kenneth jett  todd litton  mark westmoreland  grade : a -  vince kaminski\",0\n\"Subject: p + option valuation model  mark ,  after recently reviewing the booking of the p + options , it is my understanding that these options are being valued using a standard spread option model where the price evolution of the two legs of the spread are assumed to be correlated geometric brownian motion processes ( i . e . the price process assumptions are consistent with standard black - 76 model assumptions extended to two commodities ) .  the payoff for a call option is :  payoff = max ( 0 , a - b - k ) .  where :  a = nxwti ( delivery price for nymex )  b = posting price = ( wti swap ) - ( posting basis )  k = posting bonus ( fixed ) .  the only complication of this option as compared to most other spread options is that leg \"\" b \"\" of the spread is a combination of three prices , the two futures prices which make up the wti swap for the given month , and the average posting basis during the delivery month . combination of these prices is easily addressed by simply setting the volatility of leg \"\" b \"\" and the correlation to correctly account for the volatility of this basket of prices and its correlation with the nxwti price . i believe that this approach is more straightforward than the alternative , which would be to use a three or four - commodity model with its associated volatility and correlation matrices .  in summary , i believe that this is an appropriate model for valuation of these types of options , assuming that the inputs are set correctly .  regards ,  stinson gibner  v . p . research\",0\n\"Subject: re : hello from vince kaminski at enron  vince  the audience consist of mostly first year graduate students in industrial  engineering and operations research some doctoral students and faculty . a  short introduction about opportunities for quantitative minded people at  enron would be good . it would also be good if in your talk you can give some  technical examples for people with a good analytic background but no much of  a financial engineering background . many of the first year graduate students  go for a masters degree and wonder what they can do with an or masters  degree .  shmuel s . oren , professor  dept . of industrial engineering  and operations research  4117 etcheverry hall  university of california  berkeley , ca 94720 - 1777  e - mail : oren @ ieor . berkeley . edu  phone : ( 510 ) 642 - 1836 or 5484  fax : ( 510 ) 642 - 1403  - - - - - original message - - - - -  from :  to :  cc :  sent : monday , september 18 , 2000 2 : 20 pm  subject : re : hello from vince kaminski at enron  >  > shmuel ,  >  > thanks for the invitation to speak on october 23 rd .  >  > would you like me to split my presentation and devote  > some time to the enron analyst / associate program ?  >  > i plan to make presentation on energy derivatives markets  > ( development of the markets in the us and europe , valuation  > challenges , enron ' s role in developing the forward markets for natural gas  > and electricity ) .  > i shall send you the bullet points in a few days .  >  > vince  >  >  >  >  >  >  >  > \"\" shmuel oren \"\" on 09 / 18 / 2000 09 : 51 : 29 pm  >  > to :  > cc :  > subject : re : hello from vince kaminski at enron  >  >  > vince  > please send me a title for the talk with your job title etc . and an  > abstract  > for your talk . you will have about an hour .  > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / /  > shmuel s . oren , professor  > dept . of industrial engineering  > and operations research  > 4117 etcheverry hall  > university of california  > berkeley , ca 94720 - 1777  > e - mail : oren @ ieor . berkeley . edu  > phone : ( 510 ) 642 - 1836 or 5484  > fax : ( 510 ) 642 - 1403  > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / /  >  > - - - - - original message - - - - -  > from :  > to :  > cc :  > sent : friday , september 15 , 2000 6 : 04 pm  > subject : re : hello from vince kaminski at enron  >  >  > >  > > shmuel ,  > >  > > sorry for not getting back to you earlier .  > > if the 23 rd of october is still open , i can make the presentation on  this  > > day .  > >  > > vince  > >  > >  > >  > >  > >  > >  > > \"\" shmuel oren \"\" on 08 / 30 / 2000 08 : 18 : 15 am  > >  > > to :  > > cc :  > > subject : re : hello from vince kaminski at enron  > >  > >  > > originally you mentioned october 23 so i reserved that week which is  > still  > > open .  > > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / /  > > shmuel s . oren , professor  > > dept . of industrial engineering  > > and operations research  > > 4117 etcheverry hall  > > university of california  > > berkeley , ca 94720 - 1777  > > e - mail : oren @ ieor . berkeley . edu  > > phone : ( 510 ) 642 - 1836 or 5484  > > fax : ( 510 ) 642 - 1403  > > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / /  > >  > > - - - - - original message - - - - -  > > from :  > > to :  > > cc : ; ;  > >  > > sent : wednesday , august 30 , 2000 9 : 03 am  > > subject : re : hello from vince kaminski at enron  > >  > >  > > >  > > > shmuel ,  > > >  > > > let ' s see if we can either rearrange the seminar speakers  > > > or change the date of our visit to the campus . ashley baxter , our  > > > coordinator is very efficient and  > > > got a faculty room for a presentation on monday morning on the 16 th .  > > >  > > > vince  > > >  > > >  > > >  > > >  > > >  > > >  > > > \"\" shmuel oren \"\" on 08 / 29 / 2000 05 : 37 : 33 pm  > > >  > > > to :  > > > cc :  > > > subject : re : hello from vince kaminski at enron  > > >  > > >  > > > dear vince . i spoke too soon . apparently the seminar slot on the 16  was  > > > already filled . i will see if i can switch the speaker for that week  to  > > the  > > > following week . in any case we are on for dinner on the 16 .  > > > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / /  > > > shmuel s . oren , professor  > > > dept . of industrial engineering  > > > and operations research  > > > 4117 etcheverry hall  > > > university of california  > > > berkeley , ca 94720 - 1777  > > > e - mail : oren @ ieor . berkeley . edu  > > > phone : ( 510 ) 642 - 1836 or 5484  > > > fax : ( 510 ) 642 - 1403  > > > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / /  > > >  > > > - - - - - original message - - - - -  > > > from :  > > > to :  > > > cc : ;  > > > sent : tuesday , august 29 , 2000 5 : 01 pm  > > > subject : re : hello from vince kaminski at enron  > > >  > > >  > > > >  > > > > shmuel ,  > > > >  > > > > the date of our trip to berkeley has been set . it will be october  > 16 th  > > > and  > > > > 17 th  > > > > ( monday and tuesday ) .  > > > >  > > > > i shall be glad to make a presentation on energy derivatives markets  > > > > ( development of the markets in the us and europe , valuation  > > difficulties ,  > > > > enron ' s role  > > > > in developing the forward markets for natural gas and electricity ) .  > > > >  > > > > please , let me know if this topic would be of interest to you . if  > this  > > is  > > > > the  > > > > case , i shall follow with a title and an abstract .  > > > >  > > > > by the way , are you free for dinner on monday ?  > > > >  > > > > vince  > > > >  > > > >  > > > >  > > > >  > > > >  > > > >  > > > > \"\" shmuel oren \"\" on 08 / 24 / 2000 08 : 59 : 38 am  > > > >  > > > > to : \"\" vince j kaminski \"\"  > > > > cc :  > > > > subject : re : hello from vince kaminski at enron  > > > >  > > > >  > > > > great . our seminars are 3 : 30 to 5 pm . if it works for you please send  > me  > > a  > > > > title and abstract .  > > > > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / /  > > > > shmuel s . oren , professor  > > > > dept . of industrial engineering  > > > > and operations research  > > > > 4117 etcheverry hall  > > > > university of california  > > > > berkeley , ca 94720 - 1777  > > > > e - mail : oren @ ieor . berkeley . edu  > > > > phone : ( 510 ) 642 - 1836 or 5484  > > > > fax : ( 510 ) 642 - 1403  > > > > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / /  > > > >  > > > > - - - - - original message - - - - -  > > > > from : \"\" vince j kaminski \"\"  > > > > to : \"\" shmuel oren \"\"  > > > > cc : \"\" vince j kaminski \"\" ; \"\" ashley baxter \"\"  > > > >  > > > > sent : thursday , august 24 , 2000 9 : 58 am  > > > > subject : re : hello from vince kaminski at enron  > > > >  > > > >  > > > > >  > > > > >  > > > > > shmuel ,  > > > > >  > > > > > thanks for the message . i am working with our recruiter , ashley  > > baxter ,  > > > > > to finalize the date of the trip . i shall shoot for october the  > 23 rd  > > > > > if this date works for the rest of our team .  > > > > >  > > > > > vince  > > > > >  > > > > >  > > > > >  > > > > >  > > > > >  > > > > >  > > > > > \"\" shmuel oren \"\" on 08 / 23 / 2000 11 : 46 : 19 am  > > > > >  > > > > > to : vince j kaminski / hou / ect @ ect  > > > > > cc :  > > > > > subject : re : hello from vince kaminski at enron  > > > > >  > > > > >  > > > > >  > > > > > dear vince .  > > > > > i sent you a reply earlier this month but i haven ' t heard from you  > > > about  > > > > the  > > > > > date of your visit . our department has a seminar every monday . if  > you  > > > can  > > > > > schedule your visit on a monday i would like to invite you to give  > a  > > > > seminar  > > > > > which will be attended by many of our graduate students and  faculty  > > and  > > > > will  > > > > > give you an opportunity to tell them about your program . with  > > > sufficient  > > > > > lead - time i can advertise the seminar in the hass school to their  > > > > financial  > > > > > engineering students .  > > > > > shmuel .  > > > > > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / /  > > > > > shmuel s . oren , professor  > > > > > dept . of industrial engineering  > > > > > and operations research  > > > > > 4117 etcheverry hall  > > > > > university of california  > > > > > berkeley , ca 94720 - 1777  > > > > > e - mail : oren @ ieor . berkeley . edu  > > > > > phone : ( 510 ) 642 - 1836 or 5484  > > > > > fax : ( 510 ) 642 - 1403  > > > > > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / /  > > > > >  > > > > > - - - - - original message - - - - -  > > > > > from :  > > > > > to : ; ;  > > > > >  > > > > > sent : tuesday , august 08 , 2000 10 : 59 am  > > > > > subject : hello from vince kaminski at enron  > > > > >  > > > > >  > > > > > > shmuel ,  > > > > > >  > > > > > > i hope you remember me . i visited you together with aram  > > sogomonian ,  > > > a  > > > > > > good friend of mine , a few years ago . i am currently  responsible ,  > > > among  > > > > > > other things , for recruiting graduates with finance and / or  > > technical  > > > > > > backgrounds at the university of berkeley . i would be glad to  > give  > > > you  > > > > a  > > > > > > call and talk more about the details of our program . my  > colleague ,  > > > > > > ashleybaxter , from the analyst / associate program at enron would  > > join  > > > me  > > > > > > as well .  > > > > > >  > > > > > > i am sending you a copy of the brochure about the analyst /  > > associate  > > > > > > program .  > > > > > >  > > > > > > vince kaminski  > > > > > >  > > > > > >  > > > > > > vincent kaminski  > > > > > > managing director - research  > > > > > > enron corp .  > > > > > > 1400 smith street  > > > > > > room ebl 962  > > > > > > houston , tx 77002 - 7361  > > > > > >  > > > > > > phone : ( 713 ) 853 3848  > > > > > > fax : ( 713 ) 646 2503  > > > > > > e - mail : vkamins @ enron . com  > > > > > >  > > > > >  > > > > >  > > > > >  > > > > >  > > > > >  > > > > >  > > > >  > > > >  > > > >  > > > >  > > > >  > > > >  > > >  > > >  > > >  > > >  > > >  > > >  > >  > >  > >  > >  > >  > >  >  >  >  >  >  >\",0\n\"Subject: re : request for historical curve information  sure :  i am already taking care of that .  thanks .  paulo issler  vince j kaminski  11 / 15 / 2000 09 : 59 am  to : paulo issler / hou / ect @ ect  cc :  subject : request for historical curve information  paulo ,  can you please , help him with this ?  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 11 / 15 / 2000  10 : 06 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron north america corp .  from : mike barry @ enron 11 / 15 / 2000 07 : 55 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : request for historical curve information  vince ,  per our conversation this morning , i would appreciate the following  historical curve information as soon as possible :  1 . on february 17 , 2000 , what was the summer ' 00 strip for vent to ml 7 ,  demarc to ml 7 , and vent to chicago  2 . on july 27 , 2000 , what was the august ' 00 strip for vent to chicago  3 . on may 9 , 2000 , what was the may ' 00 strip for vent to chicago  4 . on may 30 , 2000 , what was the june strip for vent to chicago  5 . on june 29 , 2000 , what was july strip for vent to chicago  6 . on sep . 29 , 2000 , what was the october strip for vent to ml 7  thank you in advance for your prompt attention to this matter . please call  me if you have any questions . thanks again !  mike barry  402 / 398 - 7105\",0\n\"Subject: fwd : hello from charles shen at williams co .  mr . shen :  vince kaminski and the research group would like to bring you in for an  interview this friday , if possible . please forward me a copy of your  resume , as soon as possible , and i will have our hr dept . contact you .  thank you .  shirley crenshaw  administrative coordinator  enron research dept .  713 / 853 - 5290\",0\n\"Subject: chicago partners  i have received an inquiry through one of our employees ( david barr )  from chicago partners , a consulting firm in chicago . they specialize , among  other  things , in regulatory economics and could be useful as experts in our  discussions with  the government and regulatory agencies .  one of the partners , christopher culp , is a well known commodity markets  expert .  please , let me know if you are interested .  vince kaminski\",0\n\"Subject: re : james \"\" brad \"\" aimone  shirley ,  please , send a message to norma to  finalize it .  vince  shirley crenshaw  12 / 14 / 2000 10 : 32 am  to : norma villarreal / hou / ect @ ect  cc : stinson gibner / hou / ect @ ect , vince j kaminski / hou / ect @ ect  subject : james \"\" brad \"\" aimone  hi norma :  fyi in case you do not know , today ( 12 / 14 / 00 ) is brad aimone ' s last day  with enron . i don ' t know what else i need to do as he was not a full time  employee .  thanks !  shirley\",0\n\"Subject: thanks again  vince and stinson ,  i would like to thank you for helping me trying to find an internship . i  really appreciate the attention you gave to me .  i am happy to tell you that i found an internship in my area of interest  with mfrgroup . it is a consulting company that provides management  consulting , advisory , finance , operations management and information  technology services . i will be helping them to develop a new business  related with e - commerce b - to - b .  from now on , i will be concentrating my efforts in finding a full time  position , because i will graduate at the end of the year . i do not want to  miss enron ' s deadline , and i am still very interested in enrononline  business . please keep me updated if any opportunity arises .  thanks again  carla di castro  ps : vince , i tried to call you today , but it looks like you will be out of  the office until monday . i just wanted to say thank you .\",0\n\"Subject: amit , paulo , and juan carlos , feb . 16  all :  the meeting on wednesday , feb . 16 th , with the students from m . i . t . is  scheduled to be held in 19 c 2 . please let me know if you are planning to  attend all or part of the day so i will know a rough headcount to expect .  ( samer and chonawee : please plan to come . )  as i understand it , there are two goals for the day :  1 . transfer any useful tools or knowledge from amit .  2 . evaluate the other two students to see if there is value in establishing  an ongoing relationship with them .  agenda  9 : 00 a . m . - 9 : 45 a . m . overview of ebs ( for paulo and juan carlos )  10 : 00 - 10 : 30 review background and research interests of paulo and juan  carlos  10 : 30 - 11 : 30 roundtable discussion of possible common areas of interest .  lunch  12 : 30 - 2 : 00 amit dhadwal - review of model for pricing spot bandwidth  2 : 00 - 3 : 30 roundtable discussion of current model an possible future areas  of research\",0\n\"Subject: organizational announcement  enron global markets ended the year with a great deal of momentum and with  very high expectations for 2001 . in order to better focus and expand the  various businesses within global markets , we are pleased to announce the  following organizational changes .  crude and products  this group is being re - organized into product lines in order to better focus  and maximize coverage and increase our market - making abilities . the  following individuals leading these groups report directly to john nowlan .  global crude oil  don schroeder and bill white will manage our global crude oil books . don \u0001 , s  emphasis will be on the development and expansion of our physical crude  positions both domestically and abroad . bill will manage the various  financial crude positions globally and will focus on developing these books .  distillate  chris mahoney will have responsibility of all distillate positions . chris  will focus on developing our global distillate strategy , building the  business both physically and financially .  global fuel oil  niamh clarke will expand her role managing our global fuel oil and resid  positions . emphasis will be placed on re - establishing enron in the financial  fuel market in the us and developing a physical fuel strategy .  global gasoline and components  jim goughary will assume responsibility for our global gasoline and  components business . following up on our expansion into the european market  in 2000 , we look forward to jim expanding our presence in the us as well as  asian markets .  global lpg  erik hansen and adam gross will be responsible for the development and  execution of our global lpg trading and strategy . under their guidance we  look to expand our presence into the asian pacific markets , as well as  continuing to grow our us and european operations .  petrochemical and plastics  stuart bland and douglas friedman will be responsible for the continued  development and growth of our petrochemical and plastics business . they will  work to further expand both our physical and financial presence in these  markets .  fuel management  doug leach will continue in his role developing our fuel management business  as well as other long - term structural transactions .  global origination  randy maffett has joined the group to lead , develop and grow all global  origination activities for the group . randy \u0001 , s most recent assignment was in  restructuring several equity investments for ena .  enron freight  this new group under the leadership of dan reck is developing a business in  the inter - modal transportation area in the united states . shawn cumberland  has joined this group to lead and expand the origination opportunities in  this business . shawn \u0001 , s most recent assignment was as coo of the calme region .  global risk management  jere overdyke has elected to leave enron after almost 10 years of service .  per sekse will take over the leadership of this very exciting and growing  business . per is located in enron \u0001 , s new york office but will be spending a  significant amount of his time in houston .  we look forward to this year and feel the above changes will provide the  focus and momentum we need to deliver a record performance in 2001 .  please congratulate everyone on their new assignments .\",0\n\"Subject: re : the next newsletter  dear vince ,  thank you ! i feel much better now .  sam  vince j kaminski @ ect  11 / 15 / 2000 07 : 31 am  to : william smith / corp / enron @ enron  cc : vince j kaminski / hou / ect @ ect  subject : re : the next newsletter  sam ,  good thinking . i shall also write an article over the weekend so we shall  have one in reserve .  vince  enron north america corp .  from : william smith @ enron 11 / 15 / 2000 07 : 17 am  to : vince j kaminski / hou / ect @ ect  cc : elena chilkina / corp / enron @ enron  subject : the next newsletter  good morning , vince !  as i will be on vacation ( tomorrow until monday the 27 th ) , i ' m enlisting  elena chilkina ' s help in producing this monday ' s ( 20 nov . ) newsletter .  here ' s how i hope it will work :  i ' ve asked alex huang to try to get his article to you by friday for your  review .  i ' m attempting to get with sharad today to get his photo and remind him about  the bio piece for page one . he should be the feature for monday .  i will also schedule a person and an article ( probably from charlie weldon )  for the 27 th . if alex ' s article is a two - parter , we ' ll just do part 2 that  day instead .  for all submissions for this coming monday ' s issue , i would ask that they be  e - mailed to elena chilkina  if you notice something i may have missed , would you please let me know ?  thank you !  sam\",0\n\"Subject: re : the spreadsheet for talon deal  rakesh ,  thanks . i took a quick look at the spreadsheet and i agree  with your approach .  i shall spend more time looking at it over the weekend  and if i see a problem i shall call you on monday .  vince  rakesh bharati @ enron  03 / 23 / 2001 06 : 44 pm  to : vkaminski @ aol . com  cc : vince j kaminski / hou / ect @ ect , paulo issler / hou / ect @ ect  subject : the spreadsheet for talon deal  vince ,  here is the spreadsheet for your review .  thanks .  rakesh\",0\n\"Subject: re : visual numerics cnl licensing issues  anita ,  could you please arrange for the purchase of the following software by  coordinating with mike ?  thanks .  rakesh  - - - - - - - - - - - - - - - - - - - - - - forwarded by rakesh bharati / na / enron on 03 / 30 / 2001  10 : 10 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  mike bothwell on 03 / 30 / 2001 08 : 58 : 20 am  to : rakesh . bharati @ enron . com  cc :  subject : re : visual numerics cnl licensing issues  rakesh ,  thank you very much for selecting visual numeric ' s imsl cnl . attached is a  revision of the quote i previously sent , reflecting a change in the  quantity . if you have any quesitons , please contact me .  thank you ,  mike bothwell  account manager  visual numerics inc .  phone : 713 - 954 - 6423  fax : 713 - 781 - 9260  cell : 713 - 417 - 9069  mbothwell @ houston . vni . com  visual numerics celebrates 30 years  as an independent software vendor  - - - - - original message - - - - -  from : rakesh . bharati @ enron . com [ mailto : rakesh . bharati @ enron . com ]  sent : thursday , march 29 , 2001 6 : 05 pm  to : mike bothwell  subject : re : visual numerics cnl licensing issues  mike ,  we have decided to go ahead with the purchase of a single license of imsl  libraries ( c / c + + ) for pc . i believe that would be cnl 4 . 0 forpc . let me  check the cost for the license before we finalize it as i have mislaid your  previous e - mail about the cost . it is my recollection that it is less than  $ 1500 . please e - mail to confirm with the precise number so we can proceed  wih that .  thanks ,  rakesh  mike bothwell on 03 / 29 / 2001 12 : 56 : 03 pm  to : \"\" ' rakesh . bharati @ enron . com ' \"\"  cc :  subject : visual numerics cnl licensing issues  rakesh , i ' m just following up to see how things looked on this . any change  in status ? let me know i can furhter help you .  best regards ,  mike bothwell  account manager  visual numerics inc .  phone : 713 - 954 - 6423  fax : 713 - 781 - 9260  cell : 713 - 417 - 9069  mbothwell @ houston . vni . com  visual numerics celebrates 30 years  as an independent software vendor  rakesh ,  as we discussed , the cnl 4 . 0 pc libraries are not license managed . version  5 will be . the pc version 4 . 0 can be installed on a network drive and  called from networked pcs . as expected , we would ask that enron honor the  license agreement by allowing only the number of simultaneous uses  permitted  by the license . version 5 . 0 will be license managed and can be licensed as  node locked or floating .  with regard to unix licensing , the current version of cnl for unix is  license managed . it can be licensed as node locked or floating . if you  install the libraries on a unix server as node locked , the number of  simultaneous sessions on that server is not limited except by the  capabilities of the machine . a floating unix license would be checked out  by the individual user to be executed on a local machine .  also as mentioned , your investment is protected by allowing you to upgrade  in the future by paying only the price difference between your current and  desired platforms . this upgrade option only applies to licenses covered  under support .  if you have any additional questions , please let me know . i look forward  to  providing you the best math and statistical libraries available today to  help you solve your problems and understand your data .  best regards ,  mike bothwell  account manager  visual numerics inc .  phone : 713 - 954 - 6423  fax : 713 - 781 - 9260  cell : 713 - 417 - 9069  mbothwell @ houston . vni . com  visual numerics celebrates 30 years  as an independent software vendor  - vni - mb - enro - 014 - 1 03 - 30 - 2001 . doc\",0\n\"Subject: fw : london work  hi ,  how are you ? london seems to be the same as when i left in august - no sun , cold , serious looking people , expensive , etc . in addition , we have had may day riots , a post office bombing , train strike , etc . not to mention all the excitement in enron credit .  it would be nice to know who i am supposed to be reporting to . i am getting loads of conflicting messages - as illustrated in the forwarded email from vasant . according to you and slava , the strategy paper / duffie report seems to be a higher priority . however , vasant seems to indicate ( in his forwarded email ) that this is not the priority at the moment .  in addition , there seems to be lots of chaos in enron credit - not only in the houston office , but even more so in the london office . this brings to mind a russian proverb i learned from slava when he expressed his views on the current state of enron credit - \"\" a fish rots from the head . \"\"  finally , i would like to know exactly what you want me to write in this duffie report : do you want to hear what enron credit would like to hear - that all they need is for us to develop a private firm model for their exisiting \"\" infrastructure \"\" ? or do you want to hear what i really see , hear , read , etc . ? if the latter is true , then i may need to write two reports , because what i am learning does not look too good and would probably not make the enron credit personnel too happy .  well , i think i have said enough for now . look forward to your feedback .  thanks ,  iris  - - - - - original message - - - - -  from : shanbhogue , vasant  sent : friday , may 04 , 2001 3 : 39 pm  to : mack , iris  cc : dhar , amitava  subject : london work  hi iris ,  amitava must have told you that both he and i are getting swamped with work here . as a result , we expect you to take the lead in scoping the enron credit project and making sure the infrastructure is readied . you should also make sure to understand the econometric / data analysis software side of the project - - this is probably more important than preparing a document for duffie right now . you should definitely sit with ben / george and actually run the software with them to get a feel for how it is to be used . but we also need to be able to try out potential other ways of analyzing data . both amitava and i will help as best as we can , and answer any direct questions , but we will have limited time to review documents , etc . i expect amitava to get heavily involved once data starts coming , but we expect you to have already set up the infrastructure etc for the data .  hope the trip is going well . would you be extending the trip for some more time ?  vasant\",0\n\"Subject: re : high - end desktop computing ?  hi mark :  please order an 800 mhz machine with 512 mb of ram , and a large ( 17 \"\" + )  flat - screen monitor for clayton vernon . our co . # is 0011 and our rc # is  100038 . ( is the large screen a 17 \"\" or a 20 \"\" ? )  if you need anything else , please let me know .  thanks mark and have a great day !  shirley  3 - 5290  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 03 / 20 / 2000  07 : 27 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  03 / 17 / 2000 04 : 25 pm  to : shirley crenshaw / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , clayton vernon / corp / enron @ enron , vasant  shanbhogue / hou / ect @ ect  subject : re : high - end desktop computing ?  shirley ,  yes , it will be a swap of one machine for another .  vince  shirley crenshaw  03 / 17 / 2000 12 : 17 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : high - end desktop computing ?  vince :  is this ok to order ?  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 03 / 17 / 2000  12 : 17 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  clayton vernon @ enron  03 / 17 / 2000 09 : 34 am  to : mark davidson / corp / enron @ enron , shirley crenshaw / hou / ect @ ect  cc :  subject : re : high - end desktop computing ?  mark -  shirley will order an 800 mhz machine with 512 mb of ram , and a large ( 17 \"\" + )  flat - screen monitor for me .  clayton  mark davidson  03 / 17 / 2000 08 : 52 am  to : clayton vernon / corp / enron @ enron  cc : shirley crenshaw / hou / ect @ ect  subject : re : high - end desktop computing ?  clayton -  sorry it took so long to get back to you . there are a couple of things to  keep in mind :  - enron it supports enron equipment .  - all equipment must be purchased through \"\" enron it purchasing \"\"  our current high end desktop is a 800 mhz pentium iii machine with 128 m of  ram . you can bump up the ram to whatever you feel is appropriate . when the lghz processors come out ( in the very near future ) that will become our  standard .  what we want to avoid is getting equipment that we do not have a image for .  the \"\" image \"\" is the complete package of software that we put on a machine when  it is deployed . if you go out and buy a machine that we do not have a image  for , we can ' t support it for a multitude of reasons .  hopefully this answered your questions / concerns .  if not , please call me so that we can discuss this further .  thanks  mark davidson  x 39038  clayton vernon  03 / 14 / 2000 03 : 39 pm  to : mark davidson / corp / enron @ enron  cc :  subject : high - end desktop computing ?  mark -  i have developed a model for enron that requires ultra - high - end pc  performance ( it does many calculations in excel ) , and my boss has authorized  me to buy whatever pc i need . i ' m looking at the compaq 850 , but richard ( our  floor rep ) says no pc ' s over the 600 series will be supported by it . i need  to resolve this issue ; we are sophisticated buyers , we know the type of  machine we want , and we have the money to pay for it .  sincerely ,  clayton vernon  manager , research\",0\n\"Subject: re : corrections to chap . 3 from grant masson  grant ,  thanks for that . i hope you had a good holiday - we were all very jealous of  you at dinner the other evening .  i made some changes for it to fit in with our notation , etc , but apart from  that its a fin piece of work . if you could just answer the questions posed  by vince , and send me the final figure then we are a go ( all of ours are now  finished ) . would you be happy with the following ?  3 . 5 summary  in this chapter we have discussed volatility modelling and estimation in the  energy commodity markets , emphasising the difference between this market and  financial markets . we discuss the estimation of volatility from both  historical and implied data , again from the perspective of the energy user .  we further discussed a number of stochastic volatility models and have shown  how to estimate the models via ordinary least squares and maximum  likelihood . we have tested our estimation techniques on a number of  examples drawn from energy markets including electricity , gas and crude oil .  best regards .  chris .  - - - - - original message - - - - -  from : grant masson  to : chris strickland  sent : tuesday , july 25 , 2000 9 : 08 am  subject : re : corrections to chap . 3 from grant masson  >  >  > chris :  >  > i understand from vince that ronnie did not send you anything . apologies  for  > that . i will get the last section rewritten quickly and off to you within  the  > next couple of days . sorry that this has taken so long , and frankly ,  apologies  > for the poor quality of my bit . if you have any suggestions on how to  improve  > it , please let me . likewise , i hope that you will make changes as you  see fit  > to improve and clarify things .  >  > regards ,  > grant .  >  >  >\",0\n\"Subject: frank qian - cancelled interview schedule  frank qian ' s interview scheduled for friday , february 9 , 2001 has been  cancelled . i ' m sorry about the inconvience . if you have any questions  please let me know .  thanks  sasha divelbiss  58714\",0\n\"Subject: european power trading  dear mr kaminski ,  ?  i thought you might be interested in a new study we have just published on  european power trading . ? the executive summary of the study is attached here  for your reference .  ?  best regards ,  ?  benjamin tait  prospex research ltd .  london , england  tel : + 44 ( 0 ) 20 7460 3897  fax : + 44 ( 0 ) 20 7385 7538  e - mail : ben @ prospex . co . uk  web : www . prospex . co . uk  ?  prospex research is an independent research company based in london . we  analyse strategic and financial issues for the european power business . our  work includes reporting , consulting , power trading recruitment and  conference development . to find out more about us , please visit our internet  site at www . prospex . co . uk  - executive summary ept . pdf\",0\n\"Subject: analyst candidate mitra mujica  if mitra mujica accepts the offer from the aa program , i would like you to  interview her at your earliest convience .  thanks for your help .  regards ,  maureen  - - - - - - - - - - - - - - - - - - - - - - forwarded by maureen raymond / hou / ect on 02 / 16 / 2001  05 : 43 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron north america corp .  from : andrea richards @ enron 02 / 16 / 2001 04 : 42 pm  to : maureen raymond / hou / ect @ ect , gwyn koepke / na / enron @ enron  cc : jana giovannini / hou / ect @ ect , shelly butler / hou / ect @ ect , althea  gordon / na / enron @ enron , teresa bosien / hr / corp / enron @ enron  subject : analyst candidate mitra mujica  maureen ,  mitra mujica , an analyst candidate from super thursday 2 / 15 , has been  reserved for your group . please note that this placement is contingent upon  the candidate accepting the analyst program ' s offer . mitra will have two  weeks to respond and we will contact you once her response is received .  please contact me if you have any questions .  thank you ,  andrea richards  career development  associate & analyst program  x 3 - 6499\",0\n\"Subject: re : prc feedback forms  gina ,  i shall be glad to speak with you . shirley crenshaw will call you to set up a  meeting .  vince  from : gina corteselli / enron @ enronxgate on 04 / 16 / 2001 01 : 12 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : prc feedback forms  mr . kaminski :  i would like to try to get on your schedule for a few moments this week to  discuss the draft prc 360 evaluation forms ( provided below for your info ) to  ensure that the criteria and skills and behaviors we have used are adequate  for your employee population . the generic forms that were presented at the  prc committee meeting a week ago may best reflect commercial employees , and  to some extent commercial support employees , and may not be entirely  appropriate for employees in some of the specialized technical and technical  areas . i would appreciate your input on this so that , if possible and time  permitting , we can try to tailor the form to suit needs across the  organization .  one simple solution may be to add a skills / behaviors block requesting  evaluation and feedback on the employees specific job and performance ,  another solution would be to add job specific behaviors and descriptors to  the list of those already developed ( second attachment below ) . i would  welcome your thoughts and a few moments of your time to chat with you about  this .  many thanks ,  gina corteselli  global performance management  713 853 - 3377  713 569 - 5589 ( mobile )\",0\n\"Subject: the light at the end of tunnel !  hi all ,  after all the hard work , we are at time of harvesting ! but as we all know  that there still a few more hurdles ahead of us in order to release credit  reserve model at end of march , but on the bright side , vince kaminski has  promised us a big feast after we push the product out of door . so let commit  our self to do one last dash to the finish line !  here i composed a list of task that we need to accomplish for the release ,  let hit the items on the list and get it over with  continue the comparison test between old and new model winston  testing of theoretical deals ! finish the comparison between the theoretical  value and model valuation ! tanya t . winston j .  making the default probability table a configurable component and runtime  parameter . winston j . , ramesh g .  simulation dimension change for different analysis requirement , default path  5000 max and price path 1000 max . winston  interface to run the credit reserve in grms system ( for now ) ramesh  run time option , applying stress scenario on input curves for any or all  curves ( sensitivity analysis ) winston  runtime option , curve replacement for any or all curves ( attribution  analysis ) winston  validation of different insurance plan tanya , winston  intra - month position validation to see the impact of excluding of  intra - manoth position on credit reserve vicent tang , ramesh  exchange deals handling ( are they using the highest e - rating ? ) ramesh  saving credit reserve result , please grant winston and xiaojun the privilege  to save the result into production database , ramesh , winston , xiaojun  credit reserve on legal id , based on the data clean up of all spreadsheets (  not scheduled ) !  deployment plan . one credit instance at any time until we get out new  computing server ( probably in april time frame )  this list may be an ever changing list and may also incomplete , please let me  know if i missed anything or any deletions and additions ! please let me know  if anything i can clarify .  thanks !  jonathan\",0\n\"Subject: summary of last 6 months projects  dear dale , stinson & vince ,  i would like to take this opportunity to communicate some information to  summarise the projects of the past six months . firstly , by all accounts it  has been an amazing few months for me - i believe that i have kept a large  number of commercial group heads very happy . however , not all are aware of  my activities , so , many people ( e . g . john sherriff , richard lewis , steve  young etc . ) will not know of everything i have done . for example the amount  of work that i put into the inflation models and the extent to which i was  critical for the successful building of those curves and the consequent  impact ( o 7 + million for ql ) and similar large p & l swings for eastern contract  optionality ( short virtual power station ) based upon my uk power vol curve  generator .  for your benefit , i have compiled a shortlist of the main projects worked on  over the past five / six months :  1 ) inflation curve modelling ( february and march + april internal audit +  june external audit )  2 ) uk power monthly vol curve generator & ideas for half - hourly vol curve  3 ) nordic power monthly vol curve generator  4 ) energydesk . com models & support  5 ) real options : options to build / extend power stations ( e . g . wessex deal ,  anti - freeze project )  6 ) continental power non - generic options ( using arbitrary trader - specified  distributions )  7 ) global products : non - generic options modelling and new commodity forward  curve construction ( benzene fwd curve from naphtha )  8 ) exotic options library upgrade / model test / bug fixes ( e . g . testing new / old  asian models )  9 ) continental gas volatility curve construction  10 ) communication objective i : two presentations to enron europe staff , one  to oslo office  11 ) communication objective ii : meetings to gather information and present  results  12 ) fas 133 : working with internal and external auditors on matching  financial and physical ( accrual ) hedges - hedge effectiveness  13 ) oslo trip : bringing oslo up to speed on exotica and option valuation  14 ) houston research staff : co - ordinating communication / meetings to maximise  productivity  15 ) valuation / marketing of power put options for banks that hold senior and  sub debt in merchant power plant  meeting breakdown :  initiated by me it is  clear that i have been critical to large p & l sensitive projects and hope that  i can continue to help enhance earnings going forward .  regards ,  anjam  x 35383\",0\n\"Subject: meeting with vince  dear shirley ,  as you may know , i am taking the research over from steve ( i have always  thought that steve ' s movement from the research is a big loss for all us ) .  please , could you help us arrange the meeting with vince when he is here in  london .  thank you very much for your future help .  slava\",0\n\"Subject: re : pserc industrial advisory board meeting invitation  mr . kaminski ,  thank you for responding . i ' m sorry you won ' t be able to attend , but very  much appreciate your willingness to reconsider your decision about  participating in pserc . we will certainly keep you informed about on - going  and new pserc activities that may be of interest to enron .  best regards ,  dennis ray  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : monday , april 16 , 2001 2 : 02 pm  to : djray @ engr . wisc . edu  cc : vince . j . kaminski @ enron . com  subject : re : pserc industrial advisory board meeting invitation  dear mr . ray ,  i regret to inform you that due to very heavy workload we cannot attend  the power systems engineering research center ' s  upcoming industrial advisory board meeting in oak brook .  our work load does not leave us much time to get involved  with pserc at this moment . we would very much like to stay  in touch and plan to reconsider our decision in the second half of this  year .  vince kaminski  \"\" dennis ray \"\" on 03 / 27 / 2001 04 : 46 : 44 pm  to : \"\" vince kaminski \"\"  cc :  subject : pserc industrial advisory board meeting invitation  mr . kaminski ,  greetings . bob thomas , shmuel oren and i invite you to attend the power  systems engineering research center ' s upcoming industrial advisory board  meeting in oak brook , il . it will be held on may 31 - june 1 .  as you know from lance and alex , this is an opportunity to meet university  researchers and industrial members of pserc . the meeting also has  presentations on pserc activities and research projects , pserc business  discussions , current topic discussions , and a tutorial . our current topics  discussion will be on iso / rto issues , and will involve executives from  several isos in dialog with university researchers .  please let me know if you have any questions . we hope to see you there so  that we can talk about any questions you might have about pserc .  dennis ray , ph . d .  executive director  power systems engineering research center  608 - 265 - 3808  ( see attached file : directions . doc )  ( see attached file : iab _ meeting _ may 2001 . doc )  ( see attached file : iab _ registration _ form . doc )  ( see attached file : pserc members . doc )\",0\n\"Subject: re : summer  dear vince ,  thank you for your prompt response . i do realize  that the a i was inquiring about  the possibility of hiring on an individual basis .  again , i greatly appreciate your time . i look  forward to seeing you soon !  regards ,  van\",0\n\"Subject: hello from vince kaminski at enron  shmuel ,  i hope you remember me . i visited you together with aram sogomonian , a  good friend of mine , a few years ago . i am currently responsible , among  other things , for recruiting graduates with finance and / or technical  backgrounds at the university of berkeley . i would be glad to give you a  call and talk more about the details of our program . my colleague ,  ashleybaxter , from the analyst / associate program at enron would join me  as well .  i am sending you a copy of the brochure about the analyst / associate  program .  vince kaminski  vincent kaminski  managing director - research  enron corp .  1400 smith street  room ebl 962  houston , tx 77002 - 7361  phone : ( 713 ) 853 3848  fax : ( 713 ) 646 2503  e - mail : vkamins @ enron . com  - enronl . pdf\",0\n\"Subject: virus update : please read  there are many different variations of the \"\" iloveyou \"\" computer virus still  being reported . the it infrastructure team is continually updating our virus  software as new versions become available , but it is extremely important that  you do not open any attachments that you do not regularly receive from  business associates . even business associates you are very familiar with  could be sending you the virus without knowing it , so unless you are  expecting an email from them with an specified attachment please do not open  it . if you are unsure whether to open an attachment please do not open it .  call your helpdesk to ask any questions and to get verification if required .  we may need you to log out and log back in during the day as new anti virus  updates become available . we appreciate your cooperation while we all work  to keep enron ' s computing environment secure .  please note the following enron policies regarding viruses :  email  malicious code ( virus ) screening  in addition to the enron requirement for email attachments ( received and  sent ) to be screened for malicious code ( viruses , trojan horses , etc . ) , users  of enron information resources are required to detach email attachments that  are received on to their hard drive for local virus screening purposes .  all executables ( * . bat , * exe , * . com , * . vbs ) files should never be launched  from email without first consulting with it .  virus alerts  the internet is constantly being flooded with information about computer  viruses and trojan horses . however , within among real virus notices are  computer virus hoaxes . while these hoaxes do not infect systems , they are  still time consuming and costly to handle . it only wastes bandwidth and  unnecessarily alarms other computer users .  please , do not perpetuate unconfirmed warnings about viruses and trojan  horses . if you receive an invalidated warning , don ' t pass it to all your  friends , pass it to your it computer security manager to validate first .  enron  information risk management  713 - 853 - 5536\",0\n\"Subject: hib visa application - sevil yaman  sevil ,  please , make sure you provide this information asap .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 25 / 2001  12 : 35 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  margaret daffin  04 / 25 / 2001 12 : 04 pm  to : sevil yaman / corp / enron @ enron  cc : norma villarreal / enron @ enronxgate , vince j kaminski / hou / ect @ ect , ramona  perkins / enron @ enronxgate  subject : hib visa application - sevil yaman  sevil : please let me know when you will be sending me the information for  your hib visa ?  thanks  margaret  - - - - - - - - - - - - - - - - - - - - - - forwarded by margaret daffin / hou / ect on 04 / 25 / 2001  12 : 03 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  margaret daffin  04 / 10 / 2001 04 : 04 pm  to : sevil yaman / corp / enron @ enron  cc : norma villarreal / enron @ enronxgate , vince j kaminski / hou / ect @ ect , ramona  perkins / enron @ enronxgate  subject : hib visa application - sevil yaman  sevil : in order that we may proceed with your request for permanent  residency , our immigration attorneys have advised us that we need to process  the hib visa , prior to the permanent residency application .  therefore , i am attaching an hib visa questionnaire that i would like you to  complete and return to me , together with copies of all of the documents  listed at the bottom of the form .  please bring these to me in 3 ac 2026 a .  please let me know if you have any questions at x 55083 .  thank you  margaret\",0\n\"Subject: revised aga forecast for 6 / 23 is 65  mike ,  i refit the molecular model incorporated last week ' s data , the revised number  for this week is 65 ,  ( dropped 3 bcf compared to last fit ) , see graph .  let us see what is the real number today .  zimin\",0\n\"Subject: re :  roman ,  i shall be traveling next week ( europe again ) , mon thru fri .  it ' s power 2000 conference in paris .  i have many trips to different places later during october  ( berkeley , philadelphia , etc . ) . these are shorter , 1 - 2  day trips . please , let me know when you come to houston .  i shall keep you posted about my itinerary as  it becomes more certain .  vince  roman kosecki on 09 / 27 / 2000 09 : 08 : 39 am  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc :  subject : re :  that is so much easier , isnt it ( i mean english )  my office number inb nj is ( 973 ) 733 - 2771  in cal ( 562 ) 951 - 1790  my home number is ( 201 ) 222 - 0435  i will be in ny till friday , and then will stay in long beach for a few  weeks .  hope you had a great time in poland .  it would be really nice to have some italian pastry and a double espresso : )  let me know when you are in town .  roman  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : wednesday , september 27 , 2000 9 : 07 am  to : roman kosecki  cc : vkaminski @ aol . com  subject : re :  roman ,  i shall type in english ( faster ) .  i was trying to locate you for some time after you left scem . i shall be  glad to  meet for dinner / coffee and chat . please , send me your phone number .  i have just come back from poland and go through my mail . i shall try to  reach you later  this week .  vince  roman kosecki on 09 / 25 / 2000 12 : 06 : 12 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject :  hello vince ,  nie bardzo wiem czy pisac po polsku czy po angielsku : )  co u ciebie slychac ?  u mnie troche zmian jak ze juz nie pracuje w scem , a przenioslem sie do  mieco ( a small marubeni backed energy - america trading company ) . bardzo  rozne od scem . najbardzij przypomina mi scem na poczatku z joe , jak bylo  20 - 30 osob . sa i minusy i plusy . troche structure i research ale przede  wszystkim weather . trrovhe latam miedzy east i west bo sa officy w obydwu  miejscach . california jest ok w zimie : ) .  na bardziej personalnym froncie ; pamietasz dinner na ktory poszlismy  kiedys na conferencji w ny z catherine ( she used to work for williams -  works for morgan stanley now ) , we are dating ( for a while ) . it is a  good story how we met . so we owe you dinner : )  jak bylem w atlancie to pracowala dla mnie christa grey . bedzie teraz  konczyla grad school in international relations ( with eastern european  slant ) , i zastanawia sie czy sa jakies mozliwosci polaczenia tego co  robila  ze \"\" wschodem \"\" . co robila to bylo przede wszystkim vb implementations  modeli  , ( roznego rodzaju ) , web based data collections , basic research , teraz  jest w gas structuring etc . she speaks russian and was in ukraine / poland  few times on peace corp assingments . she is very bright and dedicated .  myslalem zeby ja zwabic do californii ale ten eastern european pociag jest  u  niej silniejszy niz u mnie : ) . i have here resume , wiec jak bys myslal ze  jest jakis fit i will foreward it to you .  troche tak mieszanka pisze , przepraszam  bede chyba w houston w pazdzierniku to moze bysmy sie mogli spotkac .  latwiej pewnie by bylo w ny ( mieszkam po nj stronie ( rent jest inny niz w  atlancie : ) ( 201 ) 222 - 0435 ) , wiec daj mi znac jakbys mial czas i ochote .  thanks  roman\",0\n\"Subject: john d . martin - chair of finance at baylor university  good afternoon ladies ,  i am working with vince kaminski , director of research , enron corp . and john  martin , chair of finance at baylor university to schedule one hour time slots  with ken lay , jeff skilling and andy fastow .  vince and john martin are jointly authoring a 20 - 40 page paper , written in  the style of a harvard business review piece , about ' transforming enron  corporation as an act of managerial will - the value of active management ' .  attached below you will find a brief outline of the proposed case study ,  although i have requested john martin to provide us with the specific  questions he will be asking all three participants .  we would like to schedule the one hour interviews on the following dates :  monday , december 4 th  tuesday , december 5 th  week of december 11 th  please let me know at your earliest convenience which of the above - mentioned  dates / times works best with everyone ' s calendar . thanks a million .\",0\n\"Subject: wharton business plan competition  vince and jeff ,  who should we list as a judge ? i could list myself to act as the point of  contact and i ' ll also give my comments on the plans , but i think enron ' s  \"\" judge \"\" should be someone in the capacity of evaluating enron ' s early stage  ventures .  please let me know as soon as possible .  thanks !  - - christie .  - - - - - forwarded by christie patrick / hou / ect on 03 / 15 / 2001 07 : 40 am - - - - -  \"\" andrew gaffney \"\"  03 / 08 / 2001 08 : 47 am  to :  cc : \"\" stamer , anne \"\"  subject : wharton business plan competition  dear ms . patrick ,  ?  anne stamer asked me to contact you regarding ? enron providing a judge for  phase iii of the business plan competition . ? phase iii judges are generally  partner - level individuals at venture capital firms , ? managing directors from  investment banks , or other senior individuals ? who have extensive experience  assessing and working with early stage ventures . ? a phase iii judge will  receive five business plans , with the entire judging process requiring 4 - 5  hours during the weeks of april 2 and april 9 . ? i am attaching a document  that describes the competition and judging procedures for phase iii in more  detail . ? we are looking to finalize the list of phase iii judges by march  23 , so if you could please forward either anne or i the name of the  appropriate individual , we can contact them directly with more details . ?  please let me know if you have further questions and we appreciate your  support of the competition .  ?  sincerely ,  ?  andrew gaffney  - phase iii judge info 00 - 01 . doc\",0\n\"Subject: great thanks so much re : avg . monthly electricity prices  i appreciate all your great help . . . merci beaucoup margaret carson\",0\n\"Subject: newsletter , monday 23 oct .  vince ,  i see that you are flying around a lot this week , but i wanted to let you  know how it ' s going with the newsletter . i ' ve scheduled steve bigelow as the  \"\" person of the week . \"\" regarding technical corner , i sent you a copy of  maureen ' s article for your review . bob lee told me he has also sent you  something . i ' d appreciate your guidance on which one to use . i believe  maureen ' s is time - sensitive , so i ' d vote for that one if you ' ve had a chance  to look it over .  i ' m going to be out of town the rest of today and thursday - friday to attend  my uncle ' s funeral in illinois . if you fly over illinois , please wave ! : - )  have a safe trip ( s ) ,  sam\",0\n\"Subject: new gas models preliminary schedule for next week  vince ,  here are the topics that our london folks are interested in .  have a good weekend .  zimin  - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 05 / 26 / 2000 02 : 41 pm  - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron capital & trade resources corp . - europe  from : anjam ahmad 05 / 26 / 2000 08 : 12 am  to : natasha danilochkina / lon / ect @ ect , haakon olafsson / lon / ect @ ect , mark  jones / lon / ect @ ect  cc : zimin lu / hou / ect @ ect , stinson gibner / hou / ect @ ect  subject : new gas models preliminary schedule for next week  dear all ,  please could you confirm your availability for meetings next week as follows : -  wednesday 31 st may  overview of uk gas products to be revalued  a ) wet gas swing deals ( teeside delivery )  b ) liquids extraction options  time : 9 . 30 am to 11 . 30 am ( 1 1 / 2 hrs ) , swl 001  zimin , anjam , natasha  wednesday 31 st may  overview of uk gas products to be revalued  c ) virtual storage ( enbank )  d ) dry gas swing deals  time : 3 pm to 4 . 30 pm ( 1 1 / 2 hrs ) , nel 002  zimin , anjam , natasha  wednesday 31 st may  simulation of uk gas forward curve  time : 5 pm to 6 pm ( 1 hr ) , nel 002  zimin , anjam , natasha , haakon  thursday lst june  model modifications to accomodate uk products  time : 9 . 30 am to 11 . 00 am , nwl 003  zimin , natasha , anjam  friday 2 nd june  it requirements for trading / rm model  a ) booking / mtm  b ) exposures and hedge ratios calculation  time : 9 . 30 am to 11 am , nwl 003  zimin , mark jones , natasha  invitations to follow . . .  thanks ,  anjam  x 35383\",0\n\"Subject: re : credit trading brought to you by bryan seyfried  i am happy that the legal issues have been addressed and discussed with bryan  and john and i will sign off on the approval .  michael  from : ted murphy 08 / 02 / 2000 22 : 16  to : steve w young / lon / ect @ ect , fernley dyson / lon / ect @ ect , michael r  brown / lon / ect @ ect , william s bradford / hou / ect @ ect , john sherriff / lon / ect @ ect ,  vince j kaminski / hou / ect @ ect  cc : rick buy  subject : credit trading brought to you by bryan seyfried  my understanding is that bryan will be in houston to present his strategy  regarding credit trading for approval under an interim trading policy -  signed off by jeff and rick . before making any recommendation to jeff , rick  wants to be sure that the people on the list above are comfortable with the  activity and will be willing to signoff on the approval . given that bryan  will be physically here , i am requesting that you e - mail your concurrence to  me no later than tommorrow . otherwise rac will not present to jeff for  approval .  thank you for your help in puttting this together and making it a success !  ted\",0\n\"Subject: vince ,  my rice e - mail address is sokolov @ rice . edu  i will be checking it regularly during the next month .  my schedule for decmber / january is as follows :  last day of finals : december 18  first day in the office : december 29  vacation days : december 30 - january 15  second day in the office : january 16  jason sokolov\",0\n\"Subject: re : livelink  moyez ,  we are very anxious to get set up and start using livelink for tracking and  documenting our projects , so thanks for the reminder . i have put together  an initial list of attributes for our research projects . the list in in the  attached spreadsheet . it would be great if you can set up these attributes  for us in the test environment . this would allow us to make any obvious  changes before moving to production . let me know what your schedule would  be in rolling this out .  my brief comments in the spreadsheet may not be clear , so feel free to give  me a call at x 34748 to clarify anything .  again , thanks for your help .  stinson  enron technology  from : moyez lallani @ enron 01 / 31 / 2001 07 : 15 am  to : vasant shanbhogue / hou / ect @ ect , stinson gibner / hou / ect @ ect  cc : n jessie wang / enron _ development @ enron _ development  subject : livelink  vasant / stinson  just following up to check on your progress / evaluation of livelink as your  document repositiry . please let me know if i can be of further assistance .  moyez lallani  x 5 - 3683\",0\n\"Subject: seismic data via satellite  i am preparing a summary or our thursday discussions to be used as a  background piece for discussion / brainstorming with oil traders . i will  circulate this for review / correction later today , or , at the latest , monday .  greg , you mentioned that enron had participated in a speculative survey in  the gulf of mexico that was successful . it might be useful to get more info  on this . terms , return realized ( over what time frame ) , why we have not  continued to do this , etc .  also , from your comments , many , if not most of the 3 - d surveys are in deep  water . i read recently that shell , i believe , is participating in a deep sea  drilling / extraction project in the gulf . what oil price is required to make  these kinds of projects viable financially ?  bob lee\",0\n\"Subject: impending visit july 5 - 7  vince :  i plan to be in houston on july 5 - 7 . i would like very much to get together  with you and perhaps your investment guy on friday morning on the 7 th if you  and / or he have the time or perhaps on the 5 th in the afternoon . i would  like to continue the discussions about your using marketpoint and about your  investment guy considering marketpoint if he is interested . when you see  the progress we have made , i think you will agree that it merits  consideration as a part of enrononline . com as well as a profitable  investment in its own right . it is still in the situation where it can be  provided exclusively to whomever i choose ; i have been very , very careful  how i have promoted it so that i do not get committed to a second - rate  partner .  i also have what i think is a fundamentally new , general markovian forward  optionality evaluator . i wrote my ph . d . dissertation at stanford in the  1970 s ( defended with honors ) in semi - markovian decision processes during the  heyday of that research , and i have seen direct applications in optionality  evaluation . i think you will be fascinated to see and review it . it is  presently implemented in prototype form and it could be made available to  the first large retainer client on an exclusive basis who is sufficiently  interested . if you want to be that retainer client , that would be of  interest to me .  give me a shout via return email or by my cell phone at 650 . 218 . 3069  regarding schedule . i am out of town this week but available via email or  phone at the above addresses .  i really hope we can get together that week if we possibly can . thanks very  much for considering my request , and thanks very much for being the go  between with your investment guy . i deeply appreciate it . i hope to see  you on the 5 th or 7 th .  dale nesbitt\",0\n\"Subject: re : good news - cabinet approval for power trading  seethayya ,  this is great news . credit goes to all those who worked towards making this  possible , especially ramu , mr . mehta , jane , heidi and yourself who went  through draft after draft of the note to chidambaram .  this is good news for us ! !  regards ,  sandeep .  k seethayya  02 / 06 / 2001 08 : 35 am  to : neil mcgregor / enron _ development @ enron _ development , jane  wilson / enron _ development @ enron _ development , sandeep  kohli / enron _ development @ enron _ development , jimmy  cc : wade cline / enron _ development @ enron _ development , ashok  mehta / enron _ development @ enron _ development , mohan  gurunath / enron _ development @ enron _ development , shubh  shrivastava / enron _ development @ enron _ development , heidi  hellmann / enron _ development @ enron _ development , rajesh  sivaraman / enron _ development @ enron _ development , pancharatnam  ramaswamy / enron _ development @ enron _ development , arvind  rawat / enron _ development @ enron _ development , ritu  subject : good news - cabinet approval for power trading  team : today union cabinet has approved the proposal of ministry of industry  to allow foreign equity participation in power trading . this was conveyed by  secretary ( power ) during his meeting with wade . in normal course , the  proposal was slated to be coming up for cabinet in next few weeks . keeping in  view the developments of dpc invoking state guarantee , perhaps cabinet has  hurried it up .  the exact proposal approved was - \"\" to allow foreign equity participation  through automatic route upto 100 % for trading in power sector , subject to  prevailing laws . \"\"  irrespective of urgency of this approval to us , the best thing is that we are  getting the approval without draft electricity bill , 2001 being finalised . as  most of you are aware , initially the proposal was stalled at fipb level  pending finalisation of electricity bill . then it has gone to group of  ministers who had taken a positive approach and now the cabinet has cleared  it .  now fipb either issue an approval to enron llc or advise us to avail  automatic route . we will have one of it , culminating great team work .  seethayya\",0\n\"Subject: seeking intelligent insight  it looks to me like the market for distributed computing will displace heavy  iron within the next several years . the structure is still very early in its  development , but i think there will be commercial opportunities for enron in  bandwidth and electricity . i would be interested to know what issues you two  would see as the greatest hinderences and possibilities for these markets .  if you would like , please feel free to comment on the attached documents .  thanks ,  mark\",0\n\"Subject: visit ?  dear vince ,  i very much enjoyed speaking with you at lunch , if only briefly , at the  \u0001 see  http : / / www . stern . nyu . edu / ~ fdiebold .  the upshot : it seems to me that we would both benefit from a more  extensive conversation . i  would be happy to visit you in houston to learn more about your  operations , and to tell you more  about mine . please do let me know if you are interested .  best regards ,  frank diebold  - -  francis x . diebold  armellino professor of finance  stern school of business  new york university  44 west 4 th street , k - mec , suite 9 - 190  new york , ny 10012 - 1126  fdiebold @ stern . nyu . edu  http : / / www . stern . nyu . edu / ~ fdiebold  ( 212 ) 998 - 0799 office telephone  ( 610 ) 585 - 4057 voicemail  ( 212 ) 998 - 0351 fax\",0\n\"Subject: fortnightly on - line  dear mr . kaminski ,  this is to inform you that your \"\" public utilities fortnightly \"\" on - line  subscription is now ready for your use . this on - line service is good for 30  days .  user name - 2000208  password - quality  thank you .  janet clark  customer service rep\",0\n\"Subject: listo 319  isranir @ rice . edu , demianen @ rice . edu , tbal 93 @ yahoo . com , maue @ rice . edu ,  loughrid @ rice . edu , jblantonjr @ yahoo . com , gjohnson @ rice . edu ,  emchombo @ rice . edu , nazareth @ rice . edu , vanstone @ rice . edu , ganguzza @ rice . edu ,  nelsonb @ rice . edu , sssmith @ rice . edu , wheelock @ rice . edu , westmore @ rice . edu ,  gaudette @ rice . edu , otaylor @ rice . edu , dikeman @ rice . edu , jettke @ rice . edu ,  litton @ rice . edu , chilkina @ rice . edu , helms @ rice . edu , wankhade @ rice . edu ,  monfan @ rice . edu , kostya @ rice . edu , pcp @ rice . edu , yueguo @ rice . edu ,  nlwbio @ rice . edu , zhangn @ rice . edu , rishad @ rice . edu , yoshiura @ rice . edu ,  howard @ rice . edu , dayangd @ rice . edu , wuwei @ rice . edu , so @ rice . edu ,  wooddy @ rice . edu , lamas @ rice . edu , tbalestrery @ houston . rr . com ,  hingoran @ rice . edu ,  planck @ rice . edu\",0\n\"Subject: delainey presentation g . masson  vince :  here is tanya ' s and my presentation . it is a bit long and deliberately a bit  bombastic . this is deliberate to hammer home the fact that my group provides  power trading support for 5 continents as well as support for corporate level  risk control . if i have over done it , please let me know or else feel free  to make modificaitons .  grant .\",0\n\"Subject: enron europe organisational changes  once the arcos plant in spain is financially closed ( expected in q 2 of this  year ) eric gonzales will be moving back to houston to work exclusively on  co - managing enron ' s lng markets . we are very appreciative of eric ' s efforts  in europe since early 1998 and look forward to continuing to work very  closely with his lng team in the coming years . from this point forward eric  will focus his remaining time in europe exclusively on financially closing  arcos .  we are therefore making the following changes immediately . the origination  responsibility for italy will be moved under eric shaw . ricardo bortolloti  will continue in the role as italian country manager and will report to eric  shaw . mariano gentilini will become our country manager for spain and  portugal and will report directly to the enron europe office of the chairman .  the arcos power project is likely to create a large gas to power spread  position and so we have asked paul mead to assume the added responsibility  for our natural gas risk positions in spain . this position is much more  likely to be supplied and influenced by lng rather than continental gas  markets and paul will work quite closely with both enron global markets and  the continental gas team .  ross sankey who has been managing our marketing efforts in holland will also  head a new organization that will focus on subsea interconnector and power  transmission opportunities across europe . among the prospects his team will  pursue include projects from norway to the uk , sweden to the continent ,  and bidding on existing french interconnector capacity . he will report to  eric shaw for the holland markets and to richard lewis for the transmission  responsibilities .  finally the continental gas team is interacting far more with our uk gas team  than our power teams on the continent . therefore david galagher who manages  our continental gas team will now report directly to richard lewis .  we have aggressive income targets for this year and anticipate that these  changes will create the right links to optimize our performance . please help  make these changes as smooth as possible .  john sherriff  michael brown\",0\n\"Subject: pjm adds ny prices to edata  message sent from the pjm - customer - info mailing list at  pjm - customer - info @ majordomo . pjm . com :  pjm has launched a pilot version of edata which includes data from the  new york independent system operator . the beta - test period for the pilot is  expected to last approximately 90 days as pjm evaluates the success of using  cross - iso data in edata . if the pilot proves successful , pjm may add data  from  other isos in the future .  this pilot version of edata is a result of the collaboration among the  isos created by the memorandum of understanding signed last year . through the  iso mou process , stakeholders have asked the isos to improve seams issues ,  create like user interfaces , and make it easier to do business between the  isos .  the addition of other iso data to edata has several benefits to users  including  consolidated information , ease of use , less technical support required , and  improved customer service . real - time prices , forecasted / actual loads , tie  line  schedules , and transmission limits are all possible types of information that  may be included in the future .  edata was implemented in october 1998 . there are currently more that  1700 registered users representing over 200 companies . users include  marketers ,  utilities , control areas , state and federal regulators , educational  organizations , financial institutions and others . the tool continues to  attract  30 to 40 new registered users each week . normally , 100 - 300 users are  simultaneously logged onto the system . to become an edata user , submit new  user  information from the edata log in screen from the pjm web site at www . pjm . com .  please do not reply to this message . if you have a question for pjm customer  relations and training , please send an e - mail to custsvc @ pjm . com .  to unsubscribe from this list , send an e - mail to majordomo @ majordomo . pjm . com  containing only the following line in the body of the e - mail :  unsubscribe pjm - customer - info\",0\n\"Subject: sap timesheets  hello everyone :  thanks to krishna we have come up with a plan that i believe is going to  save everyone some time . we have created an excel spreadsheet , with  the time sheet form , and there is a tab for each of you , in alphabetical  order  by first name across the bottom of the spreadsheet .  the spreadsheet is saved in o : \\ research \\ common \\ sap timesheets \\ mmm - dd .  ( mmm = month and dd = 15 th or end of the month time period - i . e . , this time  period is 7 / 16 - 7 / 31 / 00 ) . the regular 8 hour days have already been entered  for each of you . therefore , if you have no exceptions you just need to type  in  your name in the bottom right corner by the place marked ( emp sign ) , and save  it .  if you do have exception time , simply open that particular pay period and  show the exception time ( off - duty , vacation , overtime , sick time , jury time ,  family  time , etc . ) that you may have had during that pay period . some of the codes  have already been entered for you , the rest are listed at the bottom of the  spreadsheet and just change the ones that are already there for whatever  applies .  if you are an exempt employee you need only show your off - duty time  or exception time . if you are non - exempt you must show all hours worked  and if you have overtime , you must add that to the 8 hours regular time .  there is no code for non - exempt overtime .  this should make it much easier for everyone . however , i will need you to  fill out this timesheet form by the 13 th and 29 th of each month . i will  try and remind you by email the day before .  i would still appreciate your emailing me of any vacation , hod day , or any  other  off - duty that you know about before hand , that way if you are out of pocket  for any  reason and cannot fill in one of the forms , i will be able to fill in your  timesheet for you .  if you have any questions or suggestions , please let me know .  thanks !  shirley\",0\n\"Subject: mark - to - market  bob ,  i wanted to continue the analysis on mark - to - market that i had spoken to you  about on the phone .  i thought that it was getting very difficult explaining the whole transaction  by phone , so i am having krishnarao who is in vince ' s group explain the  transaction to you .  krishna has been helping us structure the deal here in india , and he has just  returned to houston from india after working with the team here .  he will seek an appointment with you to explain the transaction . i would  like you to please spend some time with him , and then based on the discussion  please send us a note detailing how sucha a transaction would be marked to  market .  please cosider the fact that currently there are no such transactions from  the indian side . this is a very important transaction for us , and we may  need to repeat this in coming months , hence setting up the system to account  for these maybe well worth it . also , what i am concerned about is that there  will be an enron india ( eipl ) account in india based on indian gaap , and upon  consolidation there will be a us gaap accounting in the us . it is here that  we would like to have mark - to - market accounting . eipl is structured through  mauritius , and then caymen islands .  another key question to consider is that when we m - t - m the transaction in the  us there will be a tax accruing in the year of m - t - m ( say 2000 ) . however , in  india , as a result of the accrual accounting , there will not be any income  showing till the year 2002 or 2003 . we will need to know how that would get  treated , and whether there is a way to get credit for the tax payable in the  us . i am also confused about whether us tax would be levied , since none of  the income is being brought back into the us ( remains overseas - subpart - f  and other concerns ) .  finally , we have been working hard in structuring a fixed price contract and  getting a fixed for floating swap in the us ( this is still not allowed to  indian corporates ) . i need you to think about this too , and see if some type  of accounting will solve this issue . krishna knows what i am talking about ,  and will brief you on the same .  krishna - please walk bob through the three structures we had worked here .  look forward to your help and comments . this is going to be an exciting  project for us all .  regards ,  sandeep .\",0\n\"Subject: xms memo  over the next several months enron will be phasing in a new expense - reporting  product , concur technologies \u0001 , expense management system ( xms ) . you will be  able to prepare your expense report , send it for approval , and transmit it  for payment using the intranet . it will be far more user - friendly than the  excel - based form currently in use and will provide a truly paperless  process . in addition , the system efficiently integrates with the sap  accounting system .  on october 16 , employees who used a prior version of the product upgraded to  the most current release . on october 30 , it will be available to enron corp  employees , company 0011 . the rollout to other groups will continue through  january 2001 . rollout announcements will be made to each business unit .  in houston , it central will provide four training sessions per week . to  enroll in a class go to itcentral . enron . com and click on  services > training > schedules . those in outlying locations and those who prefer  on - line training can use leap by signing on to sap . enron . com and clicking on  training , then leap . use xms ( lower case ) as the user id and password .  we are excited about this new system and hope you will find it useful . if  you have questions regarding its use contact it central at ( 713 ) 345 - 4727 or  visit their website .\",0\n\"Subject: carnegie mellon resume pre - select list  hello everyone . it is time for the spring recruiting season to begin and  select the candidates we would like to have on our pre - select list . my  coordinator will be handing out the resume books this morning . please call  alyse at extension 57339 with your eb locations so we can be sure to get the  resume books to you . please email me your top 10 picks by noon , friday ,  january 26 th . thank you for your continued support and i look forward to  working with you all this season .  kristin gandy  associate recruiter  associate / analyst program  amh\",0\n\"Subject: remaining work  vince ,  i shipped you the paper along with my note to don . however , i wanted to  share with you what i feel are the remaining \"\" to dos \"\" . specifically ,  1 . we need to document carefully the forces that were behind the original  transformation of enron . specifically , the fallout from deregulation ( take  or pay contract defaults , etc . ) , the impact of the losses from the oil  trading operation , the nationalization of the peruvian pipeline , and the  leveraging up to fend off the carl ichan takeover attempt .  2 . we need to complete / beef up the network strategy section .  3 . finally , the concluding section needs to be carefully crafted to  \"\" hammer home \"\" the basic principles underlying the transformation .  what do you think ?  hope you have a great weekend .  john  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: re : lst chapter of training book  george ,  we shall be able to accommodate one or two extra people  in the first round .  we shall be glad to repeat the seminars starting soon for a  bigger group . we would like to learn form experience how to run  it .  by the way , we had an option training for ees ( roughly 150 people ,  over a few weeks ) . i can give you the materials and  we can repeat it if you think it ' s useful .  vince  george hopley  01 / 05 / 2001 09 : 01 am  to : vince j kaminski / hou / ect @ ect  cc : shirley crenshaw / hou / ect @ ect  subject : re : lst chapter of training book  vince - i had heard about this derivatives class from clayton  and i am inquiring about the possibility of someone outside  of the research group being able to attend . if so , i would  like the opportunity . let me know if it is possible .  thanks ,  george  shirley crenshaw @ ect  01 / 05 / 2001 07 : 58 am  to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , pinnamaneni  krishnarao / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , mike a  roberts / hou / ect @ ect , joseph hrgovcic / hou / ect @ ect , tanya  tamarchenko / hou / ect @ ect , zimin lu / hou / ect @ ect , martin lin / hou / ect @ ect ,  maureen raymond / hou / ect @ ect , osman sezgen / hou / ees @ ees , paulo  issler / hou / ect @ ect , amitava dhar / corp / enron @ enron , alex  huang / corp / enron @ enron , kevin kindall / corp / enron @ enron , kevin g  moore / hou / ect @ ect , clayton vernon / corp / enron @ enron , william  smith / corp / enron @ enron , jose marquez / corp / enron @ enron , chonawee  supatgiat / corp / enron @ enron , shalesh ganjoo / hou / ect @ ect , tom  halliburton / corp / enron @ enron , elena chilkina / corp / enron @ enron , sevil  yaman / corp / enron @ enron , sofya tamarchenko / na / enron @ enron , bob  lee / na / enron @ enron , gwyn koepke / na / enron @ enron , hector campos / hou / ect @ ect ,  anita dupont / na / enron @ enron , youyi feng / na / enron @ enron , v charles  weldon / hou / ect @ ect , praveen mellacheruvu / hou / ees @ ees , li sun / na / enron @ enron ,  stephen bennett / na / enron @ enron , roman zadorozhny / hou / ees @ ees , lance  cunningham / na / enron @ enron , leann walton / na / enron @ enron , shane  green / hou / ees @ ees , seksan kiatsupaibul / hou / ees @ ees , kate lucas / hou / ect @ ect ,  nelson neale / na / enron @ enron , rabi de / na / enron @ enron , kenneth  parkhill / na / enron @ enron , jaesoo lew / na / enron @ enron , jason  sokolov / hou / ect @ ect , steve bigalow / na / enron @ enron , tom  barkley / na / enron @ enron , rakesh bharati / na / enron @ enron  cc :  subject : re : lst chapter of training book  good morning everyone :  here is the much anticipated copy of the lst chapter of the training book  \"\" energy derivatives \"\" .  as previously stated the training will begin on friday , january 19 th from  11 : 30 - 1 : 00 in 30 cland every first and third friday thereafter in 49 cl .  if you have any questions , please let me know .  thanks and have a great day !  shirley\",0\n\"Subject: rtp project  vince ,  targetted conference date is th - f june 21 - 22 at stanford . enclosed in the  recent revision to what i sent before .  great to meet you ,  hill  - retail notes . rtf  hillard g . huntington  emf - an international forum on  energy and environmental markets voice : ( 650 ) 723 - 1050  408 terman center fax : ( 650 ) 725 - 5362  stanford university email : hillh @ stanford . edu  stanford , ca 94305 - 4026  emf website : http : / / www . stanford . edu / group / emf /\",0\n\"Subject: var numbers for the 26 th  hi vince ,  i apologise that i did not send you the following mail . . .  kirsteee  - - - - - - - - - - - - - - - - - - - - - - forwarded by kirstee hewitt / lon / ect on 28 / 07 / 2000  20 : 21 - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron europe  from : kirstee hewitt 27 / 07 / 2000 20 : 33  to : andreas . barschkis @ mgusa . com  cc : bjorn hagelmann / hou / ect @ ect , grant masson / hou / ect @ ect  subject : var numbers for the 26 th  hi andreas ,  i have run the var model for the 26 th july and have attached a zip file of  the results :  the total var is $ 4 , 170 , 653 and the cu position is $ 1 , 852 , 876 .  i have had trouble getting hold of you so i thought i would summarised what i  wanted to talk about ( also i thought  i would give your ears a rest ! )  basically it is wrt the second point in your mail yesterday ( we briefly  discussed it earlier ) .  the fax you sent me to explain the risk calculation suggested that you use a  5 day period of adjustment to calculate  the risk ( in this case it is called capital at risk ) . the var calculation for  our model is for a one day holding period which means that your risk factor  will be reduced by a factor equal the sqrt ( 5 ) or 2 . 24 .  since :  old risk factor ( % ) = 1 . 65 * ( std of the price movement ) = 3 . 99 %  new daily risk factor = 3 . 99 / 2 . 24 = 1 . 78 % which actually equates to std  of approx 1 . 1 % a day .  i am happy with this as a estimate of the vol as the annualized spot vol we  are showing for cu is approx 19 % which equates to approx 1 . 2 % daily .  using this new risk factor for the daily var the cu positions would give a  var ( for the 19 th ) of approx $ 2 m which is less that the  figure we estimated ( $ 3 , 100 , 568 ) .  the other thing is that by taking net numbers we are disregarding the term  structure of the price curve / vol curve and position  curve and are hence collapsing everything into a one factor model which means  that it is difficult to compare the numbers .  i hope that this helps to explain our number .  hopefully we can talk tomorrow ,  cheers  kirstee\",0\n\"Subject: the garp 2001 convention : gentle reminder  the garp 2001 convention ohp ; lcd projection ) .  ?  also , if required , please do not forget to book your hotel accommodation , as  rooms will not be reserved for garp speakers and delegates after the middle  of january . attached is a hotel booking form for your convenience .  ?  if you have any questions or queries please do not hesitate to contact me ,  though i will be out of the office until 2 nd january , 2001 .  ?  finally , i would like to wish you a wonderful festive season and a happy &  prosperous new year . looking forward to meeting you in new york in february .  ?  kind regards  ?  andreas  ?  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  andreas simou  garp , conference director  tel ? + 44 ( 0 ) 20 7626 9301  fax + 44 ( 0 ) 20 7626 9900  andreas . simou @ garp . com  ?  don ' t miss the garp 2001 convention ,  program details via our web site  www . garp . com  - hotel form . doc\",0\n\"Subject: d - g energy systems  vince & stinson ,  just wanted to keep you informed of the status . helyette has said that she  will send a proposal by saturday .  karla  - - - - - - - - - - - - - - - - - - - - - - forwarded by karla feldman / hou / ect on 03 / 08 / 2000 01 : 22  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  geman on 03 / 08 / 2000 12 : 27 : 06 pm  to : \"\" karla feldman \"\"  cc :  subject : re : enron - contract  dear ms feldman ,  thank you for your email . vince kaminski had  mentioned your name to me and i am pleased to  get in contact with you .  i am making slight adjustments in the license to  make it as admissible to you as possible ( it has been  sold so far to major utilities in europe ) . my husband  and second passport are us and i am using the help  of a lawyer in my family .  i will email you a license proposal by saturday .  sincerely  at 15 : 57 06 / 03 / 00 - 0600 , you wrote :  >  >  > dear ms . geman ,  >  > hello . my name is karla feldman . i work at enron corp . as a contract  > administrator . vince kaminski and stinson gibner have asked me to contact  you  > to obtain additional information pertaining to the purchase of the d - g energy  > systems application . they are interested in purchasing one ( 1 ) license .  >  > could you please send me , or have your attorney here in the states send me  the  > pricing and your software license agreement for our review ?  >  > my address is :  >  > karla feldman  > enron corp .  > 1400 smith street , room 2262  > houston , texas 77002  >  > my phone number is ( 713 ) 853 - 6754  > my fax number is ( 713 ) 646 - 8545  > my e - mail address is : karla . feldman @ enron . com  >  > thank you very much . i look forward to hearing from you or your attorney .  >  > karla feldman  > enron corp .  > contract administration  >  h , lyette geman  professor of finance  university paris ix dauphine and essec\",0\n\"Subject: re : factor loadings for primary curves  tanya ,  i went through the comparisons for the liquids curves and the  appearance of clear parallel shifts , etc , do begin to emerge when fewer  forward prices are used . it looks sensible . i have passed the graphs over  to the liquids people , and i have asked them to identify rough term structure  months when illiquidity begins for these curves . it might coincide with your  assumptions . i am surprised by brent and dubai , which should be wti - clones .  naveen  tanya tamarchenko @ ect  10 / 04 / 2000 04 : 35 pm  to : naveen andrews / corp / enron @ enron , vladimir gorny / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , kirstee hewitt / lon / ect @ ect  subject : re : factor loadings for primary curves  naveen & vlady ,  jin yu finished debugging the vatrfacs code and now it calculates factor  loadings for every \"\" primary \"\" curve ( except power curves ) .  i am sending you the calculated factors :  most of them don ' t look good . 60 forward prices were used in calculations for  each commodity .  i reran the code using fewer forward prices depending on the commodity  ( 12 prices for c 3 gc , mtbe , nc 4 , so 2 ,  17 prices for nxho , 18 - for sa ,  24 for c 2 gc , lax _ jfk , ,  30 - for condensate , dubaicrude , brent , ,  48 for nsw , semichem - risi )  these results are in  most of them look much better .  please , review .  we will have to add a column in rms _ main _ curve _ list to specify how many  forward prices we want to use for each commodity ,  and then use the new factors in the var model .  tanya .\",0\n\"Subject: restricted list  neither ena / rac / egf employees nor family members or others living in their  household or financially dependent on the ena / rac / egf employee may purchase  or sell securities of any entity ( or derivatives thereof ) listed on the  restricted list for your or their personal or related accounts or recommend  the purchase or sale of such securities to any person , except with the prior  approval of the compliance department in consultation with the ena legal  department .  in addition to the trading restrictions above , should you at any time possess  non - public material information about any public company , you , your family  members and anybody that is financially dependent on you , are restricted from  trading in that issue , and you may not disclose the non - public material  information to anyone that does not have a business need to know .  company name stock symbol  3 tec energy corp . tten  active power acpw  adrian resources adrrf  beau canada exploration ltd bau cn  belco oil & gas corporation bog  bonus resource services corp bou  brigham exploration bexp  canfibre group ltd . cfgl  carrizo oil & gas inc . crzo  crown energy croe  cynet , inc . cyne  cypress energy cyz  firstworld communications inc . fwis  fuelcell energy , inc . fcel  hanover compressor co . hc  ice drilling enterprises inc . idf  industrial holdings , inc . ihii  inland resources , inc . inln  kafus environmental industries , inc . ks  nakornthai strip mill public co ltd nsm set  paladin resources plc plr ld  paradigm geophysical pgeof  place resources , inc . plg cn  queen sand resources , inc . qsri  quicksilver resources inc . kwk  saxon petroleum , inc . sxn cn  southwest royalties swroy  startech seh cn  syntroleum corp . synm  tejon ranch corp . trc  tetonka drilling tdi  transcoastal marine services , inc . tcms  the restricted list is solely for the internal use of ena / rac / egf . no one  may engage in discussions regarding whether a security is or is not on the  restricted list with persons outside ena / rac / egf without specific clearance  from the compliance department in consultation with the ena legal department .  in addition to the above , you are reminded that pursuant to enron corp . ' s  risk management policy ( \"\" policy \"\" ) , no ena / rac / egf employee may engage in the  trading of any \"\" position \"\" ( \"\" position \"\" means any commodity , financial  instrument , security , equity , financial asset or liability that are  authorized for trading in  the  policy for the benefit of any party other than ena / rac / egf , whether for  his / her own account or the account of any third party , where such position  relates to ( i ) any commodity , financial instrument , security , equity ,  financial asset or liability which falls within such employee ' s  responsibility at ena / rac / egf or ( ii ) any energy commodity .  the prohibitions listed above do not replace or modify the policies set forth  in ena ' s policies and procedures regarding confidential information and  securities trading , enron corp . ' s risk management policy , or enron corp . ' s  conduct of business affairs . should you have any questions regarding the  above , please contact me at ext . 31939 .\",0\n\"Subject: re : wti crude price and ny harbor resid prices vs henry hub and new  york city gate gas by month  michael .  thanks a lot for a very quick response . it looks fine .  please , forward it to margaret carson . please , explain the data source . she  may expect nymex as the data source for natgas and wti .  vince  michael sergeev  04 / 11 / 2000 09 : 41 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : wti crude price and ny harbor resid prices vs henry hub and new  york city gate gas by month  vince , here ' s the numbers and two charts . the charts represent the same  information but have different styles . one has all of the prices on the same  scale , and the other has crude and resid on one scale and natural gas on  another .  ms\",0\n\"Subject: option visualization  vince and stinson ,  i did some reserach on the option visualization . here is one of the findings .  check this web site , the image looks impressive :  this is done through a free software livegraphics 3 d and mathematica .  take a look of the demo on the web site mentioned above to see if it is good  enough for our purpose .  zimin  ps :  - - - - - - - - - - - - - -  what is livegraphics 3 d ?  livegraphics 3 d is a non - commercial java 1 . 1 applet to display and  rotate three - dimensional graphics produced by mathematica in  html pages . it may be used without charge for any  non - commercial purposes . mathematica is a program for symbolic  and numeric mathematics by wolfram research , inc . . wolfram  research is also responsible for licensing livegraphics 3 d for  commercial purposes .  livegraphics 3 d enables all mathematica users to put almost any  three - dimensional graphics computed by mathematica directly onto  a html page , such that everyone with a web browser supporting  java 1 . 1 ( e . g . communicator 4 . 0 or internet explorer 4 . 0 or higher )  can view and interactively rotate the graphics without any additional  software .  additionally livegraphics 3 d is able to show animations , calculate  stereo graphics , integrate hyperlinks , and display bitmap  backgrounds . \u000f %\",0\n\"Subject: here ' s the typeset version  vince ,  attached is a copy of the typeset version that i will be reading today . i  will check to make sure that all the changes you gave me this weekend are  incorporated . i will also be writing a 200 word summary for the paper  today and will pass that by you as well .  have a great day .  john  p . s . i ' ll call shirley about the revenue question i sent you yesterday .  - 134 martin - cxl . pdf  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: re : meeting with mark schroeder  - - - - - - - - - - - - - - - - - - - - - - forwarded by pinnamaneni krishnarao / hou / ect on  02 / 18 / 2000 08 : 34 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  ajay . khandelwal . ftmba 99 - 00 @ cranfield . ac . uk on 02 / 18 / 2000 06 : 07 : 50 am  to : \"\" pinnamaneni krishnarao \"\"  cc :  subject : re : meeting with mark schroeder  hi mr . rao !  thanks a lot for your mail .  i would be meeting mark and mr . paul dawson on lst march and would let you  know the outcome of the meeting .  in the mean time i am enjoying my mba program and hope that the outcome of  the meeting would be positive .  best regards  ajay  | | \"\" pinnamaneni krishnarao \"\" |  | | |  | | |  | | 17 / 02 / 00 08 : 20 am |  | | |  | |  | to : ajay . khandelwal . ftmba 99 - 00 @ cranfield . ac . uk |  | cc : ( bcc : ajay khandelwal / cusom ) |  | subject : meeting with mark schroeder |  hi ajay !  hope you are doing well . i was wondering if you met with mark and what  you  guys decided . let me know either way . if it doesn ' t work out with mark , i  will  arrange something else through our research group .  krishna .\",0\n\"Subject: re : mscf speaker series  thx ,  we are very anxious to hear her answer  pierre - philippe ste - marie  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  pstemarie . homestead . com  - - - - - original message - - - - -  from :  to :  cc : ;  sent : friday , august 11 , 2000 10 : 55 am  subject : re : mscf speaker series  >  > pierre - philippe ,  >  > i have contacted allison bailey to ask her to move her visit  > to the campus to coincide with my presentation .  > i hope to hear from her soon .  >  > vince kaminski  >  > p . s . nice web site  >  >  >  >  >  >  >  > \"\" pierre - philippe ste - marie \"\" on 08 / 10 / 2000 05 : 13 : 53  pm  >  > to :  > cc :  > subject : mscf speaker series  >  >  >  > dear mr . kaminsky ,  >  > just checking if there was any progress . . . or anything i could do to help  > you .  >  > sincerely ,  >  > pierre - philippe ste - marie  > - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  > pstemarie . homestead . com  >  >  >  >  >\",0\n\"Subject: phone time  dear dr . kaminski  thanks for your arrangement . i have received email from shirley . either  wednesday or thursday will be fine to me . i am looking forward to talking to  you at that time . it is always my pleasure to work with you .  best wishes  quentin kerr  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  quentin kerr , email : qkerr @ maths . uq . edu . au  room : 67 - 625 tel : ( 07 ) 33461428  department of mathematics , the university of queensland\",0\n\"Subject: re : good morning  john ,  it does not sound silly to me . i don ' t get that many opportunities to sit  down  with those guys in a relaxed atmosphere and chat .  i shall read the notes and get back to you . i have just come back from  philadelphia and have to catch up with a few things .  vince  \"\" john d . martin \"\" on 12 / 06 / 2000 09 : 39 : 50 am  to : vkamins @ enron . com  cc :  subject : good morning  vince ,  i know that you are in philadelphia today but wanted to ship you my \"\" first  pass notes \"\" before i leave town in the morning . please edit / add to or  delete anything you think is appropriate . my objective in the notes is  just to get things down on paper before too much time has passed . when i  place something in quotes this indicates a direct quote .  i ' ll give you a call next week when i get back to town . thanks again for a  truly memorable experience . i plan to frame jeff ' s enron model . it may  sound silly to you guys but we academics really appreciate opportunities  like the one i got on monday . what a truly spectacular day .  take care ,  john  p . s . andy gave me his note care describing the demand for a peaking plant  but i wasn ' t able to get him to sign it . i hope i did not offend him by  asking for his signature on that silly graph . after i left his office it  occured to me that he might think i was making light of him . please  explain to him that i was not and will treasure his simple model as  capturing the essence of optionality in a real asset .  - . doc  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: re : enron / stanford program  nick ,  dinner on sunday would work for me . i shall stay  in the bay area till monday morning .  vince  nick bambos on 09 / 28 / 2000 08 : 33 : 38 pm  to : vince . j . kaminski @ enron . com  cc :  subject : re : enron / stanford program  hi vince ,  i am on the technical program committee of the infocom 2001 conference ,  and we are meeting in new york city on saturday , october 14 th , to select  papers for the conference program . i ' m leaving stanford on friday and  getting back on sunday .  it might be a possibility to have dinner together on sunday , if that would  work for you . in that case i would have to reschedule my flight to land  in sfo earlier than i ' m currently scheduled to land .  would dinner on sunday work for you ? any chance we can meet monday for  lunch ?  i look forward to seeing you .  best regards ,  nick  vince . j . kaminski @ enron . com wrote :  >  > nick ,  >  > i shall be in stanford oct 14 - 15 , visiting my family .  > i would be glad to meet you ( and possibly giuseppe - your call ) for lunch .  > please , let mer know if you are free on one of these days . saturday would  > work better for me .  >  > vince  >  > nick bambos on 09 / 21 / 2000 02 : 09 : 46 pm  >  > to : stinson . gibner @ enron . com  > cc : vince . j . kaminski @ enron . com  > subject : re : enron / stanford program  >  > stinson ,  >  > great ! i ' m looking forward to a very productive collaboration .  > i ' ll immediately start doing giuseppe ' s papers , for him to work  > on the enron / stanford program .  >  > many thanks to you and vince , and i hope to see you soon at stanford  > or enron . if i remember correctly , vince is visiting stanford in  > october .  >  > best regards ,  >  > nick  >  > stinson . gibner @ enron . com wrote :  > >  > > nick ,  > >  > > i spoke with paul racicot , head of trading for ebs , north america this  > > morning . he said that he is happy to send the $ 100 , 000 for your program  > > from his budget . i have forwarded to him the draft letter to accompany  > > the funds and will try to follow up to make sure that the money is sent  > > promptly .  > >  > > - - stinson\",0\n\"Subject: re : summer internship  jinbaek ,  this is fine though you are welcome to spend more  time with us this summer .  vince  jinbaek kim on 03 / 04 / 2001 03 : 45 : 40 pm  to : vince . j . kaminski @ enron . com  cc :  subject : re : summer internship  dr . kaminski ,  thanks for your answer .  before i tell you the time frame ,  i ' ll need to talk with my advisor , first .  because here is an on - going - project .  i need to coordinate the schedule .  i ' ll appreciate it if you understand my situation ,  and give me some time ( less than a week , of course ) .  for your reference ,  probably  the dates i ' d like to ask you will be  from mid - may to mid - july ( 2 months )  warm regards ,  jinbaek  jinbaek kim  ph . d candidate  dept . of industrial engineering and operations research  u . c . berkeley  http : / / www . ieor . berkeley . edu / ~ jinbaek  go bears !  : \"\" ' . _ . . - - - . . _ . ' \"\" ; ` . . ' . ' ` .  : a a : _ _ . . . . . _  : _ . - 0 - . _ : - - - ' \"\" \"\" ' \"\" - . . . . - - ' \"\" ' .  : . ' : ` . : ` , ` .  ` . : ' - - ' - - ' : . ' ; ;  : ` . _ ` - ' _ . ' ; . '  ` . ' \"\" ' ;  ` . ' ;  ` . ` : ` ;  . ` . ; ; : ;  . ' ` - . ' ; : ; ` .  _ _ . ' . ' . ' : ; ` .  . ' _ _ . ' . ' ` - - . . _ _ _ . _ . ' ; ;  ` . . . . . . ' . ' ` ' \"\" \"\" ' ` . ' ; . . . . . . - '  ` . . . . . . . - ' ` . . . . . . . . '  on fri , 2 mar 2001 vince . j . kaminski @ enron . com wrote :  >  > jinbaek ,  >  > you can coordinate the details with me .  > let me know what the time frame is for you  > and we shall send you an appropriate offer .  >  > vince  >  >  >  >  >  > jinbaek kim on 03 / 02 / 2001 04 : 43 : 06 pm  >  > to : vince . j . kaminski @ enron . com  > cc :  > subject : re : summer internship  >  >  > dr . kaminski ,  >  > thank you very much .  > of course , i ' ll be happy to have an opportunity  > to work at such a wonderful company .  > i was contacting with surech raghavan at deal bench team ,  > and was going to express my appreciation to you again  > after settling down process with them .  >  > for the period of working ,  > i still need to coordinate with my advisor and  > may need to adjust according to that .  > but anyway , i ' ll try to coordinate smoothly .  >  > please let me know whether i should keep contacting  > with deal bench team ,  > for working period and  > for misc . living support such as finding a place , rent a car , etc .  >  > i appreciate you so much again ,  > for arranging such meetings and giving me an opportunity .  > all this opportunity will not be available to me ,  > without your kind help .  >  > warm regards ,  > jinbaek  >  > - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  > jinbaek kim  > ph . d candidate  > dept . of industrial engineering and operations research  > u . c . berkeley  > http : / / www . ieor . berkeley . edu / ~ jinbaek  >  > go bears !  >  > : \"\" ' . _ . . - - - . . _ . ' \"\" ; ` . . ' . ' ` .  > : a a : _ _ . . . . . _  > : _ . - 0 - . _ : - - - ' \"\" \"\" ' \"\" - . . . . - - ' \"\" ' .  > : . ' : ` . : ` , ` .  > ` . : ' - - ' - - ' : . ' ; ;  > : ` . _ ` - ' _ . ' ; . '  > ` . ' \"\" ' ;  > ` . ' ;  > ` . ` : ` ;  > . ` . ; ; : ;  > . ' ` - . ' ; : ; ` .  > _ _ . ' . ' . ' : ; ` .  > . ' _ _ . ' . ' ` - - . . _ _ _ . _ . ' ; ;  > ` . . . . . . ' . ' ` ' \"\" \"\" ' ` . ' ; . . . . . . - '  > ` . . . . . . . - ' ` . . . . . . . . '  >  >  > on fri , 2 mar 2001 vince . j . kaminski @ enron . com wrote :  >  > > hello ,  > >  > > sorry for a delay in getting back to you .  > > we would like very much to offer you a summer internship .  > >  > > please , let me know if you are interested .  > >  > > vince kaminski  > >  > >  >  >  >  >  >  >\",0\n\"Subject: re :  frank ,  i am definitely interested in the resume . i can meet the candidate on campus  when  i visit my son . i am planning to come to palo alto around thanksgiving .  also , energy and power risk management ( an english publication )  organizes every year in houston a power risk conference ( typically in may ) .  they ask me for recommendations regarding  speakers . would you be interested in participating ?  vince  \"\" frank a . wolak \"\" on 11 / 13 / 2000 08 : 44 : 57 am  to : vkamins @ enron . com  cc :  subject :  vince ,  i am writing about a student of mine who is on the job market  this year . when you stopped by my office , about 18 months ago  you asked if i had any students that might be appropriate for  your group . although i didn ' t at the time , now i do . this student has  excellent technical skills , including an m . s . in statistics  and a ph . d . in economics by the end of the current academic  year . his dissertation research is on the investment behavior  of independent power producers in the us . as a result of research  assistance he has done for me , he knows the california market very well  and is familiar with the other isos . i think he would be an excellent  match for you . the only problem is that he will probably have many  other options available . however , i definitely think he ' s worth a look .  if you ' d like him to send you a cv , please let me know . thanks .  frank wolak  professor frank a . wolak email :  wolak @ zia . stanford . edu  department of economics phone : 650 - 723 - 3944  ( office )  stanford university fax : 650 - 725 - 5702  stanford , ca 94305 - 6072 phone : 650 - 856 - 0109 ( home )  world - wide web page : http : / / www . stanford . edu / ~ wolak cell phone : 650 - 814 - 0107\",0\n\"Subject: re : vacation  shirley ,  no problem .  vince  shirley crenshaw  01 / 07 / 2000 03 : 56 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : vacation  vince :  if it is alright , i would like to take vacation on friday , january 14 th and  friday , february 4 .  thanks !  shirley\",0\n\"Subject: re : wednesday  vince , thanks for letting me know . i will see you on wednesday .  regards ,  giuseppe  on mon , 12 mar 2001 vince . j . kaminski @ enron . com wrote :  > giuseppe  >  > the dinner is scheduled , as i have mentioned , to you at 7 : 00 p . m .  > wednesday at il fornaio , canaletto room .  >  > both you and eric are welcome to join us .  >  > vince  >  >  giuseppe a paleologo  : : gappy @ stanford . edu : :  : : http : / / www . gappy . org : :\",0\n\"Subject: entouch newsletter  business highlights  egm fundamentals  lowell bezanis joins us from eig ( energy intelligence group ) . lowell will be  a great resource for the group as he has had substantial experience covering  middle east issues , as well having great contacts with the trade press . the  egm fundamentals site has moved into production . our new address is  http : / / egmfundy . corp . enron . com comments and suggestion should be directed to  heather purcell at 54057 . heather is also managing our enterprise - wide  contract with pira for oil , electricity , natural gas and natural gas liquids .  eim finance  the primary focus for the eim finance group is to assist transaction teams in  the execution of complicated transactions in which enron capital is being  deployed . this may consist of executing the funding of specific transactions  in either the bank or capital markets . currently the team is focusing on the  creation of several off - balance sheet funding vehicles that can be drawn upon  to fund multiple transactions , as well as the financing of the recently  announced daishowa acquisition . in addition , the group is focusing on the  creation of an inventory finance vehicle that can be utilized to fund  multiple steel ( or other commodity ) inventory financings . bill brown leads  the group and notes , \"\" this is a very exciting time at enron . eim is a great  example of utilizing the enron wholesale business model in commodities other  than gas and power . the ability to finance complicated transactions by using  financial engineering skills developed around enron creates a competitive  advantage to transaction teams and will allow us to develop new products and  fund those products competitively without using large amounts of enron  capital . \"\"  in the news  \u0001 & vision is dandy , but sustainable company excellence comes from a huge stable  of able managers . if you don ' t believe me , then go read first , break all the  rules : what the world ' s greatest managers do differently ( simon & schuster ,  1999 ) , by gallup execs marcus buckingham and curt coffman . here ' s a  boiled - down version of what they found : great managers are an organization ' s  glue . they create and hold together the scores of folks who power  high - performing companies . \u0001 8 \u0001 ) tom peters , fast company , a subsidiary of u . s .  news & world report ( 2 / 20 / 01 ) .  revised presentation library link :  you can access the analyst slides at the url below . simply go to this url ,  click on the enter button , and you have access to all the presentations made  at this meeting . http : / / 172 . 28 . 92 . 190 / bowne /  welcome  new hires  egm - leticia mcashan / financial operations  ena - leann walton / research  transfers  ena \u0001 ) joseph wagner , marcus edmonds , santiago garcia , stacy dunegan , shane  green , roman zadorozhny , praveen mellacheruvu , seksan kiatsupaibul , charles  ward , victor munoz paulette roberts  egm \u0001 ) steven jacobellis , margaret cowan , alisa green  eim \u0001 ) deborah chance , eugenio perez  nuggets & notes  \u0001 & our vision for 2001 is to go from \u0001 & the world \u0001 , s leading energy company \u0001 8 to \u0001 ( .  \u0001 & the world \u0001 , s leading company \u0001 8 - - jeff skilling at the all - employee meeting .  \"\" can someone tell me which bank is dying to lend to the steel industry ? \"\" - -  bill brown , vice president / finance eim  \u0001 & there \u0001 , s no such thing as a comp emergency . \u0001 8 \u0001 ) sheila knudsen , vice  president / human resources ena  news from the global flash  weather deal  enron has traded a weather derivative deal with the rock garden restaurant in  london ' s covent garden . based on a ' cold day ' index , the deal protects the  rock garden from a summer that has too many days below a certain temperature  between march and june . once a number of days has been reached , the rock  garden will receive a payout for each further day below that reference  temperature . the payouts have been weighted to reflect the greater earning  potential in some months compared to others . in a blind auction , enron beat  six other risk takers to price the deal .  legal stuff  the information contained in this newsletter is confidential and proprietary  to enron corp . and its subsidiaries . it is intended for internal use only  and should not be disclosed .\",0\n\"Subject: december 11 , 2000 ews prc meeting  attached is an agenda and attendee list for the december 11 enron wholesale  services group prc meeting . the first part of this meeting will involve a  review of the prc results below vp in ena , eim , egm and enw , in addition to  a discussion and approval of promotion nominations . the vp preranking will  begin at 9 : 30 am and will include preranking of vp ' s in ena , eim , egm , enw ,  calme , esa and apachi .  please note on the attendee list which part of the meeting you need to attend .  the meeting is at the st . regis hotel ; however , please note a change to the  colonnade room .  should you have any questions regarding this meeting , please contact sheila  knudsen at x 36628 in houston .\",0\n\"Subject: power 2000 / eprm 2001  as a speaker at eprm ' s highly successful power 2000 event in houston , i am  writing to inform you of our 2001 annual congress and to introduce myself . i  will be responsible for the production of all north american eprm events  having moved from our banking conference and training course division in  july . just to update you on the whereabouts of the eprm team , emma wolfin is  developing our technology events for waters conferences and joel hanley will  be starting his new role as an eprm journalist from november lst .  eprm 2001 will be held in houston on the 14 th , 15 th & 16 th of may and i am  keen to start the initial research as soon as possible . i intend to call  each power 2000 speaker within the next two weeks . initially , i would like  to provide you with advanced notice of the event and wish to clarify some  issues .  what current industry developments merit streams or pre / post conference  seminars at eprm 2001 ?  what research are you or your company involved in that would justify  inclusion in eprm 2001 ?  aside from your own work , what subjects are currently at the cutting - edge of  energy risk management ?  who else would you recommend as a potential speaker ? ( regulatory bodies ,  academics , practitioners )  any assistance at this initial stage of research is appreciated . you can  email me or call on + 44 20 7484 9883 . i look forward to working with you on  this event .  paul bristow  senior conference producer , eprm conferences\",0\n\"Subject: re : tony hamilton  thanks for clarifying that vince .  vince j kaminski  05 / 04 / 2001 15 : 00  to : chris mahoney / lon / ect @ ect  cc : tani nath / lon / ect @ ect , mark tawney / hou / ect , vince j kaminski / hou / ect @ ect ,  mike a roberts / hou / ect @ ect , scott moncrieff / lon / ect @ ect , christie  marshall / lon / ect @ ect , richard smith / lon / ect @ ect , norma villarreal / hou / ect  subject : re : tony hamilton  chris ,  e hired tony to support global markets but jeff shankman decided that , given  highly specialized nature of his work it makes sense to put him in the  research group , with a dotted line to mike roberts who is running our weather  group .  given that his work will directly and exclusively benefit gm , it makes sense  for research to charge his expenses  to global markets . we can adjust allocations to reflect his contributions to  different sub - units of gm .  tony spent the last few weeks in houston training for his position in london  with mike roberts .  we are very excited about the prospect of working with him .  vince  chris mahoney  04 / 05 / 2001 03 : 56 am  to : tani nath / lon / ect @ ect , mark tawney / enron @ enronxgate , vince j  kaminski / hou / ect @ ect  cc : scott moncrieff / lon / ect @ ect , pierre aury / lon / ect @ ect , christie  marshall / lon / ect @ ect , richard smith / lon / ect @ ect  subject : re : tony hamilton  tony was hired to work for global markets . think costs should be assigned  to vince or mark but if you  believe those costs should be for my group let me know .  tani nath  05 / 04 / 2001 09 : 33  to : chris mahoney / lon / ect @ ect , scott moncrieff / lon / ect @ ect , pierre  aury / lon / ect @ ect  cc : christie marshall / lon / ect @ ect , richard smith / lon / ect @ ect  subject : tony hamilton  i now have tony on one of my rcs ( research ) . i understand he will be doing  weather forecasts for some or all of you , and that he has a desk allocated in  global . i need to recharge his costs - can someone please advise the right  cost centre .  many thanks ,  tani\",0\n\"Subject: the national forum on corporate finance  mr . fastow ,  i ' m writing all of our participants and confirming plans for the upcoming  corporate finance meetings on may 4 - 5 here . as a reminder , you are slated  to sit on the executive option / equity dilution panel on saturday  morning . dave yermack from nyu , the number one expert on this issue , is  presenting at that session . ( again , serving as a panelist should require  little preparation on your behalf . )  also , you and your wife are welcome to attend the dinner on friday evening ,  may 4 . it will be held in the baker institute across from the business  school . tom copeland is our speaker - ( i think he plans to focus his  remarks on real options ) . vince kaminski has told me he will be at the  dinner , however his wife is out of town and will not be .  please call me direct if i can be of any help or assistance . i look  forward to seeing you soon . i ' ve attached a copy of the program along with  a name rooster of those planning to attend .  dave ikenberry  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  prof . david ikenberry  jones graduate school of management  rice university  713 - 348 - 5385\",0\n\"Subject: re : video conference scheduling  hello all :  the enron corp . research group has a standing reservation on thursdays  from 11 : 30 - 1 : 00 pm in conference room eb 30 cl . we understand the  agreement to be that unless top management requests this conference  room we will have it . if for some reason you do need to move us , we would  appreciate it if you would find us a substitute room .  the following information is per your request .  requesters name : shirley crenshaw , sam smith , kevin moore  sites to be included : london and portland  site contact names : london : ben parsons - 207 - 783 - 7041  portland : michael schilmoeller - 3 - 3135  date , time & length : every thursday , from 11 : 30 - 1 : 00 pm  co . name : enron corp . research group  co . # : 0011  co . rc # : 100038  conference room : we have a standing reservations for eb 30 cl  no . of people : 30 - 35  if you need anything else , please let me know  thanks and have a great day !  shirley crenshaw  3 - 5290  enron north america corp .  from : videoconference . @ enron 03 / 15 / 2000 06 : 13 pm  sent by : enron announcements @ enron  to : all enron downtown  cc :  subject : video conference scheduling  in order to improve the video conferencing services offered to the enron  community , the video conference group will be implementing the following  procedural changes . these changes will be effective immediately .  conference scheduling :  please route all video conference requests via email to ' videoconference '  ( one word ) or by phone to 713 - 345 - 8500 ( x 5 - 8500 ) . once room reservations are  complete , conferences will be scheduled and confirmation notices sent to the  requestor via email . each requestor will receive a confirmation notice the  business day preceding scheduled conferences .  the following information will be required for all conference requests :  requestor name and contact number  sites to be included in the conference  site contact names along with associated phone numbers  date , time and duration of conference  company number / rc or cost center of requestor  preferred conference rooms ( near - end and far - end )  technical problems :  should problems arise during a video conference , call 713 - 345 - 8555 and a  technician will be immediately dispatched  thanks in advance for your cooperation ,  video conferencing support\",0\n\"Subject: invitations to presentation only  hi christie ,  when do you sleep ? 2 am , ugh !  ok , you were correct , my invitation was to those people within enron that  the students talked with before interviewing competitors , and it was an  invitation to the presentation only . i didn ' t think any of them would be  invited to the dinner , and probably none will even come to the presentation .  the invitation did elicit one request for the final report though , so maybe  it wasn ' t a complete waste .  i didn ' t realize that the dinner had turned into a box visit . that sounds  great . i wish the group could have made it to dinner before the first game ,  that would have made the whole slumming experience better . now they ' ll get  the royal treatment at enron field . it ' ll be great .  vince invited 4 people from rice :  dennis w . loughridge , director of energy consortium ; lounghrid @ rice . edu  carrie miller , director of mba program ; cmiller @ rice . edu  deborah barrett , inst . communications , barrett @ rice . edu  dr . wil uecker , associate dean for executive education , uecker @ rice . edu  loughridge wrote back saying he ' ll come , i don ' t know about the others  here are the 6 students emails :  \"\" ritwik \\ ( ronnie \\ ) ghosh \"\" , \"\" ivy ghose \"\" ,  \"\" luigi calabrese \"\" , \"\" pravas sud \"\" , \"\" syed  \\ ( farhan \\ ) iqbal \"\"  your 2 from rice makes a total of 12 from rice , i guess  let me know if you would like me to do anything else related to monday  look forward to seeing you then  ken\",0\n\"Subject: re : eol competitors  - - - - - - - - - - - - - - - - - - - - - - forwarded by li sun / na / enron on 01 / 29 / 2001 11 : 18 am  - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : drew ries / enron @ enronxgate on 01 / 29 / 2001 11 : 15 am  to : li sun / na / enron @ enron  cc :  subject : re : eol competitors  li ,  globally there are probably over 80 \"\" competitors \"\" to eol . none of these  competitors have a meaningful market share . some of the names that jump to  mind are the following , but it should be easy to find others by surfing the  web . good luck .  drew  dynergy direct  houston street  altra  true quote  intercontinental exchange  enymex  coral connect  koch energy  epetroleum . com  red meteor  trade spark  american petroleum exchange  fuel spot\",0\n\"Subject: interview with the enron research group  good morning frank :  vince kaminski and the enron research group would like to bring you to  houston for an interview , sometime around the last of januray or the first  of february . our human resources rep will be contacting you as to the  best day and time for you .  could you please furnish me an electronic version of your resume ? i will  need this to pass to the hr dept .  the people in the research group that will be interviewing you are :  vince kaminski managing director and head of research  stinson gibner vice president  krishna krishnarao director ( will be out of the office until the  end of january - thus the time frame )  vasant shanbhogue vice president  tanya tamarchenko director  zimin lu director  thank you very much and we look forward to seeing you soon .  sincerely ,  shirley crenshaw  administrative coordinator  enron research group  713 - 853 - 5290  email : shirley . crenshaw @ enron . com\",0\n\"Subject: cplex  - - - - - - - - - - - - - - - - - - - - - - forwarded by tom halliburton / corp / enron on 05 / 25 / 2000  09 : 05 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  chonawee supatgiat  05 / 22 / 2000 11 : 56 am  to : grant masson / hou / ect @ ect , pinnamaneni krishnarao / hou / ect @ ect , tom  halliburton / corp / enron @ enron  cc :  subject : cplex  - - - - - - - - - - - - - - - - - - - - - - forwarded by chonawee supatgiat / corp / enron on  05 / 22 / 2000 11 : 55 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : samer takriti @ enron communications on 05 / 22 / 2000 11 : 46 am  to : stinson gibner / hou / ect @ ect  cc : chonawee supatgiat / corp / enron @ enron , ravi thuraisingham / enron  communications @ enron communications  subject : cplex  stinson ,  krishna mentioned that tom wants to buy ( may have bought ) xpress . tom ' s  argument is that xpress ' s language allows the user to express special ordered  sets ( certain types of constraints ) in a convenient fashion . chonawee and i  just talked to two of cplex ' s consultants ( whom i know personally ) . they both  mentioned that these sets are recognized and handled implicitly within cplex .  as a result , there is no need for their modeling language to express these  constraints explicitly .  as a result , i feel that we should go with cplex . both chonawee and krishna  seem to have the same impression . i need to get a final vote on this one so  that we can order the licenses . this has been dragging on for too long .  - samer  [ chonawee , my address book does not recognize ena users . please forward to  grant , krishna , and tom ]\",0\n\"Subject: schedule  hi vince  thanks for the chat earlier today . slava is out this coming week ( 5 th - 9 th  march ) , then i ' ll be out for the next two weeks ( 12 th - 23 rd march ) . i expect  we ' ll both be around from 26 th march onwards , though i will be away again at  paris risk 10 th - 11 th april .  cheers ,  steve\",0\n\"Subject: confirmation of your order  this is an automatic confirmation of the request you have placed using it  central .  request number : ecth - 4 v 9 my 9  order for : kenneth parkhill  user has a en 600 with 64 mb of memory and needs  upgrade to 256 mb . enron it purchasing  * please send all status inquiries regarding this request to :  mailto : receiving & hardware @ enron . com\",0\n\"Subject: ethylene margin collar model  dear all :  let us meet early this afternoon .  here is the overview of the model :  1 ) the ethylene margin collars are priced using asian spread option .  the forward curve and volatility curve are provided by the desk .  the correlation between the ethylene and ethylene cost starts from the  historical spot correlation 50 % and grows with the maturity .  2 ) the overall 40 mm payout cap is modeled sepereately .  i fitted the historical spread ( 10 years data ) to a mean reverting model  with stronger mean reverting strength on the floor side . the model  produces  trajectories that are statistically simular to the historical data .  then the expected payoff is computed through simulation .  at the meeting we will discuss the assumptions and present the results .  zimin\",0\n\"Subject: accounting adjustment  kim ,  fyi . i checked on the progress of the accounting adjustment and was told it  would happen  this month .  vince\",0\n\"Subject: re : wednesday  ronnie ,  regarding the parking situation downtown  the closest parking garage with visitor parking is the one at allens center .  your agenda , to define  - what the scope of the project is  - what do you expect of the project - - in other words what are you trying to  find out from the study , this will help define the scope  - discuss a timeline  - tools that we can use at enron  - are there any projects at enron ( past or present ) that we can draw on or  build on  sounds good . do you all have the original scope vince wrote up ? although it  is broad , its a good beginning for your scope . once you flesh - out the scope ,  we ' ll see if any existing reports can be found that may be helpful .  regarding industry research  check out red herring and other online resources .  see you later  ken\",0\n\"Subject: re : credit rating contact ?  kim ,  i spoke with bill bradford , vp in enron ' s credit department , and he offered  to field your questions regarding credit . he will be in the office this  week . you can call him at 713 - 853 - 3831 .  regarding nymex traders , what kind of trader are you interested in ? larry  gagliardi trades nymex crude products . let me know if you need his number  again , or if you think someone else would be more helpful .  good luck  ken  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  we are still interested in talking to someone in the risk assessment group  about credit rating systems .  could you get us the name of the contact who trades directly with nymex ?\",0\n\"Subject: hello team  we are very excited to be able to welcome your alp team to enron . we are  looking to working with you this semester . to kick things off , we would like  to invite you to cacciatore ' s this thursday for dinner ( 1 / 25 / 01 , 7 pm ) . if  you can ' t stand italian cuisine , or would like to try a different day or  time , please feel free to make a suggestion . we look forward to meeting you .  ken  713 / 345 - 4638\",0\n\"Subject: 2001 research allocation to ebs  vince , i hope you are well .  a question if i may .  i noticed that ebs ' s allocation for 2001 from the corporate research group ' s  budget was $ 1 . 44 m . could you please give me an ' heads - up ' on what i can  expect for the dollars - in terms of people , on - going projects , anticipated  work - program . i ' m aware that stinson in our point person , but i ' ve seen him  for a long while . a breakdown / schedule would be great .  i appreciate your help .  thanks .  barry .\",0\n\"Subject: credit risk model comments - at this point .  comments from rick jones on the credit reserve model . anita dupont is setting up a meet with rick jones to discuss these . vince & bill - if you want to join the meeting , please let me or anita know .  regards ,  krishna .  - - - - - - - - - - - - - - - - - - - - - - forwarded by pinnamaneni krishnarao / hou / ect on 04 / 11 / 2001 09 : 04 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  richard b jones @ ees  04 / 10 / 2001 04 : 16 pm  to : pinnamaneni krishnarao / hou / ect @ ect  cc :  subject : credit risk model comments - at this point .  - - - - - - - - - - - - - - - - - - - - - - forwarded by richard b jones / hou / ees on 04 / 10 / 2001 04 : 16 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  richard b jones  03 / 23 / 2001 05 : 53 pm  to : cheryl lipshutz / hou / ees @ ees , trushar patel / corp / enron @ enron , michelle . wenz @ enron . com , gayle muench / enron @ enronxgate , jeremy blachman / hou / ees @ ees  cc :  subject : credit risk model comments - at this point .  hi everyone ,  i have run the model and , along with the contract briefs i have some questions the number of trials , numerical roundoff , and random number generator randomness statistical properties . the first two are not a problem in this application but the last one could be . has anyone examined the effect of using different random number generators on enron ' s aggregate credit risk ?  7 ) there is one last point here . for most of the above points , the \"\" improved \"\" analysis could make the credit risk be higher .  rick\",0\n\"Subject: re : thesis on electricity price jump - diffusions  bernard ,  my coordinates :  vincent kaminski  managing director - research  enron corp .  1400 smith street  room ebl 962  houston , tx 77002 - 7361  phone : ( 713 ) 853 3848  ( 713 ) 410 5396 ( cell )  fax : ( 713 ) 646 2503  e - mail : vkamins @ enron . com  yes , we are going into a very interesting summer both here and in the uk .  vince  \"\" murphy , bernard \"\" on 03 / 27 / 2001 01 : 23 : 04 am  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc :  subject : re : thesis on electricity price jump - diffusions  hi vince ,  can you e - mail me your mailing address in houston and i will send you a hard  copy of the above today . apologies for delay , but i wanted to ensure that  les clewlow had received his copy in sydney before distributing any other  copies .  incidentally , today ( march 27 th ) is a red letter day in the uk as the neta /  new electricity trading arrangements have gone ' live ' . should be  interesting to observe the development of the paper market in the coming  months - you ' re no doubt aware that ipe have just launched an electricity  futures contract .  regards  bernard  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : 01 march 2001 15 : 37  to : murphy , bernard  cc : vkaminski @ aol . com ; vince . j . kaminski @ enron . com  subject : re : 1997 risk paper on pricing of electricity derivatives  bernard ,  yes , i can read a dvi file . you can also cc  my home address : vkaminski @ aol . com . i shall  try to send you an answer to your question on weekend .  vince  \"\" murphy , bernard \"\" on 03 / 01 / 2001 09 : 18 : 58 am  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc :  subject : re : 1997 risk paper on pricing of electricity derivatives  vince ,  i can send you a scientific word dvi file ( at the weekend ) if you can read  scientific word files ? the dissertation hasn ' t been reviewed by les or  the  external yet - although its been at forc for 2 months . i think that the  empirical chapter is probably the one which would be of most relevance to  both our company ' s businesses - although i ultimately didn ' t have the time  to ' explicitly ' price the jump risk - premium which i conjectured is possibly  implicit in the prices of exchange - traded electricity futures - options -  rather i developed an implicit estimation procedure which will enable a  rough assessment ( with a little bit of further work , but not too much ) be  made of the price of jump risk in wholesale power markets .  in other words , i assumed spot jump - risk to be undiversifiable , and  essentially devoted 2 theoretical chapters to :  1 ) proving that a jump - diffusion trading model is \"\" incomplete \"\"  ( synthesising  the securities markets framework with martingale representation theory ) -  note that i did not assume that markets could be dynamically completed with  ' term structure ' securities as in the hjm w / jumps papers of shirakawa and  das and ;  2 ) deriving an explicit risk - adjustment process for ' implementing ' the  price  of jump - risk using a jump - diffusion marginal indirect utility of wealth  process ( ie . a jump - augmented production economy approach in the spirit of  cir , bates , ahn whereas in the latter the driftless forward supposition  means that i have to capture mean - reversion via the futures volatility  function , and jumps are less easy to calibrate . any suggestions ?  regards  bernard  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : 01 march 2001 14 : 54  to : murphy , bernard  cc : shirley . crenshaw @ enron . com ; vince . j . kaminski @ enron . com  subject : re : 1997 risk paper on pricing of electricity derivatives  bernard ,  i am forwarding your message to my assistant and she will mail you a  reprint .  i would be glad to take a look at your dissertation . is it available as a  publication , working paper ?  vince  \"\" murphy , bernard \"\" on 03 / 01 / 2001 02 : 17 : 39 am  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc :  subject : 1997 risk paper on pricing of electricity derivatives  hello vince ,  my name is bernard murphy - i received your e - mail address from les  clewlow ,  who was my phd supervisor at the financia options research centre at  warwick  business school . i ' ve just finished my phd on electricity price jump  diffusions : a theoretical and empirical study in incomplete markets -  hence my interest in electricity price modelling and derivative pricing . i  was looking to get hold of a copy of your 1997 paper , which has recently  come to my attention :  \"\" the challenge of pricing & risk - managing electricity derivatives \"\" , the us  power market , risk publications , pp . 149 - 171 .  and les suggested that i contact you directly ( les is travelling at present  and doesn ' t have an electronic copy available ) to request an e - copy .  incidentally , i am lecturer in finance / financial mathematics at  university  of limerick ( ireland ) and have taken a year out to work for caminus uk ,  where i am working on introducing and developing a markets - based approach  ( spark - spread ) to real asset valuations in the uk power industry .  thanks in advancve  bernard murphy\",0\n\"Subject: re : installation of new programs  i gave you local admin rights on your laptop yesterday . what you have to do is to log into the laptop using the local  machine account . the id and the password is the same as your corp login now . the password on the local account will  never change . if you have a minute today i will show you how . let me know a time .  phillip randle  desktop support specialist x 39665  - - - - - original message - - - - -  from : kaminski , vince  sent : tuesday , may 01 , 2001 5 : 17 pm  to : randle , phillip c .  cc : kaminski , vince  subject : installation of new programs  phillip ,  how can i install new programs on my laptop , without  the administrator ' s privileges ?  one example : when i travel i use aol to get access to my mail  and to communicate with the office . windows 2000 does not allow  me to install it .  also , i have my private statistical software  i often use when i work at night during business trips .  i would like to load it as well .  vince\",0\n\"Subject: re : memory  hello andy ,  i received your e - mail .  i would like to request memory for the printer on the  19 th floor .  the printer name is bandit .  company number - 0011  r . c . number - 100038  thanks  kevin moore  - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 05 / 02 / 2000 09 : 00  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  05 / 02 / 2000 08 : 55 am  to : kevin g moore / hou / ect @ ect  cc : shirley crenshaw / hou / ect @ ect , vince j kaminski / hou / ect @ ect  subject : re : memory  kevin ,  makes sense  vince  kevin g moore  05 / 02 / 2000 08 : 10 am  to : shirley crenshaw / hou / ect @ ect , vince j kaminski / hou / ect @ ect  cc :  subject : memory  goodmorning ,  shirley , we are in need of a printer that will allow us to print  several pages , none of the printers on this floor will permit  us to do that without adding memory .  i even sent the print - out to bandit and it also needs more memory to  print these pages .  what we are printing is 189 pages .  mike would like to print these pages , so instead of paying for  memory on someone else ' s printer could we add memory to  one of our own .  please inform . . . . . . . . . .  thanks  kevin moore  - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 05 / 02 / 2000 08 : 01  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  andy sikes @ enron  05 / 01 / 2000 02 : 41 pm  to : kevin g moore / hou / ect @ ect  cc :  subject : memory  kevin - please reply with a company numbern and rc number to charge the cost  of the order to . it ' s about $ 100 .  thanks , andy  enron it purchasing  - - - - - - - - - - - - - - - - - - - - - - forwarded by andy sikes / corp / enron on 05 / 01 / 2000 02 : 38  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  andy sikes  05 / 01 / 2000 02 : 40 pm  to : andy sikes / corp / enron @ enron  cc :  subject : memory  - - - - - - - - - - - - - - - - - - - - - - forwarded by andy sikes / corp / enron on 05 / 01 / 2000 02 : 37  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  kevin g moore @ ect  05 / 01 / 2000 11 : 04 am  to : enron it purchasing @ enron  cc :  subject : memory  i would like to request more memory for the printer  blue - sky on the 32 nd floor .  the printer is a laser jet 8100 n .  the printer is located in front of eb 3240 b .  we need more memory a . s . a . p  thanks  kevin moore .\",0\n\"Subject: re : durasoft - - java class  rabi ,  you and tanya should go ahead with the course you have already registered  for .  i have just mentioned it fyi .  i don ' t see too many problems with the course stinson  may help to arrange . the alternative course can be scheduled on premises ,  late in the day  and distributed over longer time period .  vince  rabi de @ enron  01 / 26 / 2001 02 : 15 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : durasoft - - java class  vince ,  tanya and i are registered for the offsite ( productivity point ) java class  ( febl 2 - 16 ) . before i go ahead and try to cancel the reservation , i need  some guidance from you ( and / or tanya ) in light of the following issues :  1 . do you really want 15 people from the same group be unavailable at the  same time ?  2 . enron gets 30 % discount from the list price ( $ 2125 ) of the productivity  point java class . hence cost difference is $ 500 per person and not $ 1100 as  originally thought .  3 . contents of the in - house class can be be tailored to match the skill  level of a more homegenous group .  plese advise . thanks ,  rabi\",0\n\"Subject: risk bucketing for p / l  ken and greg ,  what we have been doing is absoutely fine under the assumption that the market  conditions move relatively small ( where taylor series has fast convergence ) .  however , we could run into troubles when the market has a big move .  in order to have a error proof bucketing , we can use the following  method ( finite - difference ) , let me  know what you guys think how to implement it to the transport book .  sensitivity to risk parameters , or p / l attribution by risk bucket :  today ' s premium = premium based on today ' s curves  last day ' s premium = premium based on last day ' s curves  change due to  deliverycurveshift = [ premium based on today ' s delivery price and last day ' s  receipt price , volatilities , interest rate , last ' s time to expiration etc ] -  last day ' s premium - today ' s change due to gammal  receiptcurveshift = [ premium based on today ' s receipt price and last day ' s  everything else ] - last day ' s premium - today ' s change due to gamma 2  vegal = [ premium based on today ' s delivery volatility and last day ' s  everything else ] - last day ' s premium  vega 2 = as above for gas volatility  rho = as above for interest rate  eta = as above for correlation  theta = { [ premium based on today ' s days to expiration and last day ' s  everything else ] - drift - last day ' s premium } / 365 . 25  [ this is a daily theta . the sprdopt function returns an annualised theta . ]  gammal = 0 . 5 last day ' s gammal ' * priceshiftl 2 ? ? gamma 2 = 0 . 5 last day ' s gamma 2 ' * priceshift 2 2  drift = [ ( exp ( last day ' s interest rate * ( today - last days ) / 365 . 25 ) ) - 1 ] *  last day ' s premium  priceshiftl = today ' s delivery price - last day ' s delivery price  priceshift 2 = today ' s receipt price - last day ' s receipt price  gammal ' = theoretical gammal , i . e . gamma from spread option  gamma 2 ' = theoretical gamma 2 , i . e . gamma from spread option calculation  liquidation = premium of option which expired the day before , i . e . intrinsic  value .\",0\n\"Subject: term paper  please respond to  vince ,  attached is our team ' s term paper in pdf format . please let us know if you still problem opening the file .  thank you very much .  best regards ,  winny so  rice university  jesse h . jones graduate school of management  mba candidate , class of 2001  2018 richland court  sugar land , tx 77478  home : ( 281 ) 265 - 3522  mobile : ( 281 ) 989 - 8417  e - mail : so @ rice . edu > http : / / www . ruf . rice . edu / ~ so /  - modeling project . pdf\",0\n\"Subject: sevil yamin  vince ,  do you want me to do this , or vasant ?  - - stinson  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 04 / 10 / 2001  02 : 57 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : anne labbe / enron @ enronxgate on 04 / 06 / 2001 09 : 57 am  to : stinson gibner / hou / ect @ ect  cc :  subject : sevil yamin  stinson ,  i am the new hr generalist for the research group because norma villarreal is  moving to business analysis and reporting . earlier this week , norma and i  met with vince , and he said that he was going to talk to you about writing up  a list of sevil ' s projects / accomplishments for last year and this year , so  that we can give her a project bonus since she did not receive a bonus during  the normal prc time . at your earliest convenience , will you please email me  this list so that i can get started putting together all of the paperwork so  that she can receive a check on april 16 th .  if you have any questions , please feel free to contact me at 5 - 7809 . i look  forward to meeting you , and the rest of the group next week at vince ' s staff  meeting .  thanks ,  anne labbe '\",0\n\"Subject: re : transition to research group - an update  molly : just to be sure that everyone understands , anshuman cannot work in  the us on a bl visa - he can only come here for business meetings and  training .  we will have to get him the ll visa in order for him to work in the us .  margaret  enron north america corp .  from : molly magee 01 / 19 / 2001 02 : 53 pm  to : vince j kaminski / hou / ect @ ect  cc : margaret daffin / hou / ect @ ect  subject : re : transition to research group - an update  thank you so much for the information , vince . i hope that you have a great  weekend !  molly  vince j kaminski  01 / 19 / 2001 02 : 39 pm  to : molly magee / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : transition to research group - an update  molly ,  i shall ask sandeep to do it when he comes back from india next week .  i have just learned that anshuman has bl visa and he can start on a project  as a person  delegated by dhabol power company to houston . to be absolutely above the line ,  i would still arrange the ll visa .  vince  enron north america corp .  from : molly magee 01 / 19 / 2001 10 : 44 am  to : vince j kaminski / hou / ect @ ect  cc : margaret daffin / hou / ect @ ect  subject : re : transition to research group - an update  i agree that it makes sense to put the ll in place . there are several things  we will need from you in order to start the visa process . the first is a  fairly detailed job description for anshuman . secondly , we also need to know  whether or not he will be in a managerial position here and / or managing a  project . if there is someone else in your group who can furnish this job  description , just let me know and i will be happy to contact him / her .  as for sandeep , i have been told that he is a u . s . resident so there should  be no problems with him . margaret daffin will be contacting him to be  absolutely sure .  thanks ,  molly  vince j kaminski  01 / 19 / 2001 10 : 21 am  to : molly magee / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : transition to research group - an update  molly ,  let ' s get ll for anshuman , just in case . i am sure he will stay here for a  while  once he comes . it is quite obvious jeff shankman will have to keep him  longer ,  given the priority of the project .  i assume there are no problems with sandeep .  thanks .  vince  enron north america corp .  from : molly magee 01 / 19 / 2001 09 : 54 am  to : vince j kaminski / hou / ect @ ect  cc : margaret daffin / hou / ect @ ect  subject : re : transition to research group - an update  thank you for the update , vince . i have been working with margaret daffin  with regard to anshuman ' s visa status . we will have to get an ll visa in  place before he can come to the united states , even in a temporary  capacity . do you want to move forward with that effort at this time , or  is the possibility of him coming to the u . s . so remote that it wouldn ' t be  worth the time and money right now ?  molly  vince j kaminski  01 / 19 / 2001 09 : 42 am  to : molly magee / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : transition to research group - an update  molly ,  this is an update on anshuman . please , see below . it seems  that his transfer is not an issue for the time being .  we can put it on a back - burner till he gets here .  vince  p . s . the relevant section .  i also spoke about anshuman , and there was resistance to his leaing for such  a long time . however , i have agreement from folks here to send him to  houston for a shorter stint on dpc budget . i will try to finalize that  before i leave . i will call you in the evening to just chat .  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 19 / 2001  09 : 45 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  sandeep kohli @ enron _ development  01 / 19 / 2001 04 : 32 am  to : vince j kaminski @ ect  cc :  subject : transition to research group - an update  vince ,  just wanted to let you know that i had a meeting with wade cline ( coo , enron  india ) , neil mcgregor ( president , dpc ) , and mohan gurunath ( cfo , dpc ) today .  though i had already spoken to all of them earlier about my joining your  group , today it became official , and all of them supported the move . i  explained to them what we would be doing , and the results expected from the  henwood study .  dpc would like to pay the costs for the study , and that was mentioned . there  maybe some tax issues etc . that need to be cleared , and other related issues  that i would like to discuss with you , so i will leave them till i get to  houston .  i also spoke about anshuman , and there was resistance to his leaing for such  a long time . however , i have agreement from folks here to send him to  houston for a shorter stint on dpc budget . i will try to finalize that  before i leave . i will call you in the evening to just chat .  i am very thankful to you for giving the opportunity you have . things here  have deteriorated dramatically over the last few weeks . morale is quite down  due to many lay - offs .  i am really looking forward to returning to houston , and the family ! !  regards ,  sandeep .\",0\n\"Subject: arthur andersen 21 st annual energy symposium  shirley ,  please , register me for this conference .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 17 / 2000  04 : 15 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  sabrina whaley @ enron  10 / 17 / 2000 10 : 09 am  to : rick baltz / hou / ees @ ees , misty barrett / hou / ees @ ees , dennis  benevides / hou / ees @ ees , jeremy blachman / hou / ees @ ees , jim brown / hou / ees @ ees ,  brian keith butler / gco / enron @ enron , ford cooper / hou / ees @ ees , cory  crofton / hou / ees @ ees , wanda curry / enron @ gateway , meredith m  eggleston / hou / ees @ ees , mike harris / hou / ees @ ees , neil hong / hou / ees @ ees , kevin  hughes / hou / ees @ ees , shawn kilchrist / na / enron @ enron , dana lee / hou / ees @ ees ,  gayle w muench / hou / ees @ ees , mark s muller / hou / ees @ ees , nina  nguyen / hou / ees @ ees , lou pai and tom white / hou / ees @ ees , lisa polk / hou / ees @ ees ,  george w posey / hou / ees @ ees , david saindon / corp / enron @ enron , scott  stoness / hou / ees @ ees , wade stubblefield / hou / ees @ ees , marty sunde / hou / ees @ ees ,  thomas e white / hou / ees @ ees , jim badum / hou / ees @ ees , ronnie  shields / hou / ees @ ees , kristin albrecht / enron communications @ enron  communications , cliff baxter / hou / ect @ ect , sally beck / hou / ect @ ect , lynn  bellinghausen / enron _ development @ enron _ development , john  berggren / enron _ development @ enron _ development , philippe a bibi / hou / ect @ ect ,  kenny bickett / hou / azurix @ azurix , jeremy blachman / hou / ees @ ees , dan  boyle / corp / enron @ enron , eric boyt / corp / enron @ enron , bob  butts / gpgfin / enron @ enron , rick buy / hou / ect @ ect , rick l carson / hou / ect @ ect ,  rebecca carter / corp / enron @ enron , lou casari / enron communications @ enron  communications , kent castleman / na / enron @ enron , becky caudle / hou / ect @ ect ,  craig childers / hou / ees @ ees , mary cilia / na / enron @ enron , wes  colwell / hou / ect @ ect , diane h cook / hou / ect @ ect , kathryn cordes / hou / ect @ ect ,  lisa b cousino / hou / ect @ ect , wanda curry / enron @ gateway , glenn  darrah / corp / enron @ enron , lori denison / hou / azurix @ azurix , timothy j  detmering / hou / ect @ ect , jeff donahue / hou / ect @ ect , janell dye / corp / enron @ enron ,  scott earnest / hou / ect @ ect , john echols / enron communications @ enron  communications , meredith m eggleston / hou / ees @ ees , sharon e sullo / hou / ect @ ect ,  jill erwin / hou / ect @ ect , archie n eubanks / enron _ development @ enron _ development ,  rodney faldyn / corp / enron @ enron , jim fallon / enron communications @ enron  communications , stanley farmer / corp / enron @ enron , ellen fowler / enron  communications @ enron communications , mark frevert / na / enron @ enron , mark  friedman / hou / ect @ ect , sonya m gasdia / hou / ect @ ect , stinson gibner / hou / ect @ ect ,  george n gilbert / hou / ect @ ect , david glassford / hou / azurix @ azurix , monte l  gleason / hou / ect @ ect , ben f glisan / hou / ect @ ect , sheila glover / hou / ect @ ect ,  eric gonzales / lon / ect @ ect , vladimir gorny / hou / ect @ ect , david  gorte / hou / ect @ ect , eve grauer / hou / ees @ ees , paige b grumulaitis / hou / ect @ ect ,  bill gulyassy / na / enron @ enron , dave gunther / na / enron @ enron , mark e  haedicke / hou / ect @ ect , kevin hannon / enron communications @ enron communications ,  stephen harper / corp / enron @ enron , susan harrison / hou / ect @ ect , john  henderson / hou / ees @ ees , brenda f herod / hou / ect @ ect , patrick hickey / enron  communications @ enron communications , georgeanne hodges / hou / ect @ ect , sean a  holmes / hou / ees @ ees , shirley a hudler / hou / ect @ ect , cindy hudler / hou / ect @ ect ,  gene humphrey / hou / ect @ ect , steve  jernigan / enron _ development @ enron _ development , sheila kahanek / enron  communications @ enron communications , vince j kaminski / hou / ect @ ect , steven j  kean / na / enron @ enron , shawn kilchrist / na / enron @ enron , faith  killen / hou / ect @ ect , jeff kinneman / hou / ect @ ect , joe kishkill / sa / enron @ enron ,  troy klussmann / hou / ect @ ect , john j lavorato / corp / enron @ enron , david  leboe / hou / ect @ ect , sara ledbetter / enron communications @ enron communications ,  connie lee / enron communications @ enron communications , billy  lemmons / corp / enron @ enron , tod a lindholm / na / enron @ enron , mark e  lindsey / gpgfin / enron @ enron , phillip d lord / lon / ect @ ect , drew c  lynch / lon / ect @ ect , herman manis / corp / enron @ enron , keith  marlow / enron _ development @ enron _ development , arvel martin / hou / ect @ ect ,  michelle mayo / enron _ development @ enron _ development , mike  mcconnell / hou / ect @ ect , stephanie mcginnis / hou / ect @ ect , monty mcmahen / enron  communications @ enron communications , kellie metcalf / enron  communications @ enron communications , trevor mihalik / na / enron @ enron , gayle w  muench / hou / ees @ ees , mark s muller / hou / ees @ ees , ted murphy / hou / ect @ ect , nina  nguyen / hou / ees @ ees , roger ondreko / hou / ect @ ect , jere c overdyke / hou / ect @ ect ,  beth perlman / hou / ect @ ect , randy petersen / hou / ect @ ect , mark  peterson / hou / ees @ ees , lisa polk / hou / ees @ ees , george w posey / hou / ees @ ees ,  brent a price / hou / ect @ ect , alan quaintance / corp / enron @ enron , monica  reasoner / hou / ect @ ect , andrea v reed / hou / ect @ ect , stuart g  rexrode / lon / ect @ ect , ken rice / enron communications @ enron communications , mark  ruane / hou / ect @ ect , jenny rub / corp / enron @ enron , mary lynne ruffer / hou / ect @ ect ,  elaine schield / corp / enron @ enron , steven ( pge ) schneider / enron @ gateway ,  cassandra schultz / na / enron @ enron , howard selzer / corp / enron @ enron , jeffrey a  shankman / hou / ect @ ect , cris sherman / hou / ect @ ect , david  shields / enron _ development @ enron _ development , ryan siurek / corp / enron @ enron ,  jeff skilling / corp / enron @ enron , dave sorenson / enron @ gateway , wade  stubblefield / hou / ees @ ees , kevin sweeney / hou / ect @ ect , ken tate / enron  communications @ enron communications , gail tholen / hou / ect @ ect , sheri  thomas / hou / ect @ ect , carl tricoli / corp / enron @ enron , mark warner / hou / ect @ ect ,  todd warwick / hou / ect @ ect , greg whalley / hou / ect @ ect , stacey w  white / hou / ect @ ect , jimmie williams / hou / ees @ ees , shona wilson / na / enron @ enron ,  mark p wilson / lon / ect @ ect , steve w young / lon / ect @ ect  cc : jennifer stevenson / aa / corp / enron @ enron , jane champion / aa / corp / enron @ enron  subject : arthur andersen 21 st annual energy symposium  it is with great pleasure that i invite you to arthur andersen ' s 21 st annual  energy symposium . this year ' s conference will be held december 7 th and 8 th  at the westin galleria hotel in houston . arthur andersen is offering a  valuable program with many of the industries top executives speaking on  industry wide applications .  a few weeks ago some of you may have received information regarding the  registration process . however , due to the level of enron ' s attendance , we  have arranged to facilitate your group ' s registration . if you would like to  register or would like more information about the symposium , please contact  sabrina whaley at 853 - 7696 by october 31 , 2000 or forward your completed  registration form to her at eb 2355 . a copy of the symposium agenda has been  attached for your information . the registration fee is $ 950 per person ;  however , in the past we have given enron personnel interested in attending a  50 % discount .  we are excited about the upcoming symposium and hope that you will be able to  attend .\",0\n\"Subject: re : risk european energy 2000  steve ,  no problem .  grant will speak in place , but risk may not be aware of it yet .  you can just register as my guest .  vince  steven leppard  03 / 03 / 2000 06 : 03 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : risk european energy 2000  hi vince  do you get your regular freebie \"\" ticket \"\" for the risk conference in  amsterdam ? ( you know what i ' m going to ask next . . . ) it looks like there ' s  some interesting stuff , and attending would certainly broaden my horizons .  would you kindly consider bringing me along ?  cheers ,  steve\",0\n\"Subject: re : term project :  brian ,  no problem .  vince  \"\" brian corbett nelson \"\" on 04 / 26 / 2001 08 : 15 : 14 pm  please respond to  to :  cc :  subject : re : term project :  vince , i finally joined a team that only had two members . it looks like our  paper will only be about 13 to 15 pages . we were wondering that since our  team is less than half the size of some of the other teams , if you could  possible relax the length requirement ?  thanks ,  brian nelson  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : wednesday , april 11 , 2001 3 : 54 pm  to : nelsonb @ rice . edu  subject : re : term project :  brian ,  the last class + plus a few days ( depending on when i have  to submit the grades ) .  vince  \"\" brian corbett nelson \"\" on 04 / 11 / 2001  03 : 35 : 14 pm  please respond to  to :  cc :  subject : re : term project :  mr . kaminski ,  i had an interview last thusday in dallas and could not attend class . did  you set a project deadline ?  thanks ,  brian nelson  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : wednesday , april 11 , 2001 3 : 22 pm  to : isranir @ rice . edu ; demianen @ rice . edu ; tbal 93 @ yahoo . com ;  maue @ rice . edu ; loughrid @ rice . edu ; jblantonjr @ yahoo . com ;  gjohnson @ rice . edu ; emchombo @ rice . edu ; nazareth @ rice . edu ;  vanstone @ rice . edu ; ganguzza @ rice . edu ; nelsonb @ rice . edu ;  sssmith @ rice . edu ; wheelock @ rice . edu ; westmore @ rice . edu ;  gaudette @ rice . edu ; otaylor @ rice . edu ; dikeman @ rice . edu ; jettke @ rice . edu ;  litton @ rice . edu ; chilkina @ rice . edu ; helms @ rice . edu ; wankhade @ rice . edu ;  monfan @ rice . edu ; kostya @ rice . edu ; pcp @ rice . edu ; yueguo @ rice . edu ;  nlwbio @ rice . edu ; zhangn @ rice . edu ; rishad @ rice . edu ; yoshiura @ rice . edu ;  howard @ rice . edu ; dayangd @ rice . edu ; wuwei @ rice . edu ; so @ rice . edu ;  wooddy @ rice . edu ; lamas @ rice . edu ; tbalestrery @ houston . rr . com ;  hingoran @ rice . edu ; planck @ rice . edu  cc : vkaminski @ aol . com ; vince . j . kaminski @ enron . com ;  jason . sokolov @ enron . com  subject : term project :  this is the list of projects for the members of the \"\" quant \"\" team .  if you are working on different project , please , ignore this message .  please , develop in a spreadsheet solutions / examples for the following :  1 . black - scholes formula  2 . black ' s formula  3 . develop a spreadsheet to simulate price trajectory using :  a . gbm  b . gbm + jump ( formula 2 . 16 in the book , figure 2 . 7 )  c . mean reversion + jump ( formula 2 . 17 , figure 2 . 8 )  4 . schwartz single factor model ( formula 6 . 12 )  5 . develop models corresponding to the figures 7 . 1 , 7 . 3 , 7 . 5 , 7 . 6 , 7 . 8  vince\",0\n\"Subject: program  mike ,  here is third version of the program . it gives better results than the  previous versions you have . sorry for the delay , these past 2 days i have  been busy meeting with people on the new ebs project . i think the result  looks reasonably good . you can try it . ( to run , type cow filename . jpg m )  smallcow . jpg : hand count 165 , program reports 140  cow 2 . jpg : hand count 1 , program reports 1  cow 3 . jpg : hand count 273 , program reports 244  cow 4 . jpg : hand count 7 , program reports 7  cow 5 . jpg : hand count 160 - 180 , program reports 165  - chonawee  you can show it to the others by yourself or i can go with you . i will have  to go to german consulate tomorrow morning and will be in the office around  10 : 30 - 11 am .  - chonawee\",0\n\"Subject: re : gwen koepke  anne ,  thanks for contacting me about this .  as a matter of fact , i wanted to talk to you about it  today as this matter was outstanding for a long time .  i think we should go ahead and adjust gwen to manager ,  effective march 1 . the compensation would be her current base plus  10 k . this is what we typically do when we promote an associate to a manager .  such promotions take place in march and i think  gwen should not be penalized for the inefficiency of her management  ( i . e . my and maureen ' s procrastination ) .  on unrelated and more serious matter . gary hickerson is the primary client  for maureen ' s services . he communicated to me a few weeks ago that he is  unwilling to underwrite maureen ' s position ( he is in general unhappy with  her contribution ) . this means that maureen will have to find another sponsor or leave enron .  given her abrasive and aggressive personality finding another internal customer  will be quite a challenge .  gary volunteered to pay a very generous severance to maureen from his budget .  i would like to talk to you about it when you have a few minutes .  vince  from : anne labbe / enron @ enronxgate on 05 / 02 / 2001 10 : 34 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : gwen koepke  vince ,  just wanted to touch base with you . i have tried to contact maureen so that gwen ' s title and salary can be adjusted to manager just as you requested , but have not heard any response from her . would you like for me to wait until i hear from maureen or should i go ahead and proceed in changing her title ? i just want to make sure that gwen is in the right peer group during prc .  also , i am going to try and set up a meeting with you next week through shirley to discuss any buring issues that you are experiencing , and your expectations during prc .  thanks ,  anne\",0\n\"Subject: re : hello from vince kaminski at enron  shmuel ,  thanks for the invitation to speak on october 23 rd .  would you like me to split my presentation and devote  some time to the enron analyst / associate program ?  i plan to make presentation on energy derivatives markets  ( development of the markets in the us and europe , valuation  challenges , enron ' s role in developing the forward markets for natural gas  and electricity ) .  i shall send you the bullet points in a few days .  vince  \"\" shmuel oren \"\" on 09 / 18 / 2000 09 : 51 : 29 pm  to :  cc :  subject : re : hello from vince kaminski at enron  vince  please send me a title for the talk with your job title etc . and an abstract  for your talk . you will have about an hour .  shmuel s . oren , professor  dept . of industrial engineering  and operations research  4117 etcheverry hall  university of california  berkeley , ca 94720 - 1777  e - mail : oren @ ieor . berkeley . edu  phone : ( 510 ) 642 - 1836 or 5484  fax : ( 510 ) 642 - 1403  - - - - - original message - - - - -  from :  to :  cc :  sent : friday , september 15 , 2000 6 : 04 pm  subject : re : hello from vince kaminski at enron  >  > shmuel ,  >  > sorry for not getting back to you earlier .  > if the 23 rd of october is still open , i can make the presentation on this  > day .  >  > vince  >  >  >  >  >  >  > \"\" shmuel oren \"\" on 08 / 30 / 2000 08 : 18 : 15 am  >  > to :  > cc :  > subject : re : hello from vince kaminski at enron  >  >  > originally you mentioned october 23 so i reserved that week which is still  > open .  > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / /  > shmuel s . oren , professor  > dept . of industrial engineering  > and operations research  > 4117 etcheverry hall  > university of california  > berkeley , ca 94720 - 1777  > e - mail : oren @ ieor . berkeley . edu  > phone : ( 510 ) 642 - 1836 or 5484  > fax : ( 510 ) 642 - 1403  > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / /  >  > - - - - - original message - - - - -  > from :  > to :  > cc : ; ;  >  > sent : wednesday , august 30 , 2000 9 : 03 am  > subject : re : hello from vince kaminski at enron  >  >  > >  > > shmuel ,  > >  > > let ' s see if we can either rearrange the seminar speakers  > > or change the date of our visit to the campus . ashley baxter , our  > > coordinator is very efficient and  > > got a faculty room for a presentation on monday morning on the 16 th .  > >  > > vince  > >  > >  > >  > >  > >  > >  > > \"\" shmuel oren \"\" on 08 / 29 / 2000 05 : 37 : 33 pm  > >  > > to :  > > cc :  > > subject : re : hello from vince kaminski at enron  > >  > >  > > dear vince . i spoke too soon . apparently the seminar slot on the 16 was  > > already filled . i will see if i can switch the speaker for that week to  > the  > > following week . in any case we are on for dinner on the 16 .  > > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / /  > > shmuel s . oren , professor  > > dept . of industrial engineering  > > and operations research  > > 4117 etcheverry hall  > > university of california  > > berkeley , ca 94720 - 1777  > > e - mail : oren @ ieor . berkeley . edu  > > phone : ( 510 ) 642 - 1836 or 5484  > > fax : ( 510 ) 642 - 1403  > > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / /  > >  > > - - - - - original message - - - - -  > > from :  > > to :  > > cc : ;  > > sent : tuesday , august 29 , 2000 5 : 01 pm  > > subject : re : hello from vince kaminski at enron  > >  > >  > > >  > > > shmuel ,  > > >  > > > the date of our trip to berkeley has been set . it will be october 16 th  > > and  > > > 17 th  > > > ( monday and tuesday ) .  > > >  > > > i shall be glad to make a presentation on energy derivatives markets  > > > ( development of the markets in the us and europe , valuation  > difficulties ,  > > > enron ' s role  > > > in developing the forward markets for natural gas and electricity ) .  > > >  > > > please , let me know if this topic would be of interest to you . if this  > is  > > > the  > > > case , i shall follow with a title and an abstract .  > > >  > > > by the way , are you free for dinner on monday ?  > > >  > > > vince  > > >  > > >  > > >  > > >  > > >  > > >  > > > \"\" shmuel oren \"\" on 08 / 24 / 2000 08 : 59 : 38 am  > > >  > > > to : \"\" vince j kaminski \"\"  > > > cc :  > > > subject : re : hello from vince kaminski at enron  > > >  > > >  > > > great . our seminars are 3 : 30 to 5 pm . if it works for you please send  me  > a  > > > title and abstract .  > > > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / /  > > > shmuel s . oren , professor  > > > dept . of industrial engineering  > > > and operations research  > > > 4117 etcheverry hall  > > > university of california  > > > berkeley , ca 94720 - 1777  > > > e - mail : oren @ ieor . berkeley . edu  > > > phone : ( 510 ) 642 - 1836 or 5484  > > > fax : ( 510 ) 642 - 1403  > > > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / /  > > >  > > > - - - - - original message - - - - -  > > > from : \"\" vince j kaminski \"\"  > > > to : \"\" shmuel oren \"\"  > > > cc : \"\" vince j kaminski \"\" ; \"\" ashley baxter \"\"  > > >  > > > sent : thursday , august 24 , 2000 9 : 58 am  > > > subject : re : hello from vince kaminski at enron  > > >  > > >  > > > >  > > > >  > > > > shmuel ,  > > > >  > > > > thanks for the message . i am working with our recruiter , ashley  > baxter ,  > > > > to finalize the date of the trip . i shall shoot for october the 23 rd  > > > > if this date works for the rest of our team .  > > > >  > > > > vince  > > > >  > > > >  > > > >  > > > >  > > > >  > > > >  > > > > \"\" shmuel oren \"\" on 08 / 23 / 2000 11 : 46 : 19 am  > > > >  > > > > to : vince j kaminski / hou / ect @ ect  > > > > cc :  > > > > subject : re : hello from vince kaminski at enron  > > > >  > > > >  > > > >  > > > > dear vince .  > > > > i sent you a reply earlier this month but i haven ' t heard from you  > > about  > > > the  > > > > date of your visit . our department has a seminar every monday . if  you  > > can  > > > > schedule your visit on a monday i would like to invite you to give a  > > > seminar  > > > > which will be attended by many of our graduate students and faculty  > and  > > > will  > > > > give you an opportunity to tell them about your program . with  > > sufficient  > > > > lead - time i can advertise the seminar in the hass school to their  > > > financial  > > > > engineering students .  > > > > shmuel .  > > > > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / /  > > > > shmuel s . oren , professor  > > > > dept . of industrial engineering  > > > > and operations research  > > > > 4117 etcheverry hall  > > > > university of california  > > > > berkeley , ca 94720 - 1777  > > > > e - mail : oren @ ieor . berkeley . edu  > > > > phone : ( 510 ) 642 - 1836 or 5484  > > > > fax : ( 510 ) 642 - 1403  > > > > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / /  > > > >  > > > > - - - - - original message - - - - -  > > > > from :  > > > > to : ; ;  > > > >  > > > > sent : tuesday , august 08 , 2000 10 : 59 am  > > > > subject : hello from vince kaminski at enron  > > > >  > > > >  > > > > > shmuel ,  > > > > >  > > > > > i hope you remember me . i visited you together with aram  > sogomonian ,  > > a  > > > > > good friend of mine , a few years ago . i am currently responsible ,  > > among  > > > > > other things , for recruiting graduates with finance and / or  > technical  > > > > > backgrounds at the university of berkeley . i would be glad to give  > > you  > > > a  > > > > > call and talk more about the details of our program . my colleague ,  > > > > > ashleybaxter , from the analyst / associate program at enron would  > join  > > me  > > > > > as well .  > > > > >  > > > > > i am sending you a copy of the brochure about the analyst /  > associate  > > > > > program .  > > > > >  > > > > > vince kaminski  > > > > >  > > > > >  > > > > > vincent kaminski  > > > > > managing director - research  > > > > > enron corp .  > > > > > 1400 smith street  > > > > > room ebl 962  > > > > > houston , tx 77002 - 7361  > > > > >  > > > > > phone : ( 713 ) 853 3848  > > > > > fax : ( 713 ) 646 2503  > > > > > e - mail : vkamins @ enron . com  > > > > >  > > > >  > > > >  > > > >  > > > >  > > > >  > > > >  > > >  > > >  > > >  > > >  > > >  > > >  > >  > >  > >  > >  > >  > >  >  >  >  >  >  >\",0\n\"Subject: stanford summer associate and full - time associate recruiting  greg :  just an update on the stanford summer associate and full - time associate  recruiting efforts :  we have pre - selected 19 summer associate candidates and 7 full - time associate  candidates . the schedule of interviewers for round 1 and round 2 is listed  below . i was able to get elliot mainzer and steve swain on the round 1  interview schedule . they were tim belden ' s picks for interviewers from his  group . i have left a message for chris calger to see if he might be  available for round 2 interviews and am waiting to hear back from him .  listed below are logistics . let me know if you are available for friday  interviews .  regards ,  celeste roberts  wednesday , march 14 , 7 : 00 p . m . to 9 : 00 p . m . dinner with students selected to  interview  il fornaio , the sala del canaletto room  520 cowper street , palo alto  ( 650 ) 853 - 3888  attire : business casual  enron attendees :  vince kaminski - md  brad alford - vp  matt harris - vp  brad romine - mgr  theresa riedman - mgr  steve swain - mgr  elliot mainzer - mgr  martin lin - mgr  mauricio mora - associate  celeste roberts - director  althea gordon - recruiter  thursday , march 15 , 8 : 30 a . m . to 4 : 45 p . m . round 1 interviews for both  summer and full time associates  stanford gsb career services center  interviewers :  theresa riedman  brad romine  brad alford  martin lin  elliot mainzer  steve swain  mauricio mora - greeter / alternate interviewer  thursday , march 15 , 12 : 15 p . m . to 1 : 30 p . m . lunch with dean george parker  ( associate dean of academics ) and  sherrie taguchi ( director of career services ) .  stanford gsb career services center  we will be ordering lunch in .  friday , march 16 , 8 : 00 a . m . to 12 : 00 p . m . * round 2 interviews for both  summer and full time associates  stanford gsb career services center  interviewers :  vince kaminski  matthew harris  * please note that this is an approximate time that will be based on the  number of candidates who successfully pass round 1 interviews on thursday .  your hotel information is as follows :  stanford park hotel  100 el camino real  menlo park  ( 650 ) 322 - 1234  upon confirmation of your participation you will receive your hotel  confirmation number . in the event that you have not received your hotel  confirmation number please contact cathy lira , at x 54049 .\",0\n\"Subject: celebration  i am so excited for my boss , mike robert ' s .  i was wondering : can we do something special  for him celebrating his promotion ?  kevin moore\",0\n\"Subject: re : carnegie mellon recruiting  good afternoon . i have forwarded your email to kristin gandy . she is  heading up our cmu recruiting effort . some contact info : ( 713 ) 345 3214 ,  kristin . gandy @ enron . com  we are very interested in the comp . fin . students , and would tentatively  like to interview them in december , probably the week of the 11 th , and around  the same time that we come to interview the mba ' s .  i ' m uncertain as to the proper path forward . could you provide some details ?  regards ,  kevin kindall  sallygould on 11 / 16 / 2000 03 : 38 : 44 pm  to : kevin . kindall @ enron . com  cc :  subject : carnegie mellon recruiting  kevin ,  jean eisel asked that i connect with you about recruiting comp . finance  students .  please contact me with questions you might have about the recruiting  process or if you have some dates in mind for coming to campus .  i look forward to hearing from you .  regards ,  sally gould  recruiting coordinator  gsia - carnegie mellon university  412 - 268 - 1311  412 - 268 - 4146 ( fx )\",0\n\"Subject: re : request for suggestions : vince ' s visit to sydney in july  dear vince ,  after getting our heads together here ,  we would much apprecaite if you could share the research group ' s latest on  - - -  - var ie \"\" . . . repeat my workshop presentation on value - at - risk . . . \"\"  as well as cover additional topics viz .  - discuss , with application , enrons internal v @ r model , and how this is used  internally .  - discuss volatility modelling , and whether it is possible to maintain and  trade a term structure of volatility in electricity  - modelling forward curves with reference to associated markets ( eg oil ) .  can we gain some insights through spreads to related market curves ( spark ) .  i assume your hotel is booked already . catching the taxi is the best way to  get to your hotel .  since you are arriving on the weekend , if you need to contact me - my mobile  is 0417 - 692295 , home tel / fax  is 9232 - 8892  rgds raymond  - - - - - - - - - - - - - - - - - - - - - - forwarded by raymond yeow / enron _ development on  07 / 07 / 2000 04 : 45 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski @ ect  07 / 06 / 2000 09 : 20 am  to : paul quilkey / enron _ development @ enron _ development  cc : raymond yeow / enron _ development @ enron _ development , vince j  kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect  subject : re : your visit to sydney in july  paul , raymond ,  thanks for your message .  sorry i did not get in touch with you earlier . the last few weeks were very  hectic . i am starting  right now my preparations for the presentation i am going to give at the  conference .  here are the details of my itinerary ( i shall send you a copy tomorrow ) . i  arrive sunday morning  and leave saturday morning . the conference takes place on monday and tuesday .  on wednesday , i am making a presentation at the workshop on value - at - risk . i  would  like to stay at the conference for the duration : it ' s a great learning  opportunity for me .  on thursday and friday , as well as in the evenings ( except for the evening  of july 18 ) , i am at you disposal .  i would like to take advantage of this trip and learn as much as i can  about the australian markets and discuss with you the research agenda .  i shall be glad to make several presentation .  i can repeat my workshop presentation on value - at - risk as well as cover  additional  topics .  vince  paul quilkey @ enron _ development  07 / 04 / 2000 05 : 23 am  to : vince j kaminski @ ect  cc :  subject : your visit to sydney in july  vince  i support raymond ' s email and would welcome the opportunity to have you give  a presentation ( formal or informal ) to the trading group on latest research  initiatives in houston . please let us know your schedule so that we do not  overly burden you during your visit . look forward to seeing you and catching  up over a beer .  thnx  paul  - - - - - - - - - - - - - - - - - - - - - - forwarded by paul quilkey / enron _ development on  07 / 05 / 2000 08 : 23 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  raymond yeow  07 / 04 / 2000 08 : 21 pm  to : vince j kaminski @ ect  cc : paul quilkey / enron _ development , kirsty hogarth / enron _ development , elliott  katz / enron _ development , david gray / enron _ development  subject : your visit to sydney in july  dear vince ,  hi ! , it ' s only two weeks until the aust energy risk ( 17 - 19 july ) seminar in  sydney .  is risk organising your hotel ?  otherwise , kirsty can organise for you ,  eg harbour view at the regent or convenience to the seminar location at the  sheraton ?  we would like to make sure that you have all the necessary \"\" comforts \"\" of home  when you are with us ,  elliott & david can set up a desk for you in the office / trading room with  phone etc  so you can use one of our pc to access email or plug in your laptop .  please let elliott or david kmow your requirements .  how long will you be with us ?  is this your first trip to sydney ?  there are several of us in the office who would like to take you for a  meal ( s ) / show you the sights etc and  discuss the latest research findings with you whilst you are in sydney eg var .  hear from you soon .  raymond  725 pm 4 july\",0\n\"Subject: recruiting  i received this email some time ago , and may not have forward it to you . i  apologize for any oversight on my part . i ' ll also forward the email that i  sent as a response .  this , coupled with the information from sally gould , should get the comp .  fin . interview process started .  - kevin k .  - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin kindall / corp / enron on 11 / 20 / 2000  04 : 44 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  jean eisel on 11 / 06 / 2000 03 : 34 : 05 pm  to : kevin . kindall @ enron . com  cc : sgould @ andrew . cmu . edu  subject : re : recruiting  hi kevin  wow you sure do pack one e - mail .  i will try to answer questions . . . after each of you . . . look in the email  for answers .  - - on monday , november 06 , 2000 , 2 : 39 pm - 0600 kevin . kindall @ enron . com wrote :  > hello . it was a pleasure to come back to cmu , and i enjoyed  > interacting with the students . vince k . has expressed interest in  > interviewing the computational finance students . enron will conduct first  > round interviews with the mba students in december , and would like to set  > up seperate interviews for the comp . fin . students . enron would like to  > interview all the pittsburgh based comp . fin students , and we need to  > select a date and a time .  we are excited that you want to interview the comp finance students .  do you want to do it in dec . or before ? let me know what best suits you .  since there are only 16 individuals in the pittsburgh area . . . we should be  able to accomodate you . . . would you want one or two schedules . . ?  what is the formal protocol in such matters ?  >  all you need to do is let me know some ideal dates . . . and you send a job  description and names of the students you want to interview .  we will try to be as accomodating as possible .  > enron is also interested in the ecommerce students as we have  > ecommerce initiatives underway . it is my understanding that kristen  > gandy will be the contact for such activities .  if you can send me an e - mail address for kristen , i can get this strating  asap .  >  > regarding a houston based satellite program , vince needs a proposal  > in writing . would you be so kind as to send one ?  what program is vince interested in having a satellite program ? when he was  here he seemed less intererted in comp finance and more interested in  e - commerce .  i sent a note to michael shamos and tridas discussing this .  let me know which program and i will see if we can work anything out ?  > thanks so much , and i look forward to seeing you again in a few  > weeks .  >  thanks kevin for you speedy response .  >  >  >  >  jean e . eisel , ph . d .  associate dean , admissions , coc and alumni relations  gsia  carnegie mellon university  pittsburgh , pa 15213  412 - 268 - 2277  412 - 268 - 4146 ( fax )  currently in the news : carnegie mellon university mba program ranked 14 th  in business week ' s list of the best graduate schools of business in the  united states . \",0\n\"Subject: re : the newvatrfacs program and testing data  jin & winston ,  i will look at the results of 2 runs ,  but i will not look at the code unless it is in our version control system  sccs .  please , put all your version under this system , as we used to do , and as we  discussed with you .  thank you ,  tanya  from : jin yu 10 / 24 / 2000 12 : 31 am  to : tanya tamarchenko / hou / ect @ ect  cc : wenyao jia / hou / ect @ ect  subject : the newvatrfacs program and testing data  hi , tanya :  two versions of the newvatrfacs program : with ( v 2 ) and without ( vl ) weight  are listed in the location :  / rms / prod / bin / tmp / vl and / rms / prod / bin / tmp / v 2 along with testing result for  the effdate = ' 20 - oct - 2000 ' .  the testing results of the factors for a given ng - cluster ( a constant list :  clust . dat ) are listed in  / rms / prod / bin / tmp . ( the files with name like s * are the results of a test  run without \"\" weight \"\" , while the files with name like t * are the results of a  test run with \"\" weight \"\" ) .  all source codes are listed there , including the makefile and the  excuteables . should you find any problem with the program , please let me  know .  jin\",0\n\"Subject: re : my first draft  quentin ,  i forwarded your resume to our sydney office with a request  to invite you for an introductory interview . i would also like to  arrange a phone interview with you sometimes next week .  my assistant will call you regarding the timing .  vince\",0\n\"Subject: thank you  bill / mitch / vince ,  i just wanted to personally thank you all for joining us today for lunch . we  have much to look forward to at baylor and with the dedication i ' ve already  witnessed , it looks like we are headed in the right direction .  thank you again for your support  shelly jones  associate & analyst program\",0\n\"Subject: managing director and vice president elections  the managing director prc committee met this week to elect individuals to  managing director and vice president positions . these employees are  recognized as outstanding contributors to the organization , whose individual  efforts have been instrumental in the continued success and growth of the  company . we are pleased to announce the election of the following new  managing directors and vice presidents . please join us in congratulating  these individuals on their new appointments .  managing director \u0001 ) commercial  phillip k . allen , ena ( ews ) west gas trading - houston  franklin r . bay , ebs entertainment on demand - houston  timothy n . belden , ena ( ews ) \u0001 ) west power trading - portland  michael r . brown , eel \u0001 ) executive - london  christopher f . calger , ena ( ews ) west power origination - portland  joseph m . deffner , ena ( ews ) treasury & funding - houston  timothy j . detmering , ena ( ews ) corporate development - houston  william d . duran , ena ( ews ) generation investments - houston  robert s . gahn , ees commodity structuring - houston  kevin c . garland , ebs broadband ventures - houston  ben f . glisan , jr . , corporate \u0001 ) global equity markets - houston  robert e . hayes , ets comm marketing - houston  phillip r . milnthorp , ena ( ews ) canada origination & trading - calgary  managing director \u0001 ) commercial support  sally w . beck , enw ( ews ) energy operations management - houston  fernley dyson , eel finance & support services - london  vice president \u0001 ) commercial  gregory adams , ees mmc management - houston  robert bayley , eel - uk origination \u0001 ) london  jack d . boatman , ets market development \u0001 ) houston  rhenn cherry , ees assets / labor \u0001 ) houston  niamh clarke , egm ( ews ) liquids trading \u0001 ) london  peter crilly , eel - uk origination \u0001 ) london  derek j . davies , ena ( ews ) canada origination \u0001 ) calgary  mark d . davis , jr . , ena ( ews ) east power trading \u0001 ) houston  charles delacey , corporate finance \u0001 ) houston  paul devries , ena ( ews ) canada origination \u0001 ) toronto  christopher h . foster , ena ( ews ) west power trading \u0001 ) portland  jeffrey f . golden , ees corporate development \u0001 ) houston  michael d . grigsby , ena west gas trading group - houston  troy a . henry , ees bundled sales - heavy industrial \u0001 ) houston  rogers herndon , ena ( ews ) east power trading \u0001 ) houston  james w . lewis , ees underwriting \u0001 ) houston  christopher mahoney , egm ( ews ) liquids trading \u0001 ) london  andrew marsden , ebs broadband ventures \u0001 ) london  john mcclain , ebs broadband wholesale origination \u0001 ) houston  kevin j . mcgowan , egm ( ews ) american coal \u0001 ) houston  albert e . mcmichael , jr . , ena ( ews ) gas commodity structuring \u0001 ) houston  ermes i . melinchon , central america origination \u0001 ) houston  steven r . meyers , ees consumption \u0001 ) houston  lloyd d . miller , ena ( ews ) portfolio management \u0001 ) houston  michael a . miller , wind development / execution - general administration \u0001 )  houston  marcello romano , ebs eel - broadband trading \u0001 ) london  david a . samuels , enw ( ews ) enrononline - houston  per a . sekse , egm ( ews ) global risk markets \u0001 ) new york  edward s . smida , ebs video on demand \u0001 ) houston  mark tawney , egm ( ews ) weather trading \u0001 ) houston  jon thomsen , ebs business development \u0001 ) latin america / canada \u0001 ) portland  barry l . tycholiz , ena ( ews ) west gas origination - houston  frank w . vickers , ena ( ews ) east gas origination \u0001 ) houston  amit walia , corporate , corporate development \u0001 ) houston  william white , ebs global bandwidth risk mgmt \u0001 ) houston  jonathan whitehead , eel ea trading \u0001 ) japan  mark whitt , ena ( ews ) west gas origination \u0001 ) denver  john a . zufferli , ena ( ews ) canada power trading - calgary  vice president \u0001 ) commercial support  beth apollo , eel financial operations executive \u0001 ) london  marla barnard , ebs human resources \u0001 ) houston  karen l . denne , corporate , public relations \u0001 ) houston  georganne m . hodges , ena ( ews ) trading , origination & power plant accounting  \u0001 ) houston  phillip lord , eel transaction support \u0001 ) london  peggy mahoney , ees marketing \u0001 ) communication \u0001 ) houston  steven montovano , corporate , government & regulatory affairs \u0001 ) dublin  laura scott , ena ( ews ) canada accounting \u0001 ) calgary  richard c . sherman , ena ( ews ) transaction support \u0001 ) houston  gregory w . stubblefield , ees financial planning & reporting \u0001 ) houston  dennis d . vegas , calme international public relations \u0001 ) houston  vice president \u0001 ) specialized technical  sami arap sobrinho , esa ( ews ) legal \u0001 ) houston  merat bagha , ebs sales engineering \u0001 ) houston  justin boyd , eel legal \u0001 ) london  mary nell browning , ebs legal \u0001 ) london  jonathan chapman , eel legal \u0001 ) london  robert d . eickenroht , corporate , legal \u0001 ) houston  mark evans , eel legal \u0001 ) london  david forster , enw ( ews ) enrononline \u0001 ) houston  janine juggins , eel tax \u0001 ) london  peter c . keohane , ena ( ews ) canada legal \u0001 ) calgary  pinnamaneni v . krishnarao , ena ( ews ) research group \u0001 ) houston  travis c . mccullough , ena ( ews ) finance origination , mergers / acquisitions \u0001 )  houston  michael popkin , esa ( ews ) sa - risk management / network integration \u0001 ) houston  elizabeth a . sager , ena ( ews ) physical trading \u0001 ) houston  richard b . sanders , ena ( ews ) litigation \u0001 ) houston  john w . schwartzenburg , eecc legal \u0001 ) houston  michael d . smith , ees legal \u0001 ) houston  marcus vonbock und polach , eel legal \u0001 ) london  jay c . webb , enw ( ews ) enrononline systems \u0001 ) houston  vice president \u0001 ) technical  donald r . hawkins , ets quality management \u0001 ) houston  john r . keller , ets engineering & construction \u0001 ) houston\",0\n\"Subject: re : blood bank  vince ,  i must apologize . i have not had time to look over the proposal in any  detail . when i first spoke with your friend , it was apparent that he was  still pre - business plan stage . he has since sent me some ideas and  information . i think the concept has merit , but there are so many political  issues that i am concerned about the ultimate business viability .  give me the weekend to look over the information .  thanks ,  mark  - - - - - original message - - - - -  from : kaminski , vince  sent : friday , february 16 , 2001 10 : 00 am  to : mark lay / hou / ect @ enron  subject : blood bank  mark ,  any further thoughts on the blood bank concept ?  please , let me know if i can be helpful ?  vince\",0\n\"Subject: erisk interview  vince :  you may inteersted in the following interview which appeared on erisk . com last friday . were rick buy ' s comments about real options taken out of context ?  yann bonduelle leads a 25 - person team for in london  that applies decision analytics and real options theory to dilemmas ranging from  valuing a biotechnology product to deciding whether to kill off an internet financial  services business . here he talks to rob jameson about whether this \"\" theoretical \"\"  approach to risky decision - making really helps businesses in their day - to - day  balancing of risk and reward . yann holds a ph . d degree from the  engineering - economic systems department at stanford university , where he  studied how to apply engineering decision and design analysis to wider economic ,  social and business issues . he then worked as a consultant applying his decision  analysis methodologies to problems that included consumer decision making  about innovative products such as electrical vehicles , before joining the   team in 1998 where he is now a partner . he has  written widely on the application of real options , particularly in fields of life  sciences , technology , and e - business , and has a special interest in the  relationship between risk assessment , validation of risk data and financial  valuation .  how would you sum up your approach to business decision analytics ?  most of our projects are set up to help businesses that face massive uncertainties  of some kind . decision analysis helps people explore problems , and redesign  their decision - making process to increase the chance of them making the right  choices . for example , imagine a biotechnology company that has to decide  whether to put itself up for sale , enter a strategic relationship , or continue to go it  alone . each of those options will lead on to other value - enhancing or  value - destroying scenarios . we work with the client firstly to understand and  challenge the assumptions associated with their most likely business  development scenarios , and secondly to help them identify decisions that would  help protect or increase the value of their technology or company . quantifying  technical , regulatory or commercial risks can sometimes be a challenge . in  technology - intensive fields , however , we have found that managers ( often  scientists ) are quite willing to describe the main sources of risk and to assess the  probability that a risky event may or may not occur .  how does this kind of risky decision - making relate to real options valuation ?  you can ' t say what the value of an asset is until you decide what you might use it  for . this means that , to form an opinion about the value of an asset , you must  explore the most important decisions that you are likely to face and that will have  a significant impact on the value of the asset . so decision analysis helps to define  the business problem and to uncover a stream of inter - related choices that are , in  effect , \"\" real options \"\" . for example , if a company is trying to decide whether to  invest in a risky project , does it have the option to pull the plug on the investment  at an early stage if a pilot project gives a poor showing ? that \"\" real \"\" option reduces  the riskiness , and increases the potential value , of the original business plan . so  real options and decision analysis are really very close to one another . but you  don ' t have to believe in real options valuations to find decision analysis useful .  what do you mean ?  often decision analysis can help managers to identify the key risks in a strategic  decision , attach weights to these , and show clearly how they interact . for many  companies this \"\" risk discovery \"\" is the most valuable part of the exercise .  real options theory has been criticised recently for being , well , not very realistic .  is it a practical approach to valuation ?  it ' s important not to hold out unrealistic hopes for the real options approach to  valuation . but it ' s an exciting methodology , and it ' s also sometimes the only  reasonable way of tackling a very practical problem . for example , when a firm  sells an asset , the firm might have to make an independent valuation of the asset  for legal or corporate governance reasons . but in many businesses today there  are assets that simply cannot be valued in traditional ways because they are  difficult to link to cashflows . the cashflows might not exist because the business  is so novel , or they might be hidden . in some respects , a real options analysis is  much closer to reality than a traditional valuation .  how , exactly ?  the classic way of valuing a future business is to base the calculation on a single  discounted cashflow that is projected from the activity . but this doesn ' t really take  account of the way that scenarios can change , or the fact that managers can  react to situations as they unfold . i mentioned earlier the option to kill a project or  business at an early point . but the upside is that if a pilot project yields exciting  results , it might allow you to invest more quickly and reach a revenue - generating  position in a much shorter time than the original business plan allows . so to value  a future business we really need to look at the cashflows that might arise in a  number of scenarios . this is \"\" realistic \"\" in that , if the project gets the green light ,  you can bet that its managers will be taking that kind of decision on the ground all  of the time .  what ' s the most challenging part of mapping out a decision analysis tree ?  modelling the links between the variables in the decision tree - - it ' s something we  have particular strengths in . but it ' s also tricky to know when it ' s worthwhile to  add on more detail , and when it ' s better to draw back .  in a recent erisk interview , rick buy , chief risk officer of enron , said that over  the two years that enron had experimented with the real options concept , it had  found it of \"\" limited , but not zero , use \"\" . why is there a slight air of cynicism about  real options in some businesses today ?  it ' s strange that enron would profess this attitude . a few years ago , it was widely  reported to have used real option valuation to support a very profitable purchase  decision . they had apparently bought cheaply some older generators in the us  that generated electricity at a very high cost . they knew that they could mothball  them for most of the year , and switch them on only when the electricity prices  were sufficiently high . nevertheless , from a customer ' s point of view , there might  have been too much hype about the methodology . one problem in the application  of real options technology is that there are , perhaps , too many people trying to  tweak reality to conform to their \"\" perfect \"\" model . it ' s better to aim for something  pragmatic that clearly improves decisions over time . in one pharmaceutical  company we worked with recently , we worked together to improve their valuation  analyses by moving from a single discounted cash - flow methodology to one that  took into account a rather small set of business scenarios . it would have shocked  some academics and consultants , but it was an undeniable improvement on the  original approach .  why do you think financial institutions are only just picking up on your field , when  it ' s been applied in the energy industry for 15 years or more ?  it might have something to do with the relative stability of the banking world until  recently , and the relatively high margins that banking lines have enjoyed . also ,  industries such as energy and pharmaceuticals tend to have more people with an  engineering and science background . the dynamic modelling of decisions is  based on methodologies originally dreamed up to help engineers design electrical  and electronic systems . this approach is quite distinct from the black - scholes  options analyses that the banking world is familiar with : the black - scholes  approach is difficult to apply in a real options context , because everything  depends on the assumptions that you put into the black - scholes model . the real  options approach , on the other hand , is in a sense a way of modelling those  assumptions more explicitly . but banks are now adopting some of the thinking ,  particularly in terms of using decision analysis to pinpoint risks and identify  value - enhancing decisions , and in using real options methodologies to sort the  wheat from the chaff in their more speculative investments .  you mean their internet investments ?  we have recently worked with a major dutch bank that had arrived late in the  internet game , and then made a considerable number of investments . now that  even b 2 b business models have questions marks hanging over them , and many  b 2 c businesses are already under water , they wanted to work out which  investments might contain real value . in this situation , it ' s a case of ranking  priorities and helping the bank make sense of what could turn into a  decision - making chaos , rather than sophisticated valuation . it ' s not just a case of  whether an internet investment should be killed off , but the problem of whether  continued funding for it should take priority over budget demands for major it  upgrades in existing businesses , and so on . these are very practical questions  and they have to be answered somehow .  are there other areas in financial institutions that seem accessible to this  approach ?  yes , for example , we think it can help work out the value associated with various  approaches to marketing a new bank business line . at the moment , many banks  are chasing high - net - worth individuals , but it ' s not always clear which kind of  individual a particular bank should decide to pursue . the bank might have a  regional or industry advantage already in one particular area , for example , music  business people . but what is the churn rate associated with this kind of  customer ? what is the profitability associated with the customer segment ? will  the time and cost benefits of the advantages the bank has in the sector outweigh  any disadvantages ? weighing up this kind of complex problem , where one thing  leads to and depends on another , is what decision and real options analysis is  good at .  is there any way of rigorously backtesting or validating real options valuations ?  in all honesty , not really . the problem is that by the time the option is exercised ,  many of the variables surrounding it will have changed , so it ' s difficult to compare  our original analysis with how things turn out . however , the value of the analysis  comes not only from the final number ( \"\" the value of this asset is x \"\" ) but also from  providing a thorough process , an outsider ' s point of view , an understanding of the  sources of value and , in short , a bit of clearer thinking .  if real options are so important , why are they so rarely cited in communications to  shareholders and equity analysts ?  the battle is still to convince companies to use real option valuations as a  significant part of their internal analysis . even in major companies in the oil & gas ,  and pharmaceutical sectors , where the ideas have taken some root internally ,  there seems to be a lot of reluctance to use them in external communication . we  are working with analysts to understand better what they need to if we are to move  things on to the next step .  how does the riskiness of a business , in terms of the major strategic dilemmas it  faces , relate to its share value , and its capital structure ?  that ' s a big question . it ' s related to work my colleagues do on the optimal  debt - to - equity capital structure and gearing of a corporation , which in turn arises  out of the likely revenue and cost volatilities of the business . the more volatile the  business , the less gearing it can sustain , and the higher the cost of capital . our  work touches on this in the sense that exercising ( many ) specific real options can  allow a firm to change its nature , and thus also its risk profile . one classic  example is the pharmaceutical industry . a host of different kinds of companies  service that industry from \"\" big pharma \"\" companies through to smaller  biotechnology startups and run - of - the - mill contract research organisations . a  contract research organisation is often operating within a very competitive  environment with relatively few risks - - it does not invest in drug development itself  - - but also very thin margins . but in fact , a few of these companies have used the  skills and knowledge they have developed to become much more substantial and  profitable healthcare companies of various kinds . it ' s an example of a company  exercising the real options that lie within its skills and assets to transform its own  identity .  rob jameson , erisk\",0\n\"Subject: more dalton baby info  final update . . . . .  i went to see dorothy , tim and the new baby on sunday . he is absolutely  beautiful and dorothy and tim couldn ' t be prouder parents . his name  is . . . . . drake andrew dalton and that name suits him just fine ! thanks .\",0\n\"Subject: re : boss ' s day  kevin ,  no problem , a very good idea .  please , submit expenses to em for signature .  vince  kevin g moore  10 / 10 / 2000 09 : 10 am  to : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , jose  marquez / corp / enron @ enron  cc :  subject : boss ' s day  well vince ,  the group has responded and ready for action .  vince , we would like to take mike to happy hour  for boss ' s day on the 16 th of oct .  so if it is okay with you may we do so ?  i am aware that you will be out on this particular  day however , i would also like to ask anyone in  the research group to please join us as we celebrate  with mike .  fyi : nothing fancy just a few drinks , laugher and conversation .  thanks  kevin moore  p . s . please inform . . . . . . . .  - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 10 / 10 / 2000 09 : 51  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  kevin g moore  10 / 09 / 2000 02 : 35 pm  to : jose marquez / corp / enron @ enron , william smith / corp / enron @ enron , elena  chilkina / corp / enron @ enron , v charles weldon / hou / ect @ ect , joseph  hrgovcic / hou / ect @ ect  cc :  subject : boss ' s day  hey everyone ,  i know you may not be aware that boss ' s day oct . 16 , 2000  we will celebrate as a group in the staff meeting on oct . 19 th ,  with the big boss vince kaminski and all the others , however ,  if you would like to do something special for our boss , please  inform me whereby i can make arrangements .  thanks  kevin moore\",0\n\"Subject: entouch newsletter  business highlights  ena principal investments :  three transactions to date in lq 2001 :  $ 2 . 5 million investment in series c convertible preferred stock of silicon  power corporation ( \"\" spc \"\" ) , a leading designer , developer and manufacturer of  a wide range of power semiconductor devices and systems . spc operates  through three divisions : the power components division manufactures large  area semiconductors up to 125 mm which are used in high - power diodes ,  thyristors , gto thyristors and custom high pulse power rated devices . these  components are sold directly to oem ' s in the heavy industrial , electric  utility , transportation , military and medical industries . the industrial  power division specializes in systems level products providing utility and  power quality protection . the commercial power division designs and  manufactures semiconductors made by a planar process used to make discrete  power semiconductor devices and associates subsystems . more information can  be obtained from kevin kuykendall ( 33995 ) , jennifer adams ( 33919 ) or from the  company ' s web page at : www . siliconpower . com  $ 2 . 25 million convertible bridge loan to solo energy corporation , an existing  ena principal investments portfolio company . the funds are part of a $ 7 . 0  million bridge facility needed to fund overhead while negotiations continue  regarding a potential acquisition opportunity . in addition to the conversion  feature , ena principal investments also received warrants to purchase 2 . 75  million additional shares in solo energy . the company is developing a 100 kw  microturbine , which utilizes a proprietary catalytic combustion process and  turbines , sourced from the automotive and marine sectors . placement of 50  beta units is planned at test sites selected by scana ( a co - investor in solo  energy ) in the 2 q and 3 q , 2001 . once the acquisition is completed , the  company plans to complete an additional $ 30 to $ 50 million funding round .  more information can be obtained from charlie vetters ( 39435 ) , kyle kettler  ( 30423 ) or from the company ' s web page : www . soloenergy . com  $ 5 . 0 million series d convertible preferred stock of encorp , inc . , an  existing ena principal investments portfolio company . the funds are part of  a total of $ 38 million raised in the series d round that should provide  funding for the company through mid - 2002 . encorp is among the worlds leading  providers of products , services and solutions addressing the growing demand  for clean , reliable on - site power systems . the company \u0001 , s power technology  products include grid - interconnection switchgear and energy - automation  software . encorp \u0001 , s products , in combination with the company \u0001 , s  engineering - services team , create dependable , on - site power solutions that  can reduce the overall cost of energy for commercial and industrial customers  operating in the digital economy . more information can be obtained from  charlie vetters ( 39435 ) , kyle kettler ( 30423 ) or from the company ' s web  page : www . encorp . com  enron credit  feeling exposed ? if you are looking for ways to trade some credit exposure  out of your portfolio , visit enrononlinetm . enron credit now offers 3 - year  and 5 - year credit default swaps for a number of companies every day on the  system .  industrial markets  enron industrial markets has established its key goals and objectives for  2001 for the forest products and steel groups :  _ firmly establish eim as a significant physical merchant by moving 3  million tons of product in each of the forest products and steel industries .  _ expand international business by generating at least $ 10 million of gross  margin .  _ create a vehicle to gain access to 500 , 000 tons / year of market pulp .  in addition , both forest products and steel are focused on creating greater  physical and financial liquidity in each of their respective industries , as  well as developing world class logistics and operations capabilities .  eim organizational announcement  forest products group  the following changes are being implemented in the commercial organization in  order to better focus on the group \u0001 , s mission : to be the premier market maker  in physical products and financial risk management products in the forest  products sector .  rodney malcolm will assume responsibility for the new sales and marketing  group .  rob saltiel will create a new forests products origination group .  bob crane will continue to be responsible for trading and risk management in  all forest products markets .  andy keleman will take the leadership of the transaction development group .  in the news  \"\" energy and trading giant enron corp . ( nyse : ene - news ) wants a piece of  madison avenue . the houston - based company ' s latest venture is enron media  services , a seven - month old outfit that aims to bring enron ' s expertise in  trading natural gas and electricity to buyers and  sellers of advertising space .  in the process , enron wants to tap into a $ 500 billion - a - year global  advertising arena .  ` ` what we ' ve identified is that this business is very analogous to what we do  in gas and power , ' ' enron media services vice president edward ondarza . \"\" - - -  reuters , march 14 , 2001  welcome  new hires  egm - sherman franzen  eim - jennifer vanlandingham  ena - kim detiveaux , diane fellers , esemeralda gonzalez , eric linder ,  michael lorenz , noel ryan , melissa prihoda , steve mcdonnell  transfers  eim - lisa csikos , john jacobsen  ena - robin rodrigue , maria lopez , roseann engeldorf  if you love golf . . \u0001 (  would you like to experience the premier golf event , the masters ? this is  your golden opportunity to see augusta and the practice rounds .  there are 17 spaces now available for trip # 1 - sunday , april 1 through  wednesday , april 4 . the package includes accommodations at six private homes  in augusta , food and beverage , ground transportation , access to the enron  tent , passes to the practice rounds and par 3 tournament , and one round of  golf at jones creek .  cost is $ 4975 per person ; additional cost for use of charter aircraft between  houston and augusta is $ 1740 per person . this is a high - level  customer - driven business opportunity . if you are interested , call dorie  hitchcock at x 3 - 6978 .  enrononline statistics  below are the figures for enrononline as of march 14 , 2001 .  ? total life to date transactions > 750 , 000  ? life to date notional value of transactions > $ 450 billion  news from the global flash  enpipe services  the continental gas team is launching the first virtual gas transportation  product in europe , enpipe services . enpipe will offer customers the ability  to swap gas between the nbp in the uk and the zeebrugge hub in belgium .  customers will be able to nominate volumes on a day - ahead basis , and will pay  for the service by an up - front premium . this new service should encourage  more participants at the zeebrugge hub , which will lead into more liquidity  at other trading locations developing on the continent . similar to the  virtual storage service , enbank , enpipe demonstrates enron ' s ability to offer  valuable services to the market through smart risk management rather than  capital - intensive infrastructure . the first enpipe auction will close on 15  march , and customers may submit their bids on enrononline .  teesside gas processing plant  on thursday , lst march , the teesside gas processing plant achieved iso  9001 : 2001 quality management system accreditation . this achievement is the  result of 12 months hard work , enthusiasm and commitment by all plant staff  and has also been a great team effort with the enron global asset  organisation providing technical and moral support .  an iso team was formed in february 2000 led by iris thomas ( qa coordinator )  and supported by members from all site disciplines including operations ,  maintenance , accounts and it . a program was implemented to prepare , write ,  issue and control , detailed procedures to ensure the plant was operated and  maintained to the quality standards required by iso 9001 : 2001 . customer  satisfaction and focus is an integral part of the standard and a great deal  of effort has been put into this area . following a pre - audit in january the  final accreditation audit commenced on wednesday , 28 th february , with  accreditation being confirmed on thursday , lst march .  legal stuff  the information contained in this newsletter is confidential and proprietary  to enron corp . and its subsidiaries . it is intended for internal use only  and should not be disclosed .\",0\n\"Subject: super saturday  shelly ,  these are the super saturdays i can help you with :  nov 10  dec 1  dec 8  dec 15  i shall be traveling on two other days . one of these trips is related to  recruiting at cmu .  vince\",0\n\"Subject: re : invitation . . . welcome new analyst reception  thanks ,  i shall attend .  vince kaminski  tracy l arthur  12 / 20 / 2000 04 : 20 : 35 pm  to : tracy l arthur / hou / ect @ ect  cc : ( bcc : vince j kaminski / hou / ect )  subject : invitation . . . welcome new analyst reception\",0\n\"Subject: summer offer  bhala ,  i double checked with hr , and the offer you received is in line with what we  are offering to other graduate level summer interns . if you have better  offers , i certainly wouldn ' t hold it against you for taking them over what we  are offering , but we can ' t really justify raising the offer at this time .  we can re - imburse you for shipping expenses up to a reasonable amount , say  $ 500 , if you need to ship things down . you can just save the receipts for  these expenses and shirley can fill out the necessary expense forms .  best regards ,  stinson\",0\n\"Subject: interview schedule for japan office  tanya ,  you and i will interview yumi , a candidate for darren delage in tokyo office .  the time is scheduled at 4 : 50 pm next tuesday in my office . i will get the  resume  before the interview . please mark the interview time on your schedule .  thanks .  zimin  - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 01 / 12 / 2001 09 : 00 am  - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : darren delage @ enron on 01 / 12 / 2001 11 : 59 am ze 9  to : \"\" mm 21 yumi \"\"  cc : zimin lu / hou / ect @ ect  subject : re : next tuesday  good afternoon imokawa - san ,  we would like to invite you to have a brief dialogue with some members of our  research team . they would like to ask you to briefly expound on your  mathematical studies . if you could please contact them next wednesday at  7 : 50 am ( it should be 4 : 50 pm houston time , tuesday ) . the conversation should  take no more than 20 minutes of your time , and will enable us to get a more  enhanced understanding of your quantitative abilities .  zimin lu , director of research , can be reached at 713 - 853 - 6388  to dial from japan , 0061 - 1 - 713 - 853 - 6388  if you could please send zimin a copy of your resume before the interview ,  that would be much appreciated . you can call the above number to obtain the  appropriate fax number .  i will be in touch with you shortly thereafter .  sincerely ,  darren  \"\" mm 21 yumi \"\"  01 / 11 / 2001 08 : 35 pm  to :  cc :  subject : thank you  darren , thank you for cordinating everything .  i understand it takes time , this is  only the first week of the year in japan , and i do not like to  push you much . normally , i have long meetings every thursday .  for other dates , i make best effort to fit the schedule for  your convenience , including early morning or late evening .  i am looking forward to seeing you sometime soon .  sincerely ,  yumi imokawa\",0\n\"Subject: re : \"\" white paper \"\"  vince & vasant ,  the enclosed document discusses the incorporation of detailed ensemble  outputs into our mark - to - marketing routines . in the next few days i will  schedule an update on smud and perhaps we could spend a few minutes  discussing how to proceed with this .  joe  - - - - - - - - - - - - - - - - - - - - - - forwarded by joseph hrgovcic / hou / ect on 10 / 26 / 2000  12 : 55 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  please respond to dchang @ aer . com  to : joseph . hrgovcic @ enron . com  cc :  subject : re : \"\" white paper \"\"  dr . hrgovcic ,  we look forward to your comments .  d . chang  joseph . hrgovcic @ enron . com wrote :  >  > dr chang ,  >  > thank you for the white paper . i have distributed  > it to most of the parties concerned ( the head of our research department is  > away this week ) and am gathering feedback on how to proceed . i will be at a  > conference next week , but i hope to get back to you on the week of the  > 30 th .  >  > yours truly ,  >  > joseph hrgovcic\",0\n\"Subject: re : rtp project  yes , i would be definitely interested . count me and osman also to  participate . i will forward your email to others in ees who might be  interested also .  krishna .  vince j kaminski  03 / 19 / 2001 08 : 12 am  to : john henderson / hou / ees @ ees , pinnamaneni krishnarao / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect  subject : rtp project  john and krishna ,  i am sending you an outline of a conference at stanford on topics related to  demand - side pricing and management in the power markets .  please , let me know if you are personally interested and who else  in your respective organizations would like to attend .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 19 / 2001  08 : 10 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  hill huntington on 03 / 15 / 2001 05 : 26 : 55 pm  to : vkamins @ enron . com  cc :  subject : rtp project  vince ,  targetted conference date is th - f june 21 - 22 at stanford . enclosed in the  recent revision to what i sent before .  great to meet you ,  hill  - retail notes . rtf  hillard g . huntington  emf - an international forum on  energy and environmental markets voice : ( 650 ) 723 - 1050  408 terman center fax : ( 650 ) 725 - 5362  stanford university email : hillh @ stanford . edu  stanford , ca 94305 - 4026  emf website : http : / / www . stanford . edu / group / emf /\",0\n\"Subject: meeting while in houston  - - - - - - - - - - - - - - - - - - - - - - forwarded by leann walton / na / enron on 10 / 26 / 2000 10 : 51  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  pedro fernando manrique @ enron _ development  09 / 26 / 2000 12 : 26 pm  to : maureen raymond @ ect  cc :  subject : meeting while in houston  maureen ,  i just wanted to thank you for all your time and your great advice and  support . i enjoyed talking to you and learning from your experience and also  meeting all these people involved in f / x trading activities .  i just want to ask you if you could send me over the mail the latest forward  curves so that we use them to update our long - term plan . for the short term i  will contact pushkar going forward .  thanks again and i look forward to talk to you again .  regards ,  pedro fernando\",0\n\"Subject: risk 2000 panel discussion  dear all ,  ?  would like to set a conference call to discuss content for the panel  discussion at risk 2000 in boston on 14 june . perhaps i can suggest  wednesday 31 may at noon est . i ' m on london time and am quite flexible if  you would like to do earlier or indeed on another day .  ?  the panellists are -  ?  vince kaminski , enron corp  richard jefferis , koch energy trading  steven bramlet , aquila  ?  the discussion topic is ' effectively applying weather derivatives '  ?  i think we need to establish a series of questions around which to  facilitate discussion . we currently don ' t have a moderator and perhaps one  of you could take this role on .  ?  i look forward to hearing from you .  ?  thanks , oliver  ?  ?  ?  direct : + 44 ( 0 ) 20 7484 9880  ?  risk publications , 28 - 29 haymarket , london swly 4 rx  fax : + 44 ( 0 ) 20 7484 9800 ? email : oliver @ risk . co . uk  www . riskpublications . com\",0\n\"Subject: tff 2001 meeting date question  hello from texas ,  we are trying to set up our meeting date for the 2001 conference and have run  into a snag . we cannot get our san antonio hotel on the first weekend in  april ( as last year ) . however , we can get the hotel and make all our \"\" fun \"\"  arrangements for the second weekend in april . however , this is easter  weekend . the good news is that the room rates are substantially lower  because it ' s a holiday . however , we are concerned that holding the meeting  on this particular friday - saturday will interfere with family plans such that  some or many of you may not be able to attend .  my related question to you is this :  does holding the meeting on the second weekend in april ( easter weekend ) pose  a problem for you ? please give us your thoughts asap even if you think you  may not be able to attend this year ' s conference . we need your opinion to  guide our decision .  thanks and i hope to see you all again next april ( sometime ) !  john  p . s . we are very fortunate to have enron return as our corporate sponsor  again this year .  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: karthik rajan  shirley ,  we interviewed by phone karthik and would now like to bring him for a visit  to enron . can you either arrange it or forward to hr for them to arrange ,  whichever is best . while here karthik should probably talk with  zimin , paulo , bob , vasant , krishna , vince  and anyone else vince wants to add to the list .  thanks ,  stinson  his resume is attached below . his phone # is 765 494 2181 .  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 03 / 08 / 2001  03 : 40 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  chonawee supatgiat @ enron  03 / 08 / 2001 03 : 39 pm  to : stinson gibner / hou / ect @ ect  cc :  subject : phone interview with karthik  attached is karthik resume .  his transcript is in http : / / atom . ecn . purdue . edu / ~ krajan / friends /  login is : k _ rajan  password is : donl 23  - - - - - - - - - - - - - - - - - - - - - - forwarded by chonawee supatgiat / corp / enron on  03 / 08 / 2001 03 : 37 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  chonawee supatgiat  02 / 28 / 2001 07 : 09 pm  to : stinson gibner / hou / ect @ ect , zimin lu / hou / ect @ ect  cc :  subject : phone interview with karthik  please let me know if you guys available sometimes next tuesday or wednesday  late afternoon or evening .  zimin , karthik is a chem eng student at purdue . he found me from www and  contacted me for job opportunities . attached is his resume .  - chonawee  - - - - - - - - - - - - - - - - - - - - - - forwarded by chonawee supatgiat / corp / enron on  02 / 28 / 2001 07 : 02 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" karthik rajan \"\" on 02 / 28 / 2001 09 : 41 : 56 pm  to :  cc :  subject : re : opportunities in enron  hi chonawee supatgiat ,  nice to hear from you . next week would be ideal for me too . tuesday or  wednesday late afternoons / evenings would be ideal for me .  my number is 765 532 3182 .  looking forward to talking to you , stinson and zimin .  thanks ,  karthik .  - - - - - original message - - - - -  from :  to : \"\" karthik rajan \"\"  sent : wednesday , february 28 , 2001 3 : 48 pm  subject : re : opportunities in enron  >  > hi karthik ,  > stinson , zimin , and i would like to speak with you over the phone . when  > will be a good time ? we are thinking about sometimes next week . stinson  > and zimin are also in the research group .  > - chonawee  >\",0\n\"Subject: extending eu gas guidelines to central and eastern europe - cera  insight  title : extending eu gas guidelines to central and eastern europe  url : http : / / www 20 . cera . com / eprofile ? u = 35 & m = 2184  overview : a comprehensive reform of gas legislation in central and eastern  europe is bringing the region in line with the european union \u0001 , s gas  directive . this is true both for the countries expected to enter the union by  2004 \u0001 ) 05 \u0001 * czech republic , estonia , hungary , poland , and slovenia - - and for  candidates whose entry is not scheduled before the end of the  decade - - bulgaria , latvia , lithuania , romania , and slovakia . in cera \u0001 , s view  current developments regarding the establishment of a legal framework for the  internal gas market in eastern and central europe look promising from an  investor \u0001 , s point of view .  the candidate countries presented a review of progress made in the  implementation of the eu gas directive during a two - day workshop held by the  european commission and the world bank in paris in november .  many of these countries have been reforming their energy industries  throughout the 1990 s as part of their transition to a market economy . the  results have been mixed , particularly in the utility industries . the 1998 gas  directive ( adopted in august 2000 ) now offers a compelling incentive for eu  candidate countries to transform their gas industries , while providing a road  map to guide them .  the critical points relevant to harmonization between the european union and  candidate countries include the following :  * legal framework and regulation . the legal framework is the cornerstone of  enlargement and the yardstick of harmonization in europe . as a result , in all  candidate countries in 1999 \u0001 ) 2000 energy laws were either updated or newly  established along the principles spelled out in the gas directive . regulatory  bodies have been created by law and are operating in every country , although  issues of staffing , financial autonomy , and independence from political  influence are not uniformly resolved .  * third - party access ( tpa ) and long - term take - or - pay contracts . all candidate  countries agree that tpa is a key to market competition . therefore , all have  adopted it or intend to do so in their new legislation . although the  commission favors regulated tpa , the specific approaches to tpa enforcement  in the candidate countries remain unclear in some cases . in particular , the  implementation of tpa will have to address the issue of long - term take - or - pay  contracts with russia that were signed by all major domestic gas companies  and somewhat preempt competition . russian gas is for the most part sold to  single , traditional state - owned operators that dominate their internal  markets . a balance will need to be struck between these incumbent dominant  players and the competitive environment . this is made more complicated by  their ownership of large volumes of russian gas supplied in kind in exchange  for transit rights to west european customers . article 25 of the directive  provides for !  a derogation to companies experiencing difficulties stemming from take - or - pay  obligations . this derogation would apply to the companies of candidate  countries with historical and commercial links with the russian gas industry .  furthermore , article 26 allows derogations to those member states with only  one major gas supplier , to those with an \u0001 + \u0001 + emerging gas market  status , \u0001 , \u0001 , or to those without a direct gas connection to the grid of another  member state . most of the candidate countries would in principle be able to  call on one or more of these grounds for derogation when they join the  european union .  * price cross - subsidies . residential gas tariffs are artificially low and are  financed partially through higher rates applied to industrial consumers . in  various countries , tariff increases and the phasing out of subsidies have  been scheduled , but such decisions remain politically sensitive to enforce .  this has recently been emphasized by high gas prices owing to the linkage of  imported gas to oil prices . all candidate countries have set legal frameworks  that include the phasing out of cross - subsidies as part of sector reform , but  the actual implementation will remain politically difficult . as table 1  indicates , price rebalancing is already under way in most countries expected  to enter the european union by mid - decade , but the legal framework itself  cannot guarantee the pace of reform . the same goes for candidate countries  that have only recently introduced eu - complying energy laws and whose entry  to the european union is likely to happen in a longer time frame .  * unbundling . most countries understand that the unbundling of transmission  companies from their supply businesses is the second critical element of  liberalization . to date , unbundling the accounts of these two businesses is  all that has been adopted by the member states or in the candidate countries .  in the future , the commission is likely to press all eu countries for legal  separation ( \u0001 & structural unbundling \u0001 8 ) of the businesses , and candidate  countries will have to pursue their reform of the gas sector accordingly .  table 1 gives an overview of the state of play in candidate countries . as the  table shows , the countries belonging to the second group have only very  recently undertaken the reform of the gas sector in accordance with the  directive , whereas change had been introduced earlier in the countries  scheduled for the first wave .  * * end * *  follow above url for full report .  come shoot the rapids with us at ceraweek 2001 , \"\" shooting the rapids :  strategies and risks for the energy future \"\" in houston , february 12 - 16 ,  2001 ! for more information and to register , please visit  http : / / www 20 . cera . com / ceraweek /  e - mail category : insight  cera knowledge area ( s ) : european gas ,  to make changes to your cera . com account go to :  forgot your username and password ? go to :  http : / / www 20 . cera . com / client / forgot  this electronic message and attachments , if any , contain information  from cambridge energy research associates , inc . ( cera ) which is  confidential and may be privileged . unauthorized disclosure , copying ,  distribution or use of the contents of this message or any attachments ,  in whole or in part , is strictly prohibited .  terms of use : http : / / www 20 . cera . com / tos  questions / comments : webmaster @ cera . com  copyright 2000 . cambridge energy research associates\",0\n\"Subject: re : vol model  from : pavel zadorozhny on 08 / 31 / 2000 06 : 45 pm  to : grant masson / hou / ect @ ect , tanya tamarchenko / hou / ect @ ect , naveen  andrews / corp / enron @ enron  cc :  subject : vol model  it ' s been a while since i put this together . some assumptions , such as those  about the current var methodology may not be correct . but my ideas and the  math involved are hopefully reasonable . let me know if you have any questions .  pavel , x 34778\",0\n\"Subject: fw : mark boland - cv  vince : tony vasut , another recruiter , is bringing mark boland in for a  series of interviews on 3 / 20 and 3 / 21 , and asked if there was any chance that  you or someone in your group would be able to interview him . his resume is  attached , and i will also send you a list of his deals under separate  cover . shirley has told me that you will be in and out for the next  several weeks , so if you are unavailable would you please suggest someone  else in your group who might be able to interview mark ?  thanks , as always ,  molly  - - - - - original message - - - - -  from : vasut , tony  sent : tuesday , march 13 , 2001 9 : 59 am  to : magee , molly  subject : fw : mark boland - cv  molly :  here is mark ' s resume as discussed . please let me know if anyone in research  ( preferably vince ) is available to meet w / him on either 3 / 20 or 3 / 21 .  thanks ,  tony  - - - - - original message - - - - -  from : port , david  sent : monday , march 12 , 2001 10 : 46 am  to : vasut , tony  subject : fw : mark boland - cv  - - - - - original message - - - - -  from : mark . boland @ seb . se @ enron  sent : monday , march 12 , 2001 8 : 10 am  to : port , david  subject : mark boland - cv  > to summarize my situation : i ' m in charge of structuring equity linked , ir ,  > fx , commodity and other  > linked bonds and investments for one of northern europe s leading banks .  > i ' m 34 years old and married to lisa who is swedish . i have over 7 years  > in the structured derivatives business in capital  > markets , with a solid wall street foundation at bankers trust and overseas  > at a more senior level  > of sales , structuring and managing deals from conception to completion .  >  > >  >  > thanks and regards ,  > mark  >  > mark m . boland  > seb merchant banking  > 10640 stockholm , sweden  >  > telephone + 46 8 5062 3224  > cell + 46 70 772 3224  >  > this e - mail is from seb , skandinaviska enskilda banken . it may contain  > privileged and confidential information and is intended for the named  > recipient ( s ) only . if you are not an intended recipient , please notify us  > immediately by reply e - mail , delete this e - mail from your system and  > destroy any copy hereof .  >  - boland . doc\",0\n\"Subject: re : london visit  paul ,  thanks for your message . i am in process of  finalizing my plans for the trip to london in the end of  september . i delayed responding to you message till  i had more specific information .  unless there a major change in my schedule , i shall arrive  in london on monday morning ( september 18 ) and leave on  thursday in the evening .  please , let me know what would be convenient time  to meet . you can send me an e - mail message and my secretary  will contact to confirm the date and place of the meeting .  my assistant ' s name is shirley crenshaw and her phone  number is 713 853 5290 .  i look forward to meeting you , tom and julian .  vince kaminski  paul . e . day @ uk . arthurandersen . com on 08 / 25 / 2000 11 : 53 : 02 am  to : vince j kaminski / hou / ect @ ect  cc : tom . o . lewthwaite @ uk . arthurandersen . com ,  julian . leake @ uk . arthurandersen . com  subject : london visit  i understand that you will be in london around 20 september . tom lewthwaite  has  asked me to arrange a meeting between you , tom and julian leake . i understand  that you have met tom and julian before . i would also like to attend - i am  a  manager in our uk financial services practice with responsibilty for enron  from  a uk financial services perspective . we would like to discuss any risk  management concerns that you may have and any internal initiatives with which  we  could assist .  if you are happy to meet on this basis , i would be grateful if you could let  me  know how you to proceed ( whether i should arrange timings with you , your  secretary , someone in london etc ) . you can contact me on + 44 20 7783 7446 ( at  enron ' s london offices ) or on this e - mail address .  kind regards  paul day  * * * * * * * * * * * * * * * * * * * internet email confidentiality footer * * * * * * * * * * * * * * * * * * *  privileged / confidential information may be contained in this message . if you  are not the addressee indicated in this message ( or responsible for delivery  of  the message to such person ) , you may not copy or deliver this message to  anyone .  in such case , you should destroy this message and kindly notify the sender by  reply email . please advise immediately if you or your employer do not consent  to  internet email for messages of this kind . opinions , conclusions and other  information in this message that do not relate to the official business of my  firm shall be understood as neither given nor endorsed by it .\",0\n\"Subject: re : a request  zimin ,  i also enjoyed our talk . thanks very much . i ' ll send you the paper as soon  as its done .  duane  - - on thursday , march 15 , 2001 , 1 : 58 pm - 0600 zimin . lu @ enron . com wrote :  >  >  > dr . seppi ,  >  > nice talking to you about swing contracts and your recent work on  > american - monte  > carlo approach . i am interested to read your preprint papers .  >  > my address is  >  > zimin lu  > enron corp , eb 1967  > 1400 smith street  > houston , tx 77002 - 7361  >  >  > zimin  >  >  >  >  >  >  >  >  >  >  >  > ds 64 @ cyrus . andrew . cmu . edu on 03 / 15 / 2001 11 : 59 : 59 am  >  > to : zimin . lu @ enron . com  > cc :  > subject : re : a request  >  >  > great . i ' ll be in my office . my number is 412 - 268 - 2298 .  >  > duane  >  >  > - - on wednesday , march 14 , 2001 , 3 : 57 pm - 0600 zimin . lu @ enron . com wrote :  >  > >  > >  > > dr . seppi ,  > >  > > my phone number is 713 - 853 - 6388 . i will call you  > > tomorrow afternoon around 1 : 30 pm houston time .  > >  > > zimin  > >  > >  > >  > >  > >  > >  > >  > >  > >  > > ds 64 @ cyrus . andrew . cmu . edu on 03 / 14 / 2001 03 : 15 : 02 pm  > >  > > to : zimin . lu @ enron . com  > > cc : vince . j . kaminski @ enron . com  > > subject : re : a request  > >  > >  > > dr . lu ,  > >  > > i would be grateful if i could talk with you some time about the typical  > > terms one sees in swing , take or pay , virtual storage , etc . options .  > this  > > is related to some research some colleagues and i are doing applying  > recent  > > innovations in monte carlo valuation of options with early exercise . we  > > would like to illustrate our techniques on some examples which look  > > realistic . when would be convenient for you ?  > >  > > i look forward to talking with you .  > > duane seppi  > >  > > - - on wednesday , march 14 , 2001 , 8 : 44 am - 0600 vince . j . kaminski @ enron . com  > > wrote :  > >  > > >  > > > duane ,  > > >  > > > i shall be traveling for the rest of the week but my colleague  > > > dr . zimin lu will call you to talk about different  > > > structures .  > > >  > > > vince  > > >  > > >  > > >  > > >  > > >  > > > ds 64 @ cyrus . andrew . cmu . edu on 03 / 13 / 2001 09 : 54 : 24 am  > > >  > > > to : \"\" vince j kaminski \"\"  > > > cc :  > > > subject : re : a request  > > >  > > >  > > > vince ,  > > >  > > > sorry that i missed your call yesterday . i have a meeting from 2 - 3  > today  > > > ( tuesday ) , but otherwise any time in the afternoon works for me . let me  > > > know what is convenient for you . thanks for your help .  > > >  > > > duane  > > >  > > > * * * * * * * *  > > > duane seppi  > > >  > > > graduate school of industrial administration  > > > carnegie mellon university  > > > pittsburgh pa 15213 - 3890  > > >  > > > tel . ( 412 ) 268 - 2298  > > > fax ( 412 ) 268 - 8896  > > >  > > > email ds 64 + @ andrew . cmu . edu  > > >  > > >  > > >  > > >  > > >  > >  > >  > >  > > * * * * * * * *  > > duane seppi  > >  > > graduate school of industrial administration  > > carnegie mellon university  > > pittsburgh pa 15213 - 3890  > >  > > tel . ( 412 ) 268 - 2298  > > fax ( 412 ) 268 - 8896  > >  > > email ds 64 + @ andrew . cmu . edu  > >  > >  > >  > >  > >  >  >  >  > * * * * * * * *  > duane seppi  >  > graduate school of industrial administration  > carnegie mellon university  > pittsburgh pa 15213 - 3890  >  > tel . ( 412 ) 268 - 2298  > fax ( 412 ) 268 - 8896  >  > email ds 64 + @ andrew . cmu . edu  >  >  >  >  >  * * * * * * * *  duane seppi  graduate school of industrial administration  carnegie mellon university  pittsburgh pa 15213 - 3890  tel . ( 412 ) 268 - 2298  fax ( 412 ) 268 - 8896  email ds 64 + @ andrew . cmu . edu\",0\n\"Subject: ebs ' s approach to storage trading  hi ravi - -  thanks for you note . i would be very interested in a meeting to establish an  ebs - wide approach to storage . it ' s a huge opportunity .  we could expand the 2 : 30 pm friday meeting to include all interested ebs  people and discuss the topics below . could shalesh coordinate this meeting  and also coordinate the ongoing effort firm - wide ? have i omitted anything  below ?  as i see it , here are the key storage initiatives that ebs should undertake ,  and who is involved up to this point .  1 . - establish storage contract terms and pricing  who ' s involved : virawan , jean mrha beach  a . define terms for storage needed for ebs products ( mediacast ,  mediatransport , and new products )  b . define general terms for other storage contracts  2 . - establish storage pooling points ( spp )  who ' s involved : shalesh , richard reichardt , mark palmer , kara knop  who ' s needed : other designated people from bloomer and griebling groups , jim  crowder ' s group input on alliances  a . define technology needed  servers , storage devices  control software for physical delivery  b . decide optimal spp locations  at / near existing bandwidth trading pooling points  at / near existing ebs city pops  at a hosting partner location  c . engage optimal partners to create spp  ibm  ibm global services  tivioli ( storage management software )  emc  sun  compaq  existing storage portal vendors ( e . g . storage networks )  3 . - establish storage trading benchmark  who ' s involved : unknown  who ' s needed : research group  a . define unit of measure for trading contract ( e . g . , terabyte - month )  b . establish pricing mechanisms  4 . - identify ( and monetize ) storage market opportunites  who ' s involved : unknown  who ' s needed : cox ' s group , bloomer ' s group  a . storage intermediation opportunities  b . establish virtual storage portal service for ebs  ravi thuraisingham  03 / 08 / 00 11 : 00 am  to : mark s palmer / enron communications @ enron communications , jean mrha / enron  communications @ enron communications , john bloomer / enron communications @ enron  communications , richard reichardt / enron communications @ enron communications  cc : kara knop , stinson gibner / hou / ect @ ect , vince kaminski , david cox / enron  communications @ enron communications , shalesh . ganjoo @ enron . com  subject : meeting for friday on storage  hi mark , i have not met you yet but heard a lot of good things about you . i  would like to discuss with you and possibly with john bloomer and richard  reichardt about the ebs research ' s role in supporting the storage market  development from the origination and trading perspective . there are several  people in various groups that are talking about storage but here is what ' s my  take on our involvement - - please correct me or suggest otherwise .  shalesh ganjoo is our lead analyst on this effort . in addition to his effort  with your group , he is presently supporting jean mrha with pricing and  standardization for a traded storage maret - - stinson gibner is directly  supervising him in this effort .  shalesh came to us through referal from david cox - - david discovered him at  one of his speaking engagements . shalesh had talked to david about traded  storage market development some time last october and david refered shalesh  to enron research group . we hired shalesh for general analyst position and  now he is pulled into all aspect of this storage effort . currently , he is  our point person ( with stinson or i supervising his effort ) who is supporting  jean mrha and you on the subject . kara knop has aproached shalesh with  request for some support and shalesh and she are sorting out each other \u0001 , s  role in this regard . as per my discussion today with david , we need to  coordinate this storage effort from the perspective of modeling market  assessment etc . for this i suggest shalesh and his effort so that all parties  involved can benefit from collective effort within one central source . based  on david ' s and my assessment of shalesh ' s capabilities , i would like to  suggest that the commercial heads use shalesh for his creative thinking ,  understanding of the market and analytical capabilities and not just for data  gathering and simple research effort . we can add other staff as we see the  need and as you request them .  please respond this e - mail with your comments if this sounds like aplan , so  that we can support this effort efficiently and in a scalable manner .  kind regards ,  ravi .  a bit about ebs research group  john bloomer and richard reichardt have met me and are aware of my role and  stinston gibner ' s role in ebs . i lead a team of quantitative professionals  via a group we are calling ebs research . this group reports to stinson  gibner ( vp ) and vince kaminski ( md and head of enron research ) . stinson and  vince are the original founders of enron corp research that has been charged  with model development efforts to support enron energy trading and other  enron business . enron research is involved in all aspects of enron buinesses  ( ees , international , corporate affairs such as fas 133 and other accounting  and new product ( derivatives ) development , etc . ) .  within ebs research , there serveral professionals supporting kevin howard  ( cfo office ) , john griebling , tom gros and jean mrha , david cox ( via boris ) ,  and the war room . our main area of focus is with jean mrha ( trading ) and  john griebling ( optical network design and optimization , etc . ) . we play a  key role with john griebling ' s go forward network design and implementation  through our responsiblity to provide traffic engineering analysis and  modeling effort .  - - - - - forwarded by ravi thuraisingham / enron communications on 03 / 08 / 00 09 : 31  am - - - - -  shalesh ganjoo @ ect  03 / 07 / 00 08 : 01 pm  to : mark s palmer / enron communications @ enron communications  cc : ravi thuraisingham / enron communications @ enron communications @ enron  subject : meeting for friday on storage  dear mark ,  i am looking forward to presenting my competitive analysis on the storage  market on friday to you and others . ravi thurasingham will be calling you to  find out if we ( research group ) can assist your group in any other way .  please let me know if you need any information before we meet . thank you .  sincerely ,  shalesh ganjoo\",0\n\"Subject: enron earth day \"\" trash bash \"\"  enron is hosting a special event on saturday , march 31 st . the first annual  enron \"\" trash bash \"\" to clean up the banks of buffalo bayou between shepherd  drive and sam houston park .  i am chairing the check - in team which consists of :  registering all of the volunteers  handing out enron t - shirts and caps  passing out gloves and garbage bags  making clean up section assignments  for anyone who might be interested in helping me , please call me at ext .  30329 .  also , we need a lot of volunteers to walk along buffalo bayou and pick up  trash . this would be a great family project , a good project for your childs  youth group or boy scout or girl scout troop . it will also be fun . they  will have live bands , lyou get an enron t - shirt and enron baseball cap , lunch  will be served at sam houston park and there are a lot of good door prizes .  if you want to volunteer for the \"\" trash bash \"\" clean up , just show up at sam  houston park on saturday , march 31 , 2001 , at 8 am to register . clean up  starts at 9 am and lunch will be served at 11 : 00 am and after lunch door  prizes will be drawn and then you can go home feeling like you have done your  part for houston ' s waterway environment .  i hope you will think about it and bring your friends , family , ect . and help  enron clean up the environment .  thanks , anita\",0\n\"Subject: re : f / u to dr . kaminski @ enron from iris mack  happy to do so , vince . hope your holidays were wonderful !  molly  vince j kaminski  11 / 27 / 2000 01 : 39 pm  to : molly magee / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , shirley  crenshaw / hou / ect @ ect  subject : re : f / u to dr . kaminski @ enron from iris mack  molly ,  i would like to invite iris for an interview . you can contact her at the  addresses she listed below  or at her e - mail address .  the following persons will participate at the interview :  stinson gibner  zimin lu  tanya tamarchenko  vasant shanbhogue  myself  stinson and i will take her out to lunch .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 11 / 27 / 2000  01 : 35 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" iris mack \"\" on 11 / 21 / 2000 04 : 12 : 43 pm  to : irismmack @ hotmail . com , vince . j . kaminski @ enron . com  cc :  subject : re : f / u to dr . kaminski @ enron from iris mack  hi again ,  i am visiting several family members and friends over the next few days .  therefore it will be hard to contact me .  however , next week i will be easier to reach . my contact details in nyc are  as follows . i will be staying at the following hotels :  washington square hotel  from november 28 th for 3 nights ( tue , wed and thur )  212 . 777 . 9515  marriott nyc financial  december lst for 1 night ( fri )  212 . 385 . 4900  at any rate , i will still try to reach you on tomorrow morning . if all  fails , we will try to reach each other next week .  happy thanksgiving ,  iris  > from : \"\" iris mack \"\"  > to : vince . j . kaminski @ enron . com  > subject : re : f / u to dr . kaminski @ enron from iris mack  > date : tue , 21 nov 2000 22 : 07 : 09  >  > hi ,  >  > how are you ? seems like we have had a bit of difficulty contacting each  > other . sorry i missed your call . i am now in nyc - until december 2 nd .  >  > i will try to call you on tomorrow morning about 8 am houston time .  >  > take care ,  > iris  >  >  >  >  > > from : vince . j . kaminski @ enron . com  > > to : irismmack @ hotmail . com  > > cc : vince . j . kaminski @ enron . com  > > subject : hello  > > date : tue , 21 nov 2000 15 : 14 : 31 - 0600  > >  > > iris ,  > >  > > we are trying to reach you but we are getting error messages .  > > please , call me 713 853 3848 .  > >  > > vince  > >  > >  >  _ _ _ _ _ _ _  get more from the web . free msn explorer download : http : / / explorer . msn . com\",0\n\"Subject: steve leppard  hi vince ,  hr is working on a mid - year salary review for london people that have a  noticeable gap between their compensation at enron and what we would have to  pay in the market for a replacement . they highlighted steve as someone with  a potential gap - particularly in light of what we ' re seeing in our quant  recruiting effort for credit trading and research .  i ' d like your opinion on the best way to make sure we keep steve happy and  keep him at enron . there are several things i see we can do :  1 ) give him a mid - year pay increase to move him closer to market . i ' m not  sure this is the best way to go , especially if we only offer him a token  salary increase .  2 ) offer him more responsibility : what are your thoughts on timing for  making steve the official head of the london research team ? with my move to  ebs , should we accelerate this ? i think this is good way to keep him happy  and motivated , and then follow up with a more meaningful salary review at  year - end ( as part of the regular process ) that takes into account his greater  responsibility .  3 ) we have some people that we ' re trying to get under long - term ( 3 - yr )  contract with a 12 - month notice clause . obviously anyone signing one of  these will want significant up - front compensation for being handcuffed .  we ' ve not had a lot of success with these here in london , and i would prefer  to keep steve happy so he wants to stay with enron rather than contractually  binding him to the job .  i ' d value your thoughts on this .  thanks ,  dale\",0\n\"Subject: anshuman shrivastava - visa application  ranendra : i have been asked to begin the visa process for the above  individual , located in india .  i believe mr . shrivastava has been working as assistant manager with enron  since may 10 , 1998 . if this is correct , we will be able to bring him into  the us on an ll intracompany visa under the blanklet l for enron .  can you please let me have an email address for him so that i can send him  the required visa questionnaire to begin the process .  many thanks  margaret  713 - 345 - 5083\",0\n\"Subject: referral  vince -  i work in the caribbean structuring group and previously worked at entergy  power marketing on the structuring desk with gary zhu . i am attaching the  resume of a friend from entergy who holds a phd in operations research . he  is considering a move from entergy and from speaking with li xiao i thought  that your group might be a good fit for him . please call with any questions  ( x 67446 ) .\",0\n\"Subject: extreme value theory applied to weathet  - - - - - - - - - - - - - - - - - - - - - - forwarded by christian werner / enron _ development on  19 / 08 / 2000 10 : 06 - - - - - - - - - - - - - - - - - - - - - - - - - - -  christian werner on 19 / 08 / 2000 02 : 08 : 56  to : vince . kaminski @ enron . com  cc :  subject : extreme value theory applied to weather  - - - - - - - - - - - - - - - - - - - - - - forwarded by christian werner / enron _ development on  19 / 08 / 2000 01 : 15 - - - - - - - - - - - - - - - - - - - - - - - - - - -  christian werner on 19 / 08 / 2000 01 : 55 : 56  to : vkamins @ enron . com  cc :  subject : extreme value theory applied to weather  dear vince ,  back in july , when you visited our sydney office you mentioned extreme value  theory . i am wondering whether research is looking into the application  of extreme value theory to power and esp . to weather . in a recent news  article it was highlighted that a trend in the industry towards t _ max , t _ min ,  etc .  i am in particular referring to the news article below :  in the past we have observed a similar trend where customers are asking for  t _ max , t _ min , or below or above precipitation structures . the choice in the  past has been the burn analysis on historical data . however , we are in  particular interested in the extreme events , and the application of evt could  provide a meaningful tool for the analysis .  has the research group looked into the application of evt to weather ? evt has  a long history of application in hydrology ( which would cover parts  of the precipitation structures . . . ) . also , research ( esp . at eth in zuerich )  is indicating the application of evt to v @ r . . . .  thank you !  regards ,  christian\",0\n\"Subject: re :  dave ,  thanks for the invitation . i shall be glad to join you at the dinner  and on saturday .  i shall come alone : my wife will stay with my son in california  till june ( my son graduates this spring from college ) .  i shall remind andy fastow about nfcf .  vince  david ikenberry on 03 / 30 / 2001 06 : 57 : 57 pm  to : \"\" vkamins @ ennron . com \"\"  cc :  subject :  vince ,  it was good seeing you again today . i want to make sure the nfcf is on  your calendar for may 4 - 5 . you should be receiving some registration  materials shortly .  please plan on coming if you can .  also , please attend the dinner on friday evening along with your wife if  possible .  regards ,  dave  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  prof . david ikenberry  jones graduate school of management  rice university  713 - 348 - 5385\",0\n\"Subject: jones graduate school course descriptions list for 2000 - 2001  spring 2001 faculty and students ,  jones graduate school course descriptions list for 2000 - 2001 has been  posted to embanet . to access the course descriptions please open the jgsm  area icon on the embanet desktop . next please open the announcement jgsm  icon . you will find the course descriptions located under the subject  column . please open the document . if you do not have access to embanet  you will need to speak with david kilgore at kilgore @ rice . edu or by calling  david at 713 - 348 - 5378 .  thanks ,  kathy  kathy m . spradling  mba program coordinator  jesse h . jones graduate school of management  rice university  6100 main street , ms 531  houston , texas 77005 - 1892  phone : ( 713 ) 348 - 3313  fax : ( 713 ) 348 - 5251  email : spradlin @ rice . edu  http : / / www . rice . edu / jgs  e - mail : spradlin @ rice . edu  http : / / www . ruf . rice . edu / ~ jgs /\",0\n\"Subject: re : visit to houston and vince kaminski ' s research group  shijie :  i spoke with vince and he said friday the 28 th of july would be fine for  your visit to enron .  please let me know your itinerary when you have it confirmed . there  are two hotels downtown houston , the doubletree and the hyatt regency  that are very close to the enron bldg .  if you need help with anything , please let me know .  look forward to having you at enron .  regards ,  shirley crenshaw  shijie deng on 06 / 30 / 2000 10 : 15 : 43 am  to : shirley crenshaw  cc :  subject : re : visit to houston and vince kaminski ' s research group  shirley ,  thank you for your message . i ' m fine with 7 / 28 ( friday ) . i could fly in  to houston early evening on 7 / 27 . please let me know after you confirm  the date with vince . thanks !  shijie  shi - jie deng  assistant professor  school of isye  georgia institute of technology  office phone : ( 404 ) 894 - 6519  e - mail : deng @ isye . gatech . edu  home page : http : / / www . isye . gatech . edu / ~ deng  on fri , 30 jun 2000 , shirley crenshaw wrote :  >  >  > good morning professor deng :  >  > i am vince kaminski ' s assistant and he has asked me to coordinate your  > visit to enron . the last week in july would be best for vince and his  group .  > especially the 24 th , 26 th , 27 th , or 28 th . tuesday , the 25 th is already  filling  > up . please let me know which day would work for you .  >  > best regards ,  >  > shirley crenshaw  > administrative coordinator  > enron corp . research group  > 713 / 853 - 5290  > email : shirley . crenshaw . com  >  >  >  >  >  >  >\",0\n\"Subject: the mathworks visit on 10 / 18  shirley ,  please , confirm and put on my calendar .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 09 / 20 / 2000  01 : 39 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  scott wakefield on 09 / 20 / 2000 11 : 58 : 02 am  to : vkamins @ enron . com  cc : emcgoldrick @ mathworks . com , rbaker @ mathworks . com  subject : the mathworks visit on 10 / 18  hello vince :  myself , eugene mcgoldrick , and rick baker are looking forward to meet with  you and your group on 10 / 18 at 2 : 00 pm . eugene is the financial products  program manager and rick is a financial engineer and author of several of  toolboxes .  we want to understand the needs of your group to better demonstrate the  proper tools . do you or members of your group have specific applications  that we can address ? please email me those items and i will coordinate the  presentation with our group .  we would like to demonstrate how our tools can be used to rapidly develop  applications , be integrated with databases and other applications ( olf ,  odbc databases , excel , vb , etc . ) and then deploy those applications at no  cost to your traders and analysts .  i look forward to meeting you , please do not hesitate to contact me .  thanks  scott  scott wakefield  the mathworks , inc .  phone : ( 508 ) 647 - 7282  e - mail : swakefield @ mathworks . com\",0\n\"Subject: latest draft  vince ,  i have added a lot of material to \"\" fill in the wholes \"\" and would like your  reaction to the current draft . i am still not very happy with the risk  management segment ( primarily as a result of my own lack of knowledge ) so  please read it carefully and get me your comments .  i plan to let don chew ( the editor ) take a look at it to give us his  guidance toward a successful draft .  hope you are having a great day and tremendous start to the new year .  your friend  john  p . s . i really enjoyed your papers . those should definitely be part of a  class on risk management .  - enron _ paper _ 1 _ 11 _ 01 . doc  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: re : one last reminder and then i will be quiet  e - mail is perfect . it allows me to just dump your grades directly into our  database . i do then sign a hard copy ( indicating that i am signing in  proxy for you ) to hand over to the registrar . if you prefer , you could fax  the information as well ( 713 - 348 - 5251 ) . thank you for your help ! - pam  ( 713 - 348 - 6223 )  at 05 : 39 pm 4 / 24 / 01 - 0500 , you wrote :  > pam ,  >  > please , let me know how i can submit the grades .  > i gave my students april the 30 th as a deadline to submit  > their reports and i shall be able to send you the grades by may the 4 th .  >  > is e - mail ok ?  >  > vince  >  >  >  >  >  > pamela vande krol castro on 04 / 19 / 2001 10 : 11 : 23 am  >  > to : ( recipient list suppressed )  > cc : werckle @ ruf . rice . edu , spradlin @ ruf . rice . edu  > subject : one last reminder and then i will be quiet  >  >  > one last reminder . .  > today is really your last day for scheduling final exams with linda werckle  > ( 3463 ) . she will be out of town after today until exams begin .  >  > also , please remember to turn in your grades for all of your graduating  > seniors by friday , may 4 th . this is the university deadline so we cannot  > miss this date . the registrar needs final information on each student in  > order to verify their graduating status .  >  > as always - thank you for your help !  >  > pamela castro  > mba program associate  > rice university  > 713 - 348 - 6223\",0\n\"Subject: karthik rajan - interview schedule  attached you will find the interview packet for the above - referenced person .  the interview will happen friday , march 30 , 2001 . please print all three  documents for your hard copies . if you have any questions , or conflicts of  schedule , please do not hesitate to contact me .  sasha divelbiss  58714\",0\n\"Subject: re : congrats  vince ,  you beat me to the congrats . the surprise was that i already believed you  were a managing director , so a long overdue congratulations to you .  laura  vince j kaminski @ ect  01 / 11 / 2000 10 : 13 am  to : laura luce / hou / ect @ ect  cc :  subject : congrats  laura ,  congratulations . well deserved .  vince\",0\n\"Subject: requirements for clayton  hi vince ,  i have communicated the following requirements to clayton . please give me  your thoughts on additions / modifications .  for eol model ,  1 . working program , with easily usable interface  2 . user docs , for new user to easily start using system  plus includes details about program structure and modules  3 . reports for tabulation of data by commodity , counterparty , period , etc .  should be easy to run daily .  4 . time series description , including graphs , plus some time series analysis  ( say , relationship of volume to time of day , day of week )  5 . cross commodity trading relationships ( identify potential arbitrage )  for gas model ,  1 . calibrate model  2 . user docs , with complete description of data\",0\n\"Subject: re : message from grant  grant ,  i shall be in the office for a few hours today ( looks like food poisoning ) .  i shall try to call you from home .  i don ' t see any major problem . i shall call david oxley and ask how we could  structure the rehire so that you are not hosed this year .  vince  \"\" grant masson \"\" on 12 / 13 / 2000 11 : 07 : 12 pm  to :  cc :  subject : message from grant  vince :  ?  having now the benefit of some experience with el paso , i conclude that  enron would offer more for me in the long term . ? if you have an interest in  discussing the matter further , please give me a call . i would appreciate  your comments . ?  ?  best regards ,  grant .  ?  ( mobile ) 281 381 9983  ( home ) 713 664 7260\",0\n\"Subject: reply from charles at williams  vince :  thank you very much for your e - mail , i look forward to  talking to you very soon .  sincerely ,  charles  - - - vkaminski @ aol . com wrote :  > charles ,  >  > thanks for your message . i have just come back from  > europe and i am going  > through my mail . i shall call you either on sunday  > or monday after i recover  > a bit .  >  >  > vince  do you yahoo ! ?  yahoo ! photos - 35 mm quality prints , now get 15 free !  http : / / photos . yahoo . com /\",0\n\"Subject: entouch newsletter  business highlights  east power midwest origination  beginning late 2000 , east power marketing implemented a complete market  coverage strategy . since then , epmi has begun to develop relationships with  hundreds of small \u0001 & mom & pop \u0001 8 municipalities . many of these munis had no  prior contact with enron . as a result , east power has executed a valuable 30  mw energy call option term purchase from the municipal energy agency of  nebraska ( mean ) at a congested location .  enron industrial markets  eim has renamed pulp , paper the state power  exchange effectively replaced three monopoly buyers with one monopoly buyer .  deregulation does not mean buying all of your commodity at the last minute ,  on the spot market , rather than planning ahead and purchasing most of the  power under long - term contracts that lock in prices .  the situation in california is the result of continued regulation ,  complicated by a series of natural and man - made factors .  welcome  new hires  egm - lowell bezanis , owen zidar  eim - eric holzer , john ovanessian  ena - mecole brown , nita garcia , ambroshia hunter , nikole jackson , junichi  sugiura , theresa zucha , cynthia gonzalez , scott wilson , kenton schaefer ,  emily butler  transfers  ena - joseph hardy , nancy vu , lloyd miller , jinsung myung , patrick johnson ,  jason wolfe , andrew miles , sara shackleton  eim - sherri baldwin , debbie chance , rob saltiel  egm - jody crook , neithard foley , juan paysse , bhavna pandya , courtney  campbell , terri denning  nuggets & notes  \"\" it is on the high side of medium to high . \"\" - - tim battaglia , vice  president / steel origination eim ( discussing the probability of a transaction  closing ) .  \u0001 & i wanna see the phone glued to your ear ! \u0001 8 - - ed baughman , vice  president / east power mid market ena  \u0001 & referrals , referrals , referrals ! it pays to know good people . \"\" \u0001 ) ambroshia  hunter perry / hr ena  you requested more info \u0001 ( . proud parents michelle vitrella , pr coordinator ,  and husband david vitrella , manager of trading , have named their baby girl  lily ann . she was born on february 27 , 2001 .  learning at the speed of enron  if you haven ' t had a chance to log on to www . investinme . enron . com , you ' re  missing a fast and easy way to gain the information you need to get ahead and  stay ahead . this new ews training site combines everything you loved about  ernie with much , much more . enron employees now have the ability to register  for hundreds of classes on industry - related topics anywhere in the world .  don ' t have time to attend a classroom training ? no problem , you can now use  the web site to search for books , videos , cd rom , and web - based training . all  the learning you want , anytime , anywhere . just go to  www . investinme . enron . com and start building your future today !  news from the global flash  enron wind  enron wind has purchased the factory facilities of the dutch company , aerpac ,  europe ' s second largest producer of wind turbine rotor blades . this move  represents a significant step towards fulfilling enron wind ' s strategic  objective of manufacturing high - quality and technically sophisticated rotor  blades in - house . enron wind will be using its own moulds to produce the  rotor blades . the acquisition of the almelo - based factory facilities , which  are only 60 kilometres from enron wind ' s facilities in salzbergen , germany ,  gives the company a convenient base for european wide distribution .  enron applies for greek electricity trading license  enron , through its subsidiary enron power mepe , has applied for an  electricity supply license for greece , for the 34 % market opening on feb 19 th  2001 . if the license application is successful , enron will be allowed to  approach customers consuming more than 100 gwh up to a combined total peak  capacity of 350 mw . in total , 4 companies have applied for power trading  licenses ( enel , atel and cinergy also applied ) .  legal stuff  the information contained in this newsletter is confidential and proprietary  to enron corp . and its subsidiaries . it is intended for internal use only  and should not be disclosed .\",0\n\"Subject: charm conference call  please let me know what works for you . i have a meeting monday from 10 : 00  a . m . through lunch . please advise .  - - - - - - - - - - - - - - - - - - - - - - forwarded by james l bouillion / hou / ect on 02 / 07 / 2001  07 : 33 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" bertil olsson \"\" on 02 / 06 / 2001 10 : 37 : 21 am  to : james . l . bouillion @ enron . com  cc :  subject : charm conference call  carl and i are both available either monday 12 th or tuesday 13 th . we can do  either am or pm but would prefer am if possible . please let me know your  preference and i will set it up .  regards ,  bertil  the information in this email and in any attachments is confidential and  may be privileged . if you are not the intended recipient , please destroy  this message , delete any copies held on your systems and notify the sender  immediately . you should not retain , copy or use this email for any  purpose , nor disclose all or any part of its content to any other person .\",0\n\"Subject: re : fas 133 paper  vince ,  it ' s a pdf file . you can access it on our home page . sorry for your trouble ;  please let me know if this method doesn ' t work .  regards ,  andy kalotay  andrew kalotay associates , inc .  61 broadway , suite 3025  new york ny 10006  ( 212 ) 482 - 0900  visit our website www . kalotay . com  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : monday , february 26 , 2001 12 : 03 pm  to : andy @ kalotay . com  subject : re : fas 133 paper  >  andy ,  thanks . i cannot open the file . is it a word document ?  vince  \"\" andrew kalotay \"\" on 02 / 23 / 2001 02 : 26 : 39 pm  to : \"\" vincent kaminski \"\"  cc :  subject : fas 133 paper  vince ,  here ' s the final version . it will appear in the next issue of the journal  of  applied corporate finance . we ' re getting some very positive response to the  vrm approach .  regards ,  andy  ( see attached file : winmail . dat )\",0\n\"Subject: re :  joe ,  i have written to pal quilkey to invite christian werner to houston  for a week to discuss how much of his research we can use .  vince  joseph hrgovcic  08 / 01 / 2000 06 : 51 pm  to : vince j kaminski / hou / ect @ ect , mike a roberts / hou / ect @ ect  cc :  subject :  vince ,  i have inquired into christian ' s climate models . it seems to me like a long  term project . chiristian says that his model might be able to do better than  the australian met given that they ignore some of the variables he uses and  that they are an \"\" old boy ' s network \"\" resistant to new developments , but i  don ' t think the same can be said of most other weather services . as far as  the nws goes , they run their model on a cray , they have several very talented  phd ' s working on it full - time , and even then , they can only get a dozen or  so runs per night . in other words , it ' s a huge system . replicating something  even close to that will not be an easy task .  that being said , i think there are related applications that we could look  into . since i ' ve already promised the rac group and the weather desk ' s pjm  traders to put together a vector autoregressive model of daily temperatures ,  i think it makes sense to see if something better than a var model can be put  together , perhaps a very stripped down version of the kind of model christian  has . what i have in mind is something that would give us say , up to several  dozens of \"\" possible \"\" temperature forecasts every morning , which would be  calculated using actual climate models ( as opposed to time series models ) . i  would not use this as a forecasting tool ( the nws model results would make a  far better \"\" best guess \"\" ) , but our ensemble could still be used to provide a  distribution of temperature scenarios . this ensemble would have several uses :  1 ) we could price the book for the ensemble of runs and thereby obtain a  more realistic daily v @ r for the weather book ( and eventually interface that  with the power desk ' s v @ r calculations )  2 ) we could use the ensemble of forecasts to relate temperature forecasts to  week - ahead cdd and hdd distributions ( for use in our demand swaps )  3 ) if freese - notis were to give us one of their qualitative forecasts ,  e . g . , \"\" expect the trough to recede \"\" we could sort through the different monte  carlo scenarions , find one in which the trough in question is receding , and  use corresponding output statistics to download the actual temperatures  corresponding to that scenario . up till now , we haven ' t found a good way of  getting a numerical fix on what different forecasts actually mean  temperature - wise  4 ) we could use the associated visualization routines that come with such  models to get animations of the evolution of historical weather patterns . the  traders could use these in order to look for historical periods which roughly  match current weather conditions and get an idea of what could happen ;  although these meteorological models would not be good for simulating  month - ahead or season - ahead weather ( trust me on this ) we could still use the  visualization technology to do to analogous seasonal animations .  just today , i ' ve spoken with dr . jacobsen of stanford university , who has  written one of the more recent textbooks on climate forecasting , and who  worked with ucla ' s general circulation model . he says that getting a  simplified version of mm 5 ( which is itself a simplified , limited - area version  of the gcm models that nws , cola , and ucla use ) would take several months to  implement , assuming the people involved are already well versed in the  technology . also , i have contacted aer , a massachusetts - based weather  consulting firm , and they tell me that they have a mm 5 model running daily  ( only one run per night ) , and also some smaller pc models up and running .  they are of course willing to work with us for a fee . their mm 5 version runs  on a $ 200 , 000 parallel processor .  i am open to your suggestions ( or objections as the case may be ) . i ' m not  sure how the costs would be apportioned given that this would benefit all of  enron , and not just the weather desk .  i am scheduled to go to boston next week anyway , and would like to use the  opportunity to visit with aer . i will of course coordinate any projects with  christian ( if we get something like this up and running it will be more  likely that he can get the computing power he needs to run his own australian  model ) .  joe\",0\n\"Subject: re : charm  you are welcome to have soneone on the charm team contact vince kaminski at  713 - 853 - 3848 . thanks again .  \"\" bertil olsson \"\" on 04 / 24 / 2001 01 : 40 : 06 pm  to : james . l . bouillion @ enron . com  cc : \"\" carl groth \"\" , \"\" kenneth risko \"\"  subject : re : charm  jim ,  thanks for the feed - back . to assist in the further development of the  product , are there any specific areas your group would like to see improved  ? based on comments made during our meeting , it sounded like your main  concern was whether or not charm would have the capacity to cover the very  different and complex risk areas that your company is involved in . would  you mind if someone from our charm group called you or mr . kaminski for  some specific comments ?  regards ,  bertil  james . l . bouillion @ enron . com on 04 / 24 / 2001 01 : 35 : 09 pm  to : bertil olsson / hou / us / wcg @ wcg  cc :  bcc :  subject : re : charm  bertil , i again wish to thank you for the presentation on the charm  product . the response from the group is that the model requires more work  before enron could consider it as a commercial product . please keep me  advised as i assume that you will continue to develop the model .  james l bouillion  04 / 11 / 2001 06 : 50 am  to : \"\" bertil olsson \"\" @ enron  cc :  subject : re : charm ( document link : james l bouillion )  no word yet . i will follow up with the attendees .  thanks for taking thje time to make the presentation .  \"\" bertil olsson \"\" on 04 / 10 / 2001 04 : 07 : 11 pm  to : james . l . bouillion @ enron . com  cc :  subject : re : charm  jim ,  any feed - back on our meeting ? we certainly appreciated the opportunity and  the fact that the meeting was very interactive .  regards ,  bertil  the information in this email and in any attachments is confidential and  may be privileged . if you are not the intended recipient , please destroy  this message , delete any copies held on your systems and notify the sender  immediately . you should not retain , copy or use this email for any  purpose , nor disclose all or any part of its content to any other person .  the information in this email and in any attachments is confidential and  may be privileged . if you are not the intended recipient , please destroy  this message , delete any copies held on your systems and notify the sender  immediately . you should not retain , copy or use this email for any  purpose , nor disclose all or any part of its content to any other person .\",0\n\"Subject: re : uk portfolios and books setup in risktrac  david and vince ,  in my e - mail below i pointed out to a inconsistency in the portfolio  hierarchy for uk positions in risktrac that i found out ,  namely : some books ( for example elsb 1 and elsb 2 ) belong to uk - gas portfolio  and to uk - power portfolio .  i wanted to clarify this in order to reconcile positions in risktrac and in  the spreadsheet .  tanya .  tanya tamarchenko  01 / 03 / 2001 02 : 09 pm  to : naveen andrews / corp / enron @ enron , matthew adams / corp / enron @ enron  cc : rabi de / na / enron @ enron , jaesoo lew / na / enron @ enron , vince j  kaminski / hou / ect @ ect  subject : re : uk portfolios and books setup in risktrac  naveen and matthew ,  i started looking systematically through uk positions and corresponding var  numbers in the risckrac .  i found a few inconsistencies so far .  1 . the portfolio elsb 1 - nbp has a book elsb 1 under it . the sum of delta  positions for this book is  239 , 021 , 655 , the sum of gamma positions is - 211 , 031 , 450 . var for the  portfolio elsb 1 - nbp is zero .  the same refers to a few other portfolios , for example elsb 2 - nbp , elsb 3 - nbp ,  e 2 xxl - nbp .  2 . the portfolio elsbp 1 - ppp also has the book elsb 1 under it . this book  contains the positions on pppwdl  through pppwd 6 and pppwel through pppwe 4 .  the same refers to the other books , for example elsb 2 .  this looks messy . can someone in rac go over all the portfolios , all the  corresponding books and curves  in risktrac and make sure they are set up properly ?  thank you ,  tanya .\",0\n\"Subject: fyi : ferc staff report on investigation of bulk power markets  message sent from the pjm - customer - info mailing list at  pjm - customer - info @ majordomo . pjm . com :  the ferc staff recently released a report discussing markets in each of the  regions titled \"\" investigation of bulk power markets \"\" . the report is not a ferc  order .  the northeast region is discussed in a section of 100 pages in length . pjm is  discussed in detail beginning on page 1 - 59 . there are some minor inaccuracies  in  the report with respect to pjm , such as the 1999 peak load .  the report is a good first step in understanding the complex markets in the  northeast and their relationships among each other . the report also contains  recommendations and options for resolution of issues .  the complete report can be found at www . ferc . fed . us / newsl / staffreports . htm  please do not reply to this message . if you have a question for pjm customer  relations and training , please send an e - mail to custsvc @ pjm . com .  to unsubscribe from this list , send an e - mail to majordomo @ majordomo . pjm . com  containing only the following line in the body of the e - mail :  unsubscribe pjm - customer - info\",0\n\"Subject: sap time sheets on the o : \\ research \\ common drive  hello everyone :  if you were not able to access the spreadsheet we created for your time ,  on the o : \\ research \\ common \\ sap timesheets site , please let me know .  if a box came up with \"\" read only \"\" on it , you may not have access to the o : \\  drive . let me know and i will issue an srrs request for access .  thanks .  shirley\",0\n\"Subject: softs information  attached is the ubs summary . the ubs deal is confidential due to its large  size and the summary is an informal overview . the deal structure has not  been defined ; this sheet provides only rough details . call if you have any  questions .  erin  ext 3 - 9677\",0\n\"Subject: re : institute of international finance - annual subscription  shirley  yes .  vince  shirley crenshaw  03 / 05 / 2001 02 : 25 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : institute of international finance - annual subscription  vince :  is this ok to pay ?  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 03 / 05 / 2001  02 : 19 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : sharon purswell / enron @ enronxgate on 03 / 05 / 2001 12 : 53 pm  to : shirley crenshaw / hou / ect @ ect , vince j kaminski / hou / ect @ ect  cc :  subject : institute of international finance - annual subscription  robert johnston has asked me to charge vince ' s department for 1 / 3 of the cost  of the annual subscription to iif . the annual cost is $ 47 k . therefore the  cost for 1 / 3 is $ 15 , 666 . 67 . this information is for maureen raymond ' s use .  i will be happy to process the invoice for payment but in order for me to do  so , i will need the proper coding for vince ' s department .  please let me know if you are agreeable to this . if you have questions , you  may wish to contact robert johnston directly at 3 - 9934 .  thanks ,  sharon  5 - 7212\",0\n\"Subject: interview for the research group  hello everyone :  vince would like to bring jaesoo lew in next week for an exploratory interview  with the research group . the dates that would work best for us are :  wednesday ,  the 25 th ( am ) , thursday , 26 th ( am ) and friday , 27 th ( am ) . please see if mr .  lew  is available for any of these times .  thanks !  shirley  3 - 5290  - vitae 2 . doc  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 10 / 18 / 2000  12 : 51 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  10 / 18 / 2000 12 : 29 pm  to : stinson gibner / hou / ect @ ect , shirley crenshaw / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : position  shirley ,  i would like to invite him to an interview next week . we should use his home  phone  number and / or private e - mail address .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 18 / 2000  12 : 33 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" jaesoo lew \"\" on 10 / 17 / 2000 09 : 59 : 01 pm  to : vkamins @ enron . com  cc :  subject : position  dear dr . kaminski  my name is jaesoo lew and i am referred by dr . wayne lee .  currently i ' ve been working at aquila energy in kansas city as an pricing  analyst since july 2000 . since then , i have developed a natural gas storage  valuation model applying the swing options ( forest method ) pricing approach .  the price processes would be considered critical for the storage valuation  since a trinomial forest is required to value storage . also the c + +  programming using excel dll has been developed , too .  i attached my resume to this message for your consideration and am looking  forward to talking about an opportunity at enron .  my home phone number is 913 - 649 - 0578 , dr . kaminski , i will wait your call in  this week as dr . lee informed me . if possible , please let me know your  expected calling day through the mail . i appreciate your consideration .  thank you very much .  sincerely ,  jaesoo lew  get your private , free e - mail from msn hotmail at http : / / www . hotmail . com .  share information about yourself , create your own public profile at  http : / / profiles . msn . com .  - vitae 2 . doc\",0\n\"Subject: wharton tm # 3 presentation  vince , scanned through . looks like a good start .  thanks  john henderson  - - - - - forwarded by john henderson / hou / newpower on 02 / 16 / 2001 03 : 32 pm - - - - -  vince j kaminski @ ect  02 / 16 / 2001 09 : 56 am  to : john henderson / hou / ees @ ees  cc :  subject : wharton tm # 3 presentation  john ,  did you have a chance to take a look at his presentation ?  any comments ?  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 16 / 2001  09 : 55 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" cummins , marc \"\" on 02 / 15 / 2001 01 : 36 : 16 pm  to : \"\" ' christie . patrick @ enron . com ' \"\" ,  vince . j . kaminski @ enron . com , melinda . mccarty @ enron . com , \"\" ' li . sun @ enron . com ' \"\"  , \"\" ' john . henderson @ newpower . com ' \"\"  cc : \"\" thorne , heather \"\" , \"\" degiacinto , clayton \"\"  , \"\" lessar , stephen \"\" ,  \"\" vittal , maheshram \"\" , \"\" bassal , omar \"\"  , \"\" feerick , dennis \"\" ,  \"\" cummins , marc \"\" , \"\" ' thomas @ wharton . upenn . edu ' \"\"  subject : wharton tm # 3 presentation  vince and christie ,  here are the read ahead slides for today ' s teleconference . also attached is  the first draft of our conjoint analysis survey . we ' ll see you this  afternoon .  > >  sincerely ,  team 3  - enron pres # 3 . ppt  - newpower conjoint . doc\",0\n\"Subject: re : copper curve  tani ,  no problem . we shall look at the curve on monday . i have organized a small  team to examine  the curve from different perspectives .  curve validation is normally a rac prerogative and i shall get them involved  on monday  vince  tani nath  10 / 27 / 2000 11 : 40 am  to : maureen raymond / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , steven leppard / lon / ect @ ect , tim  poullain - patterson , harry tefoglou / lon / ect @ ect , esther gerratt / lon / ect @ ect  subject : copper curve  following steve ' s note to you earlier today , i wanted to mention that we have  a fairly urgent need for review of the copper curve in particular , as there  is a deal due for final pricing in the next few days .  i am not sure what data you have received from enron metals in london , so i  am asking tim poullain - patterson to ensure that you have the curves and the  economic justification proposed as soon as possible . please direct any  questions to him or to harry tefoglou . i will be in the tokyo office next  week , but available via e - mail .  thanks in advance for your assistance ,  tani\",0\n\"Subject: re : enron default swaps  hi vince !  i got those notes . they should indeed  be useful . the one from deutsche bank  is especially helpful !  i am suppose to know this stuff , as i teach it !  sorry about the delayed billing .  i have had trouble getting a bill  from my excellent asistant , taichi hoshino ,  who has returned to goldman tokyo ,  and has not been able to get anything else  done lately . i will try to get something out soon !  we had several energy people ,  from several companies , at our credit risk  exec ed course last month . seems that  credit risk and power risk go  together these days !  warm regards , darrell  on fri , 30 mar 2001 vince . j . kaminski @ enron . com wrote :  >  > darrell ,  >  > i am sending you 2 technical notes on enron default swaps : i hope that they  > will  > be useful . i shall read the articles on weekend . i am curious if you  > find these explanations satisfactory .  >  > we are very slow in preparing a number of technical documents  > for you for model reviews . we still hope you will be able  > to find some time to review our credit models ( for our london  > credit trading ) and var and option pricing related models .  >  > also , please check your invoices . i still think we owe you money .  >  >  > vince  > ( see attached file : cds vs as . pdf ) ( see attached file : cdsstrat . pdf )  >  >  >  >  > darrell duffie on 03 / 28 / 2001 08 : 07 : 38 am  >  > to : vince j kaminski  > cc :  > subject : re : enron default swaps  >  >  >  >  > vince : according to a bank of america  > publication , your ( enron ) default swap spreads  > are consistently trading about 80  > basis points wider than your asset swaps .  > any idea of what is going on here ?  >  > thanks for any guidance , darrell  >  >  > _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  > darrell duffie  > mail gsb stanford ca 94305 - 5015 usa  > phone 650 723 1976  > fax 650 725 7979  > email duffie @ stanford . edu  > web http : / / www . stanford . edu / ~ duffie /  > _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  >  >  >  >  darrell duffie  mail gsb stanford ca 94305 - 5015 usa  phone 650 723 1976  fax 650 725 7979  email duffie @ stanford . edu  web http : / / www . stanford . edu / ~ duffie / \",0\n\"Subject: letter to nesbitt  john ,  the outline of a message to nesbitt .  dale ,  thanks for your message . in our phone conversation before the meeting you  mentioned  another contractual arrangement under which we could work with your company  employees on a case - study .  the cost of a weekly project would be $ 12 , 000 that would be applied to the  purchase price should  we go ahead and decide to acquire the software . this project would allow us  to evaluate the model and  come up with an estimate of the manpower necessary to support the model  internally .  please , let me know more about this option .  vince\",0\n\"Subject: value lab meeting on the lst of august  amy :  below are the individuals vince wants to include in this meeting . do you  want me to send the email out or is it better coming from you ? i have  reserved ebl 9 cl , however , since most of the guys are located on an  upper floor we may want to see if we can get something up there .  let me know .  attendees  amy oberg  vince kaminski  rick causey  rick buy  mark koenig\",0\n\"Subject: re : redployment  vince ,  i highly appreciate your consideration .  best regards ,  rehman  vince j kaminski @ ect  03 / 06 / 2001 11 : 41 am  to : rehman sharif / enron _ development @ enron _ development  cc :  subject : re : redployment  rehman ,  thanks for you message .  my group hires almost exclusively people with background in quantitative  disciplines  ( math , physics ) or computer programming .  i shall send your resume to some other units in the company that are looking  for people with good skills and experience .  vince  rehman sharif @ enron _ development  02 / 27 / 2001 11 : 17 am  to : vince j kaminski @ ect  cc :  subject : redployment  vince ,  i am a redeployment candidate out of calme region and in the process of  exploring opportunities within enron . i have very extensive background in  financial analysis and economic structuring . i am interested learning more  about your group to find out if my skills and abilities could serve the  present and future needs of your group . attached is my resume for your  review , any guidance you could provide would be greatly appreciated .  regards ,  rehman sharif\",0\n\"Subject: meeting to discuss research support to ees  sharon / carol :  jeremy blachman called vince kaminski and requested a meeting to  discuss additional research support for ees , as soon as possible . the  participants in this meeting would be :  jeremy blachman  marty sunde  vince kaminski  krishna krishnarao  the soonest vince and krishna are available would be thursday ,  october 26 at the following times :  9 : 00 - 10 : 00 am  1 : 00 - 3 : 00 pm  and friday , october 27 th :  8 : 30 - 10 : 30 am  1 : 00 - 2 : 30 pm  please let me know what time would be best for marty and jeremy .  thanks !  shirley crenshaw  3 - 5290\",0\n\"Subject: re : notice of end probation  i would like to pass sharad ' s probationary period .  steve  london hrservice centre  25 / 01 / 2001 10 : 49  sent by : zoe michael  to : steven leppard / lon / ect @ ect  cc :  subject : notice of end probation  notice of end of probation  i am writing to inform you that the six month probationary period for sharad  agnihotri is due to end on the 21 / 02 / 2001 .  please can you let me know as soon as possible if you want to :  * pass the probationary period  * fail the probationary period * *  * * in this case you will need to discuss with human resources  if the probationary period is passed i will send out a letter to this effect  for you to sign and pass to your employee .  thank you  zoe\",0\n\"Subject: grades  pam ,  the term papers arrived at my internet mailbox .  i shall be sending you the information as i make progress reading the papers .  first group of students :  helen demianenko  javier lamas  lynn nazareth  shauywn smith  carlos wheelock  sarah woody  grade : a  please , confirm receipt of this message and please double check  that all registered students have been graded ( to make sure no student falls through  the cracks ) .  vince\",0\n\"Subject: resending paper  - - - - - - - - - - - - - - - - - - - - - - forwarded by jason sokolov / hou / ect on 04 / 30 / 2001 08 : 18  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" lynn nazareth \"\" on 04 / 27 / 2001 12 : 46 : 37 pm  to : jason . sokolov @ enron . com  cc :  subject : resending paper  jason :  here is our team ' s assignment . please confirm receipt . i am also sending you  the file via my outlook address in case this doesn ' t work .  this is our team :  helen demianenko  javier lamas  lynn nazareth  shauywn smith  carlos wheelock  sarah wooddy  thanks , jason ! see you at enron this fall !  lynn  get your free download of msn explorer at http : / / explorer . msn . com  - mg _ analysis _ final . doc\",0\n\"Subject: the answer ! ! !  - - - - - - - - - - - - - - - - - - - - - - forwarded by mike a roberts / hou / ect on 08 / 09 / 2000  03 : 24 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  nathan mantua on 08 / 09 / 2000 03 : 21 : 37 pm  to : mike a roberts / hou / ect @ ect  cc :  subject : re : pdo  i ' m not sure what to think , other than we really don ' t have a  credible way to determine what will happen with the pdo . one factor  that provides insight into the climate outlook for the next few months  and next few seasons is the expected changes with enso ( for which  there is some demonstrated skill in forecasting ) . the latest  observations show trends to near - normal enso conditions , with  some indication that ocean temperatures will likely be a bit  warmer than normal in the tropics . if this is true , i ' d expect a slight  bias toward el nino - like climate over north america , which would  tend to go against the continuation of cold phase pdo conditions .  best wishes ,  nate mantua  mrobert @ ect . enron . com wrote :  > hi  >  > are you thinking we are moving into a cold phase pdo now ? ?  >  > thanks  >  > mike roberts  - -  ~ ~ ~ ~ ~ ~ ~ ~ ~ ? nathan mantua email : mantua @ atmos . washington . edu ? ( 206 ) 616 - 5347 fax : ( 206 ) 616 - 5775 ? ? dept of atmospheric sciences , jisao ? university of washington ? box 354235 ? seattle wa 98195 - 4235 ? ? http : / / www . atmos . washington . edu / ~ mantua ? ~ ~ ~ ~ ~ ~ ~ ~ ~  - attl . htm\",0\n\"Subject: historical curve databases & historical ff vols  dear all ,  as promised , i cleaned up the data and put it into 6 spreadsheet files ( we  will do gold and cocoa separately ) . i also ran 10 , 20 , 30 and 60 day fwd fwd  volatility calculations based on historical log return data - you can see the  results at the bottom of the sheet called \"\" log returns \"\" for each of the six  spreadsheets attached below .  the data in the files is ready for pca analysis . we can use either the fwd  fwd vols from recent history or implied option quotes to complete the  analysis .  regards ,  anjam  p . s . we have already done the pca on aluminum h ( high grade , so please don ' t  repeat the analysis for that one )  final files :  al _ h :\",0\n\"Subject: vince ,  congratulations on your promotion !  regards ,  nh\",0\n\"Subject: erisk essentials  ? www . erisk . com  what ' s new at erisk . com - 06 april 2001  weekly review this week ' s economic , banking and p _ insurance news , from an  enterprise risk management perspective . read it here . . .  analysis  ? how the new economy aided and abetted the economic downturn  ? state or federal regulation ? banks and insurers slug it out  ? credit risk concentration hits the interest - rate swaps market  feature why do some art products fare better than others ? credit insurance ,  for example , has taken off while the securitisation of catastrophe risk has  struggled . in this feature , sanford bernstein analysts todd bault and  timothy connor suggest that the secret of success lies in matching different  kinds of risk to their appropriate owners - and that insurers ' expertise in  handling basis risk makes this a potentially lucrative market . also still  available : penny cagan on basle ' s treatment of operational risk .  iconference  looking for an overview of economic capital ? attend our iconference  \"\" practical considerations in measuring economic capital \"\" on april 11 . read  more about it and register for the iconference .  still available : slides and a summary of the credit derivatives iconference .  links need to find educational material on the web ? looking for a software  vendor , a regulator or an exchange ? find hundreds of links to other risk  management sites and resources in our links section  the erisk essentials is published every friday by erisk . com .  to subscribe to this newsletter , please register on our website .  to unsubscribe , access your account . your username is the email address  where you received this message .  to be reminded of your password , or to reset it , follow this link .\",0\n\"Subject: re : var for enroncredit . com  bryan ,  we shall be glad to take a look at the system . to sign - off on the vendor  provided system we  have to look under the hood and review the algorithms . i hope the vendor will  have no objections to it .  another critical issue we have to solve on a short notice is to integrate the  system you want to buy  with the rest of var / credit systems . we shall stand by to help in this  endeavor .  an alternative approach is to evaluate to what extent your positions can be  rolled into the existing risk systems .  vince  bryan seyfried  11 / 10 / 2000 03 : 20 am  to : vince j kaminski / hou / ect @ ect , steven leppard / lon / ect @ ect  cc : ted murphy / hou / ect @ ect  subject : var for enroncredit . com  vince / steve - - we are going to the board in december to ask for formal  limits . as you know one of the key limits at the board level is value at  risk . to that end , it is imperative that you are comfortable with our  approach for calculating var . we have implemented a third party risk system  which holds all of our positions and are in the process of putting the debt  positions in . the system has a var engine which is being demo ' d by the  vendor today . ben and kirstee are attending the demo and if they find the  technology acceptable , i propose moving forward with implemantion of the  module . pls . let me know if this sounds reasonable and how you would  envision implementing .  thanks\",0\n\"Subject: rice cfos conference  christie ,  this is one of the communications regarding rice cfos conference .  andy requires some gentle persuasion .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 10 / 2001 08 : 20 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  david ikenberry on 04 / 09 / 2001 01 : 27 : 24 pm  to : vince . j . kaminski @ enron . com  cc :  subject :  hi vince ,  i may have missed something , however don ' t believe i have received any  communication recently from andy festow about this upcoming may 4 - 5 corp .  fin . conference . i hope he is still planning to come , yet i don ' t know as  of now .  i have andy penciled in as a participant on a \"\" panel \"\" that is discussing  equity dilution from stock option compensation ( the role of panelist should  require little , if any , preparation time ) . of course , i want andy to  come , however he is concerned about his ability to attend , i probably  should identify another person or two to serve on the panel .  dave .  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  prof . david ikenberry  jones graduate school of management  rice university  713 - 348 - 5385\",0\n\"Subject: re : pserc industrial advisory board meeting invitation  dear mr . ray ,  i regret to inform you that due to very heavy workload we cannot attend  the power systems engineering research center ' s  upcoming industrial advisory board meeting in oak brook .  our work load does not leave us much time to get involved  with pserc at this moment . we would very much like to stay  in touch and plan to reconsider our decision in the second half of this year .  vince kaminski  \"\" dennis ray \"\" on 03 / 27 / 2001 04 : 46 : 44 pm  to : \"\" vince kaminski \"\"  cc :  subject : pserc industrial advisory board meeting invitation  mr . kaminski ,  greetings . bob thomas , shmuel oren and i invite you to attend the power  systems engineering research center ' s upcoming industrial advisory board  meeting in oak brook , il . it will be held on may 31 - june 1 .  as you know from lance and alex , this is an opportunity to meet university  researchers and industrial members of pserc . the meeting also has  presentations on pserc activities and research projects , pserc business  discussions , current topic discussions , and a tutorial . our current topics  discussion will be on iso / rto issues , and will involve executives from  several isos in dialog with university researchers .  please let me know if you have any questions . we hope to see you there so  that we can talk about any questions you might have about pserc .  dennis ray , ph . d .  executive director  power systems engineering research center  608 - 265 - 3808  - directions . doc  - iab _ meeting _ may 2001 . doc  - iab _ registration _ form . doc  - pserc members . doc\",0\n\"Subject: transmission roundtable meeting  the meeting will be held on december 8 , 2000 from 11 : 30 am to 1 : 00 pm in  conference room eb 19 cl . box lunches will be served . your choices are  listed below :  salads : roasted chicken cobb salad , grilled chicken caesar salad , classic  chef salad  sandwiches : turkey , roast beef , ham , chicken salad , tuna salad or club  sandwich . served on homemade white or wheat bread  please email your lunch choice to me by monday , december 4 , 2000 .  thanks and regards ,  anita dupont\",0\n\"Subject: voila  hey guys , the model just converged , beautifully . thanks for having the guts  to try something big .  clayton\",0\n\"Subject: summer internships at enron  celeste ,  i have just talked to kim . i told her she will receive one .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 01 / 2001  09 : 31 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  03 / 01 / 2001 09 : 25 am  to : celeste roberts / hou / ect @ ect  cc : kristin gandy / na / enron @ enron , christie patrick / hou / ect @ ect , vince j  kaminski / hou / ect @ ect , piazze @ wharton . upenn . edu  subject : summer internships at enron  celeste ,  it seems that the process lasted too long for some students  and only kim whitsel is interested in the internship at this point .  her resume has been forwarded to you .  i am enclosing it just in case .  thanks for your help .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 01 / 2001  09 : 20 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  fap on 02 / 23 / 2001 02 : 28 : 48 pm  to : \"\" ' vkamins @ enron . com ' \"\"  cc : \"\" ' piazze @ wharton . upenn . edu ' \"\"  subject : summer internships at enron  vince :  thank you to you , ken and christie for coming to campus for the enron tiger  team mid - project review . the students are working hard and appreciate your  insight and suggestions to the project . thank you for your support of the  wharton school .  kim whitsel ( whitselk @ wharton . upenn . edu ) of tiger team 1 has informed me  that she is very much interested in a summer internship at enron this year .  i don ' t believe some of the students understood the process you had setup  for them at enron as part of the tiger team . being concerned with having  summer employment , they interviewed with other firms and ultimately accepted  positions . the students asked that i express to you that this does not mean  they are not interested in full time work at enron next year . i apologize  and take responsibility for the lack of communication in this regard . i  think it is a lesson learned and perhaps , in the future , we can make the  agreement to students understood in advance of their \"\" dedicated interview  week \"\" and eliminate their need to interview at all . this can also be an  added advantage of applying to be a member of the tiger team .  please let me know if you have any questions and exactly how kim whitsel  should proceed .  thank you ,  donna piazze  program director  field application project  the wharton school  univ . of pennsylvania  215 . 573 . 8394 fax 215 . 573 . 5727  fap @ management . wharton . upenn . edu  piazze @ wharton . upenn . edu\",0\n\"Subject: re : meeting with you last week ?  scott ,  not at all . i left to make a quick call and it required a number  of follow - up calls .  the presentation was very interesting and professional .  one of the guidelines we have in my group is to avoid using too many software  packages .  otherwise , everybody will have his own pet package and we shall lose  economies of scale .  i shall talk to my associates about your product and get back to you .  vince  scott wakefield on 10 / 23 / 2000 12 : 09 : 46 pm  to : vkamins @ enron . com  cc :  subject : meeting with you last week ?  hello vince ,  i ' m writing to follow up with you regarding our meeting last week . did we  do something wrong in our presentation or in the set up of this presentation ?  for a group of 50 researchers we were expecting a larger crowd and also  some peole perhaps from your it department . also when you left i was  wondering if we had offended you .  the ability to use our products to create open models , integrate databases ,  c , vb , etc . and then quickly deploy them to others has been embraced by  the risk management world . we met the following day with a large group  from ees and they seemed quite enthusiastic about the innovation possible  with our tools .  i realize you are quite busy , but could you please let me know what  happened and how we can prevent this in the future ?  thanks  scott wakefield\",0\n\"Subject: re : informal interview with the enron research group  fyi :  i have arranged the following interview schedule and marked your calendars .  ( except paulo - i do not have access to his calendar ) . i have reserved eb  1938 . a copy of his resume will be forthcoming .  thanks !  shirley  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 09 / 20 / 2000  03 : 42 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  shirley crenshaw  09 / 20 / 2000 03 : 37 pm  to : \"\" nelson neale \"\" @ enron  cc :  subject : re : informal interview with the enron research group  mr . neale :  thank you for responding so quickly . i have scheduled the following date and  times . please let me know if they are convenient for you .  friday , september 29 th :  vince kaminski 8 : 30 am  grant masson 9 : 00 am  vasant shanbhogue 9 : 30 am  zimin lu 10 : 00 am  paulo issler 10 : 30 am  stinson gibner will be out of the office for 3 weeks beginning monday , the  25 th so he will be unable to interview you .  we should be through between 11 : 00 - 11 : 30 am . if you have any questions  please feel free to call me .  when you come into the enron bldg . go to the security console and ask  for me . we are located on the 19 th floor and i will meet you at the elevator  lobby on the 19 th floor .  look forward to hearing from you soon .  regards ,  shirley crenshaw  713 - 853 - 5290  \"\" nelson neale \"\" on 09 / 20 / 2000 03 : 18 : 45 pm  to : shirley . crenshaw @ enron . com  cc :  subject : re : informal interview with the enron research group  ms . crenshaw :  nice to hear from you ! i will be available on the following dates :  friday september 29 ( am or pm )  monday october 2 ( am )  thursday october 12 ( am or pm )  friday october 13 ( am or pm )  let me know which of the above dates and times works best for the group . i  look forward to hearing from you .  regards ,  nelson neale  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  c . nelson neale , ph . d .  2990 bissonnet , # 9106  houston , tx 77005  ph : 713 - 303 - 5973  neneale @ hotmail . com  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  get your private , free e - mail from msn hotmail at http : / / www . hotmail . com .  share information about yourself , create your own public profile at  http : / / profiles . msn . com .\",0\n\"Subject: european power web call replay  mr . vincent j . kaminski  managing director  enron capital & trade resources corp .  dear mr . kaminski :  on june 8 last , we held a special web - based conference call pertaining to a  new cera multiclient study , \"\" the future of european power : electricity  without borders \"\" . ? participants in this complimentary call learned first - hand  some of the initial results of the study , and how the study provides a  framework for evaluating current and future company strategies .  we are pleased to announce the availability of the recorded presentation on  our website . ? to view the presentation , please visit our website at : ?  the presentation focused on the study scope and approach , and its underlying  analysis . ? in addition , the link above will also provide access to the  prospectus for the study , including the deliverables and enrollment  information . ? if your organization has not yet enrolled in the study , we urge  you to consider doing so at this time .  should you have any questions either about this study , or about any aspect of  cera ' s european power services then please contact me by reply email or  directly by phone in paris at + 33 1 42 44 10 18 .  sincerely ,  david callanan  dcallanan @ cera . com  should you have trouble reaching the website using the link above , please go  to ? http : / / www . cera . com / offerings / mcs / eurpow 99 / ?  our relationship with you is very important to us . ? if you wish not to  receive e - mail notifications from cera , please send a reply to this message  with \"\" donotemail \"\" as the subject of your message . (  mailto : info @ cera . com ? subject = donotemail ) \",0\n\"Subject: upcoming energy conference - kaminski requirements  vince :  i sent you itinerary to her , but did not send a photo or the handouts .  thanks !  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 03 / 09 / 2000  01 : 26 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" dawn scovill \"\" on 02 / 29 / 2000 09 : 20 : 48 am  to : shirley crenshaw / hou / ect @ ect  cc :  subject : upcoming energy conference - kaminski requirements  good morning , shirley ! i ' m missing some things from mr . kaminski w / regard  to  his presentation in miami in a few weeks . at your earliest convenience ,  could you please forward the following :  * pr photo - either electronic or i ' ll scan & return  * handouts - either electronic or mail clean copy to the address below  * copy of his flight itinerary , so we know when to expect him  all the contact info you need is as follows :  dawn scovill , conference coordinator  \"\" powerful new ideas 2000 \"\"  pmb # 216 , 2480 s . congress avenue  west palm beach , fl 33406  phone ( 561 ) 439 - 7682 - fax ( 561 ) 439 - 7055 - email dawn @ perfectmeeting . com  i would really appreciate your prompt attention - i ' m working toward getting  the room set - ups & conference book finalized . thanks for your help . look  forward to a great conference ! !  dawn  from : dawn scovill , event coordinator  designs event consulting  dawn @ perfectmeeting . com\",0\n\"Subject: alp presentation  vince and ken ,  dean gil whittaker of the rice business school has also confirmed ! ! pass the  word on to the students ( no pressure ! ! ha ! ! )  -  i think i ' ll go ahead and put the word out to some of the active rice alums  here at enron - - it ' ll be a great event !  thanks !  - - christie .  - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 04 / 11 / 2001  03 : 20 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" gilbert r . whitaker , jr . \"\" on 04 / 11 / 2001 03 : 15 : 28 pm  to : christie . patrick @ enron . com  cc :  subject : re : alp presentation  christie -  i have rearranged my schedule and will be very pleased to attend the alp  presentation and dinner at enron .  thanks .  gil  at 06 : 01 pm 4 / 10 / 01 - 0500 , you wrote :  > president gillis and dean whitaker ,  >  > enron would be honored with your presense at the presentation set forth  > below .  >  > under the guidance of vince kaminski and his team here at enron , we are  > thoroughly enjoying working with this group of bright and enthusiastic rice  > students . we hope you can join us for the culmination of their significant  > efforts .  >  > please let me know - - thanks ! !  >  > - - christie .  > - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 04 / 10 / 2001  > 05 : 52 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  >  >  > vince j kaminski  > 04 / 10 / 2001 08 : 13 am  >  > to : barrett @ rice . edu , uecker @ rice . edu , cmiller @ rice . edu ,  > lounghrid @ rice . edu , luigical @ rice . edu  > cc : vince j kaminski / hou / ect @ ect , christie patrick / hou / ect @ ect , shirley  > crenshaw / hou / ect @ ect , kenneth parkhill / na / enron @ enron  >  > subject : alp presentation  >  > on behalf of enron corp . i would like to invite you to an alp project  > presentation by a group of students  > of jesse h . jones graduate school of management , rice university .  >  > the students will present the results of a research project regarding  > electronic trading  > platforms in the energy industry .  >  > the presentation will be held on may 7 , at 4 : 00 p . m . at enron , 1400 smith .  >  > we would also like to invite you to dinner , following the presentation .  >  >  > vince kaminski  >  > vincent kaminski  > managing director - research  > enron corp .  > 1400 smith street  > room ebl 962  > houston , tx 77002 - 7361  >  > phone : ( 713 ) 853 3848  > ( 713 ) 410 5396 ( cell )  > fax : ( 713 ) 646 2503  > e - mail : vkamins @ enron . com\",0\n\"Subject: mg var results for the 27 th july  hi ,  i have run the var with updated factor loadings for the gold , silver and cocoa  bean positions . the biggest change in var from  adding this information has been to the cocoa bean position which has  increased from approx $ 45 , 900 to $ 506 , 553 .  the overal var has not changed by very much as the position file i was sent  from andreas had not changed from the 26 th - i  have queried this and it will not be a problem to re - run the numbers on  monday if i recieve a further file .  the var summary for all the metals is as follows :  also , after having a conversation with bjorn about stress / scenario analysis i  thought i might quickly try to set up a few scenarios to  see how sensitive the var is to a position change in aluminium , nickel and  copper .  i have only applied position increases ( thge direction of the shifts are  dependent on the monthly outright position direction ) up until dec 2000 .  the shifts and results are given in the following attached spreadsheet .  it is interesting that the individual var ' s are particuarly sensitive to  increasing the position for nickel .  i would like to discuss these results on monday and any further suggestions  for senarios would also be gratefully recieved .  have a good weekend ,  kirstee .\",0\n\"Subject: entouch newsletter  business highlights  enron industrial markets  metal bulletin - iron and steel awards for 2000  pushiest entrant : enron , the us commodity trading company , which promised it  would revolutionize the steel business by offering futures in hot rolled coil  via its online market place .  the eim fundamentals analysis group is excited to announce that dave allan  has joined as a director , responsible for all forest products lines . he  comes to eim with 20 years of experience in the forest products industry , of  which 14 were spent at abitibi and 6 with pulp and paper week . please join  us in welcoming dave .  the siebel team ( \u0001 & the force \u0001 8 ) continues to work towards program  implementation of its customer management system in early may , with training  to begin at the end of april . stay tuned for updates .  enron global lng  enron global lng is positioning itself to be a creator and leader of a global  wholesale lng market . the rising prices of natural gas in the united states  and concerns over future energy supplies have created a bullish outlook for  lng in the u . s . and around the globe . lng has played a major role in  serving energy needs in many parts of the world , but its place in the u . s .  energy picture has been limited . an lng market that spans the globe can  supply vast amounts of otherwise stranded gas to the world \u0001 , s growing appetite  for cleaner burning fuels . enron global lng sees great opportunity for  enron \u0001 , s wholesale energy business model to help shape yet another energy  market .  in the news  enron corp . says first - quarter profit rose 20 percent  houston , april 17 ( bloomberg ) - - enron corp . , the largest energy trader , said  first - quarter profit rose 20 percent as sales almost quadrupled . profit from  operations rose to $ 406 million , or 47 cents , from $ 338 million , or 40 cents ,  in the year - earlier period . enron raised its 2001 profit forecast to $ 1 . 75  to $ 1 . 80 a share , from its january projection of $ 1 . 70 to $ 1 . 75 .  first - quarter revenue surged to $ 50 . 1 billion from $ 13 . 1 billion as enron  boosted the volume of power sold in north america by 90 percent . enron had a  first - quarter gain of $ 19 million , or 2 cents a share , for an accounting  change , making net income $ 425 million , or 49 cents a share . there were no  charges or gains in the year - earlier period .  welcome  new hires  egm - janelle russell ,  eim - david allan , sylvia carter  ena - sasha divelbiss , amy quirsfeld , judy zhang , annette thompson , kelly  donlevy - lee , grant patterson  transfers ( to or within )  ena \u0001 ) william abler , magdalena cruz , barbara taylor , james reyes , marvin  carter , angel tamariz , jesse bryson  eim \u0001 ) cassandra dutton , christine sullivan , camille gerard , sherri kathol ,  jennifer watson  egm \u0001 ) steven batchelder  legal stuff  the information contained in this newsletter is confidential and proprietary  to enron corp . and its subsidiaries . it is intended for internal use only  and should not be disclosed .\",0\n\"Subject: re : telephone interview with the research group  hi mike :  thanks for responding so quickly . i have scheduled the telephone interview  for thursday , july 6 at 10 : 00 am houston time ( 8 : 00 az time )  they interviews usually last from 45 minutes to an hour .  we will call you at 520 / 325 - 9730 .  thanks and have a great 4 th of july  shirley crenshaw  administrative coordinator  enron corp . research  713 / 853 - 5290  email : shirley . crenshaw @ enron . com\",0\n\"Subject: the lure of the san  network world fusion focus : amy larsen decarlo  on storage in the enterprise  today ' s focus : the lure of the san  03 / 14 / 00  dear wincenty kaminski ,  today ' s focus : the lure of the san  by amy larsen decarlo  e - business is changing how businesses value information . information  has become a strategic asset that gives companies an edge over their  market rivals . companies use intelligence to identify new markets and  make contact with prospective customers . in this media - saturated era ,  information itself is packaged and sold as a product . this makes the  ability to supply users with fast access to stored information on a  continuous basis absolutely crucial .  companies are clearly coming to a crossroads in their storage  implementations . with estimates for internet storage capacity needs  doubling every three months , it professionals are hungry for a scalable  solution to help them consolidate control of stored information . they  often look to storage - area networks ( san ) as a better option to manage  their information storage systems than distributed models .  today , most organizations rely on a distributed storage model that uses  file servers to process i / o requests from end users and other  application servers . in this model , all requests for data go through  the file server that owns the attached storage disks , and only one file  server can tap data on a particular disk via a scsi bus .  this model has several shortcomings . first , the amount of data a  server can access is restricted to the number of disks supported by the  bus , which limits the capacity of a single file server . second , because  the server processes each i / o request , it risks becoming a bottleneck .  third , this server model carries some daunting availability limitations ,  because only one file server is allowed to access a set of disks . if  that file server or any of its scsi connections fails , then users and  other application servers lose access to the stored files .  this model carries other major disadvantages . distributed file servers  rely on the data transport network to run backup and recovery operations  which can eat up bandwidth and slow normal network transmissions to a  crawl . finally , this decentralized setup is difficult to manage from  both a logical and a physical perspective . file server based storage  systems are distributed throughout the enterprise , so it is often  difficult to assess current and future capacity needs . and because  these servers use a parallel cabling scheme to link the file server to  the disk array , they can also be cumbersome to set up and manage .  sans promise to mitigate the problems that plague conventional file  servers , largely through consolidation of control . these specialized  storage networks claim higher availability , faster performance ,  centralized management , and by their architecture , the capability to  remove bandwidth - intensive data backup and recovery operations from the  lan . this frees up the lan for normal data communications and ensures  smoother back - up operations .  using high - speed transports like fibre channel , sans offer a high -  performance network optimized for moving storage data . sans also make  way for new storage implementations like lan - free backup . and , because  fibre channel can support distances of up to 10 kilometers , san devices  can be widely distributed , but also centrally managed as one network .  yet , as was the case with lans in their younger years , sans are still  developing . vendors are still working out major product interoperability  issues , while companies deploying san technology struggle with how to  merge the very different worlds of storage and networks and manage both  together . ultimately the hope is that , like lans , sans will develop into  a mature and highly manageable solution that supplies substantial  benefits at lower costs .  given that storage deployment and ongoing support costs can total 10  times the acquisition price for the equipment , the consolidated  management capabilities of a san may deliver the biggest benefit to  business .  to contact amy larsen decarlo :  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  amy larsen decarlo is an analyst with enterprise management associates  in boulder , colo . , ( http : / / www . . com ) , a leading  analyst and market research firm focusing exclusively on all aspects of  enterprise management . she focuses on storage management , application  management , and security . in her position , she oversees market research  and contributes to custom project work in her focal coverage areas .  prior to joining ema , amy spent five years covering enterprise  management for industry trade magazines , including informationweek and  data communications . she can be reached at  mailto : decarlo @ . com  for related links - - click here for network world ' s home page :  http : / / www . nwfusion . com  storage networking industry association ( snia ) :  http : / / www . snia . org  fibre channel industry association ( fcia ) :  http : / / www . fibrechannel . com  scsi trade association ( sta )  http : / / www . scsita . org  other storage - related articles from network world :  legato primes storage resource mgmt , network world , 03 / 13 / 00  subscription services  to subscribe or unsubscribe to any network world e - mail newsletters ,  go to :  to change your email address , go to :  subscription questions ? contact customer service by replying to this  message .  other questions / comments  have editorial comments ? write jeff caruso , newsletter editor , at :  mailto : jcaruso @ nww . com  for advertising information , write jamie kalbach , account executive ,  at : mailto : jkalbach @ nww . com  network world fusion is part of idg . net , the idg online network .  it all starts here :  http : / / www . idg . com  copyright network world , inc . , 2000\",0\n\"Subject: re : opportunities  thanks vince .  i have contacted him and have given him your phone number .  he will attempt to contact you thursady or friday .  good luck .  vince j kaminski  10 / 24 / 2000 03 : 59 pm  to : lloyd will / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : opportunities  lloyd ,  yes , i would be very interested .  vince  lloyd will  10 / 24 / 2000 02 : 45 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : opportunities  vince would you be interested in this professional .  i would be glad to facilitate a conference call .  thanks .  - - - - - - - - - - - - - - - - - - - - - - forwarded by lloyd will / hou / ect on 10 / 24 / 2000 02 : 43 pm  - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" sheble , g . b . \"\" on 10 / 17 / 2000 04 : 52 : 57 pm  to : \"\" ' lloyd . will @ enron . com ' \"\"  cc :  subject : re : opportunities  loyd  i tried to call yesterday , but you were out of the office . my schedule  follows , would you want to pick a time for me to call you or send me a list  of times to pick ?  gerry  fall 2000 teaching schedule  ee 553 mtwr 10 - 11 am curtis hall 308  engr 161 mw 2 - 4 howe hall 2228  other commitments  m 11 - 12 ep & es  m 1 - 2 office hours  t 12 - 2 ep & es seminar  t 2 - 3 office hours  t 3 - 4 pserc  t 5 - 6 epri - dod  w 11 - 12 office hours  w 4 - 9 dsm  r 11 - 12 office hours  f 11 - 12 p & t  f 1 - 3 cas  f 3 - 4 departmental meeting  - - - - - original message - - - - -  from : lloyd . will @ enron . com [ mailto : lloyd . will @ enron . com ]  sent : monday , october 16 , 2000 8 : 00 am  to : sheble , g . b .  subject : re : opportunities  give me a call any time to discuss things .  713 - 853 - 3383 .  thanks .  \"\" sheble , g . b . \"\" on 10 / 15 / 2000 02 : 17 : 02 pm  to : lloyd will / hou / ect @ ect  cc :  subject : re : opportunities  lloyd  i am attaching another resume for your review , please pass it along if  there  is any interest .  i would also like to discuss opportunities with you as i expect to graduate  with my mba summer 2001 .  cordially ,  gerry  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  gerald b . shebl ,  professor , electrical and computer engineering  director of complex adaptive systems program  1115 coover hall  ames , iowa 50011  voice : 515 . 294 . 3046  fax : 515 . 294 . 4263  email : gsheble @ iastate . edu  web : http : / / www . ee . iastate . edu / ~ sheble /  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =\",0\n\"Subject: enterprise wide risk management meeting , january 21  this is to confirm the meeting will take place on friday , january 21 at  12 : 00 - 5 : 00 p , at the doubletree hotel , 400 dallas street .  the meeting room is suite 407 .  those in attendance :  rick buy  ted murphy  rick carson  vince kaminski  dave gorte  kevin kindall  grant masson  lunch will begin at 12 : 00 noon and a snack will be served at 2 : 30 p .  please give me a call with questions at x 31881 .\",0\n\"Subject: re : molecular electronics corp . working lunch  ken ,  i shall be glad to join you for lunch with mec .  vince kaminski  kenneth lay @ enron on 06 / 20 / 2000 04 : 23 : 31 pm  sent by : rosalee fleming @ enron  to : philippe a bibi / hou / ect @ ect , jay fitzgerald / corp / enron @ enron , steven j  kean / hou / ees @ ees , joe hirko / enron communications @ enron communications , david  berberian / enron communications @ enron communications , rex shelby / enron  communications @ enron communications , mike mcconnell / hou / ect @ ect , greg  whalley / hou / ect @ ect , vince j kaminski / hou / ect @ ect , mark lay / hou / ect @ ect  cc : vanessa groscrand / corp / enron @ enron  subject : molecular electronics corp . working lunch  on tuesday , july 25 , i am meeting with molecular electronics corp . ( mec ) to  discuss the opportunity for establishing this newly formed company in  houston . for those of you that are not familiar with mec , they are  considered one of the premier companies in the area of molecular computing .  mec has approached enron to discuss a possible alliance that would facilitate  their development and , in particular , location in the houston area . mec  represents the frontier of computing technology .  i would like to invite you to participate in a working lunch discussion of  the opportunities and obstacles facing a company that is seeking to change an  industry . i would appreciate it if you could join us on july 25 from 11 : 30  to 1 : 30 in eb 49 cl for this informal roundtable with the ceo of mec , harvey  plotnick and one of the founders , jim tour .  will you please let vanessa groscrand know if you can attend at 713 - 853 - 1769  or please reply by e - mail to me .  ken lay\",0\n\"Subject: re : thursday visit  good morning frank :  reservations have been made for you at the doubletree hotel , downtown  houston ( allen center ) . the confirmation # is : 87948774 . the hotel  telephone no . is : 713 / 759 - 0202 .  see you on thursday and have a safe trip .  regards ,  shirley crenshaw  administrative coordinator  enron research  713 / 853 - 5290  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 12 / 18 / 2000  08 : 29 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  12 / 18 / 2000 08 : 27 am  to : \"\" francis x . diebold \"\" @ enron  cc : shirley crenshaw / hou / ect @ ect , vince j kaminski / hou / ect @ ect  subject : re : thursday visit  frank ,  we are located at 1400 smith . any cab driver can identify the enron building .  when you arrive ,  please , call me at 3 - 3848 from the reception to be admitted into the  building .  alternative phone numbers : 3 - 5290 ( my assistant shirley crenshaw ) . you can  also try to call me on  my cell phone : 713 898 9960 .  the research group meeting starts at 11 : 30 and lasts till 1 : 00 . can you make  a presentation  about your research projects ? what audio / video equipment do you need ? what  sandwich would  you like to have for lunch ?  we shall make a hotel reservation for you thursday night .  vince  \"\" francis x . diebold \"\" on 12 / 18 / 2000 07 : 02 : 46 am  to : vince kaminski  cc : bmierts @ enron . com  subject : thursday visit  hi vince , looking forward to seeing you thursday . ? i arrive at houston - bush  on usair 1769 at 10 : 55 am . ? please let me know where to go . ? i also want to  verify that you have booked me a hotel ? for thurs night . ? many thanks , and  see you soon , frank  - -  francis x . diebold  wp carey professor  department of economics  university of pennsylvania  3718 locust walk  philadelphia , pa 19104 - 6297  fdiebold @ sas . upenn . edu  http : / / www . ssc . upenn . edu / ~ diebold  ( 215 ) 898 - 1507 ? telephone  ( 215 ) 573 - 4217 ? fax  ?\",0\n\"Subject: our meeting next week  vince and grant ,  first let me apologize for cancelling our meeting with you this friday . i  hope we can reschedule next week as i ' ll arrive in houston monday mid - day .  i ' d love to talk to you as i know the knowledge base in your group related to  my new responsibilities is huge . will you be able to free up some time of  some of your team members to help us ?  as an example , i ' d like to show you our position book ( cash ) . it ' s far from  being perfect . i ' d like to know whether we should persevere and improve it  or whether there are some models in ena that we could copycat . . . .  i look forward to seeing you next week ,  remi\",0\n\"Subject: happy new year , and some new year ' s resolutions  with the new year , we would like to institute some rules within the research  group . this applies to everybody in research and is at the express request  of vince , but i am just sending it to my reports ( and their reports ) as of  now .  people are expected to report to work in the morning around 8 : 00 am to 8 : 30  am but no later than 8 : 30 am . this is primarily because our clients from  other groups typically start calling around 8 : 00 am and we need to be  responsive . of course , once in a while if something urgent comes up then  this may be relaxed but you are responsible for letting both your supervisor  and your assistant ( anita and / or shirley ) know in advance .  i am trying to come up with a schedule that will allow me to get updated on  all the work that you guys are doing , and i will probably set this up next  week after vince finishes drawing up the overall directions for the group for  2001 .  thanks ,  vasant\",0\n\"Subject: re : proposed darden interview schedule - april 18  sherri :  2 : 00 pm on the 18 th of april is fine for vince kaminski .  his \"\" bio \"\" is attached . if you need anything else , please let me know .  shirley  enron north america corp .  from : sherri sera @ enron 04 / 11 / 2000 03 : 42 pm  to : bert frazier / hou / ect @ ect , karen owens / hou / ees @ ees , jewel meeks / enron  communications @ enron communications , mercedes estrada / enron  communications @ enron communications , bridget maronge / hou / ect @ ect , shirley  crenshaw / hou / ect @ ect  cc :  subject : proposed darden interview schedule - april 18  ladies , i ' m trying to finalize this schedule prior to my vacation 4 / 13 - 14 .  please confirm that the time proposed below will work for your executive .  additionally , would you please e - mail me a bio for your executive ; the  professors have requested it .  thanks for your help . srs  - - - - - - - - - - - - - - - - - - - - - - forwarded by sherri sera / corp / enron on 04 / 11 / 2000  03 : 37 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : sherri sera 03 / 31 / 2000 05 : 15 pm  to : gene humphrey / hou / ect @ ect , lou l pai / hou / ees @ ees , ken rice / enron  communications @ enron communications , andrew s fastow / hou / ect @ ect , vince j  kaminski / hou / ect @ ect  cc : bert frazier / hou / ect @ ect , karen owens / hou / ees @ ees , jewel meeks / enron  communications @ enron communications , mercedes estrada / enron  communications @ enron communications , bridget maronge / hou / ect @ ect , shirley  crenshaw / hou / ect @ ect  subject : proposed darden interview schedule - april 18  below is proposed schedule for the darden case video - taped interviews ; an  hour has been scheduled for each of you ( except vince , for whom 1 - 1 / 2 hours  has been requested ) , however , you may be finished in less time . the location  is yet to be determined , but will most likely take place in a vacant office  of 50 m .  please let me know of any conflicts with this proposed schedule . i ' ll send  along additional information as it becomes available . thank you and have a  nice weekend . srs  8 : 00 a gene humphrey  9 : 00 a lou pai  10 : 00 a ken rice  11 : 00 a andy fastow  12 : 00 p break  2 : 00 p vince kaminski  3 : 30 p jeff skilling\",0\n\"Subject: re : grades  thank you !  you have been wonderful to work with this semester .  stay in touch and we ' ll see you next year .  - pam ( 713 - 348 - 6223 )  at 10 : 33 pm 5 / 4 / 01 - 0400 , vkaminski @ aol . com wrote :  pam ,  the students resent the documents .  the group members :  rakhi israni  felix feng lu  winny so  orlandotaylor  sanjay wankhade  ning zhang  grade : a  separately , i think i have sent you already :  jeffrey planck  grade : a  please , confirm this message .  vince kaminski\",0\n\"Subject: mscf speaker series  mscf speaker series  official invitation  ?  ?  it is with great pride that i announce the next event in the speaker series .  next friday we will have the honor to host a conference given by mr . vince  kaminski ? managing director research at enron corp .  ?  the next event in the  student speaker series is :  friday , november 3 , 2000  11 : 30 a . m . to 12 : 30 p . m . fast lab  [ image ] vince kaminski  managing director , research .  enron corp .  tentative student speaker series schedule 2000 - 2001  the following is a tentative schedule of the mscf student speaker series for  the 2000 - 2001 academic year . all events take place from 11 : 30 a . m . to 12 : 30  p . m . in the fast lab ( gsia 229 ) unless otherwise noted . updates are soon to  follow .  volatility curve and bond basis  august 11 , 2000  david hartney & jerry hanweck  vice president , futures and option sales j . p . morgan  price and hedging volatility contracts  september 1 , 2000  dmitry pugachevsky  deutsche bank  dmitry pugachesky is a director with otc derivatives research of deutsche  bank , where his research is primarily focussed on credit derivatives . prior  to joining deutsche bank , dmitry worked for six years with global analytics  group of bankers trust . there he developed models for emerging markets ,  interest rates , and equity derivatives and also participated in actual  trading and structuring of interest rate options . he received his phd in  applied mathematics from carnegie mellon university specializing in control  theory for stochastic processes . he has published several papers on  modelling in emerging markets and on valuation for passport options .  a measurement framework for bank liquidity risk  september 15 , 2000  raymond cote  vice president , finrad inc .  raymond cote is vice president , financial engineering at finrad inc . , a  montreal - based consulting firm offering financial management solutions that  combine advisory and systems development services to & corporations and  financial institutions .  abstract :  liquidity risk , as opposed to credit and market risks , has received little  attention in professional or academic journals . we argue that analyzing bank  liquidity risk can be viewed as a variation of credit risk analysis . after  introducing some concepts and definitions , the presentation defines a  framework allowing to measure a bank ' s structural liquidity risk . it then  shows that combining the framework with modern credit risk measurement tools  leads to a liquidity risk var measure . the presentation then offers  concluding comments on the integration of the liquidity risk measurement  framework within enterprise - wide risk management .  the impact of electronic trading on the uses of quantitative research in  equity options  september 22 , 2000  scott morris  hull group , quantitative research department  quantitative research in investment management  october 6 , 2000  raman srivastava & anna bulkovshteyn  assistant vice president , & fixed income , quantitative analysts , putman  investments  [ image ]  tba  november 3 , 2000  vince kaminski  managing director , research .  enron corp .  fund management and market efficiency  november 10 , 2000  andrea dalton  researcher , friess associates  ( advisor to the brandywine funds ) .  tba  november 17 , 2000  jeff keifer & deb  aep  tutorial on bridge  november 24 , 2000  pierre ste - marie & punit rawal  mscf students  a corporate risk management framework  december 8 , 2000  darin aprati & brian moore  mcdonald ' s  [ image ] math speaker series schedule 2000 - 2001  [ image ] speaker series student committee  [ image ] previous speakers  ?  pierre - philippe ste - marie  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  [ image ] http : / / pstemarie . homestead . com\",0\n\"Subject: re :  frank ,  yes .  vince  from : frank hayden / enron @ enronxgate on 05 / 01 / 2001 07 : 51 am  to : vince j kaminski / hou / ect @ ect  cc :  subject :  vince ,  are you going to be able to make the power var meeting on thursday ?  frank\",0\n\"Subject: re : confidential  dale ,  thanks for your message .  i don ' t know the labor market in london that well but here the market  for quants is very hot . steve is in my view an exceptionally talented person  and i would go an extra mile to retain him long - term for the company .  i would adjust the base salary or the kicker upward a bit .  o 62 , 000 basic is what anjam is receiving currently ( if i remember  correctly ) . steve has a much higher value  to enron than anjam .  vince  dale surbey  08 / 30 / 2000 07 : 49 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : confidential  vince ,  this is the package hr is proposing for steven . what do you think ?  - dale  - - - - - - - - - - - - - - - - - - - - - - forwarded by dale surbey / lon / ect on 30 / 08 / 2000 13 : 50  - - - - - - - - - - - - - - - - - - - - - - - - - - -  sophie kingsley 29 / 08 / 2000 20 : 32  to : dale surbey / lon / ect @ ect  cc :  subject : confidential  sorry dale , long day , here are the proposed numbers  2 year exec  o 62 , 000 basic ( currently o 55 k )  ol 0 k each year kickers  $ 50 , 000 worth of options to vest 1 / 3 1 / 3 1 / 3  let me know what you think .  regards  sophie\",0\n\"Subject: pd : praca dyplomowa v edycja mba  ?  - - - - - original message - - - - -  from : jerzy seremak  to : vkaminski @ aol . com  sent : tuesday , november 28 , 2000 7 : 49 pm  subject : praca dyplpmowa v edycja mba  dzie \u0006 ? dobry panie doktorze !  ?  przesy \u0006 am panu ca \u0006 \u0006 ? prac \u0006 c dyplomow \u0006 ? z finans ? w .  cz \u0006 c \u0006 ~ \u0006 + pracy zosta \u0006 a panu przes \u0006 ana w pa \u0006  dzierniku .  wykresy b \u0006 cd \u0006 ? kolorowe i uj \u0006 cte w pracy .  obrona pracy jest zaplanowana w luty br .  je \u0006 _ eli jest to mo \u0006 _ liwe to prosz \u0006 c o recenzj \u0006 c  ?  ?  z powa \u0006 _ aniem  ?  jerzy seremak  v edycja mba  wy \u0006 _ sza szko \u0006 a handlu i finans ? w mi \u0006 cdzynarodowych ? w warszawie ? a _ j _ seremak @ pro . onet . pl ? - i - iv rozdzia \u0006 pracy - mba . doc  - iv - rozdzia \u0006 pracy - schemat - mba . doc ? - rozdzia \u0006 5 . 1 . tabele . doc  - rozdzia \u0006 v 5 . 1 . opis . doc ? - rozdzia \u0006 v 5 . 2 . , podsumowanie , biografia i spisy . doc  - strona tytuowa i spis tre \u0006 ~ ci . doc  - wstep . doc\",0\n\"Subject: pjm announces basic training program over the internet  message sent from the pjm - customer - info mailing list at  pjm - customer - info @ majordomo . pjm . com :  pjm will again offer a one - day course , pjm 101 : the basics , on february 27 ,  2001  as a virtual workshop over the internet .  pjm 101 : the basics will introduce participants to the pjm market and  operations  model . it will include presentations on pjm market settlements , capacity  assurance and markets , transmission expansion and the status of pjm ancillary  services markets and other initiatives . the coups is designed for those new to  pjm .  a limited number of participants will be registered since this is a pilot  program to determine if such a format is effective . the course times are 9 : 00  a . m . to 12 noon and 1 : 00 p . m . to 4 : 00 p . m . participants should plan to log in  a  half hour before the scheduled start time .  further details and registration information can be found on the pjm web site  at  please do not reply to this message . if you have a question for pjm customer  relations and training , please complete and submit this form :  to unsubscribe from this list , send an e - mail to majordomo @ majordomo . pjm . com  containing only the following line in the body of the e - mail :  unsubscribe pjm - customer - info\",0\n\"Subject: guiseppe paleologo / ext 39189 / eb 4444 b  vince and shirley -  i have verified that his phone is in and working at stinson ' s former desk .  please let me know if i may be of further assistance  thank you  paula  - - - - - forwarded by paula corey / enron communications on 06 / 19 / 00 07 : 25 am - - - - -  janelle duree @ ect  06 / 19 / 00 06 : 59 am  to : paula corey / enron communications @ enron communications , martha  reyna / enron communications @ enron communications , guiseppe  paleologo / na / enron @ enron  cc :  subject : guiseppe paleologo / ext 39189 / eb 4444 b  sorry for the inconvenience , please advise if we can be of further  assistance .  thank you for your patience .  - - - - - - - - - - - - - - - - - - - - - - forwarded by janelle duree / hou / ect on 06 / 19 / 2000 06 : 58  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  linda richard  06 / 15 / 2000 04 : 49 pm  to : janelle duree / hou / ect @ ect  cc : kathy brooks / na / enron @ enron  subject : guiseppe paleologo / ext 39189 / eb 4444 b  janelle ,  fms records show that ext . 39189 was installed on 6 / 1 for mr . paleologo ,  there is no record to indicate the phone was ever puded .  i have requested to kathy brooks to re - install the phone . kathy says that  she will reseach to find out why the phone was picked up and she will let me  know .  thanks  linda\",0\n\"Subject: re : summer internship  dr . kaminski ,  thank you very much .  of course , i ' ll be happy to have an opportunity  to work at such a wonderful company .  i was contacting with surech raghavan at deal bench team ,  and was going to express my appreciation to you again  after settling down process with them .  for the period of working ,  i still need to coordinate with my advisor and  may need to adjust according to that .  but anyway , i ' ll try to coordinate smoothly .  please let me know whether i should keep contacting  with deal bench team ,  for working period and  for misc . living support such as finding a place , rent a car , etc .  i appreciate you so much again ,  for arranging such meetings and giving me an opportunity .  all this opportunity will not be available to me ,  without your kind help .  warm regards ,  jinbaek  jinbaek kim  ph . d candidate  dept . of industrial engineering and operations research  u . c . berkeley  http : / / www . ieor . berkeley . edu / ~ jinbaek  go bears !  : \"\" ' . _ . . - - - . . _ . ' \"\" ; ` . . ' . ' ` .  : a a : _ _ . . . . . _  : _ . - 0 - . _ : - - - ' \"\" \"\" ' \"\" - . . . . - - ' \"\" ' .  : . ' : ` . : ` , ` .  ` . : ' - - ' - - ' : . ' ; ;  : ` . _ ` - ' _ . ' ; . '  ` . ' \"\" ' ;  ` . ' ;  ` . ` : ` ;  . ` . ; ; : ;  . ' ` - . ' ; : ; ` .  _ _ . ' . ' . ' : ; ` .  . ' _ _ . ' . ' ` - - . . _ _ _ . _ . ' ; ;  ` . . . . . . ' . ' ` ' \"\" \"\" ' ` . ' ; . . . . . . - '  ` . . . . . . . - ' ` . . . . . . . . '  on fri , 2 mar 2001 vince . j . kaminski @ enron . com wrote :  > hello ,  >  > sorry for a delay in getting back to you .  > we would like very much to offer you a summer internship .  >  > please , let me know if you are interested .  >  > vince kaminski  >  >\",0\n\"Subject: re : india model  stinson and vince ,  please see wade ' s comments below . it is critical that we start the exercise  quickly , and as metioned , it should be structured so that dpc foot the bill .  also , as mentioned , please have them desist from using the word viability  with reference to dabhol .  regards ,  sandeep .  - - - - - - - - - - - - - - - - - - - - - - forwarded by sandeep kohli / enron _ development on  01 / 02 / 2001 10 : 35 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron india  from : wade cline 01 / 01 / 2001 10 : 26 pm  to : sandeep kohli / enron _ development @ enron _ development  cc : neil mcgregor / enron _ development @ enron _ development , mohan  subject : re : india model  thanks sandeep . engagement needs to be structured so that dpc will pay for  this key study . have them address the study to dpc and invoice dpc .  second , on the cover , the reference is to \"\" . . . . . . and dabhol plant  viability . \"\" please instruct them to immediately cease discussions about and  use of term dabhol viability . they can use the term they use later on , which  is dabhol plant operations .  sandeep kohli  01 / 01 / 2001 08 : 56 am  to : wade cline / enron _ development @ enron _ development  cc :  subject : re : india model  wade ,  this is fyi .  - - - - - - - - - - - - - - - - - - - - - - forwarded by sandeep kohli / enron _ development on  01 / 01 / 2001 08 : 55 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" robert schenck \"\" on 12 / 29 / 2000 11 : 57 : 16 am  to : ,  cc :  subject : re : india model  gentlemen ,  i have attached a proposal for your consideration  please review this and give me a call on my cell phone + 61 412 234 366  tomorrow morning ( 9 am my time saturday )  i have organised access to a substantial level of detail re the generation  and transmission systems and can commence work on building the data base  next week  there may be some residual typing errors in the proposal , please forgive me  as i have no staff to review  regards  robert schenck  > - - - - - original message - - - - -  > from : sandeep . kohli @ enron . com [ mailto : sandeep . kohli @ enron . com ]  > sent : thursday , 28 december 2000 10 : 09 pm  > to : stinson . gibner @ enron . com ; schenck @ hesinet . com  > subject : re : india model  >  >  >  > robert ,  >  > i had a conversation with stinsen regarding this earlier today .  > we do have  > some information about the interconnects as well as information on the  > plant capacities and locations within the state of maharashtra . however ,  > our information on other states and on a national basis maybe  > less detailed  > and accurate .  >  > what i suggested was that we have a meeting with your representative in  > india once the study is a \"\" go . \"\" we probably need to do this with our team  > in india in the first week of the new year . in that manner , we  > will have a  > much clearer idea of what is needed and what we have . we will then take a  > week filling in the gaps , and so by mid - january we should have the  > information you need , or alternately , we will know that the level  > of detail  > you ideally want is not available . then we will have to make assumptions .  >  > i believe that the level of detail we have on maharashtra will be  > good , but  > the type of information on o & m costs , generations costs , etc .  > that you want  > will likely not be easily available for other states . we need to work  > closely , however , to do the best we can as regards this information .  >  > please get back to stinson with the estimates of time and cost , and let us  > also know whether mid - january for the full information will work for you .  >  > regards ,  > sandeep .  >  > ps : stinson , please let me know if there is something i have missed in my  > response .  > robert - if you need something answered urgently , please feel free to  > call me on my mobile in the us : 713 - 857 - 6826 .  >  >  >  >  > stinson gibner @ ect  > 12 / 28 / 2000 09 : 38 pm  >  > to : sandeep kohli @ enron  > cc :  > subject : re : india model  >  >  > - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 12 / 28 / 2000  > 10 : 10 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  >  >  > \"\" robert schenck \"\" on 12 / 27 / 2000 11 : 21 : 18 pm  >  > to :  > cc :  > subject : re : india model  >  >  > stinson ,  >  > i am trying to contact our data base experts at the moment to clarify some  > issues with the region and may need another day to get something more  > concrete in front of you .  >  > what i would like to know is the extent of your company knowledge re the  > following  >  > generation units ' nameplate capacity , fuel type , efficiency , o vince . j . kaminski @ enron . com  > > subject : india model  > >  > >  > > robert ,  > >  > > enron would like to do a study of power prices and dispatch for  > > india we  > > have spoken with david branchcomb to see if henwood can help with this  > > project in our time frame ( results needed by end of january ) , and he  > > suggested that we speak directly with you about the project .  > >  > > i will try and give you a call later today ( wednesday afternoon  > > in houston ,  > > thurday morning , adelaide ) at around 9 : 00 a . m . your time to see we can  > > describe for you the project in more detail .  > >  > > regards ,  > >  > > stinson gibner  > > enron research group  > > ( 713 ) 853 - 4748  > >  >  >  >  >  >  >  - penron . doc\",0\n\"Subject: yen outlook  vince ,  as a followup to our meeting with david port and rudi zipter re enron ' s investment in sk - enron , maureen and i wrote the attached position paper on the japanese yen . as we have discussed , the volatility of the won closely tracks fluctuation in the yen , and this yen position paper is intended to complement the won outlook piece for a broader perspective on currencies that takes into account the yen ' s influence on asian currencies . .  we would like to distribute this outlook to david and rudi , but wanted to send it to you for initial reaction prior to internal distribution .  thank you , and let me know if you have any questions or comments re the attached .  gwyn\",0\n\"Subject: credit model  paulo ,  i have talked to vince and stinson about the credit model enhancement and  extension .  we will pull other reseource for the potential exposure model , so you will be  relieved from this more  challenging part of the project .  due to our limited manpower , everyone is overloaded with multiple tasks . so  we still think you  are the best person for the short term project which is adding the asian  option to the existing model ( ask  amitava for help if needed ) .  i do not mind if you want to re - negotiate with the customer about the  delivery date , but keep in mind that ees  has done deals requiring the asian option valuation in the credit model .  zimin\",0\n\"Subject: alliance info alert : richardson and ferc orders  dear generation / power marketing executive :  the following are summaries of two significant activities that occurred  friday , december 15  1 . energy secretary richardson issuance of an emergency order .  ( richardson ' s statement and fpa section 202 ( c ) order is posted on doe ' s  web site at :  http : / / www . energy . gov / hqpress / releaseso 0 / decpr / pro 0309 . html )  2 . ferc ' s 12 / 15 / 00 final order to fix california wholesale markets  ( ferc ' s order can be viewed at  california supplies ordered by richardson  o richardson orders listed entities to supply excess power to california iso  o order is effective as soon as iso certifies shortage , but ends 12 / 21 / 00 ,  unless extended  o prices to be agreed to by supplier and iso , or ferc will set rate later  o fpa emergency power authority transferred to doe in 1977  as he said he would on december 13 , u . s . department of energy secretary bill  richardson found \"\" an emergency exists in california by reason of the shortage  of electric energy \"\" and issued an emergency order under section 202 ( c ) of  the federal power act ( fpa ) requiring listed generators and marketers to  provide any power in excess of the needs of their firm customers to the  california iso . in a statement , richardson said the threat to the  reliability of the california grid requires a long - term solution , but that in  the short - term power must keep flowing to the state to avert blackouts .  the 76 listed suppliers have 12 hours after the iso certifies to doe that it  has been unable to acquire adequate supplies in the market to begin providing  requested service to the iso . the iso must inform each supplier subject to  the order of the amount and type of energy or services required by 9 : 00 pm ,  eastern standard time , the day before the services are needed . the order  directs the iso to allocate , to the extent feasible , requested services among  subject entities in proportion to each supplier ' s available excess power .  the order is effective immediately and will terminate at 3 : 00 am , eastern  time , december 21 , 2000 , unless extended . to continue to obtain supplies  under this emergency authority , the iso must re - certify the shortage to doe  headquarters every 24 hours .  the terms of the provision of electric energy and other services by suppliers  to the iso \"\" are to be agreed to by the parties . \"\" if no agreement is reached ,  then under the fpa ' s emergency authority secretary richardson \"\" will  immediately prescribe the conditions of service and refer the rate issue to  the federal energy regulatory commission for a determination at a later date  by that agency in accordance with its standards and procedures , and will  prescribe by supplemental order such rates as it finds to be just and  reasonable . \"\" the authority of ferc to set rates for power supplied under  emergency order at just and reasonable levels where the parties themselves do  not agree to a rate is explicitly included in fpa section 202 ( c ) . the doe  organization act of 1997 transferred the emergency powers of this section  from ferc to doe .  the 76 entities identified in the order ' s attachment are all the entities  that have provided power to the iso over the last 30 days . those entities  are ordered \"\" to make arrangements to generate , deliver , interchange , and  transmit electric energy when , as , and in such amounts as may be requested by  the \"\" iso , \"\" acting as agent for and on behalf of scheduling coordinators . \"\"  [ source : doe secretary richardson ' s december 14 , 2000 statement and order ;  electric power daily , december 15 , 2000 ]  ferc de - federalizes california markets , adopts other structural  reforms  a summary of the december 15 order and commission discussion  at its special meeting today , ferc unanimously approved its eagerly awaited  final order reforming the california wholesale markets , adopting the major  outlines of its november 1 proposed order and sending back to california the  responsibility for addressing state - related matters , as discussed below . at  the same time , ferc deferred consideration of retroactive refund issues as  well as the imposition of region - wide price caps .  ferc reiterated the november 1 conclusions that under certain circumstances ,  california ratepayers were subjected to unjust and unreasonable power rates  due to california ' s \"\" seriously flawed \"\" market structure and rules in  conjunction with tight demand and supply conditions throughout the west .  while all four commissioners supported the order as a consensus - based outcome  that appropriately balanced all competing interests , each commissioner  expressed reservations with particular aspects of the order . chairman  hoecker and comm . breathitt expressed the strongest endorsement , while comms .  hebert and massey laid out their positions where they believed the commission  had either \"\" over - reached \"\" or not gone far enough , just as they did on  november 1 , as discussed below .  highlights of key actions :  ( 1 ) ferc adopted the november 1 proposal to eliminate , effective immediately ,  the state ' s mandatory requirement that the state ' s investor - owned utilities  buy and sell electricity through the px , and allow these utilities to  purchase electricity through forward contracts and other alternative  mechanisms to manage supply risks . ferc terminated the px ' s rate schedules  effective at the close of business on april 30 , 2001 . in effect , as chairman  hoecker stated , the order de - federalizes 60 percent of the california  wholesale market established under the state ' s restructuring law , returning  ratemaking authority over company - owned generation to the california public  utilities commission ( cpuc ) .  ( 2 ) ferc modified the effective period of the november 1 $ 150 / mwh \"\" soft cap \"\"  proposal , limiting its application through april 2001 , whereupon a  \"\" comprehensive and systematic monitoring and mitigation program which  incorporates appropriate thresholds , screen and mitigation measures \"\" must be  in place . in a related move , ferc ordered a technical conference early next  year to develop such a program by march 1 , 2001 , so that these measures can  be place by the may 1 , deadline .  in a major modification , ferc revised the refund conditions to clarify that  while certain refund conditions will continue to apply , unless ferc issues  written notification to the seller that its transaction is still under  review , refund potential on a transaction will close after 60 days .  as proposed , however , supply bids in excess of $ 150 will be prohibited from  setting the market - clearing price for all bidders and sellers bidding above  $ 150 / mwh will be required to report their bids to ferc on a confidential ,  weekly basis and provide certain cost support .  ( 3 ) ferc adopted the november 1 proposal to require the establishment of  independent , non - stakeholder governing board for the iso . the iso governing  board must relinquish their decision - making power and operating control to  the iso management on january 29 , 2001 . a future order will set procedures  for discussion with state representatives on the board selection process .  ( 4 ) in a major modification , ferc adopted a $ 74 / mwh \"\" price benchmark \"\" for  assessing prices of five - year energy supply contracts . this benchmark will  be used in assessing any complaints regarding justness and reasonableness of  pricing long - term contracts .  to facilitate prompt negotiation of longer term power contracts at reasonable  rates , ferc announced that it will hold a settlement conference with market  participants .  ( 5 ) ferc adopted the november 1 proposal to require market participants to  schedule 95 percent of their transactions in the day - ahead market and  instituting a penalty charge for under - scheduling ( in excess of five percent  of hourly load requirements ) , in order to discourage over - reliance on the  real - time spot market .  ( 6 ) ferc directed the iso and the three investor - owned utilities to file  generation interconnection standards .  ( 7 ) ferc affirmed the longer - term measures proposed in the november 1 order ,  including submission of a congestion management design proposal by april 2 ,  2001 .  ( 8 ) ferc deferred resolving key issues , including establishing new iso board  selection procedures , developing appropriate market monitoring measures and  negotiating protective orders associated with data collection .  ( 9 ) ferc reiterated its november 1 call to california policy makers there to  resolve state issues , such as : ( 1 ) immediately implementing the availability  of day ahead markets for power purchases ; ( 2 ) development of demand  responses ; ( 3 ) siting of generation and transmission ; and ( 4 ) assurance of  sufficient reserve requirements .  commissioner responses  comm . hebert reluctantly concurred , calling the final order a \"\" missed  opportunity \"\" to , among other things , send appropriate signals for new  generation siting and conservation . reiterating his november 1 concerns ,  hebert recounted the remedial remedies that he maintained the commission  should and should not have adopted . while expressing pleasure at the tone of  the order ( \"\" balanced and considerate \"\" ) , the bid certainly reversal , and the  role reserved for the state in the selection of the new iso board , hebert  nonetheless objected to the benchmark prices established in the order , which  he maintained appeared to be unreasonably low . hebert faulted the commission  for not attempting to reconcile the instant order with the november 8 order  approving the ca iso ' s emergency $ 250 / mwh \"\" soft cap \"\" proposal . hebert ended  by challenging the cpuc to do what it can to encourage utilities there to  forward contract , including easing the existing prudence review requirements .  comm . breathitt endorsed the order , reiterating her support for progress  towards open and competitive markets . she noted that the order properly  \"\" walked the line \"\" by taking all of the competing interests into account ,  calling it less than ideal , but a step in the right direction . she also  concentrated her remarks on the importance of creating stability which will  be accomplished by encouraging long term contracts and the implementation of  the $ 150 / mwh breakpoint . additionally she mentioned that any price below the  $ 74 / mwh benchmark will be presumed just and reasonable .  comm . massey concurred , but prefaced his remarks by expressing sympathy for  california ratepayers , stating that he felt that market power had been  exercised , that prices were not just and reasonable and that the marketers  had profited too much at the expense of others in the market . he warned  that , as he understood the legal precedents , the federal courts were poised  to grant cost recovery relief to the retailers which would then be passed on  to consumers . on the positive side , he approved of the de - federalization of  60 % of the market and the creation of long term contracts . however , he  emphasized that california regulators must now take the responsibility of  creating more generation and transmission . in the long term , comm . massey  hoped that solutions could be reached starting with a technical conference  and that the market would have rules more like pjm .  finally , comm . massey articulated what he would have liked to have done  differently . he stated that he disagreed with the fact that there is not  enough evidence to show that market power existed and he pointed to the  on - going investigation . he also disagreed with the $ 150 / mwh breakpoint ,  preferring instead a hard price per generator . the commissioner said he  would have set the long term benchmark for only two years instead of five and  that he would have opened a section 206 investigation in the west . finally ,  he stated that he would have liked to address the issue of refunds .  chairman hoecker began his comments by saying that the commission was forced  to act and act quickly because the stakes are so high . he feels that it is  now time for the state regulators and markets to act . he noted that by  shrinking the cal px , the responsibility is now with the cpuc to fashion the  long term contracts and that hopefully we will exit this situation with the  least amount of damage to the utilities . in regards to suggestions for a  regional price cap , the chairman stated that this would not work due to the  fact that the commission has no jurisdiction over bonneville , wapa and the  public power producers and that there is no spot market in the northwest .  however , he did urge secretary richardson to convene a conference in order to  address regional issues . finally , in conceptually addressing the california  situation , the chairman stated that competition or \"\" deregulation \"\" did not  fail in california , but that there never was competition in california .\",0\n\"Subject: alex tartakovski  as you may know , we are trying to schedule an interview for alex tartakovski  in houston this week . i am copying everyone involved because i wont be able  to coordinate this tomorrow . we just brought our new daughter home today and  my wife is yelling at me to get out of my office .  i just found out that thursday & friday are bad days for him , so wednesday is  the only day to do it this week . he would come down tuesday night and fly  out wednesday evening . it ' s probably easiest for him to arrange his flight ,  but he will need a hotel and transportation from the airport . i gave him  donna ' s phone number for help . i assume the hyatt would be best . his home  number is 215 - 702 - 3705 and during the day his cellular is 267 - 981 - 5425 .  by way of background , i plan to bring in 3 people from outside the company to  fill in some of the \"\" vacants \"\" in my group ' s org chart . the 3 areas of  specialization that are needed to execute the business plan are ( 1 )  coordination of origination , ( 2 ) deal pricing and underwriting , and ( 3 )  modeling and portfolio management . alex is the perfect person for # 3 . he  has the deepest knowledge of probability of anyone i know and is efficient at  building analysis models , which will be a big job in this business because  portfolio management needs to be redefined in real time due to the lumpiness  of insurance contracts and the lack of any historical methods for evaluating  these risks . development of pricing models will be a joint effort between  \"\" my \"\" group and the research dept because this will need to draw on the  expertise in research as well as being a realtime activity as new deals are  being structured . i want to encourage joint work between vasant / amitava  and alex because his background and expertise is compatible with research .  over the past 2 years , alex and i spent a lot of time developing new  electricity spot pricing methodology and this is one area where he excels . i  would expect that he would be a valuable resource in research as well , and so  i would like for him to be able to meet with vince is possible . ( this could  possibly be done when vince is in philadelphia next week if there is time -  ( ? ) ) depending on what work needs to be done in the future , i could see him  working both on pricing research and this specific business unit .  i have attached alex ' s resume . i assume he would be manager level , but i ' m  not sure of this .  this doesnt necessarily come across in the resume , but the skills that are  useful to us are :  probability / statistical model development  development of theoretical pricing methodology  excellent computer programming skills  database development and data analysis  he has the best understanding of the nerc reliability data format outside of  mike curley , the nerc data manager .  designed and wrote the code for the pricing model used by ace power products  for deal pricing and porfolio mgmt .  excellent understanding of options pricing methodology and its application to  hedging insurance portfolios .  if you want to get into superconductor trading , he can design the standards .  can beat me at atari battlezone ( as well as being able to navigate a real  tank through a minefield ) .  one objective of this meeting in houston is to make him feel comfortable with  the organization ( with which you did such a good job for me ) and to give him  confidence that he will be able to do state - of - the - art pricing research in  the most innovative company in the world . he is also interviewing for a job  in morgan stanley ' s equity dept .  we will also arrange a meeting with per in ny , but i would like to be in the  office for that , so we can do that next week .  please call me @ 610 - 996 - 2522 if there are any questions . i may not pick up  but i will reply to voicemail promptly . i ' m up 24 hours this week anyway .  thanks ,  - - dave\",0\n\"Subject: re : best wishes for the holiday period  ehud ,  best holiday wishes to you and your family .  i owe you an apology for dropping the ball on the conference  i have approached a number of executives at enron . greg whalley speaks in  london a day  before . louise kitchen , the mother of enrononline will ski ( this is the week  of school holidays in england and her family will come here ) .  one suggestion i want to make is rick causey . i talked to him and he is  willing to  be a speaker . he is a very senior and important executive of enron and a ut  grad .  any thoughts ?  vince  \"\" ehud i . ronn \"\" on 12 / 19 / 2000 02 : 09 : 41 pm  to : vince . j . kaminski @ enron . com  cc :  subject : best wishes for the holiday period  vince ,  at the conclusion of another year , and prior to my departure tomorrow with  my family for our annual florida vacation , best wishes for the holiday  period to you and your family .  regarding the spring 2001 energy finance conference participation , we still  lack that all - important 2 / 22 enron energy - related high - level keynote  speaker . let me know if you think we should look elsewhere .  best regards ,  ehud  ehud i . ronn  jack s . josey professor in energy studies  department of finance  mccombs school of business  university of texas at austin  austin , tx . 78712 - 1179  voice : ( 512 ) 471 - 5853  fax : ( 512 ) 471 - 5073  internet : eronn @ mail . utexas . edu \",0\n\"Subject: re : security - after hours access  tony ,  no problem .  vince  anthony _ mends @ enron . net on 04 / 24 / 2000 09 : 54 : 49 am  to : vince . j . kaminski @ enron . com  cc :  subject : security - after hours access  vince ,  thank you for honoring us at our home on saturday . it was a real pleasure to  share an evening with you . we hope we shall be able to do it again with your  family when the opportunity arises .  i am forwarding to you a request from john young who works in my group as a  documentation specialist . kindly review his request and let me know if you are  able to grant it .  tony  enron broadband services  713 - 853 - 3939  - - - - - forwarded by anthony mends / enron communications on 04 / 24 / 00 08 : 37 am  - - - - -  | - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - >  | | john young |  | | |  | | 04 / 21 / 00 |  | | 11 : 28 am |  | | |  | - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - >  | |  | to : anthony mends / enron communications @ enron  communications |  | cc : shirley crenshaw / hou / ect @ ect , krista  reed / contractor / enron |  | communications @ enron  communications |  | subject : security - after hours  access |  tony ,  earl harvey and i are located on the 19 th floor inside the corporate research  group ' s area , which is in a secured area . they are a very supportive and  cooperative group , and conditions here are ideal for research , analysis , and  writing . i don ' t want to jeopardize their security in any way , but , if  possible , i would like to be added to the after hours and weekend access list  for situations such as meeting deadlines and research and that if you did not concur with my request , then  there  would be no reason to copy him at all .  thanks ,  jay  713 - 853 - 5941\",0\n\"Subject: re : real options  paul ,  we have done a lot of work in this area . i shall call you later  today ( monday my time ) , tuesday morning your time with  some recommendations .  vince  p . s . shirley , please send a real options binder to paul .  vince  from : paul smith @ enron _ development on 03 / 30 / 2001 08 : 42 am zel 0  to : vince j kaminski @ ect  cc : paul quilkey / enron _ development @ enron _ development , raymond  yeow / enron _ development @ enron _ development  subject : real options  vince ,  the sydney office is currently evaluating a proposal that involves an option  to participate in building a wind farm . should this proceed , we would like to  mark this option \"\" to market \"\" .  have the research group completed any work on methods for booking and  remarking real options ? alternatively , do you have any suggestions as to the  best way to value , and book , real options fairly ?  regards  paul smith\",0\n\"Subject: request submitted : access request for mraymon @ enron . com  you have received this email because the requester specified you as their  manager . please click  approval to review and act upon this request .  request id : 000000000007494  request create date : 11 / 15 / 00 12 : 57 : 59 pm  requested for : mraymon @ enron . com  resource name : vpn  resource type : applications\",0\n\"Subject: re : rotational opportunities within your group  kate ,  my assistant , shirley crenshaw , will schedule a meeting .  vince  kate lucas  10 / 17 / 2000 11 : 57 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : rotational opportunities within your group  dear vince ,  i am a rotating associate and would like to learn more about opportunities  within your group . i have worked in rac and am currently in financial  trading . i believe the associate / analyst program may forward you my cv , but i  thought it good to get in touch personally .  please let me know if there is someone with whom i could speak about the  group and its needs for associates .  with best regards ,  kate\",0\n\"Subject: re : digitals  pavel , many thanks for your note .  i understand that digitals are not core enron business but as you know , i ' m  trying to explore digitals to give , for example , a company a guaranteed  income in year one ( to mop up expiring tax losses ) . this is offset by a  guaranteed expense in year two . see attached hypothetical example . the  digital will reflect an underlying commodity to which a company is exposed to  and would be part of a price risk management strategy , thereby giving it  ' commercial purpose ' .  i would be interested in hearing from you generally on the subject - - the  rational for using digitals and your knowledge of its use in other markets  ( electricity or other commoodity or in the banking sector ) .  it seems to me that setting the srike is key and a ' value judgement ' or am i  wrong , and are there curves and models which could help you substantiate  this ? in any event , do you have a feel for what an acceptable % of chance or  likelihood that a commodity price hits the strike on a digital before it  becomes non arm ' s length and does not pass the smell test ?  vince , jarek suggested that you may be able to assist . your views would also  be appreciated .  gillian .  from : pavel zadorozhny on 02 / 11 / 2000 15 : 15 cst  to : gillian lockwood / lon / ect @ ect  cc :  subject : digitals  digital options are extremely uncommon in the crude oil market . nobody ever  asked me to show quotes in the otc market . the only time we encountered them  was when producers , brought by our marketing team , wanted to sell a  knock - outable swap , whereby they would get a higher swap price in exchange  for cancelling the swap if the price settled below a certain level . this  structure had a digital put embedded in it , although the customers didn ' t  necessarilly know that . the companies were us oil and gas producers : venoco ,  titan , magnum hunter , patiena oil & gas , belco , central resources . it was  about 1 year ago . in the otc market , at about the same time , i asked for  quotes to hedge these transactions and sold a digital cal 00 $ 16 swaption to  elf and strips of digital puts to somebody else that i cannot recall .  i hope this helps .  pavel\",0\n\"Subject: network engineering and operations organizational chart  shirely , please print this out for vice before the meeting .  thanks ,  ravi .  - - - - - forwarded by ravi thuraisingham / enron communications on 01 / 18 / 00 02 : 00  pm - - - - -  john griebling  sent by : michol boyd  01 / 18 / 00 01 : 41 pm  to : ec employees - - all  cc :  subject : network engineering and operations organizational chart  the network engineering and operations organization is taking shape . the  attached organization chart reflects my direct reports and the major  disciplines within the engineering organization . please support this  leadership team in executing our mission to support our current network as  well as deploy the gfn infrastructure and support systems .  you will notice that there are many leadership openings in the organization ,  please direct any input regarding external candidates for these positions to  patty pennington .  the network engineering team is also attempting to recruit between 30 to 50  people ( as dictated by budget availability ) across the indicated disciplines  by mid - year .\",0\n\"Subject: re : meeting on the 20 th of march  fyi .  shirley ( 3 - 5290 ) is making travel arrangements for me .  it makes sense for all of us to stay in the same hotel ,  irrespective of individual travel arrangements  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 29 / 2000  07 : 30 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" rudy , robert \"\" on 02 / 28 / 2000 08 : 20 : 10 pm  to : \"\" ' vince j kaminski ' \"\"  cc :  subject : re : meeting on the 20 th of march  dear vince ,  thanks for your note . i look forward to seeing you on the 20 th .  we usually recommend our visitors to stay at the park hyatt on battery  street . it ' s a 5 minute cab ride ( or an easy 15 minute walk ) to our  offices . should you decide to walk , it is important that you take sansome  street rather than montgomery . they are one block apart , but one goes up to  the top of telegraph hill and ends before continuing at the bottom of a  cliff and the other is relatively flat and is continuous . there are  detailed directions on our website ( www . kmv . com ) .  see you on the 20 th .  regards ,  rob  - - - - - original message - - - - -  from : vince j kaminski [ mailto : vince . j . kaminski @ enron . com ]  sent : monday , february 28 , 2000 9 : 35 am  to : robert . rudy @ kmv . com  cc : vince j kaminski ; shirley crenshaw  subject : meeting on the 20 th of march  robert ,  this is to confirm the meeting on march the 20 th at 9 : 00 a . m . enron will be  represented by  bill bradford , bryan seyfried , , vasant shanbhogue and myself .  could you , please , advise me what is the best hotel where we could stay  overnight ,  close to your location ?  vince kaminski  enron corp .  1400 smith street , room 1962  houston , tx 77251 - 1188  phone : ( 713 ) 853 3848  fax : ( 713 ) 646 2503  e - mail : vkamins @ enron . com\",0\n\"Subject: re : lsu seminar visit  vince ,  please send a package of article reprints to the attention of joan payne at  the following address :  joan payne  department of finance  e . j . ourso college of business administration  louisiana state university  2163 ceba  baton rouge , la 70803  in your package , please indicate which presentation each reprint is  intended for ; i . e . , whether it is for student consumption on thursday  afternoon or finance faculty / doctoral student consumption on friday  morning . joan can make sure that we get the right number of copies  produced for the respective audiences .  concerning powerpoints - - just email these files to me and if it is all  right with you i will make them available for download by the faculty and  students on the class and research seminar webpages .  thanks again for being willing to visit lsu and present your knowledge to  our faculty and students .  sincerely ,  jim garven  at 01 : 39 pm 1 / 18 / 2000 + 0000 , you wrote :  > jim ,  >  > i can send you copies of the reprints of some papers i wrote  > or co - authored . please , let me know how many copies do you need .  >  > i shall prepare power point presentations for the student meeting  > and for the faculty meeting .  >  > for the students : review of my group ( things we work on ) with an intention  > of generating some interest among the students and soliciting resumes .  >  > for the faculty meeting : challenges that energy markets pose to financial  > modeling .  > i shall be able to e - mail the power point presentations later this month .  >  > vince  >  >  >  >  >  > jim garven on 01 / 17 / 2000 04 : 00 : 25 pm  >  > to : vince j kaminski / hou / ect @ ect  > cc :  > subject : re : lsu seminar visit  >  >  >  > dear vince ,  >  > would you mind emailing to me a short biography / vita sometime when you get  > a chance ? also , if you have a paper to circulate or any powerpoint slides  > that you ' ll want to use either in your presentations to my students  > thursday afternoon , 2 / 3 , or to the faculty seminar on friday morning , 2 / 4 ,  > please email these to me . this would be greatly appreciated .  >  > my colleagues and i are looking forward to your visit on feb . 3 - 4 to lsu .  >  > sincerely ,  >  > jim garven  >  >  > james r . garven  > william h . wright , jr . endowed chair for financial services  > department of finance  > 2158 ceba  > e . j . ourso college of business administration  > louisiana state university  > baton rouge , la 70803 - 6308  >  > voice ( 225 ) 388 - 0477 | fax : ( 800 ) 859 - 6361  >  > e - mail : jgarven @ lsu . edu  > home page : http : / / garven . lsu . edu  > vita : http : / / garven . lsu . edu / dossier . html  > research paper archive : http : / / garven . lsu . edu / research . html  james r . garven  william h . wright , jr . endowed chair for financial services  department of finance  2158 ceba  e . j . ourso college of business administration  louisiana state university  baton rouge , la 70803 - 6308  voice ( 225 ) 388 - 0477 | fax : ( 800 ) 859 - 6361  e - mail : jgarven @ lsu . edu  home page : http : / / garven . lsu . edu  vita : http : / / garven . lsu . edu / dossier . html  research paper archive : http : / / garven . lsu . edu / research . html  - attl . htm\",0\n\"Subject: out of the office  i will be out of the office september 18 - 19 , 2000 and will return wednesday  september 20 , 2000 . if you should need anything in the mean time please call  sheila walton at x 30649 or the hr assistant ramona perkins at x 58165 .\",0\n\"Subject: maac executive board files restructuring agreement  message sent from the pjm - customer - info mailing list at  pjm - customer - info @ majordomo . pjm . com :  maac executive board files restructuring agreement  september 27 , 2000  norristown , pa :  the mid - atlantic area council ( maac ) , one of the ten regional reliability  councils of the north american electric reliability councils ( nerc ) , filed a  new  agreement on september 22 regarding the governance of maac with the federal  energy regulatory commission ( ferc ) . maac ' s basic purpose is to ensure the  reliability of the interconnected bulk power system in the region . maac ' s  area  of responsibility covers the same geographical region as the control area  operated by the pjm independent system operator ( pjm iso ) , consisting of all  or  parts of the states of pennsylvania , new jersey , maryland , delaware ,  virginia ,  and the district of columbia . the maac restructuring process began years ago  and  is expected , with ferc approval , to be implemented on january 1 , 2001 .  \"\" we are excited to be positioning the maac organization to address the needs  of  the new competitive era , thanks to the interest and participation of the  stakeholders for over two years . \"\" stated pete landrieu , maac executive board  chair .  phillip g . harris , regional manager of maac , commented \"\" the relationship  between  reliability and markets will be enhanced and strengthened by the maac  restructuring . we are also pleased to be making this change as effectively as  possible through the use of existing pjm organizational and other resources . \"\"  under the filed agreement , a new maac members committee is chartered with the  creation of the approval process of the maac reliability principles and  standards . other new maac committees are chartered , most notably , a maac  energy  market committee to serve as a forum for the discussion of the impact of  reliability on the commercial market place , and the marketplace on  reliability .  the agreement also provides for stakeholder representation on the maac board .  appropriate amendments to existing pjm agreements will be discussed with the  pjm  members and filed with the ferc .  the mid - atlantic area council was established in december 1967 to augment the  reliability of the bulk electric supply systems of its members through  coordinated planning of generation and transmission facilities . the maac  region  encompasses nearly 50 , 000 square miles from virginia to new york and from the  atlantic ocean to the great lakes . under the existing maac agreement and the  operating agreement of pjm interconnection , l . l . c . , maac and pjm members are  obligated to comply with maac and nerc operating and planning principles and  standards .  please do not reply to this message . if you have a question for pjm customer  relations and training , please send an e - mail to custsvc @ pjm . com .  to unsubscribe from this list , send an e - mail to majordomo @ majordomo . pjm . com  containing only the following line in the body of the e - mail :  unsubscribe pjm - customer - info\",0\n\"Subject: thanks again  vince ,  i thank you again for all your help . ? i will continue to search for job  opportunities at enron , and hopefully be able to find a match for me .  how is your son doing ? is he still interested in computers ? there is a  promising future for high - tech guys .  regards ?  carla di castro  marketing  mfr group , inc .  one riverway , ste 1900  houston , tx 77056 - 1951  phone ( 713 ) 353 - 8180  office ( 713 ) 622 - 1120\",0\n\"Subject: re : presentation in seoul  anthony duenner @ enron _ development on 12 / 15 / 99 01 : 46 : 35 pm  to : mark ruane @ ect , zimin lu @ ect  cc :  subject : presentation in seoul  better late than never - - i again wanted to thank both of you for taking the  time and making the effort to make the raroc and real options presentations  in seoul earlier this month . both presentations were well received and i had  a number of favorable comments and expressions of thanks form our hosts after  the presentations . i know you both have very busy schedules - - especially  around this time of year - - and very much appreciate your help . regards .  anthony duenner\",0\n\"Subject: re : enron visit - - thanks  larry ,  i was thinking about the potential applications over the weekend  and i think i shall have a proposal for you in a few days .  vince  p . s . i want to remind you about the favor i asked you about .  we would like to talk ( no commitments ) to the prediction company .  can you refer me to your friend .  vince  lawrencelrtnmt @ aol . com on 05 / 06 / 2001 12 : 07 : 18 am  to : vkamins @ enron . com  cc :  subject : enron visit - - thanks  dear vince ,  i just wanted to thank you for inviting me to visit enron last friday and  for the generous amount of time you spent with me personally while i was  there . i found our discussions both informative and stimulating .  vince , i was genuinely impressed by the caliber of the group you have  assembled at enron . their individual and collective expertise is obvious ;  and they were most generous in exchanging ideas and sharing opinions with me .  if you or any of your people have , over the weekend , developed further  questions or thought of additional information that might be helpful , i ' m  standing by . i ' m eager to continue our dialogue .  sincerely ,  larry thorne\",0\n\"Subject: re : seminar on beyond ols  i have reserved eb 30 cl from 3 : 30 pm - 5 : 30 pm .  just a reminder that the 19 th is the research christmas party at damians from  5 : 30 - 7 : 30 pm .  shirley  vince j kaminski  12 / 08 / 2000 08 : 33 am  to : clayton vernon / corp / enron @ enron , shirley crenshaw / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : seminar on beyond ols  shirley ,  can you reserve the room for tue , dec 19 , 3 : 30 ?  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 12 / 08 / 2000  08 : 33 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  clayton vernon @ enron  12 / 07 / 2000 05 : 38 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : seminar on beyond ols  vince -  george just \"\" remembered \"\" the traders ' meetings monday and wednesday  afternoons at 3 : 30 . he ' s going to email you - i think tuesday would ensure a  turnout of traders as well as analysts . we could easily have 20 people there  from power alone , and there ' s always gas . . . . when you decide the time , can  you ask shirley to reserve a conference room along the size of 30 cl ?  clayton\",0\n\"Subject: software license  dear ms . feldman ,  please receive all my apologies for not having  answered earlier your 2 emails , but i was in the  states for 6 weeks and could not access my  dauphine email . in any case , the time was  fruitfully used by my associates and myself to  improve the \"\" robustness \"\" of the product , from  a computer and mathematical standpoint .  regarding your 3 points  1 . we agree on the price of 90 , 000 usd  2 . d - g will provide system support : we can do so  by emailing anther version of the software , being  available on the phone and by email but we  cannot promise unlimited support of all kinds  without risking bankruptcy right away .  moreover , the $ 90 , 000 may be paid in 3 fractions  and your risk would be quite minimal  3 . regarding the escrow , we have been using so  far a small law firm with 5 partners ( none of my  family ) in amherst : hart , reed , brown , golowich  and kaplan . but we are not closed to anther  solution you would strongly prefer .  best regards  helyette geman , phd , phd  d - g energy systems\",0\n\"Subject: idea : please take a look  dear mr . kaminski ,  thank you for calling . briefly , about ideaglobal . com : we ' ve been providing  unbiased market analysis since 1989 , and today our customers include the  fed , the us treasury , the imf , 25 foreign central banks , and over 1 , 700  dealing rooms worldwide . we emphasize sales and trading strategies rather  than just provide market news .  attached , please find 2 samples of our daily research : today ' s issue of our  morning faxes financial markets today and fixed income today . we also have  intraday market coverage on bloomberg : idea > go , reuters , and  bridge / telerate .  if the info looks interesting , we would be glad to arrange a 30 - day free  trial for you ? for your reference , please see our price list . i look  forward to your reply .  best regards ,  vadim pokhlebkin  account manager  vpokhlebkin @ ideaglobal . com  tel . + 1 212 571 4332  fax + 1 212 571 4334  ideaglobal . com  140 broadway , 21 st floor  new york , ny 10005 , usa  any views expressed in this message are those of the individual sender ,  except where the sender specifically states them to be the views of  ideaglobal . com . this email , its content and any files transmitted with it  are intended solely for the addressee ( s ) and may be legally privileged  and / or confidential . access by any other party is unauthorized without the  express written permission of the sender . if you have received this email in  error you may not copy or use the contents , attachments or information in  any way . please destroy it and contact the sender via the ideaglobal . com  switchboard in one of the following three offices : new york + 1 212 571 4332 ;  london + 44 171 430 2888 ; singapore + 65 332 0700  - fmto 316 a . pdf  - fito 316 a . pdf  - onesheet . doc\",0\n\"Subject: dear mr . kaminski ,  it was really a pleasure to meet you during  the risk event . i hope we ' ll have more chances to  talk in the future .  i will be glad to invite you when you will visit  california . my home number is ( 408 ) - 996 - 2631 .  sincerely ,  alex ulitsky .  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  alex ulitsky , ph . d .  alex @ eplanning . com  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =\",0\n\"Subject: orillion and ebs visit  * * * * * confirmation of meeting with orillion * * * * *  gentlemen :  i have spoken with jerry sellers of orillion and he will be visiting with ebs  on tuesday , april 25 , 2000 for about half a day . orillion is scheduled to be  at ebs from 1 : 00 - 4 : 00 p . m . in conference room 45 cl . the following  individuals will participate on behalf of orillion . they are as follows :  jerry sellers , chairman  terry lindsey , president  professor ken dick , technical advisory board at university of nebraska  orillion would like to propose the following discussion topics :  1 . introduce orillion to ebs  2 . engage in technical discussions  3 . discussions on how orillion can help ebs  participants from ebs :  arshak sarkissian for scott yeager  vince kaminski  john griebling  james reece  david reece  everette plante  diane hetzel  dorn hetzel  ravi thuraisingham\",0\n\"Subject: re : pro opticus  i was not aware of the demo .  - - stinson  vince j kaminski  11 / 06 / 2000 01 : 58 pm  to : stinson gibner / hou / ect @ ect  cc :  subject : pro opticus  stinson ,  any insights ?  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 11 / 06 / 2000  02 : 05 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  kevin sweeney  10 / 23 / 2000 06 : 53 am  to : vince j kaminski / hou / ect @ ect  cc : kara maloney / na / enron @ enron , mario de la ossa / na / enron @ enron , matt a  brown / hou / ect @ ect  subject : pro opticus  vince ,  i understand that you or someone in your group had a demo from the above  group last friday . i was wondering if this was part of a push to bring more  options ' analytics to the traders ' desks , and if so , if you could explain  what that effort looks like ? one of the global markets traders , mario de la  ossa also had a look at the software as he has used it in the past .  thanks ,  kevin\",0\n\"Subject: re : joint probabilities  michael  a table ( table 2 ) has been added with probabilities for rab > x , fx > y . at  the current currency level , approx 1 . 5 , all the numbers are multiplied by 1 / 2  because the currency is equally likely to rise or fall . this may give a  pessimetic view of achieving a given stock price .  let me know when you want to get togetrher .  bob\",0\n\"Subject: wichai narongwanich  dear toni :  please arrange a payment of $ 10 , 000 to wichai as a sigining bonus as agreed  upon with him at the time of his offer .  thanks ,  krishna .\",0\n\"Subject: re : invitation to speak at infocast ' s managing summer price  volatilit y conference in houston  thanks , vince - - it sounds like a good opportunity . if you ' d like i can call  him directly .  joe  vince j kaminski  10 / 17 / 2000 03 : 55 pm  to : joseph hrgovcic / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : invitation to speak at infocast ' s managing summer price volatilit y  conference in houston  joe ,  any interest in speaking ?  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 17 / 2000  04 : 01 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  britta bothe on 10 / 17 / 2000 12 : 38 : 33 pm  to : vkamins @ enron . com  cc :  subject : invitation to speak at infocast ' s managing summer price volatilit y  conference in houston  dear ms . kaminsky :  as i just mentioned on your voicemail , infocast is going to host a managing  summer price volatility course , january 30 - february 1 , 2001 in houston .  the course will focus on the various tools at hand to manage summer price  and load volatility . our target audience for this event will primarily be  risk managers and managers in bulk power sales & purchase ( our secondary  target audience is energy traders ) .  attached you will find a draft program agenda for your review . please let  me know if you or someone else at enron is interested in presenting at this  event . in particular , we are looking for someone to talk about weather  derivatives .  i appreciate you taking the time to review the conference schedule and i  hope that i will have an opportunity to talk to you . unfortunately , i am  running behind schedule in finalizing this program . i will call tomorrow to  see what your feedback is . if you have any questions or suggestions , please  do not hesitate to contact me at ( 818 ) 888 - 4445 ext . 30 .  sincerely ,  britta bothe  infocast  conference manager  ( 818 ) 888 - 4445 ext . 30  >  - agenda 5 . doc\",0\n\"Subject: re : fwd : latest roster - rice  no problem - pam  at 05 : 42 pm 3 / 7 / 01 - 0600 , you wrote :  > pam ,  >  > thanks ,  >  > yes , i need the e - mail addresses as well .  >  > vince  >  >  >  >  >  > pamela vande krol castro on 03 / 07 / 2001 04 : 19 : 01 pm  >  > to : vince . j . kaminski @ enron . com  > cc :  > subject : fwd : latest roster - rice  >  >  > let ' s try this again ! - pam  >  >  > > date : wed , 07 mar 2001 16 : 13 : 42 - 0600  > > to : vince . j . kaminski @ enron . com  > > from : pamela vande krol castro  > > subject : latest roster - rice  > >  > > here is your latest roster for mgmt 656 . let me know if you need the list  > > of e - mail addresses or if there are any discrepancies that i should  > > address . thanks for your help ! - pam ( 713 - 348 - 6223 )  >  > ( see attached file : 656 . doc )  >  >  - 656 . xls\",0\n\"Subject: re : option p & l  brad ,  i was extreamly busy yesterday . sorry for answing your question till now .  although i am not exactly sure how the system handle gamma , this is what i  think the system is doing :  curve shift = today ' s price - yesterady ' s price  p / l due to curve shift = today ' s market value using today ' s price curve ( with  everything esle the same as yesterday ' s ) - yesterday ' s market value using  yesterday ' s price curve .  so p / l due to curve shift contains both delta and gamma and higher order  terms .  we then use theoretical gamma ( meaning option model gamma : 0 . 5 * gamma * ( price  change ) 2 ) for gamma contribution and ? define delta = curve shift - theoretical gamma . ? ? therefore , the gamma may not be very accurate to explain the delta change , ? especially when you have big price change due to higher order contribution . ? ? let me know your thoughts on this . ? ? ? best wishes , ? ? zimin ? ? ? ? ? ? ? ? ? brad horn 10 / 12 / 2000 07 : 11 am ? ? to : zimin lu / hou / ect @ ect , stinson gibner / hou / ect @ ect ? cc : vince j kaminski / hou / ect @ ect , vladimir gorny / hou / ect @ ect , robert ? shiring / hou / ect @ ect , jay knoblauh / hou / ect @ ect ? subject : option p & l ? ? gentleman : ? the erms system , as you know , has an excellent capability for ? decomposing option p & l into the following components : ? ? new deals ? curve shift ? gamma ? vega ? theta ? rho ? drift ? 2 nd order adjustments ? ? what i dont understand is the gamma component which is reported in dollars . ? the unit of measure suggests that incremental changes in a contract position ? is being associated with specific prices . these prices are the effective buy ? or sell prices associated with the dynamic delta position . ? ? stated differently , the standard taylor expansion has incorporated a price ? variable in such a way as to convert the unit of measure from gamma ' s ? standard contract count to total gamma dolalrs . this is something i dont ? understand . to date , inquiries to the risk management accounting group has ? further revealed that the gamma component of p & l is not well understood . ? ? this is what concerns me : bridgeline has 2 books with option exposures ( nymex ? and gas daily ) . both books dynamically hedged its positions during ? yesterdays large price move and , through anticipitory hedging in advance or ? during the large price move , secured sufficient coverage to neutralize ? expected changes in delta . however , our p & l from our underlying position did ? not offset our gamma p & l . consequently , i have to ask why ? im hoping that a ? brief look at the why gamma dollars are calculated may reveal something which ? will better guide our hedging decisions . ? ? any help is appreciated ? ?\",0\n\"Subject: re : var calibration issues  we are proposing the following changes to the calculation of ng correlations :  1 . weight the data set ( 3 calendar months ) used in calculating correlations  ( most recent data weighed heavier )  2 . use respective contract prices , instead of prompt month prices ( i . e . for  nov - 00 correlations use nov contract prices for the last 3 months , as opposed  to prompt month prices for the last three months .  tanya ,  i have confirmed with ted and he gave us green light to make both changes .  did we get an opinion from vince ?  winston ,  it is my understanding , that this changes apply to ng correlations only , not  the correlations between commodities . we will test the changes in gas and  then decide on world - wide implementation . any estimate on timing of this  implementation ?  cassandra ,  ted suggested that you and veronica should document this as a change in var  parameters and inform all commercial desk heads of these changes . we intend  to make them for na gas first , but ultimately make these changes consistent  across all commodity groups . let me know if you have questions .  thanks , vlady .  wenyao jia  10 / 13 / 2000 03 : 43 pm  to : vladimir gorny / hou / ect @ ect  cc : tanya tamarchenko / hou / ect @ ect , jin yu / hou / ect @ ect  subject : re : var calibration issues  vlady ,  also in the meeting , we identified that there are still some issures  regarding to the correlation matrix calculations .  since different commodity has different expiration dates . when calculate  correlation between two commodities , the two may have different prompt  months . are we going to use prices on two different prompt months or are we  going to use the prices on the same month disregarding prompt months .  because above issues , jin is not going do any changes on the correlation  matrix calculation until above issures can be solved .  thanks !  winston  tanya tamarchenko  10 / 13 / 2000 03 : 16 pm  to : vladimir gorny / hou / ect @ ect  cc : wenyao jia / hou / ect @ ect , jin yu / hou / ect @ ect , jin yu / hou / ect @ ect  subject : re : var calibration issues  vlady , we met with winston and jin today regarding var calibration issues .  the outcome on this discussion is :  1 . jin will put weights into calculation of factor loadings ;  2 . jin will change the way factor loading are calculated . for each commodity  the prompt month contract will be selected for the effective date of vatrfacs  run .  then the historical prices will be collected for 3 month for all forward  contracts starting from  selected prompt month contract . the variance - covariance matrix will be  calculated  based on these data , it will be converted into correlation matrix , then  factor loadings  analysis will be performed on the correlation matrix .  tanya .\",0\n\"Subject: re : carnegie mellon team meeting  unfortunately i do not have a phone right now so i will have to call as soon  as they get me up and running . i went ahead and sent out the dates we have  on schedule currently with the intention that if we get new dates they will  be announced in the team meeting on thursday . hope that is okay . i needed  to get a message out to participant soon so we don ' t get in a bind in a  couple of weeks .  kristin  vince j kaminski @ ect  08 / 28 / 2000 11 : 02 am  to : kristin gandy / na / enron @ enron  cc : vince j kaminski / hou / ect @ ect  subject : re : carnegie mellon team meeting  kristin ,  what about the visit to the campus on nov . 3 ?  any resolution ?  vince  kristin gandy @ enron  08 / 28 / 2000 10 : 03 am  to : vince j kaminski / hou / ect @ ect , kent densley / corp / enron @ enron , dorothy  mccoppin / fgt / enron @ enron , kevin kindall / corp / enron @ enron , andre  beskrowni / enron communications @ enron communications , gaurav  babbar / hou / ect @ ect , john walt / corp / enron @ enron , john b gordon / na / enron @ enron ,  dave cummings / enron @ gateway  cc : judy nyegaard / hou / ect @ ect  subject : carnegie mellon team meeting  greetings , carnegie mellon recruiting team !  each of you has been chosen to represent enron for our fall 2000 recruiting  efforts at carnegie mellon university . as part of the team , you will be  challenged with choosing the best candidates from carnegie mellon ' s graduate  school to join our associate program .  our first campus event will be on september 15 and interviews will be held on  campus december 11 and 12 . i hope you are all able to participate in the  exciting process of recruiting young talent .  we will be more formally organising ourselves in the next couple of weeks .  currently , we are planning to have a brief team meeting in order to make  introductions , inform you about the associate program , and discuss the fall  recruiting calendar . to that end , please contact me with any questions or  comments you may have .  the team meeting date is set for august 31 st at 10 am in room 19 c 2 .  please rsvp to me as soon as possible .  i look forward to meeting you all soon .  sincerely ,  kristin gandy  associate recruiter  x 53214\",0\n\"Subject: patricia tlapek  brad ,  as per our previous discussions , vince wanted me to give you the background  on our request to bring patricia tlapek into the research group at the very  top end of the manager group . the justification for this was not only her  extraordinary performance in setting up our technical analysis section but  also our reliance on her to build this group and expand its scope .  this memo is in response to your request today to document our reasoning .  this past year patricia was extremely successful in building internal  clientele for her products and recommendations - she is now widely relied on  by gas , power , crude and equity marketers , as well as traders from the  calgary office . in addition , she developed and presented seminars to bring  traders up to speed on techniques in technical analysis .  also this last year patricia built and populates daily the research group ' s  intranet site on technical analysis .  as a crowning achievement ( but just the beginning ) , patricia was given the  authority to actually trade natural gas as jeff shankman , managing director ,  authorized her book for technical analysis trading .  currently , we are proceeding with the expansion of her group personnel - wise  and she is agressively working to gain authority from other groups to trade  live books on other energy commodities and energy - related equities .  for these reasons , we want to peg patricia ' s salary at the top of the pay  scale .  thanks for expediting this effort .  - - - mike\",0\n\"Subject: re : statistica & lunch  rick ,  we are using sas .  i am glad you can speak at our lunch meeting  on feb 15 .  vince  richard b jones @ ees  02 / 05 / 2001 11 : 26 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : statistica & lunch  vince ,  do we have a site license for statistica ? what stat software do you use ?  i am prepared to talk at your lunch . i think we said thurs feb 15 th 11 : 30 -  1 : 00 . i would liie to have a computer display if possible . i ' ll bring my pc .  what ' s the room # again ?  rick jones\",0\n\"Subject: update - rofr  per our meeting , i added a switch so that the pipeline can accept or reject  the best bid  if the best bid is not the cap rate .  zimin\",0\n\"Subject: re : interview with research dept . candidate rabi s . de on august  11 , 2000  please note that dennis benevides has been added to the interview schedule  for rabi de on august 11 , 2000 .  9 : 00 - 9 : 30 am vince kaminiski  9 : 30 - 10 : 00 am stinson gibner  10 : 00 - 10 : 30 am grant masson  10 : 30 - 11 : 00 am krishna krishnarao  11 : 00 - 11 : 30 am tanya tamarchenko  11 : 30 - 1 : 00 pm lunch with tanya tamarchenko and zimin lu  1 : 00 - 1 : 30 pm zimin lu  1 : 30 - 2 : 00 pm vasant shanbhogue  2 : 00 - 2 : 30 pm paulo issler  2 : 45 - 3 : 15 pm dennis benevides  the following interview schedule has been set up for rabi s . de by sean  grady , hr staffing :  9 : 00 - 9 : 30 am vince kaminiski  9 : 30 - 10 : 00 am stinson gibner  10 : 00 - 10 : 30 am grant masson  10 : 30 - 11 : 00 am krishna krishnarao  11 : 00 - 11 : 30 am tanya tamarchenko  11 : 30 - 1 : 00 pm lunch with tanya tamarchenko and zimin lu  1 : 00 - 1 : 30 pm zimin lu  1 : 30 - 2 : 00 pm vasant shanbhogue  2 : 00 - 2 : 30 pm paulo issler  please call me if you have any questions or if a conflict develops and you  need to change your interview time . thanks . anita  - - - - - - - - - - - - - - - - - - - - - - forwarded by anita dupont / na / enron on 08 / 01 / 2000 02 : 21  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  pinnamaneni krishnarao @ ect  07 / 31 / 2000 05 : 30 pm  to : anita dupont / na / enron @ enron  cc :  subject : re : interview with research dept . candidate rabi s . de  anita :  can you add dennis benevides ( assistant kathy bass ) to interview rabi de ?  sorry for the late request .  thanks ,  krishna  anita dupont @ enron  07 / 31 / 2000 03 : 49 pm  to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , grant  masson / hou / ect @ ect , pinnamaneni krishnarao / hou / ect @ ect , tanya  tamarchenko / hou / ect @ ect , zimin lu / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect ,  paulo issler / hou / ect @ ect  cc :  subject : interview with research dept . candidate rabi s . de  the following interview schedule has been set up for rabi s . de by sean  grady , hr staffing :  9 : 00 - 9 : 30 am vince kaminiski  9 : 30 - 10 : 00 am stinson gibner  10 : 00 - 10 : 30 am grant masson  10 : 30 - 11 : 00 am krishna krishnarao  11 : 00 - 11 : 30 am tanya tamarchenko  11 : 30 - 1 : 00 pm lunch with tanya tamarchenko and zimin lu  1 : 00 - 1 : 30 pm zimin lu  1 : 30 - 2 : 00 pm vasant shanbhogue  2 : 00 - 2 : 30 pm paulo issler  please call me if you have any questions or if a conflict develops and you  need to change your interview time . thanks . anita\",0\n\"Subject: re : natural gas storage item  vince -  something very interesting about natural gas storage ( from the class ) .  the industry is rapidly adopting what are called \"\" operational balancing  agreements , \"\" where the pipeline contracts with the producers and ldc ' s  ( public utilities ) to handle all \"\" imbalances \"\" in shipping , namely all  production shortfalls or overages or consumption likewise . shippers then  always \"\" book \"\" what is scheduled to happen , and not what actually happens .  the end result is that storage facillities associated with production regions  are used to smooth out not only weekday - weekend seasonal patterns ( the  well - known \"\" parking \"\" ) but to insure issues of wellhead output as well .  cutting to the chase , storage facilities in producing regions are operated to  insure the integrity of the pipeline system , and estimated marketed  production is likely to be a better estimate of actual flow at the pipeline ' s  receipt meter than is production less local storage .  clayton\",0\n\"Subject: revised : organizational changes  to : enron north america corp .  from : cliff baxter and kevin hannon  in july , as part of the enron north america ( ena ) reorganization , the  implementation of several objectives were highlighted as critical to the  continued growth of ena including : 1 ) accelerate the development of our  people , 2 ) significantly expand our customer network and associated markets ,  and 3 ) accelerate and enhance the information flow between groups , both  within ena and across enron . consistent with these objectives and with the  corporate goal of fostering \u0001  b ) the downstream coverage / origination groups which focus on delivering a  broad range of products and services to the heavy industrial customers  including pulp and paper , chemicals , plastics , refined products , metals and  mining , heavy manufacturing , industrial gases , fertilizers , transportation ,  textiles and glass manufacturing the eastern and western u . s . midstream  coverage / origination groups which focus on energy , finance and industries .  downstream coverage / origination  as energy deregulation continues in north america , it is becoming clear that  the heavy industrial segment will be an important customer market for both  ena and enron corp . further , it is clear that ena can significantly expand  its industrial customer network and create more innovative industrial  solutions by having a group that can deploy all the capabilities of enron  corp . against this backdrop , the downstream coverage / origination function  will expand its product offering to include not only ena \u0001 , s existing energy  commodities , energy services , finance , assets and pulp and paper capabilities  but also ees \u0001 , s energy outsourcing capability and global fuel \u0001 , s chemicals ,  plastics and refined products risk management capability . these additional  capabilities will be offered in conjunction with ees and the global fuels  groups . given the size and importance of this enron initiative , greg piper  will be returning from portland to manage this business . under greg \u0001 , s  leadership , the downstream origination effort will be segmented into three  sub - groups given the nature of these industries and our product offering :  a ) pulp and paper \u0001 ) edward ondarza will continue to manage the coverage  activities in the pulp and paper business . this group will be responsible for  the provision of innovative  products and services in the pulp and paper industry including the provision  of paper risk management products ;  b ) chemicals , plastics and refined products \u0001 ) we have asked jim ajello to  lead the coverage activities in this business . this group will be  responsible for the provision of innovative products and services in the  chemicals and refined products industries ;  c ) non - integrated industrials \u0001 ) bruce garner , formerly leader of bankers  trust \u0001 , s global metals and mining group in london , has joined ena to lead the  coverage activities in this business . this group will be responsible for the  provision of innovative products and services for the metals and mining ,  heavy manufacturing , industrial gases , fertilizers , transportation , textiles  and glass manufacturing industries .  midstream coverage / origination  a ) eastern coverage / origination \u0001 ) this group \u0001 , activities will focus on  energy , finance and power development solutions for electric and gas  utilities , municipals , co - ops and energy service companies in the eastern  interconnect . we have asked janet dietrich to assume the leadership of this  group ;  b ) western coverage / origination \u0001 ) this group \u0001 , s activities will focus on  energy , finance and power development solutions for electric and gas  utilities , municipals , co - ops and energy service companies in the wscc . they  will also continue to manage all qualified facilities ( qf ) restructuring  opportunities in the western u . s . we have asked chris calger to assume the  leadership of this coverage group . chris will relocate to portland from  calgary where he currently leads the canadian downstream origination efforts ;  c ) ipp merchant coverage / origination \u0001 ) this group \u0001 , s activities will focus on  the provision of structured energy , finance and asset solutions for the  emerging merchant power generators who control large portfolio \u0001 , s of merchant  power generation either through development or acquisition . we have asked  mike miller to assume the leadership of this group . in addition , mike will  continue to manage the power development activities in the eastern  interconnect ;  d ) eastern qf restructuring \u0001 ) this group will focus on the qf restructuring  opportunities in the eastern interconnect including the existing  restructuring and re - capitalization of the east coast power assets . we have  asked dave duran to assume the leadership of this business . greg blair ,  formerly of enron asia \u0001 , s development group , doug clifford , formerly of  citizens power , and dick lydecker , formerly of cogen technology , will join  this newly formed business .  2 ) commercial transactions :  the commercial transactions group ( ctg ) , co - headed by ray bowen and jeff  donahue , was formed to provide a centralized resource for the execution of  transactions within ena \u0001 ) and thereby , improve ena \u0001 , s efficiency in executing  transactions and free - up the origination groups to increase their intensity  of client coverage . ctg consists of six primary functions : transaction  development , capital structuring and portfolio management , commodity  structuring and transportation , transactional support / accounting , technical  analysis and upstream asset management .  the transaction development group will be responsible for deal leadership ,  execution and optimization of all aspects of a transaction in conjunction  with the originator . the function will be divided into four teams , each of  which will be dedicated to between two and four origination groups . this  dedication to specific groups should provide a closer link , better service  and greater accountability with the origination groups ; however , the ctg  resources are designed to be a fungible and flexible resource allocated to  the highest value transactions across the coverage functions :  a ) midstream transaction development will be dedicated to the eastern and  western coverage / origination groups . the senior members of this group  include billy lemmons , george mccormick , erin norris and russ porter . billy  lemmons joined enron in 1992 . most recently , he was the vice - president of  capital structuring and risk management for ees . russ porter joins us today  from dynegy where he was a manager with responsibilities for power  origination .  b ) downstream transaction development will be dedicated to ena \u0001 , s industrial  origination efforts in pulp and paper , petrochemicals and refining ,  environmental energy , metals and mining and other industries as coverage is  established . the senior members of this team include rodney malcolm , jay  boudreaux , finley biggerstaff and chris helfrich . we anticipate announcing  two to four more additions to this team within the next few weeks .  c ) generation transaction development will be dedicated to the ipp merchant  services and power plant development and qf restructuring groups . the senior  members of this team include thomas suffield , andy kelemen , kelly mahmoud and  john house . thomas suffield joined enron in 1996 . most recently , he was the  vice - president of origination for the latin american group in azurix . we  anticipate announcing two more additions to this team within the next few  weeks .  d ) upstream transaction development will be dedicated to the producer  finance , coal and gas assets groups . the senior members of this team include  brad dunn , john curtin and chris hilgert . we hope to announce the addition  of at least one vp to this group prior to yearend .  ray bowen will have primary oversight responsibilities for the upstream and  downstream transaction development teams with jeff donahue having primary  responsibilities for the midstream and generation teams . andrea reed will  continue to head capital structuring and portfolio management : all junior  commercial resources within the transaction development teams will have dual  responsibilities to both their transaction development teams and to the  capital structuring group . the remaining four groups within ctg will remain  largely unchanged . in addition , the origination and the transaction  development teams and their respective origination groups will be located  together .  we believe that these changes will significantly enhance our market coverage  and industry knowledge in all ena \u0001 , s markets particularly in the industrial  markets . it will also provide a closer partnership and accountability between  the coverage / origination groups and the ctg groups .  please help us in continuing to build on the success we have enjoyed in north  america by working with us to implement these changes .\",0\n\"Subject: valuation methodology  we ' ve had a request from aa to provide them with some sort of write - up or documentation from our research group on the valuation methodology used on the contingent issuance instrument for 18 million shares that was a part of the raptor transaction completed at the end of march . apparently , this request has come from aa ' s expert in this area ( i believe that his name is dechundra , or something like that . i ' ve probably destroyed the spelling on that . you guys are probably very familiar with him . ) anyway , is there such documentation that we can provide them easily ? if so , let me know so that we can try to get aa finished with their review of the transaction . in talking to our contacts at aa , i believe that their expert will be wanting to talk to you after he reviews the methodology documentation . thanks ,  ron\",0\n\"Subject: again , i should have also sent the following mail yesterday .  . . . i guess now i should also apologise for filling up your mail box !  have a good weekend ,  kirstee  - - - - - - - - - - - - - - - - - - - - - - forwarded by kirstee hewitt / lon / ect on 28 / 07 / 2000  20 : 22 - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron europe  from : kirstee hewitt 27 / 07 / 2000 18 : 10  to : cantekin dincerler / hou / ect @ ect  cc : grant masson / hou / ect @ ect  subject :  hi - i have run the model for the 26 th and have the following results :  i have also updated the correlations to include silver and the gold .  the tc delta ( treatment charges ) are positions only for copper conentrate and  do not  contain any positions due to zinc or lead .  could you take a look at the figues as this is the first time i have done a  full run and  would like to make sure that i have done things correctly .  i will definitely call to discuss the prices for gold and cocoa beans - the  tc price curve is  another issue however , at the moment we do not have anything other than a  spot price and  a 1 year price so i think we will probably have to set it as a constant .  i have to talk to andreas soon as he is awaiting my comments on point ( 2 ) of  his email that  i forwarded in my last mail .  also , you will can see that i have subtracted any positions that are from r  wolf in the mercur download -  this was point ( 1 ) of his note .  as a quick question ?  do you think it is worth including zinc concentrate ( 18400 dmt ) and lead  concentrate ( 920 dmt ) ?  i think we may need to check the tc price for these and the conversion for  the one given in the model for copper as  i think that the original historical price file ( tchistory ) is quoted in c / lb  - i guess this is cents / pound ? rather  than $ / dmt which is the units that position is quoted in .  speak to you soon  kirstee\",0\n\"Subject: registration materials for nfcf  to :  andres almazan  don chew  john freeman  geoge gau  vince kaminski  bob marchesi  john martin  vojislav maksimovic  laura starks  art warga  michael weisbach  dear friends  attached is some registration and logistical information relating to the  upcoming corporate finance conference on may 4 - 5 in houston . if you have  any questions , please don ' t hesitate to contact sheridan , bob or myself .  the program is shaping up nicely , however one of us may draft to serve in  some small , but helpful capacity .  sheridan titman , 512 . 232 . 2787 , titman @ mail . utexas . edu ,  bob parrino at parrino @ mail . utexas . edu  dave ikenberry , 713 . 348 . 5385 , daveike @ rice . edu  as of today , the list of firms sending a representative include :  pfizer  pacificare  cooper industries  radioshack  pepsi  delphi automotive  microsoft  whirlpool  enron  johnson controls  airgas  sara lee  dell  conoco  - particpate registation details . doc  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  prof . david ikenberry  jones graduate school of management  rice university  713 - 348 - 5385\",0\n\"Subject: ibuyit approvers  ah , these wonderful new systems ! i submitted an order on the \"\" new \"\" ibuyit  site and sent it for approval and it went to every manager in our group !  i called them and told them that only you were the approver and they do not  even have a user id set up for you . please fill out the below security document  and i will forward it on to them .  thanks !  shirley  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 16 / 2001 03 : 26 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : michael loft / enron @ enronxgate on 04 / 16 / 2001 03 : 18 pm  to : shirley crenshaw / hou / ect @ ect  cc :  subject : ibuyit approvers  hi shirley  in processing your ibuyit approval change request , i discovered that vince kaminski has not been set up with a user id in the eprocurement system . please have him fill out the attached security form and send it to - - sap security @ enron . com  i have already selected the approver role on the second page . we just need the personal information on page one filled out for security purposes . once this is done we can get vince assigned as the approver for cost center 107043 .  thanks ,  michael\",0\n\"Subject: latest  vince ,  i appologize for shipping another version of the paper so soon after the  last . however , my wife picked me up for some last minute shopping at noon  and i wasn ' t sure i would get back to this before leaving tomorrow . the  only changes in the two documents related to a sentence or two in the intro  plus the addition of \"\" unused information \"\" at the end of the document . the  unused stuff is made up of notes i made from hamel , some news stories ,  press releases , and random thoughts . we probably won ' t use any of this  stuff but i wanted you to have it just in case it might prove useful .  the challenge we face at this stage ( and where i can most use your help ) is  in documenting enron ' s risk management functions in a meaningful way . this  may be best done through examples or in some other way . i think that our  audience would appreciate our including some numerical and detailed  examples ( even if they are to be placed in boxes or sidebars that don ' t  interrupt the flow of the article . if you ' ll make a pass at what you feel  is appropriate i ' ll gladly polish on the words as i try to learn about what  you are doing myself .  vince , i really am enjoying this learning experience . you guys make a  wonderful \"\" lab \"\" .  sally and i are driving to louisiana to pick up her mom tomorrow and then  driving to new orleans and back to waco by saturday . however , i will check  in my e - mail regularly .  your friend ,  john  - enron transformation paperl 2 _ 19 _ 00 . doc  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: rdi conference - may 17 - 19 , 2000  hi ,  i ' d like to make a personal invitation to you to attend rdi ' s annual user  conference at torrey pines in la jolla , just north of san diego . we are  planning two sessions for gpcm users ( and prospective users ) which i think  you will find very interesting and useful . plus we are also going to  schedule individual sessions for those that would like them , as was quite  successful last year . the details are included in the attached word file  below . i ' ve also included the program in pdf format . the last page is a  signup form you can fill out and fax in to rdi if you haven ' t already done  so .  please let me and mike know how many are coming from your team . you can  reply to this e - mail to let us know .  looking forward to seeing you there .  i think it ' s going to be fun .  bob brooks  mike farina  - rdi _ conference _ gpcm _ breakout . doc  - rdi user conf . pdf\",0\n\"Subject: visit to enron  grant and vince ,  thanks for arranging my visit to enron . i was impressed by the nature and  scope of work in the group and the people i met . i look forward to hearing  from you later in the week .  a few peple asked me the method i used to value asian options . it is an  approximate method based on geometrical averaging with an adjusted exercise  price , as described by gordon gemmill in option pricing : an international  perspective , mcgraw - hill , london , 1993 , pages 242 - 248 .  regards ,  greg  get your private , free e - mail from msn hotmail at http : / / www . hotmail . com\",0\n\"Subject: re : chapter 3  gentlemen ,  thankyou for your fine effort . i ' ll e - mail thru thurs eve ( sydney time ) what  we have done to incorporate it into our material ( which wasn ' t toooo  painful ) to see if it is ok with you . a couple of quick questions though .  vince - your section had a number of footnote numbers , but no actual  footnotes - can you please resend them ?  grant - i agree it would be good to have the final figure . what happens if  you plot the historical data and the simulations on the same graph - but  with different axis ?  many thanks and best regards .  chris .\",0\n\"Subject: new invoice for energy and weather  vince ,  ?  please find attached a replacement invoice for invoice number 215 . ? this  invoice includes the correction in charges for the weather course , and for  only one attendee for the energy derivatives course .  ?  if you should have any questions , please contact me .  ?  sincerely ,  julie  - enron 283 _ 9 _ 04 _ 01 . doc\",0\n\"Subject: re : eprm 2001 houston  layla ,  a few points .  i shall be glad to attend the reception .  i am falling behind in getting my presentation ready . sorry for the delay .  i can commit to delivering the required number of copies on the day of my presentation  ( or a day before ) . i have done it on two occasions before ( power 2000 and power 1999 ) :  the copies were produced by our company copy center at no cost to you .  my associate , tanya tamarchenko , is helping me with one aspect of the presentation and  i would like her to deliver part of my speach . it ' s only fair to give her the credit when the  credit is due . is it ok to include her as an additional speaker ?  vince  \"\" layla o ' leary \"\" on 04 / 30 / 2001 09 : 04 : 52 am  please respond to  to :  cc :  subject : eprm 2001 houston  dear speaker ,  pre - congress cocktail reception - sunday 13 th may @ 5 : 30 pm in the juniper  room  we would be delighted to have you attend our pre - congress cocktail  reception . we will be extending this invitation to all our sponsors ,  exhibitors and eprm / risk waters group staff . we hope this will provide a  perfect opportunity for you to meet all our staff and clients before the  formal opening of eprm 2001 usa  + rsvp  i would also like to remind you that i need any missing presentations by  thursday 3 rd may . it is essential that i get these in as the delegates rely  on these to make notes and get very upset if they are not included in the  packs .  if you still haven ' t informed me of your av requirements , please do so as  quickly as possible . i also require a short biography .  i would like to point out that i will not be taking any presentations on  disk to the event . if you are using a laptop , your presentation should be  loaded onto the laptop that you bring with you . you must bring your own  laptop and disc , with connecting cables .  any questions , please do not hesitate to contact me .  kind regards  layla o ' leary  event co - ordinator  risk waters group  haymarket house  28 - 29 haymarket  london  swly 4 rx  tel : + 44 ( 0 ) 20 7484 9871  fax : + 44 ( 0 ) 20 7484 9800\",0\n\"Subject: re : copier on 32 nd floor  kevin ,  please let me know when your move date has been \"\" firmed up \"\" . can you let me  know the location that you want to install the new copier at { i will need to  check for the necessary power outlet } ? listed below are some of the latest  generation \"\" heavy duty \"\" copiers that enron has been installing as replacement  for older equipment such as the xerox 5388 etc . feel free to try them out for  the specific task that you have on a daily basis and let me know what you  think { we can discuss relevant speeds & associated $ costs after you have  tested these copiers } :  fyi : there are 2 other models from lanier : the 5355 and the 5365 . both of  these are the \"\" toshiba 70 series \"\" digital copier rebranded as \"\" lanier \"\" . if  the one of the toshiba 70 series listed above meets your criteria , the 5300  series from lanier is a better cost option between the two different brands .  if possible , would you be available to meet next week to discuss further ? i  would like to invite a member of the ena finance group to go over cost  allocations for the new copier , regardless of which copier selected .  thanks , iain . . . . . . . . . . . . . . . . . . . .  kevin g moore  03 / 08 / 2000 11 : 22 am  to : iain russell / epsc / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , mike a  roberts / hou / ect @ ect , vince j kaminski / hou / ect @ ect , liz m taylor / hou / ect @ ect  cc :  subject : copier on 32 nd floor  hello iain ,  well time is drawing near for another move  for us .  the problem is we do not have a heavy duty  copier for the floor .  we do need a copier .  please inform me as how we can work through  this , maybe we can split the cost with others on the floor .  the move is schedule sometime at the end of the month .  i will keep you informed . . . . . . . .  thanks  kevin moore\",0\n\"Subject: fw : garp ny - minutes of the credit derivatives meeting - december  13 , 2000  vince  i will make sure you get on this distribution list .  credit is going to be a big issue for energy companies and banks .  we may need to form additional discussion groups .  volatility in energy prices and a general economic slowdown may cause an  increase in defaults .  banks are primarily interested in regulatory impact on loan portfolio and  credit derivatives as a an alternative to raising capital or selling assets .  energy companies could use credit derivatives to hedge or price credit  exposure .  don mumma ( ex csfb , md axiom software ) is organizing a survey of energy credit  practices . you can reach don at 212 - 248 - 4188 ext 22 .  regards ,  philip merrill  garp regional director for new york  973 - 258 - 1540  - - - - - original message - - - - -  from : gerber , jeannette [ mailto : jeannette . gerber @ csfb . com ]  sent : thursday , december 21 , 2000 7 : 34 pm  to : ' garpnyl @ home . com ' ; alev a suer ; amit srivastav ; andrew ulmer ; cfa  john p . felletter ; claudia cappelli ; francis owusu ; gerber , jeannette ;  joe pimbley ; joseph c carrozzo jr ; lingja zhang ; marian trano - lepisto ;  markus buri ; maurizio mondello ; nawal roy ; sarnj . dhanda ; yicheng zhong ;  ' john . tierney @ db . com ' ; ' tom _ mansley @ westlb . com '  subject : garp ny - minutes of the credit derivatives meeting - december  13 , 2000  dear members of the credit derivatives group .  you ' ve probably been wondering if i would ever get the minutes of last weeks  meeting out . well , here they are and i sincerely apologize for the delay . i  always thought this time of year is supposed to be slow , but unfortunately ,  the opposite has been the case .  please pay particular attention to the action points . we can only handle  these meetings successfully if each and everyone of you actively  participates and plays a role ! the next meeting can only be scheduled if  there is enough feedback available .  wishing you happy holidays ,  regards ,  jeannette  credit | first  suisse | boston  crm credit exposure management ( new york )  > * : + 1 ( 212 ) 325 9361  fax : + 1 ( 212 ) 743 2562  minutes of the garp ny credit derivatives meeting - december 13 , 2000  the meeting was generously hosted by westlb  attendees :  matthew bianco  claudia cappelli  joe carrozzo  jeannette gerber  tom mansley  philip merrill  joe pimbley  marian trano - lepisto  ( due to some technical problems , not all attendees received the invitations  on time . )  summary  the aim of this first meeting was to decide on topics , people involvement  and the format of future meetings .  topics  the following topics were discussed for discussion in future meetings :  * new models and structures available  * practical work issues  * credit risk policy  * isda issues / documentation  * regulatory issues / bis capital  * hedging issues ( e . g . embedded options , rollover , funded vs unfunded ,  etc . )  * electronic trading issues  * general technology issues and information on new systems available  * pricing differentials  * pricing sources  * current models used for pricing , var  * credit event monitoring  * counterparty suitability  action : all members to check with credit derivatives colleagues within their  organization to go over the list and complete .  action : all members to pick topics they could lead through ( or they could  organize someone to lead through ) .  people involved  the involvement will depend on the topic . a member of the group will lead  through a meeting , or organize a credit derivative professional to lead  through the meeting , depending on the topic .  meeting format  we expect a series of evening workshops to take place about every 6 weeks .  in order to get active discussions going , all participants are expected to  inquire within their own institutions as to how the particular subject under  discussion is being treated in - house . we feel that the meetings will only be  successful if all participants are actively involved in the process .  we expect most members to be able to host the meeting once a year . please  let me know if and when you could host a meeting .  action : all members to check if and when they can host a meeting .  the date and venue for the next meeting will be announced in early january ,  depending on your feedback on the topics .  this message is for the named person ' s use only . it may contain  confidential , proprietary or legally privileged information . no  confidentiality or privilege is waived or lost by any mistransmission .  if you receive this message in error , please immediately delete it and all  copies of it from your system , destroy any hard copies of it and notify the  sender . you must not , directly or indirectly , use , disclose , distribute ,  print , or copy any part of this message if you are not the intended  recipient . credit suisse group and each of its subsidiaries each reserve  the right to monitor all e - mail communications through its networks . any  views expressed in this message are those of the individual sender , except  where the message states otherwise and the sender is authorised to state  them to be the views of any such entity .  unless otherwise stated , any pricing information given in this message is  indicative only , is subject to change and does not constitute an offer to  deal at any price quoted .  any reference to the terms of executed transactions should be treated as  preliminary only and subject to our formal written confirmation .\",0\n\"Subject: benzene forward curve & hedge calculator  new market we are trying to develop in benzene swaps - possibly hedging with  financial naphtha and physical toluene .  rgds ,  anjam  - - - - - - - - - - - - - - - - - - - - - - forwarded by anjam ahmad / lon / ect on 14 / 03 / 2000 10 : 35  - - - - - - - - - - - - - - - - - - - - - - - - - - -  anjam ahmad  14 / 03 / 2000 10 : 34  to : robert brewis / lon / ect @ ect , stuart bland / lon / ect @ ect  cc : dale surbey / lon / ect @ ect , hrvoje paver / lon / ect @ ect , stinson  gibner / hou / ect @ ect , tracy wallace / lon / ect @ ect  subject : benzene forward curve & hedge calculator  dear all ,  attached is the spreadsheet \"\" benzenecurves . xls \"\" ( also available in  s : \\ research \\ globalproducts ) that will hopefully allow you to derive a  mid - curve for benzene based upon our existing naphtha curve produced by  tracy . the previous hedge ratio analysis is still part of the new  spreadsheet .  for clarity a graph of the curve based on 1996 through 2000 data is depicted  below :  i can also provide confidence bands on the regression model , if this can  assist in deciding the bid - offer spread for the forward curve , but this is  slightly more involved - let me know you ' d like this .  regards ,  anjam  x 35383  attachment :\",0\n\"Subject: position report for dual trigger product  vince ,  i have enclosed a summary of our proposed approach on calculation of notional and the greeks for dual trigger option portfolio . please let us know your thoughts / comments .  amitava\",0\n\"Subject: membership in the nsf  vince :  karen marshall from community relations called and said that you are the  one that needs to call the nsf and register yourself and enron with the  foundation . they will give you a password and you can pass it on to youyi .  the number below is the one that you call .  thanks !  shirley  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 09 / 14 / 2000  03 : 11 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  youyi feng @ enron  09 / 07 / 2000 02 : 09 pm  to : shirley crenshaw / hou / ect @ ect  cc :  subject : re : your mail  dear shirley ,  i appreciate you for forwarding this info further .  best regards ,  youyi  - - - - - - - - - - - - - - - - - - - - - - forwarded by youyi feng / na / enron on 09 / 07 / 2000 02 : 04  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  to : youyi . feng @ enron . com  cc :  subject : re : your mail  dear youyi :  the person in charge of external grants in your company needs to contact  nsf by calling the following numbers for institution registration .  fastlane user support : 1 - 800 - 673 - 6188 .  fastlane availability ( recording ) : 1 - 800 - 437 - 7408 .  after enron is registered ( i think it ' s a free registration ) , you provide  the following information to the enron official so he / she will send it to nsf .  nsf will assign you a password for future access to electronic submission  ( called fastlane ) . since all proposals have to be submitted through  fastlane after oct . 1 , 2000 , this is the must .  name  highest degree  year conferred  present institution  department  street address  city  state  zip code  social security number ( ssn )  email address  business phone number  business fax number  for more information , you may go to  www . fastlane . nsf . gov / fastlane . htm  baichun  at 05 : 14 pm 9 / 6 / 00 - 0500 , you wrote :  >  > dear baichun ,  >  > i am having no idea about contacting nsf while the  > managing director of this research group has kindly agreed  > on doing anything he can to help us pursue fund rising .  > please let me know how enron can put my profile into nsf ' s  > database officially .  >  > the first four pages of the project application have been revised by  > me . i do not  > really know if you like the revision . appended is the primary  > and description of the project document files .  >  > best regards ,  >  >  > youyi  >  > ( see attached file : project summary . doc ) ( see attached file : project  > description . doc )  > attachment converted : \"\" c : \\ bcx \\ res \\ eudora \\ attach \\ project summary . doc \"\"  >  > attachment converted : \"\" c : \\ bcx \\ res \\ eudora \\ attach \\ project description . doc \"\"  >\",0\n\"Subject: re : spring 2001 conference participation by jeffrey k . skilling  rick ,  i asked greg whalley and he declined ( he has a speaking  engagement in london a day before ) .  i have sent an invitation to louise kitchen and she has not  replied yet . i shall catch her at the management conference in san antonio  and  ask for a commitment . it would help if you could mention this to her as well .  vince  richard causey @ enron  11 / 14 / 2000 09 : 30 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : spring 2001 conference participation by jeffrey k . skilling  where do we stand on this ? is someone else going to do it ?  - - - - - - - - - - - - - - - - - - - - - - forwarded by richard causey / corp / enron on 11 / 14 / 2000  09 : 24 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" ehud i . ronn \"\" on 10 / 24 / 2000 04 : 29 : 05 pm  to : richard . causey @ enron . com  cc :  subject : re : spring 2001 conference participation by jeffrey k . skilling  at 12 : 10 pm 10 / 13 / 00 - 0500 , you wrote :  > in checking with jeff ' s assistant this morning , we hope to get clarity on  > the schedule later today or monday ( at the latest , hopefully ! ) .  to paraphrase daneil webster ' s famous quote , \"\" how stands our conference ? \"\"  best ,  ehud  ehud i . ronn  professor of finance and jack s . josey professor in energy studies  director , center for energy finance education and research  mccombs school of business  university of texas at austin  austin , tx . 78712 - 1179  voice : ( 512 ) 471 - 5853  fax : ( 512 ) 471 - 5073  internet : eronn @ mail . utexas . edu \",0\n\"Subject: re : tanya ' s vacation  shirley ,  i will be on vacation starting tomorrow 12 / 20 / 00 until 12 / 28 / 00 . i will be in  the office on 12 / 29 / 00  tanya\",0\n\"Subject: discount rates and risk capital  dear vince :  i spent a little bit longer putting together my initial thoughts on  determining discount rates than i originally anticipated . it is somewhat  surprising , but there really isn ' t much academic work that i am aware of  that addresses these issues .  very briefly ,  1 . i think we need to come up with a way to define the concept of risk  capital simultaneously with the appropriate discount rate .  2 . i think it is important to model enron ' s opportunity cost of capital and  how that changes over time . the liquidity of a project will affect its  value in a very significant way when the opportunity cost of capital  changes over time . there is also likely to be a relation between duration  and discount rates that depends on the factors generating enron ' s  opportunity cost of capital .  3 . i have vague ideas about possible simulations that may help us quantify  some of the issues that i have raised .  please take a look at the attached document . you might find this somewhat  confusing , so i will give you a call later in the week to discuss this .  please let me know when you will be free . i look forward to hearing from you .  regards ,  sheridan  - determining discount rates for risky projects . doc  sheridan titman  department of finance  college of business administration  university of texas  austin , texas 78712 - 1179  512 - 232 - 2787 ( phone )  512 - 471 - 5073 ( fax )  titman @ mail . utexas . edu\",0\n\"Subject: re : thanksgiving staff meeting  hi clayton ,  i went to vince and asked him about you attending the staff  meeting and he said it was okay .  see you there !  kevin g moore  11 / 28 / 2000 10 : 30 am  to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , pinnamaneni  krishnarao / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , mike a  roberts / hou / ect @ ect , joseph hrgovcic / hou / ect @ ect , tanya  tamarchenko / hou / ect @ ect , zimin lu / hou / ect @ ect , martin lin / hou / ect @ ect ,  maureen raymond / hou / ect @ ect , osman sezgen / hou / ees @ ees , paulo  issler / hou / ect @ ect , amitava dhar / corp / enron @ enron , alex  huang / corp / enron @ enron , kevin kindall / corp / enron @ enron , kevin g  moore / hou / ect @ ect , clayton vernon / corp / enron @ enron , william  smith / corp / enron @ enron , jose marquez / corp / enron @ enron , chonawee  supatgiat / corp / enron @ enron , shalesh ganjoo / hou / ect @ ect , tom  halliburton / corp / enron @ enron , elena chilkina / corp / enron @ enron , sevil  yaman / corp / enron @ enron , sofya tamarchenko / na / enron @ enron , bob  lee / na / enron @ enron , gwyn koepke / na / enron @ enron , hector campos / hou / ect @ ect ,  anita dupont / na / enron @ enron , youyi feng / na / enron @ enron , v charles  weldon / hou / ect @ ect , yana kristal / corp / enron @ enron , praveen  mellacheruvu / hou / ees @ ees , li sun / na / enron @ enron , stephen  bennett / na / enron @ enron , roman zadorozhny / hou / ees @ ees , lance  cunningham / na / enron @ enron , leann walton / na / enron @ enron , shane  green / hou / ees @ ees , shirley crenshaw / hou / ect @ ect  cc :  subject : re : thanksgiving staff meeting  hello everyone ,  thursday is just two days away .  the staff meeting begins at the regular time , 11 : 30 a . m .  we will have a hot traditional thanksgiving lunch  with all the trimmings .  everyone please be present . . . . . . .  thanks  see you in the meeting  kevin moore  kevin g moore  11 / 21 / 2000 06 : 09 am  to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , pinnamaneni  krishnarao / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , mike a  roberts / hou / ect @ ect , joseph hrgovcic / hou / ect @ ect , tanya  tamarchenko / hou / ect @ ect , zimin lu / hou / ect @ ect , martin lin / hou / ect @ ect ,  maureen raymond / hou / ect @ ect , osman sezgen / hou / ees @ ees , paulo  issler / hou / ect @ ect , amitava dhar / corp / enron @ enron , alex  huang / corp / enron @ enron , kevin kindall / corp / enron @ enron , kevin g  moore / hou / ect @ ect , clayton vernon / corp / enron @ enron , william  smith / corp / enron @ enron , jose marquez / corp / enron @ enron , chonawee  supatgiat / corp / enron @ enron , shalesh ganjoo / hou / ect @ ect , tom  halliburton / corp / enron @ enron , elena chilkina / corp / enron @ enron , sevil  yaman / corp / enron @ enron , sofya tamarchenko / na / enron @ enron , bob  lee / na / enron @ enron , gwyn koepke / na / enron @ enron , hector campos / hou / ect @ ect ,  anita dupont / na / enron @ enron , youyi feng / na / enron @ enron , v charles  weldon / hou / ect @ ect , yana kristal / corp / enron @ enron , praveen  mellacheruvu / hou / ees @ ees , li sun / na / enron @ enron , stephen  bennett / na / enron @ enron , roman zadorozhny / hou / ees @ ees , lance  cunningham / na / enron @ enron , leann walton / na / enron @ enron , shane  green / hou / ees @ ees , shirley crenshaw / hou / ect @ ect  cc :  subject : re : thanksgiving staff meeting  we are approaching the holidays ,  remember , to be very careful during this time .  i look forward to seeing everyone at the staff meeting on thursday 11 / 30 / 00 .  to enjoy yet another meal of thanksgiving with co - workers .  enjoy the holiday !  see you when you return . . . . . . . . . . . . . . . . . . . . . .  thanks  kevin moore  kevin g moore  11 / 01 / 2000 02 : 33 pm  to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , pinnamaneni  krishnarao / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , mike a  roberts / hou / ect @ ect , joseph hrgovcic / hou / ect @ ect , tanya  tamarchenko / hou / ect @ ect , zimin lu / hou / ect @ ect , martin lin / hou / ect @ ect ,  maureen raymond / hou / ect @ ect , osman sezgen / hou / ees @ ees , paulo  issler / hou / ect @ ect , amitava dhar / corp / enron @ enron , alex  huang / corp / enron @ enron , kevin kindall / corp / enron @ enron , kevin g  moore / hou / ect @ ect , clayton vernon / corp / enron @ enron , william  smith / corp / enron @ enron , jose marquez / corp / enron @ enron , chonawee  supatgiat / corp / enron @ enron , shalesh ganjoo / hou / ect @ ect , tom  halliburton / corp / enron @ enron , elena chilkina / corp / enron @ enron , sevil  yaman / corp / enron @ enron , sofya tamarchenko / na / enron @ enron , bob  lee / na / enron @ enron , gwyn koepke / na / enron @ enron , hector campos / hou / ect @ ect ,  anita dupont / na / enron @ enron , youyi feng / na / enron @ enron , v charles  weldon / hou / ect @ ect , yana kristal / corp / enron @ enron , praveen  mellacheruvu / hou / ees @ ees , li sun / na / enron @ enron , stephen  bennett / na / enron @ enron , roman zadorozhny / hou / ees @ ees , lance  cunningham / na / enron @ enron , leann walton / na / enron @ enron , shane  green / hou / ees @ ees  cc :  subject : thanksgiving staff meeting  dear research group ,  as you are aware thanksgiving is thursday , nov . 23 rd  and is a holiday .  we as enron employee ' s will be off both the 23 rd and 24 th .  thanksgiving is a day appointed for giving thanks for divine goodness .  after returning to work we will keep the tradition of giving thanks  right here in the work place by celebrating thanksgiving in the  thursday ' s staff meeting 11 - 30 - 00 .  we will celebrate a act of giving thanks to one another as  co - workers and member of the same research group .  please look forward to hearing more regarding the staff meeting 11 - 30 - 00  thanks  kevin moore\",0\n\"Subject: re : seeking intelligent insight  please . my only risk is potnetial embarrassment .  thanks ,  mark  vince j kaminski  08 / 22 / 2000 02 : 47 pm  to : mark lay / hou / ect @ ect  cc :  subject : re : seeking intelligent insight  mark ,  i fully agree with you regarding general trends . i see great progress in  software  applications that facilitate the process and make it almost painless to the  end - user .  with you permission , i can show the material you sent me to my son , who  studies  computer science , and ask him for his view .  vince\",0\n\"Subject: ok -  ok vince - i will stay up tonight and call vuthy in london with this news .  i ' ll be right back to you ( probably tomarrow - or send you an email tonight ) .  thanks vince ,  jeff  jeff ,  my associates are leaving for london tonight ( monday ) .  they can still interview howard on tuesday afternoon .  vince  * get free , secure online email at http : / / www . ziplip . com / *\",0\n\"Subject: re : hotel for the wharton trip  hi vince -  jeff wanted me to let you know that he will not be able to go w / you on dec .  6 th to wharton . a meeting has come up that he must attend . sorry for the  short notice . thanks !  jennifer  vince j kaminski  11 / 20 / 2000 04 : 34 pm  to : jennifer burns / hou / ect @ ect  cc : jeffrey a shankman / hou / ect @ ect , vince j kaminski / hou / ect @ ect ,  piazzet @ wharton . upenn . edu  subject : hotel for the wharton trip  jennifer ,  this is the address of the hotel within a walking distance to the wharton  school .  please , make the reservation for jeff shankman at this hotel for the december  the 6 th meeting .  vince kaminski  http : / / www . innatpenn . com / contact . html  the inn at penn  sansom common , 3600 sansom street  philadelphia , pa . 19104  phone : 1 - 800 - 809 - 7001  fax : 215 - 222 - 4600  please , mention that the stay is related to the university business  when making the reservation .  tom piazze at wharton can confirm it .  tom piazze  phone : ( 215 ) 898 1615  piazzet @ wharton . upenn . edu\",0\n\"Subject: re : christmas basket list  here is the completed list for the year 2000  total $ 1470 . 00  thanks  kevin moore  kevin g moore  12 / 05 / 2000 10 : 56 am  to : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , mike a  roberts / hou / ect @ ect , jose marquez / corp / enron @ enron , stinson  gibner / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , anita dupont / na / enron @ enron  cc :  subject : re : christmas basket list  here is the updated list that we have for christmas .  the orders will be placed on dec . 12 th .  the orders will arrive at the enron building dec . 19 th . and all outside orders  will arrive before dec . 22 nd .  please inform , if this is okay .  thanks  kevin  moore  i will discuss cost with vince after meeting with bill on friday .  kevin g moore  12 / 01 / 2000 09 : 26 am  to : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , mike a  roberts / hou / ect @ ect , jose marquez / corp / enron @ enron , stinson  gibner / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , anita dupont / na / enron @ enron  cc :  subject : christmas basket list  hello everyone ,  we are nearing the time to get the baskets and other christmas tokens sent  out .  as in every year , we do take the time to send tokens of appreciation  for services rendered , or share the christmas sprit with those we feel  worthty .  here is the list that i have already , approved by vince .  if there are any additions please inform me a . s . a . p .  the deadline is december 12 th , as i will be meeting with the  owner of floral events to confirm the order and treat him to  lunch for all the great work he has provided for me .  thanks  kevin moore  please note : i will be out on vacation and all orders will already have been  placed  with the delivery date on december 19 th . the day of my return ,  therefore if any problems occur i will have enough time to solve them .\",0\n\"Subject: re : recommendation of an outstanding baylor mba student for summer  internship  at 10 : 17 am 3 / 31 / 2001 - 0600 , vince . j . kaminski @ enron . com wrote :  jim ,  i shall contact althea and make sure rusty meets with the research group  members .  vince  vince , i am quite grateful . thanks for arranging this .  by the way , is there any chance that i might be able to attract you to campus  this spring before school lets out ? ? if not , let ' s definitely plan on  scheduling a time during the coming fall 2001 semester when you can visit  campus and present a lecture to my risk management students .  sincerely ,  jim garven  james r . garven , ph . d .  professor of finance & insurance  department of finance , insurance and real estate  hankamer school of business  hsb 336  baylor university  box 98004  waco , tx ? 76798  voice : ( 254 ) 710 - 6207  fax : ( 320 ) 213 - 5580  e - mail : james _ garven @ baylor . edu  home page : http : / / garven . baylor . edu  vita : http : / / garven . baylor . edu / dossier . html  research paper archive : http : / / garven . baylor . edu / research . html \",0\n\"Subject: re : many  hello helyette ,  i am in california this week , vacationing with my family . it is a spring  break week at stanford and we shall spend a few days in calistoga , north of  napa valley , a place famous for mineral water and geysers .  i shall talk to karla when i come back to houston about the speeding up the  process on our side . our lawyers typically sit on a contract for a few weeks  unless we put a lot of pressure on them . american lawyers tend to be very  meticulous : this is why the city of los angeles alone has more lawyers than  entire japan . i think about two sites for your software : houston and europe  ( most likely london ) .  i shall be honored to chair a session during the bachelier world congress at  college de france . please , let me know which session you have in mind for me .  the repeat the francfort presentation in paris on october 4 & 5 is fine with  me . i think the frankfurt presentation went quite well and it will be nice to  work wih you and alex again .  regards  vince  p . s . i shall keep my office cell phone on all the time , in case you need to  call me : 713 410 5396\",0\n\"Subject: mid - year 2000 performance feedback  note : you will receive this message each time you are selected as a reviewer .  you have been selected to participate in the mid - year 2000 performance  management process by providing meaningful feedback on specific employee ( s )  that have been identified for you . your feedback plays an important role in  the performance management process , and your participation is very critical  to the success of enron ' s performance management goals .  please provide feedback on the employee ( s ) listed below by accessing the  performance management system ( pep ) and completing an online feedback form as  described in the \"\" performance management quick reference guide \"\" . you may  begin your feedback input immediately . please have all feedback forms  completed by the date noted below .  if you have any questions regarding pep or your responsibility in the  process , please call the pep help desk at the following numbers :  in the u . s . : 1 - 713 - 853 - 4777 , option 4  in europe : 44 - 207 - 783 - 4040 , option 4  in canada : 1 - 403 - 974 - 6724 ( canada employees only )  or e - mail your questions to : perfmgmt @ enron . com  thank you for your participation in this important process .  the following list of employees is a cumulative list of all feedback  requests , by operating company , that have an \"\" open \"\" feedback status . an  employee ' s name will no longer appear once you have completed the feedback  form and select the \"\" submit \"\" button in pep .  review group : enron  feedback due date : jun 16 , 2000  employee name supervisor name date selected  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  ahmad , anjam dale surbey may 22 , 2000  carson , margaret m james d steffes may 26 , 2000  carson , richard l richard b buy may 22 , 2000  crenshaw , shirley j wincenty j . kaminski may 24 , 2000  ghosh , soma timothy davies may 31 , 2000  kaminski , wincenty j . john j lavorato jun 05 , 2000  thuraisingham , ravi vasant shanbhogue may 30 , 2000  vernon , clayton j vasant shanbhogue may 26 , 2000  yuan , ding richard l carson jun 02 , 2000  zipter , rudi c theodore r murphy may 25 , 2000\",0\n\"Subject: re : spring 2001 conference participation by jeffrey k . skilling  sherri ,  any resolution of the scheduling conflict jeff skilling had for february the  22 nd ?  our friends at ut are ready to make the reservations and send out invitations  to this conference  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 12 / 2000  05 : 00 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" ehud i . ronn \"\" on 10 / 12 / 2000 10 : 12 : 56 am  to : richard . causey @ enron . com , vince . j . kaminski @ enron . com  cc :  subject : re : spring 2001 conference participation by jeffrey k . skilling  rick / vince :  good morning .  further to my discussions with vince during his visit to the energy finance  program yesterday , i write at this time to inquire whether mr . skilling ' s  assistant has been able to confirm his participation as 2 / 22 / 2001 keynote  speaker at our conference .  with thanks for your intercession on our behalf ,  ehud ronn  ehud i . ronn  professor of finance and jack s . josey professor in energy studies  director , center for energy finance education and research  mccombs school of business  university of texas at austin  austin , tx . 78712 - 1179  voice : ( 512 ) 471 - 5853  fax : ( 512 ) 471 - 5073  internet : eronn @ mail . utexas . edu \",0\n\"Subject: telephone interview with the research group  good morning mr . catanese :  your resume was forwarded to the research group and they would like  to conduct a telephone interview with you at your convenience . we would  prefer the week of july 5 - 7 ( monday and tuesday , the 3 rd and 4 th are  holidays ) , if at all possible .  please let me know your availability and where you may be reached by  phone and i will coordinate the calendars .  the interviewers would be :  vince kaminski managing director  stinson gibner vice president  p . v . krishnarao director  osman sezgen manager  i look forward to hearing from you .  sincerely ,  shirley crenshaw  administrative coordinate  enron corp . research group  713 / 853 - 5290  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 06 / 29 / 2000  08 : 47 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  06 / 28 / 2000 05 : 19 pm  to : shirley crenshaw / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : mike catanese ' s resume  shirley ,  please , arrange a phone interview .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 06 / 28 / 2000  05 : 23 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  shirley crenshaw  06 / 12 / 2000 07 : 28 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : mike catanese ' s resume  vince :  this is from ronnie chahal - does he fit anywhere ?  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 06 / 12 / 2000  07 : 22 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  laura r arnold @ ees  06 / 09 / 2000 04 : 40 pm  to : shirley crenshaw / hou / ect @ ect  cc :  subject : mike catanese ' s resume  shirley ,  ronnie chahal suggested i forward this resume to you so that you could  forward it to the appropriate person within research . please let me know if  you need any additional information .  thanks ,  laura arnold  x 39540  - - - - - - - - - - - - - - - - - - - - - - forwarded by laura r arnold / hou / ees on 06 / 09 / 2000  04 : 37 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  junel 789 @ aol . com on 05 / 08 / 2000 12 : 00 : 30 am  to : larnold @ enron . com  cc :  subject : mike catanese ' s resume  i am a ph . d . physicist and have worked for the last five years in  post - doctoral researcher positions in astrophysics . a few months ago , i  realized that i had reached the limit of my academic career options , at least  for the near future . after reading about careers in the private sector and  discussing possibilities with some family members and friends , it became  apparent that my technical and mathematical skills could be transferred to  the private sector , with better long - term career options and a more dynamic  workplace environment than in academic research . the energy industry is  particularly attractive as it begins to deregulate . i have been directed to  enron by several different people as a very forward - thinking and growing  company and one which values its employees .  because of my statistical and mathematical skills , i am interested in a  position as a quantitative analyst . however , if there are other areas where  the people at enron think i could contribute , i am open to other options . my  other experience , such as project management , is outlined in my resume . i  have worked in a collaboration of 30 astrophysicists from the us , ireland ,  and england and i am a capable independent worker as well . i have excellent  written and oral communication skills and have made presentations to  audiences ranging from technical experts to school - aged children .  thank you again for your time and effort in passing this resume on . i look  forward to talking with you .  sincerely ,  mike catanese  - mike ' s short resume . doc\",0\n\"Subject: re : credit . com cv ' s  shirley ,  how are we doing on bringibg these people to houston for an interview ?  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 05 / 11 / 2000  08 : 20 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  bryan seyfried  05 / 10 / 2000 04 : 51 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : credit . com cv ' s  vince thanks for helping out . . . . . we really need more dedicated assistance .  zak is probably more pure research and his son phil would possibly be on the  desk . . . . . let ' s discuss after you have met them . .  vince j kaminski  05 / 08 / 2000 10 : 46 pm  to : rosalinda resendez / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , bryan  seyfried / lon / ect @ ect  subject : re : credit . com cv ' s  rosie ,  we are making arrangements to bring them to houston for an  interview .  vince  rosalinda resendez  05 / 08 / 2000 11 : 10 am  to : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect  cc :  subject : credit . com cv ' s  vince ,  i ' ve been asked to forward these resumes to you .  rosie  - - - - - - - - - - - - - - - - - - - - - - forwarded by rosalinda resendez / hou / ect on 05 / 08 / 2000  11 : 06 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  louise  bratby  05 / 08 / 2000 10 : 11 am  to : rosalinda resendez / hou / ect @ ect  cc :  subject : credit . com cv ' s  rosalinda  i work with melanie doyle in london hr . i have two candidates who i ' m trying  to arrange ( for bryan seyfried ) to come in and see vince kaminski however i ' m  finding it difficult to co - ordinate from this end . would it be possible for  you to forward these cv ' s on to vince ' s assistant as i ' m not sure who the  correct person is .  thanks for your help and if you need more details my number is 44 20 7783  6945 .  regards  louise\",0\n\"Subject: re : time keeping  hi brad :  i am it for our group ! however , it might be a good idea to train sam smith  also .  please let us know .  thanks !  shirley  3 - 5290  from : brad mcsherry on 03 / 20 / 2000 05 : 38 pm  to : lydia cannon / hou / ect @ ect , rosalinda resendez / hou / ect @ ect , donna  baker / hou / ect @ ect , shirley crenshaw / hou / ect @ ect  cc :  subject : time keeping  lydia / rosie / donna / shirley ,  we are looking to implement sap hr by 7 / 1 / 00 . there is a time keeping module  in the program . please send me a list of the time keepers for your groups .  do not forget to send your own name if you keep time . time keepers will be  contacted in the near future for training on the new system .  thank you for your help ,  brad\",0\n\"Subject: why johan dahl and the mri energy staffing group ?  vince ,  it was a pleasure talking with you earlier today . please read the documents i  have attached with this email . let ' s talk in the near future to continue our  conversation . i am very confident that my team and i can be successful  regarding any staffing need you have . ? i will give sheila in hr a call and  see if we can work out a contract . please visit our web site for up - to - date  information at http : / / www . mrportland . com  thank you for your time and have a nice day .  sincerely ,  johan dahl  director energy staffing group  phone : 1 - 503 - 287 - 8701 ext . 1153  email : jdahl @ mrportland . com  - jcd - client broch - energy # 2 . doc  - charter of ethical practice . doc\",0\n\"Subject: fasbl 33 presentation  hello all :  paige grumulaitis will give an fasbl 33 training session on tuesday , march  7 , 2000 from 1 : 30 - 5 : 30 pm in eb 46 cl .  please mark your calendars .  thanks !  shirley\",0\n\"Subject: new consultants added to enron tiger  enron tiger team :  we are pleased to tell you that professors howard kunreuther and paul  kleindorfer , opim dept , university of penn , will be consultants for the  enron tiger project 2001 . please feel free to contact them with any  questions or concerns : kunreuth @ wharton . upenn . edu and  kleindorfer @ wharton . upenn . edu  sincerely ,  donna piazze  program director  field application project  the wharton school  univ . of pennsylvania  ( 215 ) 573 - 8394  ( 215 ) 573 - 5727 fax  fap @ management . wharton . upenn . edu  piazze @ wharton . upenn . edu\",0\n\"Subject: re : sddp  vince  many thanks for you help with this - look forward to receiving the info on  sddp .  kind regards ,  john\",0\n\"Subject: re : thank you  vince ,  you were a most gracious guest , and we were honored to have you in our home .  i am happy that you are tony ' s friend , and it was a great pleasure for me to  get to know you also .  and again , thank you very much for the lovely bouquet of roses .  elisabeth .\",0\n\"Subject: confirmation of your order  this is an automatic confirmation of the order you have placed using it  central .  request number : ecth - 4 r 3 sv 4  order for : kate lucas  1 x ( standard desktop $ 1262 ) enron it purchasing\",0\n\"Subject: sevil yamin  anne ,  vasant sent this information to norma . i shall fwd his message to you .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 10 / 2001  03 : 02 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  stinson gibner  04 / 10 / 2001 02 : 57 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : sevil yamin  vince ,  do you want me to do this , or vasant ?  - - stinson  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 04 / 10 / 2001  02 : 57 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : anne labbe / enron @ enronxgate on 04 / 06 / 2001 09 : 57 am  to : stinson gibner / hou / ect @ ect  cc :  subject : sevil yamin  stinson ,  i am the new hr generalist for the research group because norma villarreal is  moving to business analysis and reporting . earlier this week , norma and i  met with vince , and he said that he was going to talk to you about writing up  a list of sevil ' s projects / accomplishments for last year and this year , so  that we can give her a project bonus since she did not receive a bonus during  the normal prc time . at your earliest convenience , will you please email me  this list so that i can get started putting together all of the paperwork so  that she can receive a check on april 16 th .  if you have any questions , please feel free to contact me at 5 - 7809 . i look  forward to meeting you , and the rest of the group next week at vince ' s staff  meeting .  thanks ,  anne labbe '\",0\n\"Subject: eol guest account access  attention : esai  ed krapels  thank you for your interest in enrononline .  the following is a guest password that will allow you temporary view only  access to enrononline . please note , the user id and password are case  sensitive .  guest user id : ena 61296  guest password : welcome !  in order to apply for transaction status with enrononline , your company needs  to complete a password application and registration form for a master user  account . each master user will be able to grant various levels of access for  additional users .  to obtain a password application and registration form , you can visit our  website at www . enrononline . com and select the \u0001 & how to register \u0001 8 link , or call  our helpdesk at 713 / 853 - help ( 4357 ) . alternatively , you may click on the  attached documents , complete the forms , and fax to 713 - 646 - 8511 .  just a reminder , in order to access enrononline , shockwave needs to be  installed . the shockwave installer can be found within \"\" about enrononline \"\"  on the home page . after opening \"\" about enrononline \"\" , using right scroll bar ,  go to the bottom . click on \"\" download shockwave \"\" and follow the directions .  after loading shockwave , shut down and reopen browser ( i . e . microsoft  internet explorer / netscape ) .  we hope you will find that enrononline provides an easy and more efficient  way to do business with enron . we look forward to transacting with you online .  sincerely ,  danny lee  enrononline helpdesk  713 / 853 - help ( 4357 )\",0\n\"Subject: var for cob 28 th july 2000  hi all ,  i have run the var model for the positions at close fo business 28 th of july .  the model is attached below .  as a summary the results are as follows :  and as a comparison the previous days figures were :  this shows some increase in var for aluminium , copper and lead . the prices  for gold and cocoa beans have not been updated  as we still do not have a live feed to bloomberg / reuters . i will be working  on this with cantekin and andreas should also be able to  provide some more historical data .  also , after having a discussion with andreas here in london we should  probably reduce the vol we are using for tc - we are taking the cu price  vol as a proxy which is a too high . however , assuming the the other  assumptions we have made around the tc ( ie simulating a parallel shift in  the curve and  including no term structure to the price curve ) the vol estimate is a  conservative one .  cheers  kirstee\",0\n\"Subject: re : video conference  jeff ,  we have video facilities both in houston and london .  we shall invite howard to visit our office in london again .  vince  \"\" $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ \"\" on 02 / 06 / 2001 01 : 44 : 27 pm  please respond to \"\" $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ \"\"  to : vince . j . kaminski @ enron . com  cc :  subject : video conference  hi vince ,  the following ( below ) is what london rw wrote back - is it true enron can do  it inhouse between houston and london ? . . . if so , i will get alec to have  howard available for you upon arrive back from his holiday for the video  conference .  let me know if this is what you want and ment . mri has video conferencing  but , not in uk . . . so i can ' t provide the service , either .  i don ' t want to let you down .  thanks ,  jeff  jeff , not available at rw - will be done between enron london and  houston .  alec  * get free , secure online email at http : / / www . ziplip . com / *\",0\n\"Subject: re : message 1  quentin ,  thanks for your message . we are always looking for new employees  with the right skills .  please , send me your resume and i shall determine what is the best  way to arrange an interview . we can interview you in sydney and then  bring you to houston for another round of interviews .  vince  \"\" qkerr \"\" on 07 / 30 / 2000 07 : 20 : 28 pm  to : \"\" vincent kaminski \"\"  cc :  subject : message 1  dear dr . kaminski  this is quentin kerr from australia , i just came back from the sydney ' s  conference . glen dixon has told me that you are interested in my work . it is  always my honor to work with you . i am currently a phd student at the  mathsmatics department of the university of queensland ( aiming to finish my  thesis at the end of this year ) . my research interest is financial  mathematics , in particular , energy market modeling and derivatives pricing .  now i send you copies of my first paper ( submitted to the applied  mathematical finance ) and my talk ( the full version of the academic paper  will be available in 2 weeks ) . any comment will be appreciated .  ps : attached with the talk at the conference .  best regard  quentin  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  quentin kerr , email : qkerr @ maths . uq . edu . au  room : 67 - 622 tel : ( 07 ) 33461428  department of mathematics , the university of queensland  - conl . ppt\",0\n\"Subject: re : possible summer internship with enron  vince and datren :  i have scheduled a telephone interview with ainsley this afternoon ( thursday )  at 2 : 00 pm . her telephone no . is 281 - 852 - 9116 .  you can use conference room ebl 938 .  thanks !  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 05 / 25 / 2000  07 : 45 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" ainsley gaddis \"\" on 05 / 24 / 2000 04 : 09 : 07 pm  to :  cc :  subject : re : possible summer internship with enron  hi ms . crenshaw !  the best time for the interview would be tomorrow , thursday , around 2 : 00 .  you can reach me at 281 - 852 - 9116 . talk to you then !  sincerely ,  ainsley gaddis\",0\n\"Subject: australian energy risk 2000  as australian energy risk 2000 is approaching . i am emailing you with  regards to your presentation . the deadline date is monday 12 june . if this  is going to be a problem please let me know i will be out of the office from  monday 12 , until monday 19 june , on which date i will be putting the  presentation pack together to send to the printers . if your presentation is  complete could you please email it to ldeathridge @ risk . co . uk as a  powerpoint file asap .  if you have any problems in doing this please do not hesitate to contact me  by email or on ( 020 ) 7484 9867 . i will reply to any queries when i return .  regards  lucie deathridge  conference co - ordinator  risk publications  ?  tel : ( + 44 ) ( 020 ) 7484 9867  http : / / www . riskpublications . com\",0\n\"Subject: zingales seminar  enron seminar series in financejones graduate school of management , rice universityluigi zingalesuniversity of chicagowill give a seminar at the jones school on friday , april 27 , \"\" the great reversals : the politics of financial development in the 20 th century . \"\" the seminar will begin at 3 : 30 in room 105 . a pdf of the paper is available through the seminar website : http : / / www . ruf . rice . edu / ~ jgsfss / .  fu - kuo albert wangassistant professorjones graduate school of management - - ms 531 rice university 6100 main street houston , tx 77005 phone : 713 - 348 - 5404 fax : 713 - 348 - 5251 email : wangfa @ rice . eduhttp : / / www . ruf . rice . edu / ~ wangfa /\",0\n\"Subject: dba administrator  cecil ,  i ' ve spoken with charlene just now and she sounds very helpful .  can you give her a call tomorrow morning to iron out exactly how  you want to access the enpower data base ? i ' ve left your name  with her so she ' s expecting your call .  best ,  alex  - - - - - - - - - - - - - - - - - - - - - - forwarded by alex huang / corp / enron on 05 / 01 / 2001 05 : 31 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski @ ect  05 / 01 / 2001 05 : 13 pm  to : michelle d cisneros / hou / ect @ ect  cc : alex huang / corp / enron @ enron , vince j kaminski / hou / ect @ ect  subject : dba administrator  michelle ,  the name of the db administrator for enpower is charlene fricker ,  5 - 3487 . alex will contact her regarding the access to the curve .  i think it ' s a problem many layers below gary hickerson ' s level  of responsibility and i hope we can handle it without using his valuable  time .  vince\",0\n\"Subject: proposal  - kevin kindall\",0\n\"Subject: re : wayne tow ' s resume  we are supposed to get back to the headhunter .  you can send her an e - mail ( please see the first message at the bottom of the  page  for the address ) .  vince  greg nikkel @ enron  02 / 02 / 2000 11 : 39 am  to : kathy kokas / corp / enron @ enron  cc : melissa becker / corp / enron @ enron , john gillespie / corp / enron @ enron , vince j  kaminski / hou / ect @ ect  subject : re : wayne tow ' s resume  i will set - up a phone interview with him to assess his qualifications and  interest in the hr application support lead position .  vince , how was it left with the headhunter on how to contact him ?  greg  from : kathy kokas 02 / 02 / 2000 09 : 16 am  to : melissa becker / corp / enron @ enron  cc : greg nikkel / corp / enron @ enron , john gillespie / corp / enron @ enron , vince j  kaminski / hou / ect @ ect  subject : re : wayne tow ' s resume  since i only talk to a very few headhunters that we ' ve already done business  with and who have provided good people , i ' ll say \"\" no , i have no current  needs \"\" which is what i tell every headhunter that calls ( at least one a day ) .  kk  melissa becker  02 / 01 / 2000 02 : 01 pm  to : kathy kokas / corp / enron @ enron , greg nikkel / corp / enron @ enron , john  gillespie / corp / enron @ enron  cc : vince j kaminski / hou / ect @ ect  subject : wayne tow ' s resume  kathy / greg / john - do we need the skills described in the attached resume on  the project team or in the permanent support group or in the esupply group ?  there are no personal recommendations associated this resume .  vince - thanks for keeping us in mind !  - - - - - - - - - - - - - - - - - - - - - - forwarded by melissa becker / corp / enron on 02 / 01 / 2000  01 : 58 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski @ ect  01 / 31 / 2000 09 : 04 am  to : melissa becker / corp / enron @ enron  cc :  subject : wayne tow ' s resume  melissa ,  please , take a look at this resume . any interest ?  i got it from a headhunter ( i don ' t know her ,  it was a cold call on her part and she did not make a good impression ) .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 31 / 2000  09 : 01 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  leewells @ swbell . net on 01 / 25 / 2000 05 : 34 : 57 pm  please respond to leewells @ swbell . net  to : vince j kaminski / hou / ect @ ect  cc :  subject : wayne tow ' s resume  hi there mr . kaminski ! it was a pleasure to speak with you today . i look  forward to lunch one day soon at brennans .  wayne tow is a brilliant man , he worked for many years for a man i know  well . this man says , wayne is as good as it get , and he could do  anything that is assigned to him , and do it at a level in which he was  always amazed .  he loves the e - commerce area , and this is what he wants to do  thank you , vince .  lee wells  - wayne 2 . doc\",0\n\"Subject: re : follow - up interview on 8 / 21 / 00  dear vince ,  thank you very much for updating me on the status of my job application . ? i  got another good news last week . ? i am happy to inform you i passed the 2000  cfa level i examination . the pass rate for level i examination this year is  52 % . i look forward to hearing from you .  sincerely ,  rabi de  ?  ?  ? vince . j . kaminski @ enron . com wrote :  rabi ,  thanks for your message .  everybody who interviewed you was greatly impressed with your technical  skills and professional attitude .  we shall extend an offer to you within a day or two .  vince  rabi deon 08 / 22 / 2000 02 : 57 : 37 pm  to : vince kaminsky  cc :  subject : follow - up interview on 8 / 21 / 00  dear dr . kaminsky :  thank you very much for arranging the follow - up interview with your  internal clients . i visited mr . ted murphy and his staff at rac and mr .  dennis benevides at ees yesterday . i was impressed with level of risk  technology employed by enron to achieve its business objectives . i want to  reiterate my strong interest in joining your group , which is held in very  high esteem both inside and outside of enron . ? i look forward to h ! earing  from you .  sincerely ,  rabi s . de  do you yahoo ! ?  yahoo ! mail - free email you can access from anywhere !  do you yahoo ! ?  yahoo ! mail - free email you can access from anywhere !\",0\n\"Subject: pre - ranking  below is your spreadsheet . this one has your direct reports on  it . . . . . . . . . . . the other spreadsheet i sent to your vp / directors didn ' t show  this .  fyi  thx\",0\n\"Subject: jedi shares  vince ,  attached is a description of the deal involving jedi shares . the structure  is a two - year forward followed by another two years of restriction . the  pricing is consistent with our previous approach . i have given a copy to  stinson as well . as ryan would like a reply in the am hours , i would like to  let him know by 11 am . please take a look and let me know what your thoughts  are , time permitting . otherwise , i shall check with stinson and proceed .  thanks .  rakesh  - - - - - - - - - - - - - - - - - - - - - - forwarded by rakesh bharati / na / enron on 04 / 06 / 2001  09 : 34 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : ryan siurek on 04 / 06 / 2001 08 : 17 am  to : rakesh bharati / na / enron @ enron  cc : george mckean / na / enron @ enron , gordon mckillop / na / enron @ enron , ron  baker / enron @ enronxgate  subject :  rakesh ,  can you please take a look at this write up that i put together last night .  i would like to get your comments this morning if possible . i am trying to  see if we can use this as a discussion tool with some investment banks to get  their comments as to the reasonableness of the restriction calculated .  also , thanks for your assistance with andersen yesterday . they should be  directing all of their questions / comments to me so i can intermediate with  you and the rest of the research group . please let me know if they start  calling you with questions or want to set up any meetings .  regards ,  ryan\",0\n\"Subject: home page - new - risk solutions ( http : / / www . marshweb . com / home / ho  mepg . nsf / alldo  >  dear vincent ,  hope all is well across the atlantic . you may have seen this already but  thought i would pass it on just in case . also socgen just pulled off a  weather deal for a japanease company looking to protect against wind damage  on their flower crop .  weather is definatly picking up on this side too with more interest every  day .  hope all is well ,  damian goodburn  office - 44 20 7847 1829  mobile - 07971 825 309  - home page - new - risk solutions . htm\",0\n\"Subject: meeting follow - up  dear vince ,  i enjoyed very much meeting you at the eprm conference .  as agreed , i am attaching both my resume and the paper on my dissertation work , which i will be presenting at the real options conference in ucla next month . i would be delighted to have your comments and impressions on it .  if it is of interest to you , i would also be very enthusiastic about exploring together different powerful ways of applying these concepts at enron .  early congratulations on your son ' s graduation ; let me know if you come to the bay area soon .  best regards ,  maria ines de miranda  phd . candidate  management science and engineering  stanford university  - resume maria i . de miranda . doc  - rool - demiranda . pdf\",0\n\"Subject: re : calpx prices  jason ,  i think what you may be asking for are caliso power prices . the calpx is a  scheduling coordinator and they submit balanced schedules and bid curves to  the caliso . the iso combines the curves from participating scs ( of which i  believe enron is one ) and calculates the uncongested and congested prices .  the caliso prices are available from rdi powerdat , the enron lim database , and  a number of other sources . recent historical prices are available from the  caliso web site .  i am copying your mail to tim hiezenrader , who runs the westdesk fundamentals  group . i believe he would know how you might be able to access the more  real - time caliso data that enron collects .  tim , can you help jason out ? he is a manager in the ena research group .  thanks ,  michael  > > > sokolov , jason 01 / 26 / 01 02 : 01 pm > > >  michael ,  i an trying to locate some historical real - time ( spot ) power prices for calpx .  do you know who may have them ?  jason sokolov\",0\n\"Subject: thanks  paige ,  thanks a lot for your presentation . it was an eye - opener in many cases .  i shall schedule a meeting with you next week to discuss how we can help you  in this project . i have some ideas i would like to run by you .  vince  p . s . shirley , please see if monday is ok for 30 mins ?\",0\n\"Subject: 6 / 30 aga forecast at 66  mike ,  my number for next week is 66 ( from seasonal holt - winter model , shw ) .  i am also fitting aga to an arimax model . as discussed , i need weighted  temperature  data for east , west and production areas . i would appreciate if you could  provide that data .  after that , i could add forward price curve as explainatory variables .  since aga is a market mover , it is important to have an accurate model .  zimin  to : zimin lu / hou / ect @ ect  cc :  subject : re : revised aga forecast for 6 / 23 is 65  came in at 73  what do have for next week ?\",0\n\"Subject: re : mscf speaker series  pierre - philippe ste - marie  thanks . kevin kindall and , possibly , kristin gandy from enron will come with  me .  vince  \"\" pierre - philippe ste - marie \"\" on 11 / 01 / 2000 09 : 37 : 13 pm  to :  cc : \"\" rick bryant \"\"  subject : re : mscf speaker series  dear mr . kaminski ,  thank you very much for changing your plane ticket , it was unhoped for .  everyhting is now ready for your arrival . we will be at 10 . 30 am on friday at  your hotel . if you have not received your schedule yet here is the outline :  10 . 30 on board for school  11 . 00 - 11 . 30 presentation set up . brief brush up with students .  11 . 30 - 14 . 00 presentation and lunch with students  14 . 00 - 14 . 30 meeting with professor chester spatt  15 . 00 - 15 . 30 meeting with coc officer  15 . 30 - 16 . 00 brief tour of the school . ( the four department that sponsor the  mscf program )  16 . 00 back at the hotel to relax .  18 . 30 the group will come at your hotel to go to the restaurant .  here is the roster for the evening .  - kent garrett : one of the top seed of this year ' s class , versed in  mathematic and computer science . will guide and drive you through the day .  - ignacio delgado : another top student , master from yale . versed in finance ,  economics and computer science .  - punit rawal : seasonned professional , worked in the financial industry for  many years prior to joining the program .  - hisamitsu tanaka : another seasonned professional , worked in a major  japanese bank for many years as a fx option trader / risk manager .  - teresa holden : bright computer scientist , worked in an it group for many  years prior to joining the program .  - frank quian : brilliant programmer , phd in microbiology form columbia .  - rick bryant : director of the mscf program  - pierre - philippe ste - marie : president of the speaker series ( that would be  me ! )  if there is anything else i can do , please tell me .  pierre - philippe ste - marie  http : / / pstemarie . homestead . com\",0\n\"Subject: re : greetings  van ,  it ' s nice to hear from you . i am sure that you can always come back  to enron if you don ' t like living in new york .  i used to work for salomon and chances are you will be working in the same  building in lower manhattan where i spent 7 years of my life .  i hope you have a great holiday season .  vicne  van ngo on 11 / 29 / 2000 10 : 52 : 35 pm  to : vince . j . kaminski @ enron . com  cc :  subject : greetings  dear vince :  i just wanted to get in touch with you , as my last fall semester here  draws to a close and this is something of a transition point for me . to  update you on my job search , i have been extended an offer for a position  within enron ' s analyst program . the offer was very attractive and i had  numerous things to consider in reaching my decision . unfortunately , i  will be declining enron ' s offer of employment to take a position in the  investment banking division of salomon smith barney in new york . my  preference at this point is to live outside of houston , and although my  hope is also to return to houston in future , new york offers some  exciting options for me now . i will be starting there in july of this  summer . i hope that i will have future opportunities to be an advocate  of enron and look forward to keeping in touch with you and the research  group .  please give my regards to everyone at the office and wishes for a very  happy holiday season ! also please feel free to contact me at any time .  i can give you my future contact information when i have it .  thank you and i hope i ' ll see you again .  sincerely ,  van  p . s . feel free to forward my news onto mike roberts if that would  appropriate . i didn ' t have his email with me .\",0\n\"Subject: benchmarking study  sally ,  i gave you some time ago a brochure on this benchmarking study request .  they renewed their request for enron ' s participation .  what is your view on this ? do you think the benefits of knowing what ' s  going on offset the loss due information released and time spent on the  project .  my recommendation is to forget it .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 03 / 2001  03 : 28 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" theresa sanders \"\" on 12 / 27 / 2000 01 : 32 : 18 pm  to :  cc :  subject : benchmarking study  dear vince ,  peter nance and i wanted to follow - up our discussion of enron ' s participation  in our benchmarking study . have you discussed enron ' s participation in the  project with your colleagues ?  here is a small sample set of metrics that were taken from a comprehensive  list of over 700 metrics . the study group will decide which metrics to use .  with eei ' s credibility and teknecon ' s technical expertise , we intend to  become the industry standard in benchmarking . we would very much like to  have enron participate in the study .  i would be happy to set up another meeting with you and your colleagues with  peter nance if you think that would be helpful .  best regards ,  theresa sanders  director of business development  alliance of energy suppliers  edison electric institute  tel : 202 - 508 - 5183  - eei metrics - short list . xls  - ebrochure . doc  - riskbenc . ppt\",0\n\"Subject: calculating bid - ask prices  this is about enron movie trading business where we are a market maker for trading future of a movie ' s gross box office receipt . rich sent to many people a writing explaining his movie trading idea and asked us to provide some feedback .  i think the idea ( see below ) might be applicable to other parts of enron . we can call it \"\" dynamic bid - ask price process \"\" .  in fact , we can set that the bidding period is closed when no new bid is submitted to the system within a specified amount of time . the final ( clearing ) bid and ask prices are just the last \"\" tentative \"\" price shown to the public before the bidding period ends . ( so the customers can see the final price before the market close and can revise their bids if they wish . )  i think this method is suitable for illiquid products to be traded via enrononline . com .  - chonawee  - - - - - - - - - - - - - - - - - - - - - - forwarded by chonawee supatgiat / corp / enron on 04 / 24 / 2001 07 : 48 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  chonawee supatgiat  04 / 24 / 2001 07 : 40 pm  to : richard dimichele / enron communications @ enron communications  cc : chonawee supatgiat / corp / enron @ enron , cynthia harkness / enron communications @ enron communications , greg wolfe / hou / ect @ ect , james ginty / enron communications @ enron communications , jim fallon / enron communications @ enron communications , kelly kimberly / enron communications @ enron communications , kevin howard / enron communications @ enron communications , key kasravi / enron communications @ enron communications , kristin albrecht / enron communications @ enron communications , kristina mordaunt / enron communications @ enron communications , martin lin / contractor / enron communications @ enron communications , paul racicot / enron communications @ enron communications , zachary mccarroll / enron communications @ enron communications , martin lin / contractor / enron communications @ enron communications  subject : calculating bid - ask prices  i think we should let the price float with the market instead of trying to forecast it . otherwise , if our forecast is not consistence with the market , we may have an imbalance in the bid - ask orders and we may end up taking some positions . you know , as russ and martin pointed out , we cannot fight with the studio and exhibitors because they have inside information and can game the price easily .  one way to ensure the balance of the bid - ask orders is to embed an exchange system inside our bid - ask prices front end . each week , we have a trading period . during the period , instead of posting bid - ask prices , we post \"\" tentative \"\" bid - ask prices , then we ask our customers to submit their acceptable buying or selling price . these \"\" tentative \"\" bid - ask prices get updated and are shown to the public . of course , customers can revise / withdraw their bids anytime during the trading period . at the end of the period , we calculate and post the final bid and ask prices . the seller who submits lower selling price than our final bid price gets paid at the bid price . the buyer who submits higher buying price than our final ask price pays at the ask price . next week , we repeat the same process .  this way , we can manage our positions easily and we can also behave like a broker where we don ' t take any position at all . we make profit from those bid - ask spread . we don ' t have to worry about forecasting accuracy and insiders ' trading because we don ' t have to take any position . let the market be the one who decides the price .  if we maintain our net position as zero , at the end , when all the actual gross box office numbers are reported in those publications , our customers with open long / short positions are perfectly matched . using the mark - to - market charge can reduce credit risk .  thanks ,  - chonawee  - - - - - - - - - - - - - - - - - - - - - - forwarded by chonawee supatgiat / corp / enron on 04 / 24 / 2001 07 : 24 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  chonawee supatgiat  04 / 20 / 2001 04 : 31 pm  to : richard dimichele / enron communications @ enron communications , key kasravi / enron communications @ enron communications  cc : martin lin / contractor / enron communications @ enron communications  subject : some more input  hi rich and key ,  again i think your idea is very good . i think that we , as a market maker , can reduce our credit risk ( risk of default ) if we do the \"\" mark - to - market \"\" charging . that is , each week when we release a new expected value of the gross box office receipt , we balance all the opening positions the same way as in a regular future market . this way , we can give margin calls to the couterparties who are expected to owe us a lots of money .  in the last paragraph , i think the gross box office can also be determined from the market itself ( i . e . , if there are lots of buyers , our offer price should go up . )  we can offer other derivative products such as options as well .  - chonawee\",0\n\"Subject: re : volatility conference  todd ,  thanks for the invitation to speak on the panel . it was a real pleasure  to join you and other leading professionals in the energy area in the  discussion  on the state of the electricity markets in the us .  i want to wish you a very happy and successful new year .  vince kaminski  \"\" strauss , todd \"\" on 12 / 20 / 99 03 : 41 : 27 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : volatility conference  vince - -  thanks for participating in the infocast volatility conference in houston 10  days ago . your penetrating analysis of the current state of electricity  markets , and what the trends may be , was a very useful contribution to the  conference .  happy holidays , and wishing you a healthy and prosperous new year / century  / millenium .  todd strauss  principal  phb hagler bailly , inc . _ _ _ _ _ _ _  management and economic consultants  1776 eye street , n . w .  washington , dc 20006 - 3700  ( 202 ) 828 - 3964  ( 202 ) 296 - 3858 ( facsimile )  this electronic message transmission , including any attachments , is intended  only for the use of the individual or entity to which it is addressed and  may contain information that is privileged , confidential and exempt from  disclosure under applicable law . if you are not the intended recipient or  the employee or agent responsible for delivering this transmission to the  intended recipient , you are hereby notified that any review , copying ,  dissemination , distribution or the taking of any action in reliance on the  contents of this transmission is strictly prohibited . if you have received  this transmission in error please notify me by telephone or by electronic  mail immediately - - thank you .\",0\n\"Subject: houston research opportunity  dear vince i would like to make  the suggestion that we make this opportunity a one - year assignment working  with tanya , and then re - evaluate the situation at the end of the year in  terms a new role for me in houston thereafter , subject to mutual agreement .  the alternative situation of resigning from enron europe and re - joining enron  corp is too dramatic and requires me to \"\" burn bridges \"\" and my return to enron  europe would be difficult . also , i would lose the valuable support  structures available to me in london . the amount of any fixed costs  ( flights , modest cargo , a few months of mortgage carrying cost ) are entirely  reasonable , not excessive given my single status and not so great that they  justify making the contract a three year ( local ) one .  i would expect that on the basis of almost 3 1 / 2 years solid experience &  value - added at enron europe , the value of several million pounds i have  identified & justified to external auditors for enron europe this year and an  \"\" excellent \"\" rating ( my fourth making my 3 1 / 2 yr average rating also  \"\" excellent \"\" ) , i could reasonably be expected to justify a fair deal ( i . e . my  existing enron europe salary & benefits package plus a reasonable one - off  allowance to cover unavoidable additional personal expenses ) .  regards & thanks again for the opportunity ,  anjam  x 35383\",0\n\"Subject: ethink about it : july 31 , 2000  vince  this correspondence is sent to you in response to the below question  pertaining to the type of research that should be introduced to enron .  on tuesday , april 4 th , 2000 , a local newspaper in my area , \"\" the bakersfield  california \"\" ran an article pertaining to the 50 million dollars of funding  from the u . s . congress set aside to study deep sea floor extraction of  methane hydrate . this study will focus on methane hydrates as an energy  source and the technologies needed for safe , efficient development .  according to this article , the ice - like deposits of frozen methane have an  energy potential equal to more than twice that of all other fossil fuels  combined .  i can fax you a copy of this newspaper article if you would like to read it .  send me you fax number or call me at enron wind corp . 661 - 823 - 6433 .  also when i was in engineering student back in 1985 , i did an independent  senior level study on a proposed method which possibly could be used to  extract hydrate from the sea floor . if you are interested , i could e - mail you  a copy of my thesis explaining this proposed method .  carl colditz  test engineer  enron wind corp .  13681 chantico road  tehachapi , ca 93561  661 - 823 - 6433  661 - 823 - 6804 ( fax )  carl . colditz @ enron . com  - - - - - - - - - - - - - - - - - - - - - - forwarded by carl colditz / ewc / enron on 07 / 31 / 2000  11 : 48 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  the ethink team  from : ethink on 07 / 28 / 2000 05 : 58 pm cdt  sent by : enron announcements  to : all enron worldwide  cc :  subject : ethink about it : july 31 , 2000  here \u0001 , s what you \u0001 , ve been missing on ethink :  for the answers , consult the archives for the referenced espeak session .  \"\" ene ' s market capitalization is currently around $ 50 b . what do you expect  the market cap to be in five years ? what needs to happen to get there ? \"\"  - thomas myers  ken lay , office of the chairman , 7 / 14 / 00  \"\" given appropriate latitude and funding , what is the one kind of research  that you would like to introduce to enron - - and what kind of talent would  you need ? \"\"  - yannis tzamouranis  vince kaminski , enron research , 7 / 12 / 00  do you still believe that nothing can travel faster than light ? a recent  experiment conducted in princeton , nj has proved this wrong .  reliant says it will file a plan with the texas puc to break into two  publicly traded companies .  want to learn more ? get the rest of these stories at the enron edge .\",0\n\"Subject: total return swap  hi , vince ,  please see attached the updated total return swap deals .  all the best !  li\",0\n\"Subject: organizational changes  changes in enron ' s business require us to reevaluate how we approach the  engineering and construction function within enron . specifically , enron  energy services ' ( ees ) business has grown dramatically and that requires  considerable additional engineering and construction resources both to  develop solutions for customers and to deliver those solutions to customers .  additionally , in light of enron ' s continued emphasis on increasing our return  on invested capital , we have been engaged in fewer large scale construction  projects around the world . historically , these projects have been a primary  focus of eecc ' s activities . consequently we are making the following  organizational changes concerning eecc :  eecc ' s pipeline construction group , led by jerry martin , will become part of  enron transportation services .  nepco will continue to operate as a stand alone entity focused on power plant  construction services to enron entities and third parties .  the remainder of eecc will become part of ees . larry izzo will report to the  ees office of the chairman .  these changes will better align our intellectual capital with the growth  opportunities within enron and provide new and exciting opportunities for our  employees . please join us in supporting and implementing these changes .\",0\n\"Subject: re : info about enron ' s bandwidth market  dear dr . kaminski ,  thank you for the follow up . i will keep you posted  when i hear from ebs .  jun  at 05 : 41 pm 10 / 25 / 00 - 0500 , you wrote :  > martin ,  >  > can you , please , call shu and provide him with information about ebs ?  >  > vince  >  > - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 25 / 2000  > 05 : 46 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  >  >  > jun shu on 10 / 23 / 2000 07 : 27 : 49 pm  >  > to : vkamins @ enron . com  > cc :  > subject : info about enron ' s bandwidth market  >  >  > dear dr . kaminski ,  >  > i enjoyed your talk this afternoon at ieor very much .  > i wonder if you could point me to some information  > resource on enron ' s bandwidth market .  >  > i am a ph . d student at ieor . i work with professor  > oren and professor varaiya from eecs department on  > the topic of pricing the internet . in particular , i am designing  > pricing mechanism in the framework of the diffserv  > architecture which is the latest proposal made by  > ietf to provide scalable service differentiation .  > i would very much like to get in touch with people  > in enron working on the similar topics .  >  > thank you very much .  >  > jun shu  > http : / / www . ieor . berkeley . edu / ~ jshu  >  >  >  >\",0\n\"Subject: london visit  i understand that you will be in london around 20 september . tom lewthwaite  has  asked me to arrange a meeting between you , tom and julian leake . i understand  that you have met tom and julian before . i would also like to attend - i am  a  manager in our uk financial services practice with responsibilty for enron  from  a uk financial services perspective . we would like to discuss any risk  management concerns that you may have and any internal initiatives with which  we  could assist .  if you are happy to meet , i would be grateful if you could let me know how you  to proceed ( whether i should arrange timings with you , your secretary , someone  in london etc ) . you can contact me on + 44 20 7783 7446 ( at enron ' s london  offices ) or on this e - mail address .  kind regards  paul day  * * * * * * * * * * * * * * * * * * * internet email confidentiality footer * * * * * * * * * * * * * * * * * * *  privileged / confidential information may be contained in this message . if you  are not the addressee indicated in this message ( or responsible for delivery  of  the message to such person ) , you may not copy or deliver this message to  anyone .  in such case , you should destroy this message and kindly notify the sender by  reply email . please advise immediately if you or your employer do not consent  to  internet email for messages of this kind . opinions , conclusions and other  information in this message that do not relate to the official business of my  firm shall be understood as neither given nor endorsed by it .\",0\n\"Subject: today ' s discussion  anjam , thanks for organising this - and vince thanks for making yourself  available for the discussion .  i am working for joe gold and my group is concerned with adding the web as an  additional sales and communication channel for our european business units .  through the web we are also able to convey a more local image , rather than  presenting ourselves as a texan company through enron . com .  to set you into perspective about what we have in mind i have attached a  brief presentation which has been the basis for the sign off of the project .  we intend to display a wide training section for the following reasons :  document our know - how base  educate the market participants  generate great stickiness ( participants should know that if they need to know  s . th . on energy risk mgt . they should go to enron )  later on : have the option to commercialise this area .  i look forward to our discussion .  kind regards  sven becker\",0\n\"Subject: hello from chicago  i wanted to pass this on to you as a group . richard is taking responsibility  to ensure we have the appropriate resources to support our transaction  business .  if you have questions or comments , or need further information regarding the  attached , please contact me @ ( 312 ) 357 - 8869 .  thanx !  laura  - - - - - - - - - - - - - - - - - - - - - - forwarded by laura luce / corp / enron on 01 / 14 / 2000 10 : 06  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  richard tomaski  01 / 13 / 2000 07 : 59 pm  to : ed mcmichael / hou / ect @ ect , deirdre mccaffrey / hou / ect @ ect , steve  jackson / hou / ect @ ect , berney c aucoin / hou / ect @ ect  cc : laura luce / corp / enron @ enron , barbara g dillard / corp / enron @ enron , gregg  penman / corp / enron @ enron , kevin p radous / corp / enron @ enron , russell e  murrell / corp / enron @ enron  subject : hello from chicago  hey guys , i just wanted to update everybody on what ' s going on up here in  chicago . we ' ve finally got our computers hooked up , so we are off and  running now . actually , we got quite of few projects going on up here ( yes ,  these are real projects ) and we are going to need the houston structuring  group for support . i don ' t know if you guys are still short - handed and what  kind of projects you may already have lined - up , but i wanted list out some of  the projects that we are currently working on .  gas  lrg project - deirde is currently working on this with russell  nss storage - sean boyle helped value both their current and new nss . we are  currently working on negotiating with people ' s for these , and i expect that  there may be additional requests in the future .  manlove summer withdraw program - yes this is not a typo . surprise ,  surprise . . . manlove can do a lot more than we thought . i ' ve talked to  deirdre about it and created a simple model , but i would like to better  analyze this with your help .  capital improvements - we ' ve got people ' s christmas list of capital projects  that we are going to help them analyze and seek if any of these make sense .  sendout model - we would like to help them better optimize their morning  sendout taking into account current market pricing and the enron supply deal .  pbr - we are not sure when or if people ' s will file a pbr , but i think that  there are a lot of things that we learned during our previous experience that  we can do to help them prepare for a competitive marketplace ( ie transport  customers tariff restructuring )  pesc - people ' s is looking for assistance in understanding load following and  helping them build models to optimize their retail gas effort  san juan pricing - evan has been working with the desk to provide indicative  pricing with regard to pec hedging out some of their san juan production  reserves  power  power project development - we have several power projects underway and the  ctg group ( billy lemmons ) is helping us create necessary models  pesc - the retail power stuff lives . i ' ve think that fallon has a new  attitude on these deals and enron has committed to help them figure out this  market .  power plant balancing model - we have in our portfolio and will be offering  balancing / storage services for chicago area power projects . we would like to  have a model or at least a better understanding to help us with this endeavor .  we have resources in chicago dedicated to these projects , as well as the  other stuff we ' re trying to do like negotiate contracts and set up the  chicago back office function . we plan on adding our own structuring  resources ( in chicago or houston ) , but we felt that we ought to start by  figuring out what support the houston office will be able to provide . i will  be in the office this monday ( jan 17 ) , so i hope to be able to catch up with  you and discuss some of these items then . feel free to contact me if you  need to before then at 312 . 357 . 8876 or pager 800 . 778 . 0291 . thanks  richard\",0\n\"Subject: re : mid year prc  soma ,  yes , no problem .  vince  soma ghosh  05 / 26 / 2000 08 : 43 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : mid year prc  vince ,  may i put you down as one of my reviewers for my final prc within rac ?  soma\",0\n\"Subject: ameriflash newsletter  note from mark frevert  with the wide and varied activities of our three organizations , we created  this e - mail newsletter to keep everyone better informed about our various  businesses . i hope you find it informative and more importantly , that you  will use this newsletter to help spread the word about the successes in your  group .  to provide content for future e - mails , contact michelle vitrella in our  public relations group via e - mail or call her at ext . 3 - 9767 . communication  is one of the core enron values and i believe this is a great way to improve  communication across our wholesale businesses .  additionally , i would like to again encourage everyone to take a few minutes  to complete \u0001 & the pulse \u0001 8 survey . this annual survey regarding the work  experience at enron and how we can make it better is an important part of the  two - way communication process at enron . please go to the enron intranet and  type survey . enron . com . it only takes a few minutes , it \u0001 , s confidential and  your comments will help make enron a better place to work .  business highlights  natural gas  middle marketing \u0001 , s biggest trade of the year so far occurred this month . the  significant transaction was a five year , multimillion dollar restructuring  with a subsidiary of formosa plastics , one of the world \u0001 , s largest producers  of polyvinyl chloride .  additionally , continental airlines , the fifth largest us carrier , has hedged  a considerable amount ( 1 . 2 million barrels / month ) of crude oil . winter  nymex hedges were put in place for the undisputed heavyweight chip champ of  the world , frito lay .  pulp & paper  with the acquisition of garden state paper and launch of clickpaper . com ,  enron is creating an efficient spot physical market for pulp and paper  commodities . buyers and sellers will benefit from improved price  transparency and reliability and access to enron \u0001 , s online financial markets .  improved price transparency and the ability to imbed financial derivatives  into physical trading flows will facilitate the growth of enron \u0001 , s trading  business . to date , clickpaper . com has traded over 1 millions tons of pulp  and paper product with a notional value of over $ 675 million .  upstream origination  upstream origination , headed by julie gomez and jean mrha , focuses on natural  gas products to optimize commercial value associated with the natural gas  grid on the continent and in the gulf of mexico ( gom ) . through products such  as storage , electric compression and producer services & outsourcing , ena  creates value for its customers and reconfigures the natural gas  infrastructure to be more efficient . in addition , upstream origination  transactions exploit the unique relationship between development of strategic  assets through sophisticated financing structures and the utilization of the  market information created by those assets .  \u0001 & the pulse \u0001 8 survey results  as of wednesday , october 18 , the total responses to \u0001 & the pulse \u0001 8 from  ena / egm / eim are 689 . this is approximately 30 % of all employees . since our  goal is a 100 % response rate , we have a long way to go ! please take a few  minutes to log on and give enron your thoughts . the pulse is located at  survey . enron . com on the enron intranet page .  if you like competition , here are the results by group :  commercial - origination 131  energy operations 126  risk management and trading 106  other / none of the above 91  bus . analysis & rep . / fin . ops . 90  legal 46  gas assets 37  human resources 30  tax 18  technology / it 14  welcome  transferred into ena / eim / egm  ena - kathleen neal / hr , suzanne kelly / infocentral , tobias monk / finance direct  eim - eric connor / industrial energy group  egm - eric calub / global product mgmt  new hires ena / eim / egm  ena - lance cunningham / cts research , anita dupont / cts research , yvette  hales / gas logistics \u0001 ) east , angela howell / equity trading , farid mithani / power  risk - credit  egm - heather purcell / enron global markets  in the news  \u0001 & no company illustrates the transformative power of innovation more  dramatically than enron . over the past decade enron \u0001 , s commitment to the  invention \u0001 * and later domination \u0001 * of new business categories has taken it from a  $ 200 million old - economy pipeline operator to a $ 40 billion new - economy  trading powerhouse . \u0001 8  from \u0001 & the world \u0001 , s most admired companies , \u0001 8 fortune , monday , october 2  nuggets & notes  \u0001 & what \u0001 , s the message we \u0001 , re trying to get across ? \u0001 8 \u0001 ) ray bowen , coo eim  \u0001 & i \u0001 , m not a micro - manager \u0001 8 - john lavorato , coo ena  \u0001 & make it so , number one \u0001 8 \u0001 ) jeff shankman , coo egm  contest  enron is \u0001 & the most innovative company \u0001 8 based on fortune magazine \u0001 , s most  admired survey . ena public relations is ready to put enron north america ,  industrial markets and global markets to the test . we need your creative  minds to help name the new electronic newsletter we now call ameriflash . put  on your thinking caps and submit your ideas for a new name to  michelle . vitrella @ enron . com . the ena public relations team will narrow the  list to the top ten and then send it to our official judge , mark frevert , to  make the final decision . the winner will receive a gift certificate to any  pappas restaurant . good luck !\",0\n\"Subject: re : bandwidth writing  y ' all ,  stinson forwarded a copy to me last week . part 1 . 1 was published in this  past monday ' s edition as is . i would suggest that unless you see some major  error , don ' t suggest changes to samer that would delay the publication of  part 2 , scheduled for this coming monday .  sam  shirley crenshaw @ ect  06 / 07 / 2000 10 : 14 am  to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , pinnamaneni  krishnarao / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , mike a  roberts / hou / ect @ ect , joseph hrgovcic / hou / ect @ ect , grant masson / hou / ect @ ect ,  tanya tamarchenko / hou / ect @ ect , zimin lu / hou / ect @ ect , vincent  tang / hou / ect @ ect , alexios kollaros / hou / ees @ ees , martin lin / hou / ect @ ect ,  maureen raymond / hou / ect @ ect , osman sezgen / hou / ees @ ees , paulo  issler / hou / ect @ ect , patricia tlapek / hou / ect @ ect , farouk lalji / hou / ect @ ect ,  amitava dhar / corp / enron @ enron , alex huang / corp / enron @ enron , ronnie  chahal / hou / ees @ ees , kevin kindall / corp / enron @ enron , kevin g  moore / hou / ect @ ect , clayton vernon / corp / enron @ enron , william  smith / corp / enron @ enron , leandro ibasco / corp / enron @ enron , yanna  crystal / corp / enron @ enron , jose marquez / corp / enron @ enron , samer  takriti / corp / enron @ enron , chonawee supatgiat / corp / enron @ enron , shalesh  ganjoo / hou / ect @ ect , tom halliburton / corp / enron @ enron , elena  chilkina / corp / enron @ enron , cantekin dincerler / hou / ect @ ect , brad  aimone / na / enron @ enron , datren williams / na / enron @ enron , eloise  meza / na / enron @ enron , sevil yaman / corp / enron @ enron , sofya  tamarchenko / na / enron @ enron , bob lee / na / enron @ enron , ainsley  gaddis / na / enron @ enron  cc :  subject : bandwidth writing  hello all :  samer takriti has requested that the attached document be forwarded to  you for your feedback . vince would like to put this in the research  newsletter .  if you feel changes need to be made , please feel free to do so .  thanks !  - fiber . pdf\",0\n\"Subject: re : reminder  thanks . i downloaded a lot of stuff from the hbs site including cases ,  etc . looking forward to working with you .  at 03 : 15 pm 7 / 31 / 00 - 0500 , you wrote :  >  >  > john ,  >  > my new e - mail address is vkamins @ enron . com .  >  > i am compiling the information for you . i should be able to send it in a few  > days .  >  > vince  >  >  >  >  >  > \"\" john d . martin \"\" on 07 / 28 / 2000 02 : 41 : 42 pm  >  > to : stinson gibner / hou / ect @ ect , vince j kaminski / hou / ect @ ect  > cc :  > subject : reminder  >  >  >  > stinson ( and vince - - don ' t think your e - mail address is correct )  >  > this is just a reminder about the \"\" care package \"\" of enron cases and  > materials that you guys were going to send to me .  >  > stinson , please convey this request on to vince because i think the e - mail  > address i have is an old one .  >  > thanks and have a great weekend .  >  > john  > john d . martin  > carr p . collins chair in finance  > finance department  > baylor university  > po box 98004  > waco , tx 76798  > 254 - 710 - 4473 ( office )  > 254 - 710 - 1092 ( fax )  > j _ martin @ baylor . edu  > web : http : / / hsb . baylor . edu / html / martinj / home . html  >  >  >  >  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: re : 2001 preliminary i / c billing  becky ,  the charges to corp . go to rac and are based on my projections of expected  expenses .  the charges are based on the following assumptions ( percentages in the  parenthesis show  amount of time allocated by each person ( group ) ) to rac :  1 . value - at - risk group ( var )  md ( 25 % )  vp ( 60 % )  director ( 100 % )  5 managers ( 100 % )  2 . enterprise wide risk management  manager ( 100 % )  associate ( 100 % )  currently we hired ( or will shortly hire ) 4 managers for the var group . the  expansion of the var  group was planned based on the requests from rac for more support .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 12 / 19 / 2000  01 : 52 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  shirley crenshaw  12 / 19 / 2000 11 : 30 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : 2001 preliminary i / c billing  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 12 / 19 / 2000  11 : 25 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  becky pham  12 / 19 / 2000 11 : 13 am  to : shirley crenshaw / hou / ect @ ect  cc :  subject : re : 2001 preliminary i / c billing  madam ,  i have a meeting with corp tomorrow in reference to the intercompany billing  to corp . they are concerned about research allocation . i need some back up  to this billing . can you help me ? can i get it by the end of the day to  have it reviewed and ready for tomorrow ? please let me know . . . . thanx  - - - - - - - - - - - - - - - - - - - - - - forwarded by becky pham / hou / ect on 12 / 19 / 2000 11 : 08 am  - - - - - - - - - - - - - - - - - - - - - - - - - - -  stephen schwarzbach @ enron  12 / 18 / 2000 08 : 55 am  to : becky pham / hou / ect @ ect  cc :  subject : re : 2001 preliminary i / c billing  becky ,  i am discussing these allocations with the appropriate groups within  corporate , as they will be the ones accepting / rejecting these charges . i am  forwarding this to the appropriate individuals within the corp . departments  for their review . so , do not consider corp as \"\" in agreement \"\" until you hear  back from me . i also reviewed what we are receiving in 2000 and i have a few  questions relating to both 2000 and 2001 :  1 . what is esource ?  2 . what is ena ops direct ?  3 . what is ena occ direct ?  4 . what is ena co 021 ? is this vince kaminsky ' s group ? the charges for 2000  have been about $ 16 k and $ 20 k to the rac group , so at that rate , i would  expect 2001 to be no more than $ 250 k - $ 300 k , but the plan amount you sent is  $ 1 . 9 mm . i will need some detail on this .  thanks ,  steve  becky pham @ ect  12 / 14 / 2000 05 : 15 pm  to : stephen schwarzbach / corp / enron @ enron , regina hawley / gpgfin / enron @ enron  cc :  subject : 2001 preliminary i / c billing  attached is the 2001 preliminary inter - company billing . ena will be billing  plan numbers for all departments except for external legal and external tax ,  which will be billed base on actual . a quarterly review will be done to  determine the variance between plan vs . actual amounts . if the variance  amount is material , we will adjust the billing to your business unit  accordingly .  if you have any questions , call me at 5 - 7094 . please review this billing ,  and notify me with any questions by wednesday , december 20 , 2000 ; otherwise ,  it is assumed that you agree to the intercompany billing from ena .  you are the only person in your business unit receiving this invoice . if  this invoice needs to go to someone else in your business unit , please  forward to the correct person and can i be included in the forward e - mail ?\",0\n\"Subject: re : cost sharing of subscription to poten ' s fuel oil report  we have an interest in sharing some of the cost of choice 2 and have zero  interest in choice 3 . pls advise in advance what you think this will amount  to .  thanks ,  d  guy dayvault @ enron  02 / 03 / 2000 03 : 15 pm  to : doug leach / hou / ect @ ect , david j botchlett / hou / ect @ ect , ron  irvine / lon / ect @ ect , niamh clarke / lon / ect @ ect , dale snyder / hou / ect @ ect  cc : margaret carson / corp / enron @ enron , vince j kaminski / hou / ect @ ect , david a  subject : cost sharing of subscription to poten ' s fuel oil report  all :  ideally we will split this cost evenly among as many p & l ' s as need the  report , minimizing everyone ' s cost by sharing a single subscription .  please tell me whether you can justify sharing the cost and if so , the rc  code & co # for me to allocate your cost share . please indicate your choice  of the three cost choices .  attached note below clarifies poten ' s proposal on the $ 10 , 000 / yr subscription .  essentially we have three choices :  1 . for $ 2700 / yr , the standard edition ( 11 issues , excluding the monthly  \"\" special feature \"\" article )  2 . for $ 3800 / yr the premium edition , ( standard edition plus the monthly  \"\" special feature \"\" article , as in three attached examples )  3 . for $ 10 , 000 / yr the premium edition plus quarterly forward price view for  36 months .  poten explains that 85 % of their subscribers take the premium service . no  one has ever asked for the $ 10 , 000 / yr long - term price forecast . i have an  interest in a longer term price forecast and hope that it may be useful to  others in the corporation .  the example copies attached include the following special feature articles :  99 feb - analysis of resid trades in the eastern mediterranean  99 sep - patterns of fuel oil trade in the western hemisphere  99 dec - analysis of the resid market in chile  one either takes all or none of them for the incremental $ 1100 / yr . some may  be useless , others perhaps quite valuable . your call .  regards  guy  \"\" axelrod , larry \"\" on 02 / 03 / 2000 02 : 43 : 59 pm  to : guy dayvault / corp / enron @ enron  cc : fuel share group  subject : enron / fuel oil service  dear guy ,  it was a pleasure speaking to you today .  as discussed , poten is pleased to offer enron the following two - part  fuel - oil related service :  ( 1 ) a one - year subscription to poten ' s fuel oil in world markets ( premium  edition ) , and  ( 2 ) a forecast of delivered crude prices and fuel oil prices in northwest  europe ( brent and 1 % s fob fuel oil ) , the mediterranean ( bonny light and 1 % s  fob fuel oil ) , and singapore ( dubai and hsfo - 380 cst ) . the forecasts would  be provided four times a year and provide average quarterly price  projections over the forward 36 - month period . the forecast prices would be  accompanied by brief textual commentary . the forecasts would be issued over  the course of the one - year fuel oil in world markets subscription period .  the fee for the two - part service is us $ 10 , 000 , payable in two equal  installments  i look forward to hearing from you .  best regards ,  larry  l . axelrod  phone 212 - 230 - 2038  fax 212 - 355 - 0295  doug leach @ ect  02 / 03 / 2000 01 : 52 pm  to : guy dayvault / corp / enron @ enron  cc :  subject : re : poten ' s fuel oil report  - - - - - - - - - - - - - - - - - - - - - - forwarded by doug leach / hou / ect on 02 / 03 / 2000 01 : 52 pm  - - - - - - - - - - - - - - - - - - - - - - - - - - -  dale  snyder  02 / 03 / 2000 01 : 44 pm  to : doug leach / hou / ect @ ect  cc : david j botchlett / hou / ect @ ect , ron irvine / lon / ect @ ect , niamh  clarke / lon / ect @ ect  subject : re : poten ' s fuel oil report  we have an interest in sharing in the expenses of this information the only  question being which information and at what cost . can see what the monthly  newsletter describes which is relatively cheap but what considerable  information does one get for the usd 10 k yr report ? how many ways will we  split the costs ? psl advise and thx  doug leach  02 / 03 / 2000 07 : 08 am  to : dale snyder / hou / ect @ ect  cc :  subject : poten ' s fuel oil report  i have no interest . do you ?  - - - - - - - - - - - - - - - - - - - - - - forwarded by doug leach / hou / ect on 02 / 03 / 2000 07 : 08 am  - - - - - - - - - - - - - - - - - - - - - - - - - - -  guy dayvault @ enron  02 / 02 / 2000 03 : 35 pm  to : niamh clarke / lon / ect @ ect , doug leach / hou / ect @ ect , margaret  carson / corp / enron @ enron  cc :  subject : poten ' s fuel oil report  niamh & doug & margaret :  i want to chat about this and will call you , but the essence is :  can you justify sharing the cost of subscribing to poten ' s monthly fuel oil  report ?  attached below are 3 example copies that include their standard 12 month  price forecasts . the cost is $ 3800 / yr .  as an added service for a total of $ 10 , 000 / yr , poten will include a quarterly  update of their 36 month forward view on crude oil and fo prices with a brief  justification for their view . this would include the standard monthly price  forecast for the prompt 12 months and quarterly prices for the following 24  months for far east , med and nwe . ( i expect a more descriptive email from  poten , but i think this is the essence of their \"\" custom \"\" offer . )  the example copies attached include the following special features :  99 feb - analysis of resid trades in the eastern mediterranean  99 sep - patterns of fuel oil trade in the western hemisphere  99 dec - analysis of the resid market in chile  these type of features are produced monthly and run a spectrum of subjects  related to fuel oil .  i have a hard time justifying the cost of the newsletter and the price  forecast without the considered recommendation of colleagues such as yourself  regarding the utility of such a report . the best way to show your  recommendation is with money . if it is not worth any money to anyone else in  ene , then i have to question its validity and utility to me as well . doug ,  would this perhaps be useful to any other business units that have exposure  to fo prices ?  best regards  guy  - - - - - - - - - - - - - - - - - - - - - - forwarded by guy dayvault / corp / enron on 02 / 02 / 2000  03 : 05 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" axelrod , larry \"\" on 01 / 24 / 2000 03 : 38 : 53 pm  to : guy dayvault / corp / enron @ enron  cc : fuel share group  subject : poten ' s fuel oil report  guy ,  it was a pleasure speaking to you today .  three samples of fuel oil in world markets are attached .  let me know if you think the report could be useful to you .  regards ,  larry  phone 212 - 230 - 2038  > > >  - 99 dec . doc  - 99 sep . doc  - 99 feb . doc\",0\n\"Subject: resume and available dates for amy ward  vince : here is an electronic version of amy ward ' s resume .  - - stinson  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 02 / 18 / 2000  01 : 58 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  amy ruth ward on 02 / 18 / 2000 12 : 02 : 22 pm  to : stinson gibner  cc :  subject : re : thanks for coming to houston  stinson ,  i am pleased to hear your hr department is putting together an offer for  summer employment . i enjoyed everyone i interviewed with while in houston  and appreciated you taking the time to put together this day .  as requested , i am attaching an electronic version of my resume . ( note it  is a slightly more updated one then the one i gave you earlier . ) it is in  microsoft word format .  my dates of availability are wed . , july 5 through fri . , september 15 ( 10  1 / 2 weeks ) .  sincerely ,  amy ward  - resume . doc\",0\n\"Subject: re : worldpower  mark ,  i have an inquiry from a publishing house who are preparing a book on the  world power markets .  they wanted us to sponsor it ( at the cost of 19 , 000 pounds ) but the reaction  from our power desks  was lukewarm .  they are offering us an opportunity to advertise in this publocatio .  i am attaching the message with the terms .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 21 / 2000  12 : 28 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" isherwood production \"\" on 01 / 21 / 2000 06 : 40 : 08 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : worldpower  dear mr , kaminski ,  i have two advertising positions to offer you as follows :  1 . outside back cover ( plus 200 personalised books ) o 6 , 950 . 00  2 . inside front cover spread ( plus 200 personalised books ) o 7 , 950 . 00  please let me know which ( if any ) options you prefer .  kind regards ,  anna liza  sales director  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  worldpower  suite 16 , imperial studios  london , sw 6 2 ag  united kingdom  info @ commodities - now . com  www . commodities - now . com  tel : + 44 ( 0 ) 171 736 0774  fax : + 44 ( 0 ) 171 736 1196  - attl . htm\",0\n\"Subject: re : tiger team - wharton participants  are these students first or second years ? if they are first years , we did  not have a single one submit a resume for the summer associate position .  michele nezi marvin  manager  enron broadband services  ( 713 ) 853 - 6848  kristin gandy @ enron  01 / 03 / 01 10 : 17 am  to : jeffrey a shankman / hou / ect @ ect , william keeney / hou / ect @ ect , catherine  clark / hou / ect @ ect , rajesh chettiar / enron _ development @ enron _ development , tom  dutta / hou / ect @ ect , jayshree desai / hou / ect @ ect , colin jackson / enron  communications @ enron communications , laura howenstine / enron  communications @ enron communications , michele nezi marvin / enron  communications @ enron communications , jennifer fraser / hou / ect @ ect , natalie  halich / enron communications @ enron communications , ranabir  dutt / corp / enron @ enron , teresa dyar / na / enron @ enron , jeff golden / hou / ees @ ees ,  charles ward / corp / enron @ enron , sarah wesner / corp / enron @ enron , li  sun / na / enron @ enron , gillian johnson / na / enron @ enron , lisa  connolly / na / enron @ enron , michael j popkin / na / enron @ enron , kevin  mcgowan / corp / enron @ enron , evan betzer / enron communications @ enron  communications , jebong lee / enron communications @ enron communications , chu chu  wang / corp / enron @ enron , brad hitch / eu / enron @ enron , betsy bassis / enron  communications @ enron communications , matthew goering / hou / ect @ ect , claude  tellis / enron @ enronxgate  cc :  subject : tiger team - wharton participants  attached below is a list of individuals that will be participating in the  tiger team event at enron in houston on the 18 th of january . keep these  people in mind when it comes time to pick candidates to interview for the  spring . call if you have any questions and i am still looking for wharton  alum who would like to attend the dinner at churrasco ' s that same evening .  thank you ,  kristin  - - - - - - - - - - - - - - - - - - - - - - forwarded by kristin gandy / na / enron on 01 / 03 / 2001  10 : 14 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  melinda mccarty  01 / 03 / 2001 09 : 43 am  to : kristin gandy / na / enron @ enron  cc :  subject : tiger team - wharton participants  vincent chen  nicholas levitt  deepa mallik  jack rejtman  heather thorne  donna piazze  kim whitsel  tulika bhalla  jaideep singh  edson otani  joshua leventhal  pat henahan  gustavo palazzi  clay degiacinto  steve lessar  ram vittal  omar bassel  jason cummins  dennis feerick\",0\n\"Subject: re : enron / stanford program  paul ,  is there anything i can do to help get the $ 100 k that enron promised to dr .  bambos ?  - - stinson  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 10 / 10 / 2000  07 : 55 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  nick bambos on 10 / 09 / 2000 12 : 04 : 19 am  to : stinson . gibner @ enron . com  cc :  subject : re : enron / stanford program  hi stinson ,  i am under pressure from the department to wrap up giuseppe ' s raship ,  and i am probing to see how things are going on this matter on your  side . i ' m deep in the red in terms of the deadline - way beyond it !  would it be possible to wrap this up this week ?  many thanks ,  nick  stinson . gibner @ enron . com wrote :  >  > nick ,  >  > i spoke with paul racicot , head of trading for ebs , north america this  > morning . he said that he is happy to send the $ 100 , 000 for your program  > from his budget . i have forwarded to him the draft letter to accompany  > the funds and will try to follow up to make sure that the money is sent  > promptly .  >  > - - stinson\",0\n\"Subject: greetings from garp  greetings from garp ! we are having the next meeting january 30 th at enron .  time 6 : 30 pm until 8 : 30 pm  you are invited to bring a friend with you , however you will need to rsvp .  vince kaminski will lead a discussion regarding volatility in the energy  markets . refreshments provided .  in order to provide easy access to enron ' s facilities and due to security  concerns , garp and enron request that everyone rsvp . a guest list will be  given to security .  rsvp to rita hennessy . her email address is :  rita . hennessy @ enron . com  i would like to express my thanks , in advance , to mr . kaminski for leading  our group in this informative discussion . as many of you are aware , energy  markets present some unique challenges to risk managers , and volatility is  certainly one of them !  look forward to seeing you on tuesday night .  regards ,  frank hayden  regional director - garp\",0\n\"Subject: re : telephone interview with the research group  fyi .  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 27 / 2000  01 : 05 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  tammy ting - yuan wang on 04 / 27 / 2000 12 : 36 : 13 pm  to : shirley crenshaw  cc :  subject : re : telephone interview with the research group  dear ms . crenshaw ,  thank you for giving me a chance to talk to you .  however , i have already got an offer from another  company . i will start working as a full time after i  graduate in may .  thank you for taking time reviewing my resume .  have a nice day .  sincerely ,  tammy wang  - - - shirley crenshaw  wrote :  >  >  > good morning tammy :  >  > the enron corp . research group would like to conduct  > a telephone  > interview with you at your convenience . this will  > be as a \"\" summer  > intern \"\" with the research group .  >  > please let me know your availability on monday , may  > lst or thursday ;  > may 4 th .  >  > the persons who will be interviewing you are :  >  > vince kaminski managing director  > stinson gibner vice president  > krishna krishnarao director  > osman sezgen manager  >  > i look forward to hearing from you .  >  > thank you and have a great day  >  > shirley crenshaw  > administrative coordinator  > 713 - 852 - 5290  >  >  >  >  do you yahoo ! ?  talk to your friends online and get email alerts with yahoo ! messenger .  http : / / im . yahoo . com /\",0\n\"Subject: nelson nele interview  vice :  i interviewed nelson last week . here is my feedback :  1 ) very communicative  2 ) good professional experience - works as a consultant  3 ) good quantitative background  he lacks a background in finance , which may be a minus for a position in the  group . i beleive he may be valuable for other areas that deal with emissions  and pollutants .  paulo issler\",0\n\"Subject: please note that the date for the lst meeting is january 16  shirley ,  please put it on my calendar .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 12 / 2001  02 : 54 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  jennifer burns  01 / 12 / 2001 12 : 46 pm  to : phillip k allen / hou / ect @ ect , john arnold / hou / ect @ ect , michael w  bradley / hou / ect @ ect , jennifer fraser / hou / ect @ ect , mike grigsby / hou / ect @ ect ,  adam gross / hou / ect @ ect , rogers herndon / hou / ect @ ect , john j  lavorato / corp / enron @ enron , kevin mcgowan / corp / enron @ enron , vince j  kaminski / hou / ect @ ect , john l nowlan / hou / ect @ ect , kevin m presto / hou / ect @ ect ,  fletcher j sturm / hou / ect @ ect , hunter s shively / hou / ect @ ect , bill  white / na / enron @ enron  cc : jeffrey a shankman / hou / ect @ ect , gary hickerson / hou / ect @ ect  subject : please note that the date for the lst meeting is january 16  as mentioned during the fourth quarter , gary and i would like to begin  regular meetings of our trader ' s roundtable . the ideas generated from this  group should be longer term trading opportunities for enron covering the  markets we manage . in addition , this forum will provide for cross commodity  education , insight into many areas of enron ' s businesses , and promote  aggressive ideas .  each week , we ' ll summarize commodity trading activity , and provide an open  forum for discussion . your input is valuable , and we ' ve limited this group  to our most experienced traders , and would appreciate regular participation .  our first meeting will be tuesday , january 16 at 4 : 00 pm in eb 3321 .\",0\n\"Subject: day rates forward market  enclosed for your review is a draft copy of the four examples that i am  considering showing to aa as we request that they consider the chances of our  trading partners / customers receiving hedge treatment from trades such as  these . please review this writing , make suggestions and comments and either  email those changes back to me or fax them to me at 713 - 646 - 8416 . if you  would rather send your recommendations via courier , send them to eb 3585 b .  martin , please suggest wording for insurance products that meet the same  needs of the customer as the derivative examples . outline any significant  issues and send me those recommendations by thursday at noon if possible .  john\",0\n\"Subject: churn list  here is the requested churn list .  any questions please call kevin moore @ 34710  thanks  kevin moore\",0\n\"Subject: agenda for transmission roundtable on wednesday , january 24 , 2001  sorry everyone , i guess i am having my monday morning today . here are the  attachments .  - - - - - - - - - - - - - - - - - - - - - - forwarded by anita dupont / na / enron on 01 / 23 / 2001 09 : 52  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  anita dupont  01 / 23 / 2001 09 : 56 am  to : robin . kittel @ enron . com , bill . rust @ enron . com , steve . walton @ enron . com ,  ron . tapscott @ enron . com , jeffrey . wilson . enron . communications @ enron . com ,  sevil . yaman @ enron . com , vasant . shanbhogue @ enron . com , tom . dutta @ enron . com ,  walter . coffer @ enron . com , vkamins @ enron . com , lloyd . will @ enron . com ,  martin . lin @ enron . com , christi . l . nicolay @ enron . com , george . hopley @ enron . com ,  fred . mitro @ enron . com , debbie . chance @ enron . com , patrick . hansen @ enron . com ,  steve . olinde @ enron . com , madhup . kumar @ enron . com ,  robert . kraszewski @ corp . enron . com  cc : lance . cunningham @ enron . com , shirley crenshaw / hou / ect @ ect  subject : agenda for transmission roundtable on wednesday , january 24 , 2001  please review the attached agenda for tomorrow ' s transmission roundtable and  let me know if you have any additions or changes . also , please bring to the  meeting a hard copy of the attached december 8 meeting notes . thanks .  regards ,  anita\",0\n\"Subject: godbole report  vince / stinson ,  this is a summary fo the report submitted by the godbole committee appointed  by the state government to review the dabhol project .  the report clearly suggests renegotiation on the tariff . a lot of what they  mention is something we won ' t agree to . however , to me it seems apparent  that this can be worked out .  regards ,  sandeep .  - - - - - - - - - - - - - - - - - - - - - - forwarded by sandeep kohli / enron _ development on  04 / 16 / 2001 09 : 05 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  anshuman srivastav  04 / 16 / 2001 08 : 40 : 04 am  to : sandeep kohli / enron _ development @ enron _ development  cc :  subject : godbole report  attached is a small summary that gaurav and rajesh put together on the  godbole report . this is confidential .  - - - - - - - - - - - - - - - - - - - - - - forwarded by anshuman srivastav / enron _ development on  04 / 16 / 2001 07 : 08 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  gaurav varshney  04 / 16 / 2001 07 : 04 pm  to : anshuman srivastav / enron _ development @ enron _ development  cc :  subject :\",0\n\"Subject: avistar users and allocated charges  i have several queries re the avister charges for london , primarily because  the spreadsheet is based on a total of 24 london users . we have a total of  14 avistar users installed in london .  i believe the following london departments may have been charged for the  incorrect number of users :  fin \u0001 , l trading - $ 74 , 418 . 83 based on 4 units but have 5 users  rate & currency ( john greene not listed ? )  342 - 100467  softs mg - $ 42 , 857 . 23 based on 4 units but have only 1 user  1105 - 120415 ( nigel majury )  credit derivitives - $ 16 , 168 . 42 based on 2 units but none installed  0342 - 102843 ( 3 users on via video pilot )  liquids - $ 56 , 589 . 46 based on 7 units but only 6 installed  872 c - 104546 ( niamh clarke no longer based in london )  shankman london - $ 16 , 168 . 42 based on 2 units but none installed  0342 - 103058 ( brad hitch / merrill thomas no longer in dept . )  eel - exec - $ 8 , 084 . 21 based on 1 unit for john sherriff who is  0342 - 100309 on via video pilot - avistar not installed  legal london - $ 8 , 084 . 21 based on 1 unit for michael brown - avistar  0342 - 100348 not installed  london it - $ 16 , 168 . 42 based on two units but only one required  0342 - 100348 to administer system  the above figures are based on an original average $ 10 , 276 per seat .  however , a base change from 24 to 14 seats would increase the per seat charge  to $ 17 , 616 .  we also ought to look at charging out the isdn calls charges for the avistar  system ( in the region of $ 187 , 000 for 4 months ) .  regards ,  wilma  x 37275  mobile + 44 7771 887413  - - - - - - - - - - - - - - - - - - - - - - forwarded by sheila glover / hou / ect on 02 / 13 / 2001 02 : 07  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : sheila glover 02 / 13 / 2001 02 : 08 pm  to : mike mcconnell / hou / ect @ ect , jeffrey a shankman / hou / ect @ ect , gary  hickerson / hou / ect @ ect , per sekse / ny / ect @ ect , john l nowlan / hou / ect @ ect , jeff  kinneman / hou / ect @ ect , vince j kaminski / hou / ect @ ect , mark tawney / hou / ect , john  sherriff / lon / ect @ ect , michael r brown / lon / ect @ ect , nigel majury / lon / ect @ ect ,  markus fiala / lon / ect @ ect , joseph p hirl / ap / enron @ enron , morten e  pettersen / ap / enron @ enron , paul quilkey / enron _ development @ enron _ development  cc : paige cox / corp / enron , michael s galvan / hou / ect @ ect , wilma  low / lon / ect @ ect , hasan imam / corp / enron , brad lawson / na / enron  subject : avistar users and allocated charges  avistar has been installed globally to provide desktop conferencing .  hardware and installation charges have been allocated by invoice to the  relevant location . the schedule below lists by business unit and rc the  number of units and charges allocated . it will assume the monthly charge - out  process .  the allocated dollars will be depreciated over a three year period to your  respective cost center beginning february 2001 .  if you have any questions please feel free to call or e - mail , sheila glover ,  3 - 3210 , or paige cox , 3 - 5428 .  thanks . sheila\",0\n\"Subject: chicago partners  davis ,  i sent out the memo . no reaction yet .  vince\",0\n\"Subject: engineering meetings in broomfield co on march 9 and 10  hi stinson , as per our discussion , which we will expand upon when we meet  later today , my currently role in hamachi is better characterize as  combination of deal support ( from the engineering perpsective ) , facilitating  my work with jean mrha ( via erik simpson ) on the initial load forecast and  general requirements document development . none of this is technical by any  means . if anything , it is more like engineering consulting ( from deal  perspective ) by ebs research to john ' s group . i will bring it up with john  tomorrow night about bringing our technical guys on such road trips so that  they can get involved with his group even though no optimization modeling  work may need to be done . for this i will use samer and / or chonawee but we  need to be certain that they are available on such on - call basis as stated  below . john is very clear and specific about who he ask to be at such  meeting and when , etc . normally he does not want any deviations . so if we  put someone on such jobs , they have to be able to travel on - call anywhere ,  any place . that is the time pressure he is working with .  he want me to be the primary contact for such deal support effort . but i will  ask to bring along our technical guys on such trips so that they are plugged  in etc . . .  i will recommend this to john for the next deal that he is planning .  ravi .  - - - - - forwarded by ravi thuraisingham / enron communications on 03 / 08 / 00 10 : 57  am - - - - -  jeanette busse  03 / 08 / 00 10 : 52 am  to : ravi thuraisingham / enron communications @ enron communications , jim  irvine / enron communications @ enron communications , dayne relihan / enron  communications @ enron communications , tom huntington / enron  communications @ enron communications  cc : john griebling / enron communications @ enron communications  subject : engineering meetings in broomfield co on march 9 and 10  hello all ,  john griebling has requested your attendance at engineering meetings at the  omni hotel in the colorado boardroom on thursday and friday , march 9 & 10 ,  8 am - 6 pm both days . the engineering work could possibly overflow into the  weekend . you will need to fly out the evening of wednesday march 8 th .  please let me know if you have any questions .  jeanette  jeanette a . busse  project manager , strategic alliances  enron broadband services , inc . ( formerly enron communications )  2100 sw river parkway , suite 600  portland , or 97201  office : 503 . 886 . 0214 fax : 503 . 886 . 0434  email : jeanette _ busse @ enron . net\",0\n\"Subject: re : greetings from baylor university  jim ,  sorry for the delay in responding to your message . i was traveling  extensively  and was overwhelmed with many different projects .  i shall be glad to speak at the gamma iota sigma dinner . unfortunately , i  cannot make  a presentation to your class ( it would require leaving the office for two  days in a row ) .  i can , however , promise to come on another day and speak to your students .  i hope everything is going well for you . by the way , your former student ,  shane green , has joined us  for 12 month and is doing exceptionally well .  vince  jim garven on 11 / 28 / 2000 05 : 10 : 55 pm  to : \"\" vince j kaminski \"\"  cc :  subject : greetings from baylor university  dear vince ,  since we last corresponded , i have left lsu and am now professor of finance &  insurance at baylor university in waco , tx . ? my colleague at baylor , john  martin , mentioned that you will be coming to campus for a conference on  friday , february 23 that he is organizing . ? ? i am curious whether your  schedule might permit staying over that evening so that we can feature you as  our dinner speaker for the chartering ceremony of gamma iota sigma , a  national risk management fraternity . ? for that matter , would you also  possibly be available to make any presentations to undergraduate and graduate  students on the previous day ( thursday , february 22 ) ? ? what i have in mind is  a presentation similar to the presentations you made last spring to my lsu  classes . ?  thank you for your consideration of this request . ? i am looking forward to  seeing you once again .  sincerely ,  jim garven  james r . garven , ph . d .  professor of finance & insurance  department of finance , insurance and real estate  hankamer school of business  hsb 336  baylor university  box 98004  waco , tx ? 76798  voice : ( 254 ) 710 - 6207  fax : ( 603 ) 994 - 6680  e - mail : ? james _ garven @ baylor . edu  home page : http : / / garven . baylor . edu  vita : http : / / garven . baylor . edu / dossier . html  research paper archive : http : / / garven . baylor . edu / research . html \",0\n\"Subject: wharton tiger team  according to the information that christie patrick emailed me the following  people are assigned to wharton ' s tiger teams 1 and 3 . these candidates per  vince kaminski ' s request should receive offers for summer associate positions  located in his research group .  tiger team # 1  1 . vincent chen  2 . mallik deepa  3 . jack rejtman  4 . kim whitsel  5 . tulika bhalia  6 . nicholas levitt - i am uncertain based on the emailed information from  christie if this is a student or a ta ? can either vince or christie verify  this information please .  tiger team # 3  1 . clay degiacinto  2 . steve lessar  3 . vittal maheshram  4 . omar bassel  5 . dennis feerick  6 . marc \"\" jason \"\" cummins  the following candidates interviewed with the regular on campus wharton team  on 2 / 5 / 01 and were not passed onto the second round interviews . with that  information i am not sure if we will offer those candidates positions for the  summer program ?  1 . kim whitsel - team # 1  2 . clay degiacinto - team # 3  3 . gustavo pallazzi - team # 2  4 . edson otani - team # 2  i also have that heather thorne is the teaching assistant and donna piazze is  the professor for the project . can you also verify that information ?  vince if you would please verify and give me the okay via email then i will  contact these candidates by phone to inform them they will be receiving an  offer from enron . but before i do anything i want to make sure this  information is correct and i am not excluding or adding any members that  should receive an offer .  thank you ,  kristin gandy\",0\n\"Subject: 2001 group expenses  guys , attached you will find a final cut on the ena 2001 expense budget .  please review and make any adjustments to your existing plan that are  appropriate to hit the net ena target . in order to stay flat year on year , i  split the remaining positive variance equally across the groups . as we had  discussed earlier , these costs will not be allocated to the business units  and will be tracked on the ena income statement below the line and the  accountability managed by each of you . all outside variable costs ,  specifically related to specific deals , will be charged to the business units  eg ) outside legal and tax , outside technical expertise , facility costs ,  outside research support , incremental back and mid office support for  specific asset management deals , specific entertainment , etc . i look at this  cost structure as the minimum capacity charge we need to operate our business  and evaluate / manage our risks .  wes , can you please finalize the one page plan ( expenses and headcount ) for  each group with these changes .  regards  delainey\",0\n\"Subject: names  bryan ,  the person from citibank :  alla gil , ( 212 ) 723 6275  alla . gil @ ssmb . com  i am attaching the resume of iris mack .  vince\",0\n\"Subject: storage story  see my storage story that begins on 1 . plus you might find the issue to be  of interest . i will be doing little occasionally fee pieces for the  transportation &  storage report and will be having lunch with them tomorrow so any thoughts  you have on my piece or the report would be appreciated .  best regards ,  jhherbert  - tso 6 - 29 . pdf\",0\n\"Subject: re : dr . michelle foss - energy institute  thanks vince - - am tied up with chairing the iaee conference this week .  appreciate your fielding my request via aisha . hope you ' re doing well ! m  * * * * *  all information in this mail is to be treated confidentially .  * * * * *  michelle michot foss , ph . d .  director , energy institute  c . t . bauer college of business  334 melcher hall , room 320  university of houston  houston , tx 77204 - 6011  tel . 713 - 743 - 4634  fax 713 - 743 - 4881  www . uh . edu / energyinstitute  > , , on 04 / 23 / 2001 03 : 15 : 29 pm  please respond to aisha @ uh . edu  to : vkamins @ ect . enron . com  cc : mmfoss @ uh . edu  subject : dr . michelle foss - energy institute  dear mr . kaminski ,  i am writing to ask a favor for dr . michelle foss . as you know we will  be running our \"\" new era \"\" program from may 14 - may 25 th . dr . foss was  wondering if on may 22 nd ( between 1 : 30 pm and 4 : 00 pm ) , we would be able to  bring  our participants for a tour of your trading floor . at this time we will  have  30 - 40 people , and since only 10 people maximum should really be on a  trading floor we need to have 4 companies among which to divide our  participants . at this time , we have a floor from coral energy , and are  working with duke ,  and i will be contacting mr . paul roberts to arrange for the reliant energy  trading floor . i was hoping very much that you would be able to direct  me to the right person to contact to arrange this tour . will this be a  possiblity ? i really appreciate your help very much . thank you !  best regards ,  aisha jamal  energy institute  713 - 743 - 4634\",0\n\"Subject: confirmation of your order  this is an automatic confirmation of the order you have placed using it  central .  request number : ecth - 4 tfn 5 w  order for : jason sokolov  1 x ( standard eol desktop $ 1210 ) enron it purchasing\",0\n\"Subject: \"\" henwood ' s rationalizing midwest power markets for the future \"\"  workshops  henwood announces a major new release and functional realignment of its  trading solutions software  henwood energy services , inc . ( henwood ) recently announced a major new  release of its trading and  scheduling software , and the overall realignment of its energy trading and  risk management functions into a  new , strategic lineup of products . henwood \u0001 , s established etrm and  webscheduler enerprise software  products have been re - launched into physical trading ( webscheduler ) , trade  capture and settlements  ( trademanager ) , and risk management functions ( riskreporter ) , with greatly  expanded capabilities to  more strategically meet the needs of the rapidly changing energy markets  throughout north america . the  release of the new webscheduler ( version 5 . 0 ) , combines a new henwood  scheduling version with  henwood \u0001 , s nerc tagging and iso communication functions to create a  comprehensive physical  management system .  \"\" the release of the version 5 webscheduler marks an exciting day , both for  henwood and for energy  companies responsible for managing financial and physical energy transactions  across north america , \"\"  explained derek porter , vice president - software products . \"\" our new product  version release and overall  product realignment clearly shows henwood \u0001 , s dedication to meet the trading  needs of today and anticipate  the challenges of tomorrow . \"\"  the new webscheduler is a comprehensive physical management product that  allows energy organizations  to manage physical trading issues from creation through delivery . the  software enables traders , schedulers  and other energy professionals to conduct their business of physical  scheduling , iso coordination , and  settlement in one seamless operation . some of the new features include :  - real - time price and volume change log  - standard ramp assignments  - dynamic view and form configuration for commodity volume management  - enhancements to scheduling view management  - new commodity volume management system  - show prices  - on - peak / off - peak definition  - running totals  - enhanced back - to - back / bookout function  - enhanced sub - hour function  - schedule summary page with copy function  - quicktrade capability  - grid copy / paste and export functions  henwood is offering training courses for the rollout of the physical trading  application , scheduled  throughout may in both sacramento and atlanta . dates are currently scheduled  for may 2 - 3 , 2001 in  atlanta , and may 23 - 24 , 2001 in sacramento . space is limited , so please sign  up early .  henwood offers integrated business solutions , strategic consulting , and  innovative  ebusiness applications to meet the challenges of the restructured energy  markets throughout north  america , australasia , and europe , serving clients that include eight of the  ten top utilities in north  america , in addition to energy services providers and power marketers . for  more information about  henwood \u0001 , s trading and risk management applications , please contact derek  porter at 916 - 569 - 0985  ( email : dporter @ hesinet . com ) . additional information about henwood can be  obtained by visiting  www . hesinet . com .\",0\n\"Subject: sap ids - coming soon ! ! !  your sap id and password will be communicated to you on june 22 . this  id / password combination will enable you to . . .  access ehronline to modify your personal information , view your pay advice ,  access your individual time sheet , and view your benefit elections .  enter financial , procurement , project management , and / or human resources  information based on the system security you have been assigned .  current sap users receiving this e - mail will be receiving a new id to replace  their current one as part of the 7 - 1 - 00 implementation - - the new id will be  a \"\" p # \"\" ( personnel number ) generated from sap hr .  if you have questions or comments , please call the coe sap hotline at  713 - 345 - 4 sap ( 4727 ) or visit our web site at http : / / sap . enron . com / coe .  thank you .\",0\n\"Subject: re : 2001 budget for research  becky ,  becky ,  i have called you this morning about it . it makes perfect sense .  vince  becky pham  11 / 21 / 2000 10 : 09 am  to : vince j kaminski / hou / ect @ ect  cc : shirley crenshaw / hou / ect @ ect  subject : 2001 budget for research  can i reduce your budget based on the suggestion below ? please let me know  because our deadline is wednesday , november 22 . thanx .  - - - - - - - - - - - - - - - - - - - - - - forwarded by becky pham / hou / ect on 11 / 21 / 2000 10 : 08 am  - - - - - - - - - - - - - - - - - - - - - - - - - - -  becky pham  11 / 15 / 2000 02 : 58 pm  to : vince j kaminski / hou / ect @ ect  cc : shirley crenshaw / hou / ect @ ect  subject : 2001 budget for research  sir ,  i just got word that your bottom line needs to be 2 , 200 k . this is net of  corp charges and intercompany billings . in order to get to this number , we  have to reduce your budget by 83 k . do you have any suggestions in which  category ( ies ) we need to reduce ?  budget 10 , 521 , 000  i / c billings 8 , 238 , 000  subtotal 2 , 283 , 000  per delainey 2 , 200 , 000  need to dec by 83 , 000  here are my suggestions based on oct expenses :  category oct expense budget decrease yearly amount  periodical / subscription 5 , 200 10 , 000 3 , 000 36 , 000  tuition and reimbursement 11 , 000 21 , 000 4 , 000 48 , 000  this will bring you to the bottom line suggested by delainey . please let me  know your decision by november 21 . if you have any questions , call me at  5 - 7094 . thanx .\",0\n\"Subject: confirmation of your order  this is an automatic confirmation of the order you have placed using it  central .  request number : ecth - 4 pqqca  order for : vince j kaminski  mpl 600 microportable projector - $ 3910 -  enron it purchasing\",0\n\"Subject: var for cob 2 nd aug 2000  hi vince ,  i was waiting for a comment about the email below before sending it to the  full mailing list . basically it suggests that the  copper option position may well have increased the var by more than $ 500 , 000 .  however , given that the portfoilo has also  changed from the lst of august it is difficult to asses the actual change due  to the option only .  regards  kirstee  - - - - - - - - - - - - - - - - - - - - - - forwarded by kirstee hewitt / lon / ect on 03 / 08 / 2000  17 : 29 - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron europe  from : kirstee hewitt 03 / 08 / 2000 16 : 29  to : cantekin dincerler / hou / ect @ ect , grant masson / hou / ect @ ect  cc :  subject : var for cob 2 nd aug 2000  hi all ,  the cu option position has entered the mg books for the 2 nd aug . the delta is  35299 $ / mt for dec 2000 . the cu var has gone up  from $ 2 , 245 , 000 to $ 3 , 306 , 000 . i estimated that the portfolio for the lst  would increase to approx $ 3 , 039 , 000 so this seems sensible .  the overall var change is from $ 4 , 780 , 796 to $ 5 , 991 , 569 . again , the estimate  for the lst aug was for an increase in var to ~ $ 5 , 476 , 000 .  all estimates were based on a delta of 32 , 0004 / dmt .  there has also been some increase in the var for aluminium which will effect  the overall total .  a summary is as follows :  regards ,  kirstee\",0\n\"Subject: re : agenda for houston visit  hi mike ,  thanks for the message .  here is one more reason why we should have our own in - house modelling :  the pcmdi nwp weather maps have been discontinued  the pcmdi wxmap web has been discontinued starting 20 december , 2000  please see the u . s . navy wxmaps at . . .  i will shortly forward a set of minimum requirements ( hardware . . . ) , softare  has been written by me , with some public domain software .  i am thinking of setting up an internal website with model output data , and  verification info .  cheers ,  christian  mike a roberts @ ect  21 / 12 / 2000 09 : 26 am  to : christian werner / enron _ development @ enron _ development  cc : vince j kaminski / hou / ect @ ect , paul  quilkey / enron _ development @ enron _ development , mark tawney / hou / ect @ ect  subject : re : agenda for houston visit  christian ,  just finished meeting with pual , vince & mark  new plan :  let ' s plan on your coming to houston march 12 th - april 2 nd ( after our  summer / winters respectively  but . .  let ' s proceed with the project without pause :  1 . please send up the software that needs to be installed along with  operating system requirements  2 . please copy me on forecasting provided to sydney office on a daily basis  if we work on these two fronts , it will optimize your time here and permit  transotion to cover your forecasting there  thanks  - - - mike\",0\n\"Subject: re : var meetings in houston  shirley ,  do you think we can get another room with better speaker phone ?  or , may be we can get better speaker phone ?  tanya  viacheslav danilov  04 / 19 / 2001 12 : 58 pm  to : tanya tamarchenko / hou / ect @ ect  cc : stig faltinsen / eu / enron @ enron , kirstee hewitt / lon / ect @ ect  subject : var meetings in houston  hi tanya ,  in my view it is very good if stig and kirstee are involved in your var  meetings . therefore , i think it is very useful for them to call houston .  could we get a little bit better equipment to allow them to hear everything  well ?  many thanks ,  slava  - - - - - - - - - - - - - - - - - - - - - - forwarded by viacheslav danilov / lon / ect on 19 / 04 / 2001  12 : 55 - - - - - - - - - - - - - - - - - - - - - - - - - - -  stig faltinsen @ enron  19 / 04 / 2001 16 : 23  to : viacheslav danilov / lon / ect @ ect  cc : kirstee hewitt / lon / ect @ ect  subject : var meetings in houston  hi slava ,  kirstee and i find it useful to listen in on the var meetings in houston on  wednesdays .  however , it is very difficult to follow the discussion due to a practical  problem : we hear little or nothing at times .  a possible solution to this problem might be to ask whether one could install  a \"\" spider phone \"\" in the var meeting room .  what i mean is a phone similar to the one in the rac morning meetings which  have several remote speakers going out  from the main phone ( do you understand what i mean ? ) . if this is done , we  would hear everyone around the table ,  not just those seated close to the phone .  what is you opinion on  a . us in london calling in to these meetings  b . getting some better equipment which would make it easier to follow the  conversation ( \"\" spider phone \"\" or bigger speaker . . )  please let me know what your thoughts are ,  best regards ,  stig\",0\n\"Subject: re : swaps monitor research .  vince ,  i reviewed all information available on the web site . there is a template  that shows what kind of data swapsmonitor provides on commodities , but  unfortunately this template is a blank one and no example of the table given .  to receive any actual data we have to subscribe to their service ( $ 200 -  single delivery , $ 300 - annual subscription ) .  below is the template that given for commodity derivatives :  the data in this database is derived from audited financial statements ,  regulatory filings , reports to shareholders .  i will be glad to write a summary report .  sincerely ,  elena  vince j kaminski @ ect  10 / 12 / 2000 03 : 47 pm  to : elena chilkina / corp / enron @ enron  cc : vince j kaminski / hou / ect @ ect , mike a roberts / hou / ect @ ect  subject : swaps monitor research .  elena ,  please , review the energy related info in this database ( if any ) and talk to  me  about it .  i would like to do some research in this area and ask you to write a summary  report .  nothing urgent .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 12 / 2000  03 : 52 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  andrei osonenko on 10 / 11 / 2000 04 : 26 : 38 pm  to : ( recipient list suppressed )  cc :  subject : swaps monitor research .  we have today published information about the otc derivative activities of  the largest dutch dealers . this research is contained in the attached pdf  file .  through our web site , swapsmonitor . com , you can obtain additional information  about otc derivatives dealers , including rankings and a database of  outstandings going back to 1994 .  as an e - mail subscriber to our research , you will automatically receive all  free research at the same time it is placed on our web site . if you wish to  remove your name from the e - mailing list , please use the reply feature of  your e - mail application and type the word \"\" remove \"\" in the subject line .  regards ,  - dutch _ dealers . pdf  andrei osonenko  research department\",0\n\"Subject: new pc  hi lyn :  alex huang has requested a new pc and vince kaminski has ok ' d it . please  order the computer as listed below in alex ' s request .  thanks !  shirley  3 - 5290  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 01 / 07 / 2000  01 : 48 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  01 / 07 / 2000 12 : 12 pm  to : shirley crenshaw / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , grant masson / hou / ect @ ect , alex  huang / corp / enron @ enron  subject : new pc  shirley ,  ok .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 07 / 2000  12 : 02 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  alex huang @ enron  01 / 07 / 2000 08 : 28 am  to : shirley crenshaw / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , grant masson / hou / ect @ ect  subject : new pc  hi shirley ,  i would like to request for a new pc . my current pc is quite old with not  enough memory . twice  i ran out of memory and had to have it people coming to clean it for me .  their suggestion is  to either get a new hard drive or a new pc . given that dell has pentiumc iii  processor at 800 mhz  on market , i would like to request a pc with process at 500 mhz or higher  level .  thank you very much .  best ,  alex\",0\n\"Subject: re : your approval is overdue : access request for  tom . halliburton @ enron . com  authorization granted .  the system is not accepting my id and password .  vince kaminski  arsystem @ ect . enron . com on 09 / 28 / 2000 07 : 05 : 09 pm  to : vince . j . kaminski @ enron . com  cc :  subject : your approval is overdue : access request for  tom . halliburton @ enron . com  this request has been pending your approval for 2 days . please click  approval to review and act upon this request .  request id : 000000000003619  request create date : 9 / 27 / 00 9 : 18 : 21 am  requested for : tom . halliburton @ enron . com  resource name : unlisted application / software  resource type : applications\",0\n\"Subject: alliance info alert  = = special announcements = =  on january 2 , ferc filed a response in opposition to the emergency petition  southern california edison filed december 26 for a writ of mandamus against  ferc in the u . s . court of appeals for the district of columbia . edison has  asked the court to direct ferc to fix by order just and reasonable cost - based  rates for the ca iso and cal px markets .  on december 22 , ferc issued an order regarding remedies for the california  wholesale market that included the requirement of a technical conference on  the development of market monitoring procedures . this conference has been  scheduled for january 23 , 2001 at ferc . elo 0 - 95 - 000 et . al .  = = recent ferc filings = =  ( 1 ) rto developments  * central illinois light co . , cinergy corp . , hoosier energy r . e . c . , southern  illinois power coop . , southern indiana gas and ( 2 ) a request that  the commission authorize a designated transmission owner having commission  jurisdictional rates and charges to recover , through its commission  jurisdictional transmission service rates and charges , the costs incurred by  the designated transmission owner as a result of its withdrawal from the  midwest iso . erol - 731 - 000 . comments due by january 11 , 2001 .  * nyiso filed a status report on governance issues in compliance with docket  nos . er 97 - 1523 - 005 , er 97 - 1523 - 006 , oa 97 - 470 - 006 , er 97 - 4234 - 004 and  ec 99 - 31 - 001 . comments due by january 10 , 2001 .  * after a request filed by numerous entities , an extension of time to file  comments and protests to grid florida ' s december 15 , 2000 supplemental order  no . 2000 compliance filing has been granted . comments will be due by january  30 , 2001 . rtol - 67 - 000 .  * cal px filed its tariff amendment no . 21 regarding the tracking of changes  in the method proposed by the ca iso for allocating its grid management  charge . erol - 719 - 000 . comments due by january 9 , 2001 .  * nyiso filed for a waiver for certain oasis requirements . elol - 24 - 000 .  filed december 22 , 2000 .  * oklahoma municipal power authority filed an answer to american electric  power co . ' s request to defer its application to transfer operational control  of its transmission facilities located in the spp . ec 98 - 40 - 000 . filed  december 26 , 2000 .  * nepool participants committee filed an answer and iso ne filed a  supplement to its motion to intervene regarding protests to nepool ' s revised  market rules regarding support implementation of electronic dispatch ( rule  3 ) , uplift payments at low operating limits ( rule 5 ) , and installed capacity  responsibility ( rule 11 ) as well as a revised implementation date for  electronic dispatch . erol - 493 - 000 . filed december 27 , 2000 .  * keyspan - ravenswood filed comments in support of nyiso ' s request to moot  its compliance filing . ero 0 - 3591 - 000 , 001 and 004 and ero 0 - 1969 - 005 . filed  december 22 , 2000 .  * maine public utilities commission , the maine public advocate and the  industrial energy consumers group filed a request for rehearing or an  emergency stay of the commission ' s december 15 , 2000 order directing iso ne  to implement an icap deficiency charge of $ 8 . 75 / kw / m retroactive to august 1 ,  2000 . elo 0 - 62 - 015 . filed december 22 , 2000 .  * miso filed an answer to several protests regarding its oatt in dockets  erol - 479 - 000 and er 97 - 1438 - 007 . filed december 27 , 2000 .  * pjm filed changes to its oatt to limit the amount of transmission  congestion credits an entity that acquires a fixed transmission right ( ftr )  through the ftr auction may receive if it enters increment bids or decrement  bids in the day - ahead market that result in an increase of transmission  congestion charges at or near the receipt or delivery point of the ftr .  erol - 773 - 000 . filed december 22 , 2000 .  ( 2 ) oatt / transmission  * commonwealth edison filed a revised attachment k to its oatt in compliance  with the commission ' s december 8 , 2000 order . erol - 99 - 001 . comments due by  january 10 , 2001 .  * american transmission company filed their standards of conduct to be  effective january 1 , 2001 . erol - 702 - 000 . comments due by january 9 , 2001 .  * indianapolis power & light filed its first amendment to the  interconnection , operation and maintenance agreement between itself and dte  georgetown . erol - 718 - 000 . comments due by january 9 , 2001 .  * pjm filed an executed interconnection agreement between itself and  bethlehem steel corp . erol - 756 - 000 . comments due by january 12 , 2001 .  * arizona electric power coop . filed a request for rehearing regarding the  commission ' s order determining that standard offer scheduling coordinators  should be subject to the same energy imbalance charges as competitive offer  scheduling coordinators . ero 0 - 3583 - 001 , erol - 173 - 001 and erol - 208 - 001 .  filed december 26 , 2000 .  * american electric power service filed an executed interconnection and  operation agreement between indiana michigan power company and duke energy  desoto . erol - 720 - 000 . comments due january 11 , 2001 .  * illinois power co . filed an interconnection agreement between itself and  dynegy midwest generation . erol - 712 - 000 . comments due january 11 , 2001 .  * american electric power service corp . filed an executed interconnection  and operation agreement between indiana michigan power co . and pseg  lawrenceburg energy co . erol - 721 - 000 . comments due by january 11 , 2001 .  * utilicorp filed amendments to the oatts for its missouri public service ,  westplains energy - kansas , westplains energy - colorado and st . joseph power &  light operating divisions in order to avoid customers from having to pay  multiple transmission charges . erol - 723 - 000 . comments due by january 12 ,  2001 .  * the american electric power service corp . filed an interconnection and  operation agreement between kentucky power co . and riverside generating co .  erol - 741 - 000 . comments due january 12 , 2001 .  * the cleveland electric illuminating co . , ohio edison co . , pennsylvania  power co . and the toledo edison co . ( first energy ) filed a modified proposal  to offer ancillary services and interconnected operations services on a  non - discriminatory basis . ero 0 - 3771 - 002 . filed december 21 , 2000 .  ( 3 ) market complaints  * dynegy power marketing , el segundo power , long beach generation and  cabrillo i and ii filed a complaint against the ca iso requesting that the  commission direct the iso to cease making out - of - market ( oom ) dispatch orders  on its units in non - emergency situations , require the iso to negotiate  compensatory rates for oom dispatch orders , file for third payment options  that generators subject to a participating generator agreement could elect as  compensation for oom dispatch orders and other relief . elol - 23 - 000 .  comments due january 11 , 2001 .  * southern california water co . d / b / a bear valley electric service filed a  complaint against southern california edison ( edison ) alleging that edison as  seeking to unlawfully terminate the added facilities agreement between the  two . elol - 25 - 000 . comments due january 18 , 2001 .  * cheyenne light , fuel & power co . filed a complaint against pacificorp  regarding a notice of termination filed on december 26 , 2000 of a power sales  agreement under which pacificorp provides cheyenne full capacity and energy  requirements . elol - 21 - 000 . filed on december 27 , 2000 .  ( 4 ) mergers / corporate restructuring  * the montana power co . and northwestern corp . filed an application for  authorization of the disposition of certain jurisdictional assets whereby  northwestern will purchase montana ' s utility business . ecol - 47 - 000 .  comments due january 11 , 2001 .  * the montana power co . filed a notice of change of status and a revised  statement of policy and standards of conduct to reflect a planned transaction  pursuant to which northwestern corp . will purchase the utility business of  montana power . er 97 - 449 - 001 . comments due january 11 , 2001 .  * mississippi valley gas co . submitted a request for rehearing regarding the  commission ' s november 24 , 2000 order authorizing the disposition of  jurisdictional facilities involved in the joint application filed by entergy  power marketing and koch energy trading . eco 0 - 106 - 001 . filed december 26 ,  2000 .  ( 5 ) miscellaneous  * midwest iso submitted an application seeking authorization to issue  long - term senior notes in an amount not to exceed $ 100 million .  esol - 13 - 000 . comments due january 12 , 2001 .  = = other news = =  * atc hits the ground running on jan . 1  * utilicorp completes $ 190 million merger with st . joseph light & power  - fercfilingsol 0102 . pdf\",0\n\"Subject: re : greetings  carlos ,  please , forward their resumes to us and we shall set up an interview for them .  vince  carlos ordonez on 11 / 21 / 2000 09 : 30 : 08 am  to : stinson . gibner @ enron . com  cc : vkamins @ enron . com  subject : re : greetings  dear vincent and stinson ,  both my students would love to come visit you guys for an informal  visit in the near future . please let me know well ahead of time  when they can come . if possible , see to it that their parking expenses  be paid when they do come .  i ' ll be in touch with you all over the next months about this and  a possible postdoctoral / trainee agreement ( world lab . ) .  cheers ,  carlos\",0\n\"Subject: technical analysis  more fallout  - - - - - - - - - - - - - - - - - - - - - - forwarded by mike a roberts / hou / ect on 05 / 04 / 2001 03 : 03 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : lee ferrell / enron @ enronxgate on 05 / 04 / 2001 02 : 26 pm  to : mike a roberts / hou / ect @ ect  cc :  subject : technical analysis  mike ,  our department has been using your technical analysis to support commercial decisions . you stated that these services would be discontinued . we opted to use your technical analysis in lieu of outside services . please continue to provide technical analysis data with regard to natural gas ( candlestick and elliot wave ) .  lee ferrell  director , risk management and reporting  ets\",0\n\"Subject: re : gas model  chaim ,  i received a number of phone messages from you .  the project is now in the hands of john and i shall  be very happy to assist him when he is ready to move .  he is looking at the licensing agreement right now .  till then , i have to wait for him to make a decision .  my role in this project is one of a facilitator , technical  consultant .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 16 / 2001  05 : 46 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron north america corp .  from : john goodpasture @ enron 02 / 13 / 2001 10 : 47 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : gas model  fyi  - - - - - - - - - - - - - - - - - - - - - - forwarded by john goodpasture / ots / enron on 02 / 13 / 2001  10 : 34 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" dale m . nesbitt \"\" on 02 / 13 / 2001 08 : 25 : 12 am  please respond to  to :  cc :  subject : re : gas model  john :  thanks so much for getting back to me . we remain keenly interested in doing  the preliminary project for you so that you can know how marketpoint works  and how it might help you . we are ready to go on the test process as soon  as you and your people are ready .  you heard from dr . chaim braun , altos vice president , who called you at my  request to inquire about your demonstration project . i will mention to  chaim that you expressed your interest via email to me . there is no need to  phone him back until you are ready to go . chaim ' s email address is  chaim . braun @ altosmgmt . com and he can be reached at the main altos number  650 . 949 . 3541 . my personal phone number is 650 . 218 . 3069 .  i look forward to working together .  dale  - - - - - original message - - - - -  from : john . goodpasture @ enron . com [ mailto : john . goodpasture @ enron . com ]  sent : monday , february 12 , 2001 3 : 04 pm  to : dale m . nesbitt  cc : vince . j . kaminski @ enron . com  subject : gas model  sorry so much time has passed since we last discussed your north american  gas model . i am however still interested in setting up a test process to  familiarize some of our key people with the model and the database , etc .  i am now reviewing the licensing agreement that you submitted in december  and will be back in touch soon . i need to discuss this further with the  business segments , but i suspect that our interest will be focused more on  the long term gas model .  another member of your firm had called last week , but i somehow misplaced  his name and number . i thought that an e - mail response would suffice for  now . my apologies .  regards ,  john goodpasture\",0\n\"Subject: re : research group  kevin ,  i think it ' s very important .  it is important that our work area looks neat .  vince  kevin g moore  02 / 28 / 2000 11 : 01 am  to : shirley crenshaw / hou / ect @ ect , vince j kaminski / hou / ect @ ect , mike a  roberts / hou / ect @ ect  cc :  subject : research group  hello vince ,  vince , before i get with delores on the matter of the  department i wanted to ask you how important it  that we get the walls repaired ?  is the research department satisfactory or is  there anything else that i can do ?  thanks  kevin moore\",0\n\"Subject: revised announcement for real options conference at ucla  please find attached a revised announcement and call for papers for the 5 th  annual international conference on real options : theory meets practice . the  conference is co - organized by the real options group and the andersen  school , at ucla , los angeles on july 11 - 14 , 2001 . the submission deadline  is march 2 ( and registration is by april 20 ) . travel allowances are  provided for all academic presenters ( and fees are waived for all  presenters ) . we are proud that eduardo schwartz will be our keynote speaker .  we hope that you will be able to participate and would appreciate it if you  could also post the announcement or circulate it among other interested  colleagues .  best wishes  lenos  - confannjuly 2001 . doc\",0\n\"Subject: weather delta demonstration meeting  the weather delta demonstration will be held wednesday , november  8 th from 10 : 00 - 11 : 30 am in ebl 9 c 2 .  please let me know if this is ok with everyone .  shirley  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 11 / 03 / 2000  10 : 06 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  alex huang @ enron  11 / 02 / 2000 01 : 06 pm  to : shirley crenshaw / hou / ect @ ect  cc :  subject : re : weatherdelta demonstration scheduling  shirley ,  can you schedule a meeting for the following people ?  vince j kaminski , joseph hrgovcic , vasant shanbhogue , lance cunningham , sevil  yaman , stinson gibner and i .  the preferred time is the week after next week .  thanks a lot .  alex  - - - - - - - - - - - - - - - - - - - - - - forwarded by alex huang / corp / enron on 11 / 02 / 2000 01 : 04  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski @ ect  11 / 01 / 2000 05 : 27 pm  to : alex huang / corp / enron @ enron  cc : vince j kaminski / hou / ect @ ect  subject : re : weatherdelta demonstration scheduling  alex ,  i agree . let them make up the data . please , ask shirley to determine  convenient date and time .  vince\",0\n\"Subject: re : pserc industrial advisory board meeting invitation  dear mr . ray ,  i regret to inform you that due to very heavy workload we cannot attend  the power systems engineering research center ' s  upcoming industrial advisory board meeting in oak brook .  our work load does not leave us much time to get involved  with pserc at this moment . we would very much like to stay  in touch and plan to reconsider our decision in the second half of this year .  vince kaminski  \"\" dennis ray \"\" on 03 / 27 / 2001 04 : 46 : 44 pm  to : \"\" vince kaminski \"\"  cc :  subject : pserc industrial advisory board meeting invitation  mr . kaminski ,  greetings . bob thomas , shmuel oren and i invite you to attend the power  systems engineering research center ' s upcoming industrial advisory board  meeting in oak brook , il . it will be held on may 31 - june 1 .  as you know from lance and alex , this is an opportunity to meet university  researchers and industrial members of pserc . the meeting also has  presentations on pserc activities and research projects , pserc business  discussions , current topic discussions , and a tutorial . our current topics  discussion will be on iso / rto issues , and will involve executives from  several isos in dialog with university researchers .  please let me know if you have any questions . we hope to see you there so  that we can talk about any questions you might have about pserc .  dennis ray , ph . d .  executive director  power systems engineering research center  608 - 265 - 3808  - directions . doc  - iab _ meeting _ may 2001 . doc  - iab _ registration _ form . doc  - pserc members . doc\",0\n\"Subject: updated - restricted list  neither ena / rac / egf employees nor family members or others living in their  household or financially dependent on the ena / rac / egf employee may purchase  or sell securities of any entity ( or derivatives thereof ) listed on the  restricted list for your or their personal or related accounts or recommend  the purchase or sale of such securities to any person , except with the prior  approval of the compliance department in consultation with the ena legal  department .  in addition to the trading restrictions above , should you at any time possess  non - public material information about any public company , you , your family  members and anybody that is financially dependent on you , are restricted from  trading in that issue , and you may not disclose the non - public material  information to anyone that does not have a business need to know .  company name stock symbol  3 tec energy corp . tten  adrian resources  beau canada exploration ltd bau cn  belco oil & gas corporation bog  bonus resource services corp bou  brigham exploration bexp  canfibre group ltd . cfgl  carrizo oil & gas inc . crzo  costilla energy cose  crown energy croe  cynet , inc . cyne  cypress energy cyz  esenjay exploration esnj  hanover compressor co . hc  ice drilling enterprises inc . idf  industrial holdings , inc . ihii  inland resources , inc . inln  kafus environmental industries , inc . ks  nakornthai strip mill public co ltd nsm set  paladin resources plc plr ld  paradigm geophysical pgeof  place resources , inc . plg cn  quanta services inc . pwr  queen sand resources , inc . qsri  quicksilver resources inc . kwk  rhythms netconnection inc . rthm  saxon petroleum , inc . sxn cn  startech seh cn  syntroleum corp . synm  tejon ranch corp . trc  titan exploration texp  transcoastal marine services , inc . tcms  zargon oil & gas zar cn  the restricted list is solely for the internal use of ena / rac / egf . no one  may engage in discussions regarding whether a security is or is not on the  restricted list with persons outside ena / rac / egf without specific clearance  from the compliance department in consultation with the ena legal department .  in addition to the above , you are reminded that pursuant to enron corp . ' s  risk management policy ( \"\" policy \"\" ) , no ena / rac / egf employee may engage in the  trading of any \"\" position \"\" ( \"\" position \"\" means any commodity , financial  instrument , security , equity , financial asset or liability that are  authorized for trading in the policy for the benefit of any party other than  ena / rac / egf , whether for his / her own account or the account of any third  party , where such position relates to ( i ) any commodity , financial  instrument , security , equity , financial asset or liability which falls within  such employee ' s responsibility at ena / rac / egf or ( ii ) any energy commodity .  the prohibitions listed above do not replace or modify the policies set forth  in ena ' s policies and procedures regarding confidential information and  securities trading , enron corp . ' s risk management policy , or enron corp . ' s  conduct of business affairs . should you have any questions regarding the  above , please contact me at ext . 31939 .\",0\n\"Subject: speech by chairman pat wood of puct - ctaee meeting - nov . 29 , 2000  dear colleague :  we are honored to have chairman pat wood of the public utility commission of  texas as the distinguish speaker for the meeting of the central texas chapter  of the united states association for energy economics . chairman wood is the  main architect of electric industry restructuring in texas and this meeting  offers a unique opportunity to hear his speech entitled :  \"\" texas ' future competitive electric industry \"\"  please mark your calendars and join us on wednesday , november 29 at 5 : 00 pm  at the lower colorado river authority ' s board room , located at 3700 lake  austin blvd ( hancock building ) , austin , texas . the meeting will open with  refreshments and chairman wood ' s presentation will begin at 5 : 30 pm . the  meeting is open to the public and is free . we extend a special invitation to  all members of the usaee that reside in the central texas area . please plan  to meet david deangelo , president of usaee , who we are fortunate to have as  our special guest . david will be happy to answer any questions you have about  the iaee and usaee .  about the ctaee  the central texas association for energy economics ( ctaee ) focuses on current  energy events and research at the state , national , and international level .  it is an excellent forum to meet , network , and exchange ideas in the regional  energy community . local programs will be held six to eight times a year .  the ctaee is a local chapter of an international association known as the  international association for energy economics ( iaee ) . ctaee is a non - profit  organization and is a totally non - partisan forum for stimulating discussion  and dialogue on major energy policy and analysis issues . to provide  exceptional meeting topics and dialogue we need your local membership . your  participation in ctaee can bring new ideas to help promote effective energy  policy .  about the iaee and usaee  the international association for energy economics ( iaee ) , founded in 1977 ,  provides a forum for the exchange of ideas , experience and issues among  professionals interested in energy economics . its scope is worldwide , as are  its members , who come from diverse backgrounds - - corporate , academic ,  scientific , and government . the united states association for energy  economics ( usaee ) is an affiliate of the international association for energy  economics . as a member of iaee you will gain a broader understanding of  energy economics , policymaking and theory . members are kept well informed by  iaee and usaee publications and conferences on events within the energy  industry and energy challenges that lie ahead . furthermore , membership  provides you with the opportunity to network within the largest association  of energy professionals in the world .  mina m . dioun , ph . d . neil  mcandrews karl j . nalepa  ctaee president ctaee vice president  ctaee treasurer  ( 512 ) 473 - 3333 x - 2549 ( 512 )  415 - 3227 ( 512 ) 463 - 8574  mdioun @ lcra . org nmcandrew @ austin . rr . com  karl . nalepa @ rrc . state . tx . us  - ctaee - meeting . doc\",0\n\"Subject: re : implementing clustering and jumps for power  frank ,  our var team has been looking at different ways to implement clustering and  jumps for power prices simulation  in var .  i attached the suggestion we came up with and the results of clustering and  jump parameters estimation .  would you like to discuss this methodology ? we need your input .  please , let me know ,  thank you ,  tanya .\",0\n\"Subject: weather course  vince ,  ?  we just wanted to let you know that we only have 3 people signed up for the  weather derivatives course ( all from enron ) so far . ? we have a couple more  that have expressed strong interest , but we are awaiting their final  decision . ? if no one else signs up , chris and les thought that you guys  could probably get through the first day pretty easily , ? and thus thought it  may be an option to teach just the 2 nd day material ( pricing ) only at enron  ( doing it at the hyatt is an option as well but the room might be on the  large side ) ? ? we would obviously reimburse you for the day not taught . ? we  can teach both days as well , but thought you may want to save some time . ?  ?  i just wanted to give you some time to think about it . ? we will know where  we stand on final numbers by next wednesday .  ?  julie  ?  ?\",0\n\"Subject: re : ed krapels  absolutely - i can ' t find the previous email but it may have been lost during  the few days they moved my email box from london to houston - i know i had a  lot of lost emails - do you have his phone number and email and we can sort  out a password for a few days for him too .  louise  vince j kaminski  10 / 02 / 2000 22 : 15  to : louise kitchen / lon / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : ed krapels  louise ,  some time ago i sent you a message regarding ed krapels . he is writing a book  on energy  commodity markets and would like to learn more about eol .  can you give him a call and chat with him for 10 minutes . he is a good  friend of enron and  it would be free ad for us .  vince\",0\n\"Subject: schedule interview for stephen bennett  friday , august 4 , 2000  interview begins at 9 : 00 a . m .  9 : 00 a . m . vince kaminski - ebl 962  10 : 00 a . m . john lavarato - no interview  11 : 15 a . m . mike roberts / jose marquez  ( luncheon interview )  3 : 00 p . m . hunter shively - eb 32 c 2  3 : 15 p . m . jeff shankman - eb 32 c 2  3 : 30 p . m . john arnold - eb 32 c 2  3 : 45 p . m . toni graham -  itinerary and resume will follow . . . . . .  thanks  kevin moore  please note : do not offer mr . bennett a position without john lavarato  approval\",0\n\"Subject: file cabinet for mike roberts  vince :  since we have to clear kevin ' s office for the new employee jaesoo lew ,  can kevin order a tall file cabinet to put the material in ?  thanks !  shirley  vince j kaminski  11 / 20 / 2000 10 : 55 am  to : shirley crenshaw / hou / ect @ ect  cc :  subject : re : \"\" skunkworks \"\" meeting with scott tholan  shirley ,  no , that ' s it .  vince  shirley crenshaw  11 / 20 / 2000 10 : 06 am  to : vince j kaminski / hou / ect @ ect , mike a roberts / hou / ect @ ect  cc : kevin g moore / hou / ect @ ect  subject : \"\" skunkworks \"\" meeting with scott tholan  the \"\" skunkworks \"\" meeting with scott tholan scheduled for this wednesday ,  the 22 nd has been cancelled , per scott tholan .  mike / vince : is there anyone else , that needs to be notified ?  thanks !  shirley\",0\n\"Subject: in confidence / project status  hi vince  i ' d originally been told you wouldn ' t be back until wednesday , and so have  another meeting booked for 4 : 30 pm ( london time ) today . i really need to  speak with you about the situation here in london re anjam . to be blunt ,  sharad , kirstee and i have all been tempted to just walk out of the office  until anjam is removed . the major problems are :  1 . i have no authority to demand anjam should cooperate with sharad , kirstee  etc . on their work . he does his best to impede their work , and i have no  ability to access his drives for data / spreadsheets .  2 . anjam removes me from the cc lists in reply to all emails received by him ,  in an attempt to remove me from the loop .  3 . anjam continues to \"\" do business \"\" , and people in london still think he ' s  head of research .  4 . pending your \"\" announcement \"\" , people will continue to go to anjam , and the  business will remain dependent on him .  5 . we ' re severely under - resourced . i ' m still awaiting your review of the  email i drafted for john s , requesting additional resource . i can ' t make a  big recruitment drive until i have the authority to hire more .  i honestly feel i can ' t do my job , and i ' m currently asking myself what i ' m  even doing here .  notwithstanding the above , here is the current picture with our projects :  steve  1 . initiated new pre - trade system for oil trading desk . hooked up relevant  it resource with business people , keeping an overall eye on making sure the  business reqts get translated into it - speak .  2 . enron direct demand forecasting system review .  3 . initiated global supply / demand database with coal group .  4 . constant firefighting across all desks .  ben  1 . work on regression - based placement model .  2 . general review of enroncredit . com ' s quant models .  matthew  1 . ongoing work with engoal .  2 . produced first prototype of gas capacity charge optimisation tool for  continental gas desk . need to purchase local copy of cplex .  kirstee  1 . diverted from richard lewis ' s request for the uk gas / power vol curves to  be sorted out , onto eastern virtual power station restructuring project .  involves extension runs of credit reserve model , and now it seems the model  needs to be extended .  2 . constant var firefighting .  slava  1 . finished all regressions and model identification for uk gas and power  demand forecasting . we are now ready to start it implementation .  2 . enron direct demand forecasting system review .  sharad  1 . exotica support / firefighting , made nearly impossible by anjam .  2 . option on strip of metals futures for enron metal .  i do hope we get a chance to speak and resolve some of these issues . i ' m  really not happy at present .  best regards ,  steve\",0\n\"Subject: re : calpx power prices  ? ? ?  - - - - - - - - - - - - - - - - - - - - - - forwarded by jason sokolov / hou / ect on 01 / 29 / 2001 03 : 52  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron north america corp .  from : maria van houten 01 / 29 / 2001 11 : 35 am  to : jason sokolov / hou / ect @ ect  cc :  subject : re : calpx power prices  jason ,  are you looking for calpx hour ahead umcp or calpx hour ahead zone prices ?  we have hour ahead zone price data from 10 / 1 / 98 - current and hour ahead umcp  from 11 / 6 / 2000 onward .  maria v . h .  from : jason sokolov 01 / 26 / 2001 09 : 17 am  to : maria van houten / pdx / ect @ ect  cc :  subject : calpx power prices  maria ,  i am looking for historical hourly real - time ( spot ) power prices for calpx .  can you help me to locate them ?  jason sokolov\",0\n\"Subject: complexity science and the energy industry brown bag update , apri l  18 th , 2001  nesa / hea members :  a couple changes have been made to the april 18 th brown bag . attached is an  update with the brown bag details .  > >  >  we look forward to see you there . please contact me with any questions  ( 713 ) 856 - 6525 .  thanks ,  lana moore  - nesa brownbag flyer . doc\",0\n\"Subject: re : ca for henwood  stinson -  we will get something to you tomorrow .  bruce  stinson gibner @ ect  01 / 04 / 2001 05 : 18 pm  to : bruce lundstrom / enron _ development @ enron _ development  cc : vince j kaminski / hou / ect @ ect , sandeep  subject : ca for henwood  bruce ,  evidently your assistant was unsuccessul in finding the ca ' s used in either  the of the previous henwood projects for japan and korea .  we are working on a project to model the economic viability of dabhol under  economic dispatch and are faced with a very tight deadline in february . can  you help us put together a confidentiality agreement for henwood energy  services , inc . who will be performing the model calculations ?  any help would be appreciated .  regards ,  stinson gibner  v . p . enron research  x 34748\",0\n\"Subject: livelink access  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 04 / 11 / 2001 01 : 13 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron technology from : moyez lallani @ enron 01 / 16 / 2001 10 : 46 am  to : stinson gibner / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect  cc :  subject : livelink access  gentlemen ,  i have created a folder called research projects folder in the livelink test instance . the url to the test instance is  to log in , use your nt login id as your userid and password ( all lowercase ) . you will find the folder on the enterprise workspace . please call me should you require further assistance .  moyez lallani  x 5 - 3683\",0\n\"Subject: organizational changes  we are making a number of significant organizational changes . these changes  are intended to accomplish four key objectives :  first , we need to realign all our wholesale businesses around the successful  business model developed over the last decade in north america and europe .  this model relies on extensive physical and transactional networks built  around a relatively small strategic asset position .  second , we need to significantly streamline corporate reporting  relationships . particularly with joe sutton \u0001 , s departure , the ability to  directly manage the day - to - day activities of 15 independent business units  has become increasingly difficult .  third , we need to accomplish these changes without , in any way , compromising  the ongoing profitability of all our businesses and without delaying or  hindering our effort to monetize a significant portion of our lower - yielding  asset positions .  and fourth , as always , we need to take advantage of the reorganization to  redeploy our talent into our highest value opportunities .  enron wholesale services  today , we are forming enron wholesale services ( ews ) which will consolidate  our global wholesale businesses . the closer alignment of our wholesale  businesses will accomplish the following : ( 1 ) enhanced communication and  coordination across business units , ( 2 ) more rapid deployment of people to  higher valued opportunities , ( 3 ) more effective prioritization of  opportunities across the wholesale business , and ( 4 ) more rapid extension of  enron \u0001 , s wholesale business model and capabilities into new industries and  markets .  enron wholesale services will include our current north american , european  ( including japan and australia ) , global markets , and industrial markets  operations , and will be expanded to include enron \u0001 , s net works business unit  as well as a new unit \u0001 ) enron global assets . in addition , enron \u0001 , s merchant  businesses outside of north america and europe will be integrated into this  new structure as described below .  mark frevert , currently chairman of each of our wholesale units , will assume  the role of chairman and ceo of enron wholesale services . greg whalley ,  currently chairman and ceo of enron net works , will join mark in the office  of the chairman as president and chief operating officer .  providing further impetus for these organizational changes , several of our  international business unit leaders have elected to move into new leadership  positions :  rebecca mcdonald , currently ceo of enron apachi , will join ews as president  and ceo of enron global assets . enron global assets will have responsibility  for managing all of enron \u0001 , s existing energy asset portfolio outside of north  america and europe . joining rebecca in the office of the chairman as coo  will be jim hughes , currently coo of enron apachi . rebecca and jim will  report to the ews office of the chairman .  sanjay bhatnagar , currently ceo of enron india , has joined ebs as ceo for the  middle east and asia region . sanjay will be responsible for building our  broadband business in this region and the current ebs team in this region  will report to sanjay . in this role , sanjay will report to the ebs office of  the chairman . in addition , sanjay will continue to remain responsible for  enron \u0001 , s wholesale energy business in india and will transition this business  into enron global assets in the near future .  diomedes christodoulou , currently co - ceo of enron south america , has joined  ebs as chief commercial officer . diomedes will be located in london and will  focus his origination activities on global opportunities , with near term  attention to the wholesale and enterprise sectors . diomedes will report to  the ebs office of the chairman .  jim bannantine , currently co - ceo of enron south america , will be joining ees  to lead ees \u0001 , commercial efforts outside north america and europe . in order  to ensure a smooth transition for our south american businesses and to  facilitate our asset sales activities , jim will remain in south america for  at least the next several months and continue to serve as ceo of enron south  america . throughout the transition , jim will report to cliff baxter and to  the office of the chairman of enron wholesale services . following the  transition , jim will join ees .  in addition to these changes in our international asset operations  activities , we are making the following changes in our merchant wholesale  businesses and the commercial support functions :  enron net works  louise kitchen will assume greg \u0001 , s previous responsibilities as president and  ceo of enron net works , reporting into mark and greg .  enron americas  concurrent with the transfer to enron global assets of responsibility for  operating enron \u0001 , s south and central america asset base , all trading ,  marketing , and new asset development activities in these regions will report  into a new entity , enron americas . enron americas will have responsibility  for all wholesale merchant businesses across north , central and south  america . dave delainey , president and ceo , and john lavorato , chief  operating officer will comprise the office of the chairman for enron  americas .  enron europe  the enron europe organization , which includes enron \u0001 , s businesses in australia  and japan , and enron metals , remains unchanged under the leadership of john  sherriff , president and ceo , and michael brown , chief operating officer .  enron global markets  enron global markets , under the leadership of mike mcconnell , president and  ceo , and jeff shankman , chief operating officer , will continue to have  responsibility for enron \u0001 , s middle east and lng operations . with the  exception of ecoelectrica in puerto rico , all operating power plants and  associated personnel in the caribbean and central america will transfer to  enron global assets . enron global markets will also continue to manage the  commodity businesses in crude and products , coal , weather , insurance ,  equities , interest rates , foreign exchange , and agricultural products .  enron industrial markets  enron industrial markets \u0001 , organization , under the leadership of jeff mcmahon ,  president & ceo , and ray bowen , chief operating officer , remains unchanged .  commercial support for ews  the commercial support functions for ews will remain with , and be managed by ,  the individual business units . we are creating no incremental overhead in  the creation of ews , and in fact hope to reduce our operating costs by more  efficient utilization and sharing of resources across ews .  to this end we have asked several people to take on an expanded role across  ews in addition to their ongoing roles within their business units . these  newly defined roles are as follows :  mid and back office operations \u0001 ) sally beck will lead mid and back office  operations across ews . these services will become part of enron net works ,  with sally reporting to louise kitchen and rick causey , executive vice  president and chief accounting officer . this alignment creates a coordinated  services organization with it and e - commerce platforms to support the  wholesale businesses and to maximize opportunities to commercialize these  services . mid and back office services for all commercial activities will  continue to be organized with dedicated operations controllers responsible  for specific commodities and / or geographic locations .  legal \u0001 ) mark haedicke will serve in the role of general counsel for ews .  regulatory and government affairs \u0001 ) this function will remain organized on a  regional basis . rick shapiro will support all ews businesses operating in  the americas , and mark schroeder , who is based in london , will support all  european and eastern hemisphere operations . rick and mark will also continue  to support all other enron businesses operating in their respective regions  and will continue to report to steve kean , executive vice president and chief  of staff .  public relations \u0001 ) this function is also organized primarily on a regional  basis . eric thode will have responsibility for north american activity ,  enron net works , and enron industrial markets . jackie gentle will continue  in her role for enron europe ( including japan and australia ) and john ambler  will have responsibility for activity outside north america and europe as  well as providing support for enron global markets and enron global assets .  these individuals will also continue to have a split reporting relationship  to mark palmer , vice president of communications .  business analysis and reporting \u0001 ) wes colwell will expand his role to cover  ews reporting in addition to his current role in north america .  attached for your review is an organization chart for enron wholesale  services which summarizes the changes described here . as this organization  continues to evolve we will keep you informed of any additional changes .  enron global exploration and production  and enron wind  as part of our company - wide initiative to examine our assets and investments  around the world , we are considering a variety of options with respect to  egep and ewc . as a consequence , we are putting these businesses under cliff  baxter \u0001 , s direction . jeff sherrick , ceo of egep , and jim noles , ceo of enron  wind , will report to cliff .  corporate staff  we are consolidating the corporate staff functions : human resources ,  government affairs , public relations / communications and administration . in  that regard , cindy olson , executive vice president of human resources and  community relations , will report to steve kean , executive vice president and  chief of staff .  committee structure  in light of the increased leadership opportunities created by enron \u0001 , s  growth , the executive committee will be expanded to include more of our  business unit leaders . the primary role of this committee will continue to  be the communication of relevant information across enron \u0001 , s businesses and  the coordination of activities across those businesses . we will also be  drawing on this group to lead company - wide initiatives such as the  performance review process and evaluation and creation of new businesses .  the executive committee membership is shown on the attached list .  we are also forming a new committee \u0001 ) the enron corporate policy committee .  this group will be responsible for overall corporate policy , personnel  management policy and corporate strategy . the enron corporate policy  committee membership is also shown on the attached list .  we are confident that these changes will align our talent and our capital to  our highest return opportunities . please join us in congratulating and  supporting all of these individuals in their new roles .\",0\n\"Subject: news review update  please respond to news review the news review site , http : / / www . news - review . co . uk  home of weekend city press review , now offers registered users two new features :  all registered users can now :  - do a text search in addition to a company search on the full six - year archive  - and set up favourite companies on their home page for easier and faster access  to articles within the review and the archive which relate to those companies  the best way to keep abreast of the weekend ' s financial news and views is to  receive an email copy of weekend city press review , either via the full review ,  or the clippings relating to specific companies in which you are interested .  registered users are invited to take up the free offer of a 4 week subscription  to any of the services , including pdf delivery of the review , and the clippings service .  to login please use this url :  you can download this weekend ' s full review free of charge at  http : / / www . news - review . co . uk / freepdf . pdf from 8 pm uk time this sunday  your username for this service is vkaminski  if you have forgotton your password you can retrieve it at  to remove yourself from this service please login and use the ' my profile ' option .  our ref wcprvl : vkaminski\",0\n\"Subject: harvard research visit  harvard business school is doing a 5 - year business case study on enron .  below is the information that i have regarding their visit . the name of  the case study is modern giants ( attached below )  ( they are interested in developing a clearer picture of the architecture and  design of enron \u0001 , s organization , products , and services - - how the company and  its key businesses have been put together and how they work on a daily ,  quarterly , and annual basis . )  mm  x 31641  - - - - - forwarded by melinda mccarty / corp / enron on 01 / 26 / 2001 01 : 40 pm - - - - -  1 . an overview of the modern giants research project  2 . descriptions of three broad areas of research interest ( business and  organizational design , new business creation , and capital investment  decision making ) together with the associated interview questions .  we fully understand that these interview questions are far too  encompassing , and that there ' s no way we could get through all of them in a  single , one - hour meeting . what we plan to do is \"\" specialize \"\" the interviews  by the background and expertise of participants . in some cases , we will  focus only on new business creation ; in others , we will focus primarily on  the allocation of capital ; in others we will focus on the basic economic  model that underlies the trading or energy services business . future visits  may focus on the remaining , unanswered questions , or on other areas of  interest of our faculty colleagues . these questions should therefore be  regarded more as a set of interests , rather than a strict protocol that we  will strive to complete from beginning to end .  hope this provides the necessary background for the trip .  - research initiative on modern giants . doc  - bower . doc  - levesque . doc  - roberto . doc  - busorgdes . doc  - newbuscrea . doc  - capital investment . doc  - garvin 4 . doc\",0\n\"Subject: ebs research office space on 45 th or 43 rd floor  hi stinson , as per my discussion , here is e - mail to let vince know about the  subject .  we have requested the following office spaces for network planning ( jim  irvine ) - - optimization work , etc . and other ebs support personnel .  for network planning and traffic engineering :  - 1 director level space ( to be used by jim and other ebs research people  as needed when jim is not there ) and four other cube space ( chonowee , martin  lin , and two students .  for other ebs activities :  - 3 or 4 summer interns and analysts level space for other ebs people ( roman  and other students ) .  this is what kristy is going to request and get it into the office space  request loop . we should be able to get into most of the space that i have  requested .  ravi .\",0\n\"Subject: telephone interview with the enron corp . research group  good morning yongcho :  the enron corp . research group would like to conduct a telephone  interview with you at your convenience . this would be for a full - time  position with the research group .  please let me know your availability monday , may 1 or thursday , may  4 .  the persons who will be interviewing you are :  vince kaminski managing director  stinson gibner vice president  krishna krishnarao director  osman sezgen manager  i look forward to hearing from you .  thank you  shirley crenshaw  administrative coordinator  713 - 853 - 5290\",0\n\"Subject: friday brown bag for options pricing  hello everyone ,  today we have grant masson spreaking in our options pricing seminar series .  grant ' s topic is \"\" marginal value at risk \"\" . it will be held at 12 noon at  19 c 2 .  we thank you for your participation .  zimin lu  alex huang\",0\n\"Subject: enron media / advertising  simon ,  please forward a copy of my ken rice presentation to vince kaminski . send  him the version with the white background .  vince :  thanks again for meeting with me today and i am pleased that you are  interested in discussing this opportunity in more detail .  feel free to contact me should you have any questions . as discussed , the  enron media / advertising idea is being developed under ebs , but should  develop into its own business unit .  enron media / advertising :  - advertising risk book  - physical trades , supported by excess inventory from cable networks , radio ,  network tv , etc .  - media buying service  - alliances with advertising agencies to sell enron ' s \"\" eyeballs \"\" from our  customer / server - isp relationships i . e . , us west  - agencies could endorse ebs to their customers ( ford gm , procter & gamble ,  etc . ) and become an extended enterprise for ebs and our ein applications  - enron ' s capital , to fund content development for the networks and  hollywood , which in turn would provide content for our pipes with licensing  and syndication rights .  - an enron on line b to b opportunity ( you may want to review the following  sites : doubleclick . com , agency . com , adauction . com )  mark and kal :  vince and i are meeting on tuesday , march 28 th @ 3 : 00 pm to further discuss  the development of the enron media / advertising concept . can you join us to  provide a customer and agency perspective ?  regards ,  michael p . horning\",0\n\"Subject: re : ed krapels  just thought you ' d like to know we are not having a grat deal of success with  contacting ed - let us know if there is anything else i can do ?  - - - - - - - - - - - - - - - - - - - - - - forwarded by louise kitchen / hou / ect on 27 / 03 / 2000  13 : 42 - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : rahil jafry on 27 / 03 / 2000 13 : 40  to : louise kitchen / hou / ect @ ect  cc : david forster / hou / ect @ ect  subject : re : ed krapels  both dave and i have left messages for this guy ( e - mail as well as voice  mail ) on 4 different occassions - without any response .  louise kitchen  03 / 27 / 2000 01 : 21 pm  to : rahil jafry / hou / ect @ ect  cc :  subject : re : ed krapels  have you managed to get hold of him yet ?  vince j kaminski  11 / 02 / 2000 17 : 23  to : louise kitchen / lon / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : ed krapels  louise ,  thanks . his e - mail address is ekrapels @ esaibos . com . the company  coordinates are as follows :  esai  301 edgewater place , suite 108  wakefield , ma 01880  ( 781 ) 245 - 2036  ( 781 ) 245 - 8706  vince  louise kitchen  02 / 11 / 2000 05 : 13 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : ed krapels  absolutely - i can ' t find the previous email but it may have been lost during  the few days they moved my email box from london to houston - i know i had a  lot of lost emails - do you have his phone number and email and we can sort  out a password for a few days for him too .  louise  vince j kaminski  10 / 02 / 2000 22 : 15  to : louise kitchen / lon / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : ed krapels  louise ,  some time ago i sent you a message regarding ed krapels . he is writing a book  on energy  commodity markets and would like to learn more about eol .  can you give him a call and chat with him for 10 minutes . he is a good  friend of enron and  it would be free ad for us .  vince\",0\n\"Subject: re : hdaf seminar topics  folks :  i have tentatively set the date for our first round - table discussion for  wednesday ,  december 20 th at 3 : 00 pm - 4 : 30 pm . the room , eb 3268 , will be available from  3 : 00 to 5 : 00 pm . if any of you have an issue with the date , please let me  know by  day ' s end .  professor don kouri of the physics department of the university of houston  will start  with an informal 30 - 45 minute presentation ( see appended abstract below ) of  his work  and will then lead a discussion as well answer questions that we may have .  professor kouri , please let me know if you have any requirements for  audiovisual  or other equipment .  this excerpt from a previous correspondence provides an insight to the  subject of our meeting :  [ . . . ] topics to  be discussed at a small ` ` roundtable ' ' format meeting , are :  1 . hdafs for data analysis , including ` ` gap - filling ' ' , data  extrapolation , denoising , mathematical manipulations of digital  data ( e . g . , taking derivatives , applying functions of differential  operators to digital data , etc . )  2 . hdafs as the basis of numerical algorithms for solving nonlinear  partial differential equations , particularly for equations for which  existing methods encounter stability problems .  there are certainly other areas of interest and applications of the  hdafs but i think that even trying to do both of the above in a  single meeting would be difficult . of course , in this first meeting  we would focus on general aspects of the hdafs that make them robust  for such applications . if , however , you have other topics in which  you are interested , i am willing to focus on them .  [ . . . ] \"\"  yannis tzamouranis  yannis tzamouranis on 12 / 11 / 2000 03 : 56 : 49 pm  to : mark tawney / hou / ect @ ect , claudio ribeiro / corp / enron @ enron , joseph  hrgovcic / hou / ect @ ect , vince j kaminski / hou / ect @ ect , todd  kimberlain / na / enron @ enron , vasant shanbhogue / hou / ect @ ect  cc :  subject : hdaf seminar topics  folks :  i am trying to set up a meeting with professor don kouri of the university of  houston and i believe you may have an interest in the topic of discussion .  if you know of other interested parties , or want to substitute a proxy for  yourselves , please let me know .  this first meeting with dr . kouri will introduce the participants to his area  of research ( hdafs for data analysis ) and allow us to define the contents and  attendants of a seminar ( to come up soon ) .  we are looking to hold this discussion this week ( hopefully ) and to have the  seminar happen before christmas ( given that this is the in - between semester  season for schools ) .  a couple of other similar meetings will follow up : dr kevin bassler will be  talking about microscopic simulation of economic markets and dr . pinsky about  the effect of solar phenomena on the earth ' s atmosphere .  yannis  - - - - - forwarded by yannis tzamouranis / hou / ect on 12 / 11 / 2000 03 : 36 pm - - - - -  kouri @ kitten . chem . uh . edu  12 / 11 / 2000 02 : 32 pm  to : yannis . tzamouranis @ enron . com  cc :  subject : hdaf seminar topics  hi yannis ,  i got your email without any problem .  regarding timing of a meeting , i am free from teaching duties now  so i am flexible . i will be in houston all of december . i look  forward to hearing more from you . with best wishes ,  don kouri\",0\n\"Subject: possible rtp conference  dear mr . kaminski :  thank you for talking with me about a possible rtp conference . i would  like to include some discussions of what has been learned in other industries .  as i indicated , frank wolak suggested that i contact you . in discussing  power markets with frank and other colleagues at stanford and epri , it  seems quite evident that real - time pricing for retail customers is the  \"\" forgotten resource \"\" in more efficient power markets . there seems to be a  lot of confusion about what rtp means and it also seems that many  researchers need to address some practical but important problems . i was  asked whether a group like stanford ' s emf might explore this topic and give  it the visibility that would have it considered more seriously by  policymakers .  frank thought that you might be someone who could help me structure a  useful approach and who might also see whether enron could become a major  sponsor . i was hoping that this issue was sufficiently important to enron  that the company might consider providing $ 25 , 000 . as you may appreciate ,  it requires some thought and effort to make sure that the product of the  conference is widely circulated among key government groups .  i would be very interested in hearing from you if you can provide ideas and  recommendations for people ( perhaps yourself or a colleague ) to  participate . i would also appreciate any consideration by enron of  providing funding for this effort .  thank you ,  hill huntington  - retail notes . rtf  hillard g . huntington  emf - an international forum on  energy and environmental markets voice : ( 650 ) 723 - 1050  408 terman center fax : ( 650 ) 725 - 5362  stanford university email : hillh @ stanford . edu  stanford , ca 94305 - 4026  emf website : http : / / www . stanford . edu / group / emf /\",0\n\"Subject: re : forecast rates !  hi vince ,  thank you for sending me the email from don reid regarding the turkey fx and  cpi curve . i received the same email last week and the request has been  taken care of . in fact , he had a very short time line for the request and  had subsequently used outside forecasts for the bid . if the deal goes  through rac , i ' m sure we ' ll get another request for the curve , but for now ,  don said that he doesn ' t need a forecast from us .  regards ,  farouk z . lalji\",0\n\"Subject: hiring aram at a vp level  rick ,  i want to bring aram sogomonian back to enron at s vp level .  according to new human resources procedures this decision requires  a support of three senior executives .  i want to ask you to express your opinion on aram ( based on a phone interview  or just on your past interactions with him ) . you can send a reply to norma  villarreal at h / r .  thanks .  vince\",0\n\"Subject: re : pending approval for ibuyit request for wincenty ( vince )  kaminski : eva : remedy 412144  raul ,  raul ,  vince kaminiski is requesting acces to the technical view for catalog along  with the ibuyit approval role . this is pending your approval . please send  your response to sap security .  thanks !  shirley crenshaw @ ect  04 / 19 / 2001 03 : 01 pm  to : sapsecurity @ enron . com  cc : vince j kaminski / hou / ect @ ect  subject : ibuyit form  attached please find the completed form for vince kaminski , managing  director , research group .  he will be approving all purchases for cost center 107043 .  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 19 / 2001  02 : 58 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : debbie skinner / enron @ enronxgate on 04 / 19 / 2001 02 : 52 pm  to : shirley crenshaw / houston / eott @ eott , shirley crenshaw / hou / ect @ ect  cc :  subject : ibuyit form  hi shirley  there were two shirleys , so sending to both  isc help desk\",0\n\"Subject: follow up  mark ,  over the past several months vince and paul have had some contact with the  authors of this upcoming risk management book . vince and his group are  writing a chapter and the forward , and enron australia will contribute  aus $ 10 , 000 in support of the book . there are a number of apparent legal  issues associated with completing / publicizing this book and marge suggested  that this is an area of interest to you . i handle public relations for  apachi and will try to contact you within the next couple of days to seek  your guidance .  thanks ,  john  - - - - - - - - - - - - - - - - - - - - - - forwarded by john ambler / enron _ development on  02 / 23 / 2000 08 : 37 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  lacima on 02 / 21 / 2000 12 : 29 : 28 pm  to : john ambler / enron _ development @ enron _ development  cc :  subject : follow up  hi john ,  nice talking with you last week .  the following are some of the items that we discussed during own phone  call :  - attached is a copy of the introduction of the book . section 1 . 2  provides a content overview  - we are planning to market the book globally , and feel the market size  is  around 3000  - the authors names are dr chris stickland and dr les clewlow  - mini bio of authors : dr . les clewlow and dr chris strickland hold  associate research positions at both the school of finance and economics ,  university of technology , sydney and the financial options research centre ,  university of warwick , uk . together , they have over 20 years combined  experience in the financial and energy derivative markets and have  published many articles in academic and trade journals . they are the  authors of the book \"\" implementing derivatives models \"\" ( wiley , 1998 ) and  editors of \"\" exotic options : the state of the art \"\" ( itp , 1998 ) . their  forthcoming book \"\" energy derivatives : pricing and risk management \"\" is due  to be published during the second quarter 2000 . currently , their interests  are concentrated in the energy derivatives area , where they have developed  a wide range of pricing tools for electricity options and other energy  derivatives .  could you please provide responses to the following :  - would it be ok if we use the logo for enron , the global company ?  - what will you need from us before printing ? if you need to review the  book jacket or the manuscript , please let us know .  - if enron needs to review anything , how long will it take for enron to  turn it around ?  - we are putting together a leaflet advertising our energy course . we  would like to mention the forthcoming book and that it is being sponsored  by enron . . . is this ok with you ? no logo will be used .  - we would like to produce a leaflet / brochure advertising the book as  well , but this will follow after we have the book cover designed . should i  work with andrew at stokes account ex . on this ?  - how do we handle the money side of things ?  the manuscript is not fully completed , but we may begin typesetting any day  now . i think it will take about 3 - 4 weeks to typeset and then another 3  weeks to print and bind . sometime in late april ?  it looks like we will be in houston around the 7 th of march . . . will you be  around either the 7 th or 8 th ?  i hope you are enjoying your time at home .  let me know if you need anything further .  take care ,  julie  - intro . zip\",0\n\"Subject: re : summer associate mentor  hello ,  this is regarding my mentee . i talked to him today . giuseppe did not receive  the invitation to the thursday  reception .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 06 / 20 / 2000  02 : 58 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  06 / 12 / 2000 08 : 29 am  to : ginger b gamble / hou / ect @ ect  cc : cheryl kuehl / corp / enron @ enron , vince j kaminski / hou / ect @ ect , shirley  crenshaw / hou / ect @ ect  subject : re : summer associate mentor  ginger however , we encourage you  to contact guiseppe prior to the reception if possible .  please rsvp your attendance to cheryl kuehl at x 39804 or by email .  thank you  charlene jackson\",0\n\"Subject: re : 2001 fma european conference  john ,  the books have arrived and i shall fedex them tonight to your university  address ( shown at the bottom of your messages ) .  still fishing for the paper on network economy .  vince  p . s . shirley , the address is at the bottom .  \"\" john d . martin \"\" on 11 / 28 / 2000 11 : 27 : 35 am  to : vince . j . kaminski @ enron . com  cc :  subject : re : 2001 fma european conference  that ' s fine . i didn ' t want to change anything until i heard from you guys .  see ya !  john  at 11 : 06 am 11 / 28 / 00 - 0600 , you wrote :  >  > john ,  >  > thanks . stinson will be able to join us for dinner . he is opting out of  > the paper due to his big workload but we can get his perspective on  > the last 8 years he spent at enron .  >  > vince  >  >  >  >  >  > \"\" john d . martin \"\" on 11 / 28 / 2000 09 : 44 : 17 am  >  > to : vkamins @ enron . com  > cc :  > subject : 2001 fma european conference  >  >  > here ' s the info on the european conference . just for your files .  >  > john  >  > > date : tue , 28 nov 2000 08 : 40 : 39 - 0500  > > from : karen wright  > > subject : 2001 fma european conference  > > to : kwright @ fma . org  > > x - mailer : mozilla 4 . 5 [ en ] ( win 98 ; i )  > > x - accept - language : en , pdf  > >  > > 2001 fma european conference  > >  > > the fifth annual european meeting of the financial management  > > association international ( fma ) will be held may 31 and june 1 , 2001 at  > > the hotel sofitel ( rive gauche ) in paris , france . fma ' s european  > > meeting brings together academicians and practitioners with interests in  > > financial decision - making . the meeting provides a forum for presenting  > > new research and discussing current issues in financial management ,  > > investments , financial markets and institutions , and related topics .  > > keynote addresses and other special presentations will be held in  > > addition to research paper presentations .  > >  > > paper submissions  > > research papers . the program includes traditional research paper  > > presentations . criteria used to determine the suitability of these  > > papers for the program include the nature of the research problem ,  > > implications of the proposed research , the quality of the research  > > design , and the expected contribution of the research to the  > > literature . please note that the purpose of these sessions is to  > > present new and unpublished research .  > >  > > submission fee . there is no submission fee for the fma european  > > conference .  > >  > > submissions . please follow these steps :  > > complete the presentation form that can be downloaded at  > > www . fma . org / paris . htm . carefully select the subject code on the  > > presentation form that most closely describes your research . the code  > > number you select will be used to select reviewers for your proposal .  > >  > > send six ( 6 ) copies of your completed paper , along with the completed  > > presentation form , to the fma office ( financial management association ,  > > university of south florida , college of business administration , tampa  > > fl 33620 - 5500 , usa ) .  > > please note that only completed papers will be accepted for the fma  > > european conference review process .  > >  > > the paper submission deadline is friday , december 1 , 2000 .  > >  > > you will receive an electronic confirmation of your submission within  > > six weeks of its receipt by the fma office , and you will be notified of  > > the results of the reviewing process by the middle of february , 2001 .  > >  > > competitive paper awards  > > the financial management association international is pleased to  > > announce that four ( 4 ) $ 1 , 500 awards will be presented in conjunction  > > with the 2001 fma european conference . the \"\" young scholars \"\" award will  > > be presented to the best paper authored by a ph . d . student ( or  > > equivalent ) or recent ph . d . ( or equivalent ) graduate . three additional  > > $ 1 , 500 awards will be presented to the papers deemed \"\" best of the best \"\"  > > by the members of the 2001 fma european conference competitive paper  > > awards committee . please note that these awards will be made only if , in  > > the opinion of the fma awards committee , a paper warrants such a  > > decision . the decisions of the fma awards committee are final .  > >  > > accepted papers . if your proposal is accepted , the version of the paper  > > you submit will be sent to its discussant as soon as he / she is  > > identified . you are obligated to send the final version of your paper to  > > the discussant and session chair by april 27 , 2001 . you also are  > > obligated to present your paper in a professional manner at the assigned  > > fma program session .  > >  > > the collegiality of the meeting provides a very special opportunity for  > > participants to share their work and to hear about the work others are  > > doing . thus , individuals whose papers are accepted for presentation at  > > the 2001 fma european conference will be expected to either chair a  > > session or discuss a paper .  > >  > > program co - chairs  > >  > > francois degeorge  > > hec paris  > > 1 rue de la lib , ration  > > 78351 jouy en josas cedex  > > france  > > 33 - 1 - 39 - 67 - 72 - 34 ( ph )  > > 33 - 1 - 39 - 67 - 94 - 34 ( fax )  > > degeorge @ hec . fr  > >  > > kent womack  > > dartmouth college  > > amos tuck school  > > hanover , nh 03755  > > 1 603 646 2806 ( ph )  > > 1 603 646 1308 ( fax )  > > kent . womack @ dartmouth . edu  > >  > > additional opportunities for participation  > >  > > session chairperson or discussant . if you wish to serve as the  > > chairperson of a session or paper discussant , but are not submitting a  > > paper , please complete the participation form which can be downloaded  > > from www . fma . org / paris . htm . submit the completed form to the fma office  > > by december 1 , 2000 . session organization will take place in march ,  > > 2001 .  > >  > > deadline summary  > >  > > completed papers : december 1 , 2000  > > chairperson / discussant requests : december 1 , 2000  > >  > >  > >  > john d . martin  > carr p . collins chair in finance  > finance department  > baylor university  > po box 98004  > waco , tx 76798  > 254 - 710 - 4473 ( office )  > 254 - 710 - 1092 ( fax )  > j _ martin @ baylor . edu  > web : http : / / hsb . baylor . edu / html / martinj / home . html  >  >  >  >  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: mg metals : additional areas to look at  dear lloyd & richard ,  i have been discussing with eric gadd about two particular areas of concern  that will affect the london research group . i believe there are a number of  issues to address to ensure that the integration goes smoothly from a risk  management and quantitative analysis perspective , and i have put together a  ( by no means exhaustive ) list : -  i ) seamless transfer of front and middle office systems from an exotic  options linking perspective ( e . g . their spreadsheets link to different option  pricing add - ins )  ii ) development of volatility curves and factor analysis to ensure that we  can capture metals risk in our var system ( we will require historical data  for this ) . i am sure bjorn will be looking to the research group to assist  in this matter .  iii ) ensure that mg staff on quant and risk side become familiar with our  methods and systems and vice versa  these tasks will involve a significant degree of cross - communication with  relevant contacts within mg metals , and so i look forward to starting on the  process as soon as possible - i hope to play a full part from a quantitative  research and risk management perspective to ensure that everything goes  smoothly in this exciting new development , so please do not hesitate to  involve me .  best regards ,  anjam ahmad  research  x 35383\",0\n\"Subject: message from charles shen at williams  dear vince :  how are you ? thanks for coordinating an offer for me .  as i told stinson early this week , i understand that  it is a little bit tricky for enron in term of my  starting date . to be honest , i am very flexible  myself , it really depends on enron . if you want me to  start right now , then i would expect enron to  compensate for my this year ' s bonus . in this case , it  is not quite fair for enron , since now we are already  at the end of october .  another option is that we can work out an offer right  now , and i can start my new job right after i get my  bonus from williams , which should be in the very  beginning of february . this choice is perfectly fine  with me . actually it might be even a little better for  me since williams has had very good year this year .  vince , i just want to tell you that i am very  interested in your group , and very excited about this  opportunity . if you have any questions , please feel  free to call me at 918 - 409 - 4308 .  sincerely ,  charles  do you yahoo ! ?  yahoo ! messenger - talk while you surf ! it ' s free .  http : / / im . yahoo . com /\",0\n\"Subject: imperial capital - thursday schedule  the following is the schedule for thursday ' s meeting with imperial capital .  currently all meetings are scheduled in eb 2868 . we are trying to arrange a  different conference room and will let you know if we obtain one .  9 : 00 am - jim fallon - electricity  9 : 30 am - fred lagrasta - gas  10 : 00 am - lynda clemmons and david kistler - weather  10 : 30 am - ed ondarza - pulp and paper  11 : 00 am - stinson gibner - research  12 noon - lunch  1 : 00 pm - 5 : 00 pm - discussion  thanks in advance to all who will come to speak in the morning .\",0\n\"Subject: eprm training course  dear vince ,  ?  i hope you are well . i am leaving risk at the end of next week and before i  leave i am producing the mathematics for energy derivatives training course .  i have written a programme and attached it to this email and i wondered  whether you could have a look at it and let me know what you think . i also  wondered whether you would be interested in speaking at the course .  ?  i will give you a call on monday to it .  ?  best regards ,  ?  vicky  - mthsprg . doc\",0\n\"Subject: alp proposal  carrie ,  i am sending you , as promised , the draft of my proposal . please , let me know  if it meets your requirements . i shall be glad to revise it and send you the  final version .  vince kaminski  * * * * * * * * * *  one of the most important trends in the energy industry during the last year  was proliferation of electronic , internet based , trading platforms for  wholesale markets and for retail operations . websites such as  www . houstonstreet . com and www . altranet . com provide facilities for matching  buyers and sellers . the website operated by enron corp . ( enrononline )  represents an alternative solution under which enron acts as a principal in  every transaction . on the retail ? side , many retail e - commerce companies  offering auctions , reverse auctions and platforms for creation of buyers \u0001 ,  clubs challenge incumbent utilities . the objective of this project is to  evaluate the impact of e - commerce ( both at the wholesale and retail levels )  on the energy industry . the study will start with comparative analysis of  different wholesale trading and retail e - commerce business models and  evaluation of their long - term viability . the next step will be assessment of  the impact of e - commerce on price dynamics , profit margins and the level of  competition in different energy markets . a separate section will be devoted  to analysis of reaction of companies and organizations affected by e - commerce  ( incumbent utilities , organized exchanges , energy brokers ) to the new  competitive threat , and different strategies they implement to meet the  challenge . organized exchanges have accelerated in many cases the transition  to screen - based trading that has been already replacing open outcry  technology . power and natural gas marketers have created alliances ( with  other industry players , software companies and electronic exchanges ) to  create their own trading platforms . gas and electric utilities embarked on  development of vertical and horizontal e - commerce platforms , offering  services to households and other companies in the energy industry . the  critical question is how quickly different companies should react to the  competitive threats and how fast they should exploit opportunities created by  the internet based economy . it ' s quite obvious that the internet revolution  will change the energy industry ' s landscape during the next few years . the  objective of the project is to provide answers to the questions posed above ,  based on the currently available information . additionally , the participants  should come up with fallback strategies the energy companies should implement  in case the currently ? expected trends fail to materialize .  \u000f _\",0\n\"Subject: aram ' s visit  jesus ,  friday , april 28 , works for me . i am free between 8 : 00 - 10 : 30 to meet with  aram .  would you like to meet him for lunch or dinner ?  vince\",0\n\"Subject: re : dragon curves ( thai baht forecast )  we have prepared the attached two reports to accompany the thai baht forecast  we produced on 13 september 2000 ( the previous curve was dated 15 may 2000 ) .  the first report provides specific economic factors that formed the basis for  our baht forecast decisions in september .  the second report is an analysis of ppp theory and foreign exchange  forecasting with a detailed discussion of its propriety to the economic  outlook and exchange rate forecast for thailand .  regards ,  maureen raymond - castaneda and gwyn koepke\",0\n\"Subject: interview schedule for ben zhang  attached please find the interview packet for the above - referenced person .  the interview will happen thursday august 17 , 2000 . please print all three  documents for your hard copies . if you have any questions , or conflicts of  schedule , please do not hesitate to contact me .  sean grady  58701\",0\n\"Subject: re : your visit with vince kaminski - enron corp . research  dear mr . fujita :  i will be glad to make the dinner arrangements . i will make reservations at  the \"\" latour d ' argent \"\" restaurant located at 2011 ella blvd at t . c . jester .  for 6 : 30 pm on the 17 th . they do require a coat .  i believe most of the cabs will know where it is - but just in case :  \"\" take i - 45 north to 610 east , go to the ella blvd exit and turn left ( back  under the freeway ) on ella blvd . go to 2011 ella blvd . ( on the right ) . \"\"  look forward to having you at enron .  thank you .  sincerely ,  shirley crenshaw  713 - 853 - 5290  masayuki fujita on 04 / 05 / 2000 11 : 44 : 48 am  to : shirley . crenshaw @ enron . com  cc :  subject : re : your visit with vince kaminski - enron corp . research  dear ms . crenshaw :  we are very glad to see professor kaminski has taken our proposal to have  a dinner on  17 th . i would like to take your very kind offer to arrange the place to have  dinner . we  are now arranging to stay four seasons hotel . it is just a second time to  visit houston  and we will not have a car , but may use a taxi between hotel and restaurant .  please give  us a recommendations . i wonder if four seasons have a good one .  best regards ,  masayuki fujita  principal financial engineer  financial technologies section  mitsubishi research institute , inc .  3 - 6 otemachi 2 - chome , chiyoda - ku  tokyo 100 - 8141  japan  tel + 81 - 3 - 3277 - 0582  fax + 81 - 3 - 3277 - 0521  > dear mr . fujita :  >  > professor kaminski will be delighted to have dinner with you and your  > colleague mr . yamada . i have put you on his calendar at 3 : 00 pm . with  > dinner to follow in early evening .  >  > please let me know if you would like me to make dinner reservations  > for you .  >  > sincerely ,  >  > shirley crenshaw  > administrative coordinator  > enron corp . research group  > 713 / 853 - 5290\",0\n\"Subject: re : greeting from charles  happy new year to you as well , charles . i have not heard anything from  vince ; let me check with him , and i will be back in touch with you .  molly  enron capital & trade resources corp .  from : charles shen  01 / 07 / 2001 10 : 41 am  to : molly . magee @ enron . com  cc : vince . j . kaminski @ enron . com  subject : greeting from charles  dear molly :  happy new year ! haven \u0001 , t talked to you for a while ,  hope you and your family had a great holiday . i can \u0001 , t  believe we are already in 2001 !  i remember we had talk last december , and you were  basically waiting for the response from vince , have  you heard anything back from vince yet ? since we are  already in january , i really hope we can move forward .  if you have any questions , please feel free to call me  at 918 - 409 - 4308 . thank you .  sincerely ,  charles  do you yahoo ! ?  yahoo ! photos - share your holiday photos online !  http : / / photos . yahoo . com /\",0\n\"Subject: re : purchase  david ,  can you use my mm funds to cover thislast purchase ?  i need to request another check from pwj  and it takes always time .  vince  \"\" walkup , david c ( houstonas as 582 ) \"\" on 06 / 29 / 2000  10 : 52 : 54 am  to : \"\" ' vincent kaminski ' \"\"  cc :  subject : purchase  we made the cd purchase for you today . don ' t forget to mail the check . i  mailed you the receipt from the deposit . i will call you towards the end of  july and we can discuss your stock option exercise on 8 / 12 .  thanks for coming by the office yesterday and have a great trip to  australia .  david c . walkup  senior financial consultant  713 - 658 - 1685  800 - 456 - 9712  caution : electronic mail sent through the internet is not secure and could  be intercepted by a third party . for your protection , avoid sending  identifying information , such as account , social security or card numbers to  us or others . further , do not send time - sensitive , action - oriented  messages , such as transaction orders , fund transfer instructions , or check  stop payments , as it is our policy not to accept such items electronicall\",0\n\"Subject: reminder - enronanywhere portal project meeting  you are scheduled to attend the enronanywhere portal project meeting .  when : wednesday , april 18 , 2001  where : eb 50 m dining room  time : 12 : 00 - 4 : 00  lunch will be served .  thank you in advance for helping us to create one enron . your attendance and  participation is certain to make this project a huge success .  call me if you have any questions .  thanks ,  marie hejka  enronanywhere  3 9698  p . s . note , we decided not to send a pre - workshop assignment .  see you there .\",0\n\"Subject: new analyst joining research group  all  on monday 21 st february a new analyst will be joining enron europe , and will  have his first rotation in the london research group .  matthew williams has a phd in high energy physics , having carried out his  research at imperial college london and cern . his academic experience  includes extensive monte carlo simulation as part of his research on the  phenomenology of supersymmetry theories .  matthew will be working with me on issues arising from the optimisation and  control of dynamic systems , which we expect to include power generation  scheduling and gas flow .  steve\",0\n\"Subject: meeting to be rescheduled  all :  the meeting scheduled for tomorrow from 11 - 12 : 00 to discuss enron ' s needs  from the mit / aa new value research lab has been postponed to allow for  additional time to confer with aa . new date / time will be set once add ' l  information is gathered .  thanks .  amy\",0\n\"Subject: re : conference  phelim ,  thanks again for the invitation to speak at the conference .  the program was very interesting and i learned a lot .  i hope you can visit us in houston sometimes in the next few months .  vince  phelim boyle on 05 / 30 / 2000 10 : 11 : 26 am  to : vince . j . kaminski @ enron . com  cc :  subject : conference  vince  thank you very much for coming to the conference and for  your excellent overview  it was a pleasure meeting you  i hope we can stay in touch  phelim  - -  phelim p boyle  director  centre for advanced studies in finance ,  university of waterloo ,  waterloo , ontario  canada n 2 l 3 gl  tel 519 885 1211 ( 6513 )  fax 519 888 7562\",0\n\"Subject: re : enron credit modeling discussions  hi again ,  some of you have been kind enough to supply me with information that can be  used for the strategic plan ( i am writing for duffie ) .  to assist you in gathering further information , it was suggested that i  forward a preliminary outline of this strategic plan to your attention .  thanks in advance for your assistance ,  iris  table of contents  executive summary  highlights  introduction  what is enron credit ?  what is the business plan ?  what are the products planned ?  current status : what we currently trade , how we price .  what new models we need to achieve goals .  what attempts are being made internally and what external commercial sources  are available .  swot analysis  strengths  weakness  opportunities  threats  pricing approach  a diagram illustrating how various models are tied together for the overall  objective of coming up with final cds and dbs pricing .  brief description of each model shown in the diagram .  public firm versus private firm  what we have as first cut for modeling primarily public firms .  our understanding on public versus private firms \u0001 , credit risk  characteristics , data availability and possible modeling approaches .  our proposed approach / plan towards development of private firm model ,  including comparative analysis , model development , etc . .  portfolio level business feasibility analysis  accounting breakeven analysis  portfolio theory  alternative ( short term ) measures  kmv \u0001 , private firm model  moody \u0001 , s riskcalc model for private firms  comparison of kmv vs moody \u0001 , s private firm model  future strategy  development of private firm pricing models ( short - and long - tenor modelso  completion of parent / subsidiary model  risk management model for ect business  references\",0\n\"Subject: e & p model  vince - attached is the most recent e & p version of the old corporate cash  flow model that i could find . note that \"\" most recent \"\" still dates it back a  few years . a couple caveats : i did try to clean it up somewhat from old  macros , but no guarntees offered . also , some of the underlying methodology  is not what we would probably currently use , such as for pricing , stochastic  processes , and perhaps decline rates .  please let me know if i can provide any additional help .  mark\",0\n\"Subject: enron research and ebs engineering and operations group technical  forum  ken ,  i would like to invite you to an off - site meeting of john griebling ' s  organization  and the research group .  date : april 27 - april 29  location : breckenridge , colorado  as you know , john griebling is managing the network design and construction  project  currently under way in ebs . the research group is actively involved in this  effort  which requires advanced quantitative skills in the area of stochastic  optimization and  stochastic processes ( for modeling and forecasting internet traffic flows ) .  the objective of this meeting is to develop common language and accomplish  transfer  of skills between the two groups , to facilitate cooperation on this project  in the future .  we are inviting joe hirko and kevin hannon to this meeting . we would  appreciate if you could  speak , together with joe and kevin , on strategic directions of ebs . it is  important for a group  of technical people , with relatively specialized technical skills , to  understand the big picture .  i am attaching the preliminary agenda for this meeting .  vince\",0\n\"Subject: re : for your approval  approved  information risk management  12 / 01 / 2000 09 : 50 am  to : gary taylor / hou / ect @ ect , vince j kaminski / hou / ect @ ect , stinson  gibner / hou / ect @ ect  cc :  subject : for your approval  please let me know if he is approved .  thanks ,  erica garcia  - - - - - - - - - - - - - - - - - - - - - - forwarded by information risk management / hou / ect on  12 / 01 / 2000 09 : 39 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  security resource request system  directory line item pending access processing  directory name : o : \\ weather derivatives \\ , o : \\ research \\ common  service type : grant  expiration date :  comments :  security processing  processing status :  e - mail message :  comments / justification :  general information request : jhrc - 4 rkjjz  requested by : joseph hrgovcic / hou / ect phone : 33914  requested for : joseph hrgovcic / hou / ect employee type :  company : 0011 rc # : 100038  priority : high  comments / justification : i have a test windows 2000 machine running ( with  userid t _ weatherol , for which i need access to o : \\ research \\ common and  o : \\ weather derivatives \\  editing history ( only the last five ( 5 ) are shown )  edit # past authors edit dates  1 information risk management 11 / 30 / 2000 12 : 30 : 19 pm\",0\n\"Subject: re : get together this coming tuesday ?  dale ,  i can reserve 2 to 2 : 30 time slot but there is really not much that  i can tell you at this point .  the commercial groups are still interested and are moving  towards the test of the package . as soon as they will decide  to move ahead , we ( research ) shall be involved , helping to evaluate the  product . as i have said , we are not the  decision makers in this case .  i think that we should allow simply the process to run its course .  vince  \"\" dale m . nesbitt \"\" on 04 / 30 / 2001 05 : 59 : 30 pm  please respond to  to :  cc :  subject : re : get together this coming tuesday ?  vince :  i will call tomorrow in the morning . lunch or right after lunch would be  great . how would 100 pm work for you ?  dale  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : monday , april 30 , 2001 3 : 07 pm  to : dale . nesbitt @ marketpointinc . com  cc : kimberly . watson @ enron . com ; vince . j . kaminski @ enron . com  subject : re : get together this coming tuesday ?  dale ,  please , call me on tuesday . my morning schedule is full but i am open in  the afternoon .  vince  \"\" dale m . nesbitt \"\" on 04 / 30 / 2001 01 : 51 : 21  am  please respond to  to : \"\" vincent kaminski \"\" , \"\" kimberly s . watson \"\"  cc :  subject : get together this coming tuesday ?  vince / kim :  i am flying to houston tonight and wondered if it would fit one or both of  your schedules to get together this coming tuesday sometime for 1 / 2 hour or  so . i really want to reinitiate the conversations marketpoint was having  with john goodpasture and you , and he said either or both of you were the  right people to continue after his responsibility shift . john was quite  positive about the idea of enron acquiring marketpoint narg through  license ,  and he implied that one or both of you would be carrying the ball in that  direction after he handed it to you .  would this coming tuesday morning at 930 am be a good time for you guys ?  if  so , please give me an email shout at the above address or leave a message  on  my voicemail at ( 650 ) 218 - 3069 . i think you will be truly impressed with  the  scope and progress we have been able to make with both the short run narg  and the long run narg in which you were interested ( not to mention our  power  model ) . the progress is noticeable since you saw it . both long and short  term narg are having quite an impact on a number of gas decisions at the  moment ranging from venezuelan lng , north american lng import terminals and  term , gas basis calculations , trading support , power plant development ,  gas - to - power price spreads in key markets , veracity of heat rate trades ,  bank financings , storage field evaluation , and which new pipelines we can  expect to see enter and which are dogs .  i really hope we can fit it in and get our discussions moving in a mutually  productive direction again . i think narg can help you become even more  successful , and i look forward to working with you .  we have a new office address and new phone number as well . ( we move in may  1 . )  altos management partners  95 main street , suite 10  los altos , ca 94022  ( 650 ) 948 - 8830 voice  ( 650 ) 948 - 8850 fax  ( 650 ) 218 - 3069 cellular  give the phones a week or so to get \"\" debugged \"\" and then switch over .  dale\",0\n\"Subject: ne gov . johanns mtg  vince , fyi on nebraska , this note i recently sent to maureen .  - - - - - - - - - - - - - - - - - - - - - - forwarded by rob wilson / et & s / enron on 03 / 16 / 2000 02 : 31  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : rob wilson 03 / 07 / 2000 03 : 19 pm  to : maureen raymond / hou / ect @ ect  cc : beth jensen / npng / enron @ enron , mike mcgowan / et & s / enron @ enron , dee  svatos / npng / enron @ enron , julie mccoy / et & s / enron @ enron , virginia  o ' neill / et & s / enron @ enron  subject : ne gov . johanns mtg  maureen ,  the energy ceo roundtable hosted by gov . johanns has been scheduled for  april 20 th 10 a . m . - 2 p . m . does this date work for you ? as we have  discussed , your presentation would provide the governor and his guests with a  national / global perspective on pricing trends for natural gas , electricity  and oil and their impact on agricultural production costs . we may also  include a hedging presentation , but have not committed to do so yet .  your presentation would be scheduled at the start of the meeting , w / an  anticipated length of twenty minutes . a university of ne ag economist will  provide a state perspective for the group . following the conclusion of both  presentations time would be allotted for questions . we expect approximately  20 people to attend the roundtable .\",0\n\"Subject: the delivery of the equipment you ordered is scheduled .  - - - automatic notification system ( request # : ecth - 4 rstt 6 )  requested for : vince j kaminski  requested by : shirley crenshaw  your order ( see below ) has been assigned to felix buitron . technician will  contact you for information and delivery time . please contact the technician  if you have any question .  en 6600 128 mb installed in desktop  en 6600 desktop p 3 - 600 10 gb 64 mb 32 x nt 4 . 0  en 6600 128 mb installed in desktop\",0\n\"Subject: hello  hello , vince .  i haven ' t heard from you in a while .  we have a new issue monthly pay agency this morning . here it is :  issuer : fed . national mortg . assoc .  term : 5 yr final , non call 1 year  coupon : 7 . 26 %  maturity : 3 / 14 / 2005  callable : 3 / 14 / 2001 @ par  interest : monthly starting on 4 / 14 / 2000  rating : aaa ( moodys )  this new issue won ' t be in long . no cost or commission to buy . give me a  call .  david c . walkup  financial consultant  713 - 658 - 1685  800 - 456 - 9712  caution : electronic mail sent through the internet is not secure and could  be intercepted by a third party . for your protection , avoid sending  identifying information , such as account , social security or card numbers to  us or others . further , do not send time - sensitive , action - oriented  messages , such as transaction orders , fund transfer instructions , or check  stop payments , as it is our policy not to accept such items electronicall\",0\n\"Subject: re : managing energy price risk articles  ross ,  i shall call risk on thursday .  vince  shirley , please , remind me about it .  from : ross prevatt 05 / 23 / 2000 12 : 19 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : managing energy price risk articles  hi vince , i have a quick question for you . the eol folks want to put a  couple of articles from the risk book ( managing energy price risk ) on the  internet . i told them that would be a copywrite violation . is there  someone at risk they could call to get permission for this , or is it even  worth calling ? thanks  ross\",0\n\"Subject: re : times 2 filing units  pat : out co # is 0413 , rc # is 107043 . please deliver them to eb 19 c 2 .  also , please let me know when they are going to be delivered as we have to  unload the lateral file cabinets that are currently in that room . will the  men who deliver the times 2 units remove the lateral files ? thanks . anita\",0\n\"Subject: re : howard confirmation  jeff ,  i cannot interview howard on tue ( business trip ) .  i think the organization is very interested in him .  i don ' t know what \"\" illicts your attention \"\" means .  vince  \"\" $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ \"\" on 02 / 16 / 2001 03 : 02 : 36 pm  please respond to \"\" $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ \"\"  to : vince . j . kaminski @ enron . com  cc :  subject : howard confirmation  hi vince , i ' m on vacation from friday ( today ) until tuesday . rachel / london  sent me this confirmation last night and think it illicts your attention - did  they get it right to meet you satisfaction ? i hope your interview goes well  with howard too . it ' s all set .  any feedback on the guys from ford credit and citigroup / oxford university ? i  own them outright - no other firms involved ! fyi : my fees are always much less  on these candidates ( exclusive ownership by myself ) as there are no middlemen  involved from these \"\" other firms \"\" . i luckily have been attracting very  talented candidates with just doing business \"\" as myself \"\" rather than mri . i  am very encouraged . please check them out , vince . . . as you know - i always  send you them first then on to my other clients - if you reject them .  bye vince , thank you for the business !  jeff  ps - use my cellphone if you want me ( the next 4 days ) for anything ; i ' m here  for you - 949 813 2241  candidate ' s name : howard haughton  date of interview : tuesday 20 february 2001  time of interview : 2 . 00 pm  interviewers : david weekes enron credit sales  & marketing  mark leahy enron credit sales &  marketing  bryan seyfried enron credit executive  markus fiala enron credit trading  robina barker - bennett enron credit  syndication  ted murphy executive rac  each interview will be approximately 45 minutes .  address : 40 grosvenor place  london  swlx 7 en  switchboard : 020 7783 - 0000  closest tube / train station : victoria  to ask for : david weekes at main reception  location map attached  ( see attached file : location map . pdf )  i will take this as confirmed unless i hear otherwise from you . if you  would like to discuss this please contact me on 020 7783 5677 .  regards  rachel quirke  human resources  * get free , secure online email at http : / / www . ziplip . com / *\",0\n\"Subject: re : hello  sounds great - - i ' ll coordinate with shirley . jacob was very excited about his  prior meeting with you and the group .  molly  - - - - - original message - - - - -  from : kaminski , vince  sent : tuesday , may 01 , 2001 4 : 42 pm  to : magee , molly  cc : kaminski , vince ; krishnarao , pinnamaneni ; watson , kimberly  subject : re : hello  molly ,  kim watson would like us to bring jacob for another interview .  we can do it later this week .  vince  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 05 / 01 / 2001  02 : 22 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : kimberly watson / enron @ enronxgate on 05 / 01 / 2001 09 : 17 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : hello  hi vince ,  if you are still interested in bringing back this gentleman back for another  interview , i would very much like to meet with him . sean talked with him  when you brought him in a few weeks ago and he thought it would be a good  idea for me to meet with him so we can compare thoughts .  thanks , kim .  - - - - - original message - - - - -  from : kaminski , vince  sent : monday , april 16 , 2001 1 : 21 pm  to : watson , kimberly  cc : krishnarao , pinnamaneni ; kaminski , vince  subject : re : hello  kim ,  this is a letter from one of the job applicants who works for pros .  it seems that the system they develop for williams  is more a scheduling system .  would you like to ask him to come back for another interview ,  to get more information out of him ?  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 16 / 2001  01 : 18 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  >  \"\" jacob y . kang \"\" on 04 / 11 / 2001 11 : 18 : 44 pm  to : vince . j . kaminski @ enron . com  cc :  subject : re : hello  dear vince :  it was so nice meeting and talking with you too . i did  not take any pen back , i lost my pen too somewhere in  enron .  as i mentioned to you , after i got my ph . d in 1999 , i  have been working two years as lead scientist and  science manager in energy division at pros revenue  management inc . in houston .  i developed and implemented the mathematical models  for trading optimization system and firm  transportation optimization system .  the trading optimization system becomes the most  popular product in the industry this year . duke energy  just signed the contract to buy this product  yesterday . conoco and williams also signed the  contracts for it . according to pros sales department ,  the potential marketer to buy this product exceeds 15  companies in one or two years .  enron is the ideal place for me to continue my  research and system developing efforts to combine  revenue management with risk management . i am  confident that i can make significant contributions to  enron in this area .  i would like to thank you again for giving me this  opportunity to come to enron for this interview . i am  looking forward to having the opportunity to work in  enron .  sincerely yours  jacob  - - - vince . j . kaminski @ enron . com wrote :  > jacob ,  >  > it was nice meeting you . did take by any chance  > my pen ? if not , i apologize .  >  > vince  >  do you yahoo ! ?  get email at your own domain with yahoo ! mail .  http : / / personal . mail . yahoo . com /\",0\n\"Subject: thanks  dear mr . kaminski :  thank you very much for the interview today . it was a great opportunity for  me to learn more about your company , and my pleasure to speak with you . i  feel that the position is very interesting and challenging . i am confident  that i can make solid contributions to the company with my background and  the training received from the mscf program .  thanks again , and i am looking forward to hearing from you soon .  sincerely ,  hao peng\",0\n\"Subject: re : new color printer  monday will be perfect !  location - ebl 944 b  r . c . 0011  co . # 100038  thanks  kevin moore  - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 12 / 14 / 99 10 : 44  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron technology  from : lyn malina 12 / 14 / 99 09 : 22 am  to : kevin g moore / hou / ect @ ect  cc :  subject : re : new color printer  i will order today for delivery on monday , unless you need faster delivery .  please advise co / rd to charge against .  thanks  lyn  kevin g moore  12 / 14 / 99 09 : 21 am  to : lyn malina / hou / ect @ ect  cc :  subject : re : new color printer  - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 12 / 14 / 99 09 : 17  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  kevin g moore  12 / 14 / 99 08 : 13 am  to : vince j kaminski / hou / ect @ ect , mike a roberts / hou / ect @ ect  cc :  subject : re : new color printer  yes ! right away , please  also let me know the e . t . a .  thanks , lyn  kevin moore\",0\n\"Subject: power 2000  to all whom it may concern :  i would like to register my associate zimin lu as my guest  at power 2000 conference in houston in may . thanks .  vince kaminski  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 17 / 2000  08 : 04 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  shirley crenshaw  02 / 16 / 2000 12 : 58 pm  to : vince j kaminski / hou / ect @ ect  cc : zimin lu / hou / ect @ ect  subject : power 2000  vince :  i tried to register zimin and they said that you would have to do it - since  you are the speaker and the spot is your free spot .  you can email them the information . they will need :  name : zimin lu  title : director  company : enron corp .  address : 1400 smith street ebl 967  phone : 713 - 853 - 6388  conference name : power 2000 - houston , tx - may 9 & 10 , 2000  email the information to : conf @ risk . co . uk  thanks !  shirley  3 - 5290  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 02 / 16 / 2000  12 : 54 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  zimin lu  02 / 15 / 2000 02 : 22 pm  to : shirley crenshaw / hou / ect @ ect  cc :  subject : power 2000  shirely ,  could you register me for the power 2000 conference in houston as vince ' s  guest ?  since vince is a speaker , i can attend for free .  zimin  to : zimin lu / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : power 2000  zimin ,  you are the lst . feel free to register as my guest .  vince  zimin lu  02 / 14 / 2000 02 : 59 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : power 2000  vince ,  could you take me as your guest for the power 2000 conference if  no one has asked already ?  there are a few interesting topics i would like to hear .  zimin\",0\n\"Subject: re : new lacima publication  fiona ,  yes , this is correct . please , use vincent rather than vince .  i used my full name on other publications .  vince  \"\" fiona j sperryn \"\" on 10 / 12 / 2000 10 : 34 : 42 am  to :  cc :  subject : new lacima publication  ?  dear vince  ?  lacima are pleased to announce the publication in october of their new book  ' energy derivatives - pricing and risk management ' by les clewlow and chris  strickland . please could you confirm that the address below is correct ? so  that we can send out a copy to you .  ?  vince kaminski  enron corp  1400 smith street \u0001 ) ebl 962  houston , tx 77002\",0\n\"Subject: fw : opportunities  dear sir :  i have attached my resume for your review . i have meetings from 8 - 9 , and  10 - 2 tomorrow . when would it be best for me to call you ?  cordially ,  gerry  - - - - - original message - - - - -  from : lloyd . will @ enron . com [ mailto : lloyd . will @ enron . com ]  sent : wednesday , october 25 , 2000 12 : 12 pm  to : vince . j . kaminski @ enron . com  cc : gsheble @ iastate . edu  subject : re : opportunities  thanks vince .  i have contacted him and have given him your phone number .  he will attempt to contact you thursady or friday .  good luck .  vince j kaminski  10 / 24 / 2000 03 : 59 pm  to : lloyd will / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : opportunities ( document link : lloyd will )  lloyd ,  yes , i would be very interested .  vince  lloyd will  10 / 24 / 2000 02 : 45 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : opportunities  vince would you be interested in this professional .  i would be glad to facilitate a conference call .  thanks .  - - - - - - - - - - - - - - - - - - - - - - forwarded by lloyd will / hou / ect on 10 / 24 / 2000 02 : 43  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" sheble , g . b . \"\" on 10 / 17 / 2000 04 : 52 : 57 pm  to : \"\" ' lloyd . will @ enron . com ' \"\"  cc :  subject : re : opportunities  loyd  i tried to call yesterday , but you were out of the office . my schedule  follows , would you want to pick a time for me to call you or send me a list  of times to pick ?  gerry  fall 2000 teaching schedule  ee 553 mtwr 10 - 11 am curtis hall 308  engr 161 mw 2 - 4 howe hall 2228  other commitments  m 11 - 12 ep & es  m 1 - 2 office hours  t 12 - 2 ep & es seminar  t 2 - 3 office hours  t 3 - 4 pserc  t 5 - 6 epri - dod  w 11 - 12 office hours  w 4 - 9 dsm  r 11 - 12 office hours  f 11 - 12 p & t  f 1 - 3 cas  f 3 - 4 departmental meeting  - - - - - original message - - - - -  from : lloyd . will @ enron . com [ mailto : lloyd . will @ enron . com ]  sent : monday , october 16 , 2000 8 : 00 am  to : sheble , g . b .  subject : re : opportunities  give me a call any time to discuss things .  713 - 853 - 3383 .  thanks .  \"\" sheble , g . b . \"\" on 10 / 15 / 2000 02 : 17 : 02 pm  to : lloyd will / hou / ect @ ect  cc :  subject : re : opportunities  lloyd  i am attaching another resume for your review , please pass it along if  there  is any interest .  i would also like to discuss opportunities with you as i expect to graduate  with my mba summer 2001 .  cordially ,  gerry  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  gerald b . shebl ,  professor , electrical and computer engineering  director of complex adaptive systems program  1115 coover hall  ames , iowa 50011  voice : 515 . 294 . 3046  fax : 515 . 294 . 4263  email : gsheble @ iastate . edu  web : http : / / www . ee . iastate . edu / ~ sheble /  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  - short _ resume . doc\",0\n\"Subject: re : summer internship position  ravi ,  charlene wants the entire batch of potential summer intern resumes sent to  her in one step .  i want to complete this by friday . catch me after lunch to talk about it .  vince  ravi thuraisingham @ enron communications on 02 / 17 / 2000 10 : 11 : 36 am  to : vince kaminski  cc : april hodgson / enron communications @ enron communications , matt  harris / enron communications @ enron communications , stinson gibner / hou / ect @ ect ,  charlene jackson @ enron , celeste roberts / hou / ect @ ect  subject : re : summer internship position  hi vince , paulo oleira ( one of the m . i . t attending our meeting on wed ) ' s  research interest turned out to be a match for april hodgeson ( vp of content  origination ) . i had him talk to april ( stinson was on the call as well ) to  discuss his research interest and what he would likely to do for april . i  suggested ( and april agrees ) that paulo would intern with her and matt and  perform research on how end users ( consumers and business ) improved  experience with epowered content can be quantified . this may include  performing control experiments at m . i . t . we decided not to over specify what  he would do since it is likely to change as soon as he arrives . i suggested  once he starts , he will work with april and matt harris ( vp enterprise  origination ) and they will define what the student needs to complete for the  internship .  addiontionally , tom gros agrees that this type of research are needed and  this is a great way to start .  i will proceed to have recruiting contact the student with an offer to start  around may 22 , 2000 unless someone tells me otherwise .  regards ,  ravi .  p . s . charlene , please include paulo in your may 22 , 2000 start group . paulo  will report to me within ebs research group but will work on a day - to - day  basis with april and matt . as you ' ve mentioned that compensation is somewhat  fixed but please keep in mind that this person is a phd candidate with very  specialized skill set . please contact vince before extending an offer that  may be too low , etc .  - - - - - forwarded by ravi thuraisingham / enron communications on 02 / 17 / 00 09 : 27  am - - - - -  charlene jackson @ enron  02 / 17 / 00 08 : 25 am  to : vince j kaminski / hou / ect @ ect  cc : celeste roberts / hou / ect @ ect , vince j kaminski / hou / ect @ ect , ravi  thuraisingham / enron communications @ enron communications @ ect  subject : re : summer internship position  celeste ,  we need to make sure that the interns in vince ' s group are coordinated and  incorporated with the rest of the summer associates . they should be offered  the same starting dates , i believe they are may 22 , 2000 june 5 , 2000 . i am  not sure about the june date . would you check and let vince know . they  should also be offered the same starting salary package as the others . they  will be included in training ( a few days ) and any other events we host .  thanks\",0\n\"Subject: the impact of ecuador ' s heavy crude pipeline : prospects for  capacity - cera conference call & web presentation  title : the impact of ecuador ' s heavy crude pipeline : prospects for capacity  url : http : / / www 20 . cera . com / eprofile ? u = 35 & m = 2293  now available :  a prerecorded cera conference call  me & event = w 520557  hosted by premiere conferencing  presented by dr . rene ortiz , lisa pearl , alberto bullrich  * * end * *  follow above url to gain access to the recording of the conference call  and web presentation .  e - mail category : conference call & web presentation  cera knowledge area ( s ) : latin american energy ,  to make changes to your cera . com account go to :  forgot your username and password ? go to :  http : / / www 20 . cera . com / client / forgot  this electronic message and attachments , if any , contain information  from cambridge energy research associates , inc . ( cera ) which is  confidential and may be privileged . unauthorized disclosure , copying ,  distribution or use of the contents of this message or any attachments ,  in whole or in part , is strictly prohibited .  terms of use : http : / / www 20 . cera . com / tos  questions / comments : webmaster @ cera . com  copyright 2001 . cambridge energy research associates\",0\n\"Subject: anshuman shrivastava  sandeep : vince has asked me to coordinate with margaret daffin in our  international group to ensure that we acquire an ll visa for anshuman . this  visa has to be in place before he will be able to work in the united states  in any capacity . ( anshuman cannot work in the us on a b - 1 visa - - he can only  come here for business meetings or training . ) there are still several items  remaining to be completed for the l - 1 process . the first is a fairly  detailed job description for anshuman . secondly , we will need to know  whether or not he will either be in a managerial position or whether he will  be managing a project while he is here in houston . vince thought that you  would be best able to provide this information to us , and we would really  appreciate anything you can do to help us expedite this process .  if you have any questions , please give me a call at x 34804 . thank you for  your help .  molly magee\",0\n\"Subject: re : recruiting  good afternoon . packing emails - - its just my style : )  currently , it is my understanding that we would like to interview the comp .  fin . students during the same period that we interview the mba ' s .  tentatively speaking , one schedule should be sufficient . i will attempt to  produce an official job description shortly .  kristen is out of town for the remainder of the week , so her response to any  inquiries may be delayed . her contact info : kristin . gandy @ enron . com 713  345 3214  regarding the satellite program , vince is interested in the ecommerce  program . we think that it would be easier to keep the program full as  compared to the comp . fin . program .  it was a pleasure to be back in pittsburgh and i enjoyed meeting all the  students from this year ' s comp . fin . class . i look forward to seeing you in  a few weeks .  - kevin kindall  jean eisel on 11 / 06 / 2000 03 : 34 : 05 pm  to : kevin . kindall @ enron . com  cc : sgould @ andrew . cmu . edu  subject : re : recruiting  hi kevin  wow you sure do pack one e - mail .  i will try to answer questions . . . after each of you . . . look in the email  for answers .  - - on monday , november 06 , 2000 , 2 : 39 pm - 0600 kevin . kindall @ enron . com wrote :  > hello . it was a pleasure to come back to cmu , and i enjoyed  > interacting with the students . vince k . has expressed interest in  > interviewing the computational finance students . enron will conduct first  > round interviews with the mba students in december , and would like to set  > up seperate interviews for the comp . fin . students . enron would like to  > interview all the pittsburgh based comp . fin students , and we need to  > select a date and a time .  we are excited that you want to interview the comp finance students .  do you want to do it in dec . or before ? let me know what best suits you .  since there are only 16 individuals in the pittsburgh area . . . we should be  able to accomodate you . . . would you want one or two schedules . . ?  what is the formal protocol in such matters ?  >  all you need to do is let me know some ideal dates . . . and you send a job  description and names of the students you want to interview .  we will try to be as accomodating as possible .  > enron is also interested in the ecommerce students as we have  > ecommerce initiatives underway . it is my understanding that kristen  > gandy will be the contact for such activities .  if you can send me an e - mail address for kristen , i can get this strating  asap .  >  > regarding a houston based satellite program , vince needs a proposal  > in writing . would you be so kind as to send one ?  what program is vince interested in having a satellite program ? when he was  here he seemed less intererted in comp finance and more interested in  e - commerce .  i sent a note to michael shamos and tridas discussing this .  let me know which program and i will see if we can work anything out ?  > thanks so much , and i look forward to seeing you again in a few  > weeks .  >  thanks kevin for you speedy response .  >  >  >  >  jean e . eisel , ph . d .  associate dean , admissions , coc and alumni relations  gsia  carnegie mellon university  pittsburgh , pa 15213  412 - 268 - 2277  412 - 268 - 4146 ( fax )  currently in the news : carnegie mellon university mba program ranked 14 th  in business week ' s list of the best graduate schools of business in the  united states . \",0\n\"Subject: re : real options openings ?  vince ,  thanks very much - i ' m looking forward to it ,  chris  at 09 : 25 am 5 / 8 / 00 - 0500 , you wrote :  >  > chris ,  >  > we shall make arrangements to bring you over for an interview .  > our hr department will contact you later this week .  >  >  > vince  >  >  >  >  >  > christopher m kenyon on 05 / 05 / 2000 07 : 56 : 11 am  >  > to : vkamins @ enron . com  > cc :  > subject : real options openings ?  >  >  > dear vince kaminski ,  > i was auditing prof dyer ' s real options class on thursday when you  > spoke  > on enron ' s activities in this area . i would be interested in exploring the  > possibility of joining the group that works on real options in response to  > and in anticipation of enron ' s business requirements . i ' m currently  > working in the development and application of real options methodology at  > schlumberger . in particular i ' ll be speaking at an industry real options  > valuation conference in london ( http : / / www . iqpc . co . uk / finance / rov / ) and i  > just had the paper accepted for publication in operations research . could  > you pass my resume on to the relevant people to have a look at ?  >  > thanks in advance ,  >  > chris kenyon  >  > ( see attached file : cmkenyon _ cv _ mayo 0 . doc )  >  >  >  >  >  > attachment converted : \"\" c : \\ eudora \\ attach \\ cmkenyon _ cv _ mayo 01 . doc \"\"  >\",0\n\"Subject: internship opportunity  dear mr . kaminski ,  it was very nice to talk with you saturday morning during the \"\" voleyball  event \"\" . thanks a lot for offering your help in passing my resume to the  enrononline business people . i am very excited about the possibility of  being part of the team involved with e - commerce at enron . please find my  resume and cover letter attached .  hope you have a good trip to california next week !  thanks a lot  carla di castro  ( paulo issler ' s spouse )  - cover letter - enron . doc  - resumenovo . doc  carla di castro  phone ( 281 ) 565 - 4283  pager ( 281 ) 527 - 6073\",0\n\"Subject: note from maureen  vince ,  maureen asked me to pass along her message that the meeting with brook / hunt  went very well today . she said this firm is top - notch and very thorough .  she will contact you tomorrow after her speech on metals is over ( planned for  the lunch hour ) .  gwyn\",0\n\"Subject: re : clustering for gas and power  frank ,  following up on our discussions ,  can you please send us the list of enron ' s curves by geographical region  separately for gas and power .  appreciate it ,  tanya .  tanya tamarchenko  04 / 16 / 2001 09 : 16 am  to : jaesoo lew / na / enron @ enron  cc : vladimir gorny / enron @ enronxgate , winston jia / enron @ enronxgate , vince j  kaminski / hou / ect @ ect  subject : re : clustering for power  jaesoo ,  as we discussed last week on wednesday meeting can you , please ,  implement clustering for power curves by geographical region . this involves  the following :  1 . deciding together with risk control how many geographical regions we want  to use  and which enron ' s curves belong to each region .  2 . deciding together with risk control how to choose core curves for each  region . this decision can  be maid based on the a ) position size ; b ) statistical analysis . there might  be other considerations .  3 . doing regression analysis for each curve versus the corresponding core  curve .  winston ,  can is it possible to run var for the clustering results obtained by jaesoo  with clustering done by sas ?  should we wait for the stage re - fresh and what is the status on this ?  tanya .\",0\n\"Subject: re : contact info  glenn ,  please , contact rudi zipter to set up an interview with him and david port .  vince  \"\" glenn darrah \"\" on 04 / 25 / 2001 04 : 27 : 03 pm  please respond to gdarrah @ bigfoot . com  to : vince . j . kaminski @ enron . com  cc :  subject : contact info  vincent ,  congratulations on spearheading the mind ' s eye madness event - it looks like  quite a success . my biggest disappointment is that i am leaving enron this  week and have been too busy to participate as much as i would like . i have  had continued interest in the work and presentations that amy oberg has  done , so would have really enjoyed the workshop yesterday . i am still  considering doing some or all of the motorcade friday , however that may  work .  separately , thanks for the update in the lobby today on the enterprise risk  project . please keep in touch with me . as i mentioned , my redeployment  period ends tomorrow ( april 26 ) , but i currently do not have an outside job  lined up and still have a lot of interest in the project if something can be  worked out over the next few weeks . although he is not in the same group as  david port , i have worked a lot with brad larson in the rac underwriting  group - he may be a good source of information on me also .  contact information :  e - mail : gdarrah @ bigfoot . com  phone : 713 . 668 . 4277  cell : 713 . 320 . 5615  thanks ,  glenn darrah  get your free download of msn explorer at http : / / explorer . msn . com\",0\n\"Subject: weijun decided not to interview  i guess this means \"\" back to the drawing board \"\" . weijun has decided not to  interview .  lance  - - - - - - - - - - - - - - - - - - - - - - forwarded by lance cunningham / na / enron on 04 / 18 / 2001  09 : 40 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" ji , weijun \"\" on 04 / 18 / 2001 08 : 06 : 44 am  to : \"\" ' lance . cunningham @ enron . com ' \"\"  cc :  subject : please call me  dear lance ,  thank you very much for all of your help through this process .  at present , i am really tied up with mock market activities in austin  energy . it would be inappropriate for me to leave at this time since the  whole project will be jeopardized . therefore , i decided not coming to  houston for an interview . i sincerely apologize for any inconvenience this  may cause you .  i do appreciate what you did and hope we can keep in touch in the future .  thank you again for your help and wish you best .  sincerely ,  weijun ji\",0\n\"Subject: improving option valuation precision in erms  allan ,  paulo issler in our group , working with eric moon in structuring , recently  tracked down the reason for a slight mis - match in option pricing in erms vs .  the structuring spreadsheets . it is due to the fact that the option  valuation functions in erms use a slightly less accurate approximation for  the cumulative normal distribution . we would be happy to work with the right  person to update the erms code in order to close this discrepancy . please  let me know how you would like to proceed .  if you are not the correct person to address the mainenance of erms , please  let me know who to contact .  thank you ,  stinson gibner  x 34748\",0\n\"Subject: re : telephone interview with the enron corp . research group  martin :  lance will be out of town on the 6 th of december and he suggested that  you interview jingming ( marshall ) in his place ( it is a telephone  interview ) .  can you do that ?  thanks !  shirley  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 11 / 29 / 2000  01 : 54 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  shirley crenshaw  11 / 28 / 2000 01 : 32 pm  to : \"\" jingming ' marshall ' yan \"\" @ enron  cc : lance cunningham / na / enron @ enron , alex huang / corp / enron @ enron , vince j  kaminski / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect  subject : re : telephone interview with the enron corp . research group  marshall :  thanks for responding so quickly . i have scheduled the following interview :  wednesday , december 6 - 1 : 00 pm houston time . it will last approximately  1 hour . we will call you at ( 605 ) 497 - 4045 unless otherwise instructed .  if you have any questions , please feel free to contact me at 713 / 853 - 5290 .  best regards ,  shirley crenshaw  \"\" jingming ' marshall ' yan \"\" on 11 / 28 / 2000 12 : 59 : 55 pm  to : shirley . crenshaw @ enron . com  cc : vince . j . kaminski @ enron . com  subject : re : telephone interview with the enron corp . research group  ms . crenshaw ,  thank you very much for the message . i am very interested in the  opportunity to talk to personnel from the research group at enron . between  the two days you suggest , i prefer wednesday 12 / 6 . considering the  two - hour time difference between california and texas , 11 : 00 am pacific  time ( 1 : 00 pm your time ) seems to be a good slot . however , i am open most  of the day on 12 / 6 so if some other time slot is prefered on your end ,  please let me know .  thanks again . i look forward to talking to you and your  colleagues .  jingming  on tue , 28 nov 2000 shirley . crenshaw @ enron . com wrote :  > good afternoon jingming :  >  > professor wolak forwarded your resume to the research group , and  > they would like to conduct a telephone interview with you , sometime next  > week , at your convenience . the best days would be tuesday , 12 / 5 or  > wednesday , 12 / 6 .  >  > please let me know which day and what time would be best for you and  > they will call you . let me know the telephone number that you wish to be  > contacted at .  >  > the interviewers would be :  >  > vince kaminski managing director and head of research  > vasant shanbhogue vice president , research  > lance cunningham manager , research  > alex huang manager , research  >  > look forward to hearing from you .  >  > best regards ,  >  > shirley crenshaw  > administrative coordinator  > enron research group .  > 713 - 853 - 5290  >  >  >  jingming \"\" marshall \"\" yan jmyan @ leland . stanford . edu  department of economics ( 650 ) 497 - 4045 ( h )  stanford university ( 650 ) 725 - 8914 ( o )  stanford , ca 94305 358 c , economics bldg  if one seeks to act virtuously and attain it , then what is  there to repine about ? - - confucius  _ ? oo ? ? ooo ? ? t \u0015 xo - ? ? - - \u0014 ? ?\",0\n\"Subject: lance cunningham  this offer has been extended . lance want to take a few days to make his  decision . he will have a decision by 7 / 6 at 5 p . he ' s going to call  me . . . . and i ' ll let you know . thx  - - - - - - - - - - - - - - - - - - - - - - forwarded by teresa bien / corp / enron on 06 / 30 / 2000  04 : 10 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : grant masson @ ect 06 / 30 / 2000 11 : 26 am  to : vince j kaminski / hou / ect @ ect  cc : teresa bien / corp / enron @ enron  subject : lance cunningham  vince :  i have left a message with teresa and have sent the following terse note to  lance to let him know that we are moving .  as we discussed , i asked teresa to offer 90 k + 10 k signing bonus .  regards ,  grant  - - - - - - - - - - - - - - - - - - - - - - forwarded by grant masson / hou / ect on 06 / 30 / 2000 11 : 21  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron north america corp .  from : grant masson 06 / 30 / 2000 11 : 21 am  to : lbcunningham @ mail . utexas . edu  cc :  subject : enron  lance :  i am going on vacation tomorrow , but i wanted to get in touch with you before  i left .  i have asked hr to extend an offer to you . teresa bien should be sending you  an offer letter via fedex . of course , with the july 4 th weekend , i ' m not sure  when you will get it .  if you have questions , i suggest that you call vince kaminski at 713 853  3848 .  regards ,  grant masson .\",0\n\"Subject: re : paula corey ' s birthday  richard ,  thanks for the invitation . i have already made another commitment  but it ' s conditional on a few related events ( friends of friends  coming to town ) . if the other event is canceled , i shall be glad to  join you . i shall let you know in a few days .  vince  richard weeks @ enron communications  01 / 16 / 2001 02 : 20 pm  to : alaina . metz @ marchfirst . com , anthony mends / enron communications @ enron  communications , beth perlman / enron @ enronxgate , elisabeth mends / enron  communications @ enron communications , karla feldman / enron communications @ enron  communications , marie thibaut / enron communications @ enron communications ,  renee smith / enron communications @ enron communications , tom sinclair / enron  communications @ enron communications , vince j kaminski / hou / ect @ ect  cc :  subject : paula corey ' s birthday  you only thought the festive days were over  what a better way to start off the new year than to celebrate our good friend  paula corey \u0001 , s birthday  we will have a little soiree at my house on saturday january 27 th , dinner  will be served at 7 : 00 , please feel free to come out as early as you wish ;  however if you arrive too early you may be requested to perform some ranch  chores .  please feel free to bring a spouse or friend if you choose . if you could  rsvp by jan 23 rd that would be great .  directions to my house are as follows :  take i 45 north past the woodlands towards conroe  take exit 83 crighton road exit  stay on feeder road through stop sign until you get to traffic light  ( crighton road )  turn right onto crighton road cross railroad tracks  go to 3 rd street , about 1  miles , and turn right , which is the only way you  can turn . this is kidd road ; however most of the time the street sign is  knocked down .  stay on kidd road until it dead ends at stidham and turn left .  go to first street ( finnley ) and turn left .  go about 1 mile and finnley will dead end .  turn left onto deer trail and i will be the first house on the right  the address is 13710 deer trail and my house is about 1 / 10 mile off the road .  my home number is 936 273 3466  thanks  richard weeks  richard weeks  enron broadband services  purchasing processing manager  office : 713 - 853 - 6995  cell : 713 - 516 - 2581  email : richard _ weeks @ enron . net\",0\n\"Subject: re :  hari ,  thanks . please , keep me posted about your progress .  any published papers ?  we shall send you the printout .  vince  hari natrajan on 03 / 06 / 2001 08 : 47 : 34 pm  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc :  subject : re :  dear mr . kaminski ,  thank you very much for your prompt response . i look forward to receiving a  copy of your article .  i would also appreciate it if you could let me know whether enron provides  research grants to individuals who are working in the area of energy risk  management . towards my research , i am trying to develop a model to estimate  electricity spot price .  in any case , i will be getting in touch with you again a year or so down the  line when i am nearing completion of my dissertation because enron is my  dream job .  i look forward to hearing from you .  thank you ,  yours sincerely ,  hari natarajan  fellowship student  indian institute of management bangalore  bannerghatta road  bangalore 560076  india  tel : 91 - 80 - 6993056  fax : 91 - 80 - 6584050  e - mail : hnatraj @ iimb . ernet . in  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com  to : hnatraj @ iimb . ernet . in  cc : shirley . crenshaw @ enron . com ; vince . j . kaminski @ enron . com  sent : 3 / 6 / 01 8 : 34 pm  subject : re :  hari ,  i shall send you a reprint of the article . i had to  cancel my presentation at san antonio .  vince  shirley ,  please , send a copy of the article to hari .  hari natrajan on 02 / 28 / 2001 06 : 45 : 29 am  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc :  subject :  dear mr . kaminski ,  i am a doctoral student at the indian institute of management bangalore ,  india . my area of interest is the energy sector , especially electricity  derivatives . i am interested in obtaining a copy of the following items :  1 ) your presentation \"\" current challenges in modeling power price  volatility \"\"  at the session on price volatility & probabilistic methods in the energy  markets . ( http : / / www . informs . org / conf / sanantonio 2000 / / talks / md 29 . html )  2 ) your chapter \"\" the challenge of pricing and risk managing electricity  derivatives \"\" in the book ' the us power market ' , risk publications .  i would appreciate it if you could send me a soft / hard copy of the same .  thank you ,  yours sincerely ,  hari natarajan  fellowship student  indian institute of management bangalore  bannerghatta road  bangalore 560076  india  tel : 91 - 80 - 6993056  fax : 91 - 80 - 6584050  e - mail : hnatraj @ iimb . ernet . in\",0\n\"Subject: april lst party !  this is primarily for enron researchers , psuedo - researchers ( spouses ) , and  quasi - researchers ( kids ) . wannabe - researchers will be strictly bounded in  number !  hope you can come with your family . please reply asap so we can plan .  krishna .\",0\n\"Subject: your encouragement would be appreciated  the gas and power trading organizations have had a tremendous year .  sometimes we as traders forget some of the crucial parts of the organization  that significantly contributed to that success . i believe the weather group  comprised of mike robert ' s , jose marquez , stephen bennett and dave ryan from  power are one of those groups . these individuals have done a tremendous job  of predicting summer weather along with the route hurricanes would take . the  greatest achievement has been the november and december winter forecast .  they held fast to their cold forecast even when outside services were  moderating . on a score card with all other services they definitely deserve  an \"\" a + \"\" . when you are down on the 32 nd floor it would be nice if you would  stop and congratulate them on a tremendous job and their contribution to our  success .  thanks , jim schwieger\",0\n\"Subject: 1 - urgent - outlook email notification ( new )  outlook email notification  your date of migration is : may 7 th  you will be unable to send e - mail unless you take the following action :  please go through your notes email and clean out as many old / un - needed email  items as possible before your date of migration . ? after you are migrated to  outlook you will only be allocated 100 mb of total mailbox space . ? ? if more  than this amount of data is migrated to outlook you will not be able to send  e - mail until it is below the 100 mb limit . ? cleaning up your notes email now  will prevent this from happening to you .  enron \u0001 , s messaging platform is migrating from lotus notes to microsoft outlook  2000 worldwide . you will be accessing outlook for all of your email  functions .  why is enron migrating to outlook 2000 ?  many factors contributed to the decision to migrate from lotus notes to  microsoft exchange / outlook . the most prominent factors were :  ? significant advantages to moving to a product that is more integrated with  current enron apps ( windows 2000 , office and internet explorer )  ? more efficient shared pc and roaming user features  ? improved support and integration for palm / ce devices  ? instant messaging capabilities  what is being migrated to outlook 2000 ?  ? email messages . from the date of your scheduled migration , the last ( 30 )  thirty days of your email will be converted for use in outlook .  ? all your folders in notes you use to store email messages in .  ? to do items  ? journal items  ? calendar entries dating from ( 1 ) one year in the past to ( 10 ) ten years in  the future will be converted .  ? address books , but not your distribution lists that you created . you will  need to re - create these in outlook .  thank you ,  outlook 2000 migration team\",0\n\"Subject: re : looking for \"\" fat tails \"\" in time - series for ngi - socal  naveen ,  i got ngi - socal prices for prompt , prompt + 1 , . . . , prompt + 59 contracts .  for each contract i calculated moving average based on 21 log - returns as  well as moving volatility . then i calculated normalized log - returns :  [ return ( t ) - ave ( t ) ] / vol ( t )  and compared the results to normal distribution .  i could not find fat tails !  volatility changes a lot from day to day , so when people look at  log - returns ( not normalized ) it seems that there fat tails ( big spikes , large  returns more frequent than normal ) ,  which comes from the fact that volatility is not constant ( at all ) .  see the spreadsheet is under o : \\ _ dropbox \\ tanya  tanya\",0\n\"Subject: re : hi :  thanks vince :  could you give me mike roberts contact information .  zeigham  zeigham khokher  doctoral candidate finance  university of texas at austin  zkhokher @ mail . utexas . edu  512 - 695 - 7164 ( cell )  - - - - - original message - - - - -  from :  to :  cc :  sent : friday , september 29 , 2000 3 : 33 pm  subject : re : hi :  zeigham ,  mike roberts from my group will help you .  vince  on 09 / 22 / 2000 07 : 14 : 37 pm  to :  cc :  subject : hi :  hi vince :  this zeigham khokher at the university of texas at austin , finance  department .  i need some publicly available data that unfortunately is not available  here . it is basically the historical prices for price of oil , gas and  gold futures contracts and options .  again the data is strictly public info and not proprietary at all . let me  know if there is a central data person at enron who would be able to help .  all help will be of course gratefully acknowledged .  hope all is well , i hear you will be giving a talk at ut this fall and  look forward to seeing you then .  regards  zeigham\",0\n\"Subject: re : please find home for brainful candidate  shirley ,  please , arrange a phone interview . zimin , stinson , and myself .  he may be a good candidate for tanya .  vince  stinson gibner  07 / 20 / 2000 11 : 16 am  to : pinnamaneni krishnarao / hou / ect @ ect , vince j kaminski / hou / ect @ ect  cc :  subject : please find home for brainful candidate  any interest ?  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 07 / 20 / 2000  11 : 15 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  stephanie miller @ enron  07 / 20 / 2000 10 : 49 am  to : stinson gibner / hou / ect @ ect , joe williamson / gco / enron @ enron  cc :  subject : please find home for brainful candidate  attached for your review is a resume a friend of mine came across . thought  you might want to review .  regards ,  stephanie  - - - - - - - - - - - - - - - - - - - - - - forwarded by stephanie miller / corp / enron on 07 / 20 / 2000  11 : 40 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  debbie chance  07 / 20 / 2000 09 : 42 am  to : stephanie miller / corp / enron @ enron  cc :  subject : please find home for brainful candidate  stephanie ,  came by way of friend of a friend - looks very good on paper . he has  identified an interest in the following jobs that were posted in the net .  you know everyone here - could you identifiy the appropriate people to call  attention to this candidate ?  resume attached below .  thanks ,  dc  1 . economic advisor  contact : respond to enron corp , human resources 235 , p . o . box 3330 , omaha ,  ne  68103 - 0330 or e - mail : dea . crum @ enron . com as a . doc or . txt attachment . please  include this requisition number : 104776  | | |  | job id | 0000104776 |  | | |  | | |  | department | systems optimization team |  | | |  | | |  | company | gas pipeline group |  | | gas pipeline group |  | | |  2 . manager  contact : please do not contact the hiring manager . no faxes please . send  resumes  via e - mail to tony . vasut @ enron . com or mail to enron , attn : tvasut - eb 3628 ,  1400  smith st . , houston , tx 77002 . please refer to job # 104486  ( embedded image moved to file : pico 4224 . pcx )  | | |  | job id | 0000104486 |  | | |  | | |  | department | trade credit |  | | |  | | |  | company | corporate staff |  | | risk assessment and control |  | | |  3 . manager  contact : to submit resume for consideration , please e - mail it to  bholcomb @ enron . com if possible . plain text in the message or an attached  word . doc are acceptable . please use no columns , italics or underlines . if  unable  to email , bholcomb @ enron . com , fax it to ( 713 ) 646 - 2169 , attn : ebl 013 a or mail  it  to b . holcomb , ebl 013 a , p . o . box 1188 , houston , tx . 77251 - 1188  | | |  | job id | 0000104778 |  | | |  | | |  | department | asset operations & svcs |  | | |  | | |  | company | wholesale , retail & comm |  | | enron energy services |  | | |  4 . gas trading support generalist  contact : please email resume to mark . broadfoot @ enron . com or if email is  unavailable , respond to mark broadfoot eb 3617 a . reference job id # 0000104730 in  email subject . resumes not accepted from agents . global technology hot job  ( embedded image moved to file : picl 9645 . pcx )  | | |  | job id | 0000104730 |  | | |  | | |  | department | infrastructure & integrat |  | | |  | | |  | company | global functions |  | | technology |  | | |  5 . risk management analyst  contact : to be considered for this position , please e - mail your resume as a  . doc  or . txt attachment with your salary history to enajobs 4 @ enron . com . ( please  eliminates italics , underlining , multiple margins or side - by - side columns . )  please indicate on the email subject line your name and the job id # . resumes  with salary history will receive priority review .  | | |  | job id | 0000104631 |  | | |  | | |  | department | global facilities |  | | |  | | |  | company | wholesale , retail & comm |  | | north america |  | | | \",0\n\"Subject: an interesting resume  i shall interview this candidate next week  ( a very preliminary interview ) to evaluate his potential  and determine if he fits enron ' s culture .  do you see a need for a person with his skills in your area ( litigation  support ) ?  vince\",0\n\"Subject: re : i ' ll be gone for a month  sofya :  sounds like fun - be careful and have a great time . we will see you when  you return on the 31 st .  shirley  sofya tamarchenko @ enron  06 / 27 / 2000 11 : 23 am  to : shirley crenshaw / hou / ect @ ect , grant masson / hou / ect @ ect , maureen  raymond / hou / ect @ ect  cc :  subject : i ' ll be gone for a month  good morning :  i am leaving houston this weekend to go to camp , so friday june 30 will be my  last day . i will be at camp for a month , but i can be back at work on monday  july 31 .\",0\n\"Subject: re : generation earnings model  michelle ,  i agree with you that we need to run at least 500 iterations . but i did not  realize that it took 16 hours to run 100 iterations . helen and i talked  earlier about  using parallel computing technique to split the algorithm into smaller parts  and  run the parts separately on different processors , then aggregate the results .  this procedure makes better use of computer power and saves time . looks like  we have to do it this way now . buying a more powerful computer helps but  does not solve the problem .  in addition , we might want to re - consider if writing the code in vb is  optimal .  i was assured at the very beginning that vb runs as fast ( if not faster ) as c ,  but some re - assurance from it group on this issue is helpful .  best ,  alex  from : michelle d cisneros @ ect 04 / 09 / 2001 02 : 52 pm  to : alex huang / corp / enron @ enron  cc : gary hickerson , danielle romain  subject : generation earnings model  hi alex -  danielle and i were talking to david m . today regarding running the model for  purposes of back testing the results . last week we ran calpine using 46 days  of historical forward price data at 10 and 100 iterations . the 100 iteration  run took 16 hours to run . to run all 20 companies with the 46 days worth of  data and at 100 iterations is estimated to take about 28 days . we are  concerned that 100 iterations will not be sufficient and will need to be  increased to at least 500 iterations .  we are thinking that we need to use a server or something much more powerful  than the test computer we have been using . do you have any suggestions as to  how we can improve the process ?  thanks ,  michelle  x 35435  hi alex -  danielle and i were talking to david m . today regarding running the model for  purposes of back testing the results . last week we ran calpine using 46 days  of historical forward price data at 10 and 100 iterations . the 100 iteration  run took 16 hours to run . to run all 20 companies with the 46 days worth of  data and at 100 iterations is estimated to take about 28 days . we are  concerned that 100 iterations will not be sufficient and will need to be  increased to at least 500 iterations .  we are thinking that we need to use a server or something much more powerful  than the test computer we have been using . do you have any suggestions as to  how we can improve the process ?  thanks ,  michelle  x 35435\",0\n\"Subject: re : willow and pathstar evaluations  ok - thanks .  - - - - - original message - - - - -  from :  to : \"\" mike curran \"\"  cc : ;  sent : monday , april 30 , 2001 11 : 34 pm  subject : re : willow and pathstar evaluations  >  > mike ,  >  > we are short manpower in london . we shall try to  > evaluate the software in houston .  >  > vince  >  >  >  >  >  > \"\" mike curran \"\" on 04 / 24 / 2001 10 : 03 : 24 am  >  > please respond to \"\" mike curran \"\"  >  > to :  > cc :  > subject : willow and pathstar evaluations  >  >  >  > hi vince -  >  > hope all is well with you .  >  > sharad hasn ' t had time to evaluate our willow tree or monte carlo software  > since the middle of last year . is there somebody else that could do it ?  >  > please let me know who i should send the evaluation to .  >  > best regards ,  >  > michael curran  > ceo  > quantin ' leap limited  > piercy house  > 7 copthall avenue  > london ec 2 r 7 nj  >  > tel : + 44 ( 0 ) 20 7562 3450  > fax : + 44 ( 0 ) 20 7562 3411  >  > mailto : mcurran @ quantinleap . com  >  > http : / / www . quantinleap . com  >  >  >  >  >  >  >  >  >  >  >\",0\n\"Subject: re : short - sell vs exercise  chonawee ,  as i have pointed out , short - selling the stock may be a bad  decision because of tax implications ( ignoring the legal aspects ) .  suppose the strike is $ 70 and you were granted an atm option .  you sell short at $ 70 ten lots ( one lot = 100 shares ) . the price goes to  $ 100 .  you lose $ 30 x 1000 = $ 30 , 000 on your short position . option exercise  gives you $ 30 , 000 . this is before taxes . you pay taxes  on your option income ( it ' s treated as ordinary income ) . the tax is  28 % x $ 30 , 000 = $ 8 , 400 . you can use only $ 3 , 000 of your loss against  ordinary income . this saves you only $ 840 in taxes .  of course , if you have capital gains , you can use losses on your option  position  as an offset .  the remaining part of your capital loss is carried forward and you get the  tax benefits over time ( less the time value of money ) , assuming you have  income in the  future ( or capital gains ) .  not so good .  by the way , valuation and optimal exercise of employee stock options  is a very interesting and difficult problem .  vince  chonawee supatgiat @ enron  07 / 10 / 2000 11 : 40 am  to : stinson gibner / hou / ect @ ect , vince j kaminski / hou / ect @ ect  cc :  subject : short - sell vs exercise  below is my writing that was originally planned to post somewhere . it  explains how to handle a special type of call options which can be exercised  but cannot be sold . ( as we know that it is never optimal to exercise a call  option before its maturity ) . however , after taking vince ' s comments on the  ordinary income / capital loss tax offsetting issue , i think this is not a good  article anymore . i guess i could just throw this article away . : - )  - chonawee  short - selling is better than exercising your employee stock options  in general , the sensible time to exercise your employee stock option is when  you speculate that ene is going down or its growth rate is extremely low . in  fact , when exercising the options , you are speculating that ene would never  reach this point ( plus interest ) again during the 10 years maturity date or  until you leave the company . if you do not anticipate that , you should hold  on to your options because you can gain higher profit by delaying your  exercise .  however , if you believe that ene is reaching its peak . then , instead of  exercising the options , you should short - sell ( or sell ) the stocks in that  amount . after short - selling , when you feel that the stock starts to go up ,  you can buy them back ( to cover ) , make profit , and still keep the options . on  the other hand , if the stock does not go down as expect , you can exercise the  options to cover your short position anytime .  let us take a look at a simple case where there are no taxes , no dividends ,  and zero risk - free rate . suppose that ene follows a simple sample path as  follow  if you exercise 100 ene options with a grant price of 45 when ene reaches 70 ,  you would earn ( 70 - 45 ) * 100 = $ 2 , 500 . but if you short sell 100 ene at 70 , no  matter how much ene is in the future , you can exercise the options to cover  the short position and still earn ( 70 - 45 ) * 100 = $ 2 , 500 . the advantage of  short - selling comes when ene at the period 2 is 60 . at this point , you can  cover your short position , get ( 70 - 60 ) * 100 = $ 1 , 000 , and still keep your  options or you can exercise the options and gain $ 2 , 500 . that is , you still  keep the flexibility of your options when you short - sell . in conclusion , the  only sensible time to exercise your employee stock options is to cover your  short position .\",0\n\"Subject: us news archive @ ft . com  reliable country intelligence for a challenging world  with country reports supporting your decisions , you \u000f ' re  working with the best source of country intelligence  available . turn to the economist intelligence unit at :  http : / / store . eiu . com  dear ft . com user  ft . com \u000f ' s global archive can provide the answer to a multitude  of business queries :  * access information from more than 1 , 200 us business news  publications  * simultaneously search multiple sources e . g . business and  industry papers , business wire , and the pr newswire - usa .  * obtain a global view by searching across more than 6 million  articles worldwide .  with a variety of search options and powerful software , you will  be able to find the information you need in no time at all .  for the definitive answer to your business - related query , visit  and bookmark this page :  rch . jsp  regards ,  ft . com  why not forward this e - mail to a friend or colleague who may  find this information useful ?  if you no longer wish to receive further e - mails from us  please send an e - mail to ft . com . unsubscribe @ newsbyemail . ft . com  with the single word \"\" unsubscribe \"\" as the subject of the  message . your name will then be removed from our mailing  list .  if you have forgotten your password for ft . com simply visit \",0\n\"Subject: re : durasoft - - java class  siva , i will have to check and see if we can accomodate a 5 day 8 to 5  class . also , president ' s day is a holiday for us , so we may have to look  at a later date .  - - stinson  \"\" siva thiagarajan \"\" on 01 / 29 / 2001 08 : 51 : 02 am  to :  cc :  subject : re : durasoft - - java class  stinson ,  i have attached a file along with this email  that lists the software needed for our  java class .  we would like to do the class from monday thru  friday , 8 am to 5 pm . that way we can complete  the class within a week . we are unable to offer  classes in the evenings or for few hours a week .  we usually teach week long courses for our  other clients and because of that we won ' t  be available .  currently , we can do the class from feb . 19 th  through feb . 23 ( that is if you are working on  feb 19 th , president ' s day ) .  i will call you sometime this afternoon to talk  further . please feel free to reach me if you have  any further questions in the mean time .  regards ,  - siva  - - - - - original message - - - - -  from : stinson . gibner @ enron . com  to : siva @ durasoftcorp . com  date : friday , january 26 , 2001 5 : 52 pm  subject : re : durasoft - - java class  >  > siva ,  >  > a few additional questions . can you tell me what software would be  > required for the students ? also , when would venkat be available to start  > the class and what type of schedule would you recommend ? would having two  > hour classes twice a week from , say , 4 - 6 pm work ? we have a high level of  > interest and just need to iron out the details . feel free to call me  > ( late afternoon on monday might be best ) at 713 853 4748 or email .  >  > - - stinson  >  >  >  - javasoftwareneeds . htm\",0\n\"Subject: re : asian option for pavel  stinson ,  let ' s talk about it . it seems like an open personality clash developing  for the first time in the history of the group .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 05 / 02 / 2001 03 : 12 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  zimin lu  05 / 02 / 2001 01 : 41 pm  to : paulo issler / hou / ect @ ect  cc : ( bcc : vince j kaminski / hou / ect )  subject : re : asian option for pavel  our convention is whoever finalizes the model should write the documentation . it does not make sense  to write one when changes are anticipated . you have been working on this almost a year , it never  strikes you that we need a documentation ?  i created exotica . xll , does that also give you an excuse not working on exotica documentation ?  zimin  paulo issler  05 / 02 / 2001 11 : 52 am  to : zimin lu / hou / ect @ ect  cc : tai woo / enron @ enronxgate @ enron , pavel zadorozhny / enron @ enronxgate  subject : re : asian option for pavel  i am surprised that we do not have the documentation ready .  i can make that for you . it is not there because you did not put that together by the time it was created and all the changes i have made did not required changes on the functionality .  paulo issler  zimin lu  05 / 02 / 2001 11 : 29 am  to : tai woo / enron @ enronxgate @ enron , paulo issler / hou / ect @ ect  cc : pavel zadorozhny / enron @ enronxgate  subject : re : asian option for pavel  tai woo ,  here are the c - codes for the crudeapo . ' sig ' is the spot  volatility meaning the price volatility within the delivery period .  you should consult with pavel for the definition of this \"\" extra \"\" parameters . we  would like to see the position monitor once you get it running .  we might have some additional suggestions .  paulo ,  why don ' t we have a documentation on crudeapo you worked on ?  i can not find it in exotica help file . please supply that to tai , thanks .  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : tai woo / enron @ enronxgate on 05 / 02 / 2001 09 : 55 am  to : paulo issler / hou / ect @ ect  cc : kara maloney / enron @ enronxgate , zimin lu / hou / ect @ ect  subject : asian option for pavel  this morning , zimin told me that pavel is using a special model in evaluating his asian option portfolio .  he asked me to talk to you in order to access to the code so that i can see the difference made to the model .  as i cannot find the doc . describing this model , please tell me what that new input parameter ' sig ' is .  thanks , \",0\n\"Subject: rice / enron finance seminar series  jones graduate school research seminar series in finance  sponsored by enron capital and trade resources  paolo fulghieri  insead  will give a seminar at the jones school on monday , january 31 ,  \"\" information production , dilution costs , and optimal  security design \"\"  the seminar will begin at 4 : 00 in room 115 .  please e - mail me if you would like an advance copy of the paper .  stay tuned for an update of the spring seminar series schedule .  bbo\",0\n\"Subject: re : mgmt 656 ( rice university )  this list is just a basic excel document with names , id ' s and e - mail  addresses . - pam ( 713 - 348 - 6223 )  at 03 : 36 pm 1 / 17 / 01 - 0600 , you wrote :  > pam ,  >  > thanks . the list of e - mail addresses would be useful as well .  >  > vince  >  >  >  >  >  > pamela vande krol castro on 01 / 17 / 2001 03 : 05 : 01 pm  >  > to : vince . j . kaminski @ enron . com  > cc :  > subject : mgmt 656 ( rice university )  >  >  > here are your rosters for mgmt 656 . let me know if you need a list of  > e - mail addresses as well . i will update you as student schedules change .  > - pam  > ( 713 - 348 - 6223 )  > ( see attached file : 656 . doc )  >  >  - 656 . xls\",0\n\"Subject: japanese power market  another article i thought you might find interesting .  regards ,  eugenio  review of energy policies kicks off  asahi shimbun  april 25 , 2000  a government advisory panel on monday embarked on a  comprehensive review of energy - related policies .  ` ` we want to come up with feasible policies and at the  same time clearly present reasons for those policies , ' '  yoichi kaya , a professor emeritus at the university of  tokyo , told a meeting of the coordination subcommittee  under the advisory committee for energy , an advisory  panel to minister of international trade and industry  takashi fukaya . kaya chairs the subcommittee .  the nuclear development policy , including the  government ' s goal for building new nuclear power plants ,  is expected to be a focus of the discussions .  a spate of nuclear accidents have made construction of  plants increasingly difficult , and the nation ' s power  suppliers have reduced the number of new nuclear power  plants expected to be in operation by fiscal 2010 from 20  to 13 .  the subcommittee , set up for the first time in about 10  years , is made up of about 30 members , and members of  anti - nuclear nongovernmental organizations have been  included for the first time .  some members told monday ' s meeting that the  government must stop taking the nuclear development  policy for granted and seriously look into the possibility  of introducing renewable energy , such as wind and solar  power .  also on the agenda will be energy saving measures .  energy consumption in the residential and commercial  sector , made up of homes and offices , and in the  transportation sector , which includes cars and trucks , has  almost doubled over the past 25 years .  at monday ' s meeting , many members stressed the need  to change public consciousness toward the use of  energy .  miti plans to present studies on how life would be  affected by compulsory energy saving measures such as  automatically turning off air conditioners at certain  temperatures or vehicle engines when they are idle .\",0\n\"Subject: re : joao neves  kate ,  i was traveling recently . i shall evaluate the resume  together with my associates and will get back to you thursday .  i shall be glad to meet you on the 13 th .  vince  \"\" kate szablya \"\" on 04 / 02 / 2001 04 : 37 : 18 pm  to : \"\" vince kaminsky \"\"  cc :  subject : joao neves  vince ,  i wanted to follow up with you to see if you had an opportunity to review  joao neves ' resume , which i sent ? you last wednesday , and to get your  feedback on him .  ?  please ? let me know if you are interested in ? setting up an interview .  ?  also , i will be in houston the afternoon of ? friday , 4 / 13 , and would welcome  the opportunity to meet with you in person , if your schedule allows . ?  ?  i look forward to hearing from you .  ?  regards ,  ?  kate szablya  power brokers , llc  energy search and recruitment  303 - 716 - 2987  303 - 619 - 7589 cell  303 - 716 - 3426 fax  kate @ powerbrokersllc . com  www . powerbrokersllc . com  ?  ?\",0\n\"Subject: request submitted : access request for anita . dupont @ enron . com  you have received this email because you are listed as an alternate data  approver . please click  approval to review and act upon this request .  request id : 000000000012734  approver : stinson . gibner @ enron . com  request create date : 1 / 8 / 01 4 : 24 : 06 pm  requested for : anita . dupont @ enron . com  resource name : \\ \\ enehou \\ houston \\ common \\ research - [ read / write ]  resource type : directory\",0\n\"Subject: re : var for cob 2 nd aug 2000  hi kirstee ,  thanks again for all your work on mg . one think to double check is units .  please , make sure that the prices are quoted in the same units our positions  come in .  one potential source of confusion arises from the fact that we are dealing  with different  cultures ( metric system vs . english measures ) .  vince  enron capital & trade resources corp . - europe  from : kirstee hewitt 08 / 03 / 2000 11 : 31 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : var for cob 2 nd aug 2000  hi vince ,  i was waiting for a comment about the email below before sending it to the  full mailing list . basically it suggests that the  copper option position may well have increased the var by more than $ 500 , 000 .  however , given that the portfoilo has also  changed from the lst of august it is difficult to asses the actual change due  to the option only .  regards  kirstee  - - - - - - - - - - - - - - - - - - - - - - forwarded by kirstee hewitt / lon / ect on 03 / 08 / 2000  17 : 29 - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron europe  from : kirstee hewitt 03 / 08 / 2000 16 : 29  to : cantekin dincerler / hou / ect @ ect , grant masson / hou / ect @ ect  cc :  subject : var for cob 2 nd aug 2000  hi all ,  the cu option position has entered the mg books for the 2 nd aug . the delta is  35299 $ / mt for dec 2000 . the cu var has gone up  from $ 2 , 245 , 000 to $ 3 , 306 , 000 . i estimated that the portfolio for the lst  would increase to approx $ 3 , 039 , 000 so this seems sensible .  the overall var change is from $ 4 , 780 , 796 to $ 5 , 991 , 569 . again , the estimate  for the lst aug was for an increase in var to ~ $ 5 , 476 , 000 .  all estimates were based on a delta of 32 , 0004 / dmt .  there has also been some increase in the var for aluminium which will effect  the overall total .  a summary is as follows :  regards ,  kirstee\",0\n\"Subject: re : possible summer internship with enron  hello ainsley :  we are so glad you are interested ! i spoke with vince kaminski and the  procedure is to usually conduct a telephone interview first . this will let  us know exactly where your interests are and establish where you might  fit within our organization .  please let me know your availability and the best time to reach you on  thursday ( the 25 th ) or friday ( the 26 th ) afternoon from 1 : 00 pm to 5 : 00 pm .  also please let me have the telephone number where you may reached  and we will call you . it is easier that way since there will be several of  us involved in the interview . the interview will usually last an hour or an  hour and a half .  thank you ainsley !  sincerely ,  shirley crenshaw  713 - 853 - 5290  \"\" ainsley gaddis \"\" on 05 / 23 / 2000 07 : 21 : 43 pm  to : \"\" shirley crenshaw \"\"  cc :  subject : re : possible summer internship with enron  hello ms . crenshaw ,  thank you so much for getting back to me so quickly . i am very interested  in meeting with mr . kaminski and the research group . i am available to come  into the office any time wednesday , thursday or friday . please let me know  what time is most convenient for you . i look forward to hearing from you  soon !  sincerely ,  ainsley gaddis\",0\n\"Subject: re : eol pricing algorithm  hi bob ,  some comments :  1 . you request enron position after successful market order , but not after  limit order - - you may want it after limit order as well to be consistent .  i am not clear on how you would use enron position . it is possible that the  trading desk will have a target position in mind and they will set bids and  offers in such a way as to try to achieve that target position , but this  target position probably changes continuously and is not stored anywhere , and  without this target position there is nothing to compare actual enron  position to . of course , enron position may still provide some insights .  2 . you request bid - mid - ask prices for each trade - - - given that a successful  trade may execute later than time of order ( especially for limit orders ) ,  would you need the evolution or range of bid - mid - ask over this time interval  ( time of order to time of execution ) ? also , for failed trades , you may need  the evolution or range of bid - mid - ask over the time interval from time of  order to time of rejection . this again mainly applies to limit orders , as  the time intervals may not be significant for market orders given the speed  of execution ( something to check ) .  - - - - - original message - - - - -  from : lee , bob  sent : monday , april 23 , 2001 8 : 33 am  to : kaminski , vince ; shanbhogue , vasant ; barkley , tom  cc : lu , zimin ; huang , alex ; gibner , stinson  subject : eol pricing algorithm  a draft data request for eol data we would use to study p & l patterns for the  \"\" george \"\" pricing algorithm is attached for your review .  i would like to send this to andy zipper and jay webb this afternoon .  bob  >\",0\n\"Subject: re : mscf speaker series  pierre - philippe ,  i was under the impression the presentation will be at 3 : 30 . 11 : 30 is fine  with me  but want to confirm it .  vince  \"\" pierre - philippe ste - marie \"\" on 10 / 28 / 2000 12 : 22 : 36 am  to : , , ,  , , ,  \"\" pierre - philippe ste - marie \"\" , ,  \"\" punit rawal \"\" , ,  , , ,  , , ,  , , ,  , , ,  cc :  subject : mscf speaker series  mscf speaker series  official invitation  ?  ?  it is with great pleasure and some amount of pride that i announce the next  event in the speaker series . next friday we will have the honor to host a  conference given by mr . vince kaminski head of research at enron corp . ?  ?  the ? sixth event is ? next friday ( nov 3 rd ) ! ?  from : 11 . 30 - 13 . 30  please attend ! ! !  the next event in the  student speaker series is :  friday , november 3 , 2000  11 : 30 a . m . to 12 : 30 p . m . fast lab  [ image ] vince kaminski  enron corp .  tentative student speaker series schedule 2000 - 2001  the following is a tentative schedule of the mscf student speaker series for  the 2000 - 2001 academic year . all events take place from 11 : 30 a . m . to 12 : 30  p . m . in the fast lab ( gsia 229 ) unless otherwise noted . updates are soon to  follow .  volatility curve and bond basis  august 11 , 2000  david hartney & jerry hanweck  vice president , futures and option sales j . p . morgan  price and hedging volatility contracts  september 1 , 2000  dmitry pugachevsky  deutsche bank  dmitry pugachesky is a director with otc derivatives research of deutsche  bank , where his research is primarily focussed on credit derivatives . prior  to joining deutsche bank , dmitry worked for six years with global analytics  group of bankers trust . there he developed models for emerging markets ,  interest rates , and equity derivatives and also participated in actual  trading and structuring of interest rate options . he received his phd in  applied mathematics from carnegie mellon university specializing in control  theory for stochastic processes . he has published several papers on  modelling in emerging markets and on valuation for passport options .  a measurement framework for bank liquidity risk  september 15 , 2000  raymond cote  vice president , finrad inc .  raymond cote is vice president , financial engineering at finrad inc . , a  montreal - based consulting firm offering financial management solutions that  combine advisory and systems development services to & corporations and  financial institutions .  abstract :  liquidity risk , as opposed to credit and market risks , has received little  attention in professional or academic journals . we argue that analyzing bank  liquidity risk can be viewed as a variation of credit risk analysis . after  introducing some concepts and definitions , the presentation defines a  framework allowing to measure a bank ' s structural liquidity risk . it then  shows that combining the framework with modern credit risk measurement tools  leads to a liquidity risk var measure . the presentation then offers  concluding comments on the integration of the liquidity risk measurement  framework within enterprise - wide risk management .  the impact of electronic trading on the uses of quantitative research in  equity options  september 22 , 2000  scott morris  hull group , quantitative research department  quantitative research in investment management  october 6 , 2000  raman srivastava & anna bulkovshteyn  assistant vice president , & fixed income , quantitative analysts , putman  investments  [ image ]  tba  november 3 , 2000  vince kaminski  enron corp .  fund management and market efficiency  november 10 , 2000  andrea dalton  researcher , friess associates  ( advisor to the brandywine funds ) .  tba  november 17 , 2000  jeff keifer & deb  aep  tutorial on bridge  november 24 , 2000  pierre ste - marie & punit rawal  mscf students  a corporate risk management framework  december 8 , 2000  darin aprati & brian moore  mcdonald ' s  [ image ] math speaker series schedule 2000 - 2001  [ image ] speaker series student committee  [ image ] previous speakers  ?  pierre - philippe ste - marie  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  [ image ] http : / / pstemarie . homestead . com\",0\n\"Subject: re :  life . . . : )  maybe next time .  roman  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com  to : rkosecki @ mieco . com  sent : 10 / 18 / 00 1 : 14 pm  subject : re :  roman ,  sorry . i am leaving for philadelphia this evening . leaving office around  5  p . m . let ' s get together on another occasion .  vince  roman kosecki on 10 / 18 / 2000 02 : 09 : 28 pm  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc :  subject : re :  hi vince ,  i am in houston now . will have to work late . but how about  drinks / food  some time around 7 - 8 or later ? i am staying at wyndham greenplace ( ? )  and  will use taxi to get around .  thanks  roman  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com  to : rkosecki @ mieco . com  sent : 10 / 13 / 00 7 : 55 am  subject : re :  roman  thanks .  my home number is 281 367 5377  vince  roman kosecki on 10 / 13 / 2000 09 : 38 : 39 am  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc :  subject : re :  i will be in houston on wed . willl give you a call  roman  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : thursday , october 12 , 2000 2 : 43 pm  to : rkosecki @ mieco . com  subject : re :  roman ,  drinks after work would be better . i am flying back from ca on tue  morning .  please , call me at 713 853 3848 or 713 410 5396 ( cell )  in the afternoon .  vince  roman kosecki on 10 / 12 / 2000 12 : 21 : 50 pm  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc :  subject :  hi vince  i will be in houston for a few days next week ( like mon - wed ) . if you  are  back from your european trips maybe we can \"\" do \"\" lunch ?  roman\",0\n\"Subject: merit increases  norma ,  it seems that there is a bug in the system . i made an error mixing equity and  merit raises in one column . the system does not allow me to correct the  mistake by  moving the entries from one column to another . i can enter the changes , but  after i save them the system reverts to original designations .  as a result , the columns contain mixed entries related to merit and equity  raises .  the column totals are misleading .  i am taking a csv version home to continue making adjustments .  i shall work at home monday ( 281 367 5377 ) .  vince\",0\n\"Subject: enron opportunities  lynn ,  i am forwarding you the resume of a very bright and motivated young man  who attended a lecture i gave recently at lsu .  i think we should consider him for an analyst position .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 15 / 2000  08 : 52 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" richard c . iles \"\" on 09 / 14 / 2000 11 : 14 : 56 am  please respond to \"\" richard c . iles \"\"  to :  cc :  subject : enron opportunities  dr . kaminski :  ?  here is my resume and cover letter .  ?  thanks ,  ?  richard iles  - enron cover and resume . doc\",0\n\"Subject: enside newsletter  good morning !  thank you for taking time out of a busy friday to allow our photographer to  shoot some pictures for the enside . i will contact you when the proofs are  ready .  i have attached the article draft with revisions by mike , osman and iris .  please peruse this draft and make any changes or corrections . i need it back  for the layout team by wednesday evening , april 4 , if possible .  regards ,  kathie grabstald  ews public relations\",0\n\"Subject: stephen bennett  stephen bennett , professional meteorologist , was hired into the research  group in september of this year as a specialist based on salary alignment  criteria . in retrospect , and upon review , he should have been hired on as a  senior specialist .  after coming on board . it rapidly became apparent that stephen was clearly an  \"\" under hire . \"\" he is well - deserving of an immediate promotion ( really more of  a correction ) and pay raise , to be made retroactive at least to the lst of  this month . this memo outlines the circumstances surrounding this hiring  error and provides detailed justifications for this retroactive \"\" promotion . \"\"  at the time of the interview process , there was no position in enron  designated as \"\" professional meteorologist . \"\" in fact , the most recent similar  hire prior to that date was jose marquez , also a professional meteorologist ,  who was hired in , based on salary alignment criteria , as a manager . while  functionally , both these men are meteorologists , enron has no such job  classification . compounded by the urgency in bringing on additional  professional expertise in short time order , it was difficult to peg the  proper enron classification appropriate for this new position . this original  uncertainty and resulting misplacement of stephen into the specialist  category , rather than the senior specialist category , needs to be corrected  at this time .  although a \"\" new - hire \"\" to enron , stephen bennett has extensive work  experience . he has worked as a professional meteorologist at both the  weather services corporation in boston and at the weather channel in  atlanta . he came to enron well - referenced by both those organizations ,  needing no further training and only minimal supervision .  once aboard here in houston , stephen immediately demonstrated the core enron  values with our unique sense of urgency . after only a week , he assumed  responsibilities normally reserved for someone actually at even a manager  level - he was assigned and fully took over the critical afternoon weather  briefings to the gas traders . this includes analysis and report preparation  as well as presentation . also in the presentation arena , he now regularly  briefs various desks in the morning and throughout the day . stephen is a  master of communication and particularly adept at conveying what through  other messengers might otherwise seem confusing or ambiguous .  stephen has also demonstrated an unusually high level of self - initiative . he  designed , implemented , and now maintains several sub - sites on the research  web page which he tailored to various customers - in specific : the weather  derivatives team , the agricultural team , and most recently , the crude and  liquids team . i have recently assigned stephen to spearhead our conversion  and major upgrade of this web page .  these above described accomplishments are above and beyond stephen \u0001 , s regular  duties which include starting work at 5 am daily , reliably and without fail ,  to assemble and prepare our trader \u0001 , s weather report . recently , with the  advent of extended hours for both nymex and enrononline , stephen voluntarily  on his own accord , assists in our new sunday weather support effort . as his  supervisor , fully cognizant of his already standard 50 + hour work week , i do  not solicit , but readily accept , this above and beyond expectations  assistance .  in review , the circumstance which resulted in this under hire condition was  enron \u0001 , s immediate need for a non - standard , fairly unique professional - a  meteorologist , coupled with stephen \u0001 , s desire to work for our company in spite  of the absence of a hierarchy which included the exact entitled professional  title reflecting his chosen career path . . once hired , stephen has clearly  demonstrated through contribution and performance that he is well - deserving  of this immediate and retroactive promotion .\",0\n\"Subject: re : alp presentation  christie ,  what about the invitation to dinner for gillis and whitaker ?  vince  christie patrick  04 / 10 / 2001 06 : 01 pm  to : mgillis @ rice . edu , grwhit @ rice . edu  cc : vince j kaminski / hou / ect @ ect , steven j kean / na / enron @ enron  subject : alp presentation  president gillis and dean whitaker ,  enron would be honored with your presense at the presentation set forth below .  under the guidance of vince kaminski and his team here at enron , we are thoroughly enjoying working with this group of bright and enthusiastic rice students . we hope you can join us for the culmination of their significant efforts .  please let me know - - thanks ! !  - - christie .  - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 04 / 10 / 2001 05 : 52 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  04 / 10 / 2001 08 : 13 am  to : barrett @ rice . edu , uecker @ rice . edu , cmiller @ rice . edu , lounghrid @ rice . edu , luigical @ rice . edu  cc : vince j kaminski / hou / ect @ ect , christie patrick / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , kenneth parkhill / na / enron @ enron  subject : alp presentation  on behalf of enron corp . i would like to invite you to an alp project presentation by a group of students  of jesse h . jones graduate school of management , rice university .  the students will present the results of a research project regarding electronic trading  platforms in the energy industry .  the presentation will be held on may 7 , at 4 : 00 p . m . at enron , 1400 smith .  we would also like to invite you to dinner , following the presentation .  vince kaminski  vincent kaminski  managing director - research  enron corp .  1400 smith street  room ebl 962  houston , tx 77002 - 7361  phone : ( 713 ) 853 3848  ( 713 ) 410 5396 ( cell )  fax : ( 713 ) 646 2503  e - mail : vkamins @ enron . com\",0\n\"Subject: vince kaminski ' s \"\" bio \"\" and requirements for the siam invitation  hello professor fitzgibbon :  attached please find a \"\" bio \"\" for vince kaminski . he will require an lcd  projector for his presentation .  if you need anything else , please let me know .  regards ,  shirley crenshaw  administrative coordinator  enron research group  713 - 853 - 5290  email : shirley . crenshaw @ enron . com  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 12 / 2001  03 : 30 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  04 / 11 / 2001 02 : 17 pm  to : shirley crenshaw / hou / ect @ ect  cc :  subject : siam invitation  fyi  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 11 / 2001  02 : 19 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" william fitzgibbon \"\" on 03 / 13 / 2001 02 : 45 : 57 pm  to :  cc :  subject : siam invitation  dear dr . kaminski  here is an email invitation for teh siam event . a hard copy will follow  dr . v . kaminski  enron  p . o . box 1188  houston , texas 77251 - 1188  dear dr . kaminski  march 12 , 2001  i am writing to formalize your invitation to attend , participate , and speak  in the siam southwest regional mathematics in industry workshop . a time  span of thirty minutes is being allotted to invited talks with an additional  ten minutes or so for discussion . the workshop , funded under the auspices  of a national science foundation grant to siam will not be a standard  applied mathematics event with representatives from industry , academe , and  governmental agencies presenting their latest research results . instead the  meeting will emphasize the mathematics and technology currently applied to  the projects of industry and governmental laboratories . additionally the  event will focus upon the mechanisms facilitating interaction and  collaboration between the academy , industry , and government laboratories .  the workshop will be held at the university of houston hilton hotel , april  27 - 28 . funds will be available to support both travel expenses and the cost  of food and lodging of invited speakers . we will be happy to make travel  arrangements on this end if so desired .  we hope that you can accept our invitation . if this is the case please  furnish us with a title , a short abstract , and a list of the necessary  equipment for your presentation .  we look forward to seeing you at the university of houston .  sincerely  w . fitzgibbon\",0\n\"Subject: maureen  norma ,  i talked to g . koepke , an associate reporting to maureen  she told me that things have significantly improved in recent weeks .  vince\",0\n\"Subject: re : recruiting for weather risk management group  hello vince ,  thank you very much for forwarding the message . i hope all is well with  you !  regards ,  heather  on fri , 27 apr 2001 vince . j . kaminski @ enron . com wrote :  >  > heather ,  >  > i am forwarding this message to 2 groups in enron that may be interested .  >  > vince  >  >  >  >  >  > \"\" heather thorne \"\" on 04 / 26 / 2001 08 : 55 : 56 pm  >  > to : \"\" christie patrick \"\" , \"\" vince kaminsky \"\"  >  > cc : \"\" greg hunt home \"\"  > subject : recruiting for weather risk management group  >  >  >  >  > dear vince and christie ,  >  >  >  > i hope that you are both well , and are ready for the onset of summer in  > houston ! i was disappointed that i was not able to see you at the final  > tiger team presentations last month due to a family emergency . i hope that  > the teams ' analyses will be helpful to your work , and echo their  > appreciation of your involvement and support .  >  >  >  > i am writing with a question regarding recruiting for enron ' s weather risk  > management group . my boyfriend , greg hunt , is currently seeking  > opportunities to combine his background in meteorology ( ms and 2 years of  > research at lawrence livermore nat ' l lab ) and an mba in finance and  > information technology . i began thinking about enron ' s work in weather  > derivatives , and realized that there could possibly be a great fit there .  >  >  >  > i have copied greg on this message , and would appreciate any suggestions  > you can offer regarding opportunities in this group . thank you very much !  >  >  >  > best regards ,  >  >  >  > heather  >  >  >  >  >  >  >  >  >  > heather n . thorne  >  > mba candidate , 2001  >  > the wharton school at university of pennsylvania  >  > 2516 pine street  >  > philadelphia , pa 19103  >  > ( 215 ) 545 - 3022  >  >  >  >  >  >\",0\n\"Subject: foreign language lessons  fyi !  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 01 / 27 / 2000  01 : 36 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  leandro ibasco @ enron  01 / 27 / 2000 01 : 07 pm  to : shirley crenshaw / hou / ect @ ect  cc :  subject : please distribute this message to the entire research group  shirley ,  kindly forward to the entire research group .  hi ,  vince has requested me to inform you that foreign language lessons are  available .  among the languages offered are spanish , portugese , french , german , mandarin ,  and japanese .  other languages are possible . the lessons can be done in a small class or  through a private tutor .  the schedule is quite flexible with the latest class being at 5 : 00 to 6 : 30  p . m .  to arrange classes , please contact meilli sanford at ( 713 ) 464 - 8474 . they  would need an e - mail  approval from vince to enroll .  if you have any questions , please feel free to contact me .  regards ,  roy\",0\n\"Subject: erisk essentials  ? www . erisk . com  what ' s new at erisk . com - 23 march 2001  weekly review this week ' s economic , banking and p _ insurance news , from an  enterprise risk management perspective . read it here . . .  analysis  in this week ' s analysis :  \u0001 \u0007 taking the long view on credit risk management  \u0001 \u0007 the risks of cracking down on insurance fraud and  \u0001 \u0007 fannie mae controversy puts debt benchmark in jeopardy  feature the treatment of operational risk is one of the more controversial ,  and poorly understood , elements of basle ' s proposed revisions to the capital  accord . in this exclusive article , penny cagan of zurich financial services  explains what the basle accord proposals mean for most banks , where there ' s  room for improvement and how to get started on building an operational risk  framework  iconference archive  couldn ' t make it to our iconference on risk transfer , featuring martin nance  of aig structured products and barry finkelstein , joe parsons and chris  crevier of merrill lynch ? check out the iconference archive later this week  to find out what you missed . still available : the proceedings of our two  recent basle iconferences , featuring bill treacy of the federal reserve  board , ashish dev of key bank and andy hickman of erisk  events  calendar feeling the need to network ? check out our comprehensive listing of  risk management events around the world in the events calendar  the erisk essentials is published every friday by erisk . com .  to subscribe to this newsletter , please register on our website .  to unsubscribe , access your account . your username is the email address  where you received this message .  to be reminded of your password , or to reset it , follow this link .\",0\n\"Subject: parking at 777 clay  hi louis :  we will have several employees from the london office coming to houston  this summer ( they will be rotating ) beginning 7 / 31 / 00 . can we get a parking  space at 777 clay for them ? we only need one for 7 / 31 / 00 - 11 / 30 / 00 ( 4  months ) .  the other alternative would be the stickers for allen center . do you still  have  them ?  please let me know .  thanks !  shirley crenshaw\",0\n\"Subject: garp 2001 convention  dear garp 2001 speaker  ?  the program for the garp 2001 convention is nearly printed and i will be  sending you a few copies of the program in the next few days . in the  meantime , you can find the program on our web site at www . garp . com  ?  in addition , i am writing to inquire whether your organisation can establish  a web link to our program through your organisations ' web site . below is the  information that is of most importance and that i would like included :  ?  garp 2001 - 2 nd annual risk ? management convention & exhibition , february  12 th to 15 th february , 2001 , ? new york .  for full program details please visit www . garp . com or contact garp on tel .  + 44 ( 0 ) 20 ? 7626 9300 .  of course , you could highlight your participation at this event , which will  include a two - day convention with pre and post convention workshops and an  asset management forum that will include over 80 senior financial and risk  management professionals . i have also attached a small logo that could be  used as a link to the garp web site . can i please have the web address  should you , or your colleagues manage to establish a web link to the  convention . if you also feel that there are any important web sites that  this convention should be posted on , then i would appreciate it if you could  pass on this information .  ?  just to keep you informed , already , within a week of the web site going  ' live ' , there have been about a dozen bookings and numerous inquiries . this  is a very good sign that garp 2001 will be a great success and will out - do  garp 2000 .  ?  of course , if you have any questions or queries , please do not hesitate to  contact me . i thank you in advance for your co - operation and i look forward  to meeting you in new york in february .  ?  kind regards  ?  andreas  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  andreas simou  garp 2001 - conference producer  tel ? + 44 ( 0 ) 20 7626 9301  fax + 44 ( 0 ) 20 7626 9900  - garp 2001 . gif\",0\n\"Subject: good afternoon  christie ,  i wanted to update you on my schedule for december as you are working to  arrange some time for vince and i to visit with the enron leadership group .  we had talked about the first week in december and that is good for me  through wednesday dec 6 th . i will be at a conference at harvard on the 7 th  and 8 th . however , the next couple of weeks are also possibilities if we  can squeeze in some time .  thanks  john  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: russian investment climate : multimedia playback - cera multimedia  cera multimedia : sent thu , august 17 , 2000  title : russian investment climate : multimedia playback  author : eurasia energy  e - mail category : multimedia  product line : eurasia energy ,  url : http : / / www . cera . com / cfm / track / eprofile . cfm ? u = 5166 & m = 1317 ,  alternate url :  in an august 10 , 2000 , cera multimedia conference call and web presentation ,  thane gustafson , cera director , eurasia energy , john webb , cera associate ,  and carolyn miles , cera associate , discuss :  russian investment climate : toward stability or fresh turmoil ? implications  for the energy sector  * the russian investment climate under putin : where is it headed ?  * the booming russian economy : how much energy and energy investment will it  need ?  * the russian oil industry awash in profits : what is it doing with them ?  to view and listen to a replay of this presentation , please click on the link  above .  account changes  to edit your personal account information , including your e - mail  address , etc . go to : http : / / eprofile . cera . com / cfm / edit / account . cfm  this electronic message and attachments , if any , contain information  from cambridge energy research associates , inc . ( cera ) which is  confidential and may be privileged . unauthorized disclosure , copying ,  distribution or use of the contents of this message or any attachments ,  in whole or in part , is strictly prohibited .  terms of use : http : / / www . cera . com / tos . html  questions / comments : webmaster @ cera . com  copyright 2000 . cambridge energy research associates\",0\n\"Subject: re :  denise ,  no problem .  we shall prepare a short presentation to address these issues .  vince kaminski  denise furey @ ees  01 / 09 / 2001 11 : 12 am  to : vince j kaminski / hou / ect @ ect  cc :  subject :  i hope you have seen the email below . do you have any problem with what  jeremy has asked you or your group to address . is there anything that you  want us to supply to you to assist you ?  - - - - - - - - - - - - - - - - - - - - - - forwarded by denise furey / hou / ees on 01 / 09 / 2001 11 : 11  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  denise furey  01 / 08 / 2001 11 : 46 am  to : gayle w muench / hou / ees @ ees , michael tribolet / corp / enron @ enron , william s  bradford / hou / ect @ ect , vince j kaminski / hou / ect @ ect , vasant  shanbhogue / hou / ect @ ect  cc : don black / hou / ees @ ees , tony spruiell / hou / ees @ ees  subject :  i believe all of you received a request from jeremy blachman to hold the  afternoon of january 10 th open for an off - site to discuss the manner in which  rac and research assess / test the credit quality of ees transactions . i  realize that rac and ees have had many discussions as to the methodology , but  it might be helpful for all of us to understand the actual derivation of some  of analysis . please call me with any questions or comments at ext # 30349 .  the agenda will be as follows :  12 : 00 - 1 : 00 lunch  1 : 00 - 3 : 30 presentations  3 : 30 - to close discussion  rac / research presentations  the following topics would be of interest to ees :  1 - the derivation of default probabilities including ( research )  - - a discussion of the actual mathematical process ,  - - the analytics behind why these computations are deemed the best for  enron ,  - - a comparison to historic default rates and why they differ ( in respect  to actual default rates , shape of the cumulative default curves etc .  2 - the volatilities which are used to determine possible loss scenarios for  the commodity portion of ees deals including ( research )  - - the selection of curves  - - the application of those curves to the actual credit reserve model and  - - why these particular tests are applicable to our products .  3 - the recovery rates used in the credit reserve model . how are these  figures derived ? ( rac )  4 - how rac and research have adjusted the credit reserve model to  accommodate unusual aspects of the deal including ( rac )  - - promotion payments ,  - - accounts receivable  - - committed capital  - - and other factors  ees also understands that some of you may be familiar with our processes ,  however , there are perhaps areas that you would like to understand more  fully . please tell us what you would like to hear from us .  also , rac has sent us the credit reserve model and i have seen completed  models . perhaps prior to our meeting on wednesday , someone from rac and / or  research could sit with me and someone from phil layton ' s group and go  through the process of how the various pieces are put together .\",0\n\"Subject: short term private firm model : static historical  snapshot + performance data for model development  mike , scott , eric ,  after brainstorming and discussing further on data here , we think that our  final specifications for modelling data requirement need to be as follows :  we need bankrupt , default and nondefault ( which covers nonbankrupt ) accounts  with 4 quarterly observation snapshots and 12 months performance following  the latest snapshot . monthly performance indicator need to be available for  the entire 12 months performance period . we will need all the bankrupt and  default accounts and comparable sample of good accounts with weights .  for the purpose of model validation , we will need data with above specs  covering 16 months of performance . this means that we will need rolling ( 4  quarterly snapshots + 12 months performance ) data for 4 monthly shifts :  input snapshots performance  1999 march end , 1999 june end , 1999 september end , 1999 december end 12  month end performance for jan 2000 through dec 2000  1999 feb end , 1999 may end , 1999 august end , 1999 november end 12 month  end performance for dec 1999 through nov 2000  1999 jan end , 1999 apr end , 1999 july end , 1999 october end 12 month end  performance for nov 1999 through oct 2000  1998 december end , 1999 mar end , 1999 june end , 1999 september end 12  month end performance for oct 1999 through sep 2000  we will need bankruptcy chapterwise indicator , if available during the  performance period . our definition of default is either bankruptcy or 90 +  days delinquency on any trade credit .  we have also discussed the cost aspect and we think considering the big  picture , it makes sense to spend the extra amount to get the right data for  analysis .  please let me know your thoughts . this will require d & b to give us a  modified quote and we could possibly move forward quickly .  regards ,  amitava\",0\n\"Subject: re : christmas basket list  here is the updated list that we have for christmas .  the orders will be placed on dec . 12 th .  the orders will arrive at the enron building dec . 19 th . and all outside orders  will arrive before dec . 22 nd .  please inform , if this is okay .  thanks  kevin  moore  i will discuss cost with vince after meeting with bill on friday .  kevin g moore  12 / 01 / 2000 09 : 26 am  to : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , mike a  roberts / hou / ect @ ect , jose marquez / corp / enron @ enron , stinson  gibner / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , anita dupont / na / enron @ enron  cc :  subject : christmas basket list  hello everyone ,  we are nearing the time to get the baskets and other christmas tokens sent  out .  as in every year , we do take the time to send tokens of appreciation  for services rendered , or share the christmas sprit with those we feel  worthty .  here is the list that i have already , approved by vince .  if there are any additions please inform me a . s . a . p .  the deadline is december 12 th , as i will be meeting with the  owner of floral events to confirm the order and treat him to  lunch for all the great work he has provided for me .  thanks  kevin moore  please note : i will be out on vacation and all orders will already have been  placed  with the delivery date on december 19 th . the day of my return ,  therefore if any problems occur i will have enough time to solve them .\",0\n\"Subject: stanford mba recruiting  greg ,  this is the agenda for the recruiting trip to stanford next week .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 08 / 2001  11 : 21 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  althea gordon @ enron  03 / 07 / 2001 04 : 30 pm  to : vince . kaminski @ enron . com , brad . romine @ enron . com , brad . alford @ enron . com ,  martin . lin @ enron . com , theresa _ riedman @ enron . net , matt _ harris @ enron . net ,  michael . smythe @ enron . net , benjamin . bell @ enron . com , mauricio . mora @ enron . com ,  celeste . roberts @ enron . com  cc : shirley . crenshaw @ enron . com , paula . austin @ enron . com ,  dolores . muzzy @ enron . com , cathy . lira @ enron . com , patricia . payton @ enron . com  subject : stanford mba recruiting  thank you for agreeing to participate in the associate program ' s recruiting  efforts at stanford graduate school of business .  the itinerary for the trip is as follows :  wednesday , march 14 , 7 : 00 p . m . to 9 : 00 p . m . dinner with students selected to  interview  il fornaio , the sala del canaletto room  520 cowper street , palo alto  ( 650 ) 853 - 3888  thursday , march 15 , 8 : 30 a . m . to 4 : 45 p . m . round 1 interviews for both  summer and full time associates  stanford gsb career services center  interviewers :  theresa riedman  brad romine  brad alford  martin lin  michael smythe - to be confirmed  benjamin bell - to be confirmed  mauricio mora - greeter / alternate interviewer  thursday , march 15 , 12 : 15 p . m . to 1 : 30 p . m . lunch with dean george parker  ( associate dean of academics ) and  sherrie taguchi ( director of career services ) .  stanford gsb career services center  we will be ordering lunch in .  friday , march 16 , 8 : 00 a . m . to 12 : 00 p . m . * round 2 interviews for both  summer and full time associates  stanford gsb career services center  interviewers :  vince kaminski  matthew harris  * please note that this is an approximate time that will be based on the  number of candidates who successfully pass round 1 interviews on thursday .  your hotel information is as follows :  stanford park hotel  100 el camino real  menlo park  ( 650 ) 322 - 1234  upon confirmation of your participation you will receive your hotel  confirmation number . in the event that you have not received your hotel  confirmation number please contact my assistant , cathy lira , at x 54049 .  attire for the trip will be business casual . if you have any questions  please feel free to give me a call at x 53860 . in case of emergency ( and  during the trip itself ) i can be reached at ( 713 ) 416 - 6250 .  thank you for your support of the program .\",0\n\"Subject: video conference scheduling  in order to improve the video conferencing services offered to the enron  community , the video conference group will be implementing the following  procedural changes . these changes will be effective immediately .  conference scheduling :  please route all video conference requests via email to ' videoconference '  ( one word ) or by phone to 713 - 345 - 8500 ( x 5 - 8500 ) . once room reservations are  complete , conferences will be scheduled and confirmation notices sent to the  requestor via email . each requestor will receive a confirmation notice the  business day preceding scheduled conferences .  the following information will be required for all conference requests :  requestor name and contact number  sites to be included in the conference  site contact names along with associated phone numbers  date , time and duration of conference  company number / rc or cost center of requestor  preferred conference rooms ( near - end and far - end )  technical problems :  should problems arise during a video conference , call 713 - 345 - 8555 and a  technician will be immediately dispatched  thanks in advance for your cooperation ,  video conferencing support\",0\n\"Subject: re : monte carlo techniques  zimin ,  this is the course description i got from hal . can you follow up with him  to schedule a date for a high level presentation ? i think we should keep  it to only 90 minutes or so . maybe you and kevin kindall can be the  presenters .  - - stinson  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 04 / 11 / 2000  04 : 12 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  harold bertram  04 / 11 / 2000 08 : 38 am  to : stinson gibner / hou / ect @ ect  cc :  subject : re : monte carlo techniques  stinson , i feel i would benefit from understanding the monte carlo techniques  and what it applies to , as well as when it is used these mc techniques . i think  i could get several people interested . thanks , hal  stinson gibner  04 / 10 / 2000 09 : 40 am  to : harold bertram / hou / ect @ ect  cc :  subject : monte carlo techniques  hal ,  actually , i am no longer scheduled to speak at the risk conference on m - c  techniques . we could probably put together an internal training for you if  you want . i ' ll bring this up with vince at our staff meeting tomorrow .  it would be helpful if you can describe for me the intended audience and the  types of applications that would interest them .  thanks ,  - - stinson\",0\n\"Subject: new retail electricity provider survey  as a result of recent deregulation in states such as pennsylvania and  california , many new companies are entering the retail energy market . today ,  consumers in several states are able to choose their energy provider in much  the same way they choose their long - distance phone company . a survey has  been commissioned by the research group to better understand which factors  are most important to consumers considering switching energy providers .  the survey consists of 28 question , and can be found on the following website :  if you , your spouse , or someone else in your family has time to take this  survey , we would appreciate your input .  feel free to forward this email to others . thanks for your time and  consideration .\",0\n\"Subject: re : signature ' s  kevin ,  i would like to see the expense reports to monitor  the rate at which we approach our group budget limits .  thanks .  vince  kevin g moore  02 / 22 / 2000 08 : 48 am  to : vince j kaminski / hou / ect @ ect , mike a roberts / hou / ect @ ect , shirley  crenshaw / hou / ect @ ect  cc :  subject : signature ' s  hello everyone ,  starting today , 2 / 22 / 00 mike roberts signed a expense report .  vince , i need to know from you if this is okay and do you want to see  them ?  also shirley , if mike signs for anything else other than a expense report ,  i will pass it by your desk whereby you can know exactly what it is .  thanks  kevin moore  please inform . . . . . . . .\",0\n\"Subject: re : \"\" energy derivatives \"\"  frank :  i discussed this with vince kaminski and he said that , while we would be  glad to assist you , the time involved in ordering and collecting the money  ( they are pretty expensive ) , distributing the books , etc . would be too time  consuming for us at this time .  you can go to www . lacimagroup . com and order the books directly . tell  them you are ordering the books for use at enron and they should give you  a 15 % discount .  i am sorry that we cannot do this at this time .  regards ,  shirley crenshaw  administrative assistant  enron research group  713 / 853 - 5290  \"\" frank ribeiro \"\" on 01 / 28 / 2001 09 : 50 : 44 am  to :  cc :  subject : \"\" energy derivatives \"\"  as we had discussed in our phone conversation friday , i would ask you to  order six copies of the newly enron - published \"\" energy derivatives \"\" for  paradigm strategy group . we do the various derivatives training courses for  enron , and this book will be required reading for all our instructors .  please advise as to the total cost of the books . if payment by check is ok ,  please let me know to whom the check should be made payable .  you can reach me by e - mail , or phone at 281 - 360 - 7822 .  thanks for your help .  frank ribeiro  paradigm\",0\n\"Subject: re : ming sit  vince ,  thanks for the update . if there is anything i can facilitate or bring more  info about ming ,  please let me know .  zimin  vince j kaminski  05 / 22 / 2000 01 : 15 pm  to : zimin lu / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : ming sit  zimin ,  some feedback i have received on ming .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 05 / 22 / 2000  01 : 17 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  pinnamaneni krishnarao  05 / 22 / 2000 12 : 35 pm  to : dennis benevides / hou / ees @ ees  cc : vince j kaminski / hou / ect @ ect , ronnie chahal / hou / ees @ ees  subject : re : ming sit  dennis :  i talked to ming for only short time and am concerned about the cons scott  mentioned . i would like to know what your assessment is like . also , i would  like vince , ronnie & myself to talk to ming over the phone . can we call him  directly and talk to him ? please let me know how strongly you feel about  having him as a support person .  thanks ,  krishna .  x 35485  to : pinnamaneni krishnarao / hou / ect @ ect  cc :  subject : re : ming sit  krisna :  are you still interested in hiring ming sit , through the research group . if  so , please proceed and assign him to support ees . please let me know if i  need to provide any information .  thanks  dennis  - - - - - - - - - - - - - - - - - - - - - - forwarded by dennis benevides / hou / ees on 05 / 22 / 2000  09 : 43 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  james w lewis  05 / 21 / 2000 11 : 44 am  to : dennis benevides / hou / ees @ ees  cc : scott stoness / hou / ees @ ees  subject : re : ming sit  i like db ' s suggestion . let ' s do it .  enron energy services  from : dennis benevides 05 / 19 / 2000 03 : 31 pm  phone no : 713 853 - 9609  to : scott stoness / hou / ees @ ees  cc : james w lewis / hou / ees @ ees  subject : re : ming sit  got a little scared at your first sentence i read \"\" he is no replacement for  jay but he could be for dennis b . . \"\" ? ? .  anyway :  i think he would be a good fit withing the group . krisna has offered to hire  him in the research group , he has good programing background and is excited  about working for enron instead of a utility such as pacificcorp . he  expressed interest in applying his skill to make $ $ $ $ .  i suggest bringing him in in research as a first alternative . i see three  potential applications where we can use his skills to evaluate best longer  term fit :  continuing ronnie ' s model building role , but with a focus within neil ' s group  to tie rm systems together  bridge the lack of phd econometrics expertise we have as are result of the  departure of anoush .  risk management systems infrastructure development .  scott stoness  05 / 19 / 2000 02 : 02 pm  to : james w lewis / hou / ees @ ees  cc : dennis benevides / hou / ees @ ees  subject : ming sit  he is no replacement for jay but he could be a dennis b employee .  pros :  engineer so would be good at math  his boss hired him a 2 nd time ( 1 at txu and again at pacificor again ) so he  must be reliable  phd in economics and engineering ( good ) from stanford ( ugh : ) : ) : ) )  cons :  does not understand tariffs . i asked him and he said he is not experienced .  i probed too and he does not understand regulatory that well .  does not understand ancillary services ( which is surprising to me since he  started out as an plant operation side of hk power )  has limited people management skills ( he described 1 analyst he works with  that is not capable that he has to jump into the excel spreadsheet and fix it  for him and he cannot give him feedback because it is a utility mentality )  he is not a good communicator ( i asked him to describe what he did in hk  power and it took him forever to explain because he expected me to know that  plant operations meant planning the start up of oil plants ) .  overall :  i suspect that he is a very solid guy when it comes to analysis but not  particularly creative or good at communication and leadership . he would be a  great support person .  i would hire for analysis but not as a potential leader . go\",0\n\"Subject: re : hello  shijie ,  thanks for your message . my assistant will call you to discuss the timing  of the visit .  vince  shijie deng on 06 / 29 / 2000 12 : 00 : 37 am  to : vkamins @ enron . com  cc :  subject : hello  hi vince ,  how are you . it was really a pleasure meeting you and talking to you at  the toronto energy derivative conference . thank you for speaking with  me about the possibility of visiting your research group . it will be  great if i could have such opportunity whenever you see your schedule  fits . i am very much open for the last week of july and early august .  i ' m looking forward to hearing from you soon .  best ,  shijie  shi - jie deng  assistant professor  school of isye  georgia institute of technology  office phone : ( 404 ) 894 - 6519  e - mail : deng @ isye . gatech . edu  home page : http : / / www . isye . gatech . edu / ~ deng\",0\n\"Subject: re : order for book  julie ,  the discount is fine . look fwd to receiving the books .  vince  \"\" julie \"\" on 01 / 08 / 2001 09 : 30 : 53 pm  please respond to \"\" julie \"\"  to : \"\" vincejkaminski \"\"  cc :  subject : order for book  vince ,  ?  i can offer you 12 . 5 % off of your order for 50 books ( we originally spoke to  habiba about setting up a 50 % discount ? but enron would have to order a  minimum of 200 books . ? ? since the ? change over , nothing has been set up on  this ) . ?  ?  let me know if i should go ahead with the invoice .  ?  thanks ,  julie\",0\n\"Subject: re : thanks  thanks for the update , vince . i have been trying to discuss this with you  for several days , but i know that you have been very busy . jaesoo told me  that he wanted a base of $ 90 k rather than the $ 85 k which you had authorized  me to offer him , and i told him that i would have to discuss it with you and  get back to him . i am glad that he has seen his way a little more clearly ,  and i will call him tomorrow to finalize the offer .  vince j kaminski  11 / 07 / 2000 05 : 29 pm  to : molly magee / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : thanks  fyi  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 11 / 07 / 2000  05 : 36 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  jlew @ kent . edu > on 11 / 07 / 2000 07 : 19 : 20 am  to : vince . j . kaminski @ enron . com  cc : jlew @ kent . edu  subject : thanks  dear dr . kaminski  first of all , i would like to thank you for the offer from the enron .  i really appreciate it .  molly and i talked about the salary the other day , but to be honest with you ,  i ' m pleased with the possibility that i can work there where i want to work  and the salary is the next .  if this matter bothers you , please ignore it . i can accept the original offer .  i ' m looking forward to seeing you soon .  sincerely ,  jaesoo\",0\n\"Subject: pdo index update  - - - - - - - - - - - - - - - - - - - - - - forwarded by mike a roberts / hou / ect on 08 / 09 / 2000  03 : 18 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  nathan mantua on 08 / 09 / 2000 03 : 10 : 00 pm  to : undisclosed - recipients : ;  cc : ( bcc : mike a roberts / hou / ect )  subject : pdo index update  pdo index values are now updated through  july 2000 . note that the january and february 2000 values have changed  a bit from the last update , and this is due to changes in the  reynolds optimally interpolated sst data from which this pdo  index is calculated .  my next update will be in november .  year jan feb mar apr may jun jul  2000 - 1 . 99 - 0 . 82 0 . 29 0 . 35 - 0 . 05 - 0 . 43 - 0 . 66  the full data series is available via the web at url :  best wishes ,  nate mantua  pdo index  updated standardized values for the pdo index , derived as the  leading pc of monthly sst anomalies in the north pacific ocean ,  poleward of 20 n . the monthly mean global average sst anomalies  are removed to separate this pattern of variability from any  \"\" global warming \"\" signal that may be present in the data .  for more details , see :  zhang , y . , j . m . wallace , d . s . battisti , 1997 :  enso - like interdecadal variability : 1900 - 93 . j . climate , 10 , 1004 - 1020 .  mantua , n . j . and s . r . hare , y . zhang , j . m . wallace , and r . c . francis , 1997 :  a pacific interdecadal climate oscillation with impacts on salmon  production . bulletin of the american meteorological society , 78 ,  pp . 1069 - 1079 .  ( available via the internet at url :  data sources for this index are :  ukmo historical sst data set for 1900 - 81 ;  reynold ' s optimally interpolated sst for january 1982 - latest  missing value flag is - 9999  year jan feb mar apr may jun jul aug sep  oct nov dec  1900 0 . 04 1 . 32 0 . 49 0 . 35 0 . 77 0 . 65 0 . 95 0 . 14 - 0 . 24 0 . 23  - 0 . 44 1 . 19  1901 0 . 79 - 0 . 12 0 . 35 0 . 61 - 0 . 42 - 0 . 05 - 0 . 60 - 1 . 20 - 0 . 33 0 . 16  - 0 . 60 - 0 . 14  1902 0 . 82 1 . 58 0 . 48 1 . 37 1 . 09 0 . 52 1 . 58 1 . 57 0 . 44 0 . 70  0 . 16 - 1 . 10  1903 0 . 86 - 0 . 24 - 0 . 22 - 0 . 50 0 . 43 0 . 23 0 . 40 1 . 01 - 0 . 24  0 . 18 0 . 08 - 0 . 03  1904 0 . 63 - 0 . 91 - 0 . 71 - 0 . 07 - 0 . 22 - 1 . 53 - 1 . 58 - 0 . 64 0 . 06  0 . 43 1 . 45 0 . 06  1905 0 . 73 0 . 91 1 . 31 1 . 59 - 0 . 07 0 . 69 0 . 85 1 . 26 - 0 . 03  - 0 . 15 1 . 11 - 0 . 50  1906 0 . 92 1 . 18 0 . 83 0 . 74 0 . 44 1 . 24 0 . 09 - 0 . 53 - 0 . 31  0 . 08 1 . 69 - 0 . 54  1907 - 0 . 30 - 0 . 32 - 0 . 19 - 0 . 16 0 . 16 0 . 57 0 . 63 - 0 . 96 - 0 . 23  0 . 84 0 . 66 0 . 72  1908 1 . 36 1 . 02 0 . 67 0 . 23 0 . 23 0 . 41 0 . 60 - 1 . 04 - 0 . 16  - 0 . 41 0 . 47 1 . 16  1909 0 . 23 1 . 01 0 . 54 0 . 24 - 0 . 39 - 0 . 64 - 0 . 39 - 0 . 68 - 0 . 89 - 0 . 02  - 0 . 40 - 0 . 01  1910 - 0 . 25 - 0 . 70 0 . 18 - 0 . 37 - 0 . 06 - 0 . 28 0 . 03 - 0 . 06 0 . 40  - 0 . 66 0 . 02 0 . 84  1911 - 1 . 11 0 . 00 - 0 . 78 - 0 . 73 0 . 17 0 . 02 0 . 48 0 . 43 0 . 29 0 . 20  - 0 . 86 0 . 01  1912 - 1 . 72 - 0 . 23 - 0 . 04 - 0 . 38 - 0 . 02 0 . 77 1 . 07 - 0 . 84 0 . 94  0 . 56 0 . 74 0 . 98  1913 - 0 . 03 0 . 34 0 . 06 - 0 . 92 0 . 66 1 . 43 1 . 06 1 . 29 0 . 73  0 . 62 0 . 75 0 . 90  1914 0 . 34 - 0 . 29 0 . 08 1 . 20 0 . 11 0 . 11 - 0 . 21 0 . 11 - 0 . 34  - 0 . 11 0 . 03 0 . 89  1915 - 0 . 41 0 . 14 - 1 . 22 1 . 40 0 . 32 0 . 99 1 . 07 0 . 27 - 0 . 05 - 0 . 43  - 0 . 12 0 . 17  1916 - 0 . 64 - 0 . 19 - 0 . 11 0 . 35 0 . 42 - 0 . 82 - 0 . 78 - 0 . 73 - 0 . 77 - 0 . 22  - 0 . 68 - 1 . 94  1917 - 0 . 79 - 0 . 84 - 0 . 71 - 0 . 34 0 . 82 - 0 . 03 0 . 10 - 0 . 22 - 0 . 40 - 1 . 75  - 0 . 34 - 0 . 60  1918 - 1 . 13 - 0 . 66 - 1 . 15 - 0 . 32 - 0 . 33 0 . 07 0 . 98 - 0 . 31 - 0 . 59  0 . 61 0 . 34 0 . 86  1919 - 1 . 07 1 . 31 - 0 . 50 0 . 08 0 . 17 - 0 . 71 - 0 . 47 0 . 38 0 . 06 - 0 . 42  - 0 . 80 0 . 76  1920 - 1 . 18 0 . 06 - 0 . 78 - 1 . 29 - 0 . 97 - 1 . 30 - 0 . 90 - 2 . 21 - 1 . 28 - 1 . 06  - 0 . 26 0 . 29  1921 - 0 . 66 - 0 . 61 - 0 . 01 - 0 . 93 - 0 . 42 0 . 40 - 0 . 58 - 0 . 69 - 0 . 78  - 0 . 23 1 . 92 1 . 42  1922 1 . 05 - 0 . 85 0 . 08 0 . 43 - 0 . 19 - 1 . 04 - 0 . 82 - 0 . 93 - 0 . 81 0 . 84  - 0 . 60 0 . 48  1923 0 . 75 - 0 . 04 0 . 49 0 . 99 - 0 . 20 0 . 68 1 . 16 0 . 84 - 0 . 24  1 . 10 0 . 62 - 0 . 36  1924 1 . 29 0 . 73 1 . 13 - 0 . 02 0 . 36 0 . 75 - 0 . 55 - 0 . 67 - 0 . 48  - 1 . 25 0 . 24 0 . 11  1925 - 0 . 05 - 0 . 14 0 . 20 0 . 86 0 . 79 - 1 . 08 - 0 . 06 - 0 . 86 0 . 52  0 . 04 0 . 88 1 . 19  1926 0 . 30 0 . 98 - 0 . 50 2 . 10 1 . 43 2 . 03 1 . 05 1 . 64 1 . 18  1 . 65 1 . 00 1 . 06  1927 1 . 07 1 . 73 0 . 15 - 0 . 18 0 . 30 0 . 69 - 0 . 31 - 0 . 73 - 0 . 41 - 0 . 62  - 0 . 07 0 . 07  1928 0 . 96 0 . 79 0 . 52 0 . 81 0 . 66 0 . 15 0 . 30 - 0 . 72 - 1 . 41  - 1 . 31 0 . 14 0 . 98  1929 0 . 97 0 . 52 0 . 50 0 . 55 1 . 07 0 . 50 - 0 . 06 - 0 . 69 0 . 45  - 0 . 21 1 . 24 - 0 . 03  1930 0 . 97 - 1 . 06 - 0 . 43 - 0 . 70 0 . 06 0 . 58 - 0 . 45 - 0 . 53 - 0 . 20 - 0 . 38  - 0 . 31 1 . 20  1931 0 . 08 1 . 56 1 . 13 1 . 28 1 . 66 0 . 39 1 . 49 0 . 02 - 0 . 01  - 0 . 17 0 . 34 1 . 09  1932 - 0 . 26 - 0 . 58 0 . 51 1 . 15 0 . 64 0 . 10 - 0 . 12 - 0 . 14 - 0 . 40 - 0 . 29  - 0 . 88 0 . 02  1933 0 . 29 0 . 02 0 . 15 - 0 . 05 - 0 . 50 - 0 . 68 - 1 . 81 - 1 . 56 - 2 . 28  - 1 . 19 0 . 55 - 1 . 10  1934 0 . 17 0 . 68 1 . 34 1 . 63 1 . 23 0 . 51 0 . 44 1 . 54 1 . 25  2 . 10 1 . 63 1 . 67  1935 1 . 01 0 . 79 - 0 . 11 1 . 10 0 . 99 1 . 39 0 . 68 0 . 63 0 . 98  0 . 21 0 . 13 1 . 78  1936 1 . 79 1 . 75 1 . 36 1 . 32 1 . 83 2 . 37 2 . 57 1 . 71 0 . 04  2 . 10 2 . 65 1 . 28  1937 0 . 00 - 0 . 49 0 . 38 0 . 20 0 . 53 1 . 75 0 . 11 - 0 . 35 0 . 63 0 . 76  - 0 . 18 0 . 55  1938 0 . 50 0 . 02 0 . 24 0 . 27 - 0 . 25 - 0 . 20 - 0 . 21 - 0 . 45 - 0 . 01  0 . 07 0 . 48 1 . 40  1939 1 . 36 0 . 07 - 0 . 39 0 . 45 0 . 98 1 . 04 - 0 . 21 - 0 . 74 - 1 . 10 - 1 . 31  - 0 . 88 1 . 51  1940 2 . 03 1 . 74 1 . 89 2 . 37 2 . 32 2 . 43 2 . 12 1 . 40 1 . 10  1 . 19 0 . 68 1 . 96  1941 2 . 14 2 . 07 2 . 41 1 . 89 2 . 25 3 . 01 2 . 33 3 . 31 1 . 99  1 . 22 0 . 40 0 . 91  1942 1 . 01 0 . 79 0 . 29 0 . 79 0 . 84 1 . 19 0 . 12 0 . 44 0 . 68 0 . 54  - 0 . 10 - 1 . 00  1943 - 0 . 18 0 . 02 0 . 26 1 . 08 0 . 43 0 . 68 - 0 . 36 - 0 . 90 - 0 . 49  - 0 . 04 0 . 29 0 . 58  1944 0 . 18 0 . 17 0 . 08 0 . 72 - 0 . 35 - 0 . 98 - 0 . 40 - 0 . 51 - 0 . 56  - 0 . 40 0 . 33 0 . 20  1945 - 1 . 02 0 . 72 - 0 . 42 - 0 . 40 - 0 . 07 0 . 56 1 . 02 0 . 18 - 0 . 27 0 . 10  - 1 . 94 - 0 . 74  1946 - 0 . 91 - 0 . 32 - 0 . 41 - 0 . 78 0 . 50 - 0 . 86 - 0 . 84 - 0 . 36 - 0 . 22 - 0 . 36  - 1 . 48 - 0 . 96  1947 - 0 . 73 - 0 . 29 1 . 17 0 . 70 0 . 37 1 . 36 0 . 16 0 . 30 0 . 58 0 . 85  - 0 . 14 1 . 67  1948 - 0 . 11 - 0 . 74 - 0 . 03 - 1 . 33 - 0 . 23 0 . 08 - 0 . 92 - 1 . 56 - 1 . 74 - 1 . 32  - 0 . 89 - 1 . 70  1949 - 2 . 01 - 3 . 60 - 1 . 00 - 0 . 53 - 1 . 07 - 0 . 70 - 0 . 56 - 1 . 30 - 0 . 93 - 1 . 41  - 0 . 83 - 0 . 80  1950 - 2 . 13 - 2 . 91 - 1 . 13 - 1 . 20 - 2 . 23 - 1 . 77 - 2 . 93 - 0 . 70 - 2 . 14 - 1 . 36  - 2 . 46 - 0 . 76  1951 - 1 . 54 - 1 . 06 - 1 . 90 - 0 . 36 - 0 . 25 - 1 . 09 0 . 70 - 1 . 37 - 0 . 08 - 0 . 32  - 0 . 28 - 1 . 68  1952 - 2 . 01 - 0 . 46 - 0 . 63 - 1 . 05 - 1 . 00 - 1 . 43 - 1 . 25 - 0 . 60 - 0 . 89 - 0 . 35  - 0 . 76 0 . 04  1953 - 0 . 57 - 0 . 07 - 1 . 12 0 . 05 0 . 43 0 . 29 0 . 74 0 . 05 - 0 . 63 - 1 . 09  - 0 . 03 0 . 07  1954 - 1 . 32 - 1 . 61 - 0 . 52 - 1 . 33 0 . 01 0 . 97 0 . 43 0 . 08 - 0 . 94  0 . 52 0 . 72 - 0 . 50  1955 0 . 20 - 1 . 52 - 1 . 26 - 1 . 97 - 1 . 21 - 2 . 44 - 2 . 35 - 2 . 25 - 1 . 95 - 2 . 80  - 3 . 08 - 2 . 75  1956 - 2 . 48 - 2 . 74 - 2 . 56 - 2 . 17 - 1 . 41 - 1 . 70 - 1 . 03 - 1 . 16 - 0 . 71 - 2 . 30  - 2 . 11 - 1 . 28  1957 - 1 . 82 - 0 . 68 0 . 03 - 0 . 58 0 . 57 1 . 76 0 . 72 0 . 51 1 . 59 1 . 50  - 0 . 32 - 0 . 55  1958 0 . 25 0 . 62 0 . 25 1 . 06 1 . 28 1 . 33 0 . 89 1 . 06 0 . 29 0 . 01  - 0 . 18 0 . 86  1959 0 . 69 - 0 . 43 - 0 . 95 - 0 . 02 0 . 23 0 . 44 - 0 . 50 - 0 . 62 - 0 . 85  0 . 52 1 . 11 0 . 06  1960 0 . 30 0 . 52 - 0 . 21 0 . 09 0 . 91 0 . 64 - 0 . 27 - 0 . 38 - 0 . 94 0 . 09  - 0 . 23 0 . 17  1961 1 . 18 0 . 43 0 . 09 0 . 34 - 0 . 06 - 0 . 61 - 1 . 22 - 1 . 13 - 2 . 01 - 2 . 28  - 1 . 85 - 2 . 69  1962 - 1 . 29 - 1 . 15 - 1 . 42 - 0 . 80 - 1 . 22 - 1 . 62 - 1 . 46 - 0 . 48 - 1 . 58 - 1 . 55  - 0 . 37 - 0 . 96  1963 - 0 . 33 - 0 . 16 - 0 . 54 - 0 . 41 - 0 . 65 - 0 . 88 - 1 . 00 - 1 . 03 0 . 45 - 0 . 52  - 2 . 08 - 1 . 08  1964 0 . 01 - 0 . 21 - 0 . 87 - 1 . 03 - 1 . 91 - 0 . 32 - 0 . 51 - 1 . 03 - 0 . 68 - 0 . 37  - 0 . 80 - 1 . 52  1965 - 1 . 24 - 1 . 16 0 . 04 0 . 62 - 0 . 66 - 0 . 80 - 0 . 47 0 . 20 0 . 59 - 0 . 36  - 0 . 59 0 . 06  1966 - 0 . 82 - 0 . 03 - 1 . 29 0 . 06 - 0 . 53 0 . 16 0 . 26 - 0 . 35 - 0 . 33 - 1 . 17  - 1 . 15 - 0 . 32  1967 - 0 . 20 - 0 . 18 - 1 . 20 - 0 . 89 - 1 . 24 - 1 . 16 - 0 . 89 - 1 . 24 - 0 . 72 - 0 . 64  - 0 . 05 - 0 . 40  1968 - 0 . 95 - 0 . 40 - 0 . 31 - 1 . 03 - 0 . 53 - 0 . 35 0 . 53 0 . 19 0 . 06 - 0 . 34  - 0 . 44 - 1 . 27  1969 - 1 . 26 - 0 . 95 - 0 . 50 - 0 . 44 - 0 . 20 0 . 89 0 . 10 - 0 . 81 - 0 . 66  1 . 12 0 . 15 1 . 38  1970 0 . 61 0 . 43 1 . 33 0 . 43 - 0 . 49 0 . 06 - 0 . 68 - 1 . 63 - 1 . 67 - 1 . 39  - 0 . 80 - 0 . 97  1971 - 1 . 90 - 1 . 74 - 1 . 68 - 1 . 59 - 1 . 55 - 1 . 55 - 2 . 20 - 0 . 15 0 . 21 - 0 . 22  - 1 . 25 - 1 . 87  1972 - 1 . 99 - 1 . 83 - 2 . 09 - 1 . 65 - 1 . 57 - 1 . 87 - 0 . 83 0 . 25 0 . 17  0 . 11 0 . 57 - 0 . 33  1973 - 0 . 46 - 0 . 61 - 0 . 50 - 0 . 69 - 0 . 76 - 0 . 97 - 0 . 57 - 1 . 14 - 0 . 51 - 0 . 87  - 1 . 81 - 0 . 76  1974 - 1 . 22 - 1 . 65 - 0 . 90 - 0 . 52 - 0 . 28 - 0 . 31 - 0 . 08 0 . 27 0 . 44  - 0 . 10 0 . 43 - 0 . 12  1975 - 0 . 84 - 0 . 71 - 0 . 51 - 1 . 30 - 1 . 02 - 1 . 16 - 0 . 40 - 1 . 07 - 1 . 23 - 1 . 29  - 2 . 08 - 1 . 61  1976 - 1 . 14 - 1 . 85 - 0 . 96 - 0 . 89 - 0 . 68 - 0 . 67 0 . 61 1 . 28 0 . 82  1 . 11 1 . 25 1 . 22  1977 1 . 65 1 . 11 0 . 72 0 . 30 0 . 31 0 . 42 0 . 19 0 . 64 - 0 . 55 - 0 . 61  - 0 . 72 - 0 . 69  1978 0 . 34 1 . 45 1 . 34 1 . 29 0 . 90 0 . 15 - 1 . 24 - 0 . 56 - 0 . 44 0 . 10  - 0 . 07 - 0 . 43  1979 - 0 . 58 - 1 . 33 0 . 30 0 . 89 1 . 09 0 . 17 0 . 84 0 . 52 1 . 00  1 . 06 0 . 48 - 0 . 42  1980 - 0 . 11 1 . 32 1 . 09 1 . 49 1 . 20 - 0 . 22 0 . 23 0 . 51 0 . 10  1 . 35 0 . 37 - 0 . 10  1981 0 . 59 1 . 46 0 . 99 1 . 45 1 . 75 1 . 69 0 . 84 0 . 18 0 . 42  0 . 18 0 . 80 0 . 67  1982 0 . 34 0 . 20 0 . 19 - 0 . 19 - 0 . 58 - 0 . 78 0 . 58 0 . 39 0 . 84 0 . 37  - 0 . 25 0 . 26  1983 0 . 56 1 . 14 2 . 11 1 . 87 1 . 80 2 . 36 3 . 51 1 . 85 0 . 91  0 . 96 1 . 02 1 . 69  1984 1 . 50 1 . 21 1 . 77 1 . 52 1 . 30 0 . 18 - 0 . 18 - 0 . 03 0 . 67  0 . 58 0 . 71 0 . 82  1985 1 . 27 0 . 94 0 . 57 0 . 19 0 . 00 0 . 18 1 . 07 0 . 81 0 . 44 0 . 29  - 0 . 75 0 . 38  1986 1 . 12 1 . 61 2 . 18 1 . 55 1 . 16 0 . 89 1 . 38 0 . 22 0 . 22  1 . 00 1 . 77 1 . 77  1987 1 . 88 1 . 75 2 . 10 2 . 16 1 . 85 0 . 73 2 . 01 2 . 83 2 . 44  1 . 36 1 . 47 1 . 27  1988 0 . 93 1 . 24 1 . 42 0 . 94 1 . 20 0 . 74 0 . 64 0 . 19 - 0 . 37 - 0 . 10  - 0 . 02 - 0 . 43  1989 - 0 . 95 - 1 . 02 - 0 . 83 - 0 . 32 0 . 47 0 . 36 0 . 83 0 . 09 0 . 05 - 0 . 12  - 0 . 50 - 0 . 21  1990 - 0 . 30 - 0 . 65 - 0 . 62 0 . 27 0 . 44 0 . 44 0 . 27 0 . 11 0 . 38 - 0 . 69  - 1 . 69 - 2 . 23  1991 - 2 . 02 - 1 . 19 - 0 . 74 - 1 . 01 - 0 . 51 - 1 . 47 - 0 . 10 0 . 36 0 . 65  0 . 49 0 . 42 0 . 09  1992 0 . 05 0 . 31 0 . 67 0 . 75 1 . 54 1 . 26 1 . 90 1 . 44 0 . 83  0 . 93 0 . 93 0 . 53  1993 0 . 05 0 . 19 0 . 76 1 . 21 2 . 13 2 . 34 2 . 35 2 . 69 1 . 56  1 . 41 1 . 24 1 . 07  1994 1 . 21 0 . 59 0 . 80 1 . 05 1 . 23 0 . 46 0 . 06 - 0 . 79 - 1 . 36 - 1 . 32  - 1 . 96 - 1 . 79  1995 - 0 . 49 0 . 46 0 . 75 0 . 83 1 . 46 1 . 27 1 . 71 0 . 21 1 . 16 0 . 47  - 0 . 28 0 . 16  1996 0 . 59 0 . 75 1 . 01 1 . 46 2 . 18 1 . 10 0 . 77 - 0 . 14 0 . 24  - 0 . 33 0 . 09 - 0 . 03  1997 0 . 23 0 . 28 0 . 65 1 . 05 1 . 83 2 . 76 2 . 35 2 . 79 2 . 19  1 . 61 1 . 12 0 . 67  1998 0 . 83 1 . 56 2 . 01 1 . 27 0 . 70 0 . 40 - 0 . 04 - 0 . 22 - 1 . 21 - 1 . 39  - 0 . 52 - 0 . 44  1999 - 0 . 32 - 0 . 66 - 0 . 33 - 0 . 41 - 0 . 68 - 1 . 30 - 0 . 66 - 0 . 96 - 1 . 53 - 2 . 23  - 2 . 05 - 1 . 63  2000 * - 1 . 99 - 0 . 82 0 . 29 0 . 35 - 0 . 05 - 0 . 43 - 0 . 66 - 999 - 999  - 999 - 999 - 999  * note that monthly values in the last year of the data  set are subject to minor changes due to updated values  in the reynold ' s optimally interpolated sst data used  in creating this index .  url : ftp : / / ftp . atmos . washington . edu / mantua / pnw _ impacts / indices / pdo . latest  if you have any questions about this time series , contact  nathan mantua at : mantua @ atmos . washington . edu  - pdo _ latest . gif\",0\n\"Subject: re : enron exotica options library  patrick ,  please , contact zimin lu , 713 853 6388 .  vince  patrick markey  11 / 21 / 2000 05 : 15 am  to : vince j kaminski / hou / ect @ ect  cc : patrick markey / hou / ect @ ect  subject : enron exotica options library  vince ,  i am trying to price a crack spread option utilizing either of the following  models in the exotica library :  1 . spread options by 1 - d integration - sprdopt  2 . spread options on asian spreads - asnsprd  how do i get access to these options models ? who can i visit with in the  houston group if i have any questions regarding the models . your help would  be greatly appreciated . i am located in singapore , so i would probably be  visiting with the houston personnel via e - mail .  thanks ,  pat markey  p . s . - i have access to the o : \\ research \\ exotica \\ xll \\ xll _ templates \\ directory ;  however , there are no macros associated with the programs that i can find .  also , i don ' t have access to the m : drive . please let me know where to find  these options models .\",0\n\"Subject: sr . director position  vince : as you requested , i have obtained some information from norma  relating to the salary parameters of the sr . director position . the minimum  salary is $ 83 , 800 , and the maximum is $ 168 , 000 ( huge range , isn ' t it ? ) .  however , norma did ask me to bring a couple of things to your attention : the  lowest salary of a vp in your group is currently $ 140 , 000 , and the average  director ' s salary in your group is $ 120 , 000 . those numbers narrow the  range considerably . of course , there is no equity issue since there is no  other senior director in your group .  hope this information helps ,  molly\",0\n\"Subject: re : power question  steve ,  elena chilkina can give you historical data .  historical fwd curves can be obtained from paulo  or alex , among others . of course , our internal forward curves  represent a very sensitive information .  vince  steven leppard  10 / 13 / 2000 10 : 34 am  to : vince j kaminski / hou / ect @ ect  cc : didier magne / lon / ect @ ect  subject : power question  hi vince  who should i contact for power queries now grant has gone ? a colleague here  in london ( didier magne ) is giving a talk on power / gas arbitrage , and the  consequent convergence of these markets .  do you have any presentations on this area , or illustrative figures on the  increase in power / gas correlation ?  many thanks ,  steve\",0\n\"Subject: presentation  george ,  this is the presentation i promised .  vince\",0\n\"Subject: re : numbers for sharad agnihotri  dale ,  to follow up on my earlier message . anjam expressed his concern  that sharad is holding off on our offer . i would consider bumping it up to  55 , 000  with a sign - on bonus . we badly need fresh talent .  i shall be in australia next week . if you need  any additional intervention from us , please , call stinson .  vince  vince j kaminski  07 / 06 / 2000 08 : 56 am  to : dale surbey / lon / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : numbers for sharad agnihotri  dale ,  i was very impressed with sharad and i think that we should consider paying  offering him  o 50 , 000 . i am not sure about guaranteed bonus . what do you think ?  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 07 / 06 / 2000  08 : 59 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron capital & trade resources corp . - europe  from : anjam ahmad 07 / 05 / 2000 10 : 56 am  to : dale surbey / lon / ect @ ect , vince j kaminski / hou / ect @ ect  cc : kate bruges / lon / ect @ ect  subject : numbers for sharad agnihotri  hi dale ( i would also like to arrange for a direct reporting line to  me for sharad .  regards ,  anjam  x 35383  p . s . kate : i have attached the agencies terms and conditions below :  - - - - - - - - - - - - - - - - - - - - - - forwarded by anjam ahmad / lon / ect on 05 / 07 / 2000 16 : 21  - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron capital & trade resources corp .  from : alex blair  05 / 07 / 2000 15 : 29  to : \"\" ' anjam ahmad ' \"\"  cc :  subject : numbers  anjam ,  ? ? ? ? ? ? ? as requested please find enclosed details on sharad ' s numbers :  ? ? ? ? ? ? ? basic salary : o 40 , 000  ? ? ? ? ? ? ? car allowance : o 3 , 500  ? ? ? ? ? ? ? ( paid in cash )  ? ? ? ? ? ? ? annual bonus : ol 3 , 000 ( this bonus was paid for ? ? ? ? ? ? ?  99 - 00 ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 8 mths work april - dec )  total o 56 , 500  sharad has been informed that his bonus payments for year 00 - 01 will be  floored at o 25 , 000 . ? sharad ' s expectations therefore are to receive a base  salary of between o 57 . 5 - o 60 k plus bonus .  i hope this is of use and ask that if you have any questions that you do not  hesitate to call .  alex blair  senior consultant  alex . blair @ alexmann . com  tel : 0207 891 6671  fax : 0207 905 1313  web :  \"\" the alexander mann group has a stated policy for the use of electronic  mail which is rigorously enforced throughout the group . the contents of  this e mail should meet the requirements of the policy - if you would  like further details please forward this message to info @ alexmann . com  or call 0207 242 9000 .  the information contained in this electronic mail message is  confidential . it is intended solely for the use of the individual or  entity to whom it is addressed and others authorised to receive it . if  the reader of this message is not the intended recipient , you are hereby  notified that any use , copying , dissemination or disclosure of this  information is strictly prohibited . \"\"\",0\n\"Subject: re : replacement of stolen chairs  fyi  - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 04 / 18 / 2000 01 : 22  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  reggie wilson  04 / 18 / 2000 12 : 57 pm  to : kevin g moore / hou / ect @ ect  cc : william smith / corp / enron @ enron , shirley crenshaw / hou / ect @ ect , mike a  roberts / hou / ect @ ect  subject : re : replacement of stolen chairs  kevin ,  if you guys had aerons ( mesh ) and / or vecta ( leather ) chairs , my group  typically will not be responsible for the replacement of those chairs as i ' m  not aware of who has taken the chairs or where they may have gone . my group  does not stock these chairs , therefore we order as requested by business  units and charge your co / rc . there will be two chairs delivered to the  locations mentioned below , however , they will not be the vecta or aeron  chairs .  you may want to contact enron security and maybe they can investigate further .  thanks ,  reggie  kevin g moore  04 / 18 / 2000 10 : 54 am  to : reggie wilson / epsc / hou / ect @ ect , william smith / corp / enron @ enron , shirley  crenshaw / hou / ect @ ect , mike a roberts / hou / ect @ ect  cc :  subject : replacement of stolen chairs  hi reggie ,  we spoke regarding the chairs on monday .  please , we need these chairs as soon as possible , without being charged .  we paid for all new chairs each time we moved and it ' s not fair we pay again .  thanks  kevin moore  p . s . these chairs were taken . . . . . . . . .  - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 04 / 18 / 2000 10 : 46  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron north america corp .  from : william smith @ enron 04 / 18 / 2000 10 : 00 am  to : reggie wilson / epsc / hou / ect @ ect  cc : shirley crenshaw / hou / ect @ ect , kevin g moore / hou / ect @ ect  subject : replacement of stolen chairs  reggie ,  there may already be a request floating around for a standard black office  chair for ebl 972 d . it was stolen over a weekend several weeks ago . in  addition to that one , my own chair at eb 3132 a was stolen this past weekend .  could you come up with a couple of decent ones for us ?  if you need to charge them to us , our numbers are 0011 and 100038 . as  always , call me if you need to at x 58322 .  thanks !  sam smith\",0\n\"Subject: the rising crisis in brazil ' s power sector - a cera conference ca  ll  cambridge energy research associates ( cera ) invites you to participate in a  special conference call and web presentation to discuss \"\" the rising crisis in  brazil ' s power sector \"\" on may 3 , 2001 at 9 : 30 am eastern time .  this call will feature jed bailey , an associate director and specialist on  latin america power issues and barbara l . mattos , cera associate director  specializing in the industrial and energy markets of brazil .  topics for this conference call and web presentation include :  * could the short rain season result in shortage and rationing ?  * what is the potential impact on the energy reform process ?  * what is the potential impact on the economy ?  format  our speakers will address this topic for approximately 30 minutes , with  accompanying graphics presented on the internet , followed by an open question  and answer period .  to enroll  to enroll , please contact ms . donna masulla via e - mail at dmasulla @ cera . com  before 4 : 00 p . m . , wednesday , may 2 , 2001 . please include your name , company ,  and telephone number with your correspondence .  how to participate via audio  netscape navigator 3 . 02 or higher ; or sun hot java ( tm )  * close all desktop applications and disable your screen saver  to ensure computer compatibility , complete the internet instructions before  the  day of the call . a message will appear telling you that your meeting is not  ready to start . however , it also informs you about any action that you may  need  to take to prepare your computer to participate .  technical assistance  u . s . callers : ? if you are experiencing difficulties during the call , you may  signal for technical assistance by pressing * 0 ( star , zero ) on your telephone  keypad after you have connected to the audio portion of the conference .  international callers : ? please re - dial and ask the operator for assistance  before giving the confirmation code .  cera ' s spring 2001 roundtable event dates and agendas are now available  at http : / / www 20 . cera . com / event  our relationship with you is very important to us . ? if you wish not to  receive e - mail notifications from cera , please send a reply to this message  with \"\" donotemail \"\" as the subject of your message .  ( mailto : info @ cera . com ? subject = donotemail ) \",0\n\"Subject: term paper  vince ,  ?  attached is our team ' s term paper in pdf format . ? please let us know if you  still problem opening the file .  thank you very much .  ?  best regards ,  winny so  ?  rice university  jesse h . jones graduate school of management  mba candidate , class of 2001  ?  2018 richland court  sugar land , tx 77478  home : ? ? ( 281 ) 265 - 3522  mobile : ? ( 281 ) 989 - 8417  e - mail : ? so @ rice . edu >  http : / / www . ruf . rice . edu / ~ so /  ?  - modeling project . pdf\",0\n\"Subject: candidate : howard information  vince - i spoke with london just now .  here is what i gather vuthy said about howard haughton .  1 . he wants a second - round ( another interview with enron ) - but , with high  officials ( senior management , this time ) .  2 . he didn ' t think the interviewers were understanding his technical  abilities and language .  good news : he ( howard ) wants to come back for another interview . i was lead  to believe it went well although , howard believes in protocol .  bad news : howard in on vacation now for 10 days .  sounds fairly good on the candidate debrief .  thanks , vince .  jeff  949 813 2241  * get free , secure online email at http : / / www . ziplip . com / *\",0\n\"Subject: re : mission impossible - hr associate groups recommendation and  next steps  kay - friday is ok up to 4 : 00 pm for me . ted  from : kay chapman 10 / 13 / 2000 12 : 52 pm  to : tana cashion / na / enron @ enron  cc : daniel brown / na / enron @ enron , gerry gibson / corp / enron @ enron , andrea  yowman / corp / enron @ enron , bob sparger / corp / enron @ enron , tim  o ' rourke / corp / enron @ enron , ted c bland / hou / ect @ ect , tana  cashion / na / enron @ enron , cindy olson / corp / enron @ enron , vince j  kaminski / hou / ect @ ect , kay chapman / hou / ect @ ect , sarah a davis / hou / ect @ ect ,  marla barnard / enron communications @ enron communications , pam  butler / hr / corp / enron @ enron , michelle cash / hou / ect @ ect , brian  schaffer / corp / enron @ enron , suzanne brown / hou / ect @ ect , robert  jones / corp / enron @ enron , neil davies / corp / enron @ enron  subject : re : mission impossible - hr associate groups recommendation and next  steps  how does next friday october 20 , 2000 , look for everyone ? ? ? i have morning  and afternoon available . i even have a 10 : 00 am if you just want to move the  date and not the time .  kay  tana cashion @ enron 10 / 12 / 2000 02 : 28 pm  to : kay chapman / hou / ect @ ect  cc : daniel brown / na / enron @ enron , gerry gibson / corp / enron @ enron  subject : re : mission impossible - hr associate groups recommendation and next  steps  what is the first availbale day that david can be at the meeting ? let ' s try  to schedule a time that day . thanks - tana  enron north america corp .  from : kay chapman @ ect 10 / 12 / 2000 02 : 24 pm  to : andrea yowman / corp / enron @ enron , bob sparger / corp / enron @ enron , tim  o ' rourke / corp / enron @ enron , ted c bland / hou / ect @ ect , daniel  brown / na / enron @ enron , tana cashion / na / enron @ enron , rhonna palmer / hou / ect @ ect ,  cindy olson / corp / enron @ enron , vince j kaminski / hou / ect @ ect , kay  chapman / hou / ect @ ect , sarah a davis / hou / ect @ ect , marla barnard / enron  communications @ enron communications , pam butler / hr / corp / enron @ enron , michelle  cash / hou / ect @ ect , brian schaffer / corp / enron @ enron , suzanne brown / hou / ect @ ect ,  robert jones / corp / enron @ enron , neil davies / corp / enron @ enron , gerry  gibson / corp / enron @ enron  cc :  subject : mission impossible - hr associate groups recommendation and next  steps  the monday october 16 , 2000 meeting at 10 : 00 am needs to be moved again .  sorry for the inconvenience , but david oxley is going to be traveling . .  thanks ,  kay\",0\n\"Subject: fund raising for mit sloan school  dear vince ,  please find the following description of the program that i would like to  raise additional funding for . i will follow up today with a phone call to  answer any questions you may have .  as always we appreciate your time and support .  thanks ,  jozef  the eastern european students at mit sloan school of management are  preparing an eastern european week to be held in march 2001 . the one - week  long program will familiarize our classmates with many of the countries  that are going through the post communist transformation . as you well know ,  eastern europe has a great deal of opportunities for many companies .  unfortunately , it also presents many obstacles that make most of the  opportunities difficult to capture .  because we believe that we can help to eliminate some of these obstacles ,  we want to bring the eastern european experience to mit sloan school of  management . familiarizing the future business leaders with the countries  is only one step toward reforming eastern europe , but we believe it is  worth our time and effort .  during the week , we plan to bring series of lectures addressing the  business environment in eastern europe . we want to emphasize especially  the success stories from eastern europe . such companies as enron ,  volkswagen , exxonmobil , gm , and ge have entered the eastern european market  and show commitment to stay in it . in at least one panel discussion with  academic experts and industry participants we hope to let everyone know  that eastern europe is a real place for business .  in addition to the educational activities , we are preparing number of  cultural events that will introduce the culture of this area .  the scope of our program depends greatly on the funds we will be able to  raise from our sponsors . in return , we plan to advertise our sponsors in  every activity we will do . we will make banners and any other appropriate  advertising as desired by the sponsor . should a sponsor be willing to send  a speaker for the panel discussion or to give a speech / lecture we would  appreciate the enrichment to our program .  the advertising will reach nearly 700 sloan students and faculty . in  addition , the advertising will reach all newly admitted students , as they  will visit our campus for the admit day ( an official program to sell our  school to the admitted students ) .\",0\n\"Subject: enron trial of energycast service  mike ,  here are the particulars of the trial run of our service , including the  times for the telephone contact from wsi . remember this will be a bilateral ,  not a conference , call .  on the esai side , while i will be out of town , peter ingraham ( 781 245 2036 )  is available to answer questions or take suggestions . we look forward to  working with you next week .  ed  - - - - - original message - - - - -  from : shorter , jeffrey [ mailto : jshorter @ wsicorp . com ]  sent : tuesday , july 25 , 2000 11 : 36 am  to : bosse , john ; ed krapels ( e - mail ) ; peter ingraham ( e - mail )  cc : weather effects  subject :  ed ,  we are set with a evaluation of the service covering the period from  monday to thursday july 31 to aug 3 . we will activate the web access on  friday afternoon and initiate calls monday morning . the call schedule is :  short range : 8 : 40 east coast time  mid range : 9 : 20 east coast time  if there is a conflict with these times , please notify me . we will need a  number to call into , typically we call directly onto the trading floor . the  username and password are the same as the initial viewing :  username : enron  password : stroso 0 ( zero zero )  it is important to make the point this is for evaluation purposes since we  are not under a contract with liability issues addressed .  i am sure enron will love it like the rest of our clients ! !  jeff  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  jeffrey a . shorter , ph . d .  vice president  wsi - weathereffects  55 walkers brook road  reading , ma 01867  jshorter @ wsicorp . com  781 - 205 - 7385 ( direct voice )  781 - 942 - 2000 ( switchboard )  781 - 942 - 2571 ( fax )  617 - 320 - 4653 ( cell )\",0\n\"Subject: re : full version  i read the chapter . generally ,  i like it , and find it non - controversial  and well written . of course , this is  a huge topic and there are things  that you haven ' t discussed .  i thought the amount of attention  paid to ols and mle estimation  was a bit overboard , given that you  didn ' t really exploit it in your  results . if you were to state  the likelihood function for  the garch model , it might justify  the amount of attention to  gave to estimation for  simple iid processes , which could then  be thought of as a simple lead - in  and intuition builder to  the more interesting models that  you do actually use .  by the way , in your discussion of  smiles , you discuss fat tails  extensively . at least for equity markets ,  while fat tails contribute , they don ' t do very  much at all compared to the effect  of risk premia , which you allude to briefly ,  using supply - demand language , at the  end of that section .  for the impact of risk premia , see  jun pan ' s paper , which is available  from her web page . but she covers  only sp 500 , ( as do most studies ) ,  and your markets are obviously much different .  the chapter will be a good service to your readers !  best , darrell  > x - lotus - fromdomain : ect  > from : \"\" vince j kaminski \"\"  > to : darrell duffie  > cc : \"\" grant masson \"\" , \"\" vince j kaminski \"\"  > date : wed , 16 aug 2000 16 : 37 : 53 - 0500  > subject : re : full version  > mime - version : 1 . 0  > content - disposition : inline  > x - uidl : 00453 eda 98 c 82 d 709 e 6123 af 537 e 4 f 63  > x - keywords :  >  >  >  > darrell ,  >  > thanks a lot . i really appreciate it . the text is below our usual  > standards but we are completely swamped with work here .  >  > vince  >  >  >  >  >  >  >  > darrell duffie on 08 / 15 / 2000 04 : 54 : 23 pm  >  > please respond to darrell duffie  >  > to : vince . j . kaminski @ enron . com  > cc :  > subject : re : full version  >  >  > i ' ll have a look !  >  > i haven ' t much time , but can certainly  > get you a quick reaction , at least !  >  > best , darrell  >  >  > > x - lotus - fromdomain : ect  > > from : \"\" vince j kaminski \"\"  > > to : duffie @ stanford . edu  > > date : thu , 10 aug 2000 14 : 04 : 47 - 0500  > > subject : full version  > > mime - version : 1 . 0  > > content - disposition : inline  > > x - uidl : 9 fef 7462 afa 5 d 4 ee 6 co 4 c 9 co 2 df 71 b 25  > > x - keywords :  > >  > >  > >  > > darrell ,  > >  > > grant just alerted me that i sent you only part of the text .  > >  > > here is the full chapter with an aged version of gran ' t part .  > > what i sent you represents an update of his contribution .  > >  > > sorry for that .  > >  > > vince  > >  > > ( see attached file : volo 720 . doc )  >  > _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  > darrell duffie  > mail gsb stanford ca 94305 - 5015 usa  > phone 650 723 1976  > fax 650 725 7979  > email duffie @ stanford . edu  > web http : / / www . stanford . edu / ~ duffie /  > _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _  >  >  >  >  >  >  >  darrell duffie  mail gsb stanford ca 94305 - 5015 usa  phone 650 723 1976  fax 650 725 7979  email duffie @ stanford . edu  web http : / / www . stanford . edu / ~ duffie / \",0\n\"Subject: option visualization  vince and stinson ,  i did some reserach on the option visualization . here is one of the findings .  check this web site , the image looks impressive : http : / / home . online . no / ~ espehaug / virtualworld / virtualoptionworld . html  this is done through a free software livegraphics 3 d and mathematica .  take a look of the demo on the web site mentioned above to see if it is good enough for our purpose .  zimin  ps :  - - - - - - - - - - - - - -  what is livegraphics 3 d ?  livegraphics 3 d is a non - commercial java 1 . 1 applet to display and  rotate three - dimensional graphics produced by mathematica in  html pages . it may be used without charge for any  non - commercial purposes . mathematica is a program for symbolic  and numeric mathematics by wolfram research , inc . . wolfram  research is also responsible for licensing livegraphics 3 d for  commercial purposes .  livegraphics 3 d enables all mathematica users to put almost any  three - dimensional graphics computed by mathematica directly onto  a html page , such that everyone with a web browser supporting  java 1 . 1 ( e . g . communicator 4 . 0 or internet explorer 4 . 0 or higher )  can view and interactively rotate the graphics without any additional  software .  additionally livegraphics 3 d is able to show animations , calculate  stereo graphics , integrate hyperlinks , and display bitmap  backgrounds . \u0005\",0\n\"Subject: important : mountain top meetings scheduled for next week  fyi .  ravi .  - - - - - forwarded by ravi thuraisingham / enron communications on 03 / 06 / 00 12 : 46  pm - - - - -  jeanette busse  03 / 01 / 00 03 : 02 pm  to : dayne relihan / enron communications @ enron communications , dorn  hetzel / enron communications @ enron communications , jeanette busse / enron  communications @ enron communications , jim irvine / enron communications @ enron  communications , john bloomer / enron communications @ enron communications , john  griebling / enron communications @ enron communications , kelly williams / enron  communications @ enron communications , kenny burroughs / enron  communications @ enron communications , kevin kohnstamm / enron  communications @ enron communications , laura beneville / enron  communications @ enron communications , phil sisneros / enron communications @ enron  communications , ravi thuraisingham / enron communications @ enron communications ,  rob kolosvary / enron communications @ enron communications , scott smith / enron  communications @ enron communications , steve elliott / enron communications @ enron  communications , steve mcnear / enron communications @ enron communications , tom  huntington / enron communications @ enron communications , rebecca lynch / enron  communications @ enron communications , david cox / enron communications @ enron  communications , kenton erwin / enron communications @ enron communications  cc : john griebling / enron communications @ enron communications , sheryl  lara / enron communications @ enron communications , nicole gilson / enron  communications @ enron communications , jennifer adams / enron  communications @ enron communications  subject : important : mountain top meetings scheduled for next week  team ,  john griebling requests the following individuals return to the omni hotel at  interlocken in broomfield , co for mountain top meetings to begin at 12 : 00 pm  ( noon ) on march 7 th in the mountain top suite # 1139 . . please be prepared to  stay in broomfield co at the omni hotel through march 10 th , 3 : 00 pm .  the mountain top teams are assembled as follows :  required technical team attendance required contract negotiation team  laura beneville steve elliott  kenny burroughs john griebling  jim irvine tom huntington  dayne relihan kenton erwin  phil sisneros  rebecca lynch ( new team member ) contract negotiation team ( attendance  requested )  jeanette busse david cox  scott smith dorn hetzel  ravi thuraisingham  rob kolosvary  kelly williams ( approved by kenny burroughs )  please let me know if you have any questions , i can be reached on my cell  phone at 503 - 887 - 6397 .  best regards ,  jeanette  jeanette a . busse  project manager , strategic alliances  enron broadband services , inc . ( formerly enron communications )  2100 sw river parkway , suite 600  portland , or 97201  office : 503 . 886 . 0214 fax : 503 . 886 . 0434  email : jeanette _ busse @ enron . net\",0\n\"Subject: re : presentation  if you would like a hard copy of the presentation to be included in the  conference book , i ' ll need it before friday , march 24 . thank you both for  all your time  sent : thursday , march 16 , 2000 9 : 02 am  subject : re : presentation  >  > dawn ,  >  > i met david sobotka from koch this morning and we talked about  > coordinating our presentations .  > this means there will be changes intended to avoid overlaps . sorry for  > that . the portions of my presentation  > will survive ( those about valuation paradigms ) and i shall add a few more  > pages on accounting treatment of weather derivatives  > plus more specific examples . david will cover primarily market evolution +  > plus examples of some  > standard structures , and we shall both give more interesting examples of  > specific deals executed by our companies .  >  > i shall send you an updated version of my part next week . let me know what  > the deadline is .  >  > vince  >  >  >  >  > \"\" dawn scovill \"\" on 03 / 14 / 2000 07 : 53 : 47 am  >  > to : \"\" vince j kaminski \"\"  > cc :  > subject : re : presentation  >  >  > thanks - - would you like me to include these in the conference book ? or do  > you anticipate changes ?  >  > dawn  > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *  > from : dawn scovill , conference coordinator  > \"\" powerful new ideas 2000 \"\"  > dawn @ perfectmeeting . com  >  >  > - - - - - original message - - - - -  > from : vince j kaminski  > to :  > cc : shirley crenshaw ; vince j kaminski  > ; vince j kaminski  > sent : monday , march 13 , 2000 1 : 56 pm  > subject : presentation  >  >  > >  > >  > > dawn ,  > >  > > i am sending you an electronic version of my presentation .  > >  > > vince kaminski  > >  > > ( see attached file : fplo 400 . ppt )  > >  >  >  >  >  >  >\",0\n\"Subject: re : weather course  joe ,  this is the most recent offer from lacima  ( weather derivatives course ) . what do you think ?  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 19 / 2001  07 : 15 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" julie \"\" on 02 / 19 / 2001 03 : 19 : 45 pm  please respond to \"\" julie \"\"  to : \"\" vincejkaminski \"\"  cc :  subject : re : weather course  vince ,  enron is fine ( although i think we have to pay for the hyatt anyway ) .  ?  good discount ( i have a feeling that my idea of a good discount and the  weather desk ' s idea is probably different ? ) : ? for the one day , $ 1100 per  person . ? if you think that there will be ? around 10 people or more , then we  can offer a day rate , regardless of the number of people . ?  ?  thanks vince  ?  julie  ?  ps - of course when i announced that we were cancelling , people started  responding that they wished to attend . ? ugh !  ?  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com  to : julie  cc : vince . j . kaminski @ enron . com  sent : friday , february 16 , 2001 4 : 05 pm  subject : re : weather course  julie ,  enron location makes more sense . no reason to pay for the hotel .  also , i think that one day makes more sense .  i contacted the weather desk about including other people at the training  course . i think that they would be interested if they got a good discount .  vince  \"\" julie \"\" on 02 / 16 / 2001 09 : 39 : 37 am  please respond to \"\" julie \"\"  to : ? ?  cc :  subject : ? re : weather course  vince ,  great . just to let you know , we decided not to wait on the indecisive  ones , and postponed the open course . it ' s yours , whatever you want : ? 1  day ( specific to what you feel will be of the most benefit ) , 2 days , hyatt  or ? enron , or not at all . i hope this doesn ' t cause problems for you .  special deal , for sure . i owe my godfather .  julie  - - - - - original message - - - - -  from : ? vince . j . kaminski @ enron . com  to : julie  cc : joseph . hrgovcic @ enron . com  sent : thursday , february 15 , 2001 3 : 16 ? pm  subject : re : weather course  julie ,  that ' s definitely an option .  we can ? provide the room . maybe we can cut with you a special deal for  enron  and ? increase the # of people attending . i am forwarding your message to  our ? weather desk .  vince  joe ,  what do you think about ? it ?  vince  \"\" julie \"\" on ? 02 / 15 / 2001 08 : 20 : 24 am  please respond to \"\" julie \"\"  to : ? \"\" vincejkaminski \"\"  cc :  subject : ? weather course  vince ,  we just wanted to let you know ? that we only have 3 people signed up for  the  weather derivatives course ? ( all from enron ) so far . we have a couple more  that have expressed strong ? interest , but we are awaiting their final  decision . if no one else signs ? up , chris and les thought that you guys  could probably get through the ? first day pretty easily , and thus thought  it  may be an option to teach just ? the 2 nd day material ( pricing ) only at  enron  ( doing it at the hyatt is an ? option as well but the room might be on the  large side ) ? we would ? obviously reimburse you for the day not taught . we  can teach both days as ? well , but thought you may want to save some time .  i just wanted to give ? you some time to think about it . we will know where  we stand on final ? numbers by next ? wednesday .  julie\",0\n\"Subject: ees organizational announcement  - - - - - - - - - - - - - - - - - - - - - - forwarded by pinnamaneni krishnarao / hou / ect on  04 / 12 / 2000 12 : 01 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  osman sezgen @ ees  04 / 12 / 2000 11 : 58 am  to : pinnamaneni krishnarao / hou / ect @ ect  cc :  subject : ees organizational announcement  - - - - - - - - - - - - - - - - - - - - - - forwarded by osman sezgen / hou / ees on 04 / 12 / 2000 11 : 57  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  lou pai and tom white  04 / 12 / 2000 11 : 40 am  sent by : karen owens  to : all ees employees  cc :  subject : ees organizational announcement  at the core of ees \u0001 , s success has been our willingness to adapt to and embrace  change . tom and i are reminded of this again as we announce the departure of  john echols , whose extraordinary capabilities have been instrumental to the  successful launch of ees , and to our tremendous growth in the two - and - a - half  years since then . john is continuing his career at enron .  marty sunde , currently managing director of sales joe earle , president  and ceo of enron facility services ; kevin hughes , vice president and chief  accounting officer ; dan leff , managing director of account and delivery  management ; danny mccarty , managing director of ees - europe ; mark muller ,  managing director of corporate development ; vicki sharp , managing director  and general counsel ; and beth tilney , managing director of marketing ,  communications and human resources .  thank you for your continued commitment to ees . we \u0001 , ve just completed a great  quarter and are well positioned to meet or exceed our targets this year ! in  fact , this is the seventh consecutive quarter for record levels of new  contracting activity and we \u0001 , ve more than doubled our first quarter sales of  1999 . keep up the great work !\",0\n\"Subject: willow tree  hi vince -  this is so you can respond to my email . please let me know if you have  any further questions or comments regarding willow or if you would like  to proceed in discussing a purchase .  regards ,  michael curran  head of research  riskcare - financial technology services  piercy house  7 copthall avenue  london ec 2 r 7 nj  tel : + 44 ( 0 ) 20 7562 3419  fax : + 44 ( 0 ) 20 7562 3401  mailto : mcurran @ riskcare . com\",0\n\"Subject: wti - new eol product  ted ,  enclosed is a corrected version of the historical simulation of wti  trading . the earlier results were double counting the spread profit on  trades closed intra - day . the spread was counted on each trade rather than  per round - trip transaction , so the new results show lower profitability .  - - stinson\",0\n\"Subject: new pc  lyn :  can you tell me the status on this order ? alex is really feeling the pinch  for this  new computer .  thanks !  shirley  3 - 5290  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 01 / 12 / 2000  08 : 32 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  shirley crenshaw  01 / 07 / 2000 01 : 49 pm  to : lyn malina / hou / ect @ ect  cc : william smith / corp / enron @ enron , vince j kaminski / hou / ect @ ect , alex  huang / corp / enron @ enron  subject : new pc  hi lyn :  alex huang has requested a new pc and vince kaminski has ok ' d it . please  order the computer as listed below in alex ' s request .  thanks !  shirley  3 - 5290  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 01 / 07 / 2000  01 : 48 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  01 / 07 / 2000 12 : 12 pm  to : shirley crenshaw / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , grant masson / hou / ect @ ect , alex  huang / corp / enron @ enron  subject : new pc  shirley ,  ok .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 07 / 2000  12 : 02 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  alex huang @ enron  01 / 07 / 2000 08 : 28 am  to : shirley crenshaw / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , grant masson / hou / ect @ ect  subject : new pc  hi shirley ,  i would like to request for a new pc . my current pc is quite old with not  enough memory . twice  i ran out of memory and had to have it people coming to clean it for me .  their suggestion is  to either get a new hard drive or a new pc . given that dell has pentiumc iii  processor at 800 mhz  on market , i would like to request a pc with process at 500 mhz or higher  level .  thank you very much .  best ,  alex\",0\n\"Subject: confirmation of your order  this is an automatic confirmation of the order you have placed using it  central .  request number : ecth - 4 rstt 6  order for : vince j kaminski  1 x ( option : 128 mb upgrade for deskpro en 6600 $ 129 )  1 x ( standard desktop $ 1262 ) enron it purchasing\",0\n\"Subject: credit risk model comments - at this point .  comments from rick jones on the credit reserve model . anita dupont is setting  up a meet with rick jones to discuss these . vince & bill - if you want to  join the meeting , please let me or anita know .  regards ,  krishna .  - - - - - - - - - - - - - - - - - - - - - - forwarded by pinnamaneni krishnarao / hou / ect on  04 / 11 / 2001 09 : 04 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  richard b jones @ ees  04 / 10 / 2001 04 : 16 pm  to : pinnamaneni krishnarao / hou / ect @ ect  cc :  subject : credit risk model comments - at this point .  - - - - - - - - - - - - - - - - - - - - - - forwarded by richard b jones / hou / ees on 04 / 10 / 2001  04 : 16 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  richard b jones  03 / 23 / 2001 05 : 53 pm  to : cheryl lipshutz / hou / ees @ ees , trushar patel / corp / enron @ enron ,  michelle . wenz @ enron . com , gayle muench / enron @ enronxgate , jeremy  blachman / hou / ees @ ees  cc :  subject : credit risk model comments - at this point .  hi everyone ,  i have run the model and , along with the contract briefs i have some  questions the number of trials , numerical roundoff , and random number  generator randomness statistical properties . the first two are not a problem  in this application but the last one could be . has anyone examined the effect  of using different random number generators on enron \u0001 , s aggregate credit risk ?  7 ) there is one last point here . for most of the above points , the \"\" improved \"\"  analysis could make the credit risk be higher .  rick\",0\n\"Subject: caida ' metrics ' wg meeting , 2 mar 00  hi vince , i ( and possibly stinson as well ) will be attending this initial  meeting looks like kick - off type of meeting . i will try to attend to drill  into what they can offer and what we have committed . make sure that we get  from the arrangement n john griebling & jim irvine ' s perspective and ours .  i ' ll fire off additional information as i get them .  ravi .  - - - - - forwarded by ravi thuraisingham / enron communications on 02 / 23 / 00 10 : 51  am - - - - -  nevil @ ipn . caida . org  02 / 22 / 00 12 : 16 pm  to : members @ caida . org  cc : nevil @ caida . org , ( bcc : ravi thuraisingham / enron communications )  subject : caida ' metrics ' wg meeting , 2 mar 00  hello caida members :  update on the caida working groups . .  a . ' metrics @ caida . org ' mailing list  b . wg charters , meeting on 2 mar 00  a . ' metrics @ caida . oeg ' mailing list  i ' ve set up a single mailing list with this name , for discussions on wg  topics , passive measurements , etc . to start with it ' s a moderated list  ( i . e . you have to be a member of the list to post to it , you join by sending  email to nevil @ caida . org asking to be added to the ' metrics ' list ) , with  the following initial set of members :  sue moon ,  brett watson ,  hans - werner braun ,  matt mathis ,  ian graham ,  tony mcgregor ,  john cleary ,  joerg micheel ,  kevin thompson ,  jambi gambar ,  daniel mcrobb ,  david moore ,  sean mccreary  rene hatem ,  shankar rao ,  cindy bickerstaff ,  jeff sedayao ,  steve feldman ,  bill woodcock  two questions for caida members :  i . who else would you suggest be invited to join the list ?  ii . should the list continue to be moderated , or should it  be changed into an open list ?  b . ' working group ' developments  following the caida members ' meeting on 8 feb 00 i ' ve attempted to define  exactly what problem we could consider getting an ietf working group  started on . my summary of the existing ietf wgs with interests in metrics  is given below ( appendix b ) , but it seems unlikely that we could get a  new ietf wg started .  i believe that we should instead run a single caida working group  on ' network metrics , ' rather than the two proposed earlier . my draft  of its charter is appended below . it focuses on producing educational  material about network measurement , and on developing new metrics - these  were the two areas of greatest interest amongst the caida members .  the wg co - chairs are  sue moon ( sprintlabs ) and brett watson ( mfn / abovenet )  you are invited to attend the first wg meeting .  the agenda is as follows . .  agenda for caida wg meeting on : thursday 2 mar 00  - - - - - - - - - - - - - - - - -  10 am - 4 pm , abovenet , downtown sjc ( see below for details )  - - - - - - - - - - - - - - - - - - - - - - - -  1 . review wg charter  - is it reasonable as set out in the draft ?  - what should be removed or added ?  2 . work through revised charter in detail  - identify the work required for each part  - determine who ' s willing to work on it  - attempt to determine delivery times  3 . discussion of new metrics  - first attempt at making a list of metrics to be considered  4 . anything else ?  location : abovenet is located in the knight - ridder building ,  attached to the fairmont hotel complex . the address is  50 w . san fernando st .  san jose , ca 95113  rsvp : to help us with organising the meeting , please send email to  nevil @ caida . org telling us how many will attend from  your organisation .  cheers , nevil  nevil brownlee visiting researcher  phone : ( 619 ) 822 0893 caida , san diego  caida network metrics working group : draft charter , tue 23 feb 00  goals :  1 education  + faq on what does ' measuring the internet actually mean ? '  - why measure anyway ?  - what can be measured ? how ? where ? by whom ?  - active vs passive , end - to - end vs provider network only ,  application vs transport layer  - rating schemes : provider ' net performance ' pages , internet  ' weather map ' s , keynote , etc .  publish as caida web pages , or maybe as an info rfc  + survey paper on metrics and internet measurement  - current measurement efforts ( surveyor , ripe test traffic ,  amp , iperf , at & t , keynote , skitter , . . . )  - current tools  publish as caida web pages  2 service metrics  + define new metrics  - taxonomy of current metrics ( ippm , rtfm , itu , . . )  - summary of metrics used for current services  - gather information / ideas about new / emerging services ,  especially diffserv - based ones  - make list of new metrics , either to improve measurement of  existing services or to support new ones  [ list of ' metrics ' questions ( appendix a ) goes here ]  + organise experimental implementation / testing of tools  for new metrics  + make recommendations on implementation  - define core set of ' really useful ' metrics  - recommend that caida implement these as a  ' service measurement toolkit '  + publish new metric definitions through ippm or rtfm  + produce document \"\" measurement requirements for hardware / software  vendors . \"\" publish on caida web pages  appendix a : questions from the earlier draft caida wg charters  a . what types of network - and transport - layer metrics are being  used by isps in engineering and operating their networks ?  by customers for verifying service guarantees ?  b . what new services are being ( or are likely to be ) offered , e . g .  diffserv ? is there a need for higher - layer metrics to better  monitor and manage these services ?  c . will these new differentiated transport - and  application - layer services need new metrics ?  d . how can the service metrics be measured in a multi - isp  environment ?  e . how can customers verify these measurements ?  f . what requirements would service measurement introduce for  equipment vendors ?  g . how relevant are specific techniques ( e . g . which flow ) and  points of measurement to specific users ( isp , customer , etc . )  requirements ?  h . how do these metrics relate to network behavior as perceived  by users ? how do they correlate with performance ?  appendix b : background on the ietf working groups  * rtfm wg : realtime traffic flow measurement  rtfm is concerned with passive measurements of two - way traffic flows ,  specified in terms of their end - point attributes . its primary goal was  to produce an improved traffic flow measurement model considering at least the  following needs :  a . wider range of measurable quantities , e . g . those  relating to ipv 6 , and to class of service  b . simpler ways to specify flows of interest  c . better ways to control access to measured flow data  d . strong focus on data reduction capabilities  e . efficient hardware implementation  * ippm wg : ip performance measurement  the ippm wg charter is to develop a set of standard metrics that can  be applied to the quality , performance , and reliability of internet  data delivery services . these metrics will be designed such that they  can be performed by network operators , end users , or independent  testing groups . it is important that the metrics not represent a value  judgement ( i . e . define \"\" good \"\" and \"\" bad \"\" ) , but rather provide unbiased  quantitative measures of performance .  rfcs  framework for ip performance metrics ( rfc 2330 )  metrics :  connectivity ( rfc 2678 ) ,  one - way delay ( rfc 2679 ) , one - way packet loss ( rfc 2680 )  round - trip delay ( rfc 2681 )  i - ds  bulk transfer capacity ( 2 x )  instantaneous packet delay variation  one - way loss patterns  * other wgs  the rmonmib wg is thinking about ' application performance  measurement . ' this is clearly a hard problem ( e . g . does this just  mean response - time measurement , can it be done by passive means , how  should the measurements be presented , etc . ) .  in short  - rtfm provides a good distributed measuring system for traffic  volumes  - ippm has concentrated on transport - layer behaviour of the  current , best - effort internet .  - rmonmib is beginning to consider application - layer measurement \",0\n\"Subject: re : message from charles shen at williams  charles ,  i am coordinating an offer fro you . i shall call you with  the details later this week .  vince  charles shen on 10 / 18 / 2000 10 : 59 : 16 am  to : vkamins @ enron . com  cc : vkaminski @ aol . com  subject : message from charles shen at williams  dear vince :  how are you ?  it was very nice talking to you last friday , i was  very impressed by your group , and very interested in  this opportunity .  if you need any additional information , please feel  free to call me at 918 - 409 - 4308 , i look forward to  hearing from you very soon . thank you .  sincerely ,  charles  do you yahoo ! ?  yahoo ! messenger - talk while you surf ! it ' s free .  http : / / im . yahoo . com /\",0\n\"Subject: interviews for a new candidate  elizabeth :  we have yet another candidate allen humbolt who we want to interview . his  skills seem to match our requirements very well . we appreciate your help in  setting up interviews for him with the following people :  vince kaminski  stinson gibner  grant masson  vasant shanbhogue  ronnie chahal  osman sezgen  john henderson ( ees )  anoush farhangi  and myself .  thanks ,  krishna .\",0\n\"Subject: re :  dear mr . kaminski ,  since i am just about starting off on my research , i do not have any papers  published in this area . but i do plan to address this shortcoming pretty  soon . i have a couple of other papers against my name , but they are not  worth any serious mention .  i thank you for taking time off your busy schedule to write to me . i will  keep you posted about my progress .  thank you ,  yours sincerely ,  hari natarajan  fellowship student  indian institute of management bangalore  bannerghatta road  bangalore 560076  india  tel : 91 - 80 - 6993056  fax : 91 - 80 - 6584050  e - mail : hnatraj @ iimb . ernet . in  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com  to : hnatraj @ iimb . ernet . in  cc : shirley . crenshaw @ enron . com ; vince . j . kaminski @ enron . com  sent : 3 / 8 / 01 10 : 45 pm  subject : re :  hari ,  thanks . please , keep me posted about your progress .  any published papers ?  we shall send you the printout .  vince  hari natrajan on 03 / 06 / 2001 08 : 47 : 34 pm  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc :  subject : re :  dear mr . kaminski ,  thank you very much for your prompt response . i look forward to  receiving a  copy of your article .  i would also appreciate it if you could let me know whether enron  provides  research grants to individuals who are working in the area of energy  risk  management . towards my research , i am trying to develop a model to  estimate  electricity spot price .  in any case , i will be getting in touch with you again a year or so down  the  line when i am nearing completion of my dissertation because enron is my  dream job .  i look forward to hearing from you .  thank you ,  yours sincerely ,  hari natarajan  fellowship student  indian institute of management bangalore  bannerghatta road  bangalore 560076  india  tel : 91 - 80 - 6993056  fax : 91 - 80 - 6584050  e - mail : hnatraj @ iimb . ernet . in  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com  to : hnatraj @ iimb . ernet . in  cc : shirley . crenshaw @ enron . com ; vince . j . kaminski @ enron . com  sent : 3 / 6 / 01 8 : 34 pm  subject : re :  hari ,  i shall send you a reprint of the article . i had to  cancel my presentation at san antonio .  vince  shirley ,  please , send a copy of the article to hari .  hari natrajan on 02 / 28 / 2001 06 : 45 : 29 am  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc :  subject :  dear mr . kaminski ,  i am a doctoral student at the indian institute of management bangalore ,  india . my area of interest is the energy sector , especially electricity  derivatives . i am interested in obtaining a copy of the following items :  1 ) your presentation \"\" current challenges in modeling power price  volatility \"\"  at the session on price volatility & probabilistic methods in the energy  markets . ( http : / / www . informs . org / conf / sanantonio 2000 / / talks / md 29 . html )  2 ) your chapter \"\" the challenge of pricing and risk managing electricity  derivatives \"\" in the book ' the us power market ' , risk publications .  i would appreciate it if you could send me a soft / hard copy of the same .  thank you ,  yours sincerely ,  hari natarajan  fellowship student  indian institute of management bangalore  bannerghatta road  bangalore 560076  india  tel : 91 - 80 - 6993056  fax : 91 - 80 - 6584050  e - mail : hnatraj @ iimb . ernet . in\",0\n\"Subject: retail markets conference  i would like to invite you to participate in a conference on \"\" retail  participation in competitive power markets \"\" to be held at stanford  university on june 21 - 22 , 2001 . although california and other regional  markets will likely be introducing some demand - response programs by june ,  there is a clear need for continual evaluation of these nascent efforts to  transform the market . the conference provides an opportunity to learn from  different experiences .  this policy research meeting will focus on establishing a foundation for  understanding the key concepts and methods for demand response programs and  to provide an opportunity for participants to raise questions and recommend  directions for additional research and analysis . participants will come  from companies , government , and universities . you can obtain more  information about the conference by checking under \"\" meetings \"\" on our emf  website listed below .  please let me know if you plan on attending . also , if you would like to  make a brief 15 - minute presentation , please let me know your topic and  describe it in a few sentences . i will try to choose speakers that will  cover the full range of interests represented by this group . researchers  should focus on the implications of their analysis for designing demand  response programs rather than on the technical details of their  methodology . i would also encourage practitioners to discuss their  experience in implementing demand response programs or in raising selected  issues .  thank you ,  hill huntington  hillard g . huntington  emf - an international forum on  energy and environmental markets voice : ( 650 ) 723 - 1050  408 terman center fax : ( 650 ) 725 - 5362  stanford university email : hillh @ stanford . edu  stanford , ca 94305 - 4026  emf website : http : / / www . stanford . edu / group / emf /\",0\n\"Subject: re : friday morning meeting ?  vince :  7 am at hyatt regency downtown would be perfect . i will see you in the lobby  at 7 am .  best regards , dale  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : wednesday , july 05 , 2000 3 : 23 pm  to : dale . nesbitt @ marketpointinc . com  cc : vince . j . kaminski @ enron . com ; shirley . crenshaw @ enron . com  subject : re : friday morning meeting ?  dale ,  friday is a bad day ( performance review committee all day ) .  what about 7 : 00 at the office or breakfast meeting at 7 : 00 ? we can meet  at hyatt regency downtown ( smith street ) .  vince  \"\" dale nesbitt \"\" on 07 / 05 / 2000 12 : 13 : 59 am  to : \"\" vince . j . kaminski \"\"  cc :  subject : friday morning meeting ?  vince :  can we get together friday morning july 7 at 800 am at your office ? that  would be particularly convenient for me . i will have to leave downtown at  about 945 to catch a plane . that will ensure that i wont take up too much  of your time ! ! thanks for your efforts here , and thanks for being patient  with me .  dale nesbitt\",0\n\"Subject: membership mixer tomorrow - paesanos lounge !  nesa / hea members ~  don ' t forget to join us tomorrow ( thursday , january 18 th ) for our first  membership mixer of 2001 at paesanos lounge located at 213 milam between  franklin and congress streets in the downtown market district . sponsored by  national energy & trade , llc , the fun begins at 5 : 00 p . m . and your first  drink is free when you mention you ' re with nesa / hea at the door . there will  be a buffet available for our group as well as valet parking .  remember that paesanos also offers a great selection of fine cigars for your  enjoyment while you network with other industry colleagues , and special  guest artist , yvonne washington , performs at 8 : 00 p . m . we ' re expecting a  great turnout , so don ' t be left out !  as part of our membership drive , bring a new member with you and become  eligible for a great door prize , graciously donated by kay atchison  ( nesa / hea co - chair ) from duke energy . it ' s a great opportunity to renew  your dues as well . again , if you didn ' t receive your renewal in the mail ,  i ' m attaching a pdf file that can be opened in adobe acrobat . if you don ' t  have that application , download it free from our website at www . nesanet . org .  hope to see you there ! you can ' t afford to miss this event !  >  - nesaneamembership . pdf\",0\n\"Subject: re : your comments on metals var model  dear andreas ,  thanks for the very useful response and information on positions . i have  handed over primary responsibility for metals var to kirstee hewitt ( at least  as far as london is concerned ) and she will follow up on the points you  kindly reported , although i am of course available to assist where  necessary . tanya will remain the point of contact for var modelling in  houston , and of course kirstee and tanya will work together on this to  resolve these and further issues . i would be happy to help set up meetings  for you in the london office when you visit next week , with kirstee , myself  and anyone else that you would like to meet with and we very much look  forward to your visit - please let me know if you need any help with the  arrangements .  regards ,  anjam  0207 783 5383  - - - - - - - - - - - - - - - - - - - - - - forwarded by anjam ahmad / lon / ect on 27 / 07 / 2000 08 : 40  - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron capital & trade resources corp .  from : andreas . barschkis @ mgusa . com 27 / 07 / 2000 00 : 36  to : anjam . ahmad @ enron . com , kirstee . hewitt @ enron . com  cc : bjorn _ hagelmann @ mgusa . com  subject : re : varmodel _ live . xls  anjam ,  thanks for your var model .  i would like to point out the following :  1 ) position data : i noted that the outright ( longs + shorts ) for copper  include positions which we should not use , i . e . r . wolff quantities . this  positions are imputed into the system at their integrity ( some legs / hedges  are missing )  this affects copper and lead position for now . the issues should be have  been sorted out by the end of this month , ie next week . so in copper you  have 25 , 487 mt to much and with lead you have 13 , 579 mt to much . ( as of june  19 )  2 ) looking at copper position you calculate a var of - 3 , 100 , 568 with a  total outright of 63 . 765 mt .  this seams too low . if i calculate 63765 x 1807 x 3 . 99 % = 4 . 218 mil . us $ . var  ( outright qty x price levelx risk factor , riskfactr as per mercur ) .  in my view we have been understating var in mercur because we do not  consider the spread position correctly ( i . e . in detail ) . on a position like  that i would expect a figure of around 6 mil us $ .  i guess the issue is in the volatility and in the holding period .  3 ) your correlation matrix for the commodities is not final i assume as  many fields are blank .  lets talk tomorrow on the phone .  attached please find the position summary for the last week # 30 ( since june  19 ) as requested by kirstee .  ( see attached file : mgposw 30 . xls )  andreas barschkis  mg metal & commodity corp .  520 madison avenue , 28 th floor  new york , ny 10022  tel : + 1 . 212 . 715 . 5628  cel : + 1 . 917 . 679 . 8287  fax : + 1 . 212 . 715 . 5608  e - mail : andreas . barschkis @ mgusa . com  anjam . ahmad @ e  nron . com to : andreas . barschkis @ mgusa . com  cc : kirstee . hewitt @ enron . com  07 / 26 / 2000 subject : zipped varmodel _ live . xls  11 : 37 am  hi andreas ,  this is the semi - final spreadsheet - have only to include price curves for  gold and cocoa . kirstee and i would welcome your comments .  regards ,  anjam  - mgposw 30 . xls\",0\n\"Subject: term project :  this is the list of projects for the members of the \"\" quant \"\" team .  if you are working on different project , please , ignore this message .  please , develop in a spreadsheet solutions / examples for the following :  1 . black - scholes formula  2 . black ' s formula  3 . develop a spreadsheet to simulate price trajectory using :  a . gbm  b . gbm + jump ( formula 2 . 16 in the book , figure 2 . 7 )  c . mean reversion + jump ( formula 2 . 17 , figure 2 . 8 )  4 . schwartz single factor model ( formula 6 . 12 )  5 . develop models corresponding to the figures 7 . 1 , 7 . 3 , 7 . 5 , 7 . 6 , 7 . 8  vince\",0\n\"Subject: organizational changes  enron is forming a new organization - - the enron xcelerator - - to drive the  formation and development of new businesses at enron . enron ' s unique ability  to start and develop new businesses has driven most of our growth over the  years . lou l . pai , currently chairman and ceo of enron energy services , will  lead the xcelerator . over his years at enron , lou has been key to the  creation and rapid growth of our wholesale gas , wholesale power and energy  service businesses . the existing business units will continue their  development of core businesses , while the xcelerator will be responsible for  developing new business opportunities that are natural extensions of enron ' s  business model and core skills , but not currently under development elsewhere  in enron .  dave delainey , currently president and ceo of enron americas , will become  chairman and ceo of enron energy services . dave brings a wealth of  experience and accomplishment from enron wholesale services ' businesses where  he led the growth of our canadian business and our north american origination  activity and , most recently , had a great year in enron americas .  dave is forming an office of the chairman in ees . joining dave in the office  of the chairman are dan leff , president of ees , global energy services , and  marty sunde , president of ees , global marketing and services . dan and marty  have been instrumental in the development and execution of the successful ees  business model . also joining the office of the chairman of ees is janet  dietrich as chief operating officer . janet , currently is managing director  in enron americas , where she has been successful in many of enron wholesale ' s  core businesses , including gas trading , risk management and structural  origination . tom white will continue as vice chairman of ees and will focus  on the development and expansion of ees ' customer relationships . lou , tom ,  dan , marty and the entire ees organization have developed a great business  model with great growth prospects . ees has become an essential part of  enron ' s market valuation and growth story . this new leadership structure  will enable ees to continue on its path of sustained growth and increasing  profitability .  john lavorato will succeed dave as president and ceo of enron americas . john  has been an essential part of enron ' s energy trading success over the years  and is a key part of enron wholesale services ' continuing success story .  joining john is louise kitchen , currently president and ceo of enron  networks . louise , who accelerated enron ' s outstanding growth with the  deployment of enrononline , will take over as chief operating officer of enron  americas .  philippe bibi , currently chief operating officer of enron networks will take  over as president and ceo of enron networks . under philippe ' s leadership ,  enron has become a technology leader and the leading e - commerce company .  joining philippe as chief operating officer is greg piper , currently managing  director of enron networks . greg currently leads enron network ' s origination  activity and was responsible for the creation and deployment of clickpaper ,  enron ' s successful online pulp and paper marketplace .  please join us in congratulating all of these individuals on their  achievements and their new responsibilities .\",0\n\"Subject: summer part time employee  add her to the distribution list for associate social functions .  - - - - - - - - - - - - - - - - - - - - - - forwarded by celeste roberts / hou / ect on 06 / 23 / 2000  05 : 06 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  06 / 23 / 2000 09 : 56 am  to : celeste roberts / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , elena chilkina / corp / enron @ enron , mike a  roberts / hou / ect @ ect  subject : summer part time employee  celeste ,  i have talked to you last evening about elena chilkina ,  an mba rice student who works for us part - time during the academic year ,  and full time this summer .  she asked if she could participate in the program for summer associates .  ( presentations , social meetings ) ,  i would appreciate if you could help her .  vince\",0\n\"Subject: re : electricity summit at u . c . berkeley  sevil ,  yes , please , go ahead . we shall pay for the trip .  vince  sevil yaman @ enron  10 / 24 / 2000 02 : 24 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : electricity summit at u . c . berkeley  vince ,  i just received this message . what do you think ? should i register to attend  it ?  sevil ,  - - - - - - - - - - - - - - - - - - - - - - forwarded by sevil yaman / corp / enron on 10 / 24 / 2000  02 : 20 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  pwpens on 10 / 24 / 2000 12 : 16 : 14 pm  to : ( recipient list suppressed )  cc :  subject : electricity summit at u . c . berkeley  register now to attend the  electricity summit at u . c . berkeley , november 13 , 2000  u . c . berkeley ' s goldman school of public policy , with additional support  from the u . c . berkeley ' s competition policy center and the u . c . energy  institute , will host a meeting of industry representatives , policy makers ,  consumers representatives , legislators and researchers to discuss the  electricity restructuring experience and potential solutions to the  difficulties that california and other governments have encountered . the  summit will run from 12 : 30 - 6 pm with two roundtable discussions that will  include a wide variety of viewpoints .  for registration information and further details , go to \",0\n\"Subject: fortune most admired ranking  congratulations ! for an unprecedented five years in a row , enron has been  ranked the \"\" most innovative company in america \"\" by fortune magazine . in  addition , for the first time , enron has also been ranked # 1 in \"\" quality of  management , \"\" topping general electric and omnicom group , and our \"\" employee  talent \"\" has been ranked # 2 , behind goldman sachs and ahead of cisco  systems . america ' s most admired management team is paired with the best and  brightest employee talent . that winning combination has led to enron ' s  five - year \"\" most innovative \"\" sweep . the \"\" most admired \"\" list will appear in  fortune ' s feb . 21 issue , available on newsstands feb . 8 .  you are the reason we have achieved such consistent recognition . you bring  the innovative ideas to enron and create new business opportunities . you  contribute to our quality management team . and you are the outstanding  employee talent that makes enron such an exciting and successful company .  keep up your outstanding work , and we look forward to even greater  achievements in 2000 !\",0\n\"Subject: wayne tow ' s resume  kathy / greg / john - do we need the skills described in the attached resume on  the project team or in the permanent support group or in the esupply group ?  there are no personal recommendations associated this resume .  vince - thanks for keeping us in mind !  - - - - - - - - - - - - - - - - - - - - - - forwarded by melissa becker / corp / enron on 02 / 01 / 2000  01 : 58 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski @ ect  01 / 31 / 2000 09 : 04 am  to : melissa becker / corp / enron @ enron  cc :  subject : wayne tow ' s resume  melissa ,  please , take a look at this resume . any interest ?  i got it from a headhunter ( i don ' t know her ,  it was a cold call on her part and she did not make a good impression ) .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 31 / 2000  09 : 01 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  leewells @ swbell . net on 01 / 25 / 2000 05 : 34 : 57 pm  please respond to leewells @ swbell . net  to : vince j kaminski / hou / ect @ ect  cc :  subject : wayne tow ' s resume  hi there mr . kaminski ! it was a pleasure to speak with you today . i look  forward to lunch one day soon at brennans .  wayne tow is a brilliant man , he worked for many years for a man i know  well . this man says , wayne is as good as it get , and he could do  anything that is assigned to him , and do it at a level in which he was  always amazed .  he loves the e - commerce area , and this is what he wants to do  thank you , vince .  lee wells  - wayne 2 . doc\",0\n\"Subject: interview - numerical methods & finance  ? ? ? ? ? ? dear tanya :  ?  ? ? ?  ? ? ? ? ? ? it was a great pleasure to have met you . i very much enjoyed the  interview and your insightfull questions .  ?  ? ? ? ? ? ? i am keenly aware that many of the methods that i discussed with you  yesterday are unique , new ? and not reported elsewhere . this is true both  about the work i did in whole yield curve interest rate pricing ? as well as  garch . the innovations stem from the extensive numerical analysis experience  that i have both in turbulence physics as well as finance . they entailed  considering the problem from its raw formulation , mathematical analysis ,  physical interpretation , taylored numerical method development , software  writting and develoment and data management .  ?  ? ? ? ? ? ? as to why i have not yet published anything the answer is that the  driver in my work has been adding value to the business not publishing .  publishing is however an option that has always been open with my former  supervisor who is aware of the work that i did .  ?  ? ? ? ? ? ? i not however that these results were possible only by exploring to  the utmost extent the mathematics , finance , software design and data  managemnet aspects of the problem . absence of any of these aspects is likely  to cripple performance and execution .  ?  ? ? ? ? ? ? please recall that as good as they were the performance measures  that i mentioned to you were for a single processor machine . vastly better  can be achieved with both soft parallelism ( multithreading ) as well as hard  parallelism ( heterogenous network ) . this fo course allows us to step up the  reach of the models used .  ?  ? ? ? ? ? ? in fact i know for a fact that better can be done than what i  mentioned in the interview . from work that i have been doing on the  integration of the swaption volatility surface on the whole yield curve  interest rate model itm and otm instruments can be included in both the  callibration , pricing and hedging .  ?  ? ? ? ? ? ? i look forward hearing back from you soon and particularly to the  opportunity of us cooperating .  ?  ? ? ? ? ? ? best regards  ?  ? ? ? ? ? ? joao\",0\n\"Subject: re : storm  dale ,  omer muften ( with the structuring group ) asked us to help in evaluating the  different options embedded in the storm contract . however , he promised to  provide us with the forward curves regarding the dark fiber ( in europe ) . we  are still waiting to receive those . in addition , it seems that the deal  structure has \"\" just \"\" changed . i will give you a call to discuss .  - samer  stinson gibner @ ect  06 / 01 / 00 04 : 33 pm  to : samer takriti / enron communications @ enron communications  cc : cantekin dincerler / hou / ect @ ect , dale surbey / lon / ect @ ect , vince j  kaminski / hou / ect @ ect  subject : storm  samer :  can you please contact dale surbey in london and let him know what you and  cantekin doing for the storm transaction .  he can be reached by london tie line by dialing 830 3 6726 .  thanks ,  stinson  dale :  i will be on travel for the next 2 weeks . samer should be able to help  you . his extension is 34791 .\",0\n\"Subject: re : 7 / 14 - - crude oil and nat gas  fyi  1 . george hopefully will get us some peaking data soon  2 . george likes tricia ' s new format ( based on meeting with arnold yesterday  afternoon which went well )  - - - - - - - - - - - - - - - - - - - - - - forwarded by mike a roberts / hou / ect on 07 / 14 / 2000  07 : 03 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  george hopley  07 / 13 / 2000 09 : 07 pm  to : mike a roberts / hou / ect @ ect  cc :  subject : re : 7 / 14 - - crude oil and nat gas  i thought today ' s analysis was good perspective . i found some records of  peaking  production which will forward over tomorrow .  george  - - - - - - - - - - - - - - - - - - - - - - forwarded by george hopley / hou / ect on 07 / 13 / 2000 08 : 54  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  george hopley  07 / 13 / 2000 08 : 52 pm  to : patricia tlapek / hou / ect @ ect  cc :  subject : re : 7 / 14 - - crude oil and nat gas  nice commentary on gas  from : patricia tlapek 07 / 13 / 2000 08 : 49 pm  to : patricia tlapek / hou / ect @ ect  cc : ( bcc : george hopley / hou / ect )  subject : 7 / 14 - - crude oil and nat gas\",0\n\"Subject: re : research and development charges to gpg  vera :  in studying the below information , if i am understanding it correctly , only  $ 199 . 7 was to be reversed back to the research group and it should  have occurred in july . do you not notice this entry either ?  please let me know .  thanks !  shirley crenshaw  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 08 / 11 / 2000  10 : 08 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  08 / 10 / 2000 02 : 25 pm  to : vera apodaca / et & s / enron @ enron  cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , pinnamaneni  krishnarao / hou / ect @ ect  subject : re : research and development charges to gpg  vera ,  we shall talk to the accounting group about the correction .  vince  08 / 09 / 2000 03 : 26 pm  vera apodaca @ enron  vera apodaca @ enron  vera apodaca @ enron  08 / 09 / 2000 03 : 26 pm  08 / 09 / 2000 03 : 26 pm  to : pinnamaneni krishnarao / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : research and development charges to gpg  per mail dated june 15 from kim watson , there was supposed to have occurred  a true - up of $ 274 . 7 in july for the fist six months of 2000 . reviewing july  actuals , i was not able to locate this entry . would you pls let me know  whether this entry was made , if not , when do you intend to process it .  thanks .\",0\n\"Subject: re : summer intern : paulo oliveira  vince , both matt and april think that this type of research would be  value - additive to ebs . i will be out all next week in a meeting with john  griebling and other on a deal that is being worked out . i understand that  you are following up with hr on all of our summer intern offers . please make  sure palo is given an offer and that he will work with april and matt ( he did  talk to matt ) on the topics that april and i suggested .  regards ,  ravi .  - - - - - forwarded by ravi thuraisingham / enron communications on 02 / 20 / 00 12 : 41  am - - - - -  matt harris  02 / 17 / 00 08 : 08 pm  to : ravi thuraisingham / enron communications @ enron communications  cc : april hodgson / enron communications @ enron communications  subject : re : summer intern : paulo oliveira  looks interesting .  i would guess that there is a ton of research available ( from @ home , aol ,  roadrunner , real , microsoft , etc . ) on broadband ' s impact on the strategic  value of web properties . compiling this would be very helpful .  mh  ravi thuraisingham  02 / 17 / 00 12 : 15 pm  to : april hodgson / enron communications @ enron communications , matt  harris / enron communications @ enron communications  cc :  subject : summer intern : paulo oliveira  hi april & matt , here is additional information on the summer intern that  i ' ve mentioned .  matt , i know you know nothing about this ! my discussion with april on the  possible research topic let me ( & april ) to believe that you would provide  great input on what the student can work on while he is here .  regards ,  ravi .  ebs research  - - - - - forwarded by ravi thuraisingham / enron communications on 02 / 17 / 00 02 : 09  pm - - - - -  stinson gibner @ ect  02 / 17 / 00 11 : 23 am  to : vince j kaminski / hou / ect @ ect  cc : ravi thuraisingham / enron communications @ enron communications , thomas d  gros / hou / ect @ ect  subject : summer intern : paulo oliveira  vince : here is the information that i have on paulo . he would be slated  to work for the summer with april hodgeson and matt harris on how streaming  media products may add value to advertising or some related area .  actually , he would also be a good fit for helping to think ways to analyze  our enron on - line data . i have asked if he can send a resume . in the  mean time , most of his relevant information is attached below .  - - stinson  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 02 / 17 / 2000  11 : 14 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  paulo rocha e oliveira on 02 / 10 / 2000 12 : 04 : 56 pm  to : \"\" stinson gibner \"\"  cc :  subject : re : trip to houston  stinson ,  thank you for your e - mail . my phone number is ( 617 ) 492 - 9551 .  i graduated from princeton university in 1996 ( mathematics ) , and came  straight to mit for a  ph . d . in operations management at the sloan schoolof management . in my first  three years i took all the required coursework in mathematics ,  optimization , stochastic processes , etc . , as well as a number of courses in  psychology ( at mit and harvard ) . i am working with prof . gabriel bitran ,  and i am interested in the mathematical modeling of service operations . in  particular , i am interested in the interaction between customers and  companies ( hence the interest in psychology ) . the ( tentative ) title of my  phd thesis is \"\" pricing substitute products on the internet \"\" , and i am  sending you the summary which i sent to tom gros a few weeks ago that will  give you an idea of what this research is about .  thanks again , and i ' m looking forward to meeting you and your research  group next week .  paulo  pricing substitute products on the internet  objective :  to develop new tools to decide pricing policies for goods and services sold  on  the internet .  motivation :  this research is motivated by the fact that traditional choice and  optimization  models are not appropriate for internet - related businesses . the technological  innovations associated with the internet brought about an overload of  information  which inevitably affects the ways in which consumers make choices .  furthermore ,  companies have a great deal of influence on how much information consumers can  have access to .  the problem of pricing substitute products is an important strategic issue  faced  by internet companies . consumers usually search for generic products ( e . g .  vcrs  or computers ) without knowing exactly what they will buy . companies can show  different products and different prices to each consumer . this type of  flexibility  was not available until the internet came about .  the problem of pricing substitute products is not unique to the internet . the  methodology developed by this research should be transferable to a number of  other settings , such as pricing services . services are unique , and there are  many cases where customers will only buy one of many services offered by a  given company . our model will help companies decide which services to offer  to which customers and how much to charge for these services .  research strategy :  our research strategy is to divide the pricing problem into two components  which can be combined to generate optimal pricing strategies . these  components are choice models and optimization models .  choice models :  choice models describe how customers make choices . the management literature  draws on two main sources for these models : psychology and economics . the  common approach in psychology models is to use what are called heuristic  elimination methods . these methods consist of the elimination of options  based on the sequential elimination of features until only one choice  remains .  these methods tend to be very context - specific and do not lend themselves very  easily to mathematical analysis . economists focus on utility - maximing models  that are significantly more mathematically tractable than psychological  models .  the most common economic model of choice is the logit model . the problem with  these types of models is that they are not very accurate reflections of how  consumer make choices on the internet . the first step in our research will  be  to develop choice models that capture the interactions going on between  customers  and companies on the internet .  optimization :  traditionally , the optimization problem consists of maximizing revenue over a  certain planning horizon . on the internet , the problem of maximizing revenue  still exists , but there is also a need to learn about customers . short term  profit is based on sales , but long term profit is based on how well you know  your customers and are able to retain them . the optimization problem must  therefore include a short term component ( sales ) and a long term component  ( learning ) .\",0\n\"Subject: re : real options  stinson / krishna ,  paul q , raymond y and i will call 5 . 30 pm houston time thursday afternoon to  discuss . that is 8 . 30 am sydney time . if that is not convenient , i will call  krishna to arrange another time .  regards ,  paul  stinson gibner @ ect  05 / 04 / 2001 07 : 29 am  to : paul smith / enron _ development @ enron _ development  cc : pinnamaneni krishnarao / hou / ect @ ect , vince j kaminski / hou / ect @ ect  subject : re : real options  paul ,  krishna and i are thinking that you may be able to book this type of option  as a call swaption on power . if you would like to discuss further , let ' s  set up a time when we can call you .  - - stinson  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 04 / 04 / 2001  04 : 27 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  04 / 02 / 2001 08 : 16 am  to : paul smith / enron _ development @ enron _ development  cc : stinson gibner / hou / ect @ ect , vince j kaminski / hou / ect @ ect , paul  quilkey / enron _ development @ enron _ development , raymond  yeow / enron _ development @ enron _ development  subject : re : real options  paul ,  we have done a lot of work in this area . i shall call you later  today ( monday my time ) , tuesday morning your time with  some recommendations .  vince  p . s . shirley , please send a real options binder to paul .  vince  from : paul smith @ enron _ development on 03 / 30 / 2001 08 : 42 am zel 0  to : vince j kaminski @ ect  cc : paul quilkey / enron _ development @ enron _ development , raymond  yeow / enron _ development @ enron _ development  subject : real options  vince ,  the sydney office is currently evaluating a proposal that involves an option  to participate in building a wind farm . should this proceed , we would like to  mark this option \"\" to market \"\" .  have the research group completed any work on methods for booking and  remarking real options ? alternatively , do you have any suggestions as to the  best way to value , and book , real options fairly ?  regards  paul smith\",0\n\"Subject: risk management meeting at georgia tech  you are welcome to attend the following meeting in the area of quantitative  and computational finance and risk management in the mrc auditorium on  the georgia tech campus from 1 pm to 6 pm on friday , march 30 th .  there will be five speakers that will give presentations on a variety of  topics .  dr . curt hunter , research director , federal reserve bank of chicago  dr . mary mathewes kassis , associate director ,  georgia state university economic forecasting center  dr . alan white , professor of finance , university of toronto , and  mr . pete van amson , cfa , cpa , vice president , product management ,  sungard trading and risk systems  dr . dennis wong , vice president , quantitative finance ,  bank of america securities  there is no charge for the event .  this will be the inaugural meeting of the atlanta chapter of the global  association of risk professionals ( garp ) . you need not be a member of garp  to attend the meeting . information about garp can be found at  http : / / www . garp . com .  we are asking that attendees rsvp so that plans can be made for refreshments .  we only ask that you reply to this email or to atlanta @ garp . com before  march 21 if you plan to attend . in addition to a break half - way through the  afternoon , there will be refreshments immediately following the presentations .  this event is sponsored by the master of science in quantitative and  computational finance program at georgia tech , sungard trading and risk  systems , and  suntrust banks , inc .  please pass along this announcement to your associates .  information about the talks and the speakers  dr . curt hunter  research director , federal reserve bank of chicago  dr . hunter ' s discussion is entitled \"\" lessons learned from recent global  financial crises . \"\" since 1990 , major banking and currency crises have  occurred in many countries around the world - including mexico and latin  america in 1994 , east asia in 1997 - 98 , and russia and brazil in 1998 ,  among others - with large costs both to the individual countries  experiencing the crises and to other nations . as a result , considerable  effort has been expended by economists and policymakers to identify the  causes of these crises and to design programs with the aim of preventing ,  if possible , similar crises from occurring in the future , and minimizing  the costs when they do occur . this talk reviews the key lessons  policymakers have learned from these recent episodes and highlights the  role that risk management plays in crisis prevention .  dr . william c . ( curt ) hunter is senior vice president and director of  research at the federal reserve bank of chicago . he is a member of the  bank ' s management committee and serves as the bank ' s chief economist .  he is responsible for a staff of 115 professionals and oversees the  bank ' s research activities in the areas of monetary policy , banking  and financial markets , and regional economics programs . he is also  responsible for the bank ' s statistical and financial reports function .  dr . hunter is an associate economist on the federal open market committee ,  the federal reserve system ' s primary monetary policy group .  previously , he was a vice president at the federal reserve bank of  atlanta and has served on the faculties of the university of georgia ,  emory university , chicago state university , and northwestern university .  he has consulted with numerous foreign central banks , official agencies ,  and private corporations and serves on the boards of several research  and nonprofit organizations . he is co - editor of research in banking  and finance and serves on the editorial boards of several academic  journals . dr . hunter earned a b . s . degree in 1970 from hampton  institute ( now hampton university ) , an mba in finance in 1972 and a ph . d .  in finance and environment in 1978 from northwestern university .  dr . mary mathewes kassis  associate director , georgia state university economic forecasting center  dr . kassis will provide her outlook for the georgia and atlanta economies  over the next two years . she will focus on economic risks specific to  atlanta , including its exposure to the contraction of the it sector ,  potential over development of office space , and a declining rate of job  growth . regardless of your field , this should be a very informative  discussion .  dr . kassis has been analyzing the southeast economy for over five years .  she writes a quarterly report that examines the current economic  conditions in 13 southeastern states as well as an outlook for the next  couple of years . she also prepares an in - depth quarterly analysis of the  outlook for the georgia and atlanta economies . she is regularly quoted  in publications such as the wall street journal , the atlanta journal -  constitution , and the atlanta business chronicle . dr . kassis received  a b . a . in economics and political science from agnes scott college and  a ph . d . in economics from georgia state university .  dr . alan white  professor of finance , university of toronto  mr . pete van amson , cfa , cpa  vice president , product management , sungard trading and risk systems  dr . alan white and mr . peter van amson will discuss applied term  structure modeling . sungard has implemented a version of the hull - white  term structure model that banks use in measuring and managing the market  value sensitivity of various balance sheet components . peter will touch  on some of the complexities involved in modeling non - maturity deposits ;  with regard to the term structure of interest rates , alan will discuss  some of the problems and possible solutions in bridging the divide between  what is required from a theoretical standpoint and what is feasible  in a production process .  dr . alan white is a professor of finance in the joseph l . rotman school  of management at the university of toronto . his research is principally  in the area of derivative securities , their pricing and their use by  financial institutions for risk management . he is most noted for his  work on modeling the term structure of interest rates in a way that  is consistent with observed market data . recently his research has been  focused on the pricing and management of credit risk . professor white  has published many scholarly articles , but is perhaps best recognized  for providing lucid insights into the practical application and  implementation of this research . much of his material is included in  the best - selling book hull - white on derivatives , co - authored with  john hull .  mr . peter van amson is the vice president of product management at  sungard trading and risk systems where he is responsible for the  development of all functional specifications for the bancware product  suite . in this capacity , he frequently interacts with sungard  user - committees , leading academics , and other leading industry  practitioners . he frequently makes presentations at conferences and  seminars sponsored by bai , amifs , the occ , as well as other organizations .  prior to working with bancware , peter headed the strategic planning  function for the plymouth rock company , one of america ' s most profitable  insurance holding companies . in this role , he helped define the  company ' s strategic vision as well as being involved in investment  analysis , asset / liability management and quantitative profitability  aanalysis . peter has a b . s . and m . s . in accounting from the state  university of new york at binghamton . he is currently a ph . d . candidate  at the university of michigan . peter has received numerous academic awards  and honors including the william andrew paton fellowship at the  university of michigan and the new york state society of certified  public accountants award for academic excellence .  dr . dennis wong  vice president , quantitative finance , bank of america securities  dr . wong will discuss competing vendor approaches to credit risk  modeling , including creditmetrics , kmv , creditrisk + and creditportfolio  view . these models are viewed in a theoretical framework that  identifies migration probabilities , credit exposure and loss  aggregation .  dr . wong has a ph . d . in mathematical finance from carnegie mellon  university . he has given talks and seminars for the american  mathematical society , the society for industrial and applied mathematics ,  the university of toronto , and georgia tech . he is the author of  \"\" generalized optimal stopping and financial markets \"\" , published in  pitman research notes in mathematics series .\",0\n\"Subject: re : recovery plan  it would be funny if it were not quite so close to the truth !\",0\n\"Subject: hc collar valuation - update  andrea ,  we computed the hc historical volatility for last 3 years , it is 47 . 2 % .  using this volatility , the costless collar call strike is at 83 . 32 .  zimin\",0\n\"Subject: re : houston visit  soussan ,  my assistant , shirley crenshaw , will call you regarding the time of the  meeting .  right now the afternoon is open .  i look forward to meeting you on the 19 th .  vince  \"\" faiz , soussan \"\" on 03 / 30 / 2000 02 : 31 : 18 pm  to : \"\" ' vkamins @ enron . com ' \"\"  cc :  subject : houston visit  dear vince ,  greetings from ny & hope all is well . as you may recall from the rog real  options conference in ny , i ' d indicated the opportunity to visit with you  next time i ' m in houston . i ' ll be there during 4 / 18 - 4 / 21 & wonder if we can  pls meet on wed . 4 / 19 in your offices . would appreciate it if you can pls  let me know whether you ' re available then ( i ' m flexible on the schedule  particulars ) . if not , pls let me know whether 4 / 18 ( afternoon ) , 4 / 20  ( afternoon ) , or 4 / 21 ( morning ) will work for you .  i really look forward to the opportunity & would appreciate to learn more  about how you ' ve instigated the real options thinking in enron and  especially its integration within the organizational & incentive matters .  many thanks ,  soussan faiz  mgr . of global valuation services  texaco inc .  ( 914 ) 253 - 4187\",0\n\"Subject: california update 5 / 4 / 01  if you have any questions , please contact kristin walsh at ( 713 ) 853 - 9510 .  bridge loan financing bills may not meet their may 8 th deadline due to lack of support  sources report there will not be a vote regarding the authorization for the bond issuance / bridge loan by the may 8 th deadline . any possibility for a deal has reportedly fallen apart . according to sources , both the republicans and democratic caucuses are turning against davis . the democratic caucus is reportedly \"\" unwilling to fight \"\" for davis . many legislative republicans and democrats reportedly do not trust davis and express concern that , once the bonds are issued to replenish the general fund , davis would \"\" double dip \"\" into the fund . clearly there is a lack of good faith between the legislature and the governor . however , it is believed once davis discloses the details of the power contracts negotiated , a bond issuance will take place . additionally , some generator sources have reported that some of the long - term power contracts ( as opposed to those still in development ) require that the bond issuance happen by july 1 , 2001 . if not , the state may be in breach of contract . sources state that if the legislature does not pass the bridge loan legislation by may 8 th , having a bond issuance by july lst will be very difficult .  the republicans were planning to offer an alternative plan whereby the state would \"\" eat \"\" the $ 5 billion cost of power spent to date out of the general fund , thereby decreasing the amount of the bond issuance to approximately $ 8 billion . however , the reportedly now are not going to offer even this concession . sources report that the republicans intend to hold out for full disclosure of the governor ' s plan for handling the crisis , including the details and terms of all long - term contracts he has negotiated , before they will support the bond issuance to go forward .  currently there are two bills dealing with the bridge loan ; ab 8 x and ab 31 x . ab 8 x authorizes the dwr to sell up to $ 10 billion in bonds . this bill passed the senate in march , but has stalled in the assembly due to a lack of republican support . ab 31 x deals with energy conservation programs for community college districts . however , sources report this bill may be amended to include language relevant to the bond sale by senator bowen , currently in ab 8 x . senator bowen ' s language states that the state should get paid before the utilities from rate payments ( which , if passed , would be likely to cause a socal bankruptcy ) .  according to sources close to the republicans in the legislature , republicans do not believe there should be a bridge loan due to money available in the general fund . for instance , tony strickland has stated that only 1 / 2 of the bonds ( or approximately $ 5 billion ) should be issued . other republicans reportedly do not support issuing any bonds . the republicans intend to bring this up in debate on monday . additionally , lehman brothers reportedly also feels that a bridge loan is unnecessary and there are some indications that lehman may back out of the bridge loan .  key points of the bridge financing  initial loan amount : $ 4 . 125 b  lenders : jp morgan $ 2 . 5 b  lehman brothers $ 1 . 0 b  bear stearns $ 625 m  tax exempt portion : of the $ 4 . 125 b ; $ 1 . 6 b is expected to be tax - exempt  projected interest rate : taxable rate 5 . 77 %  tax - exempt rate 4 . 77 %  current projected  blended ir : 5 . 38 %  maturity date : august 29 , 2001  for more details please contact me at ( 713 ) 853 - 9510  bill sb 6 x passed the senate yesterday , but little can be done at this time  the senate passed sb 6 x yesterday , which authorizes $ 5 billion to create the california consumer power and conservation authority . the $ 5 billion authorized under sb 6 x is not the same as the $ 5 billion that must be authorized by the legislature to pay for power already purchased , or the additional amount of bonds that must be authorized to pay for purchasing power going forward . again , the republicans are not in support of these authorizations . without the details of the long - term power contracts the governor has negotiated , the republicans do not know what the final bond amount is that must be issued and that taxpayers will have to pay to support . no further action can be taken regarding the implementation of sb 6 x until it is clarified how and when the state and the utilities get paid for purchasing power . also , there is no staff , defined purpose , etc . for the california public power and conservation authority . however , this can be considered a victory for consumer advocates , who began promoting this idea earlier in the crisis .  socal edison and bankruptcy  at this point , two events would be likely to trigger a socal bankruptcy . the first would be a legislative rejection of the mou between socal and the governor . the specified deadline for legislative approval of the mou is august 15 th , however , some decision will likely be made earlier . according to sources , the state has yet to sign the mou with socal , though socal has signed it . the republicans are against the mou in its current form and davis and the senate lack the votes needed to pass . if the legislature indicates that it will not pas the mou , socal would likely file for voluntary bankruptcy ( or its creditor - involuntary ) due to the lack operating cash .  the second likely triggering event , which is linked directly to the bond issuance , would be an effort by senator bowen to amend sb 31 x ( bridge loan ) stating that the dwr would received 100 % of its payments from ratepayers , then the utilities would receive the residual amount . in other words , the state will get paid before the utilities . if this language is included and passed by the legislature , it appears likely that socal will likely file for bankruptcy . socal is urging the legislature to pay both the utilities and the dwr proportionately from rate payments .\",0\n\"Subject: re : request  thanks vince . this is great .  by the way , did you get copies of the journal with our paper ?  john  at 04 : 59 pm 3 / 23 / 01 - 0600 , you wrote :  >  > john ,  >  > no problem .  > i look forward to it .  >  > vince  >  >  >  >  >  > \"\" john d . martin \"\" on 03 / 23 / 2001 09 : 04 : 44 am  >  > to : vkamins @ enron . com  > cc :  > subject : request  >  >  > vince ,  >  > would you mind making a few luncheon comments to the texas finance festival  > group at our sat luncheon ? i struck out with andy and sheridan thought  > that you could relate very well to the group . how about it ?  >  > john  >  > john d . martin  > carr p . collins chair in finance  > finance department  > baylor university  > po box 98004  > waco , tx 76798  > 254 - 710 - 4473 ( office )  > 254 - 710 - 1092 ( fax )  > j _ martin @ baylor . edu  > web : http : / / hsb . baylor . edu / html / martinj / home . html  >  >  >  >  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: ben zhang timeframe  hi ,  can and should we organize a tag - team baby sitting detail ? aghh ! another  weekend that is not my own !  grant .  - - - - - - - - - - - - - - - - - - - - - - forwarded by grant masson / hou / ect on 09 / 14 / 2000 08 : 51  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron north america corp .  from : toni graham @ enron 09 / 13 / 2000 05 : 08 pm  to : grant masson / hou / ect @ ect  cc :  subject : ben zhang timeframe  grant , what do you think ? if you really want this guy , you may suggest  someone in your group to \"\" entertain \"\" them while they are here .  what do you think ?  - - - - - - - - - - - - - - - - - - - - - - forwarded by toni graham / corp / enron on 09 / 13 / 2000  04 : 58 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  meastman @ qualitec . com on 09 / 13 / 2000 02 : 05 : 53 pm  to :  cc :  subject : ben zhang timeframe  toni ,  i spoke with ben today and he is planning to pay for a trip to bring his  wife to houston this weekend and show her around in hopes of overcoming her  hesitiation on moving . his question is whether enron will give him the time  to bring her down here and then give an answer next week ? if you will let  me know how you , grant , and vince feel about that .  thanks ,  mike  qualitec professional services , lp  accounting - financial - energy risk - tax  search consultants  mike eastman , cpc  president  281 - 647 - 9300 fax 281 - 647 - 0933  email - meastman @ qualitec . com\",0\n\"Subject: re : from vicky windsor  vicky ,  please , send me your resume .  i shall forward it to a number of employees of enron in london  with my strongest recommendation . i shall send you the list  of names . the resume will make it easier for me to  identify good targets .  please , make sure you will contact me if there is no reaction .  people here are very busy and , as you know , things fall through the cracks .  vince  vince  \"\" vicky windsor \"\" on 10 / 11 / 2000 04 : 49 : 56 am  to : vkamins @ enron . com  cc :  subject : from vicky windsor  dear vince ,  how are you ? well i hope .  i hope you don \u0001 , t mind me writing to you . you may remember that 5 months ago  i left risk publications and moved to a charity . having been here for only a  few months , i have decided that this job is not for me ( i miss the buzz of a  corporate office ) and i have decided to move back into the corporate sector .  because of my previous experience and knowledge of the energy sector , i am  very interested in moving into this area . i have always thought that it  would be great to work for enron because it is such a dynamic company and i  am planning to approach the london office to discuss any opportunities ,  which might be available . i am particularly interested in product marketing  and research , although i am very open - minded at the moment . i wondered  whether you could recommend the right person to speak to in london .  i know that you are incredibly busy , but any help you can give me would be  fantastic vince .  thanks and best regards ,  vicky windsor  get your private , free e - mail from msn hotmail at http : / / www . hotmail . com .  share information about yourself , create your own public profile at  http : / / profiles . msn . com .\",0\n\"Subject: re : resume ,  vince ,  if you are interested in this candidate i would suggest that you talk to him  directly . he probably is not a \"\" fit \"\" for the global technology track .  thanks ,  ashley  vince j kaminski @ ect  10 / 24 / 2000 04 : 31 pm  to : ashley baxter / corp / enron @ enron  cc : vince j kaminski / hou / ect @ ect  subject : resume ,  ashley ,  another student who responded after my presentation .  what do you think ? should we talk to him ( research ) directly ?  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 24 / 2000  04 : 37 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  jinbaek kim on 10 / 23 / 2000 07 : 25 : 36 pm  to : vkamins @ enron . com  cc :  subject : resume ,  dear mr . kaminski ,  hi ,  i am a ph . d student at ieor department at u . c . berkeley .  thanks for your presentation today .  it gave me knowledge and interest in electricity markets ,  and your company .  as you mentioned in the presentation ,  i send a resume to give me opportunity to learn more  about your company .  i hope i can join the super saturday event .  jinbaek  - resume . doc\",0\n\"Subject: freese notis  mike :  we are currently being billed for freese notis weather . i will need to  allocate these charges to the appropriate cost center . if you would like to  continue this service i could allocate it directly to your cost center or  send you the bill directly . if you know of anyone else who uses this  application please let me know and i will split the cost among the  departments .  thank you ,  danielle marcinkowski\",0\n\"Subject: yvan chaxel  your name was listed by yvan as a reference on his application for a graduate  school tuition loan . your assistance in this process is greatly appreciated .\",0\n\"Subject: project  hi michelle ,  chris , helen and i met this afternoon and discussed about  the project . we think the following course of action is appropriate .  the model interface will be in excel spreadsheet , with most  of the inputs ( from enron as well as from the consultant ) hiding  in an access data base . the access data base can be update  when needed . the engine will be written in visual basis code and  be linked to excel through xll ( or dll ) .  helen has been discussing with ken about various  aspects of the model and will finalize the access data table  form with ken . in the mean time , helen and i will start working  on code this thursday ( she will be in training wednesday ) .  best ,  alex\",0\n\"Subject: new eprm speakers  vince ,  thanks very much for your help  helen  - - - - - original message - - - - -  from : vince j kaminski  to : helen evans  cc : stinson gibner  date : 10 december 1999 19 : 14  subject : re : new eprm speakers  helen ,  i forwarded your message to my associate stinson gibner  whom i can wholeheartedly recommend .  vince  \"\" helen evans \"\" on 12 / 06 / 99 10 : 29 : 39 am  please respond to \"\" helen evans \"\"  to : vince j kaminski / hou / ect @ ect  cc :  subject : new eprm speakers  vince ,  i ' m currently looking to broaden eprm ' s speaker base and would like to  find a  speaker for a training course i am producing on the monte carlo  technique . i was  wondering if you might be able to recommend somebody new from enron who  might  like to speak on this subject . i ' d really appreciate any help you could  give me .  many thanks  helen evans  producer , eprm conferences & courses  - attl . htm\",0\n\"Subject: re : recruiting  a response from jean . . .  - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin kindall / corp / enron on 11 / 06 / 2000  03 : 50 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  jean eisel on 11 / 06 / 2000 03 : 34 : 05 pm  to : kevin . kindall @ enron . com  cc : sgould @ andrew . cmu . edu  subject : re : recruiting  hi kevin  wow you sure do pack one e - mail .  i will try to answer questions . . . after each of you . . . look in the email  for answers .  - - on monday , november 06 , 2000 , 2 : 39 pm - 0600 kevin . kindall @ enron . com wrote :  > hello . it was a pleasure to come back to cmu , and i enjoyed  > interacting with the students . vince k . has expressed interest in  > interviewing the computational finance students . enron will conduct first  > round interviews with the mba students in december , and would like to set  > up seperate interviews for the comp . fin . students . enron would like to  > interview all the pittsburgh based comp . fin students , and we need to  > select a date and a time .  we are excited that you want to interview the comp finance students .  do you want to do it in dec . or before ? let me know what best suits you .  since there are only 16 individuals in the pittsburgh area . . . we should be  able to accomodate you . . . would you want one or two schedules . . ?  what is the formal protocol in such matters ?  >  all you need to do is let me know some ideal dates . . . and you send a job  description and names of the students you want to interview .  we will try to be as accomodating as possible .  > enron is also interested in the ecommerce students as we have  > ecommerce initiatives underway . it is my understanding that kristen  > gandy will be the contact for such activities .  if you can send me an e - mail address for kristen , i can get this strating  asap .  >  > regarding a houston based satellite program , vince needs a proposal  > in writing . would you be so kind as to send one ?  what program is vince interested in having a satellite program ? when he was  here he seemed less intererted in comp finance and more interested in  e - commerce .  i sent a note to michael shamos and tridas discussing this .  let me know which program and i will see if we can work anything out ?  > thanks so much , and i look forward to seeing you again in a few  > weeks .  >  thanks kevin for you speedy response .  >  >  >  >  jean e . eisel , ph . d .  associate dean , admissions , coc and alumni relations  gsia  carnegie mellon university  pittsburgh , pa 15213  412 - 268 - 2277  412 - 268 - 4146 ( fax )  currently in the news : carnegie mellon university mba program ranked 14 th  in business week ' s list of the best graduate schools of business in the  united states . \",0\n\"Subject: re : important - prc mtg  hi dorn & john , as you discovered recently , i am still ' officially ' in vince  kaminski ' s group ( my original enron corp . group ) . this holds true for shalesh  ganjoo as well . i did not explicitly pick dorn or john as reviewers thinking  that they will show up automatically as a result of my assumed reporting  structure .  so , vince has agreed to ' host ' the review in his group and proceed to  transfer me over to ebs officially when this quarter is overs ( apprently that  was scheduled to be automatic ) . in the mean time , vasant , stinson or vince  would like to get a e - mail from either dorn or john regarding my performance  from their perspective for consideration as soon as possible .  i had plan on being on vacation starting tomorrow and have made arrangement  with my family already . since i am not reviewing shalesh directly ( since he  is in research under stionson ) , i am assuming i don ' t have to attend the  review meetin tommorrow . i ' ll be on the road starting in the morning . if i  change this , i am told at home , that i will be in the market for another  family ! i can phone in if that is okay .  kayla , could you page me with the details ?  regards ,  ravi .\",0\n\"Subject: rtp project  john and krishna ,  i am sending you an outline of a conference at stanford on topics related to  demand - side pricing and management in the power markets .  please , let me know if you are personally interested and who else  in your respective organizations would like to attend .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 19 / 2001  08 : 10 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  hill huntington on 03 / 15 / 2001 05 : 26 : 55 pm  to : vkamins @ enron . com  cc :  subject : rtp project  vince ,  targetted conference date is th - f june 21 - 22 at stanford . enclosed in the  recent revision to what i sent before .  great to meet you ,  hill  - retail notes . rtf  hillard g . huntington  emf - an international forum on  energy and environmental markets voice : ( 650 ) 723 - 1050  408 terman center fax : ( 650 ) 725 - 5362  stanford university email : hillh @ stanford . edu  stanford , ca 94305 - 4026  emf website : http : / / www . stanford . edu / group / emf /\",0\n\"Subject: btu ' s daily power report - eastern edition  attached is the latest issue of btu ' s daily power report : eastern edition  e - mail : info @ btu . net  phone : 732 - 758 - 8222  fax : 732 - 758 - 8286  - peo 71100 . pdf\",0\n\"Subject: clayton vernon  kevin ,  vasant and i talked to clayton about his request for transfer . clayton  received a conditional approval contingent  upon completion of the current project he works on . vasant will formulate  exact definition of the deliverables  and we will hold clayton to it . if he fails to deliver the request for  transfer will be rejected . anything else  would be highly demoralizing to everybody .  clayton has so far produced exactly zero ( no single output was delivered )  though he was advertising  the projects inside and outside the group as completed . i want you to be  aware of it , because i have  serious doubts regarding clayton ' s integrity .  vince\",0\n\"Subject: referral  mr . kaminski ,  i have attached a resume below i thought you might find of interest , it is  from a business school acquaintance of mine , denis suvorov . denis is a  highly intelligent ph . d . candidate at my former school and is currently  looking for opportunities within a research / modelling framework . he has  significant academic experience working on asset pricing models and after  speaking with pavel zadorozhny about his background and objectives , he  recommended i forward a copy of his credentials to you .  i hope this is suitable and would be of interest to you .  thanks ,  matthew frank\",0\n\"Subject: 2001 budget  i need your help . . . i did a quick comparison for the 2000 and 2001 budget  and i am showing a significant increase from last year . did we have an  increase in headcount ? i do not know your actual budget for 2000 . i used  the information for the last 5 months of 2000 budget to estimate for the year  ( see 2000 budget tab in the attached file ) . the attached file contains the  following tabs :  budget vs budget comparison of 2000 vs 2001  allocation allocation - please allocate the rest of the 21 . 7 % to ena  2000 budget estimated 2000 budget based on the last 5 months information  research 2001 budget  the calculation for taxes and benefits does not equal to the calculation in  your template ( corp ) . plus , i have to add a & a overhead cost that corp will  bill us for a & a program ( line 78 ) . can we meet to discuss the allocation to  ena and the increase in plan ? i am open all week except for wednesday  between 10 and 11 . thank you .\",0\n\"Subject: june 21 - 22 retail electricity conference  dear workshop participant :  i hope you will be able to join us for the conference on \"\" retail  participation in competitive power markets \"\" to be held at the littlefield  conference center , stanford university , on june 21 - 22 , 2001 . conference  attire will be business casual .  the meeting will begin on thursday morning , june 21 , at 9 : 00 a . m . and will  conclude by 5 : 00 p . m . on friday , june 22 . a continental breakfast will be  available in the meeting room each morning beginning at 8 : 30 a . m .  please visit the \"\" june 21 - 22 \"\" meeting under  for a description of the meeting and some information about hotels .  please help us in our planning by using the form there to respond back to  emf about your participation . we have listed potential participants and  planned presentations based upon previous messages . please update me with  any additional presentations or changes in existing presentations .  i look forward to seeing you in june . in the interim , please do not  hesitate to call me or email me if you have questions or suggestions  regarding this workshop .  hill huntington  hillard g . huntington  emf - an international forum on  energy and environmental markets voice : ( 650 ) 723 - 1050  408 terman center fax : ( 650 ) 725 - 5362  stanford university email : hillh @ stanford . edu  stanford , ca 94305 - 4026  emf website : http : / / www . stanford . edu / group / emf /\",0\n\"Subject: uk inflation presentation  deal all ,  please find attached a copy from a presentation on uk inflation we gave this  morning to john sherriff , president & coo enron europe . it summarizes the  results of our work on inflation so far . as you know the long term models  still remain to be approved . as today is quarter end and there is a  significant p & l effect on a mtm basis john sherriff would like to proceed as  soon as possible with the new curves .  thank you all for all your help !  best regards ,  martina  x 34327\",0\n\"Subject: re : rollover of my vacation days to 2001  krishna ,  no problem . approved .  vince  pinnamaneni krishnarao  12 / 11 / 2000 06 : 28 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : rollover of my vacation days to 2001  vince :  i would like to rollover my vacation days for 2000 remaining at the end of  this year to 2001 . i could not use us all of my available vacation this year  because of the following reasons :  1 . as you know , i have been supporting three business units ( ees , epg & enron  india ) this year . all these units had difficult and relatively long projects  that required experience in energy markets , derivatives pricing and business  knowledge that i had gained over the last few years at enron .  2 . there has been a significant change in the team members reporting to me . i  now have six people under me compared to only three at the begin of the year .  of the current six members , five joined us only this year and most of them  didn ' t have any prior work experience , thus requiring a lot of my time in  recruiting , training and mentoring .  3 . given that i had to visit our bombay office in january , 2000 for a  business trip ( 10 days ) and will need to go there again in january , 2001 , i  could not take leave from my work for the other two units ( ees & epg ) for an  extended period of time .  so , in summary , this year has been a long and challenging one , and as a  result , i could not take vacation for more than a few days . i request you to  grant the rollover of my remaining vacation to next year .  currently i have 136 hours of vacation available and , of these , i expect to  have 112 hours unused at the end of this year .  thank you ,  krishna .\",0\n\"Subject: re : info help .  krishna ,  niclas introduces himself as an associate in the research group .  i think we should clarify his status .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 08 / 15 / 2000  05 : 53 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" michael schilmoeller \"\" on 08 / 15 / 2000 11 : 08 : 06  am  to : notes : niclas . egmar @ enron  cc : vkamins @ enron . com , grant _ masson @ pgn . com , stinson _ gibner @ pgn . com  subject : re : info help .  hi niclas ,  i am in the middle of preparing some presentations right now , so it might be  more productive to speak by phone ( 503 - 464 - 8430 ) . please leave your number ,  if you get my voicemail .  to get you started , you might see if you can get access to the ferc gads  database of plant forced and planned availability . it seems others in  research have asked about this , so you may already have this at your  disposal . the eia has a good electronic database of plant for and por  available for free ( http : / / www . nerc . com / ~ esd / ) . i know alexios in re / ees has  this . if you wanted to do it the hard way , you can also ask jaison to access  the epa ' s cems data he has summarized on a machine there in research . it  contains hourly plant operation for every unit over about 50 mw , which you  could aggregate up .  the wscc 10 - year forecast of new plant construction and loads is a good place  to start for plant construction information , but suffers from some notorious  \"\" self - reporting \"\" error . it is available in pdf form from the web site  http : / / www . wscc . com / . other sources that should be more near - term , but more  accurate are the cec inventory of plants ( http : / / www . energy . ca . gov / ) and the  bpa whitebook ( http : / / www . transmission . bpa . gov ) .  as far as basic economic data is concerned , you can either rely on the  reported utility forecasts for loads , or you can go to fundamental data . the  ultimate source of the census data collected by the us dept of commerce ,  which you can buy on cdrom for cheap . it would have this kind of information  by sic code , by zip code . you may also have access to one of the economic  forecasting businesses ( wharton ' s wefa , dri , etc . ) they have this in highly  digested and complete form .  btw , tim heizenrader , who runs fundamental analysis and research on the west  desk , is a sharp cookie and should have all this under control . is your  client aware of this resource ?  give me a buzz and we can talk more ,  michael  > > > niclas egmar / hou / ees @ enron 08 / 14 / 00 12 : 49 pm > > >  michael ,  i ' m an analyst in the research group . i would like your help with finding  some information specific for the west coast . a new analyst on the west power  desk needs information on planned outages and planned new generation . he is  studying the long - term fundamentals of electricity volatility on the west  coastso so he also needs info on housing starts , computer sales or industrial  production figures for computer manufacturing , growth of start - up companies ,  and population stats .  any help in finding the needed info would be greatly appreciated . contact me  or daniel kang ( new analyst ) .  niclas  - text . htm\",0\n\"Subject: poten & partners forecasts  fyi marg .  - - - - - - - - - - - - - - - - - - - - - - forwarded by margaret carson / corp / enron on 01 / 21 / 2000  07 : 31 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  doug leach @ ect  01 / 21 / 2000 07 : 00 am  to : guy dayvault / corp / enron @ enron  cc : margaret carson / corp / enron @ enron , rob bradley / corp / enron @ enron , jim  goughary / hou / ect @ ect , ted robinson / hou / ect @ ect , wade doshier / hou / ect @ ect ,  david j botchlett / hou / ect @ ect , john l nowlan / hou / ect @ ect  subject : poten & partners  fyi  - - - - - - - - - - - - - - - - - - - - - - forwarded by doug leach / hou / ect on 01 / 21 / 2000 06 : 58 am  - - - - - - - - - - - - - - - - - - - - - - - - - - -  doug leach  01 / 20 / 2000 03 : 47 pm  to : michael l brown / enron _ development @ enron _ development  cc : david a terlip / enron _ development @ enron _ development , kevin  beasley / lon / ect @ ect , john chismar / sin / ect @ ect , michel decnop / sin / ect @ ect ,  maurizio la noce / enron _ development @ enron _ development , marc de la  roche / hou / ect @ ect  subject : poten & partners  just some of george gail ' s observations :  he expects wti crude prices to return to a range of $ 19 - $ 22 / barrel by 2 q 2000  ( brent $ 18 - $ 20 ) although emotions rather than fundamentals will continue to  drive the market .  saudi ' s sold cal 00 naphtha at $ 8 m / t over the platt ' s ag mean and the  kuwaiti ' s are offer their naphtha at $ 11 m / t over the mean .  enoc offered 700 , 000 tons of term naphtha and only sold 200 , 000 tons .  adnoc ' s splitters should add even more naphtha supplies to the market .  koch has closed their rotterdam splitter due to poor economics . not  necessarily a permanent shutdown .  he expects the brent / dubai spread to return to more normal $ 1 - $ 1 . 25 / barrel .  regarding condensate he predicts that actual demand will drive the market and  there will be less bottomfeeding by the japanese and other refiners . he does  feel the new splitters will reduce the worldwide volumes available ,  but that there will still be adequate supplies .  he thinks crack spreads for refiners will still be weak during cal 00 .  although some resid demand will be displaced by natural gas or lng , he  expects fairly stable differentials to crude .  he expects strong us gasoline demand , but limits his demand growth projection  to 1 % for the year .\",0\n\"Subject: introduction  vince :  as way of introduction , i wanted to write a bit about mars inc . and then  about cds ,  the unit i head . mars is a private company , considered to be the largest  privately owned  manufacturing company in the world . mars is not in the habit of disclosing  its  finances ,  so the best i could do is refer to forbes ' estimate of $ 15 billion annual  revenue and  to the profit margins of similar companies between 5 - 12 % . mars is in the  business of  manufacturing confectionery ( m & m , dove bar , skittles , twix , - all ( r ) )  food ( uncle ben rice ( r ) ) pet food ( pedigree , whiskas waltham ( r ) ) and other  products .  mars has prospered during the years because of a unique philosophy that  emphasizes the  long term goals of the company . part of the philosophy is to look for win - win  solutions with  its suppliers , customers and partners .  as can be understood from the nature of the company , a large chunk of its  expenses  goes towards purchasing commodity like products , and hence the history of  researching  those commodities and the weather that influences their supply and the demand  ( people  eat less ice cream in the winter and less chocolate in the summer ) .  cds has a history of few decades in forecasting weather and has been very  successful ,  with an envious track record , in helping mars get a competitive advantage in  these arenas .  cds is a global group ( in 4 countries across two continents ) which supports  the  purchasing  function and the corporate at large in these and other arenas . it is a  multidiscipline and  multinational team with a lot to offer .  not having a ready access to the energy markets , and with a risk profile based  on  manufacturing expertise , mars has decided to look for potential partners in  this  area .  enron presence in the market place certainly makes it an interesting party to  talk to .  in talking to enron , we are careful to suggest that mars is not committing to  anything  at this point , and all we are after is to find out if there is an interest to  pursue the opportunity  we discussed in the future .  i am looking forward to our video conference call .  kind regards ,  avi  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  avi i . hauser phd mba  cds director  100 international drive mt olive nj 07828 - 1383  + 1 973 691 3664 ( office )  + 1 973 347 8189 ( fax )  + 1 973 727 3622 ( car + slow paging )  hauser @ cdsusa . com\",0\n\"Subject: datren williams acceptance  fyi  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 10 / 10 / 2000  08 : 10 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  carol coats  09 / 29 / 2000 02 : 36 pm  to : celeste roberts / hou / ect @ ect  cc : stinson gibner / hou / ect @ ect  subject : datren williams acceptance  celeste ,  i just received datren williams ' acceptance with the following note attached :  \"\" my graduation date ( ph . d . candidate from lsu ) is dec . 2000 . celeste roberts  has informed me that i would have the option of starting work feb . 2001 . i am  under the impression that i will start in feb . 2001 . my offer letter has a  start date  of aug . 2001 . if this is a problem , please give me a call .  looking forward to working at enron .  thanks a million ,  datren w . \"\"  please let me know if he may in fact start in feb . 2001 , and if so , do you  have  a specific date for him , or may he choose ?  thanks , celeste ,  carol\",0\n\"Subject: meeting confirmation / discussion points  fyi .  - - - - - - - - - - - - - - - - - - - - - - forwarded by pinnamaneni krishnarao / hou / ect on  08 / 03 / 2000 08 : 16 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  david foti @ ees  08 / 02 / 2000 05 : 06 pm  to : pinnamaneni krishnarao / hou / ect @ ect , minal dalia / hou / ees @ ees , sanjay  agarwal / hou / ees @ ees , naveen andrews / corp / enron @ enron  cc : scott stoness / hou / ees @ ees  subject : meeting confirmation / discussion points  tariff var project kick - off meeting  time : 8 / 3 ; 2 - 3 pm  location : eb 612  = = = = = = = = = = = = =  per the 8 / 2 lunch meeting between research , rac , and the tariff group , there  developed a consensus to :  develop a high level value - at - risk model within a 4 - 8 week time frame to use  for initial risk measurement and hedging purposes  accommodate links for critical variables such as interest rates , load growth ,  and inflation  provide \"\" knobs \"\" for less quantifiable factors such as rate case frequency ,  rate methodology , etc .  collaborate with the tariff forecasting team , to have consistent assumptions  and logic .  proposed agenda for our meeting :  discuss the relationship of this project to other ongoing projects  review existing t & d forecast model ( decide whether it ' s a starting point or  not - attached for your review )  discuss approach ( methodology and technology )  assign responsibilities  develop project guidelines and timeline  see worksheets , \"\" diagram \"\" , \"\" graph \"\" , \"\" exposure \"\"\",0\n\"Subject: skunkworks meeting - bi - weekly  shirley and i have scheduled the skunkworks ' meetings with scott tholan  beginning wednesday , july 5 from 2 : 00 to 3 : 30 . this meeting will take place  every other wednesday ( same time and place ) for the next few months . these  meetings will be held in ebl 938 . please mark your calendar , and if you have  any serious conflicts , please let either shirley or me know .  thanks ,  sharon  5 - 7212\",0\n\"Subject: re : part - time work  cantekin ,  i shall call you tomorrow to discuss the details .  vince  \"\" cantekin dincerler \"\" on 09 / 18 / 2000 02 : 59 : 41 pm  please respond to  to :  cc :  subject : part - time work  hi vince ,  i promised to get back to you on the part - time work issue . sorry for the  delay , i got back to austin only last week . i talked to ehud about this and  he is ok with it . just wanted to let you know .  best ,  - - - - - - - - - oooo - - - - - oooo - - - - - - - - - -  cantekin dincerler  doctoral candidate  the university of texas at austin  graduate school of business  department of finance  office : ( 512 ) 471 - 1676  fax : ( 512 ) 471 - 5073  home : ( 512 ) 472 - 5356  cell : ( 512 ) 680 - 5355  http : / / uts . cc . utexas . edu / ~ cantekin  - - - - - - - - - - - - - oooo - - - - - oooo - - - - - - - - - -\",0\n\"Subject: re : enron weather research  good afternoon mike :  i certainly am interested in determining if there may be a potential fit  there at enron . i am very enthusiastic to apply my finance and meteorology  backgrounds in a market - based environment that is driven to achieve  unprecedented efficiencies . attached are two documents : 1 ) a  business - focused resume , and 2 ) an abbreviated meteorology cv .  graduate meteorology coursework included advanced atmospheric dynamics i and  ii , advanced physical meteorology , boundary layer modeling , numerical  modeling , research methods in meteorology , and turbulence .  i will look forward to hearing from you .  sincerely ,  greg hunt  - - - - - original message - - - - -  from :  to :  cc : ; ;  sent : friday , april 27 , 2001 9 : 12 am  subject : enron weather research  >  > greg ,  >  > hello , and by way of introduction , we were forwarded your e - mail address  by  > heather thorne .  >  > i understand you have an m . s . in meteorology as well as an m . b . a . in  > finance , and have done some research at livermore .  >  > i ' d be happy to learn more about your activities , and , if you are  > interested , to see if there may be a potential fit here at enron .  >  > can you e - mail your resume with a description of your coursework and  > research activities ?  >  > looking forward to hearing from you ,  >  > mike roberts  > vice president - research  >  - greg hunt _ resume _ 4 - 27 - 01 . doc  - greg hunt _ cv _ meteorology _ 4 - 27 - 01 . doc\",0\n\"Subject: re : super saturday interviews  vince -  that is not a problem . we will not schedule you for a dinner . thanks for  your help with interviews !  beth  vince j kaminski  05 / 31 / 2000 06 : 04 pm  to : beth miertschin / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect  subject : re : super saturday interviews  beth ,  please , let me know about friday night . i want to know if i should  dress up for dinner . i am very busy and i would be glad to skip dinner  if you have enough people to cover it .  vince  from : beth miertschin 05 / 31 / 2000 05 : 19 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : super saturday interviews  - - - - - - - - - - - - - - - - - - - - - - forwarded by beth miertschin / hou / ect on 05 / 31 / 2000  05 : 19 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : beth miertschin 05 / 31 / 2000 01 : 51 pm  to : kevin ruscitti / hou / ect @ ect , tom adams / hou / ees @ ees , harold  bertram / hou / ect @ ect , ted c bland / hou / ect @ ect , w tom byargeon / hou / ect @ ect ,  rogers herndon / hou / ect @ ect , kevin mcgowan / corp / enron @ enron , cindy  skinner / hou / ect @ ect , mark tawney / hou / ect @ ect , greg woulfe / hou / ect @ ect ,  matthew arnold / hou / ect @ ect , keith holst / hou / ect @ ect , elspeth  inglis / corp / enron @ enron , kim melodick / hou / ect @ ect , sheila walton / hou / ect @ ect ,  janet r dietrich / hou / ect @ ect , gary hickerson / hou / ect @ ect , vince j  kaminski / hou / ect @ ect , george mcclellan / hou / ect @ ect , julia murray / hou / ect @ ect ,  jere c overdyke / hou / ect @ ect , jeffrey a shankman / hou / ect @ ect , fran l  mayes / hou / ect @ ect , dave hill / corp / enron @ enron , brad mcsherry / hou / ect @ ect ,  toni graham / corp / enron @ enron , james a ajello / hou / ect @ ect , phillip k  allen / hou / ect @ ect , edward d baughman / hou / ect @ ect , sally beck / hou / ect @ ect , bob  crane / hou / ect @ ect , david oxley / hou / ect @ ect , kevin m presto / hou / ect @ ect ,  daniel reck / hou / ect @ ect , hunter s shively / hou / ect @ ect , cedric  burgher / corp / enron @ enron  cc : ginger b gamble / hou / ect @ ect , shelly jones / hou / ect @ ect  subject : super saturday interviews  thank you for volunteering to interview this super saturday , june 3 rd . we  are working on the interview schedule and you will be receiving an interview  packet no later than friday morning . please let us know as soon as possible  if you have any conflicts and will not be able to participate .  we appreciate your support of the associate / analyst program .  beth miertschin\",0\n\"Subject: december 22 - srrs decommissioning notification  srrs decommissioning notification  we are one @ enron  effective friday december 22 , 2000 , you will have a new security request  database :  in the past , enron corporate / north american users have used the security  resource request system ( srrs ) lotus notes database for their security  request needs including new hire / contractor / temporary access and  terminations . in response to the business reorganization , the it security and  controls group is working to streamline enron \u0001 , s security request structure  and create one single request database for all groups to use , erequest ,  located at http : / / itcentral . enron . com /  please click on the following link to retrieve the erequest training guide :  a great deal of effort has been put into this project to eliminate any  duplicate security requests in enron ' s global enterprise . when you attempt  to access the srrs through lotus notes on dec . 22 , you will find a link to  the new erequest system .  if you have additional questions regarding your new security request or if  you have any problems with the erequest system , please contact information  risk management at 713 . 853 - 5536 .  thank you  information risk management\",0\n\"Subject: re : fw : opportunities  vince  i will call you on monday . i understand that unexpected meetings are a  matter of life in today ' s world .  gerry  - - - - - original message - - - - -  from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ]  sent : friday , october 27 , 2000 3 : 12 pm  to : gsheble @ iastate . edu  cc : vince . j . kaminski @ enron . com  subject : re : fw : opportunities  gerry ,  i may have unexpected meeting ( s ) in the morning .  please , keep trying and i shall try to call you as well .  vince  \"\" sheble , g . b . \"\" on 10 / 27 / 2000 09 : 09 : 16 am  to : \"\" ' vince . j . kaminski @ enron . com ' \"\"  cc :  subject : re : fw : opportunities  vince  since we were not able to connect this morning , would you identify any  other  time as convenient for you ? should i try monday morning ?  thank you  gerry  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  gerald b . shebl ,  professor , electrical and computer engineering  director of complex adaptive systems program  1115 coover hall  ames , iowa 50011  voice : 515 . 294 . 3046  fax : 515 . 294 . 4263  email : gsheble @ iastate . edu  web : http : / / www . ee . iastate . edu / ~ sheble /  = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =\",0\n\"Subject: change of coordinates  dear friends and colleagues ,  effective immediately , i have returned to the university of  pennsylvania .  the usual automatically - generated contact info should appear below ;  please update your files .  best regards ,  frank  - -  francis x . diebold  department of economics  university of pennsylvania  3718 locust walk  philadelphia , pa 19104 - 6297  fdiebold @ mail . sas . upenn . edu  http : / / www . ssc . upenn . edu / ~ diebold  ( 215 ) 898 - 1507 telephone  ( 215 ) 573 - 4217 fax\",0\n\"Subject: invitations to presentation only  hi christie ,  when do you sleep ? 2 am , ugh !  ok , you were correct , my invitation was to those people within enron that the students talked with before interviewing competitors , and it was an invitation to the presentation only . i didn ' t think any of them would be invited to the dinner , and probably none will even come to the presentation . the invitation did elicit one request for the final report though , so maybe it wasn ' t a complete waste .  i didn ' t realize that the dinner had turned into a box visit . that sounds great . i wish the group could have made it to dinner before the first game , that would have made the whole slumming experience better . now they ' ll get the royal treatment at enron field . it ' ll be great .  vince invited 4 people from rice :  dennis w . loughridge , director of energy consortium ; lounghrid @ rice . edu  carrie miller , director of mba program ; cmiller @ rice . edu  deborah barrett , inst . communications , barrett @ rice . edu  dr . wil uecker , associate dean for executive education , uecker @ rice . edu  loughridge wrote back saying he ' ll come , i don ' t know about the others  here are the 6 students emails :  \"\" ritwik \\ ( ronnie \\ ) ghosh \"\" , \"\" ivy ghose \"\" , \"\" luigi calabrese \"\" , \"\" pravas sud \"\" , \"\" syed \\ ( farhan \\ ) iqbal \"\"  your 2 from rice makes a total of 12 from rice , i guess  let me know if you would like me to do anything else related to monday  look forward to seeing you then  ken\",0\n\"Subject: re : rabi de ' s sign on bonus  sorry vince i have been out of town . please give me a call tomorrow .\",0\n\"Subject: interview - thomas barkley 11 / 9 / 00  attached please find the resume , interview schedule , and evaluation form for  thomas barkley . thomas is interviewing on thursday , november 9 , 2000  beginning at 8 : 00 a . m . please contact me with any comments or concerns .  thank you ,  cheryl arguijo  staffing coordinator  713 - 345 - 4016  - thomasbarkley . pdf ,\",0\n\"Subject: re : summer work . .  jinbaek ,  thanks for your message .  we have a number of additional fascinating projects that you can work  on . as a matter of fact , it would be great to have you here earlier .  vince  \"\" jinbaek kim \"\" on 05 / 02 / 2001 05 : 18 : 32 am  to : , \"\" raghavan , suresh \"\"  , \"\" mesquita , ross \"\"  cc :  subject : summer work . .  long time no see ,  how have you been . . . must be busy and living a challenging life ?  i have been pretty busy too ,  to finish a project and write a paper , these days .  everything looks going ok for my summer internship .  i took necessary steps to work out of campus , and sent  signed contract to molly a week ago . .  here is what i am expecting to do in the summer .  please let me know if you have any change in mind .  actually , i wonder a little bit if dealbench changed its business model . . .  and maybe you got priority in something different  because it has been quite a while since we talked .  i ' d like to what ' s going on in dealbench team . . .  raghavan and ross ,  if we talk over phone it will be great !  dr . kaminski ,  if you think there is something else interesting to work with during the  summer ,  to both you and i , please let me know .  my interest is auction , market design , and simulation .  i am taking a financial engineering class , ( mostly on option pricing )  and working on electricity generator valuation problem based on  spark spread option .  all of you ,  let ' s keep in touch until we meet in june ! !  best regards ,  jinbaek  tentative work period : 6 / 4 - 8 / 4  1 . tasks :  1 ) survey on auctions : the state of art  single - item auction , multi - unit auction , sequential auction ,  multi - attribute auction , combinatorial auction  - theoretical  - experimental  - algorithmical  2 ) deal bench ' s auction model analysis  2 . deliverables :  1 ) 3 presentations :  - lst presentation : around 6 / 30 : on different auction types and researches  - 2 nd presentation : around 7 / 15 : the state of art in auction studies  - 3 rd presentation : around 8 / 1 : deal bench ' s model analysis  2 ) report :  summary of auction study in laymen ' s term  deal bench ' s model analysis\",0\n\"Subject: hedging lng volumes  stinson / vince ,  i think this is important to know .  regards ,  sandeep .  - - - - - - - - - - - - - - - - - - - - - - forwarded by sandeep kohli / enron _ development on  03 / 28 / 2001 08 : 23 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  anshuman srivastav  03 / 28 / 2001 06 : 32 : 20 am  to : marc de la roche @ ect  cc : tushar dhruv @ enron , doug leach @ ect , mohan  gurunath / enron _ development @ enron _ development , rajesh  sivaraman / enron _ development @ enron _ development , shubh  shrivastava / enron _ development @ enron _ development , mukesh  tyagi / enron _ development @ enron _ development ( bcc : sandeep  kohli / enron _ development )  subject : hedging lng volumes  hi marc ,  dpc would like a swap to hedge its price expsoure on lng . we do understand  that there exists a basis risk between jcc ( the lng spa index ) and brent ( the  market index for the product ) and will bear such risk . we also appreciate the  fact that this is a financial product and irrespective of actual consumption ,  we will still have to bear the burden ( if any ) of the swap .  fuel - lng indexed to jcc ( closely correlated to brent futures )  period volumes ( tbtu ) volumes ( mt ) volumes ( jcc bbls )  january 2002 to december 2002 33 . 61 650 , 000 9 , 127 , 049  january 2003 to december 2003 48 . 63 940 , 000 13 , 207 , 496  january 2004 to december 2004 48 . 63 940 , 000 13 , 207 , 496  crude swap price : can we look at a ' dirty ' hedge and get a crude ( $ / bbl ) swap  price . like any other regular swap , this will be a monthly settle product .  the above conversions from mt to bbls are based on lng conversion factors .  ( 14 . 04 bbls / mt ) .  we also would like to understand the requirements of the credit group to put  this hedge in place . please indicate the process as well as the security  mechanisms to provide adequate credit support for the swap .  please call me ( 98210 38711 ) or rajesh ( 98201 88310 ) for any additional info .  regards ,  anshuman\",0\n\"Subject: re : hello  molly ,  kim watson would like us to bring jacob for another interview .  we can do it later this week .  vince  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 05 / 01 / 2001  02 : 22 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : kimberly watson / enron @ enronxgate on 05 / 01 / 2001 09 : 17 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : hello  hi vince ,  if you are still interested in bringing back this gentleman back for another  interview , i would very much like to meet with him . sean talked with him  when you brought him in a few weeks ago and he thought it would be a good  idea for me to meet with him so we can compare thoughts .  thanks , kim .  - - - - - original message - - - - -  from : kaminski , vince  sent : monday , april 16 , 2001 1 : 21 pm  to : watson , kimberly  cc : krishnarao , pinnamaneni ; kaminski , vince  subject : re : hello  kim ,  this is a letter from one of the job applicants who works for pros .  it seems that the system they develop for williams  is more a scheduling system .  would you like to ask him to come back for another interview ,  to get more information out of him ?  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 16 / 2001  01 : 18 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  \"\" jacob y . kang \"\" on 04 / 11 / 2001 11 : 18 : 44 pm  to : vince . j . kaminski @ enron . com  cc :  subject : re : hello  dear vince :  it was so nice meeting and talking with you too . i did  not take any pen back , i lost my pen too somewhere in  enron .  as i mentioned to you , after i got my ph . d in 1999 , i  have been working two years as lead scientist and  science manager in energy division at pros revenue  management inc . in houston .  i developed and implemented the mathematical models  for trading optimization system and firm  transportation optimization system .  the trading optimization system becomes the most  popular product in the industry this year . duke energy  just signed the contract to buy this product  yesterday . conoco and williams also signed the  contracts for it . according to pros sales department ,  the potential marketer to buy this product exceeds 15  companies in one or two years .  enron is the ideal place for me to continue my  research and system developing efforts to combine  revenue management with risk management . i am  confident that i can make significant contributions to  enron in this area .  i would like to thank you again for giving me this  opportunity to come to enron for this interview . i am  looking forward to having the opportunity to work in  enron .  sincerely yours  jacob  - - - vince . j . kaminski @ enron . com wrote :  > jacob ,  >  > it was nice meeting you . did take by any chance  > my pen ? if not , i apologize .  >  > vince  >  do you yahoo ! ?  get email at your own domain with yahoo ! mail .  http : / / personal . mail . yahoo . com /\",0\n\"Subject: pozdrowienia  piotr ,  dziekuje za wiadomosc . bede prawdopodobnie w londynie  w koncu wrzesnia . ciesze sie , ze wszystko idzie  pomyslnie .  odezwij sie , jesli bedziesz przyjezdzal do stanow .  rozmawialem ostatnio z twoim kolega , avi hauser .  wicek  wincenty kaminski  10 snowbird  the woodlands , tx 77381  phone : ( 281 ) 367 5377 ( h )  ( 713 ) 853 3848 ( o )  cell : ( 713 ) 898 9960  ( 713 ) 410 5396 ( office mobile phone )\",0\n\"Subject: professor bambos ' visit to enron on monday , august 21 st  vince / stinson :  i have made the following appointments for professor bambos :  monday , august 21 st  9 : 00 am jim fallon  2 : 00 pm john echols  john echols ' assistant would like me to send her an email concerning the  subject / reason for the visit with john .  please let me know .  thanks !  shirley\",0\n\"Subject: flat screens  hello ,  we are still in need of flat screens .  we need two for trisha tlapek and two for michael sergeev .  their locations are eb 3132 b and eb 3131 b .  we have been waiting for these screens for some time now .  will you please provide me with the e . t . a .  thanks  kevin moore  - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 01 / 05 / 2000 01 : 08  pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  kevin g moore  12 / 15 / 99 10 : 38 am  to : lyn malina / hou / ect @ ect  cc :  subject : flat screens  e . t . a .  thanks  kevin moore\",0\n\"Subject: re : christmas basket list  goodmorning ,  this is the last e - mail regarding christmas baskets .  here is a detailed disussion for the baskets .  thanks  kevin moore  - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 12 / 08 / 2000 10 : 41  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  kevin g moore  12 / 07 / 2000 01 : 55 pm  to : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , mike a  roberts / hou / ect @ ect  cc :  subject : re : christmas basket list  here is the completed list for the year 2000  total $ 1470 . 00  thanks  kevin moore  kevin g moore  12 / 05 / 2000 10 : 56 am  to : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , mike a  roberts / hou / ect @ ect , jose marquez / corp / enron @ enron , stinson  gibner / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , anita dupont / na / enron @ enron  cc :  subject : re : christmas basket list  here is the updated list that we have for christmas .  the orders will be placed on dec . 12 th .  the orders will arrive at the enron building dec . 19 th . and all outside orders  will arrive before dec . 22 nd .  please inform , if this is okay .  thanks  kevin  moore  i will discuss cost with vince after meeting with bill on friday .  kevin g moore  12 / 01 / 2000 09 : 26 am  to : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , mike a  roberts / hou / ect @ ect , jose marquez / corp / enron @ enron , stinson  gibner / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , anita dupont / na / enron @ enron  cc :  subject : christmas basket list  hello everyone ,  we are nearing the time to get the baskets and other christmas tokens sent  out .  as in every year , we do take the time to send tokens of appreciation  for services rendered , or share the christmas sprit with those we feel  worthty .  here is the list that i have already , approved by vince .  if there are any additions please inform me a . s . a . p .  the deadline is december 12 th , as i will be meeting with the  owner of floral events to confirm the order and treat him to  lunch for all the great work he has provided for me .  thanks  kevin moore  please note : i will be out on vacation and all orders will already have been  placed  with the delivery date on december 19 th . the day of my return ,  therefore if any problems occur i will have enough time to solve them .\",0\n\"Subject: tanya ' s trip to stanford  shirley ,  i will be out of the office 10 / 16 / 00 - 10 / 23 / 00 .  i will attend credit modeling classes at stanford on 10 / 16 trough 10 / 20 .  10 / 23 / 00 i ' take as a vacation day .  tanya .\",0\n\"Subject: re : var for cob 2 nd aug 2000  hi vince ,  i have sent a mail to andreas with a full list of all the assumed units  within our model . he has sent some historical  data for cocoa beans and noticed that they were being quoted in gbp / mt so  even currency units seem to be important .  thank you for pointing this out ,  kirstee  vince j kaminski  04 / 08 / 2000 15 : 45  to : kirstee hewitt / lon / ect @ ect  cc : vince j kaminski / hou / ect @ ect , cantekin dincerler / hou / ect @ ect , grant  masson / hou / ect @ ect  subject : re : var for cob 2 nd aug 2000  hi kirstee ,  thanks again for all your work on mg . one think to double check is units .  please , make sure that the prices are quoted in the same units our positions  come in .  one potential source of confusion arises from the fact that we are dealing  with different  cultures ( metric system vs . english measures ) .  vince  enron capital & trade resources corp . - europe  from : kirstee hewitt 08 / 03 / 2000 11 : 31 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : var for cob 2 nd aug 2000  hi vince ,  i was waiting for a comment about the email below before sending it to the  full mailing list . basically it suggests that the  copper option position may well have increased the var by more than $ 500 , 000 .  however , given that the portfoilo has also  changed from the lst of august it is difficult to asses the actual change due  to the option only .  regards  kirstee  - - - - - - - - - - - - - - - - - - - - - - forwarded by kirstee hewitt / lon / ect on 03 / 08 / 2000  17 : 29 - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron europe  from : kirstee hewitt 03 / 08 / 2000 16 : 29  to : cantekin dincerler / hou / ect @ ect , grant masson / hou / ect @ ect  cc :  subject : var for cob 2 nd aug 2000  hi all ,  the cu option position has entered the mg books for the 2 nd aug . the delta is  35299 $ / mt for dec 2000 . the cu var has gone up  from $ 2 , 245 , 000 to $ 3 , 306 , 000 . i estimated that the portfolio for the lst  would increase to approx $ 3 , 039 , 000 so this seems sensible .  the overall var change is from $ 4 , 780 , 796 to $ 5 , 991 , 569 . again , the estimate  for the lst aug was for an increase in var to ~ $ 5 , 476 , 000 .  all estimates were based on a delta of 32 , 0004 / dmt .  there has also been some increase in the var for aluminium which will effect  the overall total .  a summary is as follows :  regards ,  kirstee\",0\n\"Subject: numbers for sharad agnihotri  hi dale ( i would also like to arrange for a direct reporting line to  me for sharad .  regards ,  anjam  x 35383  p . s . kate : i have attached the agencies terms and conditions below :  - - - - - - - - - - - - - - - - - - - - - - forwarded by anjam ahmad / lon / ect on 05 / 07 / 2000 16 : 21  - - - - - - - - - - - - - - - - - - - - - - - - - - -  enron capital & trade resources corp .  from : alex blair  05 / 07 / 2000 15 : 29  to : \"\" ' anjam ahmad ' \"\"  cc :  subject : numbers  anjam ,  ? ? ? ? ? ? ? as requested please find enclosed details on sharad ' s numbers :  ? ? ? ? ? ? ? basic salary : o 40 , 000  ? ? ? ? ? ? ? car allowance : o 3 , 500  ? ? ? ? ? ? ? ( paid in cash )  ? ? ? ? ? ? ? annual bonus : ol 3 , 000 ( this bonus was paid for ? ? ? ? ? ? ?  99 - 00 ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 8 mths work april - dec )  total o 56 , 500  sharad has been informed that his bonus payments for year 00 - 01 will be  floored at o 25 , 000 . ? sharad ' s expectations therefore are to receive a base  salary of between o 57 . 5 - o 60 k plus bonus .  i hope this is of use and ask that if you have any questions that you do not  hesitate to call .  alex blair  senior consultant  alex . blair @ alexmann . com  tel : 0207 891 6671  fax : 0207 905 1313  web :  \"\" the alexander mann group has a stated policy for the use of electronic  mail which is rigorously enforced throughout the group . the contents of  this e mail should meet the requirements of the policy - if you would  like further details please forward this message to info @ alexmann . com  or call 0207 242 9000 .  the information contained in this electronic mail message is  confidential . it is intended solely for the use of the individual or  entity to whom it is addressed and others authorised to receive it . if  the reader of this message is not the intended recipient , you are hereby  notified that any use , copying , dissemination or disclosure of this  information is strictly prohibited . \"\"\",0\n\"Subject: new employee  shirley :  don ' t panic , but we have a new employee , chonawee supatgiat , who is starting  on feb . 8 th ( yes , today ) . sorry about the short notice , but he just  accepted on the 7 th at 5 p . m . he will be primarily supporting ebs ( enron  broadband services ) and reporting to ravi , but we will need to find a spot  for him on the 19 th floor . he can even use my office temporarily if needed  since i have a desk on 44 as well .  i ' ll talk to you about the specifics in the morning .  thanks ,  - - stinson\",0\n\"Subject: re : petrochem desk  yes , i will have kate get involved and talk to christian to get details .  vasant  - - - - - original message - - - - -  from : kaminski , vince  sent : monday , april 23 , 2001 9 : 29 am  to : shanbhogue , vasant  cc : kaminski , vince  subject : petrochem desk  vasant ,  it seems we have to help them . can kate help  on this project ?  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 23 / 2001 09 : 28 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  nelson neale @ enron  04 / 20 / 2001 10 : 29 am  to : vince j kaminski / hou / ect @ ect , vasant shanbhogue / enron @ enronxgate  cc :  subject : petrochem desk  i had a chance to speak with christian lebroc this morning with regard to curve building for petrochemicals . as it turns out , christian left rac in april and joined the petrochem desk as a trader . previous efforts at construction of a forward curve by the group have focused on intuition or swags . unfortunately , the group had a rough p & l year with at least some of the blame directed toward the forward curve or lack thereof . when asked about the fundamentals group , christian indicated that they ' d only been around about 3 - 4 months and are not yet well - suited to curve building . john nowlan is indeed the head of the group .  from a timing perspective , i told christian that it would probably take at least 6 - 8 weeks to develop a curve , especially considering the need to understand the key market drivers / fundamentals . as was suggested yesterday during our meeting , a strong relationship between petrochemicals and a nymex component ( e . g . , crude oil ) would provide a great beginning point - - we could then potentially strengthen / augment this relationship with other key factors ( e . g . , supply and demand terms ) borne out of our market research .  nelson \",0\n\"Subject: ljm model  ryan :  this is the updated spreadsheet for pricing the ljm options disregarding any  credit issues . it produces exactly the same results as before . the only  difference tis the place it gets the model ' s c code . i am placing all the  code related to this deal on a specific directory on the \"\" o \"\" drive now .  please use this version on future pricing . i will delete the old code .  thanks  paulo issler\",0\n\"Subject: re : probability question from vince ' s article  thank you , michael ! i ' m forwarding your answer to vince kaminski , and thank  you for reading !  sam smith  5 - 8322  enron energy services  from : michael kim @ ees 08 / 28 / 2000 02 : 50 pm  to : william . smith @ enron . com  cc :  subject : probability question from vince ' s article  answer is 0 . 2344  it ' s been awhile since i studied probability . i think this is a conditional  probability problem .  thank you .  mike kim\",0\n\"Subject: re : lunch  super . jestesmy umowieni .  juliusz  vince j kaminski  12 / 14 / 2000 11 : 06 am  to : julius zajda / lon / ect @ ect  cc :  subject : re : lunch  juliusz ,  wtorek jest najlepszym dniem .  vince  julius zajda  12 / 14 / 2000 10 : 18 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : lunch  przepraszam , ze sie tak dlugo nie odzywalem , ale musialem znalezc sobie  mieszkanie , przeprowadzic sie i kupic jakies meble . czy lunch w przyszlym  tygodniu odpowiadalby panu ? mi pasuje kazdy dzien oprocz czwartku .  juliusz\",0\n\"Subject: research group , recruiting  celeste ,  i attach some brief job candidate descriptions for the types of people we are  looking for at the bs / ms level .  osman sezgen ( supporting ees ) and p . v . krishnarao ( supporting ees , ebs , and  gpg ) both said that they are willing to help in interviewing , recruiting , or  reviewing resumes . i also would make myself available ( ebs , ena ) and  would be especially willing to help at the schools i attended , caltech and  rice ( both on your target list ) .  let us know what we can do to help .  best regards ,  - - stinson\",0\n\"Subject: schedule and more . .  dr . kaminski ,  i think i ' ll be able to start work from the last week of may ,  but not from monday ,  probably , i ' ll be able to work from 5 / 30 ( wed ) .  will it be good ? i know it is not that much earlier than i mentioned . . 6 / 4  i am sorry .  and actually , there is an e - business conference at haas school of business ,  organized by my advisor  could you distribute the link and the attached invitation letter to groups  interested in e - business and especially procurement ?  the link is as following .  i am afraid you might forgot this i told you in the last email . . .  my advisor ( arie segev at haas school of business ; segev @ haas . berkeley . edu )  wants me to ask whether you have any idea on joint research with him  during the summer , while i am staying there .  his interest is in e - business . . ( what else . . ? )  and has expertise in e - procurement system and marketplace . . .  xml based standard such as obi , cxml , xcbl , rosettanet , biztalk . .  system interoperability study , auction and negotiation , workflow system ,  e - catalog management , digital signature , edi , etc etc . . .  many technical aspects of e - business . . .  he wants to do some kind of technical case study  that is beneficial for both enron and him .  he may travel one or two times to houston to have a meeting during the  summer .  ( and to be frankly , this will be good for me too ,  because i can have a meeting for my dissertation while he is in houston . . )  could you think about the possibility of joint research , with him ?  thank you . .  sincerely ,  jinbaek  - fcp - invite . pdf\",0\n\"Subject: re : message from ken rice  vince :  thanks for returning this call . i guess it helps if i provide the contact  information !  tom limperis  517 - 423 - 5617  thanks !  dorothy dalton  office of the chairman  enron broadband services  1400 smith street , eb 4505  houston , tx 77002  713 - 853 - 6724 - direct  713 - 853 - 9469 - fax  vince j kaminski @ ect  05 / 02 / 01 09 : 42 am  to : dorothy dalton / enron communications @ enron communications @ enron  cc : vince j kaminski / hou / ect @ ect , vasant shanbhogue / enron @ enronxgate  subject : re : message from ken rice  dorothy ,  no problem . please , cc - mail me  tom ' s number . one of the members of the group has a phd in  computer science and he will join me for the call .  vince  from : dorothy dalton @ enron communications on 05 / 01 / 2001 08 : 53 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : message from ken rice  vince :  ken rice received a call through a friend ' s referral from dr . tom limperis ( a  professor at the university of michigan ) . dr . limperis has developed a  statistical database management system he would like to show enron . ken  would like you to return this call on his behalf . he feels that you are  probably the only person who will understand and be able to determine if  enron should have an interest .  do you mind returning this call ? please let me know .  thanks !  dorothy dalton  office of the chairman  enron broadband services  1400 smith street , eb 4505  houston , tx 77002  713 - 853 - 6724 - direct  713 - 853 - 9469 - fax\",0\n\"Subject: re : exploration data as the root of the energy ( oil ) supply chain  and consulting  john ,  congratulations on a career move .  yes , we were contacted regarding geophysical data gathering / transmission  project .  we asked our geophysicists for help and are shooting for  a meeting on thursday to run our ideas by them .  vince  from : john bloomer @ enron communications on 10 / 10 / 2000 10 : 20 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : exploration data as the root of the energy ( oil ) supply chain and  consulting  good morning vince :  1 ) we met with some geophysical data gathering / transmission people last  week . i observed that there is an opportunity to get in the early steps of  the ( oil exploration ) energy supply chain - we can get at the key data  driving oil drilling earlier than anyone else by extending into this area of  broadband networking - to build a way to hedge oil and other energy trades .  i asked adler or reichardt to present the idea to your team for validation .  have they contacted you yet ?  2 ) i ' m converting to consultant - i ' ve had a great year here but need to get  back north more often ( family ) . i will be converting to consultant status  starting next week . do not hesitate to call me if there is anything i can do  for you or your team to help out .  john bloomer cell 610 574 3945\",0\n\"Subject: rendez - vous reporter : sunday 3 rd september 2000  > sunday 3 rd september 2000  >  > the monte carlo rendez - vous reporter from reactions , in association with  > guy carpenter [ http : / / www . guycarp . com ] . simply click on the link next to  > each headline to read the full story .  >  > top stories of the day :  >  > the only way is up for rates  > http : / / www . reactionsnet . com / conferences / viewstory . asp ? id = 659  >  > vox pops : testing the renewals air  > http : / / www . reactionsnet . com / conferences / viewstory . asp ? id = 660  >  > the view of the middleman  > http : / / www . reactionsnet . com / conferences / viewstory . asp ? id = 661  >  > new look rendez - vous  > http : / / www . reactionsnet . com / conferences / viewstory . asp ? id = 657  >  > please visit http : / / www . reactionsnet . com for all the latest news from the  > world ' s largest insurance and reinsurance conference .  >  > alternatively , you can read these stories on the official rendez - vous  > website at http : / / www . rvs - monte - carlo . com  >  >  > book of the industry :  >  > reinsurance  > fourth edition of professor robert l carter ' s industry - standard textbook .  > https : / / ecommerce . waterside . net / reactions / reins _ fourth . asp  >\",0\n\"Subject: dr . michelle foss - energy institute  christie ,  i am forwarding you a message i have received from the university of houston .  can you help them ? we have a very good relationship with the uoh .  vince  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 24 / 2001  05 : 14 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  aisha jamal on 04 / 23 / 2001 03 : 15 : 29 pm  please respond to aisha @ uh . edu  to : vkamins @ ect . enron . com  cc : mmfoss @ uh . edu  subject : dr . michelle foss - energy institute  dear mr . kaminski ,  i am writing to ask a favor for dr . michelle foss . as you know we will  be running our \"\" new era \"\" program from may 14 - may 25 th . dr . foss was  wondering if on may 22 nd ( between 1 : 30 pm and 4 : 00 pm ) , we would be able to  bring  our participants for a tour of your trading floor . at this time we will have  30 - 40 people , and since only 10 people maximum should really be on a  trading floor we need to have 4 companies among which to divide our  participants . at this time , we have a floor from coral energy , and are  working with duke ,  and i will be contacting mr . paul roberts to arrange for the reliant energy  trading floor . i was hoping very much that you would be able to direct  me to the right person to contact to arrange this tour . will this be a  possiblity ? i really appreciate your help very much . thank you !  best regards ,  aisha jamal  energy institute  713 - 743 - 4634\",0\n\"Subject: rice / enron finance seminar series  fyi !  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 03 / 19 / 2001  08 : 07 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  barbara ostdiek on 03 / 16 / 2001 03 : 33 : 59 pm  to : ostdiek @ rice . edu  cc :  subject : rice / enron finance seminar series  enron seminar series in finance  jones graduate school of management , rice university  paul schultz  university of notre dame  will give a seminar at the jones school on friday , march 30 , ?  ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? \u0001 & who makes markets \u0001 8  the seminar will begin at 3 : 30 in room 115 .  the paper will be made available shortly .\",0\n\"Subject: storage model security  stinson ,  i have added a time bomb and security file check to the model .  we are ready to release it to brad , and improve the model from his feed back .  zimin\",0\n\"Subject: re : meeting w kevin hannon  vince and stinson :  carol brown called and we have scheduled the meeting for 4 : 00 pm on  thursday , may 11 .  it will be in kevin ' s office at eb 4508 .  thanks !  shirley  stinson gibner  05 / 08 / 2000 04 : 42 pm  to : shirley crenshaw / hou / ect @ ect  cc :  subject : meeting w kevin hannon  shirley ,  could you call carol brown and set up a time for vince and i to meet with  kevin hannon later this week ?  thanks ,  stinson\",0\n\"Subject: e - mail and voicemail retention policy  as a reminder , ena \u0001 , s policy regarding retention of electronic mail , including  lotus notes mail , internet e - mail , cc : mail and voicemail is as follows :  message location maximum retention  inbox 30 days  message log / sent mail 30 days  trash rollover from inbox for 15 days  bulletin boards 30 days  folders / archives e - mails placed in folders or archives \u0001 ) one year  voicemail 90 days  e - mail and voicemail older than the maximum retention will be purged  automatically by it , which is responsible for monitoring compliance with this  policy . any exception to this policy requires approval by mark haedicke or  richard sanders .  mark frevert and mark haedicke\",0\n\"Subject: approval is overdue : access request for stephen . bennett @ enron . com  this request has been pending approval for 5 days and you are the  alternate . please click  approval to review and act upon this request .  request id : 000000000003991  approver : stinson . gibner @ enron . com  request create date : 10 / 3 / 00 12 : 31 : 22 pm  requested for : stephen . bennett @ enron . com  resource name : \\ \\ enehou \\ houston \\ common \\ research - [ read / write ]  resource type : directory\",0\n\"Subject: re : hi vince  hi jeff ,  no problem . as soon as we have an agreement in place ,  i shall start working with you .  vince  \"\" $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ \"\" on 01 / 10 / 2001 12 : 59 : 36 pm  please respond to \"\" $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ \"\"  to : vince . j . kaminski @ enron . com  cc :  subject : hi vince  hi vince .  here is my contact info :  jeff wesley  949 813 2241  jjw @ ziplip . com  jjw @ lokmail . net  i work with mri usa  and robertwalters uk  i also underwrite my own deals .  example of current accounts :  painewebber  merrill lynch  crowell weedon  current companies i work with include :  conedison energy  smud ( sacramento energy )  calpine energy  morgan stanley dean whitter  job orders sent :  chicago mercantile exchange  alcoa  cournerstone energy  i hope this makes it through the firewall !  my partner in london at robertwalters sent me a guy for you to browse . . . i ' ll  pop him over later .  thanks vince !  jeff  * get free , secure online email at http : / / www . ziplip . com / *\",0\n\"Subject: agenda for larry thorne ' s presentation and meetings , friday , may  4 th  attached is the agenda for larry thorne ' s presentation , friday ,  may 4 th .  i have scheduled vasant and krishna to take him to lunch . please let me  know where you would like to go and i will make reservations .  thanks !  shirley\",0\n\"Subject: raptors  here is the most recent version of the spreadsheet and the accompanying  assumptions .\",0\n\"Subject: re : faculty lunch  alison ,  i recommended inviting duane seppi and steven shreve . i would also invite  brian routledge .  i don ' t know him but heard many good things about him . kevin kindall may have  other recommendations .  vince  enron north america corp .  from : mary alison bailey 09 / 08 / 2000 05 : 04 pm  to : shirley crenshaw / hou / ect @ ect , vince j kaminski / hou / ect @ ect , kevin  kuykendall / hou / ect @ ect , kevin kuykendall / hou / ect @ ect  cc : kristin gandy / na / enron @ enron  subject : faculty lunch  kristin had said she was interested in a faculty lunch , and kevin said he  would host it . are there any professors you would recommend be invited ?  here is a list of finance faculty :  robert dammon rdl 9 @ andrew . cmu . edu 412 . 268 . 3696  richard green rgob @ andrew . cmu . edu 412 . 268 . 2302  david heath heath @ andrew . cmu . edu 412 . 268 . 2545  christine parlour parlourc @ andrew . cmu . edu 412 . 268 . 5806  brian routledge rout @ andrew . cmu . edu 412 . 268 . 7588  duane seppi ds 64 @ andrew . cmu . edu 412 . 268 . 2298  steven shreve shreve @ andrew . cmu . edu 412 . 268 . 8484  chester spatt cs 9 z @ andrew . cmu . edu 412 . 268 . 8834  christopher telmer telmerc @ andrew . cmu . edu 412 . 268 . 8838  stanley zin szoh @ andrew . cmu . edu 412 . 268 . 3700  *\",0\n\"Subject: 2 - survey / information email 5 - 7 - 01  current notes user :  to ensure that you experience a successful migration from notes to outlook , it is necessary to gather individual user information prior to your date of migration . please take a few minutes to completely fill out the following survey . when you finish , simply click on the ' reply ' button then hit ' send ' your survey will automatically be sent to the outlook 2000 migration mailbox .  thank you .  outlook 2000 migration team  full name :  login id :  extension :  office location :  what type of computer do you have ? ( desktop , laptop , both )  do you have a pda ? if yes , what type do you have : ( none , ipaq , palm pilot , jornada )  do you have permission to access anyone ' s email / calendar ?  if yes , who ?  does anyone have permission to access your email / calendar ?  if yes , who ?  are you responsible for updating anyone else ' s address book ?  if yes , who ?  is anyone else responsible for updating your address book ?  if yes , who ?  do you have access to a shared calendar ?  if yes , which shared calendar ?  do you have any distribution groups that messaging maintains for you ( for mass mailings ) ?  if yes , please list here :  please list all notes databases applications that you currently use :  in our efforts to plan the exact date / time of your migration , we also will need to know :  what are your normal work hours ? from : to :  will you be out of the office in the near future for vacation , leave , etc ?  if so , when ? from ( mm / dd / yy ) : to ( mm / dd / yy ) :\",0\n\"Subject: promotion  vince , i want to congratulate you on your promotion to managing director ! as  i scanned the list of people who were promoted , i was so pleased to see your  name on the list . as large as enron is , it is refreshing to see people like  you with incredible skill and talent receive deserving promotions . i have  certainly enjoyed working with you and the r & d team over the past year and  look forward to a successful 2000 as we break new ground for et & s . kim .\",0\n\"Subject: re : petronas benchmarking visit  fyi  the list of the delegates from petronas .  vince kaminski  - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 23 / 2001  01 : 21 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  khairuddinbmjaafar @ petronas . com . my on 01 / 22 / 2001 03 : 13 : 35 am  please respond to khairuddin _ mjaafar @ petronas . com . my  to : vince . j . kaminski @ enron . com  cc :  subject : re : petronas benchmarking visit  vince ,  here is the list of our delegates for your kind perusal :  1 . iqbal abdullah ( general manager ) ,  2 . nur azmin abu bakar ( head , risk assessment & controls ) ,  3 . zulkifli a rahim ( head , risk , measurement & systems )  4 . adnan adams ( head , special projects ) .  thanks .  regards ,  khairuddin\",0\n\"Subject: request submitted : access request for jeremy . waggenspack @ enron . com  you have received this email because you are listed as an alternate data  approver . please click  approval to review and act upon this request .  request id : 000000000005411  approver : stinson . gibner @ enron . com  request create date : 10 / 23 / 00 8 : 48 : 43 am  requested for : jeremy . waggenspack @ enron . com  resource name : \\ \\ enehou \\ houston \\ common \\ research - [ read / write ]  resource type : directory\",0\n\"Subject: * special notification * aurora version 5 . 5 release , what ' s new ?  iv  friends :  i spoken with most of you over the last few weeks regarding the new  version of aurora due to be released tomorrow . we ' ve broken a lot of  new ground with this version , and this version will serve as our  official launch into the eastern u . s . we ' ve worked closely with our  eastern customers , and responded to the needs of the market . some of  the enhancements :  aurora software modeling enhancements :  * energy storage - resources ( pumped hydro )  * market areas : no limit on number of areas  * transmission : congestion pricing .  * price caps  * risk analysis  * modeling enhancements via vb scripting : \"\" update data \"\" capability  general capabilities  * aurora ' s run time speed improved again .  * file transfers to epis  * interface enhancements  reporting enhancements  * marginal resource reporting  * resource operations reporting  * resource stacks detail consolidated  aurora databases  * east - central aurora database - - 25 market areas modeled with 11  market areas in new york iso .  * wscc aurora database - - updated ipp resources  * ercot aurora database - updated resources  * all databases updated to use the new modeling capabilities  as aurora continues to grow , and we meet the needs of the market , we  have made several procedural changes . we continue to offer free 7 - day  demos to those companies that want to take a look at the model , and get  a brief idea of how it thinks and feels . after that 7 - day demo period  we now offer either a discount for moving into a full license , or we  offer a 60 - day trial for $ 10 , 000 . 00 - - we also now offer more options  for the licensing of the model . annual licenses are priced as follows :  single user ( 1 user / 1 pc )  $ 33 , 000 . 00  limited - use ( 1 user / multiple pcs or multiple users / 1 pc )  $ 45 , 000 . 00  two - user ( 2 users / 2 pcs )  $ 55 , 000 . 00  site license ( unlimited users / pcs excluding affiliates )  $ 79 , 000 . 00  affiliate - site ( unlimited users / pcs including affiliates )  $ 99 , 000 . 00  for additional information , please contact me , and i ' ll speak with you  about how aurora can help you in your specific operations and projects .  v . todd wheeler  sales manager  epis , inc .  ( 503 ) 722 - 2023 tel . x 210  ( 503 ) 722 - 7130 fax  www . epis . com  todd @ epis . com  >  - what ' s new - version 5 . 5 information . doc\",0\n\"Subject: fwd : update  return - path :  received : from rly - yeo 2 . mx . aol . com ( rly - yeo 2 . mail . aol . com [ 172 . 18 . 151 . 199 ] )  by air - yeo 4 . mail . aol . com ( v 76 _ rl . 19 ) with esmtp ; fri , 20 oct 2000 14 : 52 : 34  - 0400  received : from postmaster . enron . com ( outbound 5 . enron . com [ 192 . 152 . 140 . 9 ] ) by  rly - yeo 2 . mx . aol . com ( v 76 _ rl . 19 ) with esmtp ; fri , 20 oct 2000 14 : 52 : 16 - 0400  received : from nahou - msmswolpx . corp . enron . com ( [ 172 . 28 . 10 . 37 ] ) by  postmaster . enron . com ( 8 . 8 . 8 / 8 . 8 . 8 / postmaster - 1 . 00 ) with esmtp id naao 9683 for  ; fri , 20 oct 2000 13 : 52 : 16 - 0500 ( cdt )  from : stinson . gibner @ enron . com  received : from ene - mtaol . enron . com ( unverified ) by  nahou - msmswolpx . corp . enron . com ( content technologies smtprs 4 . 1 . 5 ) with esmtp  id for  ; fri , 20 oct 2000 13 : 52 : 16 - 0500  subject : update  to : vkaminski @ aol . com  cc : vince . j . kaminski @ enron . com  x - mailer : lotus notes release 5 . 0 . 3 march 21 , 2000  message - id :  date : fri , 20 oct 2000 13 : 52 : 12 - 0500  x - mimetrack : serialize by router on ene - mtaol / enron ( release 5 . 0 . 3 ( intl ) | 21  march 2000 ) at 10 / 20 / 2000 01 : 48 : 43 pm  mime - version : 1 . 0  content - type : text / plain ; charset = us - ascii  vince ,  a quick update on job candidates :  1 ) nelson neale : relayed your request to norman , and told nelson that an  offer is in progress . did not mention specific numbers to him .  2 ) charles shen : left a message for him that we would get back to him next  week with details of an offer .  3 ) interviewed by phone tom barkley at thunderbird ( brought to our  attention by enron recruiters there ) . he looks very interesting so i am  trying to schedule a visit to enron for him . he will finish t - bird in  december ( mba ) and has a bachelors with honours in mathematics .  have a great weekend .  stinson\",0\n\"Subject: altos na gas model  kim , i know you have been interested in the development of a long term  natural gas model for use in the ets revenue management effort . i agree that  the ability to model various supply / demand scenarios for north america  should prove useful in ets business development efforts , and in particular ,  in predicting the impact of the new , large alaskan gas supplies on the n . a .  pipeline grid .  as you know , vince kaminski feels that a software product developed by dale  nesbitt ( marketpoint , inc . ) of los altos hills , ca . may be a good choice , and  one readily available in a relatively short time . marketpoint has proposed  that they work with us in our offices for a week of intensive training and  testing , so we can make a more informed decision before ordering the  software . they have proposed a charge of $ 12 , 000 , plus expenses , for the  one - week session , with that cost applied to the first year ' s subscription  price ( approx . $ 55 - 60 m / yr ) should we decide to go forward . the other  details ( timing , ene resources required , necessary it interface , etc ) still  need to be worked out , but i believe there is generally a consensus to  proceed with the test .  with my recent relocation to the clean fuels group , i will no longer be  responsible for the alaskan pipeline development . however , danny mccarty is  pulling together a team consisting of people from nng , nbp and elsewhere in  ets to push the project forward . i believe eric gadd will be playing a key  role as well . the decision on the long term gas model should appropriately  be made by the new project team .  i have attached a draft of the proposed marketpoint license agreement . it  has not yet been fully reviewed by legal ( or by shelley c . for the  \"\" affiliate \"\" issues ) .  let me know if i can provide any other background or assistance .  jng\",0\n\"Subject: power market research  i came across the attached report which margaret carson thought would be of  interest to you .  jennifer  - - - - - - - - - - - - - - - - - - - - - - forwarded by stephen thome / hou / ect on 04 / 03 / 2001 11 : 36  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  jessica burry  04 / 03 / 2001 10 : 29 am  to : theresa villeggiante / pdx / ect @ ect , mollie gustafson / pdx / ect @ ect , fredrik  eriksson / pdx / ect @ ect , crystal hyde / pdx / ect @ ect , angela cadena / pdx / ect @ ect ,  andy chen / pdx / ect @ ect , jim gilbert / pdx / ect @ ect , ed clark / pdx / ect @ ect , jeff  shields / pdx / ect @ ect , jim buerkle / pdx / ect @ ect , dave fuller / pdx / ect @ ect , laura  wente / hou / ect @ ect , jake thomas / hou / ect @ ect , christopher f calger / pdx / ect @ ect ,  michael etringer / hou / ect @ ect , chris lackey / pdx / ect @ ect , todd  perry / pdx / ect @ ect , jeffrey oh / pdx / ect @ ect , elliot mainzer / pdx / ect @ ect , jeff g  slaughter / pdx / ect @ ect , jonalan page / pdx / ect @ ect , stephen thome / hou / ect @ ect ,  terry w donovan / hou / ect @ ect , glenn surowiec / enron communications @ enron  communications , michael danielson / sf / ect @ ect , laird dyer / sf / ect @ ect , april  hrach / sf / ect @ ect , michael mcdonald / sf / ect @ ect  cc :  subject : power market research  - - - - - - - - - - - - - - - - - - - - - - forwarded by jessica burry / pdx / ect on 04 / 03 / 2001 08 : 37  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  christopher f calger  04 / 03 / 2001 08 : 11 am  to : jessica burry / pdx / ect @ ect  cc :  subject : power market research  pls send to my group  - - - - - - - - - - - - - - - - - - - - - - forwarded by christopher f calger / pdx / ect on  04 / 03 / 2001 08 : 19 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  from : chip schneider / enron @ enronxgate on 04 / 03 / 2001 10 : 02 am cdt  to : louise kitchen / hou / ect @ ect , christopher f calger / pdx / ect @ ect , w david  duran / hou / ect @ ect  cc :  subject : power market research  this piece from deutsche bank is good macro overview of electricity supply /  demand fundamentals . a little on the long side - 78 pages , but has some good  discussion on nerc ( north american electric reliability council regions ) ,  beginning on page 15 .\",0\n\"Subject: re : visit to houston  fyi  - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 01 / 29 / 2001  02 : 02 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -  nick bambos on 01 / 29 / 2001 10 : 54 : 27 am  to : stinson . gibner @ enron . com  cc :  subject : re : visit to houston  stinson ,  just a quick note to let you know that i am looking into it ,  trying to rearrange a couple of things . i ' d like giuseppe and  possibly eric to come with me , so i need to coordinate with  them too . we ' ve made some nice progress that i ' d like to present  and also integrate eric in the system .  i am targeting a friday around the end of february or begining  of march . i ' ll let you know soon of a few possibilities as they  stabilize here .  best ,  nick  stinson . gibner @ enron . com wrote :  >  > nick ,  >  > i hope things are going well and you are not staying too busy . we should  > start planning for your next trip to houston , as i ' m sure your schedule  > will be getting full very soon . perhaps you could give the people in  > enron broadband an overview of the areas of interest within your research  > group . i ' m sure we could also benefit from you views of how the current  > technology is evolving .  >  > are there certain dates which would potentially work for you ? please let  > me know by email or give me a call at 713 853 4748 .  >  > looking forward to talking with you .  >  > - - stinson\",0\n\"Subject: ees risk management presentations for october 25 .  please have your presentations to me by 10 am friday , october 20 , 2000 . it  takes a couple of days to get the materials back from the copy center . the  presentations have to be put in new binders this time and it takes most of a  day to put everything together in the binders . therefore , i have to have  the materials to the copy center by friday afternoon in order to get them  back by monday afternoon or tuesday morning . i will need most of tuesday to  get everything assembled in the binders . thus the necessity of having your  completed presentations by friday morning .  vince : basket options  binary ( digital ) options  krishna : barrier options  other complex structures  thanks for your help on this .  regards ,  anita\",0\n\"Subject: re : vacation  vince :  i just found out that it is friday , april 7 and not friday , march 31 st  that i want to take for vacation . is this alright ?  thanks !  shirley  vince j kaminski  03 / 08 / 2000 06 : 18 pm  to : shirley crenshaw / hou / ect @ ect  cc :  subject : re : vacation  shirley ,  no problem .  vince  shirley crenshaw  03 / 08 / 2000 03 : 56 pm  to : vince j kaminski / hou / ect @ ect  cc : kevin g moore / hou / ect @ ect , william smith / corp / enron @ enron  subject : vacation  vince :  i would like to take the following days as vacation :  wednesday , march 15 th  friday , march 31 st .  please let me know if this is ok with you .  thanks !  shirley\",0\n\"Subject: re : research and development charges to gpg  here it is !  - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 08 / 14 / 2000  07 : 47 am - - - - - - - - - - - - - - - - - - - - - - - - - - -  vince j kaminski  08 / 10 / 2000 02 : 25 pm  to : vera apodaca / et & s / enron @ enron  cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , pinnamaneni  krishnarao / hou / ect @ ect  subject : re : research and development charges to gpg  vera ,  we shall talk to the accounting group about the correction .  vince  08 / 09 / 2000 03 : 26 pm  vera apodaca @ enron  vera apodaca @ enron  vera apodaca @ enron  08 / 09 / 2000 03 : 26 pm  08 / 09 / 2000 03 : 26 pm  to : pinnamaneni krishnarao / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : research and development charges to gpg  per mail dated june 15 from kim watson , there was supposed to have occurred  a true - up of $ 274 . 7 in july for the fist six months of 2000 . reviewing july  actuals , i was not able to locate this entry . would you pls let me know  whether this entry was made , if not , when do you intend to process it .  thanks .\",0\n\"Subject: re : receipts from visit  jim ,  thanks again for the invitation to visit lsu .  shirley will fedex the receipts tomorrow .  vince  \"\" james r . garven \"\" on 02 / 08 / 2000 07 : 00 : 50 pm  to : vince j kaminski  cc :  subject : receipts from visit  dear vince ,  thanks again for taking the time to visit . ? both faculty and students got a  lot out of your presentations .  i have a favor to ask concerning the expense reimbursement process . ? can you  mail all travel and lodging receipts to my secretary joan payne at the  following address :  joan payne  department of finance  2163 ceba  louisiana state university  baton rouge , la ? 70803  thanks ,  jim garven  james r . garven  william h . wright , jr . endowed chair for financial services  department of finance  2158 ceba  e . j . ourso college of business administration  louisiana state university  baton rouge , la ? 70803 - 6308  voice ( 225 ) 388 - 0477 ? | ? fax : ( 800 ) 859 - 6361  e - mail : ? jgarven @ lsu . edu  home page : http : / / garven . lsu . edu  vita : http : / / garven . lsu . edu / dossier . html  research paper archive : http : / / garven . lsu . edu / research . html \",0\n\"Subject: re : enron case study update  wow ! all on the same day . that ' s super . thank you so very much . vince  is coming up to baylor on monday of next week and we will hash out our  question list then .  thanks  john  at 04 : 54 pm 11 / 6 / 00 - 0600 , you wrote :  > good afternoon john ,  >  > i just want to drop you a line to update you re : andy fastow . i have  > confirmed a one hour interview slot with mr . fastow in monday , december 4 th  > from  > 11 : 00 a . m . - noon . this is in addition to your schedule interviews with  > mr . lay and mr . skilling - outline below .  >  > if you have any questions , please do not hesitate to contact me at  > 713 - 853 - 5670 .  >  > regards ,  >  > cindy  >  >  > - - - - - forwarded by cindy derecskey / corp / enron on 11 / 06 / 2000 04 : 49 pm - - - - -  >  > cindy  > derecskey to : \"\" john martin \"\"  > cc : vince j  kaminski / hou / ect @ ect , christie patrick / hou / ect @ ect  > 10 / 31 / 2000 subject : re : enron case  study ( document link : cindy derecskey )  > 01 : 44 pm  >  >  >  >  >  > good afternoon john ,  >  > i hope things are well with you . i am writing to update you on the status  > of your meetings with andy fastow , ken lay and jeff skilling . i have  > arranged the following meeting dates and times with ken lay and jeff  > skilling , ( i am still trying to work with andy fastow ' s schedule ) :  >  > jeff skilling  > december 4 th  > 2 : 00 - 3 : 00 p . m .  >  > ken lay  > december 4 th  > 3 : 30 - 4 : 30 p . m .  >  > also , i will attempt to schedule the meeting with andy fastow for december  > 4 th for convenience - this will also allow us to possibly schedule  > additional meetings for the 5 th ( as needed ) . i will let you know as soon  > as i ' m successful .  >  > regards ,  >  > cindy derecskey  > university affairs  > enron corp .  >  >  >  >  >  john d . martin  carr p . collins chair in finance  finance department  baylor university  po box 98004  waco , tx 76798  254 - 710 - 4473 ( office )  254 - 710 - 1092 ( fax )  j _ martin @ baylor . edu  web : http : / / hsb . baylor . edu / html / martinj / home . html\",0\n\"Subject: re : interest  david ,  please , call shirley crenshaw ( my assistant ) ,  extension 5 - 5290 to set it up .  vince  david p dupre  06 / 15 / 2000 05 : 18 pm  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : interest  what time ( s ) are you available over the next few days ?  thanks  david  3 - 3528  vince j kaminski  06 / 15 / 2000 05 : 16 pm  to : david p dupre / hou / ect @ ect  cc : vince j kaminski / hou / ect @ ect  subject : re : interest  david ,  please , stop by to chat about it for a few minutes .  vince  david p dupre  06 / 15 / 2000 11 : 57 am  to : vince j kaminski / hou / ect @ ect  cc :  subject : re : interest  may we meet to discuss my interest in joining your group ?  i have a strong quantitative discipline and am highly numerate .  thanks  david 3 - 3528  - - - - - - - - - - - - - - - - - - - - - - forwarded by david p dupre / hou / ect on 06 / 15 / 2000 11 : 53  am - - - - - - - - - - - - - - - - - - - - - - - - - - -  to : david p dupre / hou / ect @ ect  cc :  subject : re : interest  vince kaminski\",0\n\"Subject: news : aurora 5 . 2 update  aurora version 5 . 2  - the fastest model just got faster -  epis announces the release of aurora , version 5 . 2  aurora the electric market price forecasting tool is already  legendary for power and speed . we ' ve combined a powerful chronological  dispatch model with the capability to simulate the market from 1  day to 25 + years . add to that a risk analysis section , powered by user  selectable monte carlo & / or latin hypercube modeling , enough  portfolio analysis power to please the toughest critic , & inputs and  outputs from standard excel & access tables and you ' ve got one of most  powerful tools in the market .  just a few months ago we expanded our emissions modeling  capabilities , added our quarterly database update , increased the speed  of the entire model , and made  but that wasn ' t enough .  we ' ve done it again . some of the operations that we ' ve  included . . .  two new reporting enhancements .  the first is marginal reporting  for fuels , resources and groups of resources .  the second is the ability to  display resource stack information in graphical and dispatch order form .  other enhancements include dual fuel modeling , improved  transmission modeling , greater access to hourly results , and the ability  to model monthly emission rates . moreover , the databases for  central and eastern , texas , and western markets have been updated to use  the new modeling capabilities .  we continue to make aurora easier to use . this version enhances  user control over modeling , editing inputs , and viewing of aurora  output . clients desiring to exploit the power of aurora now have  greater control over the inputs and outputs through vb scripting in  aurora . the new \"\" update data \"\" capability provides a means to  universally change any data element .  attached is more information on the fastest and most flexible  tool of its kind .  for additional information , please visit our website ( www . epis . com ) or  contact our sales department at ( 503 ) 722 - 2023 . ask about our special  7 - day demo !  v . todd wheeler  sales manager  epis , inc .  ( 503 ) 722 - 2023 tel .  ( 503 ) 722 - 7130 fax  www . epis . com  todd @ epis . com  > >  - what ' s new - version 5 . 2 information . doc  - technical information aurora v 5 - 2 . doc\",0\n"
  },
  {
    "path": "ML/Projects/spam_classifier_naive_bayes/naivebayes.py",
    "content": "\"\"\"\nNaive Bayes Classifier Implementation from scratch\n\nTo run the code structure the code in the following way:\n    X be size: (num_training_examples, num_features)\n    y be size: (num_classes, )\n\nWhere the classes are 0, 1, 2, etc. Then an example run looks like:\n    NB = NaiveBayes(X, y)\n    NB.fit(X)\n    predictions = NB.predict(X)\n\nProgrammed by Aladdin Persson <aladdin.persson at hotmail dot com>\n*    2020-04-21 Initial coding\n\n\"\"\"\nimport numpy as np\n\n\nclass NaiveBayes:\n    def __init__(self, X, y):\n        self.num_examples, self.num_features = X.shape\n        self.num_classes = len(np.unique(y))\n        self.eps = 1e-6\n\n    def fit(self, X):\n        self.classes_mean = {}\n        self.classes_variance = {}\n        self.classes_prior = {}\n\n        for c in range(self.num_classes):\n            X_c = X[y == c]\n\n            self.classes_mean[str(c)] = np.mean(X_c, axis=0)\n            self.classes_variance[str(c)] = np.var(X_c, axis=0)\n            self.classes_prior[str(c)] = X_c.shape[0] / X.shape[0]\n\n    def predict(self, X):\n        probs = np.zeros((self.num_examples, self.num_classes))\n\n        for c in range(self.num_classes):\n            prior = self.classes_prior[str(c)]\n            probs_c = self.density_function(\n                X, self.classes_mean[str(c)], self.classes_variance[str(c)]\n            )\n            probs[:, c] = probs_c + np.log(prior)\n\n        return np.argmax(probs, 1)\n\n    def density_function(self, x, mean, sigma):\n        # Calculate probability from Gaussian density function\n        const = -self.num_features / 2 * np.log(2 * np.pi) - 0.5 * np.sum(\n            np.log(sigma + self.eps)\n        )\n        probs = 0.5 * np.sum(np.power(x - mean, 2) / (sigma + self.eps), 1)\n        return const - probs\n\n\nif __name__ == \"__main__\":\n    # For spam emails (Make sure to run build_vocab etc. to have .npy files)\n    X = np.load(\"data/X.npy\")\n    y = np.load(\"data/y.npy\")\n\n    NB = NaiveBayes(X, y)\n    NB.fit(X)\n    y_pred = NB.predict(X)\n\n    print(f\"Accuracy: {sum(y_pred==y)/X.shape[0]}\")\n"
  },
  {
    "path": "ML/Projects/text_generation_babynames/data/example_names.txt",
    "content": "Niela\nElia\nLeneth\nLey\nIra\nBernandel\nGelico\nMarti\nEdnie\nOzel\nMarin\nElithon\nMirce\nElie\nElvar\nDomarine\nArtha\nAudrey\nDavyd"
  },
  {
    "path": "ML/Projects/text_generation_babynames/data/names.txt",
    "content": "Mary\nAnnie\nAnna\nMargaret\nHelen\nElsie\nLucy\nDorothy\nMary\nMargaret\nRuth\nAnnie\nElizabeth\nHelen\nMary\nElsie\nAgnes\nAnna\nHelen\nLouise\nJean\nRuth\nAlice\nEsther\nEthel\nMargaret\nMarie\nMary\nElizabeth\nMargaret\nHelen\nAlice\nAnnie\nLouise\nMary\nMargaret\nAlice\nAnnie\nElizabeth\nHelen\nClara\nDorothy\nMartha\nAgnes\nEsther\nFrances\nJulia\nLillian\nMildred\nPauline\nMary\nAlice\nHelen\nAnna\nDorothy\nMargaret\nRuth\nElizabeth\nFrances\nKatherine\nMartha\nAnnie\nClara\nEmma\nHazel\nJulia\nMarie\nMinnie\nPauline\nMary\nHelen\nDorothy\nFrances\nRuth\nAlice\nAnna\nAgnes\nAnnie\nJulia\nLillian\nMargaret\nDaisy\nEdna\nEsther\nEvelyn\nFlorence\nKatherine\nLouise\nLucy\nMarie\nSally\nMary\nMargaret\nHelen\nFrances\nAlice\nOlga\nRuth\nClara\nDorothy\nAnna\nEdith\nFlorence\nMaggie\nRose\nSophie\nMary\nMargaret\nHelen\nMarie\nMartha\nRuth\nAnna\nGertrude\nJulia\nVirginia\nAlice\nElizabeth\nAnnie\nClara\nElsie\nEmma\nSarah\nStella\nVera\nMary\nMargaret\nDorothy\nBetty\nHelen\nMartha\nVirginia\nIrene\nElizabeth\nEmma\nMarie\nAgnes\nAnnie\nBarbara\nFrances\nGladys\nJean\nLouise\nAnn\nAnna\nEvelyn\nJosephine\nKatherine\nKathryn\nMinnie\nRuth\nVera\nMary\nMargaret\nHelen\nRuth\nMartha\nElizabeth\nVirginia\nFlorence\nAgnes\nDorothy\nAlice\nAnna\nEdith\nAnnie\nBetty\nElsie\nEthel\nIrene\nKatie\nRose\nFrances\nHazel\nKatherine\nLorraine\nPatricia\nMary\nDorothy\nAlice\nMargaret\nAnnie\nHelen\nElizabeth\nVirginia\nKatherine\nMildred\nAnna\nAgnes\nBessie\nBetty\nElsie\nEmma\nEsther\nJean\nJoan\nLillian\nRuth\nThelma\nMary\nHelen\nAlice\nAnna\nMargaret\nMartha\nLouise\nKatherine\nAnnie\nDorothy\nElizabeth\nEmma\nEsther\nMarie\nRuth\nBetty\nClara\nEvelyn\nFrances\nSarah\nMary\nElizabeth\nAnna\nDorothy\nHelen\nRuth\nAnnie\nMargaret\nFrances\nMarie\nFlorence\nAgnes\nAlice\nBetty\nEdna\nElsie\nEthel\nVirginia\nJean\nJessie\nJulia\nNellie\nOlga\nPauline\nSarah\nMary\nElizabeth\nMargaret\nBetty\nAnna\nDorothy\nMarie\nRuth\nAlice\nPatricia\nIrene\nMildred\nEsther\nIda\nOlga\nAnnie\nClara\nMarjorie\nPauline\nVera\nMary\nMargaret\nAgnes\nBetty\nLillian\nMildred\nEsther\nHelen\nRuth\nAnna\nDorothy\nEmma\nEvelyn\nNorma\nSarah\nFlorence\nLouise\nMarie\nPauline\nAlice\nAnnie\nBeatrice\nElena\nElsie\nIrene\nJean\nKatherine\nVirginia\nMary\nMargaret\nAlice\nAnna\nLucy\nMartha\nEsther\nHelen\nElizabeth\nFlorence\nGladys\nIrene\nRuth\nGrace\nHazel\nJessie\nJulia\nMildred\nPatricia\nPauline\nClara\nLaura\nMarian\nMarie\nSophie\nMary\nDorothy\nHelen\nAlice\nBetty\nElizabeth\nFlorence\nBarbara\nAnna\nAnnie\nMargaret\nRuth\nAgnes\nElsie\nEmma\nJune\nKatherine\nLena\nEsther\nEvelyn\nIrene\nLaura\nLillian\nLouise\nOlga\nSophie\nMary\nMargaret\nAnnie\nDorothy\nAlice\nAnna\nHelen\nElizabeth\nIrene\nMarie\nBetty\nEmma\nElsie\nShirley\nSophie\nAgnes\nBarbara\nClara\nEdna\nFlorence\nFrances\nJulia\nKatherine\nLillian\nMabel\nMartha\nRuth\nMary\nMargaret\nBetty\nDorothy\nAgnes\nEva\nJulia\nElizabeth\nHelen\nMartha\nAlice\nEsther\nFrances\nIrene\nMabel\nNancy\nPauline\nBertha\nEvelyn\nFlorence\nJosephine\nRuth\nVirginia\nMary\nAlice\nHelen\nAnna\nMarie\nDoris\nElizabeth\nMartha\nEsther\nAgnes\nBarbara\nBetty\nDolly\nEvelyn\nJean\nKatherine\nMargaret\nNancy\nPauline\nVirginia\nCarrie\nClara\nDorothy\nFlorence\nJane\nJoan\nLillian\nPatricia\nSophie\nMary\nAlice\nAnnie\nRuth\nDorothy\nElizabeth\nAgnes\nHelen\nBetty\nChristine\nEvelyn\nGrace\nMargaret\nAnna\nClara\nIrene\nLena\nMartha\nMary\nMargaret\nAlice\nMartha\nAnna\nClara\nElizabeth\nLouise\nAnnie\nDorothy\nFrances\nNancy\nRuth\nCarrie\nEleanor\nHelen\nMarjorie\nCecelia\nKatherine\nMarie\nVirginia\nElena\nEsther\nEthel\nEvelyn\nJean\nLaura\nShirley\nMary\nMartha\nAgnes\nMargaret\nBetty\nElizabeth\nMarie\nAlice\nHelen\nLouise\nLucy\nPatricia\nShirley\nIrene\nLillian\nBarbara\nDorothy\nEvelyn\nFrances\nRuth\nThelma\nAnn\nAnna\nBertha\nClara\nJoan\nLena\nLois\nMildred\nPauline\nRose\nSally\nVirginia\nMary\nHelen\nElizabeth\nIrene\nBetty\nMargaret\nMartha\nPauline\nJosephine\nMarie\nAgnes\nJanet\nJoan\nLouise\nLucy\nAlice\nLillian\nMildred\nBertha\nEdith\nEsther\nEvelyn\nFlorence\nMaria\nRuth\nMary\nElizabeth\nMargaret\nAnna\nShirley\nAlice\nBarbara\nBetty\nHelen\nIrene\nNancy\nMartha\nVirginia\nDorothy\nLillian\nPatricia\nAgnes\nArlene\nCarol\nCharlotte\nEdith\nEvelyn\nFlora\nMarie\nRose\nRuth\nSally\nWilma\nMary\nElizabeth\nAnna\nDorothy\nPatricia\nAgnes\nAlice\nMargaret\nNancy\nShirley\nVirginia\nCarol\nEvelyn\nJoan\nKatherine\nMarjorie\nNellie\nHelen\nJacqueline\nJulia\nLucy\nMartha\nNora\nRuth\nTheresa\nAmelia\nChristine\nDolores\nElsie\nEsther\nGeraldine\nLydia\nMarie\nMary\nMargaret\nCarol\nBarbara\nVirginia\nBetty\nAnna\nDonna\nPauline\nShirley\nAnnie\nEdith\nIrene\nLucy\nMarie\nMartha\nPatricia\nSophie\nElizabeth\nGladys\nLois\nNancy\nAgnes\nAnn\nChristine\nDoris\nFlorence\nGrace\nHelen\nJoan\nJune\nSally\nSylvia\nMary\nAlice\nCarol\nMarie\nPatricia\nBetty\nBarbara\nShirley\nAnnie\nEvelyn\nNancy\nRuth\nVirginia\nBeverly\nFlorence\nKatherine\nMarjorie\nRose\nAgnes\nDorothy\nElizabeth\nGertrude\nHelen\nJean\nLillian\nLouise\nMargaret\nBernice\nGrace\nJosephine\nJoyce\nRosemary\nSandra\nSylvia\nMary\nElizabeth\nMartha\nAlice\nCarol\nHelen\nJean\nRuth\nVirginia\nPatricia\nBarbara\nKaren\nMargaret\nPhyllis\nAnna\nDorothy\nFrances\nJosephine\nSally\nElsie\nEmily\nLorraine\nMarilyn\nNatalia\nSarah\nBertha\nBetty\nGrace\nIrene\nJanet\nJudith\nMarjorie\nNancy\nPauline\nMary\nBarbara\nPatricia\nAlice\nAnnie\nHelen\nMargaret\nDorothy\nMarie\nSharon\nAgnes\nBetty\nCarol\nClara\nJulia\nSally\nAnna\nCarolyn\nElizabeth\nIrene\nJudith\nLucy\nMartha\nSusan\nDonna\nEvelyn\nFlorence\nFrances\nJudy\nKaren\nNancy\nRose\nVirginia\nDiane\nGloria\nJanice\nJoanne\nKatherine\nLillian\nMarilyn\nPauline\nSandra\nShirley\nTheresa\nMary\nBarbara\nPatricia\nJudy\nMargaret\nNancy\nAlice\nCarol\nHelen\nKaren\nMartha\nDorothy\nJulia\nSharon\nAnn\nElizabeth\nPauline\nMarie\nAgnes\nAnnie\nEvelyn\nFlorence\nJudith\nLucy\nMarilyn\nRita\nSally\nAnna\nEthel\nFrances\nJanet\nLois\nLydia\nSarah\nAudrey\nBetty\nElla\nEsther\nJoanne\nKatherine\nLinda\nMabel\nRose\nRuth\nVirginia\nMary\nPatricia\nJudy\nMargaret\nSharon\nBarbara\nJudith\nCarol\nMartha\nDonna\nElizabeth\nAnna\nVirginia\nHelen\nJanet\nJoan\nKaren\nRose\nSandra\nChristine\nDorothy\nJane\nLois\nSally\nAlice\nBertha\nBetty\nCatherine\nFlorence\nFrances\nMarie\nNancy\nRosemary\nSophie\nAnnie\nArlene\nBonnie\nCarolyn\nJean\nKatherine\nLillian\nLorraine\nLucy\nMolly\nRoberta\nShirley\nSusan\nMary\nPatricia\nCarol\nSharon\nDonna\nDorothy\nKaren\nMargaret\nNancy\nHelen\nLinda\nVirginia\nIrene\nMartha\nMarie\nBarbara\nBonnie\nElizabeth\nJane\nJudith\nKatherine\nSusan\nAlice\nAnna\nKathleen\nKathryn\nLois\nMarilyn\nRoberta\nAnn\nBetty\nClara\nLucy\nRuth\nSally\nShirley\nCaroline\nDiane\nEdith\nJean\nKathy\nLoretta\nMaria\nMyra\nPauline\nMary\nLinda\nBarbara\nSharon\nMartha\nSusan\nPatricia\nBetty\nElizabeth\nKathleen\nMarie\nJanet\nJudith\nRuth\nNancy\nPauline\nClara\nJean\nJudy\nMargaret\nVirginia\nAnnie\nCarol\nEdna\nHelen\nJoyce\nKaren\nKatherine\nLorraine\nAlice\nAnn\nBonnie\nCarolyn\nChristine\nDiane\nDonna\nGrace\nMarilyn\nRose\nSarah\nShirley\nAnna\nBeverly\nDarlene\nDorothy\nIrene\nJoan\nLucy\nMattie\nSophie\nMary\nPatricia\nAlice\nBarbara\nSusan\nCarol\nLinda\nShirley\nElizabeth\nJanet\nMarie\nHelen\nMargaret\nNancy\nPhyllis\nDorothy\nMarilyn\nSandra\nAnnie\nEllen\nGrace\nJudy\nLucy\nRuth\nAgnes\nDiane\nDonna\nKatherine\nAnna\nDarlene\nEvelyn\nJune\nKathryn\nLorraine\nMartha\nVirginia\nBonnie\nCarrie\nElena\nFrancine\nIda\nJanice\nJudith\nKaren\nKathleen\nLouise\nPamela\nPauline\nRose\nSharon\nMary\nPatricia\nMargaret\nSusan\nLinda\nBarbara\nKaren\nCarol\nBetty\nHelen\nSharon\nJean\nKathleen\nMartha\nNancy\nAlice\nJudy\nMarie\nSandra\nAnn\nBonnie\nCheryl\nDonna\nEvelyn\nGloria\nVirginia\nElizabeth\nFrances\nJudith\nShirley\nBernice\nDorothy\nJanet\nJanice\nAnna\nEsther\nIrene\nJoan\nLillian\nRita\nRoberta\nRose\nRuth\nAnnie\nCarolyn\nCarrie\nCatherine\nCharlotte\nDarlene\nEdna\nElaine\nFlorence\nIda\nJessie\nLena\nLois\nLucy\nMarilyn\nNellie\nPamela\nMary\nLinda\nHelen\nSusan\nPatricia\nKathleen\nCarol\nShirley\nBarbara\nVirginia\nMargaret\nDonna\nNancy\nSandra\nKaren\nPamela\nJudy\nMarie\nMarilyn\nSharon\nAnn\nEvelyn\nJudith\nCarolyn\nDiane\nKatherine\nBonnie\nJean\nJoanne\nChristine\nDorothy\nElizabeth\nSarah\nTheresa\nAnnie\nEdith\nGail\nIrene\nJanet\nJanice\nKathy\nLorraine\nLouise\nMarian\nPeggy\nSuzanne\nAlice\nAnne\nArlene\nClara\nCynthia\nDoris\nFlorence\nFrances\nLucy\nMartha\nAnna\nBetty\nBeverly\nCarla\nDeborah\nDiana\nGloria\nJeanne\nJo\nJosephine\nJulia\nJune\nLaura\nLynda\nMargie\nPauline\nRuth\nSally\nTeresa\nVivian\nMary\nLinda\nPatricia\nSusan\nBarbara\nCarol\nKathleen\nSandra\nMargaret\nKaren\nElizabeth\nSharon\nJudith\nBetty\nMartha\nNancy\nCynthia\nDorothy\nPamela\nAnnie\nDonna\nHelen\nJanet\nJanice\nAnna\nCarolyn\nCheryl\nIrene\nJean\nAlice\nAnn\nBeverly\nChristine\nDiane\nMarilyn\nShirley\nArlene\nKatherine\nMarie\nRita\nSophie\nVirginia\nBonnie\nChristina\nEllen\nJudy\nJulie\nLaura\nLillian\nLucy\nColleen\nDoris\nEthel\nEvelyn\nGeraldine\nLorraine\nLydia\nPaula\nRoberta\nRose\nSarah\nBernice\nCatherine\nDelores\nEdith\nElla\nGail\nGloria\nJoan\nJulia\nJune\nKathryn\nLois\nMaria\nPhyllis\nRuth\nVera\nMary\nLinda\nSusan\nKathleen\nBarbara\nNancy\nPatricia\nKaren\nElizabeth\nMargaret\nSharon\nDonna\nJudith\nSandra\nAlice\nVirginia\nHelen\nMarie\nAnnie\nChristine\nCarol\nJanice\nJoyce\nJudy\nRuth\nAgnes\nDiana\nJanet\nDeborah\nDiane\nKatherine\nSally\nBetty\nCatherine\nCheryl\nDorothy\nJean\nKathy\nLucy\nMartha\nPamela\nAnna\nCynthia\nLynda\nRose\nSarah\nTheresa\nVera\nCarolyn\nKathryn\nLaura\nRita\nShirley\nSophie\nVicki\nBeverly\nBrenda\nCharlene\nElaine\nFrances\nJacqueline\nJeanne\nJo\nLois\nPhyllis\nRobin\nAnn\nAnne\nBonnie\nCaroline\nCharlotte\nEleanor\nElsie\nEsther\nEva\nFlorence\nIrene\nJulie\nLoretta\nLouise\nLucille\nLynne\nMarilyn\nNorma\nRebecca\nTeresa\nTerry\nToni\nMary\nLinda\nBarbara\nPatricia\nSusan\nMargaret\nKathleen\nDonna\nKaren\nSharon\nCarol\nElizabeth\nNancy\nCynthia\nJanet\nCheryl\nSandra\nPamela\nDorothy\nFrances\nJudy\nRuth\nJudith\nMarie\nShirley\nTheresa\nBetty\nCatherine\nDiane\nGloria\nMarilyn\nVirginia\nDeborah\nJanice\nKathryn\nMartha\nAlice\nBonnie\nCarolyn\nChristine\nJo\nKatherine\nEllen\nPaula\nRebecca\nRita\nVicki\nAnna\nArlene\nBrenda\nCharlotte\nEvelyn\nJane\nJeanne\nJulia\nLaura\nLucy\nPauline\nPeggy\nSally\nAnn\nBernice\nGrace\nJean\nJoan\nMaureen\nRose\nSherry\nTeresa\nEdith\nEileen\nJacqueline\nJosephine\nJoyce\nLynn\nSarah\nSophie\nColleen\nConstance\nDarlene\nElsie\nEmily\nGail\nGeraldine\nHelen\nJennifer\nJune\nKathy\nLaurie\nLillian\nLois\nMarcia\nRachel\nRegina\nRoberta\nRosemary\nSheila\nLinda\nMary\nSusan\nPatricia\nBarbara\nKathleen\nSandra\nMargaret\nCarol\nElizabeth\nNancy\nDebra\nDeborah\nMartha\nPamela\nCatherine\nRuth\nCynthia\nJanice\nSharon\nJanet\nCheryl\nKaren\nDiane\nAlice\nBetty\nChristine\nJudy\nKatherine\nShirley\nDonna\nHelen\nMarilyn\nJane\nVirginia\nDoris\nGail\nJudith\nKathy\nMarie\nRebecca\nCarolyn\nEsther\nFrances\nJean\nJoyce\nJulia\nAnn\nBeverly\nDorothy\nLaura\nLynn\nRoberta\nTeresa\nTheresa\nDarlene\nEvelyn\nJoan\nKarla\nPauline\nVicki\nAnna\nBrenda\nDenise\nDiana\nKathryn\nPeggy\nRita\nSally\nValerie\nAgnes\nArlene\nCarrie\nEllen\nGloria\nJoanne\nMarlene\nRose\nSheila\nSophie\nVictoria\nAndrea\nBecky\nBelinda\nClaudia\nColleen\nConstance\nElaine\nGrace\nJulie\nLoretta\nLorraine\nLouise\nLucy\nLydia\nMarjorie\nMaryann\nSarah\nTerry\nLinda\nMary\nPatricia\nDebra\nKathleen\nSusan\nDeborah\nBarbara\nCarol\nCynthia\nKaren\nSandra\nSharon\nMargaret\nPamela\nDonna\nNancy\nChristine\nMartha\nElizabeth\nKatherine\nKathy\nJudy\nHelen\nRebecca\nAlice\nBonnie\nDorothy\nLaura\nCheryl\nShirley\nDenise\nAnn\nDiane\nFrances\nJanet\nJanice\nJudith\nTeresa\nTheresa\nBrenda\nAnna\nDiana\nPaula\nVirginia\nJacqueline\nJoyce\nKathryn\nRuth\nCarolyn\nAgnes\nJo\nLynn\nMarilyn\nSally\nBeverly\nCharlene\nChristina\nConnie\nEllen\nGloria\nNora\nRoberta\nStephanie\nVicki\nAnnie\nBetty\nCharlotte\nEvelyn\nJean\nJeanne\nJoanne\nMarie\nPeggy\nApril\nCatherine\nCathy\nDarlene\nEileen\nEsther\nJennifer\nJoan\nLeslie\nLois\nLynda\nMarsha\nPatti\nRose\nSheila\nSuzanne\nTerry\nValerie\nYvonne\nEleanor\nFlorence\nJane\nJulie\nMarcia\nPenny\nRita\nSherry\nSylvia\nVickie\nAngela\nAnne\nArlene\nColleen\nDianne\nElsie\nGail\nGrace\nIngrid\nIrene\nJanis\nJuanita\nJulia\nKristine\nLaurie\nLena\nLynne\nMarianne\nMichele\nMichelle\nPauline\nRhonda\nRobin\nSheryl\nTerri\nVictoria\nLinda\nSusan\nDebra\nMary\nPatricia\nDeborah\nBarbara\nKaren\nKathleen\nNancy\nSandra\nCynthia\nElizabeth\nDonna\nSharon\nDiane\nPamela\nJanet\nCatherine\nChristine\nMargaret\nMartha\nCarol\nCarolyn\nMarilyn\nBrenda\nTeresa\nBetty\nJudith\nJulie\nCheryl\nJanice\nJudy\nJulia\nKatherine\nLaura\nShirley\nDorothy\nPeggy\nRebecca\nBeverly\nGloria\nJoan\nLeslie\nVirginia\nDenise\nGail\nHelen\nKathryn\nLaurie\nRuth\nSherry\nVicki\nAlice\nDarlene\nJoyce\nKathy\nMichelle\nBonnie\nDiana\nFrances\nJean\nJill\nTerry\nTheresa\nAnita\nCathy\nElaine\nEvelyn\nIrene\nLynn\nMarie\nPaula\nRhonda\nRoberta\nRobin\nRose\nConnie\nDoris\nJacqueline\nJane\nJo\nJoanne\nSuzanne\nWendy\nAnn\nKimberly\nMaureen\nStella\nSylvia\nTerri\nValerie\nAmy\nAnna\nCarla\nCharlene\nClara\nEileen\nEllen\nGeraldine\nJeanne\nJoann\nLillian\nRachel\nVera\nAngela\nCandace\nColleen\nDebbie\nElena\nEsther\nJan\nJosephine\nLori\nLorraine\nLucy\nMaggie\nMarcia\nMarlene\nMinnie\nNorma\nPatti\nRosemary\nVictoria\nWanda\nBillie\nCecilia\nCharmaine\nCheri\nChristy\nCindy\nConstance\nDawn\nDelores\nEmma\nEthel\nJune\nLois\nMichele\nMildred\nMyra\nPatrice\nPauline\nRita\nSarah\nTracy\nVickie\nVicky\nYvonne\nDebra\nMary\nDeborah\nLinda\nKaren\nSusan\nPatricia\nCynthia\nBarbara\nPamela\nNancy\nDonna\nElizabeth\nKathleen\nMargaret\nSandra\nDiane\nKatherine\nLaura\nRebecca\nMarilyn\nSharon\nCarol\nCatherine\nCheryl\nVirginia\nKathy\nTheresa\nBeverly\nChristine\nGloria\nKathryn\nMartha\nShirley\nVicki\nDorothy\nBetty\nLaurie\nLucy\nRose\nAnna\nJanet\nAnn\nBonnie\nJanice\nJean\nJudith\nJulie\nMarie\nPeggy\nTeresa\nBrenda\nCarolyn\nDenise\nHelen\nJoan\nMichelle\nRoberta\nSheila\nTerry\nLori\nSherry\nAlice\nCathy\nCindy\nConnie\nDebbie\nJane\nJoyce\nLois\nRuth\nDarlene\nEmma\nJeanne\nJennie\nLeslie\nLisa\nPaula\nRobin\nSally\nSarah\nValerie\nCharlene\nJacqueline\nJeanette\nJennifer\nJudy\nJulia\nRhonda\nRita\nColleen\nDiana\nEllen\nGail\nGlenda\nJoanne\nJoy\nNellie\nRoxanne\nSophie\nStephanie\nVickie\nWanda\nYvonne\nAgnes\nCharlotte\nGrace\nIda\nJo\nLee\nLorraine\nLynn\nMarjorie\nAnne\nBecky\nCarmen\nCheri\nDianne\nEvelyn\nJoni\nJosephine\nJune\nKim\nKimberly\nMarcia\nMaria\nMarlene\nMartina\nMichele\nMildred\nRamona\nSuzanne\nAnita\nAnnette\nAnnie\nBeth\nCarla\nCarrie\nConstance\nDawn\nEleanor\nFrances\nGeraldine\nIrene\nJenny\nLoretta\nMelinda\nPauline\nRenee\nSherri\nSheryl\nVictoria\nDebra\nMary\nLinda\nSusan\nKaren\nDeborah\nPatricia\nCynthia\nBarbara\nKathleen\nSandra\nDonna\nNancy\nPamela\nElizabeth\nMargaret\nCheryl\nLaura\nRebecca\nKatherine\nCarol\nSharon\nCatherine\nDiane\nTeresa\nTheresa\nJanice\nRuth\nDiana\nKathy\nLisa\nJanet\nMarilyn\nVicki\nBeverly\nJulie\nJudith\nKathryn\nDenise\nCarolyn\nRobin\nTerry\nBonnie\nDawn\nDebbie\nDoris\nEllen\nJacqueline\nKim\nLeslie\nPaula\nPeggy\nCathy\nHelen\nJean\nJoan\nShirley\nAlice\nBrenda\nJoyce\nMichelle\nRose\nSarah\nAnn\nAnne\nBetty\nChristine\nConnie\nJudy\nLynn\nMarie\nMartha\nVicky\nCindy\nDarlene\nDorothy\nFrances\nHolly\nLois\nLorraine\nMildred\nSheila\nTina\nAnna\nGail\nJennifer\nKimberly\nLaurie\nLoretta\nLori\nRenee\nRoberta\nSherry\nValerie\nVirginia\nAmy\nBeth\nCarla\nGayle\nJoanne\nMargie\nMarlene\nMelody\nMichele\nMonica\nNorma\nAngela\nArlene\nBessie\nCarrie\nChristina\nColleen\nEmily\nGrace\nJeanette\nJoni\nMaureen\nMelissa\nMyra\nRamona\nRhonda\nAndrea\nBernice\nCharlene\nDianne\nElena\nElsie\nEthel\nGloria\nJane\nKay\nLorna\nLucy\nLydia\nMelinda\nMolly\nPhyllis\nSally\nSheryl\nStella\nStephanie\nVickie\nVictoria\nWendy\nYvonne\nApril\nCandace\nCheri\nConstance\nEdna\nElaine\nEleanor\nEmma\nEva\nEvelyn\nGeraldine\nJacquelyn\nJill\nJo\nJulia\nJune\nLouise\nMaria\nMarla\nMarsha\nMinnie\nNina\nPauline\nSara\nShannon\nShelley\nSue\nTerri\nDebra\nMary\nLinda\nSusan\nPatricia\nBarbara\nKaren\nDeborah\nElizabeth\nSharon\nCynthia\nPamela\nSandra\nCheryl\nDonna\nNancy\nRebecca\nJanet\nTeresa\nCarol\nMargaret\nKathleen\nTheresa\nCatherine\nDiane\nLaura\nBrenda\nJudy\nKathryn\nMartha\nChristine\nBetty\nCindy\nJulie\nKim\nAnna\nCarolyn\nColleen\nLynn\nRose\nJanice\nLaurie\nLisa\nPaula\nConnie\nDiana\nJean\nJudith\nRobin\nTina\nVicki\nAnn\nDarlene\nKatherine\nKathy\nAlice\nDenise\nDoris\nEllen\nGloria\nMarilyn\nRuth\nVickie\nBeverly\nBonnie\nCathy\nDebbie\nMichelle\nRhonda\nArlene\nJoanne\nLori\nTerri\nElaine\nHelen\nJulia\nKimberly\nMarie\nRoberta\nSheila\nWanda\nDawn\nDorothy\nEvelyn\nGail\nJoyce\nLouise\nPeggy\nPhyllis\nSheryl\nSusie\nToni\nAngela\nCharlotte\nSally\nWendy\nBertha\nGrace\nJill\nKarla\nLeslie\nMarjorie\nSophie\nStephanie\nVicky\nVivian\nAgnes\nAnita\nEdna\nGlenda\nGwendolyn\nJeanne\nJoan\nJoann\nJune\nLucy\nMarlene\nMaureen\nPauline\nRamona\nRosemary\nSarah\nSherry\nShirley\nSuzanne\nSylvia\nTerry\nValerie\nVerna\nBillie\nChristina\nDebora\nDolores\nEva\nFlorence\nGeraldine\nJacqueline\nJennifer\nJo\nKerry\nLillian\nLoretta\nLorraine\nMaxine\nMichele\nMildred\nNorma\nRenee\nSheri\nVictoria\nYvonne\nBecky\nCathleen\nClaudia\nEleanor\nEmily\nFlora\nIda\nIrene\nJan\nJoni\nJoy\nJuanita\nKelly\nLydia\nMelinda\nMelody\nMinnie\nRosalie\nShannon\nSheree\nSherri\nViolet\nMary\nSusan\nCynthia\nDebra\nLinda\nKaren\nPatricia\nDeborah\nCheryl\nSharon\nPamela\nBarbara\nCarol\nDiane\nSandra\nCindy\nElizabeth\nKathleen\nNancy\nDonna\nJanet\nKathy\nLaura\nDenise\nKatherine\nMargaret\nTeresa\nBrenda\nTheresa\nAnna\nJulie\nKimberly\nDebbie\nLisa\nRebecca\nRobin\nRose\nSherry\nJudy\nRuth\nSheila\nShirley\nKim\nPaula\nCatherine\nCathy\nElaine\nLaurie\nTina\nVicki\nEllen\nJanice\nJulia\nKathryn\nMarie\nMarilyn\nRoberta\nConnie\nDarlene\nLucy\nMichelle\nAlice\nAnn\nArlene\nBonnie\nChristine\nColleen\nLoretta\nMartha\nRhonda\nTerri\nEsther\nEvelyn\nJoan\nJoyce\nLynn\nMarsha\nMaureen\nTammy\nVickie\nWanda\nBertha\nBetty\nBeverly\nCarolyn\nDiana\nGlenda\nJacqueline\nJane\nJean\nLeslie\nMarlene\nVirginia\nAnita\nCarrie\nDoris\nHelen\nJeanne\nMaria\nRamona\nSarah\nStephanie\nValerie\nVictoria\nAgnes\nChristina\nClara\nDelores\nDorothy\nEileen\nFlora\nGail\nLori\nLynda\nMelody\nPatti\nPauline\nSally\nSue\nTerry\nYvonne\nAngela\nAudrey\nCharlene\nDianna\nFlorence\nFrances\nIrene\nJoann\nLorna\nMarcella\nNora\nNorma\nPeggy\nRita\nSheri\nCecelia\nElena\nEmma\nEva\nGeorgia\nGloria\nIda\nJeanette\nJudith\nLaurel\nLouise\nLydia\nMarian\nNellie\nNina\nRachel\nSherrie\nSheryl\nSuzanne\nSylvia\nToni\nAlberta\nAmy\nApril\nBessie\nBeth\nCarla\nCharlotte\nDawn\nGina\nHolly\nJackie\nJody\nKelly\nLeona\nLorraine\nMaggie\nMarjorie\nMichele\nPenny\nPriscilla\nRenee\nRobyn\nRoxanne\nStella\nSusie\nTanya\nTeri\nThelma\nMary\nSusan\nKaren\nDebra\nLinda\nDonna\nElizabeth\nPatricia\nDeborah\nCheryl\nBarbara\nCynthia\nSharon\nPamela\nDebbie\nDiane\nKathleen\nSandra\nKathy\nKatherine\nLori\nBrenda\nTheresa\nCarol\nCindy\nJanet\nJulie\nMargaret\nMartha\nLaura\nNancy\nDorothy\nJanice\nJudy\nTeresa\nTina\nKathryn\nKim\nDiana\nLisa\nKimberly\nRebecca\nShirley\nEllen\nHelen\nJulia\nRuth\nBetty\nLucy\nPeggy\nVicki\nAnita\nChristine\nJoanne\nLaurie\nPauline\nValerie\nBeverly\nCarolyn\nDenise\nSally\nSherry\nAlice\nAnn\nKelly\nRobin\nRose\nTerri\nAngela\nDarlene\nEsther\nGlenda\nGloria\nRhonda\nTammy\nCharlotte\nElaine\nJean\nJennifer\nJo\nMichelle\nPhyllis\nRoberta\nTerry\nVictoria\nAnna\nCatherine\nDoris\nEvelyn\nJoyce\nJudith\nMaria\nMelanie\nPaula\nShelley\nVeronica\nAgnes\nCathy\nClara\nConnie\nDawn\nJane\nJune\nLeslie\nNora\nSheila\nSusie\nVirginia\nAnne\nBeth\nCarla\nDarla\nDebora\nEmma\nFlorence\nJacqueline\nLillian\nLois\nLydia\nMarie\nMarlene\nMichele\nPam\nRenee\nRhoda\nSarah\nShawn\nWanda\nYvonne\nAndrea\nAnnie\nBecky\nBonnie\nColleen\nEileen\nGail\nGeraldine\nGrace\nHeather\nJeanette\nJoann\nLoretta\nLorraine\nMarilyn\nMelody\nShannon\nStella\nStephanie\nSue\nVicky\nAnnette\nAudrey\nCarrie\nCecilia\nCharlene\nDelores\nDianne\nDora\nEva\nFlora\nFrances\nGayle\nHolly\nJenny\nJosephine\nLeona\nLou\nMildred\nMolly\nPriscilla\nRita\nSherri\nSheryl\nSuzanne\nSylvia\nTamara\nTami\nMary\nKaren\nDebra\nLinda\nDonna\nPatricia\nSusan\nPamela\nLisa\nSharon\nCynthia\nNancy\nCheryl\nKathy\nBarbara\nDeborah\nKathleen\nMargaret\nElizabeth\nJulie\nTeresa\nLaura\nSandra\nCarol\nCindy\nKimberly\nTheresa\nLori\nDiane\nMichelle\nDebbie\nHelen\nConnie\nDiana\nTina\nVirginia\nBrenda\nJanice\nRebecca\nTammy\nDorothy\nJudy\nKelly\nKim\nDenise\nCatherine\nDarlene\nLaurie\nLeslie\nValerie\nRuth\nShirley\nVicki\nDawn\nEllen\nJanet\nRobin\nArlene\nMarie\nRenee\nAngela\nAnna\nCarolyn\nEvelyn\nKatherine\nKathryn\nRose\nSarah\nTerry\nChristine\nJoyce\nJulia\nRita\nSally\nSherry\nAnn\nBonnie\nCathy\nJean\nJoanne\nJudith\nMartha\nNorma\nPenny\nTerri\nPaula\nRamona\nWanda\nAnnette\nBernice\nBetty\nJennifer\nLillian\nLorraine\nMaria\nMarilyn\nPatti\nRhonda\nAlice\nAudrey\nBecky\nBeverly\nColleen\nElaine\nGrace\nIrene\nJane\nJoan\nRegina\nTamara\nVictoria\nCarrie\nChristina\nEmily\nEmma\nGeraldine\nHeidi\nHolly\nJeanne\nJosephine\nMarcia\nMarlene\nPauline\nPeggy\nSheryl\nTracy\nVeronica\nVivian\nAmy\nCharlene\nDoris\nEileen\nEsther\nFlora\nGail\nGina\nJackie\nJacqueline\nLoretta\nMarjorie\nMelody\nNatalie\nRoberta\nShannon\nShelly\nSuzanne\nToni\nAgnes\nAnita\nAnne\nApril\nBertha\nCandy\nCarla\nChris\nCrystal\nDana\nDebora\nElena\nEva\nFlorence\nJoni\nKelli\nKristen\nLaurel\nMargie\nMinnie\nNina\nPatty\nRachel\nShawn\nSheila\nShelley\nSheri\nSherrie\nStephanie\nTeri\nWendy\nYvonne\nMary\nLinda\nKaren\nDebra\nSusan\nElizabeth\nSandra\nPatricia\nDonna\nCindy\nCheryl\nTeresa\nCynthia\nNancy\nLaura\nDeborah\nLisa\nBarbara\nKelly\nTheresa\nBrenda\nSharon\nJulie\nLori\nCarol\nMargaret\nDebbie\nKathleen\nRebecca\nJanet\nDiane\nKimberly\nPamela\nDorothy\nKathy\nAlice\nRobin\nKatherine\nLeslie\nConnie\nKim\nJanice\nLaurie\nRhonda\nRuth\nTerri\nCathy\nTammy\nWendy\nCatherine\nDarlene\nDiana\nRose\nVicki\nBonnie\nCarolyn\nDenise\nMarie\nTerry\nAnna\nMichelle\nRoberta\nSarah\nSheryl\nShirley\nAnita\nAnn\nJudith\nPauline\nAngela\nCarrie\nJoyce\nMartha\nPam\nPaula\nPeggy\nBeverly\nEllen\nGail\nHelen\nJacqueline\nJean\nJennifer\nJoanne\nMarilyn\nMelanie\nSheila\nSherry\nTina\nTracy\nVirginia\nYvonne\nAnnette\nBeth\nCheri\nChristina\nColleen\nDawn\nEmily\nEva\nJosephine\nLoretta\nLucy\nPhyllis\nStephanie\nTamara\nAmy\nBernadette\nCarla\nEileen\nFrances\nGrace\nKathryn\nMarlene\nPenny\nSuzanne\nBecky\nBetty\nCharlene\nChristine\nCrystal\nElaine\nElena\nEmma\nHeidi\nHolly\nMonica\nRita\nSally\nTami\nAndrea\nDana\nDeanna\nEsther\nFlorence\nHarriet\nIrene\nJeanette\nLillian\nLouise\nMargie\nMaria\nMarjorie\nMatilda\nMelinda\nMelody\nMichele\nPatty\nRamona\nRenee\nVivian\nApril\nBertha\nDora\nDoris\nEleanor\nEvelyn\nFannie\nGeraldine\nHeather\nJeannie\nJo\nJody\nJohanna\nJudy\nJulia\nKirsten\nMaureen\nMona\nMyrna\nNellie\nNora\nRosemary\nRuby\nSandy\nShelly\nStella\nTeri\nValerie\nVera\nVicky\nVictoria\nWanda\nMary\nLisa\nKaren\nLinda\nSusan\nDonna\nPatricia\nCynthia\nDebra\nTheresa\nLori\nBarbara\nSandra\nCheryl\nTeresa\nBrenda\nKelly\nSharon\nNancy\nLaura\nDeborah\nKimberly\nCarol\nElizabeth\nCindy\nDenise\nJanet\nRobin\nPamela\nAngela\nDiane\nMargaret\nDebbie\nKathleen\nCatherine\nChristine\nJulie\nKim\nMichelle\nRebecca\nKatherine\nDawn\nKathy\nMarie\nColleen\nJanice\nSherry\nTammy\nShirley\nDiana\nJacqueline\nJennifer\nMartha\nTerri\nTina\nAnna\nDarlene\nDorothy\nLucy\nRuth\nWendy\nAlice\nCarolyn\nConnie\nLaurie\nRenee\nTamara\nValerie\nWanda\nBeth\nCarla\nDoris\nGrace\nJudy\nRhonda\nRoberta\nTracy\nVicki\nVirginia\nAnn\nCarrie\nElaine\nHelen\nJill\nJudith\nMichele\nAnita\nAnne\nBetty\nBonnie\nCathy\nJulia\nMaria\nSarah\nVera\nBecky\nClara\nEvelyn\nGloria\nJoan\nJoyce\nLynn\nMarilyn\nMelissa\nPauline\nRose\nToni\nAgnes\nBeverly\nHolly\nKathryn\nLeslie\nMarlene\nMaureen\nMelody\nMonica\nPeggy\nSheila\nShelley\nTami\nTerry\nVeronica\nVictoria\nBertha\nElla\nEllen\nEva\nGeraldine\nJean\nNora\nPaula\nSheri\nSheryl\nStephanie\nSuzanne\nTeri\nAmy\nAnnette\nApril\nArlene\nAudrey\nCharlene\nChris\nChristina\nGail\nGladys\nJoanne\nJuanita\nLynda\nMelanie\nMinnie\nMolly\nOlga\nSara\nShannon\nStella\nSylvia\nVerna\nYvonne\nAnnie\nCheri\nChristy\nCora\nEdna\nEleanor\nEsther\nFrances\nHeidi\nJackie\nJana\nJane\nJeanette\nJoann\nJoni\nJoy\nLaurel\nLorraine\nMelinda\nPatti\nPenny\nRamona\nRita\nRosemary\nRoxanne\nRuby\nSally\nSue\nVanessa\nMary\nKaren\nSusan\nCynthia\nBrenda\nLisa\nElizabeth\nLinda\nDeborah\nCarol\nKimberly\nLori\nPatricia\nDonna\nKelly\nLaura\nBarbara\nTeresa\nTheresa\nDebra\nSandra\nCheryl\nMichelle\nDiane\nPamela\nSharon\nJulie\nTammy\nDenise\nJanet\nDarlene\nKathy\nMargaret\nAnna\nKim\nLaurie\nNancy\nRebecca\nTina\nCatherine\nCindy\nJudy\nKatherine\nRhonda\nChristine\nDawn\nKathleen\nTerri\nAngela\nColleen\nDebbie\nJanice\nMartha\nMichele\nChristina\nRobin\nValerie\nAlice\nBeverly\nBonnie\nCarolyn\nJennifer\nLynn\nMarie\nRoberta\nRuth\nWendy\nYvonne\nConnie\nPaula\nPeggy\nRenee\nSarah\nSherri\nSuzanne\nAnn\nJill\nKathryn\nRose\nTamara\nVictoria\nCora\nIrene\nRita\nSally\nShannon\nSheryl\nStephanie\nVicki\nVirginia\nWanda\nAgnes\nCarla\nCathy\nDarla\nHeidi\nJacqueline\nJamie\nJean\nJulia\nMarlene\nSheila\nSherry\nShirley\nToni\nTracy\nAnne\nBeth\nCharlotte\nCheri\nElaine\nElsie\nEvelyn\nJeanette\nJoyce\nLeslie\nPam\nPauline\nRachel\nVickie\nAnita\nAnnette\nAnnie\nCarrie\nDiana\nDoris\nEsther\nEva\nGail\nGina\nGladys\nHelen\nJane\nJoann\nLorraine\nMolly\nNora\nVeronica\nCaroline\nDora\nDorothy\nHolly\nIda\nJeannine\nJoanne\nJoy\nKarla\nLoretta\nMaria\nMelody\nNatalie\nRonda\nRuby\nSandy\nSusie\nTanya\nVivian\nAmy\nAudrey\nBernadette\nBertha\nCharlene\nDeanna\nDianna\nDianne\nFrances\nGlenda\nHannah\nJackie\nJo\nKristin\nLillian\nLorena\nLucy\nMaggie\nMarcella\nMarilyn\nMaureen\nMelissa\nMonica\nNellie\nNina\nPhyllis\nPolly\nSheri\nSophie\nTammie\nTerry\nTracey\nVera\nVerna\nVicky\nMary\nLisa\nLinda\nSandra\nKaren\nDonna\nSusan\nTeresa\nBarbara\nDeborah\nSharon\nLori\nPatricia\nBrenda\nKimberly\nPamela\nCynthia\nCarol\nDenise\nKelly\nJulie\nDebra\nElizabeth\nCheryl\nKathleen\nLaura\nKathy\nTina\nAngela\nRobin\nChristine\nLeslie\nMargaret\nMartha\nMichelle\nNancy\nRebecca\nTheresa\nDiane\nJennifer\nCatherine\nJanet\nValerie\nDiana\nAlice\nDebbie\nSheila\nDarlene\nKim\nTracy\nKatherine\nMichele\nRuth\nAnna\nCarolyn\nConnie\nDawn\nJoan\nTammy\nAnnette\nCarla\nCindy\nHeidi\nJanice\nRhonda\nRose\nSherry\nJudy\nLaurie\nTerri\nWendy\nAnn\nBecky\nCharlene\nColleen\nDeanna\nDorothy\nEvelyn\nGina\nMaria\nMonica\nSherri\nShirley\nSuzanne\nBeverly\nBonnie\nCarrie\nGail\nHelen\nJacqueline\nKathryn\nLucy\nShannon\nTamara\nAndrea\nBetty\nHolly\nJackie\nMarlene\nPhyllis\nSarah\nStacey\nYvonne\nAnita\nAudrey\nDella\nEileen\nEva\nFlorence\nJane\nJean\nJoann\nJulia\nLena\nLynn\nMarilyn\nMelissa\nMolly\nPeggy\nRenee\nStephanie\nVeronica\nVicki\nWanda\nAmy\nArlene\nCharlotte\nChristina\nDianna\nDoris\nElena\nEsther\nMarie\nMelanie\nNora\nPaula\nRobyn\nSally\nStacy\nTrudy\nCecelia\nDana\nGrace\nJennie\nJill\nJoy\nJuanita\nJune\nKay\nLucille\nMelody\nPam\nRoberta\nRonda\nSandy\nSheri\nTerry\nVera\nVirginia\nWilma\nAnne\nAnnie\nApril\nBertha\nBessie\nCathy\nDoreen\nEllen\nEthel\nGeraldine\nGertrude\nGlenda\nHeather\nJessica\nJodi\nJody\nJoni\nJudith\nKelley\nKristine\nLoretta\nLorraine\nLorrie\nMarcia\nMargie\nMelinda\nMinnie\nNorma\nPatty\nPauline\nRita\nSara\nShelley\nShelly\nSylvia\nTanya\nVickie\nMary\nLisa\nSusan\nKaren\nPatricia\nBrenda\nDonna\nKimberly\nSandra\nElizabeth\nLinda\nCynthia\nTeresa\nDeborah\nSharon\nCheryl\nMichelle\nLaura\nLori\nDenise\nKelly\nTheresa\nBarbara\nCindy\nPamela\nCarol\nJulie\nAngela\nChristine\nKathleen\nMargaret\nRebecca\nTina\nDawn\nDiane\nKatherine\nNancy\nMartha\nRhonda\nDiana\nJanet\nJennifer\nKathy\nKim\nPaula\nTammy\nDarlene\nDebra\nLeslie\nRobin\nCatherine\nDebbie\nAmy\nAnna\nCarolyn\nKathryn\nTracy\nJoann\nJudy\nSherry\nTerri\nValerie\nWendy\nHelen\nJacqueline\nLaurie\nShelley\nAnn\nBeverly\nBonnie\nConnie\nJill\nRoberta\nRose\nRuth\nSarah\nShannon\nAnne\nAnnie\nDana\nDeanna\nGail\nGrace\nLoretta\nRenee\nVeronica\nAnita\nAnnette\nColleen\nEileen\nEvelyn\nHeidi\nHolly\nSally\nSheila\nStephanie\nBetty\nCarrie\nCathy\nChristina\nFrances\nGina\nJoan\nJoyce\nLucy\nLynda\nMarie\nMelinda\nMonica\nSandy\nSherri\nAndrea\nApril\nCarla\nCharlene\nDorothy\nElena\nEmma\nGeraldine\nJanice\nJeanette\nJoanne\nJulia\nLorraine\nLynn\nMarlene\nMelody\nMichele\nMona\nSuzanne\nVictoria\nAlice\nAudrey\nBernice\nDora\nEsther\nEva\nHeather\nJackie\nJoy\nJuanita\nJudith\nJune\nKarla\nKristi\nKristina\nLillian\nMarcia\nMaria\nMarilyn\nMelissa\nRachel\nRita\nRonda\nSabrina\nShelly\nSheri\nSheryl\nShirley\nVera\nVivian\nAmelia\nBessie\nBeth\nCaroline\nDelores\nElaine\nGloria\nHannah\nIrene\nJo\nJodi\nKara\nKristin\nLorri\nLydia\nMaxine\nNatalia\nNatalie\nNina\nPeggy\nPenny\nRoxanne\nSherrie\nStacey\nSusie\nTamara\nVenus\nVickie\nLisa\nMary\nKaren\nKimberly\nDeborah\nMichelle\nElizabeth\nCynthia\nRobin\nAngela\nDawn\nPatricia\nCarol\nJennifer\nLinda\nPamela\nSandra\nSusan\nLaura\nTeresa\nTina\nMartha\nSharon\nBrenda\nChristine\nDonna\nKathleen\nTammy\nRhonda\nBarbara\nCheryl\nAmy\nNancy\nDiane\nDebra\nJanet\nJulie\nKatherine\nLori\nMelissa\nKelly\nRebecca\nSarah\nDenise\nKathy\nTheresa\nAnne\nSherry\nTerri\nAnna\nCatherine\nColleen\nJacqueline\nKim\nDarlene\nJoyce\nLaurie\nLynn\nMargaret\nPaula\nRoberta\nTracy\nAlice\nAndrea\nCindy\nMarie\nValerie\nBetty\nDebbie\nHeather\nHeidi\nKathryn\nMaria\nRuth\nSheila\nShirley\nWendy\nBonnie\nCarla\nCarrie\nCathy\nDiana\nJulia\nShannon\nBertha\nConnie\nDorothy\nGail\nJanice\nJill\nJudith\nKarin\nPeggy\nRose\nStephanie\nAnita\nAnnette\nCaroline\nCarolyn\nCharlotte\nChristina\nCrystal\nKarla\nNatalie\nPauline\nSylvia\nTeri\nVictoria\nVirginia\nBeverly\nElaine\nEllen\nFrances\nGina\nKristina\nLeslie\nLucy\nPenny\nPhyllis\nShelly\nTracey\nWanda\nAllison\nBeatrice\nDoreen\nEdith\nEileen\nJudy\nKristine\nMelinda\nMonica\nRonda\nShari\nSherri\nTanya\nVera\nVicki\nAnnie\nAudrey\nBernice\nBeth\nCharlene\nDeanna\nDeanne\nDianne\nDolly\nDora\nEdna\nEleanor\nEva\nHolly\nJackie\nJeanne\nJoann\nJoni\nLora\nLoretta\nLorraine\nLynne\nMarianne\nMarilyn\nMichele\nMolly\nRamona\nRenee\nRoxanne\nShelley\nSheryl\nSophie\nStacy\nSuzanne\nToni\nVeronica\nMary\nLisa\nMichelle\nKaren\nElizabeth\nSusan\nKimberly\nPatricia\nCynthia\nLaura\nTeresa\nJulie\nSandra\nSharon\nWendy\nBrenda\nLinda\nPamela\nRhonda\nJennifer\nRebecca\nTina\nChristine\nDawn\nDonna\nKelly\nBarbara\nTheresa\nAmy\nAngela\nKim\nTammy\nCarol\nDebra\nAndrea\nKathleen\nMargaret\nMichele\nDenise\nKatherine\nTracy\nCheryl\nCindy\nDeborah\nDiane\nHeidi\nHelen\nStephanie\nAnna\nKathryn\nMartha\nBonnie\nCatherine\nColleen\nDiana\nJanice\nMaria\nNancy\nRuth\nSarah\nSherry\nDarlene\nJacqueline\nKristine\nMelinda\nMelissa\nPaula\nRobin\nRose\nGloria\nJulia\nLori\nMarie\nRoberta\nTamara\nAnita\nAnne\nChristina\nKathy\nLeslie\nLucy\nMonica\nSuzanne\nTanya\nVirginia\nArlene\nDana\nJanet\nLorraine\nLynn\nSheila\nShelley\nTonya\nAlice\nAnn\nAnnette\nCarla\nCarmen\nCarolyn\nDeanna\nEsther\nGail\nJeanette\nJudy\nKari\nKarla\nLeona\nNatalie\nPauline\nPeggy\nShannon\nShelly\nSherri\nSherrie\nStacey\nVickie\nApril\nAudrey\nBeth\nBeverly\nCandace\nDebbie\nDella\nDorothy\nEllen\nErin\nFrances\nHeather\nHolly\nJoan\nJoann\nJudith\nKristin\nKristina\nLynda\nSheri\nSonya\nTami\nAgnes\nAngelina\nCarrie\nCharlene\nClara\nConnie\nEmily\nEmma\nEvelyn\nFlorence\nGeraldine\nGina\nGrace\nHannah\nJill\nJoelle\nJoyce\nJune\nKimberley\nKirsten\nLaurie\nLeann\nLoretta\nMelody\nNicole\nRenee\nStacy\nSue\nTerri\nValerie\nVeronica\nVicki\nVictoria\nYvonne\nLisa\nKimberly\nMichelle\nMary\nKaren\nElizabeth\nSusan\nCynthia\nSandra\nJennifer\nDeborah\nLaura\nAngela\nRebecca\nKelly\nBrenda\nKatherine\nTeresa\nTammy\nTina\nChristine\nJulie\nBarbara\nDawn\nDonna\nPatricia\nTracy\nKathleen\nLinda\nLori\nCheryl\nJanet\nMichele\nSharon\nStephanie\nTheresa\nDiane\nWendy\nCarol\nDenise\nPamela\nShannon\nTonya\nCarrie\nCindy\nDebra\nAndrea\nKathryn\nStacey\nBeverly\nDebbie\nJanice\nLaurie\nMargaret\nMelissa\nNancy\nSheila\nSherri\nApril\nCatherine\nHeather\nKim\nTamara\nBeth\nDarlene\nHeidi\nHelen\nJulia\nKathy\nMonica\nPaula\nRhonda\nRuth\nWanda\nAmy\nAnnette\nCarla\nCharlene\nConnie\nJacqueline\nMarie\nRobin\nShelly\nAlice\nCaroline\nCathy\nDorothy\nJill\nMartha\nMolly\nRoberta\nRose\nSherry\nSuzanne\nTanya\nTerri\nAnna\nChristina\nMaria\nNatalie\nStacy\nTiffany\nAmanda\nAnn\nAnne\nDiana\nEvelyn\nJoan\nLeah\nMarjorie\nRene\nRenee\nSarah\nVictoria\nBonnie\nColleen\nCrystal\nDanielle\nGeraldine\nGina\nHolly\nJean\nKerry\nKirsten\nKristen\nKristina\nLeslie\nMelinda\nMelody\nNicole\nSamantha\nSophie\nVirginia\nBecky\nBertha\nDana\nDeanna\nDelores\nEsther\nGail\nGinger\nKara\nKarla\nKatie\nKristin\nKristine\nLucy\nMarcia\nMarilyn\nMyra\nSabrina\nShirley\nTara\nTrina\nValerie\nVicki\nYvonne\nMichelle\nLisa\nKimberly\nLaura\nJennifer\nTina\nMary\nChristine\nKaren\nTracy\nAngela\nJulie\nSusan\nMichele\nRebecca\nCynthia\nDeborah\nTammy\nDawn\nHeather\nSharon\nStephanie\nDonna\nPamela\nCheryl\nMelissa\nShannon\nWendy\nAnna\nAmy\nLori\nElizabeth\nKatherine\nKelly\nTeresa\nLinda\nMargaret\nNancy\nPatricia\nSandra\nTanya\nBrenda\nCarrie\nKathleen\nSarah\nTamara\nVictoria\nRhonda\nAndrea\nBarbara\nPaula\nRenee\nApril\nDenise\nMelinda\nRoberta\nTheresa\nCarol\nChristina\nDebra\nDiana\nHelen\nKristin\nRobin\nSherry\nTonya\nAnn\nCatherine\nCindy\nGina\nJacqueline\nJill\nLaurie\nRuth\nTerri\nDana\nDeanna\nJanet\nLillian\nSherri\nValerie\nBonnie\nHeidi\nHolly\nKathryn\nKim\nKristina\nMelanie\nSheila\nSonya\nSuzanne\nVirginia\nYvonne\nColleen\nDiane\nJeanne\nKristen\nMolly\nMonica\nShelly\nCassandra\nDanielle\nDarlene\nEileen\nJanice\nJulia\nKristi\nLeslie\nLorraine\nRegina\nSabrina\nStacey\nTara\nAgnes\nAlice\nAnita\nAnnette\nCarla\nDorothy\nGail\nJody\nKari\nLara\nMarie\nMaureen\nSamantha\nSara\nShawna\nSheri\nTami\nToni\nAmanda\nAmber\nBecky\nCarolyn\nCharlene\nDarcy\nDebbie\nDianna\nErin\nEvelyn\nGinger\nIngrid\nJeanette\nJo\nJodi\nJosephine\nJoyce\nJudy\nKarla\nKendra\nKirsten\nKristie\nKristine\nMaria\nMartha\nNatalie\nPenny\nSally\nStacy\nTiffany\nTraci\nMichelle\nKimberly\nJennifer\nLisa\nMary\nJulie\nLaura\nAngela\nKaren\nRebecca\nChristine\nTina\nTammy\nElizabeth\nPatricia\nDawn\nDonna\nDeborah\nShannon\nSandra\nBrenda\nKelly\nMelissa\nStephanie\nRhonda\nSusan\nTeresa\nBarbara\nHeather\nKatherine\nTracy\nAmy\nCynthia\nWendy\nDenise\nMichele\nMargaret\nPamela\nChristina\nSharon\nCatherine\nCheryl\nCindy\nLori\nDeanna\nDiane\nKathleen\nRobin\nSherri\nTamara\nValerie\nVictoria\nAnn\nHeidi\nRenee\nGina\nKristen\nLinda\nSarah\nSuzanne\nTanya\nTheresa\nAndrea\nDarlene\nDebra\nJacqueline\nRachel\nRose\nShawn\nSheila\nTara\nTonya\nApril\nJill\nJulia\nKim\nMelinda\nNicole\nSara\nSheri\nSonya\nAnna\nCarla\nHelen\nKristine\nRoberta\nTami\nVicki\nBeth\nCarol\nKristin\nNancy\nShawna\nSherry\nAlicia\nAnita\nAnne\nCarolyn\nCharlotte\nConnie\nErika\nJanet\nJudy\nLara\nStacey\nTracey\nBelinda\nBeverly\nCarrie\nCrystal\nDana\nJosephine\nKathryn\nKathy\nKristina\nLaurie\nMelanie\nPaula\nShelley\nStacy\nTerri\nVirginia\nAdrienne\nAmanda\nAnnie\nBonnie\nCarmen\nCharlene\nColleen\nDiana\nDorothy\nEdith\nHolly\nJamie\nJeanette\nKirsten\nKristi\nLynn\nMarie\nMartha\nMolly\nMonica\nRuth\nShirley\nStacie\nTiffany\nTrina\nAlice\nAlisa\nBridget\nCaroline\nChristy\nDebbie\nEvelyn\nGail\nJennie\nJo\nJoanna\nJudith\nLeann\nLeigh\nMaria\nMarla\nNatalie\nNorma\nRamona\nRobyn\nShelly\nSonja\nTonia\nTraci\nVanessa\nVera\nWanda\nYolanda\nJennifer\nMichelle\nKimberly\nLisa\nMary\nShannon\nJulie\nAngela\nHeather\nDawn\nElizabeth\nWendy\nCynthia\nKaren\nChristine\nRebecca\nDeborah\nDenise\nPatricia\nTina\nAmy\nMelissa\nRachel\nStephanie\nTammy\nTeresa\nLaura\nLori\nPamela\nSusan\nKatherine\nBrenda\nCarrie\nCheryl\nDonna\nKelly\nTonya\nTracy\nSandra\nRhonda\nAnna\nBarbara\nCarolyn\nRobin\nStacey\nHolly\nTamara\nTanya\nCatherine\nMargaret\nMichele\nRenee\nTara\nTiffany\nChristina\nDiane\nKathleen\nLinda\nMonica\nNancy\nSharon\nTheresa\nBonnie\nHeidi\nJacqueline\nLaurie\nNicole\nSarah\nSheila\nAnn\nApril\nCrystal\nDebra\nJulia\nValerie\nAndrea\nCharlene\nDanielle\nKristin\nMartha\nMelinda\nStacy\nCarla\nCindy\nDana\nJodi\nKathy\nLeah\nLena\nLynn\nMaria\nSamantha\nTracey\nAlicia\nAnne\nCarol\nChristy\nDora\nKristine\nPaula\nRuth\nSherry\nSuzanne\nTerri\nVictoria\nAlice\nAmber\nDeanna\nDiana\nHelen\nJamie\nJanet\nKristen\nKristina\nLeslie\nMelanie\nRegina\nShawna\nShelley\nYvonne\nBobbi\nCandace\nCarmen\nCharlotte\nColleen\nDena\nErika\nErin\nJessica\nJill\nKatrina\nLara\nMarie\nRoberta\nSabrina\nShawn\nTraci\nTrina\nAnnette\nBobbie\nCara\nDarlene\nJanice\nJeanette\nJoanne\nJoyce\nJune\nKathryn\nKellie\nKerry\nKim\nKrista\nLucy\nMarlene\nMeredith\nNatalie\nPeggy\nRachael\nShelly\nSherri\nTracie\nVanessa\nVeronica\nVicki\nAudrey\nBecky\nBeverly\nCheri\nDarcy\nDesiree\nEdna\nElena\nEllen\nEmma\nGina\nGretchen\nJacquelyn\nJean\nJody\nKerri\nKimberley\nKristy\nLaurel\nLynne\nMarilyn\nMisty\nRobyn\nRose\nSara\nTerra\nTricia\nVera\nJennifer\nMichelle\nLisa\nHeather\nMary\nAngela\nKimberly\nMelissa\nDawn\nTammy\nRebecca\nJulie\nStephanie\nTracy\nCynthia\nLaura\nElizabeth\nShannon\nChristina\nKelly\nTara\nWendy\nAmy\nChristine\nKaren\nKatherine\nPatricia\nSarah\nSharon\nLori\nHeidi\nCatherine\nAndrea\nBrenda\nDenise\nLinda\nNancy\nCheryl\nKathleen\nMelanie\nPamela\nSusan\nTeresa\nCarrie\nErin\nTheresa\nTina\nTonya\nCrystal\nDeborah\nNicole\nAnna\nJessica\nMargaret\nSandra\nTanya\nBarbara\nRobin\nSherry\nTamara\nApril\nCharlene\nHolly\nJulia\nKristin\nRachel\nRhonda\nStacey\nTiffany\nChristy\nDonna\nJanice\nMonica\nPaula\nStacy\nAmanda\nBecky\nCarol\nDana\nGina\nJanet\nKristen\nMarie\nMartha\nMichele\nShawna\nSuzanne\nColleen\nDebra\nErica\nJill\nKristina\nRuth\nShelly\nVirginia\nAnita\nAnn\nAnne\nBonnie\nCarla\nCindy\nConnie\nDarlene\nErika\nKatrina\nKerry\nMelinda\nRenee\nAlice\nAlison\nBobbie\nCassandra\nDanielle\nDeanna\nDiane\nDora\nDorothy\nJackie\nJenny\nJoann\nJoy\nKara\nKristi\nLeslie\nMisty\nNatasha\nSamantha\nShirley\nStella\nAlicia\nAllison\nAmber\nEmily\nGeraldine\nGretchen\nGwendolyn\nHelen\nJacqueline\nJoanne\nJodi\nKari\nKathryn\nKristine\nLaurie\nMaria\nRamona\nRoberta\nRonda\nSonya\nValerie\nAimee\nBelinda\nBeth\nBetty\nBeverly\nCarolyn\nClara\nDiana\nDianna\nIrene\nJolene\nKelli\nKim\nLoretta\nMaggie\nMarilyn\nMolly\nNatalia\nRobyn\nRose\nSara\nShanna\nShelley\nTami\nTracey\nVictoria\nJennifer\nMichelle\nLisa\nKimberly\nHeather\nAmy\nChristine\nAngela\nMelissa\nMary\nElizabeth\nKaren\nShannon\nChristina\nRebecca\nJulie\nStephanie\nBrenda\nDawn\nLaura\nSarah\nTammy\nTina\nCrystal\nTracy\nKatherine\nNicole\nSharon\nLori\nMelanie\nApril\nHeidi\nHolly\nPamela\nTanya\nTeresa\nCynthia\nPatricia\nSusan\nCarrie\nDeborah\nErin\nKelly\nRenee\nAndrea\nCheryl\nKathleen\nNancy\nSara\nSheila\nDanielle\nKatrina\nMargaret\nMonica\nTamara\nBrandy\nMelinda\nSandra\nStacy\nWendy\nAmber\nBarbara\nDonna\nKim\nKristine\nPaula\nTonya\nAlice\nAllison\nAnna\nDiana\nDorothy\nJacqueline\nJessica\nMichele\nRachel\nRobin\nShelly\nStacey\nTheresa\nValerie\nAnita\nCarla\nCatherine\nChristy\nKristen\nKristina\nSuzanne\nTara\nTerri\nAmanda\nEmily\nJanet\nJeanne\nJenny\nJodi\nKathryn\nLeah\nLinda\nLora\nMarie\nMarsha\nNatalie\nRoberta\nSamantha\nSherry\nStella\nTiffany\nVictoria\nBeverly\nBrandi\nCarmen\nCindy\nDana\nDebra\nDesiree\nEva\nJeanette\nJulia\nKrista\nLaurie\nLynn\nMaria\nMarilyn\nMartha\nRena\nRhonda\nRobyn\nShirley\nSonya\nTraci\nTracie\nTrina\nAlexandra\nAnn\nAnne\nAutumn\nBonnie\nCarolyn\nCharlene\nDebbie\nDenise\nElaine\nGina\nGrace\nGretchen\nGwen\nHelen\nJill\nJoanne\nJodie\nJuanita\nJudy\nKathy\nKerri\nKerry\nKristie\nMisty\nPeggy\nPriscilla\nRita\nRose\nRuth\nSabrina\nShana\nShelley\nSonja\nSophie\nTeri\nTracey\nJennifer\nMichelle\nStephanie\nAmy\nHeather\nLisa\nAngela\nKimberly\nMary\nElizabeth\nChristine\nJulie\nMelissa\nShannon\nRebecca\nChristina\nTammy\nTina\nLaura\nCynthia\nTeresa\nDawn\nPatricia\nMargaret\nSarah\nWendy\nAmanda\nCatherine\nApril\nBarbara\nCrystal\nKaren\nKatherine\nNicole\nTanya\nCheryl\nKelly\nLori\nSuzanne\nJessica\nStacy\nTheresa\nTraci\nTracy\nBrandy\nDeborah\nHeidi\nKathryn\nMichele\nMolly\nSusan\nTamara\nDanielle\nDenise\nKathleen\nMaria\nMelanie\nNancy\nRachel\nSandra\nAmber\nAnn\nCarrie\nDeanna\nErica\nErin\nJamie\nKatrina\nLinda\nSharon\nTara\nTonya\nAndrea\nCindy\nJodi\nLeslie\nPamela\nPaula\nRobin\nSheila\nValerie\nVanessa\nAlice\nBrenda\nDonna\nHolly\nJill\nKristina\nMonica\nShawna\nSherry\nAimee\nChristy\nDebra\nDiana\nDiane\nJacqueline\nKim\nKrista\nKristine\nLaurie\nMartha\nMisty\nNatalie\nRhonda\nTiffany\nVictoria\nAllison\nAnna\nAnne\nCharity\nEmily\nErika\nGinger\nJosephine\nJoy\nJulia\nKara\nKerry\nKristi\nMarie\nMarilyn\nMegan\nRenee\nRoberta\nShelly\nAudrey\nBetty\nBonnie\nBrandi\nCarmen\nCarolyn\nCheri\nDana\nDarlene\nDena\nEvelyn\nGina\nJenifer\nJoann\nJody\nJoyce\nJudy\nKari\nKellie\nKimberley\nKristen\nKristin\nKristy\nLeah\nLillian\nLora\nMelinda\nPriscilla\nRegina\nShawn\nStacey\nTracey\nTrina\nVera\nJennifer\nHeather\nMichelle\nRebecca\nAmy\nMelissa\nElizabeth\nAngela\nKimberly\nLisa\nMary\nSarah\nStephanie\nChristina\nLaura\nTracy\nShannon\nChristine\nNicole\nJessica\nJulie\nMelanie\nTammy\nTanya\nCrystal\nKelly\nRobin\nAnna\nBrandi\nCarrie\nDawn\nHeidi\nSandra\nTeresa\nAndrea\nCynthia\nHolly\nKatherine\nRachel\nAmanda\nApril\nBrenda\nChristy\nDanielle\nErin\nKaren\nAmber\nDeborah\nDonna\nKristin\nMargaret\nPamela\nSuzanne\nTamara\nTara\nTheresa\nWendy\nJenny\nSara\nTonya\nBarbara\nJolene\nJoy\nLinda\nMolly\nPaula\nRita\nSamantha\nSharon\nTina\nBrandy\nJamie\nLeslie\nMichele\nAnn\nAnne\nDiana\nGina\nJoyce\nMaria\nMarie\nMelinda\nMonica\nNatasha\nPatricia\nRenee\nSherry\nValerie\nAlicia\nAnita\nCarol\nCatherine\nCharlene\nDarlene\nJill\nKathy\nKelley\nKristina\nLori\nMelody\nShelly\nAdrienne\nAgnes\nBertha\nCindy\nJanet\nKathleen\nKrista\nMisty\nNancy\nRhonda\nRoberta\nSally\nStacey\nStacy\nSusan\nTiffany\nTraci\nVictoria\nAutumn\nBeth\nCara\nCarla\nCaroline\nChristie\nDana\nDeanna\nDebra\nDiane\nDorothy\nErica\nGinger\nJane\nJean\nJodi\nJudith\nJulia\nKathryn\nLynette\nMartha\nMegan\nShanna\nShauna\nSheila\nSherri\nSonya\nVanessa\nJennifer\nAmy\nHeather\nAngela\nMichelle\nRebecca\nMelissa\nJessica\nKimberly\nAmanda\nStephanie\nChristina\nRachel\nApril\nLisa\nMary\nSarah\nNicole\nPatricia\nCarrie\nJulie\nKelly\nAmber\nDawn\nShannon\nChristine\nLaura\nTracy\nElizabeth\nHeidi\nKaren\nMelanie\nTara\nKatherine\nTanya\nAndrea\nCrystal\nMisty\nStacy\nTammy\nBrandy\nCatherine\nDonna\nKristin\nSandra\nSusan\nTamara\nTeresa\nDanielle\nDiane\nKathleen\nLeah\nMonica\nPamela\nRobin\nWendy\nBrenda\nCheryl\nChristy\nCynthia\nMelinda\nRenee\nSamantha\nSharon\nStacey\nTheresa\nAlicia\nAnna\nDenise\nJill\nLori\nSara\nValerie\nAnn\nBarbara\nBonnie\nDana\nDeanna\nDeborah\nErin\nHannah\nHolly\nJolene\nNatalie\nRuth\nTonya\nBertha\nCharlene\nErica\nJamie\nKari\nKatie\nKristen\nKristina\nLinda\nMargaret\nMelody\nSuzanne\nTiffany\nCarol\nCarolyn\nCharity\nChristie\nEmily\nErika\nJean\nKarla\nKathryn\nKatrina\nMolly\nRachael\nRuby\nVirginia\nYolanda\nAimee\nAngie\nBillie\nColleen\nDiana\nJanet\nJenny\nJosephine\nOlivia\nRhonda\nRoberta\nRobyn\nShana\nShauna\nShawna\nSheila\nTina\nTracey\nTrina\nVanessa\nAllison\nAnne\nBrandi\nCarmen\nClara\nCourtney\nFrances\nGina\nGinger\nGloria\nHelen\nJackie\nJacqueline\nJeannie\nJodi\nJoy\nKristine\nLeslie\nMandy\nMartha\nNaomi\nRebekah\nShelley\nStacie\nTerri\nTrisha\nVictoria\nJennifer\nHeather\nAngela\nAmy\nMichelle\nChristina\nJessica\nSarah\nJamie\nShannon\nStephanie\nMelissa\nElizabeth\nRachel\nRebecca\nKimberly\nJulie\nLisa\nSara\nAmanda\nDawn\nKelly\nMary\nAmber\nNicole\nHolly\nAnna\nLaura\nBrandy\nCrystal\nHeidi\nWendy\nAndrea\nApril\nDanielle\nErin\nJaime\nKaren\nKathleen\nMonica\nErica\nTanya\nAlice\nCynthia\nKatherine\nMisty\nSamantha\nStacey\nAlicia\nChristine\nDenise\nJolene\nMegan\nMelinda\nTara\nTina\nCarolyn\nJill\nJody\nLindsay\nPatricia\nTammy\nTeresa\nAllison\nCarrie\nCheryl\nDana\nJenny\nJulia\nKathryn\nLori\nMelanie\nMichele\nDeborah\nEmily\nKari\nKristin\nSheila\nTracy\nAshley\nAutumn\nBarbara\nBrenda\nCarmen\nCourtney\nErika\nJoy\nKendra\nKrista\nKristi\nMandy\nMargaret\nRenee\nSharon\nShirley\nTiffany\nTrina\nBrandi\nCarla\nChristy\nJanet\nLeah\nMarie\nRhonda\nRuth\nSabrina\nStacy\nTamara\nTonya\nVictoria\nAimee\nCatherine\nCharlene\nCharlotte\nGloria\nKatrina\nLena\nNancy\nNatalie\nPamela\nSandra\nShanna\nShawna\nSherry\nSusan\nTania\nTheresa\nTrisha\nAlyssa\nAnita\nCarol\nCindy\nDarlene\nDeanna\nDonna\nDora\nEva\nEvelyn\nFelicia\nJacqueline\nJanice\nJeanette\nJoni\nKara\nKathy\nKelli\nKristie\nKristina\nLeslie\nLinda\nMarcia\nNatasha\nNina\nPaula\nRobin\nStacie\nTasha\nValerie\nVanessa\nVeronica\nVirginia\nWhitney\nJennifer\nJessica\nSarah\nAmy\nAngela\nHeather\nMelissa\nShannon\nKimberly\nAmanda\nChristina\nJamie\nAmber\nMichelle\nCarrie\nLisa\nSara\nErin\nRebecca\nNicole\nKelly\nElizabeth\nMary\nAndrea\nStephanie\nChristine\nCrystal\nLaura\nMisty\nRachel\nCynthia\nDawn\nTara\nBrandy\nJulie\nMelanie\nTiffany\nEmily\nKatherine\nWendy\nAnna\nTracy\nDanielle\nKathryn\nKristen\nSabrina\nSusan\nTheresa\nValerie\nCarolyn\nTammy\nTanya\nTina\nChristy\nMegan\nMelinda\nPatricia\nApril\nErica\nSandra\nStacey\nTeresa\nVictoria\nAlicia\nDonna\nHeidi\nHolly\nKatie\nKristina\nMonica\nShawna\nStacy\nHelen\nJaime\nKendra\nKristy\nMarie\nRobin\nSamantha\nAnn\nCheryl\nDana\nDenise\nJanet\nJill\nKaren\nKathleen\nLeah\nNatasha\nSummer\nTamara\nVanessa\nCandice\nColleen\nErika\nJodi\nJody\nJulia\nKatrina\nKelli\nKristin\nMaria\nNatalie\nRhonda\nAdrienne\nAlice\nAllison\nBrandi\nCatherine\nFarrah\nKrista\nLeslie\nLinda\nMandy\nNaomi\nRachael\nTabitha\nTricia\nTrina\nAimee\nAlison\nAnne\nBeth\nBethany\nCassandra\nDeborah\nHelena\nJenny\nJolene\nKara\nKeri\nMargaret\nMichele\nMolly\nOlivia\nPaula\nRebekah\nSerena\nSharon\nSheila\nShelly\nSuzanne\nToni\nTonya\nAmie\nAngel\nAutumn\nBobbie\nBrenda\nCandace\nCarmen\nCarol\nCharlene\nCharlotte\nCourtney\nDaisy\nDarlene\nDeanna\nDesiree\nElisabeth\nEmma\nEsther\nGwendolyn\nJacqueline\nKari\nKerry\nKristi\nLindsay\nLori\nMarisa\nMelody\nRachelle\nRenee\nSasha\nShanna\nSherry\nTonia\nTraci\nVeronica\nJennifer\nHeather\nJessica\nSarah\nMelissa\nMichelle\nAmanda\nAmber\nAngela\nChristina\nAmy\nElizabeth\nCrystal\nLisa\nShannon\nJamie\nRebecca\nStephanie\nKimberly\nMary\nKatherine\nRachel\nTiffany\nKelly\nMegan\nNicole\nSara\nChristine\nKristina\nLaura\nApril\nCarrie\nJulie\nMisty\nErin\nAndrea\nCheryl\nDawn\nEmily\nHolly\nSabrina\nErica\nMelanie\nDenise\nMargaret\nMonica\nWendy\nBrooke\nDanielle\nAnn\nBrandy\nDesiree\nKaren\nKristi\nTanya\nBrenda\nCynthia\nKatrina\nPatricia\nStacy\nTara\nTina\nCarolyn\nDeanna\nDonna\nHeidi\nLori\nMeghan\nSamantha\nTammy\nTheresa\nVanessa\nAlicia\nAllison\nAnna\nCatherine\nKara\nKathleen\nKathryn\nLindsey\nMaria\nMelinda\nNaomi\nRebekah\nSharon\nStacey\nAmelia\nAshley\nAutumn\nBobbi\nJaime\nJill\nKatie\nKristin\nKristine\nKristy\nLeah\nLeslie\nMandy\nMarie\nMolly\nPamela\nTeresa\nVirginia\nAdrienne\nAnnie\nBarbara\nBethany\nBrandi\nCandace\nChristy\nGretchen\nJaclyn\nJosephine\nMariah\nMarilyn\nNatalie\nNatasha\nRachael\nRuth\nSandra\nSummer\nSusan\nTamara\nTami\nTracy\nValerie\nAimee\nAlice\nAnne\nAubrey\nCandice\nCara\nCarla\nDeborah\nErika\nEvelyn\nGinger\nGrace\nHelen\nJacqueline\nJessie\nJoanna\nKari\nMelody\nOlivia\nShauna\nTonya\nVeronica\nAlexis\nAlison\nAudrey\nCaroline\nCasey\nCharlotte\nCindy\nFrances\nHannah\nJanet\nJasmine\nJayme\nJenny\nJodie\nJoy\nKristen\nMarissa\nMeagan\nMonique\nNancy\nRachelle\nRenee\nRoberta\nShanna\nShawna\nSondra\nSuzanne\nTabitha\nTessa\nTia\nYolanda\nJennifer\nAmanda\nMelissa\nSarah\nJessica\nHeather\nAmy\nKimberly\nAngela\nElizabeth\nRebecca\nChristina\nMichelle\nAmber\nCrystal\nNicole\nJamie\nLisa\nStephanie\nKelly\nMegan\nShannon\nRachel\nMary\nAndrea\nChristine\nJulie\nKatherine\nAnna\nApril\nSara\nErin\nTamara\nTara\nDanielle\nEmily\nLaura\nTeresa\nSamantha\nJacqueline\nKara\nMelanie\nVanessa\nKathleen\nBrooke\nHeidi\nKristina\nPatricia\nRobin\nAlicia\nCarrie\nMisty\nTanya\nTiffany\nCatherine\nColleen\nKaren\nLeslie\nSummer\nTammy\nHolly\nKatrina\nStacy\nVirginia\nBrandy\nErica\nKristy\nMaria\nMarie\nMelinda\nSusan\nTracy\nAutumn\nDana\nDawn\nJill\nKristin\nLindsey\nMichele\nMonica\nNaomi\nPaula\nRenee\nSuzanne\nTrisha\nBrandi\nCheryl\nErika\nJenny\nKatie\nNancy\nNatalie\nNatasha\nRebekah\nShanna\nBarbara\nCynthia\nDenise\nDesiree\nDiana\nDonna\nGretchen\nKari\nSonya\nTheresa\nVictoria\nAbigail\nAnn\nAnne\nAshley\nBrianne\nCandice\nCaroline\nCharlene\nJolene\nKathryn\nKristen\nKristine\nKrystal\nMandy\nMeghan\nSheila\nTasha\nAnnie\nAudrey\nAurora\nBethany\nBonnie\nBridget\nCarolyn\nChelsea\nChristy\nCourtney\nGrace\nJaclyn\nJanelle\nJulia\nKate\nLeah\nLori\nMarsha\nMindy\nMiranda\nMorgan\nNichole\nRuth\nSabrina\nSharon\nSheri\nTina\nToni\nWendy\nAlice\nAlison\nAllison\nAngel\nBrenda\nCarmen\nCassie\nCharlotte\nCindy\nConnie\nDeanna\nDiane\nFelicia\nGail\nHilary\nIrene\nJaime\nJessie\nJoanna\nJoy\nMarcie\nMarissa\nMartha\nMolly\nNora\nRachael\nRose\nRosemary\nSandra\nShauna\nShawna\nShelley\nShelly\nSonja\nStacey\nTraci\nTrina\nValerie\nJessica\nJennifer\nSarah\nAmanda\nMelissa\nMichelle\nHeather\nAmber\nRebecca\nErin\nChristina\nAmy\nElizabeth\nAngela\nMary\nLisa\nKimberly\nJamie\nNicole\nStephanie\nAndrea\nCrystal\nKelly\nRachel\nShannon\nTiffany\nKatherine\nSamantha\nMegan\nSara\nKatie\nKristin\nLaura\nApril\nBrandy\nHolly\nJulie\nDawn\nKathleen\nLeah\nTamara\nChristine\nMiranda\nKaren\nKrista\nKristina\nAlicia\nAnna\nDanielle\nKristen\nBonnie\nDana\nErica\nKathryn\nMandy\nMelinda\nNatasha\nSabrina\nTara\nCarrie\nCourtney\nCynthia\nErika\nHeidi\nKatrina\nMaria\nMarie\nMelanie\nMonica\nTracy\nWendy\nBrandi\nBrooke\nCassandra\nMichele\nNatalie\nShawna\nAlison\nAudrey\nCharlene\nKara\nLeslie\nMargaret\nNichole\nRobyn\nVanessa\nAlisha\nEmily\nJulia\nMelody\nMisty\nPatricia\nTasha\nTheresa\nTina\nAllison\nAlyssa\nAshley\nAutumn\nBarbara\nBethany\nDenise\nFrances\nKelli\nLindsay\nLindsey\nRachael\nRuth\nSandra\nSummer\nSusan\nVictoria\nVirginia\nAbigail\nCandace\nCarolyn\nCatherine\nChristy\nDora\nElena\nJenny\nKristine\nLaurie\nLori\nMolly\nRoberta\nSherry\nStacy\nWhitney\nAdrienne\nAngel\nBrook\nCamille\nCarmen\nCasey\nColleen\nDesiree\nEliza\nHannah\nKendra\nKrystal\nLinda\nLouise\nLydia\nLynette\nNaomi\nRebekah\nRobin\nRosemary\nStacey\nTammy\nTeresa\nValerie\nAimee\nAlexis\nAmelia\nAmie\nAnn\nAurora\nBriana\nBrianna\nBridget\nCandice\nCarla\nCharlotte\nDaisy\nDeborah\nDiana\nEsther\nGrace\nHelen\nJacqueline\nJaime\nJana\nJanelle\nJasmine\nJolene\nKari\nKirsten\nKristi\nLacy\nMorgan\nNancy\nRhonda\nSerena\nShanna\nSheila\nTerra\nVeronica\nWillow\nJennifer\nJessica\nSarah\nAmanda\nAmber\nMichelle\nRebecca\nAmy\nElizabeth\nStephanie\nHeather\nMelissa\nAngela\nChristina\nNicole\nCrystal\nErin\nRachel\nKimberly\nLaura\nLisa\nJamie\nMary\nMegan\nShannon\nTiffany\nAnna\nDanielle\nSara\nKelly\nTara\nKatherine\nAndrea\nEmily\nHeidi\nJulie\nKristin\nVanessa\nAlicia\nLeah\nApril\nCarrie\nKathryn\nBrandy\nBrooke\nMisty\nSamantha\nKatie\nKristina\nTamara\nHolly\nKristen\nRebekah\nCynthia\nKathleen\nAshley\nErica\nEsther\nMelanie\nNaomi\nRachael\nRenee\nTanya\nTeresa\nBrandi\nBrittany\nChristine\nJacqueline\nJenny\nJolene\nKaren\nLindsey\nStacy\nTheresa\nBarbara\nBrenda\nCarolyn\nCassandra\nCheryl\nCourtney\nDana\nErika\nHannah\nJulia\nKara\nMargaret\nNatasha\nSandra\nShawna\nTammy\nVictoria\nBonnie\nCatherine\nDiana\nLauren\nLindsay\nMonica\nPamela\nPatricia\nRobin\nSabrina\nWendy\nAnnie\nAutumn\nDawn\nDesiree\nLeslie\nNatalie\nNichole\nRobyn\nStacey\nSusan\nTina\nAllison\nAnne\nBeth\nBethany\nCandice\nCaroline\nClaire\nCristina\nDarlene\nEva\nJana\nJasmine\nKatrina\nKristy\nLatoya\nMaggie\nMandy\nMaria\nRachelle\nShanna\nTracy\nValerie\nAimee\nAlexandra\nAlexis\nAlison\nBobbie\nBrianna\nCaitlin\nCandace\nCara\nChandra\nDebra\nDenise\nDonna\nGabrielle\nGrace\nJill\nKelsey\nKendra\nKrystal\nLinda\nLydia\nMarisa\nMeghan\nNina\nRita\nRuth\nSheila\nSophia\nSummer\nTasha\nTatiana\nVeronica\nVirginia\nAlaina\nAlissa\nAmie\nBeverly\nBridget\nCarol\nCharity\nCharlene\nCharlotte\nColleen\nDiane\nDorothy\nJeanette\nKrista\nKristine\nLeann\nMarilyn\nMaya\nMelinda\nMelody\nMichele\nMiranda\nMolly\nNancy\nRyan\nStella\nTessa\nYvonne\nJennifer\nJessica\nSarah\nAmanda\nCrystal\nNicole\nMelissa\nRebecca\nAmber\nStephanie\nHeather\nRachel\nElizabeth\nChristina\nLaura\nAndrea\nMichelle\nAmy\nJamie\nMegan\nSara\nTiffany\nKimberly\nAngela\nKatherine\nErin\nKristina\nAshley\nDanielle\nLindsay\nMary\nKristin\nEmily\nKelly\nLisa\nAnna\nKatie\nKristen\nSamantha\nTara\nChristine\nHeidi\nJulie\nLeah\nShannon\nCourtney\nErica\nKathleen\nMonica\nLauren\nLindsey\nMorgan\nRachael\nAllison\nApril\nJacqueline\nMelinda\nMolly\nVanessa\nCassandra\nHolly\nNatasha\nBarbara\nKaren\nMargaret\nMiranda\nNatalie\nPatricia\nRobin\nTanya\nAlicia\nBonnie\nBrittany\nCatherine\nCynthia\nDeanna\nSandra\nTina\nTracy\nValerie\nCarrie\nDiana\nJessie\nKathryn\nLacey\nLeslie\nMaria\nMeghan\nShawna\nTamara\nAlexis\nChelsea\nDawn\nErika\nKatrina\nKristy\nMelanie\nNichole\nStacy\nSusan\nTeresa\nAlison\nAudrey\nBethany\nDesiree\nHannah\nJulia\nKelli\nKrystal\nTasha\nAlisha\nAnne\nBrandy\nDenise\nGrace\nHelen\nJill\nJillian\nKelsey\nMichele\nSharon\nSheena\nStacey\nTheresa\nBrandi\nBrooke\nCandice\nCarol\nCasey\nCheryl\nDana\nEsther\nGretchen\nJana\nJanet\nJasmine\nJenny\nJosephine\nKari\nKristine\nMariah\nMartha\nNaomi\nRegina\nRose\nSonya\nTia\nWhitney\nWillow\nAnnie\nAudra\nAutumn\nBeverly\nCaitlin\nCandace\nCassie\nCharlene\nChrystal\nDeborah\nDiane\nDorothy\nEvelyn\nGenevieve\nJohanna\nJolene\nKathy\nKendra\nKrista\nKristi\nLacy\nLaurie\nLydia\nOlivia\nPamela\nRenee\nTabitha\nTammy\nTessa\nVirginia\nWendy\nAlaina\nAlexandra\nAlice\nAnn\nAurora\nBeth\nBreanna\nBrianna\nCarly\nCharlotte\nChristy\nClaire\nColleen\nConnie\nDonna\nElisha\nFaith\nJackie\nJocelyn\nJody\nKasey\nKate\nLaurel\nLinda\nLori\nMandy\nMarie\nMisty\nNikki\nPaula\nRobyn\nRochelle\nRuth\nShana\nSuzanne\nTalia\nTonya\nVictoria\nJennifer\nJessica\nSarah\nAmanda\nMichelle\nNicole\nElizabeth\nAshley\nChristina\nHeather\nRachel\nStephanie\nAmber\nCrystal\nRebecca\nMelissa\nErin\nMegan\nTiffany\nAmy\nLaura\nEmily\nKimberly\nDanielle\nJamie\nLisa\nAngela\nKatherine\nMary\nSara\nTara\nSamantha\nShannon\nKelly\nAnna\nChelsea\nKatie\nApril\nHolly\nKristen\nLauren\nKathleen\nKathryn\nKristina\nLindsey\nAndrea\nBrittany\nHannah\nMaria\nErica\nHeidi\nJacqueline\nJulia\nKrystal\nMargaret\nValerie\nChristine\nCourtney\nDesiree\nSabrina\nVanessa\nAlicia\nCassandra\nLeah\nAllison\nDenise\nJulie\nKatrina\nMelinda\nNatasha\nTheresa\nBonnie\nBrandi\nCarolyn\nCarrie\nCynthia\nDeanna\nKelsey\nRobin\nTeresa\nCatherine\nKayla\nLindsay\nMolly\nShawna\nSheena\nStefanie\nTracy\nBrandy\nCasey\nDana\nDawn\nDiana\nKaren\nMarie\nMeagan\nPatricia\nSandra\nStacy\nTamara\nCandice\nLori\nTabitha\nVictoria\nAudrey\nCandace\nJanice\nJoanna\nJolene\nJosephine\nKristine\nMeghan\nMonica\nPamela\nAbby\nAimee\nAlexandra\nAnne\nAnnie\nEvelyn\nJeanette\nKaty\nKristy\nLarissa\nLeslie\nNancy\nNichole\nNina\nPaula\nRachael\nRebekah\nRenee\nTia\nTrisha\nAbigail\nAlexis\nAlice\nAmelia\nAnn\nBrittney\nBrooke\nCarmen\nCharlene\nDarlene\nDonna\nGrace\nJanet\nJasmine\nJillian\nKara\nKari\nKrista\nKristin\nMariah\nMichele\nMiranda\nMorgan\nRichelle\nSasha\nStacey\nTanya\nTina\nTonya\nAlisha\nAlison\nAshlee\nBarbara\nBrenda\nBrenna\nBriana\nBrianna\nCheryl\nChristy\nColleen\nCori\nEileen\nJaime\nJanelle\nJayme\nJenna\nLacey\nLacy\nMelanie\nNatalie\nNikki\nSharon\nTessa\nVirginia\nWendy\nWhitney\nAngel\nAngelina\nAubrey\nAutumn\nBethany\nBillie\nCaitlin\nCaroline\nChelsey\nClara\nElaine\nElena\nHaley\nHillary\nHollie\nJill\nJohanna\nJustina\nKerry\nLena\nLinda\nLydia\nMarilyn\nMarissa\nNaomi\nRobyn\nRochelle\nRuth\nSherri\nSonya\nSophia\nSusan\nTasha\nVeronica\nJessica\nJennifer\nSarah\nAmanda\nNicole\nAshley\nStephanie\nHeather\nMelissa\nRachel\nEmily\nMegan\nElizabeth\nMichelle\nAmber\nRebecca\nChristina\nCrystal\nTiffany\nAmy\nDanielle\nAndrea\nJamie\nErin\nLaura\nAngela\nKimberly\nKatherine\nBrittany\nSamantha\nLauren\nLindsey\nMary\nSara\nShannon\nAlicia\nAnna\nCourtney\nKatie\nJenna\nKristen\nLisa\nApril\nHolly\nKristin\nLindsay\nChelsea\nErica\nKathryn\nKelly\nChristine\nHannah\nVanessa\nKristina\nHeidi\nSheena\nJulie\nBrandy\nCatherine\nMaria\nMeghan\nMiranda\nTamara\nWhitney\nMorgan\nNatasha\nRachael\nVictoria\nCassandra\nCynthia\nDana\nKaren\nKrystal\nPatricia\nValerie\nJacqueline\nKelsey\nLeslie\nMarissa\nMelanie\nTanya\nAlexis\nBrandi\nErika\nJenny\nJoanna\nKristine\nMarie\nMonica\nShawna\nTheresa\nAlexandra\nAlison\nAmelia\nBonnie\nBrenda\nCaitlin\nCarrie\nCharlene\nClaire\nDenise\nDesiree\nKendra\nKira\nLacey\nLeah\nMisty\nSabrina\nStacy\nTeresa\nAnn\nCheryl\nDeborah\nJanelle\nJasmine\nJulia\nKara\nKate\nKathleen\nKatrina\nKirsten\nMartha\nMelinda\nRenee\nSharon\nTasha\nTina\nVeronica\nWendy\nAlisha\nBreanna\nBrianna\nCara\nDawn\nJessie\nKrista\nMargaret\nNatalie\nNichole\nPaula\nRose\nStacey\nTara\nAllison\nAnne\nAudrey\nCandace\nCasey\nColleen\nDeanna\nElisabeth\nEva\nKari\nKayla\nLori\nLouise\nMariah\nMolly\nNaomi\nRebekah\nSasha\nSavannah\nSonya\nSusan\nTracy\nAbigail\nAlana\nAngel\nAthena\nBarbara\nBethany\nBrittney\nCandice\nCarolyn\nCassie\nChelsey\nDaisy\nElise\nGabrielle\nGina\nHillary\nJaime\nJanell\nJill\nJolene\nJosephine\nKasey\nMandy\nMindy\nRhonda\nRobin\nRuth\nShauna\nSophia\nTessa\nVirginia\nAdrianne\nAlexandria\nAlice\nAlyssa\nAna\nAnnette\nAnnie\nAurora\nBrenna\nBrooke\nCarly\nCaroline\nCeleste\nChanel\nCharity\nCharlotte\nChelsie\nCindy\nDarlene\nGloria\nGrace\nHelen\nHollie\nIris\nJacquelyn\nJesse\nJohanna\nJoy\nJoyce\nKristy\nLillian\nMackenzie\nMichele\nPauline\nRachelle\nRandi\nRhiannon\nShana\nStefanie\nTabatha\nTammy\nJessica\nJennifer\nAmanda\nSarah\nAshley\nStephanie\nNicole\nElizabeth\nHeather\nMegan\nMelissa\nRachel\nDanielle\nBrittany\nAmber\nChristina\nAmy\nEmily\nErin\nJamie\nRebecca\nCrystal\nLaura\nMary\nMichelle\nSamantha\nTiffany\nKimberly\nChristine\nAngela\nKatherine\nSara\nJenna\nKelly\nAndrea\nLindsey\nAnna\nChelsea\nLisa\nAlicia\nKristen\nLauren\nTara\nLindsay\nApril\nKatie\nKrystal\nKatrina\nKelsey\nAllison\nErica\nHolly\nKristin\nCourtney\nKathleen\nKristina\nMiranda\nValerie\nCassandra\nKathryn\nPatricia\nVanessa\nNatasha\nWhitney\nAlexandra\nCatherine\nAlexis\nJulia\nMolly\nShannon\nCynthia\nDesiree\nLacey\nLeah\nMeghan\nBethany\nMaria\nCaitlin\nCheryl\nDiana\nJacqueline\nJulie\nKaren\nSheena\nBrandy\nBreanna\nCarolyn\nDawn\nHeidi\nKara\nKatelyn\nKendra\nVeronica\nVictoria\nAutumn\nBrittney\nCarly\nColleen\nDana\nGrace\nMeredith\nMonica\nMorgan\nNichole\nRachael\nSabrina\nShawna\nSylvia\nTanya\nTheresa\nAbigail\nAlexandria\nAnn\nAnne\nAnnie\nHannah\nJanelle\nJasmine\nNatalie\nRandi\nRoxanne\nSierra\nAlyssa\nAriel\nBonnie\nBrooke\nCarmen\nCarol\nCaroline\nCarrie\nCharlene\nDeborah\nEmma\nKayla\nKirsten\nKrista\nKristine\nRuth\nSharon\nSonya\nTerra\nAdrienne\nAimee\nAlice\nAudrey\nBridget\nCherilyn\nErika\nEsther\nJennie\nJordan\nJosephine\nKari\nLacy\nLarissa\nLydia\nMaggie\nMargaret\nMarie\nMartha\nRebekah\nSavannah\nStacey\nTamara\nTammy\nTeresa\nTonya\nTracy\nVirginia\nAlisha\nAshlee\nAurora\nBrianna\nBrianne\nCandice\nCasey\nHaley\nJenny\nJill\nJolene\nKristi\nKrystle\nLinda\nMara\nMarilyn\nMeagan\nMelinda\nMisty\nNaomi\nNikki\nPamela\nRenee\nRochelle\nStacy\nStefanie\nSusan\nTasha\nTina\nTrisha\nYvonne\nAshleigh\nBreanne\nCandace\nChelsey\nClara\nDenise\nDiane\nDominique\nEva\nEvelyn\nGina\nIris\nJayme\nJeanette\nJessie\nKate\nKristie\nKrysta\nLeslie\nLorena\nMallory\nMandy\nMelanie\nNora\nOlivia\nPaula\nRaquel\nRoberta\nRobin\nSandra\nSasha\nSavanna\nShauna\nSusanna\nSuzanne\nTatiana\nJessica\nAmanda\nSarah\nAshley\nJennifer\nStephanie\nNicole\nMelissa\nDanielle\nElizabeth\nHeather\nSamantha\nBrittany\nJamie\nRachel\nMegan\nAmber\nCrystal\nLaura\nMichelle\nEmily\nKatherine\nAmy\nTiffany\nChristina\nWhitney\nErin\nKimberly\nRebecca\nChelsea\nSara\nCourtney\nMary\nAndrea\nAnna\nVanessa\nErica\nAngela\nKelly\nAllison\nKathryn\nKatie\nKatrina\nLindsey\nChristine\nKristin\nLauren\nHannah\nJenna\nKrista\nShannon\nAlicia\nDesiree\nKathleen\nLindsay\nLisa\nHolly\nKristen\nLeah\nPatricia\nBrittney\nVictoria\nAlexis\nBrianna\nCassandra\nJulie\nKristina\nCaitlin\nCatherine\nHeidi\nJordan\nJulia\nKrystal\nMeghan\nMolly\nNatasha\nRobin\nCynthia\nErika\nMaria\nMorgan\nNichole\nTara\nKelsey\nMonica\nRebekah\nSavannah\nShawna\nBethany\nCasey\nFelicia\nKayla\nRachael\nApril\nBrandy\nBrenda\nDenise\nJacqueline\nJasmine\nJenny\nKaitlin\nKristi\nKristine\nMallory\nRenee\nTanya\nAlexandra\nCarly\nCarolyn\nCassie\nColleen\nDiana\nJolene\nKaren\nNaomi\nNatalie\nSharon\nStacey\nDeborah\nEllen\nEmma\nJanelle\nJessie\nKendra\nLarissa\nLena\nLinda\nNancy\nSabrina\nStacy\nSusan\nTabitha\nTracy\nVeronica\nVirginia\nAudrey\nAutumn\nBridget\nCandace\nCandice\nDawn\nDeanna\nEva\nGabrielle\nHilary\nIrene\nJillian\nKayleigh\nLillian\nMargaret\nMarissa\nMelanie\nMiranda\nRandi\nRobyn\nTamara\nTeresa\nTheresa\nTrisha\nValerie\nAlison\nAlyssa\nAnastasia\nAnnette\nAshlee\nBonnie\nBrandi\nBrandie\nCarrie\nCasandra\nChelsey\nCheryl\nClara\nDiane\nHailey\nHelen\nJaclyn\nJaime\nJane\nJeanette\nKatelyn\nKatharine\nLacey\nLucy\nMarie\nMartha\nMisty\nRochelle\nSasha\nSheena\nSophie\nSydney\nTraci\nAlisha\nAllyson\nAngelina\nAnne\nBreanna\nBriana\nCallie\nCamille\nCarissa\nCarmen\nCharlotte\nChrista\nChristy\nDana\nDominique\nElena\nGina\nHayley\nJackie\nJade\nJesse\nJoanna\nJustina\nJustine\nKara\nKari\nKasey\nKate\nKelley\nKrystle\nLeslie\nLori\nLydia\nMadeline\nMeagan\nMelinda\nMeredith\nNikki\nRuby\nSally\nSheila\nTammy\nTia\nTina\nJessica\nAmanda\nAshley\nSarah\nJennifer\nMegan\nHeather\nSamantha\nBrittany\nElizabeth\nNicole\nDanielle\nEmily\nRachel\nStephanie\nAmber\nKimberly\nMichelle\nCrystal\nAmy\nRebecca\nSara\nTiffany\nChristina\nMelissa\nWhitney\nMary\nKatherine\nKatie\nKelly\nShannon\nChelsea\nKayla\nKristina\nLauren\nAngela\nErica\nAndrea\nChristine\nHannah\nJamie\nLaura\nCourtney\nKelsey\nKendra\nErin\nHolly\nKristen\nLindsay\nLisa\nKathryn\nCassandra\nKristin\nLindsey\nAlicia\nNatasha\nAnna\nMolly\nRachael\nHeidi\nKathleen\nVanessa\nAudrey\nBrianna\nJulia\nKatrina\nPatricia\nAlyssa\nApril\nBrittney\nVictoria\nCaitlin\nAllison\nAshlee\nBarbara\nCarrie\nKristine\nSandra\nAbigail\nBethany\nDesiree\nJacqueline\nJasmine\nKaren\nKatelyn\nKrystal\nMargaret\nMeghan\nNatalie\nRebekah\nRenee\nRobin\nValerie\nAlison\nAnastasia\nCandace\nCassie\nDana\nDawn\nDenise\nJulie\nKara\nKate\nLeah\nMartha\nMonica\nSophie\nTara\nTracy\nAdrienne\nAlexandra\nAngelina\nBonnie\nCasey\nCharity\nCharlene\nCynthia\nElena\nErika\nHelen\nJaime\nJenna\nKristy\nSasha\nSharon\nStacy\nSusan\nTanya\nVirginia\nAlexandria\nAriel\nBreanna\nBriana\nCarol\nCatherine\nElise\nEva\nGrace\nJaclyn\nJessie\nKristi\nMarie\nMarlene\nMorgan\nNikki\nOlivia\nRuth\nSabrina\nSavannah\nSierra\nStacey\nTeresa\nVeronica\nAlexis\nAshleigh\nBrandy\nBrooke\nCharlotte\nClaire\nDiana\nElisabeth\nEmma\nFelicia\nGabrielle\nHaley\nJoanna\nJustine\nKaitlin\nKasey\nLaurel\nMaggie\nMallory\nMeagan\nMiranda\nNaomi\nPamela\nRachelle\nRochelle\nRose\nShawna\nSophia\nTheresa\nAimee\nAlisha\nAnne\nAshlea\nAubrey\nAurora\nAutumn\nBrandi\nBrenna\nBrianne\nCarly\nCaroline\nCarolyn\nCheryl\nCiara\nCora\nDarlene\nDeanna\nDeborah\nGreta\nJade\nJanelle\nJena\nJillian\nJodi\nKaty\nKelli\nKeri\nKrista\nLarissa\nLeslie\nLillian\nMandy\nMara\nMaria\nMarissa\nMelinda\nMelody\nMisty\nNina\nRhonda\nRobyn\nRoxanne\nSally\nSheena\nTamara\nTammy\nJessica\nAmanda\nAshley\nJennifer\nSarah\nElizabeth\nSamantha\nStephanie\nMegan\nRebecca\nBrittany\nHeather\nNicole\nMichelle\nAmber\nDanielle\nRachel\nMelissa\nEmily\nKayla\nTiffany\nChristina\nKimberly\nChelsea\nCrystal\nKelsey\nLauren\nSara\nAmy\nAnna\nErin\nMary\nShannon\nKatherine\nLisa\nCaitlin\nLaura\nAndrea\nCourtney\nJamie\nAlicia\nAlyssa\nChristine\nHannah\nKatie\nKristen\nKristina\nLindsay\nMolly\nAllison\nAngela\nKathryn\nAlexandra\nJasmine\nKendra\nVanessa\nErica\nKatelyn\nKelly\nNatasha\nWhitney\nKatrina\nMargaret\nAlexandria\nChelsey\nMelanie\nBrittney\nHeidi\nKara\nMorgan\nBethany\nCynthia\nKathleen\nKrystal\nRachael\nVictoria\nBarbara\nCassandra\nCatherine\nEmma\nJenna\nLeah\nNichole\nRobin\nSasha\nHolly\nJacqueline\nLacey\nMonica\nTara\nTessa\nApril\nCarolyn\nCarrie\nCasey\nCharlene\nColleen\nDana\nGrace\nJordan\nJulie\nKaitlyn\nKristin\nKristine\nLindsey\nMaria\nMiranda\nPatricia\nSabrina\nAbigail\nBreanna\nErika\nEva\nFelicia\nJanelle\nJessie\nKari\nMarie\nMarissa\nSharon\nShauna\nAlexis\nAutumn\nBrandi\nBrandy\nBrianna\nBrooke\nCarla\nChantel\nCheryl\nClaire\nDeanna\nJenny\nJulia\nMartha\nOlivia\nRoberta\nShaina\nSusan\nTeresa\nTrisha\nValerie\nAimee\nAngel\nAshlee\nAshleigh\nBriana\nCarissa\nDesiree\nHilary\nIda\nJacquelyn\nJill\nKaren\nKate\nKyla\nLori\nMadison\nMeghan\nMisty\nNancy\nRebekah\nRenee\nRobyn\nRose\nRuth\nSavannah\nSierra\nSophia\nTabitha\nTaylor\nAlice\nAlisha\nAngelica\nAngelina\nAubrey\nAudrey\nBonnie\nCara\nCharlotte\nChristy\nDiana\nEsther\nGabrielle\nHayley\nIrene\nIsabel\nJanet\nJanice\nJillian\nJocelyn\nJolene\nKaitlin\nKayleigh\nKelli\nKirsten\nLaurel\nLeslie\nLucy\nNatalia\nNatalie\nNellie\nNina\nPamela\nRegina\nSally\nStacey\nTanya\nTheresa\nTia\nVirginia\nJessica\nAshley\nAmanda\nSarah\nSamantha\nJennifer\nDanielle\nStephanie\nEmily\nBrittany\nAmber\nMegan\nKayla\nHeather\nRebecca\nChelsea\nNicole\nRachel\nElizabeth\nKelsey\nMichelle\nErin\nKatherine\nCourtney\nMelissa\nTiffany\nJamie\nChristina\nKimberly\nMary\nLauren\nAnna\nKelly\nSara\nHannah\nLisa\nCaitlin\nCassandra\nAllison\nAlyssa\nAmy\nAndrea\nAngela\nAlicia\nLindsey\nShannon\nAlexandra\nCrystal\nJordan\nKristen\nWhitney\nBrittney\nLaura\nHolly\nKatelyn\nKatie\nLeah\nSierra\nVictoria\nHeidi\nJacqueline\nKristina\nBrianna\nCatherine\nErica\nJulia\nKathleen\nKatrina\nMiranda\nMorgan\nTaylor\nJasmine\nLindsay\nChristine\nJenna\nKaren\nKrystal\nNatasha\nPaige\nTara\nAlexandria\nApril\nEmma\nKendra\nKrista\nMelanie\nMelinda\nMolly\nNatalie\nRobin\nCasey\nGrace\nKara\nMaria\nNichole\nSasha\nSydney\nValerie\nVanessa\nVeronica\nAutumn\nBrianne\nDesiree\nFelicia\nGabrielle\nHaley\nJanelle\nKaitlin\nKirsten\nKylie\nMadison\nMarie\nMarissa\nMeagan\nMeghan\nPatricia\nStacey\nTracy\nAlexis\nBethany\nBonnie\nCheryl\nDana\nGloria\nHayley\nHelen\nHilary\nKaitlyn\nKari\nKristin\nMargaret\nMariah\nMichaela\nRachael\nRoberta\nRuth\nSophia\nSusan\nAngelica\nAriel\nAshton\nBrandi\nBriana\nBrooke\nCarly\nChelsey\nJenny\nJustine\nKathryn\nLydia\nMercedes\nMonica\nRachelle\nRebekah\nSabrina\nSharon\nSheila\nSonja\nTamara\nTessa\nTheresa\nAimee\nAlice\nAlison\nAnnie\nAshlee\nBarbara\nBrenda\nCaroline\nCarolyn\nCarrie\nGenevieve\nJoanna\nKate\nKristy\nLeona\nNaomi\nRochelle\nSandra\nTanya\nTina\nAdrienne\nAlaina\nAlina\nAlisha\nAmelia\nAnne\nArianna\nAubrey\nAudra\nAudrey\nBrandy\nCaitlyn\nCamille\nCarol\nCharlene\nCharlotte\nChelsie\nChloe\nChristie\nClaire\nColleen\nDawn\nDenise\nElena\nErika\nJane\nJoanne\nJulie\nKaylee\nKelli\nKyla\nLacy\nLinda\nLori\nMackenzie\nMarisa\nMartha\nMelody\nMoriah\nOlivia\nSavannah\nSerena\nSummer\nTeresa\nTia\nTraci\nTrista\nYvonne\nJessica\nAshley\nAmanda\nBrittany\nSamantha\nSarah\nMegan\nRachel\nJennifer\nElizabeth\nHeather\nStephanie\nNicole\nEmily\nChelsea\nMichelle\nAmber\nDanielle\nKayla\nKelsey\nHannah\nMelissa\nRebecca\nKatherine\nLauren\nTiffany\nAmy\nLaura\nAnna\nCourtney\nMary\nAlyssa\nChristina\nJamie\nJordan\nKathryn\nErin\nKristina\nAndrea\nSara\nVictoria\nKelly\nKathleen\nShannon\nAngela\nKatelyn\nKimberly\nCrystal\nKatie\nAriel\nLindsey\nMiranda\nApril\nCaitlin\nErica\nKristen\nShelby\nAlexandra\nAlicia\nAllison\nBrianna\nCassandra\nJasmine\nKatrina\nMolly\nNatasha\nBrittney\nBrooke\nHolly\nSierra\nGrace\nJacqueline\nKendra\nKristin\nPaige\nBreanna\nLeah\nMorgan\nSabrina\nVanessa\nChristine\nHeidi\nJenna\nKirsten\nLindsay\nLisa\nMelanie\nMonica\nOlivia\nRebekah\nWhitney\nAlexis\nAlisha\nCasey\nCynthia\nDesiree\nHaley\nKaren\nMaria\nNaomi\nNatalie\nPatricia\nAnne\nAutumn\nBethany\nGabrielle\nKaitlin\nKara\nKristy\nTaylor\nCatherine\nChloe\nErika\nJoanna\nKate\nLacey\nMarissa\nMartha\nNichole\nTara\nCarolyn\nChelsey\nDenise\nEmma\nKaitlyn\nKrista\nKrystal\nLeslie\nMichaela\nRenee\nRose\nTabitha\nVeronica\nAshlee\nBrandi\nBriana\nColleen\nFrances\nHilary\nJessie\nJosephine\nJulia\nLydia\nMargaret\nMelinda\nSydney\nTasha\nTheresa\nTracy\nTrisha\nAdrienne\nAlison\nAudrey\nBridget\nCandace\nCarissa\nDiana\nDonna\nEsther\nGloria\nHanna\nHayley\nJanet\nLillian\nMallory\nMeagan\nMeghan\nMisty\nNikki\nNina\nRachael\nRachelle\nSandra\nShawna\nSophia\nAimee\nAlexa\nAlice\nAnastasia\nAngelica\nAriana\nBailey\nBritney\nCallie\nCarmen\nCarrie\nChantel\nCharity\nCharlene\nCharlotte\nClaire\nClarissa\nDana\nDeanna\nDestiny\nEllen\nHelen\nHillary\nJayme\nJillian\nJulie\nKari\nKassandra\nKylee\nLarissa\nLena\nMarie\nRandi\nRobin\nRobyn\nSadie\nSavannah\nShaina\nTia\nZoe\nJessica\nAshley\nAmanda\nSarah\nSamantha\nBrittany\nStephanie\nElizabeth\nJennifer\nKayla\nChelsea\nShelby\nKelsey\nMegan\nDanielle\nEmily\nRachel\nKatherine\nAmber\nRebecca\nMelissa\nHannah\nNicole\nAlyssa\nChristina\nHeather\nMichelle\nMary\nLauren\nAnna\nAlexandra\nAmy\nTaylor\nAriel\nKimberly\nCourtney\nMiranda\nVictoria\nAndrea\nTiffany\nMariah\nJamie\nJulia\nLindsey\nErin\nKelly\nMolly\nCaitlin\nSara\nShannon\nAlicia\nHolly\nJenna\nKatrina\nCassandra\nCrystal\nLaura\nNatasha\nWhitney\nJordan\nKathleen\nKatelyn\nKathryn\nKatie\nKristen\nKristina\nMadison\nBrianna\nKaitlyn\nAllison\nCatherine\nHaley\nSierra\nAlexis\nAshlee\nJasmine\nKaren\nMelanie\nOlivia\nRebekah\nVanessa\nAlexandria\nBriana\nBrittney\nMargaret\nValerie\nChristine\nErica\nHanna\nJacqueline\nKirsten\nLindsay\nMorgan\nPaige\nPatricia\nAbigail\nAngela\nApril\nBarbara\nBreanna\nDeanna\nJolene\nLisa\nMaria\nMeghan\nBethany\nBianca\nBrandi\nBrooke\nCarmen\nDesiree\nDestiny\nEmma\nGabrielle\nGrace\nJillian\nKate\nMisty\nTammy\nWendy\nAlysha\nAmelia\nBailey\nCynthia\nErika\nEsther\nHayley\nHelen\nJoanne\nKaitlin\nKaylee\nKendra\nKrista\nKristi\nKrystal\nLacey\nMackenzie\nMelinda\nMonica\nRachael\nRenee\nRose\nSavannah\nSharon\nShawna\nStacey\nSydney\nTabitha\nTara\nTatiana\nTessa\nVirginia\nAdrienne\nAlexa\nAnne\nAshleigh\nBertha\nBobbi\nBrandy\nCarol\nCarolyn\nChelsie\nCheryl\nCheyenne\nChloe\nDana\nEllen\nFrances\nHeidi\nHillary\nIrene\nJaclyn\nJulie\nKiana\nKristin\nLeslie\nMarie\nMarissa\nNichole\nRachelle\nRoberta\nSabrina\nTanya\nTasha\nAlison\nAnastasia\nAutumn\nAyla\nBrittni\nCandace\nCarly\nCasandra\nCharlene\nChelsey\nChrista\nDarlene\nDesirae\nDiana\nDonna\nElaine\nEva\nFelicia\nHilary\nJanet\nJenny\nJocelyn\nJosephine\nKara\nKiersten\nKristy\nLaurel\nLeanne\nLydia\nMadeline\nMarina\nMelody\nMeranda\nMercedes\nNoelle\nPamela\nRochelle\nShayna\nSophie\nTess\nTheresa\nTia\nVeronica\nJessica\nAshley\nAmanda\nSarah\nEmily\nSamantha\nElizabeth\nBrittany\nStephanie\nChelsea\nKayla\nNicole\nMegan\nHannah\nRachel\nVictoria\nDanielle\nCourtney\nRebecca\nAlyssa\nAlexandra\nTaylor\nAmber\nHeather\nMelissa\nKelsey\nJennifer\nShelby\nChristina\nKimberly\nMariah\nJamie\nAnna\nJordan\nKristen\nLauren\nMichelle\nSierra\nErin\nKatherine\nKathryn\nKaitlyn\nLindsey\nMary\nCaitlin\nLaura\nBrianna\nKatelyn\nSara\nShannon\nJasmine\nMargaret\nMorgan\nTiffany\nKathleen\nMolly\nSavannah\nCassandra\nHolly\nKatie\nKatrina\nKrystal\nAndrea\nCatherine\nKaylee\nOlivia\nBethany\nBreanna\nFelicia\nJenna\nMiranda\nPaige\nAlicia\nAngela\nMaria\nWhitney\nAlexandria\nAllison\nAriel\nHaley\nLeah\nMadison\nNatasha\nRachael\nSydney\nTara\nZoe\nAmy\nApril\nAudrey\nBrooke\nCrystal\nErika\nHayley\nKendra\nKristina\nMadeline\nMarissa\nNikki\nVanessa\nAlexis\nBrandi\nCynthia\nEmma\nGrace\nHilary\nJulia\nMackenzie\nMelanie\nMonica\nTyler\nBriana\nChristine\nClara\nHailey\nJacqueline\nJulie\nKaitlin\nKelly\nKylie\nLisa\nNichole\nPatricia\nRaven\nShawna\nAmelia\nBarbara\nBrittney\nCaitlyn\nClaire\nDana\nEsther\nHeidi\nHillary\nJade\nKristin\nMeghan\nMercedes\nNatalie\nRebekah\nRobin\nRobyn\nSabrina\nTessa\nTiana\nAnastasia\nCasey\nChrista\nElena\nEllen\nErica\nJessie\nKate\nKira\nKrista\nMisty\nRenee\nSasha\nTasha\nAbigail\nAshleigh\nAutumn\nCarissa\nChelsey\nCheyenne\nDeborah\nDenise\nDesiree\nJaclyn\nJennie\nJillian\nJoanna\nJustine\nKara\nKarina\nKiana\nLarissa\nMaggie\nMarie\nMarina\nNaomi\nSadie\nTanya\nVeronica\nAngelica\nAnne\nAnnie\nBrandy\nBrenda\nCamille\nCarly\nCarmen\nCharlene\nDenali\nDevon\nGabrielle\nHanna\nJaime\nJanelle\nJordyn\nKarissa\nKarlie\nKasey\nLindsay\nMckenzie\nMinnie\nPriscilla\nRachelle\nSavanna\nShelly\nTracy\nValerie\nJessica\nAshley\nSarah\nSamantha\nAmanda\nTaylor\nStephanie\nRachel\nEmily\nHannah\nKelsey\nRebecca\nElizabeth\nKayla\nBrittany\nNicole\nChelsea\nJennifer\nAmber\nDanielle\nMegan\nJasmine\nCourtney\nKatherine\nMelissa\nAndrea\nAlexandra\nMary\nVictoria\nAnna\nHeather\nLauren\nMichelle\nOlivia\nShelby\nTiffany\nHaley\nJordan\nJamie\nMiranda\nAlyssa\nChristina\nMariah\nShannon\nBrianna\nAllison\nAngela\nCaitlin\nCassandra\nLaura\nMorgan\nLindsey\nSierra\nCheyenne\nKatelyn\nKathryn\nEmma\nKaitlyn\nKatie\nKelly\nKristina\nMackenzie\nMarissa\nSavannah\nAlexis\nGabrielle\nHailey\nHolly\nMadison\nMonica\nRebekah\nSara\nBriana\nBrittney\nErin\nKimberly\nKristen\nAlexandria\nAlicia\nBethany\nBrooke\nChristine\nErica\nErika\nJulia\nMarina\nVanessa\nCrystal\nLeah\nMargaret\nMaria\nNaomi\nRochelle\nAbigail\nAmy\nAriel\nAutumn\nBreanna\nChelsey\nKaylee\nKrystal\nMolly\nSydney\nBrandi\nCaitlyn\nCatherine\nDesiree\nGrace\nKathleen\nKendra\nLindsay\nNatalie\nRachael\nAnne\nApril\nDakota\nGabriella\nJenna\nJillian\nKatrina\nLacey\nMadeline\nMakayla\nMeghan\nMichaela\nNatasha\nNichole\nPatricia\nRobin\nSabrina\nTiana\nAlisha\nAurora\nBailey\nCaroline\nCarolyn\nCasey\nChloe\nDestiny\nHayley\nJacqueline\nJanelle\nJessie\nJosephine\nKaitlin\nKrista\nKylie\nMarie\nRose\nShayla\nSusan\nTamara\nTessa\nTyler\nVeronica\nWhitney\nAimee\nAlice\nAlison\nChelsie\nCynthia\nDawn\nDominique\nHaylee\nHeidi\nHillary\nKyla\nKylee\nKyra\nMckenzie\nMicaela\nPaige\nSadie\nSophie\nTara\nTaryn\nTori\nAlexa\nAlyson\nAngel\nAshlee\nAudrey\nCandice\nCharlene\nClaire\nClarissa\nDeanna\nDonna\nEleanor\nEunice\nJazmine\nJocelyn\nKatelynn\nKaylyn\nKiana\nKirsten\nLisa\nLydia\nMeagan\nMelody\nRandi\nSharon\nSophia\nTia\nTonya\nValerie\nYvonne\nJessica\nAshley\nSarah\nSamantha\nTaylor\nEmily\nElizabeth\nBrittany\nAmanda\nHannah\nRebecca\nKayla\nMegan\nNicole\nRachel\nKelsey\nAmber\nChelsea\nMelissa\nDanielle\nLauren\nVictoria\nSierra\nMichelle\nMiranda\nMorgan\nCourtney\nShelby\nStephanie\nJasmine\nMary\nOlivia\nAlexandra\nJordan\nMadison\nShannon\nAnna\nCheyenne\nHeather\nKatherine\nKimberly\nLindsey\nAlyssa\nBrandi\nCaitlin\nHaley\nJamie\nJennifer\nMarissa\nMichaela\nAlexis\nBrianna\nChristina\nEmma\nHailey\nAllison\nBrittney\nKatie\nMariah\nAmy\nCatherine\nErin\nJulia\nPaige\nSavannah\nSydney\nAngela\nAutumn\nChloe\nKatelyn\nKathleen\nKathryn\nKendra\nKristen\nSara\nAbigail\nCassandra\nCrystal\nHolly\nJessie\nLeah\nMckenzie\nAlexandria\nAlicia\nBreanna\nBriana\nGrace\nJenna\nKaitlyn\nKatrina\nKristina\nMikayla\nNatalie\nRachael\nTiffany\nVanessa\nAndrea\nBrandy\nBrenna\nBrooke\nFaith\nGabrielle\nKirsten\nLaura\nMolly\nNatasha\nSabrina\nAlexa\nBailey\nBethany\nCasey\nDestiny\nErica\nErika\nHeidi\nKaitlin\nKrystal\nMadeline\nMaria\nMeghan\nPatricia\nRebekah\nAriel\nCassidy\nChelsey\nDesiree\nHayley\nJohanna\nJosephine\nKaylee\nKelly\nShawna\nTheresa\nValerie\nAudrey\nCarolyn\nDarian\nDeanna\nElena\nJacqueline\nJade\nKara\nKassandra\nLydia\nMackenzie\nMarina\nMarisa\nTatiana\nAmelia\nAngelina\nAshleigh\nCaitlyn\nClaire\nCynthia\nDenali\nHelen\nJasmin\nJillian\nJulie\nKari\nKiera\nKylie\nMaggie\nMargaret\nMelanie\nMonica\nNichole\nNina\nRachelle\nSavanna\nTabitha\nTara\nTyler\nWhitney\nAgnes\nAlayna\nAnastasia\nCarly\nCassie\nCecilia\nChantel\nChristine\nColleen\nDeborah\nEllen\nEvelyn\nJaime\nJanelle\nKaren\nKasandra\nLillian\nLinda\nLindsay\nMakayla\nMercedes\nPamela\nShayla\nStacey\nTessa\nVeronica\nSamantha\nJessica\nSarah\nAshley\nHannah\nEmily\nAmanda\nKayla\nMegan\nJordan\nTaylor\nBrittany\nElizabeth\nKatherine\nMariah\nMary\nNicole\nRachel\nRebecca\nVictoria\nChelsea\nAlyssa\nMadison\nSierra\nDanielle\nKelsey\nBrianna\nCheyenne\nCourtney\nMiranda\nShelby\nAlexandra\nAnna\nHeather\nMorgan\nAlexandria\nHaley\nKaitlyn\nSara\nAbigail\nAmber\nCaitlin\nMelissa\nSydney\nAutumn\nJasmine\nLauren\nOlivia\nStephanie\nAllison\nAndrea\nAngela\nChristina\nKatrina\nMarissa\nShannon\nAlicia\nJennifer\nLeah\nMadeline\nMolly\nTiffany\nBreanna\nEmma\nErin\nKathryn\nKaylee\nLindsey\nNatasha\nAlexis\nBrooke\nChloe\nJamie\nKatelyn\nMikayla\nPaige\nSabrina\nZoe\nGabrielle\nKatie\nAmy\nBriana\nDestiny\nJulia\nKendra\nMeghan\nNatalie\nSavannah\nCaroline\nCassandra\nCatherine\nKaitlin\nKimberly\nMackenzie\nMaria\nNaomi\nAurora\nBailey\nDakota\nEsther\nHayley\nJade\nMakayla\nMelanie\nMichaela\nMichelle\nRuth\nTabitha\nAngel\nAriana\nAudrey\nCrystal\nFaith\nHolly\nKassandra\nMargaret\nMckenzie\nRachael\nSerena\nSummer\nAlison\nAngelica\nAriel\nAshlee\nChristine\nClaire\nDenali\nJenna\nJessie\nKathleen\nKylie\nLarissa\nLaura\nMikaela\nPatricia\nRebekah\nApril\nCarissa\nDallas\nDeanna\nElena\nErica\nJoanna\nKelly\nKennedy\nKiana\nMonica\nShayla\nTamara\nTara\nTessa\nAlice\nAngelina\nAnnie\nAubrey\nBarbara\nBethany\nBrandy\nBrenna\nBrittney\nCamille\nCasey\nColleen\nCynthia\nDawn\nDelaney\nDesiree\nEliza\nEmilee\nHailey\nHanna\nHaylee\nJacqueline\nJazmine\nJordyn\nKaitlynn\nKate\nKrista\nKristina\nLisa\nLogan\nLydia\nMarie\nMarina\nMaya\nNina\nSage\nSavanna\nShyla\nTatiana\nTiana\nVanessa\nVeronica\nWhitney\nAshley\nJessica\nEmily\nSarah\nSamantha\nMegan\nHannah\nMadison\nAmanda\nElizabeth\nTaylor\nRachel\nKayla\nVictoria\nAlexis\nBrittany\nCourtney\nRebecca\nSavannah\nOlivia\nAmber\nCheyenne\nHaley\nMariah\nAbigail\nNicole\nAnna\nSierra\nStephanie\nAlyssa\nHeather\nKatherine\nLaura\nMaria\nMelissa\nAllison\nEmma\nSara\nSydney\nBrianna\nErin\nAlexandra\nGrace\nJennifer\nShelby\nCaitlin\nKimberly\nLauren\nMiranda\nSabrina\nAlicia\nCassandra\nChristina\nDanielle\nKelsey\nMadeline\nMorgan\nTiffany\nKatie\nMary\nAndrea\nBreanna\nJulia\nKiana\nMackenzie\nMichelle\nPaige\nCatherine\nChelsea\nCrystal\nDestiny\nGabrielle\nJasmine\nJordan\nKaitlin\nKaitlyn\nAlexandria\nErica\nHailey\nKathleen\nMakayla\nMikayla\nNaomi\nClaire\nJamie\nJenna\nJosephine\nKatelyn\nKathryn\nKatrina\nKelly\nNatalie\nRachael\nAutumn\nBrenna\nBrooke\nChristine\nHolly\nKristin\nKyla\nLillian\nLydia\nMargaret\nRebekah\nAlexa\nAmy\nAurora\nBailey\nDenali\nKaren\nMarissa\nMichaela\nSadie\nBethany\nBrandi\nBrittney\nCasey\nErika\nFaith\nKaylee\nKirsten\nKristina\nLeah\nLindsay\nLisa\nMarina\nMelanie\nShania\nSharon\nWhitney\nAlison\nAnnie\nAubrey\nCaroline\nCassidy\nCharlene\nChloe\nCynthia\nDana\nDesiree\nElaina\nElena\nEllen\nHailee\nJustine\nKendra\nKylee\nKylie\nKyra\nLindsey\nMarie\nMckenna\nMercedes\nMolly\nMonica\nRhiannon\nSophie\nTaryn\nAngela\nAngelica\nAshlee\nBrandy\nCaitlyn\nCierra\nCydney\nDeanna\nDelaney\nEsther\nGabriella\nGenevieve\nHeidi\nJade\nJessie\nJulie\nKatelynn\nKiara\nKristen\nLily\nMaggie\nNatalia\nPatricia\nPeyton\nRaven\nRose\nSummer\nTabitha\nTeresa\nTiana\nHannah\nEmily\nSarah\nMegan\nJessica\nTaylor\nAshley\nSamantha\nMadison\nAbigail\nAlyssa\nRachel\nEmma\nAmanda\nElizabeth\nKatherine\nShelby\nAmber\nMorgan\nAlexis\nMary\nSydney\nVictoria\nHaley\nKaitlyn\nSierra\nJasmine\nRebecca\nAlexandra\nAnna\nKayla\nSavannah\nAllison\nBrittany\nHailey\nLauren\nMelissa\nMolly\nCourtney\nMadeline\nOlivia\nErin\nGrace\nGabrielle\nJordan\nSabrina\nBailey\nDanielle\nJamie\nJennifer\nJulia\nLaura\nMariah\nBreanna\nCheyenne\nJenna\nSara\nCatherine\nDestiny\nKimberly\nKylie\nMiranda\nNatalie\nNicole\nZoe\nAlicia\nAngela\nBrianna\nBrooke\nHeather\nKatrina\nKiana\nMackenzie\nNaomi\nStephanie\nKelsey\nKendra\nMarissa\nMikayla\nSophia\nCaitlin\nChristina\nFaith\nHelen\nHolly\nJacqueline\nJada\nLindsey\nLydia\nMakayla\nMichelle\nShannon\nAngel\nAriel\nAshlyn\nCassandra\nClaire\nKirsten\nKristen\nMia\nMichaela\nChloe\nClarissa\nCynthia\nDiana\nHayley\nJade\nKarina\nMaya\nAdriana\nAlexandria\nAnastasia\nAndrea\nAngelica\nApril\nArianna\nAurora\nAutumn\nBrenna\nChristine\nErica\nErika\nEvelyn\nHope\nIsabella\nJosephine\nKaitlin\nKatelyn\nKatie\nKaylee\nKira\nKrista\nKristina\nMonica\nNatasha\nRachael\nRebekah\nTheresa\nVanessa\nVeronica\nAlice\nAmelia\nAmy\nAshleigh\nBethany\nBrenda\nBriana\nBrittney\nCheyanne\nCrystal\nDeanna\nDelaney\nDenali\nFelicia\nGabriella\nGloria\nHanna\nJillian\nKaitlynn\nKathleen\nKelly\nMaria\nMckenna\nMckenzie\nMeghan\nMikaela\nPaige\nTia\nAdrianna\nAlexa\nAlissa\nAnnie\nCarrie\nCassidy\nDarian\nDesiree\nElise\nIrene\nJenny\nJustice\nKari\nKathryn\nKatlyn\nKaylynn\nKristin\nKyla\nKylee\nMakenzie\nMargaret\nMarina\nPeyton\nRiley\nRobin\nRylee\nShania\nShayla\nSummer\nTiffany\nValerie\nEmily\nSarah\nHannah\nMegan\nAlyssa\nAshley\nSamantha\nMadison\nJessica\nKayla\nTaylor\nAlexis\nAmber\nVictoria\nBrittany\nElizabeth\nHaley\nBrianna\nEmma\nOlivia\nAmanda\nJordan\nLauren\nRachel\nDanielle\nKatherine\nMariah\nRebecca\nSavannah\nSierra\nSydney\nMorgan\nAbigail\nAutumn\nJasmine\nMary\nKaitlyn\nAlexandra\nAmy\nAnna\nChloe\nGrace\nKaylee\nKimberly\nMackenzie\nMiranda\nNaomi\nNicole\nShelby\nBrooke\nPaige\nStephanie\nCassidy\nCourtney\nKelsey\nMolly\nSara\nChelsea\nCheyenne\nHailey\nMadeline\nAlicia\nAndrea\nErica\nErin\nKendra\nLaura\nMakayla\nAlexandria\nBreanna\nCaitlin\nGabrielle\nHeather\nJennifer\nJulia\nKaitlin\nKiana\nMckenzie\nMelissa\nRebekah\nZoe\nAlexa\nAllison\nAmelia\nBethany\nClara\nIsabelle\nKathryn\nKatrina\nLeah\nMia\nSabrina\nVanessa\nAngela\nAurora\nBailey\nCassandra\nHeidi\nHolly\nIsabel\nJade\nKelly\nKylee\nKylie\nLindsey\nNatalie\nTessa\nAnnie\nAriel\nCora\nFaith\nGabriella\nJenna\nJordyn\nKatie\nKiara\nMelinda\nMichaela\nMikayla\nSavanna\nShania\nSophia\nTia\nAudrey\nBrittney\nCarrie\nChristine\nCierra\nDesiree\nDestiny\nDiana\nEsther\nIsabella\nJacqueline\nKatelyn\nMargaret\nMaria\nMaya\nMckenna\nMichelle\nSummer\nTheresa\nAnastasia\nAriana\nArianna\nCatherine\nChristina\nCrystal\nDakota\nElena\nErika\nEvelyn\nHayley\nJamie\nJessie\nJosephine\nKathleen\nKayleigh\nLillian\nLindsay\nMarina\nMercedes\nMonica\nPatricia\nRaven\nSelena\nShannon\nTiana\nAlanna\nAngelica\nAubrey\nAva\nCamryn\nCarina\nCarly\nCaroline\nChantel\nClaire\nColleen\nDaisy\nDeanna\nDenali\nEva\nGenevieve\nHanna\nHelen\nHope\nHunter\nJada\nJosie\nKailey\nKate\nKendall\nKristina\nKrystal\nKyla\nLily\nLydia\nMadelyn\nMakenna\nMartha\nMeagan\nMeghan\nNatasha\nSerena\nTaryn\nTatiana\nTiffany\nTyra\nZoey\nEmily\nHannah\nAshley\nSarah\nElizabeth\nJessica\nTaylor\nAlexis\nMadison\nEmma\nSamantha\nSierra\nGrace\nBrianna\nVictoria\nMegan\nLauren\nAmber\nHaley\nKaitlyn\nRachel\nKatherine\nNicole\nSavannah\nSydney\nAmanda\nAnna\nKayla\nAlexandra\nMackenzie\nAbigail\nIsabella\nMary\nBrittany\nCourtney\nJasmine\nKimberly\nSophia\nAlyssa\nCheyenne\nKatelyn\nRebecca\nBrooke\nGabrielle\nAudrey\nChristina\nKylie\nMorgan\nNatalie\nOlivia\nTrinity\nAutumn\nJordan\nAlexandria\nAllison\nAurora\nChloe\nClaire\nMadeline\nMakayla\nShannon\nBreanna\nCaitlin\nDanielle\nDestiny\nKaylee\nKiara\nLydia\nMariah\nPaige\nShelby\nAriel\nErin\nHailey\nIsabel\nJulia\nKendra\nLaura\nMikayla\nBailey\nBrittney\nCassidy\nCatherine\nJamie\nKatie\nLeah\nLillian\nMolly\nNaomi\nSabrina\nSerena\nArianna\nJennifer\nKate\nKathleen\nKelsey\nKiana\nLindsey\nMargaret\nMelissa\nRebekah\nSara\nTatiana\nTiffany\nAndrea\nApril\nJade\nJosephine\nKathryn\nMarissa\nMiranda\nPayton\nZoe\nAmy\nAngel\nAshlyn\nBethany\nCamryn\nDakota\nElena\nHalle\nHeather\nJenna\nKailey\nKatelynn\nKendall\nKennedy\nKylee\nLily\nMaria\nMarie\nMaya\nMichaela\nMichelle\nMya\nRiley\nSadie\nStephanie\nVanessa\nVeronica\nAlicia\nAmelia\nAngelica\nAriana\nCassandra\nCharlotte\nCynthia\nErica\nJuliana\nKaitlin\nKali\nKara\nKristen\nMarina\nMckenzie\nRose\nRuby\nRuth\nSage\nShania\nSkylar\nSummer\nAaliyah\nAlison\nAngela\nAvery\nChelsea\nChristine\nDaisy\nDana\nDenise\nDesiree\nDiana\nErika\nEsther\nFaith\nGabriella\nHanna\nHaylee\nHayley\nHope\nJacqueline\nJazmine\nJulianne\nJulie\nKyla\nLeann\nMallory\nNina\nRobin\nSasha\nSavanna\nSelena\nTia\nTiana\nTori\nHannah\nMadison\nEmily\nSarah\nAshley\nAnna\nElizabeth\nEmma\nAlyssa\nJessica\nAbigail\nHaley\nVictoria\nGrace\nSierra\nKatherine\nKayla\nSamantha\nTaylor\nMegan\nOlivia\nSydney\nAlexis\nAmber\nLauren\nSavannah\nGabrielle\nKaitlyn\nHailey\nRachel\nRebecca\nTrinity\nBrianna\nErin\nMary\nCourtney\nFaith\nJennifer\nJulia\nNicole\nSophia\nAlexandra\nAmanda\nAudrey\nDanielle\nKatie\nKaylee\nLeah\nMorgan\nAllison\nBethany\nBrittany\nJenna\nMackenzie\nBrooke\nCaitlin\nChloe\nChristina\nLaura\nMadeline\nMarissa\nCheyenne\nKylie\nShelby\nZoe\nAndrea\nAriana\nAurora\nIsabella\nJasmine\nKatelyn\nKimberly\nMaria\nMelissa\nAutumn\nJamie\nJordan\nMakayla\nMikayla\nNaomi\nNatalie\nPaige\nShannon\nSkylar\nAlexandria\nAngel\nAngela\nCassandra\nClaire\nDestiny\nHayley\nIsabel\nJosephine\nMargaret\nMichelle\nSara\nAmy\nAngelina\nCaitlyn\nEsther\nJade\nKristen\nLily\nMariah\nMaya\nMeghan\nMiranda\nMolly\nNatasha\nTiana\nCatherine\nErica\nHeather\nJessie\nKathleen\nKathryn\nKatrina\nKendra\nKianna\nMalia\nMckenzie\nMia\nNina\nPeyton\nSabrina\nSelena\nBianca\nBreanna\nCamille\nDaisy\nDenali\nHolly\nIsabelle\nJillian\nJordyn\nKatelynn\nKelly\nKendall\nKirsten\nLillian\nLydia\nMonica\nNadia\nNikki\nPatricia\nRebekah\nTheresa\nTia\nAdrianna\nAlicia\nAlison\nAlissa\nAriel\nAshleigh\nAshlyn\nBriana\nBrittney\nChelsea\nCiara\nCora\nCrystal\nDeanna\nDelaney\nEden\nElla\nErika\nHope\nJada\nJewel\nKaitlin\nKaren\nKelsey\nKennedy\nKiara\nKristin\nKristina\nLisa\nLucy\nMadelyn\nMakenna\nMelanie\nRiley\nRose\nRuth\nRylee\nSadie\nSerena\nSkye\nSkyler\nSummer\nSusan\nTara\nVanessa\nMadison\nEmily\nHannah\nAshley\nAbigail\nElizabeth\nEmma\nGrace\nVictoria\nHaley\nAlexis\nAlyssa\nMegan\nTaylor\nSamantha\nJessica\nOlivia\nSarah\nAnna\nMorgan\nAmber\nKayla\nKaitlyn\nSierra\nChloe\nJasmine\nSydney\nBrianna\nHailey\nGabrielle\nShelby\nSophia\nAutumn\nMakayla\nSavannah\nTrinity\nAmanda\nDestiny\nJulia\nMariah\nMary\nRebecca\nSara\nBrooke\nDanielle\nFaith\nIsabella\nNaomi\nRachel\nClaire\nKatherine\nKylie\nMackenzie\nMaria\nNicole\nAudrey\nJade\nLillian\nLily\nMia\nNatalie\nVanessa\nAlexandra\nAlexia\nAurora\nBreanna\nJordan\nKiara\nLaura\nZoe\nAmy\nChelsea\nCheyenne\nElena\nKennedy\nMadeline\nAdriana\nAllison\nAndrea\nAngela\nArianna\nBethany\nCaitlyn\nCourtney\nDenali\nGabriella\nHope\nJenna\nJillian\nJulianna\nKaylee\nLauren\nLydia\nMaya\nMiranda\nSadie\nStephanie\nAlexandria\nBailey\nCaitlin\nChristina\nElla\nGillian\nHanna\nKatelyn\nKendra\nKiana\nLeah\nMckenzie\nNina\nPaige\nSummer\nAngel\nAriana\nAshlyn\nCassandra\nCassidy\nDaisy\nErin\nKathryn\nKatie\nKira\nKristen\nKyla\nLindsey\nMargaret\nMichaela\nMolly\nNatasha\nRachael\nRebekah\nRiley\nRylee\nSerena\nSofia\nTara\nAbby\nAdeline\nAlicia\nAngelina\nAnnie\nAriel\nAshlee\nAubrey\nBabygirl\nBridget\nBrittany\nCaroline\nCatherine\nCierra\nClara\nDakota\nEvelyn\nHeather\nHolly\nIsabel\nJazmine\nJennifer\nKelsey\nKimberly\nKylee\nLilly\nMarissa\nMichelle\nNevaeh\nPayton\nSabrina\nSandra\nSophie\nTalia\nTia\nAaliyah\nAlanna\nAlisha\nAlissa\nBrenna\nCasey\nCheyanne\nCrystal\nDesiree\nEllen\nErica\nIsabelle\nJadyn\nKailey\nKaitlin\nKatelynn\nKaylie\nKirsten\nKristina\nKyleigh\nKyra\nLeilani\nMadelyn\nMakenna\nMakenzie\nMckenna\nMeghan\nMercedes\nPiper\nRachelle\nRenee\nSerenity\nShayla\nSkye\nValerie\nViolet\nWillow\nMadison\nElizabeth\nEmily\nEmma\nHannah\nAlexis\nAshley\nOlivia\nJasmine\nSamantha\nSarah\nAbigail\nGrace\nTrinity\nAnna\nSydney\nChloe\nKatelyn\nKayla\nSavannah\nAlyssa\nFaith\nMegan\nSophia\nTaylor\nLauren\nKylie\nVictoria\nHailey\nIsabella\nKaylee\nSierra\nZoe\nAmanda\nAurora\nDanielle\nKatherine\nMakayla\nMary\nBrianna\nDestiny\nElla\nHaley\nIsabelle\nJessica\nAllison\nAutumn\nJade\nKaitlyn\nLillian\nMackenzie\nRachel\nAmber\nAudrey\nGabrielle\nJulia\nMorgan\nNaomi\nShelby\nVanessa\nAndrea\nAngel\nLeah\nMaya\nRiley\nAlexia\nCatherine\nErin\nJordan\nLindsey\nMadeline\nNatalie\nNicole\nPaige\nRebecca\nSara\nAngelina\nJillian\nJordyn\nLydia\nMelissa\nNatasha\nAlexa\nAlexandra\nAlicia\nCaitlin\nClara\nHeather\nJamie\nKiara\nKira\nMolly\nRebekah\nShannon\nAyla\nBriana\nCassidy\nCheyenne\nChristina\nErica\nMariah\nMikayla\nSadie\nAaliyah\nAriana\nAshlyn\nAubrey\nAva\nBailey\nBreanna\nBrooke\nBrooklyn\nChelsea\nClaire\nCourtney\nDenali\nGillian\nIsabel\nJada\nJennifer\nJessie\nJosephine\nKatie\nKelsey\nKendra\nMadelyn\nMargaret\nRose\nStephanie\nAlana\nAlexandria\nAlice\nAlison\nAngela\nAnnika\nAriel\nCheyanne\nDelaney\nEva\nEvelyn\nGabriella\nHaylee\nJenna\nJocelyn\nKathryn\nKiana\nKimberly\nLaura\nLeilani\nLeslie\nLiberty\nMckenna\nMia\nMichaela\nMichelle\nMonica\nMonique\nRenee\nSophie\nTiana\nVeronica\nAmelia\nAnya\nBethany\nCaitlyn\nCharity\nCrystal\nCynthia\nDakota\nElsie\nEmilee\nGracie\nHazel\nHeidi\nHelen\nHope\nJustice\nKaitlynn\nKara\nKatrina\nKristina\nKylee\nKyra\nLily\nLisa\nMakenzie\nMckayla\nMckenzie\nMeadow\nMeghan\nMiranda\nNevaeh\nPatricia\nPayton\nReagan\nRhiannon\nRuth\nSage\nShania\nTatum\nTiffany\nTori\nValerie\nWillow\nZoey\nHannah\nEmma\nEmily\nMadison\nAlexis\nHailey\nIsabella\nAbigail\nOlivia\nAlyssa\nElizabeth\nTrinity\nSarah\nAshley\nGrace\nAnna\nChloe\nKaitlyn\nKayla\nSophia\nTaylor\nMackenzie\nNicole\nSavannah\nFaith\nHaley\nKaylee\nSamantha\nAngelina\nJordan\nKylie\nPaige\nBrianna\nJasmine\nLauren\nMakayla\nNatalie\nAlexandra\nBrooke\nElla\nMegan\nRachel\nVictoria\nAllison\nAva\nErin\nMorgan\nSierra\nAmanda\nAudrey\nAurora\nDestiny\nJessica\nLily\nLydia\nSydney\nAmber\nAriana\nAutumn\nKelsey\nMadeline\nMadelyn\nMaya\nMiranda\nZoe\nAnnika\nCheyenne\nCourtney\nElena\nJulia\nKatherine\nLaura\nMolly\nRebecca\nShelby\nAaliyah\nAndrea\nAngela\nBreanna\nJade\nMya\nSara\nAmelia\nArianna\nBrooklyn\nCatherine\nKatelyn\nLeah\nLillian\nMary\nMelanie\nMia\nNevaeh\nAvery\nClaire\nDanielle\nDelaney\nEleanor\nElise\nHanna\nIsabel\nIsabelle\nKiana\nMargaret\nMariah\nNaomi\nShayla\nSummer\nTiffany\nVanessa\nAlana\nAlexandria\nAngel\nAshlynn\nBethany\nCamille\nEvelyn\nFiona\nGabriella\nGracie\nJaden\nJenna\nJosephine\nKatie\nKira\nKyla\nMaria\nMckenna\nMichelle\nPiper\nRebekah\nSabrina\nSkyler\nTia\nAlexia\nAlicia\nAmara\nAmy\nCaitlin\nCallie\nCassandra\nCassidy\nGabrielle\nHailee\nHeidi\nJamie\nJazmine\nJordyn\nKennedy\nKiara\nLucy\nMalia\nMelissa\nMikayla\nNatasha\nRiley\nRuby\nSelena\nStephanie\nAddison\nAiyana\nAlexandrea\nAlice\nAliyah\nAmaya\nAna\nAnika\nAshlyn\nAubrey\nBriana\nCadence\nCameron\nCarlie\nChristina\nCynthia\nDakota\nEden\nErika\nEsther\nJada\nJillian\nKatelynn\nKathryn\nKaya\nKimberly\nKylee\nMakena\nMakenzie\nMarissa\nMckenzie\nMeghan\nNoelle\nPhoebe\nSamara\nSerena\nSkye\nStella\nTaryn\nTatiana\nZoey\nEmma\nMadison\nHannah\nGrace\nEmily\nAbigail\nOlivia\nIsabella\nAlyssa\nSophia\nAlexis\nElizabeth\nHailey\nAnna\nNatalie\nSarah\nSydney\nAva\nTrinity\nHaley\nKaylee\nTaylor\nChloe\nElla\nMackenzie\nSierra\nKayla\nSamantha\nZoe\nJessica\nLeah\nLily\nRachel\nRiley\nSavannah\nVictoria\nAshley\nCadence\nMegan\nAurora\nJasmine\nJordan\nJulia\nKylie\nAngel\nJade\nNicole\nRebecca\nAlexandra\nAllison\nAudrey\nBrianna\nDanielle\nDestiny\nFaith\nIsabelle\nJamie\nLauren\nLillian\nMia\nNaomi\nNevaeh\nShelby\nArianna\nAvery\nBrooke\nKatelyn\nKylee\nLydia\nMalia\nMaya\nMakayla\nMaria\nMary\nMichelle\nAaliyah\nAmber\nAngelina\nJenna\nKatrina\nMolly\nMorgan\nAmanda\nAmelia\nCatherine\nClaire\nEllie\nErin\nEva\nKatie\nKiara\nKyla\nLindsey\nAubrey\nCharlotte\nChristina\nClara\nDelaney\nGabrielle\nHeather\nIsabel\nJennifer\nJillian\nKate\nKira\nMarissa\nNatasha\nParis\nPeyton\nSara\nTabitha\nTessa\nAlexandria\nAngela\nAnnika\nAshlyn\nAutumn\nAyla\nBreanna\nErica\nEvelyn\nGabriella\nHaylee\nJanessa\nJosephine\nKelsey\nKristen\nLucy\nMakenzie\nMargaret\nMariah\nNatalia\nRebekah\nRhiannon\nSadie\nSage\nSelena\nSerena\nShannon\nVanessa\nAllie\nAnika\nAriana\nAthena\nCaitlyn\nCarmen\nCourtney\nDaisy\nEllen\nGwendolyn\nHope\nJocelyn\nJordyn\nKatelynn\nLaura\nLeilani\nMadeline\nMadelyn\nMckenna\nMelanie\nMercedes\nMya\nPaige\nSummer\nTiana\nZoey\nAdrianna\nAlice\nAliyah\nAmaya\nAnastasia\nAngelica\nAshlee\nBailey\nBrenna\nCamryn\nChelsea\nCiara\nCynthia\nDenali\nEileen\nEmilia\nFiona\nFrances\nGianna\nGracie\nJacqueline\nJadyn\nKarina\nKatherine\nKiana\nKyra\nLayla\nMarina\nMckenzie\nMelody\nMiranda\nNora\nReagan\nSabrina\nShania\nSkye\nTatiana\nVeronica\nMadison\nEmma\nEmily\nIsabella\nSamantha\nHannah\nAbigail\nOlivia\nElizabeth\nGrace\nAlexis\nAnna\nJessica\nSophia\nAva\nLillian\nSierra\nTrinity\nLily\nTaylor\nHailey\nKaitlyn\nSavannah\nAlyssa\nLauren\nElla\nMary\nSarah\nAshley\nChloe\nFaith\nIsabelle\nJasmine\nKatherine\nKylie\nMorgan\nRebecca\nNevaeh\nPaige\nZoe\nBrianna\nBrooke\nKayla\nMia\nAriana\nArianna\nHaley\nJenna\nKatelyn\nNaomi\nNatalie\nRiley\nAshlyn\nDestiny\nLeah\nAlexandra\nAndrea\nAubrey\nAurora\nAutumn\nBethany\nJillian\nJulia\nLeilani\nLydia\nRylee\nSara\nSerenity\nVanessa\nAllison\nCaitlyn\nDakota\nJordan\nKatie\nMackenzie\nMegan\nSavanna\nSydney\nVictoria\nAaliyah\nAlicia\nAmanda\nAngelina\nAudrey\nAvery\nDesiree\nEvelyn\nJade\nMargaret\nMaria\nMariah\nMya\nRachel\nShelby\nSofia\nAlana\nAlexandria\nAmelia\nAnastasia\nBreanna\nCadence\nCassidy\nClaire\nEllie\nGabrielle\nJada\nKelly\nKira\nLena\nMadeline\nMadelyn\nMakenna\nMaya\nMiranda\nNora\nAmber\nAngel\nAngela\nCharlotte\nCheyenne\nChristina\nCora\nDelaney\nElena\nElise\nErica\nErin\nIris\nJosephine\nLayla\nLucy\nMakayla\nMarina\nMckenna\nMolly\nPayton\nSadie\nSophie\nSummer\nZoey\nAbby\nAddison\nAlexa\nAlexia\nAriel\nBrooklyn\nCaroline\nCassandra\nGabriella\nGracie\nHeather\nIsabel\nJadyn\nJanessa\nKailey\nKathryn\nKatrina\nKaylee\nKelsey\nKendra\nKennedy\nKiara\nKyra\nMarissa\nPiper\nSage\nShania\nViolet\nWillow\nAdrianna\nAlaina\nAleah\nAlison\nAmaya\nAnnie\nBrenna\nCaitlin\nCamryn\nCatherine\nCourtney\nDenali\nElaina\nEsther\nEva\nGwendolyn\nHarmony\nHayden\nHeidi\nHolly\nHope\nIsis\nJamie\nJocelyn\nKaila\nKatelynn\nKaydence\nKendall\nKiley\nKimberly\nKirsten\nKristen\nKylee\nLiberty\nLindsey\nMalia\nMckenzie\nMelanie\nMichaela\nNicole\nRose\nRylie\nShannon\nSienna\nTessa\nEmma\nEmily\nMadison\nIsabella\nAva\nElizabeth\nHannah\nOlivia\nSophia\nAbigail\nAlyssa\nKaylee\nLily\nJasmine\nKayla\nSamantha\nHailey\nNatalie\nChloe\nElla\nGrace\nAlexis\nIsabel\nMia\nAddison\nKaitlyn\nKatie\nSarah\nAllison\nMakayla\nSavannah\nBrooke\nFaith\nKeira\nLauren\nTaylor\nAnna\nKatherine\nLillian\nAriana\nGabriella\nKylie\nMackenzie\nVictoria\nArianna\nBrooklyn\nCadence\nJessica\nRachel\nSierra\nAshley\nAudrey\nBrianna\nEva\nIsabelle\nJordan\nMckenzie\nMya\nNevaeh\nAmelia\nAngel\nBethany\nDestiny\nJulia\nKatelyn\nLydia\nSerenity\nZoe\nAurora\nJenna\nLayla\nNaomi\nRebecca\nVanessa\nAlexandra\nAnya\nAubrey\nBailey\nClara\nEvelyn\nGabrielle\nHaley\nHazel\nKennedy\nMegan\nTrinity\nAngelina\nClaire\nDakota\nJade\nKyra\nLilly\nMadeline\nMary\nNatalia\nRylee\nViolet\nZoey\nAlana\nAmy\nAngela\nAshlyn\nAutumn\nDanielle\nHeidi\nHope\nJennifer\nJillian\nKathryn\nMarissa\nMaya\nPaige\nRiley\nShelby\nAdrianna\nAlexandria\nAmaya\nAshlynn\nAspen\nAyla\nDelaney\nElena\nErin\nJosephine\nJulie\nKatelynn\nKelly\nKelsey\nKiana\nKira\nLaura\nLeilani\nMaggie\nMargaret\nMaria\nMariah\nMelissa\nMorgan\nNicole\nPeyton\nSienna\nSydney\nAaliyah\nAdeline\nAdriana\nAlexa\nAllie\nAnastasia\nBrenna\nCaitlin\nCassandra\nCassidy\nChelsea\nCheyenne\nDiamond\nEleanor\nErica\nEsther\nHailee\nJaylynn\nKara\nKayleigh\nKimberly\nKyla\nKylee\nLindsey\nMakenna\nMolly\nMonica\nNora\nRowan\nSara\nShannon\nTatum\nTiffany\nWillow\nAvery\nBreanna\nCamryn\nCarly\nCaroline\nCecelia\nCeleste\nCharlotte\nDaisy\nDanika\nEliza\nGenevieve\nGracie\nHolly\nJada\nJocelyn\nKailey\nKamryn\nKatrina\nKendall\nLeah\nLiberty\nLucy\nMaddison\nMadeleine\nMarina\nNadine\nNoelle\nPatricia\nPhoebe\nRachael\nRayna\nReagan\nRebekah\nSabrina\nSage\nSasha\nScarlett\nSelah\nSerena\nSkye\nSkylar\nSofia\nStella\nSummer\nIsabella\nEmily\nMadison\nAva\nAbigail\nEmma\nSophia\nOlivia\nAlyssa\nNatalie\nHannah\nHailey\nLillian\nLily\nElizabeth\nGrace\nSarah\nChloe\nElla\nMia\nAddison\nAlexis\nAnna\nAshley\nTaylor\nAurora\nSamantha\nTrinity\nFaith\nSierra\nRiley\nSavannah\nZoe\nCharlotte\nAdriana\nBrooke\nBrooklyn\nJasmine\nJessica\nKatelyn\nLayla\nMackenzie\nNevaeh\nPaige\nRachel\nAaliyah\nAudrey\nEvelyn\nKaylee\nKylie\nMya\nAllison\nAutumn\nJulia\nMakayla\nSienna\nAubrey\nBrianna\nClaire\nGabriella\nKaitlyn\nLauren\nNaomi\nRebecca\nSadie\nSydney\nAlana\nAshlyn\nCadence\nJada\nJocelyn\nJosephine\nKatie\nKeira\nMary\nMaya\nAmelia\nAngelina\nBailey\nCheyenne\nDestiny\nHayden\nJenna\nJordan\nKayla\nLeah\nLydia\nMorgan\nViolet\nAdrianna\nAliyah\nAriana\nArianna\nDanielle\nIsabel\nKatherine\nMadeline\nMariah\nMolly\nSerenity\nZoey\nAlexa\nAvery\nCaitlyn\nElise\nHope\nIsabelle\nJamie\nKyla\nLila\nMadelyn\nMakenna\nMegan\nNicole\nPeyton\nRuby\nShelby\nSummer\nTessa\nVictoria\nAlayna\nAlexandra\nAlexandria\nAmber\nAnastasia\nAndrea\nAngel\nDaisy\nEsther\nHazel\nHeidi\nIris\nJade\nJennifer\nJillian\nJordyn\nKali\nKendra\nKiana\nKristina\nLucy\nMakenzie\nMalia\nMaria\nMckenzie\nMichelle\nSophie\nWillow\nAmanda\nAshlynn\nBethany\nCassidy\nChelsea\nEllie\nEva\nGenevieve\nGracie\nHaley\nKadence\nKailey\nKaydence\nKennedy\nKira\nKyra\nLacey\nMadisyn\nMckenna\nMelissa\nNatasha\nReagan\nRhiannon\nSara\nSavanna\nSofia\nTalia\nVanessa\nAlaina\nAlice\nAlisa\nAmara\nAriel\nAthena\nAyla\nDanika\nJayden\nJulianna\nKaelyn\nKatelynn\nKathryn\nKayleigh\nKelsey\nKylee\nLindsey\nMaggie\nMelody\nMikayla\nNatalia\nReese\nSarina\nEmma\nAva\nAbigail\nSophia\nIsabella\nOlivia\nEmily\nElizabeth\nMadison\nAlyssa\nChloe\nHailey\nLily\nTaylor\nAurora\nLillian\nAutumn\nHannah\nGrace\nAlexis\nNatalie\nSarah\nAnna\nNevaeh\nSavannah\nTrinity\nFaith\nSamantha\nAddison\nAmelia\nElla\nJasmine\nMakayla\nRiley\nDestiny\nSerenity\nZoe\nAllison\nMia\nRachel\nSierra\nVictoria\nAudrey\nAvery\nBrooklyn\nJade\nKylie\nPeyton\nPiper\nJulia\nKatherine\nKayla\nAubrey\nBella\nBrooke\nCatherine\nGabriella\nKeira\nMary\nAngelina\nArianna\nAshley\nErin\nGracie\nIsabelle\nKaylee\nLilly\nMariah\nMolly\nAaliyah\nAmber\nClaire\nDelilah\nEva\nIsabel\nKaitlyn\nKatelyn\nKylee\nLauren\nMorgan\nNicole\nShelby\nSydney\nAlexandra\nAndrea\nAriana\nAyla\nBailey\nBrianna\nGabrielle\nJada\nLeila\nLucy\nMegan\nMelody\nMiley\nPaige\nRylee\nAlivia\nAmanda\nAshlyn\nBrooklynn\nCassidy\nCharlotte\nHaley\nHarmony\nHazel\nJessica\nJillian\nJocelyn\nJosephine\nKelsey\nKiara\nMarley\nMya\nSadie\nScarlett\nSienna\nValerie\nVeronica\nVivian\nAlexa\nAlexia\nAlicia\nAngel\nCora\nDenali\nHayden\nIzabella\nKayleigh\nKaylynn\nKira\nLaila\nLayla\nLeah\nLena\nLydia\nMackenzie\nMadeline\nMaya\nMichelle\nNaomi\nNatasha\nPayton\nRebecca\nRuby\nWillow\nAlice\nAliyah\nAlora\nAnnabelle\nAryanna\nBethany\nBristol\nCaroline\nChristina\nClara\nDelaney\nEleanor\nElena\nElise\nEvelyn\nHeidi\nHolly\nIsla\nJordan\nKailey\nKatie\nKhloe\nKiana\nLiberty\nLyla\nMacy\nMadelyn\nMckenzie\nNadia\nRebekah\nSara\nSasha\nShyla\nSofia\nTessa\nVanessa\nZoey\nAlaina\nAlissa\nAnastasia\nAngelica\nCadence\nCassandra\nCheyenne\nClaudia\nCourtney\nDanielle\nEden\nFelicity\nGenevieve\nHelena\nJenna\nJennifer\nJessie\nJulie\nKaia\nKarina\nKennedy\nKenzie\nLauryn\nLila\nLilah\nLiliana\nLondon\nMadilyn\nMakenna\nMakenzie\nMarissa\nMelanie\nPenelope\nReagan\nRowan\nSabrina\nSophie\nStella\nTatum\nViolet\nWinter\nIsabella\nSophia\nOlivia\nAbigail\nAva\nEmma\nMadison\nChloe\nEmily\nElizabeth\nLily\nAlexis\nBrooklyn\nLillian\nRiley\nSarah\nAurora\nLucy\nAlyssa\nAnna\nHailey\nKaylee\nElla\nGrace\nSavannah\nTaylor\nTrinity\nAvery\nBella\nDestiny\nMia\nSamantha\nAddison\nAutumn\nClaire\nHannah\nNatalie\nPeyton\nVictoria\nAubrey\nKeira\nMadelyn\nGabriella\nKylie\nMaya\nAmelia\nEva\nFaith\nJocelyn\nKaitlyn\nNevaeh\nAaliyah\nAllison\nLauren\nCharlotte\nGracie\nIsabelle\nJordan\nLayla\nPayton\nRuby\nRylee\nSydney\nZoey\nAlexandria\nAriana\nArianna\nAudrey\nClara\nJade\nJenna\nLilly\nMolly\nZoe\nBrooke\nDanielle\nEvelyn\nGabrielle\nHaley\nJordyn\nMakayla\nSierra\nSummer\nAlexandra\nAngela\nAthena\nBrooklynn\nIsabel\nJasmine\nJosephine\nLeah\nLydia\nMadeline\nNaomi\nSerenity\nTeagan\nViolet\nAdeline\nAlana\nBrianna\nCadence\nHarmony\nHayden\nKathryn\nKendra\nKylee\nMadilyn\nMegan\nMorgan\nRachel\nSadie\nShelby\nStephanie\nWillow\nAlivia\nAmy\nAndrea\nAnnabelle\nAshley\nAshlynn\nCaroline\nCheyenne\nErin\nFiona\nHarper\nJamie\nJessica\nKatelyn\nKatelynn\nKatie\nKaydence\nKennedy\nMariah\nMckinley\nNatasha\nPiper\nRebecca\nVivian\nAlaina\nAnastasia\nAnya\nCassidy\nChelsea\nCora\nEmber\nHaylee\nHayley\nHelen\nIris\nIzabella\nJennifer\nKiana\nKiera\nMacy\nMary\nMckenzie\nMichelle\nRachael\nReese\nScarlett\nAdrianna\nAlexia\nAliyah\nAmaya\nAniya\nAria\nAshlyn\nBailey\nCaitlin\nCarmen\nCassandra\nDakota\nEden\nEliana\nHeather\nHope\nJacqueline\nJayden\nJazmine\nJuliana\nKaelyn\nKailyn\nKara\nKate\nKatherine\nKayla\nKelsey\nKendall\nKhloe\nKira\nKyla\nKyra\nLena\nLila\nMackenzie\nMadalyn\nMakenzie\nMargaret\nMarin\nMckenna\nMikayla\nMya\nNicole\nNina\nPaige\nReagan\nSage\nSerena\nSofia\nStella\nTessa\nVanessa\nSophia\nEmma\nIsabella\nOlivia\nAva\nAbigail\nHannah\nMadison\nElizabeth\nGrace\nLily\nChloe\nAlyssa\nAmelia\nEmily\nArianna\nElla\nNatalie\nAnna\nLillian\nPeyton\nKaylee\nAvery\nZoe\nZoey\nHailey\nNevaeh\nAddison\nAurora\nBrooklyn\nIsabelle\nKylie\nRiley\nAlexis\nAudrey\nAutumn\nJocelyn\nSarah\nSavannah\nAubrey\nGabriella\nKhloe\nMary\nSamantha\nViolet\nFaith\nLucy\nMikayla\nRebecca\nSydney\nTaylor\nTrinity\nAriana\nEva\nEvelyn\nKinley\nKira\nLeah\nMackenzie\nAllison\nBella\nClaire\nGabrielle\nGianna\nKaitlyn\nLayla\nMariah\nRuby\nSophie\nAshley\nBrooke\nEllie\nLilly\nLydia\nMia\nSerenity\nVictoria\nWillow\nAdrianna\nCharlotte\nIzabella\nJordyn\nKayla\nLyla\nMolly\nPayton\nScarlett\nAngelina\nAshlyn\nAshlynn\nBrianna\nCadence\nClara\nDelaney\nJulia\nNaomi\nRylee\nSabrina\nSadie\nAaliyah\nAyla\nBrooklynn\nCaroline\nEleanor\nHazel\nIsabel\nKatelyn\nKaydence\nKyla\nLauren\nMadeline\nMakayla\nMakenna\nMckinley\nPaige\nShelby\nSofia\nStella\nTeagan\nVanessa\nAlexandra\nAlice\nAmy\nAnastasia\nEsther\nEvangeline\nHaley\nHarper\nIvy\nJade\nKara\nKatie\nLexi\nLiliana\nMadilyn\nMaya\nNora\nReagan\nSienna\nAlana\nAlexandria\nAnnabella\nAria\nBailey\nBreanna\nChelsea\nDaisy\nFiona\nGracie\nHaylee\nHope\nJasmine\nJenna\nKate\nKendall\nKiana\nLeilani\nLiberty\nLila\nLilah\nLilliana\nMadelyn\nMckenna\nMelissa\nMiriam\nMorgan\nMya\nNatalia\nNicole\nRachel\nSummer\nThea\nTiffany\nAlayna\nAlicia\nAliyah\nAmber\nAndrea\nAnnabelle\nAnnie\nAnnika\nAudrina\nBethany\nBristol\nCassandra\nCecilia\nCheyenne\nChristine\nCourtney\nDanielle\nDelilah\nEmery\nHarmony\nHeidi\nIris\nJayla\nJessica\nJillian\nJosephine\nKaia\nKamryn\nKatelynn\nKeira\nKelsey\nKendra\nKimberly\nLindsey\nLucia\nLyric\nMaddison\nMargaret\nMaria\nMarin\nMarley\nMika\nMiranda\nPiper\nRuth\nSierra\nTalia\nTatum\nTessa\nOlivia\nEmma\nIsabella\nMadison\nSophia\nAva\nEmily\nChloe\nAbigail\nAmelia\nZoey\nGrace\nLily\nAurora\nEvelyn\nElizabeth\nNatalie\nAnna\nHailey\nLillian\nRiley\nAlyssa\nAudrey\nElla\nMia\nNevaeh\nSamantha\nZoe\nAubrey\nCharlotte\nClaire\nHannah\nAddison\nBrooklyn\nSavannah\nJasmine\nKylie\nLydia\nMakayla\nLucy\nMary\nTrinity\nAlice\nAutumn\nKaylee\nLayla\nPeyton\nSarah\nAvery\nEllie\nGabriella\nIsabelle\nKinley\nScarlett\nSophie\nSydney\nAaliyah\nAlexis\nArianna\nCora\nHazel\nMackenzie\nMadelyn\nMorgan\nPayton\nTaylor\nViolet\nWillow\nAlaina\nAliyah\nDestiny\nIsla\nJulia\nMaya\nMckenzie\nVictoria\nAria\nAriana\nGabrielle\nKayla\nNaomi\nBella\nBrielle\nBrooke\nEvangeline\nJade\nKaitlyn\nKatherine\nMckinley\nMolly\nSerenity\nAlexandria\nAllison\nAnnabelle\nAshlynn\nAubree\nAyla\nEden\nEva\nFaith\nHarper\nJocelyn\nJordyn\nKaydence\nKeira\nKhloe\nLauren\nMakenna\nMelanie\nMelody\nMichelle\nMya\nRosemary\nRylee\nSadie\nShelby\nSofia\nAlina\nAlivia\nAshlyn\nBailey\nCaroline\nEleanor\nHolly\nHope\nIris\nJosephine\nKatelyn\nKimberly\nLeah\nLyla\nMadalyn\nMikayla\nPenelope\nRachel\nRuby\nTeagan\nTiana\nVivian\nAbby\nAdalyn\nAnastasia\nAngelina\nAshley\nBraelyn\nBrianna\nCamille\nCarly\nCarmen\nCatherine\nDakota\nEliana\nElise\nGenevieve\nGiana\nHarmony\nHayden\nHaylee\nJenna\nJordan\nJuliet\nKatie\nKelsey\nKennedy\nKiana\nKyla\nKylee\nKyra\nLaila\nLeilani\nLexi\nLilly\nMaggie\nMakenzie\nMaria\nMelissa\nNoelle\nPaige\nRebecca\nRuth\nSierra\nAdrianna\nAndrea\nAnya\nArabella\nAthena\nBethany\nBrooklynn\nBrynn\nCadence\nCherish\nClara\nElena\nEmber\nEmery\nFiona\nGracelyn\nGracie\nHelena\nIsabel\nJada\nJemma\nJillian\nJourney\nJulie\nKaia\nKarina\nKendall\nKourtney\nLiliana\nLucia\nLyric\nMalia\nMargaret\nMckenna\nMillie\nMiranda\nNora\nPaisley\nParker\nPhoebe\nPiper\nReagan\nRebekah\nRose\nSage\nSasha\nSelah\nShayla\nSkyla\nSonja\nStella\nSummer\nVanessa\nVirginia\nEmma\nSophia\nOlivia\nAbigail\nAva\nChloe\nElizabeth\nIsabella\nLillian\nEmily\nGrace\nMadison\nElla\nHarper\nHannah\nEvelyn\nLayla\nLily\nAmelia\nKaylee\nMia\nAddison\nHailey\nAurora\nAvery\nZoey\nAudrey\nScarlett\nAria\nAubree\nAutumn\nSamantha\nViolet\nMary\nSavannah\nBrooklyn\nEva\nNatalie\nVictoria\nAlyssa\nFaith\nKhloe\nKylee\nPayton\nPiper\nRiley\nTaylor\nAaliyah\nAubrey\nBrooke\nClaire\nNaomi\nSerenity\nAlexis\nAllison\nAriana\nCora\nIsabelle\nKayla\nKylie\nLyla\nMadelyn\nMaria\nMaya\nPenelope\nReagan\nStella\nAnna\nBailey\nBrooklynn\nCadence\nEden\nHarmony\nLeah\nNora\nPaige\nPeyton\nTrinity\nZoe\nAdalyn\nAlice\nAnnabelle\nAriel\nBella\nBrielle\nCharlie\nClara\nJessica\nLydia\nMadeline\nMolly\nMorgan\nNevaeh\nRuby\nSadie\nSophie\nSydney\nAdrianna\nAngel\nAshley\nAshlynn\nAyla\nCharlotte\nEleanor\nEllie\nEvangeline\nGenevieve\nHadley\nHazel\nJade\nJulia\nKatherine\nKeira\nKinley\nLexi\nLucy\nMegan\nWillow\nAdeline\nAlaina\nAnnika\nArianna\nBethany\nBristol\nCaitlyn\nCassidy\nDelilah\nFiona\nIsabel\nIsla\nJosephine\nKatelyn\nKennedy\nKenzie\nKiara\nLauren\nMaddison\nMakenna\nMelody\nRylee\nSelena\nSerena\nSienna\nVivian\nAdelaide\nAlana\nAlexandra\nAmber\nAmy\nAspen\nBrianna\nCamille\nCatherine\nChristina\nDanielle\nElsie\nEmber\nGabriella\nHanna\nHayden\nIzabella\nJuliana\nJuliet\nKaitlyn\nKristen\nLilly\nLondon\nLuna\nMackenzie\nMariah\nMckenna\nMila\nNoelle\nRiver\nSarah\nScarlet\nAlexandria\nAlivia\nAllie\nAngela\nArabella\nAriella\nCali\nCamila\nCarly\nDelaney\nEsther\nEve\nGabrielle\nGracie\nIris\nIsis\nIvy\nJazmine\nJennifer\nJoanna\nKathryn\nKaydence\nKayleigh\nKeely\nKira\nKyra\nLindsey\nLola\nMakayla\nMarie\nMonica\nNicole\nParker\nRose\nRuth\nShelby\nSierra\nSofia\nSummer\nTatum\nEmma\nSophia\nAbigail\nIsabella\nOlivia\nCharlotte\nHarper\nEmily\nAva\nAvery\nAmelia\nElizabeth\nEvelyn\nAurora\nAddison\nHannah\nLily\nAria\nAudrey\nMia\nAubrey\nLillian\nBrooklyn\nChloe\nVictoria\nScarlett\nHailey\nJade\nMadison\nNatalie\nAlexis\nGabriella\nViolet\nAllison\nElla\nPiper\nSofia\nAlice\nAutumn\nJasmine\nKaylee\nSavannah\nZoey\nAnna\nGrace\nMary\nPeyton\nSophie\nBailey\nLydia\nNaomi\nSamantha\nSkylar\nBrooke\nEleanor\nKaitlyn\nMelody\nNevaeh\nPenelope\nSadie\nSerenity\nStella\nTaylor\nAaliyah\nArianna\nClaire\nEllie\nKendall\nMckenzie\nMolly\nPaige\nQuinn\nTrinity\nAdalyn\nAngel\nAnnabelle\nBella\nFaith\nJulia\nLeah\nPaisley\nReagan\nRuby\nRylee\nAlyssa\nAriana\nClara\nCora\nLucy\nMakayla\nMaya\nMckinley\nSarah\nZoe\nAliyah\nAriel\nAthena\nAubree\nAyla\nBrynn\nChristina\nEmery\nEva\nHolly\nIsla\nJane\nJordyn\nKinley\nKylie\nLayla\nLilly\nLola\nMackenzie\nMadeline\nMaria\nMariah\nNora\nPayton\nRiley\nRose\nSierra\nAlexandra\nAlexandria\nAndrea\nBrooklynn\nCatherine\nCheyenne\nDenali\nEden\nElise\nEliza\nGenevieve\nHazel\nHeidi\nIsabel\nIsabelle\nIzabella\nJocelyn\nKatie\nKenzie\nKhloe\nKira\nLondon\nMargaret\nMya\nSydney\nTiana\nVanessa\nWillow\nAliya\nAnastasia\nAnnie\nArya\nAshley\nAshlynn\nBrianna\nBrielle\nCaroline\nCassidy\nCynthia\nDanica\nDelilah\nHadley\nHarmony\nHaven\nHope\nJamie\nJennifer\nJosephine\nJune\nKaydence\nKayla\nLauren\nLuna\nLyric\nMaggie\nMckenna\nMila\nNoelle\nOlive\nParker\nStephanie\nSylvia\nTalia\nAdelynn\nAlexa\nAllie\nAlly\nAmber\nApril\nAriah\nBrylee\nCadence\nCali\nCamryn\nDahlia\nDanielle\nDaphne\nDelaney\nElena\nEve\nFinley\nGabrielle\nIvy\nJosie\nKamryn\nKeira\nKennedy\nKylee\nLiberty\nLilyana\nLucia\nLyla\nMacy\nMadeleine\nMadilyn\nMarina\nMorgan\nNadia\nNorah\nRachel\nRosalie\nRuth\nTeagan\nValentina\nEmma\nOlivia\nSophia\nAurora\nIsabella\nAbigail\nAvery\nEvelyn\nHannah\nAmelia\nGrace\nHarper\nCharlotte\nElla\nAva\nEmily\nAria\nPenelope\nAnnabelle\nLily\nZoey\nChloe\nAubrey\nElizabeth\nHailey\nKaylee\nLillian\nNatalie\nPeyton\nPiper\nEleanor\nHazel\nSadie\nViolet\nAnna\nBrooklyn\nKinley\nMadison\nPaisley\nAddison\nClaire\nLayla\nAudrey\nEllie\nFaith\nScarlett\nBella\nElena\nRiley\nSamantha\nAthena\nMackenzie\nNevaeh\nGabriella\nNaomi\nRuby\nSavannah\nZoe\nAaliyah\nAlyssa\nAriana\nAutumn\nIsabel\nIsabelle\nLeah\nLucy\nMia\nNora\nRose\nSerenity\nVictoria\nAlice\nArianna\nAubree\nBrooke\nKennedy\nRiver\nSarah\nSofia\nStella\nTaylor\nTrinity\nAlexis\nAllison\nCora\nEmber\nGwendolyn\nMaria\nWillow\nAmara\nAndrea\nClara\nEliana\nElsa\nEverly\nJulia\nKira\nKyra\nMadeline\nMakayla\nPayton\nSkylar\nSophie\nTessa\nVivian\nAshley\nCaroline\nDaisy\nElise\nElliana\nHarmony\nHenley\nIris\nIvy\nJade\nJasmine\nJuliana\nJuliet\nLaura\nLydia\nMckinley\nRory\nWinter\nAliyah\nDanielle\nEden\nEvangeline\nHayden\nHope\nIsla\nJuniper\nKenzie\nKyla\nKylie\nLuna\nMargaret\nMarley\nMckenna\nNova\nPaige\nQuinn\nRuth\nRylee\nRyleigh\nSummer\nVivienne\nAdalyn\nAdelaide\nAlayna\nAlivia\nAna\nAriel\nBailey\nBristol\nCatherine\nCharlie\nChristina\nDelilah\nElisabeth\nEliza\nEmilia\nFelicity\nFinley\nGemma\nGenevieve\nHeidi\nIzabella\nJosephine\nJoy\nKatelyn\nKatherine\nKhloe\nLauren\nLila\nLilliana\nMaci\nMadilyn\nMariah\nMary\nMelody\nMolly\nPresley\nRachel\nRaegan\nReagan\nTeagan\nAda\nAdalynn\nAlana\nAlexandria\nAlina\nAmia\nArabella\nArya\nAyla\nBethany\nBraelyn\nDelaney\nDestiny\nDylan\nEmery\nEmmalyn\nEsther\nEva\nGracie\nHadley\nJayla\nJennifer\nJosie\nJune\nKali\nKallie\nKayla\nLexie\nLilah\nLyla\nMacy\nMaggie\nMakenna\nMaya\nMckenzie\nMeadow\nMila\nNatasha\nOlive\nRosalie\nSage\nShelby\nShiloh\nSydney\nVeronica\nJohn\nJames\nPaul\nRobert\nCarl\nEdward\nGeorge\nWilliam\nJohn\nJames\nPeter\nWilliam\nGeorge\nJohn\nWilliam\nGeorge\nCharles\nNick\nFrank\nJames\nJohn\nWilliam\nGeorge\nJames\nRichard\nJohn\nJames\nJoseph\nHenry\nWilliam\nDavid\nRobert\nArthur\nCharles\nGeorge\nPeter\nAlbert\nFrank\nJack\nWalter\nAndrew\nJohn\nWilliam\nRobert\nCharles\nAlbert\nJames\nEdward\nPeter\nGeorge\nWalter\nDaniel\nHarry\nJoseph\nPaul\nRichard\nDavid\nFrank\nFred\nFrederick\nNick\nRoy\nJohn\nWilliam\nJames\nGeorge\nAndrew\nEdward\nRobert\nCarl\nFred\nHenry\nFrank\nJack\nWalter\nBilly\nCharles\nErnest\nHarry\nJoseph\nJohn\nRobert\nWilliam\nGeorge\nJames\nPaul\nCharles\nEdward\nFred\nJoseph\nRalph\nThomas\nArthur\nDavid\nDonald\nJack\nJacob\nMike\nJohn\nWilliam\nJoseph\nCharles\nRobert\nAlfred\nGeorge\nHarry\nEdward\nJames\nPeter\nAlbert\nAndrew\nRoy\nWalter\nDaniel\nJack\nJoe\nPaul\nSimon\nThomas\nJohn\nGeorge\nJames\nRobert\nCharles\nDavid\nWilliam\nJack\nHenry\nWalter\nEdward\nFred\nThomas\nCarl\nHarry\nJoseph\nNick\nAlbert\nAndrew\nDonald\nRalph\nJohn\nWilliam\nPaul\nGeorge\nJames\nRobert\nJoseph\nThomas\nAndrew\nHenry\nCharles\nDavid\nWalter\nHarry\nLouis\nRichard\nAlbert\nArthur\nDonald\nEugene\nFrank\nHarold\nLawrence\nJohn\nWilliam\nGeorge\nJoseph\nCharles\nDonald\nFrank\nHenry\nRobert\nDaniel\nLawrence\nAlfred\nEdward\nJames\nRichard\nThomas\nPatrick\nAndrew\nCarl\nKenneth\nLeonard\nPaul\nPhillip\nWalter\nRobert\nWilliam\nJohn\nJames\nDavid\nGeorge\nRichard\nEdward\nWalter\nCharles\nFrank\nPeter\nCarl\nJoseph\nThomas\nAlbert\nFred\nHarry\nPaul\nDonald\nFrederick\nHarold\nJack\nKenneth\nRaymond\nSamuel\nTom\nWillie\nJohn\nJames\nRobert\nWilliam\nGeorge\nEdward\nDavid\nJoseph\nFrank\nJack\nNick\nPeter\nArthur\nCharles\nFred\nPaul\nRichard\nThomas\nAndrew\nDonald\nHarry\nLawrence\nRoy\nBilly\nDaniel\nMike\nWarren\nJohn\nWilliam\nJames\nPaul\nRobert\nFred\nGeorge\nHenry\nJoseph\nFrank\nNick\nWalter\nPeter\nThomas\nAlfred\nCarl\nAlbert\nAlex\nEdward\nEvan\nHarry\nJack\nJacob\nJoe\nRoy\nSam\nJohn\nGeorge\nRobert\nRichard\nHarry\nJames\nCharles\nEdward\nJoseph\nCharlie\nHenry\nWilliam\nDavid\nPeter\nAndrew\nFred\nHarold\nNick\nRaymond\nWalter\nJohn\nRobert\nJames\nPaul\nGeorge\nWilliam\nAndrew\nCharles\nHarry\nJoseph\nThomas\nFred\nHenry\nPeter\nRoy\nBernard\nErnest\nGregory\nLawrence\nJohn\nRobert\nWilliam\nGeorge\nJames\nAndrew\nCharles\nDavid\nJoseph\nPaul\nRichard\nEdward\nFrank\nArthur\nDaniel\nDonald\nFred\nHarold\nHarry\nSamuel\nThomas\nCarl\nHenry\nJohnny\nNick\nNorman\nPeter\nRaymond\nJohn\nJames\nRobert\nWilliam\nGeorge\nJoseph\nDonald\nSam\nArthur\nHarry\nHenry\nNick\nPaul\nWalter\nBilly\nCharles\nDavid\nRichard\nRoy\nAndrew\nFrank\nFred\nClarence\nJack\nKenneth\nPeter\nRalph\nRaymond\nJohn\nRobert\nJames\nWilliam\nDavid\nCharles\nGeorge\nNick\nHarry\nAndrew\nCarl\nHerman\nPeter\nRichard\nAlbert\nDonald\nPaul\nWillie\nFrank\nHarold\nHenry\nJack\nJoe\nJoseph\nMike\nJohn\nPeter\nRobert\nWilliam\nGeorge\nHenry\nDonald\nJames\nPaul\nJack\nCarl\nDavid\nEdward\nHarry\nJoseph\nRichard\nArthur\nFred\nHarold\nAlbert\nFrank\nLawrence\nMichael\nRaymond\nThomas\nAlfred\nErnest\nGerald\nJohnnie\nSam\nTom\nWalter\nJohn\nWilliam\nRobert\nGeorge\nJames\nCharles\nEdward\nPeter\nRichard\nDonald\nHenry\nDavid\nFrank\nHarold\nHarry\nJack\nJoseph\nHerbert\nThomas\nVictor\nBill\nCarl\nJerry\nKenneth\nPaul\nRalph\nJohn\nWilliam\nJames\nCharles\nGeorge\nPaul\nDavid\nDonald\nJoseph\nRobert\nHenry\nFrank\nNick\nRichard\nCarl\nHarold\nLawrence\nCharlie\nEdward\nPeter\nRalph\nRaymond\nWalter\nAlbert\nAndrew\nArthur\nDaniel\nGary\nSimeon\nJohn\nWilliam\nRobert\nJames\nGeorge\nFrank\nEdward\nPaul\nArthur\nCharles\nDavid\nHenry\nRichard\nJoseph\nPeter\nAlfred\nJack\nBenjamin\nDonald\nGilbert\nHarry\nNick\nFredrick\nRalph\nWalter\nJohn\nRobert\nWilliam\nDavid\nJames\nPeter\nRaymond\nAlbert\nAndrew\nThomas\nFrank\nHarry\nHenry\nPaul\nRichard\nDonald\nHarold\nJoseph\nCharles\nJack\nHerbert\nClarence\nEdward\nGeorge\nGerald\nGilbert\nLarry\nLawrence\nMike\nPatrick\nRoy\nStanley\nWalter\nJohn\nRichard\nRobert\nGeorge\nJames\nWilliam\nDonald\nEdward\nPaul\nDavid\nKenneth\nFrank\nJoseph\nRaymond\nHarold\nJack\nWalter\nAlfred\nAllen\nDennis\nHenry\nHoward\nJacob\nLeonard\nPeter\nRonald\nRobert\nJohn\nJames\nGeorge\nRichard\nDonald\nWilliam\nDavid\nThomas\nFrank\nHenry\nPaul\nCharles\nDaniel\nAlbert\nJerry\nBilly\nJoseph\nKenneth\nLawrence\nNick\nRalph\nCarl\nEdward\nFred\nHarry\nJoe\nRay\nAlexie\nGerald\nHerbert\nJacob\nPeter\nRaymond\nRonald\nRobert\nWilliam\nGeorge\nJohn\nDavid\nJames\nPaul\nCharles\nJoseph\nPeter\nRichard\nWalter\nClarence\nDonald\nFrank\nRoy\nNorman\nRalph\nRaymond\nCarl\nEdward\nHenry\nJerry\nMichael\nThomas\nTommy\nArnold\nArthur\nHarold\nLarry\nPatrick\nVictor\nRobert\nJohn\nWilliam\nEdward\nRichard\nAlbert\nJames\nPeter\nCharles\nDavid\nGeorge\nThomas\nWalter\nCarl\nJoe\nJoseph\nRaymond\nDonald\nFrank\nJack\nKenneth\nPaul\nArnold\nBilly\nDaniel\nFred\nGerald\nHarold\nHenry\nMartin\nMike\nPatrick\nPhilip\nRalph\nBill\nFranklin\nFrederick\nGabriel\nGary\nGlenn\nHerman\nVictor\nJohn\nWilliam\nGeorge\nDavid\nJames\nRichard\nRobert\nMichael\nPeter\nArthur\nPaul\nThomas\nEdward\nRaymond\nClarence\nRonald\nDaniel\nDonald\nJack\nKenneth\nAlfred\nCharles\nFrank\nHarold\nJim\nNorman\nWalter\nAlbert\nAndrew\nCarl\nHenry\nHoward\nMoses\nSteven\nJohn\nJames\nWilliam\nRobert\nDavid\nGeorge\nRichard\nFrank\nJoseph\nThomas\nCharles\nPaul\nGerald\nHenry\nRaymond\nArthur\nMichael\nWalter\nAlbert\nDaniel\nEdward\nPeter\nClifford\nJerry\nLawrence\nDonald\nFred\nHerman\nKenneth\nMike\nNicholas\nRoger\nRonald\nErnest\nHarold\nHarry\nJack\nJoe\nLeonard\nMartin\nMoses\nPatrick\nStanley\nRobert\nJohn\nWilliam\nDavid\nJames\nRichard\nCharles\nMichael\nGeorge\nPaul\nGary\nPeter\nFrank\nJoseph\nRonald\nRoy\nDonald\nEdward\nFred\nKenneth\nRaymond\nAlbert\nJerry\nLarry\nThomas\nWalter\nDennis\nHarold\nLawrence\nBill\nCharlie\nDaniel\nHarry\nHenry\nJimmy\nNick\nTommy\nCarl\nJack\nMelvin\nPatrick\nPhilip\nJohn\nRobert\nJames\nWilliam\nDavid\nPeter\nThomas\nCharles\nRichard\nJoseph\nMichael\nRonald\nDaniel\nFrank\nDonald\nHarold\nJerry\nGeorge\nLarry\nAlbert\nEdward\nGerald\nLawrence\nPaul\nAndrew\nDennis\nKenneth\nNick\nNorman\nRoy\nGary\nWalter\nCarl\nDouglas\nHenry\nJack\nMike\nRaymond\nJohn\nJames\nDavid\nWilliam\nRobert\nCharles\nGeorge\nRichard\nGary\nJoseph\nDonald\nDouglas\nMichael\nFrank\nThomas\nRonald\nAndrew\nCharlie\nPaul\nRaymond\nJohnny\nLarry\nAlbert\nEdward\nFred\nJack\nJim\nJoe\nKenneth\nNick\nNorman\nPeter\nAlvin\nDennis\nErnest\nJerry\nMoses\nRoy\nChris\nClifford\nDaniel\nWalter\nRobert\nJohn\nJames\nWilliam\nRichard\nDavid\nMichael\nCharles\nPeter\nPaul\nRonald\nDonald\nFred\nThomas\nGary\nHenry\nJoseph\nLarry\nWalter\nGeorge\nCarl\nKenneth\nDennis\nDouglas\nFrancis\nFrank\nHarold\nRalph\nAlfred\nBob\nEdward\nEugene\nFrederick\nMartin\nMelvin\nPatrick\nRoger\nStanley\nWayne\nAndrew\nBruce\nEric\nGabriel\nHerbert\nIsaac\nJack\nJohnny\nLawrence\nMark\nSteve\nRobert\nJohn\nRichard\nJames\nWilliam\nDavid\nMichael\nJoseph\nCharles\nGeorge\nFrank\nKenneth\nPaul\nDonald\nEdward\nThomas\nPatrick\nClifford\nGary\nPeter\nSteven\nArthur\nGerald\nJack\nLeonard\nMike\nAllen\nArnold\nCarl\nDouglas\nFred\nRoger\nAlfred\nEarl\nJohnny\nLeslie\nRonald\nRoy\nStanley\nSteve\nTerry\nJohn\nJames\nRobert\nDavid\nRichard\nMichael\nWilliam\nLarry\nGeorge\nPeter\nJerry\nRonald\nDaniel\nJoseph\nPatrick\nThomas\nEdward\nGary\nHarold\nDonald\nKenneth\nNorman\nFred\nMike\nTimothy\nDennis\nGerald\nJack\nMark\nRalph\nRoy\nStanley\nStephen\nSteven\nAndrew\nCarl\nCharles\nFrank\nLouis\nMarvin\nPaul\nVictor\nAllen\nArthur\nBernard\nDouglas\nHarry\nJohnny\nSteve\nTom\nWalter\nWayne\nAlfred\nBill\nBruce\nErnest\nEugene\nJoe\nRodney\nTerry\nJohn\nJames\nWilliam\nRichard\nRobert\nMichael\nDavid\nThomas\nCharles\nGeorge\nPeter\nDennis\nLarry\nPaul\nDonald\nRonald\nDaniel\nEdward\nFrank\nGary\nJoseph\nJack\nPatrick\nDale\nDouglas\nHarold\nJerry\nBill\nBruce\nFred\nMike\nRaymond\nVictor\nKenneth\nNorman\nWayne\nDon\nGerald\nLawrence\nSteven\nAndrew\nRoger\nStephen\nTheodore\nWalter\nArthur\nBrian\nCarl\nClifford\nGregory\nLee\nMartin\nRonnie\nAllen\nDan\nEvan\nFrancis\nHenry\nHoward\nJim\nJoe\nRandall\nWilfred\nJohn\nJames\nDavid\nRobert\nMichael\nRichard\nWilliam\nCharles\nThomas\nPaul\nDaniel\nDonald\nJoseph\nKenneth\nRonald\nFrank\nLarry\nGary\nPatrick\nPeter\nRoger\nGeorge\nCarl\nEdward\nJack\nJerry\nRaymond\nHenry\nRoy\nAndrew\nBruce\nJoe\nStephen\nWalter\nArthur\nFred\nGerald\nAlbert\nAlfred\nAllen\nBill\nBrian\nTerry\nAnthony\nDale\nDennis\nLawrence\nLeonard\nMark\nMike\nPhilip\nWayne\nDarryl\nDon\nDouglas\nFrederick\nGilbert\nGregory\nHarold\nHerman\nHoward\nJohnny\nLloyd\nMartin\nRussell\nScott\nSteve\nSteven\nAllan\nBob\nClarence\nEarl\nErnest\nEugene\nFranklin\nFredrick\nGlenn\nGuy\nHarry\nMelvin\nMicheal\nRalph\nTheodore\nJohn\nRobert\nJames\nMichael\nWilliam\nDavid\nRichard\nCharles\nGeorge\nThomas\nJoseph\nDaniel\nPeter\nRonald\nStephen\nSteven\nDonald\nEdward\nKenneth\nPaul\nFred\nDennis\nGary\nGregory\nLarry\nDouglas\nWalter\nJerry\nNorman\nPatrick\nAlfred\nHarold\nMark\nAlbert\nAndrew\nFrank\nJack\nRaymond\nRoger\nAllen\nBilly\nBruce\nHarry\nJoe\nRoy\nRussell\nTheodore\nLawrence\nRalph\nTerry\nArnold\nArthur\nCalvin\nCarl\nDale\nEugene\nJeffrey\nLee\nSteve\nAnthony\nBrian\nChristopher\nEarl\nFrederick\nGene\nGerald\nHerbert\nMartin\nSamuel\nAlan\nBob\nClyde\nEric\nGlenn\nHarvey\nJim\nJon\nStanley\nTony\nWassillie\nWayne\nRobert\nJohn\nJames\nDavid\nWilliam\nMichael\nRichard\nThomas\nSteven\nGary\nGeorge\nDonald\nJoseph\nRonald\nDaniel\nPeter\nCharles\nMark\nBruce\nEdward\nPaul\nDennis\nKenneth\nWalter\nAndrew\nGregory\nLarry\nTimothy\nArthur\nFrank\nStephen\nHenry\nTerry\nRaymond\nAllen\nDale\nLawrence\nRalph\nStanley\nAnthony\nCarl\nJerry\nScott\nNorman\nPhillip\nSteve\nWayne\nWillie\nBenjamin\nChristopher\nEric\nErnest\nFred\nFrederick\nJack\nMatthew\nPatrick\nRoger\nAlbert\nDanny\nFrancis\nFranklin\nGlen\nHarold\nHarvey\nJohnny\nLeonard\nRandall\nRoy\nVictor\nAlan\nAlfred\nAllan\nAlvin\nBill\nCraig\nDouglas\nGuy\nHarry\nJeffrey\nLee\nMaurice\nMoses\nPhilip\nRick\nRodney\nRussell\nSamuel\nTheodore\nJohn\nRobert\nJames\nDavid\nMichael\nRichard\nWilliam\nThomas\nSteven\nCharles\nDaniel\nPaul\nGary\nGeorge\nKenneth\nLarry\nRonald\nJoseph\nRaymond\nDouglas\nTimothy\nDonald\nStephen\nFrank\nGregory\nDennis\nMark\nHarold\nPeter\nBruce\nEdward\nRoy\nArthur\nCarl\nWayne\nChristopher\nJack\nPatrick\nEric\nHoward\nJohnny\nLawrence\nWalter\nEugene\nGerald\nHenry\nJerry\nMartin\nNorman\nGlenn\nMike\nRick\nRoger\nAnthony\nBrian\nDon\nErnest\nFrederick\nGlen\nMelvin\nMicheal\nPhilip\nAlan\nAlfred\nDean\nGene\nGordon\nHarry\nRussell\nSamuel\nTerry\nAlbert\nCharlie\nDale\nEarl\nPhillip\nRalph\nAndrew\nBarry\nChester\nChris\nClifford\nDan\nDanny\nFranklin\nHarvey\nHerbert\nJeffrey\nJoe\nKent\nLeonard\nLloyd\nLouis\nNicholas\nRandy\nTommy\nWarren\nJames\nJohn\nRobert\nMichael\nDavid\nWilliam\nRichard\nThomas\nSteven\nCharles\nGary\nKenneth\nGeorge\nMark\nJoseph\nDonald\nPaul\nPatrick\nRonald\nDaniel\nGregory\nBruce\nEdward\nStephen\nDouglas\nLarry\nDennis\nFrank\nRaymond\nWalter\nJack\nJerry\nHarold\nHenry\nPeter\nTimothy\nAndrew\nGlenn\nTerry\nScott\nAnthony\nWayne\nHarry\nChristopher\nFred\nGerald\nLawrence\nMicheal\nRussell\nErnest\nFrederick\nPhillip\nArnold\nArthur\nCarl\nCharlie\nRandall\nRoger\nRoy\nAlan\nEric\nJeffrey\nJimmy\nSamuel\nDale\nDanny\nEarl\nGene\nGuy\nLee\nMarvin\nMike\nRalph\nStanley\nSteve\nAlfred\nDean\nEugene\nJohnny\nLeroy\nMatthew\nNorman\nAlbert\nChris\nCraig\nDan\nGilbert\nHerbert\nHoward\nJay\nJerome\nJoe\nKarl\nMelvin\nPhilip\nRandolph\nRandy\nRicky\nSam\nTheodore\nTommy\nAllen\nBrian\nClifford\nClyde\nGlen\nJesse\nJim\nKent\nKim\nKirk\nLeo\nLeonard\nLeslie\nLouis\nMitchell\nMoses\nOscar\nReginald\nRick\nDavid\nMichael\nJohn\nRobert\nJames\nRichard\nWilliam\nSteven\nThomas\nCharles\nGary\nJoseph\nDaniel\nMark\nRonald\nStephen\nDonald\nKenneth\nTimothy\nGeorge\nPatrick\nPaul\nDouglas\nGregory\nEdward\nLarry\nPeter\nBruce\nJack\nRaymond\nDennis\nFrank\nJerry\nLawrence\nRoger\nTerry\nFrederick\nHarry\nJeffrey\nRalph\nWalter\nAndrew\nArthur\nCarl\nRandall\nStanley\nWayne\nMartin\nMicheal\nRandy\nAlbert\nChristopher\nDanny\nGerald\nGlenn\nKevin\nEric\nHenry\nKeith\nPhillip\nRodney\nTommy\nCraig\nNorman\nScott\nBilly\nDarrell\nEugene\nGordon\nHarold\nHoward\nKarl\nRoy\nVictor\nAlan\nAnthony\nArnold\nBrian\nDan\nFred\nJohnny\nKurt\nLeonard\nLloyd\nPhilip\nSteve\nAllen\nCharlie\nDale\nHerman\nJimmy\nTony\nWarren\nDelbert\nDuane\nEdwin\nFrancis\nFranklin\nGene\nGlen\nJoe\nJoel\nJonathan\nKent\nLeslie\nLouis\nLynn\nMarcus\nMarvin\nMatthew\nRick\nRussell\nSamuel\nAlexander\nClyde\nCurtis\nDana\nErnest\nGilbert\nHerbert\nJay\nJon\nKelly\nNick\nPerry\nRobin\nRoland\nWilfred\nWillie\nMichael\nJohn\nDavid\nJames\nRobert\nWilliam\nRichard\nMark\nSteven\nGary\nThomas\nDaniel\nCharles\nDonald\nGeorge\nPaul\nRonald\nKenneth\nJoseph\nTimothy\nEdward\nBruce\nLarry\nJeffrey\nStephen\nDouglas\nRaymond\nPatrick\nFrank\nDennis\nDale\nTerry\nPeter\nScott\nGerald\nGregory\nRandy\nAnthony\nHenry\nEric\nHarry\nKevin\nAndrew\nJerry\nPhillip\nRoy\nSamuel\nWalter\nArthur\nCarl\nFrederick\nKeith\nRalph\nAlan\nAllen\nDanny\nRoger\nAlbert\nChristopher\nHerbert\nJack\nLeonard\nStanley\nWayne\nBilly\nBrian\nCraig\nErnest\nFred\nJay\nJimmy\nJohnny\nJon\nLawrence\nMike\nRodney\nHarold\nKurt\nLee\nMatthew\nRandall\nRussell\nDarrell\nGilbert\nGlenn\nHoward\nIsaac\nMartin\nMarvin\nPhilip\nCalvin\nChris\nDon\nEddie\nGlen\nGordon\nHarvey\nLloyd\nMarc\nMicheal\nNorman\nRick\nVictor\nWallace\nAlvin\nBenjamin\nBill\nBrent\nDean\nJeffery\nJim\nLouis\nNick\nOscar\nRicky\nTony\nAugust\nBarry\nBen\nBernard\nBert\nBobby\nBradley\nChristophe\nClarence\nCurtis\nDick\nFrancis\nGuy\nKarl\nKim\nLeslie\nRandolph\nRex\nSidney\nTerrence\nTom\nWarren\nDavid\nMichael\nRobert\nJohn\nJames\nWilliam\nRichard\nMark\nThomas\nSteven\nCharles\nDonald\nKenneth\nRonald\nDaniel\nJoseph\nGregory\nGeorge\nGary\nPaul\nTimothy\nDennis\nPatrick\nStephen\nEdward\nLarry\nBruce\nJeffrey\nDouglas\nKevin\nPeter\nRaymond\nScott\nTerry\nFrank\nBrian\nGerald\nWalter\nWayne\nArthur\nChristopher\nRandy\nRoger\nJack\nJeffery\nJerry\nKeith\nRussell\nAndrew\nDale\nGlenn\nRoy\nAlbert\nAllen\nCraig\nEric\nGordon\nMatthew\nPhilip\nRandall\nVictor\nCarl\nHoward\nLawrence\nLeonard\nMike\nRalph\nRandolph\nChris\nFrederick\nHarold\nHarry\nHenry\nKim\nMicheal\nPhillip\nRodney\nSteve\nBilly\nMarc\nMartin\nMarvin\nNick\nNorman\nStanley\nAlan\nArnold\nBenjamin\nDan\nFloyd\nJimmy\nLeslie\nSamuel\nAnthony\nBarry\nBobby\nCalvin\nCharlie\nDana\nDean\nErnest\nEugene\nGlen\nHerman\nJay\nJon\nJonathan\nKent\nRick\nRonnie\nVincent\nAlfred\nBradley\nBrent\nClifford\nCurtis\nDanny\nGene\nGilbert\nKurt\nLouis\nReginald\nRicky\nTheodore\nTony\nBill\nDarrell\nDave\nDon\nDwight\nEarl\nEdwin\nFred\nJim\nKarl\nMarcus\nMelvin\nMilton\nRay\nVernon\nMichael\nJames\nRobert\nDavid\nJohn\nWilliam\nRichard\nMark\nSteven\nThomas\nDaniel\nDonald\nPaul\nCharles\nGeorge\nKenneth\nTimothy\nGregory\nJoseph\nRonald\nJeffrey\nStephen\nGary\nDennis\nDouglas\nScott\nBruce\nEdward\nFrank\nGerald\nLarry\nPatrick\nRandy\nAnthony\nLawrence\nChristopher\nKevin\nPeter\nBrian\nJerry\nRaymond\nTerry\nFrederick\nKeith\nPhillip\nAndrew\nArthur\nHoward\nWayne\nMicheal\nRoger\nGlenn\nMartin\nRussell\nAlbert\nDale\nDanny\nGordon\nRalph\nWalter\nCarl\nChris\nClifford\nDuane\nJack\nPhilip\nSteve\nCraig\nEdwin\nEric\nJay\nLeonard\nMike\nRay\nHarold\nHarry\nHenry\nLeo\nRicky\nSamuel\nBryan\nErnest\nLeslie\nNorman\nRodney\nStanley\nTheodore\nAlvin\nBilly\nCurtis\nDean\nFred\nFredrick\nJeffery\nJohnny\nJon\nMelvin\nRobin\nAlfred\nBobby\nEugene\nFranklin\nJimmy\nJoel\nLloyd\nNick\nRandall\nRandolph\nTom\nWesley\nAaron\nBenjamin\nDana\nEarl\nFrancis\nGlen\nHerbert\nLonnie\nMitchell\nNathan\nSam\nTony\nVictor\nAlan\nAllen\nBrad\nCecil\nClyde\nDon\nGabriel\nGilbert\nJacob\nJim\nKurt\nLee\nLouis\nMarc\nNicholas\nRonnie\nRoy\nTommy\nVernon\nJohn\nDavid\nMichael\nJames\nRobert\nWilliam\nRichard\nMark\nSteven\nThomas\nDaniel\nGregory\nPaul\nRonald\nCharles\nDonald\nKenneth\nGary\nGeorge\nJoseph\nJeffrey\nPatrick\nPeter\nTimothy\nStephen\nEdward\nKevin\nLarry\nDennis\nDouglas\nRaymond\nTerry\nFrank\nRandy\nRoger\nScott\nBruce\nCarl\nChristopher\nAnthony\nBrian\nLawrence\nSamuel\nWalter\nHenry\nMartin\nGerald\nJerry\nMike\nAllen\nAndrew\nArthur\nEric\nHarry\nRoy\nRussell\nSteve\nBill\nHarold\nJohnny\nKeith\nRodney\nWayne\nDale\nDanny\nFred\nGordon\nJack\nPhillip\nRandall\nGlenn\nJay\nTheodore\nBilly\nHoward\nLeroy\nMatthew\nAlan\nAlbert\nCurtis\nJeffery\nPhilip\nRay\nRick\nFrederick\nJim\nJoe\nLee\nMarvin\nMitchell\nNorman\nBarry\nBobby\nCraig\nEddie\nGreg\nJonathan\nNick\nRalph\nStanley\nBryan\nLeo\nNathan\nBradley\nChris\nDarrell\nDean\nDon\nErnest\nFranklin\nLeonard\nLeslie\nLloyd\nMelvin\nMicheal\nPerry\nVernon\nWade\nWarren\nWillie\nAlfred\nBernard\nCalvin\nDarryl\nDuane\nFloyd\nGuy\nHerbert\nKarl\nKen\nKirk\nKurt\nTodd\nTommy\nTony\nVincent\nWesley\nAlexander\nBenjamin\nBenny\nBob\nCharlie\nDave\nEarl\nEdwin\nElmer\nGlen\nHarvey\nHerman\nJimmy\nKent\nLester\nMarc\nRicky\nRudolph\nTed\nTom\nVictor\nMichael\nJames\nDavid\nJohn\nRobert\nWilliam\nRichard\nMark\nCharles\nKenneth\nThomas\nRonald\nJoseph\nGary\nSteven\nPaul\nTimothy\nGeorge\nDaniel\nDouglas\nLarry\nDonald\nEdward\nScott\nGregory\nJeffrey\nStephen\nTerry\nBrian\nKevin\nChristopher\nCarl\nGerald\nDennis\nFrank\nMike\nPatrick\nRicky\nDale\nPeter\nRaymond\nEric\nRoy\nAnthony\nBruce\nJerry\nJoe\nWayne\nHenry\nJay\nAllen\nStanley\nAlbert\nSamuel\nAndrew\nCraig\nDanny\nHarold\nJack\nBarry\nJohnny\nKeith\nLawrence\nRussell\nBill\nDarrell\nFred\nJim\nKurt\nMatthew\nNick\nPhillip\nRandy\nWalter\nBenjamin\nCurtis\nFloyd\nGlenn\nHarry\nHoward\nJeffery\nKarl\nArthur\nClarence\nDan\nGordon\nJimmy\nJoel\nLee\nMelvin\nNicholas\nRandall\nSteve\nTony\nVernon\nAlan\nBobby\nCharlie\nChris\nDean\nDuane\nErnest\nFrederick\nFredrick\nLeonard\nMartin\nMicheal\nNorman\nRay\nRick\nRodney\nTodd\nTommy\nWarren\nAndy\nBilly\nBryan\nClifford\nDave\nDon\nGlen\nRalph\nRoger\nRonnie\nVincent\nAlfred\nBob\nEarl\nFrancis\nKelly\nMitchell\nRobin\nTheodore\nTom\nByron\nCalvin\nCarlie\nDana\nDarrel\nEdwin\nEugene\nFranklin\nGilbert\nGreg\nGregg\nGuy\nHarvey\nHerbert\nKirk\nLeo\nLewis\nLouis\nMorris\nPhilip\nRandolph\nRickey\nRoland\nRon\nSam\nTim\nVictor\nWallace\nWillie\nJohn\nJames\nRobert\nMichael\nDavid\nWilliam\nRichard\nMark\nSteven\nDonald\nDaniel\nKenneth\nThomas\nGary\nCharles\nPaul\nBrian\nKevin\nGeorge\nPeter\nJoseph\nRonald\nDennis\nPatrick\nTimothy\nEdward\nLarry\nJeffrey\nGerald\nScott\nMike\nAnthony\nRaymond\nCarl\nSteve\nTim\nDouglas\nGregory\nHarold\nJerry\nJoe\nRoger\nAndrew\nBruce\nChristopher\nDale\nBill\nPhilip\nRalph\nRandy\nAlan\nFrank\nJeffery\nStephen\nAlbert\nCraig\nMartin\nRicky\nRoy\nFred\nLawrence\nMatthew\nRodney\nTerry\nWalter\nEric\nHenry\nAllen\nArthur\nBilly\nDanny\nFrederick\nJack\nMicheal\nPhillip\nSamuel\nWayne\nDan\nDuane\nErnest\nEugene\nGlenn\nKeith\nRandall\nAlfred\nBradley\nCurtis\nDarrell\nDean\nDon\nGordon\nHarry\nJim\nJimmy\nJon\nRussell\nStanley\nBryan\nEarl\nHoward\nLee\nTom\nTommy\nWarren\nWillie\nArnold\nBenjamin\nBenny\nBobby\nChris\nHerbert\nJeff\nLeonard\nRay\nRick\nVernon\nAllan\nAlvin\nBrett\nClifford\nFranklin\nGlen\nJackie\nJay\nKelly\nKurt\nLeslie\nMitchell\nNeil\nTony\nWallace\nAaron\nBarry\nBernard\nBrent\nClarence\nErik\nFloyd\nJeffry\nKim\nLance\nNorman\nRonnie\nTheodore\nVictor\nWesley\nDavid\nMichael\nRobert\nJohn\nJames\nMark\nRichard\nWilliam\nSteven\nThomas\nDaniel\nKenneth\nScott\nCharles\nEdward\nKevin\nPaul\nDonald\nTimothy\nBrian\nRonald\nGary\nGeorge\nJoseph\nJeffrey\nPeter\nGregory\nBruce\nDouglas\nPatrick\nLarry\nAnthony\nAndrew\nMike\nDennis\nEric\nWalter\nWayne\nLawrence\nChristopher\nMatthew\nRaymond\nTerry\nFrank\nJerry\nRandy\nHarry\nRussell\nDale\nNorman\nRandall\nStephen\nCarl\nHoward\nJay\nKeith\nRoger\nTom\nAlbert\nJack\nStanley\nSteve\nAlan\nBill\nDanny\nJoe\nRoy\nArthur\nHenry\nJeffery\nVictor\nChris\nClifford\nEugene\nJeff\nJim\nKirk\nLee\nLloyd\nMarvin\nWarren\nBilly\nDean\nDon\nGlenn\nJon\nKarl\nNick\nTim\nBryan\nCurtis\nJimmy\nKurt\nPhillip\nRodney\nShawn\nAlfred\nBob\nCraig\nFred\nFrederick\nGene\nGerald\nGlen\nHarold\nMartin\nMicheal\nRalph\nRicky\nSamuel\nTodd\nVincent\nAaron\nBarry\nBernard\nDuane\nJonathan\nKelly\nLeroy\nMelvin\nMitchell\nPhilip\nRoss\nSam\nTracy\nWillie\nAllen\nArnold\nBen\nBradley\nClayton\nDan\nEarl\nEdgar\nGordon\nGuy\nJesse\nJohnny\nLeonard\nLouis\nMarc\nRick\nTommy\nTony\nAlvin\nBenjamin\nClinton\nDarryl\nGreg\nJacob\nLeslie\nLewis\nNathan\nNicholas\nRay\nRocky\nRoland\nRonnie\nStuart\nTed\nTerrance\nTheodore\nTroy\nWesley\nDavid\nJohn\nMichael\nRobert\nJames\nWilliam\nMark\nThomas\nRichard\nSteven\nTimothy\nPaul\nDaniel\nKenneth\nCharles\nJeffrey\nJoseph\nKevin\nDonald\nGregory\nPeter\nRaymond\nGary\nScott\nRonald\nChristopher\nEdward\nJerry\nDouglas\nBrian\nDennis\nEric\nLarry\nJim\nPatrick\nMike\nAndrew\nBruce\nSteve\nFrank\nJoe\nRoger\nRoy\nJeff\nCarl\nGeorge\nLeonard\nRandy\nStephen\nGerald\nNorman\nWayne\nChris\nGlenn\nHarry\nKeith\nLawrence\nTerry\nAnthony\nAlfred\nHarold\nRay\nAlan\nAllen\nBilly\nMartin\nMatthew\nRodney\nTom\nDean\nEarl\nGordon\nHenry\nJoel\nJonathan\nRicky\nSamuel\nStanley\nTroy\nWalter\nBobby\nCurtis\nDale\nDanny\nFred\nFrederick\nJack\nMarvin\nPhillip\nRalph\nRandall\nRussell\nVictor\nArthur\nJay\nJeffery\nJon\nTodd\nAlbert\nBill\nGlen\nJimmy\nNicholas\nNick\nPhilip\nCharlie\nChuck\nClarence\nClifford\nDana\nDuane\nEdwin\nErik\nFloyd\nForrest\nFrancis\nHoward\nJacob\nKelly\nRoland\nWarren\nBenjamin\nBernard\nBob\nErnest\nHerbert\nJackie\nKirk\nMatt\nMitchell\nMoses\nRex\nSam\nStuart\nVernon\nWillie\nAllan\nArnold\nBarry\nBradley\nClark\nCraig\nDan\nDarryl\nDave\nDon\nDwayne\nGreg\nHarvey\nJohnny\nLance\nLeslie\nLuke\nMarc\nMicheal\nOscar\nPat\nRick\nShawn\nTheodore\nTim\nTony\nVincent\nJohn\nMichael\nDavid\nRobert\nJames\nWilliam\nRichard\nMark\nJoseph\nThomas\nSteven\nTimothy\nCharles\nPaul\nKevin\nBrian\nDaniel\nKenneth\nDonald\nGeorge\nGary\nJeffrey\nGregory\nScott\nDouglas\nCarl\nAnthony\nSteve\nMike\nPatrick\nRaymond\nRonald\nJerry\nPeter\nAndrew\nEdward\nTodd\nKeith\nLarry\nStephen\nChristopher\nWayne\nEric\nAlan\nAllen\nGerald\nJeffery\nRoger\nDale\nDennis\nFrank\nGlenn\nBruce\nCraig\nHenry\nJack\nTerry\nWalter\nBarry\nHoward\nJay\nJimmy\nRalph\nTroy\nRandall\nSamuel\nBryan\nChris\nDarrell\nJohnny\nKarl\nNorman\nRandy\nShawn\nCharlie\nDean\nLouis\nRicky\nRussell\nStanley\nTim\nVictor\nAlbert\nBenjamin\nCurtis\nDanny\nDwayne\nJon\nLawrence\nTom\nVernon\nArthur\nBill\nBilly\nBobby\nClifford\nDuane\nFred\nGordon\nHarry\nMartin\nMarty\nPhilip\nPhillip\nAlfred\nDarryl\nGilbert\nGreg\nHarold\nJeff\nKelly\nMarvin\nNicholas\nNick\nRick\nRoy\nArnold\nFranklin\nJoe\nLance\nLee\nTommy\nTony\nBob\nBradley\nBrent\nDan\nDon\nFrederick\nGuy\nJoel\nLeonard\nLeslie\nMatthew\nMelvin\nRay\nRodney\nTracy\nWade\nAllan\nBert\nBrad\nCary\nChuck\nDarren\nEarl\nEugene\nFrancis\nFreddie\nGlen\nJesse\nJoey\nJonathan\nKent\nMatt\nNathan\nRex\nRoss\nSean\nWesley\nWillie\nWilson\nDavid\nMichael\nRobert\nJames\nJohn\nWilliam\nRichard\nMark\nDaniel\nThomas\nRonald\nCharles\nKenneth\nDonald\nJoseph\nKevin\nScott\nSteven\nEdward\nJeffrey\nBrian\nPaul\nGary\nTimothy\nRaymond\nCarl\nTodd\nEric\nDale\nDouglas\nGregory\nGeorge\nLarry\nAndrew\nKeith\nPatrick\nMatthew\nPeter\nJim\nStephen\nWayne\nMike\nRandy\nFrank\nGlenn\nJerry\nChristopher\nAlfred\nDennis\nLawrence\nRoy\nAnthony\nDanny\nHenry\nWalter\nNorman\nSamuel\nTom\nAllen\nCurtis\nHarry\nJoe\nRussell\nVincent\nBilly\nMartin\nRoger\nTerry\nTony\nCraig\nEugene\nJeff\nKurt\nPhillip\nRodney\nBruce\nKelly\nNick\nShawn\nBenjamin\nClifford\nDuane\nGerald\nJimmy\nMarvin\nTim\nTroy\nWarren\nAlan\nBrent\nChris\nFranklin\nFred\nFrederick\nGlen\nHerbert\nHoward\nNicholas\nRay\nSteve\nBradley\nDaryl\nErnest\nHarold\nJack\nJay\nJeffery\nJohnny\nJon\nMelvin\nPerry\nRandall\nRicky\nStanley\nStuart\nVernon\nVictor\nArthur\nCasey\nDan\nDarrell\nEarl\nGordon\nGuy\nJonathan\nLloyd\nOscar\nPhilip\nRalph\nTracy\nAlbert\nBill\nBobby\nBrad\nCharlie\nChester\nDean\nDon\nFloyd\nFredrick\nGene\nKirk\nLeonard\nLouis\nWillie\nAdam\nAlvin\nBrett\nClyde\nDana\nDarryl\nDwayne\nEdwin\nEvan\nJimmie\nKarl\nKent\nLeo\nLeroy\nMicheal\nMitchell\nSammy\nSidney\nTommy\nJohn\nMichael\nDavid\nRobert\nJames\nWilliam\nRichard\nKenneth\nMark\nThomas\nDaniel\nKevin\nJoseph\nScott\nTimothy\nCharles\nBrian\nRonald\nDonald\nPaul\nJeffrey\nSteven\nChristopher\nGary\nPatrick\nDouglas\nEdward\nTodd\nEric\nGeorge\nAndrew\nFrank\nAnthony\nBruce\nJerry\nPeter\nStephen\nGregory\nRaymond\nDennis\nKeith\nCarl\nHenry\nJeffery\nLarry\nTerry\nJack\nMartin\nPhillip\nRussell\nAlan\nMike\nRandy\nWalter\nFred\nFrederick\nMatthew\nAlbert\nCraig\nDale\nDuane\nHarold\nLawrence\nRoger\nShawn\nEugene\nRoy\nSamuel\nTroy\nVincent\nBilly\nChris\nDean\nNorman\nRandall\nRodney\nDanny\nJim\nJoe\nJohnny\nJonathan\nLeonard\nMicheal\nPerry\nRick\nVictor\nArthur\nBenjamin\nDwayne\nGerald\nGlen\nGlenn\nHarry\nJay\nWayne\nBarry\nClifford\nJoel\nRalph\nRicky\nStanley\nAlfred\nBill\nBryan\nByron\nCurtis\nDarrell\nDarryl\nEvan\nGordon\nGreg\nHerbert\nJeff\nKen\nLance\nTony\nWesley\nBrad\nBradley\nDarren\nDon\nHoward\nKarl\nPhilip\nRonnie\nVernon\nAllan\nAllen\nAndre\nAndy\nArnold\nBobby\nDan\nDerek\nEdwin\nElia\nFrancis\nFranklin\nGabriel\nHarvey\nHerman\nJason\nJesse\nJimmy\nKent\nLee\nLester\nLloyd\nLyle\nMitchell\nSean\nShannon\nStuart\nTheodore\nTim\nTom\nTracy\nWarren\nJohn\nMichael\nRobert\nJames\nDavid\nWilliam\nRichard\nMark\nDaniel\nTimothy\nSteven\nThomas\nBrian\nCharles\nGary\nKevin\nEric\nJeffrey\nKenneth\nJoseph\nChristopher\nPaul\nScott\nDouglas\nEdward\nAnthony\nPatrick\nDonald\nGeorge\nFrank\nMatthew\nPeter\nRaymond\nGerald\nGregory\nRonald\nAndrew\nCarl\nRandy\nTodd\nJerry\nLarry\nRodney\nMike\nTerry\nWalter\nBryan\nCraig\nJack\nRandall\nWayne\nCurtis\nDan\nGlenn\nLawrence\nTim\nBruce\nDennis\nJeffery\nAlbert\nArthur\nBarry\nChris\nDale\nDanny\nHenry\nKeith\nMartin\nRussell\nSean\nAlan\nErik\nHarold\nHarry\nJason\nJon\nAlvin\nDwayne\nJay\nMelvin\nSamuel\nShawn\nStephen\nDarren\nJohnny\nLance\nNorman\nPhillip\nSteve\nTracy\nTroy\nAllen\nBobby\nDarrell\nEddie\nFred\nGordon\nHerbert\nHoward\nKarl\nKent\nLeonard\nLloyd\nRalph\nRoy\nTheodore\nAlexander\nBenjamin\nBernard\nBrent\nDean\nGabriel\nGene\nMarvin\nStanley\nTony\nWesley\nAaron\nClarence\nDon\nFrederick\nGilbert\nIvan\nJeff\nJimmy\nJoe\nJoel\nKurt\nLeroy\nMax\nMicheal\nNathan\nNicholas\nPhilip\nRoger\nVernon\nVincent\nBen\nBilly\nBob\nChad\nDuane\nEarl\nErnest\nFrancis\nFranklin\nGuy\nJonathan\nKelly\nLee\nLonnie\nLoren\nLouis\nMoses\nRay\nRicardo\nSidney\nWillie\nMichael\nDavid\nJohn\nRobert\nJames\nRichard\nWilliam\nMark\nScott\nSteven\nBrian\nKevin\nDaniel\nThomas\nJoseph\nPaul\nCharles\nChristopher\nEric\nJeffrey\nKenneth\nEdward\nGary\nTimothy\nPatrick\nRonald\nGregory\nAnthony\nAndrew\nGeorge\nDonald\nKeith\nMatthew\nStephen\nDouglas\nFrank\nLarry\nTodd\nBilly\nSamuel\nSean\nDarren\nJerry\nMartin\nPeter\nBruce\nRaymond\nRoger\nRussell\nShawn\nTerry\nVincent\nWayne\nGerald\nCarl\nEugene\nJack\nDale\nDennis\nRodney\nTony\nBenjamin\nHarold\nHenry\nJon\nJonathan\nMicheal\nRandy\nSteve\nAlan\nDarryl\nErnest\nJeffery\nJoel\nNorman\nPhillip\nRoy\nCraig\nDanny\nDuane\nHoward\nJason\nKarl\nMike\nRandall\nTroy\nVictor\nWalter\nCurtis\nDarrell\nFrederick\nGlenn\nKurt\nLawrence\nNick\nTim\nVernon\nWassillie\nAlbert\nBrett\nChad\nClifford\nClinton\nEarl\nGordon\nJay\nJesse\nRalph\nStanley\nTeddy\nTheodore\nTracy\nWarren\nAaron\nAlexander\nAllen\nCharlie\nChristian\nDarin\nErik\nEvan\nFranklin\nFredrick\nHarry\nJeff\nJim\nJoe\nJohnny\nKyle\nLance\nLee\nNicholas\nWade\nAlfred\nArnold\nArthur\nBill\nBradley\nChris\nClayton\nGlen\nGrant\nJohnnie\nKelly\nLyle\nMoses\nPhilip\nRay\nRicky\nTommy\nVirgil\nDavid\nMichael\nJames\nJohn\nRobert\nWilliam\nRichard\nMark\nThomas\nCharles\nDaniel\nJeffrey\nBrian\nTimothy\nKevin\nSteven\nJoseph\nKenneth\nPatrick\nScott\nChristopher\nPaul\nAnthony\nDonald\nRonald\nEric\nPeter\nGregory\nAndrew\nDouglas\nShawn\nGary\nGeorge\nMatthew\nRoger\nEdward\nFrank\nGerald\nLarry\nTodd\nJerry\nWalter\nBruce\nSean\nBryan\nPhilip\nLawrence\nRalph\nStephen\nTerry\nPhillip\nCarl\nJack\nJason\nJeffery\nBenjamin\nCraig\nHarry\nJonathan\nMike\nNorman\nRodney\nSamuel\nAlfred\nArthur\nCurtis\nMartin\nAaron\nDale\nDarren\nDean\nDennis\nFred\nGlenn\nJay\nJeff\nJoel\nKelly\nMicheal\nNathan\nRaymond\nStanley\nTony\nTroy\nWayne\nAlbert\nBarry\nEugene\nGlen\nHarold\nHenry\nJon\nKeith\nLance\nTheodore\nTommy\nWarren\nAllen\nBilly\nBrad\nCalvin\nErik\nHerbert\nJimmy\nKirk\nLee\nLeonard\nLeslie\nMarvin\nNicholas\nRussell\nSteve\nTracy\nWesley\nAllan\nBrett\nDanny\nDarin\nDarrell\nErnest\nFrederick\nJesse\nLloyd\nMitchell\nNick\nRandy\nRoy\nTom\nVincent\nAlvin\nBobby\nClarence\nClifford\nEarl\nEdwin\nFranklin\nGordon\nGrant\nIsaac\nJacob\nKarl\nLeo\nLeon\nMarc\nStuart\nTim\nVictor\nJohn\nDavid\nMichael\nRobert\nJames\nRichard\nWilliam\nMark\nBrian\nJoseph\nDaniel\nChristopher\nTimothy\nScott\nThomas\nKevin\nMatthew\nPatrick\nRonald\nSteven\nCharles\nEdward\nEric\nJeffrey\nPaul\nKenneth\nGregory\nDonald\nTodd\nAnthony\nShawn\nPeter\nStephen\nGary\nAndrew\nGeorge\nFrank\nCarl\nDouglas\nRaymond\nSean\nWayne\nJonathan\nLarry\nMike\nAllen\nCurtis\nJason\nRodney\nRoy\nRussell\nWalter\nLawrence\nBryan\nDale\nJeffery\nNick\nAlan\nBradley\nDarren\nGlenn\nJack\nKarl\nMartin\nRoger\nTroy\nVincent\nBrett\nCraig\nDennis\nEugene\nFrancis\nJerry\nLee\nBenjamin\nChad\nDean\nFred\nJim\nKeith\nKurt\nRandall\nAaron\nAlbert\nBruce\nHarold\nMarc\nMelvin\nMicheal\nBill\nBrent\nByron\nClifford\nDuane\nErik\nFranklin\nGerald\nHarry\nHenry\nJohnny\nRandy\nRyan\nSamuel\nShane\nTony\nWarren\nAlex\nArthur\nBrad\nDarrell\nEarl\nEdwin\nErnest\nFrederick\nGordon\nHerbert\nHoward\nJay\nJimmy\nLeslie\nNorman\nRoderick\nSam\nTerry\nVictor\nAdam\nBilly\nBobby\nChris\nJeff\nJoe\nJoel\nKelly\nNicholas\nNoel\nPhillip\nRay\nRicky\nStacey\nTravis\nVernon\nMichael\nRobert\nDavid\nJohn\nJames\nWilliam\nMark\nChristopher\nRichard\nBrian\nDaniel\nCharles\nThomas\nJoseph\nPaul\nKenneth\nSteven\nEric\nRonald\nJeffrey\nTimothy\nAnthony\nDouglas\nMatthew\nScott\nPatrick\nGregory\nJason\nAndrew\nDonald\nKevin\nGeorge\nShawn\nTodd\nSean\nStephen\nDennis\nEdward\nTroy\nAaron\nShane\nRaymond\nCarl\nLarry\nPeter\nWayne\nAlan\nFrederick\nGary\nJon\nHarold\nSamuel\nTravis\nBrett\nFrank\nRandy\nRussell\nBruce\nBryan\nCurtis\nJack\nJoel\nKeith\nLance\nMicheal\nBrent\nDanny\nDean\nGerald\nGlen\nJeffery\nJesse\nMitchell\nPhillip\nArthur\nBenjamin\nChris\nCraig\nDamon\nDarin\nDarren\nDaryl\nJerry\nJonathan\nKurt\nMarc\nMartin\nRodney\nTheodore\nClifford\nDale\nGlenn\nGuy\nHoward\nKarl\nMike\nRalph\nRoger\nTony\nVictor\nVincent\nWalter\nBradley\nChad\nChristian\nCorey\nDuane\nErik\nHarry\nHenry\nJim\nLawrence\nNorman\nShannon\nSteve\nVernon\nAlvin\nClarence\nClinton\nClyde\nEarl\nEdwin\nGordon\nJeff\nJeremy\nJoe\nKelly\nMarvin\nNicholas\nRyan\nTed\nWarren\nAdam\nAlbert\nAllen\nArnold\nBobby\nBrad\nDarrell\nDwayne\nErnest\nEugene\nGabriel\nGrant\nJohnny\nLeif\nLeo\nLuke\nMathew\nNathan\nNick\nPhilip\nRoy\nTerry\nTim\nWesley\nMichael\nJohn\nDavid\nJames\nRobert\nChristopher\nWilliam\nRichard\nThomas\nEric\nKevin\nJoseph\nBrian\nJason\nMark\nDaniel\nSteven\nCharles\nJeffrey\nMatthew\nScott\nPaul\nAndrew\nTimothy\nDonald\nGary\nGregory\nRonald\nShawn\nAnthony\nEdward\nSean\nKenneth\nPatrick\nAaron\nGeorge\nStephen\nDouglas\nFrank\nTodd\nGerald\nPeter\nTroy\nShane\nCraig\nDennis\nJeffery\nKeith\nCarl\nDale\nChad\nJon\nTravis\nAlbert\nAllen\nJerry\nJonathan\nWalter\nBrent\nMicheal\nRodney\nRussell\nSamuel\nWayne\nBrett\nDerek\nErik\nJeremy\nVincent\nBenjamin\nBryan\nChris\nClifford\nKurt\nLarry\nMartin\nPhilip\nAlan\nBruce\nDarrell\nDarren\nGlenn\nKyle\nLance\nLeonard\nPhillip\nRandall\nRaymond\nRyan\nTheodore\nFrederick\nHarold\nJack\nJesse\nJoel\nJohnny\nLawrence\nMarc\nMike\nNicholas\nTerry\nAdam\nArthur\nBilly\nBrad\nBradley\nClinton\nCurtis\nDuane\nEarl\nFranklin\nFred\nJay\nJimmy\nRobin\nShannon\nTrenton\nBrandon\nChristian\nCory\nDanny\nDustin\nHoward\nJim\nKarl\nLyle\nMathew\nMelvin\nNathan\nNeil\nRoger\nVictor\nWade\nWarren\nAndy\nBobby\nByron\nClint\nDarrin\nDean\nDwayne\nErnest\nFrancis\nGuy\nHarry\nJoshua\nKent\nLee\nLonnie\nLouis\nMitchell\nNick\nNorman\nRick\nStewart\nTerrence\nToby\nWesley\nJohn\nRobert\nMichael\nDavid\nJames\nWilliam\nChristopher\nJason\nBrian\nScott\nDaniel\nPaul\nThomas\nSteven\nKevin\nEric\nRichard\nJeffrey\nMatthew\nJoseph\nCharles\nAnthony\nMark\nAaron\nKenneth\nTimothy\nPatrick\nChad\nTodd\nDonald\nGregory\nShawn\nRonald\nSean\nAndrew\nDennis\nDouglas\nStephen\nEdward\nJack\nShane\nJonathan\nBryan\nDerek\nJeffery\nSamuel\nWayne\nCurtis\nKeith\nTroy\nErik\nGary\nGeorge\nJeremy\nPeter\nRaymond\nJerry\nLawrence\nFrederick\nJoshua\nTony\nWalter\nAdam\nAllen\nBenjamin\nCarl\nDuane\nNathan\nNicholas\nBruce\nClinton\nJon\nLance\nLarry\nMicheal\nRussell\nAlbert\nArthur\nHoward\nJustin\nRalph\nRandall\nClifford\nCraig\nDarren\nFrank\nGerald\nJacob\nJay\nKyle\nRandy\nAlan\nChris\nFranklin\nHarold\nHenry\nMartin\nPhillip\nRodney\nRoy\nTheodore\nDale\nDarryl\nGordon\nJoe\nLuke\nMarvin\nNorman\nRicky\nRyan\nTracy\nTravis\nAlfred\nAlvin\nBobby\nBrett\nDarrell\nDwayne\nGarrett\nGlenn\nHerbert\nIan\nJamie\nJoel\nMarc\nMathew\nMike\nNathaniel\nNelson\nSteve\nTerrance\nTerry\nVernon\nVictor\nArnold\nBarry\nBilly\nCasey\nChristian\nClint\nCory\nDanny\nDean\nDerrick\nEugene\nEvan\nJesse\nJim\nJimmy\nJohnny\nJonathon\nKelly\nKurt\nLee\nLeo\nLeonard\nLeslie\nLoren\nMarcus\nNeil\nRobin\nRoger\nTommy\nVincent\nWesley\nWillie\nMichael\nJohn\nDavid\nJames\nChristopher\nRobert\nJason\nWilliam\nBrian\nMatthew\nThomas\nRichard\nDaniel\nJoseph\nPaul\nKenneth\nScott\nEric\nGregory\nKevin\nMark\nCharles\nTimothy\nJeffrey\nSteven\nShawn\nAnthony\nChad\nAndrew\nRonald\nAaron\nDonald\nPeter\nStephen\nEdward\nKeith\nRyan\nPatrick\nSean\nTravis\nBenjamin\nBryan\nJonathan\nJoshua\nTodd\nCraig\nJustin\nDerek\nDouglas\nRaymond\nShane\nFrank\nJesse\nLawrence\nGeorge\nJeffery\nNathan\nSamuel\nAdam\nArthur\nErik\nFrederick\nJoel\nWalter\nBrett\nCarl\nCurtis\nDennis\nGary\nHarold\nIan\nLarry\nRussell\nDarren\nJared\nJimmy\nRoy\nAllen\nBrandon\nBrent\nClifford\nCorey\nDustin\nGabriel\nJack\nJerry\nLance\nNick\nPhillip\nShaun\nTroy\nVincent\nClint\nDanny\nJay\nJeremy\nJon\nKyle\nLloyd\nMarvin\nPhilip\nTerry\nWade\nBruce\nDuane\nEarl\nGerald\nJacob\nJohnny\nLee\nMarcus\nNorman\nRicky\nRodney\nShannon\nWarren\nWayne\nAlan\nArnold\nCasey\nChristian\nChristophe\nDamon\nDarin\nDean\nDon\nDwayne\nEddie\nEmil\nErnest\nForrest\nFred\nGlenn\nHenry\nHoward\nKarl\nLeroy\nMarc\nMarty\nRalph\nRay\nRoss\nStanley\nTom\nTommy\nTony\nWesley\nZachary\nMichael\nJason\nChristopher\nJames\nDavid\nWilliam\nRobert\nMatthew\nBrian\nJohn\nDaniel\nJoseph\nRichard\nEric\nThomas\nRyan\nSteven\nAaron\nScott\nKevin\nPaul\nTimothy\nChad\nJeremy\nCharles\nJeffrey\nBenjamin\nJoshua\nSean\nShawn\nNathan\nJonathan\nShane\nMark\nEdward\nPeter\nKenneth\nTravis\nAnthony\nGary\nJustin\nAndrew\nGeorge\nTroy\nDonald\nPatrick\nDennis\nTodd\nCraig\nErik\nGregory\nJerry\nRonald\nSamuel\nBrandon\nStephen\nCarl\nDouglas\nErnest\nGabriel\nJeffery\nKeith\nBryan\nJacob\nJimmy\nLarry\nAdam\nAlan\nChris\nEdwin\nFrank\nJay\nJoel\nLee\nNicholas\nRalph\nRussell\nWayne\nArthur\nBrett\nCharlie\nChristian\nDanny\nDerek\nJack\nKarl\nKyle\nRaymond\nTony\nEarl\nKelly\nLance\nMarcus\nStanley\nWalter\nAllen\nBrent\nCalvin\nDean\nIan\nJared\nJesse\nMathew\nRay\nRoger\nZachary\nAlbert\nAlexander\nBruce\nByron\nCarlos\nDale\nDarrell\nDuane\nEugene\nEvan\nGerald\nHarold\nHugh\nJamie\nJeff\nMarvin\nPhilip\nPhillip\nRandy\nRoy\nTerry\nWade\nWilson\nMichael\nJason\nJohn\nRobert\nDavid\nJames\nChristopher\nWilliam\nBrian\nMatthew\nDaniel\nJoshua\nJoseph\nAaron\nSteven\nMark\nRichard\nCharles\nKenneth\nRyan\nScott\nTimothy\nJeffrey\nKevin\nSean\nThomas\nEric\nShawn\nAnthony\nGregory\nJonathan\nJustin\nPatrick\nPaul\nAdam\nAndrew\nBenjamin\nJeremy\nTravis\nEdward\nJacob\nNathan\nShane\nSamuel\nChad\nDouglas\nPeter\nStephen\nGeorge\nJeremiah\nDonald\nErik\nBryan\nFrank\nKeith\nBrandon\nLarry\nClinton\nGabriel\nGary\nJared\nRaymond\nRussell\nTodd\nJesse\nRonald\nWesley\nIsaac\nLawrence\nRoy\nAlfred\nCarl\nCurtis\nErnest\nHenry\nJerry\nSeth\nTroy\nBradley\nDarren\nDerek\nHarry\nJack\nJoel\nLance\nMicheal\nNicholas\nRandy\nTerry\nVictor\nAlan\nAlexander\nBilly\nBrent\nClifford\nCorey\nDennis\nDustin\nEugene\nFranklin\nFrederick\nJeffery\nKyle\nMathew\nPhilip\nRandall\nRoss\nVernon\nWarren\nAllen\nArthur\nBrett\nBruce\nCasey\nCraig\nDamon\nEarl\nEli\nFred\nGerald\nGlenn\nHarold\nIan\nJon\nKristopher\nLeon\nLouis\nLuke\nMicah\nMitchell\nNorman\nPhillip\nRalph\nRoger\nShannon\nSteve\nWade\nWalter\nMichael\nJason\nRobert\nChristopher\nDavid\nJames\nJohn\nMatthew\nBrian\nWilliam\nDaniel\nEric\nJeremy\nJoseph\nScott\nAaron\nThomas\nRichard\nTimothy\nJoshua\nShawn\nBenjamin\nKevin\nTravis\nShane\nAnthony\nChad\nJeffrey\nMark\nRyan\nSteven\nCharles\nGregory\nJustin\nAndrew\nNathan\nRonald\nSean\nKenneth\nPaul\nStephen\nGeorge\nRussell\nPeter\nJonathan\nCarl\nJacob\nAdam\nEdward\nBryan\nDonald\nDouglas\nGary\nPhillip\nBrandon\nJack\nSeth\nDale\nErik\nFrank\nJesse\nPatrick\nJon\nKyle\nBradley\nClifford\nDustin\nEugene\nGerald\nIan\nJamie\nJared\nJeremiah\nRaymond\nSamuel\nTroy\nChristian\nDarren\nHenry\nJay\nLance\nMartin\nRoy\nTodd\nWalter\nZachary\nAdrian\nArthur\nChris\nCorey\nGabriel\nKristopher\nNicholas\nSteve\nTerry\nTony\nBruce\nCaleb\nClinton\nJeffery\nJimmy\nMicah\nRoger\nVincent\nWade\nBobby\nCalvin\nCasey\nErnest\nFrederick\nHeath\nJose\nKarl\nKelly\nLee\nRandy\nShannon\nTyler\nWayne\nAlan\nAlexander\nAlfred\nBen\nClayton\nDarrell\nDennis\nDuane\nEdwin\nEvan\nGlenn\nHarold\nIsaac\nJoel\nKris\nLarry\nLawrence\nLloyd\nMarc\nMicheal\nNorman\nOliver\nPhilip\nRalph\nTheodore\nJason\nMichael\nChristopher\nDavid\nJames\nJohn\nBrian\nDaniel\nRobert\nMatthew\nJoseph\nJoshua\nJeremy\nRyan\nWilliam\nEric\nRichard\nKevin\nAndrew\nNathan\nScott\nAaron\nTravis\nAnthony\nMark\nPatrick\nSean\nThomas\nAdam\nShawn\nTimothy\nJacob\nJesse\nSteven\nJeffrey\nJonathan\nShane\nBenjamin\nChad\nJustin\nPaul\nCharles\nGregory\nKenneth\nDennis\nJeremiah\nPeter\nEdward\nZachary\nKeith\nNicholas\nAlexander\nBrandon\nJoel\nStephen\nBrent\nBryan\nDonald\nDouglas\nErik\nFrank\nJay\nNathaniel\nSamuel\nCraig\nDerek\nGeorge\nIan\nJack\nSeth\nCurtis\nFrederick\nJamie\nJared\nLawrence\nRandy\nRaymond\nTodd\nGabriel\nGary\nHarold\nTheodore\nWalter\nJerry\nMathew\nPhillip\nRonald\nRussell\nTroy\nAlan\nKarl\nKyle\nPhilip\nRoy\nTerry\nTommy\nTyler\nWesley\nWillie\nClint\nClinton\nDale\nDustin\nGerald\nHenry\nMitchell\nTrevor\nVictor\nAlfred\nBilly\nBrad\nBruce\nCasey\nCorey\nDamon\nGlenn\nGrant\nKirk\nLee\nLuke\nMoses\nVernon\nWarren\nAlbert\nArthur\nCameron\nCharlie\nColin\nCory\nErnest\nGarrett\nJarrod\nJeffery\nJimmy\nLance\nLeonard\nLucas\nRodney\nRoger\nToby\nJason\nMichael\nChristopher\nDavid\nJames\nRobert\nJohn\nDaniel\nBrian\nJeremy\nWilliam\nMatthew\nJoshua\nJoseph\nAaron\nRyan\nThomas\nJustin\nNathan\nTimothy\nAndrew\nEric\nMark\nKevin\nPaul\nScott\nAnthony\nBenjamin\nJeffrey\nJesse\nSean\nTravis\nJeremiah\nJonathan\nRichard\nSteven\nCharles\nKenneth\nShawn\nPatrick\nAdam\nChad\nJacob\nShane\nBrandon\nNicholas\nCorey\nDonald\nGeorge\nGregory\nPeter\nTroy\nDouglas\nStephen\nJared\nBryan\nIan\nSamuel\nErik\nRonald\nTodd\nAlexander\nEdward\nKristopher\nRaymond\nBrent\nDale\nGary\nWesley\nClinton\nCory\nDennis\nFrank\nNathaniel\nPhilip\nGabriel\nLuke\nMartin\nZachary\nBilly\nCasey\nDuane\nDustin\nJoel\nKyle\nLawrence\nRandy\nCarl\nCraig\nCurtis\nJeffery\nKeith\nMicah\nPhillip\nRodney\nSeth\nTheodore\nWalter\nWayne\nArthur\nDamon\nDarren\nEugene\nFred\nHenry\nRandall\nShaun\nAdrian\nAllen\nBradley\nBrett\nByron\nCalvin\nChristian\nEarl\nHarry\nJamie\nJay\nJon\nLarry\nMarvin\nNeil\nRoy\nRussell\nWade\nAlan\nCameron\nClifford\nDallas\nDamien\nDana\nDerek\nDerrick\nDominic\nFloyd\nFrancis\nFrederick\nGarrett\nHarold\nIsaac\nJerry\nJimmie\nLeonard\nLeroy\nLloyd\nLucas\nMelvin\nMoses\nSam\nTyler\nMichael\nChristopher\nJason\nDavid\nJohn\nJames\nRobert\nJoshua\nDaniel\nJoseph\nMatthew\nBrian\nRyan\nAaron\nEric\nJeremy\nJustin\nWilliam\nTimothy\nBenjamin\nAndrew\nKevin\nNicholas\nSean\nRichard\nNathan\nTravis\nMark\nAnthony\nCharles\nThomas\nJesse\nJonathan\nPatrick\nSteven\nPaul\nAdam\nGregory\nKenneth\nJacob\nJeffrey\nPeter\nShawn\nBrandon\nScott\nJeremiah\nEdward\nRonald\nSamuel\nChad\nDonald\nBryan\nCarl\nDerek\nJared\nShaun\nStephen\nCorey\nDustin\nFrank\nPhillip\nTroy\nDarren\nGeorge\nKyle\nTyler\nDouglas\nRaymond\nSeth\nBilly\nCory\nErik\nJoel\nKristopher\nShane\nZachary\nBradley\nDerrick\nGary\nIan\nJack\nJerry\nTodd\nWesley\nAlbert\nDanny\nGabriel\nHarry\nLuke\nMartin\nWalter\nAlan\nBrent\nCasey\nClinton\nJon\nLucas\nMathew\nPhilip\nRussell\nTrevor\nVincent\nBruce\nDylan\nEthan\nFrederick\nIsaac\nLance\nMicah\nNathaniel\nNick\nNorman\nRandy\nRoger\nTerry\nAlexander\nArthur\nCameron\nClifford\nDamien\nJeffery\nKeith\nLeon\nRodney\nRory\nRoy\nTheodore\nBrett\nByron\nCaleb\nClint\nDennis\nDon\nJay\nJimmy\nJohnathan\nLeif\nLeo\nMarcus\nMarshall\nMarvin\nOwen\nWarren\nWillie\nChristopher\nMichael\nJason\nDavid\nRobert\nJames\nMatthew\nJoshua\nDaniel\nJohn\nRyan\nBrian\nJoseph\nJustin\nWilliam\nJeremy\nNicholas\nKevin\nAaron\nRichard\nTimothy\nAndrew\nBenjamin\nThomas\nPaul\nTravis\nEric\nJeffrey\nJonathan\nMark\nJeremiah\nAdam\nAnthony\nScott\nNathan\nSteven\nBrandon\nCharles\nJacob\nPatrick\nSean\nJesse\nJared\nShawn\nKenneth\nPeter\nBryan\nZachary\nChad\nDustin\nGregory\nKyle\nShane\nGabriel\nGeorge\nErik\nSamuel\nIan\nPhillip\nStephen\nDonald\nGary\nBrent\nEdward\nCasey\nJon\nRonald\nDerek\nDouglas\nHarry\nIsaac\nRoy\nBradley\nCarl\nCorey\nJoel\nKristopher\nShaun\nTyler\nClinton\nCurtis\nGarrett\nJack\nKeith\nLucas\nLuke\nMarcus\nMathew\nRaymond\nTodd\nCory\nDarren\nDennis\nFrank\nLee\nMicheal\nNathaniel\nTrevor\nTroy\nWalter\nArthur\nBrett\nColin\nForrest\nHenry\nRandall\nTheodore\nWesley\nCaleb\nJessie\nJohnny\nKarl\nKelly\nLeonard\nLevi\nRandy\nReuben\nTerry\nVincent\nAlan\nBobby\nClifford\nCody\nCraig\nFrederick\nGrant\nHarold\nJay\nRussell\nShannon\nTony\nAdrian\nAlexander\nAllan\nAustin\nBernard\nBilly\nBruce\nCameron\nChris\nChristian\nDanny\nDarrell\nElijah\nErick\nFred\nGerald\nGlen\nJeffery\nJimmy\nJoe\nLars\nLoren\nLouis\nMiles\nNicolas\nNoah\nOwen\nPhilip\nRicky\nRodney\nStanley\nVictor\nWarren\nMichael\nChristopher\nJames\nJoshua\nJohn\nRobert\nDavid\nMatthew\nJason\nJustin\nRyan\nWilliam\nJoseph\nDaniel\nBrian\nAaron\nEric\nBenjamin\nJeremy\nNicholas\nThomas\nCharles\nTravis\nJesse\nTimothy\nAndrew\nPaul\nAdam\nJacob\nJonathan\nStephen\nPatrick\nNathan\nScott\nSean\nAnthony\nRichard\nBrandon\nJeffrey\nPeter\nChad\nDerek\nJeremiah\nKevin\nSteven\nJared\nKyle\nMark\nShane\nBryan\nSamuel\nIan\nKenneth\nDustin\nGeorge\nLuke\nCasey\nGregory\nKeith\nZachary\nDonald\nRussell\nLucas\nShawn\nDouglas\nEdward\nErik\nGabriel\nIsaac\nJoel\nPhillip\nAllen\nSeth\nShaun\nCarl\nCurtis\nJeffery\nLarry\nPhilip\nRaymond\nRonald\nTrevor\nDennis\nFrank\nGary\nWalter\nBrent\nCody\nJack\nCaleb\nClinton\nColin\nCraig\nKarl\nKristopher\nLee\nLevi\nNathaniel\nNeil\nRoger\nTyler\nVernon\nVincent\nAlexander\nBilly\nBradley\nJerry\nNorman\nTodd\nWesley\nAdrian\nAlan\nCharlie\nDale\nEvan\nJohnny\nLeonard\nMarcus\nRoy\nTheodore\nTroy\nCameron\nClayton\nClifford\nCorey\nCory\nDarren\nDean\nElijah\nHarry\nJamie\nJonathon\nLoren\nMartin\nMicah\nNoah\nRandy\nRodney\nTyson\nWayne\nAbraham\nAlbert\nArthur\nBobby\nBrad\nChristian\nDarrell\nDerrick\nDominic\nDuane\nDwayne\nEdwin\nErich\nEthan\nEugene\nGarrett\nGordon\nHoward\nJay\nJohnathan\nJon\nKurt\nLawrence\nMicheal\nMorgan\nNick\nOscar\nOwen\nRandall\nTerry\nWade\nMichael\nChristopher\nDavid\nJoshua\nMatthew\nJames\nRobert\nDaniel\nJohn\nRyan\nJason\nBrian\nJustin\nJoseph\nNicholas\nAaron\nWilliam\nJonathan\nJeremy\nTimothy\nBrandon\nEric\nJesse\nAdam\nJeffrey\nBenjamin\nThomas\nAndrew\nTravis\nCharles\nJacob\nPatrick\nRichard\nAnthony\nShawn\nDustin\nPeter\nScott\nZachary\nSteven\nSean\nNathan\nPaul\nKyle\nMark\nKenneth\nDonald\nKevin\nGeorge\nSamuel\nJared\nJeremiah\nRaymond\nEdward\nLuke\nSeth\nShane\nBryan\nRussell\nStephen\nBradley\nDouglas\nJoel\nAlexander\nErik\nGary\nDerek\nGabriel\nGregory\nJordan\nLevi\nPhillip\nTyler\nIan\nJack\nKeith\nNathaniel\nTrevor\nWesley\nChad\nCraig\nCarl\nCasey\nCody\nCurtis\nGarrett\nJon\nNeil\nBrett\nCorey\nFrank\nRandall\nRonald\nShaun\nWayne\nDale\nDennis\nHarold\nIsaac\nJay\nJeffery\nJerry\nMarcus\nMorgan\nAlan\nCameron\nChristian\nDarren\nEvan\nHenry\nJamie\nKelly\nLarry\nLee\nPhilip\nRandy\nTodd\nVictor\nAdrian\nAlbert\nAllen\nBrent\nCaleb\nClinton\nCory\nDominic\nGlenn\nKarl\nKristopher\nLeonard\nLucas\nMicah\nRalph\nRoger\nRoy\nTristan\nAlex\nBilly\nBobby\nColin\nGerald\nLogan\nMario\nMicheal\nNoah\nNorman\nRodney\nTerry\nWalter\nAndre\nBeau\nBen\nBrady\nBranden\nBruce\nCharlie\nClayton\nClifford\nCole\nDarrell\nDavin\nEli\nEugene\nGlen\nJake\nJerome\nJonathon\nLance\nLandon\nLouis\nMartin\nMathew\nNicolas\nReginald\nSam\nSimon\nSpencer\nStephan\nTheodore\nTroy\nZachariah\nMichael\nChristopher\nDaniel\nDavid\nJoshua\nMatthew\nJohn\nJames\nJason\nRobert\nJustin\nRyan\nJoseph\nWilliam\nBrian\nBrandon\nAndrew\nJacob\nBenjamin\nAdam\nJeremy\nAaron\nTravis\nNicholas\nTimothy\nJonathan\nAnthony\nCharles\nThomas\nKevin\nNathan\nDerek\nRichard\nJeffrey\nJesse\nEric\nPatrick\nScott\nSteven\nPaul\nSean\nMark\nZachary\nDustin\nKenneth\nChad\nKyle\nShawn\nDonald\nGregory\nJeremiah\nGeorge\nJared\nEdward\nPeter\nIan\nTyler\nDouglas\nBryan\nSamuel\nLuke\nSeth\nStephen\nWesley\nErik\nKeith\nJoel\nNathaniel\nTroy\nAlexander\nBrett\nNoah\nRaymond\nCarl\nCasey\nCory\nGabriel\nLucas\nMartin\nWalter\nClayton\nClinton\nCurtis\nDennis\nEvan\nJordan\nMarcus\nMicah\nTrevor\nBilly\nColin\nRonald\nShane\nVictor\nAllen\nBlake\nBradley\nCaleb\nCorey\nJack\nLarry\nLee\nLevi\nRandy\nShaun\nTerry\nTodd\nBrent\nCody\nFrank\nGarrett\nGary\nHarold\nHenry\nIsaac\nJamie\nPhilip\nPhillip\nRodney\nTaylor\nAdrian\nAlex\nCameron\nCraig\nFrederick\nJerry\nMathew\nMorgan\nRalph\nRoger\nRoy\nTheodore\nTony\nWayne\nArthur\nBobby\nDarren\nJeffery\nJohnathan\nJon\nKelly\nKristopher\nMarvin\nNorman\nStanley\nTyson\nVincent\nZachariah\nAllan\nByron\nChase\nCollin\nDerrick\nDominic\nEthan\nHarry\nHunter\nJake\nLance\nLawrence\nLeonard\nMarc\nRobin\nRussell\nTommy\nAbraham\nAlan\nAlbert\nAlec\nAndy\nAustin\nBarry\nBrendan\nChristian\nCole\nDale\nDana\nDarryl\nDrew\nDylan\nGeoffrey\nGerald\nIsaiah\nJimmy\nJose\nKarl\nKurt\nLeo\nLouis\nMicheal\nNicolas\nRay\nRoss\nWade\nChristopher\nMichael\nJoshua\nMatthew\nDavid\nRyan\nJohn\nRobert\nDaniel\nWilliam\nJoseph\nJames\nJason\nBrandon\nAndrew\nJustin\nAdam\nThomas\nKyle\nBrian\nNicholas\nJacob\nJesse\nTimothy\nAaron\nSteven\nBenjamin\nJonathan\nEric\nTravis\nAnthony\nRichard\nZachary\nCharles\nJeffrey\nKevin\nDustin\nNathan\nSean\nJeremy\nPaul\nPatrick\nScott\nSamuel\nMark\nStephen\nDerek\nKenneth\nJared\nTyler\nGregory\nIan\nPeter\nBryan\nChad\nGeorge\nShawn\nShane\nAlexander\nDonald\nRaymond\nEvan\nJeremiah\nEdward\nKeith\nLuke\nAllen\nBradley\nCody\nCurtis\nDouglas\nJeffery\nJoel\nMarcus\nNathaniel\nRussell\nCarl\nErik\nGary\nJordan\nLance\nNoah\nTheodore\nJonathon\nKristopher\nAlan\nBrett\nCorey\nGrant\nIsaac\nJon\nLarry\nPhillip\nRonald\nSeth\nTristan\nTroy\nCory\nLevi\nMicah\nTrevor\nVictor\nBlake\nCasey\nCraig\nDennis\nDevin\nJoe\nRandy\nVincent\nWayne\nWesley\nArthur\nBrent\nByron\nClayton\nDarren\nJack\nLogan\nLucas\nMitchell\nNorman\nPhilip\nShaun\nTodd\nWarren\nAustin\nBilly\nBrendan\nChristian\nClinton\nErnest\nGeoffrey\nHarold\nIvan\nJohnathan\nKarl\nLawrence\nMarshall\nOwen\nRoger\nTony\nAlex\nAlfred\nCalvin\nCameron\nDane\nDylan\nFrank\nGabriel\nGerald\nGlen\nJake\nJamie\nKelly\nLloyd\nMathew\nMicheal\nMorgan\nRandall\nRoss\nTerry\nAdrian\nArnold\nBrad\nCole\nCollin\nDale\nElijah\nForrest\nGarret\nGlenn\nHenry\nIsaiah\nJay\nJerry\nJonas\nJuan\nKent\nKristofer\nLouis\nMartin\nMax\nNeil\nNicholai\nNicolas\nSpencer\nStephan\nToby\nTommy\nTy\nWalter\nChristopher\nMichael\nMatthew\nJoshua\nDavid\nDaniel\nRobert\nRyan\nJohn\nJames\nBrandon\nJoseph\nJustin\nJason\nBenjamin\nSteven\nWilliam\nBrian\nAndrew\nNicholas\nJacob\nAaron\nJonathan\nThomas\nDustin\nAdam\nKyle\nRichard\nJeremy\nEric\nPatrick\nZachary\nNathan\nTravis\nKevin\nTimothy\nCody\nJesse\nJeffrey\nCharles\nAnthony\nPaul\nTyler\nIan\nKenneth\nSamuel\nSean\nBryan\nPeter\nScott\nGregory\nJared\nMark\nStephen\nCasey\nAlexander\nChad\nShawn\nEdward\nShane\nTroy\nCorey\nCraig\nDerek\nJeremiah\nRussell\nDouglas\nErik\nRaymond\nBrett\nLuke\nSeth\nCory\nGabriel\nJoel\nRonald\nTrevor\nBradley\nColin\nFrank\nNathaniel\nPhillip\nCurtis\nAlan\nDennis\nDonald\nGary\nJack\nWalter\nClinton\nGeorge\nJordan\nLogan\nVictor\nAbraham\nAustin\nCarl\nEvan\nJake\nKeith\nKristopher\nLucas\nPhilip\nAlex\nArthur\nCameron\nDerrick\nLevi\nRandy\nAllen\nBlake\nBrent\nChristian\nDarren\nHans\nIsaac\nJeffery\nLeonard\nTodd\nTristan\nVincent\nWesley\nCalvin\nDevin\nDylan\nIvan\nJamie\nKarl\nKelly\nLarry\nMarcus\nMartin\nMathew\nMicheal\nBruce\nByron\nCaleb\nCarlos\nClayton\nCole\nDale\nDarrell\nGrant\nJohnathan\nJon\nLance\nNick\nRoland\nSam\nSimon\nTaylor\nTyson\nWarren\nAlbert\nAndre\nBobby\nChance\nEli\nErick\nGeoffrey\nJay\nJonathon\nLawrence\nLoren\nLouis\nMitchell\nNeal\nNoah\nNolan\nRodney\nRoy\nShaun\nTommy\nBrenton\nClifford\nEdwin\nErnest\nEthan\nEverett\nGavin\nGerald\nHenry\nHunter\nJerome\nJoe\nKirk\nMarshall\nMax\nMorgan\nOwen\nRicky\nRoss\nSpencer\nTony\nWade\nWillis\nMichael\nChristopher\nJoshua\nMatthew\nDaniel\nRyan\nDavid\nJohn\nJames\nRobert\nAndrew\nJason\nJoseph\nBrandon\nKyle\nWilliam\nJustin\nBrian\nSteven\nNicholas\nJacob\nAaron\nZachary\nThomas\nAnthony\nBenjamin\nRichard\nTravis\nEric\nJesse\nSean\nJonathan\nAdam\nTyler\nNathan\nTimothy\nPaul\nDustin\nAlexander\nJeremy\nKevin\nCharles\nJeffrey\nPatrick\nCody\nPeter\nStephen\nSamuel\nScott\nGregory\nChad\nDerek\nBradley\nShane\nJared\nKenneth\nShawn\nMark\nNathaniel\nBryan\nJeremiah\nJordan\nGarrett\nIan\nCaleb\nCarl\nEdward\nMarcus\nTrevor\nCory\nCameron\nKeith\nBilly\nDevin\nErik\nCasey\nDylan\nGabriel\nJoel\nPhillip\nBrett\nCorey\nSeth\nWesley\nAustin\nCraig\nDonald\nDouglas\nGeorge\nLevi\nLouis\nLuke\nMathew\nVincent\nAllen\nBrent\nJake\nNorman\nRandy\nRaymond\nArthur\nDennis\nFrank\nGary\nJack\nRonald\nRussell\nTheodore\nAbraham\nDarren\nDerrick\nFrederick\nGrant\nIsaac\nKristopher\nMicheal\nRoy\nTristan\nChase\nChristian\nClinton\nCurtis\nGavin\nGordon\nHenry\nLance\nLucas\nMicah\nShaun\nClayton\nDevon\nJon\nLawrence\nPhilip\nSpencer\nVictor\nWalter\nAdrian\nCarlos\nDale\nDrew\nEvan\nForrest\nGerald\nKarl\nKeegan\nKirk\nLogan\nMorgan\nNeil\nNoah\nOwen\nRoss\nTodd\nAlex\nBeau\nDane\nDanny\nGeoffrey\nGlenn\nIvan\nJay\nJessie\nJohnathan\nJonathon\nKelly\nLarry\nLeonard\nMarshall\nStanley\nTroy\nTyrone\nArnold\nBrendan\nBrenton\nCharlie\nClifford\nCyrus\nDean\nDonovan\nErick\nFranklin\nGraham\nHarry\nJohnny\nKory\nLeon\nMartin\nMitchell\nPreston\nRandall\nSimeon\nStephan\nTaylor\nTerrence\nTony\nWayne\nMichael\nChristopher\nMatthew\nJoshua\nRyan\nDavid\nRobert\nJames\nDaniel\nWilliam\nJohn\nAndrew\nNicholas\nJustin\nBrian\nJoseph\nBrandon\nKyle\nJesse\nJason\nBenjamin\nAaron\nTimothy\nAnthony\nJonathan\nTyler\nEric\nThomas\nJacob\nRichard\nSean\nAlexander\nSteven\nKevin\nZachary\nSamuel\nJeremy\nPatrick\nDustin\nNathan\nTravis\nCody\nJeffrey\nPaul\nScott\nJordan\nKenneth\nAdam\nMark\nShane\nStephen\nCharles\nDerek\nPeter\nGregory\nShawn\nCasey\nJared\nChad\nAlex\nGarrett\nLuke\nBryan\nDonald\nEdward\nGeorge\nCory\nIan\nBrett\nCorey\nFrank\nNathaniel\nCurtis\nErik\nJoel\nPhillip\nRonald\nCameron\nDouglas\nKristopher\nTheodore\nDennis\nKeith\nSeth\nCarl\nLucas\nBradley\nClayton\nCraig\nGary\nJeremiah\nJerry\nRaymond\nTaylor\nTrevor\nTroy\nMarcus\nDylan\nGabriel\nNoah\nRussell\nShaun\nAdrian\nBrent\nCaleb\nJeffery\nJohnathan\nMax\nPhilip\nSpencer\nGerald\nLawrence\nLee\nRandy\nVictor\nWesley\nAlan\nBilly\nChase\nDrew\nJake\nJulian\nLance\nMicah\nVincent\nZachariah\nAlbert\nAustin\nBlake\nBryce\nDarren\nDerrick\nEvan\nJay\nJessie\nJonathon\nLogan\nLouis\nPreston\nRoss\nRoy\nSkyler\nAntonio\nBeau\nBrendan\nByron\nClinton\nCole\nColin\nDale\nDane\nForrest\nGeoffrey\nIsaac\nJack\nJamie\nLloyd\nMartin\nMathew\nMorgan\nNickolas\nWalter\nAndre\nArthur\nBranden\nChristian\nDean\nDevin\nDevon\nEli\nEugene\nFrancis\nFranklin\nFrederick\nFredrick\nGordon\nIvan\nJon\nJuan\nKelly\nLevi\nMitchell\nRandall\nRocky\nRory\nTodd\nTony\nWillie\nChristopher\nMichael\nMatthew\nRyan\nJoshua\nRobert\nJustin\nDavid\nJames\nAndrew\nDaniel\nKyle\nBrandon\nJoseph\nJohn\nWilliam\nNicholas\nAaron\nBenjamin\nThomas\nEric\nJacob\nSteven\nJonathan\nSean\nKevin\nTravis\nBrian\nZachary\nJason\nTimothy\nAnthony\nJeremy\nAdam\nPaul\nCharles\nRichard\nScott\nTyler\nPatrick\nSamuel\nCody\nJesse\nDerek\nKenneth\nJordan\nNathan\nBryan\nPeter\nAlexander\nGregory\nMark\nRaymond\nJared\nJeffrey\nBradley\nErik\nStephen\nEdward\nAlex\nCameron\nDustin\nJoel\nCorey\nIan\nLogan\nDonald\nDylan\nGeorge\nLevi\nLuke\nCaleb\nCurtis\nDouglas\nShane\nTrevor\nAustin\nBrett\nCory\nDevin\nGarrett\nJeremiah\nLucas\nShawn\nCarl\nFrank\nSeth\nCasey\nIsaac\nJeffery\nRussell\nDarren\nDennis\nJon\nTheodore\nArthur\nClayton\nColin\nEvan\nHenry\nMarcus\nMax\nNathaniel\nNeil\nRonald\nTaylor\nWesley\nWyatt\nBruce\nByron\nCalvin\nChad\nJake\nJohnathan\nLance\nLawrence\nMartin\nAllen\nChase\nClinton\nGabriel\nGary\nLee\nMitchell\nTroy\nVincent\nWade\nWayne\nBryant\nBryce\nCraig\nDrew\nGerald\nGlen\nGrant\nJimmy\nJonathon\nKristopher\nLeonard\nMorgan\nPhilip\nPhillip\nSpencer\nTyson\nAdrian\nAlan\nAlbert\nBilly\nDale\nElijah\nEugene\nHarold\nHunter\nJack\nJose\nJosiah\nKeith\nLouis\nMathew\nMicah\nNickolas\nRandall\nRandy\nRick\nRoy\nTristan\nAntonio\nBlake\nBrady\nBrendan\nCollin\nDerrick\nDwayne\nEdwin\nErnest\nForrest\nGavin\nGeoffrey\nGlenn\nIsaiah\nJerry\nJuan\nKelly\nLarry\nMarshall\nNoah\nNolan\nPreston\nRodney\nRoger\nTerrance\nWalter\nWarren\nZachariah\nMichael\nChristopher\nJoshua\nJames\nDavid\nMatthew\nJoseph\nAndrew\nKyle\nJustin\nRobert\nDaniel\nJohn\nWilliam\nRyan\nThomas\nNicholas\nBenjamin\nBrandon\nEric\nJason\nKevin\nJacob\nSteven\nZachary\nBrian\nCharles\nAaron\nTyler\nAlexander\nAnthony\nJonathan\nSean\nTimothy\nJesse\nAdam\nJeremy\nNathan\nRichard\nDerek\nSamuel\nCody\nPatrick\nStephen\nJordan\nKenneth\nTravis\nJeffrey\nBryan\nDustin\nMark\nPaul\nScott\nIan\nPeter\nShawn\nCory\nEdward\nGregory\nShane\nCorey\nJared\nNathaniel\nTrevor\nLuke\nCasey\nGarrett\nGeorge\nAustin\nCarl\nDonald\nDouglas\nDylan\nLogan\nJonathon\nLevi\nRaymond\nBradley\nBrett\nIsaac\nJoel\nLucas\nAlex\nEvan\nRussell\nChad\nJohnathan\nRonald\nSeth\nWesley\nCameron\nCurtis\nDevin\nErik\nFrederick\nKeith\nAlan\nJack\nJake\nKristopher\nMarcus\nPhillip\nSpencer\nAdrian\nAllen\nArnold\nChristian\nCraig\nGabriel\nJerry\nTaylor\nTheodore\nVincent\nCharlie\nChase\nClayton\nFrank\nFranklin\nGerald\nJeremiah\nMartin\nMathew\nMax\nMitchell\nRandall\nRoss\nStanley\nTroy\nWalter\nArthur\nBilly\nBobby\nCaleb\nCalvin\nColin\nDarren\nDarryl\nDean\nDennis\nGary\nHenry\nJeffery\nKirk\nLawrence\nLee\nMicah\nNoah\nNolan\nNorman\nRoy\nTodd\nTrenton\nWillie\nBrent\nBryce\nDillon\nGilbert\nGrant\nKarl\nLandon\nLarry\nLouis\nMarvin\nRobin\nWyatt\nXavier\nZachariah\nAlbert\nBaby\nByron\nClinton\nConnor\nDamon\nEli\nEzra\nFrancis\nHarold\nHarry\nHunter\nJohnny\nJosiah\nJulian\nKurtis\nLance\nMaxwell\nMicheal\nMorgan\nRandy\nTerrance\nTerry\nMichael\nChristopher\nJoshua\nMatthew\nDavid\nJames\nJohn\nAndrew\nDaniel\nRobert\nWilliam\nRyan\nJoseph\nNicholas\nZachary\nKyle\nThomas\nAnthony\nSteven\nJustin\nAaron\nJonathan\nKevin\nAlexander\nBenjamin\nTravis\nBrandon\nJacob\nBrian\nEric\nAdam\nRichard\nDerek\nPatrick\nTyler\nCody\nJordan\nJeremy\nSamuel\nTimothy\nJesse\nNathan\nCharles\nIan\nSean\nStephen\nJason\nPaul\nPeter\nJeffrey\nScott\nDustin\nJared\nCaleb\nLogan\nAlex\nBryan\nCameron\nCorey\nLevi\nBradley\nCasey\nChad\nCory\nGarrett\nGregory\nKenneth\nShawn\nEdward\nGeorge\nAustin\nTrevor\nMark\nPhillip\nSeth\nCraig\nErik\nEthan\nJoel\nRaymond\nTaylor\nBryce\nColin\nCurtis\nLuke\nShane\nChase\nDonald\nMarcus\nNathaniel\nBrett\nDarren\nDouglas\nDylan\nLucas\nSpencer\nAlan\nAlbert\nDennis\nIsaac\nJay\nJeremiah\nKeith\nMartin\nRonald\nCarl\nClayton\nDevin\nHenry\nJonathon\nMitchell\nWayne\nWesley\nBrent\nCalvin\nGabriel\nMathew\nPhilip\nRussell\nVincent\nAdrian\nArthur\nClinton\nDerrick\nDillon\nIsaiah\nJack\nMason\nWade\nZachery\nAllen\nChristian\nGary\nHarold\nHunter\nJohnathan\nJose\nKelly\nLance\nMarvin\nMax\nMicheal\nMiles\nRandy\nRoss\nTerry\nTheodore\nWalter\nZackery\nAllan\nBlake\nBruce\nCarlos\nCole\nDaryl\nEvan\nGavin\nGeoffrey\nGerald\nHerbert\nJeffery\nJerry\nJulian\nKristopher\nLarry\nMicah\nRandall\nRodney\nWyatt\nAlfred\nArnold\nBen\nByron\nCharlie\nClifford\nColton\nDarrell\nDuane\nEdmond\nForrest\nFrank\nFrederick\nGalen\nGlenn\nGrant\nHarry\nJaron\nKarl\nNoah\nRalph\nRicky\nShaun\nStephan\nSterling\nTerrence\nTodd\nTony\nVernon\nVictor\nWillie\nXavier\nMichael\nChristopher\nJoshua\nMatthew\nDavid\nAndrew\nJames\nJacob\nDaniel\nRyan\nNicholas\nKyle\nWilliam\nRobert\nJoseph\nJustin\nJohn\nAaron\nAnthony\nTyler\nJesse\nTravis\nKevin\nBrandon\nAlexander\nSamuel\nJonathan\nThomas\nZachary\nEric\nTimothy\nBrian\nSteven\nBenjamin\nRichard\nCody\nJordan\nPatrick\nCharles\nDerek\nJeremy\nStephen\nKenneth\nPaul\nAdam\nNathan\nTrevor\nJeffrey\nScott\nLogan\nSean\nCameron\nIan\nSeth\nEthan\nMark\nTaylor\nChristian\nJason\nPeter\nShane\nCasey\nCaleb\nChad\nDustin\nDylan\nErik\nAustin\nCory\nGregory\nLevi\nAlex\nEvan\nMitchell\nNathaniel\nPhillip\nBradley\nCorey\nEdward\nGarrett\nJared\nWesley\nBryce\nCarl\nGabriel\nDouglas\nGeorge\nRaymond\nRoss\nVincent\nBryan\nCurtis\nDennis\nJeremiah\nAdrian\nDonald\nJake\nKeith\nMarcus\nSpencer\nTanner\nWayne\nCole\nColton\nConnor\nDalton\nDevin\nLance\nLawrence\nLucas\nMax\nRandall\nAllen\nBlake\nChase\nGary\nHenry\nIsaac\nKristopher\nLuke\nMathew\nRussell\nShawn\nBilly\nBrendan\nDarren\nForrest\nJohnathan\nPhilip\nAmos\nBryant\nDean\nElias\nGerald\nJack\nKurt\nLarry\nMaxwell\nMiles\nNorman\nQuinton\nTerry\nVictor\nWillie\nAlan\nAndre\nArnold\nArthur\nBrett\nClifford\nColin\nColten\nCraig\nEugene\nGarret\nGavin\nHarry\nHoward\nIsaiah\nJerry\nJon\nKarl\nKelly\nLeo\nLouis\nMarc\nMario\nMorgan\nRandy\nRiley\nTodd\nTrent\nTrenton\nWalter\nBeau\nCarlos\nClayton\nColby\nCollin\nDillon\nDonovan\nErnest\nGeoffrey\nHunter\nJay\nKristofer\nNicolas\nNolan\nReuben\nSebastian\nStephan\nMichael\nChristopher\nJames\nJoshua\nMatthew\nJohn\nDaniel\nDavid\nRyan\nKyle\nJacob\nRobert\nWilliam\nBrandon\nTyler\nAndrew\nJoseph\nCody\nJustin\nAaron\nTimothy\nBenjamin\nJordan\nThomas\nEric\nZachary\nAlexander\nKevin\nNicholas\nPatrick\nSean\nBrian\nAnthony\nSteven\nTravis\nDylan\nJonathan\nRichard\nTaylor\nNathan\nSamuel\nCharles\nJeremy\nLogan\nPaul\nCameron\nGregory\nJesse\nAdam\nKenneth\nNathaniel\nDerek\nEthan\nGarrett\nMark\nDustin\nJason\nJeffrey\nStephen\nAustin\nBryan\nCorey\nDalton\nKeith\nCaleb\nIan\nShawn\nChristian\nJeremiah\nScott\nTrevor\nEvan\nJared\nPeter\nCasey\nChad\nCory\nRaymond\nAlex\nGabriel\nDillon\nErik\nShane\nDonald\nLuke\nBradley\nDakota\nDevon\nJack\nKody\nLevi\nMarcus\nSeth\nAlbert\nBlake\nChase\nConnor\nGeorge\nIsaac\nJonathon\nPhillip\nRonald\nColton\nDevin\nDonovan\nDouglas\nFrank\nJerry\nVincent\nZachariah\nBryce\nCurtis\nEdward\nGrant\nHayden\nHunter\nMitchell\nPhilip\nSkyler\nWesley\nAdrian\nAlec\nColin\nCraig\nForrest\nGordon\nHenry\nJoel\nJon\nKaleb\nKarl\nKristopher\nMiles\nRandy\nTroy\nWillie\nAlan\nBrendan\nBrent\nByron\nCalvin\nCole\nDarren\nJake\nJulian\nLarry\nLawrence\nLucas\nMason\nMax\nNolan\nShaun\nSpencer\nTanner\nWarren\nAllen\nArthur\nBilly\nBranden\nBrett\nCarl\nDean\nDerrick\nDominic\nEli\nFranklin\nGage\nGavin\nJamie\nJohnathan\nKelly\nMarc\nMaxwell\nNeil\nRoy\nTom\nWalter\nAlfred\nAntonio\nArnold\nBeau\nBrendon\nBrennan\nBruce\nColby\nDrew\nDuane\nGeoffrey\nJackson\nJeffery\nJose\nJosiah\nKeenan\nLeo\nLeon\nLoren\nLouis\nMartin\nMathew\nMaurice\nMoses\nNoah\nParker\nRandall\nRiley\nRobin\nRussell\nSidney\nTrenton\nWayne\nZackary\nMichael\nChristopher\nJoshua\nMatthew\nTyler\nDaniel\nJacob\nJames\nAndrew\nRobert\nJohn\nKyle\nDavid\nJoseph\nZachary\nJustin\nAlexander\nWilliam\nNicholas\nRyan\nBrandon\nCody\nBenjamin\nAnthony\nDylan\nThomas\nTimothy\nJesse\nJonathan\nKevin\nSteven\nNathan\nSean\nAaron\nEric\nJordan\nSamuel\nTaylor\nPatrick\nKenneth\nBrian\nJason\nRichard\nCameron\nAustin\nCharles\nJared\nScott\nChristian\nStephen\nTrevor\nAdam\nDerek\nCaleb\nConnor\nJeremy\nCorey\nGarrett\nLogan\nLuke\nTravis\nEthan\nJeffrey\nGregory\nPaul\nShawn\nNathaniel\nPeter\nAlex\nEvan\nMark\nTanner\nDakota\nDevin\nIsaac\nShane\nBlake\nDustin\nIan\nSeth\nBrett\nEdward\nKeith\nSpencer\nCasey\nChase\nCole\nCurtis\nDillon\nAdrian\nBradley\nCarl\nCory\nForrest\nGeorge\nJoel\nKristopher\nBryan\nChad\nColton\nDonald\nJeremiah\nJohnathan\nMarcus\nBryce\nDennis\nGabriel\nGary\nLucas\nNoah\nPhillip\nTroy\nVincent\nDevon\nErik\nLance\nLevi\nRaymond\nWalter\nWesley\nWyatt\nZackery\nAllen\nDalton\nDouglas\nFrank\nGordon\nHarry\nJack\nJohnny\nLawrence\nMorgan\nRiley\nRoss\nBrent\nClinton\nColin\nDonovan\nGrant\nHunter\nJake\nKeenan\nMax\nNickolas\nRandall\nRonald\nRussell\nWayne\nZachariah\nAndre\nCarlos\nCraig\nDarren\nDevante\nDominic\nGavin\nJonathon\nLarry\nLee\nLeonard\nMarshall\nParker\nZachery\nAlan\nAllan\nBlaine\nBrady\nClayton\nCollin\nDamian\nDamien\nDarius\nDarrell\nDrake\nDwayne\nDylon\nElijah\nFrancis\nGlenn\nIsaiah\nJakob\nJoe\nKeegan\nMackenzie\nMathew\nMaxwell\nMitchell\nRandy\nSkyler\nTheodore\nTodd\nTrever\nVictor\nWade\nWarren\nWeston\nWilson\nMichael\nTyler\nJoshua\nJacob\nMatthew\nDavid\nJames\nChristopher\nJohn\nRyan\nWilliam\nDaniel\nBrandon\nZachary\nAlexander\nAndrew\nRobert\nCody\nJoseph\nKyle\nNicholas\nJordan\nJonathan\nAnthony\nBenjamin\nKevin\nAaron\nThomas\nJustin\nSean\nSteven\nAustin\nChristian\nNathan\nPatrick\nTimothy\nJesse\nDylan\nSamuel\nTaylor\nConnor\nAdam\nJared\nLogan\nCameron\nRichard\nStephen\nTrevor\nJason\nJeffrey\nBrian\nEric\nGarrett\nIan\nKenneth\nTravis\nShawn\nDerek\nJeremy\nMark\nCharles\nCory\nDakota\nLuke\nSeth\nBryan\nChad\nPaul\nWesley\nAlex\nCole\nCorey\nDillon\nEdward\nGabriel\nGeorge\nIsaac\nJake\nNathaniel\nRaymond\nJeremiah\nMitchell\nShane\nCaleb\nCurtis\nDustin\nEvan\nHunter\nTanner\nCasey\nColton\nDalton\nDevin\nEthan\nJack\nKeith\nSpencer\nErik\nPeter\nScott\nZachery\nAlan\nBradley\nCarl\nDevon\nDonald\nDouglas\nElijah\nForrest\nHenry\nRonald\nRussell\nWalter\nAdrian\nConner\nCraig\nDallas\nKody\nLarry\nMarcus\nMason\nNicolas\nNolan\nTheodore\nBlake\nBrendan\nClayton\nGrant\nJoel\nLevi\nMartin\nMax\nMicah\nQuinn\nVincent\nAndre\nArthur\nBrent\nBryce\nColin\nDemetrius\nDominic\nDonovan\nGregory\nJerry\nJonathon\nLucas\nPhillip\nRiley\nTristan\nTroy\nXavier\nZachariah\nZane\nAlec\nAntonio\nChase\nDrew\nFrancis\nGerald\nHarry\nJeffery\nJohnathan\nNickolas\nRoy\nSkyler\nTodd\nTrenton\nWade\nZackery\nAlbert\nAlfred\nAllen\nBrett\nByron\nCalvin\nDarrell\nDarren\nDominique\nEdwin\nElliot\nElliott\nFrank\nGage\nHarold\nJose\nJulian\nKarl\nKristopher\nMathew\nMaxwell\nMiles\nParker\nRandy\nSheldon\nVictor\nWarren\nWillie\nZackary\nMichael\nJacob\nTyler\nChristopher\nDaniel\nMatthew\nJames\nJoshua\nBrandon\nJohn\nJoseph\nNicholas\nDavid\nZachary\nKyle\nRyan\nRobert\nAlexander\nCody\nJustin\nAustin\nAndrew\nAnthony\nWilliam\nBenjamin\nKevin\nThomas\nDylan\nSamuel\nSean\nPatrick\nJonathan\nNathan\nChristian\nAaron\nJordan\nSteven\nBrian\nTrevor\nAdam\nJesse\nConnor\nTaylor\nGabriel\nTravis\nJared\nCaleb\nEric\nKenneth\nCharles\nHunter\nTimothy\nAlex\nLogan\nDalton\nErik\nIan\nIsaac\nJack\nScott\nDevin\nGarrett\nNathaniel\nRichard\nStephen\nDakota\nMark\nCameron\nDerek\nEthan\nJeremiah\nJeremy\nSeth\nBlake\nCarl\nCole\nDouglas\nDustin\nGregory\nLuke\nShane\nAlec\nBradley\nEvan\nJason\nLevi\nChase\nColton\nCurtis\nDonald\nEdward\nMason\nShawn\nBryan\nCory\nElijah\nForrest\nJoel\nTroy\nCorey\nJohnathan\nTanner\nBrett\nChad\nColin\nDillon\nDonovan\nGavin\nGeorge\nGrant\nJeffrey\nKody\nMitchell\nPaul\nPeter\nSkyler\nVincent\nAllen\nAndre\nBryce\nCarson\nChance\nClayton\nDawson\nDominic\nHenry\nLawrence\nNoah\nSpencer\nBrendan\nDevan\nFrederick\nHayden\nJohnny\nLucas\nMathew\nNolan\nRaymond\nWesley\nAlan\nAvery\nCalvin\nCasey\nDrew\nGerald\nJackson\nJake\nJalen\nJamie\nJeffery\nJulian\nKeith\nMarshall\nMartin\nMaxwell\nMorgan\nQuinn\nRiley\nSheldon\nSterling\nStuart\nTrenton\nWyatt\nAdrian\nAntonio\nBilly\nBrady\nCollin\nDamian\nDamon\nDarren\nDarryl\nDeandre\nEverett\nFrank\nHarley\nHarold\nHarrison\nIsaiah\nJon\nJosiah\nKameron\nKarl\nKeenan\nKristopher\nLee\nLeonard\nLiam\nLouis\nMarcus\nNickolas\nNicolas\nParker\nPhillip\nRonald\nSimon\nWillie\nZachery\nMichael\nJacob\nBrandon\nTyler\nMatthew\nDaniel\nJohn\nJoshua\nAustin\nChristopher\nJames\nRyan\nAndrew\nKyle\nWilliam\nNicholas\nJoseph\nAlexander\nJustin\nZachary\nRobert\nCody\nThomas\nAnthony\nDavid\nBenjamin\nJonathan\nSamuel\nAaron\nDylan\nTimothy\nCharles\nJordan\nNathan\nSteven\nKevin\nChristian\nCaleb\nJeremiah\nKenneth\nRichard\nSean\nWyatt\nConnor\nJesse\nDakota\nEric\nJason\nPaul\nAdam\nBrian\nHunter\nSeth\nCameron\nColton\nDalton\nIan\nLogan\nLucas\nTaylor\nTrevor\nTristan\nDevin\nLuke\nTravis\nTroy\nGabriel\nAlex\nBlake\nNathaniel\nPatrick\nPeter\nShane\nBradley\nDouglas\nEvan\nJared\nJeffrey\nCole\nDustin\nEdward\nIsaac\nMark\nRiley\nSpencer\nStephen\nElijah\nEthan\nJack\nJeremy\nCarl\nCory\nDerek\nGarrett\nIsaiah\nMitchell\nMorgan\nScott\nNoah\nTanner\nBrett\nChase\nDillon\nGeorge\nJake\nJoel\nJosiah\nMarcus\nWesley\nZachery\nCorey\nCraig\nDevon\nDominic\nGrant\nJonah\nLevi\nShawn\nSkyler\nBrent\nChance\nClayton\nColin\nCurtis\nGage\nHayden\nHenry\nMason\nMax\nMaxwell\nAidan\nAllen\nArthur\nBryan\nEli\nElias\nErik\nGregory\nIvan\nJohnathan\nKeenan\nMicah\nNolan\nRandy\nTheodore\nTristen\nAndre\nBranden\nBrendan\nBryce\nCalvin\nCollin\nDarren\nKaleb\nLiam\nNickolas\nOrion\nPhillip\nRaymond\nRussell\nSheldon\nWalter\nZackary\nZane\nAlec\nAntonio\nAvery\nChad\nChaz\nColby\nConner\nDamon\nDarius\nDennis\nDevan\nDorian\nDrake\nFrank\nJackson\nJeffery\nJimmy\nJonathon\nKarl\nKeith\nKorey\nLance\nLane\nMathew\nMiles\nMoses\nOliver\nRonald\nTucker\nVincent\nXavier\nMichael\nJacob\nJohn\nDavid\nJames\nMatthew\nChristopher\nWilliam\nTyler\nDaniel\nJoshua\nRyan\nZachary\nBrandon\nJoseph\nRobert\nAustin\nCody\nKyle\nThomas\nJonathan\nNathan\nAndrew\nAlexander\nBenjamin\nAnthony\nNicholas\nSamuel\nAaron\nTimothy\nHunter\nJesse\nDylan\nJordan\nChristian\nJustin\nEthan\nLogan\nSean\nCaleb\nTristan\nKevin\nTrevor\nCharles\nConnor\nGarrett\nSteven\nBrian\nJared\nWyatt\nAdam\nDakota\nIan\nTravis\nIsaiah\nNathaniel\nPatrick\nRichard\nColton\nDevin\nElijah\nJason\nLuke\nEric\nGabriel\nIsaac\nStephen\nTaylor\nBradley\nEvan\nJeremy\nScott\nCameron\nChase\nKenneth\nAlex\nDevon\nDustin\nJeremiah\nJoel\nLevi\nLucas\nMarcus\nMason\nCalvin\nCole\nHayden\nHenry\nJack\nNoah\nBlake\nErik\nGeorge\nLiam\nMark\nRiley\nTanner\nChance\nCollin\nDalton\nAntonio\nBrett\nDarren\nDennis\nJonah\nPaul\nShane\nShawn\nTrenton\nAllen\nBryce\nDillon\nDonald\nDouglas\nGage\nJeffrey\nJon\nKaleb\nKody\nKristopher\nMitchell\nNolan\nSeth\nSpencer\nWesley\nCraig\nCurtis\nDerek\nDonovan\nFrank\nJohnathan\nJosiah\nJulian\nKeith\nMathew\nMicah\nNickolas\nParker\nRalph\nRaymond\nTheodore\nTristen\nVictor\nVincent\nWalter\nXavier\nAidan\nAlec\nBrady\nBryan\nCarl\nChad\nCharlie\nColin\nDerrick\nEdward\nGrant\nGunnar\nJake\nJerry\nJose\nKeenan\nLawrence\nMackenzie\nOrion\nPhillip\nSkyler\nTroy\nWade\nZachery\nBailey\nBrayden\nBrendan\nCasey\nConner\nCooper\nCorey\nCory\nDuncan\nGary\nGavin\nGregory\nHarley\nHarrison\nJaden\nKeegan\nKyler\nLee\nLukas\nMarshall\nMaxwell\nRandy\nRoy\nTristin\nTy\nTylor\nWayne\nJacob\nJames\nMichael\nJoshua\nBrandon\nJoseph\nJohn\nTyler\nZachary\nChristopher\nDavid\nRyan\nWilliam\nMatthew\nAustin\nAndrew\nDaniel\nSamuel\nNicholas\nJustin\nAlexander\nKyle\nRobert\nAnthony\nChristian\nCody\nJordan\nLogan\nDylan\nBenjamin\nHunter\nAaron\nJonathan\nElijah\nPatrick\nThomas\nTristan\nJason\nCaleb\nCole\nIsaiah\nTrevor\nNathan\nEthan\nJesse\nConnor\nSteven\nTimothy\nCharles\nDakota\nGabriel\nJared\nKevin\nRichard\nPaul\nBrian\nEric\nIan\nKenneth\nWyatt\nGarrett\nIsaac\nJack\nJeremy\nNoah\nPeter\nEdward\nChase\nDustin\nGavin\nGeorge\nNathaniel\nRaymond\nSean\nAdam\nBryce\nDevin\nSeth\nTaylor\nBradley\nColton\nDawson\nMason\nWesley\nCalvin\nDerek\nEvan\nGage\nLiam\nPreston\nSpencer\nTanner\nTravis\nAlec\nCameron\nDalton\nRiley\nShane\nSkyler\nStephen\nCasey\nChance\nGrant\nJeremiah\nAlex\nBlake\nJeffrey\nJon\nLevi\nLuke\nMark\nMax\nMitchell\nRonald\nShawn\nWalter\nBrett\nBryan\nDillon\nDouglas\nFrederick\nHenry\nLucas\nMarcus\nRussell\nAntonio\nBrady\nDominic\nDonovan\nErik\nFrancis\nFrank\nGregory\nJake\nJeffery\nJoel\nJohnathan\nJose\nKeenan\nKyler\nNickolas\nScott\nXavier\nZane\nAlonzo\nArthur\nBrendan\nCarl\nDennis\nDonald\nHarrison\nJosiah\nKeegan\nLouis\nMelvin\nNicolas\nPhilip\nSimon\nTristen\nTy\nVincent\nAidan\nBailey\nChandler\nColin\nConner\nCorey\nCory\nCurtis\nDeshawn\nDevon\nDominick\nDrew\nEzra\nHayden\nHerbert\nJackson\nJerry\nJulian\nKristopher\nLawrence\nLuis\nMorgan\nNick\nOwen\nPhillip\nQuinn\nRandall\nTucker\nVictor\nWarren\nZachery\nMichael\nJacob\nJoshua\nBrandon\nDavid\nJoseph\nMatthew\nAndrew\nJames\nAustin\nDaniel\nAlexander\nRobert\nWilliam\nChristopher\nTyler\nJohn\nNoah\nSamuel\nJustin\nKyle\nAnthony\nHunter\nRyan\nEthan\nLogan\nThomas\nChristian\nCody\nNicholas\nZachary\nBenjamin\nDylan\nTristan\nJonathan\nKevin\nConnor\nJared\nCameron\nCaleb\nPatrick\nAaron\nColton\nNathan\nElijah\nJordan\nJason\nSean\nEric\nIan\nIsaac\nTravis\nChase\nNathaniel\nTimothy\nTrevor\nBrian\nCole\nJeremiah\nSeth\nSpencer\nGabriel\nGarrett\nAdam\nCharles\nDakota\nIsaiah\nJesse\nShawn\nBradley\nDerek\nJack\nJeremy\nMitchell\nDawson\nSteven\nMark\nMason\nPaul\nPeter\nRichard\nBryce\nDalton\nDevon\nHayden\nWyatt\nAlex\nDouglas\nKenneth\nLucas\nLuke\nShane\nStephen\nAlec\nAntonio\nBrendan\nDevin\nEvan\nBailey\nGavin\nKeegan\nLevi\nLiam\nRiley\nTanner\nAdrian\nBlake\nChad\nConner\nErik\nGeorge\nGregory\nJoel\nJonah\nKobe\nMax\nPhillip\nRaymond\nTroy\nWalter\nZachariah\nAlfred\nBryan\nCasey\nClayton\nCollin\nDarren\nDrew\nDustin\nGage\nGrant\nHenry\nJohnny\nKeith\nNolan\nRonald\nScott\nSkyler\nTaylor\nTrenton\nVictor\nVincent\nAbraham\nCarl\nCarlos\nCarter\nChance\nCorey\nCurtis\nDominic\nEdward\nHarrison\nJake\nKarl\nKyler\nMarcus\nNicolas\nNikolas\nRussell\nTristen\nTucker\nTy\nWesley\nZane\nAidan\nAlbert\nAllen\nBraden\nBrennan\nByron\nCharlie\nColin\nCooper\nDamon\nDesmond\nDonovan\nFrank\nHarry\nJackson\nJakob\nJayden\nJeffrey\nJesus\nJosiah\nJustice\nKeaton\nKristopher\nLarry\nMartin\nMathew\nMaxwell\nMicah\nMiles\nMorgan\nPhilip\nQuincy\nRiver\nJacob\nJoshua\nMichael\nTyler\nDylan\nJoseph\nMatthew\nAlexander\nChristopher\nJohn\nRyan\nDavid\nAndrew\nAustin\nDaniel\nBrandon\nWilliam\nAnthony\nIsaiah\nJustin\nKyle\nJames\nZachary\nHunter\nNoah\nRobert\nChristian\nEthan\nJonathan\nSamuel\nBenjamin\nCody\nNicholas\nSean\nThomas\nEric\nCaleb\nSteven\nAaron\nCameron\nNathan\nTrevor\nConnor\nJared\nIsaac\nNathaniel\nSeth\nJordan\nTristan\nChase\nJason\nJesse\nLuke\nTimothy\nCharles\nDawson\nKevin\nPaul\nJack\nBrian\nGabriel\nIan\nRichard\nBlake\nCole\nColton\nElijah\nLogan\nGarrett\nWesley\nGavin\nJackson\nLevi\nPeter\nRiley\nBradley\nJeremy\nAdam\nBryce\nDakota\nDevin\nEvan\nPatrick\nSpencer\nAidan\nEdward\nJosiah\nMason\nScott\nTanner\nAlex\nKeegan\nKenneth\nWyatt\nZane\nCollin\nDerek\nElias\nLiam\nMitchell\nPreston\nShane\nBrendan\nCarson\nCurtis\nDalton\nDominic\nJake\nJeremiah\nMax\nMicah\nOwen\nSkyler\nTravis\nTristen\nCasey\nConner\nCorbin\nHayden\nJaden\nJoel\nLucas\nMarcus\nMark\nNolan\nQuinn\nRonald\nShawn\nStephen\nTaylor\nTristin\nXavier\nAllen\nAntonio\nBrady\nBryan\nCaden\nCalvin\nChad\nChance\nDillon\nDonovan\nDustin\nGage\nGeorge\nJakob\nJayden\nJonah\nKobe\nRandy\nRoman\nWalter\nZachery\nAlec\nArthur\nBraden\nBrett\nChandler\nCorey\nDale\nDennis\nErik\nEverett\nGregory\nLars\nMathew\nMorgan\nNelson\nOrion\nRodney\nTrenton\nAdrian\nAvery\nBailey\nBranden\nBrennan\nCarl\nCarter\nColin\nCooper\nDamian\nDeven\nDrake\nEli\nElliot\nFrank\nHarley\nHarry\nJesus\nJohnathan\nJonathon\nJustice\nKaleb\nKalen\nLawrence\nLouis\nMaxwell\nMiles\nNicolas\nNikolas\nPhilip\nPhillip\nReece\nReed\nSimon\nStanley\nTheodore\nTucker\nVincent\nMichael\nJacob\nWilliam\nJoshua\nJames\nAndrew\nBrandon\nMatthew\nZachary\nDaniel\nJoseph\nJohn\nChristopher\nDavid\nTyler\nHunter\nNathan\nAustin\nEthan\nChristian\nKyle\nAlexander\nDylan\nJustin\nNicholas\nNathaniel\nRobert\nRyan\nSamuel\nNoah\nElijah\nIan\nIsaiah\nBenjamin\nThomas\nCameron\nAnthony\nGabriel\nJonathan\nCaleb\nJordan\nLogan\nConnor\nIsaac\nSteven\nAaron\nTrevor\nCharles\nDevin\nKevin\nCody\nJesse\nTaylor\nJason\nKenneth\nPatrick\nAdam\nJaden\nLuke\nTimothy\nBlake\nDawson\nEric\nGarrett\nJared\nJeremy\nLiam\nSeth\nColton\nJack\nPaul\nTristan\nWyatt\nBryce\nChase\nCole\nDakota\nGavin\nRiley\nSean\nTravis\nDevon\nJulian\nKaleb\nLevi\nLucas\nMason\nStephen\nAidan\nColin\nDerek\nRichard\nGeorge\nHayden\nJalen\nJeremiah\nMark\nPeter\nAntonio\nBryan\nDalton\nFrank\nHenry\nJackson\nJayden\nJoel\nBradley\nBrian\nChad\nDominic\nDonald\nDustin\nEdward\nJake\nSkyler\nTanner\nTroy\nAiden\nAlex\nDillon\nEvan\nGrant\nJosiah\nMicah\nRonald\nShane\nTristin\nVincent\nAdrian\nAvery\nBraden\nBrendan\nCaden\nCamden\nCarl\nCarson\nCasey\nJeffrey\nKaden\nKobe\nMarcus\nMaxwell\nOwen\nPreston\nXavier\nCalvin\nCarter\nClayton\nDante\nDarian\nDarius\nDarren\nDonovan\nEdgar\nEli\nForrest\nGage\nGregory\nKody\nMoses\nPeyton\nPhilip\nRaymond\nScott\nSpencer\nTheodore\nTrace\nTrenton\nWalter\nWesley\nAlfred\nBailey\nBrayden\nBrody\nCade\nChance\nCollin\nConner\nCorbin\nCorey\nDamian\nDamien\nDrew\nEarl\nElias\nIvan\nJaylen\nJerry\nJonah\nJuan\nKeith\nKristopher\nLance\nLandon\nMitchell\nNicolas\nNolan\nOrion\nParker\nSage\nSilas\nTristen\nVictor\nZane\nMichael\nJacob\nTyler\nEthan\nJoseph\nWilliam\nDylan\nDavid\nJoshua\nMatthew\nJames\nDaniel\nNicholas\nChristopher\nThomas\nAlexander\nJohn\nGabriel\nJustin\nZachary\nBrandon\nLogan\nRobert\nBenjamin\nCameron\nNathaniel\nAndrew\nNoah\nChristian\nConnor\nKyle\nRyan\nAustin\nCaleb\nHunter\nSamuel\nAaron\nAnthony\nElijah\nJaden\nJonathan\nIsaac\nSeth\nJackson\nLuke\nIan\nKenneth\nTristan\nKevin\nTrevor\nIsaiah\nJordan\nKaleb\nNathan\nAdam\nCody\nBlake\nDevin\nSean\nCharles\nEvan\nJason\nJeremiah\nRiley\nTimothy\nWyatt\nAidan\nAlex\nJack\nJared\nJesse\nHayden\nPatrick\nTravis\nBrian\nEdward\nLevi\nCarter\nCole\nGavin\nJeremy\nLiam\nRichard\nBrayden\nChase\nEric\nMason\nOwen\nShawn\nTanner\nDakota\nGarrett\nHenry\nLucas\nMark\nSkyler\nSpencer\nStephen\nBrendan\nBryce\nDustin\nElias\nJayden\nMicah\nPeter\nRonald\nShane\nSteven\nTaylor\nTrenton\nAiden\nCarson\nColton\nConner\nDarius\nDawson\nDevon\nJon\nJosiah\nVincent\nAdrian\nBradley\nDerek\nDominic\nGage\nGeorge\nKeegan\nKobe\nKyler\nMaximus\nPreston\nRaymond\nSimon\nTheodore\nCaden\nCollin\nDamian\nDrew\nGregory\nJake\nJalen\nJoel\nJonah\nJulian\nKaden\nNolan\nPaul\nPayton\nSebastian\nTroy\nXavier\nAshton\nCasey\nCorbin\nDalton\nDamien\nDonovan\nEli\nJeffrey\nJustice\nLeon\nMalachi\nMalik\nMax\nMitchell\nMorgan\nQuentin\nScott\nTristen\nWalter\nAlec\nAntonio\nArthur\nAvery\nBlaine\nBrady\nBrendon\nBrett\nBryan\nBryant\nCalvin\nCarlos\nChance\nColin\nCooper\nCurtis\nDarian\nDillon\nEverett\nHudson\nJay\nJett\nKai\nKameron\nKristian\nMackenzie\nMiles\nParker\nRay\nSawyer\nSterling\nTalon\nTyson\nWesley\nZion\nJacob\nJoshua\nMichael\nEthan\nTyler\nJoseph\nDylan\nJames\nMatthew\nWilliam\nBenjamin\nAlexander\nAndrew\nJohn\nNicholas\nAnthony\nHunter\nLogan\nRyan\nJonathan\nDaniel\nGabriel\nRobert\nCaleb\nSamuel\nZachary\nNoah\nAustin\nDavid\nIsaac\nJustin\nChristopher\nChristian\nMason\nIsaiah\nThomas\nElijah\nSeth\nBrandon\nJordan\nKyle\nNathaniel\nNathan\nGavin\nJaden\nCody\nJack\nLuke\nAaron\nJayden\nTristan\nTimothy\nTrevor\nConnor\nKevin\nRichard\nAidan\nIan\nJared\nJesse\nJosiah\nMark\nEric\nJeremiah\nCameron\nCharles\nChase\nDevin\nMalachi\nPatrick\nRiley\nSean\nCole\nDawson\nJackson\nKenneth\nLiam\nSteven\nEvan\nHayden\nHenry\nJason\nJulian\nKaden\nKaleb\nAiden\nElias\nGarrett\nGeorge\nLevi\nLucas\nShawn\nWyatt\nAlex\nBlake\nCarson\nJalen\nPayton\nSkyler\nBrayden\nBryce\nDevon\nDominic\nDonovan\nNolan\nOrion\nPaul\nPeter\nVincent\nWesley\nAdam\nBrendan\nBrian\nCarl\nChance\nClayton\nDalton\nDerrick\nDominick\nDustin\nPreston\nSpencer\nBradley\nCaden\nColin\nConner\nJeremy\nJustice\nMarcus\nMicah\nSebastian\nStephen\nTravis\nTrey\nAvery\nBrenden\nBryan\nChad\nDarren\nEdward\nFrank\nGage\nIvan\nJonah\nKeegan\nLance\nLandon\nOwen\nRaymond\nTaylor\nXavier\nAdrian\nColton\nCorbin\nDennis\nDerek\nDouglas\nElliot\nGregory\nJoel\nKobe\nMax\nOscar\nParker\nScott\nSimon\nTrenton\nTucker\nWalter\nZackary\nZane\nArthur\nAshton\nBraden\nCarter\nCollin\nCooper\nCurtis\nDakota\nDamian\nEli\nEmmanuel\nGrayson\nGriffin\nJeffrey\nKaiden\nKeaton\nKeith\nLawrence\nLouis\nNelson\nQuinn\nRandy\nShaun\nTristen\nJacob\nJoseph\nJoshua\nJames\nEthan\nMichael\nDaniel\nDylan\nLogan\nAlexander\nTyler\nWilliam\nNicholas\nCaleb\nJohn\nBenjamin\nMatthew\nAndrew\nDavid\nRyan\nSamuel\nAidan\nChristopher\nThomas\nZachary\nGavin\nNoah\nConnor\nHunter\nElijah\nIsaiah\nAustin\nBrandon\nRobert\nAiden\nIsaac\nGabriel\nNathaniel\nCody\nJonathan\nAnthony\nWyatt\nJordan\nNathan\nCameron\nSeth\nTimothy\nIan\nJackson\nJustin\nOwen\nSean\nTrevor\nJack\nJayden\nSteven\nBrayden\nCharles\nHayden\nJaden\nJason\nKaden\nKevin\nLiam\nLuke\nAdam\nChristian\nEvan\nJeremiah\nKyle\nBradley\nDawson\nKenneth\nBrian\nCaden\nChase\nColton\nDevin\nEric\nKaleb\nPreston\nTristan\nVincent\nAshton\nLucas\nMark\nRiley\nShane\nTravis\nBlake\nCooper\nDakota\nDominic\nGage\nJake\nLandon\nMason\nPatrick\nRichard\nAlex\nBryan\nChance\nDerek\nEdward\nHenry\nKeegan\nAaron\nDustin\nGarrett\nJosiah\nMicah\nTaylor\nAntonio\nAyden\nCarter\nCole\nJesse\nMarcus\nPhillip\nVictor\nAdrian\nBrock\nColin\nDalton\nDennis\nJalen\nJonah\nJulian\nLanden\nLevi\nOliver\nPeter\nShawn\nSpencer\nTanner\nXander\nBraeden\nBrenden\nBrett\nBryce\nCorey\nDevon\nDominick\nEzekiel\nGeorge\nJadon\nJaxon\nJohnny\nKai\nMiles\nNolan\nRonald\nSebastian\nTrenton\nTyson\nXavier\nAndre\nCade\nCarlos\nCarson\nCollin\nConner\nDamon\nDante\nEli\nErik\nGrant\nHarley\nJaiden\nJared\nJeremy\nJoel\nJohnathan\nLouis\nMalachi\nMorgan\nPaul\nRylan\nSkylar\nSkyler\nWesley\nAlejandro\nAllen\nAngel\nArthur\nBrennan\nBryson\nCasey\nClayton\nDiego\nDillon\nDonald\nElisha\nFinn\nForrest\nJerry\nKadin\nKael\nKeith\nLawrence\nMaxwell\nOrion\nOscar\nQuinn\nRaymond\nReece\nReese\nRiver\nRoman\nRowan\nRussell\nSolomon\nTate\nTheodore\nToby\nTristen\nTroy\nEthan\nJoseph\nJames\nJacob\nSamuel\nTyler\nAlexander\nJoshua\nMichael\nBenjamin\nDavid\nDylan\nGabriel\nConnor\nDaniel\nMatthew\nWilliam\nAnthony\nJohn\nLogan\nRyan\nAndrew\nCaleb\nRobert\nAidan\nElijah\nIsaac\nAiden\nChristopher\nAshton\nHunter\nAaron\nNathan\nBrandon\nIan\nZachary\nAustin\nCharles\nLuke\nMason\nNicholas\nNoah\nKaden\nSean\nGavin\nJustin\nJaden\nJonathan\nThomas\nIsaiah\nBlake\nLucas\nWyatt\nHayden\nJack\nJayden\nAdam\nCody\nEvan\nJosiah\nKyle\nCameron\nJackson\nJesse\nKaleb\nKevin\nOwen\nTimothy\nAlex\nGarrett\nJason\nLandon\nNathaniel\nRiley\nCaden\nCarson\nLevi\nMicah\nSeth\nCarter\nCole\nDawson\nJordan\nChristian\nColton\nDakota\nDustin\nElias\nJeremiah\nTrevor\nTristan\nXander\nBryce\nColin\nDevin\nLiam\nPaul\nRichard\nTrenton\nAdrian\nBrayden\nGage\nKai\nLance\nMark\nNolan\nShane\nSpencer\nSteven\nAyden\nEdward\nEric\nGeorge\nKeith\nPatrick\nPeter\nRylan\nChase\nDamien\nGrant\nHenry\nJulian\nKenneth\nMalachi\nMaxwell\nShawn\nTanner\nZane\nAndre\nBrian\nBrock\nBrody\nBryson\nConner\nCooper\nDennis\nDominic\nEli\nEzekiel\nJake\nJeremy\nJoel\nJonah\nKeegan\nPreston\nRaymond\nBradley\nClayton\nDevon\nDonovan\nFrank\nJalen\nJohnathan\nPeyton\nRussell\nScott\nVincent\nAntonio\nCyrus\nDerek\nDiego\nDonald\nGary\nJared\nJonathon\nMarcus\nMax\nMiles\nPayton\nPhillip\nRoman\nSebastian\nStephen\nTaylor\nTravis\nXavier\nBrent\nCalvin\nCamden\nCarl\nCayden\nCollin\nCorey\nDallas\nDarius\nGriffin\nKaiden\nKody\nKyler\nLeif\nMathias\nMitchell\nMyles\nOrion\nParker\nPorter\nQuinn\nReuben\nRiver\nSimon\nSkyler\nTroy\nWalter\nWarren\nWesley\nZander\nEthan\nJacob\nJoshua\nMichael\nJoseph\nWilliam\nBenjamin\nJohn\nLogan\nElijah\nMatthew\nRyan\nAiden\nAndrew\nDaniel\nDavid\nTyler\nZachary\nAlexander\nSamuel\nHunter\nJames\nDylan\nGabriel\nAidan\nAnthony\nCaleb\nMason\nNoah\nIsaiah\nLuke\nOwen\nRobert\nChristopher\nNathan\nHayden\nIsaac\nThomas\nAustin\nConnor\nCody\nIan\nNicholas\nAaron\nBrayden\nGavin\nJack\nJosiah\nLiam\nTimothy\nBrandon\nJustin\nEvan\nJason\nLandon\nLucas\nDevin\nJeremiah\nJordan\nKaleb\nCole\nJackson\nJonathan\nRiley\nVincent\nJayden\nKaden\nPeter\nSeth\nTristan\nCharles\nElias\nPaul\nAdam\nAden\nCaden\nKyle\nMarcus\nNathaniel\nRichard\nSean\nAshton\nCameron\nChristian\nJesse\nTrevor\nWyatt\nBlake\nCarter\nDawson\nJaden\nKevin\nMalachi\nShane\nEric\nKenneth\nAvery\nCarson\nDevon\nDominic\nHenry\nNolan\nPatrick\nPreston\nRyder\nScott\nSteven\nTrenton\nEli\nGage\nJeremy\nJulian\nLevi\nSpencer\nAlex\nAntonio\nChase\nJake\nJared\nJoel\nJohnathan\nKeith\nMicah\nQuinn\nTanner\nClayton\nColton\nCooper\nDalton\nDeven\nDonovan\nEdward\nElliot\nGarrett\nKai\nKayden\nKyler\nMark\nPeyton\nRaymond\nRussell\nSkyler\nStephen\nTaylor\nTravis\nTroy\nTyson\nAdrian\nAlan\nArthur\nBraden\nBrian\nBryce\nCurtis\nDamien\nDustin\nParker\nRiver\nSebastian\nShawn\nSimon\nTheodore\nWesley\nAsher\nAyden\nBrock\nBryson\nColin\nCorbin\nDillon\nElliott\nGeorge\nHudson\nJakob\nJustice\nKeegan\nMax\nMaxwell\nMiles\nPhillip\nRoman\nSage\nTristen\nZane\nAbraham\nBradley\nBrady\nBrendan\nBryan\nCamden\nCarl\nCasey\nChad\nCharlie\nDennis\nDominick\nDrake\nDrew\nErik\nGrady\nGrant\nGregory\nHarry\nJace\nJerry\nJonah\nJonathon\nLance\nLeo\nMaddox\nOliver\nRowan\nSoren\nTrent\nXander\nXavier\nJames\nJacob\nMichael\nAndrew\nEthan\nLogan\nBenjamin\nWilliam\nAlexander\nAiden\nJohn\nJoshua\nGabriel\nSamuel\nDavid\nIsaiah\nMatthew\nTyler\nGavin\nNoah\nMason\nJoseph\nAidan\nCaleb\nChristopher\nDylan\nJack\nDaniel\nElijah\nRobert\nNathan\nHunter\nHayden\nConnor\nLuke\nRyan\nAustin\nKaden\nLandon\nOwen\nAnthony\nJustin\nRiley\nThomas\nWyatt\nZachary\nCody\nDevin\nJayden\nJeremiah\nNicholas\nTristan\nCarson\nCharles\nJonathan\nJordan\nKyle\nLucas\nEvan\nIan\nIsaac\nNathaniel\nTrevor\nSean\nChristian\nElias\nKaleb\nLiam\nVincent\nAdam\nChase\nDominic\nJackson\nJason\nBrandon\nCameron\nJesse\nJosiah\nRichard\nAaron\nTimothy\nCaden\nHenry\nMalachi\nSeth\nSpencer\nAlex\nCole\nCooper\nEric\nGage\nJace\nJake\nJonah\nKenneth\nKevin\nKyler\nLevi\nPaul\nSteven\nTaylor\nXavier\nAshton\nBryce\nGarrett\nJaden\nShane\nWesley\nBrayden\nBrody\nCarter\nConner\nDonovan\nJeremy\nKayden\nKeegan\nMarcus\nMiles\nPeyton\nPreston\nTyson\nBlake\nBrian\nJaiden\nMark\nPatrick\nScott\nSilas\nSimon\nStephen\nTristen\nVictor\nZane\nAdrian\nAsher\nBraden\nColin\nColton\nDawson\nDerek\nDevon\nErik\nGregory\nOliver\nPeter\nRaymond\nSebastian\nTrenton\nAden\nAntonio\nCorbin\nDalton\nEzekiel\nGeorge\nJulian\nLanden\nNolan\nParker\nRyder\nTravis\nTrent\nTroy\nBryson\nCayden\nDamien\nDane\nFrank\nGunnar\nJared\nJohnathan\nKai\nKeenan\nKeith\nLeo\nLewis\nMicheal\nPayton\nRylan\nSage\nSkyler\nTanner\nTucker\nTy\nZackary\nBradley\nBrendan\nBrennan\nBrock\nCaiden\nCalvin\nChance\nColby\nCollin\nColten\nDrake\nEdward\nElliott\nEmmanuel\nEverett\nGlenn\nGrayson\nJonathon\nJudah\nKaiden\nMartin\nMathew\nMax\nMicah\nMorgan\nMyles\nOrion\nPhilip\nPhillip\nSawyer\nShawn\nWade\nWalter\nAiden\nEthan\nLogan\nAlexander\nMichael\nJacob\nWilliam\nTyler\nNoah\nJames\nDaniel\nJoseph\nJohn\nSamuel\nGabriel\nMason\nBenjamin\nDavid\nDylan\nElijah\nGavin\nThomas\nAndrew\nIsaiah\nCaleb\nChristian\nJoshua\nZachary\nChristopher\nMatthew\nNicholas\nLandon\nNathan\nAnthony\nRyan\nTristan\nCharles\nIsaac\nJayden\nRobert\nWyatt\nJack\nConnor\nHunter\nRiley\nBrayden\nJackson\nLuke\nEvan\nJason\nLiam\nOwen\nAustin\nBlake\nCameron\nJeremiah\nJonathan\nLucas\nChase\nJulian\nJustin\nLevi\nRichard\nCaden\nCole\nKenneth\nSean\nAidan\nAyden\nElias\nEric\nJaden\nXavier\nAdam\nBrian\nCarson\nColton\nEli\nJesse\nSebastian\nTimothy\nTravis\nAaron\nCarter\nCody\nHayden\nHenry\nJordan\nKaden\nKaleb\nMarcus\nNathaniel\nPaul\nSeth\nTrevor\nIan\nJeremy\nJosiah\nAshton\nBrandon\nBrody\nDamien\nJace\nJonah\nKevin\nKyle\nTrenton\nBryce\nKeegan\nNolan\nPatrick\nRyder\nBrady\nConner\nCorbin\nEzekiel\nJared\nMicah\nPeter\nPeyton\nSilas\nSpencer\nSteven\nTanner\nXander\nAdrian\nDane\nDevin\nDevon\nDrake\nKaiden\nOliver\nScott\nShawn\nTroy\nTy\nVincent\nBraeden\nDonovan\nEdward\nJake\nJoel\nJonas\nKayden\nPreston\nQuinton\nRoman\nAntonio\nBraden\nBruce\nCalvin\nChad\nCollin\nDakota\nDonald\nGeorge\nJaxon\nJude\nKai\nMalachi\nMiles\nRiver\nSage\nSawyer\nTucker\nWesley\nAsher\nCaiden\nCooper\nCraig\nDeegan\nEzra\nFinn\nFrank\nGage\nGunnar\nHarrison\nJaxson\nJeffrey\nJohnathan\nLance\nLane\nMartin\nMitchell\nPayton\nQuinn\nTrey\nAlex\nAvery\nBlaze\nBraxton\nBryson\nCash\nCayden\nDallas\nDalton\nDillon\nEaston\nElliot\nErik\nEverett\nGideon\nGrant\nGrayson\nHarry\nIsrael\nJakob\nJohnny\nJulius\nKeith\nKyler\nLarry\nLincoln\nLukas\nMiguel\nMyles\nNickolas\nOdin\nOscar\nParker\nQuentin\nReid\nRowan\nSimon\nTaylor\nTitus\nTristen\nJames\nJacob\nMichael\nEthan\nTyler\nAiden\nJoshua\nMatthew\nNoah\nJoseph\nGabriel\nWilliam\nAlexander\nDavid\nJohn\nJayden\nDylan\nAndrew\nDaniel\nLogan\nWyatt\nBenjamin\nAnthony\nIsaiah\nRyan\nLandon\nOwen\nCaleb\nChristopher\nHunter\nMason\nIsaac\nSamuel\nTristan\nGavin\nLuke\nNathan\nAaron\nElijah\nJackson\nLiam\nLucas\nRobert\nBrayden\nJack\nThomas\nCharles\nKaden\nRiley\nEvan\nAustin\nJonathan\nChristian\nZachary\nAdam\nAidan\nConnor\nCooper\nNathaniel\nNicholas\nJason\nTimothy\nAshton\nBrandon\nCameron\nChase\nJeremiah\nLevi\nMicah\nBlake\nHenry\nIan\nOliver\nAyden\nHayden\nBrody\nCaden\nJustin\nXavier\nCarter\nCole\nConner\nJordan\nKenneth\nKyle\nColton\nJace\nJosiah\nKevin\nRyder\nBryce\nCarson\nCody\nDominic\nElias\nGage\nJeremy\nRichard\nSean\nSeth\nShane\nAdrian\nBrian\nEzekiel\nJaden\nJesse\nJonah\nKaleb\nLanden\nMax\nSawyer\nShawn\nTristen\nDevin\nJulian\nLincoln\nMarcus\nPeter\nSteven\nTrevor\nVincent\nWalter\nDawson\nEli\nErik\nJude\nJulius\nKaiden\nKayden\nKyler\nPreston\nRaymond\nRylan\nSimon\nBrady\nCalvin\nCharlie\nEzra\nGarrett\nHudson\nIvan\nJoel\nMalachi\nMark\nNolan\nSilas\nSkyler\nTrenton\nTroy\nWesley\nAlex\nAntonio\nBrendan\nColin\nCorbin\nDallas\nDevon\nDonald\nDonovan\nDrake\nFrank\nFranklin\nGeorge\nJake\nJared\nJayson\nKeagan\nLeland\nMiles\nParker\nPeyton\nScott\nSkylar\nTaylor\nTheodore\nTyson\nZachariah\nZander\nAlden\nBradley\nBrett\nCamden\nClayton\nCurtis\nDakota\nDayton\nEdward\nElliot\nGideon\nGrayson\nJaxon\nJohnathan\nJonas\nJustice\nLance\nLeif\nQuincy\nRoman\nSeamus\nTalon\nTanner\nTravis\nTrey\nTucker\nAlbert\nAllen\nBraedon\nBrodie\nBryan\nCasey\nChance\nCollin\nDalton\nDamian\nDamien\nDarius\nDeclan\nDerek\nFinn\nGiovanni\nGlenn\nHarley\nJakob\nJimmy\nJuan\nKade\nKai\nMoses\nOdin\nPatrick\nPaul\nRonan\nRowan\nSebastian\nSoren\nTitus\nZane\nMichael\nEthan\nJames\nLogan\nSamuel\nElijah\nJoseph\nWilliam\nDavid\nGabriel\nDaniel\nJacob\nAiden\nMatthew\nNoah\nLiam\nAndrew\nJoshua\nCaleb\nWyatt\nBenjamin\nIsaiah\nMason\nGavin\nJackson\nRobert\nJayden\nTristan\nAnthony\nAlexander\nCharles\nChristopher\nJack\nDylan\nHunter\nLucas\nChristian\nNicholas\nZachary\nEvan\nJohn\nJordan\nBrayden\nChase\nIsaac\nOwen\nThomas\nTyler\nConnor\nRiley\nRyan\nAaron\nLevi\nTrevor\nJeremiah\nJonathan\nAdam\nCole\nJosiah\nLandon\nLuke\nAidan\nKyle\nRyder\nEli\nElias\nNathan\nAshton\nAustin\nBrandon\nCarter\nColton\nCooper\nJason\nOliver\nBlake\nHayden\nKaden\nQuinn\nSeth\nVincent\nAlex\nBrody\nCody\nHenry\nJustin\nAyden\nDominic\nEzra\nJesse\nJulian\nMicah\nSilas\nGage\nKevin\nNathaniel\nPatrick\nPaul\nSean\nSkyler\nColin\nEric\nJeremy\nKayden\nLanden\nLeo\nRichard\nRylan\nShane\nXavier\nAsher\nAvery\nCaden\nGeorge\nGunnar\nJace\nJaden\nJonah\nKaleb\nMarcus\nRowan\nSawyer\nTanner\nTimothy\nTravis\nTucker\nAdrian\nBradley\nBryson\nCarson\nDevin\nEdward\nJaxon\nJude\nKaiden\nKenneth\nLincoln\nParker\nPreston\nTroy\nBraden\nCollin\nCurtis\nDrake\nFinn\nKai\nMax\nMiles\nPaxton\nPeter\nPeyton\nScott\nSteven\nTitus\nAugust\nBrennan\nBrian\nCalvin\nCamden\nChance\nDakota\nGarrett\nGideon\nIan\nJoel\nOrion\nSebastian\nStephen\nTrent\nTy\nWarren\nWeston\nXander\nBrenden\nBryce\nCameron\nConner\nDennis\nDonald\nDonovan\nEaston\nEverett\nGiovanni\nGrant\nGregory\nHudson\nJasper\nJerome\nKale\nKeegan\nKyler\nLukas\nMalachi\nMorgan\nRaymond\nSkylar\nSpencer\nTorin\nWalter\nWesley\nAxel\nCannon\nCharlie\nClayton\nColby\nColt\nCorbin\nCornelius\nCyrus\nDane\nDarius\nDawson\nDax\nEzekiel\nIvan\nJake\nJameson\nJeffrey\nKael\nKingston\nLance\nLouis\nMarc\nOscar\nPhilip\nRoman\nRonald\nShaun\nSimon\nTommy\nTrenton\nTyson\nUrijah\nVictor\nZackary\nZander\nZion\nWilliam\nJames\nMichael\nLogan\nJacob\nEthan\nAlexander\nJoshua\nElijah\nLiam\nDaniel\nHunter\nJoseph\nMason\nLucas\nConnor\nWyatt\nCaleb\nAiden\nCarter\nIsaac\nNoah\nGabriel\nLandon\nMatthew\nChristopher\nThomas\nBenjamin\nDavid\nAndrew\nIsaiah\nJohn\nTyler\nLevi\nCharles\nRyan\nGavin\nJackson\nOwen\nBrayden\nJonathan\nSamuel\nAnthony\nJack\nJordan\nTristan\nEvan\nLuke\nNathan\nNicholas\nZachary\nDylan\nJayden\nRiley\nEli\nElias\nAustin\nCooper\nHayden\nJaxon\nChristian\nParker\nRobert\nBrody\nCarson\nJosiah\nKevin\nOliver\nBlake\nCameron\nChase\nCole\nHenry\nTimothy\nXavier\nAsher\nAshton\nColton\nJason\nJonah\nJustin\nMicah\nRyder\nSeth\nAaron\nIan\nJace\nJake\nJeremiah\nCody\nKai\nLeo\nRichard\nSteven\nTrevor\nAdam\nEzekiel\nEzra\nMax\nPaul\nSean\nSilas\nAyden\nBentley\nBradley\nGage\nJohnathan\nJulian\nKaiden\nLincoln\nNathaniel\nRiver\nSawyer\nSkyler\nSpencer\nTravis\nVincent\nAidan\nBrandon\nBryce\nKaden\nKayden\nKyler\nRoman\nRylan\nAdrian\nAxel\nBryson\nDominic\nDrake\nEaston\nGarrett\nJaxson\nKeegan\nMalachi\nMaximus\nOrion\nTanner\nArthur\nChance\nDalton\nDamian\nDawson\nDerek\nEdward\nJesse\nJude\nKaleb\nMarcus\nPeter\nShane\nTrent\nWesley\nBrian\nCalvin\nCharlie\nClayton\nCollin\nEric\nGrayson\nHudson\nJaden\nJakob\nLanden\nMark\nMiles\nPaxton\nPreston\nWalter\nAllen\nAndre\nCaden\nCamden\nCayden\nColin\nConner\nCruz\nCyrus\nDamien\nDonovan\nElliot\nEmmett\nEverett\nGeorge\nGrant\nHolden\nJeffrey\nJoaquin\nJoel\nJudah\nKenneth\nKyle\nLance\nLeon\nMaddox\nMaxwell\nNikolai\nSebastian\nSimon\nSterling\nTheodore\nTrenton\nXander\nZane\nAden\nAntonio\nArcher\nBrett\nBrock\nBrooks\nColt\nDane\nDerrick\nDesmond\nDustin\nFinn\nJameson\nJasper\nKade\nKian\nKristopher\nLandyn\nLane\nMarshall\nNehemiah\nNolan\nPorter\nRaymond\nRhys\nRoland\nRonan\nRowan\nRyker\nStephen\nSylas\nTaylor\nTitus\nTristen\nTyson\nZander\nMason\nJames\nWilliam\nLiam\nEthan\nLogan\nWyatt\nMichael\nDaniel\nElijah\nHunter\nLandon\nSamuel\nCaleb\nDavid\nJayden\nLucas\nAiden\nGabriel\nJacob\nMatthew\nNoah\nJoseph\nJack\nJoshua\nOwen\nIsaiah\nBrayden\nTristan\nCarter\nJonathan\nOliver\nAndrew\nJackson\nTyler\nCarson\nRyan\nBlake\nJaxon\nAaron\nBenjamin\nCharles\nChristopher\nEli\nJohn\nAlexander\nGavin\nIsaac\nLevi\nRyder\nConnor\nEvan\nHenry\nRobert\nIan\nThomas\nJeremiah\nNathan\nAnthony\nBrody\nCameron\nChase\nDylan\nDrake\nMax\nSilas\nZachary\nMicah\nNathaniel\nAdam\nBrandon\nChristian\nDeclan\nElias\nEric\nJosiah\nNicholas\nAustin\nCole\nCorbin\nJason\nOrion\nPaul\nRylan\nConner\nDominic\nJace\nJonah\nMarcus\nParker\nRiley\nAvery\nAyden\nBentley\nColton\nCooper\nEmmett\nEverett\nEzra\nJustin\nKayden\nKyle\nLincoln\nTanner\nAsher\nEdward\nJake\nKaiden\nKaleb\nSawyer\nShane\nTrevor\nBrady\nBryson\nCody\nEzekiel\nJordan\nJude\nMalachi\nNolan\nRowan\nRyker\nTroy\nAshton\nCamden\nCharlie\nHayden\nJaden\nJaxson\nJesse\nJoel\nSebastian\nSeth\nSkyler\nSteven\nTucker\nVincent\nXavier\nCaden\nCash\nDane\nEaston\nGage\nGarrett\nGrayson\nJudah\nKaden\nKillian\nKingston\nLanden\nLeo\nLuke\nMaximus\nPatrick\nPaxson\nPreston\nRoman\nSean\nTimothy\nTrenton\nTyson\nWesley\nAidan\nDalton\nDawson\nDevin\nFrank\nGideon\nGrant\nHolden\nJulian\nKenneth\nKyler\nPhoenix\nTalon\nTitus\nTravis\nVictor\nAdrian\nArcher\nAtticus\nBraxton\nBrett\nCalvin\nChance\nCyrus\nDamien\nDexter\nGregory\nGunnar\nJayce\nJett\nJose\nJulius\nKeagan\nKeith\nKody\nMiles\nOscar\nPeyton\nRaymond\nTrapper\nTristen\nAndre\nBrendan\nBryan\nBryce\nCade\nCayden\nClayton\nCollin\nDamian\nDante\nDarren\nDerek\nDiego\nGary\nGriffin\nGunner\nJameson\nJared\nJustice\nKasen\nKevin\nLance\nLeland\nLouis\nMark\nNikolai\nPaxton\nPierce\nPorter\nQuinn\nRichard\nRussell\nTheodore\nTheron\nUriah\nWalter\nXander\nJames\nEthan\nLiam\nGabriel\nJacob\nWilliam\nMason\nNoah\nMichael\nElijah\nRobert\nJoseph\nCaleb\nTyler\nJack\nAlexander\nDavid\nBenjamin\nCarter\nJoshua\nAiden\nLogan\nMatthew\nDaniel\nGavin\nJayden\nLucas\nSamuel\nChristopher\nConnor\nWyatt\nIsaiah\nOliver\nAndrew\nHenry\nHunter\nLandon\nSilas\nGrayson\nJackson\nLevi\nNicholas\nThomas\nCharles\nParker\nZachary\nBrayden\nBrody\nCarson\nChase\nEli\nIsaac\nJordan\nNathan\nSawyer\nChristian\nColton\nOwen\nRyan\nTristan\nAnthony\nEvan\nJason\nJeremiah\nJohn\nJustin\nNathaniel\nPaul\nDominic\nJaxon\nRiley\nTimothy\nAaron\nBlake\nDylan\nEaston\nLuke\nAsher\nCooper\nJace\nBrandon\nCameron\nEzra\nJesse\nJonathan\nRyder\nJosiah\nMax\nRyker\nSebastian\nAdam\nAshton\nCody\nDalton\nDeclan\nHayden\nIan\nJulian\nNolan\nAlex\nBryce\nCamden\nCole\nEverett\nKevin\nMaxwell\nMiles\nAdrian\nAustin\nBradley\nElias\nEric\nEzekiel\nKyler\nPreston\nTrevor\nWeston\nBentley\nEdward\nEmmett\nJasper\nJaxson\nJeremy\nKyle\nMalachi\nMarcus\nPatrick\nPaxson\nQuinn\nRichard\nRylan\nSeth\nShane\nTheodore\nXavier\nBrady\nCalvin\nCharlie\nColin\nDawson\nDrake\nElliott\nGage\nGeorge\nGideon\nJoel\nKayden\nRoman\nRowan\nSean\nShawn\nSkyler\nSolomon\nTanner\nTristen\nWesley\nXander\nZane\nAndre\nAri\nBryson\nConner\nCorbin\nDamien\nElliot\nGreyson\nGunnar\nKenneth\nLanden\nLeo\nLeon\nLincoln\nPeter\nAden\nAidan\nApollo\nAvery\nAyden\nBrantley\nBrent\nByron\nCaden\nCohen\nCruz\nDane\nDerek\nDevin\nEmery\nFinn\nHezekiah\nJameson\nJared\nJase\nJude\nJulius\nKade\nKai\nKaiden\nLouis\nMaddox\nMaxim\nMicheal\nOrion\nOscar\nPaxton\nPhillip\nPorter\nTalon\nTorin\nTrenton\nTyson\nVictor\nVincent\nAbel\nAbraham\nAxel\nBraxton\nCayden\nClayton\nCollin\nCorey\nDallas\nDante\nDean\nDominick\nEmmanuel\nGregory\nIvan\nJaden\nJake\nJohnny\nJudah\nKaden\nKaleb\nKeegan\nKillian\nKingston\nLawrence\nLuis\nLukas\nMarshall\nMaximus\nMicah\nMilo\nRiver\nRylee\nSimon\nSpencer\nTroy\nTy\nZackary\nZion\nLiam\nWilliam\nMason\nNoah\nWyatt\nEthan\nJacob\nElijah\nLogan\nAlexander\nGabriel\nHunter\nJoseph\nJames\nJohn\nMichael\nBenjamin\nSamuel\nDavid\nJackson\nLucas\nAiden\nMatthew\nJack\nAnthony\nCarter\nDaniel\nBrayden\nCaleb\nChristopher\nDylan\nEvan\nLandon\nLuke\nNathan\nAndrew\nJayden\nJosiah\nOliver\nThomas\nIsaac\nOwen\nSawyer\nEli\nHenry\nJonathan\nBlake\nJordan\nIan\nJaxon\nJoshua\nRyan\nTristan\nTyler\nZachary\nBrandon\nIsaiah\nJace\nJustin\nLeo\nNicholas\nRobert\nChristian\nElias\nConnor\nEzekiel\nHudson\nLincoln\nNathaniel\nCharles\nColton\nParker\nRyder\nRylan\nAaron\nAustin\nChase\nCooper\nDominic\nGrayson\nLevi\nCameron\nCarson\nGavin\nWeston\nAdrian\nCamden\nEaston\nMiles\nPreston\nRyker\nAsher\nAvery\nAyden\nGeorge\nJameson\nJase\nJason\nKayden\nSimon\nSkyler\nAdam\nCayden\nEric\nEzra\nMalachi\nMarcus\nMaxwell\nPatrick\nRiley\nSean\nSilas\nVincent\nBentley\nCharlie\nDeclan\nEverett\nGideon\nHayden\nJaxson\nJonah\nLeon\nMarshall\nNolan\nPaul\nPeter\nRowan\nSebastian\nTanner\nArcher\nBrody\nCody\nCorbin\nDalton\nJesse\nKaiden\nKevin\nKyle\nMaximus\nPaxton\nPeyton\nTyson\nWesley\nXavier\nZane\nBennett\nBrian\nBryson\nEmmett\nFinley\nGage\nJax\nJayce\nJeremiah\nKaden\nPaxson\nReed\nRoman\nSeth\nTheodore\nTitus\nTrevor\nTroy\nAshton\nBlaine\nBradley\nBrady\nBryce\nCalvin\nColin\nCollin\nCruz\nEdward\nGraham\nJaden\nMaddox\nMaverick\nQuinn\nRichard\nRonald\nShane\nStephen\nTravis\nTrenton\nWaylon\nZander\nZayden\nAbel\nAndre\nCaden\nChance\nCole\nDawson\nDean\nFinn\nFrank\nGreyson\nHarrison\nIvan\nJake\nJasper\nJaxton\nJeremy\nJohnny\nKade\nKeith\nKenneth\nLouis\nMicah\nRiver\nSterling\nSteven\nTucker\nAlex\nArthur\nAtticus\nAxel\nBeau\nBraden\nBrock\nCash\nClayton\nCohen\nDallas\nDante\nDarius\nDaxton\nElliot\nGarrett\nGerald\nGrady\nGregory\nGunnar\nGunner\nHolden\nJaiden\nKael\nKeegan\nKellen\nKillian\nKingston\nLanden\nLawrence\nLee\nLuca\nMilo\nOdin\nOrion\nOscar\nRaymond\nShawn\nTaylor\nTitan\nXander\nZackary\nLiam\nJames\nNoah\nWyatt\nGabriel\nLucas\nEthan\nAlexander\nJoseph\nBenjamin\nWilliam\nLogan\nMason\nJack\nJohn\nAsher\nElijah\nDaniel\nHenry\nJacob\nJaxon\nMichael\nOliver\nHunter\nDavid\nLevi\nMatthew\nLandon\nAiden\nIsaac\nJackson\nCaleb\nRyan\nElias\nConnor\nEvan\nJoshua\nSamuel\nChristian\nJayden\nJeremiah\nCooper\nEli\nRobert\nRyder\nChristopher\nColton\nJosiah\nAndrew\nAustin\nCarson\nJaxson\nJonathan\nLuke\nMalachi\nNathan\nOwen\nBlake\nLincoln\nEzra\nGavin\nThomas\nDylan\nGrayson\nKai\nRyker\nZachary\nAnthony\nIsaiah\nJase\nJason\nMicah\nSebastian\nSilas\nTitus\nBentley\nBrody\nCameron\nCarter\nChase\nGideon\nJace\nSawyer\nTristan\nTyler\nWeston\nAdam\nCharles\nEverett\nWesley\nXander\nBrandon\nBrayden\nNathaniel\nTheodore\nXavier\nAshton\nAvery\nDominic\nEaston\nFinn\nGeorge\nHudson\nIan\nJasper\nKayden\nMarshall\nMax\nMaxwell\nMiles\nOrion\nRichard\nTimothy\nAbel\nDrake\nGarrett\nJameson\nJayce\nJoel\nKenneth\nMaximus\nNicholas\nParker\nTravis\nCody\nDean\nDeclan\nElliot\nEzekiel\nKarter\nNolan\nPatrick\nRiley\nSeth\nSolomon\nSteven\nVictor\nWaylon\nAaron\nAugust\nBradley\nBraxton\nBryce\nCalvin\nCamden\nCayden\nCharlie\nCole\nDamian\nDawson\nEric\nGreyson\nJake\nJeffrey\nJesse\nJonah\nJulian\nKaiden\nKillian\nKingston\nMaddox\nMatthias\nMaverick\nOdin\nPaul\nPeter\nRoman\nTrevor\nZane\nAlex\nArcher\nCaden\nCollin\nColt\nEdward\nGage\nGunner\nHarrison\nIvan\nJax\nLeo\nLukas\nMarcus\nPaxton\nSoren\nSullivan\nTanner\nTrenton\nTroy\nTucker\nVincent\nWalter\nWarren\nAdrian\nAugustus\nAxel\nBeckett\nCade\nClayton\nDante\nEmmett\nFelix\nGrant\nHatcher\nJordan\nJude\nJulius\nKaleb\nKevin\nRemington\nRowan\nRussell\nSimon\nSkyler\nStephen\nSterling\nTalon\nWestin\nAidan\nAlden\nAngelo\nArthur\nAtticus\nBarrett\nBrantley\nBrooks\nBruce\nCash\nCyrus\nDerek\nDesmond\nErik\nGriffin\nHayden\nJeremy\nJustice\nKaden\nKane\nKyle\nLeif\nMark\nMateo\nMiguel\nMyles\nNikolai\nPaxson\nPeyton\nRaymond\nReid\nRiver\nRodney\nRoland\nRonin\nRylan\nShawn\nSpencer\nThaddeus\nTobias\nTyson\nWalker\nMary\nAnnie\nWillie\nMattie\nRuby\nEthel\nLillie\nRuth\nBessie\nElizabeth\nEmma\nMinnie\nLouise\nBertha\nHattie\nGladys\nCarrie\nFannie\nMartha\nRosa\nAlice\nLucille\nJessie\nSarah\nMargaret\nPearl\nMarie\nMyrtle\nRosie\nLillian\nClara\nGertrude\nNellie\nIda\nElla\nEva\nMaggie\nMildred\nMamie\nEdna\nLois\nSusie\nKatie\nBeatrice\nEvelyn\nAlma\nLula\nFrances\nIrene\nVelma\nViola\nJulia\nEssie\nHelen\nLucy\nLucile\nAnna\nVera\nLaura\nInez\nThelma\nEula\nVirginia\nAlberta\nDaisy\nFlora\nCora\nLena\nJosephine\nGrace\nGeorgia\nNancy\nLizzie\nPauline\nSallie\nJohnnie\nMae\nBernice\nDorothy\nFlorence\nAda\nHazel\nAddie\nRose\nElsie\nAgnes\nLeola\nEstelle\nEffie\nEunice\nOla\nOllie\nOra\nSadie\nNora\nEllen\nEsther\nJennie\nCatherine\nMabel\nSara\nKatherine\nMable\nJosie\nRebecca\nDora\nLela\nJewell\nLeona\nNettie\nJewel\nLola\nRoberta\nBeulah\nEdith\nGeneva\nJanie\nLorene\nCallie\nEtta\nJimmie\nPearlie\nBetty\nFlossie\nAnn\nEliza\nRachel\nLessie\nNell\nEra\nGussie\nIla\nMaude\nDella\nStella\nWinnie\nEddie\nElnora\nLottie\nOpal\nVivian\nEstella\nMaudie\nMittie\nMollie\nBirdie\nDollie\nDoris\nJuanita\nKate\nSally\nAmanda\nCleo\nHester\nRena\nAllie\nBlanche\nCorine\nEstell\nMargie\nBettie\nBonnie\nCarolyn\nEloise\nIrma\nJean\nTommie\nAdell\nChristine\nClaudie\nCornelia\nGracie\nMarguerite\nMillie\nNaomi\nVerna\nWilma\nEarline\nErma\nHenrietta\nIva\nJannie\nKathleen\nRoxie\nSusan\nAnne\nAudrey\nLeila\nMay\nRosia\nAmelia\nAugusta\nEmmie\nIna\nLee\nLila\nLou\nOphelia\nRosetta\nBertie\nLora\nLucinda\nLydia\nMozelle\nMyrtice\nNina\nTessie\nBillie\nDessie\nEmily\nIola\nJane\nKathryn\nLilly\nLinnie\nLouella\nMandy\nMarion\nMyrtis\nNona\nOdessa\nOlive\nPinkie\nPolly\nQueen\nRubye\nSavannah\nWilla\nAmy\nBama\nCharlotte\nClarice\nClaudia\nDelia\nDovie\nEllie\nEvie\nIra\nLelia\nLuella\nLyda\nMagnolia\nMarjorie\nMatilda\nMozell\nMyra\nMyrtie\nNannie\nOlivia\nOma\nOssie\nVada\nViolet\nVirgie\nAbbie\nCassie\nClyde\nConnie\nEleanor\nElma\nElva\nErnestine\nGertie\nHannah\nHarriet\nJeanette\nLettie\nMelissa\nOcie\nPatsy\nPeggy\nQueenie\nRosalie\nRubie\nSue\nAdele\nAlpha\nArrie\nBelle\nCharity\nCharlie\nEster\nFrankie\nGoldie\nHilda\nIcie\nIdell\nLenora\nLetha\nLily\nLorena\nLudie\nLura\nMadge\nMaud\nMaxine\nOdell\nPatricia\nReba\nSophie\nSybil\nTrudie\nUna\nVictoria\nZelma\nAline\nAllene\nArlene\nArtie\nBarbara\nBennie\nCamilla\nCeola\nCorinne\nDixie\nDolly\nEaster\nFlorine\nFrancis\nGennie\nGeorgie\nGlennie\nIsabella\nIsabelle\nLassie\nLiza\nLouisa\nLue\nMacie\nMadie\nMammie\nMelba\nMinerva\nOsie\nPearline\nRuthie\nSylvia\nTheresa\nVergie\nVida\nVinnie\nZadie\nZora\nBerta\nBlanch\nCaroline\nCecil\nCharlsie\nClemmie\nCorene\nDonnie\nElvira\nExie\nFaye\nFloy\nGenevieve\nHettie\nIona\nIvey\nJohnie\nJonnie\nLera\nLeslie\nLorraine\nLovie\nMaurine\nMazie\nNan\nNola\nOdie\nPearly\nPrince\nRobbie\nTressie\nVernie\nMary\nAnnie\nWillie\nRuby\nMattie\nBessie\nEthel\nLillie\nMinnie\nElizabeth\nRuth\nLouise\nEmma\nFannie\nMargaret\nMarie\nLucille\nMildred\nGladys\nSarah\nClara\nMamie\nCarrie\nLula\nAlice\nJessie\nLillian\nHattie\nSusie\nBertha\nEdna\nElla\nFrances\nMyrtle\nRosie\nCora\nBeatrice\nEvelyn\nRosa\nThelma\nGertrude\nMartha\nIrene\nJulia\nMaggie\nIda\nDorothy\nLois\nVera\nAnna\nGrace\nHelen\nKatie\nVelma\nLaura\nNellie\nAlma\nEula\nPearl\nEssie\nInez\nEva\nDaisy\nVirginia\nLucile\nMabel\nPauline\nFlora\nHazel\nViola\nLola\nEunice\nLucy\nFlorence\nMae\nBeulah\nLena\nGeorgia\nEstelle\nJosephine\nRose\nOllie\nSadie\nAlberta\nBernice\nDora\nJohnnie\nCatherine\nLizzie\nAddie\nAda\nEsther\nOra\nElsie\nNettie\nAgnes\nDella\nOla\nSallie\nLela\nRebecca\nEffie\nNancy\nNora\nMaude\nEllen\nJanie\nMable\nBetty\nChristine\nJewell\nLeola\nNell\nPearlie\nSara\nStella\nVivian\nCallie\nLeona\nRoberta\nAmanda\nBlanche\nJewel\nBonnie\nHenrietta\nLottie\nWilma\nKatherine\nLorene\nLessie\nEdith\nGeneva\nKate\nKathleen\nAudrey\nEstella\nJennie\nOpal\nRachel\nAllie\nAnne\nDollie\nEloise\nEtta\nFlossie\nVirgie\nEmily\nJimmie\nMarguerite\nMollie\nClaudia\nJuanita\nLila\nMaudie\nVerna\nCorine\nCornelia\nErnestine\nLetha\nPinkie\nBertie\nDoris\nEliza\nEstell\nEvie\nIla\nIrma\nLora\nMyrtice\nReba\nWinnie\nEleanor\nGracie\nGussie\nIna\nJosie\nLeila\nMittie\nTommie\nClyde\nErma\nHettie\nJohnie\nKathryn\nMargie\nMay\nMyrtie\nQueen\nSue\nAnn\nAudie\nAugusta\nCelia\nEddie\nEllie\nElma\nElnora\nIva\nRubye\nSylvia\nCharlotte\nDovie\nLue\nLuella\nMarjorie\nMyra\nOlivia\nWilla\nBettie\nBobbie\nCleo\nCorrine\nDessie\nEra\nEugenia\nGeorgie\nGeraldine\nHester\nJannie\nLinnie\nMarion\nMatilda\nNannie\nNaomi\nRena\nRoxie\nRuthie\nSally\nSavannah\nViolet\nAmelia\nBirdie\nEaster\nEster\nFrancis\nHilda\nIdell\nJean\nLelia\nLenora\nLucinda\nLydia\nNina\nOdell\nOdessa\nRosia\nAmy\nCaroline\nEthelyn\nFloy\nFrankie\nIris\nLettie\nLouella\nMaud\nMayme\nMillie\nOphelia\nRosalie\nRosetta\nSusan\nZora\nAdell\nBennie\nBillie\nBulah\nClarice\nExie\nFaye\nFlorine\nGertie\nGoldie\nJulie\nKattie\nLennie\nLera\nLily\nLou\nLudie\nLura\nMariah\nMiriam\nPolly\nRobbie\nZelma\nAileen\nAlpha\nAlta\nArline\nArtie\nCarolyn\nCassie\nCecil\nCharlie\nClemmie\nDelia\nElvira\nEmmie\nGenevieve\nGlennie\nIra\nJanet\nJeanette\nLilly\nMadge\nMarian\nNola\nOlive\nOssie\nTessie\nTressie\nVictoria\nAdelaide\nAdele\nAdella\nAllene\nAmie\nAnita\nAnniemae\nBama\nBarbara\nBell\nConnie\nGertha\nHarriet\nIola\nIzola\nJames\nLeatha\nLee\nLiddie\nLorena\nLouie\nLove\nLuvenia\nMagnolia\nMalinda\nMozell\nMozelle\nNovella\nOcie\nPatricia\nPatsy\nRilla\nRochelle\nTheresa\nVada\nVeola\nVergie\nVerla\nWilliemae\nZola\nMary\nAnnie\nWillie\nRuby\nMattie\nEthel\nRuth\nLillie\nLouise\nMinnie\nBessie\nElizabeth\nGladys\nEmma\nSarah\nMargaret\nAlice\nJessie\nLucille\nLillian\nFannie\nBertha\nMildred\nEdna\nCarrie\nHelen\nIda\nMartha\nHattie\nGrace\nClara\nRosie\nMamie\nBeatrice\nMyrtle\nFrances\nHazel\nLula\nVera\nMarie\nThelma\nElla\nSusie\nRosa\nNellie\nEva\nEvelyn\nLaura\nDorothy\nInez\nJulia\nIrene\nAlma\nPauline\nLois\nLucile\nGertrude\nViola\nVirginia\nMaggie\nEssie\nAnna\nCora\nPearl\nVelma\nDaisy\nKatie\nLena\nLizzie\nEula\nFlora\nLucy\nMae\nSallie\nEunice\nBernice\nNancy\nMabel\nAda\nJohnnie\nEstelle\nMable\nElsie\nAlberta\nOla\nLela\nNettie\nOllie\nSadie\nEsther\nJosephine\nLola\nGeorgia\nRose\nEdith\nFlorence\nAddie\nCatherine\nJewel\nOra\nSara\nNora\nRebecca\nBeulah\nKatherine\nAgnes\nJewell\nGussie\nLottie\nEffie\nLeola\nJanie\nBetty\nLeona\nChristine\nDora\nEllen\nGeneva\nDoris\nKathleen\nLorene\nAllie\nAudrey\nStella\nJuanita\nRoberta\nEtta\nNell\nOpal\nVerna\nHenrietta\nLessie\nVivian\nEleanor\nIla\nJennie\nWinnie\nBlanche\nCharlotte\nDollie\nFlossie\nVirgie\nEddie\nEliza\nEstella\nJimmie\nKathryn\nMargie\nMarjorie\nSue\nAnn\nCorine\nJosie\nOdessa\nBonnie\nCallie\nCleo\nDella\nGracie\nPearlie\nEloise\nKate\nMaudie\nOphelia\nSally\nWilma\nBertie\nBettie\nIrma\nRobbie\nAmanda\nAnne\nEmily\nMarguerite\nPolly\nClaudie\nElnora\nEra\nJean\nLou\nNaomi\nClaudia\nDessie\nFrancis\nFrankie\nJannie\nMillie\nNannie\nOdell\nPinkie\nQueen\nRubye\nTommie\nBillie\nCelia\nDovie\nElma\nEster\nLora\nLudie\nMarion\nMaude\nMay\nNina\nRena\nRosetta\nZelma\nAdell\nHannah\nLelia\nLila\nMittie\nRachel\nRuthie\nAline\nAvis\nDelia\nHester\nLee\nLydia\nBarbara\nConnie\nErnestine\nGeraldine\nJane\nLilly\nReba\nAmelia\nAugusta\nCarolyn\nCharity\nCornelia\nEarline\nHettie\nLeila\nLetha\nLura\nMollie\nNona\nOlivia\nRosalie\nWilla\nAdele\nBirdie\nClarice\nClyde\nDolly\nErma\nGeorgie\nIna\nIva\nLily\nLuella\nMagnolia\nMatilda\nMyrtice\nRoxie\nTressie\nVictoria\nViolet\nZora\nAbbie\nAudie\nBerta\nCaroline\nCharlie\nDannie\nEstell\nEvie\nFaye\nHarriet\nIola\nJohnie\nLenora\nLettie\nLona\nLonie\nLucinda\nLue\nMaxine\nMozell\nRosia\nSavannah\nTheresa\nAllene\nArtie\nBelle\nCassie\nCecil\nClaire\nClemmie\nDixie\nEaster\nEllie\nGertha\nIdell\nIsabell\nJeannette\nLovie\nMadeline\nMozelle\nMyra\nMyrtie\nMyrtis\nNorma\nOssie\nParalee\nSusan\nTessie\nVada\nAmy\nBobbie\nBulah\nCecile\nErie\nFloy\nGoldie\nGwendolyn\nHilda\nIdella\nJeanette\nJoe\nLeatha\nLennie\nLilie\nOma\nOzell\nRosalee\nSylvia\nVersie\nAlpha\nAlta\nBennie\nCorinne\nCorrine\nDonnie\nEdwina\nEmmie\nEugenia\nExa\nFay\nFlorene\nFronie\nHortense\nIsabelle\nIzola\nJettie\nLeslie\nLinnie\nLonnie\nLoraine\nLorena\nLorine\nMadge\nMalinda\nMaria\nMavis\nMiriam\nOcie\nOlive\nPatricia\nQueenie\nRessie\nRhoda\nRossie\nUna\nZula\nAdelaide\nAileen\nAlene\nAmie\nAngeline\nAnnette\nBama\nBlanch\nBurma\nCarol\nChloe\nChristina\nClassie\nClaudine\nCorrie\nCynthia\nDolores\nDonna\nDorthy\nElmira\nGertie\nIma\nIris\nJohn\nJuliette\nLera\nLilla\nLouella\nLuvenia\nLyda\nMacie\nMadie\nMammie\nMarcella\nMaud\nMaurine\nMaybelle\nMerle\nMissouri\nMuriel\nNadine\nOctavia\nOmie\nPatsy\nRegina\nRobert\nShirley\nSudie\nValeria\nVallie\nVassie\nVernie\nVicie\nMary\nAnnie\nWillie\nRuby\nMattie\nLouise\nRuth\nMargaret\nMildred\nLillie\nElizabeth\nEthel\nBessie\nGladys\nMinnie\nAlice\nEmma\nCarrie\nSarah\nClara\nRosa\nEdna\nLucille\nJessie\nLillian\nEvelyn\nFrances\nBertha\nHattie\nHelen\nMartha\nMarie\nIda\nMyrtle\nNellie\nFannie\nDorothy\nElla\nLula\nThelma\nGrace\nIrene\nBeatrice\nHazel\nMamie\nEva\nAnna\nVelma\nRosie\nLois\nJulia\nLaura\nSusie\nPearl\nLucile\nFlora\nFlorence\nPauline\nMaggie\nAlma\nEssie\nVirginia\nLucy\nVera\nGertrude\nDaisy\nBernice\nCora\nEunice\nSallie\nEdith\nJohnnie\nViola\nMae\nEula\nInez\nKatie\nSadie\nOllie\nGeorgia\nOra\nElsie\nEstelle\nOla\nAgnes\nEffie\nLola\nRose\nAda\nLena\nLizzie\nCatherine\nDora\nMabel\nAddie\nAlberta\nKatherine\nMable\nJosephine\nSara\nEllen\nNora\nOpal\nEsther\nJewell\nLeola\nChristine\nGeneva\nNancy\nVivian\nJanie\nBetty\nJuanita\nLeona\nLottie\nBeulah\nCallie\nJimmie\nLela\nNell\nNettie\nRebecca\nLessie\nJewel\nMarjorie\nDella\nDoris\nFlossie\nMarguerite\nAnn\nWinnie\nEliza\nEstella\nPearlie\nRachel\nJennie\nLorene\nStella\nAmanda\nGracie\nGussie\nEmily\nLila\nVerna\nWilma\nBonnie\nEddie\nEtta\nHenrietta\nNina\nOdessa\nAudrey\nLeila\nBlanche\nEleanor\nKathleen\nKathryn\nViolet\nCarolyn\nIla\nNaomi\nAllie\nAnne\nDovie\nNannie\nMaudie\nMyra\nRoberta\nCleo\nDollie\nEarline\nEloise\nEvie\nFrankie\nJosie\nMargie\nAdell\nBertie\nGeraldine\nJane\nKate\nMaude\nMay\nMollie\nRubye\nSally\nTommie\nBettie\nBillie\nEra\nIva\nLudie\nOlivia\nRena\nVictoria\nVirgie\nBarbara\nClaudia\nDessie\nErma\nJean\nLettie\nLucinda\nPinkie\nRosalie\nSue\nCharlotte\nCorine\nIola\nJannie\nLinnie\nLou\nLuella\nMerle\nQueen\nBirdie\nElma\nLily\nLue\nRosetta\nClaudie\nElnora\nErnestine\nHester\nLee\nSavannah\nDixie\nFrancis\nIdella\nMadge\nMillie\nMittie\nNorma\nReba\nSylvia\nAugusta\nAvis\nConnie\nEugenia\nIrma\nJohnie\nLelia\nLetha\nLona\nLydia\nNona\nOdell\nPolly\nShirley\nZeola\nZula\nAudie\nLilla\nLora\nLuvenia\nRuthie\nZelma\nZora\nAbbie\nAdele\nAlta\nAmelia\nAnnette\nBuna\nCharlie\nClyde\nCorinne\nDelia\nEllie\nEstell\nIdell\nIna\nJeanette\nLilly\nLouisa\nMandy\nMarion\nMavis\nMaxine\nMiriam\nMozell\nMozelle\nMyrtis\nNadine\nRobbie\nRoxie\nTheresa\nAline\nAlpha\nArtie\nBennie\nCharity\nCornelia\nCorrie\nCreola\nElmira\nGoldie\nIcie\nLenora\nLinda\nLorine\nLouella\nLura\nMagnolia\nMallie\nNelle\nNola\nOphelia\nOssie\nPeggy\nSudie\nTessie\nAileen\nAmy\nBobbie\nCassie\nCecil\nCelia\nDolly\nEaster\nElvira\nErin\nExie\nHannah\nHettie\nIra\nIsabel\nIsabelle\nIvy\nJeannette\nLorena\nMadeline\nMaud\nMayme\nMyrtice\nOctavia\nOma\nRosia\nSammie\nSybil\nTressie\nVada\nVida\nWilla\nAdeline\nAdelle\nAva\nBama\nCaroline\nCharlsie\nClemmie\nCorene\nCynthia\nDannie\nDorsey\nElaine\nElisabeth\nElva\nEmmie\nEster\nFlorene\nFloy\nHenretta\nHilda\nImogene\nIzola\nJoyce\nJune\nLovie\nMarian\nMaurine\nMazie\nMellie\nMuriel\nOleta\nOlive\nPatricia\nRita\nSelma\nSusan\nVennie\nVerda\nVerla\nVernice\nVirgia\nAdelaide\nAlene\nAllene\nAnnice\nArlene\nChristina\nClarice\nClassie\nClaudine\nDonnie\nEarlean\nFlorine\nFreda\nGeorge\nGertie\nGwendolyn\nHarriette\nHortense\nIone\nIrean\nIsabell\nJames\nJettie\nKattie\nLeslie\nLonnie\nLouvenia\nMadie\nMariah\nMatilda\nMaybelle\nMelba\nMyrtie\nNan\nNovella\nOcie\nPansy\nRosemary\nSophia\nSophie\nTempie\nUna\nVerdie\nVerlie\nVersa\nVoncile\nWinifred\nZadie\nMary\nAnnie\nWillie\nRuby\nMattie\nRuth\nLouise\nElizabeth\nEthel\nMildred\nLillie\nMargaret\nSarah\nGladys\nFrances\nMinnie\nEmma\nLucille\nBessie\nHelen\nLillian\nDorothy\nEvelyn\nJessie\nBertha\nMartha\nAlice\nBeatrice\nMyrtle\nLois\nClara\nEdna\nMarie\nCarrie\nIda\nRosa\nGertrude\nMamie\nVirginia\nHattie\nLula\nFannie\nJulia\nLucile\nIrene\nThelma\nNellie\nGrace\nElla\nRosie\nPauline\nInez\nVera\nAlma\nSusie\nLaura\nEva\nHazel\nMaggie\nBernice\nVelma\nCatherine\nCora\nPearl\nDaisy\nSallie\nLucy\nKatie\nAnna\nFlorence\nMae\nViola\nEula\nEunice\nEssie\nEdith\nSara\nElsie\nJohnnie\nJosephine\nOra\nFlora\nLena\nNancy\nOla\nEstelle\nAda\nAddie\nNettie\nSadie\nRose\nLola\nMabel\nRebecca\nKatherine\nOllie\nGeorgia\nJewel\nOpal\nDoris\nLela\nLizzie\nMable\nAgnes\nAlberta\nDora\nChristine\nEffie\nEsther\nLeola\nBetty\nNell\nJewell\nLorene\nNora\nEleanor\nLottie\nVivian\nBeulah\nKathryn\nMarjorie\nAnn\nGeneva\nCallie\nEllen\nEloise\nAnne\nMargie\nStella\nDella\nGussie\nJuanita\nLeona\nLessie\nKathleen\nRoberta\nBlanche\nBonnie\nCarolyn\nEliza\nPearlie\nAudrey\nEddie\nJanie\nRachel\nWilma\nGracie\nNannie\nEstella\nEtta\nEvie\nFlossie\nJane\nMarguerite\nMarion\nJennie\nEarline\nIla\nJimmie\nIva\nSally\nOdell\nSue\nMaudie\nFrancis\nHenrietta\nJean\nJosie\nKate\nMillie\nMittie\nOdessa\nOlivia\nWinnie\nCornelia\nQueen\nVerna\nWilla\nAllie\nCleo\nLydia\nRosetta\nAmanda\nCharlotte\nCorine\nEmily\nEra\nIrma\nLou\nLudie\nTommie\nAdell\nEstell\nFrankie\nIna\nLeila\nLucinda\nLuella\nMaude\nNaomi\nNorma\nVirgie\nAmelia\nCharlie\nElma\nErnestine\nHilda\nJeanette\nNina\nRena\nRobbie\nDessie\nElnora\nHettie\nLila\nLora\nOphelia\nVictoria\nClyde\nDollie\nDovie\nJannie\nJoyce\nLue\nMadeline\nMollie\nRubye\nShirley\nSylvia\nAmy\nAvis\nBelle\nClaudia\nElva\nHannah\nLee\nLona\nMatilda\nMay\nMyrtice\nMyrtie\nSelma\nViolet\nZelma\nAline\nBarbara\nBertie\nEster\nGeraldine\nGertie\nIola\nLennie\nLinnie\nLorine\nMaxine\nPinkie\nRosia\nRubie\nBettie\nCecil\nCorinne\nGenevieve\nGwendolyn\nIris\nJohnie\nMagnolia\nRoxie\nRuthie\nTheresa\nVersie\nCassie\nCharity\nHester\nLenora\nLetha\nLily\nMarian\nMiriam\nMyrtis\nPatricia\nReba\nRosalee\nUna\nAdeline\nCelia\nClarice\nClaudie\nEarnestine\nIsabell\nLovie\nLurline\nMandy\nOlean\nPeggy\nRosalie\nSusan\nVoncile\nAdele\nAlta\nAnnabelle\nAnnette\nAugusta\nBennie\nBillie\nBulah\nConnie\nElaine\nEmmie\nEugenia\nIsabelle\nJettie\nMammie\nMavis\nMazie\nMyra\nOlive\nPolly\nSavannah\nTessie\nVergie\nVernice\nArtie\nBirdie\nBobbie\nCeola\nEarlene\nEllie\nElvie\nErin\nErlene\nErma\nFlorine\nHarriet\nIdell\nIdella\nJames\nKatheryn\nLettie\nLorena\nLoretta\nLura\nMaud\nMozelle\nNadine\nNola\nNona\nOlga\nOma\nSudie\nVerla\nAlene\nCorene\nCreola\nCumi\nCynthia\nDannie\nDelia\nDorthy\nEaster\nEileen\nEuna\nFloy\nFreda\nFreddie\nGeorgie\nIma\nImogene\nInell\nJune\nLaverne\nLelia\nLeslie\nLiza\nLonnie\nLorraine\nLuciel\nLuna\nLyda\nMadge\nMargarette\nMarietta\nMelba\nParalee\nPearline\nRessie\nRhoda\nRossie\nVerdie\nVesta\nVida\nAlva\nAvie\nBuna\nCharles\nCorrine\nElinor\nElise\nElouise\nEmmer\nEvangeline\nExie\nFay\nGertha\nGlennie\nIra\nJeanne\nJonnie\nLacy\nLouella\nMariah\nMerle\nMozell\nOcie\nOlar\nOuida\nRilla\nSammie\nSybil\nVassie\nVelva\nWilliemae\nWilmer\nZella\nZola\nZora\nZula\nAdelle\nAmie\nAnnis\nArlean\nAudie\nBeaulah\nBerta\nCaroline\nCathrine\nCharlsie\nClemmie\nClora\nCorrie\nDellie\nDelma\nDixie\nEquilla\nErline\nEther\nEttie\nEverlena\nFanny\nFaye\nGennie\nHarriett\nHellen\nHenretta\nHenry\nJanet\nJaunita\nJuliette\nKathlyn\nLavada\nLiddie\nLilla\nLilly\nLonie\nMalissa\nMuriel\nNella\nNeva\nOzella\nPansy\nPrince\nRochelle\nRowena\nShellie\nTennie\nTillie\nValeria\nVela\nVennie\nVerda\nVester\nWalter\nWillene\nZelda\nMary\nAnnie\nRuby\nWillie\nRuth\nMargaret\nMattie\nLouise\nMildred\nElizabeth\nLillie\nEthel\nFrances\nGladys\nDorothy\nMinnie\nBessie\nEdna\nLillian\nMartha\nEvelyn\nSarah\nEmma\nHelen\nLois\nJessie\nLucille\nClara\nAlice\nVirginia\nHazel\nThelma\nCarrie\nFannie\nEva\nBertha\nHattie\nMarie\nIrene\nMyrtle\nLula\nNellie\nPauline\nElla\nIda\nJulia\nRosa\nBeatrice\nAlma\nSusie\nGrace\nVera\nInez\nMamie\nGertrude\nLucy\nLaura\nAnna\nLucile\nMaggie\nRosie\nEssie\nEunice\nBernice\nEdith\nEula\nKatie\nVelma\nCora\nJohnnie\nCatherine\nDaisy\nEsther\nPearl\nFlorence\nFlora\nLena\nAlberta\nKatherine\nLola\nAddie\nSallie\nViola\nAgnes\nMae\nOllie\nSara\nAda\nJosephine\nElsie\nSadie\nVivian\nDoris\nJewell\nMable\nOra\nJewel\nOpal\nJuanita\nRebecca\nEstelle\nGeorgia\nRose\nLizzie\nEleanor\nNettie\nBetty\nBeulah\nDora\nLeola\nOla\nNancy\nMarjorie\nWilma\nChristine\nEllen\nAnn\nCallie\nLorene\nMabel\nNell\nJanie\nKathryn\nAudrey\nGeneva\nLottie\nEffie\nAnne\nLessie\nEddie\nLela\nLeona\nNora\nStella\nCarolyn\nEloise\nEtta\nBonnie\nCleo\nPearlie\nRoberta\nMarguerite\nOdessa\nMollie\nNina\nBarbara\nGussie\nIrma\nJean\nKathleen\nSue\nBertie\nEstella\nIla\nJane\nJimmie\nClaudia\nMaudie\nNannie\nNaomi\nDollie\nErma\nGracie\nKate\nTommie\nAllie\nCorine\nDella\nMargie\nMaude\nJennie\nReba\nBlanche\nLila\nEmily\nHenrietta\nMarion\nEliza\nFlossie\nImogene\nSylvia\nGeraldine\nRobbie\nBillie\nElaine\nEvie\nIva\nMaxine\nMillie\nMyrtice\nRachel\nRena\nViolet\nAmanda\nDessie\nJosie\nLou\nQueen\nRosetta\nRuthie\nZelma\nAdell\nBirdie\nFrancis\nJeanette\nLydia\nSelma\nWilla\nCharlie\nErnestine\nLeila\nOlivia\nSally\nVirgie\nAmy\nClaudie\nFrankie\nLetha\nMatilda\nNorma\nCaroline\nCharlotte\nElnora\nFlorine\nIdell\nJannie\nRoxie\nBettie\nCassie\nCornelia\nElma\nEra\nIna\nLilly\nLuella\nMozell\nMyrtis\nOcie\nOphelia\nRosalie\nShirley\nVerna\nAvis\nDovie\nHilda\nIris\nLettie\nMittie\nMyra\nOdell\nRubye\nBelle\nClarice\nEstell\nHester\nJohnie\nLinnie\nLorraine\nMaurine\nMay\nPeggy\nBennie\nEarline\nHannah\nLennie\nLovie\nMavis\nPolly\nVictoria\nWinnie\nAugusta\nCecil\nConnie\nEarnestine\nEdwina\nEllie\nHarriet\nLora\nLorena\nLue\nSusan\nAlta\nArtie\nBobbie\nCelia\nClyde\nEarlene\nFreddie\nGwendolyn\nJettie\nLelia\nLenora\nLorine\nLucinda\nMagnolia\nMelba\nMyrtie\nNola\nPinkie\nVersie\nAileen\nAline\nCorrine\nFloy\nGertie\nIdella\nLuvenia\nMadge\nMiriam\nOma\nRosia\nVida\nVoncile\nZora\nAmie\nCorene\nEaster\nEster\nEugenia\nHettie\nJoe\nLee\nMadeline\nMarian\nMerle\nMuriel\nOuida\nTheresa\nUna\nVernice\nVesta\nAbbie\nAmelia\nAnnette\nAudie\nBuna\nCeola\nDorthy\nIola\nJuliette\nLaverne\nLera\nLilla\nLily\nLona\nMadie\nMalinda\nMargret\nMozelle\nPearline\nSybil\nWinifred\nAlene\nAltha\nBethel\nCecile\nClemmie\nDannie\nDixie\nElvie\nFay\nFreda\nGenevieve\nGeorgie\nHassie\nIcie\nIma\nIona\nIra\nJohn\nLexie\nLonie\nLoretta\nLudie\nMandy\nMaria\nOlive\nPernie\nRubie\nVernie\nWilda\nZella\nAdelaide\nAdele\nAva\nBerta\nCarmen\nDona\nEther\nEuna\nFanny\nFaye\nFlorene\nGoldie\nJesse\nKattie\nLavada\nLeatha\nLinda\nLoraine\nLouisa\nLurline\nMayme\nMazie\nNadine\nPatricia\nRessie\nRhoda\nRilla\nSavannah\nSophie\nTessie\nVerla\nZula\nArcola\nArie\nArlene\nBerniece\nBulah\nCathrine\nCordelia\nDelia\nDelphia\nDolores\nEileen\nElmira\nElva\nEmmie\nExie\nGay\nGene\nGlennie\nHarriett\nHenretta\nHortense\nIdelle\nInell\nIsabell\nJack\nJoan\nJoyce\nLeslie\nLouvenia\nMagdalene\nMammie\nMellie\nNeva\nNona\nOlean\nPansy\nPriscilla\nQueenie\nRita\nSophia\nTiny\nTrannie\nTressie\nTrixie\nTrudie\nVeola\nVernell\nWanda\nWillard\nWillia\nAlyce\nAra\nBama\nBirtie\nBuena\nCharity\nCleola\nCorinne\nDellar\nDena\nDicie\nDolly\nEldora\nElouise\nEthelyn\nFlorida\nGenie\nGennie\nGertha\nIlene\nJacqueline\nJeanne\nJoanna\nJune\nKatheryn\nKathrine\nLeo\nLiddie\nLouella\nLouie\nLoyce\nMacie\nMaybelle\nMertie\nMontez\nNelle\nOdie\nParalee\nPecola\nPollie\nRetha\nRosella\nRowena\nSammie\nSudie\nTennie\nValeria\nVassie\nVeda\nVerdie\nVerlie\nVernon\nVirgil\nWinona\nZadie\nMary\nAnnie\nRuby\nWillie\nRuth\nMattie\nLouise\nMargaret\nMildred\nElizabeth\nLillie\nEdna\nBessie\nFrances\nGladys\nSarah\nEthel\nDorothy\nMinnie\nEmma\nHelen\nLois\nJessie\nEvelyn\nClara\nMartha\nLillian\nBertha\nLucille\nAlice\nHazel\nThelma\nMyrtle\nCarrie\nMarie\nVirginia\nIda\nBeatrice\nFannie\nHattie\nPauline\nLula\nVera\nIrene\nElla\nGrace\nEva\nLaura\nNellie\nMamie\nLucile\nAnna\nJulia\nRosa\nFlora\nBernice\nAlma\nEdith\nDaisy\nInez\nRosie\nSusie\nEunice\nMaggie\nSara\nEula\nCora\nElsie\nEssie\nSallie\nGertrude\nVelma\nMae\nKatherine\nKatie\nFlorence\nLucy\nPearl\nAgnes\nEstelle\nJohnnie\nLena\nDoris\nJosephine\nCatherine\nOllie\nNettie\nOpal\nLorene\nOla\nDora\nLizzie\nLola\nChristine\nAddie\nGeorgia\nMabel\nEloise\nSadie\nJewel\nNell\nViola\nNancy\nAlberta\nVivian\nOra\nNora\nRose\nMarjorie\nWilma\nLeola\nLottie\nMable\nGeneva\nAda\nBetty\nBeulah\nEllen\nJewell\nAudrey\nJuanita\nJanie\nLela\nLessie\nStella\nMarguerite\nAnn\nEleanor\nEsther\nVerna\nRebecca\nBonnie\nEffie\nGussie\nJimmie\nKathryn\nLeona\nPearlie\nEmily\nNaomi\nGracie\nRoberta\nJean\nRachel\nCarolyn\nAnne\nJane\nKathleen\nMargie\nCallie\nEddie\nVirgie\nNannie\nOdell\nBlanche\nFlossie\nBertie\nSally\nIla\nRosetta\nViolet\nAllie\nCorine\nErnestine\nIrma\nJennie\nCleo\nLila\nDella\nFrancis\nFrankie\nRena\nEra\nMillie\nDollie\nIva\nMarion\nMavis\nOdessa\nQueen\nSue\nTommie\nEstella\nEtta\nGeraldine\nJosie\nKate\nLee\nNina\nAdell\nAmanda\nBarbara\nBobbie\nCharlotte\nHilda\nMaudie\nMyra\nOphelia\nReba\nRobbie\nJohnie\nLinnie\nDessie\nEarline\nHenrietta\nJeanette\nMay\nBettie\nEliza\nIdell\nJannie\nLily\nDixie\nElnora\nLorine\nMittie\nMollie\nMozelle\nMyrtice\nWinnie\nHannah\nLeila\nLydia\nMaude\nPolly\nRoxie\nRuthie\nAmy\nBillie\nCornelia\nErma\nMaxine\nWilla\nArtie\nAugusta\nClarice\nElma\nEugenia\nSybil\nAline\nClaudia\nFlorine\nMagnolia\nNorma\nOlivia\nRubye\nSylvia\nAmelia\nBirdie\nCharlie\nDovie\nHarriet\nLora\nLucinda\nLudie\nMandy\nMiriam\nPinkie\nSavannah\nUna\nZelma\nZula\nAbbie\nCeola\nClaudie\nEstell\nIola\nLou\nLuella\nMelba\nVoncile\nBennie\nEaster\nElva\nEster\nEuna\nHester\nIris\nLoretta\nMuriel\nMyrtis\nNadine\nOzella\nSelma\nSusan\nVictoria\nAudie\nAvis\nConnie\nDelia\nFaye\nGwendolyn\nImogene\nIna\nLettie\nLura\nMerle\nMozell\nDolores\nElaine\nEvie\nGertie\nJanet\nLelia\nMarian\nOuida\nPearline\nSophia\nGoldie\nJames\nJanice\nJuliette\nLennie\nLetha\nLonie\nLuvenia\nMadie\nNola\nOma\nPeggy\nRosalie\nShirley\nTheresa\nZora\nAileen\nAlta\nAnita\nArlene\nDorthy\nEarnestine\nEmmie\nExie\nFlorene\nHettie\nJeannette\nLorena\nMadge\nMolly\nOcie\nOctavia\nOlene\nOssie\nPriscilla\nRhoda\nVesta\nAva\nBerta\nCaroline\nCassie\nClemmie\nClyde\nEarlene\nEllie\nErline\nFay\nIra\nJudy\nJune\nLenora\nLilly\nLinda\nLorraine\nLovie\nLue\nMyrtie\nNeva\nOlive\nRita\nRubie\nShellie\nTennie\nWinifred\nAdele\nAlene\nAlva\nBulah\nCecil\nCelia\nCharity\nCorinne\nElvira\nErin\nFern\nFloy\nFreddie\nGenevieve\nGeorgie\nGlennie\nHenry\nIona\nJettie\nJoe\nJoyce\nKitty\nLassie\nLaverne\nLeatha\nLera\nLona\nLoraine\nLouisa\nMammie\nMaud\nMaurice\nNona\nNovella\nOdie\nPatricia\nPhyllis\nSweetie\nTessie\nTiny\nWillia\nZella\nAdelle\nAllene\nAlmeda\nAlpha\nAlthea\nAnnette\nBeverly\nClaire\nEdwina\nFanny\nFlorrie\nIdella\nInell\nJo\nJonnie\nKathrine\nLouella\nLouvenia\nLuna\nMargret\nMaye\nMinerva\nMissouri\nNella\nNobie\nOleta\nOna\nPansy\nRutha\nSibyl\nSudie\nVeola\nViva\nZola\nArline\nAudry\nBelle\nBobby\nBula\nBurma\nChristeen\nClaudine\nCordie\nCorene\nCorrie\nDannie\nDelma\nEarlean\nEileen\nEldora\nElizebeth\nElvie\nEver\nExa\nFoye\nGennie\nGertha\nHellen\nHenretta\nIlene\nIsabell\nJackie\nJaunita\nJoan\nLacy\nLiza\nLurline\nLyda\nMargurite\nMatilda\nMaurine\nMaxie\nMazie\nNealie\nOmie\nOrene\nOzell\nOzie\nPernie\nPluma\nQueenie\nRessie\nRilla\nTula\nVallie\nVernice\nVertie\nVida\nWanda\nWilhelmina\nWillodean\nZera\nAltha\nAlvis\nAngie\nArlie\nArrie\nAutie\nBettye\nBuelah\nCarmen\nCarol\nCecile\nCherry\nClassie\nConstance\nCoy\nCreola\nDimple\nDolly\nDona\nDonnie\nDorcas\nEarlie\nElois\nEulalia\nFrancies\nGaynelle\nGladis\nHarriett\nHarry\nIcie\nInes\nIsabelle\nIvy\nJeffie\nJuliet\nKittie\nLeta\nLexie\nLilie\nLittie\nLonnie\nLoy\nLuciel\nLurlene\nLuverne\nMacie\nMadeline\nMallie\nMargarett\nMennie\nMertie\nMyrle\nNelle\nOnie\nPatsy\nRetha\nRochelle\nRosemary\nTheo\nTillie\nTrannie\nVeda\nVergie\nVernell\nVernia\nVernie\nVinnie\nWilda\nWilliam\nWinnifred\nZadie\nMary\nAnnie\nRuby\nWillie\nRuth\nMargaret\nMildred\nLouise\nMattie\nElizabeth\nLillie\nDorothy\nGladys\nFrances\nEthel\nSarah\nHelen\nBessie\nEdna\nEvelyn\nMartha\nClara\nMinnie\nJessie\nEmma\nMarie\nVirginia\nLucille\nLillian\nFannie\nLois\nNellie\nPauline\nCarrie\nBertha\nThelma\nHazel\nAlice\nIda\nGrace\nIrene\nBeatrice\nAlma\nElla\nMyrtle\nLula\nHattie\nMamie\nGertrude\nInez\nRosa\nSusie\nEva\nCora\nVera\nLucile\nSara\nRosie\nJulia\nEdith\nAnna\nLucy\nFlora\nDaisy\nBernice\nEunice\nDoris\nLaura\nMaggie\nVelma\nCatherine\nJohnnie\nPearl\nEssie\nKatie\nKatherine\nMae\nElsie\nLena\nEula\nSallie\nJuanita\nViola\nKathleen\nAddie\nJosephine\nNell\nAda\nEstelle\nGeorgia\nFlorence\nGeneva\nEsther\nLizzie\nNancy\nSadie\nOla\nOpal\nChristine\nJewell\nLola\nAgnes\nLorene\nOra\nAlberta\nEleanor\nNettie\nLela\nRebecca\nRose\nVivian\nWilma\nDora\nJewel\nLeola\nBeulah\nEloise\nOllie\nBetty\nLottie\nMable\nAudrey\nEllen\nMarjorie\nStella\nEffie\nLeona\nAnn\nAnne\nJanie\nKathryn\nBonnie\nCallie\nJane\nJennie\nMabel\nMargie\nRachel\nNora\nRoberta\nJimmie\nCarolyn\nVerna\nEddie\nGracie\nGussie\nIla\nJeanette\nPearlie\nSue\nWinnie\nFrancis\nMarguerite\nMarion\nAllie\nBlanche\nCleo\nErma\nLessie\nNannie\nOlivia\nEstella\nEtta\nJannie\nJosie\nNaomi\nBettie\nCorine\nDella\nEmily\nReba\nHilda\nRubye\nEra\nJean\nLora\nCharlie\nMaude\nOphelia\nVirgie\nBarbara\nDollie\nFlossie\nGeraldine\nLila\nTommie\nBertie\nOdessa\nSally\nBillie\nEliza\nElnora\nErnestine\nIva\nMyra\nAmanda\nDovie\nMaudie\nMay\nClaudia\nElma\nEvie\nHenrietta\nLydia\nMollie\nZelma\nEstell\nEster\nKate\nLeila\nLou\nNina\nOdell\nRobbie\nFrankie\nHarriet\nImogene\nMaxine\nMillie\nMyrtice\nRuthie\nWilla\nAnita\nEarline\nFlorine\nJohnie\nMadge\nAline\nAugusta\nHester\nIrma\nLenora\nMiriam\nQueen\nRoxie\nViolet\nAdell\nArtie\nCharlotte\nIna\nMavis\nBobbie\nCorene\nGertie\nKattie\nLee\nMaurine\nMittie\nRena\nTheresa\nBirdie\nDessie\nHannah\nJune\nLinnie\nLovie\nMozell\nNorma\nPeggy\nAileen\nClaudie\nCornelia\nEarnestine\nEugenia\nLettie\nMerle\nRosetta\nSybil\nVoncile\nClarice\nElouise\nGertha\nIola\nLorraine\nLuella\nLura\nMadeline\nMandy\nOcie\nPolly\nRosalie\nSavannah\nUna\nAnnette\nBelle\nCelia\nFreda\nGwendolyn\nInell\nIris\nJettie\nLera\nLue\nMargret\nMarian\nMuriel\nMyrtis\nNeva\nRubie\nAbbie\nAlta\nAudie\nBennie\nElaine\nJoyce\nLaverne\nLetha\nLorena\nLorine\nMadgie\nOlive\nPearline\nPinkie\nShirley\nSylvia\nVada\nVerlie\nVictoria\nAmy\nClyde\nCorinne\nDixie\nElvie\nEmmie\nExie\nFay\nGenevieve\nLilly\nLily\nSelma\nSophia\nAlva\nArline\nAvis\nBerniece\nBerta\nBulah\nCaroline\nCassie\nDonnie\nEllie\nElva\nEuna\nFaye\nIsabelle\nJo\nLelia\nLonnie\nLudie\nMaebell\nMagdalene\nMagnolia\nMatilda\nMaud\nMazie\nMelba\nMyrtie\nOlene\nOzell\nRosia\nSusan\nAmelia\nAnnabelle\nArlene\nCecil\nClaudine\nClemmie\nDelia\nDorris\nEarlean\nEaster\nEzell\nIdell\nIdella\nJamie\nJanet\nLucinda\nLurline\nMayme\nNola\nNona\nOna\nOzella\nPansy\nTessie\nVeda\nVergie\nVida\nZola\nArlena\nArvie\nCecile\nClayton\nClois\nDona\nEdwina\nElise\nElvira\nGoldie\nHassie\nHettie\nIona\nIra\nIsabell\nJohn\nJuliette\nLennie\nLoretta\nLouie\nLouisa\nLulu\nLuvenia\nMalinda\nMammie\nMaybell\nMozelle\nNelle\nOma\nOuida\nPatricia\nPhyllis\nSammie\nTennie\nTina\nTressie\nVernice\nVesta\nZora\nAdele\nAllene\nAngie\nAra\nArdell\nCarol\nCharity\nCharles\nConnie\nCorrie\nDannie\nDelores\nDimple\nEarlene\nEdythe\nElmira\nEmogene\nFlorene\nFloy\nFreddie\nGeorgie\nIone\nIsabella\nJames\nJeannette\nJenny\nJoan\nLavada\nLilla\nLinda\nMadie\nMarcella\nMaria\nMariah\nNadine\nNovella\nOzie\nParalee\nRachael\nRessie\nRetha\nRobert\nSibyl\nTrudie\nVassie\nVernon\nVersie\nWillia\nZada\nZula\nAdeline\nAdelle\nAgatha\nAlene\nAlpha\nAlthea\nAlyce\nAnnis\nArnie\nArrie\nBlanch\nBrooksie\nCathrine\nClora\nConstance\nDolly\nDolores\nEileen\nElna\nEulalia\nGennie\nGlennie\nHellen\nIma\nIzola\nJeffie\nJeraldine\nJoanna\nJonnie\nJudy\nLevis\nLouella\nLouvenia\nLuevenia\nLurlene\nMacie\nMaebelle\nMaedell\nMaxie\nMennie\nMissouri\nMolly\nMona\nNoma\nOctavia\nOleta\nOlga\nOssie\nOttie\nPattie\nPluma\nQueenie\nRegina\nRosalee\nRowena\nSidney\nSyble\nTinnie\nValerie\nVennie\nVerlon\nVester\nWilda\nWinifred\nMary\nAnnie\nWillie\nMargaret\nRuby\nMildred\nRuth\nMattie\nLouise\nFrances\nElizabeth\nDorothy\nHelen\nEthel\nGladys\nLillie\nEdna\nEvelyn\nBessie\nMartha\nJessie\nMinnie\nSarah\nBertha\nVirginia\nAlice\nClara\nHazel\nThelma\nLucille\nLillian\nLois\nMarie\nEmma\nNellie\nMyrtle\nCarrie\nIrene\nIda\nPauline\nJulia\nMamie\nLula\nFannie\nRosa\nElla\nEdith\nHattie\nGrace\nEva\nVera\nBernice\nCatherine\nBeatrice\nLaura\nInez\nRosie\nAlma\nSusie\nSara\nFlora\nJosephine\nGertrude\nDoris\nEssie\nAnna\nJohnnie\nLucy\nMaggie\nCora\nKatie\nLucile\nGeorgia\nEunice\nElsie\nFlorence\nMae\nAda\nDaisy\nEula\nVelma\nViola\nKatherine\nSallie\nChristine\nLorene\nPearl\nOpal\nMable\nJuanita\nLena\nSadie\nGeneva\nAlberta\nNora\nAddie\nJewell\nNancy\nNettie\nOra\nAgnes\nOla\nVivian\nOllie\nJewel\nMabel\nLela\nLizzie\nEloise\nEstelle\nEsther\nMarjorie\nAnn\nRose\nGussie\nLottie\nRebecca\nBetty\nJanie\nRachel\nWilma\nEffie\nLola\nNell\nEleanor\nMargie\nMarguerite\nStella\nLeola\nBeulah\nKathleen\nBonnie\nEllen\nDora\nRoberta\nJane\nCallie\nJimmie\nKathryn\nLeona\nAudrey\nCleo\nHenrietta\nLessie\nWinnie\nErnestine\nHilda\nPearlie\nSue\nEddie\nEmily\nJeanette\nAllie\nAnne\nGeraldine\nMarion\nTommie\nFrancis\nLee\nBlanche\nFlossie\nJean\nRobbie\nCarolyn\nGracie\nViolet\nCorine\nIla\nMay\nVerna\nDella\nElnora\nMollie\nNaomi\nSylvia\nIrma\nLila\nMerle\nQueen\nEtta\nOdessa\nSybil\nWilla\nBobbie\nErma\nIva\nJosie\nLou\nMavis\nMaxine\nNina\nOdell\nAugusta\nBertie\nEra\nKate\nMaudie\nReba\nRubye\nEliza\nIna\nJennie\nLydia\nNorma\nAmanda\nBillie\nCharlotte\nEarline\nEstell\nEstella\nFrankie\nLeila\nLue\nRosetta\nSally\nClaudia\nEvie\nJannie\nMaude\nRena\nSibyl\nLora\nMyra\nNannie\nRuthie\nBarbara\nBettie\nDovie\nHester\nJohnie\nMittie\nAdell\nDollie\nEllie\nEster\nLinnie\nOlivia\nPatricia\nAline\nBennie\nBirdie\nCornelia\nJettie\nJoyce\nSusan\nSyble\nVoncile\nCharlie\nDixie\nEaster\nElma\nHarriet\nLetha\nLorraine\nMandy\nMelba\nOphelia\nTheresa\nDessie\nIola\nJune\nMillie\nMiriam\nMyrtice\nRoxie\nAnnette\nElouise\nFaye\nIdell\nLudie\nPolly\nRosalie\nVirgie\nAmy\nAvis\nCassie\nClemmie\nElaine\nLenora\nLorine\nLuella\nMarian\nOlene\nVictoria\nClaudie\nFlorine\nIdella\nInell\nLaverne\nLouella\nLovie\nMadeline\nMayme\nMozelle\nNola\nZelma\nAmelia\nCecil\nEugenia\nEuna\nFay\nFloy\nFreda\nGenevieve\nGeorgie\nGertha\nGoldie\nJohn\nMagnolia\nPinkie\nRegina\nShirley\nTressie\nAdele\nAlta\nCeola\nClarice\nConnie\nDolly\nDorthy\nGwendolyn\nIsabelle\nJeannette\nLelia\nLennie\nLily\nMadge\nMazie\nPatsy\nRosia\nSelma\nVernie\nWinifred\nAileen\nAnita\nAudie\nCaroline\nClaudine\nCorene\nDelia\nEmmie\nFreddie\nHannah\nHettie\nJonnie\nMargret\nMyrtis\nOma\nPearline\nPeggy\nTheola\nTrudie\nVida\nZora\nAlva\nCynthia\nEarlene\nEarnestine\nEdythe\nExa\nImogene\nIris\nLera\nLeslie\nLinda\nLonnie\nLoretta\nMacie\nMuriel\nRubie\nVersie\nAdelle\nBelle\nCelia\nCorean\nCreola\nGertie\nIona\nIra\nJeanne\nKattie\nLettie\nLorena\nMarietta\nMatilda\nMaurine\nMozell\nMyrtie\nNona\nParalee\nPhyllis\nSammie\nSavannah\nSophia\nZella\nAbbie\nAlpha\nArthur\nBama\nBerniece\nBlanch\nBulah\nCecile\nCelestine\nCharity\nClyde\nEarlie\nEdwina\nElva\nGennie\nGloria\nHenry\nIsabel\nJaunita\nLilly\nLucinda\nMargueritte\nMaxie\nNadine\nNan\nOcie\nOctavia\nOlga\nOlive\nOzella\nSophie\nTessie\nUna\nVerda\nVerla\nAlene\nAltha\nAra\nArdell\nArtie\nAva\nBerta\nBirda\nBlondell\nBuena\nBurma\nCarol\nCathryn\nClora\nDelma\nDonnie\nEldora\nElise\nElmira\nExie\nFlorene\nHarriett\nHellen\nIma\nIsabell\nJames\nJanet\nJoan\nKay\nLeatha\nLona\nLular\nLuna\nLura\nMaud\nMaybelle\nMelvina\nMolly\nMyrl\nNella\nNelle\nOlevia\nPansy\nPriscilla\nQueenie\nRilla\nRobert\nTheo\nTiny\nVergie\nWalter\nWillia\nZola\nAlthea\nArcola\nArdella\nAzzie\nBrooksie\nCharline\nCleola\nClimmie\nConola\nConstance\nCorinne\nCorrine\nDannie\nDimple\nDolores\nDonie\nDrucilla\nEarlean\nElna\nElvie\nEnnis\nErin\nEtha\nFoy\nGlennie\nIvey\nJoy\nJulie\nJuliette\nLallie\nLassie\nLilie\nLina\nLonie\nLoraine\nLoree\nLouisa\nLurlene\nLuvenia\nMagdalene\nMaple\nMarilyn\nMaurice\nMaybell\nMayola\nMona\nNovella\nOmie\nOna\nOzell\nOzelle\nPattie\nPluma\nRessie\nRhoda\nRosalee\nTennie\nTrixie\nTrudy\nValeria\nVelva\nVenice\nVeola\nVernell\nVertie\nVinnie\nVonceil\nWillene\nZettie\nMary\nAnnie\nWillie\nMildred\nRuby\nLouise\nMargaret\nRuth\nDorothy\nMattie\nElizabeth\nHelen\nFrances\nLillie\nEthel\nSarah\nGladys\nMinnie\nEdna\nMartha\nEvelyn\nEmma\nBessie\nMarie\nLois\nJessie\nAlice\nLucille\nClara\nHazel\nBertha\nVirginia\nCarrie\nThelma\nLillian\nMyrtle\nEdith\nNellie\nFannie\nIda\nElla\nPauline\nEva\nIrene\nJulia\nHattie\nRosa\nRosie\nDoris\nVera\nMamie\nAlma\nGrace\nInez\nLula\nSusie\nAnna\nKatie\nBeatrice\nCatherine\nSara\nBernice\nEunice\nLucile\nJohnnie\nEula\nMaggie\nVelma\nCora\nJosephine\nEssie\nLucy\nLaura\nGertrude\nFlora\nJuanita\nChristine\nLizzie\nFlorence\nViola\nElsie\nMae\nNancy\nAda\nDaisy\nGeorgia\nPearl\nAgnes\nJewel\nLorene\nSadie\nJanie\nLena\nMable\nOpal\nKatherine\nAlberta\nVivian\nBetty\nOllie\nSallie\nOra\nMabel\nLola\nEloise\nNettie\nOla\nGeneva\nNell\nMarjorie\nEstelle\nRebecca\nRose\nEleanor\nWilma\nAddie\nDora\nLottie\nEllen\nEsther\nJewell\nEffie\nAnn\nAudrey\nMargie\nPearlie\nKathleen\nNora\nGussie\nEddie\nLeola\nTommie\nKathryn\nLela\nMarguerite\nStella\nLeona\nJimmie\nCleo\nBonnie\nGeraldine\nNaomi\nRachel\nDella\nJane\nGracie\nBeulah\nMarion\nOdessa\nEtta\nNannie\nRoberta\nSybil\nHilda\nWinnie\nCarolyn\nCorine\nLessie\nErma\nJean\nJeanette\nJennie\nAnne\nErnestine\nReba\nClaudia\nImogene\nMavis\nNorma\nViolet\nAllie\nFrancis\nIna\nOphelia\nDollie\nIrma\nKate\nSylvia\nWilla\nCallie\nEra\nFlossie\nIla\nVerna\nEarline\nElnora\nMelba\nMollie\nBarbara\nBertie\nBlanche\nEvie\nMaudie\nRosetta\nCharlotte\nCornelia\nFrankie\nIva\nMaude\nRobbie\nEliza\nEmily\nEstella\nJohnie\nLee\nMittie\nMyra\nSue\nAmanda\nBobbie\nHenrietta\nOlivia\nSibyl\nVirgie\nJannie\nJoyce\nSally\nAdell\nClaudie\nJosie\nJune\nLila\nRena\nBettie\nClarice\nLue\nMaxine\nMazie\nMyrtice\nOdell\nGwendolyn\nLorine\nMiriam\nRubye\nVictoria\nLuella\nMillie\nAmy\nBillie\nEugenia\nHester\nLora\nLydia\nNina\nOlive\nQueen\nZelma\nIris\nLeila\nRuthie\nDessie\nDovie\nFaye\nFlorine\nGeorgie\nLonnie\nMozell\nShirley\nSyble\nAugusta\nEarnestine\nElva\nEster\nLorraine\nMay\nPinkie\nRoxie\nDorthy\nMadge\nMarian\nNadine\nAileen\nCaroline\nCassie\nCeola\nDelia\nFlorene\nLennie\nLera\nLinnie\nLoraine\nLoretta\nMerle\nNola\nPeggy\nVida\nAnita\nEaster\nElaine\nFreddie\nLouisa\nMozelle\nPolly\nRosalie\nVoncile\nWinifred\nAbbie\nAlene\nAlta\nArlene\nBirdie\nCharlie\nConnie\nElouise\nFloy\nFreda\nGertie\nLelia\nLettie\nLucinda\nMatilda\nRubie\nSusan\nTressie\nAline\nAlline\nAnnette\nAvis\nDixie\nDolly\nEdythe\nEllie\nElvie\nGertha\nHannah\nIdell\nIdella\nLenora\nLetha\nLou\nLudie\nLuvenia\nMargarette\nOzell\nPriscilla\nVerla\nAgatha\nAlva\nClaudine\nCorrine\nCynthia\nDannie\nGoldie\nInell\nIra\nJeannette\nLily\nMyrtis\nOcie\nPatricia\nPearline\nAlyce\nBennie\nCecil\nClyde\nEldora\nElmer\nEstell\nExie\nHettie\nJanet\nJeanne\nLaverne\nMadeline\nMadie\nMagnolia\nNovella\nOrene\nOuida\nParalee\nRosia\nSavannah\nSelma\nVesta\nWilda\nArtie\nCharlene\nCreola\nDonnie\nElna\nElzie\nGenevieve\nHazle\nHenry\nIsabell\nJames\nJohn\nLouella\nLovie\nMagdalene\nMalinda\nMammie\nMandy\nMargret\nMaureen\nOdie\nOma\nOssie\nRossie\nSammie\nTempie\nTessie\nVerbie\nVerda\nVernice\nZella\nZula\nAlthea\nAmelia\nAudie\nBama\nBirtha\nBulah\nCelia\nCharity\nClora\nCorene\nElisabeth\nElma\nElvira\nErie\nFay\nHarriet\nHellen\nHelon\nJettie\nKitty\nLilly\nLona\nLyda\nMaurine\nNelle\nOctavia\nOda\nOlene\nOzella\nRhoda\nRita\nVernell\nVinnie\nVonnie\nAmie\nArlean\nArrie\nBell\nBerniece\nBuna\nCathryn\nCecelia\nConstance\nElise\nEmmer\nGennie\nHassie\nHildred\nHortense\nIsabel\nIsabelle\nJanice\nJo\nJoe\nJoy\nKathrine\nLavada\nLeatha\nLida\nLinda\nLorena\nLouie\nMaebell\nMariah\nMarietta\nMarylou\nMaybell\nMyrtie\nOmie\nPansy\nPatsy\nPhyllis\nQueenie\nRetha\nRosemary\nSophia\nVassie\nVernie\nWillodean\nAlean\nAllene\nAlpha\nAngie\nAnnabelle\nArline\nBerta\nBlanch\nBula\nBurma\nCarlean\nChristene\nClassie\nClemmie\nCordie\nDaisey\nDelma\nDelphine\nEarlene\nEdwina\nElmira\nEmmie\nEvlyn\nFlorida\nGaynell\nGirlie\nHarriett\nIma\nIola\nJamie\nJesse\nKattie\nLonie\nLouvenia\nLoyce\nLura\nMarcella\nMargarett\nMaybelle\nMelva\nMinerva\nMuriel\nOlar\nOlean\nOneida\nOttie\nPearlena\nPrince\nRessie\nRilla\nRobert\nRowena\nSophie\nTheresa\nTillie\nTrudie\nVada\nVernon\nWillene\nZora\nAdele\nAllean\nAnnice\nArlina\nArthur\nBelle\nBeverly\nBurnice\nCarlie\nCarol\nCecile\nCelestine\nCharley\nCharlsie\nCordelia\nDellar\nDelora\nDorris\nEarlean\nEather\nEileen\nElease\nElizebeth\nErin\nEther\nEthyl\nEudora\nEuna\nEvelene\nFloyce\nFoy\nFrieda\nGearldine\nGeorge\nGirtha\nHenretta\nHulda\nIzora\nJaunita\nJeffie\nJerry\nJoan\nJonnie\nJudy\nJulie\nJuliet\nLaurine\nLella\nLeora\nLilla\nLiza\nLoree\nLovella\nLuna\nMacie\nMaria\nMayme\nMennie\nMissouri\nNealie\nNeva\nOna\nOva\nOzelle\nPat\nPernie\nPluma\nRochelle\nRutha\nTheda\nTrudy\nUna\nVeola\nVerlie\nVerlon\nWanda\nWestonia\nWilhelmina\nWillia\nWilliam\nWoodie\nZola\nMary\nAnnie\nMargaret\nWillie\nMildred\nRuby\nRuth\nDorothy\nLouise\nHelen\nMattie\nFrances\nGladys\nElizabeth\nSarah\nEthel\nEvelyn\nLillie\nVirginia\nEdna\nMartha\nClara\nLillian\nBessie\nMinnie\nEmma\nLois\nLucille\nHazel\nBertha\nJessie\nMyrtle\nPauline\nMarie\nDoris\nFannie\nAlice\nThelma\nIrene\nNellie\nLula\nBeatrice\nElla\nCarrie\nEdith\nRosa\nVera\nMamie\nIda\nKatherine\nRosie\nEva\nHattie\nInez\nSara\nLaura\nCatherine\nAnna\nBernice\nJohnnie\nJulia\nGertrude\nJuanita\nEunice\nVelma\nAlma\nGrace\nLucile\nLucy\nKatie\nSusie\nFlora\nMae\nCora\nEssie\nGeorgia\nMaggie\nKathleen\nFlorence\nDaisy\nJosephine\nMable\nLorene\nOpal\nElsie\nSallie\nAgnes\nViola\nChristine\nLena\nAddie\nMarjorie\nNettie\nSadie\nVivian\nPearl\nAnn\nEloise\nRebecca\nOra\nAda\nLola\nEula\nJewel\nNancy\nBetty\nGeneva\nMabel\nOllie\nOla\nAlberta\nAudrey\nJanie\nNell\nWilma\nKathryn\nRose\nEleanor\nLizzie\nDora\nJimmie\nMargie\nLottie\nNora\nBeulah\nBonnie\nLeola\nViolet\nEllen\nEstelle\nJewell\nRachel\nDella\nJean\nJennie\nAnne\nMarguerite\nJeanette\nEddie\nEsther\nJane\nLela\nRoberta\nStella\nPearlie\nVerna\nCarolyn\nEffie\nGeraldine\nNina\nBlanche\nGracie\nGussie\nLeona\nCleo\nFrancis\nMollie\nNaomi\nReba\nFlossie\nMaxine\nMelba\nCallie\nEarline\nErnestine\nLessie\nLila\nWinnie\nHilda\nOphelia\nImogene\nNannie\nNorma\nOdessa\nSybil\nIrma\nRuthie\nCorine\nSue\nEtta\nMaudie\nMavis\nQueen\nBettie\nCharlotte\nElnora\nIla\nLue\nMarion\nMillie\nTheresa\nEra\nAdell\nBarbara\nBertie\nEstella\nLou\nMittie\nRobbie\nSally\nTommie\nBillie\nClarice\nEmily\nFrankie\nIola\nIva\nJune\nMyra\nAllie\nCharlie\nCornelia\nDessie\nJannie\nRubye\nEstell\nMyrtice\nAnita\nEllie\nIna\nJohnie\nKate\nMiriam\nEarnestine\nEliza\nJosie\nHenrietta\nLydia\nMaude\nSibyl\nVirgie\nAline\nClaudia\nElaine\nElma\nEvie\nLeila\nLenora\nLinnie\nRosetta\nDollie\nFlorine\nGwendolyn\nMay\nMyrtis\nOlivia\nRena\nShirley\nDorthy\nErma\nEster\nLee\nLonnie\nLora\nMargret\nMerle\nMozelle\nArtie\nBennie\nClaudie\nEugenia\nJoyce\nLettie\nLuella\nMadge\nOdell\nPolly\nSyble\nSylvia\nWilla\nAmanda\nElouise\nMazie\nRosalie\nRosemary\nAileen\nAnnette\nAugusta\nConnie\nDovie\nExie\nHannah\nOma\nPeggy\nZelma\nAvis\nBobbie\nCassie\nCelia\nElva\nGenevieve\nJettie\nLelia\nLinda\nLorena\nLudie\nLura\nMatilda\nPinkie\nRita\nRubie\nSavannah\nVictoria\nWillene\nAbbie\nAmy\nFay\nGertha\nInell\nIsabelle\nJanice\nLennie\nLetha\nLilly\nLorine\nLovie\nLucinda\nNadine\nNeva\nSelma\nAmelia\nEarlene\nEaster\nHarriet\nIdell\nJeanne\nLuvenia\nSammie\nAdelaide\nAlene\nAudie\nCaroline\nFlorene\nGeorgie\nGertie\nJanet\nLera\nLily\nMadeline\nMagdalene\nMandy\nMarian\nMyrtie\nOlene\nPatricia\nRoxie\nTheo\nTressie\nVoncile\nClemmie\nCorene\nCorrie\nDonnie\nFreddie\nIona\nJames\nLaverne\nLoraine\nLorraine\nMadie\nMagnolia\nOuida\nOzell\nQueenie\nRossie\nSusan\nTrudie\nVergie\nVerla\nVernell\nWillodean\nAllene\nBirdie\nClyde\nCorinne\nDixie\nDonna\nDorothea\nElvie\nElvira\nEmmer\nErline\nEther\nFloy\nFreda\nGoldie\nHester\nIdella\nIris\nJaunita\nJonnie\nJuliette\nMammie\nOssie\nPatsy\nPriscilla\nRilla\nSudie\nVida\nVinnie\nZella\nAggie\nAlta\nArlene\nBirtha\nBula\nBulah\nCarol\nCreola\nDelois\nDimple\nEmmie\nGaynell\nGeorge\nJoe\nLavada\nLida\nLona\nLouella\nLyda\nMacie\nMaebell\nMozell\nNola\nOzella\nPearline\nRetha\nRosia\nTessie\nUna\nVada\nWanda\nAdele\nArie\nAurelia\nCathrine\nCecil\nCeola\nClaudine\nConstance\nCynthia\nDorris\nEdwina\nElisabeth\nEuna\nFaye\nJoan\nKathrine\nLavinia\nLoree\nLouvenia\nMalinda\nMarilyn\nMaud\nMayme\nMuriel\nNovella\nOlga\nPluma\nRessie\nRosalee\nSophia\nTheda\nTiny\nVertie\nVicie\nYvonne\nZelda\nAlmeda\nAlmeta\nAngie\nAnnabelle\nBrownie\nBuna\nCecile\nChristeen\nChristina\nClementine\nDannie\nDelia\nDelores\nDona\nEdythe\nElna\nErin\nEtha\nFrancies\nGloria\nHarriett\nHellen\nHilma\nIra\nIsabel\nIzora\nJamie\nJo\nJulie\nKattie\nKitty\nLeo\nLeslie\nLeta\nLiza\nLoretta\nLossie\nLoyce\nLuciel\nMargarette\nMaurine\nNan\nNila\nOcie\nOlive\nOmie\nPhoebe\nRegina\nRochelle\nTempie\nVassie\nVeola\nVernie\nWilda\nWilliam\nZora\nAdelle\nAlpha\nAlvie\nAmie\nAmmie\nAnice\nAra\nArline\nArnell\nArrie\nAudra\nAugustine\nBelle\nBeryl\nBettye\nCapitola\nCharity\nChloe\nClaire\nClora\nDelphia\nDera\nDolly\nDolores\nDortha\nEather\nElene\nElinor\nEthelene\nEver\nExa\nEzell\nEzelle\nGeorgena\nGeorgiana\nGladis\nHassie\nHelon\nIrine\nJanette\nJeanie\nJeannette\nJohn\nJohnny\nJossie\nJoy\nKay\nLeora\nLilie\nLilla\nLorean\nLouisa\nLucie\nMadgie\nMallie\nMarget\nMaria\nMelissa\nMelva\nMelvina\nMertice\nMertie\nMissouri\nMontez\nNona\nOdie\nOrene\nOrlean\nPansy\nPhyllis\nRobert\nRubbie\nSelena\nTennie\nVennie\nVerdell\nVernice\nVesta\nVina\nWillard\nWilmer\nWynelle\nZettie\nMary\nAnnie\nDorothy\nWillie\nMargaret\nMildred\nRuby\nLouise\nRuth\nFrances\nHelen\nGladys\nSarah\nMattie\nElizabeth\nMartha\nLillie\nVirginia\nEvelyn\nEdna\nEthel\nDoris\nMinnie\nHazel\nBessie\nAlice\nMarie\nLois\nEmma\nJessie\nBertha\nPauline\nThelma\nClara\nLillian\nLucille\nCarrie\nIda\nNellie\nBernice\nIrene\nJulia\nCatherine\nMyrtle\nEdith\nFannie\nElla\nLula\nEssie\nEva\nLaura\nMamie\nBeatrice\nVera\nSara\nAlma\nGrace\nJohnnie\nLucile\nChristine\nHattie\nInez\nRosa\nGeneva\nMarjorie\nAnna\nCora\nKatherine\nSusie\nVelma\nLucy\nRosie\nEunice\nEula\nJosephine\nKatie\nMable\nJuanita\nBetty\nFlorence\nAudrey\nFlora\nEloise\nGeorgia\nGertrude\nMae\nMaggie\nMargie\nOpal\nLena\nLorene\nVivian\nAlberta\nNancy\nNell\nAgnes\nDaisy\nElsie\nOla\nJewell\nPearl\nSallie\nLola\nNettie\nAddie\nJewel\nLizzie\nOllie\nViola\nJean\nEsther\nGeraldine\nKathleen\nMabel\nEstelle\nOra\nDora\nKathryn\nRose\nSadie\nAda\nLela\nBonnie\nEllen\nWilma\nCarolyn\nEleanor\nRebecca\nJimmie\nLeola\nLottie\nAnn\nStella\nJanie\nErnestine\nJane\nMarion\nNora\nRoberta\nMarguerite\nGussie\nPearlie\nRachel\nNorma\nBeulah\nGracie\nLessie\nViolet\nJeanette\nCallie\nMavis\nCleo\nSybil\nWinnie\nEarline\nJennie\nLeona\nNina\nAnne\nBlanche\nEffie\nIla\nMelba\nEddie\nEmily\nIrma\nMaxine\nBillie\nFlossie\nHilda\nNaomi\nTommie\nReba\nVerna\nNannie\nRobbie\nAllie\nBarbara\nEstella\nFrancis\nIna\nMay\nMollie\nMyrtice\nEtta\nImogene\nMyra\nOdessa\nRosetta\nSally\nCorine\nLila\nRuthie\nFrankie\nOlivia\nBobbie\nJosie\nKate\nDessie\nFaye\nHenrietta\nOdell\nElaine\nErma\nOphelia\nAline\nBettie\nGwendolyn\nLou\nMillie\nMiriam\nSue\nVirgie\nDollie\nLorine\nSylvia\nVoncile\nDorthy\nEarnestine\nEra\nJune\nLelia\nLora\nRubye\nSyble\nTressie\nDella\nFreddie\nGertha\nJoyce\nMaudie\nMozell\nTheresa\nVictoria\nAmanda\nClaudia\nCornelia\nElnora\nEvie\nGloria\nLydia\nMittie\nAugusta\nCharlie\nConnie\nJannie\nLinnie\nQueen\nShirley\nAdell\nAmy\nCassie\nDovie\nEstell\nIva\nLee\nMerle\nBertie\nCharlotte\nEliza\nEugenia\nHannah\nLorraine\nMuriel\nNadine\nPeggy\nRena\nRosalie\nIona\nMyrtis\nRubie\nWillodean\nAlta\nAnita\nEmmie\nJohnie\nLeila\nLetha\nLily\nLucinda\nMadeline\nMaude\nMozelle\nPatricia\nPolly\nRoxie\nSusan\nUna\nAmelia\nFay\nFlorene\nGertie\nIdell\nIola\nLudie\nRita\nSibyl\nWanda\nZora\nBirdie\nClarice\nCorene\nElma\nEster\nFlorine\nHarriet\nJoe\nLettie\nMagnolia\nMandy\nMargarette\nMarian\nOma\nOuida\nDixie\nEdwina\nGeorgie\nHester\nIris\nLenora\nLera\nLue\nMadge\nMyrtie\nRetha\nTessie\nTrudie\nWilla\nBennie\nBettye\nCelia\nClaudie\nConstance\nEarlene\nEarlie\nEaster\nGeorge\nJeanne\nLavada\nLonnie\nMaurine\nMelva\nNola\nNona\nPearline\nPinkie\nVerla\nYvonne\nAileen\nAlyce\nArrie\nBerniece\nBerta\nCaroline\nClaire\nClemmie\nClyde\nDorris\nGaynell\nGlennie\nIdella\nIra\nJames\nLilly\nLoretta\nLuella\nLurline\nMargret\nOzella\nOzie\nRosia\nWilda\nWillene\nAlpha\nAlva\nCorinne\nElise\nGenevieve\nHellen\nHellon\nJanet\nJo\nJudy\nJuliette\nLennie\nLoraine\nLouella\nLovie\nLuverne\nMadie\nMazie\nMolly\nOlene\nQueenie\nRessie\nRhoda\nRosalee\nRosemary\nRossie\nVada\nVernell\nWinifred\nAltha\nAnnette\nCarol\nDelia\nDessa\nEileen\nEllie\nElna\nElouise\nElva\nFlorida\nFloy\nGennie\nHettie\nInell\nJanice\nJaunita\nKathrine\nKattie\nLona\nLorena\nLuna\nMagdalene\nMissouri\nNelle\nOctavia\nOlive\nOmie\nOssie\nPhyllis\nSelma\nVernie\nWinona\nZelma\nAbbie\nAdelle\nAlene\nAllene\nAudie\nAudra\nBama\nCathrine\nCecile\nCeola\nDolores\nEdythe\nElinor\nElmira\nElois\nErin\nGoldie\nHarriett\nHelon\nIrine\nJackie\nJohn\nJonnie\nJustine\nLaurie\nLeora\nLouisa\nLouvenia\nLura\nMariah\nNita\nNovella\nOlean\nOleta\nOzell\nPatsy\nRegina\nSavannah\nVenice\nViva\nWillodene\nZadie\nZola\nAdeline\nAlean\nAlfreda\nAngeline\nAnnabelle\nArtie\nBlondell\nCharlsie\nClifford\nCorrie\nCreola\nDimple\nDortha\nEthelyn\nExie\nFreida\nHazle\nIsabel\nIsabelle\nJacqueline\nLady\nLassie\nLaverne\nLeatha\nLeslie\nLinda\nMalissa\nMatilda\nOttie\nPansy\nPrincess\nRobert\nSophia\nTheo\nVerbie\nVergie\nVida\nZera\nZettie\nZula\nAdelaide\nAdele\nAlthea\nArie\nArlene\nArline\nAugustine\nAurelia\nAvis\nBlanch\nBuna\nCathryn\nChaney\nClarine\nCleola\nCordelia\nCorrine\nDean\nDelilah\nDellar\nDelma\nDelores\nDolly\nDona\nDorothea\nEarlean\nEldora\nElvie\nEmogene\nErline\nEsta\nFlorrie\nFrancine\nFreda\nHelene\nHortense\nIlene\nIma\nIvy\nJettie\nJoanna\nLoree\nLucretia\nLuvenia\nMacie\nMalinda\nMammie\nMarcella\nMargarett\nMargrette\nMarilyn\nMarylou\nMaxie\nMozella\nMyrle\nNelda\nNeva\nOcie\nOda\nPriscilla\nRosebud\nSammie\nSula\nTennie\nTina\nTrannie\nValeria\nVassie\nVeda\nVenie\nVerlie\nVerma\nVernice\nVesta\nVina\nVona\nZella\nMary\nAnnie\nDorothy\nWillie\nMargaret\nRuby\nMildred\nLouise\nHelen\nFrances\nRuth\nMattie\nElizabeth\nSarah\nLillie\nMartha\nEvelyn\nEdna\nVirginia\nGladys\nMinnie\nEthel\nEmma\nDoris\nBessie\nHazel\nLois\nMarie\nAlice\nJessie\nElla\nBertha\nLillian\nLucille\nFannie\nIrene\nCarrie\nClara\nThelma\nPauline\nHattie\nRosie\nRosa\nSara\nNellie\nIda\nEdith\nLula\nCatherine\nMyrtle\nInez\nJuanita\nBernice\nBeatrice\nJulia\nJohnnie\nFlorence\nEva\nVera\nBetty\nMamie\nAnna\nSusie\nFlora\nAlma\nMarjorie\nLaura\nJosephine\nEunice\nGrace\nKatherine\nLucile\nKatie\nEula\nMargie\nVelma\nCora\nEssie\nLucy\nMaggie\nGertrude\nAgnes\nVivian\nChristine\nMae\nGeneva\nMable\nGeorgia\nLorene\nElsie\nOpal\nDaisy\nLena\nOla\nJewel\nEloise\nOllie\nOra\nKathleen\nNettie\nAddie\nViola\nPearl\nAda\nSallie\nJewell\nRose\nWilma\nLola\nLizzie\nNancy\nMabel\nAudrey\nEsther\nSadie\nNell\nEstelle\nJimmie\nEleanor\nAlberta\nRebecca\nGeraldine\nLeola\nEllen\nCarolyn\nNora\nDora\nStella\nJean\nMarguerite\nJanie\nLottie\nMarion\nBonnie\nEddie\nEffie\nEmily\nImogene\nErnestine\nLela\nNannie\nJeanette\nKathryn\nRachel\nAnn\nBlanche\nMaxine\nPearlie\nEarline\nGussie\nLessie\nCallie\nAllie\nMyra\nNorma\nOdessa\nRoberta\nBillie\nNaomi\nBeulah\nFrancis\nHilda\nJane\nAnne\nBarbara\nCleo\nFlossie\nIva\nVerna\nBettie\nEstella\nSue\nWinnie\nGracie\nRobbie\nCharlotte\nMelba\nOlivia\nReba\nEra\nOphelia\nQueen\nFrankie\nJennie\nLeona\nSybil\nDella\nJannie\nMaudie\nMavis\nNina\nGloria\nLila\nOdell\nRuthie\nPeggy\nTommie\nCorine\nEliza\nElnora\nErma\nRosetta\nEtta\nIla\nJohnie\nLorine\nMillie\nMyrtice\nClaudia\nIrma\nLou\nMerle\nViolet\nAmanda\nFaye\nHenrietta\nMiriam\nDorthy\nEstell\nHester\nJoyce\nLorraine\nLydia\nVoncile\nBennie\nDollie\nFreddie\nLee\nLelia\nSylvia\nAugusta\nCelia\nElma\nEugenia\nJune\nRena\nSally\nDessie\nElaine\nElouise\nFay\nFlorine\nJosie\nMay\nMittie\nMozell\nPatricia\nRubye\nTheresa\nWanda\nCornelia\nGwendolyn\nHannah\nLeila\nMarian\nSyble\nWilla\nZelma\nAdell\nBobbie\nDixie\nIna\nMollie\nNola\nPolly\nVirgie\nAnnette\nBertie\nBirdie\nClaudie\nHarriet\nIola\nLenora\nLinnie\nMyrtis\nAnita\nEarnestine\nEvie\nJettie\nLue\nMaude\nMozelle\nRosalie\nCharlie\nClarice\nEarlene\nGertha\nInell\nIris\nDovie\nEaster\nGeorgie\nIdell\nKate\nKattie\nLora\nLucinda\nLuella\nMatilda\nMazie\nRubie\nSusan\nAmy\nCassie\nClyde\nEllie\nEster\nGenevieve\nJacqueline\nMandy\nMuriel\nNadine\nWinifred\nArtie\nAvis\nEmmie\nLaverne\nNona\nOuida\nSibyl\nVernell\nAileen\nAline\nAlta\nCharles\nConnie\nDonnie\nFlorene\nJo\nJohn\nLennie\nMadeline\nMargret\nMarilyn\nOlene\nWilda\nAlva\nAudie\nCorene\nDelia\nJanet\nLovie\nMadie\nOma\nPatsy\nPearline\nPinkie\nRoxie\nZula\nArlene\nCarol\nCreola\nCynthia\nEdwina\nGertie\nGlennie\nHallie\nJames\nJonnie\nLinda\nLouella\nLuvenia\nMadge\nMagnolia\nMayme\nMyrl\nOzell\nRosia\nSammie\nSelma\nTheo\nWillene\nWillodean\nZora\nAdelle\nAlpha\nArrie\nCaroline\nCorrine\nDorris\nElva\nFloy\nGeorge\nIdella\nIra\nJoan\nJuliette\nLilly\nLouisa\nLudie\nLura\nMarcella\nMaudine\nMaurine\nNan\nOlean\nPhyllis\nTessie\nVesta\nAbbie\nAlene\nAllene\nAmelia\nBettye\nClaudine\nDolly\nElise\nFanny\nIlean\nJanice\nJudy\nLera\nLetha\nLurline\nMariah\nMarietta\nMyrtie\nOcie\nOlga\nShirley\nTennie\nVersie\nVictoria\nVida\nArvie\nCeola\nClassie\nCorrie\nDelilah\nEdythe\nElvie\nEmogene\nHettie\nIlene\nIma\nIona\nJaunita\nJinnie\nJoe\nKatheryn\nLily\nLonnie\nLorena\nLoretta\nMacie\nMaebell\nMallie\nMammie\nMargarett\nNatalie\nNeva\nNovella\nOlive\nOvell\nOzella\nParalee\nRetha\nTula\nUna\nVernice\nVernie\nYvonne\nAdele\nAlvie\nAnnis\nAra\nAva\nBlanchie\nCamilla\nCecelia\nClaire\nClora\nCordie\nDonna\nEarlie\nElinor\nElisabeth\nElvira\nErline\nEudora\nEulean\nEuna\nEzell\nGaynell\nGene\nHazle\nHenry\nIsabell\nIsabelle\nJeanne\nJohnny\nKathrine\nKathryne\nLavada\nLettie\nMalinda\nMargarette\nMarveline\nOctavia\nOmie\nOrene\nOzelle\nOzie\nPearlean\nPluma\nPriscilla\nRessie\nRita\nRosalee\nRosemary\nRossie\nSophia\nTressie\nTrudie\nVinnie\nWynell\nZola\nAdelaide\nAdelia\nAlyce\nAngeline\nAngie\nArcola\nArline\nArnell\nArthur\nAudry\nBama\nBerniece\nBerta\nBirtha\nCathryn\nCharlene\nCorinne\nCumi\nDelma\nDelphine\nDimple\nDolores\nDorotha\nDorothea\nDura\nElois\nEria\nErin\nEthelene\nEtter\nFairy\nFreda\nGirtha\nHarriett\nHellen\nHelon\nHenretta\nHildred\nIrine\nJamie\nJossie\nJuliet\nLavern\nLavonia\nLeslie\nLonie\nLouvenia\nLoyce\nLuetta\nLurlene\nMaple\nMarylou\nMaud\nMelissa\nMolly\nMontez\nNelda\nNelma\nNeoma\nNita\nOdelle\nOssie\nPeggie\nRheba\nTheda\nVada\nVeola\nVermell\nVonceil\nWalter\nWenona\nWillia\nZella\nMary\nAnnie\nDorothy\nWillie\nMargaret\nMildred\nRuby\nLouise\nRuth\nHelen\nFrances\nMattie\nMartha\nEvelyn\nSarah\nElizabeth\nLillie\nDoris\nGladys\nVirginia\nEmma\nEdna\nEthel\nLois\nMinnie\nClara\nLillian\nHazel\nMarie\nBessie\nThelma\nLucille\nJuanita\nAlice\nLula\nCatherine\nNellie\nJessie\nPauline\nFannie\nBertha\nCarrie\nBernice\nSara\nIda\nIrene\nBetty\nElla\nHattie\nMyrtle\nVera\nEdith\nJohnnie\nAlma\nRosie\nEva\nSusie\nBeatrice\nLaura\nMarjorie\nJulia\nRosa\nMae\nMaggie\nChristine\nMamie\nCora\nJosephine\nAnna\nInez\nLucile\nKatherine\nEssie\nElsie\nEula\nGrace\nMargie\nOpal\nFlora\nDaisy\nEloise\nGertrude\nLorene\nVelma\nGeorgia\nLucy\nFlorence\nEunice\nMable\nWilma\nKathleen\nVivian\nKatie\nGeneva\nJean\nLena\nGeraldine\nAgnes\nJewel\nNell\nRebecca\nSallie\nNettie\nSadie\nMabel\nAlberta\nOllie\nViola\nLizzie\nOra\nCarolyn\nLola\nNancy\nOla\nAddie\nJewell\nAnn\nBonnie\nKathryn\nLela\nStella\nAda\nAudrey\nDora\nJane\nPearl\nBeulah\nEsther\nEstelle\nLottie\nRose\nJanie\nNora\nEllen\nAnne\nLeola\nEddie\nGloria\nJimmie\nRachel\nEleanor\nEmily\nMelba\nEarline\nMarguerite\nMavis\nDella\nReba\nNorma\nPearlie\nLila\nCleo\nJeanette\nSybil\nCallie\nHilda\nImogene\nMarion\nErnestine\nBarbara\nIla\nMiriam\nMaxine\nNaomi\nBillie\nGussie\nJosie\nLeona\nNannie\nGracie\nEliza\nIrma\nJune\nOdessa\nPeggy\nRoberta\nRuthie\nVerna\nCorine\nBettie\nEffie\nJennie\nMay\nWinnie\nAllie\nClaudia\nOlivia\nOphelia\nErma\nGwendolyn\nLessie\nNina\nOdell\nRobbie\nAdell\nFrancis\nFrankie\nHenrietta\nMyra\nViolet\nIva\nJannie\nRosetta\nCharlotte\nEarnestine\nEstella\nQueen\nAmanda\nClarice\nElnora\nFaye\nFlossie\nIna\nRubye\nSylvia\nWilla\nDessie\nJoyce\nMerle\nMyrtice\nBlanche\nMaudie\nSyble\nDollie\nElouise\nMillie\nMyrtis\nVirgie\nBobbie\nEtta\nJohnie\nLue\nPolly\nSue\nEster\nLee\nLou\nRena\nWanda\nAlta\nDixie\nMollie\nDorthy\nEarlene\nEvie\nMozell\nShirley\nTommie\nZelma\nElma\nEra\nFlorine\nIdella\nIola\nIris\nJames\nLoretta\nMaude\nMittie\nPatricia\nAbbie\nAnita\nAugusta\nEugenia\nJacqueline\nLinnie\nLora\nLovie\nLydia\nPinkie\nRita\nSally\nWillodean\nBennie\nCelia\nConnie\nLudie\nMuriel\nNadine\nNovella\nRubie\nAmy\nBirdie\nCharlie\nElva\nFay\nFreddie\nGeorgie\nGertie\nLelia\nLera\nLily\nLorine\nWinifred\nAnnette\nBertie\nCarol\nDovie\nHannah\nKate\nKattie\nLenora\nMarilyn\nRosemary\nVoncile\nAvis\nBettye\nCassie\nElaine\nEris\nHarriet\nInell\nJoy\nLeila\nLuella\nMadeline\nPearline\nRosalie\nSelma\nAline\nCorrine\nDorris\nEllie\nElvira\nFloy\nGennie\nGoldie\nIlene\nJo\nLaverne\nLeslie\nLorraine\nLuvenia\nMargret\nMarian\nMatilda\nNola\nRosia\nRoxie\nTessie\nAileen\nCorene\nCornelia\nEstell\nFreda\nHettie\nJanet\nJaunita\nMadge\nMalinda\nMyrtie\nOlene\nOlive\nSusan\nTheresa\nAllene\nArline\nAudie\nCeola\nDelia\nFlorene\nIma\nIra\nIsabelle\nJeannette\nLilla\nLinda\nLucinda\nLuna\nMandy\nMargarett\nMaria\nNona\nOuida\nOzell\nPatsy\nRessie\nVernice\nWilda\nWynell\nZella\nZula\nAdelle\nAlene\nAva\nBama\nConstance\nCordelia\nDolly\nEldora\nElmira\nEthelene\nEulene\nGenevieve\nIsabell\nJanice\nJeanne\nJettie\nJoe\nJohn\nJonnie\nLetha\nLettie\nMagdalene\nMaurine\nMazie\nOctavia\nOma\nRowena\nTennie\nAmelia\nArlene\nBerniece\nCaroline\nClaudie\nClemmie\nDelois\nGlennie\nHarriett\nHellen\nHester\nIsabella\nKathrine\nLevonia\nLorena\nMadie\nMagnolia\nMozelle\nOssie\nPhyllis\nRachael\nTressie\nTula\nYvonne\nAngie\nBeverly\nBurma\nCathrine\nCathryn\nCecil\nChristeen\nClaire\nDean\nDelma\nDolores\nEarlean\nEdwina\nElease\nEvelyne\nHildred\nIdell\nJackie\nJamie\nLoraine\nLouella\nLura\nMaple\nMarcella\nMargarette\nMariah\nMaud\nMaudine\nMyrl\nNelda\nRobert\nRosebud\nTheda\nVerdell\nVergie\nVictoria\nVinnie\nViva\nWilhelmina\nWillene\nWinona\nAdelaide\nAlpha\nAlva\nAlyce\nAmie\nArtie\nAudra\nCecile\nCelestine\nCharline\nClary\nClyde\nCreola\nCynthia\nDelores\nDonnie\nElinor\nEmmer\nEmmie\nEmogene\nErin\nGaynell\nGeorge\nGladis\nJacquelyn\nJuliette\nLeatha\nLennie\nLilly\nLittie\nLiza\nLonie\nLurline\nMacie\nMammie\nMargrett\nMaxie\nMayme\nMelva\nMertie\nMinerva\nOrlean\nOttie\nOzella\nPearlene\nPrince\nRegina\nSammie\nVella\nVerdie\nVerla\nVernell\nVesta\nVida\nWilliam\nZora\nAlfreda\nAlthea\nAngeline\nAra\nArdell\nArrie\nAzzie\nBess\nBette\nBirtha\nBlanch\nBobby\nBuelah\nBuna\nBurnice\nCatharine\nCecelia\nClassie\nColleen\nDeloris\nDonna\nDorothea\nEdythe\nEileen\nElizebeth\nElmer\nEther\nEulalia\nEverlean\nExie\nGeorgette\nGertha\nHenretta\nIcie\nIzola\nJeane\nJerry\nJudy\nKitty\nLavada\nLelar\nLexie\nLona\nLonnie\nLouie\nLouvenia\nLuecile\nMadelyn\nMarietta\nMarlene\nMarry\nMazell\nMelinda\nMelvina\nMissie\nNelle\nNova\nOdean\nParalee\nPat\nPeggie\nPriscilla\nQueenie\nRetha\nRosalee\nRoy\nRubbie\nSavannah\nSophia\nSydney\nTheo\nVerlon\nVersie\nVester\nVicie\nVina\nWalter\nZenobia\nMary\nAnnie\nDorothy\nMargaret\nMildred\nRuby\nWillie\nRuth\nHelen\nLouise\nFrances\nDoris\nSarah\nMattie\nElizabeth\nMartha\nVirginia\nEdna\nEvelyn\nLillie\nGladys\nLois\nEthel\nBessie\nHazel\nEmma\nMinnie\nBernice\nBetty\nJessie\nAlice\nClara\nThelma\nMarie\nLillian\nJuanita\nSara\nCatherine\nNellie\nPauline\nEdith\nElla\nIda\nBertha\nFannie\nLula\nRosie\nCarrie\nIrene\nJulia\nLucille\nEva\nBeatrice\nJohnnie\nHattie\nMamie\nVera\nGrace\nMyrtle\nVelma\nInez\nKatie\nMargie\nChristine\nJosephine\nEunice\nMaggie\nSusie\nLaura\nElsie\nRosa\nMarjorie\nGeorgia\nFlora\nAlma\nMae\nAnna\nKatherine\nEssie\nEloise\nEula\nLucile\nJean\nCora\nOpal\nAnn\nLucy\nVivian\nKathleen\nAgnes\nDaisy\nGertrude\nMable\nJewel\nLorene\nGeneva\nFlorence\nViola\nLola\nOra\nWilma\nSallie\nAlberta\nGeraldine\nEleanor\nLena\nNancy\nRebecca\nMabel\nBarbara\nNell\nJewell\nKathryn\nOla\nLizzie\nAddie\nCarolyn\nImogene\nJane\nLela\nRose\nAda\nBonnie\nPearl\nStella\nAudrey\nJanie\nNettie\nOllie\nRachel\nEllen\nSadie\nBillie\nNorma\nEarline\nEsther\nDora\nMarion\nEddie\nGloria\nHilda\nBeulah\nErnestine\nMaxine\nJimmie\nEstelle\nGracie\nPeggy\nRoberta\nAnne\nCleo\nNora\nJoyce\nLeola\nReba\nElnora\nMavis\nMelba\nEffie\nLottie\nNaomi\nNina\nJeanette\nPearlie\nFrancis\nLeona\nMarguerite\nTommie\nViolet\nEmily\nEstella\nFlossie\nRuthie\nJune\nLessie\nQueen\nSue\nWinnie\nCallie\nOdessa\nRobbie\nCorine\nGussie\nJennie\nOphelia\nBettie\nDella\nFrankie\nVirgie\nLila\nBobbie\nPatricia\nWanda\nCharlotte\nHenrietta\nMiriam\nBlanche\nDollie\nMollie\nShirley\nSybil\nErma\nIla\nJannie\nJosie\nMyra\nIrma\nMay\nMyrtice\nMyrtis\nVerna\nAugusta\nClaudia\nDorthy\nEra\nLelia\nMaudie\nNannie\nAllie\nEarnestine\nEliza\nEtta\nLue\nDessie\nElouise\nLydia\nMillie\nSally\nTheresa\nWillodean\nBertie\nJeanne\nJohnie\nMuriel\nOdell\nOlivia\nRubye\nAdell\nCharlie\nElaine\nGwendolyn\nIva\nLee\nLeila\nLou\nMittie\nSyble\nSylvia\nVoncile\nAmanda\nClarice\nFaye\nHannah\nJames\nLora\nMatilda\nRosetta\nWilla\nAline\nElma\nJacqueline\nLuella\nMozell\nAmy\nDixie\nLorine\nRoxie\nZelma\nCorene\nEarlene\nEstell\nEster\nEvie\nInell\nMadie\nMaude\nMaurine\nNadine\nBeverly\nCornelia\nFreddie\nJaunita\nLoretta\nLorraine\nMarilyn\nPhyllis\nPinkie\nAnnette\nBennie\nCeola\nConnie\nEugenia\nFay\nGeorgie\nHester\nIris\nJohn\nMerle\nMozelle\nVernell\nVictoria\nAvis\nBirdie\nEllie\nFlorine\nJo\nLoraine\nOuida\nRena\nSelma\nAlta\nAnita\nCarol\nCassie\nDelores\nDorris\nDovie\nEmogene\nHellen\nIdell\nIma\nIna\nIola\nKate\nLettie\nLonnie\nLudie\nMadeline\nMargarette\nMarian\nNona\nClaudine\nCreola\nEarlean\nEaster\nEmmie\nErline\nJanice\nLenora\nMadge\nMargret\nMazie\nOma\nRosia\nAileen\nBerniece\nBettye\nCaroline\nCathrine\nCecil\nClaudie\nDelia\nJoan\nJoy\nKattie\nLaverne\nLily\nLorena\nLovie\nNelda\nNola\nPolly\nRetha\nRubie\nSammie\nSavannah\nAbbie\nAmelia\nAmie\nArtie\nBette\nCelia\nDorothea\nGoldie\nHarriet\nHarriett\nJanet\nLilly\nLinnie\nLouella\nLucinda\nLura\nMandy\nMaudine\nOtha\nTressie\nVesta\nWinifred\nAlva\nCherry\nConstance\nDolly\nEdwina\nElise\nEvelyne\nIsabell\nJerry\nJettie\nMammie\nMaureen\nRosalie\nWillia\nWillow\nZettie\nZola\nArvie\nBulah\nCharlene\nCorrine\nCynthia\nDonnie\nEmmer\nFlorene\nGay\nGennie\nGlenda\nJoe\nLera\nLinda\nLona\nLoree\nLoyce\nMarcella\nMargarett\nMargrett\nMaxie\nMontez\nOcie\nOzell\nPatsy\nPriscilla\nRessie\nRita\nTempie\nUna\nVida\nWilladean\nYvonne\nZella\nAlmeda\nAlyce\nBlanch\nClaire\nCorinne\nElinor\nElva\nElvira\nFreida\nGertha\nGertie\nHelon\nIdella\nIvy\nJonnie\nKathrine\nLennie\nLetha\nLouvenia\nLuvenia\nMagnolia\nMyrl\nMyrle\nMyrtie\nNovella\nOdie\nOlga\nOzella\nOzie\nPansy\nQueenie\nRosemary\nSophia\nSusan\nTiny\nValeria\nVernice\nVerta\nWinona\nAdele\nAlene\nAllene\nAra\nArdella\nArlene\nArnell\nAvie\nAzzie\nBobby\nCelestine\nCharles\nCharlsie\nChristeen\nChristene\nClyde\nColleen\nDannie\nDimple\nDonna\nDortha\nDura\nEdythe\nElmira\nElois\nEuna\nEura\nExie\nGenevieve\nGlennie\nHazle\nHenry\nIlene\nIsabelle\nJacquelyn\nJoann\nJudith\nJuliette\nLavada\nLilla\nLyda\nMaebell\nMariah\nMissouri\nMolly\nOlive\nOmie\nPatty\nPearline\nPennie\nRutha\nVassie\nVeda\nVergie\nVerma\nVonceil\nWilda\nWillodene\nWilmer\nAllean\nAlpha\nAnice\nAnnabelle\nArie\nAudie\nAudry\nAva\nBama\nBelle\nBernell\nBilly\nCarlene\nCecelia\nCecile\nChristina\nClemmie\nCleola\nCorrie\nDean\nDelois\nEarlie\nElisabeth\nElmer\nElna\nEulene\nFloretta\nFloy\nGearldine\nGeorge\nHallie\nHassie\nHelene\nHessie\nHettie\nHildred\nIcie\nIona\nIrean\nJanett\nJeannette\nJeffie\nJudy\nKatharine\nLealer\nLeatha\nLelar\nLeo\nLeslie\nMadgie\nMagdalene\nMalinda\nMargene\nMargery\nMaria\nMaud\nMaurice\nMayme\nMelva\nMertie\nMozella\nNeva\nOrene\nOvella\nPecola\nRossie\nRuther\nTeresa\nVada\nVeola\nVerner\nVester\nVinnie\nViva\nWilliam\nWynell\nZelda\nZora\nMary\nAnnie\nDorothy\nWillie\nMildred\nMargaret\nRuby\nLouise\nHelen\nRuth\nFrances\nDoris\nMartha\nEvelyn\nMattie\nSarah\nElizabeth\nLillie\nVirginia\nEdna\nBetty\nEthel\nGladys\nLois\nHazel\nBessie\nEmma\nAlice\nMinnie\nLillian\nCarrie\nBertha\nJuanita\nPauline\nMarie\nJessie\nThelma\nClara\nFannie\nNellie\nJohnnie\nBernice\nLula\nCatherine\nIda\nElla\nLucille\nSara\nHattie\nMyrtle\nJulia\nEdith\nInez\nRosie\nRosa\nVera\nEva\nIrene\nLaura\nMamie\nSusie\nChristine\nAnna\nBeatrice\nMarjorie\nMargie\nEunice\nLucile\nKatherine\nJosephine\nKatie\nOpal\nMaggie\nGeorgia\nGrace\nLucy\nMae\nAlma\nFlorence\nJean\nAlberta\nEloise\nMable\nVelma\nVivian\nWilma\nEssie\nCora\nGloria\nJewel\nGeneva\nGertrude\nAnn\nFlora\nAgnes\nImogene\nSallie\nRose\nOla\nGeraldine\nLorene\nLena\nEula\nViola\nElsie\nKathleen\nNettie\nDaisy\nDora\nLizzie\nJimmie\nSadie\nBonnie\nLola\nCarolyn\nNancy\nAddie\nBarbara\nKathryn\nNell\nRebecca\nPearl\nBillie\nEleanor\nEstelle\nMavis\nOra\nAudrey\nEffie\nLeola\nEllen\nOllie\nMabel\nMarion\nNorma\nJane\nRachel\nJoyce\nEarline\nErnestine\nEsther\nLottie\nAda\nPearlie\nStella\nNora\nLela\nPeggy\nCallie\nGracie\nAnne\nBobbie\nDella\nHilda\nNaomi\nRoberta\nEddie\nBettie\nElnora\nJewell\nTommie\nLessie\nMaxine\nBeulah\nIrma\nJennie\nReba\nSybil\nVerna\nJanie\nCorine\nIla\nMelba\nRuthie\nJeanette\nQueen\nEmily\nJune\nLeona\nNina\nRobbie\nSue\nEliza\nFrancis\nOdessa\nDorthy\nOdell\nViolet\nClaudia\nGussie\nGwendolyn\nIva\nRosetta\nAllie\nElouise\nLila\nMollie\nCharlotte\nHenrietta\nWinnie\nEtta\nFaye\nSally\nErma\nMillie\nPearline\nSyble\nDollie\nFrankie\nLee\nLorine\nNannie\nEstella\nFlossie\nWillodean\nEarnestine\nFay\nJames\nMarguerite\nMyra\nPatricia\nSylvia\nBettye\nEra\nEster\nJohnie\nMiriam\nOphelia\nAmanda\nBlanche\nJosie\nMyrtice\nWilla\nEarlene\nLou\nOlivia\nRena\nWanda\nClarice\nEaster\nIna\nJeanne\nMerle\nMittie\nMyrtis\nNadine\nShirley\nAdell\nBertie\nCleo\nJannie\nLona\nLora\nMaudie\nVirgie\nAline\nAugusta\nClaudie\nJacqueline\nMarian\nAnita\nBennie\nCaroline\nCornelia\nIdell\nMargret\nMay\nRubye\nTheresa\nCelia\nEmogene\nFlorine\nJoy\nLoretta\nLue\nMadge\nMaude\nAmelia\nAmy\nFreddie\nIola\nIris\nLelia\nRosia\nTressie\nVoncile\nAlene\nConnie\nHannah\nLeila\nLenora\nLudie\nOma\nPolly\nRita\nCarol\nCassie\nCharlie\nDessie\nDonnie\nElaine\nGeorgie\nLinnie\nLydia\nMozell\nMuriel\nAbbie\nCharles\nDixie\nDolores\nDorothea\nEvie\nJettie\nLettie\nLovie\nRoxie\nYvonne\nZelma\nAlta\nAvis\nBirdie\nClaudine\nEstell\nEugenia\nJo\nNona\nPhyllis\nRosalie\nVernell\nVictoria\nWilliam\nZula\nClyde\nDean\nDelia\nDolly\nEdwina\nElma\nFlorene\nGertha\nJohn\nKate\nLexie\nLuella\nLuvenia\nMarilyn\nMaurine\nMozelle\nRetha\nRutha\nAlva\nAnnette\nCelestine\nCorene\nCreola\nDelores\nDovie\nEver\nHenry\nHester\nHortense\nInell\nJudy\nJulie\nKathrine\nLaverne\nLennie\nLetha\nLilly\nLorraine\nLurline\nMazie\nMyrtie\nOcie\nOlene\nOuida\nRobert\nRubie\nSammie\nSelma\nWillene\nAileen\nBerta\nCecil\nCorinne\nDortha\nEllie\nEmmie\nExie\nGene\nHarriet\nIlene\nIma\nJanice\nJeannette\nJerry\nKattie\nLeslie\nLorena\nMagdalene\nMatilda\nOlga\nOlive\nOzell\nPatsy\nPinkie\nBeverly\nCathrine\nCeola\nChristeen\nColleen\nDeloris\nElva\nFlorida\nGenevieve\nGeorge\nHettie\nIra\nIrine\nJackie\nJanet\nJoan\nJoanna\nJossie\nJuliette\nKitty\nLera\nLonnie\nLucinda\nMargarett\nNelda\nNola\nOssie\nOzie\nPansy\nQueenie\nRessie\nVerla\nVersie\nWilladean\nWillia\nAlpha\nAlyce\nArlena\nArlene\nAudie\nBerniece\nBirtha\nBlanch\nCharlene\nCherry\nConstance\nCynthia\nDannie\nDelma\nElvira\nEthelyn\nFloy\nGertie\nHildred\nJaunita\nJonnie\nJuliet\nLaurine\nLinda\nLouella\nLouvenia\nMagnolia\nMalinda\nMaria\nMaurice\nMolly\nOnnie\nPhoebe\nPriscilla\nRegina\nRosalee\nRosebud\nSavannah\nTheo\nTiny\nTrudie\nUna\nVada\nVida\nWilda\nWillard\nAlline\nCarmen\nChristene\nCliffie\nCorean\nCorrie\nCreasie\nDimple\nDorotha\nEarleen\nEdythe\nElinor\nElmira\nElna\nElois\nEmmer\nErie\nErline\nEthelene\nExa\nGenell\nHarriette\nIdella\nIvory\nJanette\nJoann\nLarue\nLeanna\nLily\nLonie\nLouisa\nMacie\nMaple\nMaud\nMaudine\nMyrl\nNella\nNovella\nOlean\nPearlene\nSusan\nTessie\nVergie\nVernice\nWinifred\nWinona\nWynell\nZella\nAgatha\nAllean\nAllene\nAlthea\nAngeline\nAngie\nArdelia\nArlean\nAudry\nBama\nBebe\nBurma\nCecile\nCharity\nCharlsie\nChina\nClassie\nClementine\nCorrine\nDelene\nDelphia\nDonna\nDorris\nDorthey\nEartha\nEvelyne\nGoldie\nIona\nIsabel\nJesse\nLeatrice\nLoraine\nLouie\nMadeline\nMadelyn\nMammie\nMandy\nMargarette\nMarget\nMayme\nMazell\nMozella\nMurline\nMyrle\nNan\nNatalie\nNeva\nOctavia\nOdie\nOmega\nOna\nOva\nOzella\nPatty\nPaula\nPernie\nRosalyn\nRosemary\nSible\nSibyl\nSimmie\nVela\nVertis\nVina\nWillow\nZola\nMary\nAnnie\nDorothy\nMargaret\nWillie\nMildred\nRuby\nFrances\nLouise\nHelen\nBetty\nDoris\nRuth\nMartha\nMattie\nElizabeth\nEvelyn\nSarah\nLillie\nEdna\nEthel\nVirginia\nGladys\nEmma\nMinnie\nClara\nHazel\nBessie\nMarie\nCatherine\nBernice\nJuanita\nAlice\nLois\nJessie\nThelma\nBertha\nSara\nNellie\nJohnnie\nLillian\nElla\nRosa\nIda\nLucille\nPauline\nRosie\nLula\nCarrie\nEdith\nMargie\nFannie\nIrene\nChristine\nMyrtle\nJulia\nBeatrice\nMamie\nHattie\nEva\nJean\nAlma\nLaura\nMae\nEunice\nEssie\nEula\nGeneva\nInez\nVera\nSusie\nKatie\nGrace\nGeorgia\nOpal\nAnna\nLucile\nMarjorie\nAgnes\nVivian\nEloise\nMable\nCora\nGertrude\nGeraldine\nVelma\nDaisy\nFlora\nGloria\nJosephine\nLucy\nWilma\nImogene\nPearl\nFlorence\nKatherine\nElsie\nBarbara\nJewel\nAda\nCarolyn\nLena\nSallie\nAudrey\nNancy\nSadie\nAlberta\nJoyce\nMaggie\nViola\nKathleen\nJewell\nOra\nBonnie\nEleanor\nRose\nLola\nRebecca\nLizzie\nNorma\nNettie\nAddie\nKathryn\nAnn\nDora\nJimmie\nBillie\nEarline\nLorene\nMarion\nOla\nNell\nPeggy\nEsther\nJane\nRachel\nEddie\nMabel\nLottie\nOllie\nErnestine\nRoberta\nStella\nSylvia\nBeulah\nJeanette\nHilda\nLela\nBobbie\nBettie\nBettye\nFaye\nJanie\nMaxine\nNora\nCallie\nLeona\nMavis\nEllen\nGracie\nMelba\nLeola\nPearlie\nTommie\nMarguerite\nFrancis\nEstelle\nJune\nNina\nRosetta\nViolet\nEtta\nIva\nEffie\nMyra\nNaomi\nQueen\nWillodean\nDorthy\nEarnestine\nFay\nGussie\nJohnie\nLessie\nPatricia\nRuthie\nDella\nJannie\nSybil\nAmanda\nFlossie\nJennie\nClaudia\nErma\nLorine\nLou\nMiriam\nReba\nRobbie\nRubye\nEstella\nHenrietta\nSally\nFrankie\nOdessa\nCharlie\nEliza\nEmily\nGwendolyn\nLila\nMarilyn\nMay\nVerna\nBlanche\nIrma\nJacqueline\nJosie\nShirley\nSue\nWanda\nWilla\nAnne\nCharlotte\nCorine\nLee\nMerle\nMollie\nOdell\nOphelia\nEra\nNadine\nAugusta\nClaudie\nMyrtis\nAnita\nCornelia\nDollie\nElma\nPolly\nWinnie\nAllie\nBennie\nCleo\nElouise\nMarian\nAline\nMillie\nSyble\nAmy\nAnnette\nBeverly\nBirdie\nCassie\nEstell\nEster\nIla\nJaunita\nLenora\nPatsy\nElaine\nJames\nMaude\nMyrtice\nOlivia\nPearline\nAdell\nEaster\nJanice\nJoe\nLelia\nLouvenia\nMittie\nRosia\nAvis\nClarice\nDixie\nElnora\nFreddie\nIna\nLaverne\nLue\nLuella\nMaudie\nRena\nAlene\nBertie\nConnie\nDessie\nElvie\nEugenia\nKattie\nLinnie\nLonnie\nLorena\nMaurine\nMozell\nNannie\nVernell\nWinifred\nEarlene\nEvie\nLora\nLoretta\nMargret\nMuriel\nOuida\nSusan\nVirgie\nVoncile\nWillene\nCharlene\nDorris\nEdwina\nIola\nJackie\nMadeline\nMadge\nOcie\nVernice\nArlene\nArtie\nCarol\nCecil\nCelestine\nCelia\nDelia\nDelores\nFlorine\nHarriet\nHester\nIris\nKate\nLetha\nLilly\nLudie\nLuvenia\nMargarette\nNelda\nOlene\nOlga\nRobert\nTheresa\nTressie\nZula\nAlta\nClassie\nConstance\nCorene\nExie\nFlorene\nFreda\nGeorgie\nGoldie\nJeannette\nLeila\nLera\nLettie\nLinda\nLoraine\nLouella\nLovie\nLydia\nMagdalene\nMalinda\nMozelle\nPinkie\nBerta\nCharles\nChristeen\nDolores\nDonnie\nDovie\nEmmer\nHettie\nIdell\nIma\nInell\nJoy\nJudy\nLorraine\nMandy\nMazie\nNona\nPhyllis\nRosemary\nUna\nValeria\nAbbie\nAllene\nAmelia\nBette\nBirtha\nColleen\nCorinne\nDean\nDeloris\nFlorida\nGlennie\nHannah\nHellen\nIdella\nIra\nJohn\nKatheryn\nLucinda\nMammie\nMargarett\nMyrtie\nOzell\nRessie\nRita\nRosalie\nRubie\nVersie\nWilda\nWillia\nWilliam\nZettie\nAlfreda\nCeola\nDolly\nEllie\nElna\nElva\nEmogene\nGertie\nJeanne\nJettie\nJudith\nJulie\nMatilda\nMelvina\nMinerva\nMona\nNelle\nRetha\nSammie\nSavannah\nSelma\nTempie\nTessie\nVallie\nVerdell\nZelma\nAmie\nAudie\nBerniece\nBetsy\nCara\nCaroline\nClaudine\nClyde\nCorrie\nCorrine\nCreola\nDelma\nDot\nEthelene\nGeorge\nGertha\nIona\nIsabell\nJanet\nJanette\nJerry\nKathrine\nLexie\nLilla\nLily\nMariah\nMaxie\nMayme\nMellie\nOlean\nOlive\nPeggie\nVerlie\nViva\nWillow\nYvonne\nZola\nAileen\nAllean\nAlpha\nAlva\nAlyce\nAngeline\nAnnis\nAra\nBaby\nBelle\nBlondell\nCharlsie\nChristene\nClementine\nClemmie\nCynthia\nDimple\nDortha\nEldora\nElinor\nElizebeth\nElois\nElvira\nEther\nEuna\nHenretta\nIvy\nJeraldine\nJoan\nJohnny\nJonnie\nJuliette\nLeah\nMadgie\nMagnolia\nMaria\nMaud\nMaurice\nMelva\nNola\nOmie\nPernie\nPriscilla\nQueenie\nRossie\nVerla\nVernon\nVictoria\nVida\nWill\nWilladean\nWynell\nAdelaide\nAgatha\nAlthea\nArizona\nAugustine\nBilly\nBurma\nCarmen\nCathrine\nCharlena\nClydie\nCorean\nCumi\nDell\nDelois\nDera\nDonna\nEdward\nEsta\nEthelyn\nEudora\nEver\nEzell\nFanny\nFloyce\nFrieda\nHarriett\nHelon\nIrine\nIsabel\nJeannie\nJo\nJoann\nJossie\nKathryne\nLaurine\nLeatha\nLeatrice\nLennie\nLeslie\nLiza\nLona\nLoree\nLouie\nLovell\nLyda\nMadelyn\nMaebell\nMarcella\nMargery\nMaureen\nMennie\nMickey\nOctavia\nOnie\nOssie\nPearlene\nRosalee\nRoxie\nRuther\nSophie\nTula\nVeda\nVeola\nVernie\nVonda\nWilline\nWillodene\nWinona\nWylodene\nWynelle\nZadie\nZella\nMary\nAnnie\nDorothy\nWillie\nBetty\nMildred\nMargaret\nHelen\nRuby\nFrances\nLouise\nRuth\nSarah\nDoris\nMartha\nMattie\nElizabeth\nVirginia\nLillie\nEdna\nEvelyn\nGladys\nMinnie\nEthel\nEmma\nHazel\nClara\nJuanita\nAlice\nThelma\nBessie\nBernice\nMarie\nLois\nCatherine\nJessie\nNellie\nBertha\nSara\nLillian\nElla\nFannie\nPauline\nJohnnie\nRosie\nIda\nLucille\nLula\nCarrie\nMargie\nEdith\nJulia\nMyrtle\nChristine\nJean\nHattie\nEva\nRosa\nLaura\nIrene\nVera\nJoyce\nSusie\nAlma\nBarbara\nBillie\nMae\nMamie\nMaggie\nVivian\nBeatrice\nKatherine\nInez\nJosephine\nLucile\nMarjorie\nOpal\nWilma\nAnna\nEloise\nImogene\nKatie\nVelma\nAgnes\nEunice\nGrace\nEssie\nEula\nFlora\nGeorgia\nCarolyn\nGeneva\nCora\nLorene\nLucy\nDaisy\nFlorence\nPeggy\nMable\nAnn\nRose\nJimmie\nGertrude\nLola\nGeraldine\nNancy\nPearl\nKathleen\nEllen\nElsie\nNell\nAda\nAudrey\nMarion\nJane\nJewel\nGloria\nSallie\nEarline\nLena\nSadie\nEleanor\nOllie\nDora\nKathryn\nViola\nAddie\nBonnie\nLizzie\nRebecca\nAlberta\nLeola\nOla\nOra\nJeanette\nBobbie\nErnestine\nJewell\nJanie\nMelba\nBeulah\nMaxine\nNorma\nPearlie\nStella\nLela\nEsther\nLottie\nEstelle\nMavis\nNettie\nEffie\nBettye\nRoberta\nJune\nNora\nMabel\nRachel\nRobbie\nBettie\nCallie\nDorthy\nReba\nSylvia\nTommie\nEddie\nSue\nAnne\nPatricia\nRosetta\nViolet\nGussie\nWanda\nDella\nErma\nGwendolyn\nNaomi\nRuthie\nEmily\nEliza\nNina\nWinnie\nCorine\nEarnestine\nFaye\nCharlotte\nGracie\nJennie\nLila\nQueen\nMiriam\nNannie\nSally\nVirgie\nWillodean\nDollie\nFrankie\nHilda\nLeona\nShirley\nVerna\nEra\nMyra\nCleo\nSybil\nCharlie\nEmogene\nFrancis\nOdessa\nLessie\nMarian\nPatsy\nClaudia\nElnora\nJannie\nJoy\nMollie\nBennie\nFay\nFlossie\nMarguerite\nEarlene\nElouise\nIla\nLettie\nLorine\nOphelia\nBlanche\nIna\nNelda\nAdell\nJohnie\nMaudie\nNadine\nOlivia\nAllie\nConnie\nDessie\nInell\nJeanne\nJoan\nLee\nLora\nLou\nSyble\nWilla\nCornelia\nDolores\nIva\nJacqueline\nLelia\nLenora\nMarilyn\nTheresa\nAlene\nEugenia\nIrma\nJanice\nJosie\nLue\nMittie\nClarice\nEstell\nEstella\nFreddie\nJames\nPearline\nRena\nVoncile\nAnita\nCelia\nClaudie\nElma\nFlorine\nHenrietta\nIris\nMagnolia\nMay\nRubye\nAmanda\nEster\nJo\nJoe\nJohn\nMerle\nOuida\nRobert\nAnnette\nBertie\nElaine\nEtta\nEvie\nFreda\nIma\nLaverne\nLeila\nLinnie\nMaurine\nMyrtis\nOdell\nRutha\nAline\nBeverly\nEarlean\nJanet\nJaunita\nLydia\nMargret\nMillie\nMozelle\nMyrtice\nPinkie\nRosia\nWilda\nAllene\nAlta\nClaudine\nColleen\nDelores\nDonnie\nDorris\nEmmie\nHester\nKate\nLuella\nOlive\nRosemary\nVernell\nArtie\nIona\nJerry\nLera\nLorraine\nLucinda\nMozell\nPaula\nPhyllis\nPolly\nSammie\nSusan\nZella\nZelma\nAmy\nAugusta\nAvis\nBirdie\nCharles\nDixie\nEdwina\nHarriet\nHettie\nLetha\nLily\nLinda\nMadeline\nNovella\nRita\nWillene\nAmelia\nAnnis\nArlene\nBerta\nCarol\nCassie\nChristeen\nCorinne\nDovie\nElinor\nGenevieve\nIdell\nJonnie\nJulie\nLona\nLoretta\nLouvenia\nLudie\nMaria\nMaude\nOlene\nOma\nTressie\nWilliam\nWynell\nAdelle\nCharlene\nClyde\nCreola\nEuna\nGene\nGlennie\nHannah\nIsabell\nJackie\nKatheryn\nLilla\nLilly\nLura\nMuriel\nOcie\nOlga\nVeola\nWillia\nAlpha\nBobby\nCorene\nCynthia\nDeloris\nEllie\nElmira\nErline\nGearldine\nHarriett\nIola\nJacquelyn\nJeannette\nJettie\nJosiephine\nJudith\nJuliette\nLoraine\nMargarett\nMargrette\nMazie\nMyrtie\nNona\nOlean\nOnnie\nOzell\nParalee\nPearlene\nRessie\nRilla\nSavannah\nVernice\nVictoria\nWinifred\nAdella\nAileen\nAlyce\nArdella\nAudie\nAudrie\nAurelia\nAva\nBetsy\nBilly\nCharity\nCharlsie\nChristene\nDean\nDelia\nDoshie\nElna\nElvie\nElvira\nEthelene\nEzell\nGeorge\nGeorgie\nGlenda\nGoldie\nHellen\nIdella\nIra\nJack\nJoanne\nKathrine\nLorena\nLouella\nLuvenia\nMadelyn\nMadge\nMagdalene\nMalinda\nMaxie\nMelva\nMissouri\nNola\nOctavia\nOlivette\nOnzell\nPansy\nPecola\nPriscilla\nRubie\nVida\nVoncille\nZeola\nAbbie\nArrie\nBette\nBulah\nBurnice\nCamilla\nCaroline\nCecelia\nClora\nCorrine\nDannie\nDolly\nEaster\nElise\nEther\nEulene\nFlorida\nFloy\nFoy\nFrance\nGaynell\nIcie\nIcy\nIsabelle\nJudy\nKatharine\nKattie\nLouie\nLouisa\nLovie\nLurlene\nMaud\nMona\nNan\nNella\nOrlean\nRhoda\nRossie\nRoxie\nRuther\nTheodora\nTheola\nVergie\nVerla\nVersie\nWilhelmina\nWillo\nWillodene\nWillow\nYvonne\nAilene\nAlbertha\nAngie\nArcola\nAugustine\nBerniece\nBirtha\nBuelah\nCaldonia\nCarleen\nCathryn\nClaire\nClemmie\nCleopatra\nDavid\nDortha\nDottie\nDrucilla\nEarlie\nElisabeth\nElizebeth\nExie\nFlorene\nFrieda\nGennie\nGertha\nImagene\nJanette\nJeanie\nJoann\nJustine\nKitty\nLavada\nLeatha\nLennie\nLeoma\nLeslie\nLexie\nLibby\nLonnie\nLorean\nMacie\nMadie\nMarcella\nMarcia\nMargarette\nMaureen\nMaurice\nMelvin\nMennie\nMeriam\nMontez\nNena\nOdie\nOsie\nOzie\nPearlean\nPearly\nPrince\nQueenie\nRowena\nRuthey\nSelma\nSophia\nSylvester\nTessie\nUna\nVennie\nVerda\nVerdell\nVernon\nVonciel\nWalter\nMary\nAnnie\nDorothy\nBetty\nWillie\nMildred\nMargaret\nDoris\nRuby\nHelen\nLouise\nFrances\nMartha\nRuth\nSarah\nMattie\nVirginia\nElizabeth\nEvelyn\nLillie\nEdna\nEthel\nGladys\nEmma\nLois\nMinnie\nAlice\nClara\nHazel\nThelma\nMarie\nBessie\nSara\nBernice\nCatherine\nBertha\nCarrie\nJuanita\nJean\nLillian\nFannie\nJessie\nJulia\nNellie\nLula\nElla\nJohnnie\nIda\nLucille\nPauline\nRosie\nEdith\nChristine\nJoyce\nHattie\nVera\nLaura\nEva\nBarbara\nBillie\nMaggie\nInez\nIrene\nMamie\nMargie\nRosa\nBeatrice\nMarjorie\nEssie\nPeggy\nMae\nMyrtle\nKatie\nEloise\nKatherine\nVelma\nGeorgia\nSusie\nDaisy\nFlorence\nAnna\nAgnes\nAlma\nGeneva\nJosephine\nVivian\nAnn\nCora\nGloria\nEunice\nGrace\nNorma\nLucy\nOpal\nBobbie\nImogene\nCarolyn\nElsie\nLucile\nWilma\nGeraldine\nEula\nFlora\nAudrey\nLorene\nLola\nSallie\nKathleen\nMaxine\nRebecca\nMarion\nBettye\nJane\nViola\nAddie\nGertrude\nMable\nRose\nSadie\nEleanor\nJimmie\nAlberta\nEddie\nBettie\nJewel\nJeanette\nKathryn\nPearlie\nDora\nLizzie\nBonnie\nNettie\nOla\nLena\nNancy\nEllen\nErnestine\nJewell\nAda\nNell\nEsther\nRachel\nJacqueline\nStella\nEarline\nReba\nBeulah\nEstelle\nMabel\nGracie\nOllie\nOra\nJanie\nLela\nFaye\nLeola\nMavis\nNaomi\nAnne\nEmily\nPearl\nRobbie\nIva\nFrancis\nHilda\nRuthie\nSue\nNora\nPatricia\nSybil\nCallie\nEarnestine\nErma\nJennie\nLottie\nShirley\nTommie\nWillodean\nDella\nIla\nCharlotte\nGwendolyn\nMarian\nMyra\nNina\nLorine\nQueen\nIrma\nLessie\nMelba\nOlivia\nSylvia\nClaudia\nJoan\nLila\nSyble\nDolores\nDorthy\nEtta\nVerna\nEffie\nFay\nFrankie\nJannie\nLeona\nMarguerite\nRamona\nRosetta\nWanda\nWinnie\nDollie\nIna\nJune\nEarlene\nJosie\nMerle\nPatsy\nSally\nBertie\nFlossie\nOdessa\nViolet\nCharlie\nElouise\nMyrtice\nRoberta\nAllie\nBennie\nGussie\nMollie\nBlanche\nElaine\nElnora\nEstella\nEster\nJoy\nWilla\nEmogene\nFreddie\nJeanne\nMillie\nMiriam\nOdell\nRena\nZelma\nCorine\nJackie\nLenora\nOphelia\nAmanda\nClarice\nElma\nEra\nJo\nPolly\nAnnette\nCleo\nEliza\nIris\nJames\nJanice\nLora\nNannie\nRubye\nSammie\nVoncile\nDovie\nHellen\nHenrietta\nJaunita\nLou\nMarilyn\nMaudie\nTheresa\nVirgie\nAnita\nAugusta\nCaroline\nDelores\nEugenia\nJohn\nLee\nMittie\nNelda\nCarol\nFlorine\nJohnie\nNadine\nEdwina\nLorraine\nLue\nLydia\nMuriel\nPhyllis\nAdell\nGeorgie\nJanet\nJonnie\nKate\nLeila\nLily\nMaude\nRobert\nRosemary\nAline\nBeverly\nCassie\nDean\nDessie\nFreda\nLinda\nMay\nWilda\nWynell\nCeola\nConstance\nElmira\nGaynell\nGertie\nIma\nJuliette\nKattie\nLettie\nMargret\nOuida\nAileen\nArlene\nCharlene\nCharles\nDeloris\nDixie\nDolly\nDortha\nEstell\nGoldie\nIra\nLelia\nLera\nLouella\nLura\nMozell\nOlive\nPearline\nRita\nSusan\nAbbie\nAmy\nCornelia\nDannie\nDot\nElvie\nGennie\nGeorge\nInell\nJudy\nLinnie\nLoretta\nLouvenia\nMammie\nMargarette\nMaria\nMyrtis\nNona\nPriscilla\nRosia\nVernell\nAlta\nAmelia\nBirdie\nBobbye\nChristeen\nColleen\nConnie\nCorene\nDelia\nDorris\nElna\nElva\nGlennie\nHannah\nHarriet\nHester\nIdell\nIola\nJeanie\nKatheryn\nLaverne\nLucinda\nMagnolia\nMona\nNovella\nRoxie\nSavannah\nTressie\nVernice\nVernie\nZora\nAlva\nArrie\nAvis\nBette\nBilly\nBobby\nBurnice\nCathrine\nCorrine\nCreola\nDonna\nEarlean\nElease\nEulene\nLilly\nLovie\nLudie\nLuella\nMadeline\nMagdalene\nNelma\nNeva\nOcie\nPaula\nPinkie\nRubie\nSelma\nWillene\nWilliam\nYvonne\nAltha\nBirtha\nBlanch\nClaire\nClaudie\nDorothea\nEarlie\nEaster\nEldora\nEthelyn\nEvie\nFlorene\nFloy\nGene\nGenevieve\nIlean\nJanette\nJoann\nJohnny\nLonnie\nLouie\nMalinda\nMarianne\nMaxie\nNelle\nOctavia\nOma\nQueenie\nRosalie\nValeria\nVerdell\nVictoria\nVida\nWalter\nWinifred\nWynelle\nZula\nAlene\nArtelia\nBeaulah\nBulah\nCelestine\nCelia\nCherry\nDelma\nDelois\nDimple\nEdwena\nElinor\nElisabeth\nEllie\nErlene\nEtha\nEther\nGertha\nGlenda\nHarriett\nHenry\nIsabell\nJeannette\nKathrine\nLoraine\nLoyce\nLuvenia\nMadge\nMargery\nMarietta\nMatilda\nMaurine\nMazie\nMickey\nMolly\nNella\nNola\nOlean\nOtha\nOzell\nPansy\nRegina\nReta\nTessie\nTrudie\nZola\nAdelaide\nAlbertha\nAllene\nArlean\nArtie\nAudie\nAvery\nBama\nBerta\nBlondell\nCarline\nCecelia\nCecile\nCharity\nClaudine\nCleopatra\nCynthia\nDorotha\nEartha\nElmer\nElois\nEmmie\nEthelene\nFreida\nHazle\nHelene\nHelon\nHenretta\nIlene\nIsabella\nIvy\nJacquelyn\nJerry\nJoanna\nJoanne\nJoe\nJoseph\nLavonia\nLeanna\nLeatha\nLennie\nLilla\nLorena\nLurline\nLuverne\nMadie\nMallie\nMandy\nMarcelle\nMarry\nMaureen\nMaybelle\nMennie\nMerlene\nMurdis\nOlene\nRae\nRay\nRessie\nRetha\nRilla\nRutha\nSophia\nTempie\nTeresa\nVallie\nVinnie\nVoncille\nWilladean\nWillo\nMary\nBetty\nAnnie\nDorothy\nMargaret\nWillie\nHelen\nDoris\nMildred\nRuby\nMartha\nFrances\nLouise\nRuth\nSarah\nVirginia\nElizabeth\nEdna\nEvelyn\nMattie\nLillie\nEthel\nGladys\nMinnie\nEmma\nLois\nClara\nHazel\nJuanita\nAlice\nJoyce\nBernice\nBessie\nMarie\nLula\nJessie\nBarbara\nCatherine\nBertha\nSara\nThelma\nRosie\nLillian\nJean\nNellie\nChristine\nVera\nJohnnie\nJulia\nCarrie\nPeggy\nMamie\nIda\nBillie\nEdith\nEva\nPauline\nRosa\nFannie\nElla\nInez\nMargie\nMyrtle\nLucille\nLaura\nCarolyn\nBeatrice\nBobbie\nIrene\nKatie\nAnna\nMaggie\nAnn\nMae\nHattie\nAlma\nLucy\nGrace\nJosephine\nGeorgia\nBonnie\nEunice\nOpal\nEloise\nKatherine\nMarjorie\nNancy\nAgnes\nImogene\nVelma\nCora\nEula\nSusie\nVivian\nEssie\nGeneva\nWilma\nGeraldine\nJewel\nAudrey\nDaisy\nAddie\nGloria\nLucile\nKathleen\nLola\nElsie\nRose\nBettie\nLorene\nMaxine\nEleanor\nFlorence\nGertrude\nLena\nEllen\nMarion\nOllie\nSallie\nFlora\nJane\nMable\nDora\nJimmie\nJanie\nNell\nNorma\nViola\nBettye\nEsther\nLizzie\nPearl\nRachel\nErnestine\nMavis\nFaye\nAlberta\nEddie\nNettie\nOra\nRoberta\nSadie\nPearlie\nPatricia\nEarline\nJeanette\nOla\nRebecca\nJewell\nKathryn\nLela\nReba\nLeola\nMabel\nMelba\nAda\nLeona\nLottie\nTommie\nAnne\nJune\nDolores\nNora\nRuthie\nBeulah\nQueen\nDorthy\nStella\nJannie\nCallie\nSue\nSylvia\nWillodean\nEmily\nGwendolyn\nJacqueline\nRamona\nRobbie\nClaudia\nEffie\nJo\nVerna\nCorine\nDelores\nEstelle\nGracie\nJennie\nJoan\nWanda\nFrankie\nBennie\nEtta\nHilda\nJoy\nLila\nNaomi\nOdessa\nElnora\nErma\nMarguerite\nMarilyn\nCharlie\nCharlotte\nEarnestine\nHenrietta\nIla\nMollie\nElouise\nMyra\nWinnie\nDella\nLessie\nSally\nSybil\nWilla\nAnita\nDessie\nFay\nFlossie\nMiriam\nTheresa\nAllie\nDollie\nEarlene\nIna\nEstella\nIrma\nJohn\nNadine\nNelda\nViolet\nAdell\nCharles\nEra\nJackie\nLou\nOphelia\nShirley\nBlanche\nFlorine\nIris\nJohnie\nMillie\nNina\nRosetta\nCleo\nFrancis\nJames\nJeanne\nMarian\nNannie\nPhyllis\nRena\nVirgie\nYvonne\nBertie\nCornelia\nEliza\nGussie\nIva\nLee\nLelia\nLorine\nLue\nMay\nMyrtice\nOlivia\nPearline\nCarol\nColleen\nElaine\nLaverne\nMaude\nPolly\nVernell\nAmy\nCassie\nCelia\nCharlene\nEstell\nJosie\nKate\nPatsy\nClarice\nEvie\nFreddie\nAlene\nElma\nHortense\nJanice\nJaunita\nLonnie\nLoretta\nMolly\nOdell\nRosemary\nSyble\nWillene\nAline\nAmanda\nAnnette\nDeloris\nEmogene\nGenevieve\nGertie\nHannah\nJoann\nJoe\nLily\nLinda\nLora\nMaudie\nMozell\nVoncile\nAugusta\nAvis\nBeverly\nBobby\nDonnie\nEugenia\nFreda\nHester\nIma\nLucinda\nMadge\nMargret\nMerle\nMittie\nOuida\nPinkie\nRita\nRubie\nClaudine\nDean\nDonna\nDorris\nEaster\nEster\nFlorene\nHarriet\nJeannette\nJeannine\nMyrtis\nRosia\nBirdie\nElva\nGeorgie\nJacquelyn\nJanet\nJerry\nLeila\nLenora\nLetha\nLettie\nLorraine\nMatilda\nMerlene\nOma\nPansy\nQueenie\nRoxie\nRubye\nSusan\nWilda\nAngie\nBette\nConnie\nDelia\nDolly\nEllie\nEthelene\nIdell\nIola\nIona\nIra\nIsabell\nJanette\nJettie\nJonnie\nJuliette\nKattie\nLorena\nLuella\nLurline\nLydia\nMammie\nMargrette\nOcie\nOlene\nOzell\nOzella\nRetha\nRobert\nRosalie\nAileen\nAlta\nBulah\nClyde\nCorene\nCynthia\nEdwina\nFloy\nGeorge\nHellen\nInell\nLavada\nLinnie\nLura\nMacie\nMagnolia\nMandy\nMazie\nMuriel\nOlive\nRilla\nSavannah\nVinnie\nWilladean\nZola\nAngeline\nArlene\nCaroline\nClassie\nCreola\nDixie\nDovie\nElna\nGene\nGoldie\nHettie\nIcie\nIlene\nIsabella\nJoanna\nLera\nLilly\nLoraine\nLouvenia\nLovie\nLuna\nMadeline\nMargarett\nMaxie\nNola\nNona\nPaula\nPriscilla\nVannie\nVersie\nVida\nWinifred\nAurelia\nBerta\nBirtha\nCamilla\nCarlene\nCherry\nClaudie\nConstance\nCorinne\nDortha\nDot\nElinor\nElise\nElvie\nEvelyne\nGennie\nGlennie\nHazle\nHenry\nJudy\nKatheryn\nLennie\nLilie\nMadeleine\nMarcella\nMargarette\nMargrett\nMaurine\nMozelle\nNovella\nOna\nOrene\nPattie\nRutha\nSammie\nVester\nWilliam\nWillodene\nWilmer\nWylene\nWynell\nZelda\nAlean\nAlline\nAltha\nAmie\nAnner\nAra\nArtie\nBama\nBilly\nBlanch\nBlondell\nCara\nCathrine\nCecelia\nCeola\nCharlsie\nClydie\nDelois\nDorotha\nDorothea\nEarlie\nElmira\nEmmer\nEulene\nEuna\nEzell\nGay\nGirtha\nGlenda\nHelon\nIdella\nJeraldine\nJoanne\nJohnny\nJudith\nJunie\nLeslie\nLucretia\nLurene\nLuvenia\nMadie\nMaple\nMaria\nMarietta\nMarzell\nMaudine\nMona\nMontez\nMyrl\nMyrle\nMyrtie\nNan\nOlga\nOssie\nPearlene\nPeggie\nPhoebe\nTheda\nTrudie\nVada\nVallie\nVergie\nVictoria\nZelma\nZeola\nMary\nBetty\nDorothy\nAnnie\nDoris\nWillie\nMildred\nMargaret\nHelen\nRuby\nMartha\nLouise\nSarah\nFrances\nElizabeth\nMattie\nRuth\nEvelyn\nVirginia\nEdna\nLillie\nGladys\nEthel\nClara\nEmma\nJuanita\nBessie\nAlice\nMinnie\nJoyce\nMarie\nCatherine\nCarrie\nBernice\nLois\nJessie\nRosie\nBarbara\nBillie\nFannie\nHazel\nNellie\nSara\nPeggy\nThelma\nJean\nElla\nHattie\nLula\nJohnnie\nRosa\nBertha\nIda\nLillian\nLaura\nChristine\nJulia\nLucille\nBobbie\nWilma\nEva\nCarolyn\nEdith\nGeorgia\nAnn\nMyrtle\nMargie\nVera\nBeatrice\nPauline\nGeraldine\nIrene\nSusie\nAnna\nKatherine\nMarjorie\nMae\nNancy\nAlma\nVivian\nMamie\nBonnie\nGloria\nOpal\nGeneva\nCora\nJimmie\nBettye\nDaisy\nGrace\nInez\nEloise\nEunice\nKatie\nJosephine\nLucy\nFlora\nJewel\nMaggie\nViola\nNell\nLorene\nMable\nRose\nNorma\nJeanette\nImogene\nEula\nGertrude\nLena\nElsie\nLucile\nJane\nNettie\nAddie\nKathleen\nRachel\nFlorence\nJoan\nRebecca\nBettie\nFaye\nSadie\nAgnes\nEssie\nLizzie\nLola\nVelma\nOllie\nEllen\nOla\nEarline\nAudrey\nEleanor\nSue\nMarion\nPatricia\nAda\nOra\nPearl\nJo\nLottie\nNaomi\nAlberta\nKathryn\nMaxine\nErnestine\nJacqueline\nShirley\nBeulah\nEsther\nJune\nMarilyn\nJanie\nMavis\nRobbie\nDolores\nMabel\nDora\nJewell\nViolet\nWanda\nAnne\nNora\nDelores\nEddie\nStella\nTommie\nHilda\nMelba\nCharlotte\nGracie\nRoberta\nPearlie\nReba\nDella\nSallie\nSybil\nRuthie\nDorthy\nGwendolyn\nMyra\nCallie\nIrma\nLeola\nLeona\nMarian\nErma\nFrancis\nLela\nPatsy\nVerna\nEtta\nFrankie\nJanice\nJoy\nEarnestine\nEstella\nIna\nSally\nClaudia\nCornelia\nFay\nWillodean\nBennie\nCharlie\nEffie\nGussie\nLila\nZelma\nEmily\nEstelle\nJennie\nNina\nTheresa\nElouise\nMiriam\nNadine\nAnita\nClarice\nOdessa\nWilla\nCarol\nDollie\nMollie\nRosetta\nBeverly\nElaine\nFlossie\nSylvia\nIris\nLorine\nRena\nRita\nWinnie\nAdell\nEarlene\nEliza\nJames\nJannie\nJoanne\nNannie\nAnnette\nCorine\nDixie\nIla\nJosie\nLee\nLelia\nLessie\nOlivia\nOphelia\nJoann\nMillie\nPhyllis\nRosemary\nSyble\nBertie\nElma\nElnora\nIva\nJanet\nLora\nLou\nLouella\nLue\nMaudie\nMyrtice\nMyrtis\nNelda\nRobert\nRubye\nVernell\nHenrietta\nJohn\nMargret\nOdell\nRoxie\nAlene\nBlanche\nBobby\nEmogene\nLenora\nMaude\nPolly\nQueen\nRamona\nVoncile\nAline\nAllie\nAugusta\nDeloris\nEra\nJeanne\nLoretta\nLydia\nRosia\nAmanda\nAmy\nCelia\nCleo\nConnie\nHester\nInell\nJackie\nJerry\nKate\nLaverne\nLinnie\nVirgie\nYvonne\nAva\nAvis\nBirdie\nColleen\nDean\nDessie\nDolly\nEdwina\nEstell\nEster\nEvie\nExie\nGertha\nHellen\nLera\nMaurine\nMazie\nWilda\nWynell\nEllie\nFlorene\nFlorine\nGeorge\nHenry\nLovie\nLucinda\nMittie\nOuida\nPearline\nPinkie\nAudie\nCharlene\nGeorgie\nHannah\nHarriet\nJohnny\nJonnie\nLonnie\nLoraine\nLouvenia\nMadeline\nMarguerite\nMona\nMuriel\nSusan\nVoncille\nWillene\nAileen\nBette\nBulah\nCassie\nClaudine\nDortha\nDovie\nFreddie\nGaynell\nIra\nJacquelyn\nJeane\nJudy\nLetha\nLettie\nLily\nLinda\nLuverne\nMadge\nMagdalene\nMagnolia\nMozelle\nOlive\nOzella\nSammie\nVernice\nAlean\nAllene\nArtie\nBama\nConstance\nCorene\nCynthia\nDonnie\nDorris\nEarl\nEarlean\nEaster\nElinor\nEugenia\nFreida\nGertie\nIdella\nIola\nJeannine\nJoe\nJohnie\nJulie\nLeila\nLorraine\nLudie\nMatilda\nMaudine\nMay\nMozell\nMyrna\nNella\nPansy\nPatty\nPaula\nRutha\nVerdell\nWilliam\nZora\nAdeline\nArthur\nBerta\nBirtha\nCarlie\nCathrine\nCeola\nClaire\nClassie\nClaudie\nDelois\nDottie\nErie\nErlene\nEthelene\nEulene\nGearldine\nGene\nIma\nJaunita\nJeanie\nJeannette\nJettie\nLurline\nLuvenia\nMellie\nMerle\nMolly\nNan\nNona\nPriscilla\nRosalee\nVeda\nWalter\nZola\nAdele\nAlva\nAmelia\nAmmie\nBelle\nCreola\nDannie\nEileen\nEmmie\nEuna\nFanny\nGoldie\nIdell\nIsabell\nJeannie\nJenny\nJoanna\nKathrine\nKattie\nLona\nLura\nMalinda\nMammie\nMarcella\nMargarette\nMarianne\nMarietta\nMaxie\nOctavia\nPearlean\nPearlene\nRubie\nUna\nVictoria\nVida\nViva\nWilhelmina\nWillia\nAdelaide\nAgatha\nAlta\nAlvis\nAmie\nAngeline\nArlene\nAubrey\nBebe\nBerniece\nBilly\nBurma\nCaroline\nCelestine\nChloe\nClementine\nCorinne\nDeborah\nDimple\nEarlie\nEllene\nElmira\nElna\nElvira\nEvangeline\nEvelyne\nGail\nGay\nHelon\nHortense\nIcie\nIona\nJamie\nJeffie\nJeraldine\nJunita\nLavada\nLavern\nLoree\nLorena\nLouisa\nMadie\nMargene\nMargrette\nMazell\nRosalie\nRowena\nSavannah\nSelena\nTexanna\nTressie\nVonda\nZella\nZula\nMary\nBetty\nDorothy\nAnnie\nDoris\nMartha\nWillie\nMargaret\nHelen\nRuby\nMildred\nFrances\nElizabeth\nSarah\nLouise\nRuth\nVirginia\nMattie\nEvelyn\nBarbara\nLillie\nJoyce\nClara\nEmma\nEdna\nPeggy\nAlice\nHazel\nSara\nLois\nEthel\nMarie\nJuanita\nGladys\nMinnie\nJean\nNellie\nBessie\nBillie\nBernice\nBobbie\nJessie\nThelma\nElla\nCatherine\nBertha\nCarolyn\nChristine\nFannie\nJohnnie\nCarrie\nRosie\nIda\nJulia\nLula\nLillian\nAnn\nHattie\nEdith\nEva\nBonnie\nMyrtle\nGeorgia\nNancy\nBeatrice\nLaura\nRosa\nPauline\nWilma\nGeraldine\nMargie\nGloria\nAlma\nKatie\nVera\nMamie\nAnna\nLucille\nSusie\nVelma\nGeneva\nMae\nEloise\nInez\nJoan\nBettye\nCora\nEunice\nJimmie\nDaisy\nIrene\nMarjorie\nFaye\nPatricia\nJo\nJosephine\nKatherine\nNorma\nAgnes\nEula\nMable\nLucy\nEleanor\nMaxine\nRose\nShirley\nEssie\nJeanette\nMaggie\nJane\nJune\nVivian\nGrace\nJanie\nFlorence\nMarion\nBettie\nLorene\nOpal\nElsie\nFlora\nRebecca\nSue\nSadie\nJewel\nLola\nOra\nAlberta\nOllie\nWanda\nNettie\nOla\nImogene\nAda\nKathryn\nLena\nMelba\nViola\nEllen\nErnestine\nJacqueline\nLucile\nAddie\nKathleen\nNell\nRachel\nCharlotte\nAudrey\nEarline\nGertrude\nPearlie\nSallie\nReba\nAnne\nPatsy\nBeulah\nNina\nEddie\nEsther\nGracie\nJanice\nDora\nLizzie\nGwendolyn\nLela\nLeola\nMavis\nMyra\nEarnestine\nErma\nWillodean\nNaomi\nDella\nJoanne\nRoberta\nTommie\nEmily\nJewell\nLila\nRobbie\nSybil\nFay\nJoann\nLottie\nSylvia\nCallie\nDelores\nIrma\nJennie\nMarilyn\nNora\nRuthie\nSally\nWilla\nWinnie\nBeverly\nCharlie\nEffie\nOdessa\nClaudia\nEarlene\nHilda\nMarian\nStella\nElnora\nEtta\nJoy\nMollie\nPearl\nDolores\nDorthy\nIris\nJosie\nAnita\nIva\nMabel\nNadine\nFrankie\nLeona\nOlivia\nBennie\nEstella\nHenrietta\nCorine\nEstelle\nIna\nJanet\nMiriam\nViolet\nVirgie\nAllie\nNannie\nQueen\nVoncile\nYvonne\nBlanche\nEliza\nRosetta\nSyble\nBertie\nCarol\nEster\nFrancis\nFreddie\nIla\nJannie\nLessie\nLorine\nPearline\nTheresa\nAnnette\nConnie\nEra\nLee\nLoretta\nMarguerite\nAdell\nAvis\nClarice\nDollie\nElaine\nEugenia\nFlossie\nJoe\nLou\nLue\nLydia\nMay\nNelda\nPolly\nRamona\nRubye\nAmanda\nHarriet\nMerle\nPhyllis\nAllene\nCleo\nDeloris\nElouise\nJeannette\nJerry\nLelia\nMaudie\nMyrtice\nMyrtis\nOphelia\nRita\nBette\nBobby\nCharlene\nEmogene\nGussie\nInell\nJackie\nJames\nLeila\nMillie\nVerna\nWilda\nArlene\nCynthia\nDessie\nDixie\nDortha\nEarlean\nGeorgie\nJacquelyn\nKattie\nLaverne\nLinnie\nLora\nLouvenia\nMarlene\nOlene\nRubie\nWynell\nConstance\nCornelia\nCreola\nDovie\nElna\nEvie\nIola\nJohn\nLera\nLinda\nLorraine\nMammie\nMittie\nMozell\nOdell\nRosia\nRoxie\nCassie\nChristene\nDolly\nDorris\nFreda\nGertha\nIma\nJeanne\nLudie\nLura\nMadge\nMozelle\nRegina\nSusan\nVernice\nArlean\nCeola\nCharles\nCorene\nDean\nDelois\nEdwina\nEstell\nGay\nHannah\nIra\nJudy\nLuvenia\nMagdalene\nMargarett\nMona\nMyrtie\nOctavia\nRena\nVernell\nAlene\nAline\nClaudie\nElma\nFlorene\nFloy\nGaynell\nHester\nHortense\nJohnie\nJudith\nJulie\nJuliette\nKate\nLucinda\nLuella\nMarianne\nMaude\nMolly\nNona\nOuida\nOzell\nPaula\nPeggie\nRosemary\nTempie\nVerla\nVictoria\nZella\nZeola\nBerneice\nBobbye\nCamilla\nCelia\nClair\nClemmie\nDelma\nDot\nEaster\nEllie\nElva\nEmmie\nGearldine\nGlenda\nHellen\nJanette\nJettie\nKathrine\nLouella\nMadie\nMagnolia\nMaudine\nMerlene\nOcie\nOma\nOssie\nPattie\nRetha\nWalter\nWillo\nWinona\nAileen\nAlthea\nAmelia\nAmy\nAnnis\nArtie\nAugusta\nBilly\nBirdie\nBirtha\nCelestine\nCherry\nClaire\nClaudette\nClaudine\nClementine\nDartha\nDonna\nDonnie\nElise\nEulene\nFairy\nFlorine\nHenry\nHettie\nIona\nKatheryn\nKay\nLennie\nLetha\nLettie\nLona\nLonnie\nMandy\nMargret\nMaurine\nMazie\nNita\nNola\nOlga\nPinkie\nRessie\nReva\nRobert\nSammie\nSandra\nSherry\nSibyl\nSophia\nVesta\nWillene\nWinifred\nZelma\nAudie\nAva\nBama\nBlondell\nBurma\nCharity\nClarence\nCleola\nClovis\nCorinne\nDelia\nDona\nDorcas\nEileen\nElmira\nElois\nElvie\nErlene\nFreida\nGene\nGeorge\nGertie\nIdell\nJaunita\nJeffie\nJonnie\nJossie\nLenora\nLeslie\nLilla\nLoraine\nLovie\nMadeline\nMarcella\nMargarette\nMarveline\nMaureen\nMennie\nMitzi\nOlean\nOzella\nRhoda\nRochelle\nRoma\nRosalie\nRutha\nTeresa\nTessie\nVada\nVeola\nVoncille\nWilliam\nWillodene\nWylodean\nZula\nMary\nBetty\nAnnie\nDorothy\nMargaret\nMartha\nHelen\nWillie\nDoris\nBarbara\nRuby\nFrances\nMildred\nSarah\nElizabeth\nLouise\nMattie\nRuth\nJoyce\nLillie\nEvelyn\nVirginia\nEmma\nPeggy\nEdna\nJuanita\nClara\nAlice\nHazel\nNellie\nBernice\nBobbie\nEthel\nMinnie\nCarrie\nCatherine\nSara\nGladys\nLois\nJean\nRosie\nBillie\nBertha\nBessie\nMarie\nThelma\nCarolyn\nJessie\nAnn\nLillian\nJohnnie\nElla\nIda\nLula\nMargie\nFannie\nEva\nJulia\nGloria\nVera\nChristine\nPatricia\nKatie\nRosa\nGeraldine\nBonnie\nMyrtle\nNancy\nHattie\nLaura\nAnna\nCora\nPauline\nGeorgia\nLucille\nMamie\nIrene\nShirley\nWilma\nEdith\nJoan\nAlma\nEloise\nEssie\nSusie\nBeatrice\nDaisy\nNorma\nJimmie\nJo\nJosephine\nKatherine\nVelma\nVivian\nGeneva\nJane\nLucy\nMae\nMarjorie\nSue\nEunice\nFaye\nJeanette\nRose\nSadie\nFlora\nImogene\nElsie\nEula\nOpal\nJune\nBettie\nInez\nJanie\nOllie\nBettye\nKathleen\nLola\nMable\nLorene\nAlberta\nKathryn\nMaggie\nAgnes\nFlorence\nMaxine\nSallie\nGertrude\nGrace\nMarion\nNell\nNettie\nRebecca\nRobbie\nDora\nEarline\nEllen\nEsther\nOla\nJewel\nPatsy\nEleanor\nAda\nAudrey\nLizzie\nAnne\nLena\nViola\nWanda\nSylvia\nMavis\nMelba\nPearl\nReba\nDella\nJacqueline\nAddie\nCarol\nJewell\nMyra\nRachel\nDelores\nErnestine\nJoann\nLucile\nNaomi\nCharlotte\nOra\nEmily\nJennie\nPearlie\nGracie\nFrankie\nHilda\nDolores\nDorthy\nEarnestine\nErma\nJanice\nLila\nMabel\nRoberta\nMarilyn\nRuthie\nWillodean\nLeola\nCallie\nOdessa\nJoanne\nSally\nEddie\nGwendolyn\nJoy\nLottie\nNora\nStella\nTommie\nLela\nEarlene\nFay\nIva\nLessie\nPhyllis\nEtta\nViolet\nEffie\nBeulah\nLeona\nDelois\nEstelle\nNannie\nNelda\nRamona\nWilla\nCharlie\nCorine\nEliza\nElouise\nIla\nIrma\nJanet\nLoretta\nLou\nSyble\nJannie\nMaudie\nNina\nOdell\nPolly\nBeverly\nConnie\nElnora\nLinda\nMarian\nNadine\nRosetta\nVerna\nWinnie\nAllie\nElaine\nEstella\nIma\nMyrtis\nBennie\nBlanche\nBobby\nFlossie\nFrancis\nFreddie\nIris\nMarguerite\nMollie\nMyrtice\nOlivia\nSybil\nYvonne\nAnita\nAnnette\nClaudia\nElma\nJames\nJudy\nMillie\nMittie\nRita\nSusan\nCleo\nCornelia\nDollie\nDovie\nEmogene\nIna\nQueen\nTheresa\nJackie\nOphelia\nVirgie\nAmanda\nDeloris\nEra\nGussie\nHenrietta\nJeannette\nJosie\nLenora\nRena\nVoncile\nDonna\nJeanne\nLaverne\nLorine\nMarlene\nRosemary\nRosia\nAugusta\nIola\nJerry\nMandy\nMay\nOuida\nPearline\nAdell\nArlene\nBertie\nBette\nConstance\nCynthia\nLeila\nLelia\nLetha\nMargret\nMerle\nMiriam\nNona\nAmy\nBirdie\nCeola\nCharles\nClarice\nClaudie\nDessie\nDixie\nDolly\nEaster\nEugenia\nHannah\nInell\nLue\nLydia\nMargarett\nPinkie\nRetha\nRobert\nRubye\nBobbye\nCelia\nElna\nEvie\nFreda\nGay\nGaynell\nGearldine\nHarriet\nJacquelyn\nLee\nLuella\nRoxie\nVernell\nWilliam\nZora\nAlene\nCaroline\nCherry\nColleen\nDean\nEdwina\nEster\nExie\nJaunita\nLouella\nMarcella\nMaxie\nNan\nOcie\nOctavia\nSammie\nWillene\nWynell\nAllene\nCelestine\nClarine\nDonnie\nElvira\nFlorine\nGeorgie\nHazle\nIra\nJettie\nJohnie\nLinnie\nLorraine\nMolly\nMona\nMuriel\nNola\nOma\nVerdell\nWalter\nWilda\nWillia\nWillodene\nZelma\nAline\nAmelia\nAurelia\nAvis\nBetsy\nCassie\nCharlene\nDorris\nEmmie\nEstell\nGene\nHellon\nHenry\nHester\nJohn\nJonnie\nJoseph\nJudith\nJuliette\nLonnie\nLouisa\nLouvenia\nLucinda\nMadie\nMagnolia\nMatilda\nOlive\nRosalie\nArie\nAudry\nChristene\nCreola\nEmmer\nErline\nEulene\nHarriett\nHellen\nIdella\nJanette\nLavada\nLettie\nLiza\nLovie\nMaudine\nMaurine\nMontez\nNila\nPattie\nPatty\nPeggie\nPollie\nRubie\nVerla\nVinnie\nWinona\nAileen\nAllean\nBulah\nCathryn\nClementine\nCorene\nCorrine\nDelia\nDortha\nEthelene\nGenell\nGenevieve\nGeorge\nIrine\nIsabella\nJoanna\nKate\nKattie\nLeah\nLily\nLoraine\nLorean\nLorena\nLura\nMagdalene\nMaud\nMozell\nMozelle\nNella\nOlean\nOzell\nOzella\nRegina\nReva\nRutha\nTessie\nTrudie\nVerdie\nVernice\nVida\nWilladean\nWillow\nWinifred\nWynelle\nAbbie\nAdele\nArlee\nAzzie\nBerniece\nBurma\nCarmen\nCarole\nCharity\nCharlsie\nClarence\nClaudine\nCorrie\nDannie\nDelma\nDiana\nDorothey\nDottie\nEarlean\nEarlie\nEldora\nElmer\nElva\nFloy\nFloyd\nGail\nGayle\nGertie\nGlenda\nGoldie\nGreta\nHettie\nImo\nJeannine\nJohnny\nKathy\nLeatrice\nLennie\nLeta\nLina\nLona\nLora\nMadge\nMarcia\nMariah\nMaude\nMaureen\nMaurice\nMazie\nMennie\nMitzi\nMyrtie\nNedra\nOssie\nParthenia\nPat\nPearlene\nPriscilla\nQueenie\nRichie\nSophia\nSophie\nUna\nVergie\nVerlie\nVersie\nVesta\nWillo\nZella\nZola\nMary\nBetty\nAnnie\nDorothy\nBarbara\nMargaret\nDoris\nMartha\nHelen\nWillie\nRuby\nMildred\nSarah\nElizabeth\nFrances\nLouise\nRuth\nJoyce\nVirginia\nMattie\nLillie\nEvelyn\nPeggy\nEdna\nBobbie\nClara\nEmma\nMinnie\nEthel\nCarolyn\nAlice\nJuanita\nCatherine\nNellie\nHazel\nJean\nLois\nMarie\nBessie\nSara\nJessie\nBernice\nBillie\nAnn\nBertha\nJohnnie\nElla\nGladys\nThelma\nJulia\nFannie\nGloria\nCarrie\nJo\nLillian\nRosie\nMargie\nRosa\nNancy\nPatricia\nLula\nIda\nLaura\nGeraldine\nWilma\nChristine\nLucille\nHattie\nPauline\nVera\nDaisy\nEva\nJimmie\nMamie\nAnna\nCora\nJane\nJoan\nBonnie\nNorma\nSue\nJeanette\nFaye\nShirley\nBettye\nGeorgia\nLucy\nIrene\nEdith\nEloise\nJosephine\nKatie\nOllie\nVivian\nEssie\nRebecca\nElsie\nMaggie\nMyrtle\nGeneva\nBeatrice\nEula\nKatherine\nAlma\nEleanor\nMarjorie\nSusie\nInez\nMaxine\nNell\nJune\nOpal\nVelma\nMae\nSylvia\nAlberta\nSallie\nDora\nJewel\nSadie\nLizzie\nNettie\nMable\nAda\nBettie\nEunice\nAudrey\nFlora\nImogene\nLola\nFlorence\nGrace\nOla\nPearlie\nCharlotte\nEarline\nPatsy\nReba\nErnestine\nJanie\nCarol\nEarnestine\nJanice\nRachel\nRose\nWanda\nMarion\nJoann\nGertrude\nMavis\nAgnes\nKathryn\nMelba\nRobbie\nTommie\nEllen\nJewell\nLena\nAddie\nJacqueline\nAnne\nDorthy\nGwendolyn\nLorene\nOra\nDelores\nLoretta\nLucile\nSally\nStella\nCallie\nKathleen\nNina\nWilla\nJoy\nViola\nClaudia\nDella\nDollie\nEddie\nEmily\nEsther\nMyra\nNora\nCharlie\nGussie\nMiriam\nAnita\nBeulah\nErma\nJanet\nNaomi\nRuthie\nAnnette\nFrankie\nHilda\nIrma\nJennie\nLottie\nLou\nElnora\nLila\nPearl\nRoberta\nCorine\nDolores\nEtta\nFay\nLeola\nMarilyn\nRosetta\nSybil\nWinnie\nEarlene\nGracie\nMarlene\nBennie\nEffie\nLinda\nMollie\nOuida\nBeverly\nElouise\nMabel\nNadine\nOlivia\nTheresa\nWillodean\nYvonne\nDeloris\nFlossie\nJannie\nJoanne\nLenora\nViolet\nAllie\nFreddie\nIla\nJames\nLela\nOdessa\nElaine\nEliza\nEstella\nFrancis\nJackie\nLeona\nLessie\nQueen\nVerna\nCleo\nEstelle\nInell\nMarian\nConstance\nGlenda\nIna\nMarguerite\nBlanche\nBobby\nNelda\nNira\nOphelia\nRita\nSyble\nVoncile\nBertie\nIris\nMay\nMillie\nPhyllis\nRosia\nAmanda\nClarice\nConnie\nCynthia\nGail\nHenrietta\nIola\nJosie\nLaverne\nMona\nMyrtice\nDovie\nIma\nJacquelyn\nJudy\nNannie\nRena\nWillene\nAdell\nBette\nEmogene\nEra\nGaynell\nJerry\nLeila\nMittie\nPearline\nPolly\nAline\nCorene\nDonna\nEdwina\nHarriet\nIdell\nLee\nLelia\nLora\nLorine\nMagnolia\nMaudie\nMuriel\nNona\nPat\nRubie\nRubye\nSelma\nWilda\nAllene\nBirdie\nCassie\nCharlene\nDelois\nDixie\nDonnie\nEarlean\nEllie\nElma\nFlorine\nFreda\nGay\nGenevieve\nHarriett\nIdella\nJanette\nJohnie\nKattie\nLue\nNan\nRosemary\nAmelia\nBobbye\nCornelia\nCorrine\nEartha\nEaster\nEster\nGayle\nGertie\nHellen\nIra\nIva\nJanis\nKay\nLennie\nLetha\nMandy\nMerle\nPinkie\nRamona\nSusan\nVirgie\nZelma\nZola\nAlta\nAlva\nAnnice\nAudie\nAugusta\nClaudine\nDessie\nDolly\nDorris\nEugenia\nEvie\nHester\nJanett\nJeanne\nJettie\nJoe\nJohn\nJonnie\nJudith\nLily\nLinnie\nLuella\nLuvenia\nLydia\nMadie\nMarcia\nMazie\nMozelle\nNovella\nOdell\nOlive\nPaula\nPriscilla\nRheta\nRoxie\nSavannah\nSelena\nWillow\nWinifred\nAileen\nAltha\nAnnis\nCathryn\nCharles\nCordelia\nDot\nDottie\nEarlie\nElvira\nEthelene\nGearldine\nGreta\nGwen\nIvy\nLouvenia\nLovie\nLudie\nMadge\nMagdalene\nMaria\nMaude\nNella\nRetha\nSammie\nSandra\nVerla\nVernell\nVernie\nAngie\nArlena\nArlene\nAurelia\nAva\nBerta\nBulah\nCarole\nCathrine\nCecelia\nClaudie\nColleen\nDean\nDortha\nExie\nFanny\nFlorene\nFlorida\nGennie\nGeorge\nGertha\nGoldie\nHannah\nLeslie\nLoraine\nLorena\nLorraine\nLouella\nLura\nMadeline\nMargrett\nMarianne\nMatilda\nMontez\nMyrtie\nMyrtis\nNita\nOlean\nOlene\nPatty\nReather\nRhoda\nSonya\nTeresa\nTressie\nVerdell\nVergie\nVictoria\nVida\nWilladean\nArthur\nAvis\nBernell\nBlondell\nBurnice\nCarlene\nCecilia\nCelia\nCharline\nCharlsie\nCherry\nClementine\nClemmie\nDiane\nEileen\nElmira\nElva\nFloria\nGeraldean\nHallie\nHildred\nHortense\nJeannie\nJohnny\nKate\nLavada\nLilly\nLuevenia\nLynn\nMammie\nMargret\nMarietta\nMaudine\nMaureen\nMelva\nMerlene\nOsie\nPattie\nPearlean\nPeggie\nQueenie\nReva\nRobert\nSharlene\nUna\nVeola\nWilhelmina\nWillia\nWilliam\nWilodean\nMary\nBetty\nDorothy\nAnnie\nBarbara\nMartha\nDoris\nMargaret\nWillie\nRuby\nHelen\nSarah\nFrances\nPeggy\nMildred\nMattie\nJoyce\nElizabeth\nLouise\nVirginia\nEdna\nShirley\nCarolyn\nRuth\nEmma\nLillie\nBobbie\nMinnie\nSara\nEvelyn\nAlice\nNellie\nBillie\nGladys\nEthel\nBernice\nJean\nMarie\nPatricia\nLois\nCatherine\nJuanita\nAnn\nHazel\nCarrie\nJessie\nClara\nElla\nBessie\nBertha\nJulia\nJohnnie\nNancy\nLillian\nLula\nJo\nChristine\nNorma\nRosie\nMargie\nGloria\nFannie\nLaura\nIda\nThelma\nJosephine\nGeraldine\nRosa\nEva\nJoan\nKatie\nBonnie\nJimmie\nHattie\nGeorgia\nVera\nPauline\nVivian\nLucille\nWilma\nMae\nAnna\nFaye\nJeanette\nSue\nBettye\nLucy\nBeatrice\nIrene\nEdith\nMamie\nAlma\nCora\nKatherine\nRebecca\nEunice\nGeneva\nMarjorie\nMyrtle\nVelma\nDaisy\nSusie\nEleanor\nJanice\nMaggie\nBettie\nEula\nElsie\nGwendolyn\nEssie\nJune\nEloise\nJane\nJoann\nMable\nEarline\nLola\nPatsy\nNettie\nSylvia\nAudrey\nSallie\nDora\nInez\nKathryn\nRose\nLena\nLorene\nWanda\nEllen\nMaxine\nOla\nFlora\nJewel\nAlberta\nCarol\nGrace\nMyra\nNell\nAgnes\nCharlotte\nErnestine\nLizzie\nPearlie\nViola\nImogene\nAddie\nDelores\nJacqueline\nKathleen\nOpal\nSadie\nOllie\nRachel\nReba\nTommie\nAda\nEarnestine\nJanie\nMarion\nNina\nFlorence\nGracie\nHilda\nAnne\nBeverly\nRuthie\nMelba\nPearl\nQueen\nSally\nDorthy\nMavis\nEddie\nEsther\nOra\nAnnette\nGertrude\nMarian\nGlenda\nNaomi\nLoretta\nLucile\nRosetta\nJewell\nRoberta\nYvonne\nNelda\nOdessa\nRobbie\nCallie\nDolores\nErma\nMarilyn\nNora\nJoy\nRita\nCorine\nElnora\nEstelle\nFay\nJanet\nJennie\nLeola\nPolly\nStella\nWilla\nEmily\nFrankie\nIla\nIris\nLela\nBeulah\nDella\nGussie\nLila\nLou\nMabel\nMarlene\nPhyllis\nAnita\nEffie\nElouise\nEtta\nLottie\nMillie\nFreddie\nJackie\nLinda\nSybil\nHenrietta\nJoanne\nJosie\nMiriam\nOuida\nMerle\nAmanda\nBertie\nKay\nLeona\nJannie\nJerry\nSyble\nBennie\nBobby\nDollie\nEarlene\nEvie\nGail\nIrma\nJudy\nLenora\nMaudie\nTheresa\nAmelia\nCarole\nDelois\nElaine\nIma\nJoe\nLee\nLorine\nMarguerite\nVirgie\nWillodean\nWinnie\nCelia\nClaudia\nConnie\nDonna\nFrancis\nLessie\nLydia\nMollie\nMyrtice\nOlivia\nPaula\nPinkie\nBirdie\nClarice\nDeloris\nGeorgie\nHarriet\nMyrtis\nNadine\nSusan\nVernell\nCharlene\nClaudette\nCornelia\nDessie\nJudith\nOphelia\nPearline\nRosia\nRubye\nAugusta\nAvis\nCharlie\nCynthia\nFlossie\nFreda\nJacquelyn\nLora\nOdell\nRamona\nRena\nSandra\nViolet\nAllie\nBette\nBlanche\nCleo\nGay\nIola\nLorraine\nLouella\nLovie\nMittie\nPeggie\nVerna\nVoncile\nCorene\nEdwina\nEster\nFlorine\nHannah\nIva\nJames\nJanette\nJuliette\nLuella\nMargret\nNona\nAmy\nArlene\nCassie\nConstance\nEaster\nEliza\nEra\nGreta\nIna\nJanis\nJeanne\nJettie\nLucinda\nMadie\nMaude\nMolly\nMona\nMyrna\nOlean\nSharon\nWillene\nZelma\nAdell\nCarlene\nCharlsie\nColleen\nDimple\nDonnie\nEmmie\nEstella\nFlorene\nGaynell\nIdella\nInell\nJeannette\nKate\nLelia\nLue\nMuriel\nNella\nRetha\nRubie\nSaddie\nSammie\nVictoria\nWilda\nWinifred\nWynell\nAra\nCelestine\nClaire\nClaudie\nClaudine\nDiane\nElva\nGoldie\nHarriett\nHester\nJaunita\nLuvenia\nMay\nRoxie\nTiny\nUna\nVerdell\nVernice\nZora\nAlfreda\nAllene\nAlta\nAngela\nArtie\nBetsy\nCaroline\nCeola\nCharles\nDelia\nDixie\nDolly\nDovie\nEarlean\nEartha\nElma\nElmira\nEstell\nEugenia\nFreida\nGenevieve\nGertie\nGlennie\nImogean\nJonnie\nKatheryn\nKattie\nLaverne\nLetha\nLettie\nLilly\nLily\nLona\nMargarette\nMaria\nMariah\nMaudine\nMozell\nNannie\nOlene\nOlive\nPriscilla\nRosemary\nRossie\nTressie\nVeola\nVonnie\nWalter\nZola\nAbbie\nAdella\nAline\nAlyce\nAugustine\nBerta\nCamilla\nCathrine\nCherry\nChristene\nDaphine\nDean\nDeborah\nDot\nElna\nEulene\nFlorida\nGayle\nGaynelle\nHellen\nIsabell\nJamie\nJohnie\nJulie\nKitty\nLennie\nLouie\nMarcella\nMargarett\nMarzell\nMaureen\nNan\nNita\nNola\nOcie\nOlga\nOzell\nOzzie\nRegina\nTrudie\nWilliam\nZelda\nAlbert\nAllean\nBeth\nBobbye\nBulah\nBurnice\nCathryn\nChristeen\nCreola\nDebra\nEarlie\nElease\nEtha\nEugene\nEverline\nGene\nGennie\nGeorge\nHelon\nJanell\nJill\nJimmy\nJossie\nLeatha\nLeila\nLera\nLibby\nLorena\nLouvenia\nLura\nLynn\nMadge\nMagnolia\nMammie\nMaple\nMarietta\nMaxie\nMozelle\nNeva\nPansy\nPat\nPatty\nRaynell\nRochelle\nSavannah\nSuzanne\nSweetie\nToni\nValeria\nWilmer\nMary\nBetty\nAnnie\nDorothy\nShirley\nBarbara\nMartha\nDoris\nMargaret\nWillie\nRuby\nSarah\nHelen\nFrances\nPeggy\nJoyce\nElizabeth\nMildred\nLouise\nVirginia\nMattie\nCarolyn\nBobbie\nLillie\nEvelyn\nEdna\nRuth\nPatricia\nAlice\nClara\nMinnie\nNellie\nEthel\nSara\nBernice\nCarrie\nEmma\nGladys\nJo\nJuanita\nJean\nCatherine\nAnn\nBessie\nBertha\nLois\nElla\nBillie\nGloria\nHazel\nNancy\nJohnnie\nJulia\nMarie\nLula\nJessie\nRosie\nHattie\nFannie\nBonnie\nThelma\nRosa\nMargie\nBettye\nNorma\nLaura\nFaye\nSusie\nIda\nJoan\nLillian\nGeraldine\nJosephine\nSylvia\nKatie\nVera\nJimmie\nChristine\nPatsy\nEva\nJeanette\nDaisy\nLucille\nRebecca\nAnna\nJane\nGeorgia\nMae\nMaggie\nWilma\nMamie\nVivian\nCarol\nCharlotte\nPauline\nEloise\nAnnette\nSue\nJanice\nMyrtle\nIrene\nEleanor\nCora\nEdith\nGeneva\nMarjorie\nErnestine\nRose\nKatherine\nMable\nMarion\nBeatrice\nAlma\nEunice\nVelma\nJune\nLucy\nOllie\nYvonne\nBettie\nDelores\nMaxine\nMyra\nFlorence\nLola\nWanda\nEllen\nFlora\nGwendolyn\nSadie\nEula\nMarilyn\nDora\nJewel\nNettie\nSallie\nAudrey\nEssie\nGlenda\nPearlie\nAlberta\nGrace\nJacqueline\nLizzie\nElsie\nLena\nOla\nOra\nInez\nLeola\nAddie\nLela\nLoretta\nNell\nJanie\nMelba\nReba\nRobbie\nTommie\nGail\nJoann\nRachel\nRoberta\nAnne\nDolores\nViola\nCallie\nKathleen\nSally\nDorthy\nEarline\nRuthie\nGertrude\nKathryn\nLucile\nAgnes\nEddie\nAda\nBeverly\nEarnestine\nEsther\nGracie\nLorene\nNaomi\nNina\nFrankie\nJoy\nNora\nImogene\nOpal\nCorine\nEmily\nPearl\nRosetta\nSandra\nStella\nElaine\nErma\nFay\nAnita\nDella\nDollie\nEtta\nJewell\nJudy\nLottie\nMarian\nQueen\nClaudia\nDeloris\nHenrietta\nJackie\nMabel\nPhyllis\nBeulah\nJanet\nMavis\nNadine\nRita\nWilla\nHilda\nIna\nJerry\nPolly\nWinnie\nAllie\nEarlene\nEstella\nOdell\nPearline\nCharlie\nFreda\nFreddie\nJennie\nJoanne\nLorine\nBennie\nElma\nFrancis\nJosie\nLila\nSusan\nVerna\nViolet\nClaudette\nElnora\nJannie\nMollie\nRena\nSyble\nWillodean\nAmanda\nBobby\nIris\nIrma\nLee\nLinda\nOdessa\nDixie\nInell\nKay\nNelda\nOlivia\nSybil\nAdell\nAmy\nCarole\nCharlene\nCornelia\nEstelle\nIla\nLelia\nMarlene\nMillie\nMiriam\nArlene\nEffie\nEugenia\nLeila\nLue\nRosemary\nConnie\nDelois\nEliza\nGay\nMona\nRamona\nRosia\nVoncile\nBlanche\nDonna\nElouise\nJacquelyn\nLucinda\nMay\nNannie\nOphelia\nVirgie\nAugusta\nCleo\nFlossie\nGussie\nAvis\nBette\nDolly\nEvie\nFlorine\nGayle\nGaynell\nIma\nIva\nJaunita\nJeannette\nJoe\nJudith\nKattie\nLeona\nLydia\nMaudie\nMolly\nPatty\nSharon\nVerdell\nAllene\nAlyce\nCassie\nClarice\nCynthia\nFreida\nGreta\nJohnie\nLou\nLuvenia\nPat\nRubye\nTheresa\nWillene\nZelma\nAlta\nChristeen\nDot\nElna\nEra\nIola\nJames\nLenora\nLessie\nLora\nMadge\nMozell\nMyrna\nOssie\nPeggie\nPriscilla\nVictoria\nBertie\nBobbye\nCherry\nCreola\nDorris\nEster\nGearldine\nGeorge\nIra\nJeanne\nJettie\nJonnie\nKate\nLaverne\nMarguerite\nSammie\nAline\nCaroline\nCelestine\nConstance\nCorene\nDessie\nDonnie\nEaster\nEdwina\nEllie\nEmmie\nHannah\nJan\nJeanie\nJerrie\nLettie\nMaude\nMyrtis\nNella\nNola\nNona\nOuida\nOzella\nPaula\nPinkie\nRetha\nSherry\nWillia\nWynell\nAmelia\nAngie\nArtie\nBerta\nCamilla\nCathryn\nCelia\nCharles\nChristene\nClassie\nCorrine\nDale\nDelia\nDovie\nElois\nEulene\nFlorene\nGeorgie\nGlennie\nGoldie\nJanette\nJeraldine\nJohnnye\nJulie\nLeatrice\nLilly\nMadeline\nMarianne\nMatilda\nMaurine\nMazie\nMennie\nMittie\nMyrtice\nNila\nPattie\nReola\nRosalie\nSelma\nTressie\nValeria\nVernell\nAlene\nAlva\nAngela\nBenetta\nCecelia\nCeola\nClaudie\nClemmie\nDean\nDona\nDoyce\nEmogene\nGenevieve\nGennie\nGertha\nGwen\nHarriet\nHellen\nIdella\nIona\nJanis\nJohn\nLera\nLonnie\nLouvenia\nMarcia\nMargarett\nMargarette\nMargret\nMariah\nMarry\nMerle\nMuriel\nNeva\nOctavia\nPecola\nQueenie\nRegina\nRobert\nSavannah\nVeola\nVonnie\nWilhelmina\nZella\nAdele\nAlfreda\nAlpha\nAudie\nBarbra\nBurnice\nCathrine\nClaudine\nClovis\nCorinne\nDimple\nDorotha\nDorothea\nDortha\nEarlean\nElva\nEthelrine\nFranklin\nGinger\nHarriett\nHenry\nHester\nHettie\nKatheryn\nKitty\nLetha\nLinnie\nLorena\nLorraine\nLouisa\nLovie\nLuella\nMammie\nMarcella\nMargene\nMaureen\nMellie\nMelva\nMozelle\nMurlene\nNan\nNita\nNovella\nOcie\nOlean\nPearlean\nRessie\nRossie\nSamantha\nSheila\nSula\nTempie\nTeresa\nTinnie\nVoncille\nWilladean\nWillo\nWinifred\nMary\nBetty\nShirley\nAnnie\nDorothy\nBarbara\nMartha\nMargaret\nDoris\nWillie\nFrances\nPeggy\nSarah\nHelen\nRuby\nElizabeth\nCarolyn\nJoyce\nVirginia\nMattie\nPatricia\nMildred\nBobbie\nLillie\nEvelyn\nLouise\nAlice\nEdna\nClara\nEmma\nNancy\nRuth\nAnn\nJuanita\nMinnie\nSara\nEthel\nJessie\nNellie\nJo\nRosie\nCatherine\nElla\nBertha\nBessie\nJohnnie\nBillie\nGladys\nHazel\nLois\nNorma\nJean\nMarie\nBernice\nJulia\nCarrie\nSylvia\nIda\nJoan\nHattie\nMargie\nGeraldine\nGloria\nJane\nThelma\nPatsy\nFannie\nLula\nWilma\nRosa\nEva\nLaura\nChristine\nKatie\nSusie\nJeanette\nAnna\nSue\nVera\nMamie\nFaye\nJosephine\nJanice\nBettye\nEloise\nMae\nYvonne\nShelby\nVivian\nBonnie\nRebecca\nEleanor\nWanda\nCora\nEdith\nGeorgia\nJimmie\nLillian\nAlma\nAnnette\nBeatrice\nLucy\nIrene\nMaggie\nGlenda\nRose\nMarjorie\nPauline\nCharlotte\nKatherine\nMyrtle\nJoann\nJacqueline\nLucille\nBettie\nDaisy\nEssie\nEunice\nCarol\nGeneva\nJune\nMarilyn\nElsie\nGwendolyn\nMarion\nDelores\nJanie\nEula\nOla\nRobbie\nJewel\nRachel\nVelma\nInez\nLena\nLola\nOllie\nSallie\nSandra\nFlora\nFlorence\nMaxine\nMyra\nNina\nKathryn\nLoretta\nSadie\nMable\nAnne\nNettie\nAda\nDora\nErnestine\nImogene\nLizzie\nAddie\nEarnestine\nLinda\nReba\nAlberta\nAudrey\nBeverly\nEllen\nEmily\nNell\nRoberta\nGrace\nLorene\nNelda\nMelba\nEsther\nLela\nOpal\nPearlie\nRuthie\nGail\nKathleen\nOra\nTommie\nAgnes\nJudith\nNaomi\nNora\nGertrude\nJoy\nIrma\nJackie\nLottie\nFrankie\nStella\nAnita\nDeloris\nErma\nLucile\nBennie\nKay\nEddie\nGracie\nMavis\nEstella\nJanet\nPhyllis\nSally\nDella\nDolores\nLeola\nMarian\nOlivia\nSybil\nViola\nBeulah\nEarline\nWilla\nJewell\nPearl\nRosetta\nVerna\nCharlie\nEffie\nHilda\nJudy\nLou\nMiriam\nCorine\nJennie\nLee\nRita\nClaudia\nDollie\nEtta\nIris\nJerry\nJoanne\nLue\nOphelia\nQueen\nSyble\nClaudette\nDixie\nDorthy\nJosie\nMarlene\nBobby\nCornelia\nElnora\nEstelle\nHenrietta\nLeona\nNannie\nWillodean\nCallie\nIva\nJannie\nLessie\nShelba\nVoncile\nEarlene\nNadine\nPearline\nVirgie\nWinnie\nBertie\nElaine\nFay\nGaynell\nIla\nIna\nCelia\nFlossie\nFrancis\nFreddie\nJoe\nMillie\nMollie\nPolly\nRamona\nCharlene\nCleo\nElouise\nMarguerite\nMona\nMyrna\nRubye\nViolet\nAllie\nAmanda\nClarice\nDonna\nElma\nFreda\nHarriet\nLenora\nLila\nLora\nMyrtis\nOdessa\nPinkie\nRosemary\nSharon\nWillia\nConnie\nCynthia\nJaunita\nRetha\nRosia\nTheresa\nAdell\nBlanche\nCarole\nColleen\nDelois\nElna\nGayle\nGearldine\nGussie\nJeannette\nMabel\nMaureen\nPaula\nSherry\nVernell\nAmelia\nBette\nCaroline\nCeola\nDonnie\nGeorgie\nIdella\nInell\nLorine\nMargarett\nMaude\nMay\nMerle\nMyrtice\nNella\nOuida\nPeggie\nWillene\nWynell\nAmy\nArlene\nDarlene\nDean\nDolly\nEarlean\nEaster\nEliza\nEra\nEstell\nIra\nJacquelyn\nJanis\nKathrine\nLeila\nLovie\nOcie\nRena\nWilda\nAlene\nEdwina\nExie\nHarriett\nJeannie\nJuliette\nLinnie\nLydia\nMarva\nMatilda\nMittie\nMozell\nNan\nOdell\nSusan\nVida\nBobbye\nConstance\nDelia\nEarlie\nEmogene\nEster\nEugenia\nFlorine\nGay\nHellen\nHenry\nIola\nJames\nLelia\nLorean\nLorraine\nLouvenia\nLuella\nPecola\nSammie\nWinifred\nAline\nAugusta\nAurelia\nCecile\nCharlsie\nCherry\nClassie\nClaudine\nDorris\nDottie\nDovie\nEthelene\nEvie\nGenevieve\nGeorge\nGertha\nHester\nJanette\nJettie\nJonnie\nLaverne\nLeanna\nLilly\nLucinda\nMaudie\nMazie\nMuriel\nNona\nOlean\nPatty\nRochelle\nSidney\nTerry\nVerdell\nVoncille\nZella\nZora\nAlyce\nArlean\nBirdie\nCamilla\nCarlene\nCelestine\nCharles\nClaire\nClyde\nCorene\nCreola\nDessie\nDorcas\nDot\nEllie\nFrank\nGennie\nHannah\nIma\nJanelle\nJeanne\nKattie\nKitty\nLauretta\nLavern\nLonnie\nLoraine\nMadge\nMammie\nMargret\nMaria\nMaurine\nMickey\nMinerva\nMozelle\nRutha\nSavannah\nSheila\nTessie\nVernice\nAlean\nAnnetta\nArthur\nAudie\nBecky\nBetsy\nBeverley\nBulah\nCammie\nClemmie\nCorrie\nElois\nElva\nErlene\nFaith\nFlorida\nGene\nGeraldean\nGerry\nGinger\nGlennie\nGoldie\nIsabella\nJeanie\nJoanna\nJohn\nJohnny\nKaren\nLaurie\nLavada\nLeatha\nLennie\nLeslie\nLetha\nLettie\nLouella\nLura\nMackie\nMagdalene\nMalinda\nMandy\nMaple\nMargene\nMerlene\nMolly\nNeta\nNila\nOctavia\nOmie\nOtha\nPearlean\nRegina\nRessie\nRobert\nRosalyn\nSelma\nSuzanne\nTinnie\nVernon\nVonda\nVonnie\nWilladean\nMary\nBetty\nBarbara\nShirley\nAnnie\nDorothy\nMartha\nMargaret\nDoris\nPeggy\nWillie\nSarah\nCarolyn\nHelen\nRuby\nPatricia\nFrances\nElizabeth\nJoyce\nVirginia\nLouise\nMattie\nMildred\nEvelyn\nEmma\nRuth\nBobbie\nLillie\nEdna\nNancy\nSara\nAlice\nJean\nShelby\nAnn\nJo\nJuanita\nMarie\nMinnie\nClara\nEthel\nJessie\nNellie\nCatherine\nGladys\nJohnnie\nGloria\nBernice\nPatsy\nCarrie\nBessie\nHattie\nSylvia\nElla\nGeraldine\nHazel\nBertha\nFannie\nRosie\nCarol\nNorma\nBonnie\nLula\nIda\nMargie\nLois\nThelma\nJoan\nLaura\nBillie\nJimmie\nJulia\nAnnette\nJanice\nEdith\nJane\nEva\nJosephine\nJeanette\nSusie\nBettye\nChristine\nCora\nWanda\nMamie\nSue\nCharlotte\nRosa\nEleanor\nLucy\nWilma\nGeneva\nKatie\nLillian\nFaye\nGeorgia\nMae\nAnna\nVera\nYvonne\nDaisy\nRebecca\nIrene\nMyrtle\nMarjorie\nPauline\nRose\nGlenda\nSandra\nAlma\nJoann\nLucille\nMarilyn\nLinda\nMelba\nJune\nMyra\nBeatrice\nEloise\nKatherine\nVivian\nEula\nMaggie\nDelores\nBettie\nBeverly\nGrace\nVelma\nAlberta\nErnestine\nLizzie\nNettie\nOla\nSadie\nEssie\nOllie\nAudrey\nGwendolyn\nMable\nAda\nElsie\nMaxine\nJanie\nPearlie\nViola\nEllen\nKay\nRobbie\nEunice\nLola\nGail\nRachel\nAddie\nDora\nJacqueline\nLoretta\nSallie\nDella\nFlorence\nKathleen\nNina\nAnne\nEmily\nMarion\nAnita\nEarnestine\nFlora\nInez\nEsther\nLottie\nOra\nTommie\nAgnes\nImogene\nJewel\nLucile\nReba\nNell\nRuthie\nEddie\nFrankie\nGertrude\nJudith\nLela\nLena\nBeulah\nDorthy\nElaine\nMavis\nNaomi\nSally\nGracie\nJackie\nKathryn\nQueen\nLorene\nOpal\nErma\nShelba\nNelda\nNora\nRoberta\nSherry\nGussie\nIris\nPhyllis\nDeloris\nElnora\nRosetta\nStella\nSybil\nWinnie\nEffie\nEtta\nJennie\nJoy\nLeola\nTheresa\nJosie\nCharlie\nDonna\nJudy\nOlivia\nBennie\nJannie\nOdessa\nWilla\nConnie\nDolores\nEarlene\nHenrietta\nHilda\nIrma\nJanet\nLou\nPearl\nEarline\nEstella\nFay\nFreddie\nMiriam\nRita\nClaudia\nElouise\nJerry\nJewell\nRosemary\nSyble\nCorine\nDollie\nIva\nMyrna\nCharlene\nNadine\nPolly\nSusan\nCelia\nEstelle\nIna\nJoe\nVoncile\nAmelia\nDelois\nDixie\nLee\nLeona\nLessie\nMillie\nNella\nViolet\nHarriett\nIla\nJoanne\nLila\nMabel\nMarian\nMarlene\nMarva\nVerna\nWillodean\nAllie\nCallie\nFrancis\nRamona\nAmy\nBobby\nCarole\nCynthia\nEdwina\nEvie\nFlossie\nMollie\nOphelia\nPat\nPriscilla\nVirgie\nAdell\nCleo\nDonnie\nInell\nIola\nJaunita\nMyrtice\nPaula\nPeggie\nRegina\nRosia\nWilliam\nClarice\nEra\nEugenia\nFlorine\nLelia\nLora\nLydia\nMelva\nRubye\nVerdell\nDovie\nJames\nJanette\nLinnie\nMarcia\nMargret\nMarguerite\nMerle\nMolly\nRena\nAlfreda\nAmanda\nBertie\nBette\nClaudette\nConstance\nCreola\nDean\nEllie\nGaynell\nIma\nJacquelyn\nJohnie\nLenora\nLuella\nMyrtis\nNona\nOuida\nPearline\nPinkie\nArthur\nBilly\nCecile\nCharles\nDessie\nDolly\nEaster\nEmmie\nEster\nGay\nGayle\nHarriet\nHellen\nJeanne\nKaren\nLily\nLonnie\nLorena\nLorraine\nLue\nLynda\nMaude\nMay\nMazie\nMittie\nMona\nNan\nNannie\nOcie\nPatty\nSammie\nSharon\nVernell\nWynell\nZettie\nCaroline\nCornelia\nDottie\nEarlean\nHettie\nIra\nIsabell\nJeanie\nJulie\nKattie\nLorine\nLovie\nMaurine\nMuriel\nNola\nOdell\nPearlean\nRobert\nShelva\nSuzanne\nWilda\nZelma\nZola\nAlyce\nArlene\nArtie\nAugusta\nBlanche\nCassie\nCharlsie\nClaudie\nClaudine\nClemmie\nColleen\nDannie\nDorris\nEliza\nEmogene\nFreda\nGaynelle\nGeorge\nGeorgie\nGwen\nJan\nJeannette\nJeraldine\nJerrie\nJohn\nLeslie\nLettie\nLucinda\nLuvenia\nMalinda\nMarianne\nSavannah\nVictoria\nVonda\nAmie\nAnnetta\nAnnice\nArie\nAvis\nBillye\nBirdie\nCamilla\nCeola\nCherry\nChristeen\nClaire\nClementine\nCorene\nDianne\nElmira\nElois\nElva\nGennie\nGeraldean\nHannah\nIdell\nJanis\nJettie\nJonnie\nLeah\nLeila\nLilly\nLona\nLouella\nMadge\nMagdalene\nMaudie\nMozell\nNannette\nNedra\nOma\nOzella\nRichard\nRosalie\nRutha\nTerry\nTiny\nToni\nVeola\nZona\nAllene\nAlta\nAlthea\nAngie\nBeth\nBobbye\nCarlene\nCathryn\nCeleste\nCelestine\nCharity\nDeanna\nDelia\nDelma\nDeloise\nDiane\nDorothea\nDortha\nDorthey\nElease\nElinor\nElvira\nEmmer\nEthelene\nEulene\nHarriette\nHenry\nJoanna\nLavada\nLavonia\nLorean\nMammie\nMarsha\nMaudine\nMozelle\nNita\nOssie\nOtis\nPattie\nPecola\nRetha\nRowena\nRoxie\nTeresa\nTina\nWillene\nZella\nMary\nBetty\nBarbara\nAnnie\nDorothy\nShirley\nMartha\nMargaret\nDoris\nCarolyn\nPatricia\nSarah\nPeggy\nFrances\nWillie\nHelen\nRuby\nJoyce\nElizabeth\nVirginia\nAlice\nBobbie\nMattie\nMildred\nNancy\nEmma\nLouise\nAnn\nLillie\nRuth\nEdna\nEvelyn\nJuanita\nSara\nEthel\nRosie\nClara\nJo\nGloria\nJanice\nMinnie\nBernice\nNellie\nBertha\nCarrie\nPatsy\nSylvia\nJulia\nMarie\nLinda\nShelby\nCarol\nJean\nCatherine\nJessie\nElla\nGeraldine\nGladys\nChristine\nBessie\nBillie\nHazel\nMargie\nThelma\nJohnnie\nSandra\nNorma\nBonnie\nRosa\nLaura\nGlenda\nHattie\nIda\nJeanette\nLula\nWanda\nAnnette\nJane\nLois\nJoan\nFaye\nRebecca\nEva\nCharlotte\nFannie\nAnna\nGeorgia\nAlma\nJimmie\nWilma\nEleanor\nSusie\nBettye\nJune\nMyra\nSue\nGwendolyn\nEdith\nKatie\nIrene\nJoann\nJosephine\nBettie\nVera\nEssie\nCora\nLillian\nLucille\nLucy\nBeatrice\nGeneva\nJudy\nKatherine\nMamie\nMarjorie\nDaisy\nJacqueline\nJudith\nMae\nMelba\nRose\nLoretta\nEloise\nYvonne\nMarilyn\nPauline\nEmily\nRobbie\nVelma\nPearlie\nMaggie\nMaxine\nNettie\nGail\nJanie\nVivian\nEula\nFlora\nEunice\nEarnestine\nFlorence\nLorene\nMable\nOra\nElsie\nNina\nAnne\nDelores\nGrace\nKathryn\nOla\nSadie\nBeverly\nDora\nJackie\nMyrtle\nAddie\nAlberta\nSallie\nViola\nAnita\nAudrey\nNelda\nFrankie\nInez\nAda\nEllen\nLola\nRachel\nSally\nReba\nEsther\nHilda\nMarion\nEarline\nLela\nRoberta\nAgnes\nKay\nLena\nMavis\nNora\nPearl\nRuthie\nJewell\nOpal\nDeloris\nGertrude\nKathleen\nLizzie\nBeulah\nDonna\nJewel\nRosetta\nSharon\nDolores\nImogene\nLeola\nPhyllis\nSherry\nTheresa\nTommie\nErnestine\nJannie\nNaomi\nNell\nStella\nSybil\nEddie\nJanet\nJosie\nIrma\nOllie\nWilla\nAmanda\nClaudia\nDella\nGracie\nQueen\nEffie\nJoy\nMarian\nBennie\nConnie\nDorthy\nErma\nHenrietta\nJennie\nJerry\nPat\nEarlene\nClaudette\nElnora\nJoanne\nLeona\nLottie\nMyrna\nOdessa\nPaula\nRita\nDelois\nDixie\nElouise\nFay\nLucile\nRosemary\nLee\nLou\nCarole\nCharlene\nDollie\nEtta\nFrancis\nLila\nPolly\nSusan\nViolet\nWillodean\nAmelia\nCynthia\nElaine\nJames\nLelia\nLenora\nSyble\nCornelia\nEstelle\nGayle\nHarriet\nIla\nJacquelyn\nMillie\nOlivia\nVerna\nCharlie\nLaverne\nLynda\nMarlene\nMarva\nMollie\nMona\nOphelia\nSammie\nBette\nBlanche\nCallie\nGaynell\nJanette\nJoe\nLessie\nMabel\nMay\nNadine\nShelba\nBertie\nCelia\nCeola\nEra\nEugenia\nFreddie\nIna\nIris\nJeannette\nLue\nNannie\nPeggie\nPriscilla\nRamona\nAdell\nCleo\nCorine\nFreda\nMittie\nRena\nVoncile\nWilda\nAllie\nBetsy\nClaudine\nDottie\nDovie\nElma\nEstella\nGay\nGussie\nGwen\nIola\nMaudie\nMiriam\nOuida\nSonja\nWinnie\nDiane\nDonnie\nFreida\nInell\nIva\nMarguerite\nMolly\nPatty\nVernell\nAngela\nCecilia\nConstance\nDessie\nDorris\nGearldine\nHarriett\nJan\nJanis\nJohn\nLucinda\nMelva\nOma\nUna\nVesta\nWillene\nAnnice\nBecky\nBobby\nCorene\nDean\nDolly\nEarlean\nEdwina\nEliza\nElois\nIdell\nJeraldine\nJulie\nJuliette\nLilly\nLovie\nMargarette\nMarianne\nMerle\nMuriel\nNola\nOdell\nPrince\nRosalie\nSondra\nSuzanne\nVictoria\nVirgie\nWinifred\nAvis\nCecelia\nCecile\nCelestine\nDortha\nHannah\nJohnie\nLonnie\nLorine\nLydia\nMarcia\nMargret\nMyrtice\nMyrtis\nPattie\nRubye\nTerry\nWynell\nArie\nArlene\nAurelia\nBilly\nClaudie\nClyde\nEllie\nElna\nEstell\nEster\nFlorine\nGeorge\nGeorgie\nHellen\nLetha\nLettie\nLinnie\nLora\nMadeline\nMargarett\nPearline\nPinkie\nRegina\nRetha\nRobert\nSonya\nAlfreda\nAline\nAlta\nAlyce\nAmy\nArthur\nAugusta\nBama\nBerniece\nBerta\nBobbye\nCharity\nChristene\nClaire\nClarice\nDarlene\nEartha\nEaster\nEvie\nFlossie\nGeraldean\nGertie\nGlennie\nHester\nIma\nIra\nJenny\nJettie\nJoanna\nLeila\nLibby\nLouella\nMagnolia\nMandy\nMatilda\nMaude\nMelissa\nMozell\nNan\nNella\nNeva\nOctavia\nRosia\nShirlene\nSidney\nVennie\nVonnie\nZenobia\nZeola\nAlene\nAlva\nAnnell\nAnnis\nArcola\nArlean\nBeryl\nBonita\nCarlene\nCaroline\nCharles\nCharline\nCharlsie\nClemmie\nClovis\nCreola\nDaris\nDeanna\nDelma\nDiana\nDona\nDot\nDrucilla\nEarlie\nEileen\nEmmie\nErnest\nFaynell\nFlorene\nGayla\nGenevieve\nGertha\nJeanne\nJimmy\nKattie\nKaye\nLoraine\nLorraine\nLuberta\nLuevenia\nMargia\nMarsha\nMarvelene\nMazie\nNita\nNona\nOlene\nOlive\nOzell\nOzella\nPatti\nPenny\nQueenie\nRhoda\nRoma\nRosalyn\nRoxie\nRubie\nRutha\nSheila\nShelbie\nShelva\nSydney\nTeresa\nVaudine\nVerdell\nWillo\nZelda\nZora\nMary\nBetty\nBarbara\nAnnie\nDorothy\nShirley\nMartha\nPatricia\nCarolyn\nMargaret\nPeggy\nSarah\nDoris\nWillie\nHelen\nElizabeth\nFrances\nJoyce\nRuby\nVirginia\nAlice\nNancy\nLinda\nMattie\nEdna\nEmma\nEvelyn\nJo\nLouise\nJuanita\nLillie\nAnn\nMildred\nCarol\nBobbie\nClara\nSara\nGloria\nWanda\nRuth\nEthel\nMinnie\nElla\nNorma\nJanice\nMarie\nGeraldine\nJulia\nRosie\nSandra\nJeanette\nGlenda\nSylvia\nJohnnie\nJudy\nBertha\nJean\nPatsy\nBernice\nBessie\nCatherine\nJessie\nLaura\nJoan\nRebecca\nHattie\nMargie\nNellie\nHazel\nAnnette\nBonnie\nJane\nLula\nCarrie\nCharlotte\nLois\nShelby\nFaye\nBettye\nGeorgia\nIda\nJudith\nFannie\nRosa\nSue\nChristine\nGladys\nThelma\nEva\nAnna\nBillie\nLillian\nJosephine\nVera\nEdith\nJimmie\nIrene\nKatie\nMyra\nLucille\nSusie\nYvonne\nEleanor\nGwendolyn\nMae\nMamie\nVivian\nKatherine\nRose\nJune\nCora\nGail\nDaisy\nMelba\nMarjorie\nEloise\nJoann\nAlma\nLucy\nWilma\nGeneva\nMaggie\nMarilyn\nEssie\nEula\nKay\nEunice\nJanie\nInez\nJacqueline\nMyrtle\nVelma\nEllen\nMarion\nRachel\nAnita\nBettie\nBeverly\nJackie\nNettie\nBeatrice\nDelores\nEarnestine\nLena\nRobbie\nFlora\nErnestine\nSadie\nLoretta\nOllie\nSally\nAlberta\nFlorence\nMable\nMaxine\nPauline\nDonna\nGertrude\nGrace\nFrankie\nElsie\nAudrey\nEmily\nRuthie\nAnne\nBrenda\nJewel\nPhyllis\nSallie\nAgnes\nClaudia\nHilda\nNina\nLola\nLorene\nPearlie\nEddie\nEsther\nNaomi\nSharon\nSybil\nAda\nGracie\nOla\nOra\nQueen\nTommie\nDora\nImogene\nLizzie\nOpal\nViola\nDella\nJanet\nErma\nNora\nRosetta\nTheresa\nDorthy\nJoy\nKathleen\nNell\nSherry\nStella\nDollie\nKathryn\nLottie\nMavis\nSusan\nHenrietta\nDolores\nJennie\nLela\nPriscilla\nCorine\nElaine\nJoanne\nLeola\nDeloris\nFay\nHarriet\nRoberta\nJerry\nJewell\nMarian\nNelda\nPolly\nReba\nWilla\nAddie\nCarole\nCharlene\nFreddie\nRosemary\nCharlie\nConnie\nLucile\nCallie\nCynthia\nLila\nLynda\nPearl\nSonja\nIris\nLue\nOlivia\nSyble\nClaudette\nEarlene\nEarline\nElouise\nEstella\nIrma\nLenora\nMarlene\nBeulah\nElnora\nGayle\nGussie\nJoe\nJosie\nLeona\nRita\nAmelia\nGay\nJannie\nPaula\nRamona\nRoxie\nBennie\nDixie\nEliza\nEstelle\nFrancis\nIna\nJeannette\nLou\nMillie\nMiriam\nOphelia\nPeggie\nVerna\nViolet\nVoncile\nAmanda\nCelia\nEtta\nIva\nJanette\nJerrie\nMarcia\nMarguerite\nMolly\nMona\nMyrna\nOuida\nPat\nAline\nAllie\nBobby\nCornelia\nDelois\nDiane\nEffie\nFreda\nJacquelyn\nLee\nLonnie\nOdessa\nRena\nWillodean\nClarice\nEarlean\nIla\nJames\nLelia\nLessie\nLettie\nLorine\nLynn\nMabel\nMaudie\nRegina\nWillia\nWinnie\nAdell\nArlene\nConstance\nGaynell\nMyrtis\nNella\nShelba\nVinnie\nAmy\nBlanche\nCleo\nDovie\nElma\nGertha\nInell\nJeanne\nJuliette\nLorraine\nLouella\nMelva\nMollie\nMyrtice\nNadine\nPatty\nPearline\nRubye\nTerry\nVictoria\nVirgie\nCassie\nDolly\nDonnie\nEugenia\nHannah\nHester\nKate\nLeila\nMadeline\nMay\nMozell\nNila\nRosia\nAngela\nAngie\nDessie\nDianne\nDorris\nEra\nEster\nFreida\nFrieda\nGearldine\nGeorge\nHellen\nJeraldine\nJettie\nJohnie\nMargret\nMerle\nNannie\nPearlean\nPinkie\nRosalyn\nRutha\nSavannah\nSondra\nSuzanne\nZelma\nAugusta\nBecky\nBeth\nBetsy\nBilly\nCelestine\nCharity\nClaire\nCorene\nDeanna\nDortha\nEaster\nEdwina\nElva\nElvira\nEmogene\nEvie\nFlossie\nGeorgie\nGinger\nGwen\nIma\nJanis\nLora\nLucinda\nMadelyn\nMarva\nMaude\nMayme\nOdell\nSonya\nWilda\nWillene\nWynell\nAlene\nAlta\nAndrea\nAngeline\nBertie\nCarlene\nCharles\nChristeen\nClaudie\nDawn\nHarriett\nIdella\nIola\nJulie\nKaren\nLauretta\nLennie\nLetha\nLily\nMalinda\nMaple\nMarcella\nMargarett\nMargarette\nMaureen\nMelinda\nMozelle\nNan\nNona\nOlga\nRetha\nRochelle\nRosalind\nSheila\nShirlene\nSophia\nTessie\nVeola\nVerdell\nWinifred\nZula\nAbbie\nAlva\nAnnis\nBebe\nBelinda\nCecelia\nCecil\nCharlsie\nCherrie\nClementine\nCornelius\nDeborah\nDelma\nDorothea\nDottie\nEllie\nEmmie\nEthelene\nFrancine\nFredia\nGene\nGennie\nGeraldean\nGlenna\nHallie\nHenry\nIdell\nIsabell\nJamie\nJan\nJohn\nJonnie\nKaye\nLavada\nLavonia\nLinnie\nLona\nLuella\nLydia\nMaurine\nOlive\nOna\nOzell\nPatti\nPecola\nPollie\nRobert\nSabra\nSaundra\nTula\nWalter\nWynona\nZoe\nZola\nMary\nBetty\nBarbara\nDorothy\nAnnie\nShirley\nMartha\nPatricia\nMargaret\nCarolyn\nDoris\nLinda\nPeggy\nSarah\nJoyce\nVirginia\nElizabeth\nWillie\nHelen\nRuby\nFrances\nAlice\nMildred\nMattie\nNancy\nEvelyn\nEmma\nSandra\nGloria\nLillie\nLouise\nJuanita\nJanice\nGeraldine\nRuth\nBobbie\nGlenda\nAnn\nEdna\nBrenda\nCarol\nEthel\nJudy\nRebecca\nPatsy\nCharlotte\nSara\nBonnie\nWanda\nJean\nJulia\nBernice\nJudith\nJohnnie\nMinnie\nClara\nSylvia\nJo\nMarie\nElla\nRosie\nBertha\nCatherine\nJoan\nNellie\nFaye\nJessie\nFannie\nHazel\nCarrie\nShelby\nChristine\nBessie\nLois\nAnnette\nNorma\nSue\nJane\nEva\nHattie\nLaura\nJosephine\nRosa\nThelma\nBettye\nBillie\nGeorgia\nEleanor\nJeanette\nGladys\nGwendolyn\nIda\nMargie\nWilma\nRose\nLillian\nAlma\nMamie\nJimmie\nBettie\nSusie\nVera\nEdith\nKatie\nLucy\nGail\nLula\nVivian\nCora\nJacqueline\nLucille\nMable\nAnna\nMelba\nRachel\nIrene\nMyra\nEloise\nBeatrice\nMae\nErnestine\nEssie\nDaisy\nJoann\nMaggie\nYvonne\nEllen\nEula\nKatherine\nSadie\nViola\nAudrey\nBeverly\nReba\nVelma\nDelores\nEarnestine\nLola\nLoretta\nMarjorie\nGeneva\nMyrtle\nEunice\nJune\nGrace\nNettie\nInez\nJackie\nMaxine\nPauline\nLena\nMarilyn\nPhyllis\nElaine\nFlora\nNell\nOla\nRoberta\nElsie\nRobbie\nAddie\nJanie\nMarion\nAnita\nAnne\nDonna\nEmily\nAda\nPriscilla\nSally\nDora\nKay\nKathryn\nLizzie\nSallie\nHilda\nNina\nPearlie\nRuthie\nFrankie\nOra\nGertrude\nJewel\nLynda\nOllie\nCarole\nNora\nOlivia\nConnie\nHarriet\nJennie\nLela\nNaomi\nIrma\nJanet\nLeola\nCallie\nErma\nEsther\nMavis\nSybil\nAlberta\nDiane\nEarline\nGussie\nJoanne\nNelda\nQueen\nTheresa\nDella\nGracie\nLorene\nSharon\nSusan\nDeloris\nDorthy\nEddie\nEtta\nKathleen\nViolet\nAgnes\nCynthia\nLottie\nStella\nBeulah\nCharlie\nClaudette\nGayle\nMarian\nRosetta\nLucile\nRamona\nRita\nSherry\nTommie\nCharlene\nFay\nFlorence\nLorine\nPat\nAmelia\nEffie\nFreddie\nMillie\nOpal\nCorine\nHenrietta\nJacquelyn\nJerry\nLeona\nMyrna\nPeggie\nRosemary\nWillodean\nAmanda\nCecelia\nImogene\nOdessa\nOphelia\nDolores\nJeannette\nSyble\nWinnie\nBennie\nDixie\nIva\nJannie\nLenora\nLila\nMarcella\nMiriam\nNadine\nPearl\nCherry\nFrancis\nJanette\nJosie\nLessie\nMarguerite\nPearline\nVirgie\nWilla\nClaudia\nConstance\nDianne\nDollie\nEarlene\nEdwina\nEstella\nFreda\nJewell\nJoe\nLou\nPaula\nRosia\nSammie\nVerna\nDean\nDelois\nElma\nElnora\nIris\nJoy\nLydia\nMarcia\nSheila\nCleo\nCornelia\nDonnie\nEliza\nEster\nFlorine\nGaynell\nMargarett\nOuida\nPinkie\nPolly\nRena\nShelba\nVoncile\nAllie\nArlene\nBobby\nDolly\nDovie\nGwen\nIola\nJan\nJulie\nJuliette\nKathy\nLee\nLucinda\nMarva\nMatilda\nMolly\nNona\nSonja\nZelma\nEstelle\nEvie\nJames\nJerrie\nKaren\nMona\nMyrtis\nNan\nQueenie\nWinifred\nAlene\nBetsy\nClarice\nClaudine\nDelia\nDottie\nEaster\nElouise\nFlossie\nIdella\nIla\nIma\nJeanne\nJeannie\nKitty\nLaverne\nLelia\nLynn\nMadeline\nMerle\nMittie\nMollie\nRegina\nRosalyn\nSondra\nSuzanne\nVernell\nAmy\nBette\nCassie\nDessie\nGay\nGearldine\nGertie\nHarriett\nHellen\nJeraldine\nLettie\nLilly\nLora\nLouella\nLue\nLuella\nMabel\nMadge\nRetha\nRoma\nRoxie\nSavannah\nTeresa\nVictoria\nWilda\nWilliam\nWynell\nZora\nAdell\nAlfreda\nAlva\nBecky\nBertie\nCarlene\nCelia\nCharles\nDeloise\nDiana\nDortha\nEarlean\nEmogene\nGeorge\nHannah\nInell\nJanis\nJaunita\nJenny\nKaty\nLeila\nLennie\nLeslie\nLonnie\nLorraine\nLouisa\nLouvenia\nLucretia\nLuvenia\nMagnolia\nMargret\nMelanie\nMelinda\nMyrtice\nNeva\nOcie\nRhonda\nRobert\nSidney\nAngela\nAngie\nAnnetta\nAntoinette\nAugusta\nBlanche\nBobbi\nCamilla\nCarla\nCaroline\nCarroll\nCelestine\nCeola\nCharlsie\nChristene\nClaudie\nCorene\nDeanna\nDorotha\nDorothea\nEarlie\nElois\nElva\nEugenia\nEulene\nFaith\nGenevieve\nGerald\nGertha\nGlennie\nIna\nJayne\nJohn\nKattie\nLina\nLovie\nLura\nMalinda\nMammie\nMay\nMelvin\nMozell\nNila\nOma\nRhoda\nScarlett\nWillene\nWillia\nWynelle\nAdella\nAlbert\nAlpha\nAlta\nAlyce\nAngeline\nAudery\nAugustine\nBelle\nBlanchie\nCarlean\nCathryn\nCreola\nDaphne\nDelilah\nDot\nDrucilla\nEra\nFayrene\nGale\nHester\nJennette\nJettie\nJill\nJoanna\nJonnie\nKathrine\nKaye\nLeatha\nLetha\nLinnie\nLisa\nLurlene\nMadelyn\nMagdalene\nMandy\nMaurine\nMelva\nOssie\nPamela\nPatty\nPearlene\nRochelle\nRubye\nSaundra\nShannon\nSherrie\nSonia\nTerry\nTressie\nUna\nVergie\nVerla\nVerlon\nVoncille\nMary\nBetty\nBarbara\nDorothy\nLinda\nAnnie\nPatricia\nMartha\nShirley\nCarolyn\nMargaret\nPeggy\nJoyce\nDoris\nElizabeth\nSarah\nHelen\nSandra\nFrances\nNancy\nWillie\nVirginia\nRuby\nBrenda\nGloria\nJudy\nAlice\nPatsy\nGlenda\nJanice\nEmma\nMattie\nJo\nGeraldine\nWanda\nLouise\nEdna\nCarol\nLillie\nBonnie\nEvelyn\nCharlotte\nRebecca\nJudith\nBobbie\nMildred\nMinnie\nSara\nJohnnie\nJuanita\nJean\nAnn\nEthel\nCatherine\nJulia\nClara\nElla\nJoan\nLois\nNorma\nSylvia\nJane\nBertha\nFaye\nJessie\nCarrie\nMarie\nRosie\nBernice\nBessie\nNellie\nLaura\nChristine\nSue\nRuth\nGladys\nThelma\nMargie\nBillie\nBettye\nFannie\nShelby\nAnnette\nIda\nEva\nJeanette\nLillian\nLula\nRosa\nHazel\nEdith\nHattie\nKatie\nWilma\nBeverly\nGeorgia\nYvonne\nRose\nDelores\nVera\nGwendolyn\nJoann\nKatherine\nJosephine\nVivian\nEloise\nJacqueline\nLucy\nBettie\nMarilyn\nSusie\nAlma\nEleanor\nJimmie\nLucille\nMamie\nAnna\nIrene\nRachel\nDaisy\nFlora\nMaxine\nMyra\nCora\nMyrtle\nLoretta\nMelba\nPhyllis\nMaggie\nKay\nBeatrice\nEllen\nGeneva\nMarjorie\nNettie\nPauline\nSally\nDonna\nEarline\nEmily\nJanie\nMae\nAnne\nKathryn\nOllie\nAnita\nOla\nPearlie\nAudrey\nDora\nGail\nHilda\nJewel\nJune\nRobbie\nElaine\nRoberta\nSadie\nSallie\nSusan\nStella\nVelma\nErnestine\nEula\nJanet\nJoy\nLynda\nElsie\nLena\nLizzie\nNora\nSherry\nViola\nAlberta\nEddie\nFrankie\nLola\nReba\nRuthie\nConnie\nFlorence\nJackie\nMable\nNina\nDeloris\nEarnestine\nHenrietta\nInez\nKathleen\nNaomi\nEsther\nGrace\nDolores\nNelda\nPat\nRita\nCarole\nDiane\nLela\nRosemary\nSharon\nDorthy\nEssie\nJoanne\nTommie\nMarian\nMavis\nEunice\nJannie\nJewell\nLottie\nOlivia\nRosetta\nAddie\nBeulah\nOra\nWilla\nJennie\nNell\nTheresa\nAgnes\nErma\nIrma\nLee\nMarion\nAmanda\nJerry\nJulie\nLeola\nPriscilla\nClaudia\nGayle\nJacquelyn\nAda\nDelois\nElouise\nVoncile\nCynthia\nDollie\nFay\nGertrude\nLorene\nPearl\nPolly\nFrancis\nLucile\nOpal\nPaula\nEliza\nGracie\nMyrna\nOdessa\nSybil\nCallie\nCharlene\nCharlie\nDella\nDianne\nElnora\nMiriam\nNadine\nPeggie\nSuzanne\nBennie\nDixie\nJoe\nJosie\nMabel\nPatty\nSonja\nConstance\nGay\nImogene\nLou\nQueen\nViolet\nWinnie\nBobby\nClaudette\nCorine\nEstelle\nEtta\nFreda\nHarriet\nJames\nLeona\nLucinda\nSyble\nAmelia\nEstella\nFreddie\nJanis\nLila\nLydia\nMarcia\nMona\nSheila\nAmy\nArlene\nJeannie\nMillie\nMollie\nRubye\nBertie\nCaroline\nEarlean\nEarlene\nEvie\nHarriett\nIris\nKaren\nKathy\nLenora\nLovie\nMay\nOuida\nShelba\nWillodean\nDarlene\nEffie\nGussie\nIla\nInell\nIola\nJeanne\nJerrie\nKitty\nMadeline\nMarva\nMelanie\nAllie\nAugusta\nCornelia\nDolly\nLessie\nLora\nLorine\nLue\nMittie\nNannie\nPinkie\nTerry\nVerna\nWilda\nAdell\nBlanche\nCamilla\nCharles\nCreola\nDonnie\nDorris\nGaynell\nIdella\nIna\nJoanna\nLouella\nLynn\nMargret\nMolly\nOzella\nRamona\nRena\nSondra\nWillene\nBetsy\nBonita\nCassie\nCecelia\nDean\nDessie\nEugenia\nFredia\nIma\nJan\nJeanie\nJeannette\nJeraldine\nJohn\nLelia\nLuella\nMandy\nMargarett\nMarguerite\nMerle\nMyrtice\nMyrtis\nNan\nNola\nOdell\nOphelia\nSammie\nSaundra\nBecky\nBette\nCharline\nChristene\nClaudie\nCordelia\nCorene\nDiana\nElma\nEmmie\nFlorine\nFreida\nGene\nHannah\nJamie\nJeffie\nLaverne\nLily\nMagnolia\nMalinda\nNita\nTeresa\nVictoria\nVirgie\nZelma\nAlta\nAngela\nAnnetta\nBarbra\nBobbye\nClarice\nDale\nDannie\nDaphne\nDeanna\nEaster\nEdwina\nElna\nEra\nFlossie\nGeraldean\nGertha\nGinger\nGlynda\nHellen\nIva\nJayne\nJeanetta\nJenny\nKate\nKaye\nLavonia\nLeatha\nLonnie\nLucretia\nLynette\nMarlene\nMarsha\nMaureen\nMozell\nNedra\nNona\nOcie\nOzell\nPatrica\nPortia\nRegina\nRobert\nRosalyn\nRosia\nTina\nVoncille\nWillia\nWinifred\nAbbie\nAlene\nAlfreda\nAline\nArlean\nBerniece\nBeth\nCarlene\nCelia\nCeola\nCharity\nClementine\nCleo\nCorrie\nCorrine\nDeborah\nDorothea\nDot\nEarlie\nEmilie\nEster\nEthelene\nFaith\nGayla\nGearldine\nGeorge\nGwen\nHarriette\nHettie\nJanell\nJaunita\nJohnie\nKatheryn\nKattie\nLana\nLettie\nLilly\nLorena\nLoretha\nLorraine\nLoyce\nMadelyn\nMammie\nMarcella\nMickey\nMozella\nNella\nOvetta\nPamela\nRetha\nRhonda\nRobin\nRoxie\nSabra\nSamella\nSonia\nTempie\nToni\nVersie\nVesta\nWilliam\nZola\nZora\nMary\nBetty\nBarbara\nDorothy\nLinda\nPatricia\nMartha\nCarolyn\nShirley\nAnnie\nMargaret\nJoyce\nSandra\nElizabeth\nDoris\nPeggy\nSarah\nWillie\nBrenda\nHelen\nNancy\nFrances\nJudy\nRuby\nVirginia\nAlice\nGloria\nGlenda\nCarol\nJanice\nPatsy\nLillie\nEmma\nJo\nWanda\nMinnie\nMattie\nMildred\nEvelyn\nJudith\nAnn\nCharlotte\nLouise\nJohnnie\nJulia\nGeraldine\nJuanita\nSara\nBobbie\nCatherine\nClara\nRuth\nJoan\nEthel\nMarie\nRebecca\nBonnie\nEdna\nMargie\nBertha\nJean\nJessie\nBessie\nBernice\nSylvia\nRosie\nThelma\nCarrie\nBettye\nElla\nIda\nNellie\nLaura\nSue\nJane\nFannie\nLula\nGladys\nNorma\nGeorgia\nJeanette\nAnnette\nJosephine\nRosa\nHazel\nChristine\nBillie\nWilma\nJimmie\nLois\nFaye\nGwendolyn\nEva\nMyra\nAnna\nEleanor\nKatie\nVera\nBeverly\nDelores\nEllen\nEdith\nHattie\nCora\nDonna\nJanet\nSusie\nMaggie\nRose\nSharon\nMae\nMarilyn\nLillian\nVivian\nAudrey\nJune\nKatherine\nCarole\nVelma\nDaisy\nMarjorie\nLucille\nMamie\nPhyllis\nShelby\nAnne\nEarnestine\nJacqueline\nMaxine\nBettie\nLynda\nAnita\nJoann\nLola\nRachel\nMarion\nLoretta\nNettie\nLucy\nMelba\nSusan\nViola\nJanie\nMyrtle\nElsie\nEula\nGail\nIrene\nAlma\nBeatrice\nHilda\nPauline\nYvonne\nEloise\nFlora\nEssie\nPearlie\nStella\nEmily\nGeneva\nRita\nSherry\nKathryn\nReba\nDeloris\nElaine\nFrankie\nJackie\nJewell\nJoy\nSally\nFlorence\nLena\nTommie\nEunice\nKay\nMarian\nRobbie\nJewel\nDiane\nDora\nPriscilla\nRoberta\nSadie\nClaudia\nConnie\nEddie\nErnestine\nOllie\nMable\nOra\nAddie\nAgnes\nCallie\nLizzie\nNelda\nNell\nRuthie\nAlberta\nErma\nEtta\nGayle\nOla\nAda\nEsther\nGrace\nGracie\nKathleen\nOlivia\nRosetta\nSallie\nImogene\nIrma\nLela\nQueen\nDelois\nDianne\nInez\nNina\nOdessa\nJennie\nJerry\nKaren\nNora\nWilla\nDolores\nFay\nPaula\nTheresa\nDorthy\nHarriet\nCynthia\nEarline\nPaulette\nPearl\nSyble\nDella\nDollie\nIris\nJoanne\nLou\nSheila\nFreddie\nJannie\nCharlie\nJacquelyn\nJulie\nLila\nOpal\nSybil\nAmelia\nElouise\nGertrude\nPat\nBeulah\nCharlene\nDixie\nLottie\nRosemary\nAmy\nCaroline\nEstelle\nIna\nJosie\nKathy\nLorene\nBecky\nDonnie\nLee\nLeola\nNaomi\nPolly\nViolet\nAmanda\nBennie\nCecelia\nClarice\nDiana\nEstella\nGaynell\nJerrie\nLeona\nMavis\nMillie\nCelestine\nEffie\nElnora\nJames\nLessie\nMollie\nClaudette\nConstance\nCornelia\nGearldine\nHarriett\nIla\nJeanne\nMaudie\nRamona\nSaundra\nTeresa\nWillodean\nAdell\nAngela\nArlene\nFreida\nGussie\nHenrietta\nIva\nJeannette\nLue\nMarcia\nMiriam\nPamela\nWilda\nEdwina\nEliza\nFrancis\nFreda\nGay\nJuliette\nLenora\nLorine\nLucile\nMabel\nOphelia\nPatty\nSammie\nSuzanne\nWinnie\nBlanche\nBobby\nCelia\nCorine\nEster\nInell\nLaverne\nLuvenia\nMarsha\nMolly\nMyrna\nNadine\nSondra\nTerry\nVicki\nVictoria\nBetsy\nCecilia\nCharles\nGwen\nJanis\nJenny\nJeraldine\nJoe\nKaye\nLana\nLeslie\nLonnie\nLucretia\nLydia\nLynn\nMay\nRetha\nRoxie\nSharron\nToni\nVerna\nZelma\nAlyce\nAngie\nBette\nCleo\nDean\nDelia\nDelilah\nEarlene\nEra\nEugenia\nFlorine\nGertie\nHannah\nJan\nLeila\nLouella\nMadeline\nMargarett\nMarianne\nMarva\nMyrtice\nPenelope\nVirgie\nVoncile\nWillia\nAugusta\nBertie\nBeth\nClaudie\nDolly\nEmogene\nEvie\nFlossie\nGerry\nGertha\nHellen\nJanette\nJessica\nJill\nJoanna\nLelia\nLetha\nLoraine\nLucinda\nMagnolia\nMargarette\nMerle\nMickey\nNannie\nOlive\nRena\nRosalyn\nSonja\nArthur\nClaire\nDeloise\nDorthey\nDottie\nEarlean\nIra\nJeanie\nJeannie\nJolene\nLettie\nLouvenia\nMatilda\nMaureen\nMelva\nMona\nNola\nNona\nOdell\nPeggie\nRegina\nRobert\nRosalie\nRosalind\nRosia\nRubye\nVerdell\nVeronica\nWillene\nAlicia\nAudry\nAurelia\nBonita\nCamilla\nCarolyne\nCathryn\nCecile\nCeola\nCherie\nCindy\nCostella\nDarlene\nDessie\nDinah\nDorothea\nEartha\nEileen\nElma\nEverlean\nFloretta\nFredia\nGlennie\nHester\nJaunita\nJudie\nKattie\nKitty\nLavern\nLorraine\nLudie\nLuella\nLynne\nMadelyn\nMaude\nMittie\nMyrtie\nNan\nOssie\nPansy\nRhonda\nSamuel\nSelena\nSidney\nVernell\nWilliam\nAlfreda\nAlfredia\nAretha\nAva\nBerniece\nBeverley\nBirdie\nBirtha\nBobbye\nCarlena\nCarroll\nCeleste\nCharlsie\nCheryl\nClassie\nCorene\nCorrie\nDana\nDot\nEarlie\nGaye\nGearldean\nGennie\nGeorgiana\nGlinda\nGlynda\nGreta\nIdella\nIlene\nIola\nIsabella\nIsabelle\nJannette\nJettie\nJohnny\nKatheryn\nKaty\nLaurie\nLavada\nLilla\nLilly\nLily\nLinnie\nLora\nLouisa\nLuverne\nMalinda\nMaple\nMargret\nMargrett\nMarguerite\nMaxie\nMelanie\nMerlene\nMina\nOuida\nPatti\nPearlean\nPenny\nRutha\nTreva\nTrudy\nViva\nWilhelmina\nWynell\nZadie\nMary\nBetty\nBarbara\nLinda\nPatricia\nDorothy\nCarolyn\nShirley\nMartha\nAnnie\nSandra\nMargaret\nBrenda\nJoyce\nElizabeth\nDoris\nPeggy\nNancy\nJudy\nSarah\nHelen\nWillie\nCarol\nVirginia\nGlenda\nFrances\nRuby\nGloria\nAlice\nJanice\nCharlotte\nWanda\nRebecca\nMildred\nJudith\nPatsy\nAnn\nJo\nLillie\nEmma\nMattie\nEvelyn\nBobbie\nEdna\nBonnie\nGeraldine\nSara\nCatherine\nMinnie\nJoan\nRuth\nEthel\nJulia\nJuanita\nJohnnie\nJean\nLouise\nClara\nBertha\nMarie\nMargie\nRosie\nJessie\nSharon\nJeanette\nGeorgia\nJane\nBernice\nLaura\nBessie\nSylvia\nDonna\nGladys\nSue\nNorma\nBettye\nChristine\nElla\nFaye\nNellie\nThelma\nLois\nCarrie\nGwendolyn\nFannie\nLula\nBeverly\nBillie\nHattie\nHazel\nJimmie\nIda\nLillian\nRita\nJacqueline\nMarilyn\nMamie\nPhyllis\nRose\nJosephine\nRosa\nWilma\nSusan\nEva\nJanet\nKatherine\nAnnette\nEleanor\nSherry\nKatie\nCora\nLynda\nVivian\nVera\nEdith\nJoann\nBeatrice\nBettie\nMyra\nGail\nMaxine\nEarnestine\nMyrtle\nDelores\nJanie\nAnita\nErnestine\nGeneva\nDaisy\nIrene\nRachel\nDianne\nLucille\nMae\nAlma\nEloise\nSusie\nAnna\nAnne\nPaulette\nStella\nConnie\nEllen\nFrankie\nJackie\nLucy\nMarjorie\nCarole\nFlora\nPauline\nSally\nElaine\nVelma\nMaggie\nReba\nDiane\nLola\nLoretta\nPearlie\nKathryn\nLena\nHilda\nJewel\nMarion\nMelba\nNettie\nViola\nClaudia\nDeloris\nElsie\nEunice\nShelby\nTommie\nAlberta\nAudrey\nNina\nOla\nAda\nDora\nEula\nYvonne\nAgnes\nFlorence\nLizzie\nMable\nSadie\nCynthia\nEddie\nGrace\nGracie\nKay\nPriscilla\nKathleen\nRobbie\nEmily\nEssie\nJune\nRoberta\nRuthie\nSallie\nOllie\nPaula\nHenrietta\nInez\nJacquelyn\nDella\nKaren\nSheila\nTheresa\nAddie\nLeola\nMarian\nGertrude\nJennie\nLorene\nNelda\nPat\nCharlene\nJannie\nJoy\nNora\nOpal\nPearl\nRosetta\nEsther\nJoanne\nPamela\nRosemary\nDiana\nDorthy\nJewell\nOlivia\nPolly\nMavis\nQueen\nCharlie\nEarline\nErma\nGayle\nJerry\nLucile\nLynn\nWilla\nEugenia\nImogene\nIris\nOra\nCheryl\nElouise\nHarriet\nMarsha\nSybil\nBennie\nJeannette\nKathy\nNell\nBeulah\nCallie\nDolores\nFreddie\nIrma\nLela\nOdessa\nSuzanne\nDelois\nIva\nLila\nTeresa\nBecky\nConstance\nCornelia\nElnora\nFreda\nJames\nJoe\nLottie\nMabel\nMarguerite\nRamona\nRegina\nTerry\nVerna\nEdwina\nEstelle\nFay\nGearldine\nJosie\nJulie\nMarcia\nMollie\nNadine\nNaomi\nPeggie\nSyble\nCecilia\nDottie\nEstella\nEtta\nFrancis\nLana\nAugusta\nCecelia\nCorine\nDarlene\nDonnie\nIna\nLeona\nLou\nMiriam\nRosia\nVeronica\nVictoria\nArlene\nBeth\nCaroline\nDixie\nEarlene\nEliza\nJenny\nLeila\nLessie\nLorraine\nPatty\nRena\nAllie\nBetsy\nBlanche\nCelia\nDollie\nLydia\nMay\nMillie\nSammie\nVicki\nViolet\nVoncile\nWillodean\nAmy\nAndrea\nCathy\nClarice\nClaudette\nCleo\nGaynell\nHarriett\nIla\nJan\nJeanne\nJeraldine\nJuliette\nLelia\nLue\nMelanie\nVickie\nAdell\nAmanda\nBette\nClaudie\nDeanna\nDessie\nEffie\nFreida\nGussie\nJanis\nJerrie\nJettie\nLee\nLora\nLucinda\nPearline\nShelia\nSondra\nVirgie\nWinnie\nAmelia\nAngela\nClementine\nFlossie\nGlinda\nIma\nIra\nJaunita\nLaverne\nLenora\nMalinda\nMolly\nMona\nNannie\nOphelia\nPatrica\nRetha\nReva\nRobert\nRosalyn\nRoxie\nSonja\nAllene\nDale\nFlorine\nGay\nGertha\nGinger\nJeanie\nKaye\nLinnie\nLouisa\nLuvenia\nMarcella\nMargarette\nMittie\nMozell\nMyrtis\nOcie\nPinkie\nVerdell\nWynell\nAlene\nAloma\nAlva\nAlyce\nCeola\nDannie\nEarlean\nEileen\nElma\nElmira\nElvira\nEra\nEster\nFaith\nGwen\nHenry\nHester\nInell\nJanette\nJeannie\nJohnny\nKattie\nLorine\nLouvenia\nMadeline\nMarcell\nMargarett\nNona\nOuida\nPenelope\nSaundra\nSavannah\nScarlett\nSherron\nVernell\nWillia\nAbbie\nAntoinette\nBarbra\nBernadine\nCamilla\nCarla\nCarmen\nCharles\nClaire\nCorrine\nDeloise\nDorris\nDortha\nEarlie\nEaster\nEvon\nGennie\nGirtha\nGlennie\nGoldie\nJoanna\nJohn\nJonnie\nJudie\nKathrine\nLettie\nLilly\nLily\nLonnie\nLynne\nMagdalene\nMarianne\nMarlene\nMarva\nMaudie\nMaureen\nMerle\nMichael\nMickey\nMyrna\nNita\nRegenia\nSharron\nTessie\nTressie\nUnknown\nWilda\nWilliam\nAlpha\nAlta\nAngie\nAnnell\nAnnice\nArcola\nAurelia\nBertie\nBobby\nCarlene\nCassie\nCharlena\nCharline\nCharlsie\nCherry\nClaudine\nCorene\nDean\nDona\nDovie\nElinor\nElna\nElva\nEvie\nFayrene\nGaye\nGeraldean\nGlenna\nGreta\nHelene\nIdell\nIlene\nIola\nIsabella\nJamie\nJimmy\nJolene\nJudi\nKitty\nLouella\nMandy\nMargret\nMaria\nMariah\nMatilda\nMaurine\nMelinda\nMelva\nMyrtie\nNan\nNyoka\nPearlene\nPenny\nPortia\nRoma\nRosalind\nRoy\nRubye\nSandy\nShelba\nSherrie\nSophia\nToni\nVallie\nVernice\nMary\nLinda\nBarbara\nBetty\nPatricia\nCarolyn\nDorothy\nShirley\nMartha\nAnnie\nSandra\nBrenda\nJudy\nMargaret\nElizabeth\nPeggy\nNancy\nDoris\nJoyce\nSarah\nWillie\nCarol\nGlenda\nGloria\nJanice\nHelen\nFrances\nVirginia\nAlice\nRuby\nCharlotte\nJudith\nRebecca\nMildred\nWanda\nAnn\nEvelyn\nEmma\nMattie\nPatsy\nJo\nLillie\nGeraldine\nJohnnie\nJuanita\nBobbie\nLouise\nEdna\nBertha\nJoan\nCatherine\nJulia\nBessie\nMinnie\nBonnie\nJean\nSara\nJane\nSharon\nEthel\nRuth\nDonna\nBettye\nClara\nMarie\nBernice\nLois\nMarilyn\nSue\nBeverly\nGeorgia\nJeanette\nRosie\nCarrie\nGwendolyn\nChristine\nSylvia\nElla\nGladys\nJacqueline\nRosa\nMargie\nNellie\nCheryl\nIda\nJanet\nPhyllis\nDiane\nLynda\nLaura\nSusan\nHazel\nNorma\nBillie\nFannie\nFaye\nJessie\nSherry\nLula\nJosephine\nEdith\nThelma\nLillian\nEva\nHattie\nBettie\nSusie\nKatie\nRose\nKatherine\nAnnette\nElaine\nWilma\nDianne\nDelores\nLucy\nCarole\nConnie\nJoann\nMae\nAnna\nMyra\nVelma\nDaisy\nGeneva\nEarnestine\nVera\nVivian\nJackie\nJimmie\nLoretta\nEloise\nMarjorie\nPaula\nAnne\nKathleen\nBeatrice\nMaggie\nIrene\nKathryn\nAlma\nJewel\nEleanor\nEmily\nGail\nJanie\nKay\nEssie\nReba\nShelby\nEllen\nMelba\nErnestine\nKaren\nMaxine\nPamela\nPauline\nAnita\nDora\nNettie\nOllie\nFlora\nMarion\nPaulette\nOra\nSadie\nYvonne\nClaudia\nFrankie\nRoberta\nSally\nNina\nOla\nCora\nEddie\nHilda\nJune\nPearlie\nPriscilla\nEunice\nFlorence\nGrace\nJoy\nLucille\nMamie\nRachel\nRosetta\nSallie\nSheila\nCynthia\nEsther\nGertrude\nLena\nTommie\nEula\nJoanne\nMarian\nRita\nViola\nDeloris\nJerry\nMyrtle\nRuthie\nStella\nTheresa\nElsie\nErma\nDiana\nAgnes\nDorthy\nLela\nRobbie\nAlberta\nLorene\nMable\nAda\nJannie\nLola\nDelois\nPolly\nCallie\nEarline\nGayle\nIrma\nKathy\nNelda\nNora\nOlivia\nFrancis\nMavis\nAudrey\nHenrietta\nPearl\nWilla\nAmanda\nElouise\nFreddie\nInez\nJacquelyn\nJeannette\nLizzie\nMarcia\nQueen\nRosemary\nAddie\nJennie\nLeola\nMarsha\nNadine\nNaomi\nSuzanne\nCharlene\nGracie\nHarriet\nJosie\nLou\nAngela\nBecky\nClaudette\nLee\nLottie\nSharron\nAmelia\nAndrea\nBennie\nDeborah\nEdwina\nEtta\nEugenia\nJewell\nPat\nImogene\nLenora\nLynn\nSyble\nVeronica\nDottie\nJoe\nLana\nLucile\nOpal\nBeulah\nDollie\nEffie\nElnora\nJan\nJulie\nMiriam\nNell\nRubye\nSybil\nVicki\nCecelia\nCelia\nCherry\nDella\nEstella\nGearldine\nTeresa\nVictoria\nWilda\nCharlie\nCleo\nCorine\nCornelia\nEliza\nIris\nJanis\nJeanne\nJeannie\nMarguerite\nMelinda\nOdessa\nPeggie\nPenny\nRamona\nSaundra\nBetsy\nCaroline\nCecilia\nConstance\nDixie\nDolores\nEarlene\nHarriett\nJames\nLelia\nLila\nLydia\nRegina\nSammie\nAmy\nArlene\nAugusta\nDonnie\nGay\nGussie\nJenny\nLeona\nLessie\nMay\nWinnie\nBette\nCamilla\nDinah\nEstelle\nFreda\nGaynell\nHellen\nMabel\nMarcella\nRoxie\nTrudy\nVerdell\nVoncile\nZola\nBernadette\nBeth\nBobby\nBonita\nDianna\nDolly\nEileen\nEster\nGertha\nIna\nJanette\nJill\nLettie\nLorine\nMarva\nMelanie\nMelva\nMollie\nMyrtis\nNona\nPatty\nPinkie\nSondra\nUnknown\nVerna\nVernell\nViolet\nWillodean\nBlanche\nCathy\nDarlene\nDeanna\nDorris\nFay\nIra\nIva\nJennifer\nJohnie\nJuliette\nKaye\nLeila\nLorraine\nMargarette\nMaria\nMazie\nMyrna\nNan\nOdell\nRosalind\nRosalyn\nRosia\nWilliam\nAlfreda\nBertie\nCamille\nCelestine\nClaire\nClarice\nClaudie\nCorrine\nElma\nElva\nEvangeline\nFlorine\nFlossie\nFreida\nGinger\nGlynda\nIla\nIma\nJamie\nJettie\nJoanna\nKattie\nKitty\nLetha\nLilly\nLue\nMadeline\nMargarett\nMarlene\nMatilda\nMillie\nMuriel\nMyrtice\nNovella\nOphelia\nRetha\nRhonda\nShelia\nSonja\nZella\nAdell\nAllene\nAlta\nAnnice\nBernadine\nCarmen\nClementine\nCorene\nDana\nDelia\nElvira\nGaynelle\nGlinda\nIsabella\nJohn\nJonnie\nJudi\nJudie\nKathrine\nLaverne\nLeslie\nLinnie\nLora\nLouella\nLucinda\nMagdalene\nMandy\nMarianne\nMaureen\nNannie\nNella\nPearlene\nPearline\nPhillis\nRobert\nSavannah\nSophia\nStephanie\nTerry\nVernice\nVickie\nWillia\nZelma\nAdele\nAileen\nAlene\nAllie\nAngeline\nAretha\nBarbra\nBerta\nBeverley\nBobbye\nCecile\nChristene\nCindy\nDannie\nDell\nDelora\nEarlie\nEaster\nEra\nEthelene\nGaye\nGenevia\nGennie\nGwen\nInell\nIola\nIona\nIvory\nJacquline\nJanett\nJayne\nJerri\nJerrie\nKate\nLaurie\nLily\nLovie\nLucretia\nLuella\nMalinda\nNola\nOcie\nOzella\nPenelope\nRena\nRenee\nRutha\nSelena\nShannon\nSherrell\nSherrie\nSusanne\nThomas\nThomasine\nZelda\nZeola\nMary\nLinda\nBarbara\nBetty\nPatricia\nShirley\nCarolyn\nDorothy\nAnnie\nMartha\nSandra\nJudy\nBrenda\nMargaret\nGloria\nJoyce\nElizabeth\nPeggy\nDoris\nJanice\nCarol\nSarah\nNancy\nWillie\nHelen\nFrances\nVirginia\nAlice\nGlenda\nRuby\nJudith\nCharlotte\nRebecca\nWanda\nJo\nMattie\nMildred\nEvelyn\nLillie\nGeraldine\nSharon\nAnn\nCatherine\nJulia\nPatsy\nEmma\nJohnnie\nDonna\nEdna\nBobbie\nSusan\nJuanita\nSara\nMarie\nJoan\nMarilyn\nJean\nBonnie\nLaura\nJane\nMinnie\nRosie\nRuth\nClara\nLouise\nBessie\nBeverly\nBernice\nJacqueline\nJanet\nNorma\nEthel\nGwendolyn\nSylvia\nJessie\nBettye\nLois\nMargie\nThelma\nBertha\nElla\nNellie\nSue\nLynda\nChristine\nLula\nRose\nCarrie\nDiane\nVivian\nGeorgia\nJosephine\nCheryl\nHazel\nIda\nJeanette\nWilma\nGladys\nAnna\nFaye\nSherry\nSusie\nAnnette\nDianne\nEllen\nGail\nFannie\nVera\nPaula\nBettie\nConnie\nDelores\nHattie\nEva\nPhyllis\nRita\nRosa\nElaine\nDeloris\nKatherine\nMyra\nBillie\nLillian\nAnne\nCora\nEmily\nMaxine\nAlma\nKatie\nLoretta\nMae\nMamie\nDaisy\nDiana\nErnestine\nGeneva\nJoann\nKaren\nRachel\nEdith\nEleanor\nJackie\nJanie\nKathryn\nKay\nLucy\nPaulette\nAnita\nIrene\nSally\nCarole\nJimmie\nSheila\nEarnestine\nEloise\nMaggie\nMarjorie\nAlberta\nGrace\nLola\nKathleen\nBeatrice\nLizzie\nEssie\nPamela\nYvonne\nJewel\nMelba\nPauline\nHenrietta\nHilda\nMarion\nPearlie\nTheresa\nVelma\nMyrtle\nStella\nDora\nCynthia\nSadie\nRosemary\nAudrey\nEddie\nFlora\nFrankie\nJoanne\nLena\nTommie\nElsie\nFlorence\nGayle\nJune\nLucille\nOllie\nRoberta\nSuzanne\nWilla\nCallie\nClaudia\nJoy\nLynn\nRosetta\nRuthie\nEula\nEunice\nMarcia\nOra\nSallie\nViola\nIrma\nKathy\nNelda\nNina\nNora\nOla\nOlivia\nReba\nRobbie\nAda\nAgnes\nDella\nNell\nShelby\nJennie\nLela\nNettie\nGracie\nLucile\nMable\nVictoria\nEarline\nMarian\nPat\nTeresa\nAddie\nAngela\nEsther\nJennifer\nMarsha\nDorthy\nFreda\nInez\nLorene\nNaomi\nAmanda\nConstance\nDelois\nDianna\nJannie\nPearl\nPriscilla\nBeulah\nEtta\nJanis\nJerry\nLeola\nLydia\nCorine\nElnora\nErma\nFreddie\nGertrude\nJacquelyn\nMiriam\nSybil\nVerna\nVeronica\nAmelia\nCharlene\nIna\nOpal\nPeggie\nBennie\nCharlie\nDana\nDolores\nIris\nJosie\nJulie\nLana\nMalinda\nMarcella\nOdessa\nPolly\nSharron\nShelia\nVicki\nViolet\nArlene\nDeborah\nEarlene\nFay\nJewell\nMavis\nQueen\nVickie\nWinnie\nCaroline\nCecelia\nEliza\nEstella\nFrancis\nGinger\nJeanne\nLee\nLelia\nLenora\nLeona\nLila\nLorraine\nLou\nLucinda\nMargarett\nTina\nCelia\nEffie\nHarriet\nIva\nJan\nJeannette\nLottie\nMarianne\nVoncile\nAmy\nAndrea\nAugusta\nCornelia\nDixie\nEartha\nElma\nElouise\nGay\nImogene\nJeannie\nLeslie\nMyrtis\nRosalyn\nSyble\nToni\nBecky\nBobby\nClaudette\nDannie\nDarlene\nDeanna\nDiann\nDinah\nDollie\nDonnie\nEaster\nEdwina\nGlynda\nJeanie\nLessie\nLonnie\nLue\nMarguerite\nMaria\nMillie\nMollie\nRegina\nRosia\nTerry\nBlanche\nCharles\nCherry\nDottie\nDovie\nEarlean\nIla\nInell\nJames\nJanette\nJeraldine\nJohn\nLettie\nMarva\nMelanie\nMolly\nNona\nPearline\nRetha\nRoxie\nSheryl\nWillodean\nAlfreda\nAnnice\nAntoinette\nBernadette\nBeth\nBetsy\nEllie\nIsabella\nJerrie\nJoanna\nJuliette\nLaverne\nLily\nLouella\nLynne\nMadeline\nMarlene\nMay\nMelinda\nMelva\nNadine\nPenny\nRamona\nRobert\nRosalind\nSaundra\nSophia\nTrudy\nUnknown\nArthur\nBirdie\nCamilla\nCarlene\nClarice\nEra\nEstelle\nGaynell\nGertha\nGertie\nHarriett\nIola\nJamie\nJimmy\nJoe\nJudie\nKattie\nKaye\nLinnie\nLoraine\nLovie\nMona\nPattie\nQueenie\nRobin\nRubye\nSammie\nSandy\nSonja\nVicky\nVirgie\nWilda\nWillia\nZelma\nAngeline\nCarroll\nCecilia\nCindy\nClementine\nCleo\nDian\nFlorine\nFreida\nGennie\nGwen\nHannah\nHellen\nHester\nIma\nIra\nKitty\nLaurie\nLeatha\nLora\nLouvenia\nMittie\nOcie\nOssie\nOuida\nPatty\nSavannah\nSharlene\nValerie\nVerdell\nVesta\nVickey\nVonnie\nAdell\nAlicia\nAlta\nBelinda\nBobbye\nCelestine\nChristeen\nChristina\nClaire\nDale\nDelia\nDoretha\nElois\nEster\nGary\nGearldine\nGussie\nJaunita\nJill\nJohnny\nLeila\nLoise\nLorine\nLyndia\nMadie\nMargret\nMaudie\nMyrna\nNannie\nPinkie\nRena\nRichard\nSheron\nSusanne\nTiny\nVernell\nWillow\nYvette\nMary\nLinda\nBarbara\nBetty\nPatricia\nCarolyn\nShirley\nBrenda\nSandra\nDorothy\nJudy\nMartha\nAnnie\nMargaret\nJanice\nPeggy\nJoyce\nCarol\nNancy\nElizabeth\nGlenda\nGloria\nSarah\nHelen\nDoris\nWanda\nFrances\nVirginia\nWillie\nSharon\nAlice\nRuby\nCharlotte\nPatsy\nJo\nDonna\nSusan\nRebecca\nJudith\nGeraldine\nMattie\nJoan\nJuanita\nCatherine\nJulia\nBeverly\nEvelyn\nAnn\nEthel\nJane\nEmma\nRosie\nSherry\nLaura\nJacqueline\nMarilyn\nGwendolyn\nLillie\nBobbie\nEdna\nMildred\nLouise\nSylvia\nMarie\nJohnnie\nLynda\nSara\nCheryl\nBonnie\nBertha\nLula\nJean\nRuth\nDiane\nBettye\nPhyllis\nNorma\nCarrie\nClara\nSue\nJessie\nConnie\nGeorgia\nMinnie\nChristine\nSheila\nBessie\nElla\nLois\nIda\nJanet\nAnita\nAnna\nElaine\nJeanette\nVivian\nCynthia\nDianne\nEva\nKatherine\nThelma\nJanie\nFaye\nHazel\nRita\nGladys\nRose\nBernice\nFannie\nKaren\nMargie\nNellie\nVera\nDelores\nJosephine\nGail\nLoretta\nLucy\nAnnette\nHattie\nKathryn\nRosa\nSusie\nEllen\nPamela\nAnne\nCora\nWilma\nDeloris\nJimmie\nKatie\nDiana\nBettie\nJackie\nMyra\nPaula\nGeneva\nEarnestine\nEdith\nLillian\nPaulette\nEmily\nJune\nMarjorie\nYvonne\nBillie\nNina\nMamie\nKathleen\nMae\nTheresa\nEloise\nPearlie\nRosemary\nSally\nEula\nJoann\nIrene\nLola\nMaggie\nRachel\nEleanor\nJanis\nKay\nMaxine\nMelba\nPauline\nErnestine\nJoy\nLucille\nCharlene\nDaisy\nShelby\nStella\nEssie\nRobbie\nSuzanne\nAudrey\nBeatrice\nClaudia\nAda\nCarole\nHilda\nOllie\nPriscilla\nAlberta\nAlma\nConstance\nDelois\nJennifer\nReba\nEsther\nJewel\nLizzie\nEunice\nFlorence\nGrace\nMarsha\nOra\nRuthie\nViola\nMarion\nDeborah\nGayle\nJacquelyn\nLena\nMarcia\nNora\nSadie\nDorthy\nFrankie\nLynn\nRoberta\nRosetta\nSallie\nEddie\nKathy\nMable\nShelia\nTerry\nVelma\nAngela\nGracie\nMyrtle\nNelda\nPat\nTeresa\nVicki\nHenrietta\nNettie\nTommie\nBecky\nDora\nEarline\nFlora\nMarian\nFreda\nJerry\nMiriam\nOla\nSybil\nVoncile\nJennie\nJoanne\nOlivia\nQueen\nBennie\nElsie\nHarriet\nInez\nJan\nLana\nRegina\nWilla\nErma\nGertrude\nLou\nNaomi\nSheryl\nBeulah\nDella\nEtta\nJosie\nAddie\nCallie\nCherry\nDarlene\nIrma\nJannie\nLeola\nMavis\nPolly\nVictoria\nAmelia\nEdwina\nFrancis\nFreddie\nGinger\nJenny\nLee\nLucile\nLydia\nMaria\nArlene\nBelinda\nCharlie\nDale\nDixie\nFreida\nLorraine\nLottie\nOpal\nPearl\nRamona\nSonja\nAgnes\nCaroline\nEstella\nJeanne\nJeannette\nLorene\nMadeline\nSaundra\nSharron\nViolet\nAndrea\nCornelia\nDolores\nEarlene\nJanette\nJeannie\nJewell\nLaverne\nLeona\nNell\nPenny\nVerna\nVickie\nBobby\nCathy\nEffie\nGearldine\nJames\nJulie\nMabel\nSondra\nAmanda\nClaudette\nElouise\nGaynell\nLynne\nDana\nDiann\nEster\nGay\nGlinda\nHarriett\nHellen\nImogene\nIris\nMarlene\nMillie\nMollie\nNadine\nSyble\nToni\nWilda\nWillodean\nBlanche\nCelia\nDianna\nDinah\nJamie\nJoe\nKatrina\nKaye\nLela\nLila\nLilly\nMaureen\nMona\nPeggie\nPenelope\nTrudy\nUnknown\nAmy\nBetsy\nBonita\nDollie\nEliza\nElnora\nEugenia\nGale\nGwen\nJayne\nJeraldine\nLelia\nLeslie\nLessie\nLetha\nMarcella\nMatilda\nPatrica\nPatty\nRubye\nWinnie\nYolanda\nBernadette\nCarmen\nCindy\nDeanna\nFrancine\nGussie\nJeanie\nJuliette\nLora\nMarva\nNona\nOphelia\nReva\nRosia\nSammie\nTina\nVirgie\nWalter\nAngeline\nArthur\nAugusta\nCarla\nCarrol\nCelestine\nCorine\nDannie\nDean\nDian\nDonnie\nFlorine\nGayla\nJerrie\nOctavia\nOdessa\nPam\nPinkie\nRosalyn\nRoxie\nSherrie\nStephanie\nValeria\nVicky\nAlyce\nClaire\nDortha\nElois\nEstelle\nGilda\nInell\nIra\nJill\nJoanna\nJonnie\nJudie\nKathrine\nLenora\nLibby\nLoraine\nMagnolia\nMargarett\nMargarette\nMay\nMelanie\nMittie\nNita\nRena\nRhoda\nRhonda\nRobert\nSandy\nSherron\nSibyl\nVoncille\nCandace\nCassie\nCecelia\nCecilia\nCheri\nClarice\nDelorise\nDottie\nEarlean\nEaster\nEileen\nFay\nFlossie\nGertha\nIlean\nIva\nJeannine\nJettie\nJohn\nJudi\nKattie\nKitty\nLera\nLovie\nLuella\nMaude\nMelinda\nMeredith\nMerry\nMichele\nMolly\nNan\nOuida\nPearlene\nPearline\nRoslyn\nSharyn\nSherri\nSuzan\nVerdell\nVeronica\nZenobia\nAllie\nAva\nBerniece\nBette\nBobbye\nCamellia\nCamilla\nCassandra\nCharity\nCharles\nCherrie\nColleen\nCostella\nDelia\nDessie\nDovie\nElma\nFloretta\nGary\nGenevieve\nGennie\nHester\nHettie\nHope\nIla\nIna\nIngrid\nIvory\nJacqulyn\nJanett\nJaunita\nLauretta\nLeigh\nLily\nLinnie\nLorine\nLudie\nMadelyn\nMalinda\nMandy\nMarianne\nMaudie\nMazie\nMerilyn\nMichael\nMyrna\nMyrtie\nNeva\nNila\nOcie\nOssie\nRosalind\nRoy\nSherrill\nTerri\nTommye\nTrisha\nVonnie\nWilliam\nWinifred\nWynona\nZelda\nZelma\nMary\nLinda\nPatricia\nBarbara\nBetty\nBrenda\nCarolyn\nSandra\nShirley\nJudy\nDorothy\nMartha\nAnnie\nJanice\nMargaret\nPeggy\nGloria\nElizabeth\nNancy\nGlenda\nJoyce\nDoris\nCarol\nSarah\nWanda\nHelen\nRebecca\nVirginia\nFrances\nAlice\nSharon\nRuby\nWillie\nJo\nJudith\nPatsy\nDonna\nCharlotte\nSusan\nEvelyn\nCatherine\nEthel\nDiane\nBeverly\nMarilyn\nJacqueline\nJoan\nGeraldine\nSherry\nCynthia\nJulia\nMattie\nAnn\nMildred\nGwendolyn\nEmma\nJane\nJohnnie\nEdna\nJuanita\nConnie\nLillie\nLaura\nSylvia\nPhyllis\nMinnie\nCheryl\nSara\nNorma\nSheila\nRita\nBobbie\nJanet\nRuth\nDianne\nLynda\nLouise\nClara\nRosie\nLois\nBettye\nChristine\nBernice\nBertha\nMarie\nElla\nJean\nJeanette\nCarrie\nMargie\nSue\nBonnie\nBessie\nGail\nHazel\nKatherine\nEva\nRosa\nMyra\nRose\nAnita\nVivian\nGeorgia\nLula\nThelma\nAlma\nElaine\nJessie\nGladys\nFannie\nJanie\nKaren\nAnna\nEdith\nPaula\nIda\nDeborah\nEarnestine\nFaye\nAnnette\nEllen\nJosephine\nMarsha\nStella\nPamela\nBillie\nDelores\nYvonne\nDeloris\nLoretta\nDiana\nHattie\nLillian\nBettie\nTeresa\nJackie\nKathleen\nMarion\nVera\nIrene\nJune\nKathryn\nMamie\nGeneva\nNellie\nKay\nMae\nMarjorie\nSusie\nJoann\nRosetta\nJanis\nLucy\nPaulette\nErnestine\nSally\nWilma\nEmily\nKathy\nJennifer\nMaggie\nShelia\nSuzanne\nTheresa\nMaxine\nRachel\nClaudia\nAnne\nCora\nDaisy\nEleanor\nKatie\nLucille\nVelma\nBeatrice\nDora\nNina\nCharlene\nConstance\nAudrey\nMable\nPriscilla\nEula\nHilda\nMelba\nSharron\nEssie\nRosemary\nFlora\nJimmie\nLynn\nDelois\nReba\nLizzie\nMarcia\nAlberta\nGayle\nOllie\nRegina\nEloise\nMyrtle\nRoberta\nCarole\nLena\nVicki\nJoy\nOla\nPauline\nJoanne\nNelda\nFrankie\nFreddie\nNora\nRobbie\nSallie\nCathy\nDarlene\nJewel\nEsther\nLola\nQueen\nSadie\nTommie\nAngela\nErma\nAddie\nBecky\nEunice\nGracie\nHarriet\nJannie\nLela\nDella\nEddie\nFlorence\nIrma\nJacquelyn\nJeanne\nPearlie\nAmelia\nArlene\nDolores\nNettie\nOlivia\nPat\nRuthie\nShelby\nGertrude\nJennie\nLana\nViola\nAda\nJan\nAmanda\nEstella\nHenrietta\nInez\nJosie\nSheryl\nSyble\nCharlie\nEarlene\nGinger\nGrace\nMarian\nPearl\nVeronica\nVickie\nAndrea\nBelinda\nDianna\nDixie\nElsie\nJulie\nRamona\nTerry\nEarline\nElouise\nLorraine\nLydia\nMaria\nMavis\nUnknown\nVictoria\nAgnes\nCorine\nDorthy\nJeannie\nJerry\nLou\nVoncile\nDebra\nLeona\nMiriam\nOra\nWilla\nCecelia\nDana\nFay\nFreda\nJuliette\nMelissa\nSybil\nBobby\nCaroline\nCecilia\nCornelia\nDale\nEileen\nEugenia\nFreida\nHarriett\nLessie\nLorene\nToni\nBetsy\nCherry\nClaudette\nDiann\nDinah\nEffie\nElnora\nEtta\nFrancis\nJamie\nJeannette\nLeola\nMarguerite\nMarva\nOdessa\nRhonda\nAlicia\nClemmie\nDollie\nGay\nLaverne\nLee\nLenora\nLynne\nMelinda\nMollie\nPatty\nSondra\nVerna\nViolet\nBennie\nBernadette\nBeth\nCallie\nCelia\nJames\nJanette\nJessica\nLila\nLora\nLorine\nMona\nNadine\nNaomi\nOpal\nSherrie\nSherron\nSonja\nStephanie\nVonda\nAntoinette\nBeulah\nCarla\nGayla\nGwen\nInell\nJeanie\nJenny\nJoanna\nKaye\nLeslie\nLottie\nLucile\nMargarett\nMaureen\nMillie\nNita\nPeggie\nPenny\nPolly\nRosalyn\nSaundra\nTina\nWilda\nWilliam\nAlfreda\nClarice\nDottie\nEdwina\nGlinda\nJoe\nJudie\nKitty\nLucinda\nMabel\nRena\nRosalind\nVernell\nWinnie\nYolanda\nAlyce\nAngeline\nAugusta\nCarmen\nCharles\nDannie\nDeloise\nDenise\nDonnie\nEliza\nEster\nGaynell\nGearldine\nGussie\nJeanetta\nJerrie\nLaurie\nLovie\nMeredith\nNan\nNell\nOphelia\nRubye\nAdell\nBernadine\nCandace\nCarlene\nCathrine\nCelestine\nDawn\nDian\nDorris\nFlorine\nFlossie\nHarriette\nJeraldine\nJimmy\nJohnny\nKathrine\nLibby\nLinnie\nLouvenia\nMelanie\nMolly\nNona\nTrudy\nAlexis\nAllie\nCassie\nClaire\nClementine\nCorene\nDeanna\nDelia\nDolly\nEarlie\nEra\nEvie\nGertha\nGilda\nHannah\nHettie\nImogene\nJettie\nJewell\nJonnie\nJudi\nKatrina\nLelia\nLettie\nLue\nMargo\nMarlene\nMickey\nMuriel\nPatrica\nPhoebe\nRegenia\nSandy\nSavannah\nSharyn\nSherrell\nSherri\nSonya\nWillodean\nWynell\nAbbie\nAlta\nAlva\nApril\nBlanch\nBlanche\nBonita\nCeola\nCheri\nCindy\nCleo\nCorean\nDebbie\nDoretha\nDovie\nFaith\nFrieda\nGale\nGary\nGennie\nGertie\nGlynda\nGreta\nGretchen\nGwenda\nIla\nIma\nIna\nIra\nIris\nIva\nJanett\nJerri\nKatharine\nLeatha\nLeatrice\nLetha\nMagnolia\nMandy\nMarcella\nMatilda\nMay\nNannie\nOcie\nOdell\nOlean\nOuida\nPam\nRetha\nRhoda\nRichard\nRutha\nSherrill\nSherryl\nTerri\nVerdell\nVicky\nVirgie\nBarbra\nBertie\nBeryl\nBette\nBilly\nCarnell\nCharity\nCharlsie\nCheryle\nDaphne\nDelories\nDelorise\nDessie\nDona\nEstelle\nEve\nFrancine\nGene\nIsabella\nJacquelyne\nJacquline\nJannette\nJeannine\nLily\nLonnie\nLorean\nMarianne\nMaudie\nMelvia\nMitzi\nMyrtis\nNella\nNola\nPinkie\nPrince\nQueenie\nRobert\nRobyn\nRomona\nRonda\nRoxie\nSammie\nSusanne\nValerie\nVeda\nVernice\nVida\nVoncille\nWilhelmina\nWillene\nWinifred\nZelma\nMary\nLinda\nBarbara\nPatricia\nBrenda\nBetty\nShirley\nCarolyn\nSandra\nJudy\nDorothy\nMartha\nAnnie\nJanice\nMargaret\nGloria\nPeggy\nElizabeth\nNancy\nJoyce\nCarol\nGlenda\nDoris\nWanda\nSarah\nDonna\nSusan\nRebecca\nSharon\nFrances\nVirginia\nRuby\nAlice\nCharlotte\nWillie\nJo\nDeborah\nPatsy\nBeverly\nHelen\nSherry\nEmma\nGeraldine\nCatherine\nCynthia\nGwendolyn\nJudith\nMildred\nCheryl\nAnn\nEthel\nMattie\nLillie\nConnie\nEvelyn\nJuanita\nJulia\nBobbie\nBonnie\nDiane\nJoan\nPhyllis\nJanet\nJacqueline\nJane\nMarilyn\nEdna\nLynda\nSheila\nSara\nRosie\nKaren\nJohnnie\nBessie\nCarrie\nPamela\nRita\nBertha\nJean\nPaula\nRose\nChristine\nLouise\nDianne\nLaura\nMarie\nRuth\nElla\nHattie\nMinnie\nMyra\nSue\nGeorgia\nSylvia\nBernice\nClara\nBettye\nLois\nMargie\nThelma\nFannie\nRosa\nJessie\nJosephine\nNorma\nDelores\nSusie\nAnita\nNellie\nYvonne\nGladys\nEdith\nElaine\nAnna\nJanie\nKatherine\nIda\nPaulette\nAlma\nDeloris\nKathryn\nShelia\nJeanette\nKathy\nTheresa\nTeresa\nVivian\nAnnette\nFaye\nLillian\nEva\nLoretta\nBettie\nBillie\nGail\nHazel\nIrene\nJackie\nLucy\nRegina\nEarnestine\nKatie\nMarsha\nKay\nAnne\nClaudia\nJoann\nSally\nKathleen\nStella\nLula\nMae\nEllen\nEmily\nPriscilla\nRachel\nWilma\nVera\nBeatrice\nDora\nGeneva\nMamie\nMarion\nAudrey\nGayle\nJanis\nMarcia\nMarjorie\nJimmie\nRosetta\nAngela\nNelda\nCathy\nCharlene\nConstance\nJennifer\nDelois\nEleanor\nJune\nNora\nPearlie\nRhonda\nDiana\nFlora\nSuzanne\nVicki\nDaisy\nEssie\nReba\nRosemary\nLola\nRobbie\nAlberta\nEula\nPauline\nFrankie\nLena\nLucille\nVickie\nCora\nLorene\nMaxine\nOla\nOlivia\nVelma\nEloise\nErma\nMaggie\nMarian\nUnknown\nEddie\nHilda\nJacquelyn\nLizzie\nNettie\nRuthie\nSallie\nEsther\nOllie\nAda\nErnestine\nJoy\nMelba\nRoberta\nAmelia\nEarline\nElsie\nHenrietta\nJannie\nNina\nVeronica\nJerry\nJoanne\nBecky\nEunice\nFreda\nGrace\nHarriet\nTommie\nViola\nCarole\nGracie\nIrma\nJeannie\nLana\nMyrtle\nNaomi\nSharron\nSybil\nGertrude\nSadie\nDorthy\nJennie\nJewel\nLee\nLynn\nMable\nCecelia\nInez\nJeannette\nOra\nPat\nTerry\nVictoria\nAgnes\nLela\nLenora\nMelanie\nShelby\nToni\nCecilia\nDolores\nMelissa\nPearl\nQueen\nSheryl\nDebra\nFlorence\nFreddie\nJoe\nJulie\nLou\nPolly\nSaundra\nCornelia\nDella\nElnora\nJanette\nJessica\nMaria\nNadine\nNell\nAmanda\nAndrea\nDana\nDarlene\nEarlene\nElouise\nEtta\nLydia\nMollie\nPeggie\nWilla\nAddie\nCallie\nDiann\nEstella\nIris\nJosie\nLila\nLottie\nMelinda\nMiriam\nOdessa\nArlene\nCelia\nCherry\nDebbie\nDianna\nJamie\nJan\nLorine\nMaureen\nMolly\nBennie\nClaudette\nFrancis\nGinger\nLeslie\nMarva\nMavis\nSherrie\nSyble\nBernadette\nCharlie\nEarlean\nFreida\nGaynell\nGearldine\nJames\nJenny\nJoanna\nLeola\nLessie\nWillia\nAmy\nBelinda\nBeulah\nClarice\nCorine\nDixie\nEdwina\nEugenia\nGlinda\nLelia\nLeona\nLorraine\nLucinda\nMonica\nPenny\nRena\nRetha\nViolet\nVoncile\nBeth\nCarla\nCaroline\nDale\nDollie\nEffie\nElois\nMarcella\nMarguerite\nMittie\nRoxie\nWilda\nBonita\nCherie\nColleen\nCorene\nDenise\nEliza\nEstelle\nFay\nGussie\nHellen\nJeanne\nLucile\nMabel\nMargarett\nMillie\nNona\nOpal\nPamelia\nRosalyn\nSammie\nSonja\nWinnie\nAllie\nBobby\nCelestine\nCheri\nCindy\nEvie\nGay\nHarriett\nJeanie\nKaye\nLouvenia\nLuvenia\nLynne\nMay\nMickey\nOcie\nPatrica\nRamona\nSherryl\nSondra\nStephanie\nVerna\nVernell\nVicky\nAntoinette\nBrinda\nCandace\nDannie\nDawn\nDelilah\nDinah\nDonnis\nDorris\nInell\nIola\nIvory\nJudie\nKatrina\nMalinda\nMarlene\nMaudie\nNan\nOphelia\nPatti\nPatty\nPenelope\nRosia\nSheron\nSherri\nTina\nAbbie\nAlicia\nBetsy\nCarmen\nChristina\nClemmie\nDeloise\nDovie\nEartha\nEster\nFrancine\nFrieda\nGeorge\nGwen\nHarriette\nImogene\nIva\nJacquline\nJeraldine\nJewell\nJohn\nLeila\nLue\nMargret\nMerle\nMozell\nNikki\nNita\nRegenia\nTrudy\nVerdell\nWillodean\nAletha\nAngelyn\nAngie\nAugusta\nBette\nCassandra\nCharity\nChris\nClaudine\nCleo\nDonnie\nElise\nFredia\nGilda\nGlynda\nGreta\nHannah\nIla\nJacqulyn\nJettie\nJill\nKate\nKathie\nLilly\nLora\nLouisa\nMatilda\nMickie\nRegena\nRenee\nRobert\nRobin\nRonnie\nRosalind\nSandy\nShelley\nSherron\nSophia\nTerri\nThomas\nValencia\nAdele\nAdrienne\nAlexis\nAlta\nAlyce\nAngel\nAva\nBarbra\nBenita\nBillye\nCarroll\nCassie\nCheryle\nClementine\nDeanna\nDell\nDelories\nDessie\nDona\nEileen\nElma\nElvira\nFlorine\nFlossie\nGale\nGenevieve\nGennie\nGeraldean\nGertha\nGertie\nGwenda\nHester\nHettie\nHolly\nIdella\nIra\nIsabelle\nJenifer\nJerrie\nJohnny\nJoye\nJuliet\nJuliette\nKaron\nKimberly\nLanell\nLauren\nLaverne\nLawanda\nLeigh\nLonnie\nLoraine\nLyndia\nLynette\nMadeline\nMadelyn\nMagnolia\nMarianne\nMarietta\nMaude\nMelva\nMona\nNola\nNovella\nOctavia\nOuida\nPam\nPansy\nPearline\nPhillis\nPhoebe\nPinkie\nPortia\nRonda\nShannon\nSharyn\nShelba\nShirlene\nSidney\nSonya\nSusanne\nSuzette\nThomasine\nValeria\nVirgie\nVonda\nWinifred\nYolanda\nZola\nMary\nLinda\nPatricia\nBrenda\nBarbara\nShirley\nBetty\nSandra\nCarolyn\nJudy\nMartha\nDorothy\nJanice\nAnnie\nGloria\nMargaret\nElizabeth\nPeggy\nNancy\nRebecca\nDeborah\nSharon\nSusan\nJoyce\nWanda\nCarol\nDoris\nGlenda\nDonna\nSarah\nCharlotte\nAlice\nHelen\nPatsy\nWillie\nVirginia\nFrances\nJo\nCynthia\nGwendolyn\nKathy\nDiane\nBeverly\nCatherine\nSherry\nJudith\nRuby\nEvelyn\nEmma\nJacqueline\nConnie\nJulia\nBonnie\nJoan\nPhyllis\nPamela\nMarilyn\nMattie\nJanet\nRita\nSheila\nJane\nJuanita\nMildred\nEthel\nLillie\nAnn\nLaura\nGeraldine\nPaula\nBobbie\nEdna\nKaren\nMinnie\nRosie\nCheryl\nDianne\nSara\nTeresa\nCathy\nJohnnie\nSylvia\nBessie\nElla\nClara\nRuth\nChristine\nMarie\nKatherine\nBertha\nGeorgia\nMyra\nIda\nLois\nBernice\nElaine\nLynda\nRose\nJean\nLouise\nKathryn\nTheresa\nBettye\nCarrie\nJessie\nUnknown\nShelia\nThelma\nRosa\nJanie\nYvonne\nLula\nMargie\nAnita\nAnna\nEdith\nGladys\nSue\nBelinda\nLillian\nFannie\nHazel\nKathleen\nEva\nPaulette\nVivian\nDelores\nJennifer\nSusie\nJeanette\nNellie\nNorma\nRegina\nGail\nHattie\nJune\nMae\nVera\nLynn\nKatie\nWilma\nDeloris\nEarnestine\nRhonda\nCora\nEmily\nLoretta\nRachel\nStella\nVicki\nAnnette\nEllen\nFaye\nJoann\nKay\nMarsha\nMaxine\nJosephine\nSally\nBettie\nBillie\nJackie\nAngela\nAnne\nDaisy\nDiana\nFlora\nLucille\nLucy\nMarcia\nPauline\nClaudia\nMarion\nMarjorie\nPriscilla\nRosetta\nVickie\nAlma\nErnestine\nJacquelyn\nEssie\nMamie\nSuzanne\nPearlie\nAudrey\nCharlene\nIrene\nBeatrice\nCarole\nConstance\nEloise\nFrankie\nJimmie\nAlberta\nGeneva\nVelma\nDebra\nNelda\nOla\nSallie\nTommie\nLola\nSadie\nJanis\nNina\nRoberta\nDelois\nEleanor\nJoy\nOlivia\nFlorence\nMaggie\nMarian\nMyrtle\nReba\nRobbie\nVictoria\nGrace\nHenrietta\nLeola\nViola\nEunice\nJan\nAmanda\nHilda\nLela\nNettie\nRosemary\nDorthy\nEula\nMable\nMelinda\nOra\nVeronica\nEsther\nJoanne\nLana\nNora\nDora\nSharron\nCecelia\nEddie\nJennie\nSybil\nBecky\nDarlene\nGertrude\nIris\nLizzie\nMelba\nPolly\nSheryl\nAgnes\nAmy\nClaudette\nElnora\nJoe\nJulie\nMiriam\nNadine\nNaomi\nOllie\nAddie\nDella\nElsie\nEtta\nJeannie\nJewel\nInez\nIrma\nLottie\nMelanie\nRuthie\nDana\nDiann\nErma\nGracie\nJeanne\nLorene\nMillie\nShelby\nTerry\nVicky\nAngie\nArlene\nCallie\nDolores\nGayle\nHarriet\nJerry\nLenora\nLorraine\nLou\nMelissa\nNita\nRenee\nVoncile\nAda\nCarla\nClaire\nEugenia\nFreda\nFreida\nGinger\nLena\nLorine\nLucinda\nOdessa\nPeggie\nQueen\nVerna\nBonita\nDianna\nEliza\nJenny\nLessie\nMalinda\nPearl\nSaundra\nStephanie\nAndrea\nBennie\nBeulah\nCelia\nCindy\nCornelia\nDebbie\nDenise\nDixie\nEarlene\nEdwina\nJannie\nMarcella\nMollie\nPinkie\nSonja\nSyble\nAmelia\nBobby\nCherry\nCorine\nJewell\nJosie\nLee\nLydia\nLynne\nMarva\nMolly\nMona\nRobert\nBeth\nBlanche\nCaroline\nCassandra\nDolly\nEarline\nGaynell\nGearldine\nJames\nJamie\nJeannette\nLisa\nOctavia\nOpal\nRamona\nRena\nRosalyn\nRosia\nToni\nViolet\nWilla\nAntoinette\nAurelia\nCecilia\nDale\nElouise\nImogene\nIna\nJeanie\nJerrie\nKaye\nLelia\nMickey\nOphelia\nPenny\nBetsy\nCarlotta\nCharlie\nClaudine\nEffie\nFay\nFrancis\nFreddie\nGussie\nHarriett\nJanette\nLeslie\nMabel\nNan\nRegenia\nTerri\nTrudy\nValerie\nAlta\nCheri\nClarice\nDeloise\nDinah\nDonnie\nEarlean\nEstella\nEster\nFlorine\nGlinda\nGwen\nHellen\nIola\nLeona\nLila\nLucile\nLuella\nMadeline\nMargarett\nMaria\nMavis\nMyrtis\nNell\nPamelia\nPatty\nRegena\nRetha\nRobin\nRosalind\nSheron\nTina\nWilda\nAlicia\nCassie\nDian\nEaster\nFrancine\nGay\nGayla\nJohnny\nLue\nMarguerite\nMichelle\nOuida\nPat\nSherron\nVernell\nVonnie\nWinnie\nAllison\nAlthea\nBernadette\nBernadine\nClementine\nDeanna\nDelilah\nDollie\nDottie\nEarlie\nElmira\nIvy\nKatharine\nLaurie\nLeila\nLouvenia\nMadelyn\nMargarette\nMarietta\nMaudie\nMaureen\nMichele\nOcie\nPatrica\nPatti\nPearline\nPhillis\nPortia\nRoxie\nSammie\nShannon\nSherrie\nSherrill\nSondra\nValeria\nVelinda\nAngelia\nAugusta\nCandace\nCarroll\nCathie\nCathryn\nCelestine\nClarissa\nColleen\nDawn\nDelia\nDessie\nEstelle\nFlossie\nFredia\nGenevieve\nGeorge\nGlenna\nIdell\nIla\nJaunita\nJonnie\nLeatha\nLizabeth\nLucretia\nMatilda\nMelva\nMittie\nMyrna\nMyrtice\nRebekah\nReta\nRubie\nSophia\nVerdell\nVonda\nWilliam\nWillodean\nAlfreda\nAngeline\nApril\nArthurine\nBerniece\nCarolyne\nCeola\nClarence\nDaphne\nDavid\nDean\nDebby\nDelories\nGale\nGilda\nHarriette\nInell\nJacqulyn\nJanetta\nJayne\nJeanine\nJeraldine\nJill\nKaron\nKattie\nKitty\nLaverne\nLeigh\nLindy\nLouella\nLovie\nLyndia\nMarlene\nMaurice\nMonica\nMozell\nNannie\nOdell\nOvetta\nPenelope\nPrincess\nSandy\nSavannah\nScarlett\nSelena\nSharlene\nShelley\nShirlene\nSonia\nVinnie\nWinifred\nMary\nLinda\nBrenda\nPatricia\nBarbara\nSandra\nBetty\nShirley\nCarolyn\nDeborah\nJudy\nAnnie\nMartha\nDorothy\nJanice\nGloria\nWanda\nMargaret\nNancy\nElizabeth\nJoyce\nSharon\nSusan\nRebecca\nCarol\nPeggy\nGlenda\nDonna\nSarah\nCynthia\nDoris\nCharlotte\nDiane\nHelen\nVirginia\nKathy\nBeverly\nFrances\nJanet\nJo\nSheila\nSherry\nAlice\nGwendolyn\nWillie\nKaren\nPamela\nPatsy\nPhyllis\nJudith\nRuby\nJacqueline\nEvelyn\nRita\nConnie\nGeraldine\nMarilyn\nCatherine\nBonnie\nLillie\nJoan\nEmma\nMattie\nAnn\nJuanita\nLaura\nCheryl\nCathy\nJulia\nChristine\nDebra\nEthel\nJane\nRosie\nEdna\nPaula\nSara\nBobbie\nTeresa\nAnita\nMildred\nJohnnie\nRose\nMinnie\nDianne\nRuth\nBertha\nYvonne\nVivian\nClara\nBernice\nCarrie\nShelia\nSylvia\nGeorgia\nRhonda\nElla\nMarie\nElaine\nLynda\nUnknown\nJean\nTheresa\nLouise\nBessie\nKatherine\nJeanette\nJennifer\nBelinda\nNorma\nKathryn\nSue\nMyra\nRosa\nGail\nLoretta\nGladys\nAnna\nHazel\nMarsha\nVicki\nEllen\nJessie\nRegina\nBettye\nIda\nFannie\nThelma\nSusie\nVickie\nJacquelyn\nDelores\nVera\nHattie\nLois\nMae\nEva\nKathleen\nMargie\nJosephine\nMamie\nAlma\nEmily\nIrene\nLucy\nAnnette\nEdith\nLula\nMaxine\nSally\nDiana\nStella\nConstance\nJackie\nJune\nLillian\nPriscilla\nWilma\nAudrey\nCora\nJanie\nJanis\nKatie\nMaggie\nGeneva\nLucille\nPaulette\nSallie\nCharlene\nJoann\nAnne\nJimmie\nDeloris\nDelois\nNellie\nBettie\nBillie\nDaisy\nErnestine\nClaudia\nFlora\nHilda\nMarion\nRachel\nSuzanne\nEarnestine\nOlivia\nFaye\nSadie\nIris\nEloise\nKay\nMarcia\nRosemary\nSharron\nEula\nRosetta\nVictoria\nJennie\nLynn\nMarjorie\nMona\nVelma\nAngela\nBeatrice\nJoy\nRobbie\nHenrietta\nJoanne\nLola\nMable\nPauline\nRoberta\nAlberta\nFrankie\nMarian\nDarlene\nEssie\nEsther\nMelinda\nMelissa\nNelda\nOla\nViola\nDora\nElsie\nGrace\nJulie\nPearlie\nRuthie\nLana\nNettie\nNina\nAddie\nGayle\nMelba\nNora\nDella\nEleanor\nFlorence\nGinger\nJan\nMyrtle\nTerry\nAgnes\nCarole\nEunice\nJenny\nLee\nOra\nQueen\nTommie\nAda\nAmanda\nBonita\nCarla\nGracie\nHarriet\nBecky\nCharlie\nJewel\nMarguerite\nReba\nDianna\nEddie\nFrancis\nFreda\nJannie\nLena\nLizzie\nOllie\nPolly\nRamona\nAndrea\nCassandra\nCecelia\nDale\nDebbie\nFrancine\nIrma\nJeanne\nLeola\nNaomi\nVeronica\nYolanda\nErma\nLottie\nAlfreda\nAmy\nElnora\nGaynell\nMelanie\nNell\nPenny\nSybil\nVerna\nAmelia\nAngie\nDiann\nEarline\nEtta\nFreddie\nGertrude\nLela\nLora\nLou\nOdessa\nRosalind\nShelby\nBeulah\nEstella\nJerry\nLenora\nLila\nLucile\nPatty\nToni\nBetsy\nCecilia\nDorthy\nEarlene\nGay\nGlinda\nJeannie\nLaverne\nLucinda\nMolly\nNadine\nWilla\nAlicia\nCallie\nCaroline\nCassie\nEugenia\nInez\nJames\nJeannette\nJewell\nJoe\nLeona\nLorene\nLorraine\nMaria\nVirgie\nArlene\nBennie\nCelia\nCornelia\nDollie\nElouise\nJosie\nKatrina\nLeslie\nLydia\nRena\nSheryl\nStephanie\nBeth\nCelestine\nEdwina\nFlossie\nFreida\nGearldine\nHarriett\nJeraldine\nJessica\nJoanna\nKathie\nLisa\nMaureen\nMichele\nNita\nPeggie\nReta\nRosalyn\nRoxie\nSonja\nValeria\nAva\nBlanche\nCeola\nCherry\nChristy\nClarice\nClaudette\nDenise\nDonnie\nEffie\nEliza\nElma\nEster\nGayla\nJuliette\nKaye\nMiriam\nNan\nRoslyn\nTerri\nValerie\nVicky\nBeryl\nCarolyne\nCathryn\nDebora\nDinah\nDolores\nGwen\nInell\nJamie\nJeanetta\nKaron\nLorine\nLue\nLynne\nMadeline\nMalinda\nMarlene\nNona\nOphelia\nPatrica\nPatti\nRosia\nSondra\nVoncile\nWendy\nWilliam\nWillodean\nAdell\nCherryl\nClementine\nCrystal\nEarlean\nGussie\nIra\nLibby\nMargarett\nMarva\nNedra\nPat\nReda\nRegenia\nRenee\nViolet\nAngeline\nCandace\nCharles\nCindy\nCorine\nDanna\nDannie\nDaphne\nDavid\nDeloise\nDeloria\nDolly\nEvon\nFlorida\nFrieda\nHope\nIna\nJannette\nJayne\nJerri\nJohn\nKathey\nKitty\nLeah\nLily\nLonnie\nLuella\nMargarette\nMargret\nMarianne\nMarietta\nMarla\nMatilda\nMaude\nMavis\nMillie\nMyrtis\nPamelia\nPinkie\nRobin\nSheron\nSherrill\nSophia\nSyble\nTrudy\nYolande\nAdrienne\nAlexis\nAngelia\nAurelia\nBenita\nBernadette\nBobby\nCarmen\nCecile\nClaire\nCleo\nDana\nDelia\nDixie\nDona\nDoretha\nEaster\nElois\nEvie\nFay\nGilda\nGlynda\nGreta\nGwenda\nHannah\nHellen\nHester\nImogene\nIngrid\nJacklyn\nJanette\nJerrie\nJettie\nJohnny\nLaurie\nLessie\nLouvenia\nLynette\nMabel\nMickey\nOuida\nPearl\nPhillis\nRetha\nRonda\nRubye\nSaundra\nShelley\nSherri\nSherrie\nSherron\nTina\nVerdell\nVernice\nWinnie\nAlfredia\nAllie\nAlyce\nAnnice\nAnnye\nAntoinette\nArthur\nBelva\nBette\nBrinda\nBulah\nBurma\nCamellia\nCarlene\nCorrine\nCreola\nDeanna\nDeborrah\nDee\nDelilah\nDessie\nDortha\nDottie\nElise\nGale\nGlenna\nGlory\nHelene\nIva\nIvy\nJacquelyne\nJaunita\nJeannine\nJoette\nJohnie\nJoseph\nJudie\nKarla\nKate\nKatharine\nLadonna\nLea\nLiza\nLoretha\nMammie\nMelody\nMerry\nMichelle\nMickie\nMittie\nMitzi\nNannie\nOpal\nPatrice\nRobert\nRoxanne\nSaratha\nShannon\nShirlene\nSilvia\nSonya\nVernell\nWilda\nWillia\nZelma\nMary\nLinda\nPatricia\nBrenda\nDeborah\nBarbara\nBetty\nSandra\nCarolyn\nJudy\nShirley\nJanice\nDonna\nDorothy\nMartha\nAnnie\nWanda\nGloria\nMargaret\nElizabeth\nCarol\nNancy\nRebecca\nSharon\nSusan\nJoyce\nPeggy\nKathy\nGlenda\nCynthia\nDebra\nBeverly\nPamela\nCharlotte\nDiane\nKaren\nDoris\nVirginia\nSarah\nHelen\nJo\nSheila\nWillie\nAlice\nCatherine\nConnie\nSherry\nGwendolyn\nFrances\nPhyllis\nJacqueline\nRita\nPatsy\nCathy\nDianne\nMarilyn\nRuby\nEvelyn\nJanet\nJudith\nBonnie\nJoan\nTeresa\nSylvia\nRosie\nAnita\nAnn\nRose\nSara\nEdna\nCheryl\nGeraldine\nKatherine\nMildred\nRhonda\nShelia\nEmma\nMattie\nJane\nJulia\nTheresa\nYvonne\nEthel\nUnknown\nChristine\nLaura\nLillie\nBobbie\nPaula\nJuanita\nMarsha\nJohnnie\nMinnie\nVicki\nClara\nElaine\nGail\nKathryn\nVivian\nBelinda\nRuth\nBettye\nAnnette\nBernice\nCarrie\nElla\nBertha\nJean\nThelma\nRosa\nEllen\nJeanette\nMarie\nLouise\nMyra\nJennifer\nBessie\nLois\nRegina\nJosephine\nJessie\nNorma\nGeorgia\nLynda\nDelores\nFannie\nSue\nKathleen\nMarcia\nMargie\nAnna\nVickie\nEva\nLoretta\nAngela\nKay\nSusie\nHazel\nJackie\nAnne\nEdith\nWilma\nDiana\nJune\nGladys\nKatie\nLula\nJacquelyn\nAudrey\nConstance\nEmily\nMae\nVera\nJanie\nLucy\nSally\nBillie\nLynn\nDaisy\nDora\nHattie\nIda\nPaulette\nJoann\nStella\nGeneva\nLillian\nEarnestine\nMaxine\nReba\nVeronica\nCora\nVelma\nDelois\nGinger\nPriscilla\nVictoria\nAlma\nBettie\nDebbie\nDeloris\nIrene\nMelinda\nNellie\nNina\nAlberta\nFaye\nFlora\nNora\nSharron\nClaudia\nGayle\nLola\nMarjorie\nRachel\nBeatrice\nJoy\nMamie\nJan\nMarion\nMelissa\nMona\nRoberta\nCharlene\nEssie\nMaggie\nSadie\nSallie\nTerry\nAda\nDarlene\nEleanor\nEloise\nMelba\nDenise\nFrankie\nCarla\nHilda\nJanis\nLeola\nLucille\nOllie\nPauline\nTommie\nDella\nErnestine\nJimmie\nMiriam\nSuzanne\nDiann\nJannie\nLena\nMable\nRobbie\nShelby\nAmanda\nEsther\nOla\nRosetta\nAndrea\nCecelia\nGrace\nHarriet\nHenrietta\nJewel\nSybil\nVicky\nViola\nMyrtle\nOlivia\nRamona\nRosemary\nCassandra\nIris\nJeannie\nJennie\nJenny\nLana\nMarian\nNettie\nPearlie\nBecky\nCecilia\nEunice\nGertrude\nPolly\nBonita\nDorthy\nFlorence\nJeanne\nJessica\nLorene\nOra\nValerie\nAgnes\nAmy\nCelia\nCharlie\nElsie\nJulie\nLee\nLizzie\nNaomi\nRuthie\nAmelia\nCarole\nEarline\nHarriett\nLila\nLynne\nYolanda\nBennie\nBeth\nCornelia\nDinah\nEddie\nEula\nFreda\nFreida\nLeslie\nPenny\nRosalind\nSheryl\nAddie\nCallie\nClaudette\nFay\nInez\nIrma\nLela\nTina\nToni\nCindy\nEarlene\nEstella\nFrancis\nFreddie\nJerry\nJoanne\nLydia\nNelda\nStephanie\nVerna\nAlfreda\nCandace\nDolores\nJeannette\nJuliette\nKatrina\nPatti\nPeggie\nRobin\nDianna\nLisa\nMalinda\nMaria\nMonica\nRenee\nSaundra\nTerri\nAngie\nBlanche\nDian\nEdwina\nEtta\nJamie\nJill\nJoe\nMarianne\nMarlene\nMarva\nNadine\nPatrica\nRosalyn\nTrudy\nWilla\nDana\nEffie\nEliza\nFrieda\nGlinda\nGracie\nJanette\nJewell\nJosie\nKaye\nLorraine\nLou\nLucile\nMadeline\nMarcella\nMelanie\nMillie\nMollie\nNona\nOdessa\nRena\nAva\nBeverley\nClementine\nDeloise\nDonnie\nEugenia\nFlorine\nGay\nJerri\nLenora\nMavis\nMolly\nNita\nRegenia\nSherrie\nSondra\nSonja\nValeria\nVoncile\nAlicia\nArlene\nBeulah\nCarmen\nCaroline\nCeleste\nCelestine\nDale\nDebora\nElouise\nErma\nEster\nGayla\nLaurie\nLeona\nLorine\nLottie\nMabel\nMadelyn\nNell\nPat\nPatrice\nPearl\nPortia\nQueen\nRubye\nSherrill\nVernell\nAntoinette\nBetsy\nBobby\nCassie\nCathrine\nCheri\nChristina\nElnora\nEstelle\nFrancine\nGearldine\nIva\nJames\nKathie\nLucinda\nMarguerite\nMelody\nMichelle\nNan\nPamelia\nRegena\nRosia\nShannon\nShelley\nShelly\nSonia\nViolet\nWendy\nWinnie\nAdell\nAlthea\nAugusta\nBarbra\nBernadette\nCathleen\nClaire\nClarice\nDoretha\nGaynell\nJeanetta\nJeanie\nJerrie\nJudi\nKaron\nKatheryn\nKitty\nLaverne\nLelia\nLora\nLue\nLuvenia\nMyrtice\nOpal\nPatty\nRetha\nRoxie\nSherri\nValencia\nWilda\nWillene\nWonda\nYvette\nAdrienne\nAngelia\nAnnice\nAvis\nCandice\nCara\nCarlotta\nCathie\nCathryn\nCeola\nCharlette\nCherry\nCorine\nCrystal\nDannie\nDelilah\nDona\nEaster\nElois\nEvon\nFredia\nGertha\nGilda\nHannah\nHarriette\nHelene\nImogene\nIna\nJaunita\nJeraldine\nJoanna\nJocelyn\nJohn\nKathrine\nLeigh\nMargret\nMaudie\nMickey\nMittie\nMyrna\nPhillis\nRebekah\nRetta\nRonda\nSandy\nSusanne\nTeresia\nValarie\nVerdell\nVickey\nAlfredia\nAllison\nAngeline\nArlinda\nCamilla\nCharles\nCherie\nCheryle\nClassie\nColleen\nCorene\nCreola\nDavid\nDawn\nDelbra\nDelia\nDovie\nEmmie\nEvie\nFloria\nGeorge\nGeorgie\nGwen\nGwenda\nHellen\nInell\nIra\nJacqulyn\nJana\nJolene\nJonnie\nJoycelyn\nKathey\nKattie\nKerry\nLaurel\nLauretta\nLavonne\nLeatha\nLettie\nLily\nLouvenia\nLuella\nLynette\nMagnolia\nMelonie\nMichele\nMuriel\nNannie\nNatalie\nOctavia\nPearlean\nPenelope\nPinkie\nRay\nReta\nReva\nRochelle\nRonnie\nRosanna\nRoxann\nSammie\nSherron\nSyble\nTeri\nTerrie\nTessie\nVeda\nWillia\nMary\nLinda\nPatricia\nDeborah\nBrenda\nBarbara\nShirley\nSandra\nBetty\nCarolyn\nJanice\nDebra\nDonna\nJudy\nMartha\nNancy\nDorothy\nSusan\nWanda\nAnnie\nGloria\nKathy\nRebecca\nMargaret\nElizabeth\nSharon\nCynthia\nPamela\nJoyce\nCarol\nPeggy\nKaren\nDoris\nCharlotte\nDiane\nGlenda\nBeverly\nJo\nJanet\nSarah\nSherry\nCathy\nVirginia\nSheila\nMarilyn\nAlice\nConnie\nCatherine\nTeresa\nGwendolyn\nHelen\nFrances\nPhyllis\nRuby\nWillie\nPaula\nRita\nJacqueline\nLaura\nRhonda\nPatsy\nEvelyn\nVickie\nCheryl\nJudith\nBonnie\nChristine\nDianne\nJane\nJoan\nAnn\nMarsha\nShelia\nAnita\nEthel\nJulia\nRose\nEmma\nMattie\nSylvia\nBobbie\nMarie\nLillie\nUnknown\nGeraldine\nJuanita\nVicki\nKathryn\nElla\nYvonne\nEdna\nKatherine\nRosie\nVivian\nJean\nRuth\nTheresa\nSara\nGail\nJohnnie\nBelinda\nMinnie\nBernice\nClara\nJennifer\nLois\nMildred\nRegina\nKathleen\nEva\nMarcia\nElaine\nGeorgia\nNorma\nLoretta\nBessie\nMyra\nAngela\nIda\nBertha\nLynda\nCarrie\nRosa\nLula\nBettye\nJeanette\nDelores\nGladys\nRachel\nThelma\nJackie\nMargie\nNina\nAnnette\nLucy\nVictoria\nEllen\nDebbie\nDenise\nJanie\nLouise\nMelissa\nSusie\nJessie\nSue\nEdith\nKatie\nVera\nAnna\nKay\nDiana\nMaxine\nWilma\nEarnestine\nHattie\nHazel\nSuzanne\nDeloris\nJacquelyn\nJune\nValerie\nEmily\nMae\nAnne\nFannie\nLillian\nLynn\nBillie\nFaye\nJosephine\nJoy\nMamie\nPaulette\nDiann\nJan\nCharlene\nIrene\nPriscilla\nSally\nAudrey\nBeatrice\nCora\nErnestine\nNellie\nClaudia\nDarlene\nJulie\nAlma\nConstance\nDelois\nMarion\nPauline\nReba\nSadie\nVeronica\nGeneva\nGinger\nJenny\nEleanor\nLucille\nEula\nFlora\nStella\nVicky\nJeanne\nRoberta\nVelma\nDaisy\nFrankie\nMaggie\nEssie\nTerry\nHarriet\nJewel\nLola\nMelanie\nDora\nLorraine\nRobbie\nRosetta\nSallie\nSharron\nEloise\nEsther\nJoann\nPearlie\nSheryl\nAmanda\nBonita\nEddie\nGertrude\nJennie\nMarjorie\nMona\nOla\nAda\nAlberta\nBettie\nCarla\nJoanne\nLena\nLeslie\nLisa\nMable\nMelba\nNora\nOllie\nRuthie\nDella\nGayle\nHilda\nIris\nJanis\nJimmie\nLou\nMelinda\nCassandra\nGracie\nJannie\nMalinda\nNadine\nNelda\nPatty\nPeggie\nRosemary\nYolanda\nCecilia\nEunice\nGrace\nIrma\nNaomi\nViola\nCherry\nErma\nHenrietta\nJeannette\nLee\nLynne\nMyrtle\nOra\nQueen\nRamona\nAmelia\nCecelia\nFreda\nJoe\nMarian\nOlivia\nSherrie\nTina\nAmy\nBridget\nEarline\nFlorence\nInez\nLana\nLydia\nMaria\nMollie\nMonica\nRosalind\nSonja\nStephanie\nVanessa\nAlicia\nAndrea\nBeulah\nCarole\nCindy\nDana\nDelilah\nDolores\nDonnie\nElsie\nJamie\nKatrina\nLizzie\nLorene\nMarianne\nPatti\nPenny\nPolly\nRobin\nTrudy\nAgnes\nAngie\nAva\nBecky\nCallie\nEarlene\nLela\nLenora\nLucile\nMarcella\nMarlene\nAlfreda\nAlthea\nCaroline\nDale\nEtta\nJames\nJerry\nLeola\nNita\nToni\nWendy\nBeth\nCelia\nDianna\nDolly\nEdwina\nFreida\nJeanetta\nMavis\nNettie\nRetha\nSybil\nCandace\nDollie\nElnora\nJessica\nKathie\nMiriam\nNell\nRosalyn\nTerri\nTommie\nArlene\nCharlie\nDebora\nFrancis\nFreddie\nGaynell\nJewell\nKaye\nLottie\nMichele\nOdessa\nRosia\nWilla\nBlanche\nBobby\nChristina\nCornelia\nDixie\nEarlean\nGwen\nIra\nJeannie\nJosie\nMarilynn\nMichelle\nNeva\nPinkie\nRegenia\nShannon\nSondra\nSonia\nVerna\nAddie\nAdrienne\nBernadette\nBetsy\nBeverley\nClaudette\nClementine\nDeanna\nDoretha\nEileen\nElouise\nGay\nJeanie\nJeri\nLaurie\nLelia\nLila\nLora\nMarguerite\nPatrica\nShelby\nValeria\nViolet\nYolande\nAngelia\nCarmen\nCelestine\nDeloise\nEstella\nGale\nIdella\nJacquline\nJeraldine\nJerri\nJettie\nKaron\nLorine\nLucinda\nMabel\nMaureen\nMelody\nMolly\nNona\nPearl\nPenelope\nRenee\nSherri\nVirgie\nWillia\nBennie\nBernadine\nCassie\nCheri\nChristy\nDelphine\nDorthy\nEstelle\nEster\nEugenia\nFay\nFrancine\nGearldine\nHarriette\nHenry\nImogene\nIna\nJuliette\nLaverne\nLeona\nLetha\nLucretia\nMarva\nMelva\nOpal\nOphelia\nPortia\nRobert\nSaundra\nShelley\nShelly\nSherron\nSophia\nVenita\nWonda\nAbbie\nAdell\nAvis\nBilly\nClaire\nCorliss\nDawn\nDebroah\nDelbra\nDelia\nDonald\nDovie\nEliza\nElma\nFredia\nHannah\nHarriett\nInell\nJayne\nJoanna\nJohn\nKatharine\nLandis\nLauren\nLessie\nLonnie\nLutricia\nLynette\nMagnolia\nMargo\nMitzi\nMyrtis\nNan\nNeta\nPansy\nPhillis\nRena\nRubye\nSammie\nSonya\nTamara\nVoncile\nVonda\nAdele\nAnnice\nAntoinette\nBenita\nBlenda\nCamilla\nCandice\nCandy\nCathie\nCharity\nCharlsie\nCharolette\nCherie\nClarice\nClarissa\nCorine\nDanna\nDannie\nDarline\nDebby\nDessie\nDinah\nDonnis\nDorothea\nDortha\nDottie\nElois\nEvangeline\nEve\nFlossie\nFran\nGayla\nGeorgie\nGretchen\nGwenda\nHolly\nIla\nIva\nIvory\nJanelle\nJill\nJocelyn\nJohnny\nKarol\nKatheryn\nKenneth\nKim\nKitty\nLibby\nLily\nLue\nLuvenia\nMargarett\nMarolyn\nMerle\nMickie\nOdell\nPam\nPattie\nPearline\nPricilla\nRhoda\nSelena\nSheri\nSuzan\nSydney\nSynthia\nTanya\nValarie\nVeda\nMary\nLinda\nDeborah\nPatricia\nBrenda\nBarbara\nShirley\nDebra\nSandra\nBetty\nDonna\nJanice\nCarolyn\nSusan\nCynthia\nJudy\nKathy\nMartha\nWanda\nSharon\nDorothy\nGloria\nPamela\nNancy\nAnnie\nRebecca\nElizabeth\nMargaret\nJoyce\nKaren\nBeverly\nPeggy\nCarol\nDoris\nCathy\nGlenda\nTeresa\nJanet\nJo\nSheila\nDiane\nSarah\nMarilyn\nSherry\nPhyllis\nAlice\nVirginia\nGwendolyn\nRita\nConnie\nCatherine\nCharlotte\nHelen\nJacqueline\nRhonda\nPatsy\nFrances\nRuby\nAnita\nPaula\nLaura\nWillie\nRose\nEvelyn\nShelia\nChristine\nTheresa\nVicki\nBonnie\nYvonne\nJane\nDianne\nJoan\nJulia\nKatherine\nAngela\nCheryl\nVickie\nElaine\nKathryn\nMarsha\nUnknown\nMattie\nEmma\nLillie\nJuanita\nEthel\nBelinda\nEdna\nGeraldine\nSylvia\nMildred\nAnn\nJudith\nBobbie\nRuth\nRosie\nGail\nKathleen\nMarcia\nJennifer\nVivian\nElla\nSara\nDenise\nMarie\nCarrie\nClara\nJean\nRegina\nThelma\nJohnnie\nAnnette\nGladys\nLois\nLouise\nMyra\nJackie\nMinnie\nJessie\nNorma\nSally\nBertha\nDelores\nEva\nRosa\nJacquelyn\nVanessa\nGeorgia\nMargie\nDebbie\nVera\nDiana\nJeanette\nBessie\nSue\nLoretta\nMaxine\nConstance\nJosephine\nJoy\nTerry\nIda\nLucy\nAnna\nBernice\nDarlene\nEdith\nJanie\nEllen\nJan\nAnne\nLynn\nRachel\nAlma\nEarnestine\nHazel\nKay\nMelissa\nBettye\nClaudia\nEmily\nSusie\nSuzanne\nLillian\nRobin\nBillie\nDeloris\nJune\nLynda\nPatti\nReba\nRoberta\nFaye\nGeneva\nMamie\nNellie\nRobbie\nWilma\nFannie\nVeronica\nDelois\nGinger\nRosetta\nBeatrice\nDaisy\nIrene\nMaggie\nCarla\nCharlene\nMelinda\nAudrey\nFlora\nHattie\nKatie\nMelba\nHarriet\nJulie\nRamona\nValerie\nAmy\nEunice\nFlorence\nNina\nCora\nGayle\nVictoria\nEloise\nMae\nHilda\nIris\nLeslie\nLula\nMarion\nSharron\nLisa\nMona\nOra\nDora\nJanis\nLena\nOlivia\nStella\nBecky\nBettie\nCindy\nEddie\nMarian\nPaulette\nYolanda\nEleanor\nJimmie\nMelanie\nRuthie\nSheryl\nEsther\nFrankie\nFreda\nIrma\nOla\nPearlie\nPriscilla\nEula\nLou\nMiriam\nMyrtle\nSadie\nStephanie\nTerri\nTommie\nCassandra\nDiann\nEssie\nLydia\nMarjorie\nMonica\nNettie\nPauline\nSallie\nToni\nAda\nVelma\nAmelia\nAndrea\nArlene\nBonita\nDella\nGrace\nJeannie\nJennie\nJoann\nLucille\nVicky\nCelia\nErnestine\nHenrietta\nJeanne\nMarlene\nPenny\nQueen\nRenee\nViola\nDianna\nJamie\nJewel\nLela\nLizzie\nMalinda\nNelda\nNora\nShelley\nAgnes\nBeth\nCecelia\nFreida\nJerry\nLenora\nLessie\nMichelle\nRena\nSherrie\nAmanda\nCherry\nDolores\nFrancis\nGay\nGertrude\nJannie\nLola\nNadine\nPatty\nRosemary\nSherri\nAlicia\nElsie\nEstella\nLee\nLila\nNell\nOllie\nCandace\nDana\nDebora\nEtta\nGracie\nJeannette\nJoanne\nKathie\nLeola\nMitzi\nNaomi\nRobert\nRosalind\nAlberta\nCarmen\nCharlie\nDale\nElnora\nFreddie\nLottie\nShelby\nVoncile\nWendy\nAddie\nAngelia\nAntoinette\nCarole\nCaroline\nCecilia\nErma\nJeanie\nJenny\nLue\nLynne\nMarcella\nMarilynn\nMillie\nOphelia\nPeggie\nRosalyn\nAlfreda\nClarice\nCorine\nDawn\nGreta\nJessica\nJill\nJoe\nLeila\nMable\nMarguerite\nMaria\nMarla\nNita\nOpal\nPearl\nSonya\nSybil\nTerrie\nAva\nCallie\nClaire\nDelilah\nDinah\nEarlene\nEdwina\nEster\nImogene\nInez\nJames\nKatrina\nKaye\nKimberly\nLaurie\nLawanda\nLorene\nLucile\nLucinda\nMarianne\nMollie\nPolly\nRoxie\nTina\nAngie\nCelestine\nClementine\nDeloise\nDoretha\nEffie\nEugenia\nFrancine\nGayla\nJeanetta\nLadonna\nLana\nLelia\nPinkie\nTamara\nVerna\nBenita\nBetsy\nBeulah\nBlanche\nBobby\nCornelia\nDaphne\nDeanna\nEileen\nFlorine\nHarriett\nJuliette\nKim\nLeona\nMelva\nMolly\nNeva\nOdell\nOuida\nPat\nRosia\nShannon\nSonja\nStarla\nTrudy\nWilda\nApril\nBennie\nBridget\nCeleste\nClarissa\nDelbra\nDelia\nDollie\nDonnie\nDovie\nGearldine\nJacquline\nJana\nJerrie\nJewell\nJosie\nLeigh\nLynette\nMaple\nMargarett\nMarva\nMavis\nMay\nMichele\nMyrtis\nNola\nPatrica\nRebekah\nReva\nRhoda\nRoslyn\nSondra\nTracy\nValeria\nVernice\nWilla\nAlta\nAlthea\nAurelia\nBernadette\nBeverley\nCherie\nClaudette\nColleen\nDeborrah\nDebrah\nDolly\nDona\nEarline\nElois\nEvon\nGale\nGaynell\nHolly\nIva\nJanette\nJaunita\nLaurel\nLeah\nLolita\nLoraine\nLouvenia\nMabel\nMarietta\nMaureen\nNedra\nOdessa\nPatrice\nPearline\nPenelope\nReita\nRobyn\nSandy\nSophia\nTeressa\nTommy\nVerdell\nViolet\nVonda\nWinifred\nAbbie\nAlesia\nArlean\nArma\nArnita\nCarlene\nCharles\nChristie\nChristina\nChristy\nDelorise\nDenice\nDian\nDoretta\nDottie\nEaster\nElma\nFaith\nFay\nFelecia\nFelicia\nFrieda\nGennie\nGwen\nIla\nInell\nJanetta\nJeanine\nJeraldine\nJerri\nJocelyn\nJohnetta\nJoni\nKathey\nLandis\nLibby\nLindy\nLuann\nLuanne\nLucretia\nMadonna\nMargery\nMargo\nMaxcine\nMerry\nNan\nNannette\nOvetta\nPam\nPattie\nPhoebe\nPortia\nRene\nRobbin\nRowena\nRubye\nSammie\nSharlene\nSherron\nSuzan\nVernell\nZelda\nMary\nLinda\nDeborah\nPatricia\nBrenda\nDebra\nBarbara\nSandra\nDonna\nShirley\nSusan\nKathy\nPamela\nCarolyn\nJanice\nCynthia\nBetty\nWanda\nJudy\nSharon\nDorothy\nMartha\nRebecca\nElizabeth\nKaren\nGloria\nBeverly\nNancy\nAnnie\nTeresa\nJanet\nMargaret\nMarilyn\nCarol\nJoyce\nRita\nSheila\nSherry\nConnie\nGlenda\nDoris\nDiane\nPeggy\nCathy\nJo\nRhonda\nVirginia\nCatherine\nSarah\nCharlotte\nGwendolyn\nJacqueline\nLaura\nPhyllis\nAlice\nHelen\nRose\nVicki\nPaula\nPatsy\nShelia\nWillie\nVickie\nEvelyn\nFrances\nTheresa\nVanessa\nAnita\nAngela\nCheryl\nDenise\nRuby\nBonnie\nAnn\nJoan\nMarsha\nUnknown\nChristine\nRosie\nEdna\nJulia\nJennifer\nDianne\nGeraldine\nJane\nKathryn\nRegina\nSylvia\nJuanita\nKatherine\nElaine\nSara\nDebbie\nGail\nMarie\nJudith\nLillie\nYvonne\nEmma\nVivian\nLoretta\nBobbie\nMattie\nEthel\nJohnnie\nKathleen\nMyra\nAnnette\nBelinda\nJean\nBertha\nJeanette\nJan\nMildred\nBessie\nTerry\nMarcia\nBernice\nCarrie\nMelissa\nLisa\nNorma\nJacquelyn\nRuth\nEmily\nGeorgia\nSally\nGladys\nLouise\nRobin\nSue\nClara\nConstance\nSuzanne\nAnna\nMinnie\nRosa\nVera\nDarlene\nJackie\nLois\nSusie\nThelma\nDiana\nFaye\nMargie\nVicky\nEllen\nIda\nKay\nValerie\nElla\nMelinda\nDelores\nLynn\nRachel\nEdith\nEva\nJessie\nBettye\nCharlene\nLula\nVelma\nVeronica\nDeloris\nJanie\nKatie\nReba\nAlma\nBillie\nAudrey\nHattie\nMelba\nAnne\nHazel\nMarian\nLynda\nMamie\nRamona\nEarnestine\nJoy\nLucy\nNina\nFannie\nGinger\nLillian\nPatti\nRobbie\nRoberta\nJulie\nJune\nMarion\nMichelle\nTerri\nCindy\nClaudia\nCora\nDora\nJeanne\nMona\nWilma\nMae\nMaxine\nJosephine\nStephanie\nDaisy\nPaulette\nPauline\nEleanor\nJanis\nPriscilla\nRenee\nVictoria\nDelois\nFlora\nJeannie\nJennie\nLydia\nMarjorie\nSharron\nBettie\nCassandra\nDiann\nIrene\nToni\nAmy\nBeatrice\nCarla\nFrankie\nGeneva\nJenny\nMaggie\nNelda\nAndrea\nLee\nMelanie\nNaomi\nBecky\nErnestine\nEunice\nJimmie\nSheryl\nAmanda\nDebora\nMable\nOlivia\nPatty\nYolanda\nBeth\nEssie\nIris\nJerry\nJoann\nPearlie\nEdwina\nFlorence\nLena\nLeslie\nLola\nMaria\nRosetta\nRuthie\nCelia\nDale\nEloise\nEula\nGayle\nHilda\nLana\nLou\nNora\nSallie\nTommie\nArlene\nEsther\nFreda\nJill\nLizzie\nLucille\nMitzi\nMonica\nNellie\nOllie\nBonita\nFreida\nGrace\nIrma\nJoe\nOra\nSherrie\nStella\nAddie\nAlicia\nAmelia\nCherry\nGertrude\nJeannette\nLela\nLynne\nMarla\nOla\nRosalyn\nSonja\nAlfreda\nCarole\nKathie\nKim\nLaurie\nLeola\nLorene\nRosemary\nShelby\nTina\nVerna\nAgnes\nAlberta\nAlthea\nCallie\nHarriet\nHolly\nInez\nLenora\nSadie\nSherri\nAngelia\nBenita\nCecelia\nDella\nDianna\nEddie\nElnora\nMolly\nNadine\nAda\nDana\nHarriett\nHenrietta\nKaye\nKimberly\nMalinda\nNettie\nPenny\nPolly\nRosalind\nShannon\nVickey\nDawn\nDebrah\nDelilah\nDonnie\nDorthy\nErma\nEtta\nFrancis\nGay\nGracie\nJames\nJeanie\nJessica\nLucinda\nMiriam\nNita\nQueen\nRoxanne\nSybil\nTeri\nValeria\nViola\nWilla\nAva\nCarmen\nJamie\nJannie\nJewel\nJoni\nKaron\nKatrina\nLeah\nMarguerite\nNeva\nNona\nPam\nRena\nShelly\nBennie\nCandace\nCecilia\nCornelia\nDona\nFelecia\nFrancine\nJayne\nLori\nMarlene\nMichele\nMyrtle\nRegenia\nShelley\nTeressa\nAngie\nCaroline\nClaire\nColleen\nDeloise\nEarlene\nElsie\nEugenia\nJana\nJanette\nJoanne\nJosie\nKitty\nLaverne\nLeigh\nLessie\nLorraine\nLottie\nLynette\nMaureen\nOpal\nOphelia\nPattie\nPenelope\nRetha\nRochelle\nRonda\nSheree\nTerrie\nTrudy\nVenita\nWendy\nApril\nBernita\nBetsy\nBeulah\nCeleste\nCheri\nChristy\nClaudette\nDollie\nDoretha\nEvangeline\nGwen\nJanell\nLelia\nMarcella\nMargo\nMavis\nMay\nNell\nOctavia\nOdessa\nRhoda\nRobbin\nSherrill\nSherron\nTamara\nVernice\nWonda\nAugusta\nBrinda\nCathrine\nCorliss\nDaphne\nDelphine\nDinah\nDixie\nDottie\nEileen\nEliza\nHenry\nImogene\nIvy\nJoanie\nJoycelyn\nJuliette\nKarla\nKathey\nLila\nLora\nLucile\nMabel\nMadeline\nMargret\nMarilynn\nMarva\nMelody\nMollie\nPortia\nReta\nRobyn\nSandy\nSheri\nSonya\nTanya\nTonya\nViolet\nVoncile\nVonda\nWinnie\nAurelia\nAvis\nBette\nBrunetta\nCandy\nCathie\nCelestine\nCharlie\nCharolette\nClarice\nClementine\nDannie\nDebby\nDena\nDolores\nDonita\nEffie\nElouise\nEstella\nEvie\nFay\nFloretta\nFlossie\nGale\nGayla\nGaynell\nGilda\nGlinda\nIna\nIngrid\nIva\nJacquline\nJeanetta\nJerri\nJoanna\nKathi\nKelly\nKyle\nLeona\nLetha\nLorine\nLouvenia\nLuann\nLuanne\nLucretia\nMarianne\nMelva\nPat\nPatrice\nPearl\nPinkie\nRobert\nRosia\nVernita\nVinnie\nWilda\nWilliam\nYvette\nAlfredia\nAlison\nAllie\nArnita\nBernadine\nBlanche\nBobby\nBridget\nCamilla\nCassie\nCathryn\nCharleen\nChristie\nChristina\nCinda\nCordelia\nCorlis\nDelia\nDelinda\nDonald\nEarline\nEaster\nElois\nFaith\nFloria\nFreddie\nGoldie\nGwenda\nHannah\nHeather\nHope\nIola\nIsabella\nJamelle\nJanetta\nJeri\nJewell\nJohn\nLettie\nMagnolia\nMargarett\nMarietta\nMaude\nMillie\nMiranda\nMittie\nMyrtis\nNedra\nNila\nPamelia\nPeggie\nRachael\nRene\nRoxie\nSammie\nSharlene\nSidney\nSondra\nSuzan\nSyble\nTara\nValarie\nValinda\nVannessa\nVida\nVirgie\nMary\nLinda\nDeborah\nPatricia\nDebra\nBrenda\nBarbara\nSandra\nDonna\nSusan\nCynthia\nPamela\nKathy\nSharon\nShirley\nWanda\nJanice\nTeresa\nCarolyn\nKaren\nBetty\nMartha\nJudy\nRebecca\nElizabeth\nDorothy\nGloria\nNancy\nJanet\nBeverly\nJoyce\nCarol\nMargaret\nAnnie\nConnie\nSheila\nCathy\nMarilyn\nJo\nDiane\nSherry\nRhonda\nCheryl\nPeggy\nRita\nGwendolyn\nAnita\nJacqueline\nDoris\nShelia\nVickie\nGlenda\nPhyllis\nCharlotte\nSarah\nVicki\nDebbie\nCatherine\nPaula\nVirginia\nAlice\nTheresa\nAngela\nHelen\nLaura\nRose\nBelinda\nWillie\nRegina\nPatsy\nAnn\nEvelyn\nLisa\nRuby\nBonnie\nDianne\nDenise\nJulia\nUnknown\nFrances\nJane\nKatherine\nYvonne\nMarsha\nLoretta\nRosie\nVivian\nChristine\nSylvia\nJennifer\nEmma\nAnnette\nBobbie\nElaine\nVanessa\nJuanita\nEdna\nEthel\nJoan\nLillie\nJeanette\nKathryn\nMildred\nRobin\nJudith\nMattie\nMelissa\nTerry\nJean\nMarie\nRuth\nGail\nGeraldine\nMarcia\nElla\nJackie\nBernice\nBertha\nJohnnie\nSara\nConstance\nLois\nCarrie\nGeorgia\nSusie\nLouise\nMelinda\nMyra\nRosa\nMinnie\nAudrey\nCharlene\nMargie\nVera\nAnna\nDarlene\nDiana\nLucy\nThelma\nClara\nSally\nVeronica\nJessie\nSue\nLynn\nMelanie\nJacquelyn\nPriscilla\nCassandra\nHattie\nKathleen\nRamona\nGladys\nDelores\nTerri\nTina\nBessie\nJan\nJoy\nJulie\nPatti\nValerie\nEdith\nVicky\nLeslie\nMae\nNorma\nAmy\nAnne\nEllen\nJune\nKay\nCindy\nDelois\nEmily\nFaye\nKatie\nLula\nRachel\nVictoria\nAlma\nBonita\nClaudia\nSheryl\nBillie\nDeloris\nEva\nJanie\nWilma\nReba\nCarla\nDebora\nHilda\nJanis\nLillian\nRobbie\nBettye\nEarnestine\nFannie\nJosephine\nLynda\nNellie\nSharron\nBecky\nDaisy\nFrankie\nGeneva\nKim\nRoberta\nShelby\nIda\nLee\nAmanda\nAndrea\nBeatrice\nCora\nFlora\nSuzanne\nToni\nGina\nMarian\nMarion\nOlivia\nPaulette\nSabrina\nStephanie\nGinger\nMable\nSadie\nSheree\nCelia\nFreda\nHazel\nMaxine\nPatty\nEssie\nEsther\nLydia\nRenee\nStella\nAlberta\nGayle\nLucille\nMelba\nNina\nYolanda\nIrene\nMarjorie\nMona\nRosetta\nDawn\nDiann\nHenrietta\nJeannie\nJennie\nMichelle\nNadine\nOra\nPearlie\nPolly\nSherrie\nAmelia\nCecelia\nEleanor\nMaggie\nDora\nJeanne\nJimmie\nLaurie\nLizzie\nLorraine\nMiriam\nSallie\nDale\nEloise\nGrace\nLena\nLola\nMamie\nMonica\nRena\nVelma\nBettie\nElsie\nEugenia\nIrma\nLeigh\nSonja\nVickey\nAlicia\nDana\nFlorence\nJenny\nKimberly\nLynne\nRosalind\nRoxanne\nRuthie\nSherri\nAngie\nCallie\nEula\nHolly\nIris\nJames\nJamie\nJannie\nJoann\nLou\nNita\nRosalyn\nAngelia\nBeth\nHarriet\nJill\nMalinda\nNelda\nQueen\nAda\nCarmen\nCecilia\nCherry\nDianna\nErnestine\nFreida\nInez\nJerri\nLorene\nMarcella\nMaria\nPauline\nRosemary\nTommie\nArlene\nDolores\nEunice\nGracie\nJessica\nJoni\nLaverne\nMitzi\nNora\nOllie\nTerrie\nViola\nDixie\nEarlene\nFreddie\nJeannette\nKathie\nTanya\nYvette\nAlfreda\nAlthea\nBenita\nBennie\nCaroline\nDebby\nDonnie\nElnora\nGertrude\nJoanne\nJocelyn\nLana\nLenora\nMarlene\nMaureen\nMelody\nMillie\nOla\nPenny\nRonda\nSybil\nVerna\nBernadette\nClarice\nDaphne\nDella\nDinah\nEtta\nGayla\nGwen\nJacquline\nJeri\nJerrie\nJewel\nKarla\nKaye\nLucile\nMarla\nMichele\nMyrtle\nSandy\nSheri\nVoncile\nAddie\nAva\nBlanche\nBridget\nDelilah\nDeloise\nDorthy\nEartha\nEddie\nErma\nFelicia\nFrancis\nGlinda\nJoanna\nJuliette\nKatrina\nLeah\nLori\nRegenia\nRoxie\nShannon\nSonya\nWendy\nCandace\nCathey\nClaire\nClaudette\nDona\nDorothea\nEffie\nEstella\nGay\nGreta\nJayne\nJerry\nJoe\nJoycelyn\nKaron\nKitty\nLela\nLilly\nLucinda\nLue\nMickey\nNaomi\nPam\nPatrice\nTeri\nAlfredia\nAngeline\nApril\nBeulah\nCathie\nChristie\nChristina\nColleen\nCornelia\nDarla\nEdwina\nImogene\nJeanie\nJewell\nLauren\nLora\nLorine\nLottie\nNettie\nOdessa\nOpal\nRebekah\nRenita\nRobert\nSheilah\nShelly\nTeressa\nValencia\nWilla\nAbbie\nAdell\nAgnes\nCarole\nCeleste\nCelestine\nCharles\nChristy\nDanita\nDee\nEarline\nEliza\nFloria\nFrancine\nFredia\nFrieda\nGussie\nJana\nJoanie\nKerry\nLeila\nLeona\nLibby\nLucretia\nMabel\nMerita\nPortia\nRobbin\nSaundra\nSophia\nTonia\nValarie\nVerdell\nWinifred\nAdrienne\nAlecia\nAletha\nAngelyn\nAnnetta\nCharlie\nClarissa\nClementine\nCrystal\nDebrah\nDelbra\nDina\nDollie\nDonald\nDoretha\nDorris\nDottie\nEileen\nElise\nElois\nElvira\nEve\nFaith\nFelecia\nFlorine\nIva\nIvy\nJohn\nKathi\nLea\nLessie\nLetha\nLynette\nMargo\nMarguerite\nMarva\nMavis\nOphelia\nPat\nPatrica\nPearl\nPeggie\nPenelope\nPrincess\nRetha\nRoslyn\nScarlett\nSelena\nSheliah\nShelley\nSondra\nTamara\nTracy\nValeria\nVanassa\nVernell\nVernita\nZelda\nArlinda\nArnetta\nAugustine\nAvis\nBarbra\nBelva\nBethany\nBetsy\nCamilla\nCarlene\nCheri\nCheryll\nCorliss\nDebroah\nEarlean\nElna\nElouise\nGale\nHarriett\nHarriette\nHellen\nHope\nIdella\nIna\nIra\nJanelle\nJanette\nJanna\nJaunita\nJohnny\nKathey\nKattie\nLanita\nLarry\nLaurel\nLeanne\nLelia\nLesa\nLettie\nLonnie\nLoraine\nLorena\nMadeline\nMalia\nMaple\nMarianne\nMarietta\nMarilynn\nMatilda\nMelva\nMerle\nMichael\nMickie\nMittie\nMollie\nMolly\nNanci\nNedra\nNell\nOdell\nPhillis\nPhoebe\nPinkie\nRachael\nRandy\nReta\nRhoda\nRichard\nRobyn\nRonald\nRonnie\nRosia\nSheron\nShirlene\nSuzette\nTonya\nTrudy\nTwyla\nValorie\nVikki\nVonda\nWinnie\nYolande\nZenobia\nMary\nDeborah\nLinda\nDebra\nPatricia\nBrenda\nSharon\nBarbara\nDonna\nCynthia\nPamela\nKathy\nSandra\nKaren\nSusan\nTeresa\nShirley\nJanice\nWanda\nCarolyn\nBetty\nGloria\nRebecca\nDorothy\nCarol\nMartha\nNancy\nElizabeth\nJanet\nCathy\nJudy\nRhonda\nBeverly\nMargaret\nSherry\nSheila\nAnnie\nCheryl\nJoyce\nConnie\nDiane\nShelia\nDebbie\nMarilyn\nPeggy\nRita\nJacqueline\nCatherine\nVickie\nAngela\nJo\nVicki\nDoris\nGlenda\nAnita\nPhyllis\nSarah\nVirginia\nGwendolyn\nTheresa\nCharlotte\nLisa\nLaura\nPaula\nHelen\nJennifer\nDenise\nAlice\nRuby\nRose\nFrances\nRobin\nAnn\nEvelyn\nKatherine\nWillie\nBonnie\nPatsy\nBelinda\nJuanita\nKathryn\nChristine\nCindy\nRegina\nSylvia\nJulia\nAnnette\nRosie\nVanessa\nJane\nEmma\nLoretta\nVivian\nDarlene\nMattie\nTina\nDianne\nEdna\nGeraldine\nYvonne\nJoan\nTerri\nUnknown\nMildred\nMelissa\nBobbie\nTerry\nEthel\nMarsha\nRuth\nJudith\nElaine\nGail\nJean\nJeanette\nLynn\nSara\nLillie\nMelanie\nJulie\nKim\nMarie\nJackie\nCarrie\nEllen\nAudrey\nKathleen\nMelinda\nMarcia\nMargie\nYolanda\nMyra\nBernice\nDiana\nJohnnie\nVeronica\nClara\nJan\nSheryl\nAnna\nBecky\nDelores\nValerie\nNorma\nAmy\nBertha\nJessie\nLois\nRosa\nSusie\nVicky\nVictoria\nPatti\nStephanie\nVera\nWilma\nElla\nEva\nJacquelyn\nJanis\nKay\nSally\nCharlene\nHazel\nIda\nJoy\nKatie\nRachel\nThelma\nConstance\nGeorgia\nMinnie\nNina\nReba\nSue\nCarla\nLouise\nRamona\nToni\nCassandra\nFannie\nJanie\nDana\nEmily\nGina\nGinger\nJune\nLillian\nLucy\nPaulette\nAnne\nFaye\nKimberly\nLee\nRenee\nSharron\nSherri\nSuzanne\nAmanda\nLeslie\nMarion\nSherrie\nEdith\nFrankie\nPriscilla\nBillie\nGladys\nHattie\nAlma\nSheree\nHenrietta\nPatty\nDiann\nJeannie\nLaurie\nBessie\nBettye\nCora\nDeloris\nDora\nEarnestine\nJeanne\nJoann\nRobbie\nEunice\nLeigh\nMaxine\nMona\nVelma\nCarmen\nIris\nLula\nMaggie\nMamie\nBeatrice\nBeth\nDebora\nEleanor\nJosephine\nLynne\nStella\nCecelia\nFreda\nGeneva\nArlene\nBonita\nCecilia\nLeah\nLou\nLydia\nMichelle\nSabrina\nAndrea\nClaudia\nErnestine\nGrace\nHilda\nLucille\nMonica\nNellie\nPearlie\nRoberta\nTeri\nAmelia\nDaisy\nDianna\nFlora\nKatrina\nLena\nPenny\nQueen\nSheri\nSonya\nVickey\nEsther\nFreddie\nMae\nMarian\nPauline\nTerrie\nTommie\nWendy\nAlfreda\nAlthea\nAngie\nBettie\nDawn\nDelois\nEloise\nFreida\nLynda\nMelody\nOllie\nPam\nRosemary\nRosetta\nViola\nAlberta\nDale\nEssie\nGayle\nHarriet\nJenny\nLola\nNita\nNora\nRoxanne\nCornelia\nMaria\nMarla\nMelba\nShelby\nCherry\nDella\nFelicia\nIrma\nJannie\nJoanne\nKathie\nLorene\nNelda\nOla\nOlivia\nRosalyn\nSonja\nTanya\nAgnes\nAngelia\nBenita\nCelia\nDebrah\nEula\nIrene\nJamie\nJill\nLizzie\nMable\nMalinda\nMitzi\nPhillis\nAddie\nDollie\nEddie\nErma\nHolly\nJimmie\nJoni\nKaron\nLenora\nMiriam\nRobyn\nSallie\nSandy\nShannon\nAlicia\nAntoinette\nAvis\nCarole\nDinah\nEarlene\nElsie\nFlorence\nJeanie\nJeannette\nLela\nLori\nOra\nPearl\nPeggie\nPolly\nSadie\nWinifred\nYvette\nCharlie\nChristy\nCorliss\nDeloise\nGayla\nGracie\nGwen\nIvy\nJennie\nJewel\nJoe\nJoycelyn\nKathrine\nLeona\nMarjorie\nMolly\nNadine\nNaomi\nRegenia\nRena\nValeria\nViolet\nBernadette\nCandace\nCaroline\nDottie\nJana\nJerri\nKarla\nKelly\nLana\nLeesa\nLorraine\nRuthie\nValarie\nVoncile\nAllison\nBlanche\nCelestine\nCharles\nCherrie\nClaudette\nDesiree\nDoreen\nFay\nFelecia\nGertrude\nJeri\nLelia\nLucinda\nMyrtle\nOdessa\nRonda\nRosalind\nShelley\nSonia\nSybil\nTeressa\nTracy\nVernita\nAda\nAdrienne\nCallie\nClaire\nDebby\nDelphine\nDixie\nEarline\nEdwina\nElise\nElouise\nFredia\nJames\nJosie\nLeola\nLetha\nMadeline\nMillie\nNatalie\nNettie\nReta\nRoslyn\nSondra\nStarla\nTeena\nTrudy\nAlisa\nAutherine\nAva\nBethany\nBeulah\nBridget\nCherie\nClarissa\nDarla\nDeanna\nDena\nDessie\nEugenia\nFaith\nFrancine\nGale\nImogene\nJeanetta\nKaye\nKitty\nLavern\nLynette\nMarcella\nMarlene\nMichael\nMichele\nPenelope\nPortia\nRosia\nTeresia\nVerna\nVikki\nWilda\nZelda\nChristina\nDolores\nDonnie\nEartha\nGay\nGearldine\nGlinda\nGreta\nJanette\nJessica\nJewell\nKaran\nLaurel\nLaverne\nLea\nLessie\nLila\nLucile\nNona\nOphelia\nPat\nPatrica\nPatrice\nRobbin\nScarlett\nShawn\nValencia\nApril\nArthurine\nBennie\nBetsy\nBobby\nBrinda\nCarlene\nCathryn\nChandra\nColleen\nCorine\nCrystal\nDeirdre\nDenice\nDennis\nDolly\nDona\nDorthy\nElois\nEstella\nGlynis\nGwenda\nHarriett\nHope\nInez\nIva\nJacquline\nJayne\nJerrie\nJerry\nJocelyn\nJuliette\nKatharine\nKerry\nLadonna\nLesa\nLibby\nLorna\nLuanne\nMargret\nMarilynn\nMavis\nMerita\nMerry\nMollie\nNan\nPinkie\nRebekah\nRobert\nSelina\nSheron\nSuzette\nTena\nTonya\nTrina\nVanda\nVirgie\nWonda\nAbbie\nAlesia\nArnita\nBeverley\nBrenetta\nBridgett\nCandy\nCassie\nCharletta\nCheri\nChris\nDanette\nDaphne\nDavid\nDeana\nDebbra\nDebroah\nDelane\nDonita\nDoretha\nDorinda\nDorris\nDrucilla\nEileen\nEster\nEtta\nFrancis\nGaynell\nGeorge\nGilda\nGlenna\nIvory\nJacqulyn\nJannette\nJeana\nJeannine\nJoanie\nJoanna\nJody\nJohn\nKatheryn\nKristi\nLarry\nLatanya\nLauren\nLawana\nLawanda\nLeila\nLetitia\nLora\nLuann\nLue\nLuvenia\nLyn\nMadelyn\nMarva\nMatilda\nMelisa\nMelvin\nMickie\nMuriel\nMyrna\nNell\nOpal\nPamelia\nReita\nRenita\nRichard\nSaundra\nSharion\nSheilah\nSherree\nSherrell\nSherrill\nSherron\nSophia\nSuzan\nTara\nValorie\nVelda\nVenita\nVernell\nMary\nLinda\nDebra\nDeborah\nBrenda\nCynthia\nPatricia\nDonna\nSharon\nKathy\nSusan\nSandra\nKaren\nPamela\nBarbara\nTeresa\nWanda\nJanice\nShirley\nCarolyn\nCathy\nBetty\nGloria\nSheila\nRebecca\nCheryl\nCarol\nDebbie\nDorothy\nNancy\nJudy\nRhonda\nElizabeth\nMartha\nBeverly\nSherry\nConnie\nJanet\nVickie\nAnnie\nLisa\nShelia\nCindy\nMargaret\nRita\nAngela\nDiane\nVicki\nAnita\nVirginia\nPhyllis\nGwendolyn\nGlenda\nJoyce\nPaula\nJo\nTheresa\nCharlotte\nMarilyn\nJacqueline\nLaura\nPeggy\nCatherine\nRobin\nDoris\nDarlene\nDenise\nRegina\nJennifer\nJulia\nBelinda\nAnnette\nTerri\nKathryn\nRose\nSarah\nChristine\nAlice\nFrances\nSylvia\nEvelyn\nKatherine\nBonnie\nVanessa\nAnn\nHelen\nLoretta\nPatsy\nJane\nMelissa\nTina\nWillie\nDianne\nJulie\nRuby\nEmma\nKim\nVivian\nBecky\nBobbie\nValerie\nJackie\nJuanita\nYvonne\nGail\nSara\nMyra\nTerry\nJan\nGeraldine\nMarie\nRosie\nLeslie\nLillie\nJoan\nRuth\nTammy\nElaine\nMelinda\nPam\nMelanie\nMattie\nVeronica\nKimberly\nVera\nAudrey\nDiana\nCarla\nCassandra\nLynn\nStephanie\nMarcia\nJoy\nMildred\nAnna\nJean\nYolanda\nBernice\nEdna\nBertha\nEthel\nKay\nNorma\nSusie\nClara\nJeanette\nJohnnie\nPatti\nVicky\nCarrie\nEllen\nKathleen\nRosa\nLois\nLouise\nGeorgia\nJudith\nMarsha\nRamona\nSheryl\nAmy\nGladys\nJosephine\nLee\nMargie\nSally\nGinger\nVictoria\nBessie\nPriscilla\nDana\nJessie\nJoann\nSherri\nEdith\nElla\nRachel\nWilma\nFaye\nIda\nSue\nCharlene\nMona\nDelores\nJacquelyn\nLynda\nToni\nConstance\nDeloris\nEarnestine\nEmily\nEva\nLillian\nLucy\nRobbie\nRosemary\nAmanda\nAndrea\nAnne\nBillie\nMonica\nReba\nDebora\nGina\nHattie\nJanie\nJeannie\nLenora\nThelma\nCarmen\nPatty\nBonita\nDelois\nFannie\nHazel\nMarjorie\nSherrie\nSuzanne\nGeneva\nMarion\nMinnie\nSharron\nUnknown\nWendy\nAlma\nCora\nJune\nMarian\nSabrina\nAmelia\nMichelle\nBeth\nFelecia\nFelicia\nGrace\nMelody\nNina\nPenny\nRenee\nDaisy\nDiann\nJeanne\nLeigh\nNellie\nSallie\nSonya\nAngie\nDawn\nEsther\nFrankie\nJamie\nLorraine\nMalinda\nPaulette\nTanya\nVelma\nAngelia\nEleanor\nFlora\nNatalie\nRoberta\nTerrie\nCherry\nIrene\nIris\nKelly\nMae\nPearlie\nSandy\nDora\nJenny\nKatie\nMaria\nMaxine\nMelba\nRosalyn\nDianna\nGayle\nLucille\nMaggie\nPauline\nArlene\nBettye\nCecilia\nGracie\nHarriet\nLou\nOllie\nQueen\nTommie\nAlberta\nDella\nErma\nEunice\nJennie\nJerri\nJoanne\nKatrina\nLaverne\nLynne\nMamie\nMarianne\nNelda\nBettie\nCelia\nFreda\nJanis\nJill\nLaurie\nLola\nTracy\nVerna\nAlicia\nCarole\nEloise\nErnestine\nEula\nGwen\nHenrietta\nHilda\nJanette\nLula\nLydia\nMitzi\nNettie\nRobyn\nRosetta\nSonja\nAgnes\nAlfreda\nDale\nFreida\nJannie\nJerry\nJoni\nKarla\nLeah\nLena\nLori\nLucinda\nNaomi\nRena\nTammie\nTonya\nVickey\nViola\nDelilah\nJayne\nLila\nMarilynn\nOra\nPat\nSheri\nAda\nBeatrice\nBetsy\nBlanche\nClaudia\nEddie\nEtta\nGale\nIvy\nLesa\nLorene\nNita\nSadie\nShelby\nCaroline\nChristy\nCrystal\nDenice\nDinah\nDolores\nFlorence\nHolly\nJoanie\nLizzie\nMyrtle\nOlivia\nPearl\nPolly\nRuthie\nShannon\nStella\nTena\nTeri\nWilla\nAddie\nAvis\nCecelia\nChristina\nCorine\nCornelia\nDixie\nElsie\nEugenia\nGertrude\nGlinda\nJames\nJewel\nJohn\nKathie\nLeona\nMichele\nMiriam\nNora\nRenita\nRosalind\nSheree\nSonia\nCallie\nCherie\nDebby\nDollie\nDorthy\nEarlene\nFrancine\nGayla\nJoe\nJosie\nLela\nLeola\nMarcella\nMarlene\nMollie\nMolly\nNadine\nOphelia\nPortia\nRobbin\nRonda\nSybil\nTeresia\nYvette\nAlisa\nAva\nBennie\nBernadine\nBobby\nDanita\nDarla\nEvonne\nIna\nJeannette\nJimmie\nKaron\nKathi\nLadonna\nLeisa\nLelia\nLibby\nMaureen\nMillie\nNan\nRene\nSaundra\nShelly\nSheron\nViolet\nAdrienne\nAntoinette\nBenita\nCandy\nCassie\nChris\nChristie\nClarice\nDebrah\nDonnie\nDoretha\nEliza\nEssie\nFrancis\nFreddie\nGeorge\nGlendora\nHarriett\nJacquline\nJerrie\nJessica\nJoycelyn\nJuliet\nLarry\nLatanya\nLora\nLorna\nLucile\nMarla\nMay\nNanette\nPeggie\nPenelope\nRegenia\nRhoda\nRoslyn\nRoxanne\nShelley\nStacy\nTamara\nTara\nTeressa\nTrudy\nValencia\nAlthea\nApril\nBernadette\nBethany\nBeverley\nCandace\nCaren\nCeleste\nChandra\nCharlie\nClarissa\nClementine\nColleen\nDarleen\nDeloise\nDelphine\nDena\nEarline\nEdwina\nEileen\nEstella\nFaith\nFran\nIrma\nJody\nJuliette\nKaye\nLana\nLarita\nLawanda\nLesia\nLetha\nLetitia\nLouella\nMuriel\nOctavia\nOla\nPatrice\nRobert\nRosia\nTami\nTracie\nValarie\nValeria\nAbbie\nAnnetta\nArnetta\nCamille\nCheri\nCherri\nChiquita\nCindi\nDaphne\nDee\nDelinda\nDelorise\nDesiree\nDona\nDonald\nDorothea\nDottie\nElois\nHarriette\nInez\nIola\nJana\nJanelle\nJeanie\nJeri\nJocelyn\nKatheryn\nLea\nLeila\nLoretha\nLorine\nMandy\nMargo\nMarietta\nMarva\nMavis\nMeredith\nMyrna\nNena\nOuida\nPamala\nRebekah\nReta\nShawn\nSherree\nStarla\nVoncile\nAbigail\nAletha\nAlyce\nAngelyn\nBeryl\nBridget\nCamellia\nCathrine\nCelestine\nChrista\nChrystal\nClaire\nClaudette\nCordelia\nCurtis\nDanna\nDarnell\nDeanna\nDebroah\nDeena\nDelane\nDell\nDenese\nDina\nDoreen\nDrusilla\nEartha\nElnora\nGary\nGay\nGussie\nGwenevere\nIrish\nJeanna\nJoanna\nJohnetta\nKaran\nKarol\nLaurel\nLauren\nLeanne\nLeesa\nLottie\nLovetta\nLue\nLyn\nMabel\nMadelyn\nMarisa\nMiranda\nNannette\nNeva\nOdessa\nPauletta\nPhillis\nPhoebe\nRegena\nRetha\nRochelle\nRoxie\nShari\nSusanne\nSuzan\nTraci\nTrina\nVinnie\nWilhelmina\nWilliam\nWinona\nZelma\nMary\nLinda\nDebra\nCynthia\nPatricia\nDeborah\nBrenda\nDonna\nSusan\nKathy\nPamela\nBarbara\nSandra\nSharon\nKaren\nTeresa\nJanice\nWanda\nLisa\nCheryl\nCarolyn\nShirley\nDebbie\nCathy\nJudy\nElizabeth\nBetty\nCarol\nNancy\nRebecca\nSheila\nRhonda\nMartha\nAngela\nGloria\nJanet\nSherry\nCindy\nPeggy\nVickie\nBeverly\nAnita\nDorothy\nShelia\nConnie\nJoyce\nLaura\nMargaret\nAnnie\nVicki\nPhyllis\nTammy\nRita\nTheresa\nDenise\nDiane\nBelinda\nRegina\nJulie\nGlenda\nAnnette\nTerri\nDarlene\nVanessa\nPaula\nCharlotte\nDoris\nJacqueline\nVirginia\nCatherine\nRose\nMarilyn\nRobin\nGwendolyn\nJo\nJennifer\nSarah\nTina\nMelissa\nAlice\nMyra\nLoretta\nValerie\nFrances\nJulia\nSylvia\nBonnie\nHelen\nKathryn\nRuby\nKatherine\nWillie\nBecky\nChristine\nKim\nJackie\nEvelyn\nPatsy\nVivian\nAnn\nKimberly\nYvonne\nMelinda\nRosie\nAnna\nDianne\nKay\nTerry\nBobbie\nPam\nStephanie\nYolanda\nEmma\nJane\nVicky\nMelanie\nAmy\nClara\nJuanita\nLynn\nMarie\nVeronica\nElaine\nGail\nJoan\nLeslie\nMattie\nCassandra\nJan\nJudith\nEdna\nBertha\nGina\nEthel\nKelly\nMarsha\nBeth\nCarla\nLillie\nPatti\nGinger\nVictoria\nDiana\nKathleen\nSally\nSuzanne\nCarrie\nMargie\nRuth\nMildred\nSara\nToni\nBernice\nEva\nNorma\nVera\nHazel\nMarcia\nPenny\nPriscilla\nRobbie\nThelma\nAnne\nAudrey\nEmily\nJacquelyn\nSherri\nSheryl\nDelores\nJeanette\nMarion\nRamona\nDebora\nElla\nGeraldine\nJoann\nLori\nConstance\nJoy\nMichelle\nMinnie\nDawn\nGeorgia\nJohnnie\nJosephine\nSusie\nCharlene\nEdith\nRosa\nJean\nEllen\nLillian\nMonica\nSabrina\nRachel\nAmanda\nAndrea\nAlfreda\nIda\nJessie\nJill\nMona\nReba\nBessie\nJanie\nMaxine\nRenee\nBillie\nLee\nLois\nBonita\nDana\nLaurie\nLynda\nNina\nDeloris\nGladys\nJeannie\nLouise\nSue\nIrene\nLula\nPatty\nSherrie\nWendy\nAngie\nFannie\nKatrina\nMelody\nOlivia\nTanya\nJenny\nLeigh\nMichele\nTammie\nTerrie\nAngelia\nDaisy\nDianna\nDora\nFlora\nLorraine\nLucy\nMarian\nSandy\nTamara\nJamie\nLucille\nEarnestine\nHattie\nJoanne\nLydia\nRosemary\nBeatrice\nFrankie\nBenita\nCarmen\nClaudia\nFreda\nIris\nJanis\nJeanne\nKatie\nMitzi\nNatalie\nRenita\nSharron\nUnknown\nVelma\nFelecia\nHolly\nLola\nLynne\nMalinda\nMamie\nMaria\nPaulette\nSonya\nWilma\nAlisa\nCelia\nCrystal\nDiann\nEssie\nFaye\nHenrietta\nJennie\nJessica\nLeah\nLeisa\nNaomi\nNita\nPearlie\nTeri\nAlma\nArlene\nBetsy\nBettie\nCora\nDella\nGayle\nJoni\nKelley\nMaggie\nMarjorie\nPauline\nRobyn\nStella\nAgnes\nAmelia\nCecilia\nDelois\nDelphine\nFelicia\nJimmie\nMae\nNelda\nRoberta\nRoxanne\nShannon\nVickey\nAddie\nAllison\nBridget\nCheri\nChristy\nDaphne\nGeneva\nGrace\nJoanna\nJune\nLela\nLenora\nLou\nMiriam\nPatrice\nRosalyn\nSondra\nTonya\nVerna\nCandace\nCarole\nCaroline\nCecelia\nDixie\nLana\nLesa\nNora\nRosetta\nSallie\nSheree\nAlicia\nCherry\nClaudette\nEddie\nJeannette\nKarla\nLena\nMelba\nRosalind\nShelby\nTami\nTommie\nValarie\nViola\nAlberta\nAlthea\nBettye\nErnestine\nEula\nEunice\nFreddie\nJana\nJannie\nKitty\nMarlene\nNellie\nNettie\nPat\nRena\nSelena\nSonja\nApril\nChandra\nDinah\nDorthy\nEarline\nFlorence\nGale\nHarriet\nJerry\nKaron\nLaverne\nMarcella\nPolly\nSybil\nValencia\nWinifred\nBernadette\nCeleste\nEleanor\nEloise\nFreida\nGlinda\nHilda\nIvy\nJerri\nJewel\nKathi\nLeesa\nLucinda\nLynette\nMarianne\nOllie\nPortia\nStarla\nTamela\nTeressa\nAlison\nAvis\nBobby\nCharles\nDebrah\nDonnie\nEsther\nEugenia\nFrieda\nGracie\nHarriett\nIrma\nJacquline\nJerrie\nJoe\nLelia\nLucretia\nMyrtle\nOdessa\nOphelia\nQueen\nSadie\nSaundra\nTeresia\nTracy\nVikki\nAda\nBernadine\nCallie\nCharlie\nCherie\nChris\nClaire\nColleen\nDanita\nDebby\nEarlene\nElisabeth\nElsie\nGreta\nGwen\nJames\nJeanie\nKathie\nLea\nLeona\nMable\nMarla\nMiranda\nMolly\nOra\nRenae\nRetha\nStacy\nSuzan\nTena\nValeria\nVernell\nViolet\nYvette\nAntoinette\nCorine\nDale\nDeanna\nDeloise\nDena\nDolores\nElnora\nFay\nGay\nGertrude\nJoycelyn\nKellie\nLawanda\nLetha\nLibby\nLora\nLorine\nNadine\nPattie\nRegenia\nRoslyn\nRuthie\nSheena\nShelley\nShelly\nSheri\nSonia\nSophia\nTonia\nVoncile\nAlfredia\nAndretta\nBennie\nBeverley\nCamellia\nCamille\nCathryn\nChristina\nDelia\nDenice\nEdwina\nEffie\nEliza\nErma\nEstella\nHeidi\nInez\nIngrid\nJanette\nJeri\nKerry\nLadonna\nLesia\nLessie\nLizzie\nLucile\nMadeline\nMaureen\nMichael\nMollie\nPamelia\nRene\nRhoda\nRochelle\nSheron\nTeena\nTonie\nTracey\nVenita\nAlyce\nBettina\nCandy\nCathleen\nCindi\nClarissa\nCornelia\nDeana\nEaster\nElisa\nErin\nEtta\nFran\nGeorge\nGertha\nIna\nIva\nJayne\nJeanetta\nJeanine\nJolene\nKarin\nKaye\nLeola\nLila\nLiz\nLorene\nMargo\nMarilynn\nMavis\nMickey\nMicki\nMillie\nMittie\nNanette\nNeva\nNona\nOuida\nOvetta\nPaige\nPeggie\nPenelope\nRonda\nSherron\nStacey\nSuzette\nTamra\nTommy\nTrina\nTrudy\nValorie\nZelda\nAdrienne\nAlecia\nAletha\nAllie\nAnnetta\nAva\nBambi\nBarbra\nBernita\nBethany\nBobbi\nBridgett\nBridgette\nCaron\nChristie\nClarice\nDanette\nDarleen\nDebroah\nDewanda\nDian\nDona\nDonald\nDoreen\nDorene\nDrucilla\nEdward\nElouise\nEra\nEvangeline\nEve\nFaith\nGena\nGerri\nGlory\nJodi\nJosie\nKaran\nKelli\nKristi\nKristina\nLarry\nLeila\nLenita\nLottie\nLuanne\nMabel\nMalissa\nMarva\nMelisa\nMerry\nMyrna\nNannette\nNena\nPatrica\nPrincess\nRebekah\nReva\nRobbin\nRoselyn\nRosemarie\nRoxie\nSammie\nSheilah\nSherlene\nSherree\nSuzy\nTamera\nTherese\nTricia\nTwila\nWendolyn\nWilla\nWinnie\nWonda\nMary\nDonna\nLinda\nCynthia\nDebra\nPatricia\nBrenda\nDeborah\nSandra\nPamela\nTeresa\nKathy\nSharon\nSusan\nKaren\nLisa\nBarbara\nWanda\nDebbie\nJanice\nCarolyn\nTammy\nCheryl\nElizabeth\nBetty\nAngela\nBeverly\nShirley\nNancy\nCarol\nSheila\nCindy\nRhonda\nJanet\nRebecca\nJudy\nMartha\nCathy\nDorothy\nGloria\nConnie\nMargaret\nSherry\nShelia\nDiane\nAnnie\nVickie\nLaura\nAnita\nJoyce\nGlenda\nPhyllis\nTerri\nPeggy\nVanessa\nCharlotte\nCatherine\nRobin\nDenise\nGwendolyn\nTheresa\nJacqueline\nRita\nDoris\nTina\nAnnette\nKimberly\nSarah\nVicki\nPaula\nJulie\nKim\nMelissa\nRegina\nValerie\nBelinda\nJennifer\nVirginia\nAlice\nJo\nDarlene\nLoretta\nMarilyn\nJulia\nHelen\nFrances\nSylvia\nEvelyn\nKatherine\nRose\nStephanie\nRuby\nBecky\nKathryn\nVivian\nAnn\nJackie\nChristine\nMelanie\nPatsy\nDianne\nPam\nTerry\nAmy\nKelly\nBonnie\nYolanda\nAnna\nCarrie\nMyra\nJane\nRosie\nVeronica\nElaine\nJuanita\nCassandra\nMelinda\nLynn\nJoy\nBeth\nJeanette\nMarie\nAudrey\nYvonne\nEllen\nEdna\nVicky\nBobbie\nCarla\nJan\nLillie\nSara\nGina\nMarcia\nEmma\nLori\nWillie\nRuth\nDiana\nJoan\nMarsha\nJudith\nMattie\nMildred\nGail\nKathleen\nLeslie\nRamona\nJean\nMinnie\nPatti\nToni\nElla\nRosa\nAndrea\nClara\nMonica\nSuzanne\nCharlene\nSherri\nSonya\nWendy\nDawn\nVictoria\nGeorgia\nJohnnie\nLois\nLouise\nMichelle\nPenny\nRenee\nSusie\nDana\nEdith\nEva\nKay\nSally\nSandy\nTammie\nAnne\nIda\nJoann\nLee\nNorma\nThelma\nVera\nEmily\nGeraldine\nJacquelyn\nJessie\nLillian\nLynda\nMona\nAmanda\nLeigh\nSheryl\nBertha\nEthel\nPriscilla\nLaurie\nAngelia\nBernice\nFelicia\nJenny\nSharron\nTracy\nBenita\nDebora\nGinger\nHazel\nJamie\nNina\nBessie\nCecilia\nRachel\nBonita\nGladys\nLula\nRobbie\nSabrina\nWilma\nDelores\nJanie\nJeannie\nLeisa\nMaria\nPatty\nTanya\nCarmen\nConstance\nTamara\nTami\nVickey\nDaisy\nEarnestine\nHattie\nJosephine\nAlicia\nDelois\nDeloris\nDora\nJune\nKarla\nSonja\nSue\nAngie\nKatie\nKatrina\nLucille\nLydia\nMaxine\nRosemary\nAlfreda\nDianna\nGeneva\nJeanne\nJeannette\nLorraine\nLucy\nMelody\nAmelia\nBillie\nCheri\nGayle\nJerri\nMichele\nReba\nTonya\nAllison\nBernadette\nBettie\nCaroline\nEsther\nFaye\nGwen\nJill\nJoanne\nLeah\nLena\nMarian\nMarion\nSherrie\nTracey\nYvette\nAlma\nEunice\nFrancine\nMamie\nMarjorie\nNatalie\nOlivia\nRosalind\nVelma\nCora\nDeanna\nEloise\nFreda\nLola\nNora\nSheree\nTeri\nTerrie\nViola\nEleanor\nIrene\nIris\nMargie\nStella\nValeria\nArlene\nFlora\nHarriet\nLenora\nMaggie\nMitzi\nShelby\nBeatrice\nCherry\nDeloise\nDiann\nFreida\nHolly\nJoni\nKelley\nLana\nMalinda\nMelba\nCecelia\nDena\nGrace\nJames\nJennie\nLynne\nPearlie\nRoberta\nRosetta\nSallie\nShannon\nSheri\nValarie\nAlberta\nBettye\nCrystal\nDella\nFannie\nFelecia\nHenrietta\nLela\nLou\nNettie\nPat\nPaulette\nShari\nAda\nAntoinette\nBridget\nChristy\nClaudia\nElisa\nEula\nGay\nJannie\nJerry\nJimmie\nLadonna\nLila\nLizzie\nOra\nPauline\nPolly\nBetsy\nCarole\nDarla\nDinah\nEssie\nHilda\nJoanna\nLeila\nLynette\nMavis\nNita\nQueen\nRobyn\nSonia\nSuzan\nVernell\nAlisa\nApril\nCandace\nDale\nDoretha\nEileen\nErnestine\nFrankie\nIrma\nJanette\nJanis\nJeanie\nKellie\nKitty\nLea\nMae\nMarianne\nOla\nRena\nRosalyn\nRuthie\nSelena\nStacy\nSuzette\nTrina\nUnknown\nValencia\nAlison\nCharlie\nClarissa\nClaudette\nColleen\nDanita\nDebby\nDebrah\nDixie\nDolores\nDorthy\nEarlene\nEddie\nFlorence\nGracie\nJeri\nJewel\nKaran\nKatharine\nLesa\nLorrie\nMarcella\nMiriam\nMollie\nMyrtle\nNanette\nNaomi\nNellie\nPatrice\nRene\nRonda\nTeressa\nTommie\nAbigail\nAddie\nAllyson\nAlthea\nBrigitte\nCelia\nCharles\nChristina\nDaphne\nEarline\nEdwina\nEstella\nFaith\nGena\nGertrude\nGlinda\nJeanine\nJerrie\nLauren\nLeesa\nLessie\nLora\nLucinda\nLucretia\nMable\nMarlene\nMittie\nPattie\nRegenia\nReta\nShelley\nSondra\nTamela\nTena\nViolet\nWinifred\nAlesia\nAnnetta\nArleen\nAva\nBlanche\nBobby\nCallie\nCamille\nCandy\nChristi\nDelphine\nGale\nGussie\nIvy\nJana\nJody\nJoe\nLeola\nLibby\nLorene\nMadeline\nMarguerite\nMarla\nMarva\nMelisa\nMerry\nNelda\nPenelope\nRegena\nRenita\nRoslyn\nTara\nTawana\nVerna\nVonda\nAlfredia\nBridgette\nCasandra\nDeana\nElnora\nErin\nEvonne\nFrancis\nFreddie\nGigi\nGreta\nGwenda\nImogene\nInez\nJacquline\nJayne\nJeanetta\nJessica\nKathi\nKerry\nKimberley\nLarry\nLauri\nLaverne\nLeanne\nLetha\nMarietta\nMillie\nNadine\nNannette\nOctavia\nPamala\nRenae\nRhoda\nRobert\nRochelle\nSheena\nSheron\nTeena\nThresa\nAdrienne\nBarbra\nBernadine\nCeleste\nCelestine\nChandra\nChris\nChristie\nClaire\nCornelia\nDenice\nDesiree\nDonald\nDonita\nErma\nEtta\nEugenia\nFran\nGayla\nGlory\nGretchen\nHarriett\nHeidi\nIva\nJacquelin\nJodi\nJuliette\nKathie\nLauretta\nLesia\nLuann\nMadelyn\nMargarette\nMaureen\nMay\nMiranda\nNena\nOdessa\nOllie\nPatrica\nPearl\nPhillis\nRemona\nRobbin\nRonnie\nRoxanne\nRoxie\nSadie\nSaundra\nSheilah\nSherryl\nSophia\nSydney\nTamie\nTrudy\nVoncile\nWilla\nAbbie\nAgatha\nAgnes\nAndra\nAngeline\nBeulah\nBeverley\nBridgett\nCarroll\nCathrine\nCharolette\nClarice\nColeen\nCorine\nDebi\nDelinda\nDian\nDonnie\nDoreen\nDorothea\nDottie\nEffie\nElsie\nEvie\nGilda\nGretta\nIlene\nIna\nIra\nJewell\nJohnetta\nJudi\nKaron\nKatheryn\nKendra\nLawana\nLelia\nLoraine\nLuanne\nLucile\nMechelle\nMichael\nMolly\nMyrtis\nNell\nPhoebe\nPinkie\nRebekah\nRenea\nSelina\nShellie\nSybil\nTammi\nTamra\nTherese\nTheresia\nTressa\nVenessa\nVernita\nYolande\nMary\nDonna\nLinda\nCynthia\nBrenda\nPatricia\nLisa\nDebra\nTeresa\nPamela\nSandra\nSharon\nDeborah\nSusan\nKaren\nBarbara\nKathy\nAngela\nWanda\nElizabeth\nDebbie\nCarolyn\nJanice\nRhonda\nTammy\nCheryl\nCarol\nSheila\nSherry\nGloria\nJanet\nCindy\nShirley\nNancy\nBetty\nRebecca\nBeverly\nCathy\nLaura\nMartha\nRegina\nAnita\nShelia\nMargaret\nDorothy\nAnnie\nKimberly\nTerri\nJudy\nTina\nVanessa\nVickie\nPhyllis\nCharlotte\nConnie\nJoyce\nJacqueline\nMelissa\nRita\nDiane\nSarah\nVicki\nGlenda\nRobin\nDenise\nAnnette\nKim\nPaula\nJennifer\nBelinda\nTheresa\nPeggy\nJulie\nCatherine\nGwendolyn\nValerie\nLoretta\nDoris\nVirginia\nDarlene\nAlice\nMelanie\nStephanie\nMarilyn\nHelen\nBecky\nFrances\nTracy\nAnna\nJulia\nKatherine\nKelly\nWillie\nLori\nRuby\nBonnie\nJo\nPam\nChristine\nRose\nAmy\nVivian\nCassandra\nJackie\nMyra\nMelinda\nSonya\nYolanda\nKathryn\nEvelyn\nAnn\nJuanita\nWendy\nSylvia\nYvonne\nVeronica\nGail\nGina\nLeslie\nPenny\nDana\nFelicia\nTerry\nVicky\nDianne\nCarla\nElaine\nLaurie\nRuth\nJan\nJane\nLynn\nMichelle\nPatsy\nRenee\nToni\nEllen\nMonica\nRosie\nEthel\nJeanette\nJoy\nPatti\nRosa\nSuzanne\nBeth\nDiana\nJudith\nMattie\nTammie\nAudrey\nEdna\nMarie\nMarsha\nClara\nDawn\nEmma\nKathleen\nLillie\nSusie\nVictoria\nAmanda\nAndrea\nCharlene\nMelody\nMildred\nAngelia\nBobbie\nMarcia\nConstance\nGinger\nJoan\nSherri\nCarrie\nJamie\nAnne\nSara\nBertha\nEva\nGladys\nJohnnie\nLydia\nBernice\nEdith\nEmily\nLillian\nNorma\nRachel\nGeraldine\nRamona\nBonita\nJenny\nPriscilla\nJoann\nLeigh\nLynda\nMargie\nAngie\nJanie\nAmelia\nIda\nKatrina\nSally\nGeorgia\nLee\nSandy\nVera\nDelores\nElla\nKay\nLois\nMaria\nRobbie\nSheryl\nTonya\nLouise\nLucy\nMona\nNina\nSharron\nTracey\nAlesia\nAlicia\nBessie\nCarmen\nJacquelyn\nSabrina\nTami\nThelma\nDora\nJean\nMarian\nSherrie\nCora\nJill\nJoni\nLora\nRosemary\nSonja\nTanya\nBenita\nCheri\nFelecia\nHazel\nKatie\nReba\nRosetta\nAlfreda\nCrystal\nDebora\nJeanne\nJessie\nLesa\nMichele\nMinnie\nPatty\nSue\nBeatrice\nCecelia\nFrankie\nJosephine\nJune\nMarjorie\nNatalie\nTeri\nAlma\nDeloris\nEsther\nFreda\nLola\nRosalind\nWilma\nAlisa\nDelois\nDinah\nMelba\nSheri\nTerrie\nApril\nDeanna\nDella\nEssie\nFaye\nHattie\nJerri\nLucille\nLynne\nMarion\nRuthie\nBernadette\nBridget\nFannie\nIris\nJeannie\nLana\nLula\nMae\nPaulette\nPauline\nCaroline\nCherry\nDaisy\nEarnestine\nGrace\nJana\nLeah\nMiriam\nRene\nStarla\nBetsy\nBillie\nCarole\nEleanor\nEunice\nJacquline\nJimmie\nJoanna\nLena\nLesia\nLou\nMaggie\nMalinda\nNaomi\nOlivia\nPolly\nRoberta\nSondra\nValarie\nVelma\nDaphne\nIvy\nLorraine\nMollie\nNettie\nRena\nTamara\nTraci\nUnknown\nVerna\nArlene\nAva\nCandy\nCecilia\nChristy\nGeneva\nGertrude\nGwen\nJeannette\nKarla\nLauren\nLeisa\nLenora\nMamie\nMaxine\nMitzi\nNadine\nOphelia\nPatrice\nRonda\nSonia\nValeria\nAllison\nClaudette\nDena\nDianna\nHeidi\nJames\nJoanne\nKimberley\nNelda\nNita\nStacy\nStella\nTamela\nYvette\nAgnes\nDanita\nDarla\nEarline\nErnestine\nFlora\nGayle\nGracie\nHarriet\nHarriett\nInez\nJerrie\nKaron\nKaye\nLaverne\nLibby\nLisha\nMarlene\nNellie\nPat\nTena\nValencia\nVenita\nBettie\nCelia\nChristie\nEileen\nElisa\nGay\nHenrietta\nIrene\nJennie\nJessica\nKelley\nLetha\nLucinda\nMable\nMarcella\nMarla\nMyrtle\nNora\nOla\nPearlie\nRenita\nRobyn\nRosalyn\nShannon\nShelley\nVenessa\nViola\nAlison\nCamilla\nChristina\nClaudia\nCorine\nFaith\nFrancine\nFreida\nHolly\nIrma\nJanis\nJeri\nJoe\nLorrie\nLucretia\nMarianne\nMaureen\nQueen\nRochelle\nSadie\nShari\nShelly\nStacey\nTammi\nAlthea\nAnnetta\nAntionette\nAvis\nBettye\nBridgette\nBrigitte\nClaire\nClarice\nColleen\nDeana\nDebby\nDeirdre\nDixie\nDorthy\nEddie\nErma\nFrancis\nJeanie\nJewel\nJosie\nLadonna\nLila\nMarguerite\nMolly\nNanette\nOllie\nPenelope\nRoslyn\nShelby\nTara\nTonia\nWilla\nAlberta\nAntoinette\nChristi\nCornelia\nDale\nDebrah\nDeidre\nDeloise\nEdwina\nFlorence\nGretchen\nIva\nJanine\nJannie\nJody\nKathie\nKellie\nKenneth\nLizzie\nLorie\nLorri\nMarietta\nOdessa\nQueenie\nSybil\nTamra\nTeena\nTeressa\nTrina\nTwyla\nVickey\nAbby\nAdrienne\nBernadine\nCandace\nCassie\nCeleste\nCelestine\nDelilah\nDina\nElnora\nElsie\nEula\nFloretta\nFran\nFreddie\nGigi\nHilda\nJeanetta\nKathey\nKathi\nKelli\nKerry\nLeann\nLeisha\nLeona\nLesha\nLorna\nNona\nPamelia\nPatrica\nPhoebe\nPhylis\nRetha\nRobbin\nRoxanne\nSaundra\nSelina\nShawn\nTommie\nTracie\nTreasa\nVernita\nViolet\nVonda\nWilliam\nAbbie\nAbigail\nAllyson\nAlyce\nAngeline\nAnitra\nAnnice\nBridgett\nCarlene\nCherie\nChris\nCindi\nDanette\nDelia\nDiann\nDolores\nDona\nDonnie\nDoreen\nDoretha\nDorothea\nEffie\nEtta\nEugenia\nFrieda\nGinny\nGlinda\nGreta\nImogene\nJenifer\nJerry\nJudi\nKerri\nLajuana\nLea\nLela\nLeshia\nLetitia\nLoraine\nLottie\nLynette\nMavis\nMerry\nMissy\nNan\nOra\nPaige\nPattie\nPearl\nReda\nRegena\nRenae\nRenea\nRhoda\nRoxie\nSallie\nSheree\nSophia\nSynthia\nThomas\nVernessa\nVernice\nVikki\nWonda\nZelda\nAddie\nAlecia\nAngel\nArnita\nBlanche\nBobby\nCamelia\nCassaundra\nCheryle\nClarissa\nDavid\nDeedee\nDeidra\nDelisa\nDollie\nEloise\nElouise\nFredia\nGayla\nHeather\nIngrid\nJannette\nJeanine\nJocelyn\nJohanna\nJohn\nJohnetta\nJohnny\nKendra\nKrista\nLanita\nLarry\nLatanya\nLavonda\nLawanda\nLecia\nLeesa\nLeila\nLeola\nLily\nLiz\nLorene\nLouisa\nMadeline\nMelodie\nMelonie\nMichael\nMimi\nMisty\nMonique\nNell\nOctavia\nOpal\nPamala\nPennie\nPhillis\nRegenia\nRemona\nSebrena\nSharion\nSherre\nSherrell\nSherrill\nSherryl\nTerrye\nTherese\nTrena\nVelda\nVenetia\nVerdell\nVoncile\nYolonda\nMary\nLisa\nDonna\nCynthia\nLinda\nBrenda\nTeresa\nPatricia\nSandra\nPamela\nSharon\nDeborah\nSusan\nDebra\nKaren\nAngela\nKathy\nBarbara\nTammy\nWanda\nRhonda\nSherry\nJanice\nElizabeth\nJacqueline\nCarolyn\nCarol\nBeverly\nRebecca\nCindy\nDebbie\nJanet\nCheryl\nShirley\nGloria\nNancy\nSheila\nConnie\nLaura\nTina\nBetty\nMargaret\nKimberly\nMartha\nRegina\nAnita\nRobin\nTerri\nJudy\nCathy\nLori\nDorothy\nJennifer\nMelissa\nVicki\nShelia\nPhyllis\nVickie\nAnnie\nRita\nBelinda\nCharlotte\nKim\nJulie\nTheresa\nGwendolyn\nVanessa\nCatherine\nPaula\nValerie\nMarilyn\nJoyce\nSarah\nGlenda\nDenise\nDiane\nMelanie\nVirginia\nDoris\nJackie\nStephanie\nAnnette\nMichelle\nPeggy\nKatherine\nCassandra\nCarla\nSonya\nVeronica\nFelicia\nBecky\nDarlene\nKelly\nMelinda\nRose\nLoretta\nJo\nSuzanne\nJulia\nSylvia\nAmy\nPam\nWendy\nEvelyn\nAlice\nBonnie\nAnn\nFrances\nChristine\nGina\nAnna\nYolanda\nBeth\nMyra\nLeslie\nTracy\nYvonne\nLaurie\nLynn\nVicky\nHelen\nJuanita\nSherri\nRenee\nDana\nJane\nJudith\nLeigh\nKathryn\nRuby\nWillie\nTerry\nVivian\nJoy\nMarie\nPenny\nCarrie\nRosie\nAndrea\nGail\nMarsha\nPatsy\nTammie\nSonja\nElaine\nAudrey\nDawn\nSara\nTonya\nCharlene\nDiana\nJan\nMonica\nAngelia\nGinger\nNorma\nFelecia\nJeanette\nEmma\nGeraldine\nJamie\nMarcia\nSusie\nAngie\nJoan\nJoann\nToni\nAnne\nLee\nRamona\nBonita\nEllen\nLydia\nLynda\nVera\nAmanda\nJean\nRachel\nRuth\nConstance\nKatrina\nMelody\nNina\nAlesia\nJacquelyn\nPatti\nShari\nJessie\nMichele\nDelores\nJosephine\nKathleen\nLillie\nPriscilla\nSandy\nBobbie\nDianne\nMattie\nReba\nRobbie\nTracey\nWilma\nAlicia\nDeanna\nGeorgia\nJohnnie\nVictoria\nEthel\nNatalie\nLesia\nLois\nRosa\nSherrie\nSheryl\nTerrie\nBernice\nEdna\nLillian\nLora\nMildred\nMinnie\nTeri\nBertha\nElla\nMargie\nSharron\nBenita\nJill\nClara\nJeannie\nLucy\nMaria\nSally\nTanya\nEdith\nJanie\nSheri\nSue\nTamara\nTami\nBeatrice\nEva\nGeneva\nIda\nJoanne\nPatty\nPaulette\nBessie\nFaye\nJenny\nLesa\nLouise\nMaxine\nMona\nRonda\nYvette\nDaphne\nEmily\nFreda\nKay\nLorraine\nMitzi\nAlisa\nAllison\nCarole\nGladys\nMarion\nAlfreda\nDaisy\nHarriet\nJana\nLana\nLeah\nArlene\nCecelia\nCheri\nChristina\nCrystal\nDora\nGwen\nIris\nLynne\nAlison\nAmelia\nLena\nLola\nVelma\nAlma\nCarmen\nCaroline\nCeleste\nDella\nEarnestine\nErnestine\nJoni\nKarla\nMae\nNellie\nRosemary\nStella\nThelma\nTraci\nVickey\nBillie\nDeloris\nElisa\nShelby\nBetsy\nCandace\nCecilia\nCora\nFannie\nFrankie\nHazel\nJerri\nJoanna\nKelley\nMarjorie\nPauline\nSonia\nStacey\nTara\nValarie\nValeria\nApril\nDianna\nEunice\nFlora\nJacquline\nJeanne\nJennie\nJimmie\nKaron\nLadonna\nLetitia\nNanette\nPat\nRosalind\nBridget\nCelia\nCherry\nClaudia\nDebora\nDelois\nDena\nFrancine\nGretchen\nHenrietta\nHolly\nJune\nKatie\nLeisa\nLenora\nRena\nRosetta\nRuthie\nShannon\nShawn\nAngel\nAshley\nChristy\nColleen\nLou\nLucinda\nOla\nRoxanne\nSabrina\nSelena\nShelly\nSondra\nAlberta\nBridgett\nChris\nDelphine\nEileen\nEssie\nFaith\nFlorence\nGayle\nIrene\nJohanna\nKellie\nLisha\nLorie\nLynette\nMaggie\nMarcella\nMiriam\nNaomi\nOra\nRoberta\nSuzette\nTena\nAda\nAntoinette\nBernadette\nDeidre\nDeloise\nEleanor\nIrma\nJeanie\nLula\nMarian\nMarla\nMiranda\nNadine\nPolly\nVenita\nWinifred\nAgnes\nBettye\nBobby\nBridgette\nDeirdre\nGayla\nHattie\nJames\nKristi\nLawanda\nLizzie\nLoria\nLorrie\nLucille\nLucretia\nMamie\nMarlene\nMelba\nMissy\nNora\nOlivia\nPenelope\nTamela\nViola\nAva\nBettie\nBrigitte\nCherie\nChristie\nDale\nDeana\nDee\nDelisa\nDenita\nEsther\nFran\nGenia\nGlinda\nJessica\nKerry\nKimberley\nKristy\nLauren\nLeshia\nLessie\nNelda\nPattie\nRosalyn\nSabra\nSallie\nSophia\nUnknown\nValencia\nVelvet\nViolet\nWilliam\nAretha\nChandra\nCherrie\nCornelia\nDinah\nDorothea\nDorthy\nDottie\nErma\nFreida\nGay\nGenice\nGrace\nGreta\nJanis\nJeannette\nJerry\nJewel\nJoe\nKathie\nKaye\nKelli\nLeisha\nLibby\nLorene\nMable\nMarianne\nMarisa\nOdessa\nPatrice\nQueen\nRachael\nRenita\nRobyn\nStarla\nTawana\nTonia\nTrina\nAlthea\nBrinda\nCandy\nCharlie\nChristi\nClarissa\nDanita\nDarla\nDeidra\nDiann\nDolores\nEarline\nEdwina\nElisabeth\nFredia\nGena\nGerri\nGertrude\nHeidi\nIngrid\nJacquelin\nJeanetta\nJuliette\nLela\nLeticia\nLorri\nMalinda\nMyrtle\nNettie\nNikki\nNita\nPamala\nRene\nSherrill\nStacy\nTeressa\nTommie\nTonja\nTracie\nTrenia\nTresa\nVernita\nWinnie\nAbby\nAdrienne\nBernadine\nBethany\nBeverley\nBrunetta\nCallie\nCharity\nCharles\nChiquita\nCindi\nClaudette\nCordelia\nDavid\nDina\nEliza\nElnora\nEloise\nErin\nEugenia\nEula\nFrancis\nGracie\nGwenda\nHarriett\nIvy\nJeri\nJohnna\nKathrine\nLaverne\nLea\nLeesa\nLetha\nLiz\nLorine\nLuanne\nMarnita\nMechelle\nMelony\nMerry\nMillie\nMolly\nNannette\nPaige\nPamelia\nPearlie\nPortia\nRenae\nRobert\nRochelle\nSadie\nSelina\nSheree\nSheron\nTamera\nTeena\nVernessa\nWilla\nYolonda\nAbbie\nAlecia\nAlethea\nAllyson\nAngelyn\nAntionette\nBettina\nBobbi\nCamilla\nCelestine\nCharlean\nCherri\nChrista\nClaudine\nCorine\nDanielle\nDanna\nDeedee\nDeena\nDelaine\nDelia\nDixie\nDorinda\nEddie\nElouise\nElsie\nEstelle\nEtta\nEvangeline\nFonda\nFrieda\nGale\nGeorgette\nGregory\nJami\nJanette\nJannie\nJeraldine\nJerolyn\nJerrie\nJewell\nJimmy\nJohnetta\nKellye\nLanita\nLatonia\nLaurel\nLavern\nLecia\nLeila\nLeona\nLissa\nLorna\nMadelyn\nMalissa\nMargarett\nMarguerite\nMelonie\nMerri\nMickie\nMindy\nMisty\nMollie\nMonique\nNedra\nOllie\nOphelia\nPatrica\nPhillis\nPhyliss\nPrincess\nRichard\nRonna\nRoxie\nSaundra\nScarlett\nShelley\nSherita\nShiela\nSuellen\nSusanne\nSybil\nTamra\nTenna\nTeresia\nTheressa\nTrudy\nUrsula\nVenessa\nVernice\nYvetta\nZelda\nMary\nLisa\nCynthia\nDonna\nLinda\nTeresa\nBrenda\nSandra\nSharon\nPamela\nKaren\nSusan\nDebra\nPatricia\nAngela\nDeborah\nBarbara\nTammy\nKathy\nTina\nWanda\nJacqueline\nRhonda\nSherry\nElizabeth\nKimberly\nJanice\nSheila\nCarol\nJanet\nCarolyn\nMelissa\nShirley\nBeverly\nRobin\nCheryl\nConnie\nLaura\nJennifer\nAnita\nRebecca\nDebbie\nCindy\nCathy\nBetty\nRegina\nNancy\nTerri\nShelia\nGloria\nMargaret\nJudy\nVickie\nMelanie\nLori\nPhyllis\nKim\nTracy\nPaula\nTheresa\nValerie\nGwendolyn\nMarilyn\nDorothy\nMartha\nSarah\nJulie\nKelly\nBelinda\nDenise\nRita\nMelinda\nVicki\nCharlotte\nCarla\nMichelle\nCatherine\nJoyce\nSherri\nDiane\nVanessa\nGlenda\nAnnie\nAnnette\nCassandra\nStephanie\nVirginia\nDoris\nAmy\nJackie\nAlice\nJulia\nSonya\nPeggy\nFelicia\nPenny\nLeslie\nVeronica\nDarlene\nDana\nGina\nRose\nSuzanne\nMonica\nWendy\nSylvia\nLaurie\nYolanda\nAnna\nKatherine\nFrances\nBonnie\nEvelyn\nHelen\nJuanita\nLoretta\nLynn\nChristine\nAnn\nDaphne\nMyra\nPam\nJo\nWillie\nBeth\nVicky\nVivian\nRenee\nDiana\nLeigh\nRosie\nGail\nAngelia\nAndrea\nFelecia\nTammie\nMarsha\nSara\nBecky\nNorma\nTracey\nMarie\nRuth\nAlicia\nJan\nTerry\nJoy\nRuby\nBobbie\nAudrey\nGinger\nSandy\nJill\nLee\nTonya\nJane\nJudith\nPriscilla\nRamona\nThelma\nDawn\nKathryn\nMildred\nAmanda\nEdna\nRachel\nToni\nYvonne\nPatsy\nPatti\nSherrie\nEllen\nEthel\nJamie\nKathleen\nSonja\nSusie\nElaine\nJoann\nAnne\nConstance\nSheryl\nBonita\nCharlene\nBenita\nCarrie\nEmma\nGeraldine\nJeanette\nMargie\nMichele\nRobbie\nRosa\nBessie\nCarmen\nEva\nElla\nMattie\nTanya\nBernice\nBertha\nDianne\nJoan\nLillie\nMarcia\nMaria\nAlfreda\nBridget\nGeorgia\nKatrina\nDelores\nEdith\nJacquelyn\nJenny\nLois\nStacey\nTamara\nVictoria\nCrystal\nDeanna\nEmily\nJohnnie\nLucy\nMelody\nMitzi\nNina\nSally\nAllison\nNatalie\nRosemary\nShannon\nAngie\nSheri\nCaroline\nLillian\nMarian\nTami\nVera\nAlison\nJosephine\nJune\nKelley\nLesa\nLouise\nMaxine\nMinnie\nAlma\nCora\nGladys\nIda\nMona\nValarie\nWilma\nAlesia\nJeanne\nJessie\nKarla\nKay\nPatty\nReba\nShari\nSharron\nYvette\nBillie\nClara\nDianna\nEarnestine\nLora\nLynda\nPaige\nFrankie\nHolly\nIrene\nJana\nJerri\nLydia\nRosalind\nSophia\nTerrie\nTraci\nAlisa\nChristy\nGeneva\nJean\nJoanne\nNadine\nRobbin\nRoberta\nSondra\nSue\nCecilia\nLana\nLaverne\nLesia\nLorie\nMarion\nMarla\nShelly\nTracie\nAmelia\nApril\nFreda\nPaulette\nRonda\nStacy\nStella\nTara\nTeri\nVelma\nBettie\nDaisy\nDebora\nFlora\nJeannie\nJessica\nJoanna\nLula\nRena\nRosetta\nSabrina\nArlene\nDeirdre\nGwen\nHattie\nKatie\nLorraine\nLynne\nMamie\nSallie\nShelley\nValeria\nBridgette\nDarla\nDeana\nDina\nFannie\nFaye\nFlorence\nKelli\nKellie\nMalinda\nPauline\nVickey\nAdrienne\nAlberta\nCecelia\nChristina\nDena\nEleanor\nElisa\nJacquline\nJanie\nLeah\nLucinda\nMae\nMarcella\nNelda\nPatrice\nVerna\nAllyson\nCelia\nCheri\nDella\nDelois\nDeloris\nDora\nEdwina\nIris\nLenora\nMiriam\nNora\nOlivia\nRobyn\nTamela\nTommie\nAvis\nBeatrice\nBernadette\nCandace\nClarissa\nClaudia\nGena\nGreta\nGretchen\nHarriet\nHazel\nHenrietta\nJennie\nKaye\nLeisa\nLizzie\nLorrie\nNicole\nRoxanne\nTonja\nBettye\nBridgett\nCandy\nCherry\nDeidre\nEloise\nEsther\nKaron\nLucretia\nMaggie\nQueen\nRenita\nSonia\nTena\nAgnes\nDale\nIvy\nJacquelin\nJeannette\nJeri\nJewel\nJimmie\nKimberley\nMarjorie\nMerry\nMyrtle\nNanette\nNellie\nPortia\nRoslyn\nAntionette\nAntoinette\nCarole\nCeleste\nChristi\nDedra\nDee\nErica\nErnestine\nFreida\nGayle\nGrace\nHeidi\nJames\nJeanie\nJerrie\nJerry\nJoe\nKerry\nKitty\nLadonna\nLena\nLola\nMelba\nMelonie\nNettie\nOra\nRenae\nRobert\nRosalyn\nScarlett\nSelina\nSybil\nTammi\nValencia\nWinifred\nAda\nArleen\nAshley\nBetsy\nChandra\nCherie\nColleen\nDanna\nDelisa\nDiann\nDorothea\nEarline\nEssie\nEula\nJannie\nJoanie\nLorri\nLuanne\nLucille\nLynette\nMarianne\nMarietta\nMelisa\nMolly\nPamelia\nPatrica\nPenelope\nPinkie\nPolly\nSaundra\nShelby\nTricia\nTrina\nViolet\nAlecia\nAmber\nAretha\nBobby\nCallie\nChris\nClaire\nClaudette\nDeena\nDeidra\nDona\nDoretha\nEster\nEugenia\nEunice\nFrancis\nGay\nGayla\nGracie\nHannah\nHope\nIngrid\nJoycelyn\nJuliet\nKerri\nKristi\nLauren\nLawanda\nLetitia\nLou\nMable\nMadelyn\nMandy\nMarguerite\nMavis\nNaomi\nNedra\nOllie\nRene\nRuthie\nSelena\nShawn\nTeressa\nVenita\nVonda\nWilla\nAddie\nAlethea\nAngeline\nCamilla\nCara\nCherrie\nChristie\nCornelia\nCourtney\nDebby\nDenita\nDolores\nDorthy\nEartha\nElsie\nEstella\nEtta\nEve\nFrancine\nGertrude\nHarriett\nHeather\nJanis\nJayne\nJohn\nJoni\nJuliette\nKaran\nKristy\nLaquita\nLavonda\nLela\nLeola\nLeshia\nLetha\nLorna\nMadeline\nMargo\nMarlene\nMarva\nMaureen\nMay\nMellissa\nMillie\nMindy\nMiranda\nOla\nOpal\nOphelia\nPearlie\nRegena\nRenea\nRochelle\nSadie\nSheron\nSherrill\nStarla\nTamera\nTana\nTresa\nTreva\nUnknown\nVanda\nAlisha\nAugusta\nBeulah\nCasandra\nCathleen\nCelestine\nCorine\nCurtis\nCyndi\nDanita\nDelia\nDinah\nEddie\nErin\nFaith\nFay\nFran\nFreddie\nGaynell\nGigi\nGinny\nGretta\nHilda\nJanette\nJanna\nJody\nKathi\nKellye\nKendra\nLajuana\nLanita\nLatanya\nLeesa\nLeila\nLelia\nLibby\nLila\nLiz\nLottie\nLuann\nMeta\nMichael\nMikki\nMissy\nMuriel\nNatasha\nNita\nNona\nOctavia\nPennie\nRebekah\nRhoda\nSheree\nSherrell\nSherron\nStephaine\nSusanne\nSuzette\nTawana\nTeresia\nTheodora\nTonda\nYolonda\nZina\nLisa\nMary\nCynthia\nDonna\nTammy\nTeresa\nSandra\nPamela\nAngela\nSharon\nLinda\nKaren\nSusan\nBrenda\nPatricia\nDeborah\nBarbara\nDebra\nKimberly\nJacqueline\nWanda\nRhonda\nSherry\nKathy\nElizabeth\nJanice\nMelissa\nTina\nLori\nCarolyn\nLaura\nSheila\nJanet\nRebecca\nAnita\nCheryl\nJennifer\nBeverly\nRobin\nPaula\nConnie\nCarol\nRegina\nCathy\nNancy\nCindy\nShirley\nTerri\nGloria\nShelia\nMartha\nMargaret\nBetty\nDebbie\nTracy\nPhyllis\nVickie\nSarah\nJudy\nKim\nMelanie\nDorothy\nStephanie\nDana\nCharlotte\nDenise\nKelly\nBelinda\nMarilyn\nRita\nDarlene\nCarla\nJulie\nAnnette\nAnnie\nGwendolyn\nJoyce\nTheresa\nValerie\nSonya\nGlenda\nMichelle\nCatherine\nMelinda\nCassandra\nAmy\nVicki\nMonica\nDiane\nFelicia\nPenny\nVeronica\nDoris\nSherri\nSuzanne\nTammie\nVanessa\nPeggy\nVirginia\nJulia\nChristine\nYolanda\nAlice\nKatherine\nMarsha\nLoretta\nVivian\nLeslie\nLaurie\nHelen\nJackie\nSylvia\nFrances\nGina\nLeigh\nAndrea\nRose\nWendy\nYvonne\nRuby\nJo\nVicky\nBecky\nTonya\nAngelia\nMyra\nSandy\nAmanda\nGinger\nAnn\nPam\nTracey\nDawn\nDiana\nEvelyn\nJeanette\nRachel\nBonnie\nJane\nDaphne\nStacy\nJuanita\nRenee\nTerry\nRamona\nAngie\nBeth\nDeanna\nTamara\nMarie\nJamie\nKathleen\nKatrina\nRuth\nCharlene\nJoy\nToni\nLee\nMelody\nPatsy\nSherrie\nConstance\nElaine\nJean\nJoan\nLynn\nNorma\nWillie\nEllen\nKathryn\nRosie\nStacey\nAnna\nFelecia\nCrystal\nMildred\nNatalie\nSonja\nJudith\nRobbie\nShannon\nTraci\nEmily\nEmma\nKelley\nPriscilla\nSheryl\nTanya\nBonita\nSara\nAlicia\nCarrie\nElla\nGail\nJill\nAnne\nJoann\nKay\nMichele\nBobbie\nBridget\nKarla\nMaria\nRosa\nCarmen\nDianne\nJohnnie\nPatty\nAlesia\nChristy\nGladys\nJacquelyn\nJan\nMarcia\nVera\nEdna\nSusie\nTami\nAllison\nAudrey\nEleanor\nJenny\nLynda\nMona\nPatti\nSheri\nBernice\nGeorgia\nHolly\nJana\nLolita\nMattie\nSabrina\nVictoria\nYvette\nApril\nClara\nJanie\nRosemary\nTara\nCecilia\nChristina\nCora\nLois\nLora\nAlison\nAmelia\nBessie\nEdith\nEthel\nEva\nGeraldine\nMarjorie\nNora\nSally\nTeri\nThelma\nDelores\nKatie\nLillie\nNina\nPauline\nTerrie\nLenora\nRobyn\nSharron\nTracie\nAlfreda\nAlisa\nCandace\nJeannie\nKellie\nLillian\nLydia\nSondra\nSophia\nDarla\nFannie\nGeneva\nHattie\nHazel\nJacquline\nLucy\nMarion\nMinnie\nReba\nSue\nChristie\nDaisy\nDena\nGena\nJessica\nJoanna\nKelli\nLeah\nLesia\nLorraine\nLouise\nMargie\nShari\nValarie\nBertha\nJeanne\nJerri\nJessie\nLorie\nMaxine\nMitzi\nPolly\nShelly\nSonia\nCaroline\nDianna\nIris\nJoanne\nMolly\nAdrienne\nBeatrice\nBenita\nBillie\nFlora\nFreda\nHarriet\nIda\nJosephine\nKristi\nLena\nLesa\nMarla\nRenita\nTamela\nValeria\nWilma\nAlecia\nBernadette\nElisa\nGrace\nJames\nJannie\nNaomi\nRosalind\nRosetta\nRoxanne\nTammi\nVickey\nBetsy\nBridgette\nDelois\nDeloris\nErica\nFaye\nFrancine\nJanis\nJennie\nMaggie\nMalinda\nMarian\nMelisa\nPaige\nRonda\nRuthie\nSallie\nSelina\nShawn\nTiwanna\nVelma\nAlma\nArlene\nCheri\nChristi\nColleen\nEarnestine\nEugenia\nGwen\nJohnna\nKaron\nKimberley\nLucille\nLucinda\nMae\nMamie\nMichael\nRena\nShelley\nAntoinette\nBethany\nCarole\nClaudia\nDebora\nElisabeth\nEloise\nGayle\nInez\nIrene\nJanette\nJimmie\nLeanne\nLibby\nLynne\nMarcella\nMelba\nNicole\nPaulette\nRenae\nRoberta\nTommie\nAda\nCasandra\nDora\nEtta\nEunice\nGerri\nGreta\nLadonna\nLana\nLetitia\nLola\nMarianne\nOlivia\nRene\nRhoda\nStella\nTeressa\nTonja\nZelda\nAnnetta\nAva\nBettye\nCelia\nDedra\nDeidre\nDeirdre\nDella\nEddie\nEssie\nFrankie\nHenrietta\nHope\nJeanie\nJohn\nJoni\nJonna\nKaye\nKerri\nKristy\nLawanda\nLeona\nLizzie\nLorene\nLou\nLucretia\nMaureen\nMavis\nMelonie\nMerry\nMiriam\nNellie\nPatrice\nPearlie\nPenelope\nRobbin\nRomona\nRosalyn\nRoslyn\nSadie\nShelby\nSuzette\nViola\nWinifred\nZina\nAddie\nAllyson\nBettie\nBlanche\nCandy\nCara\nCecelia\nCeleste\nChris\nCornelia\nDenice\nDiann\nDoretha\nEdwina\nErma\nEstella\nFlorence\nFreida\nGretchen\nIngrid\nJewel\nLauren\nLaverne\nLavonda\nLorri\nLula\nMatilda\nPortia\nQueen\nRenea\nRenetta\nSaundra\nSybil\nValencia\nVernita\nAlberta\nAntionette\nAshley\nBridgett\nDale\nDelinda\nDelisa\nDesiree\nDolores\nDorcas\nEarline\nErnestine\nEvon\nFonda\nGayla\nGlynis\nHeather\nJeannette\nJerry\nKerry\nLaurel\nLea\nLeisa\nLeola\nLetha\nLorrie\nMadeline\nMarlene\nMillie\nMisty\nMuriel\nMyrtle\nNena\nNita\nOla\nPamala\nRochelle\nTanja\nVenessa\nViolet\nAletha\nAlfredia\nBernita\nBobby\nCarlene\nChandra\nCherry\nChiquita\nChrista\nDara\nDarlean\nDeidra\nDixie\nDolly\nElise\nEula\nFaith\nGenice\nGlinda\nGwenevere\nHarriett\nIrma\nIvy\nJacquelin\nJena\nJuliet\nJune\nKristie\nLauri\nLeann\nLeila\nLeisha\nLorna\nLynette\nMable\nMadelyn\nMarquetta\nMerri\nMimi\nMiranda\nMonique\nNadine\nNanette\nOctavia\nPamelia\nPatrica\nPattie\nRae\nRegenia\nRobert\nScarlett\nSelena\nShawna\nStarla\nSuzan\nTena\nTherese\nTonia\nTwanda\nValorie\nVonda\nWilliam\nAlethea\nAlisia\nAllie\nAngel\nAretha\nBette\nCallie\nCamille\nCathey\nCheryle\nCourtney\nDamita\nDaniel\nDanna\nDaphine\nDeana\nDebby\nDeloise\nDina\nDinah\nDona\nDorothea\nEileen\nElsie\nEsther\nGidget\nGracie\nJanett\nJanna\nJayne\nJeanetta\nJerrie\nJody\nJuliette\nKitty\nKristin\nKristina\nLaquita\nLeanna\nLeatha\nLela\nLeonard\nLesley\nLila\nLoria\nMaranda\nMelony\nMelva\nMindy\nNettie\nPearline\nPennie\nPhaedra\nPhillis\nRetha\nRoxanna\nSamantha\nScarlet\nSherrell\nSuzy\nTamera\nTawana\nTawanda\nTawanna\nTerra\nTrisha\nTrudy\nUnknown\nUrsula\nVeda\nVelda\nVida\nZena\nLisa\nMary\nCynthia\nAngela\nDonna\nPamela\nTammy\nSharon\nTeresa\nKaren\nPatricia\nSusan\nSandra\nKimberly\nLinda\nBrenda\nJacqueline\nDeborah\nElizabeth\nBarbara\nDebra\nMelissa\nSherry\nRhonda\nTina\nKathy\nWanda\nSheila\nJennifer\nRebecca\nCarolyn\nRegina\nRobin\nLaura\nPaula\nJanice\nJanet\nConnie\nCarol\nCindy\nShirley\nTracy\nCheryl\nValerie\nAnita\nLori\nTerri\nStephanie\nBeverly\nNancy\nShelia\nKim\nBetty\nCathy\nDana\nGloria\nMargaret\nDenise\nMelanie\nVickie\nJudy\nDebbie\nJulie\nCarla\nAmy\nKelly\nMichelle\nGwendolyn\nBelinda\nDorothy\nMartha\nTheresa\nGlenda\nSarah\nRita\nSonya\nAnnette\nCassandra\nCharlotte\nMelinda\nCatherine\nPhyllis\nAnnie\nDarlene\nJoyce\nVanessa\nWendy\nLeslie\nMonica\nVeronica\nMarilyn\nSherri\nDoris\nVicki\nVirginia\nLeigh\nYolanda\nDiane\nPenny\nAngelia\nJulia\nFelicia\nTracey\nAndrea\nJackie\nAlice\nBonnie\nKathryn\nGina\nSuzanne\nAllison\nPeggy\nLaurie\nVivian\nDawn\nKatherine\nFrances\nLoretta\nSylvia\nHelen\nChristine\nJo\nTammie\nAnna\nEvelyn\nAnn\nJuanita\nRose\nPatty\nTonya\nLynn\nTraci\nAngie\nRuby\nVicky\nAlicia\nDiana\nJill\nPam\nAmanda\nMaria\nConstance\nSheryl\nSonja\nDaphne\nDeanna\nMichele\nApril\nAudrey\nGinger\nJoy\nMyra\nYvonne\nBeth\nMarie\nNorma\nToni\nJane\nMarsha\nBecky\nJudith\nPriscilla\nRenee\nTerry\nBobbie\nBonita\nCharlene\nKathleen\nRachel\nCarrie\nSandy\nSara\nFelecia\nJeanette\nEmily\nJacquelyn\nKelli\nLee\nMelody\nRobbie\nJamie\nKatrina\nVictoria\nJoan\nPatti\nShannon\nEmma\nKristi\nRosie\nStacey\nAnne\nEdna\nPatsy\nSherrie\nStacy\nTanya\nCrystal\nEthel\nRamona\nChristy\nElaine\nGeorgia\nLillie\nNina\nEllen\nJean\nJoann\nBenita\nElla\nHolly\nLeah\nLynda\nSusie\nVera\nWillie\nBertha\nCarmen\nEva\nLora\nMargie\nRosa\nSabrina\nVonda\nBillie\nEdith\nJenny\nSue\nTara\nBridget\nJeanne\nJessie\nRonda\nRosemary\nRuth\nCaroline\nClara\nJacquline\nMildred\nTamara\nBernice\nDianne\nKarla\nKelley\nMarjorie\nMattie\nAlesia\nDarla\nGeraldine\nMarcia\nNatalie\nSally\nSheri\nTracie\nJan\nJanie\nMinnie\nValeria\nGail\nGladys\nJana\nJessica\nShelly\nValarie\nAlison\nBessie\nCarole\nKimberley\nKristy\nSamantha\nYvette\nChristina\nDianna\nJohnnie\nLana\nMaxine\nSharron\nWilma\nDeneen\nDora\nJennie\nLesa\nLillian\nLois\nLula\nLydia\nMarion\nRosalind\nSonia\nAlisa\nCandace\nCora\nDelois\nDelores\nGrace\nHattie\nIda\nJoanna\nJoanne\nJune\nLesia\nMarian\nTami\nTrina\nFaye\nGayle\nHope\nIrene\nMelisa\nMona\nRobyn\nShelley\nSondra\nSophia\nTammi\nTerrie\nValencia\nCecilia\nDeloris\nDena\nEleanor\nKay\nLynne\nMitzi\nOlivia\nPaige\nRosetta\nAretha\nAshley\nCheri\nDella\nHeather\nJerri\nJimmie\nJoni\nKecia\nKellie\nLetitia\nLucy\nMarla\nNora\nRena\nAmelia\nAntoinette\nJosephine\nLawanda\nLouise\nLucretia\nNaomi\nRoberta\nAlfreda\nAllyson\nChris\nChristi\nEarnestine\nFrankie\nGena\nIngrid\nJeannie\nJodi\nLola\nLucille\nMae\nMarcella\nMolly\nNanette\nPearlie\nReba\nSelina\nTonja\nBettie\nBridgett\nBridgette\nCecelia\nDebora\nDeirdre\nDixie\nDjuana\nFannie\nGeneva\nIris\nJames\nKatie\nKris\nLadonna\nLena\nLorraine\nMalinda\nMiriam\nNellie\nShari\nTamela\nTeressa\nTeri\nAlma\nBetsy\nChandra\nDesiree\nEdwina\nEugenia\nFaith\nFlora\nHenrietta\nJohnna\nLauren\nLetha\nLolita\nNita\nOra\nQueen\nRosalyn\nShawn\nTeena\nThelma\nVelma\nZina\nAlecia\nCamilla\nCelia\nClaudia\nDeana\nDeidra\nElisa\nErnestine\nFlorence\nFrancine\nHarriet\nJanette\nKristin\nLeisa\nLorie\nLou\nMarlene\nMissy\nNadine\nNelda\nPatrica\nPatrice\nPaulette\nRene\nRoxanne\nRuthie\nSelena\nVickey\nAda\nAnnetta\nBernadette\nChristie\nClarissa\nColleen\nDaisy\nDelisa\nEloise\nEsther\nEunice\nGayla\nHazel\nHeidi\nJanis\nJayne\nJenifer\nJewel\nLea\nLenora\nLeona\nLizzie\nLoria\nMamie\nMarguerite\nMia\nMichell\nMonique\nMyrtle\nPamala\nRegenia\nRenae\nStarla\nStella\nTawana\nTena\nTonda\nValorie\nAdrienne\nAngel\nAntionette\nArlene\nBarbie\nBeatrice\nCara\nCathleen\nDanette\nDeena\nEssie\nEtta\nFonda\nInger\nJanna\nJeanetta\nJohn\nKerry\nLaverne\nLeanne\nLucinda\nMaggie\nMandy\nMisty\nPenelope\nPennie\nPortia\nRoslyn\nSadie\nScarlett\nSharlene\nShelby\nSuzette\nTawanna\nAbigail\nBethany\nBrigitte\nCeleste\nCherry\nDale\nDedra\nDeidre\nDenice\nDenita\nDjuna\nDolores\nEarline\nEliza\nFrancis\nFreda\nHarriett\nIrma\nJannie\nKellye\nKerri\nKimberlee\nKristie\nLorri\nMarianne\nMelba\nMelonie\nMindy\nNannette\nPauline\nRachael\nRobbin\nSusanne\nSuzy\nTangela\nTonia\nTrudy\nVenessa\nViola\nWhitney\nAgnes\nAletha\nAlisha\nAlthea\nAngelina\nAngeline\nBettye\nBobbi\nCandy\nCasandra\nCharles\nChiquita\nClaire\nDanna\nDeann\nDee\nDemetra\nDemetria\nDiann\nDina\nDinah\nDolly\nDona\nElise\nErma\nEvangeline\nFelisha\nFreida\nGay\nGerri\nGlynis\nJacquelin\nJeanie\nJeri\nJuliette\nKarin\nKaryn\nLaquita\nLauri\nLawana\nLawanna\nLeatha\nLela\nLibby\nLorrie\nLuann\nMarcy\nMarolyn\nMatilda\nMitzie\nMuriel\nNettie\nNicole\nPamelia\nPolly\nRegena\nRochelle\nSallie\nSaundra\nSheena\nSheree\nSidney\nTiwanna\nTreva\nTricia\nTrisha\nUnknown\nAbby\nAddie\nAlana\nAndra\nAngelyn\nAnglia\nArleen\nAva\nAvis\nBernita\nBeryl\nCaron\nClaudette\nDarline\nDeanne\nDeedra\nDelphine\nDiedra\nDiedre\nDoretha\nDorothea\nDrenda\nElisabeth\nErica\nFredia\nGigi\nGregory\nGretchen\nHayley\nHilda\nJacklyn\nJeana\nJeanna\nJena\nJerrie\nJerry\nJody\nJoe\nJohna\nJudi\nKaran\nKattie\nKenneth\nKristina\nLasonya\nLavonda\nLelia\nLorene\nLottie\nMari\nMerri\nNatasha\nOla\nOphelia\nPandora\nPat\nPrincess\nRenea\nRenita\nSarita\nShana\nShawna\nSundra\nTerresa\nTherese\nThomas\nTwanda\nVeda\nViolet\nZenovia\nLisa\nMary\nAngela\nCynthia\nKimberly\nDonna\nTammy\nKaren\nPamela\nSharon\nTeresa\nPatricia\nLinda\nSandra\nSusan\nBrenda\nRhonda\nDeborah\nTina\nMelissa\nBarbara\nJacqueline\nTracy\nJennifer\nRebecca\nSherry\nElizabeth\nWanda\nDebra\nLaura\nKathy\nStephanie\nCarolyn\nSheila\nCarol\nRobin\nRegina\nJanet\nCheryl\nJanice\nConnie\nPaula\nValerie\nWendy\nAmy\nKim\nAnita\nBetty\nKelly\nNancy\nShirley\nBeverly\nCindy\nShelia\nCarla\nLori\nMichelle\nSonya\nMelinda\nMargaret\nTheresa\nFelicia\nVickie\nJulie\nDana\nDebbie\nPhyllis\nGloria\nMartha\nCathy\nRita\nTerri\nCharlotte\nMelanie\nBelinda\nCassandra\nDorothy\nVeronica\nJoyce\nJudy\nMonica\nAnnie\nDenise\nGlenda\nAllison\nSamantha\nCatherine\nYolanda\nAngelia\nGwendolyn\nChristine\nGina\nTonya\nSarah\nTracey\nMarilyn\nLeslie\nDarlene\nVanessa\nAndrea\nAnnette\nAmanda\nHelen\nKatherine\nPenny\nSherri\nDoris\nJulia\nPeggy\nAlice\nAlicia\nSuzanne\nVicki\nVirginia\nDiane\nFrances\nLeigh\nAngie\nShannon\nSonja\nKatrina\nEvelyn\nTraci\nJo\nLoretta\nDawn\nJackie\nJamie\nStacey\nVivian\nNorma\nBeth\nLaurie\nSylvia\nBobbie\nDeanna\nGinger\nRuby\nConstance\nVictoria\nAnna\nTammie\nBonnie\nCharlene\nDiana\nRenee\nRose\nAnn\nBecky\nKathryn\nMelody\nJoy\nMarsha\nAnne\nApril\nJill\nMaria\nStacy\nAudrey\nJacquelyn\nSara\nVicky\nJuanita\nMichele\nPatty\nRosie\nYvonne\nCarrie\nLee\nEmily\nFelecia\nHolly\nJane\nKathleen\nElaine\nJeanette\nJoan\nBridget\nJudith\nMyra\nPatsy\nRamona\nRonda\nBernice\nDaphne\nKarla\nLeah\nLynda\nLynn\nTanya\nToni\nKimberley\nPam\nSandy\nYvette\nEllen\nLillie\nWillie\nMia\nNatalie\nNina\nPatti\nPriscilla\nSheryl\nTerry\nAlisa\nBonita\nCarmen\nChristy\nKristi\nMattie\nRuth\nValeria\nCrystal\nRachel\nSherrie\nTamara\nTracie\nAlesia\nElla\nEmma\nJana\nJenny\nJessica\nBertha\nDianne\nJessie\nJoann\nMona\nTami\nCecilia\nChristina\nEdna\nJohnnie\nRobbie\nTara\nThelma\nAlison\nEthel\nJan\nJean\nKelli\nMildred\nMinnie\nReba\nRosemary\nCaroline\nGail\nLois\nLouise\nMarie\nMelisa\nSabrina\nSharron\nEva\nIda\nKelley\nKristy\nLillian\nLora\nLucy\nTerrie\nValencia\nDarla\nOlivia\nRosa\nCandace\nGayle\nGeraldine\nLesa\nLesia\nMitzi\nRosalind\nSheri\nSondra\nSonia\nVonda\nBessie\nBillie\nClara\nGeneva\nJosephine\nKellie\nLadonna\nMarcia\nMargie\nPaige\nShelly\nBenita\nBernadette\nBridgett\nGladys\nJanie\nJoanna\nVelma\nDelois\nDelores\nDianna\nEleanor\nLea\nMarjorie\nMolly\nSusie\nBetsy\nFrankie\nGayla\nGeorgia\nJennie\nLana\nLorie\nLorraine\nLydia\nLynne\nMamie\nAretha\nArlene\nAshley\nChristie\nClarissa\nEunice\nJeanne\nKay\nKristin\nLena\nLucille\nMaxine\nMiriam\nNora\nPaulette\nRobyn\nSally\nSue\nTonja\nVera\nAllyson\nCandy\nChris\nDebora\nEdith\nFaye\nHope\nJacquline\nKatie\nMarion\nNena\nTangela\nTena\nCara\nCora\nDeana\nDora\nGwen\nHarriet\nHattie\nIrene\nJimmie\nJoanne\nLetha\nLula\nNaomi\nSarita\nShelley\nTamela\nTeri\nTrina\nAlfreda\nAmelia\nBeatrice\nBridgette\nCelia\nDena\nFreda\nHazel\nJeri\nJerri\nJune\nKaran\nKaron\nKecia\nKristie\nKristina\nLatonya\nLatrenda\nLeanne\nLenora\nMarla\nMichael\nMiranda\nMonique\nNicole\nRochelle\nRosetta\nShari\nSophia\nAdrienne\nCarole\nCheri\nClaudia\nDaisy\nDanita\nDella\nEloise\nFrancine\nHeidi\nJoni\nLeisa\nLorrie\nLou\nMarian\nNita\nPauline\nPenelope\nRosalyn\nSheree\nTammi\nTeressa\nValarie\nAlma\nCherry\nChristi\nColleen\nDeloris\nDesiree\nEarnestine\nEsther\nFaith\nHeather\nIris\nJada\nJeanna\nLawanda\nMae\nMaggie\nMandy\nMarianne\nNellie\nPortia\nRena\nRobbin\nRoslyn\nRoxanne\nSelina\nStarla\nStefanie\nTommie\nTrisha\nVickey\nAgnes\nAlecia\nAletha\nAlthea\nAngelina\nBarbie\nCamilla\nCherie\nDedra\nDee\nDenita\nDorothea\nEddie\nErin\nEssie\nEugenia\nGrace\nHenrietta\nIngrid\nJanna\nJodi\nKendra\nKris\nKrista\nKristen\nKrystal\nLauren\nLeann\nLela\nLola\nLolita\nLynette\nMalinda\nMechelle\nMeredith\nPatrica\nPattie\nPolly\nRenae\nRene\nRoberta\nSelena\nStaci\nTonia\nTwanda\nUrsula\nAlberta\nAngel\nAntoinette\nBrigitte\nCasandra\nCatrina\nDeanne\nDeena\nEdwina\nErica\nErnestine\nGala\nGreta\nHarriett\nJacquelin\nJames\nJoycelyn\nKaryn\nKerri\nKerry\nKristine\nLatricia\nLaurel\nLesley\nLibby\nLorri\nLucinda\nMaureen\nMisty\nRegena\nRegenia\nRenita\nRoxie\nSaundra\nScarlet\nShanda\nShawn\nTeena\nWonda\nAda\nBobby\nCeleste\nCharla\nClaudette\nCleo\nDale\nDanna\nDeidra\nDelisa\nDemetra\nDiann\nDina\nElisa\nElisabeth\nElsie\nEula\nFelisa\nFreida\nGlynis\nGretchen\nInger\nJannie\nJeannie\nJohanna\nJuliet\nKala\nKandy\nKara\nKathi\nLita\nMadeline\nMelba\nPennie\nPhillis\nRebekah\nRobert\nRuthie\nShana\nSheron\nSusanne\nSuzette\nTessa\nTwana\nVenessa\nViola\nWindy\nAlana\nAleta\nAlisha\nAnglea\nArnita\nAundrea\nAva\nBethany\nBettie\nCandice\nCaren\nCaryn\nCassaundra\nCecile\nChandra\nCharleen\nCindi\nColette\nDarline\nDeirdre\nDelinda\nDionne\nDixie\nDona\nDorthy\nEliza\nErma\nEtta\nFannie\nFlora\nFontella\nFrancis\nGay\nGena\nHilda\nJanine\nJayne\nJocelyn\nJoe\nJohn\nKari\nKelle\nKellye\nLara\nLarry\nLizzie\nLorene\nLoretha\nLorna\nLottie\nLucretia\nMarcella\nMarcy\nMarguerite\nMarisa\nMarlene\nMelonie\nMuriel\nMyrna\nNanette\nNettie\nOra\nPamala\nPat\nPatrice\nPearl\nPearlie\nPhoebe\nRachael\nRenea\nRetha\nRhoda\nSadie\nSallie\nSamatha\nShawna\nShonda\nStacie\nStella\nSuzan\nTana\nTawanna\nTiffany\nTonita\nTowanna\nTrudy\nVerna\nVernessa\nViolet\nWilma\nYolonda\nZina\nLisa\nMary\nAngela\nKimberly\nTammy\nCynthia\nPamela\nDonna\nSharon\nKaren\nPatricia\nTeresa\nMelissa\nSandra\nLinda\nSusan\nBrenda\nJennifer\nTina\nDeborah\nRhonda\nElizabeth\nTracy\nBarbara\nDebra\nStephanie\nPaula\nWanda\nSherry\nRebecca\nCheryl\nJacqueline\nMichelle\nAmy\nCarol\nLaura\nSonya\nWendy\nConnie\nCarolyn\nRegina\nSheila\nKathy\nKelly\nNancy\nShelia\nAnita\nRobin\nBeverly\nDana\nLori\nMargaret\nShirley\nJanice\nJanet\nCindy\nJulie\nTerri\nVickie\nCarla\nBetty\nValerie\nAndrea\nKim\nRita\nDorothy\nMelanie\nMartha\nCharlotte\nGina\nGloria\nMelinda\nTracey\nFelicia\nTheresa\nMonica\nAmanda\nSarah\nLeslie\nAnnie\nDebbie\nAnnette\nCathy\nAngelia\nTonya\nBelinda\nJudy\nVeronica\nDarlene\nDenise\nCassandra\nChristine\nDawn\nGwendolyn\nJoyce\nPhyllis\nVicki\nCatherine\nPeggy\nSherri\nLeigh\nShannon\nMarilyn\nSamantha\nGlenda\nSandy\nVanessa\nApril\nDiane\nDoris\nBonnie\nMichele\nVirginia\nYolanda\nBeth\nTraci\nAngie\nSonja\nAlice\nLaurie\nAnna\nStacey\nSylvia\nAllison\nJill\nTammie\nLoretta\nTracie\nAudrey\nEllen\nFrances\nVivian\nHelen\nJuanita\nJulia\nKatherine\nMarsha\nJackie\nJo\nKatrina\nMelody\nRachel\nDeanna\nBobbie\nConstance\nGinger\nSuzanne\nEvelyn\nJeanette\nKathleen\nCarrie\nStacy\nPenny\nRamona\nSara\nCharlene\nKathryn\nToni\nKelley\nKristi\nLee\nRose\nAnn\nJamie\nJoy\nMarie\nAlicia\nTanya\nVictoria\nDaphne\nKelli\nRenee\nBecky\nAnne\nDiana\nJana\nRonda\nWillie\nEthel\nHolly\nHope\nMaria\nMona\nRuby\nTabatha\nChristie\nTamara\nAshley\nCandace\nEmily\nJacquelyn\nSusie\nBridget\nChristy\nFelecia\nGeorgia\nJessica\nJoann\nLynn\nPriscilla\nNatalie\nRosie\nSabrina\nEmma\nJerri\nKristy\nNorma\nPatti\nRuth\nCrystal\nElaine\nJane\nJudith\nRosa\nSherrie\nVonda\nAudra\nBridgette\nMarcia\nPatsy\nPatty\nVicky\nYvonne\nAlisa\nBillie\nEva\nKimberley\nLeah\nMattie\nSheri\nTabitha\nTerry\nBernice\nJan\nKristin\nSophia\nBridgett\nDelores\nJoan\nKarla\nMarion\nNicole\nNina\nSharron\nSheryl\nCaroline\nDianne\nGail\nMildred\nMyra\nPaige\nBonita\nClara\nJanie\nLana\nLillie\nPam\nSonia\nTara\nTerrie\nBernadette\nElla\nKellie\nLesia\nLynda\nMarla\nMelisa\nMia\nRoberta\nSally\nValencia\nYvette\nJessie\nLawanda\nLillian\nShawn\nValarie\nWilma\nBertha\nCarmen\nChristina\nDarla\nGreta\nIda\nJean\nJoanna\nLois\nMitzi\nOlivia\nRosalind\nThelma\nTiffany\nAmelia\nDeloris\nEdith\nGeraldine\nHazel\nJohnnie\nKecia\nRobyn\nRosetta\nShelley\nValeria\nVera\nBenita\nBessie\nDeana\nDebora\nGeneva\nJeannie\nJune\nKerry\nLadonna\nLena\nLorraine\nMelba\nPatrice\nShelly\nTamatha\nTamela\nTommie\nTrina\nAlison\nCecelia\nDina\nFreda\nHeather\nJacquline\nJoanne\nKatie\nKrista\nLatonya\nLesa\nLouise\nLucille\nMarian\nMolly\nPatrica\nTeri\nTonia\nAlesia\nCandy\nCara\nCheri\nGladys\nJenny\nKay\nKendra\nLorie\nLorrie\nMichael\nMinnie\nPaulette\nStarla\nStella\nTeressa\nTonja\nVelma\nChristi\nDena\nEdna\nFaye\nGrace\nIrene\nIris\nJeanne\nJennie\nLetitia\nLydia\nMalissa\nMarianne\nReba\nRobbie\nRobert\nSelena\nSondra\nTami\nAlma\nArlene\nBethany\nCeleste\nCherie\nClaudia\nCora\nDanielle\nDeidre\nDianna\nEarnestine\nElisa\nErika\nFlora\nFrankie\nGayla\nJoe\nKimberlee\nKristen\nKristie\nKristina\nLesley\nLynne\nMalinda\nMarcella\nMargie\nMarjorie\nMaureen\nMiranda\nMisty\nRosemary\nSue\nTia\nVickey\nAdrienne\nAngeline\nAnglia\nCasandra\nDale\nDelois\nEsther\nJosephine\nLatanya\nLenora\nLila\nMonique\nNellie\nNita\nPamala\nPennie\nRena\nRenea\nSandi\nSelina\nShari\nShelby\nTawana\nUrsula\nViola\nAngel\nAngelina\nBeatrice\nBettye\nCandice\nCarole\nCecilia\nDanna\nDeidra\nDeirdre\nDella\nDesiree\nDiann\nEarline\nEdwina\nEugenia\nHeidi\nJami\nJoni\nKrystal\nLeanne\nLeisa\nLeona\nLora\nLucretia\nMaggie\nMeredith\nRolanda\nRoxanne\nRuthie\nSerena\nStefanie\nTamala\nTammi\nVerna\nAlecia\nAntoinette\nAvis\nBettie\nDelisa\nDinah\nDixie\nEloise\nEunice\nFlorence\nGale\nGretchen\nGussie\nHarriet\nIvy\nJanette\nJenifer\nJohn\nKerri\nLaverne\nLeticia\nLibby\nLucy\nLynette\nMamie\nMarlene\nMaxine\nMelodie\nMiriam\nMyrtle\nNettie\nPolly\nReta\nRochelle\nSarita\nSaundra\nSharlene\nShellie\nSonji\nSuzette\nTangela\nTresa\nValorie\nZelda\nAda\nAdrianne\nAimee\nAlana\nAleta\nAlisha\nAntonia\nAretha\nBernita\nBetsy\nCharla\nChris\nChrista\nClaire\nDaisy\nDara\nDedra\nDee\nDeedra\nDenita\nDonald\nDora\nEleanor\nErin\nErnestine\nFannie\nFontella\nFrancis\nGena\nGracie\nJacquelin\nJames\nJannette\nJeri\nJerry\nJimmie\nJodi\nJuliette\nKaron\nKris\nLara\nLatricia\nLeann\nLessie\nLetha\nLolita\nLucinda\nLula\nMable\nMadeline\nMollie\nNadine\nRobbin\nRosalyn\nShana\nShawna\nSheron\nSherrill\nShonda\nTana\nTawanda\nTena\nTrudy\nAlthea\nAndra\nAnthony\nArnetta\nAva\nBobby\nCaryn\nCathleen\nCelia\nChandra\nCherri\nCinda\nDebrah\nDelana\nDemetrice\nDonita\nElisabeth\nElnora\nElsie\nEtta\nEula\nEvette\nFaith\nFran\nGretta\nHarriett\nInger\nJada\nJeanna\nJohnna\nKarol\nKatina\nLauren\nLavonda\nLea\nLola\nLorri\nLou\nLurleen\nMalisa\nMarchelle\nMargo\nMarietta\nMarisa\nMarshell\nMartina\nMechelle\nMellissa\nMelony\nMillie\nNedra\nNora\nOla\nOuida\nPamelia\nPearlie\nPenelope\nRegenia\nRenita\nRodney\nRosita\nShanon\nSheena\nSheree\nSherree\nSherryl\nStacie\nSusanne\nTeresia\nTimothy\nTreva\nVenessa\nWilliam\nWonda\nLisa\nKimberly\nAngela\nMary\nTammy\nCynthia\nPamela\nSharon\nMelissa\nDonna\nTeresa\nJennifer\nPatricia\nSusan\nStephanie\nKaren\nTina\nSandra\nLinda\nTracy\nRhonda\nElizabeth\nSherry\nAmy\nBarbara\nBrenda\nMichelle\nDeborah\nLaura\nJacqueline\nWendy\nWanda\nDebra\nRebecca\nCarolyn\nKelly\nRegina\nPaula\nCheryl\nCarol\nSonya\nKathy\nJanet\nNancy\nDana\nBeverly\nAmanda\nTonya\nAnita\nCarla\nLori\nCindy\nAndrea\nRobin\nConnie\nJanice\nJulie\nMargaret\nTerri\nBetty\nSarah\nVickie\nFelicia\nKim\nShirley\nValerie\nSheila\nMelinda\nMonica\nTheresa\nCatherine\nMelanie\nCathy\nCharlotte\nShelia\nCassandra\nMartha\nVanessa\nDorothy\nGina\nGloria\nLeslie\nApril\nTracey\nStacey\nAnnie\nDawn\nSabrina\nLeigh\nSherri\nBelinda\nMichele\nYolanda\nRita\nDenise\nAngelia\nGwendolyn\nVicki\nMarilyn\nRachel\nJudy\nSamantha\nStacy\nVeronica\nKatherine\nGlenda\nKatrina\nTraci\nChristine\nDebbie\nShannon\nDarlene\nJoyce\nVirginia\nAnna\nJill\nJackie\nAudrey\nAnn\nSonja\nTammie\nAngie\nBonnie\nGinger\nJamie\nPeggy\nChristina\nKathryn\nKristi\nAnnette\nDaphne\nLoretta\nSherrie\nTracie\nVictoria\nAlice\nPenny\nAshley\nDiane\nLaurie\nSuzanne\nDeanna\nSylvia\nEvelyn\nJuanita\nPhyllis\nRuby\nSandy\nAlicia\nCrystal\nJo\nPriscilla\nBeth\nDoris\nFrances\nJulia\nDiana\nAdrienne\nSheryl\nJoy\nKelley\nLee\nMaria\nMarsha\nTabatha\nTanya\nHelen\nMarie\nRose\nChristy\nEmily\nTerry\nAretha\nAllison\nJana\nJeanette\nJoan\nMelody\nYvonne\nAnne\nCharlene\nJessica\nKelli\nLeah\nSara\nSheri\nVivian\nNatalie\nPatsy\nCarrie\nKarla\nNorma\nRenee\nToni\nVicky\nHolly\nAlisa\nAudra\nKimberley\nMyra\nRamona\nSonia\nTamara\nYvette\nBobbie\nFelecia\nGeorgia\nKathleen\nMisty\nPatti\nWillie\nBecky\nChristie\nJerri\nMona\nRuth\nTerrie\nSusie\nBernadette\nCarmen\nDianne\nEllen\nRonda\nBonita\nBridget\nConstance\nHeather\nJean\nMarla\nMildred\nRosie\nTonja\nVera\nBillie\nCandace\nDeana\nElaine\nEthel\nEva\nGail\nJessie\nJoann\nLillie\nLynn\nSophia\nTabitha\nElla\nJudith\nKellie\nKerry\nLana\nPatty\nBenita\nEdna\nEmma\nGreta\nJane\nKristy\nLillian\nLora\nValencia\nVonda\nClara\nGena\nJeannie\nJenny\nJoanna\nLadonna\nLynda\nMarion\nMonique\nShelley\nTara\nBridgett\nHeidi\nLatonya\nMattie\nThelma\nTonia\nAmelia\nBridgette\nCaroline\nDora\nJacquelyn\nJeanne\nJohnnie\nLesa\nMarcia\nMinnie\nNora\nPaige\nShelly\nSue\nSuzette\nTiffany\nValeria\nAlesia\nBeatrice\nBertha\nCarole\nDianna\nGladys\nLara\nMalinda\nNicole\nPaulette\nShawn\nTeri\nVickey\nAlison\nChandra\nDarla\nEdith\nFannie\nJune\nLorie\nMarian\nMelisa\nPam\nPolly\nRosemary\nSharron\nTrina\nValarie\nBernice\nChristi\nJan\nJeri\nKarin\nKristie\nLeanne\nLenora\nLouise\nReba\nStaci\nTami\nBessie\nCecilia\nCheri\nCherie\nColleen\nCora\nDanna\nEleanor\nJanie\nMaxine\nMolly\nRoberta\nRosa\nRosalind\nTamatha\nTeressa\nWendi\nCandice\nDedra\nDena\nDina\nGeraldine\nHazel\nHope\nIngrid\nJacquline\nJennie\nJoanne\nKrista\nKristin\nLea\nLorraine\nMargie\nMia\nMiranda\nNina\nRachael\nSally\nShari\nStacie\nStarla\nTammi\nUrsula\nAlma\nAlthea\nCami\nErika\nIris\nJosephine\nKara\nKatie\nLesley\nLois\nLola\nLorene\nLula\nPatrice\nRena\nRobbie\nRobyn\nRosetta\nStefanie\nStella\nTamela\nTawanda\nWilma\nAlfreda\nAntoinette\nBetsy\nCandy\nChrista\nClaudia\nDella\nDeloris\nErin\nEugenia\nFlora\nFrankie\nJerrie\nKay\nKecia\nLawanda\nLeisa\nLesia\nLetitia\nLucille\nLucy\nMalissa\nMarjorie\nMechelle\nMiriam\nMitzi\nRosalyn\nRoxanne\nSandi\nSondra\nVelma\nWindy\nAdrian\nCecelia\nCeleste\nCourtney\nDaisy\nDanita\nDebora\nDeirdre\nDelois\nEssie\nFaye\nIda\nJames\nJannie\nJeanna\nKendra\nKristen\nLauren\nLena\nLorri\nLorrie\nLydia\nMaggie\nRebekah\nSaundra\nSelina\nSusanne\nAda\nAngeline\nAnthony\nCasandra\nDale\nEarnestine\nEddie\nEloise\nErnestine\nFelisha\nFlorence\nGeneva\nGwen\nJeanie\nJocelyn\nJoe\nKandy\nKristina\nLauri\nLibby\nLucinda\nMachelle\nMae\nMarcella\nMarianne\nMaureen\nMelodie\nNita\nOlivia\nPamala\nPortia\nRochelle\nSelena\nShelby\nTena\nTia\nTommie\nWilliam\nAmie\nAndra\nArlene\nBethany\nBettie\nCelia\nChrystal\nDeann\nDeidra\nDeidre\nDeloise\nDelores\nDemetria\nDonya\nEdie\nFaith\nGayla\nGerri\nGretchen\nGretta\nJenifer\nJimmie\nJodi\nJoni\nKeisha\nKrystal\nLaquita\nLou\nMarisa\nMelonie\nMelony\nNanette\nNaomi\nNedra\nPat\nPattie\nRenae\nRenita\nSallie\nShana\nSherryl\nSonji\nStacia\nStephaine\nTawana\nTrudy\nVeda\nViola\nAdriane\nAimee\nAlethea\nAlisha\nAngelina\nAntonia\nBobby\nCara\nCharles\nCherrie\nChiquita\nCornelia\nDanette\nDanielle\nDeanne\nDemetrius\nDixie\nEaster\nEdwina\nElisa\nElsie\nErica\nErma\nFatima\nFelisa\nFreda\nFreddie\nGale\nGayle\nGrace\nHarriet\nHattie\nIrma\nJeanetta\nJerry\nKandi\nKaran\nKaron\nKerrie\nKimberlee\nKris\nLashon\nLatanya\nLetha\nLita\nLynne\nMamie\nMarlene\nMichael\nMichell\nMindy\nNatasha\nNettie\nOla\nPauline\nPearlie\nPenelope\nRae\nRegena\nRhoda\nRobbin\nRomona\nRoslyn\nSabrena\nSebrina\nShellie\nSheron\nTamala\nTeena\nTelisa\nTereasa\nTrena\nTressa\nTricia\nTwana\nTwyla\nWinifred\nLisa\nKimberly\nAngela\nTammy\nMary\nMelissa\nPamela\nJennifer\nCynthia\nDonna\nSharon\nTracy\nKaren\nMichelle\nTina\nSandra\nStephanie\nSusan\nTeresa\nPatricia\nAmy\nLaura\nRhonda\nLinda\nKelly\nSherry\nElizabeth\nTonya\nBrenda\nBarbara\nWendy\nDeborah\nCarol\nRebecca\nPaula\nJacqueline\nRegina\nDebra\nWanda\nSonya\nShannon\nCarolyn\nCheryl\nDana\nLori\nNancy\nRobin\nAmanda\nConnie\nCassandra\nJulie\nKathy\nSheila\nJanet\nJanice\nTracey\nMargaret\nAndrea\nGina\nAnita\nBeverly\nCarla\nLeslie\nStacey\nValerie\nYolanda\nMelanie\nMonica\nTerri\nStacy\nShelia\nFelicia\nMelinda\nCindy\nCharlotte\nCatherine\nGinger\nSarah\nTheresa\nAngelia\nMichele\nMartha\nTammie\nBetty\nLeigh\nApril\nDawn\nDorothy\nDenise\nVeronica\nVickie\nCathy\nKim\nVictoria\nChristine\nTraci\nAnnie\nKatherine\nKelley\nRachel\nRita\nBelinda\nGwendolyn\nVirginia\nChristy\nGloria\nDebbie\nAnn\nLaurie\nChristina\nJoyce\nPenny\nVicki\nJill\nShirley\nJudy\nSamantha\nVanessa\nKellie\nSherri\nTara\nDeanna\nAlice\nGlenda\nTanya\nTracie\nAnna\nJamie\nKristi\nSuzanne\nSabrina\nCarrie\nMarilyn\nAretha\nKelli\nJoy\nSonja\nEmily\nJulia\nLoretta\nFrances\nAllison\nJackie\nKatrina\nSandy\nAlicia\nAngie\nJuanita\nLee\nSara\nBonnie\nCharlene\nDarlene\nTamara\nDaphne\nHolly\nKristy\nAudrey\nRonda\nAnnette\nAshley\nChristie\nDiana\nDoris\nHeather\nKathryn\nMelody\nYvonne\nBeth\nEllen\nPeggy\nRenee\nSylvia\nTabatha\nBridget\nPhyllis\nRose\nToni\nValarie\nAlisa\nDiane\nLynn\nConstance\nCrystal\nEvelyn\nLeah\nVicky\nAudra\nCandace\nChristi\nKarla\nKristie\nRuby\nHelen\nLana\nPriscilla\nSherrie\nBridgette\nCarmen\nJessica\nMarie\nMisty\nTonia\nVivian\nFelecia\nJo\nKimberley\nShelly\nTabitha\nAnne\nBobbie\nKathleen\nMaria\nMarsha\nMona\nNicole\nPatsy\nSheryl\nAdrienne\nBecky\nRamona\nShelley\nEthel\nJana\nNatalie\nSheri\nHeidi\nJeanette\nJudith\nMelisa\nSonia\nStacie\nYvette\nChandra\nJane\nKerry\nKristin\nMarla\nStaci\nCoretta\nEmma\nTamatha\nTerry\nWillie\nAlfreda\nBonita\nElaine\nGena\nIris\nJoan\nLora\nTonja\nBenita\nJacquelyn\nJanie\nJerri\nLadonna\nLara\nPaige\nRobyn\nSondra\nTiffany\nCaroline\nDeana\nDena\nEva\nGreta\nJeannie\nJoann\nNina\nPatrice\nRosie\nSophia\nTami\nVera\nAmelia\nBernice\nBillie\nCandy\nClara\nDianne\nJessie\nKerri\nLesa\nLucy\nMattie\nRobbie\nShawn\nTamiko\nValeria\nVonda\nGeorgia\nJohnnie\nKendra\nLatonya\nMarcia\nMeredith\nNorma\nRosa\nRosalind\nRosemary\nRuth\nSally\nSusie\nValencia\nEdna\nElla\nErica\nJennie\nKristina\nLillian\nMargie\nVickey\nAdrian\nBertha\nBridgett\nEsther\nFrankie\nIda\nMichael\nMildred\nMiriam\nMyra\nRobbin\nRochelle\nSelina\nTamela\nTawana\nTerrie\nAlison\nBethany\nCheri\nChrista\nCourtney\nDeirdre\nDianna\nDina\nGail\nIrene\nJodi\nJody\nKrista\nLesley\nLillie\nLouise\nMia\nMinnie\nRena\nTammi\nTrina\nAlma\nAngelique\nAnissa\nAntoinette\nDella\nDeloris\nDionne\nErika\nFreda\nHope\nJacquline\nJean\nJeanne\nJenny\nJoanne\nKatie\nLesia\nLibby\nLorrie\nMalinda\nMelonie\nPatti\nShelby\nStarla\nSue\nTeri\nThelma\nUrsula\nAda\nAimee\nAlecia\nCassie\nClaudia\nDanielle\nDeidra\nEdith\nGladys\nHazel\nKay\nKayla\nKristen\nLawanda\nLucinda\nLucretia\nMarjorie\nMarlo\nMechelle\nMelissia\nMiranda\nPam\nPauline\nSharron\nStefanie\nWilma\nAlberta\nAngel\nBernadette\nCandice\nCara\nCasandra\nDanita\nGayla\nGrace\nJames\nJanna\nJeanetta\nJeri\nJoanna\nKecia\nLauren\nLea\nLeanne\nLena\nLenora\nLois\nLorraine\nMamie\nMarian\nMaxine\nOlivia\nPatty\nPenelope\nReba\nRenita\nStella\nVelma\nWendi\nAlisha\nCallie\nCora\nDanna\nDora\nEarnestine\nEugenia\nFannie\nFelisa\nFlorence\nGeneva\nKarin\nLatanya\nLula\nLydia\nLynda\nMaggie\nMandy\nMitzi\nMolly\nNikki\nPaulette\nPolly\nRachael\nRenae\nSelena\nShari\nStephine\nTrudy\nAlethea\nAlthea\nAmber\nAva\nBrandy\nCalandra\nCharla\nCherry\nCornelia\nDee\nDelores\nDoretha\nEleanor\nErnestine\nEstella\nFaith\nGeraldine\nGretta\nJami\nJeanie\nJodie\nJoni\nJosephine\nJosette\nKara\nLorri\nLynne\nMarlene\nMartina\nMichell\nMillicent\nMissy\nMonique\nNora\nRegena\nRenea\nRomona\nShana\nShellie\nTeressa\nTommie\nVikki\nYoulanda\nAdriane\nAntonia\nArlene\nBrigitte\nCamilla\nCecilia\nCherie\nChrystal\nClaire\nClarissa\nDaisy\nDarla\nDavid\nDeidre\nDelois\nEileen\nEvie\nFaye\nGeri\nGinny\nHenrietta\nInez\nIngrid\nIrma\nIvy\nJan\nJenifer\nJulianne\nJune\nKathrine\nKeri\nKris\nLatisha\nLatonja\nLaurel\nLeann\nLeesa\nLeisa\nMarion\nMarnie\nMelodie\nMollie\nNaomi\nNichelle\nPamala\nPatrick\nRoberta\nRosalyn\nRosetta\nShara\nShauna\nSheron\nSusanne\nTawanda\nTena\nTomiko\nValorie\nVeda\nWindy\nAdrianne\nAlesia\nAmie\nAnglea\nAntionette\nBessie\nBobby\nCasey\nCeleste\nCharles\nChris\nChristal\nChristopher\nCristal\nDeanne\nDebora\nDedra\nDeedra\nDeena\nDenice\nDinah\nDorinda\nElisa\nEloise\nEssie\nEunice\nFrancis\nFreida\nGay\nGidget\nGracie\nGretchen\nGwen\nHarriet\nJada\nJannie\nJeana\nJerry\nJewell\nJimmie\nJohn\nKari\nKarmen\nKaron\nKelle\nKenya\nKristine\nLashawn\nLatonia\nLawana\nLela\nLetha\nLetitia\nLisha\nLorie\nMachelle\nMarianne\nMarty\nMerry\nMindy\nNita\nNona\nRoxanne\nSabrena\nSallie\nScarlett\nSebrina\nSerena\nShanda\nSharla\nSherita\nShonda\nSuzette\nTania\nTera\nTomeka\nTony\nTwanda\nViolet\nWilliam\nWonda\nKimberly\nAngela\nLisa\nTammy\nMary\nJennifer\nPamela\nCynthia\nMelissa\nTracy\nDonna\nAmy\nStephanie\nMichelle\nSharon\nTeresa\nKaren\nTina\nPatricia\nSusan\nSandra\nLaura\nLinda\nElizabeth\nShannon\nRhonda\nKelly\nWendy\nRebecca\nSonya\nTonya\nBarbara\nRegina\nLori\nSherry\nBrenda\nJulie\nDana\nDeborah\nPaula\nMonica\nCarol\nCarolyn\nCarla\nWanda\nAmanda\nCheryl\nStacey\nLeslie\nTracey\nBeverly\nJacqueline\nRobin\nMelanie\nYolanda\nDebra\nKathy\nConnie\nNancy\nTerri\nValerie\nAndrea\nChristy\nStacy\nSheila\nCassandra\nCindy\nFelicia\nCatherine\nVeronica\nJulia\nTara\nCharlotte\nJanice\nKelli\nTraci\nBelinda\nSarah\nJanet\nHeather\nKatherine\nLeigh\nShelia\nRachel\nBetty\nVictoria\nDawn\nAnita\nMargaret\nVanessa\nMichele\nTanya\nVickie\nMelinda\nChristine\nKim\nTracie\nGina\nShirley\nVirginia\nMartha\nAngelia\nApril\nCathy\nSamantha\nDeanna\nDenise\nTheresa\nVicki\nKathryn\nChristina\nTammie\nGloria\nSabrina\nKristi\nNicole\nSherri\nAnn\nAnnie\nDaphne\nKatrina\nAlicia\nDorothy\nAnna\nJoyce\nKellie\nFrances\nSandy\nSonja\nGinger\nHolly\nJudy\nKristie\nMarilyn\nSuzanne\nJill\nKelley\nAlice\nAshley\nCarrie\nDebbie\nGwendolyn\nRita\nDarlene\nJamie\nAnnette\nDiane\nGlenda\nPenny\nAngie\nLatonya\nBridget\nToni\nJo\nChristie\nEmily\nJessica\nBeth\nLaurie\nLeah\nTabitha\nAllison\nLee\nRose\nAudrey\nCrystal\nEvelyn\nKristy\nTamara\nBonnie\nDoris\nJoy\nKimberley\nMarie\nNatalie\nJackie\nLoretta\nMarsha\nPeggy\nTonia\nHelen\nJana\nTabatha\nCandace\nDena\nErica\nMeredith\nBobbie\nCharlene\nDiana\nJuanita\nLora\nLynn\nSylvia\nVivian\nCandy\nConstance\nMelody\nPhyllis\nSheryl\nTrina\nBecky\nKathleen\nMisty\nRuby\nSheri\nAretha\nChristi\nAnne\nRosie\nShelly\nSherrie\nAlisa\nJacquelyn\nRamona\nRobyn\nSara\nSonia\nBridgette\nDeana\nKarla\nKristin\nLana\nShelley\nWillie\nEllen\nFelecia\nIris\nKerry\nLorie\nMarla\nMelisa\nPaige\nPatti\nPriscilla\nShawn\nShonda\nStaci\nYvonne\nElaine\nJeannie\nJenny\nMaria\nMyra\nRuth\nShana\nSondra\nStacie\nValarie\nClara\nElla\nErin\nJoanna\nMarcia\nRonda\nTerry\nTiffany\nTonja\nVicky\nAmber\nBenita\nGeorgia\nJerri\nJodi\nKatie\nLadonna\nMarjorie\nNorma\nSusie\nTami\nValencia\nAdrienne\nHope\nJanie\nJudith\nKristina\nLillie\nPaulette\nRenee\nRobbie\nBridgett\nCarmen\nDanielle\nEdna\nEva\nJane\nJean\nJeanette\nTeri\nChandra\nEdith\nHeidi\nIngrid\nKendra\nKristen\nLatricia\nLesley\nMattie\nPatty\nTamatha\nAmelia\nAudra\nBethany\nCamille\nCheri\nCherie\nChrista\nDeidra\nDianne\nEmma\nEthel\nGail\nKerri\nLara\nLawanda\nLillian\nMitzi\nYvette\nAngel\nBernice\nCandice\nCasandra\nDedra\nGena\nJessie\nJoan\nJoann\nJoanne\nJohnnie\nKrista\nLea\nMona\nNora\nPatrice\nRenita\nRosa\nRosemary\nSerena\nTamika\nBonita\nCaroline\nCoretta\nDianna\nDionne\nErika\nGladys\nHattie\nJeanne\nLetitia\nLynda\nLynne\nMalinda\nMonique\nPam\nRachael\nSharron\nSuzette\nTamela\nVonda\nAdrian\nAlecia\nAlisha\nAlma\nAva\nBrandi\nCecilia\nDeirdre\nDina\nKrystal\nLauren\nLeanne\nLorraine\nMargie\nMarion\nMechelle\nMolly\nPamala\nRena\nRobbin\nRoberta\nRosetta\nShanda\nValeria\nVera\nAimee\nAnissa\nBillie\nCamilla\nCarole\nDelores\nDeloris\nEricka\nIda\nJada\nJan\nJennie\nKara\nKecia\nLesa\nLouise\nLucinda\nLucretia\nLydia\nMae\nMarlo\nMildred\nMinnie\nOlivia\nPenelope\nRebekah\nRosalind\nSelena\nBeatrice\nBernadette\nCecelia\nCora\nDelois\nDemetria\nEugenia\nFannie\nFaye\nFrancine\nGayla\nGrace\nJanna\nKeri\nLarhonda\nLatanya\nLaurel\nLesia\nMia\nMichael\nMiranda\nNadine\nPatsy\nShanna\nTerrie\nThelma\nTricia\nAlana\nAlison\nBertha\nBessie\nCharity\nChelsea\nCherry\nChristal\nClaudia\nCourtney\nDee\nElisa\nGreta\nGwen\nJanis\nJeri\nJohn\nJosephine\nKristine\nLashawn\nLela\nLena\nLucy\nMarcy\nMarnie\nMollie\nNita\nPortia\nRochelle\nSaundra\nShellie\nSheree\nStella\nTisha\nTowanda\nTwana\nValorie\nWendi\nAlfreda\nAllyson\nAngelique\nAntionette\nAntoinette\nAntonia\nBrandy\nCatrina\nCeleste\nColleen\nDarla\nDeidre\nDella\nErnestine\nFaith\nFrankie\nGeneva\nGeraldine\nHarriet\nJacquline\nJeanetta\nJewel\nJune\nKellye\nKerrie\nLaquita\nLasonya\nLatonja\nMalissa\nMarguerite\nMarlene\nMaureen\nMelonie\nMiriam\nNichole\nNikki\nPauline\nRenae\nSally\nShelby\nSophia\nStarla\nStefanie\nSue\nSusanne\nTamera\nTasha\nTia\nTyra\nVikki\nAda\nAdriane\nAdriene\nAmie\nAngelina\nBobby\nCari\nClarissa\nCristy\nDavina\nDeann\nDemetra\nDinah\nDora\nEsther\nEunice\nHollie\nJames\nJami\nKarin\nKatharine\nKay\nKayla\nKenya\nKirsten\nLanette\nLatonia\nLeisa\nLois\nLorrie\nLynette\nMerry\nNaomi\nNatasha\nNelda\nNina\nPolly\nRolanda\nRoxie\nScarlett\nShari\nShea\nShunda\nTammi\nTamra\nUrsula\nWilliam\nZandra\nAdrianne\nAletha\nAlethea\nAnthony\nArlene\nBetsy\nBrigitte\nCara\nCarmella\nCassie\nCharita\nCherrie\nChrystal\nDavid\nDeanne\nDelana\nDixie\nEarnestine\nElisabeth\nEloise\nEtta\nEvette\nFelisa\nFlorence\nFonda\nFrancis\nFreda\nGayle\nHaley\nHazel\nJeannette\nJoe\nJonna\nKandi\nKathie\nKatrice\nKeisha\nLashelle\nLatrice\nLavonda\nLawana\nLila\nLorna\nLou\nLucille\nLula\nMachelle\nMaggie\nMaxine\nMelaine\nMillie\nMisti\nNichelle\nNola\nRachelle\nRosalyn\nRoxann\nSallie\nSebrina\nShani\nShawna\nSherita\nSherron\nTena\nTessa\nVelma\nVickey\nWhitney\nWindy\nYolonda\nYoulanda\nYulanda\nKimberly\nAngela\nJennifer\nTammy\nLisa\nMary\nTracy\nPamela\nAmy\nStephanie\nMelissa\nCynthia\nMichelle\nDonna\nKaren\nSharon\nTina\nShannon\nWendy\nTeresa\nSusan\nElizabeth\nSandra\nRhonda\nLaura\nDana\nTonya\nKelly\nRebecca\nSherry\nPatricia\nLinda\nChristy\nAmanda\nLori\nRegina\nJulie\nSonya\nCarla\nTara\nPaula\nStacy\nHeather\nMonica\nFelicia\nBrenda\nSabrina\nWanda\nTracey\nCarol\nBarbara\nBeverly\nDeborah\nJacqueline\nLeslie\nNancy\nCindy\nAndrea\nCarolyn\nMelinda\nStacey\nTanya\nMelanie\nKathy\nMargaret\nRachel\nSheila\nDawn\nCassandra\nValerie\nShelia\nDebra\nApril\nTracie\nRobin\nGina\nAnita\nYolanda\nConnie\nKatrina\nTerri\nTraci\nKelli\nLeigh\nCheryl\nKristi\nJanet\nMichele\nTheresa\nAlicia\nVanessa\nAshley\nDeanna\nCathy\nVeronica\nCatherine\nCharlotte\nDenise\nKristie\nTiffany\nVickie\nChristine\nSarah\nSamantha\nVictoria\nErica\nKim\nBetty\nJanice\nNicole\nAllison\nBelinda\nGwendolyn\nKatherine\nGloria\nMartha\nAngelia\nChristina\nHolly\nKristy\nTammie\nVicki\nDaphne\nGinger\nSherri\nCarrie\nSonja\nAnn\nDebbie\nAnna\nCrystal\nKathryn\nVirginia\nChristie\nFrances\nPeggy\nShirley\nMarsha\nDorothy\nTonia\nAnnie\nJudy\nKellie\nRita\nJessica\nJoyce\nJulia\nKarla\nKelley\nMeredith\nNatalie\nPatrice\nShelley\nBridget\nLaurie\nLatonya\nEmily\nJackie\nSuzanne\nSylvia\nAudrey\nGlenda\nHelen\nJill\nCharlene\nDiane\nStacie\nTabitha\nTamara\nAdrienne\nAlice\nBeth\nJamie\nKristina\nMisty\nPenny\nSandy\nTabatha\nBobbie\nBonnie\nDena\nDiana\nRenee\nVicky\nAnnette\nKathleen\nKrista\nShelly\nToni\nKristin\nLee\nMarilyn\nPhyllis\nStaci\nTrina\nAngie\nChandra\nChrista\nLoretta\nMaria\nShawn\nVivian\nChristi\nJeannie\nSonia\nAmelia\nCandy\nCarmen\nLeah\nSara\nSheri\nStefanie\nAngel\nEvelyn\nJuanita\nKerri\nKerry\nMarie\nPriscilla\nAlison\nCandace\nJoanna\nShana\nBillie\nBridgett\nDoris\nFelecia\nHope\nJerri\nJoy\nKendra\nLadonna\nMelody\nRobbie\nAnne\nBecky\nConstance\nDanielle\nDeana\nErika\nJana\nMarcia\nSherrie\nTricia\nKimberley\nLana\nLara\nMelisa\nSophia\nTerry\nValeria\nYvonne\nAnissa\nJenny\nJo\nLora\nPatsy\nSharron\nElaine\nEllen\nKristen\nRose\nRuby\nSondra\nDeidre\nJudith\nLillian\nMarla\nRobyn\nRonda\nTonja\nValencia\nAretha\nBenita\nBridgette\nDarlene\nEva\nLawanda\nLynn\nMonique\nRachael\nRamona\nSerena\nAmber\nAudra\nDianne\nElla\nJean\nJeanne\nJessie\nJoan\nMyra\nNorma\nDarla\nEmma\nGena\nGeorgia\nIris\nLorie\nMona\nShanna\nTammi\nTeri\nCaroline\nCatrina\nJacquelyn\nLois\nLucinda\nPaige\nPatti\nPatty\nRoberta\nRuth\nShonda\nTami\nValarie\nAlisa\nBertha\nCecelia\nDianna\nDionne\nEdna\nGreta\nJane\nJanie\nLetitia\nNichole\nSally\nSheryl\nTamatha\nTamela\nBessie\nBonita\nCourtney\nEthel\nJan\nKatie\nLorrie\nShauna\nCandice\nClaudia\nDina\nGail\nJodi\nJohnnie\nLauren\nLesley\nMarlo\nMiriam\nMolly\nNatasha\nNina\nSandi\nStarla\nTangela\nTerra\nTerrie\nVera\nWendi\nYvette\nAlexis\nAllyson\nAntoinette\nBernice\nBethany\nBrandy\nDeidra\nEdith\nErin\nJada\nJanna\nJodie\nKara\nLashawn\nLea\nLucy\nLydia\nMalinda\nMildred\nRosalind\nShawna\nShelby\nStella\nWillie\nWindy\nAimee\nAngelique\nBrooke\nCherie\nCoretta\nDora\nEricka\nEunice\nFlorence\nGeraldine\nGladys\nGrace\nJennie\nJoann\nLatanya\nLynda\nMarcie\nMindy\nMiranda\nMitzi\nPaulette\nRaquel\nStacia\nVonda\nAlisha\nArlene\nBernadette\nCalandra\nCasandra\nCassie\nChanda\nCheri\nClarissa\nDedra\nDeloris\nEleanor\nHeidi\nJeri\nKarin\nKeisha\nLillie\nMarcy\nMattie\nMisti\nNora\nPam\nRolanda\nSebrina\nSelena\nShea\nSusie\nTawana\nTessie\nWinifred\nAlecia\nAlethea\nAmi\nBeatrice\nBrandi\nCecilia\nCherry\nChristian\nCristy\nDelores\nDemetria\nElisa\nEsther\nEugenia\nFelisa\nFrancine\nJames\nJeana\nJoanne\nKatrice\nKimberely\nLeann\nLesa\nMae\nMargie\nMarion\nMichael\nMinnie\nPauline\nRena\nRenita\nSabrena\nTamika\nTania\nTanja\nTrena\nUrsula\nAdrian\nAlma\nCallie\nCara\nCharity\nClara\nColleen\nDeena\nElise\nFannie\nFreda\nGay\nGayla\nGeneva\nHazel\nHolley\nHollie\nJeanie\nJeanna\nJenifer\nJimmie\nKarrie\nKecia\nKenya\nKeri\nKerrie\nKristine\nLatonia\nLatonja\nLatricia\nLaurel\nLauri\nLeanne\nLenora\nLou\nMechelle\nMelonie\nMyrtle\nRebekah\nRene\nRochelle\nRosalyn\nRoslyn\nRuthie\nSue\nTamala\nTera\nThelma\nTisha\nValorie\nWhitney\nZandra\nAda\nAngelina\nAnjanette\nAnnetta\nAntionette\nAva\nChris\nDanna\nDee\nDelisa\nDesiree\nFonda\nGretchen\nHarriet\nHattie\nHolli\nIndia\nIrene\nJacquline\nJeanette\nJoni\nJosephine\nJosette\nKari\nKesha\nLajuana\nLashun\nLasonya\nLavonda\nLesia\nLeslee\nLizzie\nLola\nLucretia\nMamie\nMandy\nMarcella\nMarjorie\nMelba\nMerry\nMia\nMuriel\nNellie\nNikki\nPamala\nPolly\nPortia\nReba\nRosa\nRoxanne\nSaundra\nShari\nSharla\nTamera\nTawanda\nTiffanie\nTomeka\nTreva\nTyra\nVenita\nVickey\nVikki\nAdriane\nAdrianne\nAndra\nAndria\nArlinda\nBetsy\nBobbi\nBrigitte\nCamille\nCelena\nChiquita\nChristal\nClaudette\nCornelia\nDeirdre\nDonnie\nDorothea\nFaith\nFaye\nFrankie\nGenevieve\nGeri\nGretta\nIngrid\nJami\nJerry\nJody\nJohn\nKasey\nKayla\nKeely\nKeshia\nKimberlee\nKristal\nKrystal\nLaquita\nLaronda\nLasonja\nLatrice\nLeanna\nLeila\nLela\nLeticia\nLorri\nLouise\nLula\nMellissa\nMesha\nNadine\nOlivia\nPenelope\nRobbin\nRomona\nRosie\nSallie\nSebrena\nSelina\nShanda\nSharlene\nSheree\nSherron\nShiela\nShona\nSonda\nStephani\nSubrina\nTameka\nTasha\nTommie\nTrisha\nJennifer\nAngela\nKimberly\nTammy\nMary\nAmy\nLisa\nStephanie\nMelissa\nPamela\nTracy\nCynthia\nMichelle\nTina\nKaren\nSharon\nWendy\nShannon\nTeresa\nSusan\nDonna\nElizabeth\nTonya\nDana\nPatricia\nSandra\nRhonda\nChristy\nRebecca\nAmanda\nLaura\nSherry\nStacy\nMonica\nKelly\nJulie\nHeather\nSonya\nApril\nFelicia\nStacey\nDeborah\nRegina\nTara\nBarbara\nLori\nAndrea\nCheryl\nLinda\nTracey\nWanda\nYolanda\nDebra\nPaula\nBeverly\nLeslie\nMelanie\nBrenda\nCarolyn\nKathy\nRobin\nAshley\nDawn\nCindy\nRachel\nConnie\nKristi\nChristina\nCarla\nLeigh\nCassandra\nJacqueline\nMelinda\nTanya\nErica\nNancy\nTerri\nCarol\nTiffany\nMargaret\nSabrina\nAlicia\nKatherine\nCatherine\nAnita\nTraci\nGinger\nKatrina\nKristie\nValerie\nShelia\nVeronica\nJanice\nAngelia\nKristy\nLatonya\nVanessa\nJanet\nBelinda\nTracie\nNicole\nSheila\nKim\nCrystal\nHolly\nMarsha\nTammie\nCharlotte\nJessica\nAnna\nGina\nKelli\nChristie\nAllison\nCarrie\nCathy\nKathryn\nStacie\nVictoria\nSarah\nDeanna\nMichele\nChristine\nTheresa\nDenise\nGloria\nMartha\nMisty\nShirley\nTabitha\nBetty\nVirginia\nEmily\nVickie\nDorothy\nDaphne\nDiane\nJamie\nMarilyn\nPenny\nSuzanne\nAnn\nGwendolyn\nSherri\nTamara\nKelley\nToni\nJoyce\nSamantha\nTonia\nAlice\nAngie\nDebbie\nPatrice\nAnnie\nBridget\nJill\nLeah\nJoy\nLaurie\nLoretta\nAngel\nSara\nNatasha\nRita\nTrina\nErika\nAudrey\nBonnie\nCarmen\nChrista\nJacquelyn\nJudy\nKerry\nMeredith\nVicki\nCandice\nDiana\nFrances\nJenny\nSonja\nAlison\nBeth\nCandace\nChristi\nJackie\nJulia\nShelly\nGlenda\nMaria\nShelley\nCandy\nNatalie\nAnnette\nBecky\nJuanita\nLawanda\nStaci\nKimberley\nRamona\nTricia\nKathleen\nKristina\nPeggy\nSheri\nSylvia\nAudra\nEvelyn\nHelen\nKrista\nLee\nMarcia\nMelody\nRenee\nVivian\nLora\nMiranda\nSonia\nBridgett\nFelecia\nKellie\nKendra\nAimee\nAnne\nBobbie\nCharlene\nJana\nJane\nPhyllis\nSandy\nDarlene\nDianne\nHope\nJoanna\nMarie\nSherrie\nYvonne\nAlisha\nBrandy\nMarcie\nRobyn\nAlisa\nBrandi\nDena\nKarla\nKerri\nKristin\nMyra\nNikki\nPriscilla\nAdrienne\nCaroline\nKara\nKristen\nLana\nLesley\nMona\nSheryl\nTonja\nWillie\nAnissa\nDoris\nElaine\nIris\nJoann\nLynn\nSally\nShana\nTeri\nBridgette\nCatrina\nHeidi\nLara\nLashonda\nLorie\nSelena\nYvette\nChandra\nDeana\nDionne\nJeannie\nMelisa\nRonda\nTabatha\nTamela\nTerry\nUrsula\nValarie\nVicky\nWendi\nConstance\nDeidra\nDianna\nEllen\nErin\nGreta\nJeanette\nJo\nMonique\nPatsy\nRobbie\nRosie\nSophia\nTamala\nTami\nTammi\nValencia\nValeria\nEva\nJeanne\nJennie\nKatie\nLadonna\nLatanya\nLatonia\nMarla\nPaige\nRachael\nRaquel\nRose\nRuby\nShawn\nAllyson\nAmber\nAmelia\nChanda\nDanielle\nDeirdre\nDemetria\nEricka\nJanie\nJeri\nJohnnie\nJudith\nLasonya\nLydia\nMarcy\nMolly\nNina\nRuth\nSharron\nShelby\nTangela\nAretha\nBethany\nDanita\nIngrid\nJames\nJerri\nJoan\nLillie\nMarion\nMia\nNichole\nPatti\nPatty\nPaulette\nRebekah\nSelina\nShonda\nTerra\nTisha\nVera\nBillie\nCandi\nClarissa\nDeidre\nEdna\nEleanor\nGeraldine\nJeanie\nKeisha\nLauren\nLillian\nMargie\nMichael\nNorma\nSerena\nShanda\nSondra\nStefanie\nSusanne\nTamatha\nTasha\nWhitney\nBernadette\nDanna\nEthel\nFrancine\nJanna\nJean\nJodi\nJody\nKecia\nKrystal\nLatasha\nLucy\nMalinda\nMarian\nMarjorie\nMattie\nMechelle\nRosa\nShellie\nSherita\nTerrie\nZandra\nAngelique\nBenita\nCassie\nCelia\nCharity\nCherry\nCourtney\nCristy\nDonya\nElla\nFrankie\nGail\nIda\nJeanna\nJoanne\nKandy\nLatricia\nLea\nLeanne\nMamie\nMarci\nMildred\nRena\nRobbin\nRochelle\nSaundra\nShea\nStacia\nTamika\nTawana\nTessa\nTrisha\nTyra\nWindy\nAdrian\nAntonia\nBuffy\nCara\nCasandra\nChelsea\nChrystal\nColleen\nCora\nDara\nDelores\nEdith\nFreda\nGena\nHolli\nJan\nJessie\nJodie\nKari\nKeri\nLatisha\nLawana\nLetitia\nLucinda\nLynda\nMelony\nMiriam\nMisti\nMitzi\nPamala\nPortia\nRenita\nRosalind\nSandi\nTameka\nTera\nTeressa\nTiffani\nValorie\nAdrianne\nAlfreda\nAlissa\nAntoinette\nAshleigh\nBertha\nBonita\nCarole\nChristopher\nClara\nConsuelo\nDaisy\nDelisa\nDina\nEmma\nEssie\nEugenia\nGladys\nJada\nJeanetta\nJerrie\nJerry\nJosephine\nKay\nKesha\nKimberely\nLashawn\nLaurel\nLena\nLorri\nLouise\nMarlo\nMindy\nMinnie\nMuriel\nNaomi\nPenelope\nPolly\nRobert\nRoberta\nRosemary\nShanna\nShawna\nSteven\nTarsha\nVenus\nVonda\nWilliam\nAlanna\nAlexandra\nAlexis\nAngelina\nAngeline\nAnjanette\nAudrea\nCallie\nCecilia\nCheri\nCherie\nClaudia\nDarcy\nDee\nDella\nDeloris\nEtta\nGayla\nGeorgia\nGidget\nIrene\nJohanna\nJohn\nJoycelyn\nKasey\nKathrine\nKerrie\nKimberlee\nLashunda\nLatoya\nLatrice\nLeann\nLeanna\nLois\nLona\nLorna\nLorrie\nLucretia\nLynette\nMachelle\nMandy\nMarlene\nMavis\nPennie\nRolanda\nScarlett\nShari\nShauna\nTania\nTawanna\nTeena\nTimothy\nTommie\nTrena\nTwanda\nVelma\nWilma\nYulonda\nAdria\nAdriane\nAlma\nAndra\nAntionette\nAshlee\nAyanna\nBeatrice\nBernice\nBessie\nBetsy\nBrooke\nCammie\nCarie\nCathryn\nChantel\nClaire\nConsuela\nCoretta\nCorliss\nCornelia\nCristina\nDeanne\nDenita\nDevina\nDiann\nDinah\nEunice\nFannie\nFaye\nFelisa\nGeorge\nGrace\nGretchen\nHattie\nHayley\nHollie\nIndia\nIvy\nJanine\nJanis\nJenifer\nJocelyn\nJohnna\nJonna\nJosette\nJuliet\nJuliette\nJune\nKatharine\nKayla\nKenya\nKristal\nLarhonda\nLatrina\nLaverne\nLeisa\nLenore\nLeslee\nLetha\nLola\nLoretha\nMalissa\nMarcella\nMargo\nMarnie\nMegan\nMelonie\nMerry\nMichell\nMillicent\nOlivia\nPam\nPamelia\nPatrica\nPetrina\nPhaedra\nRacheal\nRachelle\nRosetta\nRoslyn\nRoxanne\nShanta\nShantel\nShara\nSharonda\nShayla\nShonna\nStephenie\nSunny\nSusie\nTamera\nTangi\nTangie\nTawanda\nThelma\nTonda\nTresa\nTrista\nTwana\nTwila\nVenessa\nYolonda\nZaneta\nJennifer\nAngela\nKimberly\nStephanie\nAmy\nTammy\nMary\nMelissa\nLisa\nTracy\nTonya\nCynthia\nMichelle\nShannon\nPamela\nTina\nSharon\nWendy\nJulie\nApril\nElizabeth\nTeresa\nRebecca\nChristy\nKaren\nSusan\nLaura\nDonna\nTara\nPatricia\nStacy\nHeather\nSandra\nAmanda\nMonica\nDana\nRhonda\nAndrea\nMelanie\nSherry\nLinda\nKelly\nLori\nSonya\nStacey\nKatina\nTanya\nErica\nFelicia\nLeslie\nRegina\nYolanda\nBarbara\nPaula\nKristi\nKatrina\nNicole\nRachel\nBrenda\nCassandra\nChristina\nDawn\nAshley\nKatherine\nLatonya\nRobin\nWanda\nAlicia\nCarla\nTerri\nDeborah\nMisty\nDebra\nTiffany\nCrystal\nTracey\nMelinda\nSabrina\nBeverly\nLeigh\nCarolyn\nCatherine\nChristie\nCheryl\nCindy\nDenise\nKathy\nCharlotte\nNancy\nConnie\nGinger\nJacqueline\nJanice\nKristie\nShelia\nCarol\nSheila\nValerie\nChristine\nAllison\nBelinda\nBetty\nBrandi\nCarrie\nVeronica\nAngel\nSarah\nTraci\nMichele\nBrandy\nKristy\nTheresa\nEmily\nGina\nMargaret\nVanessa\nVirginia\nAnna\nCatina\nJanet\nKelli\nSamantha\nVictoria\nJulia\nDeanna\nJessica\nNatasha\nJamie\nMarsha\nAngelia\nAnita\nSonja\nVickie\nLaurie\nTonia\nShelley\nTracie\nKim\nCathy\nShirley\nHolly\nDebbie\nKathryn\nCandace\nGloria\nTammie\nGwendolyn\nKelley\nBridget\nErika\nMartha\nNikki\nAngie\nJudy\nPenny\nRita\nChristi\nKellie\nMaria\nSherri\nAnnie\nJenny\nAlice\nDaphne\nLeah\nStacie\nSuzanne\nAdrienne\nBonnie\nJackie\nVicki\nAnn\nJana\nKarla\nKristina\nLoretta\nShelly\nCharlene\nJill\nJoyce\nPaige\nKerri\nSandy\nTamara\nChandra\nJoy\nKristen\nMarilyn\nMeredith\nTrina\nDiane\nDorothy\nFelecia\nHelen\nMelody\nAudrey\nCarmen\nDiana\nEricka\nKeisha\nKendra\nSara\nTeri\nDanielle\nFrances\nToni\nKristin\nLawanda\nMarie\nPatrice\nRobyn\nSylvia\nEvelyn\nKathleen\nTabatha\nWendi\nAmber\nDarlene\nJane\nLatasha\nMonique\nRonda\nYvonne\nAnnette\nAudra\nBecky\nBobbie\nBridgett\nHeidi\nJoanna\nPeggy\nRenee\nShelby\nStaci\nTabitha\nAimee\nBeth\nCatrina\nGlenda\nLadonna\nMona\nShawn\nWillie\nAlisa\nCandy\nDoris\nJennie\nKimberley\nKrystal\nNatalie\nRamona\nSherrie\nShonda\nSonia\nTerra\nAlison\nAnissa\nAnne\nCandice\nChiquita\nDeana\nDemetria\nJeanette\nJeannie\nKatie\nKeri\nLana\nPriscilla\nRochelle\nTamika\nTonja\nValencia\nVicky\nBethany\nChrista\nDena\nDionne\nEllen\nJan\nKenya\nLatonia\nMarcia\nNichole\nNina\nPhyllis\nAmelia\nBridgette\nEmma\nJanie\nJo\nJodi\nJuanita\nKara\nKerry\nLatanya\nLillian\nLora\nMyra\nRachael\nRuby\nSally\nSheryl\nSondra\nTawana\nTerry\nValeria\nAdrian\nAretha\nBenita\nCasandra\nConstance\nErin\nLena\nMarjorie\nRebekah\nShana\nShawna\nSheri\nSophia\nUrsula\nVivian\nCheri\nContina\nCourtney\nDeidra\nJoann\nLashonda\nLasonya\nLatoya\nLee\nLorie\nLydia\nLynn\nMarcie\nMarcy\nMelisa\nRose\nTasha\nTricia\nAlisha\nCasey\nDianna\nEdith\nJada\nJerri\nKrista\nKristine\nLara\nLesley\nMarla\nMolly\nSelena\nShanda\nSharron\nStefanie\nTameka\nTami\nWindy\nAntoinette\nBillie\nCaroline\nDanita\nDina\nJessie\nJoan\nJody\nLashawn\nLauren\nLillie\nMiranda\nMisti\nRobbie\nShanna\nShellie\nTamela\nTera\nValarie\nBessie\nCharity\nDianne\nEdna\nEugenia\nGail\nGeorgia\nIris\nJeanne\nJenifer\nJudith\nMalinda\nMandy\nNikita\nPatti\nRenita\nSheree\nSusie\nAlecia\nAnglia\nAyanna\nCecilia\nCeleste\nClara\nCristy\nDeirdre\nEva\nFreda\nGena\nIngrid\nJeanie\nJimmie\nLatisha\nLatricia\nLucretia\nLynda\nMaggie\nMia\nMildred\nNorma\nRosalind\nSerena\nTawanda\nThelma\nBernice\nBetsy\nCandi\nCelestine\nChristal\nConsuelo\nCoretta\nDeidre\nFrankie\nGeneva\nHolli\nJeri\nKesha\nKisha\nLola\nLorrie\nLucy\nMelonie\nMindy\nPatsy\nPaulette\nPolly\nRena\nRosemary\nSelina\nStarla\nTammi\nTerrie\nTomeka\nTrisha\nYvette\nAlana\nAllyson\nAmie\nAndria\nBobbi\nBonita\nCallie\nChanda\nColleen\nCotina\nDedra\nDella\nElaine\nFelita\nGinny\nGretchen\nHattie\nHope\nJodie\nKecia\nKerrie\nLois\nLorraine\nMargie\nMarion\nMattie\nMechelle\nMichael\nMichell\nMitzi\nNiki\nPatty\nRaquel\nRosie\nRuth\nSandi\nTania\nTijuana\nTisha\nVonda\nAlycia\nAndra\nAngelica\nAntionette\nBeatrice\nBertha\nBrooke\nCandie\nCassie\nCelena\nCharles\nChasity\nCherry\nChristopher\nClaudia\nDarla\nDeonna\nEleanor\nErnestine\nEthel\nFaye\nGrace\nHolley\nHollie\nJacquelyn\nJammie\nJoycelyn\nKatrena\nLakecia\nLakisha\nLashanda\nLashunda\nLatrina\nLatunya\nLea\nLetitia\nMamie\nMarianne\nMegan\nOlivia\nPatrica\nPortia\nRachelle\nRobert\nRosalyn\nShasta\nShaunda\nSherita\nTangela\nTangie\nTanisha\nTwanda\nTyra\nVerna\nAdrianne\nAlfreda\nAlthea\nAlyson\nAngelina\nAngelique\nAngella\nAntonia\nAutumn\nBrandee\nCalandra\nCara\nCarey\nCarole\nCharla\nCharmin\nChastity\nChrystal\nCindi\nClarissa\nCrissy\nDaisy\nDavid\nDayna\nDeena\nDelicia\nDelilah\nDenice\nDevona\nDora\nElisa\nEunice\nFlorence\nGayle\nGreta\nGwen\nHellen\nInga\nIvy\nJaime\nJeana\nJeanine\nJohnnie\nJosephine\nJulianne\nKandy\nKasey\nKate\nKathrine\nKeshia\nKimbley\nLajuana\nLakeisha\nLarissa\nLashun\nLatosha\nLatrice\nLaurel\nLavonda\nLolita\nLucinda\nLynette\nMalissa\nMelodie\nMinnie\nMiriam\nNatarsha\nNora\nOctavia\nPam\nRolanda\nRonita\nRosa\nSallie\nSaundra\nScarlet\nShanta\nShantel\nShari\nSharonda\nShawanda\nStella\nStephaine\nStephenie\nSue\nSusanne\nTamala\nTamatha\nTanja\nTawanna\nTeressa\nTessie\nTiffaney\nTrista\nTwana\nVelma\nVera\nWhitney\nYulanda\nZandra\nJennifer\nAngela\nKimberly\nAmy\nStephanie\nMary\nMelissa\nTammy\nLisa\nTonya\nTracy\nMichelle\nApril\nHeather\nAmanda\nCynthia\nChristy\nPamela\nWendy\nRebecca\nTina\nElizabeth\nShannon\nJulie\nSharon\nSusan\nMelanie\nDana\nTeresa\nDonna\nKaren\nStacey\nLaura\nPatricia\nStacy\nAndrea\nKelly\nLori\nMisty\nRhonda\nSandra\nSherry\nSonya\nTara\nRegina\nMonica\nLinda\nMelinda\nRobin\nFelicia\nTanya\nErica\nChristina\nNicole\nTiffany\nBrandy\nLeslie\nCrystal\nKristi\nAshley\nBarbara\nCarla\nRachel\nPaula\nBrandi\nAlicia\nKatrina\nKatina\nLatonya\nCindy\nKristie\nTerri\nValerie\nYolanda\nDawn\nCarrie\nTracey\nVeronica\nDenise\nKristy\nMargaret\nCassandra\nHolly\nKatherine\nJacqueline\nSabrina\nCheryl\nWanda\nChristie\nBeverly\nDebra\nJessica\nSarah\nBrenda\nDeborah\nGinger\nAnna\nLeigh\nCarol\nTamara\nCatherine\nEmily\nJanet\nBelinda\nCarolyn\nAngelia\nTheresa\nConnie\nTraci\nAnita\nVictoria\nAllison\nBridget\nJamie\nSheila\nShelia\nJanice\nChristine\nKathy\nStacie\nTracie\nKristen\nCharlotte\nMartha\nKathryn\nSonja\nTammie\nJenny\nShelley\nVirginia\nGwendolyn\nGina\nMarsha\nNancy\nSherri\nJackie\nCathy\nJill\nJulia\nMichele\nSuzanne\nVanessa\nMeredith\nVickie\nAngel\nBetty\nShirley\nCatina\nCandace\nDeanna\nDorothy\nJoyce\nKellie\nMarilyn\nAmber\nAnn\nAngie\nDaphne\nDebbie\nGloria\nNatasha\nSamantha\nShelly\nStaci\nAlison\nCandice\nJana\nLaurie\nPeggy\nSandy\nChristi\nEvelyn\nJoanna\nBridgett\nCandy\nKelli\nKim\nLeah\nSonia\nAlice\nChrista\nDanielle\nLatasha\nPenny\nSelena\nBridgette\nJoy\nJudy\nKeisha\nLashonda\nLatanya\nMarcia\nMaria\nBobbie\nCarmen\nLee\nTamika\nTrina\nVicki\nAnnette\nAnnie\nBonnie\nHelen\nKristin\nNatalie\nTabatha\nAimee\nChandra\nEricka\nErika\nJo\nKara\nKendra\nKerri\nKristina\nLoretta\nTonia\nAudrey\nDiane\nKelley\nKrystal\nMelody\nToni\nCharity\nDiana\nLawanda\nRita\nSara\nTasha\nBeth\nRobyn\nSherrie\nSylvia\nChastity\nClaudia\nDarlene\nJuanita\nKarla\nKenya\nNikki\nPhyllis\nStefanie\nAdrienne\nBethany\nBillie\nDena\nGlenda\nMonique\nTabitha\nTameka\nTomeka\nCatrina\nEllen\nJeannie\nLatonia\nPatrice\nPriscilla\nRenee\nAlisha\nAnne\nErin\nFelecia\nMyra\nPaige\nRamona\nCharlene\nChasity\nDianna\nHeidi\nJane\nJennie\nJodi\nKrista\nLynn\nMarie\nMarla\nMattie\nMiranda\nRuby\nShonda\nTerrie\nAmelia\nCaroline\nFrances\nKimberley\nLadonna\nLatisha\nMisti\nNichole\nRachael\nRobbie\nRosie\nTawanda\nWillie\nYvonne\nBrandie\nCheri\nElaine\nEmma\nHope\nJudith\nKathleen\nKesha\nLorie\nMelisa\nRuth\nSelina\nShanna\nSharron\nTawana\nTerra\nTonja\nValeria\nWendi\nBecky\nCasey\nDemetrice\nJerri\nJoann\nLatoya\nLesley\nMolly\nRose\nShelby\nTami\nTangela\nTerry\nValarie\nVivian\nAdrian\nAudra\nCassie\nChiquita\nDeidre\nDianne\nJeanie\nJenifer\nKristal\nLasonya\nMalinda\nRochelle\nRonda\nSheri\nTricia\nVicky\nAlisa\nBenita\nBertha\nCasandra\nCeleste\nConstance\nContessa\nGeorgia\nJanie\nLakeisha\nLora\nLorrie\nMelonie\nShawn\nSheryl\nSophia\nTanisha\nTera\nTeri\nAntoinette\nCherie\nDeana\nDemetria\nDionne\nDoris\nEdith\nEdna\nEthel\nEugenia\nGreta\nHattie\nJan\nJody\nKerry\nLea\nLillie\nLois\nLucy\nLydia\nNina\nPatsy\nPatti\nPatty\nRebekah\nRosa\nShanda\nTawanna\nVera\nWhitney\nAlana\nCallie\nCarole\nCecelia\nChanda\nDina\nEva\nKari\nKay\nLakesha\nLatrice\nLaurel\nLauren\nLetitia\nMalissa\nRobert\nShawna\nSondra\nTamiko\nTomekia\nAnissa\nAretha\nBernadette\nCara\nCecilia\nCourtney\nCristy\nDeena\nDemetra\nFelica\nGena\nIvy\nJacquelyn\nJames\nJean\nJeanette\nKeri\nLakisha\nLana\nLashunda\nLatarsha\nLatosha\nLenora\nMandy\nMargie\nMarion\nMitzi\nNaomi\nOlivia\nShana\nSherita\nStarla\nTamela\nTrudy\nAlfreda\nAllyson\nAndria\nAngelica\nBrooke\nCarey\nChrystal\nClara\nDanita\nDavid\nGladys\nHazel\nHilary\nIngrid\nIris\nJeanna\nJessie\nJohanna\nKatie\nKendall\nKisha\nLakeshia\nLashawn\nLeann\nLeanne\nLolita\nLouise\nLucretia\nMarcie\nMarian\nMichael\nMichell\nMindy\nNikita\nRachelle\nRosemary\nRoxanne\nSheree\nShondra\nSusie\nTamekia\nTeressa\nTessa\nTisha\nTracee\nVonda\nVonetta\nAlecia\nAlesia\nAlethea\nAlma\nAlyssa\nAngelique\nBeatrice\nBernice\nBessie\nBetsy\nBonita\nCandi\nCarmela\nCharla\nCharmaine\nClaudette\nConsuela\nCoretta\nCornelia\nDanyell\nDedra\nDee\nDeidra\nDeirdre\nEleanor\nEsther\nFelisha\nFlora\nFrankie\nFreda\nHolley\nHollie\nIda\nJanna\nJohnnie\nLamonica\nLaquinta\nLara\nLashanda\nLashondra\nLatonja\nLatricia\nLynda\nMarcella\nMarci\nMarjorie\nMildred\nMillicent\nMiriam\nNora\nNorma\nPaulette\nPetrina\nPortia\nReba\nRenita\nRoberta\nRolanda\nRosalyn\nSandi\nSerena\nShellie\nStephine\nSuzette\nTamatha\nTammi\nTania\nTarsha\nTwila\nVelma\nWindy\nAlesha\nAlyson\nAmie\nAmmie\nAnglea\nBernita\nBuffy\nCameron\nCamille\nCandie\nCaryn\nCharissa\nChristal\nChristopher\nCicely\nConsuelo\nCora\nCorey\nCotina\nCristi\nDelilah\nDelois\nDeloris\nDesiree\nElisa\nElisha\nElla\nEula\nFelisa\nFlorence\nGeneva\nGinny\nGretchen\nGwen\nHaley\nHannah\nHenrietta\nJeanne\nJeri\nJohnna\nJuliet\nKandi\nKarin\nKasey\nKathrine\nKayla\nKenyetta\nKeshia\nKimberlyn\nLarhonda\nLarissa\nLashawnda\nLashun\nLasonja\nLatashia\nLavonda\nLillian\nLizzie\nLorraine\nLorri\nLynne\nMamie\nMarquetta\nMona\nNanette\nNeely\nNiki\nPam\nPatrina\nRaquel\nRena\nRenea\nRosalind\nRosetta\nSalina\nShalanda\nShari\nShasta\nShawanda\nShea\nShelli\nSue\nTamica\nTamra\nTomika\nTonie\nTowanda\nTyra\nUrsula\nValencia\nVenessa\nYvette\nJennifer\nAngela\nKimberly\nAmy\nStephanie\nMary\nAmanda\nHeather\nChristy\nMelissa\nApril\nTonya\nTammy\nMichelle\nLisa\nTracy\nPamela\nCynthia\nWendy\nTina\nMisty\nShannon\nKaren\nRebecca\nSusan\nElizabeth\nLeslie\nStacey\nLaura\nTeresa\nDana\nMonica\nDonna\nJulie\nPatricia\nSharon\nChristie\nKelly\nStacy\nTara\nAshley\nChristina\nAndrea\nMelanie\nLori\nTiffany\nFelicia\nSherry\nSonya\nKristi\nBrandy\nJessica\nTanya\nRachel\nYolanda\nEmily\nRhonda\nBrandi\nSandra\nCrystal\nRegina\nLinda\nRobin\nAlicia\nTamara\nPaula\nErica\nBarbara\nKristie\nMelinda\nCassandra\nLeigh\nCheryl\nCatherine\nKatrina\nLatonya\nMargaret\nTracey\nHolly\nJacqueline\nAnna\nBeverly\nCarrie\nDeborah\nSarah\nValerie\nNicole\nShelley\nVeronica\nJoy\nBrenda\nCarla\nAllison\nKatherine\nAnita\nCindy\nKristy\nChristine\nCarolyn\nDebra\nSabrina\nWanda\nDawn\nDenise\nNatalie\nNatasha\nJanet\nVanessa\nCourtney\nGinger\nKathryn\nNancy\nTamika\nConnie\nKelli\nJamie\nKristen\nVictoria\nCarol\nDeanna\nMiranda\nTraci\nBridget\nCharlotte\nTheresa\nBelinda\nChristi\nKathy\nLeah\nSheila\nTameka\nTracie\nAngelia\nJulia\nStacie\nTonia\nGina\nJanice\nMarsha\nVirginia\nTerri\nSamantha\nBetty\nKelley\nSandy\nShelly\nAngie\nGloria\nKristin\nLatasha\nMartha\nMeredith\nShirley\nKendra\nTammie\nGwendolyn\nJoyce\nKenya\nSherri\nCathy\nDanielle\nJoanna\nKatina\nAlice\nAlison\nJenny\nMichele\nVicki\nCandice\nChastity\nDiana\nDorothy\nJeannie\nJill\nLoretta\nMaria\nCarmen\nRita\nBethany\nLashonda\nBonnie\nChandra\nChrista\nDaphne\nDebbie\nAdrienne\nAmber\nAnn\nBeth\nKellie\nLatoya\nLaurie\nNakia\nPeggy\nSara\nShelia\nSonja\nChasity\nKerri\nLakisha\nLatanya\nLawanda\nTabitha\nToni\nCasey\nCharity\nMarie\nStaci\nAngel\nAnnie\nAudrey\nCandace\nErin\nLesley\nMisti\nVickie\nErika\nEvelyn\nKara\nAretha\nBobbie\nFrances\nHeidi\nJo\nJodi\nKeisha\nMindy\nRachael\nSelena\nShonda\nTrina\nCatrina\nJan\nJuanita\nKrista\nKrystal\nLorie\nMelody\nPenny\nRenee\nSherrie\nAimee\nBridgett\nDoris\nHelen\nJackie\nJudy\nKimberley\nKristina\nTomeka\nDena\nLatisha\nMarcia\nNikki\nRebekah\nSonia\nSylvia\nCandy\nCharlene\nFelecia\nHope\nMarilyn\nShanda\nTasha\nWindy\nAnne\nBecky\nJana\nKerry\nLakeshia\nLauren\nLee\nMonique\nNichole\nRenita\nSheri\nTerra\nVicky\nAlisa\nAudra\nDarlene\nDianna\nGlenda\nIris\nKarla\nKathleen\nLatonia\nNina\nRobyn\nSuzanne\nTabatha\nTerry\nTonja\nAnnette\nBrandie\nBridgette\nDemetria\nEricka\nJacquelyn\nKim\nMitzi\nTricia\nWendi\nAlisha\nChristal\nEllen\nEva\nLakeisha\nLasonya\nMolly\nOlivia\nPatrice\nPriscilla\nShanna\nStefanie\nTeri\nAdrian\nAlecia\nAmelia\nAnitra\nBillie\nClaudia\nDiane\nElla\nHollie\nIvy\nJane\nJerri\nKasey\nLadonna\nLakesha\nLana\nMandy\nMegan\nMelisa\nPhyllis\nSharron\nSheree\nSondra\nTawanda\nUrsula\nValencia\nYvonne\nCasandra\nCheri\nChristian\nCristy\nDeana\nJada\nJanie\nJennie\nJodie\nJohnnie\nKatie\nLatricia\nMalinda\nPatsy\nPatti\nRamona\nRonda\nTania\nTawanna\nTera\nTerrie\nTisha\nCara\nClara\nConstance\nDarla\nDeidra\nDeirdre\nGrace\nJean\nJeanette\nKesha\nLatrice\nLena\nLetitia\nLillian\nLillie\nLora\nLucretia\nLucy\nLydia\nMaranda\nMistie\nNaomi\nPaige\nRose\nShawn\nShelby\nShellie\nSheryl\nTosha\nValeria\nAlfreda\nAmie\nCaroline\nCatina\nClarissa\nDedra\nHolli\nJeri\nKisha\nLaquita\nLara\nLashunda\nLynn\nMarcie\nMargie\nMarla\nMyra\nRuth\nSherita\nSusie\nTamala\nTarsha\nAbigail\nBrooke\nCallie\nCarissa\nCharmaine\nCoretta\nEugenia\nFaith\nFelisha\nIda\nJanna\nJenifer\nJoann\nJody\nKari\nLashawn\nLeann\nLula\nMildred\nNikita\nRobbie\nRochelle\nRolanda\nRuby\nShawna\nTamela\nTami\nTawana\nTemeka\nValarie\nWhitney\nWillie\nAngelina\nAntionette\nBonita\nCeleste\nChanda\nChristopher\nDavid\nDeidre\nDelores\nGail\nGeorgia\nGreta\nIrene\nJeanie\nJeanna\nJeanne\nJimmie\nKeri\nKerrie\nKeshia\nKimberlyn\nLakeesha\nLashanda\nLatosha\nLois\nLucinda\nMia\nNia\nOctavia\nPatty\nRosetta\nScarlet\nSelina\nShalonda\nShana\nShanta\nSharonda\nShawanda\nShunda\nSophia\nTomika\nToya\nTrudy\nVera\nVivian\nYvette\nAlana\nAlma\nAmi\nBenita\nBertha\nCalandra\nCandi\nCecilia\nCherry\nChiquita\nDanyell\nDemetrice\nDesiree\nEdna\nEleanor\nEmma\nFreda\nGabrielle\nGena\nGladys\nGretchen\nHannah\nHolley\nIngrid\nJames\nJanette\nJoan\nJudith\nKenyatta\nKenyetta\nKimberlee\nKira\nKristal\nLashondra\nLatonja\nLeanne\nLenora\nLorraine\nLuciana\nMaggie\nMamie\nMarcella\nMarcy\nMarjorie\nMichael\nMichell\nMona\nNora\nNorma\nRaquel\nRosie\nSally\nSaundra\nShanita\nShanon\nShantell\nStephaine\nStephine\nTamekia\nTammi\nTanisha\nTeressa\nTessa\nThelma\nTijuana\nTomekia\nVenus\nWilma\nAllyson\nAlyson\nAngelique\nAntoinette\nCamille\nCaren\nCarmelita\nCarole\nCherie\nChristel\nChrystal\nColleen\nContina\nCristi\nDeanne\nDelicia\nDelisa\nDelois\nDemetra\nDione\nDionne\nDixie\nEdith\nEunice\nFatima\nFonda\nFrankie\nGeraldine\nHaley\nJammie\nJessie\nJoanne\nJohn\nJoseph\nKandy\nKeesha\nKerra\nLacey\nLakia\nLakisa\nLanita\nLarissa\nLashandra\nLashun\nLatarsha\nLatesha\nLela\nLibby\nLindy\nLorrie\nLynda\nMarian\nMarlo\nMelodie\nMelonie\nMelony\nMillie\nNakita\nNiki\nPatrina\nPrincess\nQuintina\nRacheal\nRandi\nReba\nRoslyn\nShawana\nSherida\nShondra\nSirena\nStacia\nStarla\nStephenie\nTamatha\nTamiko\nTia\nTiffani\nTiffiney\nTonda\nTywanna\nVernita\nYashica\nZandra\nJennifer\nAmy\nKimberly\nAngela\nAmanda\nHeather\nStephanie\nMelissa\nApril\nMary\nChristy\nWendy\nLisa\nElizabeth\nTonya\nMisty\nTammy\nTracy\nMichelle\nRebecca\nPamela\nBrandy\nJulie\nKaren\nShannon\nChristina\nKelly\nTina\nLaura\nRachel\nStacy\nDana\nAshley\nFelicia\nAndrea\nLeslie\nBrandi\nDonna\nSusan\nStacey\nTiffany\nTamika\nChristie\nMelanie\nSharon\nCynthia\nEmily\nTanya\nMonica\nTeresa\nLori\nPatricia\nCarrie\nSherry\nCrystal\nJessica\nTara\nAlicia\nRegina\nHolly\nKatrina\nErica\nNicole\nMelinda\nValerie\nKristi\nRobin\nSarah\nLatonya\nKatherine\nSandra\nYolanda\nRhonda\nSamantha\nCatherine\nLinda\nSonya\nAllison\nBarbara\nCarla\nPaula\nTameka\nCassandra\nCindy\nDawn\nTerri\nKristy\nNatasha\nVeronica\nLeigh\nTracey\nCheryl\nJamie\nTamara\nKristie\nAnna\nDeborah\nJoy\nBrenda\nJacqueline\nWanda\nAnita\nBelinda\nCarolyn\nDebra\nNatalie\nBridget\nGina\nGinger\nLeah\nMandy\nCharlotte\nKelli\nSabrina\nChristine\nConnie\nMiranda\nVanessa\nMartha\nBeverly\nShelley\nDenise\nMargaret\nMarsha\nNancy\nAmber\nKristen\nVirginia\nCarmen\nJanet\nKathryn\nLawanda\nTheresa\nJanice\nLaurie\nSara\nLatoya\nTraci\nChasity\nKenya\nStacie\nCarol\nCourtney\nDanielle\nLatasha\nAdrienne\nDaphne\nKelley\nLakisha\nMaria\nTabitha\nAngel\nCandace\nKathy\nAngelia\nDeanna\nShelly\nSuzanne\nTomeka\nTonia\nAngie\nChristi\nFelecia\nJulia\nKristin\nMichele\nVictoria\nChandra\nMeredith\nShirley\nKeisha\nKerri\nOlivia\nTammie\nAlison\nBridgett\nCasey\nJill\nKellie\nKendra\nLesley\nToni\nCandice\nFrances\nGwendolyn\nMelody\nNakia\nShana\nSheila\nTracie\nAimee\nCathy\nChastity\nTabatha\nBeth\nHelen\nRobyn\nShelia\nAlice\nCharity\nErin\nJoanna\nKarla\nLashonda\nPeggy\nTamiko\nAmelia\nJenny\nSherri\nAnn\nCaroline\nConstance\nDebbie\nDorothy\nGloria\nKrista\nMisti\nBobbie\nCandy\nJoyce\nKatina\nRachael\nAlisha\nBetty\nJackie\nKara\nKerry\nLakesha\nSally\nSandy\nTamekia\nAudrey\nBecky\nBethany\nDiana\nErika\nKim\nLatanya\nMarcia\nNikki\nTomika\nVickie\nBridgette\nHollie\nJana\nLatosha\nMolly\nNina\nAnnie\nCarey\nKimberley\nKristina\nLana\nLatonia\nMarie\nAnitra\nBonnie\nEllen\nHope\nLatisha\nPenny\nSonja\nSylvia\nTawanda\nTricia\nDeana\nEva\nHeidi\nKatie\nLadonna\nLakeshia\nLashanda\nLea\nPhyllis\nRita\nShanda\nShonda\nStaci\nStarla\nTasha\nVicki\nCristy\nJanie\nJody\nJudith\nKeri\nLaquita\nLoretta\nSelena\nTrina\nAnne\nAnnette\nBrandie\nCheri\nChrista\nDemetria\nDena\nEvelyn\nGlenda\nJaime\nJuanita\nKari\nKathleen\nKrystal\nLorie\nMalinda\nMarla\nMindy\nMonique\nMyra\nNichole\nNorma\nRenee\nShanna\nShawn\nSheree\nSonia\nSummer\nTangela\nTeri\nTrisha\nValarie\nAudra\nBillie\nBonita\nBrooke\nCallie\nDiane\nGena\nGretchen\nJames\nJeannie\nJodi\nJodie\nLakeisha\nLashawn\nLatricia\nLauren\nMiriam\nMitzi\nTawana\nWhitney\nAbby\nAutumn\nChanda\nCharlene\nChiquita\nElaine\nJacquelyn\nJason\nJudy\nKenyatta\nNikita\nRebekah\nRonda\nShawanda\nTisha\nTori\nValeria\nWendi\nWindy\nYvette\nYvonne\nAlisa\nBetsy\nCassie\nChristopher\nDianna\nDixie\nEugenia\nJoann\nKisha\nLayla\nLee\nLindsay\nLuciana\nLydia\nMarilyn\nMegan\nNakisha\nPriscilla\nRamona\nRobbie\nRose\nRosemary\nTera\nTurkessa\nVicky\nAdrian\nAlana\nChris\nChristian\nChrystal\nClarissa\nEunice\nJan\nJane\nJeanette\nJeanie\nJenifer\nJerri\nKesha\nKristal\nLasonya\nLatarsha\nLatrice\nLynn\nNora\nPaige\nPatrice\nRosa\nSheryl\nTania\nTanika\nTanisha\nTosha\nAlethea\nCecilia\nCeleste\nDarla\nDeidre\nDella\nEbony\nGreta\nHaley\nHolley\nJeanne\nJo\nLakesia\nLara\nLeanne\nLindsey\nLora\nLucinda\nMaranda\nMelisa\nRacheal\nRoberta\nRochelle\nRuby\nRuth\nSerena\nSharron\nShawna\nSheri\nSherrie\nSusie\nTamela\nTia\nWillie\nAdria\nAlfreda\nAntoinette\nBenita\nBernice\nCandida\nCarie\nCasandra\nCatrina\nClara\nContessa\nCristie\nDarlene\nDedra\nDemetrius\nDoris\nEdith\nEricka\nFrankie\nFreda\nGabrielle\nGayla\nGeorgia\nJami\nJanna\nJocelyn\nJohnna\nJoycelyn\nKasey\nKayla\nKecia\nKenyetta\nKeshia\nLakeysha\nLarhonda\nLashunda\nLucretia\nMia\nPatty\nRenita\nRosalind\nShameka\nShamika\nShanita\nShellie\nSherita\nTamieka\nTaryn\nTawanna\nTeressa\nTerra\nTiffani\nTonja\nValencia\nVera\nVivian\nAlecia\nAlyson\nAmie\nAngelique\nAretha\nBertha\nBuffy\nCalandra\nCari\nCherie\nChristal\nCora\nCristi\nDeedra\nDusty\nEmma\nIngrid\nIvy\nJacquline\nJada\nJeanna\nJennie\nJohn\nJosie\nKerrie\nLacey\nLasonja\nLenora\nLillie\nMandi\nMarcella\nMichael\nMichell\nMildred\nOctavia\nPatti\nRosie\nSelina\nShanta\nShelby\nSophia\nStefanie\nSuzette\nTakisha\nTakiyah\nTammi\nTemeka\nTomekia\nTommie\nTowanda\nUrsula\nYashica\nAbigail\nAllyson\nAndria\nAnika\nAntonia\nBeatrice\nBernadette\nBessie\nBrittney\nCameron\nCaryn\nCatina\nChristen\nColleen\nConsuelo\nCorey\nCornelia\nDanita\nDeirdre\nDelana\nDeloris\nDemetra\nDemetrice\nDionne\nElena\nElisabeth\nElissa\nFaith\nFelica\nFrancine\nGeneva\nGeri\nGrace\nGwen\nHolli\nIris\nJacinta\nJean\nJoanie\nJohnnie\nKacey\nKatharine\nKira\nKristine\nLaconya\nLakeitha\nLakenya\nLashundra\nLasonia\nLatashia\nLavonda\nLeona\nLetitia\nLois\nLorrie\nLucy\nMargie\nMarjorie\nMeagan\nMechelle\nMerry\nNakita\nPepper\nPolly\nRenae\nRikki\nRosalyn\nRoslyn\nRoxanne\nSadie\nSandi\nSebrina\nShandra\nSharonda\nShasta\nSondra\nSusanna\nTameika\nTarnisha\nTarsha\nTerrie\nTerry\nTimeka\nTrudy\nYulanda\nJennifer\nAmy\nKimberly\nAmanda\nAngela\nHeather\nStephanie\nMelissa\nMary\nShannon\nJamie\nApril\nMisty\nChristy\nElizabeth\nLisa\nWendy\nChristina\nJessica\nLaura\nTonya\nBrandy\nAshley\nRebecca\nTammy\nJulie\nKelly\nTracy\nMichelle\nAndrea\nBrandi\nCynthia\nRachel\nCrystal\nKaren\nLeslie\nTiffany\nLori\nEmily\nStacy\nTanya\nSusan\nTina\nPamela\nMelanie\nDana\nLatonya\nStacey\nJaime\nMonica\nFelicia\nSarah\nKristy\nCarrie\nErica\nSharon\nTeresa\nHolly\nChristie\nAllison\nDonna\nSherry\nSandra\nRhonda\nPatricia\nTamika\nValerie\nNicole\nLinda\nTara\nAmber\nCarla\nKatherine\nGinger\nKatrina\nSonya\nKristi\nNatalie\nRobin\nKristie\nCindy\nLatasha\nMandy\nSamantha\nCatherine\nCassandra\nMelinda\nNatasha\nRegina\nAlicia\nTamara\nJacqueline\nAnna\nBrenda\nCourtney\nLatoya\nKelli\nLakisha\nLeigh\nPaula\nBarbara\nTracey\nCarolyn\nVictoria\nLeah\nMargaret\nSabrina\nTerri\nVeronica\nJenny\nSara\nDanielle\nChasity\nNancy\nCheryl\nDenise\nJoy\nYolanda\nChristine\nDeborah\nGina\nMartha\nErin\nFrances\nShana\nShelley\nAngel\nAngie\nCandace\nTracie\nAnita\nKellie\nMelody\nAngelia\nBelinda\nBridget\nDawn\nKathryn\nMeredith\nBeverly\nJanet\nLakesha\nTameka\nAdrienne\nLaquita\nMichele\nTraci\nDebra\nJanice\nTabitha\nToni\nVirginia\nWanda\nAlison\nKendra\nLakeisha\nCharlotte\nConnie\nLaurie\nTheresa\nDeanna\nJulia\nKelley\nLesley\nMaria\nMiranda\nVanessa\nAlisha\nLawanda\nRachael\nTonia\nBrooke\nGwendolyn\nKerri\nCarmen\nCharity\nJill\nKristin\nShelia\nStacie\nKathy\nSelena\nSheila\nShelly\nLashonda\nLatanya\nLindsey\nMarsha\nSandy\nAnnie\nBrandie\nBridgett\nCandice\nCarol\nDaphne\nHelen\nJoyce\nKeisha\nLauren\nLindsay\nBethany\nChristi\nErika\nJoni\nKristina\nSherri\nStaci\nTomeka\nAudrey\nBobbie\nCaroline\nJana\nJoanna\nKerry\nMarie\nShirley\nDorothy\nHope\nOlivia\nRenee\nTammie\nAnitra\nAnn\nBeth\nBetty\nChastity\nDiana\nFarrah\nFelecia\nJudy\nKenya\nKeri\nLashanda\nNikki\nRobyn\nCasey\nCathy\nKristen\nLatosha\nMarilyn\nMegan\nSally\nSummer\nSylvia\nAnnette\nChandra\nHeidi\nKim\nMisti\nMonique\nSuzanne\nTawanda\nAimee\nBonnie\nCandy\nChiquita\nKathleen\nLatisha\nPenny\nTasha\nAlice\nBecky\nBridgette\nCara\nCharlene\nChrista\nDiane\nGloria\nHollie\nJenifer\nJuanita\nKarla\nKatina\nMolly\nShonda\nSonia\nTabatha\nTamiko\nTomika\nWendi\nBillie\nJami\nKara\nKrystal\nLakeshia\nLara\nMarcia\nSonja\nValarie\nDarlene\nDena\nJane\nJodie\nLoretta\nNakia\nPatrice\nPriscilla\nRosalyn\nSherrie\nTamekia\nTeri\nCatrina\nDianna\nEbony\nJo\nKari\nKasey\nKrista\nLatoria\nLetitia\nLuciana\nShanna\nShawna\nTawana\nVickie\nAmelia\nAntonia\nAudra\nChrystal\nCristy\nDebbie\nDemetria\nEllen\nEvelyn\nGlenda\nJackie\nKandi\nKatie\nKimberley\nLashandra\nLee\nMyra\nRebekah\nSerena\nShameka\nTia\nTomekia\nTosha\nVicki\nAmie\nAnne\nCheri\nConstance\nEva\nHolley\nJeannie\nJoann\nKerrie\nLatonia\nLorie\nMichael\nPaige\nRose\nSheri\nTennille\nTori\nWhitney\nAdrian\nAretha\nAutumn\nBenita\nChanda\nCharmaine\nDeidra\nEricka\nGretchen\nJean\nJodi\nLadonna\nLora\nLydia\nMelisa\nRita\nShanda\nTawanna\nTiffani\nTrina\nValencia\nCarey\nCassie\nCatina\nClara\nClarissa\nClaudia\nDeidre\nElaine\nHolli\nIris\nJennie\nJody\nKatharine\nKenisha\nKimberlee\nLana\nLasonya\nLynn\nMandi\nMindy\nNakisha\nPeggy\nSharron\nShawn\nShelby\nSheree\nSondra\nSunny\nTisha\nValeria\nWindy\nYvonne\nAlana\nAlecia\nAlisa\nAngelina\nAntionette\nAntoinette\nFaith\nGabrielle\nHaley\nHannah\nJacquelyn\nJan\nJosie\nKenyetta\nLakeesha\nLashawn\nLashundra\nLaurel\nLena\nMargie\nMitzi\nNora\nPhyllis\nRenita\nRosalind\nRuby\nRuth\nShamika\nShasta\nShawanda\nSherita\nSue\nTamela\nTanisha\nTemeka\nVivian\nYvette\nAisha\nBernadette\nCarissa\nChaka\nCharles\nChasidy\nCherry\nChristal\nCora\nDeana\nFelica\nGena\nGeneva\nGeorgia\nJada\nJanna\nJerri\nJoan\nJocelyn\nKesha\nKeshia\nLarissa\nLashunda\nLatrice\nLatrina\nMalinda\nNaomi\nNichole\nRacheal\nRamona\nShanika\nShari\nShayla\nSheryl\nStacia\nStefanie\nSusie\nTakisha\nTera\nTerra\nTonja\nTracee\nAdrianne\nAlfreda\nAmi\nAshleigh\nAvis\nAyana\nCeleste\nChantel\nChristopher\nCorrie\nCortney\nDemetrius\nDominique\nDoris\nEdna\nElisabeth\nElla\nEmma\nFelisha\nGail\nGeraldine\nIngrid\nJammie\nJanie\nJeanette\nJoanie\nJudith\nLatara\nLatarsha\nLayla\nLeann\nLela\nLois\nLorrie\nMaggie\nMarisa\nMarjorie\nMildred\nMiriam\nNakita\nNikita\nNina\nRonda\nRosemary\nSalina\nScarlet\nShalonda\nShanon\nShantel\nShauna\nTamesha\nTamica\nTamisha\nTammi\nTamra\nTanesha\nTanika\nTerrie\nTerry\nTessa\nTonisha\nToya\nTricia\nTrisha\nVicky\nAbby\nAdria\nAdriane\nAlexandra\nAllyson\nAlma\nAlyson\nAlyssa\nAndria\nArnetra\nAshlee\nBrigette\nBuffy\nCamille\nCandida\nCary\nCasandra\nCecilia\nCelia\nChristel\nChristian\nColleen\nConsuela\nCoretta\nCorey\nCristina\nDanna\nDara\nDedra\nDenita\nEleanor\nElisha\nEugenia\nJames\nJanette\nKarin\nKarmen\nKarrie\nKayla\nKenyatta\nKristine\nLachandra\nLaquanda\nLashondra\nLatashia\nLatricia\nLea\nLeila\nLesa\nLindy\nLola\nLucy\nMaranda\nMarcy\nMarla\nMelony\nMendy\nMia\nMillicent\nNadia\nPaulette\nPepper\nRaquel\nReba\nRobbie\nRochelle\nRosa\nRosie\nSasha\nShakita\nShandra\nShani\nShanita\nSharonda\nShenita\nShequita\nSuzanna\nTameko\nTerica\nThelma\nTomiko\nTorrie\nTowanda\nTwana\nVera\nWillie\nJennifer\nAmanda\nAmy\nKimberly\nHeather\nAngela\nStephanie\nMelissa\nApril\nJessica\nMary\nJamie\nKelly\nMisty\nChristy\nShannon\nBrandy\nElizabeth\nLisa\nCrystal\nRebecca\nAshley\nMichelle\nLaura\nChristina\nTonya\nAndrea\nRachel\nTiffany\nWendy\nCynthia\nBrandi\nJulie\nKaren\nTammy\nEmily\nSusan\nSarah\nCarrie\nDana\nMonica\nLeslie\nErica\nTracy\nTara\nLori\nStacey\nSabrina\nAmber\nMelanie\nKristy\nFelicia\nSharon\nStacy\nTina\nKatherine\nJaime\nLatasha\nPatricia\nPamela\nLatoya\nAlicia\nHolly\nRegina\nTeresa\nNicole\nLatonya\nRhonda\nValerie\nTanya\nAllison\nMandy\nDonna\nTamika\nAnna\nSherry\nNatasha\nYolanda\nNatalie\nRobin\nKatrina\nChristie\nAngel\nGinger\nCarla\nCatherine\nLeigh\nSandra\nSonya\nTamara\nJacqueline\nTameka\nMargaret\nSamantha\nFarrah\nJill\nKristi\nMiranda\nTabitha\nBarbara\nBrenda\nCourtney\nErin\nLeah\nCassandra\nDenise\nKelley\nVeronica\nDanielle\nLakesha\nNancy\nSara\nKathryn\nKelli\nConnie\nKizzy\nLinda\nLindsay\nAimee\nCarolyn\nJenny\nKristie\nSummer\nMelinda\nShanna\nVirginia\nDawn\nKristina\nLakisha\nLawanda\nMartha\nTerri\nPaula\nCandace\nCandice\nMeredith\nAdrienne\nCindy\nJoy\nBridget\nCarmen\nDeborah\nLauren\nChristine\nJulia\nKathy\nKendra\nSelena\nAlisha\nCharity\nCheryl\nDeanna\nJanet\nTracey\nTraci\nBeverly\nDebra\nVanessa\nChristi\nGina\nLakeisha\nShana\nSheila\nShelly\nAngie\nCharlotte\nKenya\nKeri\nStacie\nToni\nCarol\nMelody\nSherri\nAlison\nAnita\nKellie\nJana\nJodi\nLashonda\nBrooke\nCasey\nGloria\nJanice\nKatie\nLakeshia\nLesley\nMarsha\nTabatha\nWanda\nAngelia\nChasity\nErika\nKristen\nLatisha\nTasha\nBelinda\nFrances\nKeisha\nKerri\nRachael\nAlice\nJackie\nKim\nLatanya\nMaria\nTracie\nVictoria\nAisha\nBethany\nJuanita\nKrystal\nLaurie\nNikki\nShirley\nTawanda\nTheresa\nAnitra\nAnnie\nBeth\nLaquita\nMolly\nRebekah\nShelley\nAnn\nKristin\nLee\nLindsey\nMegan\nMichele\nPeggy\nRita\nValarie\nAmelia\nAmie\nAnne\nBonnie\nCaroline\nCathy\nDaphne\nJaclyn\nJoanna\nKara\nBridgett\nDorothy\nHelen\nJacquelyn\nLatosha\nBridgette\nGwendolyn\nHope\nKarla\nMarilyn\nSonia\nTori\nBetty\nBillie\nBobbie\nChandra\nChastity\nEvelyn\nJami\nJeannie\nKrista\nLashanda\nPenny\nRuth\nShawanda\nTonia\nAudrey\nCharlene\nDiana\nEbony\nHollie\nMisti\nNaomi\nPriscilla\nRenee\nSonja\nTomika\nVickie\nBrandie\nChiquita\nJean\nJoni\nJoyce\nKathleen\nKerry\nKizzie\nLora\nMarie\nSandy\nShanta\nStaci\nVicki\nAdrian\nCassie\nHeidi\nJodie\nLorrie\nMarisa\nRuby\nShameka\nShawna\nShelia\nSheri\nSylvia\nTamekia\nAutumn\nDeidra\nEllen\nEva\nFaith\nGlenda\nHaley\nJanna\nJenifer\nKimberley\nKisha\nLana\nMandi\nMonique\nRobyn\nShanda\nShayla\nTammie\nAlecia\nAnnette\nCarey\nChrista\nConstance\nElisha\nFelecia\nHannah\nHayley\nJanie\nLoretta\nMarcia\nOlivia\nSally\nSuzanne\nTomeka\nValencia\nAllyson\nAudra\nCallie\nChrystal\nIris\nJamila\nJeanette\nJudy\nKatina\nLashunda\nLatarsha\nLatonia\nMarion\nNakia\nSandi\nTakisha\nTamiko\nTania\nTawana\nTawanna\nTerra\nWendi\nBenita\nCara\nChanda\nCherry\nDeana\nDoris\nEdna\nFelisha\nJada\nJoann\nJody\nKayla\nLadonna\nLayla\nLydia\nMaranda\nMindy\nRashida\nRaven\nSelina\nSherita\nTangela\nTemeka\nTennille\nTeri\nVicky\nWhitney\nYvonne\nAlana\nAlisa\nBecky\nBertha\nBriana\nBrittany\nCandy\nChristal\nDebbie\nDemetria\nHolley\nJerri\nKasey\nKesha\nMarla\nMarquita\nMeghan\nMelisa\nNikita\nNora\nPatrice\nShalanda\nShawn\nShemeka\nSheree\nTequila\nTiffani\nTomekia\nTrina\nAshleigh\nAshlie\nBessie\nCatrina\nChristel\nChristopher\nDarlene\nDeandra\nDemetrice\nDemetrius\nDianna\nEricka\nIda\nJennie\nJeri\nJillian\nKatara\nKate\nKawana\nKenisha\nLaquanda\nLara\nLatrisha\nLetitia\nLillian\nMarlena\nPaige\nRamona\nRandi\nRose\nSebrina\nSerena\nShandra\nShauna\nShelby\nSherrie\nShonda\nSusie\nTosha\nTwanna\nAlexandra\nAngelique\nAretha\nBetsy\nBritney\nBrittney\nCamille\nCandi\nCelena\nCeleste\nCori\nCorrie\nDiane\nElaine\nGretchen\nHolli\nJacinta\nJason\nJayme\nJo\nJoanie\nKaci\nKamilah\nKari\nKatrice\nKenyetta\nLakiesha\nLakita\nLatashia\nLatricia\nLeann\nLena\nMaggie\nMarjorie\nMarquetta\nMichael\nMitzi\nMonika\nMyra\nNichole\nNorma\nRosalyn\nRosie\nShalonda\nSharonda\nSomer\nSommer\nTanika\nTanisha\nTonja\nToya\nVera\nAbby\nAlesia\nAngelica\nAubrey\nAyanna\nBianca\nCalandra\nCarmon\nCaron\nCathleen\nCatina\nCecilia\nChaka\nCharmaine\nCherie\nClaire\nClarissa\nClaudia\nCorey\nCristy\nDanita\nDanyell\nDarla\nDayna\nDedra\nDeidre\nEdith\nHilary\nJeana\nJeanie\nJocelyn\nJohnnie\nJoseph\nKecia\nKristal\nLacey\nLakeesha\nLakesia\nLaquisha\nLashanna\nLashundra\nLatrice\nLibby\nLucretia\nLynn\nMarian\nMarissa\nMistie\nMollie\nNadia\nNakesha\nNeely\nOctavia\nPhyllis\nRonda\nRosalind\nRosemary\nRosetta\nRyan\nScarlett\nShelli\nShellie\nSheryl\nSondra\nSophia\nStephenie\nSue\nSuzette\nTamica\nTamisha\nTorrie\nTricia\nTywanda\nYashica\nAlethea\nAllie\nAntoinette\nAntonia\nAshlee\nBambi\nBlakely\nCari\nCarissa\nCarlie\nCarri\nCasandra\nChante\nCharla\nCheri\nCortney\nCristina\nDeangela\nDeirdre\nDemetris\nDena\nDianne\nDora\nElisabeth\nEmma\nEthel\nFaye\nFelica\nFrancesca\nFredericka\nGena\nGeraldine\nGinny\nHillery\nJacquline\nJames\nJammie\nJeanna\nJenni\nJessie\nJoan\nJohnna\nJoycelyn\nJudith\nKacey\nKarmen\nKarrie\nKasie\nKeesha\nKeshia\nKristine\nLakecia\nLakenya\nLaquetta\nLarissa\nLashondra\nLasonja\nLatoria\nLatoyia\nLeanna\nLekesha\nLeona\nLillie\nLynette\nMarci\nMarlana\nMattie\nMaureen\nMelisha\nMiriam\nNakisha\nNakita\nNina\nNita\nPrincess\nRaquel\nRobbie\nRolanda\nRoxanne\nSalena\nSalina\nSarita\nShala\nShanell\nSharla\nShawnta\nShewanda\nShona\nShontae\nStacia\nStarla\nStefanie\nTakesha\nTamra\nTemika\nTerry\nTia\nTisha\nToi\nTommie\nTrinity\nTrisha\nUrsula\nVivian\nJennifer\nAmanda\nAmy\nKimberly\nHeather\nApril\nMelissa\nAngela\nStephanie\nJessica\nMary\nCrystal\nKelly\nChristy\nBrandy\nMisty\nElizabeth\nAshley\nLisa\nLaura\nJamie\nChristina\nShannon\nAndrea\nRebecca\nTonya\nTiffany\nBrandi\nKristy\nLeslie\nWendy\nErica\nRachel\nMichelle\nTina\nJulie\nSarah\nEmily\nCynthia\nKaren\nDana\nLori\nCarrie\nTracy\nAlicia\nMonica\nPamela\nFelicia\nStacey\nMelanie\nRobin\nSusan\nPatricia\nStacy\nTara\nSabrina\nAmber\nAnna\nKatherine\nNicole\nAllison\nErin\nTabitha\nHolly\nLatonya\nLatoya\nNatasha\nTammy\nKristi\nDonna\nKatrina\nSamantha\nNatalie\nSharon\nValerie\nMandy\nRegina\nCourtney\nCheryl\nTamika\nTameka\nLatasha\nLeah\nCatherine\nJacqueline\nLinda\nTeresa\nCassandra\nDanielle\nSara\nGinger\nMelinda\nLakisha\nSandra\nKathryn\nJaime\nJenny\nMargaret\nLeigh\nRhonda\nSherry\nBarbara\nKelley\nSonya\nVictoria\nKelli\nCarla\nCarolyn\nKristie\nMiranda\nNancy\nAngel\nChristie\nLakesha\nChristine\nVeronica\nCandace\nCindy\nJulia\nSummer\nTanya\nVanessa\nYolanda\nAnita\nCandice\nJoy\nMegan\nMeredith\nDawn\nLauren\nAlisha\nKellie\nTamara\nShana\nDenise\nLindsey\nShanna\nAlison\nBrenda\nHaley\nJill\nTracey\nCharity\nCharlotte\nGina\nJanet\nKerri\nPaula\nShelley\nCasey\nChasity\nDeborah\nToni\nVirginia\nAdrienne\nBridget\nKristen\nBethany\nBeverly\nConnie\nDebra\nJana\nNikki\nBelinda\nLakeisha\nLaurie\nAimee\nCarmen\nFrances\nKatie\nKristina\nMaria\nTerri\nAngelia\nKathy\nLindsay\nMelody\nOlivia\nAnn\nBrooke\nDeanna\nKendra\nLatisha\nLesley\nTraci\nAutumn\nDorothy\nEbony\nKristin\nMartha\nTheresa\nLashonda\nAlice\nErika\nJaclyn\nJoyce\nMarsha\nRebekah\nTabatha\nTasha\nAudrey\nChrissy\nJanice\nKeisha\nLawanda\nRobyn\nSheila\nShelia\nSherri\nCaroline\nKenya\nLakeshia\nPriscilla\nAmelia\nCarol\nChandra\nChristi\nMichele\nShelly\nWanda\nBetty\nChiquita\nJoanna\nKasey\nLashunda\nMaranda\nSuzanne\nTawanda\nBridgett\nCharlene\nDevin\nDiana\nKrystal\nRachael\nTomeka\nBobbie\nBrandie\nDaphne\nJillian\nMolly\nShameka\nShanta\nShayla\nSonja\nTracie\nWhitney\nAdrian\nCathy\nCatrina\nHollie\nKara\nKeri\nKizzy\nSandy\nShonda\nStacie\nAisha\nAlana\nAmie\nDeidra\nGloria\nHeidi\nHelen\nJacquelyn\nJennie\nJuanita\nKrista\nLana\nLaquita\nMarilyn\nMindy\nAnnie\nBonnie\nChastity\nDemetria\nFaith\nHope\nKathleen\nLydia\nMonique\nRita\nShanda\nShauna\nAlecia\nAlisa\nAnne\nBillie\nCandy\nEvelyn\nFelecia\nJoni\nKerry\nKirsten\nMarie\nMisti\nPatrice\nPeggy\nRaven\nSelena\nSherita\nShirley\nTammie\nAudra\nBeth\nDebbie\nFarrah\nGwendolyn\nJackie\nKylie\nLacey\nLatonia\nLee\nLoretta\nMarcia\nRose\nRuby\nSheree\nSonia\nTanisha\nTawana\nTemeka\nWendi\nAngie\nConstance\nCristy\nGretchen\nJanie\nKatina\nLashanda\nLatanya\nMalinda\nNichole\nShawna\nTeri\nTrina\nVickie\nBridgette\nChrista\nChristopher\nDarlene\nEllen\nGlenda\nHilary\nHillary\nJeannie\nJodi\nKari\nKenisha\nLacy\nLashaunda\nLatarsha\nLetitia\nMaggie\nMelisa\nRuth\nRyan\nSally\nSharonda\nShemeka\nTisha\nBetsy\nDeidre\nDoris\nEva\nGeorgia\nJane\nJeanette\nKarla\nLadonna\nLashandra\nLatoria\nLatricia\nLillian\nMia\nNikia\nNikita\nPenny\nRobbie\nShamika\nShawanda\nStaci\nStarla\nSylvia\nTakisha\nTamekia\nTequila\nTonia\nValencia\nAdrianne\nAlethea\nAllyson\nAnitra\nAshleigh\nBenita\nCallie\nCara\nChanda\nDiane\nEleanor\nJada\nJames\nJean\nJenifer\nJodie\nKim\nLatosha\nLatoshia\nLora\nMarla\nNadia\nShavon\nShellie\nShenita\nSheryl\nSophia\nTamela\nTarsha\nTerra\nTia\nTiffani\nTomika\nYvette\nYvonne\nAbigail\nAlexandria\nAlexis\nBrittany\nCassie\nChristal\nCicely\nCorey\nDesiree\nDianna\nDora\nElisha\nEsther\nFelica\nIvy\nJameka\nJanelle\nJeri\nJessie\nJocelyn\nKisha\nKrissy\nLara\nLashundra\nLena\nMildred\nOctavia\nRashida\nRoxanne\nShandra\nShanika\nShanita\nSue\nTessa\nTomekia\nTrisha\nVivian\nAbby\nAdriane\nAlyssa\nBambi\nBecky\nBrittney\nCalandra\nCarey\nDavida\nDeana\nDena\nDevon\nElaine\nEricka\nFrankie\nIda\nJamila\nJanuary\nJody\nJoycelyn\nJudy\nJune\nKenyatta\nKimberley\nKizzie\nLaquanda\nLatrice\nLeanne\nLorie\nLucretia\nLynn\nMandi\nMarcie\nMarian\nMeghan\nMitzi\nMyra\nNakia\nNaomi\nRacheal\nRenee\nShanetta\nShasta\nShunta\nSommer\nTera\nTerry\nTori\nTricia\nWindy\nAlyson\nAngelica\nAnnette\nAretha\nAshlee\nBeatrice\nBobbi\nCecelia\nClaudia\nDelia\nDevan\nFelisha\nGena\nGeneva\nHayley\nJacklyn\nJeanie\nJenna\nJerri\nKarrie\nKeesha\nKesha\nKristal\nLaquisha\nLashaundra\nLashondra\nLatara\nLatesha\nLayla\nLeann\nLolita\nLucy\nMakesha\nMeagan\nMelony\nMichael\nPatsy\nPhyllis\nPrecious\nRamona\nReagan\nRenita\nSamatha\nSasha\nScarlett\nSerena\nShalonda\nShantel\nSharron\nSheri\nSusie\nTakesha\nTangela\nTenisha\nTiffanie\nValarie\nAlesia\nAlma\nAmiee\nAnastasia\nBernetta\nCamellia\nCasandra\nCecilia\nCharmaine\nCheri\nChrystal\nClaire\nClarissa\nCora\nDanyell\nDarla\nDavid\nDemetric\nDusty\nElaina\nElla\nEmma\nEugenia\nEvie\nFrancesca\nFreda\nGabrielle\nGinny\nGrace\nHolley\nJacinta\nJami\nJammie\nJasmine\nJimmie\nJo\nJoan\nJoanie\nJoann\nJoanne\nJoseph\nKacy\nKasie\nKathrine\nKayla\nKenyetta\nKerrie\nKeshia\nKevin\nKyla\nLacie\nLacresha\nLakesia\nLanita\nLashan\nLashana\nLashawn\nLashon\nLasonja\nLatashia\nLatrina\nLatrisha\nLea\nLeona\nLila\nMamie\nMarcy\nMarquita\nMellisa\nMelonie\nMendy\nMillie\nNedra\nNikisha\nPamala\nPatty\nPauline\nPrincess\nQuintina\nRenea\nRosalyn\nRosie\nShaneka\nSharita\nShaunna\nShaunte\nSheena\nShelby\nShelli\nSherrie\nSomer\nStephaine\nSuzanna\nTalisha\nTamesha\nTami\nTamiko\nTaneka\nTaryn\nTimeka\nTonika\nTyesha\nTyra\nTyronda\nUrsula\nVicki\nWinter\nJennifer\nAmanda\nKimberly\nApril\nAmy\nMelissa\nStephanie\nAngela\nHeather\nJessica\nBrandy\nCrystal\nElizabeth\nMary\nMisty\nAshley\nTiffany\nJamie\nChristy\nLisa\nLaura\nChristina\nKelly\nRebecca\nAmber\nRachel\nMichelle\nErica\nBrandi\nAndrea\nShannon\nDana\nTonya\nEmily\nJulie\nLeslie\nSarah\nKristy\nKatherine\nTina\nTracy\nMonica\nPamela\nKatrina\nTara\nAlicia\nLori\nWendy\nCarrie\nStacy\nCynthia\nKaren\nMelanie\nTammy\nCourtney\nLatonya\nNicole\nStacey\nHolly\nSusan\nAllison\nAnna\nNatasha\nNatalie\nSabrina\nSamantha\nLauren\nPatricia\nErin\nLatoya\nLatasha\nSharon\nCatherine\nMiranda\nFelicia\nKathryn\nRobin\nCheryl\nLeah\nCarla\nDonna\nValerie\nMargaret\nSara\nCandice\nLindsey\nRegina\nTamara\nTamika\nYolanda\nTeresa\nCassandra\nLinda\nTabitha\nMandy\nCandace\nCasey\nJacqueline\nDanielle\nMindy\nSandra\nAngel\nKristi\nMeredith\nMegan\nKelli\nBarbara\nRhonda\nSonya\nBrooke\nLeigh\nShanna\nSherry\nTanya\nBridget\nChristine\nJenny\nChasity\nKatie\nLakisha\nTameka\nCindy\nKellie\nMelinda\nAlison\nVeronica\nAlisha\nChristie\nKendra\nKrystal\nTerri\nKristina\nVirginia\nGina\nGinger\nKristen\nKristie\nLakeisha\nLindsay\nRachael\nSummer\nVictoria\nJana\nJoy\nKelley\nNancy\nPaula\nBethany\nHaley\nLatisha\nLakesha\nBrenda\nCharity\nConnie\nJill\nTasha\nVanessa\nAngelia\nAngie\nBeverly\nDeanna\nShelley\nChristi\nDebra\nDenise\nDorothy\nKeisha\nAdrienne\nEbony\nMaria\nTracey\nKathy\nBeth\nBonnie\nErika\nJaime\nJanet\nJulia\nMarsha\nMelody\nToni\nCarolyn\nDeborah\nJaclyn\nLawanda\nRobyn\nWhitney\nAudrey\nKerri\nOlivia\nSandy\nTamekia\nAimee\nCaroline\nFrances\nKeri\nKristin\nLakeshia\nLaurie\nRebekah\nAnnie\nChrista\nShana\nSheila\nAnita\nJanice\nNikki\nCharlotte\nGwendolyn\nJillian\nLatosha\nSuzanne\nCarol\nDaphne\nGloria\nMonique\nSherri\nTraci\nCarmen\nDawn\nJasmine\nJennie\nKenya\nMichele\nRaven\nRita\nShelly\nStacie\nTomeka\nTracie\nWanda\nAlecia\nAmelia\nAmie\nAnn\nLatanya\nNina\nPriscilla\nShauna\nTheresa\nAdrian\nChiquita\nJoyce\nKara\nKasey\nLashanda\nLashundra\nLee\nShelia\nSherita\nTabatha\nAutumn\nBetty\nBobbie\nChrystal\nEllen\nHelen\nHollie\nJuanita\nLashonda\nMisti\nSelena\nShameka\nShawanda\nSheree\nAlana\nChandra\nHannah\nJami\nJoni\nKarla\nKerry\nKrista\nLaquita\nLesley\nMolly\nTawana\nTawanda\nBelinda\nBrandie\nCharlene\nConstance\nFaith\nGrace\nHope\nJackie\nKathleen\nMartha\nTeri\nAbby\nAnne\nBridgett\nBrittney\nCassie\nDarlene\nDena\nDevin\nHilary\nJanna\nLatrice\nMaranda\nMarilyn\nRenee\nSheri\nTammie\nTangela\nAisha\nAlisa\nCandy\nCathy\nCatrina\nDoris\nElisha\nFelecia\nJoanna\nJodi\nKesha\nLana\nLatesha\nLatonia\nLora\nMeghan\nPaige\nShanta\nTessa\nWendi\nWinter\nAdrianne\nAllyson\nAntoinette\nBridgette\nDebbie\nDeidre\nElaine\nEva\nGeorgia\nHeidi\nLadonna\nLashunda\nLeann\nNakia\nNaomi\nPeggy\nSally\nShanika\nSylvia\nYashica\nAnitra\nDemetria\nDiana\nEricka\nEvelyn\nHillary\nIvy\nJenifer\nKenyatta\nLacey\nLasonya\nLeanne\nMarcia\nMelisa\nRose\nShonda\nStaci\nTawanna\nTerra\nTori\nTrisha\nWindy\nYvonne\nAlice\nAlissa\nAlyson\nAudra\nBrianna\nCalandra\nCeleste\nChanda\nDeidra\nDianna\nHolli\nJeana\nJeri\nKarrie\nKisha\nKizzy\nLashaunda\nLorie\nLucy\nMarie\nMarisa\nMia\nMiriam\nNichole\nPenny\nShalonda\nShanita\nSharonda\nShavonne\nShemika\nSherika\nStefanie\nTomika\nTonia\nTosha\nValarie\nVickie\nAshlie\nBetsy\nBonita\nCara\nCecilia\nChastity\nCortney\nGlenda\nJacquelyn\nJeanette\nJeannie\nKristal\nKylie\nLaquanda\nLara\nLatricia\nLoretta\nPatrice\nShaneka\nShasta\nShawna\nShundra\nSonia\nTanisha\nTia\nAlaina\nAngelina\nAnnette\nCarey\nChrissy\nCristal\nDesiree\nDevon\nEboni\nGabrielle\nHolley\nIrene\nJames\nJamila\nJo\nJoann\nKaci\nKari\nKatharine\nKatina\nLakesia\nLarissa\nLindy\nLydia\nPhyllis\nRacheal\nRandi\nRenata\nRenita\nRobbie\nRosalyn\nRuby\nRuth\nShamika\nShanda\nShayla\nShemeka\nShenita\nTami\nTanika\nTera\nTricia\nAbigail\nAlyssa\nAmi\nAndria\nAshleigh\nBillie\nCallie\nCarly\nCecelia\nChristal\nChristian\nDeana\nElla\nEugenia\nFelisha\nFlorence\nFrankie\nGena\nIngrid\nJanie\nJerri\nJodie\nKirsten\nKirstie\nLashandra\nLashawn\nLatashia\nLetitia\nLyndsey\nMaegan\nMarianne\nMarla\nNadia\nNora\nNorma\nPatsy\nPortia\nRamona\nRikki\nSelina\nShalanda\nShamekia\nShante\nSherrie\nShirley\nSiobhan\nSommer\nSonja\nTarsha\nVivian\nAleisha\nAlesha\nAlexis\nAshanti\nAva\nBecky\nBianca\nBrittany\nBrook\nCamille\nCasandra\nCheri\nChristopher\nClaudia\nColleen\nCora\nCristy\nDusty\nElisa\nIda\nIris\nJeanne\nJoshua\nJudith\nJudy\nKamilah\nKanika\nKawana\nKayla\nKerrie\nKim\nKimberley\nLacy\nLamonica\nLatarsha\nLena\nLynn\nMalinda\nMarci\nMarquita\nMellissa\nMitzi\nMyra\nNakisha\nNiki\nRachelle\nRashida\nScarlett\nShandra\nShantel\nShaunta\nShawanna\nShelby\nShemekia\nSondra\nSophia\nTamica\nTemika\nTiffani\nTiffanie\nValencia\nVicki\nYvette\nAdriane\nAlesia\nAlexandria\nAretha\nAthena\nAubrey\nBeatrice\nBrandon\nBrianne\nCarisa\nCelina\nCharla\nCharles\nCharmaine\nClaire\nClarissa\nCoretta\nCori\nDaisy\nDaniel\nDanna\nDedra\nDemetra\nDestiny\nEdith\nEleanor\nElise\nEmma\nJaimie\nJason\nJean\nJeanna\nJoan\nJocelyn\nJody\nJohanna\nJoi\nJonie\nJonna\nJoycelyn\nJune\nKacey\nKami\nKamisha\nKenisha\nKiley\nKizzie\nLakecia\nLakeesha\nLakeitha\nLaquitta\nLatonga\nLatoria\nLea\nLeia\nLela\nLeticia\nLila\nLillie\nLucretia\nMandi\nMarcie\nMarcy\nMarion\nMartina\nMichael\nMildred\nMistie\nNakesha\nNatalia\nNikisha\nNikita\nOctavia\nOpal\nQiana\nRobert\nRoberta\nRonda\nRosa\nSerena\nShakira\nShanavia\nSharhonda\nShaundra\nShavon\nShawnta\nShea\nShelli\nShenika\nShonta\nSomer\nStella\nSyreeta\nTajuana\nTakesha\nTamala\nTameca\nTamela\nTamra\nTisha\nTomekia\nTonja\nTracee\nTrina\nTyronda\nVera\nYashika\nJennifer\nAmanda\nKimberly\nApril\nJessica\nMelissa\nTiffany\nStephanie\nAmy\nMary\nHeather\nAshley\nCrystal\nAngela\nElizabeth\nMisty\nBrandy\nJamie\nChristina\nLaura\nSarah\nChristy\nKelly\nRachel\nLisa\nRebecca\nAndrea\nBrandi\nAmber\nShannon\nEmily\nLeslie\nMichelle\nErica\nPamela\nKristy\nNatasha\nMonica\nJulie\nCourtney\nErin\nWendy\nNicole\nTonya\nAllison\nKatherine\nAlicia\nDana\nKristen\nKatrina\nLatoya\nTracy\nLatasha\nAnna\nTina\nMelanie\nMiranda\nSamantha\nSusan\nStacy\nCynthia\nLatonya\nLori\nKaren\nKristin\nLindsey\nTara\nTammy\nCarrie\nLauren\nCandace\nStacey\nHolly\nNatalie\nLeah\nCandice\nPatricia\nSara\nCatherine\nValerie\nSharon\nTasha\nBrooke\nSabrina\nKathryn\nKatie\nMargaret\nRobin\nTabitha\nKelli\nMelinda\nCasey\nDonna\nMegan\nCassandra\nChasity\nKristi\nVirginia\nFelicia\nMeredith\nTeresa\nAlisha\nJenny\nLindsay\nLeigh\nVeronica\nBarbara\nRhonda\nSummer\nTamara\nAlison\nBethany\nDanielle\nRegina\nSonya\nVictoria\nJulia\nMonique\nLakisha\nTanya\nCarla\nKristie\nMandy\nSherry\nYolanda\nPaula\nCarolyn\nNancy\nTameka\nMartha\nVanessa\nDeanna\nGinger\nSandra\nRachael\nBeverly\nBrenda\nChristine\nErika\nTamika\nTerri\nKristina\nDenise\nJacqueline\nJoy\nKathy\nKrystal\nShelley\nChristie\nLatisha\nMelody\nJana\nKellie\nAngel\nCheryl\nHaley\nMaria\nShelly\nBridget\nDeborah\nEbony\nKara\nLakesha\nBonnie\nCindy\nBeth\nDawn\nSuzanne\nToni\nAdrienne\nCharlotte\nLakeisha\nTraci\nWhitney\nAudrey\nGina\nJill\nLinda\nNina\nShameka\nAnnie\nBelinda\nCarol\nKelley\nKerri\nLee\nNikki\nRebekah\nAnn\nBrandie\nCarmen\nJanet\nLaquita\nMaranda\nMindy\nOlivia\nShanna\nTheresa\nAnita\nEricka\nJoni\nKenya\nLashanda\nLawanda\nLesley\nPatrice\nStacie\nAnne\nChristi\nDaphne\nHeidi\nKeisha\nKendra\nKrista\nLaurie\nPriscilla\nSandy\nAngie\nCharity\nDebra\nEllen\nKathleen\nAmelia\nBetty\nCaroline\nConnie\nRobyn\nTanisha\nTia\nTracey\nAdrian\nAimee\nAlecia\nChandra\nDeidra\nFrances\nHope\nJaime\nKasey\nLatanya\nLatosha\nNichole\nRenada\nCathy\nDorothy\nJaclyn\nJoanna\nKimberley\nPenny\nRenata\nAutumn\nBridgett\nCassie\nDiana\nEvelyn\nJasmine\nJoyce\nLashonda\nLashunda\nRenee\nAbby\nAngelia\nCharlene\nHelen\nJanice\nJenifer\nJennie\nKarla\nLacey\nLashundra\nMarsha\nMichael\nNakia\nPeggy\nRaven\nSally\nShelia\nStefanie\nTeri\nTosha\nBrittney\nChrista\nEva\nFelecia\nHannah\nHollie\nJessie\nJillian\nJudy\nKeri\nRandi\nRita\nSelena\nSharonda\nShawanda\nShayla\nSheila\nTabatha\nTessa\nTiffani\nTiffanie\nTomeka\nValarie\nVickie\nBobbie\nBridgette\nGwendolyn\nJacquelyn\nJada\nJami\nLashandra\nMarie\nMisti\nMolly\nTracie\nAlexis\nAlice\nCallie\nCara\nChastity\nChiquita\nChrystal\nDevin\nDixie\nElisha\nGlenda\nHilary\nKatina\nKenyatta\nLakeshia\nMarla\nMeghan\nMorgan\nPaige\nShana\nSheri\nSophia\nTawana\nValencia\nVicki\nWendi\nAnnette\nAudra\nBrittany\nCandy\nCatrina\nCristy\nDeidre\nDoris\nGabrielle\nGeorgia\nJeannie\nJenna\nJuanita\nKari\nKayla\nLashondra\nLatoria\nLora\nMandi\nMeagan\nNaomi\nShandra\nShaneka\nSondra\nTamekia\nTammie\nWanda\nAbigail\nAlesha\nAshleigh\nBianca\nBriana\nCeleste\nDara\nDarlene\nHillary\nIris\nJodi\nKim\nLydia\nMarilyn\nMarissa\nNiki\nRoxanne\nRuth\nShanika\nShasta\nShemika\nSherri\nShirley\nStarla\nTamela\nYvonne\nAlana\nAlissa\nAlyson\nAmberly\nAntoinette\nAubrey\nCecilia\nChristopher\nCortney\nDemetria\nDevon\nElisabeth\nFaith\nHolley\nJackie\nJames\nJoanie\nKerry\nLatrice\nLetisha\nLorie\nMalinda\nMarian\nMichele\nPrincess\nRochelle\nRose\nShamekia\nSherita\nSommer\nStaci\nSue\nSylvia\nTamera\nTami\nTelisha\nTera\nTerra\nTisha\nTonia\nTricia\nUrsula\nAllyson\nBrandee\nBrianne\nCharla\nChristian\nCoretta\nElaine\nGenevieve\nGloria\nGretchen\nJane\nJanna\nJeanie\nJodie\nJudith\nKandace\nKasie\nLadonna\nLana\nLaquanda\nLatesha\nLatonia\nLoretta\nMarjorie\nMarlena\nMia\nRosa\nRyan\nSasha\nShanta\nShawna\nShemeka\nSheree\nSyreeta\nTanika\nTarsha\nTrisha\nAdrianne\nAisha\nAmie\nAndria\nAshlee\nBecky\nBillie\nCandi\nCasie\nChanda\nChristen\nColleen\nCrissy\nDarcy\nDeana\nDebbie\nDesiree\nFarrah\nFelisha\nFrankie\nJacinta\nJan\nJanie\nJeanette\nJeanna\nJerri\nJody\nKendall\nKenyetta\nKeshia\nKrissy\nKristal\nLashaundra\nLatricia\nLaurel\nLeann\nLeia\nLekeisha\nLucretia\nMaggie\nRacheal\nRachelle\nRosalyn\nSerena\nShalanda\nShanda\nShauna\nShenita\nSonja\nTai\nTakisha\nTammi\nTawanna\nTomika\nTori\nTyesha\nAlaina\nAleshia\nAlyssa\nAshlie\nBrianna\nBritney\nCarly\nCheri\nCherie\nConstance\nDeandra\nDedra\nElla\nGail\nGrace\nHolli\nJeanne\nJerry\nKami\nKandy\nKate\nKylie\nLachandra\nLara\nLasandra\nLatara\nLatarsha\nLatoyia\nLatrisha\nLeticia\nLillian\nLucy\nMarcia\nMarianne\nMattie\nMiriam\nMollie\nMonika\nPorsha\nPrecious\nRaegan\nRamona\nRaquel\nRegan\nRenae\nRobbie\nRonda\nRuby\nRuthie\nScarlett\nSelina\nShalonda\nShanon\nShea\nSherika\nSherrie\nSonia\nStar\nStella\nSydney\nTanesha\nTawanda\nTemeka\nTequila\nVivian\nWilliam\nWinter\nAlesia\nAmmie\nAna\nAndi\nAngelina\nAnitra\nBernice\nBetsy\nBlair\nBrandalyn\nCandis\nCasandra\nCecelia\nChaka\nChantel\nCherry\nChrissy\nChristal\nClara\nClarissa\nCorey\nCristina\nDavid\nDelia\nDeonna\nDiane\nDusty\nEarnestine\nHarriet\nHayley\nIngrid\nIvy\nJason\nJean\nJoann\nJohn\nJordan\nKatrinia\nKerrie\nKesha\nKimberlee\nKizzie\nKyla\nLacy\nLakeysha\nLatresa\nLatrina\nLawanna\nLekeshia\nLorrie\nMarisa\nMelisa\nMellissa\nMelodie\nNakesha\nNikisha\nNikita\nNora\nPhaedra\nRagan\nRenota\nRosemary\nShaletha\nShamika\nShari\nShavonda\nShavonne\nShawanna\nShemekia\nShereka\nShonda\nStephaine\nSusie\nTamala\nTameika\nTamica\nTamiko\nTaylor\nTomekia\nToya\nTrina\nVicky\nYvette\nJennifer\nAmanda\nJessica\nKimberly\nTiffany\nStephanie\nApril\nAmy\nCrystal\nMelissa\nAshley\nMary\nHeather\nElizabeth\nAngela\nBrandy\nLaura\nAmber\nEmily\nSarah\nAndrea\nBrandi\nRachel\nMisty\nErica\nChristina\nLatoya\nRebecca\nCourtney\nKelly\nLisa\nShannon\nLeslie\nJamie\nPamela\nMichelle\nKatherine\nChristy\nJulie\nKristen\nLauren\nLindsey\nLatasha\nErin\nAllison\nKristin\nAnna\nAlicia\nKristy\nNicole\nCynthia\nCarrie\nNatasha\nHolly\nSara\nCandice\nDana\nMelanie\nMonica\nTonya\nBrooke\nCandace\nWendy\nLori\nSamantha\nMiranda\nStacy\nStacey\nTara\nKathryn\nKatrina\nLeah\nPatricia\nTina\nLatonya\nLindsay\nTammy\nKatie\nSusan\nAngel\nCatherine\nNatalie\nSharon\nCassandra\nMargaret\nTeresa\nCarla\nKaren\nRobin\nDanielle\nTracy\nKristi\nMegan\nFelicia\nMonique\nSabrina\nBethany\nRegina\nSandra\nTasha\nHaley\nCasey\nJulia\nTabitha\nTamara\nVeronica\nBarbara\nBridget\nDonna\nJacqueline\nSummer\nValerie\nVirginia\nWhitney\nTameka\nVictoria\nMeredith\nSonya\nTerri\nLinda\nCassie\nChristine\nKelli\nJenny\nRachael\nYolanda\nAlisha\nDeanna\nRhonda\nAlison\nConstance\nLakeisha\nSherry\nDawn\nTanya\nChasity\nJoy\nVanessa\nAudrey\nMandy\nErika\nKristina\nLakesha\nLatisha\nTamika\nKellie\nKristie\nMaria\nMelinda\nMelody\nNikki\nToni\nCarmen\nJana\nRebekah\nAdrienne\nCarolyn\nCharity\nJanice\nKasey\nKendra\nKrystal\nLawanda\nLeigh\nPriscilla\nShameka\nAnnie\nGinger\nHannah\nJill\nMarie\nShanna\nTheresa\nAnn\nFrances\nLakisha\nBeverly\nDenise\nLacey\nMorgan\nNina\nShelley\nCheryl\nChristie\nDebra\nMartha\nMindy\nNancy\nTabatha\nEbony\nKeisha\nBonnie\nBrenda\nBrittany\nDeborah\nGina\nJaime\nJillian\nLesley\nConnie\nPaula\nRobyn\nSophia\nTraci\nAlice\nAmelia\nCindy\nDorothy\nKara\nKathy\nLashonda\nRaven\nSuzanne\nTracey\nBrandie\nHayley\nKelley\nMeghan\nPaige\nAlana\nAutumn\nCarol\nCharlotte\nDiana\nHeidi\nJoni\nKrista\nLaurie\nPatrice\nStacie\nStefanie\nAimee\nAngelia\nJoyce\nKerri\nMaranda\nMarsha\nMichele\nShelly\nTiffani\nAbby\nBelinda\nBetty\nBridgett\nBrittney\nChiquita\nJessie\nJoanna\nKeri\nLakeshia\nLee\nSheila\nShirley\nTanisha\nTracie\nWanda\nChristen\nChristian\nJanet\nJanie\nJasmine\nKathleen\nKenya\nLacy\nNichole\nSandy\nShana\nSherita\nAlecia\nAmie\nAnita\nAshleigh\nBeth\nHollie\nJeannie\nKari\nKarla\nMeagan\nMolly\nOlivia\nRandi\nTia\nToccara\nAlaina\nAngie\nBecky\nBridgette\nCandi\nCharlene\nChristi\nChrystal\nHelen\nKristal\nLatoria\nNaomi\nSherri\nAlexis\nAnne\nAshlee\nChristin\nDeidra\nEllen\nEvelyn\nJodi\nJuanita\nLadonna\nLaquita\nLashunda\nLatanya\nLydia\nMarilyn\nSelena\nShawanda\nStaci\nTeri\nVickie\nBritney\nCaroline\nEva\nJaclyn\nJanna\nLatrice\nLora\nMiriam\nRenee\nShamekia\nSharonda\nSonja\nSylvia\nValencia\nAlexandra\nAva\nBlair\nCandy\nClaire\nDaisy\nDara\nDavida\nEricka\nGloria\nGwendolyn\nJacquelyn\nJami\nJodie\nKesha\nLara\nLashanda\nMisti\nShanika\nShayla\nSheena\nShemika\nTemeka\nTiffanie\nAisha\nAlisa\nBillie\nBobbie\nCarly\nCathy\nCristy\nDeidre\nElisha\nEvita\nFelecia\nJackie\nJeanette\nJennie\nJudith\nJudy\nKaci\nLatosha\nLatricia\nMandi\nMartina\nRyan\nShasta\nShauna\nShemeka\nShonda\nSusie\nTamekia\nTanesha\nTawana\nTomeka\nAlesha\nAlexandria\nBianca\nCatrina\nCeleste\nClarissa\nDaphne\nDebbie\nDionne\nElisabeth\nFaith\nHolley\nKimberley\nKisha\nKrystle\nLatrisha\nMarian\nMarion\nMarla\nMartine\nOctavia\nPortia\nScarlett\nShamika\nShanta\nShelia\nTawanda\nTenisha\nTisha\nTricia\nValarie\nVivian\nYvonne\nAbigail\nAdriane\nAlesia\nAntoinette\nAudra\nBrandon\nBrook\nCallie\nCamilla\nCara\nChanda\nFarrah\nHillary\nIris\nIvy\nJacklyn\nJames\nJenna\nJerri\nJohanna\nKenyatta\nKristian\nLatarsha\nLillian\nLucy\nMarcella\nMarjorie\nMarquetta\nPeggy\nPenny\nRamona\nRose\nShaneka\nShantel\nShawna\nSheneka\nTawanna\nTosha\nAlfreda\nAlyssa\nAndria\nAnnette\nAundrea\nCasie\nChrissy\nChrista\nChristopher\nClara\nClaudia\nDestiny\nEmma\nGabrielle\nHolli\nHope\nJada\nJenifer\nJody\nJohnnie\nKandi\nKate\nKendall\nKeshia\nLaquanda\nLashaunda\nLatara\nLavonda\nLekisha\nMalinda\nMarianne\nMarquita\nMollie\nRochelle\nRuth\nScarlet\nShanda\nShelby\nSommer\nSondra\nStacia\nStarla\nStephine\nTamela\nTammie\nTera\nTomika\nTrisha\nVicki\nWilliam\nAdrianne\nAllyson\nAnthony\nAshlie\nBambi\nBriana\nCarissa\nChandra\nChastity\nCristal\nDeana\nDena\nDetra\nDiane\nDianna\nEboni\nElaine\nEugenia\nGail\nGrace\nHilary\nJanelle\nJeri\nJo\nJoseph\nJoycelyn\nKacey\nKacy\nKami\nKarrie\nKasie\nKayla\nKerrie\nKerry\nKim\nLana\nLashundra\nLatesha\nLatia\nLeila\nLena\nLetisha\nLinsey\nLiza\nLoretta\nLucinda\nLynn\nMelisa\nMia\nNatosha\nRacheal\nRenada\nRenata\nRita\nRosalyn\nRosie\nRuby\nSandi\nSelina\nSerena\nShalanda\nShaunda\nSheri\nSue\nSusanna\nTanika\nTaylor\nTena\nTenika\nTequila\nTerra\nTerry\nTonia\nTyesha\nUrsula\nAdrian\nAlanna\nAlyson\nAmi\nAngelique\nBetsy\nBobby\nBonita\nBrianna\nCalandra\nCamille\nCari\nCasandra\nChristal\nCielita\nCora\nDanita\nDanna\nDarlene\nDedra\nDeirdre\nDesiree\nDione\nEdna\nEdwina\nEleanor\nElla\nFrancis\nGeorgia\nGinny\nGlenda\nGretta\nHelena\nJacques\nJammie\nJeanetta\nJoan\nJocelyn\nJolene\nJordan\nJoshua\nKasi\nKatina\nKeesha\nKelsey\nKenisha\nKia\nKina\nKristine\nLakeitha\nLaquisha\nLarissa\nLashandra\nLashondra\nLatishia\nLatonia\nLatoyia\nLaurel\nLea\nLeanne\nLetitia\nLorie\nLorrie\nLyndsay\nMarcus\nMargie\nMarisa\nMarissa\nMicah\nMichael\nMona\nMyra\nNickie\nNikita\nNora\nPrecious\nPrincess\nQuintina\nReagan\nReshonda\nRhea\nRobbie\nRobert\nRosa\nRoshunda\nSadie\nSallie\nShameeka\nShandra\nShanita\nShavonne\nShawana\nShellie\nShereka\nSomer\nSusanne\nSybil\nTai\nTakesha\nTamica\nTamiko\nTammi\nTangela\nTerrica\nTessa\nTiana\nTierra\nTiffiny\nTimeka\nTori\nTrina\nTwanna\nTyler\nValeria\nWindy\nYvette\nJennifer\nJessica\nAmanda\nTiffany\nCrystal\nAshley\nKimberly\nApril\nStephanie\nAmy\nMary\nElizabeth\nMelissa\nHeather\nAngela\nRachel\nEmily\nSarah\nAmber\nBrandy\nLaura\nErica\nRebecca\nBrandi\nLauren\nLindsey\nChristina\nJamie\nLeslie\nAndrea\nLisa\nKelly\nCourtney\nErin\nKristen\nMisty\nNatasha\nChristy\nMichelle\nKatherine\nCandice\nAnna\nLatoya\nAllison\nJulie\nLindsay\nAlicia\nNicole\nPamela\nLatasha\nSamantha\nSara\nMelanie\nCandace\nLori\nShannon\nNatalie\nTara\nCassandra\nDana\nKristy\nCatherine\nKatie\nKristin\nKathryn\nValerie\nMiranda\nWendy\nHolly\nLeah\nSusan\nKatrina\nStacy\nCarrie\nCynthia\nTina\nPatricia\nTonya\nKaren\nMonica\nKrystal\nTracy\nKayla\nStacey\nMegan\nCasey\nTabitha\nCassie\nMargaret\nTammy\nBethany\nVictoria\nBridget\nJulia\nRobin\nBrittany\nMeredith\nHaley\nTasha\nVirginia\nSheena\nWhitney\nKelli\nSabrina\nAlisha\nChasity\nDanielle\nJacqueline\nLatonya\nTeresa\nTerri\nAlison\nJillian\nCarla\nFelicia\nSandra\nBarbara\nKristi\nKristina\nLeigh\nRebekah\nAngel\nDonna\nJenny\nAdrienne\nLacey\nSharon\nTamara\nAlexis\nBrooke\nTameka\nLinda\nRegina\nVeronica\nSummer\nDeanna\nTamika\nChristie\nDiana\nRhonda\nCarolyn\nCheryl\nConstance\nMonique\nShanna\nBrenda\nChristine\nEbony\nTanya\nCarmen\nJoy\nLakesha\nMelinda\nNikki\nSonya\nErika\nMandy\nRachael\nYolanda\nDorothy\nMorgan\nAudrey\nJoanna\nSherry\nToni\nAbby\nGinger\nJill\nKathleen\nNancy\nBeverly\nBonnie\nJaime\nShameka\nShelly\nTabatha\nBrittney\nCharity\nDeborah\nEvelyn\nHollie\nJanice\nKara\nKelley\nLakisha\nMeghan\nMelody\nStefanie\nAnn\nBrandie\nJanet\nKellie\nKerri\nKristie\nLakeisha\nLydia\nMaria\nNichole\nShelley\nCindy\nDaphne\nKendra\nLacy\nMartha\nPaula\nVanessa\nAdrian\nAnnie\nAutumn\nBritney\nCaroline\nCharlene\nHannah\nKari\nLesley\nToccara\nCharlotte\nEllen\nFrances\nJana\nLakeshia\nLashanda\nLashonda\nSheila\nSherri\nBridgett\nBridgette\nChristin\nDawn\nDebra\nKeisha\nOlivia\nRaven\nRobyn\nTraci\nChrystal\nGina\nGwendolyn\nHeidi\nHelen\nJackie\nJoyce\nKathy\nKrista\nLaquita\nLatisha\nLaurie\nPatrice\nShelia\nAimee\nAlana\nAlecia\nHayley\nJasmine\nKenya\nMichele\nMolly\nRandi\nRuby\nShayla\nSherita\nSophia\nSuzanne\nTammie\nAlexandria\nBetty\nChiquita\nConnie\nKarla\nLawanda\nSally\nSandy\nShawna\nTia\nTracey\nValencia\nWanda\nAbigail\nAlesha\nAshlee\nCara\nDesiree\nJeannie\nJodi\nKasey\nLadonna\nMarcia\nMindy\nRose\nStacie\nTanisha\nTheresa\nValarie\nAmelia\nAngelia\nAnita\nAudra\nBeth\nCarly\nCarol\nDavida\nDenise\nGabrielle\nJennie\nKala\nStaci\nTawanda\nTiffani\nAlexandra\nAshleigh\nBobbie\nChastity\nDaisy\nDeidre\nDemetria\nEricka\nGloria\nGrace\nHope\nJacquelyn\nKira\nKristal\nLashondra\nLashundra\nLatrice\nLee\nMaranda\nMeagan\nNina\nPriscilla\nSelena\nShanika\nShemeka\nSylvia\nSyreeta\nTanika\nTiffanie\nTracie\nAisha\nAllyson\nBelinda\nBrandon\nCameron\nChrista\nCristy\nFaith\nFallon\nJane\nJessie\nJodie\nJohn\nJuanita\nKatharine\nKeri\nLashunda\nLatanya\nLena\nLynn\nMandi\nMarilyn\nMarion\nMarlena\nOctavia\nPenny\nRenee\nShamika\nShana\nShanta\nShauna\nShenika\nTaylor\nTeri\nTisha\nAmberly\nAngelina\nAngie\nAnne\nAnnette\nAntoinette\nCandi\nCathy\nChristen\nChristi\nChristopher\nDestiny\nDiane\nEva\nFelecia\nHolley\nHolli\nJaclyn\nJoni\nKassie\nKenyatta\nKimberley\nKrystle\nLaquanda\nLora\nMarie\nMisti\nRobbie\nTomika\nAdriane\nAlice\nAriel\nBlair\nCandis\nCeleste\nChandra\nChristian\nClarissa\nDianna\nGena\nGlenda\nJami\nJanie\nJanna\nJenifer\nKacy\nKeshia\nKyla\nLakenya\nLashandra\nLatoria\nLatosha\nLucretia\nLucy\nLyndsey\nMaggie\nMarsha\nMichael\nNaomi\nPrincess\nRita\nRyan\nShanita\nShasta\nShena\nSheree\nShirley\nStarla\nTerra\nVera\nVivian\nWendi\nAlyson\nAngelica\nBriana\nCandy\nCasandra\nCatrina\nChassidy\nChelsea\nChristal\nClaire\nDeana\nDeidra\nDeirdre\nEmma\nFelisha\nGeorgia\nGretchen\nHillary\nJade\nJames\nJoanie\nJoann\nJordan\nJudy\nKaci\nKandice\nKendall\nKesha\nKia\nKristan\nKristine\nLakecia\nLara\nLashaundra\nLaurel\nMarissa\nMartina\nMaya\nMyra\nNatosha\nNikita\nRuth\nShalonda\nShamekia\nShaneka\nSharonda\nShawanda\nSheri\nSomer\nStephenie\nTanesha\nTawana\nTerry\nTessa\nAbbie\nAlaina\nAlanna\nAlisa\nAlissa\nAlyssa\nBeatrice\nBetsy\nBrianna\nCarey\nClaudia\nDeandrea\nEboni\nEdith\nEsther\nGail\nIvy\nJacklyn\nJada\nJasmin\nJason\nJeanne\nJenna\nJeri\nJoan\nJody\nJohanna\nJoseph\nJudith\nKaty\nKecia\nKimberli\nKisha\nLasonya\nLatara\nLeann\nLeanne\nLillian\nMarci\nMarcus\nMarian\nMaryann\nMia\nNakia\nNakisha\nRamona\nRobert\nRochelle\nRosalyn\nRosemary\nRosie\nRoxanne\nShalanda\nShante\nSheneka\nSonja\nTalisha\nTamekia\nTana\nTemeka\nTiffiny\nTomeka\nUrsula\nAdrianne\nAerial\nAlesia\nAnitra\nApryl\nBecky\nBernice\nBianca\nBillie\nCallie\nCamelia\nCamille\nCasie\nCassey\nCassidy\nCecilia\nCharles\nCristin\nDarlene\nDelisa\nDianne\nDionne\nDora\nElaine\nElisa\nElisha\nEugenia\nFarrah\nHailey\nIngrid\nJean\nJeanette\nJeanna\nJerri\nJesse\nJo\nJocelyn\nJoi\nJoshua\nKacie\nKandi\nKanesha\nKate\nKatina\nKatrice\nKeela\nKerry\nKeturah\nKimberlee\nKyra\nLaci\nLakia\nLakresha\nLaquinta\nLashae\nLatoyia\nLoretta\nLouise\nMaegan\nMarla\nMarquetta\nMarquita\nMerry\nMildred\nMindi\nMollie\nNiki\nPaige\nPauline\nPhyllis\nPorsha\nPortia\nPrecious\nRosa\nRosalind\nRosanna\nScarlet\nSelina\nSerena\nShae\nShanavia\nShareka\nShea\nShelby\nShellie\nShemika\nShenita\nShenna\nSherika\nSherrie\nSheryl\nSimone\nSommer\nStacia\nStephaine\nStephine\nTamala\nTameeka\nTamela\nTamra\nTangela\nTenesha\nTenika\nTera\nTiffaney\nTiffiney\nVicki\nWindy\nJennifer\nAshley\nJessica\nAmanda\nCrystal\nTiffany\nStephanie\nHeather\nKimberly\nAmy\nApril\nMary\nMelissa\nAmber\nElizabeth\nSarah\nRachel\nLaura\nAngela\nEmily\nErica\nLindsey\nRebecca\nBrandy\nLauren\nAndrea\nJamie\nAlicia\nErin\nBrandi\nMarquita\nChristina\nKelly\nKristen\nKatherine\nAnna\nLeslie\nMichelle\nLisa\nMegan\nHolly\nSamantha\nCourtney\nLindsay\nMisty\nNicole\nLatoya\nMonica\nShannon\nCarrie\nAllison\nJulie\nLatasha\nChristy\nNatasha\nNatalie\nCandace\nKrystal\nCynthia\nCandice\nTara\nKayla\nSara\nBrittany\nTonya\nKatie\nKristin\nKathryn\nMiranda\nStacy\nVictoria\nCatherine\nKaren\nMargaret\nMelanie\nStacey\nDanielle\nPamela\nTracy\nValerie\nLeah\nRobin\nDana\nKristy\nHaley\nPatricia\nFelicia\nTabitha\nBrooke\nTammy\nWendy\nTina\nAlexis\nHannah\nLatonya\nMeredith\nSabrina\nAdrienne\nCasey\nCassandra\nJacqueline\nKristi\nLori\nBethany\nSusan\nAlisha\nCassie\nLacey\nVeronica\nSharon\nSheena\nKatrina\nJulia\nRachael\nKelli\nVirginia\nCarla\nErika\nStefanie\nDonna\nTabatha\nWhitney\nAngel\nCaroline\nEbony\nSummer\nCarolyn\nMaria\nBrittney\nJenny\nKristina\nLinda\nTasha\nRebekah\nSherry\nYolanda\nAudrey\nChasity\nTeresa\nAlison\nChristine\nTameka\nPaula\nVanessa\nCharity\nJillian\nMeghan\nOlivia\nRhonda\nBarbara\nChristie\nLeigh\nMonique\nMorgan\nRegina\nTamara\nTamika\nAmelia\nBridget\nCarmen\nCheryl\nJanice\nMandy\nSonya\nAshleigh\nDeborah\nJanet\nKellie\nKendra\nBrenda\nDenise\nHollie\nKasey\nKristie\nLydia\nMallory\nMelinda\nCharlotte\nConstance\nDeanna\nJana\nTerri\nAnnie\nBrandie\nBridgett\nJoanna\nJoy\nKeisha\nKelley\nLakesha\nLakeshia\nLashonda\nLesley\nShelley\nToni\nAnne\nBeverly\nConnie\nDiana\nDorothy\nJenna\nKarla\nKeri\nMartha\nNancy\nNina\nSelena\nSophia\nAlecia\nCharlene\nGina\nGinger\nLakeisha\nLakisha\nMolly\nTheresa\nAlice\nAlisa\nAnn\nDawn\nDesiree\nJacquelyn\nKrystle\nLatisha\nPaige\nPatrice\nSherri\nStacie\nTracey\nBonnie\nCarol\nDebra\nHeidi\nJaime\nJoyce\nKenya\nKerri\nMeagan\nNikki\nSandra\nShanna\nTanesha\nTanya\nTrista\nAbby\nAdrian\nAutumn\nBritney\nClarissa\nFrances\nHelen\nJasmine\nMindy\nRandi\nShameka\nShawna\nShayla\nShelly\nTia\nTraci\nAudra\nCindy\nFallon\nGrace\nPriscilla\nValencia\nAshlee\nChrystal\nDaphne\nKara\nKimberley\nMelody\nNichole\nRenee\nRobyn\nAbigail\nDavida\nEllen\nJill\nJodi\nKari\nLacy\nLashanda\nLaurie\nMichael\nRaven\nRyan\nSandy\nShanika\nTera\nAlesia\nAngelia\nAriel\nCandy\nChristen\nEva\nFelecia\nJackie\nKathleen\nKrista\nLana\nLena\nMartina\nSuzanne\nTessa\nTiffani\nAimee\nBianca\nBillie\nCathy\nJaclyn\nKaci\nLashunda\nLatanya\nLeanne\nLee\nMarie\nShamika\nSherita\nSherrie\nTamekia\nTanisha\nTiffanie\nAlana\nBobbie\nCara\nCecilia\nCeleste\nChiquita\nDeidre\nEvelyn\nJames\nJami\nJennie\nJudith\nKatharine\nKristal\nLaquita\nLatosha\nLatoyia\nLetitia\nMaegan\nMarquitta\nNaomi\nSerena\nShalonda\nShana\nSharonda\nShauna\nShenika\nShirley\nTeri\nTerra\nAdria\nAmie\nBetty\nChastity\nChrista\nChristian\nClaire\nGeneva\nHayley\nHolley\nJanna\nJodie\nJohnnie\nJonathan\nJordan\nLaquanda\nLashondra\nLatoria\nMaranda\nMarilyn\nMarissa\nMia\nRose\nRuth\nShaneka\nShonda\nTenisha\nTiffaney\nTracie\nWilliam\nAleshia\nAllyson\nAngie\nAnita\nAntionette\nAshlie\nBrandon\nCallie\nCandance\nCandi\nCassidy\nChristin\nCortney\nDeana\nDeidra\nDestiny\nDevin\nEmma\nGloria\nGwendolyn\nHolli\nJean\nJocelyn\nKathy\nLadonna\nLashandra\nMaggie\nMichele\nRochelle\nRuby\nSally\nShalanda\nShaquita\nShelia\nShemeka\nShemika\nSheri\nStaci\nStevie\nTawanda\nTaylor\nWanda\nWindy\nAdrianne\nAisha\nAlesha\nAlishia\nAlyson\nAntoinette\nAshely\nBelinda\nBlair\nBridgette\nBrooklyn\nCaitlin\nCarey\nCasandra\nCecelia\nChandra\nChelsea\nChristopher\nCiji\nDelilah\nDiane\nEboni\nEdna\nEric\nEricka\nGabrielle\nJane\nJenifer\nJessie\nJoni\nJuanita\nJudy\nJustin\nKala\nKandace\nKendall\nKia\nKirby\nLacie\nLaquinta\nLaquisha\nLaurel\nLawanda\nLeila\nMarian\nMarjorie\nMeridith\nMiriam\nMyra\nNedra\nOctavia\nRita\nShanda\nShanta\nSharhonda\nShawanda\nShena\nSheree\nSonia\nTori\nVicki\nZandra\nAja\nAlexandra\nAlexandria\nAndria\nAngelica\nAnnette\nBeth\nCamilla\nCandis\nCarissa\nCarly\nCherie\nChristi\nClara\nClaudia\nCora\nCyrstal\nDaisy\nDeandrea\nDixie\nDwan\nElisha\nFaith\nHillary\nIris\nJade\nJanie\nJoseph\nJosie\nKandice\nKerrie\nKerry\nKristian\nKristine\nKyla\nLashundra\nLatrice\nLea\nLillian\nLora\nLucy\nLynn\nMandi\nMarla\nMarlena\nMatthew\nMisti\nNikia\nPenny\nPortia\nRamona\nRobbie\nRobert\nShakira\nShelby\nSherika\nSonja\nSylvia\nTamesha\nTequila\nTiffney\nToccara\nTosha\nTyesha\nVickie\nVivian\nAbbie\nAerial\nAlaina\nAlanna\nAlfreda\nAlyssa\nAnya\nAubrey\nBriana\nBrigette\nCamille\nCarletta\nCasie\nCharla\nCharles\nChassidy\nCigi\nCristina\nDanna\nDarla\nDemetria\nDemetrius\nDionne\nDoris\nElaine\nEmilee\nFarrah\nGlenda\nGretchen\nHilary\nHope\nIesha\nIndia\nIngrid\nJamelle\nJeri\nJerri\nJoan\nJoanie\nJohn\nJoshua\nKacy\nKaryn\nKate\nKaty\nKenisha\nKenyatta\nKenyetta\nKesha\nKeshia\nKim\nKira\nLashae\nLashaundra\nLatia\nLatricia\nLucinda\nLucretia\nMarcie\nMarguita\nMarquisha\nMaya\nMeaghan\nNakita\nNatashia\nNickie\nNora\nPrincess\nRenae\nRoberta\nRosanna\nSasha\nSavannah\nShandi\nShareka\nShari\nShenna\nShondra\nSusie\nTakesha\nTamra\nTana\nTerry\nTierra\nTiffiny\nTomika\nTonia\nTricia\nValarie\nAshley\nJessica\nJennifer\nAmanda\nCrystal\nTiffany\nHeather\nKimberly\nStephanie\nElizabeth\nApril\nMary\nAmy\nAmber\nRachel\nEmily\nSarah\nLaura\nMelissa\nLauren\nLatoya\nErica\nLindsey\nRebecca\nAngela\nBrittany\nMegan\nBrandy\nAndrea\nBrandi\nChristina\nKristen\nAlicia\nCourtney\nKatherine\nErin\nHolly\nShannon\nAnna\nKelly\nJamie\nLeslie\nDanielle\nSamantha\nMichelle\nLindsay\nCandace\nNicole\nVictoria\nCandice\nMisty\nKristin\nKatie\nLatasha\nMelanie\nSara\nAllison\nSheena\nChristy\nNatalie\nMonica\nJulie\nKrystal\nTara\nMiranda\nCarrie\nLisa\nBrittney\nNatasha\nWhitney\nPamela\nStacey\nMarquita\nKristy\nStacy\nCassandra\nKathryn\nTabitha\nAlexis\nJenna\nLeah\nTonya\nSusan\nAlisha\nDana\nLori\nCasey\nEbony\nBethany\nKayla\nPatricia\nFelicia\nCatherine\nCynthia\nMallory\nCassie\nHaley\nJacqueline\nMargaret\nKaren\nJulia\nErika\nTracy\nKristi\nValerie\nHannah\nMeghan\nJoanna\nKristina\nSabrina\nBrooke\nKelli\nKendra\nSharon\nChristine\nLacey\nRobin\nWendy\nAdrienne\nAngel\nChasity\nLatonya\nTammy\nTina\nAlison\nMeredith\nTamara\nVeronica\nJasmine\nKeri\nLeigh\nVirginia\nKatrina\nVanessa\nTeresa\nAudrey\nMelinda\nRhonda\nKara\nRebekah\nCarla\nCaroline\nCarolyn\nDonna\nLakesha\nMorgan\nSummer\nTasha\nJenny\nKasey\nKathleen\nMeagan\nNancy\nRachael\nRegina\nShanna\nStefanie\nAutumn\nCarmen\nMelody\nBarbara\nChristie\nShelly\nAbby\nAmelia\nAnn\nHollie\nKellie\nShana\nSonya\nAdrian\nBridget\nCheryl\nDeborah\nSandra\nDorothy\nGina\nMartha\nSavannah\nSophia\nTerri\nAlana\nDiana\nHillary\nJoy\nLydia\nMaria\nShelley\nTamika\nToni\nChelsea\nConstance\nDenise\nRaven\nTameka\nYolanda\nAbigail\nBeverly\nBobbie\nJana\nLatosha\nLinda\nStacie\nTracey\nCharlotte\nCindy\nDeanna\nHope\nJillian\nKarla\nLatisha\nMandy\nRobyn\nSherry\nAlecia\nAlexandria\nBrenda\nCarol\nCharity\nDebra\nJanice\nKristie\nKrystle\nLakeshia\nLaquita\nAshleigh\nBridgett\nChristen\nDevin\nFrances\nKari\nKelley\nKrista\nTrista\nAimee\nBonnie\nDaphne\nEllen\nHelen\nJanet\nJessie\nJordan\nLashonda\nMaggie\nMaranda\nMonique\nOlivia\nPaula\nPriscilla\nTraci\nBrandie\nCallie\nJill\nJodi\nKathy\nKerri\nLana\nMolly\nNikki\nPatrice\nSherri\nTabatha\nTaylor\nTia\nAshlee\nBeth\nBridgette\nBritney\nCara\nChiquita\nChrista\nConnie\nGinger\nHilary\nJanna\nJenifer\nKirby\nLakeisha\nMarie\nNina\nRandi\nRenee\nSantana\nShayla\nTanisha\nTheresa\nVivian\nAlaina\nCharlene\nDeidra\nDominique\nEvelyn\nJaclyn\nJacquelyn\nJodie\nLakisha\nLesley\nNaomi\nOctavia\nShawna\nSheila\nTanya\nValencia\nAnne\nAnnie\nBrandon\nChristi\nChristian\nDesiree\nEva\nGrace\nJoyce\nJuanita\nLatoria\nLucy\nSelena\nShameka\nSherita\nSuzanne\nAlexandra\nAllyson\nAshely\nAudra\nBelinda\nCecilia\nCelia\nChandra\nChristin\nClarissa\nFallon\nHolley\nJanie\nJena\nJocelyn\nKeisha\nLacy\nLatrice\nLaurie\nLawanda\nMarilyn\nMartina\nMiriam\nRita\nRose\nRuth\nSylvia\nTomeka\nAntoinette\nBrianna\nCarly\nDeana\nElisabeth\nElise\nHeidi\nHolli\nJaime\nJoni\nJoshua\nLashanda\nLeanne\nLee\nMindy\nPeggy\nRyan\nSharonda\nShauna\nShirley\nTamekia\nTera\nAbbie\nAlice\nAmberly\nAngelia\nAnita\nAshlie\nBianca\nBreanna\nCandis\nChrystal\nCortney\nCristy\nDawn\nDestiny\nEricka\nGabrielle\nGena\nGloria\nIndia\nJackie\nJade\nJoycelyn\nKenya\nMichele\nPaige\nShamika\nShanika\nShelia\nShellie\nShenika\nTawanda\nTessa\nTiffanie\nAlyssa\nAnnette\nBetty\nBlair\nBritni\nCandi\nCandy\nCherish\nChristal\nDeidre\nDianna\nDoris\nEboni\nFaith\nJacklyn\nJada\nJami\nJody\nJudy\nKaila\nKandace\nKendall\nKristan\nLadonna\nLaquanda\nLashunda\nLea\nLillian\nLora\nMarion\nNakia\nPortia\nRacheal\nRenita\nSandy\nShaquita\nShonda\nTaryn\nTerra\nTierra\nTiffani\nWilliam\nAlyson\nAngelica\nAntionette\nBetsy\nCasie\nChassity\nClaudia\nDenisha\nDusty\nEdith\nElisha\nGwendolyn\nHayley\nKassie\nKelsey\nKimberley\nKristal\nLakendra\nLashaundra\nLatoyia\nLeanna\nLena\nLyndsey\nMaegan\nMarguita\nMarissa\nMia\nMollie\nMyra\nNedra\nPrincess\nShanta\nShena\nShenna\nSommer\nSonja\nTawanna\nTeela\nTemeka\nTeri\nTosha\nTracie\nTrisha\nTyler\nWanda\nAdrianne\nAlesha\nAlesia\nAlisa\nAndria\nAriel\nBecky\nBillie\nBriana\nCaitlin\nCarissa\nCasandra\nCassidy\nCathy\nClaire\nDiane\nEdna\nFalon\nJamese\nJane\nJeanette\nJonathan\nJustin\nKacey\nKacie\nKala\nKaty\nKenyetta\nKiana\nKourtney\nLaquinta\nLaquisha\nLashandra\nLashundra\nLeann\nLorrie\nLucretia\nLynn\nMalinda\nMarcia\nMarcie\nMarjorie\nMarla\nMarquetta\nMichael\nNakeisha\nNichole\nNikita\nPrecious\nRhiannon\nRochelle\nRosa\nRosalyn\nShamekia\nShara\nSharita\nShea\nShelby\nSheri\nTammie\nTanesha\nTerica\nWendi\nAleshia\nAnastasia\nAngie\nAnisha\nAnitra\nAshlea\nAshly\nBrittani\nCamille\nCeleste\nChanel\nCheri\nCherie\nChristopher\nCicely\nCiji\nClara\nCorey\nDavida\nDeandra\nDeandrea\nDena\nEcho\nElaine\nFelecia\nGeorgia\nHanna\nIris\nJeana\nJohanna\nJohn\nKandice\nKatharine\nKerry\nKesha\nKristian\nKristine\nKyla\nLakesia\nLashaunda\nLatarsha\nLoren\nMagen\nMamie\nMarcus\nMarkita\nMarquitta\nMiracle\nMisti\nNadia\nNakita\nNatashia\nPenny\nPorsha\nRamona\nRaquel\nRobbin\nRosie\nSally\nSavanna\nShalonda\nShanda\nShantel\nShareka\nShayna\nShemika\nSheree\nStaci\nStarla\nTaneka\nTangela\nTelisha\nTenesha\nTenisha\nTerrica\nThelma\nTiesha\nTiffaney\nTwyla\nTyesha\nVickie\nAshley\nJessica\nJennifer\nAmanda\nKimberly\nBrittany\nTiffany\nCrystal\nHeather\nStephanie\nElizabeth\nMary\nAmber\nAmy\nLauren\nLaura\nRachel\nApril\nEmily\nMegan\nSarah\nMelissa\nChristina\nJamie\nErica\nAndrea\nCourtney\nAngela\nRebecca\nLindsey\nKatherine\nWhitney\nAnna\nLatoya\nBrandy\nHolly\nBrandi\nAlicia\nErin\nBrittney\nKelly\nDanielle\nKatie\nKristen\nAllison\nShannon\nSamantha\nKrystal\nMichelle\nLeslie\nTara\nKathryn\nNicole\nLindsay\nChristy\nKristin\nSara\nCandace\nVictoria\nCandice\nJulie\nNatalie\nLisa\nLeah\nPamela\nCatherine\nFelicia\nKristina\nKristy\nHaley\nMisty\nMonica\nSheena\nTonya\nMiranda\nStacy\nHannah\nLatasha\nMelanie\nNatasha\nKayla\nCynthia\nCasey\nMargaret\nCassandra\nTabitha\nDana\nMeagan\nBritney\nJasmine\nMallory\nTamara\nJenna\nMeghan\nAlisha\nCarrie\nValerie\nDominique\nTina\nBethany\nLori\nPatricia\nSabrina\nStacey\nCassie\nMorgan\nKaren\nChristine\nVirginia\nKristi\nMeredith\nRobin\nSusan\nBridget\nAngel\nBrooke\nEbony\nJacqueline\nAlexis\nKendra\nKrystle\nTracy\nJulia\nKatrina\nAdrienne\nKasey\nChasity\nTasha\nAshlee\nRegina\nSantana\nDeanna\nErika\nLacey\nLatonya\nNikki\nVanessa\nSummer\nChelsea\nJenny\nKelli\nSherry\nTammy\nAlison\nJoanna\nLinda\nBonnie\nCaroline\nCarolyn\nLeigh\nRachael\nSavannah\nTerri\nCarla\nCharity\nTabatha\nTeresa\nFrances\nKara\nMarquita\nRebekah\nVeronica\nAnnie\nHillary\nKathleen\nMandy\nShana\nWendy\nAdrian\nDonna\nLatisha\nMartha\nMonique\nSharon\nAudrey\nCarmen\nJana\nKeri\nRaven\nTameka\nAshleigh\nHope\nJillian\nLaquita\nMaria\nShameka\nSonya\nAlana\nJordan\nJoy\nMelinda\nAbby\nBarbara\nBridgett\nDiana\nJacquelyn\nJami\nSandra\nToni\nBrandie\nChiquita\nChristie\nDeborah\nHollie\nLydia\nMelody\nNancy\nRhonda\nShanna\nTanisha\nValencia\nAimee\nConstance\nDawn\nKeisha\nLakeisha\nMaegan\nMaggie\nMolly\nPatrice\nRandi\nEvelyn\nGina\nHelen\nIndia\nJodi\nKerri\nAnn\nBeverly\nBridgette\nHilary\nKari\nLacy\nLashonda\nLyndsey\nShayla\nSophia\nTamika\nAlice\nBrittani\nChristen\nConnie\nDeandra\nDenise\nGinger\nJada\nKelley\nKrista\nRobyn\nShelly\nSierra\nTaylor\nYolanda\nAbigail\nAnita\nBelinda\nCaitlin\nCharlene\nCharlotte\nClaire\nGabrielle\nJessie\nLakesha\nLakeshia\nLashunda\nLora\nMindy\nNina\nPriscilla\nRyan\nShelby\nStacie\nTraci\nAlexandria\nBetty\nChrista\nChristi\nCortney\nDeidra\nJaclyn\nRenee\nShaquita\nSylvia\nTanya\nAlecia\nAnne\nAudra\nBeth\nCallie\nCara\nChristian\nClaudia\nFallon\nHayley\nJaime\nJocelyn\nLana\nLatosha\nNichole\nPaige\nSharonda\nShelley\nStefanie\nTera\nTracey\nTrista\nAmelia\nAngelica\nAutumn\nBecky\nBobbie\nCarol\nChrystal\nDaphne\nDebra\nEllen\nHeidi\nJanet\nJennie\nKaty\nKenya\nLaurie\nMichael\nOctavia\nShanta\nSommer\nTiara\nTiffanie\nTosha\nAlaina\nAlesha\nAllyson\nAmberly\nBlair\nBrenda\nChristin\nCindy\nDeidre\nDesiree\nDorothy\nJackie\nJanice\nJill\nJodie\nKaci\nKala\nKarla\nKatharine\nKellie\nKeshia\nLashanda\nLashundra\nLatoyia\nLatrice\nLena\nMarquetta\nOlivia\nPrincess\nRuth\nSelena\nShenika\nShirley\nStaci\nAlexandra\nBreanna\nBritany\nCathy\nCecilia\nCiara\nDomonique\nEmma\nFelisha\nGloria\nGrace\nJane\nJerri\nJoyce\nKristal\nKristie\nLatoria\nLee\nLillian\nMagan\nMarie\nMarion\nShaneka\nShemeka\nSydney\nTaryn\nTessa\nTia\nAdriane\nAlyssa\nBillie\nBrandon\nCarissa\nCelia\nCheryl\nDiandra\nDianna\nDominque\nDoris\nEricka\nFaith\nFelecia\nGwendolyn\nJenifer\nLaci\nLadonna\nLashandra\nLateshia\nLynsey\nMandi\nMarilyn\nMarkita\nMia\nShauna\nShequita\nSherita\nStarla\nTamra\nTanesha\nTerrica\nAlisa\nAntionette\nBrenna\nBrittny\nBrooklyn\nCandi\nCarly\nCasie\nCassidy\nCierra\nCorey\nCristina\nCristy\nElaine\nElise\nElisha\nHailey\nIris\nJade\nJody\nJonathan\nJoni\nJuanita\nJudy\nKacie\nKathy\nKenyatta\nKirsten\nKourtney\nLeanne\nLesley\nMeaghan\nMicaela\nMichele\nMollie\nNakia\nNaomi\nNikita\nRose\nSandi\nShanika\nShanita\nShante\nShasta\nShelia\nShonda\nTamekia\nTasia\nTawanda\nTerasha\nTerra\nTheresa\nVivian\nWanda\nAlyson\nAmie\nAnastasia\nAndrew\nAngelia\nAshely\nBianca\nBritni\nBrittnay\nCameron\nCandra\nCatrina\nChastity\nChristal\nChristopher\nClara\nClarissa\nCody\nCristin\nDaisy\nDemetria\nDestiny\nDevon\nEboni\nEbonie\nElena\nFalon\nHolli\nJameka\nJerica\nJudith\nKandace\nKandis\nKellye\nKia\nKira\nLakenya\nLaquanda\nLaurel\nLawanda\nLinsey\nLoren\nLoretta\nLorie\nMadeline\nMagen\nMaranda\nMarisa\nNakita\nPaula\nPeggy\nPenny\nPorsha\nPrecious\nRacheal\nRachelle\nRikki\nRita\nRuby\nShamekia\nShamika\nShanda\nShellie\nSheree\nSherri\nSuzanne\nTeela\nTenisha\nThomasina\nTiffani\nTiffney\nTracie\nTyesha\nYvonne\nAbbey\nAbbie\nAdrianne\nAmi\nAngie\nAnsley\nAsia\nBetsy\nBlaire\nBriana\nBrianna\nBrianne\nBrittni\nCathryn\nCeleste\nChantel\nCharla\nCourtni\nDena\nDevan\nEdith\nElisabeth\nEva\nFarrah\nFrancesca\nGlenda\nHolley\nJames\nJanie\nJason\nJeana\nJohn\nJoshua\nJoycelyn\nJustin\nJustina\nKaley\nKatheryn\nKenisha\nKenyetta\nKeona\nKori\nLacie\nLakisha\nLara\nLatanya\nLea\nLesli\nMackenzie\nMadison\nMadonna\nMarla\nMartina\nMeghann\nNicholas\nRegan\nRena\nReva\nSade\nSally\nSantanna\nSavanna\nScarlett\nSerena\nShantae\nShareka\nShari\nShaundra\nShawanda\nShawna\nShea\nSheila\nShemika\nSherrell\nSonja\nStevie\nTakeshia\nTamela\nTaneshia\nTanika\nTenesha\nTequila\nTeri\nTerrie\nTiffiny\nTricia\nTrinity\nTrisha\nTyler\nWendi\nAshley\nJessica\nAmanda\nJennifer\nBrittany\nTiffany\nHeather\nKimberly\nAmber\nWhitney\nStephanie\nElizabeth\nLauren\nSarah\nMary\nCrystal\nAmy\nRachel\nEmily\nLaura\nCourtney\nMegan\nBrittney\nErica\nSamantha\nApril\nMelissa\nAnna\nRebecca\nLindsey\nKatherine\nChristina\nJamie\nAndrea\nErin\nKelly\nAngela\nLatoya\nBrandi\nSara\nAllison\nKristen\nNicole\nKayla\nAlicia\nCandace\nKatie\nMallory\nBrandy\nShannon\nHolly\nFelicia\nBritney\nDanielle\nKrystal\nVictoria\nKendra\nHannah\nKristin\nLeslie\nMichelle\nLindsay\nLisa\nCandice\nNatalie\nTara\nHaley\nKathryn\nJulie\nMorgan\nCasey\nMeagan\nTabitha\nCarrie\nLeah\nMonica\nBethany\nJasmine\nKristina\nRachael\nCatherine\nChristy\nKristy\nSavannah\nDominique\nMisty\nLatasha\nJacqueline\nMargaret\nNatasha\nStacy\nRobin\nTamara\nMelanie\nMiranda\nCassie\nSabrina\nKatrina\nPamela\nSusan\nVeronica\nAlison\nBrooke\nStacey\nAlisha\nCharity\nTracy\nCynthia\nErika\nJulia\nMeghan\nTonya\nChristine\nJordan\nMeredith\nPatricia\nAlexis\nKaren\nJenna\nKelli\nRebekah\nSummer\nBridget\nLori\nEbony\nAshton\nVanessa\nCassandra\nKasey\nTina\nCaroline\nAngel\nChasity\nTeresa\nCarla\nDana\nSantana\nSharon\nTammy\nValerie\nChrista\nNikita\nRegina\nSheena\nAdrienne\nKristi\nLacey\nVirginia\nWendy\nJoanna\nLakeshia\nMonique\nKathleen\nKrista\nMaria\nMolly\nJana\nKeri\nShanna\nAshleigh\nBarbara\nChiquita\nDeanna\nHillary\nMelinda\nSade\nChelsea\nFrances\nJoy\nKrystle\nNikki\nSierra\nTanisha\nCharlotte\nCortney\nKari\nLeigh\nMelody\nRhonda\nTabatha\nAudrey\nDenise\nIndia\nSonya\nTameka\nTasha\nAshlee\nCaitlin\nDiana\nHollie\nKelley\nLatonya\nBridgette\nCarolyn\nChristen\nDeborah\nJessie\nJillian\nLashonda\nShayla\nToni\nAngelica\nAnnie\nAutumn\nChristie\nLatisha\nMarquita\nMartha\nSandra\nTerri\nAbby\nAlexandra\nAlexandria\nAlice\nAshely\nCharlene\nGabrielle\nLaquita\nMandy\nStefanie\nTheresa\nTracey\nAnita\nDonna\nDorothy\nEmma\nGloria\nHope\nKelsey\nKristie\nLakisha\nLesley\nLydia\nOlivia\nPaige\nPatrice\nRaven\nRobyn\nTraci\nAnn\nCarmen\nChristin\nCiara\nDebra\nEllen\nEvelyn\nFelecia\nJanice\nKara\nKeisha\nMagan\nNancy\nSharonda\nSherry\nTamika\nValencia\nAbigail\nAmelia\nBrandie\nBrenda\nBritni\nCara\nChandra\nChristian\nDestiny\nFaith\nKaci\nKellie\nLakeisha\nLakendra\nShana\nTaylor\nAimee\nAllyson\nBeth\nBritany\nCallie\nCarly\nCheryl\nClaire\nGina\nJacquelyn\nJanna\nJenny\nKerri\nLacy\nLinda\nMadison\nMagen\nMaggie\nNina\nOctavia\nSasha\nYolanda\nAlana\nAlecia\nAlyssa\nAmberly\nAnne\nBeverly\nBonnie\nBridgett\nCarol\nCierra\nCindy\nDeidra\nGrace\nJackie\nJodi\nJoni\nKala\nKatelyn\nKendall\nLatosha\nLaurie\nMarie\nMarissa\nMarkita\nPrincess\nStaci\nStacie\nTeri\nTia\nTiffani\nAdrian\nBrianna\nCecilia\nChrystal\nClarissa\nConstance\nDeidre\nElisabeth\nHailey\nHelen\nHilary\nLara\nLatoria\nNichole\nRyan\nSandy\nShelly\nSherri\nTanya\nTiffanie\nTrisha\nAntoinette\nBetsy\nChristi\nConnie\nDawn\nEricka\nGinger\nJacklyn\nJaime\nKaitlin\nLacie\nLaurel\nLyndsey\nMalorie\nMichele\nMindy\nRacheal\nRandi\nRita\nShanta\nShelley\nShirley\nSuzanne\nTori\nWhittney\nAddie\nAntionette\nAudra\nBecky\nBrandon\nCandis\nDemetria\nDevin\nHolli\nIvy\nJada\nJade\nJaimie\nJami\nJocelyn\nKassie\nKathy\nKaty\nKeshia\nLakesha\nLana\nLashandra\nLatrice\nLillian\nMaegan\nMarilyn\nMeaghan\nPaula\nPortia\nRenee\nShameka\nShanika\nSherika\nTiara\nAisha\nAlisa\nAllie\nAna\nAsia\nBailey\nBianca\nBrittani\nBrittni\nJeanette\nJill\nJuanita\nKatharine\nKaylee\nLashondra\nLoretta\nMadeline\nMaranda\nMichael\nMollie\nPeggy\nRochelle\nRuth\nSantanna\nShaina\nShamika\nShanda\nShaneka\nShelia\nSylvia\nTanesha\nTierra\nTosha\nTyesha\nYvonne\nAbbie\nAdrianne\nAlesha\nAngelia\nBeatrice\nBriana\nCameron\nCandy\nCassidy\nCatrina\nCeleste\nClara\nDaphne\nDiane\nDixie\nEbonee\nEva\nFallon\nGlenda\nHayley\nHeidi\nHolley\nJanet\nJena\nJennie\nJodie\nJustine\nKenyatta\nKimberley\nKristian\nLaci\nLadonna\nLatara\nLatricia\nMelisa\nNiki\nPrecious\nPriscilla\nShante\nSharita\nSheila\nShelby\nSherita\nSophia\nStevie\nSydney\nTashia\nTerra\nTiffaney\nTrista\nValarie\nAbbey\nAlyson\nAnastasia\nAriel\nAshlyn\nAva\nBrianne\nBrittaney\nCari\nCarissa\nCathryn\nCayla\nChastity\nCherish\nCiera\nCorey\nCristy\nDanita\nDavida\nDeandra\nDena\nDesiree\nDomonique\nEdith\nGwendolyn\nHaleigh\nHanna\nJaclyn\nJamila\nJerri\nJohanna\nJoshua\nJoyce\nJudith\nKacie\nKasie\nKatina\nKenya\nKirby\nKirsten\nKourtney\nKristal\nLaquanda\nLashanda\nLatoyia\nLena\nLora\nLucy\nMartina\nNakia\nNaomi\nPhylicia\nRosa\nRuby\nSally\nShalonda\nShanita\nShawna\nShea\nShemika\nShenika\nSidney\nTamra\nTaneshia\nTenisha\nTiesha\nTracie\nVicki\nAlanna\nAlesia\nAndria\nAngelina\nAnika\nApryl\nArielle\nAshli\nAubrey\nBetty\nBlair\nBonita\nBreanna\nBrett\nBrittnee\nBrittnie\nBrooklyn\nCandi\nCandra\nCasie\nChelsey\nChristopher\nColleen\nDaniel\nDevon\nDianna\nEboni\nEleanor\nElise\nGeorgia\nHali\nIris\nJanie\nJaponica\nJasmin\nJazmin\nJean\nJenifer\nJeremy\nJerica\nJoann\nJohn\nJulianne\nKaila\nKatrice\nKia\nKirstin\nKisha\nKristan\nKristine\nKyla\nKylie\nLacretia\nLeanna\nLeanne\nLinsey\nMandi\nMarion\nMarsha\nMindi\nNakita\nParis\nPeyton\nQuinetta\nRamona\nRaquel\nRonda\nRosalind\nSable\nSadie\nSavanna\nScarlett\nShanae\nShaquitta\nShardae\nSharika\nShasta\nShauna\nShaundra\nShemeka\nShenita\nSommer\nSonja\nStefani\nSunny\nTabetha\nTamekia\nTaneisha\nTaneka\nTawana\nTemeka\nTessa\nTimothy\nTristan\nVanity\nVera\nWindy\nZandra\nAshley\nJessica\nAmanda\nBrittany\nJennifer\nTiffany\nAmber\nHeather\nKimberly\nWhitney\nKayla\nLauren\nSarah\nEmily\nMary\nStephanie\nBrittney\nElizabeth\nRachel\nMegan\nLaura\nCourtney\nCrystal\nErica\nAnna\nSamantha\nApril\nLindsey\nAmy\nMelissa\nChristina\nRebecca\nKatherine\nJamie\nAllison\nAngela\nAndrea\nErin\nKatie\nShannon\nKendra\nHaley\nKelly\nKristen\nVictoria\nDanielle\nBrandy\nHannah\nBrandi\nMichelle\nSara\nAlicia\nMorgan\nMallory\nCasey\nLatoya\nKathryn\nNicole\nBritney\nHolly\nCandace\nKristin\nCatherine\nLindsay\nLisa\nLeslie\nJasmine\nLeah\nNatasha\nTara\nCandice\nKrystal\nNatalie\nBethany\nLacey\nMonica\nMeagan\nMiranda\nFelicia\nJulie\nDana\nLatasha\nChristine\nJordan\nSavannah\nValerie\nKaren\nMelanie\nMisty\nEbony\nChelsea\nChristy\nRobin\nPamela\nAdrienne\nAlexis\nKristina\nJulia\nMargaret\nTamara\nTonya\nAlisha\nCaitlin\nSasha\nAshton\nKelli\nSabrina\nPatricia\nSusan\nTabitha\nVeronica\nAngel\nAngelica\nCassandra\nCynthia\nSummer\nGabrielle\nJenna\nAlison\nBrooke\nCassie\nDeanna\nMeredith\nRachael\nStacey\nCaroline\nCarrie\nErika\nKristi\nMolly\nVanessa\nChasity\nKrista\nBarbara\nKristy\nStacy\nKatrina\nDominique\nMeghan\nTammy\nVirginia\nAutumn\nCharity\nLeigh\nRegina\nSheena\nAlexandra\nJacqueline\nJenny\nCarolyn\nJana\nJillian\nLori\nMaegan\nSierra\nToni\nTracy\nAshlee\nAudrey\nKasey\nKathleen\nMonique\nTina\nKelsey\nKeri\nRandi\nTasha\nAlyssa\nAshleigh\nChristian\nDenise\nKara\nMelody\nHillary\nAbby\nBridget\nConstance\nEllen\nKelley\nLakeisha\nMaria\nPaige\nSharon\nCierra\nJoanna\nKala\nKari\nPriscilla\nCarla\nIndia\nLakeshia\nOlivia\nRebekah\nYolanda\nBrandie\nBrianna\nHayley\nHollie\nMandy\nMelinda\nShelley\nAlexandria\nBridgette\nCheryl\nClaire\nDiana\nKendall\nLacy\nLinda\nMarquita\nNikki\nTaylor\nWendy\nAmelia\nBreanna\nBrenda\nChristie\nJessie\nJoy\nKeisha\nLashonda\nMartha\nNikita\nRaven\nRhonda\nShanna\nTameka\nTraci\nAshely\nBonnie\nCara\nCarol\nChiquita\nDonna\nHope\nKellie\nKerri\nNancy\nOctavia\nRobyn\nSandra\nTabatha\nAimee\nAnastasia\nChelsey\nEmma\nJacquelyn\nLakendra\nLatoria\nLydia\nMarissa\nPatrice\nSantana\nSonya\nTeresa\nTerri\nAdrian\nAnne\nAshlie\nBeverly\nCallie\nCortney\nGina\nKandice\nKrystle\nPaula\nAlyson\nBriana\nBridgett\nBrittani\nCharlene\nChrista\nDawn\nDeborah\nEricka\nFaith\nFrances\nJaclyn\nJerrica\nJodi\nKristian\nMichele\nNina\nRyan\nSydney\nTia\nTiara\nTracey\nAbigail\nAlice\nAllyson\nCarmen\nDesiree\nHeidi\nKaci\nKenya\nLaquita\nLatonya\nMaggie\nMindy\nSherry\nSophia\nTanesha\nValencia\nAnita\nAnn\nAudra\nCarly\nCharlotte\nChristen\nClarissa\nDorothy\nGrace\nHailey\nJackie\nJanay\nKristie\nLakisha\nLara\nLatisha\nLaurel\nMisti\nPorsha\nSally\nShana\nShelby\nSylvia\nTamika\nTanisha\nAnnie\nAntoinette\nBetty\nBobbie\nBrandon\nChristin\nDebra\nDestiny\nHilary\nJada\nJaime\nJane\nJanet\nKeshia\nLaci\nLesley\nMadison\nMandi\nPrecious\nSandy\nSavanna\nShaina\nShameka\nShaquita\nShauna\nSuzanne\nAlana\nAlecia\nAllie\nAmberly\nBailey\nChelsie\nCiera\nDeidra\nEboni\nEleanor\nFelisha\nHaleigh\nJami\nJanice\nJanie\nJazmine\nJeannie\nJill\nJudy\nKarla\nKenyetta\nLacie\nLashanda\nLatosha\nLatrice\nLora\nMatthew\nNichole\nRacheal\nShanika\nShenika\nStefanie\nAleshia\nAndria\nBeth\nBrittni\nCameron\nCecilia\nChrissy\nChrystal\nElisha\nFelecia\nGloria\nGwendolyn\nHelen\nJasmin\nJenifer\nJoni\nKaitlin\nKatelyn\nLarhonda\nLashunda\nMagan\nMalorie\nMaranda\nMarilyn\nMarsha\nMollie\nParis\nPeggy\nRuby\nRuth\nShawanda\nShayla\nSherita\nSherri\nShirley\nStevie\nTerra\nTiffanie\nTori\nTracie\nAmie\nAna\nAntionette\nAriel\nAshlyn\nBecky\nBetsy\nBritany\nBrittnay\nCandis\nCandy\nCindy\nCorey\nEbonie\nElise\nEvelyn\nGinger\nHallie\nHanna\nJeanette\nJena\nJustin\nKacey\nKassie\nKatharine\nKaylee\nKyla\nLadonna\nLakesha\nLaquanda\nLena\nLyndsey\nMarian\nPortia\nShanavia\nShelly\nSonja\nStaci\nTanya\nTeri\nTyler\nValarie\nVivian\nAbbie\nAisha\nAlena\nAlesia\nAlexia\nAmberley\nAngelina\nBrian\nBrittnie\nBrittny\nCarissa\nCelia\nChanning\nChloe\nClara\nCody\nDenisha\nDevin\nDomonique\nElisa\nEmilee\nFelica\nFrancesca\nGabriel\nGeorgia\nHolley\nHolli\nJames\nJanna\nJean\nJoyce\nKaila\nKaley\nKira\nKristal\nKristine\nLaporsha\nLashaundra\nLashundra\nLaurie\nLea\nLeann\nLillian\nLucy\nMagen\nMallorie\nMarianne\nMarkita\nMarla\nMarlena\nMarquetta\nMartina\nMeaghan\nRaquel\nRenee\nRenita\nRoxanne\nSade\nSelena\nShaneka\nShanita\nShasta\nShawna\nShena\nShiquita\nTabetha\nTheresa\nTiffani\nTricia\nTyesha\nTynesha\nWilliam\nAlaina\nAlanna\nAlexa\nAlissa\nAlysia\nAnnah\nAshlea\nAshli\nAsia\nBianca\nBlair\nBlake\nBrittaney\nCamille\nCandi\nCarlie\nCasie\nCassidy\nCayla\nChandra\nChaquita\nChassity\nCherelle\nChristal\nConcetta\nCristen\nCristy\nDarlene\nDeandrea\nDeangela\nDedra\nDeidre\nDemetria\nDevon\nDiane\nDianna\nDominque\nElena\nElisabeth\nEva\nFallon\nFarrah\nHali\nIris\nIvy\nJade\nJerica\nJessika\nJocelyn\nJodie\nJoi\nJoshua\nJustina\nKacie\nKacy\nKandace\nKandi\nKate\nKatheryn\nKathrine\nKathy\nKenyatta\nKyndal\nKyra\nLaken\nLakita\nLaquisha\nLashondra\nLawanda\nLoren\nLoretta\nLouise\nLucretia\nLynette\nMackenzie\nMadeline\nMarie\nMarisa\nMiriam\nNakia\nNakita\nNaomi\nNatosha\nNorma\nNyesha\nPrincess\nRacquel\nRenisha\nReva\nRosa\nRose\nShanda\nShandra\nShantel\nShantell\nSharhonda\nSharita\nShelia\nSheneka\nSheree\nShonta\nSomer\nStacie\nStephaine\nTamera\nTamra\nTaneshia\nTangela\nTessa\nTosha\nTyeshia\nWanda\nJessica\nAshley\nBrittany\nAmanda\nTiffany\nHeather\nAmber\nKayla\nJennifer\nSarah\nLauren\nWhitney\nKimberly\nMary\nElizabeth\nCourtney\nStephanie\nEmily\nBrittney\nRachel\nLaura\nMegan\nCrystal\nJasmine\nSamantha\nRebecca\nAmy\nKatherine\nMelissa\nErica\nApril\nAnna\nKatie\nLindsey\nHaley\nKristen\nChristina\nHannah\nAndrea\nVictoria\nKendra\nAllison\nAngela\nKristin\nDanielle\nBritney\nCandace\nErin\nJamie\nChelsea\nSara\nBrandi\nMorgan\nKelly\nAlicia\nMallory\nHolly\nKathryn\nShannon\nCaitlin\nNicole\nBrandy\nLeah\nCatherine\nBethany\nLatasha\nMichelle\nLindsay\nMargaret\nKrystal\nJulie\nLeslie\nLisa\nCasey\nLatoya\nCandice\nMiranda\nMonica\nTabitha\nTara\nNatalie\nRachael\nJacqueline\nMeagan\nEbony\nMelanie\nNatasha\nJordan\nCassandra\nMisty\nFelicia\nLacey\nKristina\nPatricia\nAngel\nCassie\nVirginia\nAdrienne\nCarrie\nAlexis\nAlisha\nBianca\nJenna\nAlexandria\nCynthia\nKathleen\nKristi\nRebekah\nChristy\nAlyssa\nChasity\nDana\nGabrielle\nMeghan\nMolly\nStacey\nCaroline\nKatrina\nRobin\nAlexandra\nChristine\nValerie\nVanessa\nAngelica\nJulia\nKasey\nKrista\nKristy\nSummer\nTamara\nBrooke\nMeredith\nTaylor\nDestiny\nKelsey\nStacy\nKaren\nKelli\nSavannah\nShanice\nVeronica\nAshlee\nKatelyn\nMaria\nSusan\nAshton\nDominique\nJaleesa\nJalisa\nSabrina\nAbby\nAutumn\nJillian\nJoanna\nKaitlin\nOlivia\nTasha\nTonya\nWhitley\nErika\nPamela\nAnne\nNikki\nPaige\nSasha\nToni\nAudrey\nBriana\nBrianna\nKelley\nKellie\nTiara\nBridget\nCarla\nDonna\nGrace\nKala\nKara\nTameka\nAlison\nFrances\nJana\nKerri\nMonique\nWendy\nBarbara\nBridgette\nChristian\nDeanna\nDorothy\nHillary\nKari\nNancy\nTabatha\nTina\nAshleigh\nCarmen\nCarolyn\nHollie\nJerica\nLeigh\nMadison\nSierra\nTeresa\nAdrian\nAshely\nCharity\nChelsey\nCheryl\nHailey\nLakeshia\nLori\nShaina\nTerri\nTierra\nAllyson\nAudra\nChristen\nConstance\nKeri\nKristie\nLinda\nMaegan\nPorsha\nRandi\nSharon\nStaci\nSylvia\nTraci\nAbigail\nAlana\nAmelia\nAnn\nBeverly\nCallie\nChiquita\nCiara\nCortney\nDeborah\nDenise\nJacquelyn\nKeisha\nKeshia\nLydia\nShayla\nShelly\nTracy\nBonnie\nChristin\nEboni\nJenny\nKaitlyn\nKandace\nLacy\nRegina\nShelley\nAmberly\nAntoinette\nBailey\nClaire\nEllen\nEvelyn\nIndia\nLakendra\nLaquita\nLesley\nMelody\nSandra\nSherry\nTanisha\nTanya\nAimee\nAnnie\nBlair\nBreanna\nChrista\nCiera\nDesiree\nHayley\nJanna\nJill\nJoy\nKendall\nLatisha\nLatonya\nLatoria\nMaggie\nMandy\nMaranda\nMarie\nMichele\nNina\nPaula\nRaven\nRobyn\nSheena\nSuzanne\nYolanda\nBrenda\nBrittani\nCara\nChelsie\nDaphne\nEmma\nHali\nJaclyn\nJennie\nLakeisha\nLakesha\nLashonda\nLashundra\nMindy\nPatrice\nRhonda\nShana\nStefanie\nTaneshia\nTia\nValencia\nAllie\nAna\nAriel\nAshlie\nCaitlyn\nCandi\nCayla\nCharlotte\nChristie\nCierra\nDeidra\nDiana\nJane\nLyndsey\nMarissa\nMartha\nNichole\nOctavia\nSade\nShaneka\nSydney\nTheresa\nAlecia\nAshli\nBobbie\nBrandie\nBritany\nCarol\nChristi\nFaith\nGabriel\nHolley\nHolli\nHope\nJerrica\nJessie\nJustin\nKandice\nKristian\nKrystle\nLara\nLatosha\nLatrice\nLillian\nMagan\nMarquetta\nMelinda\nMollie\nRaquel\nSally\nShayna\nSimone\nSonya\nAdrianne\nBrittni\nCameron\nCecilia\nCecily\nCharlene\nDebra\nDeidre\nElisabeth\nEva\nGina\nHelen\nJackie\nJada\nJade\nJanet\nJanice\nJasmin\nJelisa\nJodi\nKassie\nKathy\nKenya\nLana\nLashunda\nLee\nMagen\nMarilyn\nMarquita\nMichaela\nNadia\nPrecious\nSantana\nSelena\nShanika\nTammy\nTanesha\nTiffani\nAbbey\nAddie\nAisha\nAlisa\nAnita\nBetty\nBrandon\nBridgett\nChristal\nClarissa\nClaudia\nEricka\nHanna\nHilary\nJaime\nJanie\nJessika\nJocelyn\nJuanita\nKaci\nKaila\nKaylee\nLakisha\nLaurie\nLora\nMarian\nMarisa\nMarla\nPriscilla\nRacheal\nSharita\nShea\nSophia\nTamika\nTori\nTracey\nWhittney\nAleshia\nAlice\nAnastasia\nAshlyn\nBelinda\nBeth\nBetsy\nBrittnie\nBrooklyn\nCamilla\nCamille\nCarley\nChandra\nCindy\nDawn\nDevin\nElise\nEric\nFarrah\nFelecia\nGwendolyn\nHaleigh\nJalessa\nJalissa\nJames\nJanae\nJeannie\nJoni\nJoshua\nKacie\nKaley\nKatharine\nKesha\nKimber\nLucy\nLynsey\nMadeline\nMandi\nNaomi\nNora\nParis\nPortia\nPrincess\nRoxanne\nShameka\nShanna\nShawna\nSheila\nSherri\nShirley\nStacie\nTessa\nTyesha\nAleisha\nAlexia\nAubrey\nBritni\nBrittaney\nBrittanie\nBritteny\nCarli\nCarly\nChanda\nCherelle\nCherish\nDaniel\nDeandrea\nDelisa\nDianna\nEden\nElla\nFelisha\nGeorgia\nHalie\nJameka\nJami\nJeremy\nJeri\nJoan\nJody\nJoyce\nKarla\nKasie\nKaty\nKirsten\nKourtney\nLaquinta\nLashanda\nLaurel\nLea\nMarjorie\nMarkita\nMartina\nMatthew\nMercedes\nNakita\nNikita\nPhylicia\nRacquel\nRita\nRuth\nShanavia\nShauna\nShelby\nShequita\nSheree\nSherika\nStevie\nSumer\nTaja\nTamekia\nTempestt\nTera\nTerrica\nTiesha\nTosha\nTyler\nVickie\nAaron\nAlaina\nAlysia\nAlyson\nAsheley\nAsia\nAundrea\nAyla\nBenjamin\nBrianne\nBrittiany\nCamillia\nCecelia\nChastity\nCheri\nChloe\nChristopher\nClara\nCodi\nCody\nConnie\nDara\nDarnisha\nDayna\nDeandra\nDebbie\nDeirdre\nDixie\nDomonique\nElaine\nEmilie\nFallon\nFrederica\nGinger\nHallie\nIesha\nIvy\nJayla\nJayme\nJodie\nJudy\nJustina\nJustine\nKacey\nKate\nKatlyn\nKayley\nKenisha\nKristine\nKylie\nLaquisha\nLarhonda\nLarissa\nLatanya\nLatara\nLatesha\nLeighann\nLeila\nLogan\nLoren\nLynn\nMckenzie\nMeaghan\nMeighan\nMelisa\nMesha\nMia\nNatashia\nPorcha\nPorsche\nRashunda\nRenee\nRobbie\nRosie\nRuby\nSadie\nSantanna\nSavanna\nShameika\nShamika\nShanteria\nSharnice\nShemeka\nShemika\nShenika\nSherita\nSonja\nTamala\nTamra\nTaryn\nTeri\nTiffanie\nTrista\nVivian\nWanda\nAshley\nJessica\nBrittany\nTiffany\nAmanda\nKayla\nAmber\nSarah\nLauren\nJennifer\nCourtney\nHeather\nJasmine\nElizabeth\nMegan\nEmily\nBrittney\nMary\nKimberly\nRachel\nStephanie\nWhitney\nSamantha\nAnna\nHannah\nErica\nLaura\nKatherine\nKristen\nRebecca\nChristina\nChelsea\nCrystal\nHaley\nMelissa\nApril\nAmy\nDanielle\nKatie\nLindsey\nJamie\nAndrea\nErin\nAngela\nMorgan\nVictoria\nSara\nAllison\nKiara\nKristin\nKendra\nKelsey\nMeagan\nKathryn\nHolly\nKelly\nBrandi\nCaitlin\nJordan\nAlicia\nMichelle\nCandace\nBrandy\nCatherine\nBritney\nCasey\nLeah\nLeslie\nKrystal\nNicole\nTara\nBethany\nLisa\nMonica\nMargaret\nLindsay\nCandice\nLacey\nLatoya\nTaylor\nAlisha\nMallory\nNatalie\nAlexandria\nCynthia\nNatasha\nRebekah\nShannon\nMiranda\nFelicia\nCassandra\nGabrielle\nJulie\nMelanie\nBrooke\nCaroline\nChristine\nErika\nCassie\nChasity\nKatelyn\nKristina\nRobin\nTabitha\nAlexis\nAlexandra\nSabrina\nBianca\nDana\nMeghan\nVirginia\nAngelica\nJacqueline\nKelli\nMeredith\nMolly\nAngel\nSummer\nAudrey\nBrianna\nPatricia\nRachael\nTiara\nKasey\nKaitlin\nSavannah\nVanessa\nAlyssa\nAshton\nChristy\nDeanna\nGrace\nJoanna\nJulia\nKara\nLatasha\nPamela\nAshlee\nAmelia\nEbony\nJalisa\nJenna\nStacy\nAshleigh\nOlivia\nKatrina\nStacey\nTamara\nVeronica\nAbby\nBarbara\nMisty\nSharon\nAbigail\nAdrienne\nHillary\nKaitlyn\nKristi\nLori\nMarissa\nWhitley\nAlison\nBridget\nKala\nMagan\nChelsey\nCortney\nJillian\nRegina\nSusan\nBriana\nBridgette\nCarmen\nCarrie\nCharity\nKrista\nKristy\nLydia\nMadison\nMonique\nToni\nTonya\nChristian\nTasha\nAdriana\nDeborah\nJenny\nKathleen\nLatonya\nNikki\nRaven\nSydney\nBreanna\nCarolyn\nDiana\nDonna\nHailey\nHelen\nKellie\nMaria\nMercedes\nPaige\nSierra\nTeresa\nAdrianna\nAnne\nAutumn\nCarla\nChiquita\nConstance\nEllen\nEmma\nJacquelyn\nSheena\nTerri\nTierra\nAllyson\nBailey\nCaitlyn\nDestiny\nDominique\nJaleesa\nJerrica\nJessie\nLashonda\nLeigh\nPortia\nValerie\nAbbey\nBrittani\nClaire\nJodi\nKierra\nLakeisha\nLatisha\nNancy\nRandi\nShayla\nTina\nAmberly\nDorothy\nHilary\nKendall\nLakeshia\nTracy\nAriel\nAudra\nCallie\nCiara\nCierra\nFrances\nHayley\nJoy\nKaren\nLakendra\nLaurel\nLinda\nMaggie\nSha\nShanna\nValencia\nCarol\nCheryl\nChristen\nFaith\nGina\nHollie\nIndia\nJerica\nKaci\nKiera\nKrystle\nLaquita\nLillian\nMarquita\nMartha\nNikita\nNina\nParis\nPorsha\nSandra\nShanice\nShelby\nTameka\nTori\nWendy\nAlana\nAlecia\nAlice\nAllie\nAntoinette\nAshlyn\nAudriana\nBetty\nBrittni\nCara\nCarly\nDesiree\nEvelyn\nHope\nJana\nJill\nKeshia\nLacy\nLyndsey\nMelody\nSade\nSasha\nShana\nSylvia\nTabatha\nTheresa\nAimee\nAnnie\nArielle\nAubrey\nBobbie\nBonnie\nBritany\nChelsie\nChristin\nDemetria\nDenise\nHanna\nJaclyn\nJami\nJane\nKari\nKarla\nKeisha\nKelley\nKirsten\nKylie\nLeanna\nLesley\nMaegan\nMollie\nPatrice\nPrecious\nPriscilla\nRacheal\nShaina\nTammy\nAsia\nCecily\nCharlotte\nChloe\nChrista\nDawn\nJade\nJanie\nJelisa\nKenya\nKeri\nMindy\nRobyn\nRyan\nShameka\nShanika\nSimone\nStaci\nTanisha\nAlyson\nAnn\nAudrianna\nBridgett\nChristie\nCindy\nClara\nConnie\nElisabeth\nJasmin\nKaley\nKimberley\nKristie\nLaurie\nMagen\nMandy\nMelinda\nPaula\nRhonda\nSelena\nSonya\nTiera\nTracie\nAbbie\nAdrian\nAlaina\nAlexia\nAnastasia\nAshely\nBeth\nBrittaney\nCeleste\nHaleigh\nHali\nJada\nJanet\nJodie\nJoni\nKacie\nKaila\nKandace\nKandice\nKathy\nKourtney\nKristal\nKristan\nLara\nLucy\nMaranda\nMarquetta\nSantana\nShelley\nShirley\nTanesha\nTia\nTiffanie\nVivian\nAdrianne\nAlisa\nBelinda\nBrandie\nBrenda\nBritny\nCamille\nCarlie\nCayla\nCharlene\nDeandra\nDestin\nDixie\nEricka\nEva\nGeneva\nGloria\nHeidi\nHolli\nJanna\nJennie\nJosie\nJustine\nKassie\nKate\nKaylee\nKimber\nKristian\nMartika\nMichaela\nNora\nSherry\nAna\nAnjelica\nAntionette\nAshli\nAshly\nBritnee\nCameron\nCarissa\nCassidy\nChandra\nChantel\nChristi\nCorey\nDara\nDeidra\nEmilee\nFelecia\nHalie\nJackie\nJamese\nJanice\nJena\nJeri\nJustin\nKaleigh\nKaylan\nKelsi\nKenyatta\nKyla\nLaci\nLakita\nLashanda\nLatoria\nLeanne\nLee\nLoren\nMarsha\nMeaghan\nMicah\nMiriam\nNichole\nShareka\nSharonda\nShea\nSheree\nSherita\nSophia\nStarla\nSuzanne\nTamekia\nTawana\nTeri\nTosha\nUrsula\nAisha\nAlexa\nAlysia\nAngelique\nAnita\nAsha\nAshanti\nBeverly\nBillie\nBreana\nBrittnie\nCandance\nCari\nCatrina\nCecilia\nCherelle\nChyna\nCiera\nClarissa\nClaudia\nDebra\nDeirdre\nDenisha\nDevin\nElise\nIris\nJaime\nJaimie\nJazmine\nJean\nJenifer\nJocelyn\nJohanna\nJoyce\nJoycelyn\nJuanita\nKarissa\nKasi\nKathrine\nKatlyn\nKatrice\nKaty\nKayleigh\nKaylyn\nKeara\nKerri\nLacie\nLaken\nLakesha\nLakisha\nLaquinta\nLashondra\nLashunda\nMallorie\nMarie\nMarilyn\nMarion\nMarkita\nMichele\nMillie\nNadia\nNiki\nRachelle\nRochelle\nRuby\nSamatha\nShanda\nShantel\nShauna\nShawna\nSheila\nShelly\nStacie\nStefanie\nStevie\nSusanna\nTakeshia\nTamika\nTaryn\nTenisha\nTerra\nTraci\nTrisha\nTyesha\nTyneshia\nAdriane\nAlesha\nAlesia\nAnsley\nAnthony\nAshlea\nAyla\nBrittanie\nBritteny\nBrittnee\nBrittny\nCandis\nCherrelle\nCora\nDakota\nDaphne\nDarlene\nDeangela\nDeidre\nDeondra\nDoris\nDusty\nEboni\nEden\nEleanor\nElisha\nEmilie\nFelisha\nGeorgia\nGlenda\nGwendolyn\nHallie\nIvy\nJalissa\nJameria\nJanessa\nJasimine\nJeanette\nJesse\nJoi\nJonna\nJoshua\nKali\nKandi\nKatharine\nKati\nKearia\nKelsie\nKeonna\nKerry\nKeyanna\nKori\nKristine\nKristyn\nLakin\nLaporsha\nLatosha\nLatrice\nLauryn\nLawanda\nLena\nLindley\nLogan\nLora\nLynsey\nMadeline\nMarjorie\nMarley\nMeghin\nMelita\nMia\nMisti\nMonika\nOctavia\nPhyllis\nPorshia\nPrincess\nRena\nRene\nRita\nSandy\nSavanna\nSelina\nShaneka\nShaniece\nShanita\nShanta\nShari\nShasta\nShawanda\nShayna\nShellie\nShenika\nSondra\nStormy\nTatiana\nTempestt\nTequila\nTera\nTerrica\nTiffani\nTracey\nTrista\nValarie\nVanity\nAshley\nBrittany\nJessica\nKayla\nAmanda\nJasmine\nAmber\nTiffany\nCourtney\nLauren\nElizabeth\nSarah\nEmily\nMary\nHeather\nStephanie\nJennifer\nMegan\nBrittney\nSamantha\nHannah\nKimberly\nWhitney\nRachel\nChelsea\nAnna\nKatherine\nErica\nHaley\nRebecca\nMorgan\nKristen\nCrystal\nLaura\nLindsey\nVictoria\nJordan\nChristina\nSara\nApril\nMelissa\nAmy\nErin\nAndrea\nTaylor\nAllison\nJamie\nDanielle\nKatie\nKelsey\nMichelle\nCatherine\nBrandi\nKathryn\nAngela\nRaven\nBrianna\nCaitlin\nLeah\nAlexandria\nCandace\nKristin\nNicole\nCasey\nAlicia\nKelly\nMeagan\nOlivia\nKendra\nBrandy\nBreanna\nBethany\nHolly\nTara\nBritney\nKatelyn\nShelby\nCaroline\nKristina\nLindsay\nRachael\nBrooke\nErika\nLeslie\nShannon\nAlyssa\nAlexis\nMiranda\nTabitha\nSummer\nAriel\nAngel\nMargaret\nPatricia\nCassandra\nMallory\nSavannah\nJulie\nKiara\nFelicia\nCandice\nAlexandra\nAlisha\nJulia\nChasity\nKrystal\nMelanie\nMolly\nEbony\nMonica\nGabrielle\nHillary\nRebekah\nCarrie\nDeanna\nKaitlin\nLisa\nBianca\nKaitlyn\nMeredith\nNatalie\nTamara\nBriana\nCynthia\nAdrienne\nDana\nKara\nLacey\nLatoya\nRobin\nAshleigh\nAudrey\nChristian\nChristine\nMadison\nSabrina\nAshton\nNatasha\nSierra\nVirginia\nAbigail\nAutumn\nCassie\nCierra\nCortney\nKasey\nKrista\nPaige\nDominique\nLori\nBailey\nKala\nLatasha\nAbby\nAmelia\nCarmen\nKellie\nKendall\nMeghan\nSydney\nAlison\nKristy\nWhitley\nChelsey\nDestiny\nJenna\nKelli\nVanessa\nAshlee\nJessie\nKierra\nKristi\nStacey\nTiara\nAngelica\nBridget\nCarolyn\nChristy\nMercedes\nRegina\nCaitlyn\nCharlotte\nJoanna\nKathleen\nKatrina\nKirsten\nLinda\nSusan\nAmberly\nBritany\nCallie\nHope\nJacqueline\nKaylee\nLydia\nNikki\nClaire\nDesiree\nMaegan\nMaria\nSharon\nTabatha\nBeverly\nDorothy\nFrances\nGrace\nHilary\nJalisa\nKeisha\nMadeline\nMariah\nMarissa\nMartha\nTasha\nTracy\nValerie\nJaleesa\nJillian\nKari\nKelley\nPaula\nShaniqua\nStacy\nChiquita\nHayley\nKaren\nLakeshia\nLatisha\nNancy\nPamela\nSasha\nShayla\nToni\nVeronica\nAshlyn\nCarla\nCarly\nCharity\nCiera\nEmma\nLaquita\nLeanna\nLeigh\nMelinda\nMisty\nRandi\nTierra\nBarbara\nChristin\nDeidra\nDenise\nDevin\nKiera\nLacy\nMarquita\nRobyn\nShawna\nTerri\nAlesha\nAllyson\nAnne\nBrittani\nConstance\nDiana\nFaith\nJaclyn\nJenny\nJoy\nKaci\nLatoria\nMeaghan\nMia\nSantana\nShana\nShauna\nSonya\nTina\nAdrian\nAimee\nAsia\nBrenda\nCharlene\nChelsie\nDeborah\nDonna\nHollie\nIndia\nJazmine\nJerrica\nLakendra\nMacy\nMichele\nMollie\nMonique\nShanna\nAlyson\nBreana\nCara\nClarissa\nGina\nHelen\nJasmyne\nJerica\nKenya\nKeri\nKylie\nLakeisha\nLyndsey\nMagan\nMarilyn\nPriscilla\nShameka\nSimone\nTammy\nTanya\nTeresa\nTia\nTiffani\nTonya\nTori\nTracey\nAbbey\nAlecia\nAlexa\nAllie\nAnita\nAubrey\nBridgett\nBridgette\nCarol\nCheryl\nEboni\nGloria\nHali\nHanna\nJade\nJana\nJasmin\nKanesha\nKerri\nKeshia\nKourtney\nLatonya\nLillian\nMandy\nPatrice\nPrecious\nSandra\nSkylar\nTempest\nAlice\nAngelia\nAnn\nAnnie\nAntoinette\nBrittni\nCameron\nChrista\nCiara\nClaudia\nDakota\nDaphne\nDemetria\nHaleigh\nJacquelyn\nJada\nJami\nJanice\nJanie\nKenyatta\nKimberley\nMackenzie\nMaya\nNichole\nShelley\nStacie\nSuzanne\nSylvia\nTamika\nTanisha\nTyler\nValencia\nAbbie\nAlanna\nAlissa\nAndria\nArielle\nAshlie\nBonnie\nBrandie\nBritni\nBrittaney\nBrooklyn\nCamille\nChloe\nChristen\nDebra\nEllen\nEricka\nHailey\nHallie\nKaneesha\nKanisha\nKassie\nKirstie\nKristian\nLacie\nLaurel\nMaggie\nMartika\nMelody\nNina\nPortia\nSavanna\nTanesha\nTeri\nTheresa\nTosha\nWendy\nYolanda\nAdrianna\nAlana\nAriana\nAudra\nCassidy\nCecily\nChristie\nCori\nElaine\nEleanor\nElisabeth\nHeidi\nHolli\nJaime\nJane\nJuanita\nJustine\nKacey\nKaila\nKaley\nKandace\nKandice\nKate\nLaken\nLakisha\nLashonda\nMagen\nMarie\nMichaela\nPorsha\nRaquel\nRenee\nRhonda\nRiley\nRuby\nRyan\nSkye\nTaneisha\nTerra\nVivian\nAlaina\nAlexia\nAnsley\nAudreanna\nBetty\nBobbie\nBrea\nBrittanie\nCari\nCarissa\nCathy\nCayla\nCeleste\nChastity\nDawn\nDeandra\nDevan\nDevon\nDomonique\nEden\nEmilee\nFelisha\nGeorgia\nGwendolyn\nJalissa\nJanna\nJelisa\nJodie\nKacie\nKacy\nKasie\nKatharine\nKirby\nKortney\nLaquinta\nLatifah\nLaurie\nLesley\nLogan\nMara\nMarsha\nMiriam\nNakita\nNaomi\nOctavia\nParis\nRacheal\nRuth\nShanika\nShaquita\nSherry\nSophia\nTamela\nTiffanie\nTyesha\nWanda\nAisha\nAlesia\nAlisa\nAsha\nAudrianna\nBlair\nBre\nBrenna\nBrittnee\nChassidy\nCoral\nDarnisha\nDelicia\nDelisa\nEmerald\nGinger\nGlenda\nHeaven\nIesha\nIvy\nJameka\nJanae\nJennie\nJerika\nJesse\nJodi\nJoycelyn\nJustina\nKaleigh\nKali\nKamesha\nKaneisha\nKassandra\nKatelin\nKatelynn\nKattie\nKelsie\nKenisha\nKira\nKirstin\nKristan\nKristie\nKrystle\nLaci\nLaquetta\nLara\nLashondra\nLayla\nLena\nLora\nMadalyn\nMarisa\nMckenzie\nNikita\nPatience\nPeggy\nPrincess\nRavin\nShanequa\nShanta\nSharonda\nShayna\nSheila\nSkyler\nStefanie\nTameka\nTequila\nTraci\nWhittney\nAdriana\nAja\nAleshia\nAlyssia\nAngie\nAnissa\nAnjelica\nAnnmarie\nAntionette\nAshely\nAshly\nAva\nAvery\nBethanie\nBrianne\nBritteny\nBrittny\nCandance\nCecilia\nChanel\nChanning\nChantel\nCharla\nChassity\nCherish\nCindy\nCodi\nColleen\nConnie\nCorey\nDarnesha\nDeandrea\nDeja\nDestin\nDestinie\nDominque\nEvelyn\nFallon\nFelecia\nGabriel\nHayden\nJackie\nJaimie\nJamaica\nJameria\nJena\nJesslyn\nJill\nJocelyn\nJoslyn\nJudith\nJuliana\nJulisa\nKaitlynn\nKarissa\nKaryn\nKathrine\nKatlin\nKatlyn\nKaylin\nKaylyn\nKeeley\nKeely\nKendal\nKerrie\nKiarra\nKiesha\nKisha\nKortni\nKyra\nLaporsha\nLaquitta\nLasonya\nLatonia\nLatricia\nLeann\nLola\nLoren\nLorrie\nLouise\nMaranda\nMariana\nMarlee\nMeagen\nMindy\nMiracle\nNadia\nPeyton\nPhylicia\nRamona\nRanda\nReagan\nRose\nRoxanne\nSamone\nSelena\nSha\nShakira\nShaneka\nShanetta\nShante\nShantel\nSheena\nSherri\nSidney\nStaci\nStevie\nSusannah\nSymone\nTaira\nTalia\nTalisa\nTerrika\nTess\nTessa\nTierney\nTracie\nTrinity\nTrista\nTynisha\nYasmine\nAshley\nJessica\nBrittany\nKayla\nJasmine\nAmber\nAmanda\nLauren\nEmily\nTiffany\nCourtney\nSarah\nElizabeth\nMary\nMegan\nHeather\nHannah\nRachel\nJennifer\nSamantha\nStephanie\nAnna\nWhitney\nShelby\nKimberly\nVictoria\nBrittney\nHaley\nChelsea\nKelsey\nMorgan\nKatherine\nRebecca\nTaylor\nKristen\nLindsey\nErica\nCrystal\nDanielle\nLaura\nChristina\nJordan\nAllison\nAmy\nApril\nKatie\nRaven\nMelissa\nOlivia\nAlexandria\nJamie\nSara\nMeagan\nAndrea\nErin\nKathryn\nAngela\nAlicia\nBritney\nKristin\nAriel\nCaitlin\nMallory\nBrianna\nCasey\nCandace\nCatherine\nHolly\nMichelle\nIesha\nBrandi\nKelly\nMargaret\nSavannah\nMiranda\nBethany\nLeah\nAlexandra\nKatelyn\nLacey\nNicole\nAlexis\nBriana\nCassandra\nCaroline\nJulia\nKendra\nAlyssa\nBrooke\nRachael\nAngel\nBrandy\nKiara\nMadison\nMolly\nGabrielle\nKristina\nShannon\nBreanna\nTabitha\nLindsay\nSydney\nTara\nMariah\nCandice\nJulie\nBianca\nChasity\nLeslie\nMonica\nRobin\nKara\nKaitlin\nKaitlyn\nNatalie\nPaige\nSummer\nDestiny\nAshleigh\nLatoya\nRebekah\nHillary\nLisa\nDominique\nFelicia\nAbigail\nChristian\nJillian\nMelanie\nTamara\nAmelia\nCarrie\nChelsey\nErika\nJenna\nKasey\nKathleen\nShaniqua\nAudrey\nAutumn\nKierra\nJacqueline\nKrystal\nAlisha\nChristine\nMeghan\nMeredith\nMisty\nAdrienne\nAshton\nPatricia\nAnne\nAshlee\nCarly\nDeanna\nEbony\nMarissa\nAmberly\nBailey\nCynthia\nJalisa\nKirsten\nMercedes\nNatasha\nPamela\nSierra\nCallie\nMaria\nSabrina\nVirginia\nCarmen\nCassie\nChristy\nDana\nKaren\nKrista\nMaggie\nAngelica\nCortney\nJazmine\nKelsie\nShayla\nWhitley\nCierra\nKatrina\nMonique\nShanna\nTerri\nVanessa\nAsia\nBrittani\nCaitlyn\nCharity\nCharlotte\nHayley\nIeshia\nJessie\nLatasha\nMadeline\nSandra\nSusan\nTonya\nCiara\nClaire\nFaith\nGrace\nLori\nLydia\nTiara\nVeronica\nAnn\nDesiree\nDevin\nEmma\nFrances\nKeri\nKristi\nMaegan\nMelody\nAbby\nAllyson\nHailey\nHope\nJade\nKellie\nKristian\nLakeisha\nLillian\nMarquita\nRobyn\nShawna\nToni\nValerie\nAlexa\nAshlyn\nBrooklyn\nCheyenne\nIndia\nJoy\nKala\nKelli\nLinda\nNikki\nParis\nStacey\nTabatha\nTasha\nAlana\nBritany\nCarolyn\nChelsie\nChloe\nJacquelyn\nKiera\nKristie\nKristy\nLeanna\nMacy\nMollie\nPortia\nTracy\nAbbey\nBridget\nDeborah\nDiana\nDonna\nEllen\nHayden\nJana\nJocelyn\nLeigh\nMartha\nNancy\nSharon\nSylvia\nTanisha\nTessa\nTori\nAlison\nBarbara\nCarol\nJasmin\nJerrica\nJoanna\nKari\nKatlyn\nKeisha\nKendall\nLaquita\nMandy\nPrecious\nRegina\nSkylar\nStacy\nTia\nTierra\nWendy\nAriana\nBrenda\nCara\nChrista\nChristen\nCiera\nDakota\nDevan\nDevon\nElisabeth\nEvelyn\nHanna\nJane\nMaranda\nOctavia\nRacheal\nRandi\nShaquita\nSharonda\nSimone\nTyler\nAdrian\nAdrianna\nAllie\nAvery\nCameron\nCarissa\nCarley\nCindy\nDawn\nDenise\nGloria\nHaleigh\nHilary\nJenny\nKacie\nKanesha\nLatoria\nLoren\nMagen\nPatrice\nShaina\nShanika\nStaci\nTiffani\nTina\nAlyson\nCarla\nDemetria\nDorothy\nJaclyn\nKali\nKenyatta\nKeshia\nKirstie\nLaci\nLatrice\nLucy\nMacey\nMarilyn\nPaula\nSavanna\nShanequa\nSonya\nTanya\nValencia\nAisha\nAnjelica\nArielle\nBetty\nBrandie\nBreana\nBridgett\nBridgette\nBrittanie\nConstance\nDebra\nDeidra\nEricka\nHelen\nHollie\nJada\nJaleesa\nJanet\nJodi\nJustine\nKaley\nKalyn\nKaylin\nKelley\nKylie\nLaken\nLakendra\nLatisha\nLyndsey\nMagan\nMelinda\nShelley\nSherry\nSkyler\nSophia\nStefanie\nTyesha\nAbbie\nAdriana\nAimee\nAlaina\nAlexandrea\nAlice\nBrittni\nCamille\nCarlie\nCassidy\nCayla\nChantal\nChristie\nConnie\nDallas\nDeandrea\nEboni\nEmilee\nGeorgia\nHalie\nHeidi\nHolli\nJami\nJanice\nJeri\nKaneshia\nKelsi\nKimberley\nKourtney\nKristan\nMadeleine\nMattie\nMaya\nMeaghan\nMia\nNikita\nPriscilla\nSantana\nShanique\nShayna\nSidney\nTammy\nTiera\nTracey\nYasmine\nAli\nAshely\nAudra\nAudrianna\nBeverly\nBonnie\nBrittnie\nChiquita\nChristin\nClarissa\nClaudia\nDemi\nDiamond\nDominque\nJaime\nJelisa\nJodie\nJosie\nKacy\nKaila\nKandi\nKasie\nKatlin\nKaylee\nKayleigh\nKelsea\nKristine\nLacie\nLacy\nLadonna\nLakeshia\nLashundra\nLatonya\nLela\nMadelyn\nMarie\nMichele\nMiesha\nNaomi\nNia\nNiesha\nPeyton\nPrincess\nReagan\nRegan\nRenee\nRiley\nRochelle\nSacoria\nSelena\nShana\nShanita\nSheena\nTanesha\nTeresa\nTiarra\nTosha\nWhittney\nAlesha\nAlexia\nAnastasia\nArianna\nAshli\nBobbie\nBritni\nBrittnee\nCamisha\nCarli\nCecilia\nCheryl\nCinnamon\nCodi\nDaphne\nDeangela\nDenisha\nDestinee\nElise\nElla\nEsther\nEva\nFelecia\nGwendolyn\nHallie\nHarley\nJalesa\nJalissa\nJameka\nJanna\nJayla\nJazmin\nJenifer\nJerica\nJessalyn\nJohnita\nJudy\nKacey\nKaci\nKaneesha\nKatelin\nKatelynn\nKathy\nKenyetta\nKerri\nKimberlee\nLakesha\nLara\nLeandra\nLesley\nLogan\nLynsey\nMaci\nMacie\nMalia\nMara\nMarisa\nMelia\nMichaela\nNina\nPayton\nRose\nSamatha\nShae\nShanavia\nShelly\nShenika\nSusie\nTaneshia\nTiesha\nTyeshia\nValarie\nWanda\nYolanda\nAdriane\nAdrianne\nAerial\nAlecia\nAlex\nAlisa\nAlishia\nAna\nAndria\nAngelia\nAnita\nAshia\nAubrey\nAudriana\nBeth\nBlair\nBrittaney\nCady\nCarey\nCarson\nCasandra\nCeara\nCharlene\nChina\nChyna\nChynna\nClara\nClare\nDeidre\nDelana\nDixie\nEbonie\nEden\nElisha\nEssence\nFrancesca\nGinger\nHali\nHaylee\nIvy\nJalicia\nJameria\nJamesha\nJanay\nJanie\nJasmyn\nJayna\nJessi\nJesslyn\nJordyn\nJustina\nKalee\nKaleigh\nKandace\nKandice\nKarley\nKarlie\nKassie\nKate\nKatrice\nKayle\nKeara\nKenesha\nKenisha\nKeondra\nKhadijah\nKiana\nKirstin\nKori\nKortney\nKrystin\nKylee\nKyra\nLana\nLaney\nLaporsha\nLashonda\nLatara\nLaticia\nLaurel\nLila\nMackenzie\nMarkita\nMarley\nMartina\nMildred\nMiracle\nMyra\nMyranda\nNoelle\nRashonda\nReba\nRhonda\nSade\nSally\nSasha\nScarlett\nShakira\nShanda\nShantel\nShantoria\nSharmaine\nShauna\nShelbi\nSherita\nStacie\nSuzanne\nTameka\nTangela\nTeri\nTheresa\nTorie\nTracie\nValeria\nWyteria\nJessica\nAshley\nBrittany\nKayla\nJasmine\nAmber\nEmily\nSarah\nCourtney\nHannah\nLauren\nElizabeth\nAmanda\nMary\nTiffany\nMegan\nHeather\nChelsea\nHaley\nRachel\nVictoria\nTaylor\nSamantha\nJennifer\nMorgan\nStephanie\nKimberly\nAnna\nWhitney\nShelby\nKatherine\nKelsey\nRebecca\nBrittney\nErica\nDanielle\nLindsey\nKristen\nLaura\nRaven\nJordan\nAlexis\nKatie\nChristina\nErin\nAmy\nOlivia\nSara\nApril\nAlexandra\nKaitlyn\nAndrea\nCatherine\nAlexandria\nAllison\nMelissa\nCrystal\nBethany\nBrianna\nCaitlin\nKathryn\nBrandi\nSavannah\nJamie\nAriel\nBreanna\nMeagan\nHolly\nBrooke\nMiranda\nDestiny\nHillary\nKatelyn\nCandace\nCaroline\nMadison\nMargaret\nNicole\nCasey\nMallory\nShannon\nBriana\nKristin\nMichelle\nAlicia\nGabrielle\nBritney\nErika\nMolly\nAlyssa\nKara\nKelly\nAngela\nKaitlin\nLindsay\nRebekah\nJulia\nKendra\nKristina\nLacey\nPaige\nSydney\nBrandy\nNatalie\nLeah\nAngel\nChelsey\nTabitha\nJulie\nAlisha\nJenna\nTara\nKiara\nBianca\nDominique\nMeghan\nAshleigh\nChasity\nMeredith\nMonica\nAshlee\nEbony\nSummer\nAutumn\nLeslie\nMaria\nRachael\nChristian\nDana\nHayley\nMelanie\nNatasha\nAbigail\nCandice\nDeanna\nLisa\nSabrina\nTori\nAudrey\nCarrie\nRobin\nShanice\nTamara\nTiara\nFelicia\nCassandra\nCassie\nBailey\nKrista\nPatricia\nDesiree\nAshton\nMariah\nMarissa\nCallie\nJalisa\nKasey\nKatrina\nAbby\nCaitlyn\nBridget\nCarolyn\nGrace\nKirsten\nAshlyn\nChristine\nValerie\nAlison\nCarly\nChloe\nCiara\nCortney\nHilary\nKathleen\nKrystal\nLydia\nShaniqua\nAdrienne\nAmelia\nChristy\nClaire\nJacqueline\nJazmine\nKelli\nSusan\nTia\nAngelica\nAsia\nCynthia\nEmma\nJoanna\nVirginia\nChelsie\nJoy\nKaylee\nKierra\nPayton\nVanessa\nBria\nBrooklyn\nCarmen\nDiamond\nHope\nKacie\nKatlyn\nMaranda\nMercedes\nSierra\nVeronica\nAlaina\nCheyenne\nEllen\nHanna\nKristi\nLogan\nLori\nMonique\nPeyton\nCharity\nCiera\nDevin\nFaith\nHailey\nHaleigh\nLatisha\nLatoya\nMadeline\nPamela\nAdrian\nCarley\nCassidy\nDakota\nFrances\nIndia\nKellie\nKendall\nKenya\nLatasha\nMollie\nTierra\nAllyson\nAlyson\nAubrey\nCameron\nCierra\nDallas\nDeborah\nDiana\nJasmin\nLacy\nLillian\nNakia\nRobyn\nShanequa\nTonya\nValencia\nAllie\nBrenda\nEboni\nJade\nKala\nKelsie\nKeri\nMaggie\nNancy\nNikki\nParis\nShayla\nTyler\nAnne\nBarbara\nChrista\nHollie\nJennie\nKaren\nKaylyn\nKiera\nLeanna\nLoren\nMacy\nMaegan\nMckenzie\nMeaghan\nSavanna\nSylvia\nTessa\nTiffani\nTracy\nAmberly\nAnn\nBrittani\nIesha\nJada\nJana\nJessie\nKaleigh\nKatlin\nLaken\nLakeshia\nMagen\nMartha\nMelinda\nMelody\nMia\nMisty\nPrecious\nRandi\nSidney\nSkylar\nAngelique\nBrittni\nCarla\nCayla\nDevan\nHallie\nJustina\nKaila\nKalyn\nLakeisha\nLatonya\nLeigh\nMackenzie\nPaula\nPrincess\nRegina\nToni\nWhitley\nAimee\nAlana\nAlexa\nAnnie\nCarlie\nCasie\nCharlotte\nChristin\nConstance\nDarian\nDenise\nElise\nHali\nHalie\nHarley\nJillian\nKacey\nKaci\nKourtney\nKristie\nKristy\nLacie\nLaquita\nLinda\nNikita\nPorsha\nPriscilla\nTasha\nTeresa\nTerra\nTina\nAlexus\nAlice\nAlisa\nAnastasia\nAnita\nAvery\nBeverly\nBritany\nBrittnay\nCara\nCarissa\nChandler\nCharlene\nChiquita\nChristen\nClarissa\nCorey\nDeidre\nDominque\nDorothy\nEva\nHolley\nJacquelyn\nJocelyn\nJodi\nKaylan\nKelsea\nKeyonna\nKiana\nKylie\nLakesha\nLatoria\nLatrice\nMandy\nMarquita\nMichaela\nOctavia\nRacheal\nRhonda\nSally\nShana\nShaquita\nSharonda\nSkyler\nStaci\nStacy\nTanisha\nTerri\nTerrica\nYasmine\nAbbie\nArielle\nAudrianna\nBeth\nBlair\nBrandie\nBritni\nCarlee\nChelsi\nChelsy\nChristie\nCori\nDaphne\nDeidra\nDestinee\nEvelyn\nGabriel\nHelen\nIsabella\nJaleesa\nJane\nJanice\nJenny\nJerrica\nJoycelyn\nKaley\nKandace\nKanesha\nKarissa\nKarla\nKeisha\nKelley\nKelsi\nLesley\nMagan\nRuby\nSade\nSadie\nShaina\nShameka\nShanika\nShanna\nStacey\nTammy\nTanesha\nTanya\nTheresa\nTyesha\nAlanna\nAlexia\nAundrea\nBonnie\nColleen\nDemetria\nJami\nJanay\nJanelle\nJanet\nJerica\nJodie\nJuanita\nKailey\nKarley\nKasie\nKatharine\nKayleigh\nKaylie\nKenisha\nKenyatta\nKenyetta\nKhadijah\nKimberley\nKrystin\nLaci\nLara\nLatosha\nLillie\nLucy\nMaci\nMakayla\nMoriah\nMyra\nPatrice\nPresley\nRaquel\nRose\nRyan\nSasha\nScarlett\nShauna\nShawna\nShelbie\nSherika\nSherry\nSonja\nSymone\nTianna\nTiera\nYolanda\nAbbey\nAdriana\nAisha\nAkeiba\nAlecia\nAlex\nAlissa\nAlycia\nAriana\nAyla\nBrianne\nBridgette\nBriona\nBrionna\nCamille\nCarol\nCecily\nChina\nChrystal\nConnie\nCristina\nDaisy\nDesirae\nDestin\nEricka\nGlenda\nHayden\nHaylie\nHeaven\nIeshia\nImani\nJalissa\nJamika\nJanna\nJelisa\nJessi\nJulianna\nKanisha\nKasi\nKathy\nKattie\nKaty\nKeana\nKeely\nKeona\nKesha\nKia\nKianna\nKira\nLacee\nLakendra\nLana\nLaquesha\nLaquisha\nLashonda\nLatifah\nLena\nLindy\nMacey\nMalorie\nMarie\nMarlee\nMarsha\nNadia\nNichole\nPatience\nRanda\nRiley\nRuth\nSamatha\nSantana\nSantanna\nShakira\nShanita\nShantavia\nSharon\nShawnee\nSheila\nSonya\nSophia\nStefanie\nStormy\nTaryn\nTatiana\nTatyana\nTracey\nTraci\nWhittney\nAaron\nAdrianna\nAdrianne\nAleshia\nAlysia\nAmberley\nAngelia\nAngelina\nAnika\nAshli\nAshlynn\nBailee\nBelinda\nBrandon\nBreana\nBree\nBridgett\nBritnee\nCarson\nCatrina\nChristi\nClaudia\nCory\nDeandra\nDeja\nDestiney\nDevon\nEbone\nEbonie\nEleanor\nElena\nElisabeth\nElisha\nEmilee\nEryn\nGeorgia\nGina\nGwendolyn\nHeidi\nHolli\nJackie\nJacquese\nJakayla\nJameria\nJamesha\nJasmyne\nJazmyne\nJessika\nJosie\nJoyce\nKaela\nKalie\nKarah\nKari\nKarlee\nKarli\nKarlie\nKarly\nKeanna\nKeara\nKendria\nKerri\nKeyanna\nKiarra\nKirstin\nKori\nKortney\nKristal\nKristan\nKristian\nKyra\nLakenya\nLakisha\nLashanda\nLatara\nLatricia\nLayla\nLily\nLyndsay\nLyndsey\nMakenzie\nMarilyn\nMarina\nMarisa\nMartika\nMattie\nMiesha\nMiracle\nMiriam\nMyranda\nNicolette\nNina\nNora\nPorche\nReagan\nReba\nRochelle\nRosalind\nRoxanne\nSamone\nShalonda\nShanavia\nShanique\nShante\nShantrice\nShaquana\nShaquanda\nShelbi\nShelley\nShelly\nSheniqua\nShirley\nSimone\nSumer\nTabatha\nTameka\nTamika\nTaneshia\nTayler\nTiana\nTisha\nTristan\nTyeisha\nTyisha\nUniqua\nAshley\nJessica\nBrittany\nKayla\nAmber\nTaylor\nEmily\nSarah\nJasmine\nHannah\nCourtney\nLauren\nElizabeth\nMary\nTiffany\nAmanda\nVictoria\nMorgan\nHaley\nMegan\nRachel\nAnna\nHeather\nChelsea\nKelsey\nKatherine\nSamantha\nShelby\nStephanie\nKimberly\nAlexis\nBrittney\nJennifer\nWhitney\nRebecca\nOlivia\nJordan\nKatie\nRaven\nAlexandria\nLindsey\nSavannah\nSara\nDanielle\nBrianna\nAllison\nKatelyn\nKristen\nErica\nLaura\nErin\nBriana\nCrystal\nAndrea\nCaitlin\nKathryn\nKaitlyn\nBreanna\nMeagan\nChristina\nMadison\nCatherine\nMelissa\nMargaret\nAlyssa\nAmy\nBrooke\nDestiny\nShannon\nBethany\nKristin\nAriel\nCaroline\nMiranda\nApril\nKelly\nJamie\nPaige\nHolly\nAlicia\nSydney\nSummer\nKendra\nKiara\nMolly\nAlexandra\nBrandi\nCasey\nMichelle\nGabrielle\nMallory\nNicole\nChelsey\nHayley\nMariah\nRebekah\nAshton\nNatalie\nAutumn\nBria\nLeah\nAngela\nBrandy\nJulia\nLeslie\nBailey\nChasity\nKendall\nTori\nChristian\nJulie\nPatricia\nEmma\nKaitlin\nMelanie\nAngel\nAshleigh\nCaitlyn\nJenna\nKara\nAbigail\nDeanna\nLacey\nSabrina\nKasey\nTiara\nAlison\nEbony\nErika\nKristina\nTabitha\nAudrey\nLindsay\nTara\nBianca\nDominique\nGrace\nHillary\nKierra\nMeghan\nSierra\nBritney\nFelicia\nTierra\nAlisha\nCallie\nCarly\nCheyenne\nDiamond\nJade\nMarissa\nRachael\nCassandra\nKatlyn\nLisa\nMadeline\nAbby\nAdrienne\nCandace\nCassie\nHailey\nKathleen\nLydia\nMaria\nBrooklyn\nJacqueline\nKrista\nMaggie\nMaya\nNatasha\nAshlyn\nAsia\nBridget\nCarrie\nCassidy\nIndia\nJillian\nRobin\nAngelica\nHaleigh\nKenya\nLogan\nMonica\nPeyton\nFaith\nJada\nMercedes\nMichaela\nPayton\nAlexa\nCandice\nChristine\nCiara\nCierra\nKristy\nMisty\nValerie\nVirginia\nCarley\nCarolyn\nChrista\nCynthia\nDana\nDesiree\nKiera\nMeredith\nNikki\nRobyn\nTamara\nTyler\nAlexus\nAllie\nAshlee\nChloe\nKaren\nTiffani\nAmelia\nCarmen\nChandler\nCortney\nKelsie\nLatisha\nMartha\nShanice\nTonya\nCarla\nDorothy\nHallie\nHanna\nJazmine\nKirsten\nSavanna\nShaniqua\nAmberly\nAnn\nChelsie\nFrances\nHunter\nJessie\nKatlin\nKelli\nLillian\nMacy\nPamela\nShayla\nTia\nWhitley\nAllyson\nCarlie\nCiera\nDenise\nEllen\nJocelyn\nKaylee\nKourtney\nKrystal\nLacy\nLinda\nParis\nRandi\nSharon\nToni\nVanessa\nWendy\nCara\nCharity\nChristy\nClaire\nDeborah\nDestinee\nEmilee\nHollie\nKadijah\nKalyn\nKaylin\nLori\nMackenzie\nMia\nPrecious\nTeresa\nAnne\nAubrey\nCamille\nCarol\nDevin\nDevon\nDonna\nHali\nIvy\nJoanna\nKaci\nKellie\nKelsi\nKhadijah\nLeigh\nMarisa\nMckenzie\nMelody\nPaula\nStacie\nSusan\nTessa\nAdrianna\nAlexia\nBreonna\nCarlee\nCharlotte\nEboni\nElisabeth\nGabriel\nGloria\nHelen\nHolli\nJalisa\nKatrina\nKaylan\nKeonna\nKristi\nLacie\nLaken\nLakendra\nLoren\nMaegan\nSidney\nSkylar\nSkyler\nBrea\nBrenda\nBridgett\nBridgette\nGeorgia\nHarley\nHaylee\nIesha\nJasmin\nJodi\nJosie\nKaleigh\nKerri\nKylie\nLatonya\nLatoya\nLayla\nMonique\nNina\nSandra\nSheila\nTanesha\nVeronica\nBrittani\nCameron\nDiana\nEvelyn\nGina\nHope\nJaclyn\nJaime\nJana\nJane\nJerica\nJoy\nKaila\nKarlie\nKarly\nKatelin\nKatelynn\nKaty\nKeisha\nKeri\nKristie\nLeanna\nMagen\nNancy\nOctavia\nPrincess\nPriscilla\nRegina\nStacey\nTayler\nTerri\nTracy\nTyesha\nYasmine\nAbbie\nAlecia\nAlyson\nAnsley\nBarbara\nBrenna\nBrittni\nCecilia\nChristen\nHalle\nHeaven\nIeshia\nJacey\nJanna\nJayla\nJoyce\nJudith\nKaley\nKeaira\nKelsea\nKristine\nLatasha\nMakayla\nMaranda\nMarie\nMarilyn\nMelinda\nMollie\nNakia\nNicolette\nRacheal\nShameka\nShana\nShanequa\nShauna\nShelbie\nStacy\nTanisha\nTiera\nValencia\nAbbey\nAlaina\nAlexandrea\nAnnie\nBreana\nBritany\nChiquita\nChristin\nClara\nConstance\nDallas\nDarian\nDixie\nEssence\nFelisha\nGwendolyn\nHayden\nJacquelyn\nJamesha\nKala\nKali\nKari\nKaylyn\nKiana\nKristian\nKyla\nLakeisha\nLana\nLatesha\nLaurel\nLily\nLucy\nLyndsey\nMagan\nMarlee\nMarquita\nNadia\nPatrice\nRhonda\nRuby\nSelena\nShawna\nStarla\nTanya\nTkeyah\nVivian\nYolanda\nZoe\nAdrian\nAlana\nAleshia\nAlexander\nAnissa\nAshely\nAvery\nBonnie\nBreauna\nBriona\nBrionna\nCarissa\nCecelia\nChante\nChastity\nCori\nDakota\nDebra\nDemetria\nDominque\nEricka\nGinger\nHalie\nHilary\nImani\nJameka\nJanet\nJazzmine\nJerrica\nJesse\nJordyn\nKandace\nKarlee\nKarley\nKarmen\nKatharine\nKatheryn\nKayleigh\nKaylynn\nKelci\nKenyatta\nKiarra\nKimberley\nKortney\nLaquita\nLena\nLesley\nMallorie\nMandy\nMarina\nMiriam\nMya\nPortia\nPresley\nRegan\nRiley\nSade\nSadie\nShaina\nShelbi\nShelley\nSherry\nSimone\nTabatha\nTammy\nTerra\nTheresa\nTyra\nAisha\nAmbria\nAnastasia\nArielle\nAshanti\nAshlie\nBetty\nBeverly\nBlair\nBrandie\nBrook\nCari\nCeleste\nCharlene\nChelsi\nCheyanne\nChina\nChrystal\nClarissa\nClaudia\nColleen\nCorey\nDaphne\nDeidra\nDeidre\nDeja\nDomonique\nDylan\nElaina\nElena\nHeidi\nIsabella\nJalesa\nJamaica\nJami\nJasmaine\nJennie\nJenny\nJosephine\nJuanita\nKacey\nKacie\nKalee\nKarissa\nKarla\nKatarina\nKathy\nKelley\nKendal\nKia\nLaci\nLakeshia\nLarissa\nMiracle\nNaomi\nReagan\nRhiannon\nRuth\nSamaria\nSantana\nShamika\nShekinah\nSymone\nTamika\nTaryn\nTera\nTiesha\nTracey\nTreasure\nTrisha\nAaron\nAerial\nAimee\nAlanna\nAlex\nAli\nAlishia\nAlissa\nAmie\nAngelia\nAngelique\nAntionette\nAriana\nAthena\nAudra\nAyanna\nBaylee\nBreona\nCarson\nCayla\nChantel\nChelsy\nCherie\nCheryl\nConnie\nDanyelle\nDawn\nDeandra\nDelaney\nDemi\nDesirae\nDestini\nDestinie\nDianna\nElisha\nEva\nHalley\nHolley\nJalissa\nJamesia\nJamonica\nJaquita\nJasmyne\nJeana\nJena\nJody\nKadesha\nKailey\nKarli\nKarson\nKate\nKaylen\nKayli\nKaylie\nKeiara\nKelcie\nKeosha\nKesha\nKeshia\nKeyanna\nKira\nKrysta\nLakia\nLaportia\nLatrice\nLaurie\nLea\nLeanne\nLynsey\nMadelyn\nMakenzie\nMeaghan\nMikayla\nNichole\nNora\nReanna\nRita\nSally\nSamatha\nSavanah\nShakayla\nShakeria\nShanna\nShanteria\nShaquilla\nShaquille\nShaquita\nSomer\nSommer\nSonya\nStaci\nStormy\nSuzanne\nTasha\nTeri\nTiana\nTiffanie\nTina\nTracie\nTyeisha\nTyeshia\nXavier\nAshley\nJessica\nBrittany\nKayla\nEmily\nHannah\nAmber\nSarah\nJasmine\nTaylor\nLauren\nMary\nCourtney\nElizabeth\nMorgan\nHaley\nAnna\nAlexis\nVictoria\nRachel\nSamantha\nMegan\nTiffany\nAmanda\nBrianna\nHeather\nJordan\nKelsey\nSavannah\nShelby\nKimberly\nMadison\nKristen\nStephanie\nWhitney\nChelsea\nBrittney\nAllison\nJennifer\nKatherine\nLaura\nErin\nDanielle\nRebecca\nKaitlyn\nAlexandria\nLindsey\nCaroline\nKatelyn\nKatie\nBreanna\nErica\nOlivia\nSara\nKathryn\nSydney\nAbigail\nRaven\nCrystal\nCaitlin\nChristina\nDestiny\nBrandi\nAlexandra\nAlyssa\nBrooke\nAutumn\nKaitlin\nSummer\nBriana\nKhadijah\nMallory\nGabrielle\nNatalie\nBethany\nMiranda\nAndrea\nAlicia\nJamie\nMargaret\nNicole\nKristin\nSierra\nAaliyah\nAmy\nMelissa\nMeagan\nBailey\nJulia\nCatherine\nApril\nAshleigh\nEmma\nCandace\nHolly\nShannon\nAngel\nAngela\nKelly\nLeah\nCasey\nHayley\nKendall\nKendra\nMarissa\nTori\nMichelle\nEbony\nLeslie\nAriel\nGrace\nKiara\nKristina\nMariah\nRebekah\nAshlyn\nCaitlyn\nChristian\nFaith\nKara\nHailey\nMaria\nSabrina\nMeghan\nMolly\nAudrey\nBritney\nDiamond\nPeyton\nSavanna\nTabitha\nBrandy\nCarrie\nErika\nKaylee\nVirginia\nBianca\nCandice\nCassidy\nLindsay\nMercedes\nAshton\nBria\nChasity\nChelsey\nCynthia\nKiana\nMichaela\nRachael\nRobin\nTamara\nAbby\nDeanna\nDesiree\nJessie\nPaige\nPatricia\nKierra\nLacey\nMelanie\nMeredith\nTiara\nAlexus\nCheyenne\nJacqueline\nKrista\nMadeline\nTara\nAllyson\nJade\nKathleen\nKatlyn\nHope\nKasey\nLydia\nMaggie\nMonica\nPayton\nCallie\nFelicia\nJenna\nJulie\nMacy\nAshlee\nCarolyn\nDominique\nKelsie\nKristian\nLogan\nCassie\nKenya\nAlisha\nCiara\nJada\nMakayla\nTierra\nChristine\nCierra\nDana\nHollie\nKiera\nMaya\nNatasha\nNikki\nTyler\nAliyah\nAllie\nAsia\nBreana\nHarley\nKadijah\nLisa\nLori\nAlison\nAmberly\nCarly\nClaire\nHanna\nJazmine\nKaylyn\nSkylar\nTanisha\nToni\nAlexia\nBridget\nBrooklyn\nChloe\nHunter\nJustice\nKourtney\nLillian\nTerri\nCarmen\nDarian\nDestinee\nDestiney\nHayden\nJillian\nKalyn\nKatrina\nMackenzie\nMaegan\nMia\nMikayla\nNancy\nRiley\nTia\nAubrey\nAvery\nCara\nCarla\nCarley\nCassandra\nCharity\nHaleigh\nHillary\nKirsten\nKylie\nLaken\nPamela\nPrecious\nRobyn\nShanice\nSidney\nStacy\nVeronica\nAmelia\nAngelica\nAnn\nChandler\nHali\nIesha\nJasmin\nKaren\nKaylin\nKeri\nLatisha\nMaranda\nTiffani\nVanessa\nAlanna\nAlexa\nChristy\nConstance\nDenise\nDorothy\nEllen\nHalie\nImani\nJoanna\nKala\nKaley\nKelley\nKennedy\nMonique\nParis\nAbbey\nAbbie\nAnne\nAnnie\nAriana\nBreonna\nChelsie\nChrista\nCortney\nDallas\nDevin\nDonna\nEmilee\nHeidi\nJaclyn\nJacquelyn\nKaleigh\nKatelynn\nShakeria\nShakira\nTkeyah\nYasmine\nAdrienne\nAlaina\nAlana\nAshely\nBrittani\nCameron\nEvelyn\nFrances\nHelen\nIvy\nJenny\nJocelyn\nKatlin\nKelli\nKenyatta\nKrystal\nLatasha\nMakenzie\nMarisa\nMartha\nMisty\nPorsha\nRegan\nSavanah\nShayla\nSusan\nTanya\nTina\nValerie\nAdrianna\nAlyson\nBridgette\nCayla\nCeleste\nGabriel\nIndia\nIsabella\nJaime\nKellie\nKendyl\nKhadejah\nKristyn\nLaurel\nLexus\nLoren\nMollie\nPaula\nPriscilla\nSadie\nSandra\nSharon\nTanesha\nTayler\nTessa\nZana\nZoe\nAnsley\nBeverly\nBlakely\nBrenna\nBreona\nCharlotte\nCiera\nClaudia\nDarby\nElisabeth\nHallie\nJami\nJerica\nKaci\nKadejah\nKari\nKarli\nKelsi\nLatoya\nLeigh\nLena\nMckenzie\nMeaghan\nMelody\nNakia\nRacheal\nReagan\nShana\nShanequa\nTeresa\nTerra\nTiana\nTianna\nAddison\nAisha\nAlice\nAmbria\nBarbara\nBrionna\nCari\nCarissa\nChristen\nChristin\nDakota\nDestini\nDevon\nDominque\nGeorgia\nGina\nHalee\nHaven\nJana\nJanice\nJanie\nJoy\nKadesha\nKailey\nKarlie\nKassidy\nKayleigh\nKeisha\nKenyetta\nKristy\nLacy\nLora\nMadalyn\nMadeleine\nMadelyn\nMarina\nNaomi\nNichole\nRandi\nShaniqua\nSommer\nTabatha\nTaneisha\nTiera\nTyesha\nVivian\nAerial\nAimee\nAlexius\nAlissa\nAnissa\nAspen\nAudra\nAundrea\nAyla\nBaylee\nBobbie\nBonnie\nBridgett\nCarlie\nDarrian\nDeidra\nDevan\nEboni\nElise\nElisha\nEmerald\nFallon\nGenesis\nHalley\nHaylee\nIris\nJacey\nJakayla\nJameka\nJamese\nJessi\nJosie\nKaila\nKailyn\nKarissa\nKayley\nKeanna\nKendal\nKira\nLacie\nLaquita\nLara\nLeanna\nLinda\nLyndsey\nMacey\nMacie\nMoriah\nPatrice\nReba\nRikki\nRose\nRuth\nShaina\nShameka\nShawna\nSherry\nStaci\nStevie\nSylvia\nTamera\nTasha\nTiesha\nWendy\nAdrian\nAlayna\nAlecia\nAlex\nAlexander\nAlexandrea\nAntoinette\nAshanti\nAshlie\nBailee\nBrenda\nBritany\nCarlee\nCatlin\nCecilia\nCharlene\nDaisy\nDeborah\nDenisha\nElaina\nHadley\nHalle\nHeaven\nHolli\nJameria\nJanet\nJerrica\nJesse\nJoyce\nJoycelyn\nJulianne\nKacie\nKadeshia\nKali\nKandice\nKarly\nKatarina\nKelcey\nKeyanna\nKianna\nKirstie\nKori\nKrysten\nLakendra\nLaporsha\nLaquisha\nLauryn\nLayla\nLexie\nLily\nLucy\nMarlee\nMarquita\nMckayla\nMicah\nMiriam\nMontana\nPorcha\nQuanesha\nRanda\nRegina\nRolanda\nRosemary\nRoxanne\nSally\nSelena\nShakera\nShasta\nSheila\nSonya\nSophia\nSophie\nTamika\nTaryn\nTatum\nTatyana\nTeri\nTonya\nTracy\nWhittney\nAdrianne\nAlexzandria\nAlia\nAlisa\nAlliyah\nAlysia\nAnastasia\nAndria\nAnita\nArianna\nAshlea\nAshli\nAuburn\nBillie\nBlair\nBrea\nBrittaney\nBrittanie\nCarleigh\nCarli\nCarol\nCarson\nCecelia\nChante\nChassity\nCheryl\nCody\nConnie\nCori\nDanyelle\nDaphne\nDeja\nDiana\nEboney\nFelisha\nGabriella\nHayleigh\nHolley\nIeshia\nJakeria\nJamesha\nJameshia\nJamey\nJanae\nJasmyne\nJodi\nJordyn\nKacey\nKadedra\nKadeejah\nKanisha\nKarlee\nKarleigh\nKarley\nKasie\nKaycee\nKaylie\nKaylon\nKeara\nKelsea\nKeondra\nKeonna\nKimber\nKrystin\nKyndall\nKyra\nLana\nLashonda\nLatonya\nLaurie\nLela\nLesley\nLinsey\nLondon\nMagan\nMallorie\nMarie\nMarilyn\nMarley\nMeleah\nMichael\nNoelle\nPatience\nPorsche\nPresley\nQuanisha\nRaina\nRaquel\nRuby\nRyan\nSamatha\nShacoria\nShanna\nShantel\nShaquita\nShayna\nShelbi\nSkyler\nStacey\nStacie\nTalia\nTammy\nTatiana\nTiarra\nTyneshia\nTyra\nValencia\nWhitley\nJessica\nAshley\nHannah\nEmily\nBrittany\nKayla\nTaylor\nAmber\nJasmine\nMary\nSarah\nAnna\nHaley\nMorgan\nCourtney\nElizabeth\nAlexis\nVictoria\nLauren\nRachel\nMegan\nSamantha\nBrianna\nMadison\nSavannah\nShelby\nTiffany\nKelsey\nChelsea\nKristen\nKatherine\nAllison\nAmanda\nDestiny\nHeather\nJordan\nRebecca\nSydney\nKaitlyn\nOlivia\nKatelyn\nErin\nKimberly\nAlexandria\nBrittney\nJennifer\nBreanna\nAbigail\nErica\nSara\nStephanie\nKatie\nDanielle\nChristina\nLindsey\nAlexandra\nRaven\nLaura\nBrooke\nMiranda\nWhitney\nBailey\nCaroline\nAlyssa\nKristin\nAutumn\nBrandi\nKaitlin\nGabrielle\nAmy\nCaitlin\nMelissa\nBriana\nCatherine\nAngel\nAndrea\nShannon\nSummer\nKathryn\nJamie\nMargaret\nNatalie\nEmma\nHolly\nMallory\nKiara\nMarissa\nBethany\nMolly\nKelly\nMeagan\nNicole\nChristian\nLeah\nCrystal\nJulia\nMadeline\nCasey\nMichaela\nCassidy\nSierra\nTori\nRebekah\nAriel\nMakayla\nMichelle\nTiara\nKaylee\nJada\nJustice\nLeslie\nCaitlyn\nKierra\nAshton\nApril\nAbby\nCheyenne\nAngela\nAaliyah\nBrooklyn\nMaria\nChelsey\nKendra\nMelanie\nPeyton\nRachael\nCandace\nEbony\nKiana\nTamara\nBrandy\nDeanna\nDeja\nDiamond\nKasey\nPaige\nAshlyn\nAsia\nHope\nKatlyn\nTabitha\nAlicia\nAshleigh\nAudrey\nBritney\nChloe\nKirsten\nKrista\nLydia\nAlexus\nCallie\nErika\nGrace\nHailey\nMariah\nFaith\nTia\nAlisha\nAngelica\nChasity\nHayley\nJacqueline\nLacey\nMeghan\nPayton\nSavanna\nChandler\nHaleigh\nKendall\nSabrina\nTierra\nAliyah\nAshlee\nCiara\nCierra\nDominique\nKenya\nMackenzie\nMaya\nVanessa\nClaire\nKennedy\nKristina\nHanna\nJenna\nJessie\nMeredith\nMonica\nSusan\nVirginia\nAmelia\nCarly\nChristine\nDesiree\nHayden\nKara\nMacy\nSidney\nAdrienne\nAlana\nAlexia\nCassandra\nDestinee\nJade\nJosie\nPatricia\nJulie\nKylie\nLindsay\nMckenzie\nTara\nToni\nAnne\nBridget\nCarrie\nJazmine\nKhadijah\nMercedes\nNatasha\nPrecious\nZoe\nBianca\nClaudia\nHarley\nKatelynn\nKathleen\nKrystal\nMaggie\nReagan\nAlexa\nAllyson\nAnn\nBarbara\nCandice\nCarolyn\nCassie\nIsabella\nTatyana\nTyler\nAbbey\nAlison\nBaylee\nBrenda\nBria\nFelicia\nJayla\nKelsie\nKiera\nLatisha\nLisa\nMia\nRobin\nTiana\nAllie\nCameron\nCarley\nCarlie\nCarmen\nCharity\nChristin\nDakota\nDestini\nFrances\nIesha\nKaren\nMelody\nRiley\nSelena\nVeronica\nAlaina\nAlyson\nBreana\nChristy\nCortney\nDallas\nEmilee\nHunter\nIvy\nJillian\nJoanna\nKellie\nLatasha\nSkylar\nTessa\nValerie\nCynthia\nIndia\nJana\nLaurel\nMaegan\nMartha\nTyra\nAmberly\nAubrey\nChristen\nDarian\nDevin\nEboni\nEllen\nHali\nHollie\nJerrica\nKaci\nKaila\nLaken\nLillian\nLogan\nMikayla\nMollie\nMonique\nPamela\nSandra\nTiera\nTiffani\nAdriana\nAdrianna\nBlair\nChelsie\nClara\nConstance\nDarby\nDestiney\nEmerald\nImani\nKaley\nKalyn\nKassidy\nKaylan\nLexus\nMaranda\nMarisa\nNikki\nOctavia\nRandi\nRobyn\nShakeria\nShana\nStacey\nTamera\nAlia\nAnastasia\nAriana\nBrionna\nCayla\nGloria\nHelen\nJalisa\nJuliana\nKala\nKatrina\nKaylin\nKelli\nKelsi\nKourtney\nLeigh\nLyric\nMckenna\nMontana\nNancy\nNia\nRegina\nSadie\nSavanah\nShanna\nSharon\nTatiana\nTerri\nYasmine\nAbbie\nAlanna\nAnnie\nAshlynn\nBailee\nCara\nCarla\nCeleste\nDana\nDemetria\nDiana\nDonna\nEssence\nGabriella\nHallie\nJakayla\nJasmin\nJoy\nKaelyn\nKaleigh\nKali\nKarli\nKayleigh\nKaylyn\nKelley\nKianna\nKortney\nLeanna\nLinda\nMadelyn\nNadia\nNina\nParis\nPriscilla\nRegan\nRyan\nStaci\nStevie\nTanisha\nTatum\nTeresa\nTianna\nWendy\nAlex\nAlissa\nAmie\nAna\nAnsley\nAshlie\nBonnie\nBreonna\nCarlee\nCharlotte\nChastity\nCiera\nDorothy\nEbone\nElise\nElla\nEricka\nGenesis\nGina\nHeaven\nJameria\nKacie\nKatelin\nKenyatta\nKerri\nKeyonna\nKori\nKristi\nLakendra\nLillie\nMeaghan\nMisty\nMyesha\nPresley\nQuanisha\nShania\nShayla\nSimone\nSommer\nStacy\nSusanna\nTrinity\nTristan\nTyeisha\nTyesha\nAdrian\nAerial\nAlecia\nArianna\nBeverly\nBrittani\nBryanna\nCarol\nCathryn\nChrista\nDebra\nDenise\nElisabeth\nEva\nGabriela\nGrayson\nHaylee\nJamecia\nJane\nJasmyn\nJesse\nJodi\nJordyn\nJulianna\nKaitlynn\nKameron\nKarlee\nKaylie\nKeanna\nKenisha\nKenyetta\nKeri\nKia\nKristan\nKrysta\nKyla\nLakeisha\nLatoya\nLexie\nLily\nLorin\nMagan\nMakenzie\nMarie\nMarilyn\nMattie\nMiracle\nMiya\nRaegan\nSantana\nSkyler\nSylvia\nTabatha\nTammy\nTasha\nTerra\nTiffanie\nVivian\nAddison\nAdrianne\nAisha\nAja\nAlayna\nAshly\nAshtyn\nAspen\nAuburn\nAudra\nAyanna\nBlakely\nBrandie\nBrianne\nBrittni\nBrooklynn\nCamille\nCassady\nCecilia\nChandra\nChantel\nChassidy\nChelsi\nCheryl\nCheyanne\nChiquita\nChristan\nChyna\nChynna\nDeborah\nDelaney\nEleanor\nFarrah\nFelisha\nGeorgia\nHalie\nHaven\nHeidi\nJacquelyn\nJaimie\nJalisha\nJameka\nJamila\nJanae\nJanice\nJanie\nJaylyn\nJazmin\nJennie\nJenny\nJerica\nJesslyn\nJodie\nJudy\nKacy\nKadijah\nKailey\nKanesha\nKarissa\nKarlie\nKaty\nKeana\nKeisha\nKeona\nKristian\nKristy\nKyndal\nLacie\nLaquisha\nLara\nLayla\nLexi\nMadyson\nMagen\nMalaysia\nMalika\nMarjorie\nMarquita\nMicaela\nMikala\nNakia\nNichole\nNiki\nRicki\nRosie\nRuby\nSasha\nSerena\nShakayla\nShameka\nShanice\nShawna\nShayna\nShea\nTaryn\nTayler\nTearra\nTerrica\nThalia\nTiarra\nTina\nTonya\nTracie\nWynter\nAbbigail\nAeriel\nAimee\nAkira\nAlexandrea\nAlexius\nAli\nAlice\nAlliyah\nAnnabelle\nAustin\nAvery\nAyana\nBillie\nBobbie\nBrenna\nBrennan\nCaitlynn\nCarissa\nCarlisha\nChelsy\nChesley\nClarissa\nConner\nCydney\nDarnisha\nDeidra\nDenisha\nDevon\nEden\nEvelyn\nFrancesca\nGwendolyn\nHaylie\nHillary\nHolli\nJaime\nJalyn\nJamesha\nJameshia\nJamika\nJaquana\nJocelyn\nJustine\nKacey\nKadie\nKailyn\nKallie\nKanisha\nKari\nKarley\nKarrie\nKassie\nKatlin\nKaylen\nKelsea\nKenzie\nKeyana\nKimberlee\nKrysten\nKyndall\nKyra\nLacy\nLakeshia\nLatonya\nLea\nLesley\nLoren\nLori\nLyndsey\nMaddison\nMadilyn\nMaiya\nMallorie\nMarina\nMarlena\nMikaela\nNora\nPortia\nRaquel\nReba\nRhonda\nRikki\nRose\nSally\nShelbie\nTracey\nTraci\nTracy\nTynisha\nValencia\nWhitley\nZoey\nHannah\nEmily\nAshley\nJessica\nBrittany\nTaylor\nKayla\nAlexis\nSarah\nMary\nAnna\nHaley\nCourtney\nMadison\nElizabeth\nAmber\nMorgan\nSavannah\nVictoria\nLauren\nJasmine\nSamantha\nShelby\nBrianna\nRachel\nMegan\nDestiny\nKelsey\nJordan\nRebecca\nTiffany\nAmanda\nKaitlyn\nHeather\nKristen\nKimberly\nBreanna\nChelsea\nSydney\nAlexandria\nOlivia\nKatherine\nErin\nAllison\nErica\nStephanie\nCaroline\nLaura\nAbigail\nAlyssa\nJennifer\nBrittney\nKatie\nAlexandra\nBailey\nAutumn\nKatelyn\nSara\nCatherine\nLindsey\nCaitlin\nWhitney\nDanielle\nEmma\nGabrielle\nBrooke\nMallory\nKathryn\nRebekah\nBethany\nBriana\nSummer\nChristina\nRaven\nMiranda\nJulia\nMeagan\nMolly\nAngel\nAndrea\nMelissa\nNatalie\nPeyton\nAmy\nBrandi\nKaitlin\nAlicia\nCheyenne\nHolly\nKristin\nNicole\nCrystal\nSierra\nJamie\nCasey\nKiara\nAlexus\nAbby\nAshton\nMadeline\nHayley\nMakayla\nAshlyn\nHailey\nJada\nMargaret\nMaria\nPayton\nAngela\nAsia\nCaitlyn\nCierra\nLeah\nAriel\nKelly\nMarissa\nCassidy\nKaylee\nKendra\nShannon\nGrace\nKendall\nMackenzie\nMariah\nMeredith\nRachael\nSabrina\nSavanna\nBrandy\nKierra\nPaige\nTori\nChloe\nFaith\nChristian\nClaire\nAshleigh\nLogan\nMonica\nApril\nCallie\nKara\nLeslie\nBrooklyn\nDiamond\nMichaela\nTia\nKatlyn\nTiara\nAaliyah\nAudrey\nChelsey\nDeja\nJenna\nKiana\nMckenzie\nCarly\nHope\nLindsay\nMelanie\nAlisha\nDominique\nTara\nAlana\nChristine\nJessie\nKasey\nMichelle\nCandace\nDesiree\nHanna\nJade\nJustice\nKirsten\nLydia\nSelena\nShania\nAngelica\nCarolyn\nHaleigh\nJulie\nKaren\nMia\nAnne\nCassandra\nChandler\nChasity\nErika\nHali\nJacqueline\nJayla\nKathleen\nKelsie\nMaya\nMeghan\nMercedes\nTabitha\nTamara\nZoe\nAlexia\nAmelia\nBaylee\nDestinee\nIvy\nKennedy\nMacy\nPatricia\nPrecious\nShayla\nDeanna\nMaggie\nMikayla\nAshlee\nCandice\nCharity\nDakota\nKatelynn\nKenya\nMarisa\nReagan\nTyra\nAllie\nAnn\nHayden\nIndia\nJazmine\nKatlin\nKrystal\nLacey\nSkylar\nVirginia\nBria\nJoanna\nJosie\nKristina\nMakenzie\nMoesha\nRiley\nShakira\nAdrienne\nCarrie\nEbony\nLisa\nBreana\nCeleste\nCiera\nDallas\nHarley\nKrista\nKylie\nLexus\nMonique\nTyesha\nAlexa\nBianca\nCarmen\nChristen\nChristy\nEllen\nEmilee\nFrances\nHallie\nHelen\nJoy\nRobin\nSidney\nSusan\nTessa\nTyler\nYasmine\nAlaina\nAllyson\nAna\nCarley\nClaudia\nDarby\nIesha\nKatrina\nKristian\nMacie\nMaegan\nToni\nTristen\nAbbey\nArianna\nChelsie\nFelicia\nKaley\nKyla\nLeanna\nLillian\nMadelyn\nMollie\nTanisha\nTristan\nValerie\nVanessa\nAddison\nAliyah\nBarbara\nCarson\nChristin\nCiara\nDana\nElisabeth\nHeaven\nJulianna\nKaleigh\nKaylin\nKaylyn\nKelli\nLinda\nStormy\nTatyana\nTayler\nTeresa\nTiana\nVeronica\nAdrian\nAdriana\nAdrianna\nAlyson\nAshanti\nAubrey\nBreonna\nBritney\nCameron\nCarlie\nClara\nCynthia\nDenise\nDevin\nEvelyn\nHollie\nIsabella\nJamia\nKailyn\nKeandra\nKiera\nKristy\nLatoya\nLily\nNadia\nPamela\nRandi\nSandra\nTamia\nTerri\nTierra\nTiffani\nAnnie\nBryanna\nCara\nCarlee\nCortney\nDasia\nDeborah\nHillary\nHunter\nJaclyn\nJakayla\nKaci\nKarlee\nKarlie\nKelley\nKourtney\nLaken\nLyndsey\nMarlee\nMckayla\nMelody\nMisty\nNatasha\nNikki\nPatience\nRaegan\nRegan\nSavanah\nShana\nSharon\nSkyler\nSydnee\nTamera\nAlexius\nAlison\nAmberly\nAnsley\nAntoinette\nAvery\nBridget\nConstance\nDestini\nElise\nGeorgia\nJillian\nKacey\nKaitlynn\nKala\nKassidy\nKayleigh\nKelsi\nKyra\nLacy\nLauryn\nLora\nLori\nMagan\nMikaela\nMiracle\nRegina\nShakera\nShanna\nShayna\nSophia\nTammy\nAbbie\nAlice\nAlissa\nAshlynn\nAustin\nBonnie\nBrenda\nBrenna\nCarla\nChelsi\nDaisy\nDarian\nDemetria\nDixie\nDorothy\nEden\nEmerald\nGabriel\nHeidi\nIvey\nJordyn\nKacy\nKailee\nKarla\nKarli\nKeely\nKellie\nKeondra\nKhadijah\nLexie\nLyric\nMadalyn\nMadeleine\nMarina\nMicah\nNaomi\nSuzanna\nTatiana\nTina\nWhitley\nAli\nAmbria\nAnastasia\nAnnabelle\nAshlie\nAyanna\nBailee\nBrandie\nBrionna\nBrooklynn\nCamille\nCassie\nClarissa\nDaisha\nDenisha\nDevan\nDominque\nEboni\nEssence\nGloria\nGracie\nHalie\nHalley\nHaven\nHaylee\nJacquelyn\nJami\nJanice\nJanie\nJesse\nKaela\nKaila\nKali\nKalyn\nKasie\nKaylen\nKeisha\nKenisha\nKeri\nKeyanna\nKeyona\nKristyn\nLillie\nLoren\nLoretta\nMandy\nMarion\nMartha\nMiriam\nOctavia\nPresley\nPrincess\nRayven\nRyan\nSade\nSadie\nShantavia\nShantel\nShelbie\nShelley\nTalia\nTania\nAddie\nAdrianne\nAimee\nAisha\nAlanna\nAleshia\nAlisa\nAnika\nAundrea\nBeverly\nBlakely\nBrea\nBridgett\nBrittani\nCarissa\nCharlotte\nChastity\nCheyanne\nChristiana\nChyna\nCora\nDaijah\nDaja\nDara\nDestiney\nDiana\nEbonee\nEleanor\nElena\nEricka\nEryn\nEsmeralda\nGabriella\nGenesis\nGrayson\nGwendolyn\nHalle\nHolley\nHolli\nImani\nIsabel\nIvory\nJaida\nJalyn\nJameria\nJamesha\nJanna\nJasmin\nJerrica\nJocelyn\nJodi\nJuliana\nKalee\nKanesha\nKarissa\nKarley\nKassie\nKate\nKatelin\nKaylan\nKayley\nKeira\nKelci\nKori\nKristine\nKylee\nLakeisha\nLakia\nLatasha\nLaurel\nLesley\nLexi\nMaia\nMakala\nMallorie\nMarianna\nMattie\nMckenna\nMiyah\nMyra\nNakia\nNina\nNiya\nPhoebe\nQuanisha\nRaquel\nSally\nSavana\nSelina\nShakayla\nShakeria\nShanice\nShauna\nShelbi\nSimone\nStarla\nTamika\nTristian\nVivian\nWynter\nAbbigail\nAerial\nAja\nAlayna\nAlex\nAlexandrea\nAmie\nAngelique\nAnita\nAntonia\nAriana\nAshli\nAthena\nAudra\nBetty\nCayla\nCaylin\nChelsee\nCheryl\nChina\nChrista\nCodi\nDaphne\nDashia\nDeasia\nDebra\nDelaney\nDestinie\nDonna\nElaina\nElexis\nElla\nEmilie\nGabriela\nGina\nGuadalupe\nHailee\nHelena\nIeshia\nIris\nJamiya\nJane\nJanet\nJodie\nJohnna\nJordon\nJustine\nKailey\nKambria\nKameron\nKatharine\nKatheryn\nKathy\nKaty\nKaylie\nKeanna\nKenesha\nKerri\nKerry\nKeundra\nKeyana\nKiarra\nKiersten\nKimberley\nKinsey\nKira\nKirstie\nKirstin\nLacie\nLakendra\nLaquisha\nLara\nLeigh\nLena\nLila\nMacey\nMaci\nMaranda\nMarkia\nMeaghan\nMelinda\nMoeshia\nMonisha\nMontana\nNancy\nNichole\nNora\nParis\nPiper\nPorsha\nPortia\nRena\nRenee\nRose\nRuth\nSerena\nShae\nShaina\nShameka\nShawna\nSherry\nStacey\nSuzanne\nTakia\nTameshia\nTaryn\nTatum\nTatyanna\nTianna\nTiera\nTonya\nTracey\nTrinity\nTrista\nTykeria\nValencia\nWinter\nXena\nYasmin\nYolanda\nZaria\nHannah\nEmily\nAshley\nSarah\nTaylor\nMadison\nJessica\nAlexis\nAnna\nKayla\nMary\nElizabeth\nBrittany\nLauren\nCourtney\nHaley\nJasmine\nAmber\nSavannah\nMorgan\nDestiny\nVictoria\nBrianna\nRachel\nJordan\nShelby\nSamantha\nKaitlyn\nMegan\nKatelyn\nOlivia\nSydney\nAbigail\nKatherine\nAllison\nKelsey\nRebecca\nErin\nAmanda\nBreanna\nAlexandria\nTiffany\nAutumn\nAlyssa\nBailey\nBrooke\nKimberly\nSara\nKatie\nKristen\nCaroline\nLindsey\nChelsea\nHeather\nLaura\nEmma\nRaven\nJennifer\nDanielle\nBriana\nChristina\nCaitlin\nKathryn\nGabrielle\nStephanie\nSummer\nNatalie\nAlexandra\nWhitney\nAngel\nErica\nSierra\nKaitlin\nAaliyah\nBrooklyn\nAlexus\nBrittney\nCatherine\nMakayla\nMargaret\nBethany\nJada\nMolly\nJulia\nLeah\nMiranda\nKaylee\nCheyenne\nCassidy\nAshton\nAsia\nKendall\nAbby\nAshlyn\nMallory\nAndrea\nAdrianna\nAlicia\nKiara\nSabrina\nCaitlyn\nChloe\nKatlyn\nRebekah\nMckenzie\nFaith\nHolly\nKristin\nMadeline\nMeagan\nSavanna\nMelissa\nMia\nAmy\nAriel\nHailey\nMichaela\nPayton\nGrace\nAngela\nPeyton\nMariah\nShannon\nDeanna\nLydia\nPaige\nKierra\nLillian\nMarissa\nAudrey\nCarley\nHope\nKelly\nMeredith\nTia\nAshleigh\nBrandi\nChasity\nDesiree\nJamie\nKennedy\nRachael\nTamara\nChristian\nEbony\nJenna\nMichelle\nAnne\nApril\nCrystal\nKara\nKendra\nMikayla\nNicole\nBaylee\nDeja\nJade\nKirsten\nMonica\nDominique\nHanna\nMackenzie\nMaria\nCasey\nDiamond\nKelsie\nMeghan\nTiara\nIsabella\nKristina\nLeslie\nAlana\nCarly\nCierra\nClaire\nHarley\nHayley\nKaleigh\nMiracle\nSidney\nTabitha\nTori\nTyra\nMaya\nPatricia\nPrecious\nCallie\nCandace\nJayla\nLacey\nLindsay\nSelena\nAlexia\nAshlee\nChelsey\nDana\nDestinee\nLogan\nZoe\nAdriana\nHaleigh\nMaggie\nMercedes\nVirginia\nAllie\nAllyson\nCharity\nCiara\nErika\nJillian\nKatelynn\nMelanie\nEmilee\nBria\nJazmine\nKathleen\nKylie\nMakenzie\nRobin\nAddison\nBrandy\nDakota\nDestini\nJessie\nKaren\nKiana\nShayla\nSusan\nTara\nAubrey\nBailee\nBritney\nCameron\nCandice\nCarrie\nChristine\nHayden\nIvy\nKenya\nSophia\nAlison\nAmelia\nAnnie\nAshlynn\nAvery\nFrances\nIndia\nJustice\nMacy\nRiley\nTatyana\nAlexa\nAnsley\nAyanna\nBreana\nCynthia\nHallie\nImani\nKaitlynn\nKelsi\nKrista\nKyla\nKyra\nMckayla\nSavanah\nTierra\nTyler\nVeronica\nAlaina\nCamille\nCassandra\nJacqueline\nJakayla\nJoy\nKacie\nKarlee\nKatelin\nKeri\nLily\nMarisa\nRegina\nSadie\nSkylar\nTessa\nTiffani\nAerial\nAlisha\nAlissa\nAlyson\nCarmen\nCassie\nJalisa\nKaley\nKasey\nKristian\nLori\nMadelyn\nNikita\nPresley\nShakira\nShirley\nSkyler\nTamia\nToni\nVanessa\nAngelica\nAnn\nCarolyn\nChrista\nClaudia\nDaisy\nDiana\nElisabeth\nEvelyn\nJordyn\nJosie\nJulie\nKaylin\nKeely\nKelli\nKellie\nKira\nKourtney\nLexus\nLoren\nMadeleine\nMaegan\nMontana\nNikki\nRegan\nRyan\nTiana\nTyesha\nAbbey\nAbbie\nBonnie\nDarian\nDasia\nFelicia\nGeorgia\nHali\nJenny\nJulianna\nKarley\nKatrina\nKaylyn\nMagen\nMarilyn\nNancy\nNaomi\nSandra\nStacie\nTamera\nTristan\nValencia\nValerie\nZoey\nAimee\nAliyah\nAmberly\nBarbara\nBianca\nBryanna\nChandler\nChelsie\nChristen\nDelaney\nGabriela\nGloria\nHillary\nJacquelyn\nJodi\nKaci\nKatlin\nKatlynn\nKaylie\nKiera\nLaken\nLinda\nMacey\nMaranda\nNadia\nOctavia\nPamela\nParis\nReagan\nScarlett\nTeresa\nTheresa\nWendy\nYasmine\nAkira\nAlice\nAlliyah\nAnastasia\nArianna\nBreonna\nBrionna\nCarlee\nCarlie\nCharlotte\nChassity\nDallas\nDeborah\nDemi\nDestiney\nErykah\nEssence\nJoanna\nKassidy\nKaylan\nKrystal\nLakendra\nLatasha\nMadalyn\nMelody\nMoesha\nMollie\nMonique\nNakia\nNatasha\nTakia\nTrinity\nAdrian\nAdrienne\nAna\nAuburn\nBrenda\nBridgette\nBrooklynn\nCara\nCarleigh\nCayla\nCheyanne\nClara\nCortney\nDeasia\nDevin\nDominque\nDonna\nDorothy\nEboni\nEleanor\nEricka\nHaylee\nHelen\nHollie\nHunter\nJacey\nJameria\nJane\nJanna\nJocelyn\nJulianne\nKailey\nKali\nKarlie\nLaurel\nLexie\nLillie\nLisa\nLyndsey\nLyric\nMadilyn\nMckenna\nMikaela\nNora\nPatrice\nRaegan\nRagan\nRobyn\nRylee\nSally\nSerena\nShakayla\nStacey\nSylvia\nAleah\nAlex\nAriana\nArielle\nBaylie\nBridget\nCamryn\nCecilia\nChina\nChristy\nConstance\nDaja\nDarby\nDeidra\nDemetria\nDenise\nDenisha\nEllen\nEva\nGabriella\nGenesis\nGlenda\nHeaven\nIsabel\nIvey\nJailyn\nJanet\nJasmin\nJessi\nKacey\nKailyn\nKalyn\nKari\nKarli\nKayleigh\nKiley\nKinsey\nKortney\nLauryn\nLucy\nMacie\nMalaysia\nMalia\nMeaghan\nNina\nPrincess\nRacheal\nRandi\nSharon\nShelbi\nSommer\nSophie\nStacy\nStella\nSydnee\nTalia\nTanesha\nTayler\nTerri\nAlexius\nAlisa\nAmari\nAnissa\nAnnamarie\nAshanti\nAshia\nAshli\nBetty\nBlair\nBrantley\nBridgett\nBriona\nBrook\nCarson\nCeleste\nCelina\nCiera\nDanesha\nDeonna\nDevan\nDixie\nGina\nHarlee\nIsabelle\nJaida\nJaleah\nJamia\nJana\nJanae\nJaylin\nJayme\nJessika\nJuliana\nJuliet\nKaila\nKalee\nKallie\nKathie\nKaylen\nKeanna\nKelley\nKelsea\nKendal\nKeondra\nKia\nKristie\nKrysten\nKylee\nKyndall\nLakenya\nLeanna\nLena\nLesley\nMakala\nMicaela\nMisty\nMyesha\nRuby\nShameka\nShanna\nSkye\nStevie\nSydni\nTasha\nTatiana\nTatum\nTianna\nVivian\nAlexandrea\nAlly\nAlysa\nAmie\nAngelique\nArin\nAsha\nAshlie\nBillie\nBobbie\nBrieanna\nBrittani\nBrittanie\nCailyn\nCarissa\nCarla\nChristiana\nCindy\nClarissa\nColleen\nCristina\nDeandra\nDeandrea\nDrew\nElaina\nElena\nElla\nEryn\nFarrah\nGillian\nHailee\nHalie\nHarleigh\nHarlie\nHarmony\nHaven\nHeidi\nHolley\nJala\nJaliyah\nJayda\nJazmyne\nJodie\nJoi\nJosephine\nKadesha\nKailee\nKaliyah\nKandice\nKanisha\nKarina\nKayley\nKeandra\nKeasia\nKenesha\nKensley\nKeyona\nKhadijah\nKianna\nKristan\nKristy\nKyleigh\nLakeisha\nLara\nLarissa\nLatoya\nLaurie\nLea\nLeigh\nMaci\nMadelynn\nMagan\nMaliyah\nMandy\nMara\nMarlee\nMarley\nMartha\nMattie\nMelinda\nMicah\nMichael\nMiriam\nMiya\nNakita\nNiya\nPeggy\nPriya\nQuanisha\nRenee\nRyann\nSera\nShaniya\nShayna\nShelbie\nSherry\nShyanne\nSusanna\nTabatha\nTamesha\nTanisha\nTaniya\nTanner\nTeri\nTiarra\nTiera\nTonya\nTracey\nTraci\nTracy\nWinter\nZakiya\nHannah\nAlexis\nEmily\nMadison\nTaylor\nSarah\nAshley\nAnna\nLauren\nJessica\nMary\nElizabeth\nKayla\nHaley\nJasmine\nMorgan\nVictoria\nBrittany\nDestiny\nCourtney\nSavannah\nAmber\nBrianna\nJordan\nSamantha\nMegan\nKaitlyn\nAllison\nRachel\nAbigail\nOlivia\nSydney\nAlyssa\nShelby\nKatherine\nBreanna\nKatelyn\nKelsey\nEmma\nRebecca\nCaroline\nBailey\nJada\nCaitlin\nAlexandria\nAutumn\nMakayla\nKatie\nTiffany\nChristina\nSara\nHeather\nLindsey\nErin\nRaven\nAmanda\nSummer\nAngel\nBrooke\nKathryn\nMadeline\nKimberly\nJulia\nLaura\nGabrielle\nWhitney\nBriana\nJennifer\nStephanie\nAshlyn\nKristen\nMargaret\nChelsea\nKaitlin\nAlexandra\nBrittney\nCatherine\nCassidy\nChloe\nCaitlyn\nCheyenne\nFaith\nNatalie\nErica\nAriel\nMackenzie\nKiara\nLeah\nAbby\nDanielle\nMallory\nMikayla\nMeagan\nMolly\nSierra\nKaylee\nBethany\nHailey\nAlexus\nAshton\nBrooklyn\nMiranda\nNicole\nMaria\nMariah\nMichaela\nJayla\nPayton\nAaliyah\nGrace\nJamie\nKatlyn\nSavanna\nClaire\nDiamond\nHolly\nMaggie\nMarissa\nPeyton\nRebekah\nMya\nSabrina\nAlicia\nKendall\nMonica\nAmy\nAsia\nHope\nAndrea\nApril\nLydia\nMeredith\nSelena\nTiara\nHanna\nKennedy\nAllie\nAshleigh\nMckenzie\nShannon\nJenna\nKristin\nMaya\nMia\nCarly\nKendra\nLillian\nBrandy\nKelly\nAngela\nCassie\nCrystal\nLindsay\nMadelyn\nMelissa\nTyra\nAudrey\nDeanna\nKierra\nPaige\nTia\nZoe\nCandace\nChasity\nDeja\nJulie\nKirsten\nLeslie\nTori\nAdrianna\nBaylee\nCasey\nHaleigh\nReagan\nTabitha\nBailee\nCameron\nCierra\nKatelynn\nMakenzie\nMichelle\nAlison\nAngelica\nAshlee\nCarley\nDominique\nEbony\nKylie\nKyra\nRiley\nSidney\nAmelia\nBrandi\nCallie\nChelsey\nFrances\nHarley\nHayley\nKyla\nTatyana\nAlexia\nAlissa\nAllyson\nDestinee\nErika\nKasey\nMeghan\nTamara\nTamia\nTessa\nAdrienne\nDakota\nJade\nKourtney\nLogan\nSkylar\nAlana\nAvery\nChristian\nJessie\nKara\nNadia\nCarrie\nIsabella\nJillian\nKaleigh\nTara\nVirginia\nAmari\nAnnie\nAubrey\nCamille\nDiana\nEmilee\nHeaven\nJazmine\nMercedes\nPatricia\nRegan\nCarmen\nCharity\nHelen\nJacqueline\nJakayla\nJosie\nJustice\nKailey\nMelanie\nRachael\nTrinity\nAbbey\nAnn\nAnne\nAnsley\nCassandra\nHayden\nJordyn\nJulianna\nKatelin\nKathleen\nKatlin\nKiera\nKrista\nKristina\nLily\nMacy\nVanessa\nAbbie\nAlexa\nAmberly\nAna\nIndia\nKaci\nKelsie\nLacey\nLauryn\nLisa\nMollie\nNatasha\nNia\nSkyler\nAlly\nAshlynn\nHaylee\nMattie\nCarlee\nCynthia\nJalyn\nKayleigh\nKaylin\nKenya\nLillie\nMelody\nSusan\nAlyson\nAriana\nAyanna\nCharlotte\nCheyanne\nClara\nDesiree\nDestini\nDorothy\nEboni\nErykah\nFelicia\nHunter\nJoanna\nJodi\nKaitlynn\nKaylyn\nKrystal\nMaegan\nRaegan\nSophia\nTayler\nTyler\nVeronica\nAddison\nAdriana\nAlisha\nAnastasia\nBritney\nChrista\nCiara\nDarby\nEllen\nEmilie\nHallie\nJamia\nJasmin\nKacie\nKatrina\nKaylan\nKaylie\nKiana\nLinda\nMacie\nMartha\nRosa\nSavanah\nShayla\nTatum\nTierra\nAlanna\nAliyah\nBryanna\nCandice\nCarlie\nCarolyn\nCayla\nCiera\nCortney\nDana\nDelaney\nGloria\nJulianne\nKaley\nKalyn\nKaren\nKennedi\nKira\nLyric\nMarisa\nMiracle\nMonique\nMontana\nOctavia\nParis\nShania\nTiana\nToni\nYasmine\nAlecia\nBaleigh\nBrenda\nCara\nCarson\nChristine\nDejah\nDestiney\nEden\nElisabeth\nEvelyn\nGabriella\nImani\nIvy\nJenny\nJoy\nKacey\nKarlie\nKaylen\nLaken\nLori\nLucy\nLyndsey\nMaci\nMadalyn\nMikaela\nNancy\nRegina\nRobin\nSadie\nSophie\nTerri\nAngelina\nAyana\nBreana\nCamryn\nChandler\nChristen\nChristin\nDaisy\nDenise\nGeorgia\nGracie\nHali\nJazmin\nJerrica\nKali\nKarlee\nKate\nKayley\nKelsi\nKeri\nKerri\nMadeleine\nMakala\nMalia\nNaomi\nNikki\nNina\nPamela\nPrecious\nReanna\nRuth\nScarlett\nShakira\nStacy\nValerie\nZaria\nArianna\nBarbara\nBrenna\nBria\nBriley\nCarla\nCarol\nCecilia\nChyna\nClaudia\nDonna\nElaina\nEleanor\nHalie\nJailyn\nJana\nJane\nJewel\nKailyn\nKassidy\nKelley\nKelli\nKhadijah\nLacie\nLaurel\nLexi\nLoren\nMacey\nMckayla\nMiriam\nPresley\nPrincess\nSerena\nSharon\nTiffani\nTyesha\nTytiana\nAisha\nAlex\nAlice\nAniya\nAnnabelle\nAshanti\nAshlie\nAva\nBianca\nCarissa\nCarli\nCelena\nChristy\nCindy\nConstance\nDaijah\nDaja\nDallas\nDasia\nDeonna\nDevin\nDevon\nElise\nEssence\nGenesis\nHaven\nHeidi\nIsabel\nJaden\nJaelyn\nJami\nJesse\nJocelyn\nKallie\nKaycee\nKendal\nKinsley\nKori\nKylee\nLarissa\nLayla\nLeann\nLexus\nLondon\nMalaysia\nMaleah\nMallorie\nMalori\nMarlee\nMarley\nMoesha\nMyah\nPatience\nRandi\nRobyn\nSandra\nSavana\nShakayla\nShawna\nSydnee\nSylvia\nTalia\nTamera\nTanisha\nTanner\nTatiana\nTea\nTeresa\nTykeria\nWinter\nAbbigail\nAbigayle\nAlayna\nAlexius\nAliya\nAlyssia\nAnita\nAnnmarie\nArielle\nAspen\nAubree\nAurora\nAzaria\nBlakely\nBonnie\nBreonna\nBrianne\nChelsie\nClarissa\nCydney\nDeasia\nDeborah\nEbone\nElexis\nEliza\nElla\nEricka\nEva\nGabriel\nGillian\nHalee\nHalley\nHayleigh\nHollie\nJabria\nJala\nJameria\nJayda\nJesslyn\nJuanita\nKarley\nKatlynn\nKayle\nKayli\nKeely\nKeirra\nKeonna\nKinsey\nLakeisha\nLana\nLaney\nLara\nLatia\nLeanna\nLexie\nLila\nMadelynn\nMadisyn\nMakaila\nMarina\nMarion\nMarlana\nMckenna\nMckinley\nMeaghan\nMisty\nNaja\nNichole\nNiya\nRose\nRuby\nShaina\nShameka\nShantavia\nShelley\nSusannah\nSydnie\nTamesha\nTamya\nTania\nTaryn\nTerra\nTianna\nTiera\nTyneshia\nVivian\nWendy\nZoey\nAdrian\nAkira\nAleah\nAngelique\nAnnamarie\nAnsleigh\nArmani\nAuburn\nBeth\nBrittani\nBrittni\nBryana\nCaitlynn\nCaleigh\nCamilla\nCamisha\nCeleste\nCelina\nCeline\nCherokee\nChrissy\nCora\nCristina\nDaphne\nDarian\nDawn\nDeana\nDenisha\nDesirae\nDesire\nDestin\nDixie\nDylan\nElissa\nEmory\nEsmeralda\nFallon\nFelicity\nGabriela\nGiselle\nHalle\nHarper\nIsabelle\nIyana\nJaime\nJamaya\nJamiah\nJanet\nJaniya\nJasmyne\nJaylen\nJill\nJodie\nJuliana\nKaila\nKalee\nKaliyah\nKameron\nKamryn\nKanesha\nKarla\nKarson\nKeana\nKeandra\nKeandrea\nKeanna\nKeaundra\nKellie\nKelsee\nKristy\nKyleigh\nKyler\nKyndall\nLadaisha\nLakendra\nLakira\nLashonda\nLea\nLeigh\nLilly\nMaddison\nMadilyn\nMagan\nMagen\nMaia\nMakiya\nMaranda\nMari\nMarkayla\nMorganne\nMyesha\nMyranda\nNakayla\nNautica\nNikita\nPortia\nRagan\nReilly\nRhiannon\nSally\nSamaria\nSherry\nShyanne\nSimone\nStacey\nTakia\nTakira\nTina\nTracy\nTyeisha\nWhitley\nYvette\nHannah\nEmily\nMadison\nAlexis\nAnna\nTaylor\nSarah\nMary\nElizabeth\nAshley\nDestiny\nLauren\nJessica\nHaley\nSavannah\nKayla\nVictoria\nBrianna\nMorgan\nSamantha\nKaitlyn\nAmber\nAlyssa\nJasmine\nRachel\nBrittany\nOlivia\nEmma\nSydney\nCourtney\nKatelyn\nAbigail\nMegan\nJordan\nShelby\nAllison\nBreanna\nBailey\nErin\nCaroline\nRebecca\nKatherine\nAutumn\nKelsey\nSara\nMakayla\nKaylee\nGrace\nAlexandria\nJada\nAngel\nKatie\nChloe\nJennifer\nKimberly\nTiffany\nLindsey\nMackenzie\nAmanda\nGabrielle\nCaitlin\nAbby\nLaura\nHeather\nKathryn\nMadeline\nNatalie\nAlexandra\nFaith\nAshlyn\nMikayla\nDanielle\nCatherine\nErica\nRaven\nCaitlyn\nAndrea\nBrooklyn\nSierra\nWhitney\nMolly\nBethany\nBriana\nBrooke\nJulia\nKiara\nMallory\nMargaret\nMaria\nCheyenne\nHailey\nKristen\nLeah\nMya\nChristina\nBrittney\nStephanie\nMckenzie\nSummer\nDiamond\nRebekah\nLillian\nAsia\nChelsea\nJayla\nNicole\nSkylar\nAriel\nCassidy\nIsabella\nKaitlin\nCamryn\nAlexia\nClaire\nLauryn\nSavanna\nAudrey\nMariah\nTatyana\nMaggie\nKennedy\nRiley\nAshton\nCallie\nCameron\nHayley\nKendall\nMadelyn\nMarissa\nShania\nZoe\nHanna\nMichaela\nMiranda\nAmy\nHope\nLeslie\nAlexus\nJenna\nKatlyn\nPeyton\nTori\nAlicia\nKelly\nMacy\nMelissa\nVirginia\nAngela\nCierra\nHolly\nMeagan\nPayton\nAaliyah\nChristian\nKendra\nTiara\nBaylee\nChasity\nDestinee\nGracie\nSabrina\nAllie\nAmelia\nCasey\nCrystal\nKylie\nLydia\nReagan\nAnnie\nClaudia\nJamie\nJamya\nKierra\nKirsten\nMercedes\nMeredith\nPaige\nSidney\nTrinity\nBrandi\nMelanie\nShannon\nDeja\nKaleigh\nMaya\nSelena\nSophia\nTara\nAllyson\nAvery\nCarley\nDeanna\nHaleigh\nJulie\nKatelynn\nKristin\nMakenzie\nTia\nHarley\nHayden\nJade\nKara\nKyla\nTamara\nTamia\nAshleigh\nBrandy\nBritney\nErika\nJakayla\nMia\nTabitha\nAbbie\nAlexa\nCarly\nCharity\nKyra\nMichelle\nAdrianna\nAlana\nAmaya\nCassie\nDesiree\nEbony\nKristina\nLily\nAlaina\nAlison\nAlissa\nAnn\nAyanna\nCarlie\nCiara\nDominique\nHeaven\nJessie\nJillian\nKailey\nPresley\nRegan\nAliyah\nAngelica\nAriana\nChandler\nDestini\nHunter\nLindsay\nLogan\nMeghan\nTessa\nTyra\nValerie\nAbbey\nAnne\nAnsley\nCarmen\nDakota\nJamia\nJazmine\nJordyn\nRachael\nSkyler\nAubrey\nCamille\nCarrie\nCarson\nGeorgia\nIndia\nKaley\nKalyn\nKaylin\nKelsie\nNadia\nNancy\nRaegan\nRobyn\nAlyson\nApril\nCarolyn\nChelsey\nCheyanne\nDaisy\nDarby\nEllen\nIsabel\nJosie\nLinda\nMonica\nNaomi\nSophie\nTalia\nVeronica\nYasmine\nAddison\nAlisha\nBailee\nDana\nDelaney\nEleanor\nElisabeth\nEmilee\nEssence\nIvy\nJacqueline\nJoanna\nKaren\nKassidy\nKatelin\nKathleen\nKayleigh\nKiera\nKourtney\nPatricia\nSusan\nToni\nZaria\nAdrienne\nAlly\nAmya\nAna\nAshlee\nBianca\nBryanna\nCassandra\nFrances\nGabriella\nHallie\nJalyn\nJamiya\nJulianna\nKacie\nKaitlynn\nLacey\nLexus\nLucy\nMiracle\nParis\nTatiana\nAmberly\nArianna\nAshlynn\nDasia\nDiana\nEva\nEvelyn\nHelen\nKarla\nKasey\nKeyonna\nKira\nKylee\nLaken\nMarlee\nPrecious\nRandi\nShakeria\nTamya\nVanessa\nAntonia\nCandace\nChristine\nHaylee\nJocelyn\nJustice\nKamryn\nKarlee\nKatlynn\nKeanna\nLillie\nMacey\nMadalyn\nMaegan\nRobin\nSerenity\nTamera\nTianna\nTyler\nAbbigail\nAmari\nCandice\nCayla\nCeleste\nChristen\nCiera\nDestiney\nEmilie\nFelicity\nHaven\nJasmin\nKailee\nKatlin\nKatrina\nKaylie\nKinley\nLana\nLaurel\nLoren\nLori\nLyndsey\nMattie\nNatasha\nPatience\nSavana\nScarlett\nShakayla\nTaryn\nTerri\nTiana\nAlexandrea\nAlice\nAniya\nCaleigh\nCara\nCarlee\nChelsie\nChyna\nCori\nCynthia\nFelicia\nGabriel\nGenesis\nHeidi\nHillary\nJailyn\nJanae\nJoy\nJuliana\nKali\nKarley\nKate\nKaylyn\nKenya\nKinsley\nLainey\nLaney\nLeanna\nMacie\nMadeleine\nMadelynn\nMckenna\nMollie\nNia\nNina\nReanna\nSadie\nSavanah\nShakira\nShamya\nShayla\nSydni\nSydnie\nTeresa\nAdrian\nAlanna\nAleah\nAli\nAnastasia\nAnnabelle\nAyana\nBarbara\nBonnie\nCarla\nChristin\nConstance\nCortney\nDaija\nDaja\nDeborah\nDevin\nEboni\nElaina\nElexis\nElla\nGrayson\nHalie\nHolland\nImani\nIsabelle\nJacquelyn\nJaden\nJaelyn\nJakeria\nJamesha\nJaycie\nJaylen\nKameron\nKarli\nKarlie\nKarmen\nKateria\nKeandra\nKeara\nKeyona\nKirstin\nKristian\nLena\nLexi\nLexie\nLondon\nMadisyn\nMartha\nMicah\nMontana\nNora\nRaquel\nRuby\nRuth\nSandra\nSelina\nShelbie\nSydnee\nTaniya\nTatum\nTierra\nTiffani\nTristen\nTykeria\nVivian\nAddie\nAdriana\nAja\nAlayna\nAlaysia\nAlejandra\nAlivia\nAllyssa\nAshtyn\nAva\nBreana\nBrenda\nBrenna\nBria\nBridget\nCarrington\nChrista\nDeasia\nDemetria\nEllie\nErykah\nEsmeralda\nGillian\nGloria\nHollie\nJacey\nJacklyn\nJala\nJalexis\nJalisa\nJane\nJaylin\nKaci\nKaila\nKailyn\nKari\nKaytlin\nKelli\nKeonna\nKiana\nKiley\nKimora\nKinsey\nKrista\nLatavia\nMaci\nMagen\nMakala\nMakenna\nMakiya\nMalaysia\nMalia\nMarley\nMckayla\nMicaela\nMiriam\nMiya\nMyesha\nNautica\nNikki\nParker\nRegina\nRylee\nRyleigh\nShaylee\nStella\nTionna\nTristan\nWynter\nZoie\nAiyana\nAkira\nAlondra\nArielle\nBobbie\nCalista\nCassady\nCecilia\nCharlotte\nChristiana\nCindy\nClara\nDaisha\nDaphne\nDarian\nDejah\nDonna\nEbonie\nEden\nElena\nFarrah\nGuadalupe\nHailee\nHalee\nHalle\nHalley\nHarmony\nIesha\nIsis\nIvey\nJameria\nJamyia\nJewel\nJurnee\nKarissa\nKaylah\nKaylan\nKayley\nKeely\nKennedi\nKenyatta\nKeyara\nKiarra\nKimberley\nLakeria\nLeann\nLesley\nLilly\nLisa\nLyric\nMadilyn\nMeaghan\nNikita\nNiya\nOctavia\nPamela\nPriscilla\nShanna\nSharon\nSofia\nSommer\nSylvia\nTabatha\nTakira\nTanya\nTatianna\nTyesha\nTytiana\nValencia\nZykeria\nAlesia\nAlia\nAlycia\nAlysa\nAmbria\nAngelina\nAnita\nAniyah\nAshanti\nBaleigh\nBentley\nBetty\nBeverly\nBrantley\nBreonna\nBrittani\nBrooklynn\nCaitlynn\nCarleigh\nCarol\nCecily\nCelia\nCharleigh\nChastity\nChristy\nCourtlyn\nDaijah\nDallas\nDaniela\nDenise\nDevyn\nDixie\nDorothy\nDrew\nElisa\nEmory\nFallon\nGabriela\nGenevieve\nGracen\nHadley\nHali\nHana\nHarlee\nHolley\nIndya\nIvory\nIyanla\nJacie\nJadyn\nJakerria\nJalynn\nJamaya\nJameshia\nJamyah\nJania\nJaniah\nJanice\nJayda\nJaylyn\nJayme\nJewell\nJodi\nJosephine\nJudith\nJudy\nKaelyn\nKala\nKaliyah\nKalynn\nKambria\nKassie\nKaycee\nKaylen\nKaylynn\nKearra\nKeirra\nKelsi\nKenzie\nKeri\nKhadijah\nKirby\nKristy\nKylah\nKyleigh\nLacie\nLacy\nLarissa\nLatisha\nLeigh\nLucia\nLuz\nMaddison\nMadyson\nMaleah\nMarina\nMicayla\nMikaela\nMoriah\nNichole\nNigeria\nNyla\nPrincess\nRhiannon\nRileigh\nRosa\nRyan\nSarai\nShaniya\nShanya\nShawna\nShekinah\nShirley\nShyanne\nStacie\nStar\nStormy\nSusanna\nTamiya\nTanner\nTatyanna\nTaylar\nTayler\nTerrica\nTkeyah\nTyanna\nTykia\nWendy\nWhitley\nYesenia\nZhane\nHannah\nAnna\nMadison\nEmily\nSarah\nAlexis\nTaylor\nMary\nElizabeth\nKayla\nDestiny\nLauren\nAshley\nHaley\nBrianna\nSavannah\nJessica\nAbigail\nMorgan\nOlivia\nVictoria\nEmma\nSydney\nJasmine\nKaitlyn\nAlyssa\nKatherine\nAmber\nSamantha\nCaroline\nMakayla\nShelby\nRachel\nKatelyn\nJordan\nMegan\nBrittany\nChloe\nBreanna\nGrace\nJada\nCourtney\nKelsey\nSara\nBailey\nRebecca\nAllison\nAutumn\nKaylee\nNatalie\nHailey\nMackenzie\nErin\nAlexandria\nAngel\nJennifer\nGabrielle\nCaitlin\nDanielle\nLaura\nTrinity\nAmanda\nMadeline\nCaitlyn\nKristen\nSierra\nJulia\nAshlyn\nBrittney\nLindsey\nKathryn\nKatie\nKennedy\nDiamond\nLillian\nErica\nFaith\nMckenzie\nSummer\nMargaret\nRaven\nBrooke\nStephanie\nCatherine\nJayla\nKimberly\nMadelyn\nAbby\nBriana\nCassidy\nChristina\nLeah\nPeyton\nIsabella\nZoe\nBethany\nGracie\nHeather\nMallory\nAlexandra\nAndrea\nMaggie\nAlexia\nTiffany\nBrooklyn\nKaitlin\nCameron\nMakenzie\nMolly\nMikayla\nPayton\nKiara\nAsia\nAlexus\nCheyenne\nKendall\nMichelle\nSkylar\nSophia\nLauryn\nReagan\nHayley\nKatlyn\nMaria\nRebekah\nAudrey\nBritney\nLacey\nLydia\nMacy\nTamia\nNicole\nRiley\nCamryn\nClaire\nJenna\nMya\nAaliyah\nMeagan\nSelena\nWhitney\nAvery\nErika\nMelissa\nAmaya\nAriel\nCharity\nChelsea\nHolly\nLily\nMichaela\nSavanna\nAriana\nCallie\nHanna\nJamie\nMarissa\nMiranda\nAngela\nCrystal\nHaleigh\nHope\nKara\nKierra\nVirginia\nAllie\nDestinee\nJillian\nSabrina\nArianna\nBaylee\nAbbie\nAlana\nAshleigh\nAshton\nChristian\nIsabelle\nJade\nPaige\nTatyana\nTori\nCarly\nHarley\nJosie\nKylie\nMariah\nMia\nRachael\nTabitha\nAddison\nAlicia\nAmelia\nJazmine\nKassidy\nKendra\nLogan\nShania\nAmy\nAnne\nCierra\nDiana\nIndia\nKirsten\nLeslie\nTamara\nCassie\nEvelyn\nKyra\nMeredith\nSophie\nTara\nElla\nIvy\nJakayla\nJulie\nMelanie\nTessa\nBrandy\nCarrie\nDakota\nDesiree\nHayden\nJayden\nKaleigh\nKayleigh\nKristin\nMonica\nAlexa\nAllyson\nAniya\nAnn\nAnnie\nBrenda\nCarley\nCarmen\nCasey\nClaudia\nCynthia\nDeanna\nDeja\nKaley\nKyla\nMercedes\nSidney\nTyra\nZaria\nAdriana\nAnsley\nBailee\nCarolyn\nChasity\nDelaney\nGabriel\nGenesis\nGeorgia\nJamya\nKatelynn\nKathleen\nLucy\nMaya\nSadie\nTamya\nTia\nAliyah\nApril\nAubrey\nDestini\nEbony\nFrances\nHallie\nHaylee\nHeaven\nJacqueline\nJulianna\nKaylie\nKaylin\nKaylyn\nMadalyn\nMeghan\nMollie\nPatricia\nShayla\nAlaina\nAlison\nAmya\nAshlynn\nBrandi\nCamille\nCarlee\nEmilee\nKailey\nKarlie\nKaylan\nKelly\nNadia\nRaegan\nAlisha\nAlyson\nAmari\nAshlee\nHelen\nJamaya\nJoy\nKiana\nMartha\nNaomi\nSerena\nShannon\nTiara\nTierra\nVanessa\nAdrianna\nAlissa\nBrooklynn\nCassandra\nCayla\nIsabel\nJordyn\nKamryn\nKelli\nKira\nLindsay\nMacey\nValerie\nAbbey\nAleah\nAyanna\nBreana\nDeasia\nDestiney\nDominique\nEllen\nEssence\nHalle\nJayda\nKaren\nKasey\nKatrina\nKelsie\nKenya\nKiley\nKristina\nLilly\nMalaysia\nMarlee\nMckenna\nNikki\nNiya\nSavana\nTeresa\nVeronica\nAbbigail\nAlly\nAna\nAniyah\nBianca\nDaisy\nDana\nEleanor\nElisabeth\nHalie\nJaden\nJana\nJasmin\nJaylin\nJoanna\nKrista\nLaurel\nLayla\nMadeleine\nMadyson\nMaranda\nMelody\nNia\nRobin\nSkyler\nSydni\nTiana\nYasmine\nAdrienne\nAngelina\nAva\nBryanna\nCarlie\nChelsey\nCiara\nDixie\nFelicity\nHali\nHeidi\nJalyn\nJamia\nJamiya\nJaniya\nJaycee\nJustice\nKaitlynn\nKali\nKatlin\nKylee\nLexi\nLinda\nLoren\nMattie\nSavanah\nTatum\nAmiya\nBlakely\nBriley\nCara\nCarrington\nCarson\nCecilia\nClara\nDevin\nEden\nEva\nHunter\nJane\nJessie\nJuliana\nKailyn\nKarlee\nKate\nKayley\nKelsi\nKeona\nKourtney\nLacy\nLaney\nLexie\nLisa\nMaci\nMacie\nNatasha\nNina\nParis\nRhiannon\nShakeria\nTatiana\nAlanna\nAlaysia\nAmbria\nAngelica\nAzaria\nBrenna\nCristina\nDorothy\nGabriela\nHarmony\nHaven\nJaila\nJakyra\nJocelyn\nKarley\nKaylen\nKeara\nKennedi\nKeyanna\nKiera\nKinley\nKristian\nLaken\nLeanna\nLillie\nMaegan\nMicah\nMiriam\nMontana\nNancy\nPrecious\nPresley\nRandi\nSandra\nShamya\nShana\nSheridan\nSusan\nTayla\nTerra\nTykeria\nZoie\nAkira\nAmani\nAnnabelle\nAshia\nBridget\nBrooklin\nCandace\nCarissa\nChrista\nDaijah\nDaisha\nDaniela\nDaphne\nDeborah\nEsmeralda\nGillian\nJacey\nJakeria\nJalisa\nJanna\nJanya\nJesse\nKaci\nKailee\nKarla\nKenley\nKiarra\nKiersten\nKrystal\nLori\nMadisyn\nMagen\nMakenna\nMarley\nMckayla\nMiracle\nOctavia\nPrincess\nRegan\nRobyn\nRose\nRuth\nRylee\nSally\nShakira\nSydnee\nTamera\nTianna\nZoey\nAlex\nAli\nAlivia\nAmiyah\nAnaya\nAnya\nAugust\nBayleigh\nBrionna\nCailyn\nCarol\nCherish\nChristine\nDasia\nDejah\nDemetria\nDestinie\nEllie\nGabriella\nGloria\nHarlie\nImani\nJailyn\nJakia\nJanae\nJanice\nJasmyne\nJazmin\nKaelyn\nKaila\nKalyn\nKarli\nKarrington\nKatelin\nKathy\nKatilyn\nKatlynn\nKeasia\nKelsea\nKeri\nKeyonna\nKinsey\nKinsley\nKyleigh\nLeila\nLizbeth\nLondon\nLyndsey\nMahogany\nMakiyah\nMarisa\nMercedez\nMoriah\nPamela\nPatience\nSantana\nSerenity\nShaina\nShaniya\nSharon\nShyann\nSonya\nStacy\nStormy\nTaniya\nTanner\nTayler\nTyler\nZykeria\nAdrian\nAja\nAlayna\nAlecia\nAleigha\nAlesha\nAlice\nAlisa\nAlysa\nAriyana\nAshli\nBeverly\nBeyonce\nChandler\nCharlotte\nCheyanne\nChristiana\nCiera\nConstance\nDaja\nDallas\nDeandrea\nDenise\nDevyn\nElaina\nEmmalee\nGrayson\nHadley\nHalee\nHana\nHarper\nHillary\nHolli\nHollie\nJadah\nJaelyn\nJala\nJalynn\nJami\nJamiah\nJaylyn\nJolie\nJosephine\nJoyce\nJoycelyn\nKacie\nKallie\nKameron\nKarly\nKaylah\nKaytlin\nKensley\nKenzie\nKirstin\nKirstyn\nKyndal\nKyndall\nLakendra\nLana\nLatrice\nLexus\nMadelynn\nMakiya\nMaribel\nMicaela\nMoesha\nMonique\nNautica\nNoelle\nParker\nPiper\nReanna\nRegina\nRyan\nScarlett\nShakayla\nShamiya\nShanya\nShelbi\nShelbie\nTameria\nTania\nTerri\nToni\nTreasure\nTyanna\nTytiana\nVivian\nWinter\nZariah\nAbagail\nAbigayle\nAlexandrea\nAlondra\nAnastasia\nAnnah\nAntonia\nAshanti\nAshlie\nAuriel\nAyana\nAysha\nBentley\nBonnie\nBrantley\nBritany\nBrittani\nBrookelyn\nCailey\nCaitlynn\nCaleigh\nCarli\nCeleste\nCharlie\nChristy\nChyna\nClarissa\nCorinne\nDarby\nDestany\nEboni\nElena\nElise\nEliza\nEmerald\nEmilie\nEmory\nEryn\nGina\nGiselle\nHarlee\nHayleigh\nIman\nIvory\nIyanna\nJaela\nJaliyah\nJameria\nJamyah\nJaslyn\nJaylan\nJewel\nJodi\nJohnna\nJuana\nKacey\nKacy\nKalee\nKarina\nKarissa\nKaya\nKeira\nKellie\nKeyona\nKianna\nKori\nKristy\nLakin\nLatavia\nLatonya\nLeigh\nLia\nLibby\nLilian\nMadelyne\nMadisen\nMakala\nMalika\nMandy\nMarie\nMaryelizabeth\nMekayla\nMiah\nMisty\nMyra\nNakiyah\nNikita\nNykeria\nRagan\nRaquel\nRosa\nRuby\nSaylor\nShay\nShayna\nSkye\nStacey\nStarla\nStella\nSusannah\nSydnie\nTabatha\nTalia\nTionna\nTrinitee\nTriniti\nTyesha\nWendy\nWhitley\nMadison\nHannah\nAnna\nEmily\nSarah\nAlexis\nTaylor\nMary\nDestiny\nLauren\nElizabeth\nAshley\nHaley\nAbigail\nSavannah\nKayla\nEmma\nMorgan\nOlivia\nJessica\nJasmine\nBrianna\nSydney\nAlyssa\nVictoria\nKaitlyn\nJordan\nChloe\nMakayla\nAmber\nSamantha\nBailey\nKatherine\nRachel\nKatelyn\nCaroline\nMackenzie\nMegan\nShelby\nJada\nKaylee\nAutumn\nBreanna\nBrittany\nGrace\nSara\nAngel\nCourtney\nNatalie\nAllison\nGabrielle\nRebecca\nTrinity\nJulia\nAaliyah\nErin\nHailey\nFaith\nIsabella\nGracie\nKatie\nBrooke\nJennifer\nKelsey\nLindsey\nMaggie\nCatherine\nMadeline\nAshlyn\nAbby\nAlexandria\nJayla\nMadelyn\nSummer\nDiamond\nKennedy\nLillian\nMargaret\nMckenzie\nMolly\nZoe\nBrooklyn\nKathryn\nLaura\nMaria\nStephanie\nIndia\nAsia\nAlexandra\nCaitlin\nChristina\nReagan\nAmanda\nAndrea\nSavanna\nSierra\nCassidy\nJenna\nMallory\nMikayla\nMya\nBrittney\nHeather\nPayton\nSkylar\nBethany\nMakenzie\nLeah\nKylie\nSophia\nBriana\nKristen\nTiffany\nChelsea\nKimberly\nPeyton\nCheyenne\nKiara\nLydia\nRaven\nRiley\nAudrey\nClaire\nJamya\nKayleigh\nMichelle\nAshton\nCallie\nDanielle\nKaitlin\nAlexus\nAriel\nAvery\nCameron\nLily\nAmy\nCamryn\nJade\nJamie\nAngela\nCaitlyn\nJordyn\nKatlyn\nMacy\nErica\nMelissa\nTamia\nJosie\nNicole\nAliyah\nAubrey\nHanna\nHope\nMariah\nMarissa\nPaige\nWhitney\nAddison\nAlexia\nCarly\nHaleigh\nJillian\nLauryn\nMeagan\nAbbie\nAlexa\nAmelia\nLeslie\nSadie\nSelena\nAdrianna\nAlana\nAllie\nBaylee\nKyla\nRebekah\nAbbey\nAriana\nHayley\nMiracle\nSkyler\nAshleigh\nCarmen\nMichaela\nSabrina\nAllyson\nBritney\nDaisy\nDestinee\nElla\nKendra\nMeredith\nMiranda\nTori\nVirginia\nApril\nCharity\nFrances\nHayden\nIsabelle\nKaylie\nKirsten\nKyra\nMia\nBailee\nChasity\nDesiree\nHarley\nKaleigh\nKamryn\nKara\nKendall\nMadalyn\nCierra\nDeja\nDestini\nErika\nHeaven\nKelly\nAmari\nAmaya\nAniya\nCrystal\nGabriella\nHolly\nJacqueline\nAdriana\nAlicia\nAyanna\nEmilee\nGeorgia\nJakayla\nJazmine\nKassidy\nMakenna\nMartha\nPatricia\nPresley\nRylee\nSophie\nTaniya\nAlissa\nClaudia\nCynthia\nDestiney\nIsabel\nIvy\nKatelynn\nMaya\nMeghan\nRaegan\nShania\nShannon\nZaria\nAna\nAniyah\nArianna\nCassie\nEvelyn\nHelen\nKailey\nLayla\nLindsay\nRegan\nTabitha\nValerie\nAbbigail\nAleah\nAnn\nAnne\nAnnie\nBrandi\nCamille\nCarlee\nCarley\nCarson\nJulie\nKathleen\nKaylyn\nKrista\nKyleigh\nLacey\nMadyson\nMelody\nMercedes\nMonica\nNevaeh\nRyleigh\nSerenity\nSidney\nTamya\nZoie\nAlayna\nAngelina\nAnsley\nBrandy\nCandace\nCarlie\nChandler\nChelsey\nDelaney\nJaden\nJaniya\nKaren\nKaylin\nKierra\nKinsley\nKristina\nMacie\nMaleah\nMattie\nMelanie\nNia\nShayla\nTiara\nVivian\nYasmine\nAlyson\nAmya\nAngelica\nAnnabelle\nAshlee\nAva\nBrenda\nBryanna\nChristian\nDeanna\nDiana\nEden\nElisabeth\nEliza\nKaitlynn\nKiley\nKristin\nKylee\nMiriam\nSerena\nTamara\nTiana\nAlisha\nAlivia\nAlly\nAnastasia\nAshlynn\nCarrie\nCasey\nCharlotte\nChristy\nEbony\nGabriela\nGloria\nHaylee\nJaelyn\nJayda\nJulianna\nJustice\nKatlin\nKatrina\nKelsie\nLaney\nLaurel\nLexie\nLilly\nLucy\nMadilyn\nMalaysia\nMckenna\nMicah\nMontana\nPamela\nShamya\nTatum\nTatyana\nTia\nAlison\nAmiya\nCarolyn\nClara\nDakota\nDana\nDeasia\nFatima\nGenesis\nHallie\nJalyn\nJasmin\nJessie\nJoanna\nKaley\nKasey\nKennedi\nKenya\nLaila\nLogan\nNadia\nNaomi\nPrecious\nScarlett\nSusan\nAdrienne\nAlaina\nAyana\nBriley\nCaleigh\nCheyanne\nDixie\nHalle\nHarmony\nHollie\nJailyn\nJayden\nJuliana\nKali\nKameron\nKarlie\nKira\nLexi\nLillie\nMadisyn\nMaegan\nMakaila\nMakala\nRachael\nShakayla\nSydni\nTristen\nZoey\nBianca\nCarleigh\nCassandra\nDaisha\nDasia\nEleanor\nElise\nEllie\nEmilie\nGracelyn\nGrayson\nHarper\nImani\nJaida\nJakiya\nJamia\nJamiya\nJazmyne\nJesse\nJoy\nKacie\nKailyn\nKelsi\nLana\nMaci\nMadeleine\nMarisa\nMollie\nNyah\nRegina\nRobin\nRose\nSandra\nSavana\nShakira\nShaniah\nSheridan\nTessa\nAlice\nAnaya\nBaleigh\nBarbara\nCandice\nCara\nChrista\nCiara\nCindy\nCora\nDesirae\nEllen\nEva\nFelicity\nHali\nHaven\nJacey\nJaliyah\nJamyah\nJamyia\nJana\nJazmin\nJewel\nJocelyn\nKamya\nKarlee\nKate\nKatlynn\nKeasia\nKensley\nKeyona\nKiana\nKiersten\nLena\nMacey\nMalia\nMckayla\nMckinley\nNancy\nNatalia\nParis\nRuth\nSamaria\nShaniya\nSommer\nTalia\nTara\nTatiana\nTierra\nVanessa\nVeronica\nAddie\nAlanna\nAlejandra\nAlexandrea\nAmiyah\nAnya\nAshanti\nAshtyn\nBayleigh\nCamden\nCarla\nCaylee\nCecilia\nCeleste\nDenise\nDominique\nEmmalee\nGuadalupe\nHadley\nJaiden\nJane\nJasmyn\nJaylin\nJenny\nKailee\nKalyn\nKarley\nKaylan\nKayle\nKeely\nKiera\nKinley\nLaken\nLara\nLeanna\nLibby\nLinda\nLisa\nMadelynn\nMakiyah\nMarie\nMisty\nMyesha\nNatasha\nNora\nNyla\nReanna\nReyna\nRosa\nSally\nShamia\nSydnee\nTaina\nTaliyah\nTamera\nTayler\nTytiana\nValencia\nAbigayle\nAlasia\nAlaysia\nAlexius\nAlexys\nAlisa\nAlondra\nAlysa\nAnnika\nAraceli\nAsya\nAubrie\nAzaria\nBonnie\nBrandie\nBreana\nBreann\nBreonna\nCarli\nCarsen\nChelsie\nChristine\nDaija\nDaniela\nEboni\nElena\nEsther\nHailee\nHalie\nHayleigh\nHunter\nJakira\nJala\nJalisa\nJanae\nJanie\nJaycee\nJaylen\nJuana\nKaci\nKaelyn\nKallie\nKarli\nKarmen\nKathrine\nKayley\nKaytlin\nKerri\nKeyonna\nKinsey\nKirstin\nKourtney\nKylah\nLacy\nLea\nLeila\nLesley\nLori\nMallorie\nMarlee\nMarley\nMonique\nMyah\nNakiya\nNikki\nNiya\nNya\nParker\nRhianna\nRuby\nSasha\nSavanah\nShawna\nSherry\nShyanne\nTeresa\nTerri\nToni\nTyler\nTyra\nWendy\nWillow\nZariah\nZykeria\nAbbigayle\nAdeline\nAdrian\nAja\nAli\nAlyssia\nAmiah\nAmira\nAriyana\nBella\nBrenna\nBrionna\nCarrington\nCayla\nChantel\nCharlie\nChristen\nChristiana\nDajah\nDallas\nDaniya\nDarby\nDianna\nDonna\nDorothy\nElaina\nElexus\nEmory\nEricka\nEssence\nFarrah\nGiselle\nGisselle\nIsabell\nIvey\nIvory\nIyana\nJacquelyn\nJadyn\nJaila\nJalynn\nJamiah\nJania\nJaniyah\nJaqueline\nJasmyne\nJazlyn\nJesslyn\nJohnna\nJourney\nJulianne\nKaila\nKaiya\nKari\nKarissa\nKarla\nKarly\nKarsyn\nKassie\nKaya\nKaylen\nKelli\nKenley\nKenzie\nKeri\nKerrigan\nKiya\nKristian\nKya\nKyndall\nLaci\nLadasia\nLakeisha\nLakia\nLarissa\nLatavia\nLondon\nLora\nLoren\nLouisa\nLyndsey\nMaddison\nMadelyne\nMadisen\nMagan\nMahogany\nMakiya\nMariana\nMarilyn\nMarina\nMarion\nMattison\nMeaghan\nMikaela\nMillie\nMiya\nNina\nNiyah\nNyasia\nNykeria\nOctavia\nPrincess\nRiana\nSelina\nShelbi\nShyann\nSkyla\nSonya\nSuzanna\nTanya\nTatianna\nTiffani\nTionna\nTyanna\nTykeria\nWinter\nMadison\nHannah\nAnna\nEmily\nAlexis\nMary\nSarah\nElizabeth\nEmma\nLauren\nAbigail\nTaylor\nBrianna\nKayla\nSavannah\nChloe\nHaley\nOlivia\nDestiny\nAlyssa\nMorgan\nAshley\nVictoria\nJasmine\nJessica\nIsabella\nKaitlyn\nSydney\nJordan\nShelby\nJada\nKatelyn\nAshanti\nSamantha\nCaroline\nRachel\nGrace\nAmber\nKaylee\nMakayla\nKatherine\nMegan\nNatalie\nAutumn\nMackenzie\nAngel\nBailey\nAllison\nFaith\nAaliyah\nBreanna\nGracie\nCourtney\nErin\nKatie\nSara\nTrinity\nJayla\nZoe\nAbby\nAlexandria\nGabrielle\nHailey\nKimberly\nBrooklyn\nCatherine\nMadeline\nLillian\nRebecca\nJulia\nMadelyn\nReagan\nLaura\nSummer\nBrooke\nAlexandra\nLindsey\nMaggie\nMargaret\nMaria\nPayton\nAshlyn\nBethany\nRiley\nJennifer\nKathryn\nKelsey\nMckenzie\nSierra\nIndia\nKennedy\nSkylar\nMolly\nElla\nHanna\nKylie\nAudrey\nJenna\nKendall\nLeah\nAmanda\nAndrea\nPeyton\nCaitlyn\nCheyenne\nDiamond\nLily\nLydia\nMallory\nDanielle\nAlexia\nAubrey\nBriana\nBrittany\nErica\nMia\nNicole\nRaven\nKyla\nAmelia\nAvery\nCaitlin\nCassidy\nKristen\nSophia\nJade\nKaitlin\nAsia\nClaire\nHeather\nJamie\nMikayla\nAngela\nCamryn\nKiara\nStephanie\nVirginia\nHayley\nMelissa\nAlicia\nChristina\nTiffany\nCameron\nJamya\nMakenzie\nMichelle\nAmy\nMadalyn\nSavanna\nSelena\nSophie\nBaylee\nCarmen\nJaniya\nJosie\nKayleigh\nMacy\nMiranda\nMya\nAna\nAriel\nAshleigh\nHarley\nKatelynn\nMeagan\nSadie\nAddison\nAshton\nJillian\nRebekah\nAva\nBrittney\nCallie\nMaya\nAlexa\nAniya\nHaylee\nJocelyn\nMonica\nSabrina\nWhitney\nAlexus\nChelsea\nHallie\nHolly\nHope\nKelly\nKylee\nLeslie\nMeredith\nAlana\nAriana\nKristin\nMichaela\nSidney\nTamara\nAlisha\nAllie\nAnsley\nBritney\nDestinee\nJakayla\nJayden\nJordyn\nJulianna\nKirsten\nLillie\nMarissa\nMelody\nMiracle\nShakira\nYasmine\nAbbie\nAbbigail\nCierra\nGabriella\nHayden\nIsabelle\nIvy\nJaden\nJulie\nKara\nTaniya\nAdrianna\nAmaya\nAnn\nAnne\nCandace\nEllie\nEmilee\nErika\nHaleigh\nKristina\nLauryn\nLucy\nAlayna\nAnnabelle\nAnnie\nApril\nCarley\nCarly\nEvelyn\nHalle\nIsabel\nKamryn\nLilly\nPaige\nSkyler\nTamia\nTiara\nAbbey\nAllyson\nAniyah\nArianna\nAshlee\nCamille\nJacqueline\nKaley\nKyra\nMacie\nTori\nAliyah\nAmari\nAmiya\nAngelina\nAyanna\nBailee\nBrandi\nCarlie\nCharlotte\nChristian\nEleanor\nElisabeth\nHeaven\nJazmine\nKierra\nNia\nRylee\nAshlynn\nBryanna\nCharity\nClara\nDeanna\nDeja\nDiana\nJoy\nKailey\nKaleigh\nKatlyn\nKyleigh\nLacey\nMariah\nMattie\nRyleigh\nTianna\nZaria\nAlly\nKacie\nKalyn\nKarli\nKathleen\nKaylie\nKaylin\nLaurel\nMckenna\nTabitha\nZoey\nAlaina\nAlissa\nBella\nCrystal\nDakota\nDeasia\nGeorgia\nHelen\nKailyn\nKaliyah\nKaren\nKassidy\nKiley\nKinsley\nLayla\nLindsay\nMacey\nMakenna\nMelanie\nNadia\nPrecious\nShannon\nTatyana\nValerie\nBrandy\nCarla\nCarolyn\nClaudia\nDesiree\nEden\nFrances\nJaliyah\nJameria\nJane\nJoanna\nKenya\nKinley\nLaney\nLexi\nMollie\nScarlett\nShayla\nTamiya\nTia\nAdriana\nAlanna\nCarlee\nChasity\nCiara\nDaniela\nDestiney\nEva\nGenesis\nHarper\nHaven\nImani\nJalyn\nJaylyn\nJustice\nKatrina\nKelsie\nLaila\nLexie\nMartha\nMontana\nNancy\nNaomi\nPresley\nRobin\nRosa\nSandra\nTatum\nTierra\nWendy\nAleah\nAlison\nAmya\nBianca\nBrenda\nCarrie\nCarson\nCasey\nCayla\nCheyanne\nDelaney\nDevin\nDorothy\nElise\nFelicity\nGabriela\nJadyn\nJaiden\nJakiya\nJessie\nKalee\nKarley\nKayley\nKendra\nKira\nKrista\nKya\nKyndall\nLaken\nLinda\nMadyson\nMalaysia\nMarley\nMercedes\nSally\nShania\nShaniya\nTaliyah\nToni\nVivian\nZykeria\nAlice\nCassie\nChristen\nCynthia\nDasia\nDestini\nElena\nGabriel\nGillian\nGracen\nGrayson\nGuadalupe\nJakeria\nJaycee\nJuliana\nKaniya\nKate\nKayli\nKellie\nKiana\nKiera\nKiersten\nKourtney\nMaegan\nMeghan\nMiriam\nNatasha\nNya\nParis\nRaegan\nRuby\nSerenity\nShamya\nSkyla\nTiana\nVanessa\nVeronica\nZoie\nAdrian\nAliya\nAlondra\nAnastasia\nAubree\nBria\nCassandra\nCeleste\nChristy\nChyna\nClarissa\nCrimson\nDemetria\nEbony\nEsmeralda\nFarrah\nHarleigh\nHeidi\nJailyn\nJala\nJamia\nJamiah\nJamiya\nJanna\nJayda\nKailee\nKaylan\nKyndal\nLibby\nLogan\nMadelynn\nMadisyn\nMakiyah\nPamela\nPatricia\nPiper\nSusan\nTalia\nTamya\nTamyra\nTatiana\nTheresa\nTristan\nTristen\nTyra\nValeria\nAbigayle\nAisha\nAleigha\nAlena\nAllyssa\nAlyson\nAnnagrace\nArielle\nAshante\nBaleigh\nBonnie\nBrenna\nBriley\nBrookelyn\nCampbell\nCarli\nChandler\nCora\nDaisy\nDeborah\nGloria\nGraci\nHalie\nHollie\nIvey\nIyana\nJaida\nJakiyah\nJana\nJaylen\nJaylin\nJazmin\nJenifer\nJesse\nJimena\nJoi\nKallie\nKaty\nKaylyn\nKendal\nKensley\nKhloe\nLana\nLashanti\nLela\nLilian\nLizbeth\nMaleah\nMalia\nNatalia\nNevaeh\nNylah\nRachael\nRegan\nRyan\nShelbie\nStacy\nSusanna\nTakeria\nTara\nTeresa\nTykeria\nWhitley\nAdeline\nAdrienne\nAkira\nAlecia\nAli\nAlivia\nAlliyah\nAmani\nAmiyah\nAmyia\nAnanda\nAngelica\nAnya\nAshunti\nAubrie\nAudra\nBarbara\nBayleigh\nBaylie\nBentley\nCara\nCarrington\nChaney\nChristiana\nCindy\nColby\nCourtlyn\nDaisha\nDenise\nDonna\nEmilia\nEmilie\nEmory\nHadley\nHailee\nJaci\nJaidyn\nJakia\nJakira\nJamaya\nJaniah\nJulianne\nKaci\nKarlee\nKarleigh\nKasey\nKaylei\nKaylen\nKennedi\nKenzie\nKerri\nKristian\nLakia\nLena\nLiberty\nLisa\nLorena\nLuz\nMadalynn\nMakiah\nMakiya\nMallie\nMarie\nMarilyn\nMaryann\nMckayla\nMikaela\nNoelle\nNyah\nNyasia\nNyla\nOctavia\nPhoebe\nRandi\nRosemary\nSamya\nSasha\nSavanah\nShakayla\nShaniah\nSimone\nSkye\nStella\nSydni\nTakhia\nTamiyah\nTania\nTina\nTreasure\nTyler\nYesenia\nAddie\nAlaysia\nAlexius\nAlisa\nAlli\nAlysia\nAmara\nAmbria\nAmiah\nAmyah\nAnslee\nBeverly\nBlair\nBlakely\nBridgette\nBrooklynn\nBryana\nBrylee\nCadence\nCecelia\nCecilia\nChastity\nChristin\nCiera\nColleen\nConstance\nDajah\nDallas\nDana\nDarby\nDominique\nDylan\nElissa\nFatima\nHalli\nHarmony\nHayleigh\nHolley\nIsabela\nIyanna\nJacie\nJaelyn\nJaila\nJalisa\nJamesha\nJaniyah\nJashanti\nJasmin\nJasmyn\nJasmyne\nJaylah\nJaylee\nJazmyn\nJodi\nJosephine\nJuanita\nKacey\nKalia\nKalli\nKameron\nKandice\nKarina\nKarla\nKarlie\nKarly\nKaya\nKeara\nKeeley\nKeely\nKelis\nKelley\nKenley\nLainey\nLamya\nLeanna\nLeigh\nLexus\nLori\nMaci\nMaddison\nMadilyn\nMarisa\nMariyah\nMarlee\nMckinley\nMeadow\nMiya\nNaudia\nNayeli\nNeely\nNiya\nPaula\nRayven\nReanna\nReese\nRobyn\nRuth\nSanaa\nSaniya\nSantana\nSaylor\nSelina\nSerena\nSharon\nStacey\nSydnie\nTabatha\nTakiya\nTamera\nTameria\nTaniyah\nTaryn\nThalia\nTimia\nTorie\nTracy\nTrista\nTytiana\nValencia\nZahria\nZakiyah\nZanya\nZion\nMadison\nEmma\nEmily\nHannah\nAnna\nSarah\nAlexis\nOlivia\nAbigail\nElizabeth\nMary\nTaylor\nMorgan\nAlyssa\nHaley\nKayla\nBrianna\nDestiny\nLauren\nMakayla\nSavannah\nChloe\nAshley\nIsabella\nKaitlyn\nKatelyn\nVictoria\nSydney\nCaroline\nElla\nKaylee\nJasmine\nJada\nJessica\nKatherine\nHailey\nSamantha\nJordan\nNatalie\nGrace\nSara\nAutumn\nRachel\nBreanna\nBailey\nMackenzie\nTrinity\nAllison\nBrooklyn\nShelby\nAaliyah\nAngel\nZoe\nAshlyn\nGracie\nMegan\nKylie\nLillian\nGabrielle\nFaith\nLaura\nAmber\nAbby\nKatie\nCourtney\nJayla\nAva\nAlexandria\nBrooke\nKennedy\nMadeline\nSummer\nMaggie\nLily\nRebecca\nKelsey\nMadelyn\nMargaret\nRiley\nAvery\nRaven\nClaire\nMaria\nErin\nJulia\nMckenzie\nSophia\nAudrey\nAmelia\nJennifer\nKathryn\nMallory\nAlexandra\nJenna\nReagan\nSierra\nCatherine\nAsia\nPeyton\nKendall\nAlexia\nAmanda\nMolly\nHaleigh\nLindsey\nMia\nAddison\nLeah\nMakenzie\nAshanti\nCaitlin\nErica\nKayleigh\nLydia\nCassidy\nKimberly\nKylee\nMacy\nCaitlyn\nCheyenne\nKristen\nTiffany\nAndrea\nAngela\nAubrey\nBethany\nAllie\nAmaya\nHayley\nHeather\nMariah\nAlana\nVirginia\nHayden\nAriel\nBrittany\nChristina\nDanielle\nDiamond\nIndia\nKyla\nMya\nSavanna\nSkylar\nAdrianna\nAriana\nCallie\nHanna\nHaylee\nMikayla\nPayton\nHope\nJade\nMarissa\nAlexa\nAshton\nEvelyn\nJordyn\nLayla\nNicole\nJakayla\nKaleigh\nLeslie\nRylee\nAna\nArianna\nHarley\nKatelynn\nKelly\nKirsten\nBriana\nJaniya\nJillian\nMelissa\nMichelle\nPaige\nShania\nZoey\nAngelina\nKiara\nMadalyn\nMeagan\nSelena\nBaylee\nCarly\nChelsea\nHallie\nJamie\nJamya\nStephanie\nAlicia\nAllyson\nAnsley\nCarmen\nCharity\nHeaven\nLaila\nLilly\nRebekah\nAlexus\nAshlynn\nCierra\nClaudia\nDaisy\nJaden\nKamryn\nKara\nLacey\nLucy\nMaya\nMiracle\nPatricia\nTori\nAbbie\nAnn\nAnne\nEleanor\nEmilee\nGabriella\nLaci\nSophie\nAmari\nAmya\nCarley\nDeanna\nEllie\nKaitlin\nKaley\nKarlie\nKaylin\nMelanie\nTamia\nAdriana\nAlayna\nBailee\nCameron\nGabriela\nHolly\nIsabel\nIsabelle\nJayden\nJulianna\nKinsley\nMacie\nSadie\nAbbey\nAyanna\nCeleste\nDaniela\nDixie\nJadyn\nJamaya\nJazmine\nJessie\nJocelyn\nJosie\nKatlyn\nKristin\nMattie\nMeredith\nNevaeh\nParis\nRaegan\nRyleigh\nSabrina\nTessa\nAlaina\nApril\nBrittney\nCamille\nCandace\nJoanna\nJulie\nKailey\nKierra\nKyleigh\nLauryn\nLexi\nMadilyn\nMiranda\nMollie\nNadia\nNaomi\nSerenity\nShayla\nSidney\nSkyler\nAmiyah\nCamryn\nDestinee\nDiana\nErika\nJamiya\nKyra\nLaney\nMadisyn\nMichaela\nNyla\nTatum\nVeronica\nZaria\nAbbigail\nAlison\nAmy\nAniyah\nAnnie\nCharlotte\nDelaney\nEbony\nJuliana\nKailee\nKassidy\nKaylie\nKennedi\nKrista\nLogan\nTamya\nAlivia\nAnastasia\nBianca\nDakota\nGenesis\nGeorgia\nHalle\nIvy\nJosephine\nKaliyah\nLindsay\nMartha\nSavanah\nSerena\nShakira\nShannon\nTaniya\nAniya\nAshlee\nCasey\nCassandra\nCassie\nChandler\nDeja\nDesiree\nHalie\nJacqueline\nKaitlynn\nKiera\nMaci\nMarlee\nMeghan\nMiriam\nNancy\nNia\nPiper\nReese\nSandra\nShaniya\nTabitha\nTalia\nTaniyah\nTia\nTiara\nToni\nVivian\nWhitney\nAlissa\nAlyson\nAshleigh\nBella\nBryanna\nCarlee\nCarlie\nChasity\nChelsey\nChristian\nClara\nCrystal\nElisabeth\nEllen\nHaven\nJaliyah\nJameria\nJamia\nJamiah\nJolie\nKelsie\nKenya\nLaken\nLexie\nMadeleine\nMckenna\nMicah\nMonica\nTamara\nVanessa\nYasmine\nAddie\nAngelica\nCailyn\nCarleigh\nCynthia\nDallas\nDana\nDestiney\nDestini\nFrances\nHarmony\nHeidi\nJaida\nJaiden\nJalyn\nJamiyah\nJamyia\nKali\nKaren\nKasey\nKate\nKatelin\nKaya\nKensley\nKiley\nKristina\nKrystal\nLacy\nLiberty\nLillie\nMacey\nMakenna\nMelody\nRachael\nRose\nRuby\nSanaa\nSkye\nTreasure\nValerie\nAbigayle\nAlice\nAliyah\nAlly\nAllyssa\nAmaria\nAmiya\nAubree\nBayleigh\nBrandi\nBreana\nBritney\nCadence\nCora\nCrimson\nDaisha\nEsmeralda\nGracelyn\nHarlie\nImani\nJana\nJanie\nJasmin\nJaylen\nJaylin\nJoy\nKarley\nKayley\nKayli\nKyndall\nLila\nLinda\nLizbeth\nMaegan\nMalia\nMaliyah\nMarkayla\nNora\nPresley\nRegan\nRobyn\nRosa\nRuth\nSavana\nSofia\nStacy\nStella\nTaliyah\nTyra\nWendy\nZykeria\nAbigale\nAidan\nAlanna\nAleah\nAubrie\nAustin\nBeyonce\nBrenda\nBrenna\nBridget\nCara\nCarla\nCarolyn\nChristin\nEmileigh\nEmory\nEndia\nEssence\nGrayson\nHaylie\nHollie\nJaniyah\nKacey\nKailyn\nKaylyn\nKendra\nKiersten\nKourtney\nLana\nMadyson\nMakiyah\nMaleah\nMarion\nMckayla\nMckinley\nNivea\nOctavia\nRylie\nSasha\nShamya\nTania\nTrista\nZoie\nAbagail\nAda\nAinsley\nAisha\nAlisha\nAnnabelle\nAntonia\nAuburn\nAyana\nBaleigh\nBreonna\nBriley\nBrooklynn\nCandice\nCarrington\nCarson\nCheyanne\nChristy\nCiera\nDevin\nEliza\nEmmalee\nEva\nFelicity\nGracey\nHailee\nHailie\nHali\nHelen\nJane\nJanya\nJayda\nJazmin\nJustice\nKacie\nKadence\nKalyn\nKamya\nKarlee\nKathleen\nKatrina\nKelsi\nKendal\nKenzie\nKiana\nKinley\nKinsey\nKira\nKiya\nLakayla\nLoren\nMaddison\nMarley\nMercedes\nMiya\nNikki\nNina\nNoelle\nPamela\nParker\nPhoebe\nPrincess\nRayven\nRobin\nSamara\nSamaria\nSarai\nSkyla\nSusan\nSydnee\nTatyana\nTeresa\nTiana\nTianna\nValencia\nWinter\nYasmin\nAdeline\nAdrienne\nAlecia\nAli\nAlisa\nAmara\nAmarie\nAnaya\nBarbara\nBeverly\nBrandy\nBreauna\nBrookelyn\nCady\nCayla\nCecilia\nChrista\nCindy\nDasia\nDemya\nElaina\nElena\nElisa\nEmilie\nEryn\nGloria\nGuadalupe\nHadley\nHalee\nHarleigh\nHarper\nHattie\nHayleigh\nHillary\nIyana\nJabria\nJacy\nJaelyn\nJailah\nJanet\nJuana\nKaci\nKaelyn\nKaila\nKaniya\nKarah\nKaris\nKarla\nKelsea\nKenley\nKrislyn\nKyndal\nLacie\nLamya\nLaurel\nLeanna\nLibby\nLiliana\nMacee\nMakiya\nMonique\nNariah\nNatalee\nRagan\nRhiannon\nRosemary\nSaniya\nShakayla\nShamiya\nShaylee\nShelbie\nSheridan\nShyanne\nSylvia\nTakayla\nTamiah\nTamiya\nTamyra\nTaryn\nTatianna\nTiffani\nTionna\nTriniti\nTristen\nTykeria\nWhitley\nZharia\nAiyana\nAja\nAlaysia\nAlena\nAlina\nAlma\nAlondra\nAlora\nAlysa\nAlyse\nAmani\nAmia\nAnaiya\nAniah\nAnnabella\nAnnamarie\nAraceli\nBobbie\nBrianne\nBrilee\nBrynn\nCamilla\nCharli\nCherish\nCiara\nDaniella\nDeasia\nDonna\nDulce\nEden\nElise\nElisha\nEmalee\nFatima\nFelicia\nGwendolyn\nHaileigh\nHeavenly\nIreland\nJacey\nJaci\nJadah\nJaila\nJakeria\nJakiyah\nJala\nJalia\nJamirah\nJanae\nJaniah\nJanna\nJaycee\nJaycie\nJaylah\nJaylyn\nJazlyn\nJazmyne\nJermya\nJulianne\nKalee\nKamari\nKarina\nKarissa\nKarleigh\nKassie\nKatlin\nKaylan\nKaylen\nKaylynn\nKenleigh\nKerri\nKeziah\nKhyla\nKya\nKylia\nLani\nLaniya\nLashanti\nLeila\nLexus\nLilian\nLyric\nMadisen\nMakala\nMakhia\nMaleigha\nMariana\nMaribel\nMarie\nMarisol\nMaritza\nMercy\nMikaela\nMillie\nMyah\nMykia\nNatalia\nNatasha\nNautica\nNya\nNykeria\nPenelope\nPrecious\nRaelyn\nRayna\nRyan\nShakia\nShakiya\nShameria\nShanya\nShekinah\nSky\nStacey\nStormie\nSydni\nTamiyah\nTaniah\nTara\nTatiana\nTaylar\nTayler\nTess\nTrenyce\nTristan\nWillow\nZakiya\nEmma\nMadison\nEmily\nHannah\nAnna\nAlexis\nSarah\nOlivia\nAbigail\nElizabeth\nMary\nTaylor\nAlyssa\nLauren\nHaley\nElla\nChloe\nDestiny\nMakayla\nIsabella\nMorgan\nSavannah\nVictoria\nSydney\nTrinity\nBrianna\nKayla\nKaitlyn\nAshley\nJasmine\nJessica\nCaroline\nKaylee\nSamantha\nKatelyn\nNatalie\nGrace\nGracie\nRachel\nAngel\nJordan\nJada\nKatherine\nZoe\nMackenzie\nShelby\nLillian\nLily\nBreanna\nAutumn\nHailey\nAbby\nBailey\nSara\nAva\nBrooklyn\nKatie\nSophia\nAllison\nAmber\nJayla\nMckenzie\nJulia\nReagan\nAshlyn\nGabrielle\nKathryn\nMadelyn\nRebecca\nCatherine\nJennifer\nKennedy\nParis\nAaliyah\nAvery\nLydia\nSummer\nKylie\nKelsey\nMadeline\nAudrey\nFaith\nMegan\nJenna\nMallory\nAlexandria\nRiley\nCourtney\nBrooke\nLeah\nErin\nAmelia\nMaria\nMolly\nAddison\nMargaret\nKendall\nKimberly\nLaura\nAllie\nMaggie\nPeyton\nAlexandra\nMarissa\nMia\nMya\nAlana\nRaven\nSkylar\nAsia\nLindsey\nMacy\nChristina\nKylee\nMakenzie\nPayton\nSadie\nSierra\nAndrea\nJamya\nKyla\nTamia\nAniya\nAriana\nChelsea\nJaniya\nArianna\nCadence\nCameron\nJakayla\nMariah\nAlexia\nBethany\nCaitlyn\nKailey\nBriana\nBrittany\nHaleigh\nLilly\nAmanda\nAna\nAubrey\nCarly\nClaire\nDanielle\nDiamond\nErica\nJade\nJordyn\nMichelle\nAlicia\nAmaya\nHope\nAliyah\nCaitlin\nHarley\nHaylee\nIsabelle\nKirsten\nKristen\nRebekah\nCheyenne\nJamie\nJayden\nJosie\nLayla\nLucy\nAbbie\nAmy\nCassidy\nDakota\nHanna\nJaden\nKennedi\nMadalyn\nPaige\nSophie\nAngela\nAriel\nIndia\nKayleigh\nSerenity\nAdrianna\nCallie\nKamryn\nLaila\nRylee\nVirginia\nAmari\nCharity\nJillian\nLexie\nNicole\nPiper\nSavanna\nStephanie\nAlexus\nAnsley\nCarlie\nJadyn\nLeslie\nLillie\nNevaeh\nZoey\nAmiya\nCamryn\nGabriella\nKyra\nMelissa\nTiffany\nAmya\nBella\nCiara\nDestinee\nHeather\nKara\nLaney\nMacie\nMichaela\nMiranda\nNadia\nSandra\nAlison\nAllyson\nAniyah\nBrooklynn\nCamille\nEmilee\nEvelyn\nHayden\nJulianna\nKatlyn\nKelly\nMaya\nMeagan\nMeghan\nSelena\nAlaina\nAngelina\nAshanti\nBaylee\nDaisy\nDesiree\nElise\nHayley\nIsabel\nKaitlin\nKaren\nKaydence\nLacey\nLaci\nMelanie\nMeredith\nMiracle\nNaomi\nNia\nShaniya\nTori\nVivian\nAlexa\nAnne\nBrenda\nCampbell\nCarmen\nHalle\nJayda\nJulie\nKaleigh\nKate\nKinsley\nKyleigh\nLexi\nSidney\nAdriana\nAlayna\nAleah\nAlivia\nAnastasia\nAnnabelle\nCarlee\nCrystal\nEllie\nGenesis\nJaiden\nJamiya\nKiara\nKristin\nShania\nTamya\nVeronica\nWhitney\nApril\nAshlynn\nAshton\nCarley\nHaven\nHeaven\nJaliyah\nJoanna\nKadence\nKaley\nKatelynn\nMadisyn\nMakenna\nMarley\nSabrina\nAbbey\nAlisha\nAshlee\nBrittney\nCharlotte\nChasity\nClara\nClaudia\nGeorgia\nJacqueline\nJanya\nJasmin\nKathleen\nKaylen\nKelsie\nLisa\nMakiya\nMikayla\nParker\nSaniya\nZaria\nZykeria\nAlanna\nAlly\nDixie\nErika\nJessie\nKarlee\nKayley\nKendal\nKendra\nKierra\nKiersten\nMattie\nMontana\nRaegan\nReese\nSkyler\nSofia\nTamara\nTara\nTatum\nTessa\nTia\nValerie\nWendy\nAnn\nAshleigh\nAzaria\nBritney\nCasey\nCynthia\nDiana\nHolly\nJacey\nJaylin\nJazmin\nKailyn\nKaylie\nKaylin\nKiana\nKiera\nKiley\nKira\nLila\nPatricia\nPresley\nRyleigh\nZoie\nAlissa\nAmiyah\nBrandy\nCarolina\nCarolyn\nCassie\nCecilia\nChristian\nDaniela\nDasia\nDeanna\nDelaney\nEleanor\nEmory\nEsmeralda\nEva\nHalie\nJailyn\nJalyn\nJocelyn\nKallie\nKarley\nKasey\nLiberty\nLogan\nMacey\nPhoebe\nRegan\nRosa\nShannon\nTaniyah\nTiana\nTiara\nAinsley\nAlice\nAmaria\nAngelica\nBrandi\nDestini\nElaina\nEllen\nFantasia\nHallie\nHarper\nHeidi\nIvy\nJaelyn\nJamia\nJamiyah\nJanae\nKailee\nKaliyah\nKamya\nKarleigh\nKarlie\nKayden\nKenley\nLauryn\nLindsay\nMarlee\nMckenna\nMelody\nMercedes\nMollie\nMonica\nNatasha\nNyla\nPrincess\nSamya\nShakira\nShaniyah\nShayla\nSkye\nStella\nTaniya\nVanessa\nAkira\nAnnie\nAshtyn\nAspen\nBianca\nBriley\nCandace\nCandice\nCindy\nDeja\nEliana\nEliza\nGabriela\nGloria\nHelen\nImani\nIyana\nJaila\nJameria\nJane\nJoy\nJuliana\nJustice\nKaelyn\nKaniya\nKenya\nLizbeth\nLoren\nMadyson\nMicah\nNancy\nShamya\nTatyana\nToni\nTyra\nAbbigail\nAddyson\nAlaysia\nAlex\nAlyson\nAubree\nAuburn\nAurora\nAyana\nAyanna\nBonnie\nCayla\nCaylee\nChristine\nDarby\nEmilie\nHailee\nHarmony\nJakira\nJamaya\nJamiah\nJanet\nJania\nJaniah\nJaylen\nJaylyn\nJazmine\nJenny\nKarina\nKassidy\nKeira\nKinley\nKrista\nLaken\nLondon\nLyric\nMariana\nMarisa\nMartha\nMaura\nMckinley\nMiriam\nNina\nPrecious\nRyan\nSanaa\nScarlett\nTaliyah\nTamiyah\nTanya\nTayler\nTristan\nYesenia\nAbigayle\nAli\nBlakely\nBrantley\nBreana\nCara\nCarrie\nCeleste\nCharlee\nCharlie\nChrista\nCierra\nCora\nDallas\nDana\nDenise\nGabriel\nGracelyn\nGracyn\nGrayson\nHayleigh\nHaylie\nJaida\nJakiyah\nJanie\nJaniyah\nJewel\nJosephine\nJourney\nKacey\nKaitlynn\nKameron\nKatlynn\nKourtney\nLacie\nLeigha\nLiliana\nLinda\nMaci\nMaddison\nMadeleine\nMadilyn\nMakenzi\nMaleah\nMaliyah\nMari\nMarkia\nMoriah\nNykeria\nRachael\nRuby\nShaylee\nShyanne\nSimone\nSydnie\nSylvia\nTabitha\nTamaya\nTatiana\nTykeria\nYasmine\nAddie\nAdrienne\nAdyson\nAlena\nAlli\nAlysa\nAmberly\nAmbria\nAnijah\nAnnalee\nArielle\nAryanna\nAugust\nAysia\nBailee\nBaylie\nBentley\nBrenna\nBrylee\nCarleigh\nCarson\nCassandra\nClarissa\nCloey\nDeasia\nDemetria\nEden\nElena\nEmalee\nEmmalee\nEve\nFrances\nGillian\nGiselle\nHelena\nIsabell\nJaidyn\nJakia\nJaylynn\nJuana\nKaila\nKali\nKalyn\nKameryn\nKarla\nKarli\nKarsyn\nKatelin\nKaylan\nKaylyn\nKelsea\nKensley\nKenzie\nKeyanna\nKimora\nKristina\nLainey\nLakendra\nLanie\nLela\nLena\nLora\nMadalynn\nMakala\nMarion\nMarisol\nMykala\nNikki\nNora\nNya\nNyah\nRayleigh\nRobin\nRylie\nSaige\nSamara\nSamaria\nSarai\nSerena\nShanna\nShayna\nSkyla\nTakayla\nTamaria\nTania\nTaryn\nTeresa\nTina\nTreasure\nTyler\nTytianna\nValeria\nWillow\nYasmin\nZariyah\nZion\nAbagail\nAdeline\nAidan\nAja\nAlasia\nAlaya\nAlondra\nAmia\nAnnika\nArionna\nAriyana\nAsya\nAubrie\nBeverly\nBreunna\nBridgett\nBrookelyn\nCailey\nCaleigh\nCameran\nCamila\nCarys\nCecelia\nChristy\nConstance\nCristina\nDaijah\nDakotah\nDelana\nDemi\nDesirae\nDestiney\nDianna\nDominique\nDylan\nEmerson\nEryn\nFatima\nFelicity\nFernanda\nFiona\nGianna\nGracey\nGretchen\nGuadalupe\nGwendolyn\nHadley\nHailie\nHeavenly\nIngrid\nIris\nIvey\nIvie\nIyanna\nJacie\nJakya\nJalynn\nJanna\nJasmyn\nJaycee\nJaycie\nJayde\nJerica\nJolie\nJudy\nJulianne\nJuliet\nJulissa\nKacie\nKalea\nKaleah\nKarly\nKaty\nKeona\nKeyona\nKhalia\nKhloe\nKhushi\nKristian\nKrystal\nKya\nKyndal\nLana\nLani\nLaniyah\nLarissa\nLaurel\nLea\nLeanna\nLeila\nLeilani\nLexis\nLola\nLorelei\nLorena\nLori\nLuz\nMaegan\nMaia\nMakaila\nMakya\nMalaysia\nMallorie\nMarie\nMillie\nMyla\nNatalee\nNatalia\nNiyah\nNorah\nNyasia\nPaisley\nPriscilla\nPromise\nRagan\nRaina\nRayna\nRosemary\nSantana\nSavanah\nSaylor\nShalyn\nShanya\nSharon\nShawna\nSomer\nSydnee\nTaleah\nTamira\nTamiya\nTianna\nTionna\nTrista\nTykira\nTytiana\nViolet\nYazmin\nZariah\nMadison\nEmma\nEmily\nAnna\nHannah\nAbigail\nSarah\nMary\nChloe\nOlivia\nElizabeth\nAlexis\nTaylor\nIsabella\nAlyssa\nSavannah\nElla\nLauren\nDestiny\nMakayla\nAva\nMorgan\nHaley\nBrianna\nJasmine\nKaitlyn\nSydney\nJada\nAshley\nSamantha\nKatelyn\nNatalie\nTrinity\nVictoria\nGracie\nKatherine\nLillian\nJessica\nSara\nKaylee\nKayla\nJordan\nAllison\nGabrielle\nCaroline\nGrace\nHailey\nBrooklyn\nLily\nAshlyn\nKatie\nMaria\nKennedy\nZoe\nAudrey\nMadelyn\nShelby\nSophia\nBailey\nKylie\nAutumn\nAaliyah\nAlexandria\nMackenzie\nAvery\nBreanna\nLeah\nMadeline\nRiley\nAngel\nRachel\nReagan\nAddison\nAmelia\nKathryn\nJulia\nJennifer\nMargaret\nMolly\nCatherine\nFaith\nKimberly\nMia\nMaggie\nMckenzie\nErin\nLydia\nJayla\nAmber\nMallory\nRebecca\nDanielle\nLaura\nMariah\nJenna\nLindsey\nMya\nNevaeh\nSummer\nClaire\nCourtney\nMakenzie\nAbby\nAniyah\nZoey\nAlexandra\nMegan\nSadie\nAllie\nAsia\nKelsey\nKendall\nSierra\nParis\nPeyton\nAniya\nErica\nAndrea\nBrooke\nCiara\nJaniya\nLilly\nSkylar\nCallie\nAlana\nBella\nChristina\nGabriella\nAmy\nKayleigh\nKiara\nKylee\nLayla\nMarissa\nMichelle\nSerenity\nAubrey\nJakayla\nJayden\nAmaya\nAnsley\nEvelyn\nLucy\nAshlynn\nCaitlyn\nDakota\nJamya\nPayton\nAliyah\nAmiyah\nAriana\nBrittany\nCadence\nCheyenne\nSophie\nAlexa\nAnne\nArianna\nAriel\nCarly\nDiamond\nEllie\nKyra\nMadalyn\nRylee\nAdrianna\nAmanda\nIndia\nKailey\nKara\nMaya\nMiranda\nNaomi\nAlexia\nAna\nDiana\nHope\nIsabelle\nJade\nJaden\nJaniyah\nKyla\nMacy\nVirginia\nZoie\nAngelina\nAnnabelle\nBrooklynn\nKadence\nKristen\nLaney\nMikayla\nPaige\nRaven\nSavanna\nAlicia\nCameron\nHarley\nMiracle\nRebekah\nAllyson\nAngela\nGeorgia\nHeaven\nJadyn\nKaleigh\nKatelynn\nKennedi\nKirsten\nLaci\nBaylee\nChelsea\nJosie\nKate\nLaila\nTamia\nAdriana\nAlivia\nAnn\nCarmen\nCharlotte\nEva\nHanna\nHarmony\nJocelyn\nJordyn\nKayden\nMacie\nMakenna\nSkyler\nStephanie\nAmari\nBriana\nCaitlin\nCarley\nHallie\nHayden\nHeather\nJamie\nJayda\nKaitlin\nKaylin\nLeslie\nPiper\nShania\nAshlee\nCassidy\nCrystal\nDestinee\nGabriela\nHarper\nHolly\nKaren\nKarlee\nKira\nLacey\nLexi\nRuby\nRyleigh\nStella\nTaniyah\nVanessa\nWhitney\nAbbie\nAshanti\nBrittney\nDesiree\nEmilee\nErika\nIvy\nKatlyn\nKaydence\nMarlee\nMichaela\nNatalee\nSaniya\nTaniya\nAshleigh\nCamille\nCamryn\nClara\nEleanor\nHaleigh\nJazmine\nKatrina\nLauryn\nMartha\nMelanie\nMeredith\nNicole\nPresley\nAbbigail\nAlison\nAlissa\nAlondra\nAmya\nApril\nBrenda\nCampbell\nHayley\nHeidi\nJaliyah\nJillian\nJuliana\nKathleen\nKiley\nKinsley\nKyleigh\nMadilyn\nMckenna\nNadia\nShaniya\nTori\nAlexus\nAshton\nAurora\nAyanna\nBailee\nBriley\nChasity\nDaisy\nGenesis\nHaylee\nHelen\nJacqueline\nJamiyah\nJasmin\nJaycee\nJaylin\nJulie\nKaley\nKaylie\nKierra\nKyndall\nLillie\nMadisyn\nMalaysia\nMariana\nMarley\nMattie\nMelissa\nMollie\nNancy\nNyla\nPatricia\nTamya\nTiffany\nZaria\nAlaina\nAlayna\nAlly\nBethany\nCarlie\nChelsey\nDelaney\nHaven\nIyana\nJulianna\nKamryn\nKamya\nKassidy\nKaylen\nKelly\nKendra\nKrista\nKristin\nLana\nLexie\nMaci\nMadyson\nMeagan\nMonica\nReese\nSavanah\nScarlett\nShayla\nSofia\nTiara\nVivian\nYasmine\nBrandi\nClaudia\nElena\nEmmalee\nJacey\nJaiden\nJamiya\nJazmin\nKaelyn\nKali\nKiera\nLogan\nMarisa\nMckinley\nSabrina\nSidney\nTania\nValeria\nAnnie\nBritney\nCamilla\nCasey\nCharity\nElise\nEsmeralda\nGianna\nHadley\nHalle\nIsabel\nJameria\nKailee\nKarli\nKinley\nLola\nMckayla\nMeghan\nMikalah\nMiriam\nRegan\nShamya\nShannon\nTatum\nTessa\nAnaya\nAngelica\nAubree\nAyana\nCecilia\nDeanna\nDeasia\nDixie\nEden\nElaina\nEliana\nEliza\nFrances\nGuadalupe\nHarlee\nImani\nJaelyn\nJamia\nJosephine\nKailyn\nKaniya\nKaris\nKarleigh\nKenzie\nKhloe\nKourtney\nLacie\nLacy\nLiberty\nMakyla\nMelody\nNatalia\nSage\nSavana\nSelena\nShakira\nAbbey\nAinsley\nAlena\nAlice\nAmberly\nAnastasia\nArabella\nAryanna\nAyden\nBlair\nBria\nCara\nCarlee\nDeborah\nEbony\nElisabeth\nEmilie\nFantasia\nGloria\nGracelyn\nJailyn\nJakeria\nJalyn\nJamaya\nJazlyn\nJoy\nJuana\nKarissa\nKarmen\nKaylyn\nKelsie\nKendal\nKensley\nKenya\nKiersten\nKimora\nLaurel\nLila\nMaddison\nMadelynn\nMakiya\nMakiyah\nNia\nNora\nPrecious\nRileigh\nRyan\nSamiya\nTaliyah\nTara\nTykeria\nTyler\nValerie\nAdison\nAlli\nAlyson\nAzariah\nBianca\nBreana\nBryanna\nCaleigh\nCarson\nCatelyn\nCynthia\nDaniela\nDenise\nEstrella\nHayleigh\nHaylie\nJacie\nJamiah\nJane\nJessie\nJoanna\nJorja\nJoslyn\nKaci\nKaitlynn\nKaliyah\nKarley\nKasey\nKayli\nKristina\nLizbeth\nLyric\nMacey\nMaleah\nMalia\nMercedes\nMiya\nPatience\nPerla\nPrincess\nRosa\nRose\nRuth\nSaniyah\nSasha\nSkye\nTakiyah\nTeresa\nVeronica\nYasmin\nZariah\nAda\nAlaysia\nArmani\nBlakely\nBrandy\nBrylee\nBrynn\nCarla\nCarrie\nCassandra\nCiera\nCierra\nCrimson\nDasia\nDemetria\nEmerson\nEsther\nFelicia\nFelicity\nGiselle\nIvey\nJaida\nJanie\nJanya\nJaylee\nJazmyn\nJenny\nJourney\nJustice\nKalyn\nKarla\nKarlie\nKarly\nKayley\nKeira\nKiana\nLeila\nLiliana\nLinda\nMaritza\nMicah\nNorah\nRaegan\nRyann\nRylie\nSally\nSamara\nSariah\nSariyah\nShayna\nSydni\nTakayla\nTalia\nTierra\nTyra\nZykeria\nAbigayle\nAddie\nAileen\nAleah\nAlejandra\nAlex\nAmaria\nAmiya\nAshlin\nAuburn\nBarbara\nBayleigh\nBonnie\nBrenna\nBreona\nBridget\nBryleigh\nCailyn\nCali\nCandace\nCarleigh\nCarolyn\nCarsyn\nCaylee\nCharlie\nChristine\nChristy\nDaijah\nDeja\nDestini\nDominique\nDonna\nDulce\nEllen\nEmalee\nEmery\nGracyn\nGrayson\nHailee\nHalie\nHarlie\nIreland\nIris\nIzabella\nJaedyn\nJaidyn\nJaila\nJailynn\nJamyiah\nJena\nJoi\nJudith\nKaileigh\nKalie\nKameron\nKarina\nKarson\nKarsyn\nKaylei\nKenia\nLainey\nLaken\nLanie\nLarissa\nLena\nLilian\nLindsay\nMadilynn\nMaliyah\nMarkayla\nMikaela\nNatasha\nNayeli\nNyasia\nNykeria\nRayna\nRayven\nSamya\nSandra\nSarai\nScout\nShamiya\nShaylee\nSkyla\nSusan\nSydnee\nTabitha\nTamara\nTamera\nTameria\nTanya\nTatyana\nTiana\nTracy\nTristan\nWinter\nXimena\nAddyson\nAdyson\nAkira\nAlexius\nAliya\nAlona\nAlyssia\nAmara\nAmerica\nAnnabel\nAnnagrace\nAnnalee\nAspen\nAubrie\nAudrie\nAyla\nAzaria\nBaleigh\nBaylie\nBelinda\nBerkley\nBraelyn\nBrantley\nBridgette\nBrielle\nBrookelyn\nBrookelynn\nBrylie\nCamila\nCarli\nCatarina\nCaydence\nCharis\nChesney\nChrislyn\nChrista\nCindy\nCloe\nCora\nDalia\nDamia\nEmory\nEryn\nEssence\nGracelynn\nHadleigh\nHollie\nItzel\nJakyra\nJaleah\nJalisa\nJalynn\nJana\nJanay\nJania\nJaniah\nJanyla\nJohana\nJohanna\nJolie\nJulianne\nKaliah\nKamaya\nKamiya\nKamiyah\nKaty\nKaylan\nKayle\nKaylynn\nKeely\nKelsi\nKenley\nKierstin\nKortney\nKristian\nKrystal\nKya\nKyndal\nLaina\nLeanna\nLeilani\nLona\nLorena\nLucille\nLyndsey\nMadalynn\nMaddie\nMaegan\nMakaila\nMakhia\nMakya\nMallorie\nMarian\nMarina\nMariyah\nMillie\nMontana\nMylah\nNina\nRaylee\nRosemary\nRuthie\nSaylor\nShana\nShanna\nShanyia\nShelbi\nShelly\nShirley\nSienna\nSusanna\nTakira\nTakiya\nTamaya\nTamiyah\nTaryn\nTatiana\nTerra\nTiarra\nTionna\nTreasure\nTristen\nTykerria\nValencia\nViktoria\nViolet\nWendy\nYadira\nYazmin\nZakiyah\nZion\nMadison\nEmma\nAnna\nEmily\nHannah\nSarah\nElizabeth\nOlivia\nAbigail\nIsabella\nAva\nChloe\nAlexis\nTaylor\nSavannah\nElla\nAlyssa\nAddison\nLauren\nMary\nMakayla\nMorgan\nKaylee\nDestiny\nHaley\nAshley\nKaitlyn\nTrinity\nBrianna\nBrooklyn\nCaroline\nKatelyn\nLily\nKayla\nJasmine\nNatalie\nMackenzie\nGracie\nSamantha\nJayla\nLillian\nKatherine\nJada\nVictoria\nSydney\nGabrielle\nAvery\nShelby\nAubrey\nJessica\nSophia\nZoe\nKatie\nGrace\nAutumn\nMadelyn\nSara\nKylie\nAaliyah\nMaria\nReagan\nAllison\nHailey\nJordan\nMia\nAmelia\nMckenzie\nAmber\nAllie\nAngel\nBreanna\nKennedy\nLayla\nRachel\nBailey\nMadeline\nKathryn\nMolly\nAlexandria\nNevaeh\nRiley\nJulia\nMargaret\nFaith\nMaggie\nAbby\nKimberly\nLydia\nJennifer\nPeyton\nRebecca\nBrooke\nMakenzie\nMallory\nLaura\nAshlyn\nLeah\nSummer\nAudrey\nMegan\nKelsey\nArianna\nClaire\nEvelyn\nKendall\nMariah\nZoey\nJakayla\nAlexa\nAlexandra\nCatherine\nMya\nErin\nSkylar\nAniya\nCourtney\nAlexia\nChristina\nKylee\nLilly\nLindsey\nMarissa\nParis\nSophie\nStephanie\nSerenity\nCallie\nGabriella\nJenna\nSadie\nDakota\nIsabel\nPayton\nAlana\nAna\nAniyah\nAsia\nCheyenne\nJamya\nJosie\nKyleigh\nHope\nJaniya\nKayleigh\nLeslie\nRylee\nAnsley\nChelsea\nCiara\nJordyn\nKatelynn\nLucy\nAdriana\nAliyah\nAndrea\nEllie\nKadence\nMacy\nRebekah\nAdrianna\nAmaya\nHayden\nKimora\nKirsten\nReese\nWhitney\nCamryn\nDiamond\nHeather\nJayda\nMadilyn\nNadia\nPiper\nPresley\nSierra\nVivian\nAngela\nBriana\nCarly\nCharlotte\nHarley\nHarper\nHaylee\nNatalee\nSavanna\nAbbie\nAriana\nAriel\nBrooklynn\nCadence\nJadyn\nKara\nLexie\nMikayla\nAshlynn\nCaitlyn\nErica\nJayden\nKaylie\nKennedi\nNaomi\nRaven\nAlaina\nAngelina\nBaylee\nCarmen\nHaleigh\nHeaven\nIndia\nLondon\nMadalyn\nMeredith\nRyleigh\nAlicia\nAnnabelle\nAnne\nAubree\nCaitlin\nCameron\nClara\nDanielle\nEva\nJaniyah\nJocelyn\nKamryn\nKeira\nLacey\nLillie\nMaya\nMiranda\nRaegan\nBella\nBrittany\nDesiree\nHanna\nJamie\nJillian\nKaleigh\nKyla\nKyra\nLana\nLauryn\nMichelle\nAkeelah\nAmiya\nDiana\nGeorgia\nHayley\nHelen\nJacqueline\nJulie\nKate\nKinsley\nMiracle\nNora\nRuby\nSabrina\nShaniya\nSidney\nStella\nTaniya\nVirginia\nAlissa\nAlivia\nAllyson\nAmiyah\nAmy\nAnastasia\nAyla\nCampbell\nCharity\nErika\nGenesis\nJade\nJasmin\nKaelyn\nKelly\nMakenna\nMelissa\nAlayna\nCarley\nEleanor\nEmilee\nGabriela\nIsabelle\nJaliyah\nJamaya\nKaitlin\nKarina\nKaylin\nLila\nMichaela\nNyla\nPaige\nTiffany\nZoie\nAlexus\nAshton\nAyanna\nBethany\nCarlie\nCassidy\nDaniela\nElise\nEllen\nHeidi\nJacey\nJameria\nKiara\nLaila\nMacie\nMadyson\nPrincess\nSaniya\nSofia\nTyra\nValeria\nVanessa\nAmya\nClaudia\nDulce\nFrances\nJamiya\nJessie\nJuliana\nJulianna\nKaniya\nKinley\nMckenna\nNicole\nScarlett\nSkyler\nTabitha\nTamya\nValerie\nZaria\nZion\nAbbigail\nAddyson\nAlly\nAmari\nAshlee\nAubrie\nBrandi\nBriley\nCarolina\nEmmalee\nHarmony\nKailey\nKali\nKarla\nLindsay\nLola\nMariana\nMartha\nMiriam\nRihanna\nSelena\nShakira\nShania\nTaliyah\nTamia\nTatum\nTori\nAmanda\nApril\nAshanti\nBrittney\nCamille\nChasity\nChristian\nCynthia\nDaisy\nDeasia\nDelaney\nEsmeralda\nHallie\nHaven\nJaden\nJaida\nJazmine\nJoanna\nJuana\nKaliyah\nKarlee\nKatrina\nKenya\nKierra\nLaci\nMaci\nMakiyah\nMaliyah\nMonica\nPaisley\nPrecious\nTessa\nTiara\nZykeria\nAddisyn\nAlison\nAlyson\nAnnabella\nAshleigh\nBridget\nCarolyn\nCecilia\nDanica\nEstrella\nGracelyn\nHalle\nHolly\nJamia\nJaycee\nJazmin\nKailyn\nKaley\nKaren\nKira\nLaney\nMadisyn\nMalaysia\nMollie\nShaniyah\nSkyla\nSusan\nTara\nAda\nAddie\nAnn\nAnnie\nBianca\nCassandra\nCaylee\nDana\nDestinee\nDestini\nEden\nJaiden\nKaitlynn\nKarli\nKayden\nKaydence\nKaylen\nKaylyn\nKiera\nKiersten\nKiley\nKristen\nMacey\nMaddison\nNancy\nNatalia\nPatience\nSamiya\nShayla\nTia\nWendy\nYasmin\nAbbey\nAdeline\nAngelica\nAyana\nCharlee\nChelsey\nCora\nDarby\nElena\nEmerson\nGiselle\nHaylie\nIvy\nJaci\nJailyn\nJalyn\nKarley\nKasey\nKatlyn\nLanie\nLexi\nLiberty\nMadeleine\nMarlee\nMarleigh\nMckinley\nMeagan\nMelanie\nMelody\nMontana\nRegan\nSamara\nSandra\nSherlyn\nTamiya\nTatyana\nTiana\nTierra\nAinsley\nAleigha\nAlice\nArmani\nBrenda\nBritney\nBryanna\nCara\nChristine\nCierra\nDemetria\nElaina\nFatima\nGloria\nIzabella\nJacie\nJakiya\nJamyia\nJana\nJolie\nKailee\nKarlie\nKassidy\nKelis\nKelsie\nKendra\nKenley\nKiana\nLacie\nLiliana\nLogan\nMadelynn\nMaleah\nMarley\nMiya\nPatricia\nReanna\nSanaa\nTatiana\nToni\nZaniya\nZariah\nAdrienne\nAngie\nAnsleigh\nBailee\nBraelyn\nBrenna\nCailyn\nCarlee\nCassie\nCindy\nCristal\nCrystal\nDaisha\nDestiney\nElisabeth\nHadley\nHarlie\nHayleigh\nIsabela\nJanyia\nJazlyn\nKallie\nKamari\nKameryn\nKensley\nKeyonna\nKristina\nLaken\nMattie\nParker\nRhianna\nRileigh\nRosa\nRuth\nSamaria\nSavana\nSkye\nSydnee\nTamara\nTaniyah\nVeronica\nAdison\nAlisha\nAlondra\nAnabelle\nAnahi\nAnnika\nAnya\nAriyana\nAudra\nBayleigh\nBentley\nBreana\nBrookelynn\nCandace\nCharley\nChristiana\nCristina\nDallas\nDeanna\nDesirae\nDixie\nDonna\nEvie\nGracyn\nGrayson\nHailee\nJaelyn\nJakeria\nJamiyah\nJanaya\nJane\nJaniah\nJanie\nJanya\nJewel\nJorja\nKalyn\nKalynn\nKarleigh\nKarma\nKathleen\nKenzie\nLacy\nLailah\nLeanna\nLexus\nLizbeth\nMakaila\nMakhia\nMakiah\nMakiya\nMarkayla\nMarlie\nMayra\nMicah\nNia\nPamela\nPhoebe\nRachael\nRowan\nRyan\nRylie\nScarlet\nShaylee\nShyla\nTalia\nTayla\nTristan\nTykeria\nTytianna\nYazmin\nAbigayle\nAdalyn\nAimee\nAlaysia\nAleah\nAllyssa\nAmberly\nAnaya\nAnnalee\nAnnamarie\nArielle\nAriyanna\nAthena\nBaleigh\nBarbara\nBelinda\nBrantley\nBraylee\nBrittani\nBrookelyn\nBrylee\nCaleigh\nCamdyn\nCandice\nCarla\nCarson\nCarter\nCelia\nCherish\nChloey\nDaniella\nDeja\nDelilah\nDenise\nEmery\nEmory\nEssence\nEvelin\nGabriel\nHalie\nHolland\nIsis\nJalisa\nJalynn\nJamiah\nJania\nJaylen\nJaylin\nJazmyn\nJesse\nJimena\nJoslyn\nJustice\nKamaria\nKamiyah\nKamora\nKaris\nKeasia\nKeely\nKeyanna\nKinsey\nLainey\nLaurel\nLeigha\nLeilani\nLela\nLena\nLilian\nLondyn\nLora\nLorelai\nLucille\nMadilynn\nMae\nMaliah\nMallorie\nMarie\nMarina\nMarisa\nMarisol\nMaritza\nMckayla\nMeghan\nMelina\nNataly\nPenelope\nPreslee\nRaleigh\nRaylee\nSamya\nSaniyah\nSharon\nSherry\nStacy\nTyler\nTytiana\nYadira\nYasmine\nYesenia\nZakiya\nAbigale\nAbril\nAdelaide\nAdrian\nAdyson\nAkira\nAlanah\nAlanna\nAlena\nAlessandra\nAlisa\nAliya\nAllee\nAlli\nAlora\nAmani\nAmbria\nAmeria\nAmira\nAmyia\nAndi\nAnia\nAnika\nAnnelise\nAreli\nAria\nAzaria\nBaylie\nBetsy\nBlakely\nBonnie\nBrayden\nBreann\nBreonna\nBrinlee\nBryleigh\nBrylie\nCaelyn\nCarsyn\nCatarina\nCaylin\nChristen\nCloey\nCortney\nDaijah\nDebra\nDella\nDianna\nEllis\nElsie\nEmilie\nEmmie\nFarrah\nFinley\nGenevieve\nGianna\nGracelynn\nHalee\nImani\nItzel\nIyana\nJacelyn\nJaidyn\nJakiyah\nJaleah\nJanice\nJanna\nJaylee\nJaylyn\nJazmyne\nJenifer\nJenny\nJerica\nJohana\nJohanna\nJordis\nJosephine\nJoy\nJoycelyn\nKaden\nKadyn\nKamiya\nKarmen\nKaty\nKaydee\nKelli\nKendal\nKenslee\nKinslee\nKristian\nKristin\nKyndal\nKyndall\nLarissa\nLaurie\nLaylah\nLesley\nLesly\nLibby\nLilli\nLinda\nLisa\nLucero\nLuz\nMacayla\nMadalynn\nMaia\nMakyla\nMara\nMaranda\nMari\nMarianna\nMarion\nMarlene\nMarli\nMiyah\nMoriah\nMykayla\nNikki\nNina\nNorah\nNya\nPhoenix\nPresleigh\nRacheal\nRaeleigh\nReina\nRenee\nRose\nRosemary\nRyann\nShamaya\nShanna\nShannon\nSheila\nSherlin\nSienna\nStormy\nSydnie\nTatianna\nTayler\nTeresa\nTyanna\nViolet\nWillow\nYahaira\nYaretzi\nYoselin\nZadie\nEmma\nMadison\nEmily\nHannah\nElizabeth\nAva\nAddison\nAnna\nOlivia\nAbigail\nChloe\nElla\nSarah\nIsabella\nMary\nAlyssa\nAlexis\nSavannah\nTaylor\nMakayla\nDestiny\nNatalie\nSophia\nLily\nBrianna\nLauren\nBrooklyn\nLillian\nMorgan\nCaroline\nVictoria\nJada\nTrinity\nHaley\nKaitlyn\nKatelyn\nSydney\nBailey\nJasmine\nKaylee\nGracie\nKayla\nSamantha\nAaliyah\nAshley\nGabrielle\nKatherine\nAudrey\nAllison\nSara\nMadeline\nMia\nZoe\nAubrey\nMackenzie\nKennedy\nMaria\nNevaeh\nBreanna\nMadelyn\nHailey\nAmelia\nJessica\nRachel\nRiley\nJordan\nSadie\nShelby\nGrace\nKylie\nMckenzie\nAutumn\nJayla\nAvery\nKatie\nLydia\nAlexandria\nLayla\nMaggie\nMolly\nClaire\nAbby\nAshlyn\nEvelyn\nZoey\nRebecca\nSophie\nJulia\nLaura\nLeah\nMargaret\nSummer\nAmber\nCatherine\nAllie\nAlana\nAngel\nBrooke\nKathryn\nMallory\nCheyenne\nJennifer\nLilly\nFaith\nJenna\nMakenzie\nReagan\nPeyton\nErin\nHayden\nJordyn\nKayleigh\nMegan\nAniyah\nGabriella\nJakayla\nCadence\nKimberly\nMariah\nSerenity\nAlexandra\nArianna\nBrooklynn\nJade\nKendall\nPayton\nAriana\nCallie\nJayda\nKelsey\nAriel\nJaniya\nKylee\nMacy\nMya\nAlexa\nBella\nAngelina\nAnsley\nLaila\nLeslie\nCaitlyn\nDakota\nJayden\nJosie\nKimora\nKyleigh\nAdriana\nAmiyah\nAna\nAsia\nKyra\nMarley\nAliyah\nAndrea\nAniya\nLindsey\nSkylar\nBriana\nRylee\nCarmen\nCourtney\nDanielle\nKaitlin\nLillie\nMattie\nAlivia\nCharlotte\nJamya\nKyla\nMadyson\nMarissa\nMelanie\nAddyson\nErica\nEva\nIsabelle\nKennedi\nLucy\nMichelle\nMiracle\nStephanie\nAdrianna\nChelsea\nChristina\nGeorgia\nJaniyah\nKadence\nRyleigh\nAlaina\nAmari\nAmy\nAubree\nElena\nHope\nJaden\nJocelyn\nKinsley\nTessa\nAnn\nBaylee\nCassidy\nIsabel\nKamryn\nLola\nMaya\nParis\nPresley\nReese\nRuby\nVanessa\nAlexia\nAmanda\nAnnabelle\nCharity\nEllie\nHarmony\nHaylee\nJaliyah\nJamie\nJoanna\nMadilyn\nRaegan\nSavanna\nZion\nAshlynn\nCiara\nHaleigh\nHarper\nHaven\nKate\nLacey\nMadalyn\nRaven\nRebekah\nAlicia\nAlissa\nCamille\nDiana\nIndia\nLila\nMeredith\nSierra\nTaliyah\nAlison\nAllyson\nDiamond\nEden\nHayley\nKatelynn\nKayden\nLondon\nPiper\nShaniya\nCameron\nCarley\nDaisy\nHeaven\nKaren\nKaylie\nKendra\nKira\nLaney\nMiley\nPaige\nSabrina\nSofia\nAmya\nAngela\nBethany\nCrystal\nHarley\nJaiden\nKaleigh\nKaley\nKeira\nKristen\nMikayla\nNadia\nNaomi\nNatalee\nNicole\nTatum\nValeria\nVirginia\nAbbie\nAnnie\nCara\nCarly\nErika\nJamaya\nJulie\nKaylin\nKiara\nMakenna\nRihanna\nScarlett\nTamia\nTori\nVivian\nAmaya\nAubrie\nAyanna\nBailee\nBriley\nDaniela\nEmerson\nGiselle\nJaida\nJanya\nJillian\nJordin\nKirsten\nLexi\nLiliana\nMadisyn\nMelissa\nMelody\nRachael\nSaniya\nTaniya\nAlondra\nAnne\nBrylee\nCampbell\nCarlie\nEmilee\nJadyn\nJaidyn\nJazmin\nJuliana\nMckenna\nRosa\nSelena\nTyra\nAlayna\nAshlee\nBrittany\nCheyanne\nClara\nDestinee\nDixie\nEmmalee\nHalle\nHaylie\nJacey\nJamia\nJazmine\nKaelyn\nKailyn\nKallie\nKara\nKathleen\nKiersten\nKiley\nLexie\nMacie\nMckinley\nMichaela\nPatricia\nZariah\nAkeelah\nAleah\nAlexus\nAurora\nBlakely\nCaitlin\nCamila\nCamryn\nCarlee\nDeasia\nDestini\nEsmeralda\nGabriela\nGianna\nGuadalupe\nHeidi\nJacqueline\nJoselyn\nKailey\nKarley\nKassidy\nKaydence\nKenley\nKenya\nKenzie\nLanie\nLibby\nMiranda\nMontana\nNora\nPaisley\nStella\nTania\nTaniyah\nWhitney\nZaria\nAdeline\nAdyson\nAinsley\nAlice\nAshanti\nAshleigh\nCarleigh\nCarolyn\nCynthia\nElisabeth\nHadley\nHanna\nIvy\nJamiya\nJasmin\nJaycee\nJazmyn\nJourney\nJulianna\nKarla\nKarlie\nKaylyn\nKelly\nKensley\nKiera\nLana\nLizbeth\nLogan\nLyric\nMakiyah\nMariana\nMonica\nNatalia\nPrincess\nRaylee\nRylie\nShayla\nSkyler\nValerie\nZoie\nAbbigail\nAkira\nAlanna\nAlina\nAlly\nAyana\nAyla\nBrenda\nBrittney\nBryanna\nCali\nCarson\nCassandra\nCassie\nCharlee\nDallas\nDeja\nEleanor\nElise\nGracelyn\nHalie\nHallie\nHayleigh\nHolly\nJaelyn\nJalyn\nJuana\nKaliyah\nKarma\nKenadie\nKinley\nKyndall\nMacey\nMaci\nMakaila\nMarianna\nMeagan\nNancy\nShania\nSienna\nTamara\nTiffany\nYasmin\nZaniyah\nAbbygail\nAddisyn\nAlaysia\nAlisha\nAmiya\nAngelica\nAnnabel\nCecilia\nChristian\nDana\nEliana\nGloria\nHeather\nImani\nJane\nJaycie\nJazlyn\nKaitlynn\nKarina\nKarlee\nKelis\nKelsie\nKierra\nLauryn\nMaddison\nMadeleine\nMarisol\nMariyah\nMarlee\nMiriam\nMollie\nPhoebe\nRowan\nSamara\nZykeria\nAdalyn\nBraelyn\nBrenna\nBrookelyn\nCarissa\nCarrie\nCayden\nDanica\nDeanna\nDenise\nDesiree\nDulce\nEmory\nFrances\nGrayson\nIsabela\nJaci\nJaeda\nJakira\nJakiyah\nJameria\nJamiyah\nJaniah\nJewel\nJoselin\nJulissa\nKali\nKamari\nKamiya\nKarleigh\nKaylen\nKaylynn\nKennedie\nKori\nLilian\nLinda\nLorelei\nMercedes\nMylee\nNyla\nShakira\nSidney\nTamya\nTriniti\nVeronica\nAli\nAlli\nAnabelle\nAnastasia\nAzaria\nBianca\nBrandi\nBreana\nBreonna\nBritney\nCandace\nChandler\nChasity\nChrista\nElaina\nEllen\nEmely\nEvelin\nGenesis\nIzabella\nJaelynn\nJamiah\nJorja\nKailee\nKalynn\nKrista\nLaci\nLaken\nLeila\nLindsay\nLisa\nLyla\nMakaylah\nMakiya\nMakyla\nMoriah\nNyasia\nPatience\nPerla\nReanna\nRhianna\nRyan\nSaylor\nSilvia\nTara\nTatiana\nTatyana\nTeagan\nTianna\nYasmine\nZaniya\nAbbey\nAbigale\nAddie\nAlejandra\nAmerica\nAnahi\nAntonia\nAshton\nBryleigh\nCaleigh\nCarla\nCarrington\nCaylee\nCeleste\nCharlie\nCierra\nClaudia\nCora\nDelaney\nDelilah\nEliza\nEllison\nGenevieve\nHailee\nHazel\nHelen\nIyana\nJacie\nJalia\nJazmyne\nJenny\nJolie\nJoslyn\nKarmen\nKathrine\nKatlyn\nKendal\nKenlee\nKhloe\nKimber\nKrystal\nLacy\nLara\nLaurel\nLondyn\nLucia\nMagdalena\nMaleah\nMalia\nMarina\nMeghan\nMiya\nNayeli\nNia\nPamela\nPaola\nPhoenix\nPrecious\nRaleigh\nRegan\nRhiannon\nRileigh\nRosemary\nSariyah\nShaniyah\nShannon\nShyanne\nSimone\nSydnee\nTabitha\nTakiyah\nTayler\nTiana\nTiara\nTierra\nToni\nViolet\nZariyah\nAbigayle\nAdelynn\nAiyanna\nAlanah\nAlayah\nAleigha\nAllyssa\nAlyssia\nAmani\nAmiah\nAnnalee\nAnnelise\nAnya\nAnyia\nAria\nAverie\nAyden\nAzariah\nAzul\nBaleigh\nBayleigh\nBaylie\nBlair\nBrandy\nBria\nBrookelynn\nCarol\nCasey\nChelsey\nChristiana\nChristine\nChristy\nCloey\nConstance\nCrimson\nDania\nDaphne\nDarby\nDasia\nElle\nEstrella\nEvie\nGracelynn\nHaiden\nHarmoni\nHelena\nHillary\nItzel\nJaila\nJaina\nJakeria\nJakiya\nJalynn\nJania\nJanie\nJaqueline\nJaylah\nJaylynn\nJessie\nJohanna\nJoy\nJulianne\nJustice\nKairi\nKalli\nKamaria\nKamiyah\nKamora\nKatelin\nKathy\nKatrina\nKaylan\nKayley\nKelsi\nKinlee\nKyndal\nLandry\nLiberty\nLilliana\nLoren\nLorena\nMadalynn\nMadilynn\nMaegan\nMallorie\nMarely\nMarilyn\nMicah\nMyra\nPaula\nRaina\nRose\nRuth\nSally\nSamiya\nSaniyah\nSarabeth\nSelah\nSerena\nShakayla\nStacey\nSusan\nTamiya\nTanya\nTia\nTyler\nWendy\nWillow\nYadira\nYuridia\nZamya\nZyon\nAdrienne\nAiyana\nAja\nAmaria\nAnnabeth\nAnnalise\nAnniston\nApril\nArionna\nAriyah\nAriyanna\nArmani\nAshia\nAvril\nBeatrice\nBennett\nBridget\nBrinlee\nBrinley\nBryana\nCailyn\nCalli\nCarolina\nCarsyn\nCayla\nCharley\nCharli\nCherish\nCheyann\nChyna\nCordelia\nCorinne\nCristina\nDaniah\nDaniella\nDayana\nDayanara\nDestiney\nDionna\nEbony\nElana\nEmery\nEmiley\nEmmy\nErianna\nEsther\nEve\nFallon\nFinley\nFlor\nHarlee\nHarleigh\nHollie\nIris\nIsis\nJakya\nJanae\nJanaya\nJaylee\nJaylen\nJaylin\nJaylyn\nJenifer\nJosephine\nJosselyn\nJoyce\nKaci\nKaden\nKalia\nKalyn\nKamdyn\nKamya\nKaniyah\nKarissa\nKasey\nKeely\nKelcie\nKenadi\nKera\nKierstyn\nKirstyn\nKyli\nLailah\nLainey\nLaniya\nLeanna\nLeilani\nLesly\nLupita\nLuz\nLyndsey\nMadisen\nMaiya\nMakenzi\nMakhia\nMakiah\nMaliya\nMalorie\nMarie\nMattison\nMckayla\nMelisa\nMerritt\nMyla\nNoelia\nNya\nParker\nPenelope\nPriscilla\nRayleigh\nRiver\nRobyn\nSamaria\nSamaya\nSanaa\nScarlet\nShanya\nShaylee\nSherlyn\nSkye\nStacy\nTakayla\nTamera\nTaryn\nTera\nTerri\nToccara\nTristan\nValentina\nViviana\nWilla\nWynter\nXimena\nYara\nYazmin\nYocelin\nYoselin\nZakiyah\nZanya\nZyan\nEmma\nMadison\nAddison\nAva\nEmily\nAnna\nHannah\nChloe\nIsabella\nElizabeth\nAbigail\nOlivia\nElla\nSarah\nMary\nAlexis\nAlyssa\nMakayla\nTaylor\nLily\nSavannah\nKaylee\nMorgan\nBrooklyn\nNatalie\nLillian\nDestiny\nCaroline\nBailey\nSophia\nLauren\nAubrey\nPeyton\nAvery\nLayla\nJada\nKatherine\nTrinity\nBrianna\nAaliyah\nGracie\nHaley\nMadelyn\nKaitlyn\nAllison\nKatelyn\nKayla\nMaria\nSydney\nZoey\nMckenzie\nKylie\nZoe\nAshley\nSara\nNevaeh\nGabrielle\nRiley\nAutumn\nKennedy\nJayla\nMackenzie\nVictoria\nBreanna\nHailey\nHayden\nReagan\nSamantha\nJasmine\nPayton\nAudrey\nKimberly\nLeah\nMakenzie\nSadie\nSophie\nAllie\nKatie\nMadeline\nShelby\nGrace\nJordan\nLydia\nMolly\nJessica\nMarley\nClaire\nAmelia\nMariah\nJulia\nMaggie\nRachel\nLondon\nMia\nAngel\nJordyn\nAshlyn\nCatherine\nAniyah\nCarmen\nArianna\nFaith\nKayleigh\nKimora\nErin\nJayden\nKendall\nLilly\nCharlotte\nEvelyn\nKhloe\nMargaret\nLaila\nLaura\nRylee\nGabriella\nJaniya\nKathryn\nKylee\nMiley\nBrooke\nCallie\nKinsley\nMegan\nBella\nCheyenne\nMya\nJaliyah\nKelsey\nAmber\nAndrea\nAniya\nLila\nLucy\nAbby\nAnsley\nHarper\nAlivia\nAllyson\nMallory\nRebecca\nSummer\nAna\nAriel\nJennifer\nAlexa\nAshlynn\nGenesis\nMadalyn\nRihanna\nAddyson\nBrooklynn\nCourtney\nIsabelle\nJakayla\nPiper\nAlexandra\nAsia\nJaniyah\nSerenity\nSkylar\nAlana\nAlexandria\nAlexia\nAliyah\nAmari\nBaylee\nJenna\nKennedi\nKyleigh\nMiracle\nAnnabelle\nAriana\nCarly\nHeaven\nJade\nJaden\nKara\nKayden\nAubree\nCamille\nDanielle\nEva\nHaylee\nJamie\nJosie\nKamryn\nMacy\nMikayla\nVirginia\nAlaina\nBriana\nChelsea\nHarley\nJocelyn\nKaydence\nKiley\nMadilyn\nMarlee\nMelissa\nAmiyah\nCadence\nDiamond\nEleanor\nJamiya\nKaliyah\nLeslie\nLillie\nReese\nTamia\nKaleigh\nKensley\nKinley\nRuby\nRyleigh\nStella\nZion\nAnne\nBethany\nGeorgia\nKate\nKirsten\nKyla\nKyra\nMarissa\nPaisley\nAmaya\nCaitlyn\nCamryn\nIsabel\nJadyn\nJayda\nKaylie\nLacey\nMaya\nScarlett\nSierra\nAmy\nAubrie\nCaylee\nChristina\nEllie\nHarmony\nJamya\nKendra\nPaige\nBailee\nCarley\nDakota\nJustice\nPresley\nRaven\nSaniya\nShaniya\nValeria\nVanessa\nAdriana\nAngelina\nBriley\nCassidy\nErica\nKadence\nKeira\nLexi\nLindsey\nLyla\nMattie\nMiranda\nNaomi\nNatalia\nSofia\nZoie\nAlice\nAlly\nBrylee\nCarlie\nEmilee\nHeidi\nJaida\nJillian\nKailey\nKaley\nKaren\nMadisyn\nMichelle\nMollie\nRaegan\nSavanna\nVivian\nAlayna\nAlissa\nAmanda\nCiara\nClara\nDestinee\nDixie\nHaleigh\nJacqueline\nKelly\nKiersten\nLaney\nLola\nMadyson\nNora\nRebekah\nStephanie\nAbbie\nAdrianna\nAlicia\nDiana\nEliza\nJuana\nLauryn\nMaliyah\nMeredith\nNyla\nParis\nRylie\nSabrina\nSaniyah\nShayla\nAddisyn\nAlondra\nAnnie\nBrittany\nCaitlin\nDaisy\nGabriela\nHolly\nIzabella\nJamiyah\nJosephine\nKaelyn\nMakenna\nNancy\nZariah\nZykeria\nAdyson\nAmiya\nAmya\nArabella\nBrenda\nCameron\nCara\nEmerson\nHope\nJasmin\nJoy\nJulianna\nJulie\nKaitlynn\nKamari\nKaylen\nLiliana\nMacey\nMalia\nMonica\nMylee\nNadia\nNatalee\nApril\nAzaria\nBryleigh\nCarlee\nCecilia\nClaudia\nEden\nEmery\nEmory\nEsmeralda\nImani\nJazmine\nJordin\nKailyn\nKaitlin\nKarlee\nKassidy\nKatelynn\nKaylin\nLaci\nLogan\nMaci\nMakiyah\nMalaysia\nTaniya\nAbigayle\nAdalyn\nAlisha\nAllisson\nAngela\nBraelyn\nCasey\nCrimson\nCrystal\nDeasia\nEstrella\nGianna\nGracelyn\nHadley\nHallie\nHanna\nHelen\nIndia\nIvy\nJacey\nJamaya\nKamya\nKarleigh\nKenya\nKiara\nKiera\nKristen\nKyndall\nLeila\nLondyn\nLyric\nMacie\nMckenna\nMckinley\nRuth\nSelena\nTessa\nTiffany\nTori\nZaria\nAbbigail\nAkira\nAlison\nAnaya\nAshlee\nAshleigh\nCampbell\nCarson\nCynthia\nDanica\nDestini\nDulce\nElisabeth\nHalle\nHeather\nJamiah\nKarmen\nKira\nLindsay\nMadeleine\nMadelynn\nMakiya\nMaleah\nMartha\nPatricia\nRyan\nTaliyah\nTeagan\nViolet\nWhitney\nZariyah\nAnn\nAshanti\nBelinda\nCarrie\nDaniela\nDasia\nDelilah\nDestiney\nFrances\nIsabela\nJimena\nJulianne\nKamora\nKristina\nLexie\nLiberty\nMarleigh\nMelanie\nMiriam\nMylie\nParker\nPenelope\nRachael\nRose\nSamiya\nSelah\nShaniyah\nSidney\nSienna\nTatum\nValerie\nWilla\nAinsley\nAlaysia\nAlexus\nAmaria\nAnastasia\nAria\nArmani\nAyanna\nAzariah\nBianca\nBrandi\nBrenna\nCailyn\nCali\nCamila\nCamilla\nCarleigh\nCatarina\nCharity\nCharleigh\nCheyanne\nEvie\nGiselle\nGuadalupe\nHarlee\nHayley\nIngrid\nIsla\nJacie\nJaelyn\nJaiden\nJaidyn\nJakira\nJakiyah\nJaleah\nJameria\nJaylee\nJaylin\nJazlyn\nJazmin\nJoselyn\nKelsi\nKenzie\nLana\nMareli\nMarely\nMarkayla\nMeghan\nMontana\nNatasha\nNicole\nNorah\nRosa\nSariah\nSasha\nSkye\nWillow\nYasmin\nAbbey\nAdeline\nAdrienne\nAkeelah\nAnabelle\nAnnabella\nAnnalee\nAurora\nBayleigh\nBlakely\nBreonna\nBrookelyn\nCarrington\nCassie\nCaydence\nCherish\nChristian\nChristiana\nCora\nDana\nDelaney\nDesiree\nEmmalee\nHaven\nIsabell\nJanie\nJanya\nJaycee\nJenny\nJoanna\nJohanna\nJolie\nKaidence\nKamaria\nKamiyah\nKaniya\nKarina\nKarla\nKarma\nKayley\nKelsie\nLainey\nLanie\nLena\nLibby\nLisa\nLizbeth\nMaddie\nMaddison\nMariana\nMarisol\nMelody\nMichaela\nMyla\nPatience\nPhoebe\nPhoenix\nRhianna\nRosemary\nSandra\nSherlyn\nShyanne\nTalia\nTaniyah\nTatyana\nTia\nToni\nVeronica\nWendy\nYadira\nYasmine\nYoselin\nAbigale\nAda\nAddie\nAlanah\nAlanna\nAlex\nAlisa\nAlli\nAlysa\nAmeria\nAnslee\nAnya\nAshton\nBrinley\nBrittney\nBrookelynn\nCaleigh\nCarissa\nCarolina\nCecelia\nChandler\nChasity\nDanna\nDeanna\nElise\nElle\nEmmaline\nErika\nEryn\nFernanda\nGracey\nHailee\nJacquelyn\nJakeria\nJalynn\nJamia\nJanae\nJaylah\nJaylynn\nJessie\nJuliette\nJulissa\nKadyn\nKaila\nKallie\nKamiah\nKamiya\nKarley\nKasey\nKaya\nKaylynn\nKendal\nKrista\nKyndal\nLaylah\nLeigha\nLela\nLidia\nLitzy\nLynn\nMakaila\nMakenzi\nMallorie\nMoriah\nNola\nPreslee\nPrincess\nShakira\nShamya\nSkyler\nTakiyah\nTiana\nTiara\nZaniyah\nAbagail\nAdalynn\nAdelynn\nAidyn\nAleah\nAlina\nAliya\nAliza\nAlonna\nAlyson\nAnniston\nAshtyn\nAundrea\nAyana\nAyden\nCambree\nCandace\nCarolyn\nCatelyn\nCharlee\nCharli\nCharlie\nCindy\nDaijah\nDorothy\nDylan\nEllen\nEllison\nEmmie\nEmmy\nEssence\nEsther\nHarlie\nHaylie\nHeidy\nHolland\nIreland\nJaelynn\nJailyn\nJakhia\nJakiya\nJalyn\nJaqueline\nJaslyn\nJourney\nJuliana\nKacie\nKailee\nKali\nKalyn\nKamille\nKarli\nKarlie\nKarmyn\nKarrington\nKatlyn\nKaycee\nKemya\nKenley\nKennadi\nKiana\nKloe\nKristin\nLacie\nLaken\nLakin\nLaurel\nLilah\nLillyann\nLinley\nLorelai\nLuz\nMaegan\nMagdalena\nMakinley\nMaribel\nMarilyn\nMarina\nMariya\nMayra\nMilagros\nMillie\nNatalya\nNia\nPerla\nPrecious\nRileigh\nRosalinda\nRowan\nSanaa\nSaylor\nShamiya\nSharon\nSheyla\nShiloh\nSkyla\nTamara\nTara\nTatianna\nTrista\nXimena\nXiomara\nYazmine\nZakiyah\nZaniya\nZariya\nZaylee\nZykerria\nAbbygail\nAddalyn\nAdrian\nAimee\nAinslee\nAja\nAlannah\nAlauna\nAlena\nAlliyah\nAmani\nAmayah\nAmirah\nAngelica\nAngeline\nAngie\nArden\nAryana\nAshari\nAsiah\nAsya\nAugust\nAveri\nAverie\nAylin\nBentley\nBridget\nBrionna\nBryanna\nBrynlee\nCandice\nCassandra\nChanel\nChristine\nCloe\nDaniella\nDeborah\nDenise\nElena\nElisa\nElliana\nEllis\nElsie\nEmalee\nEmarie\nEmely\nEmmaleigh\nEulalia\nFatima\nFinley\nGillian\nGracyn\nGwendolyn\nHana\nIris\nIyanna\nJaci\nJaila\nJakaria\nJaleria\nJaliah\nJamaria\nJamyah\nJane\nJanyla\nJaycie\nJenifer\nJorja\nJudith\nKaiya\nKaleah\nKaylyn\nKeely\nKenadie\nKeyla\nKeziah\nKianna\nKierra\nKirstin\nKourtney\nKyara\nLailah\nLamya\nLaniya\nLarissa\nLaurie\nLea\nLeilani\nLia\nLilian\nLinda\nLorelei\nMacayla\nMakala\nMakaylah\nMalaya\nMarisa\nMariyah\nMarli\nMarlie\nMartina\nMayrin\nMeagan\nMelisa\nMiah\nMicah\nMurphy\nMyasia\nMyleigh\nNivea\nNoelle\nPayten\nPeighton\nRandi\nRayne\nRayven\nRiver\nRyann\nRylan\nSamya\nSariyah\nSavanah\nScarlet\nShakayla\nShannon\nSuzanna\nTamya\nTania\nTatiana\nTeresa\nTrinitee\nTristan\nTyler\nTytianna\nWynter\nZakiya\nZykeriah\nEmma\nMadison\nIsabella\nAva\nAnna\nAddison\nChloe\nOlivia\nAbigail\nEmily\nElizabeth\nElla\nSarah\nAlexis\nKaylee\nMary\nAlyssa\nTaylor\nHannah\nSavannah\nLily\nBrooklyn\nCaroline\nMakayla\nNatalie\nAubrey\nPeyton\nTrinity\nLillian\nLayla\nSophia\nMadelyn\nMia\nNevaeh\nDestiny\nMorgan\nJada\nLauren\nAvery\nZoey\nAllison\nKatelyn\nBailey\nBrianna\nGabrielle\nKatherine\nSydney\nVictoria\nRiley\nKhloe\nSamantha\nAshley\nMckenzie\nMariah\nAudrey\nHayden\nSophie\nAaliyah\nHaley\nZoe\nAutumn\nGracie\nKennedy\nLeah\nReagan\nKylie\nBella\nKaitlyn\nMackenzie\nClaire\nJasmine\nMaria\nJayla\nKayla\nAmelia\nEvelyn\nPayton\nAllie\nMakenzie\nSara\nHailey\nHarper\nAshlyn\nGrace\nKayleigh\nMolly\nSadie\nMadeline\nJordyn\nLilly\nSerenity\nMargaret\nGabriella\nRylee\nAngel\nJordan\nLondon\nJessica\nJulia\nMarley\nLydia\nFaith\nKinsley\nKendall\nShelby\nRachel\nAnsley\nArianna\nKatie\nCharlotte\nCheyenne\nJayda\nCatherine\nJakayla\nLaura\nLucy\nMaggie\nAddyson\nAmber\nAniyah\nBrooke\nJayden\nSummer\nJaniya\nKylee\nAbby\nAlexa\nEllie\nRyleigh\nJaniyah\nKelsey\nPiper\nRebecca\nBrooklynn\nJade\nJennifer\nSkylar\nAna\nLaila\nAlivia\nBreanna\nErin\nEva\nMadilyn\nMallory\nSofia\nChelsea\nKathryn\nLila\nLondyn\nAriana\nJosie\nKimberly\nMarlee\nPaisley\nRuby\nStella\nAlexandria\nIsabelle\nJenna\nKara\nMegan\nMiley\nAnnabelle\nAriel\nJaliyah\nKinley\nMacy\nAliyah\nCadence\nCallie\nJazmine\nJocelyn\nMalia\nMikayla\nMya\nNaomi\nPresley\nAlexandra\nAllyson\nAngelina\nAshlynn\nBrylee\nCamille\nCaylee\nDanielle\nHaylee\nKyleigh\nMadisyn\nReese\nAlana\nBaylee\nBriana\nCaitlyn\nEden\nGeorgia\nHarmony\nValeria\nZariah\nZion\nAsia\nIsabel\nMaliyah\nAdriana\nAndrea\nAngela\nHadley\nHeidi\nKassidy\nKennedi\nLiliana\nLindsey\nMarissa\nRaegan\nAdrianna\nAurora\nBailee\nCarmen\nGenesis\nKeira\nKimora\nMelanie\nRihanna\nSierra\nAlaina\nAlison\nCassidy\nChristina\nEleanor\nKailyn\nKatelynn\nKayden\nLeslie\nLillie\nMelissa\nScarlett\nSelena\nVirginia\nAmiyah\nAniya\nAnne\nAubree\nCameron\nHarley\nHeaven\nJaden\nJamya\nJulianna\nKadence\nKailey\nKamryn\nLena\nLola\nMaya\nMichelle\nNicole\nNora\nPaige\nParis\nSaniya\nSavanna\nStephanie\nAdalyn\nClara\nHaleigh\nIndia\nJaiden\nKaelyn\nLeila\nLyla\nNyla\nSabrina\nTaraji\nTessa\nVivian\nAdeline\nAlayna\nAmaya\nBethany\nBraelyn\nBriley\nCali\nCarly\nCharity\nCiara\nJillian\nKaliyah\nKamari\nKaydence\nLauryn\nMadalyn\nMaleah\nMiracle\nRebekah\nTamia\nAbbie\nAmari\nDaisy\nDaniela\nGuadalupe\nHayley\nIzabella\nJacqueline\nJamie\nJoanna\nKaleigh\nKyla\nLacey\nMadyson\nMakenna\nNadia\nTaliyah\nVanessa\nWillow\nAlondra\nAmy\nAnnabella\nAnnie\nCaitlin\nCampbell\nCecilia\nCourtney\nCynthia\nDiana\nEmilee\nGabriela\nHaven\nHelen\nJamiya\nJulie\nKamya\nKaylie\nKelly\nKendra\nKiley\nKyra\nMacie\nMaddison\nMelody\nMillie\nRaven\nSkyler\nAmya\nAnn\nAubrie\nCarlee\nCarley\nChasity\nDiamond\nEmerson\nHallie\nJuliana\nKate\nKenley\nLexi\nMarleigh\nMattie\nMichaela\nMiranda\nMyla\nTaniyah\nZaniyah\nAbbigail\nAdyson\nAlice\nAlissa\nAlly\nAshanti\nAzaria\nCarleigh\nDakota\nFrances\nHayleigh\nJaidyn\nJaylee\nJoselyn\nKamora\nKaylen\nKelsie\nKristen\nLyric\nMadilynn\nMckinley\nNatalee\nSaniyah\nSasha\nShaniyah\nTalia\nTatiana\nTeagan\nViolet\nWhitney\nAlexia\nAlicia\nAmanda\nAmiya\nArmani\nCamila\nDeasia\nDixie\nEmery\nEmory\nGracelyn\nHalle\nHeather\nJaleah\nJaycee\nKaleah\nKarley\nKensley\nKenya\nLaney\nLeighton\nLibby\nLilah\nMadalynn\nMalaysia\nMariyah\nNatalia\nRylie\nTaniya\nTatum\nAdelyn\nAli\nAlyson\nApril\nArabella\nAshton\nBraylee\nCamryn\nCara\nCharlee\nCrimson\nDestini\nElisabeth\nEliza\nGianna\nHanna\nKamiya\nKarina\nKaylin\nKeyonna\nKiara\nKiera\nKiersten\nKristina\nKyndal\nKyndall\nLogan\nLorelei\nMariana\nMartha\nMckenna\nMeredith\nRuth\nShaniya\nValerie\nZaniya\nZaria\nAddie\nAddisyn\nAlayah\nAleah\nAliya\nAngelica\nAnya\nAzariah\nCailyn\nCarlie\nDallas\nDanica\nDelaney\nDelilah\nDestinee\nDestiney\nErika\nFernanda\nGiselle\nHope\nIsabela\nIvy\nJakiyah\nJosephine\nJourney\nJoy\nJuana\nKarla\nKarmen\nKarsyn\nKathleen\nKourtney\nMaci\nMakiyah\nMalaya\nMckayla\nMercy\nMollie\nNyasia\nPaola\nPenelope\nPhoebe\nRaylee\nRosemary\nRylan\nSamara\nZoie\nAdrienne\nAinsley\nAmeria\nAngie\nAnnalise\nBayleigh\nBentley\nBristol\nBrookelyn\nCalleigh\nCarolina\nCassie\nDesiree\nElaina\nElena\nFinley\nGloria\nGracelynn\nHazel\nJaida\nJamiyah\nJana\nJane\nJaylynn\nJordin\nJulianne\nJustice\nKarlie\nKayley\nKhaliyah\nKira\nKirsten\nLailah\nLainey\nLeanna\nLexie\nLiberty\nLisa\nMacey\nMaddie\nMadelynn\nMarkayla\nMarlie\nRosa\nRyan\nSelah\nSidney\nTamara\nAdalynn\nAkeelah\nAlanna\nAlaya\nAria\nArielle\nAyanna\nBrenna\nCamilla\nCarolyn\nCherish\nCloe\nDanika\nEllis\nEmilia\nErica\nEvangeline\nImani\nIvey\nJadyn\nJakeria\nJameria\nJaniah\nJaylen\nKailee\nKaitlin\nKali\nKallie\nKarleigh\nKarly\nKaylan\nKaylyn\nKeely\nKendal\nKori\nLana\nLucille\nMakenzi\nMercedes\nMiriam\nPatience\nPatricia\nRowan\nSandra\nShakira\nShyanne\nSkye\nTamiya\nTamya\nTiffany\nTori\nWendy\nAbagail\nAdelynn\nAkira\nAlaysia\nAleigha\nAlexus\nAlina\nAlisson\nAmani\nAnnabell\nAnnalee\nAnslee\nAryana\nBaileigh\nBrandi\nBrielle\nBrinley\nBritney\nBrittany\nCasey\nCatarina\nCharleigh\nCharlie\nClaudia\nCora\nDella\nEliana\nElle\nEllen\nElsie\nEmalyn\nEssence\nEsther\nFelicity\nHarlee\nHarleigh\nHarmoni\nHeidy\nHolly\nIsabell\nJacey\nJaelyn\nJalia\nJanie\nJaslyn\nJasmin\nJaylyn\nJazmyne\nJessie\nJimena\nJuliet\nKaden\nKaidyn\nKaren\nKarlee\nKaty\nKaycee\nKaylynn\nKeyla\nKynleigh\nLacie\nLacy\nLandry\nLilliana\nLindsay\nLizbeth\nMakaila\nMakiya\nMallorie\nMarianna\nMeghan\nMylee\nNancy\nNataly\nNia\nPreslee\nSamiya\nSanaa\nSariah\nSariyah\nShayla\nShiloh\nSienna\nTabitha\nTeresa\nTia\nTiara\nAbbygail\nAdelaide\nAdleigh\nAiyana\nAllyssa\nAlysa\nAmerica\nAnabelle\nAnastasia\nAnnaleigh\nAspen\nAugust\nAverie\nBaleigh\nBeatrice\nBelinda\nBerkley\nBlakely\nBreonna\nBria\nBrisa\nCaylie\nCharli\nChristian\nChristine\nCrystal\nDana\nDanna\nDaphne\nDayana\nDulce\nElaine\nElana\nElise\nElliott\nEmmalee\nEryn\nHelena\nHenley\nIsla\nJaedyn\nJaelynn\nJamaya\nJanet\nJazlyn\nJazmin\nJennie\nJessa\nJolie\nKadyn\nKalei\nKaley\nKalia\nKaris\nKarli\nKayle\nKeeley\nKelsi\nKenadie\nKenleigh\nKierra\nKimber\nKloe\nKylah\nLaci\nLaniya\nLela\nLidia\nLilian\nLucia\nMagdalena\nMariya\nMaylee\nMisty\nMonica\nNatasha\nNorah\nPaislee\nPaityn\nParker\nPhoenix\nRachael\nRaelyn\nRian\nSamiyah\nSarai\nSaylor\nSullivan\nSylvia\nTaliah\nTaryn\nTiana\nVeronica\nWhitley\nYareli\nYasmin\nYesenia\nYoselin\nZamya\nZaniah\nZariyah\nAbbey\nAdison\nAida\nAisha\nAlaysha\nAllisson\nAlycia\nAlyse\nAmiracle\nAmirah\nAnaya\nAnderson\nAnnagrace\nAnnsley\nAnyah\nAnylah\nAracely\nAreli\nArely\nAriyana\nAriyanna\nAshleigh\nAuburn\nAyla\nBarbara\nBrittney\nBrynn\nCamden\nCaydence\nCaylin\nCharis\nCharley\nChelsey\nChelsie\nChristiana\nCristina\nDaniella\nDemi\nDevin\nEllianna\nEmely\nEmerald\nEmilie\nEmmaline\nEmmy\nErionna\nGenevieve\nGracyn\nIrene\nIris\nIyanna\nJacquelyn\nJakiya\nJaleigh\nJalyn\nJamiah\nJanae\nJanelle\nJanyia\nJaylin\nJemma\nJewel\nJocelynn\nJosalyn\nJoslyn\nKacie\nKaileigh\nKaitlynn\nKalyn\nKamia\nKamiyah\nKaniyah\nKarma\nKasey\nKaydance\nKenzie\nKierstyn\nKinlee\nKristyn\nLeigha\nLeilani\nLesly\nLinda\nLorelai\nMadeleine\nMakhia\nMakinley\nMaleigha\nMarely\nMargarita\nMarisol\nMeagan\nMelisa\nMileigh\nMiya\nMolli\nNaima\nNoemi\nNylah\nPeighton\nPresleigh\nRaleigh\nRandi\nRilee\nRileigh\nRobyn\nRose\nSamaya\nSawyer\nSerena\nShania\nShannon\nSharon\nShaylee\nShayna\nSkyla\nStarr\nTatyana\nViviana\nWynter\nXimena\nYamilet\nYolanda\nZykeria\nZykira\nEmma\nIsabella\nMadison\nAva\nOlivia\nChloe\nAbigail\nElizabeth\nAddison\nAnna\nEmily\nElla\nMary\nSophia\nAlexis\nHannah\nBrooklyn\nMakayla\nLily\nSarah\nKhloe\nAlyssa\nKaylee\nAvery\nLayla\nLillian\nNatalie\nNevaeh\nTaylor\nSavannah\nCaroline\nPeyton\nAmelia\nBailey\nSophie\nZoey\nDestiny\nAubrey\nLondon\nMorgan\nAudrey\nBella\nJordyn\nLauren\nKennedy\nTrinity\nMadelyn\nAllison\nBrianna\nAaliyah\nHarper\nMia\nReagan\nZoe\nLeah\nMckenzie\nEvelyn\nJada\nKaitlyn\nMakenzie\nVictoria\nAllie\nKatherine\nLydia\nMackenzie\nMariah\nGabrielle\nSamantha\nSydney\nAutumn\nRiley\nCharlotte\nHailey\nKylie\nSerenity\nGracie\nKyleigh\nRylee\nKayla\nClaire\nJulia\nMargaret\nKatelyn\nLucy\nMolly\nAshley\nJasmine\nAngel\nHaley\nJayla\nMaria\nGabriella\nAshlyn\nBrooklynn\nMadeline\nSara\nArianna\nKinsley\nGrace\nKatie\nSadie\nStella\nPayton\nRachel\nEllie\nKylee\nPiper\nSkylar\nAlexa\nJordan\nAddyson\nAlivia\nHayden\nKayleigh\nAnsley\nFaith\nJennifer\nMallory\nJayden\nJessica\nBrooke\nKelsey\nLaila\nMaci\nAriana\nRyleigh\nShelby\nEva\nHadley\nLilly\nMaggie\nNaomi\nAnnabelle\nEden\nPaisley\nAbby\nAngelina\nCheyenne\nJaniya\nKimberly\nMarley\nReese\nAlana\nAniyah\nAriel\nKathryn\nKaydence\nLondyn\nCallie\nCamille\nCatherine\nKensley\nKinley\nMadilyn\nRebecca\nAdalyn\nCadence\nClara\nKamryn\nLila\nMelanie\nScarlett\nAlexandra\nAmber\nBreanna\nDanielle\nEleanor\nKennedi\nAlexandria\nAna\nErin\nParis\nPresley\nAlayna\nAmy\nAubree\nAubrie\nHarmony\nJosie\nKatelynn\nMegan\nAddisyn\nAlice\nAliyah\nGenesis\nJakayla\nJaliyah\nMacy\nSummer\nBaylee\nIsabel\nIzabella\nKara\nLeslie\nLexi\nMadalyn\nRuby\nSofia\nAlison\nAmari\nAnne\nAsia\nBailee\nCamila\nDaisy\nHeidi\nJuliana\nKadence\nLaney\nMadisyn\nMaliyah\nMckinley\nMiracle\nMya\nAndrea\nAshlynn\nBlakely\nCarly\nIsabelle\nJulianna\nKendall\nLaura\nLillie\nAnn\nCamryn\nChristina\nDakota\nHaleigh\nJenna\nKayden\nLola\nMacie\nMaddison\nMikayla\nNatalee\nZoie\nAlaina\nAnnabella\nBriley\nCharlee\nGeorgia\nHaylee\nJillian\nKiley\nMakenna\nMollie\nStephanie\nZariah\nZion\nAdeline\nAdrianna\nAniya\nCourtney\nDiamond\nEmerson\nEmery\nErica\nJade\nJaniyah\nJayda\nKailey\nKendra\nKimora\nLyla\nMarissa\nMichelle\nMiranda\nNora\nShaniya\nVanessa\nAmiyah\nAnnie\nCarlee\nEliza\nEvie\nGabriela\nHarley\nJocelyn\nKailyn\nMadalynn\nMadyson\nAbbie\nAdelyn\nAlicia\nAllyson\nBraelyn\nBrylee\nCrimson\nHeaven\nKaliyah\nKeira\nKyla\nLauryn\nLindsey\nMakiyah\nMaya\nRaven\nTatum\nTiana\nVivian\nAdalynn\nCaitlyn\nCarmen\nDelilah\nElena\nEmmalyn\nHope\nImani\nJamya\nJourney\nKarsyn\nMarlee\nMckenna\nMelissa\nSaniya\nShayla\nWillow\nAdriana\nAli\nArabella\nCarlie\nChelsea\nCora\nHelen\nHolly\nIsla\nJaida\nJaleah\nJosephine\nKaleigh\nKallie\nKourtney\nLeila\nLiberty\nLiliana\nPhoebe\nRaegan\nTaraji\nAlaysia\nAleigha\nAlissa\nAngela\nAzaria\nBentley\nBriana\nBrynlee\nCarley\nCrystal\nDanna\nDestinee\nJasmin\nJazmin\nJazmine\nJuana\nJulie\nKaitlin\nKaren\nKassidy\nKelsie\nKristen\nLainey\nLyric\nMalaysia\nMalia\nMariana\nMelody\nMiley\nNylah\nPaige\nTenley\nViolet\nZykeria\nAlanna\nAlexia\nAlly\nAnnalee\nAria\nBethany\nBraylee\nChasity\nClaudia\nDiana\nElise\nEmilee\nGianna\nHallie\nHeather\nJaden\nJadyn\nKaelyn\nKelly\nKenya\nKiersten\nLaylah\nMacey\nMadilynn\nNadia\nNia\nNorah\nRylie\nSasha\nTamia\nZariyah\nAda\nAdyson\nAmanda\nAnabelle\nBristol\nCarleigh\nCharlie\nChyna\nCiara\nDelaney\nElaina\nEmory\nErika\nFarrah\nFinley\nGracelyn\nIris\nJamiya\nJustice\nKarley\nKarmen\nKate\nKiera\nKirsten\nLexie\nMaleah\nMarilyn\nMattie\nMiriam\nNatalia\nNyla\nParker\nRebekah\nRihanna\nRose\nRuth\nValeria\nAbbigail\nAiden\nAinsley\nAmaya\nAnnalise\nAurora\nBryleigh\nCaleigh\nCassidy\nCharleigh\nCharley\nDaniela\nDixie\nFrances\nGemma\nHalle\nJacqueline\nJakiyah\nJane\nKaylie\nKaylynn\nKenley\nKenzie\nLeigha\nLilah\nLucille\nMercedes\nMeredith\nMichaela\nRaelyn\nRaylee\nSelena\nTaliyah\nTiffany\nTinsley\nVeronica\nZaniya\nAkira\nAlina\nAlondra\nAmani\nAngelica\nAshanti\nAudrina\nAyanna\nBaleigh\nBrittany\nCaitlin\nCali\nCameron\nCarla\nCynthia\nDana\nDulce\nEsmeralda\nGenevieve\nHarleigh\nHarmoni\nHaven\nHazel\nHelena\nIvy\nJaiden\nJaidyn\nJaycee\nJoanna\nJordynn\nKamaria\nKamiyah\nKarlee\nKarlie\nKaylin\nKenlee\nKimber\nKyndal\nKyndall\nKyra\nLana\nMariyah\nMicah\nPatience\nPriscilla\nRaina\nRylan\nSariah\nSavanna\nShiloh\nTaniya\nVirginia\nZaria\nAddie\nAiyana\nAleah\nAlexus\nAmiya\nAmya\nAnsleigh\nAyana\nAyla\nBaileigh\nBrenda\nBrielle\nCarolyn\nCarrington\nCelia\nCindy\nDaniella\nEliana\nElin\nEvangeline\nFatima\nFiona\nGracyn\nHayley\nJacie\nJamaya\nJamiyah\nJaylen\nJaylynn\nJenny\nJoslyn\nKaley\nKamiya\nKarleigh\nKarma\nKatlyn\nKhloie\nKinzlee\nKynlee\nLailah\nLeighton\nLena\nLilliana\nMarleigh\nNicole\nPaislee\nPhoenix\nRosalie\nSanaa\nSaniyah\nShania\nSienna\nSierra\nTessa\nVivienne\nXimena\nAaniyah\nAja\nAlejandra\nAlena\nAlyvia\nAmiracle\nAnahi\nAnastasia\nArmani\nAuburn\nCaitlynn\nCampbell\nCara\nCarsyn\nCasey\nCaydence\nCaylee\nCecilia\nCharity\nCherish\nChristian\nClare\nDeanna\nEmmaleigh\nGiselle\nGuadalupe\nHadlee\nHarmonie\nHayleigh\nIndia\nJacey\nJaci\nJaelyn\nJamiah\nJaniah\nJaylah\nJaylee\nJazlynn\nJolie\nJordin\nJoselyn\nJulianne\nJuliet\nJuliette\nKaileigh\nKairi\nKali\nKarly\nKaycee\nKaylen\nKinslee\nKira\nKloe\nKrimson\nKylah\nLacey\nLaken\nLibby\nLinda\nMakenzi\nMakinley\nMarianna\nMckayla\nMckinlee\nMonica\nMoriah\nMyla\nNancy\nOlive\nPenelope\nRileigh\nSamiya\nSarai\nSariyah\nWendy\nAdrienne\nAlonna\nAlyson\nAmaria\nAmariah\nAnabella\nAnnabel\nAnnaleigh\nAnya\nArielle\nAsiah\nBentlee\nBrantley\nBrenna\nBria\nBrisa\nCailyn\nCalleigh\nCarson\nCassie\nCayden\nCheyanne\nChristine\nClarissa\nDarby\nDemetria\nDylan\nElaine\nElle\nEllis\nEmilia\nEmilie\nEmmaline\nEmmie\nEvelynn\nGrayson\nHadassah\nHanna\nHarlie\nJakeria\nJaliah\nJameria\nJamie\nJamiracle\nJamyah\nJana\nJanasia\nJessa\nJorja\nJoslynn\nKaidence\nKaleah\nKamari\nKarli\nKathleen\nKelis\nKenleigh\nKiana\nKiara\nKori\nKristina\nLaci\nLayken\nLizbeth\nLuna\nMalayah\nMaliah\nMartha\nMiah\nMillie\nNakiya\nNariah\nNina\nOlyvia\nPaityn\nPatricia\nPreslie\nRaelynn\nRayleigh\nRiver\nRowan\nRyley\nSamiyah\nSavanah\nSelah\nShaniyah\nSharon\nShaylee\nSherlyn\nSkye\nSkyler\nTabitha\nTalia\nTamiyah\nTamya\nTaniyah\nTeagan\nWhitney\nYareli\nZaniyah\nAbbey\nAbbi\nAbigale\nAbigayle\nAbrielle\nAdelaide\nAlaya\nAlecia\nAlisha\nAlisson\nAllyssa\nAmberly\nAmerica\nAngelia\nAngie\nAnniston\nAnslee\nApril\nAriyanna\nAryanna\nAshleigh\nAshton\nAshtyn\nAspen\nAthena\nAugust\nAveri\nAzariah\nBayleigh\nBaylie\nBelinda\nBianca\nBonnie\nBrittney\nBrookley\nCaelyn\nCamilla\nCandice\nCarolina\nCarrie\nCarter\nCatalina\nChristiana\nCloe\nCollins\nConstance\nCorinne\nDanica\nDaphne\nDeasia\nDevyn\nElisa\nElisabeth\nElliott\nEllison\nElsie\nEmmagrace\nEssence\nEsther\nEstrella\nEvelin\nGloria\nGreenlee\nHeidy\nHillary\nHollie\nItzel\nIvana\nJaila\nJaley\nJalyn\nJamyia\nJanae\nJaycie\nJazlyn\nJenesis\nJesse\nJocelynn\nJoy\nKaci\nKaila\nKalyn\nKamille\nKarla\nKarmyn\nKassandra\nKaya\nKaylyn\nKelsi\nKennadi\nKeyla\nKinsey\nKinsleigh\nKiona\nKodi\nKrymson\nKrystal\nKya\nKynadi\nLilian\nLindsay\nLogan\nLondynn\nLorelei\nLynlee\nMacee\nMaddie\nMadelynn\nMae\nMagdalena\nMagnolia\nMakiya\nMaliya\nMarie\nMarli\nMeghan\nMicaela\nMina\nNala\nNataly\nNayeli\nOctavia\nPaulina\nPreslee\nPresleigh\nPrincess\nPriscila\nPyper\nRaquel\nRegina\nRhyan\nRobyn\nRosa\nRosemary\nRyan\nSabrina\nSamara\nSawyer\nSerena\nSkyla\nSloane\nStormie\nSunny\nSusanna\nSydnee\nTamara\nTanya\nTatianna\nTegan\nTerri\nTori\nTriniti\nTykeria\nWilla\nZakiya\nZakiyah\nZiyah\nEmma\nAva\nMadison\nOlivia\nIsabella\nAddison\nElizabeth\nChloe\nAbigail\nAnna\nEmily\nElla\nSophia\nAubrey\nMary\nBrooklyn\nHannah\nKaylee\nKhloe\nAlyssa\nLily\nSarah\nZoey\nAlexis\nAvery\nHarper\nAmelia\nLillian\nSavannah\nSophie\nTaylor\nNevaeh\nCaroline\nLayla\nZoe\nAaliyah\nPeyton\nLondon\nTrinity\nMakayla\nAubree\nNatalie\nMorgan\nAudrey\nBailey\nKennedy\nJordyn\nKylie\nMakenzie\nAllison\nSerenity\nGracie\nMariah\nMckenzie\nRiley\nLauren\nMia\nLeah\nMackenzie\nBella\nClaire\nSamantha\nCharlotte\nDestiny\nKylee\nSara\nEvelyn\nAllie\nAutumn\nKyleigh\nKatelyn\nLydia\nRyleigh\nKatherine\nMolly\nMaria\nKinsley\nMadelyn\nSydney\nLucy\nVictoria\nPiper\nRylee\nBrianna\nEllie\nGrace\nLondyn\nBrooklynn\nKendall\nPaisley\nAshley\nHailey\nReagan\nStella\nJada\nKaitlyn\nAddyson\nGabriella\nKayleigh\nShelby\nGabrielle\nMaci\nHayden\nJasmine\nMaggie\nKinley\nEva\nJulia\nFaith\nJayla\nLilly\nMadeline\nCallie\nKelsey\nPayton\nRachel\nAngel\nAriana\nKimberly\nRebecca\nAnnabelle\nCatherine\nHaley\nKayla\nScarlett\nAlexa\nAlivia\nHadley\nLaila\nBaylee\nSkylar\nAliyah\nEden\nJade\nMargaret\nSummer\nAlaina\nEleanor\nMarley\nAdalyn\nAdalynn\nAlice\nAmber\nAniyah\nAshlyn\nCamille\nJaliyah\nJennifer\nJessica\nJordan\nWillow\nArianna\nPresley\nAndrea\nJakayla\nJenna\nLyla\nRuby\nSadie\nAmy\nAubrie\nKamryn\nMadilyn\nMelanie\nParis\nReese\nAbby\nAnsley\nBrooke\nErin\nKathryn\nMacie\nMaliyah\nNaomi\nSofia\nAlana\nAshlynn\nBlakely\nCarly\nHarmony\nKensley\nJourney\nKatie\nMya\nAnne\nBrylee\nClara\nEmerson\nJaycee\nLaura\nLila\nAdriana\nAlexandria\nDanielle\nJaniyah\nJayden\nKennedi\nViolet\nAlexandra\nGenesis\nIsabelle\nKate\nLola\nMallory\nMiracle\nAlicia\nAna\nCadence\nDakota\nIzabella\nJayda\nKaydence\nLexie\nVivian\nAbbigail\nBriley\nCamryn\nCora\nCrimson\nErica\nJillian\nKyla\nMadalyn\nAddisyn\nAmiyah\nBreanna\nJocelyn\nKadence\nKenzie\nKiley\nLillie\nMckinley\nStephanie\nAleah\nAriel\nCassidy\nElise\nGracelyn\nHarley\nHope\nIsabel\nJuliana\nKassidy\nKayden\nLiliana\nMadilynn\nMarlee\nMichelle\nRaegan\nTaliyah\nAlayna\nAllyson\nAnn\nAnnabella\nCarlee\nCarmen\nCaylee\nCharleigh\nCheyenne\nDiana\nEmery\nHaylee\nJustice\nKendra\nLaney\nMariyah\nParker\nSelena\nVanessa\nAdelyn\nAniya\nChelsea\nHeaven\nJosie\nKailyn\nKaleigh\nKatelynn\nKaylin\nKelly\nLexi\nMadisyn\nMadyson\nMckenna\nMegan\nMelody\nNadia\nValeria\nZion\nAshton\nAyanna\nChristina\nDestinee\nElena\nEliza\nEvie\nHelen\nJulie\nKarlee\nKynlee\nMacy\nMarleigh\nMattie\nMikayla\nNyla\nRose\nTatum\nTiana\nAddie\nAlyson\nAmiya\nArabella\nAurora\nBailee\nBayleigh\nBraelyn\nCaitlyn\nCamila\nCharlee\nDaniela\nEllen\nEmory\nHaleigh\nHayleigh\nIvy\nJaniya\nKailey\nKeira\nKimora\nKourtney\nLacey\nLauryn\nLyric\nMakenna\nMarissa\nNora\nPaige\nRaven\nVirginia\nAdelaide\nAria\nDelilah\nGabriela\nGeorgia\nGracelynn\nHeidi\nKarsyn\nMadelynn\nMaya\nMollie\nSabrina\nAda\nAdrianna\nAdyson\nAlly\nBentley\nBrielle\nBrittany\nCali\nDaisy\nFarrah\nHarmoni\nJamiyah\nJosephine\nKaliyah\nKara\nLilah\nMadalynn\nMalaysia\nNicole\nRaelyn\nTiffany\nZaniya\nZaniyah\nAbbie\nAlexia\nAmari\nAnnie\nBraylee\nCamilla\nCecilia\nCharlie\nClaudia\nDulce\nEmilee\nHallie\nImani\nIsla\nJacey\nJaida\nJameria\nJamie\nJamya\nJaylee\nKaelyn\nKallie\nKarley\nKenley\nKyndal\nKyra\nLorelei\nMaddison\nMalia\nMelissa\nMila\nMiley\nMiranda\nNia\nRayleigh\nRylie\nSavanna\nShaniya\nTaraji\nTenley\nYaretzi\nZariyah\nAlanna\nAlison\nAmaya\nAriyana\nAzaria\nBlair\nBriana\nBristol\nBrynlee\nCarleigh\nCharity\nChasity\nChristian\nChyna\nDarby\nEllison\nEmmalee\nHaven\nIndia\nJacqueline\nJamiya\nJaylyn\nJessie\nJoanna\nJoselyn\nJulianna\nJuliet\nKailee\nKaleah\nKali\nKamiya\nKaylen\nKyndall\nLana\nLeighton\nLeslie\nLucia\nMaleah\nMeredith\nMichaela\nNatalia\nNylah\nRaylee\nRebekah\nSamiyah\nSarai\nTeagan\nVeronica\nZariah\nZoie\nAddilyn\nAdilyn\nAngelina\nAnsleigh\nAveri\nBrenda\nBryleigh\nCiara\nCourtney\nDelaney\nDiamond\nDixie\nElliot\nEloise\nGuadalupe\nHanna\nHayley\nJaelyn\nJazlyn\nJazmine\nJewel\nKamiyah\nKaren\nKarleigh\nKarli\nKarlie\nKathleen\nKaylynn\nKrimson\nKynleigh\nLainey\nLaken\nMillie\nMonica\nMoriah\nNatalee\nNina\nRileigh\nSaniyah\nScarlet\nSkyler\nTaniya\nTessa\nTinsley\nAdeline\nAinsley\nAlaysia\nAli\nAlli\nAmanda\nAmiracle\nAngelica\nAsia\nAyla\nAzariah\nBaileigh\nBethany\nBianca\nBrandi\nCampbell\nCassie\nCharli\nCherish\nCheyanne\nDanika\nDeanna\nFernanda\nFinley\nFrances\nGenevieve\nGiselle\nHenley\nHolly\nIris\nJane\nJasmin\nJaylen\nJoy\nKaylie\nKenna\nKenya\nKinslee\nKori\nLailah\nLibby\nLilliana\nMakenzi\nMarilyn\nMarlie\nMicah\nPaislee\nPatricia\nPenelope\nPreslee\nRihanna\nRowan\nRuth\nSamiya\nSasha\nSelah\nShiloh\nSierra\nTaylin\nVera\nYoselin\nZaria\nZykeria\nAiyana\nAlex\nAlexus\nAlondra\nAnaya\nAngela\nAnnaleigh\nAnnalise\nAnniston\nArielle\nAriyanna\nArmani\nAthena\nBelinda\nBentlee\nBreasia\nBria\nBriella\nBritney\nBrittney\nBrynn\nCaitlynn\nCara\nCarlie\nCarolyn\nCollins\nCrystal\nCynthia\nDanica\nDayana\nElaina\nElisabeth\nEmaleigh\nEmmalyn\nEnsley\nGianna\nHarleigh\nHillary\nJaci\nJakiyah\nJaleah\nJalynn\nJimena\nJohanna\nJordynn\nJoslyn\nJournee\nKaitlin\nKaitlynn\nKamari\nKameron\nKamille\nKamya\nKarla\nKarmen\nKasey\nKaylei\nKelis\nKenslee\nKinsey\nKira\nLandry\nLaylah\nLeila\nLena\nLizbeth\nLogan\nLuna\nMacey\nMadeleine\nMakynzie\nMariana\nNahla\nPerla\nPhoenix\nQuinn\nRaelynn\nReece\nSheila\nSidney\nSusan\nTaleah\nTalia\nTameria\nTamia\nTayler\nTeresa\nTyler\nVivienne\nWinter\nZakiyah\nAbagail\nAddalyn\nAiden\nAja\nAlasia\nAlaysha\nAlisha\nAliya\nAlyvia\nAmani\nAmariah\nAmia\nAmya\nAnabelle\nAnahi\nAngie\nAnnabel\nAnnsley\nAshanti\nBaylie\nBerkley\nBlakeley\nBraelynn\nBridget\nBrinlee\nBrinley\nBrookelyn\nBrynley\nCaitlin\nCalleigh\nCarley\nCatarina\nCaydence\nChandler\nCharley\nClare\nDemetria\nDesiree\nDestini\nEdith\nElin\nElyse\nEmber\nEmelia\nEmeri\nEmilie\nEstrella\nFatima\nFelicity\nHarlee\nHarmonie\nHazel\nHeather\nJadah\nJaelynn\nJaiden\nJaidyn\nJanae\nJaylin\nJaylynn\nJazlynn\nJemma\nJoi\nKaiden\nKaley\nKalia\nKamaria\nKaris\nKatlyn\nKendyl\nKensington\nKiara\nKimber\nKloe\nKya\nKynslee\nLaurel\nLeanna\nLilian\nLindsey\nLondynn\nLouise\nLucille\nLynlee\nMakaylah\nMakiyah\nMallie\nMarie\nMariya\nMartha\nMelisa\nMercy\nMyla\nMylee\nNatasha\nNeveah\nNorah\nNyasia\nPhoebe\nPrincess\nRyann\nSamara\nSandra\nSaylor\nTamiyah\nTia\nValentina\nValerie\nWhitley\nXimena\nYasmin\nAbbey\nAdelynn\nAdley\nAiyanna\nAlaya\nAlayah\nAlina\nAllyssa\nAlonna\nAnderson\nAnnaclaire\nAnslee\nAnyah\nApril\nAriah\nAuburn\nAverie\nBrandy\nBrenna\nBrilee\nBritton\nBrylie\nBrynleigh\nCamdyn\nCarolina\nCarsyn\nCasey\nChelsey\nChloey\nConstance\nDahlia\nDana\nDani\nDanna\nDesirae\nEliana\nElliana\nElsie\nEmmaclaire\nEmmagrace\nEmmy\nEryn\nGia\nGloria\nHalle\nHarlie\nHolland\nHollie\nHonor\nIsabela\nItzel\nIvey\nIyanna\nJacelyn\nJacie\nJadyn\nJakyla\nJaleigh\nJamaria\nJamiah\nJamiracle\nJanay\nJaniah\nJariyah\nJaycie\nJayleigh\nJaziyah\nJazmin\nJocelynn\nJohnna\nJuana\nJudith\nJuliette\nKaci\nKaidence\nKaidyn\nKaniyah\nKarmyn\nKarson\nKatharine\nKaylyn\nKeeley\nKelsie\nKenadi\nKendal\nKenlee\nKenleigh\nKierra\nKirsten\nKylah\nKyrie\nLacy\nLia\nLinley\nLorelai\nLynleigh\nMakaila\nMakinley\nMakiya\nMakynlee\nMarkayla\nMaylee\nMelina\nMemphis\nMiriam\nNancy\nNayeli\nNova\nPatience\nPromise\nRaniyah\nReginae\nRobyn\nRosemary\nRoxana\nRylan\nSailor\nShannon\nSharon\nShyla\nSofie\nStormy\nTaliah\nTamara\nTamya\nTanner\nTara\nTegan\nTionna\nTori\nValencia\nWendy\nWhitney\nZariya\nEmma\nAva\nOlivia\nIsabella\nMadison\nAbigail\nElizabeth\nElla\nChloe\nHarper\nSophia\nAnna\nAddison\nBrooklyn\nEmily\nLily\nAubrey\nMary\nAvery\nLillian\nZoey\nHannah\nKhloe\nAmelia\nLayla\nNevaeh\nSarah\nLondon\nKaylee\nCaroline\nTaylor\nAubree\nPaisley\nAlyssa\nNatalie\nMakayla\nMakenzie\nMariah\nZoe\nSavannah\nMadelyn\nVictoria\nAlexis\nKennedy\nMckenzie\nTrinity\nCharlotte\nKylie\nSerenity\nMia\nRiley\nAllison\nRyleigh\nBella\nEvelyn\nLucy\nSkylar\nAudrey\nPeyton\nAaliyah\nKinsley\nMorgan\nBailey\nKatherine\nLauren\nReagan\nSophie\nAutumn\nLondyn\nGrace\nLilly\nAllie\nPiper\nSadie\nSara\nEllie\nGabriella\nKatelyn\nHadley\nLydia\nMolly\nClaire\nJordyn\nKaitlyn\nKylee\nGabrielle\nGenesis\nSydney\nAnnabelle\nKyleigh\nAshley\nMaci\nPresley\nDestiny\nHaley\nJada\nLeah\nMaggie\nRylee\nScarlett\nGracie\nMackenzie\nPayton\nBrianna\nBrooklynn\nAdalyn\nAngel\nArianna\nEden\nJulia\nMaria\nParis\nFaith\nHailey\nKayleigh\nMadeline\nLyla\nMargaret\nHarmony\nJayla\nKensley\nStella\nAlaina\nAniyah\nHayden\nJasmine\nMalaysia\nSamantha\nSofia\nAliyah\nMiracle\nNaomi\nSummer\nCamille\nEva\nKendall\nRebecca\nAria\nWillow\nAddyson\nCatherine\nEmery\nJaliyah\nKennedi\nKimberly\nAriana\nCallie\nEleanor\nMadilyn\nMelanie\nShelby\nKayla\nAlice\nAubrie\nBaylee\nJade\nLaura\nRachel\nBlakely\nErin\nKaydence\nRuby\nAbby\nAlexa\nClara\nDaisy\nKelsey\nLaila\nLola\nReese\nAlexandra\nAnsley\nAshlyn\nBrylee\nDakota\nGeorgia\nKamryn\nKatie\nKinley\nLila\nMakenna\nVivian\nAmber\nCharlee\nCrimson\nHeaven\nJakayla\nJessica\nJocelyn\nJosie\nAdalynn\nAdrianna\nAllyson\nAriel\nBrooke\nCamila\nCharleigh\nKathryn\nMaliyah\nMarley\nNora\nRaegan\nAlexandria\nEliza\nIsabelle\nPaige\nAlana\nHallie\nJenna\nJordan\nLexi\nMaddison\nViolet\nAddisyn\nAshlynn\nBreanna\nCadence\nJaycee\nParker\nAniya\nBraylee\nCarmen\nCaylee\nDelilah\nHarley\nHaven\nHaylee\nIzabella\nJennifer\nKailyn\nLillie\nMollie\nRaelyn\nAlivia\nAmiyah\nAna\nAndrea\nAnn\nAnne\nChelsea\nCollins\nCora\nEliana\nFinley\nJillian\nMacy\nMadisyn\nMallory\nMila\nNyla\nAdeline\nAlly\nBrielle\nEmory\nHaleigh\nHeidi\nMacie\nMarlee\nMelody\nTiana\nZariah\nArmani\nAurora\nBailee\nBayleigh\nBraelyn\nBriley\nElaina\nElise\nHope\nJamiyah\nJayden\nJourney\nJulie\nKarsyn\nMaya\nMegan\nPenelope\nTatum\nTeagan\nTessa\nAda\nAdriana\nAlayna\nAlison\nAyla\nBriana\nBristol\nBrynlee\nDixie\nEmilee\nImani\nIvy\nJaniya\nJayda\nJuliana\nKadence\nKaliyah\nKallie\nKassidy\nKaylen\nKimora\nLiliana\nMichelle\nMya\nRaven\nRebekah\nSkyler\nVanessa\nZariyah\nZoie\nAbbigail\nAdelaide\nAdelyn\nAmari\nArabella\nBethany\nDaniela\nEmerson\nGracelyn\nKenley\nKenzie\nKira\nKyla\nKynleigh\nLauryn\nMikayla\nTaliyah\nWhitney\nAlaysia\nAngelina\nAnnie\nBraelynn\nBrinley\nCali\nDiana\nEvie\nFarrah\nIsabel\nJaniyah\nKali\nKarlee\nKarmen\nKate\nKeira\nKennadi\nKynlee\nLyric\nMadalyn\nMaleah\nMariyah\nNorah\nNylah\nSavanna\nVirginia\nZion\nAinsley\nAlayah\nAnnabella\nCaitlyn\nCarleigh\nCarley\nCarly\nCassidy\nCharity\nCharlie\nDanielle\nEmmalyn\nErica\nGracelynn\nJazmine\nKarmyn\nKaylyn\nLilah\nLucille\nMadelynn\nMarissa\nMattie\nMckinley\nMiley\nMillie\nNatalia\nNicole\nSelena\nAddie\nAlondra\nAmiya\nAngela\nBrittany\nBryleigh\nCarlee\nCarlie\nCecilia\nElisa\nJessie\nJoanna\nJustice\nLeighton\nLeslie\nMckenna\nMyla\nNadia\nRylie\nTaraji\nTenley\nTori\nAleah\nAlexia\nAmani\nArielle\nAzaria\nCameron\nElena\nEloise\nHelen\nJamie\nJoy\nKaelyn\nKamari\nKayden\nKaylie\nKaylin\nKendra\nKinleigh\nLexie\nMadilynn\nMadyson\nMakiyah\nPaislee\nPhoenix\nRaelynn\nRosalie\nRylan\nSandra\nSawyer\nStephanie\nTalia\nValeria\nZaniyah\nAbrielle\nAddilyn\nAmanda\nAmy\nAnnaleigh\nAzariah\nCara\nCheyenne\nChristina\nChyna\nCourtney\nDestinee\nHayleigh\nIndia\nJacqueline\nJamiya\nJamya\nJaylynn\nKaleigh\nKamille\nKara\nKaren\nKaris\nLaney\nLindsey\nLorelei\nMalia\nMelissa\nMeredith\nPhoebe\nRosemary\nSaniyah\nValerie\nAleigha\nAliya\nAylin\nBentley\nBlair\nCamryn\nCarolyn\nChristiana\nCiara\nEllis\nGianna\nHanna\nJaleah\nJaylee\nJulianna\nJuliet\nJuliette\nKailey\nKarley\nKarlie\nKatelynn\nKelly\nKenya\nKimber\nKinslee\nKourtney\nKyra\nLainey\nLanie\nLeilani\nLena\nLibby\nLilliana\nLondynn\nLorelai\nMiranda\nPatricia\nSamiyah\nScarlet\nSharon\nSierra\nSkyla\nTiffany\nZaria\nAlaya\nAlyse\nAmaria\nAnastasia\nAverie\nBrayleigh\nBrenda\nBrynleigh\nCaitlin\nCamilla\nCampbell\nCarla\nCheyanne\nCynthia\nEvangeline\nFiona\nGabriela\nHarleigh\nHarmoni\nHartley\nHayley\nHazel\nHolly\nIsla\nJane\nJournee\nKamora\nKaniyah\nKarleigh\nKarter\nKathleen\nKenzleigh\nKiley\nKyndall\nLacey\nLacy\nLilyann\nMariana\nNancy\nNia\nRaylee\nRose\nRuth\nSabrina\nSariyah\nSasha\nSaylor\nSkye\nTamara\nZaniya\nZuri\nAdley\nAlanna\nAleena\nAlexus\nAlyson\nAmaya\nAnaya\nAngelique\nAnnalee\nApril\nAriyana\nArmoni\nAshton\nAvalyn\nBlakeley\nChandler\nDanica\nDestini\nElliott\nElsie\nElyse\nEmersyn\nEmilia\nEsmeralda\nEvelynn\nGenevieve\nHaylie\nIris\nJaden\nJaelyn\nJamaya\nJazlyn\nJosephine\nKailee\nKailynn\nKaleah\nKenleigh\nLaci\nLaken\nLaurel\nLeila\nLiberty\nLitzy\nLivia\nLuna\nMadalynn\nMaddie\nMarilyn\nMichaela\nMiriam\nNayeli\nNoelle\nNova\nOlive\nPaisleigh\nPatience\nPreslee\nPresleigh\nRihanna\nRileigh\nRiver\nVivienne\nWendy\nAbbie\nAbril\nAdele\nAdelynn\nAiyana\nAlannah\nAli\nAlianna\nAlicia\nAlli\nAmiah\nAmirah\nAnabelle\nAnnsley\nAryanna\nAshanti\nAsia\nAspen\nAubri\nAubriana\nAubrianna\nAuburn\nAyana\nBrantley\nBrenna\nBrennan\nBrookelyn\nBrynn\nCarli\nCarolina\nCelina\nCharley\nCharli\nChristian\nClaudia\nDalia\nDeasia\nDella\nDenise\nElisabeth\nEmalyn\nEmmalynn\nEnsley\nEvalyn\nFallon\nGloria\nHarlie\nHarmonie\nHillary\nIla\nIvory\nIzzabella\nJaci\nJaida\nJamiracle\nJanyla\nJaylah\nJayleigh\nJazlynn\nJazmin\nJordynn\nJoselyn\nJourni\nJuana\nKaitlin\nKaitlynn\nKamaria\nKarli\nKathy\nKaylynn\nKelis\nKelsi\nKelsie\nKendal\nKenlee\nKiara\nKristen\nKylah\nKyndal\nKynslee\nKynsley\nLela\nLilian\nLilith\nLisa\nLouise\nMacey\nMakaila\nMalaya\nMaleia\nMayra\nMckayla\nMonica\nNina\nOakley\nRowan\nRyan\nSally\nSamara\nSaniya\nSelah\nShaniya\nSherlyn\nSylvia\nTia\nWhitley\nXimena\nYoselin\nAddilynn\nAdilynn\nAlasia\nAlessandra\nAlissa\nAlyvia\nAmara\nAmerica\nAmia\nAnahi\nAnnabell\nAnnagrace\nAnniston\nAnslee\nAnsleigh\nAri\nAshlee\nAspyn\nAthena\nAubreigh\nAudrianna\nAugust\nAyanna\nAyden\nBelinda\nBlakelyn\nBrinlee\nBrylie\nCarsyn\nCataleya\nCayleigh\nChanel\nChanning\nCherish\nChloey\nChyanne\nConstance\nCori\nDemi\nDesiree\nDiamond\nDylan\nEdith\nEllen\nEmmalee\nEriel\nEsther\nEverleigh\nGiselle\nHadassah\nHailee\nHeavenly\nHeidy\nJacie\nJakiya\nJakiyah\nJamiah\nJanae\nJaylen\nJaylin\nJazzlyn\nJenny\nJewel\nJohanna\nJune\nKalli\nKamoria\nKarly\nKarma\nKeagan\nKeasia\nKensleigh\nKiersten\nKirsten\nKiyah\nKloey\nKrimson\nKrymson\nKyli\nLailah\nLakelynn\nLeanna\nLilia\nLillyan\nLilyana\nLizbeth\nLogan\nLucia\nLynlee\nMakinley\nMalayshia\nMaliah\nMarie\nMarleigh\nMeadow\nMeagan\nMeghan\nMercy\nNala\nNatalee\nNatasha\nNila\nNivea\nNoemi\nPamela\nPreslie\nRaleigh\nRayleigh\nRayne\nRhianna\nRobin\nSamaria\nSamiya\nShaniyah\nShayla\nShiloh\nSidney\nSienna\nSydnee\nTaleah\nTamia\nTayler\nTaylin\nTerra\nToni\nTreasure\nTyasia\nUnique\nViviana\nYareli\nZaylee\nEmma\nAva\nOlivia\nMadison\nIsabella\nSophia\nElizabeth\nBrooklyn\nChloe\nHarper\nElla\nAbigail\nAnna\nAddison\nAvery\nEmily\nZoey\nAubrey\nHannah\nMary\nCaroline\nAmelia\nLayla\nPaisley\nSarah\nLillian\nSadie\nKhloe\nTaylor\nKylie\nLily\nAubree\nKaylee\nLondon\nPeyton\nCharlotte\nEvelyn\nNatalie\nAaliyah\nKennedy\nLondyn\nSerenity\nAlyssa\nRiley\nNevaeh\nLauren\nAlexis\nKinsley\nMakayla\nKatherine\nMorgan\nAllison\nAutumn\nPiper\nMckenzie\nSkylar\nAudrey\nMariah\nSavannah\nBella\nMia\nTrinity\nGabriella\nBailey\nMadelyn\nRyleigh\nLeah\nVictoria\nKyleigh\nAllie\nAria\nClaire\nLydia\nZoe\nLucy\nMolly\nMakenzie\nSofia\nEllie\nPayton\nScarlett\nBrooklynn\nReagan\nGrace\nHarmony\nSophie\nAnnabelle\nHailey\nAriana\nArianna\nJordyn\nKatelyn\nKensley\nMackenzie\nParis\nSamantha\nSydney\nGenesis\nMargaret\nDestiny\nKylee\nSara\nAriel\nGabrielle\nMadeline\nRylee\nBrianna\nHadley\nJulia\nLilly\nMaria\nStella\nFaith\nNaomi\nPresley\nWillow\nPenelope\nKimberly\nMaci\nAdalynn\nHayden\nAlexandria\nAlivia\nJayla\nKayleigh\nMaggie\nCatherine\nLaila\nMalaysia\nAlaina\nKaydence\nKendall\nBrooke\nKennedi\nMarley\nLyla\nRachel\nRuby\nBaylee\nEva\nKaitlyn\nSummer\nAdalyn\nAnsley\nAshley\nLila\nNicole\nAngel\nAnne\nBrynlee\nCharlee\nEden\nGracie\nKayla\nKelsey\nNora\nHaley\nNorah\nAlice\nAna\nBrylee\nCallie\nJosie\nKinley\nShelby\nTatum\nViolet\nVivian\nAndrea\nBlakely\nGracelyn\nIsabelle\nIvy\nKathryn\nKatie\nVanessa\nAniyah\nClara\nJada\nJocelyn\nKaliyah\nLyric\nAlana\nAlexa\nArabella\nCora\nEmery\nJennifer\nMallory\nMya\nCharlie\nRebecca\nAliyah\nEmory\nErin\nJaniyah\nJasmine\nLaura\nMarlee\nMckinley\nAddyson\nAlayna\nAubrie\nCamille\nCharleigh\nJade\nLexi\nMacie\nMelanie\nNyla\nRaegan\nReese\nAbby\nAdrianna\nAmiyah\nAnn\nAshlyn\nKadence\nKailyn\nMaliyah\nAddisyn\nAdeline\nAngelina\nCadence\nCali\nCamila\nCarmen\nCrimson\nEleanor\nEliza\nKate\nLola\nMakenna\nBraylee\nHaleigh\nHaylee\nJane\nLillie\nMadalyn\nMiracle\nRaelynn\nAdelyn\nAshlynn\nEmmalyn\nGeorgia\nHallie\nHarley\nIzabella\nJaliyah\nLiliana\nMadilyn\nMelody\nRaelyn\nStephanie\nAllyson\nAmari\nAurora\nBristol\nCaitlyn\nElena\nEmilee\nHaven\nJenna\nJessica\nJordan\nKenzie\nMacy\nMariyah\nMaya\nMckenna\nMikayla\nPaige\nPaislee\nSelena\nAleah\nBailee\nBryleigh\nCheyenne\nEmerson\nJustice\nKaelyn\nKaylin\nLacey\nLaney\nMadisyn\nParker\nRowan\nAda\nAlly\nAmy\nBriley\nCarleigh\nElise\nGianna\nJakayla\nJamiyah\nJournee\nKarleigh\nKarlie\nKarsyn\nKatelynn\nLauryn\nMattie\nMollie\nRebekah\nTeagan\nVirginia\nZoie\nAmiya\nAngela\nAnnie\nCollins\nDanielle\nEliana\nFinley\nHenley\nIsabel\nJayden\nJazmine\nJourney\nJulianna\nKamryn\nKeira\nKynlee\nLeslie\nMadalynn\nMaddison\nMegan\nNylah\nRaven\nRose\nTaliyah\nAdriana\nAlexandra\nAverie\nBrittany\nCamilla\nCarlie\nCassidy\nDakota\nDelilah\nEvie\nHeidi\nImani\nIsla\nJamiya\nJayda\nKarlee\nKenley\nKyndall\nMadilynn\nMarleigh\nMillie\nNatalia\nNoelle\nTiana\nAdelynn\nAniya\nAnnabella\nAriyah\nArmani\nAsia\nBayleigh\nBrielle\nCarly\nChristina\nDaniela\nDestinee\nDiana\nErica\nFarrah\nFrances\nHadleigh\nHazel\nJacqueline\nJaida\nJaycee\nJuliana\nKailey\nKaren\nLeighton\nLeilani\nLilliana\nMadelynn\nMaleah\nMalia\nMichaela\nMila\nNadia\nXimena\nZariyah\nZion\nAddie\nAdelaide\nAlexia\nAmani\nBethany\nBriella\nCamryn\nCharley\nCharli\nDaisy\nElaina\nFallon\nHanna\nHeaven\nHope\nJaycie\nJessie\nJulie\nJuliet\nKaleigh\nKaylen\nKendra\nKiley\nKimora\nKyla\nKyra\nMakiyah\nMeagan\nMiley\nRileigh\nScarlet\nSelah\nTessa\nVera\nZaniyah\nZuri\nAbbie\nAlison\nAlyson\nAmaya\nAnastasia\nAnnalee\nAspen\nAthena\nAzaria\nBrandi\nBreanna\nCecilia\nChasity\nCherish\nCourtney\nDixie\nElsie\nGemma\nHarlee\nHarmoni\nKali\nKayden\nKristen\nLeila\nLondynn\nLuna\nMarlie\nMelissa\nMichelle\nMiriam\nNia\nNina\nOlive\nSawyer\nSaylor\nSkyler\nTinsley\nTori\nAbbigail\nAlanna\nAlaya\nAlayah\nAlicia\nAmanda\nArielle\nArya\nBaileigh\nBraelyn\nBrylie\nCarley\nChandler\nChelsea\nDallas\nDiamond\nElisabeth\nElliana\nEmilia\nEmmaline\nEmmie\nGracelynn\nHalle\nHelen\nIndia\nIvey\nJacelyn\nJaleah\nJamie\nJaniya\nJoanna\nJosephine\nJoy\nJuana\nKaitlynn\nKaris\nKarmen\nKassidy\nKaylie\nKelly\nKinlee\nKira\nKourtney\nKristina\nLucille\nMae\nMeredith\nMiranda\nMoriah\nMyla\nRylie\nSamara\nSariah\nSidney\nSierra\nStormy\nTaniyah\nTaylin\nValerie\nAbbey\nAinsley\nAlyvia\nAmber\nAngie\nAnniston\nAnslee\nAyla\nBentley\nCarlee\nCarolina\nCarolyn\nCaylee\nCharity\nChyna\nDaniella\nDarby\nDeasia\nDestini\nDorothy\nEdith\nEllison\nEmersyn\nEmmerson\nEmmy\nEverleigh\nFiona\nHattie\nJacey\nJaylah\nJillian\nJune\nKaidence\nKamiya\nKara\nKarmyn\nKiara\nKinleigh\nKorie\nKynzlee\nLaken\nLena\nLilah\nLogan\nLorelei\nMallie\nMarissa\nNatalee\nNayeli\nPhoenix\nRailyn\nRayleigh\nRosalie\nRuth\nSavanna\nSerena\nShiloh\nSkyla\nSusan\nTamia\nTemperance\nTiffany\nZaria\nZariah\nAbagail\nAddilyn\nAdilyn\nAlaysia\nAlia\nAlissa\nAmia\nAmiracle\nAmya\nAngelica\nAnnabel\nAnnaleigh\nAnnalise\nAnnsley\nAnsleigh\nArmoni\nAshanti\nAuburn\nBrenda\nBriana\nBrynn\nCampbell\nCara\nCarrington\nCarter\nCataleya\nChristian\nCynthia\nDeanna\nDylan\nElyse\nEmilie\nEmmaleigh\nEssence\nEstella\nGenevieve\nGiselle\nHadlee\nHarmonie\nHartley\nHayleigh\nHayley\nIris\nJamya\nJessa\nJohanna\nKaelynn\nKallie\nKamille\nKarley\nKarma\nKenzlee\nKenzley\nKhloie\nKinslee\nLailah\nLilian\nLindsey\nMadeleine\nMaliah\nNola\nPaityn\nPatience\nPrincess\nPriscilla\nRaleigh\nRaquel\nRaylee\nRosa\nRylan\nSabrina\nSaniya\nSaniyah\nTalia\nTaraji\nTeresa\nTianna\nWinter\nZaniya\nAarna\nAddalynn\nAdley\nAiyana\nAleigha\nAlejandra\nAlena\nAlexus\nAlonna\nAmilia\nAnnabell\nAri\nAvah\nAyana\nBillie\nBraelynn\nBrailey\nBrantley\nBrenna\nBrinley\nBritney\nCaliyah\nCambree\nCassandra\nCassie\nCayleigh\nChelsey\nDamiyah\nDelaney\nElliot\nEllis\nEmerie\nEmry\nEryn\nEsmeralda\nEvangeline\nHadassah\nHarleigh\nHarlie\nHollie\nHolly\nHollyn\nIsabela\nIyana\nJakiyah\nJanae\nJaylee\nJaylin\nJazlynn\nKaleah\nKambree\nKari\nKarla\nKelsie\nKenslee\nKhaliyah\nKirsten\nKylah\nKynleigh\nKyrie\nLaci\nLacy\nLainey\nLakyn\nLaniyah\nLexie\nLiberty\nLinda\nLucia\nLylah\nMaddie\nMarie\nMartha\nMina\nNancy\nNataleigh\nNoemi\nPaula\nPreslee\nRaeleigh\nRaniya\nRayne\nRhylee\nSamiyah\nSandra\nScarlette\nSkye\nStormie\nSutton\nTamya\nTiara\nVivienne\nWynter\nYoselin\nAbbygail\nAddalyn\nAddilynn\nAisha\nAlanah\nAleeah\nAli\nAlondra\nAnnslee\nArden\nAshtyn\nAubri\nAuri\nAvalynn\nAveri\nAyden\nBelinda\nBlakelee\nBlakelyn\nBonnie\nBria\nBrileigh\nBrynnlee\nCaelyn\nCailyn\nCarli\nCeleste\nChanel\nChassidy\nCindy\nClaudia\nColette\nCoraline\nDahlia\nDaleyza\nDeborah\nDemi\nDevyn\nDulce\nEmalyn\nEmber\nEmorie\nEstrella\nEtta\nEvalyn\nEvan\nEvelynn\nFernanda\nHeather\nHolland\nHollis\nHonesty\nItzel\nJakira\nJalia\nJamia\nJanyia\nJewel\nJoi\nJoslyn\nJourni\nJovie\nJuliette\nJulissa\nJurnee\nKaitlin\nKalyn\nKamiyah\nKamora\nKarina\nKatheryn\nKathleen\nKenleigh\nKenya\nKenzi\nKerrington\nKhole\nKimber\nKinsleigh\nKloe\nKrimson\nLacie\nLeanna\nMabry\nMadyson\nMakaylah\nMakinley\nMakynzie\nMalayshia\nMarian\nMarion\nMason\nMckayla\nMercy\nMyleigh\nNariah\nNatalya\nNyasia\nPerla\nPromise\nRayna\nRihanna\nRylynn\nSariyah\nSasha\nSkylynn\nSydnee\nSymone\nTahiry\nTaylyn\nTinley\nTreasure\nTrinidy\nVeda\nWilla\nYaretzi\nZamya\nZendaya\nZykeria\nAva\nEmma\nOlivia\nIsabella\nElizabeth\nMadison\nHarper\nElla\nAbigail\nBrooklyn\nChloe\nAvery\nSophia\nAddison\nAnna\nEmily\nZoey\nSadie\nPaisley\nLillian\nCaroline\nHannah\nAmelia\nMary\nEvelyn\nLily\nKhloe\nAubrey\nCharlotte\nLayla\nSkylar\nSerenity\nKinsley\nAubree\nKaylee\nTaylor\nAaliyah\nHadley\nLondyn\nNevaeh\nJordyn\nLondon\nTrinity\nMorgan\nRyleigh\nKennedy\nPeyton\nNatalie\nSarah\nBella\nBailey\nMakenzie\nKatherine\nKylie\nLauren\nAlyssa\nMia\nPiper\nSavannah\nAutumn\nMadelyn\nRiley\nEllie\nAllison\nAudrey\nScarlett\nZoe\nLeah\nRylee\nAlexis\nMakayla\nNora\nSofia\nMckenzie\nGrace\nLilly\nLydia\nMariah\nAdalyn\nReagan\nStella\nLucy\nMackenzie\nPresley\nAdalynn\nArianna\nAria\nHarmony\nAnnabelle\nKyleigh\nNaomi\nVictoria\nWillow\nAriana\nClara\nPayton\nCallie\nParis\nAriel\nBlakely\nGabriella\nGabrielle\nGenesis\nMargaret\nAllie\nFaith\nSophie\nEva\nGracie\nLaila\nBrooklynn\nKatelyn\nKayleigh\nKennedi\nMolly\nKathryn\nSamantha\nClaire\nMarley\nAlice\nAshley\nDestiny\nPenelope\nAlexandria\nEden\nEmery\nKylee\nMaria\nMelanie\nBrynlee\nGeorgia\nLila\nAlivia\nBrianna\nCatherine\nJade\nEleanor\nJada\nJulia\nKelsey\nKendall\nMalaysia\nMiracle\nVivian\nAlaina\nCharlie\nKaitlyn\nAlana\nAliyah\nCharlee\nMaci\nSydney\nHailey\nHeaven\nIvy\nIzabella\nJaliyah\nRaelynn\nAniyah\nBaylee\nCamille\nCharleigh\nHaley\nHazel\nKensley\nKinley\nMadeline\nNorah\nRuby\nAmiyah\nAngel\nHayden\nJasmine\nJocelyn\nJordan\nJosie\nLyla\nMelody\nSara\nShelby\nSummer\nKaydence\nMckinley\nMya\nTatum\nAddyson\nAnne\nArabella\nIsabelle\nJennifer\nKaliyah\nMadisyn\nMaggie\nRaegan\nAnn\nEmerson\nJourney\nKayla\nKimberly\nLiliana\nLyric\nMarlee\nAna\nAnsley\nAshlynn\nBrylee\nCadence\nElena\nGracelyn\nHarley\nKatie\nLauryn\nLexi\nMadilyn\nParker\nAlayna\nAurora\nCassidy\nGracelynn\nKali\nKamryn\nMadilynn\nAlexa\nBraylee\nCali\nCora\nCrimson\nEliza\nErin\nEverly\nHeidi\nJakayla\nKate\nNylah\nAubrie\nBayleigh\nDakota\nDelilah\nFinley\nMacie\nMaliyah\nMila\nPaige\nPaislee\nRachel\nAbby\nAdriana\nAmy\nBrooke\nEmmalyn\nHadleigh\nHaven\nJayla\nKadence\nRaelyn\nSkyler\nAshlyn\nBailee\nCheyenne\nEmersyn\nHenley\nKassidy\nLeighton\nLola\nMallory\nMckenna\nMelissa\nAddilyn\nAmber\nBrielle\nDanielle\nHope\nJaycee\nJessica\nJuliana\nKaylie\nKenley\nKiley\nLillie\nMacy\nMaddison\nMaya\nRuth\nVera\nZariah\nAyla\nCarmen\nEvie\nJane\nJenna\nJosephine\nMadelynn\nMakenna\nNova\nNyla\nReese\nSaylor\nVirginia\nAmari\nBristol\nChelsea\nDallas\nElaina\nElise\nHallie\nJayda\nJournee\nJulianna\nJustice\nKaidence\nKarsyn\nLilliana\nMikayla\nNatalia\nNoelle\nRylie\nViolet\nZaria\nAdelyn\nAlexandra\nAniya\nArya\nAsia\nAveri\nAverie\nEmory\nHarmoni\nHaylee\nIsabel\nKeira\nKenzie\nMadalyn\nMaleah\nMattie\nRose\nSawyer\nTenley\nAdeline\nAnnalise\nBraelyn\nBrayleigh\nBryleigh\nCamila\nCarleigh\nCarly\nDaisy\nEliana\nGemma\nHarleigh\nHattie\nHelen\nIris\nIsla\nJaniyah\nJaylee\nKarlee\nKayden\nKendra\nKyla\nLaura\nLucille\nLuna\nMalia\nMiriam\nRaylee\nRebecca\nSkye\nWilla\nXimena\nAda\nAdaleigh\nAddie\nAnnie\nBreanna\nCaitlyn\nCara\nCarlie\nDanica\nDixie\nEmilia\nEsmeralda\nHaleigh\nJaida\nJayden\nJoanna\nJune\nKailyn\nKallie\nKarmen\nKaylin\nKira\nMarissa\nNicole\nRebekah\nRosalie\nSkyla\nTeagan\nZariyah\nAleah\nAnnabella\nAnniston\nAnslee\nAriyah\nAspen\nAzariah\nBlakelyn\nBriana\nBrittany\nCaylee\nCharley\nCollins\nDaleyza\nEloise\nElsie\nErica\nFrances\nJamiya\nJaylynn\nJazlyn\nJourni\nJulie\nJuliet\nKailey\nKyndall\nLailah\nMadalynn\nMallie\nMegan\nMichaela\nMillie\nMollie\nQuinn\nRyan\nSierra\nTessa\nVanessa\nWhitley\nZaniyah\nZion\nAddilynn\nAddisyn\nAdelaide\nAdelynn\nAdrianna\nAlina\nAlly\nAndrea\nAnsleigh\nAzaria\nBriella\nBrinley\nCaleigh\nCameron\nChanel\nChristian\nEllen\nEmilee\nJaleah\nJamya\nJayde\nJazmine\nJessa\nJessie\nJoy\nKaelyn\nKailee\nKarlie\nKaylynn\nKimora\nKinslee\nKynlee\nLilah\nMaddie\nMadyson\nRaven\nSelena\nStephanie\nSutton\nTinsley\nValerie\nWynter\nAbbigail\nAinsley\nAlexia\nAmiya\nAnastasia\nAylin\nBethany\nCarter\nCecilia\nCharli\nChristina\nDelaney\nDestinee\nDiamond\nDonna\nElsa\nEmmaline\nGabriela\nHayley\nImani\nJacey\nJaniya\nJewel\nJordynn\nJulianne\nKaci\nKaleah\nKamari\nKara\nKarter\nKatelynn\nKenzley\nKori\nKynleigh\nLeilani\nLena\nLibby\nLiberty\nMakinley\nMariyah\nMyla\nPhoebe\nRemi\nRylan\nSavanna\nScarlet\nSelah\nTaliyah\nTamia\nVivienne\nAlaysia\nAlena\nAlicia\nAllyson\nAngela\nAngelica\nArielle\nAshanti\nAubri\nBlair\nBrynn\nCaitlin\nCasey\nCiara\nCynthia\nElliot\nEllison\nEmmalee\nFarrah\nGia\nGwendolyn\nHadlee\nHarlee\nHeather\nHolland\nIvey\nIyana\nJaci\nJacqueline\nJemma\nJillian\nJuana\nJuliette\nKacey\nKaleigh\nKathleen\nKenleigh\nKimber\nKyndal\nKynslee\nKyra\nLainey\nLaney\nLeanna\nLela\nLexie\nLilith\nLogan\nLondynn\nLorelei\nMacey\nMalaya\nMariana\nMicah\nMonica\nNayeli\nPalmer\nRaleigh\nRayna\nSabrina\nSaige\nSailor\nSally\nSamiyah\nTiana\nTyler\nValeria\nWhitney\nYaretzi\nZayla\nZuri\nAdleigh\nAiyana\nAlanna\nAlia\nAmani\nAmaya\nAmya\nAngie\nAnnabel\nAnnagrace\nAnnaleigh\nAnya\nAriella\nArmani\nArmoni\nAryanna\nAthena\nAugust\nBradleigh\nBrilee\nCampbell\nCamryn\nCarlee\nCarolina\nCarolyn\nCarsyn\nCharity\nChasity\nChrisette\nDaniela\nDasia\nDella\nDylan\nElliana\nEmerie\nEsther\nEve\nFelicity\nGabriel\nGianna\nGiuliana\nHarlow\nJakiyah\nJamiyah\nJimena\nKaelynn\nKamya\nKaniya\nKarma\nKaylei\nKaylen\nKaylyn\nKeeley\nKendal\nKenya\nKinlee\nKylah\nLayken\nLisa\nMadeleine\nMae\nMagnolia\nMarleigh\nMckayla\nMichelle\nMiranda\nNadia\nOlive\nRaeleigh\nRandi\nRayleigh\nRosa\nRowan\nSarai\nShaniya\nSymone\nTori\nVeronica\nZoie\nAbbie\nAlayah\nAleigha\nAlex\nAlli\nAmia\nAnaleigh\nAndi\nApril\nAriyanna\nAyana\nAyanna\nBaylor\nBlakelee\nBonnie\nBrileigh\nBriley\nBritton\nBrynleigh\nCalleigh\nCamilla\nCarley\nCarson\nCatalina\nChandler\nChanning\nChloie\nChristiana\nChristine\nCourtney\nDanna\nDestini\nElisabeth\nElle\nElliott\nEmber\nEmelia\nEnsley\nGenevieve\nGuadalupe\nHaiden\nHelena\nIndia\nIyanna\nJacelyn\nJacie\nJaelynn\nJamie\nJanelle\nJaycie\nJenny\nJesslyn\nJohanna\nJustyce\nKailynn\nKaitlynn\nKamille\nKarleigh\nKarmyn\nKataleya\nKhole\nKiara\nKinsleigh\nKinzley\nKristen\nLaken\nLeia\nLennox\nLeslie\nLinda\nLindsey\nMadysen\nMakenzi\nMarie\nMarilyn\nMaryann\nMelodie\nMeredith\nMilan\nMiller\nMina\nNeveah\nOakley\nPaityn\nPerla\nPhoenix\nReyna\nRiver\nSage\nSaniyah\nSariah\nShiloh\nSloane\nTaleah\nTamara\nTaniyah\nTemperance\nZaniya\nZaylee\nZendaya\nAaralyn\nAbigale\nAbigayle\nAdalee\nAddalyn\nAddalynn\nAlani\nAlasia\nAlison\nAliya\nAlora\nAlyson\nAlyvia\nAmanda\nAmauri\nAmeria\nAmina\nAminah\nAnabella\nAnais\nAnderson\nAnnabeth\nAnyla\nAriah\nArrianna\nAuburn\nAustyn\nAvah\nAvaleigh\nAziya\nBaileigh\nBraelynn\nBrenley\nBria\nCaelyn\nCamdyn\nCarrington\nClarissa\nCollier\nDani\nDaphne\nDenver\nDiana\nDorothy\nEdith\nElia\nElisa\nEllery\nEllington\nEllis\nElyse\nEmely\nEmmie\nEvangeline\nEvelynn\nEver\nFallon\nFinlee\nFreya\nGloria\nHarmonee\nHartley\nHayleigh\nHeavenly\nHunter\nIsabela\nIvory\nJamia\nJanae\nJanet\nJenesis\nJolie\nJoselin\nJoselyn\nJudith\nKacelyn\nKai\nKaidyn\nKairi\nKaley\nKalli\nKamaria\nKarina\nKaris\nKarli\nKarly\nKeasia\nKenna\nKerrigan\nKinleigh\nKolbie\nKorie\nKourtney\nKrimson\nKylar\nLacey\nLakelyn\nLakyn\nLana\nLandry\nLeila\nLesly\nLilian\nLouise\nLyndsey\nLyrik\nMaliah\nMallorie\nMara\nMargot\nMarisol\nMariya\nMarlie\nMartha\nMaryam\nMelany\nMiah\nMilani\nMilania\nMoriah\nMyah\nNancy\nNina\nPreslee\nPreslie\nPriscilla\nRailyn\nRaniya\nRemington\nRihanna\nSamiya\nSarahi\nSariyah\nSerinity\nShayla\nSidney\nSpencer\nTabitha\nTamera\nTaraji\nTaylin\nWendy\nWinter\nJames\nJohn\nWilliam\nWillie\nRobert\nGeorge\nHenry\nJoe\nCharlie\nFrank\nCharles\nJoseph\nWalter\nThomas\nSam\nRichard\nClarence\nFred\nEdward\nEddie\nJessie\nJack\nAlbert\nLee\nArthur\nDavid\nHoward\nWill\nRoy\nTom\nEugene\nErnest\nJim\nJohnnie\nSamuel\nLouis\nAndrew\nBen\nJesse\nLewis\nJimmie\nLeroy\nOscar\nPaul\nRufus\nCarl\nHerman\nCurtis\nNathaniel\nRaymond\nHarry\nEd\nCecil\nClaude\nRalph\nEdgar\nEmmett\nOtis\nDave\nLuther\nMarvin\nBennie\nEarl\nHomer\nLawrence\nRoosevelt\nTheodore\nAlex\nBill\nMack\nAlfred\nDaniel\nEarnest\nJake\nLonnie\nMilton\nOliver\nPercy\nAllen\nClyde\nJohnie\nJulius\nTommie\nChester\nDan\nGrady\nHarvey\nHugh\nLeon\nLeonard\nMorris\nElmer\nFloyd\nHubert\nLeo\nWillis\nBooker\nElbert\nHerbert\nMelvin\nSidney\nBenjamin\nBuster\nCleveland\nClifford\nEllis\nLester\nLouie\nCalvin\nClinton\nJerry\nOllie\nRay\nAmos\nArchie\nGuy\nHarold\nJohnny\nAlvin\nAubrey\nCharley\nClifton\nDock\nElijah\nFletcher\nHorace\nMose\nNelson\nNorman\nSimon\nWilbur\nAlexander\nAlton\nAnderson\nBud\nGrover\nGus\nIra\nIsaac\nJeff\nJimmy\nKing\nLloyd\nMonroe\nSandy\nBernard\nEarly\nHuey\nLeslie\nLoyd\nMarshall\nMary\nMitchell\nNathan\nNed\nPerry\nPreston\nTony\nVirgil\nWallace\nWilson\nAaron\nAdam\nCleve\nDewitt\nDouglas\nEmmitt\nIke\nJudge\nManuel\nPeter\nPorter\nRuben\nSpencer\nSylvester\nTommy\nVernon\nWesley\nWilbert\nAbraham\nAustin\nCleo\nDennis\nEdd\nEdwin\nErvin\nFelix\nGerald\nGordon\nHollis\nHouston\nIsiah\nJackson\nMarion\nMartin\nMillard\nMoses\nNoah\nOdis\nRiley\nSolomon\nSteve\nWiley\nAdolphus\nAlonzo\nAnthony\nChristopher\nClaud\nClayton\nCliff\nCoy\nDalton\nDewey\nEdmond\nEli\nFrancis\nGeneral\nGreen\nHarrison\nHosey\nHoyt\nJasper\nJay\nLamar\nLorenzo\nLucious\nLuke\nMajor\nMckinley\nOtto\nPhil\nPhillip\nReuben\nSammie\nSon\nStanley\nTurner\nVester\nWarren\nWilburn\nJames\nJohn\nWilliam\nWillie\nRobert\nGeorge\nHenry\nFrank\nCharlie\nCharles\nJoe\nJoseph\nThomas\nWalter\nSam\nEddie\nEdward\nDavid\nArthur\nJack\nJohnnie\nClarence\nRichard\nFred\nSamuel\nAlbert\nJessie\nRoy\nHoward\nLee\nAndrew\nErnest\nEugene\nOscar\nPaul\nHomer\nJesse\nJimmie\nWill\nEarl\nEarnest\nLuther\nGrady\nHerman\nLeonard\nCurtis\nDaniel\nFloyd\nHarry\nTom\nCecil\nRaymond\nJohnie\nLeroy\nCarl\nHerbert\nIsaac\nJim\nLewis\nLouis\nRalph\nAllen\nBen\nRufus\nDan\nOtis\nAlfred\nClyde\nLawrence\nMarvin\nMilton\nBennie\nBill\nClaude\nElbert\nHubert\nLeon\nRoosevelt\nSylvester\nTommie\nEllis\nHorace\nDave\nEdgar\nGuy\nHugh\nArchie\nEd\nLeslie\nMose\nNathan\nBenjamin\nChester\nElmer\nGrover\nIra\nMarion\nOliver\nPercy\nWallace\nClifford\nHarvey\nJerry\nJulius\nLloyd\nMonroe\nWillis\nAlton\nAmos\nClaud\nCleveland\nHarold\nLeo\nLester\nMelvin\nNelson\nSidney\nBud\nCalvin\nClinton\nLonnie\nTheodore\nAlvin\nAnderson\nAubrey\nBuster\nJohnny\nLouie\nMack\nNathaniel\nSanford\nAlex\nArther\nFreddie\nRuben\nShelby\nTroy\nAlexander\nBruce\nClifton\nCornelius\nDennis\nDewey\nDouglas\nEdmond\nFletcher\nFreeman\nJacob\nJake\nMarshall\nMatthew\nNeal\nPhillip\nRay\nRussell\nBillie\nBob\nBuford\nColumbus\nElijah\nJay\nLoyd\nMoses\nOcie\nPeter\nRoland\nRoss\nSimon\nTed\nVirgil\nWarren\nWesley\nWillard\nWilson\nWoodrow\nAaron\nArnold\nBooker\nDonald\nEarly\nGordon\nIsiah\nJeff\nJewell\nLove\nMary\nMorris\nPreston\nReuben\nRoscoe\nScott\nSteve\nWilbert\nWiley\nWilmer\nAlford\nAustin\nBarney\nBrady\nCarlton\nCary\nCharley\nCoy\nDock\nEdd\nElzie\nEmmett\nFelix\nFrederick\nGilbert\nHarrison\nHilliard\nHoyt\nJasper\nJimmy\nKermit\nLawyer\nMajor\nNoah\nNorman\nOtto\nPerry\nPhilip\nPorter\nSolomon\nSpencer\nTommy\nVernon\nVictor\nWilbur\nJames\nJohn\nWilliam\nRobert\nWillie\nGeorge\nHenry\nThomas\nCharles\nFrank\nJoseph\nJoe\nWalter\nCharlie\nWoodrow\nArthur\nAlbert\nJack\nSam\nClarence\nEdward\nFred\nRichard\nRoy\nJessie\nSamuel\nDavid\nJohnnie\nErnest\nHoward\nEddie\nPaul\nAndrew\nJimmie\nLouis\nJim\nJesse\nRaymond\nOscar\nEugene\nRalph\nLee\nCecil\nClyde\nEarnest\nLeroy\nTom\nHarry\nEarl\nWill\nLewis\nEdgar\nGrady\nLeon\nMarvin\nOtis\nCarl\nHerman\nLeonard\nHorace\nBen\nCurtis\nClaude\nFloyd\nHerbert\nAllen\nLester\nWilson\nClifford\nDaniel\nHarold\nLuther\nRoosevelt\nTommie\nHomer\nJohnie\nMelvin\nAlfred\nEd\nRufus\nBennie\nMack\nPercy\nLawrence\nTheodore\nBill\nDan\nMarion\nMilton\nAubrey\nElbert\nHubert\nWillis\nBenjamin\nBooker\nEllis\nGrover\nLeo\nAlvin\nClifton\nDewey\nElmer\nHugh\nLeslie\nFrancis\nLonnie\nNathan\nOliver\nAlex\nCalvin\nHarvey\nJulius\nArchie\nChester\nNorman\nSidney\nCharley\nNathaniel\nOllie\nRay\nWallace\nWillard\nIra\nLloyd\nAlton\nDave\nEmmett\nGuy\nJasper\nIsaac\nJacob\nJerry\nJohnny\nMorris\nBuster\nEdwin\nErvin\nJake\nJulian\nRoscoe\nRuben\nRussell\nSolomon\nSteve\nSylvester\nVirgil\nAbraham\nAnthony\nCleveland\nGlen\nMarshall\nMillard\nOdis\nTroy\nWilbur\nAaron\nAmos\nClinton\nDouglas\nJeff\nJoel\nMonroe\nMoses\nPeter\nTalmadge\nWesley\nBernard\nBob\nGordon\nHouston\nJackson\nJay\nLouie\nLucius\nMary\nOcie\nPreston\nAugustus\nAustin\nBuford\nClaud\nClayton\nDock\nDonald\nElijah\nFrederick\nFreeman\nGus\nLevi\nMose\nPhilip\nSherman\nTravis\nWarren\nWiley\nWilmer\nDallas\nEmmitt\nFletcher\nHarrison\nHoyt\nKenneth\nMarcus\nMartin\nMatthew\nNoah\nOwen\nPerry\nPhillip\nRoland\nStephen\nTommy\nWade\nBarney\nEverett\nFreddie\nGilbert\nGlenn\nJerome\nJudge\nMalcolm\nMax\nOlin\nPorter\nSammie\nAlto\nAnderson\nBennett\nBert\nBrady\nCoy\nEwell\nEzra\nFelton\nFranklin\nHuey\nJimmy\nJunior\nKermit\nLamar\nLemuel\nManuel\nMason\nMathew\nNeal\nOtto\nRoss\nSandy\nShelby\nWalker\nAbe\nAdam\nAlexander\nAlonzo\nAndy\nArnold\nArther\nBruce\nBuck\nColumbus\nDennis\nEmanuel\nEmory\nEnoch\nFelix\nFoster\nFoy\nGeneral\nHarmon\nHaywood\nHiram\nLoyd\nMajor\nMark\nMaurice\nMike\nMitchell\nMurray\nNed\nPete\nPrince\nReid\nRoger\nRudolph\nSimon\nStanley\nThurman\nTurner\nVernon\nWilton\nWinston\nZack\nZollie\nAl\nArtie\nBoyd\nBud\nBurl\nByron\nCarter\nChristopher\nCleo\nColeman\nCooper\nDee\nEarlie\nEdd\nEmerson\nEmery\nForrest\nGaston\nGuss\nHamp\nHermon\nHollis\nIrvin\nIrving\nIsiah\nJewel\nJewell\nKing\nLevy\nLynn\nMurry\nNapoleon\nNelson\nNick\nPatrick\nRiley\nRogers\nScott\nTerry\nUlysses\nWilburn\nJames\nJohn\nWilliam\nRobert\nWillie\nGeorge\nHenry\nThomas\nCharles\nJoseph\nFrank\nCharlie\nJoe\nWalter\nAlbert\nFred\nEdward\nJack\nArthur\nWoodrow\nClarence\nSam\nEddie\nRoy\nRichard\nErnest\nHoward\nDavid\nJohnnie\nJesse\nSamuel\nPaul\nClyde\nCarl\nEugene\nRalph\nJessie\nLouis\nCecil\nLee\nFloyd\nGrady\nJimmie\nHerman\nOscar\nRaymond\nAndrew\nHarry\nJim\nMarvin\nWill\nLeroy\nOtis\nLeon\nBen\nEarnest\nLuther\nEarl\nAlfred\nCurtis\nHerbert\nLeonard\nClaude\nHarold\nHomer\nJulius\nLewis\nDaniel\nElbert\nHubert\nMelvin\nTommie\nChester\nRoosevelt\nAllen\nArchie\nHarvey\nLawrence\nMack\nTom\nLester\nMarion\nBill\nWilson\nEllis\nLonnie\nRufus\nGrover\nHugh\nAlvin\nBenjamin\nDan\nHorace\nMilton\nAlex\nEdgar\nIra\nJohnie\nLeo\nTheodore\nBennie\nClifford\nEdwin\nNorman\nWillis\nEd\nIsaac\nVirgil\nAaron\nJohnny\nNathaniel\nOliver\nClifton\nEmmett\nGuy\nLloyd\nMoses\nPercy\nVernon\nJerry\nOllie\nPeter\nRussell\nWesley\nMorris\nRay\nBuster\nCalvin\nElmer\nJeff\nAlton\nAubrey\nBooker\nElijah\nGordon\nSylvester\nWallace\nAbraham\nCleveland\nClinton\nDewey\nDouglas\nFelix\nLeslie\nLouie\nMajor\nWade\nWilburn\nWillard\nAmos\nBruce\nHoyt\nJake\nReuben\nSidney\nAlexander\nFrancis\nGilbert\nMartin\nNathan\nPreston\nWarren\nWilbur\nArnold\nDonald\nJasper\nMarshall\nMillard\nUlysses\nBernard\nClayton\nFletcher\nGlenn\nHarrison\nJay\nNelson\nNoah\nOdis\nPhillip\nTravis\nBert\nDave\nFrederick\nFredrick\nJerome\nMatthew\nMike\nMose\nOlin\nSherman\nCarlton\nClaud\nColumbus\nDennis\nDock\nEmory\nGus\nHollis\nJackson\nJacob\nJudge\nJulian\nKenneth\nKermit\nMaurice\nMonroe\nOcie\nTruman\nWiley\nAron\nBob\nCharley\nElmore\nFreddie\nFreeman\nGlen\nHouston\nHuey\nOdell\nOtto\nOwen\nPhilip\nRiley\nTed\nTimothy\nTony\nTroy\nVictor\nWilbert\nWilmer\nBarney\nBernice\nBoyd\nDewitt\nEarly\nEverett\nGlover\nGrant\nHenderson\nHiram\nIrvin\nJimmy\nKing\nLoyd\nLuke\nManuel\nMark\nOlen\nOttis\nPorter\nPrince\nRoland\nRoss\nSolomon\nThurman\nAnderson\nAugustus\nCarey\nEarlie\nElias\nElton\nFoy\nGerald\nHerschel\nIsiah\nJefferson\nLamar\nLarry\nLeamon\nMax\nMckinley\nMorgan\nPerry\nRoscoe\nTommy\nVincent\nWilton\nWinston\nAbe\nAlonzo\nAlva\nAlvie\nAustin\nBryant\nByron\nCleve\nConnie\nCornelius\nDallas\nEdd\nEdmond\nElmo\nElvin\nErvin\nEzekiel\nForrest\nFoster\nFranklin\nGarfield\nHaywood\nHosey\nIrby\nJoel\nMalcolm\nMary\nMilford\nMitchell\nMurray\nNed\nOdie\nOrville\nPete\nRex\nRosevelt\nRuben\nRudolph\nSammie\nScott\nStanley\nWalker\nAdolph\nAlphonso\nAlto\nBelton\nBennett\nBilly\nBuck\nBuford\nBurl\nCarlos\nCary\nColeman\nCollie\nCullen\nDoyle\nElliott\nEmmitt\nForney\nHobson\nIsadore\nIsaiah\nIvan\nJamie\nJeremiah\nJordan\nJoshua\nLewie\nLorenza\nLorenzo\nMarcus\nNewton\nNolan\nObie\nPrice\nRichmond\nRoger\nRush\nSandy\nSmith\nStonewall\nTalmadge\nTheo\nTheron\nVan\nVester\nWinfred\nJames\nJohn\nWilliam\nRobert\nWillie\nGeorge\nHenry\nCharles\nThomas\nWalter\nJoseph\nFrank\nJoe\nFred\nCharlie\nEdward\nAlbert\nJack\nSamuel\nClarence\nArthur\nRoy\nRichard\nJohnnie\nOscar\nDavid\nSam\nEddie\nWoodrow\nErnest\nJessie\nPaul\nCecil\nEarl\nRalph\nCarl\nLouis\nRaymond\nHoward\nOtis\nJesse\nLeroy\nLee\nFloyd\nHomer\nAndrew\nCurtis\nHerbert\nClyde\nGrady\nTom\nHerman\nLuther\nWill\nDaniel\nJimmie\nEugene\nHarry\nJim\nLawrence\nLewis\nRufus\nMarvin\nBenjamin\nClaude\nLeonard\nLeo\nHorace\nEarnest\nLester\nMelvin\nTommie\nEdgar\nAlfred\nHubert\nHugh\nLonnie\nMack\nClifford\nEd\nMilton\nLeon\nBennie\nJohnie\nNathaniel\nWillis\nBen\nGrover\nJulius\nHarvey\nOliver\nElbert\nNorman\nAllen\nElmer\nLeslie\nAlvin\nTheodore\nHarold\nAaron\nEmmett\nArchie\nDan\nIsaac\nJerry\nMarion\nChester\nMorris\nGordon\nJohnny\nWilson\nSidney\nBernard\nCleveland\nRoosevelt\nAlex\nJacob\nLouie\nRay\nFrancis\nJasper\nOllie\nWallace\nBooker\nClinton\nGilbert\nPercy\nBill\nCalvin\nRoscoe\nTravis\nArnold\nClifton\nDave\nDewey\nMatthew\nMillard\nVernon\nVirgil\nWesley\nFelix\nGlenn\nNathan\nPhillip\nRoland\nBuster\nEdwin\nKermit\nLloyd\nRussell\nSylvester\nWiley\nAlton\nAmos\nCharley\nElijah\nPeter\nTroy\nPreston\nRoss\nWillard\nAlexander\nDennis\nDouglas\nEllis\nHoyt\nMitchell\nNelson\nWilburn\nAubrey\nBarney\nBuford\nFletcher\nIra\nJulian\nMose\nPerry\nTed\nClayton\nDonald\nJay\nMartin\nMoses\nOdis\nOtha\nSolomon\nTommy\nWilbur\nAnthony\nBruce\nHollis\nJeff\nMarshall\nMurray\nNoah\nOtto\nAbraham\nDallas\nHaywood\nHobson\nHouston\nHuey\nJake\nLamar\nLevi\nLoyd\nOlen\nPorter\nReuben\nWarren\nWilmer\nColumbus\nGerald\nJoel\nOdell\nPatrick\nSherman\nSilas\nAbe\nAnderson\nAustin\nBillie\nByron\nClaud\nComer\nConnie\nCornelius\nElmore\nErvin\nEssie\nFranklin\nFrederick\nHiram\nJefferson\nMalcolm\nMax\nMonroe\nOcie\nRoger\nSammie\nAlonzo\nAugustus\nCarlton\nCleve\nEdd\nEmory\nEverett\nFreddie\nMajor\nMark\nMilford\nPete\nRex\nRuben\nWade\nWilbert\nAlphonso\nArther\nArtis\nBoyd\nBrady\nBraxton\nBuddy\nChristopher\nClaudie\nDock\nEarlie\nEarly\nGus\nHardy\nHuston\nIrvin\nIsiah\nJerome\nLenard\nLovell\nLucius\nLuke\nManuel\nMorgan\nPhilip\nSimon\nTheo\nVan\nWinston\nAl\nAlto\nBert\nCleo\nCliff\nCoy\nDavis\nDon\nDudley\nEldridge\nEli\nEnoch\nEzekiel\nFoster\nFreeman\nGrant\nGreen\nGuy\nHarley\nIke\nIrby\nIsaiah\nJackson\nJamie\nJimmy\nJosh\nJudge\nKenneth\nKing\nLarry\nLorenzo\nLucian\nMacon\nMason\nMaurice\nNed\nNewton\nNorris\nOneal\nOwen\nPrince\nStanley\nSteve\nThurman\nVictor\nAlvie\nAngus\nAron\nBenny\nBob\nCarey\nClarance\nColeman\nConrad\nCurry\nDawson\nDewitt\nDwight\nEmmet\nErmon\nForest\nFoy\nHarrison\nHershel\nJohnson\nJonas\nJoshua\nJunior\nLawson\nLowell\nMarcus\nNapoleon\nObie\nPrice\nRubin\nSelma\nShelby\nSid\nSim\nUlysses\nWashington\nWilliams\nAngelo\nArvel\nBelton\nBryant\nBuck\nBuddie\nBuel\nCarroll\nDorsey\nElisha\nEmanuel\nEmmitt\nErskine\nEster\nEvans\nFelton\nGarfield\nGaston\nGilmore\nGlen\nGriffin\nHamilton\nHenderson\nHubbard\nHunter\nLacy\nLeamon\nLeland\nLemuel\nLindsey\nLorenza\nLucious\nMarlin\nMichael\nMiller\nNeal\nNick\nNoel\nOlin\nOllis\nRamon\nReginald\nRosevelt\nRoyce\nScott\nSpurgeon\nStephen\nTaylor\nTheron\nTimothy\nTomie\nVerbon\nVincent\nVinson\nWood\nWylie\nJames\nJohn\nWilliam\nRobert\nWillie\nGeorge\nThomas\nHenry\nCharles\nJoseph\nFrank\nWalter\nEdward\nJoe\nCharlie\nAlbert\nFred\nArthur\nClarence\nDavid\nJack\nRoy\nRichard\nErnest\nJessie\nSamuel\nPaul\nCecil\nEddie\nSam\nHoward\nJesse\nWoodrow\nJohnnie\nRalph\nAndrew\nGrady\nOscar\nRaymond\nEugene\nLee\nHerman\nCarl\nEarl\nLouis\nJimmie\nClyde\nHarry\nHerbert\nOtis\nCurtis\nLuther\nFloyd\nHorace\nLeon\nLewis\nHubert\nWillard\nLeonard\nMarvin\nRufus\nLester\nEarnest\nHarold\nLeroy\nJim\nAllen\nBenjamin\nTom\nHomer\nBen\nDaniel\nEdgar\nMilton\nBennie\nClaude\nEmmett\nLawrence\nAlfred\nAlvin\nWallace\nChester\nClifford\nMarion\nMack\nElmer\nDan\nHugh\nWill\nBooker\nLeo\nAlex\nMelvin\nNorman\nLonnie\nRoosevelt\nWillis\nClifton\nEdwin\nJohnie\nArchie\nClinton\nJulius\nHarvey\nNathaniel\nOliver\nTheodore\nAubrey\nFrancis\nGrover\nLouie\nPercy\nEllis\nLloyd\nArnold\nBill\nOllie\nTommie\nGordon\nLeslie\nAmos\nCleveland\nVirgil\nDonald\nElbert\nIra\nJerry\nJohnny\nRay\nTroy\nWesley\nWilson\nDewey\nIsaac\nNathan\nCalvin\nCharley\nDave\nEd\nFrederick\nWarren\nClaud\nJake\nSylvester\nVernon\nAlton\nPeter\nWiley\nGlenn\nOdis\nPreston\nRoscoe\nSidney\nWilbur\nAlexander\nBob\nDouglas\nElijah\nGuy\nHollis\nMatthew\nMonroe\nMorris\nMoses\nRussell\nGilbert\nKenneth\nLoyd\nOdell\nPerry\nWilmer\nAaron\nBernard\nCoy\nFelix\nMarshall\nJacob\nJefferson\nMax\nRoland\nAnderson\nFletcher\nJasper\nMajor\nMartin\nPete\nReuben\nRoss\nWilburn\nEarlie\nMose\nPhillip\nSammie\nAlonzo\nDee\nEverett\nHouston\nJimmy\nSimon\nWinston\nAbraham\nBruce\nBuford\nCornelius\nFreddie\nHermon\nHuey\nJay\nJulian\nNeal\nNelson\nSherman\nSolomon\nTravis\nAustin\nBarney\nColumbus\nDavis\nDennis\nElvin\nJackson\nJess\nLevi\nLorenzo\nNed\nRex\nTommy\nVictor\nWilbert\nByron\nClayton\nConnie\nFranklin\nFreeman\nHoyt\nJeff\nMitchell\nOcie\nOrville\nOwen\nSilas\nStephen\nVincent\nWade\nAdolph\nEarly\nElton\nEmanuel\nEmory\nEvans\nHarmon\nJoel\nKing\nMalcolm\nManuel\nMarcus\nMilford\nMillard\nOtto\nSanford\nUlysses\nVester\nArther\nBoyd\nCarlos\nCliff\nDock\nEdmond\nEnoch\nEzra\nFoy\nGus\nIke\nIsaiah\nJunior\nLamar\nLowell\nMaxie\nMichael\nMurray\nNewton\nNoah\nOlen\nShelby\nSteve\nTed\nWinfred\nAlto\nAndy\nArlin\nBernice\nBert\nBud\nClark\nColeman\nEdd\nElmore\nForest\nGaston\nGlen\nJerome\nJudge\nKermit\nMark\nMiles\nOtha\nOttis\nRandolph\nRiley\nRudolph\nStanley\nTheo\nThurman\nVan\nAlvie\nAvery\nBilly\nCarey\nCarlton\nChristopher\nCleve\nDudley\nEmmitt\nHaywood\nHershel\nLeamon\nLois\nLucius\nLuke\nMaurice\nObie\nOdie\nOlin\nRoger\nSpencer\nTalmadge\nTaylor\nTony\nVerbon\nWebster\nAbe\nAlgie\nArlie\nBillie\nBrady\nBryant\nBuren\nBuster\nComer\nCornelious\nCrawford\nDewitt\nEmmet\nErvin\nGeneral\nGerald\nHarris\nHezekiah\nHiram\nIsiah\nJudson\nMarlin\nOra\nRosevelt\nSterling\nTimothy\nWayne\nWoodie\nAdolphus\nAlfonso\nAnthony\nBraxton\nBuddy\nBurnie\nCarroll\nCarter\nClaudie\nCleo\nDelmar\nEli\nElisha\nElmo\nElvis\nEmmit\nFerrell\nGarland\nGene\nGorden\nGrant\nHarvie\nHobson\nIrby\nIrvin\nIssac\nLeland\nMadison\nMilburn\nMorgan\nNick\nNoble\nNoel\nNorris\nOneal\nOsie\nOtho\nPatrick\nPhilip\nPorter\nPrice\nReginald\nRuben\nTalmage\nTheron\nTillman\nVivian\nWilber\nWinford\nWyman\nAlford\nAlphonse\nAlvis\nAmon\nArtis\nAuther\nBenard\nBenjiman\nBobbie\nCarson\nCasey\nChas\nClarance\nDempsey\nDenver\nDolphus\nDoyle\nDurell\nEligah\nEzell\nFelton\nFoster\nGaines\nGarfield\nHarley\nHarvel\nHerschel\nHilliard\nHobart\nHollie\nHosie\nHuston\nIvory\nJodie\nJohnson\nJordan\nJulious\nLaurence\nLemuel\nLenard\nLindsey\nLoyce\nLynn\nMacon\nMary\nMathew\nMelton\nMike\nMurry\nNapoleon\nNolan\nOris\nPeyton\nRonald\nRuel\nRupert\nSandy\nScott\nSid\nSmith\nTerry\nVerner\nWalker\nWalton\nWaymon\nWendell\nZack\nJames\nWilliam\nJohn\nRobert\nWillie\nGeorge\nHenry\nCharles\nThomas\nFrank\nJoseph\nJoe\nEdward\nWalter\nCharlie\nFred\nClarence\nArthur\nAlbert\nRoy\nDavid\nJack\nWoodrow\nJessie\nSamuel\nPaul\nCecil\nJesse\nEddie\nJohnnie\nErnest\nHoward\nRichard\nRalph\nSam\nEarl\nAndrew\nRaymond\nClyde\nGrady\nLouis\nMarvin\nCarl\nHerman\nLee\nLeroy\nJimmie\nLeon\nOscar\nHorace\nLuther\nFloyd\nHarold\nEugene\nCurtis\nHerbert\nHubert\nLewis\nOtis\nHarry\nLonnie\nAlfred\nHomer\nLeonard\nJim\nLawrence\nLeo\nWillard\nMelvin\nDaniel\nBill\nEarnest\nRufus\nClaude\nMilton\nBen\nEdgar\nElbert\nGrover\nLester\nTom\nClifford\nHugh\nWill\nChester\nElmer\nBenjamin\nBennie\nIsaac\nNorman\nOliver\nAlvin\nJohnie\nTommie\nAllen\nRoosevelt\nLloyd\nHarvey\nMack\nWallace\nSidney\nDan\nWilson\nJerry\nAlex\nAmos\nPercy\nWillis\nAubrey\nEdwin\nJake\nBooker\nCalvin\nIra\nMarion\nTheodore\nAaron\nArnold\nClifton\nDewey\nRay\nEd\nEmmett\nJulius\nOllie\nVirgil\nArchie\nMorris\nMoses\nNathaniel\nVernon\nDonald\nEllis\nLouie\nWilburn\nTroy\nAlton\nCleveland\nClinton\nCoy\nDave\nHouston\nNathan\nPreston\nRussell\nWilbur\nCharley\nGordon\nGuy\nJeff\nJohnny\nMose\nNelson\nElijah\nGilbert\nJasper\nPeter\nBernard\nMartin\nOdis\nBuford\nFrancis\nMarshall\nMatthew\nFreddie\nJulian\nMillard\nRoscoe\nWilmer\nClaud\nFelix\nMalcolm\nPhillip\nSylvester\nWesley\nDock\nDouglas\nEverett\nGlenn\nLoyd\nOdell\nRoland\nAustin\nBuster\nHarrison\nLeslie\nLowell\nVincent\nWarren\nBruce\nDennis\nGlen\nHoyt\nMajor\nNoah\nOwen\nPerry\nAlexander\nCarlos\nJoel\nJudge\nLamar\nLucius\nVictor\nWilbert\nBilly\nEdd\nFletcher\nHollis\nKing\nMark\nMax\nOlen\nSherman\nSimon\nTed\nVan\nAlonzo\nBob\nBoyd\nBud\nColeman\nFranklin\nOcie\nOttis\nTravis\nAnthony\nByron\nCornelius\nHuey\nJackson\nKenneth\nMaurice\nMurray\nOlin\nPhilip\nRoss\nStanley\nTommy\nWade\nWalker\nWiley\nWinston\nAbe\nAnderson\nBillie\nFreeman\nJacob\nJay\nMathew\nMitchell\nMonroe\nPorter\nReuben\nAbraham\nBurl\nClayton\nDallas\nDalton\nGus\nJosh\nLovell\nRuben\nSammie\nVester\nWayne\nAndy\nBrady\nCarlton\nCleo\nDorsey\nEmmitt\nErvin\nEzekiel\nHenderson\nHerschel\nIrvin\nIsaiah\nIsiah\nJunior\nKermit\nMarcus\nNeal\nOneal\nPete\nSanford\nShelby\nSteve\nAlva\nArlie\nArther\nBarney\nBernie\nBurton\nColumbus\nDavis\nElisha\nElmore\nEmanuel\nFelton\nForrest\nHershel\nHiram\nJohnson\nLuke\nMckinley\nMilford\nObie\nOrbie\nOtto\nRandolph\nRaymon\nRoger\nTalmadge\nTimothy\nTruman\nAlvie\nAsa\nClaudie\nConnie\nEli\nElliott\nEzra\nFrederick\nGaston\nGeneral\nGillis\nHuston\nLemuel\nManuel\nMike\nMiles\nOrval\nOrville\nPrince\nRex\nRichmond\nRoyce\nRubin\nSim\nSolomon\nTheo\nThurman\nAlto\nAron\nBenjiman\nBernice\nBert\nBuck\nCary\nClay\nCliff\nComer\nConrad\nDamon\nDewitt\nDon\nDudley\nElma\nElton\nForest\nFoster\nHarris\nHudson\nIrby\nJefferson\nJimmy\nJonnie\nJudson\nLenard\nLevi\nLois\nLorenza\nMary\nMaxwell\nMorgan\nNapoleon\nNorris\nRiley\nRudolph\nRupert\nTony\nWilford\nWilliams\nWyatt\nAbner\nAdam\nAmon\nAugustus\nBerry\nBobbie\nBraxton\nCarroll\nClark\nColvin\nDolphus\nDwight\nEarly\nElvin\nEmmit\nEnnis\nGary\nGreen\nHamp\nHaywood\nJenkins\nJess\nJones\nLarry\nLucious\nLudie\nLyman\nMarlin\nMason\nMichael\nNed\nNick\nNoble\nNolan\nNolen\nOdie\nPalmer\nPatrick\nPierce\nRogers\nScott\nTheron\nTim\nWebster\nWinfred\nWoodie\nWoodroe\nAdolph\nAlford\nAlmon\nAlonza\nAlphonso\nAlvis\nArtis\nBethel\nBlanton\nBrown\nClem\nClint\nCornelious\nCurtiss\nEarlie\nEdison\nEdmund\nEldridge\nElzie\nErskine\nErwin\nEssie\nEster\nEunice\nEwell\nEzell\nGaines\nGrafton\nGraham\nGrant\nHamilton\nHampton\nHarvie\nHermon\nHosea\nIke\nIrving\nIvan\nJerome\nJonathan\nLacy\nLawyer\nLeamon\nLeland\nLem\nLessie\nLorenzo\nMadison\nMalcom\nMelton\nMinnie\nMurphy\nMurry\nNewman\nOnnie\nOsie\nOtha\nPleas\nPrentice\nPrice\nRonald\nRuby\nSeaborn\nSpencer\nStephen\nSterling\nTalmage\nThad\nVerbon\nVirgle\nWalton\nWash\nWatson\nWillam\nWilton\nWoodford\nYancy\nJames\nJohn\nWilliam\nRobert\nWillie\nGeorge\nCharles\nHenry\nThomas\nJoseph\nFrank\nWalter\nCharlie\nJoe\nEdward\nFred\nArthur\nClarence\nJessie\nSamuel\nDavid\nJohnnie\nJack\nRoy\nAlbert\nRichard\nPaul\nHoward\nErnest\nJesse\nRalph\nEddie\nCarl\nWoodrow\nCecil\nSam\nJimmie\nEarl\nLouis\nLewis\nEugene\nRaymond\nAndrew\nGrady\nOscar\nClyde\nLeon\nLuther\nMarvin\nHarry\nHerman\nEarnest\nLee\nLeonard\nHerbert\nLeroy\nHarold\nHorace\nHomer\nCurtis\nDaniel\nTom\nEdgar\nElbert\nHubert\nBen\nHugh\nMarion\nMilton\nOtis\nChester\nFloyd\nOliver\nWilson\nBenjamin\nClaude\nAlfred\nJim\nMack\nWillard\nAlvin\nClifford\nJohnie\nRay\nLawrence\nLonnie\nWallace\nEmmett\nLester\nNorman\nPercy\nAllen\nMelvin\nNathaniel\nHarvey\nLeo\nSidney\nWill\nBennie\nJulius\nTheodore\nTommie\nLouie\nArchie\nBill\nWillis\nAmos\nDan\nFrancis\nIra\nIsaac\nOllie\nAlex\nArnold\nClifton\nGrover\nNathan\nVirgil\nDewey\nDouglas\nElmer\nMorris\nRufus\nWarren\nCalvin\nHoyt\nTravis\nCleveland\nDonald\nJerry\nWilbur\nAubrey\nGordon\nLeslie\nPerry\nClinton\nFelix\nMoses\nWilburn\nLoyd\nTroy\nWiley\nBuford\nGlenn\nLloyd\nRoosevelt\nVernon\nAaron\nBooker\nEdwin\nEllis\nJohnny\nMartin\nNed\nRussell\nSylvester\nVictor\nBilly\nCharley\nFrederick\nJasper\nOdis\nTommy\nDennis\nEd\nFranklin\nMonroe\nAlexander\nAlton\nAnderson\nDave\nElijah\nErvin\nGilbert\nGuy\nJackson\nJoel\nKenneth\nMajor\nArther\nBarney\nClaud\nCoy\nDoyle\nJay\nNelson\nReuben\nAlonzo\nBernard\nBillie\nBruce\nEarly\nFreeman\nGlen\nHollis\nJake\nLamar\nLorenzo\nMarshall\nMillard\nNoah\nRoland\nRoss\nSilas\nWilmer\nCarlton\nFletcher\nJeff\nJulian\nLuke\nOttis\nOwen\nPreston\nWesley\nWilbert\nWinston\nColumbus\nCornelius\nDock\nFreddie\nHouston\nMose\nPhillip\nSherman\nAbraham\nCleo\nElton\nJudge\nMark\nNeal\nOdell\nPeter\nSanford\nShelby\nUlysses\nWade\nWinfred\nAdolph\nArlie\nAustin\nClayton\nEarlie\nEverett\nGerald\nLemuel\nMalcolm\nPorter\nRoscoe\nSimon\nStanley\nStephen\nVan\nAndy\nCary\nColeman\nFoster\nHenderson\nJimmy\nKermit\nMax\nPete\nPhilip\nRaymon\nSammie\nTalmadge\nThurman\nAlto\nBob\nBrady\nComer\nDewitt\nEdmond\nGene\nHaywood\nHershel\nHuey\nJacob\nJudson\nKing\nLenard\nMurray\nOlen\nPrice\nRosevelt\nRuben\nTed\nTony\nWayne\nWinford\nAbe\nAdolphus\nAnthony\nCarlos\nCleve\nEmanuel\nEzra\nHarrison\nHosea\nIke\nJunior\nKarl\nLevi\nLowell\nMatthew\nMitchell\nOcie\nSpencer\nAugustus\nBernice\nBoyd\nBud\nBuster\nCarter\nClaudie\nDallas\nDon\nEdd\nEli\nEmery\nEmmitt\nEmory\nGlover\nHarmon\nHermon\nHilliard\nHilton\nIrvin\nIvan\nJefferson\nJerome\nJosh\nManuel\nMaurice\nMiles\nNapoleon\nOdie\nOlin\nRandolph\nTerry\nVincent\nWaymon\nWoodie\nAvery\nBishop\nBobbie\nBrown\nCarey\nClarance\nCliff\nCrawford\nDalton\nEdison\nEliga\nElmore\nElvin\nElzie\nErskine\nGarfield\nGaston\nGrant\nGus\nHiram\nHuston\nIrby\nJess\nKelly\nLarry\nLem\nLemon\nLindsey\nLois\nLorenza\nMary\nMason\nMaxie\nMichael\nNeil\nObie\nOtto\nRex\nRiley\nRogers\nRupert\nSol\nSolomon\nSterling\nWatson\nAlphonse\nBert\nBobby\nByron\nCullen\nDavis\nDee\nElmo\nEnoch\nEthridge\nEzekiel\nHardy\nHarlan\nHarley\nHarvie\nIsiah\nJoshua\nLafayette\nLeamon\nLonzo\nLovie\nMacon\nMckinley\nMilford\nMorgan\nNick\nNolan\nOrville\nOssie\nPat\nShellie\nTaylor\nTheron\nVerbon\nWashington\nWyatt\nZack\nAdam\nAlvie\nArlin\nAron\nAuther\nBraxton\nBryant\nBurton\nCarmon\nCarroll\nClark\nCollins\nConnie\nDelbert\nDick\nDorsey\nEarle\nEdmund\nEllie\nEmerson\nEmmit\nErwin\nEulas\nEunice\nEwell\nEzell\nForrest\nFoy\nGaines\nGarland\nGorden\nGreen\nHenery\nHowell\nHudson\nIsaiah\nJonathan\nJones\nJonnie\nJordan\nKelley\nKyle\nLacy\nLawyer\nLemmie\nLevy\nLucian\nMarshal\nMelton\nMike\nMurphy\nMurry\nNoble\nNoel\nOneal\nPalmer\nParker\nRayford\nRobt\nRubin\nScott\nSim\nSmith\nSteve\nTimothy\nWaldo\nWalker\nWalton\nWash\nWelton\nWheeler\nWilfred\nWilliams\nWilton\nJames\nJohn\nWilliam\nRobert\nWillie\nGeorge\nThomas\nCharles\nHenry\nJoseph\nEdward\nFrank\nWalter\nJoe\nCharlie\nFred\nArthur\nWoodrow\nDavid\nClarence\nRoy\nAlbert\nSamuel\nJack\nRichard\nHoward\nErnest\nPaul\nJohnnie\nJessie\nCecil\nSam\nRaymond\nAndrew\nCarl\nEddie\nEugene\nRalph\nJesse\nEarl\nMarvin\nLeroy\nLeon\nEarnest\nHerman\nLouis\nCurtis\nOscar\nFloyd\nClyde\nLuther\nLewis\nGrady\nHarold\nJimmie\nLee\nLeonard\nHarry\nHomer\nHorace\nMelvin\nHerbert\nLawrence\nTom\nBen\nWilson\nEdgar\nHubert\nJim\nHugh\nTommie\nDan\nHarvey\nAlfred\nBenjamin\nRay\nMilton\nOtis\nClifford\nDaniel\nAllen\nLester\nAlvin\nWillard\nElmer\nJohnie\nChester\nClaude\nRufus\nWill\nElbert\nNathaniel\nBennie\nJulius\nMack\nLeo\nDewey\nJohnny\nMarion\nArchie\nRoosevelt\nOliver\nEdwin\nPercy\nGrover\nMorris\nFrancis\nLonnie\nVernon\nBill\nClifton\nGordon\nGuy\nWillis\nEmmett\nSidney\nIsaac\nLloyd\nVirgil\nWallace\nEllis\nNathan\nAlex\nCleveland\nJerry\nLouie\nNorman\nOllie\nWilburn\nClinton\nAaron\nMose\nTroy\nCalvin\nKenneth\nAlton\nAmos\nArnold\nAubrey\nBooker\nMillard\nEd\nHoyt\nMarshall\nTheodore\nFranklin\nJasper\nMoses\nRussell\nBuford\nIra\nDouglas\nFletcher\nLoyd\nPreston\nSilas\nDonald\nWesley\nWilmer\nCharley\nHollis\nMaurice\nTed\nMonroe\nRuben\nSylvester\nTravis\nBilly\nGerald\nMartin\nPhilip\nWiley\nAlexander\nEdmond\nErvin\nMatthew\nRoland\nWarren\nBernard\nBillie\nCoy\nFelix\nGilbert\nJake\nBruce\nClaud\nElijah\nFrederick\nJacob\nSammie\nVictor\nBoyd\nClayton\nColeman\nFreeman\nGlen\nJeff\nJunior\nNoah\nRoscoe\nAustin\nBarney\nCleo\nGaston\nGeneral\nOwen\nPeter\nReuben\nStanley\nWinston\nByron\nDock\nEdd\nEldridge\nGlenn\nJoel\nMarcus\nNelson\nPerry\nPhillip\nPorter\nQuinton\nTalmadge\nUlysses\nWilbur\nAdolph\nBob\nBuster\nFreddie\nGene\nGus\nIsiah\nJulian\nLeslie\nLucius\nMajor\nNed\nSolomon\nTommy\nCornelius\nDennis\nDudley\nJay\nMalcolm\nMax\nMilford\nOcie\nOttis\nPete\nTruman\nWilbert\nAbraham\nAnderson\nBobby\nDave\nElmore\nHouston\nHuey\nIrvin\nIsaiah\nJimmy\nJudge\nMary\nNewton\nOdis\nPrice\nTaylor\nTurner\nBert\nCarlton\nColumbus\nLeamon\nMark\nMarlin\nMurray\nRiley\nSpencer\nStephen\nThurman\nAlonzo\nAnthony\nAron\nConnie\nGrant\nHarris\nHershel\nJewel\nJudson\nLenard\nLevi\nMathew\nMitchell\nOneal\nOrville\nRoger\nSherman\nSteve\nTimothy\nAlto\nAlvie\nBurton\nCarlos\nComer\nEmanuel\nEverett\nEzell\nForrest\nFoster\nHilton\nKermit\nLamar\nLemuel\nLorenza\nMadison\nOdell\nQuentin\nRaymon\nRudolph\nSol\nTheo\nWoodie\nAngus\nArlie\nAugustus\nClark\nClaudie\nElton\nEmmit\nEnoch\nEwell\nFoy\nGarland\nHenderson\nHiram\nHowell\nHuston\nIrby\nLarry\nLeland\nMckinley\nMiles\nOlen\nOtto\nRoss\nShelby\nTalmage\nVester\nWade\nWalker\nWalton\nWatson\nWendell\nWinford\nWyatt\nZack\nAcie\nAdrian\nBelton\nBernie\nCarey\nCarter\nCollins\nCrawford\nDallas\nDewitt\nEarly\nEli\nEligah\nElzie\nEmory\nGarfield\nHarley\nHarrison\nHosie\nJackson\nJefferson\nJerome\nJess\nJonnie\nKing\nLindsey\nLois\nLudie\nMaxie\nMichael\nMorgan\nMyron\nNapoleon\nNewman\nOlin\nOrbie\nOtha\nPat\nPatrick\nPershing\nPrince\nRoyce\nSanford\nThurston\nVan\nWilford\nWinfred\nAlfonso\nAllie\nAndy\nArtie\nArtis\nBernice\nBud\nCasey\nChristopher\nCollie\nDorsey\nDoyle\nDurward\nDwight\nEarlie\nElisha\nEmerson\nEmmitt\nEnnis\nFredrick\nGreen\nHardy\nHerschel\nHilliard\nHobert\nHosea\nJamie\nJoshua\nLawson\nLevie\nLorenzo\nLoyal\nLynn\nManuel\nNeal\nOren\nPalmer\nRosevelt\nRoyal\nSimmie\nSimon\nVincent\nVirgle\nWaymon\nWilton\nAbner\nAdam\nAlphonse\nAlphonso\nAmon\nArlin\nArvin\nAuther\nAvery\nBenny\nBerry\nBishop\nBraxton\nBryant\nBuren\nBurl\nBurt\nClarance\nClearence\nClement\nClovis\nCooper\nDavis\nDee\nDelmar\nDolphus\nEdison\nEgbert\nEmmet\nErskine\nEthel\nEthridge\nEuell\nFelton\nFoch\nForest\nFrazier\nGregory\nHarmon\nHermon\nHudson\nIvan\nIvory\nJeremiah\nJonas\nJosh\nKelly\nLangston\nLowell\nLuke\nMacon\nMurry\nNick\nObie\nOdie\nOra\nOrval\nOtho\nRandolph\nRayford\nReginald\nRupert\nSeth\nTheron\nTitus\nTony\nWashington\nWebb\nZeb\nZollie\nJames\nJohn\nWilliam\nRobert\nWillie\nGeorge\nCharles\nThomas\nHenry\nJoseph\nJoe\nEdward\nWalter\nFrank\nCharlie\nFred\nArthur\nJack\nAlbert\nDavid\nJohnnie\nClarence\nRoy\nRichard\nJesse\nJessie\nRalph\nEddie\nHoward\nPaul\nSamuel\nRaymond\nCecil\nErnest\nLouis\nEugene\nMarvin\nWoodrow\nSam\nOscar\nJimmie\nAndrew\nFloyd\nLee\nGrady\nEarnest\nClyde\nLuther\nCarl\nCurtis\nLeon\nEarl\nHerbert\nLeroy\nHorace\nHarry\nJim\nLeonard\nLewis\nDaniel\nHarold\nJohnie\nEdgar\nHubert\nRufus\nHerman\nAlfred\nHomer\nAlvin\nClifford\nMelvin\nHarvey\nClaude\nOtis\nTommie\nWillard\nLawrence\nNathaniel\nWallace\nDewey\nBenjamin\nLester\nTom\nWill\nLonnie\nMarion\nOliver\nElbert\nBen\nWilson\nChester\nJulius\nNorman\nRoosevelt\nBill\nIsaac\nMilton\nAllen\nElmer\nRay\nMack\nEllis\nLeslie\nCleveland\nEmmett\nHugh\nLeo\nLloyd\nArchie\nBennie\nPercy\nDan\nGrover\nJohnny\nOllie\nTroy\nVirgil\nIra\nTheodore\nAlex\nAmos\nCalvin\nEdwin\nVernon\nWilburn\nMorris\nAaron\nClinton\nEd\nSylvester\nGordon\nLoyd\nClifton\nDonald\nJerry\nLouie\nArnold\nDouglas\nFrancis\nMarshall\nNathan\nWesley\nWillis\nAubrey\nCharley\nDave\nBillie\nBooker\nDennis\nFelix\nGuy\nJunior\nPerry\nRussell\nWilbur\nAlton\nBilly\nGilbert\nMonroe\nPhillip\nQuinton\nSidney\nCoy\nJulian\nKenneth\nMillard\nBuford\nPreston\nGlenn\nJake\nMajor\nMoses\nNed\nWarren\nHouston\nHoyt\nJasper\nMose\nOttis\nTravis\nEarly\nFranklin\nOwen\nRoscoe\nBernard\nClaud\nFreddie\nOlen\nRoland\nBob\nHollis\nJacob\nKermit\nMartin\nOcie\nPete\nSherman\nAustin\nGlen\nLenard\nMalcolm\nSammie\nTommy\nBruce\nFletcher\nFrederick\nJoel\nKing\nLamar\nNelson\nNoah\nOdis\nPeter\nTed\nAlexander\nBuster\nClayton\nColeman\nCrawford\nErvin\nGus\nJackson\nMaurice\nRex\nWiley\nAbraham\nBarney\nEarlie\nElijah\nEverett\nFelton\nForrest\nGene\nHershel\nJeff\nSteve\nAlonzo\nAnderson\nArther\nCleo\nColumbus\nConnie\nDock\nEdd\nElton\nIsiah\nJay\nOdell\nVincent\nWilbert\nAlvie\nDavis\nFreeman\nGeneral\nHaywood\nJerome\nMarcus\nMary\nMax\nNeal\nOtto\nPhilip\nStanley\nWade\nWilmer\nByron\nDallas\nEmmitt\nFrazier\nHerschel\nLowell\nMarlin\nMilford\nMorgan\nReuben\nRiley\nRoss\nThurman\nWinford\nCarlos\nCornelius\nGerald\nHuey\nJudge\nMatthew\nMitchell\nNapoleon\nQuentin\nTalmadge\nTheo\nTimothy\nAlfonso\nAnthony\nAugustus\nBrady\nDempsey\nElvin\nHermon\nHiram\nHobert\nJimmy\nLevi\nLucius\nMark\nObie\nOrville\nRudolph\nSanford\nSilas\nVictor\nWyatt\nAdolph\nAlphonso\nAron\nBert\nCarlton\nClaudie\nCliff\nDillard\nElisha\nEwell\nEzra\nHuston\nJefferson\nLonzo\nOtha\nPatrick\nRayford\nRosevelt\nRuben\nSandy\nShelby\nSolomon\nSterling\nWilton\nArtis\nDewitt\nGarland\nHarris\nHarrison\nIrvin\nJewel\nRonald\nRubin\nVerbon\nWalker\nWinfred\nZack\nAbe\nAdolphus\nAlto\nBud\nClark\nDamon\nDee\nDwight\nEnoch\nFrankie\nHosea\nIke\nJeffie\nJess\nLarry\nLawson\nMathew\nNewton\nNick\nNolan\nOlin\nOra\nPalmer\nPrince\nRandolph\nRoger\nShirley\nSimon\nTalmage\nTaylor\nTerry\nTillman\nWashington\nWilford\nAcie\nArvin\nBelton\nBobby\nBoyd\nBraxton\nClemon\nComer\nDoyle\nElmore\nEmery\nEmory\nGaston\nHarmon\nHilliard\nJohnson\nKelly\nKirby\nLafayette\nLeland\nLemuel\nLorenzo\nLovell\nMason\nMike\nMurphy\nNoble\nOneal\nPorter\nThurston\nTruman\nUlysses\nWalton\nWaymon\nWinston\nAl\nAlford\nAnnie\nArlin\nAsa\nAuther\nBishop\nBurl\nCarmon\nChas\nChristopher\nCicero\nClem\nCleve\nDelbert\nDudley\nEdmond\nEdmund\nEldon\nElige\nEllie\nEmerson\nErskine\nEssie\nEvans\nEzell\nForest\nFredrick\nGrant\nHowell\nIsadore\nIvory\nJodie\nJohny\nJonathan\nJonnie\nJoshua\nJudson\nLeamon\nLoyal\nLuke\nLynn\nMadison\nManuel\nMckinley\nMiles\nNeil\nOdie\nParker\nPrice\nRaymon\nRogers\nRoyce\nRuby\nSim\nStephen\nTheron\nThornton\nTobe\nVan\nVirgle\nWash\nWilber\nAdrian\nAlphonse\nAlva\nAndy\nAngus\nAudrey\nAuthor\nAvery\nBenton\nBernice\nBobbie\nBryant\nBuck\nBuddie\nBuel\nCallie\nCarey\nCarter\nColonel\nDalton\nDon\nDuke\nEdison\nEldridge\nElie\nElzie\nEmanuel\nEmbry\nEnnis\nEthel\nEthridge\nEverette\nEzekiel\nFarris\nFulton\nGolden\nGreen\nGriffin\nHamilton\nHardy\nHarley\nHarvie\nHezekiah\nHosie\nIrby\nIvan\nIvy\nJewell\nJonas\nJordan\nJosephus\nJosh\nJulious\nJune\nKelley\nLecil\nLevy\nLindsey\nLois\nMaxwell\nMelton\nMurry\nNolen\nOrbie\nOren\nOris\nPat\nPrentis\nSanders\nSims\nSpencer\nSpurgeon\nStewart\nTomie\nTony\nTurner\nVivian\nWayne\nWebster\nWestley\nWoodie\nJames\nJohn\nWilliam\nRobert\nWillie\nGeorge\nCharles\nHenry\nThomas\nJoseph\nEdward\nFrank\nJoe\nCharlie\nWalter\nFred\nJack\nClarence\nArthur\nDavid\nAlbert\nRichard\nSamuel\nEddie\nJohnnie\nRoy\nCecil\nHoward\nJessie\nEugene\nPaul\nRaymond\nJesse\nCarl\nEarl\nAndrew\nLeon\nErnest\nJimmie\nLouis\nRalph\nHarold\nHerman\nOscar\nHarry\nHerbert\nSam\nMarvin\nClyde\nFloyd\nLewis\nCurtis\nLeonard\nWarren\nLee\nLeroy\nHubert\nMelvin\nDaniel\nLuther\nHorace\nClaude\nEarnest\nGrady\nLawrence\nElbert\nJohnie\nOtis\nRufus\nHugh\nMilton\nLonnie\nWillard\nAlvin\nHomer\nTom\nAlfred\nMarion\nDewey\nJim\nNathaniel\nNorman\nWoodrow\nAllen\nClifford\nBenjamin\nCalvin\nWallace\nBill\nEdgar\nWillis\nVirgil\nBennie\nOliver\nIsaac\nRay\nWill\nLeo\nRoosevelt\nCleveland\nDonald\nHarvey\nTommie\nPercy\nBen\nJulius\nArchie\nJohnny\nLester\nMack\nAlton\nChester\nDan\nElmer\nLeslie\nGrover\nLouie\nJerry\nSidney\nPreston\nClifton\nClinton\nEllis\nEmmett\nKenneth\nAlex\nVernon\nDouglas\nRussell\nBilly\nBuford\nEdwin\nLloyd\nSylvester\nArnold\nFrancis\nGlenn\nGordon\nMorris\nLoyd\nMoses\nTheodore\nAubrey\nFranklin\nOllie\nWilson\nAaron\nAmos\nDave\nGilbert\nMarshall\nMillard\nOwen\nRoscoe\nBooker\nHollis\nTroy\nWilburn\nFelix\nFrederick\nMose\nPeter\nRoland\nWesley\nBernard\nBob\nClaud\nClayton\nDennis\nEd\nEverett\nGuy\nHouston\nJulian\nNelson\nWilmer\nAustin\nBillie\nIra\nPhillip\nSammie\nTravis\nAnderson\nHoyt\nJake\nMaurice\nNed\nAlexander\nJeff\nJimmy\nCharley\nNathan\nOdis\nQuinton\nWiley\nFreddie\nJoel\nMalcolm\nPerry\nReuben\nSteve\nWilbert\nAnthony\nDock\nGerald\nJasper\nJunior\nLamar\nMajor\nMurray\nOttis\nTommy\nCarlton\nNoah\nOdell\nSherman\nArther\nCornelius\nHarrison\nIrvin\nJefferson\nLowell\nOcie\nWilbur\nAbraham\nCoy\nEdmond\nElijah\nEmory\nFreeman\nJay\nMark\nMax\nNeal\nOlen\nRoss\nSolomon\nStanley\nVictor\nCleo\nDallas\nFletcher\nFoster\nIsiah\nKing\nMarcus\nMonroe\nMorgan\nPhilip\nRudolph\nSimon\nUlysses\nAlfonso\nBuster\nColeman\nColumbus\nEarlie\nEarly\nElton\nForrest\nHarding\nMatthew\nMckinley\nPorter\nTalmadge\nThurman\nWalton\nWinston\nBarney\nBruce\nComer\nElmo\nElvin\nEmmitt\nGus\nLeamon\nLenard\nLucius\nMartin\nMitchell\nSilas\nSpencer\nVan\nVincent\nAlonzo\nAlto\nAron\nBernice\nCarlos\nClaudie\nGlen\nHuey\nLarry\nLuke\nMilford\nNick\nOtto\nRayford\nRex\nRuben\nWade\nWinfred\nAlvie\nBert\nCarey\nDoyle\nEmanuel\nGene\nGeneral\nHarris\nHaywood\nHershel\nJacob\nJudge\nKermit\nLovell\nManuel\nMason\nNolan\nOdie\nOlin\nPete\nRiley\nRoger\nRosevelt\nRuby\nRupert\nShelby\nSterling\nTaylor\nTheo\nTurner\nWalker\nAlphonso\nArlie\nBobbie\nBrady\nChristopher\nDempsey\nDenver\nDon\nElmore\nErvin\nGarfield\nHiram\nHobert\nIsaiah\nJohnson\nLawson\nLindsey\nMarlin\nObie\nOneal\nRubin\nTed\nTruman\nWilford\nAbner\nAdam\nArtis\nBlouncie\nBoyd\nBuddy\nCleve\nConrad\nDalton\nFelton\nForest\nFoy\nHayden\nHazel\nHenderson\nHermon\nJoshua\nKelly\nLevi\nMike\nOrville\nPatrick\nRonald\nSanford\nStephen\nTerry\nTony\nWilber\nWilton\nAlfonza\nAllan\nAllie\nBraxton\nBud\nByron\nCarroll\nCasey\nCliff\nDudley\nDurward\nElliott\nGuss\nIssac\nJeremiah\nJewel\nLorenza\nMaxwell\nMichael\nMurphy\nNolen\nOtha\nRamon\nRandall\nRandolph\nRaymon\nRoyce\nVirgle\nWarner\nAlonza\nAnnie\nArlin\nAuston\nAuthor\nBenjiman\nBishop\nBradley\nBuck\nCarter\nClark\nCleophus\nClovis\nColonel\nCrawford\nDewitt\nDolphus\nDwight\nEarle\nElgin\nEmmit\nEnnis\nEnoch\nEvan\nEwell\nEzra\nGrant\nHardin\nHardy\nHerschel\nHilton\nJackson\nJerome\nJess\nJonathan\nJonnie\nLenord\nMary\nOlan\nOrbie\nOssie\nPalmer\nPrice\nRoyal\nSammy\nSandy\nSaul\nShirley\nSmith\nTalmage\nTimothy\nVerbon\nWash\nWaymon\nWinford\nWoodie\nAlva\nAlvis\nArvel\nAsa\nAuther\nBelton\nBerry\nBeverly\nBobby\nBryant\nBuren\nCary\nCephus\nChesley\nCleven\nCollie\nConnie\nDavis\nEdd\nEli\nElwood\nElzie\nEric\nEssie\nEtheridge\nEzell\nFarris\nFate\nFrankie\nGradie\nGranville\nHarmon\nHershell\nHillard\nHolland\nHorton\nHowell\nHuston\nIke\nIrby\nIrving\nJackie\nJean\nJodie\nJonas\nLafayette\nLarkin\nLaurence\nLeander\nLehman\nLemon\nLessie\nLevie\nLonie\nLorenzo\nLouise\nLudie\nMacon\nMalcom\nMathew\nMilburn\nMillie\nNewman\nNewton\nNicholas\nNoble\nNorris\nOren\nReese\nReginald\nRichmond\nRobbie\nRogers\nThaddeus\nTracy\nVester\nWashington\nWendell\nWheeler\nWyatt\nJames\nWilliam\nJohn\nRobert\nWillie\nGeorge\nCharles\nThomas\nHenry\nJoseph\nFrank\nEdward\nWalter\nJoe\nCharlie\nAlbert\nArthur\nFred\nJack\nClarence\nDavid\nHoward\nSamuel\nRichard\nJohnnie\nRoy\nRalph\nEugene\nPaul\nWarren\nErnest\nJessie\nEddie\nCecil\nRaymond\nCarl\nHarold\nJesse\nAndrew\nSam\nEarl\nLeonard\nLouis\nJimmie\nMarvin\nClyde\nOscar\nHarry\nHerman\nLee\nEarnest\nCurtis\nGrady\nHerbert\nHubert\nLeon\nHorace\nLeroy\nLewis\nLuther\nFloyd\nMilton\nJohnie\nAlfred\nWillard\nDaniel\nLawrence\nMelvin\nOtis\nBen\nHomer\nMarion\nHarvey\nJim\nNathaniel\nRufus\nWallace\nClaude\nClifford\nGrover\nKenneth\nLester\nJulius\nNorman\nEdgar\nBenjamin\nHugh\nCalvin\nDewey\nAlvin\nTom\nWill\nElbert\nMack\nOliver\nAllen\nEdwin\nLeo\nTommie\nBennie\nCleveland\nLouie\nAaron\nPercy\nDonald\nElmer\nBilly\nChester\nWoodrow\nRay\nRoosevelt\nLonnie\nArchie\nJohnny\nBill\nVernon\nLloyd\nWillis\nTravis\nClifton\nDan\nHollis\nSidney\nTroy\nWilson\nDouglas\nVirgil\nIsaac\nOllie\nAmos\nClinton\nEllis\nAlton\nBillie\nFreddie\nGordon\nNathan\nRoland\nRussell\nAbraham\nAubrey\nEd\nEmmett\nGlenn\nGuy\nJerry\nLoyd\nWayne\nWiley\nLeslie\nFrancis\nArnold\nWesley\nElijah\nFranklin\nWilmer\nHoyt\nIra\nJoel\nMarshall\nMartin\nMaurice\nBernard\nBuford\nMalcolm\nMatthew\nPhillip\nTheodore\nWilbert\nWilburn\nDennis\nJunior\nPerry\nWilbur\nAlex\nCharley\nClayton\nFletcher\nMillard\nMorris\nOdell\nOttis\nPeter\nPreston\nBooker\nBruce\nEverett\nHarding\nJulian\nMose\nMoses\nPete\nReuben\nSylvester\nClaud\nColumbus\nGerald\nJasper\nOdis\nOwen\nBob\nCoy\nHouston\nRuben\nSammie\nTommy\nColeman\nJake\nLamar\nMitchell\nMorgan\nNoah\nElvin\nJeff\nWade\nAnderson\nAnthony\nBarney\nErskine\nFrederick\nCarlton\nDave\nDoyle\nEarlie\nHerschel\nJay\nNed\nOcie\nRoscoe\nRudolph\nWinford\nCleo\nCornelius\nErvin\nHershel\nHuey\nIsaiah\nMajor\nOlin\nOtha\nRex\nSilas\nVictor\nWinston\nAlexander\nFelix\nGlen\nHardy\nHarmon\nJimmy\nLeldon\nLenard\nPhilip\nRiley\nVan\nBert\nEli\nGarland\nJackson\nJacob\nLorenzo\nMarcus\nMark\nMary\nMax\nMonroe\nNelson\nRaymon\nSimon\nTalmadge\nWinfred\nAudrey\nAustin\nBernice\nBerry\nBud\nDock\nEmanuel\nEzra\nGene\nGrant\nGus\nJefferson\nJerome\nLowell\nNeal\nOlen\nReginald\nRoss\nSolomon\nStanley\nStephen\nSteve\nVester\nClarance\nDalton\nDempsey\nForrest\nFredrick\nFreeman\nGilbert\nIsiah\nKing\nLucius\nManuel\nOneal\nTed\nTerry\nTheo\nTimothy\nTruman\nAndy\nArther\nByron\nDallas\nDewitt\nDwight\nEdmond\nEldridge\nElmore\nElton\nEnoch\nFord\nFoy\nGeneral\nHermon\nLevi\nLorenza\nMiles\nNorris\nOrville\nRoger\nRoyce\nSherman\nThurman\nAlphonso\nBurl\nCarey\nCarroll\nCary\nChristopher\nClaudie\nClay\nDavis\nEmmitt\nEzell\nFelton\nGraham\nHarrison\nLovell\nLuke\nMckinley\nMike\nNewman\nQuinton\nRogers\nSanford\nScott\nTheron\nAbe\nAdam\nAron\nAuther\nAuthur\nBedford\nBobbie\nBuster\nClark\nEarly\nEdd\nEdmund\nElliott\nEmmet\nEssie\nFoster\nHardin\nHarvie\nHaywood\nHobert\nJewel\nJudge\nLarry\nLeamon\nLemuel\nMason\nMichael\nOrbie\nOtto\nPrice\nPrince\nRandall\nRandolph\nShelby\nSimpson\nSmith\nSterling\nThurston\nUlysses\nWash\nWilford\nWillam\nWyman\nZollie\nAlec\nAlford\nAlto\nAlvis\nAngus\nArvel\nBoyd\nCarlos\nChris\nCleve\nConnie\nCrawford\nDon\nDorsey\nEarley\nEdison\nElwood\nEric\nEvan\nEwell\nGaines\nHarris\nHazel\nHenery\nHilton\nHiram\nIvan\nJason\nJoshua\nLafayette\nLewie\nMalcom\nMelton\nMilford\nMurray\nNapoleon\nNewton\nObie\nPorter\nRoyal\nRuby\nWalker\nWarner\nWendell\nAbner\nAlonzo\nArlie\nAubry\nAuthor\nAvery\nBasil\nBenjiman\nBenny\nBobby\nBoston\nCleophas\nClint\nColonel\nDelbert\nDeward\nDurwood\nEdsel\nElisha\nElizabeth\nElmo\nGaston\nHarden\nHugo\nJamie\nLecil\nLeeroy\nLevie\nLon\nLonie\nLucious\nMadison\nMurry\nNolan\nOssie\nOzell\nRayford\nRosevelt\nShelton\nSpurgeon\nSteven\nTaylor\nTurner\nWalton\nWebster\nWilton\nAdolphus\nAlfonza\nAlonza\nAnnie\nArtis\nAugustus\nBishop\nBrady\nBraxton\nCollie\nCollins\nConrad\nDoris\nDudley\nDurward\nElzie\nEmerson\nEverette\nFate\nGlover\nGranville\nHardie\nHarley\nHurschel\nIke\nIrvin\nIsac\nJeremiah\nJohnson\nJohny\nJordan\nJudson\nKelley\nLevy\nLittle\nLoyce\nLucian\nLudie\nMacon\nManley\nMarian\nMaxwell\nNeil\nNoel\nNolen\nOren\nPalmer\nPatrick\nPurvis\nRubin\nSampson\nSandy\nShelley\nShellie\nSid\nSullivan\nSydney\nTalmage\nTony\nVann\nVerbon\nVincent\nVirge\nWheeler\nWilfred\nWindell\nWoodie\nWyatt\nJames\nWilliam\nJohn\nRobert\nWillie\nCharles\nGeorge\nHenry\nThomas\nJoseph\nEdward\nJoe\nWalter\nCharlie\nFrank\nJack\nDavid\nClarence\nArthur\nFred\nAlbert\nEugene\nSamuel\nRoy\nJohnnie\nRichard\nJessie\nEddie\nPaul\nHoward\nCecil\nHarold\nErnest\nJesse\nRalph\nHerman\nEarl\nSam\nJimmie\nHarry\nMarvin\nLeon\nAndrew\nCarl\nRaymond\nLuther\nEarnest\nLeroy\nWarren\nCurtis\nLouis\nLee\nHorace\nHubert\nOtis\nLewis\nClyde\nOscar\nBennie\nFloyd\nLeonard\nHerbert\nMelvin\nAlfred\nTommie\nMilton\nRay\nHomer\nWillard\nDaniel\nGrady\nLawrence\nBill\nNathaniel\nRufus\nTom\nWallace\nAlvin\nJohnie\nBilly\nChester\nOliver\nClaude\nHugh\nLeo\nAllen\nBenjamin\nJim\nMarion\nEllis\nGrover\nHarvey\nMack\nNorman\nCalvin\nJulius\nDewey\nDonald\nLester\nLonnie\nElbert\nElmer\nClifford\nClinton\nDan\nWill\nDouglas\nEdgar\nAaron\nArchie\nAubrey\nGordon\nPercy\nJunior\nLloyd\nWoodrow\nJerry\nClifton\nEdwin\nEmmett\nJohnny\nAlex\nCleveland\nMorris\nRoosevelt\nAlton\nSidney\nKenneth\nWillis\nBen\nFrancis\nVirgil\nBernard\nVernon\nGlenn\nIsaac\nSylvester\nTravis\nElijah\nLoyd\nRoland\nRussell\nTroy\nMarshall\nHouston\nOllie\nWesley\nWilbert\nBuford\nJake\nOdis\nPhillip\nPreston\nAmos\nIra\nLeslie\nLouie\nTheodore\nEd\nGuy\nNathan\nFreddie\nGerald\nHollis\nMajor\nMatthew\nMillard\nMoses\nSammie\nWilson\nAlexander\nBruce\nHoyt\nMaurice\nRex\nClaud\nDave\nErvin\nJasper\nJeff\nPerry\nPeter\nTommy\nArnold\nBillie\nJulian\nMonroe\nWiley\nBob\nDennis\nFranklin\nHarrison\nMalcolm\nRoss\nBooker\nClayton\nEverett\nFelix\nFrederick\nHuey\nLenard\nMartin\nMose\nRuben\nWinston\nAnderson\nDock\nFletcher\nHershel\nStanley\nVictor\nWilbur\nJacob\nMichael\nNoah\nSherman\nAlonzo\nArther\nEdmond\nFreeman\nIsiah\nMark\nMax\nNelson\nRayford\nRudolph\nWilburn\nCarlos\nCoy\nGilbert\nOlen\nOttis\nRoger\nRoscoe\nTimothy\nWayne\nAustin\nCarlton\nColumbus\nElton\nEmory\nGlen\nJackson\nJimmy\nMarcus\nOdell\nPhilip\nWilmer\nAlvie\nBarney\nJay\nLucious\nNed\nRoyce\nSolomon\nThurman\nWalker\nBuster\nCharley\nDalton\nEarly\nEmanuel\nErskine\nIrvin\nJefferson\nJoel\nJudge\nLevi\nLucius\nMckinley\nRaymon\nReuben\nRiley\nRogers\nTalmadge\nUlysses\nAnthony\nBert\nBrady\nCornelius\nGaston\nGene\nHermon\nHiram\nHuston\nKing\nLowell\nMarlin\nMilford\nOwen\nPrince\nStephen\nTed\nColeman\nComer\nEdison\nEdsel\nEzra\nHaywood\nIssac\nJerome\nLamar\nLuke\nMurray\nNeal\nOtto\nPete\nSteve\nAdam\nAndy\nBoyd\nBurl\nByron\nClark\nCleo\nEarlie\nElvin\nEmmitt\nFelton\nForrest\nGarland\nGeneral\nIsaiah\nLemuel\nLovell\nManuel\nMiles\nOtha\nSilas\nTheo\nTruman\nWoodie\nBernice\nBobbie\nBobby\nClay\nConnie\nDon\nEdd\nEli\nEllie\nEzell\nFord\nFoster\nHarris\nHerschel\nHobert\nLarry\nLevy\nMaxwell\nMike\nObie\nOrville\nOssie\nQuinton\nSanford\nShelby\nTerry\nVan\nVincent\nWilton\nArlin\nAron\nAugustus\nBrooks\nBryant\nBud\nCary\nClarance\nDallas\nDavis\nDempsey\nElmore\nFoy\nHarding\nHardy\nHarvie\nHilliard\nHosea\nJosh\nLindsey\nMary\nMaxie\nNapoleon\nOcie\nOneal\nSpencer\nThornton\nTomie\nVester\nWade\nWalton\nWinfred\nAbraham\nAlfonso\nAlto\nAuston\nBrice\nBurt\nCarey\nCarlis\nClem\nCleophus\nCleve\nCollis\nDee\nDewitt\nDoyle\nDwight\nEarle\nEldridge\nEssie\nEulas\nGaines\nGorden\nGrant\nGuss\nHampton\nHarmon\nHayward\nHilton\nIvan\nJonnie\nKermit\nLaurence\nLeamon\nLois\nMason\nNeil\nNewton\nNick\nOdie\nPalmer\nRaleigh\nRupert\nShelley\nVernell\nWinford\nAbe\nAbner\nAdolph\nAmon\nAuburn\nAuthor\nBurley\nChristopher\nClaudie\nCliff\nCollie\nElisha\nElliott\nEric\nEzekiel\nHenderson\nHenery\nHosie\nIke\nJodie\nJonah\nKarl\nLacy\nLafayette\nLeland\nLeldon\nLesley\nLewie\nLionel\nMalvin\nMorgan\nMurry\nNorris\nOlin\nOmer\nOrval\nParker\nPat\nRandolph\nRosevelt\nSaul\nSimon\nSterling\nTony\nWebster\nWendell\nWilfred\nWilliams\nZack\nAlford\nAlmon\nAnnie\nArtie\nArtis\nAsa\nAudrey\nAugusta\nAuthur\nBasil\nBryan\nBuddie\nConrad\nCrawford\nCullen\nDean\nDexter\nDonnie\nDorris\nDudley\nEligah\nElmo\nEmil\nEnnis\nEnoch\nEunice\nEverette\nFate\nForest\nFredrick\nFrench\nGarfield\nGarrett\nGiles\nGraham\nGranville\nGreen\nGus\nHarley\nHolland\nHowell\nHuel\nHughie\nHulon\nIvey\nIvory\nJeremiah\nJewel\nJohney\nJohnson\nJudson\nKyle\nLawson\nLecil\nLenton\nLessie\nLige\nLonzie\nLorenza\nLorenzo\nLove\nLudie\nLynn\nMacon\nMalcom\nMathew\nMitchell\nNewman\nNoble\nNoel\nNolan\nOrbie\nPatrick\nPorter\nPrice\nRayburn\nReed\nRodney\nRonald\nSandy\nScott\nShelly\nSid\nTaylor\nTillman\nVerbon\nVirgle\nWardell\nWash\nWeldon\nWilber\nWoodroe\nJames\nWilliam\nJohn\nRobert\nWillie\nCharles\nGeorge\nThomas\nHenry\nJoseph\nFrank\nEdward\nWalter\nJoe\nCharlie\nFred\nJack\nDavid\nAlbert\nClarence\nRoy\nArthur\nHoward\nRichard\nSamuel\nEddie\nJohnnie\nPaul\nRalph\nJessie\nEugene\nJimmie\nEarl\nHarold\nErnest\nCarl\nLouis\nAndrew\nJesse\nRaymond\nMarvin\nCalvin\nSam\nCecil\nLuther\nCurtis\nHerman\nLee\nOscar\nClyde\nLewis\nEarnest\nHerbert\nLeon\nLeroy\nDaniel\nFloyd\nLeonard\nHorace\nLawrence\nHubert\nMelvin\nGrady\nBilly\nHomer\nWarren\nDewey\nHarry\nTommie\nClifford\nEdgar\nOtis\nAlfred\nClaude\nWallace\nMarion\nMilton\nRay\nJohnie\nNorman\nBenjamin\nJohnny\nLeo\nRufus\nJim\nOliver\nTom\nWill\nBen\nBennie\nBill\nElmer\nAlvin\nLester\nDonald\nAllen\nHugh\nNathaniel\nWillis\nArchie\nElbert\nMack\nChester\nDan\nMorris\nWillard\nRoosevelt\nDouglas\nLouie\nHarvey\nWilson\nJerry\nPercy\nJulius\nKenneth\nVirgil\nGrover\nLloyd\nWiley\nEllis\nClifton\nVernon\nEdwin\nGordon\nFrancis\nFreddie\nAubrey\nLonnie\nOllie\nLoyd\nPreston\nSidney\nSylvester\nWoodrow\nAlton\nBuford\nDave\nIsaac\nEmmett\nIra\nNathan\nArnold\nBernard\nPeter\nWilburn\nAaron\nGilbert\nTheodore\nWilbur\nAmos\nJoel\nJunior\nLeslie\nHoyt\nTroy\nWesley\nAlex\nBooker\nCleveland\nGlenn\nSteve\nBruce\nClayton\nEd\nEverett\nMoses\nOdis\nTravis\nWilmer\nGuy\nJasper\nJeff\nBillie\nClaud\nDennis\nElijah\nMalcolm\nMartin\nMillard\nOlen\nRussell\nTommy\nColumbus\nFletcher\nFranklin\nHollis\nJimmy\nNeal\nPerry\nRoscoe\nGene\nGlen\nLamar\nNelson\nPhillip\nRuben\nFrederick\nMonroe\nRudolph\nBuster\nHouston\nMarshall\nMitchell\nNoah\nOdell\nReuben\nStanley\nBob\nBobby\nErvin\nHershel\nJacob\nLenard\nMaurice\nMose\nOttis\nRiley\nRoland\nAlexander\nByron\nGerald\nIsiah\nJulian\nRex\nDoyle\nFelix\nJackson\nJefferson\nMarcus\nMatthew\nMax\nNapoleon\nShelby\nTalmadge\nArther\nClaudie\nClinton\nColeman\nCoy\nHarrison\nJake\nMark\nRandolph\nSammie\nTimothy\nVictor\nVincent\nWilbert\nWinford\nAbraham\nAlonzo\nBert\nCharley\nCornelius\nForrest\nHaywood\nLarry\nMajor\nOtto\nSherman\nSolomon\nUlysses\nWalker\nWinfred\nWinston\nAdrian\nAron\nClark\nCleo\nEmmitt\nHermon\nJay\nJerome\nJoshua\nLowell\nManuel\nThurman\nDelbert\nEdsel\nElisha\nElton\nForest\nHiram\nHuey\nIke\nIrvin\nJudge\nMckinley\nOrville\nOwen\nStephen\nTed\nAbe\nAdolph\nAnderson\nAnthony\nBarney\nBernice\nDallas\nDwight\nEarly\nEldridge\nEzell\nFoy\nFredrick\nGeneral\nHerschel\nLorenza\nMadison\nMary\nMaxie\nMiles\nMurray\nPete\nPrince\nReginald\nRubin\nSilas\nTerry\nTillman\nVester\nBobbie\nBoyd\nBrady\nCarlton\nEarlie\nEdd\nEdmond\nEnoch\nErskine\nEverette\nEzra\nFord\nFreeman\nHarvie\nHenderson\nJoesph\nLucius\nObie\nOcie\nPorter\nRaymon\nRoger\nSanford\nSpencer\nTheo\nAlva\nAugustus\nBuck\nBuddy\nClarance\nClem\nCleophus\nConnie\nDock\nDozier\nElmo\nGraham\nGranville\nGus\nHobert\nHuston\nJudson\nKing\nLacy\nLeland\nLuke\nMathew\nMurphy\nNed\nNolen\nOneal\nPatrick\nRonald\nTaylor\nTruman\nWebster\nAbner\nAlonza\nAustin\nBennett\nBonnie\nBud\nBuddie\nCarlos\nCarter\nChristopher\nClemon\nDee\nDon\nGarland\nGuss\nHarlan\nHayward\nHosea\nHosie\nIsaiah\nJewel\nJohny\nJonnie\nKelly\nLavern\nLindsey\nLois\nLucious\nMurry\nNewton\nOssie\nOtha\nPalmer\nRoyce\nSimon\nTony\nVan\nVivian\nWade\nWilliams\nWilton\nAcie\nAlford\nAlphonso\nAlto\nAnnie\nAuther\nBelton\nBenny\nBradford\nClay\nClide\nDavis\nDewitt\nDolphus\nEdmund\nElmore\nElvin\nEmanuel\nErwin\nFelton\nFoster\nFrankie\nGaines\nGarfield\nGrant\nHarris\nHiawatha\nHilary\nHilton\nIvory\nJewell\nJones\nJosh\nLafayette\nLarence\nLawson\nLincoln\nLionel\nLovell\nLoyal\nLynn\nMaxwell\nMichael\nMilford\nNorris\nOlan\nPat\nQuinton\nRayburn\nRayford\nRichmond\nRosco\nRosevelt\nRoyal\nSaul\nSterling\nVerbon\nWilford\nAlfonzo\nAllie\nAlvie\nAmon\nAngelo\nArlin\nAsa\nBascom\nBasil\nBenjaman\nBernie\nBerry\nBrandon\nBryant\nBurl\nBurnice\nCary\nCody\nCoolidge\nCrawford\nDale\nDalton\nDarwin\nDavie\nDempsey\nDenson\nDoris\nDoyal\nDudley\nElvis\nEmery\nEmmit\nEvan\nGarvin\nGaston\nGorden\nGreen\nHamp\nHampton\nHardy\nHarmon\nHilliard\nJamie\nJc\nJohnson\nJonathan\nKelley\nKirk\nLeamon\nLecil\nLevi\nLillie\nLucian\nMahlon\nMelton\nMike\nNeil\nOlin\nOpal\nOren\nPhilip\nReubin\nRoss\nRueben\nSammy\nSandy\nScott\nShelly\nTalmage\nTheron\nTolbert\nTurner\nWash\nWatson\nWendell\nWylie\nWyman\nJames\nWilliam\nJohn\nRobert\nWillie\nCharles\nGeorge\nHenry\nThomas\nJoseph\nEdward\nWalter\nJoe\nCharlie\nFrank\nJack\nRichard\nRoy\nFred\nDavid\nAlbert\nCalvin\nClarence\nArthur\nHoward\nJohnnie\nSamuel\nEddie\nRalph\nEugene\nHarold\nPaul\nJessie\nJesse\nRaymond\nEarl\nErnest\nMarvin\nJimmie\nCarl\nBilly\nAndrew\nCecil\nSam\nEarnest\nLee\nLeroy\nLouis\nCurtis\nLeon\nLewis\nFloyd\nOscar\nHerbert\nHorace\nMelvin\nLeonard\nLuther\nHerman\nDaniel\nClyde\nMilton\nClifford\nDonald\nAlfred\nClaude\nElbert\nHarry\nNorman\nGrady\nRay\nHubert\nKenneth\nEdgar\nHomer\nOtis\nRufus\nLonnie\nTom\nBen\nHugh\nLawrence\nBenjamin\nHarvey\nTommie\nAlvin\nNathaniel\nMarion\nAllen\nElmer\nJunior\nJim\nJohnny\nWallace\nBennie\nBill\nJerry\nJohnie\nPercy\nLeo\nDewey\nDouglas\nOliver\nWillis\nGrover\nLester\nRoosevelt\nLeslie\nMorris\nSidney\nWoodrow\nCleveland\nGlenn\nWill\nArchie\nJulius\nWillard\nDan\nEllis\nVernon\nArnold\nAubrey\nAlex\nBillie\nClifton\nGordon\nIsaac\nWarren\nWesley\nChester\nEdwin\nLouie\nNathan\nOllie\nFreddie\nMack\nRussell\nTroy\nAaron\nBuford\nEmmett\nTheodore\nVirgil\nAlton\nAmos\nLoyd\nClinton\nGerald\nBobby\nBooker\nGuy\nIra\nMonroe\nTommy\nWilson\nElijah\nMillard\nRoland\nHoyt\nLloyd\nPerry\nDennis\nWilbur\nBernard\nCoy\nLamar\nPhillip\nReuben\nSylvester\nClayton\nFrancis\nFranklin\nJacob\nMoses\nRudolph\nBob\nEd\nFelix\nGilbert\nHollis\nTravis\nWilburn\nWilmer\nGene\nHuey\nMartin\nSammie\nWiley\nClaud\nJefferson\nLowell\nOdell\nTalmadge\nAbraham\nErskine\nFletcher\nJoel\nMatthew\nPreston\nAlexander\nBruce\nHouston\nIsiah\nJake\nJasper\nMarshall\nRuben\nByron\nDave\nErvin\nIsaiah\nJackson\nMajor\nMalcolm\nEverett\nJeff\nMax\nMose\nNed\nStanley\nUlysses\nWilbert\nAlonzo\nCarlton\nCharley\nCleo\nFrederick\nHarrison\nIke\nJimmy\nLenard\nMarlin\nMilford\nOlen\nOwen\nTed\nWinston\nBert\nCarlos\nCornelius\nDock\nDon\nEmory\nNelson\nNoah\nObie\nOcie\nPeter\nRex\nRiley\nSterling\nSteve\nThurman\nElvin\nIrby\nJerome\nManuel\nMaurice\nMitchell\nOdis\nOneal\nOtto\nSherman\nAnthony\nArther\nEarly\nEdsel\nEmmitt\nFoy\nGarland\nGlen\nHarvie\nHerschel\nJulian\nKing\nLevi\nLuke\nRoscoe\nSilas\nWayne\nAustin\nBrady\nBryant\nColeman\nColumbus\nEdd\nEdmond\nElton\nHershel\nHiram\nLarry\nLincoln\nMiles\nMurray\nNorris\nRoger\nRoss\nSimon\nTerry\nWilton\nAlford\nAlvis\nAvery\nBoyd\nCleophus\nCoolidge\nDallas\nDavis\nDoyle\nEvans\nFoster\nJudge\nMark\nMaxie\nMorgan\nNeal\nPete\nRubin\nStephen\nTheron\nTruman\nVan\nVictor\nAlto\nAnderson\nBelton\nEmanuel\nFelton\nForrest\nFredrick\nGus\nHarris\nLecil\nMichael\nOtha\nPatrick\nPhilip\nPorter\nPrince\nRayford\nRaymon\nWade\nWinford\nWinfred\nWoodie\nAndy\nAron\nBarney\nBonnie\nBuddy\nCarey\nEarlie\nEldridge\nElmore\nEnoch\nFarris\nGrant\nHenderson\nJoshua\nLeamon\nLynn\nMary\nMckinley\nNeil\nNoble\nNolan\nOttis\nPat\nRonald\nRoyce\nSanford\nSolomon\nTalmage\nWalker\nAdam\nAdolph\nAdrian\nAlvie\nAnnie\nAuther\nBobbie\nBryce\nBuster\nConnie\nEldred\nEmery\nEzell\nEzra\nFreeman\nGuss\nHansel\nHarley\nHayward\nHermon\nIrvin\nIssac\nJeremiah\nJones\nKermit\nKyle\nLorenzo\nMalcom\nMarcus\nMason\nMurphy\nMurry\nNapoleon\nQuinton\nRogers\nSandy\nShelby\nSim\nTheo\nTimothy\nTurner\nWyatt\nAlva\nArlie\nArtis\nBernice\nBuck\nBud\nBurnice\nCarter\nClint\nComer\nDarrell\nDewitt\nDudley\nDwight\nElisha\nElmo\nEzekiel\nGaines\nGarfield\nGolden\nHamilton\nHarmon\nHilton\nHobert\nHuel\nIvory\nJewel\nKelly\nLeland\nLeldon\nLemon\nLorenza\nLouise\nLovell\nLyman\nMadison\nMaxwell\nMildred\nNewman\nNewton\nOdie\nOlan\nOrville\nOzell\nPhil\nRansom\nRichmond\nRussel\nTony\nVester\nVincent\nWardell\nZack\nAddison\nAdolphus\nAlan\nAngelo\nAsa\nAuthor\nBenard\nBenton\nBurton\nCarrol\nCary\nCephus\nChristopher\nClark\nClemmie\nCleophas\nCleve\nCollie\nCrawford\nDillard\nDorsey\nDurward\nElliot\nElliott\nErwin\nEwell\nFrankie\nFrazier\nGeneral\nHaywood\nHosea\nHubbard\nIrving\nJean\nJethro\nJodie\nJonnie\nLawson\nLelton\nLemuel\nLois\nLonzo\nLucius\nMarcel\nNamon\nOather\nRadford\nRandolph\nRosco\nRosevelt\nRoyal\nRozell\nShelton\nTerrell\nTim\nVerbon\nWarner\nWaymon\nWeldon\nWendell\nWilford\nJames\nJohn\nWilliam\nRobert\nWillie\nCharles\nGeorge\nThomas\nHenry\nJoseph\nEdward\nJoe\nWalter\nFrank\nCharlie\nJack\nRoy\nClarence\nDavid\nPaul\nRichard\nFred\nArthur\nEddie\nAlbert\nHarold\nJohnnie\nCalvin\nJessie\nHoward\nBilly\nSamuel\nRalph\nEugene\nCecil\nErnest\nLouis\nCarl\nJimmie\nRaymond\nAndrew\nSam\nEarl\nJesse\nMarvin\nFloyd\nLeon\nEarnest\nHerbert\nLewis\nOscar\nHerman\nClyde\nHorace\nCurtis\nHubert\nLee\nOtis\nLeroy\nAlvin\nClifford\nHomer\nLuther\nHarry\nGrady\nMelvin\nTommie\nLawrence\nMilton\nAlfred\nDaniel\nDonald\nMarion\nClaude\nLeonard\nDewey\nNathaniel\nTom\nKenneth\nAllen\nEdgar\nJim\nLester\nRay\nHarvey\nHugh\nBennie\nWillard\nBenjamin\nJohnny\nJunior\nPercy\nJohnie\nChester\nNorman\nRoosevelt\nWarren\nOliver\nWill\nVernon\nWallace\nAlton\nBillie\nLeo\nElbert\nGordon\nLonnie\nRufus\nTheodore\nWillis\nEdwin\nMack\nBill\nSidney\nBobby\nGrover\nDouglas\nAaron\nArnold\nAubrey\nBen\nLloyd\nCleveland\nClifton\nDan\nBuford\nEllis\nElmer\nJimmy\nJulius\nLeslie\nOllie\nArchie\nGerald\nJerry\nMorris\nFranklin\nIsaac\nLouie\nNathan\nVirgil\nEmmett\nRoland\nClinton\nFreddie\nEd\nJasper\nTommy\nLoyd\nRussell\nWoodrow\nBernard\nGene\nMartin\nWesley\nWilbert\nWilbur\nWilson\nAmos\nClayton\nHouston\nMarshall\nSammie\nElijah\nPerry\nBruce\nFrancis\nMatthew\nMillard\nSylvester\nGilbert\nGlenn\nAlex\nGuy\nMaurice\nTravis\nAnderson\nIra\nJackson\nJulian\nPreston\nRex\nTroy\nBooker\nTalmadge\nWayne\nBarney\nHarrison\nHollis\nLamar\nMonroe\nNelson\nClaud\nDave\nDennis\nDock\nErvin\nMoses\nReuben\nRudolph\nWiley\nEverett\nFelix\nFrederick\nHershel\nHoyt\nJoel\nMax\nPhilip\nRayford\nAbraham\nByron\nCarlton\nCleo\nColumbus\nDoyle\nMitchell\nOdis\nVictor\nAuther\nDon\nFletcher\nJake\nJefferson\nMalcolm\nOdell\nPeter\nSherman\nSolomon\nStanley\nTimothy\nWilburn\nAustin\nCharley\nCornelius\nCoy\nEzell\nGlen\nJeff\nKing\nLevi\nMilford\nNoah\nOcie\nPhillip\nTed\nThurman\nUlysses\nWilmer\nAlonzo\nEdsel\nGarland\nOwen\nAdam\nAlexander\nBob\nDallas\nErskine\nFoster\nMarlin\nMiles\nMorgan\nNeal\nNed\nOttis\nOtto\nRoscoe\nRuben\nSilas\nWinston\nAnnie\nBenny\nEdd\nEmanuel\nEmmitt\nEmory\nEverette\nFreeman\nHerschel\nIsiah\nJacob\nManuel\nNolan\nOrville\nReginald\nShelby\nSteve\nTruman\nWalker\nWinfred\nAl\nArther\nClark\nElvin\nHermon\nHiram\nHuey\nLarry\nLenard\nMary\nRaymon\nRonald\nRoss\nSimon\nAlan\nAndy\nAron\nArtis\nAugustus\nBobbie\nBrady\nBryant\nCarlos\nColeman\nDewitt\nDwight\nEldridge\nElton\nFelton\nHobert\nJerome\nJudge\nKermit\nMathew\nNapoleon\nPrince\nAlford\nAlto\nBryan\nClarance\nDavis\nDurward\nEmmit\nForrest\nFoy\nHarris\nHayward\nHenderson\nLeland\nLorenzo\nLucius\nLuke\nMajor\nMason\nObie\nOlen\nPete\nPorter\nRandolph\nRoger\nStephen\nTerry\nAlva\nBernice\nBuster\nDalton\nDonnie\nElisha\nEllie\nElmore\nEzra\nFrankie\nGrant\nHilton\nHowell\nIrvin\nJonas\nLeamon\nLorenza\nMarcus\nMark\nMichael\nMose\nMyron\nNoble\nOneal\nRamon\nRayburn\nTheron\nTony\nWade\nWinford\nAdrian\nAnthony\nBert\nChristopher\nClaudie\nCliff\nCoolidge\nDelmer\nEarlie\nEarly\nElliott\nFredrick\nHal\nHillard\nIke\nIrving\nJay\nJohnson\nLawson\nLecil\nLowell\nMacon\nMurray\nNorris\nOssie\nPalmer\nPatrick\nRoyce\nSanford\nTurner\nAbe\nAlfonso\nAlphonso\nAlvie\nAngelo\nArdis\nArlie\nBerry\nBoyd\nBraxton\nBuddy\nCarey\nCarroll\nCleophus\nComer\nConnie\nDillard\nEmery\nEwell\nGaines\nGeneral\nGriffin\nGus\nHardy\nHarmon\nHaywood\nHilliard\nIrwin\nIsaiah\nIsom\nJackie\nJewel\nJewell\nLeldon\nLevie\nLevy\nLindsey\nLionel\nLucian\nManual\nMckinley\nMiller\nMurry\nNoel\nOllis\nOra\nOzzie\nQuinton\nRadford\nRandall\nRuel\nSandy\nScott\nSpencer\nTheo\nVerbon\nVester\nWilber\nWilford\nWilton\nAdolph\nAubry\nAuthor\nAvery\nBeatrice\nBennett\nBishop\nBonnie\nBurl\nBurley\nCarson\nCarter\nClarnce\nClay\nCleve\nColey\nCurry\nDale\nDarrell\nDick\nDudley\nDuke\nEli\nElige\nErwin\nFord\nForest\nFrazier\nGreen\nHamp\nHansel\nHarlan\nHarley\nHarvie\nJones\nJudson\nKelly\nKnox\nLevert\nLincoln\nLovell\nMaxwell\nMurphy\nNick\nOlan\nOlin\nRosevelt\nRubin\nRussel\nSampson\nShelley\nShelly\nShelton\nTomie\nVincent\nWard\nWash\nWashington\nWaymon\nWendell\nWylie\nWyman\nZack\nJames\nWilliam\nJohn\nRobert\nWillie\nCharles\nGeorge\nThomas\nHenry\nJoseph\nJoe\nEdward\nWalter\nFrank\nJack\nCharlie\nClarence\nDavid\nFred\nRichard\nPaul\nJohnnie\nRoy\nAlbert\nBilly\nEugene\nHarold\nSamuel\nHoward\nArthur\nEddie\nRalph\nCecil\nRaymond\nJessie\nErnest\nCarl\nCalvin\nJimmie\nSam\nAndrew\nFloyd\nEarl\nCurtis\nLouis\nClyde\nJesse\nLeon\nHerman\nLee\nMarvin\nLeroy\nEarnest\nHarry\nHerbert\nHorace\nLeonard\nDonald\nLuther\nHubert\nOscar\nClaude\nLewis\nMelvin\nGrady\nMilton\nJohnny\nAlfred\nWallace\nHomer\nAlvin\nRay\nDaniel\nNorman\nBennie\nLawrence\nNathaniel\nTom\nKenneth\nClifford\nJohnie\nRoosevelt\nOtis\nVernon\nBenjamin\nEdgar\nMack\nRufus\nJim\nLester\nAllen\nJunior\nMarion\nMorris\nBillie\nChester\nEdwin\nElbert\nTommie\nHugh\nBen\nBill\nWill\nAubrey\nGerald\nHarvey\nDan\nWillard\nGordon\nGrover\nWarren\nSidney\nBobby\nClifton\nArchie\nElmer\nJerry\nLouie\nTheodore\nBernard\nJulius\nOliver\nLonnie\nDewey\nDouglas\nLloyd\nAaron\nGlenn\nJimmy\nAlton\nArnold\nCleveland\nGene\nWesley\nPercy\nIsaac\nLeo\nNathan\nSylvester\nEllis\nMoses\nWillis\nFreddie\nGlen\nGuy\nJasper\nLeslie\nLoyd\nVirgil\nAmos\nEmmett\nOllie\nPreston\nLamar\nWilson\nClinton\nSammie\nStanley\nAlex\nEd\nRussell\nTommy\nWilbert\nDennis\nJoel\nMillard\nBuford\nClaud\nPerry\nRudolph\nTroy\nWilbur\nBob\nElijah\nFreeman\nGilbert\nHollis\nMajor\nPeter\nPhillip\nCoy\nHouston\nMarshall\nMatthew\nMax\nMilford\nTalmadge\nWayne\nWiley\nFletcher\nHoyt\nNoah\nTravis\nWilburn\nForrest\nFrancis\nIra\nMartin\nCharley\nClayton\nCornelius\nJeff\nRuben\nSherman\nAnderson\nBooker\nFrederick\nJefferson\nMalcolm\nMaurice\nRayford\nReuben\nRex\nRoland\nWoodrow\nCarlton\nErvin\nHershel\nJulian\nLenard\nMonroe\nMose\nNelson\nOdis\nRandolph\nTed\nThurman\nUlysses\nVan\nWilmer\nAbraham\nBobbie\nBuster\nEdsel\nEverett\nHuey\nLowell\nMitchell\nNeal\nVictor\nCleo\nColeman\nElton\nJacob\nJudge\nLucius\nMarcus\nMark\nSolomon\nAlexander\nAnthony\nBibb\nBruce\nColumbus\nDalton\nDoyle\nDwight\nGus\nKing\nManuel\nMary\nOdell\nSteve\nWinston\nAron\nAuther\nBert\nByron\nCarlos\nDon\nEmmitt\nFoy\nHarrison\nJake\nOlen\nOttis\nOwen\nPrince\nTimothy\nAlonzo\nAlva\nBryant\nHugo\nLorenzo\nMiles\nOtha\nRaymon\nRonald\nWilford\nAustin\nBarney\nCoolidge\nDallas\nDavis\nFelix\nHaywood\nHillard\nLarry\nNed\nNeil\nRiley\nRoscoe\nRoyce\nSanford\nSimon\nVirgle\nWilton\nWinford\nWoodie\nAdolph\nDave\nDewitt\nDock\nEarlie\nEdd\nElzie\nEmmit\nFranklin\nIrvin\nJackson\nJay\nJerome\nJudson\nLevi\nLucious\nLuke\nMarlin\nMathew\nOtto\nVerbon\nVester\nWilliams\nWinfred\nAlvie\nArther\nBenny\nClarance\nClenton\nConnie\nEdmond\nEldridge\nElvin\nEmanuel\nErskine\nHerschel\nHosea\nIsiah\nIvan\nLeamon\nMorgan\nMurray\nMurry\nNewton\nObie\nRoger\nRoss\nSammy\nSandy\nShelby\nSilas\nTerry\nTheo\nAdam\nAdolphus\nAlgie\nBennett\nBrooks\nCarey\nEzell\nFoster\nGeneral\nHarris\nHiram\nIke\nIsaiah\nMadison\nMichael\nNapoleon\nOneal\nPhilip\nRamon\nStephen\nTurner\nAbe\nAlphonso\nArlie\nAvery\nBenjiman\nBrady\nBuel\nCarson\nClaudie\nClint\nComer\nDamon\nDempsey\nDoris\nEdison\nEmery\nEnoch\nFord\nGreen\nHayward\nHenderson\nHosie\nJonathan\nJosh\nLeland\nMaxie\nMckinley\nMiller\nMurphy\nNewman\nNolan\nOrval\nPorter\nQuinton\nRichmond\nRubin\nSim\nTaylor\nTruman\nAbner\nAlfonso\nAlto\nArvil\nBasil\nBerry\nBethel\nBuddy\nCliff\nCornelious\nCornell\nDavie\nDelbert\nDurward\nEarly\nEldon\nEli\nEligah\nElisha\nElliott\nElmore\nEmory\nEverette\nEwell\nEzra\nFredrick\nGarland\nGlover\nHubbard\nHudson\nHuston\nIrby\nJackie\nLawerence\nLawson\nLois\nLorenza\nLovell\nMarlon\nMason\nOlin\nOrbie\nOrville\nPalmer\nPatrick\nPleas\nShellie\nSpencer\nThurston\nWaymon\nWendell\nWest\nWestley\nAdrian\nAlford\nAnnie\nArlin\nBelton\nBenton\nBraxton\nBryan\nCary\nClanton\nClark\nColey\nCrawford\nDean\nDick\nDoyce\nDudley\nEldred\nErby\nEric\nEzekiel\nFate\nFelton\nGarvin\nHardy\nHarmon\nHayden\nHerschell\nHilton\nIrving\nIssac\nJohnson\nJulious\nKarl\nKelley\nKelly\nLecil\nLemuel\nLevert\nLevie\nLincoln\nLindsey\nLionel\nLoyal\nManley\nMargaret\nMarshel\nMitchel\nMizell\nNoble\nNorris\nObbie\nOcie\nOdus\nOllis\nPete\nRosevelt\nScott\nShelley\nShelton\nTerrell\nTheron\nTollie\nTony\nVerlon\nWalker\nWheeler\nWillian\nWyatt\nJames\nWilliam\nJohn\nRobert\nWillie\nCharles\nGeorge\nThomas\nHenry\nJoseph\nJoe\nEdward\nJack\nFrank\nWalter\nBilly\nCharlie\nFred\nClarence\nRichard\nArthur\nDavid\nAlbert\nRoy\nEugene\nJohnnie\nHarold\nEddie\nPaul\nHoward\nSamuel\nJessie\nRalph\nEarl\nCecil\nRaymond\nJimmie\nJesse\nSam\nCarl\nLeon\nLouis\nFloyd\nHerbert\nAndrew\nCurtis\nCalvin\nErnest\nHerman\nMarvin\nDonald\nMelvin\nHarry\nLeroy\nClyde\nLee\nLuther\nOscar\nAlfred\nEarnest\nHorace\nKenneth\nLewis\nTommie\nClifford\nJohnny\nLeonard\nJunior\nWallace\nGrady\nHubert\nRay\nClaude\nNorman\nMilton\nBobby\nHomer\nRufus\nLawrence\nDouglas\nDaniel\nLonnie\nDan\nOtis\nAlvin\nNathaniel\nBill\nBillie\nHarvey\nHugh\nGerald\nLester\nTom\nEdwin\nJohnie\nElmer\nJim\nBennie\nLeo\nAllen\nBenjamin\nGene\nWillard\nPercy\nRoosevelt\nArchie\nJerry\nMarion\nLloyd\nFreddie\nJimmy\nOliver\nBen\nEdgar\nGordon\nChester\nMack\nClifton\nElbert\nMorris\nGlenn\nJulius\nWill\nWillis\nClinton\nVernon\nDewey\nEllis\nIsaac\nTommy\nAlton\nAmos\nAlex\nCleveland\nLeslie\nVirgil\nWesley\nRudolph\nRussell\nSidney\nGuy\nTroy\nGrover\nWilbur\nArnold\nAubrey\nEmmett\nTheodore\nLouie\nBernard\nSylvester\nWiley\nBooker\nRoland\nBuford\nFrancis\nJasper\nLoyd\nWarren\nAbraham\nEd\nHoyt\nAustin\nJerome\nJulian\nMonroe\nPerry\nTravis\nWilbert\nDennis\nNathan\nOllie\nWilburn\nMoses\nPhillip\nLowell\nSammie\nBob\nColumbus\nJoel\nMatthew\nMillard\nNoah\nOdis\nPeter\nAaron\nElijah\nLamar\nWinston\nClaud\nClayton\nEverett\nMarshall\nMartin\nMose\nOneal\nWade\nWayne\nEdsel\nFrederick\nJake\nPreston\nRex\nRonald\nSherman\nStanley\nWilmer\nWilson\nAnthony\nCarlton\nCleo\nDave\nFelix\nGilbert\nHouston\nLevi\nMajor\nMax\nOdell\nPete\nDock\nHermon\nHershel\nRaymon\nReuben\nRoss\nArther\nDon\nDoyle\nEmanuel\nFranklin\nGlen\nHollis\nIra\nJackson\nJacob\nMark\nMary\nMaurice\nNed\nOcie\nOlen\nOwen\nWinford\nWoodrow\nCarlos\nCoy\nElvin\nJay\nManuel\nMitchell\nRayford\nRuben\nAnderson\nByron\nCharley\nCornelius\nDallas\nDavis\nErvin\nFletcher\nFreeman\nGaines\nJackie\nJudge\nMalcolm\nRandolph\nRiley\nRoscoe\nSilas\nAbe\nBenny\nBruce\nDewitt\nEdmond\nHarrison\nHenderson\nHuey\nLeamon\nTalmadge\nThurman\nTimothy\nAlonzo\nAndy\nBibb\nDalton\nEmory\nForrest\nGeneral\nIsiah\nMilford\nMorgan\nNelson\nOttis\nSolomon\nStephen\nSteve\nWoodie\nAron\nAuther\nBernice\nBobbie\nBuster\nEarly\nElton\nEmmitt\nFoster\nFrankie\nHosea\nIssac\nJeff\nJefferson\nKing\nLarry\nLindbergh\nMarcus\nPhilip\nSammy\nTed\nTerry\nVan\nVester\nVictor\nWilford\nWinfred\nBasil\nBert\nBoyd\nBuddy\nColeman\nElliott\nErskine\nFredrick\nHarris\nIsaiah\nLacy\nLenard\nNapoleon\nNoble\nSimon\nTheo\nAlfonso\nAlphonso\nAlvie\nBarney\nCarey\nCarter\nClaudie\nDwight\nEldridge\nEli\nForest\nHaywood\nHerschel\nIke\nKermit\nLindy\nLois\nLucious\nMckinley\nMichael\nMike\nNeal\nOrville\nPorter\nQuinton\nReginald\nSpencer\nVincent\nZack\nAlexander\nAnnie\nArtis\nAvery\nClark\nCrawford\nDudley\nElmo\nElwood\nElzie\nFoy\nHarmon\nHobert\nLige\nNolan\nOtha\nQuincy\nSandy\nSanford\nWalker\nWash\nAdolph\nAlford\nAlonza\nAuburn\nAudrey\nBonnie\nBrady\nBurl\nCliff\nCullen\nEdd\nElmore\nEnoch\nEual\nEvans\nEverette\nEzell\nHal\nHansel\nHarvie\nHowell\nIrvin\nJodie\nLawson\nLeldon\nLemon\nLucius\nMelton\nOlan\nOra\nPatrick\nPrince\nRoger\nRosevelt\nShelton\nTony\nTruman\nWilber\nWilliams\nYoung\nAsa\nAugustus\nBernie\nBerry\nBrooks\nBurton\nCarroll\nCasper\nCephus\nClarance\nClay\nClem\nClemon\nCleophus\nCranford\nDenver\nDick\nDillard\nEarle\nEarlie\nGus\nHarvy\nHayward\nIsom\nJeremiah\nJonnie\nJoshua\nLeland\nLesley\nLonzo\nLouise\nLovell\nLynn\nMathew\nMurry\nNolen\nObie\nOlin\nRaleigh\nRayburn\nRoyce\nRubin\nSterling\nStewart\nTheron\nTillman\nUlysses\nVerlon\nVivian\nWardell\nWilton\nAdolphus\nAlto\nArlie\nArlin\nAugusta\nBud\nChristopher\nCollins\nConrad\nCurry\nDelmer\nEdmund\nEldred\nElie\nElisha\nElma\nElroy\nEric\nFelton\nFrazier\nGreen\nHarlan\nHazel\nHenery\nHudson\nJonah\nKelly\nKyle\nLance\nLemuel\nLenord\nLevert\nLittle\nLorenzo\nLue\nLynwood\nMadison\nMarlin\nMarlon\nMason\nMervin\nMiles\nMinnie\nMitchel\nNewton\nNorris\nOsie\nOtto\nPat\nRamon\nRogers\nShelley\nShirley\nTalmage\nTaylor\nThad\nWard\nWarner\nWayman\nWendell\nWillian\nJames\nWilliam\nJohn\nRobert\nWillie\nCharles\nGeorge\nThomas\nHenry\nEdward\nJoseph\nBilly\nJack\nJoe\nFrank\nHerbert\nWalter\nFred\nRichard\nCharlie\nDavid\nClarence\nRoy\nHarold\nEugene\nAlbert\nArthur\nJohnnie\nPaul\nEddie\nRalph\nRaymond\nHoward\nJessie\nSamuel\nEarl\nJimmie\nCarl\nDonald\nErnest\nJesse\nLeon\nClyde\nLouis\nCecil\nHubert\nCurtis\nMelvin\nAndrew\nLee\nHerman\nEarnest\nMarvin\nCalvin\nAlfred\nFloyd\nSam\nLuther\nLeroy\nRay\nHorace\nLewis\nBobby\nJohnny\nHarry\nKenneth\nClifford\nJerry\nLeonard\nOtis\nGene\nHugh\nMilton\nOscar\nRoosevelt\nTommie\nBillie\nGrady\nDaniel\nJunior\nWallace\nBill\nChester\nEdgar\nElbert\nMarion\nGerald\nNorman\nBennie\nDewey\nHarvey\nLawrence\nBen\nLonnie\nVernon\nAlvin\nClaude\nJimmy\nRufus\nTom\nDouglas\nElmer\nNathaniel\nJohnie\nWillard\nWillis\nHomer\nJim\nPercy\nWill\nDan\nGrover\nAllen\nAlton\nEdwin\nBenjamin\nMorris\nOliver\nTommy\nCleveland\nClifton\nArchie\nAaron\nLester\nMack\nBernard\nClinton\nLoyd\nIsaac\nJulius\nMax\nTravis\nTroy\nIra\nSidney\nMoses\nSylvester\nVirgil\nAubrey\nOdis\nOllie\nRussell\nBuford\nFreddie\nHoyt\nLouie\nSammie\nAlex\nBruce\nClayton\nEmmett\nMarshall\nPerry\nLloyd\nDoyle\nLeo\nTheodore\nWilson\nArnold\nDennis\nGordon\nGuy\nRudolph\nWesley\nAbraham\nAmos\nMatthew\nRoland\nWayne\nFrancis\nNathan\nPreston\nWilbert\nWilburn\nGilbert\nGlenn\nHollis\nHoover\nWiley\nEllis\nFletcher\nMartin\nWade\nBob\nDave\nElijah\nHouston\nJulian\nMalcolm\nMonroe\nPhillip\nRayford\nRex\nRonald\nAustin\nWilbur\nBooker\nErvin\nEverett\nFranklin\nWarren\nCarlton\nForrest\nGlen\nHershel\nJackson\nJake\nJeff\nJoel\nLamar\nMilford\nNoah\nPorter\nSherman\nBuster\nDon\nMaurice\nMillard\nPeter\nRuben\nCharley\nColumbus\nMajor\nOlen\nTed\nArther\nFrederick\nJacob\nLeslie\nNed\nNelson\nWilmer\nWoodrow\nHuey\nJasper\nLowell\nMose\nPhilip\nStanley\nThurman\nAlonzo\nAnderson\nBenny\nCleo\nCoy\nElvin\nEmory\nMary\nNeal\nRaymon\nAl\nAlvie\nClarance\nDock\nEd\nEdsel\nHiram\nJackie\nJerome\nKing\nOdell\nOwen\nReuben\nRubin\nTalmadge\nAnthony\nAron\nAugustus\nBarney\nBobbie\nBoyd\nClaud\nCornelius\nElton\nFelix\nLorenza\nManuel\nRoyce\nSteve\nAlford\nAndy\nBerry\nByron\nCarlos\nEdmond\nEmanuel\nErskine\nHarrison\nLarry\nLenard\nLorenzo\nPete\nRoscoe\nRoss\nVictor\nWinfred\nAlexander\nColeman\nDavis\nEarly\nEldridge\nEmmitt\nFredrick\nHaywood\nIsiah\nJay\nLevi\nMarlin\nOneal\nOtha\nRoger\nRosevelt\nSammy\nSpencer\nWinford\nWinston\nAdolphus\nAlfonso\nBrady\nDallas\nDalton\nEdmund\nEzra\nFreeman\nGeneral\nHayward\nHilliard\nHuston\nIsaiah\nJudson\nMarcus\nMurray\nObie\nPat\nPatrick\nRandolph\nRiley\nTerry\nThurston\nVerbon\nWendell\nWilford\nAdron\nAlphonso\nAnnie\nArtis\nBryant\nCollie\nConnie\nDwight\nEarlie\nElisha\nFelton\nFrances\nGarland\nHarley\nHarvie\nHermon\nHerschel\nHobert\nIrvin\nIvory\nJeremiah\nJonnie\nLincoln\nLynn\nMark\nMathew\nMorgan\nNeil\nOlin\nOttis\nQuincy\nRayburn\nReginald\nSandy\nSolomon\nStephen\nUlysses\nVincent\nArvel\nArvil\nAugusta\nAuthor\nBernice\nBert\nBradley\nBud\nCarter\nClearence\nDempsey\nDoris\nElvis\nEnoch\nHershell\nIrby\nJefferson\nJohny\nKyle\nLister\nLucious\nMason\nMattie\nMckinley\nNapoleon\nNoble\nNolan\nOrville\nPalmer\nRamon\nRuby\nSilas\nSim\nSimon\nThermon\nVester\nWard\nWaymon\nWebster\nWilton\nWoodie\nWyatt\nAcie\nAdolph\nAlonza\nArmstead\nAsa\nAuther\nBradford\nBraxton\nBuddy\nBurl\nCarol\nClark\nClem\nCleophus\nCleven\nCollis\nDean\nElmore\nEmmit\nEverette\nFerrell\nFoster\nFoy\nFrankie\nGus\nHal\nHarris\nHenery\nHosea\nHunter\nIke\nJewel\nJohnson\nJonathan\nKirby\nLacy\nLeamon\nLucius\nLuke\nMalcom\nMaxie\nMaxwell\nMelton\nMiles\nOren\nQuinton\nSaul\nSpurgeon\nSterling\nTaylor\nTheron\nTurner\nWalton\nWilliams\nAbram\nAlan\nAlfonza\nBenjaman\nBuck\nChristopher\nClemmie\nCliff\nComer\nDillard\nDudley\nEdd\nEldon\nEllie\nElmo\nElzie\nErby\nEuel\nEunice\nForest\nGarfield\nGary\nGaston\nGrant\nHarlin\nHenderson\nHilton\nHozie\nIssac\nJame\nJewell\nJordan\nJoshua\nJudge\nJunious\nKermit\nLelton\nLemuel\nLindbergh\nLois\nLovell\nMalvin\nMichael\nNorris\nOcie\nOlan\nOzell\nPelham\nPrice\nRogers\nSammuel\nSampson\nSanford\nSarah\nShelby\nSimmie\nTimothy\nTracy\nTruman\nVan\nWilfred\nJames\nWilliam\nJohn\nRobert\nWillie\nCharles\nGeorge\nThomas\nBilly\nHenry\nJoe\nEdward\nJoseph\nJack\nFrank\nDavid\nWalter\nHerbert\nRichard\nCharlie\nClarence\nRoy\nArthur\nEddie\nHarold\nPaul\nEugene\nFred\nAlbert\nSamuel\nHoward\nJohnnie\nCarl\nRalph\nJessie\nBobby\nDonald\nJimmie\nEarl\nRaymond\nErnest\nCurtis\nHubert\nSam\nAndrew\nHerman\nJesse\nMelvin\nClyde\nMarvin\nCecil\nLeon\nFloyd\nLewis\nLouis\nLee\nEarnest\nLeroy\nHarry\nJunior\nOscar\nLeonard\nRay\nHorace\nKenneth\nGrady\nLawrence\nAlfred\nJohnny\nBennie\nVernon\nLuther\nCalvin\nBillie\nDaniel\nClifford\nHarvey\nJimmy\nTommie\nNathaniel\nAllen\nJohnie\nMarion\nWallace\nGene\nHugh\nLester\nMilton\nWillard\nHomer\nJerry\nOtis\nRoosevelt\nTom\nClaude\nAlvin\nBill\nBenjamin\nLonnie\nDouglas\nBen\nElbert\nAlton\nEdgar\nGerald\nTommy\nWillis\nDewey\nLeo\nNorman\nRufus\nMack\nEllis\nOliver\nFreddie\nGrover\nJim\nDan\nClifton\nMorris\nArchie\nLouie\nJulius\nRoland\nRussell\nTroy\nAmos\nBuford\nChester\nElmer\nBernard\nWill\nEdwin\nMarshall\nRudolph\nPercy\nGordon\nMax\nWesley\nGlenn\nPerry\nTheodore\nTravis\nEmmett\nLloyd\nAubrey\nLoyd\nMatthew\nSidney\nVirgil\nIsaac\nNathan\nOllie\nSylvester\nWarren\nWilson\nAaron\nWiley\nCleveland\nHollis\nHoover\nMoses\nWilbur\nAlex\nElijah\nFranklin\nGuy\nIra\nLamar\nArnold\nBooker\nClinton\nSammie\nClayton\nLarry\nTalmadge\nArther\nBobbie\nCoy\nEd\nFrancis\nLeslie\nMartin\nMaurice\nWilburn\nBob\nDennis\nErvin\nFelix\nGilbert\nJoel\nMose\nOcie\nWayne\nWilbert\nForrest\nHuey\nPhilip\nRex\nStanley\nAustin\nDon\nFletcher\nHoyt\nNed\nNelson\nPreston\nBruce\nCarlton\nJasper\nMonroe\nNoah\nAbraham\nBuddy\nByron\nFrederick\nGlen\nHouston\nJake\nJeff\nJulian\nMarcus\nMarlin\nPhillip\nReuben\nRuben\nLevi\nSolomon\nTed\nBert\nDave\nMalcolm\nMary\nMckinley\nOwen\nPeter\nRayford\nRonald\nSammy\nCharley\nDoyle\nElton\nElvin\nIsiah\nJackie\nLowell\nMillard\nOdis\nPatrick\nRoyce\nEmory\nGus\nHershel\nJackson\nOdell\nOlen\nRaymon\nUlysses\nWilmer\nWoodrow\nAlvie\nAnderson\nAron\nBuster\nColeman\nDock\nEarly\nEdmond\nHermon\nMajor\nMilford\nMitchell\nNapoleon\nOrville\nPete\nSherman\nTerry\nTruman\nVan\nWilford\nWinston\nAlexander\nClaud\nCleo\nColumbus\nEverett\nFredrick\nGeneral\nHerschel\nJacob\nNeal\nOneal\nReginald\nRubin\nSteve\nTheo\nAnthony\nClarance\nEzell\nGrant\nHaywood\nHobert\nIsaiah\nIssac\nJay\nJerome\nLacy\nMathew\nMaxwell\nMurray\nOttis\nOtto\nRiley\nRoss\nSimon\nStephen\nThurman\nAl\nAvery\nBoyd\nBrady\nCarlos\nCarter\nConnie\nDallas\nDolphus\nDudley\nEarlie\nEmanuel\nEnoch\nErskine\nFoy\nFrankie\nHarris\nIvory\nLeland\nLorenza\nMike\nRoger\nRoscoe\nShelby\nTheron\nTimothy\nWade\nWalker\nWaymon\nAdolph\nAlonzo\nBennett\nBryant\nBurl\nCarroll\nClaudie\nComer\nCornelius\nEzra\nFelton\nFreeman\nHilton\nHiram\nHuston\nIke\nLemuel\nLenard\nMason\nMorgan\nOtha\nPalmer\nPorter\nRayburn\nSilas\nSpencer\nWendell\nAlfonso\nAlvis\nAndy\nBarney\nBenjiman\nBenny\nBernice\nClark\nCleve\nDale\nDalton\nDavis\nEdd\nEdsel\nElisha\nFoster\nHarley\nIrvin\nJefferson\nJeremiah\nJohny\nKyle\nLincoln\nLovell\nLuke\nMalcom\nMark\nMichael\nNewman\nPrince\nRoderick\nRosevelt\nTeddy\nTerrell\nTherman\nVester\nWinford\nAbner\nAlford\nAllan\nAuther\nBishop\nBud\nClay\nCliff\nDavie\nDick\nDorothy\nElmore\nElzie\nEmmitt\nGarland\nGraham\nHarlon\nHarrison\nHayward\nHulon\nJonathan\nJonnie\nLehman\nLindsey\nLindy\nLoyal\nLucious\nLugene\nManuel\nNewton\nNolan\nNorris\nObie\nOlin\nOthel\nPrice\nRoyal\nRupert\nSanford\nShirley\nTurner\nVerlon\nWyatt\nWyman\nAdam\nAdolphus\nAlf\nAlfonzo\nAlto\nAngelo\nAnnie\nArlin\nArvie\nArvil\nBenton\nBessie\nBuren\nCarey\nClarnce\nCleophus\nDee\nDelbert\nDewitt\nDillard\nDoyal\nEldon\nEldred\nElliott\nErskin\nEsaw\nEuel\nFarrell\nHardy\nHarrell\nHarvie\nHezekiah\nHunter\nHurbert\nJewel\nJoesph\nJohney\nJohnson\nJudson\nKarl\nKelly\nKermit\nKing\nLeamon\nLesley\nLevy\nLois\nLorenzo\nLou\nLynn\nMelton\nMurry\nNeil\nNolen\nRaleigh\nRandolph\nRichmond\nRogers\nSandy\nShellie\nSmith\nSterling\nSteven\nTheodis\nThurmon\nTony\nWillam\nWilliams\nWinfred\nWoodie\nJames\nWilliam\nJohn\nRobert\nCharles\nWillie\nBilly\nThomas\nGeorge\nEdward\nHenry\nJoe\nJoseph\nJack\nWalter\nDavid\nFrank\nBobby\nCharlie\nRichard\nFred\nClarence\nJohnnie\nHarold\nEugene\nPaul\nRoy\nAlbert\nJimmie\nHoward\nDonald\nArthur\nEddie\nRaymond\nRalph\nHerbert\nSamuel\nEarl\nKenneth\nJessie\nCurtis\nCarl\nCecil\nAndrew\nMarvin\nJesse\nErnest\nFloyd\nRay\nEarnest\nLouis\nMelvin\nHerman\nLeon\nJerry\nClyde\nJohnny\nLee\nLeroy\nLuther\nMilton\nHubert\nAlfred\nHorace\nSam\nOscar\nBillie\nHarry\nDaniel\nJimmy\nLewis\nGrady\nLawrence\nOtis\nAlvin\nNathaniel\nBenjamin\nClifford\nGerald\nTommie\nCalvin\nLeonard\nRoosevelt\nNorman\nClaude\nJunior\nRufus\nBill\nWallace\nHugh\nElbert\nGene\nTommy\nBen\nEdgar\nHarvey\nAllen\nJim\nDewey\nVernon\nLeo\nChester\nDouglas\nWillard\nJohnie\nElmer\nLonnie\nTom\nAlton\nHomer\nAmos\nTheodore\nDan\nEllis\nMorris\nLloyd\nBennie\nClifton\nOliver\nAaron\nGordon\nLester\nTroy\nFreddie\nMarion\nAubrey\nGlenn\nMack\nBernard\nEdwin\nClinton\nGrover\nIsaac\nWill\nWillis\nArnold\nJulius\nLouie\nArchie\nWayne\nRoland\nSidney\nTravis\nDennis\nHollis\nOllie\nCleveland\nHoyt\nRussell\nEmmett\nJoel\nLamar\nMax\nPercy\nBobbie\nMillard\nWilburn\nLoyd\nMarshall\nFrancis\nJulian\nRonald\nVirgil\nAlex\nBuford\nGuy\nLarry\nMoses\nWesley\nFranklin\nJeff\nPhillip\nStanley\nBruce\nClayton\nGlen\nMaurice\nRayford\nBooker\nJackie\nJake\nMatthew\nMose\nPerry\nTed\nWilbur\nArther\nGilbert\nHershel\nNelson\nOdis\nRex\nSammie\nSylvester\nWarren\nWiley\nDon\nLeslie\nLowell\nMartin\nNathan\nPeter\nPreston\nReuben\nRudolph\nWilbert\nAnderson\nCarlos\nClaud\nDoyle\nElijah\nFletcher\nIra\nJerome\nNeal\nSherman\nAbraham\nBuddy\nColumbus\nFrederick\nJackson\nJay\nMary\nRoss\nRuben\nThurman\nWilson\nBob\nCoy\nDave\nAndy\nBuster\nEd\nFelix\nHouston\nMajor\nMalcolm\nMilford\nMonroe\nSammy\nVictor\nWinston\nAnthony\nCarlton\nColeman\nElvin\nHobert\nHoover\nPete\nRiley\nAlonzo\nBarney\nFelton\nFreeman\nJacob\nMarlin\nSpencer\nAuther\nBenny\nCornelius\nEdd\nElton\nErvin\nHermon\nHerschel\nHiram\nIrvin\nLeamon\nLenard\nLynn\nMarcus\nMark\nMathew\nNoah\nVester\nWendell\nWoodrow\nAbe\nAl\nAustin\nBrady\nByron\nClarance\nForrest\nJasper\nMitchell\nOlen\nOneal\nSteve\nUlysses\nVerlon\nWinfred\nAnnie\nAron\nBoyd\nCleo\nConnie\nDock\nDwight\nEarlie\nEdsel\nEmmitt\nEnoch\nErskine\nHuey\nJudge\nNed\nPhilip\nRaymon\nRoscoe\nRoyce\nRubin\nTerry\nWade\nWaymon\nWilliams\nWilmer\nCharley\nClay\nDorothy\nEli\nEssie\nFoster\nFrankie\nGarland\nHuston\nIsiah\nLeldon\nNewton\nOcie\nOrville\nOtha\nOwen\nPrince\nRosevelt\nShirley\nTalmage\nVan\nWinford\nAlexander\nAlfonza\nAlvie\nCarroll\nClaudie\nDale\nDalton\nDavis\nDelbert\nEdmond\nElisha\nEverett\nGus\nLindsey\nLucious\nManuel\nNorris\nObie\nOttis\nPatrick\nPorter\nRogers\nSilas\nSimon\nVirgle\nWoodie\nAlva\nArtis\nAubry\nBenjiman\nBert\nBurl\nCary\nDallas\nDarrell\nDonnie\nEarly\nEllie\nElzie\nEmanuel\nEric\nEzekiel\nEzell\nEzra\nFerrell\nFredrick\nGorden\nIrby\nJason\nJeremiah\nKelly\nLeland\nLevi\nLois\nLucius\nMckinley\nMurray\nOdell\nOrbie\nReginald\nRoderick\nSandy\nSeldon\nStephen\nTalmadge\nTimothy\nTony\nTruman\nTurner\nVincent\nWilford\nAlonza\nAvery\nBernice\nBethel\nBonnie\nBraxton\nCarter\nConrad\nCranford\nCrawford\nDanny\nDick\nEldon\nFoy\nGeneral\nHarris\nHarrison\nHarvie\nHaywood\nHubbard\nIke\nIsaiah\nKirby\nLovell\nLuke\nMarshal\nMiller\nNapoleon\nNolan\nOlan\nOllis\nOssie\nOtto\nRayburn\nRoyal\nSampson\nTheo\nWashington\nWylie\nAdolph\nAdolphus\nAdron\nAllan\nAlto\nAlvis\nArlon\nArmon\nAuburn\nBenton\nBoyce\nBrown\nCleophus\nCurry\nDempsey\nDolphus\nDozier\nDuke\nElliott\nElwood\nEmory\nErskin\nGary\nGrant\nGreen\nHal\nHardy\nHarmon\nHarrell\nHayward\nHeflin\nHenery\nHowell\nHulon\nHunter\nIsreal\nIvan\nJame\nKarl\nKennith\nLamon\nLenord\nLewie\nLon\nLorenza\nMac\nMalcom\nMarlon\nMaxwell\nMichael\nMike\nMorgan\nMyron\nNeil\nNolen\nOlin\nPrice\nRuby\nSanford\nShelby\nShelly\nSid\nSimmie\nSolomon\nSterling\nStewart\nTherman\nThurston\nVernie\nWalton\nWarner\nWaylon\nWilton\nWyatt\nJames\nWilliam\nJohn\nRobert\nCharles\nWillie\nBilly\nThomas\nGeorge\nEdward\nJoe\nHenry\nJoseph\nBobby\nJack\nDavid\nWalter\nRichard\nHarold\nFrank\nCharlie\nFred\nDonald\nClarence\nRoy\nEugene\nArthur\nJimmie\nEddie\nAlbert\nJohnnie\nSamuel\nPaul\nHoward\nJessie\nRalph\nHerbert\nKenneth\nEarl\nCarl\nRaymond\nCurtis\nErnest\nJohnny\nJesse\nRay\nMarvin\nJerry\nLeon\nLee\nJimmy\nLewis\nBillie\nCecil\nHerman\nLeroy\nSam\nLouis\nAndrew\nFloyd\nMelvin\nClyde\nHorace\nHubert\nLawrence\nAlfred\nEarnest\nHarry\nClifford\nOscar\nLeonard\nRoosevelt\nCalvin\nGene\nHugh\nGrady\nTommie\nAllen\nLuther\nDouglas\nMarion\nTommy\nJunior\nBennie\nMilton\nWillard\nDaniel\nNorman\nBill\nOtis\nVernon\nWallace\nLonnie\nBenjamin\nJim\nRufus\nClaude\nEdgar\nHomer\nDewey\nTheodore\nDan\nGlenn\nJohnie\nAlton\nBen\nHarvey\nPercy\nElmer\nNathaniel\nElbert\nFreddie\nMorris\nEmmett\nLloyd\nGordon\nLeo\nMack\nGerald\nTom\nAlvin\nArchie\nAubrey\nEdwin\nVirgil\nWayne\nClinton\nOliver\nTroy\nAaron\nSidney\nDon\nLester\nOllie\nTravis\nBobbie\nGrover\nLouie\nLoyd\nMax\nSammie\nArnold\nFranklin\nRoland\nWill\nBernard\nLeslie\nRonald\nAlex\nClayton\nJulius\nLarry\nMatthew\nSylvester\nChester\nWillis\nBruce\nClifton\nEllis\nIsaac\nMary\nPhillip\nRussell\nDennis\nMoses\nWilburn\nOlen\nRudolph\nWilbert\nBuford\nCleveland\nDoyle\nGilbert\nWarren\nJackie\nTed\nAmos\nAnthony\nIra\nJulian\nLamar\nPreston\nStanley\nAustin\nCarlton\nElijah\nGuy\nHoyt\nMarshall\nMartin\nRoger\nWilbur\nWoodrow\nArther\nBob\nBooker\nGary\nHollis\nMose\nNathan\nWiley\nAlexander\nFletcher\nFrancis\nHouston\nHuey\nJake\nJoel\nSteve\nTalmadge\nWilson\nClaud\nHershel\nIsiah\nJeff\nLowell\nMaurice\nOcie\nPatrick\nBuddy\nColeman\nCoy\nElvin\nForrest\nMilford\nOneal\nPete\nFrederick\nGlen\nOdell\nPerry\nRex\nRoyce\nTheo\nAbraham\nAron\nBoyd\nCharley\nEd\nGus\nSherman\nThurman\nWilmer\nWinston\nAlonzo\nCarlos\nDallas\nDave\nDelbert\nErvin\nEverett\nFoy\nHerschel\nJerome\nMonroe\nOwen\nPeter\nVester\nAlfonso\nAlford\nErskine\nHarrison\nJasper\nJay\nMalcolm\nMillard\nNeal\nObie\nOttis\nReginald\nSanford\nTimothy\nWesley\nBenny\nBurl\nColumbus\nCornelius\nDale\nFelix\nFreeman\nGarland\nKing\nMajor\nMurray\nNoah\nNorris\nPhilip\nRiley\nRuben\nUlysses\nByron\nCarroll\nConrad\nDalton\nDock\nEdmond\nElton\nEzell\nHaywood\nHermon\nJackson\nJudge\nJudson\nManuel\nMarlin\nMiles\nMorgan\nOtha\nRogers\nRoss\nWade\nWilliams\nWinford\nAlfonzo\nAlphonse\nAnderson\nCrawford\nDwight\nEarly\nEdd\nEmmitt\nEmory\nFoster\nFrankie\nHarris\nHiram\nHosea\nLindsey\nMitchell\nNed\nNelson\nRayford\nRaymon\nReuben\nSammy\nSolomon\nTerry\nTheron\nVan\nVincent\nAnnie\nArtis\nBarney\nBert\nCary\nClaudie\nComer\nEdsel\nEmmit\nEnoch\nFelton\nJacob\nJefferson\nLeland\nLenard\nLevon\nLucius\nManley\nMarcus\nMckinley\nNolan\nOdis\nPat\nShelton\nSim\nTruman\nWilford\nAdolphus\nAlan\nAllan\nAlphonso\nArlie\nBonnie\nBrady\nBuck\nCarol\nDavis\nDewitt\nDonnie\nEarlie\nEldred\nEldridge\nEuel\nFreddy\nGaines\nGeneral\nHilton\nHoover\nIrby\nIrvin\nIsaiah\nLevi\nLovell\nMark\nMathew\nMaxwell\nNapoleon\nNeil\nNoel\nOrville\nQuinton\nRamon\nRichmond\nSterling\nTherman\nVerbon\nVictor\nWaymon\nWeldon\nWinfred\nWoodie\nAlonza\nAlto\nAlvis\nAuburn\nAuthor\nBryant\nBuster\nChristopher\nConnie\nDorris\nDoyal\nDudley\nElisha\nElliott\nElwood\nEzekiel\nHansel\nHarmon\nHarvie\nHayes\nHosie\nHowell\nHuston\nIke\nJonnie\nKeith\nKelly\nLeamon\nLeldon\nLemuel\nLen\nLoy\nMason\nMelton\nNewman\nOrbie\nPorter\nQuincy\nRayburn\nRoderick\nRosevelt\nSampson\nShelby\nSimon\nStephen\nTalmage\nTheodis\nTony\nWash\nWendell\nAndy\nAugusta\nAuther\nBerlin\nBrooks\nBud\nCarter\nClarance\nClarnce\nCleatus\nCleo\nCurtiss\nDanny\nDarrel\nDorman\nDurwood\nEdmund\nEldon\nEmanuel\nEmery\nFredrick\nGaston\nGrant\nGuss\nHazel\nHobert\nIvan\nJethro\nJodie\nJonathan\nKennith\nKermit\nLenord\nLevy\nLillie\nLorenzo\nLove\nMacon\nMadison\nMichael\nMike\nOlin\nOtto\nPrince\nRandolph\nRoyal\nSilas\nSpencer\nTeddy\nTheadore\nTolbert\nTurner\nWalker\nWalton\nJames\nWilliam\nJohn\nRobert\nCharles\nWillie\nBilly\nGeorge\nThomas\nBobby\nJoe\nHenry\nEdward\nWalter\nJoseph\nDonald\nRichard\nFrank\nDavid\nHarold\nCharlie\nJack\nClarence\nEddie\nArthur\nFred\nJimmie\nEugene\nRoy\nSamuel\nJohnnie\nKenneth\nPaul\nAlbert\nHoward\nEarl\nCarl\nRalph\nJimmy\nJohnny\nJerry\nCurtis\nRaymond\nJessie\nHerbert\nLeon\nFranklin\nMelvin\nClyde\nLeroy\nErnest\nFloyd\nLouis\nSam\nMarvin\nCecil\nRoosevelt\nJesse\nRay\nLee\nAlfred\nHerman\nEarnest\nLewis\nGerald\nHorace\nAndrew\nOtis\nTommy\nClifford\nNathaniel\nOscar\nBillie\nTommie\nAlvin\nHubert\nLeonard\nBennie\nDaniel\nHugh\nHarry\nNorman\nMilton\nJim\nCalvin\nLawrence\nBen\nBenjamin\nLuther\nAllen\nJunior\nMarion\nWallace\nDouglas\nEdgar\nGrady\nGene\nVernon\nDan\nHomer\nClaude\nBill\nElbert\nLonnie\nOliver\nRufus\nHarvey\nLester\nMorris\nArchie\nDewey\nMax\nClinton\nDon\nTom\nAubrey\nMack\nWillard\nAmos\nFreddie\nJulius\nNathan\nWayne\nGordon\nJohnie\nPercy\nTheodore\nAaron\nIsaac\nJoel\nLeo\nGlenn\nJackie\nRonald\nSylvester\nBobbie\nEllis\nBernard\nLloyd\nTravis\nTroy\nAlton\nBuford\nChester\nCleveland\nGrover\nLarry\nElmer\nWillis\nRussell\nSammie\nEdwin\nMatthew\nRoland\nWilbert\nPreston\nVirgil\nGilbert\nLeslie\nLouie\nLoyd\nPhillip\nSidney\nClayton\nGuy\nHoyt\nRoyce\nWilson\nClifton\nIra\nJulian\nWoodrow\nArnold\nHollis\nBenny\nBob\nGlen\nReuben\nWesley\nBooker\nLamar\nNelson\nTed\nAlex\nAlonzo\nLowell\nMartin\nMary\nMaurice\nMoses\nOdell\nRuben\nWarren\nWilburn\nWiley\nEd\nElijah\nMarshall\nPerry\nThurman\nWilbur\nWill\nCarlton\nDoyle\nEmmett\nJake\nMilford\nOdis\nOllie\nPeter\nRex\nRudolph\nTimothy\nBruce\nBuddy\nDave\nFrederick\nFreeman\nMalcolm\nRoger\nWade\nFelix\nMillard\nMonroe\nNeal\nRayford\nRoss\nByron\nColumbus\nCoy\nGary\nHershel\nOlen\nPhilip\nSherman\nAlexander\nHouston\nHuey\nJasper\nManuel\nRosevelt\nSammy\nSimon\nStanley\nWinford\nWinston\nAbraham\nAlphonso\nArther\nCarroll\nElvin\nFletcher\nFrancis\nJackson\nJeff\nLevi\nNolan\nOcie\nTheo\nVester\nAnthony\nAron\nAustin\nBarney\nCarlos\nCharley\nDennis\nEverett\nFrankie\nJudge\nLeland\nMark\nMitchell\nMose\nNoah\nOtha\nOwen\nSolomon\nSteve\nWendell\nWilmer\nBert\nClaud\nEli\nFoy\nHarrison\nJacob\nMajor\nPatrick\nPorter\nTalmadge\nAdolphus\nCleo\nColeman\nCornelius\nDallas\nDalton\nDwight\nElton\nEmory\nHayward\nHermon\nIsaiah\nIsiah\nJefferson\nJerome\nLynn\nMarcus\nNorris\nObie\nRayburn\nWinfred\nAnderson\nArlin\nArtis\nAvery\nDonnie\nEarly\nEmanuel\nEmmitt\nErvin\nEzra\nForrest\nFreddy\nGarland\nKing\nLenard\nLois\nLorenza\nOneal\nRoscoe\nSilas\nTheron\nAlvie\nBonnie\nBryant\nCarey\nCleophus\nEarlie\nElmore\nFredrick\nHarvie\nHaywood\nHenderson\nKermit\nNeil\nRiley\nRogers\nSterling\nTerry\nUlysses\nVictor\nVincent\nWylie\nAlfonso\nBarnie\nBernice\nBradley\nBuster\nClaudie\nConnie\nDale\nDerrell\nEldridge\nHoover\nHosea\nJay\nJoshua\nLawson\nLeamon\nLewie\nLucious\nLuke\nMarlin\nMichael\nOrville\nOttis\nPat\nPete\nRandall\nRaymon\nRubin\nSandy\nTherman\nTony\nWashington\nWaymon\nAbe\nAuther\nBetty\nBraxton\nClay\nDean\nEdmund\nEdsel\nEligah\nEllie\nElvis\nFelton\nHarmon\nHillard\nIrby\nIssac\nMathew\nMiles\nMorgan\nNed\nOlan\nOrbie\nOzell\nPalmer\nQuinton\nRodney\nSanford\nTruman\nVan\nAdolph\nAdrian\nAlan\nAlvis\nAnnie\nAugusta\nAugustus\nAuthor\nBasil\nBuel\nBurl\nClarance\nClark\nComer\nDavis\nDelmer\nDock\nDorothy\nErskine\nEzell\nFarris\nGreen\nHal\nHerschel\nHilton\nHuston\nJeremiah\nJohny\nJonas\nJonathan\nLacy\nLavon\nLillie\nLorenzo\nMadison\nMike\nMiller\nMurray\nNapoleon\nOlin\nOtto\nRoderick\nVance\nVernie\nWilber\nWilliams\nWilton\nWoodie\nWyman\nAdam\nAl\nAlmon\nAlphonse\nAlto\nArnie\nAuthur\nBenjaman\nBenton\nBoyd\nBrady\nBud\nBurns\nCarol\nCarrol\nCarthel\nCephus\nClearence\nClemmie\nCleophas\nCollie\nColvin\nDillard\nEarle\nEdmond\nElliott\nEmery\nEnoch\nEric\nErskin\nEster\nEvans\nEzekiel\nFarrell\nGaines\nGayle\nGeneral\nGrant\nHarley\nHobert\nHobson\nHowell\nHugo\nIrving\nJoesph\nJonnie\nJoyce\nJulious\nKarl\nKelly\nLawerence\nLevy\nLincoln\nLouise\nLucius\nLugene\nMalcom\nMargaret\nMckinley\nMelton\nMyron\nNewton\nRandolph\nRoman\nRuby\nShelton\nSmith\nStephen\nTaylor\nTeddy\nTheodis\nThurmon\nTitus\nVerlon\nWalker\nWalton\nWilford\nWindell\nJames\nWilliam\nJohn\nRobert\nCharles\nWillie\nBilly\nGeorge\nThomas\nBobby\nJoe\nHenry\nFranklin\nDonald\nJoseph\nFrank\nEdward\nWalter\nDavid\nJack\nRichard\nHarold\nCharlie\nArthur\nJimmie\nPaul\nJimmy\nClarence\nEddie\nJerry\nHoward\nRoy\nSamuel\nEugene\nFred\nRoosevelt\nKenneth\nJohnny\nJohnnie\nCarl\nAlbert\nRaymond\nCurtis\nJessie\nLeon\nEarl\nRalph\nErnest\nHerman\nCecil\nHerbert\nLee\nLeroy\nMarvin\nLouis\nAndrew\nMelvin\nJesse\nRay\nClyde\nDaniel\nFloyd\nHorace\nEarnest\nOscar\nLewis\nGerald\nTommie\nTommy\nAlfred\nNorman\nSam\nHarry\nLawrence\nBillie\nCalvin\nDouglas\nNathaniel\nClifford\nGene\nLeonard\nGrady\nOtis\nWallace\nLuther\nMilton\nAlvin\nEdgar\nHubert\nBill\nWayne\nBennie\nVernon\nAllen\nElbert\nFreddie\nRonald\nJim\nGlenn\nHarvey\nBen\nBenjamin\nHomer\nRufus\nTheodore\nHugh\nJunior\nLarry\nMarion\nMorris\nChester\nLloyd\nLester\nArchie\nDan\nPercy\nLonnie\nSidney\nAlton\nTom\nMack\nWilbert\nClaude\nLeo\nDewey\nOliver\nWill\nClifton\nDon\nTravis\nAmos\nEdwin\nElmer\nGordon\nIsaac\nJohnie\nJulius\nMax\nVirgil\nWillis\nMoses\nCleveland\nEllis\nWesley\nLouie\nRex\nSylvester\nAaron\nBernard\nJoel\nLamar\nRoland\nBenny\nJackie\nNathan\nOllie\nRudolph\nRussell\nBooker\nPeter\nPreston\nWarren\nWiley\nAlex\nDennis\nEmmett\nFletcher\nStanley\nWillard\nGary\nLoyd\nMarshall\nMaurice\nPerry\nPhillip\nTroy\nWilbur\nArnold\nAubrey\nHollis\nTed\nBobbie\nBuddy\nClinton\nGrover\nGuy\nSammie\nWilburn\nBruce\nBuford\nJeff\nRayford\nTimothy\nAustin\nClayton\nHoyt\nJulian\nLeslie\nNeal\nWilson\nWoodrow\nDoyle\nHuey\nMary\nWinston\nCoy\nDelano\nElijah\nFoy\nGilbert\nIra\nJasper\nLowell\nMatthew\nTalmadge\nWilmer\nAlphonso\nCarlton\nFrederick\nOcie\nOdis\nRoger\nSammy\nSteve\nTerry\nVan\nAbraham\nAlonzo\nBob\nEverett\nGlen\nMose\nPete\nPhilip\nRandolph\nRosevelt\nRuben\nSolomon\nAnthony\nCarlos\nJacob\nMichael\nNoah\nNorris\nPatrick\nAuther\nCleo\nDallas\nEd\nFelix\nFrancis\nGarland\nJerome\nLevi\nMonroe\nNelson\nOdell\nSherman\nWade\nAlfonso\nAnderson\nArther\nCharley\nClaud\nEarly\nForrest\nFrankie\nHilton\nHouston\nMartin\nMurray\nOlen\nOneal\nRoyce\nVictor\nWaymon\nWendell\nBarney\nColumbus\nDave\nDwight\nElmore\nGeneral\nHerschel\nHershel\nJake\nKing\nLenard\nLorenzo\nMajor\nMarcus\nMilford\nMurphy\nQuinton\nRiley\nRoscoe\nSilas\nTaylor\nTeddy\nUlysses\nByron\nDale\nEarlie\nElton\nEnoch\nFelton\nGus\nHayward\nHaywood\nIsaiah\nLeland\nLovell\nMalcolm\nMarlin\nMillard\nRayburn\nReuben\nRodney\nSpencer\nThurman\nTruman\nBurl\nCarroll\nCleophus\nDalton\nElvin\nEmmitt\nErvin\nJackson\nLorenza\nNapoleon\nNoel\nOtto\nRubin\nShelby\nStephen\nWinfred\nAlexander\nAlfonza\nAlvie\nAron\nBert\nBetty\nBoyd\nCarol\nColeman\nComer\nConnie\nCornelius\nDavis\nEdd\nEmory\nFredrick\nHenery\nIke\nIrby\nIrvin\nLeamon\nRogers\nWarner\nWinford\nAdolph\nAndy\nBonnie\nBrady\nBryant\nCary\nClovis\nCrawford\nDelbert\nDonnie\nEdsel\nElisha\nElliott\nForest\nHarmon\nHarris\nHarrison\nHermon\nHiram\nIsiah\nJay\nJeremiah\nJudge\nLynn\nManuel\nMike\nMiller\nOrville\nOwen\nRandall\nRonnie\nRoss\nTheron\nWaylon\nWilford\nBernice\nBraxton\nBuel\nCarter\nConrad\nDavie\nDean\nDillard\nDoyal\nEdmond\nEli\nEric\nEverette\nFreddy\nFreeman\nHubbard\nHuston\nIvory\nJosh\nLafayette\nLomax\nMalcom\nMathew\nMaxie\nMervin\nMyron\nNed\nNeil\nNoble\nNolan\nPorter\nPrince\nScott\nSterling\nTerrell\nVerbon\nAdrian\nAlfonzo\nAlford\nArlon\nArvil\nAuthor\nBenton\nBerry\nBryan\nClarance\nClaudie\nColey\nDannie\nDanny\nDoris\nDorothy\nDoyce\nEmma\nEmmet\nEmmette\nFinis\nFoster\nFrazier\nGaines\nGarfield\nHosea\nHowell\nIssac\nJame\nJewel\nJodie\nJonathan\nJordan\nJosephus\nLelton\nLemuel\nLewie\nLois\nLonza\nLucius\nLudie\nMaxwell\nMckinley\nNick\nObie\nOtha\nPalmer\nQuincy\nRaymon\nReese\nReginald\nSandy\nSarah\nShelley\nShellie\nShelton\nShirley\nSimon\nTalmage\nTheodis\nTherman\nThurston\nTim\nTony\nVerlon\nWalker\nWilliams\nJames\nWilliam\nJohn\nRobert\nCharles\nWillie\nBilly\nBobby\nGeorge\nThomas\nJoe\nDonald\nHenry\nDavid\nEdward\nJoseph\nWalter\nHarold\nFrank\nRichard\nJack\nFranklin\nJimmy\nJimmie\nJerry\nRoy\nClarence\nEddie\nFred\nCharlie\nHoward\nPaul\nArthur\nAlbert\nEugene\nSamuel\nRalph\nKenneth\nJohnny\nJohnnie\nCarl\nRaymond\nRoosevelt\nJessie\nErnest\nLeon\nEarl\nCurtis\nMarvin\nRay\nCecil\nEarnest\nHerman\nJesse\nTommy\nLee\nGerald\nLouis\nMelvin\nHerbert\nLeroy\nFloyd\nLewis\nClyde\nLawrence\nAndrew\nAlfred\nBillie\nRonald\nNorman\nMilton\nSam\nDaniel\nGene\nHorace\nMorris\nLuther\nBill\nTommie\nHarry\nDouglas\nFreddie\nWayne\nBennie\nOscar\nCalvin\nGrady\nHubert\nNathaniel\nAlvin\nJim\nLeonard\nOtis\nHugh\nBen\nWallace\nDon\nLarry\nRufus\nOliver\nClifford\nHarvey\nHomer\nLonnie\nAllen\nTravis\nVernon\nJunior\nEdgar\nTheodore\nMarion\nDan\nLester\nTom\nBenjamin\nLeo\nPhillip\nGlenn\nClaude\nIsaac\nAubrey\nJohnie\nJulius\nJackie\nPercy\nAlton\nMack\nRoland\nWillard\nDewey\nElbert\nWillis\nArnold\nMax\nClifton\nGary\nSammie\nWilbert\nDoyle\nElmer\nBobbie\nChester\nRussell\nWilburn\nAaron\nDennis\nGordon\nLowell\nAmos\nLloyd\nStanley\nTroy\nArchie\nBuford\nEdwin\nJoel\nSidney\nSylvester\nVirgil\nWarren\nEllis\nGlen\nGuy\nLeslie\nClinton\nWill\nMarshall\nOllie\nWesley\nAlex\nBernard\nClayton\nMatthew\nPhilip\nTed\nJerome\nRex\nWoodrow\nLamar\nMoses\nPerry\nRoger\nWinston\nCarlton\nCleveland\nElijah\nFletcher\nGrover\nHollis\nLouie\nLoyd\nNathan\nArther\nBuddy\nEmmett\nPreston\nWendell\nAlexander\nBooker\nHuey\nIra\nSammy\nElvin\nMartin\nMary\nAbraham\nBenny\nBob\nBruce\nFrederick\nMaurice\nMonroe\nRayford\nRuben\nRudolph\nWilson\nCoy\nEd\nElton\nErvin\nFrancis\nGilbert\nJasper\nRonnie\nRoyce\nSolomon\nSteve\nWiley\nCarey\nCleo\nCornelius\nDave\nHoyt\nNelson\nNorris\nPete\nRoss\nCarlos\nDavis\nFelix\nHouston\nJacob\nJulian\nMajor\nNed\nPeter\nReuben\nRiley\nTalmadge\nThurman\nTimothy\nTony\nAlonzo\nDelano\nDwight\nGus\nHermon\nOdis\nOlen\nPat\nTruman\nVan\nWade\nWinford\nBarney\nClark\nDalton\nFredrick\nFreeman\nHarrison\nHershel\nJake\nJay\nLeland\nMalcolm\nMarcus\nMarlin\nMillard\nMorgan\nNeal\nOwen\nPatrick\nRosevelt\nTerry\nWilbur\nBetty\nCleophus\nColeman\nColumbus\nEdmond\nFrankie\nHarris\nJudge\nJudson\nLevi\nManuel\nOneal\nOttis\nRogers\nUlysses\nWilford\nAlphonso\nAnthony\nAustin\nCharley\nClarance\nConnie\nErskine\nEverett\nGarland\nHayward\nJeff\nLorenzo\nMichael\nNoah\nOdell\nRaymon\nSherman\nStephen\nVincent\nAlford\nAlonza\nAudrey\nBernie\nBuster\nDavie\nGrant\nIsaiah\nJackson\nMark\nMckinley\nMitchell\nNeil\nOcie\nOtha\nQuinton\nReginald\nSilas\nSpencer\nTheodis\nVictor\nAdolph\nAlphonse\nAnnie\nBrady\nBurl\nClaud\nClaudie\nCurley\nDanny\nEarlie\nEarly\nEmory\nFoster\nGraham\nHal\nHerschel\nHosea\nIrvin\nIsiah\nJame\nJeremiah\nKermit\nLucius\nMilford\nNoel\nNolan\nOrville\nPorter\nRoscoe\nSanford\nTim\nWarner\nWilmer\nWilton\nWinfred\nAlfonso\nAlfonza\nAllan\nAndy\nAron\nAvery\nBernice\nBibb\nBoyd\nByron\nCody\nDelton\nDonnie\nEmmitt\nErby\nEvans\nEzell\nGaines\nGreen\nHarley\nHaywood\nHilton\nIvan\nJohny\nJonathan\nJonnie\nKing\nLeamon\nLovell\nMose\nMurphy\nOtto\nSandy\nShelby\nShirley\nTaylor\nTillman\nAlvis\nAnderson\nArtis\nBilley\nBonnie\nBraxton\nCarroll\nCleve\nCliff\nCollie\nComer\nDale\nDallas\nDelbert\nDock\nDoyce\nDudley\nEldridge\nEli\nEmanuel\nEmery\nEric\nFrances\nHobert\nIke\nJefferson\nJohnson\nJosh\nJoshua\nKeith\nLafayette\nLawyer\nLevon\nLindsey\nLouise\nLucious\nLuke\nLynn\nMarlon\nMurray\nNoble\nOllis\nOzell\nRandolph\nRayburn\nShelly\nShelton\nTalmage\nTheron\nThornton\nWilliams\nWoodie\nAbe\nAdolphus\nAl\nAuburn\nBarbara\nBarry\nBert\nBryant\nClarnce\nClovis\nDarrell\nDee\nDelmer\nDewitt\nEdd\nEverette\nEzra\nGaston\nGearld\nGuss\nHardy\nHowell\nHurley\nJamie\nJerald\nJewel\nKarl\nKennith\nLacy\nLamon\nLenard\nLincoln\nLomax\nLorenza\nLoy\nMathew\nMaxie\nMervin\nMike\nMiller\nMyron\nNapoleon\nNewton\nNick\nObie\nOdie\nOlin\nOthel\nPrice\nRandall\nRoderick\nRodney\nRuth\nScott\nSherrill\nSim\nSmith\nSonny\nSteven\nStewart\nTheo\nThurston\nWatson\nWelton\nYoung\nZack\nZebedee\nJames\nWilliam\nJohn\nRobert\nCharles\nWillie\nBilly\nBobby\nGeorge\nThomas\nJoe\nDonald\nHenry\nDavid\nEdward\nWalter\nJimmy\nJoseph\nJerry\nFrank\nJack\nRichard\nRoy\nHarold\nJimmie\nEddie\nPaul\nCharlie\nArthur\nKenneth\nClarence\nFred\nHoward\nSamuel\nAlbert\nEugene\nJohnny\nJohnnie\nRaymond\nCarl\nFranklin\nJessie\nRalph\nJesse\nCurtis\nRoosevelt\nEarnest\nErnest\nLeon\nAndrew\nCecil\nEarl\nHerbert\nMarvin\nClyde\nLee\nGerald\nLawrence\nRonald\nLeroy\nRay\nSam\nHerman\nLouis\nLewis\nMelvin\nTommy\nAlfred\nGene\nDaniel\nDouglas\nFloyd\nCalvin\nHorace\nLuther\nDan\nAllen\nBennie\nOscar\nWayne\nHarry\nLeonard\nNathaniel\nJackie\nMilton\nEdgar\nMarion\nTommie\nDon\nOtis\nClifford\nHubert\nNorman\nHugh\nLarry\nFreddie\nBillie\nGrady\nAlvin\nBen\nBenjamin\nClaude\nJunior\nMax\nChester\nJim\nBill\nGlenn\nSidney\nTheodore\nClinton\nHarvey\nMack\nVernon\nEllis\nLeo\nWallace\nElmer\nRufus\nWillard\nHomer\nJulius\nLloyd\nMorris\nAaron\nEdwin\nElbert\nAlton\nLonnie\nTom\nArchie\nOliver\nArnold\nBenny\nJoel\nAubrey\nRoland\nTroy\nPhillip\nWillis\nGary\nHuey\nLester\nSylvester\nTravis\nWarren\nRex\nBernard\nDennis\nSammie\nDewey\nGordon\nIsaac\nWiley\nMoses\nStanley\nMatthew\nRudolph\nTed\nAmos\nHollis\nLouie\nPerry\nRoyce\nWill\nWinston\nBob\nBobbie\nClifton\nDoyle\nEmmett\nGrover\nPercy\nWilson\nBruce\nCarlton\nGlen\nLeslie\nWilbert\nWilbur\nWoodrow\nBuddy\nCleveland\nJohnie\nNathan\nPreston\nTerry\nLoyd\nMartin\nRoger\nVirgil\nAlex\nClayton\nMarshall\nMaurice\nWesley\nGilbert\nBuford\nIra\nRayford\nFelix\nFrederick\nGuy\nLowell\nMillard\nOllie\nPhilip\nUlysses\nHoyt\nJerome\nJulian\nLamar\nTony\nAbraham\nAlexander\nAnthony\nElijah\nNelson\nRonnie\nSammy\nWendell\nWilburn\nDale\nMary\nRussell\nSteve\nTimothy\nArther\nBooker\nErvin\nEverett\nFletcher\nJasper\nJeff\nMarlin\nMitchell\nMonroe\nNorris\nOneal\nThurman\nAlford\nByron\nMalcolm\nMurray\nOcie\nOwen\nPeter\nRaymon\nSherman\nWinford\nConnie\nElvin\nHershel\nLynn\nOdis\nTruman\nAlonzo\nCoy\nDock\nFrancis\nHarrison\nJake\nLevi\nMajor\nManuel\nMarcus\nMckinley\nMichael\nNeal\nOttis\nPat\nPatrick\nReuben\nRoss\nWinfred\nClark\nCleo\nDave\nDwight\nHouston\nLenard\nMark\nNoah\nRandolph\nReginald\nRogers\nShirley\nTalmadge\nTim\nBarney\nCarlos\nConrad\nEarlie\nElton\nFelton\nJackson\nLovell\nMose\nNapoleon\nObie\nOlen\nOtto\nPete\nRayburn\nRodney\nRoscoe\nRuben\nTeddy\nWaymon\nWilliams\nAdolphus\nAnderson\nBetty\nBurl\nCarroll\nCornelius\nDalton\nDanny\nDonnie\nEd\nEdd\nEli\nEmanuel\nFoy\nFrankie\nFreddy\nGus\nHerschel\nHilton\nIsaiah\nJame\nJay\nKermit\nMorgan\nMurphy\nNeil\nOdell\nRandall\nRiley\nShelby\nWade\nWilford\nWilmer\nAlgie\nAlvie\nArtis\nAustin\nBoyd\nClarance\nColumbus\nForrest\nGarland\nHermon\nHershell\nHosea\nJacob\nJudge\nLorenzo\nLucious\nLucius\nMadison\nMathew\nMiles\nMurry\nNed\nOrville\nOtha\nPrince\nRamon\nSterling\nTheo\nVerbon\nVictor\nAlphonso\nAlto\nAnnie\nBonnie\nCharley\nClaud\nColeman\nEmmitt\nFerrell\nHaywood\nIrvin\nJeremiah\nJohny\nKing\nLeamon\nLuke\nMaxie\nMelton\nMiller\nNoel\nRosevelt\nRubin\nSanford\nSolomon\nTerrell\nWilton\nAdam\nAdolph\nAndy\nArnie\nArvel\nAuther\nBud\nCarey\nCarrol\nClaudie\nCleophus\nDallas\nDavie\nDean\nDelbert\nDoyce\nEdmond\nEdsel\nEmory\nEnoch\nEssie\nEzra\nGorden\nHarce\nHarley\nHayward\nHuston\nIsiah\nJerrell\nJewel\nJonathan\nLamon\nLevert\nLorenza\nMalcom\nMarlon\nMilford\nNick\nPierce\nRichmond\nSandy\nSilas\nWalker\nWarner\nWaylon\nWilber\nWyatt\nAlva\nArlon\nBert\nCameron\nCary\nClarnce\nClemmie\nClemon\nCleve\nComer\nCrawford\nCurtiss\nDelano\nDelmer\nDudley\nEarle\nEarly\nEldridge\nEligah\nElmore\nElzie\nEuel\nFredrick\nGearld\nGeneral\nHansel\nHardy\nHarvel\nHowell\nHugo\nJefferson\nJonnie\nJoshua\nKeith\nKelly\nKennith\nLafayette\nLomax\nLon\nMason\nMyron\nNolan\nNolen\nOran\nOrvel\nRayfield\nRoderick\nRuby\nScott\nShelly\nSid\nSim\nTaylor\nTheron\nTracy\nVester\nVincent\nWalton\nWardell\nWebster\nWilfred\nJames\nJohn\nWilliam\nRobert\nCharles\nWillie\nBilly\nBobby\nJoe\nGeorge\nThomas\nDonald\nHenry\nJimmy\nDavid\nJerry\nEdward\nJoseph\nRichard\nWalter\nFrank\nHarold\nCharlie\nJack\nJohnny\nJimmie\nKenneth\nRoy\nPaul\nEddie\nClarence\nArthur\nJohnnie\nFred\nHoward\nCarl\nEugene\nSamuel\nAlbert\nRalph\nRaymond\nFranklin\nJesse\nLeon\nCecil\nErnest\nRoosevelt\nGerald\nTommy\nJessie\nEarl\nLee\nMelvin\nRonald\nCurtis\nGene\nWayne\nAlfred\nEarnest\nNorman\nDouglas\nHerman\nAndrew\nLawrence\nRay\nLeroy\nMarvin\nLarry\nLouis\nBennie\nClyde\nDaniel\nFreddie\nLewis\nLeonard\nSam\nCalvin\nFloyd\nHarry\nWallace\nBenjamin\nDon\nHorace\nOtis\nJackie\nMilton\nOscar\nHerbert\nBillie\nClifford\nTommie\nNathaniel\nAllen\nHarvey\nBill\nJim\nRufus\nDan\nGrady\nHugh\nClaude\nElbert\nGary\nAlvin\nHubert\nGlenn\nLuther\nBenny\nMarion\nMorris\nEdwin\nJoel\nTravis\nWillard\nAlton\nArchie\nBen\nEdgar\nSylvester\nTheodore\nHomer\nMax\nPercy\nPhillip\nSidney\nTom\nChester\nEllis\nMack\nWiley\nLonnie\nVernon\nAubrey\nJunior\nWill\nAlex\nClifton\nDennis\nLeo\nTroy\nGordon\nCleveland\nRoyce\nRussell\nArnold\nEmmett\nJulius\nElmer\nSammie\nAaron\nBobbie\nDewey\nOliver\nWoodrow\nAmos\nLouie\nRoger\nWilson\nClinton\nDoyle\nLester\nMarshall\nTerry\nWarren\nHollis\nOllie\nPerry\nRex\nWilbert\nElijah\nGilbert\nRoland\nVirgil\nWillis\nBooker\nHuey\nIsaac\nLeslie\nMichael\nTed\nWesley\nBob\nLamar\nStanley\nWilburn\nBernard\nFrancis\nGrover\nGuy\nLloyd\nMatthew\nNathan\nHershel\nGlen\nJake\nRayford\nSammy\nCarlton\nHoyt\nLowell\nMonroe\nAnthony\nBuddy\nByron\nDwight\nJerome\nLoyd\nNelson\nSherman\nSteve\nWade\nWendell\nAbraham\nJohnie\nMary\nMaurice\nNeal\nPeter\nRoss\nSilas\nWilbur\nClayton\nFelix\nHouston\nMoses\nBruce\nEd\nElton\nFrederick\nJasper\nMalcolm\nOwen\nRayburn\nRonnie\nAlexander\nAlonzo\nColumbus\nConnie\nLynn\nPhilip\nTimothy\nBarney\nBuford\nDallas\nIsiah\nKermit\nMajor\nReuben\nRoscoe\nRudolph\nWinfred\nDave\nDonnie\nEdmond\nErskine\nErvin\nJacob\nMarlin\nMitchell\nOdell\nRogers\nShirley\nTalmadge\nTony\nAustin\nBert\nCarlos\nCharley\nClark\nColeman\nCoy\nEli\nElvin\nEzell\nFreeman\nHarley\nJulian\nMillard\nMose\nNapoleon\nOdis\nOlen\nOttis\nPete\nRaymon\nThurman\nWilmer\nCarter\nDorothy\nEnnis\nFoy\nGaines\nIra\nJeff\nLenard\nMurry\nNeil\nNorris\nPreston\nRandall\nRiley\nRuben\nVictor\nAlfonza\nAlphonso\nCarroll\nClaud\nClaudie\nCornelius\nDale\nEverett\nFrankie\nHaywood\nHuston\nIke\nJackson\nJan\nJay\nJonnie\nKennith\nMark\nNed\nNolan\nOcie\nPat\nPatrick\nSolomon\nUlysses\nChristopher\nDanny\nDavis\nDoyce\nEarlie\nFletcher\nFreddy\nFredrick\nHarlon\nHarmon\nHayward\nHosea\nIsaiah\nJamie\nJefferson\nLandon\nLomax\nLovell\nManuel\nMarcus\nMorgan\nQuinton\nSandy\nSanford\nSonny\nSpencer\nStephen\nTaylor\nTeddy\nTheo\nWilford\nWinford\nWoodie\nZack\nAlan\nAuther\nAuthor\nBryant\nCarey\nCary\nCleo\nConrad\nDean\nDewitt\nEarly\nElisha\nElmore\nEmanuel\nForrest\nFoster\nHarris\nHarrison\nIvory\nJeremiah\nJoshua\nKing\nLorenza\nMartin\nMilford\nMurray\nNoah\nRandolph\nSterling\nVincent\nWalton\nWilfred\nWindell\nAdolph\nAlford\nAndy\nArtis\nBishop\nBoby\nBonnie\nBrady\nBurl\nClay\nCleophus\nDannie\nDick\nDock\nDwain\nEmory\nEverette\nFelton\nFerrell\nGarland\nGorden\nGrant\nGus\nHilliard\nHiram\nIssac\nKelly\nLorenzo\nLouise\nLucius\nLuke\nMarie\nMickey\nMiles\nNoel\nOlin\nOneal\nPorter\nReginald\nRodney\nRosevelt\nRuby\nShelly\nSimon\nTheodis\nTruman\nVan\nWaylon\nWilton\nWinston\nWyman\nYoung\nAbe\nAlfonso\nAlfonzo\nAlmon\nAlphonse\nAlvie\nAlvis\nAnderson\nAron\nArther\nBenton\nBoyd\nBurton\nBuster\nChris\nClarance\nCurley\nDelano\nEldon\nEldridge\nEssie\nEzra\nGearld\nGeneral\nGregory\nHansel\nHardy\nHarvy\nHenderson\nHermon\nHobert\nHudson\nJerrell\nJewel\nJonathan\nJosh\nJudge\nKarl\nKeith\nKenny\nLavon\nLawson\nLeamon\nLemuel\nLevi\nLionel\nMaxie\nMaxwell\nMckinley\nMerrill\nMinnie\nObie\nOllis\nOrlando\nOtha\nParker\nRaybon\nRoyal\nRubin\nSamson\nSaul\nShelby\nShelton\nTerrell\nThedore\nTheron\nTillman\nVirgle\nWarner\nWashington\nWaymon\nJames\nJohn\nWilliam\nRobert\nCharles\nWillie\nBilly\nGeorge\nBobby\nThomas\nJoe\nDonald\nJimmy\nJerry\nHenry\nDavid\nEdward\nJoseph\nWalter\nKenneth\nRichard\nFrank\nHarold\nJohnny\nEddie\nCharlie\nArthur\nPaul\nJack\nJimmie\nRoy\nFred\nEugene\nGerald\nAlbert\nSamuel\nClarence\nCarl\nJohnnie\nRaymond\nHoward\nRalph\nJesse\nCurtis\nRonald\nErnest\nMelvin\nTommy\nWayne\nCecil\nFranklin\nEarl\nLarry\nJessie\nGene\nLeon\nHerbert\nLewis\nLeroy\nRay\nRoosevelt\nHerman\nFloyd\nTommie\nEarnest\nClyde\nMarvin\nSam\nLee\nDaniel\nLouis\nAlfred\nAndrew\nAllen\nHarry\nNathaniel\nNorman\nDon\nDouglas\nHorace\nGrady\nMilton\nWallace\nLawrence\nClifford\nOscar\nBennie\nAlton\nAlvin\nBenjamin\nHomer\nOtis\nClaude\nHarvey\nLuther\nPhillip\nBillie\nGlenn\nHugh\nLonnie\nJackie\nMarion\nHubert\nLeo\nFreddie\nGary\nCalvin\nEdgar\nMack\nGordon\nMorris\nSidney\nBill\nBen\nJulius\nJunior\nLeonard\nLloyd\nDan\nRoger\nBobbie\nChester\nJoel\nSylvester\nTerry\nVernon\nJim\nLester\nRufus\nTom\nWillis\nAubrey\nTroy\nClinton\nIsaac\nRoland\nTheodore\nClifton\nMax\nAaron\nElbert\nGlen\nMarshall\nArnold\nElmer\nRex\nWillard\nBenny\nTravis\nAmos\nBernard\nEdwin\nLeslie\nPerry\nRayford\nPercy\nCleveland\nOliver\nRonnie\nDennis\nDewey\nJerome\nMoses\nTed\nArchie\nHollis\nJohnie\nWill\nElijah\nHuey\nIra\nLouie\nOllie\nWiley\nDonnie\nEllis\nLoyd\nNathan\nNelson\nStanley\nWarren\nWilson\nWinston\nBob\nHoyt\nLowell\nPhilip\nSammie\nVirgil\nWesley\nWilbert\nBruce\nFelix\nGuy\nJulian\nMatthew\nMichael\nPeter\nWoodrow\nCarlton\nEmmett\nFrederick\nFreeman\nJeff\nPreston\nSammy\nShelby\nLamar\nMaurice\nMonroe\nTimothy\nVictor\nAlex\nClayton\nRussell\nBuford\nDanny\nFletcher\nFrankie\nGilbert\nGrover\nMartin\nMillard\nRayburn\nRoyce\nDoyle\nErvin\nFrancis\nJacob\nMalcolm\nNeal\nWilburn\nAnthony\nByron\nCarey\nClark\nConnie\nEarlie\nElton\nHershel\nJasper\nShirley\nWaymon\nWendell\nArther\nBarney\nBuddy\nDale\nEarly\nFredrick\nGarland\nMark\nMary\nOdis\nRaymon\nRudolph\nSteve\nWilbur\nWinfred\nBooker\nCarlos\nEd\nHouston\nLevi\nLovell\nMilford\nNorris\nOwen\nPrice\nVan\nWilmer\nCleo\nCoy\nDarrell\nEdmond\nEldridge\nEzell\nIsaiah\nJay\nJon\nPete\nRuben\nThurman\nAlexander\nAlonzo\nBert\nColeman\nColumbus\nDallas\nDave\nDwight\nLenard\nNed\nObie\nOneal\nPat\nRodney\nShelton\nSherman\nSolomon\nSonny\nSterling\nWinford\nAbraham\nAlfonso\nBarbara\nBraxton\nClarance\nCornelius\nEmory\nEverett\nGaines\nIrvin\nJudge\nMajor\nMarcus\nMarlin\nMckinley\nOttis\nRandall\nRogers\nTony\nVincent\nAnnie\nAron\nArtis\nAuthor\nCary\nElvin\nErskine\nGearld\nHarrison\nHayward\nKennith\nLynn\nMaxie\nMitchell\nMurray\nNeil\nOcie\nRoss\nStephen\nTalmadge\nUlysses\nWalker\nWaylon\nWilton\nAdam\nAlford\nAndy\nAuther\nBerry\nClaud\nDean\nEmmitt\nGrant\nGus\nHaywood\nHiram\nHuston\nIsiah\nJackson\nManuel\nNapoleon\nOlen\nOrville\nOtha\nPatrick\nRandolph\nReginald\nRosevelt\nSimon\nStanford\nAdolph\nAdrian\nAlan\nAlonza\nAuburn\nBoyd\nBrady\nBuster\nCarroll\nDavis\nDelano\nDudley\nEmanuel\nEmmit\nFoster\nHarmon\nHenderson\nHosea\nHowell\nIke\nJonathan\nKarl\nLacy\nLeamon\nLeldon\nLemuel\nLorenza\nLucius\nMyron\nNolan\nRiley\nRoscoe\nSpencer\nTheodis\nWade\nWilliams\nAbe\nArvil\nAuthur\nBetty\nBonnie\nCarter\nCleophus\nClint\nClovis\nComer\nConrad\nCornelious\nDalton\nDewayne\nEnoch\nEzekiel\nFelton\nFoy\nHal\nHarlon\nHelen\nHermon\nHilton\nHobert\nHugo\nIssac\nIvory\nJake\nJeffie\nKermit\nKyle\nMerrill\nMike\nMiles\nMorgan\nOdell\nPearlie\nPrince\nReuben\nSanford\nTaylor\nTeddy\nWalton\nWash\nWilford\nWillam\nAlphonso\nAlvie\nAutry\nAvery\nBryant\nBurl\nClay\nColey\nCollie\nCrawford\nCurley\nDelbert\nDillard\nDorsey\nDwain\nEdd\nEldon\nEmery\nFerrell\nForrest\nFrazier\nGlennis\nHerschel\nIrby\nIsreal\nJame\nJamie\nJefferson\nJoshua\nJudson\nJunius\nKelly\nKing\nKirby\nLafayette\nLanny\nLesley\nLevert\nLige\nLincoln\nLindsey\nLionel\nLucious\nMaxwell\nMickey\nMurphy\nMurry\nNewton\nNoel\nOlan\nOtto\nOzell\nQuincy\nQuinton\nRodger\nRoyal\nSim\nTerrell\nTheron\nTomas\nTruman\nTurner\nWindell\nWoodie\nJames\nJohn\nRobert\nWilliam\nCharles\nWillie\nBilly\nBobby\nJoe\nThomas\nGeorge\nJimmy\nJerry\nDonald\nDavid\nJoseph\nHenry\nEdward\nRichard\nFrank\nJohnny\nWalter\nKenneth\nEddie\nHarold\nJimmie\nRoy\nCharlie\nPaul\nArthur\nAlbert\nFred\nJack\nSamuel\nHoward\nCarl\nJohnnie\nLarry\nTommy\nCurtis\nEugene\nClarence\nRalph\nRaymond\nRonald\nMelvin\nLeon\nJessie\nGerald\nDouglas\nLee\nGene\nJesse\nRay\nHerman\nWayne\nEarl\nCecil\nDaniel\nClyde\nErnest\nRoosevelt\nMarvin\nLouis\nAndrew\nGary\nEarnest\nDon\nLewis\nFloyd\nFreddie\nLeroy\nCalvin\nOtis\nClaude\nJackie\nHerbert\nAlfred\nHorace\nSam\nAlton\nFranklin\nGrady\nHarry\nHugh\nLuther\nTommie\nLeonard\nBen\nMilton\nNorman\nOscar\nBennie\nGlenn\nAllen\nLawrence\nPhillip\nWallace\nAlvin\nBill\nChester\nHarvey\nBenjamin\nHubert\nWillard\nBenny\nAaron\nHomer\nLeo\nVernon\nArnold\nClifford\nLester\nLonnie\nBillie\nNathaniel\nRufus\nClinton\nOliver\nTerry\nElbert\nMack\nTravis\nEdgar\nMarion\nJoel\nMichael\nMorris\nWillis\nAlex\nBruce\nEdwin\nEllis\nLloyd\nMarshall\nTroy\nClifton\nRoger\nMax\nAmos\nGlen\nGrover\nSammie\nWilbert\nCleveland\nJerome\nJim\nJunior\nPercy\nBooker\nDoyle\nGordon\nLeslie\nPreston\nRoland\nSammy\nTom\nBobbie\nDennis\nDewey\nElmer\nIsaac\nJulius\nLouie\nOllie\nPerry\nArchie\nBob\nDan\nMaurice\nTed\nNathan\nLamar\nMoses\nSidney\nWiley\nWill\nRex\nWilson\nAubrey\nHershel\nRussell\nSylvester\nWilbur\nEmmett\nFrederick\nHuey\nPatrick\nPhilip\nRayford\nWarren\nWoodrow\nClayton\nElijah\nJeff\nTheodore\nWinston\nBernard\nGilbert\nLowell\nMatthew\nRonnie\nStanley\nWesley\nDonnie\nErvin\nLoyd\nMarlin\nRoyce\nRudolph\nSherman\nFelix\nFrancis\nHoyt\nIra\nShelby\nTony\nWendell\nAlexander\nBarney\nBuford\nCarlton\nFrankie\nHouston\nJulian\nMonroe\nNelson\nRayburn\nSolomon\nSteve\nVirgil\nAbraham\nAlphonso\nBuddy\nDanny\nTimothy\nWilmer\nAnthony\nCleo\nDave\nEd\nFredrick\nFreeman\nHollis\nMary\nMitchell\nRandall\nVan\nWade\nCarlos\nJacob\nJohnie\nMalcolm\nPeter\nRuben\nArther\nByron\nCoy\nDwight\nJake\nWaymon\nAlonzo\nDale\nGuy\nHayward\nHerschel\nJasper\nLevi\nMartin\nMilford\nMose\nNorris\nOneal\nReginald\nReuben\nAlan\nBrady\nColeman\nColumbus\nConnie\nEverett\nForrest\nHermon\nIrvin\nNed\nOdis\nRaymon\nRiley\nUlysses\nVictor\nAnderson\nClarance\nClark\nDallas\nDavis\nElton\nEmmitt\nFletcher\nGarland\nJudge\nLovell\nMillard\nMurray\nNapoleon\nNolan\nPat\nRodney\nStephen\nTeddy\nTheo\nVester\nWilburn\nWinfred\nAdam\nCleophus\nCornelius\nEmanuel\nHowell\nKing\nLeland\nLynn\nMark\nNeil\nNoah\nOdell\nOwen\nRosevelt\nRoss\nShelton\nWinford\nDock\nEdmond\nElmore\nElvin\nIvory\nJon\nKenny\nLorenzo\nManuel\nMickey\nMike\nOttis\nPete\nPorter\nSonny\nSterling\nTruman\nWilton\nAlvis\nAuther\nAutry\nBryant\nCarey\nCarroll\nChristopher\nClaud\nDarrell\nDean\nDelmer\nDoyal\nEarlie\nEarly\nEldon\nErskine\nGearld\nHarrison\nHaywood\nIke\nIsiah\nJay\nJonathan\nLavon\nLeamon\nLemuel\nLindsey\nLomax\nLucious\nMarcus\nMyron\nNeal\nNoel\nOcie\nOlan\nOlen\nOtha\nPrince\nRandolph\nShirley\nStewart\nWarner\nWaylon\nAlfonso\nAustin\nBerry\nBert\nBetty\nBoyd\nBud\nCarter\nCollins\nConrad\nDempsey\nDorothy\nEdd\nEmery\nFelton\nGus\nHillard\nJackson\nJerald\nLafayette\nLedell\nLevon\nLuke\nMaxie\nMicheal\nMiller\nMurphy\nNolen\nOlin\nPalmer\nRaybon\nRoderick\nRogers\nSanford\nTalmadge\nThurman\nThurston\nVerlon\nVincent\nWilford\nWilfred\nWilliams\nZollie\nAlford\nAllan\nAlonza\nAron\nAugustus\nBarbara\nBenard\nBonnie\nBradley\nBraxton\nBuster\nCharley\nClarnce\nCleon\nColey\nComer\nDalton\nDillard\nDoris\nEli\nElvis\nEmmit\nEmory\nEric\nErnie\nEzekiel\nFerrell\nFreddy\nGiles\nGleen\nHarris\nHershell\nHiawatha\nIsadore\nJeremiah\nJohnson\nJonas\nJonnie\nJudson\nLance\nLorenza\nLouise\nLucian\nLynwood\nMajor\nManley\nMaynard\nMiles\nMorgan\nMurry\nNancy\nPhil\nPierce\nRoman\nRoyzell\nRuby\nSampson\nSandy\nSimon\nTaft\nThornton\nTyrone\nVance\nVerbon\nWash\nWebster\nWoodie\nWyatt\nJames\nWilliam\nJohn\nRobert\nCharles\nWillie\nBilly\nBobby\nThomas\nJoe\nGeorge\nJerry\nDavid\nJimmy\nDonald\nHenry\nJoseph\nEdward\nWalter\nJohnny\nRichard\nKenneth\nFrank\nHarold\nRoy\nCharlie\nArthur\nPaul\nEddie\nJimmie\nLarry\nJack\nFred\nClarence\nEugene\nCarl\nSamuel\nAlbert\nGerald\nJohnnie\nRaymond\nJesse\nRalph\nRonald\nTommy\nWayne\nHoward\nMelvin\nCurtis\nCecil\nErnest\nEarl\nJessie\nEarnest\nLee\nRoosevelt\nGene\nLeon\nMarvin\nFranklin\nLeroy\nLouis\nNorman\nDouglas\nFloyd\nClyde\nDaniel\nHerman\nAndrew\nTommie\nLeonard\nJackie\nLewis\nCalvin\nOscar\nAlfred\nDon\nLawrence\nBennie\nRay\nHerbert\nBenjamin\nHorace\nNathaniel\nClifford\nFreddie\nMorris\nAlton\nBenny\nClaude\nGrady\nOtis\nGary\nLonnie\nBill\nSam\nAllen\nAlvin\nHarry\nLuther\nMilton\nMarion\nWallace\nHomer\nPhillip\nRufus\nTravis\nDewey\nGordon\nHubert\nRoger\nEdgar\nHugh\nChester\nElbert\nHarvey\nSidney\nTerry\nWillard\nAubrey\nBillie\nGlenn\nMack\nDennis\nLeo\nRonnie\nDan\nJim\nLester\nPerry\nSylvester\nVernon\nBen\nMichael\nTom\nAaron\nJoel\nIsaac\nJunior\nWilbert\nTheodore\nWesley\nEdwin\nOliver\nBernard\nJulius\nLloyd\nVirgil\nBob\nClinton\nDonnie\nGrover\nLamar\nMax\nBruce\nClifton\nJerome\nStanley\nTroy\nWarren\nMatthew\nPercy\nRussell\nSammie\nCarlton\nFrederick\nJohnie\nWillis\nArchie\nDoyle\nEllis\nElmer\nAnthony\nCleveland\nGlen\nLeslie\nRayburn\nRayford\nSherman\nMoses\nRoland\nWinston\nBobbie\nTed\nWoodrow\nLoyd\nRex\nWill\nWilson\nArnold\nBuddy\nFrancis\nIra\nNathan\nSteve\nTony\nClayton\nDwight\nJulian\nLouie\nWendell\nWilbur\nAmos\nCoy\nLowell\nMaurice\nNelson\nRandall\nWilburn\nAlex\nMarshall\nSammy\nWiley\nHoyt\nOllie\nPreston\nRoyce\nEmmett\nGuy\nMonroe\nNed\nPhilip\nTyrone\nAbraham\nCarlos\nDale\nElijah\nFoy\nHarrison\nHayward\nHollis\nRiley\nRuben\nBooker\nBuford\nByron\nColeman\nErvin\nFletcher\nManuel\nRodney\nShirley\nStephen\nWade\nAlexander\nElvin\nEverett\nHershel\nJay\nJon\nMarcus\nNeil\nOneal\nPeter\nRandolph\nTeddy\nArther\nBarney\nFelix\nFrankie\nGilbert\nJacob\nKennith\nLynn\nMalcolm\nMark\nMitchell\nPete\nReginald\nShelby\nWilmer\nBarry\nEd\nEmory\nHouston\nJeff\nLorenzo\nMajor\nMarlin\nOdis\nPatrick\nSilas\nSolomon\nTimothy\nAlan\nAlonzo\nAnderson\nAustin\nBoyd\nDallas\nDalton\nDanny\nDarrell\nGus\nHuey\nJackson\nJake\nJerald\nJonathan\nKing\nMary\nMillard\nOcie\nReuben\nUlysses\nVan\nVictor\nWinford\nClaud\nCleophus\nEarlie\nElton\nForrest\nFoster\nFreddy\nHermon\nIke\nKermit\nMike\nNeal\nNoel\nPat\nPorter\nTalmadge\nTruman\nAlonza\nBerry\nBert\nCarey\nCarroll\nClay\nComer\nCornelius\nDave\nFreeman\nGearld\nHarmon\nIsiah\nJasper\nJean\nJerrell\nLeamon\nOdell\nOttis\nOwen\nPhil\nRaymon\nRogers\nSpencer\nTim\nVerlon\nAnnie\nAugusta\nBetty\nBuster\nCarol\nCarrol\nCarter\nClaudie\nConnie\nConrad\nDelbert\nDorothy\nEdmond\nEmanuel\nEmmitt\nErskine\nFredrick\nGarland\nHal\nHerschel\nHillard\nHiram\nIsaiah\nJacky\nJerre\nJudge\nKelly\nKyle\nLafayette\nLeland\nLou\nMartin\nMose\nMurry\nNick\nPrince\nRaybon\nRosevelt\nRubin\nRudolph\nScott\nSonny\nTheo\nThurman\nWaymon\nWinfred\nAlphonso\nAuther\nAutrey\nBryant\nBurl\nCary\nCharley\nCleo\nDempsey\nDenny\nDerrell\nDillard\nDorsey\nDudley\nEdd\nEddy\nEli\nElisha\nElmore\nFelton\nForest\nGaines\nGregory\nHaywood\nJeremiah\nJudson\nLenard\nLevi\nLindsey\nLorenza\nMickey\nMilford\nNapoleon\nObie\nOtha\nRobbie\nSanford\nSmith\nSterling\nTaylor\nAbe\nAlford\nAndy\nAron\nBertha\nBonnie\nBrady\nChristopher\nClark\nDarnell\nDavis\nDewitt\nDoris\nEmery\nErnie\nHardy\nHowell\nHudson\nHuston\nIsreal\nIvan\nJewel\nJones\nJosh\nKerry\nLanny\nLavon\nLecil\nLemuel\nLenord\nLois\nLovell\nLuddie\nLuke\nMartha\nMaxie\nMorgan\nMurray\nNoah\nNorris\nOrbie\nQuinton\nRansom\nRoderick\nRollie\nRoscoe\nRozell\nSandy\nShelley\nSteven\nStewart\nTherman\nVincent\nVinson\nWalker\nWarner\nWilford\nWilliams\nWilly\nWindell\nWoodie\nWyatt\nJames\nJohn\nWilliam\nRobert\nCharles\nWillie\nBilly\nJerry\nBobby\nThomas\nGeorge\nJimmy\nJoe\nDavid\nDonald\nHenry\nJoseph\nEdward\nKenneth\nJohnny\nRichard\nWalter\nFrank\nRoy\nHarold\nEddie\nPaul\nArthur\nSamuel\nCharlie\nLarry\nRonald\nJimmie\nClarence\nEugene\nWayne\nCarl\nRaymond\nJack\nTommy\nFred\nHoward\nJesse\nAlbert\nGerald\nJohnnie\nRalph\nCurtis\nFranklin\nLeon\nLee\nMelvin\nErnest\nGary\nCecil\nEarl\nEarnest\nHerman\nRay\nLouis\nJessie\nAlfred\nDaniel\nDon\nMarvin\nLewis\nGene\nRoosevelt\nHerbert\nLeroy\nBennie\nClyde\nPhillip\nNathaniel\nTerry\nJackie\nAndrew\nNorman\nCalvin\nDouglas\nFloyd\nHarry\nSam\nOscar\nLawrence\nWendell\nFreddie\nGlenn\nLeonard\nMilton\nMichael\nHugh\nHorace\nLuther\nBill\nDan\nHubert\nOtis\nAllen\nJim\nTommie\nAlton\nGrady\nBenjamin\nHarvey\nMarion\nRoger\nAlvin\nBen\nClaude\nJoel\nLeo\nClifford\nWillard\nRufus\nVernon\nWallace\nBenny\nDewey\nEdgar\nLester\nMorris\nGordon\nLonnie\nOliver\nTheodore\nHomer\nEdwin\nRex\nStanley\nAaron\nSteve\nTravis\nPercy\nRoland\nRonnie\nSylvester\nBillie\nChester\nCleveland\nClifton\nClinton\nMack\nWinston\nBobbie\nDennis\nFrederick\nPhilip\nSidney\nIsaac\nJunior\nSammie\nTony\nDoyle\nJulius\nRoyce\nTed\nAmos\nElbert\nRussell\nSammy\nWoodrow\nAubrey\nEmmett\nMax\nWilbert\nArchie\nLloyd\nNathan\nTom\nTroy\nWesley\nJerome\nLeslie\nMarshall\nAnthony\nArnold\nBooker\nCarlton\nGlen\nGrover\nPerry\nPeter\nPreston\nStephen\nWilson\nAlex\nEllis\nHollis\nMark\nWillis\nBob\nElmer\nPatrick\nVirgil\nWiley\nWill\nBruce\nFrancis\nMajor\nMaurice\nOllie\nGilbert\nLouie\nLowell\nFrankie\nJulian\nMatthew\nNelson\nRuben\nTimothy\nTyrone\nWindell\nHershel\nRayford\nWilburn\nBernard\nDanny\nHoyt\nKermit\nLamar\nLoyd\nMose\nThurman\nWarren\nAlexander\nAustin\nByron\nConnie\nDale\nFelix\nFredrick\nLynn\nMike\nOdell\nSherman\nWilbur\nWoodie\nAbraham\nAlfonso\nElijah\nJeff\nMoses\nRayburn\nRodney\nShelby\nWade\nDonnie\nDwight\nIra\nJacob\nJerald\nJohnie\nLeland\nRoss\nRudolph\nUlysses\nArther\nCoy\nIsiah\nLevi\nLucius\nMalcolm\nMickey\nNeal\nOcie\nPat\nReginald\nRiley\nWilmer\nBarney\nBoyd\nBuddy\nCarlos\nClayton\nCornelius\nEd\nHouston\nJon\nLorenzo\nManuel\nMarcus\nMary\nNed\nRandolph\nSterling\nWinfred\nDave\nDelbert\nErskine\nForrest\nGarland\nGearld\nHarrison\nHillard\nIrvin\nJake\nLionel\nMitchell\nMurray\nRandall\nRosevelt\nRubin\nWaymon\nWilford\nAnderson\nBuford\nCharley\nChristopher\nColeman\nEarlie\nGuy\nHerschel\nHowell\nJay\nJudge\nLorenza\nLovell\nMarlin\nMillard\nMonroe\nNolan\nOdis\nOneal\nOwen\nReggie\nTerrell\nTruman\nWilliams\nBrady\nDavis\nDean\nFreeman\nHershell\nHosea\nHuey\nIsaiah\nJasper\nMartin\nNeil\nNoah\nRandy\nSanford\nSolomon\nSpencer\nSteven\nTalmadge\nTheodis\nVictor\nWarner\nAdam\nAlphonso\nAndy\nBarry\nBert\nBetty\nClark\nCleophus\nColumbus\nDarrell\nEnnis\nFelton\nFletcher\nHaywood\nHilton\nHuston\nKennith\nMelton\nSimon\nVester\nWinford\nAlfonza\nAuthor\nCarver\nClarance\nConrad\nDoris\nDorothy\nElliott\nElton\nGarry\nGeneral\nGerry\nGregory\nHal\nHarlon\nIsadore\nJefferson\nJudson\nMac\nMilford\nNapoleon\nOlen\nPete\nPrince\nRaymon\nRoman\nRonny\nTeddy\nTim\nWilton\nAlan\nAlford\nAllan\nAlonzo\nAlvie\nCarol\nClaud\nDamon\nDarryl\nDawson\nEdd\nElvis\nEmanuel\nEmmette\nEmmitt\nEmory\nEverett\nEzell\nGaines\nGaylon\nGus\nHarvel\nHarvie\nJackson\nJacky\nJerre\nJerrell\nKelly\nKirby\nLucious\nMarlon\nMckinley\nNorris\nObie\nOrville\nOtha\nRandell\nRogers\nRuby\nSamson\nSandy\nSilas\nSonny\nTherman\nVan\nWaylon\nAdrian\nAl\nAlphonsa\nAlto\nAron\nArtis\nAubry\nAugustus\nAvery\nBailey\nBennett\nBertha\nBradford\nBryant\nBuster\nCarey\nCarroll\nCary\nClaudie\nClovis\nCrawford\nCurtiss\nDallas\nDee\nDempsey\nDenver\nDurwood\nDwain\nDwayne\nEddy\nEdsel\nEligah\nFarris\nFoy\nGarfield\nHenderson\nHezekiah\nHobert\nIsom\nJame\nJan\nJere\nJoyce\nKeith\nKenny\nKing\nLafayette\nLanny\nLawson\nLemuel\nLindsey\nMargaret\nMaxie\nMeredith\nMorgan\nMyron\nNoel\nNolen\nOlin\nPhil\nRabon\nRobbie\nRobin\nRoderick\nRodger\nRoscoe\nRudy\nShelly\nShirley\nStewart\nTaylor\nThurston\nTillman\nTracy\nWillian\nWyatt\nJames\nWilliam\nJohn\nRobert\nCharles\nWillie\nBilly\nJerry\nBobby\nGeorge\nThomas\nJimmy\nDavid\nJoe\nDonald\nEdward\nJoseph\nHenry\nLarry\nRichard\nJohnny\nKenneth\nWalter\nHarold\nFrank\nRoy\nEddie\nPaul\nCharlie\nClarence\nRonald\nJimmie\nArthur\nSamuel\nAlbert\nHoward\nRaymond\nCarl\nWayne\nTommy\nJesse\nGerald\nFred\nJohnnie\nEugene\nJack\nRalph\nLeon\nMarvin\nMelvin\nEarl\nLeroy\nMichael\nCecil\nCurtis\nFranklin\nLee\nDon\nErnest\nJessie\nGary\nJackie\nRay\nEarnest\nGene\nSam\nRoosevelt\nDouglas\nTerry\nLouis\nAlfred\nAndrew\nHerman\nNorman\nPhillip\nNathaniel\nFreddie\nLewis\nClyde\nHorace\nBennie\nDaniel\nFloyd\nHarry\nLawrence\nTommie\nAlvin\nAllen\nLeonard\nClaude\nHerbert\nMilton\nOscar\nWallace\nGlenn\nRonnie\nBill\nGrady\nRoger\nWendell\nCalvin\nDennis\nLonnie\nOtis\nAlton\nBenny\nHugh\nTheodore\nLuther\nMorris\nBenjamin\nDan\nClifford\nVernon\nJim\nMarion\nWinston\nFrederick\nJoel\nJulius\nRufus\nWillard\nWoodrow\nChester\nHarvey\nAaron\nBen\nSidney\nTom\nEdgar\nGordon\nLloyd\nMack\nArchie\nBillie\nHubert\nRoland\nEdwin\nAnthony\nElbert\nLester\nSammie\nTony\nHomer\nMike\nPercy\nPerry\nSteve\nDewey\nElmer\nTroy\nAubrey\nEllis\nSylvester\nTravis\nWilson\nLeo\nLeslie\nStanley\nWilbert\nJerome\nLamar\nOliver\nTed\nWarren\nClifton\nWill\nClinton\nAlex\nCarlton\nGrover\nIra\nRoyce\nRussell\nBobbie\nElijah\nJohnie\nLouie\nMax\nCleveland\nMoses\nStephen\nWillis\nDonnie\nEmmett\nPatrick\nAmos\nArnold\nBob\nDoyle\nGlen\nJulian\nJunior\nMarshall\nNathan\nRandall\nSammy\nNelson\nPhilip\nRayburn\nWesley\nDanny\nFrancis\nGilbert\nMatthew\nPeter\nMalcolm\nMartin\nTyrone\nBernard\nBuford\nByron\nHoyt\nIsaac\nLoyd\nSherman\nWilbur\nAbraham\nBruce\nCoy\nJasper\nMaurice\nMickey\nRex\nWilburn\nBuddy\nCarey\nDale\nGuy\nHollis\nMarlin\nMary\nMonroe\nBooker\nCarlos\nDallas\nFredrick\nJake\nLowell\nRodney\nVictor\nAlexander\nColumbus\nConnie\nDave\nErvin\nForrest\nFoy\nHouston\nMark\nMitchell\nNoah\nTerrell\nWade\nWindell\nAustin\nDarrell\nEdd\nGarry\nHershel\nJacob\nLorenzo\nLynn\nMose\nOllie\nPete\nRandolph\nReginald\nVirgil\nAndy\nDwight\nEdmond\nFrankie\nHuey\nJackson\nKennith\nKenny\nLeland\nLevi\nNeal\nNed\nPhil\nRaymon\nWiley\nWilmer\nClayton\nFelix\nJeff\nMajor\nMarcus\nMarlon\nSpencer\nTimothy\nTruman\nWaymon\nArther\nBarney\nCharley\nClaud\nEarlie\nEverett\nFletcher\nJerald\nJeremiah\nJon\nMillard\nPat\nRudolph\nSteven\nTeddy\nVan\nBoyd\nBrady\nClark\nEarly\nElvin\nEmanuel\nFreddy\nHayward\nHosea\nIsaiah\nIsiah\nLenard\nLovell\nMac\nNeil\nNorris\nOdis\nOwen\nRayford\nReuben\nRonny\nSanford\nShelby\nShirley\nTalmadge\nThurman\nTim\nUlysses\nVerlon\nAlfonso\nAllan\nAlonzo\nArtis\nAugustus\nBetty\nCary\nCleo\nCleophus\nDewitt\nEd\nEmory\nErrol\nEvans\nEzell\nFreeman\nGarland\nHarris\nHerschel\nHillard\nJacky\nJay\nJerrell\nLorenza\nNapoleon\nOlin\nOneal\nOtha\nOttis\nOtto\nPreston\nRoderick\nRoss\nRuben\nAlfonza\nAnnie\nClaudie\nConrad\nCornelius\nDavis\nDoris\nElmore\nHarrison\nHulon\nKermit\nLynwood\nNolan\nOcie\nOdell\nOlen\nRandal\nRoscoe\nSaul\nSolomon\nVance\nVincent\nWilfred\nWinford\nWinfred\nAdam\nAlphonse\nAnderson\nAuthor\nBarbara\nBuster\nChristopher\nClay\nCrawford\nDillard\nDorothy\nDudley\nEddy\nElisha\nElton\nElvis\nErskine\nErwin\nGaines\nGeneral\nGrant\nHardy\nHenderson\nHilton\nHiram\nHowell\nHudson\nIssac\nKeith\nKelly\nLanny\nLindsey\nLionel\nMason\nMorgan\nNick\nRandell\nRandy\nRiley\nRosevelt\nSilas\nWalker\nWilford\nWilliams\nWoodie\nAbe\nAbner\nAcie\nAdolph\nAdolphus\nAlford\nAlphonso\nArlon\nBerry\nBradley\nBryant\nCarroll\nClausell\nClement\nColey\nDalton\nDean\nDonell\nDurwood\nEli\nElliott\nEmerson\nEnoch\nEric\nEzekiel\nFoster\nFrederic\nGearld\nGlynn\nGus\nHaywood\nHermon\nHilliard\nIke\nJeffrey\nJere\nJonathan\nKent\nLance\nLavaughn\nLawyer\nLaymon\nLucious\nLucius\nMcarthur\nMelvyn\nMilford\nMurray\nOllis\nOrville\nPrince\nRobbie\nRobin\nRogers\nRubin\nSandy\nSimon\nSonny\nStewart\nTheotis\nToby\nVirgle\nWilly\nWyatt\nWyman\nJames\nWilliam\nRobert\nJohn\nCharles\nWillie\nJerry\nBilly\nThomas\nBobby\nGeorge\nDavid\nJimmy\nDonald\nLarry\nJoe\nJohnny\nJoseph\nRichard\nHenry\nDouglas\nEdward\nKenneth\nRoy\nWalter\nRonald\nPaul\nFrank\nArthur\nTommy\nEddie\nHarold\nSamuel\nRaymond\nCharlie\nClarence\nAlbert\nJack\nJimmie\nWayne\nEugene\nFred\nHoward\nGerald\nJohnnie\nCarl\nRalph\nGary\nMichael\nCurtis\nJesse\nMarvin\nDaniel\nErnest\nMelvin\nCecil\nEarl\nAndrew\nLee\nLeroy\nFranklin\nHerman\nLeon\nPhillip\nRay\nHarry\nJackie\nLeonard\nJessie\nLawrence\nLouis\nHerbert\nMack\nDon\nTerry\nLewis\nWallace\nGene\nBennie\nTommie\nClyde\nFreddie\nHorace\nRonnie\nRoosevelt\nAlfred\nEarnest\nCalvin\nFloyd\nBill\nAllen\nGlenn\nBenjamin\nNathaniel\nSam\nClifford\nLonnie\nHarvey\nLuther\nAlvin\nClaude\nNorman\nMilton\nRoger\nHubert\nOtis\nDennis\nElbert\nOscar\nLloyd\nMarion\nHugh\nLester\nBenny\nGrady\nWinston\nBen\nEdwin\nMac\nSteve\nTom\nWillard\nHomer\nDewey\nJim\nChester\nEllis\nJerome\nJoel\nMarshall\nTony\nAlton\nTheodore\nWarren\nSammy\nVernon\nWendell\nEdgar\nLeo\nPercy\nClinton\nRufus\nSidney\nStanley\nArchie\nLeslie\nAubrey\nDan\nSylvester\nDanny\nLamar\nMorris\nPerry\nWilbert\nAnthony\nMatthew\nRoland\nStephen\nAaron\nBillie\nJulius\nNathan\nArnold\nIsaac\nJunior\nMcarthur\nOliver\nPeter\nSammie\nTroy\nBruce\nLouie\nPhilip\nTravis\nElmer\nGordon\nMax\nClifton\nDonnie\nFrederick\nTed\nTimothy\nWilson\nNelson\nWoodrow\nBob\nDoyle\nRoyce\nVirgil\nWillis\nAmos\nEmmett\nMark\nMaurice\nOllie\nPreston\nRussell\nWilburn\nCleveland\nGlen\nPatrick\nBobbie\nBuddy\nIra\nAlonzo\nFrancis\nGilbert\nHershel\nHoyt\nSherman\nWesley\nCarlton\nHollis\nJohnie\nMike\nRandall\nRodney\nTeddy\nAlexander\nDwight\nElijah\nGrover\nHouston\nJasper\nJeff\nJulian\nLorenzo\nLowell\nMalcolm\nMickey\nVictor\nWiley\nWill\nAlex\nCoy\nGuy\nLynn\nMarcus\nMoses\nRayford\nAbraham\nAnderson\nBernard\nByron\nClayton\nErvin\nMonroe\nNed\nRoss\nClark\nFrankie\nFredrick\nMacarthur\nMartin\nMckinley\nOwen\nRayburn\nRex\nRuben\nTyrone\nVincent\nBooker\nFletcher\nGus\nHuey\nMary\nOcie\nReginald\nReuben\nWilmer\nAustin\nEdmond\nFelix\nJacob\nMajor\nNeal\nNoah\nCarlos\nEmanuel\nEverett\nFreddy\nFreeman\nSpencer\nBert\nBuford\nChristopher\nClaud\nDale\nGarland\nJackson\nKennith\nMillard\nThurman\nWade\nAlan\nAuthor\nCharley\nCleophus\nEd\nElton\nEmory\nEzell\nIsiah\nKermit\nMarlin\nMitchell\nMurray\nNorris\nRonny\nRudolph\nWaymon\nWilbur\nAdam\nAlphonso\nBarney\nCornelius\nDalton\nEric\nHarrison\nHermon\nHershell\nJerre\nJon\nKelly\nLevi\nLoyd\nMose\nNeil\nPorter\nRandolph\nRogers\nSteven\nTim\nAndy\nBonnie\nColin\nColumbus\nConnie\nCraig\nDudley\nEarly\nElvin\nFoy\nHayward\nJake\nJerald\nJonathan\nKing\nMarlon\nSanford\nShirley\nSilas\nSolomon\nSonny\nVerlon\nWinfred\nBarry\nBoyd\nBryant\nCleo\nDallas\nDarrell\nDave\nDenny\nDewitt\nEarlie\nEnoch\nErskine\nHarlon\nHowell\nJay\nJoshua\nJudson\nLorenza\nLovell\nManuel\nNapoleon\nOneal\nOttis\nPete\nQuinton\nRandy\nRiley\nRoscoe\nRubin\nSimon\nSterling\nAdolph\nAdrian\nAlfonza\nBetty\nCarey\nDewayne\nFelton\nForest\nGarry\nGaston\nGerry\nHardy\nHillard\nHiram\nIrvin\nIvan\nKenny\nLanny\nLeamon\nLeland\nLenard\nMilford\nMurry\nOdell\nOlen\nOrville\nPhil\nSherrill\nTalmadge\nUlysses\nWilliams\nWinford\nWoodie\nAdolphus\nAlfonso\nAlfonzo\nAlford\nAnnie\nArther\nBryan\nClaudie\nCleve\nColeman\nConrad\nCrawford\nDean\nEmery\nEmmitt\nEzekiel\nForrest\nGregory\nHal\nHarley\nHarmon\nIsaiah\nJacky\nKarl\nKeith\nLemuel\nLionel\nLonzo\nMaxie\nMicheal\nMorgan\nNicholas\nObie\nOdis\nRamon\nRoyal\nSandy\nShelby\nSimmie\nTaylor\nTerrell\nVan\nAlgie\nAlvie\nAlvis\nBasil\nBernie\nBraxton\nCary\nDamon\nDannie\nDempsey\nDorsey\nEdd\nEdmund\nEli\nEmma\nFoster\nGeneral\nGrant\nHarlan\nHaywood\nHerschel\nHosea\nIke\nJefferson\nJeffrey\nJerrell\nJewel\nKirby\nLafayette\nLevon\nLuke\nMason\nNamon\nNoble\nOlin\nOtha\nRaymon\nRickey\nShelton\nThaddeus\nTheron\nTruman\nVann\nWalton\nWard\nWindell\nJames\nWilliam\nJohn\nRobert\nCharles\nWillie\nJerry\nThomas\nBilly\nGeorge\nBobby\nDavid\nJimmy\nLarry\nDonald\nJohnny\nRichard\nJoe\nJoseph\nHenry\nEdward\nKenneth\nWalter\nRonald\nRoy\nPaul\nEddie\nHarold\nFrank\nArthur\nClarence\nDouglas\nTommy\nJimmie\nSamuel\nCharlie\nCarl\nWayne\nGary\nJesse\nFred\nMichael\nRaymond\nAlbert\nHoward\nGerald\nJack\nRoger\nRalph\nCurtis\nEugene\nDaniel\nMelvin\nCecil\nTerry\nMarvin\nLeon\nErnest\nJohnnie\nRonnie\nEarl\nDon\nJessie\nLawrence\nRay\nLouis\nLewis\nEarnest\nLeroy\nHarry\nAlfred\nAndrew\nClyde\nHerbert\nLee\nHerman\nFreddie\nLeonard\nPhillip\nTommie\nGene\nFloyd\nSam\nJackie\nRoosevelt\nWallace\nClaude\nFranklin\nCalvin\nMilton\nBennie\nLonnie\nMack\nOtis\nGlenn\nNorman\nBill\nNathaniel\nAllen\nHarvey\nBenjamin\nDennis\nClifford\nOscar\nLuther\nGrady\nHugh\nJim\nDanny\nAnthony\nHubert\nMarion\nSteve\nStanley\nAlvin\nFrederick\nLester\nLloyd\nElbert\nHorace\nHomer\nSidney\nStephen\nTheodore\nDwight\nTroy\nWarren\nWinston\nJoel\nBen\nDonnie\nMorris\nJulius\nPerry\nSammy\nBenny\nClifton\nOliver\nChester\nWendell\nGordon\nLamar\nBruce\nEdwin\nPercy\nRussell\nBob\nDewey\nEdgar\nMarshall\nDan\nRufus\nTravis\nVernon\nWillard\nArchie\nJerome\nPhilip\nTony\nAlton\nTom\nAaron\nCleveland\nIsaac\nMac\nWesley\nWilson\nWoodrow\nBernard\nMoses\nVictor\nWilbert\nArnold\nHollis\nMax\nOllie\nRoyce\nEllis\nElmer\nJunior\nLeslie\nNathan\nCarlton\nPeter\nTimothy\nClinton\nLouie\nRandall\nRodney\nRoland\nSylvester\nBillie\nDoyle\nGlen\nPreston\nTed\nFrancis\nGilbert\nJohnie\nMcarthur\nNelson\nVirgil\nWillis\nDale\nElijah\nEmmett\nPatrick\nRandolph\nAubrey\nBuford\nCarlos\nCornelius\nGrover\nLeo\nMatthew\nDarrell\nLynn\nMalcolm\nMike\nWill\nAlex\nClayton\nIra\nJulian\nLowell\nRex\nSherman\nByron\nJeff\nMarcus\nMartin\nMickey\nRayford\nRodger\nBarry\nRayburn\nSammie\nWilbur\nBobbie\nJacob\nMark\nMaurice\nMitchell\nAlan\nCoy\nFredrick\nGarland\nMajor\nSteven\nAlonzo\nAmos\nBarney\nBuddy\nFelix\nFrankie\nJerald\nLorenza\nSolomon\nAlexander\nEd\nFletcher\nFreddy\nMonroe\nNeal\nShelby\nWilburn\nWinford\nWinfred\nBooker\nHoyt\nJonathan\nLorenzo\nWade\nAlphonso\nAndy\nChristopher\nDave\nGuy\nHouston\nJay\nLevi\nLucious\nMurray\nReginald\nSpencer\nTeddy\nEverett\nFoster\nFreeman\nJacky\nJon\nKennith\nManuel\nMarlin\nNed\nPat\nPete\nWilmer\nAbraham\nColumbus\nEdmond\nEmmitt\nErskine\nJackson\nKing\nLeland\nMilford\nNoah\nNorris\nRandy\nRogers\nThurman\nVincent\nBarbara\nCarey\nClaud\nCurley\nDock\nEarly\nElton\nEric\nHal\nHershel\nIsiah\nLoyd\nMose\nNapoleon\nOcie\nOlen\nTyrone\nWaymon\nWiley\nClark\nClay\nCleophus\nDalton\nEmory\nEnoch\nGeneral\nGrant\nHarris\nHarrison\nHerschel\nHuey\nIsaiah\nNoel\nOwen\nRonny\nRudolph\nTruman\nWilfred\nBonnie\nBoyd\nCarter\nCharley\nColeman\nConrad\nEarlie\nEddy\nEmanuel\nForrest\nGarry\nGlynn\nGregory\nHarmon\nHermon\nIvan\nMadison\nMary\nMaxwell\nNolan\nOdis\nReuben\nRiley\nRoscoe\nShelton\nTalmadge\nTim\nWoody\nAlfonza\nAustin\nBert\nBraxton\nBuster\nColin\nComer\nConnie\nDarwin\nDavis\nDean\nEdd\nEli\nElliott\nElmore\nErvin\nIrvin\nJake\nJan\nJasper\nJeremiah\nKeith\nKelly\nKermit\nKyle\nMacarthur\nMckinley\nMillard\nOneal\nOttis\nRosevelt\nRoss\nRoyal\nRuben\nRupert\nShelly\nShirley\nSilas\nStewart\nTaylor\nTerrance\nTheo\nWalker\nWeldon\nWindell\nWoodie\nAdam\nAlfonso\nAllan\nAnderson\nArlin\nAudrey\nAuthur\nBurl\nCarol\nChris\nCleo\nDennie\nDewitt\nDurwood\nErrol\nEzekiel\nEzell\nFoy\nGearld\nGerry\nHiram\nIke\nJeffrey\nJerrell\nJoyce\nJudge\nKarl\nKerry\nLincoln\nLinda\nMelton\nMorgan\nNewell\nObie\nOdell\nOtha\nOtto\nPrentiss\nRubin\nSandy\nScott\nUlysses\nVan\nWayland\nWilford\nWillam\nWillian\nWilton\nAlonza\nArlon\nArther\nArtis\nArvel\nAugustus\nBoyce\nBryan\nBryant\nCarroll\nCary\nClaudie\nClem\nCleophas\nCurtiss\nDallas\nDannie\nDewayne\nDonny\nDudley\nElisha\nElvin\nFarris\nGlendon\nHarvie\nHillman\nHowell\nHuston\nIvory\nJame\nJoesph\nJudson\nLavon\nLawson\nMason\nMaxie\nMicheal\nMurry\nMyles\nNeil\nNicholas\nNoble\nPatricia\nQuincy\nQuinton\nRamon\nSanford\nSimmie\nSterling\nTerrell\nTillman\nUlysee\nWarner\nWindle\nJames\nWilliam\nRobert\nJohn\nCharles\nWillie\nJerry\nThomas\nJimmy\nBilly\nGeorge\nLarry\nDavid\nDonald\nBobby\nRichard\nJohnny\nJoseph\nJoe\nHenry\nEdward\nKenneth\nRonald\nWalter\nRoy\nFrank\nRoger\nPaul\nCharlie\nTommy\nHarold\nEddie\nArthur\nGary\nMichael\nAlbert\nJimmie\nSamuel\nClarence\nWayne\nJack\nDouglas\nFred\nCarl\nHoward\nRaymond\nJesse\nGerald\nJohnnie\nCurtis\nEarl\nTerry\nEugene\nErnest\nRalph\nHarry\nJessie\nDaniel\nLeon\nLee\nMelvin\nEarnest\nLeroy\nDon\nCecil\nMarvin\nAndrew\nRonnie\nHerman\nCalvin\nFreddie\nPhillip\nNorman\nClyde\nLawrence\nFloyd\nFranklin\nJackie\nLeonard\nLouis\nRay\nAlfred\nHerbert\nLewis\nDanny\nMack\nTommie\nGlenn\nDennis\nDwight\nJim\nMilton\nAlvin\nClifford\nGene\nAllen\nRoosevelt\nNathaniel\nOscar\nBill\nLonnie\nOtis\nWallace\nClaude\nEdwin\nTom\nHorace\nSteve\nBennie\nJoel\nVernon\nHarvey\nWillard\nAnthony\nBenjamin\nLeslie\nLester\nLuther\nMarion\nSam\nSammy\nStanley\nBenny\nGrady\nStephen\nWarren\nDan\nFrederick\nMorris\nChester\nHubert\nHugh\nGordon\nRufus\nSidney\nBernard\nDewey\nEdgar\nWendell\nAlton\nBruce\nDonnie\nSylvester\nTony\nAaron\nElbert\nLloyd\nPercy\nRussell\nBen\nPhilip\nWill\nWinston\nArnold\nHomer\nLamar\nMarshall\nCleveland\nPerry\nSherman\nTheodore\nTravis\nArchie\nBillie\nClinton\nDoyle\nRandall\nWoodrow\nGlen\nJunior\nTimothy\nLouie\nAubrey\nLeo\nRoland\nSammie\nWilson\nClifton\nGrover\nMike\nRoyce\nAlex\nElmer\nJulius\nSteven\nVirgil\nMickey\nPeter\nTroy\nGilbert\nMark\nMonroe\nMoses\nOliver\nRodney\nTed\nWesley\nWilbert\nEmmett\nIsaac\nLynn\nEllis\nFrankie\nMax\nRodger\nVictor\nHollis\nJerome\nPatrick\nRex\nWade\nElijah\nNelson\nPreston\nWillis\nAlan\nBobbie\nByron\nClayton\nJasper\nLoyd\nMcarthur\nLowell\nMatthew\nNathan\nBob\nDale\nFelix\nHoyt\nHuey\nJon\nMaurice\nMitchell\nMose\nWiley\nAmos\nBarney\nBooker\nFredrick\nJacob\nJohnie\nNed\nOllie\nOwen\nRayford\nForrest\nFrancis\nRandy\nRoss\nAlexander\nCarlton\nDave\nEd\nFreddy\nIsiah\nJerald\nMartin\nNeal\nTyrone\nBuddy\nCarlos\nGuy\nHouston\nIra\nJulian\nTerrell\nUlysses\nAnderson\nBryant\nBuford\nGrant\nIvory\nJackson\nLorenza\nMac\nMalcolm\nOneal\nRogers\nRoscoe\nVan\nVincent\nWilbur\nWilburn\nAndy\nChristopher\nCoy\nEldridge\nEmanuel\nErvin\nFreeman\nGarry\nHershel\nKeith\nKing\nLorenzo\nMarcus\nNapoleon\nReginald\nRiley\nRuben\nShelby\nTeddy\nAbraham\nAlonzo\nBarry\nClark\nConnie\nDarrell\nElvin\nEmmitt\nFletcher\nJay\nJeff\nKelly\nLenard\nMurray\nOdis\nRonny\nRudolph\nTruman\nWilliams\nWilmer\nWilton\nWinford\nAlfonso\nAlfonza\nAlphonso\nAustin\nBert\nCharley\nColeman\nDewitt\nEarly\nElmore\nEmory\nEverett\nGregory\nIvan\nMary\nMicheal\nMillard\nNolan\nPat\nRandolph\nRayburn\nScott\nShelton\nSolomon\nThurman\nTim\nCarter\nCleo\nDenny\nEarlie\nEdd\nElliott\nElton\nFerrell\nFoster\nHarrison\nHiram\nIrvin\nJake\nJeffery\nJoey\nJustin\nKerry\nMason\nRamon\nReuben\nSandy\nSonny\nSpencer\nTalmadge\nAllan\nArther\nBryan\nCary\nCleophus\nColumbus\nDallas\nDean\nDewayne\nDonny\nDoyce\nElisha\nErnie\nEzra\nHayward\nIsaiah\nIssac\nJefferson\nJonathan\nJudson\nKennith\nLeland\nLevi\nLindsey\nManuel\nMaxwell\nMilford\nMyron\nOcie\nOrville\nOtto\nPete\nPrince\nRandell\nWaymon\nWoodie\nAlford\nBonnie\nClaud\nCornelius\nCurley\nDannie\nDorsey\nDwayne\nEddy\nEdison\nEdmond\nEldon\nEmile\nEnoch\nEric\nErskine\nEzell\nFarrell\nGaines\nHobert\nHosea\nJacky\nJeffrey\nJerrell\nJudge\nKarl\nKermit\nLaurence\nLionel\nLovell\nMadison\nMarlin\nMckinley\nMorgan\nNewton\nNoah\nNorris\nOlen\nOtha\nRicky\nTheodis\nVerbon\nVerlon\nWebster\nWilfred\nWindell\nAbe\nAngelo\nArtis\nAugustus\nAuthor\nBennett\nBerry\nBoyd\nBrady\nClaudie\nCleophas\nComer\nCraig\nCrawford\nDalton\nDudley\nEarnie\nEdmund\nElroy\nElvie\nEmmette\nFelton\nFoy\nFrazier\nGarland\nGearld\nGeneral\nGerry\nHarley\nHarmon\nHaywood\nHillard\nHosie\nJamie\nJosh\nJoshua\nKenny\nLafayette\nLance\nLemuel\nLevert\nLevon\nMajor\nMelton\nMiles\nQuinton\nReese\nRoderick\nRuffus\nSandra\nSanford\nShelly\nShirley\nSilas\nStewart\nTeddie\nTex\nTheron\nToney\nTracy\nWinfred\nWylie\nJames\nWilliam\nJohn\nRobert\nCharles\nWillie\nJerry\nLarry\nThomas\nGeorge\nJimmy\nDavid\nBilly\nRichard\nDonald\nJohnny\nBobby\nJoseph\nJoe\nKenneth\nEdward\nHenry\nRonald\nWalter\nMichael\nGary\nRoy\nPaul\nFrank\nEddie\nHarold\nRoger\nArthur\nCharlie\nSamuel\nTommy\nJimmie\nDouglas\nRaymond\nClarence\nAlbert\nEugene\nCarl\nFred\nTerry\nWayne\nJack\nMelvin\nRalph\nCurtis\nHoward\nHarry\nJesse\nLeon\nJohnnie\nGerald\nErnest\nPhillip\nRonnie\nDennis\nMarvin\nJessie\nLeroy\nDanny\nDon\nLee\nEarl\nDaniel\nFloyd\nFranklin\nAndrew\nCalvin\nCecil\nAlfred\nRoosevelt\nLawrence\nRay\nTommie\nBenjamin\nEarnest\nFreddie\nLouis\nHerman\nLonnie\nAllen\nLeonard\nClyde\nHerbert\nDwight\nGrady\nStephen\nJim\nGlenn\nLewis\nNorman\nOscar\nSam\nNathaniel\nAlvin\nMilton\nClaude\nJackie\nDonnie\nBenny\nBennie\nBill\nClifford\nRussell\nAnthony\nOtis\nTheodore\nDan\nGene\nSteve\nLloyd\nTimothy\nHugh\nMack\nHorace\nHubert\nSammy\nHarvey\nLester\nTony\nTravis\nTruman\nJoel\nVernon\nWarren\nChester\nElbert\nLeslie\nRodney\nStanley\nBernard\nBruce\nMarion\nMike\nWallace\nWillard\nDewey\nMorris\nRandall\nWoodrow\nJulius\nSammie\nGlen\nIsaac\nJerome\nPercy\nArnold\nHomer\nOliver\nSylvester\nMarshall\nSteven\nArchie\nGordon\nNathan\nRufus\nAaron\nCleveland\nGrover\nEdwin\nEllis\nRoland\nWill\nAlton\nGarry\nLeo\nMickey\nPeter\nRodger\nTom\nTroy\nClifton\nClinton\nFrederick\nPatrick\nPhilip\nWilson\nBen\nBob\nJunior\nLuther\nMark\nPerry\nVictor\nAlexander\nCornelius\nDale\nEdgar\nGilbert\nLouie\nMartin\nWilbert\nWinston\nBarry\nElijah\nMatthew\nMax\nMicheal\nTed\nAubrey\nClayton\nWendell\nAlan\nBuddy\nLynn\nVirgil\nAlex\nBillie\nCarlton\nDoyle\nEmmett\nLamar\nRandy\nAmos\nFrankie\nMac\nPreston\nRoyce\nSherman\nSidney\nWesley\nWillis\nByron\nFrancis\nFreddy\nAbraham\nBobbie\nMajor\nMoses\nElmer\nErvin\nFelix\nHouston\nIra\nJasper\nJulian\nKennith\nMitchell\nMose\nWade\nWiley\nConnie\nReginald\nRickey\nWilbur\nGregory\nHoyt\nNeal\nNoah\nVan\nCleophus\nDave\nFredrick\nGarland\nJake\nMalcolm\nNed\nNelson\nRex\nRicky\nBoyd\nCleo\nCoy\nGuy\nIsaiah\nJonathan\nKerry\nMarcus\nRayburn\nReuben\nVincent\nWilburn\nCarlos\nElton\nForrest\nHollis\nHuey\nJohnie\nLevi\nLorenza\nLowell\nMcarthur\nMonroe\nPete\nRayford\nRoss\nShelby\nWaymon\nWinfred\nAlfonso\nAndy\nBuford\nCarroll\nEverett\nHarris\nHarrison\nHerschel\nJacob\nJerald\nLorenzo\nManuel\nMarlin\nMarlon\nNeil\nOcie\nOdis\nRonny\nSolomon\nTyrone\nAllan\nAlonzo\nCharley\nDean\nElliott\nErnie\nGearld\nGus\nHershel\nJackson\nJamie\nJay\nJefferson\nJon\nKenny\nKermit\nMaurice\nMckinley\nMurray\nOllie\nRandolph\nSpencer\nSterling\nTeddy\nThurman\nWilmer\nAlvis\nAnderson\nBoyce\nBryant\nColeman\nDannie\nDavis\nHarmon\nIsiah\nJason\nJeff\nKing\nLeamon\nLoyd\nMilford\nMillard\nPat\nPhil\nRiley\nRoderick\nRuben\nSandy\nSonny\nWinford\nWoody\nAlfonza\nAustin\nBooker\nCarey\nCarter\nChris\nChristopher\nClaud\nDarrell\nDock\nEarly\nEd\nEverette\nEzell\nFoy\nFreeman\nGaines\nHenderson\nHermon\nIke\nIrvin\nIssac\nJacky\nJeffrey\nJustin\nKeith\nLafayette\nLemuel\nMathew\nNick\nNoel\nOwen\nPrince\nRobin\nSaul\nScott\nTheodis\nAlphonso\nAugustus\nAuther\nAuthur\nCary\nClark\nCraig\nDalton\nDarryl\nEarlie\nEdd\nElmore\nEmanuel\nEmmitt\nEric\nGeneral\nGerry\nHarlan\nHezekiah\nIsreal\nJeffery\nJoshua\nJudson\nLavon\nLeland\nLenard\nMaxwell\nMerrill\nNorris\nOlen\nOneal\nOtha\nRandal\nRaymon\nRogers\nSanford\nShelton\nSimon\nTalmadge\nTaylor\nUlysses\nWalker\nWilford\nWilfred\nWindell\nWoodie\nAlonza\nArlin\nAron\nArther\nAutry\nBarbara\nBarney\nBert\nBetty\nBradley\nBrian\nBryce\nBurl\nCarver\nClearence\nColumbus\nDallas\nDelano\nDenny\nEdmond\nElzie\nEmory\nFrazier\nGarey\nHardy\nHobert\nJudge\nKarl\nLadon\nLuke\nMary\nMaxie\nMurry\nMyron\nNapoleon\nNicholas\nNolan\nOdell\nOllis\nRandell\nRayfield\nRichmond\nRoyal\nRudolph\nSanders\nShirley\nSilas\nStewart\nTheo\nTurner\nWillam\nWilliams\nJames\nJohn\nWilliam\nRobert\nCharles\nWillie\nLarry\nJerry\nDavid\nThomas\nJimmy\nGeorge\nRichard\nBilly\nDonald\nJohnny\nBobby\nRonald\nJoseph\nKenneth\nJoe\nHenry\nGary\nEdward\nWalter\nMichael\nRoger\nRoy\nPaul\nHarold\nEddie\nSamuel\nFrank\nArthur\nTommy\nTerry\nJimmie\nCharlie\nDanny\nClarence\nRonnie\nWayne\nAlbert\nCarl\nGerald\nJack\nRaymond\nDouglas\nFred\nHoward\nEugene\nJesse\nMelvin\nRalph\nCurtis\nDaniel\nDennis\nHarry\nErnest\nLeroy\nJohnnie\nPhillip\nDon\nEarl\nLee\nMarvin\nLewis\nAndrew\nLouis\nLawrence\nLeon\nCalvin\nCecil\nJessie\nJackie\nRay\nFreddie\nHerman\nAlfred\nSteve\nDwight\nEarnest\nHerbert\nLeonard\nNorman\nGlenn\nTony\nNathaniel\nStephen\nAllen\nClifford\nFloyd\nFranklin\nClyde\nTommie\nDonnie\nAnthony\nOtis\nAlvin\nBenny\nSam\nSammy\nBill\nMilton\nEdwin\nGene\nBarry\nBruce\nOscar\nBennie\nMack\nLonnie\nBenjamin\nClaude\nTimothy\nRodney\nRoosevelt\nJoel\nRandall\nMike\nWallace\nGrady\nHorace\nJerome\nHarvey\nMarion\nMorris\nBen\nJim\nFrederick\nHugh\nSidney\nWarren\nLuther\nLeslie\nRufus\nAlan\nDewey\nRussell\nVernon\nClinton\nMickey\nStanley\nSteven\nTheodore\nTroy\nChester\nEllis\nTed\nDan\nEmmett\nLeo\nAlton\nGordon\nJulius\nLloyd\nOliver\nSylvester\nTom\nTravis\nGregory\nHubert\nLester\nCleveland\nWilbert\nWoodrow\nArchie\nPerry\nPhilip\nWillard\nAaron\nAlex\nArnold\nClifton\nEdgar\nGarry\nHomer\nDale\nElbert\nPatrick\nWesley\nBernard\nPercy\nRoyce\nAubrey\nFrankie\nMicheal\nRandy\nWinston\nSammie\nMarshall\nNathan\nRex\nTyrone\nGlen\nLorenzo\nMark\nWillis\nByron\nMartin\nMitchell\nVirgil\nBob\nWade\nDarrell\nJunior\nRicky\nRoland\nBooker\nJohnie\nPreston\nTruman\nFreddy\nJon\nPeter\nRodger\nWendell\nWill\nCarlton\nFrancis\nIra\nIsaac\nMarcus\nMaurice\nMax\nVictor\nWilson\nBillie\nElijah\nJake\nMillard\nVan\nClayton\nDoyle\nFredrick\nJulian\nLoyd\nMoses\nWiley\nAlexander\nAlphonso\nAmos\nErvin\nKeith\nRayford\nTeddy\nVincent\nAlonzo\nJacob\nJonathan\nMatthew\nNelson\nChristopher\nDave\nElmer\nFreeman\nGilbert\nHuey\nJeffrey\nRickey\nSherman\nAndy\nBuddy\nEric\nGarland\nHollis\nKerry\nLamar\nLouie\nLowell\nMalcolm\nMcarthur\nReginald\nRoss\nBobbie\nBuford\nConnie\nCoy\nDean\nEd\nEverett\nFelix\nFletcher\nHouston\nJackson\nJerald\nOllie\nWilbur\nAustin\nBarney\nCarlos\nCraig\nGuy\nHershel\nJacky\nJay\nNed\nOwen\nRandolph\nRonny\nUlysses\nAbraham\nAnderson\nAugustus\nBrady\nCarey\nClark\nCleophus\nCornelius\nEmmitt\nForrest\nGrover\nJasper\nJeff\nJerrell\nLynn\nMac\nMarlin\nMonroe\nNorris\nRobbie\nRudolph\nShelby\nSpencer\nTerrell\nWilburn\nCarroll\nCarter\nCary\nDock\nErnie\nGerry\nHoyt\nIsiah\nJeffery\nMaxie\nMose\nNeal\nPat\nPete\nRogers\nTim\nDallas\nDonny\nEmanuel\nErskine\nFoy\nJefferson\nLevi\nLorenza\nMajor\nMilford\nOcie\nOdell\nQuinton\nRandal\nRayburn\nRiley\nRoderick\nRuben\nSanford\nThurman\nUnknown\nWaymon\nWilmer\nWoodie\nAlfonso\nAllan\nAuther\nBoyd\nClaud\nDarryl\nDewayne\nDudley\nEddy\nEdmond\nEmory\nEnoch\nGus\nHerschel\nIsaiah\nJame\nKenny\nLafayette\nLeland\nLovell\nMyron\nNolan\nSandy\nShelton\nWindell\nWinford\nAlvis\nArtis\nChris\nCleo\nColeman\nDavis\nDwayne\nEdd\nEdsel\nElisha\nElzie\nEnnis\nFoster\nGaines\nHardy\nHarrison\nHayward\nJoesph\nKen\nKermit\nLindsey\nMurray\nNapoleon\nOdis\nOtto\nPrince\nReuben\nRickie\nScotty\nSolomon\nSonny\nSterling\nTalmadge\nVester\nAlfonza\nAlonza\nArther\nAuthor\nBert\nBradford\nButch\nColumbus\nConrad\nCurley\nCurtiss\nDelbert\nDuane\nEarlie\nEarly\nElton\nEzekiel\nGearld\nGlover\nHarley\nHiram\nIssac\nJoshua\nJudge\nKarl\nKelly\nLadon\nLanny\nLevon\nMary\nMason\nMckinley\nMorgan\nNoel\nOlen\nRaleigh\nScott\nTheodis\nToby\nToney\nVerbon\nWayman\nWest\nWilford\nWilfred\nAdolph\nAlfonzo\nAnnie\nAvery\nBetty\nBrooks\nCephus\nCharley\nCliff\nCooper\nDana\nDannie\nDarrel\nDenny\nDenver\nDillard\nDorothy\nElliott\nElmore\nEvans\nEzell\nFelton\nGeneral\nGrant\nGriffin\nHal\nHarris\nHershell\nHobert\nHosea\nHosie\nHunter\nIvan\nJohnson\nJohny\nJordan\nJudson\nJulious\nJustin\nKennith\nKent\nKing\nLenord\nLessie\nLincoln\nManuel\nNicholas\nNoah\nObie\nOrville\nOtha\nPalmer\nPeyton\nPrentice\nRandell\nRaymon\nRichmond\nRobin\nRoscoe\nRoyal\nSimon\nStuart\nTerral\nTracy\nWaylon\nJames\nJohn\nWilliam\nRobert\nCharles\nLarry\nWillie\nJerry\nThomas\nDavid\nJimmy\nRichard\nGeorge\nDonald\nRonald\nJohnny\nBilly\nBobby\nMichael\nKenneth\nJoseph\nEdward\nJoe\nHenry\nGary\nWalter\nEddie\nRoy\nRoger\nHarold\nPaul\nFrank\nTommy\nSamuel\nTerry\nArthur\nRonnie\nDanny\nJimmie\nRaymond\nCharlie\nClarence\nGerald\nWayne\nDennis\nAlbert\nHoward\nCarl\nFred\nDaniel\nErnest\nJack\nPhillip\nDouglas\nCurtis\nStephen\nRalph\nEugene\nJohnnie\nJesse\nLeon\nGlenn\nHarry\nMarvin\nMelvin\nCalvin\nLeroy\nSteve\nEarl\nAndrew\nDon\nLee\nAllen\nEarnest\nJessie\nJackie\nLawrence\nLouis\nClyde\nMilton\nFreddie\nHerman\nRay\nBenjamin\nLewis\nAlfred\nCecil\nLeonard\nDonnie\nAlvin\nLonnie\nNorman\nJerome\nNathaniel\nHerbert\nClaude\nFloyd\nTony\nTommie\nMike\nRodney\nRandall\nHorace\nOtis\nTimothy\nSam\nStanley\nBennie\nBruce\nClifford\nAnthony\nLester\nDwight\nGregory\nHarvey\nOscar\nSteven\nDan\nEdwin\nRoosevelt\nSylvester\nFranklin\nGene\nTravis\nSammy\nHugh\nJoel\nMorris\nLuther\nGarry\nHubert\nRickey\nPerry\nWallace\nBarry\nBenny\nGrady\nMarion\nRussell\nMack\nPatrick\nPercy\nRufus\nLloyd\nTed\nTom\nJim\nPhilip\nTroy\nWarren\nBill\nJulius\nGlen\nArchie\nMark\nRandy\nAlan\nEdgar\nReginald\nWillard\nArnold\nClifton\nMarshall\nOliver\nSidney\nTheodore\nChester\nFrederick\nLeslie\nMickey\nGordon\nVernon\nAlton\nBernard\nLeo\nClinton\nElbert\nMicheal\nRicky\nWoodrow\nAlex\nDale\nSammie\nWilson\nElmer\nDewey\nEllis\nGrover\nLamar\nPreston\nWesley\nFreddy\nMalcolm\nWilbert\nWillis\nBob\nMatthew\nMitchell\nWill\nAubrey\nBen\nVirgil\nByron\nCarlton\nMax\nNathan\nRex\nRoland\nAmos\nIsaac\nRayford\nRonny\nVan\nChristopher\nClayton\nCleveland\nDoyle\nGilbert\nKennith\nRandolph\nBillie\nEmmett\nFrankie\nFredrick\nMoses\nOllie\nAaron\nAlexander\nErvin\nGarland\nPeter\nRodger\nRoyce\nWendell\nAnderson\nBuddy\nGuy\nLynn\nMartin\nTyrone\nWinston\nElijah\nHomer\nLoyd\nMaurice\nAbraham\nCarey\nJeff\nJunior\nMarcus\nTim\nDonny\nHollis\nLorenzo\nLouie\nMonroe\nTerrell\nAlonzo\nBarney\nBobbie\nDarrell\nIra\nKeith\nKelly\nNed\nRayburn\nRiley\nRoss\nRudolph\nSpencer\nUlysses\nVictor\nWade\nDave\nHouston\nIsaiah\nJerald\nJeremiah\nNelson\nOwen\nSherman\nAndy\nEddy\nFrancis\nHoyt\nJackson\nJasper\nJay\nJonathan\nLovell\nRoderick\nSolomon\nVincent\nWilburn\nClark\nConnie\nCoy\nEric\nJeffrey\nLorenza\nWilliams\nWilmer\nBooker\nBuford\nCarlos\nCleophus\nEmmitt\nFelix\nForrest\nHershel\nJacob\nJeffery\nJulian\nKenny\nKerry\nMajor\nTeddy\nWilbur\nBrian\nColumbus\nCornelius\nErskine\nMorgan\nMurray\nNeal\nOdell\nRandal\nReuben\nUnknown\nWiley\nCarroll\nCary\nClaud\nDallas\nDalton\nDenny\nDewayne\nDuane\nDudley\nEd\nFletcher\nJon\nLowell\nMac\nMillard\nNoah\nNorris\nOdis\nRandell\nRobin\nRuben\nSanford\nSonny\nTruman\nAlfonso\nAustin\nBrady\nColeman\nCraig\nDannie\nDarryl\nEdsel\nEverett\nEzekiel\nGerry\nGreg\nHal\nHerschel\nHuey\nLavon\nLevi\nLionel\nMarlin\nNapoleon\nOlen\nRoscoe\nShelton\nSterling\nWinford\nAlphonso\nCarter\nCornell\nEldridge\nEli\nFelton\nFoster\nGus\nJake\nJudge\nKen\nKyle\nLeland\nManuel\nMilford\nNicholas\nOcie\nOlin\nPhil\nRobbie\nRudy\nScotty\nShelby\nSilas\nSimon\nTalmadge\nVance\nAdam\nAdrian\nAl\nAlfonza\nAlphonse\nBerry\nBradley\nBrent\nCharley\nChris\nConrad\nDana\nDock\nDwayne\nEdmond\nElvin\nEmanuel\nEmory\nHarrison\nHaywood\nHenderson\nHermon\nHillard\nHowell\nIke\nJohnie\nLance\nLevon\nLindsey\nMary\nMyron\nOtha\nRichmond\nRogers\nRon\nScott\nWalker\nWilford\nAlfonzo\nAllan\nArtis\nBurl\nClay\nComer\nDaryl\nDelbert\nDexter\nDoyce\nEarlie\nEarly\nEdd\nElliott\nElton\nErnie\nEverette\nFreeman\nGaylon\nGlynn\nHarlan\nHarlon\nHayward\nIsiah\nJerrel\nJohnson\nJustin\nKarl\nKermit\nKing\nLinda\nLucious\nMelton\nMiles\nNick\nNoel\nNolan\nPete\nShirley\nTheron\nTillman\nWard\nWaymon\nAbe\nArlin\nArlon\nArther\nAuthor\nBetty\nBradford\nCarrol\nClaudie\nCleve\nDean\nDwain\nGeneral\nHardy\nIrvin\nIssac\nJan\nJefferson\nKirby\nLacy\nLanny\nLomax\nLucius\nLuke\nMadison\nMason\nMaxwell\nMose\nOneal\nOrville\nPrince\nQuincy\nRayfield\nRick\nRobby\nRoyal\nRubin\nSandy\nShelly\nSim\nThurman\nToney\nVaughn\nVerlon\nWalton\nJames\nJohn\nRobert\nWilliam\nCharles\nLarry\nWillie\nDavid\nJerry\nThomas\nDonald\nRonald\nMichael\nGeorge\nJimmy\nRichard\nBilly\nJohnny\nBobby\nJoseph\nKenneth\nHenry\nEdward\nGary\nJoe\nEddie\nWalter\nRoger\nHarold\nPaul\nTerry\nTommy\nRoy\nDanny\nRonnie\nSamuel\nFrank\nArthur\nCharlie\nJimmie\nClarence\nRaymond\nAlbert\nCarl\nWayne\nFred\nJesse\nEugene\nCurtis\nDouglas\nJack\nMelvin\nHoward\nPhillip\nDennis\nHarry\nStephen\nJohnnie\nDaniel\nRalph\nErnest\nGerald\nLeon\nAndrew\nLeroy\nLee\nEarl\nLawrence\nLewis\nMarvin\nSteve\nFreddie\nJackie\nCecil\nDon\nGlenn\nHerbert\nAnthony\nEarnest\nSteven\nAllen\nDonnie\nJerome\nLouis\nJessie\nCalvin\nRay\nLeonard\nTommie\nDwight\nNathaniel\nStanley\nGregory\nHerman\nAlfred\nAlvin\nBruce\nTimothy\nTony\nOtis\nRoosevelt\nFloyd\nClaude\nClifford\nBenjamin\nHorace\nRandall\nLonnie\nBennie\nMack\nNorman\nBarry\nMike\nBenny\nClyde\nMilton\nOscar\nRodney\nSam\nRandy\nRickey\nFranklin\nHugh\nSammy\nDan\nRussell\nGrady\nJoel\nBill\nLuther\nPhilip\nChester\nGarry\nGene\nRicky\nAlan\nEdwin\nHarvey\nJim\nLester\nMickey\nWarren\nHubert\nMicheal\nWallace\nFrederick\nBernard\nMarshall\nArchie\nMorris\nClinton\nMarion\nMark\nHomer\nTroy\nEdgar\nLeslie\nLloyd\nSylvester\nSammie\nVernon\nBen\nPatrick\nPerry\nTed\nTom\nAaron\nClifton\nGlen\nPercy\nGordon\nLamar\nPeter\nSidney\nTyrone\nLeo\nTheodore\nAlton\nDewey\nLouie\nMatthew\nOliver\nWillard\nChristopher\nElbert\nIsaac\nJulius\nSherman\nWendell\nFrankie\nWilbert\nDale\nRex\nRodger\nWesley\nElijah\nWill\nWoodrow\nArnold\nDonny\nEmmett\nTravis\nCleveland\nDoyle\nErvin\nRudolph\nWilson\nAlexander\nFrancis\nMarcus\nMartin\nRoyce\nRufus\nAlex\nBob\nClayton\nFreddy\nFredrick\nKerry\nMitchell\nByron\nCarlton\nLorenzo\nVictor\nVincent\nWiley\nBooker\nDarrell\nGrover\nIra\nReginald\nUnknown\nElmer\nEric\nMax\nNathan\nNeal\nCarlos\nCornelius\nDave\nEmanuel\nGilbert\nNelson\nRandolph\nRoland\nUlysses\nAmos\nBillie\nIsiah\nKeith\nWillis\nAubrey\nCarey\nEllis\nLoyd\nMaurice\nMoses\nSolomon\nHouston\nKenny\nLynn\nOllie\nWilbur\nWilburn\nJackson\nJeffery\nTerrell\nThurman\nVirgil\nWilmer\nBuford\nCary\nEd\nHal\nHayward\nHuey\nJay\nMarlin\nNoah\nRayburn\nRayford\nRonny\nRoscoe\nSpencer\nVan\nWade\nWinston\nFelix\nHershel\nJeff\nJeffrey\nJerald\nJeremiah\nJon\nJulian\nKennith\nMajor\nMose\nPreston\nWaymon\nAllan\nBarney\nConnie\nCoy\nDallas\nDavis\nEdmond\nEzell\nHarrison\nHoyt\nJake\nJasper\nOwen\nRiley\nRoderick\nAbraham\nAlonzo\nBuddy\nClark\nFletcher\nGarland\nGearld\nJonathan\nJunior\nMac\nMurray\nOtha\nRoss\nTeddy\nWinfred\nAlfonza\nDalton\nEddy\nEmmitt\nErskine\nGerry\nKelly\nKing\nKirby\nLindsey\nLovell\nLowell\nLucious\nMalcolm\nMonroe\nNapoleon\nNolan\nPhil\nSterling\nTalmadge\nAlfonso\nAlonza\nBert\nChris\nCraig\nDannie\nDudley\nEverett\nFelton\nForrest\nHiram\nHollis\nIssac\nJerrell\nLuke\nNed\nQuinton\nSandy\nSimon\nTruman\nAl\nAlphonso\nAnderson\nAndy\nAron\nArther\nAustin\nDarryl\nJacky\nJohnie\nLance\nLeland\nLorenza\nMarlon\nMaxie\nMorgan\nMyron\nPete\nReuben\nRogers\nRuben\nScott\nShelby\nTheodis\nVaughn\nAbe\nAlfonzo\nBerry\nBobbie\nBoyd\nCleophus\nColeman\nDean\nDelbert\nEarly\nEdsel\nEzekiel\nFreeman\nGaylon\nGrant\nGuy\nHardy\nIrvin\nIsaiah\nIvory\nJoey\nKen\nLafayette\nLawson\nLionel\nMilford\nMillard\nNeil\nNicholas\nNorris\nOcie\nOdis\nOneal\nPat\nRandell\nRaymon\nRosevelt\nSilas\nStevie\nToney\nWardell\nWilly\nAdolph\nAdolphus\nAlford\nAngelo\nBoyce\nBrian\nClaud\nCleo\nDaryl\nDawson\nDewayne\nDorsey\nDuane\nEarlie\nElliott\nElmore\nElvin\nEmory\nGregg\nGus\nHarley\nHarrell\nHilton\nHosea\nIke\nJame\nJerrel\nKarl\nLenard\nMason\nMiles\nNicky\nNoel\nObie\nPrince\nRandal\nRandle\nRick\nRobin\nSanford\nStan\nStewart\nTaylor\nTim\nTurner\nWaylon\nWindell\nAlphonse\nAugusta\nAuthor\nBennett\nBernie\nBeverly\nBrady\nBryant\nCharley\nClay\nCollis\nConrad\nCurtiss\nDarrel\nDelmer\nDelton\nDerrell\nDewitt\nDexter\nDock\nDonnis\nDwayne\nEmery\nEnoch\nEssie\nFarrell\nFoster\nGeneral\nHarmon\nHezekiah\nIrby\nIsadore\nJacob\nJess\nJosephus\nJoshua\nKent\nLanny\nLavaughn\nLevert\nLevi\nLewie\nLincoln\nLinda\nLynwood\nMadison\nManuel\nMatt\nMckinley\nMyles\nNamon\nNick\nOlen\nOrville\nOttis\nPorter\nQuincy\nRoyal\nSherrill\nStephan\nTheron\nWinford\nWoodie\nWoody\nYoung\nJames\nWilliam\nJohn\nRobert\nCharles\nLarry\nWillie\nDavid\nJerry\nThomas\nMichael\nRonald\nGeorge\nJimmy\nDonald\nRichard\nJohnny\nBilly\nJoseph\nKenneth\nBobby\nGary\nJoe\nEddie\nEdward\nDanny\nHenry\nRoger\nTerry\nWalter\nRonnie\nPaul\nTommy\nHarold\nRoy\nSamuel\nFrank\nCarl\nArthur\nStephen\nClarence\nAlbert\nDaniel\nCharlie\nJimmie\nPhillip\nRaymond\nEugene\nWayne\nCurtis\nRalph\nGerald\nDennis\nHoward\nJesse\nMarvin\nErnest\nHarry\nMelvin\nLeon\nFred\nJack\nJohnnie\nSteven\nGlenn\nLawrence\nDonnie\nTimothy\nSteve\nDouglas\nGregory\nJessie\nLee\nAnthony\nStanley\nBruce\nJackie\nJerome\nCalvin\nAndrew\nNorman\nEarl\nAllen\nRandall\nLeroy\nDon\nLouis\nAlfred\nHerman\nLewis\nClyde\nHorace\nNathaniel\nOscar\nCecil\nFreddie\nRodney\nLeonard\nLonnie\nMilton\nHerbert\nMicheal\nRoosevelt\nTommie\nDwight\nRandy\nRickey\nAlvin\nRay\nTony\nEarnest\nMark\nBenny\nSam\nRicky\nFloyd\nFrederick\nBarry\nBenjamin\nClifford\nLester\nOtis\nClaude\nGrady\nBill\nBennie\nHarvey\nPhilip\nEdwin\nFranklin\nSidney\nTheodore\nGene\nMarion\nDan\nMack\nPatrick\nSammy\nElbert\nJoel\nUnknown\nLeslie\nMorris\nWarren\nPerry\nRussell\nTom\nChester\nJim\nWallace\nEdgar\nHugh\nHubert\nPeter\nTravis\nVernon\nAaron\nBernard\nPercy\nClinton\nLloyd\nMatthew\nRufus\nSylvester\nArchie\nClifton\nGarry\nMike\nReginald\nAlan\nDale\nChristopher\nGrover\nMickey\nArnold\nFrankie\nLeo\nMarshall\nMitchell\nTroy\nWillard\nBen\nDoyle\nIsaac\nSammie\nWilbert\nJulius\nLamar\nLuther\nTyrone\nWoodrow\nGlen\nHomer\nRodger\nAlton\nVictor\nBillie\nCleveland\nEllis\nRex\nTed\nWendell\nNathan\nRandolph\nWesley\nGordon\nPreston\nVan\nBob\nGilbert\nAlex\nDewey\nFredrick\nIra\nJonathan\nDarrell\nErvin\nWinston\nAmos\nKerry\nOllie\nRoland\nCarlton\nMartin\nRonny\nRoyce\nSherman\nWiley\nWillis\nAbraham\nBooker\nClayton\nConnie\nJeffery\nOliver\nVirgil\nAllan\nAubrey\nCary\nElijah\nElmer\nKeith\nMaurice\nMax\nAnderson\nDonny\nKennith\nMoses\nNelson\nWilburn\nByron\nCornelius\nFrancis\nFreddy\nLynn\nSilas\nVincent\nWade\nWill\nEmmett\nEric\nHollis\nHoyt\nJeffrey\nJulian\nKenny\nLorenza\nMarcus\nNeal\nTerrell\nWilson\nAlonzo\nAndy\nHouston\nJeff\nLowell\nRoderick\nRoss\nWinfred\nCarlos\nCraig\nDave\nLanny\nLeland\nLoyd\nAlfonso\nBuddy\nDarryl\nEmanuel\nFelix\nGuy\nLorenzo\nLouie\nLovell\nMajor\nMiles\nRayford\nWilbur\nCarey\nColumbus\nEddy\nElton\nEverett\nEzell\nHershel\nJay\nMcarthur\nMurray\nNapoleon\nNoah\nSolomon\nAl\nAlexander\nAlphonso\nBuford\nCoy\nDavis\nForrest\nHuey\nJackson\nJasper\nJerrell\nNicholas\nOlen\nRogers\nRuben\nRudolph\nScott\nTeddy\nTruman\nBennett\nBobbie\nEdmond\nGerry\nHal\nHarrison\nIsaiah\nJacob\nJake\nJerald\nJunior\nLadon\nLionel\nMillard\nOcie\nRandal\nRiley\nSpencer\nAdrian\nBarney\nDana\nEarly\nEd\nFletcher\nFrazier\nGarland\nIsiah\nJefferson\nJeremiah\nLevon\nManuel\nMilford\nMose\nNorris\nPorter\nRobin\nTerrence\nWilmer\nWinford\nBrady\nChris\nClark\nDewayne\nDewitt\nDwayne\nEmmitt\nEnoch\nFreeman\nHayward\nHerschel\nJon\nLeamon\nLevi\nMalcolm\nMathew\nMonroe\nNed\nOdis\nOtha\nPat\nPrince\nRandell\nSandy\nShelton\nSterling\nTheodis\nThurman\nTim\nTracy\nUlysses\nAlphonse\nAlvis\nAugustus\nBradley\nButch\nCharley\nColeman\nCornell\nDallas\nDalton\nDannie\nElliott\nElmore\nErnie\nErskine\nGearld\nHermon\nJerold\nJoesph\nJudson\nKarl\nKelly\nLance\nLucious\nMarlin\nMarlon\nOneal\nOwen\nRayburn\nShelby\nSonny\nStevie\nTalmadge\nVaughn\nWaymon\nWilton\nWindell\nWoodie\nAdam\nAndre\nArther\nBrenda\nBrian\nCleophas\nDarnell\nDenny\nDuane\nEarlie\nEldridge\nEmory\nEzekiel\nFerrell\nGeary\nGeneral\nHenderson\nHosea\nIssac\nIvan\nJacky\nJerrel\nKent\nMac\nMckinley\nMyron\nNeil\nNoel\nObie\nOttis\nReed\nReuben\nRobbie\nSanford\nShelly\nSimon\nStuart\nTheo\nWardell\nWilford\nAdolphus\nAlfonzo\nAuthur\nBert\nBradford\nBryan\nCarson\nClarance\nClay\nClayburn\nClemmie\nCornelious\nCyrus\nDamon\nDean\nDelbert\nDonnell\nDorothy\nDoyce\nDwain\nEdmon\nElgin\nEli\nElisha\nEzra\nFarris\nForest\nGrant\nGregg\nGus\nHarris\nHiram\nIrvin\nIvy\nJamie\nJerone\nKirby\nKirk\nLaurence\nLenard\nLindsey\nLuke\nMary\nMiller\nMyles\nNoble\nOdell\nOtto\nPalmer\nRick\nRickie\nRoscoe\nStanton\nTaylor\nToney\nTurner\nVerlon\nVester\nWaylon\nWaymond\nWilly\nJames\nRobert\nJohn\nWilliam\nCharles\nLarry\nWillie\nDavid\nMichael\nJerry\nThomas\nRonald\nDonald\nGeorge\nRichard\nJimmy\nJohnny\nKenneth\nGary\nBilly\nBobby\nEdward\nJoseph\nHenry\nEddie\nJoe\nDanny\nTerry\nWalter\nRoger\nRoy\nSamuel\nPaul\nHarold\nTommy\nArthur\nStephen\nFrank\nPhillip\nClarence\nDaniel\nRonnie\nCarl\nDennis\nJimmie\nCharlie\nRaymond\nDouglas\nSteven\nMelvin\nAlbert\nJesse\nWayne\nCalvin\nFred\nCurtis\nEugene\nDonnie\nGerald\nJohnnie\nHoward\nGregory\nMarvin\nRalph\nGlenn\nAndrew\nLeon\nJack\nTimothy\nErnest\nRandall\nAnthony\nLee\nSteve\nHarry\nJackie\nStanley\nAlfred\nBruce\nJessie\nRandy\nLawrence\nAllen\nHerman\nRickey\nLeroy\nCecil\nEarl\nMicheal\nFreddie\nLeonard\nAlvin\nHerbert\nBenjamin\nNorman\nEarnest\nJerome\nRicky\nUnknown\nMilton\nDwight\nOtis\nBarry\nOscar\nTommie\nLonnie\nNathaniel\nClifford\nClyde\nLewis\nLouis\nMark\nDon\nFranklin\nRay\nPhilip\nFloyd\nJoel\nRoosevelt\nTony\nRodney\nFrederick\nPatrick\nRussell\nAlan\nGrady\nFrankie\nHarvey\nBennie\nHorace\nLester\nChester\nTyrone\nWallace\nDale\nMarion\nTheodore\nBernard\nReginald\nChristopher\nSam\nBenny\nEdwin\nGordon\nWarren\nClaude\nSammy\nSylvester\nEdgar\nGene\nGlen\nPerry\nMack\nClifton\nDan\nAaron\nLeo\nRufus\nWillard\nHubert\nMickey\nNathan\nGilbert\nLuther\nOliver\nWendell\nMorris\nTom\nIsaac\nPercy\nPeter\nWilbert\nAlton\nJim\nKerry\nLeslie\nTravis\nVernon\nBen\nVictor\nHugh\nLloyd\nMarshall\nMaurice\nTed\nAubrey\nBill\nGarry\nArnold\nCleveland\nElbert\nEllis\nEric\nHomer\nSidney\nTroy\nMarcus\nRex\nClinton\nDarrell\nFredrick\nMike\nWill\nFreddy\nLamar\nSherman\nAlexander\nElijah\nKeith\nRoland\nWesley\nDewey\nAlex\nGuy\nJeffrey\nMitchell\nSammie\nVan\nVirgil\nArchie\nEmmett\nJonathan\nMartin\nMoses\nRandolph\nRoderick\nWinston\nJulius\nLowell\nTeddy\nWilbur\nDarryl\nIra\nJulian\nLouie\nMatthew\nAlonzo\nBuddy\nByron\nClayton\nErvin\nFelix\nFrancis\nIvory\nJeffery\nCarlton\nCraig\nDoyle\nJunior\nLynn\nMax\nTerrell\nVincent\nWillis\nAndy\nDonny\nLorenza\nMalcolm\nWilson\nBobbie\nBooker\nDannie\nDave\nDean\nKenny\nPreston\nRodger\nRoyce\nRudolph\nAmos\nBuford\nCarey\nElton\nEverett\nGrover\nKarl\nLorenzo\nOcie\nRandal\nRayford\nSpencer\nWoodrow\nAnderson\nCarlos\nJasper\nNeal\nRogers\nRuben\nWiley\nAbraham\nBillie\nCleophus\nDana\nJake\nJeff\nManuel\nMillard\nMose\nNelson\nTruman\nAlphonso\nEdmond\nElmer\nErskine\nFreeman\nHollis\nJacky\nMcarthur\nOneal\nRonny\nScott\nSterling\nAllan\nCharley\nConnie\nEmanuel\nEzzard\nHouston\nKennith\nLoyd\nNeil\nOllie\nOtha\nRickie\nWade\nArther\nBarney\nBob\nBrady\nCarter\nForrest\nHank\nHershel\nIsaiah\nIvan\nJackson\nKelly\nLionel\nMarlin\nMelton\nMonroe\nTaylor\nWilburn\nWinfred\nAlfonzo\nAlonza\nAustin\nCarroll\nChris\nCleo\nCoy\nDallas\nDwayne\nEd\nEddy\nEmmitt\nEzell\nHoyt\nJefferson\nJoey\nLovell\nMajor\nMiles\nMurray\nOttis\nPhil\nRayburn\nRobin\nShelly\nTim\nAl\nBert\nDarnell\nDexter\nEdd\nFletcher\nGerry\nHarris\nHarrison\nHuey\nIssac\nJerald\nJohnie\nJon\nLanny\nLevon\nMary\nNolan\nNorris\nOlen\nPete\nQuinton\nRandell\nReuben\nRoss\nThurman\nUlysses\nWaymon\nWilmer\nAlfonso\nBennett\nBrian\nClark\nColeman\nCornelius\nDavis\nDuane\nEarly\nElvin\nFelton\nGlynn\nHayward\nJame\nJay\nJeremiah\nKent\nKevin\nKyle\nLavon\nLeamon\nLevi\nLucius\nMason\nMitchel\nMonty\nMyron\nNed\nOrlando\nRoscoe\nSandy\nSanford\nShelby\nStevie\nWilfred\nAbe\nAdam\nAdrian\nBradley\nBuster\nCedric\nColey\nDanial\nDock\nEarlie\nEdison\nEdmund\nElmore\nEnoch\nFarrell\nFoy\nGaylon\nGus\nHaywood\nHilton\nHiram\nHowell\nIsiah\nJacob\nKen\nKing\nLaurence\nLuke\nMckinley\nMilford\nNoah\nOdell\nRick\nRubin\nScotty\nSilas\nSolomon\nWilton\nAngelo\nAnnie\nArtis\nAuthur\nBonnie\nCarnell\nCary\nClarance\nCliff\nCollie\nConrad\nDalton\nDarwin\nDaryl\nDavie\nDelbert\nDewayne\nDoyce\nDudley\nEli\nEnnis\nForest\nFranky\nGarland\nGrant\nHarley\nHarmon\nHerschel\nHosie\nIke\nJason\nJoenathan\nJudge\nJudson\nKermit\nLawson\nLeland\nLemuel\nLinda\nLonzo\nLucious\nMac\nMorgan\nNapoleon\nNick\nOwen\nRadford\nTheron\nWebster\nWinford\nJames\nRobert\nJohn\nWilliam\nCharles\nLarry\nMichael\nDavid\nWillie\nThomas\nJerry\nDonald\nRichard\nRonald\nJohnny\nKenneth\nGeorge\nGary\nJimmy\nJoseph\nBilly\nBobby\nEdward\nTerry\nHenry\nRoger\nEddie\nDanny\nJoe\nTommy\nWalter\nPaul\nSamuel\nRoy\nFrank\nRonnie\nStephen\nArthur\nDennis\nSteven\nHarold\nDaniel\nCharlie\nDouglas\nRaymond\nCarl\nPhillip\nClarence\nGregory\nRalph\nDonnie\nWayne\nCurtis\nAlbert\nAnthony\nStanley\nGerald\nMelvin\nTimothy\nErnest\nFred\nJimmie\nEugene\nRicky\nJohnnie\nBruce\nLee\nJack\nJackie\nAndrew\nJesse\nRandall\nHoward\nLeon\nRandy\nGlenn\nMarvin\nMark\nSteve\nCalvin\nLeroy\nAllen\nHarry\nDwight\nEarl\nLawrence\nJessie\nMicheal\nNathaniel\nFreddie\nJerome\nRickey\nEarnest\nLewis\nLeonard\nBarry\nHerman\nAlvin\nAlfred\nCecil\nLouis\nNorman\nUnknown\nRay\nRoosevelt\nMilton\nBenjamin\nTony\nDon\nHerbert\nAlan\nOtis\nClaude\nPhilip\nRodney\nSylvester\nJoel\nTommie\nFloyd\nFrederick\nLonnie\nClyde\nClifford\nBenny\nReginald\nWarren\nRussell\nHorace\nFrankie\nGrady\nSam\nGene\nEdwin\nFranklin\nHarvey\nOscar\nKeith\nMickey\nDale\nPatrick\nBernard\nLloyd\nChester\nBennie\nChristopher\nAlton\nSidney\nPerry\nAaron\nGarry\nMorris\nDan\nLeslie\nRex\nWendell\nMatthew\nMarshall\nBill\nGlen\nHomer\nSammy\nTravis\nDarrell\nLuther\nRufus\nSammie\nTed\nBen\nHugh\nLester\nMack\nClifton\nHubert\nIsaac\nNathan\nRandolph\nTheodore\nArchie\nEdgar\nJeffery\nJim\nMarion\nPeter\nVernon\nWesley\nAlonzo\nClinton\nFredrick\nGordon\nOliver\nPercy\nTyrone\nElbert\nLamar\nWilbert\nJonathan\nMartin\nVictor\nWallace\nEric\nMike\nMitchell\nPreston\nWillard\nEmmett\nRoland\nSherman\nDonny\nLeo\nLouie\nAubrey\nByron\nDewey\nJulius\nRodger\nEllis\nKerry\nMaurice\nRoyce\nVirgil\nCarlton\nGilbert\nForrest\nGrover\nTeddy\nTroy\nWillis\nAlex\nEzzard\nFreddy\nLynn\nTom\nWilbur\nWill\nAbraham\nAndy\nArnold\nBob\nCornelius\nDarryl\nDoyle\nGuy\nLorenzo\nMarcus\nRoderick\nScott\nUlysses\nElijah\nElmer\nIra\nJeffrey\nKenny\nRickie\nAlexander\nBuddy\nCarey\nFelix\nJasper\nMax\nAl\nClayton\nErvin\nMoses\nRudolph\nTerrell\nTim\nWilson\nWinston\nAmos\nAnderson\nCarlos\nClark\nCleveland\nDana\nElton\nJulian\nKennith\nLorenza\nMalcolm\nMcarthur\nMyron\nNelson\nOcie\nRonny\nVincent\nAlphonso\nCraig\nDannie\nManuel\nMose\nNeal\nNorris\nRogers\nSpencer\nWoodrow\nArther\nCarter\nChris\nFrancis\nJacob\nNapoleon\nNolan\nRayford\nVan\nWade\nDarnell\nDave\nHollis\nHuey\nJacky\nLoyd\nMajor\nBobbie\nBrian\nCary\nCedric\nConnie\nIsiah\nJake\nJay\nJerald\nJon\nJunior\nKarl\nLanny\nMonte\nNoah\nRick\nRobin\nBarney\nDewayne\nEd\nEddy\nEdmond\nErskine\nFletcher\nGerry\nGrant\nHoyt\nJeff\nKelly\nKent\nLeland\nLindsey\nLionel\nLowell\nMilford\nMillard\nNeil\nOllie\nRuben\nWaymon\nAlfonso\nBillie\nBryant\nBuford\nClemmie\nCleophus\nColeman\nEmmitt\nGarland\nGreg\nHouston\nJackson\nJeremiah\nJerrell\nKirk\nMarc\nRandal\nSandy\nSterling\nStevie\nTheodis\nThurman\nWiley\nArtis\nColumbus\nCoy\nDaryl\nDenny\nEdmund\nEli\nGlynn\nHiram\nJefferson\nJoey\nKevin\nMurray\nShelby\nToney\nWilburn\nWilfred\nWinfred\nAlfonza\nAllan\nAustin\nBradley\nBryan\nBurl\nClay\nCornell\nDavis\nDexter\nDudley\nElmore\nEnoch\nErwin\nEverett\nFerrell\nHal\nHarlan\nHarris\nHershel\nIsaiah\nJame\nKim\nKing\nLeamon\nLevie\nLevon\nLovell\nMac\nMason\nMckinley\nMiles\nMitchel\nMonty\nNicholas\nReuben\nRoss\nSimon\nSolomon\nWilton\nWyman\nZack\nAdrian\nAlonza\nAlvie\nClaud\nCleo\nConrad\nDallas\nDamon\nDean\nDerrick\nEdsel\nElvin\nEmanuel\nEnnis\nErnie\nFelton\nFoster\nGayle\nGaylon\nGeneral\nGeoffrey\nHarrison\nHaywood\nHosea\nIvan\nJudge\nLaurence\nLemuel\nLenard\nLucious\nLuke\nMaxie\nMichel\nMonroe\nNed\nOdis\nOlen\nOneal\nOrlando\nOwen\nPat\nPhil\nRiley\nRobbie\nSanford\nSonny\nStephan\nStewart\nStuart\nTalmadge\nWoodie\nAlphonse\nAngelo\nAugusta\nAuthur\nBrenda\nBuster\nCarroll\nChauncey\nCleve\nCornelious\nDarrel\nDelbert\nDorsey\nDrew\nDuane\nDwayne\nEarly\nEmory\nFarrell\nFrazier\nFreeman\nGranville\nGus\nHank\nHayward\nHughie\nIke\nIrvin\nIvory\nJason\nJerrel\nJohnie\nKermit\nKyle\nMarlon\nMary\nMathew\nMaxwell\nMorgan\nMurry\nMyles\nNick\nObie\nOrville\nOtha\nPorter\nRandell\nReggie\nReginal\nRonney\nRoyal\nSanders\nShannon\nShelley\nShirley\nSilas\nTerrance\nTerrence\nTheotis\nThurston\nWilford\nWilliams\nJames\nJohn\nWilliam\nRobert\nCharles\nDavid\nMichael\nLarry\nWillie\nThomas\nRichard\nJerry\nDonald\nRonald\nKenneth\nGary\nJohnny\nJimmy\nGeorge\nJoseph\nBilly\nEdward\nBobby\nTerry\nDanny\nEddie\nHenry\nRoger\nPaul\nJoe\nSteven\nWalter\nRonnie\nTommy\nPhillip\nSamuel\nStephen\nFrank\nRoy\nArthur\nCarl\nDennis\nHarold\nRandy\nDaniel\nAnthony\nGregory\nCurtis\nTimothy\nCharlie\nRaymond\nMelvin\nRicky\nJack\nWayne\nRickey\nDouglas\nAlbert\nJesse\nStanley\nGerald\nClarence\nMark\nJimmie\nRalph\nBruce\nSteve\nAndrew\nDonnie\nFred\nHoward\nRandall\nGlenn\nLee\nCalvin\nDwight\nEugene\nJessie\nBarry\nJackie\nJerome\nLawrence\nMicheal\nEarl\nAlvin\nMarvin\nLeon\nAlfred\nErnest\nJohnnie\nRay\nHarry\nAllen\nFreddie\nEarnest\nClyde\nUnknown\nCecil\nHerman\nRodney\nClifford\nDon\nNathaniel\nLeonard\nTony\nHerbert\nLonnie\nBenjamin\nTommie\nAlan\nPatrick\nRoosevelt\nLeroy\nMilton\nNorman\nRussell\nLewis\nFranklin\nBenny\nFloyd\nFrederick\nJoel\nDale\nDan\nLouis\nReginald\nTheodore\nHorace\nFrankie\nOtis\nVernon\nBernard\nJeffery\nJeffrey\nSammy\nLester\nPhilip\nWarren\nOscar\nAaron\nBennie\nGarry\nClaude\nKeith\nLloyd\nRex\nSidney\nHarvey\nMack\nSylvester\nWallace\nMarion\nMitchell\nPerry\nChester\nDarrell\nHugh\nSam\nEdwin\nPercy\nLuther\nGordon\nGrady\nJim\nArchie\nMorris\nBill\nAlton\nFredrick\nLeslie\nOliver\nRodger\nTyrone\nWesley\nGene\nHubert\nRoderick\nEric\nGlen\nJonathan\nTravis\nMarshall\nPeter\nAubrey\nElijah\nEllis\nClinton\nEdgar\nElbert\nMike\nMoses\nRoland\nWendell\nWilbert\nBob\nLamar\nMartin\nMaurice\nMickey\nNathan\nVictor\nChristopher\nFrancis\nHomer\nRandolph\nScott\nWillard\nBen\nMarcus\nTom\nCleveland\nClifton\nCraig\nFelix\nFreddy\nMalcolm\nNelson\nTed\nWinston\nDoyle\nIsaac\nLorenzo\nMatthew\nPreston\nSherman\nTroy\nWill\nAmos\nByron\nDonny\nErvin\nGuy\nAlex\nArnold\nLeo\nRufus\nVirgil\nWiley\nAlexander\nKenny\nSammie\nAndy\nDewey\nJulius\nLynn\nMax\nWillis\nAlonzo\nCarlos\nCarlton\nJeff\nJon\nNeal\nRick\nIra\nJunior\nRoyce\nTerrell\nWilson\nAllan\nDana\nDannie\nJasper\nKarl\nLorenza\nRandal\nRonny\nVan\nWilbur\nAlphonso\nBillie\nDarryl\nGrover\nJacky\nKennith\nKerry\nVincent\nWade\nWoodrow\nBarney\nClark\nDewayne\nGilbert\nHarrison\nJay\nRickie\nStevie\nAbraham\nBobbie\nBooker\nCary\nChris\nDarnell\nDarrel\nElton\nHuey\nKevin\nMillard\nMose\nMyron\nOllie\nTeddy\nAdrian\nColeman\nConnie\nCornelius\nDelbert\nEmmett\nHouston\nIsaiah\nJerald\nLovell\nWinfred\nBuford\nClayton\nCleo\nDalton\nDean\nEmanuel\nLanny\nLevi\nLouie\nLowell\nRayford\nRiley\nRogers\nStewart\nBradley\nColumbus\nDallas\nDaryl\nDexter\nEarly\nElliott\nElmer\nFletcher\nForrest\nIsiah\nIvan\nJefferson\nJulian\nLoyd\nMonroe\nMurray\nNapoleon\nNorris\nReuben\nTim\nWilburn\nWinford\nAl\nButch\nDave\nEd\nEzzard\nHoyt\nIssac\nKelvin\nKent\nKim\nOtto\nRobin\nRoss\nRudolph\nSandy\nSanford\nSolomon\nSpencer\nTruman\nWaymon\nAlfonso\nAlfonzo\nAndre\nCarey\nCharley\nDavis\nDerek\nDock\nErnie\nGearld\nGerry\nIrvin\nJohnie\nLance\nLeland\nLucious\nManuel\nMarlon\nMilford\nNeil\nOwen\nRuben\nScotty\nStephan\nSterling\nUlysses\nWilmer\nZachary\nAdam\nAlfonza\nAnderson\nAugustus\nBuddy\nCedric\nCleophus\nDenny\nDudley\nElvin\nEverett\nFreeman\nGeneral\nHiram\nHollis\nIvory\nJacob\nJake\nKelly\nKen\nKing\nMary\nMcarthur\nNed\nNicky\nNoble\nOrlando\nOtha\nPat\nRandell\nRayburn\nRaymon\nRubin\nSilas\nStanford\nTaylor\nTheo\nTheodis\nWilfred\nWoodie\nWyatt\nWyman\nBert\nBoyd\nBrad\nBradford\nBrent\nBrian\nBurl\nConrad\nCoy\nDonell\nDoyce\nEddy\nEmmitt\nErskine\nEzell\nGerard\nGus\nHal\nHarley\nHarris\nHaywood\nHershel\nJeremiah\nJoesph\nKirk\nLane\nLionel\nMarlin\nMarty\nMaxwell\nMichel\nMiles\nMonty\nMyles\nNicholas\nNolan\nOzell\nPete\nPhil\nPrince\nRaleigh\nRodrick\nTalmadge\nTerrence\nToby\nVance\nAdolphus\nAlford\nAlphonse\nAuthur\nBailey\nBerry\nBuster\nCornell\nCrawford\nDarius\nDerrell\nDwayne\nEarlie\nEdmond\nEldridge\nElmore\nEmory\nEnoch\nEzekiel\nFoy\nGarland\nHardy\nJerrell\nJonnie\nJoshua\nJudge\nLeamon\nLebaron\nLemuel\nLincoln\nLindsey\nLue\nMadison\nMckinley\nMerrill\nMorgan\nPorter\nQuinton\nRayfield\nRobbie\nRocky\nRoyal\nShelby\nShirley\nSonny\nStuart\nTheron\nWilford\nJames\nWilliam\nRobert\nJohn\nMichael\nCharles\nDavid\nLarry\nWillie\nThomas\nRichard\nDonald\nJerry\nRonald\nJohnny\nGeorge\nKenneth\nGary\nJoseph\nDanny\nJimmy\nTerry\nBobby\nBilly\nRoger\nEdward\nHenry\nEddie\nPaul\nSteven\nJoe\nDennis\nStephen\nWalter\nRandy\nTommy\nRicky\nSamuel\nAnthony\nRonnie\nCarl\nGregory\nArthur\nRoy\nPhillip\nFrank\nRickey\nDaniel\nHarold\nCurtis\nStanley\nTimothy\nMelvin\nClarence\nDouglas\nMark\nCharlie\nRaymond\nDonnie\nCalvin\nSteve\nWayne\nJimmie\nRandall\nJesse\nRalph\nRodney\nAlbert\nAndrew\nJack\nBruce\nGerald\nJerome\nJackie\nDwight\nJessie\nHoward\nEugene\nFred\nErnest\nLeon\nMarvin\nTony\nRay\nNathaniel\nEarnest\nHarry\nGlenn\nLeonard\nLeroy\nBarry\nJohnnie\nAlfred\nBenjamin\nLee\nMicheal\nAllen\nJeffrey\nLawrence\nUnknown\nEarl\nAlan\nNorman\nDon\nFreddie\nClifford\nLouis\nPhilip\nFrederick\nAlvin\nRoosevelt\nCecil\nDarrell\nHerman\nEdwin\nLonnie\nMilton\nLewis\nPatrick\nReginald\nFranklin\nGarry\nRussell\nChristopher\nKeith\nHerbert\nDale\nFrankie\nOtis\nJeffery\nLester\nSylvester\nBernard\nJoel\nPerry\nTommie\nBennie\nWarren\nLuther\nClaude\nHorace\nPeter\nWallace\nBenny\nChester\nClyde\nDan\nHarvey\nSidney\nFloyd\nLeslie\nMarshall\nVernon\nLamar\nTyrone\nClifton\nFredrick\nWesley\nGrady\nMitchell\nTravis\nAaron\nGordon\nLloyd\nMack\nMickey\nOscar\nRoderick\nSammy\nJulius\nMartin\nMorris\nRex\nWilbert\nPercy\nRodger\nGene\nJim\nMaurice\nRoland\nSam\nAlexander\nGlen\nLeo\nNathan\nVictor\nAlton\nEdgar\nIsaac\nTheodore\nTroy\nVincent\nClinton\nHugh\nMike\nKerry\nMarcus\nOliver\nAlonzo\nBen\nMarion\nRufus\nVan\nAubrey\nJonathan\nLynn\nMatthew\nMax\nRonny\nScott\nSherman\nAlex\nArchie\nArnold\nByron\nHubert\nTed\nWade\nWendell\nBill\nGilbert\nIra\nJeff\nWill\nCarlton\nCraig\nFreddy\nGrover\nWinston\nCleveland\nEllis\nEric\nSammie\nAmos\nElbert\nElijah\nGuy\nLorenzo\nMoses\nRandal\nRandolph\nRickie\nTom\nWillard\nEmmett\nFrancis\nRoyce\nVirgil\nDewey\nDonny\nEmanuel\nStevie\nCarey\nDannie\nDewayne\nErvin\nJacky\nJon\nKenny\nLorenza\nLowell\nRocky\nTeddy\nAllan\nBrian\nChris\nKarl\nMyron\nNorris\nRobin\nAndre\nAndy\nClayton\nConnie\nCornelius\nDarryl\nHouston\nTerrell\nWillis\nWoodrow\nAbraham\nBuddy\nDerrick\nElmer\nHomer\nKent\nNeal\nNelson\nOwen\nRogers\nWilbur\nBarney\nCarlos\nDaryl\nForrest\nJulian\nJunior\nKevin\nPreston\nSanford\nWilson\nBobbie\nBradley\nElton\nFelix\nJay\nMalcolm\nNicholas\nWiley\nAlfonza\nBillie\nBob\nCoy\nDarnell\nDoyle\nGreg\nHank\nHoyt\nIsiah\nKim\nLouie\nRayford\nUlysses\nWyman\nAlfonso\nAlphonso\nAustin\nBooker\nCedric\nElliott\nEverett\nIssac\nJacob\nJefferson\nJeremiah\nJoey\nNapoleon\nNeil\nOtto\nRick\nRudy\nSterling\nBrad\nBuford\nClark\nDave\nDudley\nErnie\nErskine\nHuey\nJackson\nJudge\nKennith\nKyle\nLanny\nMajor\nMose\nOllie\nRiley\nRudolph\nStewart\nWilmer\nWinfred\nAl\nAlfonzo\nAlford\nAnderson\nAuthur\nDana\nDarrel\nDuane\nEddy\nIvan\nJoesph\nKirk\nLance\nLindsey\nLovell\nMarlin\nMurray\nNed\nNicky\nRobbie\nRoscoe\nSandy\nSpencer\nTim\nToney\nAdam\nBert\nCarroll\nCleophus\nConrad\nCornell\nDallas\nDamon\nGerry\nGlynn\nGregg\nHarrison\nHaywood\nHershel\nHiram\nHollis\nIke\nIvory\nJake\nJohnson\nKelvin\nLeland\nLucious\nMalcom\nMarc\nMckinley\nMillard\nOdis\nPete\nRandel\nRandell\nReuben\nSimon\nTalmadge\nWinford\nAdolph\nAdolphus\nAlphonse\nCleo\nDalton\nDexter\nDock\nDonell\nDonnell\nEarly\nElmore\nEmmitt\nEzekiel\nFelton\nHarris\nHayward\nHershell\nIrby\nIrvin\nJame\nJasper\nJudson\nKing\nLane\nLionel\nMac\nManuel\nMiles\nMorgan\nNickey\nOlen\nPrince\nRicardo\nRoss\nRuben\nStephan\nTerrance\nTerrence\nTheodis\nThurman\nWoody\nAbe\nAron\nArtis\nAudie\nAvery\nBernie\nBoyd\nBradford\nBrady\nBrent\nCarlis\nCarter\nCephus\nCharley\nCharlton\nCleve\nCliff\nColeman\nColumbus\nCurley\nDavey\nDean\nDenny\nDillard\nDorsey\nDurwood\nEli\nElisha\nElvin\nEvans\nFreeman\nGeneral\nGerard\nHal\nHarlan\nHerschel\nJohnie\nJones\nLenard\nLevi\nLevon\nLoyd\nMary\nMonte\nNoah\nObie\nOlin\nOneal\nPat\nRayburn\nRoyzell\nRozell\nScotty\nShirley\nSilas\nThaddeus\nTruman\nTyler\nWatson\nWaymond\nWebster\nWilfred\nWyatt\nZack\nZollie\nJames\nWilliam\nJohn\nRobert\nMichael\nCharles\nDavid\nLarry\nWillie\nRichard\nThomas\nDonald\nJerry\nKenneth\nRonald\nGary\nJohnny\nTerry\nJoseph\nGeorge\nDanny\nJimmy\nBilly\nBobby\nEdward\nRicky\nSteven\nPaul\nRandy\nRoger\nJoe\nHenry\nStephen\nEddie\nAnthony\nTimothy\nMark\nPhillip\nDennis\nGregory\nTommy\nRickey\nSamuel\nWalter\nRonnie\nDaniel\nHarold\nCurtis\nRoy\nCarl\nFrank\nArthur\nStanley\nSteve\nDouglas\nClarence\nRandall\nWayne\nHoward\nTony\nCharlie\nMelvin\nJerome\nAlbert\nBarry\nCalvin\nBruce\nDonnie\nJimmie\nRaymond\nJack\nMicheal\nFred\nRalph\nAlvin\nRodney\nEugene\nGlenn\nJohnnie\nMarvin\nRay\nJeffery\nGerald\nJackie\nLee\nEarnest\nErnest\nJessie\nAlfred\nLawrence\nDwight\nLeroy\nUnknown\nAllen\nJesse\nAlan\nCecil\nJeffrey\nLeon\nPatrick\nFreddie\nNathaniel\nLeonard\nPhilip\nReginald\nDon\nAndrew\nFrederick\nJoel\nMilton\nClifford\nHarry\nBenjamin\nHerman\nKeith\nNorman\nRoosevelt\nEarl\nDarrell\nGarry\nLewis\nLester\nLouis\nHerbert\nBenny\nFrankie\nFloyd\nFranklin\nLonnie\nDale\nRussell\nMorris\nHorace\nOtis\nVictor\nTommie\nClyde\nMitchell\nSammy\nRex\nTyrone\nHarvey\nLeslie\nPerry\nBennie\nMarion\nMickey\nBernard\nChristopher\nSylvester\nWarren\nEdwin\nWendell\nHugh\nOscar\nRoland\nVernon\nClaude\nGrady\nMarshall\nMike\nRufus\nClifton\nGordon\nNathan\nEric\nLloyd\nWallace\nChester\nFredrick\nHubert\nTheodore\nAaron\nKerry\nLorenzo\nMarcus\nScott\nByron\nLuther\nRoderick\nWesley\nDan\nEdgar\nJim\nJulius\nLynn\nPeter\nSidney\nAubrey\nCarlton\nMaurice\nAlton\nDarryl\nIsaac\nOliver\nWilbert\nElbert\nSam\nVincent\nDonny\nJonathan\nKevin\nBen\nGlen\nLeo\nMack\nMyron\nRickie\nRobin\nStevie\nTravis\nArnold\nRodger\nWade\nAlex\nPercy\nSammie\nBradley\nChris\nClinton\nCraig\nKarl\nMartin\nTom\nDewey\nRandolph\nTed\nTroy\nBill\nJoey\nLamar\nMax\nSherman\nWillard\nAllan\nGilbert\nHomer\nNelson\nRoyce\nWinston\nAndre\nBrian\nCleveland\nCornelius\nDoyle\nEllis\nMatthew\nAlexander\nAmos\nArchie\nCedric\nDana\nEmmett\nFelix\nFreddy\nGuy\nIra\nKelvin\nRandal\nAnderson\nAndy\nCarlos\nElijah\nErvin\nFrancis\nGene\nJeff\nKennith\nMalcolm\nWill\nAlonzo\nAlphonso\nJacob\nKenny\nNorris\nRocky\nVirgil\nWilson\nWoodrow\nClayton\nRoss\nWillis\nAbraham\nCarey\nDexter\nHoyt\nJacky\nJeremiah\nLowell\nMoses\nVan\nAl\nBob\nEddy\nJon\nJulian\nLorenza\nLouie\nTeddy\nWilbur\nDannie\nElmer\nElton\nGarland\nHuey\nJay\nMajor\nNeal\nPreston\nUlysses\nBillie\nCleophus\nDave\nDean\nDerrick\nEmanuel\nGrover\nHayward\nIsiah\nLeland\nMarc\nNeil\nOllie\nRayford\nRonny\nSandy\nTerrell\nAlfonso\nAlonza\nDallas\nDarrel\nDerek\nErskine\nGerry\nHollis\nJunior\nLance\nLovell\nMarlin\nMarty\nOwen\nRick\nRiley\nRudolph\nSpencer\nWaymon\nWiley\nAdrian\nAlfonza\nAustin\nBrent\nClark\nDaryl\nDudley\nEmmitt\nEverett\nHosea\nIvan\nJasper\nKim\nKing\nKirk\nLevi\nLoyd\nTim\nToney\nBerry\nBlake\nBooker\nBrady\nBuddy\nCarnell\nClay\nEdmond\nElliott\nElvin\nFletcher\nHarris\nHershel\nIke\nJerald\nLanny\nMillard\nMose\nNapoleon\nPete\nQuinton\nRobby\nRogers\nShelby\nSolomon\nStanford\nThurman\nWinfred\nAlphonse\nAngelo\nBarney\nBrad\nBrenda\nCoy\nCurley\nDalton\nDewayne\nEarly\nFaron\nFernando\nGreg\nGus\nHank\nIsaiah\nIssac\nIvory\nJackson\nJake\nJefferson\nJoesph\nJohnie\nJudson\nKenney\nLindsey\nMarlon\nMary\nNolan\nOrlando\nRandell\nRicardo\nSheldon\nStan\nTyler\nVerlon\nZachary\nAdam\nAdolphus\nArther\nBobbie\nBryant\nBuford\nCarter\nCary\nCleo\nDarnell\nDelbert\nDwayne\nEd\nEdd\nFarron\nHal\nHarlon\nHouston\nKelly\nKent\nLemuel\nManuel\nMelton\nMonroe\nMurray\nOdell\nOlen\nOneal\nRobbie\nRuben\nShelly\nSterling\nTheodis\nTimmy\nWilburn\nAbe\nArtis\nAugusta\nBoyd\nChuck\nClarance\nColeman\nColumbus\nConnell\nConrad\nDane\nDanial\nDanney\nDenny\nDusty\nElisha\nEvans\nForrest\nGeary\nGerome\nGraham\nGrant\nHerschel\nHezekiah\nHowell\nJuan\nKendall\nKermit\nLannie\nLaurence\nLeamon\nLonzo\nMaxie\nMervin\nMicky\nMonty\nNicholas\nNoah\nOcie\nOdis\nOtha\nPat\nRubin\nRusty\nSanford\nScotty\nSilas\nSpurgeon\nStephan\nStuart\nTaylor\nThad\nThaddeus\nTheron\nVance\nWalton\nWoodie\nJames\nMichael\nJohn\nRobert\nWilliam\nDavid\nCharles\nLarry\nWillie\nRichard\nKenneth\nThomas\nDonald\nJerry\nGary\nRonald\nJohnny\nTerry\nJoseph\nGeorge\nJimmy\nDanny\nBilly\nRandy\nSteven\nAnthony\nRicky\nBobby\nEddie\nMark\nEdward\nRoger\nGregory\nDennis\nTimothy\nPhillip\nPaul\nStephen\nJoe\nRonnie\nRickey\nHenry\nCurtis\nCarl\nWalter\nSamuel\nDaniel\nTommy\nStanley\nRoy\nArthur\nSteve\nFrank\nMelvin\nHarold\nRandall\nTony\nDouglas\nCharlie\nJerome\nRaymond\nGerald\nJeffrey\nWayne\nAlbert\nBarry\nJeffery\nClarence\nBruce\nRay\nMicheal\nGlenn\nDonnie\nHoward\nReginald\nRodney\nRalph\nAndrew\nCalvin\nAllen\nEugene\nJack\nJackie\nMarvin\nLeon\nAlan\nFred\nLee\nNathaniel\nJesse\nJimmie\nLawrence\nAlvin\nFreddie\nDwight\nClifford\nChristopher\nAlfred\nBenjamin\nEarl\nGarry\nKeith\nErnest\nUnknown\nDon\nJessie\nJoel\nCecil\nLeonard\nHerbert\nEarnest\nJohnnie\nMilton\nRussell\nPhilip\nBernard\nLeroy\nFrederick\nDarrell\nHerman\nLewis\nRoderick\nDale\nFranklin\nHorace\nFloyd\nHarry\nLonnie\nPatrick\nLester\nPerry\nPeter\nWallace\nKevin\nNorman\nTyrone\nBennie\nMike\nRoosevelt\nClyde\nEric\nMorris\nTommie\nVictor\nDan\nBenny\nSylvester\nLouis\nGlen\nKerry\nRex\nFrankie\nEdwin\nHarvey\nLeslie\nByron\nMartin\nMarcus\nSammy\nVernon\nAaron\nClaude\nEdgar\nJulius\nLorenzo\nMickey\nOtis\nScott\nTravis\nCarlton\nCraig\nOscar\nWarren\nClinton\nMitchell\nWendell\nWilbert\nChester\nMack\nClifton\nLloyd\nArchie\nHubert\nWesley\nGuy\nJonathan\nMarshall\nMaurice\nSammie\nSidney\nArnold\nGordon\nMarion\nTheodore\nVan\nFredrick\nPercy\nSam\nStevie\nJim\nKenny\nMalcolm\nMatthew\nRufus\nBrian\nGrady\nHugh\nLeo\nRandolph\nLuther\nOliver\nVincent\nDexter\nJon\nTroy\nClayton\nDonny\nElbert\nJay\nLynn\nRandal\nWade\nIsaac\nMax\nRobin\nTom\nWinston\nAlonzo\nBill\nCleveland\nDerrick\nLamar\nRodger\nVirgil\nAubrey\nBen\nEllis\nKarl\nNathan\nAlton\nAndy\nConnie\nGene\nIra\nJulian\nMarty\nMoses\nMyron\nPreston\nWoodrow\nAlphonso\nChris\nEmmett\nGilbert\nJoey\nRoland\nRonny\nTed\nAlexander\nCarlos\nCedric\nElijah\nFreddy\nMarlon\nNelson\nRickie\nSherman\nAmos\nDwayne\nFelix\nJerald\nJunior\nNapoleon\nNeal\nTeddy\nWillard\nBob\nDarryl\nDewey\nEddy\nErvin\nFrancis\nRuben\nTerrell\nAlex\nAndre\nDana\nDaryl\nFletcher\nTim\nWinfred\nAl\nBradley\nBuddy\nDave\nDewayne\nElton\nGerry\nHollis\nKent\nLeland\nMose\nOrlando\nQuinton\nReuben\nWilbur\nWillis\nWilson\nCarey\nDoyle\nElmer\nGrover\nHoyt\nIvory\nJasper\nKennith\nLovell\nMurray\nRayford\nBryan\nEverett\nJake\nJeff\nLouie\nRocky\nRoyce\nShelby\nStuart\nTheodis\nToney\nAllan\nBarney\nClark\nDannie\nDavis\nEmanuel\nHal\nHomer\nKelly\nKim\nKyle\nNeil\nOllie\nAlfonso\nAlfonza\nAlonza\nAlphonse\nBooker\nCornelius\nDarnell\nDudley\nErskine\nKelvin\nPete\nRudolph\nSpencer\nTerrance\nTerrence\nBrent\nBuford\nCary\nCleophus\nDean\nDemetrius\nEzell\nFreeman\nGrant\nGreg\nHouston\nJacob\nJeremiah\nLowell\nMarc\nPhil\nRandell\nUlysses\nWaymon\nAlfonzo\nBert\nBillie\nCarter\nCleve\nConrad\nDewitt\nEd\nElmore\nForrest\nGarland\nHank\nHershel\nIke\nJacky\nKirk\nLevi\nLoyd\nMaxwell\nOdell\nRick\nRobbie\nRoss\nShelton\nSolomon\nThaddeus\nWilburn\nWilmer\nAdrian\nAudie\nCarnell\nCoy\nDavey\nEdmund\nHarlan\nIsiah\nJason\nJefferson\nJody\nJoesph\nJunius\nLevon\nLindsey\nLionel\nLorenza\nMac\nMajor\nMary\nMonroe\nMonte\nNicholas\nNolan\nReggie\nRodrick\nSaul\nWoodie\nAbraham\nAntonio\nAugustus\nAustin\nBarton\nBerry\nBobbie\nBoyd\nBrett\nClay\nColeman\nDavy\nDelbert\nDerek\nDerrell\nEdmond\nEmory\nHarrison\nIssac\nIvan\nJackson\nJeffry\nJoshua\nLonzo\nPrince\nRayburn\nRozell\nRusty\nSandy\nSanford\nSimon\nSonny\nTalmadge\nTerence\nTracy\nWally\nWiley\nWill\nWoody\nAdolphus\nAlphonsa\nAngelo\nAron\nArtis\nAuthur\nBradford\nBryant\nBurl\nButch\nChuck\nCleo\nClint\nColumbus\nCornelious\nDock\nEarlie\nEdsel\nEmmitt\nEnoch\nErnie\nGodfrey\nHarris\nHilton\nIrving\nJan\nJarvis\nJuan\nJustin\nKen\nKermit\nLance\nLanny\nLavon\nLeander\nLimmie\nLlewellyn\nLucious\nLuke\nManuel\nMckinley\nMicky\nMiles\nMillard\nMiller\nOlin\nPat\nRhett\nRicardo\nRogers\nRubin\nScotty\nStewart\nTaylor\nTheadore\nTimmy\nToby\nVance\nVaughn\nVince\nWeldon\nWilfred\nWilliams\nWyatt\nJames\nMichael\nJohn\nRobert\nWilliam\nDavid\nCharles\nLarry\nWillie\nKenneth\nRichard\nThomas\nDonald\nRonald\nGary\nTerry\nJerry\nJohnny\nRandy\nSteven\nJoseph\nJimmy\nDanny\nBilly\nGeorge\nBobby\nTimothy\nRicky\nGregory\nDennis\nMark\nAnthony\nEdward\nStephen\nPaul\nRonnie\nEddie\nJoe\nRoger\nPhillip\nRickey\nWalter\nCarl\nHenry\nSamuel\nDaniel\nStanley\nSteve\nTony\nTommy\nFrank\nCurtis\nArthur\nDouglas\nJeffery\nRoy\nHarold\nMicheal\nRandall\nBruce\nMelvin\nJeffrey\nAlbert\nClarence\nJerome\nRaymond\nBarry\nCalvin\nKeith\nReginald\nJack\nGlenn\nGerald\nWayne\nHoward\nRodney\nAllen\nDonnie\nMarvin\nRalph\nRay\nCharlie\nEugene\nJesse\nJackie\nFred\nJimmie\nJoel\nLee\nAndrew\nAlfred\nEarnest\nAlan\nDwight\nLawrence\nFrederick\nDon\nLeon\nDarrell\nHerbert\nJessie\nLeonard\nEarl\nRussell\nChristopher\nErnest\nMike\nAlvin\nJohnnie\nLouis\nBenjamin\nBenny\nLeroy\nNathaniel\nUnknown\nFreddie\nMilton\nPhilip\nLonnie\nPatrick\nClifford\nNorman\nHarry\nLewis\nDale\nVictor\nFranklin\nKevin\nRoosevelt\nClyde\nEric\nFloyd\nCecil\nBrian\nGarry\nRoderick\nHerman\nLeslie\nOtis\nFrankie\nLester\nAaron\nScott\nBernard\nEdwin\nJonathan\nFredrick\nSylvester\nWarren\nWesley\nByron\nRex\nMickey\nBennie\nPerry\nMarcus\nWendell\nLorenzo\nMartin\nMitchell\nJoey\nLloyd\nMarion\nMarty\nOscar\nVernon\nVincent\nArchie\nHugh\nSam\nTheodore\nTommie\nWallace\nChester\nEdgar\nJeff\nRufus\nTravis\nTyrone\nGrady\nLeo\nMatthew\nCraig\nDan\nDarryl\nHarvey\nJim\nKelvin\nPeter\nRobin\nSammy\nMorris\nBen\nChris\nClaude\nClinton\nHorace\nKenny\nLuther\nMack\nMaurice\nAlton\nMarshall\nSidney\nTom\nCarlton\nCedric\nJulius\nLynn\nTed\nGene\nKarl\nPreston\nStevie\nWinston\nAubrey\nClifton\nDaryl\nGlen\nJay\nNathan\nWade\nEllis\nKerry\nKim\nWilbert\nBill\nDewey\nRandolph\nTroy\nVirgil\nElbert\nGordon\nIsaac\nLamar\nMalcolm\nTim\nBryan\nOliver\nDoyle\nJon\nSammie\nAmos\nDerrick\nSherman\nWinfred\nArnold\nClayton\nTeddy\nAndy\nIra\nMax\nRandal\nVan\nAlonzo\nFreddy\nGuy\nLorenza\nAlex\nAllan\nAndre\nBob\nBradley\nFrancis\nGilbert\nGreg\nNelson\nPercy\nRickie\nRodger\nAl\nAlexander\nDewayne\nKent\nMoses\nMyron\nNeal\nBradford\nCleveland\nElijah\nElvis\nEmmett\nErvin\nGrover\nRocky\nRoyce\nTerrell\nWillard\nWillis\nBroderick\nBuddy\nCarey\nCarlos\nConnie\nDexter\nDonny\nHubert\nJasper\nMarlon\nClark\nEddy\nEverett\nHal\nRick\nRonny\nToney\nWiley\nWoodrow\nForrest\nFreeman\nGerry\nHayward\nHomer\nHouston\nJacky\nJacob\nKelly\nLevi\nNorris\nRoland\nWilson\nClay\nDana\nDave\nDean\nElton\nEmanuel\nFelix\nJulian\nLeland\nMarc\nRoss\nTerence\nAbraham\nAlfonso\nAngelo\nBrent\nCarnell\nDannie\nDemetrius\nDerek\nElliott\nIsiah\nJerald\nJunior\nKen\nKennith\nLionel\nNeil\nNicholas\nNoah\nRandell\nSandy\nTalmadge\nTerrence\nTracy\nWilburn\nWill\nAudie\nAustin\nBooker\nBrady\nCoy\nDarnell\nErskine\nJarvis\nJustin\nLouie\nMajor\nOdis\nQuintin\nRuben\nShelton\nSilas\nSonny\nStewart\nThaddeus\nUlysses\nAlphonso\nDwayne\nEdmond\nEmory\nEnoch\nHank\nHarrison\nHuey\nIvan\nIvory\nLovell\nLuke\nManuel\nOwen\nRayford\nRobby\nShelby\nSterling\nStuart\nWilbur\nWindell\nAdrian\nAuthur\nBillie\nBobbie\nBryant\nCleo\nColumbus\nConrad\nCornelius\nCornell\nDesi\nDwain\nEzekiel\nGus\nHershel\nHoyt\nIrvin\nJamie\nJason\nJeremiah\nJoesph\nKyle\nLance\nLindsey\nLowell\nMalcom\nNapoleon\nNolan\nOcie\nOllie\nOrlando\nPat\nPhil\nRayburn\nRogers\nSanford\nTerrance\nTimmy\nWilford\nWilfred\nAlford\nAlphonse\nAlphonzo\nArtis\nBarney\nBarron\nBert\nBoyd\nBrooks\nCarroll\nCary\nDoug\nDudley\nEd\nEli\nElvin\nFarrell\nGabriel\nGeoffrey\nHarlan\nHarris\nJackson\nJame\nJefferson\nJody\nJohnathan\nJudge\nKermit\nKirby\nKirk\nLeander\nLenard\nLucious\nMac\nMaxie\nMcarthur\nMckinley\nMillard\nMonroe\nNed\nNoel\nPorter\nReuben\nRicardo\nRichmond\nRod\nSheldon\nSpencer\nStanford\nTheo\nTherman\nThurman\nTodd\nWinford\nWoody\nAlfonzo\nAlonza\nAntonio\nArtie\nBrad\nBurl\nButch\nCarter\nChuck\nClarance\nClement\nClint\nColeman\nCyrus\nDarrel\nDarry\nDavey\nDonell\nElmer\nFerrell\nGarland\nGeary\nGregg\nHosea\nHowell\nJeffry\nJerre\nJuan\nKem\nKing\nKurt\nLanny\nMichel\nMiles\nMose\nMurray\nOtha\nOtto\nRaymon\nRiley\nRobbie\nRoscoe\nRudolph\nRusty\nSanders\nSimmie\nStephan\nWaymon\nWyman\nJames\nMichael\nWilliam\nRobert\nJohn\nDavid\nCharles\nLarry\nWillie\nRichard\nKenneth\nThomas\nDonald\nTerry\nRonald\nGary\nJohnny\nMark\nJerry\nRandy\nJoseph\nAnthony\nGregory\nSteven\nGeorge\nJimmy\nTimothy\nDanny\nBilly\nRicky\nEdward\nBobby\nDennis\nRonnie\nPaul\nEddie\nPhillip\nRickey\nStephen\nTommy\nTony\nCarl\nRoger\nJoe\nDaniel\nSteve\nJeffrey\nWalter\nJeffery\nHenry\nSamuel\nBarry\nStanley\nArthur\nDouglas\nCurtis\nBruce\nRandall\nRoy\nHarold\nMicheal\nReginald\nKeith\nFrank\nRaymond\nMelvin\nClarence\nJerome\nJack\nWayne\nAlbert\nCharlie\nGlenn\nRay\nMike\nDonnie\nLee\nRalph\nAndrew\nGerald\nCalvin\nMarvin\nFrederick\nRodney\nAlan\nHoward\nAllen\nJackie\nAlvin\nDarrell\nEugene\nJimmie\nLeon\nChristopher\nBrian\nLawrence\nKevin\nJesse\nJoel\nLeonard\nVictor\nDon\nFreddie\nBenjamin\nDwight\nEarl\nClifford\nAlfred\nNathaniel\nFred\nJessie\nRussell\nLeroy\nPhilip\nRoderick\nErnest\nHarry\nMickey\nPerry\nBenny\nFredrick\nHerman\nPatrick\nJohnnie\nLonnie\nEarnest\nNorman\nEric\nFloyd\nFranklin\nLouis\nHerbert\nMitchell\nGarry\nJeff\nMilton\nMartin\nTim\nDale\nTommie\nClyde\nClaude\nEdwin\nJoey\nRoosevelt\nScott\nCedric\nDan\nOscar\nOtis\nTyrone\nBernard\nByron\nLorenzo\nWarren\nWendell\nCarlton\nKenny\nLester\nPeter\nCecil\nJonathan\nVernon\nWesley\nHorace\nLewis\nLloyd\nMarcus\nMarion\nMarty\nSammy\nAaron\nFrankie\nMatthew\nClinton\nLeslie\nSidney\nVincent\nWallace\nBennie\nRobin\nNathan\nSam\nUnknown\nHarvey\nClifton\nElbert\nGene\nRex\nDerrick\nSylvester\nBill\nDarryl\nMaurice\nMack\nStevie\nTheodore\nChester\nGreg\nKerry\nTravis\nChris\nElvis\nGrady\nHugh\nJim\nKelvin\nBen\nPercy\nAubrey\nCraig\nDexter\nDwayne\nEdgar\nTom\nRandolph\nTeddy\nTimmy\nVan\nAlex\nBryan\nGlen\nGordon\nGuy\nKarl\nMorris\nRufus\nHubert\nMax\nTroy\nWade\nWinston\nAlton\nJon\nMarshall\nSammie\nTed\nAndre\nAndy\nClayton\nHomer\nJulius\nMyron\nWillis\nArchie\nDaryl\nDonny\nJay\nRoland\nCarey\nFreddy\nLeo\nLuther\nLynn\nMalcolm\nVirgil\nCleveland\nEllis\nGilbert\nLamar\nOliver\nTracy\nWilson\nDean\nDerek\nDewayne\nGerry\nIra\nKent\nKim\nNelson\nRonny\nSherman\nWilbert\nWill\nAlexander\nFrancis\nRandal\nBradley\nDave\nEmmett\nIsaac\nAl\nAlonzo\nBrent\nCarlos\nElijah\nElmer\nNeal\nNorris\nPreston\nRoyce\nAlphonso\nArnold\nClint\nDoyle\nElton\nEmanuel\nErvin\nFelix\nLouie\nOrlando\nRayford\nRickie\nStuart\nTerrell\nToney\nAntonio\nCary\nClark\nCornelius\nEdmond\nForrest\nIsaiah\nKirk\nWinfred\nAllan\nBooker\nDarrel\nDoug\nEverett\nJackson\nJacob\nJoesph\nJulian\nKelly\nRodger\nWiley\nWillard\nAbraham\nAmos\nAustin\nBrad\nConnie\nDana\nHershel\nHollis\nIvory\nKen\nKennith\nKyle\nLance\nLowell\nManuel\nRuben\nScotty\nStan\nTerrence\nAngelo\nClay\nFreeman\nGrover\nJacky\nJuan\nLeander\nMarlon\nTerence\nWoodrow\nAdrian\nAlfonza\nAudie\nBuddy\nCoy\nDewey\nDonell\nDuane\nGregg\nHaywood\nJake\nJunior\nLorenza\nLyndon\nMajor\nMoses\nMurray\nNeil\nNoel\nOllie\nReuben\nRocky\nSandy\nSpencer\nUlysses\nBarney\nBob\nBobbie\nDamon\nDannie\nDemetrius\nEddy\nErwin\nHal\nHoyt\nJarvis\nLionel\nMac\nNapoleon\nNoah\nRicardo\nRick\nRoss\nRusty\nShawn\nSheldon\nTimmie\nVance\nWilbur\nAnderson\nBillie\nBoyd\nBritt\nBroderick\nCleophus\nDavis\nDenny\nDerick\nDrew\nEarly\nEd\nEldred\nElvin\nErnie\nGabriel\nHarris\nHuey\nJamie\nJefferson\nJeremiah\nJose\nJudge\nKendall\nLebaron\nLindsey\nMarc\nMatt\nMorgan\nNicholas\nOcie\nOwen\nRobbie\nRodrick\nRoscoe\nSonny\nVann\nWaymon\nArtis\nAugustus\nBerry\nBurl\nCarnell\nCedrick\nCharley\nColin\nConrad\nDarnell\nDarwin\nDelbert\nDerwin\nEarlie\nErskine\nFletcher\nForest\nGrayling\nHank\nHiram\nHouston\nIvan\nJame\nJustin\nLeland\nLenard\nLevi\nMarlin\nMckinley\nNed\nPat\nPhil\nQuinton\nRandell\nRiley\nRon\nSanford\nSolomon\nStewart\nTerrance\nWilburn\nZachary\nAdolphus\nAndrea\nAuther\nBarron\nBert\nBrady\nBrooks\nBuford\nCameron\nCarson\nCarter\nColeman\nCyril\nDempsey\nDeryl\nDonnell\nEdmund\nElston\nEzekiel\nEzell\nGeary\nGeoffrey\nGrant\nHarlan\nHilton\nIke\nIrvin\nJason\nJasper\nJeffry\nJerald\nJohnie\nJudson\nKenney\nKermit\nLevon\nLinda\nLoyd\nLugene\nLuke\nMiles\nMillard\nMitchel\nMonte\nMyles\nNolan\nObie\nRaymon\nRichmond\nRochester\nRudolph\nScottie\nShelby\nShirley\nSilas\nThurman\nTrent\nVince\nWilford\nWilfred\nWilmer\nWinford\nWyatt\nJames\nMichael\nWilliam\nRobert\nDavid\nJohn\nCharles\nRichard\nWillie\nKenneth\nLarry\nThomas\nTimothy\nDonald\nTerry\nRonald\nMark\nJerry\nGary\nJohnny\nGregory\nRicky\nAnthony\nJimmy\nDanny\nRandy\nSteven\nBilly\nBobby\nJoseph\nGeorge\nTony\nDennis\nRonnie\nRickey\nPaul\nPhillip\nStephen\nJeffery\nEdward\nEddie\nJoe\nSteve\nTommy\nDouglas\nJeffrey\nRoger\nHenry\nWalter\nDaniel\nCarl\nKeith\nMicheal\nSamuel\nCurtis\nStanley\nMike\nFrank\nBruce\nHarold\nRoy\nArthur\nRandall\nReginald\nBarry\nMelvin\nMarvin\nRaymond\nChristopher\nRay\nCalvin\nRodney\nWayne\nJerome\nTim\nClarence\nAlan\nDarrell\nHoward\nJack\nKevin\nAlbert\nAllen\nBrian\nCharlie\nGerald\nRalph\nRussell\nAndrew\nLee\nDonnie\nEric\nGlenn\nJeff\nAlvin\nFrederick\nJimmie\nScott\nJoel\nLeon\nFred\nJesse\nDon\nErnest\nNathaniel\nEugene\nAlfred\nPerry\nLawrence\nDale\nVictor\nClifford\nNorman\nPatrick\nEarnest\nLeonard\nDwight\nBenjamin\nHerman\nJackie\nHerbert\nLewis\nPhilip\nFreddie\nJohnnie\nGreg\nJessie\nHarry\nSylvester\nLouis\nRoderick\nEarl\nFranklin\nLester\nLeroy\nWendell\nCecil\nMarty\nByron\nJim\nMilton\nChris\nMickey\nTimmy\nVincent\nDarryl\nEdwin\nJoey\nMatthew\nTyrone\nWarren\nBernard\nKenny\nLonnie\nMitchell\nFloyd\nCraig\nOtis\nPeter\nWesley\nBill\nFrankie\nJonathan\nGarry\nMarcus\nBenny\nCedric\nStevie\nBennie\nDan\nFredrick\nDerrick\nLeslie\nBryan\nSammy\nTommie\nVernon\nDaryl\nLloyd\nRoosevelt\nCarlton\nClaude\nMartin\nWallace\nChester\nHarvey\nSidney\nUnknown\nClyde\nGlen\nJay\nLamar\nRobin\nMarion\nRex\nGene\nMaurice\nTed\nAaron\nBen\nClinton\nJon\nKelvin\nNathan\nOscar\nTom\nArnold\nDexter\nSam\nWade\nHomer\nHugh\nLorenzo\nMarshall\nRandal\nTheodore\nAlton\nElvis\nHubert\nKarl\nAubrey\nCleveland\nIsaac\nMorris\nAlonzo\nAndy\nHorace\nJulius\nClifton\nKerry\nMalcolm\nMarlon\nOliver\nRonny\nSherman\nWilbert\nWinston\nDewayne\nElbert\nKent\nLuther\nAndre\nKen\nRandolph\nRoland\nRoyce\nRufus\nSammie\nTerrell\nAlex\nClayton\nErvin\nGordon\nGrady\nGuy\nPercy\nCarey\nChuck\nIra\nTroy\nEdgar\nLeo\nVan\nWillard\nArchie\nBrent\nCarlos\nDerek\nDonny\nFreddy\nKelly\nMoses\nRayford\nTeddy\nTravis\nWillis\nAlexander\nDana\nDean\nDewey\nDuane\nElijah\nForrest\nGilbert\nGrover\nMack\nRick\nBarney\nEllis\nGerry\nLorenza\nRickie\nBuddy\nClay\nDuncan\nDwayne\nEmmett\nEverett\nFrancis\nMax\nToney\nTracy\nCary\nClint\nDoyle\nEddy\nFelix\nJeremiah\nJody\nKim\nLovell\nRodger\nAlphonso\nAntonio\nBroderick\nDannie\nDave\nKendall\nLynn\nOrlando\nPreston\nTerrence\nBob\nBradley\nCornelius\nDarrel\nHarrison\nJacob\nMorgan\nMyron\nNeal\nOllie\nPhil\nTerence\nAlfonza\nAllan\nClark\nDoug\nElton\nEmanuel\nIssac\nKirk\nKyle\nLevi\nLowell\nRandell\nRobbie\nTerrance\nVirgil\nWilbur\nWill\nAmos\nBlake\nCliff\nJake\nJamie\nJasper\nJeffry\nJuan\nLeland\nNapoleon\nNelson\nStuart\nThaddeus\nAlfonso\nBrett\nEdsel\nErskine\nIsiah\nKennith\nLance\nNicky\nNorris\nOwen\nPat\nRobby\nRuben\nRudolph\nStan\nUlysses\nWinfred\nWoodrow\nAdrian\nAl\nAnderson\nAngelo\nAustin\nBerry\nBert\nBradford\nCoy\nDarnell\nDonnell\nElmer\nFelton\nHarlan\nHollis\nHoyt\nIvan\nIvory\nJason\nJunior\nLindsey\nLouie\nManuel\nMonte\nMonty\nNeil\nNicholas\nOcie\nReuben\nRiley\nRoss\nSanford\nSean\nShelton\nTheodis\nToby\nAlonza\nAlphonse\nAvery\nBillie\nBrad\nCleophus\nColeman\nConrad\nDemetrius\nDenny\nDudley\nEd\nEzell\nFletcher\nHal\nHayward\nHiram\nIrvin\nJackson\nMajor\nMalcom\nMonroe\nNoel\nQuentin\nReggie\nRon\nRusty\nSpencer\nTimmie\nVince\nWiley\nAdam\nAndrea\nBoyd\nChip\nConnie\nDallas\nDarvin\nDavis\nDavy\nDerry\nElliott\nEmmitt\nErwin\nGeoffrey\nHank\nHershel\nHouston\nHowell\nJoshua\nJustin\nLanny\nLeamon\nLevon\nMac\nMarc\nMarlin\nNick\nOlin\nOneal\nReese\nRocky\nScotty\nSeth\nSterling\nVance\nWaylon\nWilson\nAbraham\nBetty\nBooker\nBrenda\nCarnell\nCarter\nColumbus\nCornell\nDelbert\nDenver\nDerick\nElmore\nElvin\nEvan\nGabriel\nGarfield\nGrant\nHarris\nJerald\nJoesph\nJulian\nKermit\nLabarron\nLane\nLon\nLucious\nLyle\nMary\nMatt\nMillard\nMose\nNed\nNoah\nNorville\nOdell\nRaleigh\nRichie\nRosevelt\nShawn\nSonny\nTalmadge\nVon\nWinford\nZachary\nJames\nMichael\nDavid\nWilliam\nJohn\nRobert\nCharles\nKenneth\nRichard\nTimothy\nMark\nWillie\nLarry\nTerry\nThomas\nGregory\nJerry\nDonald\nRonald\nRicky\nGary\nAnthony\nJohnny\nJoseph\nBilly\nSteven\nJimmy\nGeorge\nBobby\nRandy\nDanny\nJeffery\nJeffrey\nPhillip\nTony\nRickey\nDennis\nEddie\nRonnie\nPaul\nEdward\nTommy\nSteve\nDaniel\nJoe\nStephen\nCarl\nRandall\nSamuel\nRoger\nHenry\nCurtis\nMike\nKeith\nChristopher\nDouglas\nWalter\nMicheal\nReginald\nBruce\nFrank\nBarry\nStanley\nRoy\nRodney\nRaymond\nTim\nArthur\nAlbert\nHarold\nMelvin\nBrian\nJerome\nRussell\nCalvin\nAndrew\nDonnie\nDarryl\nFrederick\nAlan\nMarvin\nWayne\nRay\nRalph\nClarence\nAlvin\nCharlie\nDarrell\nEric\nJesse\nScott\nDale\nKevin\nLee\nJeff\nGlenn\nGerald\nHoward\nRoderick\nErnest\nJack\nDon\nFred\nLawrence\nNathaniel\nDwight\nVictor\nFreddie\nAllen\nJessie\nJackie\nGreg\nJoel\nCraig\nPatrick\nPerry\nJimmie\nChris\nHerman\nLeon\nPhilip\nBenjamin\nJohnnie\nAlfred\nHarry\nSammy\nEugene\nJoey\nLonnie\nClifford\nLouis\nClyde\nFrankie\nMarcus\nMatthew\nFranklin\nWendell\nEarl\nLewis\nTyrone\nLeonard\nCecil\nMilton\nJim\nBryan\nKelvin\nKenny\nTimmy\nEarnest\nMitchell\nNorman\nWarren\nAaron\nBenny\nCedric\nRoosevelt\nVincent\nBernard\nLester\nHerbert\nHorace\nLeroy\nMarty\nSylvester\nWesley\nBill\nGlen\nJonathan\nByron\nDerrick\nFloyd\nMarshall\nTravis\nMickey\nPeter\nStevie\nTommie\nGarry\nJay\nKerry\nLloyd\nMaurice\nMorris\nChester\nGene\nEdwin\nGordon\nLeslie\nOtis\nSam\nVernon\nAndre\nDan\nLorenzo\nJon\nNathan\nAndy\nJulius\nMartin\nOscar\nDaryl\nMarion\nRex\nRobin\nClaude\nRandal\nSidney\nTom\nAlonzo\nCarlton\nWallace\nAubrey\nBen\nClifton\nDwayne\nHarvey\nHugh\nBennie\nCarlos\nDewayne\nOliver\nRoland\nTerrell\nClinton\nFredrick\nLynn\nMalcolm\nPercy\nTheodore\nAlphonso\nEllis\nKelly\nLamar\nNelson\nTed\nArchie\nKarl\nMarlon\nPreston\nRandolph\nRick\nSammie\nAllan\nAlton\nBob\nDewey\nGrady\nGuy\nIsaac\nBrent\nDexter\nErvin\nKent\nMack\nMax\nRoyce\nTroy\nAntonio\nDean\nEdgar\nHubert\nRufus\nTracy\nUnknown\nWilbert\nArnold\nDana\nLeo\nLuther\nMurray\nWill\nAmos\nChuck\nIvan\nKyle\nMyron\nRodger\nAl\nAlex\nAngelo\nCleveland\nCornelius\nDave\nDonny\nDoyle\nDuane\nLorenza\nSherman\nToney\nWade\nWillis\nBobbie\nClay\nDerek\nElijah\nIra\nRoss\nWinfred\nAlonza\nDoug\nEmanuel\nEmmett\nHomer\nJamie\nJody\nKen\nMarc\nNeal\nRusty\nBart\nBrett\nCary\nDarrel\nElbert\nFelix\nGerry\nJeremiah\nKirby\nLance\nPhil\nReggie\nTodd\nWillard\nWilson\nWinston\nAdrian\nAlexander\nClint\nFreeman\nGilbert\nHarrison\nJacob\nLeland\nLowell\nNeil\nSolomon\nTeddy\nClark\nClayton\nCoy\nDarren\nHollis\nKim\nKirk\nLoyd\nOrlando\nRandell\nRickie\nRonny\nSpencer\nUlysses\nVan\nWaymon\nBarron\nBooker\nCleophus\nForrest\nHal\nHarlan\nJulian\nManuel\nMarlin\nVirgil\nAlfonso\nAvery\nBret\nBroderick\nBryant\nBuddy\nCarey\nCarnell\nDarnell\nErwin\nIrvin\nJake\nLouie\nLuke\nMac\nMatt\nPete\nRobbie\nRocky\nRon\nScotty\nShawn\nShelton\nStan\nStuart\nTerrance\nTerrence\nYancy\nAbraham\nAndrea\nBrad\nCarter\nCliff\nConnie\nDallas\nDenny\nEd\nEdmond\nElvin\nElvis\nFletcher\nGrant\nHarris\nHoyt\nIsaiah\nJacky\nJame\nJarvis\nJefferson\nJerald\nJuan\nKennith\nMillard\nNorris\nRory\nRuss\nShane\nShannon\nTerence\nBarney\nChip\nColeman\nDarry\nErrol\nEverett\nFernando\nHiram\nIsiah\nIvory\nLane\nLemuel\nLindsey\nLionel\nMary\nMorgan\nMoses\nNicholas\nNick\nOllie\nPat\nQuinton\nReuben\nRodrick\nRoscoe\nRuben\nStacy\nStewart\nWiley\nWinford\nWyatt\nZachary\nAdam\nBoyd\nBradley\nChristian\nCornell\nDannie\nDerwin\nDonnell\nDudley\nEddy\nElliott\nElton\nErnie\nGrover\nHayward\nHershel\nHuey\nJudson\nJustin\nKendall\nKermit\nLevi\nLovell\nMajor\nMonroe\nNed\nNicky\nNolan\nPrince\nRayford\nRiley\nRogers\nRudolph\nRyan\nSandy\nSean\nThaddeus\nTimmie\nTyler\nWally\nWilbur\nWilfred\nAlfonza\nAlphonse\nAron\nAuthor\nBarrett\nBert\nBillie\nBradford\nBuford\nCedrick\nCyrus\nDalton\nDarron\nDemetrius\nDrew\nElmer\nElston\nEmmanuel\nEmory\nFreddy\nGodfrey\nGrayling\nGregg\nHank\nHowell\nHunter\nJackson\nJason\nJeffry\nJoesph\nJunior\nKeenan\nKelley\nKenney\nKurt\nLesley\nLucious\nLyle\nMaynard\nMichal\nMitch\nMose\nMurry\nNapoleon\nNoel\nOdis\nQuintin\nRandle\nRhett\nRicardo\nRoddy\nSanford\nShedrick\nTimmothy\nVerlon\nWilmer\nWyman\nJames\nMichael\nDavid\nJohn\nWilliam\nRobert\nCharles\nKenneth\nTimothy\nMark\nRichard\nWillie\nThomas\nTerry\nGregory\nLarry\nDonald\nAnthony\nJohnny\nGary\nJerry\nJoseph\nSteven\nRonald\nJimmy\nRicky\nJeffrey\nGeorge\nRandy\nBobby\nBilly\nJeffery\nDennis\nTony\nPhillip\nDanny\nPaul\nEdward\nRonnie\nTommy\nJoe\nDaniel\nEddie\nRandall\nCarl\nStephen\nBarry\nKeith\nSteve\nRoger\nHenry\nChristopher\nDouglas\nStanley\nMicheal\nMike\nRickey\nWalter\nSamuel\nReginald\nCurtis\nFrank\nRaymond\nBruce\nRoy\nRodney\nTim\nDarryl\nEric\nHarold\nKevin\nBrian\nArthur\nMarvin\nAlan\nAlbert\nGerald\nCalvin\nJoel\nScott\nLee\nMelvin\nWayne\nJeff\nAlvin\nChris\nDarrell\nRalph\nClarence\nRussell\nGreg\nDonnie\nGlenn\nJerome\nRoderick\nCharlie\nAndrew\nDwight\nPerry\nPatrick\nHoward\nVictor\nDale\nFrederick\nJack\nRay\nAllen\nCraig\nJimmie\nDon\nLeon\nLeonard\nEarl\nJesse\nErnest\nCedric\nBenjamin\nHerbert\nPhilip\nEarnest\nKenny\nMarcus\nEugene\nFred\nJackie\nMitchell\nJoey\nVincent\nAlfred\nNathaniel\nJessie\nJon\nTimmy\nClifford\nKelvin\nDerrick\nHarry\nJonathan\nCecil\nDwayne\nLawrence\nKerry\nNorman\nJim\nJohnnie\nWesley\nBernard\nFloyd\nHerman\nAndre\nBryan\nMartin\nNathan\nVernon\nLorenzo\nRoosevelt\nSylvester\nWendell\nClyde\nFranklin\nFreddie\nJay\nMarty\nTheodore\nFredrick\nLeslie\nMickey\nBill\nLester\nMilton\nLloyd\nLonnie\nByron\nLeroy\nLewis\nLouis\nWarren\nFrankie\nMaurice\nAaron\nClaude\nEdwin\nTracy\nBenny\nClinton\nRex\nTommie\nTravis\nDan\nMatthew\nPeter\nSammy\nSidney\nAndy\nGene\nTroy\nBradley\nCarlton\nRobin\nHugh\nOtis\nCarlos\nClayton\nGordon\nSam\nStevie\nGarry\nGlen\nJulius\nMarshall\nOscar\nWallace\nBennie\nChester\nDewayne\nTyrone\nHorace\nArnold\nDarren\nDaryl\nGrady\nTom\nHarvey\nRufus\nStuart\nAlton\nBen\nKelly\nMarion\nWade\nAlex\nDonny\nKarl\nLynn\nMorris\nVirgil\nDexter\nLeo\nMack\nMax\nTed\nTodd\nAubrey\nClay\nEdgar\nLamar\nPercy\nSherman\nWillard\nCleveland\nDean\nGuy\nKen\nMalcolm\nNeal\nRandal\nRoyce\nAlexander\nAlonzo\nArchie\nChuck\nDerek\nEllis\nIra\nKent\nLuther\nPreston\nRocky\nTeddy\nVan\nBob\nDave\nElbert\nIsaac\nLance\nMyron\nUnknown\nAntonio\nBrett\nClifton\nFelix\nHomer\nKim\nTerrell\nGilbert\nKyle\nNicky\nTerrence\nAllan\nAlphonso\nBrad\nDarrel\nDewey\nDuane\nErvin\nHubert\nJamie\nMarlon\nNelson\nToney\nBarney\nBradford\nBrent\nBryant\nCleophus\nDana\nGerry\nJuan\nMorgan\nRoland\nScotty\nWilbur\nWinston\nAbraham\nCarey\nCornelius\nDoug\nElvis\nEmmett\nEverett\nGregg\nIvan\nKennedy\nMarlin\nOliver\nRandell\nRayford\nRickie\nSammie\nTerence\nFreddy\nHollis\nJody\nLionel\nMarc\nPat\nRonny\nSanford\nWiley\nWill\nAngelo\nBroderick\nClark\nDoyle\nEmanuel\nHank\nIsiah\nJacky\nJason\nJasper\nJulian\nKirk\nLevi\nLorenza\nLowell\nNeil\nReggie\nRodger\nRusty\nWilbert\nWinford\nWinfred\nWoodrow\nAl\nAmos\nDarnell\nElton\nErwin\nIrvin\nIvory\nKennith\nLane\nLemuel\nMiles\nQuintin\nRandolph\nRick\nRobbie\nRon\nShelby\nStan\nStewart\nVince\nWilfred\nAdrian\nBart\nBert\nBillie\nClint\nConnie\nDarron\nEdmund\nGarland\nHosea\nHoyt\nJacob\nJustin\nLindsey\nMatt\nMitch\nMurray\nNorris\nOrlando\nQuinton\nSandy\nScottie\nShane\nSpencer\nWillis\nAdam\nAndra\nBobbie\nBoyd\nBret\nBuddy\nCary\nDelbert\nDonnell\nElijah\nElliott\nElmer\nEzell\nFrancis\nGeneral\nHayward\nJake\nJarvis\nJeremiah\nJunior\nKendall\nLeland\nNapoleon\nNick\nOcie\nOwen\nRaynard\nRobby\nRodrick\nRory\nRoss\nRudolph\nShannon\nSonny\nTaylor\nTrent\nWaymon\nWilliams\nYancy\nZachary\nAdolphus\nAlonza\nAndrea\nCameron\nDallas\nDamon\nDanial\nDerrell\nDerwin\nDirk\nEarly\nElston\nEverette\nGaylon\nGrant\nGrover\nGus\nHal\nHaywood\nHuey\nJeffry\nJoesph\nJosh\nKirby\nLabarron\nLenny\nLyndon\nManuel\nMelton\nMichel\nMoses\nNoah\nOllie\nPete\nPhil\nPierre\nRichie\nRuben\nStacey\nTerrance\nThaddeus\nTheron\nTy\nVance\nWilburn\nAnderson\nAntonia\nAvery\nBuford\nClement\nCleo\nCourtney\nDalton\nDarrick\nDarwin\nDavis\nDickey\nDrew\nDudley\nDuncan\nEd\nElvin\nErrol\nEzekiel\nFerdinand\nForrest\nFranky\nHarlan\nHarrison\nHerbie\nHouston\nJame\nJefferson\nJerald\nJerrell\nJonathon\nJose\nLen\nLenard\nLonzo\nLouie\nLucious\nLuke\nLyle\nMalcom\nMario\nMason\nMitchel\nMonte\nNicholas\nNickey\nNoel\nRamon\nRance\nRayburn\nReuben\nRhett\nRiley\nRod\nShawn\nSheldon\nStacy\nThurman\nTimmie\nUlysses\nWilson\nWindell\nWyman\nJames\nMichael\nJohn\nDavid\nRobert\nWilliam\nCharles\nKenneth\nMark\nTimothy\nRichard\nGregory\nTerry\nThomas\nWillie\nAnthony\nJerry\nJeffrey\nLarry\nDonald\nGary\nJohnny\nJeffery\nJoseph\nRicky\nJimmy\nBilly\nSteven\nGeorge\nRonald\nDanny\nChristopher\nPaul\nPhillip\nRandy\nTony\nBobby\nEdward\nEddie\nDennis\nStephen\nBarry\nRoger\nTommy\nKeith\nRonnie\nDarryl\nHenry\nJoe\nReginald\nCarl\nSteve\nDouglas\nDaniel\nStanley\nCurtis\nRickey\nRandall\nSamuel\nMike\nMicheal\nWalter\nAlan\nFrank\nKevin\nEric\nScott\nJeff\nBrian\nBruce\nHarold\nRoy\nAndrew\nArthur\nGerald\nRussell\nRodney\nTim\nCalvin\nFrederick\nMelvin\nRaymond\nVictor\nAlbert\nWayne\nRoderick\nGlenn\nMarvin\nChris\nClarence\nPatrick\nAlvin\nAllen\nGreg\nJack\nLee\nDarrell\nRay\nJerome\nHoward\nDale\nDwayne\nJoel\nJimmie\nMitchell\nPerry\nCharlie\nJon\nRalph\nBenjamin\nCraig\nEugene\nBryan\nJackie\nDwight\nDon\nWendell\nFred\nJesse\nMatthew\nDonnie\nMarcus\nCedric\nEarl\nAlfred\nFreddie\nJoey\nKelvin\nLonnie\nClifford\nErnest\nLorenzo\nJim\nLawrence\nCecil\nNorman\nTimmy\nJessie\nJohnnie\nDerrick\nKerry\nLewis\nMarty\nSammy\nTodd\nByron\nJonathan\nNathaniel\nSylvester\nVincent\nMilton\nFredrick\nMaurice\nPhilip\nKenny\nLeon\nBernard\nWesley\nLeroy\nLester\nMickey\nLeonard\nFranklin\nMartin\nRex\nWarren\nGlen\nHerbert\nRobin\nClyde\nNathan\nDewayne\nEarnest\nPeter\nLeslie\nAaron\nBenny\nBill\nBradley\nTroy\nFloyd\nHerman\nRoosevelt\nHarry\nJay\nHorace\nSidney\nWallace\nEdwin\nFrankie\nTracy\nAlonzo\nAndre\nDaryl\nKen\nMorris\nSam\nTommie\nTyrone\nClifton\nGarry\nLouis\nVernon\nOscar\nTom\nChester\nClaude\nClinton\nDan\nHugh\nOtis\nTravis\nKarl\nOrlando\nWade\nAlton\nDexter\nBennie\nBrent\nGrady\nAndy\nLloyd\nClayton\nGene\nIra\nMarion\nStuart\nAlexander\nGordon\nLuther\nTeddy\nTheodore\nBen\nCarlos\nChuck\nGuy\nMarshall\nTed\nKim\nMack\nWilbert\nAlex\nDave\nMalcolm\nMarc\nTerrence\nVan\nAmos\nAntonio\nBrett\nJulius\nKelly\nKirk\nLynn\nRobbie\nRufus\nWinston\nAdam\nCarlton\nDean\nEverett\nHubert\nJamie\nMax\nRandal\nRandolph\nCornelius\nDewey\nFelix\nForrest\nHarvey\nMarlon\nRoland\nScotty\nSherman\nStevie\nBrad\nElijah\nErvin\nHomer\nKennith\nLamar\nLorenza\nRonny\nRusty\nShawn\nWoodrow\nArchie\nDarren\nDerek\nDoyle\nEdgar\nElbert\nEmmett\nIsaac\nLeo\nMyron\nPercy\nWillard\nAl\nAlphonso\nBart\nCarey\nDana\nDonny\nDoug\nDuane\nGeoffrey\nGilbert\nJody\nKent\nNelson\nSammie\nToney\nZachary\nAdrian\nAubrey\nCary\nClark\nCleveland\nGarland\nJason\nKyle\nLance\nPhil\nRick\nRoyce\nTerrell\nVirgil\nWill\nWilson\nWinfred\nAngelo\nClay\nCliff\nClint\nGrant\nNapoleon\nPreston\nRodger\nFletcher\nMarlin\nNeal\nNeil\nRickie\nShannon\nTerence\nThurman\nWilbur\nWillis\nAllan\nBob\nBryant\nEfrem\nFreddy\nGrover\nHal\nHouston\nJustin\nLouie\nNick\nNorris\nPat\nQuinton\nRayford\nStacey\nTerrance\nUlysses\nUnknown\nAlonza\nBarney\nBroderick\nDarrel\nDarron\nEdmond\nElmer\nErwin\nGerry\nGregg\nIvan\nJulian\nKennedy\nLowell\nMckinley\nMitch\nOliver\nRogers\nSandy\nSanford\nSolomon\nStephan\nTaylor\nWilburn\nWiley\nAbraham\nAlfonso\nArnold\nBert\nBuddy\nCleophus\nDamon\nDonnell\nEd\nElliott\nEllis\nFernando\nLoyd\nLyle\nMurray\nNolan\nOllie\nRamon\nRandell\nReuben\nRocky\nRudolph\nSonny\nSpencer\nWindell\nAustin\nCedrick\nCleve\nDaron\nDenny\nDudley\nEddy\nElvis\nFrancis\nHuey\nJerald\nJeremiah\nJuan\nLemuel\nOwen\nQuintin\nRon\nRoss\nStewart\nTrent\nWilmer\nAlexis\nAlfonzo\nAnderson\nBennett\nBradford\nCasey\nChip\nConnie\nDarius\nDwain\nElton\nEmory\nErnie\nGodfrey\nHollis\nIvory\nJacob\nJarvis\nJasper\nJeffry\nJose\nKermit\nLeland\nLevon\nLindsey\nLovell\nLyndon\nManuel\nMonroe\nMonty\nNicky\nRuben\nSheldon\nSterling\nToby\nTod\nVance\nWilfred\nWinford\nAuther\nAvery\nBenjie\nBerry\nBrooks\nButch\nChauncey\nConrad\nDallas\nDarrick\nDemetrius\nEarly\nEldridge\nEmmanuel\nEmmitt\nEzekiel\nHank\nHarlan\nHayward\nHenderson\nHiram\nHoyt\nIrvin\nIsaiah\nJacky\nJed\nJefferson\nJess\nJonathon\nJudson\nKendall\nLinda\nLionel\nLucius\nMarkus\nMary\nMatt\nMicah\nMoses\nNicholas\nNickey\nOcie\nOlen\nParnell\nPete\nPierre\nReginal\nRuss\nSebastian\nSilas\nSimon\nStan\nStanford\nTheodis\nTracey\nVince\nYancey\nYul\nZane\nJames\nMichael\nJohn\nDavid\nWilliam\nRobert\nCharles\nMark\nKenneth\nTimothy\nGregory\nTerry\nThomas\nJeffrey\nRichard\nWillie\nAnthony\nDonald\nJoseph\nGary\nLarry\nJeffery\nJerry\nSteven\nRonald\nJimmy\nBobby\nJohnny\nTony\nRicky\nBarry\nChristopher\nPhillip\nRandy\nBilly\nGeorge\nPaul\nDanny\nRoger\nScott\nEdward\nStephen\nTommy\nEric\nDarryl\nDouglas\nKeith\nEddie\nReginald\nStanley\nCurtis\nJoe\nCarl\nRandall\nDennis\nSteve\nSamuel\nDaniel\nWalter\nKevin\nBrian\nHenry\nRonnie\nJeff\nBruce\nMike\nMicheal\nRaymond\nFrank\nRoy\nRodney\nArthur\nGerald\nGlenn\nMelvin\nVincent\nHarold\nPatrick\nRickey\nAlan\nCalvin\nRussell\nJerome\nWayne\nJoel\nAlbert\nRoderick\nTim\nClarence\nVictor\nGreg\nLee\nRay\nTracy\nJonathan\nFrederick\nAndrew\nCharlie\nMarvin\nDarrell\nAllen\nChris\nTodd\nCedric\nJoey\nLeon\nHoward\nAlvin\nEugene\nLawrence\nMarcus\nRalph\nBenjamin\nBryan\nJack\nMartin\nByron\nNorman\nDwayne\nFred\nDonnie\nJessie\nJohnnie\nDwight\nGlen\nPhilip\nTroy\nWendell\nFranklin\nJay\nKelvin\nClifford\nDon\nErnest\nKerry\nAlfred\nCraig\nMaurice\nMitchell\nWarren\nAaron\nDale\nLeslie\nLeonard\nNathaniel\nFredrick\nKenny\nMilton\nDerrick\nJackie\nJesse\nMarty\nMorris\nEarnest\nJim\nJimmie\nJon\nEarl\nPerry\nRoosevelt\nHarry\nDaryl\nEdwin\nLewis\nHerbert\nHerman\nKarl\nLouis\nMatthew\nSidney\nTimmy\nPeter\nLorenzo\nTommie\nBernard\nBill\nFreddie\nRex\nDewayne\nFloyd\nLloyd\nNathan\nTyrone\nWesley\nAlonzo\nCarlton\nCecil\nFrankie\nLester\nSammy\nLance\nTravis\nLonnie\nMickey\nAndy\nDan\nKen\nWade\nBennie\nWallace\nAdam\nAndre\nBen\nBenny\nBradley\nLeroy\nOtis\nArnold\nClyde\nStuart\nGarry\nRobbie\nRobin\nSylvester\nVernon\nAntonio\nDexter\nHorace\nJason\nKelly\nMack\nMarion\nChester\nHarvey\nIsaac\nKim\nBrett\nDerek\nGuy\nOrlando\nStevie\nTheodore\nCarlos\nClaude\nLamar\nTed\nTom\nDana\nGene\nHugh\nJamie\nKirk\nClay\nClifton\nClinton\nEdgar\nMarshall\nOscar\nPercy\nSam\nSandy\nAlton\nAubrey\nDonny\nElbert\nHomer\nKent\nKyle\nRoland\nRusty\nShannon\nToney\nBrad\nDarren\nGrady\nLynn\nRick\nTerrell\nAlphonso\nDoyle\nForrest\nGordon\nRandal\nRufus\nVan\nCary\nClayton\nEllis\nGilbert\nMyron\nPreston\nAlexander\nBrent\nDewey\nEmmett\nOliver\nSammie\nVirgil\nWilbert\nAngelo\nCarey\nClark\nCleveland\nDoug\nErvin\nScotty\nTerence\nThaddeus\nVince\nAlex\nArchie\nCornelius\nFreddy\nJulian\nLorenza\nMalcolm\nTeddy\nWillard\nWillis\nWoodrow\nAdrian\nChuck\nDemetrius\nDuane\nIra\nJulius\nMarlon\nSherman\nWinfred\nWinston\nBob\nDarrel\nGeoffrey\nJody\nLuther\nMarc\nMax\nNeal\nRandolph\nShawn\nBart\nCasey\nDean\nElton\nJefferson\nLoyd\nNorris\nRodrick\nRonny\nSpencer\nStewart\nTerrance\nEd\nEmanuel\nFelix\nGerry\nGregg\nJerald\nJuan\nKendall\nMoses\nNapoleon\nNicholas\nPhil\nReggie\nRon\nRory\nWiley\nWilson\nZachary\nAllan\nBlake\nBobbie\nBooker\nBuddy\nDave\nElijah\nElvis\nIrvin\nJasper\nJeffry\nLeo\nLindsey\nLowell\nMicah\nMiles\nNelson\nRandell\nRodger\nRoyce\nStacey\nStephon\nSterling\nTerrence\nAbraham\nAl\nAmos\nBarney\nBoyd\nBradford\nBryant\nClint\nDarwin\nDwain\nEverett\nHal\nHank\nHubert\nIvory\nJarvis\nMatt\nOcie\nOllie\nQuintin\nRobby\nRocky\nRudolph\nRyan\nSanford\nStan\nWilbur\nBert\nBuford\nCarter\nConrad\nDarrin\nEddy\nElvin\nErick\nFrancis\nGrover\nHarrison\nHuey\nIsiah\nIssac\nJacob\nKennedy\nKenney\nLeland\nMitch\nNed\nNeil\nPete\nQuinton\nRod\nRoss\nRuben\nSilas\nSonny\nThurman\nTitus\nUnknown\nWilfred\nWilmer\nAlfonso\nAlonza\nAntonia\nBennett\nCharley\nCliff\nDarrick\nDarry\nDerick\nElmer\nGerard\nGrant\nHarlan\nHouston\nIsaiah\nIvan\nJacky\nJeremiah\nJunior\nKimberly\nLesley\nLouie\nLovell\nLuke\nMajor\nMose\nOwen\nRayburn\nSebastian\nStephan\nTalmadge\nToby\nUlysses\nVinson\nWarner\nXavier\nAdolphus\nAnderson\nAndrea\nBarron\nBentley\nBoris\nCarson\nChip\nCornell\nCyrus\nDallas\nDannie\nDavis\nDion\nDonnell\nEfrem\nElliott\nErnie\nEverette\nFletcher\nFoster\nHayward\nHollis\nHosea\nHoyt\nJake\nJame\nJohnathan\nJonathon\nJustin\nKennith\nKing\nLyle\nManuel\nMario\nMaury\nMikel\nMitchel\nMonroe\nMonte\nMurray\nMurry\nNicky\nNoel\nOdell\nPat\nPrince\nRayford\nRicardo\nRichmond\nRiley\nRuss\nScottie\nShaun\nStacy\nTheodis\nTracey\nTrent\nWinford\nWoody\nJames\nMichael\nJohn\nDavid\nRobert\nWilliam\nCharles\nKenneth\nTimothy\nMark\nGregory\nAnthony\nRichard\nThomas\nJeffrey\nTerry\nJoseph\nWillie\nJeffery\nDonald\nGary\nLarry\nJerry\nSteven\nRonald\nJohnny\nBobby\nChristopher\nJimmy\nPaul\nRicky\nGeorge\nTony\nBarry\nBilly\nRandy\nPhillip\nDanny\nDarryl\nEdward\nScott\nStephen\nKevin\nTommy\nKeith\nDennis\nJoe\nDaniel\nDouglas\nBrian\nRoger\nRandall\nStanley\nEric\nCarl\nCurtis\nPatrick\nRonnie\nJeff\nReginald\nSamuel\nWalter\nHenry\nMicheal\nSteve\nRickey\nRodney\nBruce\nMarvin\nHarold\nArthur\nEddie\nAndrew\nGerald\nFrederick\nMelvin\nAlan\nVincent\nFrank\nRoy\nRaymond\nRussell\nGreg\nGlenn\nAllen\nCedric\nMike\nVictor\nRoderick\nJonathan\nTodd\nWayne\nCalvin\nRalph\nHoward\nChris\nAlbert\nDerrick\nTim\nJerome\nJoel\nBenjamin\nAlvin\nDarrell\nBryan\nCraig\nDon\nLee\nClarence\nDale\nJessie\nTroy\nJoey\nJon\nDonnie\nKerry\nMaurice\nAlfred\nKelvin\nRay\nCharlie\nJack\nJesse\nMarcus\nDwight\nTracy\nLawrence\nLeonard\nMitchell\nTimmy\nEarl\nErnest\nFranklin\nFred\nJimmie\nLeslie\nByron\nJackie\nPerry\nWesley\nBernard\nWendell\nClifford\nNathan\nPhilip\nKenny\nMatthew\nNorman\nBradley\nEugene\nFloyd\nHerman\nMarty\nTravis\nMartin\nLonnie\nNathaniel\nPeter\nHarry\nJohnnie\nLeon\nLouis\nLeroy\nWarren\nCecil\nEdwin\nFreddie\nFredrick\nLester\nStevie\nHerbert\nJay\nSidney\nAndre\nDaryl\nAaron\nTheodore\nBill\nHarvey\nSammy\nTyrone\nBennie\nDerek\nDewayne\nLorenzo\nMilton\nMorris\nWade\nAntonio\nCarlton\nClaude\nDwayne\nKen\nRex\nVernon\nAndy\nClinton\nEarnest\nFrankie\nGlen\nHugh\nJim\nKarl\nLewis\nBen\nBrett\nClyde\nGene\nLloyd\nRoosevelt\nAlex\nOrlando\nRobbie\nSam\nSylvester\nBenny\nTommie\nDexter\nGarry\nJason\nMickey\nOscar\nOtis\nRufus\nCarlos\nKent\nMarlon\nDan\nMack\nMarion\nAngelo\nBrent\nElbert\nHorace\nKim\nScotty\nShawn\nWinston\nClayton\nDarren\nKyle\nMalcolm\nRobin\nTom\nWallace\nAubrey\nGordon\nIsaac\nJulius\nKelly\nMyron\nTeddy\nAdam\nClifton\nJamie\nRandal\nTed\nKirk\nLynn\nRoland\nVan\nChester\nChuck\nGuy\nHubert\nLance\nMarc\nOliver\nPreston\nRoss\nStuart\nAlonzo\nClay\nErvin\nMarshall\nSammie\nSherman\nStoney\nTerence\nBrad\nDemetrius\nGilbert\nQuinton\nAlexander\nDave\nDean\nForrest\nHomer\nIvan\nLamar\nRickie\nSandy\nToney\nVince\nArnold\nCarey\nJasper\nKennedy\nLeo\nLuther\nRonny\nShannon\nStacey\nStewart\nTerrance\nAl\nAmos\nBart\nEllis\nEverett\nFelix\nGabriel\nGrady\nGregg\nKendall\nNeal\nNelson\nPercy\nRodger\nWinfred\nArchie\nCornelius\nDonny\nEdgar\nElijah\nJunior\nKennith\nLowell\nMurray\nNeil\nVirgil\nBlake\nCornell\nDana\nDoyle\nEmmett\nFreddy\nGeoffrey\nIra\nPhil\nQuintin\nRick\nRon\nRoyce\nTerrell\nTerrence\nBob\nBryant\nDoug\nGrant\nHarrison\nHouston\nManuel\nRandell\nRayford\nVance\nAllan\nAlphonso\nAlton\nAvery\nBroderick\nDuane\nElmer\nFrancis\nHollis\nJerald\nJody\nJustin\nMax\nMoses\nNorris\nOwen\nRandolph\nStacy\nStephon\nToby\nWillard\nAdrian\nAndrea\nBarney\nBenjie\nBennett\nBradford\nBuddy\nCary\nCedrick\nClint\nDarnell\nDarry\nDavis\nDerick\nDrew\nEdmond\nEfrem\nJacob\nJoesph\nJuan\nMathew\nRaynard\nRobby\nScottie\nSpencer\nTy\nWilbert\nWillis\nAlfonso\nBooker\nDarin\nDarrel\nDonnell\nEarly\nEmanuel\nGerry\nHoyt\nJohnathan\nKurt\nLadon\nLeland\nLemuel\nLorenza\nLouie\nLoyd\nNapoleon\nNicholas\nNick\nPat\nReggie\nRory\nRuben\nSean\nTaylor\nThaddeus\nWiley\nAbraham\nAlfonza\nAlonza\nAnderson\nAshley\nAugustus\nBert\nBrady\nCleveland\nConnie\nConrad\nDannie\nDarius\nDarron\nDarwin\nDewey\nElton\nEmmitt\nErskine\nFernando\nGarland\nHank\nHarlan\nIsiah\nJackson\nJacques\nJake\nJefferson\nLionel\nMajor\nMarlin\nMary\nNoah\nNoel\nOcie\nOlen\nPernell\nRiley\nRodrick\nShane\nStan\nStephan\nTalmadge\nTrent\nUlysses\nWill\nAdolphus\nAustin\nBerry\nBobbie\nBrandon\nBritt\nBryon\nCarter\nClark\nCleve\nCliff\nCoy\nDalton\nDarrin\nDwain\nEldred\nEmmanuel\nErnie\nEzra\nGreggory\nHal\nHaywood\nHosea\nJeffry\nKenton\nLacy\nLennie\nMac\nMatt\nMaxwell\nMilford\nMitchel\nMonroe\nMorgan\nNewell\nObie\nOllie\nPatricia\nPete\nReuben\nRhett\nRyan\nScot\nShelton\nSterling\nThad\nTheron\nVaughn\nWes\nWilbur\nWoodrow\nXavier\nJames\nJohn\nMichael\nDavid\nRobert\nWilliam\nCharles\nKenneth\nTimothy\nMark\nGregory\nRichard\nJeffrey\nThomas\nAnthony\nTerry\nJoseph\nWillie\nSteven\nJeffery\nDonald\nJerry\nGary\nRonald\nLarry\nChristopher\nPaul\nBobby\nJohnny\nGeorge\nJimmy\nBilly\nBarry\nPhillip\nKevin\nTony\nRicky\nRandy\nEdward\nDanny\nDaniel\nScott\nPatrick\nStephen\nDarryl\nEric\nKeith\nRodney\nDennis\nDouglas\nRoger\nTommy\nEddie\nBrian\nCurtis\nRandall\nStanley\nRonnie\nReginald\nSteve\nSamuel\nCarl\nFrank\nJeff\nJoe\nAndrew\nMicheal\nWalter\nHenry\nAlan\nVincent\nGerald\nRussell\nHarold\nLee\nMarvin\nBruce\nRaymond\nRoderick\nArthur\nAllen\nRoy\nDarrell\nMike\nTracy\nFrederick\nJonathan\nVictor\nJoel\nRickey\nCalvin\nChris\nMelvin\nTim\nDerrick\nJerome\nCedric\nTodd\nBryan\nMarcus\nGlenn\nClarence\nCharlie\nKelvin\nRalph\nAlbert\nGreg\nMatthew\nTroy\nWayne\nBenjamin\nPhilip\nJessie\nByron\nErnest\nHoward\nJoey\nJack\nKerry\nMaurice\nDonnie\nJimmie\nAlfred\nLawrence\nPerry\nFred\nJay\nRay\nAlvin\nDale\nLeonard\nTyrone\nClifford\nFranklin\nLeon\nMilton\nMitchell\nCraig\nJackie\nLeroy\nLeslie\nWendell\nEarl\nEugene\nKenny\nVernon\nDon\nJesse\nNorman\nDewayne\nMartin\nTimmy\nDwight\nLonnie\nFreddie\nMarty\nKarl\nWesley\nBradley\nDarren\nFredrick\nHarry\nHerman\nJason\nJon\nNathaniel\nSammy\nTravis\nDwayne\nJohnnie\nBernard\nDaryl\nJim\nLewis\nMack\nAntonio\nCarlos\nBill\nCecil\nMickey\nOtis\nWarren\nAndre\nClyde\nLorenzo\nAndy\nFloyd\nAaron\nAlex\nHerbert\nNathan\nRex\nAdam\nLester\nMorris\nRobin\nWade\nFrankie\nGrady\nLyndon\nMarshall\nPeter\nSylvester\nTerence\nCarlton\nEarnest\nEdwin\nJamie\nRoosevelt\nBen\nKen\nTerrence\nBrent\nBrett\nClinton\nDean\nGordon\nKim\nSidney\nTerrell\nTheodore\nTom\nBennie\nClifton\nDan\nGene\nKyle\nLouis\nStevie\nTerrance\nAlonzo\nGlen\nStuart\nTed\nChester\nHubert\nKent\nLance\nLloyd\nMyron\nShannon\nWallace\nBenny\nClaude\nDoug\nHorace\nIsaac\nMalcolm\nOrlando\nDexter\nElbert\nHugh\nNeal\nHarvey\nShawn\nDerek\nGarry\nKelly\nLamar\nRoland\nStewart\nTommie\nAlton\nCleveland\nDemetrius\nJulius\nMarion\nRobbie\nRufus\nSammie\nWinston\nEdgar\nKennedy\nLynn\nNeil\nRoss\nSam\nScotty\nTeddy\nAdrian\nArchie\nChuck\nClayton\nDoyle\nFitzgerald\nGuy\nMarc\nWillis\nAllan\nArnold\nBart\nBrad\nBryant\nCarey\nDuane\nLeland\nNelson\nOscar\nRandolph\nStacey\nDana\nDarrel\nLuther\nMarlon\nOliver\nStacy\nWillard\nWinfred\nAubrey\nClay\nCornelius\nEmmett\nJeffry\nJulian\nLeo\nMax\nQuinton\nRick\nSpencer\nVan\nWill\nAlexander\nCary\nClint\nDave\nDerick\nDonny\nErvin\nEverett\nGilbert\nRandal\nRonny\nSean\nAlphonso\nDarrin\nDewey\nEllis\nFrancis\nGeoffrey\nIvan\nJerald\nJohnathan\nJuan\nKendall\nPercy\nPreston\nRickie\nSherman\nThaddeus\nAlfonso\nAmos\nDarwin\nFreddy\nGrant\nGregg\nHomer\nIra\nJunior\nKennith\nKirk\nRodrick\nRon\nRoyce\nSandy\nToby\nVince\nVirgil\nAngelo\nBlake\nBradford\nBuddy\nClark\nEd\nGerry\nJody\nManuel\nMoses\nQuintin\nStan\nTrent\nWiley\nAvery\nBob\nDamon\nDarron\nEmanuel\nKurt\nLuke\nMicah\nMose\nRobby\nWilfred\nAlfonza\nBillie\nBret\nBroderick\nBuford\nChad\nDarin\nDavis\nDonnell\nDudley\nEdmond\nFelix\nFletcher\nGarland\nGrover\nIssac\nJoshua\nJudson\nLowell\nNorris\nOcie\nPhil\nRayford\nRoscoe\nRyan\nShane\nToney\nTracey\nWilbur\nWilson\nAl\nAnderson\nAndra\nBert\nBobbie\nBrandon\nCameron\nCassius\nCliff\nConnie\nDallas\nDarnell\nDerrell\nDestry\nDwain\nElijah\nEmory\nEvan\nForrest\nGabriel\nHal\nHank\nHollis\nJacob\nJasper\nJeremiah\nJonathon\nKermit\nLevi\nLouie\nMajor\nMary\nMatt\nMaury\nMiles\nMonte\nNolan\nPernell\nPete\nRandell\nReggie\nRhett\nRichie\nRodger\nSanford\nScottie\nTimmie\nVance\nWilbert\nWilburn\nWoodrow\nAlonza\nAndrea\nAustin\nBooker\nBoyd\nCarroll\nDannie\nDarry\nDaryle\nFabian\nGreggory\nHarlan\nHosea\nIsaiah\nIsiah\nJackson\nJaimie\nJamey\nJarvis\nJefferson\nJustin\nKelley\nLedell\nLorenza\nMcarthur\nMckinley\nMelton\nMurray\nNapoleon\nOwen\nReginal\nReuben\nRubin\nRusty\nStephan\nTimmothy\nTruman\nWinford\nZachary\nJames\nMichael\nJohn\nDavid\nRobert\nWilliam\nCharles\nTimothy\nKenneth\nJeffrey\nMark\nGregory\nRichard\nAnthony\nThomas\nChristopher\nRodney\nTerry\nJoseph\nSteven\nWillie\nJerry\nJeffery\nDonald\nRonald\nLarry\nPaul\nBobby\nJohnny\nGary\nKevin\nJimmy\nPhillip\nBilly\nDarryl\nEdward\nRandy\nTony\nGeorge\nStephen\nBarry\nRicky\nBrian\nScott\nEric\nDanny\nKeith\nDaniel\nPatrick\nDouglas\nTommy\nDennis\nRoger\nStanley\nEddie\nJoe\nSamuel\nWalter\nCurtis\nRaymond\nReginald\nHenry\nSteve\nMarvin\nRandall\nAndrew\nVincent\nBruce\nRonnie\nDerrick\nMicheal\nCarl\nDarren\nChris\nFrank\nRussell\nArthur\nJonathan\nRoy\nGerald\nCalvin\nCedric\nBryan\nDarrell\nRoderick\nHarold\nTodd\nFrederick\nMelvin\nJeff\nTracy\nAlan\nVictor\nCraig\nGlenn\nCharlie\nAllen\nClarence\nRickey\nKerry\nAlbert\nBenjamin\nMike\nPhilip\nJerome\nLee\nMarcus\nJoel\nKelvin\nMatthew\nLawrence\nWayne\nByron\nTroy\nGreg\nHoward\nErnest\nTim\nJon\nJason\nJessie\nRay\nDarrin\nMaurice\nMitchell\nTravis\nNorman\nDwight\nEugene\nLeon\nPerry\nAlfred\nFrankie\nJay\nRalph\nDaryl\nLeonard\nWesley\nJoey\nWarren\nFred\nNathaniel\nDonnie\nJack\nDon\nCecil\nDale\nFredrick\nAlvin\nJesse\nBradley\nDwayne\nJohnnie\nClifford\nMartin\nEarl\nEarnest\nFranklin\nHarry\nJackie\nJimmie\nAaron\nBrent\nAntonio\nBrett\nClyde\nMalcolm\nAndre\nAndy\nHerman\nLonnie\nMarty\nWade\nClinton\nEdwin\nPeter\nDarron\nDerek\nHerbert\nKarl\nLeslie\nJim\nKenny\nCarlos\nDewayne\nFreddie\nLewis\nTyrone\nWendell\nLester\nMarshall\nMickey\nStevie\nVernon\nBernard\nDarin\nFloyd\nKim\nLeroy\nAlex\nCarlton\nKelly\nScotty\nShawn\nSylvester\nClaude\nDan\nGlen\nTimmy\nTommie\nGrady\nMarion\nMilton\nNathan\nShannon\nStuart\nBennie\nDemetrius\nTerence\nTerrence\nCary\nJamie\nKyle\nMack\nSammy\nSean\nGordon\nHorace\nOscar\nRobbie\nTheodore\nClifton\nLloyd\nLouis\nMorris\nAdam\nAlonzo\nArchie\nDexter\nLorenzo\nRex\nRobin\nRoosevelt\nSherman\nTerrell\nTom\nAllan\nBart\nDarrel\nEdgar\nIsaac\nKent\nOtis\nSpencer\nWinston\nAlton\nArnold\nCornelius\nDana\nHugh\nLance\nNeal\nSidney\nBill\nGene\nHarvey\nSam\nShane\nTed\nBenny\nBrad\nChester\nClark\nKen\nLyndon\nStacy\nTerrance\nVirgil\nChuck\nClayton\nHubert\nJulius\nLamar\nStacey\nWallace\nAdrian\nAlphonso\nAshley\nBryant\nKirk\nLeo\nMyron\nNeil\nTeddy\nAubrey\nBen\nDewey\nDonny\nGeoffrey\nJerald\nLynn\nRandal\nRobby\nZachary\nDean\nElbert\nErik\nErvin\nGarry\nGerry\nOliver\nRon\nSammie\nSandy\nStan\nWilbert\nWillis\nWilson\nClint\nDoyle\nDuane\nEmmett\nEverett\nJody\nLouie\nMarlon\nMoses\nOrlando\nPhil\nPreston\nRandolph\nRodrick\nRonny\nRoss\nRyan\nToney\nWillard\nBob\nBradford\nCleveland\nDerick\nGilbert\nGuy\nJerrell\nJuan\nJulian\nKendall\nKennedy\nMarc\nNapoleon\nRusty\nScottie\nAlexander\nAvery\nCarey\nCasey\nClay\nDaren\nFreddy\nIvan\nJohnathan\nLorenza\nReuben\nRoland\nToby\nTracey\nVan\nAl\nAmos\nBarney\nBlake\nBuddy\nDaron\nDarrick\nDoug\nElmer\nFelix\nForrest\nGrant\nIra\nJefferson\nJudson\nKennith\nKurt\nLionel\nLuther\nNelson\nPercy\nRitchie\nRocky\nRodger\nRoyce\nRuben\nStewart\nStoney\nWill\nAngelo\nBarron\nBret\nBryon\nBuford\nChad\nDallas\nDave\nElijah\nElton\nHarrison\nJustin\nLeland\nLowell\nMajor\nManuel\nMorgan\nNicholas\nQuintin\nRandell\nRickie\nRod\nWilbur\nAlexis\nAlfonso\nBarton\nBillie\nBobbie\nCameron\nCarter\nCedrick\nChip\nCleophus\nDarwin\nDenny\nDonnell\nEd\nEddy\nEdmond\nEllis\nErskine\nHank\nHollis\nJacob\nJarvis\nJunior\nLoren\nLovell\nLoyd\nMarlin\nMatt\nMaury\nMax\nNed\nNicky\nNorris\nQuinton\nRick\nSilas\nSterling\nTimmie\nWilburn\nWiley\nWinfred\nAbraham\nAndra\nAndrea\nArtie\nAustin\nBert\nBurton\nColin\nColumbus\nConrad\nDamon\nDarion\nDarryle\nDonell\nDrew\nEarlie\nEmanuel\nErick\nEverette\nFelton\nGarland\nGrover\nHarlan\nHouston\nHoyt\nJackson\nJake\nJame\nJasper\nJeffry\nKalvin\nKeven\nKimberly\nKip\nLane\nMary\nMillard\nMonte\nMurray\nNoah\nOllie\nOttis\nPete\nPrince\nQuincy\nRayford\nRory\nRufus\nSanford\nThad\nThaddeus\nTrent\nUnknown\nVaughn\nWoodrow\nJames\nMichael\nJohn\nDavid\nWilliam\nRobert\nTimothy\nCharles\nKenneth\nChristopher\nJeffrey\nRichard\nMark\nAnthony\nThomas\nGregory\nSteven\nRodney\nTerry\nJoseph\nWillie\nJeffery\nJerry\nDonald\nPaul\nKevin\nRonald\nBrian\nLarry\nTony\nGary\nJohnny\nKeith\nJimmy\nStephen\nBobby\nEric\nBarry\nGeorge\nEdward\nBilly\nDaniel\nScott\nRandy\nDarryl\nPatrick\nPhillip\nDanny\nRoger\nDouglas\nRandall\nEddie\nReginald\nSamuel\nRonnie\nWalter\nCarl\nTommy\nHenry\nRicky\nJoe\nCurtis\nDerrick\nGerald\nJonathan\nAndrew\nChris\nRoderick\nRussell\nBryan\nFrank\nVincent\nBruce\nDennis\nStanley\nLee\nDarrell\nTracy\nArthur\nMarvin\nMicheal\nCedric\nSteve\nAllen\nRoy\nAlan\nRaymond\nCalvin\nDarren\nMatthew\nFrederick\nHarold\nKelvin\nJoel\nJason\nMelvin\nBenjamin\nClarence\nJeff\nRickey\nTodd\nJessie\nAlbert\nHoward\nKerry\nVictor\nWayne\nJerome\nGlenn\nNorman\nCraig\nMarcus\nWesley\nByron\nRalph\nJack\nErnest\nJon\nTim\nCharlie\nNathaniel\nPhilip\nTroy\nAlfred\nLawrence\nMitchell\nJohnnie\nTyrone\nLeslie\nLonnie\nMarty\nScottie\nJackie\nLeon\nMike\nTravis\nBradley\nFredrick\nLeonard\nAlvin\nAndre\nDwight\nGreg\nJimmie\nMaurice\nDaryl\nDonnie\nJoey\nEarl\nEugene\nAntonio\nBernard\nCarlos\nFranklin\nMilton\nCecil\nDale\nJesse\nKelly\nRay\nScotty\nClifford\nFreddie\nHerman\nKenny\nDarrin\nDon\nFred\nJim\nPerry\nPeter\nShawn\nWarren\nDewayne\nFloyd\nKarl\nRobin\nShannon\nAaron\nLorenzo\nSean\nDerek\nLewis\nStacy\nStevie\nTimmy\nAndy\nBennie\nEarnest\nHarry\nLouis\nRyan\nWendell\nClinton\nHerbert\nMartin\nNathan\nRex\nSylvester\nDexter\nEdwin\nJay\nLeroy\nSammy\nCarlton\nFrankie\nTerrance\nGene\nJamie\nOtis\nTerrence\nTommie\nVernon\nWallace\nDarron\nDwayne\nSidney\nBenny\nClyde\nGlen\nMarion\nMickey\nTerrell\nAdam\nBrent\nClifton\nTheodore\nBrad\nBrett\nChad\nGrady\nHubert\nLloyd\nMorris\nRoosevelt\nBill\nChester\nDarin\nHorace\nKyle\nOscar\nSam\nTerence\nToney\nBryant\nGordon\nHarvey\nLester\nMarshall\nMyron\nTeddy\nAlonzo\nClayton\nDemetrius\nGeoffrey\nKent\nOrlando\nRandal\nAlexander\nClaude\nDan\nDoyle\nKen\nMalcolm\nPreston\nSherman\nStacey\nTed\nChuck\nHugh\nJuan\nAlex\nAlton\nBrandon\nRodger\nShane\nWade\nAdrian\nArnold\nBen\nCary\nCornelius\nDarrel\nEverett\nJerald\nKirk\nLance\nMarc\nNapoleon\nRobbie\nRoland\nRufus\nAlphonso\nArchie\nAubrey\nCasey\nClark\nClay\nEllis\nFelix\nIvan\nJody\nKim\nLorenza\nLuther\nMarlon\nVirgil\nBart\nDean\nDuane\nGarry\nGregg\nIra\nJulius\nKendall\nLindsey\nMack\nNelson\nNicholas\nPercy\nQuintin\nTom\nTrent\nVan\nBob\nBradford\nForrest\nHeath\nHollis\nKennith\nLeo\nLynn\nManuel\nMax\nOliver\nRick\nRoss\nStewart\nStuart\nThaddeus\nWill\nAbraham\nBryon\nCleophus\nElbert\nElvis\nHomer\nIsaac\nJohnathan\nLamar\nNeal\nRobby\nSammie\nSandy\nTracey\nVince\nWilbur\nWillard\nWinfred\nWinston\nZachary\nAllan\nAmos\nBoyd\nCarey\nCleveland\nDaren\nDaron\nDerrell\nEdgar\nEdmond\nEmmett\nErik\nGuy\nHouston\nHoyt\nLowell\nLyndon\nNick\nNoel\nPhil\nQuinton\nRodrick\nRonny\nRusty\nTy\nWilbert\nWillis\nWilson\nBarron\nBlake\nCedrick\nDamon\nDana\nDewey\nElliott\nElmer\nFletcher\nFreddy\nGrant\nGreggory\nHal\nIvory\nJacky\nJake\nJulian\nJunior\nLeland\nLouie\nMurray\nRory\nRoyce\nShelby\nTaylor\nWilburn\nAngelo\nAshley\nChadwick\nChauncey\nClint\nDelbert\nDerick\nDonny\nEmory\nHarlan\nJeffry\nJeremiah\nJoshua\nLuke\nMicah\nQuentin\nRandolph\nRichie\nRocky\nRogers\nRon\nSpencer\nStoney\nToby\nWoodrow\nAl\nAlonza\nAustin\nAvery\nBerry\nColeman\nColin\nDannie\nDarell\nDarry\nDarwin\nDenny\nEmanuel\nGabriel\nGarland\nGavin\nGaylon\nGilbert\nHank\nIke\nIssac\nJarrod\nJeremy\nJustin\nKarlos\nKurt\nLevi\nMarlin\nMillard\nMonte\nMoses\nNeil\nNickey\nNorris\nOwen\nRayford\nRiley\nRuben\nSanford\nShelton\nSolomon\nWilfred\nWilmer\nXavier\nJames\nMichael\nJohn\nDavid\nWilliam\nRobert\nTimothy\nCharles\nChristopher\nMark\nKenneth\nAnthony\nRichard\nJeffrey\nGregory\nThomas\nJoseph\nSteven\nJeffery\nTerry\nRodney\nBrian\nWillie\nPaul\nDonald\nKevin\nJerry\nRonald\nJimmy\nStephen\nJohnny\nGary\nEric\nBobby\nGeorge\nTony\nPatrick\nKeith\nLarry\nEdward\nBilly\nPhillip\nRandy\nBarry\nScott\nDaniel\nDanny\nDouglas\nDarryl\nReginald\nDennis\nRoger\nRandall\nJoe\nRicky\nSamuel\nTommy\nAndrew\nEddie\nBryan\nDerrick\nMatthew\nCarl\nHenry\nGerald\nWalter\nStanley\nBruce\nCurtis\nFrederick\nJonathan\nDarrell\nSteve\nTracy\nMicheal\nTroy\nVincent\nJason\nRonnie\nFrank\nLee\nChris\nMarvin\nRoderick\nRaymond\nRoy\nRussell\nJoel\nArthur\nCalvin\nTodd\nHarold\nDarren\nCedric\nKelvin\nAllen\nMelvin\nAlan\nJerome\nAlbert\nBenjamin\nKerry\nVictor\nClarence\nCraig\nHoward\nMarcus\nLawrence\nSean\nJessie\nGlenn\nMike\nRalph\nJeff\nWayne\nByron\nFredrick\nJoey\nKelly\nPhilip\nRickey\nNathaniel\nTravis\nJesse\nLonnie\nAntonio\nErnest\nStacey\nScotty\nCharlie\nDaryl\nJon\nLeon\nBradley\nJimmie\nLeonard\nMitchell\nStacy\nAndre\nMarty\nNorman\nJackie\nLewis\nPerry\nAlvin\nDerek\nJay\nWarren\nDon\nGreg\nMaurice\nJack\nPeter\nTim\nDonnie\nDwayne\nDwight\nShannon\nWesley\nAlfred\nFranklin\nLeslie\nVernon\nClifford\nEugene\nMilton\nDarrin\nDexter\nJamie\nRyan\nBrett\nCarlos\nFred\nHerman\nJim\nJohnnie\nScottie\nTerrance\nTimmy\nRay\nShawn\nStevie\nWendell\nBernard\nLeroy\nLouis\nNathan\nShane\nBrent\nFreddie\nTracey\nTyrone\nAaron\nKenny\nMartin\nDemetrius\nEarl\nEdwin\nFloyd\nOtis\nSidney\nCecil\nDale\nOrlando\nLance\nLorenzo\nMorris\nTerrell\nFrankie\nHerbert\nKarl\nMarshall\nDewayne\nRoosevelt\nSam\nSammy\nWallace\nClinton\nEarnest\nGordon\nHarry\nMickey\nNeal\nPreston\nCarlton\nGlen\nGrady\nHorace\nKendall\nKim\nSylvester\nTeddy\nWinston\nAdam\nAlexander\nAlonzo\nAndy\nBennie\nBenny\nDean\nArnold\nChad\nGarry\nHarvey\nHeath\nJody\nLamar\nLester\nLloyd\nMack\nMalcolm\nMarc\nMarion\nRandal\nWade\nBrad\nCary\nDan\nDana\nDarron\nDewey\nGene\nJulius\nRex\nRobbie\nStuart\nTerrence\nTom\nAlex\nClayton\nIsaac\nKent\nRufus\nTheodore\nAllan\nAubrey\nBrandon\nBryant\nGeoffrey\nKen\nKyle\nNicholas\nTerence\nClyde\nCornelius\nDarin\nFelix\nKirk\nRoyce\nToney\nBart\nBill\nClifton\nDave\nEdgar\nHomer\nHouston\nQuinton\nReggie\nTrent\nAmos\nArchie\nCarey\nCasey\nChester\nClaude\nElijah\nEmmett\nEverett\nJarrod\nLuther\nMarlon\nOliver\nQuintin\nRobin\nSherman\nThaddeus\nVirgil\nZachary\nAdrian\nAngelo\nBobbie\nDamon\nJeremiah\nMyron\nNapoleon\nOscar\nSpencer\nTed\nToby\nTommie\nUlysses\nWilson\nAlphonso\nAlton\nAshley\nBlake\nBradford\nCedrick\nCourtney\nDaren\nDuane\nGilbert\nJefferson\nJohnathan\nJuan\nKurt\nLowell\nNelson\nStewart\nWillard\nWillis\nBob\nClark\nCleveland\nConrad\nCornell\nDaron\nDarrel\nDonny\nEmanuel\nFletcher\nGuy\nHugh\nIra\nJulian\nLeo\nLorenza\nMario\nOllie\nQuentin\nQuincy\nRandell\nRayford\nRickie\nRobby\nRoland\nRonny\nSanford\nWill\nAvery\nBen\nBret\nChadwick\nChuck\nClint\nDerick\nErvin\nFernando\nForrest\nFreeman\nGerry\nGraham\nGrover\nHubert\nIvan\nJacob\nJustin\nKennedy\nMaury\nMax\nMonty\nMorgan\nNeil\nNick\nNoel\nPercy\nReginal\nRodger\nRodrick\nSammie\nSeth\nVan\nVance\nVince\nWinford\nBarney\nClay\nCleophus\nDoyle\nEllis\nEmory\nErick\nErik\nFrancis\nFreddy\nGrant\nHuey\nJasper\nJerald\nLadon\nLevi\nMcarthur\nNicky\nNolan\nStoney\nTimmie\nTyler\nUnknown\nWilbert\nWiley\nWoodrow\nAlexis\nAustin\nBritt\nBroderick\nBrooks\nConnie\nDalton\nDarnell\nDarwin\nDerwin\nDevin\nDoug\nEdmond\nElbert\nElvis\nErrol\nEthan\nEvan\nFrederic\nGregg\nHarrison\nHollis\nHosea\nHunter\nIsiah\nJamey\nJared\nJarvis\nJayson\nJeffry\nJock\nKermit\nLeland\nLindsey\nLoyd\nLuke\nLynn\nMathew\nMatt\nMckinley\nMicah\nMurray\nNorris\nPat\nPete\nPhil\nPierre\nPrentice\nRandolph\nRick\nRiley\nRon\nRoss\nRudolph\nSandy\nShelton\nStanford\nTalmadge\nTerrel\nTrevor\nTruman\nTyron\nJames\nMichael\nJohn\nDavid\nRobert\nWilliam\nTimothy\nCharles\nChristopher\nMark\nKenneth\nJeffrey\nRichard\nThomas\nAnthony\nGregory\nSteven\nJoseph\nBrian\nJerry\nKevin\nDonald\nRodney\nTerry\nWillie\nLarry\nGary\nPaul\nRonald\nJeffery\nStephen\nEric\nPatrick\nTony\nJimmy\nBilly\nEdward\nGeorge\nBobby\nJohnny\nKeith\nPhillip\nDaniel\nScott\nRoger\nDouglas\nDanny\nReginald\nDerrick\nDennis\nJonathan\nDarrell\nMatthew\nRandall\nBarry\nSamuel\nRicky\nTommy\nWalter\nRandy\nJason\nJoe\nRonnie\nTracy\nAndrew\nStanley\nCarl\nDarryl\nGerald\nRussell\nBryan\nTodd\nRoderick\nEddie\nHenry\nLee\nDarren\nCurtis\nHarold\nBruce\nRaymond\nKelvin\nMicheal\nRoy\nChris\nJoel\nCedric\nFrederick\nCraig\nFrank\nMarvin\nCalvin\nBradley\nMarcus\nMelvin\nArthur\nAllen\nShannon\nShawn\nTroy\nClarence\nJack\nSean\nHoward\nAlan\nJoey\nAlbert\nKerry\nTravis\nTyrone\nJerome\nMartin\nNorman\nSteve\nPhilip\nDonnie\nJeff\nWayne\nDerek\nRickey\nTimmy\nBenjamin\nDaryl\nJon\nScotty\nVincent\nCharlie\nJackie\nLawrence\nNathan\nClifford\nFredrick\nGlenn\nByron\nCarlos\nJesse\nLonnie\nWesley\nAntonio\nErnest\nLeonard\nVictor\nKelly\nAlvin\nJessie\nMitchell\nRay\nStacy\nDarrin\nJimmie\nScottie\nEugene\nJay\nAndre\nCecil\nDexter\nFranklin\nLouis\nMarty\nMaurice\nRalph\nBrett\nEarnest\nShane\nAaron\nAlfred\nBernard\nFreddie\nJohnnie\nMike\nDwight\nLeon\nFred\nOtis\nPerry\nStacey\nDale\nDewayne\nJamie\nMilton\nSidney\nTim\nWarren\nRyan\nDemetrius\nLeslie\nTerrance\nClyde\nDwayne\nGrady\nMickey\nPeter\nEarl\nHerman\nNathaniel\nRoosevelt\nSammy\nChad\nClinton\nJody\nKenny\nGreg\nKyle\nCarlton\nDarron\nFloyd\nFrankie\nJim\nPreston\nVernon\nBart\nHerbert\nLewis\nLloyd\nMarshall\nMorris\nTerrence\nWendell\nAlexander\nBrent\nDon\nHarry\nHarvey\nLance\nRobbie\nTheodore\nWade\nAdam\nDean\nEdwin\nStuart\nSylvester\nCary\nClifton\nDamon\nDewey\nJohnathan\nKirk\nLester\nMarion\nRandal\nRex\nTracey\nVan\nAlex\nAubrey\nCarey\nDan\nEverett\nGene\nHugh\nSpencer\nStewart\nTom\nAndy\nBrad\nBrandon\nJulius\nMarc\nOrlando\nPercy\nRon\nSam\nStevie\nAdrian\nBen\nBryant\nClayton\nCorey\nDarin\nHubert\nJulian\nRobin\nRoland\nTerence\nTerrell\nWallace\nArchie\nArnold\nBill\nChester\nGlen\nGuy\nHorace\nKent\nLuther\nMack\nMalcolm\nNicholas\nQuinton\nSherman\nTed\nAlonzo\nClaude\nCornelius\nGeoffrey\nHeath\nIsaac\nKen\nLeroy\nLorenzo\nManuel\nMyron\nNelson\nRufus\nTeddy\nTommie\nWill\nAlton\nCasey\nCleveland\nDarrel\nDoyle\nEdgar\nElbert\nGordon\nLouie\nMarlon\nMax\nNeal\nRodrick\nRonny\nToby\nAllan\nChuck\nClark\nDana\nDuane\nForrest\nGilbert\nJefferson\nKendall\nAndrea\nAshley\nBennie\nBenny\nChadwick\nChristian\nClint\nDaron\nDave\nIra\nKarl\nKim\nKurt\nLeo\nOscar\nRickie\nRoss\nSandy\nToney\nBarney\nClay\nDaren\nDerick\nDerrell\nFelix\nHollis\nJamey\nKennedy\nLamar\nLorenza\nNoel\nReggie\nRobby\nRodger\nSammie\nSheldon\nVince\nWilbert\nXavier\nZachary\nAlphonso\nBert\nBlake\nBrady\nBret\nBroderick\nDalton\nDeron\nDonny\nEllis\nErik\nGarry\nGrover\nHouston\nJackson\nJeremy\nJonathon\nJuan\nJustin\nLowell\nMarlin\nMathew\nMurray\nNeil\nOllie\nRick\nRiley\nSanford\nShaun\nVance\nWillard\nWinston\nAthony\nAustin\nBillie\nBobbie\nBradford\nDelbert\nDonovan\nErick\nFreddy\nGerry\nGrant\nHoyt\nIvan\nJarrod\nJasper\nJerrell\nKendrick\nMoses\nNorris\nOliver\nRandell\nRayford\nRoyce\nShedrick\nShelby\nSilas\nTruman\nTy\nVirgil\nWilson\nAmos\nAntonia\nArtis\nBerry\nBoyd\nBrenton\nCameron\nCedrick\nColumbus\nCornell\nDaryle\nDion\nElijah\nEmmett\nEvan\nFletcher\nFrancis\nGabriel\nGreggory\nJerald\nJoesph\nJoshua\nJudson\nLeland\nLen\nMarcellus\nMario\nMason\nMatt\nMose\nNolan\nOwen\nRandolph\nRuben\nRusty\nTrent\nTyler\nUlysses\nVinson\nWaymon\nWiley\nWoodrow\nZachery\nJames\nMichael\nJohn\nDavid\nWilliam\nRobert\nChristopher\nCharles\nTimothy\nAnthony\nJeffrey\nMark\nRichard\nKenneth\nGregory\nJoseph\nThomas\nSteven\nBrian\nDonald\nJeffery\nStephen\nRonald\nEric\nKevin\nJason\nTerry\nRodney\nScott\nJohnny\nLarry\nPatrick\nPaul\nJerry\nWillie\nGary\nJimmy\nDaniel\nJonathan\nPhillip\nEdward\nGeorge\nTony\nBobby\nBilly\nKeith\nDouglas\nBarry\nReginald\nBryan\nMatthew\nDerrick\nRandall\nRicky\nRoger\nCurtis\nDennis\nDanny\nSamuel\nDarrell\nRandy\nCraig\nTommy\nBradley\nWalter\nRonnie\nMarcus\nEddie\nJoe\nTyrone\nGerald\nFrank\nMicheal\nAndrew\nRaymond\nRussell\nCarl\nRoderick\nTracy\nFrederick\nChris\nBruce\nJoel\nMarvin\nHenry\nCorey\nStanley\nDarren\nLee\nRoy\nCedric\nKelvin\nTodd\nShannon\nTroy\nHarold\nBenjamin\nVincent\nTravis\nAlan\nAllen\nByron\nCalvin\nDarryl\nHoward\nStacy\nSean\nWesley\nJerome\nDerek\nMelvin\nPhilip\nArthur\nJon\nGlenn\nScotty\nSteve\nCarlos\nClarence\nDonnie\nJack\nShane\nAntonio\nDale\nJeff\nShawn\nWayne\nRickey\nJoey\nKerry\nAlbert\nBrent\nKelly\nWarren\nErnest\nJeremy\nLeonard\nDaryl\nDewayne\nJessie\nJohnnie\nNorman\nVictor\nLawrence\nMarty\nNathan\nCharlie\nDexter\nAlfred\nChad\nClinton\nJesse\nMartin\nBrett\nCecil\nJamie\nMaurice\nAaron\nLonnie\nAlvin\nAndre\nClifford\nRalph\nStacey\nEarl\nJackie\nJimmie\nJody\nLance\nFredrick\nJay\nPerry\nDwayne\nFred\nMitchell\nPeter\nVernon\nDemetrius\nDwight\nGlen\nLeslie\nOtis\nFranklin\nWendell\nEugene\nHerman\nScottie\nSpencer\nTerrence\nEdwin\nRay\nDon\nBill\nClayton\nGreg\nHerbert\nLewis\nOrlando\nRon\nAdam\nLeroy\nLorenzo\nMorris\nAndy\nBrad\nBrandon\nCary\nFloyd\nHarry\nJim\nKyle\nMike\nMilton\nNathaniel\nDarrin\nHeath\nOscar\nTerrance\nBennie\nCornelius\nLeon\nMarc\nRobbie\nTimmy\nTommie\nWade\nBryant\nLester\nMarshall\nNeil\nRex\nStevie\nTim\nAlonzo\nBernard\nClyde\nFrankie\nLouis\nToby\nEarnest\nKenny\nRoosevelt\nTed\nTracey\nWillard\nAdrian\nAlex\nCarlton\nClifton\nDamon\nDarron\nErik\nFreddie\nHorace\nJohnathan\nLamar\nLuther\nPreston\nRyan\nSidney\nAlton\nClaude\nDan\nDarin\nGuy\nMarion\nRandal\nAlexander\nBen\nChester\nClint\nDarrel\nGene\nGeoffrey\nGrady\nKarl\nKirk\nReggie\nRobin\nTerence\nTerrell\nArchie\nAubrey\nBenny\nBradford\nCory\nEmmett\nGarry\nKent\nLeo\nLloyd\nMack\nMalcolm\nMickey\nMyron\nSammy\nSherman\nSylvester\nToney\nVan\nVirgil\nWallace\nChristian\nClay\nDuane\nFelix\nGerry\nHarvey\nHugh\nIra\nIvan\nJared\nJerald\nKendall\nMarlon\nNeal\nNicholas\nTheodore\nArnold\nChadwick\nDoyle\nEllis\nJonathon\nJulius\nKendrick\nRoyce\nRusty\nSam\nWilbert\nCarey\nCasey\nCleveland\nJefferson\nJulian\nJustin\nKim\nQuentin\nRoland\nTy\nAlfonso\nAmos\nAshley\nAvery\nBart\nBret\nChuck\nDominic\nEdgar\nGordon\nJacob\nKurt\nLorenza\nOliver\nRobby\nRufus\nStuart\nTeddy\nThaddeus\nWinston\nAl\nAlphonso\nBobbie\nCourtney\nDaron\nDave\nDean\nErick\nEverett\nForrest\nFrancis\nGavin\nHubert\nJarrod\nMicah\nNapoleon\nNelson\nQuincy\nSedrick\nShaun\nSonny\nTom\nWillis\nAntoine\nDarian\nDarius\nDedrick\nDerick\nDustin\nElliott\nFreddy\nHershel\nHunter\nIsaac\nJarvis\nJerrell\nKen\nKirby\nLyndon\nMonroe\nNorris\nPercy\nPhil\nRandolph\nSammie\nSeth\nStewart\nTrent\nTyler\nWaylon\nWilson\nZachary\nAbraham\nAndra\nBarney\nBoyd\nClark\nDana\nDarwin\nDenny\nDonnell\nGrant\nGrover\nHomer\nJacques\nJayson\nJeremiah\nJohnathon\nJoshua\nJuan\nLeland\nLynn\nMario\nNick\nNoah\nQuinton\nRick\nRiley\nRodrick\nRoss\nStephan\nTheron\nTimmie\nTorrey\nTyron\nVance\nAllan\nAndrea\nAustin\nBarton\nBlake\nBoris\nBrady\nBrenton\nCameron\nCarroll\nColeman\nConrad\nDarnell\nDarrick\nDion\nFelton\nGarland\nIsaiah\nJame\nJamey\nJoesph\nKimberly\nKris\nLisa\nLonzo\nLorne\nLouie\nLovell\nLowell\nMax\nMonty\nMorgan\nMurray\nNoel\nPierre\nRandell\nReginal\nRhett\nShedrick\nShelly\nStafford\nSterling\nWiley\nWill\nWoodrow\nJames\nMichael\nJohn\nWilliam\nDavid\nRobert\nChristopher\nCharles\nTimothy\nAnthony\nThomas\nRichard\nJeffrey\nJason\nSteven\nKenneth\nJoseph\nGregory\nKevin\nMark\nBrian\nEric\nStephen\nJeffery\nRonald\nJerry\nTerry\nLarry\nDonald\nScott\nWillie\nRodney\nPatrick\nPaul\nDaniel\nGary\nJohnny\nMarcus\nJonathan\nBobby\nPhillip\nJimmy\nTony\nBilly\nKeith\nGeorge\nMatthew\nEdward\nSamuel\nDerrick\nTommy\nDouglas\nBarry\nBradley\nReginald\nDennis\nAndrew\nBryan\nEddie\nGerald\nRoger\nRandall\nJeremy\nShawn\nCurtis\nDanny\nMicheal\nRandy\nRoderick\nWalter\nCraig\nHenry\nDarrell\nRicky\nStanley\nTyrone\nShannon\nRussell\nBenjamin\nFrederick\nJoel\nTodd\nJoe\nFrank\nRonnie\nTracy\nCedric\nCarl\nRaymond\nChris\nArthur\nCarlos\nClarence\nKelvin\nSean\nRoy\nDarren\nTroy\nAllen\nTravis\nAlan\nJerome\nBruce\nAlbert\nShane\nChad\nLee\nHarold\nVictor\nVincent\nAntonio\nLance\nDerek\nJon\nCorey\nWesley\nAndre\nDaryl\nMelvin\nCalvin\nLawrence\nMarvin\nJack\nPhilip\nBrent\nSteve\nCharlie\nDarryl\nJamie\nWayne\nAaron\nMaurice\nBrandon\nByron\nJay\nJoey\nDonnie\nStacy\nErnest\nGlenn\nWarren\nAlexander\nDale\nDexter\nMitchell\nFredrick\nLewis\nScottie\nScotty\nStacey\nAdam\nAlvin\nJimmie\nPerry\nTerrence\nLeslie\nMartin\nTerrance\nJeff\nLeon\nLouis\nClifford\nDwight\nJesse\nMarty\nNathan\nRalph\nFranklin\nFred\nHoward\nJohnnie\nKerry\nNathaniel\nGlen\nGreg\nJessie\nKelly\nLeonard\nEarl\nEarnest\nLonnie\nAndy\nDemetrius\nHerbert\nNorman\nRickey\nClinton\nDewayne\nDarrin\nOtis\nPeter\nBrett\nCecil\nEugene\nKenny\nBrad\nDustin\nEdwin\nWade\nWallace\nClifton\nHerman\nJackie\nHeath\nJody\nRay\nStevie\nAdrian\nFreddie\nMarc\nMike\nRobin\nVernon\nAlfred\nBryant\nDwayne\nTim\nTommie\nWendell\nDon\nHarry\nKyle\nBill\nCarey\nClaude\nCory\nHarvey\nLloyd\nMarlon\nMickey\nOrlando\nRyan\nSammy\nShaun\nTimmy\nAshley\nBernard\nCary\nClyde\nGrady\nJim\nJustin\nLeroy\nMalcolm\nMilton\nCarlton\nCasey\nChester\nDan\nGene\nJarvis\nJohnathan\nMarshall\nMax\nMorris\nNicholas\nRon\nSidney\nTom\nDarrick\nFrankie\nGordon\nLamar\nRoosevelt\nSherman\nToby\nTracey\nBen\nChristian\nClayton\nFloyd\nHorace\nHugh\nJerald\nKarl\nPreston\nRandal\nRobbie\nTrevor\nArchie\nBradford\nCameron\nChadwick\nCornelius\nDoyle\nFelix\nJulius\nKirk\nRodrick\nAlonzo\nAntony\nBennie\nBenny\nDana\nDonny\nDuane\nGarry\nGeoffrey\nKim\nMack\nStuart\nTrent\nClint\nDarron\nForrest\nIra\nJamey\nJarrod\nNoel\nOscar\nQuentin\nQuinton\nTerence\nAlex\nBrady\nDean\nDerick\nFernando\nFrancis\nIsaac\nLester\nLuther\nMario\nMarion\nMyron\nRex\nRico\nRobby\nRusty\nSammie\nSpencer\nVirgil\nAlton\nClay\nDarius\nDonovan\nErik\nGabriel\nGuy\nJudson\nNelson\nSam\nStephan\nTed\nTerrell\nVan\nWillard\nWinston\nAntonia\nAubrey\nBob\nBrenton\nBroderick\nChuck\nEdgar\nGilbert\nGrant\nHubert\nJacob\nJuan\nKendall\nKendrick\nLouie\nLowell\nMatt\nNeil\nPercy\nRoss\nTheodore\nWilbert\nWill\nWilson\nXavier\nAndrea\nAngelo\nBret\nCedrick\nDewey\nElijah\nEmmett\nEverett\nJefferey\nKen\nLorenzo\nMorgan\nNeal\nRandolph\nReggie\nRoland\nRoyce\nTaylor\nThaddeus\nToney\nTyron\nVance\nZachary\nBart\nBert\nBoris\nBoyd\nBuddy\nDamon\nDarnell\nDarrel\nErick\nEvan\nJacques\nJared\nJerre\nJoshua\nJunior\nKalvin\nLesley\nMarquis\nMiles\nOliver\nQuincy\nRamon\nRick\nRiley\nRodger\nRoman\nSandy\nSimon\nStewart\nAlfonso\nAlphonso\nArnold\nAvery\nClark\nCleveland\nDaron\nDave\nDonnell\nEmanuel\nEmory\nErvin\nGrover\nHuey\nHunter\nJackson\nJulian\nKelley\nKristopher\nKurt\nLeland\nLoren\nLorenza\nLoyd\nLuke\nManuel\nNick\nOllie\nRuben\nStanford\nSylvester\nTeddy\nTrenton\nTrey\nWillis\nAlfonza\nAllan\nAnderson\nAngela\nAustin\nBaron\nBlake\nChadrick\nCleophus\nColin\nCyrus\nDallas\nDannie\nDesi\nDesmond\nDevin\nDwyane\nEddy\nElbert\nEllis\nEnoch\nErrol\nErskine\nGerry\nGlynn\nGregg\nHiram\nJammie\nJerel\nJonas\nJonathon\nKendell\nKennedy\nKennith\nKent\nLeo\nMarlin\nMonty\nOmar\nReid\nSanford\nShon\nSilas\nSolomon\nSonny\nSterling\nTyler\nTyson\nMichael\nJames\nChristopher\nJohn\nWilliam\nRobert\nDavid\nJason\nCharles\nAnthony\nTimothy\nBrian\nThomas\nKevin\nJoseph\nJeffrey\nKenneth\nSteven\nMark\nGregory\nRichard\nEric\nTerry\nScott\nLarry\nStephen\nJonathan\nRonald\nPatrick\nJerry\nDonald\nJeffery\nPaul\nDaniel\nJohnny\nWillie\nRodney\nBilly\nBobby\nTony\nGary\nMarcus\nJeremy\nKeith\nMatthew\nJimmy\nPhillip\nEdward\nGeorge\nDerrick\nChad\nShannon\nSamuel\nDouglas\nBryan\nShawn\nDanny\nDennis\nHenry\nFrederick\nReginald\nAndrew\nRandy\nCurtis\nRandall\nBarry\nTommy\nCedric\nJoe\nMarvin\nBradley\nJamie\nEddie\nRussell\nTyrone\nAntonio\nRoderick\nWalter\nBrandon\nCarlos\nGerald\nKelvin\nRicky\nChris\nDarrell\nRoger\nJoel\nTracy\nMicheal\nBenjamin\nScotty\nSean\nCarl\nDerek\nRonnie\nStanley\nShane\nSteve\nFrank\nCalvin\nCorey\nRoy\nFredrick\nRaymond\nTodd\nTravis\nScottie\nWesley\nLee\nClarence\nTroy\nAllen\nDarren\nPhilip\nArthur\nCraig\nAlbert\nHarold\nJody\nVincent\nKerry\nBrent\nJerome\nJessie\nAdam\nBruce\nLance\nMaurice\nWayne\nAaron\nAndre\nHoward\nByron\nAlvin\nLawrence\nNathan\nJoey\nJon\nRyan\nStacy\nLeonard\nMelvin\nDewayne\nHeath\nMarty\nNorman\nAlan\nJay\nJesse\nBrett\nCharlie\nDarryl\nErnest\nJohnnie\nMitchell\nWarren\nDaryl\nDonnie\nTerrence\nHarry\nLeslie\nDexter\nDwight\nMarc\nFranklin\nGlenn\nGreg\nJack\nJimmie\nLouis\nNathaniel\nStevie\nCecil\nClifford\nFreddie\nJermaine\nLonnie\nTerrance\nJackie\nMarlon\nRalph\nTimmy\nChristian\nClifton\nRickey\nAlfred\nChadwick\nClinton\nDemetrius\nEugene\nJeff\nKelly\nPeter\nRay\nStacey\nVictor\nBryant\nKenny\nPerry\nRobbie\nDon\nDwayne\nJustin\nToby\nKyle\nLeon\nSammy\nTerrell\nWendell\nAlexander\nEarnest\nFred\nHugh\nMartin\nBernard\nDana\nJohnathan\nKendrick\nCarlton\nEarl\nEdwin\nFloyd\nFrankie\nOrlando\nBennie\nDale\nHerbert\nSidney\nSpencer\nAlex\nAndy\nAshley\nAubrey\nCary\nGrady\nJoshua\nMickey\nMilton\nOtis\nStuart\nAlonzo\nAlton\nCornelius\nGeoffrey\nMario\nMarshall\nMyron\nRon\nTommie\nAdrian\nClay\nDarrin\nDustin\nJulius\nLester\nLuther\nMack\nWade\nCasey\nChester\nClaude\nClayton\nDamon\nErik\nGene\nHorace\nJared\nJonathon\nJuan\nKent\nNicholas\nQuentin\nRodrick\nSylvester\nCarey\nCory\nDerick\nGlen\nHarvey\nKirk\nLamar\nMike\nPreston\nRobin\nTracey\nBart\nBen\nClint\nDonny\nGordon\nLewis\nMarion\nMorris\nAllan\nBradford\nCameron\nDan\nGabriel\nGarry\nGilbert\nHunter\nJim\nLorenzo\nQuinton\nRex\nRoss\nShaun\nSherman\nTrent\nArchie\nBrad\nDave\nEmmett\nErick\nHerman\nHubert\nIan\nIra\nLeroy\nLloyd\nMalcolm\nOscar\nRandal\nTerence\nVernon\nAmos\nElbert\nIsaac\nJarvis\nJayson\nNeil\nNelson\nRodger\nRufus\nTom\nWinston\nZachary\nAndra\nBill\nBrady\nClyde\nDuane\nEdgar\nEverett\nJerald\nJulian\nKarl\nKendall\nLorenza\nMatt\nMax\nNorris\nOliver\nPercy\nRoosevelt\nThaddeus\nTy\nVirgil\nWinfred\nXavier\nAustin\nBenny\nBroderick\nCedrick\nCleveland\nDaron\nDarron\nDean\nDedric\nFernando\nForrest\nFrancis\nGerry\nJamey\nJamison\nJefferson\nJeremiah\nJudson\nKris\nMarlin\nRobby\nSammie\nSedrick\nSheldon\nStanford\nTyler\nWallace\nWillard\nArnold\nChuck\nClark\nDarin\nDarnell\nDaryle\nDerwin\nHomer\nJarrod\nJerrold\nLowell\nLoyd\nLynn\nMonte\nNeal\nQuincy\nReggie\nReginal\nRhett\nRoyce\nShelby\nTim\nTrenton\nVan\nAntoine\nAugustus\nBob\nBoyd\nBrenton\nBryon\nCornell\nDarian\nDerrell\nDewey\nDonovan\nFelix\nGarrett\nGreggory\nGuy\nIsrael\nJarrett\nKim\nLemuel\nMonty\nNick\nQuintin\nRayford\nRoland\nRoman\nRonny\nSam\nSeth\nStewart\nTaylor\nTed\nThad\nTheodore\nWill\nWilson\nAl\nAlfonso\nAlphonso\nAndrea\nAngelo\nAntonia\nBlaine\nBoris\nBrain\nBrannon\nCourtney\nDallas\nDarius\nDarrick\nDedrick\nDeon\nDion\nDirk\nDoyle\nEarlie\nEldridge\nEllis\nElton\nErrol\nErvin\nHollis\nHuey\nIssac\nJacob\nJammie\nJeffry\nJeremey\nKennith\nKenyon\nKristopher\nKurt\nLeland\nLeo\nLouie\nMarkus\nMarquis\nMicah\nMoses\nNoel\nRicardo\nRichmond\nRico\nRudolph\nSebastian\nShedrick\nStephanie\nSterling\nStoney\nToney\nTorrance\nTrevor\nVince\nWilbur\nWiley\nWillis\nMichael\nChristopher\nJames\nJohn\nWilliam\nDavid\nRobert\nJason\nBrian\nCharles\nTimothy\nEric\nAnthony\nKevin\nRichard\nKenneth\nJoseph\nSteven\nJeffrey\nThomas\nMark\nGregory\nJonathan\nDaniel\nStephen\nPatrick\nJerry\nRonald\nLarry\nRodney\nPaul\nTerry\nWillie\nJeffery\nDonald\nBilly\nScott\nKeith\nJeremy\nMarcus\nMatthew\nBobby\nJimmy\nJohnny\nGary\nTony\nDerrick\nPhillip\nTracy\nBrandon\nGeorge\nBryan\nEdward\nChad\nShannon\nTommy\nSamuel\nDanny\nShawn\nDennis\nRandy\nWalter\nRandall\nAntonio\nReginald\nAndrew\nCedric\nBenjamin\nCarlos\nFrederick\nJamie\nTyrone\nChris\nRoderick\nDarrell\nRoger\nCurtis\nMicheal\nRonnie\nDouglas\nSean\nFrank\nTravis\nBradley\nGerald\nHenry\nRussell\nKelvin\nCarl\nShane\nBarry\nJoe\nMarvin\nRyan\nDerek\nLee\nRoy\nJoel\nEddie\nStanley\nCalvin\nPhilip\nAllen\nRicky\nAlbert\nRaymond\nAdam\nHoward\nWesley\nTroy\nArthur\nCorey\nClarence\nTodd\nBrent\nCraig\nErnest\nAlan\nDonnie\nByron\nDemetrius\nAndre\nJody\nDaryl\nHarold\nJoey\nMarlon\nMaurice\nAaron\nClinton\nMelvin\nStacy\nSteve\nVincent\nJermaine\nFredrick\nJerome\nNathan\nTerrance\nGlenn\nJon\nJoshua\nAlvin\nClifford\nHeath\nLance\nBrett\nCharlie\nJessie\nLeon\nMitchell\nTerrence\nWayne\nDarren\nDarryl\nJesse\nJustin\nVictor\nDewayne\nDexter\nJackie\nJohnathan\nNorman\nKelly\nKerry\nScotty\nEugene\nJeff\nJimmie\nLeonard\nRobin\nScottie\nBruce\nDwayne\nJack\nLawrence\nStacey\nChadwick\nDon\nLonnie\nMario\nMarty\nTracey\nCornelius\nEdwin\nRickey\nWendell\nAlonzo\nDwight\nFranklin\nJay\nKyle\nWarren\nAlfred\nBryant\nKendrick\nRalph\nStevie\nAdrian\nHarry\nMorris\nNathaniel\nDale\nErik\nFred\nFreddie\nLewis\nPeter\nSidney\nDamon\nLeslie\nMartin\nCory\nEarnest\nJohnnie\nMilton\nAlex\nBrad\nClaude\nDerick\nDustin\nFrankie\nHerman\nLouis\nOscar\nPerry\nQuentin\nRay\nGreg\nJared\nKenny\nToby\nAndy\nBernard\nCasey\nChester\nDarius\nDarrin\nDuane\nGarry\nGrady\nLester\nPreston\nAlexander\nAshley\nCarlton\nCary\nClay\nClifton\nEarl\nHugh\nJarrod\nLloyd\nMarion\nMyron\nNicholas\nOrlando\nTerrell\nBart\nClayton\nClyde\nDonny\nFloyd\nJim\nJuan\nJulius\nKristopher\nLamar\nMalcolm\nMarshall\nOtis\nRandal\nReggie\nRex\nSherman\nTheodore\nTommie\nVernon\nBen\nBenny\nCecil\nErick\nFelix\nGordon\nIsaac\nJacob\nLorenzo\nLuther\nMarc\nMike\nRico\nTerence\nWade\nAubrey\nBill\nCedrick\nChristian\nDemond\nEdgar\nGeoffrey\nGlen\nJarvis\nJulian\nKareem\nKendall\nLamont\nMicah\nQuincy\nRandolph\nRodrick\nSpencer\nTim\nTimmy\nWallace\nBrenton\nBroderick\nCarey\nClint\nGene\nJamey\nJonathon\nKent\nRobbie\nVirgil\nDan\nDesmond\nFernando\nGuy\nHarvey\nHerbert\nHorace\nKarl\nMickey\nNelson\nOliver\nRoosevelt\nThaddeus\nVidal\nBennie\nBrady\nDarin\nDarrick\nDonovan\nEvan\nGabriel\nJerald\nKim\nKirk\nLeroy\nNeal\nNeil\nPercy\nSammy\nAntonia\nBuddy\nCameron\nDarron\nDedrick\nEllis\nEmmett\nIan\nIra\nIvan\nOwen\nReginal\nRoland\nSammie\nSheldon\nSonny\nTrevor\nWoodrow\nXavier\nZachary\nAllan\nAlphonso\nArnold\nChadrick\nCourtney\nDarrel\nDemetris\nDewey\nErwin\nFrancis\nGarrick\nHubert\nHuey\nJayson\nJosh\nMarco\nMarlin\nMiles\nMonte\nRaphael\nRhett\nRicardo\nRobby\nRodger\nRoyce\nRusty\nSandy\nStuart\nSylvester\nTheron\nToney\nToriano\nTyler\nWill\nWinston\nAl\nAnderson\nAndrea\nBarrett\nBrain\nBrandy\nDarnell\nDedric\nDeon\nDominic\nElijah\nForrest\nGerry\nJerrell\nJerrold\nLanny\nLeander\nMorgan\nQuinton\nRiley\nRod\nRoss\nRuben\nRudolph\nSedrick\nShaun\nStephan\nUlysses\nWilbert\nWillard\nAngelo\nAntoine\nAntony\nAvery\nBobbie\nBradford\nBrant\nCleveland\nCody\nCyrus\nDallas\nDana\nDannie\nDavis\nDeric\nDevin\nDevon\nElbert\nElmer\nElton\nEmanuel\nErskine\nErvin\nGarland\nGavin\nGilbert\nGrant\nGreggory\nGrover\nHerschel\nHunter\nIvory\nJamison\nJarrett\nJeremiah\nKen\nKenya\nKurt\nLowell\nMajor\nMitch\nMonty\nOmar\nPete\nRayburn\nRitchie\nRufus\nSam\nSebastian\nSimon\nStewart\nTaylor\nTed\nTeddy\nTom\nWilson\nWoodie\nChristopher\nMichael\nJames\nJason\nWilliam\nJohn\nRobert\nDavid\nBrian\nCharles\nKevin\nAnthony\nEric\nTimothy\nJoseph\nThomas\nJonathan\nRichard\nSteven\nKenneth\nDaniel\nGregory\nMark\nJeffrey\nMatthew\nJerry\nLarry\nPatrick\nJeremy\nDerrick\nWillie\nDonald\nJeffery\nRonald\nStephen\nMarcus\nRodney\nPhillip\nTerry\nPaul\nJimmy\nBobby\nKeith\nGary\nGeorge\nJohnny\nBrandon\nScott\nEdward\nBryan\nTracy\nBilly\nChad\nShannon\nSamuel\nTony\nJamie\nReginald\nShawn\nDanny\nJoshua\nAndrew\nShane\nCurtis\nBenjamin\nCarlos\nRoderick\nDarrell\nJermaine\nTommy\nAdam\nCedric\nDouglas\nMicheal\nRandall\nEddie\nRandy\nRoger\nBradley\nCalvin\nDennis\nHenry\nSean\nKelvin\nMarvin\nRussell\nTyrone\nAntonio\nChris\nRyan\nLee\nTravis\nWalter\nFrederick\nRonnie\nStanley\nJoel\nRicky\nJoe\nCarl\nArthur\nBarry\nCorey\nDerek\nHarold\nNathan\nRaymond\nGerald\nAaron\nAllen\nRoy\nFrank\nJoey\nJon\nJustin\nTerrance\nWesley\nJack\nPhilip\nVincent\nCraig\nJerome\nLawrence\nMelvin\nTroy\nAlbert\nByron\nDemetrius\nTodd\nAlan\nCornelius\nFredrick\nAdrian\nJessie\nHeath\nHoward\nJohnathan\nMitchell\nCharlie\nErnest\nLeslie\nAlvin\nBrent\nMarlon\nStacey\nFranklin\nJackie\nJimmie\nScotty\nAlfred\nDaryl\nDonnie\nRickey\nAndre\nClifford\nJody\nMaurice\nPeter\nWayne\nZachary\nAshley\nClarence\nJay\nLeonard\nNicholas\nTracey\nJesse\nStacy\nCarlton\nDon\nEdwin\nJohnnie\nMarty\nNathaniel\nChadwick\nClinton\nDarren\nDewayne\nJarrod\nKerry\nBrett\nEugene\nFreddie\nScottie\nSteve\nBruce\nDarryl\nChristian\nDexter\nEarl\nEarnest\nLonnie\nTerrell\nVictor\nClayton\nDamon\nDustin\nDwayne\nMartin\nSherman\nSidney\nToby\nWarren\nAlex\nCory\nDarius\nFrankie\nGlenn\nJared\nJonathon\nKyle\nMarc\nMario\nBernard\nDwight\nGreg\nHarry\nHerman\nJacob\nJeff\nKendrick\nLeon\nOtis\nRalph\nRoosevelt\nTerrence\nAlexander\nBrad\nCarey\nDuane\nFred\nNorman\nPerry\nQuentin\nVernon\nWendell\nAndy\nBryant\nCary\nCasey\nDemond\nErik\nGabriel\nKendall\nLamar\nLance\nLeroy\nMorris\nRay\nSpencer\nTerence\nWade\nDana\nJerald\nJulian\nKenny\nLewis\nMickey\nRon\nBen\nDale\nJamey\nJarvis\nDonny\nHorace\nJulius\nMarshall\nMike\nRobin\nRodrick\nSam\nSylvester\nTimmy\nAlton\nBennie\nChester\nHerbert\nKristopher\nLloyd\nNeil\nRandal\nRobbie\nSammy\nTheodore\nCedrick\nDonnell\nElbert\nGordon\nMilton\nRobby\nRoland\nWallace\nAlonzo\nAubrey\nClaude\nIsaac\nKarl\nKelly\nLouis\nOscar\nSedrick\nSeth\nShaun\nStevie\nThaddeus\nTrent\nAmos\nCecil\nClifton\nClint\nClyde\nDarron\nDedrick\nErick\nGeoffrey\nGrady\nJamison\nJeremiah\nJim\nLester\nMalcolm\nOrlando\nPreston\nQuincy\nStuart\nWillard\nAustin\nBenny\nClay\nCleveland\nDan\nFloyd\nGene\nHugh\nJacques\nJuan\nKen\nLamont\nLorenzo\nMarlin\nMatt\nMicah\nNeal\nRex\nRoss\nTommie\nTyler\nBradford\nCameron\nDelano\nDewey\nEdgar\nEmanuel\nGlen\nHarvey\nJefferson\nJudson\nKenya\nMyron\nOliver\nOmar\nPercy\nQuinton\nRufus\nRusty\nShelby\nShon\nTed\nTeddy\nVan\nVirgil\nWinston\nAlonza\nArchie\nBlake\nBryon\nCourtney\nDallas\nDamion\nDarrick\nDave\nDemetrice\nDeon\nDesmond\nKennith\nMarquis\nReggie\nRoman\nSammie\nXavier\nAl\nAllan\nBarrett\nBroderick\nBuddy\nCody\nDamian\nDarrel\nDean\nDemetric\nDerick\nDesi\nElijah\nEllis\nFernando\nFrancis\nFreeman\nGarrett\nGarrick\nGeneral\nGrant\nHunter\nIra\nIsrael\nJarrett\nJerrell\nKent\nKirk\nLouie\nLuther\nMajor\nMarion\nNapoleon\nNelson\nNick\nOwen\nRamon\nRocky\nRoyce\nShedrick\nSterling\nTaylor\nTim\nTrey\nWaymon\nWill\nYancey\nAbdul\nAngelo\nAntoine\nAvery\nBrady\nChance\nChuck\nColin\nDarnell\nDaron\nDominic\nDrew\nDusty\nEldridge\nFelix\nForrest\nGermaine\nGuy\nHubert\nIke\nIrvin\nJammie\nJasper\nJayson\nJose\nJosh\nJunior\nKarlos\nLindsey\nLowell\nMack\nManuel\nMason\nMax\nMurray\nNoah\nNorris\nReginal\nRicardo\nSheldon\nSonny\nStan\nTaurus\nTheron\nTorrance\nTremayne\nTyrus\nWilbert\nWillis\nWoodrow\nChristopher\nMichael\nJames\nJason\nJohn\nWilliam\nDavid\nRobert\nBrian\nAnthony\nCharles\nJoseph\nKevin\nTimothy\nEric\nJeremy\nSteven\nJeffrey\nKenneth\nThomas\nRichard\nDaniel\nJonathan\nMark\nMatthew\nGregory\nPatrick\nMarcus\nJeffery\nJerry\nJohnny\nDerrick\nLarry\nStephen\nBilly\nBobby\nRodney\nDonald\nBrandon\nTerry\nGary\nKeith\nPaul\nPhillip\nWillie\nRonald\nJoshua\nChad\nGeorge\nJimmy\nBryan\nBenjamin\nSamuel\nShannon\nAndrew\nScott\nCarlos\nEdward\nTony\nShawn\nAdam\nBradley\nDennis\nReginald\nDanny\nRyan\nJamie\nKelvin\nRoderick\nCurtis\nTracy\nCorey\nAntonio\nRandall\nTommy\nMicheal\nShane\nCedric\nRonnie\nJoel\nTravis\nTyrone\nEddie\nFrederick\nHenry\nChris\nWalter\nRussell\nDouglas\nNathan\nRicky\nRoger\nRandy\nRaymond\nAaron\nTodd\nCalvin\nCarl\nMaurice\nDerek\nBarry\nGerald\nRoy\nAllen\nSean\nAndre\nWesley\nDarrell\nFrank\nJon\nLee\nHeath\nTerrance\nDemetrius\nMarvin\nHarold\nJoe\nJerome\nJustin\nClarence\nBrad\nJermaine\nAdrian\nJoey\nAlbert\nBruce\nKerry\nArthur\nHoward\nStacy\nChadwick\nTroy\nAshley\nBrett\nCharlie\nDonnie\nLawrence\nPhilip\nMarlon\nStacey\nByron\nCraig\nAlan\nCornelius\nBrent\nStanley\nDamon\nJody\nRickey\nScottie\nDarryl\nDaryl\nFranklin\nJacob\nJarrod\nNakia\nNicholas\nNorman\nEugene\nFredrick\nJackie\nJesse\nMitchell\nTerrence\nClifford\nLeon\nBernard\nDarren\nJessie\nJohnathan\nLeslie\nMelvin\nBryant\nErnest\nMario\nBradford\nClinton\nGabriel\nJimmie\nScotty\nSteve\nVincent\nAlexander\nAlfred\nDustin\nJack\nNathaniel\nCory\nDexter\nEarnest\nJared\nWarren\nCasey\nClifton\nDewayne\nDon\nJulius\nKelly\nLeonard\nLewis\nRalph\nWayne\nKristopher\nDwight\nKenny\nPeter\nVictor\nWade\nAlex\nAlvin\nEdwin\nLorenzo\nMartin\nZachary\nBen\nFrankie\nJamey\nLamar\nLance\nLouis\nMarc\nQuentin\nDale\nDarius\nFred\nHerbert\nKendall\nKendrick\nLeroy\nQuincy\nTerrell\nTheodore\nTimmy\nTommie\nAndy\nCarlton\nCecil\nClint\nCourtney\nJarvis\nPercy\nRodrick\nSidney\nToby\nVernon\nWill\nChristian\nGlenn\nHarry\nJeff\nOscar\nStuart\nAlonzo\nClay\nClayton\nDominic\nDwayne\nEarl\nFreddie\nHerman\nLamont\nMarty\nMicah\nPerry\nRay\nTracey\nCedrick\nDemond\nDuane\nGreg\nJay\nJohnnie\nJonathon\nKarl\nKyle\nLonnie\nMickey\nOrlando\nRusty\nTerence\nTyler\nWendell\nCameron\nCarey\nDewey\nErick\nIsaac\nJuan\nRoosevelt\nSeth\nTelly\nBlake\nClyde\nDerick\nErik\nForrest\nJim\nJosh\nJulian\nLester\nRobbie\nShaun\nSpencer\nStevie\nTrenton\nVan\nBill\nCarlo\nChester\nEdgar\nGlen\nJeremiah\nKent\nMalcolm\nMarion\nMilton\nMorris\nOliver\nOmar\nOtis\nQuinton\nReggie\nRon\nStewart\nSylvester\nTom\nTrent\nAubrey\nDamian\nDamien\nDan\nDarian\nDarrel\nDarron\nDesmond\nDonny\nFelix\nGeoffrey\nIan\nJamison\nJerrod\nJudson\nLeo\nMarco\nMarlin\nMyron\nNoel\nPreston\nRodger\nRoland\nTeddy\nThaddeus\nTrey\nAlton\nBroderick\nClaude\nCoy\nDamion\nDana\nDarrin\nDeangelo\nFernando\nFloyd\nGordon\nIssac\nIvory\nJerald\nJeromy\nKenyatta\nLuke\nLuther\nMack\nMarshall\nRex\nRico\nRobin\nRoss\nSedrick\nTed\nTim\nTrevor\nWallace\nWilbert\nWinston\nAmos\nAntoine\nAntonia\nBennie\nBenny\nBrannon\nCary\nDarnell\nDarrick\nElbert\nGene\nGrady\nHarvey\nHugh\nJarrett\nKen\nKenyon\nLloyd\nLorenza\nLucas\nMatt\nMike\nNeal\nNick\nRandolph\nSam\nSammy\nVirgil\nWoodrow\nXavier\nAl\nArchie\nBerry\nCleveland\nColby\nDante\nDean\nDemetris\nDeon\nDoyle\nEllis\nEmmett\nFrederic\nGerry\nHorace\nIra\nJake\nJefferson\nJoesph\nKarlos\nKirk\nKris\nLebarron\nMarkus\nShon\nTheron\nTorrey\nVashon\nWaylon\nAbdul\nAdrain\nAngelo\nAvery\nBart\nBertram\nBrooks\nCarson\nChuck\nClark\nCornell\nDalton\nDarin\nDave\nDenny\nDerric\nDeshawn\nDesi\nDevin\nDion\nDylan\nElijah\nGarrick\nGarry\nGavin\nGrant\nGrover\nHarrison\nHubert\nJacky\nJammie\nJunior\nKareem\nLindsey\nLowell\nMac\nMarcellus\nMarrio\nMason\nMoses\nNeil\nNicky\nNoah\nOrlanda\nRoyce\nSherman\nTammy\nTavares\nTorrance\nTy\nTyrus\nZackary\nMichael\nChristopher\nJames\nJason\nWilliam\nJohn\nRobert\nDavid\nBrian\nJeremy\nJoseph\nCharles\nKevin\nAnthony\nEric\nTimothy\nJonathan\nDaniel\nRichard\nMatthew\nThomas\nSteven\nJeffrey\nMark\nMarcus\nKenneth\nStephen\nGregory\nPatrick\nLarry\nBrandon\nJoshua\nTerry\nJerry\nRonald\nDonald\nPhillip\nJohnny\nRodney\nChad\nJeffery\nBradley\nWillie\nDerrick\nPaul\nScott\nJimmy\nGary\nBenjamin\nJamie\nShannon\nAntonio\nBryan\nTony\nBilly\nAdam\nEdward\nSamuel\nAndrew\nBobby\nGeorge\nKeith\nShawn\nJustin\nReginald\nDanny\nRyan\nRoderick\nWalter\nTommy\nTravis\nRussell\nCorey\nDennis\nKelvin\nRandall\nShane\nMicheal\nDouglas\nFrederick\nCurtis\nNathan\nAaron\nCedric\nRoger\nJoel\nCarlos\nRandy\nTyrone\nWesley\nHenry\nMarvin\nBarry\nSean\nArthur\nEddie\nRoy\nJoe\nRaymond\nRonnie\nChris\nDerek\nHeath\nTerrance\nAllen\nCalvin\nDemetrius\nJesse\nAlan\nMaurice\nRicky\nTodd\nDarrell\nDonnie\nCarl\nFrank\nTracy\nBrent\nJermaine\nPhilip\nClifton\nJon\nLee\nBrad\nClarence\nHarold\nAlbert\nGerald\nAdrian\nJacob\nCasey\nFredrick\nJerome\nAndre\nByron\nChadwick\nScotty\nCraig\nTroy\nDustin\nKerry\nNathaniel\nClinton\nDarryl\nJack\nStacy\nAlvin\nJody\nJohnathan\nMitchell\nTerrence\nVincent\nHoward\nMelvin\nJessie\nMarlon\nRickey\nClayton\nJonathon\nLeonard\nVictor\nAshley\nCharlie\nDamon\nDon\nJared\nMario\nNicholas\nScottie\nBruce\nCory\nGlenn\nLonnie\nNakia\nNorman\nStanley\nWarren\nZachary\nBrett\nClifford\nCornelius\nJoey\nMarty\nJay\nLance\nSteve\nErnest\nLeon\nQuincy\nDale\nBernard\nCecil\nEarl\nJackie\nJimmie\nKyle\nWayne\nCameron\nEarnest\nEugene\nFranklin\nHarry\nKendrick\nLeroy\nStacey\nToby\nAlexander\nAndy\nCarlton\nFreddie\nKristopher\nLawrence\nMicah\nRalph\nDarius\nDarren\nMartin\nPeter\nBryant\nClint\nDaryl\nEdwin\nGeoffrey\nGreg\nJim\nLester\nOrlando\nAlonzo\nDewayne\nGabriel\nSpencer\nTerrell\nCourtney\nJeff\nJuan\nKenny\nLewis\nLouis\nMalcolm\nWade\nWendell\nAlex\nDamien\nDexter\nDwight\nFred\nHerman\nJamey\nJarrod\nJeremiah\nJohnnie\nLorenzo\nOtis\nQuentin\nRobbie\nRodrick\nSedrick\nSeth\nSidney\nStevie\nTavares\nTelly\nTerence\nAlfred\nAndrea\nAntonia\nCedrick\nClay\nJulian\nLeslie\nPreston\nShelby\nDan\nDerick\nErik\nFrankie\nMarshall\nMickey\nPerry\nRobin\nRoosevelt\nRoss\nSherman\nStuart\nTeddy\nTimmy\nBen\nCarey\nDemond\nDuane\nHerbert\nHugh\nMorris\nRay\nTyler\nAlton\nBenny\nBradford\nClyde\nDarrick\nDwayne\nForrest\nHorace\nJamison\nJulius\nKelly\nMarc\nMarion\nMilton\nNeil\nXavier\nGrady\nIan\nJamal\nJarvis\nKent\nLeo\nLuther\nOliver\nOmar\nSylvester\nThaddeus\nTommie\nTorrance\nTrent\nVernon\nWill\nBill\nBlake\nCary\nChester\nDana\nDarrin\nDesmond\nDonny\nElbert\nGordon\nGrant\nIsaac\nJayson\nKenyatta\nMarlin\nRandolph\nRon\nSam\nTheodore\nTracey\nVirgil\nWallace\nAndra\nAubrey\nAvery\nBennie\nBrock\nChadrick\nChristian\nClaude\nCleveland\nEdgar\nEdmond\nFelix\nGlen\nGlendon\nHubert\nIvan\nJackson\nJammie\nJefferson\nJudson\nKenya\nLamar\nMoses\nMyron\nNeal\nNick\nOscar\nQuinton\nSammy\nShelton\nTyson\nArchie\nAustin\nBenji\nDion\nEmanuel\nEthan\nEverett\nFloyd\nGarrett\nGarry\nHarvey\nIra\nJasper\nJerrod\nJosh\nKendall\nKris\nLloyd\nLowell\nMack\nMonty\nNoel\nPercy\nReggie\nRenardo\nRoland\nRusty\nSammie\nStephan\nStewart\nTitus\nTremayne\nAllan\nAntwan\nBart\nBrady\nBroderick\nChauncey\nChuck\nCody\nDarrel\nDemetrice\nDeon\nEmmanuel\nGene\nGerard\nGerry\nJaime\nJonas\nKarl\nKelley\nKennith\nKenyon\nLashawn\nLucas\nLuke\nMathew\nMatt\nMiles\nNikia\nNoah\nRashad\nRayford\nReco\nRocky\nRufus\nShaun\nSimon\nTarus\nUlysses\nVan\nWilbert\nWillard\nWinston\nAmos\nAngelo\nAntoine\nBrannon\nBryce\nCaleb\nDallas\nDarnell\nDarron\nDecarlos\nDedric\nDedrick\nDejuan\nDemetris\nDevin\nDewey\nDylan\nElton\nEmmett\nErick\nFernando\nGilbert\nGuy\nJacques\nJarrett\nJerald\nJeremey\nJeromy\nJerrell\nJose\nKareem\nKirby\nKirk\nKristian\nLamont\nLane\nMarkus\nMarquis\nNelson\nOrlanda\nOwen\nPrentice\nRandell\nRex\nRico\nRodger\nRoyce\nSheddrick\nSolomon\nSonny\nTerrill\nThad\nTory\nTrenton\nVinson\nWillis\nMichael\nChristopher\nJames\nJason\nJohn\nWilliam\nDavid\nRobert\nJeremy\nBrian\nCharles\nJoseph\nKevin\nTimothy\nEric\nJonathan\nAnthony\nMatthew\nDaniel\nThomas\nKenneth\nRichard\nJoshua\nSteven\nMarcus\nStephen\nBrandon\nJeffrey\nMark\nGregory\nLarry\nDerrick\nPatrick\nChad\nJerry\nAdam\nBenjamin\nAndrew\nRodney\nBilly\nBradley\nAntonio\nDonald\nPaul\nWillie\nPhillip\nRonald\nTerry\nJohnny\nGary\nSamuel\nEdward\nScott\nCarlos\nTony\nJamie\nJeffery\nJimmy\nBobby\nRyan\nShannon\nJustin\nWalter\nKeith\nCorey\nGeorge\nCedric\nShawn\nTravis\nBryan\nNathan\nReginald\nKelvin\nWesley\nRandall\nTommy\nDouglas\nFrederick\nRandy\nRoderick\nTyrone\nDanny\nRaymond\nArthur\nBarry\nHenry\nAaron\nDemetrius\nEddie\nRonnie\nShane\nCurtis\nJoe\nCalvin\nDarrell\nDennis\nJermaine\nDustin\nTerrance\nJacob\nLee\nRoger\nCarl\nFredrick\nJoel\nJoey\nChris\nGerald\nRussell\nDerek\nPhilip\nTodd\nJesse\nMicheal\nHeath\nRoy\nAdrian\nAlan\nAllen\nBrent\nDonnie\nHarold\nSean\nAlbert\nClinton\nGabriel\nJerome\nRicky\nJon\nMaurice\nZachary\nMarvin\nChadwick\nCornelius\nCraig\nJohnathan\nRickey\nBrad\nDewayne\nFrank\nNathaniel\nAndre\nCasey\nCory\nDaryl\nTerrence\nBrett\nMarlon\nJeremiah\nJody\nTracy\nClayton\nDarryl\nJackie\nJared\nJessie\nKyle\nStanley\nErnest\nBruce\nByron\nTroy\nDwight\nLance\nMario\nMelvin\nClifton\nJack\nKendrick\nMartin\nNicholas\nCameron\nClarence\nKerry\nLouis\nMitchell\nQuincy\nClifford\nFranklin\nJay\nScotty\nDon\nEarnest\nGlenn\nJamey\nTerence\nWade\nWarren\nClint\nLeon\nVictor\nAlfred\nAshley\nCourtney\nDamon\nHoward\nLawrence\nMarty\nPerry\nRalph\nSeth\nTerrell\nDarius\nDexter\nEarl\nJohnnie\nLeslie\nMarshall\nMicah\nAndy\nCarlton\nCharlie\nJarvis\nJulius\nKristopher\nLeonard\nLewis\nSherman\nStacy\nVincent\nClay\nDonny\nDwayne\nEugene\nMorris\nBryant\nGeoffrey\nJimmie\nLonnie\nMickey\nPeter\nSteve\nBradford\nDerick\nGrant\nHarry\nJuan\nLorenzo\nOtis\nToby\nBlake\nJarrod\nJulian\nQuentin\nAlvin\nDale\nJamison\nLester\nQuinton\nRobin\nRocky\nScottie\nSpencer\nAlexander\nAllan\nAubrey\nDamian\nDana\nDarren\nHerbert\nIsaac\nJonathon\nLeroy\nMilton\nSedrick\nStacey\nTyler\nAlex\nAlton\nBenny\nBernard\nCecil\nEdwin\nGarry\nKenyatta\nRay\nSheldon\nTracey\nWayne\nBen\nBrannon\nClyde\nCody\nDamien\nDecarlos\nErik\nFreddie\nIan\nJeff\nJosh\nKendall\nKenyon\nLeo\nMarc\nMathew\nNorman\nRobbie\nSylvester\nThaddeus\nDarron\nDemetrice\nDesmond\nFloyd\nFrankie\nGreg\nHerman\nHorace\nHunter\nJim\nKenya\nMalcolm\nNoah\nOmar\nOrlando\nOscar\nRico\nRoosevelt\nSeneca\nSidney\nTommie\nVernon\nBroderick\nBuddy\nCaleb\nDedrick\nDewey\nErvin\nGilbert\nGlen\nIvan\nJayson\nKelsey\nKenny\nPercy\nPreston\nRodrick\nTorrey\nTrenton\nVirgil\nWendell\nXavier\nAndrea\nAngelo\nArchie\nBrady\nCedrick\nChester\nConnie\nCortney\nDan\nDemond\nDerrell\nEllis\nEmanuel\nEmmett\nForrest\nHarvey\nJose\nKarl\nKelly\nMarion\nRamon\nRoland\nRufus\nSammy\nStuart\nTaurus\nTavares\nTaylor\nTelly\nTimmy\nWaylon\nBrandy\nCary\nDarrius\nDave\nDemarcus\nDonnell\nElbert\nElijah\nEvan\nGene\nGrady\nGuy\nIssac\nJammie\nLloyd\nLuke\nMike\nNakia\nNeal\nReggie\nRodriquez\nRoss\nRoyce\nShedrick\nTheodore\nTrent\nTrevor\nTyson\nWilbert\nAl\nAntoine\nAntonia\nAntwan\nBennie\nBret\nCarey\nChadrick\nCleveland\nDarnell\nDarrin\nDeandre\nFelix\nHugh\nJarrett\nJeromy\nJoesph\nJohnathon\nJudson\nKelton\nKenric\nLamont\nLandon\nLuther\nManuel\nMarvis\nQuincey\nRandal\nRaphael\nShelby\nStarsky\nStevie\nStewart\nTed\nTom\nWallace\nWill\nWoodrow\nAlexis\nAlfonzo\nAmanda\nAvery\nBarrett\nBenji\nBennett\nBill\nBraxton\nBrenton\nBrock\nBrooks\nCarter\nDarrick\nDedric\nDejuan\nDemetris\nDemetrus\nDetrick\nDominick\nDonovan\nDrew\nDusty\nEdgar\nErick\nFred\nGarrick\nGordon\nHarley\nHollis\nIra\nJackson\nJacques\nJake\nJamal\nJammy\nJerrod\nKareem\nKorey\nKurt\nLevi\nLindsey\nMack\nMarco\nNelson\nNigel\nNoel\nOliver\nRandolph\nReuben\nRex\nRicardo\nRodregus\nRonny\nRusty\nSam\nShaun\nTarus\nTeddy\nTitus\nTobias\nToriano\nTorrance\nVance\nWhitney\nWillard\nChristopher\nJames\nJason\nMichael\nWilliam\nJohn\nDavid\nJeremy\nRobert\nKevin\nJoseph\nCharles\nBrian\nTimothy\nJoshua\nMatthew\nJonathan\nDaniel\nAnthony\nThomas\nEric\nSteven\nRichard\nKenneth\nDerrick\nBrandon\nGregory\nMark\nJeffrey\nPatrick\nMarcus\nStephen\nBenjamin\nAdam\nBradley\nWesley\nDonald\nTerry\nAndrew\nWillie\nAntonio\nLarry\nJerry\nPhillip\nCorey\nRyan\nBilly\nRonald\nChad\nJeffery\nBobby\nJohnny\nShannon\nPaul\nRodney\nEdward\nNathan\nGeorge\nSamuel\nJustin\nGary\nBryan\nJimmy\nKelvin\nScott\nJamie\nKeith\nTony\nCarlos\nTravis\nCedric\nRoderick\nWalter\nAaron\nRandall\nReginald\nJacob\nShawn\nCory\nDennis\nTommy\nDouglas\nRussell\nJermaine\nRonnie\nRandy\nEddie\nShane\nCurtis\nTerrance\nMicheal\nJeremiah\nDemetrius\nRoger\nArthur\nAndre\nJesse\nJoel\nDarrell\nNicholas\nMaurice\nBarry\nRicky\nDerek\nBrent\nHenry\nLee\nRaymond\nSean\nCraig\nCasey\nJoe\nJoey\nJon\nTerrence\nTodd\nTyrone\nAdrian\nAlan\nCalvin\nDustin\nDanny\nFrederick\nRoy\nBrad\nFredrick\nHarold\nAllen\nFrank\nStanley\nChris\nJody\nErnest\nKristopher\nMarvin\nClinton\nCornelius\nGerald\nJerome\nCourtney\nDewayne\nJared\nAndy\nKendrick\nNathaniel\nQuincy\nZachary\nJessie\nCarl\nJohnathan\nAlbert\nCameron\nChadwick\nHeath\nBrett\nLance\nRickey\nAshley\nGabriel\nClarence\nDaryl\nMarlon\nMicah\nPhilip\nScotty\nHoward\nLawrence\nTavares\nClifford\nClifton\nDamon\nJackie\nLeon\nMario\nByron\nClayton\nJack\nJarrod\nKerry\nShaun\nTroy\nCarlton\nJay\nPeter\nAlexander\nBruce\nDexter\nMelvin\nSteve\nVictor\nWarren\nBradford\nKyle\nLewis\nAlvin\nCharlie\nClint\nFred\nGlenn\nLeonard\nTracy\nVincent\nDarius\nEdwin\nFreddie\nHerbert\nKelly\nLeslie\nNorman\nQuentin\nSeth\nDesmond\nDonnie\nDwayne\nJonathon\nWayne\nAlfred\nDarryl\nEugene\nLouis\nMitchell\nRodrick\nTerrell\nCecil\nDamion\nDevin\nDwight\nJimmie\nJohnnie\nKenny\nLonnie\nMarty\nMickey\nOrlando\nRalph\nSpencer\nStuart\nDon\nEarl\nMarshall\nToby\nAlex\nBroderick\nLamar\nOtis\nWade\nBernard\nBlake\nBryant\nEarnest\nJulius\nOmar\nPreston\nRay\nScottie\nSherman\nStacy\nCarey\nClay\nElijah\nEvan\nFranklin\nIsaac\nJamey\nJuan\nMilton\nRobin\nVernon\nAlonzo\nAlton\nDemarcus\nGlen\nGrady\nHerman\nKenyatta\nMarc\nMartin\nMyron\nRashad\nRico\nSidney\nTerence\nTommie\nAubrey\nCody\nDale\nDamien\nDedrick\nDerick\nDonny\nFrankie\nJarvis\nJohnathon\nKunta\nLeroy\nLester\nLuther\nMarco\nMarquis\nNoah\nQuinton\nReggie\nRocky\nRoosevelt\nTed\nTyler\nAlfonso\nCary\nGeoffrey\nGordon\nHarry\nHorace\nIan\nJamal\nKarl\nLorenzo\nMarion\nSammy\nSylvester\nWillis\nAntonia\nBen\nCedrick\nDamian\nDan\nDarren\nDeandre\nEdmund\nGreg\nJim\nKorey\nMatt\nMorris\nRoland\nRory\nTaylor\nTorrey\nTrent\nTrevor\nXavier\nAvery\nBill\nBrock\nCaleb\nChristian\nDarrick\nDelvin\nDemetric\nDemetrice\nErik\nFloyd\nHarvey\nJarrett\nKendall\nLamont\nLevar\nLloyd\nLuke\nNeil\nPercy\nRobbie\nStevie\nAntoine\nAustin\nBart\nChester\nClark\nClyde\nDrew\nEmanuel\nErick\nGarrett\nGarry\nJayson\nJeff\nJeromy\nJonah\nJulian\nKirk\nMike\nNeal\nSedrick\nShelton\nTheodore\nWaylon\nWendell\nWill\nAntwan\nBrannon\nChuck\nCornelious\nCortney\nDallas\nDarrius\nDedric\nDuane\nGene\nHarrison\nHugh\nHunter\nIvan\nJackson\nJerald\nJerrod\nJosh\nJudson\nKenya\nKristofer\nLavar\nLesley\nLucas\nMarkus\nMathew\nNoel\nRobby\nRuben\nRusty\nTeddy\nThaddeus\nTimmy\nTorrance\nTrenton\nAdrain\nAl\nAndrea\nBrady\nBrooks\nBuddy\nChauncey\nCleveland\nDarrel\nDave\nDeon\nDewey\nEdmond\nElliott\nElmer\nEverett\nFrancis\nFreddy\nGrant\nHayward\nHubert\nJacques\nJamison\nJammie\nKareem\nKris\nLandon\nLeo\nMalcolm\nMiguel\nMorgan\nNapoleon\nNelson\nOliver\nRamon\nRandal\nReginal\nRicardo\nRoyce\nRufus\nShelby\nStacey\nTaurus\nTorey\nTory\nTremayne\nWilson\nWinston\nAmos\nAnderson\nAngelo\nArnold\nArtie\nBakari\nBenji\nBenny\nBret\nBrook\nChico\nClaude\nCorrey\nDana\nDante\nDarian\nDarnell\nDarrin\nDavy\nDejuan\nDelvecchio\nDemarco\nDemetris\nDemetruis\nDemond\nDominic\nDonnell\nElbert\nElliot\nEllis\nElton\nEmmett\nErrick\nEthan\nForrest\nGarland\nGilbert\nGuy\nIra\nIrvin\nJake\nJamel\nJamil\nJerrell\nJunior\nKavin\nKedric\nKeldrick\nKurt\nLabarron\nLamarcus\nMarlin\nMarques\nMiles\nNicky\nPerry\nRhett\nRodriquez\nRon\nSam\nSimon\nTito\nTom\nTremaine\nWallace\nWilbert\nJames\nChristopher\nMichael\nJason\nJohn\nWilliam\nRobert\nDavid\nJeremy\nJoshua\nTimothy\nJoseph\nBrian\nMatthew\nKevin\nCharles\nJonathan\nAnthony\nDaniel\nSteven\nRichard\nEric\nThomas\nBrandon\nAdam\nMarcus\nKenneth\nJeffrey\nNicholas\nStephen\nDerrick\nBenjamin\nJustin\nMark\nAndrew\nPatrick\nBradley\nWillie\nLarry\nDonald\nCorey\nPaul\nPhillip\nGregory\nWesley\nRyan\nAntonio\nChad\nRonald\nJeffery\nRodney\nSamuel\nTerry\nJerry\nGeorge\nJimmy\nJohnny\nNathan\nGary\nBobby\nKeith\nShannon\nBilly\nEdward\nBryan\nShawn\nAaron\nCedric\nTony\nCurtis\nDemetrius\nScott\nTravis\nJamie\nKelvin\nReginald\nCarlos\nRicky\nWalter\nJacob\nJoel\nDennis\nRandall\nRoderick\nRussell\nAdrian\nDerek\nDouglas\nFrederick\nCory\nMaurice\nRoger\nShane\nCasey\nKristopher\nRandy\nPhilip\nShaun\nTommy\nJeremiah\nJoey\nCarl\nDustin\nJared\nTodd\nGerald\nHenry\nDanny\nLee\nJoe\nJon\nAlan\nAllen\nBarry\nJesse\nMicheal\nTerrance\nZachary\nHeath\nMelvin\nRonnie\nRoy\nAndre\nCourtney\nDarrell\nDewayne\nCalvin\nTyrone\nAshley\nMarvin\nNathaniel\nAlvin\nClinton\nEddie\nHarold\nJohnathan\nBrent\nDamon\nJermaine\nRaymond\nTerrence\nClarence\nHoward\nJerome\nClifton\nDonnie\nKendrick\nCornelius\nJay\nSean\nCraig\nJessie\nRickey\nJody\nLawrence\nPeter\nStanley\nArthur\nErnest\nTroy\nBrad\nChadwick\nCharlie\nFredrick\nAlbert\nGabriel\nKerry\nLance\nDamien\nWarren\nClifford\nFrank\nFranklin\nHerman\nMartin\nVincent\nBruce\nChris\nErik\nKyle\nLucas\nSteve\nByron\nKenny\nLeonard\nBrett\nClayton\nDaryl\nDesmond\nEarl\nJack\nJarrod\nMarlon\nNorman\nQuincy\nScotty\nCecil\nDarryl\nDexter\nMarshall\nMitchell\nAlex\nCameron\nDarren\nDerick\nDwight\nLeon\nEdwin\nJarvis\nLonnie\nMario\nWayne\nAlexander\nLewis\nMarco\nTerrell\nThaddeus\nAlfred\nAndy\nAustin\nClint\nDwayne\nJonathon\nOrlando\nPreston\nRodrick\nToby\nBlake\nBryant\nCarlton\nCedrick\nEugene\nGlenn\nJackie\nJulius\nQuentin\nRay\nSeth\nDon\nFred\nIsaac\nJake\nJamey\nJimmie\nLester\nMicah\nRusty\nScottie\nTavares\nTorrey\nClyde\nDarius\nElijah\nEvan\nFrankie\nHerbert\nJosh\nLouis\nRalph\nTerence\nDeandre\nDelvin\nEarnest\nJuan\nLamar\nQuinton\nStuart\nTracy\nVictor\nAlonzo\nAntoine\nBen\nDallas\nDemarcus\nDemetris\nForrest\nGeoffrey\nIan\nKelly\nMalcolm\nMilton\nMorris\nRobin\nTyler\nAdrain\nCaleb\nChester\nChristian\nClaude\nDemetric\nHunter\nMack\nMarty\nOtis\nSpencer\nStevie\nTaurus\nVernon\nAntonia\nBennie\nDarrick\nDemarco\nErick\nGordon\nIvan\nKendall\nLandon\nOscar\nPercy\nPerry\nRoosevelt\nSedrick\nStacey\nBernard\nBroderick\nCortney\nDale\nDamian\nDamion\nDevin\nHarvey\nJohnathon\nJulian\nKenyatta\nKirk\nLeslie\nLorenzo\nMarc\nMarion\nMarques\nMarquis\nMyron\nOmar\nRobbie\nRoland\nSherman\nTheodore\nTimmy\nWaylon\nXavier\nAhmad\nAndra\nAngelo\nAubrey\nBrannon\nDan\nDemetrice\nDemond\nDonell\nDonny\nEthan\nEverett\nGlen\nGreg\nJerrod\nJohnnie\nJordan\nKenyon\nKurt\nLuke\nMarlin\nMickey\nNeal\nNelson\nRandal\nReggie\nRufus\nSidney\nTommie\nToney\nTorey\nTrevor\nTyson\nWade\nAlton\nAndrea\nBrock\nBryon\nCary\nChadrick\nCleveland\nColin\nDarnell\nDarrius\nDedrick\nDevon\nDewey\nDuane\nEdmond\nEdmund\nElton\nErvin\nErwin\nFelix\nGene\nHarry\nJerald\nJudson\nKedrick\nLeo\nLeroy\nLionel\nLloyd\nMike\nNorris\nRamon\nRhett\nSammie\nTarus\nTavaris\nTory\nTrenton\nWallace\nWilson\nAl\nAntione\nAntwan\nArchie\nBart\nBeau\nBenny\nBradford\nBuddy\nCarey\nCody\nDeric\nDominic\nDominick\nDonta\nDrew\nEmanuel\nFernando\nFloyd\nFrancis\nFreddie\nGarrett\nGarry\nGavin\nGraham\nHorace\nJamison\nJammie\nJarred\nJayson\nJeff\nJerrell\nJim\nJose\nKarl\nKenji\nKenya\nLafayette\nLamont\nLuther\nMathew\nMatt\nMorgan\nNeil\nNicky\nOliver\nQuintin\nRashad\nRex\nRico\nRoyce\nSam\nSammy\nShedrick\nTobias\nTorrance\nWendell\nWill\nWinston\nAmos\nAnton\nAntuan\nAvery\nClay\nDana\nDarin\nDarrin\nDean\nDeon\nDesmon\nDraper\nEdgar\nEmmanuel\nEzzard\nGerry\nGrady\nHarrison\nHollis\nHugh\nJabari\nJamar\nJereme\nKristoffer\nLamarcus\nMarcel\nNathanial\nNickolas\nNigel\nNoah\nQuenton\nReginal\nRobby\nRoss\nSimon\nSolomon\nTavarus\nTerance\nTracey\nTucker\nTyron\nVan\nWhitney\nZachery\nZackery\nChristopher\nMichael\nJames\nJason\nJohn\nJeremy\nWilliam\nDavid\nRobert\nJoshua\nJoseph\nMatthew\nBrian\nCharles\nTimothy\nJonathan\nKevin\nDaniel\nAnthony\nEric\nAdam\nBrandon\nThomas\nNicholas\nRichard\nSteven\nJustin\nPatrick\nKenneth\nJeffrey\nMarcus\nDerrick\nBradley\nBenjamin\nStephen\nGregory\nSamuel\nTravis\nMark\nLarry\nAndrew\nAntonio\nWillie\nWesley\nPhillip\nChad\nTerry\nRyan\nDonald\nCorey\nNathan\nJohnny\nBobby\nEdward\nJeffery\nJerry\nGary\nPaul\nGeorge\nJacob\nKeith\nBilly\nRodney\nRonald\nJamie\nScott\nJimmy\nRoderick\nTony\nBryan\nAaron\nKelvin\nReginald\nDustin\nJesse\nCedric\nCurtis\nWalter\nDerek\nFrank\nRicky\nShawn\nDennis\nRandall\nRandy\nZachary\nDemetrius\nTommy\nRussell\nShannon\nEddie\nFrederick\nJared\nMicheal\nMaurice\nCarlos\nJoel\nKyle\nMario\nShaun\nTerrance\nDanny\nCory\nDouglas\nJermaine\nCalvin\nLee\nMarvin\nHenry\nRaymond\nAllen\nClinton\nJoe\nRoger\nTodd\nTyrone\nShane\nBarry\nCasey\nDarrell\nFredrick\nJohnathan\nKristopher\nAdrian\nBrent\nHarold\nJerome\nMelvin\nPhilip\nVictor\nAndre\nJeremiah\nJoey\nJon\nScotty\nAlan\nAshley\nCarl\nDarius\nKendrick\nClarence\nArthur\nBrad\nCourtney\nHeath\nSean\nDamien\nJessie\nMitchell\nStanley\nQuincy\nRonnie\nCornelius\nLance\nNathaniel\nTerrence\nTroy\nWarren\nLucas\nAlbert\nRoy\nChadwick\nErik\nSeth\nCharlie\nChris\nClifton\nDamon\nDonnie\nFranklin\nAlexander\nDesmond\nJonathon\nLawrence\nCraig\nErnest\nByron\nJack\nJay\nMicah\nRickey\nAlex\nDarryl\nGabriel\nKerry\nVincent\nAlvin\nBrett\nBruce\nJulius\nClifford\nDewayne\nDwight\nMartin\nClayton\nJody\nKenny\nLeon\nTerrell\nAlfred\nAndy\nIsaac\nTyler\nCameron\nDerick\nGerald\nGlenn\nJarvis\nPeter\nScottie\nClint\nDaryl\nLeslie\nLewis\nMarlon\nMarshall\nQuinton\nSteve\nTerence\nThaddeus\nWayne\nBryant\nCecil\nEdwin\nEugene\nHoward\nLeonard\nTavares\nBernard\nHerbert\nHerman\nJamey\nLonnie\nRay\nCarey\nDedrick\nDon\nFreddie\nJimmie\nLouis\nMarion\nPerry\nRalph\nRocky\nRodrick\nToby\nDexter\nFred\nRobin\nCody\nIan\nJarrod\nKendall\nLuke\nOtis\nPreston\nAntwan\nBen\nBlake\nClyde\nDarren\nDwayne\nEarnest\nJerrod\nKelly\nLandon\nLorenzo\nMarty\nMathew\nOrlando\nQuentin\nRusty\nSidney\nWaylon\nDale\nDemarcus\nDonny\nGeoffrey\nJohnnie\nKirk\nLloyd\nNorman\nRobbie\nSherman\nTrenton\nWillis\nAlonzo\nAustin\nBrock\nCarlton\nCedrick\nChristian\nDemario\nEmanuel\nFrankie\nGrant\nHarvey\nJackie\nJosh\nJulian\nLamar\nMoses\nRodriquez\nRoosevelt\nStuart\nVernon\nXavier\nAhmad\nAubrey\nBenny\nBroderick\nChadrick\nDarrius\nDeandre\nDetrick\nDominic\nDuane\nEarl\nElijah\nEllis\nErick\nHarry\nJordan\nJuan\nNoah\nRayford\nReggie\nRobby\nTaylor\nTrevor\nWendell\nAllan\nAntonia\nArchie\nBennie\nBradford\nDan\nDemetric\nEdmond\nEthan\nEvan\nForrest\nGarrett\nKarl\nLeroy\nLogan\nLuther\nMalcolm\nMarquis\nMilton\nMyron\nNeil\nOmar\nRandal\nRon\nSimon\nTheodore\nTremayne\nWillard\nAntoine\nBeau\nBrannon\nCaleb\nClaude\nCleveland\nCortney\nDevin\nFloyd\nGreg\nHorace\nJackson\nJamal\nJamar\nJasper\nJayson\nJeff\nJeremie\nMarc\nOliver\nRoss\nSpencer\nWade\nWhitney\nWill\nAlexis\nAlton\nAngelo\nAntwain\nBrady\nBrendan\nChester\nClark\nDamion\nDarrick\nDedric\nDelvin\nDerrell\nDonnell\nEdgar\nFredric\nGarry\nGlen\nGordon\nHunter\nIssac\nJarod\nJefferson\nJoesph\nJohnathon\nKurt\nLamont\nLester\nMatt\nNeal\nOwen\nParker\nPercy\nRex\nRicardo\nRufus\nStacey\nStacy\nTorrey\nTracy\nTrent\nTyree\nVan\nZackary\nAndrea\nBranden\nColin\nCortez\nDallas\nDarian\nDarnell\nDeangelo\nDemetris\nDeon\nDonta\nDusty\nElton\nEmmanuel\nEmmett\nFernando\nFrancis\nGuy\nHugh\nIra\nJake\nJammie\nJarrett\nJerald\nJim\nJonah\nJudson\nKareem\nKedrick\nKenya\nKenyatta\nMarkus\nMickey\nMorgan\nMyles\nOscar\nRenaldo\nRico\nRodger\nSammie\nSammy\nStewart\nTavaris\nTed\nTory\nZachery\nAnderson\nAntwon\nAshford\nBradly\nBrenton\nBret\nChauncey\nColeman\nCordell\nDameon\nDandre\nDante\nDejuan\nDemetruis\nDemond\nDereck\nDraper\nElbert\nEli\nElliott\nElvin\nEzekiel\nFrederic\nGavin\nGilbert\nGrady\nHank\nHenderson\nHubert\nIvan\nJennifer\nJereme\nJeromy\nKalvin\nKeon\nLamarcus\nLashawn\nLionel\nMarlin\nMorris\nMurray\nNelson\nNicholaus\nNicolas\nRashad\nReginal\nRoland\nSam\nSedrick\nTeddy\nTim\nTimmy\nTobias\nTommie\nTorrance\nTremaine\nTristan\nUlysses\nVirgil\nChristopher\nMichael\nJames\nJason\nJoshua\nWilliam\nJohn\nDavid\nJeremy\nRobert\nJonathan\nJoseph\nMatthew\nDaniel\nBrian\nTimothy\nCharles\nJustin\nKevin\nBrandon\nEric\nThomas\nAnthony\nAdam\nSteven\nRichard\nNicholas\nKenneth\nDerrick\nPatrick\nAndrew\nBenjamin\nJeffrey\nStephen\nBradley\nMarcus\nRyan\nTravis\nSamuel\nPaul\nAntonio\nMark\nWillie\nLarry\nWesley\nChad\nDonald\nPhillip\nNathan\nDustin\nKeith\nRonald\nCorey\nGregory\nTerry\nGary\nDerek\nJeffery\nEdward\nJerry\nBilly\nRodney\nBobby\nJacob\nJohnny\nAaron\nBryan\nCurtis\nJamie\nTony\nGeorge\nScott\nReginald\nJimmy\nJared\nShawn\nRandall\nRoderick\nJesse\nWalter\nCarlos\nRussell\nCourtney\nJeremiah\nCedric\nEddie\nHenry\nDemetrius\nRandy\nRaymond\nJohnathan\nMicheal\nCarl\nShaun\nLee\nCasey\nClinton\nDouglas\nKelvin\nZachary\nDanny\nMario\nCalvin\nRonnie\nJermaine\nRicky\nSean\nTommy\nAlan\nBrent\nDennis\nAdrian\nFrederick\nTerrance\nFrank\nMaurice\nNathaniel\nJoe\nKendrick\nShannon\nJoey\nAllen\nByron\nDarrell\nJoel\nPhilip\nAndre\nBarry\nCory\nShane\nJonathon\nArthur\nLance\nMarvin\nErik\nTyrone\nJon\nTodd\nJerome\nPeter\nRoy\nGabriel\nGerald\nJessie\nAshley\nClint\nMelvin\nAlbert\nBrad\nFredrick\nTerrence\nDarius\nKyle\nRoger\nBruce\nCharlie\nClarence\nCornelius\nDarryl\nKerry\nMicah\nSeth\nBrett\nCraig\nFranklin\nClifford\nDewayne\nLuke\nMitchell\nAustin\nHarold\nKristopher\nLewis\nRickey\nChris\nClifton\nStanley\nTerrell\nTroy\nAlexander\nGlenn\nMartin\nDesmond\nDwight\nEarl\nHeath\nLawrence\nScotty\nCameron\nDonnie\nIan\nJay\nJimmie\nWarren\nChadwick\nErnest\nEugene\nJack\nJarrod\nJarvis\nLonnie\nMarlon\nTavares\nTerence\nAlfred\nAndy\nClayton\nDamien\nIsaac\nJohnnie\nQuincy\nRalph\nRay\nSteve\nVictor\nBlake\nBryant\nCarlton\nDerick\nDusty\nJackie\nJody\nLeonard\nLucas\nMarco\nQuentin\nVincent\nDamon\nKenny\nLeon\nPreston\nCecil\nClay\nEarnest\nEdwin\nHunter\nKendall\nQuinton\nRodrick\nRusty\nScottie\nAlex\nBeau\nHoward\nJamaal\nJuan\nJulius\nKelly\nNorman\nTaylor\nTrent\nWayne\nAlvin\nChristian\nDaryl\nHarry\nHorace\nJohnathon\nLeslie\nLouis\nPerry\nRicardo\nTyler\nCaleb\nDexter\nGrant\nJosh\nMarshall\nMorris\nOtis\nWade\nBernard\nDrew\nGarrett\nLamar\nLloyd\nOmar\nRobin\nTheodore\nWendell\nDarren\nDevin\nDon\nEvan\nFreddie\nGeoffrey\nGrady\nHerbert\nJordan\nLeroy\nLuther\nMarc\nMarquis\nMyron\nRoland\nSherman\nTommie\nTracy\nWaylon\nXavier\nAbraham\nAlonzo\nBart\nBradford\nBrannon\nChadrick\nCleveland\nDale\nDarrius\nDeandre\nDemarcus\nErick\nFloyd\nHugh\nIra\nJamey\nJonah\nJudson\nJulian\nLorenzo\nRoosevelt\nSidney\nStacy\nVernon\nAmos\nBen\nBennie\nClaude\nCortney\nDemario\nDominic\nElijah\nEllis\nJeff\nMathew\nMickey\nOrlando\nOscar\nRobbie\nSylvester\nTeddy\nThaddeus\nWinston\nAngelo\nAntwan\nCedrick\nDallas\nDemetris\nForrest\nGene\nHerman\nJarred\nJarrett\nJerald\nJeremie\nJerrod\nMalcolm\nMarlin\nMarques\nMarty\nMiles\nMilton\nRashad\nReggie\nRex\nRoss\nTrenton\nWillis\nAntione\nAntoine\nArchie\nBenny\nBroderick\nClyde\nCody\nDetrick\nEdgar\nEverett\nFrankie\nGuy\nJarod\nKirk\nLester\nMarkeith\nOliver\nSedrick\nShelby\nSpencer\nStuart\nTrevor\nTyson\nAdrain\nAlton\nAntonia\nBo\nColin\nDarrick\nDemarco\nDonny\nDwayne\nElton\nFernando\nFred\nGarry\nJake\nJamar\nKarl\nLabarron\nLevi\nOwen\nRenaldo\nRico\nRodriquez\nRufus\nSammy\nSeneca\nShedrick\nTavaris\nTory\nTrey\nWilbert\nWill\nZachery\nAndrae\nAndrea\nAsa\nAubrey\nBill\nBrock\nCary\nChester\nDan\nDarnell\nDarrin\nDemetrice\nDemond\nElliot\nElvin\nEthan\nGerry\nHarrison\nHubert\nIssac\nJabari\nJamal\nJamil\nJamison\nJayson\nJermey\nJoesph\nKalvin\nKenyatta\nLamont\nLavon\nLindsey\nMack\nMajor\nMarion\nMarkus\nMason\nMorgan\nMurray\nNathanael\nNeil\nNicky\nPercy\nRandolph\nRocky\nRon\nSedric\nSolomon\nStevie\nWallace\nWhitney\nWilson\nZachariah\nZackary\nAndra\nAnton\nAntwaun\nAntwon\nBrenton\nBuddy\nCarlo\nDamian\nDarrel\nDedrick\nDylan\nEdmond\nElliott\nEmanuel\nGarrick\nGilbert\nGraham\nGreg\nGrover\nHarvey\nIvan\nJackson\nJasper\nJereme\nJeremey\nJeromy\nKent\nKimberly\nKurt\nLandon\nLeland\nLeo\nLionel\nLyle\nMonte\nNed\nNorris\nQuenton\nQuintin\nRafael\nRobby\nSam\nSammie\nStewart\nTed\nTitus\nToby\nTorey\nTorrance\nTramaine\nTremaine\nTyrus\nVirgil\nChristopher\nJames\nMichael\nJoshua\nJason\nJohn\nJonathan\nDavid\nMatthew\nWilliam\nJeremy\nRobert\nBrandon\nJoseph\nDaniel\nTimothy\nJustin\nCharles\nAnthony\nBrian\nAdam\nThomas\nEric\nKevin\nRichard\nSteven\nKenneth\nBenjamin\nPatrick\nNicholas\nAndrew\nMarcus\nStephen\nRyan\nJeffrey\nDerrick\nTravis\nBradley\nDustin\nGregory\nSamuel\nLarry\nMark\nNathan\nPaul\nPhillip\nAntonio\nWillie\nWesley\nDonald\nBilly\nChad\nCorey\nEdward\nRonald\nJeffery\nTerry\nDerek\nKeith\nJesse\nJacob\nGary\nGeorge\nAaron\nBobby\nRandall\nCurtis\nBryan\nJohnny\nZachary\nReginald\nRodney\nScott\nJared\nJimmy\nRandy\nTony\nJamie\nJerry\nJeremiah\nCarlos\nDouglas\nKelvin\nNathaniel\nCedric\nCasey\nRicky\nRoderick\nRussell\nShawn\nMicheal\nTerrance\nDemetrius\nWalter\nBrad\nJermaine\nJohnathan\nAdrian\nEddie\nHenry\nClinton\nDennis\nCarl\nCory\nMaurice\nRoger\nTommy\nAllen\nCalvin\nJonathon\nRaymond\nShannon\nAlan\nJessie\nJoe\nKyle\nPhilip\nCourtney\nDarrell\nJoey\nRonnie\nJoel\nLee\nLucas\nMelvin\nAndre\nSean\nBarry\nByron\nCraig\nFrank\nFrederick\nMarvin\nGerald\nVictor\nBlake\nDanny\nJon\nKendrick\nCornelius\nShane\nArthur\nTyler\nBrent\nJerome\nClifton\nClarence\nTodd\nTyrone\nVincent\nJordan\nLance\nShaun\nAlexander\nAshley\nDarius\nMitchell\nQuentin\nRoy\nAlex\nBrett\nChadwick\nDarryl\nFranklin\nFredrick\nMario\nBruce\nDewayne\nErik\nWarren\nIsaac\nJody\nLawrence\nTerrence\nAustin\nCharlie\nHeath\nJarvis\nKelly\nLeon\nRickey\nSeth\nWayne\nClayton\nClint\nDaryl\nKristopher\nDonnie\nJarrod\nStanley\nBryant\nGavin\nHarold\nScotty\nTroy\nBradford\nEdwin\nKenny\nClifford\nDusty\nJohnathon\nLeonard\nMicah\nAndy\nDerick\nDesmond\nEvan\nGabriel\nJay\nKerry\nQuinton\nRalph\nScottie\nTerrell\nAlbert\nAlfred\nAlvin\nCaleb\nCameron\nMarshall\nNoah\nPeter\nDon\nDwight\nGarrett\nJack\nLouis\nMarquis\nSteve\nTommie\nAntwan\nBernard\nClay\nEarnest\nEugene\nHerman\nHoward\nKendall\nLloyd\nNorman\nPreston\nChester\nDexter\nEmanuel\nFrankie\nHunter\nJeff\nJulius\nMarc\nMyron\nOrlando\nQuincy\nRufus\nSpencer\nCecil\nChris\nCody\nDallas\nDamien\nErick\nJamaal\nJohnnie\nJulian\nLeroy\nLonnie\nLuke\nMarion\nRay\nSidney\nTavares\nTerence\nTrenton\nWallace\nBeau\nBennie\nDemarcus\nDrew\nDwayne\nJuan\nJudson\nLewis\nMathew\nMilton\nPerry\nRicardo\nRusty\nSherman\nStuart\nTaylor\nXavier\nAllan\nCedrick\nDamian\nDemario\nEarl\nErnest\nEthan\nFreddie\nGarry\nGlenn\nIan\nJimmie\nLorenzo\nMartin\nMorgan\nMorris\nNelson\nRocky\nRoss\nAngelo\nCarlton\nChadrick\nChristian\nClark\nDale\nDemetrice\nDevin\nElijah\nGrady\nGrant\nJarred\nRex\nRobin\nStewart\nTitus\nTracy\nTrent\nWade\nAlton\nAvery\nBen\nBranden\nDarrius\nDeandre\nFloyd\nFred\nGeoffrey\nGlen\nHarry\nHerbert\nHugh\nJonah\nLeslie\nMax\nOscar\nRobbie\nRoosevelt\nSam\nToby\nWendell\nWill\nWinston\nAhmad\nAntoine\nAubrey\nBroderick\nClaude\nCortez\nElliott\nForrest\nJackson\nJake\nJarrett\nLamarcus\nLane\nLester\nLevi\nLogan\nMarkus\nTheodore\nTimmy\nTobias\nTrevor\nAntonia\nArron\nBrady\nClyde\nCortney\nDarrel\nDarren\nEllis\nFernando\nFrancis\nGordon\nIvan\nJackie\nJarod\nJim\nJonas\nKarl\nKirk\nLamar\nLeo\nMarchello\nMarques\nMason\nMiguel\nMoses\nNicolas\nRodriguez\nRodriquez\nSkylar\nSylvester\nToney\nTristan\nWillis\nAndrae\nAndrea\nAntwon\nBo\nBrannon\nBrooks\nCarey\nDana\nDandre\nDarnell\nDelvin\nDemarco\nDemetric\nDemetris\nDeon\nDonny\nDylan\nElton\nEmmanuel\nGreg\nGreggory\nGuy\nIra\nIssac\nJamar\nJasper\nJayson\nJerald\nJerrell\nKalvin\nKareem\nKent\nLandon\nLemuel\nMarlon\nOliver\nOmar\nPierre\nQuintin\nRandal\nReggie\nRodger\nRoyce\nSammie\nSammy\nSchuyler\nSimon\nSolomon\nThaddeus\nTierra\nTiffany\nTorey\nTyson\nVan\nVirgil\nWaylon\nWilson\nZachery\nZackery\nAl\nAlexis\nAntwain\nBart\nBenny\nBrant\nCarlo\nChuck\nColin\nCyrus\nDamion\nDan\nDavis\nDejuan\nDetrick\nDewey\nHarley\nIsaiah\nJennifer\nJermarcus\nJerod\nJerrod\nJosh\nKellen\nKenya\nKeon\nLamario\nLamont\nLionel\nLuther\nMarcel\nMarlin\nMarty\nMatt\nMike\nOtis\nOwen\nReco\nReuben\nRhett\nRon\nSedrick\nShedrick\nTaurus\nTavaris\nTed\nTremaine\nTremayne\nWilbert\nWinfred\nWoodrow\nZackary\nChristopher\nJames\nMichael\nJoshua\nJason\nWilliam\nJohn\nMatthew\nDavid\nJonathan\nRobert\nJustin\nBrandon\nJoseph\nJeremy\nDaniel\nCharles\nTimothy\nAdam\nAnthony\nThomas\nBrian\nKevin\nSteven\nEric\nRichard\nAndrew\nNicholas\nPatrick\nKenneth\nBenjamin\nMarcus\nStephen\nJeffrey\nBradley\nRyan\nDustin\nGregory\nDerrick\nMark\nPhillip\nAaron\nWesley\nSamuel\nAntonio\nPaul\nJeffery\nLarry\nTravis\nWillie\nNathan\nDonald\nBobby\nTerry\nJacob\nJohnny\nBilly\nZachary\nGeorge\nRoderick\nRonald\nCorey\nJimmy\nEdward\nJared\nChad\nGary\nKeith\nScott\nJerry\nJesse\nDerek\nJohnathan\nRandall\nReginald\nJamie\nBryan\nJoel\nKelvin\nTony\nRussell\nTerrance\nCurtis\nRodney\nPhilip\nCasey\nRandy\nClinton\nJeremiah\nRicky\nCalvin\nShawn\nMicheal\nKyle\nBlake\nDouglas\nCedric\nCourtney\nMaurice\nTyler\nWalter\nAllen\nEddie\nNathaniel\nHenry\nLee\nCarl\nFrank\nJermaine\nJonathon\nAlan\nJessie\nCarlos\nDennis\nJoe\nRoy\nMitchell\nRoger\nRonnie\nRaymond\nSean\nDarryl\nGabriel\nMarvin\nCory\nDemetrius\nFrederick\nGerald\nShannon\nLucas\nClayton\nJordan\nAdrian\nAlexander\nBrett\nDarrell\nTodd\nDarius\nArthur\nBrent\nRickey\nTerrence\nBruce\nKristopher\nMario\nStanley\nDanny\nJarrod\nJoey\nKendrick\nLance\nTroy\nClifford\nCornelius\nCraig\nMelvin\nShaun\nBarry\nCaleb\nClarence\nLawrence\nAndre\nByron\nQuentin\nSeth\nIsaac\nVictor\nHarold\nJon\nQuinton\nAlbert\nJarvis\nShane\nEarnest\nHoward\nLeonard\nNoah\nNorman\nTommy\nAlex\nCameron\nJamaal\nJerome\nMicah\nRay\nTerence\nAlvin\nDusty\nErnest\nFredrick\nJohnathon\nAustin\nBrad\nBryant\nChase\nErik\nHeath\nJulius\nTyrone\nAshley\nChadwick\nGlenn\nIan\nJack\nJamal\nPreston\nCharlie\nElijah\nEvan\nFranklin\nLeslie\nLuke\nMartin\nWayne\nAntoine\nChris\nClifton\nClint\nCody\nDewayne\nKerry\nPeter\nDarren\nLandon\nMarco\nPerry\nRusty\nScottie\nScotty\nCarlton\nDexter\nDon\nEdwin\nGeoffrey\nHerbert\nJackie\nJimmie\nLeon\nMarquis\nOmar\nRodrick\nCecil\nDonnie\nEugene\nGarrett\nJohnnie\nLewis\nMathew\nQuincy\nSpencer\nTaylor\nTheodore\nAlfred\nAntwan\nClay\nDamien\nForrest\nJamar\nMarc\nOscar\nRocky\nSidney\nTristan\nWarren\nDarrius\nDaryl\nDemarcus\nDevin\nDwight\nKelly\nLorenzo\nMarshall\nVincent\nBernard\nBret\nClaude\nDarnell\nDeandre\nHerman\nHunter\nIvan\nJay\nJim\nLester\nMarlon\nMorris\nSteve\nTerrell\nBradford\nColby\nDesmond\nFred\nHarvey\nJerrod\nJosh\nLloyd\nLouis\nTommie\nWendell\nAlonzo\nAlton\nAngelo\nBrooks\nCedrick\nCortney\nDamian\nDemetris\nGavin\nGrant\nKendall\nLeroy\nLonnie\nOrlando\nOtis\nRoss\nSherman\nSylvester\nTavaris\nTracy\nTremaine\nWade\nWill\nXavier\nAllan\nAndrae\nAndy\nBraxton\nDamion\nElliott\nErick\nJamey\nJody\nJuan\nLindsey\nMarques\nMarty\nMickey\nMilton\nRalph\nRicardo\nSam\nTavares\nTyson\nAubrey\nBrannon\nDallas\nDemario\nDonny\nEmanuel\nEmmett\nEthan\nFloyd\nFrankie\nFreddie\nGlen\nHorace\nHugh\nJake\nJarred\nJudson\nJulian\nKenny\nMarion\nMartez\nMiles\nMorgan\nNeil\nNelson\nOliver\nPierre\nRandal\nRashad\nRobby\nSammy\nShedrick\nStewart\nStuart\nThaddeus\nTremayne\nVernon\nAntwon\nBroderick\nChauncey\nChester\nChristian\nColin\nDedrick\nDemetric\nDerick\nDrew\nDwayne\nEarl\nGraham\nHarry\nIra\nJarod\nKarl\nLamar\nLuther\nMyron\nOctavius\nPrince\nRhett\nSedrick\nStevie\nTaurus\nWallace\nWhitney\nAdrain\nAhmad\nAntonia\nBrady\nBuddy\nChadrick\nCleveland\nClyde\nDamon\nDominic\nEdgar\nErvin\nEverett\nFrancis\nGerry\nGuy\nIsaiah\nJakari\nJarrett\nJasper\nJeremey\nJerrell\nJose\nKendal\nKennith\nLadarius\nLamarcus\nLevi\nLionel\nNathanael\nParker\nQuintin\nRenaldo\nRobbie\nRoosevelt\nRufus\nToby\nTorey\nTorrey\nTrenton\nWaylon\nWeston\nWillis\nWilson\nAlexis\nAntron\nAntuan\nBart\nBeau\nBenny\nBranden\nChance\nCollin\nDante\nDejuan\nDelvin\nDewey\nDonte\nEdmond\nElliot\nEllis\nElton\nEzekiel\nGalvin\nGrady\nGreg\nHarrison\nJackson\nJamarcus\nJermichael\nJeromy\nJonas\nKeldrick\nKellen\nKent\nLakendrick\nLashawn\nLeland\nLeo\nLogan\nLowell\nMarkeith\nMatt\nMckenzie\nMoses\nNeal\nNickolas\nNicolas\nRafael\nRamon\nRaphael\nRenardo\nRick\nRico\nRobin\nRodricus\nRoland\nRoman\nRoyce\nSeneca\nSkyler\nSonny\nStacy\nTarrance\nThurman\nTimmy\nToney\nTramaine\nWilbert\nWiley\nYancey\nZebulon\nChristopher\nMichael\nJames\nJoshua\nMatthew\nWilliam\nJohn\nBrandon\nJason\nRobert\nJonathan\nDavid\nJustin\nJoseph\nDaniel\nJeremy\nAdam\nCharles\nEric\nAnthony\nThomas\nTimothy\nBrian\nSteven\nKevin\nAndrew\nMarcus\nRichard\nBenjamin\nStephen\nJeffrey\nNicholas\nRyan\nPatrick\nDustin\nKenneth\nGregory\nMark\nJacob\nAaron\nBradley\nAntonio\nNathan\nDerrick\nJeffery\nSamuel\nPaul\nWillie\nPhillip\nTravis\nLarry\nZachary\nChad\nBryan\nDonald\nWesley\nTerry\nKyle\nJared\nDerek\nGeorge\nRonald\nBobby\nEdward\nJesse\nCorey\nGary\nTyler\nJohnny\nBilly\nCurtis\nJerry\nDemetrius\nRandy\nCalvin\nTony\nRoderick\nDouglas\nReginald\nJimmy\nScott\nAlan\nMicheal\nKeith\nBlake\nCedric\nJamie\nJohnathan\nKelvin\nNathaniel\nShawn\nAllen\nJonathon\nJermaine\nSean\nRussell\nBrett\nCourtney\nHenry\nCarlos\nRandall\nCory\nCraig\nRodney\nRoger\nRicky\nVictor\nDennis\nMaurice\nRonnie\nJoel\nMarvin\nBarry\nBrent\nCarl\nRaymond\nCody\nCornelius\nDanny\nEddie\nJeremiah\nQuinton\nWalter\nClinton\nJordan\nCasey\nClayton\nJon\nMelvin\nTodd\nFrederick\nTerrance\nMitchell\nGerald\nLee\nTommy\nAndre\nKendrick\nLucas\nAustin\nDarius\nJessie\nPhilip\nChase\nGabriel\nJarrod\nAdrian\nAlbert\nJerome\nJoe\nStanley\nTerrence\nArthur\nJarvis\nLance\nRoy\nSeth\nShane\nShannon\nEvan\nFrank\nJohnathon\nByron\nKristopher\nAlexander\nFredrick\nMario\nShaun\nHeath\nJay\nVincent\nCameron\nDarrell\nDarryl\nHarold\nJoey\nTroy\nTyrone\nBryant\nMicah\nAlex\nBruce\nLeonard\nRickey\nTaylor\nAlfred\nFranklin\nGarrett\nGrant\nJimmie\nJohnnie\nLawrence\nLeon\nLonnie\nMathew\nTerrell\nWarren\nBrad\nClarence\nDonnie\nErik\nIan\nSidney\nAshley\nClifford\nDamien\nDeangelo\nEarl\nHoward\nIsaac\nQuentin\nAubrey\nCaleb\nClint\nDesmond\nEugene\nGlenn\nRay\nTristan\nAlonzo\nChris\nChristian\nDemarcus\nDewayne\nErick\nJamaal\nKerry\nMartin\nPeter\nAlvin\nCarlton\nDeandre\nEarnest\nGavin\nJack\nJackie\nJake\nNorman\nQuincy\nRoss\nScotty\nStuart\nZachery\nChadwick\nGeoffrey\nJody\nJulius\nLorenzo\nTavares\nTerence\nWayne\nXavier\nBradford\nBroderick\nCedrick\nClay\nClyde\nDaryl\nDwight\nEmmanuel\nLewis\nLouis\nRalph\nChester\nClifton\nColby\nDexter\nJudson\nKenny\nLandon\nLevi\nMarquis\nNoah\nOrlando\nPreston\nQuintin\nRobin\nRusty\nSpencer\nVernon\nAndy\nCecil\nDarnell\nDarren\nKendall\nLeslie\nLionel\nLuke\nMarlon\nMorris\nMyron\nRoosevelt\nSylvester\nTitus\nWendell\nWill\nBrannon\nCarey\nCortney\nDerick\nDevin\nDon\nDusty\nEdwin\nErnest\nFloyd\nJarred\nKelly\nLamar\nLamarcus\nLeroy\nRandal\nRex\nWade\nAlton\nBernard\nChauncey\nCleveland\nDarrius\nElijah\nForrest\nFrankie\nHarry\nHunter\nJarrett\nJerrod\nLuther\nMarkeith\nRafael\nRufus\nScottie\nSherman\nTaurean\nTheodore\nTracy\nAllan\nAlphonso\nAntoine\nAntonia\nAntwan\nBarrett\nBeau\nBrendan\nBret\nCharlie\nCole\nDemetrice\nDrew\nElliott\nGarry\nGlen\nHugh\nIvan\nJamal\nJamar\nJulian\nMarques\nMarshall\nMilton\nMoses\nNeil\nRocky\nThaddeus\nToby\nWaylon\nWhitney\nAdrain\nArnold\nDejuan\nDemario\nDerrius\nDominic\nDwayne\nEllis\nFernando\nGordon\nGraham\nGreg\nHerbert\nIsiah\nJeff\nJonas\nMack\nMalcolm\nMarion\nMiles\nMorgan\nNickolas\nNolan\nOliver\nOtis\nPercy\nPerry\nPierre\nReggie\nRobbie\nRodrick\nSedrick\nSteve\nTrevor\nTyson\nZackery\nAndrea\nAntwain\nAntwaun\nBen\nBraden\nBranden\nBrenton\nChadrick\nCortez\nDale\nDamian\nDelvin\nDerrell\nDonny\nEthan\nFred\nHerman\nJarod\nJerald\nKalvin\nKendal\nKurt\nLester\nLindsey\nMarc\nMarlin\nMason\nNeal\nOscar\nRicardo\nRodriquez\nShedrick\nStewart\nTimmy\nTommie\nTrenton\nWeston\nWilbert\nWillis\nWinston\nAndra\nAngelo\nAntione\nBrooks\nCary\nDallas\nDalton\nDamion\nDane\nDangelo\nDaniell\nDavis\nDemarco\nDeon\nDuston\nDylan\nEmanuel\nFreddie\nGene\nGrady\nHarley\nHorace\nHouston\nHubert\nIra\nJackson\nJacques\nJamison\nJessica\nJoesph\nJosh\nKareem\nKeenan\nLadarius\nLaron\nLeonardo\nLogan\nMarco\nMarty\nMax\nMontez\nOctavious\nOctavius\nOmar\nOwen\nPrince\nQuenton\nRenaldo\nRoman\nRonny\nRoyce\nSammie\nShelton\nSimon\nStacey\nStevie\nTanner\nTaurus\nTorey\nTorrey\nTrent\nVan\nChristopher\nMichael\nJames\nJoshua\nMatthew\nWilliam\nBrandon\nJohn\nRobert\nDavid\nJustin\nJonathan\nJoseph\nDaniel\nJason\nAdam\nJeremy\nCharles\nTimothy\nEric\nBrian\nSteven\nThomas\nAndrew\nKevin\nAnthony\nMarcus\nStephen\nBenjamin\nPatrick\nRichard\nNicholas\nRyan\nDustin\nKenneth\nJeffrey\nBradley\nJacob\nGregory\nAaron\nMark\nZachary\nNathan\nPaul\nSamuel\nTravis\nLarry\nAntonio\nDerrick\nJeffery\nPhillip\nWesley\nTyler\nBryan\nChad\nDonald\nBobby\nCorey\nTerry\nJared\nJesse\nWillie\nGary\nTony\nGeorge\nJimmy\nBilly\nRonald\nCurtis\nDerek\nKyle\nCedric\nJohnathan\nScott\nEdward\nJerry\nRussell\nJohnny\nKeith\nRandy\nCourtney\nSean\nBlake\nRandall\nCody\nReginald\nNathaniel\nAllen\nJermaine\nDennis\nEddie\nCalvin\nRicky\nRoderick\nRodney\nCory\nJonathon\nJordan\nBrett\nCarl\nCarlos\nClayton\nJamie\nJoel\nRaymond\nShawn\nAlex\nChase\nClinton\nJeremiah\nTerrance\nCasey\nMicheal\nAlexander\nBarry\nJessie\nPeter\nAlan\nBrent\nAndre\nDouglas\nFrederick\nHenry\nMaurice\nRonnie\nAdrian\nJoe\nLee\nShane\nCornelius\nDarius\nJarrod\nPhilip\nDanny\nDarrell\nStanley\nWalter\nDemetrius\nJon\nKelvin\nRoger\nTommy\nAustin\nQuinton\nTodd\nCraig\nIan\nTerrence\nCaleb\nDarryl\nFrank\nJarvis\nArthur\nErik\nMario\nMicah\nTroy\nLance\nShannon\nVictor\nCameron\nGabriel\nGerald\nJohnathon\nMitchell\nSeth\nTaylor\nVincent\nKristopher\nLeon\nLuke\nBruce\nEvan\nMelvin\nNoah\nRickey\nEdwin\nFredrick\nHeath\nRoy\nTerrell\nByron\nClarence\nDeandre\nJack\nJerome\nJoey\nLawrence\nLorenzo\nMarvin\nShaun\nTyrone\nKendrick\nQuentin\nTerence\nBryant\nCarlton\nColby\nFranklin\nJay\nKenny\nKerry\nAlbert\nBrad\nChristian\nClifford\nDesmond\nDonnie\nEugene\nHunter\nJody\nJulius\nLouis\nPreston\nQuintin\nWayne\nAlvin\nDemarcus\nGeoffrey\nHoward\nKendall\nMarshall\nRay\nAntoine\nBrenton\nCharlie\nDevin\nDewayne\nDexter\nGarrett\nHarold\nLeonard\nLewis\nLionel\nMathew\nSidney\nTristan\nAlfred\nClay\nClifton\nDamien\nDwight\nScotty\nAshley\nBen\nBradford\nChris\nDarrius\nDaryl\nDrew\nErnest\nJackie\nLucas\nMartin\nMorgan\nWarren\nAntwan\nClint\nEarnest\nEmmanuel\nGlenn\nLogan\nMarlon\nNorman\nRocky\nRodrick\nBernard\nBroderick\nCedrick\nCortney\nDarnell\nDerick\nElijah\nGrant\nIsaac\nKarl\nLester\nLonnie\nLuther\nPerry\nStuart\nCecil\nDarren\nDevon\nForrest\nGavin\nJamison\nJerrell\nJudson\nLeroy\nMarco\nMickey\nOrlando\nSimon\nSteve\nTrenton\nVernon\nWendell\nChadwick\nDeangelo\nDeon\nDwayne\nEarl\nErick\nJarrett\nLandon\nMarquis\nMax\nNeil\nOtis\nQuincy\nRalph\nRobin\nRoman\nRoss\nSpencer\nXavier\nAndy\nChance\nChester\nCortez\nEmanuel\nFrankie\nFreddie\nJake\nJamal\nJarod\nJarred\nJayson\nJerrod\nJimmie\nMalcolm\nMarkus\nMarques\nMilton\nOmar\nTavaris\nTrevor\nZackery\nAllan\nAlonzo\nAubrey\nBennie\nBo\nBrooks\nDale\nDemario\nDominique\nDon\nHarry\nHerbert\nIvan\nJamar\nJamarcus\nKelly\nLadarius\nLeslie\nMarc\nRoosevelt\nRusty\nSylvester\nTobias\nTorrance\nTracy\nTrent\nTyson\nWallace\nWhitney\nWinston\nZachery\nArchie\nBrannon\nBraxton\nColin\nCollin\nDallas\nDestin\nDominic\nGrady\nHarvey\nIra\nJefferson\nJeremey\nJim\nJohnnie\nJulian\nKent\nKeon\nNeal\nNicolas\nRicardo\nScottie\nSherman\nStewart\nTavares\nTheodore\nTitus\nTrey\nTyrell\nZane\nAbraham\nAmos\nAntwon\nAntwone\nBlaine\nBrady\nBranden\nClyde\nDamon\nDangelo\nDemetrice\nDylan\nElliot\nGarry\nGlen\nGordon\nGraham\nGreg\nHarley\nHerman\nJamaal\nJameson\nJerod\nKendal\nKennedy\nMason\nRufus\nSammy\nSkyler\nTommie\nWade\nAl\nAndrea\nAntwaun\nBeau\nBrant\nBrantley\nCassidy\nCharlton\nDamian\nDamion\nDante\nDarion\nDedrick\nDemarco\nEmory\nEthan\nFernando\nFloyd\nGilbert\nHarrison\nJerad\nJerel\nJereme\nJermichael\nJohathan\nJonah\nKurt\nLamar\nLamorris\nLevi\nLloyd\nMiles\nMuhammad\nOliver\nOscar\nOwen\nRandolph\nReggie\nRex\nRiley\nRoland\nRory\nRoyce\nSandy\nSergio\nShea\nSonny\nStefan\nTaurean\nThad\nTurner\nVan\nWill\nWillis\nWinfred\nZackary\nChristopher\nJoshua\nMichael\nJames\nBrandon\nWilliam\nMatthew\nJonathan\nDavid\nJohn\nJustin\nRobert\nDaniel\nJoseph\nJason\nJeremy\nCharles\nAndrew\nTimothy\nAdam\nAnthony\nSteven\nThomas\nBrian\nEric\nKevin\nNicholas\nRichard\nStephen\nDustin\nKenneth\nRyan\nMarcus\nJacob\nBenjamin\nPatrick\nBradley\nZachary\nGregory\nJeffrey\nDerrick\nAaron\nTyler\nSamuel\nTravis\nMark\nCorey\nNathan\nKyle\nPhillip\nAntonio\nWillie\nJesse\nBryan\nWesley\nCody\nGeorge\nPaul\nTerry\nJeffery\nChad\nDonald\nJohnathan\nBobby\nJared\nLarry\nEdward\nRandall\nRonald\nJohnny\nJerry\nSean\nKeith\nJimmy\nScott\nShawn\nCedric\nDerek\nReginald\nRoderick\nBilly\nTony\nCarl\nBrett\nGary\nJordan\nAlan\nBlake\nChase\nRodney\nAllen\nCarlos\nKelvin\nRandy\nCurtis\nDanny\nJoel\nNathaniel\nJamie\nWalter\nAlexander\nCasey\nPhilip\nRicky\nRussell\nAdrian\nDennis\nCraig\nJonathon\nMaurice\nMicheal\nCory\nDemetrius\nDouglas\nHenry\nTerrance\nCaleb\nClinton\nFrank\nRaymond\nCourtney\nJermaine\nTaylor\nBrent\nFrederick\nJon\nTerrell\nCalvin\nRonnie\nTommy\nVictor\nDarius\nHunter\nKristopher\nLawrence\nMitchell\nVincent\nJoe\nAlex\nLee\nDevin\nLance\nRoger\nShane\nTroy\nJeremiah\nQuinton\nSeth\nAndre\nAustin\nBarry\nJarrod\nJohnathon\nKendrick\nAlbert\nEddie\nEvan\nFredrick\nJessie\nAlvin\nCornelius\nJay\nMario\nShannon\nByron\nClayton\nJoey\nMicah\nQuentin\nClifton\nDarrell\nDarryl\nGerald\nLucas\nTodd\nTrenton\nCameron\nKendall\nTerence\nTristan\nTyrone\nArthur\nBryant\nHeath\nIan\nJack\nJarvis\nMarvin\nRickey\nClifford\nDexter\nDrew\nJerome\nBruce\nErnest\nKerry\nRay\nRoy\nFranklin\nLuke\nCharlie\nClarence\nDamien\nMelvin\nPreston\nStanley\nWarren\nDarren\nDesmond\nMartin\nMathew\nPerry\nShaun\nTerrence\nAshley\nCecil\nChristian\nDemarcus\nJake\nLandon\nMarshall\nCortney\nGrant\nHarold\nLewis\nPeter\nBrad\nClint\nEmmanuel\nJamarcus\nXavier\nHoward\nJarred\nKorey\nOrlando\nScotty\nSpencer\nStuart\nAntoine\nCortez\nDaryl\nDeangelo\nDewayne\nDwight\nEdwin\nEugene\nGarrett\nJerrod\nJulius\nLeonard\nZachery\nAndy\nBrady\nChadwick\nDeandre\nErik\nFreddie\nIsaac\nMarlon\nMorgan\nNoah\nNorman\nQuintin\nRoss\nSidney\nTrent\nTrevor\nAubrey\nAvery\nBrenton\nChris\nDallas\nDominique\nDon\nGabriel\nGlenn\nJody\nKenny\nLamar\nLeon\nLonnie\nLouis\nMalcolm\nMarc\nWayne\nAntwan\nBernard\nBranden\nColby\nDale\nDamon\nDerick\nFrankie\nFred\nHarry\nHerbert\nJackson\nLadarius\nPierre\nRobin\nThaddeus\nZackery\nAlton\nBroderick\nCarlton\nDonnie\nDylan\nEarnest\nElijah\nForrest\nJamar\nJamison\nJarrett\nLorenzo\nSammy\nWendell\nWilson\nBrock\nCoty\nDarnell\nDarrius\nDevon\nGordon\nJackie\nJamal\nJohnnie\nKelly\nLionel\nMarco\nMartez\nMilton\nNeil\nNicolas\nPrince\nQuincy\nRalph\nRoosevelt\nTavaris\nVernon\nWade\nAlexis\nAlfred\nClaude\nClay\nColin\nDemetrice\nDusty\nDwayne\nErick\nJameson\nJarod\nJosh\nJulian\nKent\nMarquis\nMarquise\nMorris\nNelson\nOtis\nScottie\nStewart\nTed\nTommie\nTrey\nZackary\nAlonzo\nAngelo\nBennie\nBenny\nBraxton\nCary\nDean\nDominic\nEarl\nElliott\nEmanuel\nFabian\nFernando\nGarrick\nGraham\nHarrison\nJerrell\nJim\nJonah\nJuan\nJudson\nKarl\nKirk\nLevi\nMason\nOscar\nRandal\nRaphael\nRocky\nRodger\nRodrick\nRusty\nSherman\nTanner\nTavares\nTavarus\nTheodore\nTracy\nVan\nWallace\nWill\nWillis\nAllan\nAlonza\nAntwaun\nBradford\nBryon\nChauncey\nCole\nColeman\nCoy\nDana\nDedrick\nDejuan\nDemario\nDonnell\nDonovan\nDonte\nDurrell\nElton\nEmmett\nGarry\nGeoffrey\nGilbert\nGlen\nGrady\nHerman\nHorace\nHugh\nIssac\nIvan\nJamey\nJaymes\nJimmie\nLabarron\nLamarcus\nLester\nLloyd\nMarion\nMarkeith\nMiles\nNeal\nNigel\nPercy\nRafael\nRoland\nRyne\nSkyler\nAbraham\nAkeem\nAl\nAlphonso\nAntwain\nAntwon\nArchie\nBeau\nBrantley\nChadrick\nChance\nChaz\nChester\nDane\nDarrel\nDarrin\nDarron\nDavis\nDeandrea\nDominick\nDurell\nEli\nEverett\nFelix\nFloyd\nGriffin\nGuy\nHarvey\nHouston\nHoyt\nHubert\nInfant\nIra\nJacques\nJaime\nJamaal\nJonthan\nKeon\nKurtis\nLadarrius\nLeland\nLeroy\nLindsey\nLogan\nMalachi\nMax\nMyles\nMyron\nNapoleon\nNoel\nOmar\nOwen\nParker\nPeyton\nQuintez\nRandell\nRex\nRicardo\nRico\nRobbie\nRodriquez\nRory\nRufus\nSam\nSonny\nStacey\nStacy\nStefan\nTerance\nTerrel\nToby\nToney\nTyson\nWaylon\nWhitney\nWinston\nChristopher\nJames\nMichael\nJoshua\nBrandon\nWilliam\nMatthew\nJohn\nJustin\nJonathan\nRobert\nJeremy\nDavid\nDaniel\nJoseph\nTimothy\nAndrew\nCharles\nJason\nAnthony\nKevin\nAdam\nThomas\nEric\nSteven\nRichard\nBenjamin\nNicholas\nBrian\nRyan\nStephen\nPatrick\nJacob\nDustin\nKenneth\nMarcus\nZachary\nCorey\nBradley\nMark\nTyler\nSamuel\nKyle\nGregory\nJeffrey\nAntonio\nPhillip\nJeffery\nNathan\nWesley\nDerrick\nAaron\nCody\nJesse\nBryan\nJared\nDonald\nAlexander\nTravis\nBobby\nCory\nJohnathan\nChad\nPaul\nWillie\nLarry\nDerek\nEdward\nRonald\nTerry\nJordan\nBrett\nCasey\nGary\nCurtis\nJerry\nShawn\nBilly\nScott\nJimmy\nSean\nBlake\nCourtney\nKeith\nRoderick\nWalter\nRandall\nRandy\nRodney\nAustin\nJohnny\nDouglas\nGeorge\nNathaniel\nMicheal\nDemetrius\nBrent\nJoel\nAdrian\nAllen\nReginald\nAlex\nArthur\nJamie\nRicky\nSeth\nClayton\nRussell\nCarl\nHenry\nTerrance\nTony\nCalvin\nJarvis\nKendrick\nShane\nCaleb\nCedric\nEvan\nJeremiah\nPhilip\nClinton\nDarius\nJonathon\nMitchell\nDennis\nMario\nMaurice\nTaylor\nDarrell\nFrederick\nTommy\nAlan\nCornelius\nVictor\nChase\nHunter\nKelvin\nLance\nQuinton\nDanny\nCarlos\nFrank\nJon\nRaymond\nByron\nDarryl\nJermaine\nJessie\nLee\nTerrell\nTodd\nBarry\nGerald\nLawrence\nRoger\nVincent\nGarrett\nKristopher\nAndre\nDevin\nEddie\nJarrod\nMicah\nTerrence\nTrenton\nAlbert\nColby\nDeangelo\nDesmond\nDexter\nDrew\nTroy\nBryant\nIan\nJerome\nPeter\nRonnie\nShaun\nBruce\nJay\nRickey\nStanley\nClifford\nFranklin\nGabriel\nHeath\nJoey\nLucas\nMelvin\nPreston\nSpencer\nHarold\nJack\nMarshall\nBrad\nCameron\nClarence\nCraig\nMarvin\nRoy\nWhitney\nXavier\nDemarcus\nFredrick\nGlenn\nJoe\nJohnathon\nJulius\nLuke\nRoss\nShannon\nAubrey\nClint\nJulian\nKerry\nLeon\nLevi\nMartin\nStuart\nTristan\nTyrone\nWayne\nDeandre\nDwight\nEdwin\nLewis\nMarquis\nZachery\nErik\nErnest\nJake\nJody\nLandon\nTrevor\nZackery\nAntoine\nBrenton\nDale\nGrant\nIsaac\nJamal\nJarred\nKendall\nMalcolm\nMarlon\nWarren\nCarlton\nClifton\nDusty\nDylan\nHoward\nLamar\nMason\nQuentin\nRashad\nSylvester\nTrey\nChadwick\nCharlie\nChristian\nColin\nCordell\nCortez\nJackie\nJerrod\nKenny\nLogan\nMarc\nClay\nDamien\nDamon\nDarren\nEarl\nErick\nForrest\nHerbert\nJimmie\nLouis\nRay\nRicardo\nTrent\nWendell\nAlfred\nAlvin\nAntwan\nBennie\nBrady\nDarrius\nDaryl\nEugene\nGeoffrey\nHarry\nJameson\nLorenzo\nNoah\nOtis\nRusty\nSherman\nThaddeus\nAshley\nBen\nBernard\nDemario\nDewayne\nDon\nDonovan\nEarnest\nJamarcus\nJamison\nJuan\nLeslie\nLonnie\nLuther\nMiles\nNicolas\nOrlando\nPerry\nQuincy\nRico\nRiley\nRodrick\nSkylar\nTerence\nDevon\nDominic\nDonnie\nElijah\nEmanuel\nHarrison\nHorace\nJackson\nJamaal\nJaron\nJim\nMilton\nMontez\nNorman\nQuintin\nRodriquez\nScotty\nSidney\nStewart\nAkeem\nAlphonso\nAntwon\nChance\nChris\nColeman\nCoty\nDakota\nDavis\nDeanthony\nDejuan\nDestin\nDominique\nElliott\nFloyd\nFrankie\nGordon\nJudson\nKarl\nLeonard\nLester\nMathew\nOscar\nParker\nPierre\nTheodore\nTyson\nWallace\nWinston\nAmos\nAndrea\nBret\nCecil\nClark\nClyde\nCole\nCordero\nCortney\nDallas\nDane\nDeon\nDurell\nErvin\nEthan\nFreddie\nJamar\nJamel\nJarrett\nJasper\nJeremey\nJerrell\nKorey\nLadarius\nLionel\nMarquez\nMartez\nNeil\nRalph\nRex\nRobbie\nRoosevelt\nSteve\nStevie\nTavares\nWilson\nZane\nAlton\nAndy\nBrody\nCary\nChester\nDarrin\nDontavious\nEli\nGavin\nJavaris\nJavoris\nJohnnie\nJonah\nKent\nKirby\nKurt\nKurtis\nLindsey\nLyndon\nMikel\nMorris\nNickolas\nOmar\nPeyton\nRafael\nStefan\nTavoris\nTracy\nVernon\nWade\nZackary\nAlonzo\nAshton\nBraden\nBradly\nBrannon\nBrendon\nBrittany\nCarter\nCedrick\nChauncey\nCleveland\nCordaro\nCruz\nDedrick\nDemetric\nDemetris\nDerick\nDewey\nEldrick\nEmmanuel\nErin\nFletcher\nGlen\nGraham\nGreg\nGriffin\nHosea\nIvan\nJarod\nJefferson\nJeremie\nJermichael\nJerod\nKelly\nKelton\nKendal\nKendrell\nLakendrick\nLamarcus\nLeroy\nLloyd\nMalcom\nMarkeith\nNick\nOliver\nOrry\nOwen\nRandal\nReco\nReggie\nRoland\nRoman\nRoyce\nRufus\nRustin\nRyne\nSam\nSammy\nSedrick\nSkyler\nStephan\nStephon\nTanner\nTaurean\nTobias\nTommie\nTramaine\nTy\nTyrell\nVirgil\nWiley\nWill\nWillis\nChristopher\nJoshua\nJames\nJustin\nMichael\nWilliam\nMatthew\nBrandon\nJohn\nDavid\nRobert\nJonathan\nJeremy\nJoseph\nAndrew\nDaniel\nTimothy\nCharles\nThomas\nAnthony\nJason\nSteven\nKevin\nJacob\nAdam\nNicholas\nEric\nBrian\nStephen\nRichard\nZachary\nRyan\nBenjamin\nKenneth\nTyler\nPatrick\nCody\nDustin\nJeffrey\nMarcus\nGregory\nBradley\nCorey\nAaron\nPhillip\nKyle\nWesley\nJeffery\nSamuel\nMark\nNathan\nAntonio\nCory\nDerrick\nBryan\nJordan\nDonald\nTravis\nDerek\nJared\nPaul\nEdward\nAlexander\nJesse\nChad\nWillie\nLarry\nReginald\nAlex\nCasey\nJohnathan\nRonald\nBobby\nTerry\nGeorge\nBilly\nBlake\nGary\nJimmy\nSean\nJohnny\nAustin\nBrent\nCourtney\nRoderick\nNathaniel\nCaleb\nDouglas\nCurtis\nJerry\nDarius\nScott\nTony\nRussell\nBrett\nDemetrius\nShawn\nCalvin\nCedric\nJamie\nKeith\nMitchell\nRandall\nMaurice\nRandy\nSeth\nJoel\nJonathon\nMario\nMicheal\nRaymond\nClayton\nEvan\nArthur\nShane\nWalter\nKelvin\nRodney\nCameron\nRicky\nFrank\nTerrance\nChase\nCornelius\nDennis\nTommy\nCarl\nDexter\nJessie\nDevin\nJarrod\nKendrick\nFrederick\nHunter\nJarvis\nLance\nPhilip\nRoger\nTaylor\nRoy\nHenry\nQuinton\nAdrian\nCarlos\nDanny\nJoe\nMarvin\nQuentin\nSpencer\nAlan\nByron\nDarrell\nDarryl\nEddie\nGarrett\nJeremiah\nVictor\nAllen\nBryant\nJermaine\nLawrence\nMicah\nVincent\nCraig\nJohnathon\nKristopher\nLee\nTerrence\nXavier\nAndre\nChristian\nBarry\nDemario\nJoey\nJon\nLogan\nPreston\nRonnie\nTroy\nDeangelo\nDemarcus\nGerald\nHeath\nJake\nJamal\nTodd\nBruce\nClifton\nDesmond\nFredrick\nGabriel\nIan\nDarrius\nJerome\nLucas\nMelvin\nShannon\nStanley\nTyrone\nCharlie\nClinton\nLandon\nMason\nScotty\nAlbert\nDylan\nErnest\nKendall\nLuke\nMathew\nRickey\nTrenton\nJack\nJamarcus\nMartin\nTerrell\nTrent\nZackary\nCortney\nGlenn\nGrant\nHarry\nMiles\nPeter\nStuart\nChadwick\nClifford\nClint\nColby\nCordero\nErik\nFranklin\nLeon\nLeonard\nLorenzo\nMarquis\nOrlando\nRashad\nRoss\nTerence\nTrevor\nAlfred\nClarence\nDonnie\nIsaac\nJay\nJimmie\nLadarius\nMorgan\nTrey\nTristan\nAshley\nCarlton\nDeandre\nEarnest\nHarrison\nJulius\nMarquez\nMartez\nOmar\nRalph\nBrad\nCortez\nDale\nDonovan\nEdwin\nHarold\nJackie\nKerry\nLewis\nMalcolm\nMarshall\nMilton\nShaun\nAlonzo\nAntwan\nBrenton\nDallas\nDewayne\nGeoffrey\nJody\nJohnnie\nJulian\nKenny\nLevi\nLonnie\nNorman\nQuintin\nWarren\nZackery\nAntoine\nClay\nDamon\nDarnell\nDominique\nDrew\nDwight\nGavin\nGraham\nHoward\nLouis\nPerry\nRoosevelt\nWayne\nAlvin\nAmos\nBen\nBernard\nCedrick\nColin\nCordell\nCoty\nDakota\nDarrin\nDonny\nDusty\nElliott\nForrest\nJerrell\nJerrod\nJudson\nKurt\nLeroy\nMarlon\nNickolas\nPierre\nRay\nRiley\nRodriquez\nRusty\nTheodore\nTracy\nAndy\nAntwon\nBradford\nBraxton\nBritton\nCecil\nDamien\nDarren\nDedrick\nDwayne\nEarl\nEllis\nJamaal\nJeremie\nJuan\nMarkus\nMax\nQuincy\nRobin\nRoman\nSteve\nSylvester\nVernon\nWill\nZachery\nAddison\nBranden\nCary\nDaryl\nDevon\nElijah\nEmanuel\nEmmanuel\nErvin\nGordon\nHerman\nHorace\nIra\nJackson\nJonah\nJose\nKorey\nKurtis\nLamar\nMorris\nNeil\nRico\nRodrick\nSkyler\nStewart\nTorey\nTorrey\nWhitney\nBennie\nBrady\nBrannon\nBroderick\nChance\nChauncey\nChester\nCole\nDejuan\nDeon\nGilbert\nHouston\nIvan\nJamison\nJarred\nJarrell\nJasmine\nLester\nMarion\nMyles\nNeal\nNelson\nNoah\nOwen\nRyne\nScottie\nSidney\nStefan\nTeddy\nThaddeus\nTorrance\nTyson\nWallace\nWillis\nWinston\nZane\nAlphonso\nAubrey\nBaby\nBradly\nBrendan\nBrooks\nChris\nClaude\nCordaro\nCordaryl\nDamian\nDarrel\nDavis\nDeric\nDominic\nDon\nDonnell\nEthan\nFloyd\nFrankie\nJamel\nJamey\nJohathan\nJonas\nLamarcus\nLeland\nLionel\nLloyd\nLuther\nMarc\nMyron\nRandolph\nReggie\nRenaldo\nSammy\nSkylar\nStacey\nSterling\nTanner\nTed\nTiffany\nTitus\nWendell\nZachariah\nAdarius\nAkeem\nAllan\nAshton\nBarrett\nBritt\nBrock\nCarey\nCarson\nChanning\nCleophus\nColeman\nColt\nCordarryl\nCordera\nDamion\nDan\nDana\nDane\nDangelo\nDemarius\nDemetric\nDemetrice\nDemetris\nDerick\nDion\nElvin\nErwin\nFred\nGarry\nGriffin\nHayden\nHerbert\nHubert\nJasper\nJefferson\nJerod\nKendal\nKirk\nMarkeith\nMarlin\nMaxwell\nMontez\nNigel\nNolan\nOliver\nOtis\nPeyton\nRaphael\nRashard\nReco\nSedrick\nSheldon\nSpenser\nTavares\nTobias\nTommie\nTristian\nTy\nTyrell\nUlysses\nVan\nWestley\nWeston\nJustin\nChristopher\nJoshua\nMichael\nJames\nWilliam\nMatthew\nBrandon\nJohn\nRobert\nJonathan\nDavid\nJoseph\nAndrew\nJeremy\nDaniel\nCharles\nTimothy\nNicholas\nAnthony\nThomas\nJacob\nSteven\nZachary\nAdam\nEric\nRyan\nCody\nJason\nRichard\nKevin\nBenjamin\nStephen\nKenneth\nCorey\nTyler\nDustin\nBrian\nPatrick\nAaron\nKyle\nSamuel\nBradley\nMarcus\nTravis\nGregory\nNathan\nJeffrey\nMark\nAntonio\nWesley\nJesse\nCory\nPhillip\nDerek\nJeffery\nAlexander\nBryan\nJordan\nRonald\nJared\nAustin\nChad\nTerry\nCaleb\nCameron\nDerrick\nPaul\nBlake\nJohnathan\nTaylor\nDonald\nWillie\nEdward\nBobby\nCourtney\nJonathon\nTerrance\nScott\nJerry\nSean\nAlex\nNathaniel\nRodney\nCasey\nGary\nJohnny\nLarry\nGeorge\nSeth\nKeith\nBilly\nChase\nRandy\nCurtis\nBrett\nShawn\nDarius\nJamie\nJarvis\nMicheal\nRandall\nRoderick\nTony\nLogan\nRussell\nDemetrius\nAllen\nDennis\nJimmy\nRaymond\nTerrence\nRicky\nMario\nAlan\nClinton\nFrederick\nHunter\nJessie\nShane\nVincent\nWalter\nBrent\nHenry\nMaurice\nReginald\nVictor\nKendrick\nBarry\nEvan\nMitchell\nCalvin\nCedric\nFrank\nQuentin\nXavier\nAdrian\nClayton\nCornelius\nJoel\nLucas\nCarl\nDouglas\nTrenton\nKendall\nLee\nQuinton\nJon\nLance\nPreston\nRoger\nBryant\nJarrod\nLawrence\nLuke\nDanny\nKelvin\nArthur\nCraig\nDominique\nJeremiah\nKristopher\nPhilip\nTommy\nChristian\nDemarcus\nEddie\nTerrell\nJermaine\nCarlos\nDexter\nJake\nRonnie\nSpencer\nTodd\nByron\nHeath\nMarvin\nMelvin\nAlbert\nColby\nDarryl\nDeandre\nDesmond\nHarold\nJoe\nTerence\nDarrell\nDemario\nDevin\nGarrett\nGerald\nJerome\nMicah\nRashad\nRickey\nZachery\nClarence\nIan\nStanley\nTroy\nAndre\nChadwick\nDerick\nJoey\nLouis\nShannon\nTrevor\nCharlie\nDylan\nJamal\nLadarius\nLandon\nMartin\nMorgan\nTrent\nClay\nCortez\nGrant\nJay\nLeonard\nOrlando\nClifford\nClifton\nJulian\nLewis\nMalcolm\nMarlon\nMathew\nRay\nFredrick\nGabriel\nNoah\nRoy\nWarren\nBruce\nColin\nCoty\nErik\nErnest\nGeoffrey\nIsaac\nKerry\nMason\nPeter\nRoss\nScotty\nTrey\nColton\nDarrius\nDeangelo\nDonnie\nHarrison\nHoward\nJamarcus\nJohnathon\nLorenzo\nMarshall\nRodrick\nShaun\nAlfred\nAlonzo\nAlvin\nAubrey\nClint\nDamien\nDarren\nDaryl\nDwight\nEthan\nFranklin\nIsaiah\nKenny\nLevi\nMarkus\nMarquis\nMilton\nNicolas\nPierre\nSylvester\nTommie\nTristan\nZackary\nBernard\nBrad\nBrenton\nDarrin\nDavis\nDevon\nDrew\nEdwin\nElliott\nJody\nJudson\nPerry\nTyrone\nAndy\nBrantley\nDamon\nDarnell\nForrest\nHerbert\nJack\nJamar\nJarod\nJerrell\nJerrod\nKaleb\nMarquez\nRodriquez\nTracy\nWayne\nZackery\nBranden\nCarlton\nCecil\nChris\nCordarryl\nDallas\nDewayne\nDon\nDusty\nElijah\nHouston\nJarred\nJulius\nKeon\nLamar\nLeslie\nMartez\nMiles\nOmar\nParker\nRicardo\nRiley\nRusty\nWendell\nAlton\nAmos\nAntoine\nArsenio\nAshton\nChance\nChaz\nClyde\nCordarius\nCordero\nCortney\nDominic\nFreddie\nGraham\nJimmie\nJosh\nKarl\nKory\nLamarcus\nLeroy\nLonnie\nQuintin\nRoman\nSidney\nStuart\nTucker\nVernon\nAnderson\nAntwan\nBradford\nClark\nDillon\nDwayne\nEarl\nEugene\nHugh\nJackie\nJarrett\nKeldrick\nLeland\nMorris\nMyles\nMyron\nNeal\nNorman\nQuenton\nRandal\nRex\nSteve\nTheodore\nWill\nAhmad\nAngelo\nAshley\nBaby\nBlaine\nBrendan\nCedrick\nDeanthony\nDedrick\nEllis\nErick\nFelix\nFloyd\nGavin\nGlenn\nHarvey\nHerman\nJaron\nJavaris\nKody\nLeon\nLester\nMarco\nMaxwell\nMychal\nRalph\nRoosevelt\nSimon\nSkylar\nStewart\nTavaris\nTeddy\nTerell\nThaddeus\nVirgil\nWillis\nAntwain\nAvery\nBen\nBritton\nBroderick\nClaude\nCoy\nDale\nDamian\nDana\nDarion\nDeon\nEmmanuel\nFrankie\nGilbert\nHarry\nJamison\nJasmine\nJayson\nJefferson\nJonah\nKedrick\nKent\nLakendrick\nLionel\nMack\nMarcel\nMarkeith\nMarques\nMarty\nMax\nNeil\nNickolas\nNolan\nOwen\nRaphael\nRico\nRobin\nRoland\nShelton\nSpenser\nStacy\nStefan\nTanner\nTavares\nTorrey\nTyson\nWilson\nWinston\nAllan\nAlphonso\nAntwon\nBeau\nBraden\nBrady\nBret\nChanning\nChester\nConner\nDane\nDangelo\nDarian\nDaron\nDejuan\nDemarius\nDemarkus\nDemetris\nDonnell\nDorian\nElbert\nEli\nEmanuel\nFabian\nFrancis\nFreeman\nGarry\nGordon\nGrady\nGrayson\nInfant\nIsiah\nIvan\nIvory\nJabari\nJacoby\nJacorey\nJamel\nJeff\nJermey\nJim\nJohnnie\nJose\nKelsey\nKendal\nKurt\nMarion\nNathanael\nNelson\nNick\nOliver\nPayton\nQuadarius\nQuindarius\nRamon\nRandell\nReid\nRocky\nRuben\nRyne\nSam\nTobias\nToby\nWade\nChristopher\nJoshua\nJustin\nMichael\nJames\nWilliam\nMatthew\nBrandon\nJohn\nDavid\nRobert\nJeremy\nJoseph\nJonathan\nAndrew\nDaniel\nThomas\nNicholas\nJacob\nCharles\nZachary\nSteven\nAnthony\nTimothy\nKevin\nDustin\nBenjamin\nCorey\nAdam\nPatrick\nTyler\nCody\nEric\nStephen\nBrian\nRyan\nRichard\nKenneth\nKyle\nJason\nAaron\nBradley\nMarcus\nNathan\nSamuel\nGregory\nJeffrey\nWesley\nJesse\nTravis\nCory\nAntonio\nJordan\nJared\nAlexander\nCaleb\nMark\nPhillip\nAustin\nJeffery\nCameron\nDonald\nDerrick\nDerek\nBlake\nTaylor\nRonald\nBryan\nEthan\nJohnathan\nWillie\nPaul\nEdward\nDarius\nHunter\nChase\nTerry\nRandall\nGeorge\nCasey\nCurtis\nLarry\nGary\nSean\nBilly\nCourtney\nJonathon\nTerrance\nJerry\nAlex\nRodney\nChad\nReginald\nJoel\nSeth\nJohnny\nNathaniel\nTony\nBobby\nLogan\nEvan\nDemetrius\nJimmy\nBrent\nKeith\nBrett\nMicah\nBryant\nGarrett\nMitchell\nTommy\nAlan\nJarvis\nLee\nCedric\nRussell\nScott\nVincent\nWalter\nJamie\nShawn\nClayton\nColton\nRaymond\nClinton\nDevin\nDouglas\nJeremiah\nJon\nCalvin\nAllen\nKendrick\nSpencer\nCornelius\nDemarcus\nEddie\nFrank\nHenry\nPreston\nRandy\nRoderick\nAdrian\nByron\nCarl\nJarrod\nJessie\nKelvin\nMario\nDennis\nKristopher\nPhilip\nShane\nStanley\nCarlos\nChristian\nFrederick\nLadarius\nMaurice\nRicky\nDesmond\nTerrence\nTrenton\nVictor\nDeandre\nDarryl\nDominique\nJake\nJerome\nMarvin\nMicheal\nQuinton\nZachery\nColby\nDarrius\nLance\nLucas\nAlbert\nDemario\nJamal\nJoe\nRoger\nTrevor\nXavier\nDexter\nTrent\nBarry\nDanny\nGerald\nIan\nLouis\nLuke\nMelvin\nRickey\nCortez\nDylan\nLawrence\nRoy\nTerrell\nTodd\nDarrell\nHeath\nKendall\nMorgan\nRashad\nShannon\nAndre\nArsenio\nCraig\nDeangelo\nDrew\nJay\nJermaine\nJoey\nMarquis\nQuentin\nTerence\nGabriel\nJohnathon\nRonnie\nRoss\nWarren\nBruce\nErik\nMason\nMathew\nOrlando\nZackary\nClarence\nColin\nFranklin\nGeoffrey\nGrant\nHarold\nIsaac\nMartin\nNickolas\nShaun\nTroy\nAlvin\nArthur\nClifford\nDamien\nDarren\nDwight\nFredrick\nIsaiah\nJackson\nKerry\nLandon\nMalcolm\nAlfred\nAntwan\nBroderick\nEugene\nHarrison\nJack\nKody\nKorey\nTristan\nClay\nClifton\nCortney\nForrest\nJarrett\nLevi\nMarshall\nRay\nBrad\nCarlton\nDallas\nJamarcus\nLadarrius\nNoah\nTracy\nZackery\nCharlie\nDakota\nDominic\nJarred\nJerrod\nJulian\nJulius\nLamar\nLorenzo\nPeter\nRodrick\nRodriquez\nRoman\nThaddeus\nTrey\nTyrone\nWendell\nAkeem\nBernard\nBranden\nCarter\nChadwick\nChance\nDevon\nDwayne\nEdwin\nElliott\nHoward\nKenny\nKiara\nLeonard\nMarc\nMarlon\nParker\nSidney\nStuart\nWinston\nAlton\nBraxton\nCoty\nElijah\nFred\nGlenn\nJudson\nKaleb\nLewis\nLonnie\nRiley\nWade\nAshton\nAubrey\nCecil\nDamian\nDarnell\nDillon\nEmmanuel\nErnest\nJamar\nJavaris\nLedarius\nLeon\nMartez\nMax\nNicolas\nQuintin\nRusty\nSherman\nStewart\nTanner\nTavaris\nAntwon\nBrady\nBrannon\nBrendan\nBrenton\nBritton\nClint\nCollin\nDeanthony\nDemarco\nElliot\nJacques\nJerrell\nKameron\nKelly\nKelsey\nLakendrick\nLester\nMiles\nNeil\nOmar\nSkyler\nSteve\nTheodore\nWayne\nWill\nAlonzo\nAndy\nCedrick\nChanning\nCorbin\nCordarius\nDarrin\nDedrick\nDerick\nDewayne\nDonnie\nDonovan\nEllis\nFreddie\nIvan\nJackie\nJamaal\nKasey\nKhiry\nLeroy\nLyndon\nMajor\nOwen\nZachariah\nAhmad\nAntoine\nAntwain\nAvery\nBradford\nBrantley\nChandler\nColeman\nDamion\nDamon\nDaryl\nDavis\nDemetris\nDeon\nDeonte\nErick\nEzekiel\nGrady\nGraham\nHerman\nHugh\nJamario\nJasper\nJody\nKarl\nKendell\nLamarcus\nLuther\nMarkus\nMontez\nNeal\nNelson\nNorman\nOliver\nPerry\nQuintavious\nRicardo\nRico\nRoosevelt\nScotty\nSkylar\nTommie\nTorrey\nWeston\nWillis\nAshley\nBaby\nBlaine\nBrooks\nCamden\nChester\nCor\nCordero\nDameon\nDusty\nFrankie\nHamilton\nHerbert\nHouston\nHubert\nJacoby\nJacorey\nJarius\nJaron\nJarrell\nJayson\nJermey\nJimmie\nJohnnie\nJosiah\nLedarrius\nLeslie\nLindsey\nMarco\nMarquise\nMaxwell\nMickey\nMyron\nPeyton\nPrince\nQuenton\nQuintez\nRakeem\nRalph\nRegis\nScottie\nSheldon\nStacey\nStephon\nStevie\nTory\nTyson\nVernon\nWestley\nWilbur\nAmos\nAngelo\nAntron\nArnold\nBen\nBennie\nBradly\nBryson\nCarson\nClark\nDale\nDalton\nDanthony\nDavin\nDerrius\nDevoris\nDonnell\nDontavious\nErin\nFrancis\nGarry\nGavin\nHakeem\nHarry\nIsiah\nJamey\nJamicheal\nJasmine\nJerel\nJeremie\nJermery\nJose\nJuan\nKendarius\nKent\nKeon\nKory\nKurt\nLemarcus\nLowell\nMalcom\nMarkeith\nMarty\nMyles\nOscar\nOtis\nPrentice\nQuindarius\nRobbie\nRobin\nRoland\nRyne\nSam\nStacy\nTavares\nTobias\nTorrance\nTruman\nWilson\nWyatt\nZane\nChristopher\nJoshua\nJustin\nMichael\nJames\nWilliam\nMatthew\nJohn\nRobert\nBrandon\nDavid\nAndrew\nJonathan\nJoseph\nJacob\nDaniel\nJeremy\nCody\nCharles\nTimothy\nNicholas\nSteven\nTyler\nThomas\nZachary\nBenjamin\nAnthony\nEric\nRyan\nPatrick\nJordan\nStephen\nRichard\nCorey\nAdam\nDustin\nKevin\nBrian\nAaron\nMarcus\nJason\nKenneth\nKyle\nSamuel\nBradley\nEthan\nGregory\nCaleb\nNathan\nAlexander\nTaylor\nJeffrey\nTravis\nJesse\nCameron\nWesley\nAustin\nJared\nMark\nPhillip\nDerrick\nPaul\nAntonio\nTerry\nDonald\nDarius\nBlake\nDerek\nJeffery\nChase\nCory\nBryan\nJonathon\nAlex\nGeorge\nHunter\nSean\nEdward\nJohnathan\nCasey\nLarry\nChad\nGary\nLogan\nWillie\nDevin\nNathaniel\nRonald\nJerry\nKeith\nMitchell\nChristian\nBobby\nRicky\nShawn\nBilly\nCurtis\nGarrett\nJoel\nAdrian\nBrett\nReginald\nSeth\nJohnny\nKendrick\nTony\nCourtney\nSpencer\nColby\nDouglas\nEvan\nRandall\nRussell\nJarvis\nMicheal\nAlan\nCarl\nFrank\nRaymond\nWalter\nBryant\nClayton\nClinton\nDemetrius\nDylan\nLadarius\nTrevor\nJamie\nJessie\nJeremiah\nLucas\nRodney\nVictor\nHenry\nJarrod\nJimmy\nScott\nVincent\nColton\nDesmond\nDexter\nMalcolm\nMaurice\nQuinton\nTerrance\nCalvin\nPhilip\nRandy\nTerrence\nShane\nXavier\nBrent\nDemarcus\nIan\nLuke\nTrenton\nMicah\nRoderick\nAllen\nDeandre\nRonnie\nCornelius\nDarryl\nJamarcus\nMarquis\nZachery\nJon\nTroy\nByron\nEddie\nKendall\nPreston\nRoger\nAlbert\nDennis\nDominique\nCarlos\nCedric\nTerrell\nCortez\nGabriel\nGerald\nJohnathon\nKelvin\nStanley\nAndre\nColin\nDalton\nDanny\nLandon\nMason\nCraig\nDakota\nDeangelo\nFredrick\nHeath\nLance\nTevin\nTommy\nArthur\nFranklin\nJermaine\nKristopher\nLee\nMarvin\nDarrell\nMelvin\nQuentin\nFrederick\nJulian\nKerry\nLawrence\nMartin\nTrent\nAshton\nBarry\nClint\nCoty\nIsaac\nJamal\nJoe\nTrey\nErik\nForrest\nGrant\nAkeem\nCharlie\nClarence\nDarrius\nGavin\nJudson\nOrlando\nRickey\nZackery\nDevon\nJack\nRashad\nRoy\nTodd\nWarren\nDamien\nDarren\nElijah\nHarrison\nJake\nJerome\nPeter\nAlvin\nDemario\nKaleb\nMartez\nParker\nSkyler\nStuart\nCarlton\nEmmanuel\nErnest\nHayden\nLamar\nLonnie\nMario\nMarshall\nShannon\nShaun\nBrenton\nGeoffrey\nHarold\nIsaiah\nJamar\nJay\nKeenan\nLeonard\nLevi\nRoss\nSidney\nTristan\nAlfred\nAntwon\nDewayne\nDrew\nFrankie\nHarry\nMaxwell\nMorgan\nRay\nSkylar\nWilson\nZackary\nBruce\nCarson\nChandler\nCordarius\nDarnell\nDaryl\nDillon\nDonovan\nHorace\nJarred\nJerrod\nJody\nJoey\nKody\nMilton\nNicolas\nPerry\nRiley\nBlakely\nBrock\nClaude\nClifford\nCollin\nDallas\nDemarco\nEarnest\nHouston\nJimmie\nJulius\nLewis\nLouis\nMiles\nNickolas\nNoah\nNorman\nRaphael\nRodriquez\nWill\nBrad\nBradford\nBraxton\nBroderick\nChadwick\nChance\nCorbin\nDemetris\nDerick\nGlenn\nHakeem\nJackson\nKameron\nKenny\nLadarrius\nLamarcus\nMadison\nMarion\nMarquez\nMarquise\nQuincy\nQuintin\nRoosevelt\nRusty\nSheldon\nTracy\nWade\nAlonzo\nAlton\nAvery\nBrady\nCedrick\nChester\nClay\nDenzel\nDonnie\nEugene\nGraham\nHerbert\nHoward\nJameson\nJamison\nKarl\nKendal\nLorenzo\nMathew\nSam\nSammy\nSteve\nTanner\nTerence\nTheodore\nTommie\nTyrone\nWeston\nAntoine\nAubrey\nBennie\nBernard\nBlaine\nBrannon\nCecil\nClifton\nDale\nDamon\nDarrin\nDeon\nEmanuel\nEzekiel\nFred\nGage\nHugh\nJamaal\nJamichael\nKadeem\nMarkell\nOliver\nRicardo\nRico\nStacey\nTitus\nTobias\nWayne\nWinston\nAlec\nAntwain\nAntwone\nArsenio\nBranden\nBrantley\nBrendan\nBryon\nCary\nDestin\nDevan\nDwight\nEdwin\nElliott\nFloyd\nGarret\nGrady\nJackie\nJamario\nJamel\nJayson\nJeremey\nJohnnie\nJosiah\nKent\nKirk\nLeon\nLeslie\nMarc\nMax\nNico\nNolan\nOtis\nPeyton\nRoman\nScotty\nStacy\nSterling\nTremayne\nWaylon\nWendell\nZane\nAdarius\nAshley\nBenjamen\nBrooks\nCarter\nChaz\nCole\nConner\nConnor\nCortney\nDamian\nDandre\nDangelo\nDecarlos\nDion\nDon\nDrake\nDusty\nDwayne\nEarl\nEllis\nGarry\nGlen\nHarley\nHarvey\nHerman\nJarod\nJarrad\nJasper\nJerald\nJerrell\nJonas\nJuan\nKorey\nKristian\nLaquinton\nLeo\nLloyd\nMarkeith\nMickey\nMiguel\nNeal\nNelson\nPierre\nQuenton\nRalph\nReuben\nRoland\nRyne\nShelton\nStevie\nThaddeus\nTorrey\nTory\nTyson\nAllan\nAngelo\nBret\nBrody\nCarey\nCarrington\nChancellor\nClyde\nCollins\nDamarius\nDana\nDarion\nDavis\nDeandra\nDeandrea\nDerrell\nEli\nElliot\nErin\nFletcher\nFreddie\nGordon\nJace\nJacoby\nJamey\nJaquan\nJaron\nJarrell\nJarrett\nJavaris\nJermiah\nJordon\nJose\nKadarius\nKasey\nKeegan\nKeldrick\nKendarius\nKhiry\nKory\nLakendrick\nLester\nMarkus\nMarlon\nMartavious\nMartinez\nMarty\nMontrez\nMorris\nNeil\nNigel\nPayton\nQuinten\nQuintez\nRenardo\nRobbie\nRoberto\nRon\nShaquille\nShelby\nSherman\nSimon\nStewart\nSylvester\nTelvin\nTorey\nTorrance\nTremaine\nTyree\nWallace\nChristopher\nJoshua\nMichael\nJames\nWilliam\nJustin\nBrandon\nJohn\nMatthew\nRobert\nJacob\nDavid\nAndrew\nJoseph\nTyler\nJonathan\nCody\nDaniel\nZachary\nJeremy\nCharles\nNicholas\nSteven\nTimothy\nJordan\nAnthony\nRyan\nThomas\nStephen\nPatrick\nEric\nKevin\nBenjamin\nRichard\nCorey\nKenneth\nKyle\nAaron\nTaylor\nDustin\nAustin\nAdam\nSamuel\nCaleb\nMarcus\nBrian\nPhillip\nCameron\nAlexander\nWesley\nJason\nChristian\nGregory\nTravis\nJeffrey\nNathan\nJesse\nDylan\nJared\nBradley\nEthan\nHunter\nJeffery\nMark\nDerrick\nPaul\nAntonio\nBlake\nCory\nDarius\nChase\nJohnathan\nJonathon\nEdward\nLogan\nAlex\nSean\nBryan\nTerry\nLarry\nSpencer\nWillie\nSeth\nShawn\nCasey\nDouglas\nDerek\nGeorge\nGarrett\nRandall\nRonald\nDakota\nDevin\nDonald\nTerrance\nEvan\nGary\nTrevor\nRodney\nBrett\nReginald\nBobby\nClinton\nColby\nScott\nTevin\nColton\nDalton\nJohnny\nMitchell\nKeith\nKendrick\nMicheal\nChad\nLadarius\nTony\nBilly\nCurtis\nDemetrius\nRoderick\nJerry\nAllen\nKelvin\nNathaniel\nPhilip\nShane\nClayton\nRaymond\nMicah\nCourtney\nDesmond\nFrank\nHenry\nLucas\nCalvin\nDeandre\nDemarcus\nDennis\nAdrian\nCornelius\nDillon\nKaleb\nPreston\nTrenton\nJoel\nMason\nDominique\nJeremiah\nJimmy\nMaurice\nAlan\nGabriel\nJon\nKendall\nRussell\nTommy\nXavier\nBryant\nCedric\nZachery\nAndre\nBrent\nCarlos\nIan\nJamie\nJarvis\nJessie\nQuinton\nRoy\nTroy\nEddie\nJohnathon\nLee\nWalter\nDeangelo\nMarvin\nTanner\nTrent\nCarl\nFrederick\nJermaine\nMathew\nPeter\nTrey\nVincent\nArthur\nJake\nJoe\nLance\nCortez\nForrest\nJarrod\nKristopher\nLuke\nRandy\nRicky\nTerrell\nDarryl\nMalcolm\nTerrence\nVictor\nJackson\nMorgan\nShannon\nDexter\nJerome\nMarquis\nMartin\nRoger\nByron\nClarence\nDarren\nLandon\nDanny\nDevon\nHarrison\nJack\nLevi\nZackary\nDamian\nDarrell\nGavin\nIsaac\nJamarcus\nJay\nKody\nStanley\nTodd\nBarry\nBruce\nCharlie\nClint\nGerald\nGrant\nHayden\nLawrence\nRickey\nRonnie\nWarren\nChandler\nDarrius\nHeath\nJulian\nLouis\nMario\nMarshall\nQuentin\nSkyler\nWayne\nAlbert\nDallas\nErik\nGlenn\nHouston\nJulius\nKerry\nTristan\nCarlton\nCollin\nCoty\nFranklin\nPierre\nTyrone\nZackery\nConnor\nDamien\nDwight\nFredrick\nLadarrius\nNolan\nAubrey\nBraxton\nClifford\nCole\nCraig\nDamion\nElijah\nGraham\nHoward\nRashad\nRoss\nTheodore\nChance\nDevan\nLamar\nLewis\nLonnie\nParker\nQuintin\nRay\nShaun\nAlfred\nAshton\nBrannon\nClay\nDamon\nDedrick\nDenzel\nGeoffrey\nHarold\nJamichael\nJerrod\nKeenan\nKelly\nLorenzo\nMartez\nMelvin\nNoah\nScotty\nShelby\nTerence\nWinston\nAlonzo\nAntoine\nCarson\nCecil\nDarnell\nDestin\nDon\nJackie\nJoey\nLeland\nRodrick\nRoman\nTracy\nBernard\nChadwick\nDemario\nDerick\nDonnie\nDwayne\nEarl\nErnest\nGlen\nJacoby\nJamal\nJamar\nJamison\nJarod\nJody\nJonah\nLeonard\nMilton\nMyron\nSidney\nAlec\nAntwan\nBrenton\nClifton\nCorbin\nDandre\nDarrin\nDavis\nDemarius\nDimitri\nDrake\nEarnest\nEdwin\nEmmanuel\nFreddie\nJamel\nJaron\nJerrell\nJimmie\nKorey\nLamarcus\nMarkus\nMarlon\nMaxwell\nMiguel\nNorman\nPerry\nShaquille\nSylvester\nThaddeus\nTorey\nWade\nWeston\nZachariah\nAddison\nAlton\nAlvin\nBradford\nBrandan\nBrock\nCarter\nColin\nDarrel\nDeonte\nDewayne\nDominque\nDrew\nIsaiah\nJace\nJasper\nJordon\nJose\nKasey\nKenny\nKristian\nLakendrick\nLeon\nMarty\nRicardo\nRiley\nSam\nScottie\nSheldon\nTelvin\nTommie\nTyree\nTyrell\nWill\nWyatt\nAllan\nBaby\nBenny\nBo\nBrad\nBradly\nBrady\nBranden\nCedrick\nColeman\nCordarrius\nDale\nDaryl\nDeanthony\nDejuan\nDemarco\nDevonte\nDontavious\nDonte\nErick\nEvander\nFrankie\nGuy\nHerbert\nJamaal\nJarrett\nJohnnie\nJudson\nKeenen\nKeldrick\nKendal\nLukas\nLuther\nMarquez\nMax\nNickolas\nNicolas\nOctavius\nOrlando\nRico\nRobbie\nRyne\nSage\nShelton\nStefan\nSterling\nSteve\nStuart\nTavaris\nToby\nTucker\nWallace\nWilson\nBlaine\nBrennan\nBroderick\nClyde\nCodey\nCordarius\nDana\nDangelo\nDemetri\nDemetric\nDominic\nDonny\nDusty\nEli\nEllis\nGriffin\nHakeem\nIssac\nJavaris\nJavon\nJayson\nJosiah\nKarl\nKendarius\nKentavious\nKeyon\nKirk\nKwame\nLedarius\nLondon\nMadison\nMarion\nMarquise\nMiles\nMontrell\nMyles\nNigel\nOliver\nPrince\nRalph\nRaphael\nReuben\nShedrick\nStephan\nTorrence\nTyson\nVirgil\nWillard\nWillis\nAkeem\nAndy\nAntwon\nAshley\nAvery\nBarrett\nBennie\nBrooks\nCary\nCliffton\nCodi\nCordero\nDamarcus\nDarian\nDarion\nDemarkus\nDillan\nDillion\nDomonique\nElliot\nElliott\nEugene\nFernando\nForest\nGage\nGarret\nGilbert\nGrayson\nHarley\nHorace\nIsiah\nJabari\nJacorey\nJameson\nJamil\nJaquan\nJasmine\nJavier\nJavoris\nJerrick\nJuan\nKeaton\nKentrell\nKirby\nKurt\nLadarious\nLeo\nLesley\nLeslie\nLester\nMarc\nMarquell\nMorris\nNehemiah\nNelson\nParis\nPayton\nPerez\nReed\nReid\nRobin\nRoosevelt\nSebastian\nSherman\nStetson\nStewart\nTerance\nToney\nTracey\nTremaine\nTremayne\nTyrus\nWendell\nChristopher\nJoshua\nJames\nWilliam\nMichael\nBrandon\nJustin\nJohn\nMatthew\nJacob\nAndrew\nRobert\nJoseph\nDavid\nTyler\nCody\nZachary\nJonathan\nDaniel\nNicholas\nCharles\nJeremy\nRyan\nSteven\nTimothy\nAaron\nThomas\nPatrick\nAnthony\nDylan\nBenjamin\nAustin\nEric\nJordan\nAlexander\nRichard\nStephen\nCorey\nTaylor\nAdam\nKevin\nKyle\nSamuel\nDustin\nBradley\nKenneth\nNathan\nJesse\nTravis\nCaleb\nCameron\nHunter\nBrian\nChristian\nGregory\nJason\nWesley\nMarcus\nBlake\nJeffrey\nTevin\nDillon\nEthan\nJared\nCory\nJonathon\nAlex\nMark\nSean\nPhillip\nEvan\nDerrick\nLogan\nAntonio\nPaul\nCasey\nSeth\nJeffery\nEdward\nChase\nDevin\nWillie\nDonald\nBryan\nShawn\nColby\nDerek\nMason\nRonald\nReginald\nDarius\nJohnathan\nTrevor\nDakota\nCurtis\nNathaniel\nColton\nGeorge\nJackson\nGarrett\nBobby\nDevante\nMitchell\nScott\nKendrick\nTerrance\nTrenton\nJerry\nLarry\nClayton\nGary\nIan\nTerry\nBrett\nDeandre\nMalcolm\nMicheal\nRoderick\nRodney\nTanner\nZachery\nDemetrius\nMicah\nDalton\nJimmy\nJoel\nLadarius\nShane\nKeith\nPreston\nClinton\nRandall\nXavier\nDesmond\nChad\nJamal\nJohnny\nCarl\nConnor\nGerald\nPhilip\nTerrence\nBilly\nBrent\nLandon\nLuke\nTrey\nAlan\nCornelius\nFrederick\nWalter\nDemarcus\nDevonte\nDouglas\nJamie\nRussell\nForrest\nJarvis\nRaymond\nSpencer\nVictor\nAdrian\nDominique\nHenry\nTrent\nCalvin\nCedric\nCourtney\nFrank\nGabriel\nJake\nMaurice\nRicky\nAllen\nJack\nJon\nKelvin\nRandy\nZackary\nBryant\nCarlos\nDennis\nJeremiah\nJessie\nMorgan\nZackery\nJohnathon\nParker\nTony\nBruce\nDarryl\nGavin\nKristopher\nCraig\nFredrick\nJoe\nLevi\nMarvin\nQuentin\nTerrell\nVincent\nAndre\nDevon\nJerome\nDarren\nDeangelo\nDexter\nEddie\nGrant\nHarrison\nLucas\nMartin\nRoy\nTommy\nCoty\nElijah\nHeath\nIsaac\nLance\nShannon\nTroy\nArthur\nByron\nCollin\nDarrell\nJamarcus\nJermaine\nLee\nRoger\nStuart\nWarren\nDallas\nHayden\nNoah\nQuinton\nRickey\nShaquille\nClarence\nColin\nDamian\nDevonta\nMelvin\nTyrone\nCharlie\nClint\nDavis\nKameron\nRoss\nAlbert\nAubrey\nCarlton\nClifton\nDenzel\nJulian\nKaleb\nLawrence\nMarquis\nMarshall\nShelby\nSkylar\nStanley\nWeston\nWilson\nCarson\nFranklin\nJalen\nJay\nKerry\nMathew\nPeter\nRiley\nTelvin\nTerence\nAkeem\nAshton\nCortez\nDarrius\nDominic\nDonnie\nEugene\nKorey\nMario\nMiles\nNicolas\nRonnie\nAlec\nBarry\nBrady\nDanny\nDeonte\nErik\nIsaiah\nJacoby\nJarred\nKendall\nLeonard\nLewis\nLonnie\nMarquise\nScotty\nSidney\nSkyler\nAlvin\nArron\nBranden\nBraxton\nCarter\nCole\nCordarius\nDalvin\nDamon\nDaryl\nDevan\nEmmanuel\nHarry\nHouston\nJamichael\nJoey\nJudson\nMarlon\nOrlando\nRashad\nShaun\nTodd\nBroderick\nCarey\nChance\nChandler\nDarnell\nDemarco\nDeon\nDevontae\nDwight\nGriffin\nJerrod\nJose\nKody\nLadarrius\nLouis\nMarkus\nPeyton\nSawyer\nTracy\nTre\nWayne\nWill\nAntwan\nBrody\nClifford\nDestin\nDion\nDonovan\nEarl\nErnest\nHarold\nHoward\nJamel\nJordon\nJuan\nKenny\nLorenzo\nMarc\nMarquez\nMax\nNorman\nPayton\nReid\nRicardo\nToby\nTy\nTyrell\nBrad\nBryce\nDale\nDamien\nDeanthony\nDemario\nDewayne\nDillan\nDrew\nEarnest\nGeoffrey\nGrady\nJulius\nKendarius\nLamar\nLeon\nLloyd\nNickolas\nPierre\nQuincy\nRodrick\nStewart\nAlonzo\nBrendan\nBrennan\nClay\nDavonte\nDillion\nDimitri\nDominque\nEdwin\nHakeem\nJackie\nJacorey\nJamison\nJarrett\nJarrod\nJasper\nJerrell\nLamarcus\nLeslie\nMack\nMaxwell\nNelson\nOliver\nQuintin\nRaheem\nRakeem\nRoman\nTommie\nTristan\nTucker\nWyatt\nAlfred\nAllan\nAlton\nAntoine\nBlaine\nBraden\nBrannon\nBrantley\nBrenton\nCamron\nCecil\nChadwick\nConner\nDandre\nDarian\nDeshawn\nDominick\nDontavius\nEllis\nGage\nGlenn\nHarley\nHorace\nIsiah\nJabari\nJacolby\nJacques\nJamar\nJamario\nJavier\nJodeci\nJosiah\nKasey\nKeandre\nKristian\nLester\nMalcom\nMarques\nMartez\nMiguel\nMilton\nMyron\nOtis\nRaphael\nRhett\nRoosevelt\nSterling\nSteve\nTheodore\nTitus\nTyree\nVernon\nWinston\nZachariah\nZane\nAdarius\nAmos\nAndy\nAshley\nBernard\nCadarius\nChadrick\nChanning\nChauncey\nChaz\nChester\nCodey\nCourtland\nDarien\nDarrin\nDedrick\nDeion\nDemetric\nDemetris\nDon\nErvin\nGarret\nGarry\nGrayson\nGuy\nIvan\nJaron\nJimmie\nJody\nKelsey\nKeon\nLaron\nLedarius\nMarkeith\nMorris\nNeil\nNigel\nParis\nReece\nReese\nRex\nSheldon\nTarrance\nTobias\nWendell\nAnderson\nAngelo\nBennett\nBennie\nBrendon\nBritton\nClark\nCleveland\nClyde\nColeman\nCordell\nCoy\nDamarcus\nDarious\nDeandrea\nDemetrice\nDequarius\nDerick\nDerrell\nDerrius\nDesmon\nDomonique\nDonavan\nDwayne\nDylon\nEdgar\nEli\nElliot\nEmanuel\nErick\nEzekiel\nFabian\nFrankie\nFred\nFreddie\nGraham\nHerbert\nJadarius\nJamarius\nJaquan\nJarod\nJavaris\nJavarius\nJavonte\nJavoris\nJayson\nJeff\nJessy\nJohnnie\nJonah\nKareem\nKeenan\nLakendrick\nLeland\nLeroy\nLuis\nLuther\nMadison\nMarion\nMatt\nNeal\nOscar\nQuindarius\nRemington\nRico\nScottie\nSherman\nSolomon\nStacey\nStacy\nStefan\nStetson\nStevie\nSylvester\nTalmadge\nTavaris\nTavoris\nTorey\nTory\nTrace\nTravon\nWade\nWalker\nWilbert\nWiley\nChristopher\nMichael\nJames\nWilliam\nJoshua\nBrandon\nJohn\nJustin\nMatthew\nJacob\nTyler\nDavid\nRobert\nZachary\nCody\nAndrew\nAustin\nJoseph\nJonathan\nDaniel\nNicholas\nJordan\nCharles\nAaron\nRyan\nTimothy\nThomas\nAnthony\nSteven\nSamuel\nJeremy\nAlexander\nBenjamin\nCorey\nKevin\nHunter\nStephen\nTaylor\nAdam\nDylan\nPatrick\nKyle\nEric\nRichard\nDustin\nCaleb\nNathan\nChristian\nJesse\nBradley\nKenneth\nMarcus\nJeffrey\nBrian\nDevin\nJason\nWesley\nCameron\nJared\nTravis\nMark\nGregory\nAntonio\nLogan\nBlake\nEthan\nAlex\nChase\nDakota\nDarius\nMason\nPaul\nPhillip\nDalton\nSpencer\nTrevor\nGarrett\nJohnathan\nTerry\nDerrick\nEvan\nJeffery\nJonathon\nSean\nSeth\nColby\nCory\nMitchell\nDillon\nNathaniel\nConnor\nEdward\nTanner\nXavier\nScott\nColton\nWillie\nRodney\nShaquille\nCurtis\nLarry\nPreston\nReginald\nShawn\nRonald\nBryan\nClayton\nJerry\nLucas\nTevin\nCasey\nDonald\nLadarius\nDemetrius\nDerek\nDouglas\nGeorge\nChad\nKeith\nTerrance\nJackson\nIan\nDemarcus\nShane\nTony\nBilly\nBobby\nBrett\nCedric\nDevonte\nGary\nJohnny\nAdrian\nLandon\nTrenton\nJake\nJalen\nJamarcus\nJarvis\nKendall\nRandall\nTroy\nZachery\nForrest\nJoel\nZackary\nDevon\nJeremiah\nParker\nQuinton\nWalter\nDallas\nHenry\nJamal\nGerald\nMicah\nRoderick\nAllen\nCourtney\nDevante\nGrant\nRaymond\nRicky\nTrey\nDeandre\nDesmond\nKaleb\nKelvin\nSkyler\nTerrence\nDominique\nEddie\nJamie\nRussell\nCarlos\nGabriel\nJessie\nJimmy\nMaurice\nPhilip\nRandy\nRoger\nAlan\nArthur\nCarl\nFrederick\nKendrick\nKristopher\nLawrence\nLuke\nBrady\nColin\nCollin\nDennis\nHayden\nLee\nTyrone\nWarren\nBrent\nClarence\nDarryl\nMalcolm\nRonnie\nVictor\nChandler\nDarrell\nJohnathon\nRaheem\nVincent\nBryant\nCole\nDrew\nElijah\nHarrison\nJon\nNoah\nShelby\nStanley\nAndre\nAshton\nAvery\nClinton\nCortez\nCraig\nGavin\nJack\nJarrod\nMarquis\nMarvin\nBraxton\nCalvin\nDanny\nDevonta\nFredrick\nKameron\nMathew\nMorgan\nSidney\nBarry\nDamian\nFrank\nIsaac\nMyles\nRiley\nTerrell\nTodd\nZackery\nDexter\nDonovan\nJarred\nJulian\nLance\nMarshall\nShannon\nSkylar\nBruce\nCharlie\nCornelius\nJarrett\nJermaine\nKerry\nMiles\nNickolas\nNicolas\nQuentin\nRashad\nDarren\nHarley\nHeath\nLadarrius\nLouis\nMarquez\nTerence\nTommy\nClint\nConner\nErik\nHarold\nJamar\nJay\nJerome\nMartin\nPeter\nRicardo\nTrent\nAubrey\nByron\nCarson\nChance\nClay\nClifton\nDamon\nDeangelo\nDenzel\nDrake\nEmmanuel\nLevi\nMarquise\nRickey\nRoss\nTelvin\nAlbert\nAntoine\nBrenton\nCarlton\nCecil\nConor\nDamien\nDamion\nDeonte\nDevan\nDominic\nEdwin\nHouston\nIsaiah\nJamichael\nJoe\nLamar\nLeonard\nMelvin\nRoy\nTracy\nAlvin\nBrantley\nColeman\nCoty\nDemario\nFrankie\nGlenn\nJaylon\nJoey\nLorenzo\nLuther\nSawyer\nShaun\nStuart\nTre\nTrevon\nWalker\nBranden\nDalvin\nDarian\nDemarco\nDeon\nDerick\nDeshawn\nDestin\nDonnie\nEarl\nGraham\nJayson\nJohnnie\nJuan\nKody\nKristian\nLewis\nLonnie\nMarkus\nMilton\nNigel\nNolan\nReid\nSebastian\nSterling\nTyrell\nWeston\nWill\nWilson\nWinston\nBernard\nBradly\nBrock\nBrody\nDarien\nDarion\nDarrius\nDaryl\nDejuan\nDenzell\nDillion\nDwight\nGeoffrey\nGriffin\nJavonte\nJody\nJose\nLamarcus\nLeon\nMarc\nMicheal\nPerry\nRalph\nShelton\nTavaris\nThaddeus\nTheodore\nTucker\nAkeem\nAlec\nBen\nBrendan\nChadwick\nClifford\nCordarius\nDavis\nDean\nDeion\nDemetric\nDeonta\nDevontae\nErnest\nGrayson\nHoward\nJakob\nJudson\nKarl\nKasey\nKeenan\nLloyd\nLukas\nMadison\nMartez\nMaxwell\nNelson\nOliver\nOmar\nPeyton\nRobin\nSam\nSherman\nStephon\nTremaine\nTristan\nTy\nWayne\nWendell\nZachariah\nBlaine\nBlakely\nBraden\nBrenden\nBrooks\nChaz\nDale\nDarnell\nDedrick\nDenver\nElliott\nEugene\nFranklin\nGrady\nJacques\nJamel\nJamison\nJasper\nJimmie\nJosiah\nKendal\nKendarius\nKeon\nKorey\nMax\nMickey\nOrlando\nPierre\nQuincy\nQuintin\nRay\nRodrick\nTray\nAlfred\nAllan\nAlphonso\nAmos\nAshley\nBeau\nBrad\nBroderick\nCamron\nCarter\nCary\nChester\nClark\nCoby\nCordarrius\nDandre\nDanthony\nDavonte\nDemarius\nDemarkus\nDemetris\nDequan\nDewayne\nDillan\nDorian\nEli\nFloyd\nFreddie\nGarrison\nHolden\nHudson\nIvan\nJacoby\nJaleel\nJamarius\nJarmarcus\nJerald\nJermey\nJerrell\nJerrod\nJonah\nJordon\nJustine\nJuwan\nKelly\nLedarius\nMackenzie\nMario\nMarkel\nMiguel\nNorman\nOwen\nRakeem\nRaven\nReed\nRhett\nRocky\nStacey\nSylvester\nWilliams\nWyatt\nZane\nAlfonso\nAlton\nAndy\nAntwan\nAntwon\nAron\nBaby\nChristina\nColt\nColten\nCullen\nDante\nDarrian\nDarrin\nDavante\nDavey\nDeante\nDemonte\nDeontae\nDeontre\nDionte\nDiquan\nDominick\nDon\nDontavious\nDontrell\nDwayne\nEllis\nEmmett\nErick\nErin\nEverett\nFreddrick\nGlen\nHarris\nHarry\nHugh\nIsiah\nIssac\nJackie\nJacorey\nJadarius\nJalon\nJamorris\nJarad\nJaron\nJavon\nJavonta\nJavoris\nJaylen\nJerod\nJulius\nJustice\nKeaton\nKedrick\nKelby\nKendrell\nKristofer\nLabarron\nLavonte\nLeo\nLeroy\nLincoln\nLoren\nLuis\nMack\nMalcom\nMarion\nMiller\nMontrell\nMorris\nMoses\nNathanael\nNeal\nNick\nOctavius\nRaphael\nRodriguez\nRodriquez\nRusty\nScottie\nSedrick\nShedrick\nStefan\nStephan\nSteve\nStevie\nStewart\nTamarcus\nToby\nTurner\nChristopher\nWilliam\nJames\nJoshua\nMichael\nJohn\nJustin\nBrandon\nAustin\nMatthew\nJacob\nTyler\nZachary\nAndrew\nDavid\nRobert\nJoseph\nCody\nNicholas\nDaniel\nJonathan\nJordan\nThomas\nCharles\nRyan\nTimothy\nSteven\nHunter\nAnthony\nAaron\nDustin\nBenjamin\nSamuel\nDylan\nAlexander\nJeremy\nRichard\nEric\nCaleb\nJesse\nCameron\nTaylor\nStephen\nKyle\nAdam\nChristian\nKevin\nPatrick\nNathan\nBrian\nMarcus\nDevin\nJared\nKenneth\nCorey\nDalton\nJason\nAlex\nDakota\nLogan\nWesley\nJeffrey\nBradley\nTravis\nBlake\nMark\nSeth\nMason\nPhillip\nTrevor\nAntonio\nDerrick\nGarrett\nGregory\nEdward\nChase\nEthan\nJohnathan\nColby\nPaul\nJackson\nSean\nDillon\nJeffery\nXavier\nBryan\nCory\nMitchell\nCasey\nDarius\nPreston\nBobby\nDonald\nNathaniel\nDeandre\nDemarcus\nEvan\nJalen\nRonald\nJerry\nZackary\nColton\nLucas\nTerry\nTevin\nForrest\nJonathon\nBrett\nDemetrius\nHayden\nConnor\nCurtis\nJohnny\nLuke\nWillie\nGary\nKeith\nLarry\nAllen\nGabriel\nTanner\nAndre\nGeorge\nJake\nLadarius\nLandon\nJamal\nSpencer\nClayton\nDerek\nDevonte\nDouglas\nIan\nBilly\nHenry\nJamarcus\nShawn\nJeremiah\nTony\nTrenton\nTroy\nGrant\nJarvis\nJoel\nMicah\nRodney\nShaquille\nAlan\nJessie\nKendall\nRaymond\nRoderick\nRussell\nDesmond\nDevon\nIsaac\nKaleb\nReginald\nScott\nZachery\nBrent\nElijah\nJimmy\nMorgan\nRandall\nTerrance\nTrey\nBrady\nCalvin\nJon\nQuinton\nChad\nRandy\nWalter\nCarl\nCollin\nJohnathon\nPeter\nRashad\nFrederick\nKelvin\nNoah\nAvery\nCourtney\nDevante\nKendrick\nLevi\nTommy\nAdrian\nJay\nLawrence\nMarquis\nShane\nTerrence\nChandler\nFrank\nHarrison\nMartin\nPhilip\nRiley\nSkylar\nVincent\nAlec\nDamien\nDarryl\nEddie\nJack\nJonah\nLee\nRicky\nTrent\nTyrone\nDennis\nDominique\nJoe\nRoger\nRonnie\nSkyler\nZackery\nDamian\nDexter\nGage\nJarrod\nJulian\nMalcolm\nParker\nStanley\nTerrell\nVictor\nBraxton\nCarlos\nCedric\nClay\nColin\nKristopher\nMaurice\nRoy\nBryant\nCole\nDenzel\nDevonta\nGerald\nJamie\nJerome\nKody\nLance\nMarshall\nMelvin\nMicheal\nSidney\nClinton\nConner\nDallas\nDanny\nDarrell\nDarrius\nDeonte\nDonovan\nFranklin\nLorenzo\nQuentin\nShannon\nAlbert\nChance\nCornelius\nDarren\nDevan\nHouston\nJarrett\nNicolas\nBruce\nCarson\nFredrick\nJaylon\nLonnie\nMiles\nNickolas\nTerence\nTodd\nArthur\nCortez\nDavis\nDeon\nDrake\nDrew\nErik\nJarred\nJustice\nKameron\nMario\nMathew\nWeston\nAshton\nAubrey\nBrendan\nByron\nCraig\nDarian\nDeion\nEmmanuel\nGraham\nGriffin\nJermaine\nLane\nMaxwell\nRickey\nWilson\nBrannon\nCarter\nCharlie\nClarence\nDamion\nDamon\nDewayne\nHarley\nHoward\nJaquan\nJimmie\nJudson\nKeandre\nKendarius\nLeon\nMarvin\nNelson\nPayton\nBarry\nCarlton\nDarnell\nDeanthony\nDevontae\nErnest\nGrayson\nJamichael\nJuan\nKerry\nLadarrius\nMarlon\nMarquez\nMarquise\nPeyton\nQuincy\nSebastian\nStuart\nAlfred\nAlonzo\nColeman\nDarien\nDarion\nDestin\nDonte\nDwight\nEugene\nGeoffrey\nHeath\nIsaiah\nJacoby\nJamar\nJoey\nJose\nJulius\nMilton\nNigel\nOliver\nOrlando\nQuintin\nRoman\nRoss\nAddison\nBen\nBrad\nBrock\nBryce\nClifford\nClifton\nClint\nDeangelo\nDemario\nDeontae\nDorian\nElliott\nEmanuel\nHarold\nHorace\nJamison\nKristian\nLamarcus\nLeonard\nLouis\nMyles\nNolan\nRaheem\nShaun\nSheldon\nTelvin\nTracy\nTrevon\nTy\nWalker\nWyatt\nZachariah\nBranden\nCordarius\nDejuan\nDeshawn\nDominic\nDominick\nDonnie\nDontavious\nEdwin\nEli\nFreddie\nGavin\nGlenn\nHakeem\nJadarius\nJakob\nJavaris\nJavonte\nJaylen\nJuwan\nKadarius\nKeldrick\nKorey\nLeroy\nLewis\nMarkeith\nMarkus\nMarquel\nNeil\nOtis\nSawyer\nShelby\nSimon\nSolomon\nSterling\nTitus\nTucker\nWarren\nWayne\nAkeem\nAlton\nAlvin\nBrantley\nBrody\nCorbin\nCoty\nDakoda\nDan\nDandre\nDarrion\nDemarco\nDeonta\nDequan\nDerick\nGrady\nHolden\nHugh\nHuner\nIsiah\nJackie\nJacorey\nJamario\nJamel\nJarmarcus\nJerrell\nJerrod\nKeonte\nKeyon\nKhari\nLuther\nMadison\nNathanael\nPrince\nRakeem\nRay\nRodrick\nShelton\nStetson\nTavares\nTed\nTravon\nTre\nTyree\nWinston\nAndy\nAnton\nAusten\nAuston\nBailey\nBrooks\nCamron\nDale\nDalvin\nDarrian\nDarrien\nDaulton\nDavonte\nDedrick\nDemetris\nDeondre\nDusty\nDwayne\nErvin\nGarret\nGuy\nHerman\nHudson\nIsrael\nIvan\nJamaal\nJamarius\nJaron\nJaylin\nKedric\nKelton\nKendell\nKenny\nKhalil\nKolby\nLamar\nLaquinton\nLawson\nMarco\nMax\nMontrell\nMyron\nQuintez\nRamon\nScottie\nScotty\nStephon\nToby\nTrevin\nTylor\nWade\nZane\nAlden\nAntoine\nAntwan\nBenton\nBlaine\nBradford\nBrenden\nBrennan\nChaz\nClyde\nCourtland\nCoy\nDante\nDaquan\nDaryl\nDavey\nDavin\nDeante\nDemetric\nDeshun\nDillan\nDion\nEarl\nEarnest\nElisha\nEllis\nForest\nFrankie\nHarry\nHerbert\nIshmael\nJace\nJajuan\nJalin\nJamarkus\nJameson\nJaquarius\nJasper\nJavarius\nJesus\nJody\nKeenan\nKentrell\nLester\nLukas\nMarion\nMartez\nMarty\nMorris\nNeal\nPierre\nQuandarius\nQuindarius\nRalph\nReid\nReuben\nRicardo\nRobin\nRodriquez\nRolando\nRusty\nSedrick\nShaquan\nSherman\nStacy\nSteve\nTerell\nTheodore\nTommie\nTorrey\nTory\nTyran\nWestley\nWill\nWilliam\nChristopher\nJames\nMichael\nJoshua\nAustin\nJacob\nBrandon\nMatthew\nJustin\nJohn\nTyler\nZachary\nRobert\nDavid\nJoseph\nAndrew\nJonathan\nNicholas\nCody\nDaniel\nHunter\nJordan\nCharles\nDylan\nThomas\nRyan\nAnthony\nCaleb\nAaron\nTimothy\nChristian\nBenjamin\nSamuel\nDustin\nSteven\nAlexander\nTaylor\nPatrick\nJeremy\nStephen\nDakota\nDevin\nCameron\nRichard\nCorey\nKenneth\nKevin\nLogan\nJesse\nNathan\nAdam\nJason\nEric\nDalton\nGregory\nKyle\nMarcus\nWesley\nJeffrey\nBrian\nBlake\nEthan\nJared\nMason\nBradley\nChase\nAlex\nColton\nEvan\nTrevor\nSean\nPhillip\nConnor\nGarrett\nJohnathan\nHayden\nColby\nJackson\nNathaniel\nSeth\nAntonio\nMark\nDerrick\nPaul\nJeffery\nChandler\nGeorge\nTanner\nTravis\nDarius\nTrenton\nClayton\nCory\nLuke\nNoah\nCasey\nElijah\nPreston\nJonathon\nTristan\nBrett\nBryan\nTerry\nDemetrius\nKeith\nLadarius\nRodney\nWillie\nDemarcus\nGrant\nJimmy\nRonald\nBilly\nBobby\nDonald\nLucas\nXavier\nDeandre\nEdward\nLarry\nMitchell\nZachery\nMicah\nJalen\nJeremiah\nJerry\nShawn\nIan\nIsaac\nJake\nBrady\nGary\nReginald\nJohnny\nLandon\nAllen\nCurtis\nGabriel\nJack\nJamarcus\nSpencer\nTerrance\nBraxton\nDerek\nDevonte\nCarlos\nCollin\nMalik\nScott\nZackary\nDillon\nDouglas\nKendrick\nParker\nTroy\nForrest\nRandall\nTommy\nCalvin\nHenry\nTony\nChance\nJessie\nJon\nJonah\nTevin\nVictor\nWalter\nZackery\nAlec\nCarl\nCedric\nKaleb\nKhalil\nPeyton\nArthur\nBrent\nDesmond\nGavin\nGerald\nLevi\nMorgan\nRoderick\nRonnie\nShane\nChad\nDevon\nFrederick\nKelvin\nRiley\nRussell\nTerrell\nCarson\nJamal\nJamie\nJoel\nQuinton\nRaymond\nSkyler\nAshton\nDavis\nDevonta\nEddie\nMalcolm\nMaurice\nTrey\nCole\nColin\nCourtney\nKendall\nByron\nDennis\nDrew\nHarrison\nMarquis\nBryant\nCornelius\nDeonte\nIsaiah\nLewis\nMicheal\nRandy\nShannon\nTerrence\nTrent\nDamien\nJarvis\nKristopher\nRashad\nRicky\nRoger\nAlan\nCharlie\nClay\nConner\nDallas\nDamian\nDanny\nDominique\nFranklin\nJuan\nLee\nMathew\nAvery\nCarter\nDarryl\nDevante\nDonovan\nFrank\nHeath\nLance\nLane\nLouis\nShaquille\nAdrian\nDamon\nDeangelo\nDexter\nDominic\nGlenn\nJaylen\nMiles\nPeter\nPhilip\nQuentin\nSkylar\nVincent\nWarren\nAnfernee\nBailey\nClarence\nDeion\nDevan\nHarley\nHouston\nJay\nJermaine\nKolby\nLawrence\nMarquise\nNickolas\nRoy\nStanley\nTristen\nWyatt\nDarrell\nDestin\nDewayne\nGrayson\nJaquan\nJaylon\nJose\nJustice\nKameron\nLonnie\nMarvin\nSawyer\nSidney\nZane\nAlbert\nBarry\nBrendan\nBrennan\nCarlton\nClinton\nDarren\nDarrius\nDeanthony\nDeondre\nGraham\nJarred\nLorenzo\nMarshall\nAndre\nColeman\nGage\nGriffin\nHoward\nJarrett\nJaylin\nJoe\nJohnathon\nJulian\nKendarius\nLadarrius\nNigel\nShaun\nTracy\nTyrone\nWilson\nBraden\nDamion\nDrake\nElliott\nFredrick\nJacoby\nJavaris\nJulius\nKerry\nKody\nLamarcus\nReed\nTheodore\nBrantley\nCade\nDale\nErnest\nJacques\nJamar\nJamison\nJavon\nJoey\nJosiah\nKendal\nLeonard\nLeslie\nMadison\nMarlon\nMarquez\nMelvin\nNelson\nNicolas\nOrlando\nRaheem\nSebastian\nSterling\nTravon\nTyree\nTyrus\nBrock\nClifton\nClint\nCortez\nCraig\nDarian\nDenzel\nDevontae\nErik\nErin\nHarold\nHarry\nJamarius\nJerome\nJohnnie\nKadarius\nMartin\nMaxwell\nNeil\nPayton\nQuintin\nRoss\nShelby\nSherman\nTucker\nWill\nAddison\nAntwon\nArron\nBranden\nBrannon\nBroderick\nBruce\nChadwick\nCoby\nDalvin\nDandre\nDarrian\nDavonte\nDejuan\nDemarco\nDemarius\nDeon\nDillan\nDuncan\nIvan\nJabari\nJalon\nJamel\nJerrod\nJesus\nKeegan\nKeontae\nKurtis\nKyler\nMario\nMartez\nMyles\nQuincy\nQuintarius\nReid\nTerence\nTodd\nTy\nWayne\nAlvin\nAubrey\nBernard\nBrenton\nBrooks\nCordarius\nCoty\nDangelo\nDante\nDequan\nDillion\nDionte\nDonnie\nErick\nFrancisco\nFreddie\nGordon\nHudson\nIsrael\nJarrod\nJavonte\nJimmie\nJudson\nKahlil\nKarl\nKelly\nKendarious\nKeon\nKristian\nLadarious\nLeon\nMarc\nOmar\nOwen\nPerry\nQuinn\nRalph\nRashaan\nRhett\nSimon\nStuart\nSylvester\nTavaris\nTriston\nWade\nWalker\nWeston\nWinston\nAlfred\nAuston\nBlaine\nBradford\nBrody\nBryce\nCadarius\nCecil\nCedrick\nDarien\nDayton\nDelvin\nDemarkus\nDeontae\nDeshawn\nDonnell\nDonte\nDusty\nDwight\nEarl\nEarnest\nEdwin\nEmmanuel\nEugene\nHugh\nJadarius\nKeldrick\nKenny\nKiante\nKijana\nKolton\nKorey\nKurt\nLamar\nLeroy\nLukas\nMalachi\nMarco\nMax\nMiguel\nMikel\nMontel\nNathanial\nNikolas\nNolan\nQuindarius\nRay\nRocky\nRodriquez\nSam\nStetson\nThaddeus\nToby\nTomas\nTommie\nTre\nTrevon\nTristian\nTurner\nTyrin\nTyus\nWendell\nWillis\nZachariah\nAlejandro\nAli\nAllan\nAlonzo\nAndrea\nAntoine\nBlakeley\nBrad\nBrenden\nCaden\nCedarius\nChasen\nChris\nClark\nClifford\nCordell\nDeante\nDeshaun\nDezmond\nDominick\nDylon\nEaston\nEllis\nEmmitt\nErvin\nEverett\nEzekiel\nGeoffrey\nHolden\nIssac\nJacorey\nJalan\nJamario\nJameson\nJamichael\nJase\nJavoris\nJermey\nJerrell\nJody\nJonas\nJordon\nJustus\nJustyn\nKai\nKane\nKarlton\nKeandre\nKeanthony\nKeenan\nKelby\nLaderrick\nLakendrick\nLatrell\nLloyd\nMackenzie\nManuel\nMarkell\nMarlin\nMarquell\nMarques\nMartavius\nMckenzie\nNathanael\nOctavius\nOtis\nQuintrell\nRakeem\nRashawn\nRashun\nRicardo\nRickey\nRoman\nRomello\nRuben\nRusty\nScotty\nSemaj\nSolomon\nStacy\nSydney\nTavares\nTheo\nTorey\nTorrey\nTristin\nTylor\nVance\nVernon\nWilliam\nMichael\nAustin\nChristopher\nJames\nJoshua\nJacob\nJohn\nMatthew\nJustin\nBrandon\nTyler\nJoseph\nZachary\nAndrew\nRobert\nDavid\nNicholas\nJonathan\nHunter\nThomas\nDaniel\nJordan\nCharles\nChristian\nRyan\nSamuel\nCody\nTimothy\nAnthony\nDylan\nCaleb\nBenjamin\nAlexander\nLogan\nAaron\nSteven\nCameron\nDustin\nEric\nPatrick\nKyle\nRichard\nStephen\nDakota\nJason\nJeremy\nKevin\nDevin\nEthan\nTristan\nKenneth\nAdam\nJesse\nMarcus\nTaylor\nBrian\nDalton\nNoah\nCorey\nNathan\nWesley\nBradley\nChase\nMalik\nJeffrey\nJackson\nJared\nMason\nBlake\nChandler\nTrevor\nAlex\nGregory\nAntonio\nJohnathan\nMark\nColton\nTanner\nEdward\nGarrett\nSeth\nConnor\nNathaniel\nPhillip\nTravis\nJerry\nClayton\nGeorge\nHayden\nLandon\nBryan\nJeffery\nGabriel\nIan\nLucas\nColby\nEvan\nIsaiah\nDarius\nDerrick\nPeyton\nDonald\nElijah\nWillie\nJonathon\nMitchell\nPaul\nSpencer\nTrenton\nReginald\nTerry\nPreston\nXavier\nBobby\nCory\nBrett\nIsaac\nKaleb\nRandall\nSean\nCollin\nBraxton\nJalen\nLuke\nMicah\nRoderick\nScott\nDillon\nJeremiah\nRodney\nDeandre\nDemarcus\nDevon\nJohnny\nRiley\nRonald\nDouglas\nLarry\nDerek\nJack\nRaymond\nCasey\nGrant\nShawn\nBrady\nDemetrius\nJamal\nJonah\nZackary\nHarrison\nJamarcus\nJimmy\nTrey\nWalter\nChance\nTerrance\nBailey\nBryant\nCole\nJake\nRashad\nBilly\nChad\nTony\nColin\nHenry\nKelvin\nLadarius\nParker\nZachery\nZackery\nAlec\nAvery\nConner\nDevante\nGary\nMicheal\nCalvin\nCurtis\nFrederick\nJarrett\nJohnathon\nVincent\nAllen\nCarson\nDevonte\nRandy\nTrent\nAndre\nDarrell\nDeonte\nDesmond\nRussell\nSkyler\nTerrell\nAdrian\nAlan\nDarryl\nJarvis\nKendrick\nLevi\nMiles\nTristen\nBrent\nCedric\nGrayson\nJoe\nJose\nKeith\nMaurice\nPeter\nQuinton\nRicky\nSkylar\nEddie\nMarquis\nMorgan\nNicolas\nRonnie\nTriston\nBraden\nCarl\nCarter\nDamian\nDangelo\nDanny\nDonovan\nFrank\nGerald\nHouston\nJaylon\nJessie\nJoel\nJuan\nKendall\nKendarius\nLane\nQuentin\nVictor\nAshton\nDavis\nDrew\nArthur\nDallas\nDamion\nGavin\nJulian\nKristopher\nLance\nMarshall\nTommy\nWyatt\nClay\nCourtney\nDeanthony\nDenzel\nJermaine\nMalcolm\nPayton\nTevin\nTyrone\nWalker\nDamon\nDennis\nDrake\nJay\nKhalil\nMathew\nNickolas\nShane\nStephon\nTerrence\nTroy\nWeston\nAlbert\nCarlos\nDeangelo\nDeon\nDexter\nEli\nGriffin\nJon\nJustice\nKyler\nMartin\nMiguel\nStanley\nWilson\nBrantley\nColeman\nDarrius\nEmmanuel\nGraham\nLee\nOwen\nRaheem\nRickey\nRoy\nShannon\nTracy\nBarry\nBrody\nCornelius\nDeion\nDominique\nFranklin\nGage\nHarry\nHeath\nJacoby\nKameron\nMarquez\nMarquise\nMartavious\nMarvin\nMyles\nPhilip\nRoss\nAnfernee\nBrendan\nBrenton\nBrock\nCortez\nDamien\nDarren\nDeshawn\nEmanuel\nJamichael\nJaquan\nJaylan\nJaylin\nJosiah\nKody\nLawrence\nMario\nRoger\nTodd\nTyrell\nWarren\nWill\nZane\nAubrey\nBranden\nBrannon\nCharlie\nDalvin\nEarnest\nJamel\nJulius\nMaxwell\nSawyer\nShelby\nTy\nTyree\nAlonzo\nAlvin\nBrooks\nBruce\nCarlton\nClarence\nClifford\nCullen\nDandre\nDevontae\nDillan\nDominic\nDontae\nHarold\nJacques\nJamie\nJerome\nLadarrius\nLorenzo\nLuis\nMadison\nMartez\nMelvin\nOrlando\nOscar\nSidney\nTristin\nTucker\nAntoine\nBeau\nByron\nCade\nCraig\nDante\nDarian\nDaryl\nDedrick\nDejuan\nDemarco\nDerick\nDestin\nDevonta\nDusty\nForrest\nHarley\nIsiah\nJacorey\nJarrod\nJavier\nJaylen\nJudson\nJuwan\nKelton\nLeon\nLewis\nLouis\nMarion\nNigel\nNolan\nQuindon\nReed\nReid\nRoman\nTrevon\nTristian\nWade\nZachariah\nAddison\nCamron\nClifton\nClint\nCoby\nDamarcus\nDeante\nDecarlos\nDeonta\nDon\nErik\nEugene\nFredrick\nGordon\nJadarius\nJakob\nJarred\nJordon\nKelly\nKendell\nKennedy\nKeonte\nKeshawn\nKordell\nLamarcus\nOliver\nOmar\nPierce\nQuincy\nQuintin\nRiver\nRomello\nTurner\nAshley\nBlakely\nBryson\nCanaan\nCedrick\nCodie\nColten\nCorbin\nCordarius\nDaylon\nDorian\nDwayne\nEarl\nFrancisco\nGarret\nGarrison\nGeoffrey\nGlenn\nHorace\nHudson\nIvan\nJaden\nJaleel\nJalyn\nJameson\nJavon\nJim\nKasey\nKeenan\nKendal\nKeon\nKristian\nLeonard\nMarlon\nNathanael\nPerry\nQuindarius\nRaekwon\nRashaad\nRhett\nRodrick\nShaquille\nSherman\nStefan\nStevie\nStuart\nTitus\nWanya\nAntwan\nBen\nBradford\nBrennan\nBret\nCaden\nClinton\nCourtland\nCristian\nDarion\nDarnell\nDarrian\nDashawn\nDemond\nDeondre\nDeontae\nDevan\nDewayne\nDonnie\nEduardo\nErnest\nEverett\nFred\nHolden\nHoward\nJabari\nJamon\nJaquez\nJasper\nJavontae\nJawon\nJesus\nKelsey\nKeyshawn\nKolby\nKory\nKurt\nLawson\nLayton\nLeslie\nLonnie\nMarc\nMarkell\nMiller\nMilton\nMontez\nNeal\nOctavius\nRalph\nRemington\nRicardo\nSheldon\nSimon\nStone\nTavares\nTommie\nTrace\nVan\nWinston\nZechariah\nAdarius\nAlexis\nAlfred\nAndy\nAngel\nAntony\nBlaine\nBradly\nBrandan\nBrayden\nBrendon\nBroderick\nBryce\nCason\nCecil\nChason\nClaude\nCleveland\nCooper\nCoty\nDaquan\nDarrin\nDavontae\nDemario\nDeshaun\nDeshun\nDeven\nDevyn\nDontavious\nDontavius\nDonte\nDwight\nEdwin\nElisha\nErick\nErvin\nGlen\nIra\nIssac\nJackie\nJacolby\nJacquez\nJamar\nJamari\nJamario\nJamison\nJammie\nJaquavious\nJatavious\nJayson\nJefferson\nJody\nJoey\nJonas\nJorge\nKadarius\nKarl\nKeion\nKendarious\nKeontae\nKerry\nKristofer\nLloyd\nLukas\nMackenzie\nMickey\nMikel\nMontel\nNathanial\nNelson\nNikolas\nParis\nQuadarius\nQuenton\nQuintarius\nRafael\nRay\nRusty\nSebastian\nSergio\nSilas\nStacy\nSterling\nTamarcus\nTayler\nTobias\nTory\nTremaine\nTrenten\nTrevin\nTyrus\nVernon\nWayne\nWendell\nWilliam\nChristopher\nJames\nJacob\nJoshua\nAustin\nMichael\nJohn\nMatthew\nBrandon\nJustin\nTyler\nZachary\nAndrew\nRobert\nJonathan\nJoseph\nDavid\nJordan\nNicholas\nDaniel\nHunter\nChristian\nCaleb\nSamuel\nAnthony\nCody\nRyan\nTimothy\nThomas\nDylan\nBenjamin\nCharles\nLogan\nCameron\nAlexander\nAaron\nNoah\nNathan\nEthan\nDakota\nSteven\nDustin\nKyle\nJeremy\nDevin\nKevin\nEric\nPatrick\nDalton\nJackson\nTaylor\nJason\nRichard\nAdam\nKenneth\nStephen\nBradley\nMason\nChase\nTanner\nBlake\nJesse\nJared\nBrian\nMarcus\nCorey\nAlex\nTristan\nWesley\nEvan\nAntonio\nGarrett\nGregory\nTrevor\nMalik\nColton\nJeremiah\nPhillip\nSeth\nTrenton\nSean\nHayden\nTravis\nDerrick\nChandler\nLuke\nNathaniel\nJeffrey\nJeffery\nLucas\nElijah\nGabriel\nBraxton\nPreston\nConnor\nClayton\nJohnathan\nPeyton\nColby\nDonald\nIsaiah\nLandon\nShawn\nEdward\nMark\nSpencer\nXavier\nBailey\nBrett\nDarius\nKaleb\nDeandre\nDemetrius\nCasey\nPaul\nCole\nHarrison\nJake\nMicah\nParker\nTerry\nMitchell\nJohnny\nJonathon\nBrady\nWillie\nCurtis\nIsaac\nLevi\nGavin\nJack\nRiley\nRonald\nZackary\nCory\nLarry\nScott\nBryan\nCollin\nDevon\nGeorge\nIan\nJaylon\nCarlos\nRodney\nTommy\nZachery\nDemarcus\nJerry\nAshton\nBilly\nJuan\nTony\nWalter\nCalvin\nColin\nDillon\nJalen\nAllen\nJamarcus\nRussell\nZackery\nBobby\nDesmond\nJimmy\nJon\nChance\nReginald\nJarrett\nJaylen\nJoel\nKendall\nKristopher\nMaurice\nMicheal\nRandall\nRaymond\nGrant\nLadarius\nQuinton\nRoderick\nTrey\nTroy\nDallas\nHouston\nJamal\nKeith\nKelvin\nTerrance\nTriston\nHenry\nJose\nKameron\nMorgan\nTristen\nAlec\nCarson\nCarter\nCedric\nMalcolm\nShane\nSkyler\nChad\nConner\nDavis\nDerek\nFrank\nJonah\nNicolas\nPayton\nTucker\nAdrian\nAndre\nCarl\nDevan\nDonovan\nEddie\nJuwan\nKendrick\nPhilip\nSidney\nArthur\nDeangelo\nDennis\nDouglas\nGage\nGary\nOmar\nPeter\nQuentin\nTyrone\nVictor\nAlan\nBraden\nClinton\nColeman\nErik\nGerald\nGriffin\nJamie\nJermaine\nKeenan\nKendarius\nLane\nRicky\nSkylar\nBlaine\nDamien\nDangelo\nDante\nDarren\nDrew\nJakob\nJarvis\nLawrence\nRashad\nVincent\nWarren\nZane\nBryant\nDevonte\nGrayson\nHarley\nJessie\nLuis\nMarvin\nNickolas\nTrent\nAvery\nBryce\nCortez\nDamion\nDestin\nDevante\nDominic\nFredrick\nJohnathon\nLance\nRandy\nTodd\nWyatt\nBrendan\nBrent\nCourtney\nDamian\nDarryl\nDeanthony\nDewayne\nDexter\nFranklin\nFrederick\nJaquan\nJarrod\nJudson\nKhalil\nLorenzo\nMelvin\nMiguel\nRonnie\nRoss\nSawyer\nTevin\nWilson\nBranden\nCraig\nDaquan\nGraham\nHarold\nJacorey\nJarred\nJerome\nJulian\nKody\nMathew\nMiles\nOwen\nReid\nTerrell\nTrevon\nWeston\nBrennan\nBrody\nClarence\nCornelius\nDarian\nDarrell\nEmmanuel\nHeath\nJabari\nJaylan\nJoe\nJosiah\nJustice\nMartavious\nMartin\nRoy\nTy\nAlbert\nAnfernee\nBryson\nDamon\nDandre\nDeontae\nMarquise\nMaxwell\nMyles\nQuintin\nToby\nTracy\nTyree\nAddison\nAlton\nBarry\nBrannon\nClifton\nDarion\nDeonte\nDeven\nDevontae\nDillan\nDonte\nDorian\nDrake\nEarnest\nEmanuel\nGarret\nIsiah\nIvan\nJacquez\nJasper\nJorge\nKeandre\nLadarrius\nLewis\nMarquis\nNolan\nRiver\nStanley\nTerrence\nWalker\nAdarius\nAlejandro\nAlvin\nAubrey\nByron\nClay\nDarrion\nDayton\nDenzel\nDeshawn\nDwayne\nErick\nErnest\nJavon\nJaylin\nJesus\nKennedy\nKeshawn\nLee\nMadison\nMarquez\nNigel\nQuindarius\nRaheem\nTobias\nTyrell\nWade\nAlfred\nBennett\nClifford\nDanny\nDarrius\nDevonta\nDominique\nEli\nEugene\nGordon\nGreyson\nHakeem\nJadarius\nJameson\nJavier\nJoey\nKeonte\nMalachi\nMarshall\nPaxton\nReese\nRickey\nRoger\nRoman\nSebastian\nShannon\nShelby\nStone\nTheodore\nTrace\nTristian\nBrayden\nBrenden\nBruce\nCamron\nCason\nChadwick\nCharlie\nChauncey\nClark\nColten\nCordarius\nDalvin\nDarien\nDaryl\nDashawn\nDeante\nDedrick\nDemario\nDeonta\nDillion\nDonnie\nDuncan\nErin\nForrest\nGarrison\nGlenn\nHoward\nJalon\nJaret\nJay\nJerrod\nJulius\nKeegan\nKevon\nKirkland\nLouis\nMackenzie\nMario\nNathanael\nOliver\nOscar\nOtis\nPerry\nRafael\nRodrick\nSergio\nShamar\nSimon\nStephon\nZachariah\nAidan\nAngelo\nAshley\nBeau\nBen\nBradford\nBrantley\nBronson\nBrooks\nCaden\nCedrick\nChristion\nCorbin\nCourtland\nCullen\nDamarius\nDarrin\nDawson\nDean\nDeion\nDemarkus\nDeric\nDewey\nDominick\nDon\nDustyn\nElliott\nEllis\nHampton\nHudson\nIsrael\nJace\nJamar\nJamarius\nJamison\nJavaris\nJavarius\nJody\nKedric\nKeion\nKeldrick\nKerry\nKeyon\nKolton\nKristian\nKristofer\nKyler\nLamarcus\nLeon\nLeroy\nLester\nLloyd\nLondon\nLukas\nMack\nMarc\nMarlon\nMarquell\nMarty\nMax\nMontrell\nOrlando\nQuintavious\nRashawn\nReed\nRuben\nStuart\nTommie\nTyson\nAlexis\nAlonzo\nAntonia\nAntwon\nAugustus\nAuston\nBernard\nBrad\nBradly\nBraylon\nBrennen\nBrenton\nBrock\nBroderick\nBryon\nCade\nChancellor\nCharleston\nCoby\nCooper\nDarnell\nDelvin\nDemonta\nDemonte\nDominque\nDontae\nEaston\nEdgar\nEduardo\nEdwin\nElisha\nEzekiel\nFrankie\nHector\nHolden\nIssac\nJackie\nJajuan\nJamichael\nJaquarius\nJaquavious\nJarod\nJavonte\nJimmie\nJosef\nKadarius\nKareem\nKelsey\nKelton\nKendal\nKentavious\nKenyon\nKeondre\nKurtis\nLakendrick\nLeo\nLiam\nLucus\nLuther\nMarquel\nMickey\nMiller\nMorris\nMyron\nNicklaus\nNikolas\nParis\nQuadarius\nQuandarius\nQuincy\nQuintavius\nQuinten\nRaekwon\nRhett\nRoberto\nRodriquez\nSam\nSheldon\nStacey\nStacy\nSterling\nTre\nTylar\nTyrin\nWendell\nWill\nWilliam\nJacob\nAustin\nChristopher\nJoshua\nJames\nMichael\nJohn\nBrandon\nMatthew\nTyler\nAndrew\nJoseph\nDavid\nJustin\nNicholas\nZachary\nHunter\nRobert\nJordan\nJonathan\nChristian\nThomas\nDaniel\nCaleb\nSamuel\nNoah\nCameron\nCharles\nDylan\nBenjamin\nRyan\nLogan\nAnthony\nTimothy\nCody\nAaron\nNathan\nAlexander\nEthan\nDalton\nKyle\nDevin\nJason\nSteven\nJackson\nEric\nAdam\nDakota\nKevin\nPatrick\nJeremy\nRichard\nBrian\nTaylor\nDustin\nStephen\nAlex\nJared\nKenneth\nGarrett\nChase\nJesse\nMason\nTrevor\nElijah\nNathaniel\nSeth\nJeremiah\nTanner\nBradley\nMarcus\nColby\nCorey\nSean\nLandon\nTristan\nBlake\nGabriel\nEvan\nPeyton\nConnor\nGregory\nIsaiah\nJeffrey\nColton\nAntonio\nPhillip\nTrenton\nHayden\nPreston\nJalen\nParker\nGavin\nMalik\nWesley\nXavier\nDerrick\nBailey\nLuke\nGeorge\nMicah\nSpencer\nLucas\nBraxton\nJohnathan\nBryan\nIan\nMark\nChandler\nDarius\nReginald\nTravis\nBrady\nClayton\nCollin\nPaul\nDawson\nHarrison\nJack\nKaleb\nMitchell\nCole\nRiley\nCarlos\nCarson\nDonald\nDeandre\nEdward\nIsaac\nCasey\nJuan\nLarry\nTerry\nKameron\nWillie\nConner\nMicheal\nDevon\nJeffery\nJon\nJose\nRodney\nAdrian\nShawn\nTrey\nBryant\nDemarcus\nJaylen\nJaylon\nJerry\nRonald\nBrett\nJamarcus\nJohnny\nCurtis\nDesmond\nTony\nZackary\nAlec\nAshton\nCarter\nDallas\nGrant\nWyatt\nDavis\nJohnathon\nPayton\nScott\nVictor\nCory\nDillon\nHenry\nKristopher\nRoderick\nBilly\nBrent\nCalvin\nJake\nJarrett\nJoel\nJonah\nKendrick\nKobe\nLadarius\nTerrance\nTroy\nEddie\nGrayson\nHouston\nJimmy\nJonathon\nKendall\nLevi\nQuinton\nTommy\nTrent\nZachery\nCedric\nDamian\nDouglas\nJarvis\nJustice\nChance\nDerek\nGary\nGriffin\nRaymond\nSkylar\nTucker\nAllen\nChad\nGraham\nJaquan\nJoe\nRandall\nShane\nTerrell\nDevonte\nDrake\nHeath\nMarquis\nMiles\nMyles\nPeter\nTristen\nTriston\nBobby\nDarrell\nDeonte\nGage\nGerald\nJessie\nKelvin\nRonnie\nWalter\nAlan\nAvery\nNickolas\nPhilip\nZackery\nBraden\nBrendan\nCourtney\nDamien\nDemetrius\nDevan\nDonovan\nFrederick\nJamal\nJosiah\nLee\nMaurice\nNicolas\nSkyler\nWilson\nArthur\nBrennan\nByron\nColin\nEli\nJakob\nJarrod\nKeenan\nLance\nMathew\nRandy\nTrace\nAndre\nBryce\nClifford\nFranklin\nJaylin\nJesus\nMadison\nMario\nQuentin\nRicky\nStanley\nTyson\nCade\nColeman\nDamon\nJamie\nJay\nJermaine\nJulian\nKristian\nMarshall\nMartin\nMaxwell\nMiguel\nTy\nTyree\nWalker\nWarren\nAlbert\nBrody\nBryson\nClarence\nCornelius\nDanny\nDarian\nDarryl\nDexter\nDominic\nDrew\nErik\nFredrick\nHarold\nJerome\nMalcolm\nMarquez\nMarvin\nAngel\nAubrey\nCarl\nClay\nCooper\nDevonta\nFrank\nJaden\nKhalil\nLorenzo\nMarquise\nMorgan\nSterling\nWeston\nBruce\nCamron\nCharlie\nDeangelo\nDeanthony\nJacoby\nJacquez\nJuwan\nKeith\nLawrence\nLeonard\nOrlando\nRay\nRussell\nSawyer\nSidney\nTevin\nTyrone\nAhmad\nBrannon\nBrock\nClifton\nCorbin\nDamion\nDeontae\nDestin\nEdwin\nKeonte\nKody\nLeon\nOwen\nReid\nRickey\nTerrence\nTristian\nZane\nAlvin\nBarry\nBrantley\nCarlton\nCraig\nDandre\nDangelo\nDante\nDarnell\nDarren\nDennis\nDevante\nDuncan\nEmmanuel\nHoward\nJamar\nJamison\nJarred\nJulius\nKerry\nKirkland\nKolby\nLewis\nMarc\nMarlon\nMelvin\nNigel\nOscar\nQuincy\nSteve\nTravon\nTyrek\nTyrese\nTyrik\nVincent\nZachariah\nAddison\nAlfred\nAndy\nBrenden\nBrendon\nBrenton\nCordarius\nCortez\nCristian\nDeante\nDemarco\nDominique\nForrest\nHarry\nHolden\nIsiah\nIvan\nJakobe\nJalon\nJameson\nJaylan\nJordon\nJudson\nKeandre\nKeaton\nKeshawn\nLadarrius\nLamarcus\nLouis\nOmar\nRaheem\nReed\nRiver\nRoger\nShelby\nStone\nTariq\nTheodore\nTyrell\nAidan\nAlejandro\nAuston\nBernard\nCecil\nChauncey\nChester\nClinton\nCordell\nDameyune\nDarrius\nDayton\nDeshawn\nDillan\nDonnie\nDontavious\nDwight\nElliott\nEzekiel\nGarrison\nKelton\nKendarius\nKentavious\nKyler\nLane\nNathanial\nNelson\nNolan\nNorman\nPaxton\nRalph\nRoman\nRondarius\nSebastian\nTristin\nVernon\nWill\nAntoine\nBennett\nBranden\nBret\nBrooks\nDale\nDarion\nDean\nDeon\nDequan\nFreddie\nGreyson\nGunnar\nHarley\nIsrael\nJacorey\nJadarius\nJamichael\nJavon\nJavonte\nJaxon\nJoey\nJustyn\nKadarius\nKareem\nKoby\nKorey\nLawson\nLukas\nMackenzie\nMartavious\nMax\nMorris\nMyron\nNeil\nNikolas\nPerry\nPierce\nQuindarius\nRoss\nRoy\nSavion\nSedrick\nSergio\nShaun\nStuart\nTerence\nTobias\nTrevion\nTyriq\nWade\nWayne\nAlonzo\nAnfernee\nAsa\nAusten\nBlaine\nBraylon\nCedrick\nChristion\nClint\nColten\nDarien\nDavion\nDelvin\nDeven\nDevontae\nDillion\nEaston\nEdgar\nEdmond\nElliot\nEmanuel\nErin\nEugene\nFernando\nFrancisco\nHector\nHorace\nJamarius\nJarod\nJorge\nKade\nKamron\nKasey\nKelby\nKelly\nKendrell\nKeon\nKeyshawn\nKordell\nLuis\nMarco\nMarkell\nMarkus\nMartavius\nMikel\nMontavious\nPedro\nQuadarius\nQuintavious\nRonaldo\nShamar\nShelton\nSolomon\nStewart\nTavaris\nTyshawn\nWinston\nAllan\nAlonza\nAlton\nAmari\nAngelo\nArmani\nBennie\nBenton\nBlair\nBrandt\nBrayden\nBrennen\nBrennon\nCadarius\nCannon\nCarey\nChris\nCoby\nColeton\nCullen\nDaquan\nDaryl\nDedric\nDemario\nDemetris\nDemetruis\nDenzel\nDeondre\nDewayne\nDominick\nDonte\nDorian\nElias\nErick\nFelix\nFred\nGlenn\nGrady\nHaden\nHamilton\nHerbert\nHudson\nIssac\nJackie\nJacory\nJajuan\nJamari\nJamarkus\nJaquez\nJarett\nJavarious\nJayden\nJefferson\nJerrell\nJohnnie\nJonas\nJosue\nKaden\nKarl\nKeelan\nKendarious\nKendric\nKentrell\nKenyon\nKeondre\nKhari\nLakendrick\nLanden\nLatrell\nLonnie\nMaison\nMartez\nMarty\nNathanael\nQuintez\nQuintin\nRhett\nRicardo\nRico\nRobin\nRodriquez\nShemar\nStephan\nTahj\nTarique\nTheron\nTitus\nTory\nTracy\nTremayne\nTrever\nTrevon\nTrystan\nTylor\nTyquan\nTyreek\nZacchaeus\nWilliam\nJacob\nChristopher\nAustin\nJohn\nJoshua\nJames\nMichael\nAndrew\nMatthew\nBrandon\nTyler\nJoseph\nJustin\nDavid\nHunter\nNicholas\nCameron\nRobert\nZachary\nChristian\nCaleb\nDaniel\nJordan\nJonathan\nSamuel\nDylan\nNoah\nThomas\nCharles\nRyan\nLogan\nEthan\nJackson\nAnthony\nBenjamin\nDalton\nNathan\nCody\nTimothy\nAlexander\nSteven\nGarrett\nAaron\nRichard\nKenneth\nDevin\nEric\nKevin\nConnor\nKyle\nPatrick\nDakota\nStephen\nJason\nMason\nBrian\nElijah\nSeth\nNathaniel\nTaylor\nAdam\nBlake\nJeremy\nDawson\nAlex\nJared\nChandler\nAntonio\nChase\nTristan\nTanner\nTrevor\nWesley\nBradley\nDustin\nEvan\nIsaiah\nLuke\nHayden\nGabriel\nLandon\nColton\nJalen\nColby\nIsaac\nPreston\nParker\nJeremiah\nMarcus\nTrenton\nTyrese\nJohnathan\nCorey\nGregory\nPeyton\nCarson\nJesse\nMark\nXavier\nIan\nKaleb\nSpencer\nGavin\nJeffrey\nPaul\nBailey\nCole\nPhillip\nJack\nLucas\nRiley\nBryan\nJeffery\nLevi\nMalik\nSean\nShawn\nBraxton\nDevon\nEdward\nHarrison\nMicah\nClayton\nCollin\nJaylen\nCory\nTrey\nHenry\nDerrick\nJose\nAllen\nCarlos\nConner\nGrant\nJerry\nJonah\nJonathon\nMitchell\nBilly\nCarter\nDarius\nKameron\nRonald\nTerry\nAdrian\nDeandre\nJon\nRoderick\nBobby\nBraden\nJaylon\nKristopher\nWillie\nColin\nDillon\nGeorge\nJamal\nRandall\nAvery\nBrett\nCade\nDemetrius\nGrayson\nJohnny\nTucker\nBrady\nCalvin\nJarrett\nKendall\nReginald\nTravis\nBrendan\nBrody\nGary\nKeith\nLarry\nScott\nSkyler\nAlec\nMicheal\nShane\nSkylar\nTony\nBryce\nCurtis\nDerek\nGriffin\nHouston\nTommy\nVincent\nAshton\nDarrell\nDesmond\nDonald\nFrank\nJake\nJakob\nKelvin\nPeter\nRodney\nBryant\nCamron\nCasey\nCedric\nDallas\nJesus\nJimmy\nJosiah\nKendrick\nPayton\nTerrance\nWalker\nZachery\nZackery\nBrayden\nChance\nDavis\nJaden\nJamarcus\nJayden\nJaylin\nJuan\nKobe\nTrent\nVictor\nChad\nColeman\nDouglas\nJaquan\nJoel\nLance\nTroy\nWalter\nAlan\nDennis\nDrew\nLadarius\nLuis\nMartin\nMaxwell\nMorgan\nPhilip\nRaymond\nRussell\nWyatt\nZackary\nCaden\nJessie\nRonnie\nDarren\nDemarcus\nDevonte\nJermaine\nMarshall\nNicolas\nAhmad\nByron\nCarlton\nDamon\nDarryl\nDrake\nFredrick\nJarvis\nJoe\nMaurice\nQuinton\nSawyer\nTristen\nTy\nAubrey\nBryson\nDestin\nEmmanuel\nGage\nMario\nMiguel\nNolan\nOmar\nOwen\nRandy\nRicky\nTriston\nCorbin\nDarian\nDonovan\nEddie\nEzekiel\nJamie\nJaylan\nJulian\nKendarius\nStanley\nTerrell\nTrevon\nAngel\nCarl\nClay\nCourtney\nDeonte\nJace\nJacoby\nLee\nMyles\nNickolas\nOscar\nRoger\nWarren\nWilson\nAndre\nAndy\nBarry\nCharlie\nCornelius\nFranklin\nFrederick\nGraham\nJohnathon\nKristian\nKyler\nLawrence\nMarquis\nMarvin\nMelvin\nTrace\nZion\nBrennan\nDanny\nDante\nDewayne\nErik\nHeath\nJakobe\nJameson\nJorge\nJudson\nKoby\nQuintin\nRicardo\nSidney\nWade\nZane\nAddison\nAlejandro\nBrent\nCoby\nDeontae\nDominique\nDorian\nEli\nJaquarius\nKeyshawn\nKhalil\nLadarrius\nLane\nLeon\nMalcolm\nMathew\nMax\nReid\nRickey\nTravon\nTyrone\nWeston\nAlvin\nBrennen\nClarence\nCordell\nCraig\nDamion\nDominic\nGerald\nHarley\nJacquez\nJarred\nJarrod\nKelton\nLewis\nMalachi\nMartez\nNathanael\nPerry\nRoss\nShaun\nTristin\nTyson\nAlfred\nAlonzo\nAngelo\nBennett\nBrantley\nBrendon\nCortez\nDeon\nDeven\nDevonta\nDillan\nEdwin\nErnest\nFrancisco\nIvan\nJaquez\nJimmie\nKaden\nKamron\nKody\nLamar\nLamarcus\nLeonard\nMarc\nMarkus\nNathanial\nNikolas\nReed\nRoy\nShelton\nSterling\nStuart\nTariq\nTurner\nTyrell\nWill\nAnderson\nBranden\nBret\nBritton\nBrock\nBroderick\nCason\nCecil\nDamarcus\nDamian\nDangelo\nDaquan\nDarien\nDavion\nDejuan\nDeonta\nEdgar\nEverett\nFelix\nForrest\nGarret\nHarold\nIsiah\nJadarius\nJaleel\nJamison\nJaren\nJerome\nJustice\nKerry\nKolby\nMarlon\nMiles\nMiller\nMontez\nNorman\nQuentin\nRalph\nReagan\nReese\nShannon\nShemar\nTerrence\nTrajan\nTyrek\nWinston\nAdarius\nAlexis\nArthur\nBrenden\nBrenton\nBrooks\nChadwick\nChris\nCooper\nDamien\nDavon\nDaylon\nDeante\nDequan\nDevan\nDevante\nDexter\nDylon\nEnrique\nEugene\nEzra\nGarrison\nGeoffrey\nHoward\nJacorey\nJacory\nJamar\nJamichael\nJaquavious\nJasper\nJavaris\nJavier\nJulius\nJuwan\nKareem\nKeenan\nKennedy\nKeon\nKeshawn\nKevon\nKorey\nLiam\nLonnie\nLorenzo\nLukas\nMackenzie\nMarion\nMarquise\nOctavious\nOliver\nQuantavious\nQuindarius\nRashad\nRiver\nRoman\nRoosevelt\nSebastian\nShamar\nSheldon\nSimon\nSolomon\nTerence\nTevin\nTheodore\nTracy\nTyree\nTyus\nAbraham\nAlbert\nAndres\nAntoine\nAsa\nAuston\nBaylor\nBenton\nBlaine\nBranson\nBraydon\nCadarius\nCamden\nCanaan\nCesar\nDarrian\nDarrion\nDarrius\nDayton\nDeanthony\nDemarco\nDeondre\nDeshawn\nDevyn\nEduardo\nEmanuel\nFisher\nGiovanni\nGunnar\nJalon\nJarod\nJavion\nJaxson\nJay\nJerrod\nJody\nJohnnie\nKeandre\nKeegan\nKeonte\nKeyon\nLawson\nLincoln\nManuel\nMartavious\nMartavius\nNigel\nQuendarius\nQuincy\nQuintavious\nQuintez\nRay\nRhett\nRoberto\nSemaj\nStacey\nSteve\nTavian\nTobias\nTyreke\nAidan\nAsher\nAusten\nBarrett\nBeau\nBernard\nBrice\nBruce\nCampbell\nCannon\nCedrick\nChristion\nClifton\nColten\nCristian\nCyrus\nDakoda\nDamarius\nDarion\nDaryl\nDaulton\nDavonte\nDelvin\nDemarius\nDemarkus\nDiego\nDominick\nDontavious\nDwight\nEarnest\nElias\nElisha\nErvin\nFabian\nFoster\nFred\nGreyson\nGunner\nHarris\nHarry\nHerbert\nHolden\nJadon\nJaelin\nJaelyn\nJairus\nJalan\nJamari\nJamel\nJatavious\nJayson\nJondarius\nJorden\nJordon\nJustus\nKeaton\nKeldrick\nKhristian\nKurt\nLakendrick\nLouis\nMack\nMarkel\nMarquavious\nMarquez\nMarshal\nMateo\nMikel\nMontavious\nNicklaus\nPedro\nRafael\nRemington\nScotty\nSergio\nStephan\nStephon\nStone\nTavaris\nTitus\nTrevin\nTreyvon\nTristian\nTyquan\nTyreek\nZachariah\nZavier\nZyon\nWilliam\nJacob\nJoshua\nChristopher\nMichael\nJames\nJohn\nMatthew\nAustin\nTyler\nAndrew\nJustin\nNicholas\nHunter\nCaleb\nJoseph\nBrandon\nDavid\nRobert\nChristian\nCameron\nJonathan\nZachary\nEthan\nJordan\nNoah\nSamuel\nDaniel\nDylan\nThomas\nLogan\nBenjamin\nJackson\nCharles\nNathan\nAnthony\nAlexander\nTimothy\nDalton\nRyan\nCody\nJalen\nAaron\nJason\nDakota\nGarrett\nPatrick\nSteven\nDevin\nEric\nKevin\nMason\nElijah\nNathaniel\nSeth\nJeremy\nStephen\nTaylor\nRichard\nCarson\nGabriel\nEvan\nTanner\nJared\nDustin\nGavin\nKaleb\nKyle\nLuke\nDawson\nJeremiah\nLandon\nIsaiah\nKenneth\nConnor\nJesse\nTrevor\nWesley\nBrian\nHayden\nAntonio\nIsaac\nMicah\nAlex\nMarcus\nChase\nBlake\nChandler\nColton\nSean\nColby\nLucas\nAdam\nGregory\nJohnathan\nTrenton\nTristan\nClayton\nPeyton\nJeffrey\nIan\nParker\nBradley\nCorey\nPreston\nXavier\nBailey\nHarrison\nJaylen\nMalik\nRiley\nBraxton\nMark\nDerrick\nJack\nCole\nGrayson\nJaden\nPaul\nJose\nMitchell\nPhillip\nShawn\nEdward\nCarter\nGrant\nJake\nPayton\nRonald\nSpencer\nTucker\nBraden\nGeorge\nSkyler\nCurtis\nDeandre\nJakob\nJamarcus\nKameron\nDarius\nJonathon\nKobe\nRodney\nWyatt\nAshton\nDonald\nJeffery\nKendall\nBrady\nJaylon\nMicheal\nTrey\nBryan\nCollin\nHenry\nJohnny\nJonah\nTravis\nColin\nGary\nLarry\nZackary\nAdrian\nBrett\nCarlos\nDevon\nJerry\nJoel\nJon\nLevi\nReginald\nDesmond\nLadarius\nTony\nZachery\nAvery\nCade\nGriffin\nWillie\nAllen\nBryce\nCory\nDavis\nBrayden\nColeman\nJaquan\nTerry\nWalter\nCalvin\nDrew\nJarrett\nRussell\nVictor\nAlan\nDemarcus\nGage\nJuan\nNicolas\nTerrance\nBrock\nCasey\nDemetrius\nLuis\nShane\nBilly\nCooper\nDerek\nJayden\nJaylin\nShaun\nTrent\nZion\nBrendan\nCedric\nChad\nConner\nMarvin\nMathew\nQuentin\nRaymond\nZane\nArthur\nBobby\nDallas\nDevonte\nDillon\nJamal\nJamie\nKelvin\nMaxwell\nNolan\nRicky\nRoderick\nSkylar\nTristen\nVincent\nBrody\nCornelius\nDennis\nDonovan\nDorian\nHudson\nJimmy\nJosiah\nOmar\nQuinton\nRandy\nBryant\nCaden\nDamien\nDamion\nDrake\nEli\nFrank\nGerald\nJessie\nKeith\nKendrick\nMorgan\nMyles\nNickolas\nSawyer\nShamar\nTerrell\nTrevon\nTriston\nWalker\nWeston\nAlejandro\nCamden\nChance\nFrancisco\nJoe\nJulian\nKristopher\nMiguel\nMiles\nTyrese\nBrennan\nDeonte\nHarley\nHouston\nJacoby\nKendarius\nKhalil\nMalcolm\nMario\nMarshall\nRonnie\nScott\nSebastian\nTommy\nAidan\nAndre\nBryson\nCarl\nClay\nDouglas\nEddie\nJohnathon\nKevon\nKeyshawn\nMalachi\nMarquise\nOwen\nTroy\nCamron\nDamian\nDamon\nDante\nFranklin\nJarvis\nJermaine\nJesus\nLance\nPeter\nWarren\nZackery\nBranden\nBrannon\nBrantley\nBrenden\nDangelo\nDarrell\nDarryl\nFredrick\nJarrod\nJay\nJordon\nJorge\nKaden\nLane\nMarquez\nMaurice\nPhilip\nShemar\nAlec\nBarry\nBrent\nCoby\nCortez\nDarian\nDestin\nDominick\nEdwin\nJacorey\nJaylan\nKadarius\nKeshawn\nKoby\nKody\nLawson\nLorenzo\nRoger\nSidney\nTrace\nTyrone\nAddison\nAubrey\nClifton\nCorbin\nDarien\nDeondre\nDeven\nDewayne\nDexter\nDominique\nEmmanuel\nErik\nEzekiel\nFernando\nHarold\nJarred\nJavon\nJudson\nKeaton\nLawrence\nOliver\nReid\nTristian\nTy\nTyson\nAlonzo\nBrendon\nBruce\nByron\nCristian\nDanny\nDarrius\nDavion\nDeangelo\nDevonta\nDominic\nDuncan\nFelix\nGarret\nGreyson\nHaden\nJamari\nJayson\nLee\nMarc\nMarquis\nMartin\nNikolas\nRandall\nRoy\nTerrence\nTodd\nWade\nWilson\nXzavier\nAlexis\nAmari\nAnderson\nAndy\nAngel\nBeau\nBlaine\nBrenton\nBrooks\nCourtney\nDarren\nDavon\nDeanthony\nEduardo\nEmanuel\nGlenn\nGrady\nGraham\nHeath\nIsiah\nJadarius\nJakobe\nJalyn\nJamarius\nJamichael\nJavier\nJavion\nJaxon\nJerome\nJoey\nJustice\nKeenan\nKeontae\nKristian\nKyler\nLukas\nMax\nNelson\nRalph\nTerence\nTitus\nTyree\nAbraham\nAlbert\nAntwan\nCarlton\nClinton\nCraig\nDemonte\nDeonta\nDevan\nDevontae\nDiego\nDontavious\nDontavius\nEaston\nFrederick\nJacquez\nJalin\nJamison\nJaquon\nJarod\nJavonte\nJimmie\nKeldrick\nKeon\nManuel\nMarlon\nMarques\nMartavious\nOscar\nPaxton\nPedro\nQuindarius\nRickey\nRoss\nSolomon\nTobias\nToby\nTravon\nTyquan\nWayne\nWinston\nAhmad\nAlvin\nAmir\nAngelo\nCason\nCedrick\nClarence\nCordarius\nDamarius\nDaquan\nDeon\nDraven\nErick\nGordon\nIvan\nJace\nJakari\nJamarious\nJavoris\nJulius\nKeegan\nKendarious\nKenyon\nLadarrius\nLamar\nLeonard\nLester\nLouis\nMartez\nNehemiah\nQuintavious\nReed\nReese\nRuben\nSimon\nTracy\nTurner\nTyrell\nWill\nAdarius\nAlfred\nAntoine\nBarrett\nBaylor\nBennett\nBronson\nCampbell\nCecil\nCesar\nColten\nCyrus\nDarion\nDarnell\nDarrion\nDaryl\nDeante\nDemarius\nDemond\nDeontae\nDequan\nDillan\nDwight\nEmery\nGunnar\nHarry\nHector\nJacolby\nJalon\nJarius\nJayce\nJude\nKade\nKamron\nKarson\nKeandre\nKelton\nLuther\nMack\nMackenzie\nMateo\nMelvin\nMilton\nMontavious\nOrlando\nPerry\nPorter\nQuintin\nRafael\nReece\nRicardo\nRoberto\nRoman\nRylan\nSam\nShelby\nStuart\nTariq\nTate\nTavian\nThaddeus\nTramaine\nTremaine\nTristin\nZachariah\nArmando\nAron\nAsa\nAugust\nBen\nBernard\nBlaise\nBraeden\nBrennen\nCalen\nCanaan\nCayman\nChancellor\nCharlie\nChaz\nClifford\nClyde\nCollier\nCordell\nDalvin\nDavonta\nDavonte\nDayton\nDejuan\nDeshaun\nDeshawn\nDevante\nDonnie\nElliott\nErnest\nEzra\nGarett\nGarrison\nGaven\nGustavo\nIsrael\nJacory\nJacques\nJadon\nJakobi\nJalil\nJamon\nJaron\nJashawn\nJerrell\nJohnnie\nKane\nKendarrius\nKeshaun\nKeyon\nKolby\nKolton\nLamarcus\nLeonardo\nLiam\nLionel\nLondon\nLonnie\nMadison\nMarco\nMarkell\nMarkus\nMiller\nMyron\nNathanael\nNoa\nOtis\nPablo\nParis\nQuincy\nRashad\nRayshawn\nRiver\nRodriquez\nSaul\nShannon\nShelton\nSilas\nSincere\nSlade\nSteve\nStewart\nTommie\nTrayvon\nTyquavious\nTyre\nTyreese\nTyrin\nTyrique\nUriel\nWaylon\nZaykeese\nWilliam\nJacob\nJoshua\nJames\nChristopher\nJohn\nMichael\nMatthew\nAustin\nTyler\nAndrew\nJoseph\nCaleb\nHunter\nJustin\nDavid\nEthan\nZachary\nNicholas\nBrandon\nRobert\nSamuel\nChristian\nCameron\nJonathan\nJordan\nDylan\nLogan\nJackson\nDaniel\nThomas\nBenjamin\nNoah\nAnthony\nCharles\nNathan\nRyan\nTimothy\nDalton\nCody\nDevin\nJason\nElijah\nAlexander\nMason\nAaron\nGabriel\nEric\nJeremiah\nDakota\nSeth\nCarson\nGarrett\nKenneth\nRichard\nConnor\nKevin\nColby\nPatrick\nLuke\nSteven\nLandon\nNathaniel\nIsaiah\nKyle\nHayden\nTanner\nTaylor\nBrian\nTrevor\nKaleb\nPreston\nAdam\nAlex\nStephen\nIsaac\nJeremy\nAntonio\nChase\nGavin\nSean\nDawson\nEvan\nJalen\nJesse\nBlake\nColton\nPeyton\nWesley\nDustin\nTristan\nXavier\nCorey\nJared\nParker\nIan\nMicah\nChandler\nClayton\nTrenton\nMarcus\nJaden\nLucas\nJack\nBradley\nBraxton\nCole\nHarrison\nRiley\nCollin\nJaylen\nJeffrey\nTravis\nDerrick\nMark\nJose\nBrady\nJaylon\nJohnathan\nAdrian\nAshton\nBraden\nBrayden\nEdward\nKameron\nGregory\nJakob\nGeorge\nGrayson\nJeffery\nBailey\nJuan\nMalik\nTrey\nCarter\nHenry\nPhillip\nZackary\nJayden\nJonah\nTrent\nCade\nDarius\nGrant\nSpencer\nWillie\nBryan\nCarlos\nLevi\nBrody\nKendall\nKobe\nPayton\nJake\nJoel\nRonald\nShawn\nAlan\nDillon\nDonald\nPaul\nAllen\nAvery\nChance\nDemetrius\nJamal\nMicheal\nOwen\nRoderick\nSebastian\nTucker\nJohnny\nJon\nRussell\nWyatt\nZackery\nBrett\nCooper\nMitchell\nReginald\nTerry\nCaden\nDevon\nLarry\nTony\nCalvin\nCedric\nDallas\nDamien\nDavis\nDemarcus\nErik\nJamarcus\nJaylin\nJonathon\nQuinton\nBryant\nConner\nDesmond\nEli\nJaylan\nLuis\nRodney\nSkyler\nZion\nWilson\nBryce\nColeman\nCurtis\nDerek\nJaquan\nKeith\nKristopher\nBrendan\nColin\nDarrell\nDonovan\nJarrett\nJay\nNicolas\nVictor\nWalter\nZane\nBrantley\nBryson\nCamden\nCory\nEduardo\nFernando\nGage\nJaxon\nJerry\nJoe\nJosiah\nKelvin\nKolby\nMaxwell\nScott\nTristen\nTroy\nVincent\nCamron\nFrederick\nGriffin\nJohnathon\nJulian\nLee\nMarquez\nMyles\nNolan\nOmar\nPeter\nTy\nChad\nDominic\nDouglas\nDrake\nEddie\nJarvis\nJermaine\nJesus\nTerrell\nTrevon\nBilly\nBobby\nBrennan\nBrent\nDamian\nDamon\nGary\nHudson\nJaheim\nJimmy\nJustice\nKendrick\nLawrence\nMalachi\nMarquis\nMiguel\nNickolas\nPhilip\nSkylar\nBrooks\nCasey\nCharlie\nEdwin\nFrank\nGraham\nGreyson\nHouston\nJacoby\nJakobe\nLawson\nMiles\nOscar\nSawyer\nTrace\nZachery\nClay\nCourtney\nDamion\nDeandre\nDevontae\nDorian\nGerald\nJamichael\nKristian\nLadarius\nLiam\nMathew\nToby\nTyrese\nAidan\nAlec\nAlejandro\nAubrey\nDeshawn\nDestin\nEmmanuel\nIvan\nJacorey\nJessie\nJorge\nKendarius\nKhalil\nLance\nLeon\nMalcolm\nMario\nMarshall\nMorgan\nShane\nSterling\nWalker\nAlbert\nBrock\nBruce\nByron\nCoby\nCorbin\nDanny\nDeanthony\nEmanuel\nGarrison\nHeath\nHoward\nIssac\nJadarius\nJamarius\nJudson\nKaden\nQuindarius\nRonnie\nRoy\nTerrence\nTriston\nTurner\nWeston\nAddison\nAngel\nAsher\nBradford\nCornelius\nDeonte\nIsrael\nJalon\nJarod\nJavon\nKeegan\nKolton\nMartin\nMaurice\nPedro\nShaun\nStanley\nTyquan\nTyson\nArthur\nBarry\nCordell\nDaryl\nDavion\nDennis\nDevonte\nDexter\nDillan\nElisha\nErick\nFrancisco\nFredrick\nHarley\nHolden\nJamie\nJavier\nJayson\nJimmie\nKeaton\nKeondre\nKeshawn\nKevon\nLane\nLeonard\nMarco\nMarlon\nMarvin\nRandy\nRaymond\nReid\nTommy\nTristin\nWade\nAhmad\nAndre\nBernard\nCortez\nDarian\nDarryl\nDeangelo\nDeondre\nDeshaun\nEdgar\nFranklin\nHarold\nJace\nJavion\nJonas\nKennedy\nKyler\nLamar\nLouis\nManuel\nMax\nNigel\nPaxton\nQuentin\nRandall\nRashad\nReese\nRicky\nSam\nShamar\nSolomon\nTyree\nTyrone\nWayne\nWill\nAndy\nAntoine\nAxel\nBo\nBroderick\nBrodie\nCarl\nCesar\nCraig\nDeontae\nDevan\nDevonta\nDevyn\nDraven\nDrew\nEaston\nEzekiel\nFelix\nGustavo\nIsiah\nJamar\nKade\nKamron\nKenton\nKeon\nKeyon\nKody\nLamarcus\nLanden\nLewis\nMarc\nPierce\nReed\nRickey\nRoberto\nRuben\nShemar\nTitus\nTomas\nTristian\nWarren\nXzavier\nAbraham\nAli\nAlvin\nAmari\nBen\nBlaine\nCecil\nDale\nDandre\nDayton\nDequan\nElias\nFred\nGerardo\nHamilton\nJamari\nJaron\nJarred\nJarrod\nJasper\nJavarius\nJaxson\nJaydon\nJoey\nJordon\nJosue\nJulius\nKeandre\nKeenan\nKoby\nMarkell\nMarquise\nMelvin\nNathanael\nOliver\nPerry\nRicardo\nRoger\nRoman\nSergio\nSidney\nSilas\nTerrance\nTyshawn\nZechariah\nAlexis\nAlijah\nAllan\nAmir\nAngelo\nAsa\nAusten\nBranden\nBrenden\nBrendon\nBriar\nBrice\nChauncey\nChris\nClarence\nClinton\nCullen\nDante\nDarion\nDarren\nDarrion\nDashaun\nDaylon\nDevontay\nDewayne\nDiego\nDimitri\nDominique\nErnest\nGlen\nHaden\nHezekiah\nHugh\nJacolby\nJaiden\nJameson\nJaquarius\nJatavious\nJefferson\nJerome\nJerrell\nKerry\nKeshaun\nKeyshawn\nLadarrius\nLayton\nLonnie\nMekhi\nMicaiah\nMilton\nOrlando\nRodriquez\nSantiago\nShelby\nStone\nStuart\nTamarcus\nTerence\nThaddeus\nTyrell\nVirgil\nWallace\nWinston\nAiden\nAlfred\nAntwan\nBaylor\nBlane\nBraeden\nBrant\nBraydon\nBrennon\nBritton\nBrylan\nCarrington\nCason\nCayden\nChancellor\nChaz\nCoy\nCristian\nDamarcus\nDanthony\nDarrin\nDashawn\nDavin\nDaylan\nDeven\nDezmond\nDon\nDonnie\nDontavious\nDonte\nEan\nEarl\nEdrick\nEverett\nFabian\nHarris\nJabari\nJackie\nJacobi\nJadarious\nJagger\nJalyn\nJamil\nJamison\nJaquavious\nJarret\nJavonte\nJevon\nJody\nJordyn\nKane\nKarl\nKeldrick\nKendal\nKenny\nKylan\nLeo\nLeroy\nLorenzo\nLukas\nMarkel\nMateo\nMuhammad\nNelson\nNikolas\nPercy\nQuincy\nRaphael\nRay\nSage\nSammy\nShannon\nSimon\nStacy\nTavares\nTed\nTevin\nTheodore\nTimmy\nTobias\nTodd\nTravion\nTravon\nUriel\nZander\nZavier\nWilliam\nJacob\nJoshua\nJames\nJohn\nChristopher\nMichael\nAndrew\nAustin\nMatthew\nEthan\nJoseph\nTyler\nCaleb\nNicholas\nBrandon\nRobert\nJackson\nCameron\nDavid\nHunter\nSamuel\nJustin\nZachary\nJonathan\nDylan\nLogan\nChristian\nJordan\nNoah\nThomas\nDaniel\nCharles\nAlexander\nElijah\nBenjamin\nAnthony\nNathan\nTimothy\nGabriel\nMason\nDalton\nCody\nLuke\nRyan\nEric\nIsaiah\nAaron\nConnor\nSeth\nKaleb\nRichard\nJeremiah\nGavin\nJason\nSteven\nDevin\nHayden\nNathaniel\nKevin\nCarson\nLandon\nColby\nAlex\nGarrett\nIsaac\nPatrick\nJalen\nJeremy\nKenneth\nAdam\nBrian\nEvan\nSean\nPreston\nStephen\nBlake\nKyle\nTanner\nBraxton\nParker\nTrenton\nXavier\nDakota\nJaden\nDustin\nRiley\nCarter\nTaylor\nDawson\nJared\nPeyton\nTristan\nColton\nTrevor\nBryan\nJose\nMicah\nBrady\nWesley\nChase\nMarcus\nIan\nJack\nAntonio\nLucas\nMark\nBraden\nBrayden\nBrody\nJesse\nCole\nClayton\nBradley\nJaylon\nKameron\nEli\nJeffrey\nLevi\nMalik\nHarrison\nHenry\nPaul\nCorey\nGrayson\nChandler\nJaylen\nJuan\nTravis\nCollin\nCaden\nDerrick\nAshton\nDevon\nJayden\nGrant\nGregory\nJohnathan\nJulian\nSpencer\nBryson\nJon\nJaylin\nColin\nConner\nGeorge\nTony\nAidan\nCarlos\nEdward\nMalachi\nOwen\nPhillip\nReginald\nShawn\nTerry\nTrey\nDeandre\nLarry\nPayton\nRonald\nDamian\nJaheim\nKobe\nTucker\nDarius\nDesmond\nGriffin\nJake\nSebastian\nSkyler\nVincent\nAdrian\nCamron\nGage\nJoel\nJonah\nKelvin\nKendall\nLuis\nBailey\nJamarcus\nJohnny\nWyatt\nCamden\nCurtis\nJamari\nJeffery\nJerry\nJimmy\nKeith\nVictor\nZackary\nCade\nDavis\nDemetrius\nDillon\nHudson\nNicolas\nRaymond\nWalker\nBrendan\nCalvin\nJesus\nJonathon\nKolby\nMaxwell\nOmarion\nRodney\nZane\nBrett\nCooper\nDamien\nDonald\nDrake\nJosiah\nMicheal\nNolan\nOmar\nPeter\nWillie\nZachery\nAndre\nBobby\nBrent\nChance\nCory\nEmmanuel\nJakob\nJarvis\nJaxon\nMaurice\nMitchell\nMyles\nRicky\nRussell\nTroy\nZackery\nAlan\nBryce\nCasey\nEdwin\nErik\nMiguel\nAlejandro\nAllen\nBrodie\nColeman\nDemarcus\nDerek\nHolden\nJace\nJacoby\nMiles\nWilson\nAngel\nAvery\nBryant\nCarl\nChad\nIvan\nRoderick\nShane\nShaun\nTrent\nTrevon\nTy\nArthur\nCedric\nClay\nCornelius\nDanny\nEddie\nIsiah\nJavier\nJavon\nJessie\nKristopher\nLance\nRandall\nTyrese\nWalter\nAiden\nBrock\nDonovan\nJermaine\nJustice\nLadarius\nLane\nLiam\nMathew\nPhilip\nScott\nZion\nCayden\nCesar\nDallas\nDamion\nDamon\nDominic\nJakobe\nJamal\nJamie\nJorge\nKyler\nMax\nSawyer\nTerrance\nWeston\nAubrey\nBilly\nBrennan\nCharlie\nCristian\nDevan\nDrew\nGraham\nJadarius\nJadon\nJoe\nJohnathon\nJulius\nKaden\nMario\nOrlando\nQuinton\nRashad\nSilas\nTyrone\nTyson\nAlec\nAlonzo\nArmando\nByron\nCorbin\nDeanthony\nDiego\nElisha\nEzekiel\nFranklin\nFrederick\nHeath\nIssac\nJay\nKeegan\nKendrick\nKeon\nQuincy\nSkylar\nStanley\nTommy\nTrace\nTristen\nAlbert\nAmari\nCourtney\nDarren\nDennis\nDorian\nDouglas\nGary\nHarley\nJarrett\nKendarius\nLanden\nMartez\nMelvin\nOscar\nRicardo\nTriston\nZachariah\nAmarion\nBruce\nCason\nCraig\nDavon\nDeangelo\nDevonte\nEduardo\nEmanuel\nHector\nJamarius\nJaquez\nJerome\nKarson\nKorey\nLamarcus\nLee\nLeonardo\nLouis\nMalcolm\nMarlon\nMarquise\nMorgan\nQuentin\nShannon\nSimon\nTerrell\nWaylon\nWinston\nAntoine\nBrooks\nCoby\nDavion\nDayton\nFrank\nJaiden\nJajuan\nJaquan\nJayson\nKane\nKeaton\nKelton\nKeyshawn\nKoby\nKristian\nLeonard\nLukas\nMartin\nNickolas\nRafael\nRandy\nRoy\nRylan\nTobias\nToby\nTravon\nTristin\nXzavier\nAhmad\nAndy\nAyden\nBraeden\nBrennen\nCortez\nDarrell\nDaylan\nDemonte\nDeonte\nDewayne\nDuncan\nEdgar\nEverett\nGaven\nHarold\nHouston\nJacorey\nJameson\nJavonte\nJordon\nKadarius\nKeshaun\nKody\nKolton\nLawrence\nLewis\nManuel\nMarquis\nMarshall\nMarvin\nNathanael\nOliver\nPablo\nPerry\nRickey\nRiver\nRoger\nRomeo\nSergio\nShelton\nTavaris\nTyquan\nAbraham\nAlexis\nBeau\nBlaine\nBrantley\nBraylon\nBrenden\nBrylan\nCaiden\nCannon\nClarence\nCleveland\nClifton\nColten\nCordell\nDameon\nDandre\nDominick\nEaston\nFrancisco\nGerald\nGrady\nGunner\nHagen\nHarris\nJacobi\nJahiem\nJairus\nJamar\nJamichael\nJarod\nJaylan\nJorden\nJosue\nJudson\nJulio\nJustus\nKade\nKamron\nKenyon\nKerry\nKeshawn\nKhalil\nLeon\nMiller\nPierce\nRuben\nSam\nAlberto\nAlfred\nAndres\nAngelo\nBarrett\nBarry\nBrannon\nCampbell\nClaude\nDaquan\nDarryl\nDeshawn\nDeven\nDillan\nDontavius\nDorien\nElliot\nErick\nErnest\nEzra\nFernando\nFredrick\nGreyson\nJabari\nJadarrius\nJamarion\nJamel\nJamon\nJarius\nJaron\nJavien\nJawuan\nJaydon\nJerald\nJoey\nJudah\nKadin\nKamryn\nKarl\nKeenan\nKendal\nKendarious\nKendrell\nKeontae\nKevontae\nKole\nKristofer\nLadarrius\nLayton\nMarkel\nNehemiah\nQuindarius\nRamon\nRoberto\nRonnie\nSalvador\nSheldon\nSidney\nTerrence\nTheodore\nTorrey\nTristian\nTyree\nTyrell\nTyshawn\nAbram\nAden\nAlexzander\nAlfonso\nAllan\nAlton\nAmir\nAnderson\nAsa\nAusten\nBennett\nBentley\nBranden\nBraydon\nBrice\nCadarius\nChris\nChristain\nClifford\nDamarion\nDante\nDeclan\nDenver\nDeontae\nDestin\nDexter\nDillian\nDominique\nDon\nDonavan\nDonnie\nEmilio\nForrest\nFreddie\nGlenn\nHogan\nHoward\nHugh\nHugo\nIsmael\nJalon\nJalyn\nJarrod\nJasper\nJavaris\nJett\nJimmie\nKaiden\nKendell\nKentrell\nKevon\nKeyonte\nKobie\nLangston\nLincoln\nLuther\nMack\nMarc\nMarco\nMarcos\nMarquel\nMarquice\nMarty\nMauricio\nMontavious\nMontez\nMyron\nNigel\nOmari\nRaul\nRay\nReece\nReed\nRhett\nRondarius\nSantiago\nShemar\nStacy\nStephon\nStone\nTalon\nTate\nTevin\nTitus\nTremaine\nTrevion\nTrinity\nUriel\nWendell\nXander\nZack\nZavion\nWilliam\nJacob\nJoshua\nJames\nJohn\nChristopher\nMichael\nMatthew\nCaleb\nAustin\nJoseph\nAndrew\nEthan\nTyler\nJackson\nSamuel\nDavid\nHunter\nLogan\nJordan\nDaniel\nCameron\nJonathan\nNicholas\nRobert\nChristian\nJustin\nThomas\nCharles\nDylan\nZachary\nBrandon\nBenjamin\nNoah\nElijah\nAnthony\nLandon\nRyan\nNathan\nMason\nAlexander\nConnor\nGabriel\nCarson\nLuke\nJeremiah\nJason\nDevin\nDalton\nTimothy\nGavin\nHayden\nKaleb\nAshton\nEvan\nRichard\nAaron\nBrody\nBrian\nKevin\nCody\nJayden\nEric\nPatrick\nSeth\nJalen\nPreston\nBrady\nIsaiah\nAlex\nJose\nSteven\nGarrett\nAntonio\nBlake\nKenneth\nJeremy\nXavier\nNathaniel\nPeyton\nBraxton\nDakota\nJaden\nWesley\nSean\nIan\nTrenton\nBrayden\nChase\nDawson\nParker\nAdam\nColton\nJack\nCarter\nColby\nJeffrey\nStephen\nChandler\nLucas\nJaylen\nJesse\nKyle\nTrevor\nHarrison\nClayton\nConner\nGrant\nIsaac\nMicah\nOwen\nTaylor\nBradley\nBryan\nCollin\nRiley\nBryson\nMarcus\nAidan\nBraden\nJuan\nKaden\nTristan\nGeorge\nCole\nLuis\nMark\nAiden\nCorey\nGrayson\nGregory\nDevon\nEli\nHenry\nKameron\nCaden\nColin\nMalachi\nJohnathan\nAdrian\nBrodie\nJaylon\nLevi\nCarlos\nTravis\nMitchell\nTanner\nBryant\nEdward\nJake\nLanden\nPhillip\nAvery\nCamron\nWyatt\nDerrick\nDonovan\nDustin\nJoel\nJulian\nJared\nWalker\nCooper\nDarius\nDonald\nJonah\nJeffery\nPaul\nRonald\nTucker\nJohnny\nCurtis\nDemetrius\nJerry\nJesus\nKobe\nPayton\nAlan\nCamden\nDamien\nDemarcus\nGage\nJakob\nJamarcus\nLane\nRussell\nSpencer\nTrey\nVictor\nWalter\nBilly\nCalvin\nJon\nMaxwell\nSawyer\nShawn\nTyrese\nCedric\nJaylin\nKendrick\nTristen\nTy\nVincent\nZackary\nZane\nBrett\nIvan\nMalik\nSkyler\nTrent\nAngel\nChance\nDeandre\nDominic\nJakobe\nJaxon\nMyles\nOmarion\nXander\nAllen\nAndre\nColeman\nFrank\nGriffin\nJace\nMario\nMiguel\nNicolas\nRodney\nTerry\nTyrone\nCade\nDamian\nJamarion\nJonathon\nKeith\nKristopher\nLarry\nRoderick\nDavis\nFrederick\nHouston\nJermaine\nMicheal\nOscar\nAmari\nBryce\nCory\nDillon\nMarvin\nRaymond\nRicardo\nSkylar\nBailey\nBrendan\nDanny\nHudson\nJamal\nJaquan\nKelvin\nRandall\nTrace\nTyson\nWillie\nBrock\nDerek\nJustice\nKolby\nLance\nMax\nQuinton\nShaun\nWarren\nWeston\nZackery\nEmmanuel\nErik\nGary\nGraham\nJavier\nJay\nJessie\nJosiah\nNickolas\nPierce\nSebastian\nTroy\nAhmad\nAlbert\nBobby\nClinton\nDallas\nDouglas\nDrake\nDrew\nEdwin\nFrancisco\nJadon\nJaiden\nJamari\nJayson\nJoe\nLawson\nMarshall\nMiles\nMorgan\nOmar\nPeter\nReginald\nTony\nAyden\nBrennan\nBrooks\nCharlie\nCoby\nDesmond\nHolden\nJacoby\nJudson\nJulius\nKamron\nKendall\nLeon\nPhilip\nRicky\nShane\nYahir\nZachery\nAlejandro\nAmarion\nArthur\nBennett\nBrent\nByron\nCarl\nCasey\nCourtney\nCristian\nDamion\nDayton\nDevan\nDiego\nJosue\nKyler\nLiam\nRandy\nTerrell\nBraeden\nDamon\nDominick\nEddie\nFredrick\nJarrett\nJaydon\nJimmy\nJorge\nKarson\nLadarius\nManuel\nMarion\nMathew\nMaurice\nMikel\nMiller\nNolan\nOliver\nQuentin\nRoss\nTristin\nZion\nBrantley\nBrenden\nBrennen\nCayden\nChad\nClay\nCornelius\nCortez\nDarrell\nDarren\nDavion\nDennis\nDorian\nElisha\nEmanuel\nErnest\nFernando\nGerardo\nHarley\nIsiah\nJaheim\nJaquarius\nJaquez\nJavonte\nKade\nKeegan\nKoby\nKristian\nLukas\nMaddox\nMarquez\nMartin\nMelvin\nRoy\nScott\nTerrence\nTrevon\nZander\nCamren\nCason\nDante\nDarryl\nDeonte\nHeath\nJacorey\nJamichael\nJarvis\nJaylan\nJerome\nKaiden\nKeaton\nKennedy\nKeshawn\nKhalil\nLadarrius\nLawrence\nLondon\nLorenzo\nReece\nSolomon\nTobias\nTommy\nTyrek\nWaylon\nWilson\nXzavier\nZacchaeus\nBlaine\nBranson\nBraydon\nBraylon\nCamryn\nCesar\nCorbin\nDavin\nDestin\nDevonte\nEzekiel\nFelix\nGarrison\nGiovanni\nGreyson\nHoward\nJabari\nJalon\nJamie\nJaquavious\nJaven\nJaveon\nJavion\nJohnathon\nJordon\nKai\nKendarius\nKerry\nKody\nMalcolm\nMarc\nMarco\nMarquis\nOmari\nPedro\nQuincy\nRashad\nReid\nRoberto\nRonnie\nSage\nShannon\nSidney\nSimon\nTerrance\nTyree\nAbraham\nAden\nAdolfo\nAlton\nAndy\nAntoine\nArturo\nAsa\nAubrey\nBernard\nBranden\nDamarcus\nDevante\nEdgar\nEduardo\nElliott\nEnrique\nForrest\nFoster\nFranklin\nGerald\nGordon\nGrady\nHayes\nIssac\nJacobi\nJadarian\nJagger\nJakari\nJameson\nJarius\nJavaris\nJaxson\nJeb\nJudah\nJulio\nJustus\nKentrell\nKeon\nKeyshawn\nLayton\nLeonardo\nNathanael\nNehemiah\nNigel\nNikolas\nNorman\nPaxton\nRiver\nRoman\nSalvador\nSam\nSilas\nTate\nTodd\nTrentin\nWade\nZachariah\nAddison\nAlden\nAlexis\nAlonzo\nAlvin\nAmir\nAnderson\nBeau\nBrannon\nBrayan\nBrenton\nBriley\nBroderick\nBruce\nCaiden\nCanaan\nClark\nCyrus\nDale\nDamarion\nDaquan\nDaylan\nDejuan\nDemarion\nDeontae\nDwayne\nDylon\nErick\nEverett\nFletcher\nGarret\nGauge\nHarold\nIsrael\nJacolby\nJadarius\nJamarian\nJamel\nJarred\nJavian\nJayce\nJody\nJonas\nJude\nKamari\nKamryn\nKasey\nKeagan\nKeenan\nKejuan\nKelton\nKevon\nKolton\nLee\nLewis\nLonnie\nMarcos\nMarkell\nMarlon\nMarquise\nMartez\nMykel\nNasir\nNelson\nRalph\nRuben\nRylan\nRyland\nSergio\nShamar\nSheldon\nShelton\nSlade\nStanley\nTitus\nToby\nTomas\nTriston\nTurner\nTylan\nAndres\nAngelo\nAntwan\nAric\nAsher\nAuston\nBraiden\nBrant\nBronson\nCampbell\nChancellor\nChris\nClint\nColt\nCraig\nCrawford\nDakotah\nDarian\nDarrius\nDaven\nDeanthony\nDenver\nDenzel\nDeshawn\nDeven\nDevonta\nDillan\nDominique\nDon\nDonavan\nDraven\nEan\nEarnest\nEaston\nEfrain\nElias\nEllis\nEmmett\nFabian\nGunnar\nGunner\nJacorian\nJacquez\nJalin\nJalyn\nJamar\nJamison\nJarod\nJashon\nJavon\nJermiah\nJovan\nKadarius\nKason\nKeandre\nKellen\nKendell\nKeyon\nKhristopher\nKonnor\nKylan\nLeonard\nLouis\nMarkus\nMarques\nMartavious\nOrlando\nPablo\nPresley\nPrinceton\nQuintin\nRafael\nRaul\nReagan\nReed\nReese\nRoger\nRomeo\nSedrick\nSherman\nStone\nTadarius\nToney\nTracy\nTravon\nTreshawn\nTrevin\nWill\nWinston\nYair\nZayden\nZechariah\nWilliam\nJacob\nJohn\nJoshua\nJames\nChristopher\nMichael\nMatthew\nEthan\nJoseph\nTyler\nAndrew\nJackson\nDavid\nAustin\nCaleb\nHunter\nChristian\nCameron\nSamuel\nDaniel\nThomas\nNicholas\nBrandon\nLogan\nJonathan\nRobert\nElijah\nDylan\nJordan\nJustin\nCharles\nNoah\nLandon\nBenjamin\nRyan\nZachary\nAlexander\nNathan\nAnthony\nTimothy\nAshton\nMason\nConnor\nGabriel\nJeremiah\nLuke\nKaleb\nEvan\nGavin\nHayden\nBrayden\nIsaiah\nJason\nAaron\nBraxton\nEric\nSeth\nCarson\nIsaac\nKevin\nJayden\nCaden\nNathaniel\nCody\nBrody\nDalton\nAidan\nPatrick\nTanner\nDevin\nGarrett\nParker\nAdam\nJack\nSteven\nCarter\nLucas\nPeyton\nJaylen\nRichard\nJaden\nAiden\nAlex\nBrian\nChase\nKyle\nPreston\nStephen\nXavier\nAntonio\nCollin\nJeremy\nKenneth\nBradley\nColton\nConner\nBrady\nBryan\nClayton\nJesse\nJose\nTaylor\nTristan\nKaden\nBraden\nDawson\nHarrison\nBryson\nDakota\nRiley\nSean\nTrenton\nCole\nIan\nMicah\nOwen\nWesley\nBlake\nColin\nGrayson\nJalen\nJohnathan\nMarcus\nChandler\nJuan\nSkyler\nColby\nEli\nJaylon\nKameron\nWyatt\nHenry\nJake\nLevi\nCooper\nCorey\nGrant\nShawn\nEdward\nGeorge\nJaxon\nMalachi\nMark\nJonah\nLuis\nTravis\nTrevor\nJeffrey\nWalker\nDerrick\nDustin\nJamarcus\nJamarion\nPaul\nGage\nPhillip\nCarlos\nGregory\nAdrian\nBrodie\nJared\nMalik\nTucker\nCade\nHudson\nJulian\nSpencer\nDavis\nDevon\nCamden\nRonald\nZackary\nAvery\nBryant\nGriffin\nJerry\nJosiah\nLarry\nOmarion\nTrey\nWillie\nCamron\nCayden\nDonovan\nLane\nPayton\nTrent\nAlan\nJeffery\nJon\nLanden\nMaxwell\nRaymond\nTerry\nVictor\nAmarion\nDeandre\nDemetrius\nDillon\nDonald\nDrake\nJamari\nJesus\nJimmy\nJoel\nJohnny\nMiguel\nWalter\nAmari\nBrendan\nBryce\nCalvin\nDamian\nGraham\nJaylan\nSkylar\nTerrance\nTroy\nZion\nAlexis\nFrank\nGary\nMorgan\nRodney\nRussell\nSawyer\nSebastian\nShane\nTy\nWilson\nAllen\nAyden\nBrooks\nColeman\nCurtis\nDarius\nIvan\nJakob\nJermaine\nNolan\nOmar\nRandy\nReginald\nAngel\nBilly\nEduardo\nFernando\nHouston\nJavion\nJonathon\nJudson\nNicolas\nRoderick\nXander\nBailey\nBrennan\nBrock\nCasey\nCedric\nChance\nCharlie\nCory\nDamien\nDominic\nJace\nJakobe\nJamal\nJaquan\nJessie\nKolby\nKristopher\nMartin\nMitchell\nZackery\nAlejandro\nBobby\nBrett\nClay\nEddie\nJaiden\nKendrick\nKobe\nPeter\nRandall\nTristen\nTyrese\nZachariah\nZander\nAden\nArthur\nCarl\nChad\nDerek\nJameson\nJorge\nKelvin\nKendall\nLawson\nMario\nMicheal\nPhilip\nQuinton\nReese\nAndre\nBraydon\nCason\nDallas\nDarrell\nDennis\nDorian\nDouglas\nEdwin\nErik\nJabari\nJoe\nKeith\nManuel\nOliver\nOscar\nScott\nTommy\nTriston\nTyson\nZachery\nCornelius\nDamion\nDavion\nDiego\nEdgar\nFrancisco\nJacoby\nJavon\nJay\nJaylin\nKade\nKyler\nLadarius\nLee\nMarco\nMyles\nNathanael\nNickolas\nRoman\nRonnie\nTony\nYahir\nAbraham\nClarence\nCorbin\nCristian\nDamon\nDrew\nKendarius\nKeyshawn\nLawrence\nMaurice\nMikel\nMiles\nRafael\nRuben\nTrevon\nZane\nAhmad\nAlec\nCaiden\nDemarcus\nDeshawn\nDillan\nEnrique\nGrady\nGreyson\nHarley\nHeath\nIsrael\nJamar\nJarrett\nJavier\nJayson\nKamron\nKeondre\nLiam\nMarlon\nPedro\nRashad\nRicardo\nRiver\nRylan\nShaun\nWarren\nWeston\nAlbert\nAnderson\nAubrey\nBraeden\nBrendon\nBrent\nByron\nDanny\nDante\nDeon\nDesmond\nEmmanuel\nFrederick\nFredrick\nJamichael\nJamie\nJarvis\nJasper\nJohnathon\nJonas\nJosue\nKeandre\nLouis\nMarquis\nMathew\nRoger\nShannon\nSilas\nSolomon\nTodd\nTrace\nVincent\nAddison\nBranden\nBrenden\nBriley\nCamren\nClifford\nClinton\nCordell\nDarrion\nDeanthony\nDemarion\nDwayne\nFranklin\nGerald\nIssac\nJamarius\nKayden\nKejuan\nMaddox\nMax\nMekhi\nMelvin\nNehemiah\nNigel\nOmari\nRicky\nRoberto\nRyder\nTerrell\nTerrence\nTurner\nWaylon\nXzavier\nAdan\nAntoine\nAsher\nBrantley\nBrenton\nBruce\nCanaan\nCesar\nDamarion\nDandre\nDarren\nDeangelo\nDestin\nDevan\nDominick\nEaston\nElias\nEzekiel\nGunner\nHector\nIsiah\nJadon\nJaleel\nJaquez\nJaydon\nJeb\nJerrell\nJkwon\nJulio\nJulius\nKadin\nKane\nKerry\nKristian\nLeonard\nLukas\nMarshall\nPierce\nQuincy\nToby\nTristin\nWill\nZacchaeus\nAlvin\nBarrett\nBaylor\nBraiden\nBraylon\nCohen\nCortez\nDewayne\nElisha\nErick\nHarold\nHolden\nJacorey\nJakari\nJamison\nJarod\nJavontae\nJerome\nKamren\nKanye\nKeaton\nKeegan\nKelby\nKhalil\nKody\nLamarcus\nLamarion\nLance\nLewis\nLorenzo\nMarkel\nMateo\nNelson\nNikolas\nReagan\nReid\nRemington\nRoy\nSaul\nSergio\nShamar\nStanley\nTitus\nTrevion\nTyrone\nVicente\nAllan\nAmir\nAntwone\nArmando\nAshtin\nAuston\nBeau\nBentley\nBrannon\nBranson\nBrayan\nCannon\nCase\nChevy\nClifton\nCoby\nDale\nDarnell\nDarryl\nDavian\nDayton\nDeven\nDevonte\nDevyn\nDraven\nEmanuel\nEverett\nFelipe\nGarrison\nGaspar\nGibson\nGlenn\nHoward\nIsmael\nJacobe\nJadyn\nJaeden\nJaheim\nJaquarius\nJavan\nJavaris\nJavonta\nJaxson\nJimmie\nJoey\nJohan\nJudah\nJustice\nKaiden\nKamari\nKendal\nKendarious\nKennedy\nKentrell\nKenyon\nKolton\nKorey\nLamar\nMarquez\nOrlando\nRay\nReece\nRickey\nRogelio\nSidney\nSimeon\nTate\nTyrell\nWayne\nWillis\nAbram\nAlden\nAlfredo\nAndon\nAntwon\nAsa\nAshten\nBlaze\nBo\nCale\nCarmelo\nCasen\nCecil\nCedrick\nChapman\nColeton\nDakoda\nDaquan\nDarian\nDarien\nDarwin\nDaryl\nDaylon\nDemario\nDemond\nDeondre\nDeshaun\nDexter\nDuncan\nElliot\nElliott\nEmory\nEzra\nFabian\nGerardo\nHaden\nHorace\nIra\nIzaiah\nJadarius\nJaime\nJakobi\nJalyn\nJamel\nJamicheal\nJaquavious\nJarius\nJase\nJaven\nJavian\nJorden\nJordyn\nJude\nKai\nKarl\nKason\nKedrick\nKeenan\nKenton\nKeonta\nKeontae\nKevon\nKonnor\nLatrell\nLeo\nLeon\nLeonardo\nLonnie\nMaison\nMalek\nMarkell\nMarkus\nMartavius\nMarvin\nMauricio\nPablo\nPascual\nPaxton\nPhoenix\nQuentin\nRaul\nReed\nRigoberto\nRodrick\nRoland\nSam\nSammy\nSantiago\nShelton\nShon\nSlade\nTavion\nTheodore\nTreveon\nTyquan\nTyree\nWilliam\nJoshua\nJames\nJohn\nMichael\nJacob\nChristopher\nEthan\nMatthew\nJackson\nAndrew\nSamuel\nJoseph\nTyler\nDavid\nCaleb\nAustin\nHunter\nCameron\nNoah\nThomas\nRobert\nChristian\nLogan\nDaniel\nJonathan\nElijah\nBrandon\nLandon\nDylan\nNicholas\nJordan\nNathan\nCharles\nZachary\nJustin\nJeremiah\nMason\nAlexander\nRyan\nGabriel\nEvan\nHayden\nAnthony\nBenjamin\nGavin\nJayden\nConnor\nKevin\nTimothy\nIsaiah\nCarson\nLuke\nAshton\nCaden\nBrayden\nDevin\nCarter\nJack\nJason\nAiden\nEric\nBraxton\nBrody\nDalton\nBrian\nKaleb\nPeyton\nJaylen\nBraden\nTristan\nConner\nLucas\nAaron\nAntonio\nRichard\nJose\nNathaniel\nPreston\nAidan\nCody\nAlex\nJaden\nMicah\nSean\nDakota\nChase\nTaylor\nWesley\nIan\nJuan\nKenneth\nXavier\nIsaac\nParker\nBrodie\nGarrett\nJeremy\nJesse\nSteven\nTrenton\nAdam\nBradley\nStephen\nTanner\nSeth\nKyle\nPatrick\nHenry\nCole\nCollin\nBrady\nColton\nKaden\nOwen\nBryan\nKameron\nWyatt\nDawson\nCooper\nJalen\nMarcus\nJamarion\nBlake\nJaxon\nJohnathan\nLuis\nAngel\nCarlos\nGrant\nRiley\nJonah\nEdward\nEli\nLevi\nOmarion\nClayton\nColin\nMark\nGrayson\nMalachi\nTerry\nCamden\nColby\nDerrick\nDustin\nGregory\nJake\nJulian\nTravis\nAdrian\nBryson\nMiguel\nTucker\nDevon\nHarrison\nGeorge\nJaylon\nWalker\nCayden\nBryce\nCorey\nJesus\nMalik\nPayton\nTrevor\nAlan\nJerry\nLanden\nPaul\nSawyer\nTy\nVictor\nHudson\nJeffrey\nTroy\nAndre\nCurtis\nJace\nJared\nShawn\nCamron\nDominic\nJaiden\nJon\nAyden\nBryant\nChandler\nKayden\nCade\nDeandre\nPhillip\nSebastian\nDouglas\nLance\nNicolas\nOscar\nSkyler\nBrendan\nDarius\nDiego\nEdwin\nJamari\nJaylin\nJoel\nCalvin\nColeman\nDonald\nDrake\nJamarcus\nMaddox\nPhilip\nRodney\nRonald\nBobby\nBrennan\nDamien\nSkylar\nAvery\nBrooks\nDavis\nFrancisco\nGage\nJakob\nJermaine\nJohnny\nMaxwell\nMitchell\nOmar\nRandy\nRoderick\nTerrance\nTrey\nTristen\nZackary\nZion\nBraylon\nCasey\nCharlie\nKelvin\nLane\nTrent\nVincent\nWillie\nAlexis\nBrock\nChance\nJavon\nJosiah\nJosue\nMartin\nMiles\nNolan\nWalter\nZander\nAlejandro\nAllen\nAmarion\nDamon\nDemarcus\nEmmanuel\nGerald\nJaxson\nJonathon\nKaiden\nLarry\nMorgan\nReginald\nWeston\nBrett\nChad\nCorbin\nDallas\nDerek\nDesmond\nEduardo\nJay\nJeffery\nJimmy\nJorge\nKristopher\nMax\nReece\nRicky\nRoman\nTony\nCaiden\nCedric\nCory\nDemarion\nDennis\nDonovan\nEaston\nEdgar\nEzekiel\nIsrael\nJacoby\nJayson\nKendall\nOliver\nPedro\nPeter\nRaymond\nRussell\nSpencer\nTommy\nTriston\nTyson\nWilson\nBailey\nBennett\nCohen\nDamian\nDanny\nDavion\nFredrick\nGriffin\nHouston\nJadon\nJudson\nKeith\nKenyon\nLukas\nMario\nMekhi\nRandall\nShane\nTerrell\nAden\nAhmad\nAmari\nAnderson\nBaylor\nCesar\nDemetrius\nDillon\nDorian\nJabari\nKendrick\nKyler\nMalcolm\nNickolas\nRicardo\nRyder\nRylan\nBarrett\nBrantley\nCarl\nCortez\nElliott\nEmanuel\nGary\nJaquan\nJavion\nJaydon\nKobe\nKody\nKristian\nLawson\nMarcos\nMaurice\nMyles\nPierce\nQuentin\nQuincy\nRiver\nShannon\nTyree\nTyrone\nWarren\nZachery\nZackery\nZane\nArthur\nAsa\nBentley\nBilly\nBraydon\nBrenden\nByron\nDevan\nDillan\nDominick\nErick\nFernando\nGraham\nGreyson\nHarley\nIvan\nJacorey\nJarrett\nJavier\nJude\nJustice\nKeegan\nKeshawn\nKolby\nMarshall\nMicheal\nNathanael\nRafael\nRoger\nRonnie\nShaun\nAlbert\nAsher\nAubrey\nCason\nClay\nColten\nCristian\nDamarion\nDavin\nElisha\nElliot\nFrederick\nHarold\nHolden\nJamarius\nJarvis\nJoey\nKasey\nKhalil\nManuel\nMarvin\nNelson\nNikolas\nQuinton\nShamar\nTristin\nXander\nAndy\nBradyn\nBranden\nBrent\nBruce\nCampbell\nCannon\nCornelius\nDejuan\nEddie\nEnrique\nFrank\nGiovanni\nHeath\nIsmael\nJameson\nJamie\nJayce\nJaylan\nJessie\nJoe\nKade\nKamari\nKamron\nKeaton\nLamar\nLawrence\nLiam\nLorenzo\nMarkel\nMelvin\nPhoenix\nReese\nRoberto\nScott\nSimon\nTyrese\nYahir\nAbraham\nAbram\nAdolfo\nAndres\nBarry\nBraylen\nCecil\nChris\nCourtney\nDarren\nDayton\nDraven\nDrew\nErik\nErnest\nGrady\nGunner\nGustavo\nHarry\nHector\nIsiah\nJacori\nJamal\nJamar\nJaveon\nJonas\nJulio\nJulius\nKason\nKellen\nLadarius\nLeonardo\nLincoln\nNigel\nOrlando\nRashawn\nReed\nRemington\nRhett\nSolomon\nTitus\nTobias\nToby\nTrace\nTrevon\nTristian\nZachariah\nAmare\nAxel\nBen\nBishop\nBo\nBraeden\nBrendon\nBrenton\nBrodey\nCanaan\nCarlton\nClark\nClifton\nClinton\nCullen\nCyrus\nDante\nDaryl\nDavon\nDeangelo\nDeontae\nDontavious\nEsteban\nGlenn\nHampton\nIssac\nJadarius\nJett\nJudah\nKadyn\nKane\nKarson\nKeyon\nKorey\nKylan\nLayton\nLebron\nLeland\nLondon\nMarco\nMikel\nPerry\nPierre\nRashad\nRickey\nRodrigo\nRuben\nTalan\nTerrence\nTracy\nTurner\nTylan\nWill\nAdan\nAddison\nAlec\nAli\nAlijah\nAntoine\nArturo\nBraiden\nBriley\nBroderick\nClarence\nCoby\nCoy\nDamion\nDarian\nDaven\nDean\nDewayne\nDuncan\nEan\nElias\nEmory\nEverett\nFranklin\nGabe\nGarrison\nGaspar\nGerardo\nHoward\nJacobi\nJakari\nJakobi\nJamichael\nJaquavious\nJase\nJasper\nJavian\nJerome\nJohnnie\nJordon\nJunior\nJustus\nKadarius\nKeelan\nKeenan\nKelton\nKendarius\nKendell\nKeshun\nKeyshawn\nKolton\nLandyn\nLee\nLeo\nLeon\nLeslie\nMarkell\nMarques\nMathew\nMauricio\nNehemiah\nOmari\nQuenton\nRaphael\nReid\nSergio\nSidney\nTamarcus\nTheodore\nTodd\nTommie\nTrayton\nTreyvon\nTyrell\nWade\nWinston\nAllan\nAmir\nAntwan\nArmando\nAron\nAustyn\nBeau\nBlaze\nBradlee\nBrice\nBrodee\nBrycen\nCamryn\nChaz\nConor\nCorban\nCraig\nDakotah\nDamarcus\nDarryl\nDavian\nDemario\nDevante\nDeven\nDevonte\nDomingo\nDominique\nEllis\nElvin\nEmmett\nEzequiel\nEzra\nGaven\nHarris\nHugo\nJacolby\nJadan\nJaidyn\nJajuan\nJakobe\nJalon\nJamarian\nJaquez\nJohnathon\nJorden\nJosh\nKareem\nKennedy\nKerry\nKonner\nLamarcus\nLatrell\nLewis\nMckinley\nNorman\nOtis\nPaxton\nPorter\nQuinterrius\nQuintin\nRashard\nSam\nSantiago\nSaul\nSimeon\nSlade\nStanley\nTate\nTavares\nThaddeus\nVicente\nWaylon\nWayne\nXzavier\nWilliam\nJacob\nJames\nJoshua\nJohn\nMichael\nJackson\nChristopher\nEthan\nMatthew\nNoah\nJoseph\nTyler\nAndrew\nLandon\nCaleb\nSamuel\nDavid\nElijah\nJordan\nAustin\nChristian\nHunter\nLogan\nRobert\nBrandon\nCameron\nJonathan\nDaniel\nAlexander\nNicholas\nThomas\nCharles\nJayden\nBenjamin\nDylan\nZachary\nJustin\nJeremiah\nAnthony\nHayden\nGabriel\nMason\nAiden\nBrayden\nGavin\nNathan\nIsaiah\nLuke\nTristan\nRyan\nTimothy\nEvan\nConnor\nKevin\nJason\nKaleb\nAaron\nAshton\nBrody\nCarson\nCarter\nBraxton\nCaden\nAidan\nCooper\nKaden\nDevin\nEric\nLucas\nBrodie\nChase\nRichard\nXavier\nMicah\nIsaac\nSeth\nIan\nJack\nAntonio\nJose\nPreston\nParker\nCody\nDalton\nAlex\nBraden\nJaylen\nOwen\nJeremy\nBryan\nJaden\nBrian\nEli\nPeyton\nKenneth\nWyatt\nBrady\nTaylor\nTrenton\nColton\nMarcus\nSteven\nNathaniel\nStephen\nWesley\nDakota\nJuan\nRiley\nAyden\nCole\nGarrett\nJesse\nAngel\nDawson\nGrayson\nHenry\nMalachi\nSean\nTanner\nJalen\nAdam\nBryson\nGeorge\nKyle\nPatrick\nBradley\nJaxon\nJohnathan\nClayton\nLuis\nConner\nHudson\nBlake\nHarrison\nLevi\nPaul\nTucker\nWalker\nMiguel\nAdrian\nGrant\nCamden\nCarlos\nCayden\nJulian\nKameron\nShawn\nTravis\nColin\nJake\nMark\nGregory\nJamarion\nJesus\nBryce\nDiego\nSawyer\nCamron\nLanden\nPhillip\nTrevor\nBryant\nCorey\nVictor\nJaylon\nJonah\nSkyler\nDerrick\nJace\nGage\nJeffrey\nAvery\nDemetrius\nJaiden\nJared\nJoel\nJosiah\nDominic\nKristopher\nChandler\nColby\nCollin\nCristian\nDavis\nRonald\nZion\nDonovan\nFrancisco\nJohnny\nMalik\nRoman\nTerry\nTrey\nCalvin\nEdward\nJamarcus\nKaiden\nMaddox\nNolan\nCurtis\nGriffin\nIsrael\nJon\nMorgan\nTroy\nAlan\nAlejandro\nDeandre\nDrake\nDustin\nMiles\nMyles\nTalan\nTristen\nWillie\nJamari\nKeith\nOscar\nSebastian\nTerrance\nAllen\nBrock\nBrooks\nDamian\nDamien\nDemarion\nEdwin\nLiam\nMario\nRoderick\nRylan\nTony\nTyson\nAden\nAlexis\nDallas\nErik\nFrank\nJerry\nLarry\nMaurice\nSkylar\nAmari\nBraylon\nCedric\nColeman\nJimmy\nJorge\nKendrick\nKyler\nTrent\nVincent\nZane\nChance\nDerek\nDillon\nDonald\nJaylan\nJonathon\nKelvin\nMarshall\nNicolas\nRicky\nShane\nShaun\nSpencer\nBrett\nDevon\nEaston\nEduardo\nJessie\nJulius\nOmarion\nCade\nDarrell\nDrew\nFernando\nGraham\nGreyson\nJaylin\nKendall\nLeonardo\nOmar\nPedro\nReid\nWalter\nXander\nAnderson\nAndre\nAsher\nBrayan\nCaiden\nDemarcus\nEmmanuel\nGary\nJavion\nJaxson\nJeffery\nKayden\nLadarius\nMalcolm\nNehemiah\nReginald\nRussell\nWilson\nZackary\nCesar\nDarius\nDennis\nDominick\nEddie\nIvan\nJameson\nJosue\nLane\nLawson\nMaxwell\nOliver\nTy\nZackery\nAddison\nAndres\nAndy\nBrantley\nCourtney\nElias\nEzekiel\nHarley\nHouston\nJabari\nJakobe\nJaquan\nJay\nJermaine\nKhalil\nLeland\nMartin\nMax\nRafael\nZander\nAdan\nAsa\nBobby\nBraydon\nBrendan\nCason\nCorbin\nCornelius\nDouglas\nHector\nJadon\nJamison\nJavon\nJoe\nKamron\nKarson\nLance\nMitchell\nNigel\nQuentin\nRodney\nScott\nSolomon\nTerrence\nWeston\nBilly\nCharlie\nCohen\nDamon\nElliott\nGerardo\nJavier\nJustice\nKobe\nPaxton\nPayton\nQuinton\nRaymond\nSilas\nTerrell\nTrace\nTristian\nTristin\nTyrese\nAlbert\nAtticus\nBraylen\nBrendon\nBrent\nCortez\nDamarion\nDamion\nDeshawn\nDesmond\nDewayne\nEverett\nFrederick\nFredrick\nJacoby\nJacorey\nJaydon\nJude\nLawrence\nLayton\nLukas\nMicheal\nNickolas\nPeter\nPhilip\nRandy\nRay\nRuben\nRyder\nTitus\nToby\nTommy\nTyree\nXzavier\nAntwan\nArthur\nBranson\nBrennan\nBriley\nCarl\nCarmelo\nChad\nDevontae\nDorian\nEmanuel\nGerald\nGiovanni\nGrady\nJakob\nJase\nJohnathon\nKamari\nKamden\nKeaton\nLorenzo\nMarvin\nRaul\nReed\nRicardo\nRoberto\nSimon\nTrevon\nWaylon\nAbraham\nBlaine\nBrycen\nByron\nCasey\nClay\nCory\nDerick\nDraven\nEmory\nFrankie\nHolden\nIsiah\nIssac\nJacobi\nJamie\nJorden\nJudson\nKeshawn\nKody\nKolby\nKole\nKorey\nLee\nLouis\nMarlon\nMarquis\nMelvin\nNathanael\nOrlando\nPhoenix\nRashad\nRiver\nRonnie\nTate\nTriston\nAlexzander\nAugustus\nAxel\nBailey\nBraeden\nBraiden\nCamryn\nCanaan\nChris\nCullen\nDarian\nDayton\nDevan\nDevonte\nEdgar\nElisha\nEllis\nGarrison\nGunnar\nHugo\nJamarius\nJamichael\nJaquavious\nJarvis\nJayce\nJordyn\nJudah\nKeegan\nKentavious\nKenyon\nLandyn\nLincoln\nMarco\nMarkus\nMarquez\nNathanial\nRandall\nReece\nRhett\nSergio\nStanley\nThaddeus\nTobias\nWinston\nZavier\nAdolfo\nAlijah\nAlvin\nAmare\nBranden\nBrenton\nBrice\nBritton\nBruce\nCarlton\nClarence\nClark\nCrimson\nDamarcus\nDarrius\nDarryl\nEan\nEmerson\nErick\nGideon\nGustavo\nJakari\nJalon\nJamal\nJavien\nJayson\nJosh\nKade\nKason\nKennedy\nKerry\nLewis\nMontrell\nPorter\nPrice\nQuincy\nReese\nRoger\nRolando\nRonaldo\nSaul\nSteve\nTylan\nTyrell\nTyshaun\nYahir\nZachery\nAchilles\nAlberto\nAlec\nAlton\nArmando\nAubrey\nBeau\nBenton\nBodie\nBraedon\nBrenden\nCannon\nClint\nClinton\nConrad\nDanny\nDante\nDaylon\nDean\nDeangelo\nDemonte\nDeshaun\nDevonta\nDomingo\nElliot\nEmmett\nErnest\nEzra\nFelix\nGunner\nHaden\nHarris\nHeath\nHoward\nJackie\nJadarius\nJadyn\nJaime\nJamarian\nJarrett\nJasper\nJody\nJoey\nJohnnie\nJordon\nKamarion\nKeldrick\nKelly\nKelton\nKemari\nKolton\nKristian\nKylan\nLamar\nLondon\nMartez\nMauricio\nMikel\nMiller\nNikolas\nPascual\nPierce\nReagan\nRylee\nSemaj\nSidney\nSlade\nTalon\nTavaris\nTravon\nTyrone\nUriel\nVan\nWade\nWarren\nWiley\nXavion\nZechariah\nAlfonso\nAlfred\nAlfredo\nAmarion\nAntwone\nArturo\nAydan\nBarry\nBaylor\nBernard\nBradford\nBrannon\nBraylan\nBroderick\nCamauri\nCase\nCecil\nChadwick\nCoby\nCorde\nCordell\nCraig\nCruz\nDashawn\nDavon\nDaylan\nDelvin\nDemario\nDezmond\nDon\nDontae\nEarl\nEarnest\nElmer\nEmiliano\nEnrique\nErnesto\nEzequiel\nFletcher\nGavyn\nGlenn\nHarper\nHarvey\nHayes\nIsaias\nIsmael\nJacobe\nJacolby\nJadin\nJajuan\nJakobi\nJamar\nJaquarius\nJavian\nJaydan\nJefferson\nJerome\nJoaquin\nJonas\nJulio\nKadyn\nKai\nKanye\nKeagan\nKeandre\nKeelan\nKeller\nKemauri\nKendarius\nKennon\nKentrell\nKeyon\nKing\nKonnor\nKristofer\nKyron\nLeon\nLeonard\nLyric\nManuel\nMarc\nMarcos\nMekhi\nNasir\nNeil\nNelson\nNoe\nOmari\nPalmer\nPierre\nSage\nSalvador\nSantiago\nScotty\nShannon\nSterling\nTamarion\nThatcher\nTodd\nTomas\nTurner\nTylen\nYusuf\nWilliam\nJames\nChristopher\nJohn\nJacob\nJoshua\nJackson\nMichael\nEthan\nNoah\nCaleb\nJayden\nCameron\nDavid\nSamuel\nTyler\nMatthew\nAndrew\nJordan\nLandon\nLogan\nElijah\nChristian\nJoseph\nDaniel\nRobert\nAiden\nAustin\nBrayden\nGavin\nCharles\nMason\nHunter\nBenjamin\nJonathan\nBrandon\nNicholas\nAlexander\nAnthony\nDylan\nJeremiah\nThomas\nNathan\nEvan\nHayden\nJustin\nGabriel\nZachary\nJaden\nKevin\nLuke\nIsaiah\nRyan\nParker\nBrody\nCaden\nCarson\nAaron\nTristan\nConnor\nBraxton\nLucas\nCarter\nJason\nKaleb\nIsaac\nJose\nJaylen\nCooper\nJack\nEric\nOwen\nTimothy\nMicah\nKaden\nAlex\nAshton\nXavier\nColton\nPeyton\nRichard\nBraden\nNathaniel\nJaxon\nBrady\nAidan\nGrayson\nIan\nJuan\nMarcus\nPreston\nWyatt\nChase\nCody\nDalton\nSeth\nSteven\nTrenton\nLuis\nPatrick\nAdam\nBlake\nSean\nBryan\nConner\nStephen\nTanner\nCayden\nJesse\nBrian\nDevin\nKenneth\nLevi\nAntonio\nHenry\nGarrett\nWesley\nJeremy\nTucker\nAdrian\nDawson\nGeorge\nMalachi\nCole\nKameron\nBrodie\nBryson\nDakota\nEli\nHarrison\nJonah\nAngel\nAyden\nBradley\nBryce\nHudson\nRiley\nJake\nJamarion\nTaylor\nCarlos\nJesus\nKyle\nSawyer\nShawn\nClayton\nDevon\nJaiden\nJamarcus\nJulian\nColby\nCorey\nKayden\nMark\nSpencer\nTravis\nZion\nPayton\nCade\nCollin\nJalen\nAlan\nCamden\nGrant\nJon\nDiego\nEdward\nDerrick\nJosiah\nPaul\nBryant\nDamien\nGage\nJohnathan\nMiguel\nAvery\nChance\nPhillip\nJace\nJaylin\nMaddox\nMicheal\nRylan\nAsher\nDavis\nMalik\nVictor\nColin\nDesmond\nEdwin\nGregory\nLarry\nTy\nCristian\nJerry\nJoel\nLanden\nMax\nAnderson\nBraylon\nMario\nOmar\nRonald\nTerrance\nTrevor\nTrey\nTyson\nVincent\nWeston\nAndre\nCalvin\nJeffrey\nWalker\nAlexis\nBraydon\nCamron\nChandler\nDonald\nMaurice\nRoderick\nZackary\nCurtis\nDerek\nDustin\nGriffin\nJimmy\nJohnny\nKeith\nKendrick\nKyler\nLeland\nLiam\nMiles\nNicolas\nSkylar\nAllen\nBrooks\nColeman\nDallas\nDominic\nDrake\nIsrael\nJaylon\nKendall\nNolan\nAmari\nCaiden\nJadarius\nJeffery\nLee\nMorgan\nRodney\nSebastian\nSilas\nSkyler\nTerry\nAndres\nBrock\nEduardo\nEmanuel\nHouston\nIvan\nJaxson\nMyles\nScott\nTristen\nTroy\nZane\nCohen\nDanny\nDonovan\nEdgar\nEzekiel\nJakob\nJosue\nKingston\nLawson\nLayton\nManuel\nOscar\nRandy\nReginald\nWillie\nAden\nAndy\nDamian\nDeandre\nElias\nJavier\nJudson\nKaiden\nKobe\nLane\nMartin\nOliver\nRoman\nSergio\nWalter\nBobby\nBrennan\nByron\nCedric\nCharlie\nCory\nDavion\nDemarion\nDemetrius\nDennis\nEaston\nElisha\nFrancisco\nGary\nJamari\nJared\nJaydon\nJoe\nKamari\nKeaton\nKeegan\nMitchell\nPedro\nPeter\nRandall\nTony\nTrent\nZander\nCornelius\nDayton\nElliott\nErick\nJabari\nJakobe\nJaquan\nJavon\nJude\nMaxwell\nRaymond\nRicky\nTommy\nWilson\nBailey\nBilly\nBrantley\nBrendan\nBrenden\nCourtney\nDarius\nErik\nFisher\nGraham\nJamal\nJameson\nJavion\nJay\nJaylan\nKason\nKelvin\nMarvin\nNehemiah\nReid\nRussell\nTerrence\nZackery\nZechariah\nAlejandro\nBarrett\nBennett\nCason\nCorbin\nDarren\nDemarcus\nEmmanuel\nFernando\nJacorey\nJermaine\nJordon\nJustice\nMarshall\nOmarion\nPhilip\nQuentin\nRhett\nTristian\nTylan\nAmir\nBraeden\nBrayan\nBrent\nColten\nDamon\nDewayne\nGrady\nJerome\nJessie\nJorge\nKamron\nLawrence\nLeon\nRashad\nRuben\nRyder\nWill\nZayden\nAsa\nBaylor\nBeau\nBlaine\nBrannon\nBrett\nDarion\nDevan\nEnrique\nGerardo\nGustavo\nHayes\nJacoby\nJamar\nJamie\nJarvis\nKarson\nKendarius\nKeshawn\nKristopher\nLadarius\nLance\nLeo\nLeonardo\nNickolas\nPaxton\nQuincy\nTerrell\nTitus\nTurner\nXzavier\nAubrey\nBradyn\nBraylen\nBrendon\nBruce\nCasey\nDeshawn\nDillon\nDrew\nGerald\nHarley\nHector\nJadon\nJamarius\nJamison\nJayson\nJorden\nJudah\nJulio\nKamryn\nKenyon\nLincoln\nLukas\nQuinton\nShaun\nTyrese\nXander\nAhmad\nAmarion\nArmando\nBranden\nBritton\nCortez\nDamion\nDane\nDarrell\nDouglas\nFrank\nFranklin\nFrederick\nGiovanni\nGreyson\nGunner\nJavian\nJayce\nJohnathon\nJonathon\nJulius\nKai\nKeilan\nKelan\nKolby\nKolton\nLandyn\nMarcos\nOmari\nPhoenix\nPorter\nRafael\nRicardo\nRodrigo\nSantiago\nStone\nTrace\nTrevon\nTriston\nWaylon\nAbram\nAdan\nAlberto\nAngelo\nAntoine\nBraiden\nBronson\nCarl\nCesar\nChad\nColt\nDamarion\nDarryl\nDeangelo\nDillan\nDorian\nErnesto\nEverett\nGarrison\nHolden\nIsmael\nJair\nJaquez\nJoey\nKamden\nKhalil\nKody\nLandan\nLondon\nLouis\nMarkeith\nMarlon\nMelvin\nMiller\nPierce\nQuinn\nReece\nReed\nRickey\nRoberto\nRonnie\nRoy\nShane\nSolomon\nStuart\nUriel\nZachariah\nZachery\nAlbert\nAntwan\nArmani\nArthur\nAxel\nBentley\nBenton\nBrycen\nCarnell\nCash\nCoby\nDarian\nDarrion\nDeon\nDestin\nDevonte\nDominick\nDraven\nEmory\nEzra\nFredrick\nHoward\nIssac\nJacobe\nJacobi\nJaedyn\nJamichael\nJarrett\nJase\nJashawn\nJasper\nJaven\nJaveon\nJayveon\nKade\nKane\nKejuan\nKeshaun\nKing\nLeonel\nLorenzo\nMalcolm\nMarkel\nMarquez\nRaul\nRiver\nRyland\nSalvador\nSimon\nSlade\nTobias\nTreyvon\nYahir\nAlvin\nAustyn\nBo\nBrice\nCamryn\nCannon\nCarmelo\nCasen\nChris\nClinton\nCristobal\nCristopher\nCruz\nDeacon\nDean\nDerrion\nDeshaun\nDexter\nDominique\nDuncan\nEllis\nFelipe\nFord\nForrest\nHarold\nHarper\nHeath\nIsiah\nJadyn\nJagger\nJaime\nJakobi\nJamarkus\nJamarrion\nJaquavious\nJarred\nJordyn\nJustus\nKamarion\nKeenan\nKentrell\nKonner\nKristian\nKylan\nLadarrion\nLamarcus\nMarco\nMateo\nMathew\nMoises\nNasir\nNelson\nNoe\nPablo\nPerry\nQuindarius\nRashard\nReagan\nReese\nRoland\nSage\nSemaj\nShelton\nTate\nThaddeus\nTravion\nTrevion\nTristin\nWallace\nWarren\nAaden\nAddison\nAdolfo\nAidyn\nAlfred\nAli\nAlton\nAmauri\nAron\nAusten\nAydan\nBlaze\nBoston\nBowen\nBradlee\nBranson\nBrennen\nBrysen\nCadyn\nCaedmon\nCale\nCarsen\nCase\nChristofer\nCristofer\nDashawn\nDavian\nDaylin\nDemarius\nDeonte\nDerick\nDontae\nEddie\nElliot\nElvis\nEmerson\nEmmett\nEsteban\nFelix\nFreddy\nGael\nGannon\nGaven\nGordon\nGunnar\nHaden\nHarris\nJacari\nJacori\nJakari\nJamel\nJaquarius\nJathan\nJavari\nJavarius\nJavien\nJayquan\nJerimiah\nJosh\nKaeden\nKeelan\nKellen\nKendal\nKeon\nKeontae\nKeonte\nKeyshawn\nKorbin\nLamar\nLatrell\nLayne\nLeslie\nMajor\nMarion\nMarquis\nMartez\nMayson\nMekhi\nMessiah\nMoses\nNash\nNick\nRoger\nSamson\nStanley\nSterling\nStewart\nTadarius\nTatum\nTavaris\nTheodore\nToby\nTodd\nTorian\nTylon\nTyrone\nWendell\nZack\nZavion\nWilliam\nJohn\nJames\nJacob\nJoshua\nChristopher\nMichael\nJackson\nJayden\nEthan\nCaleb\nNoah\nJoseph\nElijah\nAndrew\nChristian\nDavid\nMatthew\nAiden\nSamuel\nBrayden\nLandon\nJordan\nLogan\nCameron\nTyler\nAlexander\nCharles\nDaniel\nRobert\nHunter\nMason\nBenjamin\nJeremiah\nNathan\nAnthony\nAustin\nJonathan\nBrandon\nDylan\nGavin\nGabriel\nThomas\nNicholas\nZachary\nBrody\nCarson\nLuke\nEvan\nHayden\nIsaiah\nRyan\nJustin\nJaden\nCaden\nTristan\nParker\nConnor\nLucas\nCarter\nBraxton\nCooper\nOwen\nWyatt\nTimothy\nMicah\nKaden\nKevin\nColton\nJason\nJack\nAaron\nKaleb\nAidan\nEli\nIsaac\nJose\nEric\nAyden\nAshton\nBrian\nBrady\nGrayson\nJaylen\nJeremy\nChase\nAntonio\nHenry\nPeyton\nPreston\nAlex\nCody\nBraden\nCayden\nSean\nCole\nBryson\nJesse\nJaxon\nLevi\nConner\nKameron\nKenneth\nXavier\nNathaniel\nBlake\nDevin\nSteven\nAdam\nKayden\nRiley\nBryan\nRichard\nDalton\nJonah\nWesley\nDakota\nJaiden\nTanner\nTaylor\nHarrison\nTucker\nJesus\nCarlos\nJuan\nLuis\nPatrick\nTrenton\nIan\nAdrian\nHudson\nAngel\nBradley\nBraylon\nSawyer\nSeth\nGarrett\nJosiah\nMarcus\nBrodie\nCamden\nJamarion\nKingston\nStephen\nClayton\nBryant\nCollin\nMalachi\nJake\nDawson\nJace\nShawn\nGeorge\nZion\nBryce\nColin\nCorey\nDavis\nJoel\nMiguel\nKaiden\nKyle\nLanden\nTrevor\nAlan\nCaiden\nJamari\nJohnathan\nJulian\nMark\nTravis\nDerrick\nDiego\nEmmanuel\nGriffin\nMaddox\nSebastian\nSkyler\nAvery\nGregory\nColby\nTristen\nAmari\nDamien\nEdward\nGage\nJeffrey\nMaxwell\nPayton\nRylan\nLiam\nPaul\nAlexis\nAllen\nDemetrius\nJamarcus\nJaylon\nMalik\nOliver\nTyson\nAsher\nBrennan\nBrooks\nOscar\nCristian\nDarius\nJalen\nJon\nCade\nNicolas\nPhillip\nRyder\nTy\nVincent\nZane\nCamron\nCedric\nChance\nCohen\nEaston\nGrant\nJaxson\nJohnny\nLarry\nMyles\nPaxton\nTerry\nVictor\nColeman\nDrake\nDustin\nEdwin\nIsrael\nJeffery\nJermaine\nKristopher\nMax\nNehemiah\nOmar\nSkylar\nWalter\nWeston\nWillie\nAlejandro\nBobby\nCalvin\nCason\nCharlie\nDeandre\nDevon\nEduardo\nKamari\nKelvin\nMiles\nNolan\nTerrance\nAden\nAndres\nDallas\nDemarcus\nDonovan\nFrancisco\nFrank\nHouston\nJaydon\nKyler\nSilas\nSpencer\nTommy\nAnderson\nBraylen\nDerek\nEzekiel\nGrady\nJonas\nKarson\nKeith\nKendrick\nLeland\nTony\nTriston\nTroy\nAndre\nCorbin\nDanny\nDonald\nGraham\nJared\nJavier\nJaylin\nKobe\nLane\nMario\nMaurice\nRicardo\nWalker\nZander\nBennett\nDemarion\nDesmond\nElias\nEmanuel\nIvan\nJudson\nKeegan\nKendarius\nLandyn\nMicheal\nReginald\nRonald\nTerrell\nAaden\nBrantley\nBrayan\nCesar\nDrew\nElliott\nErik\nGary\nJacoby\nJimmy\nJonathon\nJosue\nKason\nLance\nLawson\nManuel\nOmari\nRandall\nReid\nRodney\nRoman\nSolomon\nTitus\nTrent\nTrey\nBrett\nBrock\nCornelius\nCurtis\nDominic\nEdgar\nFrederick\nGreyson\nJakob\nJulius\nMalcolm\nMitchell\nPedro\nPeter\nTrevon\nWaylon\nAndy\nAubrey\nBilly\nBraeden\nBraiden\nBraydon\nBrendan\nBruce\nByron\nCannon\nCash\nChris\nDillon\nDominick\nErick\nFredrick\nJakobe\nJamal\nJamichael\nJerry\nJordyn\nJudah\nJude\nKolby\nKolton\nMarshall\nMarvin\nPhilip\nQuinton\nRaymond\nReece\nWarren\nZackery\nAxel\nBlaine\nBradyn\nCarl\nChandler\nColten\nDamian\nGiovanni\nJamar\nJaquan\nJavion\nJohnathon\nKade\nLincoln\nLondon\nMarquis\nMemphis\nPorter\nRashad\nRicky\nShane\nZackary\nZechariah\nAbraham\nAydan\nClarence\nClinton\nColt\nDennis\nDeshawn\nDevan\nEmerson\nEzra\nFernando\nJadarius\nJameson\nJavon\nJaylan\nJessie\nJustice\nKai\nKeon\nLawrence\nLewis\nMartin\nMekhi\nNigel\nPhoenix\nQuentin\nRafael\nRandy\nRiver\nRoderick\nRodrigo\nTate\nTristian\nZayden\nAlonzo\nAsa\nBranson\nBritton\nCase\nCasey\nCourtney\nDeacon\nDerick\nDorian\nEddie\nElisha\nFranklin\nHolden\nJacobi\nJacorey\nJadon\nJaidyn\nJamarius\nJamison\nJasper\nJavian\nJay\nJerome\nJorge\nKamron\nKane\nKristian\nLorenzo\nMarco\nMelvin\nMiller\nMorgan\nPierce\nRussell\nStanley\nXander\nAmarion\nBrenden\nBrycen\nChad\nCortez\nDavian\nDavion\nElliot\nGunner\nIsmael\nIssac\nJaydin\nJayson\nKamarion\nKendall\nKentrell\nKylan\nLeonardo\nMarcos\nMathew\nNelson\nNickolas\nQuinn\nReed\nScott\nSergio\nTalan\nZachery\nAlijah\nAmare\nBarrett\nBarry\nBaylor\nBrennen\nBrennon\nCamryn\nCanaan\nClay\nClifford\nCordell\nDamarion\nDarryl\nDayton\nDewayne\nDouglas\nFinn\nFisher\nGustavo\nHeath\nHector\nJamir\nJayce\nJoaquin\nKamren\nKasen\nLamarcus\nLayne\nLayton\nLouis\nReese\nRoss\nRowan\nSidney\nSimon\nTalon\nTerrence\nTrevion\nTristin\nTrystan\nTurner\nTylan\nTyree\nUriel\nWilson\nZachariah\nAbram\nAce\nAldo\nAntwon\nArthur\nArturo\nBeau\nBranden\nBrendon\nColeton\nCory\nCoy\nCrawford\nDane\nDarian\nDarrell\nDarrius\nDean\nDeanthony\nDemarco\nDestin\nDomingo\nEddy\nEnrique\nFabian\nFelix\nFinley\nFoster\nGerald\nHarold\nHarry\nHayes\nIsiah\nJakari\nJamie\nJerimiah\nJoey\nJulio\nKemarion\nKennedy\nKeontae\nKing\nKody\nLukas\nMarkell\nMarquez\nMessiah\nNathanael\nRoberto\nRoger\nRoland\nRonnie\nRuben\nSimeon\nSteve\nTodd\nTommie\nTyquan\nWill\nYahir\nZamarion\nAmir\nAntwan\nArmando\nAtticus\nBailey\nBrent\nBriley\nCampbell\nCecil\nClark\nDamion\nDamon\nDedrick\nDwight\nEllis\nElvis\nEverett\nGarrison\nGray\nHoward\nJabari\nJacorian\nJaime\nJamel\nJaquavious\nJarrett\nJarvis\nJatavious\nJaven\nJavien\nJavonte\nJayvion\nJorden\nJordon\nKale\nKamden\nKarter\nKeagan\nKeandre\nKeaton\nKeilan\nKeller\nKelton\nKenton\nKeyon\nKymani\nKyson\nLathan\nLee\nLeonard\nMarlon\nMartez\nMaximus\nMorris\nMoses\nNikolas\nPascual\nPearson\nPerry\nRhett\nSabastian\nSam\nSantiago\nSemaj\nShannon\nToby\nTravon\nValentin\nWade\nWinston\nXzavier\nYandel\nZaylan\nZayne\nZephaniah\nAdan\nAddison\nAhmad\nAlberto\nAlfredo\nAlvin\nArmani\nAron\nBenny\nBrannon\nBraylin\nCale\nCamdyn\nCasen\nChevy\nClyde\nCoby\nCollier\nCorban\nCordarius\nCrimson\nCullen\nDante\nDarion\nDarren\nDavin\nDavon\nDaylen\nDeangelo\nDenver\nDereon\nDonavan\nDraven\nDrayden\nDrayton\nDuane\nDuncan\nEarnest\nFelipe\nFrankie\nGideon\nHarper\nHezekiah\nHugh\nHugo\nIrvin\nJaeden\nJailen\nJakobi\nJamarious\nJasiah\nJaydan\nJaythan\nJayveon\nJericho\nJimmie\nJoe\nJontavious\nJordin\nKadin\nKalen\nKayleb\nKeelan\nKeonte\nKeshaun\nKnox\nKodi\nKorbin\nLadarius\nLatrell\nLeo\nMarkel\nMarkus\nMateo\nMikael\nMoises\nOmarion\nOrlando\nPablo\nRaul\nRex\nRoy\nRyland\nShaun\nSterling\nTavion\nTed\nThaddeus\nTheron\nTobias\nTripp\nTyrone\nUriah\nUrijah\nWayne\nWiley\nXavion\nZavion\nWilliam\nJames\nJacob\nJackson\nJohn\nJoshua\nChristopher\nJayden\nMichael\nEthan\nNoah\nCaleb\nElijah\nAiden\nSamuel\nChristian\nDavid\nJoseph\nBrayden\nDaniel\nLandon\nMatthew\nTyler\nAndrew\nLogan\nMason\nHunter\nAlexander\nGabriel\nJeremiah\nCharles\nJordan\nRobert\nBenjamin\nJonathan\nDylan\nGavin\nAnthony\nColton\nCameron\nBrandon\nBraxton\nCarson\nEvan\nJustin\nThomas\nIsaiah\nConnor\nNathan\nAustin\nRyan\nNicholas\nBrody\nKaden\nKaleb\nLucas\nHayden\nTimothy\nCarter\nLuke\nKevin\nCooper\nCaden\nZachary\nOwen\nAaron\nParker\nIsaac\nTristan\nJaden\nLevi\nWyatt\nBraylon\nBryson\nMicah\nEric\nGrayson\nJaxon\nAyden\nJason\nPreston\nHenry\nJack\nAlex\nCayden\nAshton\nHudson\nIan\nJaylen\nCollin\nEli\nConner\nJosiah\nAidan\nJeremy\nKayden\nJose\nXavier\nAntonio\nCody\nJuan\nDevin\nNathaniel\nTanner\nPeyton\nSawyer\nDalton\nBrian\nCarlos\nJamarion\nSeth\nBrady\nKaiden\nKenneth\nKameron\nMarcus\nPatrick\nBlake\nTucker\nAdrian\nAngel\nCole\nSteven\nBradley\nBryan\nBryant\nRichard\nCamden\nLiam\nLuis\nTrenton\nChase\nGrant\nRiley\nAsher\nBraden\nJesse\nGeorge\nJaiden\nJohnathan\nJulian\nKyle\nMalachi\nWesley\nRylan\nStephen\nBryce\nDiego\nMaddox\nColin\nDerrick\nGage\nAdam\nDawson\nJace\nTrevor\nAlan\nClayton\nCohen\nDakota\nHarrison\nJaxson\nJoel\nGregory\nBrodie\nEdward\nTyson\nBraylen\nGarrett\nJesus\nMalik\nNolan\nTaylor\nDavis\nJalen\nKingston\nMiguel\nRyder\nSebastian\nSkyler\nTravis\nAnderson\nColby\nDrake\nEdwin\nJamari\nSean\nAaden\nChance\nDominic\nJake\nKamari\nLanden\nOliver\nPaul\nPayton\nSpencer\nTroy\nJohnny\nPhillip\nAmari\nGreyson\nJamarcus\nJonah\nKason\nLeland\nMyles\nWalker\nCorey\nDamien\nMark\nZion\nAden\nBraydon\nDamian\nDarius\nGraham\nMiles\nWeston\nChandler\nEaston\nTristen\nVincent\nBrennan\nJeffery\nJeffrey\nMax\nRoderick\nShawn\nAlexis\nAvery\nCristian\nElias\nEmmanuel\nJavion\nJaylon\nKarson\nLane\nLincoln\nNicolas\nTy\nVictor\nCaiden\nIsrael\nJakobe\nJaylin\nJudah\nJude\nMaxwell\nSilas\nBrooks\nCason\nCurtis\nDustin\nJaydon\nJerry\nLandyn\nPaxton\nRicardo\nWarren\nWillie\nAllen\nCalvin\nDeandre\nGrady\nGriffin\nJosue\nKelvin\nKolton\nKyler\nMario\nMaurice\nNehemiah\nReid\nWalter\nAmir\nBentley\nCade\nCharlie\nDemetrius\nDillon\nEzra\nGary\nJimmy\nKendrick\nRiver\nRoman\nAndres\nBrycen\nColt\nCortez\nDallas\nDonald\nHolden\nIvan\nJayce\nKendall\nOmar\nRashad\nRicky\nSkylar\nZackary\nZayden\nAndy\nBrantley\nBrock\nCornelius\nDemarcus\nDerek\nDonovan\nGunner\nHarley\nJadon\nJared\nJayson\nJon\nReginald\nRussell\nTerrance\nTerry\nZachery\nAlejandro\nBeau\nBilly\nBraiden\nCamron\nCasey\nDayton\nEduardo\nFisher\nJacorey\nJameson\nJessie\nJordyn\nOscar\nQuinton\nRodney\nRonald\nShane\nTrey\nTristin\nWaylon\nBrendan\nCedric\nCullen\nDanny\nDesmond\nEdgar\nEllis\nFrank\nJavier\nJay\nJulius\nKarter\nKeaton\nKeegan\nKobe\nLarry\nLeonardo\nLukas\nMarcos\nMarshall\nMemphis\nPhoenix\nRaymond\nXander\nZander\nZane\nAndre\nAubrey\nByron\nCesar\nChad\nColten\nCory\nDevon\nErik\nEverett\nEzekiel\nFernando\nFranklin\nJacoby\nJarrett\nJermaine\nJett\nJudson\nKade\nKeith\nKing\nKristopher\nLawson\nMitchell\nRandy\nRoberto\nTate\nTitus\nTristian\nTyrone\nArthur\nAsa\nCamryn\nCasen\nDemarion\nDennis\nDorian\nDouglas\nDrew\nFrederick\nHouston\nJadarius\nKemarion\nKylan\nManuel\nMessiah\nMicheal\nNickolas\nOmari\nPedro\nPeter\nReese\nSam\nSantiago\nScott\nSergio\nTerrell\nTony\nZavion\nAlijah\nAxel\nBennett\nBobby\nBranson\nBrenden\nBrenton\nCash\nColeman\nCourtney\nDamarion\nDamion\nEmanuel\nEmmett\nFredrick\nHayes\nIsmael\nJamal\nJamar\nJarvis\nJaylan\nKamarion\nKamauri\nKamron\nKristian\nLawrence\nLeon\nMalcolm\nMaximus\nNathanael\nPhilip\nRandall\nRhett\nTrent\nTriston\nAbraham\nAbram\nAhmad\nArmani\nBaylor\nBradyn\nBrennen\nBrett\nChris\nDante\nDemarius\nDeshawn\nDevonte\nElliot\nEmerson\nErick\nGiovanni\nHector\nJaidyn\nJaime\nJakob\nJakobi\nJavon\nJorden\nJordon\nKamden\nKavion\nKody\nLamar\nMarkell\nMarquis\nNigel\nOrlando\nPablo\nQuincy\nRoger\nRylee\nSimon\nTylan\nWilson\nZachariah\nBraeden\nCarmelo\nCase\nClark\nCorbin\nDeangelo\nDeshaun\nDewayne\nDominick\nDontavious\nElliott\nErnest\nGael\nGarrison\nGaven\nJadyn\nJakari\nJamarius\nJamichael\nJamison\nJaquan\nJase\nJasper\nKenyon\nKeon\nKeshawn\nKhalil\nLadarius\nLeo\nMartin\nMateo\nMayson\nMekhi\nNelson\nQuentin\nReece\nReed\nSemaj\nSidney\nSlade\nTommy\nTravon\nTyrese\nXzavier\nZyon\nAmarion\nAydan\nBarrett\nCannon\nChevy\nCordell\nDarrell\nDavion\nDaylen\nDean\nDereon\nEddie\nElisha\nHarris\nHeath\nIssac\nJabari\nJaeden\nJagger\nJamie\nJoe\nJonas\nKeagan\nKeenan\nKendarius\nKhristian\nKnox\nKylen\nLance\nLayton\nLewis\nMajor\nMarlon\nPierce\nPorter\nPresley\nRodrigo\nRonnie\nRowan\nShannon\nSolomon\nTavion\nTrace\nTrevon\nWinston\nXavion\nAce\nAli\nAmare\nArmando\nAydin\nBailey\nBaker\nBo\nBrayan\nBrayton\nBrennon\nBrent\nBroderick\nBronson\nCanaan\nCarl\nCordae\nDane\nDarryl\nDavin\nDeacon\nDeanthony\nDevontae\nDexter\nDominique\nDwight\nDylon\nEan\nElmer\nEmery\nEugene\nHagen\nHampton\nJamel\nJaquavious\nJaydin\nJohan\nJonathon\nJorge\nJulio\nJustus\nKadyn\nKamren\nKarsen\nKoby\nKolby\nKollin\nKolten\nKorbin\nLathan\nLayne\nLeeland\nLondon\nLorenzo\nLucian\nMack\nMarco\nMarques\nMarquez\nMathew\nMiller\nMorgan\nNoe\nOmarion\nPierre\nQuintavious\nRaul\nRomeo\nRoy\nRyker\nShaun\nSimeon\nSutton\nSylas\nTavaris\nTaylen\nTerence\nTreyvon\nTripp\nUriah\nZaylen\nAbel\nAlec\nAlton\nAlvaro\nAlvin\nAmauri\nAntoine\nAntwan\nArcher\nAron\nBarry\nBlaise\nBlayne\nBradon\nBraylan\nBraylin\nBritton\nBryton\nCale\nCamren\nCleveland\nClinton\nCourtland\nCrimson\nCruz\nDajuan\nDandre\nDarrius\nDashawn\nDax\nDaxton\nDaylin\nDaylon\nDeon\nDeven\nDrayden\nEarnest\nEliseo\nEmilio\nEnrique\nFabian\nFinn\nFoster\nGerald\nGrey\nGunnar\nGustavo\nHagan\nHoward\nIrvin\nIsaias\nJacobi\nJacolby\nJacory\nJairo\nJakoby\nJamarkus\nJaquez\nJarell\nJashawn\nJasiah\nJaveon\nJavian\nJaxen\nJerome\nJerrell\nJustice\nKadin\nKai\nKale\nKamdyn\nKamryn\nKane\nKeelan\nKeilan\nKeldrick\nKennedy\nKentrell\nKerry\nLatrell\nLeslie\nMaddux\nMarion\nMarkel\nMarquise\nMartez\nMarvin\nMelvin\nMorris\nNash\nNoel\nNolen\nPrince\nQuintin\nRashaud\nRashaun\nRonaldo\nRoss\nRoyce\nSamson\nSaul\nShamar\nStone\nTalan\nTalon\nTerrence\nToby\nTomas\nTravion\nTrevion\nTurner\nTyree\nUrijah\nWill\nYahir\nYusuf\nZackery\nZaden\nWilliam\nJames\nJohn\nJacob\nJayden\nJackson\nNoah\nElijah\nChristopher\nEthan\nMichael\nMason\nAiden\nSamuel\nBrayden\nJoshua\nLandon\nDavid\nCaleb\nAndrew\nJoseph\nChristian\nJeremiah\nAlexander\nJordan\nLogan\nRobert\nGabriel\nDaniel\nTyler\nCharles\nMatthew\nCameron\nHunter\nColton\nLuke\nThomas\nBenjamin\nDylan\nJonathan\nAustin\nNicholas\nBrandon\nCarson\nCarter\nEvan\nAnthony\nBraxton\nBrody\nCooper\nJustin\nRyan\nBryson\nHayden\nTristan\nBentley\nEli\nKaleb\nParker\nLucas\nLevi\nIsaiah\nNathan\nAyden\nGavin\nGrayson\nCaden\nRiley\nIsaac\nTimothy\nWyatt\nKaden\nJaxon\nConnor\nAshton\nPreston\nHenry\nAaron\nLiam\nJason\nJaden\nMicah\nSawyer\nZachary\nCayden\nEaston\nOwen\nJack\nHudson\nEric\nJosiah\nKevin\nXavier\nJeremy\nJose\nKayden\nMarcus\nBraylon\nKaiden\nAntonio\nChase\nKenneth\nPeyton\nAdrian\nJaylen\nCody\nIan\nAlex\nNathaniel\nSteven\nAidan\nCollin\nPatrick\nTrenton\nAngel\nMalachi\nBraylen\nBryan\nCamden\nDalton\nJonah\nWesley\nCarlos\nDevin\nConner\nJesse\nRichard\nAdam\nEdward\nKameron\nOliver\nColin\nJace\nBraden\nGarrett\nCole\nDawson\nJuan\nSebastian\nTanner\nSean\nSeth\nTucker\nWalker\nAsher\nBlake\nBrian\nBryce\nCaiden\nGeorge\nHarrison\nKyle\nJaiden\nJake\nRylan\nSkyler\nStephen\nAmari\nGreyson\nNolan\nBryant\nJamarion\nJaxson\nKingston\nMaddox\nRyder\nBrodie\nJulian\nGregory\nColt\nLuis\nPhillip\nWeston\nMax\nMiguel\nBradley\nGrant\nTravis\nTrevor\nBrantley\nColby\nDerrick\nPaul\nBrady\nBraydon\nClayton\nDakota\nZion\nGriffin\nJohnathan\nTyson\nDavis\nJeffrey\nLanden\nSilas\nChance\nDrake\nGraham\nMiles\nAvery\nBrooks\nCorey\nCristian\nJesus\nJude\nKendall\nKyler\nLeland\nRonald\nAlan\nCalvin\nCohen\nCullen\nEmanuel\nGage\nJoel\nKason\nKendrick\nMalik\nAlejandro\nAxel\nColeman\nCurtis\nDamien\nDerek\nJacoby\nJamari\nRoman\nTerry\nTristen\nBrennan\nDiego\nDominic\nEduardo\nJosue\nKamari\nMark\nShawn\nTroy\nCade\nCason\nCorbin\nLukas\nMicheal\nOmar\nPayton\nReginald\nVictor\nVincent\nBrock\nGrady\nHouston\nJeffery\nKamden\nPaxton\nTaylor\nTy\nWalter\nZane\nAden\nBennett\nBrayan\nDamian\nDonovan\nEmmett\nFrank\nGary\nJamal\nJared\nJasper\nKade\nKing\nLarry\nNehemiah\nReid\nWaylon\nBobby\nChandler\nCharlie\nColten\nDallas\nEverett\nFernando\nIvan\nJakobe\nJamarcus\nJohnny\nKeegan\nMario\nOscar\nTrent\nZander\nAnderson\nBilly\nBraiden\nDemetrius\nDustin\nEdwin\nEmmanuel\nEzra\nFisher\nGunner\nHector\nJakob\nJudah\nLane\nMaxwell\nMyles\nNicolas\nRandy\nRonnie\nSantiago\nSpencer\nTitus\nTrey\nWarren\nXander\nAmare\nBeau\nBrycen\nCamron\nCash\nDamarion\nDanny\nDeshawn\nErick\nHolden\nIsrael\nJameson\nJavion\nJermaine\nJerry\nJimmy\nJonathon\nKarson\nKristian\nMaximus\nMitchell\nQuinton\nRoderick\nRussell\nWillie\nAllen\nAndre\nAubrey\nBrendan\nCannon\nDillon\nDonald\nFrancisco\nFranklin\nGiovanni\nJaydon\nJerome\nJett\nJordyn\nKellan\nKolton\nKristopher\nKylan\nLondon\nMaurice\nPedro\nRandall\nRodney\nRowan\nTriston\nZackary\nZayden\nCedric\nCesar\nCourtney\nDarius\nDavion\nDemarion\nEzekiel\nJaquan\nJase\nJaylin\nJoe\nJon\nJudson\nKarter\nKeith\nLance\nLandyn\nLawson\nLincoln\nMartin\nNickolas\nPhoenix\nRashad\nReece\nRyland\nTony\nTristian\nAhmad\nAlexis\nAlijah\nCasey\nClark\nCruz\nDemarcus\nDewayne\nErik\nJamison\nJax\nJayce\nJayson\nJessie\nKamarion\nKarsen\nKeaton\nKolby\nLeonardo\nMarvin\nMiller\nMorgan\nOrlando\nPeter\nPrince\nReese\nRicky\nTalon\nTerrell\nBarrett\nBraeden\nBraylin\nBrennen\nBrett\nChad\nClay\nCrimson\nDax\nDeandre\nElias\nIsiah\nJacobi\nJacorey\nJavier\nJaylan\nJorge\nJustice\nKamron\nKelvin\nKendarius\nKobe\nLewis\nMajor\nMekhi\nReed\nRylee\nShane\nSkylar\nTate\nTripp\nTyree\nZackery\nZaiden\nZechariah\nBranson\nBriley\nByron\nCasen\nCornelius\nDante\nDarryl\nDean\nDesmond\nDominick\nElliott\nFredrick\nGerald\nHayes\nJacori\nJagger\nJay\nJensen\nJordon\nJustus\nKelton\nKemarion\nKnox\nLayton\nMarshall\nMartez\nOmari\nOmarion\nPierce\nQuinn\nRemington\nRhett\nRoberto\nShaun\nTerrence\nTommy\nWilson\nZachariah\nAaden\nAbraham\nAbram\nAidyn\nAlbert\nBaylor\nBrenden\nBritton\nCamren\nCanaan\nChanning\nDarrell\nDaylen\nDexter\nDouglas\nDrew\nEddie\nElisha\nEmmitt\nEmory\nFrederick\nGarrison\nIssac\nJadyn\nJalen\nJamir\nJarvis\nJaylon\nJohnnie\nJonas\nKane\nKasen\nKellen\nKeshawn\nKhamari\nKonner\nLathan\nLee\nLeon\nMack\nMalcolm\nMarquez\nMaverick\nMelvin\nMemphis\nRaymond\nRoger\nRoy\nScott\nSemaj\nSergio\nTristin\nUriah\nWade\nZamarion\nZavier\nAdan\nAlec\nAndres\nAndy\nAntony\nAntwon\nArmani\nArthur\nAsa\nBoston\nBraelyn\nBrendon\nBrennon\nBriar\nBrice\nCase\nCayson\nChevy\nCory\nDamon\nDarion\nDarrius\nDayton\nDeangelo\nDennis\nDevon\nDorian\nEdgar\nEllis\nFelipe\nFischer\nGavyn\nGerardo\nGunnar\nHaiden\nIker\nJadon\nJakari\nJamar\nJaveon\nJaylyn\nJayveon\nJulius\nKamryn\nKentrell\nKody\nKonnor\nKyron\nLadarius\nLeo\nLeonel\nLouis\nLucian\nMadden\nMalaki\nMarc\nMarcos\nMarlon\nMathew\nMessiah\nMorris\nNikolas\nPablo\nPhilip\nPorter\nQuentin\nRayden\nRiver\nRodriquez\nRuben\nShepherd\nSolomon\nSutton\nTatum\nTrace\nTreyvon\nTurner\nZaden\nAlberto\nAlexzander\nAntoine\nArmando\nAugust\nBailey\nBeckett\nBentlee\nBraydin\nBrent\nBrison\nCadyn\nCale\nCallen\nCarl\nCarlton\nCollins\nCordell\nCrawford\nDale\nDane\nDarren\nDashawn\nDavin\nDaxton\nDeclan\nFinn\nGauge\nGideon\nGiovani\nHeath\nJacorian\nJaeden\nJakobi\nJamauri\nJaron\nJavon\nJaxton\nJayvion\nJeremias\nJohnathon\nJulio\nKadyn\nKai\nKendal\nKhalil\nKollin\nKolt\nKylen\nLawrence\nLebron\nLorenzo\nMakhi\nManuel\nMarkel\nMarkell\nMarquis\nNasir\nRivers\nRomeo\nRyker\nStone\nTerrance\nTheodore\nTremaine\nTrevon\nTylan\nTyrell\nTyrese\nWill\nXzavier\nZachery\nZephaniah\nAllan\nAmir\nAydin\nBently\nBlayden\nBo\nBradyn\nBranden\nBrannon\nBraxten\nBryton\nCampbell\nCarmelo\nCaysen\nCecil\nCedrick\nClifford\nCoby\nCortez\nCyrus\nDarnell\nDeacon\nDemarco\nDeontae\nDeshaun\nDevan\nDwayne\nDwight\nEfren\nEliseo\nElvis\nEmerson\nEugene\nFabian\nFinley\nGibson\nGordon\nHarley\nHarold\nHarvey\nIsmael\nJaedon\nJamario\nJamarius\nJamie\nJaquavious\nJeramiah\nJerrod\nJoey\nKamauri\nKareem\nKarl\nKarsten\nKasey\nKayleb\nKeon\nKerry\nKipton\nKiptyn\nKoby\nKoen\nKohen\nLamar\nLandin\nLangston\nLegend\nLennon\nLonnie\nMarquel\nMasen\nMateo\nMilton\nMoses\nNelson\nNolen\nOdin\nPatton\nQuincy\nRamon\nRaylan\nRicardo\nRidge\nShannon\nSimon\nTavaris\nTayshaun\nTerence\nTobias\nTravon\nTyquan\nTyshawn\nUlises\nValentin\nVan\nWayne\nWestin\nWinston\nYahir\nZaylen\nZaylon\nZayne\nZyon\nWilliam\nJames\nMason\nJacob\nJohn\nJayden\nNoah\nElijah\nJackson\nAiden\nJoshua\nChristopher\nEthan\nBrayden\nMichael\nSamuel\nCaleb\nLandon\nJeremiah\nCameron\nBentley\nDavid\nJoseph\nAndrew\nChristian\nBenjamin\nDaniel\nCharles\nLogan\nAlexander\nCarter\nHunter\nLevi\nRobert\nAyden\nGabriel\nLuke\nCarson\nAnthony\nJordan\nMatthew\nThomas\nJonathan\nColton\nTyler\nBryson\nBraxton\nConnor\nGavin\nLiam\nCooper\nEli\nAustin\nDylan\nGrayson\nBrandon\nBrody\nJaxon\nJustin\nTristan\nAshton\nEaston\nNathan\nHayden\nKaleb\nWyatt\nHudson\nRyan\nEvan\nIsaac\nLucas\nParker\nNicholas\nKayden\nIsaiah\nJack\nOwen\nPreston\nZachary\nAaron\nHenry\nJaden\nKaden\nBrantley\nRylan\nCaden\nChase\nKevin\nCayden\nTimothy\nMicah\nJason\nIan\nTrenton\nBraylon\nTucker\nBraylen\nJosiah\nKaiden\nAsher\nCamden\nXavier\nSawyer\nJaxson\nRyder\nJonah\nMalachi\nNathaniel\nAlex\nKameron\nAidan\nCollin\nEric\nPeyton\nJace\nKyle\nBryant\nConner\nJaylen\nMaddox\nRiley\nBrian\nJuan\nMarcus\nBlake\nJose\nWesley\nAntonio\nKenneth\nTanner\nAdrian\nHarrison\nPatrick\nBradley\nDawson\nRichard\nCody\nTravis\nJesse\nJude\nLuis\nCaiden\nKingston\nOliver\nBryce\nColt\nDakota\nGarrett\nGeorge\nJamarion\nSteven\nWeston\nBryan\nJeremy\nAdam\nBrooks\nEdward\nGraham\nSeth\nStephen\nColin\nDalton\nNolan\nZayden\nCarlos\nCorey\nSean\nTyson\nDerrick\nJaiden\nJoel\nSilas\nAxel\nBennett\nCason\nChance\nGrant\nJayce\nJesus\nJulian\nKarson\nPaul\nTaylor\nGunner\nJeffrey\nLane\nSebastian\nTristen\nBrady\nChandler\nCharlie\nCorbin\nDevin\nKamari\nMaxwell\nRoman\nTitus\nZander\nBraden\nBrodie\nColby\nCole\nDominic\nElias\nGrady\nGreyson\nTroy\nVincent\nClayton\nDiego\nHayes\nJamari\nJohnathan\nMax\nMyles\nTrey\nVictor\nWalter\nAngel\nDallas\nDrake\nElliot\nGriffin\nKason\nMark\nAlan\nAnderson\nAvery\nGregory\nJudson\nMalik\nMario\nPhillip\nTrevor\nZane\nCalvin\nDemetrius\nAmare\nGage\nKendall\nLeonardo\nWalker\nWillie\nXander\nAmari\nBrycen\nCristian\nEmmett\nJerry\nKyler\nLanden\nLawson\nOscar\nZion\nAden\nBrennan\nJake\nJasper\nJon\nKamden\nKing\nMiles\nPaxton\nRyland\nAlejandro\nBarrett\nCohen\nDavis\nEdwin\nEmanuel\nEmmanuel\nEverett\nEzekiel\nIsrael\nJacoby\nLukas\nMiguel\nPayton\nReid\nTripp\nAbel\nAllen\nAndre\nCade\nCullen\nErik\nJorden\nKade\nKendrick\nLeland\nRonnie\nShawn\nWaylon\nBraydon\nBraylin\nCamron\nCortez\nCourtney\nDamian\nDemarcus\nEduardo\nErick\nJameson\nJoe\nKeegan\nKylan\nPhilip\nRyker\nAbraham\nDanny\nDustin\nEmerson\nFrederick\nGiovanni\nJohnny\nJordyn\nKelvin\nKobe\nMaximus\nRashad\nSantiago\nTy\nWarren\nAlexis\nAmir\nDeandre\nDevon\nEllis\nIvan\nJakob\nJamarcus\nJared\nJudah\nJustice\nKamron\nKristian\nLarry\nMaurice\nOmar\nReginald\nRonald\nSkyler\nTerrance\nTony\nTriston\nAlijah\nBrock\nCasen\nCory\nCurtis\nDamien\nDonald\nJacorey\nKolton\nLandyn\nLincoln\nLondon\nMarshall\nNicolas\nPeter\nPorter\nRandy\nReed\nRemington\nRiver\nTristian\nAndy\nAsa\nBilly\nBobby\nBranson\nBrayan\nBrayson\nBrentley\nColten\nCornelius\nDeclan\nDillon\nEzra\nFernando\nFrank\nGideon\nHarper\nHouston\nIssac\nJadarius\nJadon\nJakobe\nJeffery\nJosue\nKeaton\nKeith\nKellen\nKelton\nKnox\nKristopher\nMarquis\nMiller\nMitchell\nReece\nRicardo\nRoderick\nRodney\nRussell\nScott\nShane\nSkylar\nSpencer\nTerrell\nTerry\nTommy\nTristin\nWilson\nAaden\nBentlee\nBrendan\nBrenton\nCase\nCash\nCedric\nDemarion\nDeon\nDesmond\nDouglas\nElliott\nFisher\nGary\nHolden\nIzaiah\nJamar\nJavier\nJavion\nJax\nJayson\nJimmy\nKai\nKane\nKarter\nKellan\nLeon\nManuel\nMarvin\nMicheal\nRoger\nZackary\nAlec\nBaylor\nBrett\nByron\nCamdyn\nChevy\nColeman\nDamarion\nDarrell\nDennis\nDerek\nDexter\nDonovan\nDrew\nEdgar\nEmory\nFredrick\nHector\nJalen\nJamichael\nJaylin\nJaylon\nJonathon\nKasen\nKayson\nKeon\nLamar\nLathan\nLawrence\nLeo\nMekhi\nMelvin\nQuinton\nRaymond\nRowan\nSimon\nTrace\nTrent\nTrevon\nZachariah\nZaiden\nZamarion\nAhmad\nAidyn\nAllan\nAlvin\nAmarion\nAndres\nArthur\nAydan\nAydin\nBently\nBenton\nBraeden\nBrent\nCannon\nCarl\nCesar\nDarius\nDarren\nDeshawn\nDillan\nDorian\nFabian\nHarley\nJamison\nJase\nJerimiah\nJermaine\nJett\nKamarion\nKhalil\nLance\nMadden\nMarlon\nMartin\nNehemiah\nOmari\nRandall\nRaylan\nReese\nRoy\nRuben\nSemaj\nSidney\nSolomon\nStanley\nTate\nTerrence\nTyrone\nAayden\nAce\nAdonis\nAshtyn\nBeau\nBeckett\nBowen\nBralyn\nBranden\nBrenden\nBruce\nCampbell\nCanaan\nCasey\nCayson\nChad\nChanning\nCruz\nDavion\nDean\nDestin\nDewayne\nEmiliano\nErnest\nGunnar\nIsiah\nJaxton\nJayvion\nJessie\nJustus\nKaeden\nKamryn\nKarsen\nKeelan\nKentrell\nKolby\nKonner\nKyron\nKyson\nLandry\nLennox\nLewis\nLucian\nMateo\nMemphis\nMessiah\nMoises\nNash\nNigel\nQuincy\nRay\nRhys\nRomeo\nRoss\nRylee\nShepherd\nTevin\nThaddeus\nTurner\nTylan\nTyrese\nWade\nAbram\nAdan\nAldo\nAlonzo\nAlton\nArmando\nBailey\nBraiden\nBrannon\nBrennen\nBrently\nBriley\nBritton\nCamren\nChace\nClifford\nClinton\nDane\nDayton\nDeangelo\nDeontae\nDominick\nEddie\nFinley\nForrest\nFoster\nFrancisco\nGavyn\nGerald\nGerardo\nHoward\nJacobi\nJagger\nJakari\nJavon\nJaxston\nJaydan\nJohan\nJorge\nJulius\nKaidyn\nKaydon\nKendarius\nKeondre\nKipton\nKiptyn\nKoby\nKylen\nLayne\nLennon\nMajor\nMalakai\nMalcolm\nMarcel\nMarkel\nMarkell\nNickolas\nOrlando\nOsvaldo\nPedro\nPierce\nQuentin\nRafael\nRhett\nRicky\nRowen\nSam\nSaul\nShaun\nShelton\nSullivan\nTavaris\nTheodore\nToby\nTysen\nUriah\nUriel\nVernon\nZackery\nZayne\nZechariah\nAlfredo\nAntwan\nAubrey\nBradford\nBraelyn\nBrantlee\nBrendon\nBrogan\nBronner\nBrylan\nBrylon\nClarence\nCoen\nCordell\nCrimson\nDangelo\nDarnell\nDarryl\nDaryl\nDashawn\nDaylan\nDaylin\nDeanthony\nDedrick\nDemario\nDereon\nElisha\nEmmitt\nEnrique\nEsteban\nEugene\nEvin\nGaige\nGarrison\nGrayton\nGrey\nHampton\nHank\nHaven\nHeath\nHollis\nHugo\nJabari\nJacari\nJacorian\nJaidon\nJaidyn\nJamir\nJaquan\nJaquarius\nJaveon\nJaxen\nJay\nJaydon\nJunior\nKaison\nKamdyn\nKasey\nKeldrick\nKeyshawn\nKieran\nKody\nKolten\nKristofer\nLamarcus\nLayton\nLee\nLeonel\nLuca\nMacon\nMarco\nMasen\nMauricio\nMontez\nMorgan\nNelson\nPablo\nPresley\nPrinceton\nQuinn\nRex\nRico\nRidge\nRodrigo\nRonan\nRyley\nSergio\nSylas\nTreveon\nTreyvon\nTylen\nUlises\nUrijah\nWheeler\nWill\nXzavier\nYahir\nZavier\nZaylen\nZaylon\nZyan\nWilliam\nJames\nMason\nJohn\nJacob\nElijah\nAiden\nMichael\nJayden\nNoah\nJackson\nEthan\nSamuel\nChristopher\nBrayden\nJoshua\nCaleb\nLandon\nMatthew\nAndrew\nCarter\nJoseph\nDavid\nCharles\nAyden\nHunter\nBentley\nColton\nBryson\nGabriel\nJaxon\nLiam\nEli\nBenjamin\nJeremiah\nBrantley\nDaniel\nLogan\nLevi\nCameron\nLuke\nChristian\nJordan\nTyler\nRobert\nCarson\nAlexander\nJonathan\nGrayson\nThomas\nIsaiah\nCooper\nBraxton\nLucas\nAustin\nGavin\nAnthony\nNathan\nKayden\nDylan\nEaston\nConnor\nBrandon\nParker\nRyan\nHenry\nJustin\nWyatt\nJace\nOwen\nIsaac\nMicah\nHudson\nTristan\nAaron\nKaleb\nBrody\nNicholas\nTimothy\nAshton\nEvan\nZachary\nJason\nHayden\nKaden\nKingston\nCaden\nChase\nJosiah\nSawyer\nBraylon\nJack\nJaxson\nPreston\nZayden\nRichard\nRylan\nHarrison\nBraylen\nTucker\nXavier\nBlake\nJonah\nKaiden\nRyder\nCayden\nJaden\nOliver\nAlex\nIan\nTanner\nAntonio\nPeyton\nMalachi\nNathaniel\nJaylen\nKevin\nWeston\nAsher\nMarcus\nBryant\nJeremy\nWesley\nTrenton\nAdrian\nEric\nNolan\nRiley\nSilas\nAdam\nAngel\nDawson\nKameron\nKenneth\nPatrick\nConner\nSteven\nBradley\nCamden\nMaddox\nCole\nCaiden\nCody\nCollin\nDalton\nGreyson\nZion\nBryce\nKarson\nTravis\nColin\nGeorge\nJamari\nJose\nJude\nAidan\nGarrett\nSebastian\nWalker\nJayce\nJulian\nKyle\nBrady\nBrian\nClayton\nJesse\nKason\nStephen\nJaiden\nJake\nJuan\nSeth\nCarlos\nDakota\nDavis\nGraham\nMark\nSkyler\nTaylor\nTyson\nBarrett\nCason\nColt\nDallas\nDevin\nEdward\nLanden\nMiguel\nBryan\nElias\nGunner\nJohnathan\nLane\nMax\nBennett\nBrodie\nDominic\nJamarion\nMiles\nAlan\nBrycen\nColby\nGriffin\nJase\nJasper\nJoel\nJohnny\nKarter\nMyles\nBraden\nCalvin\nCorey\nDamian\nKing\nKyler\nPaxton\nRoman\nTrevor\nVictor\nAnderson\nDeclan\nEmmett\nEzekiel\nGregory\nJeffrey\nJesus\nAmari\nAvery\nBrantlee\nChandler\nCorbin\nCurtis\nDerrick\nGage\nLincoln\nLuis\nPhillip\nTrent\nWalter\nWillie\nAndre\nBrooks\nCharlie\nCohen\nDonovan\nJameson\nMaxwell\nTy\nAxel\nBentlee\nChance\nGrady\nJerry\nKeith\nLarry\nSean\nTroy\nVincent\nWaylon\nZander\nBrennan\nCase\nDamien\nDonald\nEmmanuel\nGrant\nKai\nKeaton\nMessiah\nRodney\nTerry\nTitus\nAbel\nBraydon\nBrentley\nCade\nCamron\nDemetrius\nDrake\nEdwin\nElliott\nKamden\nKolton\nLawson\nLeland\nLukas\nMalik\nPhoenix\nRiver\nSpencer\nXander\nBeau\nEllis\nEzra\nHolden\nJeffery\nJudah\nKylen\nMario\nMarshall\nMitchell\nRhett\nRoderick\nShawn\nZaiden\nAden\nCash\nDanny\nDerek\nGiovanni\nIvan\nJacoby\nJavier\nKade\nKylan\nMajor\nMaximus\nRaylan\nRyker\nWilson\nZane\nBrayan\nCollier\nDante\nDesmond\nEverett\nIker\nJudson\nKellen\nKendall\nKnox\nLandyn\nNehemiah\nOscar\nPaul\nRandy\nReid\nRonald\nRowan\nSkylar\nTrey\nTristen\nZackary\nBraiden\nBrendan\nDeandre\nDorian\nGael\nHarper\nJamarcus\nJaylon\nJorge\nJustice\nKamari\nKayson\nKendrick\nReginald\nTerrell\nTony\nTylan\nAllen\nAmir\nCannon\nCedric\nCornelius\nCory\nCullen\nDexter\nDillon\nDustin\nEmerson\nHayes\nJared\nJax\nJaxton\nJon\nJorden\nKeegan\nMartin\nRemington\nRussell\nTerrance\nBlaine\nBranson\nBrayson\nCarmelo\nCortez\nCristian\nDarius\nDouglas\nElliot\nFisher\nFrank\nGideon\nHampton\nJagger\nJamison\nJay\nJermaine\nJohan\nKasen\nKelvin\nKristian\nLeonardo\nMaurice\nPayton\nPrinceton\nQuinton\nReed\nSantiago\nWarren\nZachariah\nAlijah\nAtticus\nAubrey\nBraeden\nBraelyn\nBraylin\nBrock\nChanning\nClay\nColten\nDayton\nDevon\nDiego\nErick\nFinn\nJacorey\nJakobe\nJavion\nJimmy\nJulius\nKamarion\nKellan\nKentrell\nKobe\nKonner\nKyson\nMalcolm\nMekhi\nOmari\nPeter\nRandall\nRoger\nRyland\nSam\nShane\nTrevon\nTristian\nAmos\nAndy\nBilly\nBrent\nByron\nCasen\nColeman\nCrimson\nEmanuel\nFrederick\nHector\nIsrael\nJalen\nJaydon\nJaylin\nJensen\nJonathon\nJosue\nKamryn\nKendarius\nKhalil\nKristopher\nLeo\nLyric\nMateo\nNicolas\nPedro\nPrince\nRay\nRaymond\nSergio\nTatum\nTerrence\nTommy\nWill\nAbram\nAri\nBeckett\nBently\nCasey\nCoby\nCourtney\nCruz\nDeangelo\nDennis\nDrew\nEduardo\nEmery\nIssac\nJabari\nJamal\nJavon\nJoe\nJonas\nKamron\nKolby\nKorbin\nLaken\nLawrence\nLee\nLondon\nMalaki\nNeymar\nPierce\nPorter\nRicardo\nTobias\nTriston\nWinston\nAaden\nAbraham\nAidyn\nAlexis\nAmare\nArmando\nArthur\nBaylor\nBobby\nBrett\nCale\nCanaan\nCayson\nClarence\nDamon\nDarrell\nDarryl\nDax\nDaxton\nDaylen\nDean\nDomingo\nErik\nFernando\nFinley\nFrancisco\nGary\nJakayden\nJakob\nJayson\nJett\nJordon\nJordyn\nKaidyn\nLangston\nLayton\nLorenzo\nLouis\nMakhi\nMarquez\nMiller\nNash\nPrice\nRaylon\nReese\nRicky\nRowen\nScott\nTalon\nTripp\nUriah\nZaylen\nAayden\nAlden\nAlejandro\nAlfred\nAli\nAlonzo\nAndres\nAngelo\nAsa\nAugust\nAustyn\nBlaze\nBrenton\nBruce\nBrylan\nBrylen\nCallan\nCarl\nClinton\nCrawford\nDerick\nDewayne\nDominick\nEdgar\nElisha\nEmory\nFletcher\nFredrick\nJabraylen\nJaidyn\nJakari\nJakhari\nJakori\nJamar\nJamie\nJarvis\nJaxen\nJaylan\nJerome\nKadin\nKase\nKiyan\nKody\nKole\nKonnor\nKyran\nKyree\nKyrie\nLadarius\nLayne\nLewis\nMarquis\nMarvin\nMayson\nMemphis\nMicheal\nNigel\nOmar\nPablo\nPascual\nQuentin\nReece\nRex\nRogelio\nRoy\nSimon\nSolomon\nSullivan\nSylas\nTerence\nTheodore\nTodd\nTrace\nTrayvon\nTreyvon\nTristin\nWade\nZechariah\nAce\nAlbert\nAlton\nAmarion\nAntwan\nBlakely\nBradford\nBrenden\nBrently\nCamdyn\nCampbell\nCamryn\nCanon\nCaysen\nCedrick\nChevy\nClifford\nCollins\nColson\nDashawn\nDavion\nDavon\nDeanthony\nDemarco\nDemarion\nDemetri\nDominik\nDominique\nDraven\nDyson\nEan\nEason\nEden\nEdison\nEliseo\nErin\nGarrison\nGrey\nGunnar\nGustavo\nHarley\nHouston\nHoward\nIzaiah\nIzayah\nJadon\nJairo\nJaquan\nJarrett\nJefferson\nJeramiah\nJeremias\nJeremih\nJessie\nJoey\nJohnnie\nJourney\nJulio\nJunior\nJustus\nKaison\nKeelan\nKeller\nKenny\nKeylan\nKeyon\nKobi\nLamarion\nLance\nLeonard\nLonnie\nMarlon\nMasyn\nMoses\nOrlando\nPhilip\nQuinn\nRafael\nRashawn\nRickey\nRodrigo\nRonnie\nRylee\nSage\nShannon\nShepard\nSimeon\nSterling\nTate\nThompson\nTurner\nTyrese\nUlises\nWestin\nZayne\nZyion\nWilliam\nMason\nJames\nJohn\nElijah\nJackson\nNoah\nAiden\nJacob\nChristopher\nJoshua\nMichael\nJayden\nSamuel\nCarter\nEthan\nDavid\nLiam\nCaleb\nJaxon\nBrayden\nCarson\nHunter\nRobert\nAndrew\nChristian\nLandon\nMatthew\nEli\nJeremiah\nLevi\nJoseph\nCharles\nAyden\nEaston\nAlexander\nThomas\nBentley\nGrayson\nLuke\nBrantley\nIsaiah\nBenjamin\nColton\nLogan\nGabriel\nJase\nCameron\nBryson\nCooper\nDaniel\nLucas\nTyler\nParker\nJace\nKaiden\nConnor\nJonathan\nJordan\nBraxton\nAnthony\nAustin\nIsaac\nKayden\nWyatt\nOwen\nDylan\nJustin\nHudson\nSawyer\nJosiah\nAshton\nKaleb\nNicholas\nGavin\nHenry\nJason\nNathan\nCamden\nBrody\nBrandon\nCayden\nEvan\nMicah\nChase\nRyan\nJack\nJaxson\nTimothy\nTristan\nZachary\nTucker\nJayceon\nOliver\nKingston\nBraylen\nPreston\nSilas\nAaron\nAsher\nKevin\nKenneth\nCaden\nIan\nConner\nKaden\nKing\nRyder\nWeston\nNathaniel\nMarcus\nNolan\nRylan\nDalton\nEric\nBarrett\nKameron\nRiley\nBradley\nJulian\nAntonio\nHarrison\nJayce\nTanner\nWesley\nBryce\nKarson\nXavier\nJaden\nAdam\nBlake\nJonah\nSebastian\nZayden\nGeorge\nHayden\nStephen\nBraylon\nGunner\nMaddox\nTrenton\nCollin\nDominic\nEzra\nJaiden\nJude\nMalachi\nAdrian\nClayton\nElias\nGage\nAlex\nDallas\nKarter\nPatrick\nRichard\nSteven\nWalker\nAvery\nCarlos\nJaylen\nJose\nJuan\nBrooks\nGraham\nJeremy\nBrian\nCaiden\nJasper\nMaxwell\nMiles\nAmari\nBrycen\nGrant\nGreyson\nKason\nMark\nPeyton\nGriffin\nJesse\nBryant\nChance\nCole\nWaylon\nCorbin\nEdward\nLincoln\nZion\nColin\nDamien\nDevin\nKyle\nMax\nRemington\nAlan\nBrady\nKyler\nMiguel\nRoman\nTrevor\nZander\nAbel\nAidan\nAxel\nChandler\nDavis\nGregory\nKendrick\nRhett\nRyker\nZane\nAngel\nCason\nCody\nDawson\nDerrick\nJoel\nMalik\nPaxton\nTyson\nEmmett\nEverett\nJesus\nJohnny\nKeegan\nMajor\nRiver\nXander\nCase\nJameson\nMyles\nRaylan\nBennett\nCalvin\nCharlie\nJohnathan\nKamden\nKasen\nLawson\nPhillip\nVictor\nZaiden\nBryan\nCohen\nDamian\nDemetrius\nEdwin\nEzekiel\nJamari\nJamarion\nKayson\nReid\nWalter\nAden\nGarrett\nKash\nLane\nMessiah\nRaymond\nSkylar\nSkyler\nTitus\nTroy\nVincent\nBraydon\nEmmanuel\nFrank\nGael\nHolden\nIsrael\nIvan\nJeffrey\nKnox\nLeo\nPorter\nRussell\nRyland\nSeth\nAnderson\nBeau\nCade\nCash\nJudah\nKai\nMarshall\nTravis\nTripp\nAllen\nAmir\nAndre\nCorey\nDeclan\nDonald\nDrake\nEllis\nFranklin\nLanden\nLeland\nLuis\nPaul\nRonald\nTerrance\nTrey\nBentlee\nCurtis\nDeacon\nDerek\nDiego\nDillon\nErik\nJax\nJay\nJon\nJosue\nKolton\nMicheal\nRicardo\nWarren\nZechariah\nAsa\nBraden\nBrantlee\nBrentley\nBrodie\nCannon\nElliott\nGrady\nHarper\nJavion\nJerry\nJett\nJudson\nMaurice\nMemphis\nTaylor\nTerry\nTristen\nAbraham\nCamron\nColby\nCornelius\nDakota\nDarius\nElliot\nFinn\nGary\nGiovanni\nJake\nJakobe\nJaylon\nJimmy\nKamari\nKyson\nLeonardo\nMario\nPrinceton\nRandy\nSean\nTatum\nTobias\nTrent\nWillie\nArcher\nBrendan\nCasen\nCasey\nColeman\nDrew\nDustin\nIker\nIssac\nJamarcus\nJeffery\nJulius\nJustice\nKade\nLee\nLeon\nLorenzo\nNicolas\nPeter\nReginald\nRowan\nShawn\nSpencer\nTate\nTheodore\nAbram\nAndres\nBaylor\nBo\nBranson\nBrock\nColt\nCory\nDonovan\nEnrique\nFernando\nJakob\nJamison\nKeith\nKylan\nMack\nMaverick\nMaximus\nNehemiah\nOscar\nRandall\nReed\nRomeo\nSergio\nSimon\nTrace\nAlejandro\nAlijah\nArthur\nByron\nCayson\nChanning\nCortez\nCristian\nDanny\nDavion\nDennis\nDexter\nDominick\nEduardo\nElisha\nForrest\nFrancisco\nGerald\nJacoby\nJamauri\nJoe\nJorge\nKelvin\nKendall\nLarry\nLukas\nMalcolm\nManuel\nMarlon\nOakley\nPrince\nQuinton\nRodney\nTommy\nTristian\nTurner\nWilson\nZackary\nAidyn\nAndy\nBraylin\nCallen\nDante\nDarren\nEmerson\nFisher\nHouston\nJamie\nJensen\nJermaine\nKeaton\nKhalil\nKobe\nKristopher\nLathan\nMelvin\nMitchell\nNelson\nPhilip\nPhoenix\nQuentin\nRafael\nReese\nRonnie\nShane\nSylas\nTerrell\nToby\nTony\nAmarion\nBently\nBilly\nBraelyn\nBrayan\nCampbell\nCedric\nChad\nChevy\nColten\nDemarcus\nDevon\nDouglas\nDraven\nEmory\nErick\nHarlan\nIzaiah\nJakaiden\nJalen\nJamichael\nJaxton\nJordyn\nKamryn\nKellan\nKorbin\nLandyn\nLangston\nLawrence\nLondon\nLouis\nMaison\nMartin\nMateo\nOmarion\nRashad\nRoger\nSantiago\nSlade\nSolomon\nTevin\nTy\nZaylen\nAce\nAhmad\nAlexis\nAlonzo\nAtticus\nBenton\nBlaine\nBobby\nBraeden\nBrennan\nBrice\nCamdyn\nCesar\nChris\nCorban\nCourtney\nCraig\nCruz\nCullen\nDarryl\nDeangelo\nDeshawn\nDwight\nEan\nEmanuel\nGarrison\nGibson\nHarley\nHector\nJaceon\nJamarian\nJared\nJulio\nKaidyn\nKamauri\nKamron\nKarsen\nKellen\nKohen\nKolby\nKonner\nKorbyn\nKristian\nKylen\nKyran\nLadarius\nLance\nLayton\nLochlan\nMalakai\nMarco\nOmar\nRidge\nRoberto\nRodrigo\nSullivan\nTylan\nWade\nWinston\nZayne\nAlexzander\nAli\nAlvin\nAmare\nAngelo\nAubrey\nAydan\nBraylan\nBrent\nBrently\nBruce\nBrysen\nBryton\nCamren\nCamryn\nCanaan\nClay\nDamon\nDarian\nDaylon\nDayton\nDean\nDeandre\nDorian\nEddie\nFabian\nFinley\nFischer\nFoster\nGideon\nGray\nGunnar\nHarris\nHayes\nImmanuel\nJabari\nJaidyn\nJaquan\nJavier\nJavon\nJaxen\nJaydon\nJefferson\nJessie\nJonas\nJorden\nKayleb\nKeelan\nKeenan\nKody\nLuther\nMalaki\nMarkell\nMathew\nMiller\nMilton\nMorgan\nNeil\nNickolas\nNigel\nOmari\nPedro\nPierce\nQuinn\nRex\nRickey\nRicky\nRoderick\nShamar\nStanley\nTalon\nTerrence\nTriston\nWill\nYahir\nZachariah\nAaden\nAlberto\nAlden\nAlfredo\nAntoine\nAntony\nAntwon\nAydin\nBarry\nBeckett\nBen\nBraiden\nBrenden\nBrendon\nCadyn\nCarl\nCarmelo\nCaysen\nCollier\nConrad\nCreed\nCrimson\nDamarion\nDamion\nDane\nDarrell\nDaylen\nDemarion\nDemarius\nDeon\nDesmond\nDrayton\nDwayne\nEdgar\nEmilio\nEmmitt\nFelix\nFord\nFredrick\nGaines\nGatlin\nGentry\nGrey\nHamilton\nHampton\nHank\nHarold\nHeath\nHezekiah\nHollis\nHugo\nJacen\nJakobi\nJakobie\nJamar\nJaron\nJasen\nJaycion\nJayson\nJerome\nJohnathon\nKadin\nKaedyn\nKalvin\nKamarion\nKannon\nKaydon\nKeagan\nKenyon\nKonnor\nKye\nKyree\nKyrie\nKyrin\nLandry\nLegend\nMakel\nMaksim\nMarcos\nMarley\nMartez\nMarvin\nMekhi\nNathanael\nNeymar\nNikolas\nPablo\nPatton\nPayton\nRaiden\nRalph\nRamsey\nRay\nRayden\nReece\nRoland\nRonan\nRory\nRuben\nScott\nShepherd\nStetson\nTahj\nTalan\nTaylon\nTerrion\nTrayvon\nTrevon\nTyrell\nUriah\nXzavier\nYael\nWilliam\nJames\nJohn\nMason\nElijah\nNoah\nJackson\nAiden\nJacob\nJoshua\nSamuel\nMichael\nEthan\nCarter\nLiam\nGrayson\nChristopher\nJayden\nLogan\nHunter\nAndrew\nLandon\nCaleb\nGabriel\nJoseph\nCharles\nDavid\nJaxon\nColton\nLuke\nAyden\nLevi\nCameron\nMatthew\nChristian\nCarson\nWyatt\nAlexander\nJordan\nBenjamin\nRobert\nDaniel\nKayden\nLucas\nEaston\nBentley\nEli\nBrantley\nBraxton\nBrayden\nJonathan\nHenry\nAnthony\nThomas\nJeremiah\nJace\nConnor\nSawyer\nAustin\nBryson\nOliver\nParker\nCooper\nHudson\nDylan\nIsaac\nTyler\nIsaiah\nJosiah\nNathan\nKarter\nBrandon\nJase\nTimothy\nJack\nKingston\nNicholas\nGavin\nTucker\nAshton\nTristan\nAsher\nJustin\nKaleb\nChase\nBrody\nJayceon\nOwen\nKaiden\nJaxson\nKevin\nRyan\nAaron\nCayden\nIan\nJason\nJayce\nMicah\nRyder\nEvan\nGreyson\nHayden\nKaden\nHarrison\nKarson\nCamden\nBraylen\nRylan\nZachary\nZayden\nAdam\nJose\nKameron\nWesley\nBarrett\nMarcus\nNolan\nBlake\nDallas\nGunner\nKenneth\nMalachi\nPreston\nSilas\nBryce\nCollin\nAntonio\nCaden\nJonah\nKing\nPeyton\nAdrian\nMaddox\nMessiah\nBrooks\nDawson\nTrenton\nAvery\nBennett\nLincoln\nSteven\nAlex\nRichard\nSebastian\nWeston\nBraylon\nBrian\nDalton\nEzra\nJaden\nJaiden\nRiley\nTanner\nZion\nCorbin\nWalker\nXavier\nAmari\nJudah\nLawson\nMaxwell\nRiver\nJude\nAngel\nCarlos\nEric\nKason\nGriffin\nJuan\nPrinceton\nRyker\nAbel\nBryan\nCason\nDerrick\nGeorge\nRoman\nAidan\nConner\nEverett\nGarrett\nJaylen\nMiles\nStephen\nDominic\nEmmett\nJameson\nJohnny\nJulian\nKyler\nZane\nBradley\nCole\nEdward\nElias\nGraham\nJesse\nKai\nNathaniel\nPaul\nBryant\nCaiden\nClayton\nGregory\nJeremy\nJudson\nKylan\nPatrick\nWalter\nAlan\nCharlie\nColin\nLanden\nChandler\nLuis\nTitus\nWaylon\nAnderson\nAxel\nCody\nEzekiel\nGrant\nJax\nKayson\nMiguel\nTyson\nChance\nDeclan\nJett\nKyle\nVincent\nAmir\nBraydon\nJohnathan\nSeth\nTravis\nBrentley\nCase\nDevin\nJasper\nJeffery\nJoel\nKeegan\nMarshall\nSkyler\nCade\nFisher\nJensen\nMax\nPaxton\nRhett\nSpencer\nTrevor\nCalvin\nCohen\nColt\nKendrick\nMajor\nTaylor\nXander\nZander\nBeau\nBraden\nBrycen\nCurtis\nFinn\nIker\nIvan\nJamari\nJesus\nMark\nMaverick\nMyles\nReid\nTroy\nVictor\nZaiden\nCasen\nCash\nColby\nDamien\nEllis\nGrady\nHouston\nKamden\nKolton\nLandyn\nMalcolm\nPhillip\nWarren\nBrodie\nCorey\nCristian\nDustin\nElliott\nJeffrey\nKasen\nRaylan\nRowan\nWilson\nAden\nCedric\nColeman\nDiego\nEdwin\nGage\nJake\nKash\nPrince\nRonald\nRussell\nRyland\nTheodore\nAbram\nAce\nDamian\nDemarcus\nHayes\nHolden\nJamarcus\nJavier\nMateo\nMaurice\nNicolas\nRemington\nTerry\nTony\nAbraham\nBrantlee\nCarmelo\nDemetrius\nDillon\nEmmanuel\nIsrael\nJamichael\nJerry\nKobe\nKylen\nLane\nPhoenix\nWillie\nAugust\nBaylor\nChanning\nDaxton\nDesmond\nDonald\nDonovan\nEduardo\nEmerson\nJimmy\nKamari\nKendall\nPorter\nSkylar\nAlejandro\nAsa\nBeckett\nBentlee\nBo\nBrady\nBrendan\nBrock\nCannon\nCasey\nCourtney\nDanny\nDeacon\nDean\nElliot\nGannon\nJakobe\nJamarion\nJaxton\nJermaine\nJon\nLeonardo\nLuca\nMorgan\nNehemiah\nPedro\nSylas\nTripp\nTriston\nTurner\nAlexis\nAndre\nBrennan\nBruce\nCayson\nCornelius\nCrimson\nDavion\nDavis\nDeandre\nDennis\nFranklin\nFrederick\nGary\nHarley\nJalen\nJustice\nKade\nKaison\nKyson\nLayton\nLegend\nMalik\nManuel\nMicheal\nMiller\nOakley\nOmar\nReed\nRicardo\nRicky\nSimon\nTerrance\nTrent\nZechariah\nArcher\nDakota\nDerek\nDexter\nErick\nFelix\nJagger\nJasiah\nJorge\nKeaton\nKhalil\nKyrie\nLadarius\nLeland\nLeo\nLondon\nLorenzo\nLukas\nMaximus\nOmari\nOscar\nQuinton\nReese\nReginald\nRodney\nSamson\nSean\nShane\nTrace\nZachariah\nZaylen\nAdan\nAtticus\nBranson\nBraylin\nDamon\nDarius\nDominick\nDorian\nFletcher\nFrancisco\nIssac\nJamison\nJared\nJavion\nJay\nJoe\nJordyn\nJosue\nKamryn\nKnox\nKolten\nKristian\nLance\nLathan\nLouis\nLyric\nMaison\nMitchell\nNeymar\nPeter\nRandall\nReece\nScott\nShawn\nSolomon\nTatum\nTerrence\nTylan\nAhmad\nAlijah\nAndres\nAndy\nBeckham\nBenton\nBilly\nBlaine\nBowen\nBrenton\nByron\nCamdyn\nCullen\nDeangelo\nDevon\nDrake\nDrew\nEmory\nFinley\nGael\nGerald\nGideon\nGunnar\nJacoby\nJakaiden\nJaydon\nJayson\nKarsyn\nKeagan\nKeelan\nKeith\nKristopher\nLandan\nLeon\nMacon\nMario\nMarkell\nMartin\nMarvin\nRaymond\nRoderick\nSutton\nUriah\nAllen\nAmarion\nAmos\nBrayan\nBrayson\nBrenden\nCallen\nCamron\nChevy\nColten\nCortez\nDante\nDeshawn\nEddie\nEmanuel\nFernando\nFoster\nGiovanni\nHector\nIzaiah\nJabari\nJakob\nJamir\nJaxen\nJayveon\nJayvion\nJorden\nKane\nKaysen\nKeandre\nKeller\nKenny\nKody\nKonnor\nLamar\nLangston\nLarry\nLewis\nMalakai\nMayson\nMohammed\nPayton\nPhilip\nPierce\nQuentin\nRidge\nRonan\nRonnie\nRoy\nRylee\nSantiago\nShepherd\nSullivan\nTalon\nThaddeus\nToby\nTristen\nTristin\nWill\nXzavier\nZackary\nZackery\nZayne\nZyon\nAiyden\nAlbert\nAli\nAlton\nAnakin\nAngelo\nArmani\nArthur\nAston\nBarron\nBen\nBishop\nBrent\nBriar\nBrylon\nCamren\nCanaan\nCarl\nCashton\nCaysen\nClark\nClinton\nDamion\nDarren\nDaylen\nDayton\nDouglas\nElisha\nEnoch\nErik\nFelipe\nForrest\nFrank\nGatlin\nGraysen\nIsiah\nJacen\nJaceyon\nJaiceon\nJakaden\nJakari\nJakayden\nJamie\nJaquan\nJarvis\nJasen\nJaylon\nJerome\nJustus\nKaidyn\nKalel\nKamron\nKashton\nKellan\nKelvin\nKemari\nKendarius\nKharter\nKohen\nKooper\nKymani\nLamarcus\nLawrence\nLayne\nLeonel\nMarquis\nMemphis\nNash\nNigel\nOmarion\nPablo\nPierson\nRandy\nRay\nRayden\nRoland\nRuben\nStanley\nStephon\nSterling\nTaylon\nTommy\nTristian\nWade\nWallace\nWells\nZamarion\nZayvion\nAdrien\nAidyn\nAlden\nAlec\nAlvin\nAntwan\nArmando\nAubrey\nAydon\nBenson\nBraylan\nBrentlee\nBrylan\nCarsen\nChris\nChriston\nCollins\nConor\nCorbyn\nCoy\nCrew\nDakari\nDarrell\nDarrion\nDarryl\nDax\nDeanthony\nDemari\nDeon\nDewayne\nDontavious\nDraven\nEden\nEmery\nEzequiel\nFinnegan\nFrancis\nGauge\nGentry\nHank\nHarlem\nHarper\nHarris\nHollis\nHosea\nJessie\nJohan\nJohnathon\nJulien\nJulio\nJulius\nJunior\nKace\nKaisen\nKarsen\nKaydon\nKillian\nKolby\nKole\nKonner\nLaken\nLee\nLeighton\nLennox\nMadden\nMalakhi\nMarlon\nMarquez\nMathew\nMatthias\nNasir\nNathanael\nNickolas\nNikolas\nNoel\nOrion\nRaleigh\nRashad\nRex\nSage\nShaun\nSlade\nSoren\nStone\nThatcher\nTobias\nTodd\nTrey\nTylen\nTyree\nWestin\nWinston\nZain\nMary\nRuby\nRuth\nWillie\nEthel\nGladys\nHazel\nEdna\nBessie\nMildred\nAnnie\nHelen\nThelma\nMarie\nBertha\nMyrtle\nDorothy\nIrene\nPearl\nJessie\nMinnie\nMartha\nMattie\nRosie\nLucille\nOpal\nLillie\nElizabeth\nLouise\nBeatrice\nClara\nEdith\nVelma\nAlice\nAnna\nLillian\nLois\nEmma\nPauline\nElsie\nAlma\nMargaret\nIda\nJewell\nFrances\nFannie\nFlorence\nAlberta\nHattie\nEva\nDora\nEvelyn\nGeorgia\nGrace\nMamie\nElla\nMabel\nVirginia\nLena\nLula\nOllie\nBeulah\nGertrude\nMae\nNellie\nSarah\nVera\nMaggie\nViola\nBernice\nCora\nCarrie\nMable\nLaura\nLola\nLottie\nEunice\nInez\nJulia\nEsther\nMargie\nNettie\nEula\nVirgie\nDaisy\nFlora\nJewel\nNora\nAgnes\nJosephine\nEssie\nEffie\nGeneva\nOla\nOra\nStella\nSusie\nWilma\nAddie\nIva\nLucy\nViolet\nVivian\nAda\nAllie\nDella\nLeona\nRoberta\nNancy\nLela\nSadie\nSallie\nAnn\nCatherine\nCleo\nEtta\nLucile\nRachel\nRosa\nZelma\nBlanche\nDollie\nElnora\nErma\nFloy\nMay\nAlta\nChristine\nGracie\nJuanita\nKatherine\nLeola\nReba\nBetty\nBillie\nDoris\nJohnnie\nNell\nOma\nVerna\nCallie\nDovie\nEllen\nFaye\nJosie\nKathryn\nKatie\nLorene\nNaomi\nNorma\nBertie\nElva\nFrankie\nJennie\nLizzie\nMarjorie\nMaudie\nWinnie\nAudrey\nCecil\nDessie\nFrancis\nKathleen\nNina\nOdessa\nPearlie\nRena\nRose\nCarolyn\nEstelle\nFlossie\nGertie\nGussie\nLetha\nLydia\nMadge\nNola\nRoxie\nSelma\nSylvia\nBonnie\nEstella\nHallie\nJanie\nMarguerite\nMaxine\nMillie\nNona\nVesta\nAnne\nArtie\nConnie\nEaster\nFay\nHenrietta\nIrma\nLee\nOphelia\nPatsy\nVictoria\nAmy\nBlanch\nCassie\nEliza\nElma\nEster\nFern\nIla\nIola\nJane\nLilly\nLona\nLora\nLouella\nLucinda\nMittie\nMollie\nMuriel\nRebecca\nSavannah\nBlanchie\nCharlotte\nDelia\nDelma\nEarnestine\nErnestine\nGoldie\nHannah\nIna\nLessie\nLou\nMagnolia\nMatilda\nMaude\nOlive\nTommie\nWanda\nAlva\nAmelia\nAva\nBerniece\nBettie\nBirdie\nBirtha\nCorine\nEleanor\nEloise\nEstell\nEvia\nGenevieve\nHester\nHettie\nJean\nJune\nKattie\nLeila\nLenora\nLorraine\nMarion\nMelba\nOcie\nRosetta\nRubye\nTressie\nWilla\nZella\nAudie\nAugusta\nCamille\nCaroline\nCecelia\nCharlie\nCordelia\nCynthia\nEddie\nEsta\nEulah\nFreda\nFreddie\nGeraldine\nIsabell\nJannie\nJo\nJohnie\nLeta\nLila\nLonnie\nLorena\nLuella\nNannie\nOna\nOva\nRosalie\nRubie\nSally\nSophia\nTheresa\nVersie\nVirgia\nVirgil\nMary\nRuby\nRuth\nMildred\nGladys\nHazel\nWillie\nHelen\nAnnie\nEthel\nEdna\nOpal\nClara\nMarie\nThelma\nBertha\nDorothy\nBessie\nLois\nJessie\nElizabeth\nMinnie\nEdith\nMyrtle\nIrene\nLillie\nMattie\nIda\nPearl\nAlice\nGrace\nBeatrice\nElsie\nLillian\nMargaret\nPauline\nRosie\nLouise\nNellie\nLucille\nMabel\nEmma\nFrances\nHattie\nVelma\nAlma\nAnna\nMartha\nEvelyn\nCora\nViola\nVera\nElla\nJosephine\nEva\nMamie\nJewell\nOllie\nVirginia\nBernice\nEsther\nLena\nLola\nLula\nBeulah\nCarrie\nFlorence\nJuanita\nLaura\nSarah\nEula\nLucy\nEffie\nErma\nGeorgia\nNora\nOra\nKatie\nFannie\nOla\nEunice\nRose\nAgnes\nInez\nMable\nMae\nStella\nChristine\nCleo\nLeona\nSusie\nAlberta\nBetty\nBlanche\nDoris\nGertrude\nJewel\nMaggie\nIva\nLela\nRosa\nCatherine\nDella\nEssie\nNettie\nSadie\nAddie\nDaisy\nFlora\nVerna\nAda\nGeneva\nVivian\nWilma\nGoldie\nLorene\nDora\nJulia\nRachel\nViolet\nEllen\nGracie\nJohnnie\nLottie\nNaomi\nNell\nVirgie\nDessie\nJennie\nLucile\nMaxine\nNancy\nNorma\nSallie\nMarjorie\nMaude\nZelma\nAudrey\nBonnie\nElnora\nFay\nFaye\nFlossie\nMargie\nMarion\nSue\nArtie\nCecil\nEleanor\nIla\nJosie\nKatherine\nLetha\nLora\nNina\nOdessa\nPearlie\nEstella\nIna\nMarguerite\nMollie\nReba\nRuthie\nSylvia\nWinnie\nAllie\nDollie\nDovie\nFloy\nJimmie\nOphelia\nRoberta\nAlta\nAmy\nAnn\nBillie\nCallie\nConnie\nEtta\nFrancis\nHenrietta\nLee\nLeola\nLessie\nNannie\nRebecca\nRobbie\nSelma\nAline\nBirdie\nEstelle\nFreda\nGertie\nKathleen\nKathryn\nLenora\nLizzie\nRosetta\nWanda\nAlpha\nBarbara\nBertie\nClaudia\nJean\nLona\nLydia\nMadge\nMaud\nNola\nOma\nVeda\nAmanda\nAva\nEddie\nEliza\nElva\nFrankie\nGeraldine\nHester\nIrma\nJanie\nMadie\nMay\nMillie\nOleta\nOlive\nRubye\nUna\nAnne\nBennie\nCarolyn\nChloe\nDonnie\nEra\nFern\nGussie\nIola\nJohnie\nLila\nLorena\nMaudie\nMyra\nNadine\nOna\nOva\nPansy\nPatricia\nRena\nRoxie\nSally\nSara\nVesta\nZella\nZula\nAileen\nAmelia\nCharlotte\nEloise\nEugenia\nEuna\nGertha\nGrethel\nHallie\nIona\nIsabel\nIsabell\nIvory\nJoyce\nKate\nLelia\nLinnie\nLue\nLuella\nMarian\nMatilda\nMerle\nMuriel\nNona\nOda\nSybil\nVada\nVernie\nZadie\nMary\nRuby\nRuth\nHelen\nMildred\nWillie\nHazel\nMarie\nThelma\nEthel\nGladys\nOpal\nDorothy\nAnnie\nEdna\nLucille\nMyrtle\nBessie\nEdith\nMargaret\nBertha\nMattie\nIrene\nElizabeth\nPauline\nClara\nLillian\nPearl\nLouise\nJessie\nVirginia\nLois\nFrances\nLillie\nGrace\nMartha\nAnna\nNellie\nVelma\nAlice\nEvelyn\nSarah\nElsie\nViola\nBeulah\nEmma\nRosie\nBeatrice\nMinnie\nEva\nAlma\nLola\nBernice\nJewell\nLena\nLucy\nMabel\nVera\nHattie\nMable\nElla\nGertrude\nJosephine\nEsther\nIda\nOllie\nFannie\nCarrie\nMae\nMaggie\nCora\nMamie\nInez\nJewel\nJulia\nAda\nJuanita\nLaura\nEunice\nSusie\nEssie\nDaisy\nDora\nLula\nVivian\nCatherine\nDoris\nGeorgia\nKatie\nNettie\nRosa\nAgnes\nAlberta\nBetty\nDella\nEffie\nEula\nFlorence\nLorene\nOla\nBonnie\nFaye\nGeneva\nNancy\nBlanche\nOra\nRose\nLeona\nLela\nIva\nNora\nRoberta\nFlora\nGeraldine\nGracie\nNaomi\nAddie\nAlta\nStella\nAllie\nChristine\nOdessa\nVerna\nVirgie\nWilma\nAnn\nEllen\nFrankie\nLizzie\nMaudie\nWinnie\nDovie\nFlossie\nJohnnie\nNina\nRoxie\nSylvia\nAudrey\nElva\nErma\nMarguerite\nMarjorie\nMaxine\nRachel\nKatherine\nLinnie\nRosetta\nSadie\nAvis\nElnora\nNola\nCleo\nFay\nFern\nJennie\nLottie\nBarbara\nErnestine\nEstella\nKathleen\nLydia\nMay\nOma\nReba\nSally\nIna\nJimmie\nLeola\nOphelia\nViolet\nDessie\nEmily\nEtta\nGussie\nIla\nIrma\nLetha\nNorma\nRebecca\nRuthie\nBillie\nEstelle\nFloy\nGoldie\nHenrietta\nHester\nJanie\nKathryn\nLee\nLenora\nLessie\nRetha\nZelma\nArtie\nBirdie\nCallie\nConnie\nFrancis\nJane\nJean\nJosie\nLelia\nLucile\nRobbie\nRubye\nVictoria\nZelda\nAudie\nAugusta\nCelia\nDollie\nHilda\nIma\nLila\nLora\nMaude\nMerle\nNadine\nNell\nPearlie\nQueen\nRena\nClarice\nCynthia\nEstell\nImogene\nLou\nMargie\nMillie\nMuriel\nSallie\nVida\nAllene\nEddie\nEleanor\nEliza\nElma\nJohnie\nLorraine\nLuella\nMollie\nNannie\nOrpha\nTressie\nVada\nViva\nAmy\nAnne\nAva\nBertie\nBettie\nCassie\nCornelia\nDixie\nEuna\nGertie\nJune\nKattie\nLouella\nMadge\nMarian\nMelba\nNeoma\nOcie\nOleta\nSelma\nSue\nZella\nAbbie\nAline\nAnnis\nArlene\nBethel\nCecil\nCharlotte\nCorine\nCorinne\nDelia\nEaster\nEloise\nEra\nEster\nGolda\nIdella\nIona\nLoretta\nLura\nMagnolia\nOctavia\nOlive\nPatricia\nSara\nSybil\nUna\nVeda\nVernie\nWanda\nAdele\nAmelia\nAnita\nArizona\nBlanch\nCarmen\nCaroline\nCharlene\nChloe\nCordelia\nDorthy\nElaine\nFreda\nHallie\nIdell\nIris\nJanice\nKate\nKatharine\nLavada\nLaverne\nLeota\nLina\nLinda\nLorine\nLovie\nMadeline\nMadie\nMalinda\nMarion\nMittie\nMozelle\nPatsy\nPeggy\nShirley\nTheola\nTheresa\nTommie\nTrudie\nVerda\nVerdie\nVesta\nWillia\nZola\nMary\nRuby\nMildred\nRuth\nHazel\nWillie\nHelen\nDorothy\nMarie\nGladys\nMargaret\nThelma\nOpal\nAnnie\nPauline\nEdna\nLois\nLouise\nJessie\nMyrtle\nLucille\nEthel\nIrene\nVirginia\nClara\nBeatrice\nBessie\nEdith\nAlice\nElizabeth\nBertha\nFrances\nMattie\nEmma\nVelma\nElsie\nGrace\nLillian\nMartha\nVera\nMabel\nPearl\nIda\nEvelyn\nAlma\nLillie\nAnna\nMinnie\nSarah\nBernice\nRosie\nFannie\nViola\nHattie\nNellie\nJuanita\nLola\nFlorence\nJewell\nBeulah\nCora\nEva\nGeorgia\nLena\nLucy\nEssie\nEula\nLaura\nMaggie\nCarrie\nElla\nInez\nMae\nStella\nEunice\nJewel\nMamie\nDoris\nFlora\nLula\nOllie\nVivian\nAgnes\nBlanche\nGertrude\nFaye\nGeneva\nLorene\nCleo\nOra\nEsther\nKatherine\nMable\nVerna\nDaisy\nDora\nEllen\nJosephine\nJulia\nKatie\nNettie\nWilma\nWinnie\nBonnie\nDella\nEffie\nMarjorie\nLela\nOla\nAda\nAnn\nCatherine\nErma\nLeona\nMarguerite\nRose\nBetty\nJean\nReba\nAlta\nGracie\nMaudie\nAlberta\nChristine\nNora\nGoldie\nLottie\nMargie\nSusie\nVirgie\nAudrey\nElnora\nIva\nJohnnie\nMaxine\nSylvia\nFlossie\nLucile\nNancy\nAddie\nErnestine\nFrankie\nLetha\nBillie\nMarion\nPearlie\nRachel\nZelma\nDovie\nImogene\nIna\nIrma\nOlive\nRosa\nViolet\nDollie\nEstelle\nGeraldine\nJimmie\nLeola\nNell\nNorma\nOphelia\nAllie\nEtta\nFern\nGertie\nGussie\nKathryn\nLuella\nMillie\nMollie\nNina\nSadie\nWanda\nAmanda\nBobbie\nDessie\nFrancis\nLizzie\nLydia\nMittie\nMuriel\nNaomi\nOdessa\nOma\nRobbie\nSallie\nSally\nSue\nBertie\nElva\nEstella\nFloy\nIris\nJanie\nNola\nRoberta\nRosetta\nClarice\nEleanor\nEmily\nJane\nLennie\nLona\nLorraine\nMadge\nNona\nPatricia\nRebecca\nAvis\nBennie\nBirdie\nEloise\nHester\nJoyce\nLila\nLinnie\nMay\nOleta\nSelma\nTommie\nVada\nVida\nBarbara\nCallie\nChloe\nClaudia\nFay\nGretchen\nHenrietta\nHilda\nKathleen\nLenora\nLora\nLorena\nMaude\nMaurine\nMelba\nOcie\nQueen\nRuthie\nVictoria\nZora\nAline\nAnne\nAudie\nCornelia\nEliza\nEra\nEster\nGolda\nIla\nJettie\nJosie\nLee\nLessie\nLeta\nLettie\nMadeline\nMagnolia\nNannie\nOlivia\nOna\nRosalie\nRoxie\nSara\nShirley\nZelda\nZella\nAltha\nAmy\nAugusta\nAva\nBerniece\nCharlie\nDelia\nDortha\nEddie\nFreda\nGenevieve\nHarriet\nJennie\nJo\nJoe\nLeora\nLou\nLouella\nLovie\nMonnie\nNeva\nPolly\nTheresa\nVeda\nAlene\nAlpha\nArtie\nAudra\nCecile\nCharlene\nConnie\nDixie\nDonna\nDorris\nElma\nIdella\nIona\nIsabell\nJames\nJeanette\nLaverne\nMerle\nNova\nOdie\nRetha\nReva\nRosemary\nVelva\nWilla\nZenobia\nAbbie\nAdele\nAlva\nAmelia\nAnnette\nBirtha\nBlanch\nCarolyn\nCecil\nCordelia\nCorine\nDolly\nDorothea\nEaster\nEstell\nFloye\nFrieda\nIdell\nIola\nJamie\nJohnie\nLady\nLelia\nLorine\nLouie\nLucinda\nMinerva\nMona\nMyra\nMyrtice\nMyrtis\nOctavia\nOtha\nPeggy\nPhyllis\nRena\nRita\nRoma\nRubye\nSophia\nVelda\nVirgia\nWillia\nMary\nRuby\nMildred\nRuth\nHelen\nGladys\nDorothy\nHazel\nMarie\nThelma\nWillie\nMargaret\nLucille\nAnnie\nJessie\nPauline\nLois\nEthel\nIrene\nOpal\nAnna\nFrances\nMyrtle\nBessie\nEdna\nLillian\nLouise\nLillie\nEdith\nElizabeth\nAlice\nEva\nElsie\nMattie\nPearl\nVirginia\nBertha\nVelma\nMinnie\nEmma\nEvelyn\nClara\nGrace\nAlma\nMartha\nIda\nViola\nBeatrice\nBernice\nRosie\nLaura\nBeulah\nVera\nMabel\nHattie\nJuanita\nFlorence\nGeneva\nLola\nAgnes\nJosephine\nMae\nGeorgia\nLena\nDoris\nEunice\nLucy\nNellie\nBonnie\nFaye\nJewell\nLorene\nSarah\nLula\nMable\nElla\nVivian\nEssie\nFannie\nGertrude\nInez\nWilma\nCarrie\nCatherine\nEsther\nMaggie\nNettie\nStella\nDaisy\nDora\nCora\nOla\nOra\nSusie\nAddie\nCleo\nJewel\nReba\nElnora\nFlora\nKatherine\nMarguerite\nNaomi\nEffie\nMamie\nOllie\nAlberta\nIva\nAudrey\nLeona\nRose\nNancy\nBetty\nEstelle\nEula\nJulia\nMarjorie\nMaxine\nDella\nGracie\nKathleen\nNina\nChristine\nEllen\nGoldie\nJohnnie\nKatie\nMargie\nMaudie\nVerna\nAda\nAlta\nCallie\nErma\nLela\nLottie\nViolet\nGeraldine\nBlanche\nErnestine\nIna\nRosa\nSylvia\nVirgie\nBillie\nFlossie\nSadie\nSue\nJean\nFloy\nNora\nRoberta\nEtta\nJosie\nLeola\nLetha\nLora\nNell\nNorma\nDessie\nDovie\nKathryn\nLucile\nMay\nRachel\nRoxie\nWinnie\nAllie\nAnn\nFay\nIla\nIrma\nJoyce\nMuriel\nClaudia\nFrankie\nImogene\nZelma\nLee\nLizzie\nOlive\nOma\nShirley\nBennie\nBirdie\nCarolyn\nDollie\nFern\nCharlie\nEddie\nElva\nGenevieve\nHester\nJennie\nOdessa\nOphelia\nPearlie\nRosetta\nSybil\nWanda\nCecil\nEloise\nHenrietta\nHilda\nJune\nLenora\nNeva\nNola\nSara\nAmanda\nAmy\nAvis\nCorine\nEleanor\nHettie\nIola\nJane\nJohnie\nMadge\nMarion\nMaude\nMillie\nNona\nRebecca\nSally\nBarbara\nBerniece\nEmily\nEstella\nEugenia\nLessie\nMagnolia\nMollie\nOcie\nSelma\nVada\nVida\nWilla\nAnne\nBethel\nBobbie\nCharlotte\nEliza\nFlorine\nFrancis\nIris\nLorena\nLorraine\nMerle\nRena\nSallie\nArlene\nArtie\nAugusta\nBertie\nElma\nFreddie\nGertie\nJanice\nJanie\nLeota\nLila\nMona\nOdie\nRetha\nTressie\nWinifred\nAllene\nAlpha\nAva\nBettie\nCelia\nCharlene\nConnie\nCornelia\nFreda\nGlenna\nHarriet\nJeanette\nLeta\nLona\nLuella\nMyra\nNeoma\nOdell\nOleta\nOlivia\nPansy\nPatricia\nQueen\nRosalie\nRubye\nRuthie\nZola\nAileen\nChloe\nClarice\nCorinne\nCynthia\nGussie\nJames\nLinnie\nLou\nMadie\nMandy\nMaud\nMayme\nNannie\nOva\nRobbie\nRubie\nUna\nVerla\nVersie\nVesta\nZella\nAnnabelle\nArkie\nAudie\nCarmen\nCassie\nCharline\nDixie\nDorothea\nDorris\nEmogene\nEuna\nFairy\nGolda\nHallie\nHannah\nHelene\nHenry\nIma\nJo\nJoe\nKattie\nLaverne\nLydia\nMadeline\nMaurine\nMazie\nOna\nPearline\nRita\nSibyl\nTessie\nTheresa\nTina\nTommie\nVerda\nVictoria\nAdell\nAltha\nAtha\nAudra\nBlanchie\nBulah\nCecile\nClemmie\nCorene\nDelphia\nDolly\nEarlene\nEarline\nEarnestine\nEdythe\nEulah\nGeorge\nJanet\nJettie\nJoann\nLennie\nLilly\nLoraine\nLorine\nLue\nLura\nLyda\nMargret\nMelba\nMelva\nMiriam\nMittie\nMolly\nMozella\nNova\nRosia\nSusan\nTennie\nVernie\nViva\nWinona\nZora\nMary\nRuby\nRuth\nHelen\nMildred\nDorothy\nHazel\nThelma\nGladys\nOpal\nPauline\nMargaret\nLois\nLucille\nMarie\nWillie\nEdna\nJessie\nAnnie\nFrances\nEthel\nMartha\nElizabeth\nLouise\nClara\nAlice\nIrene\nBessie\nMyrtle\nEdith\nVirginia\nVelma\nLillian\nEvelyn\nAnna\nMattie\nBernice\nPearl\nMinnie\nBertha\nVera\nJuanita\nIda\nEmma\nAlma\nElla\nNellie\nEva\nBeatrice\nLucy\nMabel\nGrace\nElsie\nLena\nLillie\nGeneva\nWilma\nAgnes\nLorene\nSarah\nRosie\nInez\nLola\nDoris\nFlorence\nBonnie\nEula\nJewell\nFannie\nMae\nMable\nMamie\nVivian\nBeulah\nViola\nFaye\nLaura\nEunice\nJewel\nGeorgia\nGertrude\nJosephine\nJulia\nOllie\nReba\nLula\nHattie\nCora\nOra\nCarrie\nCleo\nFlora\nMarjorie\nEffie\nVerna\nCatherine\nDaisy\nEsther\nAda\nBetty\nDora\nMaxine\nSusie\nLeona\nMaggie\nAlberta\nChristine\nEssie\nRachel\nKatherine\nIva\nNora\nVirgie\nAlta\nAudrey\nErma\nNaomi\nSylvia\nNancy\nAnn\nFlossie\nJean\nKathryn\nLottie\nNina\nStella\nEllen\nImogene\nMarguerite\nBlanche\nGeraldine\nGracie\nNettie\nRose\nZelma\nGoldie\nKatie\nLela\nNorma\nRosa\nFloy\nViolet\nEtta\nIna\nMargie\nAddie\nFay\nLetha\nOla\nWinnie\nElnora\nFern\nIla\nJane\nKathleen\nOma\nSallie\nElva\nFrankie\nNell\nRoberta\nDella\nDessie\nDollie\nErnestine\nEstella\nLeola\nSadie\nAllie\nEstelle\nLizzie\nLucile\nMuriel\nBillie\nChloe\nBertie\nDovie\nIrma\nJennie\nJoyce\nMaudie\nEddie\nFrancis\nJimmie\nMelba\nMollie\nNola\nShirley\nBirdie\nElma\nGertie\nMerle\nOlive\nWanda\nAnita\nJohnnie\nLenora\nLila\nMillie\nRebecca\nRuthie\nVada\nAmy\nCarmen\nCarolyn\nCorine\nEleanor\nGussie\nJohnie\nLee\nSyble\nTommie\nBerniece\nEloise\nEmily\nMarion\nMaude\nPatricia\nRena\nRetha\nSelma\nVida\nBarbara\nBobbie\nCharlotte\nDixie\nFlorine\nFreda\nIris\nJune\nLora\nMay\nOphelia\nSally\nSue\nTressie\nAnne\nArtie\nAva\nHester\nJoe\nRobbie\nSara\nSybil\nVeda\nAline\nDolly\nDortha\nEarnestine\nElaine\nJosie\nLaverne\nLorena\nLorraine\nMadeline\nMavis\nOcie\nPansy\nQueen\nReva\nRosetta\nVictoria\nAlpha\nAltha\nAudie\nCallie\nClarice\nEra\nEster\nFlorene\nLettie\nLorine\nLou\nNadine\nNannie\nNeva\nNona\nPearlie\nRubye\nEuna\nHenrietta\nJanie\nLilly\nLoretta\nLydia\nMagnolia\nOleta\nRita\nTheresa\nVersie\nVesta\nZelda\nAdele\nAmanda\nAugusta\nBennie\nCelia\nClaudia\nDonna\nGwendolyn\nHilda\nJanice\nLessie\nLinnie\nMittie\nOdessa\nOlivia\nPeggy\nRoxie\nVergie\nAlene\nAllene\nAmie\nCharlene\nDonnie\nEdythe\nFreddie\nIone\nJettie\nLeatha\nLeota\nLuella\nMadge\nMadie\nMaurice\nMyra\nPolly\nRosalie\nSavannah\nVelva\nAdell\nAra\nAudra\nBettie\nCaroline\nCassie\nCecil\nCharlie\nConnie\nIdell\nJannie\nJeanette\nLennie\nMeda\nMina\nOdell\nOlga\nOna\nOrpha\nOva\nPearline\nReta\nAlthea\nBlanchie\nCorinne\nDelphia\nEaster\nEileen\nEliza\nElvira\nEmogene\nEugenia\nEvie\nFanny\nGenevieve\nGertha\nGolda\nIvy\nJoy\nKate\nLeila\nLily\nLinda\nLouisa\nLue\nLura\nMandy\nMarian\nMaurine\nMaybelle\nMayme\nMazie\nMinerva\nMyrtie\nNova\nRegina\nRosemary\nRubie\nSibyl\nUna\nVelda\nWinifred\nZora\nAbbie\nAmelia\nAretha\nBethel\nCarmel\nCecile\nCrystal\nDean\nDelcie\nDelma\nDorotha\nDorothea\nDorthy\nEarline\nEathel\nFlorida\nFreeda\nIdella\nIola\nIzora\nJamie\nJaunita\nJeanne\nJo\nJoan\nLeah\nLexie\nLuciel\nLucinda\nMatilda\nMaud\nMaxie\nMaye\nMiriam\nMontine\nMyrtis\nNorene\nNovella\nOda\nOdie\nOnie\nPinkie\nRhoda\nVanella\nVernice\nVernie\nVersa\nViva\nWalsie\nWilda\nZella\nZenobia\nZola\nZula\nMary\nRuby\nRuth\nMildred\nDorothy\nHazel\nHelen\nGladys\nThelma\nPauline\nWillie\nAnnie\nLois\nOpal\nMargaret\nFrances\nMarie\nEdna\nIrene\nMartha\nElizabeth\nLucille\nLouise\nAlice\nVirginia\nLillie\nEthel\nBessie\nJessie\nLillian\nEdith\nAnna\nBeatrice\nGeneva\nJuanita\nEvelyn\nElsie\nEmma\nVera\nMinnie\nMyrtle\nBertha\nMattie\nClara\nBernice\nGeorgia\nSarah\nIda\nVelma\nMabel\nEva\nGrace\nAlma\nPearl\nFlorence\nLena\nOllie\nDoris\nNellie\nRosie\nWilma\nJewell\nLaura\nEunice\nLorene\nVivian\nElla\nEsther\nInez\nMae\nLula\nAgnes\nFannie\nJewel\nJulia\nMable\nHattie\nEula\nMamie\nGertrude\nJosephine\nLucy\nMaxine\nViola\nBeulah\nCatherine\nMaggie\nChristine\nCleo\nGeraldine\nCora\nLola\nAddie\nBonnie\nCarrie\nEssie\nLeona\nMarjorie\nOra\nFlora\nKatherine\nNora\nSusie\nDaisy\nNancy\nOla\nReba\nDora\nFaye\nAudrey\nEffie\nBlanche\nLela\nRose\nMarguerite\nFrankie\nKathleen\nKathryn\nNina\nSylvia\nStella\nVerna\nAlberta\nMargie\nNaomi\nRosa\nBetty\nVirgie\nAda\nErma\nImogene\nKatie\nLottie\nAnn\nEstelle\nIva\nJohnnie\nLeola\nNettie\nRebecca\nSadie\nViolet\nWanda\nRoberta\nGracie\nNorma\nRachel\nSallie\nEloise\nGoldie\nJane\nLucile\nEllen\nFlossie\nFloy\nMaudie\nWinnie\nFay\nJennie\nLizzie\nOma\nAllie\nBillie\nIrma\nOlive\nAlta\nDella\nEmily\nIla\nJune\nMarion\nSue\nBarbara\nCorine\nFern\nIna\nLessie\nLou\nZelma\nElnora\nLee\nLila\nMadge\nOdessa\nDollie\nDovie\nEtta\nJosie\nLetha\nLora\nLydia\nMerle\nCharlene\nErnestine\nEstella\nGenevieve\nGussie\nJanie\nMelba\nNeva\nJean\nOphelia\nRena\nRoxie\nRubye\nShirley\nClaudia\nElva\nJimmie\nNadine\nSara\nDorthy\nEleanor\nGertie\nHester\nJanet\nJoyce\nNola\nPeggy\nRosetta\nSelma\nTressie\nVictoria\nCallie\nEarnestine\nEddie\nFrancis\nFreda\nLuella\nMay\nOna\nAmy\nBirdie\nCornelia\nDixie\nElma\nFlorene\nHilda\nLorine\nLorraine\nMarian\nPearlie\nAmanda\nArtie\nCharlotte\nChloe\nEugenia\nJames\nLaverne\nLenora\nLorena\nMagnolia\nNell\nRetha\nVida\nAlene\nAline\nBertie\nCarmen\nDessie\nJo\nMuriel\nNona\nOleta\nRobbie\nSybil\nTommie\nUna\nVeda\nVesta\nAnne\nAvis\nClaudie\nEuna\nFlorine\nIola\nMollie\nOdell\nRuthie\nSavannah\nVada\nVerda\nZelda\nAnita\nCarolyn\nEdythe\nEra\nEster\nFreddie\nJohnie\nLelia\nLettie\nLona\nLoretta\nMillie\nMittie\nOlivia\nPatricia\nQueen\nReva\nSyble\nTheresa\nAllene\nCecil\nClarice\nClemmie\nEileen\nGeorgie\nKate\nLeota\nLeta\nMatilda\nMaurine\nMavis\nMiriam\nNannie\nOcie\nRosalie\nVelva\nAlpha\nArlene\nBirtha\nBobbie\nCorinne\nDonna\nDortha\nEmogene\nLinnie\nLoraine\nMadeline\nMaud\nNovella\nOrpha\nPearline\nPolly\nRhoda\nVergie\nVersie\nAlva\nArdella\nAudie\nAva\nBennie\nBerniece\nBlanchie\nCharles\nClaudine\nConnie\nEarline\nEathel\nHarriet\nHenrietta\nIris\nJamie\nJanice\nJaunita\nJeffie\nJoe\nLeah\nLovie\nLyda\nMaude\nMayme\nMonnie\nMyrtis\nPansy\nSibyl\nSudie\nTessie\nTheola\nVernie\nWilda\nWilla\nWillia\nZelpha\nZenobia\nAdell\nAileen\nAmelia\nArline\nAudra\nAugusta\nBelle\nBerneice\nBess\nCharlie\nCharline\nCorene\nCynthia\nDelphia\nDolores\nEaster\nElaine\nEstell\nGlenna\nGwendolyn\nIdella\nJackie\nJohn\nKattie\nLennie\nLue\nLuvenia\nMargarette\nMargret\nMaria\nMaurice\nMeredith\nNova\nPatsy\nPaula\nRheba\nRita\nSally\nSophia\nTheda\nVernice\nVina\nVirgil\nZola\nAlmeda\nAltha\nAnnabelle\nAnnette\nAra\nCassie\nCelestine\nChristina\nConstance\nCoy\nDelilah\nDorotha\nEdyth\nEliza\nElvie\nElvira\nEther\nEvia\nFanny\nFreeda\nFreida\nGolda\nHallie\nHannah\nHarriett\nHope\nHortense\nIra\nJeanette\nJoan\nJossie\nKatheryn\nLavelle\nLily\nLucinda\nLuna\nLurline\nMammie\nMazie\nMozella\nMyra\nMyrle\nMyrtice\nMyrtie\nNeta\nOralee\nOva\nOzella\nRessie\nReta\nTennie\nTina\nValeria\nVelda\nVerlie\nWalsie\nWinona\nZella\nMary\nRuby\nRuth\nHelen\nMildred\nDorothy\nHazel\nPauline\nMargaret\nWillie\nFrances\nThelma\nEdna\nGladys\nLois\nVirginia\nMarie\nAnnie\nEthel\nLucille\nMartha\nOpal\nEdith\nElizabeth\nJessie\nBessie\nJuanita\nMattie\nAnna\nAlice\nLouise\nIrene\nBeatrice\nEvelyn\nClara\nLillian\nEmma\nBernice\nElsie\nLillie\nBertha\nVelma\nAlma\nMyrtle\nGeorgia\nVera\nGeneva\nLorene\nNellie\nPearl\nSarah\nGrace\nMabel\nRosie\nEva\nIda\nMinnie\nMamie\nMaxine\nDoris\nJewell\nElla\nLula\nInez\nKatherine\nCatherine\nFlorence\nWilma\nCarrie\nJosephine\nAgnes\nEunice\nFaye\nLena\nViola\nBeulah\nFannie\nOllie\nFlora\nMae\nLaura\nEssie\nGeraldine\nLucy\nBonnie\nJulia\nOra\nVivian\nBlanche\nGertrude\nHattie\nEsther\nEula\nErma\nCora\nMarjorie\nMable\nStella\nChristine\nNina\nReba\nAda\nCleo\nDora\nLola\nAddie\nBetty\nOla\nEffie\nJewel\nMaggie\nImogene\nVerna\nNora\nEllen\nFloy\nRose\nDaisy\nLela\nEstelle\nNancy\nAlberta\nJane\nKathryn\nLottie\nMargie\nAlta\nSusie\nAnn\nViolet\nVirgie\nWanda\nKatie\nIna\nIva\nMarguerite\nSylvia\nDella\nIrma\nNaomi\nRachel\nRosa\nAudrey\nFay\nJohnnie\nMaudie\nAllie\nFlossie\nLucile\nSadie\nErnestine\nNettie\nBillie\nElnora\nFreda\nGoldie\nLeona\nRoberta\nDollie\nMarion\nNorma\nJennie\nJune\nLetha\nGracie\nLee\nOdessa\nWinnie\nDessie\nFrancis\nLeola\nMay\nEtta\nRena\nEleanor\nJimmie\nKathleen\nLaverne\nMuriel\nOphelia\nPearlie\nRebecca\nRosetta\nSallie\nSue\nZelma\nCallie\nEstella\nFern\nMollie\nAmy\nFrankie\nLorraine\nMillie\nNeva\nSybil\nAline\nBertie\nClaudia\nEloise\nIla\nMelba\nNell\nCharlotte\nJoyce\nLora\nNola\nOma\nAlpha\nAnita\nBarbara\nDovie\nEddie\nEileen\nGenevieve\nGussie\nHilda\nJanie\nLizzie\nNona\nCarolyn\nCharlene\nCorine\nEmily\nPatricia\nRetha\nTressie\nDorthy\nEliza\nElma\nFlorene\nFreddie\nGeorgie\nLydia\nNadine\nOdell\nSelma\nAnne\nArtie\nBettie\nBobbie\nChloe\nElva\nHenrietta\nIris\nJean\nJoan\nLinnie\nOlive\nRita\nRoxie\nRuthie\nAllene\nAva\nFlorine\nGertie\nJohnie\nJosie\nLura\nMarian\nMaurine\nSibyl\nTheresa\nVeda\nVida\nWinifred\nBennie\nClaudine\nConnie\nMagnolia\nPansy\nRobbie\nSally\nSara\nSyble\nZella\nAlene\nAudie\nAugusta\nBerniece\nCassie\nCelia\nEmogene\nEra\nEster\nGwendolyn\nHallie\nIma\nJoy\nKate\nLou\nOleta\nQueen\nRubye\nShirley\nVerda\nAdell\nAltha\nCarmen\nClarice\nDonna\nDorris\nFlorida\nHester\nHettie\nIdell\nJeanette\nLettie\nLila\nLuella\nMarcella\nMavis\nNannie\nOcie\nPhyllis\nReva\nTommie\nVada\nVelda\nAudra\nCecil\nEaster\nGlenna\nIona\nJanet\nJoe\nLavada\nLeatha\nLoraine\nLoretta\nLorine\nMaude\nMittie\nMona\nNovella\nPearline\nPeggy\nRubie\nTessie\nVictoria\nZola\nAdeline\nAgatha\nAileen\nAmelia\nAnnis\nAvis\nBirdie\nBlanchie\nCharlie\nCharline\nChristina\nDelia\nDelphia\nEarnestine\nGolda\nIsabel\nJaunita\nJo\nLenora\nLeota\nLessie\nLilly\nLorena\nMadge\nMayme\nMazie\nMozelle\nOlivia\nOna\nOssie\nPolly\nRosalie\nSammie\nSusan\nTheda\nUna\nVersie\nWinona\nAdele\nAmanda\nAngie\nArlene\nCrystal\nDelila\nDolly\nDortha\nEdyth\nElvira\nHellen\nIone\nIvy\nJanice\nJohn\nLennie\nLeora\nLeta\nLona\nMacie\nMargarette\nMargret\nMatilda\nMaybelle\nMerle\nMyrle\nOtha\nRosemary\nSophia\nVelva\nVesta\nViva\nAnnabelle\nBelva\nCaroline\nCecilia\nCordia\nCorinne\nCornelia\nCoy\nCynthia\nDelta\nDixie\nEarline\nEdythe\nElaine\nElease\nElois\nEthelyn\nEther\nExie\nFloye\nFreeda\nFrieda\nJannie\nJettie\nLeila\nMaria\nMaurice\nMinerva\nMozella\nMyra\nNorene\nOlga\nOva\nOzie\nPriscilla\nRessie\nRhoda\nTheo\nTreva\nVergie\nVernie\nZelda\nZettie\nZora\nAbbie\nAdelle\nAnnette\nArlie\nAudry\nBeverly\nCarmon\nClarine\nClaudie\nClotine\nCorrine\nDelois\nDelora\nDelpha\nDolores\nDossie\nEarlene\nEathel\nEllie\nElzie\nErie\nEsta\nEstell\nEvie\nGlennie\nHarriet\nHazle\nHortense\nInis\nIola\nIvory\nJames\nJonnie\nJulie\nKathrine\nKaty\nLavern\nLeah\nLouella\nLudie\nLue\nLulu\nMacel\nMadie\nMatha\nMellie\nModean\nMyrtice\nNerine\nNova\nOctavia\nOvie\nPatsy\nReola\nRosalee\nSavannah\nVella\nVerdie\nVestal\nWilla\nWillene\nWillia\nMary\nMildred\nRuby\nRuth\nHelen\nHazel\nDorothy\nMargaret\nThelma\nGladys\nWillie\nMartha\nPauline\nMarie\nEdna\nFrances\nOpal\nVirginia\nAnnie\nLucille\nLouise\nLois\nEdith\nJuanita\nEthel\nAnna\nElizabeth\nIrene\nJessie\nEvelyn\nElsie\nBernice\nEmma\nBessie\nVelma\nBertha\nLillie\nLillian\nAlice\nGeneva\nClara\nMattie\nLorene\nMyrtle\nVera\nEva\nMinnie\nWilma\nPearl\nNellie\nIda\nDoris\nSarah\nBeatrice\nAlma\nGeorgia\nRosie\nMable\nVivian\nInez\nLucy\nGrace\nViola\nFlorence\nJewell\nMabel\nElla\nEsther\nKatherine\nMaxine\nLaura\nGeraldine\nEunice\nLula\nCatherine\nGertrude\nAgnes\nMamie\nLola\nMarjorie\nFannie\nHattie\nJewel\nJohnnie\nLena\nMarguerite\nCora\nBetty\nJosephine\nMae\nNancy\nOllie\nBeulah\nBlanche\nBonnie\nEula\nMargie\nOra\nAlta\nFlora\nLeona\nDaisy\nFaye\nJulia\nDora\nEffie\nErnestine\nEssie\nSylvia\nAddie\nCarrie\nImogene\nIva\nMaggie\nVerna\nReba\nAudrey\nChristine\nRose\nWanda\nLela\nNorma\nBillie\nCleo\nNora\nAlberta\nStella\nViolet\nRachel\nEllen\nJean\nKathryn\nSusie\nAllie\nAnn\nJoyce\nFlossie\nKathleen\nNettie\nRoberta\nElnora\nErma\nFrankie\nJane\nAda\nFreda\nNaomi\nSadie\nDella\nFloy\nJune\nLottie\nOla\nVirgie\nNina\nBarbara\nElva\nEstelle\nGracie\nRosa\nSybil\nIna\nJimmie\nKatie\nMaudie\nCharlene\nDessie\nDollie\nDovie\nGoldie\nIla\nOdessa\nSibyl\nEstella\nLeola\nLetha\nDorthy\nLila\nNola\nEtta\nMarion\nMelba\nRetha\nWinnie\nAnne\nJohnie\nMay\nGwendolyn\nLizzie\nLora\nSyble\nZelma\nEddie\nEmily\nLee\nMadge\nRuthie\nBobbie\nClaudia\nGussie\nLaverne\nLou\nLucile\nLuella\nRobbie\nSue\nConnie\nDortha\nFlorine\nFrancis\nHenrietta\nIris\nIrma\nMuriel\nNell\nNeva\nSallie\nSara\nSelma\nAline\nLorraine\nRoxie\nBerniece\nClarice\nFay\nJeanette\nJennie\nMarian\nOma\nOphelia\nRosetta\nWinifred\nAnita\nFern\nHester\nJanie\nJosie\nLydia\nTommie\nVeda\nVictoria\nBennie\nCarolyn\nCorine\nEarnestine\nEloise\nLenora\nLinnie\nLoretta\nOlive\nRebecca\nRita\nShirley\nAdell\nBertie\nDonna\nEleanor\nJannie\nJoy\nMerle\nMollie\nNadine\nVada\nEarline\nElma\nHilda\nJo\nLeota\nMaude\nNannie\nOna\nPatricia\nPearlie\nRena\nReva\nSally\nVerda\nVerla\nWilla\nAlene\nAmanda\nArtie\nBirdie\nEileen\nEmogene\nEster\nEugenia\nMaurine\nRubye\nTheda\nUna\nVida\nBettye\nCallie\nCharlie\nCharlotte\nDixie\nDolly\nFlorene\nFreddie\nGertie\nHellen\nJanice\nJoan\nLorena\nLouella\nMagnolia\nMavis\nMillie\nNorene\nOlivia\nQueen\nAugusta\nAva\nBettie\nClaudie\nCynthia\nDona\nEdythe\nElaine\nEliza\nGolda\nJames\nJaunita\nLettie\nLona\nOzella\nPatsy\nPolly\nSusan\nTennie\nTressie\nVernice\nViva\nZola\nAmelia\nArlene\nAudie\nChloe\nGlenna\nHallie\nHettie\nIola\nJoe\nLeta\nLoraine\nMadeline\nMandy\nMargret\nMolly\nNona\nNova\nOcie\nPansy\nTheresa\nVelda\nVelva\nAllene\nAmy\nBlanch\nCarmen\nClemmie\nCornelia\nCorrine\nDottie\nFreeda\nGenevieve\nGeorgie\nIdella\nIma\nJamie\nJanet\nLavada\nLenore\nLessie\nLovie\nLucie\nLucinda\nLue\nMayme\nModean\nMozelle\nMyra\nMyrtice\nOdell\nOleta\nOnie\nOrpha\nOuida\nOva\nPhyllis\nRosemary\nZula\nAlpha\nAltha\nAudra\nAvis\nClaudine\nCorene\nDelia\nDimple\nDorris\nEarlene\nElouise\nGertha\nHope\nIdell\nIone\nJerry\nJohn\nJustine\nLelia\nLeonia\nLorine\nMatilda\nMozell\nOlga\nPearline\nRhoda\nRosalie\nSavannah\nTrudie\nWillene\nZella\nZenobia\nAlva\nAugustine\nBerneice\nBirtha\nBrooksie\nBulah\nCamille\nCarol\nCassie\nCathryn\nCecile\nCelia\nChristene\nClyde\nCorinne\nDaphna\nDelores\nDelphia\nDonnie\nEaster\nEithel\nEllie\nElois\nEra\nEstell\nFrieda\nGearldine\nHannah\nHarriet\nIvy\nJettie\nJoanna\nJoella\nKatharine\nKattie\nKay\nKitty\nLeila\nLorean\nLoyce\nLuvenia\nMadie\nMarcella\nMargarett\nMaria\nMittie\nNita\nNovella\nOdie\nOzell\nSophia\nWinona\nAdele\nAdeline\nAileen\nAlbirda\nAlline\nAvo\nBethel\nBobbye\nCecil\nCharline\nChristeen\nCozetta\nDelpha\nDorothea\nErie\nFlorida\nGenevia\nGloria\nIona\nIrean\nIzola\nJackie\nJeanne\nJeannette\nJulie\nKate\nLavern\nLeah\nLennie\nLeora\nLily\nLyda\nMagdalene\nMarcell\nMargery\nMelva\nModena\nNelle\nOctavia\nOdessie\nPriscilla\nRay\nSylva\nTessie\nTheola\nWilliam\nMary\nRuby\nMildred\nHelen\nDorothy\nRuth\nHazel\nPauline\nThelma\nWillie\nMargaret\nGladys\nMarie\nMartha\nLouise\nFrances\nLucille\nVirginia\nOpal\nAnnie\nEdna\nEdith\nEvelyn\nIrene\nJuanita\nElizabeth\nEthel\nLois\nBessie\nAnna\nEmma\nGeneva\nJessie\nLillie\nBeatrice\nAlice\nMattie\nClara\nBernice\nBertha\nVelma\nLillian\nLorene\nGeorgia\nIda\nMyrtle\nMinnie\nVera\nElsie\nAlma\nEva\nPearl\nRosie\nWilma\nFlorence\nMabel\nDoris\nElla\nMable\nVivian\nViola\nBonnie\nSarah\nLula\nBetty\nLucy\nErma\nGrace\nLola\nMarjorie\nOra\nJewell\nNellie\nLaura\nLena\nKatherine\nEssie\nMaxine\nAgnes\nDora\nCora\nInez\nGeraldine\nJulia\nHattie\nGertrude\nImogene\nViolet\nFannie\nMae\nMaggie\nMargie\nAlberta\nChristine\nLeona\nBeulah\nJewel\nOllie\nCatherine\nEunice\nFaye\nCarrie\nEsther\nMamie\nEula\nNorma\nNina\nReba\nRose\nWanda\nVerna\nEllen\nAddie\nJosephine\nFlora\nLottie\nAudrey\nBlanche\nEstelle\nLela\nNancy\nNaomi\nSusie\nAlta\nJohnnie\nDaisy\nEffie\nJane\nKathryn\nOla\nRachel\nVirgie\nCleo\nDella\nNora\nFrankie\nIva\nLeola\nAda\nJean\nOdessa\nSyble\nKathleen\nNettie\nSibyl\nStella\nZelma\nKatie\nMarguerite\nErnestine\nFloy\nIrma\nMelba\nAnn\nBillie\nLucile\nMarion\nFlossie\nFreda\nGracie\nIna\nNadine\nRoberta\nSylvia\nGoldie\nWinnie\nRosa\nRuthie\nSybil\nElnora\nFrancis\nJimmie\nLaverne\nLee\nLizzie\nAllie\nDollie\nJanie\nJoyce\nEstella\nFern\nCharlotte\nEarline\nElva\nBarbara\nCorine\nDovie\nEloise\nFay\nJohnie\nLetha\nMay\nOlive\nOphelia\nPearlie\nRosetta\nLora\nAline\nBerniece\nJeanette\nJo\nLydia\nMadge\nMagnolia\nOma\nSallie\nFreddie\nGussie\nJennie\nLorraine\nWilla\nBobbie\nDorthy\nEarnestine\nEtta\nHester\nLorine\nMaudie\nRubye\nSadie\nShirley\nVada\nAnne\nCallie\nEmily\nFlorine\nGenevieve\nLou\nPatricia\nRosemary\nRoxie\nSara\nSue\nIris\nJosie\nLila\nNell\nRebecca\nRetha\nTheda\nAlpha\nAmy\nBertie\nBirdie\nGertie\nLenora\nSally\nTheresa\nVeda\nCharlie\nClarice\nDessie\nDortha\nEleanor\nLinnie\nMavis\nMillie\nMollie\nMuriel\nNannie\nNola\nNona\nRobbie\nVergie\nVictoria\nVida\nCarolyn\nClaudia\nCorene\nEster\nFreeda\nGwendolyn\nHenrietta\nHilda\nLessie\nLuella\nMittie\nAlene\nArtie\nAugusta\nAva\nCharline\nEmogene\nMaude\nPeggy\nQueen\nRena\nTommie\nBettie\nChristene\nDolly\nEddie\nElaine\nIla\nJune\nLorena\nNeva\nOlga\nVernice\nAileen\nCharlene\nDixie\nDorris\nEliza\nGeorgie\nHarriet\nIma\nJaunita\nJeanne\nMargarette\nMyrtis\nOna\nSammie\nSelma\nTressie\nVersie\nZella\nAdell\nAllene\nCarmen\nCassie\nConnie\nDelia\nDelois\nEileen\nElma\nGlenna\nIola\nJoy\nLona\nLoraine\nLoretta\nLue\nMarian\nMiriam\nNorene\nOcie\nOctavia\nVesta\nZenobia\nAngie\nAnita\nArlene\nBennie\nBulah\nCornelia\nCorrine\nEaster\nFlorene\nGolda\nHannah\nJeannette\nJoe\nLavern\nLouie\nMarcella\nMaurine\nMerle\nOleta\nOuida\nOva\nReola\nRita\nSavannah\nUna\nWinifred\nAltha\nAmanda\nBethel\nBeverly\nBlanch\nCorinne\nCynthia\nFloye\nHallie\nHellen\nHettie\nIdell\nJanet\nKate\nLouisa\nModean\nNovella\nOdie\nRosalie\nSusan\nTheola\nTillie\nWilda\nAbbie\nAmelia\nArline\nBlanchie\nCecil\nClaudine\nClora\nDean\nDonnie\nDorotha\nEllie\nEstell\nGeorge\nGloria\nHazle\nJodie\nKatheryn\nLeah\nLeatha\nLelia\nLeora\nLilly\nLovie\nLoyce\nLucinda\nMagdalene\nMargarett\nMarry\nMaud\nMazie\nMona\nMozelle\nNova\nOlivia\nPansy\nPearline\nPolly\nReva\nRobert\nRubie\nVernie\nZelda\nZora\nAlline\nAlmeda\nAnnette\nArdelia\nAudra\nBess\nBirtha\nCaldonia\nCaroline\nClementine\nConstance\nCordelia\nDeloris\nDelphia\nDonna\nElouise\nEra\nEugenia\nGlenda\nHildred\nIdella\nImo\nIona\nIzola\nJames\nJerry\nJoan\nLavada\nLennie\nLenore\nLeta\nLina\nLulu\nLura\nMadeline\nMandy\nMontine\nNaoma\nOdell\nOnie\nPhyllis\nReatha\nSam\nTennie\nTessie\nVella\nVelva\nVena\nVerla\nZola\nArlena\nArmanda\nAvanell\nAvis\nBelva\nBerneice\nBeryl\nBeth\nChloe\nChristeen\nCleda\nClemmie\nCordie\nDelma\nDelora\nEdythe\nElisabeth\nElvie\nElvira\nEmmer\nEnola\nEvia\nGail\nGene\nGertha\nGoldia\nIlene\nIsabella\nJackie\nJamie\nJannie\nJudy\nJulie\nLeota\nLily\nLoy\nLyda\nMaria\nMarietta\nMatilda\nMaybell\nMonnie\nMyra\nMyrtie\nNevada\nOdelia\nOlevia\nOreatha\nPatsy\nRhoda\nRutha\nSophia\nTommy\nTrudie\nVela\nVelda\nVerda\nVerlie\nVessie\nVina\nWillene\nZettie\nMary\nDorothy\nRuby\nHelen\nMildred\nRuth\nHazel\nMargaret\nMarie\nThelma\nMartha\nVirginia\nGladys\nPauline\nLucille\nFrances\nJuanita\nWillie\nAnnie\nLois\nOpal\nLouise\nAnna\nEthel\nEvelyn\nEdna\nElizabeth\nIrene\nAlice\nEdith\nBeatrice\nMattie\nWilma\nBernice\nLillie\nMinnie\nLillian\nGeneva\nBessie\nEmma\nVelma\nLorene\nJessie\nDoris\nEva\nIda\nVivian\nVera\nBertha\nElsie\nSarah\nBetty\nGeorgia\nMyrtle\nClara\nElla\nRosie\nKatherine\nGeraldine\nViolet\nMaxine\nNellie\nAlma\nGrace\nPearl\nJewell\nMabel\nLaura\nBonnie\nViola\nJulia\nMarjorie\nFlorence\nMable\nMae\nWanda\nCora\nInez\nHattie\nFannie\nNancy\nChristine\nJosephine\nNorma\nMamie\nEssie\nJewel\nLena\nLula\nEsther\nFlora\nImogene\nAudrey\nLola\nReba\nAgnes\nOra\nEula\nCatherine\nOllie\nGertrude\nKathryn\nDaisy\nDora\nLela\nLucy\nMargie\nStella\nNaomi\nJean\nBeulah\nErma\nFaye\nMarguerite\nBlanche\nIva\nJane\nVirgie\nEllen\nMaggie\nOla\nBillie\nErnestine\nEunice\nJohnnie\nLeona\nVerna\nAda\nCarrie\nCleo\nJoyce\nKathleen\nNora\nRose\nEffie\nLottie\nSylvia\nAddie\nKatie\nOdessa\nRosa\nNina\nSusie\nGracie\nAlberta\nGoldie\nNettie\nFern\nJune\nRachel\nElnora\nDella\nDorthy\nFloy\nFay\nMarion\nPearlie\nAnn\nBarbara\nIrma\nSybil\nAlta\nEtta\nLorraine\nNadine\nSadie\nWinnie\nAline\nFlossie\nIna\nJimmie\nLeola\nMelba\nFrankie\nLee\nNola\nSara\nDollie\nEleanor\nLetha\nSyble\nCorine\nFrancis\nFreda\nLucile\nShirley\nWilla\nZelma\nElva\nJanie\nJennie\nAmy\nCallie\nCharlene\nEster\nAnne\nMaudie\nOphelia\nQueen\nRebecca\nRoberta\nEddie\nFreddie\nLaverne\nNell\nAllie\nBirdie\nCarolyn\nDonna\nEarnestine\nEloise\nGenevieve\nMadge\nMarian\nMay\nRuthie\nSibyl\nEstelle\nJosie\nLenora\nLoretta\nMuriel\nRobbie\nRosetta\nRoxie\nSallie\nArtie\nCharlotte\nHenrietta\nHilda\nLizzie\nLydia\nNona\nSue\nVesta\nAnita\nDortha\nJaunita\nLorine\nOma\nRosalie\nVida\nBertie\nConnie\nEstella\nJoy\nLeta\nNeva\nPatricia\nBobbie\nDixie\nEarline\nEliza\nHester\nIma\nIris\nJanice\nLorena\nMadeline\nNova\nRena\nAugusta\nBennie\nCarmen\nClarice\nDovie\nFlorine\nGussie\nHallie\nJoan\nJohnie\nLou\nMarcella\nRetha\nRosemary\nSally\nTressie\nVada\nVeda\nAileen\nAnnette\nElma\nEmily\nEra\nGeorgie\nJeanette\nMavis\nMollie\nPolly\nRubye\nAlene\nAllene\nAva\nBerniece\nCharlie\nEileen\nEmogene\nGwendolyn\nIla\nIola\nJackie\nLinnie\nLuella\nMagnolia\nMaude\nMerle\nTommie\nZella\nCecil\nClaudia\nDorotha\nFreeda\nHarriet\nIdell\nJacqueline\nMillie\nOleta\nOlga\nOuida\nPearline\nTheresa\nAudra\nBettie\nBettye\nCeleste\nCorrine\nDelma\nDelphia\nJannie\nKate\nKatheryn\nLavada\nLila\nMatilda\nMyrtis\nNannie\nPatsy\nReva\nVernice\nAdell\nAlpha\nCelia\nCharline\nClyde\nCorinne\nDessie\nDolores\nDorothea\nFlorene\nFrieda\nGertie\nJanet\nJo\nLavern\nLeota\nLily\nLora\nLoraine\nLouella\nMaxie\nOdell\nPansy\nPhyllis\nTessie\nTheda\nUna\nVelva\nVersie\nYvonne\nCassie\nClaudine\nEarlene\nElaine\nEstell\nGlenda\nHellen\nIona\nJames\nJeanne\nKathrine\nLeora\nLessie\nLettie\nMyrl\nOlivia\nPeggy\nRita\nSelma\nSusan\nVenita\nVictoria\nWillene\nAltha\nAmanda\nAngeline\nArlene\nAudry\nBerneice\nBlanchie\nBulah\nCaroline\nCornelia\nDelois\nDolly\nElvie\nGene\nGloria\nHettie\nIdella\nJettie\nLeatha\nLennie\nLilly\nLona\nLorean\nLucinda\nLura\nLyda\nMaurine\nMittie\nMolly\nMozell\nMozelle\nNelda\nOctavia\nOlive\nPaula\nRobert\nVerdie\nWillia\nWinifred\nAleene\nAlline\nAra\nArline\nAvis\nBelva\nChloe\nClaudie\nConstance\nCorene\nDelena\nDimple\nEaster\nEmmer\nEugenia\nExie\nFlorida\nGertha\nGolda\nImo\nIra\nIvy\nJamie\nJayne\nJerry\nLeah\nLeo\nLina\nLovie\nMadie\nMandy\nMerry\nMyra\nNeta\nOtha\nOva\nPinkie\nRubie\nSophia\nTreva\nVerda\nVerla\nVina\nViva\nWillodean\nZelda\nZola\nAltie\nAlyce\nArdell\nArdella\nArlena\nAudie\nBernadine\nBerta\nCathrine\nCecile\nCelesta\nChristene\nCorean\nCynthia\nDana\nDelphine\nEsta\nEstel\nEttie\nEvangeline\nFaith\nFanny\nFreida\nGearldine\nGladis\nGustava\nHannah\nJosiephine\nJudy\nLaurene\nLida\nLinda\nLonnie\nLoy\nMarcelle\nMargarette\nMargurite\nMariah\nMarilyn\nMickey\nMona\nNelle\nNeoma\nNorene\nNorine\nNovella\nOcie\nOneta\nOrene\nParalee\nReatha\nRhoda\nSam\nSammie\nTheola\nTina\nTiny\nVelda\nVeola\nWilhelmina\nZettie\nZona\nZula\nMary\nDorothy\nRuby\nHelen\nMildred\nRuth\nMargaret\nHazel\nVirginia\nWillie\nMartha\nJuanita\nFrances\nPauline\nAnnie\nLouise\nGladys\nThelma\nMarie\nLois\nEvelyn\nAnna\nIrene\nLucille\nEdna\nBetty\nEdith\nJessie\nAlice\nOpal\nLillian\nClara\nEthel\nLillie\nDoris\nElizabeth\nWilma\nEmma\nVelma\nAlma\nBernice\nLorene\nIda\nMaxine\nRosie\nBeatrice\nWanda\nMarjorie\nVera\nMinnie\nBessie\nGeneva\nElsie\nMattie\nBertha\nEva\nVivian\nMargie\nGrace\nMyrtle\nKatherine\nNorma\nSarah\nElla\nGeraldine\nAudrey\nNellie\nPearl\nGeorgia\nFlorence\nBonnie\nChristine\nFlora\nMabel\nCatherine\nJulia\nMable\nJosephine\nFannie\nMae\nViola\nJewell\nLula\nInez\nMaggie\nLena\nCora\nLaura\nBeulah\nEula\nEssie\nJean\nEllen\nEunice\nMelba\nHattie\nEsther\nOra\nGertrude\nDaisy\nDora\nFaye\nJewel\nErma\nLola\nNaomi\nBillie\nLucy\nImogene\nViolet\nKathryn\nMamie\nOllie\nCarrie\nAda\nNora\nStella\nLeona\nLela\nBlanche\nNancy\nJane\nAgnes\nJohnnie\nOla\nAlberta\nJoyce\nLeola\nMarguerite\nReba\nAllie\nLottie\nJune\nVirgie\nAddie\nNina\nSybil\nLaverne\nAnn\nEffie\nKathleen\nRosa\nErnestine\nIla\nRuthie\nCleo\nEloise\nFlossie\nFrancis\nFreda\nGracie\nNadine\nRachel\nSusie\nIva\nVerna\nAlta\nIrma\nRose\nWinnie\nCharlene\nIna\nSallie\nEtta\nNettie\nSyble\nDorthy\nLee\nEmily\nMarion\nZelma\nBarbara\nDollie\nElnora\nRoberta\nSara\nSylvia\nBobbie\nEstella\nHenrietta\nLucile\nDessie\nDortha\nEddie\nFay\nGoldie\nMuriel\nFloy\nNell\nCharlotte\nClaudia\nDella\nEleanor\nFern\nFrankie\nJennie\nKatie\nMarian\nRebecca\nAnita\nAva\nCarolyn\nFreddie\nGwendolyn\nHilda\nJaunita\nJimmie\nLorraine\nMadge\nMaudie\nRosetta\nDovie\nEarnestine\nJo\nJohnie\nOdessa\nOma\nShirley\nEmogene\nEstelle\nJosie\nLetha\nLora\nMay\nPearlie\nSue\nAmy\nArtie\nCallie\nElwanda\nJeanette\nLoretta\nPatricia\nRoxie\nSadie\nLenora\nLuella\nNeva\nQueen\nRetha\nTressie\nWilla\nCornelia\nEarlene\nEster\nGenevieve\nHarriet\nIris\nLizzie\nLorine\nMerle\nNova\nOlive\nOphelia\nTommie\nAllene\nAnne\nBerniece\nCorine\nGussie\nJanet\nLinnie\nMagnolia\nMavis\nOdell\nSally\nVida\nAline\nAnnabelle\nBertie\nBirdie\nConnie\nJanice\nLou\nLydia\nMarcella\nNona\nPatsy\nTheda\nFlorene\nFlorine\nHester\nLessie\nLila\nMyra\nSibyl\nWillene\nCassie\nGloria\nIma\nJoy\nLettie\nLily\nMollie\nRena\nRubye\nAileen\nAlene\nAlpha\nCecil\nClarice\nCorene\nDolores\nEugenia\nHellen\nJames\nJanie\nMarilyn\nPansy\nPeggy\nTheresa\nVerla\nCarol\nDixie\nDorris\nEarline\nElaine\nEliza\nElma\nElva\nElvie\nEra\nGertie\nIola\nJackie\nJoe\nJohn\nLavada\nLavern\nMadeline\nMadie\nMelva\nNannie\nNola\nPearline\nRita\nRobbie\nRubie\nAdell\nAvis\nBennie\nBettie\nChloe\nChristene\nConstance\nDimple\nExie\nFlorida\nGeorgie\nHettie\nIdell\nLeslie\nLura\nMayme\nMillie\nOzella\nRosemary\nUna\nVeda\nVernell\nVictoria\nArlene\nCarmen\nClaudie\nDolly\nDonna\nEaster\nEileen\nGlenda\nGolda\nIona\nJayne\nJulie\nKattie\nLeta\nMarcia\nMargret\nMaurine\nMazie\nNeoma\nOlivia\nOna\nOuida\nPolly\nSavannah\nSelma\nVelda\nVerda\nAbbie\nAugusta\nBette\nCathrine\nCordelia\nDeloris\nDelphia\nEdwina\nElois\nEtter\nFreeda\nGlenna\nHannah\nIlene\nIra\nJeanne\nJoan\nJonnie\nKate\nLeoma\nLeota\nLinda\nLouella\nMagdalene\nMozelle\nNovella\nOleta\nOssie\nOva\nRay\nRelda\nRosalie\nSula\nTennie\nTessie\nVada\nVernice\nWinifred\nZelda\nAlline\nAnnette\nAudie\nAudry\nBettye\nBlanch\nCharlie\nCharline\nClaudine\nCorean\nCorinne\nDelcenia\nDorotha\nDottie\nEdythe\nElise\nEstell\nEuna\nGoldia\nHildred\nHortense\nIdella\nIvy\nJerry\nLelia\nLoraine\nLue\nMaria\nMaurice\nMaye\nMozella\nMyrtis\nNevada\nNoma\nOdean\nOlga\nOuita\nPhyllis\nRosalee\nRutha\nSophia\nSusan\nTreva\nVelva\nVergie\nVesta\nWinona\nZella\nZola\nAdeline\nAlmeda\nAltha\nAlyce\nAmanda\nAnnis\nArgie\nArlie\nAtha\nBernelle\nBernita\nBillye\nBirtha\nBlanchie\nBobby\nCaroline\nCelestine\nCharlsie\nClemmie\nCorrine\nCozetta\nDelia\nDelois\nDelpha\nDonnie\nDorothea\nEartha\nElouise\nEugene\nEver\nGail\nGertha\nImo\nIzola\nJacqueline\nJamie\nJoanna\nLilly\nLona\nLucinda\nLuvenia\nLyda\nMandy\nMarcelle\nMargurite\nMarylee\nMaud\nMiriam\nMittie\nModean\nModena\nMolly\nMona\nNaoma\nNatalie\nOlevia\nOneda\nOrene\nOtha\nPinkie\nRobert\nRoma\nRubbie\nSam\nTommy\nVerdie\nVerlie\nVersie\nVeta\nYvonne\nZelpha\nZona\nMary\nDorothy\nHelen\nMildred\nRuby\nRuth\nMargaret\nVirginia\nHazel\nJuanita\nWillie\nAnnie\nMartha\nThelma\nFrances\nEvelyn\nPauline\nLouise\nGladys\nBetty\nMarie\nLucille\nLois\nAnna\nEdith\nEdna\nOpal\nAlice\nEthel\nDoris\nEmma\nJessie\nElizabeth\nWanda\nLillian\nIrene\nLillie\nBernice\nBeatrice\nMattie\nClara\nAlma\nGeneva\nWilma\nBertha\nBessie\nMaxine\nMyrtle\nMarjorie\nMinnie\nIda\nRosie\nElsie\nGeorgia\nVera\nKatherine\nVelma\nPearl\nGeraldine\nEva\nFlorence\nJosephine\nVivian\nLorene\nImogene\nNorma\nBonnie\nSarah\nMargie\nLula\nInez\nNellie\nViola\nChristine\nElla\nJewell\nLaura\nCora\nCatherine\nLola\nDaisy\nMae\nAudrey\nHattie\nJewel\nMable\nEllen\nFannie\nJean\nMaggie\nOllie\nGrace\nMelba\nViolet\nErma\nEula\nCarrie\nJohnnie\nLucy\nBillie\nEunice\nJulia\nGertrude\nMamie\nOra\nFlora\nSylvia\nLena\nErnestine\nMabel\nNancy\nRachel\nReba\nStella\nBeulah\nEsther\nKathryn\nNaomi\nSadie\nAlberta\nJoyce\nEssie\nFaye\nCleo\nFlossie\nOla\nLaverne\nVerna\nVirgie\nIva\nNettie\nAgnes\nNina\nRose\nKathleen\nNora\nOdessa\nSyble\nAddie\nDora\nGracie\nIrma\nAda\nLela\nMarion\nDorthy\nKatie\nRosa\nSusie\nEloise\nFreda\nIna\nJimmie\nRuthie\nBlanche\nFrankie\nJane\nLeola\nLottie\nMarguerite\nLeona\nMaudie\nEstelle\nCharlotte\nDella\nElva\nEstella\nFloy\nGoldie\nJune\nGloria\nLenora\nEffie\nElnora\nFrancis\nPatricia\nRoberta\nShirley\nSue\nBarbara\nEtta\nWinnie\nAnn\nDortha\nLetha\nNadine\nSybil\nEarnestine\nEddie\nLizzie\nLorine\nAlta\nFlorine\nLee\nSara\nAllie\nBettie\nCarolyn\nMavis\nNeva\nNola\nRebecca\nRobbie\nTommie\nZelma\nBobbie\nCallie\nCharlene\nDollie\nLucile\nOphelia\nPearlie\nTressie\nDovie\nGwendolyn\nMuriel\nAnita\nBertie\nConnie\nDessie\nJennie\nJohnie\nJoy\nMillie\nQueen\nRena\nRetha\nVernice\nVida\nDonna\nEmily\nFay\nIla\nJeanette\nTheresa\nWilla\nAline\nAmy\nAnne\nClaudia\nLorraine\nLydia\nMerle\nNona\nOma\nPeggy\nRosetta\nBirdie\nEleanor\nElwanda\nFreddie\nHilda\nLoraine\nLou\nMadge\nPearline\nRita\nSally\nSelma\nVictoria\nAlene\nArtie\nCharline\nFern\nFlorene\nHester\nJanie\nMarilyn\nNell\nZelda\nZella\nCorine\nEileen\nEmogene\nGenevieve\nLila\nMarcella\nMay\nPatsy\nPhyllis\nPolly\nVernell\nAmanda\nArlene\nBennie\nBerniece\nCecil\nDorotha\nEarline\nGeorgie\nGlenda\nJacqueline\nJanice\nJeanne\nJosie\nLessie\nLorena\nLoretta\nLuella\nMyrtis\nOlive\nRubye\nSallie\nVesta\nBettye\nHenrietta\nIma\nJaunita\nJo\nKate\nLora\nMagnolia\nMaude\nMaurine\nMona\nOcie\nOna\nOuida\nReva\nRoxie\nVeda\nZola\nCharlie\nElouise\nEugenia\nFreida\nGertie\nGlenna\nJerry\nLilly\nMargret\nMaria\nMittie\nMyra\nRosemary\nTheda\nVerda\nWinifred\nAggie\nAileen\nAngie\nAnnabelle\nAudie\nBirtha\nCassie\nDelores\nDelphia\nDixie\nEarlene\nEaster\nElma\nHazle\nIdell\nIlene\nIris\nLeah\nLinda\nLinnie\nLouella\nLovie\nMaple\nMarietta\nMollie\nNannie\nOzell\nReola\nSammie\nSibyl\nSusan\nVersie\nAllene\nAlmeda\nAlpha\nAmelia\nAudra\nCecile\nCharles\nClarice\nCorene\nDolores\nDonnie\nEliza\nEster\nFrieda\nGussie\nIvory\nJoan\nJosiephine\nLavada\nLeora\nLoyce\nLue\nMagdalene\nMarian\nMozelle\nNova\nOdell\nOleta\nOlivia\nWillene\nWynona\nZora\nZula\nAletha\nAlmeta\nAltha\nAnnette\nAugusta\nBethel\nCarmen\nCaroline\nCecilia\nDelma\nDorris\nElaine\nEstell\nFreeda\nGeorge\nHallie\nHannah\nHellen\nHettie\nIdella\nJanet\nJannie\nJettie\nJohn\nLeota\nLeta\nLily\nLudie\nMandy\nMargery\nMontine\nNan\nNeoma\nNorene\nPansy\nPriscilla\nRhoda\nRosia\nRutha\nUna\nVelda\nVerla\nVernie\nAlean\nArline\nAvis\nBernadine\nBeth\nBonita\nBulah\nCeola\nChloe\nClementine\nClemmie\nCleta\nCorinne\nDelia\nEarma\nElease\nEuna\nHarriett\nIola\nIsabell\nIzola\nJanette\nJeffie\nKattie\nLavelle\nLavern\nLawanda\nLouis\nLucinda\nLurline\nLuvenia\nMadeline\nMadie\nMalinda\nMargarett\nMaxie\nModean\nMosella\nOzella\nPearlene\nPinkie\nRheba\nRubie\nTennie\nVada\nVelva\nViva\nWilliam\nWinona\nYvonne\nAdeline\nAdell\nAudry\nAugustine\nAva\nBillye\nCathrine\nCelestine\nCelia\nChristene\nClaudie\nClaudine\nColleen\nCornelia\nDana\nDaphne\nDeloris\nDolly\nDorothea\nDottie\nEarlee\nEmmer\nFlorida\nFloye\nFredia\nGene\nGertha\nHarriet\nImo\nIra\nIsabella\nJackie\nJames\nJoe\nJudy\nKaty\nLennie\nLettie\nLona\nMarcelle\nMargarette\nMaud\nMina\nMolly\nNeola\nNoble\nOdessie\nOdie\nOlene\nOlevia\nOlga\nOneta\nOval\nOzie\nPairlee\nReatha\nRosalie\nRoy\nSophia\nTessie\nVella\nVena\nVennie\nVerdie\nVerline\nVernon\nWillia\nMary\nDorothy\nHelen\nMildred\nRuby\nRuth\nVirginia\nWillie\nMargaret\nJuanita\nMartha\nFrances\nBetty\nHazel\nThelma\nMarie\nLouise\nGladys\nPauline\nEvelyn\nAnnie\nLois\nAnna\nEdna\nIrene\nOpal\nElizabeth\nLucille\nWanda\nAlice\nDoris\nBernice\nEdith\nWilma\nLillie\nEthel\nJessie\nGeneva\nEmma\nClara\nMarjorie\nMaxine\nBeatrice\nLillian\nVelma\nMargie\nRosie\nGeraldine\nLorene\nIda\nGeorgia\nMattie\nMinnie\nAlma\nMyrtle\nElla\nElsie\nNellie\nBessie\nVera\nSarah\nBertha\nFlorence\nEva\nVivian\nNorma\nBonnie\nLucy\nMable\nLola\nChristine\nImogene\nCatherine\nBillie\nKatherine\nHattie\nJean\nNaomi\nGrace\nMelba\nInez\nLaura\nEssie\nLula\nReba\nMabel\nMamie\nNina\nFannie\nJosephine\nViolet\nFlora\nJewell\nMae\nNancy\nPearl\nBeulah\nJoyce\nViola\nEula\nJohnnie\nJulia\nFaye\nCora\nErma\nEsther\nKathryn\nRachel\nAgnes\nErnestine\nLena\nRose\nEllen\nAda\nBarbara\nEunice\nDaisy\nMaggie\nBlanche\nIva\nJewel\nLela\nGertrude\nAudrey\nDella\nKathleen\nOra\nCharlene\nDora\nEffie\nStella\nRosa\nAlberta\nAllie\nRuthie\nSylvia\nVerna\nVirgie\nAddie\nCarrie\nGracie\nJane\nKatie\nMarion\nOla\nOllie\nAnn\nLeona\nEloise\nLottie\nMarguerite\nCleo\nFrankie\nPeggy\nSusie\nIrma\nNettie\nFrancis\nFreda\nNora\nSallie\nJimmie\nRobbie\nRoberta\nSara\nShirley\nSyble\nDorthy\nFlossie\nEarnestine\nJaunita\nLaverne\nOdessa\nZelma\nCarolyn\nElnora\nGoldie\nLee\nPatricia\nSybil\nNadine\nSadie\nWilla\nBobbie\nEddie\nHester\nIna\nSue\nJune\nClaudia\nFern\nHenrietta\nIla\nLeola\nMarian\nOphelia\nWinnie\nAlta\nEtta\nFlorine\nGenevieve\nJoan\nMarilyn\nSally\nBettye\nCharlotte\nEstella\nFay\nLila\nLorine\nMaudie\nMay\nTressie\nVernice\nArtie\nBettie\nJacqueline\nJoe\nLydia\nRebecca\nRosetta\nRoxie\nConnie\nDessie\nDollie\nEarline\nFreddie\nIris\nLessie\nLorraine\nMerle\nPatsy\nRosemary\nBirdie\nCorine\nGertie\nLuella\nMillie\nNeva\nVida\nElva\nJohnie\nJoy\nOleta\nOlivia\nPearlie\nRetha\nRubye\nAva\nCharlie\nDovie\nEstelle\nGloria\nGwendolyn\nIma\nJames\nJeanne\nJosie\nLenora\nLou\nMavis\nNannie\nNeoma\nQueen\nCarmen\nDolly\nDortha\nEleanor\nEmogene\nEster\nEuna\nIra\nJanie\nJeanette\nJennie\nJerry\nLucile\nNola\nNona\nOlive\nOma\nZella\nAline\nArlene\nBennie\nBertie\nEileen\nFloy\nHellen\nLora\nNell\nNovella\nPhyllis\nTheresa\nVersie\nClarice\nCorene\nDelores\nEarlene\nEmily\nGlenna\nHarriet\nJanet\nJanice\nLetha\nLoretta\nLue\nMadeline\nMadge\nMuriel\nOuida\nRosalie\nTommie\nVeda\nVernell\nAmy\nAngie\nBerniece\nChristene\nClaudine\nDixie\nLelia\nLucinda\nMarcella\nPolly\nRegina\nRena\nReva\nSammie\nSelma\nSibyl\nSusan\nVada\nVerda\nWinifred\nAileen\nAlmeda\nAlpha\nAnita\nAretha\nAugusta\nBette\nCallie\nCaroline\nCharline\nDelia\nDorotha\nDorris\nEstell\nFlorene\nFlorida\nGeorgie\nGlenda\nGussie\nIdell\nJo\nLizzie\nLorean\nMaurine\nMelva\nMiriam\nMollie\nOzella\nUna\nAlene\nAmelia\nAvis\nBerneice\nBlanch\nClaudie\nDolores\nDonnie\nElma\nElouise\nEther\nFreeda\nFreida\nGolda\nHettie\nIola\nIzola\nLavada\nLeota\nLeta\nLexie\nLilly\nLura\nMayme\nOna\nRita\nSavannah\nTreva\nVernie\nVesta\nWilda\nWillene\nAletha\nAnnabelle\nAnne\nArline\nBilly\nCassie\nCecil\nDonna\nDorothea\nEliza\nEra\nEugenia\nHilda\nIone\nJeanetta\nJoanna\nJohn\nKatheryn\nLinda\nLinnie\nMargret\nMarlene\nMaybelle\nMona\nRessie\nRubie\nVergie\nViva\nWilliam\nWinona\nZola\nZula\nAdell\nAllene\nArgie\nAudie\nAudra\nClora\nColleen\nCorinne\nCornelia\nCrystal\nDean\nDimple\nEarlee\nEaster\nElwanda\nExie\nFrieda\nGertha\nGladis\nIvory\nJackie\nJulie\nKattie\nLona\nLorena\nLovie\nMaple\nMargery\nMaud\nMaudine\nMittie\nModean\nMozella\nMyrtis\nNova\nOlevia\nOneida\nOnita\nOrene\nReola\nRutha\nSamella\nVelda\nVictoria\nAgatha\nAlla\nAlva\nAnnette\nArdell\nArizona\nBerta\nBirtha\nBlanchie\nBonita\nCarol\nCathrine\nCelia\nCeola\nChloie\nClaire\nClemmie\nConstance\nCynthia\nDeborah\nDona\nEdwina\nEdythe\nElaine\nElvie\nEnid\nGearldine\nGenell\nGustava\nHelene\nHenry\nHildred\nIlene\nImo\nIona\nIrine\nJanelle\nJeraldine\nJerlene\nJoann\nJudy\nJustine\nKathrine\nKaty\nLavern\nLeana\nLeora\nLeslie\nMagnolia\nMaria\nMaude\nMolly\nMontine\nOdell\nOdessie\nOlga\nOva\nPansy\nRay\nRobert\nRosalee\nSilvia\nVelta\nVerlie\nVertie\nVonda\nWillodean\nWynona\nZenobia\nMary\nDorothy\nRuby\nHelen\nMildred\nBetty\nRuth\nJuanita\nVirginia\nMargaret\nMartha\nFrances\nLouise\nHazel\nWillie\nThelma\nAnna\nLois\nAnnie\nGladys\nMarie\nPauline\nEvelyn\nWanda\nDoris\nEdna\nEmma\nGeneva\nJessie\nElizabeth\nIrene\nOpal\nWilma\nLillie\nAlice\nLucille\nEdith\nClara\nMattie\nBonnie\nGeraldine\nMaxine\nMyrtle\nVelma\nBeatrice\nVera\nEthel\nBernice\nImogene\nLorene\nLillian\nNorma\nSarah\nBertha\nRosie\nAlma\nMargie\nElsie\nBessie\nChristine\nMarjorie\nIda\nEva\nMinnie\nGeorgia\nCatherine\nKatherine\nElla\nBillie\nNellie\nErma\nVivian\nLola\nLula\nPearl\nLaura\nJoyce\nMae\nNancy\nViola\nGrace\nJean\nEunice\nJohnnie\nMable\nLena\nDora\nReba\nRose\nBeulah\nCarrie\nJulia\nMamie\nViolet\nLucy\nFannie\nFlorence\nKathryn\nEllen\nEula\nJewell\nJosephine\nEsther\nInez\nJewel\nMabel\nMelba\nDorthy\nBarbara\nFlora\nOla\nOllie\nAgnes\nEssie\nVerna\nNaomi\nOra\nHattie\nNina\nJane\nGracie\nLela\nLeona\nMaggie\nRuthie\nCora\nJune\nRachel\nAlberta\nAudrey\nKathleen\nDaisy\nLeola\nAddie\nElnora\nGertrude\nNora\nStella\nPeggy\nVirgie\nEffie\nPatricia\nDortha\nIva\nMarion\nNadine\nWinnie\nFaye\nIrma\nRoberta\nSylvia\nBettye\nLottie\nNettie\nShirley\nAnn\nCarolyn\nKatie\nRosa\nErnestine\nJacqueline\nLaverne\nLee\nSusie\nFlossie\nJimmie\nSadie\nAda\nCharlene\nEtta\nOdessa\nFrankie\nIna\nLenora\nAlta\nBlanche\nDella\nJosie\nRosetta\nCharlotte\nCorine\nEarnestine\nSybil\nCleo\nLetha\nPatsy\nAline\nAllie\nFrancis\nFreda\nGloria\nGoldie\nMarguerite\nMerle\nOphelia\nHilda\nLila\nSyble\nFern\nMaudie\nMay\nRosemary\nZelma\nBerniece\nClaudia\nEddie\nIla\nQueen\nRena\nSue\nBobbie\nEstelle\nFay\nJanie\nJo\nMarian\nRebecca\nBettie\nGlenda\nJeanne\nLucile\nPearlie\nSara\nAmy\nEmogene\nFloy\nHenrietta\nHester\nJeanette\nJennie\nJoy\nLessie\nLuella\nOma\nRetha\nSallie\nDollie\nEleanor\nEmily\nLoretta\nOleta\nWilla\nAdell\nConnie\nDonna\nEster\nFlorene\nJackie\nJames\nLinnie\nNannie\nNola\nAlene\nBirdie\nBlanch\nCharline\nDessie\nDixie\nGeorgie\nHellen\nJohnie\nLizzie\nLorraine\nLou\nMuriel\nPhyllis\nRoxie\nSally\nVeda\nAlpha\nAnne\nCassie\nEarline\nEloise\nElva\nGenevieve\nIma\nMarcella\nMarilyn\nMavis\nNovella\nRobbie\nTommie\nBennie\nConstance\nEliza\nElma\nGertie\nGussie\nIris\nJaunita\nJoan\nMadge\nNell\nNeva\nTheresa\nTressie\nVida\nAileen\nAllene\nClarice\nDorris\nEstella\nFreddie\nGeorge\nGwendolyn\nJanice\nPolly\nRita\nRubye\nTheda\nBertie\nCallie\nDolly\nEugenia\nEuna\nFreeda\nHazle\nLeota\nLinda\nLorine\nMadeline\nMiriam\nReola\nVictoria\nAltha\nAnita\nArlene\nDorotha\nElwanda\nFlorine\nJanet\nJohn\nLavern\nMargarette\nMollie\nOcie\nOlga\nOlive\nRegina\nReva\nSibyl\nVernice\nArtie\nCharlie\nClaudine\nDelma\nDelores\nDonnie\nGlenna\nHarriet\nIona\nJettie\nJudy\nLeatrice\nLona\nLoraine\nLue\nLydia\nMagnolia\nMillie\nMona\nNova\nOzell\nPansy\nVerla\nVernell\nWilliam\nAnnette\nAudie\nAvis\nBette\nCarmen\nCaroline\nCecil\nCharles\nChristene\nDovie\nEaster\nElaine\nElouise\nIola\nJannie\nJonnie\nLeta\nLorena\nMargarett\nMaude\nMaurine\nMelva\nMyra\nMyrtis\nNita\nOdean\nOna\nSelma\nSusan\nTreva\nVergie\nWilda\nWilladean\nWinona\nAlva\nAmanda\nAudra\nAva\nBerta\nCelia\nColleen\nCorene\nCorinne\nDeborah\nDeloris\nDolores\nExie\nFlorida\nGearldine\nGirtha\nIdell\nIdella\nIsabell\nJoe\nKatheryn\nLavada\nLily\nLoyce\nMargery\nMaria\nMaud\nOlivia\nOuida\nPearline\nPriscilla\nReta\nVerda\nVerline\nVersie\nVesta\nWinifred\nZella\nAlline\nBerneice\nBilly\nCathryn\nChristeen\nChristina\nCynthia\nDelpha\nDelphia\nEarlene\nEarnesteen\nEathel\nEsta\nEver\nGene\nHarriett\nJanette\nJetta\nLeatha\nLelia\nLeora\nLexie\nLora\nLuceal\nMargret\nMaxie\nMayme\nMittie\nMolly\nMozelle\nNeoma\nNona\nParlee\nRubie\nRutha\nSammie\nSavannah\nUna\nVelva\nVena\nVerdia\nVerma\nWilladeen\nWillene\nZenobia\nZettie\nAdeline\nAllean\nAlmeda\nAmelia\nAngie\nAnnabelle\nArgie\nBeaulah\nBeverly\nBobby\nBulah\nChristen\nCleola\nClyde\nCornelia\nCorrine\nDaphne\nEldora\nElois\nEmmer\nEris\nEutha\nFlordia\nFrieda\nGertha\nGretchen\nHallie\nHannah\nHarriette\nIlene\nIra\nIsabelle\nIvy\nIzola\nJerry\nJohnny\nJosiephine\nJudith\nKathrine\nKitty\nLeah\nLera\nLettie\nLorean\nLubertha\nLura\nMammie\nMaurice\nNaoma\nNelda\nNella\nNelle\nNeomia\nOdell\nOlene\nOneida\nOssie\nOva\nRay\nRoma\nRosella\nRoy\nSam\nTheressa\nTwyla\nVada\nVelta\nVerlie\nVeta\nVina\nVinita\nViva\nWillia\nZelda\nZora\nZula\nMary\nDorothy\nBetty\nHelen\nRuby\nMildred\nRuth\nVirginia\nMargaret\nMartha\nJuanita\nWillie\nFrances\nAnnie\nHazel\nWanda\nGladys\nDoris\nPauline\nEvelyn\nThelma\nLois\nLouise\nMarie\nAnna\nWilma\nMattie\nEmma\nBernice\nEdna\nEdith\nJessie\nEthel\nGeneva\nLucille\nMaxine\nElizabeth\nAlice\nMargie\nIrene\nOpal\nLillie\nBeatrice\nNorma\nBillie\nAlma\nVelma\nRosie\nGeorgia\nSarah\nBertha\nImogene\nLorene\nMarjorie\nBonnie\nIda\nVera\nMinnie\nBessie\nClara\nEva\nJoyce\nLillian\nGeraldine\nElsie\nCatherine\nJean\nKatherine\nLaura\nMyrtle\nJewel\nMae\nElla\nLola\nNellie\nVivian\nJohnnie\nGrace\nMable\nInez\nFlorence\nViola\nPearl\nReba\nCarrie\nKathryn\nLula\nEsther\nOllie\nVerna\nJewell\nErma\nHattie\nLena\nMelba\nPatricia\nFannie\nJosephine\nChristine\nDaisy\nFlora\nJulia\nLucy\nMabel\nNina\nShirley\nBeulah\nDora\nErnestine\nEula\nNancy\nAgnes\nAnn\nCora\nEssie\nRachel\nEllen\nBarbara\nEunice\nRose\nMaggie\nBobbie\nMamie\nNora\nFaye\nGloria\nGracie\nLeona\nFreda\nKatie\nLela\nRuthie\nAda\nCarolyn\nFrankie\nOra\nSylvia\nViolet\nAudrey\nOla\nStella\nIrma\nPeggy\nJane\nRosa\nDorthy\nEarnestine\nIla\nIva\nLeola\nLottie\nNadine\nSusie\nVirgie\nZelma\nBettye\nPatsy\nJimmie\nMarion\nWilla\nFrancis\nLee\nCharlene\nEffie\nJune\nAlberta\nCallie\nElnora\nKathleen\nAddie\nNettie\nOdessa\nFlossie\nFreddie\nGertrude\nLenora\nNaomi\nBettie\nEddie\nFern\nIna\nMuriel\nSybil\nEloise\nFloy\nLaverne\nOphelia\nQueen\nRobbie\nRoberta\nSyble\nCleo\nDollie\nJacqueline\nJo\nEtta\nJennie\nSadie\nSue\nWinnie\nAlta\nBlanche\nDortha\nEmogene\nJanie\nRetha\nHilda\nIma\nLetha\nMarguerite\nNell\nAllie\nAnne\nBennie\nDovie\nJohnie\nLoretta\nMay\nDella\nDixie\nEstelle\nFay\nGlenna\nJoan\nJoy\nLila\nMarcella\nRebecca\nRubie\nVada\nVictoria\nAline\nEmily\nGlenda\nIris\nJanice\nLessie\nLizzie\nLou\nLydia\nRosetta\nEleanor\nElva\nFlorene\nJaunita\nLorraine\nMerle\nPearlie\nPolly\nSallie\nSelma\nVeda\nArtie\nClaudine\nEstella\nJeanette\nRena\nRosemary\nTheresa\nTommie\nAlene\nAmy\nArlene\nDessie\nJackie\nLucile\nLuella\nPearline\nSara\nAnita\nBette\nCharlotte\nConnie\nGoldie\nHenrietta\nLinnie\nMarian\nMavis\nNona\nOma\nRoxie\nRubye\nViva\nAllene\nBeverly\nCharlie\nChristene\nClaudia\nEarlene\nEarline\nGeorgie\nGertie\nGussie\nGwendolyn\nIdella\nJosie\nLora\nLorine\nMadge\nVida\nAugusta\nBerniece\nBirdie\nCecil\nClarice\nCorine\nDelma\nDonna\nDorris\nEdwina\nEileen\nElaine\nEster\nJeanne\nLoraine\nMillie\nNeva\nPansy\nPatty\nReva\nTressie\nVernice\nWilda\nAnnette\nBertie\nBobby\nEliza\nEugenia\nGenevieve\nIola\nJames\nJerry\nLue\nMozell\nOleta\nOlivia\nRita\nAbbie\nAlline\nCharline\nDelois\nDelores\nDelphia\nEra\nFlorida\nFlorine\nIrine\nLeota\nMagnolia\nOcie\nOlive\nOna\nRosalie\nTheda\nVernell\nVersie\nYvonne\nBilly\nCassie\nConstance\nDeloris\nDolly\nFreeda\nGene\nHellen\nHester\nJanet\nJannie\nJoe\nLavern\nMandy\nMargarette\nMarilyn\nMaudie\nMaurine\nOdie\nOuida\nPhyllis\nSusan\nVergie\nAdell\nAltha\nAmanda\nAnnabelle\nAretha\nBillye\nBirtha\nBobbye\nBonita\nColleen\nCorene\nCornelia\nDolores\nElma\nJettie\nJohn\nLilly\nMelva\nMyra\nMyrtis\nNola\nNova\nNovella\nPriscilla\nRobert\nRutha\nSally\nSibyl\nTennie\nVelda\nVerda\nWinona\nZenobia\nZora\nAileen\nArdella\nAudie\nAva\nAvis\nBulah\nCecilia\nDorotha\nEuna\nFreida\nGearldine\nJonnie\nLavada\nLeatha\nLelia\nLouisa\nLovie\nLuvina\nMargret\nMaudine\nMayme\nNannie\nNelda\nOdell\nRhoda\nRosia\nTheo\nTiny\nUna\nVenita\nVesta\nZella\nBeth\nChloe\nChristeen\nChristina\nCorinne\nCorrine\nDell\nDorothea\nEaster\nElwanda\nEmmer\nIona\nJoann\nJudy\nLeatrice\nLinda\nLona\nLura\nMadeline\nMarcelle\nMargarett\nMarvine\nMaud\nMaude\nModean\nNita\nOletha\nOmega\nOva\nPaula\nPhoebe\nRosalee\nSammie\nTessie\nValeria\nWillene\nZelda\nZola\nAlpha\nCarl\nCarmen\nCathryn\nCelia\nClaris\nClaudie\nCleora\nCona\nCrystal\nCynthia\nDale\nDean\nDelia\nDonnie\nEarlie\nEdra\nElmer\nElmira\nElois\nEstell\nEtha\nHettie\nImagene\nIvie\nJacquelyn\nJamie\nJohnny\nKatheryn\nLawanda\nLeda\nLennie\nLeta\nLettie\nLonnie\nLorena\nLuberdie\nMaple\nMarietta\nModena\nMollie\nNeoma\nOdessie\nOlga\nOsie\nPearlean\nPecolia\nRegina\nReola\nReta\nRosella\nTeresa\nTommy\nTreva\nVeola\nVessie\nVina\nVirgia\nWilline\nWinifred\nMary\nDorothy\nBetty\nHelen\nRuby\nMildred\nWanda\nVirginia\nRuth\nMartha\nJuanita\nWillie\nMargaret\nThelma\nHazel\nFrances\nDoris\nAnnie\nLouise\nLois\nEvelyn\nMarie\nAnna\nLucille\nEmma\nEdna\nPauline\nAlice\nGladys\nBonnie\nElizabeth\nWilma\nBillie\nJessie\nOpal\nGeneva\nRosie\nEthel\nLillie\nBertha\nMaxine\nMattie\nBeatrice\nNorma\nEdith\nAlma\nGeorgia\nBernice\nBessie\nGeraldine\nMargie\nClara\nImogene\nVelma\nMinnie\nMyrtle\nLillian\nVera\nIrene\nMarjorie\nLorene\nCatherine\nSarah\nJean\nNellie\nLula\nEva\nBarbara\nIda\nJoyce\nElsie\nErma\nLola\nChristine\nPeggy\nKatherine\nMelba\nMae\nNancy\nFlorence\nJohnnie\nBobbie\nHattie\nOra\nReba\nElla\nInez\nJewel\nCarrie\nVivian\nEssie\nEula\nRose\nJulia\nFaye\nJosephine\nLaura\nLena\nLucy\nPatricia\nBeulah\nCora\nMable\nMaggie\nOllie\nGloria\nGrace\nVerna\nViola\nDorthy\nEllen\nKathryn\nMamie\nRuthie\nSylvia\nDaisy\nEarnestine\nErnestine\nNina\nAlberta\nCharlene\nNaomi\nEsther\nFannie\nJimmie\nPearl\nJune\nLeona\nAnn\nGracie\nEunice\nLela\nOla\nIrma\nNettie\nAgnes\nBettye\nIva\nLaverne\nCarolyn\nMabel\nMarion\nViolet\nAudrey\nFrancis\nSue\nGertrude\nJewell\nNora\nPatsy\nRosa\nDella\nEddie\nFreda\nJane\nLeola\nMarguerite\nShirley\nIna\nKatie\nSyble\nAlta\nEstella\nFlora\nFrankie\nSusie\nVirgie\nAddie\nDora\nStella\nAda\nElnora\nFloy\nNadine\nRachel\nBettie\nEloise\nEtta\nJo\nKathleen\nBlanche\nFlossie\nIris\nLenora\nLoretta\nZelma\nBennie\nDollie\nJoan\nPearlie\nRoberta\nClaudia\nDortha\nEarlene\nGoldie\nJoy\nRita\nAnne\nEster\nJacqueline\nJanice\nJanie\nLottie\nOma\nRobbie\nSadie\nSara\nWilla\nCleo\nMay\nPhyllis\nRebecca\nSybil\nCorine\nEffie\nGlenda\nLee\nOphelia\nArlene\nEarline\nElva\nEmily\nEmogene\nEstelle\nFreddie\nLila\nMarian\nRosemary\nSallie\nAline\nFay\nIla\nJosie\nLetha\nNola\nOdessa\nRosetta\nAllie\nAva\nJaunita\nJeanne\nJennie\nLizzie\nLou\nQueen\nBirdie\nCharlie\nClarice\nGwendolyn\nIma\nLorine\nLucile\nMaudie\nMerle\nMuriel\nNell\nNeva\nBertie\nCallie\nDessie\nDixie\nFern\nGertie\nRetha\nRubye\nVeda\nAlene\nCharline\nElma\nGearldine\nGlenna\nHellen\nHilda\nMadge\nRena\nWinnie\nBeverly\nColleen\nJackie\nJames\nJannie\nJoe\nLouella\nOleta\nRoxie\nTommie\nWinona\nBette\nCharlotte\nDonna\nHenrietta\nLora\nMarilyn\nMillie\nMona\nOlivia\nPolly\nTheresa\nZella\nBilly\nBillye\nConnie\nEleanor\nEugenia\nLessie\nLoraine\nMavis\nMollie\nOlive\nPansy\nRosalie\nSally\nVeola\nWillene\nAllene\nAnita\nArtie\nBerniece\nChristene\nDolly\nDolores\nDovie\nGenevieve\nIola\nLorraine\nLue\nLuella\nLydia\nNona\nPearline\nReva\nTheda\nVada\nVernell\nVesta\nAileen\nAngie\nAvis\nBobby\nDelois\nElaine\nEuna\nFlorine\nFreeda\nHettie\nJudy\nLelia\nMadeline\nMargret\nMaude\nMaurine\nMittie\nMyra\nOctavia\nOzell\nPat\nPaula\nRobert\nTressie\nVergie\nAlpha\nClaudine\nConstance\nEaster\nFlorene\nGene\nGeorgie\nIlene\nJeanette\nJeffie\nJerry\nJohnie\nLavern\nLennie\nLily\nMargarette\nNannie\nNila\nNova\nPriscilla\nSammie\nSavannah\nTennie\nVerda\nVernice\nWillodean\nZenobia\nAlva\nAmy\nAudie\nCarol\nCassie\nDelores\nDorotha\nElwanda\nEulah\nFrieda\nGussie\nHope\nIdella\nIona\nJamie\nJohn\nLavon\nLettie\nLilly\nLona\nLorean\nLuvenia\nMarietta\nMazie\nNita\nOcie\nOneta\nOzella\nPatty\nRuthel\nSelma\nSusan\nVelda\nVena\nVerla\nVersie\nVictoria\nWilda\nWinifred\nZelda\nAlline\nAlmeda\nAltha\nAmanda\nAtha\nAugusta\nBethel\nBirtha\nCarmen\nDarlene\nDonnie\nDorothea\nEileen\nElouise\nEmmer\nEvie\nHazle\nHester\nHortense\nIdell\nIrine\nIvory\nJettie\nKate\nKathrine\nLawanda\nLeah\nLeatrice\nLeora\nLeta\nLinnie\nLoise\nLulu\nLyda\nMagnolia\nMarcella\nMargrett\nMaria\nMelva\nMiriam\nModean\nMyrtie\nMyrtis\nOdell\nRelda\nReola\nSibyl\nTreva\nVina\nYvonne\nZola\nAbbie\nAdell\nAllean\nAnnabelle\nAretha\nAudra\nAugustine\nBerta\nBobbye\nBonita\nClaudie\nCleora\nCleta\nCleva\nDeborah\nDelma\nDorris\nEdwina\nEra\nFloye\nGeorge\nGoldia\nHallie\nIra\nIvy\nJacquelyn\nJoann\nJoanne\nKatharine\nKatheryne\nLaveda\nLeatha\nLinda\nLouisa\nMacie\nMahala\nMandy\nMarine\nMarzell\nMaud\nMelvina\nMolly\nNada\nNelda\nNeoma\nOlevia\nOlga\nOrpha\nRema\nRosella\nTessie\nVanita\nVenita\nVernie\nVida\nVonda\nZula\nMary\nBetty\nDorothy\nHelen\nRuby\nMildred\nVirginia\nWanda\nRuth\nWillie\nJuanita\nMargaret\nMartha\nDoris\nAnnie\nFrances\nHazel\nLois\nWilma\nLouise\nThelma\nBillie\nAnna\nJessie\nEmma\nLillie\nBernice\nEdna\nEvelyn\nPauline\nMarie\nClara\nAlice\nElizabeth\nImogene\nRosie\nBonnie\nNorma\nEdith\nGladys\nEthel\nAlma\nVelma\nJean\nMaxine\nGeneva\nMattie\nBessie\nElla\nMargie\nIrene\nMinnie\nGeraldine\nLucille\nOpal\nGeorgia\nIda\nJoyce\nLillian\nBertha\nChristine\nBobbie\nSarah\nEva\nMarjorie\nVivian\nElsie\nBarbara\nMae\nMyrtle\nCatherine\nNellie\nLena\nVera\nBeatrice\nRuthie\nLorene\nDora\nLaura\nErma\nPeggy\nJohnnie\nKathryn\nNancy\nDorthy\nFlorence\nPatsy\nEula\nFaye\nGloria\nInez\nKatherine\nLola\nLucy\nMelba\nLula\nNaomi\nJewel\nRose\nEssie\nOllie\nMable\nPearl\nReba\nHattie\nEunice\nFannie\nCharlene\nCora\nViola\nCarrie\nNina\nOra\nBettye\nFlora\nJosephine\nAgnes\nEllen\nMaggie\nPatricia\nAudrey\nJimmie\nViolet\nEarnestine\nJoy\nAnn\nErnestine\nGertrude\nJewell\nMabel\nJulia\nMamie\nVerna\nGracie\nJune\nRosa\nSylvia\nVirgie\nAddie\nAlberta\nDaisy\nEsther\nGrace\nLeona\nOla\nNora\nMarion\nRobbie\nRoberta\nStella\nSusie\nAlta\nEloise\nAda\nJane\nLottie\nShirley\nNadine\nBettie\nDella\nKatie\nNettie\nBeulah\nBlanche\nDortha\nElnora\nJo\nMarilyn\nRosemary\nEtta\nFay\nFlossie\nFrankie\nFreddie\nIva\nCarolyn\nCharline\nIna\nIrma\nMarian\nQueen\nSybil\nCleo\nEmogene\nEstella\nLee\nEddie\nFrancis\nJoan\nKathleen\nLaverne\nLorine\nOdessa\nSue\nLenora\nWilla\nCharlotte\nEarline\nEmily\nMay\nRachel\nRebecca\nRosetta\nClaudia\nEffie\nJackie\nLeola\nLorraine\nFreda\nHilda\nIma\nPearlie\nSadie\nTommie\nBette\nBeverly\nGlenda\nGwendolyn\nJeanette\nJennie\nLela\nOphelia\nZelma\nIla\nLetha\nLou\nLucile\nMaudie\nPhyllis\nSelma\nArlene\nFloy\nGenevieve\nGlenna\nIris\nMarguerite\nNell\nWilda\nWinnie\nDonna\nHenrietta\nLoretta\nMavis\nPearline\nRena\nRetha\nRosalie\nSyble\nBennie\nDolores\nJanie\nLydia\nRita\nSally\nSara\nTressie\nDollie\nEleanor\nFern\nJohn\nOma\nVeda\nAline\nAmy\nBirdie\nChristene\nCorine\nDorotha\nEliza\nElma\nEster\nJaunita\nLila\nLizzie\nRubye\nSallie\nWillene\nBobby\nBobbye\nElva\nJacqueline\nJeanne\nJoe\nJosie\nLuella\nMarcella\nNeva\nPansy\nVida\nAnita\nAva\nBerniece\nBilly\nCallie\nCharles\nCharlie\nClarice\nConnie\nDelois\nDessie\nDovie\nEstelle\nFlorine\nFreeda\nGoldie\nJannie\nJohnie\nLinnie\nLora\nMuriel\nMyra\nOleta\nOlivia\nPolly\nRoxie\nSammie\nAlene\nAllene\nAlva\nBillye\nCarmen\nGearldine\nIvory\nJanet\nJanice\nLeta\nLinda\nMaria\nMona\nNelda\nVernice\nVesta\nAllie\nAvis\nCaroline\nClaudine\nClemmie\nColleen\nCornelia\nDarlene\nDelma\nDixie\nEarlene\nElaine\nGene\nGeorgie\nIola\nKattie\nLessie\nLovie\nMillie\nNannie\nNola\nOna\nPatty\nReola\nVelda\nWillia\nBlanch\nDelphia\nDolly\nDorris\nEugenia\nFlorene\nHellen\nIdella\nLavern\nLilly\nLue\nMargret\nMollie\nMyrtis\nNeoma\nNita\nRobert\nSusan\nVerda\nVernell\nAnne\nAnnette\nAnnis\nAugusta\nBerneice\nBonita\nChristeen\nElouise\nElwanda\nEra\nFloella\nGussie\nHettie\nIsabell\nJerry\nJettie\nJoann\nJoanne\nJudy\nJunita\nKay\nLeslie\nMaud\nMaudine\nMazie\nMelva\nMerle\nMina\nMiriam\nNaoma\nOcie\nOlive\nOneta\nOuida\nPriscilla\nRowena\nRubie\nSibyl\nTheresa\nVergie\nVernie\nViva\nWinifred\nWinona\nAltha\nArtie\nBertie\nCarol\nCharlsie\nCorene\nDaphne\nDeloris\nDonnie\nDottie\nEaster\nGertie\nHope\nInell\nIona\nJames\nJonnie\nLavada\nLawanda\nLeatha\nLeota\nLily\nLorena\nMadge\nMadie\nMagnolia\nMaude\nMaurine\nMayola\nMolly\nMozell\nNona\nNorene\nNovella\nOdell\nOdie\nOlena\nOva\nPinkie\nRegina\nSavannah\nVictoria\nZelda\nZenobia\nZora\nAgatha\nAileen\nAlpha\nBerta\nBethel\nCassie\nCecil\nClaire\nConstance\nCordelia\nCorinne\nCorrine\nEdwina\nElisabeth\nEmmer\nEstell\nFreida\nGearldean\nGolda\nHarriett\nHester\nIzola\nJacquelyn\nJunior\nKatheryn\nLoraine\nLouisa\nLudie\nLura\nLuvenia\nLyda\nMarietta\nMozella\nMozelle\nNova\nOdessie\nOlga\nOrpha\nOthella\nOzell\nOzella\nPat\nPearlean\nReva\nRheba\nRutha\nTennie\nVelta\nVeola\nVerdell\nVerdia\nVernia\nVernon\nWynona\nMary\nBetty\nDorothy\nHelen\nRuby\nMildred\nVirginia\nMartha\nWanda\nRuth\nBillie\nJuanita\nMargaret\nWillie\nDoris\nThelma\nFrances\nAnna\nLois\nHazel\nWilma\nAlice\nAnnie\nEmma\nLouise\nNorma\nMarie\nEvelyn\nEdna\nBobbie\nBonnie\nLillie\nClara\nGeneva\nMaxine\nGladys\nBernice\nBarbara\nEthel\nPauline\nElizabeth\nJessie\nVera\nGeorgia\nLucille\nMattie\nVelma\nEdith\nJean\nJoyce\nGeraldine\nRosie\nMargie\nIda\nEva\nImogene\nPatricia\nElsie\nPeggy\nSarah\nElla\nJohnnie\nMinnie\nBertha\nBessie\nIrene\nOpal\nAlma\nErma\nLula\nMarjorie\nLorene\nLillian\nMae\nMelba\nNellie\nGloria\nKatherine\nBeatrice\nBettye\nMyrtle\nCatherine\nPatsy\nVivian\nOra\nFlorence\nNancy\nKathryn\nChristine\nDorthy\nLola\nLucy\nRose\nDaisy\nLaura\nErnestine\nOllie\nReba\nJulia\nJewel\nLena\nEula\nMable\nBettie\nFaye\nAudrey\nCora\nEssie\nFannie\nNina\nOla\nShirley\nEunice\nPearl\nSylvia\nVerna\nIva\nJane\nJewell\nJimmie\nJosephine\nRuthie\nBeulah\nHattie\nJo\nNora\nRosa\nAnn\nKathleen\nMabel\nSue\nVirgie\nAgnes\nCharlene\nFlora\nGracie\nKatie\nRoberta\nViola\nEsther\nFrankie\nJoy\nMaggie\nMarion\nNaomi\nStella\nGertrude\nGrace\nInez\nAlberta\nDora\nFreda\nRobbie\nWilla\nCarrie\nEllen\nFrancis\nRachel\nEarnestine\nLetha\nViolet\nAddie\nCarolyn\nIna\nDolores\nEloise\nJune\nMarilyn\nWinnie\nAlta\nIrma\nLeola\nNettie\nZelma\nEtta\nFay\nIla\nJennie\nLaverne\nNadine\nCleo\nFlossie\nJanice\nJoan\nLeona\nLoretta\nMamie\nMarian\nAda\nGoldie\nFreddie\nJacqueline\nLee\nLenora\nSybil\nBlanche\nEarlene\nEddie\nJeanne\nLottie\nNelda\nRosemary\nCharline\nDollie\nEarline\nJanie\nJeanette\nMarguerite\nPearlie\nRebecca\nAllie\nAnita\nEffie\nFloy\nJaunita\nLela\nLessie\nMyra\nOdessa\nSally\nTommie\nDella\nEstella\nFern\nIma\nJosie\nLeta\nPhyllis\nSadie\nSusie\nSyble\nBennie\nGlenna\nHenrietta\nHilda\nLora\nLou\nMaudie\nMay\nRamona\nVeda\nBerniece\nBertie\nElma\nEmogene\nJackie\nMarcella\nNeoma\nRetha\nAline\nAnne\nBobby\nClaudia\nDorris\nElva\nEmily\nGlenda\nJohnie\nLucile\nNannie\nNell\nNola\nRosetta\nClarice\nCorine\nDixie\nDorotha\nDortha\nElnora\nEster\nGenevieve\nGwendolyn\nLizzie\nLorraine\nMillie\nMuriel\nNeva\nPansy\nRita\nVersie\nVictoria\nArlene\nDelores\nEaster\nEleanor\nFlorine\nPolly\nQueen\nSammie\nTressie\nBeverly\nCarol\nChristene\nDolly\nElaine\nFlorene\nIona\nJoann\nLinda\nSallie\nVelda\nBilly\nCharlotte\nColleen\nConnie\nDonna\nDovie\nGearldine\nGeorgie\nGussie\nHester\nIris\nJames\nMerle\nMollie\nNona\nRobert\nRoxie\nRubie\nVada\nAileen\nAmy\nAnnette\nBirdie\nDelma\nDeloris\nEmmer\nFreeda\nImo\nIola\nJoe\nJohn\nLavern\nLila\nLorine\nMarcelle\nMiriam\nMona\nOleta\nOma\nOuida\nPatty\nPearline\nVerda\nWilda\nWillodean\nAudra\nAva\nBette\nCharlie\nClaudie\nClaudine\nCleta\nConstance\nDelois\nDonnie\nDoretha\nElouise\nGeorge\nMargarett\nMaria\nMittie\nOphelia\nReola\nSusan\nTheresa\nUna\nVernice\nWillene\nWinifred\nZella\nAlene\nAllene\nAmelia\nBillye\nCharles\nChloe\nDean\nDessie\nEuna\nHellen\nLawanda\nLuella\nMadge\nMarceline\nMargarette\nMargret\nMaurine\nMavis\nMelva\nMonnie\nOlive\nOlivia\nOna\nPaula\nReta\nRubye\nVelta\nVerla\nVernell\nWinona\nBethel\nBlanchie\nChristina\nCleola\nEliza\nElvira\nEstelle\nEugenia\nEver\nFreida\nGene\nIdella\nIvory\nJerry\nJohnny\nJolene\nJossie\nLeatha\nLeota\nMolly\nNoma\nNova\nPearlene\nRena\nSara\nSelma\nVerlene\nYvonne\nAltha\nAmanda\nAretha\nArlee\nArtie\nAvis\nBernece\nBobbye\nBonita\nCathrine\nCathryn\nCharlean\nCornelia\nDelilah\nDimple\nDorothea\nEileen\nEra\nEsta\nFairy\nFloella\nFlorida\nFredia\nGertha\nGertie\nHarriet\nHazle\nIlene\nImogean\nIra\nJanis\nJettie\nJoanne\nJonnie\nLelia\nLennie\nLilly\nLouella\nLura\nMagnolia\nMammie\nMargery\nMaurice\nMazie\nMickey\nNatalie\nNita\nNorene\nOzell\nOzella\nRegina\nRessie\nReva\nRosalie\nSavannah\nSibyl\nVida\nViva\nWilliam\nZola\nMary\nBetty\nDorothy\nHelen\nRuby\nWanda\nVirginia\nMildred\nMartha\nDoris\nMargaret\nRuth\nBillie\nFrances\nWillie\nWilma\nJuanita\nLouise\nEvelyn\nAnna\nAnnie\nEmma\nNorma\nThelma\nLois\nBonnie\nElizabeth\nHazel\nBarbara\nPauline\nBobbie\nEthel\nGeneva\nAlice\nLucille\nPatsy\nLillie\nMaxine\nRosie\nGladys\nClara\nMarie\nBernice\nMargie\nEdna\nJessie\nGeraldine\nMae\nJoyce\nMattie\nVelma\nEdith\nEva\nGeorgia\nPeggy\nMinnie\nElla\nSarah\nJean\nBertha\nBeatrice\nOpal\nIda\nImogene\nPatricia\nJohnnie\nMable\nMyrtle\nBessie\nIrene\nMarjorie\nNancy\nVivian\nRose\nCatherine\nEula\nLaura\nLillian\nReba\nRuthie\nAlma\nEarnestine\nElsie\nNellie\nErma\nLula\nDorthy\nVera\nLorene\nBettye\nCarolyn\nOllie\nEssie\nFaye\nFlorence\nChristine\nCora\nAgnes\nErnestine\nJosephine\nAnn\nCharlene\nHattie\nOra\nDora\nJewel\nJimmie\nJulia\nKatherine\nNaomi\nJoan\nKathryn\nLena\nCarrie\nLola\nMelba\nShirley\nFreda\nGloria\nJo\nNina\nDaisy\nInez\nIva\nJoy\nOla\nJewell\nEarline\nFlora\nGrace\nJune\nAudrey\nEsther\nEunice\nMarion\nPearl\nAlberta\nAda\nEddie\nFrankie\nIna\nLucy\nMamie\nFannie\nDella\nEllen\nVerna\nViola\nViolet\nBeulah\nKathleen\nFlossie\nJane\nMabel\nStella\nDolores\nDortha\nLela\nNora\nEloise\nLoretta\nLottie\nSylvia\nFreddie\nMaggie\nMarilyn\nNettie\nPhyllis\nSusie\nVirgie\nWilla\nAddie\nBettie\nEffie\nEtta\nGertrude\nGracie\nIla\nRoberta\nIrma\nLaverne\nLeola\nBobby\nJackie\nLeona\nRosa\nAlta\nEarlene\nIma\nJennie\nKatie\nLou\nMarian\nMay\nNadine\nNelda\nRebecca\nRosemary\nSue\nCleo\nElnora\nRachel\nRamona\nTommie\nClarice\nDollie\nDonna\nFrancis\nPearlie\nPearline\nBennie\nEstella\nMavis\nMuriel\nOma\nRobbie\nSally\nWinnie\nAnita\nFern\nJeanette\nJosie\nRita\nVada\nLee\nLucile\nSybil\nAline\nCallie\nCharlie\nCharlotte\nDorotha\nEleanor\nJanie\nJoann\nJoe\nLorine\nRosetta\nSadie\nWillene\nZelma\nBeverly\nConnie\nDelores\nEmogene\nFlorine\nJohnie\nNell\nQueen\nSara\nBilly\nBobbye\nEmily\nFay\nFreeda\nJacqueline\nJaunita\nMadge\nMelva\nNeva\nSyble\nAllie\nAltha\nArlene\nAva\nBertie\nBette\nBirdie\nBlanche\nDixie\nEster\nGlenda\nGoldie\nIris\nJanice\nLenora\nLetha\nLora\nTheresa\nVeda\nAnne\nChristene\nHilda\nLavern\nLessie\nLila\nLizzie\nMarguerite\nNola\nOlivia\nPearlene\nPolly\nRutha\nVelda\nAlene\nAllene\nBerniece\nBillye\nCharline\nDorris\nFlorene\nFloy\nLydia\nMyra\nOphelia\nTheda\nVernell\nVernice\nWilda\nCarol\nDessie\nDovie\nEstelle\nFreida\nGenevieve\nGeorgie\nGertie\nGlenna\nGussie\nGwendolyn\nHenrietta\nHester\nIola\nJeannine\nKatheryn\nLavada\nLinda\nLue\nLuella\nMaudie\nNannie\nRosalie\nRoxie\nAmy\nAvis\nCaroline\nCelestine\nClaudine\nColleen\nDelois\nDeloris\nEileen\nGearldine\nHettie\nJames\nJanet\nJerry\nLeta\nLorraine\nMolly\nMona\nMyrtis\nOdell\nOdessa\nOleta\nOna\nPat\nPatty\nRena\nRetha\nRubie\nSammie\nSelma\nVersie\nVictoria\nWillodean\nAdell\nArtie\nBirtha\nCarlene\nCelia\nCharles\nCorene\nCorine\nCozetta\nDonnie\nElaine\nElouise\nElva\nGolda\nHellen\nIsabelle\nJeanne\nJoanne\nJonnie\nJulie\nLeatrice\nMarceline\nModean\nNeoma\nNita\nNova\nPansy\nPaula\nSallie\nTessie\nTreva\nVerda\nVerdie\nVida\nZella\nAileen\nAlpha\nAnnette\nAudra\nAugusta\nBlanch\nClora\nConstance\nDottie\nEarl\nEugenia\nGertha\nIona\nKitty\nLilly\nLouella\nLouvenia\nMarcella\nMarcie\nMargarett\nMargarette\nMittie\nNona\nOlga\nOlive\nPriscilla\nReta\nRobert\nRosalee\nRubye\nSibyl\nTressie\nWilliam\nYvonne\nZenobia\nZettie\nZora\nAudie\nBetsy\nBirdia\nCarmen\nClementine\nCrystal\nDarlene\nDelma\nDona\nEarlean\nEliza\nEmmer\nEra\nEuna\nEveline\nFlorida\nHarriet\nJacquelyn\nJamie\nJeannie\nJettie\nJohn\nJudy\nLeah\nLeatha\nLennie\nLeota\nLettie\nLorena\nLucinda\nMadeline\nMadie\nMagdalene\nMaple\nMarcelle\nMaude\nMaurice\nMaxie\nMerle\nMillie\nMollie\nNadean\nNorvell\nOdessia\nOrene\nOuida\nRegina\nRoma\nSavannah\nSusan\nTeresa\nTina\nTommye\nVergie\nVerla\nVessie\nWilline\nWinifred\nMary\nBetty\nDorothy\nHelen\nWanda\nMartha\nRuby\nMildred\nVirginia\nBillie\nMargaret\nJuanita\nRuth\nDoris\nFrances\nWilma\nAnna\nWillie\nBarbara\nEvelyn\nLois\nEmma\nNorma\nJoyce\nAnnie\nLouise\nHazel\nElizabeth\nAlice\nBonnie\nThelma\nBobbie\nPatricia\nPatsy\nBernice\nGeneva\nLillie\nPauline\nVelma\nEdna\nPeggy\nJessie\nLucille\nMaxine\nClara\nRosie\nMargie\nMarie\nEthel\nJean\nGladys\nGeorgia\nBessie\nBertha\nMarjorie\nMattie\nAlma\nElla\nGeraldine\nEva\nVera\nImogene\nRose\nErma\nNancy\nMae\nLillian\nIda\nIrene\nMinnie\nSarah\nEdith\nMyrtle\nJo\nOpal\nShirley\nLula\nBeatrice\nLorene\nCarolyn\nCatherine\nMelba\nChristine\nJoan\nFlorence\nAnn\nKatherine\nLola\nVerna\nElsie\nNellie\nFaye\nKathryn\nGloria\nMable\nDorthy\nJohnnie\nNaomi\nCharlene\nJulia\nLaura\nBettye\nFannie\nPearl\nVivian\nEsther\nJosephine\nLena\nNina\nCora\nErnestine\nEula\nOra\nMarion\nEssie\nJimmie\nMaggie\nCarrie\nEllen\nIna\nJane\nJewel\nOllie\nReba\nHattie\nSue\nDaisy\nDora\nJoy\nViola\nEstella\nAlberta\nMarilyn\nRuthie\nDolores\nGrace\nKathleen\nAgnes\nInez\nAudrey\nBettie\nFlora\nFrankie\nIva\nAda\nIrma\nKatie\nLaverne\nLucy\nMamie\nEarnestine\nJune\nPearlie\nDonna\nFreda\nGracie\nRachel\nBeulah\nLeona\nAddie\nEddie\nGertrude\nLela\nRoberta\nViolet\nVirgie\nFay\nJewell\nJoann\nNettie\nWilla\nDelores\nDixie\nNora\nRosa\nAlta\nEloise\nEunice\nLee\nLeola\nMabel\nStella\nSyble\nAllie\nFloy\nFrancis\nJanie\nRobbie\nCharlotte\nDella\nFlossie\nLoretta\nNadine\nOla\nPhyllis\nEffie\nEtta\nZelma\nEarline\nGlenna\nJacqueline\nRosemary\nSylvia\nFreddie\nIla\nJanice\nAnne\nCarol\nLou\nRebecca\nSadie\nSusie\nWinnie\nBobby\nFern\nGoldie\nIma\nJackie\nLila\nLottie\nOdessa\nQueen\nTommie\nAva\nBlanche\nBobbye\nColleen\nJerry\nLetha\nLorraine\nLucile\nRita\nRosetta\nTheresa\nAline\nAnita\nBette\nBeverly\nDollie\nGwendolyn\nHilda\nJeanette\nLizzie\nNola\nPat\nPatty\nSara\nCharline\nCleo\nDorris\nEleanor\nElnora\nEmily\nEstelle\nFlorine\nGlenda\nHenrietta\nIris\nLavern\nLora\nMarguerite\nMay\nRetha\nSybil\nWillene\nBennie\nBillye\nChristene\nClaudia\nGeorge\nLenora\nMarian\nMaudie\nNell\nRena\nSallie\nSally\nVernell\nDelois\nDeloris\nDortha\nEarlene\nGearldine\nGeorgie\nJeanne\nJoe\nLavada\nLorine\nMagnolia\nMerle\nMuriel\nMyra\nNeva\nOphelia\nAllene\nClaudine\nConnie\nCorine\nDessie\nJennie\nLawanda\nMargret\nMona\nPaula\nRamona\nVada\nWinona\nYvonne\nAmy\nBerniece\nBertie\nBirdie\nCharles\nCornelia\nDovie\nElma\nFreeda\nHester\nLilly\nMadge\nOlive\nOma\nPansy\nRosalie\nSelma\nVerda\nViva\nAlene\nAnnette\nArtie\nDorotha\nElva\nEugenia\nGertha\nGertie\nJoanne\nJosie\nLue\nLuella\nMelva\nMollie\nOcie\nOleta\nPolly\nReva\nVeda\nVerla\nWilda\nWilliam\nZella\nAileen\nBirtha\nCarmen\nCharlie\nClarice\nDolly\nEster\nFlorene\nGenevieve\nHenry\nJanet\nJannie\nJohnie\nLessie\nLinda\nLouella\nMaude\nOzella\nReola\nSammie\nVersie\nVirgia\nZola\nBilly\nCallie\nCassie\nCharlean\nElwanda\nEstell\nHannah\nIvory\nJohn\nJudy\nLeta\nLinnie\nLydia\nMolly\nNelda\nNova\nRoxie\nTheda\nVeola\nWinifred\nZelda\nAbbie\nAmanda\nAudra\nAugusta\nBelva\nCecelia\nCelestine\nClovis\nDrucilla\nEarlean\nEartha\nEliza\nFreida\nFrieda\nGussie\nHarriett\nJacquelyn\nJames\nJanette\nLeota\nLily\nLorena\nLura\nMadeline\nMarceline\nMaria\nMiriam\nNada\nNila\nNita\nOdie\nPriscilla\nReatha\nReta\nRowena\nTessie\nTreva\nVerline\nVernice\nVida\nVina\nVonda\nWillia\nWillodean\nAlva\nAmelia\nAretha\nArletha\nAudie\nAudry\nAvis\nBlanch\nBonita\nBulah\nCleta\nCordelia\nDeborah\nDelma\nElouise\nEmogene\nEstalee\nFlorida\nGenevie\nGlena\nHellen\nImogean\nIona\nIsabell\nIvy\nJanis\nJaunita\nJonnie\nJudith\nJunita\nLeila\nLelia\nLettie\nMarcella\nMarianne\nMaurine\nMazie\nMillie\nMurlene\nNannie\nNona\nOlivia\nPattie\nRobert\nRoy\nRubye\nTeretha\nTerry\nTheola\nTressie\nVelta\nVergie\nVernie\nVesta\nVictoria\nMary\nBetty\nDorothy\nWanda\nHelen\nRuby\nMartha\nVirginia\nDoris\nBillie\nMargaret\nMildred\nFrances\nRuth\nPatsy\nBarbara\nJoyce\nNorma\nWilma\nAnna\nJuanita\nLois\nBonnie\nPeggy\nAnnie\nWillie\nLouise\nBobbie\nAlice\nHazel\nEmma\nEvelyn\nPatricia\nThelma\nEdna\nBernice\nClara\nVelma\nGeneva\nGladys\nPauline\nElizabeth\nMaxine\nLillie\nGeraldine\nGeorgia\nJean\nMargie\nMarie\nMarjorie\nAlma\nErma\nLula\nLucille\nJo\nOpal\nJessie\nNancy\nEva\nRosie\nEthel\nBertha\nJoan\nMattie\nIda\nVera\nCarolyn\nImogene\nLillian\nBessie\nCatherine\nEdith\nMinnie\nLorene\nSarah\nRuthie\nIrene\nBettye\nChristine\nRose\nElla\nJohnnie\nMae\nJoy\nShirley\nVivian\nGloria\nDorthy\nJune\nLaura\nFaye\nMyrtle\nCora\nMelba\nBeatrice\nCharlene\nErnestine\nSue\nAnn\nMable\nPearl\nFannie\nKathryn\nLola\nLucy\nElsie\nJosephine\nFlora\nLena\nNina\nEllen\nHattie\nJimmie\nJulia\nKatherine\nKathleen\nNellie\nLoretta\nEula\nMarilyn\nOllie\nDora\nNaomi\nReba\nLaverne\nViola\nFlorence\nLela\nOra\nIva\nDolores\nFrankie\nJane\nKatie\nNadine\nOla\nBettie\nCharlotte\nJewel\nRobbie\nAda\nNora\nEarnestine\nJanie\nRita\nBeulah\nDonna\nFreda\nJewell\nMaggie\nRachel\nRoberta\nVerna\nAnita\nCarrie\nDella\nStella\nAgnes\nEloise\nEunice\nGertrude\nWilla\nAlberta\nDortha\nElnora\nEssie\nJoann\nLeona\nMamie\nWinnie\nIrma\nNettie\nSadie\nSally\nViolet\nFern\nIna\nInez\nLeola\nPat\nPhyllis\nRebecca\nRosa\nFrancis\nMarion\nSara\nSyble\nSylvia\nAudrey\nBobby\nDaisy\nFlossie\nFloy\nFreddie\nGrace\nGracie\nIla\nJennie\nLee\nLinda\nChristene\nDollie\nEsther\nGlenda\nLou\nRosemary\nVirgie\nZelma\nAddie\nAlta\nLila\nPatty\nDelores\nEarlene\nEarline\nEddie\nGoldie\nHilda\nSusie\nCleo\nDorotha\nFay\nJackie\nLydia\nMillie\nRamona\nBeverly\nBlanche\nBobbye\nCharlie\nEmily\nEstella\nJacqueline\nLenora\nLizzie\nMabel\nOphelia\nVeda\nAline\nBennie\nCarol\nClaudia\nEffie\nEtta\nFreeda\nGlenna\nJanet\nJanice\nJeanette\nJoanne\nOdessa\nOleta\nPearlie\nRosetta\nTheresa\nYvonne\nAnne\nDeloris\nDessie\nDovie\nEleanor\nLorine\nLottie\nBerniece\nBette\nBilly\nCallie\nEmogene\nGwendolyn\nLessie\nMarian\nNona\nQueen\nTommie\nZenobia\nBertie\nBillye\nBirdie\nClaudine\nDixie\nElva\nElwanda\nHellen\nIma\nJaunita\nJohn\nLetha\nLora\nNelda\nNell\nOuida\nSammie\nVida\nWillene\nArlene\nEster\nJames\nMargarett\nMavis\nMelva\nMollie\nMona\nNita\nVernice\nVersie\nAlene\nAllie\nAmy\nBonita\nClarice\nCleta\nColleen\nCorine\nDona\nEstelle\nGeorge\nGeorgie\nJacquelyn\nJannie\nJerry\nJohnie\nJudy\nLawanda\nLuella\nMarguerite\nMaudie\nNeva\nPearline\nPolly\nReva\nSallie\nSybil\nUna\nVada\nVelda\nVictoria\nAva\nCharline\nConnie\nDonnie\nEarlean\nElois\nGussie\nHenrietta\nIris\nJoe\nMay\nMolly\nNola\nOcie\nOma\nOna\nPansy\nPaula\nSelma\nTreva\nZelda\nAllene\nAnnette\nBirtha\nCarlene\nCelia\nConstance\nCorene\nDarlene\nDelois\nElouise\nFlorida\nFlorine\nGenevieve\nHester\nIra\nKatheryn\nLorraine\nLouella\nMerle\nMerlene\nMuriel\nOva\nRetha\nRosalie\nRowena\nViva\nArtie\nAugusta\nAvis\nBelva\nBernadine\nCassie\nCelestine\nCornelia\nDarline\nDolly\nDorris\nEaster\nGail\nGearldine\nGertie\nJamie\nJeanne\nJeraldine\nJudith\nJunita\nLavern\nLeta\nLily\nLinnie\nLucile\nLue\nLura\nMadge\nMarcella\nMaurine\nMerline\nModean\nNannie\nNeoma\nOzie\nPeggie\nRegina\nRena\nRobert\nRoxie\nTeresa\nTressie\nVerline\nWinifred\nAlbertine\nAlyce\nAmanda\nAnnetta\nBerneice\nCarmen\nCeola\nCharles\nDelma\nDeloise\nDelphia\nDiana\nDorthey\nElaine\nEver\nFrieda\nGene\nIlene\nIsabelle\nIvory\nIvy\nJoanna\nJosie\nKathrine\nKaty\nLaquita\nLavada\nLavon\nLeota\nLilly\nLoraine\nMagnolia\nMarcelle\nMarcia\nMargret\nMarietta\nMittie\nMurlene\nMyra\nNadean\nOdean\nOlivia\nOzella\nPattie\nRay\nRoy\nTeretha\nVenita\nVerla\nVerlene\nVerlie\nVesta\nWalsie\nMary\nBetty\nDorothy\nWanda\nHelen\nBarbara\nMartha\nRuby\nVirginia\nMargaret\nDoris\nRuth\nMildred\nJoyce\nPatsy\nNorma\nBillie\nPeggy\nFrances\nJuanita\nWilma\nBonnie\nBobbie\nAnna\nLouise\nWillie\nPatricia\nLois\nAnnie\nHazel\nEmma\nEvelyn\nAlice\nThelma\nGeneva\nElizabeth\nCarolyn\nGladys\nMattie\nRosie\nVelma\nClara\nLucille\nMargie\nJo\nMinnie\nBernice\nEdna\nGeorgia\nPauline\nJoan\nLillie\nEthel\nGeraldine\nBessie\nElla\nMaxine\nAlma\nNancy\nShirley\nJessie\nJean\nMarie\nIda\nBertha\nErma\nMelba\nEva\nCatherine\nVera\nElsie\nGloria\nIrene\nSarah\nLillian\nRose\nChristine\nLaura\nMae\nNina\nAnn\nBettye\nDorthy\nReba\nOpal\nSue\nCharlene\nLena\nNellie\nJohnnie\nJoy\nBeatrice\nEdith\nLula\nKathryn\nRuthie\nVivian\nJune\nMarjorie\nErnestine\nFannie\nJane\nJosephine\nLoretta\nMyrtle\nFaye\nFlorence\nKatherine\nLorene\nImogene\nOra\nViola\nIrma\nOla\nOllie\nJoann\nLola\nCora\nEssie\nEula\nJewel\nSylvia\nCarol\nHattie\nLucy\nMarilyn\nNaomi\nFrankie\nMable\nBettie\nStella\nViolet\nEarnestine\nEllen\nJimmie\nPearl\nEsther\nJulia\nCarrie\nDolores\nDonna\nKatie\nNora\nVerna\nAlta\nMaggie\nBeverly\nJewell\nLinda\nPat\nCharlotte\nDora\nGlenda\nJackie\nLaverne\nMamie\nDelores\nEunice\nGracie\nRoberta\nFlora\nRita\nDella\nFlossie\nFreda\nJanice\nAnita\nAudrey\nDaisy\nEarline\nGrace\nLenora\nMabel\nMarion\nPhyllis\nRebecca\nRosemary\nEddie\nInez\nJerry\nLela\nAda\nBeulah\nElnora\nFreddie\nKathleen\nLou\nRobbie\nAddie\nBobby\nIma\nJanet\nRosa\nAgnes\nEstella\nGertrude\nGwendolyn\nIna\nNadine\nConnie\nFrancis\nIla\nRosetta\nSara\nTommie\nBennie\nDixie\nEloise\nEmogene\nIva\nJeanne\nLorine\nWilla\nDortha\nEffie\nFern\nJeanette\nLottie\nNona\nOma\nPatty\nRamona\nAlberta\nAnne\nEtta\nFay\nGlenna\nJacqueline\nLeona\nMarian\nPearlie\nRachel\nSusie\nSyble\nVirgie\nBobbye\nDelois\nDeloris\nJanie\nLee\nMuriel\nNell\nNettie\nOphelia\nPearline\nSally\nBerniece\nDollie\nEarlene\nJennie\nLeola\nOdessa\nSadie\nWinnie\nAva\nCorine\nMarlene\nVernice\nAllie\nBilly\nClarice\nClaudia\nCleo\nEmily\nGussie\nLavada\nLila\nMelva\nMona\nOleta\nSallie\nSybil\nAline\nBlanche\nChristene\nColleen\nFloy\nGearldine\nLora\nLuella\nQueen\nTressie\nBirdie\nDonnie\nEleanor\nEstelle\nEugenia\nFreeda\nJoanne\nLeota\nLetha\nLinnie\nLizzie\nLucile\nMay\nMyra\nNelda\nNeva\nNita\nSusan\nVelda\nZelda\nZelma\nDolly\nIris\nJames\nLue\nMillie\nPansy\nPaula\nRetha\nVernell\nWilda\nWinona\nCallie\nCharlie\nCharline\nDarlene\nDelma\nDorris\nDovie\nEarlean\nEaster\nElma\nElwanda\nFlorida\nGeorgie\nGoldie\nHilda\nJoe\nJohnie\nJudy\nLavern\nMarcella\nMerle\nPolly\nSelma\nVada\nVeda\nVersie\nWillene\nAllene\nArtie\nBette\nDean\nElouise\nFlorene\nFlorine\nFrieda\nGertie\nLettie\nMaudie\nMollie\nNedra\nNova\nRoxie\nRubie\nSammie\nSavannah\nTheda\nTheresa\nVerdell\nVergie\nYvonne\nAlene\nAmelia\nArlena\nArlene\nAvis\nBertie\nBulah\nCeola\nCynthia\nEver\nGreta\nHester\nJaunita\nJerlean\nKay\nLona\nLoraine\nMagnolia\nMavis\nMittie\nNola\nOlivia\nRena\nTiny\nVenita\nVerda\nVida\nZella\nAmy\nBetsy\nBonita\nCaroline\nClaudie\nClaudine\nCleta\nCorrine\nDiane\nEster\nFrancine\nGenevieve\nHallie\nHenrietta\nJanette\nJimmy\nJonnie\nLessie\nLexie\nLorraine\nLouella\nLura\nMargrett\nMarietta\nMaude\nMazie\nOcie\nOdell\nOlive\nOuida\nPearlean\nReva\nRosella\nRowena\nSammy\nTeresa\nTessie\nVelta\nVersa\nViva\nVonda\nAdell\nAnnette\nArdella\nAudry\nAugusta\nAugustine\nBerta\nBillye\nBirtha\nCarlene\nCecil\nCharlean\nCharles\nChloe\nCordia\nCornelia\nDarline\nDessie\nDona\nDorotha\nDottie\nEarma\nEdwina\nElda\nElva\nElvie\nEmmer\nEuna\nGay\nIdella\nIzola\nJamie\nJoanna\nJohn\nJoye\nLaquita\nLeatha\nLilly\nLoyce\nMarguerite\nMolly\nNeoma\nOtha\nRosalie\nRubbie\nRutha\nSheila\nTreva\nUna\nVelva\nVesta\nZenobia\nZora\nMary\nBetty\nDorothy\nHelen\nBarbara\nWanda\nRuby\nMartha\nJoyce\nDoris\nMargaret\nPatsy\nVirginia\nMildred\nFrances\nRuth\nAnna\nBillie\nWillie\nWilma\nNorma\nBonnie\nPeggy\nEmma\nPatricia\nLouise\nBobbie\nJuanita\nAnnie\nLois\nHazel\nAlice\nThelma\nJessie\nCarolyn\nShirley\nNancy\nEvelyn\nVelma\nElizabeth\nJean\nJo\nEdna\nBernice\nMinnie\nLillie\nAlma\nClara\nEthel\nMarie\nMaxine\nGladys\nRosie\nSarah\nMattie\nGeorgia\nBertha\nJoan\nMae\nMargie\nMelba\nLillian\nGeraldine\nPauline\nElla\nErma\nGeneva\nChristine\nRose\nIda\nEdith\nEva\nBessie\nGloria\nSue\nVera\nCharlene\nDonna\nImogene\nJoann\nMarjorie\nLucille\nLula\nOpal\nBettye\nIrene\nSylvia\nAnn\nLola\nMarilyn\nNellie\nEllen\nCatherine\nJane\nLorene\nNina\nErnestine\nVivian\nDorthy\nElsie\nKatherine\nOllie\nRuthie\nEssie\nFrankie\nJewel\nJohnnie\nReba\nCarol\nCharlotte\nLena\nCora\nIrma\nJoy\nMable\nFaye\nJosephine\nPearl\nDella\nEula\nGlenda\nJimmie\nKathryn\nLaura\nNaomi\nJune\nLoretta\nRoberta\nBeatrice\nGracie\nJulia\nLucy\nDora\nFlorence\nFreda\nJanice\nKathleen\nMarion\nMyrtle\nEunice\nOra\nVerna\nFlora\nCarrie\nDelores\nIva\nKatie\nLaverne\nNettie\nPhyllis\nViolet\nWilla\nEsther\nHattie\nNora\nOla\nBettie\nRosa\nAgnes\nAudrey\nEarnestine\nLinda\nRita\nSadie\nBeulah\nEarlene\nEtta\nFannie\nMamie\nJanet\nJackie\nSara\nWinnie\nAnita\nDolores\nFrancis\nGlenna\nGrace\nJeanette\nMarian\nSusie\nAda\nConnie\nDixie\nDortha\nJennie\nJoanne\nLottie\nMaggie\nNadine\nViola\nAlta\nBobby\nDaisy\nDarlene\nFern\nFloy\nIna\nJewell\nLou\nRamona\nRobbie\nTommie\nBeverly\nFreddie\nJacqueline\nRachel\nHilda\nInez\nLenora\nNona\nPat\nRosemary\nMabel\nStella\nBennie\nGwendolyn\nLee\nMarlene\nVirgie\nDeloris\nLela\nNelda\nOdessa\nPearline\nSally\nAddie\nAlberta\nAllie\nCleo\nMona\nRebecca\nRetha\nAnne\nBobbye\nClaudia\nDessie\nDollie\nEarline\nEddie\nLeona\nMaudie\nMavis\nEffie\nEmily\nFlossie\nGertrude\nIma\nJanie\nLila\nLorine\nLucile\nPearlie\nQueen\nSybil\nZelma\nBlanche\nEleanor\nElnora\nEloise\nHenrietta\nIla\nLeola\nNeva\nOleta\nWilda\nAline\nAugusta\nCharline\nDovie\nFay\nIola\nJeanne\nJerry\nLessie\nLetha\nLizzie\nLouella\nMarcella\nNovella\nOphelia\nSyble\nAmy\nAnnette\nBertie\nBilly\nCharlie\nCorine\nDorotha\nElwanda\nFlorene\nJaunita\nPolly\nReva\nRosetta\nAva\nDonnie\nElaine\nHellen\nJames\nJoe\nLora\nMargret\nMay\nMillie\nMolly\nMyra\nNola\nOma\nPatty\nVada\nVeda\nWillene\nAllene\nBette\nColleen\nDelois\nGearldine\nGenevieve\nIris\nJohnie\nJudy\nMelva\nNell\nOuida\nSallie\nTheresa\nVersie\nCarole\nChristene\nConstance\nDolly\nDorris\nElma\nElva\nEmogene\nEstella\nEugenia\nFrieda\nGeorgie\nGoldie\nJacquelyn\nJanette\nJannie\nJosie\nJoye\nLavern\nLawanda\nLovie\nMuriel\nPansy\nPearlene\nRena\nRoxie\nSharon\nAlene\nBelva\nBerniece\nBillye\nClarice\nCynthia\nDeborah\nDottie\nEdwina\nElouise\nFlorine\nGirtha\nIona\nJanis\nJoanna\nKay\nLeota\nLinnie\nLoyce\nLuella\nLydia\nMadeline\nMadge\nNita\nOdell\nOlivia\nPaula\nReta\nSandra\nTressie\nTreva\nVenita\nYvonne\nAdell\nAlpha\nAmelia\nAngie\nAretha\nBirdie\nBonita\nCarlene\nCaroline\nCharlean\nChristina\nClementine\nCornelia\nDelia\nDelphia\nEaster\nEileen\nFrancies\nGail\nGreta\nGwen\nHarriett\nHester\nHettie\nKathern\nKatheryn\nLavada\nLavelle\nLettie\nLily\nLorraine\nMarguerite\nMarietta\nNedra\nOcie\nPattie\nRobert\nRosalie\nSelma\nSusan\nVernell\nViva\nAletha\nAmanda\nAngela\nArlene\nBecky\nCassie\nClaudette\nClaudine\nCleda\nCorene\nDana\nDean\nDorothea\nEllie\nEmmer\nEstelle\nEster\nGertie\nHenretta\nHope\nIrine\nJettie\nJewelene\nKathrine\nLavonne\nLeah\nLudie\nLyda\nMagnolia\nMarcia\nMaria\nMatilda\nMaxie\nMazie\nMerle\nMiriam\nMyrna\nNada\nNella\nOsie\nOtha\nReda\nReola\nRosella\nRowena\nTessie\nUna\nVelda\nVelta\nWillodean\nZella\nMary\nBetty\nDorothy\nBarbara\nWanda\nHelen\nMartha\nRuby\nVirginia\nDoris\nMargaret\nNorma\nPatsy\nPeggy\nShirley\nJoyce\nFrances\nBillie\nMildred\nPatricia\nRuth\nBonnie\nBobbie\nAnna\nWilma\nJuanita\nEvelyn\nCarolyn\nWillie\nAnnie\nJo\nEmma\nLois\nAlice\nElizabeth\nThelma\nNancy\nHazel\nLouise\nJoan\nClara\nGeneva\nLillie\nEdna\nJean\nBernice\nErma\nEthel\nAnn\nGeorgia\nMarie\nGladys\nSue\nJessie\nGeraldine\nRosie\nSarah\nMargie\nMaxine\nMinnie\nVelma\nElla\nVera\nAlma\nCharlene\nPauline\nGloria\nEva\nJoy\nBessie\nJohnnie\nMae\nMattie\nEdith\nIda\nLoretta\nFlorence\nMarjorie\nSylvia\nDorthy\nFaye\nLucille\nMelba\nRose\nLaura\nNellie\nIrene\nJoann\nLena\nLula\nNaomi\nOllie\nOpal\nBertha\nBettye\nFreda\nJulia\nJune\nLola\nNina\nVivian\nBeatrice\nCharlotte\nChristine\nJane\nReba\nGlenda\nCatherine\nEula\nMarilyn\nVerna\nJimmie\nEllen\nJanice\nJewel\nKatie\nEarnestine\nElsie\nDaisy\nKatherine\nErnestine\nKathryn\nNora\nCora\nRoberta\nJosephine\nDonna\nIva\nLorene\nMyrtle\nOra\nCarrie\nDelores\nDolores\nCarol\nFlora\nGrace\nPhyllis\nBettie\nBeverly\nDella\nDora\nFannie\nFrankie\nLillian\nGracie\nHattie\nImogene\nIna\nLela\nRuthie\nViola\nEsther\nWilla\nBeulah\nEssie\nLucy\nMaggie\nAda\nDixie\nIrma\nOla\nPearl\nBobbye\nInez\nJackie\nMable\nMamie\nAnita\nJoanne\nLaverne\nLeona\nMona\nPat\nSara\nAgnes\nAlta\nEunice\nLenora\nNadine\nStella\nAlberta\nJeanette\nRachel\nAudrey\nEddie\nKathleen\nLinda\nLou\nNettie\nAddie\nConnie\nElnora\nFreddie\nJanet\nRebecca\nRosa\nSally\nSusie\nWinnie\nDortha\nEffie\nFern\nGlenna\nJanie\nLeola\nEarlene\nFlossie\nJacqueline\nMarian\nMarion\nNelda\nYvonne\nDollie\nEarline\nEtta\nHilda\nJewell\nRobbie\nViolet\nBennie\nEloise\nGwendolyn\nMarlene\nMollie\nPolly\nRita\nBobby\nDeloris\nLottie\nSadie\nDarlene\nEleanor\nGertrude\nIla\nNona\nTommie\nArlene\nCarole\nDelois\nDorotha\nEstella\nFrancis\nGoldie\nJennie\nJosie\nLila\nOdessa\nPearlie\nRosemary\nVirgie\nAva\nChristene\nFloy\nIma\nLawanda\nLee\nMyra\nPatty\nPearline\nReva\nAline\nBette\nBirdie\nClaudine\nDorris\nGearldine\nLavada\nLavern\nMabel\nNell\nRamona\nRetha\nRosetta\nSybil\nVernell\nAllie\nCleo\nDolly\nFay\nFreeda\nGail\nGreta\nJerry\nJudy\nKay\nLora\nLucile\nMaudie\nMelva\nMolly\nNola\nPaula\nSallie\nSelma\nSusan\nTheresa\nBlanche\nCharlie\nCharline\nDelma\nDessie\nDonnie\nIris\nJeanne\nJoe\nJohnie\nLeta\nMavis\nMyrna\nNeva\nOleta\nRena\nSandra\nSyble\nZella\nZelma\nAmelia\nCallie\nClaudia\nCleta\nColleen\nConstance\nElma\nElva\nEster\nFlorida\nIra\nJames\nJohn\nLessie\nLetha\nLorraine\nLouella\nLuella\nLydia\nMillie\nNovella\nRubie\nSammie\nTheda\nTressie\nVada\nVerda\nVida\nAlene\nAlpha\nAnne\nArtie\nBertie\nCelia\nCorine\nEmily\nFlorene\nFlorine\nFreida\nHannah\nJoanna\nJudith\nLeah\nLizzie\nMay\nNova\nOlivia\nOma\nReta\nWillene\nAllene\nBilly\nCarlene\nCarmen\nCornelia\nDelphia\nDorthey\nElaine\nEmogene\nFanny\nFrieda\nGayle\nGenevieve\nGertie\nGussie\nHenrietta\nIvory\nJanette\nJanis\nJannie\nJaunita\nKitty\nLeota\nLue\nMarcia\nOcie\nOna\nOuida\nPearlene\nQueen\nVeda\nVelta\nVernice\nAmanda\nAugusta\nBerniece\nBerta\nBeth\nCharles\nClarice\nDovie\nEliza\nElmer\nHester\nIona\nLeatrice\nLilly\nMadeline\nMagdalene\nNannie\nNita\nOlive\nOphelia\nPansy\nRosalie\nVelda\nVersie\nVesta\nVonda\nVonnie\nWilda\nZelda\nAvis\nBetsy\nBillye\nBirtha\nCamilla\nCaroline\nCassie\nCathryn\nCharlean\nCherry\nChessie\nChloe\nCorene\nDana\nEartha\nEaster\nElwanda\nEstelle\nEuna\nGene\nGeorgie\nHellen\nIola\nJanetta\nJeanie\nJonnie\nLeonia\nLily\nLinnie\nLorean\nLoreta\nLouetta\nLoyce\nLudie\nLyda\nMadge\nMaple\nMargret\nMaria\nMarietta\nMaude\nMerle\nMickey\nMiriam\nNada\nNeoma\nNoma\nPearlean\nRay\nRegina\nRowena\nSharon\nSuzanne\nTreva\nUna\nVerdia\nVerla\nVictoria\nWinona\nMary\nBetty\nShirley\nDorothy\nBarbara\nWanda\nMartha\nHelen\nVirginia\nDoris\nPatsy\nRuby\nJoyce\nMargaret\nPatricia\nNorma\nBonnie\nFrances\nLois\nMildred\nBillie\nWilma\nCarolyn\nRuth\nAnna\nPeggy\nBobbie\nNancy\nWillie\nAnnie\nEvelyn\nJuanita\nEmma\nEdna\nAlice\nJo\nLouise\nElizabeth\nClara\nMargie\nHazel\nMaxine\nSarah\nThelma\nJoan\nLillie\nRosie\nMarilyn\nEva\nVelma\nEthel\nJean\nMarie\nBernice\nElla\nGeraldine\nGladys\nGeneva\nGeorgia\nVera\nMattie\nEdith\nMinnie\nBertha\nErma\nJessie\nAnn\nGlenda\nIda\nGloria\nMelba\nBessie\nNellie\nRose\nMae\nSue\nChristine\nCharlene\nAlma\nDonna\nCarol\nLillian\nJoann\nNina\nLoretta\nSylvia\nBeatrice\nRuthie\nOllie\nPauline\nBettye\nJohnnie\nJane\nJoy\nEula\nLucille\nReba\nCatherine\nElsie\nLorene\nMyrtle\nLula\nIrene\nJulia\nLaura\nNaomi\nRoberta\nDora\nJune\nKathryn\nBettie\nErnestine\nFrankie\nKatherine\nMarjorie\nDorthy\nFannie\nPhyllis\nCora\nImogene\nEsther\nJanice\nLola\nOpal\nVerna\nAnita\nJosephine\nNora\nCharlotte\nDolores\nFaye\nHattie\nJimmie\nVivian\nCarrie\nEarnestine\nFreda\nOra\nFlorence\nJewel\nMable\nEllen\nLaverne\nLena\nEarlene\nJanet\nEddie\nKathleen\nEssie\nFlora\nKatie\nRita\nDella\nJoanne\nMamie\nPat\nRachel\nGrace\nJackie\nSally\nYvonne\nBeverly\nEunice\nFreddie\nGracie\nJanie\nMarion\nRosetta\nAlta\nIrma\nLinda\nRobbie\nAda\nBobby\nDaisy\nElnora\nRebecca\nViola\nBennie\nDelores\nIna\nJeanette\nLenora\nLou\nNettie\nOla\nSara\nStella\nAudrey\nBeulah\nFrancis\nNadine\nRosa\nTommie\nViolet\nWinnie\nEffie\nPearl\nPearlie\nEarline\nEtta\nGertrude\nInez\nIris\nKay\nLucy\nNelda\nPolly\nAgnes\nDarlene\nDixie\nEloise\nFlossie\nIva\nLee\nMaggie\nMarlene\nRosemary\nSadie\nVirgie\nConnie\nJewell\nPatty\nDollie\nDortha\nEmily\nFloy\nGlenna\nLessie\nLila\nRamona\nAddie\nJerry\nLeona\nLottie\nMelva\nNeva\nNona\nPearline\nSallie\nSandra\nSharon\nTheresa\nWilla\nBette\nGoldie\nMarian\nAlberta\nCarole\nDelois\nDeloris\nGwendolyn\nHenrietta\nJacqueline\nMyra\nQueen\nRetha\nSusie\nAva\nClaudette\nHilda\nJoe\nLela\nLeola\nPaula\nAmy\nBirdie\nClarice\nClaudia\nEleanor\nElma\nIma\nIola\nJanis\nJudith\nLetha\nLora\nMabel\nMona\nMuriel\nOdessa\nOphelia\nBonita\nDovie\nElva\nFay\nFlorine\nGearldine\nGertie\nJennie\nLavada\nLawanda\nMillie\nOleta\nOma\nReva\nAltha\nAnne\nBertie\nDeborah\nDessie\nDorris\nEstella\nFreida\nGeorgie\nLinnie\nLouella\nMay\nMittie\nMyrna\nRena\nSherry\nSusan\nVada\nVeda\nAlene\nAllie\nClaudine\nColleen\nCorine\nDiane\nDolly\nDorothea\nElaine\nFern\nFreeda\nGail\nGayle\nJames\nJosie\nJudy\nLavern\nLorine\nMollie\nPansy\nTressie\nVictoria\nWillene\nAletta\nCarlene\nChristene\nEarlean\nIona\nJan\nLettie\nLizzie\nLorraine\nMarcella\nMargret\nMaudie\nMavis\nNola\nOna\nPeggie\nRubie\nSammie\nSyble\nWilda\nAdell\nAllene\nAmanda\nAnnette\nBlanche\nBobbye\nCynthia\nDorotha\nEdwina\nElois\nElouise\nHarriet\nJeannette\nJonnie\nLeota\nLonnie\nMiriam\nOlivia\nPearlene\nRegina\nTreva\nVerla\nVerlene\nVernell\nVernice\nVesta\nZelma\nAleta\nAlpha\nAnnetta\nAretha\nArlene\nAudra\nBelva\nBetsy\nBilly\nBillye\nBlanchie\nCelia\nCharlean\nCleo\nCleta\nEarma\nFaith\nGenevieve\nGeraldean\nGreta\nGussie\nGwen\nHellen\nIla\nJamie\nJannie\nJeanie\nJeanne\nJeraldine\nJettie\nJoanna\nJohnie\nJolene\nKattie\nLeta\nLuella\nLura\nLydia\nLynn\nMaple\nMarcia\nMaude\nMerle\nNannie\nNova\nPattie\nPearlean\nRosalee\nSheila\nSuzanne\nSybil\nVenita\nVerdell\nVersie\nWinona\nZenobia\nAlbertine\nAlline\nAnnabelle\nAugusta\nBeth\nBirtha\nBulah\nCaroline\nCelestine\nCharlie\nCharline\nChristina\nClora\nConstance\nDelma\nEarl\nEliza\nElta\nEstelle\nEugenia\nFayrene\nFlorida\nFrieda\nGay\nGeorge\nGladis\nHester\nIra\nIzola\nJanetta\nJerrie\nJohn\nKathern\nLaquita\nLeatrice\nLilly\nLona\nLovie\nMadie\nMargarett\nMarguerite\nMaurine\nMolly\nMonica\nNell\nOuida\nOzell\nReola\nReta\nRoxie\nRubye\nSelma\nTeresa\nTommye\nVelda\nVeola\nVerda\nVergie\nVerlean\nVonnie\nZella\nMary\nBetty\nShirley\nDorothy\nBarbara\nWanda\nMartha\nPatsy\nHelen\nPatricia\nVirginia\nRuby\nCarolyn\nJoyce\nDoris\nPeggy\nMargaret\nFrances\nNorma\nMildred\nWilma\nBonnie\nAnna\nWillie\nAlice\nRuth\nAnnie\nBobbie\nJo\nEmma\nNancy\nBillie\nLois\nJuanita\nElizabeth\nEvelyn\nLouise\nThelma\nEdna\nHazel\nEthel\nLillie\nClara\nSarah\nGladys\nGeorgia\nDonna\nJessie\nMarilyn\nJean\nGeneva\nRosie\nJoan\nAlma\nCarol\nBertha\nMargie\nMarie\nRose\nVelma\nBessie\nGloria\nMaxine\nAnn\nLoretta\nLula\nBernice\nElla\nMattie\nErma\nGeraldine\nMinnie\nVera\nJimmie\nEdith\nEva\nJohnnie\nSue\nSylvia\nMelba\nIda\nLinda\nGlenda\nNellie\nJanice\nJoann\nJoy\nJune\nLola\nCharlene\nFrankie\nAnita\nCatherine\nErnestine\nJane\nElsie\nMyrtle\nDelores\nLucille\nKatherine\nLillian\nNina\nReba\nRuthie\nDorthy\nYvonne\nFaye\nJulia\nLaura\nMae\nPauline\nCharlotte\nKathryn\nChristine\nIrene\nCarrie\nPhyllis\nVivian\nBeverly\nFreda\nFlorence\nMarjorie\nShelby\nEarlene\nFannie\nFlora\nVerna\nDella\nDora\nEssie\nHattie\nLucy\nPearl\nEddie\nOllie\nEarnestine\nFreddie\nImogene\nRachel\nSara\nBettie\nCora\nDolores\nJosephine\nKatie\nLorene\nLou\nNelda\nSandra\nJeanette\nMable\nOpal\nPat\nViola\nVirgie\nEula\nJanet\nMaggie\nMamie\nOra\nViolet\nBeatrice\nEllen\nEunice\nJanie\nNora\nBennie\nBettye\nNettie\nConnie\nDixie\nGlenna\nJackie\nKay\nLaverne\nLeola\nOla\nPaula\nRebecca\nRobbie\nRoberta\nRosemary\nSusie\nAlberta\nEsther\nMarion\nMarlene\nPearlie\nRita\nRosetta\nAgnes\nNaomi\nSally\nBeulah\nGracie\nJoe\nLee\nLela\nLeona\nAnne\nAudrey\nCarole\nDeloris\nIrma\nKathleen\nNadine\nOdessa\nClaudia\nEarline\nGrace\nIva\nJewel\nJewell\nLena\nEleanor\nElnora\nFlossie\nGail\nMaudie\nAlta\nDaisy\nDarlene\nEffie\nMarian\nRetha\nAnnette\nEmily\nIma\nLetha\nMillie\nPearline\nQueen\nRosa\nSammie\nDonnie\nDortha\nElva\nFrancis\nGertrude\nGwendolyn\nMavis\nNeva\nStella\nWilla\nArlene\nDelois\nEtta\nJudy\nLenora\nMabel\nMona\nNell\nPolly\nSyble\nTommie\nAmy\nBette\nCallie\nCorine\nDolly\nFern\nGertie\nHilda\nIna\nJacqueline\nJerry\nJoanne\nJohnie\nLessie\nMyrna\nNona\nOphelia\nPansy\nPatty\nSallie\nSharon\nVeda\nWinnie\nAmanda\nBobby\nBobbye\nClarice\nClaudette\nGearldine\nMarva\nOma\nOuida\nSadie\nAva\nBilly\nDessie\nFloy\nFreida\nInez\nJennie\nJonnie\nJudith\nLorine\nMittie\nMyra\nMyrtis\nReva\nShelba\nTheda\nZelma\nAda\nAddie\nAngie\nCarlene\nCharles\nClaudine\nDollie\nEloise\nEstella\nFay\nIola\nJanis\nLeta\nMollie\nRena\nRoxie\nSherry\nVelda\nBertie\nBillye\nCharline\nCleta\nCynthia\nDovie\nEarlean\nEmogene\nFlorida\nFlorine\nGussie\nIla\nIris\nJan\nLottie\nMarietta\nMuriel\nNola\nSuzanne\nTheresa\nTreva\nAllie\nBirdie\nCharlie\nColleen\nEarlie\nElwanda\nGenevieve\nGoldie\nHenrietta\nKaty\nLelia\nLila\nLizzie\nLorraine\nLynn\nMelva\nNita\nRamona\nReta\nRubie\nSybil\nTressie\nVersie\nWilliam\nAlene\nAline\nAlmeda\nBarbra\nBrenda\nCelia\nCharlean\nCleo\nCornelia\nDiane\nEstelle\nEster\nFredia\nGay\nGayle\nGwen\nIra\nIvory\nJacquelyn\nJaunita\nJulie\nKaren\nLaquita\nLavada\nLavern\nLeatrice\nLora\nLoyce\nLue\nLydia\nMay\nNannie\nNila\nNova\nOleta\nOzella\nPearly\nSelma\nSidney\nTommye\nVada\nVelta\nVerlene\nViva\nArchie\nArtie\nBerniece\nCaroline\nChristene\nClaudie\nCorrine\nDana\nDelma\nDona\nDorris\nDottie\nEaster\nEdwina\nElois\nElvira\nFlorene\nFreeda\nFrieda\nHannah\nHester\nIona\nJannie\nJoanna\nKattie\nLeatha\nLilly\nLona\nLonnie\nLovie\nLuella\nMadge\nMagnolia\nMaple\nMargarette\nMargret\nMaria\nMatilda\nNoma\nOcie\nOlive\nOlivia\nPhoebe\nPriscilla\nRegina\nRobert\nRubbie\nSam\nSusan\nVeola\nVerda\nVida\nVirgia\nVonnie\nWilladean\nZella\nMary\nBetty\nShirley\nBarbara\nDorothy\nPatsy\nMartha\nHelen\nJoyce\nPatricia\nVirginia\nCarolyn\nWanda\nRuby\nDoris\nFrances\nMargaret\nPeggy\nNorma\nNancy\nAlice\nAnnie\nBonnie\nWillie\nMildred\nAnna\nRuth\nWilma\nBobbie\nElizabeth\nEvelyn\nBillie\nEmma\nJo\nLinda\nLois\nThelma\nLouise\nJuanita\nJean\nEdna\nAnn\nGeneva\nSarah\nHazel\nRosie\nAlma\nEthel\nGlenda\nGeorgia\nBertha\nCarol\nShelby\nGloria\nJessie\nClara\nJoan\nVelma\nElla\nLoretta\nMarilyn\nMaxine\nMargie\nRose\nSylvia\nSue\nErma\nGladys\nVera\nJanice\nLillie\nGeraldine\nJoann\nMae\nLula\nJane\nMattie\nDonna\nEdith\nJohnnie\nMinnie\nMarie\nBessie\nCharlene\nEva\nBernice\nCatherine\nLaura\nCora\nMyrtle\nFrankie\nNina\nEarnestine\nKathryn\nPauline\nBettye\nJoy\nReba\nRuthie\nCharlotte\nMelba\nPhyllis\nBeverly\nCarrie\nIda\nJulia\nChristine\nElsie\nIrene\nKatherine\nNellie\nAnita\nDorthy\nLucille\nMarjorie\nAnnette\nJune\nLillian\nOpal\nSandra\nBeatrice\nIrma\nJosephine\nLena\nFannie\nHattie\nJewel\nJimmie\nYvonne\nDora\nFaye\nInez\nLucy\nErnestine\nFreda\nLola\nBettie\nEula\nMaggie\nShelba\nDella\nDeloris\nEssie\nLaverne\nOla\nRoberta\nVivian\nEddie\nFlora\nImogene\nJackie\nOllie\nPearlie\nDaisy\nDelores\nEllen\nEloise\nLou\nPat\nVerna\nAda\nAlberta\nDixie\nEunice\nKay\nViola\nViolet\nFlorence\nJeanette\nNaomi\nNora\nPearl\nRebecca\nEsther\nIva\nKatie\nWilla\nArlene\nAudrey\nCarole\nFreddie\nLorene\nOra\nPatty\nPaula\nRobbie\nBeulah\nGlenna\nJanis\nMable\nSally\nSharon\nAlta\nDarlene\nEarlene\nJanet\nLeola\nMamie\nRita\nConnie\nElnora\nEmily\nGrace\nJacqueline\nJudy\nLenora\nMarion\nNelda\nEarline\nEleanor\nGracie\nJerry\nMaudie\nMona\nNettie\nRachel\nEffie\nEtta\nFrancis\nJanie\nJoe\nRosetta\nSara\nDolores\nGail\nJudith\nLela\nNona\nRosemary\nStella\nWinnie\nZelma\nAddie\nAnne\nClaudia\nGwendolyn\nIla\nJoanne\nKathleen\nSybil\nTommie\nVirgie\nFay\nIna\nLee\nLeona\nLottie\nRetha\nRosa\nSyble\nBobbye\nDelois\nDonnie\nIma\nIris\nLessie\nLetha\nMarcia\nMarian\nMolly\nNadine\nNeva\nOdessa\nPolly\nSammie\nBobby\nCharlie\nClaudine\nDiane\nDortha\nGertrude\nHellen\nLavern\nMarlene\nRamona\nAllie\nDeanna\nFloy\nJewell\nMelva\nPansy\nPearline\nRosalie\nVelda\nVernell\nVonda\nAgnes\nAmy\nAva\nBennie\nBlanche\nClarice\nDollie\nDorris\nEstella\nFlossie\nGinger\nJanette\nJoanna\nMarcella\nMavis\nRena\nVernice\nAvis\nBette\nCallie\nCharles\nChristene\nClaudette\nDovie\nElaine\nFlorida\nFlorine\nHenrietta\nHilda\nJannie\nMabel\nMyrna\nQueen\nSallie\nSherry\nTheresa\nVersie\nArtie\nDana\nDorotha\nElva\nElwanda\nFern\nGertie\nGussie\nJeanne\nJosie\nKaren\nLila\nMadge\nMargarett\nMarguerite\nMarva\nMay\nMyra\nNola\nOleta\nOuida\nReva\nSadie\nSusie\nTreva\nAline\nAlpha\nBlanch\nBonita\nCarlene\nCharline\nCleo\nCynthia\nDiana\nDolly\nDorothea\nElouise\nGayle\nGeorgie\nHarriet\nHenry\nIdell\nJacquelyn\nJames\nJanelle\nJerlean\nJohn\nLavonda\nLeta\nLizzie\nMerle\nNita\nOphelia\nRoxie\nSusan\nTerry\nTressie\nWillene\nBeth\nBetsy\nCarla\nDelma\nFlorene\nGearldine\nHallie\nIra\nJamie\nJennie\nJeraldine\nJohnie\nLawanda\nLynda\nMargret\nMarietta\nNannie\nNell\nOma\nOna\nPatrica\nPearly\nRay\nReola\nSavannah\nVada\nVictoria\nWillia\nAltha\nAlva\nArchie\nBilly\nCecile\nColleen\nCorene\nCorine\nCornelia\nDean\nDeborah\nDelia\nDessie\nDimple\nDottie\nEliza\nFreida\nGeorge\nGoldie\nJeanie\nJerlene\nJimmy\nJossie\nLavada\nLucile\nLuella\nLydia\nLynn\nMadeline\nMagnolia\nMargree\nMarlyn\nMiriam\nNadean\nNovella\nOdessia\nOtha\nRutha\nSelma\nSidney\nVinnie\nWinifred\nWynona\nMary\nBetty\nShirley\nBarbara\nDorothy\nCarolyn\nPatsy\nMartha\nWanda\nJoyce\nPatricia\nVirginia\nHelen\nLinda\nMargaret\nDoris\nNorma\nRuby\nPeggy\nFrances\nNancy\nBobbie\nAlice\nBonnie\nJo\nWilma\nAnna\nRuth\nEmma\nWillie\nAnnie\nElizabeth\nMildred\nBillie\nLouise\nEvelyn\nMarilyn\nLois\nHazel\nGlenda\nJuanita\nMargie\nClara\nLillie\nErma\nDonna\nRosie\nGloria\nSarah\nMinnie\nJoann\nEdna\nAnn\nThelma\nVelma\nCarol\nSue\nJean\nEthel\nMelba\nJessie\nGladys\nSylvia\nJanice\nMarie\nRose\nAlma\nBertha\nJohnnie\nIda\nBernice\nGeorgia\nGeraldine\nMae\nBessie\nCharlene\nPhyllis\nVera\nGeneva\nJane\nMattie\nMaxine\nSandra\nElla\nChristine\nLoretta\nCharlotte\nJoy\nBettye\nBeverly\nEva\nJoan\nKatherine\nFaye\nLula\nPauline\nRuthie\nCatherine\nFrankie\nLola\nShelby\nIrene\nLillian\nNaomi\nNina\nVivian\nAnnette\nJulia\nReba\nAnita\nCora\nEdith\nFannie\nMyrtle\nErnestine\nMarjorie\nJimmie\nLorene\nNellie\nEarnestine\nYvonne\nElsie\nLucy\nLucille\nNora\nVerna\nConnie\nDorthy\nKathryn\nLaura\nOpal\nPearl\nPearlie\nRebecca\nSharon\nBeatrice\nCarrie\nDora\nLena\nBettie\nDaisy\nEllen\nHattie\nJune\nKay\nSally\nEssie\nEula\nIrma\nRoberta\nJackie\nJanet\nFlora\nFlorence\nLaverne\nDelores\nDixie\nEarlene\nJudy\nLee\nMable\nNelda\nOra\nAnne\nDella\nEddie\nEtta\nFreddie\nNettie\nOllie\nRita\nViola\nAudrey\nCarole\nJanie\nJeanette\nJewel\nJosephine\nPaula\nEsther\nFrancis\nFreda\nGail\nGrace\nIva\nJudith\nLeona\nPat\nRosa\nRosetta\nAlberta\nRobbie\nRosemary\nSara\nShelba\nEmily\nEunice\nIna\nMyrna\nOla\nAgnes\nDeanna\nDolores\nJerry\nKatie\nStella\nVirgie\nEleanor\nGracie\nImogene\nJacqueline\nLou\nMaggie\nSherry\nWilla\nAlta\nGwendolyn\nJewell\nKathleen\nNadine\nDarlene\nDeloris\nMarva\nMyra\nRamona\nAda\nArlene\nDollie\nLenora\nRachel\nClaudia\nClaudine\nEffie\nFloy\nJennie\nLela\nLeola\nMamie\nMarion\nNona\nSadie\nSusan\nBeulah\nDelois\nEarline\nGertrude\nIris\nJames\nJanis\nMona\nNola\nOcie\nPolly\nTommie\nCallie\nElnora\nInez\nPatty\nSusie\nViolet\nBennie\nBobby\nFern\nGoldie\nHilda\nIma\nJoanne\nReva\nTheresa\nWinnie\nCleo\nCynthia\nElva\nEstella\nMabel\nOphelia\nRetha\nSammie\nSybil\nAddie\nAva\nFlossie\nIla\nJamie\nJoe\nLavada\nLynda\nLynn\nMay\nNeva\nRosalie\nSallie\nVeda\nVernice\nZelma\nChristene\nCorine\nDiane\nDortha\nEloise\nLavern\nLorine\nLottie\nMarcia\nMarlene\nMollie\nOleta\nPansy\nVada\nVernell\nVersie\nBelva\nCecil\nClaudette\nCorene\nDolly\nJosie\nLizzie\nLouella\nMarcella\nMarian\nMavis\nOdessa\nSonja\nSyble\nTreva\nAllie\nAmy\nArtie\nBilly\nClarice\nElaine\nEstelle\nFay\nGayle\nGenevieve\nGertie\nGinger\nGlenna\nGussie\nHarriet\nIvory\nJenny\nLovie\nMillie\nNell\nOma\nQueen\nRegina\nWilda\nAlene\nAline\nBerniece\nBette\nBlanche\nCaroline\nCharlie\nConstance\nCornelia\nDana\nDeborah\nDiana\nDovie\nEarlean\nElwanda\nFlorine\nHenrietta\nIola\nJanette\nJaunita\nKaren\nKathy\nLetha\nMaudie\nMelva\nMolly\nPearlene\nPearline\nRubie\nTheda\nTressie\nTwila\nVeola\nWillia\nAlva\nAmelia\nAngie\nAnnetta\nCarlene\nColleen\nDelma\nDorris\nFreeda\nGearldine\nGeorgie\nGreta\nGwen\nHarlene\nHarriett\nJacquelyn\nJan\nJannie\nJoanna\nJohnie\nJonnie\nLavonne\nLeatha\nLeota\nLila\nLue\nMagnolia\nMargret\nMaria\nMaureen\nNelma\nOlive\nOna\nRena\nReola\nRobert\nRoxie\nSamella\nSelma\nTerry\nVerlene\nVida\nWillene\nAmanda\nAnnabelle\nArchie\nAvis\nBeth\nBillye\nBobbye\nCarla\nCarrol\nCassie\nCecelia\nCharlean\nCharline\nCherry\nDeloise\nDessie\nDianne\nDottie\nEdwina\nEthelene\nEuna\nFlorida\nFreida\nGay\nIona\nIra\nIvy\nJeanne\nJoye\nJulie\nKatheryn\nKathrine\nKattie\nLelia\nLinnie\nLonnie\nLora\nLorena\nLucile\nLynne\nMadge\nMarietta\nMaurine\nMerle\nMickey\nMuriel\nNaoma\nNeoma\nNita\nNova\nOzell\nPatti\nPeggie\nPriscilla\nRosalee\nShirlene\nSuzanne\nTiny\nVelda\nVonda\nMary\nBetty\nShirley\nBarbara\nDorothy\nWanda\nCarolyn\nPatsy\nLinda\nMartha\nJoyce\nHelen\nPatricia\nMargaret\nVirginia\nPeggy\nNancy\nDoris\nRuby\nFrances\nNorma\nBobbie\nAlice\nJo\nLois\nElizabeth\nBonnie\nRuth\nWilma\nGlenda\nEmma\nAnnie\nAnna\nMarilyn\nDonna\nMildred\nEvelyn\nThelma\nBillie\nWillie\nSarah\nGloria\nSandra\nJuanita\nSue\nCarol\nJanice\nRosie\nLoretta\nBertha\nEdna\nGeorgia\nPhyllis\nAnn\nRose\nErma\nMarie\nLillie\nLouise\nMargie\nJean\nJessie\nCharlotte\nJoan\nEthel\nGeraldine\nClara\nLaura\nBernice\nGeneva\nMae\nVelma\nElla\nHazel\nJudy\nVera\nBeverly\nMattie\nAlma\nMaxine\nMelba\nAnita\nEva\nMinnie\nEdith\nSylvia\nGladys\nJoann\nCatherine\nNina\nSharon\nIda\nBessie\nEllen\nJanet\nChristine\nJohnnie\nJudith\nBeatrice\nJoy\nCora\nLola\nJane\nKatherine\nLillian\nPauline\nReba\nJimmie\nKathryn\nRuthie\nCharlene\nRebecca\nBettye\nJackie\nLula\nNellie\nPat\nMyrtle\nJulia\nKay\nDora\nSara\nEarnestine\nFaye\nOllie\nPearlie\nRobbie\nFannie\nFlorence\nLaverne\nShelby\nVivian\nDelores\nErnestine\nFrankie\nJosephine\nMarjorie\nNaomi\nOra\nVerna\nElsie\nIrma\nJeanette\nOpal\nBettie\nIrene\nNora\nAnnette\nBrenda\nDolores\nDorthy\nEddie\nEunice\nRita\nConnie\nFreda\nFreddie\nJewel\nMable\nPearl\nSally\nDaisy\nLorene\nRachel\nYvonne\nAda\nBennie\nEsther\nEula\nFlora\nJune\nLena\nLucille\nMamie\nNelda\nStella\nGail\nMarian\nRosetta\nPaula\nViola\nAlta\nDella\nLucy\nOla\nSherry\nHattie\nImogene\nIna\nInez\nLou\nRoberta\nTommie\nAudrey\nCarrie\nEssie\nEtta\nJanis\nMarion\nDelois\nDixie\nJoe\nLynda\nPatty\nPolly\nRosa\nDarlene\nEffie\nGwendolyn\nJanie\nKatie\nMyra\nRosemary\nSadie\nSusan\nCarole\nEleanor\nGrace\nJerry\nKathleen\nLela\nMaggie\nMelva\nMyrna\nNadine\nAlberta\nBeulah\nClaudia\nElaine\nGlenna\nGracie\nIva\nNell\nNona\nShelba\nWilla\nBonita\nDeanna\nDeloris\nEarlene\nEmily\nJacqueline\nLeona\nLottie\nMavis\nMona\nSusie\nVirgie\nDessie\nLee\nNettie\nQueen\nRetha\nAnne\nBobbye\nDana\nEarline\nLenora\nLizzie\nOdessa\nPearline\nTheresa\nTressie\nCleo\nCynthia\nDiane\nElnora\nEloise\nFay\nFlorine\nFrancis\nJacquelyn\nLeola\nMarcia\nNita\nRamona\nArlene\nBecky\nBobby\nClarice\nDiana\nDortha\nEstella\nFloy\nIris\nLila\nMarva\nSybil\nViolet\nAgnes\nArtie\nChristene\nDollie\nDonnie\nFern\nGertrude\nJanette\nJennie\nLavada\nLetha\nMaudie\nPriscilla\nRosalie\nSondra\nWinnie\nZelma\nAltha\nBlanche\nCorine\nElwanda\nEstelle\nFlossie\nGeorgie\nHilda\nIla\nIma\nJoanne\nLydia\nMarlene\nMay\nMillie\nPearlene\nReta\nSonja\nSuzanne\nAddie\nAmy\nAretha\nClaudine\nConstance\nEarlean\nEaster\nGayle\nGeorge\nGlynda\nJames\nJewell\nKaren\nLawanda\nLora\nLorine\nLorraine\nLue\nNannie\nOlivia\nOma\nRena\nSheila\nAva\nBerta\nDorris\nElva\nGearldine\nGussie\nHenrietta\nIola\nJan\nJohnie\nLeah\nLinnie\nMagnolia\nMargret\nNola\nOcie\nOphelia\nPansy\nPatti\nRubye\nVeda\nAllene\nBarbra\nBelva\nBette\nCallie\nCaroline\nCecilia\nCharline\nCleta\nCorene\nDianne\nDolly\nDovie\nEarlie\nEarma\nEdwina\nEliza\nEmmer\nEmogene\nEra\nEugenia\nFreida\nGay\nGinger\nGreta\nGwen\nIvory\nJamie\nJeannie\nJosie\nLavonne\nLeora\nLilly\nLorena\nLuella\nMaple\nMarcella\nMelvia\nNan\nNeva\nNovella\nOna\nRoma\nSallie\nSammie\nSammye\nSonya\nSyble\nTreva\nVada\nVelda\nVenita\nVictoria\nVida\nWillia\nZenobia\nAlean\nAlene\nAline\nAllie\nAnnetta\nBirdie\nCarma\nCherry\nClementine\nCorinne\nDorothea\nElvie\nEster\nFredia\nGenevieve\nGertie\nJeanne\nJeffie\nJohnny\nJoye\nKatheryn\nKathy\nLeota\nLessie\nLeta\nLily\nLoyce\nLynn\nMabel\nMeredith\nMolly\nNelma\nNeoma\nOleta\nPeggie\nPenny\nRutha\nShirlene\nTommy\nToni\nVergie\nVersie\nVeta\nWilda\nWilliam\nWilline\nMary\nBetty\nBarbara\nShirley\nLinda\nDorothy\nCarolyn\nPatricia\nMartha\nJoyce\nPatsy\nHelen\nWanda\nMargaret\nPeggy\nRuby\nNancy\nAlice\nVirginia\nDoris\nFrances\nNorma\nBonnie\nGlenda\nBobbie\nElizabeth\nJo\nDonna\nCarol\nEmma\nJuanita\nLois\nRuth\nWilma\nJudy\nAnna\nGloria\nWillie\nJanice\nMildred\nSandra\nBrenda\nEvelyn\nAnnie\nPhyllis\nLouise\nSarah\nMargie\nEdna\nMarilyn\nJean\nHazel\nThelma\nSue\nBillie\nAnn\nBertha\nClara\nJudith\nLillie\nRose\nGeorgia\nRosie\nGladys\nAnita\nJoan\nEthel\nLoretta\nCharlotte\nElla\nBeverly\nEdith\nMelba\nSylvia\nEva\nJessie\nJane\nMae\nMaxine\nBernice\nGeraldine\nJoann\nGeneva\nJohnnie\nLaura\nBettye\nEllen\nKatherine\nMattie\nRebecca\nSharon\nVelma\nAlma\nMarie\nVera\nCatherine\nIda\nJulia\nMinnie\nVivian\nErma\nCharlene\nDorthy\nLillian\nNina\nDelores\nBettie\nEarnestine\nBeatrice\nBessie\nElsie\nJosephine\nPauline\nFannie\nPat\nRuthie\nYvonne\nCora\nFreda\nJeanette\nMarjorie\nRita\nChristine\nLula\nGrace\nLynda\nJoy\nKathryn\nNellie\nPearlie\nOpal\nVerna\nConnie\nJanet\nAnnette\nFlorence\nJimmie\nLucille\nFaye\nFrankie\nIrma\nKay\nReba\nSara\nEsther\nHattie\nJune\nLou\nNelda\nRoberta\nStella\nCarrie\nDora\nFreddie\nJackie\nLola\nOllie\nPearl\nAudrey\nEula\nIrene\nNora\nOra\nPaula\nViola\nDarlene\nFlora\nLucy\nMable\nMyrna\nRosemary\nDixie\nDolores\nEddie\nEssie\nLorene\nMyrtle\nShelby\nAda\nErnestine\nFrancis\nJerry\nLee\nPolly\nPriscilla\nSusan\nDaisy\nDelois\nEtta\nMamie\nRachel\nRosetta\nSally\nTommie\nAlberta\nBeulah\nGlenna\nJanie\nJanis\nJewel\nKaren\nSusie\nDella\nEunice\nGwendolyn\nMaggie\nMarion\nNadine\nNaomi\nPatty\nRobbie\nRosa\nAnne\nBennie\nGracie\nLena\nLeona\nSherry\nBobby\nCynthia\nEarlene\nEarline\nMay\nNettie\nOla\nCarole\nJewell\nJoanne\nLaverne\nLottie\nMona\nAddie\nElaine\nIna\nKatie\nMarva\nMyra\nVirgie\nClaudia\nJennie\nWinnie\nAlta\nDeloris\nDollie\nEffie\nEleanor\nEstella\nGail\nIris\nKathleen\nMelva\nPearline\nShelba\nSuzanne\nWilla\nArlene\nCorine\nEloise\nEmily\nFlossie\nGeorgie\nHenrietta\nImogene\nLela\nLeola\nNona\nQueen\nRamona\nSondra\nViolet\nAgnes\nBirdie\nElnora\nFern\nIma\nJoe\nLavern\nMarcella\nSyble\nBecky\nCallie\nGearldine\nGertrude\nKathy\nLetha\nLydia\nMagnolia\nMarlene\nMolly\nNeva\nSadie\nSybil\nBetsy\nCarla\nClaudine\nDiane\nEarma\nGinger\nJeanne\nJonnie\nLana\nLenora\nMarian\nNola\nSonja\nTheresa\nVeda\nZelma\nAllie\nCaroline\nChristene\nDeanna\nHilda\nIla\nJacqueline\nJamie\nJohn\nLynn\nMabel\nMaudie\nMaxcine\nMollie\nOdessa\nRegina\nRoxie\nSammie\nSheila\nVelda\nAline\nAva\nCarlene\nCecilia\nCleo\nDeborah\nDiana\nDolly\nDonnie\nEmogene\nIva\nJames\nJanette\nJannie\nJaunita\nLue\nMargarett\nMillie\nOma\nOphelia\nVada\nAmanda\nBarbra\nCharles\nCherry\nCornelia\nDortha\nDovie\nEdwina\nElva\nElwanda\nFlorine\nFreida\nGenevieve\nGennie\nHarriet\nInez\nJulie\nLavonda\nLessie\nLorine\nMarcia\nMarguerite\nMuriel\nNell\nOna\nRetha\nTreva\nAlva\nAmy\nAugusta\nBertie\nBeth\nBilly\nBobbye\nBonita\nCathy\nCharlie\nCleta\nCorrine\nDorris\nEarlean\nFloy\nGay\nGertha\nGoldie\nIzola\nJacquelyn\nJanetta\nLinnie\nLouie\nLuella\nLura\nMargret\nMaude\nMavis\nMittie\nNannie\nNita\nOleta\nPeggie\nReta\nReva\nRoyce\nSallie\nSaundra\nSelma\nTressie\nVernell\nVersie\nWilda\nZella\nAlpha\nAltha\nAmelia\nAndrea\nAngela\nAnnetta\nBelva\nCassie\nCharline\nCharlsie\nClarene\nClassie\nCorean\nDarla\nDeloise\nDelora\nDorotha\nEarlie\nElma\nElouise\nEra\nEster\nFay\nGaye\nGayle\nGeorge\nGertie\nGwen\nHellen\nIvory\nJanell\nJeanie\nJenny\nJerlean\nJohnny\nJosie\nJunita\nKathern\nLeah\nLelia\nLeslie\nLila\nLilly\nLizzie\nLorraine\nLouella\nLovie\nLoyce\nMarietta\nMatilda\nMaurice\nMaxie\nMerle\nMerlene\nPansy\nPearley\nRosalie\nVerda\nVesta\nMary\nBetty\nBarbara\nLinda\nShirley\nCarolyn\nPatsy\nDorothy\nPatricia\nWanda\nJoyce\nMartha\nMargaret\nHelen\nPeggy\nDoris\nNancy\nVirginia\nRuby\nAlice\nBrenda\nElizabeth\nJudy\nBonnie\nFrances\nGlenda\nSandra\nAnna\nNorma\nLois\nJo\nMarilyn\nBobbie\nGloria\nAnnie\nWilma\nRuth\nJudith\nCarol\nMildred\nDonna\nEmma\nEvelyn\nEdna\nPhyllis\nWillie\nMargie\nBillie\nJanice\nLouise\nHazel\nSarah\nThelma\nAnn\nSue\nJuanita\nBeverly\nSharon\nCharlotte\nRosie\nClara\nLillie\nErma\nMattie\nAlma\nGeorgia\nJean\nMaxine\nSylvia\nJulia\nRose\nIda\nVelma\nJoann\nJohnnie\nEthel\nLoretta\nMae\nBessie\nJane\nJoan\nRebecca\nVera\nBertha\nPat\nBernice\nEllen\nEva\nCharlene\nEdith\nGladys\nLynda\nElla\nJessie\nLaura\nGeneva\nMarie\nAnita\nMelba\nBettye\nCatherine\nGeraldine\nMinnie\nReba\nLillian\nChristine\nDorthy\nPauline\nKathryn\nLula\nJanet\nKay\nNellie\nRita\nEarnestine\nIrene\nFreda\nVivian\nDelores\nFrankie\nJune\nLucy\nMyrtle\nJanis\nLena\nFlorence\nIrma\nJackie\nKatherine\nLucille\nSherry\nStella\nConnie\nSally\nDora\nJeanette\nJimmie\nJoy\nNora\nCora\nFaye\nLola\nMarjorie\nDella\nFreddie\nHattie\nNina\nShelby\nCarole\nErnestine\nEssie\nFlora\nJosephine\nSusie\nBettie\nJewel\nLou\nPaula\nKatie\nOllie\nRoberta\nEula\nRuthie\nAudrey\nBeatrice\nCarrie\nEtta\nGrace\nJanie\nOpal\nOra\nSusan\nDolores\nEsther\nFannie\nDaisy\nGlenna\nKathleen\nNaomi\nSara\nTommie\nViola\nAnnette\nDelois\nDeloris\nEarline\nElsie\nEmily\nLaverne\nEarlene\nEunice\nMaggie\nEleanor\nLorene\nMarian\nMarion\nRosa\nYvonne\nClaudia\nDarlene\nGwendolyn\nKaren\nMarva\nNelda\nPearl\nPearlie\nPriscilla\nVerna\nWilla\nBennie\nGracie\nRachel\nRosetta\nGail\nRosemary\nJerry\nLee\nLela\nMable\nAddie\nFlossie\nLottie\nMamie\nNettie\nOla\nPatty\nAgnes\nBobby\nBobbye\nGertrude\nHenrietta\nIva\nMona\nRetha\nViolet\nAlberta\nAnne\nDixie\nEloise\nHilda\nInez\nLeola\nMarcia\nMyra\nRamona\nAda\nArlene\nBonita\nCynthia\nDeanna\nDiane\nDolly\nJacqueline\nJacquelyn\nLenora\nNell\nRobbie\nTheresa\nAlta\nDiana\nEddie\nFrancis\nIna\nLavern\nLue\nMarcella\nNadine\nNola\nSallie\nSammie\nSuzanne\nBeulah\nCarlene\nElaine\nElnora\nImogene\nJanette\nJannie\nJeanne\nJennie\nLetha\nLilly\nMay\nNona\nPolly\nWinnie\nAva\nBeth\nCaroline\nCharles\nCharline\nDianne\nDollie\nEster\nFay\nGertie\nHarriet\nIla\nIris\nJewell\nJoanne\nJosie\nLizzie\nMyrna\nNita\nOdessa\nReva\nSadie\nSheila\nSondra\nCelia\nElva\nIma\nJoe\nJulie\nLeona\nLovie\nRena\nSonja\nBette\nCecilia\nClaudine\nDovie\nEarma\nEdwina\nEugenia\nFern\nGoldie\nJeannie\nKathy\nKaye\nLavada\nLessie\nMaria\nMavis\nPearline\nShelba\nTerry\nVonda\nAllie\nAmanda\nAngela\nAnnetta\nBecky\nBelva\nBerta\nBirdie\nCassie\nClarice\nCleta\nConstance\nDianna\nDona\nElma\nFloy\nFreeda\nFrieda\nGayle\nGearldine\nGinger\nHellen\nIona\nJames\nJeanetta\nJeanie\nJeannette\nJonnie\nKitty\nLeta\nLila\nLora\nMargret\nMaudie\nMaxcine\nMolly\nNeva\nPansy\nQueen\nRobert\nTressie\nZelma\nAmelia\nBerniece\nCathy\nCelestine\nClaudette\nCleo\nDana\nDessie\nDortha\nEarlean\nEffie\nEverlena\nFreida\nGennie\nGeorgie\nGertha\nGussie\nHettie\nJohn\nLana\nLawanda\nLorraine\nLynn\nMabel\nMelva\nOcie\nOleta\nOphelia\nPearlene\nPeggie\nRegina\nRubie\nRubye\nSyble\nTeresa\nTheda\nToni\nVergie\nVersie\nVictoria\nVida\nVirgie\nWonda\nAlfreda\nAltha\nAmy\nBetsy\nBillye\nBlanche\nCeleste\nCharity\nChristene\nDorotha\nEartha\nElouise\nElwanda\nEstella\nFlorida\nFloye\nGay\nGlynda\nGreta\nIdella\nJan\nJerrie\nJoanna\nJoella\nJolene\nLavon\nLelia\nLennie\nLinnie\nLorine\nLouella\nLoyce\nLydia\nMadelyn\nMalinda\nMarlene\nMaureen\nMeredith\nMiriam\nNeoma\nOlivia\nOna\nRetta\nRosalie\nSherley\nSherrie\nSonia\nSuellen\nSybil\nValeria\nVelda\nVerda\nZelda\nMary\nBetty\nLinda\nBarbara\nCarolyn\nShirley\nPatricia\nDorothy\nMartha\nPatsy\nJoyce\nWanda\nMargaret\nNancy\nHelen\nPeggy\nSandra\nBrenda\nDoris\nFrances\nVirginia\nAlice\nJudy\nRuby\nJo\nNorma\nWilma\nRuth\nSharon\nBonnie\nElizabeth\nBobbie\nGloria\nMildred\nCarol\nAnnie\nJanice\nMarilyn\nWillie\nDonna\nEmma\nGlenda\nAnna\nBillie\nJudith\nPhyllis\nJuanita\nLois\nSarah\nSue\nEvelyn\nCharlotte\nMargie\nEdna\nLouise\nClara\nRebecca\nAnn\nErma\nRosie\nJean\nLillie\nLoretta\nJohnnie\nMae\nBeverly\nJoan\nGeorgia\nBertha\nIda\nMattie\nMinnie\nVera\nJanet\nVelma\nJane\nMaxine\nRose\nHazel\nGladys\nEthel\nMarie\nThelma\nJulia\nEva\nCharlene\nAlma\nGeneva\nJessie\nRita\nElla\nDelores\nKay\nMelba\nPat\nKatherine\nPauline\nReba\nSusan\nEllen\nAnita\nNina\nBernice\nCatherine\nGeraldine\nVivian\nEdith\nLaura\nLola\nLula\nConnie\nHattie\nJackie\nKathryn\nRuthie\nChristine\nLillian\nSherry\nCarole\nSylvia\nBettye\nJoann\nJosephine\nLynda\nErnestine\nFrankie\nBessie\nCora\nJoy\nDiane\nBeatrice\nDorthy\nLena\nEarnestine\nJeanette\nKaren\nMyrtle\nNellie\nOllie\nVerna\nCarrie\nIrene\nJune\nLucille\nMable\nPaula\nFreddie\nJanis\nPearlie\nDora\nEssie\nEsther\nEula\nFlorence\nFreda\nJanie\nOpal\nFaye\nGwendolyn\nNora\nPaulette\nRoberta\nStella\nBettie\nBeulah\nDarlene\nDeloris\nFannie\nFlora\nLucy\nPearl\nSara\nDolores\nGail\nIrma\nYvonne\nIva\nJewell\nJimmie\nRachel\nRosa\nAnnette\nMarjorie\nRobbie\nSally\nKathy\nAudrey\nMamie\nNelda\nOra\nPatty\nWilla\nCynthia\nGracie\nJewel\nLaverne\nLeona\nMyra\nNettie\nViola\nAlberta\nKathleen\nLou\nMarion\nNaomi\nBennie\nDaisy\nEtta\nGrace\nLela\nLorene\nOla\nRosetta\nClaudia\nDelois\nDiana\nIna\nJerry\nLana\nSusie\nEddie\nElaine\nElsie\nEmily\nMaggie\nQueen\nRena\nRosemary\nTheresa\nAda\nDella\nEarlene\nPolly\nSammie\nSondra\nTommie\nViolet\nEleanor\nEunice\nJacqueline\nLee\nLenora\nOdessa\nRamona\nShelby\nVicki\nDeanna\nEarline\nFlossie\nFrancis\nGlenna\nJennie\nJoanne\nMarian\nMay\nNola\nNona\nPriscilla\nSallie\nAddie\nAlta\nEloise\nIma\nJamie\nKatie\nLeola\nLorine\nRetha\nSadie\nAnne\nBecky\nBobby\nCorine\nEffie\nEstella\nGeorgie\nHilda\nSheila\nVirgie\nAgnes\nBette\nBlanche\nDixie\nJosie\nLynn\nMargarett\nMona\nNadine\nShelia\nTerry\nAva\nCecelia\nCecilia\nDana\nDovie\nElnora\nFloy\nGertie\nGertrude\nInez\nJoe\nJonnie\nLottie\nMarcella\nMelva\nMyrna\nNita\nSaundra\nBeth\nBonita\nCathy\nClarice\nClaudette\nDianna\nHenrietta\nImogene\nJan\nJeanne\nJeannie\nJulie\nKaye\nLavern\nMabel\nMadeline\nMarsha\nMaudie\nMillie\nOlivia\nSharron\nShelba\nTeresa\nWillene\nWinnie\nBertie\nBirdie\nCarrol\nDessie\nDianne\nDonnie\nDorris\nElma\nFreeda\nGenevieve\nGoldie\nJames\nLavada\nLessie\nLetha\nLila\nMarcia\nMargarette\nMarva\nOleta\nRosalie\nSuzanne\nVonda\nZettie\nAmelia\nBillye\nBobbye\nCarla\nChristene\nDiann\nDortha\nEmmer\nEster\nGladis\nGwen\nHarriet\nHarriett\nIla\nIvy\nJacquelyn\nLora\nNell\nPearline\nPenny\nSyble\nVictoria\nZelma\nAllie\nCallie\nCarlene\nCaroline\nCharles\nCharlie\nCleo\nDarla\nDeborah\nDollie\nDottie\nFlorida\nGayle\nHellen\nJannie\nJeanie\nJeannette\nJenny\nLawanda\nLily\nLizzie\nLonnie\nLouella\nLue\nLydia\nMargret\nMollie\nMolly\nNan\nNedra\nNeva\nOphelia\nPeggie\nReva\nVeda\nVelda\nAline\nAmy\nAngela\nAnnetta\nArchie\nArlene\nArtie\nBirtha\nCarlotta\nCharline\nColleen\nConstance\nDelia\nDelphia\nDona\nEaster\nEdwina\nElouise\nFay\nFern\nGaye\nGearldine\nGene\nGlinda\nGussie\nHester\nIola\nIvory\nJanette\nJeanetta\nJeraldine\nJohnie\nKatheryn\nLucinda\nLura\nMarietta\nMarlene\nMarolyn\nMazie\nMelinda\nMerlene\nMerry\nMurline\nNelta\nOcie\nOdell\nPamela\nPearly\nRegina\nReola\nReta\nRobin\nSammye\nSonja\nSybil\nTina\nTommy\nVerda\nVida\nWilda\nMary\nBetty\nLinda\nBarbara\nCarolyn\nShirley\nPatricia\nDorothy\nJoyce\nPatsy\nSharon\nMartha\nWanda\nNancy\nMargaret\nJudy\nSandra\nHelen\nBrenda\nDoris\nPeggy\nVirginia\nCarol\nFrances\nAlice\nRuby\nElizabeth\nBonnie\nGlenda\nBobbie\nGloria\nRuth\nDonna\nJo\nNorma\nJudith\nMarilyn\nAnnie\nJanice\nEmma\nCharlotte\nWillie\nPhyllis\nLois\nEvelyn\nWilma\nAnna\nMildred\nEdna\nBillie\nJanet\nSue\nThelma\nAnn\nBeverly\nLillie\nRose\nJoan\nJuanita\nBertha\nSarah\nErma\nRosie\nConnie\nGeorgia\nClara\nMargie\nLouise\nCatherine\nJean\nMaxine\nEthel\nKatherine\nJohnnie\nLynda\nVelma\nEva\nMinnie\nRita\nCharlene\nKathryn\nAlma\nHazel\nKaren\nBernice\nJane\nJoann\nLaura\nMelba\nGladys\nLoretta\nVera\nKay\nMarie\nPaula\nRebecca\nBettye\nElla\nGeneva\nSherry\nPat\nMae\nDorthy\nJessie\nJulia\nSylvia\nGeraldine\nSusan\nChristine\nEllen\nMattie\nNina\nPaulette\nAnita\nBeatrice\nDelores\nEdith\nJackie\nRuthie\nStella\nBettie\nEarnestine\nIrene\nPauline\nJune\nVivian\nCarole\nFaye\nJimmie\nFlorence\nNora\nOllie\nRoberta\nCarrie\nDiane\nIda\nJeanette\nMarjorie\nCora\nDaisy\nErnestine\nJosephine\nKathleen\nLillian\nReba\nSally\nBessie\nFreddie\nLola\nKathy\nMarion\nElsie\nFannie\nJoy\nTommie\nLena\nDiana\nDora\nEarline\nEssie\nKatie\nLucille\nPearlie\nFlora\nJanie\nOpal\nOra\nSusie\nVerna\nYvonne\nDianne\nEsther\nFrankie\nFreda\nJewel\nNelda\nRosemary\nEddie\nEula\nPamela\nSharron\nViola\nGracie\nLula\nNellie\nPearl\nAnnette\nDeloris\nMable\nRachel\nAudrey\nDolores\nGwendolyn\nIrma\nLou\nMyrtle\nSara\nClaudia\nDeanna\nDella\nEmily\nHenrietta\nJacqueline\nMamie\nNadine\nSuzanne\nAnne\nDelois\nEarlene\nJennie\nJoanne\nLorene\nLucy\nNaomi\nPolly\nRosa\nShelby\nAda\nArlene\nBennie\nHattie\nJerry\nMarsha\nOla\nViolet\nWilla\nAlberta\nLee\nLela\nMaggie\nQueen\nRobbie\nAddie\nAgnes\nCheryl\nGrace\nIna\nMarcia\nMarva\nElaine\nEloise\nFrancis\nGail\nIva\nLenora\nMavis\nPatty\nDonnie\nDortha\nLeona\nMelva\nNettie\nPriscilla\nAlta\nDarlene\nEtta\nGearldine\nInez\nMarian\nRosetta\nSadie\nTheresa\nVirgie\nBeth\nBeulah\nCynthia\nEleanor\nElnora\nGlenna\nGoldie\nHilda\nImogene\nJeannie\nJewell\nLaverne\nMagnolia\nMarlene\nMona\nOdessa\nSammie\nBonita\nClaudette\nDianna\nDollie\nEffie\nGertrude\nIris\nJanis\nLavern\nLeola\nLora\nLottie\nNell\nNona\nRena\nSandy\nSaundra\nSheila\nSybil\nVersie\nWinnie\nCharline\nElva\nEstella\nEunice\nJan\nJanette\nJeanne\nJohnie\nLetha\nLorine\nMargarett\nNola\nRetha\nSondra\nVicki\nZona\nAndrea\nBecky\nBertie\nBirdie\nCallie\nCathy\nClaudine\nCleo\nDana\nDiann\nDixie\nDovie\nEster\nGenevieve\nHarriet\nIvory\nJames\nLavada\nLeta\nLizzie\nLynn\nMarcella\nMelinda\nMollie\nRegina\nTeresa\nVenita\nAline\nAllie\nAmy\nBobby\nDorris\nFern\nJoe\nJulie\nLana\nLonnie\nMay\nRamona\nReva\nSallie\nSyble\nVictoria\nAmelia\nAnnetta\nBobbye\nCarlene\nCaroline\nCharles\nChristene\nFay\nFlossie\nFrieda\nGinger\nJamie\nJana\nJaunita\nKaye\nLovie\nLuella\nLydia\nMarguerite\nMaria\nMaudie\nMyra\nNita\nOlivia\nOphelia\nPatti\nPenny\nShelia\nTerry\nZella\nZelma\nAileen\nAlpha\nAngela\nBernestine\nCarla\nCarmen\nCharolette\nCorine\nDona\nEarma\nGayle\nGeorgie\nGlynda\nJacquelyn\nJerlean\nJohnny\nLeslie\nLilly\nLorraine\nLue\nLura\nMolly\nMyrna\nPatrica\nReta\nRobert\nSelma\nSonja\nVerda\nAbbie\nAltha\nAna\nAnda\nAngeline\nAretha\nBarbra\nBetsy\nBirtha\nCarroll\nCharleen\nCindy\nClarice\nCleta\nCornelia\nDelma\nDottie\nEarlean\nEarlie\nEileen\nElma\nEmmer\nFreida\nGale\nGertie\nGretchen\nGwen\nIola\nJannie\nJennifer\nJoetta\nJohn\nLawanda\nLeatha\nLessie\nLettie\nLouella\nLucinda\nMarietta\nMaurice\nMaxcine\nMazie\nMerle\nMillie\nMuriel\nOleta\nPattie\nPearline\nPeggie\nRay\nShelba\nShirlene\nUna\nVada\nVerlene\nVernell\nVonda\nWillene\nMary\nLinda\nBetty\nCarolyn\nBarbara\nShirley\nPatricia\nDorothy\nSharon\nSandra\nJoyce\nMartha\nPatsy\nJudy\nMargaret\nNancy\nBrenda\nWanda\nHelen\nPeggy\nCarol\nRuby\nDoris\nGloria\nGlenda\nVirginia\nBonnie\nDonna\nAlice\nFrances\nRuth\nElizabeth\nJudith\nMarilyn\nJo\nPhyllis\nJanice\nEmma\nNorma\nEvelyn\nBobbie\nWilma\nMildred\nWillie\nAnnie\nJanet\nBillie\nCharlotte\nJoan\nAnna\nSue\nGeorgia\nThelma\nLois\nSarah\nClara\nJuanita\nSusan\nJane\nAnn\nEthel\nJean\nRosie\nCatherine\nLouise\nPaula\nVelma\nBeverly\nRebecca\nRose\nRita\nLillie\nAlma\nGeraldine\nMaxine\nBettye\nConnie\nJulia\nMargie\nEdna\nJessie\nKaren\nSherry\nErma\nHazel\nLoretta\nMattie\nRuthie\nGeneva\nJohnnie\nMae\nDelores\nEllen\nKatherine\nKay\nMarie\nBertha\nCheryl\nMinnie\nBernice\nChristine\nDiane\nIda\nLola\nVera\nAnita\nCharlene\nElla\nGladys\nJoann\nLula\nDorthy\nKathryn\nVivian\nBessie\nCarole\nEva\nLynda\nBeatrice\nEarnestine\nEdith\nPearlie\nJackie\nJimmie\nBettie\nJanie\nKathy\nPamela\nPat\nJosephine\nDelois\nMelba\nSally\nFaye\nLaura\nPaulette\nStella\nFlora\nKathleen\nLucy\nMarjorie\nNina\nSylvia\nCora\nDeloris\nPauline\nEssie\nJeanette\nJune\nLena\nNellie\nReba\nDaisy\nEmily\nFlorence\nIrene\nLucille\nOla\nFrancis\nFrankie\nLela\nSara\nDarlene\nJoy\nTommie\nClaudia\nGail\nJerry\nOpal\nOra\nRoberta\nRosemary\nDiana\nFreda\nLillian\nMable\nOllie\nAnne\nDixie\nFannie\nFreddie\nMyrtle\nCarrie\nEula\nNora\nAlberta\nDora\nErnestine\nLeona\nMyra\nVerna\nEsther\nLaverne\nMamie\nMarion\nNaomi\nSusie\nBecky\nDianne\nEarlene\nJanis\nLou\nRosetta\nAda\nAnnette\nDolores\nGwendolyn\nJacqueline\nKatie\nLee\nVicki\nViola\nVirgie\nAlta\nGayle\nGrace\nIrma\nIva\nLenora\nPatty\nPearl\nRachel\nRobbie\nSharron\nViolet\nAndrea\nBennie\nCarla\nElaine\nEtta\nJoanne\nMarian\nNettie\nTheresa\nAgnes\nBonita\nCynthia\nDonnie\nHattie\nHilda\nJacquelyn\nJoe\nLana\nNelda\nQueen\nSallie\nSuzanne\nAddie\nBeulah\nEddie\nElnora\nIna\nJewell\nLynn\nMarcia\nMarva\nRegina\nRosa\nSheila\nVictoria\nYvonne\nAudrey\nBobby\nChristene\nDana\nDella\nEarline\nElsie\nFloy\nGlenna\nGracie\nInez\nMarsha\nTeresa\nCathy\nCecilia\nCherry\nCleo\nDianna\nEleanor\nGertrude\nGlynda\nHenrietta\nIris\nJennie\nJulie\nLetha\nLorene\nPolly\nRetha\nSaundra\nVickie\nCaroline\nDeanna\nEunice\nFlossie\nLavern\nMaggie\nOdessa\nPenny\nRubye\nShelby\nAline\nAmanda\nArlene\nCallie\nConstance\nDeborah\nEloise\nHarriet\nImogene\nJeanne\nJewel\nKaye\nLizzie\nMay\nNita\nSammie\nSandy\nTerry\nVicky\nWilla\nBilly\nBirdie\nCarmen\nCelia\nCharlie\nClaudette\nDottie\nEffie\nFay\nFlorine\nJames\nJannie\nJohnie\nJosie\nLora\nLydia\nLynne\nMaria\nMarlene\nMona\nOlivia\nPriscilla\nRamona\nSondra\nAllie\nBeth\nBetsy\nCecelia\nCorene\nDona\nElvira\nGussie\nHarriett\nHester\nIvory\nJan\nJill\nLila\nLue\nMarcella\nMarylin\nMillie\nMolly\nNona\nPatti\nPearline\nSadie\nShelia\nTommye\nToni\nVeda\nVeronica\nAmelia\nAngela\nCamilla\nClarice\nDollie\nDolly\nEstella\nGeorge\nGertie\nGlinda\nIra\nJeanie\nJeannie\nJenny\nJonnie\nJudi\nLadonna\nLawanda\nLilly\nLorraine\nLucinda\nMaple\nMaudie\nMaureen\nMelva\nMerlene\nMollie\nNell\nNola\nPenelope\nReva\nShirlene\nTena\nTrudy\nVenita\nVernell\nVersie\nAlene\nArtie\nAvis\nBertie\nBette\nBlanche\nCarlene\nCarrol\nCharles\nCharolette\nCleola\nDortha\nEarlean\nEarma\nEileen\nEugenia\nFlorene\nFreida\nGay\nGenevieve\nGeorgie\nGwen\nHellen\nIma\nJanelle\nJannette\nJaunita\nJayne\nJearlean\nJeri\nJerri\nJoanna\nJohn\nLavada\nLeola\nLeslie\nLorine\nLovie\nMabel\nMargarett\nOphelia\nPatrica\nRena\nReta\nRobin\nRosia\nRoyce\nSyble\nTwila\nVada\nWillene\nZenobia\nMary\nLinda\nBetty\nBarbara\nCarolyn\nShirley\nPatricia\nJudy\nDorothy\nBrenda\nSharon\nJoyce\nSandra\nMartha\nCarol\nNancy\nMargaret\nHelen\nWanda\nDonna\nGloria\nPatsy\nVirginia\nPeggy\nGlenda\nDoris\nFrances\nRuby\nElizabeth\nJanice\nMarilyn\nRuth\nBobbie\nAlice\nBonnie\nJo\nJudith\nPhyllis\nLois\nWillie\nAnnie\nEvelyn\nCharlotte\nLillie\nMildred\nJoan\nSarah\nAnn\nBeverly\nEmma\nNorma\nWilma\nSherry\nRosie\nSue\nSusan\nJuanita\nEdna\nAnna\nThelma\nConnie\nJanet\nLouise\nPaula\nKaren\nKatherine\nRebecca\nRose\nBillie\nBertha\nGeorgia\nDiana\nJean\nKay\nHazel\nKathryn\nErma\nCatherine\nMargie\nJane\nJohnnie\nDelores\nDiane\nElla\nEthel\nLaura\nClara\nCheryl\nCarole\nMae\nGladys\nLynda\nMattie\nBernice\nAlma\nJessie\nMarie\nVelma\nLoretta\nJanie\nBettye\nJackie\nMelba\nRita\nVera\nVivian\nMaxine\nBessie\nIda\nGeraldine\nNina\nRuthie\nAnita\nEllen\nSylvia\nEssie\nEva\nJoann\nOllie\nPamela\nBettie\nDorthy\nGeneva\nJeanette\nJulia\nLucille\nCharlene\nFrankie\nChristine\nReba\nClaudia\nDora\nEarnestine\nIrene\nLula\nPat\nPauline\nRoberta\nCarrie\nJoy\nNellie\nPaulette\nBeatrice\nDaisy\nDarlene\nElsie\nFreddie\nJacqueline\nJanis\nJimmie\nJune\nMarion\nMinnie\nRosemary\nVerna\nAnnette\nDeloris\nGracie\nKathleen\nLena\nViola\nAnne\nCora\nErnestine\nFaye\nGail\nLola\nLucy\nPearlie\nStella\nDella\nEdith\nJosephine\nLillian\nOra\nRosetta\nSheila\nVicki\nDana\nDianna\nFlora\nFlorence\nFreda\nMarjorie\nSharron\nAlberta\nDianne\nKathy\nMyrtle\nSally\nSara\nSusie\nMaggie\nNora\nOpal\nRachel\nAudrey\nBecky\nGwendolyn\nLynn\nMable\nMarcia\nNelda\nBennie\nEarlene\nEddie\nEsther\nHattie\nLaverne\nLee\nMarsha\nRobbie\nTheresa\nIrma\nJerry\nSuzanne\nAda\nCynthia\nDelois\nHarriet\nJeanne\nLorene\nOla\nRosa\nSaundra\nTommie\nElaine\nFay\nJan\nJulie\nLou\nNettie\nVictoria\nYvonne\nAddie\nBeulah\nDeanna\nFrancis\nJames\nJewel\nKatie\nLana\nLeona\nMarian\nPatty\nPearl\nAlta\nConstance\nDixie\nEula\nFannie\nGearldine\nGlenna\nIna\nJacquelyn\nJennifer\nJewell\nMamie\nMyra\nRetha\nWilla\nBonita\nDolores\nEarline\nEmily\nGrace\nInez\nIva\nJoe\nKaye\nSadie\nVirgie\nEunice\nGertrude\nHenrietta\nImogene\nMaria\nMay\nOphelia\nPriscilla\nSandy\nAgnes\nArlene\nCaroline\nCathy\nCherry\nDortha\nDottie\nEstella\nEster\nJeannie\nJoanne\nLawanda\nLela\nLorine\nMarlene\nNaomi\nOlivia\nQueen\nSondra\nTerry\nZelma\nAmy\nAndrea\nCarrol\nCharline\nCorine\nDolly\nEdwina\nEffie\nEloise\nGayle\nHellen\nIris\nJanette\nJosie\nLeslie\nLessie\nLinnie\nLora\nMarguerite\nMarva\nMeredith\nOdessa\nSybil\nViolet\nCecelia\nDeborah\nDonnie\nEtta\nGay\nHilda\nIra\nJeanie\nJoanna\nJohnie\nLenora\nLeola\nLottie\nMargarett\nMelva\nMollie\nNeta\nNita\nPeggie\nRamona\nReva\nRosalie\nSallie\nTrudy\nVickie\nVicky\nAllene\nAngela\nAretha\nAva\nBarbra\nCarla\nCharlean\nClaudine\nDovie\nElnora\nFlossie\nFloy\nGeorge\nGeorgie\nGinger\nHarriett\nJennie\nJenny\nJerri\nJerrie\nJudi\nLadonna\nLetha\nLila\nMagnolia\nMargret\nMarietta\nNadine\nNona\nOctavia\nPatrica\nPearline\nPolly\nRobin\nRosalind\nSamella\nSharyn\nShelby\nSherrie\nZelda\nAmanda\nAnnabelle\nBelva\nBeth\nBetsy\nCecilia\nCeleste\nCelia\nCharles\nCharolette\nChristene\nClaire\nCleo\nDarnell\nDiann\nDona\nEra\nEugenia\nFreida\nGale\nGerry\nIla\nJamie\nJanetta\nJerlean\nJerlene\nKitty\nLeota\nLizzie\nLouella\nMabel\nMarcella\nMavis\nMelinda\nMickey\nMolly\nMuriel\nNannie\nNola\nOma\nRegina\nRhonda\nSammie\nSammy\nSheron\nSheryl\nSonja\nToni\nVerla\nVernell\nWinnie\nMary\nLinda\nBarbara\nCarolyn\nBetty\nShirley\nPatricia\nJudy\nBrenda\nSharon\nSandra\nDorothy\nJoyce\nDonna\nMartha\nWanda\nMargaret\nCarol\nPatsy\nPeggy\nNancy\nJanice\nGlenda\nGloria\nHelen\nVirginia\nDoris\nPhyllis\nJo\nAlice\nJudith\nBeverly\nMarilyn\nRuby\nFrances\nElizabeth\nBonnie\nBobbie\nRuth\nKaren\nConnie\nRebecca\nSusan\nNorma\nSue\nJanet\nCharlotte\nSherry\nAnn\nEvelyn\nAnna\nAnnie\nEmma\nJoan\nRose\nSarah\nMildred\nWilma\nJuanita\nRosie\nWillie\nLois\nPaula\nDiana\nRita\nCheryl\nLouise\nJane\nLynda\nDiane\nJohnnie\nLillie\nLoretta\nErma\nBillie\nKay\nJanie\nMattie\nClara\nJean\nKathryn\nSheila\nThelma\nCharlene\nEdna\nElla\nAnita\nDelores\nGeorgia\nMae\nPaulette\nLaura\nMargie\nJessie\nBettye\nEthel\nEva\nKatherine\nVelma\nHazel\nPamela\nVera\nAlma\nEllen\nGeraldine\nIda\nRuthie\nCatherine\nSally\nBertha\nVivian\nCarole\nCora\nJanis\nChristine\nJulia\nMinnie\nStella\nSylvia\nFaye\nMarie\nBessie\nGeneva\nSusie\nGail\nGladys\nCynthia\nLillian\nBettie\nFreda\nJackie\nJoann\nNina\nEarnestine\nEdith\nGwendolyn\nIrene\nJacqueline\nKathy\nMaxine\nNellie\nMarsha\nOra\nPat\nVicki\nJosephine\nJoy\nMelba\nSuzanne\nBernice\nDianne\nJimmie\nNettie\nReba\nDarlene\nErnestine\nKathleen\nMyrtle\nPearlie\nJeanette\nJune\nOllie\nAnnette\nJan\nLula\nRosemary\nDora\nHattie\nIrma\nLola\nTheresa\nBecky\nDelois\nFannie\nFlorence\nOpal\nPauline\nSara\nAnne\nBennie\nDianna\nJulie\nLorene\nMarcia\nNora\nBeatrice\nDorthy\nEddie\nFlora\nFreddie\nLaverne\nLena\nLucille\nMable\nMarjorie\nNelda\nSharron\nVerna\nDana\nEsther\nFrankie\nGracie\nLana\nMamie\nNaomi\nClaudia\nDeloris\nEssie\nGrace\nJeanne\nVictoria\nViola\nYvonne\nCathy\nDaisy\nJerry\nToni\nCarrie\nElaine\nFrancis\nKatie\nLucy\nPearl\nRhonda\nTeresa\nTerry\nAndrea\nAudrey\nDeanna\nDeborah\nEarlene\nElsie\nEtta\nEunice\nJeanie\nJewel\nLou\nSaundra\nTommie\nArlene\nEarline\nJennifer\nJewell\nShelia\nSondra\nAlberta\nBonita\nDixie\nGinger\nJoanne\nMaggie\nPatty\nRosetta\nVickie\nCarla\nEffie\nEloise\nJamie\nJennie\nLee\nLeona\nLynn\nMarva\nPriscilla\nRegina\nRobbie\nRoberta\nSandy\nShelby\nAddie\nCindy\nDottie\nEmily\nGayle\nHarriet\nJanette\nJannie\nJeannie\nKaye\nLeslie\nLorraine\nMargarett\nMarion\nPolly\nViolet\nCallie\nDolores\nElva\nGlenna\nGwen\nIma\nInez\nJacquelyn\nJosie\nKaron\nLeola\nMarian\nMyrna\nQueen\nSadie\nAda\nAmanda\nCaroline\nDella\nEleanor\nEstella\nEula\nFay\nHarriett\nHilda\nLora\nNadine\nNona\nPansy\nRachel\nWilla\nWinnie\nDiann\nDorris\nIna\nIris\nJoe\nLela\nLenora\nMalinda\nMelva\nMyra\nNeva\nOlivia\nPearlene\nRoxie\nVirgie\nAgnes\nCharlie\nDollie\nDolly\nDonnie\nEileen\nJaney\nJenny\nJoanna\nLoraine\nLydia\nMabel\nMaria\nMavis\nOdessa\nRetha\nRosalyn\nUnknown\nValerie\nVersie\nAlta\nAmelia\nAmy\nAva\nBarbra\nBeth\nBetsy\nCarlene\nCharles\nCherry\nChristene\nChristina\nDarla\nDortha\nDovie\nElnora\nGayla\nGearldine\nIva\nIvory\nJames\nJerrie\nLynette\nMargarette\nMillie\nOla\nPam\nSherrie\nAlyce\nAngela\nArma\nBeverley\nBirdie\nBlanche\nCamille\nCharline\nClaudine\nConstance\nEaster\nEmmer\nEmogene\nFlossie\nFloy\nFredia\nGertrude\nHenrietta\nJill\nJoye\nJudi\nJudie\nKathern\nKitty\nLavern\nLavon\nLottie\nLue\nNell\nNeta\nOphelia\nRamona\nRosa\nSallie\nSharion\nTommye\nVicky\nWillene\nAleta\nAlicia\nBeulah\nBobby\nCandace\nCarmen\nCarrol\nCarylon\nCassandra\nCathryn\nChloe\nDanna\nDessie\nDina\nDorcas\nEarsie\nFlorine\nGlinda\nHellen\nIra\nJana\nJeanetta\nJohn\nJonnie\nKatharine\nLavada\nLenda\nLila\nLizzie\nLouella\nLuvenia\nMarolyn\nMaureen\nMiriam\nMona\nMuriel\nNola\nPatrica\nPearline\nPeggie\nReta\nSamella\nSammie\nSheron\nSonja\nSybil\nTina\nVeda\nVernell\nVonda\nZelma\nLinda\nMary\nBarbara\nCarolyn\nBetty\nPatricia\nBrenda\nShirley\nSharon\nJudy\nSandra\nDorothy\nDonna\nJoyce\nPeggy\nMargaret\nPhyllis\nNancy\nCarol\nMartha\nJanice\nPatsy\nWanda\nGloria\nGlenda\nElizabeth\nDoris\nRebecca\nHelen\nJo\nMarilyn\nVirginia\nJudith\nAlice\nKaren\nRuby\nBeverly\nFrances\nNorma\nCharlotte\nBonnie\nSusan\nRuth\nSherry\nConnie\nJanet\nBobbie\nEmma\nAnn\nEvelyn\nLois\nAnnie\nRita\nWilma\nSue\nAnna\nWillie\nLynda\nPaula\nEdna\nJuanita\nCynthia\nKathryn\nThelma\nMildred\nRose\nGeorgia\nRosie\nBillie\nPamela\nLouise\nSarah\nJoan\nLoretta\nMargie\nDiana\nJane\nJanis\nSheila\nKathy\nClara\nDelores\nDiane\nErma\nKay\nCatherine\nCheryl\nJean\nLaura\nMae\nElla\nHazel\nIda\nCharlene\nJanie\nKatherine\nDeborah\nEthel\nKathleen\nEarnestine\nAnita\nLillie\nBertha\nJessie\nDianne\nMattie\nSylvia\nJackie\nVera\nBernice\nFreda\nLula\nMarie\nMaxine\nMelba\nSuzanne\nVicki\nVivian\nGladys\nVelma\nBettye\nGwendolyn\nJoann\nJulia\nMinnie\nPat\nStella\nBeatrice\nGeraldine\nBecky\nEva\nGail\nGeneva\nBessie\nDianna\nJohnnie\nSally\nAlma\nDeloris\nEdith\nEllen\nClaudia\nLena\nRuthie\nSusie\nMarcia\nMarsha\nPauline\nRosemary\nPaulette\nBettie\nDella\nJacqueline\nJimmie\nDorthy\nFlora\nFrankie\nNina\nJoy\nLola\nVerna\nViola\nFrancis\nJeanette\nLana\nChristine\nCora\nFaye\nJune\nOra\nElsie\nIrene\nTeresa\nCarole\nCarrie\nDarlene\nEsther\nLillian\nLou\nReba\nFannie\nJosephine\nRachel\nSharron\nShelia\nTerry\nDelois\nDora\nFlorence\nHattie\nMarjorie\nSara\nAnne\nDaisy\nDana\nElaine\nJennifer\nJewel\nPearl\nRoberta\nCathy\nJan\nKatie\nLucy\nOla\nVickie\nYvonne\nDeanna\nJacquelyn\nMarion\nMyrtle\nNelda\nTheresa\nDixie\nJeanne\nLorene\nOlivia\nAda\nDiann\nErnestine\nEula\nGrace\nIrma\nLaverne\nMaria\nNadine\nNora\nRobbie\nCarla\nFreddie\nGracie\nIris\nJerry\nMyra\nOllie\nOpal\nRosetta\nSaundra\nConstance\nEarlene\nGlenna\nHenrietta\nMarva\nVictoria\nAngela\nAudrey\nBonita\nEtta\nGayle\nGinger\nJulie\nLetha\nMable\nNellie\nPearlie\nPolly\nRegina\nSondra\nEarline\nEmily\nKaye\nLeola\nNaomi\nNita\nVeronica\nArlene\nBeth\nEunice\nJeannie\nJennie\nLee\nLottie\nLucille\nLynn\nMamie\nNettie\nPriscilla\nQueen\nToni\nAlberta\nDollie\nEssie\nJenny\nJosie\nLadonna\nLela\nRetha\nTommie\nAnnette\nDolores\nFay\nIna\nIva\nJanette\nLenora\nMaggie\nMarcella\nPauletta\nPeggie\nPenny\nRhonda\nVirgie\nAndrea\nCherry\nDebbie\nDonnie\nEddie\nEloise\nLydia\nMarian\nMolly\nReta\nSammie\nViolet\nAddie\nAgnes\nAlicia\nBelinda\nBobby\nClaudette\nDarla\nDorris\nFreida\nHellen\nHilda\nJeanie\nJeannette\nJessica\nJewell\nKaron\nLeslie\nMelissa\nMyrna\nPam\nRamona\nSadie\nSharyn\nTreva\nTrudy\nAva\nCarlotta\nCecilia\nCindy\nDebra\nDottie\nEffie\nEstella\nFlorine\nFlossie\nFloy\nImogene\nIvory\nJannie\nJerrie\nJoanne\nJoe\nLeona\nLilly\nLora\nLorine\nMargarett\nMay\nMona\nPatty\nRena\nRosa\nSallie\nSandy\nTina\nVernell\nZelma\nAlta\nBette\nCarmen\nCarylon\nDanna\nDian\nGlinda\nGlynda\nGwen\nIla\nJamie\nJonnie\nJudi\nKitty\nLavern\nLila\nLynne\nMargarette\nMavis\nMelinda\nMelva\nMerry\nPearline\nShannon\nSheryl\nAllie\nAmanda\nArline\nCaroline\nCathryn\nCharline\nChristina\nClarice\nCleo\nCorine\nDarnell\nDee\nEleanor\nElva\nEster\nEugenia\nFlorene\nFredia\nGertrude\nHarriet\nHester\nIra\nJames\nJerri\nJill\nJoye\nJudie\nLanell\nLucinda\nLue\nLynette\nMarlene\nMaxcine\nMillie\nMittie\nMollie\nMyrtis\nNola\nOna\nPatti\nPhillis\nReva\nRoxie\nVicky\nWilla\nBelva\nBennie\nBetsy\nBillye\nBlanche\nCandace\nCarlene\nCarma\nCarolynn\nCelia\nChristene\nCornelia\nDinah\nDona\nDovie\nEdwina\nElnora\nGayla\nGeorge\nGeorgie\nHarriett\nHolly\nJanett\nJayne\nJerlene\nJerre\nKarla\nKatheryn\nLauren\nLeah\nLovie\nLyn\nMaple\nMargret\nMerlene\nPatrica\nPattie\nPearlene\nPhylis\nRosalie\nRosalyn\nSherrie\nStephanie\nSybil\nTressie\nUnknown\nVeda\nVenita\nVeola\nVonda\nWinifred\nWinnie\nLinda\nMary\nBarbara\nBrenda\nCarolyn\nPatricia\nBetty\nShirley\nSharon\nJudy\nSandra\nDonna\nJoyce\nDorothy\nNancy\nMartha\nMargaret\nPeggy\nCarol\nGloria\nHelen\nWanda\nPatsy\nGlenda\nPhyllis\nJanice\nVirginia\nKaren\nMarilyn\nDoris\nRebecca\nSusan\nElizabeth\nRuby\nFrances\nPamela\nBeverly\nRuth\nJo\nCharlotte\nBobbie\nConnie\nJanet\nJudith\nAlice\nSherry\nEvelyn\nDeborah\nPaula\nBonnie\nDiane\nRosie\nAnnie\nRita\nLois\nRose\nThelma\nCheryl\nSue\nWillie\nJane\nAnn\nWilma\nAnna\nLynda\nCynthia\nJuanita\nLaura\nNorma\nSarah\nSheila\nKathy\nEmma\nLouise\nVicki\nCatherine\nDiana\nGeorgia\nMildred\nBillie\nKathryn\nLoretta\nJoan\nEdna\nGeraldine\nJean\nTeresa\nAnita\nErma\nEthel\nJanis\nLillie\nMinnie\nKatherine\nMargie\nMarsha\nStella\nCharlene\nJanie\nGwendolyn\nHazel\nBertha\nElla\nMae\nVelma\nVivian\nBettye\nClara\nJessie\nVera\nBernice\nIda\nMattie\nMaxine\nSylvia\nAlma\nKathleen\nDeloris\nJulia\nRuthie\nGladys\nPaulette\nDelores\nEva\nRegina\nFaye\nChristine\nDianne\nCathy\nCora\nEdith\nOra\nReba\nEarnestine\nDelois\nJacqueline\nNina\nPearlie\nBessie\nGeneva\nJoy\nTheresa\nEllen\nJohnnie\nMarie\nVickie\nJackie\nJoann\nPauline\nSara\nFlora\nGail\nMelba\nShelia\nBecky\nFrankie\nLola\nLula\nPat\nSally\nSuzanne\nCarrie\nDana\nFreda\nIrene\nIrma\nJeanette\nJennifer\nJune\nLena\nVerna\nClaudia\nMarion\nOllie\nElaine\nEssie\nFlorence\nAnnette\nBettie\nDianna\nDorthy\nFannie\nFreddie\nKay\nMable\nMarcia\nRoberta\nBeatrice\nEmily\nLorene\nRachel\nRobbie\nSharron\nYvonne\nDarlene\nElsie\nGracie\nLana\nLynn\nAnne\nEula\nLillian\nLucille\nSusie\nVictoria\nDora\nRamona\nRosetta\nCarole\nDebra\nErnestine\nHenrietta\nJacquelyn\nLeona\nMarjorie\nNelda\nPenny\nRhonda\nRosa\nRosemary\nAlberta\nDaisy\nEsther\nGayle\nHattie\nJosephine\nPatty\nPriscilla\nAda\nEarlene\nJennie\nJoanne\nLadonna\nLaverne\nLou\nMarian\nMyra\nNellie\nAngela\nBelinda\nDella\nGrace\nJeannie\nMamie\nMyrtle\nNadine\nNora\nPearl\nSandy\nUnknown\nCarla\nDebbie\nFlorida\nIris\nJewel\nKatie\nLucy\nOlivia\nTerry\nCindy\nDeanna\nEstella\nFrancis\nJan\nJerry\nJimmie\nMaria\nMelissa\nOla\nSammie\nSaundra\nBennie\nEddie\nGinger\nJannie\nLela\nOpal\nSheryl\nSondra\nToni\nViolet\nAlta\nAndrea\nArlene\nAudrey\nBonita\nDixie\nHarriet\nIna\nJames\nJeanie\nJewell\nNita\nPearline\nSallie\nTommie\nAddie\nBeth\nDonnie\nEloise\nGlenna\nJanette\nJulie\nKaye\nLeola\nLottie\nMaggie\nRetha\nVicky\nAmanda\nBetsy\nCecilia\nDiann\nDona\nDottie\nEleanor\nEtta\nEunice\nFay\nHilda\nIva\nJeanne\nJoe\nMarva\nPolly\nQueen\nSadie\nVernell\nVeronica\nVonda\nBeulah\nCaroline\nCharline\nDanna\nDinah\nDorris\nDovie\nEarline\nGearldine\nKaron\nLee\nLeslie\nLizzie\nLydia\nMarcella\nMargarett\nMargret\nMelinda\nMillie\nMyrna\nNaomi\nNona\nOdessa\nPam\nRegenia\nVada\nWilla\nAline\nCelia\nCharlie\nChristene\nClaudette\nDee\nDessie\nElnora\nEster\nEugenia\nGay\nGuadalupe\nGwen\nHolly\nJohn\nJosie\nKitty\nLenora\nLora\nLorine\nLorraine\nMagnolia\nMavis\nMickey\nNeva\nReta\nShirlene\nStephanie\nVeda\nVerdia\nZelma\nAngie\nBobbye\nCarlotta\nCarmen\nCassandra\nCathie\nCharles\nCherry\nConstance\nDenise\nDollie\nDolores\nEarlie\nEileen\nFredia\nGayla\nGlinda\nGlynda\nGwenda\nImogene\nJana\nJerrie\nLeta\nLila\nLoyce\nLucinda\nLynne\nMargrett\nMarguerite\nMollie\nMona\nNell\nOleta\nPeggie\nReda\nRobert\nRowena\nRubye\nShelby\nSonja\nTrudy\nAlicia\nAllene\nAmelia\nAnnetta\nBarbra\nBerniece\nBirdie\nBlanchie\nCallie\nCharolette\nDarla\nDawn\nDena\nDian\nEffie\nElma\nFlorine\nFlossie\nFloy\nInez\nIola\nIvory\nJaney\nJill\nJoanna\nLetitia\nLonnie\nLue\nLuella\nMabel\nMadie\nMargarette\nMarianne\nMarlene\nMaxcine\nMay\nNettie\nNikki\nOctavia\nOphelia\nPauletta\nPhillis\nRena\nRenee\nRosalie\nShelba\nSonya\nSusanne\nTanya\nTressie\nValerie\nVelda\nVernice\nVersie\nVickey\nViola\nYolanda\nLinda\nMary\nBrenda\nBarbara\nShirley\nCarolyn\nPatricia\nBetty\nJudy\nSandra\nSharon\nDonna\nJoyce\nDorothy\nMartha\nNancy\nMargaret\nPeggy\nGloria\nGlenda\nBeverly\nWanda\nCarol\nJanice\nPatsy\nRebecca\nPhyllis\nSusan\nKaren\nDeborah\nDoris\nHelen\nElizabeth\nAlice\nPamela\nConnie\nFrances\nRuby\nVirginia\nCharlotte\nKathy\nMarilyn\nJanet\nJudith\nJo\nSherry\nDiane\nPaula\nEvelyn\nRita\nRuth\nBobbie\nBonnie\nSarah\nAnnie\nKathryn\nLois\nNorma\nCatherine\nJuanita\nKatherine\nVicki\nDiana\nWilma\nEmma\nTeresa\nMarsha\nRose\nErma\nEthel\nAnna\nCynthia\nBertha\nJanis\nLynda\nAnn\nRosie\nWillie\nGeorgia\nMildred\nCheryl\nThelma\nCathy\nJane\nJean\nLaura\nLouise\nKathleen\nLillie\nSue\nSheila\nVivian\nSylvia\nBillie\nClara\nLoretta\nChristine\nGwendolyn\nAnita\nHazel\nJanie\nJoan\nElla\nJessie\nMargie\nCharlene\nGail\nEllen\nJohnnie\nJulia\nKay\nMattie\nVickie\nEva\nRuthie\nDelores\nEdna\nPaulette\nSuzanne\nMinnie\nVelma\nGeraldine\nJacqueline\nUnknown\nAlma\nDianna\nIda\nRhonda\nTheresa\nGladys\nMae\nPearlie\nStella\nVera\nMaxine\nSally\nBelinda\nBessie\nBernice\nDianne\nMarie\nCora\nRegina\nDebra\nJackie\nJeanette\nJoann\nMaria\nMelba\nYvonne\nBettye\nDeloris\nEdith\nLana\nRosetta\nDarlene\nGeneva\nReba\nRosemary\nBecky\nSharron\nDelois\nEarlene\nFreda\nSara\nAnnette\nBeatrice\nCarrie\nClaudia\nFaye\nIrene\nMarcia\nNina\nDaisy\nDorthy\nEarnestine\nJimmie\nJoy\nLillian\nMable\nElaine\nGinger\nJan\nLola\nOllie\nRoberta\nVerna\nErnestine\nFlora\nNaomi\nOra\nIrma\nLucille\nTerry\nConstance\nGracie\nJeanne\nJennifer\nJosephine\nKatie\nMarjorie\nVictoria\nBettie\nFlorence\nFrankie\nJulie\nLula\nNora\nPat\nPriscilla\nSusie\nAlberta\nCarla\nEsther\nEtta\nFrancis\nJanette\nJerry\nMarian\nMarion\nMyra\nAngela\nAnne\nDana\nHattie\nJune\nLucy\nShelia\nArlene\nJeannie\nPauline\nAudrey\nCarole\nCecilia\nEssie\nFannie\nJacquelyn\nJoanne\nLorene\nLynn\nOla\nRachel\nRosa\nAddie\nDella\nDora\nElsie\nEula\nJennie\nLela\nLeona\nMelinda\nMyrtle\nNellie\nOlivia\nRobbie\nSallie\nBobby\nDebbie\nDiann\nEddie\nGayle\nJamie\nJoe\nLee\nLou\nLydia\nMarva\nMelissa\nPatty\nPearl\nPolly\nSammie\nSheryl\nToni\nViola\nDixie\nEster\nHarriet\nHenrietta\nIva\nJannie\nJewel\nLena\nLeslie\nMaggie\nMamie\nMickey\nPenny\nTrudy\nVicky\nAmy\nAndrea\nBennie\nCorine\nEstella\nEunice\nFreddie\nJeanie\nLizzie\nAlicia\nBeth\nBeulah\nCecelia\nCherry\nDeanna\nDolores\nEmily\nIris\nJana\nKaye\nLadonna\nLavern\nLaverne\nLeta\nMarcella\nMarlene\nMelanie\nNelda\nPearline\nPeggie\nRamona\nAlta\nBonita\nCassandra\nCleo\nDeloise\nDollie\nDolly\nEarline\nEffie\nElma\nEloise\nGrace\nJeannette\nJewell\nLenora\nLora\nLucinda\nMay\nRetha\nSadie\nAda\nAmanda\nAmelia\nAnnetta\nCharline\nChristene\nEarlean\nFay\nGlenna\nJoanna\nLeah\nMadeline\nMargret\nMelva\nNettie\nPamala\nQueen\nSondra\nSonja\nTerri\nTommie\nVeronica\nCallie\nCarmen\nCaroline\nCindy\nClaudette\nDessie\nEleanor\nFreida\nGlinda\nGwen\nImogene\nIna\nJannette\nJenny\nKaron\nLeola\nLinnie\nMolly\nNell\nOdessa\nOphelia\nPhillis\nPortia\nRegena\nReva\nTina\nValerie\nVerda\nViolet\nVonda\nYolanda\nAllene\nAva\nBenita\nBrinda\nCarlene\nCarlotta\nCharolette\nChristina\nChristy\nClarice\nDorris\nDovie\nEaster\nEliza\nFlossie\nFrancine\nInez\nIola\nIvory\nJames\nJeanetta\nJeri\nLetha\nLizabeth\nLorine\nLorraine\nLottie\nLura\nLynette\nMalinda\nMaple\nMaude\nMillie\nNadine\nNona\nOpal\nReta\nSharion\nShelley\nSherron\nVirgie\nAgnes\nBarbra\nBetsy\nBillye\nCathryn\nCelia\nCharlie\nClaudine\nCornelia\nDarla\nDawn\nDena\nDenise\nDorothey\nDottie\nEdwina\nElois\nEugenia\nFlorine\nFrieda\nGeorge\nGlynda\nGuadalupe\nGwenda\nHester\nJerri\nJessica\nJill\nJoetta\nJosie\nKatheryn\nLouella\nLue\nLynne\nMabel\nMargarette\nMeredith\nMyrna\nNola\nPam\nPamelia\nPatrica\nPatti\nPauletta\nRena\nRobin\nRubie\nSaundra\nTena\nTwila\nTwyla\nVernell\nWilla\nZelma\nLinda\nMary\nBrenda\nBarbara\nPatricia\nShirley\nCarolyn\nBetty\nSandra\nJudy\nSharon\nDeborah\nDonna\nNancy\nDorothy\nJoyce\nJanice\nMartha\nCarol\nPeggy\nKaren\nGloria\nMargaret\nPhyllis\nBeverly\nConnie\nWanda\nSusan\nRebecca\nPamela\nGlenda\nElizabeth\nVirginia\nPatsy\nKathy\nAlice\nJanet\nDoris\nHelen\nMarilyn\nJo\nSherry\nPaula\nCharlotte\nRuby\nJudith\nFrances\nRita\nEvelyn\nBonnie\nBobbie\nVicki\nRuth\nCynthia\nKathryn\nAnnie\nSarah\nNorma\nSheila\nCatherine\nGwendolyn\nMarsha\nEmma\nDebra\nDiane\nVickie\nDiana\nJuanita\nRosie\nJoan\nCheryl\nKatherine\nLois\nGeorgia\nWillie\nWilma\nAnn\nAnna\nTeresa\nAnita\nRhonda\nHazel\nLoretta\nMildred\nCathy\nChristine\nErma\nLillie\nBillie\nRose\nSue\nThelma\nEthel\nGail\nJane\nJanie\nKathleen\nLynda\nVera\nDarlene\nBertha\nElla\nAlma\nVivian\nClara\nEdna\nEllen\nVelma\nIda\nJean\nJessie\nLouise\nKay\nLaura\nRuthie\nCora\nJulia\nMae\nEarnestine\nMattie\nBelinda\nCharlene\nJackie\nDelores\nJanis\nMargie\nSylvia\nEdith\nJacqueline\nJohnnie\nDianne\nRegina\nFannie\nMarie\nRosemary\nSuzanne\nGeneva\nMinnie\nShelia\nUnknown\nFlorence\nJoy\nNina\nVictoria\nEva\nGladys\nJoann\nMaxine\nMelba\nPaulette\nTheresa\nBeatrice\nBessie\nBettye\nJacquelyn\nDeloris\nJeanette\nJune\nLula\nSally\nFaye\nPearlie\nRoberta\nStella\nConstance\nIrene\nTerry\nCarrie\nDebbie\nElaine\nErnestine\nIrma\nJosephine\nLucille\nMarcia\nVerna\nYvonne\nAnne\nBernice\nEddie\nMarjorie\nMyra\nClaudia\nFreddie\nGinger\nBecky\nDelois\nFlora\nGeraldine\nLana\nLee\nMona\nRobbie\nDorthy\nHattie\nLola\nDana\nEula\nFreda\nGracie\nLenora\nLillian\nMaggie\nOra\nReba\nRosetta\nDianna\nJeannie\nJennifer\nLeslie\nLucy\nPriscilla\nVicky\nAnnette\nCarla\nDolores\nGayle\nJamie\nJan\nJerry\nJimmie\nJulie\nLorene\nMamie\nMarian\nMyrtle\nOla\nPat\nPatty\nDaisy\nEstella\nGrace\nIris\nJeanne\nMable\nMelissa\nPauline\nPearl\nQueen\nRobin\nSara\nEmily\nEssie\nJeannette\nLaverne\nLou\nLynn\nNellie\nOlivia\nRachel\nSharron\nTrudy\nAngela\nCaroline\nDella\nDora\nLisa\nMarva\nOllie\nTommie\nAlberta\nAndrea\nBettie\nCecelia\nElsie\nGlenna\nLena\nMarion\nMelinda\nNettie\nNona\nOpal\nPolly\nStephanie\nViola\nAda\nArlene\nBonita\nCarole\nDarla\nEloise\nEsther\nEtta\nJanette\nJewell\nKaron\nLora\nMaria\nNadine\nPenny\nRamona\nRenee\nSheryl\nSusie\nWilla\nBeulah\nCassandra\nDenise\nDixie\nEarlene\nFrancis\nKatheryn\nLela\nLizzie\nNita\nViolet\nAddie\nDortha\nElnora\nIvory\nJeanie\nLarry\nLue\nReta\nRetha\nRosa\nSammie\nSondra\nTerri\nAudrey\nCathryn\nCindy\nDiann\nEarline\nFrankie\nHenrietta\nInez\nJana\nJewel\nKathie\nKatie\nKaty\nLeola\nLeta\nMay\nRena\nSadie\nVenita\nVeronica\nAgnes\nAlicia\nAmy\nBarbra\nBetsy\nBobby\nCallie\nCarmen\nCecilia\nDinah\nFlossie\nFrancine\nGay\nHarriet\nHilda\nJannie\nJennie\nJenny\nJoe\nKerry\nLavern\nLetha\nLorraine\nLottie\nLouella\nLydia\nMargarett\nMolly\nNaomi\nNora\nOdessa\nPeggie\nReva\nSandy\nSaundra\nSherri\nTina\nValerie\nZella\nAlfreda\nBennie\nBlanche\nCandace\nCathie\nCharlie\nChristene\nClaudette\nDeanna\nDena\nDona\nDonnie\nEffie\nElva\nFlorene\nFreida\nGayla\nGlinda\nGlynda\nIna\nKarla\nKathern\nLadonna\nLorine\nLuella\nMagnolia\nMarcella\nMarlene\nMelanie\nNelda\nPatti\nPearline\nSallie\nShelly\nToni\nVickey\nVirgie\nAletha\nAllene\nAlta\nAmanda\nAngie\nBeth\nBeverley\nBrinda\nCelia\nCharlean\nCharles\nChristina\nClementine\nCleo\nCorine\nDeloise\nDollie\nEaster\nEileen\nEleanor\nEliza\nElma\nEunice\nFredia\nGearldine\nGertrude\nGwenda\nHope\nJames\nJerline\nJessica\nJill\nJoanna\nJoanne\nJonnie\nKathrine\nKaye\nLeona\nLoyce\nLynne\nMandy\nMarilynn\nMarla\nMarta\nMavis\nMelva\nMichele\nNeva\nNola\nRoxie\nRutha\nSamella\nTanya\nTwyla\nVersie\nLinda\nMary\nBrenda\nPatricia\nCarolyn\nBarbara\nDeborah\nBetty\nShirley\nJudy\nSandra\nSharon\nDonna\nJoyce\nMartha\nSusan\nRebecca\nNancy\nJanice\nPamela\nDorothy\nPeggy\nKaren\nMargaret\nGloria\nPhyllis\nWanda\nCarol\nElizabeth\nKathy\nJanet\nConnie\nGlenda\nBeverly\nDebra\nMarilyn\nHelen\nDoris\nVirginia\nAlice\nJo\nRose\nSherry\nPatsy\nRuby\nCharlotte\nPaula\nBobbie\nAnnie\nEvelyn\nRita\nJudith\nCynthia\nKathryn\nDiane\nBonnie\nVicki\nRuth\nTeresa\nFrances\nSheila\nEmma\nSarah\nMarsha\nCathy\nLois\nAnita\nVickie\nWillie\nWilma\nCatherine\nJane\nGwendolyn\nJacqueline\nKatherine\nRosie\nMildred\nDiana\nJackie\nAnn\nCheryl\nKathleen\nLoretta\nChristine\nLaura\nNorma\nAnna\nRhonda\nLynda\nEthel\nJuanita\nMargie\nSue\nVera\nBillie\nErma\nGail\nThelma\nRegina\nClara\nElla\nMae\nMarcia\nGeorgia\nJoan\nLillie\nJanie\nJulia\nVivian\nJeanette\nAnnette\nDelores\nSylvia\nJessie\nJohnnie\nRuthie\nBelinda\nUnknown\nCharlene\nShelia\nBettye\nDeloris\nHazel\nMaxine\nVelma\nBertha\nJean\nLouise\nTerry\nAlma\nBessie\nCarla\nDarlene\nEarnestine\nVictoria\nDianne\nEdith\nEdna\nJoy\nDianna\nEllen\nMarie\nGladys\nIrene\nJanis\nSuzanne\nTheresa\nSusie\nVerna\nEva\nJennifer\nKay\nMattie\nRosemary\nStella\nCarrie\nGinger\nIda\nLana\nLillian\nSally\nSara\nGeraldine\nNina\nBeatrice\nDelois\nDora\nJune\nYvonne\nAngela\nFaye\nBecky\nBernice\nJacquelyn\nLula\nRoberta\nVicky\nKatie\nMinnie\nPaulette\nCora\nDorthy\nEarlene\nFlora\nGeneva\nJulie\nLucille\nLucy\nPearlie\nReba\nMelinda\nMyra\nRosetta\nAnne\nAudrey\nDebbie\nIrma\nJan\nLola\nMarion\nDana\nDella\nEddie\nElaine\nFannie\nHattie\nBettie\nClaudia\nEmily\nErnestine\nFrankie\nFreda\nJeanne\nJennie\nJoann\nLottie\nMelba\nNelda\nOlivia\nAlberta\nConstance\nFlorence\nGracie\nJoe\nJosephine\nKathie\nLou\nLynn\nMarjorie\nMona\nOllie\nOra\nPriscilla\nRosa\nSharron\nStephanie\nViola\nEstella\nLadonna\nLisa\nMable\nMaria\nNaomi\nNona\nDeanna\nEtta\nGayle\nLaverne\nLeslie\nMarian\nMelissa\nNora\nToni\nArlene\nCindy\nEsther\nFreddie\nGrace\nJeannie\nLee\nMonica\nPatti\nPatty\nPearl\nRamona\nRobbie\nTerri\nAmanda\nBeulah\nDenise\nDiann\nEunice\nGlenna\nJamie\nLorene\nLorraine\nMaggie\nMyrtle\nPauline\nPolly\nRetha\nRobin\nShelley\nValerie\nBonita\nCaroline\nDixie\nEssie\nEugenia\nIna\nNadine\nOdessa\nPeggie\nPenny\nQueen\nSadie\nSammie\nBrinda\nCarmen\nCecilia\nCelia\nDolores\nEarline\nFay\nFrancis\nGlynda\nHenrietta\nHilda\nJana\nJewel\nLarry\nMelanie\nMelva\nNellie\nNola\nAndrea\nBennie\nCarlene\nCassie\nGayla\nIris\nJeanie\nJerry\nJimmie\nLela\nLena\nLue\nMamie\nMarla\nMarva\nMillie\nNettie\nRena\nTommie\nAda\nAddie\nAmelia\nAmy\nBeth\nCherry\nClaudette\nDinah\nDonnie\nEffie\nElsie\nEster\nEula\nHarriet\nHellen\nJeannette\nJeri\nJerri\nJewell\nJoanne\nJohnette\nKitty\nLeola\nLizzie\nMarcella\nMickey\nNita\nOla\nPat\nRachel\nSheri\nSherrie\nTina\nTrudy\nViolet\nYolanda\nAnnetta\nCecelia\nChristina\nDaisy\nDebora\nDolly\nFlossie\nGerry\nGwenda\nInez\nJannie\nKathey\nKaye\nKerry\nLaurie\nLessie\nLynne\nMandy\nMaudie\nMay\nMeredith\nMichele\nMiriam\nNeva\nPearline\nPenelope\nPhillis\nRegenia\nReta\nReva\nSharion\nTanya\nVersie\nVickey\nVirgie\nWilla\nAgnes\nAlicia\nArlean\nAva\nBarbra\nBetsy\nBlanchie\nCarole\nCassandra\nCathie\nCelestine\nCharles\nClaire\nClarice\nDebrah\nDee\nDollie\nEleanor\nEloise\nGerri\nGussie\nGwen\nHarriett\nIva\nJames\nJanelle\nJanette\nJoanna\nJohn\nJohnny\nKarin\nKatheryn\nLeah\nLenora\nLeona\nLila\nLinnie\nLorine\nLouetta\nLucinda\nMargo\nMavis\nMelody\nOpal\nPatrice\nRobyn\nSherri\nSherrye\nSondra\nTamara\nTerrie\nTreva\nTwyla\nVelda\nVernestine\nVeronica\nZelma\nLinda\nMary\nBrenda\nDeborah\nPatricia\nBarbara\nBetty\nCarolyn\nShirley\nJudy\nSandra\nSharon\nDonna\nRebecca\nPamela\nDebra\nJoyce\nKaren\nNancy\nKathy\nMartha\nSusan\nDorothy\nJanice\nPeggy\nGlenda\nCarol\nGloria\nMargaret\nWanda\nBeverly\nJanet\nJo\nCynthia\nElizabeth\nRuby\nConnie\nMarilyn\nPhyllis\nSherry\nVirginia\nPaula\nDoris\nPatsy\nCharlotte\nVickie\nAlice\nDiane\nHelen\nVicki\nRose\nAnnie\nCathy\nBonnie\nRita\nSheila\nEvelyn\nFrances\nCatherine\nJudith\nKathryn\nBobbie\nRuth\nTeresa\nMarsha\nRosie\nSarah\nEmma\nCheryl\nGwendolyn\nAnita\nRhonda\nEdna\nDiana\nNorma\nJane\nKatherine\nKathleen\nLois\nAnn\nJacqueline\nMildred\nWilma\nBelinda\nLoretta\nWillie\nGeorgia\nJoan\nJuanita\nClara\nLaura\nChristine\nGail\nLynda\nBillie\nErma\nJanie\nShelia\nDianne\nLillie\nAlma\nEthel\nMae\nUnknown\nAnna\nJulia\nVictoria\nVivian\nJean\nRegina\nGladys\nMarcia\nMargie\nSally\nVelma\nDelois\nElla\nBertha\nCharlene\nEllen\nJanis\nJessie\nBeatrice\nDebbie\nSylvia\nTheresa\nDelores\nJackie\nJennifer\nMattie\nEarnestine\nSue\nJoy\nKay\nLynn\nThelma\nVerna\nJeanette\nMarie\nRuthie\nSara\nTerry\nBettye\nSuzanne\nConstance\nDana\nEdith\nElaine\nHazel\nStella\nVicky\nYvonne\nCarla\nFlora\nLouise\nClaudia\nEva\nFreda\nJulie\nLillian\nMelba\nMelinda\nMinnie\nRoberta\nSusie\nDianna\nGinger\nJacquelyn\nJohnnie\nBernice\nBessie\nDarlene\nFlorence\nMelissa\nVera\nAngela\nBecky\nIda\nJewel\nRobin\nCora\nDeloris\nGeraldine\nIrene\nLola\nMarian\nTerri\nAnne\nJan\nJoann\nLula\nMable\nMarjorie\nMaxine\nNina\nPaulette\nReba\nRosemary\nRosetta\nAlberta\nGeneva\nJeanne\nLaverne\nCarrie\nJeannie\nJosephine\nLeslie\nLisa\nPatti\nRobbie\nValerie\nBettie\nDella\nFaye\nJamie\nJune\nMarion\nOra\nRamona\nStephanie\nCindy\nDora\nEarlene\nErnestine\nFreddie\nHattie\nJoe\nLee\nLenora\nLucy\nMyrtle\nPatty\nPearlie\nRachel\nEssie\nEsther\nFrankie\nIrma\nLana\nLela\nMona\nOllie\nAudrey\nDenise\nEtta\nGracie\nJana\nLou\nMaria\nPriscilla\nToni\nAddie\nAnnette\nBrinda\nDiann\nDixie\nEarline\nElsie\nFannie\nGlenna\nGrace\nIna\nJeanie\nJimmie\nMelanie\nNita\nNora\nPenny\nTina\nEddie\nEmily\nKathie\nLena\nLeola\nLorene\nMamie\nMelva\nMyra\nPolly\nSharron\nSherrie\nBennie\nCassandra\nCherry\nDolores\nKatie\nMay\nNelda\nOpal\nPauline\nQueen\nRena\nRetha\nSherri\nSondra\nTrudy\nViola\nAda\nAva\nBeth\nBetsy\nBobby\nBonita\nCarole\nDinah\nEloise\nEunice\nFrancis\nHarriet\nInez\nJanette\nJennie\nKarla\nLorraine\nLucille\nLucinda\nLydia\nMaggie\nMarva\nNellie\nNona\nPatrica\nPearl\nReta\nSammie\nShelley\nSonja\nTommie\nVickey\nAmanda\nAmy\nCathey\nCelia\nDaisy\nDeloise\nDorthy\nDottie\nGayla\nIva\nJerri\nJill\nKaron\nKattie\nLadonna\nLizzie\nLora\nLynne\nMargarett\nOla\nRosa\nRosalyn\nAlicia\nAndrea\nBenita\nCarlene\nDolly\nEula\nGayle\nIris\nIvory\nJenny\nLaurie\nLeah\nLila\nMollie\nMonica\nRegenia\nVeda\nVirgie\nWilla\nArlene\nBeulah\nBobbye\nCallie\nCandace\nCathryn\nCecelia\nCecilia\nChristina\nClaudette\nDebora\nDollie\nEleanor\nEstella\nGay\nGertrude\nGlinda\nHenrietta\nHester\nJames\nJanelle\nJannie\nJerry\nJonnie\nKathey\nLarry\nLavern\nLeona\nLeta\nLettie\nLorine\nMargret\nMarlene\nMelody\nMichele\nMichelle\nNadine\nNaomi\nNettie\nPamala\nSallie\nSaundra\nSheryl\nTeressa\nViolet\nZella\nBette\nBeverley\nBlanchie\nCaroline\nCharlie\nCherie\nChristy\nClarice\nClaudine\nCleta\nColleen\nDarline\nDeanna\nDeborrah\nDelilah\nDessie\nEffie\nFlossie\nGale\nGena\nGeorgette\nHellen\nHilda\nJannette\nJeannette\nJewell\nKarin\nKarolyn\nKaye\nLessie\nLinnie\nLottie\nLouella\nLue\nMaudie\nMillie\nMitzi\nOdessa\nOlivia\nRebekah\nRene\nSadie\nSandy\nTamara\nTonya\nVelda\nVeronica\nWonda\nLinda\nMary\nDeborah\nBrenda\nPatricia\nBarbara\nCarolyn\nSharon\nShirley\nDebra\nBetty\nSandra\nJudy\nDonna\nPamela\nKaren\nJoyce\nSusan\nRebecca\nNancy\nMarilyn\nJanice\nMartha\nDorothy\nPeggy\nKathy\nJanet\nElizabeth\nMargaret\nBeverly\nCarol\nCynthia\nConnie\nGloria\nPhyllis\nWanda\nHelen\nPaula\nDoris\nJo\nGlenda\nRita\nVirginia\nTeresa\nSherry\nVicki\nDiane\nVickie\nAlice\nCathy\nFrances\nMarsha\nRose\nRuby\nSheila\nPatsy\nCharlotte\nRhonda\nKathryn\nAnnie\nGwendolyn\nCatherine\nEvelyn\nJudith\nSarah\nRuth\nBonnie\nWillie\nLois\nLaura\nAnita\nDebbie\nJane\nKatherine\nNorma\nBobbie\nCheryl\nVivian\nRosie\nDiana\nGail\nJean\nJulia\nJoan\nLoretta\nWilma\nJacqueline\nKay\nJuanita\nMarcia\nAnn\nKathleen\nJanis\nBelinda\nJoy\nEmma\nVera\nBillie\nChristine\nJackie\nVicky\nErma\nEthel\nTerry\nDarlene\nEllen\nRegina\nAnna\nJanie\nLillie\nShelia\nUnknown\nBernice\nBertha\nDelores\nDianne\nJacquelyn\nJessie\nJulie\nCarla\nDenise\nSue\nSusie\nThelma\nTheresa\nAnnette\nGeorgia\nLouise\nMinnie\nVelma\nYvonne\nMildred\nSylvia\nAngela\nClara\nElla\nJan\nJohnnie\nMae\nMattie\nMelissa\nMargie\nMarie\nVerna\nAlma\nHazel\nSally\nCharlene\nGeneva\nLillian\nBecky\nDana\nDeloris\nEdna\nFreda\nCora\nDelois\nEarnestine\nLynda\nMaxine\nRuthie\nSara\nValerie\nEdith\nEva\nJune\nPatti\nRamona\nVictoria\nAnne\nBettye\nCarrie\nDella\nDianna\nFrankie\nGeraldine\nGladys\nKatie\nRobin\nDorthy\nElaine\nGinger\nIrene\nJeanette\nJeannie\nJosephine\nLana\nStephanie\nCindy\nDixie\nDora\nFlora\nIda\nJamie\nLynn\nMelinda\nPearlie\nToni\nVanessa\nVeronica\nLenora\nLeslie\nMona\nStella\nJennifer\nLee\nPaulette\nSheryl\nSuzanne\nBessie\nEssie\nFaye\nLena\nLisa\nLou\nMelba\nRachel\nRoberta\nTerri\nAmy\nAudrey\nClaudia\nConstance\nEarlene\nFreddie\nLucille\nMyra\nPatty\nBeatrice\nCathey\nEloise\nEmily\nJeanie\nJewel\nJimmie\nLucy\nMaria\nReba\nRobbie\nAlberta\nDiann\nHattie\nHenrietta\nJeanne\nLaurie\nLeona\nLula\nMarcella\nMarian\nMarion\nMarjorie\nMichelle\nMyrtle\nNina\nRosa\nSherri\nAlicia\nDolores\nGrace\nLadonna\nLorene\nMamie\nNellie\nOllie\nPolly\nTina\nTrudy\nYolanda\nCecilia\nDaisy\nEddie\nEsther\nFannie\nGlenna\nGracie\nJana\nLola\nLydia\nNaomi\nPauline\nRetha\nRosemary\nRosetta\nViola\nBeth\nColleen\nDeloise\nEffie\nEleanor\nEunice\nFlorence\nJennie\nJill\nJoann\nLila\nMable\nMarva\nNelda\nNettie\nNita\nNora\nPenny\nSharron\nShelley\nTommie\nAva\nBennie\nBettie\nErnestine\nFreida\nIris\nJanette\nJannie\nJenny\nJerrie\nMarlene\nMitzi\nSandy\nSherrie\nSondra\nVickey\nViolet\nAndrea\nArlene\nBobby\nBonita\nBridget\nCarole\nClarice\nCrystal\nEstella\nEster\nFay\nFrancis\nHarriet\nHilda\nJerry\nJoe\nKathrine\nLaverne\nLeah\nLela\nLetha\nLora\nMarla\nMay\nMelanie\nOpal\nOphelia\nRebekah\nWilla\nAgnes\nAmelia\nCandace\nDawn\nDeanna\nDena\nGale\nGayle\nGearldine\nIna\nKarla\nLoyce\nMalinda\nNona\nOla\nOlivia\nOra\nPatrica\nShelly\nAddie\nAletha\nAlthea\nAngie\nBarbra\nCarmen\nCecelia\nChristy\nDebrah\nDee\nDonnie\nEarline\nEtta\nFaith\nJeannette\nJosie\nKathie\nLeola\nLorraine\nLottie\nMarietta\nNadine\nQueen\nRenee\nReta\nRosalyn\nRoxanne\nSammye\nTanya\nValeria\nZelda\nBenita\nBernetta\nBetsy\nCarlene\nCassie\nCeola\nCharlie\nCharline\nClaire\nClaudette\nCleo\nDanna\nDelilah\nDinah\nDottie\nElnora\nEula\nGertrude\nGwenda\nHolly\nInez\nIrma\nJames\nJanna\nJeri\nJerri\nJewell\nJoanne\nJudi\nJudie\nKaran\nKarren\nKatrina\nKaye\nKerry\nKim\nKimberly\nLeanna\nLonnie\nLori\nLuanne\nMaggie\nMargo\nMari\nMarianne\nMarta\nMelody\nMeredith\nMollie\nMolly\nOdessa\nPinkie\nPriscilla\nRegenia\nRena\nRobert\nRosalind\nRoxie\nSadie\nSidney\nTerrie\nMary\nLinda\nDeborah\nBrenda\nPatricia\nBarbara\nDebra\nSandra\nCarolyn\nSharon\nDonna\nBetty\nShirley\nPamela\nJudy\nKaren\nRebecca\nSusan\nJoyce\nCynthia\nKathy\nMarilyn\nNancy\nJanice\nBeverly\nMartha\nConnie\nDorothy\nPeggy\nJanet\nJo\nSherry\nGloria\nVicki\nMargaret\nElizabeth\nVickie\nCarol\nRita\nTeresa\nDiane\nWanda\nGlenda\nCathy\nPhyllis\nRhonda\nRose\nDoris\nAlice\nVirginia\nPaula\nHelen\nMarsha\nSheila\nEvelyn\nRuby\nCharlotte\nDebbie\nCatherine\nKathryn\nPatsy\nSarah\nBonnie\nBobbie\nRuth\nGail\nChristine\nAnnie\nFrances\nGwendolyn\nJudith\nLaura\nLois\nDarlene\nKatherine\nAnita\nJacqueline\nJane\nRosie\nCheryl\nEthel\nLillie\nLoretta\nCarla\nJanie\nJulia\nMildred\nDiana\nTheresa\nWillie\nGeorgia\nDenise\nKay\nLisa\nNorma\nRobin\nDianne\nEva\nJoan\nSue\nWilma\nAnn\nJackie\nJeanette\nKathleen\nMarcia\nTerry\nErma\nVelma\nAnna\nBertha\nEmma\nJean\nPatti\nShelia\nSylvia\nVivian\nBillie\nMattie\nMelissa\nAngela\nThelma\nEdna\nElla\nJennifer\nMaxine\nVera\nVictoria\nBecky\nClara\nJohnnie\nRamona\nRegina\nUnknown\nCarrie\nCharlene\nEllen\nGladys\nIda\nBernice\nCindy\nDelores\nJanis\nJoy\nJulie\nLeslie\nMargie\nVanessa\nBessie\nLouise\nSara\nHazel\nJuanita\nMae\nRuthie\nTerri\nToni\nBelinda\nDorthy\nJacquelyn\nLynda\nAudrey\nDianna\nJan\nLynn\nPatty\nSusie\nAnnette\nDana\nDeloris\nMelba\nSally\nVicky\nAlma\nDebora\nDelois\nFaye\nMelinda\nSuzanne\nYvonne\nConstance\nGeraldine\nJosephine\nLana\nLou\nMaria\nMona\nNina\nLee\nMinnie\nRoberta\nBeatrice\nFreddie\nGinger\nStella\nStephanie\nCora\nFlorence\nJeanne\nJune\nLucy\nOra\nAnne\nEdith\nElaine\nEmily\nHattie\nIrene\nJeannie\nNellie\nPaulette\nRosemary\nValerie\nDella\nDiann\nGeneva\nJana\nJessie\nLillian\nLucille\nMarie\nMarion\nMelody\nNita\nPenny\nRachel\nRobbie\nVeronica\nBettie\nBettye\nClaudia\nEtta\nFlora\nKatie\nLadonna\nLola\nMyra\nSheryl\nVerna\nEddie\nElsie\nEssie\nEsther\nFrankie\nFreda\nJennie\nJewel\nKathie\nLeah\nLena\nMarjorie\nMelanie\nNora\nPearlie\nRosa\nTommie\nAlberta\nBonita\nEarnestine\nEula\nFannie\nGayla\nHolly\nJoann\nJoe\nLottie\nLula\nMarian\nMichelle\nMyrtle\nOpal\nPauline\nCarole\nCassandra\nDinah\nDixie\nGlenna\nIrma\nJamie\nJanette\nJeanie\nJill\nMaggie\nNaomi\nOllie\nReba\nReta\nSondra\nYolanda\nAda\nAmy\nBeth\nDora\nEstella\nEunice\nFrancis\nGertrude\nGracie\nJimmie\nKarla\nLaverne\nLela\nLeona\nLorene\nMitzi\nPearl\nPriscilla\nQueen\nSherri\nViola\nBetsy\nDaisy\nEloise\nGrace\nMable\nMarla\nOlivia\nRenee\nSallie\nTeri\nTerrie\nVeda\nWendy\nAmanda\nArlene\nBennie\nCathie\nCecilia\nChristina\nDawn\nEarlene\nElnora\nGreta\nJerry\nLaurie\nLizzie\nLorraine\nNelda\nNettie\nNona\nOphelia\nRonda\nRosetta\nRoxie\nSandy\nSharron\nShelley\nSherrie\nTreva\nAddie\nAndrea\nCarmen\nCecelia\nDale\nDarla\nDeanna\nDolly\nDonnie\nDottie\nErnestine\nHarriet\nJeri\nKerry\nLenora\nLeola\nLetha\nLila\nLora\nLydia\nLynette\nMarcella\nMarianne\nMarva\nMay\nNadine\nRutha\nSonja\nSonya\nTamara\nTrudy\nViolet\nAlicia\nAlta\nAva\nCandace\nColleen\nCrystal\nDena\nEffie\nEleanor\nEster\nFreida\nGale\nGayle\nGlinda\nHilda\nJacquline\nJenny\nJewell\nJoanna\nKathrine\nKaye\nKimberly\nLucinda\nMarguerite\nMarlene\nMelvin\nMonica\nPearline\nPeggie\nPenelope\nPolly\nTina\nVikki\nVirgie\nAlana\nAlisa\nAngie\nBobby\nBrinda\nCarlene\nCaroline\nCathey\nCelia\nCharla\nCharolette\nCherie\nChristene\nDian\nDolores\nEdwina\nGoldie\nHenrietta\nIna\nInez\nJannie\nJoanne\nJocelyn\nKathi\nLavern\nLavonda\nLeatha\nLuann\nMamie\nMaxcine\nMerilyn\nMiriam\nMolly\nNan\nNeva\nNovella\nPansy\nPat\nPattie\nPearlene\nRebekah\nReda\nRena\nRoxann\nShannon\nSheree\nSidney\nVenita\nWinona\nMary\nLinda\nDeborah\nBrenda\nPatricia\nDebra\nSandra\nSharon\nDonna\nBarbara\nCarolyn\nShirley\nPamela\nBetty\nSusan\nKathy\nJoyce\nKaren\nJudy\nNancy\nRebecca\nCynthia\nJanice\nJanet\nTeresa\nMarilyn\nBeverly\nConnie\nMartha\nSherry\nDorothy\nElizabeth\nPaula\nGloria\nPeggy\nVickie\nCarol\nCheryl\nRose\nJo\nSheila\nCathy\nGlenda\nDiane\nDoris\nRita\nVicki\nMargaret\nRhonda\nDebbie\nWanda\nPhyllis\nHelen\nAlice\nCharlotte\nCatherine\nVirginia\nPatsy\nEvelyn\nLisa\nMarsha\nKatherine\nAnita\nRobin\nGwendolyn\nBonnie\nRuby\nKathryn\nTerry\nAnnie\nTheresa\nLaura\nLois\nRuth\nShelia\nJudith\nEmma\nSarah\nFrances\nLoretta\nKathleen\nBobbie\nVivian\nDiana\nJane\nMelissa\nRegina\nJacqueline\nJulia\nBelinda\nDarlene\nJackie\nAnn\nJuanita\nGail\nRosie\nChristine\nEllen\nTerri\nAngela\nCarla\nDianne\nJoan\nVicky\nEdna\nFlora\nNorma\nWillie\nClara\nVanessa\nBecky\nDenise\nEdith\nJennifer\nVelma\nErma\nVera\nMae\nCharlene\nDana\nDelores\nElla\nEthel\nJean\nWilma\nGeorgia\nJoy\nMargie\nMelanie\nPatty\nJanie\nJulie\nMelinda\nThelma\nAnna\nLee\nMildred\nUnknown\nVerna\nBeatrice\nBertha\nBillie\nCindy\nJan\nLeslie\nBernice\nKay\nLouise\nMarcia\nMona\nRamona\nAlma\nAnnette\nEva\nJanis\nLillie\nCarrie\nGladys\nJacquelyn\nJamie\nJeanette\nMarie\nRuthie\nYvonne\nDianna\nFrankie\nLou\nSally\nSara\nSue\nSuzanne\nToni\nJeannie\nTina\nElaine\nFreda\nGeneva\nGina\nJessie\nJohnnie\nLynn\nRenee\nRoberta\nSylvia\nHazel\nIda\nJana\nJune\nMattie\nNina\nSheryl\nAudrey\nDelois\nDeloris\nLynda\nMaxine\nValerie\nDebora\nEarnestine\nMarla\nSusie\nEssie\nIrene\nLena\nMelody\nMinnie\nNora\nPearlie\nEsther\nJenny\nMable\nMelba\nMyra\nNita\nOra\nRachel\nSheree\nVictoria\nViola\nDiann\nGinger\nHolly\nJanette\nPatti\nPaulette\nPriscilla\nSherrie\nStephanie\nArlene\nBessie\nBettye\nBonita\nCecilia\nClaudia\nCora\nEmily\nFannie\nFlorence\nFreddie\nLana\nLaverne\nLeah\nLillian\nMarva\nPolly\nRobbie\nRosemary\nVeronica\nFaye\nJennie\nKim\nKimberly\nLadonna\nLori\nLucille\nLydia\nNaomi\nPenny\nRetha\nRoxanne\nTrudy\nCassandra\nDixie\nJosephine\nLola\nLula\nMonica\nReba\nRosa\nSheri\nSherri\nTommie\nAlberta\nAmy\nBettie\nDolores\nDorthy\nHarriet\nJill\nJoe\nKarla\nLavern\nLora\nLucy\nLynne\nMaggie\nPauline\nStella\nAnne\nDeanna\nDorris\nElsie\nEula\nGayle\nGracie\nHattie\nHenrietta\nIris\nIrma\nJames\nJeanne\nKatie\nKaye\nLorene\nMarian\nMarjorie\nMyrtle\nNadine\nOllie\nRena\nReta\nRosetta\nSabrina\nSandy\nSondra\nVickey\nAmanda\nBenita\nCallie\nCandace\nConstance\nDaisy\nDarla\nEarlene\nEileen\nFrancis\nGayla\nGeraldine\nIvory\nJeri\nJerri\nJimmie\nJoann\nJoni\nKaran\nMarlene\nNelda\nNellie\nNettie\nPamala\nTerrie\nTracy\nViolet\nVirgie\nWendy\nAda\nCarole\nCecelia\nCherie\nChristy\nCorine\nDebrah\nEddie\nEtta\nGrace\nGwen\nJacquline\nJeanie\nJewel\nJosie\nKitty\nLaurie\nLela\nMaria\nMarion\nMay\nMichele\nMolly\nPam\nPat\nSammie\nTeena\nYolanda\nAlicia\nAva\nBarbra\nBeth\nBetsy\nBeverley\nCelia\nChristene\nChristina\nDeloise\nDora\nDorotha\nDottie\nErnestine\nEugenia\nFlossie\nGale\nGay\nGena\nGlinda\nHarriett\nJewell\nKelly\nLenora\nLessie\nLetha\nLorraine\nMamie\nMarilynn\nNedra\nQueen\nShelby\nTena\nWonda\nAddie\nAgnes\nBennie\nBernetta\nBrinda\nCathrine\nCathryn\nCharolette\nCherry\nChris\nDee\nDella\nDelma\nDena\nDesiree\nDona\nDortha\nEstella\nEunice\nFaith\nFelecia\nFlorene\nGaye\nGreta\nHellen\nHilda\nIva\nIvy\nJanelle\nJannie\nJeannette\nJerrie\nKarin\nKaron\nKathie\nLavonda\nLesa\nLibby\nLilly\nLuann\nLue\nMichelle\nMickey\nMyrna\nOlivia\nOpal\nPearline\nRae\nReda\nReva\nRobyn\nRonda\nRosalind\nRoxie\nSharion\nShelley\nSonja\nSonya\nTeressa\nTressa\nVenita\nMary\nLinda\nDeborah\nDebra\nPatricia\nBrenda\nSharon\nBarbara\nDonna\nCarolyn\nKaren\nSandra\nPamela\nCynthia\nBetty\nShirley\nSusan\nJoyce\nKathy\nRebecca\nTeresa\nJanet\nJudy\nNancy\nConnie\nJanice\nElizabeth\nBeverly\nDorothy\nCarol\nSherry\nCheryl\nMarilyn\nMartha\nVickie\nWanda\nDiane\nDebbie\nPeggy\nPaula\nPhyllis\nVicki\nMargaret\nCathy\nGloria\nDoris\nRita\nRose\nRhonda\nHelen\nJo\nSheila\nLaura\nCharlotte\nAnita\nGlenda\nLisa\nVirginia\nRobin\nCatherine\nShelia\nTheresa\nGail\nMarsha\nBonnie\nRuby\nBobbie\nAlice\nAngela\nKatherine\nAnnie\nTerri\nTerry\nDiana\nGwendolyn\nJacqueline\nSarah\nEvelyn\nRegina\nMelissa\nRuth\nVivian\nWilma\nKathryn\nLoretta\nAnn\nDarlene\nFrances\nPatsy\nRosie\nLois\nVicky\nDenise\nMelinda\nTina\nBelinda\nCindy\nMarcia\nSue\nCarla\nJackie\nWillie\nAnna\nEdna\nEva\nJane\nJudith\nBillie\nEllen\nAnnette\nKim\nBecky\nChristine\nJanie\nJulie\nNorma\nJulia\nMildred\nVanessa\nVera\nSylvia\nDianne\nEmma\nJean\nJoy\nJuanita\nKay\nMargie\nClara\nValerie\nElla\nErma\nHazel\nJennifer\nJoan\nJohnnie\nKathleen\nRuthie\nSheryl\nCharlene\nDebora\nGeorgia\nGeraldine\nJanis\nLillie\nLynn\nMae\nMelody\nPatti\nSally\nDana\nFreda\nJeanette\nMattie\nStephanie\nThelma\nUnknown\nDelores\nEthel\nGladys\nJacquelyn\nJan\nKarla\nLee\nDelois\nJosephine\nLola\nLouise\nMarie\nMaxine\nVelma\nVictoria\nDora\nEdith\nEmily\nLou\nSherrie\nSuzanne\nYvonne\nAndrea\nBertha\nCarrie\nJune\nMelanie\nRachel\nToni\nViola\nAlma\nLeslie\nLynda\nNina\nPam\nPatty\nPenny\nSherri\nAudrey\nElaine\nGinger\nKimberly\nMaria\nPaulette\nVerna\nAmy\nDiann\nJeannie\nLula\nOra\nReba\nRenee\nSharron\nBessie\nDeloris\nDorthy\nFaye\nGina\nIrene\nJeanne\nJoni\nLillian\nMarla\nMona\nMyra\nRamona\nRobbie\nSara\nBernice\nIda\nLaurie\nLucille\nNora\nRoberta\nRosemary\nStella\nAmanda\nEssie\nGayla\nJeanie\nJessie\nMable\nMelba\nMichelle\nMonica\nTerrie\nYolanda\nClaudia\nConstance\nGeneva\nGrace\nGwenda\nJana\nBeatrice\nCarmen\nDarla\nDianna\nErnestine\nJamie\nKatie\nLena\nMarjorie\nMinnie\nSheri\nSusie\nTanya\nChristy\nDeana\nEarnestine\nEddie\nFlora\nFrankie\nGracie\nHattie\nHolly\nJanette\nJill\nKaron\nLana\nLucy\nMitzi\nMyrtle\nNaomi\nNita\nOllie\nRonda\nRoxie\nTeri\nTracy\nCora\nDawn\nDeanna\nIrma\nJoe\nKathie\nLeah\nLenora\nLydia\nMamie\nMarion\nPattie\nPearlie\nSandy\nTeena\nVeronica\nAlberta\nAngelia\nAnne\nCaroline\nCassandra\nCheri\nCherie\nDella\nDixie\nEsther\nEtta\nIna\nInez\nIris\nJennie\nJimmie\nJoann\nOpal\nPat\nQueen\nVelda\nVickey\nBeth\nBettye\nCarole\nDaisy\nEula\nFlorence\nFreddie\nGertrude\nJenny\nJewel\nKathey\nLeigh\nLela\nLesa\nLorraine\nMaggie\nMalinda\nMarian\nMolly\nNellie\nPamala\nPatrica\nPolly\nSonya\nTena\nArlene\nBonita\nCharla\nChristina\nDebrah\nDolores\nDonnie\nEarlene\nFlossie\nGayle\nGlenna\nHenrietta\nIva\nJames\nKaye\nKelly\nLawanda\nLori\nLorine\nLynne\nMiriam\nNadine\nNelda\nOlivia\nPauline\nRosa\nRosetta\nSaundra\nSheena\nTommie\nTrudy\nViolet\nAmelia\nBarbra\nBenita\nCathey\nChristene\nColleen\nDale\nDebroah\nDee\nEster\nEunice\nFannie\nFrancis\nGena\nGwen\nJeri\nJessica\nKattie\nLadonna\nLanita\nLaurel\nLila\nLora\nLorene\nMarianne\nMarva\nMay\nMillie\nNettie\nPeggie\nRenita\nSabrina\nSheree\nTeressa\nAgnes\nAllie\nArnita\nAva\nBrinda\nCandace\nCheryle\nDanna\nDebby\nDenice\nDolly\nEleanor\nElsie\nEstella\nGay\nJannie\nJerri\nJewell\nJoanna\nJohn\nKerry\nLavern\nLaverne\nLeisa\nLeona\nLettie\nLibby\nLottie\nLuann\nLucinda\nLynette\nMaureen\nMaxcine\nMichele\nMickie\nMollie\nOcie\nOdessa\nPearl\nPriscilla\nRegena\nRochelle\nRosalyn\nSadie\nTara\nTonya\nVenita\nWendy\nWilla\nYvette\nMary\nLinda\nBrenda\nDebra\nDeborah\nPatricia\nDonna\nSharon\nBarbara\nKaren\nCynthia\nPamela\nCarolyn\nSandra\nKathy\nTeresa\nSusan\nShirley\nRebecca\nBetty\nJudy\nDebbie\nJoyce\nNancy\nJanice\nCarol\nMarilyn\nJanet\nElizabeth\nBeverly\nSherry\nSheila\nVickie\nCheryl\nCindy\nConnie\nRhonda\nDiane\nVicki\nMartha\nLisa\nPaula\nGloria\nWanda\nCathy\nDorothy\nRita\nDoris\nPeggy\nPhyllis\nRose\nMargaret\nGlenda\nCharlotte\nAnita\nLaura\nEvelyn\nRobin\nJo\nHelen\nTerri\nAlice\nGwendolyn\nVirginia\nAnnette\nDarlene\nRuby\nTerry\nKathryn\nTina\nAngela\nTheresa\nDenise\nDiana\nBelinda\nJulie\nLoretta\nBonnie\nRuth\nBecky\nRegina\nMarsha\nKatherine\nCatherine\nFrances\nShelia\nKim\nPatsy\nTammy\nSarah\nBobbie\nRosie\nVicky\nCarla\nGail\nMelissa\nJacqueline\nJulia\nValerie\nChristine\nEmma\nJane\nKathleen\nJoy\nNorma\nJackie\nRamona\nSylvia\nAnnie\nEllen\nJudith\nKimberly\nJennifer\nJuanita\nMelinda\nPatti\nSue\nDana\nLee\nLeslie\nStephanie\nKay\nVanessa\nDianne\nJeanette\nMae\nAlma\nAnn\nClara\nJanie\nJanis\nPam\nVivian\nWilma\nAnna\nDelores\nJoan\nLois\nPenny\nRuthie\nMildred\nBillie\nGeorgia\nMelanie\nSherri\nDelois\nEdna\nJoann\nLouise\nLynn\nMarcia\nBertha\nDianna\nElaine\nJacquelyn\nJeanne\nJeannie\nMaria\nMona\nSuzanne\nJamie\nJan\nJessie\nMargie\nPatty\nSheryl\nUnknown\nYvonne\nCarrie\nDebora\nDeloris\nErma\nEva\nJean\nRenee\nThelma\nAmy\nAudrey\nBernice\nElla\nMattie\nRonda\nSandy\nSusie\nToni\nVerna\nFaye\nGladys\nJana\nBessie\nDella\nEthel\nFrankie\nJohnnie\nLou\nLynda\nMarie\nMonica\nNina\nPriscilla\nWillie\nCharlene\nKatie\nLula\nRachel\nSally\nTonya\nVelma\nGayla\nGrace\nIrene\nJeanie\nKarla\nLaurie\nLori\nMelody\nRobbie\nRoberta\nSara\nVickey\nVictoria\nBeatrice\nCassandra\nDarla\nEdith\nFreda\nGinger\nHazel\nHolly\nJill\nJosephine\nJune\nLucy\nMelba\nPaulette\nTanya\nTerrie\nClaudia\nDora\nEarnestine\nEsther\nGeraldine\nGina\nIda\nLadonna\nLesa\nLillie\nLydia\nMamie\nMaxine\nNita\nRosemary\nSabrina\nVera\nVeronica\nAndrea\nArlene\nBenita\nDeanna\nDiann\nEmily\nFannie\nFreddie\nGeneva\nJanette\nJoni\nLaverne\nLeah\nLena\nLenora\nLucille\nMitzi\nPauline\nReba\nStella\nEstella\nGayle\nLana\nLela\nLola\nMarian\nMarla\nMarlene\nMichelle\nNora\nSheri\nSherrie\nTammie\nAlicia\nCrystal\nGale\nGracie\nGwen\nJennie\nJeri\nJerri\nJerry\nJewel\nLeisa\nLillian\nNellie\nOpal\nRetha\nRosa\nTeressa\nViola\nAmanda\nApril\nCarole\nDaisy\nDena\nEunice\nFlora\nFlorence\nHarriet\nJimmie\nLawanda\nLottie\nMarcella\nMarjorie\nNeva\nPat\nPatrica\nSharron\nTrudy\nVenita\nAlberta\nAmelia\nAnne\nBeth\nCarmen\nChristy\nDolores\nDorthy\nEarlene\nEula\nHenrietta\nJenny\nLea\nLeigh\nLorene\nMaggie\nMarion\nMinnie\nMyra\nOra\nSonya\nStacy\nVonda\nYolanda\nBeulah\nCecilia\nColleen\nEloise\nEssie\nIra\nIris\nJames\nJeannette\nJoe\nKatrina\nLeann\nNadine\nNatalie\nNelda\nPamala\nPearl\nRenita\nRochelle\nRosalind\nShannon\nShelly\nSondra\nSuzan\nTeri\nTrina\nTwila\nWonda\nAda\nBernadine\nBobby\nBonita\nCandice\nCandy\nCherie\nChris\nDawn\nDixie\nDottie\nFelecia\nFrancis\nGertrude\nGreta\nHattie\nHilda\nIrma\nJaney\nJody\nKelly\nLavern\nLesia\nLila\nLucinda\nLynne\nMarilynn\nMelisa\nRegena\nRegenia\nRosetta\nSheree\nSherrye\nTamara\nTena\nTracey\nValarie\nVernita\nAdrienne\nAnnita\nAvis\nBettie\nBrinda\nCandace\nCaroline\nCathie\nCathryn\nCherri\nCherry\nChristie\nCleo\nDarleen\nDebby\nDollie\nEaster\nErnestine\nFay\nFelicia\nGlinda\nIva\nJewell\nJoanne\nKatheryn\nKathie\nKaye\nKerry\nLauren\nLeona\nLora\nLorraine\nMabel\nMable\nMadeline\nMarianne\nMiriam\nMolly\nNaomi\nOlivia\nRena\nRene\nRobyn\nRoslyn\nSadie\nSaundra\nShelby\nTracie\nTracy\nVelda\nWinona\nMary\nLinda\nBrenda\nPatricia\nDebra\nDeborah\nKaren\nBarbara\nKathy\nDonna\nSandra\nCynthia\nPamela\nSharon\nSusan\nCarolyn\nDebbie\nTeresa\nJudy\nLisa\nShirley\nRebecca\nJoyce\nJanet\nBetty\nNancy\nElizabeth\nCheryl\nCarol\nJanice\nConnie\nPeggy\nSheila\nSherry\nTammy\nPaula\nMarilyn\nVickie\nPhyllis\nRhonda\nCathy\nCindy\nDorothy\nBeverly\nRita\nMartha\nWanda\nTerri\nAnnette\nDiane\nLaura\nAnita\nVicki\nJo\nRose\nDiana\nMargaret\nGlenda\nGloria\nDarlene\nRegina\nTerry\nDoris\nJulie\nBecky\nRobin\nMelissa\nCharlotte\nShelia\nVirginia\nAlice\nAngela\nHelen\nTina\nKim\nTheresa\nRuby\nCatherine\nKimberly\nLoretta\nMarsha\nBobbie\nFrances\nSarah\nDenise\nGail\nJulia\nCarla\nBonnie\nKathryn\nGwendolyn\nJane\nEvelyn\nLeslie\nDianne\nJackie\nAnn\nKathleen\nPatti\nValerie\nVivian\nBelinda\nJudith\nRuth\nMelinda\nSherri\nDana\nJennifer\nKatherine\nPatsy\nWillie\nAnna\nPatty\nRosie\nVanessa\nJacqueline\nMelanie\nSandy\nKay\nVicky\nDebora\nSuzanne\nKelly\nTamara\nGeorgia\nLois\nMildred\nPam\nStephanie\nSue\nAnnie\nChristine\nDianna\nEllen\nJean\nEmma\nGina\nCarrie\nJan\nSherrie\nElaine\nJoan\nJoann\nMona\nNorma\nSara\nSheryl\nSylvia\nWilma\nAmy\nBillie\nDelores\nJamie\nJuanita\nLynn\nMarcia\nMattie\nSusie\nClara\nDarla\nEva\nGladys\nJoy\nLori\nEdna\nEthel\nMargie\nMyra\nRamona\nVictoria\nYvonne\nAudrey\nJune\nMae\nMaxine\nMichelle\nRobbie\nTammie\nDiann\nIda\nLee\nLillian\nPenny\nTami\nThelma\nArlene\nBertha\nBeth\nElla\nErma\nJeannie\nKarla\nLana\nLesa\nLillie\nVerna\nCassandra\nJanie\nJanis\nJeanette\nJosephine\nLadonna\nNina\nRonda\nDeloris\nIrene\nJacquelyn\nMarie\nNatalie\nRenee\nRosemary\nRuthie\nSally\nTerrie\nToni\nBeatrice\nDawn\nDelois\nFreda\nGinger\nMelody\nMinnie\nMonica\nRoberta\nSharron\nTracy\nUnknown\nCharlene\nCrystal\nLena\nLouise\nMaria\nMarla\nNadine\nPauline\nPriscilla\nReba\nStacy\nVelma\nVera\nCarmen\nCheri\nClaudia\nDeanna\nDorthy\nEarnestine\nFrankie\nJana\nLeah\nMarion\nPearlie\nPolly\nSheri\nTanya\nVickey\nAlfreda\nBernice\nGeraldine\nGrace\nJanette\nJerri\nJill\nLaurie\nLeigh\nLucy\nTeri\nVeronica\nAndrea\nCarole\nCecilia\nEdith\nGracie\nJessie\nJimmie\nJohnnie\nKatie\nLou\nLucille\nMichele\nOra\nPat\nRosetta\nSonja\nTommie\nAlberta\nAmanda\nChristina\nConstance\nDaisy\nDolores\nJeanne\nMarian\nNita\nPaulette\nRachel\nStella\nTamra\nTonya\nAlma\nAngie\nBessie\nCandy\nColleen\nDena\nEarlene\nFaye\nFreddie\nGale\nGayla\nGayle\nGwen\nIris\nJoni\nKatrina\nLavern\nNora\nOllie\nPatrica\nAlicia\nAnne\nBetsy\nBonita\nCora\nFlora\nFrancis\nHazel\nHolly\nHope\nJeanie\nJennie\nKaron\nLea\nLeona\nLydia\nMalinda\nMarjorie\nNettie\nReta\nRosa\nShannon\nShari\nShelly\nSonya\nViola\nApril\nCathryn\nChandra\nChristie\nDixie\nEddie\nEffie\nEloise\nEsther\nEunice\nGeneva\nHattie\nHenrietta\nIrma\nJewel\nLaquita\nLawanda\nLela\nLeta\nLola\nLora\nLorraine\nLynda\nLynne\nMamie\nMarianne\nMarietta\nMarilynn\nNellie\nOla\nPatrice\nRena\nRenita\nRetha\nRobbin\nSonia\nTamela\nTena\nTrina\nTrudy\nViolet\nWendy\nYolanda\nAddie\nAlisa\nAngelia\nBeckie\nBernestine\nCathey\nChristy\nDeana\nDebby\nDee\nDella\nDonnie\nEmily\nErin\nEula\nFaith\nFelicia\nFlorence\nGwenda\nJanelle\nJeannette\nJoanne\nKelley\nLaverne\nLila\nLynette\nMadeline\nMaggie\nMarlene\nMolly\nNaomi\nOdessa\nOlivia\nPattie\nRobyn\nRosalind\nRoxanne\nSherrill\nSondra\nTamera\nTeena\nTeressa\nTonia\nAmelia\nBettie\nBettye\nBrinda\nCherie\nCheryle\nDanita\nDanna\nDinah\nElisa\nElnora\nErnestine\nEtta\nEugenia\nIna\nJeri\nJohnny\nKathie\nKathrine\nKaye\nLanita\nLawanna\nLeesa\nLeisa\nLenora\nLorene\nLula\nMerry\nMillie\nMitzi\nMyrtle\nNikki\nPamala\nPearl\nPhillis\nQueen\nSammie\nShelley\nSheree\nShirlene\nTresa\nValarie\nVelda\nVerlinda\nVikki\nMary\nLinda\nBrenda\nDonna\nPatricia\nDebra\nKaren\nDeborah\nSandra\nCynthia\nSharon\nBarbara\nKathy\nPamela\nDebbie\nLisa\nTeresa\nSusan\nCarolyn\nTammy\nBetty\nShirley\nConnie\nJanice\nSheila\nRebecca\nJanet\nBeverly\nCindy\nNancy\nJoyce\nRhonda\nSherry\nJudy\nElizabeth\nCheryl\nVickie\nCarol\nCathy\nWanda\nPhyllis\nMarilyn\nMartha\nPaula\nBecky\nGlenda\nAnita\nLaura\nPeggy\nDorothy\nTerri\nDiane\nVicki\nMargaret\nJulie\nKimberly\nRita\nAnnette\nSarah\nGloria\nCharlotte\nDarlene\nHelen\nTerry\nAngela\nShelia\nDoris\nRobin\nTina\nDenise\nJo\nRose\nBelinda\nVirginia\nRegina\nAlice\nEvelyn\nLoretta\nTheresa\nMelissa\nKim\nPam\nDiana\nGwendolyn\nPatsy\nCatherine\nKatherine\nRuby\nAnna\nGail\nValerie\nJulia\nBobbie\nVanessa\nMarsha\nKathryn\nAnn\nCarla\nFrances\nJacqueline\nLori\nMelinda\nTammie\nVivian\nBonnie\nLois\nRamona\nAnnie\nJuanita\nMelanie\nKelly\nSylvia\nPatty\nRosie\nSandy\nLeslie\nChristine\nEllen\nJackie\nNorma\nSherri\nDana\nJennifer\nRuth\nJean\nStephanie\nToni\nTracy\nAndrea\nCarrie\nJan\nBillie\nDebora\nJane\nJoann\nJudith\nLynn\nPenny\nVicky\nDianna\nDianne\nElaine\nJoy\nMyra\nEdna\nGina\nSheryl\nTami\nCharlene\nLouise\nMildred\nWillie\nAmy\nEmma\nJamie\nKathleen\nMae\nMichelle\nSuzanne\nErma\nAudrey\nElla\nMarie\nReba\nSue\nJeanette\nTanya\nThelma\nBeth\nHazel\nLee\nMargie\nRenee\nTamara\nTerrie\nGeorgia\nGladys\nGwen\nPatti\nPaulette\nSara\nSusie\nGeraldine\nGinger\nJanie\nJeanne\nKay\nMinnie\nNina\nSally\nSherrie\nAngelia\nBessie\nIda\nJacquelyn\nJeannie\nKarla\nLillie\nMelody\nTonya\nVerna\nBonita\nCheri\nDelois\nEthel\nLana\nLillian\nYvonne\nBertha\nClara\nDeanna\nDebby\nEdith\nJune\nLadonna\nLaurie\nLena\nMitzi\nRobbie\nRonda\nVelma\nVictoria\nAlicia\nArlene\nBeatrice\nCarmen\nEva\nFlora\nJanis\nJill\nLenora\nLesa\nMarcia\nMona\nMonica\nPauline\nRuthie\nVeronica\nAlma\nAmanda\nAngie\nDarla\nDawn\nFreda\nHolly\nJohnnie\nLola\nLydia\nLynda\nMarjorie\nMattie\nMichele\nSharron\nStacy\nTommie\nVera\nVickey\nWendy\nAnne\nDena\nDora\nEarnestine\nIrene\nJana\nLou\nMable\nRoberta\nCassandra\nCora\nFreddie\nGeneva\nJeri\nJoan\nLea\nLeah\nLynette\nMaxine\nPolly\nSonja\nTena\nYolanda\nChristina\nDanita\nDiann\nDorthy\nEmily\nFrankie\nGayla\nJanette\nJessie\nJoanne\nJosephine\nMaria\nNora\nOra\nPriscilla\nRosemary\nRosetta\nTeri\nWilma\nAmelia\nApril\nCecilia\nDelores\nDeloris\nDixie\nFelecia\nJeannette\nJoanna\nKelli\nLorraine\nLynne\nMelba\nNellie\nSabrina\nShelley\nShelly\nSondra\nAva\nClaudia\nDebi\nDebrah\nDinah\nDolores\nEunice\nFannie\nFaye\nJeanie\nKelley\nLavern\nLetha\nMalinda\nPamala\nPat\nPattie\nRachel\nRosa\nRosalyn\nShannon\nShari\nSonya\nTresa\nTrudy\nBernadette\nBernice\nBetsy\nBettye\nBridget\nCharla\nClaudette\nDaisy\nDeana\nDella\nEssie\nFelicia\nGale\nGay\nGayle\nGrace\nHattie\nJacque\nJennie\nJerri\nJimmie\nJody\nJoni\nKaron\nKellie\nLaverne\nLeigh\nLora\nLucille\nLucy\nMarla\nMarlene\nMyrtle\nNatalie\nOlivia\nPatrica\nRena\nRobert\nShawn\nSheree\nStella\nTherese\nUnknown\nViolet\nAda\nAgnes\nAlberta\nBettie\nBobby\nBridgette\nChristy\nConstance\nCrystal\nDanna\nDee\nErnestine\nFlorence\nGena\nGretchen\nJames\nJenny\nKaye\nKerry\nKimberley\nLawanda\nLiz\nLorene\nLuanne\nLucinda\nMarcella\nMarilynn\nMarion\nMarva\nNadine\nNanette\nNita\nNona\nOllie\nPatrice\nPearlie\nRenita\nRobyn\nShiela\nSonia\nSybil\nTamra\nVenita\nVernice\nVikki\nViola\nCamille\nCandy\nCarole\nCaroline\nCassie\nCelia\nCherie\nChris\nCindi\nColleen\nDale\nDollie\nEarlene\nEsther\nFaith\nGracie\nInez\nIrma\nJanelle\nJanna\nKarol\nKathey\nKathi\nKatie\nKayla\nLeisa\nLeona\nLoraine\nLue\nLula\nMarian\nMarianne\nMolly\nNelda\nOpal\nOphelia\nQueen\nRobbin\nRochelle\nRosalind\nSadie\nSherrill\nStacey\nTammi\nTana\nTracie\nTwila\nTwyla\nValarie\nWilliam\nWonda\nMary\nLinda\nDonna\nBrenda\nLisa\nKaren\nPatricia\nSandra\nDebra\nCynthia\nPamela\nTeresa\nBarbara\nDeborah\nSharon\nDebbie\nKathy\nSusan\nTammy\nCarolyn\nJanet\nRhonda\nJanice\nBetty\nCindy\nShirley\nConnie\nSheila\nBeverly\nJoyce\nSherry\nElizabeth\nCarol\nCheryl\nNancy\nRebecca\nAngela\nJudy\nKimberly\nPaula\nMartha\nRobin\nTina\nTerri\nPhyllis\nLaura\nWanda\nMelissa\nCathy\nMarilyn\nVickie\nAnita\nAnnette\nDiane\nDoris\nRose\nKim\nPeggy\nRegina\nRita\nShelia\nGlenda\nSarah\nJulie\nTheresa\nCarla\nDana\nDorothy\nVicki\nCharlotte\nAlice\nMargaret\nBecky\nGloria\nBonnie\nJo\nRuby\nDiana\nGwendolyn\nPenny\nTerry\nLori\nDenise\nVirginia\nKelly\nLoretta\nTammie\nJackie\nMelinda\nBobbie\nBelinda\nKathryn\nJacqueline\nStephanie\nHelen\nPam\nTracy\nKatherine\nEvelyn\nValerie\nDarlene\nSandy\nFrances\nPatsy\nAnna\nLeslie\nGina\nMelanie\nCatherine\nJamie\nSuzanne\nMarsha\nChristine\nJan\nLois\nToni\nMichelle\nRosie\nRuth\nVicky\nJoy\nCarrie\nJulia\nLynda\nPatti\nVanessa\nEdna\nJudith\nKathleen\nMelody\nAnn\nCharlene\nDianna\nDianne\nGail\nJane\nSherri\nGeorgia\nJennifer\nRenee\nSylvia\nVivian\nEllen\nJuanita\nLee\nLillie\nJanie\nJoann\nKay\nTeri\nWillie\nAndrea\nDelores\nThelma\nBeth\nDeanna\nJeanette\nLaurie\nMarcia\nYvonne\nClara\nJoan\nLesa\nSheryl\nSonya\nSusie\nTamara\nTanya\nDarla\nGeraldine\nGinger\nJean\nJeannie\nMarie\nAnnie\nErma\nEva\nFelicia\nJacquelyn\nJune\nLadonna\nLynn\nShelly\nTonya\nWendy\nAmy\nAudrey\nBertha\nHolly\nJessie\nMyra\nPatty\nAlma\nBillie\nHazel\nJerri\nLora\nMona\nRamona\nRosemary\nSondra\nVerna\nWilma\nAmanda\nDelois\nElaine\nFreda\nJanis\nLola\nVelma\nVictoria\nDella\nEarnestine\nEmma\nIda\nJohnnie\nLillian\nLorraine\nLorrie\nSara\nSherrie\nBessie\nCassandra\nCheri\nDawn\nDebora\nEdith\nGayla\nJana\nKarla\nMinnie\nRachel\nSonja\nTena\nTerrie\nDena\nElla\nFrankie\nGladys\nIrene\nLana\nLeah\nMaria\nMattie\nMelba\nMonica\nNina\nNorma\nReba\nSally\nSheri\nStacy\nSue\nVera\nAngie\nBeatrice\nCarmen\nJosephine\nMae\nMargie\nMichele\nNita\nRonda\nRuthie\nShari\nVeronica\nApril\nBonita\nChristy\nDiann\nGrace\nKatie\nKimberley\nLeigh\nLouise\nMarjorie\nMaxine\nMildred\nPaulette\nPauline\nPolly\nRobbie\nRoberta\nRosetta\nTracey\nAlicia\nArlene\nBernice\nCora\nEthel\nFannie\nGeneva\nGwen\nJames\nJoe\nLavern\nLou\nLucinda\nMarla\nShannon\nTami\nTammi\nTommie\nYolanda\nAlberta\nAnne\nBenita\nConstance\nCrystal\nDeloris\nFelecia\nJill\nJohnna\nKatrina\nLeisa\nLiz\nLula\nLynette\nMarian\nMyrtle\nNora\nOllie\nOpal\nPriscilla\nTrudy\nVickey\nAddie\nAngelia\nCandace\nChristina\nCindi\nDebby\nDorthy\nErnestine\nFlora\nFlorence\nHattie\nJeanne\nJeannette\nJoanna\nKerry\nKristi\nLawanda\nLenora\nLucille\nMarion\nMitzi\nNatalie\nNellie\nOlivia\nRena\nRetha\nSharron\nShelley\nTracie\nAllison\nBobby\nCecelia\nColleen\nDanna\nDee\nEster\nEsther\nEugenia\nEunice\nFrancis\nGay\nGena\nGracie\nIrma\nJennie\nJenny\nJeri\nJerry\nKelley\nLesia\nLorene\nMarcella\nMay\nRene\nRosa\nRosalind\nSuzette\nTreva\nYvette\nAretha\nAva\nCandy\nCaroline\nCecilia\nCharla\nCherie\nDaisy\nDanita\nDeana\nDeann\nDolores\nEtta\nFonda\nFreddie\nGale\nGayle\nGlenna\nGreta\nIvy\nJoanne\nKathie\nKayla\nLea\nLeann\nLena\nLorie\nLucy\nMarlene\nMissy\nPat\nPattie\nSadie\nSandi\nSaundra\nSheree\nStella\nTamra\nTeressa\nUnknown\nAda\nAlesia\nAletha\nAmelia\nBetsy\nBettye\nBeverley\nBridgette\nCaren\nCarlene\nCarlotta\nCeleste\nCherry\nCorine\nDebi\nDebrah\nDenice\nEarline\nElnora\nEmily\nFaye\nGretchen\nInez\nIva\nJanna\nJeanetta\nJeanie\nJeanna\nJerrie\nJimmie\nJody\nKaron\nKathi\nKelli\nLatricia\nLaverne\nLavonda\nLawanna\nLila\nLydia\nLynnette\nMarcy\nPamala\nRobert\nRochelle\nRosalyn\nScarlett\nShellia\nTanna\nTara\nTeena\nTresa\nValarie\nValeria\nViola\nWonda\nMary\nLinda\nBrenda\nLisa\nKaren\nSandra\nDonna\nPatricia\nTeresa\nDebra\nCynthia\nSharon\nDeborah\nPamela\nSusan\nDebbie\nTammy\nKathy\nBarbara\nCarolyn\nSherry\nSheila\nRhonda\nAngela\nCheryl\nShirley\nRebecca\nJanice\nKimberly\nCindy\nLaura\nNancy\nElizabeth\nConnie\nJanet\nRobin\nTina\nJudy\nBeverly\nTerri\nBetty\nCarol\nJoyce\nPaula\nCarla\nVickie\nJacqueline\nMartha\nPhyllis\nMarilyn\nKim\nCathy\nDenise\nGloria\nWanda\nDiane\nAnita\nRegina\nVicki\nCharlotte\nRita\nDorothy\nShelia\nMelissa\nBecky\nJulie\nTheresa\nGlenda\nLori\nPeggy\nDiana\nMargaret\nEvelyn\nKelly\nRose\nMelinda\nDoris\nSarah\nAnnette\nTracy\nGwendolyn\nCatherine\nSherri\nJackie\nTanya\nVirginia\nBelinda\nJennifer\nDarlene\nMelanie\nStephanie\nPenny\nDana\nMichelle\nAlice\nJulia\nMarsha\nValerie\nAnn\nTerry\nLeslie\nJo\nLoretta\nBobbie\nHelen\nRuth\nBonnie\nKatherine\nGail\nLaurie\nPam\nToni\nVicky\nFrances\nRenee\nVanessa\nVivian\nCarrie\nGina\nJeanette\nKathryn\nTammie\nBeth\nDeanna\nSuzanne\nJamie\nLois\nRuby\nChristine\nTonya\nJoy\nSandy\nDianna\nJanie\nLee\nSonya\nAmy\nAnnie\nJudith\nLadonna\nMarcia\nMonica\nKathleen\nNorma\nRosie\nJane\nKarla\nRamona\nYvonne\nAudrey\nCharlene\nDarla\nDianne\nLesa\nPatsy\nRobbie\nWilma\nAnna\nDawn\nEva\nJoan\nJoann\nLana\nLynn\nRachel\nRonda\nSylvia\nTerrie\nVeronica\nWillie\nClara\nEmma\nJana\nJill\nJuanita\nMildred\nPatti\nPatty\nEdith\nLillie\nLynda\nSara\nShari\nTamara\nAngie\nEllen\nFelicia\nJan\nMae\nMelody\nMyra\nRosemary\nShelly\nSherrie\nSheryl\nCassandra\nEdna\nJacquelyn\nLorie\nMona\nNina\nStacy\nSue\nKay\nLora\nVelma\nWendy\nBernice\nBillie\nDena\nFrankie\nGayla\nGeorgia\nGinger\nHolly\nLydia\nMarie\nMarla\nMichele\nVera\nAndrea\nCarmen\nDebora\nEthel\nJeanne\nJerri\nMaria\nNatalie\nSheri\nSusie\nAngelia\nBridget\nDee\nDelores\nErma\nJosephine\nLeah\nNita\nSally\nShannon\nTeri\nAlma\nBertha\nCheri\nCrystal\nIda\nJeannie\nJune\nLeigh\nLorraine\nLucinda\nRoberta\nSondra\nSonja\nTami\nThelma\nAmanda\nBeatrice\nBonita\nClaudia\nConstance\nDelois\nDeloris\nElaine\nJacquline\nJoanne\nKristi\nLola\nLouise\nSabrina\nShelley\nTena\nTracey\nVickey\nVictoria\nYolanda\nAnne\nChristy\nDora\nElla\nFrancis\nFreda\nHazel\nJanis\nKelley\nLea\nLou\nStella\nTamra\nAlicia\nBetsy\nDeana\nDiann\nDixie\nDorthy\nGladys\nJean\nLesia\nLillian\nLula\nMinnie\nNora\nTraci\nViola\nAllison\nAnnetta\nBessie\nCandy\nCecilia\nChris\nChristina\nCora\nDanita\nDella\nEdwina\nFlora\nGwen\nIrene\nJoanna\nJoni\nKatie\nKelli\nKellie\nMalinda\nMargie\nMattie\nMaxine\nNanette\nNaomi\nPriscilla\nReba\nRosa\nVelvet\nVerna\nAda\nBenita\nCarole\nCaroline\nFelecia\nJeanie\nJimmie\nJohnnie\nKaron\nKimberley\nLenora\nLynette\nMamie\nMelba\nRobert\nRobyn\nRosetta\nRuthie\nScarlett\nSharron\nTrina\nTrudy\nValarie\nYvette\nBrigitte\nCathey\nDebrah\nDolores\nElnora\nEugenia\nEula\nFannie\nGay\nGeneva\nGeraldine\nGreta\nHattie\nJessica\nJessie\nJewell\nKerry\nLavern\nLecia\nLela\nLiz\nLoria\nLorrie\nLynne\nMarcella\nMarjorie\nRena\nRenita\nRosalind\nStacey\nTracie\nAmber\nCara\nColleen\nDaisy\nDonnie\nDottie\nElisa\nFaith\nGrace\nHarriet\nJames\nJayne\nJennie\nJeri\nLeann\nLibby\nLila\nMarion\nMeredith\nMissy\nNellie\nNettie\nOra\nPaulette\nPauline\nPhillis\nPolly\nRene\nRetha\nRobbin\nShawn\nShelby\nTamela\nTeena\nTonja\nTresa\nValeria\nAlison\nApril\nAva\nBobby\nCallie\nCarma\nCecelia\nCharles\nCherry\nDamita\nDebby\nEarnestine\nEddie\nElsie\nEmily\nFaye\nGale\nGlenna\nGlinda\nGracie\nIvory\nJacquelin\nJeana\nJewel\nJodi\nJohnna\nJosie\nKathrine\nKendra\nLeisha\nLelia\nLeona\nLetha\nLorene\nLottie\nMable\nMarian\nMavis\nMechelle\nMelisa\nMichael\nMiriam\nMitzi\nNelda\nNikki\nNona\nOlivia\nPamala\nPatrica\nRoxanne\nSallie\nSammie\nSaundra\nSheron\nSonia\nTara\nTommie\nTonia\nTwyla\nViolet\nZelda\nMary\nLisa\nBrenda\nKaren\nDonna\nLinda\nTeresa\nSandra\nTammy\nCynthia\nPatricia\nSharon\nBarbara\nPamela\nDebra\nDeborah\nSherry\nSusan\nDebbie\nSheila\nKimberly\nKathy\nAngela\nRhonda\nCarolyn\nTina\nCheryl\nJanet\nCindy\nConnie\nRebecca\nElizabeth\nCarol\nJudy\nRobin\nShirley\nBeverly\nCarla\nJacqueline\nAnita\nTerri\nLaura\nBetty\nJanice\nPaula\nLori\nMelissa\nKim\nVickie\nNancy\nRegina\nJoyce\nWanda\nMartha\nDorothy\nJulie\nDiane\nPhyllis\nCathy\nVicki\nRose\nGloria\nMelanie\nSherri\nJennifer\nTracy\nBecky\nDana\nCharlotte\nRita\nStephanie\nKelly\nMarilyn\nMelinda\nShelia\nAnnette\nTerry\nPenny\nSarah\nTanya\nJo\nGlenda\nHelen\nTammie\nPeggy\nValerie\nBelinda\nTheresa\nVirginia\nMargaret\nGwendolyn\nLeslie\nPam\nDenise\nDiana\nMichelle\nDarlene\nEvelyn\nLoretta\nDoris\nTonya\nJackie\nLaurie\nAnna\nBeth\nBobbie\nJulia\nCatherine\nBonnie\nGina\nFrances\nMarsha\nAlice\nDeanna\nJamie\nMarcia\nVanessa\nJeanette\nKathleen\nKatherine\nKathryn\nTamara\nVicky\nAmy\nRuby\nSonya\nGail\nLois\nShelly\nAngelia\nSandy\nToni\nCarrie\nFelicia\nRenee\nRuth\nHolly\nStacy\nSylvia\nDianna\nLee\nAndrea\nJudith\nVivian\nWendy\nChristine\nGinger\nJane\nMona\nRonda\nShari\nAudrey\nEdna\nEllen\nJoy\nJuanita\nKarla\nMelody\nPatty\nSuzanne\nLesa\nMargie\nMichele\nShannon\nVeronica\nYvonne\nAnne\nDarla\nDawn\nJanie\nRosie\nDena\nEthel\nJacquline\nJan\nMonica\nNorma\nSara\nAnn\nCarmen\nEmma\nLeigh\nPatsy\nRamona\nSherrie\nTami\nAngie\nErma\nJana\nJoan\nLadonna\nVictoria\nAlicia\nJacquelyn\nKelley\nLillie\nLynn\nMarla\nNatalie\nRachel\nSheryl\nCharlene\nDelores\nEdith\nLana\nMarie\nRosemary\nSue\nAnnie\nCecilia\nClara\nJean\nJoann\nKay\nLeah\nSusie\nTerrie\nThelma\nAmanda\nBernice\nCaroline\nChristina\nCrystal\nDaphne\nDianne\nElla\nJill\nKatrina\nLouise\nMaria\nNina\nTracey\nWillie\nBillie\nCassandra\nGeorgia\nJeannie\nLillian\nTena\nWilma\nCheri\nDebora\nJohnnie\nLou\nMamie\nPolly\nSally\nShelley\nTonia\nYolanda\nChristy\nEsther\nGena\nGrace\nLeisa\nLora\nMaxine\nRobbie\nRoberta\nRuthie\nSabrina\nSheri\nStella\nAlma\nBonita\nEva\nGay\nJeanie\nJennie\nLea\nMitzi\nMyra\nNita\nTeri\nVera\nDiann\nFaye\nFrancis\nGladys\nGwen\nIda\nJerri\nJessie\nLola\nLorie\nLydia\nMarion\nMildred\nPatti\nPaulette\nSharron\nTracie\nAlisa\nAllison\nArlene\nBridget\nColleen\nDeana\nGayla\nHazel\nJayme\nJenny\nKelli\nKimberley\nLaverne\nLiz\nLorraine\nLynda\nLynette\nMattie\nRenita\nRobyn\nRoxie\nSondra\nTeena\nTraci\nApril\nBeatrice\nBertha\nCarole\nConstance\nDebby\nElaine\nEugenia\nFrankie\nJeanne\nJeannette\nJoanna\nKristi\nLena\nLenora\nLula\nMarjorie\nNora\nPennie\nReba\nSonia\nStacey\nTammi\nTeressa\nTwila\nValarie\nVelma\nVerna\nAlison\nCandace\nChristi\nDeloris\nDonita\nEarnestine\nEssie\nFreda\nGeraldine\nGreta\nHeather\nJanette\nJanis\nJoanne\nJosephine\nKellie\nKerri\nLauri\nLeann\nLeola\nLibby\nLucretia\nMable\nMae\nMarguerite\nNellie\nNettie\nOllie\nPriscilla\nRena\nRoxanne\nSaundra\nSonja\nTamela\nTresa\nTrudy\nWonda\nBessie\nBettie\nChandra\nChris\nCora\nDaisy\nDeidre\nDelois\nDenita\nDora\nDorthy\nEula\nFelecia\nFlorence\nIrene\nJeri\nJoni\nLaquita\nLawanda\nLesia\nLucille\nMalinda\nMarcella\nMarian\nMarianne\nMiriam\nNaomi\nPauline\nRetha\nShawn\nSophia\nTara\nTrina\nValorie\nVernita\nAlberta\nAlesia\nAlfreda\nAllyson\nBridgette\nCallie\nCecelia\nCelia\nChristie\nClarissa\nClaudia\nDanita\nDanna\nDavid\nDawna\nDee\nDella\nDenice\nEdwina\nEstella\nFannie\nFrancine\nFreddie\nGenevieve\nGracie\nHattie\nHenrietta\nIrma\nJanna\nJayne\nJeanna\nJerry\nJoanie\nJohnny\nJune\nLauren\nLetha\nLynne\nMerry\nMinnie\nMissy\nNena\nOra\nPamala\nPatrica\nPearl\nPhillis\nRene\nRochelle\nRosa\nRosetta\nScarlett\nShela\nTrena\nVelvet\nVenita\nVernice\nVickey\nVonda\nYvette\nLisa\nMary\nTammy\nDonna\nKaren\nLinda\nBrenda\nSandra\nTeresa\nPatricia\nSharon\nCynthia\nPamela\nAngela\nSusan\nKimberly\nBarbara\nDeborah\nTina\nDebra\nLaura\nCarolyn\nRhonda\nSheila\nSherry\nCindy\nConnie\nKathy\nJanet\nRebecca\nLori\nElizabeth\nPaula\nCheryl\nDebbie\nJacqueline\nMelissa\nRobin\nCarla\nTerri\nJanice\nBeverly\nCarol\nKelly\nShirley\nNancy\nVickie\nAnita\nJoyce\nBetty\nJudy\nMarilyn\nTracy\nMargaret\nKim\nCathy\nRegina\nWanda\nShelia\nJennifer\nGloria\nSarah\nDana\nDorothy\nVicki\nTammie\nBecky\nRita\nPhyllis\nSherri\nStephanie\nCharlotte\nMichelle\nMartha\nMelanie\nHelen\nValerie\nDenise\nMelinda\nVirginia\nAnnette\nLeslie\nTerry\nDoris\nGlenda\nTheresa\nJulie\nTamara\nPeggy\nRose\nTonya\nGina\nPenny\nBelinda\nDiane\nJamie\nGwendolyn\nEvelyn\nJackie\nTanya\nVicky\nDiana\nJo\nVanessa\nLaurie\nJulia\nKatherine\nSonya\nAnn\nLoretta\nPam\nMarsha\nShelly\nSuzanne\nCatherine\nMonica\nToni\nDarla\nDeanna\nJane\nDarlene\nMelody\nStacy\nAlice\nAmy\nAndrea\nCarrie\nSandy\nChristine\nBeth\nFelicia\nJudith\nKathleen\nMichele\nTerrie\nVivian\nGeorgia\nJoy\nNorma\nRuby\nBobbie\nBonnie\nMaria\nRenee\nSara\nSylvia\nAnnie\nRuth\nStacey\nAnna\nEllen\nLee\nLesa\nRamona\nShannon\nJill\nLeah\nLora\nAudrey\nChristy\nFelecia\nGinger\nKathryn\nTami\nAngelia\nDianna\nDianne\nFrances\nJeanette\nJuanita\nKarla\nSherrie\nVeronica\nMarcia\nPatty\nCassandra\nHolly\nKelley\nKelli\nLadonna\nMargie\nNatalie\nPatsy\nSheri\nDawn\nEva\nMarla\nSusie\nVera\nWendy\nCrystal\nLana\nLynn\nPatti\nThelma\nAlicia\nAngie\nGail\nJana\nMildred\nMona\nRosie\nShelley\nYvonne\nDebora\nEdna\nGayla\nNina\nPriscilla\nRonda\nWillie\nWilma\nApril\nDena\nJanie\nKay\nKimberley\nRobbie\nSheryl\nTeri\nTracey\nClara\nDee\nElla\nJacquelyn\nLois\nSondra\nSonja\nVictoria\nAlisa\nBillie\nCarmen\nEmma\nJan\nJean\nJeannie\nKatrina\nKristi\nLorrie\nMyra\nRoberta\nShari\nAllison\nAmanda\nAnne\nBertha\nCharlene\nDelois\nDelores\nFrankie\nFreda\nJerri\nJoann\nLea\nLeigh\nLesia\nLillie\nLucille\nLynda\nElaine\nFlora\nJenny\nJohnna\nLydia\nYolanda\nBeatrice\nCaroline\nCheri\nChristina\nConstance\nDaphne\nDeana\nEthel\nGena\nGrace\nJacquline\nJoanna\nKara\nKellie\nKerri\nLola\nLorie\nMae\nMarian\nMarie\nMinnie\nTonia\nAlma\nBridget\nDanita\nEdith\nJeanne\nKayla\nLaverne\nLynne\nMattie\nMitzi\nNita\nSally\nSue\nTamela\nTeressa\nTraci\nAmelia\nBenita\nBridgette\nCarole\nChristie\nCora\nFrancis\nGay\nGayle\nJanette\nJanis\nJessie\nKatie\nLenora\nPaige\nPaulette\nReba\nRenita\nRobyn\nRosemary\nRuthie\nScarlett\nSonia\nTena\nAngel\nAvis\nBessie\nBetsy\nBonita\nCandy\nCara\nDella\nDeloise\nDiann\nDina\nEarnestine\nErma\nFlorence\nJoan\nJohnnie\nJoni\nJune\nLeona\nLorraine\nLou\nLynette\nMarion\nMaxine\nNanette\nPatrice\nRena\nRochelle\nSabrina\nSharron\nShelby\nStacie\nStella\nTracie\nVelma\nVickey\nAva\nBernice\nBobbi\nBrinda\nCandi\nCecilia\nClaudia\nDebby\nDorthy\nEloise\nEunice\nGeraldine\nGracie\nIda\nJames\nJeannette\nJerrie\nJosephine\nKerry\nLena\nLetha\nLillian\nLorri\nLouise\nLucinda\nLucy\nMelisa\nNettie\nRachel\nRosetta\nShana\nShawn\nShawna\nValarie\nValeria\nAlana\nAlesia\nAmber\nAnnetta\nBeverley\nBridgett\nCherry\nChristi\nDenice\nEdwina\nEssie\nFannie\nGlynis\nGretchen\nJessica\nKaron\nLavern\nLolita\nLoria\nMalinda\nMarjorie\nMelva\nNaomi\nNellie\nPamala\nPattie\nPolly\nRetha\nSuzy\nTara\nTommie\nTresa\nVerna\nViolet\nZina\nAddie\nAntoinette\nCecelia\nCeleste\nCherie\nDeloris\nDona\nDora\nEarlene\nEster\nGigi\nGladys\nGlory\nHeather\nHope\nJanelle\nJayme\nJewell\nJimmie\nJoanne\nKristy\nLawanda\nLeann\nLeisa\nLela\nLilly\nLiz\nLula\nMamie\nMarcella\nMarcy\nMarlene\nMarty\nMillie\nNola\nNona\nPearlie\nRosalind\nRoxanne\nSuzan\nTamera\nTammi\nTamra\nTamyra\nTeresia\nTrena\nTrina\nVelvet\nViola\nWonda\nLisa\nMary\nDonna\nKaren\nTammy\nKimberly\nLinda\nPatricia\nPamela\nAngela\nTeresa\nSandra\nCynthia\nBrenda\nSusan\nSharon\nTina\nCarolyn\nSherry\nSheila\nBarbara\nDeborah\nRhonda\nDebra\nConnie\nRobin\nRebecca\nKathy\nLaura\nCarol\nPaula\nMelissa\nElizabeth\nDebbie\nJacqueline\nJanet\nCheryl\nCarla\nCindy\nDana\nLori\nKelly\nStephanie\nVickie\nKim\nTerri\nJanice\nBetty\nShirley\nTracy\nAnita\nNancy\nBeverly\nJulie\nRegina\nJoyce\nShelia\nWanda\nJennifer\nMichelle\nMarilyn\nJudy\nMartha\nMelanie\nLeslie\nTheresa\nCharlotte\nSarah\nMelinda\nPhyllis\nRita\nTonya\nDiana\nGlenda\nSherri\nDorothy\nPenny\nPeggy\nDiane\nLoretta\nMargaret\nTerry\nAnnette\nGloria\nMonica\nBecky\nValerie\nBelinda\nJamie\nRose\nVicki\nAmy\nDenise\nDoris\nJackie\nAlice\nDeanna\nCathy\nKatherine\nVirginia\nGina\nChristine\nPatty\nStacy\nTanya\nJo\nHelen\nFelicia\nGwendolyn\nTammie\nShelly\nPam\nShannon\nWendy\nJill\nRuth\nMichele\nVanessa\nAnna\nDarlene\nMarsha\nTracey\nDarla\nRenee\nVicky\nBeth\nJulia\nLeigh\nTamara\nAmanda\nBonnie\nCatherine\nLaurie\nSonya\nRuby\nYvonne\nAndrea\nAngelia\nDawn\nLadonna\nLesa\nLora\nRonda\nAngie\nCarrie\nEvelyn\nKathryn\nSandy\nVeronica\nAlicia\nApril\nHolly\nJoy\nJudith\nKarla\nLana\nLois\nRamona\nBobbie\nKelli\nToni\nVivian\nAudrey\nGinger\nLeah\nLynn\nRosie\nSue\nSuzanne\nFrances\nGeorgia\nJana\nLee\nNorma\nPatti\nSheri\nStacey\nBillie\nDianna\nEllen\nJeanette\nKathleen\nSara\nShelley\nWillie\nAnn\nEmma\nKatrina\nMelody\nSonja\nSylvia\nYolanda\nCassandra\nJuanita\nMargie\nShari\nGayla\nJacquelyn\nJane\nJanie\nKelley\nMaria\nMarie\nPatsy\nRachel\nChristina\nDena\nGail\nJeannie\nKristi\nLynda\nRobbie\nSusie\nTraci\nAlisa\nAnnie\nCharlene\nCora\nDelores\nJerri\nKellie\nKimberley\nValarie\nCarmen\nConstance\nElaine\nJoann\nNatalie\nPolly\nPriscilla\nTrina\nVerna\nAllison\nAnne\nCaroline\nClara\nCrystal\nEdna\nErma\nJean\nKay\nLillie\nRoberta\nTeri\nVera\nEugenia\nEva\nLorrie\nSally\nShawn\nSherrie\nSheryl\nTracie\nChristy\nDaphne\nDianne\nFelecia\nHope\nJoan\nJoe\nLena\nLillian\nMarcia\nMarla\nMildred\nNora\nRosa\nRuthie\nTara\nVonda\nZina\nDanita\nEdith\nEthel\nGena\nJessie\nJohnnie\nKerry\nLea\nLenora\nLorri\nLouise\nMattie\nMona\nMyra\nNita\nPaulette\nRochelle\nRosemary\nSondra\nTamera\nTami\nThelma\nValeria\nVelma\nWilma\nAlison\nAlma\nBenita\nBridget\nChris\nElla\nFonda\nGeraldine\nJan\nLorene\nMonique\nRenita\nRobbin\nRobyn\nStacie\nYvette\nBeatrice\nBonita\nBridgette\nCecilia\nDeana\nDebora\nDiann\nDora\nFrankie\nGrace\nIda\nJacquline\nJenny\nJerry\nLeanne\nLydia\nMitzi\nPatrica\nRosetta\nTammi\nTerrie\nBernice\nBertha\nBobby\nCherry\nChristi\nDelois\nDeloris\nErin\nEsther\nEunice\nFlora\nFrancis\nFreda\nGeneva\nGladys\nJimmie\nLucinda\nMae\nMarjorie\nNina\nPauline\nRosalind\nShawna\nTonia\nTonja\nViola\nAlberta\nAmelia\nAva\nBetsy\nCandace\nCherie\nDeann\nDee\nDella\nDenita\nFaith\nGayle\nIrene\nIris\nJeanie\nJena\nJessica\nJohnna\nJosephine\nKristy\nLesia\nLibby\nLola\nLorie\nLynette\nMaggie\nMarian\nMelissia\nRebekah\nSharron\nTricia\nAvis\nCandy\nCara\nCecelia\nChandra\nColleen\nDedra\nDenice\nDina\nDjuana\nDonita\nEileen\nElisa\nEtta\nGale\nHattie\nHazel\nJames\nJanna\nJannie\nJune\nKellye\nKristen\nLeann\nLeisa\nLiz\nLorraine\nLucy\nMalinda\nMarcy\nMarion\nMarty\nMavis\nMollie\nRachelle\nReba\nShirl\nSonia\nStella\nTamela\nTeressa\nTommie\nTrudy\nTwila\nVictoria\nAbbie\nAlecia\nAlesia\nAletha\nAmber\nAnnetta\nArlene\nAshley\nBrinda\nCarole\nCharlette\nChrista\nChristie\nClaudia\nDarline\nDeanne\nDebrah\nDelinda\nDetra\nDolores\nDorthy\nElsie\nEmily\nEster\nFaye\nFreddie\nGlynis\nGracie\nGwen\nHeather\nIrma\nJerrie\nJoni\nKara\nKathey\nKatie\nLauren\nLaverne\nLavoris\nLetitia\nLila\nLucretia\nLynne\nMandy\nMaxine\nMelisa\nMinnie\nNadine\nPamala\nPansy\nPat\nPearl\nPearlie\nPenni\nRenae\nRenata\nRoslyn\nTamra\nTena\nTrena\nTresa\nTressa\nTwana\nTwyla\nValorie\nVelda\nVirgie\nLisa\nKaren\nMary\nTammy\nAngela\nDonna\nKimberly\nCynthia\nPatricia\nLinda\nTeresa\nRhonda\nBrenda\nSandra\nPamela\nSharon\nTina\nMelissa\nBarbara\nSheila\nSusan\nRebecca\nDeborah\nDebra\nSherry\nLaura\nKelly\nPaula\nCarolyn\nCarla\nConnie\nElizabeth\nRobin\nStephanie\nTracy\nJennifer\nDebbie\nDana\nCarol\nCheryl\nCindy\nJacqueline\nJanet\nJanice\nTerri\nNancy\nKathy\nJulie\nRegina\nLori\nMichelle\nJoyce\nBetty\nKim\nVickie\nShelia\nSherri\nMelinda\nBeverly\nJudy\nCharlotte\nShirley\nAnita\nAmy\nTheresa\nMarilyn\nValerie\nMargaret\nCathy\nTonya\nWanda\nDenise\nPhyllis\nLeslie\nStacy\nBecky\nDorothy\nAnnette\nGlenda\nGloria\nRita\nPenny\nVicki\nAlice\nJamie\nTerry\nFelicia\nPeggy\nJackie\nRose\nRuby\nLoretta\nMelanie\nShelly\nDawn\nDiana\nStacey\nHelen\nMartha\nSarah\nAndrea\nDoris\nRuth\nAngelia\nBelinda\nAnna\nDiane\nShannon\nVirginia\nCatherine\nKathryn\nDarla\nDeanna\nGina\nGwendolyn\nJulia\nKatherine\nMarsha\nMonica\nWendy\nBonnie\nToni\nAngie\nNorma\nPatty\nBobbie\nGinger\nKarla\nTanya\nJill\nSamantha\nTamara\nTammie\nFrances\nJo\nMichele\nVonda\nYvonne\nDarlene\nEvelyn\nRenee\nSylvia\nYolanda\nAlicia\nAllison\nChristina\nHolly\nLesa\nMelody\nRonda\nSonya\nGayla\nAnn\nApril\nDianna\nGeorgia\nLee\nPam\nSuzanne\nVicky\nLadonna\nLora\nMarcia\nRamona\nRosie\nTracey\nAnnie\nGail\nJuanita\nLaurie\nMaria\nVivian\nAmanda\nChristine\nEllen\nJana\nJeanette\nJoan\nKathleen\nKimberley\nPatsy\nRachel\nSonja\nTracie\nBeth\nCarrie\nJoy\nLana\nLeah\nLois\nLynn\nMildred\nMyra\nNina\nPatti\nSheryl\nTraci\nVanessa\nVeronica\nVictoria\nCassandra\nDeana\nEdith\nKristi\nSandy\nShelley\nBillie\nChristy\nDianne\nJerri\nKay\nMarie\nBertha\nCrystal\nDeloris\nEmma\nFelecia\nJane\nKellie\nMona\nRoberta\nSheri\nWillie\nCharlene\nDebora\nDena\nEdna\nElaine\nEmily\nFrankie\nKatrina\nKelley\nNatalie\nRena\nRobyn\nSally\nTerrie\nAnne\nAudrey\nCara\nCaroline\nClara\nIda\nJudith\nKelli\nLeigh\nMinnie\nShari\nShawn\nWilma\nBenita\nCandy\nCarmen\nDelores\nJacquelyn\nJohnnie\nLesia\nLynda\nMargie\nRobbie\nSara\nSherrie\nTeri\nYvette\nAlma\nBridget\nDiann\nElla\nJean\nLorrie\nMarla\nRosemary\nSondra\nSue\nTami\nChandra\nCheri\nEthel\nEva\nGladys\nHazel\nHope\nJeannie\nJessica\nJoann\nLillie\nLola\nLorie\nLucinda\nMalinda\nPolly\nSharron\nTamera\nTena\nValarie\nVera\nBobbi\nConstance\nCora\nDora\nEarnestine\nFreda\nJacquline\nJanie\nJoanna\nLea\nLillian\nLorna\nNellie\nPaige\nPriscilla\nRosetta\nRoslyn\nTamra\nTeressa\nThelma\nVelma\nVerna\nAlisa\nAngel\nBeatrice\nBonita\nCarole\nDelois\nGayle\nJeanne\nJenifer\nJeri\nJessie\nJody\nKecia\nKerri\nKristie\nLatonya\nLauri\nLynette\nMae\nMarion\nMattie\nMitzi\nMolly\nMonique\nRenita\nRosa\nRuthie\nShawna\nStella\nTara\nTricia\nTrina\nAmelia\nArlene\nBetsy\nCandace\nCecilia\nChris\nChristie\nClaudia\nDeena\nDenice\nEdie\nFlorence\nGay\nGena\nGeraldine\nGretchen\nJeanna\nJennie\nJune\nKara\nKatie\nKristin\nKristy\nLatricia\nLaverne\nLorene\nLorraine\nMarnie\nMaxine\nPamala\nPatrica\nPatrice\nReba\nRobbin\nSonia\nStaci\nSusie\nTamela\nValeria\nVickey\nWhitney\nAddie\nAlesia\nAletha\nAlison\nAllyson\nAshley\nCassie\nCherie\nCherry\nClarissa\nDaphne\nDedra\nDee\nDelinda\nDella\nDina\nEleanor\nErma\nGeneva\nGeorge\nGreta\nHeidi\nInez\nIrene\nJacquelin\nJanna\nJeanie\nJenny\nKandy\nKayla\nKristen\nKristina\nLasonya\nLauren\nLavonda\nLeisa\nLenora\nLibby\nLilly\nLorri\nLou\nLouise\nLucy\nLynne\nMalissa\nMandy\nMelisa\nMerry\nMia\nNaomi\nNora\nPattie\nPaulette\nPauline\nPearl\nRosalind\nSabrina\nSaundra\nShelli\nSophia\nStacie\nSuzette\nTammi\nTommie\nTonda\nTrudy\nValorie\nWinnie\nZina\nLisa\nAngela\nKimberly\nMary\nTammy\nKaren\nTina\nPamela\nDonna\nCynthia\nMelissa\nTeresa\nPatricia\nRhonda\nSandra\nBrenda\nLinda\nSharon\nSusan\nTracy\nSheila\nSherry\nDeborah\nRebecca\nBarbara\nJennifer\nStephanie\nPaula\nLaura\nDebra\nMichelle\nElizabeth\nCarolyn\nCheryl\nCarla\nJulie\nRobin\nDana\nLori\nJacqueline\nKelly\nRegina\nTerri\nKathy\nConnie\nCindy\nLeslie\nCarol\nJanice\nNancy\nShelia\nJanet\nMelinda\nKim\nShirley\nTonya\nStacy\nBeverly\nGina\nJudy\nSarah\nAndrea\nCathy\nJamie\nJoyce\nAnita\nDawn\nDebbie\nFelicia\nVickie\nBetty\nShannon\nCharlotte\nSherri\nAmy\nMartha\nVicki\nMargaret\nSonya\nGlenda\nPhyllis\nStacey\nTheresa\nDeanna\nDenise\nMarilyn\nValerie\nMichele\nTammie\nTerry\nDorothy\nGloria\nPeggy\nRita\nAngelia\nGwendolyn\nMelanie\nWanda\nWendy\nCatherine\nLoretta\nShelly\nTamara\nAmanda\nDiana\nDoris\nTanya\nToni\nBecky\nEvelyn\nHolly\nJackie\nRonda\nTracey\nAudrey\nPenny\nAnna\nKatherine\nSandy\nShelley\nVirginia\nAlice\nAnn\nHelen\nVivian\nDiane\nSamantha\nAnnette\nBelinda\nJuanita\nMonica\nVeronica\nAngie\nCassandra\nGinger\nKarla\nLaurie\nMaria\nRuby\nTracie\nBonnie\nDarlene\nJo\nJulia\nKristi\nLesa\nMelody\nRose\nRuth\nDianna\nJill\nMarsha\nRamona\nRenee\nSonja\nYolanda\nChristy\nEllen\nJana\nSheri\nTraci\nChristina\nChristine\nLora\nVanessa\nAlicia\nApril\nKellie\nKimberley\nLeah\nMona\nSara\nBeth\nBobbie\nCarrie\nJerri\nKathleen\nKelli\nLadonna\nMarla\nSuzanne\nAudra\nCarmen\nDarla\nEdna\nLana\nSherrie\nVonda\nJoy\nJudith\nKathryn\nLynn\nNatalie\nPatsy\nFrances\nGeorgia\nKelley\nPatty\nEva\nGena\nHope\nJessica\nLee\nLynda\nRoberta\nSheryl\nSylvia\nYvonne\nAlisa\nBridget\nCharlene\nCrystal\nJeanette\nJoan\nMarcia\nMisty\nNorma\nRachel\nShana\nShari\nVictoria\nDeana\nElaine\nEmma\nJane\nJean\nKay\nPaulette\nRobyn\nShawn\nSonia\nYvette\nConstance\nGayla\nJanie\nKatrina\nKristie\nMyra\nPam\nRosie\nSusie\nAllison\nBertha\nBillie\nCara\nDena\nEdith\nGail\nJacquelyn\nJoanna\nLeigh\nLetha\nLois\nLorie\nLorrie\nRebekah\nShellie\nTara\nVera\nVicky\nAnne\nCherie\nDanna\nElla\nEmily\nErma\nEthel\nJeana\nJeri\nJessie\nJoann\nLeanna\nLucinda\nMargie\nMarie\nMattie\nMitzi\nPriscilla\nRobbie\nTabatha\nTamela\nTena\nThelma\nTiffany\nTrina\nValarie\nBernadette\nBernice\nCaroline\nCecilia\nClaudia\nDebora\nFrankie\nGay\nIda\nJohnnie\nJune\nKerri\nKristy\nLeona\nLola\nNikki\nNita\nNora\nRosemary\nSondra\nStacie\nTeressa\nTerrie\nWillie\nAmelia\nAnnie\nAntoinette\nBenita\nBonita\nCandy\nCharla\nCheri\nChristi\nChristie\nClara\nDanita\nDee\nDina\nDora\nFelecia\nFreda\nJames\nJanette\nJanis\nJeannie\nJoe\nKimberlee\nLea\nLeann\nLesia\nLillian\nLorri\nMae\nRena\nRosa\nRuthie\nSally\nStella\nSue\nTabitha\nTeri\nTonia\nTonja\nCandace\nDaphne\nDara\nDeann\nDella\nDenita\nDianne\nIrene\nJacquline\nJami\nJeanie\nJennie\nJimmie\nJoanne\nKristen\nKristina\nLatonya\nLorraine\nMarcella\nMarian\nMaxine\nMechelle\nMia\nMissy\nNina\nRochelle\nRosalyn\nRosetta\nSaundra\nStaci\nStarla\nStefanie\nTamera\nTamra\nTommie\nTrudy\nValeria\nAda\nAlma\nAngeline\nAshley\nBridgett\nCasandra\nCora\nDaisy\nDayna\nDelois\nDelores\nEffie\nFaith\nFaye\nFelisa\nFlora\nGeneva\nGladys\nHazel\nHeather\nJeanne\nJeannette\nJerrie\nJodi\nJohn\nKara\nKari\nLarhonda\nLavonda\nLawanda\nLena\nLillie\nLou\nLouise\nLucille\nMachelle\nMamie\nMandy\nMarjorie\nMelba\nMildred\nNellie\nNicole\nOra\nPamala\nPatti\nPolly\nRegena\nRenita\nRhoda\nRosalind\nShanna\nShannan\nShauna\nShelli\nSuzette\nTana\nTresa\nValencia\nVelma\nVerna\nLisa\nKimberly\nAngela\nTammy\nMary\nKaren\nMelissa\nPamela\nTina\nDonna\nTeresa\nSharon\nSandra\nPatricia\nRhonda\nCynthia\nMichelle\nBrenda\nSherry\nSusan\nLinda\nStephanie\nBarbara\nRebecca\nTracy\nLaura\nJennifer\nElizabeth\nPaula\nDeborah\nSheila\nDebra\nCarla\nKelly\nTonya\nCarolyn\nCheryl\nNancy\nRegina\nLori\nCarol\nDana\nAmy\nStacy\nCindy\nJanet\nConnie\nJacqueline\nJanice\nMelinda\nBetty\nRobin\nShannon\nAnita\nTerri\nKathy\nKim\nWendy\nJoyce\nVickie\nDenise\nShelia\nGina\nJulie\nLeslie\nDebbie\nTamara\nMartha\nShirley\nStacey\nMelanie\nBeverly\nJudy\nSonya\nDawn\nAndrea\nSarah\nWanda\nTheresa\nSherri\nDorothy\nMargaret\nMichele\nCharlotte\nDiana\nShelly\nChristina\nDeanna\nFelicia\nBecky\nCatherine\nVanessa\nTammie\nVicki\nDiane\nGlenda\nJill\nKathryn\nBelinda\nHolly\nJamie\nJo\nMarilyn\nMarsha\nRita\nKatherine\nMonica\nRonda\nVirginia\nYolanda\nAnnette\nChristine\nLeah\nRose\nVeronica\nAmanda\nAnn\nGloria\nKarla\nKristi\nValerie\nChristy\nRachel\nSheri\nCathy\nJulia\nAnna\nDarla\nMelody\nPeggy\nPenny\nPhyllis\nShelley\nVicky\nVictoria\nAlicia\nBonnie\nCarrie\nJackie\nLana\nLoretta\nAngelia\nApril\nChristie\nToni\nAlice\nAudrey\nCassandra\nHelen\nJerri\nLeigh\nTracey\nGwendolyn\nJana\nLadonna\nSandy\nTanya\nEllen\nGail\nKelli\nLee\nMarla\nSherrie\nDarlene\nKelley\nTrina\nBobbie\nDoris\nFrances\nJeanette\nSonja\nTerry\nAnnie\nJacquelyn\nJeannie\nNorma\nRamona\nRuth\nSabrina\nSondra\nTraci\nCrystal\nHeather\nMaria\nPatti\nRenee\nRobyn\nSara\nShari\nSylvia\nAngie\nBillie\nDeana\nDianna\nEdith\nEvelyn\nGayla\nKimberley\nLora\nSheryl\nSonia\nTracie\nVivian\nKathleen\nLaurie\nMarie\nNina\nSuzanne\nTerrie\nClara\nDelores\nKatrina\nKay\nKellie\nKristy\nMarcia\nPam\nRuby\nSamantha\nShawn\nAudra\nBridget\nDaphne\nDena\nGinger\nJane\nJanie\nJodi\nJoy\nJuanita\nKristin\nKristina\nLea\nLesa\nTonia\nValarie\nBeth\nElaine\nEva\nFelecia\nMargie\nTeri\nAlisa\nAllison\nAmber\nAnne\nCandace\nCandy\nChristi\nDianne\nEmma\nJosephine\nKerri\nLena\nLydia\nLynn\nMisty\nNatalie\nPriscilla\nRobbie\nShanna\nStacie\nSue\nTamera\nYvonne\nAlma\nCarmen\nCaroline\nCheri\nCherie\nJeanne\nJennie\nJoan\nJoann\nJudith\nKendra\nKristen\nLara\nLesia\nLucinda\nPatsy\nPatty\nPolly\nSally\nShawna\nStaci\nTabatha\nTabitha\nThelma\nTiffany\nYvette\nBridgette\nCara\nJanna\nJessie\nJodie\nKristie\nLois\nLolita\nMarcella\nMarion\nMelisa\nMissy\nMona\nRoberta\nRosie\nStefanie\nSusie\nTara\nTena\nTeressa\nTommie\nTonja\nAlberta\nBernice\nBobby\nCharlene\nConstance\nDanna\nDee\nDenice\nDina\nDora\nEmily\nGena\nGeorgia\nGladys\nHope\nIrene\nJanette\nJeri\nJessica\nJohnnie\nKari\nLillie\nLynda\nPaulette\nPenelope\nRochelle\nShonda\nStella\nTami\nTracye\nTresa\nVerna\nWillie\nBobbi\nBonita\nCecilia\nDedra\nDiann\nEdna\nErma\nEthel\nGwen\nHazel\nHeidi\nIda\nJacquline\nJeanie\nJeannette\nJena\nJimmie\nJoanna\nKenneth\nKeri\nKerry\nLatonia\nLauri\nLeann\nLenora\nLola\nMalinda\nMarian\nMildred\nMisti\nNanette\nNikki\nNita\nNora\nPatrica\nRena\nRobbin\nRosalind\nSharron\nTamra\nTrena\nVonda\nAdriane\nAlana\nAmelia\nAretha\nArlene\nBeatrice\nBertha\nBethany\nBridgett\nCarmella\nCarole\nDanita\nDavid\nDelana\nDelois\nDonald\nElisa\nElla\nErin\nGeraldine\nJean\nJerry\nJody\nKara\nKatie\nLaquita\nLorrie\nLynette\nMarjorie\nMarlo\nMerri\nMerry\nMia\nMikki\nMindy\nMitzi\nMolly\nMyra\nPaige\nPamala\nReba\nRuthie\nTamala\nTia\nTrudy\nVera\nLisa\nTammy\nKimberly\nAngela\nMelissa\nMary\nTina\nKaren\nDonna\nTeresa\nMichelle\nPamela\nStephanie\nRhonda\nCynthia\nTracy\nPatricia\nSandra\nJennifer\nKelly\nSharon\nLinda\nLaura\nSherry\nTonya\nSheila\nSusan\nBrenda\nDeborah\nBarbara\nElizabeth\nLori\nPaula\nShannon\nAmy\nCarla\nCarol\nDana\nJulie\nDebra\nRebecca\nStacy\nTerri\nRegina\nCheryl\nJacqueline\nNancy\nCarolyn\nRobin\nSonya\nWendy\nLeslie\nBeverly\nCindy\nMelinda\nTammie\nKim\nKathy\nStacey\nAndrea\nAnita\nCharlotte\nConnie\nJanet\nShirley\nJanice\nMichele\nVickie\nAmanda\nTanya\nDawn\nShelly\nValerie\nWanda\nShelia\nChristy\nDeanna\nJoyce\nMelanie\nBetty\nCassandra\nGina\nPenny\nTamara\nYolanda\nHolly\nSarah\nSherri\nCarrie\nChristina\nDenise\nMonica\nVicki\nVirginia\nJamie\nMargaret\nShelley\nVeronica\nAngelia\nJudy\nApril\nCatherine\nTheresa\nAlice\nVictoria\nKelli\nGlenda\nJackie\nLaurie\nMartha\nRita\nBecky\nDebbie\nAnn\nChristine\nFelicia\nHeather\nLoretta\nMarilyn\nSheri\nAnnette\nDiane\nAnna\nDiana\nKelley\nVanessa\nBelinda\nGwendolyn\nKarla\nRobyn\nToni\nDorothy\nGloria\nHelen\nJulia\nKatherine\nKimberley\nLeah\nLee\nLeigh\nAshley\nBobbie\nJill\nLadonna\nKatrina\nLora\nPeggy\nRonda\nTracey\nGinger\nJuanita\nKathryn\nRachel\nRuth\nAngie\nCrystal\nKellie\nPhyllis\nSandy\nDarla\nMarsha\nSamantha\nTerry\nTraci\nVicky\nBillie\nBonnie\nChristie\nDeana\nJana\nMona\nBeth\nJeannie\nJoy\nKristi\nAmber\nCathy\nChristi\nDoris\nEvelyn\nFrances\nGail\nSara\nSonja\nAlicia\nFelecia\nGayla\nJo\nKathleen\nKristy\nRose\nSheryl\nTerrie\nAretha\nAudra\nDena\nJerri\nJessica\nKristina\nLana\nSherrie\nTracie\nBridget\nEllen\nEva\nLeann\nMaria\nMelody\nNatalie\nSabrina\nSonia\nStacie\nSusie\nTiffany\nTonia\nAlisa\nElaine\nJan\nJodi\nJudith\nKristie\nMarcia\nMarie\nMarla\nPatsy\nRenee\nRoberta\nSondra\nTammi\nTrina\nVivian\nYvonne\nCarmen\nCharlene\nDanielle\nEmma\nJeanette\nJoanna\nKerry\nLesa\nMitzi\nRosie\nSally\nShawn\nTabitha\nAnne\nBetsy\nDaphne\nGena\nJoan\nLara\nLorie\nMyra\nPatty\nStaci\nTami\nValarie\nBernice\nBethany\nCandy\nCheri\nDelores\nDianna\nDina\nEmily\nGeorgia\nJane\nKari\nLatonya\nLillie\nLouise\nLynn\nMichael\nNicole\nNina\nNora\nRebekah\nRobbin\nShawna\nSue\nSuzanne\nAnnie\nCaroline\nCherie\nDee\nDella\nDenice\nDianne\nElla\nErma\nEthel\nHazel\nJacquelyn\nJacquline\nKay\nKerri\nKristen\nLynda\nMissy\nNorma\nPamala\nPaulette\nRachelle\nRamona\nRochelle\nRosemary\nShari\nSylvia\nTeri\nVelma\nVonda\nAlma\nBridgette\nCandace\nChandra\nCharla\nCourtney\nDarlene\nEdna\nErin\nEsther\nFlorence\nGwen\nIris\nJanie\nJeanne\nJimmie\nJoann\nJohnnie\nKara\nKerrie\nKrista\nLucinda\nMalinda\nMisty\nPriscilla\nRenita\nRuby\nRuthie\nShanna\nShelli\nShellie\nThelma\nTommie\nYvette\nAllison\nAudrey\nBertha\nBonita\nCarole\nCasandra\nClaudia\nDanette\nDeena\nDeirdre\nDeloris\nEugenia\nGeneva\nHope\nJames\nJanis\nJanna\nJean\nJoni\nLatonia\nLeanne\nLenora\nLesley\nLetitia\nLois\nLydia\nMargie\nMelisa\nPam\nRena\nRoxanne\nSandi\nSelena\nSharla\nTabatha\nTamatha\nTamela\nTara\nTeressa\nTresa\nVikki\nWendi\nWhitney\nAda\nAngel\nBobbi\nBrandi\nBridgett\nCandice\nCecilia\nCelia\nCharolette\nChris\nConstance\nCristi\nDawna\nDebora\nEdith\nFaye\nGala\nGreta\nHattie\nJayme\nJeannette\nJenny\nJonna\nKatheryn\nKathrine\nKatie\nKayla\nKendra\nKeri\nKristine\nKrystal\nLawanda\nLeona\nLesia\nLillian\nLorrie\nMalisa\nMalissa\nMarci\nMarion\nMarlo\nMattie\nMaxine\nMelonie\nMia\nMiranda\nNanette\nPatti\nRae\nSaundra\nScarlett\nTamiko\nTawana\nTrisha\nVera\nYolonda\nLisa\nAngela\nKimberly\nMelissa\nTammy\nMichelle\nJennifer\nMary\nTina\nKaren\nTeresa\nRhonda\nDonna\nShannon\nLaura\nPamela\nPatricia\nStephanie\nTracy\nAmy\nCynthia\nSharon\nRebecca\nSandra\nBrenda\nSusan\nElizabeth\nTonya\nSherry\nKelly\nLinda\nDeborah\nLori\nDana\nStacy\nSheila\nBarbara\nPaula\nCheryl\nRegina\nRobin\nAmanda\nCarla\nCarol\nDebra\nJulie\nCindy\nCarolyn\nMonica\nKathy\nShelia\nShelly\nWendy\nNancy\nTerri\nLeslie\nSonya\nAndrea\nDawn\nMelinda\nTanya\nMichele\nStacey\nConnie\nCharlotte\nMelanie\nKelli\nChristy\nHeather\nJanet\nTracey\nBeverly\nKristi\nTamara\nTammie\nChristina\nJacqueline\nSarah\nJamie\nGina\nHolly\nShirley\nAnn\nDebbie\nShelley\nYolanda\nAnita\nRachel\nFelicia\nJanice\nMargaret\nCatherine\nPenny\nKim\nToni\nAngelia\nTheresa\nAnna\nCarrie\nJoyce\nKatherine\nWanda\nApril\nCathy\nDeanna\nRita\nVicki\nBecky\nBetty\nChristine\nDenise\nJudy\nLeigh\nCassandra\nLeah\nMartha\nJulia\nMarsha\nPeggy\nAlicia\nCrystal\nJill\nLadonna\nSherri\nVictoria\nDena\nSheri\nVickie\nKellie\nPhyllis\nValerie\nHelen\nJackie\nVanessa\nChristie\nDiana\nKathryn\nLoretta\nSamantha\nTerry\nTracie\nGloria\nJoy\nKristie\nLana\nRonda\nSheryl\nVeronica\nAlice\nAllison\nDeana\nGinger\nGlenda\nKarla\nKristy\nMarilyn\nMisty\nSonja\nTonia\nDorothy\nKristen\nTara\nDiane\nKelley\nNatalie\nNicole\nRobyn\nSandy\nVirginia\nBelinda\nBillie\nJana\nKatrina\nRuby\nSabrina\nStacie\nTabitha\nTraci\nAnnette\nAshley\nAudrey\nBonnie\nCarmen\nGayla\nKimberley\nLaurie\nMelody\nRamona\nRose\nSonia\nTiffany\nAmber\nDoris\nFrances\nShawna\nAngie\nBeth\nEllen\nJacquelyn\nPatty\nRuth\nSara\nTrina\nBobbie\nDianna\nEva\nGwendolyn\nJane\nJessica\nKathleen\nLynn\nMaria\nMarla\nSuzanne\nTricia\nCandy\nJo\nLatonia\nLee\nLorie\nRochelle\nStaci\nVicky\nElaine\nEugenia\nJan\nJanie\nJuanita\nLillian\nMeredith\nPatsy\nShana\nShawn\nShellie\nYvonne\nCharlene\nFelecia\nGeorgia\nJeanette\nJoanna\nKerry\nLois\nLora\nMona\nNina\nSherrie\nVivian\nCandace\nEdith\nEvelyn\nGena\nJeanne\nJody\nKristin\nLesley\nLucinda\nLydia\nMalinda\nNorma\nSondra\nTamera\nTressa\nAdrienne\nAlma\nAudra\nBessie\nBonita\nBrandi\nChris\nChristal\nChristi\nConstance\nDanna\nDina\nEmily\nErica\nHope\nJami\nJenny\nJeri\nJudith\nKristina\nLatonya\nLea\nLillie\nLorrie\nMalissa\nRenee\nRoberta\nRosie\nShanna\nTeri\nYvette\nAlisha\nAngel\nBertha\nChandra\nCherie\nDarla\nDarlene\nEdna\nElla\nGail\nIris\nJames\nJoann\nJohnnie\nJune\nKendra\nKerri\nKerrie\nLenora\nLesa\nMachelle\nMargie\nMarie\nMelisa\nNita\nPamala\nPatti\nShari\nSylvia\nTabatha\nTerrie\nAimee\nAlison\nCamille\nCecilia\nClarissa\nDelana\nDeloris\nErin\nJanna\nJerri\nJodi\nKayla\nKellye\nLawanda\nLeisa\nLesia\nMae\nMarjorie\nRosalind\nSerena\nSusie\nUrsula\nWilma\nYulonda\nAmelia\nAnissa\nAnne\nAnnie\nAntoinette\nAretha\nBethany\nBrandy\nBridgette\nCarey\nCaroline\nCasandra\nCassie\nCheri\nClara\nClaudia\nDanita\nDee\nDella\nGerri\nJacquline\nJeana\nJeanie\nJimmie\nJimmy\nJoan\nJoni\nKara\nKay\nKristine\nLara\nLesli\nLibby\nMandy\nNaomi\nPaige\nPaulette\nRachael\nReba\nRobbie\nRobbin\nShanda\nSharron\nShauna\nShonda\nSue\nTami\nTrena\nValarie\nWhitney\nWillie\nAda\nAlecia\nAlisa\nAndra\nBernice\nBobby\nBuffy\nCandice\nCoretta\nCourtney\nDanette\nDanielle\nDaphne\nDeanne\nDebora\nDelores\nDenna\nDionne\nEmma\nErika\nFrankie\nGeri\nGretchen\nJanelle\nJannie\nJeannette\nJeannie\nJennie\nJodie\nJohn\nKari\nKatharine\nKatie\nKrista\nLarhonda\nLatanya\nLaurel\nLaverne\nLeann\nLeanne\nLynette\nMable\nMarion\nMarty\nMichael\nMindy\nMiranda\nMisti\nMitzi\nMolly\nMyra\nNora\nPam\nRebekah\nRegenia\nRenita\nRuthie\nSally\nSaundra\nShawnna\nShelby\nStephani\nTamatha\nTena\nVickey\nViola\nKimberly\nAngela\nLisa\nMelissa\nTammy\nJennifer\nMary\nShannon\nStephanie\nTina\nCynthia\nMichelle\nTracy\nAmy\nKaren\nTonya\nPamela\nTeresa\nRebecca\nSharon\nLaura\nDonna\nElizabeth\nRhonda\nKelly\nSusan\nCarla\nJulie\nStacy\nSheila\nSandra\nPatricia\nSherry\nLori\nBrenda\nPaula\nDana\nRobin\nDeborah\nLeslie\nRegina\nBarbara\nLinda\nChristy\nStacey\nCindy\nAmanda\nShelly\nKathy\nTanya\nCheryl\nWendy\nKristi\nMelinda\nMonica\nSonya\nDawn\nHeather\nMelanie\nAnita\nSarah\nShelia\nJacqueline\nTerri\nTracey\nHolly\nCarol\nDeanna\nDebra\nAndrea\nBeverly\nConnie\nYolanda\nJamie\nRachel\nVeronica\nCarolyn\nCarrie\nShelley\nTamara\nBetty\nCassandra\nJanet\nChristina\nNancy\nApril\nDebbie\nCatherine\nFelicia\nJoyce\nCharlotte\nTraci\nSherri\nAshley\nKim\nMichele\nVickie\nBecky\nMisty\nTheresa\nAlicia\nDenise\nMargaret\nGwendolyn\nJanice\nNicole\nChristine\nCrystal\nGina\nLeigh\nMarsha\nKelli\nMartha\nTara\nChristi\nChristie\nJackie\nKatherine\nTammie\nVirginia\nMarla\nSabrina\nValerie\nWanda\nDiana\nJill\nSuzanne\nAlice\nAngelia\nKarla\nAnna\nJo\nTracie\nAllison\nBonnie\nGinger\nLeah\nRita\nToni\nVicki\nCathy\nGlenda\nKristie\nPenny\nShanna\nVictoria\nAngie\nAnn\nDarla\nGloria\nJoy\nJulia\nKathryn\nKristy\nRose\nSara\nSonja\nHelen\nKatrina\nKimberley\nKristen\nLana\nBobbie\nDorothy\nJudy\nTrina\nAudra\nBelinda\nBeth\nDena\nDiane\nDoris\nRobyn\nSheri\nShirley\nTiffany\nTonia\nAmber\nFrances\nJuanita\nKelley\nLadonna\nMeredith\nShawna\nVanessa\nAnnette\nJeannie\nMaria\nMarilyn\nMelody\nPeggy\nSonia\nAngel\nCarmen\nLatonya\nStacie\nTeri\nCandy\nErica\nKristin\nKristina\nRonda\nSamantha\nEllen\nJessica\nLara\nLora\nLoretta\nChandra\nDarlene\nEmily\nKrista\nNatalie\nRenee\nAnne\nBillie\nBridget\nJana\nJoanna\nKathleen\nKellie\nKendra\nKerri\nMarie\nPatty\nShana\nShauna\nShawn\nShonda\nStaci\nTerry\nAudrey\nCandace\nDee\nDianna\nDora\nJeanette\nJenny\nJodi\nMelisa\nPhyllis\nSherrie\nYvonne\nCharity\nDeana\nEvelyn\nJacquelyn\nJenifer\nLorie\nSheryl\nSondra\nTabitha\nTonja\nTricia\nAlisa\nBrandi\nCherie\nGail\nHope\nJanna\nJerri\nMarcy\nNikki\nRamona\nRuby\nSandy\nSusie\nTamera\nCara\nCharlene\nCourtney\nDelana\nEva\nFelecia\nGayla\nJudith\nKara\nKerry\nLaurie\nLeann\nLillie\nLucinda\nLynn\nMona\nRosalind\nShanda\nShiela\nTami\nTerrie\nValarie\nValorie\nBridgett\nCamille\nCasandra\nCheri\nChrista\nEugenia\nGeorgia\nJanie\nJodie\nLatanya\nLatricia\nLea\nLee\nLesia\nLesley\nLillian\nLois\nMonique\nMyra\nNina\nPaige\nPatrice\nRachael\nRobbie\nRuth\nShari\nStefanie\nSylvia\nTeressa\nWhitney\nAnissa\nBrandy\nCarey\nCharla\nDanielle\nDianne\nDina\nJane\nJeanie\nJeanne\nJohnnie\nKay\nKayla\nKeri\nKrystal\nLesa\nMarjorie\nMindy\nNora\nPatsy\nRoberta\nRochelle\nRosie\nSally\nTena\nTisha\nAlison\nAnnie\nAntoinette\nAretha\nBernice\nBobbi\nBrooke\nCaroline\nCassie\nChanda\nClara\nDaphne\nDeena\nDeidra\nEdna\nErma\nHeidi\nJean\nJeana\nJune\nKari\nKarin\nKristine\nLatrice\nLynda\nLynette\nMalissa\nMarcella\nMari\nMarlo\nMattie\nMitzi\nNatasha\nPaulette\nRebekah\nShelli\nTabatha\nTamatha\nTommie\nVicky\nVivian\nWendi\nAngella\nBenita\nBobby\nCatrina\nConstance\nDelores\nDixie\nEdith\nElisa\nEmma\nErika\nErin\nFrankie\nGrace\nIrene\nJimmie\nJoann\nJohnna\nJosephine\nKeisha\nKimberely\nLarhonda\nLatasha\nLatonia\nLatrina\nLavonda\nLena\nLetha\nLetitia\nLucretia\nMae\nMalinda\nMarcia\nMarcie\nMarion\nMavis\nMissy\nNorma\nPamala\nPatrick\nPolly\nRena\nRona\nRoxanne\nShanon\nSharlene\nShellie\nStarla\nStella\nTamela\nTamra\nTori\nTresa\nWilma\nYulonda\nAngela\nKimberly\nJennifer\nMelissa\nLisa\nTammy\nMichelle\nStephanie\nShannon\nAmy\nMary\nTracy\nKaren\nTina\nTonya\nRebecca\nStacy\nPamela\nRhonda\nDonna\nTeresa\nCynthia\nLaura\nSusan\nElizabeth\nLori\nSandra\nDana\nJulie\nAmanda\nSharon\nLinda\nSherry\nKelly\nPatricia\nPaula\nAndrea\nCarla\nDeborah\nWendy\nBarbara\nHeather\nChristy\nSheila\nBrenda\nMelanie\nChristina\nCarrie\nLeslie\nShelly\nMelinda\nApril\nDawn\nKathy\nMonica\nRegina\nDebra\nCarol\nStacey\nCindy\nRobin\nCheryl\nJamie\nHolly\nYolanda\nNancy\nSonya\nSarah\nTerri\nFelicia\nJacqueline\nBeverly\nKristi\nSherri\nCarolyn\nDeanna\nAnita\nDenise\nBelinda\nCrystal\nTiffany\nShelia\nTheresa\nWanda\nRachel\nTraci\nAshley\nCatherine\nJanet\nMisty\nTanya\nCassandra\nMarsha\nTammie\nVeronica\nAlicia\nCharlotte\nJessica\nNicole\nGinger\nKristy\nToni\nAngelia\nChristie\nJill\nKim\nChristine\nLeah\nTracey\nPenny\nTamara\nVickie\nVirginia\nDorothy\nKristie\nMichele\nSamantha\nShirley\nStacie\nBetty\nDebbie\nJanice\nTracie\nGlenda\nTricia\nVanessa\nKatherine\nLadonna\nPeggy\nAnn\nBobbie\nCandy\nChristi\nConnie\nGina\nJoy\nJoyce\nKarla\nLaurie\nMarilyn\nMelody\nValerie\nVictoria\nAnna\nBridget\nErica\nSheri\nSonja\nAllison\nBecky\nJo\nKelli\nLeigh\nMaria\nRita\nSara\nShelley\nTara\nCathy\nKimberley\nMartha\nAmber\nJana\nLatonya\nSuzanne\nTrina\nAngie\nDiana\nJudy\nJulia\nLora\nMargaret\nShawna\nTonia\nBeth\nBrandi\nDianna\nJenny\nKatrina\nKendra\nLee\nLoretta\nRamona\nRobyn\nAudra\nKathryn\nMarla\nRenee\nSabrina\nVicki\nAlice\nJeannie\nKeri\nKerri\nKerry\nShawn\nYvonne\nBonnie\nDanielle\nErika\nJackie\nKelley\nLana\nMarcia\nMeredith\nNatalie\nSandy\nAlisa\nDeana\nRose\nShanna\nStaci\nAngel\nAnnette\nDarla\nErin\nGwendolyn\nHope\nKara\nKristin\nLea\nLesley\nLorie\nSherrie\nCandace\nCandice\nCarmen\nDena\nHelen\nJennie\nKellie\nNatasha\nNikki\nRosie\nAnne\nCharlene\nDaphne\nEvelyn\nFrances\nGayla\nJanie\nJerri\nJoanna\nKrista\nKristen\nMandy\nRonda\nRuth\nTerry\nAudrey\nDoris\nGloria\nJeanie\nJenifer\nJuanita\nKathleen\nPhyllis\nRosalind\nShellie\nShonda\nSonia\nTisha\nAimee\nAlisha\nChandra\nCheri\nHazel\nJoann\nJodie\nJody\nKari\nLorrie\nMarcy\nNina\nRobbie\nSally\nShana\nSondra\nStefanie\nTabitha\nAntoinette\nBillie\nBrandy\nCristy\nDarlene\nDiane\nEllen\nEmily\nFelecia\nJami\nJeanette\nJodi\nJudith\nKristina\nLara\nMelisa\nMiranda\nPaulette\nRachael\nRuby\nSylvia\nTena\nTonja\nVivian\nCara\nCarey\nChrista\nCourtney\nJane\nJean\nJeri\nJohnnie\nLaurel\nLauren\nMarcie\nMarlo\nRochelle\nShari\nSharla\nTammi\nTasha\nTeri\nTerrie\nAnissa\nBridgette\nCristina\nDee\nEugenia\nGail\nGena\nGladys\nJan\nJeana\nLatricia\nLynda\nLynn\nMalinda\nMarci\nMildred\nMitzi\nNorma\nPaige\nPatti\nPatty\nRenita\nSue\nSuzette\nTami\nVicky\nYulonda\nAlissa\nAlma\nAnnie\nBertha\nBetsy\nBrooke\nCandi\nCaroline\nCassie\nCecilia\nCherie\nDora\nEdith\nElisha\nJanna\nKarrie\nKay\nKesha\nLeann\nLucy\nLydia\nMarion\nMichael\nMindy\nMinnie\nMona\nNichole\nNora\nPatrice\nPatsy\nPriscilla\nRoxanne\nSharron\nShauna\nShelby\nSheryl\nTamela\nTawanna\nTresa\nVera\nWendi\nYolonda\nYvette\nAlesha\nBethany\nBilly\nBonita\nCasey\nChristal\nChristopher\nClara\nClarissa\nCristal\nDanita\nDebora\nDeidra\nDeidre\nDenna\nDolly\nElaine\nEva\nGeorgia\nHeidi\nHollie\nJames\nJayme\nJoan\nJohnna\nKayla\nKrystal\nLajuana\nLashonda\nLasonya\nLatanya\nLatina\nLatonia\nLois\nLynette\nMarian\nMarianne\nMarjorie\nMarlene\nMattie\nMelony\nMendy\nMichell\nMissy\nMisti\nMolly\nMonique\nOra\nPamala\nRoberta\nSerena\nTabatha\nTana\nTangela\nThelma\nTomeka\nTrena\nTyra\nVonda\nJennifer\nAngela\nKimberly\nMelissa\nStephanie\nMichelle\nTammy\nLisa\nAmy\nMary\nShannon\nRebecca\nTonya\nTina\nLaura\nCynthia\nTracy\nStacy\nKaren\nChristy\nKelly\nAmanda\nTeresa\nLori\nHeather\nJulie\nPatricia\nRhonda\nPamela\nSusan\nDonna\nElizabeth\nCrystal\nApril\nSandra\nSharon\nSherry\nDana\nCarla\nLeslie\nChristina\nWendy\nLinda\nRobin\nDeborah\nMisty\nPaula\nAndrea\nShelly\nTara\nStacey\nCarrie\nMelanie\nCindy\nNicole\nBrenda\nCheryl\nSheila\nDebra\nKristi\nMonica\nRachel\nTerri\nDenise\nNancy\nRegina\nFelicia\nSarah\nTanya\nJessica\nBarbara\nConnie\nErica\nHolly\nMelinda\nYolanda\nCarolyn\nJamie\nTiffany\nDawn\nKatina\nSonya\nBecky\nKathy\nBeverly\nCarol\nChristie\nDeanna\nJanet\nWanda\nAshley\nShelley\nBrandi\nChristine\nKatrina\nVeronica\nTammie\nBetty\nGina\nMarsha\nTamara\nTheresa\nAlicia\nAngelia\nCassandra\nCharlotte\nJanice\nKathryn\nToni\nAllison\nAnita\nBrandy\nJacqueline\nKristy\nAmber\nLatonya\nLaurie\nTracey\nTraci\nAnna\nBelinda\nGinger\nKatherine\nKristie\nShelia\nSherri\nKelli\nLeah\nLeigh\nMichele\nPenny\nShawna\nCatherine\nCathy\nJenny\nSamantha\nShirley\nTracie\nAngel\nChristi\nJoyce\nValerie\nJill\nJulia\nLadonna\nSuzanne\nDiana\nKristin\nMargaret\nJudy\nKarla\nMartha\nMeredith\nRenee\nSara\nTrina\nVanessa\nAlice\nAngie\nCatina\nDebbie\nKerri\nKim\nKimberley\nLana\nMarcia\nMelody\nNatalie\nShanna\nSheri\nStacie\nVicki\nVickie\nVictoria\nVirginia\nAnnette\nBridget\nCandace\nKathleen\nKellie\nLee\nLora\nNatasha\nNikki\nRuby\nSonja\nTonia\nBobbie\nHelen\nKara\nSherrie\nCarmen\nJana\nLoretta\nPeggy\nRuth\nAnn\nGwendolyn\nJackie\nKerry\nKristina\nRobyn\nRonda\nTami\nAudra\nBillie\nBonnie\nKrista\nKrystal\nNichole\nPriscilla\nSandy\nSylvia\nBeth\nCandice\nDarla\nDeana\nDorothy\nErika\nGlenda\nJenifer\nKari\nKelley\nKristen\nMaria\nMarla\nPatty\nShana\nShawn\nAnne\nChandra\nDiane\nDianna\nHeidi\nHope\nJoanna\nJoy\nKendra\nLea\nRachael\nTabitha\nTerry\nAlisa\nCandy\nCharlene\nChrista\nDena\nJeanette\nJodi\nJody\nLawanda\nShari\nSheryl\nSondra\nSonia\nStefanie\nTeri\nAnnie\nCaroline\nDarlene\nErin\nGayla\nJacquelyn\nJeannie\nJuanita\nKenya\nKeri\nLesley\nMarilyn\nMindy\nRamona\nSabrina\nStaci\nTasha\nVicky\nAimee\nBridgette\nBrooke\nCheri\nChrystal\nConstance\nDanielle\nEllen\nEmily\nEmma\nFelecia\nFrances\nKeisha\nLashonda\nLorie\nLynn\nMandy\nMarcie\nPaige\nSue\nTamera\nTricia\nValarie\nAlisha\nAlison\nCecilia\nCherie\nCristy\nDemetria\nDoris\nIris\nJane\nJeanie\nJessie\nKayla\nLarhonda\nLatricia\nMisti\nMolly\nMonique\nRose\nShonda\nTamika\nTammi\nTommie\nTonja\nWillie\nBobbi\nChris\nDaphne\nEva\nGloria\nJerri\nJoan\nJohnna\nJudith\nLashawn\nLatonia\nLeann\nLena\nMalinda\nMarie\nMelisa\nNiki\nNina\nRebekah\nRochelle\nShandra\nShauna\nShelli\nTabatha\nTamatha\nTera\nTresa\nYolonda\nYvonne\nAmelia\nAngelique\nCandi\nCara\nCasey\nCassie\nChanda\nCharity\nClaudia\nCora\nDee\nDianne\nEricka\nEvelyn\nGrace\nIrene\nJami\nJanis\nJennie\nJimmie\nJoann\nKarrie\nKasey\nKay\nLacy\nLara\nLashunda\nLatoya\nLois\nLouise\nMarci\nMelissia\nMichael\nMildred\nMitzi\nPatrice\nRegena\nRobbie\nRosie\nSerena\nVivian\nWendi\nWilma\nYvette\nAlma\nAudrey\nBethany\nBrandie\nBridgett\nCarole\nCasandra\nCharles\nClara\nCourtney\nDanna\nDayna\nDonya\nEdna\nGail\nGeorgia\nGretchen\nJean\nJeanna\nJo\nJoanne\nJodie\nKimberlee\nKristal\nLamonica\nLasonya\nLeanne\nLynda\nMarion\nMissy\nNita\nPamala\nPaulette\nPearlie\nPhyllis\nPriscella\nRachelle\nRosetta\nSally\nSharla\nShonna\nStephaine\nSusie\nTamra\nTawana\nTerra\nTerrie\nThelma\nWindy\nJennifer\nAngela\nKimberly\nStephanie\nAmy\nMelissa\nMichelle\nLisa\nRebecca\nTonya\nTammy\nHeather\nMary\nAmanda\nChristy\nTina\nTracy\nShannon\nTeresa\nCynthia\nStacy\nJulie\nMisty\nApril\nLaura\nElizabeth\nKelly\nPamela\nDonna\nSandra\nChristina\nSharon\nKaren\nRhonda\nCrystal\nSusan\nMelanie\nMonica\nPatricia\nAndrea\nLori\nCarla\nHolly\nMelinda\nBrandy\nSarah\nLeslie\nDana\nSherry\nRobin\nWendy\nKristi\nShelly\nStacey\nBarbara\nCarrie\nTerri\nRachel\nTiffany\nAlicia\nCindy\nLinda\nSheila\nSonya\nYolanda\nDeborah\nPaula\nTara\nDawn\nTanya\nValerie\nAshley\nBrandi\nCheryl\nFelicia\nRegina\nNicole\nShelley\nTamara\nJamie\nErica\nJessica\nKristy\nBrenda\nDenise\nAmber\nChristie\nJacqueline\nNancy\nGina\nKatrina\nConnie\nDebra\nChristine\nTammie\nCharlotte\nChristi\nVeronica\nAnita\nBeverly\nCarol\nCassandra\nDeanna\nCarolyn\nKatherine\nSherri\nKathy\nCatherine\nJill\nTheresa\nVanessa\nBecky\nGinger\nJanet\nKathryn\nPenny\nDiana\nKatina\nMichele\nShirley\nWanda\nAlice\nKristie\nLadonna\nShawna\nAnna\nCatina\nJenny\nKristen\nKristin\nLatonya\nSara\nShelia\nBetty\nJoyce\nKristina\nNatasha\nSamantha\nToni\nTracie\nAimee\nAllison\nBelinda\nEmily\nJana\nJanice\nJulia\nMaria\nGwendolyn\nJackie\nKimberley\nMartha\nTraci\nVickie\nVirginia\nBridget\nKarla\nMarla\nMarsha\nStaci\nTonia\nTracey\nVicki\nDebbie\nJoanna\nKeisha\nKenya\nKeri\nLeah\nMargaret\nMeredith\nVictoria\nAngel\nAngelia\nCandace\nJo\nJoy\nKelli\nKrista\nLaurie\nLeigh\nMarilyn\nMelody\nNikki\nRenee\nAnn\nBillie\nBobbie\nCandy\nCara\nCathy\nErin\nMarcia\nMisti\nRonda\nShanna\nSheri\nSuzanne\nCarmen\nCharity\nDanielle\nDeana\nErika\nJanie\nKim\nNatalie\nRobyn\nRose\nSabrina\nTasha\nChandra\nCristy\nDorothy\nHope\nJenifer\nKelley\nKerry\nMindy\nMolly\nTabitha\nAlison\nAudrey\nBethany\nBrooke\nCharlene\nDarla\nJerri\nJudy\nKerri\nLora\nMandy\nShana\nTerry\nTricia\nBeth\nChrista\nDianna\nDoris\nEvelyn\nGena\nGretchen\nHelen\nJanna\nJodie\nSandy\nSonja\nStacie\nSylvia\nTerra\nTisha\nTrina\nAngie\nAnne\nBridgette\nCandice\nGlenda\nGloria\nJacquelyn\nLee\nLoretta\nLorie\nMarcie\nNina\nPeggy\nRuby\nRuth\nShawn\nShonda\nYvonne\nAlisha\nAudra\nCasey\nDena\nDiane\nEthel\nJeannie\nJodi\nKara\nKari\nKathleen\nLatasha\nLatonia\nRachelle\nRamona\nRita\nSally\nValarie\nVicky\nAlisa\nBonnie\nBridgett\nCatrina\nChastity\nChristal\nDanna\nDaphne\nFelisha\nJames\nJeri\nJody\nJudith\nKellie\nKendra\nLakesha\nLana\nLara\nLesley\nMalinda\nMichael\nMistie\nNichole\nPriscilla\nRebekah\nTabatha\nTamika\nTawana\nTera\nTerrie\nWhitney\nAnnette\nCheri\nChiquita\nCourtney\nDemetria\nEdith\nEllen\nGail\nHollie\nJeanette\nJoann\nLashunda\nLawanda\nLea\nMarcella\nMichell\nMiriam\nNaomi\nPaige\nRachael\nRoberta\nRosie\nShanda\nShari\nSheryl\nTami\nWendi\nAlesha\nAmelia\nAnnie\nCasandra\nChasity\nClara\nClaudia\nDanita\nDee\nDixie\nFelecia\nFrances\nHeidi\nIris\nJan\nJeanie\nJeanne\nJuanita\nLashawn\nLatisha\nLatoya\nLatrenda\nLeeann\nLena\nLillian\nLynette\nLynn\nMargie\nMelisa\nMelonie\nMonique\nShala\nShea\nSondra\nTameka\nTamera\nTeri\nTonja\nTresa\nTrisha\nAdrienne\nAlma\nAmi\nAngelique\nAutumn\nBenita\nBertha\nCecilia\nCherie\nConstance\nCorie\nDavid\nDelores\nDina\nEmma\nEugenia\nEva\nGayle\nGwen\nIda\nJada\nJean\nJeanna\nJessie\nJoan\nKarmen\nKarrie\nKayla\nKerrie\nKristal\nKrystal\nLakeisha\nLarissa\nLashonda\nLatosha\nLawanna\nLois\nLou\nMarcy\nMarion\nMattie\nMegan\nMelissia\nMiranda\nNikita\nNora\nPatty\nPhyllis\nPolly\nRobbie\nRochelle\nRosalind\nSelina\nShannan\nShanta\nShawnda\nShellie\nShonna\nSonia\nStephany\nSue\nThelma\nTracee\nTrena\nValeria\nVera\nVivian\nJennifer\nAngela\nKimberly\nAmy\nStephanie\nMelissa\nHeather\nRebecca\nMichelle\nAmanda\nMary\nTonya\nChristy\nLisa\nTammy\nTracy\nShannon\nTina\nTeresa\nApril\nMisty\nLaura\nRhonda\nStacy\nAndrea\nElizabeth\nCynthia\nSarah\nChristina\nJulie\nKelly\nKaren\nSusan\nPatricia\nLori\nWendy\nPamela\nTanya\nShelly\nCrystal\nChristie\nDana\nMelanie\nBrandy\nRobin\nSharon\nCarla\nHolly\nCarrie\nLeslie\nMonica\nRegina\nRachel\nSherry\nDawn\nTiffany\nStacey\nDonna\nTamara\nAmber\nAshley\nLinda\nCindy\nPaula\nSandra\nBarbara\nJamie\nJessica\nTara\nKristi\nNicole\nSheila\nCarolyn\nKristy\nMelinda\nSonya\nVeronica\nBrandi\nYolanda\nDenise\nKristen\nShelley\nLatonya\nKatherine\nAlicia\nCheryl\nDebra\nErica\nNancy\nSara\nTheresa\nBrenda\nEmily\nKristie\nTerri\nCharlotte\nFelicia\nGina\nShelia\nValerie\nDeanna\nJacqueline\nLeah\nAllison\nDeborah\nJeannie\nMarsha\nAnita\nCharity\nChristine\nJill\nJodi\nKara\nKathryn\nKatrina\nLoretta\nNatasha\nBetty\nDiana\nSamantha\nSherri\nAnna\nCassandra\nGinger\nKathy\nMargaret\nMartha\nTraci\nJudy\nBeverly\nBillie\nConnie\nJanice\nKendra\nShirley\nAngelia\nCourtney\nErin\nJanet\nMiranda\nRita\nTracey\nTracie\nVictoria\nBobbie\nBridget\nCarol\nDena\nJenny\nJoy\nKimberley\nMaria\nAngel\nCandice\nDeana\nGwendolyn\nMelody\nRobyn\nShawna\nTabitha\nToni\nCatherine\nLeigh\nRebekah\nSuzanne\nBecky\nChandra\nDarla\nJody\nKelli\nKerri\nKristin\nPenny\nStacie\nWanda\nAlice\nChristi\nKarla\nLatasha\nNatalie\nNikki\nVanessa\nBelinda\nCristy\nDiane\nEllen\nKim\nLaurie\nLorie\nMeredith\nMichele\nNakia\nTammie\nAnn\nBeth\nCara\nChasity\nDorothy\nJoyce\nJulia\nMegan\nShana\nVicki\nVirginia\nCasey\nErika\nKathleen\nKristina\nLadonna\nLawanda\nRose\nTasha\nTonia\nBrooke\nCarmen\nCasandra\nChrystal\nDanielle\nFrances\nJackie\nJana\nJoanna\nKatina\nKellie\nKerry\nKrystal\nLakesha\nLesley\nMandy\nRenee\nTerry\nBonnie\nCandace\nJenifer\nKelley\nRonda\nShawn\nBethany\nChanda\nDebbie\nJacquelyn\nKenya\nKeri\nLakeisha\nLea\nMarcia\nPaige\nPeggy\nShanna\nSonja\nStaci\nSylvia\nTabatha\nTomeka\nAlison\nAngie\nAnnette\nAudrey\nBrandie\nCandy\nDianna\nFelecia\nGlenda\nGloria\nGretchen\nHollie\nLatisha\nLauren\nMarie\nMindy\nMisti\nRuby\nSandy\nSheri\nTami\nTeri\nTerra\nWhitney\nAdrienne\nAlisha\nAnne\nChastity\nEvelyn\nJo\nJodie\nKari\nKarrie\nKristine\nLatonia\nLatoya\nLynda\nMarla\nMelisa\nRena\nSabrina\nSerena\nTameka\nTamika\nTammi\nTrisha\nVickie\nWendi\nAmelia\nBridgette\nCaroline\nCathy\nCatina\nChristal\nFrankie\nHeidi\nHelen\nJeanie\nJeanne\nJennie\nJoann\nKatie\nKayla\nKeisha\nLara\nLashonda\nLatrina\nLee\nLora\nMalinda\nNina\nPatty\nRamona\nRosalind\nRoxanne\nTera\nTerrie\nTosha\nTricia\nAimee\nAudra\nBrande\nBrittany\nCarey\nCatrina\nCharla\nCherie\nClarissa\nDee\nElaine\nJeri\nJohnna\nLois\nLynn\nMaranda\nMendy\nMichael\nMyra\nPriscilla\nRachael\nRobbie\nRochelle\nShalonda\nShellie\nShonda\nSondra\nSonia\nStefanie\nSue\nTamela\nTarsha\nTrina\nAmie\nAngelique\nBilly\nBrandee\nBridgett\nCassie\nCharlene\nChrista\nCrissy\nCristie\nDaphne\nDarlene\nDelores\nFelisha\nGayla\nGeneva\nHope\nJeanette\nJessie\nJudith\nKyla\nLashunda\nLatricia\nLydia\nMaggie\nMichell\nMistie\nNaomi\nRenita\nShelby\nTamala\nTessa\nThelma\nTisha\nTresa\nWindy\nYvette\nAlisa\nAngella\nAnitra\nAnnie\nBenita\nCheri\nChiquita\nCortney\nDanna\nDarcy\nDoris\nEdith\nEmma\nEricka\nEva\nGabrielle\nGail\nGena\nGeorgia\nGreta\nIris\nJean\nJerri\nKami\nKasey\nKendall\nKesha\nKrista\nLana\nLarissa\nLatanya\nLatrica\nLeslee\nLucinda\nLucy\nLynette\nMarcella\nMarcy\nMargie\nMarilyn\nMicah\nMonique\nNatisha\nNichole\nOlivia\nPamala\nPatrice\nPhyllis\nRachelle\nRuth\nSally\nShanda\nShari\nSharla\nSharron\nSheena\nSherrie\nSheryl\nTiffanie\nVivian\nYolonda\nYvonne\nJennifer\nAngela\nAmy\nAmanda\nKimberly\nMelissa\nHeather\nStephanie\nMisty\nMichelle\nRebecca\nMary\nLisa\nCrystal\nTammy\nTonya\nChristy\nShannon\nApril\nChristina\nSarah\nTracy\nElizabeth\nTina\nStacy\nBrandy\nCarrie\nCynthia\nJulie\nSusan\nAmber\nWendy\nLaura\nKelly\nKaren\nAshley\nLori\nMelanie\nAndrea\nTeresa\nLeslie\nMonica\nChristie\nPamela\nDana\nPatricia\nRhonda\nHolly\nJessica\nSharon\nTanya\nYolanda\nBrandi\nRachel\nRobin\nSherry\nJamie\nTiffany\nAlicia\nTara\nShelly\nLinda\nNicole\nMandy\nKristi\nCourtney\nDonna\nRegina\nStacey\nKatrina\nLeah\nPaula\nSonya\nDeborah\nFelicia\nMelinda\nTamara\nBarbara\nErica\nKristy\nEmily\nErin\nSandra\nValerie\nCarla\nCassandra\nCatherine\nDawn\nSara\nSheila\nBrenda\nKristen\nTerri\nKatherine\nKelli\nChristine\nCindy\nJacqueline\nAllison\nBelinda\nKathy\nNancy\nNatasha\nAngie\nCarolyn\nJanet\nJill\nPenny\nSamantha\nAnita\nAnna\nBeverly\nJenny\nLatonya\nTracey\nCarol\nChasity\nDanielle\nKerri\nKristie\nToni\nAngelia\nConnie\nDebra\nGinger\nJackie\nKathryn\nLeigh\nVictoria\nBetty\nDeanna\nMaria\nNatalie\nVeronica\nCharlotte\nCheryl\nGina\nKari\nMarsha\nTamika\nJulia\nKara\nKarla\nMartha\nMichele\nShawna\nStacie\nTheresa\nCara\nDenise\nDorothy\nJoy\nKristin\nMeredith\nRobyn\nShana\nBecky\nBridget\nChristi\nKelley\nMiranda\nShelley\nTasha\nAimee\nCandace\nCasey\nKendra\nKeri\nKerry\nMegan\nMelody\nNikki\nRebekah\nCarmen\nCharity\nKellie\nMindy\nMisti\nTameka\nTracie\nAngel\nBrandie\nDiane\nErika\nGwendolyn\nJudy\nKatina\nLatasha\nLatisha\nMargaret\nSandy\nSummer\nVirginia\nBridgett\nChrystal\nDiana\nHope\nJana\nLatoya\nPeggy\nTamiko\nTawanna\nVanessa\nWanda\nAdrienne\nCandy\nHeidi\nHelen\nJacquelyn\nJoanna\nJuanita\nLadonna\nLashonda\nRachael\nShelia\nShirley\nSuzanne\nTabitha\nTrisha\nAlisha\nAlison\nAudrey\nChastity\nJanice\nKatie\nKenya\nLakeisha\nLakesha\nLana\nNakia\nRenee\nRita\nSabrina\nShawn\nTammie\nTrina\nAnn\nAutumn\nBillie\nBonnie\nBridgette\nBrooke\nGlenda\nGloria\nJodi\nKim\nKimberley\nLauren\nLaurie\nLena\nLoretta\nShanda\nShonda\nTabatha\nTonia\nYvonne\nAlice\nAnnette\nBobbie\nCassie\nCathy\nJeannie\nKayla\nKrista\nKrystal\nLara\nLesley\nNichole\nNorma\nWhitney\nAmie\nAudra\nBeth\nCandice\nDena\nEllen\nGeorgia\nHollie\nJoann\nJody\nJoyce\nLora\nLorie\nMarie\nMarla\nOlivia\nSherri\nStaci\nTeri\nTisha\nTosha\nVicki\nVickie\nWendi\nAnne\nCarey\nCeleste\nChanda\nChandra\nCorey\nCristy\nDemetria\nJenifer\nJerri\nJo\nKerrie\nKristina\nLacy\nLashanda\nLatonia\nLatricia\nLawanda\nLeann\nMandi\nMarcia\nRoberta\nRochelle\nRonda\nShalonda\nSheri\nSherrie\nSondra\nSylvia\nTia\nTomeka\nTraci\nTricia\nValarie\nAlisa\nBethany\nBetsy\nCallie\nCaroline\nCharlene\nCheri\nClara\nClarissa\nDaphne\nDianna\nDusty\nFelisha\nGayla\nGena\nGretchen\nHannah\nJaime\nJanie\nJason\nJennie\nJodie\nJudith\nKeisha\nKimberlee\nLee\nLola\nLorrie\nLuciana\nMaranda\nMarian\nMelisa\nMona\nMonique\nPriscilla\nRena\nRose\nShanna\nSharonda\nShelby\nSonia\nSunny\nTeressa\nTerry\nAlexa\nAndria\nCharla\nDarla\nEbony\nElisabeth\nEva\nFlora\nJeanette\nJessie\nJohn\nKarrie\nLakisha\nLatina\nLatosha\nMalinda\nMarilyn\nMichael\nMistie\nMolly\nRacheal\nSharla\nTamela\nTera\nTracee\nVivian\nAmi\nAudrea\nBrian\nCari\nCatrina\nCecilia\nCherry\nChiquita\nChrista\nChristal\nCora\nDarlene\nDebbie\nEvelyn\nFaith\nHaley\nHolli\nJami\nJanna\nJohnnie\nJolene\nKandi\nKathleen\nKisha\nKristal\nLarhonda\nLashunda\nLatanya\nLatrice\nLatrina\nLeanna\nLela\nLeona\nLesa\nLindsay\nLindsey\nLois\nLucinda\nLydia\nLynn\nMelynda\nNina\nPatty\nRhoda\nRikki\nRolanda\nShameka\nShantell\nShelli\nSonja\nStefanie\nSue\nTammi\nTawana\nThelma\nTori\nToya\nVera\nYolonda\nJennifer\nAmanda\nAmy\nAngela\nMelissa\nKimberly\nHeather\nStephanie\nJamie\nMisty\nRebecca\nLisa\nShannon\nBrandy\nCrystal\nChristina\nApril\nChristy\nSarah\nJessica\nMary\nLaura\nMichelle\nJulie\nTonya\nElizabeth\nAmber\nTammy\nStacy\nTiffany\nCarrie\nTracy\nAndrea\nTina\nWendy\nAshley\nMelanie\nKelly\nRachel\nBrandi\nMonica\nJaime\nLeslie\nSusan\nTeresa\nPamela\nSara\nLori\nDana\nKaren\nTara\nCynthia\nSharon\nHolly\nRhonda\nErin\nPatricia\nKristi\nCarla\nSamantha\nCourtney\nNicole\nRobin\nSherry\nStacey\nErica\nMandy\nChristie\nShelly\nYolanda\nDonna\nSandra\nTanya\nBarbara\nAlicia\nAllison\nKristy\nPaula\nRegina\nEmily\nFelicia\nLinda\nMelinda\nNatalie\nDawn\nJill\nTamara\nValerie\nKatrina\nSonya\nAnna\nDeborah\nLatonya\nKara\nLatasha\nMargaret\nMelody\nNancy\nTheresa\nKendra\nTerri\nKristie\nLatoya\nMiranda\nAngie\nKatherine\nKristina\nBrenda\nDebra\nDenise\nLeah\nSheila\nTamika\nVeronica\nCandice\nCarolyn\nCindy\nDeanna\nGinger\nJanet\nJodi\nKelli\nToni\nBeverly\nSabrina\nAimee\nCheryl\nKerri\nLashonda\nAnita\nCharlotte\nDiana\nKellie\nChristine\nHope\nJacqueline\nJenny\nLesley\nNatasha\nShirley\nVictoria\nVirginia\nCarmen\nDanielle\nKathryn\nKerry\nMeredith\nShana\nSummer\nTracey\nAlisha\nAngel\nBridget\nCarol\nCathy\nCharity\nJana\nJoy\nKrystal\nLeigh\nMichele\nShelley\nVanessa\nAdrienne\nBelinda\nCandace\nChasity\nConnie\nHeidi\nJoanna\nKathy\nKristin\nMindy\nNikki\nShawna\nTennille\nBillie\nBobbie\nChastity\nChrystal\nJeannie\nJerri\nJoyce\nKristen\nTraci\nAlison\nAutumn\nBeth\nBrooke\nCatherine\nChristi\nDorothy\nErika\nFarrah\nMaria\nMarsha\nRebekah\nSonja\nSuzanne\nTabitha\nTameka\nTasha\nTracie\nAnne\nAudra\nBetty\nBridgett\nCassandra\nChandra\nGlenda\nKari\nKelley\nLatisha\nLatosha\nLaurie\nLindsay\nMandi\nOlivia\nPeggy\nPenny\nSherri\nVickie\nAngelia\nBecky\nCandy\nCarissa\nEllen\nGina\nGloria\nJanice\nKenya\nKeri\nLakeshia\nMegan\nRita\nRonda\nStacie\nSylvia\nAnn\nBethany\nCara\nGwendolyn\nJackie\nJami\nLadonna\nLakeisha\nLindsey\nMartha\nRachael\nSandy\nShanna\nSunny\nAmie\nBonnie\nBridgette\nChrista\nDarla\nDebbie\nFaith\nGretchen\nJodie\nKimberley\nKrista\nLora\nMisti\nSally\nShonda\nStefanie\nTamiko\nTerry\nVicki\nAudrey\nBrandie\nCarey\nCari\nDianna\nEbony\nHelen\nJuanita\nKatina\nKim\nLakesha\nLawanda\nLeann\nLola\nMarie\nNakia\nRobyn\nShauna\nShelby\nShelia\nSherrie\nTammie\nTanisha\nTrisha\nWanda\nWendi\nAlice\nCarie\nCasandra\nCeleste\nEvelyn\nFelisha\nJayme\nJenifer\nJo\nJody\nJulia\nKarla\nKathleen\nKatie\nKristal\nLakisha\nLiberty\nMarisa\nMarla\nPriscilla\nRamona\nRose\nShanda\nShawn\nTera\nTerra\nTonia\nValarie\nWhitney\nCaroline\nChanda\nCortney\nDarlene\nFrances\nJason\nMelisa\nMonique\nNichole\nPaige\nRenee\nSonia\nStaci\nTabatha\nTeri\nTori\nTricia\nAmelia\nAndria\nAnnie\nBrittany\nCasey\nCassie\nCharla\nCharlene\nCherie\nChristal\nDanna\nDedra\nDena\nDixie\nDoris\nDusty\nGayla\nGena\nGeorgia\nHollie\nJanie\nJanna\nJeri\nJoanie\nJudy\nKeesha\nLana\nLashanda\nLashunda\nLatanya\nLatonia\nLee\nLena\nLoretta\nMaranda\nMarian\nMolly\nMona\nNaomi\nPatty\nRochelle\nTawanna\nTomeka\nVicky\nVivian\nBobby\nBrittney\nCatrina\nClarice\nClarissa\nColleen\nCorey\nDanita\nDayna\nDeana\nDee\nDeidre\nDiane\nDionne\nEdith\nElaine\nElla\nEmma\nEva\nFelecia\nHannah\nHolli\nIris\nJacquelyn\nJanis\nJanuary\nJeana\nJeanette\nJennie\nJimmie\nJolene\nKarie\nKarrie\nKathrine\nKeisha\nKenisha\nKesha\nLashundra\nLatarsha\nLea\nLibby\nLorie\nLorrie\nLydia\nMakesha\nMalissa\nMicah\nMichael\nMistie\nNikita\nOctavia\nRacheal\nRaquel\nReshonda\nRhiannon\nRosa\nRoshonda\nSerena\nSharonda\nSophia\nSpring\nStella\nSusanne\nTisha\nTrinity\nJennifer\nAmanda\nAngela\nAmy\nKimberly\nHeather\nMelissa\nStephanie\nMisty\nCrystal\nJessica\nJamie\nMary\nBrandy\nKelly\nApril\nLaura\nAndrea\nLisa\nRebecca\nSarah\nAmber\nChristina\nShannon\nElizabeth\nAshley\nCarrie\nChristy\nMichelle\nJulie\nTonya\nStacy\nRachel\nLeslie\nBrandi\nTammy\nMonica\nTiffany\nHolly\nSara\nDana\nTracy\nTara\nErin\nKristy\nLori\nMandy\nTina\nSusan\nSamantha\nMelanie\nPamela\nPatricia\nKaren\nEmily\nTeresa\nAlicia\nCynthia\nNatalie\nRhonda\nErica\nSabrina\nWendy\nKristi\nLatoya\nNicole\nFelicia\nCarla\nMelinda\nKatherine\nNatasha\nRegina\nRobin\nSummer\nAllison\nAnna\nCourtney\nJaime\nLatasha\nTanya\nLinda\nTamara\nValerie\nJill\nPaula\nShawna\nLatonya\nLeah\nShelly\nSharon\nStacey\nKrystal\nDonna\nKristie\nSherry\nYolanda\nChristie\nNancy\nKathryn\nShanna\nAimee\nCatherine\nCharity\nCheryl\nRebekah\nSandra\nTabitha\nCindy\nKendra\nBarbara\nDawn\nKelli\nMelody\nVirginia\nJenny\nKelley\nKizzy\nSonya\nAlisha\nCarolyn\nCharlotte\nJacqueline\nKatrina\nKerri\nLakesha\nBrenda\nDeanna\nErika\nKristina\nMisti\nSheila\nVanessa\nBridget\nBrooke\nDanielle\nDeborah\nDenise\nFarrah\nGina\nLindsey\nMaria\nAnita\nCasey\nChristine\nKara\nKeri\nTamika\nVictoria\nAngelia\nBeverly\nCassandra\nJoy\nKari\nLeigh\nLindsay\nShana\nTerri\nTheresa\nToni\nAudrey\nCara\nChasity\nDebra\nJodi\nKristen\nMiranda\nOlivia\nRobyn\nTraci\nVeronica\nCarol\nConnie\nJulia\nKristin\nLakisha\nLauren\nMartha\nMegan\nMeredith\nSandy\nShelley\nTameka\nTasha\nAngel\nBethany\nCandace\nCarmen\nJackie\nKellie\nKerry\nMarla\nAnn\nBeth\nBonnie\nCristy\nDiana\nGinger\nHannah\nJaclyn\nNikki\nAdrienne\nBrandie\nJoanna\nKathy\nLadonna\nLana\nSharonda\nShelia\nSherri\nBetty\nChristi\nHelen\nJodie\nJudy\nKim\nKizzie\nLatisha\nMarsha\nMichele\nTracie\nTrina\nAmie\nAutumn\nChandra\nChrista\nEbony\nJana\nJanet\nJenifer\nLakeisha\nLaurie\nPenny\nRachael\nRose\nShonda\nSuzanne\nTracey\nWhitney\nAlison\nBelinda\nCandice\nCatrina\nGlenda\nJane\nJocelyn\nKrista\nKristal\nLatosha\nLawanda\nMelisa\nMindy\nRenee\nShayla\nTerra\nAngie\nBobbie\nChrystal\nEvelyn\nGwendolyn\nJami\nJoyce\nKarla\nKenya\nLea\nLesley\nPeggy\nShirley\nStaci\nStacie\nTammie\nTawana\nTera\nTonia\nWanda\nAlice\nAnnette\nAudra\nBrook\nCarey\nElisha\nEmma\nHeidi\nJacquelyn\nJanie\nJeanna\nJo\nJuanita\nKatie\nKayla\nLakeshia\nLashonda\nLee\nMargaret\nRuby\nSally\nSheri\nAmelia\nAnne\nBecky\nBrittany\nChastity\nChristal\nEllen\nEricka\nEva\nFaith\nGretchen\nHollie\nJanice\nJeanie\nJeannie\nJerri\nKatina\nKesha\nLacey\nMarie\nMarisa\nMarissa\nMollie\nRamona\nSherrie\nShonna\nTrisha\nVicki\nAlanna\nBridgett\nBrittney\nCassie\nCathy\nChanda\nCharlene\nDemetria\nFrances\nGeorgia\nJason\nJeanette\nJessie\nJody\nKarrie\nKathleen\nLatrice\nLora\nLoretta\nLydia\nMargie\nMitzi\nMyra\nNakisha\nNichole\nRita\nShauna\nSonja\nStefanie\nSylvia\nTami\nTanika\nTanisha\nTeri\nTisha\nTosha\nVickie\nVicky\nAbby\nAisha\nBillie\nCasandra\nClara\nDanette\nDena\nDiane\nDianna\nDixie\nDorothy\nGena\nJames\nJanna\nJasmine\nJillian\nJohnna\nKarri\nKimberley\nLacie\nLaquita\nLarissa\nLatoshia\nLawanna\nMichael\nPriscilla\nRonda\nSelena\nSerena\nShalon\nShanda\nShandra\nShanika\nSharla\nShawnna\nTabatha\nTamiko\nTia\nTomeka\nTori\nValarie\nYulanda\nAlesha\nAlissa\nAnitra\nBetsy\nCallie\nCandy\nCarissa\nCarri\nCeleste\nCharla\nChristopher\nCorrie\nDavid\nDeana\nDebbie\nDeidre\nDevon\nDoris\nDusty\nFreda\nGenevieve\nGloria\nHaley\nHope\nJada\nJammie\nJayme\nJeremy\nJohnnie\nKami\nKerrie\nLatesha\nLatoria\nLatrina\nLeann\nLeticia\nLetitia\nLorie\nLynda\nLynn\nMandi\nMaranda\nMarilyn\nMarlena\nMelony\nMia\nMonique\nNaomi\nPaige\nPepper\nRena\nRosalyn\nRuth\nSalena\nSalina\nShameka\nShannan\nShawana\nSonia\nSue\nTamra\nTequila\nTerrie\nTiffanie\nVera\nWindy\nYvonne\nJennifer\nAmanda\nAmy\nAngela\nMelissa\nCrystal\nHeather\nSarah\nStephanie\nKimberly\nMisty\nJessica\nApril\nBrandy\nAmber\nJamie\nChristina\nAshley\nLisa\nMary\nKelly\nLaura\nElizabeth\nAndrea\nRebecca\nMichelle\nChristy\nTina\nStacy\nKristy\nShannon\nBrandi\nTonya\nTiffany\nCarrie\nLeslie\nRachel\nTara\nSara\nCynthia\nTracy\nErin\nJulie\nErica\nKaren\nLori\nDana\nWendy\nHolly\nAlicia\nNatalie\nMonica\nMelanie\nEmily\nSamantha\nTammy\nSusan\nPatricia\nCourtney\nMelinda\nNicole\nKristi\nLinda\nTeresa\nRobin\nTabitha\nMandy\nRegina\nStacey\nLeah\nMiranda\nNatasha\nPamela\nCheryl\nMegan\nKatherine\nSharon\nSherry\nYolanda\nJill\nRhonda\nShelly\nTamara\nChristie\nFelicia\nKathryn\nKristina\nLatasha\nCarla\nCasey\nKara\nLatoya\nMelody\nValerie\nVeronica\nAllison\nCandice\nKatrina\nNancy\nSabrina\nAnna\nBethany\nBrooke\nKristen\nSonya\nSummer\nVirginia\nCassandra\nCatherine\nDanielle\nDeanna\nDonna\nJenny\nLindsay\nVanessa\nAngel\nCandace\nKendra\nShawna\nTamika\nJacqueline\nKelli\nShanna\nTanya\nAutumn\nChasity\nDenise\nKristie\nKrystal\nAngelia\nGina\nKellie\nLindsey\nMeredith\nSandra\nTameka\nAlisha\nBarbara\nBobbie\nChristine\nDeborah\nKelley\nMindy\nNikki\nRebekah\nVictoria\nCindy\nDawn\nGinger\nJanet\nLakisha\nTerri\nBrenda\nChrystal\nJoy\nKathy\nKatie\nLatonya\nPaula\nJaime\nJana\nTracey\nAdrienne\nCarol\nCarolyn\nCharity\nJackie\nKerri\nLatisha\nLora\nMaria\nMarsha\nMartha\nPenny\nPriscilla\nSuzanne\nTheresa\nAngie\nCandy\nConnie\nEbony\nJulia\nKarla\nKristin\nMargaret\nRobyn\nShauna\nStaci\nTasha\nToni\nAudrey\nBeth\nBrandie\nBridget\nCharlotte\nLakeisha\nLatosha\nLauren\nShana\nAlison\nAmie\nAnita\nCarmen\nChandra\nChrissy\nDarla\nDebra\nJami\nJoni\nKeri\nKimberley\nLacey\nLeigh\nOlivia\nRenee\nRuby\nSherri\nShirley\nTomeka\nWhitney\nAlice\nAnn\nAudra\nBrittany\nCarey\nCassie\nFaith\nHeidi\nJenifer\nKristal\nLakeshia\nMaranda\nMarie\nRose\nSheila\nTonia\nAnnie\nBecky\nBelinda\nBetty\nBeverly\nBillie\nDiane\nErika\nEvelyn\nJaclyn\nJodie\nKari\nKeisha\nKerry\nLakesha\nLaurie\nLesley\nSally\nStacie\nTammie\nTrisha\nBrittney\nCara\nDevin\nDevon\nDiana\nGretchen\nJoanna\nKenya\nLana\nLee\nMichele\nPeggy\nTerra\nAimee\nDorothy\nEricka\nGwendolyn\nHannah\nHollie\nJanice\nJillian\nKathleen\nLea\nMandi\nMarcia\nMonique\nRachael\nRamona\nRochelle\nShelley\nSondra\nTeri\nTracie\nTricia\nTrina\nBobbi\nBonnie\nBridgette\nCaroline\nChastity\nChrista\nChristal\nChristi\nEllen\nJasmine\nJeanna\nJeannie\nJessie\nJodi\nJoyce\nJudy\nKasey\nKayla\nKesha\nKizzy\nLacy\nLashunda\nLawanda\nLena\nLoretta\nMisti\nMolly\nSharla\nTosha\nAlecia\nCathy\nCortney\nCrissy\nDeana\nDebbie\nDoris\nGlenda\nHaley\nJan\nJayme\nJeana\nJeri\nJuanita\nKatina\nKenisha\nKristine\nLadonna\nMelisa\nMellissa\nPrecious\nRhiannon\nRosalind\nRuth\nSandy\nSerena\nShameka\nShanda\nShelia\nSheri\nStarla\nWanda\nAlisa\nAmelia\nAndra\nAnne\nAnnette\nCallie\nCasandra\nChristopher\nCody\nCorrie\nDena\nDesiree\nDianna\nFarrah\nFelisha\nHayley\nHope\nJanie\nJerri\nKhalilah\nKrista\nKyla\nLara\nLarhonda\nLashonda\nLatrina\nMarla\nMarlena\nMistie\nNatosha\nNichole\nNora\nPolly\nRachelle\nRonda\nRyan\nScarlett\nSelena\nShalanda\nShasta\nShonda\nSylvia\nTisha\nTraci\nAllyson\nAlyssa\nBeatrice\nCamilla\nCandi\nCarmella\nCharlene\nChasidy\nCherie\nChiquita\nCristina\nCristy\nDevan\nDusty\nElisabeth\nElisha\nEva\nFelecia\nFrances\nGayla\nGeneva\nHelen\nHillary\nJacquelyn\nJammie\nJason\nJo\nJoanie\nJohanna\nJohnna\nJudith\nKandi\nKarrie\nKaty\nKim\nLaquita\nLatoshia\nLatrice\nLindy\nLola\nLorie\nMarilyn\nMelodie\nMendy\nMia\nMichael\nMiriam\nMona\nNicki\nRacheal\nRena\nRoslyn\nShanta\nShara\nSharonda\nShemika\nShunda\nSonja\nStephenie\nTameika\nTanisha\nTarsha\nValarie\nVicki\nVickie\nWindy\nYolonda\nAmanda\nJennifer\nMelissa\nAmy\nAngela\nKimberly\nCrystal\nSarah\nAmber\nApril\nStephanie\nJessica\nHeather\nBrandy\nMisty\nAshley\nRebecca\nJamie\nLisa\nElizabeth\nMary\nTiffany\nChristina\nLaura\nMichelle\nRachel\nAndrea\nJulie\nShannon\nBrandi\nChristy\nKelly\nLeslie\nTara\nCarrie\nErica\nMonica\nSamantha\nKristy\nAlicia\nTonya\nStacy\nTeresa\nEmily\nSara\nTina\nWendy\nCynthia\nPatricia\nLori\nHolly\nErin\nDana\nTracy\nKatrina\nTammy\nKatherine\nCourtney\nMelanie\nNatalie\nMindy\nNatasha\nKelli\nNicole\nAllison\nKristen\nMandy\nSusan\nCandice\nKristi\nRobin\nCheryl\nMelinda\nLatasha\nKaren\nMiranda\nPamela\nAnna\nCarla\nLindsey\nValerie\nDonna\nKathryn\nLatoya\nJill\nCandace\nCasey\nCatherine\nTabitha\nTamara\nBethany\nKara\nKendra\nLatonya\nSandra\nAlisha\nFelicia\nJacqueline\nShawna\nMegan\nPaula\nShanna\nDawn\nRhonda\nBarbara\nBrooke\nLinda\nRegina\nCindy\nKristie\nLindsay\nSummer\nVanessa\nYolanda\nCassandra\nLatisha\nSherry\nSonya\nStacey\nTasha\nTerri\nNancy\nWhitney\nAutumn\nChristie\nJana\nKristina\nKrystal\nLeah\nMeredith\nBeverly\nChristine\nLesley\nRebekah\nVeronica\nCharlotte\nDanielle\nJenny\nLauren\nMaria\nNikki\nSabrina\nTanya\nJaclyn\nJoy\nMargaret\nMelody\nTameka\nAngel\nBridget\nDiana\nKerri\nRachael\nSharon\nToni\nAlison\nBrenda\nDenise\nErika\nHannah\nJanet\nJulia\nMartha\nAngelia\nChasity\nEbony\nHeidi\nKari\nLeigh\nShelly\nSherri\nAngie\nAnn\nBeth\nBonnie\nCarol\nCassie\nDeanna\nJaime\nKathy\nKrista\nKristin\nLakesha\nShalonda\nShauna\nSheila\nShelley\nStaci\nAlissa\nCarmen\nCarolyn\nDeborah\nDebra\nKelley\nKenya\nSuzanne\nTrina\nVictoria\nAudrey\nCharity\nEvelyn\nKristal\nLacey\nLakisha\nLatosha\nStacie\nTraci\nBillie\nBobbie\nBrittany\nCara\nConnie\nJackie\nKeri\nLee\nPenny\nTracey\nVirginia\nBecky\nBetty\nBrandie\nCandi\nCristy\nHillary\nJodi\nKathleen\nLakeisha\nMonique\nTamika\nTanisha\nTerra\nTheresa\nTrisha\nAdrian\nAimee\nBrittney\nGina\nGinger\nHaley\nJoni\nKatie\nKatina\nMichele\nPeggy\nRenee\nShana\nSylvia\nTabatha\nTyronda\nAdrienne\nAlice\nAlisa\nAnne\nAnnie\nChrista\nChristi\nChrystal\nDebbie\nHope\nJenifer\nJillian\nJoanna\nJuanita\nKellie\nLaurie\nMaranda\nMarilyn\nPriscilla\nAbby\nAdrianne\nChandra\nFrances\nHollie\nJodie\nKarla\nKasey\nLena\nLora\nMandi\nMarla\nMeghan\nNichole\nRita\nRobyn\nTomeka\nAnnette\nAudra\nBrianna\nBrianne\nCarissa\nDesiree\nEricka\nHelen\nJoyce\nKyla\nKylie\nLadonna\nLakeshia\nLarissa\nLashonda\nMarie\nMisti\nRuth\nShameka\nSharonda\nShavonne\nShelia\nTisha\nTricia\nWinter\nAngelina\nAnita\nBelinda\nCandy\nCatrina\nChristal\nCrissy\nDarla\nDorothy\nElisha\nEllen\nFelisha\nJeri\nJerri\nJocelyn\nJordan\nKim\nLacy\nLashunda\nLoretta\nMarlena\nMolly\nRamona\nRandi\nSeason\nSerena\nShanika\nShasta\nShaunna\nTia\nAmelia\nCasandra\nClara\nClarissa\nColleen\nDena\nDestiny\nDiane\nElisabeth\nEva\nGlenda\nGretchen\nJacquelyn\nJanice\nJody\nJudith\nJudy\nKayla\nLacie\nLara\nLarhonda\nLatonia\nLatrice\nLatricia\nLatrina\nLeann\nMarisa\nMarsha\nMelisa\nMichael\nNakia\nNina\nPaige\nPatrice\nPhyllis\nRoberta\nRonda\nSally\nSandy\nShamika\nShanda\nShannan\nShanta\nShea\nSherita\nShirley\nTiffanie\nTosha\nTwyla\nVivian\nWanda\nAmberly\nAmie\nAntoinette\nAubrey\nBobbi\nCarey\nCaroline\nCecilia\nChrissy\nConstance\nCorrie\nDarlene\nDemetria\nDevin\nDianna\nGeorgia\nGreta\nHolli\nJami\nJane\nJanetta\nJayme\nJeannie\nJessie\nJo\nJoann\nKarrie\nKasi\nKeisha\nKristine\nLakiesha\nLana\nLatanya\nLawanda\nLetitia\nLillian\nLorie\nLydia\nLyndsey\nMarcia\nMarcie\nMeagan\nNatosha\nOlivia\nQiana\nRachelle\nRaven\nRhiannon\nRose\nSandi\nShara\nShari\nShelby\nSheri\nSherrie\nSheryl\nShonda\nShonna\nSommer\nSonja\nSunny\nTami\nTammie\nTamra\nTera\nTonia\nTracie\nTrinity\nValorie\nWendi\nAmanda\nJennifer\nMelissa\nSarah\nKimberly\nCrystal\nAngela\nJessica\nHeather\nAmy\nAmber\nStephanie\nTiffany\nAshley\nApril\nBrandy\nMisty\nMary\nElizabeth\nLaura\nRebecca\nAndrea\nChristina\nRachel\nJamie\nLisa\nMichelle\nSara\nBrandi\nLeslie\nShannon\nCourtney\nKelly\nNicole\nErin\nAlicia\nCarrie\nChristy\nErica\nJulie\nTonya\nStacy\nEmily\nHolly\nKatrina\nNatasha\nSamantha\nSusan\nKristin\nKristy\nMonica\nTina\nCynthia\nWendy\nMiranda\nTara\nTeresa\nKristen\nLori\nKatherine\nLeah\nPamela\nNatalie\nLatasha\nMelinda\nTracy\nKaren\nBrooke\nTamara\nDana\nLauren\nTammy\nAllison\nAnna\nCandace\nPatricia\nMelanie\nTasha\nCandice\nLatoya\nLindsey\nCatherine\nMegan\nKathryn\nRobin\nMindy\nKatie\nKara\nLindsay\nMandy\nStacey\nKristi\nRhonda\nSabrina\nSummer\nTanya\nFelicia\nAlisha\nBethany\nCasey\nShanna\nVeronica\nYolanda\nDawn\nJenny\nJill\nSandra\nCarla\nCindy\nSharon\nTerri\nBarbara\nDanielle\nShelly\nVanessa\nBridget\nKelli\nKendra\nAngel\nCassandra\nCharlotte\nCheryl\nDonna\nKristina\nShawna\nAutumn\nLatisha\nValerie\nCarolyn\nMelody\nNina\nRebekah\nTabitha\nCharity\nChristine\nJoy\nJulia\nMargaret\nNancy\nPaula\nBrittany\nJanet\nKristie\nLinda\nRegina\nVictoria\nChristie\nJacqueline\nJana\nKrystal\nSonya\nToni\nVirginia\nAlison\nHannah\nMeredith\nRachael\nRose\nTabatha\nCara\nCassie\nChasity\nDebra\nGinger\nJodi\nLatonya\nLeigh\nMaria\nMonique\nPriscilla\nRenee\nSherry\nTameka\nWhitney\nCarmen\nKathleen\nLakeisha\nMaranda\nNikki\nShauna\nAlice\nAngelia\nBobbie\nDenise\nJanice\nLakisha\nTerra\nAudrey\nBelinda\nBeth\nBonnie\nCandi\nChrystal\nDeborah\nEbony\nJaime\nSheila\nTheresa\nAimee\nBillie\nBrenda\nKathy\nKeisha\nKeri\nKerri\nLesley\nTrisha\nBecky\nBrandie\nDesiree\nElisha\nErika\nFaith\nJaclyn\nJuanita\nLashonda\nLee\nLora\nRobyn\nBetty\nChristi\nHeidi\nJacquelyn\nJoanna\nJocelyn\nJoni\nKasey\nLacy\nLadonna\nLakesha\nLoretta\nMartha\nMicah\nMisti\nOlivia\nShameka\nShayla\nTori\nAlisa\nAmie\nAngie\nAudra\nBeverly\nBridgett\nCandy\nCarol\nCatrina\nChandra\nCharlene\nDena\nGeorgia\nGina\nGlenda\nGwendolyn\nKari\nKellie\nLacey\nLatosha\nPaige\nShalonda\nShelley\nStefanie\nSuzanne\nTraci\nWanda\nAlexis\nAmelia\nAnne\nBridgette\nBrittney\nCathy\nChrista\nDiana\nDiane\nEricka\nGloria\nHelen\nHollie\nJami\nJenifer\nJerri\nJillian\nJody\nJordan\nKarla\nKrista\nLana\nLashunda\nLawanda\nLea\nMarilyn\nMarsha\nMorgan\nStaci\nStarla\nTamika\nTia\nTosha\nTracey\nTracie\nVicky\nAbigail\nAdrienne\nAlesha\nAlissa\nAnita\nAnn\nAnnette\nAthena\nBobbi\nBrianne\nCamille\nConnie\nDelana\nEllen\nEvelyn\nFrances\nHillary\nJanna\nJayme\nJeannie\nKelley\nKimberley\nKisha\nLyndsey\nPatrice\nRaven\nRosemary\nSherri\nShirley\nTequila\nTisha\nCheri\nCrissy\nDeanna\nDemetria\nDestiny\nDorothy\nHope\nJackie\nJo\nKandi\nKesha\nKimberlee\nLatanya\nLena\nLillian\nLydia\nMarcia\nMarcie\nMeagan\nMichael\nNaomi\nPenny\nRacheal\nRenata\nRosalyn\nSally\nSharonda\nShemika\nStacie\nTamera\nTami\nTammie\nTanisha\nTeri\nWendi\nYvonne\nAllyson\nBritney\nChastity\nCortney\nDarla\nDevon\nDixie\nElisabeth\nFelisha\nGenevieve\nJane\nJanelle\nJeanie\nJennie\nJessie\nJodie\nJoyce\nJudy\nKenya\nKerry\nLashanda\nLatina\nLaurie\nLeann\nLola\nLynette\nLynn\nMaggie\nMandi\nMargie\nMariah\nMarie\nMichele\nMolly\nNichole\nRochelle\nRoxanne\nRuby\nShelia\nTera\nTiffanie\nVicki\nVickie\nAbby\nAngelina\nAnnie\nAnya\nBianca\nBreanna\nBrenna\nBrooklyn\nCaroline\nCassy\nCecilia\nChristal\nChristin\nCorrie\nDeidre\nDianna\nDusty\nEmma\nGretchen\nHaley\nHayley\nIris\nJeanette\nKarrie\nKatharine\nKayla\nKiley\nKim\nKristal\nLamanda\nLaronda\nLucinda\nMalinda\nMarissa\nMarla\nMia\nMollie\nNena\nNikita\nPeggy\nReagan\nRena\nRikki\nRonda\nRosa\nRuth\nSandy\nSasha\nShanetta\nShari\nShavon\nShea\nSheryl\nShonda\nSommer\nStephenie\nSue\nTai\nTarsha\nTiffani\nTonia\nTricia\nTrina\nWilliam\nAmanda\nJennifer\nJessica\nCrystal\nSarah\nAmber\nAshley\nAmy\nKimberly\nMelissa\nTiffany\nAngela\nStephanie\nApril\nHeather\nBrandy\nRebecca\nRachel\nMary\nElizabeth\nJamie\nAndrea\nBrandi\nLaura\nLisa\nMisty\nCourtney\nLeslie\nMichelle\nErin\nChristina\nErica\nSara\nJulie\nShannon\nEmily\nLatoya\nSamantha\nKelly\nCarrie\nTara\nHolly\nLindsey\nNatalie\nNatasha\nAlicia\nKatherine\nChristy\nPatricia\nBrooke\nLauren\nKristin\nCynthia\nKristen\nNicole\nLeah\nDana\nTonya\nPamela\nKatrina\nTina\nCandace\nCandice\nKristy\nLori\nMegan\nMiranda\nStacy\nCasey\nKrystal\nMonica\nRobin\nAnna\nLatasha\nTasha\nSusan\nFelicia\nLindsay\nMandy\nMelanie\nTracy\nAlisha\nBethany\nCassandra\nDanielle\nJulia\nSummer\nTammy\nAllison\nBrittany\nLinda\nRebekah\nSherry\nJenny\nKatie\nRegina\nRhonda\nStacey\nTabitha\nWhitney\nTeresa\nAutumn\nBarbara\nKaren\nKristi\nLacey\nTerri\nVeronica\nMindy\nVanessa\nCheryl\nKathryn\nKristina\nValerie\nMelinda\nTamara\nYolanda\nDonna\nJill\nShawna\nShelly\nWendy\nCassie\nCharity\nKara\nKelli\nVirginia\nAlison\nCatherine\nChristie\nDeanna\nDenise\nKristie\nMeredith\nVictoria\nBrenda\nHannah\nDawn\nEbony\nLatisha\nLeigh\nBecky\nCarla\nChasity\nGinger\nKari\nMelody\nSabrina\nSandra\nStefanie\nTanya\nDeborah\nHaley\nMonique\nBeth\nBobbie\nJacqueline\nKendra\nRachael\nShanna\nErika\nJaime\nJodi\nKathy\nKerri\nLatonya\nMaria\nNancy\nAudrey\nBrandie\nCara\nCarol\nChristine\nDiana\nJana\nJanet\nJenifer\nKeri\nKimberley\nRenee\nAnn\nCarolyn\nChrystal\nLakesha\nMargaret\nMartha\nMorgan\nNichole\nRandi\nSheila\nSonya\nTameka\nAngel\nAngelia\nBridget\nBrittney\nCindy\nConstance\nDebra\nHeidi\nJoanna\nKathleen\nLakisha\nShameka\nSharon\nSheena\nTessa\nToni\nHollie\nJeannie\nJennie\nJessie\nKasey\nLatosha\nLesley\nMisti\nShauna\nWanda\nAdrienne\nAimee\nAmelia\nBeverly\nBillie\nCarmen\nJaclyn\nJo\nLakeisha\nMolly\nPaula\nRobyn\nTrisha\nAbigail\nBonnie\nCaroline\nDorothy\nGina\nJoni\nJoy\nKelley\nNaomi\nNikki\nShelley\nTraci\nAlice\nAmie\nAngie\nAshlee\nAudra\nBetty\nCandi\nCandis\nChristen\nConnie\nCortney\nDemetria\nDevon\nGwendolyn\nHelen\nJordan\nJoyce\nLadonna\nLillian\nLora\nMeagan\nNina\nRaven\nSally\nShana\nShayla\nStaci\nStacie\nTammie\nTera\nTeri\nTracey\nAlesha\nAnita\nAnne\nAnnie\nCandy\nChristi\nCora\nJayme\nKarla\nKeisha\nKerry\nKisha\nLaurie\nLydia\nLyndsey\nMandi\nMarilyn\nMarsha\nPaige\nPenny\nPriscilla\nRochelle\nShamika\nSheri\nShirley\nTabatha\nTamika\nTerra\nTia\nTiffani\nTricia\nBrianna\nBridgett\nBritney\nCallie\nChandra\nCharlotte\nChastity\nChristian\nClara\nEdna\nGlenda\nJacquelyn\nJillian\nJohnna\nKayla\nKellie\nKira\nLacy\nLana\nLashonda\nLatrisha\nMarissa\nMarla\nMeghan\nMica\nMicah\nMichael\nMichele\nPatrice\nSharonda\nShasta\nSylvia\nTheresa\nTonia\nTosha\nTracie\nVickie\nAlexis\nAndria\nBambi\nBelinda\nBianca\nBrook\nCharla\nChristal\nDeidra\nDusty\nElisabeth\nElisha\nEllen\nEricka\nEva\nGabrielle\nGayla\nGeorgia\nGretchen\nJodie\nKandi\nKassandra\nKrista\nLakeshia\nLashundra\nLatara\nLindy\nMaggie\nMarie\nRacheal\nRosalyn\nRuby\nSelena\nSondra\nSuzanne\nTamera\nTamra\nTaylor\nValarie\nAbby\nAlaina\nAlanna\nAlethea\nAlisa\nAmbra\nCarly\nCasandra\nCathy\nCharlene\nChrista\nChristin\nChristopher\nDesiree\nDiane\nEboni\nElaina\nEvelyn\nHillary\nHope\nJane\nJanice\nJanna\nJeanne\nJessi\nJocelyn\nJudy\nKim\nLacie\nLashanda\nLasonya\nLatoria\nLatrice\nLeann\nLorie\nLyndsay\nMaranda\nMarcia\nMarcie\nMelisa\nMelisha\nMollie\nNakesha\nNatosha\nOlivia\nRachelle\nRandee\nRobbie\nRuth\nSasha\nShanda\nShawnda\nSherri\nSophia\nStarla\nSue\nTabetha\nTalisha\nTami\nTanisha\nTiffaney\nWendi\nJennifer\nAmanda\nJessica\nAshley\nSarah\nCrystal\nAmber\nTiffany\nAmy\nMelissa\nKimberly\nStephanie\nApril\nElizabeth\nAngela\nRachel\nRebecca\nBrandy\nHeather\nAndrea\nMary\nJamie\nLindsey\nSara\nLaura\nMisty\nChristina\nCourtney\nLisa\nErica\nEmily\nKristen\nMichelle\nBrandi\nKelly\nSamantha\nTara\nErin\nLeslie\nCarrie\nNicole\nJulie\nNatalie\nAlicia\nLatoya\nLauren\nCandice\nKristin\nShannon\nKrystal\nNatasha\nBrittany\nCassandra\nKayla\nLindsay\nKatherine\nStacy\nHolly\nAnna\nCandace\nPamela\nMegan\nBrooke\nKristy\nTonya\nLatasha\nPatricia\nCasey\nMelanie\nCassie\nDana\nKatrina\nDanielle\nLeah\nChristy\nMiranda\nLacey\nTina\nKaren\nSandra\nCynthia\nKathryn\nSusan\nAllison\nLori\nMonica\nRobin\nTracy\nWhitney\nAlisha\nTasha\nCatherine\nTabitha\nAngel\nBethany\nChristine\nHannah\nKristi\nJill\nRebekah\nStacey\nTamara\nTeresa\nWendy\nCarla\nEbony\nJacqueline\nVanessa\nBobbie\nKara\nKendra\nMandy\nShelly\nBridget\nBrittney\nDonna\nJulia\nKatie\nRenee\nTammy\nValerie\nVictoria\nBarbara\nBrenda\nKelli\nLacy\nLatonya\nMeredith\nRachael\nCindy\nHaley\nJillian\nKari\nSummer\nYolanda\nJenny\nMelinda\nNichole\nRegina\nSherry\nDenise\nMartha\nMindy\nPaula\nVeronica\nAutumn\nKellie\nRhonda\nAnita\nKelley\nMaria\nShawna\nAlexis\nAlison\nAudrey\nCharity\nChasity\nDawn\nDeanna\nDiana\nJana\nJoanna\nLinda\nRandi\nSharon\nSheena\nStefanie\nTerri\nBridgett\nCarolyn\nChristie\nDeborah\nJaclyn\nJodi\nKerri\nNikki\nSonya\nTerra\nVirginia\nAdrienne\nAshlee\nBeverly\nCheryl\nConstance\nDebra\nErika\nFelicia\nKristina\nMonique\nSabrina\nShelley\nTabatha\nToccara\nBetty\nChrystal\nKristal\nKrystle\nTosha\nAbigail\nGinger\nKristie\nLatisha\nLeigh\nMelody\nRaven\nRobyn\nRose\nShauna\nToni\nAmie\nAngie\nCara\nCharlotte\nHelen\nJacquelyn\nJenifer\nLesley\nMichele\nMorgan\nNancy\nBrandie\nCandi\nCaroline\nChelsea\nCortney\nHeidi\nJackie\nJanice\nKarla\nKasey\nKeri\nKira\nLawanda\nRuth\nShana\nShayla\nSherri\nStaci\nTameka\nTanya\nAnne\nBillie\nBonnie\nBritney\nCarol\nChrista\nDebbie\nFaith\nGina\nHollie\nJoni\nJoy\nJuanita\nKate\nKathleen\nKathy\nLadonna\nLakesha\nLyndsey\nMarie\nMolly\nNaomi\nShanna\nStacie\nAimee\nAnn\nBridgette\nCatrina\nChandra\nDena\nDesiree\nDestiny\nElisha\nFrances\nJanelle\nJanie\nJayme\nJessie\nKesha\nKrista\nKyla\nLaquita\nLashonda\nMargaret\nMarissa\nSally\nSheila\nSherrie\nSydney\nSylvia\nTamika\nTanika\nTanisha\nTera\nTheresa\nTia\nTiffani\nTraci\nTracie\nTrisha\nAlaina\nAlice\nAngelia\nAudra\nBeth\nCallie\nCandy\nCarmen\nEllen\nFalon\nFelisha\nHillary\nJade\nJenna\nJodie\nKandice\nKassie\nKaty\nKimberley\nLacie\nLatosha\nLatricia\nLaurie\nLoretta\nMeghan\nNakia\nNina\nOlivia\nPenny\nPriscilla\nRacheal\nRyan\nSandy\nSuzanne\nAbby\nAlyssa\nAmelia\nAnnie\nAshlea\nBecky\nBelinda\nBreanna\nCharlene\nChiquita\nChristi\nChristin\nChristopher\nCora\nDiane\nDominique\nDoris\nElaine\nEsther\nFallon\nGabrielle\nGloria\nHope\nJanet\nJennie\nJimmie\nJordan\nKacey\nKristian\nLakeisha\nLara\nLarissa\nLee\nLouise\nLydia\nMaggie\nMeagan\nMelisa\nMichael\nMiriam\nMisti\nNakisha\nNatosha\nPrincess\nRita\nRoxanne\nShameka\nShasta\nShena\nSheri\nSherita\nShirley\nTamera\nTanesha\nTracey\nAfton\nAlana\nAlesha\nAlexia\nAngelina\nAnnette\nAntoinette\nAshleigh\nBobbi\nBritany\nBrook\nCamille\nCeleste\nChristal\nClaudia\nConnie\nCristy\nDaina\nDeana\nDeidra\nDianna\nElisabeth\nGayla\nGeneva\nGlenda\nGretchen\nHayley\nHolli\nJacklyn\nJane\nJasmine\nJoanie\nJoyce\nJustin\nKacie\nKandace\nKandi\nKeisha\nLakenya\nLaquisha\nLena\nMandi\nMaranda\nMollie\nNakita\nPaige\nPeggy\nRachelle\nRochelle\nRosemary\nSallie\nShalonda\nShelby\nShelia\nShonna\nTerrie\nTerry\nTomeka\nTrina\nWanda\nJennifer\nAmanda\nAshley\nJessica\nAmber\nSarah\nTiffany\nCrystal\nHeather\nAmy\nMelissa\nStephanie\nKimberly\nElizabeth\nRachel\nAngela\nRebecca\nMary\nJamie\nApril\nAndrea\nLindsey\nLaura\nBrandy\nBrandi\nErin\nChristina\nMisty\nAlicia\nMichelle\nHolly\nLauren\nMegan\nNicole\nSara\nEmily\nBrittany\nMarquita\nErica\nSamantha\nLisa\nKelly\nKayla\nCourtney\nCandice\nLeslie\nJulie\nNatalie\nTara\nStacy\nLindsay\nKrystal\nKatherine\nKristen\nKristin\nCarrie\nLatoya\nMiranda\nShannon\nWhitney\nKatie\nLeah\nMonica\nAnna\nDanielle\nAllison\nPamela\nCynthia\nKathryn\nKatrina\nLacey\nSheena\nMelanie\nCassandra\nSusan\nTabitha\nTonya\nKaren\nAlisha\nCatherine\nPatricia\nCasey\nCandace\nTamara\nCassie\nChristy\nStacey\nKristina\nNatasha\nTeresa\nBrooke\nTina\nWendy\nTasha\nHannah\nTracy\nVictoria\nDana\nRobin\nVanessa\nAlexis\nBrittney\nKara\nKendra\nLatasha\nSandra\nShelly\nEbony\nKristy\nJulia\nSummer\nValerie\nVeronica\nCarla\nFelicia\nJacqueline\nJenny\nBethany\nBridget\nDesiree\nKari\nRachael\nShanna\nSharon\nMorgan\nRebekah\nSabrina\nMeredith\nAutumn\nLori\nAshlee\nBarbara\nCara\nDonna\nErika\nJill\nKelli\nKristi\nMandy\nChelsea\nDawn\nDeanna\nDiana\nLinda\nAdrienne\nAnn\nAudra\nAudrey\nBrenda\nChristine\nMargaret\nMeghan\nSherry\nAngel\nBobbie\nBrandie\nCharity\nChasity\nKeri\nLatisha\nMaria\nNikki\nRegina\nChristie\nDeborah\nLatonya\nLesley\nRhonda\nStefanie\nTammy\nTanya\nVirginia\nCindy\nFallon\nJoanna\nMaranda\nMindy\nShawna\nStaci\nGloria\nJodi\nKrista\nPaula\nTrista\nAlison\nBritney\nCaroline\nCheryl\nDenise\nGinger\nHaley\nLacy\nLeigh\nMeagan\nMelinda\nPatrice\nPriscilla\nSonya\nTabatha\nToni\nTosha\nCarmen\nJaclyn\nKerri\nMelody\nNancy\nRaven\nTessa\nAbigail\nBecky\nBridgett\nCandi\nChandra\nChristen\nConstance\nKasey\nKathleen\nKelley\nKristie\nLatoria\nLyndsey\nMartha\nRandi\nRuth\nShameka\nShauna\nShelley\nTameka\nTamika\nTanesha\nTaylor\nTerri\nTracey\nTraci\nBeverly\nCarolyn\nCasandra\nDianna\nHelen\nJasmine\nJillian\nKirby\nKrystle\nLydia\nMonique\nShana\nSuzanne\nTarah\nTerra\nAimee\nCharlotte\nChrista\nConnie\nElisha\nEricka\nHollie\nJami\nJanet\nJenna\nJoy\nKathy\nLatrice\nMarsha\nNina\nRacheal\nRachelle\nShirley\nTheresa\nTiffanie\nTrisha\nYolanda\nAdrianne\nAlana\nAlexandra\nAmie\nAngie\nBelinda\nBeth\nCristy\nDiane\nEva\nJackie\nJana\nJo\nKaci\nKarla\nKellie\nKerry\nKristal\nLakesha\nLakisha\nLashonda\nLaurie\nMallory\nMarie\nMolly\nRobyn\nSally\nSharonda\nShasta\nSherri\nStacie\nValarie\nAbby\nAlexandria\nAlice\nAntoinette\nBetty\nBillie\nBreanna\nBridgette\nCarol\nCortney\nDebra\nDestiny\nGina\nJenifer\nJerri\nJessie\nKacey\nKeisha\nLaci\nLaquita\nLashunda\nLatosha\nMaggie\nMicah\nNichole\nOlivia\nPaige\nRamona\nRoxanne\nSavannah\nSheri\nTera\nTracie\nAdrian\nAlecia\nAmelia\nAshleigh\nBobbi\nBonnie\nCallie\nCarissa\nCarly\nChristal\nChristi\nChristian\nChristin\nChrystal\nDarla\nDarlene\nDeidre\nDorothy\nGabrielle\nGrace\nGretchen\nHope\nJacquelyn\nJade\nJayme\nJody\nJohanna\nJordan\nKacie\nKala\nKandi\nKelsey\nKimberlee\nLacie\nLadonna\nLashanda\nLeann\nLeanne\nLee\nLora\nMarilyn\nMelisa\nPenny\nRita\nRuby\nSasha\nSerena\nShayla\nSondra\nSylvia\nTamra\nTanisha\nTashina\nTawana\nTia\nTierra\nTiffani\nAlisa\nAlyssa\nAmberly\nAndria\nAngelia\nAngelina\nAnita\nAnne\nAubrey\nBriana\nBritni\nCamille\nCandy\nCassey\nCecilia\nChelsey\nCheyenne\nChiquita\nChristopher\nClaire\nCorey\nCristina\nDaisy\nDeidra\nDemetria\nDevin\nDixie\nEcho\nElisabeth\nElla\nEllen\nGlenda\nHeidi\nJaime\nJane\nJanice\nJeanette\nJocelyn\nJodie\nKandice\nKate\nKatharine\nKerrie\nLakendra\nLakeshia\nLara\nLarhonda\nLeanna\nLynette\nLynn\nMandi\nMia\nMichael\nMichele\nNatalia\nPhyllis\nRikki\nRochelle\nSandy\nSelena\nShanta\nSommer\nTabetha\nTammi\nTiara\nJennifer\nAshley\nJessica\nAmanda\nAmber\nSarah\nStephanie\nHeather\nTiffany\nCrystal\nKimberly\nRachel\nAmy\nMelissa\nElizabeth\nApril\nMegan\nMary\nRebecca\nLindsey\nLaura\nBrittany\nAndrea\nBrandy\nJamie\nEmily\nLauren\nAngela\nSamantha\nCourtney\nChristina\nBrandi\nErica\nLatoya\nTara\nMichelle\nMisty\nNicole\nLisa\nSara\nAlicia\nCandice\nHolly\nWhitney\nErin\nKristen\nKrystal\nDanielle\nStacy\nKatherine\nShannon\nKelly\nNatalie\nCandace\nBrooke\nKayla\nAllison\nNatasha\nSheena\nLacey\nCassandra\nLindsay\nCarrie\nJulie\nMonica\nAnna\nVictoria\nLeah\nBrittney\nChristy\nCynthia\nLeslie\nMiranda\nKatie\nKristin\nAlisha\nEbony\nMelanie\nPatricia\nCassie\nKathryn\nTabitha\nChelsea\nTamara\nHannah\nRachael\nSusan\nValerie\nKatrina\nMarquita\nKristy\nPamela\nTina\nTracy\nAlexis\nCasey\nBethany\nTonya\nKara\nKaren\nKendra\nLatasha\nNikki\nSummer\nCatherine\nJacqueline\nKelli\nRebekah\nAutumn\nErika\nJill\nMargaret\nRobin\nSandra\nJoanna\nLori\nMallory\nMeredith\nShana\nTasha\nJenna\nStacey\nCarla\nJulia\nKellie\nKristina\nTeresa\nBridget\nChristine\nDeanna\nJenny\nKristi\nBarbara\nCarol\nDawn\nFelicia\nLacy\nMorgan\nSabrina\nVeronica\nAmelia\nDiana\nKathleen\nMaria\nRandi\nTammy\nWendy\nAudra\nBrenda\nDana\nJana\nKari\nNichole\nAbby\nAudrey\nCharity\nHaley\nKrista\nMeghan\nShanna\nSharon\nStefanie\nToni\nAngel\nAshlee\nCara\nChasity\nCindy\nKeri\nLatisha\nMelinda\nNancy\nRhonda\nVanessa\nAdrienne\nBrandie\nDonna\nJacquelyn\nLinda\nPaula\nRegina\nSavannah\nShawna\nShelly\nAlison\nCallie\nCarolyn\nChristie\nDesiree\nJodi\nJodie\nJordan\nKerri\nLeigh\nMaranda\nMeagan\nMelody\nStaci\nTaylor\nTerri\nTrista\nBonnie\nBritney\nDeborah\nDominique\nHeidi\nJanna\nKirby\nMindy\nMonique\nShelley\nSonya\nTera\nBobbie\nChelsey\nChrista\nConstance\nCortney\nDenise\nJaclyn\nJasmine\nKristie\nMandy\nMolly\nRobyn\nShelby\nTanisha\nTerra\nVirginia\nAnn\nFrances\nHollie\nJessie\nKathy\nKristal\nLeann\nLydia\nShameka\nShanda\nSharonda\nSherry\nSylvia\nTabatha\nTamika\nTanya\nYolanda\nAlexandria\nBeth\nBridgett\nBridgette\nCandis\nCarly\nCaroline\nChristi\nChristin\nChrystal\nDebra\nDevon\nGina\nHelen\nJoy\nKrystle\nLatonya\nLatrice\nLillian\nLora\nMaggie\nMarla\nMartha\nMicah\nPriscilla\nRaven\nRose\nShayla\nTraci\nAimee\nAlissa\nAshleigh\nCecilia\nChandra\nCharlene\nClarissa\nDebbie\nGloria\nGrace\nJanie\nJeannie\nJillian\nJoyce\nKasey\nKerry\nLadonna\nLana\nLena\nLesley\nLyndsey\nNedra\nNina\nOlivia\nRoxanne\nTracey\nAlana\nAlecia\nAlice\nAmie\nAnita\nBelinda\nCarmen\nCheryl\nChiquita\nDevin\nDorothy\nGinger\nGretchen\nHillary\nJade\nJaime\nJami\nJennie\nKeisha\nLacie\nLakesha\nLaurie\nLindy\nMisti\nRuth\nShari\nSheila\nStacie\nTabetha\nTamra\nTanesha\nTessa\nTiffanie\nAbigail\nAlesha\nAlisa\nAriel\nBailey\nBetty\nBillie\nBrandon\nBritni\nBrooklyn\nCandi\nCasandra\nChristal\nChristian\nDena\nDestiny\nDiane\nDianna\nEllen\nGabrielle\nHailey\nHayley\nHope\nJean\nJody\nJudy\nKarla\nKelley\nKelsey\nKrysta\nKyla\nLaci\nLakisha\nLashonda\nLatia\nMagen\nMarsha\nMollie\nNaomi\nPeggy\nRoshunda\nShalonda\nShasta\nShenna\nSheri\nSydney\nTameka\nTammie\nTasia\nTheresa\nTosha\nTracie\nYvonne\nAdrianne\nAlanna\nAndrew\nAngie\nAntoinette\nAshli\nAshly\nAubrey\nBecky\nBeverly\nBrianna\nCaitlin\nCamille\nCandy\nCasie\nCatrina\nCharlotte\nClaire\nColby\nCristina\nDeidre\nDeirdre\nDesirae\nHolli\nJanelle\nJanet\nJason\nJeana\nJenifer\nJustin\nKaci\nKala\nKanesha\nKassandra\nKristian\nLaquinta\nLaquita\nLashunda\nLatosha\nLinsey\nLynn\nMalinda\nNicki\nPaige\nPatrice\nPrecious\nRenee\nRosalyn\nSamatha\nShamika\nShauna\nShayna\nSherika\nSherri\nSherrie\nShirley\nSondra\nStormy\nSuzanne\nTeri\nTia\nTiffani\nTonia\nAshley\nJessica\nAmanda\nJennifer\nSarah\nAmber\nHeather\nBrittany\nStephanie\nKimberly\nTiffany\nElizabeth\nRachel\nCrystal\nMegan\nLaura\nLindsey\nMary\nLauren\nAmy\nMelissa\nRebecca\nApril\nSamantha\nJamie\nChristina\nSara\nAngela\nEmily\nAndrea\nWhitney\nBrandi\nHolly\nNicole\nCourtney\nErica\nBrandy\nBrittney\nErin\nMichelle\nKristen\nLatoya\nKrystal\nKelly\nMisty\nAlicia\nDanielle\nAnna\nLisa\nTara\nKatie\nLindsay\nMiranda\nKatherine\nFelicia\nCandace\nKathryn\nLeslie\nStacy\nCandice\nTabitha\nAllison\nKristin\nJulie\nLacey\nCarrie\nNatasha\nKayla\nShannon\nSheena\nCassandra\nHannah\nNatalie\nKara\nKristina\nVanessa\nVictoria\nBrooke\nChelsea\nJenna\nMeagan\nLeah\nMonica\nDominique\nBethany\nCatherine\nChristy\nKatrina\nKristy\nTasha\nCynthia\nAlisha\nJacqueline\nShana\nKristi\nValerie\nCasey\nEbony\nMorgan\nRebekah\nLatasha\nLori\nPatricia\nRachael\nKelli\nMelanie\nMeredith\nTonya\nChristine\nHaley\nMallory\nRobin\nTamara\nBritney\nCassie\nDana\nKendra\nKrystle\nMeghan\nLacy\nNikki\nShanna\nStacey\nSusan\nAutumn\nCharity\nMandy\nPamela\nTina\nTracy\nMargaret\nSharon\nKari\nJillian\nKaren\nMelinda\nNichole\nVeronica\nAshleigh\nBrandie\nJana\nSummer\nDesiree\nJasmine\nJoanna\nKrista\nRhonda\nSabrina\nTammy\nAlexis\nDeanna\nDonna\nErika\nJenny\nJordan\nJulia\nRegina\nSavannah\nTeresa\nTerri\nAngel\nAshlee\nBarbara\nBridget\nCara\nDenise\nJessie\nKerri\nYolanda\nAlison\nDeborah\nKasey\nMaria\nMolly\nTaylor\nBobbie\nBonnie\nCallie\nChasity\nCindy\nJacquelyn\nJodi\nMelody\nNancy\nRobyn\nSandra\nTabatha\nTanya\nWendy\nAudra\nBetty\nDestiny\nDiana\nJill\nLatisha\nMaranda\nMarquita\nSherry\nAnita\nBrenda\nCarla\nConstance\nCortney\nDawn\nHillary\nKathleen\nLatonya\nMaegan\nShawna\nSonya\nTheresa\nTracey\nTrista\nVirginia\nAbby\nAdrienne\nBeth\nCasandra\nChelsey\nHeidi\nKelsey\nKeri\nKristian\nKristie\nLinda\nMaggie\nPaige\nRobert\nRose\nRoxanne\nSuzanne\nSydney\nTraci\nAimee\nAlexandra\nAlissa\nAlyssa\nAudrey\nBrittani\nCaitlin\nChandra\nCheryl\nChristen\nChristian\nEmma\nJackie\nJaime\nJanice\nKarla\nLacie\nLatoria\nLesley\nLora\nLydia\nMonique\nOlivia\nPaula\nRaven\nRenee\nRosemary\nSade\nShelly\nSylvia\nTera\nToni\nBridgette\nCandy\nCarmen\nCaroline\nCecilia\nChristie\nGina\nJo\nJody\nJoy\nKeisha\nKerry\nKristine\nLaci\nLadonna\nLana\nLaurie\nMarie\nMicah\nSheila\nShelby\nShenna\nShonda\nStefanie\nTanisha\nTaryn\nTerra\nAdrian\nAlana\nAlice\nAlyson\nAmie\nAnne\nAnnie\nBecky\nBelinda\nBillie\nBritni\nCharlotte\nChristi\nClaire\nCody\nDebra\nFallon\nFelecia\nJaclyn\nJanet\nJenifer\nKaci\nKandice\nKaty\nKellie\nKourtney\nKristal\nLakeisha\nLeigh\nLena\nMartha\nMichaela\nPriscilla\nRandi\nSantana\nSavanna\nShauna\nShayla\nSherri\nStaci\nTabetha\nTerry\nTiffanie\nTrisha\nAbigail\nAnn\nAshlie\nBridgett\nCamille\nCandi\nCeleste\nChastity\nChiquita\nClaudia\nConnie\nCristina\nEllen\nEvelyn\nFrances\nGrace\nHelen\nHollie\nJami\nJayme\nJena\nJoyce\nJudy\nKacey\nKassie\nKelley\nKeshia\nKyla\nLaken\nLakendra\nLarissa\nLeanne\nLyndsey\nMagen\nMarilyn\nMindy\nMisti\nRacheal\nRachelle\nRochelle\nSerena\nShameka\nSharonda\nShasta\nSierra\nTeri\nTiffani\nTosha\nTracie\nTyler\nAbbie\nAdrianne\nAhsley\nAlesha\nAlexandria\nAmelia\nAshlea\nAubrey\nAva\nBianca\nBobbi\nBrenna\nBrook\nCarissa\nCarolyn\nChassidy\nChrista\nChristal\nChristin\nCorey\nCory\nDanyell\nDeana\nDeidra\nDeidre\nDevin\nDiane\nDorothy\nElisabeth\nElisha\nEmilee\nFaith\nFelisha\nGabrielle\nGretchen\nHilary\nHope\nJade\nJammie\nJoann\nJodie\nJoni\nJuanita\nKacie\nKandace\nKandi\nKenya\nKira\nKirby\nLakeshia\nLakisha\nLaquita\nLashunda\nLatia\nLatosha\nLavonda\nNickie\nNina\nPrecious\nRenita\nRuth\nShaina\nSophia\nSunny\nTameka\nTamera\nTamika\nTessa\nValencia\nVickie\nWendi\nAshley\nJessica\nAmanda\nJennifer\nSarah\nBrittany\nAmber\nHeather\nWhitney\nStephanie\nTiffany\nKimberly\nRachel\nMegan\nSamantha\nCrystal\nLauren\nElizabeth\nAmy\nLaura\nApril\nLindsey\nMary\nErica\nCourtney\nEmily\nRebecca\nJamie\nBrittney\nSara\nMelissa\nChristina\nAngela\nKrystal\nHolly\nAndrea\nDanielle\nBrandy\nKristen\nNicole\nKayla\nKatherine\nShannon\nAlicia\nCasey\nKatie\nAnna\nMichelle\nTara\nKristin\nHannah\nLisa\nBrandi\nMisty\nAllison\nNatalie\nMiranda\nFelicia\nErin\nMallory\nLatoya\nNatasha\nVictoria\nKendra\nLeslie\nKelly\nAlisha\nChelsea\nKathryn\nRobin\nCandace\nBethany\nLindsay\nCandice\nJordan\nJulie\nMonica\nTamara\nLacey\nLeah\nSavannah\nCarrie\nMeagan\nVanessa\nTabitha\nCassandra\nCassie\nStacy\nBritney\nBrooke\nChristine\nMorgan\nHaley\nChristy\nKara\nKatrina\nKristina\nDominique\nKrista\nLatasha\nMelanie\nRebekah\nSummer\nTonya\nCatherine\nCynthia\nKaren\nMeghan\nStacey\nAshton\nKristy\nRachael\nJulia\nNikki\nPamela\nAlyssa\nAutumn\nErika\nKristi\nPatricia\nTracy\nJacqueline\nAngel\nJenna\nMolly\nSheena\nTasha\nJasmine\nRobyn\nAshlee\nBridget\nLacy\nNikita\nRandi\nSabrina\nSandra\nAudrey\nJenny\nKelli\nMaria\nSasha\nTeresa\nBarbara\nCallie\nDana\nEbony\nJessie\nKari\nKathleen\nKeisha\nKrystle\nMargaret\nShana\nSusan\nCharity\nJoanna\nJoy\nKelsey\nShawna\nValerie\nVeronica\nAimee\nAlison\nJillian\nKasey\nLinda\nMandy\nMelinda\nNichole\nTina\nWendy\nAlexandra\nCarmen\nChasity\nDeanna\nDonna\nHope\nLori\nShauna\nSherry\nTammy\nTanisha\nBonnie\nCara\nChrista\nConstance\nDestiny\nHeidi\nHollie\nJana\nJill\nKeri\nLadonna\nMeredith\nOlivia\nRhonda\nStefanie\nTabatha\nTanya\nTerri\nTosha\nAlexis\nAmelia\nAshleigh\nBlair\nCarolyn\nDenise\nDiana\nHayley\nHillary\nNancy\nPaige\nSade\nShelby\nShelly\nSierra\nTaylor\nVirginia\nBeth\nCindy\nFallon\nGabrielle\nGina\nJade\nJodi\nLeigh\nMadison\nMaegan\nMarquita\nMonique\nRegina\nShayla\nAriel\nBrenda\nCarla\nChelsey\nChristie\nCortney\nDawn\nDebra\nJayme\nKeshia\nKristie\nLaci\nLesley\nPaula\nShanika\nSharon\nAbigail\nAlexandria\nAmie\nAnn\nAnnie\nAntoinette\nBetty\nBobbie\nBridgette\nCaitlin\nCamille\nCarol\nDeborah\nJaclyn\nJanet\nJocelyn\nKacey\nKassie\nKatelyn\nLakeisha\nLydia\nLyndsey\nNina\nPriscilla\nRaven\nSamatha\nShamika\nShanna\nSonya\nTera\nTheresa\nTori\nTraci\nAdrian\nAdrienne\nAlissa\nAngelica\nAnne\nBrandie\nBritni\nCarissa\nChristian\nClaire\nClarissa\nDesiree\nDixie\nEllen\nEmma\nIndia\nJacquelyn\nJanice\nJennie\nKayleigh\nKendall\nKerri\nKerry\nLakesha\nLaquita\nLara\nLatonya\nLatoria\nLatrice\nLora\nLucy\nMaggie\nMartha\nMindy\nNaomi\nRachelle\nRenee\nRikki\nRuth\nRyan\nShanta\nShayna\nShelley\nShirley\nStaci\nSydney\nSylvia\nTanesha\nTeri\nTerra\nAlanna\nAlice\nAllyson\nAshely\nAshlie\nBobbi\nBrandon\nBrianna\nBrittani\nBritteny\nCharlene\nCheryl\nChiquita\nChrystal\nDeidra\nDorothy\nElaine\nFelisha\nGloria\nHalley\nJacklyn\nKaci\nKacie\nKandice\nKarla\nKristine\nLacie\nLatisha\nMagen\nMaranda\nMelody\nMichael\nMichele\nNastassia\nRuby\nSantana\nShaina\nShalonda\nSophia\nStacie\nStephany\nTricia\nWanda\nYolanda\nAbby\nAlana\nAmberly\nAnnette\nAudra\nBetsy\nBillie\nBriana\nBridgett\nCaroline\nChandra\nCharla\nCherrelle\nCodi\nColleen\nDara\nDevon\nDoris\nElisha\nFaith\nGlenda\nGrace\nGwendolyn\nHallie\nHelen\nHilary\nHolli\nIvy\nJaime\nJanelle\nJohanna\nKandace\nKatina\nKaty\nKelley\nKyla\nLakeshia\nLatosha\nLaurie\nLeann\nLoren\nMagan\nMarie\nMartina\nMisti\nNadia\nPeggy\nPorcha\nRacheal\nShameka\nShanda\nShara\nSharonda\nShasta\nShelia\nSuzanne\nTameka\nTaryn\nTawana\nTessa\nTiara\nToni\nTrisha\nTrista\nVanna\nAshley\nJessica\nAmanda\nJennifer\nSarah\nBrittany\nAmber\nHeather\nSamantha\nWhitney\nMegan\nTiffany\nStephanie\nKimberly\nRachel\nLauren\nKayla\nElizabeth\nCrystal\nEmily\nCourtney\nAmy\nLindsey\nMelissa\nLaura\nBrittney\nChristina\nMary\nRebecca\nApril\nSara\nJamie\nAngela\nChelsea\nDanielle\nErica\nHannah\nAndrea\nKatie\nNicole\nCasey\nAlicia\nBrandi\nKatherine\nKendra\nKristen\nMichelle\nNatalie\nVictoria\nAnna\nBrandy\nTara\nAllison\nNatasha\nKelly\nMallory\nHolly\nErin\nLindsay\nMiranda\nKathryn\nLacey\nLeslie\nMeagan\nBethany\nJordan\nKrystal\nMisty\nMonica\nCandace\nHaley\nFelicia\nJulie\nKristin\nMorgan\nShannon\nVanessa\nLisa\nCassie\nAlisha\nBrooke\nJasmine\nKristina\nLeah\nPatricia\nCatherine\nRebekah\nJacqueline\nKelsey\nBritney\nTabitha\nTasha\nCandice\nCassandra\nRachael\nRobin\nDana\nKara\nAlyssa\nChristine\nStacy\nVeronica\nDominique\nKasey\nMelanie\nTonya\nAutumn\nCarrie\nLatoya\nSummer\nTracy\nAngel\nErika\nKristy\nLatasha\nJenna\nKatrina\nStacey\nCharity\nKaren\nSavannah\nTina\nChristy\nEbony\nKrista\nSasha\nSusan\nChasity\nKelli\nLori\nMeghan\nMeredith\nSheena\nTamara\nToni\nAshlee\nJenny\nJessie\nJulia\nNikki\nSabrina\nAlison\nCallie\nCynthia\nMandy\nMarissa\nMelinda\nNichole\nShana\nShawna\nTaylor\nAdrienne\nAlexandra\nCaitlin\nDonna\nKeisha\nPamela\nRandi\nSandra\nWendy\nBarbara\nCarla\nDeborah\nGabrielle\nJaclyn\nJillian\nKristi\nLinda\nMelody\nMolly\nSydney\nTeresa\nValerie\nAbby\nAudrey\nDestiny\nDiana\nKathleen\nMaggie\nPaige\nShanna\nAlexis\nAshleigh\nAshton\nCaroline\nCheryl\nCortney\nDawn\nDenise\nJana\nLacy\nLatisha\nLydia\nMargaret\nShelby\nTraci\nAbigail\nAlexandria\nAllyson\nBridget\nCarolyn\nChanning\nChelsey\nClaire\nDeanna\nDeidre\nElisabeth\nHillary\nJodi\nKaty\nKelley\nLatonya\nLyndsey\nMartha\nSharon\nTanya\nAsha\nChrista\nConstance\nDesiree\nGina\nJoanna\nJoy\nKala\nKeri\nMaegan\nMaria\nShelly\nTerri\nTosha\nVirginia\nYolanda\nAimee\nAngelica\nBailey\nBobbie\nClarissa\nConnie\nEllen\nGrace\nHayley\nHollie\nJacquelyn\nJami\nJill\nKari\nKyla\nLana\nLeigh\nMackenzie\nMadison\nMicah\nMindy\nNancy\nRachelle\nRhonda\nShelley\nSierra\nStaci\nStefanie\nSylvia\nTammy\nTessa\nAnn\nBeverly\nBreanna\nBrenda\nBrittani\nCari\nCarmen\nChelsie\nChristen\nChristie\nCiara\nFelecia\nHailey\nJackie\nJanet\nKatelyn\nKathy\nKeshia\nLaquita\nLara\nLashunda\nLena\nNikita\nNina\nOlivia\nPaula\nRacheal\nRaven\nTerra\nAdrian\nAlisa\nAlissa\nAmelia\nAnastasia\nBlair\nBrandie\nBriana\nBrianna\nCara\nCarly\nChandra\nDorothy\nElise\nEmma\nJody\nJoshua\nJulianne\nKarla\nKellie\nKerri\nLakeshia\nLashonda\nMagen\nMattie\nMisti\nNaomi\nPriscilla\nRenee\nRose\nSavanna\nShauna\nSherry\nShonda\nSonya\nStevie\nTori\nAlana\nAlyson\nAmie\nAriel\nAudra\nBobbi\nBridgett\nBridgette\nCameron\nCandi\nCandy\nCassidy\nCassondra\nChristopher\nDebra\nDominque\nEden\nGabriel\nJade\nJeanette\nJerrica\nKacey\nKassi\nKellye\nKristan\nKristian\nKrystle\nLatoria\nLeanna\nLucinda\nMagan\nMaranda\nMarie\nMercedes\nMicha\nMichele\nMollie\nMonique\nRobyn\nRuby\nRuth\nRyan\nShena\nSondra\nTameka\nTamra\nTracey\nTrisha\nTrista\nWanda\nAlesha\nAnne\nAshely\nAshlea\nAshlie\nAshly\nBetty\nBonnie\nBritany\nBrittaney\nCamille\nCarol\nCasie\nCayla\nCharlotte\nChrystal\nDebbie\nDevin\nDiane\nDianna\nDomonique\nFaith\nFallon\nHolli\nJaime\nJanice\nJanna\nJena\nJerri\nJoni\nJustin\nKaitlyn\nKali\nKaylee\nKayleigh\nKaylie\nKira\nKristine\nKrystina\nLaci\nLadonna\nLakeisha\nLakendra\nLeeann\nLesley\nLinsey\nLora\nMildred\nNakita\nNatashia\nNatosha\nOctavia\nPatrice\nPenny\nPrecious\nRanda\nRegina\nSallie\nShanika\nShayna\nSheila\nSommer\nStacie\nTamera\nTanesha\nTarah\nTiffani\nTreasure\nWhittney\nJessica\nAshley\nAmanda\nBrittany\nSarah\nWhitney\nAmber\nTiffany\nHeather\nJennifer\nMegan\nSamantha\nKayla\nLauren\nStephanie\nElizabeth\nRachel\nCourtney\nBrittney\nEmily\nMary\nKimberly\nCrystal\nChristina\nLindsey\nSara\nChelsea\nMelissa\nAmy\nApril\nAndrea\nErica\nHolly\nHannah\nLaura\nDanielle\nNicole\nJasmine\nRebecca\nJamie\nAngela\nAnna\nKatie\nKristen\nKendra\nCandace\nAllison\nTara\nAlicia\nCassandra\nKatherine\nErin\nBrandy\nVictoria\nLisa\nBrandi\nMichelle\nBritney\nLeslie\nMorgan\nShannon\nCaitlin\nKelly\nKrystal\nFelicia\nCandice\nHaley\nLacey\nNatasha\nJulie\nKathryn\nMallory\nAlisha\nCatherine\nKelsey\nCassie\nKristin\nLeah\nMiranda\nMisty\nNatalie\nSummer\nAutumn\nCasey\nLindsay\nBethany\nMeagan\nMonica\nAlyssa\nBrooke\nTaylor\nKasey\nMolly\nPatricia\nJordan\nKara\nTabitha\nKelli\nAlexandra\nSasha\nVanessa\nEbony\nKristina\nSavannah\nTasha\nCara\nCarrie\nChristine\nRobin\nTonya\nDana\nJulia\nCynthia\nErika\nKristi\nLatoya\nMeghan\nTamara\nAdrienne\nAngel\nGabrielle\nKathleen\nRebekah\nSabrina\nStacey\nAlexandria\nChasity\nKatelyn\nLatasha\nAudrey\nChelsey\nDeanna\nDominique\nJenna\nKaitlin\nKaren\nLacy\nMargaret\nMeredith\nChristy\nDesiree\nHayley\nKatrina\nKrista\nKristy\nPaige\nStacy\nSydney\nBrianna\nJacqueline\nLori\nShawna\nVeronica\nAshlee\nBianca\nCarmen\nCaroline\nMaria\nMelanie\nNichole\nPamela\nTracy\nAmelia\nAshton\nCharity\nJessie\nJillian\nShana\nTiara\nCortney\nDestiny\nJaleesa\nJoy\nKeisha\nMarisa\nNikki\nRachael\nRacheal\nShanice\nAlexis\nAllyson\nAubrey\nBailey\nDeborah\nHillary\nLyndsey\nMagen\nMarissa\nMelinda\nSusan\nTabatha\nTammy\nTerri\nAbby\nAlesha\nAngelica\nBridget\nCarol\nCheryl\nChristian\nHope\nJade\nJoanna\nJodi\nKaylee\nKyla\nNikita\nRandi\nTina\nTosha\nTraci\nAbigail\nAshleigh\nAudra\nBreanna\nBrenda\nBriana\nDenise\nDiana\nEllen\nJaclyn\nJanice\nJenny\nKaitlyn\nKandace\nMadison\nMagan\nMandy\nMelody\nOlivia\nPrecious\nRachelle\nRegina\nRoxanne\nSavanna\nSheena\nTracey\nVirginia\nAlice\nBarbara\nBrittaney\nBrittni\nCallie\nCharlotte\nChristen\nJill\nJudy\nKellie\nKeri\nLadonna\nLara\nLydia\nMaegan\nMicah\nMonique\nRobyn\nSylvia\nTameka\nValerie\nYolanda\nAriel\nBecky\nBetty\nBrittani\nClaire\nConstance\nDebra\nDonna\nElisabeth\nFaith\nJami\nJana\nJustin\nKala\nLacie\nLakeisha\nLatisha\nMackenzie\nMandi\nMichaela\nMollie\nNancy\nRose\nSandra\nSharonda\nShauna\nSuzanne\nWendy\nWhitley\nAlecia\nAlison\nAnnie\nAntoinette\nAshlie\nBridgette\nCarla\nChelsie\nChrista\nChrystal\nCindy\nCora\nDevin\nHailey\nHelen\nJackie\nJacquelyn\nJalisa\nJocelyn\nKaci\nKarla\nKassie\nKerri\nKesha\nKylie\nLaci\nLaken\nLeanna\nLeigh\nLinda\nLucy\nMaggie\nPrincess\nPriscilla\nRenee\nSally\nShanna\nShayla\nStaci\nStefanie\nStevie\nTori\nAdrian\nAdrianne\nAmie\nAnn\nAshlea\nAshli\nBlair\nBritany\nBritteny\nCaitlyn\nCamille\nCandy\nCarissa\nCarolyn\nCasandra\nCecily\nChloe\nCody\nDallas\nElise\nElisha\nEricka\nFelecia\nFelisha\nFrances\nGabriel\nGina\nHeidi\nHilary\nJaime\nJames\nJane\nJanie\nJayme\nJennie\nJerrica\nKacey\nKandice\nKassandra\nKatlin\nKayleigh\nKelley\nKeshia\nKimberley\nKristal\nKristie\nKrystle\nLillian\nLynsey\nMarquita\nMercedes\nMichael\nMichele\nMindy\nNina\nShaina\nShameka\nSharon\nShea\nShelby\nSimone\nStormy\nTera\nTeresa\nTiffani\nToni\nTyler\nAlana\nAlanna\nAlyson\nAnastasia\nAnne\nAsia\nAyla\nBelinda\nBonnie\nBridgett\nCayla\nCecilia\nChanda\nChristin\nClarissa\nColleen\nConnie\nDominque\nDorothy\nEden\nFallon\nGinger\nGrace\nJammie\nJelisa\nJoyce\nJuanita\nKacie\nKari\nKarrie\nKasi\nKate\nKatharine\nKatheryn\nKaty\nKenya\nKimber\nKristyn\nLana\nLeann\nLesley\nLoren\nMarie\nMarkita\nMartha\nMisti\nNaomi\nNatosha\nPaula\nPorsha\nRaven\nRhonda\nRuby\nRyan\nSadie\nSheila\nSherri\nSherry\nStacie\nTamera\nTanya\nTarah\nTerra\nTessa\nTheresa\nAshley\nJessica\nBrittany\nAmanda\nSarah\nAmber\nTiffany\nSamantha\nLauren\nHeather\nMegan\nKayla\nJennifer\nRachel\nElizabeth\nCourtney\nStephanie\nEmily\nWhitney\nHannah\nKimberly\nBrittney\nJasmine\nMary\nLindsey\nChelsea\nAmy\nKristen\nLaura\nRebecca\nCrystal\nJamie\nChristina\nKatie\nKelsey\nAndrea\nErica\nNicole\nDanielle\nSara\nKatherine\nJordan\nMorgan\nAnna\nMelissa\nAllison\nVictoria\nHolly\nKendra\nMichelle\nApril\nBrandi\nAlicia\nBrooke\nHaley\nKristin\nTara\nKathryn\nTaylor\nCaitlin\nLeah\nAngela\nErin\nBritney\nBrandy\nBethany\nNatasha\nKiara\nCassandra\nCandace\nFelicia\nKelly\nLeslie\nMeagan\nMiranda\nLacey\nCasey\nCatherine\nShannon\nMonica\nCandice\nMisty\nNatalie\nLindsay\nAlyssa\nKara\nMallory\nRachael\nKrystal\nRebekah\nLisa\nNikki\nTabitha\nAshton\nJulie\nMelanie\nRobin\nAlexandra\nAlisha\nCassie\nGabrielle\nKristina\nMarissa\nTamara\nAngel\nJacqueline\nMolly\nPaige\nVanessa\nCarrie\nMeghan\nSydney\nChristy\nKelli\nPatricia\nAutumn\nBrianna\nErika\nKrista\nLatoya\nChasity\nChelsey\nKatrina\nTiara\nAlison\nHayley\nKatelyn\nLatasha\nBianca\nDestiny\nMaria\nTina\nAlexis\nCallie\nKristy\nSasha\nTasha\nCecily\nCortney\nKaitlin\nRandi\nSavannah\nSummer\nSusan\nAbigail\nAlexandria\nBridget\nEbony\nKylie\nLydia\nMadison\nMargaret\nMercedes\nMeredith\nSabrina\nAudrey\nCharity\nDeanna\nJade\nKasey\nKeisha\nWhitley\nBriana\nDesiree\nKierra\nSally\nShawna\nStacy\nTori\nVeronica\nAshlee\nAshleigh\nBreanna\nBrittni\nCharlotte\nCynthia\nHailey\nHope\nJenna\nJulia\nKristi\nTeresa\nTrisha\nAbby\nAriel\nBrandie\nBrittani\nCheryl\nChristine\nHanna\nJessie\nLori\nMaegan\nMelody\nOlivia\nPamela\nRobyn\nSheena\nShelby\nSierra\nBailey\nBarbara\nChelsie\nDeborah\nDonna\nJodi\nKaitlyn\nKala\nKandace\nLacy\nLinda\nLoren\nMadeline\nShana\nTraci\nValerie\nYolanda\nAdrienne\nAngelica\nBrenda\nDawn\nDenise\nDominique\nHillary\nJillian\nJoy\nKari\nKassie\nKathleen\nMandy\nNichole\nStaci\nAllyson\nArielle\nBridgett\nBridgette\nCarmen\nCaroline\nChloe\nDana\nDorothy\nGrace\nKaren\nKaty\nKaylee\nLakeshia\nLarissa\nLyndsey\nMagen\nMarisa\nMichaela\nPrecious\nShayla\nSonya\nStacey\nTabatha\nTaryn\nTierra\nTonya\nTracy\nAmelia\nAshlea\nCara\nCarolyn\nDevin\nDiana\nEllen\nEmma\nFelisha\nHeidi\nJami\nKandice\nKayleigh\nKellie\nKeri\nKerri\nKeshia\nKourtney\nLaci\nLesley\nMonique\nRaven\nSavanna\nShaina\nSharon\nTameka\nToni\nWendy\nAlexa\nAnne\nBlair\nCamille\nCarissa\nCeleste\nChrista\nChristen\nChristian\nChristin\nCierra\nConstance\nFaith\nGina\nHelen\nJaleesa\nJalisa\nJenny\nJill\nKaci\nKaila\nKarissa\nKelsi\nKori\nKristie\nKristine\nLeanna\nMackenzie\nMaggie\nNina\nRacheal\nShanice\nShauna\nShayna\nAdrianna\nAlaina\nAlissa\nAllie\nAmberly\nAnastasia\nAnnie\nAntoinette\nAshely\nAudra\nAudriana\nBetty\nBrianne\nBritany\nCarol\nCasandra\nCassidy\nChandra\nCherrelle\nChristie\nCiara\nDanyelle\nDevon\nEden\nElise\nGinger\nHollie\nJanie\nJayme\nJazmine\nJenifer\nJoanna\nKali\nKiera\nKirsten\nKristyn\nLatisha\nLeigh\nMaranda\nMarkie\nMarquita\nMartha\nMicah\nNatosha\nNikita\nPatience\nPaula\nRaquel\nRegina\nRose\nRoxanne\nShelly\nSherry\nTanesha\nTera\nTia\nTiffani\nTrista\nVirginia\nAbbey\nAdrian\nAdriana\nAdrianne\nAimee\nAlesha\nAlycia\nAlyson\nAsha\nBeth\nBillie\nBonnie\nBreana\nBritni\nBrittaney\nCandi\nCarly\nCathryn\nChanda\nCharlene\nChiquita\nClaire\nConnie\nCorey\nElisabeth\nHaleigh\nHilary\nHolli\nJacquelyn\nJalesa\nKacie\nKeely\nKenya\nKimberley\nKrystle\nKyla\nKylee\nLa\nLakendra\nLatonya\nLatosha\nLogan\nLucy\nMagan\nMakayla\nMattie\nNancy\nNaomi\nPorsha\nRenee\nRosemary\nSandra\nShanda\nShanna\nShawn\nSonja\nSusie\nSylvia\nTalia\nTanisha\nTessa\nTheresa\nTracey\nJessica\nAshley\nBrittany\nAmanda\nSarah\nMegan\nKayla\nCourtney\nHeather\nLauren\nAmber\nSamantha\nTiffany\nJennifer\nStephanie\nWhitney\nRachel\nEmily\nHannah\nJasmine\nBrittney\nElizabeth\nChelsea\nKimberly\nLindsey\nJordan\nKelsey\nRebecca\nMary\nMorgan\nKatherine\nKristen\nErica\nJamie\nLaura\nTaylor\nAmy\nChristina\nCrystal\nAndrea\nHaley\nDanielle\nMichelle\nSara\nApril\nAnna\nVictoria\nKatie\nBrandi\nNicole\nAllison\nBrooke\nBethany\nAlicia\nAlyssa\nHolly\nKristin\nCassandra\nAngela\nKendra\nMelissa\nKathryn\nErin\nOlivia\nPaige\nRachael\nCandace\nShelby\nTara\nBritney\nAlexandra\nKrystal\nLeah\nSummer\nCaitlin\nCasey\nAriel\nBrianna\nCandice\nCatherine\nChelsey\nKara\nLeslie\nMeagan\nMonica\nRaven\nLindsay\nMadison\nFelicia\nAlexandria\nKelly\nLacey\nMelanie\nMiranda\nNatalie\nTabitha\nBreanna\nMallory\nNatasha\nRebekah\nKatelyn\nMisty\nWhitley\nAbigail\nShannon\nSydney\nVanessa\nLisa\nCarrie\nGabrielle\nKaylee\nPatricia\nAutumn\nBriana\nDestiny\nMeghan\nCortney\nShawna\nBianca\nBrandy\nCassie\nKaitlyn\nMarissa\nSabrina\nTamara\nCallie\nDominique\nKiara\nLatasha\nLatoya\nSasha\nVeronica\nAlisha\nAshton\nAudrey\nChristine\nDana\nEbony\nHayley\nKaitlin\nKristina\nAlexis\nJacqueline\nKasey\nKatrina\nAllyson\nAshleigh\nBarbara\nCaroline\nCynthia\nErika\nJessie\nJoanna\nJulie\nKathleen\nLydia\nMolly\nTabatha\nTracy\nAdrienne\nAngel\nAshlee\nBailey\nChasity\nNikki\nLinda\nMaegan\nMeredith\nSavannah\nSierra\nValerie\nWendy\nAbby\nCara\nChelsie\nHillary\nMadeline\nRobin\nAlison\nChristy\nHailey\nNichole\nTonya\nAlexa\nAmelia\nCarolyn\nChloe\nDesiree\nEmma\nJenna\nJillian\nKelli\nMaggie\nMariah\nMercedes\nMicah\nTiara\nBonnie\nBridget\nCharity\nDeborah\nFaith\nHope\nJulia\nKaren\nKellie\nKourtney\nKrista\nLacy\nLori\nStacy\nTeresa\nToni\nAdrianna\nAngelica\nAubrey\nBlair\nCarla\nHanna\nJerrica\nKeisha\nMargaret\nMaria\nRandi\nSandra\nShanna\nTasha\nTia\nVirginia\nAshlie\nAudra\nBrittani\nCecily\nChristian\nClarissa\nDeanna\nJaclyn\nJessika\nKarissa\nKelsie\nKristan\nKrystle\nLaken\nLeanna\nLyndsey\nMandy\nMarie\nPaula\nShana\nStacey\nSylvia\nTanesha\nTerri\nTina\nAlissa\nCaitlyn\nCamille\nCarly\nCarmen\nCharlie\nChrista\nConstance\nDenise\nEllen\nEricka\nHollie\nJenny\nKandace\nKirsten\nKristy\nKyla\nMagan\nMollie\nRacheal\nSavanna\nSheila\nSuzanne\nArielle\nBritni\nCarissa\nChristen\nChristin\nDebra\nDevin\nDevon\nEvelyn\nFelisha\nJade\nJalisa\nJayme\nJordyn\nJustine\nKaci\nKali\nKanisha\nKeshia\nKierra\nKylie\nLatisha\nLillian\nLora\nLoren\nMindy\nNancy\nNikita\nNina\nShaniqua\nStaci\nTaryn\nTera\nTerra\nTessa\nAllie\nAlyson\nAntoinette\nBridgette\nBritany\nCheyenne\nChristie\nFrances\nGrace\nHali\nHeidi\nHelen\nJaleesa\nJami\nJasmin\nJerica\nKacey\nKacie\nKalie\nKari\nKasandra\nKiera\nKristi\nLaquita\nMackenzie\nMaya\nRhonda\nRuby\nShayla\nSimone\nStacie\nTammy\nTanisha\nTarah\nTrisha\nAimee\nAlecia\nAlysha\nAngelina\nBeth\nBrandie\nBrooklyn\nCeleste\nCharlotte\nChastity\nChelsi\nCiara\nCindy\nDakota\nDanna\nDiamond\nDonna\nEden\nGloria\nGwendolyn\nJana\nJane\nJazmine\nJustina\nKarla\nKathrine\nKathy\nKaytlin\nKelley\nKenya\nKeri\nKristian\nKyra\nLa\nLeann\nLeigh\nMagen\nMandi\nMarla\nMichaela\nMichele\nMonique\nPriscilla\nRachelle\nRegina\nRenee\nSamatha\nShaina\nShanda\nShauna\nSidney\nSkylar\nSonya\nTanya\nTiffani\nTosha\nTraci\nTyler\nYolanda\nAisha\nAlesha\nAlisa\nAnastasia\nAntionette\nAshly\nAshlyn\nBetty\nBobbie\nBrenda\nBritny\nBrittnee\nCassondra\nCharlene\nChassity\nCiera\nCristina\nDaphne\nDawn\nDiana\nDorothy\nEmilee\nFrancis\nHilary\nHolli\nHunter\nJacklyn\nJacquelyn\nJanice\nJenifer\nJesse\nJessi\nJocelyn\nJodi\nKaila\nKallie\nKaylin\nKeely\nKerri\nKirby\nKortney\nKrystin\nLarhonda\nLatonya\nLatoria\nLatosha\nLea\nLesley\nLyndsay\nMaranda\nMarina\nMarisa\nMarquita\nMarsha\nMelinda\nMelody\nReagan\nRose\nShantel\nSheena\nSonja\nSophie\nStefanie\nSusan\nTierra\nVelma\nAshley\nJessica\nBrittany\nSarah\nKayla\nAmanda\nLauren\nAmber\nSamantha\nMegan\nEmily\nTiffany\nCourtney\nElizabeth\nHeather\nJennifer\nStephanie\nShelby\nRachel\nHannah\nWhitney\nChelsea\nJasmine\nMary\nTaylor\nKimberly\nHaley\nKelsey\nLindsey\nSara\nVictoria\nMorgan\nBrittney\nRebecca\nJordan\nLaura\nAmy\nKristen\nAnna\nKatherine\nBrooke\nChristina\nCrystal\nAndrea\nErica\nJamie\nMiranda\nAllison\nKatie\nOlivia\nApril\nBrandi\nHolly\nKathryn\nAriel\nBethany\nBrianna\nDanielle\nCaitlin\nPaige\nCassandra\nMelissa\nSydney\nAlicia\nErin\nKara\nKendra\nLacey\nMariah\nRaven\nTara\nKristin\nMadison\nMichelle\nAlyssa\nAlexandria\nBreanna\nMeagan\nChelsey\nSummer\nAutumn\nCandace\nMonica\nNicole\nCatherine\nKatelyn\nLindsay\nPatricia\nRebekah\nShannon\nAngela\nBriana\nCasey\nFelicia\nNatalie\nAlexandra\nAlexis\nKelly\nLeah\nSavannah\nRachael\nBritney\nKaitlin\nMallory\nCassie\nMolly\nAlisha\nBrandy\nIesha\nJulie\nLisa\nAshton\nHayley\nJulia\nCandice\nCheyenne\nDestiny\nMarissa\nMisty\nNatasha\nTabitha\nAngel\nHope\nAmelia\nBailey\nKaitlyn\nKaylee\nKristina\nKrystal\nSabrina\nChasity\nHailey\nMargaret\nCarrie\nGabrielle\nJacqueline\nNikki\nAshlee\nBianca\nCharity\nDominique\nLeslie\nRandi\nStacey\nAbigail\nCara\nCarmen\nCaroline\nCynthia\nEbony\nKaren\nLatoya\nShawna\nChristine\nCortney\nJade\nKasey\nKiara\nMeghan\nMelanie\nRobin\nVeronica\nAngelica\nDesiree\nHillary\nMercedes\nTracy\nAbby\nCallie\nErika\nGrace\nShayla\nSierra\nStacy\nTessa\nVanessa\nAshleigh\nChloe\nKierra\nKrista\nShana\nTamara\nTia\nAdrienne\nAudrey\nBridget\nCarla\nCarolyn\nDevin\nJessie\nLacy\nLatasha\nMaggie\nMaranda\nMaria\nStormy\nTerra\nTiara\nToni\nJillian\nLillian\nLinda\nLyndsey\nMaegan\nNancy\nShaniqua\nTori\nValerie\nAshlie\nBarbara\nBrooklyn\nCarly\nEllen\nJaclyn\nJoanna\nKatlyn\nKatrina\nKellie\nLaken\nLori\nLydia\nMollie\nRobyn\nShanna\nWhitley\nBobbie\nChelsie\nChristian\nChristy\nEmma\nFaith\nJenna\nKelsi\nKelsie\nMagen\nMeredith\nMonique\nShelbi\nTabatha\nAlana\nAlisa\nAllie\nAllyson\nBritany\nCaitlyn\nChrista\nDeidra\nHaleigh\nHali\nJenny\nKala\nKarissa\nKassie\nKeisha\nKelli\nKiera\nKristi\nKristian\nMelinda\nPrecious\nRachelle\nSasha\nStaci\nTammy\nAlison\nAshli\nBrandie\nBrenda\nBrook\nCamille\nCassidy\nChelsi\nDana\nDeanna\nDeborah\nDiana\nElisabeth\nEmilee\nJalisa\nJerica\nKassandra\nKatelynn\nKirsten\nMelody\nPaula\nPriscilla\nRyan\nShelbie\nTanya\nTrisha\nTyler\nAdrian\nAdrianna\nAlesha\nAlexa\nAlysha\nAnastasia\nAnne\nAshlyn\nBreana\nClaire\nDebra\nDevon\nDonna\nEva\nHanna\nHilary\nJana\nJazmine\nJenifer\nJesse\nKathleen\nKristy\nKylie\nLaci\nLacie\nLatosha\nLoren\nMarisa\nMicah\nPamela\nPorsha\nRose\nShayna\nShelly\nSkylar\nSusan\nTanesha\nTeresa\nTerri\nYolanda\nAnn\nAnnie\nAriana\nAudra\nBridgette\nBrittni\nCecilia\nCheryl\nConstance\nDawn\nDenise\nDestinee\nDiamond\nDorothy\nHallie\nHollie\nJami\nJerrica\nJudith\nKailey\nKali\nKandace\nKanesha\nKari\nKristie\nKristyn\nKyla\nKyra\nLarissa\nMackenzie\nMacy\nMadeline\nMichaela\nNichole\nRacheal\nSandra\nShanika\nSidney\nStacia\nStefanie\nTasha\nTheresa\nTierra\nTosha\nWendy\nAbbie\nAerial\nAimee\nAlecia\nAlyson\nAnita\nArielle\nAubrey\nBeverly\nBillie\nBreann\nBrianne\nBritni\nBryanna\nCarol\nCayla\nChandra\nChasidy\nCherish\nChristen\nCierra\nCindy\nDakota\nDeana\nDemetria\nEricka\nFarrah\nGinger\nJacklyn\nJacquelyn\nJaimie\nJasmin\nJocelyn\nKaila\nKandice\nKatlin\nKayleigh\nKelley\nKeri\nKesha\nKirstie\nKourtney\nKristan\nLaquisha\nLeanna\nLesley\nLogan\nMagan\nMakenzie\nMara\nMartha\nMckenzie\nMeaghan\nMiesha\nReba\nRegan\nRenee\nRhiannon\nRhonda\nRikki\nRochelle\nSavanna\nSerena\nShanequa\nSharon\nSheena\nSheila\nSherry\nStacie\nTamika\nTanisha\nTiarra\nTonya\nJessica\nAshley\nBrittany\nSarah\nEmily\nTaylor\nKayla\nAmanda\nAmber\nSamantha\nChelsea\nMegan\nHannah\nLauren\nShelby\nRachel\nCourtney\nHaley\nHeather\nKelsey\nTiffany\nMorgan\nJasmine\nJennifer\nElizabeth\nWhitney\nStephanie\nJordan\nMary\nBrittney\nKatherine\nVictoria\nDanielle\nKimberly\nRebecca\nAllison\nLindsey\nKristen\nSara\nAnna\nAmy\nAndrea\nCaitlin\nErica\nBrianna\nNicole\nBrooke\nKatelyn\nChristina\nHolly\nLaura\nKatie\nAriel\nErin\nKaitlyn\nAlexandra\nAlyssa\nMichelle\nJamie\nApril\nAlexandria\nBrandi\nKathryn\nAlexis\nNatalie\nAlicia\nCassandra\nDestiny\nMiranda\nHayley\nCrystal\nMeagan\nOlivia\nMolly\nAutumn\nKristin\nKendra\nMadison\nMallory\nPaige\nSydney\nKrystal\nBethany\nBriana\nCasey\nChelsey\nMariah\nAlisha\nBailey\nBrandy\nDominique\nMelissa\nBianca\nBreanna\nCatherine\nLeslie\nChasity\nLisa\nSavannah\nTabitha\nTara\nAngel\nAngela\nBritney\nRaven\nRebekah\nSummer\nAbigail\nCandace\nKaitlin\nLeah\nRachael\nGabrielle\nMisty\nShannon\nCallie\nCaroline\nHailey\nLindsay\nMercedes\nAshton\nDesiree\nErika\nKelly\nLacey\nMaria\nFelicia\nJenna\nSierra\nCheyenne\nJulie\nKiara\nMargaret\nMeghan\nCandice\nCynthia\nJacqueline\nKara\nKatrina\nMarissa\nMelanie\nNatasha\nAshlee\nCortney\nHillary\nJulia\nKrista\nMonica\nNikki\nPatricia\nChristian\nChristine\nEbony\nKristina\nRobin\nSabrina\nShanice\nSusan\nTyler\nCara\nJodi\nKelsie\nCassie\nChristy\nClarissa\nDiamond\nHope\nMeredith\nTamara\nVeronica\nAdrienne\nCaitlyn\nCarrie\nChelsie\nGrace\nMackenzie\nShayna\nAlison\nCamille\nFaith\nJessie\nKylie\nVanessa\nAlexa\nAllyson\nAudrey\nCarly\nChloe\nDeanna\nEmma\nKaley\nKaylee\nKelli\nKristy\nMadeline\nShelbi\nWhitley\nAbby\nAshleigh\nBarbara\nClaire\nJaclyn\nKierra\nKirsten\nLydia\nMaranda\nMonique\nNancy\nShelbie\nCharlotte\nHeidi\nKali\nLori\nShayla\nTori\nAmelia\nBrooklyn\nDeidre\nHaleigh\nJade\nJillian\nKatelynn\nKelsi\nLatasha\nLinda\nLyndsey\nMaggie\nMicah\nMoriah\nNaomi\nSasha\nShawna\nSidney\nTia\nTrisha\nAngelica\nAshlyn\nAsia\nAubrey\nCarmen\nCassidy\nCecilia\nCharity\nChristin\nDakota\nHanna\nHaylee\nJami\nKaleigh\nKari\nKathleen\nKeisha\nKelley\nKirstie\nKristi\nKyra\nLacy\nLaken\nLatoya\nMaegan\nMckenzie\nPeyton\nShaniqua\nTabatha\nTammy\nTeresa\nTiffani\nTracy\nAlexandrea\nBria\nBridget\nCarissa\nChelsi\nCierra\nDana\nDenise\nDevin\nHallie\nHaylie\nHelen\nJaime\nJaimie\nJenny\nKaci\nKaitlynn\nKaren\nKarissa\nKasey\nKatlyn\nKellie\nKelsea\nKerri\nMagen\nPayton\nRandi\nShameka\nShana\nShelly\nStaci\nStevie\nTanisha\nTayler\nTiara\nValerie\nAlissa\nAshely\nAudra\nBlair\nBritany\nBrittani\nChristen\nDallas\nDeidra\nDevon\nDiana\nDominque\nEvelyn\nHalie\nJacinda\nJalisa\nJerrica\nJill\nKacey\nKassandra\nKeri\nKyla\nLarissa\nLily\nLogan\nLondon\nMarisa\nMichaela\nNichole\nRyan\nSandra\nSavanna\nShanna\nSharon\nStacey\nStacy\nSylvia\nTasha\nTerra\nTerri\nWhittney\nAbbey\nAlex\nAllie\nAriana\nBobbie\nBonnie\nBrea\nBreana\nBridgette\nBrittaney\nBrook\nCarla\nCarol\nChandler\nCiara\nCiera\nColby\nDesirae\nDorothy\nElisha\nEllen\nHollie\nJacey\nJacquelyn\nJerica\nJoy\nJoyce\nKalyn\nLacie\nLakeisha\nLakin\nLaney\nLatisha\nLora\nMartha\nMichael\nMiriam\nMollie\nMontana\nPaula\nRuby\nRuth\nShenika\nStormy\nTessa\nTina\nTonya\nTosha\nVirginia\nWendy\nAdrianna\nAlana\nAlisa\nAnn\nAntonia\nArielle\nAshlie\nAudriana\nBailee\nBobbi\nBrenda\nBrenna\nBrianne\nCarolyn\nCasandra\nCharissa\nDarian\nDelaney\nDestini\nDonna\nElaina\nElaine\nElise\nEricka\nHali\nIesha\nJana\nJanie\nJanna\nJoanna\nKaila\nKalli\nKanesha\nKarina\nKaylan\nKayleigh\nKaylon\nKesha\nKortney\nKristie\nKylee\nLaci\nLakyn\nLana\nLaquita\nLatifah\nLeanna\nMacey\nMadalyn\nMadelyn\nMagan\nMakayla\nMattie\nMelinda\nMelody\nNikita\nPamela\nPrecious\nRaquel\nReagan\nRochelle\nSadie\nSalena\nSavanah\nShaina\nShanika\nShatara\nShea\nSheila\nSkyler\nStacie\nStormie\nTanya\nTierra\nToni\nTraci\nAshley\nJessica\nSarah\nBrittany\nTaylor\nEmily\nAmber\nHannah\nKayla\nLauren\nSamantha\nHaley\nCourtney\nMegan\nElizabeth\nRachel\nShelby\nAmanda\nMorgan\nJasmine\nKelsey\nHeather\nVictoria\nTiffany\nJennifer\nLindsey\nMary\nStephanie\nWhitney\nAllison\nChelsea\nMadison\nRebecca\nDanielle\nJordan\nAlexis\nKatie\nBrianna\nBrooke\nKristen\nKaitlyn\nBrittney\nKatherine\nAnna\nKatelyn\nErica\nNicole\nAlexandria\nAlyssa\nKimberly\nSara\nOlivia\nAndrea\nChristina\nDestiny\nBailey\nBreanna\nLaura\nAmy\nMichelle\nMelissa\nMiranda\nSavannah\nSydney\nJamie\nHolly\nAlexandra\nBethany\nBriana\nCaitlin\nCheyenne\nKathryn\nApril\nPaige\nBrandi\nAlicia\nSierra\nHailey\nNatalie\nErin\nSummer\nCrystal\nAriel\nMallory\nRaven\nBritney\nKrystal\nTara\nAutumn\nChelsey\nKaylee\nKendra\nAbigail\nAngel\nAngela\nMariah\nTabitha\nCassandra\nHayley\nShannon\nCasey\nKristin\nLeslie\nJulie\nKristina\nMarissa\nCaitlyn\nChristian\nKara\nLacey\nMolly\nRebekah\nDominique\nKaitlin\nMonica\nSabrina\nCaroline\nDesiree\nKrista\nAlisha\nAshton\nAudrey\nBrooklyn\nEmma\nErika\nFelicia\nJulia\nMargaret\nMeagan\nMichaela\nTori\nBrandy\nCallie\nCassie\nGrace\nLacy\nMadeline\nVanessa\nCandace\nCassidy\nChasity\nJade\nLeah\nLisa\nCatherine\nJenna\nKatrina\nKelly\nAshlee\nChristine\nCynthia\nKiara\nRachael\nAshleigh\nCarrie\nGabrielle\nJacqueline\nKaren\nKelsie\nMeghan\nMelanie\nMercedes\nPatricia\nCandice\nCortney\nDana\nFaith\nLindsay\nMaria\nMisty\nPayton\nTamara\nAngelica\nBianca\nCara\nChandler\nCharity\nDeanna\nEbony\nKasey\nNatasha\nSavanna\nAllyson\nBria\nCarolyn\nChrista\nKyra\nTierra\nVeronica\nAlexa\nDarian\nHanna\nJoanna\nKatlyn\nKirsten\nKourtney\nKylie\nLaken\nLogan\nLydia\nMackenzie\nTaryn\nTia\nTiffani\nToni\nValerie\nAbby\nAdrienne\nAlissa\nChloe\nKarissa\nKenya\nKristi\nMaranda\nRobin\nTyler\nAimee\nAllie\nAubrey\nBobbie\nCarissa\nCiara\nClaire\nEllen\nHope\nJanie\nKathleen\nKendall\nKierra\nLori\nMakayla\nMicah\nMollie\nNancy\nNichole\nNikki\nPrecious\nRegan\nShanna\nSkylar\nTanya\nTessa\nTina\nAlana\nCierra\nDakota\nEva\nHallie\nJazmine\nJenny\nJillian\nKacie\nKadijah\nKari\nKatelynn\nKelsea\nLatasha\nLinda\nMeredith\nRobyn\nShana\nSharon\nShawna\nSusan\nTasha\nTiara\nTracy\nAlison\nAshlyn\nBarbara\nCarly\nChelsie\nDeborah\nDiamond\nHali\nHillary\nHunter\nIndia\nJill\nKali\nKassie\nKaylin\nKelli\nKhadijah\nKyla\nMaggie\nMckenzie\nMelody\nMonique\nPamela\nPaula\nPeyton\nShanice\nShelbi\nShelbie\nStacy\nTheresa\nVirginia\nYasmine\nAnne\nAudra\nBetty\nBrenna\nCarla\nCarol\nCasandra\nChristy\nDylan\nEden\nGloria\nHaleigh\nHeidi\nIsabella\nJalisa\nJohnna\nKala\nKassandra\nKeely\nLatisha\nLatoya\nLayla\nMandy\nPatience\nSandra\nShayla\nSkyler\nTanesha\nTonya\nTosha\nTracie\nTrisha\nAbbey\nAdrianna\nAlecia\nAmberly\nBrenda\nBridget\nCarlie\nCarmen\nCheyanne\nDaisy\nDallas\nElisabeth\nEmilee\nEricka\nEvelyn\nFrances\nHayden\nIesha\nJacquelyn\nJami\nJessie\nKaci\nKaitlynn\nKarina\nKatelin\nKaty\nKellie\nKeosha\nKeri\nLa\nLacie\nLaurel\nMaegan\nMarie\nMichele\nMikayla\nMoriah\nNakia\nRandi\nRegina\nSasha\nStacey\nStormy\nSydnee\nSylvia\nTanisha\nTeresa\nTerra\nTerri\nZoe\nAddison\nAdrian\nAdriana\nAlexander\nAlexia\nAlyson\nAmelia\nAna\nAngelique\nAnnie\nAriana\nAspen\nBaylee\nBeverly\nBreauna\nBridgett\nBridgette\nBrittni\nCarley\nCayla\nChantel\nCharlotte\nChina\nChristen\nClarissa\nClaudia\nDanyelle\nDenise\nDevin\nDevon\nDiana\nDorothy\nElise\nGabriela\nHailee\nHalie\nHarley\nHaylee\nHollie\nJacie\nJalyn\nJana\nJayla\nJesse\nJocelyn\nJodi\nKacey\nKaila\nKailey\nKalee\nKaleigh\nKanesha\nKaylynn\nKeanna\nKelcie\nKelley\nKelsi\nKiana\nKiera\nKirby\nKylee\nLakeisha\nLaquita\nLeanna\nLexis\nLoren\nLyndsay\nLynsey\nMacy\nMagan\nMagen\nMakenzie\nMelinda\nMia\nMontana\nNaomi\nPresley\nReagan\nSade\nScarlett\nShaina\nShaniqua\nShantell\nShea\nShelly\nShyla\nSidney\nSkye\nSkyla\nStacie\nStevie\nTabatha\nTraci\nAshley\nJessica\nBrittany\nSarah\nTaylor\nEmily\nHannah\nKayla\nSamantha\nMegan\nMorgan\nLauren\nHaley\nAmber\nElizabeth\nCourtney\nRachel\nJordan\nShelby\nAmanda\nTiffany\nHeather\nKelsey\nMary\nJasmine\nAlexis\nVictoria\nBrianna\nAnna\nWhitney\nMadison\nAllison\nKristen\nStephanie\nSara\nRebecca\nDanielle\nMiranda\nCaitlin\nJennifer\nKatelyn\nLindsey\nKatie\nChelsea\nKaitlyn\nKatherine\nKimberly\nSydney\nBrittney\nLaura\nBailey\nNicole\nChristina\nOlivia\nAbigail\nAlyssa\nBethany\nErin\nSavannah\nAlexandria\nDestiny\nErica\nAlexandra\nBrooke\nSierra\nAutumn\nAndrea\nBrandi\nPaige\nBreanna\nHolly\nAlicia\nKathryn\nHailey\nMichelle\nAmy\nApril\nBriana\nJamie\nMelissa\nRebekah\nKaitlin\nCheyenne\nKristin\nMariah\nMichaela\nCrystal\nHayley\nMolly\nRaven\nAngela\nAriel\nAshton\nCasey\nMeagan\nKaylee\nKendra\nLeslie\nMallory\nMarissa\nTara\nKhadijah\nLacey\nNatalie\nCassandra\nCassidy\nFelicia\nMadeline\nCaitlyn\nCaroline\nCatherine\nFaith\nJacqueline\nJulia\nLindsay\nRachael\nSummer\nTabitha\nAaliyah\nBrooklyn\nAshleigh\nAudrey\nGabrielle\nShannon\nAngelica\nKelly\nAlexa\nDominique\nMakayla\nSabrina\nTori\nAbby\nCassie\nJade\nKiara\nMackenzie\nMikayla\nKatlyn\nKendall\nMaria\nAngel\nBrandy\nKrista\nMargaret\nTyler\nCallie\nChelsey\nCynthia\nErika\nGrace\nHope\nJulie\nLeah\nMaggie\nMckenzie\nAlison\nAshlee\nAshlyn\nDesiree\nKristina\nLogan\nTamara\nVanessa\nBritney\nCandace\nCandice\nChloe\nClaire\nEmma\nKara\nKrystal\nLisa\nMeghan\nMercedes\nMonica\nPatricia\nSkylar\nBianca\nBridget\nCortney\nJenna\nKylie\nMelanie\nMeredith\nMicah\nMisty\nSadie\nTia\nAlisha\nAubrey\nChasity\nChristian\nHunter\nJazmine\nKatelynn\nMacy\nSavanna\nShawna\nSidney\nStacy\nAllyson\nBrenna\nCierra\nDenise\nEbony\nHaylee\nKali\nKasey\nKirsten\nLillian\nNatasha\nPayton\nTayler\nAlexus\nDallas\nHarley\nKalyn\nLaken\nSkyler\nTiara\nTierra\nAllie\nAsia\nCarley\nCarly\nCarmen\nCharity\nDarian\nDiamond\nDiana\nHanna\nJustice\nKarissa\nKierra\nKyla\nLydia\nPeyton\nReagan\nTasha\nTessa\nVeronica\nVirginia\nAbbey\nAliyah\nBobbie\nCara\nCarrie\nDana\nEmilee\nJacquelyn\nJoanna\nJosie\nKathleen\nKayleigh\nKelli\nKennedy\nKiana\nLacy\nLori\nMaranda\nMarina\nNikki\nRobin\nRobyn\nTeresa\nToni\nTracy\nAbbie\nAdriana\nBrittanie\nChandler\nChelsie\nChristine\nCiara\nDeanna\nHeaven\nKailey\nKaren\nKari\nKatlin\nKatrina\nKourtney\nLatasha\nLoren\nMelody\nPrecious\nRandi\nRuby\nSandra\nSasha\nShayla\nShea\nTiffani\nValerie\nAdrian\nAdrienne\nAlexandrea\nAlissa\nAudra\nBarbara\nBetty\nBillie\nBrenda\nBritany\nBrittani\nCamille\nCarlee\nClara\nDakota\nDestinee\nHaven\nHeidi\nHollie\nJaclyn\nJenny\nJillian\nKassandra\nKelsi\nKelsie\nKenya\nKristian\nLatisha\nLyndsey\nMadelyn\nMaegan\nMarisa\nMonique\nMontana\nPaxton\nSavanah\nSharon\nShayna\nSherry\nStevie\nStormy\nSusan\nTonya\nWhitley\nAlana\nAlex\nAlexia\nAmelia\nAyla\nBobbi\nBrooklynn\nCameron\nCarissa\nCasandra\nCharlie\nChrista\nChristen\nChristy\nCiera\nDelaney\nDesirae\nDevon\nDomonique\nDonna\nEllen\nHaleigh\nHallie\nHayden\nJana\nJasmin\nJessie\nJodi\nJoy\nKaci\nKaley\nKanesha\nKassidy\nKassie\nKenisha\nKimber\nKristan\nLaci\nLakendra\nLeigh\nMakenzie\nMattie\nMaya\nMckenna\nMia\nNaomi\nNina\nOctavia\nPamela\nReba\nRegan\nRegina\nRikki\nRiley\nSerena\nShana\nShanice\nShanna\nShelbi\nTiana\nAdrianna\nAlaina\nAlecia\nAli\nAlyson\nAlyssia\nAshlynn\nBethanie\nBlair\nBreana\nBreonna\nBrianne\nBridgette\nCarol\nCarolyn\nCindy\nClaudia\nConstance\nDeborah\nDenisha\nDevin\nEmilie\nEva\nGeorgia\nGloria\nHalee\nImani\nJacey\nJada\nJanna\nJeri\nJill\nKacey\nKadedra\nKailyn\nKaylie\nKaylyn\nKelley\nKelsea\nKiersten\nKindra\nKionna\nKristi\nKristy\nLacie\nLeanna\nLexie\nMacey\nMagan\nMara\nMarla\nMartha\nMckayla\nMicaela\nNancy\nNichole\nParis\nPaula\nRaquel\nRenee\nRosa\nShaquilla\nSharee\nSuzanne\nSydnee\nSymone\nTatyana\nWinter\nYasmin\nZoe\nAshley\nJessica\nHannah\nEmily\nSarah\nBrittany\nKayla\nLauren\nTaylor\nMorgan\nMadison\nHaley\nMegan\nSamantha\nCourtney\nRachel\nAmber\nShelby\nElizabeth\nAnna\nBrianna\nAlexis\nDestiny\nJasmine\nMary\nVictoria\nSydney\nTiffany\nJordan\nKaitlyn\nAmanda\nAllison\nKelsey\nAlyssa\nLindsey\nHeather\nBailey\nKristen\nRebecca\nBrittney\nAlexandria\nOlivia\nAutumn\nStephanie\nAbigail\nKatelyn\nKatherine\nSavannah\nBreanna\nWhitney\nKatie\nMiranda\nAlexandra\nJennifer\nDanielle\nLaura\nErica\nSara\nSierra\nBethany\nChelsea\nAndrea\nKimberly\nBrooke\nCaitlin\nNatalie\nPaige\nNicole\nJamie\nAmy\nBriana\nCheyenne\nChristina\nHolly\nMackenzie\nErin\nKaylee\nHailey\nRaven\nCatherine\nEmma\nKaitlin\nSummer\nCassidy\nCrystal\nGabrielle\nKendra\nMakayla\nMallory\nMichaela\nAngel\nLeah\nMelissa\nAngela\nAshton\nKelly\nMichelle\nMikayla\nBrooklyn\nKathryn\nMariah\nBrandi\nMaria\nAaliyah\nAbby\nApril\nHayley\nKiara\nLacey\nLindsay\nMeagan\nAlicia\nAriel\nBrandy\nCassandra\nGrace\nKylie\nMarissa\nRachael\nAlisha\nCallie\nHanna\nKara\nMckenzie\nRebekah\nSabrina\nTori\nAlexa\nFaith\nKristin\nAshlyn\nLogan\nMadeline\nMolly\nSidney\nTara\nVanessa\nAsia\nChloe\nDakota\nJacqueline\nJulia\nKrystal\nLeslie\nPeyton\nShannon\nCandace\nCarrie\nCierra\nCynthia\nDesiree\nJade\nJulie\nKennedy\nAshlee\nDeanna\nErika\nKatelynn\nKrista\nAdriana\nAudrey\nHope\nJenna\nJessie\nKirsten\nMercedes\nMonica\nPayton\nSkylar\nTamara\nCaroline\nCasey\nKierra\nMelanie\nNatasha\nPatricia\nTiara\nAliyah\nBianca\nBritney\nDominique\nKasey\nKendall\nKristina\nSandra\nTyler\nVeronica\nBrenda\nCaitlyn\nCarly\nChandler\nChelsey\nClaire\nHunter\nJosie\nJustice\nKaylin\nMaggie\nMeredith\nRacheal\nRandi\nSavanna\nAngelica\nBrenna\nCiara\nDana\nDestinee\nDestiney\nKali\nReagan\nAlison\nAnnie\nAshleigh\nCassie\nChasity\nEbony\nKatlyn\nKelli\nMacey\nMaya\nPatience\nSelena\nToni\nZoe\nAdrianna\nChristian\nChristine\nJordyn\nKaren\nKassandra\nKaylie\nLydia\nMargaret\nNikki\nRobin\nShayla\nShelbi\nTierra\nAllie\nBaylee\nCheyanne\nEmilee\nFelicia\nIvy\nJazmine\nKaitlynn\nKaley\nKaty\nKellie\nLacy\nLexie\nMelody\nTamera\nTrinity\nTristan\nAlexandrea\nAlexus\nAllyson\nAspen\nCandice\nCarley\nCortney\nDeja\nHallie\nHaylee\nJada\nKatrina\nKiana\nKylee\nLaken\nLoren\nMadelyn\nMaegan\nSasha\nStacy\nTatyana\nVirginia\nAnne\nArianna\nAubrey\nBreonna\nCharity\nChristy\nCindy\nDenise\nEva\nGina\nHaven\nHeaven\nJayla\nJoanna\nJodi\nKailey\nKari\nKelsie\nLaci\nLisa\nLora\nLori\nLyric\nMakenzie\nMisty\nMollie\nPrecious\nRegan\nShania\nTabitha\nTia\nWendy\nAbbie\nAmelia\nAshlynn\nAva\nBlair\nCharlotte\nChelsie\nChristen\nDelaney\nDiamond\nDiana\nGabriel\nGabriella\nJasmin\nJenny\nKalyn\nKathleen\nKelley\nKourtney\nKyla\nKyra\nMacy\nMeghan\nMikaela\nNichole\nPamela\nRobyn\nScarlett\nStormie\nStormy\nTanisha\nTayler\nTeresa\nTonya\nTyra\nAddison\nAdrienne\nAlaina\nAlex\nAlexia\nAli\nAlissa\nAna\nAnastasia\nAnn\nAriana\nBarbara\nBobbie\nBreana\nBridget\nCaleigh\nCarissa\nCarlee\nDaisha\nDaisy\nDarby\nDarian\nDeborah\nDevin\nDevon\nDonna\nEssence\nGeorgia\nGloria\nHaleigh\nHalle\nHillary\nJalisa\nKaci\nKassidy\nKatelin\nKatlin\nKelsea\nKenya\nKhadijah\nKiera\nLakin\nLinda\nLyndsey\nMacie\nMarie\nMarisa\nMartha\nMia\nMicah\nMonique\nNancy\nShayna\nSkyla\nSkyler\nStacey\nStevie\nSuzanna\nTheresa\nAdrianne\nAimee\nAlana\nAlondra\nAnita\nAshlin\nAudra\nAudrianna\nAvery\nBillie\nBreann\nBridgette\nBritany\nCaley\nCameron\nCamille\nCara\nCarol\nCarolyn\nChrista\nClara\nClarissa\nDallas\nElisabeth\nElise\nEllen\nEmerald\nEricka\nEvelyn\nFallon\nHeidi\nJaclyn\nJerrica\nKaila\nKaleigh\nKarina\nKarissa\nKarla\nKassie\nKeely\nKelsi\nKeyanna\nLexus\nLillian\nMadalyn\nMadeleine\nMandy\nMaranda\nMckenna\nMikala\nMyranda\nNaomi\nParis\nRaegan\nRosalyn\nRuth\nSadie\nShana\nShawna\nSusan\nSydnie\nTabatha\nTarah\nTaryn\nTesla\nTessa\nTiera\nTiffani\nTina\nTracy\nValerie\nWhitley\nHannah\nEmily\nAshley\nJessica\nSarah\nTaylor\nMadison\nKayla\nBrittany\nHaley\nSamantha\nCourtney\nLauren\nAlexis\nMorgan\nShelby\nMegan\nRachel\nElizabeth\nAmber\nRebecca\nBrianna\nAnna\nDestiny\nJasmine\nSydney\nVictoria\nKaitlyn\nKelsey\nAllison\nBailey\nJordan\nAmanda\nCheyenne\nTiffany\nKatelyn\nMary\nOlivia\nKristen\nHeather\nKatie\nLindsey\nStephanie\nKatherine\nSierra\nSavannah\nAlyssa\nJennifer\nAbigail\nWhitney\nBrooke\nSara\nAlexandria\nBreanna\nDanielle\nMiranda\nAutumn\nKaylee\nKimberly\nNatalie\nAlexandra\nPaige\nAndrea\nBrittney\nKaitlin\nMakayla\nSummer\nCaitlin\nErin\nFaith\nHayley\nHolly\nJamie\nMackenzie\nHailey\nChelsea\nSabrina\nChristina\nErica\nGabrielle\nKristin\nNicole\nAshton\nMichaela\nBethany\nLaura\nShania\nMadeline\nRaven\nAshlyn\nBrooklyn\nCassidy\nCrystal\nMariah\nMolly\nEmma\nKathryn\nMallory\nAngel\nAbby\nKendra\nMichelle\nJade\nKelly\nMaria\nMelissa\nPayton\nAmy\nAngela\nCaitlyn\nKennedy\nLacey\nPeyton\nAlicia\nBrandy\nBriana\nCassandra\nGrace\nLeah\nAudrey\nDominique\nHope\nCasey\nRachael\nAlexa\nAlexus\nAllie\nDeja\nJulia\nKylie\nAshlee\nCaroline\nChasity\nMckenzie\nMonica\nNatasha\nAriel\nMikayla\nTori\nApril\nBrandi\nChloe\nHaylee\nLogan\nLydia\nMaggie\nVanessa\nAshleigh\nCallie\nLeslie\nTabitha\nTara\nTiara\nBrenda\nBritney\nCynthia\nSavanna\nCandace\nCarly\nKara\nKatlyn\nKierra\nKristina\nLillian\nMarissa\nMeagan\nMicah\nVeronica\nVirginia\nAaliyah\nBaylee\nDiana\nEmilee\nJada\nJulie\nKatelynn\nKelsie\nKrystal\nMargaret\nMelanie\nNikki\nShannon\nShayla\nCandice\nCatherine\nErika\nHanna\nJenna\nKiara\nMacy\nMeghan\nPatricia\nRebekah\nSadie\nTamara\nTyler\nAlissa\nAna\nAngelica\nBridget\nCharity\nChelsey\nDakota\nDeanna\nHaleigh\nJacqueline\nJustice\nKathleen\nKirsten\nKyla\nLacy\nLindsay\nLisa\nMaya\nSkylar\nAshlie\nCarrie\nChristy\nDestinee\nDiamond\nHarley\nHaven\nJessie\nJosie\nKendall\nLinda\nMadelyn\nMeredith\nRegan\nSelena\nShawna\nTierra\nValerie\nAlison\nChandler\nChristian\nClaire\nClara\nJayla\nJoanna\nKaylin\nKourtney\nMercedes\nMia\nMoesha\nRobin\nSkye\nAddison\nAubrey\nBianca\nCarley\nDana\nDelaney\nDevin\nKailey\nKaley\nKatrina\nKeely\nKrista\nLeigh\nMadalyn\nMckenna\nMollie\nTayler\nAlex\nAlisha\nAshlynn\nBreana\nCheyanne\nCiara\nCierra\nDallas\nDarby\nJaclyn\nJacquelyn\nJodi\nKailee\nKaitlynn\nKassidy\nKaylyn\nKelli\nKiana\nKylee\nLeanna\nLori\nMisty\nPrecious\nReagan\nRiley\nRosa\nSavanah\nSkyler\nStormy\nTia\nToni\nZoe\nAlana\nAlexia\nAlice\nAllyson\nAnnie\nAriana\nAspen\nCara\nCassie\nClarissa\nDesiree\nHunter\nJasmin\nKaren\nKasey\nKatlin\nKellie\nKelsea\nLacie\nMaegan\nMaranda\nMikaela\nRobyn\nSidney\nTamera\nTatyana\nTessa\nTina\nTristen\nAdriana\nAdrianna\nAnne\nAsia\nAvery\nBailee\nBridgette\nCarolyn\nChristen\nChristine\nClaudia\nCortney\nEvelyn\nJerrica\nKali\nKassandra\nKayleigh\nKenya\nKenzie\nKristy\nKyra\nLatasha\nMalorie\nMarisa\nMckayla\nPatience\nShayna\nStacey\nTatiana\nTerra\nTristan\nTyra\nAbbie\nAerial\nAlanna\nAmelia\nAnita\nAshanti\nBrittani\nBrooklynn\nCamille\nCarlie\nCarmen\nDaisy\nDebra\nDenise\nElisabeth\nFelicia\nFelisha\nGabriel\nHailee\nHalie\nHayden\nHeaven\nIndia\nIvy\nJaime\nJamia\nJazmine\nJessi\nJillian\nJohnna\nJoy\nKaleigh\nKeeley\nKirby\nLatisha\nLaurie\nLesley\nLexi\nLyric\nMacey\nMacie\nMaddison\nMakenzie\nMelody\nMikala\nMiracle\nMontana\nRandi\nScarlett\nShaina\nShelbie\nSusan\nTeresa\nTerri\nTracy\nAbbigail\nAdrienne\nAja\nAliyah\nAlysa\nAlyson\nArielle\nBonnie\nBryanna\nCameron\nCarla\nCarol\nCharlotte\nChastity\nCristina\nCydney\nDesirae\nDomonique\nDusty\nEbony\nEden\nEleanor\nElise\nElisha\nGloria\nIsabella\nJennie\nJenny\nKaci\nKalyn\nKari\nKarissa\nKatelin\nKaylan\nKaylen\nKaylie\nKeanna\nKeisha\nKelsi\nKennedi\nKiley\nKori\nLaci\nLaken\nLaney\nLeann\nLexie\nLily\nLoren\nMartha\nMonique\nNadia\nNina\nNora\nRuby\nSavana\nShantel\nShelly\nStacy\nTamia\nTaryn\nTyesha\nWhitley\nZaria\nHannah\nEmily\nMadison\nAshley\nSarah\nTaylor\nBrittany\nLauren\nJessica\nHaley\nAlexis\nElizabeth\nSamantha\nSydney\nMorgan\nShelby\nKayla\nMegan\nRachel\nCourtney\nAnna\nBrianna\nMary\nJordan\nDestiny\nJasmine\nAmber\nAlyssa\nAllison\nBailey\nVictoria\nAbigail\nAmanda\nOlivia\nRebecca\nKaitlyn\nSavannah\nAutumn\nSara\nBreanna\nLindsey\nJennifer\nKatelyn\nSierra\nAndrea\nHailey\nHeather\nKelsey\nDanielle\nKatherine\nAlexandria\nKimberly\nLaura\nKristen\nTiffany\nBrittney\nMadeline\nMakayla\nNatalie\nBethany\nBrooke\nFaith\nMariah\nStephanie\nWhitney\nCheyenne\nErica\nKatie\nNicole\nAlexandra\nBrooklyn\nPaige\nSummer\nMackenzie\nMichaela\nAshlyn\nEmma\nJamie\nMikayla\nErin\nHayley\nCaitlin\nMonica\nChristina\nJada\nKaitlin\nGabrielle\nKaylee\nMiranda\nCassidy\nAbby\nBriana\nCaroline\nMckenzie\nAdrianna\nAshton\nChelsea\nMaria\nSabrina\nAlicia\nCaitlyn\nKathryn\nRaven\nChloe\nGrace\nJulia\nMallory\nReagan\nLeah\nTara\nApril\nKennedy\nMichelle\nPayton\nAmy\nChasity\nJosie\nKara\nRebekah\nAlexa\nAngel\nBrandi\nKristin\nMarissa\nCatherine\nClaire\nHolly\nKendra\nLeslie\nAlexus\nCrystal\nHanna\nMargaret\nMeagan\nRachael\nSavanna\nShannon\nAriel\nCassie\nErika\nJenna\nKatelynn\nKyra\nLydia\nMelissa\nAlisha\nCassandra\nCierra\nKelly\nMeredith\nMolly\nSidney\nTessa\nTori\nAaliyah\nAsia\nAudrey\nBaylee\nChristian\nHaylee\nHope\nKristina\nMia\nSkylar\nVanessa\nAllyson\nDestinee\nKendall\nKylie\nMaya\nPeyton\nAlison\nAngela\nAshlynn\nCallie\nDiana\nDominique\nJade\nKyla\nLacey\nMakenzie\nMercedes\nTabitha\nCasey\nDeanna\nDiamond\nHunter\nKelsie\nKirsten\nLogan\nVeronica\nCarly\nDeja\nDesiree\nEmilee\nJacqueline\nKaleigh\nKiara\nNikki\nZoe\nBrandy\nBrenda\nJayla\nKatlyn\nKrista\nLindsay\nMadelyn\nMaggie\nPatricia\nSophia\nAna\nAngelica\nAnnie\nAshlee\nCiara\nHeidi\nIsabella\nJazmine\nKaley\nKaylin\nLillian\nLoren\nMelanie\nNatasha\nSandra\nShayla\nTiana\nValerie\nAlexia\nAriana\nAubrey\nAvery\nBryanna\nCandace\nDakota\nStormy\nTamia\nTia\nArianna\nAshleigh\nBailee\nCarrie\nCharity\nCheyanne\nCynthia\nEbony\nHaleigh\nJessie\nKailey\nKaitlynn\nKali\nKatrina\nLacy\nLily\nMacy\nMelody\nMicah\nMisty\nTyra\nAddison\nAnastasia\nBreana\nBritney\nDaisy\nGabriel\nHeaven\nJulie\nJustice\nKailee\nKarina\nKasey\nKassidy\nKierra\nLinda\nMeghan\nPrecious\nSkyler\nSydnie\nTamara\nVirginia\nWhitley\nAdriana\nAdrienne\nAlissa\nAllie\nAlyson\nAmelia\nAnn\nBridget\nCameron\nCarlie\nCortney\nDana\nDelaney\nElisabeth\nEmilie\nGabriela\nHelen\nKalie\nKallie\nKalyn\nKarla\nKaylen\nKaylynn\nKourtney\nLeanna\nLisa\nLyndsey\nMadilyn\nMaegan\nMakala\nMaranda\nMattie\nNaomi\nRiley\nRuby\nShania\nShayna\nShelbie\nTaryn\nTatiana\nTiara\nTristan\nTyler\nAspen\nBria\nBrooklynn\nCarolina\nChandler\nChristine\nChristy\nClaudia\nDeborah\nIvy\nJodi\nKaren\nKayli\nKiana\nKylee\nLauryn\nLilly\nMarisa\nMoesha\nMollie\nRegina\nRobin\nSadie\nSasha\nSelena\nShakira\nShaylee\nStormie\nSydnee\nTatum\nTina\nToni\nAbbey\nAbbie\nAlaina\nAlana\nAliyah\nAnne\nBobbie\nBrianne\nCamryn\nCandice\nCarissa\nCarley\nCarmen\nChelsey\nDarby\nDemi\nElexis\nGloria\nHarley\nIsis\nJacquelyn\nJaycee\nJazmin\nJenny\nJordyn\nJosey\nJoy\nKaila\nKarissa\nKate\nKatelin\nKaylea\nKaylie\nKaylyn\nKeely\nKeri\nKristyn\nLexie\nMadeleine\nMandy\nMarie\nMikala\nNancy\nRobyn\nRose\nSabra\nSavanah\nShana\nShanna\nShauna\nSky\nSophie\nTaelor\nTheresa\nTierra\nAlayna\nAleah\nAlejandra\nAllyssa\nAnnika\nAshlie\nAubree\nAudra\nAustin\nBayley\nBlair\nBonnie\nCara\nCarla\nCarlee\nCarol\nCayla\nDallas\nDanyelle\nDarian\nDestiney\nDestinie\nEden\nEvelyn\nFelicia\nHalie\nHayden\nHaylie\nImani\nIsabel\nJackie\nJessika\nJillian\nJosephine\nJulianna\nKaci\nKaliyah\nKari\nKathleen\nKaty\nKaylan\nKeisha\nKenna\nKira\nKristy\nKrystal\nKyleigh\nLaken\nLaurel\nLillie\nLinsey\nLondon\nLorin\nLyric\nMartha\nMiracle\nMontana\nMyesha\nNichole\nNina\nPatience\nRandi\nRaquel\nRegan\nRylee\nRyleigh\nSavana\nShantel\nShawna\nShea\nShelly\nSkye\nSonya\nStacie\nStacy\nTatyana\nTeresa\nTianna\nTiffani\nTonya\nTrinity\nWendy\nYasmine\nHannah\nMadison\nEmily\nTaylor\nSarah\nAlexis\nJessica\nAshley\nHaley\nLauren\nElizabeth\nKayla\nMorgan\nDestiny\nAnna\nKaitlyn\nMegan\nBrittany\nSamantha\nAbigail\nRachel\nJordan\nShelby\nSydney\nVictoria\nBrianna\nBailey\nAlyssa\nCourtney\nKatelyn\nMary\nKelsey\nJasmine\nAmber\nMakayla\nRebecca\nSavannah\nOlivia\nEmma\nAllison\nJennifer\nFaith\nKaylee\nMadeline\nSierra\nBreanna\nSara\nBrooke\nErin\nHailey\nAutumn\nSummer\nNatalie\nPaige\nLindsey\nCheyenne\nWhitney\nHeather\nKimberly\nKristen\nAmanda\nBethany\nKatherine\nStephanie\nKatie\nAlexandria\nGabrielle\nMckenzie\nBrittney\nJulia\nGrace\nTiffany\nDanielle\nKaitlin\nAshton\nBrooklyn\nCaitlin\nErica\nMariah\nCaitlyn\nCassidy\nHope\nJade\nMackenzie\nChloe\nLaura\nJamie\nMaria\nMikayla\nAngel\nChristina\nKennedy\nBriana\nAmy\nKathryn\nMiranda\nAlexandra\nAndrea\nClaire\nHanna\nKatelynn\nMallory\nMichelle\nSabrina\nAbby\nAlexus\nKylie\nLeah\nMelissa\nPayton\nReagan\nAngela\nAriel\nCatherine\nMichaela\nMonica\nTori\nCaroline\nLacey\nBaylee\nHayley\nNicole\nAlicia\nCassandra\nDiana\nMercedes\nMolly\nRachael\nSidney\nAshlyn\nCallie\nJada\nMadelyn\nCynthia\nKristin\nMarissa\nRaven\nRebekah\nTabitha\nVanessa\nZoe\nCasey\nChelsea\nMeghan\nShannon\nDominique\nPeyton\nSkyler\nAudrey\nDestinee\nHolly\nJenna\nLogan\nSelena\nBailee\nCierra\nKara\nKendall\nKendra\nSkylar\nSophia\nAllie\nAllyson\nBrenda\nCassie\nChasity\nHaylee\nKyra\nLeslie\nPatricia\nSavanna\nStormy\nTamara\nTia\nAngelica\nApril\nDiamond\nErika\nHeaven\nKatlyn\nKelly\nMaggie\nMia\nAriana\nDesiree\nEmilee\nJillian\nJosie\nKaitlynn\nKelsie\nKirsten\nMacy\nTessa\nTyra\nVeronica\nAlexa\nAvery\nHallie\nJayla\nKristina\nMeagan\nAaliyah\nAddison\nAdriana\nAlexia\nAlly\nAshlee\nBg\nBrandy\nCarmen\nChristian\nIsabella\nKiara\nLydia\nMaegan\nMargaret\nMaya\nMya\nAbbey\nAbbigail\nAsia\nAspen\nBrandi\nDana\nJasmin\nJordyn\nKallie\nKathleen\nKylee\nMadalyn\nMicah\nShayla\nTyler\nAdrianna\nAlana\nAshleigh\nAubrey\nBianca\nDallas\nDeja\nHaven\nJacqueline\nKaren\nKassidy\nKelli\nKira\nLexie\nMakenzie\nMelanie\nMiracle\nRegan\nSadie\nTamera\nAmelia\nCameron\nCarley\nCortney\nCrystal\nDakota\nDelaney\nHayden\nKrista\nKyla\nLily\nLinda\nLindsay\nRiley\nTatyana\nAbbie\nAlison\nAshlynn\nCamryn\nCara\nCarol\nCheyanne\nDaja\nDeanna\nDenise\nEssence\nGuadalupe\nImani\nJazmine\nJustice\nKaci\nKailey\nKeely\nKianna\nKourtney\nLiliana\nLillian\nMacey\nMckayla\nMollie\nMoriah\nNatasha\nNia\nNikki\nPatience\nRacheal\nRose\nSandra\nScarlett\nShawna\nTamia\nTara\nValerie\nVirginia\nAdrian\nAlisha\nAlissa\nAlondra\nAnne\nAyanna\nCarly\nCharlotte\nClara\nClarissa\nClaudia\nDevin\nEbony\nEsmeralda\nHalle\nHeidi\nJoanna\nKaleigh\nKarissa\nKasey\nKayleigh\nKaylyn\nMadyson\nMakenna\nMelody\nMeredith\nMisty\nRobin\nSavanah\nShania\nSpencer\nSusan\nSydnee\nAlejandra\nAlyson\nAna\nAnastasia\nBritany\nCailey\nCarla\nChandler\nCharity\nDarby\nDestini\nElaine\nElisabeth\nEvelyn\nGabriella\nHailee\nHarley\nHaylie\nIvy\nJaden\nJulianne\nKali\nKalyn\nKamryn\nKarlee\nKatelin\nKaylin\nKenya\nLacy\nLauryn\nLillie\nLisa\nLoren\nLucy\nMaddison\nMikaela\nMiriam\nNaomi\nShaylee\nShea\nSylvia\nTabatha\nTaliyah\nTatum\nTeresa\nTierra\nTiffani\nTrinity\nWendy\nWhitley\nZaria\nAlexander\nAlize\nAlli\nAmari\nAnnabelle\nArianna\nAshlie\nBrianne\nBritney\nBryanna\nCamille\nCandice\nCindy\nEboni\nElla\nEmerald\nEricka\nEva\nFrances\nIndia\nJayden\nJenny\nJulie\nKacie\nKalee\nKameron\nKarla\nKarlie\nKassandra\nKatlin\nKaycee\nKaylan\nKaylie\nKaylynn\nKaytlyn\nKelsi\nKiana\nKinley\nKristian\nLaken\nLesley\nLyric\nMaci\nMadelynn\nMadisyn\nMarilyn\nMarley\nMattie\nMckenna\nMicaela\nMontana\nNancy\nParis\nRuby\nRylee\nSkye\nTatiana\nToni\nYasmine\nYesenia\nZoey\nAdrienne\nAkira\nAlanna\nAleah\nAlex\nAngelique\nAnnie\nAurora\nBeth\nBlair\nBreana\nBrittnee\nBrooklynn\nCaitlynn\nCandace\nCarlee\nCarli\nCarlie\nCarolyn\nChrista\nChristine\nChristy\nChyna\nConnie\nCora\nDelia\nDevon\nEden\nEdith\nFelicia\nGabriel\nGabriela\nGenesis\nGillian\nGloria\nHalie\nHelen\nJana\nJayde\nJocelyn\nJodi\nJuliana\nKalynn\nKarina\nKatrina\nKaylah\nKayle\nKaylea\nKelcie\nKelsea\nKenna\nKenzie\nKeyonna\nKirstie\nKrystal\nKrysten\nLa\nLarissa\nLatavia\nLexi\nMadeleine\nMadilyn\nMakaila\nMariana\nNichole\nParker\nPhoebe\nRaegan\nRhiannon\nRikki\nRobyn\nSasha\nSerena\nSerenity\nShae\nShasta\nShayna\nShyann\nSimone\nSophie\nStacy\nTaryn\nTayla\nTerra\nTerri\nTiana\nTiara\nTristan\nTristen\nHannah\nMadison\nEmily\nSarah\nTaylor\nAshley\nAlexis\nLauren\nHaley\nJessica\nElizabeth\nAnna\nDestiny\nSydney\nKayla\nMorgan\nVictoria\nSamantha\nBrianna\nAbigail\nMegan\nJasmine\nSavannah\nRachel\nBrittany\nKaitlyn\nShelby\nBailey\nMary\nAlyssa\nOlivia\nMakayla\nCourtney\nAmber\nJordan\nHailey\nAllison\nBreanna\nKatelyn\nEmma\nGrace\nNatalie\nSierra\nKaylee\nRebecca\nAutumn\nAmanda\nJennifer\nKatherine\nAlexandria\nGabrielle\nKatie\nFaith\nSara\nCheyenne\nBethany\nStephanie\nKimberly\nTiffany\nErin\nKelsey\nWhitney\nAbby\nBrooke\nBrooklyn\nAngel\nChloe\nPaige\nBrittney\nDanielle\nKiara\nMaria\nMikayla\nSummer\nMackenzie\nCaroline\nLindsey\nMckenzie\nNicole\nAlexandra\nAshlyn\nMariah\nCassidy\nHeather\nJulia\nLaura\nMadeline\nKathryn\nSkylar\nKylie\nAndrea\nCaitlin\nCallie\nKennedy\nKristen\nLeah\nHayley\nCaitlyn\nPeyton\nRebekah\nJada\nJamie\nMichelle\nKaitlin\nMya\nAudrey\nCassandra\nHope\nMaggie\nMallory\nMolly\nReagan\nKara\nLillian\nMichaela\nRiley\nVanessa\nAlicia\nErica\nKendra\nMakenzie\nRaven\nAshton\nCatherine\nHanna\nHolly\nJenna\nLeslie\nAlexa\nAmy\nAvery\nKatelynn\nKatlyn\nMeghan\nMiranda\nSelena\nTrinity\nAriel\nBriana\nCameron\nClaire\nMelissa\nSabrina\nZoe\nAngela\nAsia\nHaylee\nMadelyn\nTara\nApril\nDakota\nJayla\nPayton\nTori\nVeronica\nBritney\nChristina\nGracie\nIsabella\nLydia\nPatricia\nSidney\nAshlee\nAshlynn\nDiamond\nEmilee\nKassidy\nKelly\nLacey\nAllie\nBailee\nBaylee\nKirsten\nKyra\nMelanie\nMeredith\nStormy\nAddison\nAlison\nAlissa\nAllyson\nBrandi\nChelsea\nCrystal\nJosie\nKierra\nLauryn\nMacey\nMacy\nMarissa\nMicah\nSavanna\nShayla\nSkyler\nTabitha\nTatyana\nAshleigh\nCassie\nCierra\nGeorgia\nIsabel\nJade\nMeagan\nSophia\nTia\nAlexus\nAngelica\nCamryn\nCasey\nChasity\nCynthia\nDesiree\nHarley\nJoanna\nKaleigh\nMacie\nMadalyn\nAaliyah\nAdrianna\nAnastasia\nAriana\nBrenda\nBrooklynn\nCarly\nGabriela\nJakayla\nJazmine\nKelsie\nKristin\nKrystal\nKylee\nLacy\nMakenna\nMia\nRachael\nRobin\nSadie\nSydnee\nValerie\nVivian\nAbbey\nAlexia\nCarmen\nCarson\nClaudia\nDaisy\nDelaney\nDestany\nDominique\nEden\nErika\nHaleigh\nHeaven\nJacqueline\nJillian\nKailey\nKiana\nLogan\nLoren\nMonica\nAubrey\nChandler\nCindy\nDestinee\nJordyn\nKasey\nKayleigh\nKaylin\nLily\nMargaret\nMaya\nNia\nSerenity\nShannon\nSydni\nTessa\nTierra\nAbbie\nAdriana\nAlana\nAmelia\nAna\nAnnabelle\nAnne\nAspen\nBrandy\nBriley\nCarley\nChristen\nChristian\nChristine\nDestini\nDiana\nElisabeth\nHallie\nHayden\nIsabelle\nJaclyn\nJazmin\nJessie\nJulie\nKaley\nKamryn\nKennedi\nKeri\nKyla\nLexi\nLisa\nMadilyn\nMercedes\nMiracle\nMiriam\nRosa\nShania\nShawna\nTiara\nTristan\nAlaina\nAshtyn\nAyanna\nBaby\nBonnie\nBryanna\nCarissa\nCarlee\nChelsey\nDana\nDeanna\nHalle\nHeidi\nHunter\nJayden\nKallie\nKaren\nKarina\nKarlie\nKathleen\nKayley\nKaylynn\nKeely\nKenya\nKira\nKristina\nLexie\nNatasha\nRegan\nRhiannon\nRylee\nScarlett\nSophie\nSylvia\nTera\nTianna\nToni\nWhitley\nZoie\nAmaya\nAnnie\nArianna\nAshanti\nBaylie\nCailey\nCharity\nCheyanne\nCortney\nDarian\nEsmeralda\nGabriel\nGillian\nGuadalupe\nHailee\nJaden\nJanie\nKarissa\nKatrina\nKristian\nLa\nLilly\nLindsay\nMartha\nMelody\nNikki\nPresley\nRuby\nSandra\nSerena\nSkyla\nStormie\nTatiana\nTatum\nTaya\nAimee\nAlejandra\nAlexander\nAlexandrea\nAlly\nAlyson\nAshly\nAurora\nBlair\nBrenna\nBrittani\nCandace\nCarlie\nCarolyn\nCarrie\nChristy\nDallas\nDaniela\nDestiney\nDixie\nDrew\nElla\nEmalee\nEva\nHaven\nJacie\nJacquelyn\nJerrica\nKailee\nKali\nKaylea\nKayli\nKaylyn\nKendall\nKenzie\nKiarra\nKiley\nKourtney\nLeann\nLuz\nMaranda\nMarisa\nMattie\nMayra\nMckayla\nMckinley\nMika\nMollie\nMonique\nNadia\nNancy\nNautica\nNina\nPatience\nPrecious\nRuth\nTamara\nTerra\nTerri\nTristen\nYasmine\nAbigayle\nAdrian\nAlayna\nAli\nAlisha\nAlivia\nAliyah\nAlondra\nAngie\nAnn\nAudra\nAva\nBayley\nBethanie\nBianca\nBreana\nBridgette\nCandice\nChrista\nCiara\nClara\nClarissa\nDawn\nDeja\nDelia\nElena\nElexis\nElise\nEllen\nEssence\nEsther\nFelicia\nHalley\nHattie\nHollie\nIndia\nIris\nJalyn\nJaqueline\nJasmin\nJaycee\nJocelyn\nJodi\nJourney\nJuliana\nJustice\nKaitlynn\nKarla\nKaya\nKayle\nKaylie\nKeara\nKellie\nLeanna\nLesly\nLiberty\nLizeth\nLyric\nMalaysia\nMarley\nMckenna\nMicaela\nMichael\nMisty\nMontana\nMoriah\nNaomi\nNichole\nParker\nPriscilla\nRacheal\nRaegan\nRobyn\nRose\nShanice\nSky\nStacey\nSusan\nTabatha\nTanisha\nTea\nWendy\nWinter\nHannah\nMadison\nEmily\nAlexis\nSarah\nLauren\nTaylor\nHaley\nAshley\nElizabeth\nAbigail\nDestiny\nAnna\nMegan\nJessica\nKaitlyn\nKayla\nSamantha\nSydney\nBrianna\nOlivia\nEmma\nChloe\nAlyssa\nShelby\nMary\nBailey\nCourtney\nJordan\nMorgan\nRachel\nHailey\nMakayla\nVictoria\nKatelyn\nGrace\nAllison\nKaylee\nFaith\nJasmine\nNatalie\nSavannah\nAmber\nBrittany\nCheyenne\nAutumn\nAlexandria\nJennifer\nSierra\nBreanna\nMackenzie\nRebecca\nTrinity\nKatie\nAshlyn\nBethany\nBrooke\nAmanda\nKatherine\nMadeline\nBrittney\nNicole\nCaroline\nKelsey\nKimberly\nMckenzie\nStephanie\nBrooklyn\nErin\nSara\nHeather\nMadelyn\nPayton\nJada\nJade\nMaria\nSummer\nJulia\nKennedy\nMariah\nTiffany\nPaige\nAndrea\nCaitlyn\nGracie\nLindsey\nMikayla\nRiley\nAngel\nCatherine\nRaven\nKristen\nLaura\nMacy\nAbby\nAlexandra\nCaitlin\nCassidy\nClaire\nErica\nGabrielle\nMallory\nMolly\nZoe\nDanielle\nDiamond\nHanna\nLillian\nIsabella\nKathryn\nMakenzie\nAshton\nHayley\nWhitney\nAudrey\nSidney\nSkylar\nJenna\nKara\nMichelle\nAmy\nAngela\nAsia\nBaylee\nBriana\nChristina\nHaylee\nJillian\nKiara\nKylie\nPeyton\nSophia\nBritney\nRebekah\nAllie\nCallie\nLeah\nReagan\nAdrianna\nCamryn\nHolly\nMaggie\nMya\nSkyler\nAddison\nAlexia\nAlicia\nAriel\nKatelynn\nLydia\nAvery\nHope\nJayla\nKelly\nTori\nEmilee\nKylee\nLauryn\nLeslie\nMargaret\nMercedes\nMichaela\nSabrina\nAmaya\nAshlee\nCarly\nDaisy\nKaitlin\nKatlyn\nKendra\nKirsten\nLily\nMelissa\nVanessa\nAlissa\nAllyson\nAubrey\nBg\nCameron\nDiana\nHallie\nJamie\nJosie\nKaren\nKendall\nBaby\nHaven\nKaitlynn\nLogan\nMarissa\nMaya\nMeghan\nMonica\nSelena\nTabitha\nAlexa\nAmelia\nCrystal\nCynthia\nHaleigh\nHeaven\nJaden\nJoanna\nMicah\nSavanna\nAna\nCierra\nKailey\nLacey\nMacey\nMeagan\nMiranda\nStormy\nAshlynn\nCasey\nCassandra\nChasity\nClaudia\nDesiree\nKatrina\nMattie\nMelanie\nRachael\nAshleigh\nCharity\nDestinee\nEvelyn\nGabriella\nHalle\nJayden\nJazmine\nKaleigh\nKyla\nLaney\nLilly\nLindsay\nMckayla\nMckenna\nMia\nPatricia\nAngelica\nAriana\nBailee\nDakota\nDelaney\nFelicia\nJasmin\nKassidy\nKayleigh\nMiracle\nSerenity\nShania\nSophie\nAaliyah\nAdriana\nAlana\nAlison\nBianca\nCarolyn\nCarrie\nChristian\nDestiney\nEsmeralda\nGabriela\nJaci\nJacqueline\nJordyn\nKaylie\nKaylin\nKierra\nKristin\nLacie\nLyndsey\nMakenna\nNatasha\nPatience\nTessa\nTia\nVeronica\nAbbey\nAlaina\nAlexus\nAlondra\nAspen\nAva\nBarbara\nBrenna\nBrooklynn\nCarmen\nCecilia\nChelsea\nDestini\nEricka\nErika\nGeorgia\nHalie\nHarley\nIvy\nJulie\nKarina\nKasey\nKatelin\nKaylan\nKeely\nKira\nLexi\nLisa\nMeredith\nSadie\nTara\nTyra\nAbbigail\nAnastasia\nAshtyn\nBrandy\nBrenda\nCarolina\nClara\nDaniela\nElisabeth\nGabriel\nIsabel\nIsabelle\nJessie\nKacie\nKaytlin\nKennedi\nKenya\nKenzie\nKrista\nKristina\nLacy\nLayla\nLillie\nMaddison\nMallorie\nMollie\nNancy\nNaomi\nPrecious\nRegan\nRylee\nShayla\nSheridan\nSydni\nTracy\nAlejandra\nAlma\nAnahi\nApril\nBridget\nBrisa\nBrynn\nCandace\nCarley\nCarson\nCassie\nCheyanne\nCindy\nDana\nDeanna\nDestany\nGiselle\nHeidi\nHunter\nJacey\nJaclyn\nJayda\nJocelyn\nJustice\nKaila\nKamryn\nKarissa\nKatlynn\nKelsie\nKiersten\nKiley\nKrystal\nLoren\nMaci\nMadyson\nMartha\nMiriam\nSandra\nShannon\nSkyla\nSommer\nTerra\nTierra\nTyler\nValerie\nVirginia\nZaria\nAbbie\nAbigale\nAdrian\nAdrienne\nAlayna\nAlisha\nAliyah\nAniya\nAnnabelle\nAnnie\nArianna\nArielle\nAyanna\nBlakely\nBrandi\nBrook\nCara\nCarla\nCarlie\nCarrington\nCeleste\nChyna\nClarissa\nCora\nDesirae\nDevin\nDevyn\nEmilie\nEmmalee\nEryn\nEva\nHattie\nHayden\nHaylie\nHelen\nJana\nJanie\nJasmyne\nJesse\nJoy\nJuliana\nJulianna\nKailee\nKaley\nKameron\nKarlie\nKate\nKatlin\nKaycee\nKayley\nKaylyn\nKinley\nKyleigh\nKyra\nLarissa\nLinda\nLinsey\nLucy\nMacie\nMarisol\nMisty\nMoriah\nMyah\nMykayla\nNadia\nNikita\nParis\nParker\nPiper\nRegina\nRobyn\nRosa\nRose\nRyan\nSavanah\nShawna\nShyanne\nStacy\nStormie\nTamia\nTatum\nVera\nWhitley\nAlanna\nAli\nAlice\nAlisa\nAlivia\nAlysha\nAmiya\nBlair\nBobbie\nBonnie\nCarissa\nCarol\nChandler\nCharlotte\nChina\nChole\nChristine\nCiara\nCiera\nDallas\nDaniella\nDarby\nDebra\nDeja\nDenise\nDianna\nDominique\nEbony\nEden\nElena\nEllen\nEmalee\nFatima\nGillian\nGracen\nGuadalupe\nHadley\nJacquelyn\nJaiden\nJaqueline\nJaycee\nJenifer\nJulissa\nKallie\nKarli\nKarrington\nKaty\nKaylea\nKaylynn\nKeirra\nKiana\nKourtney\nKristyn\nLaken\nLesley\nLexie\nLiberty\nLondon\nLora\nMadisyn\nMakala\nMalorie\nMarilyn\nMarlee\nMica\nMontana\nNia\nNikki\nPresley\nRainey\nRandi\nRobin\nRuth\nShana\nShanna\nSharon\nShelbie\nSkye\nSofia\nSonya\nStevie\nSylvia\nTayler\nTiana\nTiara\nToni\nVivian\nWillow\nZoey\nHannah\nMadison\nEmily\nAlexis\nSarah\nDestiny\nAbigail\nAshley\nElizabeth\nAnna\nOlivia\nTaylor\nHaley\nLauren\nSydney\nJessica\nBrianna\nKaitlyn\nAlyssa\nEmma\nChloe\nHailey\nSavannah\nMary\nJasmine\nKatelyn\nMegan\nAllison\nJordan\nKayla\nGrace\nBailey\nSamantha\nMackenzie\nRachel\nShelby\nVictoria\nMakayla\nSierra\nFaith\nKaylee\nMorgan\nNatalie\nKatherine\nAutumn\nAmber\nTrinity\nRebecca\nSara\nJennifer\nCourtney\nJada\nMaria\nAlexandria\nBreanna\nErin\nBrooklyn\nGracie\nKatie\nKelsey\nAngel\nBrittany\nZoe\nBrooke\nGabrielle\nIsabella\nAbby\nAshlyn\nLindsey\nAndrea\nBethany\nMadelyn\nCaitlin\nCaroline\nJulia\nStephanie\nAlexandra\nLeah\nMadeline\nMariah\nMckenzie\nAaliyah\nJenna\nPaige\nAddison\nCassidy\nKimberly\nKylie\nDanielle\nSkylar\nErica\nLaura\nLillian\nSummer\nCheyenne\nDiamond\nKennedy\nMaggie\nRebekah\nHope\nLydia\nReagan\nAshton\nCaitlyn\nAlexia\nCatherine\nMakenzie\nMichelle\nMikayla\nMolly\nPayton\nSophia\nHeather\nAudrey\nKaitlin\nMallory\nRaven\nKathryn\nKatlyn\nAmanda\nBriana\nBrittney\nHaylee\nRiley\nTiffany\nAmy\nBritney\nErika\nMarissa\nNicole\nBaylee\nClaire\nKatelynn\nLeslie\nSidney\nWhitney\nChasity\nCrystal\nJaden\nKyla\nPeyton\nAriana\nAvery\nIsabel\nJordyn\nKylee\nLily\nMelissa\nAdrianna\nAlexa\nAshlynn\nCameron\nCamryn\nJayla\nMia\nAbbie\nAllie\nAllyson\nCallie\nJade\nTatum\nJosie\nMacy\nMaya\nMya\nAna\nAngela\nBaby\nCassandra\nChristina\nEden\nGabriella\nHayley\nJillian\nKassidy\nKristen\nMargaret\nMeagan\nMeredith\nShannon\nSkyler\nTyra\nAlana\nAubrey\nChelsea\nDesiree\nElla\nEvelyn\nHaleigh\nHanna\nJacqueline\nJazmine\nKailey\nKendall\nKendra\nKristin\nKristina\nKyra\nMaddison\nTamia\nAliyah\nAnnie\nApril\nAriel\nBrooklynn\nCarly\nCarson\nDaisy\nDiana\nHarley\nIsabelle\nJulie\nKaleigh\nKamryn\nLexi\nMattie\nMelody\nMicah\nNatasha\nRuth\nSadie\nSavanna\nSelena\nVanessa\nVeronica\nAshlee\nAsia\nAva\nBrandy\nCecilia\nDelaney\nHolly\nKayleigh\nKelly\nKierra\nKourtney\nLacey\nLaney\nLauryn\nMckenna\nMichaela\nMiranda\nRylee\nSabrina\nStormy\nTara\nAlexus\nBianca\nCierra\nGenesis\nHeaven\nJoanna\nJocelyn\nKara\nLogan\nPiper\nRaegan\nRuby\nSkyla\nTia\nWendy\nAdrienne\nAlison\nAlissa\nAngelina\nBailee\nCarmen\nDominique\nEmilee\nHaven\nIndia\nJustice\nKaitlynn\nKate\nKaylie\nKeely\nKennedi\nKiara\nKirsten\nLayla\nLoren\nMadalyn\nMadisyn\nMakenna\nMelanie\nTaryn\nTessa\nTori\nZoie\nAdriana\nAlaina\nAlicia\nAmelia\nAnne\nArianna\nAshtyn\nCarley\nCarolyn\nDakota\nDestinee\nDestiney\nEsmeralda\nGabriela\nHailee\nHallie\nHaylie\nJasmin\nJazmin\nJoy\nKaley\nKaliyah\nKarlee\nKatrina\nKayley\nKira\nLilly\nMercedes\nMonica\nNayeli\nRachael\nRose\nSerenity\nShania\nShayla\nTabitha\nZoey\nAmari\nAnahi\nAngelica\nAshleigh\nCamille\nCheyanne\nClara\nDeja\nGillian\nHarmony\nHeidi\nJamie\nKailyn\nKaren\nKarla\nKarlie\nKelsie\nLacy\nMaci\nMadyson\nMaegan\nNancy\nParker\nPatience\nPresley\nRegan\nRylie\nSophie\nValeria\nVirginia\nZaria\nAbagail\nAbbigail\nAlisha\nAlyson\nAnastasia\nAnnabelle\nAspen\nBlakely\nBobbie\nBrenda\nCandice\nCasey\nCharity\nChristian\nDestini\nDevin\nDulce\nGloria\nGuadalupe\nHadley\nHayden\nIris\nJaclyn\nJakayla\nJakiya\nJessie\nKali\nKelli\nKelsi\nKiera\nKinley\nLainey\nLeticia\nLexie\nLucy\nLyndsey\nMacey\nMacie\nMartha\nMiracle\nMontana\nSavanah\nSaylor\nSydni\nTeresa\nAbbey\nAlanna\nAlayna\nAlejandra\nAlly\nAyanna\nBonnie\nBridget\nCarla\nCassie\nCeleste\nChole\nChyna\nCindy\nCora\nCynthia\nDana\nDaniela\nEbony\nElisabeth\nFelicity\nGabriel\nGeorgia\nGiselle\nHalle\nIvy\nJacquelyn\nJalyn\nJasmyn\nJayden\nJuana\nJulianna\nKaci\nKarley\nKatlynn\nKaylin\nKaylynn\nKelley\nKinsey\nKyleigh\nLatasha\nLena\nLinda\nMadilyn\nMalia\nMeghan\nMiriam\nMisty\nNaomi\nNia\nNichole\nNya\nPatricia\nSandra\nSharon\nShyann\nShyanne\nSofia\nSydnee\nTianna\nTierra\nAinsley\nAlexandrea\nAlivia\nAlize\nAlondra\nAmia\nAnaya\nAnika\nAnn\nArionna\nAudra\nAverie\nBerenice\nBetty\nBeyonce\nBlair\nBrandi\nBreana\nBrionna\nCarolina\nChandler\nCharlotte\nChelsey\nColby\nDestany\nDixie\nEdith\nElena\nElisa\nEricka\nFatima\nGracen\nHarlee\nHunter\nJacey\nJaci\nJaiden\nJamya\nJaycee\nJaylen\nJenny\nJewel\nJosephine\nKaelyn\nKalee\nKalyn\nKarli\nKatlin\nKaylan\nKayli\nKenley\nKenzie\nKeonna\nKrystal\nLarissa\nLibby\nLiliana\nLisa\nLondon\nLorena\nLori\nMadelynn\nMarie\nMarisa\nMikala\nMoriah\nNadia\nNevaeh\nRacheal\nRaina\nRandi\nRianna\nRilee\nRobyn\nSavana\nShirley\nSky\nStormie\nSydnie\nTamara\nToni\nTyler\nVivian\nYasmine\nYesenia\nYvette\nMadison\nHannah\nEmily\nAbigail\nSarah\nAlexis\nAnna\nTaylor\nElizabeth\nLauren\nOlivia\nEmma\nHaley\nAshley\nDestiny\nBrianna\nMary\nChloe\nSydney\nAlyssa\nJasmine\nKaitlyn\nJessica\nKatelyn\nAutumn\nHailey\nKayla\nSavannah\nKaylee\nBailey\nRachel\nAllison\nGrace\nMorgan\nShelby\nIsabella\nVictoria\nMakayla\nSamantha\nJennifer\nMegan\nNatalie\nJordan\nFaith\nAshanti\nMackenzie\nAbby\nTrinity\nAaliyah\nKylie\nZoe\nBrooklyn\nKatie\nSierra\nKatherine\nAshlyn\nCourtney\nMckenzie\nRiley\nSara\nKennedy\nMaria\nErin\nGracie\nKimberly\nBreanna\nJada\nPaige\nLindsey\nCaroline\nCheyenne\nKelsey\nAmber\nAndrea\nLillian\nAlexandria\nAshton\nAvery\nGabrielle\nJade\nMallory\nRebecca\nBethany\nHeather\nMichelle\nAngel\nBrooke\nSophia\nCaitlyn\nJenna\nAddison\nHaylee\nLeah\nLily\nMadeline\nAlexandra\nMolly\nStephanie\nSkylar\nVanessa\nHope\nMadelyn\nMaggie\nAmanda\nAmy\nBrittany\nErica\nMia\nNicole\nAudrey\nHarley\nKathryn\nPayton\nAubrey\nDanielle\nIndia\nAlexia\nCassidy\nChristina\nJillian\nJosie\nJulia\nKatelynn\nMacy\nMariah\nSadie\nAlicia\nAllyson\nHaven\nKylee\nSummer\nAshlynn\nBaby\nCatherine\nLydia\nSerenity\nWhitney\nJordyn\nJamie\nJayla\nLaura\nMakenzie\nMarissa\nTiffany\nAdrianna\nDaisy\nDiamond\nDiana\nElla\nMikayla\nRebekah\nEmilee\nEvelyn\nIsabel\nKristen\nSkyler\nAmelia\nBriana\nCaitlin\nCallie\nClaire\nHalle\nKyra\nMaya\nMiranda\nAlexa\nAriana\nHanna\nHayley\nJaden\nKamryn\nKassidy\nKiara\nMelissa\nReagan\nSavanna\nTori\nAngelina\nBrandi\nCarly\nHeaven\nJocelyn\nMadalyn\nMakenna\nMargaret\nPeyton\nRaven\nAliyah\nAllie\nAna\nAriel\nAsia\nAva\nBrittney\nCameron\nIsabelle\nSophie\nValerie\nZoie\nAbbey\nBianca\nBrooklynn\nBryanna\nHolly\nJazmin\nKayleigh\nLeslie\nLexi\nLizbeth\nMckenna\nMelanie\nRaegan\nRylee\nAnastasia\nBaylee\nCharity\nCrystal\nCynthia\nEden\nJulie\nKarla\nKelly\nKirsten\nKyla\nMonica\nShayla\nVivian\nZoey\nAlissa\nAngela\nCarmen\nCasey\nCassandra\nDakota\nDaniela\nGabriela\nHallie\nJacie\nJadyn\nJustice\nKaley\nKaren\nKendall\nLaney\nMadyson\nMichaela\nMya\nPatricia\nRuby\nRyleigh\nSkyla\nTabitha\nAbbigail\nAdriana\nApril\nAyanna\nDesiree\nElise\nEva\nGabriella\nKailey\nKara\nKate\nKaylie\nKierra\nLauryn\nLiberty\nLogan\nMckayla\nMeredith\nMicah\nAngelica\nAnne\nBritney\nCarley\nCarlie\nChelsea\nCheyanne\nCierra\nClaudia\nDeanna\nErika\nHailee\nHailie\nKarina\nKatlyn\nKyleigh\nMacey\nMacie\nMadisyn\nMercedes\nMiracle\nNadia\nTara\nTia\nVirginia\nAimee\nAlejandra\nAlexus\nAlly\nAlondra\nAniya\nAnnie\nAshleigh\nBrenna\nCamryn\nCarolyn\nCecilia\nChasity\nCiara\nCindy\nDelaney\nJaci\nJacqueline\nJaiden\nJamya\nJenny\nJulianna\nKailyn\nKaitlin\nKarissa\nKarlee\nKaylyn\nKaylynn\nKira\nLayla\nLondon\nMayra\nMckinley\nMeghan\nMelody\nPresley\nSabrina\nSavanah\nSelena\nSidney\nStormy\nTamia\nTyler\nAlaina\nAnnabelle\nArianna\nBrandy\nCamille\nCarson\nCassie\nChrista\nCora\nFelicity\nGillian\nGiselle\nHaleigh\nHelen\nIvy\nJasmin\nJazmine\nJessie\nJuliana\nKacey\nKaitlynn\nKaleigh\nKathleen\nKennedi\nKiersten\nKinley\nLexie\nMadelynn\nMakiya\nMattie\nMeagan\nNancy\nNyla\nRosa\nRuth\nRylie\nTaryn\nTatyana\nVeronica\nAbigale\nAddie\nAlison\nAmaya\nAspen\nBrenda\nEleanor\nEllie\nEssence\nGeorgia\nHaylie\nJosephine\nKailee\nKali\nKatrina\nKaylin\nKeely\nKendra\nKenzie\nKiana\nKiya\nKristin\nKristina\nKrystal\nLacey\nLacy\nLena\nLisa\nLyric\nMaci\nMadilyn\nMontana\nNatalia\nNia\nPhoebe\nRose\nSandra\nSofia\nSydni\nTaliyah\nTessa\nToni\nTyra\nWendy\nZaria\nAbagail\nAbbie\nAbbygail\nAlana\nAlayna\nAli\nAmari\nAshlee\nAshtyn\nAubrianna\nAurora\nAustin\nBailee\nBreana\nCara\nCarlee\nCeleste\nChandler\nCharlotte\nChole\nChristian\nChristy\nCiera\nClara\nDeja\nDestinee\nDestini\nElisabeth\nGenesis\nGuadalupe\nHadley\nHalie\nHattie\nHeidi\nItzel\nJaclyn\nJakayla\nJayden\nJoanna\nJolie\nJourney\nKaila\nKalyn\nKaty\nKaylan\nKelsie\nKiley\nKori\nLacie\nLilly\nLorena\nLucy\nMagan\nMarisol\nMarley\nMartha\nMattison\nNevaeh\nNina\nParis\nPatience\nPerla\nPhoenix\nRachael\nRandi\nRhiannon\nShaniya\nStella\nSuzanne\nSydnee\nTamara\nTeagan\nTierra\nYasmin\nYesenia\nAbbi\nAinsley\nAleigha\nAlivia\nAlyson\nAnahi\nAnn\nAudra\nBria\nBridget\nBrionna\nCali\nCarrington\nChelsey\nClarissa\nCloe\nDenise\nDestiney\nDixie\nDominique\nDrew\nEbony\nEdith\nEmmalee\nFatima\nHalee\nHalley\nHarleigh\nJakyra\nJaniya\nJaycee\nKacie\nKaia\nKaliyah\nKaris\nKarley\nKarli\nKasey\nKatlin\nKaya\nKayli\nKeeley\nKenya\nKrista\nKyndal\nKyndall\nLainey\nLaken\nLilian\nLillie\nLinda\nLindsay\nMaddie\nMakala\nMallorie\nNatasha\nPiper\nPrecious\nPriscilla\nRaylee\nReese\nRhianna\nScarlett\nSerena\nShakira\nShannon\nSharon\nShawna\nSilvia\nSydnie\nTania\nTatum\nTerra\nTrisha\nWhitley\nMadison\nEmily\nHannah\nEmma\nAlexis\nAbigail\nElizabeth\nChloe\nOlivia\nAnna\nTaylor\nSarah\nHaley\nAshley\nBrianna\nLauren\nJessica\nMakayla\nKaitlyn\nSydney\nKaylee\nAlyssa\nHailey\nMary\nDestiny\nNatalie\nRachel\nJasmine\nBailey\nVictoria\nGrace\nKayla\nFaith\nSavannah\nMorgan\nZoe\nAutumn\nAllison\nSamantha\nGracie\nIsabella\nKatelyn\nLillian\nMegan\nTrinity\nKylie\nBrooklyn\nKatherine\nShelby\nMackenzie\nSierra\nKatie\nRiley\nBreanna\nGabrielle\nCaroline\nJennifer\nJordan\nSara\nPaige\nElla\nAvery\nMadeline\nAbby\nKimberly\nMckenzie\nAlexandra\nCourtney\nSophia\nMacy\nSkylar\nAlexia\nLily\nRebecca\nJulia\nLydia\nAshlyn\nErin\nBethany\nKennedy\nAndrea\nLindsey\nMakenzie\nStephanie\nAddison\nAva\nBrooke\nJamie\nSummer\nAmber\nAudrey\nJada\nMolly\nAaliyah\nAllie\nMia\nHaylee\nJenna\nKelsey\nMadelyn\nMaria\nLeah\nRaven\nAngela\nCheyenne\nEvelyn\nJayden\nKatelynn\nKyla\nKylee\nCaitlyn\nJade\nNicole\nAlexandria\nAngel\nCatherine\nClaire\nErica\nHope\nMaggie\nMarissa\nRylee\nAshlynn\nDanielle\nJordyn\nAlexa\nAmelia\nAubrey\nHanna\nJaden\nLaura\nAriel\nBrittany\nKirsten\nLeslie\nMallory\nMariah\nMelanie\nAmy\nMya\nSidney\nAlicia\nAsia\nBriana\nCassidy\nEmilee\nKaren\nLayla\nMelissa\nSkyler\nSophie\nTiffany\nWhitney\nAmanda\nAna\nCallie\nHayley\nJayla\nJocelyn\nKathryn\nKristen\nMichelle\nPayton\nSerenity\nTrista\nVanessa\nAshton\nGabriela\nHeaven\nLilly\nReagan\nSadie\nAlexus\nArianna\nErika\nHallie\nHeather\nHolly\nIsabel\nKailey\nKinley\nLizbeth\nPeyton\nZoey\nAlivia\nAmaya\nCadence\nCierra\nHalle\nJacqueline\nJazmine\nJillian\nRuby\nSabrina\nSelena\nAdrianna\nAlissa\nAriana\nAshanti\nBaylee\nCarly\nCarmen\nCrystal\nDaisy\nEva\nHarley\nJosie\nKaitlin\nKelly\nLaney\nLiberty\nMattie\nMercedes\nMeredith\nAbbigail\nAlondra\nBrooklynn\nChelsea\nChristina\nCynthia\nDesiree\nDiamond\nGabriella\nHaven\nIndia\nJadyn\nJulie\nKiara\nKiley\nLacey\nMadalyn\nPatricia\nRyleigh\nTori\nAbbie\nAdriana\nAlison\nAngelica\nAngelina\nBrenda\nCamryn\nCindy\nDiana\nHeidi\nKara\nMargaret\nMikayla\nSavanna\nShayla\nAllyson\nAnnabelle\nClara\nJakayla\nJayda\nKailee\nKamryn\nKarla\nKendall\nLaci\nLauryn\nMacie\nMadilyn\nMiranda\nNadia\nNaomi\nRebekah\nAlana\nAlejandra\nAliyah\nAniya\nBaby\nBrandy\nBrittney\nDelaney\nJazmin\nJuliana\nKali\nKate\nKyleigh\nLillie\nLucy\nMiracle\nPerla\nPiper\nZoie\nAmari\nCecilia\nDestinee\nGeorgia\nJustice\nKarina\nKassidy\nKatlyn\nKendra\nKenzie\nKristin\nLaila\nMaci\nMakenna\nMckayla\nMeagan\nMeghan\nMollie\nMonica\nNevaeh\nSkyla\nTabitha\nTamia\nTaniya\nVeronica\nVivian\nAbagail\nAlyson\nAnnie\nAshlee\nAshleigh\nCaitlin\nCameron\nCarlee\nCarley\nCarlie\nCassandra\nElisabeth\nEllie\nGuadalupe\nHailee\nHaylie\nIsabelle\nIvy\nJessie\nKarli\nKarlie\nKierra\nKinsey\nKyra\nMacey\nMaya\nNancy\nParis\nRaegan\nTara\nTristan\nAddyson\nAkira\nAlayna\nAlly\nAmya\nAnastasia\nApril\nAspen\nAyanna\nBrenna\nBrynn\nCamille\nCarson\nChasity\nClaudia\nEden\nElise\nEllen\nJaiden\nJamia\nJasmin\nJulianna\nKarlee\nKatlynn\nKayleigh\nKelsie\nLexie\nLindsay\nMadisyn\nMadyson\nMichaela\nNina\nPatience\nRegan\nShania\nTyra\nZaria\nAinsley\nAlaina\nAurora\nCasey\nCeleste\nCora\nCydney\nDakota\nDaniela\nDeanna\nDeja\nDenise\nDulce\nElaina\nEmely\nFatima\nFelicity\nGenesis\nGraci\nHadley\nHailie\nHalie\nHayden\nHelen\nJacie\nJacy\nJalyn\nJaniya\nKaylea\nKaylie\nKaylin\nKennedi\nLacy\nLexi\nLinda\nLogan\nLondon\nLuz\nMaegan\nMaleah\nMiriam\nMontana\nPrecious\nPresley\nRandi\nReese\nRuth\nScarlett\nShannon\nStormy\nSunny\nTaliyah\nTamya\nTaryn\nTatyana\nThalia\nTia\nYesenia\nAbbi\nAlisha\nAmethyst\nAmiya\nAnn\nAnnalee\nAnne\nAnnika\nAshten\nBianca\nBrandi\nBreonna\nCandice\nCarissa\nCarrie\nCharlie\nCheyanne\nChrista\nChristian\nDestini\nEleanor\nEliza\nEmmalee\nEsmeralda\nFallon\nHaleigh\nHarlie\nHarmony\nHunter\nIris\nJacklyn\nJanet\nJasmyn\nJayme\nJazmyne\nJolie\nJulianne\nKaitlynn\nKatrina\nKiersten\nKira\nLiliana\nLisa\nMarisa\nMarley\nMikaela\nMonique\nMyka\nNatasha\nPhoebe\nRachael\nReyna\nRhiannon\nRose\nSerena\nSofia\nStormie\nTamara\nTeagan\nTessa\nTianna\nTiara\nTierra\nValeria\nValerie\nYasmin\nYasmine\nAdrienne\nAlisa\nAllyssa\nAmiah\nAmiyah\nAudra\nBritney\nBrook\nCandace\nCarol\nCarolina\nCassie\nCatelynn\nCharity\nChelsey\nCherish\nCloe\nConstance\nCristina\nDana\nDarby\nDevyn\nEbony\nEmili\nEmilie\nFrances\nFrancis\nGianna\nGiselle\nGloria\nGracen\nGretchen\nHarlee\nJacey\nJaedyn\nJamiah\nJamiya\nJaqueline\nJaycee\nJessalyn\nJoselyn\nJourney\nKailyn\nKaley\nKallie\nKalyn\nKarissa\nKasey\nKenya\nKiana\nKirstyn\nKiya\nKrista\nKristina\nKrysta\nKylah\nLanie\nLaynie\nLeila\nLyric\nMadalynn\nMadelynn\nMakena\nMalia\nMariana\nMarisol\nMckinley\nMicah\nMyra\nNakayla\nPaola\nPriscilla\nShawna\nShaylee\nShea\nShyanne\nSkye\nStevie\nSusana\nSydni\nSydnie\nSylvia\nTania\nTaniyah\nTatiana\nTatum\nToni\nTristen\nWinter\nYoselin\nMadison\nEmily\nEmma\nHannah\nOlivia\nAbigail\nAlexis\nAnna\nElizabeth\nLauren\nSarah\nChloe\nAlyssa\nAshley\nDestiny\nHailey\nHaley\nJasmine\nTaylor\nBrianna\nBrooklyn\nKaylee\nMary\nSydney\nKaitlyn\nTrinity\nNatalie\nIsabella\nJessica\nSamantha\nKayla\nGrace\nMakayla\nBailey\nMorgan\nMackenzie\nAllison\nAutumn\nZoe\nLillian\nSavannah\nFaith\nJordan\nGracie\nRiley\nKatelyn\nKennedy\nAshlyn\nKylie\nVictoria\nCaroline\nElla\nAvery\nAbby\nRachel\nAudrey\nAva\nMegan\nShelby\nAngel\nErin\nKimberly\nBrooke\nJenna\nAaliyah\nAddison\nRebecca\nJada\nLily\nMadeline\nMakenzie\nSummer\nJennifer\nMckenzie\nSierra\nCadence\nKatie\nMaria\nAmber\nMadelyn\nPaige\nSara\nGabrielle\nMaggie\nZoey\nBaby\nKatherine\nLaura\nMarissa\nRylee\nAlexandra\nSophia\nBreanna\nCassidy\nKatelynn\nMia\nSkylar\nCheyenne\nReagan\nKelsey\nLeah\nLindsey\nSerenity\nAmy\nJade\nMichelle\nAlexia\nAshlynn\nBethany\nCourtney\nJayden\nJulia\nLydia\nMallory\nAlexa\nAlexandria\nAllie\nAndrea\nEvelyn\nMacy\nMariah\nAdrianna\nArianna\nHope\nKendall\nMolly\nParis\nAmanda\nAngelina\nClaire\nJayla\nAlicia\nAubrey\nBrittany\nCaitlyn\nDiana\nKathryn\nLilly\nMya\nDanielle\nJaden\nKinley\nKylee\nNicole\nPiper\nRaven\nStephanie\nKyla\nAllyson\nAniya\nCarly\nErica\nJulie\nKadence\nKamryn\nHeather\nJadyn\nLacey\nLeslie\nMelanie\nVanessa\nAna\nAsia\nBriana\nCatherine\nDaisy\nEmilee\nHolly\nIsabel\nJosie\nKyra\nMikayla\nNevaeh\nPayton\nSadie\nAdriana\nErika\nJamie\nJillian\nKayleigh\nKiley\nLayla\nLexi\nSelena\nWhitney\nAbbigail\nAmelia\nAngela\nDaniela\nEden\nGabriella\nHallie\nHarley\nHaylee\nHayley\nKara\nLaney\nPresley\nRuby\nSavanna\nAlivia\nBrittney\nCaitlin\nCharity\nChristina\nCrystal\nHanna\nHaven\nJordyn\nKristen\nMelissa\nPeyton\nSkyler\nTamia\nAnnabelle\nAriana\nAshton\nCallie\nCameron\nChelsea\nCynthia\nDiamond\nGeorgia\nIsabelle\nKate\nMargaret\nNaomi\nSophie\nTabitha\nTiffany\nBaylee\nBrenda\nCamryn\nCarmen\nClara\nDestinee\nHalle\nHeaven\nJayda\nKaren\nKaydence\nKelly\nRebekah\nSidney\nTessa\nAriel\nBianca\nBrooklynn\nEsmeralda\nKailey\nKiara\nKira\nMadisyn\nMadyson\nMakenna\nSandra\nAlayna\nAlison\nCarley\nCeleste\nEva\nGabriela\nJaniya\nKatlyn\nKenzie\nKirsten\nKyleigh\nLauryn\nLogan\nMaci\nMckenna\nMicah\nRaegan\nReese\nSofia\nVeronica\nAbbie\nAlissa\nAlyson\nAnnie\nBailee\nBritney\nCamille\nCarlee\nCassandra\nCassie\nCierra\nDakota\nDixie\nEllie\nHaleigh\nJasmin\nJocelyn\nKaleigh\nLaila\nLexie\nLiberty\nLizbeth\nMacie\nMadalyn\nMiranda\nNadia\nNayeli\nRegan\nRyleigh\nRylie\nShaylee\nShyann\nSkyla\nTori\nVivian\nZoie\nAbbey\nAlana\nAlexus\nAmya\nAngelica\nApril\nAshlee\nAspen\nAurora\nBlakely\nCharlotte\nDelaney\nHadley\nHaylie\nHeidi\nJacqueline\nJamya\nJanet\nJazmine\nJoanna\nKaitlynn\nKallie\nKaylyn\nKaylynn\nLainey\nLana\nLoren\nLucy\nMacey\nMadelynn\nMarley\nMaya\nMelody\nMeredith\nMichaela\nMonica\nNancy\nRosa\nAdrienne\nAlaina\nAmaya\nAshanti\nCandace\nCara\nCarson\nCecilia\nChasity\nCora\nCristina\nElise\nGiselle\nGuadalupe\nHarmony\nHelen\nItzel\nJakayla\nJazmin\nKailee\nKassidy\nKathleen\nKaylie\nKelsi\nKelsie\nKenley\nKennedi\nKiera\nKristin\nKrystal\nLaci\nLacie\nMariana\nMattie\nMercedes\nMiracle\nRachael\nShannon\nSkye\nStormy\nTatiana\nTayler\nAddyson\nAlisha\nAlly\nAlondra\nAshtyn\nBella\nBrandi\nBrenna\nClaudia\nEmmalee\nGabriel\nHailee\nHayden\nIvy\nJacey\nJaiden\nJaycee\nJenny\nJessie\nJoselyn\nKaitlin\nKaliyah\nKarla\nKaylin\nKendra\nKourtney\nKrista\nLaken\nLanie\nLillie\nLindsay\nLivia\nMadalynn\nMaddison\nMakala\nMakyla\nMiriam\nNia\nPatricia\nRuth\nShayla\nStormie\nSydnee\nTaniyah\nTara\nTaryn\nToni\nWendy\nAbagail\nAlia\nAliyah\nAlysha\nAmiya\nAraceli\nBrandy\nBrynn\nCarissa\nCheyanne\nChristian\nCindy\nDaphne\nDeja\nDenise\nDevin\nElaina\nEliza\nEmalee\nEmber\nGenesis\nGwendolyn\nIndia\nJaycie\nJaylin\nJuliana\nJulianna\nKarlee\nKasey\nKatelin\nKatrina\nKaya\nKayden\nKaylea\nKierra\nLarissa\nLilian\nLinda\nLola\nLyric\nMandy\nMarisol\nNatalia\nParker\nPatience\nPhoebe\nPrincess\nRobyn\nRose\nShamya\nShania\nShelbi\nTamara\nTamya\nTaniya\nTatum\nTia\nTiana\nTrista\nViolet\nWillow\nAdison\nAinsley\nAlejandra\nAlora\nAmari\nAmerica\nAngie\nAnnalise\nAshleigh\nAubry\nBarbara\nBlair\nBreana\nCarla\nCarolina\nCarolyn\nCarrington\nChandler\nCherokee\nChrista\nClarissa\nDawn\nDeanna\nDeborah\nDesiree\nDianna\nDru\nDylan\nElisabeth\nEllen\nEmery\nEmilie\nEmmaleigh\nEryn\nFatima\nFernanda\nGracelyn\nGracen\nGraci\nGracyn\nGrayson\nHarlie\nImani\nJacelyn\nJaelyn\nJaidyn\nJalisa\nJaliyah\nJamia\nJamiya\nJaylen\nJazmyne\nJimena\nJoselin\nJoy\nJulianne\nJulissa\nJustice\nKaiden\nKailyn\nKali\nKameron\nKarsyn\nKaty\nKaylen\nKayley\nKeira\nKenya\nKiersten\nKimber\nKristina\nLakyn\nLani\nLeigha\nLeticia\nLila\nLitzy\nLizette\nLori\nMadilyn\nMakaila\nMakiya\nMalia\nMaranda\nMattison\nMckinley\nMeadow\nMeagan\nMollie\nNakayla\nNatalee\nNatasha\nNoemi\nNora\nNyla\nPerla\nRandi\nRemington\nRhiannon\nShyanne\nTierra\nValarie\nWinter\nYasmin\nYesenia\nZaria\nEmily\nMadison\nEmma\nHannah\nAlexis\nAbigail\nOlivia\nAnna\nElizabeth\nChloe\nLauren\nElla\nNatalie\nSarah\nBrooklyn\nKaylee\nAlyssa\nDestiny\nAshley\nIsabella\nTaylor\nAva\nBrianna\nHailey\nGrace\nMakayla\nJasmine\nLillian\nHaley\nSavannah\nAllison\nSamantha\nSydney\nGracie\nKaitlyn\nMary\nJessica\nMegan\nRiley\nLily\nBailey\nKylie\nKatelyn\nShelby\nTrinity\nVictoria\nSophia\nKayla\nMorgan\nZoe\nAutumn\nAvery\nBreanna\nMia\nCaroline\nMackenzie\nRachel\nFaith\nJordan\nMaria\nAbby\nAddison\nJenna\nKatie\nJada\nKatherine\nAshlyn\nAudrey\nPaige\nAlexandra\nAmelia\nBrooke\nGabrielle\nSara\nZoey\nKylee\nAaliyah\nJennifer\nMadeline\nMckenzie\nRebecca\nLydia\nJulia\nKimberly\nKennedy\nMichelle\nSkylar\nSummer\nCadence\nAndrea\nCheyenne\nJayla\nKelsey\nMadelyn\nMya\nMolly\nRylee\nStephanie\nArianna\nErin\nNevaeh\nAngel\nAubrey\nBethany\nCatherine\nHaylee\nMakenzie\nAlexa\nGabriella\nKatelynn\nReagan\nSadie\nSophie\nAlexandria\nAlexia\nAna\nHope\nLindsey\nMariah\nSierra\nAllie\nKadence\nCassidy\nChristina\nCiara\nCourtney\nEva\nKendall\nMallory\nWhitney\nAmber\nCarmen\nDanielle\nKara\nKaydence\nKyla\nLayla\nLilly\nMaggie\nMarissa\nSerenity\nAmy\nAngela\nAngelina\nAriel\nAshlynn\nErica\nJayden\nKathryn\nLaura\nMacy\nParis\nPeyton\nClaire\nEmilee\nHeaven\nJade\nJillian\nLeah\nMiranda\nNicole\nAllyson\nKyra\nRaven\nAdriana\nAlivia\nAniyah\nAriana\nBrittany\nCaitlyn\nCallie\nCarley\nDaisy\nDakota\nHarley\nIsabelle\nKamryn\nKassidy\nCameron\nEvelyn\nHayley\nKailey\nKiera\nLaney\nMelanie\nPayton\nTessa\nAlondra\nAmanda\nDaniela\nDiana\nIsabel\nJaci\nJaden\nKirsten\nMadilyn\nMaya\nMikayla\nRylie\nSkyler\nAbbigail\nAdrianna\nAlexus\nChelsea\nHaven\nJadyn\nJaniya\nJordyn\nKinley\nLaila\nLeslie\nMargaret\nMeredith\nRebekah\nReese\nAshton\nBella\nBriana\nBrooklynn\nCarlee\nCarly\nEmmalee\nHeather\nJasmin\nJocelyn\nKaren\nKristina\nLaci\nMiracle\nPresley\nRyleigh\nSofia\nVanessa\nAinsley\nAlicia\nAniya\nAnnabelle\nAsia\nBaylee\nBrenda\nClara\nDelaney\nHallie\nHanna\nJosie\nKarla\nKenzie\nMacey\nMadalyn\nMadisyn\nMelissa\nNaomi\nPatience\nPrecious\nRuby\nSelena\nAliyah\nBailee\nCamille\nEliza\nEllie\nErika\nGabriela\nHaylie\nHeidi\nJacey\nKate\nKeira\nKierra\nKiley\nKira\nKyleigh\nLiberty\nLucy\nMichaela\nPiper\nSabrina\nShania\nSkyla\nTyra\nAbbie\nAngelica\nApril\nAubree\nHailee\nHalle\nJacqueline\nJamie\nKasey\nKatlyn\nKaylie\nKiara\nLexi\nMaci\nMadelynn\nTiffany\nZoie\nAlisha\nAlison\nAlissa\nAmya\nAshlee\nBianca\nCaitlin\nCarlie\nCynthia\nFatima\nGeorgia\nGracelyn\nHayden\nIvy\nJoanna\nJustice\nKaitlynn\nKaleigh\nKayleigh\nKayley\nKristen\nLainey\nLyric\nMacie\nMariana\nMarlee\nNatasha\nRubi\nSidney\nStella\nTabitha\nAlayna\nAlly\nAmari\nAnahi\nAshanti\nBaby\nBritney\nBryanna\nCamryn\nCheyanne\nCloe\nDesirae\nDestiney\nDulce\nEden\nElena\nHaleigh\nJazmin\nJulie\nKarley\nKayden\nKaylen\nKaylin\nKennedi\nLana\nLauryn\nLexie\nLillie\nLogan\nMaddison\nMadyson\nNadia\nSasha\nSavanna\nShayla\nStormie\nSydnee\nTara\nValerie\nVeronica\nAbbey\nAddyson\nAdrienne\nAlanna\nAlyson\nAngie\nAshleigh\nBrenna\nBriley\nCarolina\nCarson\nCassie\nCecilia\nCharlotte\nChasity\nCindy\nCrystal\nDiamond\nDixie\nEmerson\nEsmeralda\nGenesis\nHadley\nHazel\nIndia\nItzel\nJaelyn\nJaidyn\nJanet\nJaycee\nJayda\nJazmine\nJenny\nJourney\nJulianna\nJulissa\nKaelyn\nKaitlin\nKali\nKarina\nKarlee\nKatrina\nKelly\nKelsie\nKenley\nLacey\nLinda\nLitzy\nLoren\nLyndsey\nMakenna\nMakiya\nMarisol\nMelody\nMiriam\nRaegan\nRuth\nSerena\nShyann\nTatum\nTess\nYadira\nYareli\nYasmine\nAli\nAnn\nAnnie\nBrittney\nCarolyn\nCloey\nDaniella\nDayanara\nElise\nGiselle\nGraci\nGuadalupe\nHarmony\nHelen\nHolly\nJakayla\nJaniyah\nJessie\nJoslyn\nKailyn\nKarlie\nKaylea\nKaylyn\nKendra\nKenya\nKrista\nKyndall\nLibby\nLondon\nMarilyn\nMariyah\nMarlene\nMayra\nNia\nShakira\nTania\nTeagan\nTiara\nTori\nTrista\nWinter\nAbagail\nAbigale\nAddie\nAdison\nAlana\nAmaya\nAmiah\nAnastasia\nArabella\nArely\nBarbara\nBridget\nBrielle\nCarissa\nCarol\nCierra\nDana\nDasia\nDeanna\nDesiree\nEbony\nElaina\nEleanor\nEmely\nEstrella\nEvan\nFinley\nGillian\nGretchen\nHalie\nJacquelyn\nJaiden\nJamiya\nJaylin\nJuliana\nKaley\nKaty\nKeeley\nKeely\nKiersten\nKiya\nKristin\nKrystal\nLacy\nLena\nLiliana\nLindsay\nLizbeth\nMaegan\nMaleah\nMalia\nMattie\nMckayla\nMckenna\nMercedes\nMicah\nNakiya\nNina\nNora\nPerla\nRegan\nRyan\nSamara\nSandra\nSaniya\nSarahi\nShaylee\nStormy\nTamara\nTamia\nTaryn\nTatiana\nThalia\nValeria\nVanesa\nVirginia\nZariah\nAdyson\nAlaina\nAlejandra\nAlice\nAmiyah\nAspen\nAthena\nAveri\nAyden\nBlakely\nBrandy\nBreana\nBrisa\nBrylee\nBryley\nCamila\nChristian\nDeja\nDonna\nEmalee\nEmalie\nEmilie\nEmmy\nFallon\nFelicity\nGabriel\nGianna\nGloria\nHarlie\nHeavenly\nIzabella\nJaliyah\nJamya\nJaqueline\nJaycie\nJaylee\nJazlyn\nJazmyn\nJimena\nJosephine\nJoy\nJuana\nKaci\nKatelin\nKatlynn\nKiah\nKinsley\nKylah\nLara\nLorelei\nLucia\nMadeleine\nMakiyah\nMakyla\nMaliyah\nMarley\nMckinley\nMeagan\nMeghan\nMonique\nNakia\nNyla\nPaisley\nParker\nPhoebe\nRachael\nRose\nSavana\nSaylor\nScarlett\nShae\nShannon\nSusan\nSydni\nSydnie\nTia\nToni\nTristen\nVivian\nWendy\nWhitley\nWillow\nYesenia\nZaria\nMadison\nEmily\nEmma\nHannah\nAbigail\nAlexis\nElizabeth\nOlivia\nChloe\nAnna\nAddison\nAva\nBrooklyn\nIsabella\nAlyssa\nJasmine\nSavannah\nHailey\nTaylor\nNatalie\nSarah\nLauren\nAllison\nDestiny\nLillian\nKaylee\nMakayla\nAshley\nLily\nElla\nKylie\nTrinity\nMorgan\nBailey\nBrianna\nGracie\nSamantha\nAvery\nKaitlyn\nMia\nHaley\nKayla\nMary\nKatelyn\nRachel\nZoe\nJessica\nVictoria\nFaith\nGrace\nZoey\nMackenzie\nBreanna\nKatherine\nSydney\nGabrielle\nMariah\nShelby\nAshlyn\nBrooke\nJada\nRiley\nAutumn\nMadelyn\nAbby\nRylee\nSophia\nAudrey\nSara\nNevaeh\nPaige\nCaroline\nAubrey\nJennifer\nKennedy\nMakenzie\nKatie\nMckenzie\nKimberly\nJordan\nClaire\nIsabelle\nJenna\nHaylee\nBethany\nLydia\nAdrianna\nJayla\nReagan\nRebecca\nAndrea\nCadence\nJayden\nKylee\nLeah\nMaggie\nAlexa\nAllie\nCheyenne\nJordyn\nMacy\nMadeline\nSerenity\nSkylar\nAaliyah\nAmelia\nLayla\nLilly\nSummer\nAngel\nGabriella\nJocelyn\nMegan\nMolly\nCourtney\nMaria\nSophie\nIsabel\nJade\nKathryn\nMya\nSadie\nAmy\nArianna\nAriel\nCallie\nKyla\nMelanie\nSofia\nBrooklynn\nJulia\nKatelynn\nMiranda\nNicole\nRuby\nAlexandra\nAlexandria\nBriana\nDakota\nDiana\nEvelyn\nKaren\nLaney\nPresley\nAlicia\nKelsey\nSierra\nAddyson\nAlexia\nKendra\nKyra\nMichelle\nVanessa\nAmber\nCatherine\nHope\nLeslie\nMallory\nMelissa\nAbbigail\nAlivia\nAnnabelle\nCarmen\nErin\nKarla\nKaydence\nKayleigh\nLaura\nLindsey\nMaya\nMckenna\nStephanie\nAniyah\nCaitlyn\nJaden\nPayton\nAlana\nAllyson\nAshlynn\nDanielle\nHarley\nHeaven\nJosie\nKailey\nKamryn\nKara\nKate\nLaila\nLondon\nParis\nPiper\nRebekah\nAlissa\nAlondra\nAriana\nBaylee\nClara\nHaven\nKaitlynn\nKyleigh\nNaomi\nSavanna\nSidney\nAdriana\nAngelina\nBella\nCamryn\nChristina\nEmerson\nEmilee\nErica\nHadley\nHallie\nHanna\nHeidi\nJadyn\nJulie\nKadence\nKaylie\nKira\nKirsten\nLucy\nMadalyn\nPeyton\nAubree\nBianca\nChelsea\nDelaney\nDiamond\nEva\nHeather\nHolly\nJamie\nKeira\nKristen\nLiliana\nMadilyn\nMarissa\nNadia\nRaven\nRyleigh\nWhitney\nAnastasia\nAngela\nAniya\nBailee\nBrittany\nCameron\nCecilia\nCiara\nEleanor\nEsmeralda\nGabriela\nHarmony\nJacqueline\nJosephine\nKaleigh\nKarlee\nKeely\nLauryn\nLogan\nMaci\nMargaret\nMikayla\nNancy\nValeria\nZoie\nAlaina\nAsia\nBrittney\nCarley\nCharity\nChasity\nDaisy\nEden\nErika\nGeorgia\nIndia\nJaniya\nJillian\nJustice\nPhoebe\nSkyler\nTori\nVivian\nAdison\nAlly\nBrenda\nCamille\nDixie\nEllie\nJasmin\nJazmine\nJoanna\nJuliana\nKennedi\nKenzie\nKinley\nLola\nMakenna\nNatalee\nNatalia\nPatience\nRylie\nSelena\nSherlyn\nStella\nTessa\nAinsley\nAlayna\nAlejandra\nAmaya\nAshlee\nAshton\nCaitlin\nCali\nCarlie\nCassidy\nDaniela\nJaniyah\nJazmin\nKailyn\nKaniya\nKassidy\nKaylin\nKendall\nKiera\nLacey\nLaken\nLillie\nMadyson\nMercedes\nMeredith\nNataly\nPaola\nRaegan\nSabrina\nSaniya\nTaryn\nTiffany\nTrista\nAlexus\nAmiya\nAspen\nCarleigh\nCharlotte\nCrystal\nDana\nDenise\nElisabeth\nGenesis\nHaylie\nIsabell\nJakayla\nJalyn\nKiara\nLana\nLanie\nLexi\nLexie\nLiberty\nLila\nLilian\nMacie\nMaddison\nMarley\nMckinley\nMiracle\nRandi\nAli\nAlice\nAlyson\nAmari\nBrenna\nBritney\nCamila\nCarlee\nCassandra\nCharlie\nCynthia\nDestany\nFelicity\nGracelyn\nGuadalupe\nHaleigh\nIvy\nJacie\nJaliyah\nJenny\nJoselyn\nKaliyah\nKarina\nKarlie\nKatrina\nKayden\nKierra\nKiley\nLizbeth\nMadalynn\nMadisyn\nMalia\nMattie\nMicah\nPrincess\nRihanna\nRyan\nSavanah\nShania\nShaylee\nSkyla\nTaniya\nValerie\nYasmin\nAkeelah\nAlison\nAliya\nAmanda\nAmya\nBriley\nBrylee\nCarolina\nCeleste\nDeanna\nDestinee\nElise\nEliza\nEmmalee\nFallon\nFatima\nGabriel\nHarlee\nHayley\nIyanna\nJamya\nJaqueline\nJaylin\nJoy\nJuliet\nKaci\nKaelyn\nKaylynn\nKelly\nKelsea\nKelsi\nKelsie\nKenlee\nKenya\nKiersten\nKimora\nKristin\nLaci\nLacie\nLandry\nMabry\nMacey\nMeagan\nMiley\nMonica\nMoriah\nNia\nNora\nPaisley\nPenelope\nPerla\nRaylee\nReese\nRegan\nSamara\nSharon\nShayla\nSkye\nTyra\nVirginia\nAbbie\nAidan\nAna\nAnahi\nAnnie\nAnsley\nApril\nAraceli\nArely\nAudra\nAverie\nAyla\nBrinkley\nBrookelyn\nBrookelynn\nBryanna\nCarly\nCarrie\nCarsyn\nConstance\nCora\nDanica\nDulce\nEdith\nElena\nEmery\nEstrella\nGiselle\nGracyn\nHailee\nHalle\nHayden\nHelen\nHunter\nJaci\nJaiden\nJayda\nJaylee\nJazlyn\nJohanna\nJourney\nKarma\nKarsyn\nKatlyn\nKaylea\nKenley\nLa\nMaddie\nMadilynn\nMaleah\nMarie\nMarisa\nMelody\nMika\nMontana\nMyah\nNoemi\nNyla\nRosa\nRose\nRuth\nSandra\nShaniya\nStormie\nStormy\nSylvia\nTania\nTatum\nTayler\nTeagan\nTiara\nToni\nZion\nAbagail\nAddie\nAddisyn\nAdeline\nAdyson\nAlanna\nAlisha\nAngie\nAnne\nAnnika\nAnniston\nAnya\nAubriana\nAurora\nAveri\nBlakely\nBrayleigh\nBrisa\nBryleigh\nCadance\nCara\nCasey\nCassie\nCelia\nCharley\nChristian\nCitlali\nDanika\nDesiree\nDestiney\nDestini\nEliana\nEve\nFelicia\nGloria\nHarlie\nHarper\nHollie\nIreland\nItzel\nIzabella\nJacey\nJaclyn\nJaelyn\nJakiya\nJanie\nJessie\nJimena\nJoselin\nJulianna\nJulianne\nKailee\nKali\nKalyn\nKaniyah\nKarley\nKarmen\nKayley\nKaylyn\nKeelie\nKiana\nKimber\nKyndall\nKynlee\nLacy\nLarissa\nLia\nLindsay\nLucia\nMakiya\nMargarita\nMariana\nMarisol\nMariyah\nMarlene\nMayra\nMckayla\nMiah\nMichaela\nMollie\nNatasha\nNikki\nPamela\nParker\nPreslee\nRachael\nRebeca\nReyna\nRileigh\nRiver\nRocio\nSaige\nSaniah\nScarlett\nShakiya\nShyanne\nSonya\nSydnee\nTamya\nTara\nTatianna\nTayla\nTyler\nVianey\nViolet\nWendy\nYasmine\nMadison\nEmma\nEmily\nAddison\nOlivia\nAbigail\nHannah\nAva\nChloe\nAlexis\nIsabella\nElizabeth\nAlyssa\nAnna\nTaylor\nBrooklyn\nKaylee\nMakayla\nSarah\nBrianna\nSavannah\nBailey\nMia\nNatalie\nLauren\nElla\nLily\nAshley\nDestiny\nGracie\nJasmine\nAvery\nLillian\nSamantha\nSophia\nTrinity\nGrace\nKaitlyn\nSydney\nHailey\nAllison\nKayla\nMary\nAudrey\nHaley\nAubrey\nKatie\nKylie\nRiley\nVictoria\nAutumn\nKennedy\nKimberly\nJayden\nKylee\nLayla\nMorgan\nNevaeh\nZoe\nBreanna\nClaire\nFaith\nJessica\nShelby\nKatelyn\nMackenzie\nAshlyn\nJordan\nZoey\nCaroline\nCheyenne\nMckenzie\nMadelyn\nRachel\nMolly\nAlexa\nSkylar\nKatherine\nMakenzie\nPeyton\nAbby\nAngel\nMacy\nMariah\nReagan\nRylee\nSophie\nGabrielle\nJada\nMaria\nSadie\nAshlynn\nLeah\nSerenity\nMadeline\nAllie\nBrooklynn\nHaven\nMegan\nRebecca\nSara\nAlexandra\nAndrea\nBrooke\nKayleigh\nLeslie\nLydia\nSummer\nAriana\nJenna\nLilly\nAddyson\nDanielle\nEvelyn\nHope\nJulia\nMaggie\nMallory\nPresley\nReese\nKelsey\nLindsey\nMarissa\nMichelle\nStephanie\nAaliyah\nAmelia\nJadyn\nJocelyn\nKaydence\nAlexandria\nAnnabelle\nCallie\nJaden\nJennifer\nBethany\nCadence\nErin\nEva\nGabriella\nJade\nJayla\nKatelynn\nKyleigh\nLondon\nLucy\nMelanie\nAllyson\nChelsea\nDakota\nJosie\nAlexia\nDaniela\nKadence\nKendall\nMya\nPayton\nPiper\nSierra\nAdrianna\nAmy\nAna\nAngela\nEmilee\nHarley\nIsabel\nPaige\nRaegan\nRuby\nAniya\nDaisy\nIsabelle\nJordyn\nKathryn\nLaney\nMaya\nMelissa\nSavanna\nSofia\nTessa\nTiffany\nAlivia\nAubree\nBella\nCatherine\nCourtney\nHayden\nHayley\nHeaven\nKate\nKeira\nLaila\nMadilyn\nMiranda\nNadia\nScarlett\nValeria\nAdriana\nAngelina\nArianna\nAriel\nBaylee\nDiana\nDixie\nGuadalupe\nHanna\nJacqueline\nJazmin\nJazmine\nKenzie\nKira\nLexi\nMattie\nAlicia\nCarly\nEden\nEmerson\nGenesis\nJamie\nJasmin\nJustice\nKara\nKinley\nKyla\nKyra\nMaddison\nMadisyn\nRyleigh\nVanessa\nBriana\nCarlee\nCherish\nCrystal\nDelaney\nEllie\nHallie\nHolly\nJaniyah\nJulie\nKiera\nMariana\nMiley\nNaomi\nParker\nSkyler\nWhitney\nAmber\nAsia\nBailee\nBrylee\nCarley\nDestinee\nGeorgia\nHadley\nHalle\nHeather\nJaiden\nKaleigh\nKamryn\nKarla\nKaylie\nLaura\nLillie\nMarley\nMikayla\nNicole\nSelena\nVeronica\nAlissa\nAmanda\nAnnie\nCamila\nCarmen\nCassidy\nCharity\nCiara\nClara\nHarmony\nHaylee\nJoselyn\nKailey\nKaley\nKarlee\nKirsten\nKristen\nLexie\nMacie\nMakenna\nMargaret\nMarlee\nRaven\nAlana\nAlice\nAlondra\nAniyah\nApril\nBrittany\nCaitlin\nCamryn\nCheyanne\nDanica\nGabriela\nJakayla\nJuliana\nKayden\nKaylin\nKelly\nLainey\nLaken\nLila\nMadyson\nNatalia\nPaisley\nRihanna\nRylie\nAlejandra\nAngelica\nAshtyn\nAyla\nBriley\nBritney\nCameron\nCarlie\nDulce\nEmery\nErika\nKali\nKendra\nKristina\nLaci\nLola\nMaci\nMadalyn\nMckenna\nMckinley\nMicah\nMichaela\nMonica\nPhoebe\nSabrina\nSaniya\nStella\nAbbie\nAddisyn\nAlexus\nAmari\nAmiya\nAmya\nCaitlyn\nCali\nCharlotte\nChristina\nCindy\nCynthia\nDesiree\nElena\nErica\nJaelyn\nJillian\nJoanna\nKallie\nKarli\nKenya\nKhloe\nKierra\nKinsley\nLauryn\nLilian\nLizbeth\nLyla\nMelody\nMiracle\nMylee\nNora\nPaola\nRose\nSidney\nSydnee\nTatum\nViolet\nAbbigail\nAddie\nAdyson\nAliyah\nAlli\nAllyssa\nAlyson\nAnnalise\nArabella\nAubrie\nAurora\nAyanna\nAylin\nBianca\nElle\nEsperanza\nGiselle\nHaylie\nIvy\nJaniya\nJayda\nJaylin\nJessie\nJosephine\nKailee\nKailyn\nKaitlynn\nKatlyn\nKeely\nKiara\nKiley\nLacy\nLakyn\nLogan\nMeredith\nMollie\nNia\nNina\nParis\nPatricia\nRaquel\nShaniya\nShiloh\nTori\nZoie\nAlex\nAlina\nAlison\nAlly\nAmaya\nAnastasia\nAnaya\nAzul\nBerkley\nBrookelynn\nDestiney\nDiamond\nGenevieve\nGloria\nHailie\nHelen\nIris\nItzel\nIzabella\nJacey\nJaycee\nJaylee\nJenny\nKalyn\nKaren\nKassidy\nKelis\nLibby\nLiliana\nMacey\nMadalynn\nMckayla\nMercedes\nMontana\nMoriah\nNataly\nPatience\nRaelyn\nSamara\nSarai\nSylvia\nTaryn\nWillow\nZariah\nAbbygail\nAkeelah\nAlaina\nAlisa\nAmerica\nAnn\nAshlee\nAspen\nAverie\nCassandra\nCeleste\nCharlee\nChristian\nClaira\nConstance\nDani\nElexis\nElisabeth\nEmmalee\nFatima\nGisselle\nGracelyn\nGrayson\nGwyneth\nHarlie\nHeidi\nIndia\nJaci\nJacie\nJaidyn\nJanessa\nJimena\nJohanna\nJordin\nJorja\nJoshlyn\nKaci\nKalli\nKamya\nKarley\nKarlie\nKaylea\nKaylen\nKaylynn\nKelsie\nKenna\nKennedi\nKimora\nKyndall\nLacey\nLaikyn\nLilliana\nLondyn\nLoren\nLyric\nMalia\nMiriam\nMiyah\nMyah\nMylie\nPrecious\nRuth\nSariah\nSaydee\nShakira\nSienna\nTabitha\nTalia\nTamia\nToni\nValerie\nYasmin\nZaniya\nZariyah\nAdelynn\nAdison\nAinsley\nAisha\nAlayna\nAlena\nAlisha\nAlma\nAmiyah\nAnahi\nAnnabeth\nAnnalee\nArden\nAshton\nAyana\nBrenda\nBrenna\nBrynlee\nCaleigh\nCalleigh\nCampbell\nCandice\nCarleigh\nCarolina\nCasey\nCaydence\nCecilia\nCharley\nClaudia\nCora\nCristal\nCristina\nDevyn\nDrew\nEleanor\nEliana\nEllison\nElyse\nEmmaleigh\nEsmeralda\nGraci\nHana\nImani\nJacee\nJaeda\nJamiah\nJamiyah\nJamya\nJasmyn\nJayme\nJazmyn\nJoslyn\nJulissa\nKalee\nKaliyah\nKamari\nKarina\nKarly\nKarma\nKarsyn\nKasey\nKatrina\nKaylyn\nKenadie\nKiana\nKimber\nKinsey\nKristin\nKya\nLesly\nLiberty\nLinda\nLitzy\nLorelei\nLuna\nMadelynn\nMadilynn\nMakaila\nMakaylah\nMakinley\nMareli\nMarisol\nMarlene\nMartha\nMeadow\nMeagan\nNatalee\nNatasha\nPerla\nPyper\nRaylee\nRhianna\nRosa\nSamiya\nSandra\nSariyah\nSavanah\nSaylor\nShayla\nShyann\nShyla\nSimone\nSkye\nStephany\nStormie\nStormy\nSydnie\nTaliyah\nTaniyah\nTegan\nTristyn\nVirginia\nYajaira\nZion\nMadison\nEmma\nEmily\nAddison\nOlivia\nChloe\nAva\nIsabella\nAbigail\nBrooklyn\nAlexis\nHannah\nElizabeth\nNatalie\nKaylee\nTaylor\nAnna\nAlyssa\nElla\nLillian\nSophia\nSarah\nKylie\nMakayla\nAubrey\nGracie\nLily\nAllison\nBailey\nAshley\nRiley\nAvery\nHailey\nTrinity\nLauren\nSamantha\nSavannah\nBrianna\nMackenzie\nVictoria\nKimberly\nMckenzie\nKylee\nDestiny\nMorgan\nPeyton\nZoey\nHaley\nMia\nAutumn\nAudrey\nKatelyn\nSophie\nKaitlyn\nNevaeh\nSydney\nCaroline\nKennedy\nGrace\nJasmine\nKayla\nRylee\nZoe\nAshlyn\nPayton\nCheyenne\nLilly\nSadie\nLayla\nLeah\nMary\nKatherine\nSerenity\nAaliyah\nJessica\nMakenzie\nAllie\nJulia\nKatie\nEvelyn\nEva\nJada\nJayden\nMadelyn\nMaggie\nMariah\nAbby\nGabriella\nShelby\nAlexa\nGabrielle\nBrooklynn\nJenna\nAmelia\nIsabelle\nJayla\nKinley\nLondon\nLydia\nReagan\nAddyson\nAlivia\nBreanna\nHayden\nJennifer\nMadeline\nMolly\nPaige\nPiper\nAriana\nBrooke\nLeslie\nMarley\nRachel\nArianna\nAshlynn\nHaylee\nRuby\nAlexandra\nBrylee\nCallie\nFaith\nMiley\nAngel\nEden\nJosie\nAndrea\nBella\nClaire\nJillian\nJocelyn\nJordan\nMallory\nNaomi\nPresley\nSara\nSkylar\nValeria\nCadence\nDanielle\nKadence\nKelsey\nMacy\nMaria\nMegan\nRebecca\nReese\nAlexandria\nLexi\nSofia\nAmber\nBriana\nJade\nJordyn\nKatelynn\nKaydence\nKenzie\nKhloe\nLucy\nMadalyn\nMelanie\nMya\nAmy\nAnnabelle\nBaylee\nDakota\nEmery\nEmilee\nHeidi\nLaila\nMaddison\nMadilyn\nRyleigh\nCarly\nChristina\nDaisy\nDiana\nErin\nGabriela\nKayleigh\nKaylie\nKendall\nKiley\nMaci\nAllyson\nAmari\nAngelina\nAniya\nCamila\nGenesis\nHadley\nKamryn\nKate\nLaney\nLindsey\nMaya\nMelody\nTessa\nAbbigail\nAdrianna\nAniyah\nCatherine\nHeather\nHope\nIsabel\nJamie\nLacey\nLila\nMichelle\nNadia\nNicole\nSierra\nSummer\nAdalyn\nClara\nCourtney\nHallie\nHarley\nHaven\nKira\nKyla\nKyra\nNatalia\nRaven\nRebekah\nScarlett\nStephanie\nVanessa\nAdriana\nAlexia\nAurora\nCharlotte\nChelsea\nCheyanne\nIvy\nJadyn\nJazmin\nKathryn\nKelly\nKendra\nLainey\nAlison\nAmanda\nAna\nAngela\nBethany\nCaitlin\nCaitlyn\nCamille\nCamryn\nCarlee\nCarmen\nEllie\nHarper\nKara\nKyleigh\nLaura\nLillie\nLogan\nLondyn\nMadisyn\nParis\nZoie\nAlicia\nAubree\nCharlie\nHeaven\nKaelyn\nKaitlynn\nKali\nKamya\nKaren\nKarlee\nKassidy\nKennedi\nLola\nMacie\nMadelynn\nMadyson\nMarissa\nMarlee\nMckenna\nMckinley\nRylie\nSkyler\nStella\nTiffany\nAlayna\nAliyah\nAlyson\nAriel\nBrenda\nCaylee\nCora\nCynthia\nDixie\nDulce\nJacey\nJamya\nJaniyah\nJoselyn\nKailey\nKiersten\nKimora\nLauryn\nLexie\nMakenna\nViolet\nVivian\nAdyson\nAlondra\nAshlee\nBriley\nCameron\nCecilia\nCharlee\nCharley\nCiara\nCierra\nDaniela\nErika\nGracyn\nIzabella\nKarla\nKaylin\nKeira\nLeila\nLiliana\nLyla\nMacey\nMeredith\nMiracle\nNatalee\nNorah\nSavanna\nShayla\nAlana\nArabella\nCassidy\nCharity\nElaina\nElena\nGeorgia\nHarmony\nHayley\nIsis\nJacqueline\nJaden\nJaida\nJakayla\nJaniya\nJayda\nKaliyah\nKarsyn\nKayden\nKiera\nLiberty\nMalia\nMargaret\nMattie\nMichaela\nMiranda\nMiriam\nMollie\nNatasha\nPaisley\nPerla\nRachael\nStormy\nValerie\nAbagail\nAbbey\nAdalynn\nAddisyn\nAinsley\nAlissa\nAlly\nAnastasia\nBailee\nBraelyn\nCarley\nCarson\nCherish\nConstance\nCrystal\nDelaney\nDestinee\nEleanor\nEmerson\nHelen\nIndia\nIngrid\nJaidyn\nJaycee\nJessie\nKaty\nKaylen\nKaylynn\nKiara\nKyndall\nKynleigh\nLana\nLesly\nMadalynn\nMaliyah\nMarely\nMariana\nMelissa\nMicah\nNataly\nNia\nPhoebe\nRaegan\nSandra\nSelena\nSkyla\nTatum\nTeresa\nWillow\nZaria\nZion\nAbbie\nAdeline\nAimee\nAsia\nAudrina\nBianca\nBrandi\nBrinley\nCarlie\nCarolyn\nDiamond\nElisabeth\nEmely\nFelicity\nGabriel\nGiselle\nGracelyn\nHailee\nHalle\nHanna\nJaelyn\nJamiya\nJaylin\nJaylynn\nJazmine\nJoanna\nJourney\nJuliana\nKailyn\nKaleigh\nKalyn\nKarlie\nKelsie\nKenya\nKierra\nKinsley\nKya\nLaci\nLela\nLinda\nLyric\nMakaila\nMakenzi\nMakiya\nMckayla\nMilagros\nMonica\nNayeli\nNora\nPatience\nPatricia\nRaylee\nRihanna\nShania\nShyanne\nSidney\nWhitney\nAbbygail\nAbigayle\nAddie\nAlaina\nAlexus\nAlma\nAmaya\nAmiyah\nAnaya\nAngie\nAnne\nAnnie\nApril\nArely\nAshton\nAshtyn\nAspen\nAveri\nBarbara\nBryleigh\nBrynlee\nCassandra\nDayana\nDelilah\nDonna\nElisa\nEliza\nEmmie\nErica\nEsmeralda\nEvie\nFatima\nGianna\nGloria\nGracelynn\nHadlee\nHalie\nHarlee\nHeavenly\nIreland\nIris\nItzel\nIzabelle\nJaelynn\nJaliyah\nJane\nJaqueline\nJasmyn\nJaylee\nJazmyn\nJolie\nJordin\nJoslyn\nJuana\nJulie\nJulissa\nKaci\nKamdyn\nKarley\nKarly\nKasey\nKaylyn\nKeegan\nKenley\nKensley\nKristen\nKyli\nLaken\nLandry\nLaynie\nLia\nMadilynn\nMattison\nMylee\nNancy\nPenelope\nPriscilla\nRayna\nRayne\nReanna\nRiver\nRowan\nRuthie\nSabrina\nSarai\nSerena\nShiloh\nShyann\nStacey\nStacy\nTabitha\nTaliyah\nTia\nToni\nTristen\nWendy\nAdelyn\nAkira\nAleah\nAlejandra\nAlice\nAlina\nAllisson\nAmirah\nAmiya\nAmya\nAnabelle\nAnnika\nAriyana\nAshleigh\nAthena\nAubrie\nAyla\nBayleigh\nBlakely\nBrailey\nBrandy\nBryanna\nBryley\nCailee\nCali\nCalleigh\nCandice\nCara\nCarissa\nCasey\nCassie\nChandler\nCharis\nCloe\nDana\nDanna\nDesiree\nDestini\nDianna\nEllison\nEmelia\nEstrella\nFinley\nGracey\nGreenlee\nGwendolyn\nHaleigh\nHallee\nHattie\nHolly\nJalynn\nJanya\nJasmin\nJaylyn\nJazmyne\nJenny\nJewel\nJournie\nJune\nKailee\nKamari\nKamiah\nKarleigh\nKarma\nKelsi\nKeyla\nKiana\nKrystal\nLakyn\nLilah\nLilian\nLillyan\nLucille\nMagdalena\nMakalyn\nMaleah\nMarina\nMariyah\nMarleigh\nMelany\nMercedes\nMiah\nMikayla\nMisty\nMontana\nMoriah\nMyah\nNichole\nParker\nRaelynn\nRayleigh\nReece\nRegina\nRyan\nSamya\nSaniya\nSaylor\nScarlet\nShaylee\nShelbi\nSienna\nTori\nValery\nWhitley\nXimena\nYareli\nYasmine\nZariyah\nZoee\nEmma\nMadison\nAddison\nIsabella\nAva\nEmily\nAlexis\nAbigail\nOlivia\nChloe\nKaylee\nSophia\nElla\nElizabeth\nHannah\nLillian\nBrooklyn\nAlyssa\nLily\nAvery\nAnna\nAubrey\nNatalie\nAllison\nBella\nTaylor\nZoey\nMakayla\nAutumn\nGracie\nHailey\nMia\nSarah\nMadelyn\nNevaeh\nTrinity\nKylie\nSydney\nLauren\nSavannah\nSerenity\nGrace\nBrianna\nRiley\nDestiny\nAudrey\nBailey\nLayla\nMorgan\nSophie\nLilly\nMackenzie\nMary\nPeyton\nAshley\nFaith\nKaitlyn\nJasmine\nKatie\nCaroline\nLeah\nClaire\nPayton\nSamantha\nKylee\nLydia\nEvelyn\nMakenzie\nRylee\nBrooklynn\nKennedy\nKhloe\nMariah\nAmelia\nKatelyn\nSadie\nAaliyah\nJada\nPresley\nJordyn\nLondon\nPiper\nReagan\nShelby\nVictoria\nZoe\nIzabella\nJessica\nKatherine\nKayla\nAllie\nHaley\nHarper\nIsabelle\nJayden\nMaggie\nAddyson\nBrylee\nKimberly\nKyleigh\nPaisley\nAshlyn\nBrooke\nGabriella\nGabrielle\nHayden\nLucy\nAlivia\nArianna\nKinley\nMaria\nMckenzie\nRyleigh\nAndrea\nJade\nJordan\nJulia\nRuby\nAshlynn\nMadeline\nMadilyn\nMarley\nGenesis\nJosie\nMallory\nSummer\nVanessa\nAlexa\nAmy\nAngel\nAniyah\nCheyenne\nEva\nKaydence\nMacy\nMaddison\nMarlee\nMolly\nSofia\nBethany\nCamila\nHeaven\nLaila\nMya\nBaylee\nCaylee\nHarley\nHaylee\nKathryn\nLeslie\nPaige\nCallie\nHope\nKate\nKayleigh\nStella\nValeria\nAmari\nBreanna\nCarly\nKelsey\nNaomi\nRebecca\nAbby\nAlana\nAlexandria\nCadence\nErica\nHaven\nJayla\nJillian\nJocelyn\nMiley\nParis\nReese\nSara\nStephanie\nAsia\nAubree\nCourtney\nHadley\nLexi\nLyla\nRachel\nTessa\nWillow\nAbbigail\nAna\nAniya\nAnnabelle\nAriana\nCaitlyn\nDanielle\nEden\nKendra\nKenzie\nMaya\nSierra\nAdalyn\nAlexandra\nAllyson\nAmber\nAngela\nBlakely\nCassidy\nDaisy\nDakota\nEmery\nHeidi\nJayda\nJenna\nJennifer\nKara\nKatelynn\nKendall\nKennedi\nKinsley\nMacie\nMadisyn\nMarissa\nMelody\nMikayla\nScarlett\nShayla\nAdriana\nAmanda\nAriel\nJazmine\nKarlee\nKyra\nMadalyn\nMollie\nAlaina\nAlexia\nAlice\nAurora\nCali\nCatherine\nEllie\nIsabel\nJacqueline\nJaden\nJazmin\nKadence\nKailey\nLaura\nMakenna\nMegan\nSkylar\nVivian\nAddisyn\nAlicia\nBriana\nEmilee\nGeorgia\nGracelyn\nIvy\nJamie\nJaniya\nJaniyah\nKarla\nLacey\nLola\nLondyn\nMadelynn\nMckenna\nMiranda\nNora\nRaegan\nSkyler\nViolet\nAdrianna\nAinsley\nAlejandra\nBriley\nCamryn\nCarlee\nChristina\nDiamond\nDiana\nErika\nGabriela\nGiselle\nHarmony\nHattie\nJamiyah\nJazlyn\nJimena\nJourney\nJulianna\nKaelyn\nKaitlynn\nKaren\nKeira\nKelly\nLaney\nMaci\nMadalynn\nMiracle\nNicole\nAlison\nAmiya\nAngie\nAubrie\nBianca\nCarley\nCarmen\nCharity\nCharlotte\nCora\nCynthia\nDulce\nEliana\nElisabeth\nErin\nFernanda\nHaleigh\nHallie\nJadyn\nKaylie\nKaylin\nKiley\nKira\nLakyn\nLeighton\nMadeleine\nMaliyah\nMeredith\nRihanna\nRylie\nSavanna\nStormy\nWhitney\nZoie\nAbbygail\nAdeline\nAmaya\nArabella\nAspen\nBailee\nBayleigh\nCameron\nDelaney\nElena\nEmerson\nEvie\nJaida\nJaycee\nJessie\nJoanna\nKamryn\nKamya\nKarley\nKayden\nKristen\nLauryn\nLexie\nLila\nLilah\nLiliana\nMadyson\nMelanie\nMicah\nMiriam\nMoriah\nNatalee\nNatasha\nSasha\nTeagan\nWendy\nYasmin\nAbbie\nAdalynn\nAdison\nAlayna\nAlissa\nAlondra\nAmiyah\nAmya\nAnabelle\nAnastasia\nBraelyn\nBryleigh\nBrynlee\nCara\nCarleigh\nCarlie\nClara\nDixie\nElaina\nEliza\nEmely\nHadassah\nHailee\nHelen\nJacey\nJamiya\nJaylee\nJaylin\nKali\nKayli\nKaylynn\nKenley\nKenya\nKiera\nKirsten\nLillie\nLinda\nLindsey\nMara\nMargaret\nMckinley\nMichelle\nNatalia\nPreslee\nRaven\nRebekah\nSaniya\nShaylee\nSkyla\nYareli\nZariah\nAbigayle\nAddie\nAdrienne\nAliyah\nAlyson\nAngelica\nAnniston\nApril\nAyla\nBerkley\nBraylee\nBrenda\nBristol\nCarsyn\nCecilia\nCherish\nDanica\nDaniela\nDestinee\nGianna\nGwendolyn\nIndia\nJaelyn\nJaiden\nJaliyah\nJanie\nJasmin\nJaycie\nJewel\nJoslyn\nKaidence\nKaniya\nKarleigh\nKiara\nKierra\nKimber\nKyla\nLainey\nLibby\nLoren\nLynlee\nMaddie\nMadilynn\nMakiah\nMariana\nMelissa\nMonica\nMylee\nNancy\nNathalie\nRhiannon\nRose\nSage\nShannon\nShyla\nSkye\nTabitha\nTiffany\nTori\nValerie\nVirginia\nAbigale\nAdyson\nAleah\nAlli\nAnaya\nAnnabella\nAria\nAshleigh\nBentley\nBlair\nBria\nBrilee\nBrittany\nBrookelyn\nBrookelynn\nCaitlin\nCamille\nCayden\nCharli\nCheyanne\nDani\nEleanor\nFinley\nHalle\nHanna\nIsabell\nJacee\nJacie\nJaidyn\nJamya\nJordin\nJudith\nJuliet\nKailyn\nKallie\nKamille\nKarli\nKarlie\nKarmen\nKaty\nKaylyn\nKelsi\nKimora\nLea\nLena\nLizbeth\nLorelai\nLyric\nMariyah\nNadia\nPhoebe\nSamiya\nSelena\nStevie\nTatiana\nVeronica\nAbbey\nAdelyn\nAlaya\nAlyvia\nAnahi\nAnalia\nAngelina\nAnnie\nAshanti\nAubry\nAveri\nBrandi\nBrenna\nBrylie\nBrynn\nCaleigh\nCamilla\nCampbell\nCassandra\nCharlee\nChelsea\nChelsey\nCiara\nCristal\nCrystal\nDahlia\nElise\nEmory\nEssence\nFarrah\nGenevieve\nGracelynn\nGuadalupe\nHarlee\nHarleigh\nHarlow\nHayley\nHaylie\nHeather\nHolly\nIris\nJaci\nJailyn\nJamia\nJanet\nJanice\nJaylynn\nJazmyn\nJoselin\nJosephine\nJuliana\nJulissa\nJustice\nKaileigh\nKaleigh\nKalli\nKarina\nKaris\nKassandra\nKeily\nKeylee\nKiersten\nKinsey\nKloey\nKodi\nKyndall\nLaken\nLiberty\nLindsay\nLuna\nMacey\nMakena\nMaleah\nMalia\nMaliah\nMarleigh\nMarlie\nMattison\nMaycee\nMaylee\nMayra\nMaziyah\nMckayla\nMercedes\nMichaela\nMontana\nMyah\nNathaly\nNoemi\nNorah\nPayten\nPromise\nRachael\nRaelynn\nRaylee\nRayleigh\nRiver\nRosa\nRosemary\nRuth\nSabrina\nShaniya\nSherlyn\nShiloh\nSienna\nSkylee\nSylvia\nTakayla\nTalia\nTaniya\nTatum\nTegan\nTiana\nTracy\nTyler\nWhitley\nYaretzi\nZaria\nZariyah\nZaylee\nEmma\nIsabella\nAddison\nChloe\nMadison\nEmily\nAbigail\nOlivia\nAva\nSophia\nHannah\nBrooklyn\nZoey\nKhloe\nAlexis\nAlyssa\nLily\nNatalie\nElla\nAnna\nAubrey\nLillian\nAvery\nKaylee\nNevaeh\nElizabeth\nRiley\nLayla\nAllison\nTaylor\nBailey\nGrace\nGracie\nMia\nKylie\nRylee\nPeyton\nAaliyah\nLilly\nMakayla\nPayton\nTrinity\nSamantha\nMary\nSavannah\nSophie\nZoe\nAutumn\nKinley\nBella\nHailey\nBrianna\nSydney\nAmelia\nJordyn\nKatelyn\nAddyson\nKatherine\nMaci\nMadelyn\nSarah\nBrooklynn\nKayla\nKennedy\nEvelyn\nShelby\nAshlyn\nAudrey\nDestiny\nFaith\nGabriella\nHarper\nMorgan\nJasmine\nMackenzie\nMakenzie\nSerenity\nAllie\nAshley\nAdalyn\nMelanie\nPaisley\nPresley\nClaire\nLondon\nMckenzie\nVictoria\nCaroline\nKaydence\nLucy\nSara\nAlexa\nAndrea\nKaitlyn\nAbby\nEden\nEva\nHadley\nJada\nKylee\nLauren\nLeah\nMariah\nMolly\nRyleigh\nJade\nKatie\nKimberly\nLexi\nMya\nLydia\nPiper\nCharlotte\nGabrielle\nJayden\nAriana\nIzabella\nPaige\nAshlynn\nCadence\nCallie\nCamila\nEllie\nJocelyn\nKyleigh\nMadeline\nJillian\nLyla\nSummer\nCheyenne\nLaila\nSadie\nAlexia\nAlivia\nJulia\nKatelynn\nMacy\nReagan\nArianna\nHayden\nIsabelle\nJayla\nJennifer\nMaddison\nMaggie\nNaomi\nRuby\nStella\nAniyah\nAubree\nHaley\nIsabel\nKinsley\nLillie\nMarley\nScarlett\nAnnabelle\nBrylee\nErin\nHarley\nHaven\nJessica\nLexie\nMadilyn\nMallory\nAlexandra\nAngel\nBriley\nClara\nJaycee\nJenna\nKadence\nMacie\nMadisyn\nMaria\nReese\nSkylar\nAriel\nBaylee\nCarley\nCatherine\nGenesis\nHallie\nJordan\nKendall\nLila\nMattie\nStephanie\nAlexandria\nDaniela\nEmerson\nEmilee\nHeaven\nJuliana\nKate\nKayleigh\nKelsey\nLeslie\nMegan\nRachel\nRaegan\nSofia\nValeria\nViolet\nWillow\nAdalynn\nAinsley\nAlana\nAmy\nAngelina\nBrooke\nCarly\nDaisy\nDixie\nHarmony\nJosie\nKathryn\nKendra\nLondyn\nMaya\nNatalia\nNora\nParis\nRebecca\nAdrianna\nAna\nBailee\nBlakely\nBraelyn\nBreanna\nCarmen\nDakota\nEmery\nGabriela\nHaylee\nHope\nKenzie\nKynlee\nMadalyn\nMiley\nNicole\nRylie\nAddisyn\nAdeline\nAlison\nAnnabella\nBethany\nBraylee\nDanielle\nGianna\nJacqueline\nJourney\nKaitlynn\nKamryn\nKiley\nKyra\nLaney\nMargaret\nPenelope\nSarai\nAllyson\nAlondra\nAmber\nAsia\nAurora\nDelilah\nEleanor\nEliza\nFinley\nGracelynn\nJayda\nKaylynn\nKennedi\nKira\nLainey\nLiliana\nLola\nMadilynn\nMakenna\nMikayla\nNyla\nPhoebe\nSasha\nTeagan\nAbagail\nAbbigail\nAleah\nAngela\nArabella\nCarlee\nCharlie\nChristina\nCora\nDelaney\nIvy\nJaiden\nKeeley\nMaliyah\nMarlee\nMckinley\nMelissa\nMelody\nParker\nPatience\nPreslee\nTenley\nVanessa\nZion\nAddie\nAliyah\nAnahi\nAnnie\nAubrie\nBentley\nBrinley\nCaylee\nCiara\nCrystal\nDiana\nFatima\nFernanda\nJakayla\nJaylee\nJazmin\nJazmine\nJessie\nJune\nKaliyah\nKarlee\nKiara\nLana\nLaura\nLauryn\nMadyson\nMalia\nMiracle\nMiranda\nPhoenix\nRosa\nScarlet\nSelena\nTatum\nTiffany\nAbbie\nAleigha\nAlejandra\nAlicia\nAlissa\nAmanda\nAmari\nAmiya\nAmiyah\nAnabelle\nAnastasia\nAnniston\nCaitlyn\nCali\nCassidy\nCharity\nDulce\nElaina\nEmber\nEsmeralda\nEsther\nGeorgia\nIreland\nJacey\nJasmin\nJaycie\nJaylynn\nJazlyn\nKaelyn\nKailyn\nKara\nKarsyn\nKassidy\nKaylin\nKenley\nKimora\nKyla\nLindsey\nLuna\nLyric\nMakiyah\nMarissa\nMckenna\nMicah\nMollie\nNadia\nNorah\nOlive\nRaelynn\nRebekah\nSariyah\nSavanna\nSierra\nTessa\nTori\nWhitley\nAbbey\nAbigale\nAddilynn\nAdilyn\nAdrienne\nAdyson\nAlaina\nAlayna\nAlice\nAlyson\nAniya\nApril\nAthena\nBrielle\nBrylie\nCamille\nCamryn\nDeborah\nEmmalyn\nGiselle\nGracelyn\nHailee\nHaleigh\nHolly\nJadyn\nJaliyah\nJamie\nJamya\nJaniya\nJuliet\nJustice\nKaren\nKarissa\nKarma\nKarmen\nKeely\nKeira\nKelsie\nKimber\nKirsten\nKyndal\nLaniyah\nLena\nLibby\nLilah\nLucia\nMacey\nMadalynn\nMadeleine\nMadelynn\nMakenzi\nMillie\nMiya\nRaylee\nRayleigh\nRuth\nShaniyah\nTiana\nXimena\nZariah\nAbree\nAiyana\nAli\nAmerica\nAmya\nAnnalee\nAnsley\nArionna\nAryanna\nAvah\nAverie\nBentlee\nBerkley\nBlair\nBriana\nBrisa\nBrynlee\nBrynn\nCailyn\nCameron\nCamilla\nChanning\nChasity\nCheyanne\nDaniella\nDesiree\nDiamond\nElena\nEliana\nElise\nEmersyn\nEmmalynn\nEmmy\nErica\nFarrah\nGenevieve\nGuadalupe\nHadleigh\nHalle\nHeather\nJaniyah\nJaylin\nJazlynn\nJimena\nJoanna\nJoselyn\nJosephine\nKaia\nKailey\nKaitlin\nKallie\nKamari\nKarina\nKiera\nKinsey\nKourtney\nKyndall\nKynleigh\nLeila\nLizbeth\nLogan\nLynley\nMaycee\nMckenzi\nMeredith\nMiriam\nMyla\nMylee\nNatalee\nNataly\nNatasha\nPerla\nRachael\nRileigh\nRowan\nSariah\nShaelyn\nShayla\nShiloh\nSidney\nSkyler\nSloane\nTaraji\nTinley\nValentina\nVeronica\nVivian\nWilla\nZoie\nAdriana\nAlanna\nAlaysia\nAlisha\nAlly\nAmaya\nAngie\nAnnabel\nAnnabell\nAnnalise\nAria\nAshanti\nAspen\nAustyn\nBayleigh\nBonnie\nBrenna\nBristol\nBrookelyn\nCaleigh\nCarleigh\nCarlie\nCarolina\nCarsyn\nCecilia\nCharleigh\nCharley\nCharli\nCierra\nCindy\nCynthia\nDana\nDanica\nDarcy\nDestany\nDylan\nElisabeth\nEllen\nEmmarie\nFiona\nGracyn\nHadlee\nHavyn\nHayley\nHeidi\nJaci\nJaelyn\nJaelynn\nJaidyn\nJalyn\nJamiya\nJamiyah\nJanelle\nJayce\nJaylah\nJocelynn\nJoslyn\nJulianna\nJulie\nKailee\nKalyn\nKarleigh\nKarlie\nKarmyn\nKathleen\nKayden\nKayle\nKaylen\nKayley\nKaylyn\nKelly\nKensley\nKinzley\nLaken\nLeilani\nLesly\nLexus\nLiberty\nLilliana\nLinda\nLinley\nLucille\nMakinlee\nMallori\nMartha\nMikaela\nNina\nNova\nNylah\nPaola\nPreslie\nPrincess\nRilee\nRiver\nRory\nRosalyn\nRose\nSage\nSamara\nSamari\nSaniyah\nSerena\nShelbie\nTabitha\nTalia\nTamia\nTatiana\nTinsley\nValerie\nVera\nWendy\nEmma\nIsabella\nAddison\nMadison\nAbigail\nAva\nSophia\nChloe\nEmily\nOlivia\nElizabeth\nElla\nAubrey\nBrooklyn\nAvery\nZoey\nNatalie\nHarper\nLayla\nAlexis\nLillian\nHannah\nKaylee\nAnna\nLily\nNevaeh\nAllison\nRiley\nKhloe\nTrinity\nMia\nAlyssa\nAaliyah\nKylee\nFaith\nPayton\nZoe\nAmelia\nAudrey\nSarah\nSavannah\nBailey\nKylie\nSophie\nAutumn\nEvelyn\nLilly\nMckenzie\nPiper\nTaylor\nKennedy\nRylee\nSerenity\nCaroline\nGrace\nHailey\nAubree\nAnnabelle\nCharlotte\nGracie\nKinley\nLauren\nVictoria\nAshley\nAddyson\nClaire\nEllie\nMackenzie\nMariah\nPeyton\nBella\nBrooklynn\nKatie\nMaci\nMakayla\nLydia\nSamantha\nLondon\nAllie\nAshlyn\nHadley\nLeah\nSofia\nAndrea\nBrylee\nGabriella\nJordyn\nKatherine\nLondyn\nMary\nMolly\nRyleigh\nKimberly\nPaisley\nEva\nJasmine\nKatelyn\nMorgan\nSkylar\nStella\nEden\nMakenzie\nSydney\nMaggie\nPresley\nAdalyn\nPaige\nBrianna\nDestiny\nMya\nWillow\nAdalynn\nAlexa\nCamila\nJayden\nJenna\nKaitlyn\nKinsley\nScarlett\nAshlynn\nIzabella\nMadelyn\nSadie\nVanessa\nBrooke\nCharlee\nArianna\nCallie\nCheyenne\nGenesis\nHayden\nMadeline\nRachel\nShelby\nIsabelle\nJosie\nLyla\nRuby\nBreanna\nClara\nJulia\nKennedi\nLila\nMarlee\nMiley\nNaomi\nNora\nReagan\nAbby\nAngel\nBaylee\nBethany\nJade\nJocelyn\nKate\nKaydence\nKayla\nKyleigh\nLexi\nLucy\nAdrianna\nAlana\nAlayna\nAlexandria\nAlice\nAriana\nErin\nGabrielle\nHaley\nJayla\nJordan\nKynlee\nDixie\nEmerson\nJada\nKamryn\nMacy\nMelody\nRebecca\nTeagan\nAllyson\nAniyah\nEmery\nKayleigh\nMacie\nMelanie\nNicole\nReese\nAubrie\nDaisy\nHaven\nHeidi\nIsabel\nJessica\nJillian\nKaylie\nLillie\nMikayla\nMiranda\nSummer\nViolet\nAmari\nAmy\nBriley\nCarly\nCora\nHaylee\nKadence\nKatelynn\nKelsey\nLyric\nMakenna\nMckenna\nStephanie\nAbbigail\nAniya\nAriel\nBlakely\nCarmen\nElena\nElise\nGeorgia\nHallie\nHarley\nHope\nLeslie\nMarley\nRaylee\nTatum\nAdriana\nAlyson\nAna\nEliza\nHarmony\nHeaven\nJaliyah\nJayda\nLaila\nMadalynn\nMadilyn\nMadisyn\nMallory\nMegan\nMichelle\nNatalia\nParker\nVivian\nZoie\nAddisyn\nAlivia\nBraelyn\nBraylee\nBrynlee\nCatherine\nCharlie\nEmilee\nJaylee\nJazmine\nJennifer\nKenley\nKiley\nKira\nLola\nMckinley\nParis\nRylie\nValeria\nWhitley\nAlison\nAlondra\nAnnabella\nAnnie\nAria\nAspen\nCadence\nChelsea\nEleanor\nGracelyn\nGracelynn\nJaycee\nJaylynn\nJoselyn\nJournee\nJourney\nKara\nKeira\nKendall\nMaddison\nMargaret\nMaya\nNyla\nRaelynn\nTenley\nTinley\nAddilyn\nAdelyn\nAlaina\nAmber\nAnniston\nArabella\nBristol\nCaylee\nDaniela\nElaina\nEmmalyn\nGemma\nIvy\nJacqueline\nJadyn\nJessie\nKaren\nKarsyn\nKenlee\nKensley\nKyndall\nLaney\nLynlee\nMadalyn\nMadelynn\nMila\nRaelyn\nSavanna\nSkyler\nAbbie\nAlexia\nAliyah\nApril\nAurora\nBriana\nBrielle\nBryleigh\nBrynn\nCaitlyn\nCamille\nCassidy\nCharleigh\nDakota\nDanielle\nDiana\nFinley\nGenevieve\nHadlee\nHayley\nHazel\nJamie\nJurnee\nJustice\nKailey\nKaitlynn\nKaleigh\nKarlee\nKayden\nKenna\nKenzie\nKyla\nKyra\nLainey\nLiberty\nMacey\nMadilynn\nMckayla\nNadia\nPenelope\nPreslee\nRaven\nRebekah\nSara\nSelena\nValerie\nXimena\nAlexandra\nAnastasia\nAubri\nAverie\nBailee\nCaydence\nCharity\nCrystal\nDayana\nElliott\nEmber\nHalle\nHolly\nJaniyah\nJuliana\nJulie\nKaidence\nKailee\nKailyn\nKathryn\nKaylin\nKiara\nKourtney\nLaken\nLandry\nLauryn\nLaylah\nLeilani\nLena\nLexie\nMariyah\nMicah\nMiracle\nNorah\nPhoebe\nQuinn\nRuth\nScarlet\nSkye\nTiana\nAdeline\nAinsley\nAlly\nAmaya\nAmiyah\nAnnabel\nAnnabell\nAnsley\nAthena\nAveri\nAylin\nBianca\nBrittany\nBryanna\nDallas\nDulce\nElayna\nErika\nFarrah\nHeather\nJaelyn\nJaiden\nJaniya\nJazmin\nJemma\nJuliet\nKali\nKaliyah\nKaylynn\nKyndal\nLakyn\nLaura\nLeigha\nLeighton\nLiliana\nMakinley\nMaria\nMelissa\nMiriam\nPaityn\nPatience\nPyper\nRaegan\nSabrina\nSamara\nSasha\nShayla\nSloan\nSydnee\nValentina\nAbigayle\nAja\nAlina\nAlissa\nAlli\nAmara\nAngela\nAngelique\nAnn\nAyanna\nAyla\nBentley\nBlair\nCali\nCameron\nCecilia\nCharli\nChristina\nCiara\nCollins\nDestiney\nEmmalee\nEstrella\nGianna\nGiselle\nHailee\nHaleigh\nHelen\nIndia\nIzzabella\nJaelynn\nJakayla\nJasmin\nJayci\nJaycie\nJazlyn\nJimena\nJosslyn\nJulianne\nKallie\nKaris\nKarma\nKaylyn\nKeely\nKendra\nKendyl\nKenleigh\nKinlee\nKinsey\nKristen\nLacey\nLilah\nMaddie\nMeredith\nMilagros\nMillie\nMyla\nNayeli\nOlive\nRayleigh\nRayne\nRosalie\nSelah\nSierra\nSloane\nStormy\nTegan\nTessa\nTori\nVeronica\nVivienne\nAbigale\nAddie\nAli\nAmanda\nAmiya\nAngelina\nAngie\nAnika\nAriyah\nAshanti\nAshton\nAugust\nAzaria\nBaleigh\nBayleigh\nBlaire\nBrandi\nBrenna\nBria\nBrinley\nBrisa\nCamryn\nCarlee\nCarleigh\nCarlie\nCeleste\nChanning\nCheyanne\nCourtney\nDanica\nDaphne\nDelaney\nDelilah\nEdith\nEllis\nEmely\nEmersyn\nEmory\nEsmeralda\nFallon\nGabriela\nGisselle\nHarlee\nHattie\nHunter\nIsabela\nIsla\nJaci\nJaden\nJaidyn\nJamiya\nJamya\nJolie\nJordynn\nJuniper\nKaelyn\nKaia\nKamari\nKameron\nKarleigh\nKaty\nKeeley\nKelsie\nKenslee\nKenya\nKeyanna\nKiera\nKimora\nKinleigh\nKyler\nLeila\nLeona\nLexis\nLilian\nLindsey\nLindy\nLucia\nMadyson\nMalayah\nMaleah\nMalia\nMaliah\nMaliyah\nMaylee\nMichaela\nNatalee\nNathalie\nPaislee\nPhoenix\nRemi\nRihanna\nRiver\nRose\nRyder\nSamiya\nSariyah\nSawyer\nShannon\nShiloh\nShyla\nSienna\nSkyla\nSpencer\nTaliyah\nTeresa\nTiffany\nWhitney\nYamilet\nYaretzi\nZaniya\nZaria\nZariah\nZaylee\nZion\nEmma\nSophia\nAva\nIsabella\nOlivia\nAddison\nHarper\nAbigail\nZoey\nMadison\nChloe\nEmily\nBrooklyn\nLillian\nElla\nLily\nAubrey\nElizabeth\nAvery\nKaylee\nMia\nNevaeh\nNatalie\nLayla\nAnna\nHannah\nAlyssa\nPaisley\nSerenity\nAmelia\nKhloe\nAudrey\nZoe\nAllison\nAubree\nKennedy\nKylie\nAutumn\nMakayla\nSofia\nRylee\nHadley\nClaire\nEvelyn\nKinley\nSophie\nEllie\nPeyton\nSavannah\nRuby\nAlexis\nBailey\nHailey\nLilly\nLondon\nPiper\nMckenzie\nMorgan\nSkylar\nAaliyah\nGabriella\nTaylor\nGracie\nMakenzie\nMolly\nTrinity\nVictoria\nAlexa\nFaith\nStella\nRiley\nSamantha\nAllie\nAshley\nCallie\nCharlotte\nGrace\nMaci\nMary\nCaroline\nMackenzie\nMadelyn\nRyleigh\nScarlett\nAdalyn\nBella\nKinsley\nKylee\nLeah\nSarah\nBrianna\nEden\nPayton\nGabrielle\nIzabella\nKaydence\nLondyn\nLucy\nSadie\nBlakely\nDestiny\nEva\nHaley\nLydia\nSydney\nAdalynn\nAshlynn\nGenesis\nKatherine\nPresley\nWillow\nAnnabelle\nKimberly\nLauren\nNora\nArianna\nJasmine\nReagan\nAddyson\nAria\nJordyn\nMariah\nMelanie\nMya\nReese\nShelby\nAlaina\nJada\nJayla\nJulia\nMadeline\nAlivia\nAriana\nBaylee\nBrylee\nKyleigh\nMaria\nBrooklynn\nEmery\nJenna\nKaitlyn\nPaige\nVanessa\nViolet\nAllyson\nBraylee\nBrielle\nLyla\nMacie\nAliyah\nAshlyn\nAurora\nEmerson\nHaylee\nHope\nJourney\nKatelyn\nMacy\nMarley\nAlexandria\nAmy\nAngel\nCamila\nHayden\nJade\nJayden\nMaya\nNaomi\nSummer\nBrooke\nCadence\nEliana\nHarmony\nJessica\nJocelyn\nKayleigh\nMadilyn\nRachel\nAlice\nBrynlee\nIsabel\nIvy\nJillian\nKayla\nLaila\nLexi\nLyric\nParis\nSara\nAndrea\nClara\nKadence\nKendall\nKenzie\nMaddison\nMaggie\nMelody\nAddisyn\nAdrianna\nAinsley\nAlana\nAlexia\nAmari\nCharlee\nCharlie\nCheyenne\nEleanor\nFarrah\nHallie\nHaven\nJosie\nKate\nKathryn\nLillie\nMadilynn\nMallory\nMckenna\nMckinley\nPaislee\nRebecca\nAlexandra\nAniyah\nCollins\nDaisy\nDanielle\nEmersyn\nGracelyn\nJaycee\nJennifer\nLainey\nParker\nPhoebe\nRaelyn\nSkyler\nTatum\nAdelyn\nAriel\nBrittany\nBryleigh\nEmber\nGeorgia\nHazel\nHeaven\nKarlee\nKennedi\nKyla\nLaney\nMadisyn\nMichelle\nSierra\nVivian\nZoie\nAbby\nAlison\nAnnalise\nArabella\nCali\nCamille\nCassidy\nCatherine\nElena\nErin\nJaniyah\nJulie\nKatie\nKynlee\nKyra\nLandry\nLaura\nLila\nLiliana\nMargaret\nMiley\nMonica\nAdelynn\nAthena\nBrynn\nCamryn\nCarly\nCarmen\nCora\nElaina\nElise\nEmilee\nGracelynn\nHeidi\nIsabelle\nJordan\nJulianna\nKali\nKallie\nKamryn\nKarma\nKarsyn\nKayden\nKeira\nKelsey\nKiley\nMattie\nMelissa\nMiracle\nNatalia\nPenelope\nQuinn\nTeagan\nAna\nAnastasia\nAubrie\nBailee\nBethany\nBraelynn\nBreanna\nBristol\nCaylee\nChelsea\nCynthia\nElliana\nFiona\nHadleigh\nHarley\nJacqueline\nJaelyn\nJaylee\nJazmine\nJuliana\nKamari\nKatelynn\nKensley\nKimber\nKinlee\nKira\nLacey\nMakenna\nMillie\nMiranda\nPatience\nPreslee\nRaegan\nRayleigh\nTenley\nZariyah\nAdriana\nAdyson\nAlayna\nAleigha\nAngie\nAspen\nBayleigh\nDakota\nEliza\nEvie\nFinley\nGemma\nHalle\nHanna\nJacey\nJosephine\nJournee\nKaylin\nLiberty\nMicah\nMila\nMyla\nNadia\nNorah\nRaelynn\nRaven\nRiver\nRylie\nSelena\nShiloh\nStephanie\nStormy\nWhitley\nAddie\nAddilynn\nAlicia\nAnniston\nAryanna\nAverie\nBentley\nBrinley\nCarlie\nCharleigh\nCharli\nChristina\nEmory\nHattie\nJaci\nJaniya\nJazmin\nKaelyn\nKaliyah\nKarlie\nKenley\nKynleigh\nLauryn\nLeila\nLibby\nLilliana\nLola\nLynlee\nMadalyn\nRuth\nSelah\nSloane\nTalia\nValerie\nZaniyah\nAbagail\nAbbie\nAbbigail\nAddilyn\nAdelaide\nAdilyn\nAlina\nAlondra\nAmiyah\nAngelina\nAnnabella\nApril\nAsia\nAubrielle\nBentlee\nBrenda\nBriana\nCaleigh\nCecilia\nChanning\nDaniela\nDiamond\nEmerie\nEmmalee\nGenevieve\nGianna\nGwendolyn\nHarlie\nHenley\nIris\nJacie\nJaelynn\nJemma\nJessie\nJoslyn\nJustice\nKaleigh\nKara\nKassidy\nKaylie\nKendra\nLilah\nLindsey\nLuna\nMarilyn\nMegan\nMeredith\nNyla\nPeighton\nRosalie\nRose\nSavanna\nSunny\nSylvia\nTessa\nTinley\nWinter\nAbbygail\nAda\nAdeline\nAdleigh\nAdley\nAlessandra\nAlly\nAmaya\nAmora\nAnnaleigh\nAnnie\nArmani\nAvah\nBriley\nCaitlyn\nCarlee\nCarleigh\nCarsyn\nCharity\nCherish\nDelaney\nDelilah\nDiana\nDixie\nDylan\nEmelia\nEmmalyn\nEvan\nHolly\nImani\nJaiden\nJaliyah\nJane\nJaylah\nJazlynn\nKaitlynn\nKaris\nKarmen\nKaroline\nKenzlee\nKenzley\nKristina\nKyndall\nLakyn\nLaniya\nLena\nLeslie\nLexie\nLilian\nLillee\nLilliann\nLindley\nLisa\nLitzy\nLogan\nMadelynn\nMalaysia\nMarlee\nMiriam\nNataly\nNayeli\nNicole\nNoelle\nNova\nOlive\nPhoenix\nPyper\nSawyer\nScarlet\nShaylee\nSydnee\nTaliyah\nTegan\nTinsley\nValeria\nWendy\nYaretzi\nYasmin\nAbbagail\nAdaleigh\nAdele\nAleah\nAlejandra\nAlissa\nAmber\nAngela\nAriyah\nArya\nAshleigh\nAubriana\nAyla\nBerkley\nBonnie\nBree\nBrenna\nBridgette\nBrinkley\nCambrie\nCarissa\nCarolyn\nCarson\nCate\nCeleste\nChevelle\nCoraline\nCourtney\nDamiyah\nDayana\nDulce\nElisabeth\nElisha\nErica\nEryn\nEsmeralda\nEsther\nEvangeline\nEvelynn\nFatima\nGabriela\nGiuliana\nGloria\nHarlee\nHarleigh\nHarmoni\nHayleigh\nHelen\nHolley\nJacy\nJaida\nJakayla\nJamiya\nJanelle\nJasmin\nJaycie\nJayda\nJaylynn\nJazlyn\nJoanna\nJoslynn\nJulianne\nJuliet\nJune\nKacie\nKaia\nKaidence\nKailyn\nKarina\nKarleigh\nKaylen\nKelly\nKenadee\nKenlee\nKenna\nKierra\nKinsey\nLaken\nLaynee\nLeigha\nLondynn\nLucille\nMacey\nMadalynn\nMadyson\nMaleah\nMarleigh\nMiah\nMikayla\nMollie\nMoriah\nNatalee\nPaityn\nPresleigh\nRaeleigh\nRandi\nRayne\nRebeca\nRhianna\nRosa\nSamiya\nSapphire\nSarai\nTemperance\nTia\nTiana\nUnique\nVada\nWhitney\nWilla\nZaniya\nZariah\nZaylee\nEmma\nOlivia\nAva\nIsabella\nSophia\nAbigail\nAddison\nBrooklyn\nMadison\nAvery\nEmily\nHarper\nElla\nChloe\nAubrey\nElizabeth\nZoey\nLillian\nAubree\nAmelia\nHannah\nPaisley\nKaylee\nMia\nLily\nAllison\nNatalie\nAnna\nSerenity\nEvelyn\nSadie\nRiley\nNevaeh\nAutumn\nAlexis\nPeyton\nTaylor\nLayla\nSavannah\nBailey\nAnnabelle\nMary\nAaliyah\nKylie\nRylee\nTrinity\nKennedy\nLondon\nSkylar\nVictoria\nAria\nEllie\nCaroline\nPiper\nSarah\nArianna\nAudrey\nGenesis\nKhloe\nLauren\nScarlett\nZoe\nAllie\nCharlotte\nGrace\nHailey\nKylee\nMackenzie\nMakayla\nAdalynn\nSofia\nClaire\nKinley\nLilly\nGracie\nPayton\nStella\nKyleigh\nLondyn\nLydia\nPresley\nRuby\nAriana\nBrooklynn\nMckenzie\nSophie\nBrianna\nGabriella\nHadley\nMadelyn\nMaggie\nMolly\nWillow\nEden\nKatherine\nAdalyn\nBlakely\nReagan\nAlyssa\nRyleigh\nSamantha\nBella\nFaith\nKaydence\nLucy\nMakenzie\nNora\nBrynlee\nCamila\nEmerson\nEmery\nKenzie\nSydney\nDestiny\nJade\nJordyn\nMaci\nRachel\nViolet\nAlice\nCheyenne\nHayden\nKatelyn\nLeah\nVivian\nAlexa\nAlivia\nAndrea\nCharlie\nNaomi\nPenelope\nJayden\nMila\nMorgan\nParker\nAshley\nBaylee\nJordan\nMya\nAddyson\nAshlynn\nBrylee\nClara\nIvy\nKayleigh\nKinsley\nShelby\nDelilah\nGabrielle\nJocelyn\nJosie\nKate\nLyric\nMarley\nMckinley\nParis\nAddisyn\nEva\nLyla\nMaria\nMariah\nAbby\nAdelyn\nAlexia\nAshlyn\nFinley\nGeorgia\nHarley\nHarmony\nJasmine\nJourney\nKaitlyn\nLaila\nLexi\nMelanie\nNicole\nPaislee\nReese\nStephanie\nSummer\nAngel\nAriel\nCora\nGracelynn\nHaley\nJessica\nLola\nAdrianna\nAlexandria\nDaisy\nEleanor\nEliza\nHaven\nHazel\nHope\nJayla\nJournee\nKynlee\nMadeline\nMarlee\nValerie\nAdriana\nAlaina\nAlana\nAlison\nAmy\nBristol\nBrooke\nIsabel\nJenna\nJulia\nKendra\nMacie\nMacy\nMegan\nMiley\nNorah\nTeagan\nTessa\nYaretzi\nAbbigail\nAlexandra\nAllyson\nAmari\nAmber\nAmiyah\nAniyah\nArabella\nAurora\nCali\nCharlee\nHallie\nHeaven\nIsabelle\nIzabella\nKatie\nKelsey\nKensley\nLila\nMargaret\nMaya\nRaegan\nRaelynn\nRebecca\nSara\nVanessa\nAdelaide\nAthena\nCarly\nDixie\nEverleigh\nKassidy\nKathryn\nLiliana\nMaddison\nMalaysia\nMallory\nRaven\nSkyler\nValeria\nAddilyn\nAlayna\nAlly\nAngela\nAnnie\nBrielle\nBryleigh\nCadence\nCatherine\nCharley\nChelsea\nDakota\nDanielle\nErin\nEsther\nGracelyn\nHadleigh\nIsla\nJaycee\nJune\nJustice\nKimberly\nKyra\nLeslie\nMakenna\nMelody\nPhoebe\nPhoenix\nRylie\nSaylor\nTinsley\nXimena\nAdelynn\nAlicia\nAnnabella\nAspen\nAubrie\nBethany\nCallie\nCassidy\nEmmalyn\nEmory\nHaylee\nJamie\nJaylee\nJazmine\nJennifer\nJillian\nKaidence\nKali\nKaliyah\nKamryn\nKayla\nKennedi\nLaken\nLandry\nLeighton\nMadelynn\nMadilynn\nMadisyn\nMckenna\nNatalee\nRiver\nRosalie\nAdeline\nAliyah\nAmanda\nAyla\nBrinley\nCamille\nCaylee\nChandler\nCherish\nCrystal\nElaina\nEmersyn\nGemma\nHarmoni\nJada\nJaliyah\nJaylah\nJoslyn\nJuliana\nKara\nKarlee\nKarsyn\nKatelynn\nKeira\nKiley\nLillie\nMiracle\nNatalia\nPaige\nRosemary\nSawyer\nTenley\nWinter\nAdyson\nAinsley\nAlayah\nAleah\nAlondra\nAmaya\nAnastasia\nAngelina\nArya\nCarmen\nCarson\nElena\nElise\nEmber\nGenevieve\nGiselle\nGracyn\nGuadalupe\nHarlee\nJaida\nJaniya\nJayda\nJuliet\nKadence\nKaleigh\nKarly\nKarter\nKenlee\nLakyn\nLaura\nLauryn\nLilah\nLynlee\nMadalyn\nMattie\nMelissa\nMiranda\nMyla\nMylee\nPaizley\nQuinn\nRaelyn\nRaylee\nRuth\nShiloh\nSierra\nSloane\nTatum\nWhitley\nAddelyn\nAlyson\nAubri\nBraelynn\nBreanna\nBryanna\nCamryn\nCara\nCarlee\nCarleigh\nCharleigh\nCynthia\nDaniela\nDelaney\nEllison\nEmilia\nErica\nFarrah\nFiona\nGabriela\nHadlee\nHarleigh\nHattie\nHeather\nHelen\nJacqueline\nJazlynn\nJolie\nJulie\nKailey\nKaitlynn\nKarmen\nKeely\nKendall\nKinslee\nKira\nKori\nLainey\nLaney\nLucia\nMadilyn\nMarissa\nMillie\nNayeli\nPreslee\nRebekah\nRileigh\nSavanna\nScarlet\nSelena\nSidney\nTaraji\nValentina\nVivienne\nWilla\nAda\nAdilynn\nAdley\nAlanna\nAlina\nAlyvia\nAmiya\nAna\nAnnalee\nAvah\nBailee\nBentley\nBraelyn\nBraylee\nCaitlyn\nCarley\nCarlie\nCarter\nCaydence\nChanning\nChristina\nClaudia\nCourtney\nDiana\nElliott\nElsie\nEmerald\nEmilee\nEmmarie\nEmmie\nEryn\nEvalyn\nGia\nGianna\nHarlow\nIris\nJaelyn\nJamiyah\nJaqueline\nJaylin\nJaylynn\nJoselyn\nKailee\nKamari\nKaren\nKaylie\nKiara\nKinlee\nKyla\nKyndal\nLacey\nLacie\nLeila\nLexie\nLiberty\nLinley\nLorelai\nLuna\nLylah\nMaddie\nMadeleine\nMadyson\nMarleigh\nMckayla\nMercy\nMichelle\nMiriam\nNova\nPaisleigh\nPatience\nRayleigh\nRayna\nRemi\nRobyn\nSabrina\nSkye\nTemperance\nTreasure\nVera\nWhitney\nZaniyah\nZariyah\nAbigale\nAddalyn\nAddie\nAddilynn\nAdelina\nAdleigh\nAlexus\nAlia\nAmira\nAnabelle\nAnnabell\nAriah\nAzaria\nBayleigh\nBianca\nBrayleigh\nBraylynn\nBree\nBrenda\nBrynn\nCambree\nCarolina\nChyna\nDahlia\nDani\nDanna\nDaphne\nDestini\nElisabeth\nEmerie\nEmilie\nEmmaleigh\nEvangeline\nEvelynn\nFallon\nFernanda\nHalle\nHeidi\nImani\nIndia\nJacelyn\nJaden\nJaelynn\nJaleah\nJaniyah\nJayleigh\nJoanna\nJosephine\nJoy\nJuliette\nKaia\nKaiya\nKaleah\nKaley\nKallie\nKamila\nKamiya\nKarina\nKaris\nKarleigh\nKarley\nKarlie\nKayden\nKeeley\nKenley\nKenna\nKenya\nKiersten\nKimber\nKolbie\nKora\nLaci\nLacy\nLaiken\nLakelyn\nLana\nLanie\nLennon\nLeyla\nLilian\nLilith\nLilliana\nLindsey\nLorelei\nMacey\nMae\nMaisie\nMalia\nMarlie\nMicah\nMichaela\nMikayla\nMiya\nMiyah\nMonica\nNadia\nNataly\nNia\nNina\nNoelle\nOakley\nOlive\nPaityn\nPearl\nRaylynn\nRemington\nRose\nRowan\nRylin\nSamiyah\nSarai\nSelah\nStormie\nTamiya\nTori\nWhitlee\nYamilet\nZakiyah\nZuri\nEmma\nOlivia\nAva\nHarper\nIsabella\nAbigail\nSophia\nMadison\nAvery\nEmily\nZoey\nElizabeth\nLillian\nBrooklyn\nChloe\nElla\nMia\nAubrey\nAddison\nAmelia\nPaisley\nSadie\nLily\nKennedy\nSerenity\nAnna\nNevaeh\nCharlotte\nLayla\nHadley\nLilly\nRiley\nCaroline\nPiper\nKaylee\nSofia\nAllison\nAubree\nHannah\nNatalie\nFaith\nEvelyn\nAutumn\nSavannah\nAudrey\nAriana\nAlexis\nAnnabelle\nSkylar\nGrace\nKhloe\nMackenzie\nMadelyn\nScarlett\nZoe\nEllie\nEden\nSarah\nAria\nArianna\nGabriella\nKatherine\nStella\nEmery\nEva\nLondon\nAaliyah\nKinsley\nNora\nPenelope\nAdalynn\nBailey\nBella\nEleanor\nJordyn\nTrinity\nVictoria\nClaire\nHaven\nMary\nPeyton\nPresley\nRyleigh\nSamantha\nTaylor\nWillow\nAllie\nClara\nGracie\nMolly\nAlexa\nJasmine\nKylie\nSophie\nCora\nLucy\nDestiny\nKimberly\nRuby\nAshley\nKinley\nLondyn\nMakenzie\nAlice\nLyla\nMarley\nPayton\nJosie\nLeah\nNaomi\nAdalyn\nAlivia\nBlakely\nEmerson\nIsabelle\nKayleigh\nLydia\nNorah\nAlayna\nCallie\nJade\nLauren\nLyric\nMckenzie\nReagan\nShelby\nAlyssa\nAngel\nGenesis\nMaggie\nMakayla\nMorgan\nViolet\nBrooklynn\nCamila\nMaci\nMadeline\nRylee\nAinsley\nAriel\nFinley\nKylee\nParker\nCali\nLexi\nMila\nPaislee\nReese\nSara\nAdelyn\nAurora\nDelilah\nElena\nGeorgia\nGracelyn\nHailey\nHarley\nHazel\nJocelyn\nKatelyn\nMacie\nAshlynn\nBaylee\nEverly\nGabrielle\nGracelynn\nHarmony\nIvy\nKatie\nKyleigh\nMariah\nVivian\nXimena\nAddilyn\nAddyson\nAlexandria\nBraylee\nBrianna\nCharlie\nHope\nKamryn\nKenzie\nRiver\nSkyler\nSummer\nAbby\nAniyah\nBristol\nBrylee\nCheyenne\nElise\nJessica\nJourney\nLaila\nLila\nLuna\nMckinley\nMelanie\nMelody\nParis\nRebecca\nTessa\nVanessa\nAdelynn\nEmersyn\nHaley\nIsabel\nJulia\nJune\nKaitlyn\nKarsyn\nKate\nKelsey\nRaegan\nAlana\nAlexandra\nAmy\nBrielle\nBrynlee\nCharlee\nCharleigh\nDanielle\nEliana\nHadlee\nHallie\nHeaven\nJayden\nJayla\nJournee\nKendall\nMacy\nMadilyn\nMya\nRachel\nRemington\nAlexia\nAmari\nAspen\nBailee\nChristina\nDaisy\nEliza\nEmber\nHayden\nJenna\nJennifer\nKaydence\nLaney\nMadelynn\nNatalia\nNova\nRaelynn\nRebekah\nRose\nSaylor\nSierra\nSloane\nSydney\nAda\nAndrea\nAnniston\nArabella\nAshlyn\nAthena\nAubrie\nBryleigh\nCatherine\nDaleyza\nElaina\nEmilia\nEvangeline\nHadleigh\nIsla\nJaycee\nKali\nLeilani\nLorelei\nMaddison\nMadisyn\nMallory\nMargaret\nMiracle\nMyla\nPaige\nRaelyn\nAdeline\nAleah\nAliyah\nAllyson\nAna\nApril\nArya\nCaitlyn\nElliott\nEmmalyn\nGiselle\nHattie\nIzabella\nJada\nKaliyah\nKallie\nKarlee\nKayla\nKensley\nKimber\nKira\nMaria\nMaya\nMckenna\nMichelle\nMillie\nTatum\nValeria\nAnastasia\nAnnie\nAryanna\nBrinley\nCamille\nCarly\nCarmen\nEmmalynn\nEverlee\nGabriela\nHeidi\nHenley\nJoy\nKathryn\nKynlee\nLandry\nLogan\nMarleigh\nPhoenix\nPreslee\nQuinn\nRylie\nSawyer\nAbbigail\nAddisyn\nAlaina\nAlicia\nAmber\nAmiyah\nAnsley\nAyla\nBraelyn\nBrooke\nCarlee\nEvelynn\nFarrah\nGemma\nJaniyah\nJordan\nKadence\nLeila\nLilah\nLola\nLylah\nNadia\nNatalee\nOakley\nPyper\nSavanna\nScarlet\nAdalee\nAdriana\nAngelina\nAnnabella\nAverie\nBethany\nBriley\nCadence\nCarolyn\nCassidy\nCataleya\nCecilia\nChelsea\nDakota\nDiana\nDixie\nEmory\nEsther\nHanna\nHaylee\nJazmine\nJulianna\nJulie\nJustice\nKenleigh\nKenley\nKennedi\nKinleigh\nLauryn\nLeslie\nLiberty\nLiliana\nLindsey\nMadalyn\nMadilynn\nMegan\nMeredith\nMicah\nNicole\nPhoebe\nRaven\nRayleigh\nShiloh\nStephanie\nTeagan\nAdelaide\nAdrianna\nAlison\nAlly\nAngela\nAngelique\nArmani\nAveri\nBlair\nCeleste\nCharley\nCharli\nDallas\nDaniela\nElisabeth\nEmilee\nEmmalee\nEverleigh\nEvie\nGenevieve\nGwendolyn\nHarlow\nHayley\nJaliyah\nJimena\nJolene\nJuliana\nJuliet\nJuliette\nKailee\nKaitlynn\nKarleigh\nKarma\nKarter\nKatelynn\nKendra\nKenlee\nKinlee\nLaiken\nLainey\nLennon\nLilliana\nLillie\nMakenna\nMarilyn\nMarlee\nMiranda\nNoelle\nRosalie\nRyan\nSage\nSelena\nSutton\nSylvia\nTalia\nTaraji\nWhitney\nZaniyah\nAbbygail\nAddalynn\nAlondra\nAlora\nAmanda\nAmaya\nAnnabeth\nArielle\nAubri\nBentley\nBianca\nBraelynn\nBrynn\nCambree\nCamilla\nCamryn\nCarla\nCarleigh\nCaylee\nCecelia\nCiara\nDanica\nElliot\nEllison\nElsa\nEmerie\nEmmaleigh\nEvalynn\nFelicity\nGloria\nHadassah\nIndia\nJaleah\nJane\nJayda\nJaylee\nJemma\nJocelynn\nJosephine\nJoslyn\nKamille\nKaylie\nKenya\nKinslee\nKora\nKyla\nKynslee\nKynzlee\nKyra\nLacey\nLaken\nLakyn\nLaura\nLeighton\nLena\nLexie\nLibby\nLinley\nLondynn\nLucia\nLynlee\nMagnolia\nMaisie\nMalaya\nMalaysia\nMalia\nMarlie\nMattie\nMercy\nMiriam\nNyla\nPaityn\nPaizlee\nRaeleigh\nRemi\nTinley\nTynlee\nVirginia\nViviana\nVivienne\nWhitley\nWilla\nZoie\nAddelyn\nAdleigh\nAdley\nAlejandra\nAlisson\nAlli\nAmani\nAmina\nAndi\nAniston\nAnnabell\nAnnalee\nAriyah\nAudree\nAustyn\nAveree\nAylin\nBayleigh\nBlakeleigh\nBreasia\nBriana\nBridget\nBriella\nBrittany\nCarolina\nChandler\nCharity\nChristine\nChyna\nCollins\nConstance\nCourtney\nCynthia\nDarcy\nDenise\nDulce\nElisa\nEmilie\nEsmeralda\nEstella\nEtta\nEvalyn\nFatima\nGuadalupe\nHunter\nIris\nIsabell\nItzel\nIyanna\nJacey\nJacie\nJaida\nJaidyn\nJakayla\nJasmin\nJaylah\nJaylynn\nJazlyn\nJazmin\nJersey\nJoanna\nJuniper\nJurnee\nKaidence\nKambree\nKara\nKarla\nKarmen\nKayden\nKaylin\nKaylyn\nKeagan\nKeira\nKenna\nKenslee\nKingsley\nKyler\nKynleigh\nLacie\nLana\nLandree\nLandri\nLilith\nMaddie\nMariana\nMarissa\nMariyah\nMarjorie\nMollie\nMonica\nNina\nRaylee\nRosemary\nSaige\nSariyah\nSerena\nSkyla\nSpencer\nThea\nTori\nTreasure\nValentina\nValerie\nVera\nWren\nZaria\nJames\nWilliam\nJohn\nRobert\nWillie\nHenry\nGeorge\nCharles\nFrank\nJack\nJoe\nThomas\nAlbert\nCharlie\nClarence\nWalter\nFred\nRoy\nLee\nEdward\nJoseph\nArthur\nErnest\nJessie\nEarl\nHerbert\nElmer\nCarl\nCecil\nEddie\nEugene\nFloyd\nDavid\nHarry\nRaymond\nRichard\nSam\nJesse\nSamuel\nLouis\nLuther\nClyde\nHerman\nHoward\nLawrence\nPaul\nTheodore\nAndrew\nRalph\nRay\nBen\nHomer\nLewis\nLeroy\nOtis\nWill\nClaude\nElbert\nHarold\nJohnnie\nLeonard\nLester\nOscar\nChester\nCurtis\nLeon\nMelvin\nTroy\nBooker\nCalvin\nJohnie\nBill\nCharley\nEd\nGuy\nJim\nLloyd\nMarvin\nNathaniel\nRoosevelt\nAlfred\nAllen\nAlvin\nClinton\nEdgar\nHubert\nIra\nTom\nBenjamin\nDaniel\nEverett\nKenneth\nLeo\nOliver\nTommie\nBennie\nClifton\nEarnest\nJimmie\nLonnie\nLoyd\nOtto\nRiley\nVirgil\nWillis\nAnthony\nArchie\nArnold\nClaud\nClifford\nDave\nDon\nDonald\nDoyle\nHarvey\nHugh\nKermit\nNorman\nVernon\nBernard\nGilbert\nGrady\nJewell\nMack\nOllie\nPercy\nRufus\nSherman\nAaron\nAdam\nBruce\nDan\nDelbert\nDewey\nElmo\nGarland\nGlen\nGlenn\nHorace\nJerry\nJohnny\nMarion\nMonroe\nMorris\nOdis\nRussell\nTed\nWesley\nWilburn\nAlex\nAlonzo\nAlva\nAustin\nBuck\nBuford\nBuster\nClark\nDock\nEdwin\nElijah\nFreddie\nGordon\nGrover\nIsaac\nJay\nJeff\nLeslie\nLevi\nLindsey\nManuel\nMarcus\nMartin\nMaurice\nMilton\nNathan\nOcie\nQuincy\nRoger\nRoss\nStanley\nThurman\nTommy\nWallace\nJames\nWilliam\nJohn\nGeorge\nRobert\nWillie\nHenry\nFrank\nCharles\nThomas\nJoseph\nEarl\nJack\nFred\nRoy\nErnest\nAlbert\nCarl\nJoe\nCecil\nClarence\nSam\nWalter\nArthur\nLee\nRichard\nJessie\nEdward\nPaul\nRaymond\nFloyd\nCharlie\nClyde\nChester\nOtis\nRay\nBen\nElmer\nHarry\nHerman\nJesse\nRalph\nEugene\nLouis\nMarvin\nEddie\nEdgar\nDavid\nHarold\nHerbert\nAndrew\nHomer\nLewis\nCurtis\nJim\nJohnnie\nLawrence\nLeroy\nLuther\nMarion\nSamuel\nClaude\nOscar\nTom\nCharley\nHubert\nLester\nLloyd\nTheodore\nVirgil\nCleo\nLeon\nDan\nGuy\nTroy\nVernon\nWill\nAlfred\nBill\nEverett\nGarland\nHarvey\nHorace\nJimmie\nJohnie\nJulius\nLeonard\nOrville\nPerry\nBenjamin\nClifford\nDave\nHoward\nLeo\nLonnie\nLoyd\nRoosevelt\nRussell\nAlvin\nDaniel\nEarnest\nEdwin\nElijah\nHugh\nIra\nNathaniel\nSidney\nWilbur\nAubrey\nBennie\nClifton\nFrancis\nNathan\nPeter\nRufus\nWillis\nBruce\nCleveland\nCoy\nDewey\nOliver\nSylvester\nVictor\nWilburn\nBert\nDoyle\nEllis\nFreddie\nGrady\nHershel\nIsaac\nJerry\nMoses\nNoah\nNorman\nOdis\nThurman\nAaron\nAllen\nArnold\nBooker\nClaud\nColumbus\nEd\nElbert\nElmo\nFelix\nGilbert\nJasper\nJeff\nJess\nJohnny\nKermit\nLeslie\nLevi\nLouie\nMillard\nMilton\nMorris\nOdell\nOllie\nPete\nRandolph\nRuben\nSilas\nStanley\nTed\nWallace\nWilson\nJames\nWilliam\nJohn\nRobert\nWillie\nGeorge\nCharles\nHenry\nThomas\nJoe\nFred\nRoy\nWoodrow\nRalph\nJoseph\nFrank\nAlbert\nArthur\nWalter\nPaul\nClarence\nRaymond\nCarl\nEarl\nJack\nDavid\nHerman\nEdward\nErnest\nFloyd\nHoward\nJesse\nCecil\nCharlie\nSamuel\nRichard\nElmer\nLee\nHerbert\nRay\nJessie\nHomer\nLeonard\nClyde\nHarry\nLuther\nVernon\nVirgil\nAndrew\nHarold\nLawrence\nLester\nSam\nEddie\nEugene\nEdgar\nLewis\nCharley\nHarvey\nLeroy\nMarvin\nLouis\nClaude\nClifford\nLloyd\nOscar\nOtis\nClifton\nJohnnie\nRoosevelt\nAlfred\nJohnie\nLeo\nNorman\nTheodore\nTroy\nCurtis\nEarnest\nJim\nChester\nEdwin\nGuy\nBen\nDoyle\nHorace\nMelvin\nLeon\nAlvin\nBill\nBooker\nHugh\nLonnie\nMilton\nArchie\nDaniel\nEverett\nJewell\nKenneth\nElbert\nGrover\nHubert\nLeslie\nMack\nSherman\nTed\nTom\nBert\nClaud\nCleo\nDan\nJohnny\nWayne\nAllen\nBenjamin\nBennie\nGarland\nGlenn\nMarion\nNathan\nOrville\nTommie\nBruce\nCalvin\nCoy\nEd\nIsaac\nJimmie\nLoyd\nMorris\nSylvester\nAustin\nEllis\nGordon\nIra\nJerry\nNathaniel\nOliver\nRussell\nSidney\nWarren\nWill\nWilson\nAubrey\nDave\nDennis\nGrady\nAlonzo\nForrest\nGus\nJodie\nMarshall\nMoses\nOtto\nOwen\nPerry\nStanley\nThurman\nWesley\nWilburn\nWillis\nAmos\nBuster\nDee\nEzra\nFelix\nFrancis\nFranklin\nFreeman\nHershel\nJeff\nJess\nJewel\nKermit\nLouie\nRoger\nRufus\nVan\nVirgle\nAlex\nCleveland\nDale\nElijah\nGilbert\nIrvin\nMatthew\nMillard\nNelson\nOdell\nOdis\nOllie\nRex\nSammie\nWallace\nAnthony\nArnold\nBob\nBuford\nClay\nClinton\nDonald\nElmo\nErvin\nEwell\nFreddie\nGerald\nJake\nJasper\nJulius\nLindsey\nLowell\nMark\nNewton\nObie\nPreston\nRoscoe\nRuben\nTheo\nVictor\nWillard\nAlton\nBernard\nBradley\nDallas\nDalton\nDelbert\nDon\nDurward\nEmmett\nHarmon\nHermon\nIvan\nJay\nJefferson\nLyle\nMalcolm\nMaurice\nMax\nMerle\nNoble\nPete\nRiley\nShelby\nTim\nTimothy\nTommy\nTruman\nWashington\nWinfred\nWinston\nJames\nWilliam\nJohn\nRobert\nGeorge\nWillie\nCharles\nThomas\nRoy\nHenry\nFred\nCarl\nJoe\nClarence\nJack\nWoodrow\nAlbert\nWalter\nEarl\nEdward\nPaul\nRaymond\nJoseph\nFrank\nCharlie\nHarold\nLee\nErnest\nFloyd\nHerman\nRalph\nEugene\nHoward\nElmer\nArthur\nRichard\nSamuel\nHomer\nJessie\nClyde\nHerbert\nHarry\nEddie\nCecil\nLawrence\nLouis\nOscar\nRay\nLester\nMarvin\nChester\nLeonard\nDavid\nKenneth\nLewis\nSam\nAndrew\nJesse\nAlfred\nVirgil\nClifton\nJohnnie\nAlvin\nCurtis\nLuther\nClaude\nMelvin\nHugh\nLeon\nLeroy\nTheodore\nVernon\nJim\nClifford\nHarvey\nLeo\nEdgar\nOtis\nDonald\nEarnest\nElbert\nLloyd\nAllen\nBill\nHubert\nIra\nLoyd\nCharley\nGrady\nMilton\nBenjamin\nGuy\nHorace\nJimmie\nRufus\nJerry\nLeslie\nMonroe\nNorman\nDaniel\nEverett\nIsaac\nJess\nJohnie\nOrville\nTroy\nBen\nDoyle\nEdwin\nGlen\nGlenn\nGordon\nLonnie\nTom\nVictor\nBert\nEllis\nNathaniel\nOlen\nRoosevelt\nRussell\nWesley\nWillis\nWilson\nArchie\nBennie\nBernard\nJulius\nOwen\nBuster\nCleo\nEd\nFay\nForrest\nFrederick\nGarland\nGerald\nCalvin\nCoy\nDave\nDon\nMack\nMarion\nMartin\nMorris\nPete\nSherman\nTed\nWilburn\nWillard\nAubrey\nClaud\nDale\nDan\nDelbert\nDennis\nJeff\nOdis\nPreston\nReuben\nSidney\nSterling\nAmos\nBooker\nBruce\nLouie\nMaurice\nNoel\nPhillip\nVincent\nWarren\nWiley\nAlex\nClay\nClinton\nElton\nHershel\nLowell\nMillard\nMoses\nOpal\nSylvester\nVan\nWallace\nArnold\nAustin\nColumbus\nDewey\nFreddie\nGrover\nJewel\nMarshall\nMax\nNathan\nNeal\nNoble\nOdell\nOliver\nOllie\nPhilip\nThurman\nTommy\nBuel\nDwight\nEmmett\nEzra\nFrancis\nFranklin\nFreeman\nHarris\nHaskell\nHollis\nIvan\nJasper\nJay\nJoel\nMarlin\nMathew\nMatthew\nPercy\nPerry\nSammie\nTommie\nWayne\nWilbur\nWill\nAdam\nAlva\nAnthony\nArvel\nBarney\nBoyce\nBoyd\nBud\nBurl\nCarroll\nCleveland\nConnie\nDouglas\nElijah\nElvin\nElvis\nErvin\nHarley\nHerschel\nHiram\nHouston\nJewell\nKermit\nLevi\nNolan\nOcie\nOtho\nOtto\nRoscoe\nSilas\nSimon\nAlford\nAlton\nAlvie\nArtie\nArvil\nAudie\nBillie\nBuford\nBurley\nColeman\nDallas\nDewitt\nDonnie\nForest\nGus\nHarrison\nHosie\nJacob\nJimmy\nJulian\nManuel\nMark\nMerle\nMose\nOdie\nOmer\nPat\nPrince\nRex\nRoger\nRoland\nSanford\nScott\nSteve\nTheo\nTony\nVern\nVernie\nVirgle\nJames\nJohn\nWilliam\nRobert\nCharles\nGeorge\nWillie\nThomas\nHenry\nJoe\nEarl\nRoy\nJack\nFrank\nPaul\nWalter\nJoseph\nFred\nClarence\nEdward\nAlbert\nCarl\nRaymond\nArthur\nHarold\nRalph\nClyde\nEugene\nFloyd\nHerman\nHarry\nLouis\nCecil\nJesse\nRay\nHerbert\nJessie\nAndrew\nDavid\nErnest\nRichard\nWoodrow\nElmer\nLawrence\nLeroy\nLester\nSamuel\nLee\nChester\nHomer\nEddie\nClaude\nHoward\nAlvin\nJohnnie\nMarvin\nLuther\nCharlie\nLeonard\nSam\nVernon\nAlfred\nOtis\nLeon\nLewis\nHubert\nMelvin\nCurtis\nDoyle\nVirgil\nBen\nTom\nBenjamin\nEdgar\nGlen\nOscar\nTroy\nClifford\nTheodore\nJohnie\nCalvin\nHarvey\nHugh\nKenneth\nLloyd\nNorman\nRussell\nAubrey\nCharley\nEverett\nLonnie\nWillis\nElbert\nJim\nBennie\nGarland\nIra\nAllen\nBill\nClifton\nEarnest\nLeo\nDonald\nGuy\nLoyd\nArchie\nJimmie\nJess\nThurman\nTommie\nWesley\nBert\nEdwin\nHorace\nJeff\nOrville\nWilson\nGrady\nMarion\nMonroe\nDennis\nEd\nGlenn\nIsaac\nMack\nOliver\nOwen\nRoosevelt\nBooker\nDale\nJewel\nJohnny\nJulius\nMilton\nRufus\nWillard\nCoy\nDaniel\nDon\nGrover\nLeslie\nLowell\nMoses\nNathan\nSidney\nWayne\nNathaniel\nOllie\nTruman\nWill\nFrancis\nSherman\nVictor\nWallace\nAlexander\nAmos\nArnold\nBuford\nBurl\nEllis\nElvin\nFay\nGene\nHouston\nLouie\nOlen\nClaud\nClinton\nEzra\nGerald\nGilbert\nGordon\nJoel\nMaurice\nMax\nPhilip\nRex\nWilbur\nAndy\nArther\nDave\nHarrison\nIvan\nLynn\nMorris\nNeil\nPerry\nPreston\nStanley\nSterling\nClayton\nElmo\nEmmett\nErvin\nFelix\nForrest\nHershel\nIrvin\nJasper\nMarshall\nOdis\nPhillip\nRoger\nRuben\nSammie\nSylvester\nTommy\nTravis\nAaron\nAlva\nBarney\nBob\nBruce\nCleveland\nDan\nElton\nFletcher\nForest\nFranklin\nFreddie\nIvory\nJerry\nNeal\nOmer\nPat\nSteve\nWilburn\nWinfred\nAlonzo\nAustin\nBasil\nBurton\nByron\nCleo\nColumbus\nDallas\nDee\nFrederick\nGus\nHarley\nHermon\nIke\nJunius\nMartin\nMike\nNapoleon\nOdell\nOtto\nPete\nPeter\nPorter\nRudolph\nShelby\nSilas\nUlysses\nVester\nWarren\nWiley\nAnthony\nArvil\nBernard\nBoyd\nBuster\nCarroll\nConnie\nDarrell\nDean\nDenver\nDick\nDouglas\nEdd\nEldon\nEwell\nHayden\nHerschel\nJacob\nJerome\nJewell\nLarry\nLeeroy\nLeland\nLyman\nMadison\nMerle\nMiles\nMillard\nMitchell\nNewton\nNoel\nOrvil\nOtho\nOttis\nPercy\nReuben\nRoscoe\nVan\nVance\nVirgle\nWade\nWyatt\nArlie\nArlis\nArtis\nBillie\nCarlos\nCarson\nClem\nCleve\nConway\nDelbert\nDewey\nDock\nEarly\nEdmond\nElijah\nElisha\nElzie\nEmanuel\nEster\nFreeman\nGeneral\nGlynn\nGranville\nHiram\nJake\nJefferson\nKeith\nKermit\nKirby\nLawson\nLenard\nMark\nMilburn\nMorgan\nNelson\nNoble\nOdie\nOpie\nPhil\nRodney\nRosevelt\nRoss\nRupert\nSolomon\nTed\nVernie\nWayland\nWilber\nWilbert\nJames\nWilliam\nJohn\nRobert\nGeorge\nCharles\nWillie\nHenry\nThomas\nJoseph\nPaul\nFrank\nCarl\nEarl\nJoe\nWalter\nEdward\nJack\nRoy\nRaymond\nCecil\nFred\nAlbert\nClarence\nFloyd\nArthur\nHarold\nRichard\nClyde\nHarry\nHerman\nRalph\nEugene\nJesse\nLouis\nRay\nLee\nErnest\nHoward\nDavid\nCharlie\nElmer\nJessie\nAlfred\nHerbert\nMarvin\nSamuel\nLester\nLeo\nLeonard\nOscar\nLawrence\nWillard\nWoodrow\nChester\nVernon\nSam\nHomer\nJohnnie\nAlvin\nAndrew\nLeroy\nMarion\nMelvin\nLewis\nLuther\nVirgil\nEddie\nOtis\nClaude\nOliver\nCurtis\nEdgar\nEarnest\nElbert\nHubert\nCalvin\nClifford\nKenneth\nDoyle\nIra\nJohnie\nLeon\nLloyd\nHugh\nLeslie\nTroy\nWilson\nBill\nCharley\nEdwin\nAllen\nBen\nDonald\nLoyd\nNorman\nDaniel\nClifton\nGrady\nGuy\nLonnie\nRussell\nDon\nJess\nJimmie\nMorris\nWesley\nDale\nHorace\nJim\nThurman\nArchie\nEllis\nGarland\nNathaniel\nBenjamin\nEverett\nGlenn\nGrover\nGilbert\nGlen\nJohnny\nMilton\nOrville\nWillis\nBennie\nCoy\nHarvey\nMack\nRufus\nAmos\nErvin\nGerald\nTom\nBruce\nCleo\nClaud\nMarshall\nNoel\nOllie\nTommie\nTruman\nClinton\nDan\nMaurice\nRoscoe\nSidney\nAubrey\nBooker\nDewey\nFrancis\nPete\nSylvester\nWayne\nAaron\nAlonzo\nFrederick\nLouie\nLowell\nMartin\nRoosevelt\nTheodore\nWallace\nCarroll\nOdell\nPreston\nVictor\nWilbur\nWill\nBernard\nEd\nJake\nJeff\nJewel\nLoy\nMoses\nOdis\nOtto\nArnold\nBert\nDouglas\nEmmett\nFay\nForrest\nGordon\nGus\nIsaac\nJacob\nLeland\nOlen\nReuben\nWarren\nAlva\nBuford\nBurl\nDave\nDelbert\nDennis\nGene\nHershel\nJewell\nJulian\nPhilip\nRex\nStanley\nWilburn\nAlton\nAustin\nBilly\nBob\nByron\nDean\nElijah\nElton\nEwell\nFreddie\nHouston\nIsiah\nJoel\nJulius\nNathan\nOwen\nPerry\nSherman\nSteve\nVan\nWade\nAlex\nBuster\nEdd\nJasper\nNoah\nNoble\nPercy\nRoger\nSilas\nWiley\nElvin\nEverette\nHarley\nHayden\nKermit\nMillard\nOmer\nOtho\nSammie\nTed\nWinfred\nBud\nDelmar\nDenver\nDoyne\nEldon\nElmo\nHal\nHollis\nIvan\nJerry\nLenard\nMerle\nMonroe\nAlvie\nAnthony\nArlin\nBarney\nColeman\nDallas\nDee\nJay\nMatthew\nNeil\nNorris\nOra\nOtha\nPeter\nSolomon\nTommy\nTony\nTravis\nAndy\nArlie\nAron\nBoyd\nClark\nCleveland\nDewitt\nHerschel\nHiram\nHoyt\nJason\nLynn\nNelson\nOran\nOthel\nPhillip\nRandall\nRoland\nAcie\nArvel\nArvil\nBuck\nCarthel\nClay\nDock\nEmanuel\nEmery\nEmory\nEzekiel\nFelix\nFranklin\nFreeman\nHaskel\nHaywood\nIsaiah\nIvory\nJackson\nJefferson\nLamar\nLarry\nLevi\nLon\nMarcus\nMckinley\nNeal\nOdie\nPat\nRiley\nRoss\nRubin\nTheo\nTherman\nTomie\nTyree\nVincent\nWalker\nWilbert\nAbner\nAbraham\nAdolphus\nAlexander\nAlford\nAugustus\nBasil\nBirt\nButler\nCal\nCarlos\nClaudie\nClayton\nConnie\nDick\nDwight\nEdmund\nElvis\nErwin\nFletcher\nGarlon\nGeneral\nGrant\nHarlan\nHaskell\nHazel\nHobert\nJimmy\nJohney\nKeith\nKing\nLawson\nLois\nLonzo\nLucian\nMaceo\nMax\nMelton\nMilburn\nMose\nNapoleon\nNed\nOlan\nOrval\nOzie\nRandolph\nRonald\nRoyce\nRuben\nRuby\nRupert\nSanford\nShirley\nTalmage\nTaylor\nUlysses\nVance\nVaughn\nWendell\nWinford\nJames\nWilliam\nJohn\nRobert\nCharles\nGeorge\nHenry\nThomas\nWillie\nRoy\nJoe\nJoseph\nWalter\nPaul\nCarl\nJack\nFred\nEdward\nRaymond\nFrank\nClarence\nEarl\nWoodrow\nRalph\nAlbert\nArthur\nRichard\nLee\nCecil\nFloyd\nHarold\nRay\nLouis\nCharlie\nDavid\nJesse\nEugene\nClyde\nHerman\nElmer\nHarry\nJessie\nHomer\nErnest\nHerbert\nAlfred\nHoward\nMarvin\nOscar\nAndrew\nSamuel\nChester\nLewis\nLuther\nCurtis\nEddie\nLawrence\nVernon\nLeonard\nOtis\nJohnnie\nLloyd\nEarnest\nLeo\nClaude\nTroy\nVirgil\nClifford\nKenneth\nHubert\nSam\nAllen\nLeon\nAlvin\nDoyle\nLeroy\nWillard\nHugh\nLoyd\nMarion\nCharley\nLester\nEverett\nBenjamin\nFrancis\nJohnie\nNorman\nTom\nDaniel\nIra\nMelvin\nEdgar\nHarvey\nClifton\nGlen\nGlenn\nJimmie\nMilton\nGarland\nOliver\nGuy\nBill\nJim\nNathaniel\nRussell\nWilson\nLonnie\nWillis\nClaud\nOlen\nBen\nElbert\nEllis\nThurman\nBennie\nHorace\nOdis\nArchie\nCoy\nGrady\nLeslie\nMorris\nRoosevelt\nDonald\nGerald\nJohnny\nWesley\nDan\nDewey\nDon\nElmo\nOrville\nRufus\nDelbert\nIsaac\nJess\nMack\nPete\nTommie\nBert\nDale\nEdwin\nSherman\nAaron\nAustin\nCalvin\nGilbert\nMaurice\nNoel\nWayne\nArlie\nBernard\nBooker\nCleo\nFreddie\nHershel\nJewel\nMartin\nNoble\nPreston\nSylvester\nAmos\nAubrey\nBurl\nClinton\nFrederick\nGordon\nRex\nRoscoe\nTheodore\nEd\nFay\nForrest\nMax\nMillard\nMonroe\nOllie\nPercy\nWill\nBilly\nDennis\nGrover\nJeff\nLowell\nNathan\nOtto\nVictor\nWilburn\nAlonzo\nAlton\nErvin\nJay\nJerry\nJulius\nNelson\nPhilip\nWilbur\nBob\nBruce\nBuster\nClayton\nElijah\nFelix\nIrvin\nIvan\nJacob\nOmer\nOwen\nSidney\nWarren\nWendell\nBasil\nCarroll\nDouglas\nFranklin\nGene\nHerschel\nJewell\nJoel\nJulian\nLeland\nLouie\nManuel\nOrval\nRoss\nStanley\nTommy\nTravis\nArnold\nBoyd\nBuck\nCleveland\nHermon\nHouston\nPorter\nReuben\nRudolph\nTruman\nVan\nVirgle\nWinfred\nAllan\nArther\nBoyce\nEldon\nEzra\nHarrison\nHaskell\nHosea\nJasper\nJerome\nMiles\nNeal\nOttis\nPerry\nPhillip\nShelby\nTheo\nWallace\nWilbert\nWoodroe\nAdolph\nAndy\nBarney\nBillie\nBuel\nByron\nCarlton\nDee\nDick\nEmmett\nForest\nGus\nHobert\nKermit\nLemuel\nLenard\nMajor\nMarcus\nMark\nMarshall\nNolan\nOlin\nPatrick\nRiley\nSteve\nWade\nAlex\nArtis\nBurley\nColumbus\nConway\nDallas\nDarrell\nDave\nEdd\nElisha\nElvis\nEvert\nHarlan\nHarrell\nHavis\nHiram\nHoyt\nJefferson\nKirby\nLilburn\nLois\nLucian\nMose\nNapoleon\nNoah\nObie\nOdell\nOtha\nRoland\nRosevelt\nRuben\nRupert\nSilas\nVance\nWeldon\nAlexander\nAlva\nArvil\nBryant\nBuford\nClardie\nCleve\nConrad\nCyril\nDavis\nDudley\nEli\nElton\nFreeman\nGeneral\nHarley\nHarmon\nHayden\nHollis\nJake\nLevi\nMalcolm\nMilburn\nMoses\nOra\nOrvil\nOthel\nPeter\nPrince\nRandolph\nRoger\nRussel\nSammie\nShirley\nStephen\nSterling\nTalmadge\nTed\nTherman\nTony\nWilfred\nAdolphus\nAl\nAllison\nAnderson\nAron\nArvel\nBenny\nBenson\nBernie\nBonnie\nCarthel\nClaudie\nCleatus\nClint\nEdmond\nElvin\nElzie\nEmanuel\nEmil\nEstel\nEwell\nFinis\nGrant\nGranville\nHays\nHughes\nIsiah\nJackson\nJimmy\nJoshua\nLamar\nLawerence\nLonzo\nLuster\nLynn\nMadison\nMalvin\nMary\nMaynard\nMelton\nMerle\nMitchell\nNorval\nOdie\nPat\nPierce\nScott\nSimon\nSpencer\nThelma\nTurner\nUlysses\nVernie\nWayman\nWilford\nWilmer\nWinford\nJames\nWilliam\nJohn\nRobert\nCharles\nGeorge\nWillie\nHenry\nThomas\nJoe\nJoseph\nEdward\nPaul\nWalter\nFrank\nRoy\nCarl\nClarence\nFred\nAlbert\nRaymond\nEarl\nJack\nRalph\nHarold\nArthur\nJessie\nRichard\nCecil\nErnest\nHoward\nWoodrow\nClyde\nCharlie\nJesse\nLouis\nHerman\nLee\nDavid\nFloyd\nSamuel\nLloyd\nEugene\nHarry\nAndrew\nLawrence\nRay\nHerbert\nOscar\nLeroy\nLeonard\nVernon\nMarvin\nChester\nVirgil\nHomer\nCurtis\nElmer\nLester\nMelvin\nSam\nKenneth\nEarnest\nHubert\nJohnnie\nLeo\nOtis\nAlfred\nLeon\nAlvin\nClaude\nWillard\nDoyle\nLewis\nMarion\nEddie\nEdgar\nCharley\nLuther\nAllen\nClifford\nNorman\nTom\nTroy\nHorace\nJim\nHugh\nJimmie\nDonald\nEverett\nGuy\nLonnie\nEdwin\nHarvey\nLoyd\nOliver\nDaniel\nJohnie\nBill\nLouie\nMilton\nElbert\nGerald\nRussell\nGrady\nBen\nBenjamin\nBennie\nClifton\nFrancis\nRufus\nCalvin\nCleo\nGrover\nIra\nRoosevelt\nSidney\nWayne\nMorris\nThurman\nWesley\nNathaniel\nTheodore\nWillis\nOrville\nArchie\nBilly\nCoy\nFreddie\nWilson\nGarland\nIsaac\nMillard\nEllis\nElmo\nGlenn\nJewel\nJohnny\nLeslie\nLowell\nOdell\nEd\nWallace\nAubrey\nBernard\nDale\nJerry\nWilburn\nBruce\nCarroll\nClinton\nErvin\nFranklin\nGlen\nOdis\nWarren\nAaron\nAlton\nDelbert\nDennis\nDewey\nGilbert\nJay\nMarshall\nMaurice\nTruman\nForrest\nGordon\nJacob\nOwen\nSylvester\nTommie\nVictor\nWilbur\nAmos\nBooker\nBoyd\nDon\nElvis\nEmmett\nFay\nFelix\nJeff\nJess\nNoel\nOlen\nOtho\nPerry\nSterling\nTed\nAlva\nBurl\nDave\nElijah\nHarley\nNathan\nRex\nRoscoe\nRoss\nSherman\nTimothy\nAustin\nBarney\nBob\nClaud\nDan\nHouston\nMartin\nMckinley\nOllie\nPercy\nSteve\nArlie\nBert\nBillie\nByron\nCleveland\nColumbus\nDouglas\nFletcher\nHerschel\nJoel\nLoy\nMarcus\nMonroe\nNoble\nPreston\nShelby\nStanley\nTommy\nArnold\nClark\nClayton\nDallas\nDenver\nElton\nFrederick\nHollis\nJulian\nJulius\nLeland\nMack\nMatthew\nMax\nNelson\nPhilip\nPhillip\nRoland\nSilas\nWinfred\nAnthony\nBuster\nEldon\nHershel\nMark\nMoses\nOthel\nOtto\nPete\nRuben\nAndy\nAugustus\nBasil\nDean\nDelmer\nEdd\nFinis\nHarmon\nHarrison\nHiram\nHoyt\nJake\nLonzo\nLynn\nNapoleon\nOmer\nOpal\nOral\nOtha\nPeter\nSammie\nVincent\nWill\nAlexander\nArlis\nCarlos\nDelmar\nDewitt\nDillard\nElvin\nGene\nGeneral\nHenderson\nJackson\nKermit\nKirby\nLevi\nManuel\nMose\nPorter\nRiley\nRoyce\nStephen\nTyree\nVance\nWade\nWendell\nWiley\nWilford\nAfton\nAlex\nAlonzo\nAlvie\nArther\nAvery\nClayborn\nDarrell\nDee\nElisha\nEvans\nHarlan\nHaskell\nHosea\nJasper\nJefferson\nJerome\nJimmy\nLacy\nLarry\nLehman\nLoren\nMarlin\nMiles\nNeal\nNoah\nObie\nOra\nPrince\nShirley\nTeddie\nTherman\nTillman\nTony\nTravis\nVan\nWebster\nWilfred\nAdam\nAlvis\nAnderson\nArtie\nAugust\nBuford\nChristopher\nCleophus\nConway\nEdmond\nElwood\nElzie\nGus\nHardy\nHayward\nHuston\nIsaiah\nIvan\nKarl\nLaurence\nLenard\nLoyal\nMalvin\nMarshal\nMike\nMilburn\nNewton\nOrval\nOssie\nRoger\nRubin\nRuel\nRussel\nSimon\nTheron\nVaughn\nArch\nArvel\nArvin\nAudrey\nAuther\nBoyce\nBryan\nBuck\nClay\nCrawford\nDenton\nDoyal\nDuke\nEmanuel\nEvertt\nEzell\nGrant\nHarlon\nHarvy\nIrvin\nIvory\nJason\nJewell\nJoshua\nJunior\nLawson\nLindsey\nLois\nLucian\nLucious\nLuke\nMadison\nMajor\nMaynard\nMerl\nMitchell\nMorgan\nOdie\nOdus\nOrvil\nRandolph\nRaymon\nRonald\nRosevelt\nRupert\nSampson\nTheo\nWalker\nWalton\nWoodroe\nJames\nWilliam\nJohn\nRobert\nGeorge\nCharles\nWillie\nThomas\nHenry\nJoe\nRaymond\nFrank\nRoy\nEdward\nPaul\nWalter\nJoseph\nCarl\nWoodrow\nAlbert\nClarence\nEarl\nFred\nJack\nHarold\nRichard\nRalph\nEugene\nArthur\nDavid\nCecil\nJesse\nErnest\nFloyd\nCharlie\nHoward\nRay\nClyde\nSamuel\nElmer\nHerbert\nLouis\nVernon\nHarry\nMarvin\nJohnnie\nLeon\nJessie\nLee\nHomer\nLawrence\nOscar\nSam\nChester\nLeonard\nLester\nHerman\nLeroy\nAlvin\nLuther\nAlfred\nLewis\nCurtis\nLeo\nTroy\nVirgil\nAndrew\nClaude\nLloyd\nEarnest\nEddie\nEdgar\nKenneth\nHubert\nLonnie\nLoyd\nMelvin\nDaniel\nDonald\nNorman\nHugh\nGlenn\nClifford\nOtis\nWilson\nGlen\nArchie\nBill\nCharley\nDoyle\nJim\nJohnie\nHorace\nJimmie\nMarion\nWillard\nAllen\nTheodore\nRussell\nGrover\nOliver\nBen\nBennie\nElbert\nHarvey\nWesley\nEverett\nFrancis\nClifton\nCoy\nIra\nGrady\nRufus\nEdwin\nMack\nBenjamin\nCalvin\nMilton\nRoosevelt\nWilburn\nClaud\nGuy\nLeslie\nThurman\nDale\nMarshall\nOrville\nWallace\nBernard\nVictor\nWillis\nGarland\nSherman\nTom\nTommie\nWayne\nIsaac\nNathaniel\nSidney\nAubrey\nDan\nDon\nOdis\nOllie\nRex\nAmos\nBert\nCleo\nDewey\nOdell\nBuford\nJerry\nLowell\nMonroe\nMorris\nSylvester\nAlton\nBuster\nCleveland\nEllis\nGerald\nJohnny\nNathan\nAustin\nBooker\nDennis\nGene\nGordon\nJulius\nOtto\nSammie\nBilly\nEmmett\nKermit\nQuinton\nArnold\nErvin\nMartin\nPete\nBoyd\nHarrison\nHouston\nJess\nOwen\nPercy\nRoscoe\nStanley\nTommy\nWarren\nBillie\nElmo\nFelix\nForrest\nHershel\nHollis\nMax\nPerry\nAaron\nBurl\nEd\nFrederick\nHoyt\nJake\nJeff\nJewel\nLouie\nMaurice\nOlen\nPhillip\nVan\nWilbur\nWill\nAlonzo\nCarlton\nDelbert\nElijah\nFreddie\nGilbert\nHarley\nJasper\nJay\nMillard\nPreston\nAlvis\nBob\nBruce\nElton\nElvin\nIsiah\nIvory\nJacob\nKeith\nNeil\nRiley\nRoger\nAlex\nClayton\nClinton\nCornelius\nDallas\nDee\nEdd\nEwell\nFranklin\nJunior\nNolan\nOpal\nPershing\nSilas\nTed\nArlie\nDalton\nDean\nDouglas\nFreeman\nJefferson\nLevi\nLoy\nMark\nNelson\nNoah\nNoble\nNoel\nOdie\nOrvil\nQuentin\nRudolph\nTravis\nWilbert\nWilford\nBasil\nBernice\nBuddy\nEmil\nEzra\nJimmy\nLeland\nMajor\nMitchell\nMoses\nPorter\nRoland\nSterling\nSteve\nTruman\nWalton\nWinfred\nWinston\nAlexander\nAlva\nAnthony\nArvel\nClark\nConnie\nDave\nDelmar\nDillard\nEdmond\nElvis\nFay\nHarvie\nHosea\nJewell\nLarry\nLenard\nMalcolm\nMarcus\nMckinley\nOran\nPatrick\nRemmel\nRoss\nRuby\nTheron\nTillman\nVance\nAdrian\nAron\nBuck\nBurley\nBurton\nCarroll\nConrad\nDelmer\nDenver\nDick\nDoyne\nEldon\nEmanuel\nEnoch\nGeneral\nGranville\nHansel\nHerschel\nIrvin\nIvan\nJackson\nJoel\nJulian\nLoren\nManuel\nMatthew\nOmer\nOtha\nScott\nTalmage\nUlysses\nVester\nVirgle\nWaldo\nWinford\nBenton\nBerlin\nBryan\nBuell\nClarance\nClay\nColumbus\nDorsey\nEarly\nEli\nErwin\nForest\nFoster\nFredrick\nGrant\nGus\nHarlan\nHarmon\nHermon\nIke\nJoshua\nLawerence\nLucious\nLynn\nMarlin\nMiles\nNed\nOris\nOthel\nOtho\nPat\nPhilip\nReuben\nRogers\nRuben\nSpencer\nStephen\nTeddy\nTheo\nTimothy\nTurner\nVincent\nWendell\nWoodroe\nAdolph\nAlvie\nArdith\nBenny\nBoyce\nBrown\nBud\nByron\nCarmon\nChauncey\nClaudie\nClide\nClint\nConway\nCyrus\nDuane\nEdison\nElisha\nEuel\nFinis\nHaskell\nHershell\nHilliard\nHollie\nJohnson\nKelly\nLamar\nLaurence\nLawson\nLoyal\nLucille\nMary\nMelton\nMerl\nMichael\nMike\nMilburn\nMurl\nNapoleon\nObie\nOlin\nOpie\nOren\nOrval\nOttis\nRaleigh\nRayburn\nRaymon\nReed\nRonald\nRoyal\nRoyce\nSpurgeon\nTony\nVernie\nWade\nWardell\nWiley\nWilliams\nWyatt\nJames\nWilliam\nJohn\nRobert\nCharles\nGeorge\nWillie\nThomas\nJoe\nHenry\nRoy\nEdward\nRaymond\nJoseph\nWalter\nPaul\nJack\nFrank\nCarl\nClarence\nFred\nHarold\nAlbert\nEarl\nRalph\nArthur\nEugene\nFloyd\nDavid\nJessie\nErnest\nCharlie\nRichard\nLeonard\nHoward\nLee\nLloyd\nRay\nClyde\nElmer\nWoodrow\nCecil\nHerman\nEddie\nHerbert\nHarry\nLouis\nMarvin\nJesse\nLeroy\nVernon\nAndrew\nLawrence\nSamuel\nLuther\nChester\nLester\nSam\nTroy\nAlfred\nVirgil\nCurtis\nEarnest\nAlvin\nHomer\nOscar\nBill\nClaude\nLeo\nLewis\nHubert\nJohnnie\nMelvin\nNorman\nJimmie\nAllen\nKenneth\nOtis\nWillis\nDaniel\nLeon\nLoyd\nEdgar\nHorace\nJohnie\nArchie\nClifford\nClifton\nElbert\nBilly\nEverett\nBenjamin\nEllis\nRufus\nRussell\nMarion\nDonald\nWarren\nWayne\nCharley\nGarland\nGlenn\nDoyle\nGerald\nHarvey\nHugh\nCoy\nFrancis\nGlen\nOdis\nWillard\nIra\nTheodore\nLeslie\nCleo\nEdwin\nOliver\nWesley\nDon\nGrover\nGuy\nLonnie\nMilton\nTom\nJerry\nNathaniel\nRoscoe\nCalvin\nDan\nJim\nLouie\nWallace\nBennie\nDale\nFranklin\nJewel\nRoosevelt\nBen\nDewey\nMack\nWilson\nIsaac\nOlen\nOrville\nTruman\nWilburn\nClaud\nEmmett\nGordon\nRex\nDelbert\nJasper\nJulius\nVictor\nAlton\nAubrey\nBruce\nMorris\nNoble\nThurman\nAlonzo\nArnold\nDouglas\nElmo\nGene\nGilbert\nHarley\nOwen\nEd\nGrady\nHershel\nMartin\nTravis\nDennis\nFelix\nFreddie\nJohnny\nJunior\nOdell\nPete\nTommie\nAaron\nBooker\nBuford\nLowell\nMarshall\nMax\nQuentin\nStanley\nBob\nErvin\nFay\nJewell\nMaurice\nMonroe\nMoses\nPreston\nSammie\nSherman\nTed\nTommy\nWinfred\nBillie\nBurl\nClinton\nElvis\nForrest\nJay\nLevi\nManuel\nNathan\nRiley\nSidney\nWill\nClayton\nCornelius\nDave\nJake\nJeff\nLoy\nLynn\nOllie\nRoland\nRuben\nAustin\nBernard\nBoyd\nCleveland\nEldon\nElvin\nHerschel\nIrvin\nNelson\nOtha\nPercy\nSylvester\nAmos\nCarroll\nEdmond\nElijah\nGus\nIvan\nJess\nMillard\nMose\nOmer\nOtto\nPerry\nSterling\nVirgle\nWinston\nAlvis\nBerry\nBuster\nElton\nFrederick\nJacob\nMajor\nMarcus\nNoah\nObie\nOrval\nPhillip\nRoss\nSilas\nAlexander\nArlie\nBert\nBuck\nCarlos\nDee\nDelmer\nDenver\nDwight\nEwell\nHarmon\nHollis\nJoel\nMiles\nNeal\nPhilip\nSteve\nWeldon\nWilbert\nBarney\nByron\nDarrell\nElzie\nFreeman\nIvory\nKermit\nLeland\nMark\nOrvil\nScott\nShelby\nVan\nWendell\nAlva\nArlis\nAron\nArther\nCarlton\nCarrol\nColumbus\nDallas\nForest\nHarlan\nHarrison\nHaywood\nIsaiah\nKing\nLenard\nPorter\nRaymon\nWade\nWiley\nWinford\nArvil\nAuther\nBryan\nClark\nDewitt\nDillard\nEdd\nEli\nEmmit\nEverette\nFletcher\nGlendon\nHala\nHermon\nHiram\nHobert\nHosea\nHurley\nIshmael\nJimmy\nJohnson\nJoshua\nLonzo\nMadison\nMatthew\nNapoleon\nNeil\nNoel\nOthel\nOttis\nPat\nRosevelt\nTalmadge\nVerlon\nWaymon\nWilbur\nAlex\nAndy\nBobbie\nBoyce\nCletus\nColeman\nDavis\nElza\nEmmitt\nErwin\nEunice\nEzra\nFarris\nFinis\nGeneral\nGranville\nHouston\nHoyt\nIke\nIsiah\nJeremiah\nJoy\nJulian\nKarl\nLacy\nLamar\nLeamon\nLeeroy\nLemuel\nLuster\nMason\nMaxwell\nMaynard\nMichael\nMilford\nMitchell\nOval\nPeter\nQuinton\nRandolph\nRayburn\nRoger\nRosco\nRudolph\nShirley\nTerry\nTimothy\nVerl\nVester\nZack\nAbraham\nAdolph\nAdrian\nAlvie\nArtie\nAugustus\nAvery\nBernice\nBurnice\nClaudie\nCleve\nConnie\nConway\nCraig\nDail\nDelmar\nDeward\nDock\nElsie\nEmerson\nEmery\nEmil\nEmmet\nEual\nEuel\nEulas\nEzell\nFelton\nGaylon\nGuss\nHal\nHardy\nIrving\nJackson\nJudge\nJunious\nLarence\nLovell\nLyle\nMckinley\nMelton\nMilburn\nMurl\nMurrell\nNed\nNolen\nOdie\nOran\nOzie\nRandall\nReuben\nRoyce\nRupert\nSimon\nStephen\nTheo\nTherman\nTony\nVance\nWalker\nWarner\nWilford\nWillam\nWoodroe\nWylie\nJames\nWilliam\nJohn\nRobert\nCharles\nGeorge\nWillie\nThomas\nHenry\nPaul\nJack\nJoe\nFrank\nRoy\nRaymond\nEdward\nJoseph\nWalter\nHarold\nClarence\nFred\nEarl\nCarl\nAlbert\nEugene\nRalph\nDavid\nRichard\nArthur\nHoward\nFloyd\nWarren\nClyde\nJessie\nErnest\nRay\nLee\nCecil\nJesse\nLouis\nHerman\nSamuel\nCharlie\nLeroy\nEarnest\nVernon\nLeonard\nEddie\nLloyd\nChester\nCurtis\nElmer\nKenneth\nAndrew\nHarry\nLeon\nMarvin\nHerbert\nHomer\nSam\nLuther\nJohnnie\nMelvin\nOscar\nVirgil\nAlfred\nLawrence\nDoyle\nLewis\nOtis\nCharley\nLeo\nBilly\nClifford\nBill\nHubert\nAlvin\nArchie\nLoyd\nLester\nWayne\nJohnie\nDonald\nGlen\nClaude\nEverett\nGerald\nTom\nHugh\nNorman\nTroy\nClifton\nDaniel\nGuy\nJimmie\nAllen\nCalvin\nHarvey\nBennie\nEdgar\nRufus\nElbert\nJim\nRoscoe\nWillard\nLeslie\nLonnie\nOliver\nDale\nMarion\nCoy\nGlenn\nHorace\nMilton\nTheodore\nWoodrow\nBenjamin\nBillie\nWallace\nWesley\nBen\nNathaniel\nGrady\nIra\nJerry\nOrville\nWillis\nClaud\nJohnny\nLouie\nMorris\nRussell\nSylvester\nGarland\nOdell\nRex\nCleo\nFrancis\nGrover\nHershel\nIsaac\nOlen\nRoosevelt\nAubrey\nLowell\nPerry\nThurman\nEdwin\nEllis\nMaurice\nWilburn\nAmos\nDewey\nFreddie\nVictor\nBob\nClinton\nGene\nGordon\nJoel\nMax\nPreston\nSidney\nBert\nDon\nFrederick\nGilbert\nJewel\nOdis\nAaron\nDan\nErvin\nHollis\nSherman\nAlton\nBernard\nBooker\nDennis\nElton\nFranklin\nHouston\nNathan\nOllie\nOmer\nStanley\nTommy\nArnold\nBurl\nDelbert\nEmmett\nHarley\nHoyt\nJasper\nJunior\nMarshall\nNelson\nNoble\nTravis\nTruman\nWinfred\nAustin\nBruce\nDouglas\nForrest\nJay\nMack\nMartin\nOwen\nPeter\nTommie\nAndy\nBuster\nGus\nJewell\nMonroe\nMoses\nWiley\nWill\nBoyd\nCarroll\nElmo\nHarding\nJacob\nMillard\nAlonzo\nEd\nHiram\nIvan\nJulius\nLevi\nNeil\nWilford\nAlex\nBobby\nClark\nDave\nFreeman\nJake\nJeff\nJefferson\nJess\nJulian\nMitchell\nOtha\nOtto\nPercy\nPhillip\nRudolph\nTed\nWilbur\nWilson\nAlva\nAnderson\nBasil\nColumbus\nCornelius\nDallas\nDean\nDenver\nEdmond\nFay\nFinis\nHarrison\nHerschel\nMarcus\nPatrick\nRoger\nTheo\nVan\nAlford\nAnthony\nArlis\nByron\nDelmar\nElvin\nFelix\nHermon\nHobert\nLoren\nLoy\nLynn\nMatthew\nNapoleon\nNewton\nNoel\nNolan\nPat\nPhilip\nQuentin\nRuben\nWaymon\nWilbert\nWinford\nAl\nCarrol\nClay\nClayton\nColeman\nDalton\nDick\nEdsel\nElijah\nElvis\nForest\nIvory\nLarry\nLenard\nMajor\nMerle\nNoah\nOren\nOtho\nQuinton\nRoland\nRonald\nRoyce\nSeth\nSilas\nVirgle\nWalker\nWayman\nWeldon\nAbraham\nAcie\nAdolph\nAugustus\nBryan\nBud\nBuford\nCleveland\nConnie\nDannie\nDelton\nDewitt\nDreddy\nEldon\nEmanuel\nEmory\nHarmon\nHarrell\nKeith\nKirby\nMalcolm\nObie\nOrval\nPorter\nReuben\nRiley\nShelby\nSpencer\nTheron\nTimothy\nVester\nWade\nWardell\nWendell\nAdrian\nAlvie\nArther\nAudy\nAuther\nBarney\nBobbie\nBoyce\nCarlton\nCarter\nCurley\nDee\nDempsey\nDorsey\nDuane\nElliott\nElwood\nElzie\nEmmitt\nEzra\nFletcher\nGrant\nGranville\nHarlan\nHulen\nIrvin\nIsaiah\nIsiah\nJackson\nJose\nJunious\nKermit\nKing\nLamar\nMike\nMorgan\nMyron\nNeal\nOcie\nOlin\nPete\nRayburn\nSammie\nStephen\nTony\nVance\nVernie\nVincent\nVirgel\nAdolphus\nAllan\nAllie\nArlin\nAron\nArvel\nArvil\nArvin\nAthel\nBerlin\nBernice\nBeryl\nBonnie\nBryce\nBuck\nBuel\nBuell\nCarson\nChris\nCletis\nCyrus\nDelmer\nDoyne\nDwight\nEarly\nEdd\nEmerson\nEston\nEulas\nFelton\nFoy\nGeneral\nHarden\nHarlon\nHershell\nHowell\nHughie\nHuston\nJason\nJerome\nJimmy\nJohny\nJonathan\nJonnie\nLemuel\nLucian\nLucius\nLyle\nMaceo\nMadison\nMathew\nMilburn\nNolen\nOttis\nPrince\nRector\nReece\nReginald\nRodney\nRuel\nSimon\nStanford\nSteve\nTillman\nUlysses\nVaughn\nVergil\nWilfred\nJames\nWilliam\nJohn\nRobert\nCharles\nGeorge\nWillie\nThomas\nPaul\nHenry\nEdward\nJoe\nJack\nRoy\nJoseph\nHarold\nWalter\nCarl\nRaymond\nFrank\nEugene\nRichard\nWarren\nAlbert\nClarence\nRalph\nEarl\nFred\nDavid\nCecil\nArthur\nKenneth\nHoward\nLouis\nSamuel\nFloyd\nCharlie\nRay\nErnest\nHarry\nJessie\nLee\nVernon\nHerman\nLeroy\nElmer\nJesse\nJohnnie\nAndrew\nLeonard\nLewis\nBilly\nClyde\nLeon\nLawrence\nMarvin\nChester\nLester\nAlfred\nHerbert\nLloyd\nLuther\nOscar\nVirgil\nEdgar\nJimmie\nCalvin\nDoyle\nLoyd\nTroy\nAlvin\nHomer\nDonald\nElbert\nOtis\nLeo\nWayne\nHarvey\nMelvin\nSam\nEddie\nJohnie\nBill\nClaude\nEarnest\nNorman\nGerald\nCurtis\nHubert\nMarion\nWillard\nClifton\nCharley\nAllen\nClifford\nHorace\nEverett\nTom\nGlen\nWallace\nEdwin\nIra\nMilton\nOdell\nOliver\nBen\nRussell\nDaniel\nOdis\nWoodrow\nJim\nJohnny\nRufus\nCoy\nJerry\nWillis\nDewey\nFrancis\nJunior\nNathaniel\nDale\nGarland\nGlenn\nGrover\nBennie\nRoscoe\nTheodore\nCleo\nGuy\nHugh\nOrville\nWesley\nClaud\nLonnie\nBernard\nBillie\nDon\nDouglas\nTommie\nBenjamin\nHarley\nIsaac\nBert\nDelbert\nFreddie\nSherman\nSidney\nSylvester\nAlton\nArchie\nMax\nRoland\nSammie\nWill\nGrady\nJewel\nTruman\nAaron\nGilbert\nLeland\nLouie\nStanley\nThurman\nTravis\nVictor\nAubrey\nDan\nEllis\nElmo\nEmmett\nFranklin\nHershel\nJay\nMorris\nPercy\nWilburn\nArnold\nAustin\nClinton\nGene\nHollis\nJasper\nLowell\nMarshall\nMaurice\nRoger\nWilbur\nBoyd\nForrest\nGordon\nJulius\nMartin\nOwen\nRoosevelt\nWinfred\nBruce\nCleveland\nMonroe\nOlen\nTommy\nVan\nAlex\nBarney\nHarrison\nHouston\nJeff\nPerry\nVirgle\nAlonzo\nAmos\nBuford\nBurl\nCarroll\nClayton\nCornelius\nDenver\nEldon\nJake\nJewell\nLeslie\nMack\nPreston\nRex\nShelby\nWendell\nBobby\nBuster\nEzra\nFreeman\nJimmy\nLenard\nMarcus\nMoses\nOmer\nBryan\nDean\nElijah\nFelix\nFrederick\nHarding\nHermon\nOllie\nPete\nWilson\nArvil\nBob\nBooker\nDallas\nElton\nErvin\nGrant\nHardy\nIrvin\nIvan\nJackson\nJoel\nMalcolm\nMatthew\nMilburn\nNewton\nNoel\nOtto\nPatrick\nPhillip\nSterling\nTheo\nWinston\nAlexander\nArlie\nDave\nEd\nEdmond\nJacob\nJess\nKeith\nManuel\nNathan\nNelson\nPhilip\nRuben\nSteve\nAdolph\nAnderson\nArvel\nBryce\nBuck\nDelmer\nDennis\nElvin\nEwell\nForest\nGus\nIvory\nKermit\nLevi\nLogan\nMillard\nNeal\nOtha\nWilbert\nWiley\nAlva\nAnthony\nBud\nByron\nCarlos\nColumbus\nHowell\nHoyt\nLemuel\nLoy\nMajor\nMose\nNolan\nNorris\nOrvil\nRaymon\nRiley\nRoss\nRudolph\nScott\nSilas\nAdam\nAdrian\nAllie\nAlvie\nArther\nBernice\nCarlton\nCarrol\nDelmar\nDelton\nDempsey\nEldridge\nElvis\nEmery\nEmmit\nFay\nHarden\nHarmon\nHerschel\nHiram\nJodie\nJulian\nLarry\nLonzo\nMark\nMitchell\nNed\nNoah\nOran\nOttis\nQuinton\nRandall\nReuben\nRosevelt\nRoyce\nTed\nTheodis\nTimothy\nTony\nTyree\nVance\nWade\nWarner\nWayman\nWaymon\nWinford\nAlvis\nAmbrose\nArgus\nArlis\nAron\nAugustus\nBobbie\nBoyce\nClay\nCloyce\nConley\nDee\nDock\nElisha\nEnoch\nEstel\nFarris\nFelton\nFrankie\nGeneral\nHarlan\nHarlon\nHarris\nHaywood\nHobert\nJonathan\nLois\nLuke\nLynn\nMalvern\nMalvin\nMarlin\nMary\nMilford\nNolen\nOdie\nOpal\nOrvel\nOtho\nPorter\nRogers\nSanford\nSeth\nShirley\nSimon\nSolomon\nTalmadge\nTheron\nVergil\nVernie\nVester\nAllan\nAndy\nArlee\nArtie\nAubry\nBasil\nBenny\nBernell\nBuddy\nBurley\nCal\nChamp\nClaudie\nCleophus\nCletus\nClint\nColeman\nDarrel\nDexter\nEarlie\nElwood\nElza\nEmanuel\nEmil\nEmmitt\nEvert\nFinis\nFletcher\nGail\nHal\nHarlin\nHayden\nHobart\nHurshel\nIssac\nJd\nJose\nJoy\nJudson\nJune\nLafayette\nLawson\nLeeroy\nLenoard\nLoyal\nLucius\nLuster\nMckinley\nMike\nObie\nOlin\nOris\nOthel\nPeter\nReece\nRonald\nRuel\nSilvester\nTillman\nTurner\nUlysses\nVernice\nWalker\nWatson\nWelton\nWilford\nJames\nWilliam\nJohn\nRobert\nCharles\nGeorge\nWillie\nThomas\nHenry\nJoe\nEdward\nHarold\nJack\nRoy\nPaul\nJoseph\nWalter\nRaymond\nEarl\nClarence\nEugene\nAlbert\nFrank\nCarl\nFred\nRalph\nRichard\nFloyd\nDavid\nLouis\nJessie\nArthur\nCecil\nHoward\nBilly\nKenneth\nErnest\nJesse\nClyde\nHerman\nLee\nLeroy\nSamuel\nCharlie\nElmer\nHarry\nRay\nVernon\nLawrence\nAndrew\nChester\nLeonard\nLloyd\nDonald\nHerbert\nAlfred\nAlvin\nOscar\nLester\nLuther\nEddie\nJohnnie\nDoyle\nMelvin\nWarren\nEarnest\nMarvin\nCurtis\nVirgil\nHomer\nLeo\nTroy\nLeon\nHubert\nGerald\nWayne\nOtis\nArchie\nEdwin\nJunior\nSam\nCalvin\nJohnie\nNorman\nClifton\nEdgar\nBenjamin\nHorace\nBill\nElbert\nMarion\nAllen\nDale\nJimmie\nDaniel\nCharley\nClaude\nMack\nBennie\nGuy\nClifford\nLoyd\nWillard\nHugh\nJerry\nRussell\nTom\nLonnie\nHarvey\nIra\nOliver\nDewey\nRufus\nEverett\nGarland\nOdell\nGlenn\nLewis\nNathaniel\nTheodore\nBen\nWillis\nGene\nGrover\nCoy\nDan\nJim\nMaurice\nThurman\nIsaac\nJewel\nLeslie\nOdis\nRoosevelt\nWesley\nAubrey\nClaud\nRoscoe\nWallace\nBillie\nCleo\nJohnny\nMorris\nOlen\nBruce\nMilton\nTommie\nVictor\nWilburn\nAaron\nAlton\nAmos\nDouglas\nMonroe\nSidney\nTommy\nBurl\nDon\nFrancis\nGilbert\nSylvester\nBuford\nClinton\nJulius\nEd\nGordon\nGrady\nOllie\nOrville\nRex\nEllis\nFreddie\nGlen\nSherman\nArnold\nBernard\nErvin\nFranklin\nMartin\nTruman\nAlonzo\nBoyd\nElvin\nForrest\nHershel\nJeff\nNathan\nRoland\nSammie\nWeldon\nFelix\nFinis\nJay\nMax\nMoses\nRoger\nTravis\nVirgle\nWilbur\nWill\nWoodrow\nBert\nDallas\nDelbert\nDennis\nElijah\nJasper\nLouie\nMillard\nPerry\nSterling\nWilson\nBobby\nHerschel\nJake\nJoel\nTed\nBooker\nCarroll\nColumbus\nCornelius\nEldon\nElvis\nEmmett\nFay\nLenard\nMarshall\nNoel\nOtto\nPercy\nShelby\nStanley\nBuel\nClayton\nHarley\nJewell\nLevi\nLowell\nLoy\nRiley\nRonald\nVan\nWinfred\nAlexander\nArvil\nAustin\nDave\nElisha\nFrederick\nJimmy\nLeland\nPete\nPhillip\nUlysses\nWilbert\nArvel\nByron\nClay\nDarrell\nHarrison\nHermon\nHollis\nHouston\nIvan\nJerome\nLawson\nLynn\nMatthew\nMitchell\nNelson\nNoble\nNolan\nPreston\nRoss\nVance\nWiley\nWilford\nArlie\nBob\nCarlton\nDelmar\nDelmer\nDock\nElton\nHaskell\nJackson\nJess\nKeith\nNeil\nObie\nRoyce\nRudolph\nVerlon\nWinford\nAlex\nAlva\nAlvie\nArley\nBobbie\nBuster\nCarlos\nCleveland\nDean\nDenver\nElmo\nErwin\nEwell\nHal\nHoyt\nIsiah\nIvory\nLamar\nMajor\nMarcus\nNoah\nOwen\nWilber\nAbraham\nArlis\nBasil\nBerry\nBoyce\nClarance\nDewitt\nDick\nDoyne\nDurward\nEdmond\nForest\nGlendon\nGranville\nJacob\nKermit\nLemuel\nLoren\nMalvin\nMarlin\nPorter\nRandolph\nRodney\nRuben\nRussel\nShirley\nSolomon\nTaylor\nTheodis\nVester\nWade\nWendell\nWinston\nAbner\nAdolph\nAlpha\nArtis\nCarrol\nCarthel\nConnie\nDalton\nDamon\nDee\nDillard\nDuane\nDudley\nEli\nElwood\nEmmitt\nEmory\nEzra\nFletcher\nFredrick\nFreeman\nGrant\nGus\nHarding\nHardy\nHarlan\nHarmon\nHayden\nHayes\nHurshel\nIrvin\nJulian\nJunious\nLeamon\nLorenzo\nLoyal\nLucious\nMadison\nMaxwell\nMerle\nMose\nOpie\nOral\nOrval\nOtha\nPat\nPatrick\nRaymon\nReuben\nRosevelt\nRoyal\nSanford\nScott\nSilas\nSimon\nSpencer\nSteve\nTalmadge\nTeddy\nTurner\nVernie\nWalker\nWard\nWebster\nAcie\nAdrian\nAfton\nAndy\nAnthony\nArgus\nArlen\nArther\nAugust\nBarney\nBonnie\nBuck\nBurton\nConley\nDarrel\nDaryl\nDelton\nDeward\nDewell\nDexter\nDwight\nEligah\nElzie\nEmerson\nEmil\nEnoch\nEuel\nEzekiel\nFarrell\nHarris\nHarvie\nHiram\nJefferson\nJonathan\nJoy\nJune\nJustin\nLafayette\nLarry\nLucian\nLucius\nMalcolm\nMerl\nMichael\nMike\nOpal\nOra\nOran\nOrvil\nOtho\nOttis\nReginald\nRubin\nSeth\nSid\nStephen\nTheo\nTimothy\nVern\nVincent\nVirgel\nWilmer\nJames\nWilliam\nJohn\nRobert\nCharles\nGeorge\nWillie\nThomas\nJack\nHenry\nEdward\nJoe\nRoy\nHarold\nPaul\nJoseph\nCarl\nRaymond\nWalter\nFrank\nRichard\nEugene\nClarence\nEarl\nRalph\nKenneth\nAlbert\nFred\nArthur\nCecil\nDavid\nBilly\nLouis\nJessie\nFloyd\nCharlie\nHerman\nClyde\nLee\nRay\nErnest\nElmer\nJesse\nMarvin\nCalvin\nLeon\nHoward\nVernon\nDonald\nChester\nHarry\nLeroy\nMelvin\nSamuel\nHerbert\nJohnnie\nLawrence\nLloyd\nEddie\nJimmie\nLeonard\nAndrew\nWarren\nBill\nEarnest\nVirgil\nCurtis\nAlvin\nLuther\nNorman\nHarvey\nJunior\nHomer\nLewis\nGerald\nLeo\nOtis\nDoyle\nLoyd\nMarion\nTroy\nEverett\nOscar\nWayne\nHorace\nHubert\nLester\nSam\nAlfred\nEdwin\nBillie\nClaude\nEdgar\nWallace\nElbert\nJohnie\nClifford\nJohnny\nCharley\nJim\nRoosevelt\nTom\nWillard\nBen\nMorris\nMilton\nGarland\nGene\nGuy\nClifton\nDale\nDaniel\nOliver\nThurman\nBenjamin\nLeslie\nLonnie\nAllen\nWillis\nGlen\nGlenn\nTommie\nHugh\nWesley\nCleo\nDewey\nOlen\nRufus\nBennie\nClaud\nFrancis\nMaurice\nNathaniel\nMarshall\nRussell\nWilburn\nCoy\nGrady\nIra\nMack\nOdell\nSylvester\nFreddie\nJerry\nArchie\nOwen\nStanley\nAmos\nAubrey\nDelbert\nGrover\nRoland\nBob\nClinton\nJasper\nTommy\nArnold\nBert\nCarroll\nElijah\nEllis\nElmo\nJewel\nJimmy\nMax\nOrville\nAustin\nBooker\nDan\nFranklin\nTravis\nGilbert\nGordon\nHollis\nJay\nOdis\nSherman\nTheodore\nVictor\nCleveland\nJewell\nRex\nVerlon\nAlton\nBernard\nBruce\nDennis\nDon\nIsaac\nWilbur\nBobby\nEd\nElton\nIvan\nJackson\nJake\nRoscoe\nTruman\nWill\nWinfred\nAlonzo\nDenver\nEmmett\nHarley\nJulian\nJulius\nMark\nMartin\nNapoleon\nOllie\nPerry\nSterling\nWoodrow\nAaron\nBuford\nFrederick\nLarry\nMillard\nNathan\nNelson\nPhilip\nSidney\nAdolph\nAlex\nColumbus\nDallas\nDave\nLouie\nLowell\nLoy\nMatthew\nPercy\nWilson\nArlie\nBoyd\nBurl\nDouglas\nElvis\nForrest\nHermon\nHershel\nRudolph\nWendell\nAndy\nBoyce\nByron\nCarlton\nCornelius\nDean\nEldon\nJeff\nJoel\nMonroe\nNeal\nNoah\nNoble\nPete\nTheodis\nVirgle\nWilbert\nWiley\nAdrian\nBarney\nBuster\nCarlos\nClayton\nFelix\nKeith\nMarcus\nMoses\nNoel\nNolan\nPreston\nRoger\nRuben\nSteve\nTheo\nWilford\nAlford\nAlva\nAlvis\nCarrol\nElvin\nErvin\nFletcher\nJess\nJunius\nLamar\nLeland\nLoren\nMalcolm\nManuel\nMilburn\nOtha\nPhillip\nWeldon\nBuddy\nConrad\nEmerson\nEric\nEverette\nFay\nFrankie\nHosea\nJacob\nLevi\nLois\nLynn\nMckinley\nNeil\nPatrick\nRandolph\nRiley\nTed\nVance\nWade\nAlexander\nArvel\nCleophus\nClint\nDarrell\nDelmer\nDexter\nDock\nDonnie\nDoris\nDoyne\nEdmond\nEmery\nEzra\nFreeman\nGranville\nGus\nHarrison\nHerschel\nHoyt\nJean\nJefferson\nLenard\nMitchell\nOrvel\nOrvil\nPat\nPeter\nPorter\nSammy\nSolomon\nStuart\nTeddy\nWilmer\nWinston\nAlvie\nArlis\nArther\nBenny\nBobbie\nBonnie\nClarance\nCletis\nDalton\nDelmar\nDick\nElzie\nEvert\nFarris\nGeneral\nGlendon\nHal\nHarlan\nHobert\nHouston\nIsiah\nJerome\nJoyce\nKelly\nLemuel\nLevester\nLincoln\nMajor\nMilford\nObie\nOlin\nOtto\nRoss\nRoyce\nTillman\nTyree\nUlysses\nWalker\nWinford\nArgie\nAron\nArvil\nBasil\nBernie\nCarson\nClark\nDavis\nDenzil\nDuane\nDwight\nElmar\nEuell\nEwell\nFelton\nFredrick\nGraham\nHardy\nHarmon\nHaskell\nHiram\nHosie\nHurshel\nIsaiah\nKirby\nLavell\nLeeroy\nLoise\nLoyal\nLyle\nMary\nMichael\nMurry\nNed\nNorris\nOdie\nOlan\nPrentice\nQuinton\nRaymon\nSammie\nSanford\nShelby\nStephen\nTalmadge\nTomie\nVan\nVaughn\nVester\nWayman\nWaymon\nWilton\nWylie\nZane\nJames\nWilliam\nJohn\nRobert\nCharles\nGeorge\nThomas\nWillie\nJoe\nJack\nEdward\nPaul\nWalter\nHenry\nHarold\nBilly\nCarl\nJoseph\nFrank\nRaymond\nRoy\nRichard\nCalvin\nEugene\nAlbert\nDavid\nClarence\nEarl\nArthur\nFred\nKenneth\nRalph\nLee\nErnest\nJessie\nCecil\nHoward\nLeon\nHerman\nLouis\nSamuel\nRay\nCharlie\nHarry\nFloyd\nHerbert\nLeroy\nJesse\nClyde\nEddie\nHomer\nElmer\nJohnnie\nMelvin\nDonald\nLuther\nChester\nJunior\nVernon\nBill\nLeonard\nMarvin\nLawrence\nEarnest\nAlvin\nLloyd\nOtis\nAndrew\nSam\nJimmie\nTroy\nAlfred\nClifford\nLester\nVirgil\nNorman\nGerald\nHubert\nWillard\nEdgar\nOscar\nCurtis\nDoyle\nJohnie\nMarion\nAllen\nLewis\nLeo\nBenjamin\nJim\nWayne\nLoyd\nArchie\nBen\nHarvey\nDaniel\nElbert\nHorace\nJohnny\nRoosevelt\nWillis\nBillie\nBobby\nRussell\nClifton\nCharley\nClaude\nWallace\nGarland\nGlenn\nGuy\nTheodore\nTom\nWarren\nEverett\nDale\nDewey\nDon\nEdwin\nFreddie\nHugh\nIra\nLonnie\nMorris\nJerry\nLeslie\nMaurice\nMilton\nNathaniel\nTommy\nWesley\nGlen\nSylvester\nDelbert\nDouglas\nGene\nHershel\nOliver\nRufus\nBennie\nCarroll\nCoy\nSammie\nWilburn\nAmos\nGordon\nSherman\nVictor\nBob\nClayton\nJimmy\nStanley\nWoodrow\nAubrey\nGrover\nTommie\nCleo\nClinton\nHollis\nOdell\nOrville\nArnold\nBernard\nClaud\nDennis\nJake\nVan\nFrancis\nJasper\nJay\nJewel\nLowell\nLynn\nMack\nMarcus\nMax\nOdis\nOwen\nRoland\nDean\nEllis\nLouie\nBert\nBoyd\nBurl\nForrest\nGilbert\nIsaac\nMartin\nRudolph\nThurman\nTruman\nAustin\nFranklin\nGrady\nJeff\nMarshall\nSidney\nTravis\nWilson\nAlonzo\nBruce\nDan\nFrederick\nHarley\nHouston\nJewell\nMillard\nMonroe\nPerry\nWinfred\nAlex\nBuster\nEldon\nEmmett\nHarmon\nWilbur\nDarrell\nErvin\nGlendon\nNelson\nPhillip\nRoscoe\nAlton\nBobbie\nLoy\nNathan\nOlen\nRex\nWiley\nWill\nAlvie\nArther\nBarney\nEd\nElmo\nFay\nFreeman\nHerschel\nIrvin\nJulius\nLarry\nNoble\nNorris\nPercy\nPreston\nSilas\nTed\nVester\nVirgle\nWinford\nAaron\nAndy\nBud\nClaudie\nCornelius\nDallas\nDelton\nDewitt\nFredrick\nHarrison\nJacob\nJess\nLenard\nLevi\nLonzo\nMatthew\nNoel\nOmer\nOtto\nScott\nSpencer\nStephen\nSteve\nTheo\nWilbert\nWinston\nAdrian\nAlva\nCleveland\nDave\nDavis\nDelmer\nElijah\nElton\nHoyt\nIsiah\nJefferson\nJoel\nManuel\nNolan\nOllie\nPhilip\nQuinton\nRaymon\nRiley\nRoger\nRosevelt\nRuben\nTimothy\nWendell\nAdolph\nAlexander\nArlie\nArvil\nBuford\nDalton\nDick\nElvin\nElvis\nEzra\nFinis\nGus\nHarlin\nIvan\nJerome\nLeamon\nMalcolm\nMoses\nNapoleon\nNeal\nSolomon\nTony\nWade\nWeldon\nAdron\nAlford\nBenton\nCarrol\nColumbus\nDenzil\nElwood\nEvert\nFelix\nGranville\nHal\nHermon\nHosea\nJackie\nJackson\nJoshua\nKelly\nLavern\nLeland\nMitchell\nNoah\nOran\nOrval\nOtha\nPorter\nReuben\nRodney\nRonald\nRoyal\nRuffus\nRussel\nSterling\nWalker\nWilbern\nAncil\nBooker\nBrice\nBuddy\nCarlton\nCletus\nClint\nColeman\nCoolidge\nDee\nDuane\nEdd\nElza\nElzie\nForest\nGale\nHarrell\nHaskell\nHurshel\nIssac\nIvory\nKeith\nLoyal\nMajor\nMark\nMarlin\nMckinley\nMichael\nMilburn\nPat\nPete\nPeter\nRoyce\nShirley\nTalmadge\nTerral\nTerry\nUlysses\nVance\nVerlon\nWebster\nWilton\nAlvis\nAvery\nBoyce\nBryant\nCarrel\nCarter\nCarthel\nChris\nChristopher\nClay\nCyril\nDenver\nDwight\nEdison\nEdsel\nEgbert\nEli\nElisha\nEnoch\nEthel\nEwell\nFerrel\nFletcher\nFrankie\nGeneral\nGolden\nGrant\nHaskel\nHilton\nHowell\nIke\nIrving\nIsaiah\nJerrel\nJohnson\nJonathan\nJulian\nJustin\nKennith\nKermit\nKing\nLaverne\nLawson\nLois\nLoren\nMalvin\nMose\nNed\nNeil\nNewton\nNolen\nOren\nOrin\nPatrick\nRayburn\nRayford\nSammy\nTeddy\nTilman\nVaughn\nWarner\nWaymon\nWilford\nWoodson\nZane\nJames\nWilliam\nJohn\nRobert\nCharles\nGeorge\nThomas\nWillie\nJoe\nHenry\nHarold\nBilly\nRoy\nEdward\nPaul\nJack\nEugene\nWalter\nFrank\nRaymond\nClarence\nCalvin\nAlbert\nJoseph\nRichard\nCarl\nEarl\nDavid\nFloyd\nKenneth\nFred\nCecil\nRalph\nArthur\nJessie\nHerman\nClyde\nRay\nJimmie\nLeon\nHerbert\nJesse\nHoward\nLeroy\nLee\nSamuel\nMarvin\nElmer\nErnest\nLouis\nJunior\nCharlie\nEarnest\nHarry\nClifford\nDonald\nLloyd\nLawrence\nJohnnie\nVernon\nLuther\nBobby\nMelvin\nWayne\nBill\nEddie\nNorman\nLeonard\nCurtis\nLeo\nChester\nDoyle\nGerald\nAndrew\nHomer\nClaude\nHarvey\nTroy\nLewis\nMarion\nHubert\nSam\nAlfred\nBillie\nDaniel\nBennie\nAlvin\nGlen\nOscar\nLester\nAllen\nEdgar\nJim\nOtis\nArchie\nEdwin\nElbert\nGene\nJohnny\nMilton\nVirgil\nClifton\nOliver\nBenjamin\nDale\nJohnie\nClaud\nGarland\nLonnie\nTommy\nJimmy\nDewey\nFreddie\nNathaniel\nEverett\nGlenn\nTom\nWillard\nJerry\nLoyd\nMorris\nWallace\nWillis\nDon\nHugh\nIra\nMack\nThurman\nCoy\nLeslie\nCharley\nIsaac\nRussell\nTheodore\nAubrey\nBob\nGordon\nGuy\nHorace\nRufus\nWesley\nArnold\nEllis\nBen\nBruce\nCleo\nSylvester\nTommie\nFranklin\nGrover\nRoosevelt\nClayton\nJulius\nMartin\nWarren\nWilburn\nBoyd\nFrancis\nGrady\nMarcus\nMax\nRex\nWinfred\nBert\nOdell\nOrville\nRoland\nSidney\nSilas\nGilbert\nBurl\nEmmett\nJake\nRoscoe\nWilbur\nBernard\nDelbert\nForrest\nMaurice\nOdis\nOlen\nPerry\nPete\nSherman\nWendell\nBobbie\nErvin\nJewell\nLowell\nOwen\nPercy\nTruman\nWill\nDan\nDean\nDennis\nJay\nMarshall\nMoses\nPreston\nStanley\nAmos\nBenny\nBooker\nDave\nElijah\nJewel\nMillard\nMonroe\nRoyce\nSammie\nSterling\nWoodrow\nAlonzo\nAustin\nCarroll\nCleveland\nClinton\nDouglas\nElmo\nFay\nJacob\nLouie\nPhillip\nRuben\nTravis\nVictor\nWilson\nBoyce\nDalton\nDenver\nEd\nFrederick\nJeff\nJefferson\nLarry\nLeland\nLenard\nLynn\nNathan\nRoss\nAlex\nElvis\nFelix\nFreeman\nHarrison\nHerschel\nJoel\nManuel\nNoah\nNoble\nWeldon\nAaron\nAlton\nBryan\nBuford\nDelmer\nElvin\nJess\nJulian\nLamar\nMckinley\nOllie\nOren\nShelby\nTony\nArther\nClaudie\nDarrell\nEdmond\nEdsel\nEldon\nHarlan\nHarley\nHaskell\nHouston\nIsiah\nJennings\nLucian\nMark\nMiles\nNeal\nNorris\nPatrick\nPeter\nRoger\nSteve\nTed\nVance\nWilbert\nAdolph\nAdrian\nAnthony\nArvil\nBarney\nBonnie\nBuddy\nEmanuel\nFletcher\nHermon\nHershel\nIrvin\nJethro\nJoshua\nLoren\nOttis\nRudolph\nVaughn\nAdron\nAlva\nArlis\nAron\nBasil\nBuster\nClarance\nClay\nDee\nElisha\nElton\nEvert\nEwell\nHiram\nHobert\nHosea\nHoyt\nIvan\nKing\nKirby\nLonzo\nPhilip\nReginald\nRonald\nUtah\nWiley\nArlie\nBernie\nCarlos\nCleophus\nClint\nColumbus\nCornelius\nDallas\nDenton\nElwood\nEmmitt\nEzra\nFord\nFoster\nGlendon\nGus\nHarris\nHollis\nIvory\nJackie\nJasper\nJohney\nKeith\nKelley\nKennith\nLafayette\nLemuel\nLilburn\nLogan\nLoy\nLoyal\nMatthew\nMerle\nMilford\nNapoleon\nNolen\nOtho\nOtto\nPat\nRandall\nReuben\nSammy\nSimon\nStephen\nTheo\nTheron\nTimothy\nTyree\nVan\nVerna\nVirgle\nWade\nWaymon\nAbraham\nAlvie\nAndy\nArgus\nArtis\nArvel\nAubry\nBailey\nBernice\nBradley\nBud\nBuddie\nByron\nCarlton\nCarol\nCarrol\nCurley\nDamon\nDewitt\nDoyne\nEdmon\nEldridge\nEzell\nFarris\nFelton\nForest\nFredrick\nGeneral\nGrant\nHarmon\nHarvie\nHenery\nHulon\nIke\nIsaiah\nJerome\nJonnie\nJudge\nLenord\nLevi\nMarlin\nMary\nMatt\nMilburn\nMose\nNed\nNeil\nNelson\nNoel\nOtha\nRaymon\nRemmel\nRiley\nRodney\nRoyal\nShirley\nSolomon\nThurston\nVerlon\nVincent\nWilfred\nWinford\nWinston\nZane\nJames\nWilliam\nJohn\nRobert\nCharles\nGeorge\nWillie\nBilly\nThomas\nJoe\nJack\nHarold\nHenry\nRoy\nEdward\nPaul\nRaymond\nWalter\nRichard\nCarl\nEugene\nDavid\nFrank\nEarl\nFloyd\nKenneth\nJoseph\nClarence\nFred\nArthur\nDonald\nSamuel\nGerald\nRay\nCecil\nAlbert\nBobby\nRalph\nHerbert\nHoward\nJessie\nCalvin\nVernon\nHerman\nLouis\nLeon\nCharlie\nErnest\nLee\nEddie\nElmer\nJohnnie\nJesse\nChester\nMarvin\nJimmie\nJunior\nLeroy\nClyde\nBillie\nAndrew\nLawrence\nEarnest\nLewis\nMelvin\nHarry\nLloyd\nBill\nLeonard\nNorman\nCurtis\nOscar\nSam\nAlvin\nLester\nHomer\nWayne\nGene\nJerry\nMarion\nLuther\nClaude\nTroy\nClifford\nClifton\nDoyle\nJohnie\nVirgil\nDaniel\nLeo\nHubert\nRufus\nAlfred\nAllen\nJohnny\nLoyd\nCharley\nJim\nDon\nEdgar\nRoosevelt\nWillis\nHarvey\nCleo\nElbert\nHorace\nJimmy\nBen\nBennie\nDale\nGlen\nHugh\nOliver\nFreddie\nGarland\nNathaniel\nOtis\nLonnie\nEdwin\nEverett\nWesley\nAlton\nBenjamin\nRussell\nTommie\nGuy\nOdell\nTom\nWilburn\nWillard\nArchie\nDelbert\nIra\nMilton\nWallace\nCarroll\nGlenn\nTommy\nWarren\nAaron\nAubrey\nBernard\nMack\nMartin\nMax\nOrville\nBob\nClinton\nHershel\nOdis\nCoy\nDewey\nLeslie\nMarshall\nRoland\nGrady\nSylvester\nClaud\nEllis\nMorris\nOllie\nTheodore\nWill\nDan\nIsaac\nSherman\nSidney\nThurman\nWilbur\nElmo\nEmmett\nGordon\nRudolph\nStanley\nDean\nEd\nFrancis\nLouie\nMarcus\nSammie\nAmos\nBuddy\nGilbert\nGrover\nHarley\nJackie\nMaurice\nMoses\nRoscoe\nTruman\nWilson\nBobbie\nBuford\nOwen\nPreston\nRex\nAustin\nBoyce\nEldon\nFranklin\nJake\nJay\nLowell\nOlen\nPerry\nPhillip\nAlonzo\nBruce\nElijah\nJasper\nMonroe\nRiley\nRoyce\nWinfred\nAlva\nArnold\nBenny\nBert\nDave\nDwight\nEdmond\nFrederick\nFreeman\nHollis\nJacob\nJeff\nJewel\nLeland\nPercy\nVan\nArther\nBoyd\nCleveland\nCornelius\nErvin\nFelix\nHoyt\nJulian\nNeil\nNoel\nPete\nPhilip\nTheo\nBurl\nColumbus\nDallas\nDelmar\nDennis\nDouglas\nElvin\nForrest\nJewell\nJulius\nLevi\nLoy\nNapoleon\nOtha\nRoger\nRoss\nTed\nTravis\nVance\nByron\nCarrol\nElvis\nFrankie\nHermon\nIsaiah\nIvan\nIvory\nKermit\nLarry\nLenard\nLonzo\nMillard\nMitchell\nMose\nNathan\nSteve\nVictor\nWaymon\nWilford\nBooker\nCarlos\nCarlton\nClayton\nDenver\nDuane\nElton\nHarrison\nHerschel\nJefferson\nJerome\nLynn\nMatthew\nNoble\nNolan\nRosevelt\nTherman\nWeldon\nWendell\nWilbert\nWiley\nArlie\nChristopher\nDee\nGlendon\nHouston\nManuel\nMark\nMckinley\nObie\nOmer\nOtto\nPat\nReuben\nRuben\nShelby\nVirgle\nAdrian\nAlex\nAlford\nAlvis\nBonnie\nClark\nCloyce\nDick\nEdsel\nEli\nEzekiel\nGearld\nIrvin\nIssac\nJoel\nKeith\nLamar\nLaurence\nNelson\nRodney\nRonald\nSammy\nSilas\nStephen\nTony\nVaughn\nWade\nWilton\nWinford\nAdolph\nAnderson\nAndy\nAnthony\nArtie\nAuther\nBarney\nBuster\nChris\nClarance\nClay\nDarrel\nDarrell\nDelmer\nDoris\nElmore\nElzie\nEwell\nFay\nFelton\nFredrick\nGus\nHarmon\nHosea\nJerald\nJess\nLavon\nLois\nLoren\nMary\nMiles\nMurphy\nNeal\nNoah\nOttis\nPeter\nRamon\nRayburn\nSterling\nVincent\nWalker\nWardell\nWilmer\nWindell\nAlexander\nAron\nAuthor\nBasil\nBernice\nBernie\nBetty\nCloyd\nColeman\nConley\nConrad\nCoolidge\nDewell\nDorris\nEdmund\nEldridge\nErnie\nEverette\nEvert\nEzell\nEzra\nFarrell\nGail\nHarrell\nHayden\nJarrell\nJethro\nJunious\nJunius\nKirby\nLaverne\nLawerence\nLemuel\nLuke\nMajor\nMerle\nMike\nMilford\nMorgan\nMuriel\nMurray\nNorris\nOcie\nOral\nOthel\nPatrick\nPhil\nRandolph\nRaymon\nRogers\nRubin\nSanford\nTeddy\nTerry\nUlysses\nWaldo\nWalton\nWinston\nJames\nWilliam\nJohn\nCharles\nRobert\nBilly\nGeorge\nWillie\nJoe\nThomas\nHarold\nRoy\nJack\nHenry\nPaul\nEdward\nRaymond\nFrank\nRichard\nEugene\nWalter\nClarence\nJoseph\nDonald\nCarl\nFloyd\nDavid\nKenneth\nEarl\nAlbert\nBobby\nFred\nRalph\nArthur\nCharlie\nBillie\nEddie\nClyde\nLee\nJessie\nCecil\nJimmie\nRay\nCalvin\nHoward\nHerman\nLouis\nBill\nJunior\nErnest\nVernon\nLeroy\nChester\nSamuel\nHerbert\nMelvin\nJohnnie\nJesse\nGerald\nHarry\nElmer\nDoyle\nCurtis\nMarvin\nLloyd\nGene\nAndrew\nLeon\nAlfred\nLeonard\nSam\nWayne\nNorman\nVirgil\nAlvin\nClifford\nLuther\nLoyd\nLawrence\nOscar\nEdgar\nHomer\nClifton\nJohnny\nLeo\nHarvey\nLester\nBennie\nClaude\nDon\nOtis\nTroy\nJerry\nJimmy\nJohnie\nMarion\nLewis\nWallace\nAllen\nRoosevelt\nBenjamin\nDale\nTommy\nWillard\nBen\nEdwin\nFreddie\nLonnie\nEarnest\nElbert\nJim\nNathaniel\nArchie\nHorace\nOliver\nDaniel\nGlen\nHubert\nIsaac\nRufus\nDewey\nGlenn\nIra\nTom\nAlton\nBurl\nMack\nCharley\nCleo\nCoy\nMilton\nRudolph\nThurman\nDelbert\nLeslie\nBob\nHershel\nMorris\nRex\nWilburn\nAustin\nCarroll\nGuy\nHugh\nRussell\nTommie\nTravis\nWillis\nDallas\nEverett\nRoland\nWarren\nWill\nFranklin\nJay\nLarry\nStanley\nSylvester\nWesley\nArnold\nBruce\nEllis\nGilbert\nJasper\nOlen\nTruman\nDouglas\nGrady\nGrover\nMartin\nMax\nOrville\nSammie\nSidney\nAubrey\nBobbie\nClaud\nElijah\nFrancis\nLenard\nMarshall\nMonroe\nNathan\nOdell\nAaron\nBoyd\nForrest\nGordon\nJewel\nLouie\nMaurice\nPerry\nVictor\nWilson\nAmos\nBernard\nErvin\nGarland\nJackie\nJake\nJoel\nMillard\nOdis\nRuben\nSherman\nBooker\nCarlos\nClinton\nDenver\nJacob\nLeland\nLowell\nOllie\nJulius\nUlysses\nWoodrow\nBenny\nBuford\nCleveland\nElton\nFay\nNoah\nWilbur\nAlvie\nBert\nByron\nDan\nDave\nDean\nElvin\nHarley\nIvan\nJess\nLoy\nNoble\nPercy\nPreston\nSteve\nTheodore\nVirgle\nWendell\nWiley\nAlva\nAlvis\nDarrell\nDennis\nFrankie\nLois\nLonzo\nManuel\nMarcus\nMatthew\nRoger\nRonald\nTed\nVan\nWilbert\nWinfred\nCornelius\nDelmar\nEd\nEldon\nEmmett\nHermon\nHoyt\nIsiah\nJewell\nKeith\nLindy\nNelson\nNolan\nPat\nPeter\nPhillip\nReuben\nRoyce\nSolomon\nTheo\nWinston\nAlonzo\nBarney\nBasil\nBuddy\nBuster\nClayton\nEdmond\nEdsel\nFletcher\nFrederick\nHollis\nIrvin\nJeff\nMckinley\nMose\nNeil\nNorris\nOtto\nPhilip\nRodney\nRoscoe\nRoss\nSammy\nAnthony\nArley\nDarrel\nDoyne\nElmo\nGlendon\nHarrison\nJerome\nLevi\nLynn\nMerle\nMoses\nNeal\nNoel\nOcie\nOdie\nOtha\nOwen\nPatrick\nRosevelt\nVance\nWaymon\nWilford\nAdolph\nAlex\nArtis\nDee\nFelix\nFelton\nFreeman\nJefferson\nJerald\nJudge\nJulian\nLaverne\nLindbergh\nLuke\nMajor\nMiles\nRayburn\nRaymon\nReginald\nRiley\nShelby\nSilas\nTalmadge\nTony\nWade\nWeldon\nAl\nAlford\nAlgie\nAllan\nAnderson\nAron\nArvel\nArvil\nCarlton\nCarrol\nCloyce\nColumbus\nDelmer\nDuane\nForest\nGearld\nHershell\nHouston\nHuston\nJoshua\nJunius\nLarence\nLemuel\nLindberg\nLoyce\nLucian\nMervin\nObie\nOpal\nOrvil\nOzell\nPete\nRuby\nSilvester\nStanford\nTimothy\nVerlon\nWinford\nAlexander\nArlie\nArlis\nArtie\nBerry\nBoyce\nBuddie\nClance\nClaudie\nClay\nCleatus\nCletus\nDalton\nDeward\nDewitt\nDoris\nEarly\nEldridge\nEli\nEmil\nEual\nHarlan\nHarmon\nHarrell\nHaskell\nHosea\nHuey\nIrving\nIsaiah\nIvory\nJeffery\nJon\nLavern\nLeeroy\nLex\nMalvin\nMark\nMary\nMorgan\nMurl\nNapoleon\nOlan\nOmer\nOrval\nOttis\nRandall\nRogers\nRosco\nRubin\nRudy\nShirley\nSterling\nVester\nVirginia\nWarner\nJames\nWilliam\nJohn\nRobert\nCharles\nBilly\nGeorge\nWillie\nThomas\nJoe\nJack\nHarold\nRoy\nEdward\nHenry\nBobby\nPaul\nEugene\nRaymond\nRichard\nWalter\nHerbert\nEarl\nDonald\nKenneth\nCarl\nDavid\nFrank\nFred\nRalph\nClarence\nAlbert\nRay\nBillie\nJoseph\nFloyd\nHoward\nSamuel\nArthur\nJessie\nJimmie\nJunior\nLee\nJesse\nCecil\nClyde\nHerman\nVernon\nBill\nCurtis\nErnest\nGerald\nLouis\nEddie\nLeroy\nMelvin\nCharlie\nAlvin\nCalvin\nMarvin\nAlfred\nChester\nHarry\nJohnny\nLloyd\nGene\nAndrew\nLuther\nWayne\nElmer\nJohnnie\nJerry\nLawrence\nLeon\nDoyle\nHarvey\nJimmy\nLeo\nLeonard\nHubert\nLoyd\nDon\nEarnest\nMarion\nTom\nTroy\nNorman\nHomer\nBenjamin\nHorace\nFreddie\nClifford\nJim\nVirgil\nWillis\nLewis\nTommy\nDale\nGlenn\nLester\nLonnie\nBennie\nElbert\nRoosevelt\nTheodore\nEdgar\nGlen\nMax\nAllen\nClifton\nDaniel\nSam\nMilton\nBob\nOscar\nBen\nEdwin\nJohnie\nNathaniel\nOtis\nWallace\nClaude\nRussell\nArchie\nEverett\nHugh\nWillard\nAlton\nGrady\nJewel\nMorris\nRufus\nGuy\nOdell\nPercy\nAubrey\nBobbie\nDelbert\nWill\nCharley\nMack\nWilburn\nCoy\nDan\nDewey\nOliver\nRex\nTommie\nFrancis\nIra\nJake\nJulius\nSidney\nStanley\nGordon\nHoover\nIsaac\nJackie\nMaurice\nPhillip\nRudolph\nWilbur\nAmos\nBernard\nBuddy\nGilbert\nMarshall\nMonroe\nOlen\nOwen\nPerry\nThurman\nWinfred\nArnold\nClaud\nCleo\nClinton\nDennis\nDouglas\nEllis\nHarley\nLeslie\nRoland\nSylvester\nBuford\nCarroll\nFranklin\nGrover\nLeland\nOllie\nRoger\nAaron\nFrederick\nHerschel\nJay\nLarry\nLowell\nOdis\nOrville\nPhilip\nSherman\nTheodis\nWarren\nAnthony\nBooker\nBurl\nDean\nJoel\nMatthew\nRonald\nWendell\nWesley\nBoyd\nBruce\nCarlton\nDallas\nEd\nElton\nEmmett\nJasper\nLenard\nLouie\nRoyce\nTruman\nDarrell\nDelmer\nDwight\nElmo\nGarland\nHershel\nHollis\nHouston\nJeff\nLoy\nTony\nTravis\nVan\nWilbert\nArlie\nArlis\nBenny\nBoyce\nByron\nColumbus\nDave\nDelmar\nEldon\nErvin\nFreeman\nMillard\nMitchell\nNelson\nPat\nPatrick\nSteve\nTheo\nVictor\nWoodrow\nAlex\nArther\nBud\nDarrel\nDenver\nElvis\nFelix\nFrankie\nJewell\nMartin\nNoel\nPreston\nRaymon\nRuben\nShelby\nSterling\nAlva\nAlvis\nBert\nCleve\nEverette\nHarrison\nIvan\nJefferson\nKeith\nLeeroy\nLevi\nMilburn\nNolan\nOtto\nRussel\nSammie\nTeddy\nTerry\nAlexander\nAlonzo\nAndy\nArvil\nAugustus\nAustin\nCletis\nDavis\nDewitt\nDick\nElgin\nFay\nGlendon\nHal\nIrvin\nIvory\nJacob\nJerome\nJerrel\nJulian\nKennith\nLonzo\nMoses\nNeal\nNoble\nOmer\nUlysses\nWardell\nWilton\nBarney\nBryant\nCarlos\nClayton\nCleveland\nElmore\nElvin\nEzekiel\nEzell\nEzra\nFelton\nFinis\nFredrick\nGlynn\nHiram\nHosea\nJackson\nJuanita\nKarl\nLindsey\nLucious\nLuke\nMark\nNapoleon\nOris\nOttis\nReuben\nSammy\nTed\nVester\nWade\nWaymon\nWilber\nWilford\nWyatt\nArgie\nArvin\nBasil\nBuck\nBuster\nCarrol\nClell\nCurley\nDalton\nDanny\nDee\nDelton\nEarlie\nElijah\nElisha\nElzie\nEmanuel\nEvert\nEwell\nForrest\nGranville\nGus\nHardy\nHarrell\nJerald\nJohny\nLaurence\nLois\nLynn\nManuel\nMarlin\nMary\nMaxwell\nMckinley\nMichael\nObie\nOdie\nOlin\nOpal\nOrval\nOtha\nOtho\nPete\nRandolph\nRayburn\nRiley\nRosevelt\nSilas\nTalmage\nThad\nVance\nWindle\nJames\nWilliam\nJohn\nRobert\nCharles\nBilly\nGeorge\nWillie\nJoe\nBobby\nThomas\nHarold\nEdward\nHenry\nKenneth\nJack\nRoy\nDonald\nPaul\nHerbert\nRichard\nDavid\nJoseph\nWalter\nEugene\nRaymond\nCarl\nClarence\nAlbert\nEarl\nBillie\nFrank\nFred\nLee\nArthur\nFloyd\nJimmie\nJessie\nHoward\nLeroy\nRalph\nHerman\nSamuel\nBill\nLouis\nMarvin\nErnest\nLeon\nVernon\nJunior\nEddie\nJesse\nCecil\nCurtis\nJohnnie\nJimmy\nMelvin\nCharlie\nGene\nLloyd\nAlvin\nRay\nChester\nJerry\nLawrence\nClyde\nGerald\nJohnny\nHarry\nAlfred\nElmer\nAndrew\nHomer\nTommy\nWayne\nEarnest\nDon\nHarvey\nLeonard\nLewis\nOscar\nBob\nEdgar\nFreddie\nLuther\nTroy\nCalvin\nLonnie\nMarion\nNorman\nHubert\nBennie\nClifford\nDale\nOtis\nDoyle\nJohnie\nLeo\nLester\nClaude\nMax\nVirgil\nClifton\nGlenn\nLoyd\nDaniel\nGarland\nGlen\nTom\nBobbie\nHorace\nWillard\nJim\nMilton\nSam\nAllen\nRoosevelt\nWillis\nBen\nNathaniel\nRonald\nStanley\nArchie\nEverett\nOdell\nBuddy\nFrancis\nHugh\nTheodore\nEdwin\nJackie\nOliver\nRufus\nRussell\nTommie\nGuy\nCoy\nDan\nMorris\nSherman\nGrady\nTravis\nBenjamin\nCharley\nDelbert\nElbert\nMack\nMaurice\nRex\nCarroll\nDewey\nGilbert\nIsaac\nJeff\nWesley\nWilburn\nArnold\nAubrey\nClaud\nAlex\nSidney\nSteve\nWallace\nWarren\nWill\nClinton\nIra\nJay\nRoyce\nBenny\nBernard\nFranklin\nHouston\nLeslie\nMartin\nRoger\nAlton\nDallas\nDouglas\nEmmett\nGrover\nLeland\nVictor\nWiley\nAlva\nDean\nEllis\nElvin\nGordon\nMarshall\nNoel\nOllie\nOwen\nSylvester\nThurman\nBooker\nBruce\nBuford\nBuster\nCarrol\nColumbus\nEd\nEldon\nErvin\nFreeman\nHarley\nHermon\nHershel\nJewel\nJulius\nLowell\nMonroe\nPerry\nReuben\nRoland\nRuben\nAlvie\nArlie\nAustin\nBoyd\nJackson\nMatthew\nOtha\nPat\nPatrick\nRoscoe\nRoss\nSammy\nTed\nWendell\nWilbur\nWoodrow\nAmos\nArther\nCleo\nDennis\nDwight\nFelix\nFrederick\nHoover\nHoyt\nJewell\nLevi\nLouie\nLoy\nMary\nNelson\nSammie\nTruman\nWinfred\nAaron\nAlonzo\nDave\nElton\nElvis\nLarry\nMose\nOlen\nOrville\nPercy\nRodney\nVan\nWinford\nAlexander\nAnthony\nBarney\nBurl\nByron\nDonnie\nDoris\nDuane\nElmo\nForrest\nHarrison\nHollis\nIrvin\nJerome\nJulian\nLenard\nOdis\nPete\nRosevelt\nRudolph\nRussel\nSilas\nTony\nArlis\nBoyce\nCarlos\nCleveland\nConrad\nConway\nDarrell\nDenver\nElijah\nHal\nHarmon\nJake\nJoel\nJohny\nLoren\nMckinley\nMerle\nMoses\nNapoleon\nNathan\nNeil\nNoah\nOtho\nPhilip\nPreston\nRoyal\nVerlon\nWeldon\nWilford\nWilton\nAl\nAnderson\nAndy\nBert\nBryan\nCarlton\nCarol\nChristopher\nClayton\nCletus\nDalton\nDanny\nDewitt\nEdd\nEldridge\nEmmitt\nEvert\nFay\nFletcher\nForest\nFrankie\nGary\nGearld\nGus\nHerschel\nJerrell\nJodie\nMarcus\nMark\nMaxwell\nMaynard\nMichael\nMillard\nNeal\nOmer\nRayburn\nRiley\nTeddy\nUlysses\nVirgle\nWade\nWard\nWilber\nWilbert\nWilson\nAbraham\nAlford\nAlvis\nBrooks\nBurnice\nCornelius\nDavie\nDavis\nElisha\nEwell\nFelton\nFreddy\nGlendon\nHaskell\nIvan\nJearl\nJess\nKeith\nKermit\nLavon\nLemuel\nLynn\nMathew\nMervin\nMike\nMurl\nNolan\nOttis\nPeter\nRandolph\nRondal\nScott\nShelby\nShirley\nStephen\nTerry\nTheodis\nVance\nVincent\nVon\nWarner\nWaymon\nWinferd\nWinston\nJames\nWilliam\nJohn\nRobert\nBilly\nCharles\nBobby\nGeorge\nWillie\nHarold\nJoe\nThomas\nDonald\nKenneth\nHenry\nEdward\nJack\nRoy\nPaul\nRichard\nCarl\nDavid\nJoseph\nEarl\nWalter\nRaymond\nBillie\nClarence\nEugene\nJimmie\nAlbert\nArthur\nHoward\nRay\nFrank\nLee\nFloyd\nJimmy\nLeon\nJerry\nBill\nRalph\nLeroy\nFred\nJunior\nJohnnie\nEddie\nLouis\nWayne\nHerbert\nJesse\nHerman\nLawrence\nSamuel\nJessie\nCecil\nClyde\nVernon\nCharlie\nMarvin\nCurtis\nGerald\nErnest\nGene\nJohnny\nHarry\nElmer\nAlfred\nBob\nAlvin\nCalvin\nMarion\nMelvin\nLloyd\nOscar\nAndrew\nHomer\nChester\nDon\nLeonard\nGlen\nBennie\nBobbie\nLuther\nEarnest\nLewis\nDoyle\nLeo\nOtis\nHarvey\nTroy\nHubert\nLonnie\nTommy\nVirgil\nFreddie\nEdgar\nHorace\nNorman\nJackie\nAllen\nJohnie\nLester\nDaniel\nRoosevelt\nElbert\nLoyd\nSam\nClaude\nClifton\nDelbert\nMilton\nLarry\nArchie\nEdwin\nStanley\nDale\nGlenn\nJim\nOliver\nDan\nBen\nClifford\nEverett\nMax\nRufus\nSylvester\nTom\nWillard\nCharley\nWallace\nWillis\nAmos\nCarroll\nWarren\nWesley\nMaurice\nOdell\nTheodore\nGordon\nGuy\nRonald\nArnold\nHugh\nMorris\nNathaniel\nTommie\nBuddy\nDarrell\nEllis\nOrville\nSidney\nVan\nAubrey\nCleo\nDouglas\nHershel\nLeslie\nRoger\nClinton\nEmmett\nGarland\nTravis\nWilburn\nAaron\nDewey\nIra\nRoland\nRussell\nClaud\nCoy\nJewel\nRex\nDennis\nGilbert\nMack\nOllie\nRudolph\nSherman\nVictor\nWill\nWinfred\nAlton\nBenjamin\nBruce\nForrest\nFranklin\nGrady\nLowell\nPhilip\nBenny\nBooker\nJulius\nPete\nPhillip\nRoscoe\nRoss\nSammie\nSammy\nErvin\nLeland\nMarshall\nMartin\nMonroe\nOdis\nPerry\nTruman\nWilbert\nWilbur\nAlonzo\nBoyce\nCleveland\nColumbus\nElvin\nFrankie\nGrover\nHarley\nHollis\nIrvin\nIsaac\nNathan\nNelson\nOwen\nPatrick\nPreston\nThurman\nBuster\nCarrol\nDean\nElvis\nFelix\nFrancis\nHermon\nJackson\nNoble\nTerry\nAlex\nArlie\nAustin\nBarney\nBernard\nBoyd\nBurl\nCarlton\nDallas\nEldon\nIvory\nJeff\nJoel\nLenard\nLevi\nLoy\nLynn\nNoel\nParnell\nRoyce\nRuben\nWinston\nClint\nDoris\nDuane\nDwight\nHouston\nJay\nKeith\nMichael\nOtto\nPat\nPercy\nAnthony\nBuford\nCarol\nClayton\nCornelius\nFletcher\nFrederick\nJasper\nJess\nJulian\nLouie\nMatthew\nMillard\nNeal\nOtha\nReuben\nRodney\nSterling\nTeddy\nVirgle\nWendell\nWinford\nAdolph\nAndy\nArvil\nBryan\nClaudie\nCleophus\nCurlee\nDoyne\nEd\nEdd\nElmo\nElton\nHarlan\nHoover\nHuey\nIvan\nJake\nJeremiah\nJerome\nMajor\nMoses\nNeil\nNolan\nOcie\nOlen\nOren\nRiley\nSolomon\nUlysses\nWiley\nWilford\nWilmer\nWilson\nAdell\nAlford\nArther\nArtie\nAuthor\nBernie\nBert\nBonnie\nConnie\nDenver\nDewitt\nDorman\nEzell\nFay\nFoster\nFredrick\nFreeman\nHarl\nHarlon\nHarrison\nJewell\nKirby\nLeamon\nMalvin\nManuel\nNoah\nPeter\nRaymon\nRogers\nStephen\nSteve\nTed\nWalker\nWilton\nWoodrow\nAl\nAlva\nAlvie\nBirl\nBrooks\nByron\nCarthel\nClay\nClois\nClovis\nDarrel\nDick\nDonnie\nDorsie\nDoyal\nEdmond\nElliott\nEuel\nEzra\nFinis\nForest\nGus\nHaskell\nHerschel\nHughie\nIsiah\nJacob\nJohny\nLeeroy\nLincoln\nLonzo\nLorenzo\nLuke\nMalcolm\nMarlin\nMose\nNolen\nNorris\nObie\nOlee\nShelby\nSilas\nTheo\nTheodis\nTim\nTomie\nVance\nWeldon\nWilbern\nJames\nJohn\nCharles\nRobert\nWilliam\nBilly\nBobby\nGeorge\nJoe\nThomas\nWillie\nDonald\nKenneth\nHarold\nPaul\nJack\nRaymond\nDavid\nRoy\nHenry\nCarl\nEdward\nRichard\nWalter\nEugene\nJimmie\nFrank\nJoseph\nAlbert\nJimmy\nBillie\nClarence\nJerry\nEarl\nFred\nBill\nLee\nFloyd\nEddie\nHoward\nCurtis\nRalph\nRay\nArthur\nLeon\nHerbert\nJesse\nLeroy\nJohnnie\nMarvin\nDoyle\nJessie\nVernon\nJohnny\nLawrence\nSamuel\nDon\nGerald\nLouis\nAlvin\nEarnest\nHerman\nCalvin\nTommy\nElmer\nErnest\nCecil\nCharlie\nHarry\nLloyd\nWayne\nJunior\nOscar\nTroy\nBob\nGene\nNorman\nLeo\nClyde\nGlen\nHarvey\nMelvin\nMarion\nAlfred\nLeonard\nAndrew\nJim\nDale\nChester\nBennie\nHomer\nLewis\nHugh\nLuther\nAllen\nBobbie\nFreddie\nTom\nBen\nLester\nLoyd\nVirgil\nJackie\nJohnie\nLonnie\nMax\nOtis\nRoosevelt\nClifton\nEverett\nGlenn\nHubert\nClifford\nSam\nWesley\nElbert\nNathaniel\nRussell\nClaude\nEdwin\nLarry\nMilton\nBenjamin\nHorace\nMack\nTravis\nArchie\nBuddy\nFranklin\nSammie\nTommie\nWillis\nCharley\nIra\nOliver\nStanley\nThurman\nWillard\nAlton\nOdis\nSylvester\nWallace\nMorris\nCarroll\nDean\nEdgar\nAmos\nBernard\nDouglas\nGordon\nLowell\nWilburn\nBurl\nDelbert\nGrover\nGuy\nMartin\nRonald\nTed\nDewey\nGilbert\nMonroe\nSidney\nTheodore\nDan\nWarren\nAaron\nClaud\nClayton\nDarrell\nHarley\nPerry\nAubrey\nHershel\nLenard\nMaurice\nRoger\nRufus\nTeddy\nWill\nBenny\nBooker\nBoyce\nClinton\nColumbus\nCoy\nDaniel\nDonnie\nDwight\nIsaac\nJewel\nNathan\nPercy\nRoland\nArnold\nBoyd\nBruce\nCarrol\nCleo\nDallas\nEmmett\nFrancis\nGarland\nJeff\nLeland\nOllie\nOrville\nPat\nRuben\nSammy\nVictor\nCleveland\nEd\nIsiah\nJake\nJoel\nJulius\nLeslie\nNoel\nSteve\nWilbert\nAlex\nArlis\nArther\nDennis\nFrederick\nGary\nHarrison\nHerschel\nIrvin\nJay\nMarshall\nOdell\nOwen\nPatrick\nPhillip\nPreston\nRoscoe\nTruman\nWendell\nWinfred\nBarney\nBonnie\nBuford\nDalton\nDarrel\nFrankie\nGrady\nHollis\nLouie\nMary\nPete\nShirley\nWiley\nAustin\nMoses\nOtha\nRex\nRoyce\nSherman\nSilas\nTheodis\nTony\nUlysses\nWilbur\nAl\nBert\nCarlton\nCarol\nDanny\nDave\nElton\nElvin\nElvis\nHal\nHarris\nHouston\nJasper\nJewell\nOttis\nPorter\nRudolph\nSimon\nSterling\nVan\nWalker\nWaymon\nWinford\nArvil\nCarlos\nCornelius\nEdd\nEllis\nErvin\nHermon\nIvory\nJackson\nJacob\nJess\nKennith\nLevi\nLynn\nMalcolm\nMatthew\nNeal\nOlen\nOmer\nRoss\nWade\nAlonzo\nAlva\nAlvie\nAlvis\nAndy\nArley\nArlie\nArtis\nBuster\nCletis\nClovis\nDonal\nDudley\nEdmond\nEldon\nElisha\nEmmitt\nFinis\nForest\nFredrick\nJerome\nKarl\nKelly\nLonzo\nLoy\nLuke\nMajor\nMarlin\nMckinley\nMike\nMillard\nNoah\nOdie\nPhilip\nRiley\nRogers\nRosevelt\nShelby\nTerry\nTheo\nTimothy\nWinston\nAbraham\nAdron\nAlexander\nArdell\nArlin\nArvel\nBeryl\nByron\nChris\nClaudie\nCletus\nCloyce\nConway\nDick\nDorsey\nDwain\nEdsel\nElmore\nElzie\nEmanuel\nErnie\nEzra\nFarris\nFay\nFelix\nForrest\nFreddy\nHarlan\nHarmon\nIvan\nJerald\nJerrel\nJerrell\nJulian\nKay\nKeith\nKenith\nKermit\nLemuel\nLyle\nMarcus\nMurl\nMurry\nMyron\nNelson\nNorris\nOcie\nOran\nOrval\nOrvil\nOthell\nQuinton\nStephen\nWardell\nWilford\nWillam\nWilson\nWoodrow\nJames\nCharles\nRobert\nJohn\nWilliam\nBilly\nBobby\nGeorge\nWillie\nDonald\nJoe\nHarold\nThomas\nKenneth\nDavid\nEdward\nRichard\nPaul\nRoy\nCarl\nJack\nJimmy\nHenry\nJimmie\nJerry\nRaymond\nWalter\nFrank\nAlbert\nEarl\nEugene\nJoseph\nClarence\nEddie\nLee\nLeon\nArthur\nJunior\nFloyd\nRay\nJohnny\nBill\nHerbert\nDon\nFred\nLeroy\nCecil\nFranklin\nTommy\nMarvin\nMelvin\nSamuel\nGerald\nWayne\nBillie\nJessie\nRalph\nCurtis\nLouis\nHoward\nVernon\nCalvin\nBob\nHerman\nJohnnie\nCharlie\nClyde\nDoyle\nChester\nErnest\nGene\nNorman\nAlfred\nEarnest\nAlvin\nHarry\nLeonard\nAndrew\nLawrence\nGlen\nHarvey\nLloyd\nLuther\nJesse\nLonnie\nRoosevelt\nDale\nLarry\nSam\nJim\nMarion\nFreddie\nLewis\nVirgil\nElmer\nLeo\nBennie\nLester\nOtis\nRonald\nLoyd\nJackie\nJohnie\nEdwin\nOscar\nClaude\nHubert\nNathaniel\nAllen\nBobbie\nBen\nClifford\nEdgar\nEverett\nHomer\nIra\nMax\nSylvester\nClifton\nDaniel\nElbert\nGlenn\nSammie\nMilton\nCarroll\nOliver\nRussell\nTroy\nTom\nDelbert\nHorace\nWesley\nArchie\nDan\nSammy\nWillis\nCleo\nLowell\nBuddy\nCharley\nDewey\nGilbert\nHugh\nTommie\nWallace\nWillard\nAaron\nAubrey\nBenjamin\nBruce\nDouglas\nOdell\nPhillip\nRoland\nRufus\nStanley\nTravis\nAlton\nFrancis\nGarland\nGrady\nGuy\nMack\nMaurice\nRex\nBooker\nErvin\nHershel\nMorris\nPerry\nRoger\nSherman\nBenny\nDarrell\nEllis\nIsaac\nSidney\nTed\nThurman\nVictor\nAustin\nClinton\nDallas\nJoel\nJulius\nLeslie\nMarshall\nMartin\nFrankie\nOrville\nWilbert\nAmos\nArnold\nBuford\nDennis\nDenver\nJasper\nPat\nTruman\nVan\nAlonzo\nCleveland\nDonnie\nForrest\nJake\nJeff\nSteve\nWarren\nWendell\nWilburn\nBert\nBurl\nDwight\nEd\nEmmett\nGary\nGordon\nJewel\nOdis\nRoyce\nWilbur\nWinston\nBoyce\nClayton\nDave\nDean\nEldon\nElijah\nFelix\nGrover\nLevi\nNathan\nOllie\nPete\nPhilip\nPreston\nRosevelt\nRudolph\nTheodore\nTony\nVirgle\nWinfred\nAlex\nCoy\nDick\nHerschel\nHollis\nHuey\nJay\nLoy\nMichael\nNapoleon\nNelson\nOlen\nOwen\nRuben\nWeldon\nBarney\nBoyd\nCarrol\nClaud\nElton\nHarley\nHouston\nJefferson\nJess\nJulian\nKeith\nLenard\nLouie\nMalvin\nMarcus\nNoah\nNoel\nOneal\nPatrick\nSterling\nTeddy\nTerry\nTheodis\nUlysses\nWardell\nWiley\nWill\nAnthony\nArlis\nArtis\nBernard\nBetty\nCarlos\nClark\nColumbus\nFrederick\nGlendon\nHarrison\nIvan\nJewell\nLois\nLynn\nMark\nMatthew\nMiles\nRodney\nSilas\nAbraham\nCarlton\nCornelius\nElmo\nEzell\nGrant\nHal\nHosea\nKennith\nLeland\nMilburn\nMonroe\nNeil\nOrval\nPercy\nRamon\nTheo\nVance\nVester\nWilliams\nAl\nArlen\nArlie\nArther\nBuster\nCarthel\nClaudie\nClovis\nConrad\nElvin\nElvis\nEmanuel\nFrances\nFreeman\nHarlan\nIvory\nJerome\nJerrel\nLavern\nMalcolm\nMckinley\nMelton\nMose\nMoses\nOtto\nRandall\nReginald\nReuben\nRoscoe\nRoss\nWade\nWilson\nWinford\nWoodrow\nAdam\nAlford\nAlvis\nAndy\nArdell\nAudrey\nAuther\nAuthor\nBryan\nByron\nChristopher\nDalton\nDamon\nDanny\nDwain\nEarly\nErnie\nEverette\nFarrell\nGearld\nGloria\nGranville\nHardy\nHarvie\nHaskell\nHobert\nHoover\nHoy\nHuston\nIsaiah\nJackson\nJacob\nJeffery\nJerald\nJodie\nJose\nJoy\nKirby\nLamar\nLoren\nLoyal\nLuke\nLyle\nLyndell\nMac\nMarlin\nMerle\nMike\nMitchell\nMorgan\nNeal\nNoble\nNolan\nOather\nObie\nOtha\nOttis\nPorter\nRowland\nScottie\nShirley\nSimon\nTillman\nTimothy\nVerlon\nVernell\nZane\nJames\nCharles\nBilly\nJohn\nWilliam\nRobert\nBobby\nGeorge\nWillie\nThomas\nDonald\nJoe\nHarold\nRichard\nKenneth\nEdward\nRoy\nJimmy\nPaul\nJerry\nDavid\nCarl\nHenry\nFranklin\nJimmie\nJack\nFrank\nRaymond\nWalter\nEugene\nFloyd\nDon\nAlbert\nBill\nLee\nClarence\nEarl\nJoseph\nRalph\nJohnny\nFred\nRay\nGerald\nJessie\nLouis\nVernon\nArthur\nHoward\nBillie\nDoyle\nLeon\nEddie\nMarvin\nSamuel\nTommy\nHerbert\nLeroy\nBob\nCurtis\nJesse\nWayne\nGene\nHerman\nJohnnie\nMelvin\nLawrence\nCecil\nNorman\nCharlie\nClyde\nJim\nRoosevelt\nGlen\nLeonard\nAndrew\nDale\nHarry\nMarion\nAlfred\nChester\nFreddie\nAlvin\nElmer\nLewis\nErnest\nJackie\nCalvin\nJunior\nLuther\nLeo\nLloyd\nBennie\nRonald\nLarry\nLonnie\nClifford\nTroy\nDaniel\nDarrell\nTravis\nCarroll\nClifton\nGlenn\nLoyd\nSam\nHarvey\nArchie\nLester\nOscar\nBobbie\nDouglas\nEarnest\nHomer\nTom\nDan\nOtis\nVirgil\nDennis\nIra\nTommie\nWallace\nHorace\nJohnie\nRussell\nBen\nBenny\nStanley\nAllen\nArnold\nHubert\nNathaniel\nWillis\nCharley\nEdgar\nGuy\nMack\nMorris\nTeddy\nTheodore\nRoger\nBuddy\nEverett\nHugh\nMax\nWillard\nCoy\nElbert\nMaurice\nWarren\nWilburn\nClaude\nMilton\nSammie\nSylvester\nWesley\nHershel\nOliver\nClinton\nGarland\nGary\nLynn\nPhillip\nRufus\nSammy\nWill\nBruce\nEdwin\nEllis\nGilbert\nGordon\nSherman\nSidney\nBurl\nDewey\nFrancis\nJewel\nLeslie\nRex\nWendell\nAlton\nAmos\nBenjamin\nBooker\nCarlton\nClaud\nCleo\nDelbert\nDuane\nFelix\nJay\nMonroe\nOllie\nVan\nBoyce\nDean\nHuey\nLowell\nTed\nDenver\nElvin\nGrady\nKeith\nLoy\nMartin\nOdell\nOlen\nPercy\nRoyce\nTerry\nVictor\nWilbert\nDonnie\nDwight\nElmo\nErvin\nForrest\nFrankie\nFrederick\nIsaac\nOrville\nOwen\nPatrick\nRuben\nWeldon\nAubrey\nBernard\nBoyd\nByron\nCarlos\nKennith\nNathan\nOdis\nPeter\nPreston\nShelby\nThurman\nDoyne\nEd\nEmmett\nIvan\nJerald\nJoel\nLenard\nPat\nPete\nRoland\nRoscoe\nSteve\nWinford\nWinston\nArlie\nAustin\nCarol\nClaudie\nColumbus\nDelmer\nDerrell\nEldon\nFay\nFreddy\nFreeman\nGrover\nHarrison\nHouston\nJasper\nJeff\nJewell\nLouie\nNeal\nNorris\nSterling\nWilbur\nAnderson\nCarrol\nClayton\nDalton\nDwain\nElijah\nForest\nHollis\nIvory\nLeland\nLemuel\nMark\nMarshall\nMckinley\nNoel\nPerry\nPhilip\nTimothy\nTony\nWilson\nArlis\nBarney\nBonnie\nBuster\nCleveland\nDallas\nDamon\nDorsey\nElton\nEzell\nFarrell\nFredrick\nGrant\nHal\nHarley\nHoyt\nJulius\nLeeroy\nLon\nLyle\nManuel\nMary\nMoses\nNelson\nRodney\nRosevelt\nRudolph\nSanford\nUlysses\nVance\nWinfred\nAaron\nAbraham\nAlex\nAlonzo\nBert\nBurton\nClark\nCleophas\nCletus\nDanial\nDanny\nDarrel\nDelma\nDelton\nDick\nDoy\nDoyce\nEdmond\nEdsel\nEmil\nEzra\nGaylon\nGus\nHarlan\nJefferson\nLenord\nLeodis\nLevi\nLindell\nLorenzo\nMalcolm\nMatthew\nMilburn\nNeil\nNoble\nOcie\nOmer\nOrvil\nRayburn\nReginald\nRoss\nRubin\nSonny\nTruman\nWade\nWatson\nWoodrow\nAllie\nAlva\nArther\nBasil\nBernice\nBilley\nBuford\nBurley\nCal\nChris\nConrad\nDave\nDavie\nDewayne\nDorothy\nDwayne\nEarly\nEdmund\nEli\nFelton\nGlendon\nGranville\nHarrel\nHarvie\nHaskell\nHayden\nHurley\nIsaiah\nJackson\nJerome\nJonathan\nJustin\nKarl\nLeamon\nLoyce\nMajor\nMerle\nMitchell\nNapoleon\nNed\nNicholas\nNick\nNoah\nNolan\nObie\nOlin\nOren\nOtha\nOtto\nRandall\nReece\nRiley\nSimon\nStephen\nTalmadge\nTheo\nTheodis\nVerl\nVerlon\nVirgle\nWilford\nWilmer\nJames\nCharles\nBilly\nJohn\nRobert\nWilliam\nBobby\nDonald\nJoe\nGeorge\nHarold\nJimmy\nWillie\nThomas\nKenneth\nRichard\nJerry\nDavid\nCarl\nPaul\nRoy\nJack\nHenry\nJimmie\nWalter\nEugene\nEdward\nBill\nJohnny\nFrank\nAlbert\nLee\nRaymond\nDon\nFranklin\nCurtis\nFloyd\nClarence\nTommy\nEarl\nEddie\nJoseph\nWayne\nArthur\nFred\nLeroy\nRalph\nRay\nGerald\nBob\nJohnnie\nHoward\nLeon\nLouis\nErnest\nJackie\nHerman\nJim\nMarvin\nVernon\nBillie\nDoyle\nFreddie\nLawrence\nSamuel\nClyde\nHarry\nAlvin\nCharlie\nHerbert\nJessie\nMelvin\nGlen\nJesse\nLarry\nGene\nLloyd\nTroy\nAlfred\nCecil\nDale\nLeo\nRonald\nBennie\nElmer\nHomer\nChester\nJunior\nCalvin\nMax\nLuther\nEarnest\nLonnie\nNorman\nLewis\nLester\nRoosevelt\nDarrell\nLeonard\nAllen\nBenny\nDaniel\nClaude\nOtis\nSam\nMarion\nAndrew\nBobbie\nEverett\nJohnie\nLoyd\nTravis\nWarren\nHubert\nOscar\nElbert\nHarvey\nNathaniel\nWillard\nGlenn\nRussell\nVirgil\nWillis\nCarroll\nDouglas\nEdwin\nHorace\nTom\nDennis\nRoger\nTeddy\nArchie\nBuddy\nGarland\nMilton\nSylvester\nEdgar\nGary\nMorris\nWallace\nClifford\nRufus\nClifton\nDewey\nGuy\nHugh\nLeslie\nOdell\nRex\nBen\nBenjamin\nSammy\nTommie\nWesley\nBruce\nCoy\nGordon\nJay\nJewel\nStanley\nWendell\nBooker\nIra\nIsaac\nOliver\nPerry\nTed\nTheodore\nVictor\nDean\nHuey\nMaurice\nMonroe\nDan\nDoyne\nMarshall\nMartin\nNoel\nRoyce\nWilburn\nArnold\nDanny\nFreddy\nGrady\nJasper\nJewell\nMillard\nOdis\nPreston\nSammie\nSidney\nThurman\nAmos\nBoyce\nCharley\nEllis\nEmmett\nErvin\nJulius\nLeland\nLouie\nMack\nMike\nOrville\nOwen\nPhillip\nAlex\nAlton\nClinton\nDarrel\nDonnie\nFrancis\nJoel\nLowell\nTruman\nAlonzo\nArther\nBernard\nCleo\nDallas\nEldon\nElton\nFrankie\nHarley\nMary\nOlen\nPercy\nRonnie\nWeldon\nAaron\nAubrey\nBurl\nClaud\nDelbert\nHershel\nJerome\nNathan\nPat\nRaymon\nReuben\nRoscoe\nRudolph\nShelby\nSherman\nBarney\nBuford\nCarlton\nCarol\nDave\nDick\nEd\nForrest\nGilbert\nGrover\nMatthew\nVan\nWaymon\nWilbert\nWinfred\nAlva\nAustin\nClaudie\nClayton\nColumbus\nDwight\nElmo\nHarlan\nKeith\nLenard\nLevi\nLoy\nLynn\nMerle\nPete\nSterling\nTerry\nWilbur\nWill\nWoodrow\nAnthony\nBert\nBoyd\nDonal\nDorothy\nElvis\nHollis\nHosea\nHoyt\nKelly\nKennith\nLaverne\nOtha\nPatrick\nRodney\nRoland\nVance\nWade\nBetty\nBonnie\nByron\nClay\nCleveland\nDee\nDenver\nDoyce\nEdmond\nEmanuel\nFrederick\nHermon\nIvory\nJefferson\nJerrell\nLavern\nMarcus\nMaxie\nNeal\nOdie\nOllie\nPeter\nPorter\nRiley\nRosevelt\nRuben\nRussel\nSilas\nSteve\nTheo\nTony\nVaughn\nVerlon\nWiley\nWinston\nAlford\nAlvie\nAlvis\nAndy\nArlie\nCarrol\nCletis\nCloyd\nConnie\nCornelius\nDenzil\nDorsey\nElijah\nFarrell\nFay\nForest\nGaylon\nGearld\nGrant\nHal\nHarrell\nIsaiah\nIvan\nJeff\nLeamon\nMalcolm\nMarlin\nMckinley\nMichael\nMorgan\nMoses\nNoah\nOral\nOrvil\nRoss\nRuby\nStephen\nTheodis\nThurston\nVon\nWard\nWilton\nWindell\nAbe\nAlan\nAllan\nAlphonso\nAnderson\nAvery\nBurley\nCarlos\nClark\nCleophus\nClois\nCurley\nDelmar\nDelmer\nDelton\nDillard\nDonell\nDuane\nDwain\nEli\nEligah\nElisha\nElvin\nEverette\nFelton\nFletcher\nFredrick\nGeorgie\nHarvy\nHershell\nHouston\nJacob\nJake\nJune\nKirby\nLafayette\nLeeroy\nLemuel\nLogan\nLois\nLyle\nManuel\nMark\nMerrill\nMervin\nMickey\nNoble\nNolan\nPhilip\nQuinton\nRobbie\nRoyal\nRubin\nSimon\nSolomon\nSpencer\nTalmadge\nVester\nWilson\nWinford\nJames\nCharles\nBilly\nJohn\nRobert\nWilliam\nBobby\nDonald\nJoe\nGeorge\nJimmy\nWillie\nThomas\nJerry\nHarold\nRichard\nKenneth\nDavid\nPaul\nEdward\nHenry\nJimmie\nCarl\nRoy\nBill\nJohnny\nDon\nJack\nWalter\nRaymond\nEarl\nClarence\nEugene\nFrank\nAlbert\nLeroy\nFloyd\nWayne\nGerald\nArthur\nJoseph\nTommy\nRalph\nHoward\nCecil\nLee\nMarvin\nFred\nLouis\nBob\nEddie\nJohnnie\nRay\nClyde\nCharlie\nErnest\nJackie\nJesse\nLeon\nSamuel\nCurtis\nHerman\nJim\nJessie\nGene\nDoyle\nFranklin\nRonald\nBillie\nNorman\nMelvin\nVernon\nHerbert\nAlvin\nFreddie\nLarry\nDale\nHuey\nAlfred\nGlenn\nGlen\nHarvey\nLawrence\nEarnest\nHarry\nJunior\nBennie\nLeonard\nLloyd\nMax\nTroy\nCarroll\nElmer\nRoosevelt\nCalvin\nChester\nBuddy\nDarrell\nClifford\nMarion\nRussell\nDaniel\nOscar\nAndrew\nLoyd\nTravis\nClaude\nSam\nVirgil\nWallace\nLewis\nHubert\nLester\nLonnie\nLuther\nHorace\nTommie\nAllen\nLeo\nSammy\nTom\nDan\nOdell\nRoger\nStanley\nWesley\nEdgar\nElbert\nGary\nOtis\nSidney\nBenny\nDelbert\nEdwin\nHomer\nBenjamin\nNathaniel\nArchie\nBen\nDouglas\nMilton\nDonnie\nEverett\nHugh\nJohnie\nMorris\nWillard\nSylvester\nBruce\nCoy\nDennis\nLowell\nMack\nPhillip\nBobbie\nCleo\nClifton\nGuy\nOliver\nWillis\nPerry\nRoland\nDarrel\nIsaac\nOwen\nPat\nRex\nSherman\nWarren\nArnold\nDanny\nDewey\nEllis\nFreddy\nIra\nKeith\nVan\nWinfred\nAlton\nMaurice\nRufus\nTheodore\nThurman\nDean\nGordon\nJay\nJewell\nMartin\nSammie\nTeddy\nCleveland\nGrady\nHershel\nAubrey\nClinton\nEldon\nEmmett\nGarland\nGilbert\nJoel\nJulius\nTed\nTerry\nWilburn\nBoyce\nCarlton\nJewel\nMarshall\nNoel\nPercy\nPreston\nRonnie\nDwight\nFrancis\nJasper\nLeslie\nLoy\nLynn\nMichael\nMonroe\nNathan\nOdis\nOrville\nRoyce\nAaron\nCarlos\nCharley\nDallas\nDoyne\nDuane\nGrover\nHoyt\nIvan\nMarcus\nPhilip\nShirley\nWade\nWendell\nAlvis\nBernard\nByron\nDelmar\nElvin\nErvin\nForrest\nGaylon\nIvory\nLeland\nLevi\nMitchell\nNapoleon\nPatrick\nRuben\nSteve\nTony\nWill\nBurl\nDwayne\nFelix\nFredrick\nJerome\nMatthew\nMillard\nRandall\nRoss\nSilas\nStephen\nVictor\nWilbur\nWiley\nAmos\nBarney\nBetty\nCarrol\nClaudie\nClayton\nDave\nDewayne\nDonal\nEdmond\nFrederick\nHarley\nHenderson\nHermon\nHollis\nJeff\nJess\nJulian\nKennith\nKermit\nLenard\nLonzo\nLouie\nNeal\nNelson\nNorris\nRodney\nTheo\nUlysses\nAlonzo\nAnthony\nArlis\nAustin\nBert\nCarol\nCarrell\nClaud\nDenver\nEd\nElton\nFarrell\nFay\nHerschel\nKarl\nLoren\nLyle\nMike\nOlen\nOllie\nRayburn\nRogers\nShelby\nSonny\nTaylor\nTruman\nVester\nWaymon\nWeldon\nWilson\nWinford\nAdam\nAdell\nArther\nArtie\nArtis\nAutry\nBooker\nBud\nBuford\nColumbus\nConnie\nConrad\nEdsel\nEmery\nEvert\nFarris\nFrankie\nGarry\nJacky\nJake\nJefferson\nJerrel\nJon\nLeandrew\nLeeroy\nMalvin\nMark\nMarlin\nMary\nMaxie\nMoses\nOtha\nPeter\nRandolph\nRaymon\nRiley\nRoscoe\nRuby\nTheodis\nTimothy\nWinston\nAcie\nAlex\nAlford\nBrooks\nBurley\nCleophus\nDewell\nDewitt\nElijah\nEnoch\nEzell\nFerrell\nFletcher\nForest\nGale\nGearld\nGlynn\nHarris\nHaskell\nHosea\nHouston\nHuston\nJacob\nJonathan\nLacy\nLamar\nLawerence\nLindsey\nMalcolm\nManuel\nMelton\nMilford\nMose\nNoah\nNoble\nNolan\nOthel\nOttis\nReuben\nSanford\nSterling\nVance\nVerlin\nWilbert\nWilford\nWoodrow\nJames\nCharles\nJohn\nBilly\nRobert\nWilliam\nBobby\nDonald\nJoe\nJimmy\nJerry\nGeorge\nWillie\nThomas\nHarold\nDavid\nRoy\nKenneth\nRichard\nCarl\nJimmie\nPaul\nHenry\nEdward\nTommy\nRaymond\nJack\nWalter\nJohnny\nJoseph\nAlbert\nDon\nFrank\nEugene\nBill\nEarl\nLee\nLeroy\nGerald\nFred\nLeon\nEddie\nMarvin\nClarence\nRay\nWayne\nFranklin\nHoward\nCurtis\nJesse\nFreddie\nRalph\nArthur\nLouis\nHerman\nJessie\nRonald\nSamuel\nJackie\nVernon\nDoyle\nErnest\nJohnnie\nCharlie\nClyde\nFloyd\nBillie\nMelvin\nCecil\nLarry\nBob\nGene\nAlvin\nAlfred\nTroy\nDale\nCalvin\nGary\nGlen\nLeonard\nLloyd\nAndrew\nElmer\nNorman\nBennie\nHerbert\nJim\nLewis\nEarnest\nHarry\nJunior\nLawrence\nChester\nHarvey\nLonnie\nSam\nLester\nRoger\nTravis\nBenny\nDaniel\nMarion\nWillard\nDonnie\nRoosevelt\nRussell\nHomer\nLeo\nLuther\nOscar\nAllen\nNathaniel\nHugh\nMax\nVirgil\nWillis\nClaude\nDelbert\nLoyd\nTom\nBobbie\nElbert\nGlenn\nClifford\nDarrell\nOtis\nArchie\nCarroll\nLowell\nDewey\nEverett\nJohnie\nWendell\nWesley\nBen\nDennis\nEdgar\nHorace\nTheodore\nWallace\nBuddy\nSammy\nDan\nSammie\nLeslie\nMorris\nRufus\nStanley\nSylvester\nTommie\nBenjamin\nHuey\nJoel\nPhillip\nSidney\nWarren\nEdwin\nFrankie\nGrady\nThurman\nClinton\nDouglas\nOrville\nRex\nRonnie\nSherman\nTerry\nAaron\nAlton\nBruce\nClifton\nCoy\nGilbert\nGrover\nHershel\nHubert\nIra\nMack\nMaurice\nMichael\nPerry\nGordon\nJeff\nVictor\nCharley\nDallas\nElton\nMartin\nMilton\nOdell\nPhilip\nWilburn\nAubrey\nBernard\nDanny\nFrederick\nGarland\nIsaac\nNoel\nOliver\nOwen\nPercy\nRoyce\nTed\nTeddy\nWilson\nAmos\nHarley\nJewel\nLouie\nNelson\nPatrick\nPreston\nRuben\nWilbur\nWill\nCarlton\nClaud\nClaudie\nCleo\nDave\nDewayne\nElvin\nEmmett\nErvin\nGuy\nLeland\nMarshall\nNathan\nPat\nShirley\nWaymon\nAustin\nBooker\nCarrol\nClayton\nColumbus\nDarrel\nDean\nDuane\nFelix\nFreddy\nJay\nJerome\nJon\nLenard\nMark\nOdis\nRoscoe\nSteve\nTheodis\nWinfred\nAlva\nBarney\nClark\nEllis\nFrancis\nJulius\nKeith\nMoses\nOllie\nRoland\nShelby\nWilbert\nAlonzo\nAndy\nArnold\nBert\nBonnie\nBurl\nBuster\nCarol\nDalton\nDelmar\nDelmer\nDoyce\nEldon\nHerschel\nHollis\nJerald\nJoy\nLandon\nMatthew\nMike\nNeal\nNeil\nPeter\nRodney\nVan\nArther\nBuford\nCleveland\nConrad\nDenver\nElmo\nGlynn\nIrvin\nIvan\nJasper\nJeremiah\nJess\nJewell\nKelly\nKennith\nLevi\nLoy\nLuke\nMarcus\nMillard\nRaymon\nRosevelt\nUlysses\nWade\nWinston\nAlan\nArlis\nBoyce\nByron\nCornelius\nDick\nElvis\nEmanuel\nEulis\nEwell\nGaylon\nHosea\nIvory\nLamar\nLindell\nLonzo\nLynn\nMary\nMitchell\nNorris\nOlen\nSonny\nTony\nTruman\nWinford\nAlford\nAnthony\nArlie\nBoyd\nBuck\nBud\nCarlos\nClarance\nCloyce\nConnie\nDelton\nDonal\nDoyne\nDwight\nEd\nEdmond\nElijah\nEzra\nFletcher\nForest\nForrest\nGayle\nHardy\nHarmon\nHarrison\nJan\nJefferson\nLex\nLoren\nManuel\nMarlin\nNoble\nNolan\nOdie\nOrval\nOtha\nOttis\nOzell\nPrentice\nReuben\nRondal\nRosco\nRudolph\nSherrill\nSilas\nSolomon\nTheo\nWiley\nWilliams\nWylie\nJames\nCharles\nJohn\nRobert\nWilliam\nBilly\nBobby\nDonald\nJoe\nJerry\nJimmy\nGeorge\nWillie\nThomas\nKenneth\nHarold\nCarl\nDavid\nRichard\nJimmie\nPaul\nHenry\nRoy\nRaymond\nEdward\nTommy\nJohnny\nWalter\nJack\nBill\nDon\nAlbert\nGerald\nLarry\nEugene\nFred\nEarl\nJoseph\nFloyd\nEddie\nJackie\nFrank\nClarence\nLee\nLeroy\nHoward\nJohnnie\nJesse\nJessie\nRalph\nRonald\nWayne\nArthur\nMelvin\nMarvin\nBob\nCecil\nLeon\nLouis\nCurtis\nGene\nRay\nClyde\nHerman\nHerbert\nLawrence\nFranklin\nFreddie\nJim\nErnest\nCharlie\nAlvin\nVernon\nGlen\nDale\nDoyle\nChester\nSamuel\nLloyd\nNorman\nTroy\nEarnest\nAlfred\nHarvey\nLeonard\nDonnie\nMarion\nLonnie\nCalvin\nDaniel\nLester\nClifford\nGary\nHarry\nLeo\nBuddy\nHomer\nLuther\nAndrew\nBenny\nLewis\nAllen\nElmer\nGlenn\nJunior\nRoger\nTravis\nCarroll\nLoyd\nOscar\nOtis\nTommie\nBennie\nEdgar\nIra\nMilton\nBillie\nVirgil\nHubert\nPhillip\nSam\nJoel\nMax\nNathaniel\nRoosevelt\nEdwin\nElbert\nHorace\nTom\nClifton\nDarrell\nDelbert\nRonnie\nWarren\nBruce\nDouglas\nMorris\nSammy\nWallace\nDennis\nGarland\nJohnie\nMack\nMaurice\nPerry\nRex\nSylvester\nWillis\nDan\nHugh\nOdis\nRussell\nWesley\nClaude\nBobbie\nClinton\nEllis\nGuy\nOdell\nOliver\nSammie\nArchie\nBenjamin\nFrederick\nHershel\nMonroe\nPercy\nSidney\nTeddy\nTerry\nWillard\nAlton\nCleo\nDean\nDewey\nEverett\nLeslie\nMichael\nRufus\nTheodore\nCoy\nFreddy\nHuey\nIsaac\nRoyce\nSherman\nStanley\nTed\nThurman\nWendell\nGilbert\nLynn\nTony\nAubrey\nAustin\nCarlton\nDanny\nDarrel\nJerome\nLowell\nTheodis\nBen\nCarlos\nCharley\nColumbus\nErvin\nFrankie\nGordon\nJay\nMarshall\nOrville\nOwen\nVictor\nWilbert\nWill\nCarrol\nDallas\nDoyne\nGrady\nGrover\nKennith\nNoel\nShelby\nWinfred\nBooker\nDuane\nFrancis\nJulius\nLeland\nOtha\nPhilip\nPreston\nVester\nAnthony\nBurl\nByron\nCarol\nEldon\nElmo\nHarley\nHermon\nJon\nKeith\nRoland\nRuben\nVan\nWilford\nWoodrow\nAlva\nBernard\nDave\nDick\nElijah\nElvin\nIvan\nIvory\nJewel\nJulian\nLoy\nMark\nMartin\nNorris\nRiley\nRodney\nShirley\nSterling\nSteve\nAaron\nAlex\nAlonzo\nAmos\nArther\nBerry\nBoyce\nClark\nClayton\nDwight\nEmmett\nIsaiah\nJeff\nLonzo\nMaxie\nMillard\nPatrick\nRudolph\nWilburn\nWilson\nAlvis\nAnderson\nArvin\nBetty\nDelmer\nDenver\nDonal\nDoris\nElton\nEverette\nEzell\nForrest\nGaylon\nGeneral\nGlynn\nJacob\nJasper\nJewell\nLenard\nLevi\nMarcus\nMarlin\nMary\nNapoleon\nNeil\nNoah\nOllie\nPat\nRandall\nTillman\nTruman\nVirgle\nWaymon\nWindell\nAl\nAlan\nAllan\nArlis\nArnold\nBuster\nClarance\nCleveland\nDalton\nDarnell\nDenzil\nDoyce\nEd\nElroy\nElvis\nEmery\nHarmon\nHollis\nJess\nJoshua\nLavern\nMike\nNathan\nNolan\nPeter\nPorter\nRosevelt\nSonny\nTalmadge\nArlie\nBarney\nBenjiman\nBoby\nBoyd\nCarson\nClaud\nConrad\nDempsey\nDewayne\nDexter\nEdmond\nEulis\nFarrell\nFelix\nFelton\nFrances\nGail\nGarry\nGus\nHarlin\nHaskell\nHosea\nHosie\nHouston\nJake\nJerrell\nJoyce\nKarl\nKay\nLamar\nLoren\nLouie\nMac\nMatthew\nMelton\nMiles\nMitchell\nNelson\nOcie\nOlen\nOttis\nRandal\nReuben\nTimothy\nUlysses\nWeldon\nJames\nCharles\nJohn\nRobert\nWilliam\nBilly\nBobby\nDonald\nJerry\nJimmy\nJoe\nGeorge\nThomas\nWillie\nDavid\nKenneth\nHarold\nRichard\nPaul\nCarl\nJohnny\nTommy\nEdward\nRoy\nJack\nLarry\nHenry\nJimmie\nRaymond\nWalter\nDon\nGerald\nJoseph\nRonald\nLee\nEarl\nBill\nFrank\nEddie\nEugene\nWayne\nClarence\nFred\nArthur\nGene\nHoward\nFloyd\nRalph\nAlbert\nJackie\nJessie\nMarvin\nRay\nCurtis\nGary\nFreddie\nHerman\nLeon\nAlvin\nJesse\nDale\nLeroy\nLouis\nCecil\nClyde\nHerbert\nBob\nJim\nDoyle\nMelvin\nSamuel\nErnest\nFranklin\nJohnnie\nNorman\nHarvey\nVernon\nAlfred\nCalvin\nCharlie\nLloyd\nLester\nBenny\nHarry\nLewis\nTroy\nElmer\nGlen\nLawrence\nEarnest\nLeonard\nMarion\nCarroll\nDarrell\nLoyd\nRoger\nAndrew\nAllen\nClifford\nHomer\nOtis\nHubert\nOscar\nDouglas\nBen\nBennie\nBillie\nChester\nLonnie\nBuddy\nGlenn\nVirgil\nMax\nTerry\nDaniel\nJunior\nPhillip\nRoosevelt\nAlton\nBenjamin\nDonnie\nEdgar\nMorris\nBobbie\nLuther\nNathaniel\nSam\nStanley\nMichael\nTommie\nWillis\nDanny\nJoel\nRonnie\nSammy\nClifton\nCoy\nEllis\nLeo\nOdell\nRussell\nWallace\nDelbert\nDewey\nEdwin\nHorace\nClaude\nDan\nWesley\nElbert\nThurman\nAubrey\nMilton\nRex\nSammie\nSylvester\nTravis\nCarrol\nDennis\nGilbert\nHugh\nLeslie\nMack\nPerry\nShelby\nSherman\nVan\nBoyd\nErvin\nEverett\nFrankie\nGordon\nJohnie\nOdis\nWarren\nWillard\nArchie\nCleo\nDarrel\nIsaac\nSidney\nWilbur\nDean\nForrest\nHershel\nIra\nRufus\nTheodore\nBruce\nClinton\nElton\nGarland\nLeland\nLowell\nNathan\nRoyce\nWilbert\nWill\nDwight\nFreddy\nGrady\nKennith\nNoel\nTom\nTruman\nArnold\nBoyce\nClaud\nJewel\nOllie\nOwen\nRoland\nAlex\nAmos\nBooker\nDee\nFrancis\nFrederick\nGaylon\nGrover\nGuy\nJulius\nMarcus\nPat\nRodney\nSteve\nTeddy\nWilburn\nWinfred\nBarney\nBurl\nCharley\nDick\nKeith\nMaurice\nMike\nOliver\nOrville\nPatrick\nAndy\nAustin\nBasil\nClayton\nCornelius\nHarrison\nHollis\nJerome\nLynn\nManuel\nOlen\nRuben\nTheodis\nTony\nWoodrow\nAlonzo\nArther\nBernard\nCarlton\nClaudie\nConnie\nDallas\nEldon\nElijah\nEmmett\nFredrick\nHerschel\nJasper\nJeff\nLoy\nMartin\nMoses\nPhilip\nPreston\nRayburn\nReuben\nShirley\nAllan\nAnthony\nBarry\nBert\nCarol\nCurtiss\nDave\nDonal\nDuane\nEd\nEverette\nFletcher\nHarrell\nHermon\nJay\nKarl\nLouie\nMarshall\nMitchell\nPercy\nRoscoe\nRoss\nRubin\nTed\nVance\nVerlon\nWade\nWinford\nAlexander\nAlvie\nByron\nClay\nColumbus\nEzell\nGearld\nHoyt\nIvan\nJacob\nJon\nKermit\nLenard\nLevi\nMatthew\nNeal\nNoah\nNoble\nNorris\nOtha\nPorter\nRandall\nRiley\nRussel\nStephen\nVictor\nWaymon\nWiley\nWilson\nAaron\nAlva\nAlvis\nArvil\nBuford\nBuster\nChristopher\nCloyce\nDelmar\nDenver\nDoy\nElmo\nElvin\nEmanuel\nFarris\nFelix\nHal\nHarlan\nHarley\nHouston\nHuey\nIsaiah\nJake\nJefferson\nLamar\nLoren\nMark\nMarlin\nMickey\nRobbie\nRodger\nRudolph\nRudy\nSterling\nWeldon\nAl\nAlan\nArden\nArlie\nArlis\nBonnie\nCletus\nCleveland\nDalton\nDelmer\nDoyce\nElisha\nEvertt\nFelton\nGale\nGlynn\nHelen\nIvory\nJacky\nJerald\nJerrell\nJewell\nJulious\nKen\nKenny\nLaverne\nLeeroy\nLeodis\nLevester\nLois\nLucious\nMalcolm\nMalvin\nMary\nMerle\nMyron\nNolan\nOcie\nPete\nPeter\nRandy\nRuby\nSilas\nSonny\nToney\nUlysses\nVaughn\nVester\nWendell\nJames\nCharles\nJohn\nRobert\nWilliam\nBilly\nBobby\nJerry\nDonald\nJimmy\nWillie\nThomas\nJoe\nKenneth\nDavid\nGeorge\nRichard\nHarold\nRoy\nEdward\nPaul\nLarry\nTommy\nJimmie\nJohnny\nCarl\nHenry\nRaymond\nEddie\nDon\nAlbert\nRonald\nGerald\nBill\nWalter\nRalph\nFred\nJackie\nEarl\nJack\nMarvin\nJoseph\nArthur\nLee\nClarence\nWayne\nFrank\nHoward\nMelvin\nRay\nEugene\nFloyd\nHerman\nLeon\nSamuel\nGary\nGene\nLouis\nBob\nJohnnie\nLeroy\nJesse\nTroy\nCurtis\nAlvin\nClyde\nJim\nDoyle\nFreddie\nLawrence\nDale\nLonnie\nNorman\nCecil\nGlen\nHerbert\nBenny\nEarnest\nLloyd\nErnest\nRoger\nHarry\nAndrew\nAlfred\nLewis\nCalvin\nDarrell\nHarvey\nVernon\nDaniel\nElmer\nJessie\nCarroll\nCharlie\nFranklin\nMichael\nClifton\nMarion\nGlenn\nLeonard\nClifford\nOtis\nDanny\nAllen\nHubert\nLoyd\nLuther\nMorris\nBennie\nRussell\nBuddy\nTommie\nClaude\nDouglas\nRonnie\nChester\nNathaniel\nPhillip\nSylvester\nArchie\nBobbie\nDelbert\nRoosevelt\nLeo\nOscar\nTom\nWillis\nDonnie\nElbert\nHorace\nLowell\nSammy\nWallace\nDan\nDennis\nJunior\nRoyce\nTerry\nVirgil\nAlton\nBillie\nDewey\nEdgar\nGrady\nHomer\nLester\nMax\nOdell\nSammie\nWarren\nMilton\nSam\nOliver\nShelby\nStanley\nTeddy\nBen\nFreddy\nIra\nLeslie\nTravis\nAubrey\nBenjamin\nBruce\nCarrol\nGilbert\nHugh\nNathan\nTheodore\nDarrel\nIsaac\nLynn\nPhilip\nRodney\nSherman\nTed\nWesley\nWillard\nAaron\nDean\nEdwin\nHershel\nRoland\nTony\nFrankie\nGuy\nJulius\nMarshall\nArnold\nEllis\nGarland\nKeith\nNoel\nPerry\nSterling\nThurman\nBernard\nCarlton\nClinton\nCoy\nIvory\nJoel\nOrville\nSidney\nWilburn\nAmos\nCarlos\nCharley\nDwayne\nErvin\nEverett\nLouie\nOlen\nPercy\nSteve\nBurl\nClaud\nDwight\nFrancis\nGordon\nHollis\nJewel\nJon\nMack\nPatrick\nRosevelt\nRoss\nRufus\nTheodis\nTimothy\nVictor\nWendell\nEldon\nJay\nLeland\nNelson\nRex\nWilbur\nBert\nBoyce\nBoyd\nDallas\nDave\nElijah\nElton\nElvis\nHarley\nHuey\nJerald\nJohnie\nLenard\nManuel\nMartin\nMaurice\nNapoleon\nPreston\nWaymon\nWill\nCleo\nEmmett\nFelix\nGearld\nGrover\nIsiah\nJasper\nJerome\nKennith\nNeil\nPat\nPhil\nRandall\nStephen\nAlan\nAllan\nAlonzo\nAnthony\nArlis\nClayton\nCleophus\nCleveland\nDewayne\nForrest\nFrederick\nIrvin\nIvan\nJacky\nJulian\nKarl\nMickey\nMike\nMillard\nMitchell\nNeal\nOllie\nOwen\nWilson\nWinford\nAlex\nAlvie\nArtis\nBarry\nBuford\nClaudie\nEd\nElvin\nJeff\nJoshua\nKing\nLamar\nLavon\nLonzo\nMary\nNoah\nNorris\nOdis\nPeter\nRaymon\nUlysses\nWilbert\nWiley\nWinfred\nAlva\nAnderson\nAustin\nBarney\nBooker\nClark\nColumbus\nDick\nDonal\nDoris\nDuane\nFletcher\nGrant\nHal\nHarris\nHermon\nHosea\nHoyt\nJake\nJewell\nLaurence\nLevi\nLoren\nLoy\nMark\nMatthew\nMonroe\nOtha\nPete\nRandolph\nRiley\nSilas\nTruman\nWade\nAdell\nAl\nArlie\nArlin\nArther\nArvel\nAutry\nBetty\nByron\nConnie\nCornell\nDannie\nDavis\nDelmer\nDelton\nDickie\nDoy\nFarrell\nGale\nGaylon\nHarrison\nHayward\nHouston\nHuston\nJerrell\nMarlin\nMaxie\nMiles\nObie\nRoscoe\nShirley\nTalmadge\nTheo\nTyrone\nVerlin\nJames\nCharles\nJohn\nRobert\nWilliam\nBilly\nJerry\nBobby\nDonald\nJimmy\nThomas\nJoe\nGeorge\nDavid\nWillie\nRichard\nHarold\nKenneth\nLarry\nPaul\nRoy\nJohnny\nCarl\nEdward\nTommy\nHenry\nJimmie\nDon\nRaymond\nWalter\nGerald\nJack\nGary\nRonald\nJoseph\nEddie\nFrank\nBill\nEarl\nFloyd\nCurtis\nLee\nWayne\nJesse\nLeon\nWendell\nAlbert\nLouis\nHoward\nEugene\nClarence\nArthur\nFred\nMelvin\nJackie\nJim\nFreddie\nErnest\nRay\nRalph\nSamuel\nClyde\nDoyle\nBob\nGene\nDale\nFranklin\nLeroy\nCharlie\nLawrence\nMarvin\nAlvin\nJohnnie\nDanny\nChester\nCecil\nCalvin\nHarvey\nJessie\nLeonard\nLonnie\nMichael\nHarry\nEarnest\nTroy\nGlen\nLuther\nMarion\nNorman\nDaniel\nHerbert\nLewis\nLloyd\nBennie\nHerman\nDarrell\nElmer\nAndrew\nRussell\nVernon\nJunior\nPhillip\nDonnie\nMorris\nRoosevelt\nAlfred\nCarroll\nRoger\nClifton\nGlenn\nEdwin\nBenny\nLester\nMilton\nNathaniel\nRonnie\nLeo\nHubert\nAllen\nBillie\nClaude\nMax\nTerry\nArchie\nClifford\nDennis\nMack\nBen\nOscar\nSammy\nTravis\nRex\nWesley\nHomer\nLoyd\nOtis\nBuddy\nStanley\nSylvester\nWallace\nWillard\nWillis\nBenjamin\nGarland\nTom\nTommie\nArnold\nBruce\nDouglas\nFreddy\nOliver\nVirgil\nAlton\nElbert\nLeslie\nLowell\nLynn\nSam\nTony\nCharley\nEverett\nGordon\nHershel\nOdis\nDelbert\nFrankie\nHorace\nMarshall\nRoyce\nSherman\nCarrol\nDan\nEdgar\nHugh\nKennith\nMaurice\nPerry\nPhilip\nWarren\nJohnie\nLeland\nBobbie\nCoy\nJay\nSammie\nDewey\nIra\nShelby\nStephen\nTed\nWoodrow\nBurl\nHarley\nOdell\nOllie\nRufus\nSteve\nBooker\nDean\nElvis\nGuy\nPatrick\nRodney\nTheodore\nCleo\nClinton\nFrancis\nMartin\nMike\nNoel\nRoland\nAubrey\nCarlton\nClaud\nEllis\nErvin\nGrady\nJoel\nSonny\nTeddy\nWilbur\nWilburn\nWinston\nAaron\nAlex\nAlonzo\nAmos\nAnthony\nBoyce\nCleveland\nDarrel\nDave\nGilbert\nJerome\nJewel\nJon\nKeith\nNathan\nPreston\nRayburn\nRoscoe\nShirley\nTimothy\nWilson\nWinfred\nAustin\nElton\nElvin\nGrover\nIvory\nJulius\nLouie\nManuel\nPercy\nPete\nTheodis\nTyrone\nVan\nWindell\nCarol\nClayton\nDallas\nDewayne\nHermon\nJeff\nJerald\nMarcus\nMary\nMickey\nNelson\nOwen\nPat\nRoss\nSidney\nVictor\nWiley\nAlvis\nArther\nCarlos\nDenver\nDonny\nDwain\nEldon\nEmmett\nGale\nIsaac\nJacky\nLenard\nMajor\nMark\nMitchell\nNolan\nOrville\nSterling\nAndy\nArtis\nColumbus\nDewitt\nDwight\nEd\nFinis\nGearld\nHoyt\nHuey\nLevi\nMac\nMonroe\nOlen\nReuben\nTillman\nTruman\nWeldon\nWilbert\nWinford\nAlan\nAllan\nArlis\nBarney\nBernard\nBoyd\nBuford\nByron\nCletis\nDuane\nElzie\nEmery\nEmmitt\nEwell\nFelix\nFredrick\nGarry\nGaylon\nHardy\nHarlan\nHouston\nIrvin\nIsaiah\nIvan\nJacob\nJan\nJess\nJewell\nJulian\nLemuel\nLonzo\nLoren\nMicheal\nOcie\nOttis\nRobbie\nRudolph\nThurman\nVance\nVirgle\nWade\nWilkie\nAlvie\nBernie\nBert\nBonnie\nBrian\nBud\nClois\nConnie\nDalton\nDannie\nDarwin\nDearl\nDee\nDelmar\nDoyne\nEdmond\nElmo\nEric\nEverette\nEzell\nFerrell\nForrest\nFrederick\nFreeman\nGlynn\nHarlon\nJarrell\nKelly\nKenny\nLanny\nLeotis\nLon\nLoy\nLyle\nLyndell\nMalcolm\nMatthew\nMose\nMyron\nOmer\nRandy\nRuben\nScott\nSearcy\nSolomon\nSteven\nTerrell\nThurston\nVester\nWayman\nWaymon\nWilford\nWill\nWoody\nJames\nJohn\nCharles\nWilliam\nRobert\nJerry\nBilly\nBobby\nJimmy\nDonald\nThomas\nLarry\nJoe\nDavid\nGeorge\nWillie\nRichard\nKenneth\nCarl\nRoy\nJohnny\nHarold\nTommy\nPaul\nHenry\nEdward\nRonald\nJimmie\nGary\nWalter\nJoseph\nRaymond\nCurtis\nDon\nFrank\nEarl\nEddie\nGerald\nAlbert\nBill\nJack\nArthur\nJackie\nFloyd\nLee\nLeon\nMelvin\nEugene\nGene\nClarence\nLouis\nWayne\nFred\nHoward\nJesse\nLonnie\nBob\nRalph\nJohnnie\nMarvin\nSamuel\nFreddie\nLawrence\nNorman\nRay\nDoyle\nJim\nCharlie\nHarvey\nCecil\nMichael\nDale\nJessie\nLeroy\nClyde\nFranklin\nCalvin\nCarroll\nEarnest\nErnest\nHerman\nDanny\nPhillip\nBennie\nLeonard\nRoger\nSammy\nVernon\nRonnie\nTroy\nWendell\nAlvin\nDennis\nHerbert\nAlfred\nLloyd\nLuther\nTom\nChester\nDarrell\nDonnie\nGlen\nHarry\nAndrew\nAllen\nElmer\nGlenn\nOtis\nTerry\nBenny\nHomer\nMarion\nOscar\nAlton\nClifford\nLeo\nLewis\nMorris\nDouglas\nElbert\nMilton\nRoosevelt\nRussell\nSam\nStanley\nTravis\nVirgil\nClifton\nJunior\nSherman\nArchie\nWillis\nDaniel\nLester\nLoyd\nBobbie\nSylvester\nBillie\nHubert\nNathaniel\nCoy\nEdwin\nTommie\nEverett\nFreddy\nSammie\nClaude\nDelbert\nLeslie\nLynn\nMax\nBenjamin\nHershel\nHugh\nTeddy\nGordon\nHorace\nMartin\nRex\nWarren\nClinton\nDan\nGarland\nJohnie\nMike\nTony\nBen\nBruce\nDean\nJoel\nMack\nMarshall\nWallace\nAubrey\nBuddy\nCharley\nFrankie\nRoyce\nTheodore\nEllis\nIsaac\nMaurice\nRufus\nThurman\nOdell\nOliver\nPerry\nSidney\nVan\nWinston\nIra\nPat\nPhilip\nShelby\nSteve\nWesley\nAnthony\nBoyce\nCarlton\nDarrel\nDewey\nElvin\nGrady\nGuy\nNathan\nRoland\nCleo\nEdgar\nElijah\nOdis\nRoscoe\nWilburn\nWilson\nAaron\nBoyd\nDewayne\nLowell\nNoel\nRodney\nTed\nWoodrow\nAlan\nCarrol\nColumbus\nFrancis\nGarry\nGrover\nLeland\nMarcus\nMarlin\nNeil\nOrville\nPreston\nRudolph\nStephen\nVictor\nWiley\nWillard\nCarlos\nDickie\nEd\nFrederick\nGearld\nHermon\nHollis\nIvory\nJay\nJewel\nJewell\nKeith\nLenard\nMitchell\nTruman\nWeldon\nWilbert\nWilbur\nArnold\nBernard\nDallas\nDoyne\nDuane\nFinis\nHarrell\nJake\nJasper\nKennith\nLanny\nMajor\nManuel\nMary\nRoss\nSanford\nTheodis\nWaymon\nWinfred\nAlex\nAmos\nClaud\nConnie\nDavis\nDenver\nDonny\nEmmett\nGale\nIrvin\nJacky\nJeff\nJulius\nLindell\nMark\nMelton\nMonroe\nMoses\nOllie\nPatrick\nPeter\nRandall\nReuben\nSpencer\nSterling\nSteven\nWindell\nBooker\nClayton\nDwayne\nDwight\nErvin\nFelix\nFredrick\nHarley\nHarvie\nHuey\nJackson\nJerome\nJon\nLouie\nLoy\nMatthew\nMillard\nNapoleon\nNelson\nNorris\nRayford\nRaymon\nRonny\nRuben\nTimothy\nUlysses\nAlexander\nAlonzo\nArlie\nArther\nClarance\nClark\nClovis\nDalton\nDonal\nEverette\nGus\nHarmon\nHerschel\nHouston\nJerald\nJerrel\nJerrell\nJonathan\nJulian\nMac\nMalvin\nMaxie\nMerle\nMickey\nOlen\nOwen\nShirley\nWinford\nAl\nAndy\nArvil\nBernie\nBerry\nBurl\nByron\nCarol\nCarter\nCletus\nConrad\nCornelius\nDave\nDelano\nDelmer\nDoris\nDwain\nEldon\nEli\nElisha\nEric\nForest\nForrest\nGaylon\nGilbert\nGlynn\nHal\nHarris\nIsaiah\nIvan\nJan\nKarl\nLeotis\nLincoln\nLyle\nLyndell\nMarlon\nMilford\nNeal\nPercy\nPete\nRandolph\nRandy\nScott\nTherman\nTim\nVester\nWardell\nWill\nJames\nCharles\nJohn\nRobert\nWilliam\nJerry\nBilly\nBobby\nJimmy\nLarry\nDonald\nDavid\nWillie\nThomas\nJoe\nGeorge\nRichard\nKenneth\nRoy\nJohnny\nPaul\nHarold\nTommy\nEdward\nRaymond\nCarl\nDouglas\nRonald\nGary\nHenry\nWalter\nJimmie\nDon\nGerald\nJoseph\nEddie\nLee\nBill\nRonnie\nAlbert\nFrank\nWayne\nEugene\nMelvin\nCurtis\nEarl\nHoward\nJackie\nFred\nJack\nGene\nMichael\nLouis\nLawrence\nArthur\nFloyd\nSamuel\nClarence\nJim\nLeon\nJessie\nRalph\nJesse\nLeroy\nFranklin\nCecil\nDanny\nLonnie\nMarvin\nClyde\nFreddie\nDennis\nSammy\nAlvin\nCharlie\nJohnnie\nLeonard\nLloyd\nAlfred\nErnest\nHarry\nPhillip\nRay\nHerman\nCalvin\nTroy\nBennie\nDoyle\nLewis\nNorman\nAllen\nBob\nRoger\nHerbert\nStanley\nCarroll\nVernon\nBenny\nDaniel\nSam\nClifford\nDarrell\nEarnest\nGlen\nTerry\nElmer\nLester\nRussell\nHarvey\nAndrew\nChester\nDale\nDonnie\nTommie\nHomer\nJunior\nOscar\nClifton\nLuther\nRoosevelt\nSteve\nBruce\nEverett\nGlenn\nElbert\nFreddy\nEdwin\nMarion\nMax\nSammie\nSylvester\nWendell\nBuddy\nClaude\nMilton\nNathaniel\nStephen\nVirgil\nWallace\nMack\nTom\nFrankie\nLeo\nMike\nOtis\nWarren\nAubrey\nBen\nBenjamin\nDan\nIsaac\nTravis\nWillard\nBillie\nGordon\nSherman\nHorace\nSidney\nOllie\nPatrick\nThurman\nDelbert\nEdgar\nHershel\nHugh\nLoyd\nShelby\nCarrol\nGrover\nMac\nMickey\nTheodore\nWinston\nArchie\nGarland\nJohnie\nNelson\nPhilip\nRex\nTony\nWesley\nWillis\nClinton\nEllis\nJay\nLowell\nLynn\nAaron\nAlton\nAnthony\nDwight\nHubert\nJoel\nLeslie\nOdell\nRodney\nSteven\nTeddy\nFredrick\nGrady\nMcarthur\nVictor\nBarry\nBobbie\nCarlos\nDarrel\nLouie\nMark\nMartin\nOliver\nPerry\nRoyce\nCharley\nCoy\nGuy\nIvory\nMaurice\nNathan\nOdis\nOrville\nPat\nRonny\nRufus\nTed\nVan\nAlan\nArnold\nCarlton\nFrederick\nGilbert\nJeff\nJerome\nJewel\nJulian\nRoland\nTheodis\nTruman\nWilbert\nWinfred\nWoodrow\nAndy\nBoyce\nCarol\nDewayne\nElijah\nEmmett\nGarry\nIra\nMarshall\nMatthew\nMorris\nOwen\nPercy\nSonny\nTimothy\nWilbur\nWilson\nAlex\nAmos\nBooker\nCleo\nDewey\nJacob\nJerald\nJon\nKennith\nReuben\nRuben\nWill\nAlford\nBernard\nBoyd\nClark\nCleveland\nConnie\nDelmar\nDelmer\nDick\nElton\nErvin\nGaylon\nHarley\nJulius\nKeith\nManuel\nRandall\nRoscoe\nWindell\nAllan\nClaud\nDuane\nEd\nElmo\nFinis\nHollis\nHouston\nJewell\nJoshua\nLanny\nMalvin\nNeal\nOlen\nPreston\nRoss\nSterling\nAlvis\nBurl\nCornelius\nDalton\nDickie\nDonny\nElvis\nEric\nHarrison\nIvan\nJasper\nJonathan\nLoy\nLyndell\nMaxie\nMicheal\nMonroe\nNoel\nPeter\nPhil\nRandy\nRodger\nTitus\nVerlon\nVester\nVincent\nWade\nWayman\nArther\nArvil\nAustin\nBert\nBuford\nByron\nCarter\nClaudie\nClayton\nColumbus\nDwayne\nEddy\nElvin\nEvans\nFelix\nFelton\nForrest\nHal\nJacky\nJerrell\nJess\nKen\nLeotis\nLevern\nMacarthur\nMajor\nMarcus\nMelton\nMose\nNicholas\nOneal\nOtha\nReginald\nRon\nSilas\nUlysses\nWardell\nWeldon\nWilburn\nAdrian\nAl\nAlexander\nAugustus\nBetty\nClearence\nCletus\nCloyce\nColeman\nDallas\nDannie\nDean\nDelton\nDenny\nDenver\nDoris\nDoyce\nEarly\nEmil\nFerrell\nFrancis\nFreeman\nGus\nHermon\nJake\nJeffrey\nJerrel\nKenny\nKermit\nLeland\nLoren\nMarlon\nMary\nMerle\nMiles\nMoses\nRobbie\nRosevelt\nRudolph\nTerrell\nTherman\nToney\nVerdell\nWaymon\nWelton\nJames\nCharles\nJohn\nRobert\nWilliam\nJerry\nBilly\nLarry\nJimmy\nBobby\nDavid\nThomas\nDonald\nRichard\nGeorge\nJoe\nWillie\nKenneth\nJohnny\nRoy\nPaul\nTommy\nHarold\nRonald\nCarl\nEdward\nGary\nHenry\nJimmie\nEddie\nRonnie\nRaymond\nJackie\nWalter\nJoseph\nDon\nDouglas\nMichael\nBill\nGerald\nAlbert\nDanny\nJim\nJack\nFrank\nEarl\nClarence\nJesse\nWayne\nEugene\nMelvin\nFred\nLee\nArthur\nRay\nFloyd\nHoward\nLeon\nLouis\nFreddie\nClyde\nCurtis\nDennis\nLonnie\nRoger\nRalph\nAlvin\nLawrence\nHerman\nGene\nCharlie\nDale\nBob\nJohnnie\nMarvin\nAlfred\nSamuel\nAndrew\nHarry\nAllen\nFranklin\nLeroy\nVernon\nCalvin\nCecil\nPhillip\nTroy\nEarnest\nSammy\nTerry\nBennie\nBenny\nChester\nOscar\nErnest\nLloyd\nNorman\nDoyle\nGlen\nGlenn\nHomer\nLewis\nHerbert\nJessie\nRoosevelt\nDaniel\nDarrell\nLeonard\nCarroll\nMilton\nClaude\nSteve\nJunior\nHarvey\nMarion\nDonnie\nLester\nLuther\nLeo\nClifford\nDwight\nElmer\nStanley\nMike\nNathaniel\nRussell\nOtis\nBruce\nClifton\nStephen\nVirgil\nElbert\nHorace\nLoyd\nMack\nPhilip\nSylvester\nWendell\nBillie\nLeslie\nRufus\nTom\nBenjamin\nEverett\nHubert\nSherman\nTony\nVictor\nJoel\nWallace\nDan\nFrankie\nHugh\nSam\nShelby\nTommie\nAaron\nAnthony\nArchie\nAubrey\nDelbert\nDewey\nTravis\nWarren\nMax\nEdgar\nOliver\nWillis\nArnold\nBuddy\nOdell\nWillard\nWinston\nBen\nPerry\nRonny\nTheodore\nWesley\nAlton\nCleo\nEdwin\nGarry\nMorris\nNathan\nPat\nDarrel\nFrancis\nFrederick\nGarland\nMartin\nRex\nSammie\nTed\nTeddy\nAmos\nClinton\nCoy\nFreddy\nJohnie\nMarshall\nRodney\nRoyce\nBobbie\nCharley\nEllis\nElvin\nGordon\nGrady\nIsaac\nJulius\nKeith\nOrville\nSidney\nAlan\nCarrol\nHershel\nIra\nJerome\nMitchell\nRandall\nTheodis\nThurman\nCarlton\nDickie\nJay\nLynn\nMark\nOllie\nPatrick\nTimothy\nWilson\nBarry\nBurl\nDannie\nDean\nEmmett\nGilbert\nGuy\nMarcus\nNoel\nOwen\nUlysses\nWiley\nAlonzo\nBarney\nClaud\nDallas\nEldon\nElijah\nGaylon\nHarley\nJeff\nKenny\nLowell\nNeil\nNorris\nOdis\nOlen\nPercy\nWilbert\nWilbur\nWill\nWoodrow\nBernard\nBooker\nCornelius\nDonny\nErvin\nGerry\nJasper\nJerrell\nLoy\nMac\nMaurice\nNelson\nSteven\nVan\nWade\nWilburn\nAlexander\nArlie\nBrian\nElton\nElvis\nIvory\nJacky\nJon\nJulian\nLevi\nLonzo\nLoren\nMicheal\nOzell\nPreston\nReginald\nRoland\nRoscoe\nRosevelt\nRoss\nSterling\nTheo\nVincent\nAl\nAlphonso\nAndy\nChris\nConnie\nDoyne\nElisha\nFelix\nHarrison\nHermon\nHollis\nJerald\nJerrel\nKermit\nLeland\nLyle\nManuel\nMary\nMaxie\nMckinley\nMickey\nPete\nPhil\nRiley\nRuben\nTheotis\nTim\nAlex\nBert\nBoyd\nCarol\nClayton\nDamon\nDave\nDelmer\nDenny\nDewayne\nEddy\nElmo\nEmmitt\nErnie\nEvert\nEzell\nForrest\nFredrick\nJacob\nJewel\nJonathan\nKelly\nKen\nKennith\nLacy\nLavon\nLeeroy\nLouie\nLoyce\nMajor\nNeal\nNed\nNoah\nRandolph\nRayburn\nRicky\nRodger\nRudolph\nShirley\nTyree\nWilliams\nWinfred\nAbraham\nAdam\nAlford\nAllan\nAlva\nAlvis\nAustin\nBarbara\nBoyce\nBradley\nCarter\nChristopher\nClark\nCleveland\nColeman\nDillard\nDoyal\nDudley\nDwayne\nEarly\nEd\nFinis\nGlynn\nGus\nHarlon\nHuey\nJackson\nJake\nJewell\nJoyce\nKent\nKirby\nLenard\nLindell\nMalvin\nMarlin\nMatthew\nMcarthur\nMerle\nMiles\nMillard\nNolan\nOrval\nOtha\nPeter\nRudy\nSolomon\nSpencer\nWinford\nJames\nCharles\nJohn\nRobert\nWilliam\nJerry\nLarry\nBilly\nDavid\nJimmy\nThomas\nBobby\nDonald\nRichard\nGeorge\nWillie\nJohnny\nGary\nJoe\nKenneth\nRoy\nRonald\nPaul\nTommy\nHarold\nEdward\nHenry\nCarl\nDanny\nRaymond\nMichael\nRonnie\nWalter\nEddie\nDon\nJoseph\nFrank\nJimmie\nBill\nJack\nMelvin\nGerald\nClarence\nRoger\nAlbert\nEarl\nLee\nWayne\nFreddie\nHoward\nArthur\nCurtis\nRalph\nFred\nEugene\nHerman\nJohnnie\nFloyd\nSamuel\nDouglas\nJim\nLawrence\nLonnie\nJackie\nLeon\nLouis\nErnest\nJesse\nJessie\nLeroy\nVernon\nMarvin\nClyde\nRay\nCalvin\nCecil\nDaniel\nGene\nDennis\nEarnest\nTerry\nFranklin\nDonnie\nHarry\nSammy\nCharlie\nGlen\nLeonard\nNorman\nDoyle\nPhillip\nRussell\nAlvin\nHerbert\nLloyd\nOtis\nAlfred\nTroy\nBenny\nAllen\nAndrew\nDale\nStanley\nDarrell\nHarvey\nDwight\nBennie\nChester\nBob\nMack\nCarroll\nLuther\nMilton\nNathaniel\nSteve\nMike\nStephen\nGlenn\nLewis\nTom\nRoosevelt\nClifford\nTony\nVirgil\nArchie\nMarion\nFreddy\nGarry\nLeo\nSam\nDan\nJoel\nLeslie\nTommie\nBruce\nEdwin\nOscar\nSylvester\nGarland\nHorace\nSammie\nSherman\nTravis\nEverett\nPhilip\nWendell\nBen\nBuddy\nClifton\nHomer\nHubert\nLoyd\nClaude\nEdgar\nJohnie\nRodney\nWillard\nAnthony\nHugh\nLester\nLynn\nMorris\nWillis\nOdell\nRufus\nTeddy\nWesley\nBenjamin\nCoy\nDewey\nElbert\nElmer\nMartin\nOdis\nRoland\nHershel\nOliver\nRoyce\nVictor\nBillie\nGuy\nIra\nIsaac\nJunior\nMarshall\nMax\nRandall\nWarren\nWoodrow\nAlan\nCharley\nClinton\nEllis\nElton\nFrederick\nKenny\nNathan\nSteven\nTheodore\nVan\nAlton\nAubrey\nDelbert\nEmmett\nGordon\nGrover\nMaurice\nTed\nWallace\nAlex\nEddy\nMark\nMickey\nPat\nPerry\nSterling\nTheodis\nWill\nArnold\nDave\nFrankie\nNelson\nRandy\nRonny\nBarry\nBernard\nDean\nJon\nJulius\nLouie\nPatrick\nPercy\nRodger\nThurman\nByron\nCarrol\nColumbus\nDonny\nIvory\nJacob\nLowell\nMoses\nOllie\nOwen\nSidney\nWilburn\nAlexander\nBobbie\nBoyd\nCarlton\nClaud\nCleveland\nDewayne\nDick\nDickie\nElvin\nForrest\nFrancis\nGilbert\nHarley\nJacky\nJewell\nMac\nOrville\nRex\nRickey\nRicky\nRoss\nRubin\nShelby\nAaron\nBooker\nBoyce\nBurl\nCarlos\nChris\nDarrel\nFarrell\nIrvin\nJeff\nJefferson\nJerome\nJess\nJewel\nKennith\nMitchell\nNeal\nNoel\nOlen\nOtha\nOzell\nPeter\nUlysses\nWiley\nWilford\nAl\nAlonzo\nAmos\nBuford\nClayton\nCleo\nDannie\nEldon\nFletcher\nGaylon\nGrady\nJay\nJonathan\nKeith\nLevi\nLoy\nMajor\nPreston\nSonny\nTim\nTruman\nWaymon\nWinston\nAndy\nAugusta\nDallas\nDock\nDwayne\nElisha\nFredrick\nGearld\nHarlan\nIsiah\nIvan\nJerrell\nKarl\nKelly\nKen\nLenard\nMarlin\nMary\nMcarthur\nNolan\nNorris\nRoscoe\nWardell\nWeldon\nAustin\nAutry\nBerry\nBert\nBud\nBuster\nClark\nCleve\nDenny\nDoyne\nDwain\nEd\nEli\nElvis\nErvin\nEverette\nEzell\nFinis\nHal\nHerschel\nHouston\nJeffery\nJeffrey\nJerald\nJerrel\nLavon\nLeland\nLeodis\nLinda\nLindell\nLonzo\nLovell\nMalcolm\nMarcus\nMatthew\nMillard\nMose\nNick\nPhil\nQuinton\nReuben\nRudy\nSilas\nSolomon\nTheo\nTimothy\nVincent\nWade\nWilbert\nJames\nCharles\nRobert\nJohn\nWilliam\nLarry\nJerry\nBilly\nJimmy\nDavid\nDonald\nGary\nRichard\nBobby\nThomas\nWillie\nJohnny\nGeorge\nRonald\nJoe\nKenneth\nPaul\nRoy\nMichael\nHarold\nTommy\nEdward\nCarl\nDanny\nEddie\nHenry\nRonnie\nRaymond\nWalter\nAlbert\nJimmie\nFrank\nRoger\nBill\nGerald\nDon\nLee\nJoseph\nFreddie\nClarence\nWayne\nDennis\nEugene\nArthur\nMelvin\nEarl\nFloyd\nLonnie\nDouglas\nLeon\nTerry\nLouis\nSamuel\nJack\nLawrence\nJohnnie\nCurtis\nHarry\nRay\nFred\nLeonard\nLeroy\nJim\nErnest\nJesse\nTroy\nHoward\nPhillip\nRalph\nSammy\nCalvin\nMarvin\nAlvin\nDarrell\nDonnie\nLloyd\nCecil\nClyde\nDwight\nAllen\nCharlie\nHerman\nMike\nAndrew\nHerbert\nChester\nDaniel\nJackie\nBob\nJessie\nDoyle\nNorman\nGene\nGlen\nStephen\nFranklin\nVernon\nDale\nSteve\nAlfred\nNathaniel\nTommie\nLewis\nRussell\nBenny\nBruce\nCarroll\nEarnest\nMack\nHomer\nRoosevelt\nTony\nClifford\nBennie\nClifton\nLester\nLuther\nVirgil\nClaude\nElmer\nGarry\nStanley\nTom\nTruman\nHarvey\nMilton\nVictor\nOtis\nPhilip\nSam\nSylvester\nGlenn\nMarion\nOscar\nPatrick\nSidney\nWillard\nEdwin\nFreddy\nDan\nEdgar\nTimothy\nBen\nBenjamin\nHorace\nJunior\nBuddy\nFrankie\nLeslie\nMark\nMax\nPerry\nRodney\nSherman\nTed\nClinton\nElbert\nEverett\nGordon\nHubert\nRandall\nSammie\nTeddy\nWallace\nWendell\nAnthony\nIra\nLeo\nMorris\nOdell\nWillis\nAaron\nAubrey\nGrady\nHugh\nOliver\nRandy\nWesley\nDean\nGarland\nLoyd\nMarshall\nMaurice\nPreston\nTheodore\nTravis\nBillie\nElton\nKeith\nRufus\nAlan\nArchie\nBoyce\nCoy\nDelbert\nFrederick\nHershel\nKenny\nMartin\nNathan\nOdis\nShelby\nSteven\nWarren\nAndy\nBarry\nDewey\nEmmett\nFrancis\nGilbert\nGuy\nPeter\nBooker\nCharley\nDarrel\nEdmond\nEllis\nJay\nJeff\nLynn\nMickey\nRicky\nRoyce\nWill\nWinfred\nDallas\nDonny\nForrest\nRodger\nAlex\nAlton\nCarlton\nCarol\nClayton\nConnie\nDave\nEd\nEddy\nErnie\nGaylon\nJewell\nJohnie\nJon\nJonathan\nJulius\nKennith\nMonroe\nNeal\nOlen\nOrville\nPercy\nRoscoe\nThurman\nWoodrow\nAllan\nArnold\nBurl\nChristopher\nDannie\nDwayne\nEldon\nHermon\nJerome\nJoel\nLevi\nMarcus\nNelson\nOllie\nOtha\nRex\nRickey\nTheodis\nWilbert\nAlonzo\nAmos\nArther\nBernard\nBert\nBoyd\nDewayne\nFreeman\nGerry\nGregory\nHollis\nIvory\nJacky\nJake\nJerrell\nLeland\nLowell\nLoy\nMckinley\nMoses\nReuben\nRonny\nVan\nWinston\nCarlos\nCarter\nClaud\nCleo\nCleophus\nCleveland\nDenver\nDick\nDickie\nDuane\nElvin\nElvis\nGale\nHerschel\nIsaiah\nIsiah\nIvan\nJame\nKen\nLonzo\nNapoleon\nOmer\nOtto\nOwen\nPete\nRick\nRoland\nRudolph\nSilas\nTheotis\nWardell\nWiley\nWilson\nAl\nAlva\nArlis\nAuthor\nBobbie\nCarrol\nClark\nCody\nColumbus\nConrad\nCurlee\nDarryl\nDrew\nErvin\nFredrick\nGlynn\nHarlan\nHarrison\nHouston\nIke\nIrvin\nIsaac\nJerald\nJoey\nJohnney\nLeodis\nLeotis\nLouie\nLyle\nMarlin\nMerle\nMicheal\nMitchell\nMose\nNoel\nOren\nOrvil\nPhil\nPrince\nRiley\nRogers\nRon\nRosevelt\nRoss\nScotty\nTim\nVaughn\nVirgle\nWilliams\nJames\nCharles\nRobert\nLarry\nJohn\nJerry\nWilliam\nDavid\nJimmy\nBilly\nRichard\nGary\nBobby\nDonald\nThomas\nJohnny\nRonald\nWillie\nDanny\nKenneth\nGeorge\nJoe\nMichael\nTommy\nRonnie\nRoy\nPaul\nEddie\nHarold\nCarl\nEdward\nHenry\nRoger\nDennis\nJoseph\nWalter\nJimmie\nDon\nTerry\nAlbert\nBill\nJim\nRaymond\nJackie\nFrank\nWayne\nArthur\nLawrence\nGerald\nJack\nLonnie\nLee\nCurtis\nPhillip\nEarl\nJesse\nClarence\nFred\nSamuel\nMarvin\nMike\nMelvin\nFreddie\nHoward\nLouis\nFloyd\nLeon\nLloyd\nCalvin\nDaniel\nDonnie\nJohnnie\nRalph\nSammy\nJessie\nEarnest\nErnest\nEugene\nRay\nDale\nSteve\nAlvin\nStephen\nGlenn\nHerbert\nCharlie\nDouglas\nGene\nAllen\nHarvey\nAndrew\nChester\nHarry\nLewis\nLeroy\nBenny\nNorman\nTroy\nClyde\nDarrell\nDwight\nHerman\nRussell\nAlfred\nBennie\nBruce\nSam\nBob\nDoyle\nGarry\nCecil\nGlen\nVernon\nVirgil\nLeonard\nOtis\nStanley\nMarion\nElmer\nTony\nFranklin\nRandy\nCarroll\nClifford\nClifton\nPhilip\nRickey\nTom\nDan\nLester\nLoyd\nMorris\nRicky\nRonny\nClaude\nFreddy\nNathaniel\nRodney\nTommie\nAlan\nEdwin\nSammie\nMark\nHorace\nWarren\nBarry\nEdgar\nFrankie\nLynn\nTravis\nBuddy\nLeo\nMilton\nRoosevelt\nTeddy\nArchie\nHugh\nKenny\nPatrick\nPerry\nSteven\nWesley\nAlton\nBillie\nIvory\nJunior\nLeslie\nMicheal\nOdell\nVan\nAnthony\nBen\nElbert\nEverett\nGregory\nGuy\nHomer\nLuther\nOliver\nFrederick\nIsaac\nWallace\nWendell\nGarland\nGordon\nRudy\nSherman\nThurman\nTimothy\nVictor\nWillard\nDarrel\nDelbert\nEllis\nForrest\nMartin\nMitchell\nPhil\nSylvester\nTed\nAubrey\nDewayne\nDewey\nGilbert\nHershel\nJoel\nMack\nOscar\nRoland\nRoyce\nBenjamin\nHubert\nJay\nLeland\nRandall\nSidney\nWillis\nWoodrow\nByron\nCleo\nCleveland\nDonny\nGrady\nIra\nJeff\nKennith\nMarcus\nMaurice\nMax\nRodger\nShelby\nWilbert\nWill\nCharley\nCoy\nDannie\nElijah\nElvin\nErvin\nFrancis\nHollis\nKeith\nOllie\nPete\nPreston\nTheodore\nTruman\nAaron\nCarlos\nDwayne\nEmmett\nGaylon\nJose\nKen\nMickey\nRex\nTheodis\nWade\nWinston\nBernard\nClinton\nConnie\nDalton\nHarley\nLowell\nNathan\nOdis\nOrville\nScott\nAmos\nAndy\nBoyce\nBoyd\nChristopher\nDickie\nHal\nJerome\nJohnie\nLouie\nOwen\nRon\nRufus\nBradley\nCarlton\nClayton\nDarnell\nDave\nEldon\nErnie\nFredrick\nGrover\nJeffrey\nJon\nMalcolm\nMarlin\nNeil\nPat\nRickie\nRuben\nSterling\nTim\nWaymon\nWilbur\nAdell\nAlford\nArnold\nAustin\nCraig\nElton\nElvis\nHerschel\nJonathan\nLamar\nLevi\nLindell\nMac\nMarshall\nMaxie\nNelson\nNick\nPercy\nRiley\nRoss\nSonny\nAl\nAlexander\nArlis\nBryan\nButch\nCarrol\nClaud\nDenny\nDuane\nEd\nFelix\nGerry\nGlynn\nHermon\nIrvin\nIsiah\nJan\nJerald\nJimmey\nJulian\nKerry\nLawerence\nLedell\nLeodis\nMajor\nMckinley\nMerle\nMillard\nMurray\nNoah\nNolan\nOcie\nReuben\nVance\nWeldon\nWilliams\nWoody\nAlex\nAlonzo\nArther\nAuther\nBobbie\nBurton\nClark\nCleaster\nCleophus\nDallas\nDamon\nDean\nDick\nEddy\nElwood\nFreeman\nGayle\nHardy\nHosea\nHuey\nHurley\nJacky\nJacob\nJake\nJerrell\nJess\nJoey\nJuan\nKelly\nLanny\nLenard\nLesley\nLinda\nMalvin\nMurry\nMyron\nNoel\nOlen\nOtha\nRandell\nRandolph\nRayburn\nRaymon\nRuby\nTyree\nVernell\nWilburn\nWiley\nZack\nJames\nLarry\nJohn\nRobert\nCharles\nWilliam\nJerry\nDavid\nGary\nJimmy\nBilly\nRichard\nDonald\nBobby\nMichael\nThomas\nRonald\nJohnny\nWillie\nKenneth\nGeorge\nDanny\nTommy\nJoe\nRonnie\nPaul\nEddie\nHarold\nRoy\nEdward\nCarl\nTerry\nHenry\nRoger\nDennis\nJoseph\nRaymond\nWayne\nJimmie\nWalter\nBill\nJackie\nCurtis\nJack\nDon\nLee\nArthur\nPhillip\nAlbert\nFrank\nLonnie\nFloyd\nFreddie\nMelvin\nSteve\nClarence\nJim\nGerald\nDonnie\nEarl\nRalph\nStephen\nMike\nHoward\nLouis\nSamuel\nHarry\nJohnnie\nCalvin\nJesse\nLawrence\nFred\nRay\nSammy\nDaniel\nMarvin\nAllen\nDoyle\nEugene\nAlvin\nCecil\nGene\nGarry\nBenny\nDale\nLeon\nGlen\nJessie\nTroy\nGlenn\nCharlie\nDouglas\nStanley\nClyde\nHerman\nLloyd\nEarnest\nLewis\nRicky\nHerbert\nLeonard\nLeroy\nDwight\nErnest\nDarrell\nHarvey\nTony\nVernon\nBennie\nAndrew\nRandy\nSteven\nChester\nClifford\nLester\nRussell\nOtis\nBarry\nRickey\nBruce\nNorman\nRodney\nTom\nBob\nLeslie\nSammie\nRoosevelt\nFreddy\nRandall\nHomer\nPhilip\nSidney\nAlfred\nFranklin\nGregory\nSam\nTommie\nWesley\nArchie\nEdwin\nElmer\nBen\nMicheal\nMilton\nAnthony\nLynn\nMarion\nTimothy\nAlan\nCarroll\nClifton\nEdgar\nGordon\nNathaniel\nSylvester\nBenjamin\nLeo\nMorris\nOscar\nPerry\nClaude\nFrankie\nJoel\nJunior\nRonny\nTravis\nMark\nHubert\nHugh\nKeith\nKenny\nLoyd\nDewey\nOdis\nVan\nCarlos\nEllis\nFrederick\nRoyce\nVictor\nAaron\nAlton\nArnold\nDarrel\nDelbert\nIra\nIsaac\nJay\nTeddy\nTheodore\nVirgil\nWillard\nBuddy\nHorace\nLuther\nMax\nRodger\nAndy\nGuy\nJohnie\nMartin\nOdell\nSherman\nTed\nTheodis\nWarren\nCharley\nGilbert\nJerome\nMack\nAubrey\nByron\nDan\nElbert\nOllie\nPatrick\nPreston\nRoscoe\nRuben\nWillis\nCarlton\nMarshall\nMickey\nPercy\nShelby\nThurman\nWendell\nBillie\nBooker\nColumbus\nDewayne\nEric\nGarland\nManuel\nOliver\nPat\nRex\nAmos\nBernard\nBobbie\nCleo\nCleveland\nDannie\nDickie\nDwayne\nEverett\nGrady\nKennith\nMitchell\nNathan\nPhil\nWallace\nWilbur\nDean\nEldon\nFelix\nHal\nHershel\nJeff\nJon\nLeland\nMatthew\nMaurice\nOlen\nRufus\nTruman\nAllan\nAlonzo\nBuford\nClaud\nClayton\nClinton\nConnie\nDave\nElijah\nElvin\nForrest\nGerry\nIvan\nJess\nJulius\nRickie\nRudy\nTim\nWilbert\nWill\nBoyd\nButch\nCarrol\nCoy\nDallas\nEmmett\nErnie\nGrover\nJacky\nJasper\nJonathan\nKen\nLinda\nMarlin\nNeal\nNoel\nPeter\nRon\nWilson\nAl\nAlex\nAlvis\nAron\nCornell\nDonny\nDuane\nEddy\nElton\nFrancis\nGale\nGearld\nGus\nIvory\nJeffrey\nJerald\nLouie\nMalcolm\nMalvin\nMarcus\nMonroe\nNoah\nOtha\nRandolph\nScott\nScotty\nSterling\nTyrone\nWinston\nWoodrow\nWoody\nAlvie\nArtis\nCarol\nCary\nChris\nChristopher\nDarryl\nDenny\nDick\nDoug\nErvin\nFelton\nGalen\nHarley\nHerschel\nHouston\nJackson\nJewell\nJoshua\nLenard\nLowell\nMary\nNed\nNicky\nOrville\nOwen\nRayburn\nRiley\nRoland\nRoss\nSolomon\nSonny\nUnknown\nVance\nWeldon\nWilford\nWinfred\nArlie\nArtie\nCarnell\nClark\nEzell\nGeary\nGreg\nHarlan\nHarrel\nHarris\nJacob\nJason\nJefferson\nJewel\nJoey\nJose\nJuan\nJulian\nLacy\nLorenzo\nLoy\nMajor\nMckinley\nMiles\nNelson\nNoble\nNolan\nPete\nRandal\nReginald\nRobbie\nRobin\nTillman\nToney\nWilburn\nJames\nLarry\nRobert\nJohn\nCharles\nWilliam\nJerry\nDavid\nGary\nJimmy\nBilly\nMichael\nRichard\nDonald\nRonald\nThomas\nBobby\nWillie\nDanny\nKenneth\nRonnie\nJohnny\nGeorge\nJoe\nRoy\nTommy\nPaul\nEddie\nRoger\nHarold\nTerry\nDennis\nEdward\nJoseph\nCarl\nHenry\nRaymond\nJimmie\nPhillip\nWalter\nFrank\nDon\nArthur\nWayne\nClarence\nBill\nJackie\nGerald\nSamuel\nAlbert\nJohnnie\nDonnie\nMelvin\nCurtis\nJack\nFreddie\nRalph\nLonnie\nJim\nCalvin\nEarl\nFloyd\nGarry\nFred\nStephen\nLee\nRicky\nHarry\nMarvin\nMike\nSteve\nDaniel\nDale\nSteven\nEugene\nJesse\nRay\nErnest\nLawrence\nRickey\nHoward\nStanley\nAllen\nClyde\nJessie\nLouis\nDarrell\nSammy\nBenny\nLeroy\nRandy\nAlvin\nDouglas\nLloyd\nBruce\nLeon\nGlen\nGlenn\nLeonard\nCharlie\nHerbert\nBob\nVernon\nAlan\nOtis\nAndrew\nElmer\nTony\nTroy\nClifford\nDoyle\nDwight\nGene\nHerman\nTom\nPhilip\nCarroll\nLester\nAlfred\nEarnest\nHarvey\nNorman\nCecil\nLuther\nRussell\nChester\nMark\nPatrick\nClaude\nBennie\nFrankie\nNathaniel\nGregory\nOscar\nRandall\nRodney\nWesley\nDan\nLewis\nFreddy\nLeslie\nRoosevelt\nSam\nSammie\nTommie\nGordon\nSylvester\nBarry\nFranklin\nMorris\nPerry\nAnthony\nMartin\nTravis\nTimothy\nVirgil\nClifton\nKeith\nMarion\nMicheal\nBen\nTheodore\nBenjamin\nIsaac\nLynn\nEdwin\nHomer\nJoel\nJunior\nSherman\nTeddy\nWallace\nWarren\nIra\nMilton\nAaron\nDewey\nFrederick\nHugh\nMickey\nRodger\nSidney\nArnold\nChristopher\nCoy\nHal\nHubert\nJohnie\nMack\nEverett\nGrady\nMax\nRick\nRonny\nTed\nTheodis\nAlton\nBuddy\nEdgar\nErvin\nGilbert\nGuy\nJay\nLeo\nMarshall\nOdell\nOliver\nRufus\nThurman\nWilbert\nWillis\nAlex\nArchie\nAubrey\nByron\nDelbert\nElbert\nGarland\nJacky\nMitchell\nVan\nWillard\nCarlos\nConnie\nDean\nEddy\nEllis\nJeff\nLowell\nMaurice\nNathan\nRex\nRudy\nShelby\nWendell\nWill\nClinton\nErnie\nHorace\nIvory\nJerome\nLeland\nPercy\nRoland\nTruman\nBillie\nCharley\nDarrel\nDickie\nDonny\nFrancis\nJonathan\nKennith\nMatthew\nMillard\nMonroe\nPete\nRon\nWilbur\nDenny\nGrover\nKerry\nLoyd\nOdis\nRoyce\nVictor\nWiley\nWilson\nBernard\nCarlton\nClark\nClayton\nCleveland\nDarnell\nDuane\nFredrick\nJon\nJulius\nKenny\nManuel\nOrville\nPeter\nPhil\nRandal\nRuben\nUnknown\nWinston\nWoodrow\nAlonzo\nAmos\nBarney\nBooker\nCarey\nChris\nDewayne\nDwayne\nEric\nIsiah\nNolan\nOllie\nTim\nAndy\nBoyce\nClay\nDana\nDannie\nEarle\nEldon\nElvin\nElvis\nEmmett\nGreg\nIrvin\nIvan\nJasper\nJeffery\nJeffrey\nLouie\nNeal\nScott\nAl\nAllan\nAuther\nBobbie\nBoyd\nCleo\nColumbus\nCornelius\nDave\nDickey\nEmanuel\nGaylon\nGlendon\nHarlan\nHarley\nHershel\nJake\nJewell\nLanny\nLindell\nLoy\nMarlin\nMarty\nMonty\nMoses\nNicholas\nOwen\nPreston\nReginald\nRobbie\nRocky\nSterling\nTimmy\nVance\nWeldon\nWinfred\nAdam\nAdrian\nAlexander\nAlvie\nArtie\nBert\nBradford\nBrady\nBurl\nCarter\nChuck\nClaud\nCleve\nDallas\nDamon\nDarryl\nDoug\nElton\nEzell\nForrest\nGale\nGearld\nGlynn\nGus\nHector\nHermon\nHerschel\nHollis\nIsaiah\nJan\nJefferson\nJeral\nJerald\nJulian\nKermit\nKirk\nLen\nLesley\nLevester\nLonzo\nLorenzo\nMadison\nMajor\nMalvin\nMarcus\nMiguel\nNoah\nNoel\nOlen\nOssie\nOtha\nPat\nRoss\nShelton\nWaymon\nWilburn\nJames\nLarry\nJohn\nRobert\nCharles\nWilliam\nDavid\nJerry\nGary\nMichael\nJimmy\nBilly\nDonald\nRichard\nThomas\nKenneth\nJohnny\nDanny\nRonald\nGeorge\nBobby\nWillie\nRonnie\nJoe\nTommy\nRoger\nPaul\nHarold\nEddie\nRoy\nEdward\nDennis\nCarl\nTerry\nPhillip\nHenry\nStephen\nFreddie\nRaymond\nWalter\nJoseph\nJackie\nLee\nSamuel\nJimmie\nArthur\nDaniel\nDon\nJack\nFloyd\nAlbert\nFrank\nSteven\nMelvin\nRicky\nWayne\nCalvin\nClarence\nCurtis\nJesse\nDonnie\nRalph\nEugene\nLonnie\nLawrence\nGerald\nSteve\nDouglas\nStanley\nFred\nJohnnie\nRickey\nLeonard\nHarry\nHoward\nMarvin\nAllen\nErnest\nAndrew\nEarl\nGarry\nLeon\nSammy\nBill\nMike\nPatrick\nRandy\nAlvin\nDarrell\nBruce\nEarnest\nHerbert\nLouis\nRay\nLloyd\nCharlie\nDale\nJessie\nJim\nBenny\nTroy\nLeroy\nAlfred\nGlen\nVernon\nCarroll\nClyde\nRandall\nGlenn\nHerman\nMicheal\nAlan\nTimothy\nChester\nDoyle\nPhilip\nTeddy\nMark\nLewis\nRussell\nAnthony\nDwight\nFreddy\nGene\nOtis\nCecil\nLester\nFranklin\nTony\nKeith\nNorman\nMilton\nRodney\nBob\nBennie\nClifton\nMickey\nNathaniel\nSylvester\nTom\nLeslie\nPerry\nRoosevelt\nFrankie\nClifford\nLuther\nLynn\nOscar\nBarry\nHarvey\nIra\nSam\nBenjamin\nEdwin\nTommie\nWarren\nElmer\nFrederick\nGregory\nJoel\nKenny\nLanny\nMack\nRodger\nTheodore\nTravis\nArchie\nClaude\nDewey\nMarion\nWesley\nDan\nElbert\nHomer\nLeo\nMitchell\nWillard\nHubert\nJunior\nSammie\nSidney\nUnknown\nVictor\nLoyd\nMartin\nRonny\nTed\nVirgil\nWallace\nBen\nDonny\nGarland\nGuy\nMorris\nWendell\nAaron\nAlton\nCharley\nChristopher\nCoy\nJay\nMarshall\nOdell\nOliver\nRoyce\nWilbert\nJohnie\nManuel\nPreston\nTheodis\nVan\nArnold\nCleveland\nDarrel\nDelbert\nEdgar\nElijah\nEric\nGilbert\nGordon\nIvory\nKerry\nMarcus\nRuben\nCarlos\nDickie\nEllis\nHorace\nJose\nJulius\nLowell\nMaurice\nRandolph\nBillie\nBuddy\nChris\nDewayne\nEverett\nGrady\nJuan\nPhil\nRick\nRudy\nScott\nSherman\nWillis\nAllan\nAlonzo\nAubrey\nBobbie\nDwayne\nGaylon\nHal\nHerschel\nJacky\nLannie\nNicky\nOrville\nPete\nRex\nScotty\nTruman\nWinston\nWoodrow\nAlex\nAndy\nBernard\nBooker\nBoyd\nClark\nClayton\nClinton\nDave\nDean\nFelix\nHugh\nJeffery\nJonathan\nKennith\nLeotis\nPeter\nThurman\nVincent\nBoyce\nByron\nCarlton\nCraig\nDannie\nFelton\nHershel\nJeffrey\nJerome\nKevin\nMatthew\nMonroe\nNathan\nOcie\nOllie\nRickie\nRufus\nShelby\nStewart\nAustin\nCleo\nEldon\nErvin\nFrancis\nGrover\nIsaac\nJake\nJon\nKarl\nLenard\nLorenzo\nLouie\nMonty\nPat\nRandal\nReginald\nRocky\nRoland\nTyrone\nUlysses\nWilbur\nWill\nAl\nAlexander\nAlvie\nCletus\nDallas\nDaryl\nEldridge\nEmmett\nFoster\nGale\nHardy\nHermon\nHollis\nJeff\nJewel\nJewell\nJohney\nKent\nLaurence\nLawerence\nLeland\nNoah\nNoel\nNorris\nOdis\nPercy\nRandell\nRene\nRon\nRudolph\nSolomon\nToney\nWade\nWaymon\nWilson\nWoody\nBrian\nBuford\nBurl\nCarnell\nCarrol\nClaudie\nCornelius\nDanial\nDarryl\nDarwin\nEddy\nEdmond\nElvin\nEmanuel\nEmory\nErnie\nFletcher\nForrest\nFredrick\nFreeman\nHarrison\nIvan\nJasper\nJerald\nJulian\nKelly\nKen\nMarc\nMaxie\nMichial\nMose\nNelson\nOlen\nPorter\nQuincy\nReggie\nRiley\nRobbie\nRoss\nTim\nVaughn\nWilburn\nJames\nLarry\nRobert\nJohn\nCharles\nWilliam\nDavid\nJerry\nMichael\nGary\nRonald\nRichard\nBilly\nThomas\nJimmy\nDanny\nDonald\nKenneth\nWillie\nBobby\nJohnny\nGeorge\nJoe\nTerry\nRonnie\nRoger\nDennis\nPaul\nTommy\nRoy\nEddie\nStephen\nHarold\nEdward\nJoseph\nCarl\nHenry\nWalter\nPhillip\nSamuel\nLonnie\nJimmie\nSteven\nLee\nRaymond\nJack\nRickey\nFreddie\nCurtis\nJackie\nArthur\nClarence\nRandy\nGerald\nFrank\nDonnie\nRicky\nBruce\nWayne\nDouglas\nSteve\nMelvin\nFred\nDaniel\nAllen\nAlbert\nDale\nLawrence\nStanley\nHarry\nBill\nCalvin\nEarl\nGarry\nRalph\nRandall\nLouis\nFloyd\nDon\nTimothy\nEugene\nHerbert\nJohnnie\nLeon\nHoward\nLeroy\nAlvin\nDarrell\nHerman\nJim\nClyde\nLloyd\nDwight\nEarnest\nMarvin\nAndrew\nLester\nGregory\nErnest\nPatrick\nAnthony\nJessie\nAlfred\nDoyle\nChester\nGlenn\nJesse\nRussell\nCharlie\nMark\nBenny\nMike\nAlan\nFranklin\nNorman\nUnknown\nLeonard\nCecil\nGlen\nMicheal\nRay\nSammy\nTroy\nOtis\nTony\nGene\nBarry\nChristopher\nClifford\nClifton\nVernon\nLewis\nTravis\nPhilip\nMilton\nRodney\nSammie\nBennie\nClaude\nHarvey\nKenny\nLeslie\nOscar\nPerry\nReginald\nFreddy\nRoosevelt\nTeddy\nEdwin\nKeith\nNathaniel\nRonny\nSam\nBob\nDan\nBen\nCarroll\nFrederick\nJoel\nLeo\nLoyd\nMaurice\nTommie\nElbert\nElmer\nLanny\nMorris\nSylvester\nTom\nArchie\nFrankie\nHubert\nLuther\nRex\nRodger\nSidney\nBenjamin\nClinton\nIvory\nJeffrey\nMarshall\nRandolph\nSherman\nWillard\nAaron\nHorace\nLynn\nNathan\nVictor\nWendell\nGrady\nHomer\nJerome\nTed\nTheodore\nWesley\nBuddy\nEdgar\nEverett\nGarland\nMickey\nBillie\nChris\nDave\nIsaac\nJay\nMarion\nMitchell\nRick\nTheodis\nThurman\nVirgil\nWarren\nWinston\nAlex\nAndy\nEric\nGuy\nNeil\nWallace\nAlton\nBobbie\nJeffery\nOdis\nVan\nWill\nAubrey\nBernard\nCarlos\nDana\nDannie\nDonny\nGordon\nJon\nJulius\nLowell\nMack\nMartin\nPreston\nRoland\nWilbert\nWillis\nCarlton\nDean\nEldon\nFrancis\nFredrick\nGaylon\nHugh\nJonathan\nJunior\nKerry\nMarcus\nMatthew\nMax\nOdell\nOliver\nOwen\nPercy\nScott\nAlonzo\nArnold\nByron\nCharley\nCoy\nCraig\nDallas\nGrover\nNolan\nPete\nPeter\nRickie\nRuben\nRudy\nRufus\nAmos\nBooker\nBurl\nCarrol\nDarnell\nDarrel\nDelbert\nElijah\nErvin\nForrest\nGilbert\nHershel\nIra\nJerrell\nJohnie\nJuan\nKennith\nMonte\nNicholas\nRoyce\nTim\nAllan\nCary\nEmmett\nJasper\nJeff\nJerald\nKevin\nRandal\nScotty\nAdam\nCleo\nCleveland\nDewey\nDonnell\nDuane\nDwayne\nEddy\nEllis\nFelix\nHarley\nIssac\nJose\nLamar\nLannie\nLeland\nLeotis\nLevi\nMonroe\nNoel\nPhil\nQuinton\nRiley\nWilliams\nAl\nAuthor\nClayton\nCleophus\nColumbus\nErnie\nGearld\nGrant\nHal\nHarrison\nIsiah\nIvan\nJake\nJan\nJewel\nKarl\nLenard\nLeodis\nLoy\nMarc\nNeal\nNick\nNorris\nOllie\nOrville\nPorter\nReuben\nRobbie\nRogers\nRoscoe\nRoss\nRudolph\nShelby\nToney\nTyrone\nVernell\nVincent\nWaymon\nWinfred\nAlvie\nBoyce\nBradford\nCardell\nCedric\nCleotis\nCletis\nClovis\nCornelius\nDalton\nDenny\nDrew\nElmo\nElvin\nEmanuel\nFarrell\nGalen\nHermon\nHollis\nIrvin\nJodie\nJoey\nJulian\nLovell\nMac\nMarty\nMose\nMoses\nOlen\nOtha\nParker\nRandel\nRandle\nRobin\nRon\nSilas\nSonny\nSpencer\nWardell\nWilbur\nWilburn\nWinford\nJames\nLarry\nRobert\nJohn\nWilliam\nCharles\nDavid\nMichael\nJerry\nGary\nRichard\nThomas\nRonald\nKenneth\nBilly\nJimmy\nDonald\nDanny\nJohnny\nWillie\nDennis\nGeorge\nBobby\nRoy\nJoe\nPaul\nRoger\nTerry\nTommy\nRonnie\nEdward\nCarl\nEddie\nJoseph\nHenry\nHarold\nStephen\nSteven\nPhillip\nRickey\nRaymond\nRicky\nCalvin\nWalter\nLee\nSamuel\nDaniel\nJackie\nRandy\nDouglas\nJack\nArthur\nFrank\nFreddie\nBruce\nLawrence\nAllen\nCurtis\nClarence\nEugene\nLonnie\nDonnie\nAlbert\nWayne\nGerald\nJimmie\nMelvin\nDon\nStanley\nTimothy\nDarrell\nGlenn\nAlvin\nAndrew\nLouis\nMark\nFred\nMicheal\nFloyd\nRandall\nLeon\nRay\nHoward\nDale\nJohnnie\nRalph\nEarnest\nGregory\nSteve\nErnest\nMarvin\nEarl\nLeroy\nHarry\nJesse\nHerman\nJim\nCharlie\nTony\nClyde\nGarry\nSammy\nJessie\nAnthony\nAlan\nBill\nCecil\nGlen\nLewis\nPhilip\nLeonard\nTroy\nVernon\nOtis\nRodney\nClifford\nDwight\nKeith\nNorman\nUnknown\nAlfred\nBenny\nPatrick\nClifton\nHarvey\nLloyd\nRussell\nSylvester\nChester\nBarry\nDoyle\nEdwin\nLester\nWesley\nBennie\nFranklin\nGene\nHerbert\nElmer\nFreddy\nFrederick\nNathaniel\nKenny\nMaurice\nPerry\nJoel\nLeslie\nOscar\nRex\nRoosevelt\nVirgil\nClaude\nHubert\nMike\nNathan\nTommie\nBenjamin\nLeo\nSam\nClinton\nFrankie\nLynn\nAaron\nArchie\nChristopher\nDan\nIra\nMartin\nSidney\nTravis\nWendell\nBen\nBernard\nDonny\nLuther\nMarion\nMilton\nSammie\nBuddy\nCarroll\nEllis\nTom\nAllan\nBob\nGrady\nMorris\nSherman\nTeddy\nCarlton\nChris\nJeffrey\nJonathan\nLoyd\nOdell\nRodger\nVictor\nWillis\nDewey\nFrancis\nGordon\nGuy\nHomer\nIvory\nKerry\nMarshall\nRonny\nCraig\nJacky\nJay\nJulius\nMickey\nPeter\nReginald\nRickie\nShelby\nTed\nWallace\nWarren\nCharley\nClayton\nDannie\nEverett\nGilbert\nLanny\nMack\nMajor\nRoland\nTheodore\nVan\nWill\nAlonzo\nClark\nDean\nDelbert\nDickie\nDwayne\nGarland\nHal\nHorace\nIsaac\nJerome\nJunior\nPete\nRandolph\nRoyce\nWillard\nAlexander\nAubrey\nBillie\nCornelius\nEric\nFelix\nForrest\nJeff\nJon\nManuel\nNicky\nOliver\nPercy\nRufus\nSterling\nAl\nAndy\nByron\nCarlos\nCoy\nEdgar\nElijah\nErvin\nGrover\nJasper\nJeffery\nJohnie\nKelly\nKennith\nKent\nMitchell\nNelson\nPreston\nRandal\nRick\nScott\nTheodis\nTimmy\nVincent\nArnold\nArther\nBoyce\nCleo\nCleveland\nDarryl\nDaryl\nDewayne\nErnie\nFredrick\nHershel\nHugh\nKarl\nMalcolm\nMiles\nOtha\nRobin\nRoscoe\nWilburn\nWiley\nBurl\nCary\nDarrel\nElbert\nGale\nGaylon\nIsaiah\nKevin\nLorenzo\nMarlin\nMax\nMckinley\nOdis\nOllie\nOwen\nPat\nRudolph\nStevie\nStuart\nWoodrow\nBarney\nBert\nBoyd\nBradley\nBuster\nDana\nDenver\nDonell\nDuane\nEdmond\nEzell\nHermon\nHerschel\nJacob\nJerrel\nJuan\nLeodis\nLindell\nMarty\nMyron\nNapoleon\nNick\nNickey\nOcie\nPhil\nRamon\nRocky\nRon\nRosevelt\nRoss\nRuben\nTerrell\nThurman\nTim\nWaymon\nWilbert\nWilson\nWinston\nAlton\nBooker\nBrad\nBrian\nBryan\nColeman\nConnie\nCornell\nDave\nDerry\nDoyne\nEd\nElton\nEmmett\nEzzard\nFelton\nIvan\nJewel\nJose\nJudge\nLeland\nLemuel\nLeotis\nLovell\nLowell\nMalvin\nMarcus\nMary\nMatthew\nMitchel\nMonroe\nMonte\nNeal\nOlen\nReggie\nRudy\nTracy\nUlysses\nWardell\nWayman\nWinford\nJames\nJohn\nLarry\nRobert\nDavid\nCharles\nMichael\nWilliam\nGary\nJerry\nRichard\nThomas\nBilly\nDanny\nKenneth\nJimmy\nDonald\nRonald\nWillie\nBobby\nJohnny\nTerry\nDennis\nPaul\nGeorge\nRonnie\nJoe\nRoger\nRoy\nTommy\nStephen\nEdward\nSteven\nRicky\nEddie\nJoseph\nCarl\nRandy\nDaniel\nRickey\nHenry\nHarold\nWalter\nRaymond\nArthur\nMark\nPhillip\nFrank\nJackie\nLee\nSamuel\nBruce\nMelvin\nDonnie\nGerald\nEarl\nCalvin\nDouglas\nStanley\nLawrence\nAlbert\nCurtis\nDon\nAndrew\nFreddie\nTimothy\nSteve\nEugene\nGregory\nFloyd\nJack\nAlvin\nAllen\nJimmie\nDarrell\nMicheal\nClarence\nFred\nHoward\nDale\nAnthony\nRalph\nJesse\nRandall\nGlenn\nLeroy\nDwight\nJessie\nLonnie\nWayne\nClifford\nLeon\nLouis\nSammy\nJim\nTony\nErnest\nGlen\nHerbert\nRay\nMarvin\nAlan\nAlfred\nCharlie\nLewis\nHarry\nJohnnie\nLeonard\nHerman\nKenny\nPatrick\nPhilip\nRodney\nVernon\nClyde\nGarry\nRoosevelt\nTroy\nEarnest\nBarry\nDoyle\nNathaniel\nBenny\nUnknown\nBill\nKeith\nLloyd\nCecil\nOtis\nEdwin\nTommie\nBenjamin\nFranklin\nLester\nMike\nRickie\nClifton\nGene\nLeslie\nBennie\nHarvey\nNorman\nLuther\nMartin\nRick\nRussell\nDan\nFreddy\nOscar\nSammie\nSylvester\nChristopher\nArchie\nLeo\nMilton\nTom\nVictor\nChester\nClaude\nFrankie\nMitchell\nPerry\nSam\nWarren\nGordon\nMickey\nWendell\nEdgar\nElbert\nHorace\nJeffrey\nJoel\nMarion\nMarshall\nTeddy\nElmer\nFrederick\nIvory\nJeffery\nPercy\nVirgil\nWesley\nAaron\nArnold\nCarroll\nDewey\nGuy\nJay\nKerry\nPeter\nRex\nVan\nBob\nIra\nLynn\nMarcus\nNathan\nWoodrow\nEverett\nJerome\nMax\nReginald\nScott\nWallace\nAllan\nBen\nDarrel\nJonathan\nSidney\nAlton\nCarlton\nDonny\nElijah\nHubert\nKim\nOdell\nSherman\nStevie\nTed\nTheodis\nBernard\nByron\nCleo\nEric\nGarland\nIsaac\nLoyd\nMaurice\nMorris\nRufus\nTheodore\nTravis\nAubrey\nCarlos\nCharley\nDelbert\nEllis\nFredrick\nGrady\nGrover\nHomer\nJon\nJunior\nMatthew\nRandell\nRocky\nWill\nWillard\nWillis\nAlonzo\nCleveland\nClinton\nCraig\nFelix\nLowell\nMonte\nOwen\nRonny\nVincent\nWinston\nConnie\nDallas\nDewayne\nDuane\nHershel\nKelly\nKevin\nLanny\nRandal\nRoyce\nThurman\nAlex\nBarney\nBillie\nBooker\nBoyce\nDannie\nDean\nElton\nEmmitt\nGaylon\nGerry\nGilbert\nHollis\nHugh\nKennith\nKent\nLionel\nNeil\nNelson\nOliver\nOllie\nOtha\nPreston\nRobin\nRodger\nShelby\nTyrone\nVance\nWilbert\nBuddy\nCarey\nClark\nCoy\nDave\nDickie\nEmmett\nErvin\nForrest\nGregg\nHarlan\nHermon\nIsiah\nJohnie\nNeal\nRandolph\nRiley\nRoland\nSterling\nWade\nWiley\nAlexander\nAlford\nAlva\nAmos\nAuthur\nBrian\nDarryl\nDaryl\nDenny\nDenzil\nDwain\nDwayne\nEldon\nFrancis\nGearld\nHouston\nIrvin\nJewel\nJulius\nKirk\nLorenzo\nLouie\nMalvin\nMonroe\nMonty\nMyron\nPete\nRoscoe\nRoss\nRuben\nSilas\nWaymon\nBobbie\nBoyd\nBradley\nBuford\nCarson\nCary\nChris\nClay\nClayton\nCordell\nDavis\nDickey\nDudley\nEddy\nEzzard\nFletcher\nGus\nHal\nIsaiah\nIssac\nIvan\nJake\nJason\nJasper\nJodie\nJuan\nKarl\nLance\nLeland\nLeotis\nLonzo\nMack\nMarlin\nMarty\nMoses\nNicholas\nNick\nNoah\nOdis\nOlen\nPhil\nScotty\nTaylor\nTim\nTimmy\nVirgle\nWinford\nWinfred\nWoody\nJames\nRobert\nDavid\nMichael\nLarry\nJohn\nCharles\nWilliam\nGary\nJerry\nRichard\nThomas\nBilly\nDonald\nDanny\nKenneth\nJimmy\nRonald\nBobby\nJohnny\nDennis\nTerry\nRoger\nPaul\nWillie\nJoe\nRicky\nSteven\nGeorge\nRonnie\nTommy\nRoy\nStephen\nEdward\nCarl\nRandy\nMark\nRickey\nJoseph\nHarold\nDaniel\nPhillip\nHenry\nEddie\nRaymond\nMelvin\nStanley\nCurtis\nCalvin\nWalter\nJackie\nTimothy\nFrank\nDonnie\nBruce\nFreddie\nDouglas\nDon\nSteve\nLee\nClarence\nAlbert\nMarvin\nLawrence\nLonnie\nMicheal\nWayne\nEugene\nGerald\nAnthony\nFloyd\nAlvin\nGregory\nJack\nDwight\nEarl\nSamuel\nJessie\nAllen\nArthur\nRalph\nAndrew\nJimmie\nRodney\nRandall\nBill\nGlen\nRay\nHerbert\nLeroy\nDale\nDarrell\nJesse\nEarnest\nCharlie\nGlenn\nLouis\nPatrick\nTony\nLeon\nJohnnie\nHoward\nVernon\nPhilip\nAlan\nJim\nRussell\nTroy\nChester\nErnest\nKeith\nLloyd\nGarry\nHarry\nSammy\nLewis\nNathaniel\nClyde\nFred\nBarry\nBennie\nJeffrey\nLeonard\nLester\nNorman\nScott\nUnknown\nAlfred\nBenny\nMike\nClifford\nHerman\nWesley\nCecil\nFranklin\nSylvester\nClifton\nOtis\nRoosevelt\nTommie\nLeo\nPerry\nRickie\nChristopher\nEdwin\nBenjamin\nCarroll\nFrederick\nMilton\nRick\nTravis\nKenny\nVictor\nBen\nFrankie\nJoel\nVirgil\nFreddy\nHarvey\nJay\nSam\nAaron\nLynn\nMartin\nMitchell\nEdgar\nGene\nWarren\nWendell\nClaude\nDoyle\nHomer\nHorace\nHubert\nJeffery\nLeslie\nMatthew\nRodger\nClinton\nDan\nGordon\nKevin\nMickey\nOliver\nRex\nStevie\nWallace\nDonny\nHugh\nMarshall\nSherman\nTeddy\nArchie\nDewayne\nElmer\nIsaac\nLoyd\nMack\nSammie\nWillard\nDelbert\nEric\nIra\nJeff\nJonathan\nMaurice\nReginald\nRobin\nRonny\nTheodore\nBernard\nBob\nEddy\nElbert\nFredrick\nJacky\nKerry\nVan\nAndy\nByron\nClark\nCraig\nDana\nEllis\nLevi\nMarcus\nMarion\nMorris\nOdell\nOrville\nOscar\nPreston\nRufus\nShelby\nTim\nBuddy\nCharley\nDewey\nEmmett\nEverett\nGuy\nLanny\nLuther\nNathan\nTheodis\nTom\nWilson\nArnold\nCarlton\nDean\nElijah\nFrancis\nHershel\nJerome\nJulius\nKim\nMax\nOdis\nOtha\nScotty\nTyrone\nWilbert\nWinston\nAllan\nCoy\nErvin\nGilbert\nJewell\nJoey\nJon\nMalcolm\nManuel\nMonroe\nMonte\nMonty\nNeal\nPeter\nPhil\nRocky\nSidney\nWoodrow\nAl\nAmos\nAubrey\nBoyce\nCarlos\nEldon\nEzell\nJuan\nJunior\nKelly\nKirby\nLowell\nNoel\nNorris\nRoland\nRoyce\nWinfred\nAlex\nAlphonso\nBillie\nBobbie\nBrian\nBryan\nBurton\nClay\nClayton\nConnie\nDarnell\nDaryl\nDave\nElton\nElvin\nGarland\nGerry\nGrady\nHank\nIrvin\nKennith\nMarty\nPercy\nRudolph\nThurman\nTimmy\nVincent\nAlfonso\nBooker\nBrad\nBradley\nBrent\nChris\nCleveland\nColumbus\nDarrel\nDarryl\nDwayne\nFelton\nGrover\nHarrison\nHermon\nHollis\nJacob\nKent\nLyle\nMajor\nMalvin\nMarc\nMatt\nMyron\nNeil\nNelson\nRandal\nRandell\nRandolph\nRoss\nRuben\nRudy\nSterling\nStewart\nToney\nWade\nAbraham\nAlfonzo\nAlvie\nAnderson\nBenard\nBoyd\nBuster\nCarnell\nCarter\nCleo\nDannie\nDerrick\nDuane\nEzzard\nHarlan\nHarrell\nIke\nJess\nJoesph\nKarl\nLamar\nLenard\nLeodis\nLouie\nMose\nNicky\nTracy\nWiley\nWillis\nJames\nRobert\nDavid\nLarry\nJohn\nMichael\nCharles\nWilliam\nGary\nRichard\nJerry\nDonald\nBilly\nThomas\nDanny\nBobby\nTerry\nJimmy\nKenneth\nRonald\nJohnny\nSteven\nRicky\nWillie\nStephen\nDennis\nPaul\nRandy\nGeorge\nRonnie\nRoger\nTommy\nRoy\nJoe\nMark\nEdward\nCarl\nEddie\nRickey\nJoseph\nHarold\nRaymond\nHenry\nCalvin\nDaniel\nTimothy\nDonnie\nPhillip\nSamuel\nCurtis\nStanley\nAnthony\nFrank\nGregory\nJackie\nMelvin\nBruce\nAndrew\nDouglas\nLee\nRandall\nWalter\nSteve\nAllen\nLawrence\nEarl\nMicheal\nRalph\nRay\nAlbert\nClarence\nArthur\nGerald\nLonnie\nDon\nJimmie\nTony\nDarrell\nJack\nWayne\nFloyd\nFreddie\nRodney\nAlvin\nHoward\nGlenn\nMarvin\nDale\nEugene\nFred\nHerbert\nLeonard\nGarry\nErnest\nHerman\nMike\nDwight\nJim\nBarry\nLouis\nPatrick\nJesse\nLloyd\nJessie\nAlan\nCecil\nLeroy\nRussell\nPhilip\nVernon\nLeon\nSammy\nKeith\nBenny\nGlen\nTroy\nBennie\nAlfred\nBill\nChester\nJeffrey\nHarvey\nHarry\nJohnnie\nClifford\nClyde\nDan\nFranklin\nEarnest\nPerry\nUnknown\nChristopher\nJoel\nKenny\nLeslie\nNorman\nVictor\nOtis\nScott\nDoyle\nJeffery\nMartin\nClifton\nEdwin\nGene\nKevin\nWesley\nBenjamin\nLewis\nMarion\nRex\nRoosevelt\nSidney\nNathaniel\nSam\nSylvester\nTommie\nJay\nLeo\nLuther\nLynn\nSherman\nVirgil\nCharlie\nJerome\nLester\nMitchell\nRick\nTravis\nDonny\nFrankie\nHorace\nReginald\nRoyce\nFrederick\nMack\nRandal\nAaron\nFreddy\nMaurice\nKim\nMarcus\nMarshall\nMarty\nMorris\nOscar\nRandolph\nRonny\nSammie\nStevie\nBen\nBernard\nBuddy\nClaude\nElmer\nEric\nMilton\nOliver\nArchie\nCarroll\nDarrel\nRobin\nShelby\nTeddy\nWendell\nFredrick\nGarland\nJonathan\nMickey\nWarren\nCoy\nGordon\nIvory\nJon\nJulius\nKerry\nMax\nNathan\nRufus\nTed\nTheodore\nVan\nWallace\nAndy\nCarlton\nChris\nClark\nDean\nDonell\nDwayne\nElton\nEmmett\nGilbert\nIsaac\nJacky\nJeff\nJunior\nManuel\nNapoleon\nOdell\nPercy\nRocky\nTom\nAlonzo\nBob\nClinton\nDewey\nElbert\nErvin\nGuy\nHomer\nHubert\nIra\nNicky\nPeter\nPreston\nRickie\nRobbie\nVincent\nBrian\nCarlos\nDenny\nDexter\nDuane\nEdgar\nEllis\nFrancis\nKennith\nLoyd\nMarlin\nWilbert\nAmos\nByron\nColumbus\nCraig\nDana\nDewayne\nHarrison\nHershel\nIsaiah\nJoey\nLevi\nLowell\nNeal\nRandle\nRodger\nScotty\nTerrance\nTheodis\nTimmy\nWill\nWillard\nWinston\nAlex\nAllan\nAubrey\nBillie\nBrent\nCarey\nCleveland\nDallas\nDarryl\nDerrell\nGaylon\nHal\nHugh\nJan\nJuan\nKelly\nKelvin\nKen\nLeodis\nMonty\nNelson\nNoel\nRoland\nUlysses\nWade\nWilbur\nAdrian\nAlton\nArlie\nArnold\nBooker\nBrad\nClaud\nClayton\nDave\nDavie\nDelmer\nDickie\nDonnell\nElijah\nErnie\nErwin\nHollis\nIke\nKirk\nLanny\nLenard\nLoy\nLyle\nMatthew\nMiles\nMonte\nOdis\nOtha\nPat\nRandell\nReggie\nRitchie\nRusty\nThurman\nTracy\nArlis\nArtis\nAustin\nAvery\nBarney\nBlake\nBradford\nBradley\nClarance\nConnie\nDarnell\nDaryl\nDickey\nEddy\nEverett\nFelix\nGrant\nGreg\nJacob\nJefferson\nJess\nJulian\nJustin\nKarl\nKent\nKurt\nLacy\nLamar\nLeland\nLesley\nLorenzo\nLouie\nLucious\nLuke\nMalcolm\nMichel\nMikel\nMoses\nNickey\nOllie\nRoderick\nRon\nRoss\nRudy\nSandy\nStuart\nVance\nWilfred\nWoodrow\nJames\nRobert\nDavid\nJohn\nMichael\nCharles\nLarry\nWilliam\nGary\nJerry\nRichard\nKenneth\nBilly\nDonald\nThomas\nRicky\nTerry\nDanny\nJimmy\nBobby\nJohnny\nSteven\nRandy\nRonald\nDennis\nMark\nPaul\nWillie\nGeorge\nJoe\nStephen\nRonnie\nRickey\nCarl\nEdward\nJoseph\nRoger\nTommy\nRoy\nEddie\nGregory\nTimothy\nHarold\nPhillip\nHenry\nStanley\nRaymond\nWalter\nJackie\nBruce\nSamuel\nCalvin\nLee\nDaniel\nAnthony\nCurtis\nDouglas\nFrank\nSteve\nTony\nRay\nDonnie\nRandall\nKeith\nMicheal\nMelvin\nRalph\nLawrence\nRussell\nFred\nClarence\nGerald\nAlbert\nAlvin\nAndrew\nDon\nAllen\nEugene\nMarvin\nDarrell\nArthur\nGarry\nLeon\nLonnie\nDale\nEarl\nHoward\nLouis\nWayne\nAlan\nFreddie\nPatrick\nRodney\nDwight\nFloyd\nJack\nJimmie\nHerbert\nJohnnie\nKevin\nLeonard\nGlenn\nJeffrey\nJesse\nMike\nBarry\nErnest\nJessie\nVernon\nEarnest\nScott\nTroy\nLeroy\nMitchell\nGlen\nMilton\nPerry\nPhilip\nBennie\nClyde\nLewis\nOtis\nCecil\nClifford\nUnknown\nBenjamin\nDoyle\nJeffery\nLester\nSammy\nAlfred\nBenny\nHerman\nJim\nJoel\nLloyd\nNorman\nChristopher\nClifton\nFrankie\nHarry\nKenny\nChester\nFreddy\nKerry\nWesley\nEdwin\nHarvey\nNathaniel\nReginald\nBill\nCharlie\nLuther\nLynn\nVirgil\nFranklin\nSylvester\nVictor\nEric\nFrederick\nRick\nClaude\nMaurice\nMickey\nRex\nAaron\nArchie\nBrian\nElmer\nGene\nLeslie\nMarcus\nMarion\nRickie\nWendell\nArnold\nBradley\nDonny\nJoey\nMarshall\nMartin\nMatthew\nRoyce\nBen\nByron\nEdgar\nLoyd\nOliver\nRodger\nRoosevelt\nTheodore\nTommie\nVan\nChris\nDan\nDean\nJay\nJonathan\nLeo\nRandolph\nRonny\nTheodis\nCarlton\nCraig\nDwayne\nFredrick\nHomer\nOscar\nRobin\nSammie\nGilbert\nGordon\nHorace\nRocky\nStevie\nTravis\nWallace\nBryan\nJeff\nJon\nKarl\nOdell\nPeter\nSam\nSherman\nTom\nAlton\nAndy\nBernard\nBob\nBuddy\nCarroll\nDana\nDarnell\nDewayne\nFelix\nGuy\nHugh\nIvory\nKim\nMarty\nShelby\nTeddy\nCarlos\nCleveland\nCornelius\nDelbert\nDewey\nDexter\nErvin\nEverett\nGarland\nHubert\nJulius\nKent\nMax\nMorris\nNathan\nPreston\nRandal\nRuben\nTed\nWarren\nAubrey\nCharley\nClinton\nDannie\nDuane\nEdmond\nEllis\nGrady\nGreg\nIra\nJerome\nLanny\nLorenzo\nMalcolm\nMyron\nPhil\nTim\nWilbert\nAllan\nAmos\nCedric\nClay\nDwain\nElbert\nElijah\nIsaac\nJacky\nJerald\nManuel\nMarc\nOllie\nOwen\nRufus\nRusty\nSidney\nTimmy\nTracy\nTyrone\nWade\nAlonzo\nBuster\nClayton\nDarrel\nDaryl\nDave\nDickie\nElroy\nElton\nGaylon\nGerry\nIrvin\nJasper\nKelvin\nKennith\nLindsey\nPete\nRoland\nSterling\nStuart\nWardell\nWiley\nWinston\nAlvis\nButch\nDarwin\nDenny\nEldon\nEzell\nFletcher\nHershel\nKen\nLamar\nLowell\nMack\nMckinley\nMiles\nNolan\nScotty\nThurman\nVance\nWilbur\nWillard\nBoyce\nBrad\nBrent\nCarrol\nCary\nClark\nCornell\nCurley\nDerrick\nEmmitt\nGale\nHarley\nIvan\nJacob\nJame\nJason\nJewel\nJose\nJunior\nJustin\nKelly\nKendall\nMonte\nMoses\nNapoleon\nNelson\nOdis\nPercy\nQuentin\nRandell\nRiley\nRudy\nStan\nStephan\nTerrell\nVaughn\nWill\nWillis\nWilson\nJames\nDavid\nMichael\nRobert\nJohn\nWilliam\nCharles\nLarry\nJerry\nGary\nRichard\nKenneth\nBilly\nTerry\nDonald\nRandy\nThomas\nMark\nSteven\nDanny\nRonald\nJohnny\nJimmy\nBobby\nRicky\nDennis\nStephen\nJoe\nPaul\nRickey\nRonnie\nCarl\nWillie\nEdward\nEddie\nJoseph\nRoy\nGeorge\nTommy\nGregory\nRoger\nDaniel\nTimothy\nHenry\nSteve\nDouglas\nBruce\nHarold\nStanley\nPhillip\nAnthony\nRaymond\nJackie\nCurtis\nTony\nRandall\nRay\nSamuel\nDon\nKeith\nFrank\nMicheal\nLawrence\nCalvin\nJack\nRalph\nWalter\nAlvin\nDale\nLee\nLouis\nAlbert\nGerald\nMelvin\nClarence\nMarvin\nRodney\nDarrell\nJeffrey\nRussell\nAndrew\nFreddie\nKevin\nDwight\nDonnie\nJohnnie\nArthur\nBarry\nFloyd\nWayne\nEarl\nLonnie\nAlan\nTroy\nGarry\nEugene\nAllen\nGlen\nHoward\nScott\nBill\nFred\nPhilip\nLeon\nHerbert\nJessie\nLeonard\nErnest\nHarry\nChristopher\nEarnest\nJim\nMike\nFrederick\nHerman\nClifford\nGlenn\nChester\nJimmie\nLeroy\nAlfred\nJeffery\nJesse\nKenny\nLewis\nPatrick\nPerry\nCharlie\nLloyd\nMilton\nSammy\nVernon\nClyde\nMarcus\nRoosevelt\nFranklin\nLester\nOtis\nHarvey\nLeslie\nMartin\nMarty\nNorman\nSylvester\nBenjamin\nCecil\nMarion\nVictor\nBenny\nJoey\nRandal\nUnknown\nWesley\nClifton\nMitchell\nRobin\nArchie\nBrian\nFrankie\nTravis\nEdwin\nEllis\nGene\nAaron\nJay\nLuther\nReginald\nJerome\nRonny\nVirgil\nBennie\nDoyle\nNathaniel\nWallace\nGuy\nJoel\nKim\nTed\nTeddy\nBen\nDonny\nHubert\nJeff\nRex\nBryan\nFreddy\nHomer\nOscar\nPreston\nRocky\nTommie\nAndy\nBradley\nDean\nEdgar\nGarland\nJonathan\nKerry\nLeo\nMatthew\nRickie\nRoderick\nRodger\nSam\nSherman\nSidney\nDewayne\nMarshall\nOliver\nStevie\nWendell\nBuddy\nByron\nCarlos\nDan\nElmer\nErvin\nIra\nKirk\nLynn\nPercy\nPeter\nTracy\nCarlton\nCarroll\nChris\nGordon\nKennith\nLorenzo\nLoyd\nMickey\nTheodore\nVincent\nBoyce\nCraig\nDwayne\nElvis\nEric\nHorace\nHugh\nJon\nKent\nMack\nMax\nMorris\nSammie\nTyrone\nVan\nWarren\nAllan\nBob\nClaude\nDarryl\nDelbert\nElbert\nGaylon\nGreg\nHershel\nIsaac\nIvory\nJunior\nKarl\nKelvin\nKirby\nMaurice\nOllie\nRick\nRoyce\nTheodis\nBrad\nCary\nClinton\nDana\nDannie\nEverett\nFrancis\nFredrick\nGrady\nKelly\nLanny\nNicky\nRandolph\nRufus\nRusty\nTim\nTimmy\nTom\nWade\nWilbert\nWillard\nAlex\nAlton\nArnold\nChuck\nDarnell\nDarrel\nHal\nKen\nManuel\nMyron\nRuben\nAl\nAlonzo\nBryant\nCleo\nCleophus\nDave\nDewey\nDexter\nDonell\nDonnell\nEddy\nGilbert\nGrover\nHouston\nJose\nLowell\nMarc\nMarlon\nMichel\nMonte\nNathan\nNeil\nNelson\nNolan\nOdell\nOrville\nPat\nRandel\nRandell\nScotty\nStan\nSterling\nThurman\nWayman\nWinston\nBert\nBrent\nBurl\nDelton\nDenny\nDenver\nDickie\nEd\nForrest\nGerry\nHerschel\nIsaiah\nIsiah\nJacky\nJacob\nKendall\nLance\nLeotis\nNorris\nRobbie\nStuart\nVance\nWill\nAlexander\nArther\nBarney\nBernard\nBillie\nBoyd\nBroderick\nCarey\nClark\nClayton\nCleveland\nColumbus\nDamon\nDaryl\nDerek\nDick\nElton\nEmanuel\nErnie\nEverette\nGregg\nIssac\nJackey\nJuan\nKyle\nLovell\nMadison\nMiles\nMonty\nMurray\nNeal\nOdis\nRoland\nRory\nTerrell\nVernell\nWilbur\nWilfred\nWillis\nWinfred\nWoodrow\nJames\nDavid\nMichael\nJohn\nRobert\nCharles\nWilliam\nLarry\nTerry\nGary\nJerry\nKenneth\nMark\nRichard\nBilly\nDonald\nRicky\nRandy\nBobby\nThomas\nJimmy\nRonald\nSteven\nDanny\nDennis\nJohnny\nRickey\nRonnie\nWillie\nPaul\nRoger\nTimothy\nJoe\nGeorge\nTommy\nCarl\nGregory\nStephen\nEddie\nEdward\nSteve\nJoseph\nRoy\nTony\nPhillip\nBruce\nKeith\nDouglas\nDaniel\nStanley\nHenry\nWalter\nCalvin\nCurtis\nRaymond\nHarold\nJackie\nMelvin\nAnthony\nLee\nArthur\nMicheal\nWayne\nRandall\nSamuel\nJeffrey\nMike\nRodney\nRay\nDarrell\nDonnie\nFrank\nGerald\nAlbert\nLawrence\nRussell\nDon\nJeffery\nScott\nAlvin\nGlen\nJessie\nLonnie\nTroy\nKevin\nMarvin\nAlan\nGlenn\nAllen\nBill\nJack\nAndrew\nBarry\nFreddie\nJim\nJimmie\nLouis\nFloyd\nGarry\nLeonard\nPatrick\nEarl\nHoward\nLeroy\nDwight\nEugene\nKenny\nMartin\nJoel\nEarnest\nErnest\nDale\nFred\nLeon\nNorman\nRalph\nVernon\nBennie\nAlfred\nChristopher\nClarence\nHerman\nJesse\nLewis\nLloyd\nPerry\nJay\nReginald\nBrian\nFranklin\nPhilip\nVictor\nWesley\nFrederick\nMarty\nSammy\nUnknown\nBenny\nCharlie\nClyde\nClifford\nHarry\nElvis\nJohnnie\nLester\nRandal\nSylvester\nChester\nClifton\nMickey\nNathaniel\nEric\nGene\nLeslie\nMarcus\nOtis\nDoyle\nHarvey\nJoey\nHerbert\nJeff\nLeo\nMorris\nRick\nMitchell\nCraig\nGreg\nJerome\nDwayne\nEdwin\nKerry\nRoosevelt\nTed\nTimmy\nWarren\nAaron\nArchie\nBrent\nByron\nCecil\nClaude\nDan\nGordon\nMaurice\nRobin\nStevie\nBob\nBryan\nChris\nFrankie\nFredrick\nKelly\nMack\nMarshall\nMilton\nRex\nRonny\nTom\nTommie\nVincent\nBenjamin\nDonny\nGrady\nGuy\nMatthew\nOscar\nSherman\nTracy\nWendell\nAndy\nAubrey\nBen\nCarroll\nDana\nElbert\nGerry\nHubert\nJonathan\nKarl\nKennith\nLynn\nMarion\nPeter\nSammie\nTim\nTravis\nBernard\nBuddy\nCarlos\nCarlton\nDean\nEdgar\nJon\nJulius\nKim\nMonty\nRickie\nWade\nWallace\nWillis\nAlonzo\nArnold\nDarryl\nHal\nKent\nNelson\nRocky\nRodger\nSidney\nTeddy\nTheodore\nBoyd\nBrad\nBradley\nCedric\nDewayne\nDewey\nElmer\nKen\nMax\nRoyce\nTerrence\nClay\nDarnell\nFelix\nFreddy\nGilbert\nIra\nKelvin\nKyle\nNathan\nNeal\nOliver\nRufus\nVan\nWilbert\nAlexander\nClinton\nHorace\nIsaac\nLoyd\nMalcolm\nMonte\nMyron\nOdell\nPhil\nPreston\nReggie\nRon\nSam\nStuart\nVirgil\nWillard\nAllan\nChuck\nDannie\nDave\nEllis\nElton\nGarland\nHershel\nHomer\nJacky\nLuther\nNicholas\nOrville\nScotty\nTyrone\nVance\nClayton\nCleveland\nDaryl\nDerrick\nEddy\nEdmond\nGrant\nGrover\nHollis\nHugh\nJerald\nNeil\nNick\nPat\nPercy\nRobbie\nRoderick\nRusty\nSterling\nTodd\nAdolph\nAlex\nAlton\nAmos\nCary\nClark\nCleo\nDamon\nDenny\nDonell\nElijah\nEverett\nIvory\nKirk\nLevi\nMarlon\nMatt\nMoses\nRandell\nRoland\nShelby\nTheodis\nTrent\nWill\nAl\nAlfonso\nAndre\nBasil\nBert\nBurl\nCarey\nCarol\nClint\nConnie\nDarrel\nDexter\nDickie\nDonnell\nDoug\nDuane\nEd\nElroy\nEmmett\nErvin\nFelton\nGearld\nIrvin\nJacob\nJason\nJohnie\nLeland\nLoren\nLorenzo\nManuel\nMonroe\nNorris\nOdis\nRobby\nRuben\nShannon\nSilas\nSonny\nStan\nStephan\nStewart\nThurman\nWardell\nWaymon\nWilburn\nWinfred\nJames\nDavid\nMichael\nRobert\nJohn\nCharles\nWilliam\nLarry\nRicky\nJerry\nTerry\nKenneth\nGary\nMark\nRichard\nBilly\nDonald\nRonald\nJimmy\nBobby\nRandy\nDanny\nSteven\nPaul\nThomas\nDennis\nJohnny\nRickey\nWillie\nTimothy\nRonnie\nStephen\nJoe\nTony\nGregory\nTommy\nGeorge\nMike\nAnthony\nEddie\nSteve\nRoger\nJoseph\nKeith\nCarl\nEdward\nRoy\nBruce\nRandall\nCalvin\nDouglas\nPhillip\nDaniel\nRaymond\nStanley\nKevin\nHenry\nCurtis\nDarrell\nDonnie\nHarold\nMarvin\nAlan\nMicheal\nDale\nRodney\nBarry\nLee\nRay\nDon\nJeffrey\nSamuel\nAllen\nJackie\nBrian\nFrank\nScott\nAlvin\nJeffery\nLonnie\nRussell\nWalter\nFreddie\nMelvin\nArthur\nFloyd\nPerry\nClarence\nAndrew\nWayne\nGerald\nPatrick\nJim\nRalph\nTim\nLawrence\nAlbert\nEarl\nGarry\nJack\nJimmie\nKenny\nPhilip\nJohnnie\nLouis\nChristopher\nLeon\nEugene\nGlen\nLeroy\nLeonard\nBill\nDwight\nFred\nGlenn\nReginald\nVernon\nCharlie\nChris\nErnest\nHoward\nClifford\nEarnest\nLloyd\nMitchell\nLewis\nAlfred\nHerbert\nHerman\nVictor\nJeff\nJessie\nTroy\nWesley\nEric\nJay\nOtis\nTom\nClifton\nHarvey\nTravis\nCecil\nClyde\nFrederick\nMarty\nDoyle\nJesse\nJoey\nMarcus\nNathaniel\nSammy\nBryan\nFranklin\nGreg\nHarry\nLeslie\nMartin\nRandal\nSam\nCraig\nDwayne\nMorris\nBenny\nMickey\nNorman\nRick\nTimmy\nVincent\nWendell\nBenjamin\nByron\nLester\nMilton\nVirgil\nBennie\nBob\nClaude\nDan\nDave\nRoosevelt\nBen\nChester\nDewayne\nElvis\nFreddy\nGene\nKarl\nMatthew\nSammie\nSylvester\nTheodore\nUnknown\nWallace\nBernard\nEdwin\nFrankie\nIvory\nJoel\nJon\nRocky\nRonny\nSherman\nAllan\nAndy\nDarryl\nDean\nDelbert\nElmer\nNathan\nRickie\nTommie\nAaron\nClayton\nKerry\nMarshall\nPeter\nRobin\nStevie\nTracy\nFredrick\nGuy\nJerome\nKen\nKent\nLeo\nMaurice\nElbert\nElton\nElvin\nJonathan\nKelly\nPreston\nRon\nTeddy\nArnold\nBradley\nCarlos\nCleveland\nClinton\nDoug\nEverett\nKyle\nLuther\nMarion\nVan\nVance\nAlex\nBrett\nDerrick\nDuane\nEdgar\nGarland\nGerry\nGilbert\nGordon\nKim\nPat\nRusty\nTed\nTheodis\nWarren\nAl\nAubrey\nBrent\nClay\nDenny\nDonny\nGrady\nHal\nHubert\nPercy\nPhil\nRodger\nScotty\nStuart\nTerrell\nWade\nAlton\nArchie\nCarlton\nCoy\nDaryl\nEddy\nEllis\nHomer\nIra\nJacky\nJamie\nJody\nMatt\nNelson\nOscar\nPete\nRex\nRoland\nRoss\nSidney\nStan\nBart\nBret\nBuddy\nChuck\nDexter\nFrancis\nHorace\nKelvin\nLevi\nLowell\nLoyd\nMack\nManuel\nMarlon\nMyron\nNicky\nOdell\nOdis\nRandell\nRuben\nUlysses\nWillard\nAlvie\nAmos\nAndre\nBarney\nBobbie\nBrad\nCarroll\nCedric\nDarren\nDewey\nEdmond\nFelix\nGrant\nGrover\nHollis\nIsaac\nJose\nKennith\nLeland\nLynn\nMalcolm\nMonroe\nNick\nNoel\nOliver\nRandolph\nReggie\nRoyce\nSandy\nShelby\nTerence\nTodd\nToney\nTrent\nTyrone\nWilbur\nAlonzo\nAudie\nBillie\nCarey\nCleophus\nClint\nCornell\nDamon\nDana\nDarrel\nErnie\nErvin\nGalen\nGaylon\nHugh\nIsiah\nJacob\nJarvis\nJerald\nJewel\nJohnie\nJuan\nJulian\nJunior\nKirk\nKurt\nLance\nLanny\nLaurence\nMajor\nMitchel\nMoses\nNeal\nNeil\nOwen\nShane\nShawn\nSonny\nSterling\nVince\nWilburn\nWillis\nJames\nDavid\nMichael\nRobert\nJohn\nCharles\nWilliam\nMark\nRicky\nKenneth\nLarry\nRichard\nTerry\nJerry\nBilly\nGary\nTimothy\nSteven\nJimmy\nThomas\nBobby\nDonald\nRandy\nDennis\nPaul\nJohnny\nRonald\nRickey\nDanny\nGregory\nJoe\nTony\nRonnie\nStephen\nCarl\nWillie\nEddie\nTommy\nRoger\nGeorge\nAnthony\nJoseph\nRoy\nEdward\nKeith\nSteve\nMike\nPhillip\nDouglas\nRaymond\nJeffrey\nCurtis\nKevin\nDarrell\nBruce\nHarold\nDale\nStanley\nHenry\nDaniel\nJackie\nRandall\nJeffery\nSamuel\nFrank\nMelvin\nCalvin\nMicheal\nScott\nLee\nRussell\nTim\nRodney\nBrian\nDonnie\nTimmy\nAlan\nWalter\nChristopher\nAlvin\nPatrick\nArthur\nDon\nAllen\nClarence\nWayne\nJim\nKenny\nRay\nFreddie\nMarvin\nAlbert\nJimmie\nFred\nGerald\nPerry\nRalph\nEric\nGlenn\nGreg\nJeff\nJessie\nAndrew\nBarry\nBill\nEarl\nHoward\nLawrence\nReginald\nJay\nJesse\nLonnie\nFloyd\nJack\nLloyd\nCraig\nMarty\nEugene\nJohnnie\nPhilip\nTroy\nDwight\nLeroy\nLouis\nGarry\nLeonard\nSammy\nBennie\nBryan\nCharlie\nJoey\nChris\nClyde\nFrederick\nGlen\nJoel\nLeslie\nLewis\nMarcus\nClifford\nJon\nAlfred\nHerman\nMartin\nMilton\nMitchell\nCecil\nErnest\nTracy\nAaron\nBenny\nClifton\nRick\nVictor\nWesley\nBob\nFranklin\nVernon\nHarvey\nKelly\nVincent\nWendell\nDewayne\nDoyle\nHerbert\nLeon\nNathaniel\nOtis\nRoosevelt\nCarlton\nJerome\nNorman\nRickie\nTeddy\nTom\nTravis\nBenjamin\nChester\nClinton\nDarryl\nDonny\nElvis\nFrankie\nGene\nSam\nChuck\nDwayne\nKent\nMatthew\nHarry\nLester\nMickey\nRex\nWarren\nAndy\nByron\nClark\nClaude\nClayton\nDerrick\nFredrick\nOscar\nRusty\nSylvester\nTommie\nCedric\nEarnest\nEdwin\nKelvin\nKerry\nMaurice\nPeter\nStevie\nArchie\nBen\nGilbert\nGordon\nGrady\nJonathan\nKarl\nKim\nLynn\nMax\nOliver\nRandal\nRocky\nStuart\nWallace\nBrad\nBradley\nBrent\nDean\nDelbert\nGuy\nHomer\nLance\nMarshall\nNathan\nOdell\nRobbie\nTheodore\nClay\nClint\nDarrel\nDarren\nEverett\nFreddy\nLeo\nMorris\nRoderick\nSammie\nTed\nTyrone\nUnknown\nWillis\nAllan\nBart\nBernard\nBret\nBuddy\nCarroll\nCharley\nDan\nDarnell\nDave\nDexter\nEdgar\nErvin\nHal\nHubert\nIra\nIsaac\nMarion\nTheodis\nAlex\nAmos\nBrett\nCarlos\nElmer\nHugh\nIvan\nLoyd\nMack\nNeal\nNicky\nPat\nPreston\nRobin\nRoland\nRoyce\nThurman\nTodd\nDannie\nDaryl\nDoug\nGerry\nKyle\nMiles\nMonty\nPercy\nPhil\nRufus\nShannon\nSherman\nSidney\nTerrance\nTimmie\nVan\nWillard\nAlonzo\nAlton\nAubrey\nBlake\nCarey\nCary\nClaud\nDamon\nDickie\nDuane\nEllis\nElvin\nEmmett\nJamie\nKen\nKirk\nMarlon\nMyron\nNeil\nNick\nRon\nRonny\nRoss\nScotty\nWade\nWaymon\nAndre\nBillie\nDallas\nFrancis\nGarland\nGaylon\nHorace\nJacky\nJan\nJasper\nJerald\nJohnie\nJulius\nKendall\nLesley\nLowell\nMalcolm\nRandell\nRobby\nRodger\nShawn\nStan\nTrent\nVance\nWinston\nAlford\nArnold\nAustin\nBoyce\nButch\nCleophus\nCleveland\nColumbus\nConley\nDana\nDickey\nDonell\nDonnell\nDwain\nEddy\nElbert\nEldon\nElton\nEmanuel\nErwin\nFelix\nIsiah\nJody\nKelley\nKennith\nLuther\nManuel\nMichel\nNapoleon\nNelson\nNickey\nNorris\nOdis\nOwen\nReggie\nRose\nShelby\nStacy\nSterling\nTerrence\nWindell\nJames\nDavid\nMichael\nJohn\nRobert\nCharles\nWilliam\nMark\nTerry\nKenneth\nLarry\nJerry\nRichard\nGary\nRicky\nJimmy\nBilly\nTimothy\nDonald\nBobby\nSteven\nThomas\nRandy\nJohnny\nDanny\nTony\nRonald\nGregory\nPaul\nDennis\nRickey\nJoe\nAnthony\nMike\nWillie\nGeorge\nKevin\nCarl\nStephen\nTommy\nEdward\nRonnie\nEddie\nRoger\nRoy\nPhillip\nSteve\nKeith\nJoseph\nRandall\nCurtis\nDouglas\nJeffrey\nDarrell\nCalvin\nJeffery\nMelvin\nHarold\nRaymond\nDaniel\nStanley\nBarry\nMicheal\nDale\nBrian\nSamuel\nScott\nChristopher\nRussell\nBruce\nDon\nAlan\nWalter\nTim\nRay\nGerald\nLee\nJeff\nGreg\nRodney\nWayne\nDonnie\nFreddie\nKenny\nBill\nJackie\nLonnie\nMarvin\nChris\nArthur\nEric\nHenry\nJack\nBryan\nFrank\nPatrick\nAllen\nCraig\nHoward\nTimmy\nTracy\nRalph\nAlvin\nEarl\nPerry\nAlbert\nJim\nDwayne\nJessie\nTroy\nVictor\nDarryl\nJesse\nLouis\nMarty\nDwight\nGlenn\nLawrence\nAndrew\nFred\nEarnest\nJimmie\nClifford\nErnest\nEugene\nFloyd\nGlen\nMitchell\nClarence\nJay\nFrankie\nJoel\nJoey\nLeslie\nWesley\nLeroy\nOtis\nReginald\nGarry\nLewis\nMarcus\nSammy\nVernon\nFranklin\nFrederick\nMartin\nMatthew\nClyde\nDewayne\nHerman\nAaron\nBrent\nCharlie\nKerry\nLester\nStevie\nWendell\nDean\nHarry\nKelly\nJon\nPhilip\nTom\nTravis\nCecil\nKelvin\nLloyd\nNathan\nNathaniel\nClifton\nJohnnie\nLeonard\nNorman\nRex\nWarren\nBradley\nEdwin\nHerbert\nKirk\nLance\nLeon\nMilton\nRocky\nSylvester\nTed\nArchie\nBennie\nBenny\nChuck\nGordon\nHarvey\nRandal\nVincent\nAndy\nBenjamin\nByron\nJonathan\nRick\nRickie\nSidney\nAlfred\nCarroll\nDaryl\nFreddy\nHugh\nKent\nMickey\nRobin\nRoosevelt\nTodd\nTommie\nVirgil\nCedric\nChester\nClay\nClinton\nDoug\nDoyle\nEdgar\nGene\nLuther\nSam\nTheodore\nCarlton\nDave\nFredrick\nKim\nSammie\nSherman\nBernard\nDonny\nMaurice\nMonty\nNorris\nRusty\nArnold\nBen\nBrett\nClaude\nClayton\nDarren\nEllis\nEverett\nGilbert\nGregg\nPat\nRobbie\nRonny\nStuart\nTeddy\nWallace\nAmos\nAndre\nCarlos\nDan\nDuane\nElbert\nElvis\nErvin\nHorace\nKen\nLyle\nLynn\nMalcolm\nNicky\nPeter\nRoderick\nShawn\nVan\nAlton\nBret\nDerrick\nDewey\nDexter\nGrant\nHubert\nIra\nKyle\nMax\nPercy\nReggie\nRoyce\nRuben\nRufus\nWade\nBrad\nBuddy\nClint\nCoy\nElmer\nForrest\nGaylon\nGrady\nGuy\nIsaac\nJerome\nJulius\nKarl\nLoyd\nMack\nMorgan\nOwen\nPhil\nPreston\nStan\nTerrence\nTimmie\nWilbert\nAlex\nAllan\nAntonio\nBillie\nBob\nClark\nCleveland\nCornelius\nDarrel\nElroy\nGerry\nHal\nJarvis\nJody\nKennith\nKurt\nLeo\nMarc\nMarion\nMarshall\nMorris\nNeil\nNicholas\nRandell\nRodger\nScotty\nTerence\nTerrell\nTheodis\nToney\nTyrone\nUnknown\nWill\nWinston\nAlonzo\nAustin\nBart\nBert\nBobbie\nBoyd\nDenny\nElijah\nFabian\nGarland\nJacky\nJason\nLonzo\nLorenzo\nLouie\nNeal\nOdell\nOrville\nRobby\nRory\nShelby\nStewart\nWillis\nAdrian\nArtis\nAubrey\nBerry\nBooker\nBradford\nBritt\nCary\nCleo\nCornell\nDickie\nEd\nElmo\nElton\nFrancis\nGearld\nJerald\nKendall\nKenney\nKirby\nLanny\nLeander\nLuke\nManuel\nMonte\nMoses\nOllie\nPete\nRandel\nScottie\nToby\nWillard\nJames\nDavid\nMichael\nRobert\nJohn\nCharles\nWilliam\nMark\nKenneth\nRicky\nJerry\nLarry\nGary\nBilly\nTerry\nSteven\nRichard\nTimothy\nBobby\nJimmy\nGregory\nDonald\nDanny\nTony\nRandy\nRonald\nThomas\nJohnny\nDennis\nAnthony\nPaul\nRonnie\nKevin\nWillie\nJeffrey\nRickey\nTommy\nRoger\nSteve\nJeffery\nGeorge\nMike\nStephen\nJoe\nRoy\nEddie\nDouglas\nCarl\nKeith\nJoseph\nEdward\nChristopher\nScott\nCurtis\nJeff\nRaymond\nDarrell\nBrian\nCalvin\nRussell\nPhillip\nAlan\nDaniel\nBruce\nFrank\nJackie\nMicheal\nRandall\nRodney\nTim\nEric\nRay\nStanley\nBarry\nDale\nHarold\nKenny\nHenry\nFreddie\nGreg\nChris\nGerald\nAllen\nDon\nSamuel\nJim\nMelvin\nWalter\nWayne\nMarvin\nDonnie\nPatrick\nAlbert\nMitchell\nPhilip\nBryan\nJack\nAndrew\nClarence\nPerry\nRalph\nFloyd\nGlenn\nLee\nTracy\nKelly\nDarryl\nDwight\nLonnie\nFrederick\nTodd\nGlen\nTroy\nAlvin\nArthur\nMarty\nJon\nJay\nVictor\nEarl\nLawrence\nReginald\nBill\nCraig\nHoward\nJimmie\nDwayne\nTimmy\nFred\nDoyle\nJoey\nTravis\nJohnnie\nWesley\nErnest\nEugene\nLeonard\nAlfred\nJesse\nJoel\nLouis\nMartin\nLeon\nLeroy\nMilton\nSammy\nVernon\nAaron\nGarry\nLance\nBenny\nCecil\nFranklin\nHarvey\nVincent\nBradley\nHarry\nCedric\nJessie\nKelvin\nLeslie\nMarcus\nClifford\nNorman\nWendell\nBob\nBrent\nDoug\nFrankie\nGuy\nKerry\nLester\nMatthew\nClyde\nJerome\nLloyd\nOtis\nTom\nWarren\nBrad\nClifton\nDaryl\nDewayne\nGordon\nClayton\nHerman\nJonathan\nLynn\nNathaniel\nEarnest\nEverett\nMaurice\nRocky\nRoderick\nSam\nByron\nCharlie\nClay\nDonny\nGene\nKarl\nLeo\nLewis\nNathan\nPeter\nRobin\nRoosevelt\nSylvester\nAndy\nBennie\nChuck\nDuane\nEdwin\nHerbert\nKent\nBernard\nChester\nDarren\nFredrick\nGarland\nKirk\nRex\nRickie\nStevie\nTommie\nArchie\nBenjamin\nClark\nDean\nLuther\nMarshall\nMickey\nMorris\nRandal\nRonny\nSidney\nTheodore\nBuddy\nHomer\nJustin\nMarion\nMonty\nRick\nRobbie\nTed\nAdam\nAlexander\nBen\nDan\nDarrel\nDerek\nEdgar\nElton\nGilbert\nMax\nNicky\nShawn\nTyrone\nVirgil\nWade\nAmos\nArnold\nClinton\nDerrick\nElmer\nElvis\nFreddy\nJacky\nKim\nRoss\nRusty\nScotty\nTeddy\nToney\nBillie\nBobbie\nBrett\nCarlton\nFelix\nIra\nIvory\nJason\nJody\nJulius\nKendall\nMonte\nPhil\nPreston\nRobby\nRufus\nVan\nDarnell\nDelbert\nEllis\nGerry\nGrady\nJerald\nKen\nLoyd\nNorris\nRandell\nRandolph\nRodger\nSammie\nStan\nAllan\nBlake\nCarroll\nCleveland\nClint\nDana\nDannie\nDewey\nDexter\nGrant\nHubert\nJamie\nJulian\nKirby\nLorenzo\nMack\nMarlon\nMatt\nNeal\nOdis\nScottie\nVance\nWallace\nWill\nAl\nAlton\nAndre\nAntonio\nBoyce\nCarey\nCarlos\nChristian\nCornelius\nDave\nDavy\nDickie\nElbert\nErvin\nGregg\nGreggory\nJose\nJunior\nKyle\nLowell\nMalcolm\nMichel\nMonroe\nMorgan\nNick\nOdell\nOscar\nReggie\nRoland\nRon\nRoyce\nShannon\nThurman\nUlysses\nUnknown\nWillard\nWinfred\nAdrian\nAlex\nAlonzo\nArtis\nAubrey\nBritt\nBrooks\nCarol\nClaude\nCoy\nGaylon\nGrover\nHal\nIrvin\nIsaac\nJasper\nKennith\nKurt\nLamar\nLoren\nLuke\nMarc\nMiles\nOliver\nPercy\nRob\nSandy\nShane\nShelby\nSherman\nStuart\nTrent\nWillis\nJames\nDavid\nMichael\nRobert\nJohn\nCharles\nMark\nWilliam\nKenneth\nTerry\nGary\nJerry\nRichard\nBilly\nJimmy\nLarry\nRicky\nGregory\nSteven\nTimothy\nRandy\nDonald\nAnthony\nThomas\nTony\nPaul\nBobby\nJeffrey\nRonald\nDanny\nJohnny\nWillie\nKevin\nScott\nDennis\nCarl\nJoe\nRoger\nSteve\nTommy\nRonnie\nDouglas\nJeffery\nJoseph\nGeorge\nKeith\nPhillip\nEdward\nMike\nRickey\nStephen\nEddie\nChristopher\nBarry\nBrian\nRandall\nCurtis\nBruce\nRussell\nRoy\nDaniel\nDarrell\nGreg\nChris\nStanley\nJeff\nMicheal\nHenry\nHarold\nAlan\nCalvin\nTodd\nRaymond\nEric\nTim\nAllen\nSamuel\nDonnie\nLee\nRodney\nFrank\nTracy\nDale\nTroy\nDon\nJackie\nVincent\nGerald\nRay\nKenny\nMelvin\nTimmy\nWayne\nGlenn\nDarryl\nMarvin\nJim\nLawrence\nReginald\nWalter\nBryan\nEarl\nLance\nMarty\nMitchell\nJack\nKelly\nAlbert\nPerry\nAndrew\nVictor\nMartin\nDwight\nJoey\nJimmie\nArthur\nLonnie\nLouis\nPatrick\nClifford\nBill\nErnest\nFreddie\nFrederick\nGlen\nJay\nVernon\nWesley\nAlvin\nBradley\nCraig\nFloyd\nRalph\nClarence\nKerry\nLloyd\nPhilip\nFred\nLeslie\nSammy\nHoward\nJon\nLeon\nLewis\nMarcus\nDwayne\nJesse\nJoel\nNathan\nKent\nNathaniel\nTravis\nClyde\nGene\nJessie\nJonathan\nLeonard\nCedric\nEugene\nFranklin\nJohnnie\nLeroy\nMilton\nAaron\nEarnest\nGuy\nHarvey\nMatthew\nDewayne\nNorman\nScotty\nBob\nChuck\nDoyle\nJerome\nWendell\nCarlton\nClinton\nBrent\nByron\nDoug\nGarry\nHerbert\nMaurice\nRoderick\nSylvester\nTed\nAlfred\nChester\nFrankie\nFredrick\nKelvin\nTom\nBenjamin\nBenny\nCecil\nJason\nKarl\nKen\nOtis\nPeter\nRobin\nAdam\nAndre\nAndy\nBrett\nClifton\nDean\nEdwin\nMorris\nRobbie\nTommie\nBuddy\nCharlie\nDuane\nHarry\nLuther\nMarion\nRickie\nShannon\nStuart\nBennie\nBernard\nClay\nCornelius\nDonny\nGilbert\nKendall\nLynn\nOscar\nRandal\nSam\nTyrone\nBrad\nDaryl\nKirk\nKyle\nLester\nMarshall\nMonty\nPreston\nRocky\nRoosevelt\nShawn\nWillis\nClayton\nDan\nDelbert\nEdgar\nElvis\nHerman\nJulius\nMickey\nRex\nRick\nRoss\nTeddy\nTheodore\nWallace\nAntonio\nBen\nDave\nDerrick\nElmer\nGarland\nGordon\nLeo\nMarc\nMax\nNeal\nNelson\nRandell\nRoland\nStevie\nToney\nAlex\nCarlos\nClark\nClaude\nDana\nIvan\nJamie\nKurt\nPhil\nRusty\nSammie\nToby\nVan\nVirgil\nWade\nAlton\nArnold\nBarney\nBlake\nBobbie\nBritt\nCarroll\nCary\nDarren\nDerek\nEllis\nEverett\nFreddy\nKim\nRoyce\nScottie\nStacy\nTheodis\nVance\nWarren\nWillard\nAubrey\nBart\nClint\nCoy\nDonnell\nEddy\nForrest\nHomer\nHugh\nJacky\nLoyd\nMack\nMatt\nMonte\nMyron\nRobby\nSherman\nSidney\nAdrian\nArchie\nBryon\nChad\nDarnell\nDarrel\nDewey\nEd\nErvin\nGregg\nHershel\nHorace\nHubert\nHuey\nIra\nKennith\nLyndon\nMurray\nNick\nOliver\nOtha\nQuinton\nRandolph\nRodger\nRufus\nSandy\nSean\nStacey\nStan\nTerence\nBillie\nBoyd\nBret\nBrice\nCliff\nDane\nGrady\nGrant\nIsaac\nJacob\nJake\nJefferson\nJerald\nJeremiah\nJody\nJoesph\nJuan\nKirby\nMalvin\nMitch\nMorgan\nOllie\nPercy\nRichie\nRon\nSpencer\nStephan\nTerrell\nTrent\nTy\nWilburn\nWill\nJames\nMichael\nDavid\nJohn\nRobert\nCharles\nWilliam\nMark\nKenneth\nTerry\nRichard\nJerry\nSteven\nGary\nGregory\nJimmy\nBilly\nRicky\nTimothy\nLarry\nPaul\nKevin\nTony\nBobby\nDonald\nRandy\nThomas\nAnthony\nRonald\nDanny\nScott\nJohnny\nJeffrey\nKeith\nJeffery\nCarl\nRonnie\nStephen\nJoe\nJoseph\nTommy\nDennis\nWillie\nPhillip\nSteve\nDouglas\nRoger\nGeorge\nBrian\nMike\nEdward\nRoy\nChristopher\nBruce\nRandall\nEric\nPatrick\nDarrell\nRussell\nCurtis\nDaniel\nEddie\nBarry\nCalvin\nJeff\nRickey\nRaymond\nGreg\nTodd\nTim\nHarold\nRodney\nStanley\nLee\nMicheal\nRay\nSamuel\nTroy\nJackie\nDon\nAlan\nHenry\nKenny\nTimmy\nAllen\nGerald\nMarvin\nDonnie\nFrank\nMelvin\nChris\nAndrew\nBryan\nVictor\nVincent\nArthur\nDale\nTracy\nMarty\nAlvin\nWalter\nMitchell\nBill\nEarl\nJack\nLloyd\nReginald\nJessie\nLonnie\nBrent\nGlen\nWayne\nAlbert\nFred\nGlenn\nHoward\nJim\nBradley\nFrederick\nLawrence\nPerry\nWesley\nJay\nLeslie\nLeonard\nClarence\nDwight\nCraig\nJoey\nKelly\nMilton\nRalph\nTravis\nCharlie\nDarryl\nJonathan\nMartin\nPhilip\nFloyd\nFreddie\nJon\nWendell\nDewayne\nEugene\nLance\nLouis\nMatthew\nSammy\nVernon\nByron\nCecil\nDwayne\nJimmie\nKerry\nSam\nDerrick\nFranklin\nNorman\nScotty\nClifford\nDoug\nEarnest\nJesse\nJoel\nLeroy\nNathan\nAndy\nBenjamin\nHerbert\nHerman\nLewis\nStevie\nTeddy\nClinton\nKirk\nMarcus\nShawn\nAlfred\nFrankie\nNathaniel\nOtis\nAaron\nBenny\nBrad\nChester\nClifton\nEdwin\nFredrick\nGordon\nJohnnie\nKent\nLester\nLuther\nBen\nClayton\nClyde\nDonny\nKarl\nKyle\nRick\nRoosevelt\nWarren\nBennie\nBernard\nBrett\nClaude\nDan\nHarry\nKelvin\nPeter\nRoderick\nVirgil\nDarren\nDerek\nErnest\nGarry\nHarvey\nJerome\nSylvester\nCarlos\nClay\nDaryl\nDoyle\nGuy\nKendall\nLeon\nMaurice\nRobbie\nVance\nArnold\nCharley\nGrady\nIsaac\nKen\nRobin\nShannon\nStuart\nAdam\nCarlton\nDarrel\nDexter\nGene\nIra\nJamie\nMarc\nMarion\nRex\nRusty\nWallace\nChuck\nClark\nDean\nHugh\nJason\nRandal\nRickie\nWade\nWillis\nBuddy\nCary\nCedric\nDamon\nEverett\nFreddy\nHubert\nKim\nLynn\nManuel\nMarshall\nMax\nOscar\nRon\nSammie\nStacy\nTed\nVince\nAlton\nAndre\nBart\nDelbert\nEdgar\nElmer\nJustin\nMickey\nRobby\nRocky\nRodger\nRoss\nStoney\nTom\nTommie\nAlex\nBert\nBradford\nDewey\nElbert\nElvin\nElvis\nHal\nMorris\nNicky\nPhil\nReggie\nRoland\nRonny\nRoyce\nShane\nSherman\nStan\nWaymon\nAllan\nAlonzo\nCasey\nChip\nCornelius\nDave\nDuane\nGrant\nJulius\nKennith\nKirby\nLoyd\nLyle\nMonte\nNeal\nRandell\nRufus\nScottie\nShelby\nSheldon\nToby\nTrent\nTyrone\nVan\nArchie\nArtis\nBritt\nBryon\nCleveland\nCoy\nDannie\nDenny\nEddy\nGarland\nHomer\nHorace\nIvory\nJasper\nJerald\nLeland\nMack\nMalcolm\nMarlon\nMonty\nOdis\nOrlando\nPat\nQuentin\nRandolph\nRob\nScot\nTheodis\nToney\nUnknown\nWilson\nAl\nAntonio\nBob\nBobbie\nClint\nDana\nDane\nDonnell\nEd\nEldon\nEllis\nErvin\nForrest\nFrancis\nGilbert\nGregg\nGus\nHank\nHuey\nJody\nJulian\nKurt\nLenard\nLeo\nLevi\nLuke\nNelson\nNicholas\nNick\nNolan\nPreston\nQuinton\nRodrick\nSandy\nSidney\nSpencer\nTerrance\nTheodore\nThurman\nTracey\nWilbur\nWillard\nJames\nJohn\nMichael\nDavid\nRobert\nWilliam\nCharles\nMark\nRichard\nKenneth\nTimothy\nTerry\nSteven\nJimmy\nJerry\nGregory\nBilly\nGary\nKevin\nDonald\nBobby\nPaul\nAnthony\nLarry\nRicky\nRandy\nThomas\nJeffrey\nTony\nJohnny\nRonald\nDanny\nScott\nJeffery\nJoseph\nKeith\nEdward\nDennis\nCarl\nBrian\nGeorge\nJoe\nDouglas\nTommy\nPatrick\nRonnie\nWillie\nRoger\nSteve\nStephen\nPhillip\nRodney\nEddie\nChristopher\nDarrell\nDaniel\nEric\nMike\nJeff\nRandall\nRickey\nRussell\nCurtis\nAllen\nBruce\nRoy\nBarry\nMicheal\nHarold\nRaymond\nKenny\nGerald\nMarvin\nLee\nTodd\nCalvin\nStanley\nTroy\nAlan\nBryan\nGreg\nHenry\nAndrew\nChris\nSamuel\nDonnie\nWalter\nJoey\nDale\nVincent\nMarty\nFloyd\nMelvin\nRay\nWayne\nBradley\nJackie\nMitchell\nTracy\nVictor\nJack\nJim\nReginald\nTimmy\nJessie\nFrank\nJay\nPerry\nTim\nAlvin\nDon\nFrederick\nKelly\nLouis\nLeonard\nTravis\nHoward\nJoel\nMartin\nNathan\nCraig\nGlenn\nDwight\nEarl\nGlen\nJesse\nAaron\nFred\nBill\nClarence\nFreddie\nLeslie\nDerrick\nDwayne\nJimmie\nJon\nJonathan\nLewis\nLonnie\nMatthew\nPhilip\nLance\nNorman\nRalph\nSammy\nWesley\nAlbert\nBrad\nDewayne\nGene\nKerry\nOtis\nArthur\nBrent\nFranklin\nKirk\nLawrence\nShawn\nAlfred\nCharlie\nClifford\nEugene\nKelvin\nLeon\nMarcus\nBenjamin\nJohnnie\nVernon\nClifton\nAlex\nDarryl\nFrankie\nKent\nRandal\nTeddy\nWendell\nClyde\nDoyle\nHarry\nLloyd\nCecil\nEarnest\nErnest\nJason\nKendall\nRobbie\nScotty\nAndy\nBrett\nKen\nLeroy\nSam\nAndre\nDarren\nDoug\nEdwin\nStevie\nSylvester\nTom\nWade\nCedric\nClinton\nElmer\nHarvey\nKyle\nMaurice\nWarren\nChester\nClayton\nGordon\nLester\nRick\nRobin\nRocky\nSherman\nSidney\nTommie\nVirgil\nAdam\nBenny\nBob\nDan\nDaryl\nDean\nJamie\nLynn\nRoyce\nStuart\nBernard\nCarlos\nCary\nFredrick\nJerome\nKarl\nMarc\nNathaniel\nRobby\nTed\nElbert\nHerman\nMickey\nPeter\nRoderick\nTerrance\nTerrence\nVan\nCarlton\nChuck\nClark\nClay\nGarry\nLowell\nMarshall\nMonte\nNeal\nOscar\nRonny\nShannon\nTheodore\nWillis\nAllan\nBen\nBennie\nByron\nDana\nFelix\nGuy\nHerbert\nLuther\nMarion\nMilton\nMonty\nRickie\nRon\nTyrone\nArnold\nBart\nClaude\nDarin\nEdgar\nEllis\nErvin\nForrest\nFreddy\nHugh\nJody\nKennith\nMyron\nOdell\nRichie\nSean\nStacy\nVance\nVince\nWillard\nAdrian\nAntonio\nBuddy\nDarrel\nDerek\nDuane\nGerry\nJerrell\nLeo\nLoyd\nMatt\nMorris\nNeil\nPreston\nRandell\nRex\nRodger\nSpencer\nStan\nTrent\nAl\nAlford\nArchie\nAustin\nBillie\nCarroll\nDamon\nDenny\nDexter\nDonny\nHarley\nHomer\nHorace\nHubert\nIvan\nJerald\nKennedy\nKim\nKurt\nMalcolm\nNick\nOdis\nRoosevelt\nSammie\nShane\nStacey\nTerence\nAlton\nBlake\nBoyd\nBradford\nCornelius\nCoy\nDane\nDarrin\nDelbert\nDewey\nElton\nGarland\nGrady\nIra\nKirby\nLeland\nLoren\nMarlon\nNicky\nPhil\nShelby\nUnknown\nWill\nAlexander\nAmos\nAvery\nBrooks\nCarey\nChad\nCliff\nDallas\nDave\nDerwin\nElijah\nElvis\nFletcher\nGeoffrey\nGilbert\nGrant\nIvory\nJulian\nKenith\nLenny\nLindsey\nLonny\nLyndon\nManuel\nNoel\nOliver\nQuintin\nQuinton\nRandolph\nRitchie\nRoland\nRoss\nRusty\nTerrell\nToney\nTrey\nWilbert\nWilson\nWinfred\nZachary\nJames\nMichael\nDavid\nJohn\nRobert\nCharles\nWilliam\nKenneth\nMark\nKevin\nTimothy\nRichard\nGregory\nJerry\nTerry\nBilly\nGary\nAnthony\nThomas\nBobby\nSteven\nDonald\nPaul\nJeffrey\nRodney\nLarry\nTony\nRicky\nRandy\nJimmy\nRonald\nJohnny\nDanny\nChristopher\nTommy\nJeffery\nKeith\nJoseph\nScott\nDouglas\nBrian\nRonnie\nCarl\nStephen\nEdward\nDaniel\nWillie\nJoe\nRoger\nPhillip\nGeorge\nEric\nDennis\nEddie\nDarrell\nRandall\nRaymond\nRoy\nCurtis\nTracy\nSteve\nPatrick\nRickey\nRussell\nDarren\nSamuel\nChris\nBarry\nBryan\nTodd\nMike\nAllen\nJeff\nBruce\nHenry\nCalvin\nDarryl\nLee\nGerald\nMarvin\nWalter\nStanley\nTim\nTroy\nTimmy\nRay\nAndrew\nMicheal\nHarold\nMelvin\nJackie\nBradley\nFreddie\nFrederick\nWesley\nFrank\nReginald\nDon\nVincent\nJohnnie\nAlan\nDonnie\nEarl\nMatthew\nJoey\nCraig\nGlen\nGlenn\nKenny\nTravis\nAlbert\nGreg\nHoward\nVictor\nArthur\nJessie\nLonnie\nPerry\nDale\nKelly\nBill\nJimmie\nJon\nJonathan\nLawrence\nScotty\nDewayne\nEarnest\nJay\nLeslie\nNorman\nWayne\nErnest\nJason\nMarty\nVernon\nBrent\nByron\nCharlie\nFred\nLance\nRalph\nRoderick\nWendell\nAlvin\nBrett\nDarin\nJoel\nLeonard\nLeroy\nShawn\nBenjamin\nJim\nLloyd\nSammy\nTeddy\nClifford\nFloyd\nLewis\nMitchell\nPhilip\nClyde\nDerrick\nCedric\nClarence\nDarrin\nDwayne\nJack\nKelvin\nKen\nKerry\nLouis\nMarcus\nTom\nClifton\nEugene\nJerome\nMartin\nNathan\nBernard\nCecil\nDoyle\nDwight\nFrankie\nFranklin\nHerbert\nBennie\nBrad\nDaryl\nHarry\nHerman\nKirk\nNathaniel\nRobbie\nBenny\nCarlos\nGene\nHarvey\nKendall\nLeon\nMilton\nOtis\nSherman\nStacy\nAdam\nAndre\nAndy\nArnold\nBen\nChester\nDonny\nGuy\nJesse\nKyle\nVirgil\nWarren\nAaron\nBret\nDoug\nFredrick\nKent\nMaurice\nOscar\nRandal\nRickie\nRoosevelt\nSam\nShannon\nSylvester\nTyrone\nAlex\nClint\nIra\nJulius\nKelley\nLoyd\nLynn\nMonty\nPeter\nScottie\nTommie\nWade\nBob\nChuck\nDan\nDaren\nDerek\nKarl\nMyron\nRoland\nSean\nTheodore\nToby\nAntonio\nClark\nClinton\nDamon\nDean\nEdgar\nEdwin\nForrest\nFreddy\nGarry\nKim\nLester\nLuther\nMalcolm\nMarshall\nMorris\nNeal\nRick\nRocky\nVan\nBlake\nBryant\nChad\nDave\nElbert\nErik\nGerry\nGordon\nJamie\nMickey\nNoel\nPreston\nRex\nRobin\nRon\nStevie\nStuart\nTed\nTerrence\nAlonzo\nBryon\nCarey\nCary\nCasey\nDarron\nDarwin\nElmer\nEverett\nGilbert\nGrant\nHugh\nIvory\nKennith\nLeo\nMack\nManuel\nMichel\nNelson\nOdell\nRobby\nRodger\nRusty\nSammie\nShelby\nStan\nSterling\nThurman\nTrent\nVince\nAl\nAlexander\nAllan\nAlton\nArchie\nBart\nBuddy\nCharley\nCornelius\nDana\nDarrel\nDonell\nDrew\nFelix\nGrady\nHomer\nHorace\nIvan\nJulian\nKurt\nMarion\nMorgan\nNeil\nOliver\nRichie\nToney\nWill\nWinston\nAdrian\nAlfred\nBarton\nBillie\nBobbie\nBoris\nCarroll\nClay\nClayton\nDewey\nDexter\nElvis\nErvin\nGarland\nGlynn\nHarlan\nHubert\nJody\nJoesph\nJunior\nKirby\nLeland\nMac\nMarlin\nMatt\nPat\nPhil\nRyan\nShane\nSheldon\nStewart\nTheodis\nTheron\nWillard\nYul\nJames\nMichael\nJohn\nDavid\nRobert\nWilliam\nCharles\nMark\nSteven\nKenneth\nKevin\nGregory\nJerry\nRichard\nTimothy\nTerry\nGary\nBilly\nPaul\nLarry\nAnthony\nJimmy\nRodney\nThomas\nDonald\nJeffrey\nRonald\nRandy\nTony\nJeffery\nChristopher\nBrian\nBobby\nKeith\nStephen\nRicky\nDanny\nJoseph\nScott\nJohnny\nEric\nRoger\nCarl\nDaniel\nEdward\nDennis\nGeorge\nRonnie\nTommy\nJoe\nRandall\nPatrick\nDouglas\nBryan\nCurtis\nWillie\nRoy\nTracy\nMarvin\nEddie\nDarrell\nHarold\nDarren\nPhillip\nRaymond\nSamuel\nChris\nTodd\nMicheal\nRussell\nBarry\nSteve\nBruce\nLee\nRickey\nTim\nAllen\nMelvin\nTroy\nGerald\nHenry\nMike\nFrank\nJon\nDonnie\nAlan\nJeff\nTimmy\nAndrew\nBradley\nStanley\nVincent\nMatthew\nClarence\nDarryl\nJack\nJason\nReginald\nShawn\nCalvin\nJonathan\nKelly\nLonnie\nGreg\nJim\nAlbert\nDon\nTravis\nJessie\nLance\nRay\nVictor\nWalter\nFrederick\nWesley\nHoward\nJay\nMarty\nPhilip\nDale\nDewayne\nJoel\nCraig\nDerrick\nJackie\nJesse\nKenny\nKerry\nLeonard\nWayne\nAlfred\nArthur\nCedric\nNorman\nDarrin\nEarnest\nFloyd\nGlenn\nLouis\nSammy\nScotty\nFred\nFreddie\nKelvin\nLawrence\nLeon\nNathan\nSean\nBenjamin\nBrett\nClifton\nDarin\nGlen\nDwight\nFranklin\nAaron\nBrent\nByron\nCharlie\nJimmie\nJoey\nPerry\nChad\nDoyle\nKyle\nLeslie\nMartin\nRalph\nScottie\nShannon\nVernon\nDwayne\nFredrick\nMitchell\nAlvin\nBrad\nDean\nClifford\nHerman\nWade\nWendell\nClyde\nEdwin\nErnest\nFrankie\nLloyd\nRoderick\nStacy\nBill\nEugene\nEverett\nHarvey\nJody\nNathaniel\nCasey\nCecil\nClay\nDarron\nDonny\nEarl\nGarry\nGene\nHerbert\nKent\nLewis\nMarcus\nRandal\nWarren\nBennie\nCarroll\nJohnnie\nLeroy\nLester\nMorris\nRick\nShane\nTeddy\nAdam\nBenny\nChester\nHarry\nKen\nLuther\nMilton\nOtis\nRoosevelt\nTyrone\nChuck\nJerome\nKurt\nLeo\nMarion\nMarshall\nMickey\nRobbie\nStacey\nAdrian\nArchie\nCarlos\nCary\nClark\nClaude\nDerek\nDexter\nDoug\nIra\nJamie\nKendall\nKim\nRoland\nRoss\nSam\nSammie\nShelby\nSheldon\nSherman\nCarlton\nClayton\nClinton\nDaron\nDarrel\nDave\nDuane\nElbert\nGordon\nHugh\nJeffry\nJustin\nKirk\nLynn\nMatt\nMaurice\nMax\nMonty\nPeter\nRex\nRocky\nRodger\nRonny\nSidney\nStuart\nSylvester\nVan\nWallace\nWillis\nAlex\nAmos\nAndre\nAndy\nAntonio\nArnold\nBart\nBryant\nCoy\nDamon\nFreddy\nGarland\nJacky\nJarrod\nMarc\nNeal\nOdell\nOrlando\nRandell\nRandolph\nRickie\nStevie\nTed\nTommie\nWillard\nBen\nBernard\nBret\nBuddy\nClint\nDallas\nDan\nDaryl\nDerwin\nElvis\nEmanuel\nGilbert\nIvory\nJuan\nJulian\nJulius\nKarl\nLoyd\nMarlin\nMorgan\nNelson\nOscar\nPreston\nRobby\nRusty\nSpencer\nStewart\nTerence\nTerrance\nTom\nAlton\nAndrea\nBillie\nBradford\nCharley\nDelbert\nDwain\nElijah\nElliott\nEmmett\nErvin\nGrady\nGrant\nGreggory\nGuy\nHeath\nIsaac\nIvan\nLanny\nManuel\nMiles\nNeil\nNicholas\nNicky\nOliver\nRufus\nStan\nSterling\nTheodis\nTheodore\nTrent\nWilbert\nWill\nZachary\nJames\nMichael\nDavid\nJohn\nRobert\nWilliam\nMark\nCharles\nTimothy\nKenneth\nKevin\nRichard\nSteven\nTerry\nJerry\nJeffrey\nBrian\nChristopher\nGregory\nAnthony\nJimmy\nLarry\nBilly\nPaul\nThomas\nRonald\nGary\nRodney\nKeith\nTony\nDonald\nBobby\nJoseph\nStephen\nEric\nRandy\nJohnny\nJeffery\nDanny\nScott\nRicky\nDaniel\nEdward\nBryan\nGeorge\nDouglas\nRonnie\nJoe\nTodd\nPatrick\nWillie\nDarrell\nRandall\nRoger\nTommy\nCarl\nRaymond\nPhillip\nChris\nTracy\nStacy\nDennis\nRussell\nCurtis\nMike\nRoy\nHarold\nDarren\nGerald\nMarvin\nRickey\nSteve\nTimmy\nMatthew\nTravis\nAlan\nJon\nCalvin\nTroy\nLee\nBarry\nJeff\nMicheal\nBruce\nSamuel\nStanley\nVincent\nAndrew\nEddie\nJay\nShawn\nTim\nDonnie\nAllen\nHenry\nAlvin\nDale\nDon\nWalter\nArthur\nKelly\nKelvin\nRoderick\nDerrick\nLawrence\nBradley\nGlen\nJessie\nJonathan\nShannon\nAlbert\nJack\nJason\nCraig\nDewayne\nFrank\nGreg\nJackie\nMelvin\nBrent\nDarrin\nReginald\nScotty\nWesley\nGlenn\nHoward\nJimmie\nRay\nBrad\nFloyd\nLance\nClifford\nEarl\nMartin\nJoel\nKenny\nMarty\nMitchell\nNathan\nRalph\nVictor\nBrett\nFred\nFreddie\nPhilip\nVernon\nWayne\nAaron\nEugene\nJoey\nLloyd\nLouis\nChad\nJesse\nJim\nLonnie\nMarcus\nShane\nBill\nErnest\nNorman\nPerry\nSean\nByron\nClifton\nDoyle\nKent\nKyle\nAndy\nBenjamin\nClarence\nEarnest\nFrederick\nJody\nJohnnie\nKirk\nLeonard\nLeslie\nDarryl\nDwight\nFranklin\nHerbert\nKerry\nStacey\nAndre\nCarlos\nDamon\nDwayne\nFrankie\nFredrick\nGene\nMaurice\nNicholas\nWade\nAdam\nBernard\nBryant\nCedric\nEdwin\nLeon\nLester\nRandal\nSammy\nCharlie\nDarin\nHeath\nJerome\nLeroy\nLewis\nStevie\nWarren\nAlfred\nDerek\nGarry\nHerman\nLynn\nMarshall\nNathaniel\nPreston\nTerrence\nAntonio\nBen\nClaude\nClyde\nElvis\nJamie\nKim\nMarion\nRobbie\nScottie\nSylvester\nTerrance\nCecil\nChester\nClayton\nClinton\nDoug\nEdgar\nFreddy\nJustin\nMickey\nMilton\nOtis\nPercy\nRickie\nRyan\nTeddy\nTheodis\nWallace\nWendell\nArchie\nBenny\nClint\nEverett\nHarvey\nKelley\nLanny\nLoyd\nRex\nRusty\nSherman\nStuart\nBob\nBuddy\nCasey\nChuck\nClark\nDana\nDave\nDuane\nElmer\nGordon\nHarry\nKendall\nKennith\nMarc\nMorris\nRobby\nRocky\nRoosevelt\nTed\nTerence\nTommie\nTyrone\nAlex\nBart\nBobbie\nBret\nBritt\nCarey\nCary\nCleveland\nDan\nDaren\nDarnell\nDarron\nDean\nDelbert\nFarrell\nGrant\nHorace\nJacob\nJeremy\nKen\nKurt\nLeo\nMack\nNeil\nNicky\nNoel\nOliver\nPeter\nRoland\nRonny\nRufus\nSammie\nShaun\nSidney\nSpencer\nThurman\nToby\nTom\nToney\nTracey\nVan\nVirgil\nWill\nAudie\nBennie\nBert\nCarroll\nClay\nCoy\nDannie\nDaron\nDerick\nDexter\nErik\nFelix\nGuy\nHugh\nHunter\nIra\nIvory\nKirby\nLoren\nLouie\nMalcolm\nMonty\nNick\nRodrick\nRoss\nSam\nSandy\nStefan\nVance\nVince\nWillis\nWinston\nJames\nMichael\nJohn\nDavid\nRobert\nCharles\nWilliam\nMark\nKevin\nTimothy\nSteven\nRichard\nAnthony\nJeffrey\nBrian\nKenneth\nChristopher\nJerry\nGary\nTerry\nGregory\nRonald\nPaul\nLarry\nJimmy\nBilly\nThomas\nDonald\nJeffery\nBobby\nScott\nTony\nJohnny\nKeith\nStephen\nRicky\nRodney\nPatrick\nEric\nJoseph\nRandy\nBryan\nDaniel\nDouglas\nEdward\nWillie\nTodd\nRonnie\nDarrell\nTommy\nDanny\nShawn\nGeorge\nJoe\nRoger\nCarl\nPhillip\nRussell\nDennis\nLee\nMatthew\nChris\nJason\nRaymond\nRoy\nSamuel\nStacy\nCurtis\nRandall\nTracy\nTroy\nJeff\nKelly\nCalvin\nShannon\nDarren\nMarvin\nBruce\nGerald\nAndrew\nCraig\nSean\nEddie\nSteve\nRay\nBradley\nMicheal\nTravis\nAlan\nAllen\nHenry\nJon\nJonathan\nRickey\nEarl\nMarty\nReginald\nArthur\nBarry\nMartin\nHarold\nAlvin\nChad\nJackie\nDon\nDonnie\nJay\nShane\nStanley\nVictor\nWesley\nFrank\nVincent\nDale\nFreddie\nLance\nMelvin\nGreg\nMike\nPhilip\nTimmy\nWalter\nClarence\nJack\nKenny\nClinton\nFloyd\nJoey\nMarcus\nWayne\nAndre\nBrent\nDewayne\nGlenn\nLonnie\nBenjamin\nJessie\nJoel\nLouis\nNathan\nPerry\nDarin\nHerbert\nLeonard\nTim\nAaron\nDerrick\nGlen\nJim\nLawrence\nLeroy\nMitchell\nScotty\nAndy\nDarryl\nJimmie\nRoderick\nBrad\nClayton\nDarrin\nDerek\nDexter\nGene\nHoward\nKyle\nVernon\nBrett\nByron\nCedric\nCharlie\nKelvin\nKendall\nOtis\nStacey\nAlbert\nClifford\nDwayne\nFrederick\nMaurice\nWendell\nCarlos\nDaryl\nEdwin\nFred\nLeon\nLewis\nLloyd\nSammy\nWade\nDan\nDarrel\nJesse\nJody\nNathaniel\nStevie\nTeddy\nBenny\nCecil\nCorey\nDwight\nEugene\nFredrick\nHeath\nKent\nLeslie\nClyde\nDamon\nErnest\nHarvey\nJustin\nKerry\nNorman\nRex\nAlfred\nAntonio\nCarlton\nClay\nClifton\nFranklin\nHerman\nJamie\nKirk\nPeter\nRyan\nScottie\nBart\nBill\nDaren\nDean\nDuane\nEarnest\nRonny\nRoss\nStuart\nAdam\nBryant\nElvis\nEverett\nFrankie\nGuy\nHarry\nJerome\nJohnnie\nLester\nMarc\nMilton\nMorris\nNicholas\nPreston\nRalph\nRobbie\nRoosevelt\nTed\nToby\nToney\nTyrone\nVirgil\nWarren\nBen\nBennie\nMarshall\nMax\nMonty\nSam\nTerrance\nTommie\nAlex\nBradford\nBrandon\nCarey\nChester\nClaude\nCody\nDaron\nDarwin\nGarland\nGerry\nGordon\nGregg\nHorace\nKim\nLuther\nManuel\nOrlando\nRichie\nSammie\nSherman\nWallace\nAllan\nAndrea\nBernard\nBlake\nBoyd\nBryon\nClark\nClint\nDana\nDoyle\nEdgar\nFelix\nJared\nJeremy\nKelley\nKen\nLeo\nLindsey\nLynn\nMack\nMarion\nMyron\nNeil\nOscar\nRickie\nShaun\nSpencer\nTerence\nTy\nVance\nWaylon\nBert\nBret\nBuddy\nCarroll\nCasey\nCliff\nDemetrius\nDerick\nDonny\nDonovan\nDusty\nElmer\nEmmett\nGabriel\nGilbert\nIvan\nJulius\nKarl\nKris\nLesley\nLyle\nMario\nMorgan\nOliver\nPhil\nRick\nRocky\nRon\nRusty\nSterling\nStewart\nTimmie\nTracey\nVan\nMichael\nJames\nJohn\nDavid\nRobert\nWilliam\nCharles\nMark\nChristopher\nKevin\nSteven\nBrian\nTimothy\nRichard\nJeffrey\nAnthony\nKenneth\nGary\nGregory\nThomas\nLarry\nJerry\nTerry\nStephen\nJimmy\nRodney\nBilly\nDonald\nPaul\nEric\nBobby\nJoseph\nJeffery\nTony\nScott\nJason\nRonald\nJohnny\nDanny\nBryan\nKeith\nRandy\nRicky\nTommy\nPatrick\nDaniel\nJoe\nRussell\nPhillip\nBradley\nGeorge\nTodd\nDouglas\nWillie\nRoger\nEddie\nEdward\nMatthew\nCarl\nChris\nCorey\nTracy\nDennis\nJonathan\nSamuel\nRaymond\nShawn\nBruce\nRoy\nShannon\nAndrew\nRandall\nRonnie\nKelly\nDarrell\nDarren\nMicheal\nSean\nAllen\nBarry\nJon\nTroy\nCalvin\nCraig\nLee\nChad\nCurtis\nWalter\nReginald\nTravis\nMarvin\nSteve\nVincent\nAlan\nGerald\nHenry\nMarcus\nWesley\nBrad\nLawrence\nRickey\nStanley\nLance\nStacy\nJoey\nDonnie\nHarold\nScotty\nDon\nDerrick\nFreddie\nJeff\nJessie\nAaron\nAlvin\nArthur\nBrent\nMelvin\nAlbert\nClarence\nGreg\nTimmy\nKyle\nAndy\nGlen\nJack\nJoel\nClifton\nClinton\nDale\nFloyd\nJay\nLonnie\nMitchell\nTyrone\nWayne\nBrett\nDerek\nFranklin\nGlenn\nKirk\nLeonard\nJody\nKerry\nRay\nShane\nFrederick\nJesse\nMike\nTim\nBenjamin\nDarrin\nJimmie\nKenny\nPhilip\nCedric\nClayton\nDamon\nJeremy\nJustin\nLeon\nMartin\nMarty\nBill\nDean\nDwight\nErnest\nJackie\nLeslie\nMarc\nSammy\nDarin\nKelvin\nLouis\nNathan\nVictor\nFrank\nHoward\nRyan\nEarl\nEarnest\nFred\nJamie\nJim\nMaurice\nPerry\nTeddy\nBernard\nBryant\nCharlie\nFredrick\nJerome\nKendall\nNorman\nRalph\nRandal\nAdam\nAlex\nBrandon\nClifford\nClint\nDexter\nDoyle\nNeal\nNicholas\nOtis\nRoderick\nStacey\nVernon\nWarren\nAlfred\nByron\nDarryl\nDaryl\nGarry\nJohnnie\nKent\nLeroy\nLloyd\nMonte\nMorris\nSylvester\nTheodore\nAndre\nCasey\nCecil\nDewayne\nEugene\nHugh\nJared\nMarion\nMax\nRandell\nRusty\nArchie\nCary\nChuck\nClay\nDan\nDana\nDwayne\nEdwin\nEverett\nGuy\nHeath\nHerbert\nJohnathan\nLynn\nMatt\nMickey\nNathaniel\nOscar\nRobin\nStewart\nToby\nVance\nWendell\nBart\nBuddy\nCory\nDustin\nElmer\nFrankie\nGene\nGerry\nGordon\nHarvey\nHerman\nMalcolm\nPreston\nRobbie\nSam\nSpencer\nTom\nTrevor\nVirgil\nWade\nAlexander\nArnold\nAvery\nBryon\nCarlton\nDallas\nDaren\nDarrel\nDarron\nDenny\nDoug\nEdgar\nErvin\nFreddy\nGrady\nHarry\nIra\nJuan\nKarl\nLewis\nMilton\nMyron\nNeil\nReggie\nRex\nRoss\nRufus\nShelby\nStuart\nToney\nAllan\nAntonio\nBennie\nBenny\nBradford\nCarey\nCarlos\nCedrick\nChester\nCliff\nCody\nDonny\nDuane\nGeoffrey\nHubert\nKennith\nKurt\nLorenzo\nLuther\nNick\nNoel\nRick\nRon\nRoosevelt\nScottie\nAlonzo\nAlton\nAshley\nBlake\nBob\nBret\nClaude\nClyde\nDalton\nDarius\nDevin\nDewey\nGarland\nJacob\nKelley\nKirby\nLamar\nLoyd\nLyle\nMarshall\nMonty\nOliver\nPeter\nRocky\nRonny\nScot\nSherman\nTerrance\nTerrell\nTommie\nTracey\nTrent\nWallace\nWilbert\nJames\nMichael\nDavid\nJohn\nRobert\nWilliam\nKevin\nChristopher\nCharles\nMark\nSteven\nAnthony\nBrian\nJason\nTimothy\nGregory\nRichard\nJeffrey\nKenneth\nJerry\nEric\nLarry\nThomas\nGary\nPaul\nJeffery\nScott\nStephen\nJimmy\nBilly\nJoseph\nBobby\nDonald\nJohnny\nTerry\nRonald\nKeith\nRodney\nMarcus\nDaniel\nTony\nShawn\nMatthew\nPhillip\nTodd\nPatrick\nDennis\nBryan\nRandy\nChris\nBradley\nDanny\nEdward\nJoe\nDouglas\nRonnie\nGeorge\nRicky\nRoy\nCurtis\nTommy\nCarl\nRussell\nShannon\nJon\nRoger\nLance\nDarrell\nJonathan\nWillie\nTravis\nChad\nShane\nBrent\nAndrew\nJeff\nRaymond\nTroy\nAaron\nBrad\nDerrick\nMicheal\nEddie\nCraig\nDarren\nWesley\nHenry\nRandall\nMarvin\nStacy\nTracy\nJeremy\nKelly\nBruce\nBarry\nBrandon\nAllen\nCalvin\nCorey\nGerald\nLee\nMarty\nSamuel\nStanley\nWalter\nHarold\nDon\nKyle\nRickey\nSteve\nAlan\nDerek\nDonnie\nJay\nAndre\nBenjamin\nClarence\nJamie\nMike\nReginald\nTyrone\nGlen\nMelvin\nSean\nCedric\nLonnie\nDale\nFrank\nHeath\nJesse\nAlbert\nJody\nKenny\nMitchell\nNathan\nScotty\nVincent\nJackie\nEarl\nFrederick\nHoward\nJack\nJoel\nJoey\nPhilip\nVernon\nAlvin\nArthur\nBrett\nGlenn\nJimmie\nVictor\nDwayne\nRay\nRoderick\nBryant\nByron\nClinton\nEarnest\nFredrick\nJim\nJustin\nLawrence\nLouis\nDewayne\nErnest\nGreg\nJerome\nJohnnie\nDexter\nEdwin\nGene\nKelvin\nKerry\nKirk\nLloyd\nSammy\nClifford\nEugene\nNorman\nWayne\nAntonio\nCarlos\nFred\nGarry\nJessie\nMarc\nMartin\nMaurice\nPerry\nRalph\nToby\nClay\nDarrin\nFloyd\nFrankie\nFranklin\nLeonard\nLeslie\nStacey\nTeddy\nTim\nWade\nAlex\nBennie\nBernard\nCarlton\nCasey\nDaryl\nJarrod\nLewis\nRobby\nBill\nCecil\nClifton\nClint\nFreddie\nJared\nKendall\nLeroy\nLester\nMarshall\nOtis\nRyan\nStevie\nTimmy\nAlexander\nAlfred\nAllan\nBart\nBret\nDean\nDemetrius\nDustin\nFreddy\nGrant\nHarry\nIvory\nLeon\nMickey\nPreston\nWarren\nAdrian\nBenny\nCary\nDarryl\nDuane\nJoshua\nMarlon\nMonty\nRex\nRobbie\nRoosevelt\nScottie\nShelby\nVance\nAndy\nBen\nCharlie\nClayton\nDamon\nDwight\nForrest\nGordon\nGregg\nHerbert\nIsaac\nMarion\nNicholas\nPeter\nRusty\nSidney\nTommie\nWill\nAlton\nArchie\nCarroll\nCleveland\nClyde\nDelbert\nDoyle\nGuy\nHerman\nJerald\nJohnathan\nLynn\nMonte\nNathaniel\nRobin\nRon\nSherman\nStuart\nTerrance\nTerrence\nTom\nWendell\nBlake\nBrady\nClark\nCory\nDallas\nDevin\nEd\nErik\nEverett\nHershel\nJamey\nKarl\nLeland\nLesley\nMyron\nNick\nNoble\nNoel\nOscar\nQuentin\nRocky\nRoss\nTheodore\nTracey\nTrent\nWillis\nAdam\nAshley\nAubrey\nAustin\nAvery\nBillie\nBryon\nCarey\nChuck\nDan\nDaren\nDarin\nDarrick\nDarron\nDusty\nEdgar\nElmer\nErick\nGarland\nGeoffrey\nJefferson\nJose\nKendrick\nKent\nKirby\nKurt\nLane\nLeodis\nLoren\nLorenzo\nLuke\nLyle\nMario\nMikel\nMorris\nNeal\nOrlando\nRick\nRodrick\nSammie\nSpencer\nSylvester\nTheodis\nToney\nTy\nVan\nVirgil\nMichael\nJames\nJohn\nChristopher\nDavid\nRobert\nWilliam\nBrian\nCharles\nKevin\nJason\nMark\nSteven\nRichard\nScott\nGregory\nAnthony\nThomas\nKenneth\nTimothy\nJeffrey\nJoseph\nEric\nLarry\nBilly\nGary\nPaul\nJerry\nJeffery\nJimmy\nMatthew\nShawn\nStephen\nBobby\nKeith\nTony\nChad\nTerry\nJohnny\nDaniel\nRonald\nDonald\nPatrick\nRodney\nMarcus\nDanny\nBryan\nChris\nGeorge\nDouglas\nRicky\nRandy\nBradley\nJonathan\nJeremy\nEdward\nDennis\nRonnie\nShannon\nTommy\nPhillip\nRoger\nRussell\nTodd\nTravis\nCarl\nJoe\nRandall\nRoy\nSamuel\nCurtis\nBrent\nShane\nAaron\nDarrell\nTracy\nWillie\nEddie\nLance\nSean\nDerrick\nJon\nRaymond\nAndrew\nAllen\nWesley\nMicheal\nScotty\nWalter\nBruce\nCorey\nCraig\nLee\nJay\nAlan\nMarvin\nBrad\nHarold\nHenry\nAndre\nBarry\nCalvin\nStanley\nBrandon\nDarren\nFrederick\nFredrick\nGerald\nJamie\nJeff\nJody\nJustin\nAlvin\nJoey\nScottie\nTroy\nSteve\nTyrone\nClayton\nJackie\nReginald\nJoel\nLonnie\nStacy\nAdam\nBenjamin\nClinton\nDale\nDerek\nJesse\nRyan\nCedric\nClifton\nHeath\nKenny\nLeonard\nMike\nRoderick\nBrett\nDustin\nGreg\nPeter\nRickey\nVincent\nKelly\nMarty\nRay\nVernon\nErnest\nFloyd\nKelvin\nNathan\nAlbert\nDon\nKirk\nMelvin\nWayne\nJessie\nJohnnie\nKendall\nKyle\nLawrence\nTimmy\nDewayne\nDonnie\nFreddie\nGlen\nJack\nJimmie\nMaurice\nWarren\nByron\nCasey\nEarnest\nHoward\nJerome\nKerry\nLouis\nPerry\nPhilip\nVictor\nBryant\nChester\nClay\nClyde\nDaryl\nFrank\nFranklin\nGlenn\nHerbert\nMitchell\nOtis\nAndy\nBlake\nBrady\nCarlos\nCory\nDamon\nFrankie\nMarlon\nNorman\nTim\nWade\nAntonio\nArthur\nCecil\nClarence\nDwight\nHarry\nJoshua\nKendrick\nLeslie\nLewis\nLloyd\nMartin\nNathaniel\nTeddy\nClifford\nCody\nDarrel\nDexter\nEarl\nMatt\nDarin\nEugene\nGene\nGuy\nHerman\nLeon\nMonty\nRandal\nRex\nSam\nSammy\nWillis\nBill\nDoyle\nErik\nEverett\nGarry\nLester\nStacey\nAdrian\nAlfred\nBen\nCharlie\nClint\nDarrin\nDwayne\nFred\nGeoffrey\nJared\nJim\nMarc\nMickey\nMorris\nPreston\nRonny\nRusty\nSylvester\nToby\nVance\nWendell\nAllan\nBart\nBrooks\nBuddy\nCarlton\nChuck\nDan\nDonny\nEdwin\nKarl\nKent\nMathew\nNeal\nNicholas\nRalph\nRobby\nStevie\nTed\nTheodore\nVirgil\nAlexander\nBroderick\nCarroll\nCary\nChristian\nDelbert\nDemetrius\nDrew\nErick\nGordon\nHarvey\nIra\nKurt\nLeroy\nRon\nSherman\nStewart\nTom\nTrevor\nAlex\nAustin\nBennie\nBerry\nBret\nBryce\nDallas\nDaren\nFelix\nForrest\nJacky\nJarrod\nJeffry\nJerald\nLoyd\nMilton\nMonte\nQuinton\nReggie\nRoyce\nSidney\nStuart\nTerrence\nZachary\nAlton\nAndrea\nBenny\nChance\nDalton\nDarryl\nDavis\nDevin\nElmer\nElvis\nFarrell\nGabriel\nIsaac\nJammie\nJarrett\nJohnathan\nJuan\nKris\nLamar\nLorne\nLuther\nLynn\nMarion\nMarshall\nMorgan\nMyron\nNeil\nRobbie\nRocky\nRodrick\nRoosevelt\nRoss\nRufus\nSeth\nShelby\nSpencer\nToney\nTrent\nVince\nMichael\nJames\nChristopher\nDavid\nJohn\nWilliam\nBrian\nRobert\nJason\nKevin\nCharles\nSteven\nMark\nTimothy\nEric\nRichard\nJeffrey\nGregory\nThomas\nKenneth\nAnthony\nJerry\nLarry\nGary\nJoseph\nScott\nMatthew\nBilly\nRodney\nKeith\nJeffery\nDaniel\nBobby\nPaul\nJimmy\nShawn\nTerry\nDonald\nStephen\nChad\nJohnny\nBryan\nRonald\nDanny\nJonathan\nRandy\nTracy\nTony\nMarcus\nBrandon\nPhillip\nShannon\nPatrick\nTodd\nGeorge\nTommy\nChris\nDouglas\nTravis\nRicky\nDennis\nAaron\nJeremy\nBradley\nJoe\nShane\nRussell\nJustin\nAndrew\nDarrell\nRonnie\nDerrick\nRoger\nEdward\nRaymond\nCarl\nCurtis\nSamuel\nRoy\nWillie\nMicheal\nJamie\nJoel\nLonnie\nSean\nCorey\nTroy\nBrent\nJon\nLee\nStacy\nAllen\nFrederick\nGerald\nWalter\nWesley\nScotty\nTyrone\nNathan\nDerek\nKelly\nLance\nJoshua\nRandall\nAdam\nCalvin\nCraig\nRyan\nEddie\nJody\nReginald\nErnest\nSteve\nBenjamin\nGreg\nJesse\nDonnie\nJessie\nRickey\nBruce\nClayton\nLawrence\nRay\nStanley\nArthur\nBrad\nHarold\nJackie\nCedric\nDarren\nDon\nHenry\nJack\nKyle\nVincent\nCarlos\nLeslie\nMarvin\nMaurice\nVernon\nAlan\nAlvin\nByron\nDustin\nLeonard\nMitchell\nRoderick\nVictor\nAlbert\nBarry\nHeath\nHoward\nGlen\nJay\nMarty\nAntonio\nClint\nClinton\nDamon\nFrank\nFredrick\nJeff\nLeon\nLouis\nRobbie\nAdrian\nBill\nBrett\nCharlie\nEarl\nHerbert\nJohnnie\nMartin\nTimmy\nDewayne\nDwight\nFloyd\nFranklin\nGlenn\nJacob\nKenny\nMarlon\nMelvin\nPhilip\nScottie\nGene\nJoey\nLewis\nLloyd\nMarc\nMike\nStacey\nWayne\nAndy\nBryant\nChristian\nEdwin\nFred\nJerome\nPeter\nSammy\nToby\nWarren\nAndre\nCasey\nClifford\nCody\nDarryl\nDexter\nEverett\nLeroy\nRalph\nWade\nClarence\nClifton\nClyde\nCory\nDale\nDarin\nDean\nJarrod\nKerry\nNorman\nPerry\nPreston\nRobin\nRusty\nZachary\nCecil\nDwayne\nGabriel\nJim\nJimmie\nNick\nAlex\nAlfred\nBuddy\nClay\nDarrel\nDaryl\nFreddy\nGordon\nHerman\nMatt\nAllan\nChester\nDan\nDuane\nErik\nFreddie\nGarry\nHarvey\nJared\nJermaine\nLeo\nMarion\nRon\nShelby\nStuart\nTeddy\nTerrance\nTracey\nBart\nBennie\nBernard\nBlake\nBrady\nBryon\nCarey\nCarlton\nDarrin\nDerick\nDoyle\nErick\nFrankie\nJerald\nJuan\nKelvin\nKen\nKent\nKurt\nLamont\nMarshall\nMicah\nMonte\nNicholas\nOrlando\nQuentin\nRex\nRoss\nRufus\nSam\nSammie\nSherman\nStevie\nTed\nWill\nAlexander\nBarton\nEarnest\nEdgar\nEugene\nGilbert\nKendrick\nLyle\nManuel\nNeil\nOwen\nRod\nRoland\nRoyce\nSheldon\nSidney\nSpencer\nTerence\nTerrence\nTrent\nVan\nArchie\nAshley\nAvery\nBen\nBradford\nBrock\nCarroll\nChuck\nColby\nDallas\nDave\nDelbert\nDemetrius\nDemond\nDenny\nDonny\nGaylon\nGerry\nIra\nJayson\nKendal\nKristopher\nLester\nLoren\nMack\nMalcolm\nMario\nMarlin\nMilton\nNathaniel\nOscar\nRandal\nRobby\nRocky\nRoosevelt\nStewart\nSylvester\nTommie\nToney\nWendell\nWillis\nMichael\nJames\nChristopher\nJason\nDavid\nJohn\nBrian\nRobert\nWilliam\nKevin\nCharles\nSteven\nTimothy\nEric\nMark\nAnthony\nKenneth\nMatthew\nJoseph\nJeffrey\nThomas\nRichard\nGregory\nDaniel\nLarry\nShawn\nGary\nJerry\nScott\nJimmy\nBilly\nBryan\nChad\nKeith\nStephen\nBobby\nJeremy\nJonathan\nDonald\nJeffery\nDanny\nPaul\nTerry\nJohnny\nMarcus\nPhillip\nRodney\nRonald\nBrandon\nTony\nBradley\nChris\nPatrick\nRicky\nAaron\nEdward\nJustin\nDerrick\nShane\nTravis\nRandy\nRyan\nShannon\nGeorge\nSean\nJoshua\nTracy\nAndrew\nLee\nWillie\nCarl\nAdam\nRoy\nDennis\nCorey\nCurtis\nMicheal\nTodd\nDouglas\nRonnie\nTommy\nBenjamin\nRussell\nJoe\nNathan\nJon\nRoger\nEddie\nStacy\nHarold\nSamuel\nBrent\nCraig\nRandall\nRaymond\nTyrone\nDarrell\nHenry\nJody\nKelly\nMarvin\nJackie\nLance\nScotty\nTroy\nCalvin\nClinton\nFrank\nJoel\nCedric\nJesse\nKyle\nAntonio\nMitchell\nBruce\nDon\nGerald\nJamie\nWalter\nAllen\nCarlos\nFrederick\nReginald\nRickey\nSteve\nWesley\nCory\nDonnie\nDustin\nLonnie\nDerek\nHeath\nJeff\nCasey\nMarty\nRoderick\nJay\nLeslie\nTimmy\nAlbert\nClayton\nGreg\nKelvin\nMaurice\nRay\nToby\nAlvin\nArthur\nBrett\nClarence\nJimmie\nMartin\nAndre\nDale\nDamon\nDarren\nFreddie\nJared\nLloyd\nPhilip\nAdrian\nAlan\nBrad\nVictor\nAlfred\nBlake\nByron\nEarl\nFredrick\nJack\nJacob\nKerry\nLawrence\nLeonard\nJermaine\nKenny\nNicholas\nStanley\nVincent\nWayne\nAlex\nAndy\nAshley\nBarry\nClifford\nClifton\nEarnest\nFranklin\nHoward\nJoey\nKristopher\nMelvin\nStacey\nWade\nWendell\nClint\nDoyle\nJerome\nJessie\nJim\nJohnnie\nKendall\nMarlon\nPerry\nRalph\nSammy\nTeddy\nDewayne\nDwight\nErnest\nFloyd\nFred\nGlen\nMarc\nBradford\nClyde\nEugene\nGabriel\nLouis\nScottie\nBernard\nDarin\nDwayne\nErik\nLeon\nLeroy\nOtis\nSidney\nVernon\nZachary\nBryant\nCharlie\nChester\nCody\nDerick\nErick\nGlenn\nGrant\nGuy\nHarry\nJohnathan\nKirk\nLewis\nMike\nNathaniel\nPeter\nRobby\nSylvester\nTerrance\nTerrence\nTracey\nBart\nChristian\nDuane\nGordon\nHarvey\nLamont\nMario\nMarlin\nNeil\nNorman\nOscar\nRodrick\nCameron\nCecil\nCourtney\nEdwin\nFrankie\nGarry\nGene\nGilbert\nHerbert\nIan\nIsaac\nJeremiah\nJuan\nKendrick\nKim\nLuther\nMarshall\nMatt\nMicah\nMickey\nRandal\nRonny\nRusty\nShaun\nTerence\nTom\nWarren\nAlexander\nBen\nBennie\nBenny\nClay\nDana\nDarrin\nDaryl\nDean\nDexter\nDonny\nEmmett\nEverett\nForrest\nHerman\nIra\nJarrod\nManuel\nMyron\nRoosevelt\nSam\nSeth\nVan\nVance\nVirgil\nAllan\nAndrea\nAustin\nBill\nBryce\nCarlton\nCary\nChance\nChuck\nCornelius\nDaron\nDarryl\nDave\nDusty\nEverette\nGarland\nGarrick\nGrady\nIvan\nJamey\nJosh\nJulian\nJulius\nKarl\nKen\nLamar\nLesley\nLuke\nMalcolm\nOwen\nPreston\nQuincy\nRamon\nReggie\nRobbie\nRobin\nRoss\nSherman\nSpencer\nStevie\nTrevor\nTrey\nTy\nMichael\nChristopher\nJason\nJames\nJohn\nDavid\nRobert\nBrian\nWilliam\nKevin\nCharles\nSteven\nJeremy\nMark\nEric\nRichard\nAnthony\nMatthew\nTimothy\nJoseph\nJeffrey\nThomas\nKenneth\nGregory\nChad\nDaniel\nShawn\nBilly\nScott\nJerry\nJonathan\nLarry\nBobby\nGary\nPaul\nBryan\nStephen\nMarcus\nBrandon\nJimmy\nTerry\nJeffery\nDonald\nJustin\nDanny\nJoshua\nAaron\nKeith\nRodney\nJohnny\nPatrick\nPhillip\nGeorge\nRonald\nTravis\nNathan\nShane\nShannon\nTony\nRandy\nAndrew\nBradley\nDerrick\nSamuel\nTommy\nRyan\nBenjamin\nAdam\nRoy\nRicky\nRoger\nBrent\nChris\nDennis\nRussell\nJoe\nRonnie\nCraig\nEdward\nLee\nRaymond\nDouglas\nTodd\nMicheal\nHeath\nJon\nTracy\nWillie\nBrad\nRandall\nAllen\nDustin\nSean\nCarl\nHarold\nJamie\nCurtis\nEddie\nMarvin\nCorey\nReginald\nCalvin\nGerald\nScotty\nStacy\nCarlos\nWesley\nFrederick\nLance\nToby\nAntonio\nCedric\nClifton\nClinton\nDamon\nDarrell\nJay\nVictor\nBarry\nBruce\nRoderick\nAlan\nAndre\nCasey\nDerek\nJerome\nTroy\nAdrian\nClayton\nFredrick\nJesse\nKyle\nMitchell\nPhilip\nTyrone\nDarren\nGreg\nJacob\nMarty\nDale\nDonnie\nFrank\nJackie\nLonnie\nJessie\nJoey\nKelly\nWalter\nDon\nFloyd\nHenry\nJody\nSteve\nEarl\nGlenn\nJohnnie\nAndy\nCody\nFranklin\nAlex\nBryant\nClint\nEugene\nGarry\nGlen\nLeon\nLeonard\nMicah\nRay\nRickey\nWayne\nAlvin\nBrett\nCory\nDwight\nJarrod\nJoel\nMartin\nNathaniel\nVernon\nAlexander\nBlake\nChristian\nClifford\nDewayne\nJack\nJosh\nKirk\nLawrence\nLouis\nMarlon\nNicholas\nSammy\nBradford\nDarin\nErnest\nKelvin\nKendall\nKenny\nLamont\nMelvin\nStanley\nStuart\nTimmy\nAlbert\nBennie\nClarence\nDwayne\nFrankie\nJeff\nJermaine\nKendrick\nKristopher\nLeroy\nMario\nStacey\nTerrance\nTerrence\nVincent\nVirgil\nChadwick\nCourtney\nDexter\nGabriel\nJohnathan\nLeslie\nMarshall\nMickey\nNakia\nPeter\nRoss\nSherman\nWade\nBernard\nByron\nCarlton\nCary\nCecil\nClay\nDarryl\nErick\nFred\nFreddie\nJared\nJeremiah\nJimmie\nMike\nPerry\nPreston\nQuincy\nRandal\nTheodore\nTracey\nArthur\nCameron\nChester\nClyde\nDaryl\nEarnest\nErik\nIan\nIsaac\nJarrett\nMaurice\nNorman\nOrlando\nRobin\nScottie\nTrent\nAlfred\nAshley\nBart\nBill\nDallas\nDonny\nElmer\nGene\nGordon\nGrant\nJerald\nJim\nKent\nKerry\nLuke\nMyron\nRodrick\nShelby\nStevie\nTed\nTerence\nZachary\nBen\nBrady\nBuddy\nCharlie\nDedrick\nDerick\nDrew\nElton\nHarry\nHerman\nHoward\nIra\nLloyd\nLuther\nMonte\nRobbie\nRusty\nSeth\nTrevor\nWendell\nAndrea\nBryce\nBryon\nCarey\nClaude\nDarrick\nEllis\nFabian\nForrest\nHarvey\nJayson\nKarl\nLamar\nMalcolm\nMarc\nNeal\nNeil\nNick\nReggie\nRick\nSpencer\nTorrance\nWarren\nAlton\nAndra\nBrain\nBrandy\nBritt\nCedrick\nColby\nCornelius\nDarrel\nDeon\nDevin\nDewey\nDoyle\nDuane\nEdwin\nEverett\nGuy\nHarley\nJefferson\nJulius\nKelley\nLewis\nLoyd\nLucas\nMathew\nMatt\nMax\nMonty\nOliver\nRobby\nRodger\nRoland\nShaun\nShon\nTeddy\nTerrell\nTom\nTrinity\nTyson\nVan\nWilbert\nWill\nMichael\nJames\nJason\nChristopher\nJohn\nDavid\nRobert\nWilliam\nBrian\nKevin\nCharles\nJeremy\nAnthony\nSteven\nMatthew\nRichard\nEric\nChad\nDaniel\nTimothy\nJoseph\nMark\nThomas\nJeffrey\nJonathan\nBilly\nKenneth\nBrandon\nJustin\nScott\nBobby\nJoshua\nMarcus\nLarry\nJimmy\nShawn\nStephen\nTerry\nGregory\nBradley\nAaron\nJerry\nGary\nPaul\nBryan\nPatrick\nRodney\nKeith\nBenjamin\nPhillip\nEdward\nJeffery\nDonald\nDanny\nTony\nJohnny\nNathan\nAdam\nRyan\nAndrew\nCorey\nTravis\nRonald\nShannon\nDennis\nRicky\nShane\nDouglas\nBrent\nDerrick\nRandy\nSamuel\nGeorge\nJamie\nRoy\nRussell\nTodd\nTommy\nDustin\nMicheal\nCarl\nWillie\nChris\nRandall\nRonnie\nCalvin\nClifton\nJacob\nSean\nTyrone\nAntonio\nJoe\nReginald\nAllen\nJody\nJon\nClinton\nRaymond\nBrad\nCedric\nHeath\nDarrell\nKyle\nRoger\nAlan\nCasey\nLee\nScotty\nWesley\nClayton\nKelly\nBruce\nGerald\nHenry\nJesse\nCory\nCurtis\nTracy\nCarlos\nEddie\nJackie\nStacy\nCraig\nDarren\nDerek\nDonnie\nJohnathan\nBrett\nDamon\nJared\nLawrence\nRickey\nRoderick\nFreddie\nPhilip\nTerrance\nAndre\nByron\nFrederick\nJessie\nMaurice\nHarold\nJay\nJoel\nMitchell\nToby\nVictor\nWalter\nAdrian\nAlbert\nAlvin\nFranklin\nStanley\nTroy\nZachary\nBarry\nFrank\nKelvin\nKristopher\nLance\nLonnie\nMartin\nSteve\nWade\nArthur\nClarence\nJoey\nLeslie\nMarvin\nAndy\nCody\nFredrick\nJack\nJerome\nMarty\nNakia\nSammy\nVincent\nCameron\nEugene\nNathaniel\nSpencer\nBrock\nClifford\nDonta\nEarl\nKenny\nKerry\nLeonard\nLloyd\nRay\nBradford\nClint\nDale\nDewayne\nDwayne\nDwight\nEarnest\nFloyd\nGlenn\nHoward\nIsaac\nJarrod\nJeremiah\nLeroy\nLouis\nScottie\nTeddy\nAlexander\nBlake\nCarlton\nDarrin\nErnest\nGabriel\nGreg\nJeff\nKirk\nMarshall\nMelvin\nRalph\nTimmy\nWayne\nBenny\nChristian\nDonny\nEverett\nGlen\nJamey\nJayson\nJimmie\nKendall\nMicah\nRoss\nSherman\nStacey\nVernon\nBill\nBrady\nChadwick\nChester\nCourtney\nEdwin\nErik\nGrant\nHarry\nJim\nKim\nLucas\nMathew\nMatt\nMyron\nNicholas\nPerry\nRobbie\nRusty\nSeth\nAlfred\nAvery\nBernard\nBryant\nClay\nCornelius\nDallas\nDon\nDuane\nErick\nFred\nGarry\nJonathon\nJose\nLamont\nLaron\nLuke\nMarlon\nMickey\nNeil\nReggie\nShaun\nShelby\nSylvester\nTerrence\nWarren\nCecil\nChuck\nDaryl\nDewey\nGene\nGuy\nHerbert\nIan\nIra\nJermaine\nJuan\nKarl\nKent\nMarion\nPeter\nSidney\nTrent\nAlex\nBart\nBennie\nBryce\nCaleb\nCary\nColby\nDedrick\nDelbert\nDenny\nDerick\nErvin\nGarrick\nGeoffrey\nHerman\nJefferson\nKenyatta\nLevi\nNorman\nOrlando\nRex\nRocky\nSedrick\nSheldon\nSonny\nStuart\nTelly\nTim\nTommie\nTyson\nVirgil\nAlton\nBrandy\nBrannon\nBryon\nBuddy\nChaffee\nCharlie\nClark\nDarrick\nDemetrius\nDoyle\nDylan\nEdgar\nErnie\nFrankie\nJamison\nJohnnie\nKareem\nKendrick\nKorey\nLamar\nLeo\nLeon\nLewis\nLuther\nLyle\nMalcolm\nMarc\nMario\nMiles\nMilton\nNick\nNoel\nOliver\nOtis\nPreston\nQuincy\nRandal\nRichie\nRobby\nRobin\nRoland\nRoosevelt\nSam\nStevie\nTed\nTheodore\nTracey\nTyron\nWendell\nJason\nMichael\nChristopher\nJames\nJohn\nDavid\nJeremy\nRobert\nWilliam\nKevin\nCharles\nBrian\nEric\nJoseph\nMatthew\nAnthony\nTimothy\nSteven\nDaniel\nJoshua\nMark\nRichard\nBilly\nJustin\nBrandon\nJonathan\nScott\nThomas\nChad\nAaron\nJeffrey\nLarry\nBryan\nTravis\nGregory\nJerry\nStephen\nJimmy\nBobby\nKenneth\nMarcus\nPaul\nBradley\nPatrick\nAdam\nPhillip\nTerry\nShawn\nAndrew\nNathan\nGary\nJeffery\nRonald\nRyan\nShannon\nKeith\nAntonio\nCorey\nDonald\nRodney\nGeorge\nShane\nDerrick\nDustin\nJamie\nBenjamin\nEdward\nTony\nJohnny\nSamuel\nJoe\nRandy\nWesley\nDennis\nMicheal\nBrent\nDouglas\nJesse\nRonnie\nRussell\nCurtis\nDanny\nRandall\nRicky\nTommy\nClinton\nRaymond\nChris\nCory\nSean\nRoger\nJacob\nBrad\nRoy\nWillie\nJeremiah\nEddie\nTyrone\nDamon\nHenry\nTodd\nCarlos\nAllen\nClayton\nDarrell\nCalvin\nFrank\nJoey\nJon\nKelly\nCasey\nJared\nLee\nScotty\nCarl\nClifton\nCody\nCraig\nJody\nLance\nNathaniel\nBruce\nFredrick\nPhilip\nReginald\nTroy\nAdrian\nCedric\nHeath\nLonnie\nRickey\nTracy\nZachary\nJay\nJoel\nMelvin\nDerek\nGerald\nJack\nJackie\nAlvin\nMarvin\nStacy\nAlbert\nBarry\nDarren\nDon\nHarold\nToby\nAndre\nCameron\nWalter\nCourtney\nDonnie\nKenny\nMitchell\nSteve\nFrederick\nJarrod\nJessie\nKristopher\nKyle\nLawrence\nLouis\nRoderick\nAlan\nBlake\nChadwick\nKendrick\nMicah\nVincent\nAndy\nClint\nDale\nErnest\nGabriel\nGlen\nPeter\nBrett\nByron\nChester\nDaryl\nFranklin\nJermaine\nJerome\nJohnathan\nLeslie\nNicholas\nQuincy\nSeth\nTerrance\nAlex\nKelvin\nMarty\nRay\nStuart\nWade\nAlfred\nKendall\nSammy\nStanley\nAlexander\nArthur\nBryant\nDewayne\nFreddie\nGarry\nHerbert\nJeromy\nKerry\nLewis\nMarshall\nMartin\nPerry\nPreston\nRusty\nSpencer\nWarren\nWayne\nArchie\nCaleb\nClay\nDedrick\nDwayne\nEarl\nEugene\nGrant\nGreg\nJimmie\nMarlon\nMatt\nMaurice\nNorman\nRalph\nStacey\nVictor\nCecil\nFred\nGeoffrey\nJamey\nJosh\nMarc\nRocky\nTimmy\nVernon\nClarence\nClaude\nDarin\nDonny\nFloyd\nFrankie\nHerman\nJake\nJohnnie\nLeon\nLloyd\nMarion\nMax\nQuinton\nRandal\nSidney\nBart\nBen\nBill\nBradford\nCary\nCharlie\nClifford\nDana\nDean\nDexter\nDrew\nEarnest\nEdwin\nIsaac\nJim\nJonathon\nMario\nMickey\nOrlando\nQuentin\nRicardo\nRobin\nRoosevelt\nSedrick\nTerence\nTerrence\nAntony\nAshley\nBennie\nBenny\nBrock\nBryon\nBuddy\nChristian\nClyde\nCornelius\nDarrin\nDarryl\nDevin\nDoyle\nDwight\nGlenn\nJerald\nJerrod\nJuan\nKarl\nLeonard\nLoren\nNeal\nNick\nRico\nRodrick\nSam\nScottie\nShaun\nSherman\nTommie\nTrent\nWill\nAlton\nAmos\nAndrea\nAntonia\nAntwan\nBernard\nBrady\nBrannon\nBret\nBrooks\nChadrick\nDan\nDemetrius\nEldon\nErin\nEverett\nHarvey\nHunter\nIra\nJeff\nJeramy\nJose\nJovan\nKris\nLamont\nLeroy\nLester\nLynn\nMack\nMarkus\nMilton\nMyron\nNelson\nOmar\nRick\nRobbie\nRon\nRoss\nRufus\nSheldon\nShon\nTyson\nVirgil\nWallace\nJason\nChristopher\nMichael\nJames\nDavid\nJeremy\nJohn\nRobert\nKevin\nBrian\nWilliam\nJoshua\nCharles\nMatthew\nTimothy\nDaniel\nJoseph\nAnthony\nJustin\nRichard\nEric\nSteven\nBrandon\nMark\nJonathan\nThomas\nJeffrey\nChad\nBryan\nLarry\nAaron\nKenneth\nBradley\nStephen\nScott\nGregory\nRyan\nShawn\nBilly\nNathan\nCorey\nJerry\nAndrew\nWesley\nMarcus\nBenjamin\nBobby\nPatrick\nTravis\nGary\nJimmy\nPaul\nTerry\nJeffery\nJohnny\nKeith\nPhillip\nAdam\nDonald\nShannon\nDerrick\nSamuel\nTony\nRodney\nAntonio\nDustin\nJacob\nJesse\nRandy\nTommy\nShane\nEdward\nDanny\nRonald\nBrent\nRicky\nBrad\nJamie\nCory\nMicheal\nCasey\nCarl\nCurtis\nDouglas\nLance\nNicholas\nKyle\nClayton\nDarrell\nTodd\nBruce\nGeorge\nNathaniel\nRoy\nRandall\nRaymond\nRonnie\nRussell\nDamon\nZachary\nDennis\nLee\nSean\nHeath\nJeremiah\nJon\nRoger\nWillie\nGerald\nJody\nBrett\nReginald\nChris\nCraig\nHarold\nJared\nTerrance\nAdrian\nAndre\nDerek\nKristopher\nPhilip\nBarry\nCody\nJessie\nRoderick\nToby\nTroy\nWalter\nJoe\nRickey\nCarlos\nEddie\nGabriel\nMarvin\nAllen\nCameron\nClinton\nCourtney\nHenry\nScotty\nMartin\nShaun\nSteve\nCedric\nFrederick\nJermaine\nJoel\nTyrone\nClifton\nClint\nDarren\nFrank\nFredrick\nJoey\nLawrence\nRay\nAlbert\nByron\nJackie\nKelly\nAlex\nMitchell\nAlvin\nMelvin\nArthur\nDonny\nJay\nJohnathan\nTerrence\nAshley\nCalvin\nKendrick\nMarty\nTracy\nVincent\nFreddie\nGlen\nJack\nMarco\nPreston\nSeth\nVictor\nWayne\nAlan\nBlake\nClarence\nClifford\nDonnie\nElijah\nErnest\nJim\nKendall\nLewis\nLouis\nCharlie\nClay\nDaryl\nDewayne\nEarnest\nIsaac\nJerome\nKelvin\nMarlon\nMicah\nVernon\nWade\nDon\nGeoffrey\nJohnnie\nMarshall\nMaurice\nRusty\nStanley\nChadwick\nChester\nDevin\nDwayne\nEarl\nFranklin\nGlenn\nGreg\nJarrod\nJeff\nJerrod\nLloyd\nMarc\nQuincy\nTerence\nAndy\nCaleb\nCecil\nDarrin\nEli\nEugene\nFred\nGrant\nHoward\nJonathon\nKenny\nKirk\nLeonard\nLeslie\nLonnie\nRobbie\nShelby\nStacy\nAlexander\nArchie\nBennie\nBenny\nBrock\nBryant\nChristian\nCornelius\nDexter\nDwight\nEverett\nHerman\nIan\nJamey\nKris\nLavar\nMario\nMathew\nQuinton\nReuben\nRoss\nSedrick\nSherman\nStuart\nTimmy\nTrent\nTyler\nAlonzo\nBrady\nErik\nFloyd\nGene\nJimmie\nLamar\nLeon\nLucas\nLuke\nLuther\nMickey\nMonte\nNeil\nNoah\nRoland\nSpencer\nTrenton\nWaylon\nAmos\nAndrea\nBeau\nBen\nDallas\nDarrick\nDoyle\nDusty\nEvan\nJaime\nJake\nJayson\nJerod\nJulian\nKen\nKendal\nKerry\nLevi\nMarion\nMatt\nMax\nMike\nOscar\nRalph\nRandal\nReggie\nSam\nSidney\nTerrell\nTory\nAllan\nAlton\nAustin\nBart\nBill\nBradford\nBrenton\nBuddy\nCarey\nClark\nClyde\nColby\nCole\nCoy\nDale\nDamian\nDan\nDaren\nDedric\nDewey\nDrew\nEdgar\nElbert\nElmer\nErin\nGarry\nGuy\nIra\nJarod\nJeramie\nJordan\nJuan\nJulius\nKennith\nLamont\nLeroy\nLesley\nLyle\nMarquis\nMorris\nMyron\nOmar\nPeter\nRamon\nRobin\nRocky\nRodrick\nRory\nSammy\nShedrick\nShelton\nStevie\nSylvester\nTed\nThad\nTrevor\nTrey\nWendell\nXavier\nJason\nMichael\nChristopher\nJames\nJohn\nDavid\nJeremy\nJoshua\nRobert\nWilliam\nMatthew\nBrian\nEric\nKevin\nCharles\nJoseph\nSteven\nJustin\nJonathan\nTimothy\nRichard\nBrandon\nDaniel\nMark\nAnthony\nAaron\nNicholas\nJeffrey\nThomas\nKenneth\nAdam\nBradley\nNathan\nBilly\nMarcus\nStephen\nRyan\nGary\nLarry\nChad\nWesley\nCorey\nShawn\nAndrew\nPaul\nBenjamin\nGregory\nJerry\nBobby\nDustin\nScott\nBryan\nTerry\nPatrick\nPhillip\nTravis\nJeffery\nDerrick\nRodney\nDonald\nJimmy\nJohnny\nKeith\nRandy\nShane\nTony\nSamuel\nShaun\nRicky\nRonald\nAntonio\nJacob\nBrent\nTommy\nCory\nJared\nJesse\nJoe\nShannon\nGeorge\nDanny\nLance\nCarl\nEdward\nCurtis\nJamie\nRonnie\nRussell\nWillie\nDouglas\nMicheal\nCody\nRaymond\nJon\nDennis\nJeremiah\nClinton\nPhilip\nRandall\nTodd\nZachary\nCasey\nChris\nKyle\nSean\nBrad\nMitchell\nRoy\nTroy\nNathaniel\nScotty\nHenry\nCarlos\nDerek\nEddie\nJoel\nKristopher\nLucas\nClifton\nCourtney\nAdrian\nBruce\nCalvin\nClayton\nCraig\nDamon\nJarrod\nSeth\nClint\nLee\nMarvin\nTerrance\nWalter\nAllen\nAndre\nRoger\nTyrone\nCedric\nHeath\nDarrell\nJody\nVincent\nErik\nGabriel\nJessie\nRoderick\nToby\nAlan\nDonnie\nFrederick\nLawrence\nHarold\nKendrick\nLonnie\nReginald\nRickey\nSteve\nArthur\nBlake\nBrett\nDale\nDarren\nGerald\nJohnathan\nMarty\nMaurice\nRocky\nEugene\nFrank\nFreddie\nJackie\nWayne\nCameron\nDon\nFredrick\nGrant\nKelvin\nLeonard\nPeter\nTracy\nVictor\nBarry\nEarl\nJonathon\nLeroy\nLuke\nMarc\nMario\nMelvin\nMicah\nQuincy\nAlbert\nAndy\nAshley\nDewayne\nFranklin\nJoey\nLeon\nMarlon\nNorman\nRay\nStuart\nAustin\nClifford\nDemetrius\nJay\nKendall\nLouis\nMarco\nNeil\nPerry\nPreston\nRobbie\nTerrence\nTrent\nAlfred\nBrock\nBryant\nClay\nGeoffrey\nHerbert\nJack\nJermaine\nLewis\nMartin\nRex\nRusty\nSammy\nStacy\nTyler\nByron\nCaleb\nEarnest\nGlenn\nJerome\nJim\nKelly\nLamont\nReggie\nSidney\nTommie\nTrenton\nAlvin\nBennie\nCharlie\nChester\nChristian\nClarence\nCornelius\nDamien\nDexter\nDwayne\nGarrett\nGlen\nIsaac\nKenny\nLloyd\nMyron\nNeal\nTorrey\nAdrain\nBen\nBroderick\nCary\nCecil\nChadwick\nColin\nDedric\nDedrick\nDerick\nEvan\nGreg\nJake\nJefferson\nLevi\nLogan\nNick\nOrlando\nOtis\nRalph\nSam\nStanley\nTerence\nTimmy\nWade\nZackery\nAlex\nBeau\nBrady\nDamian\nDaryl\nDetrick\nEdwin\nElvis\nFrankie\nGene\nJerrod\nLuther\nNickolas\nQuentin\nRodrick\nShelby\nSherman\nTeddy\nAlexander\nAngelo\nAntoine\nBernard\nBret\nBuddy\nColby\nColeman\nDarnell\nDarrel\nDarrick\nDarrin\nDesmond\nDevin\nDuane\nDusty\nDylan\nEdgar\nElijah\nForrest\nHerman\nJamaal\nJimmie\nJohnathon\nJudson\nKendell\nKent\nKerry\nLandon\nLeslie\nLynn\nMarshall\nMathew\nMonte\nNathanael\nNelson\nRandal\nRashad\nRicardo\nWaylon\nWillard\nXavier\nZachariah\nMichael\nChristopher\nJames\nJason\nJohn\nJoshua\nJeremy\nDavid\nRobert\nMatthew\nWilliam\nJoseph\nCharles\nJustin\nBrian\nEric\nDaniel\nKevin\nJonathan\nNicholas\nAnthony\nTimothy\nSteven\nBrandon\nRichard\nAaron\nAdam\nThomas\nJeffrey\nRyan\nNathan\nTravis\nMark\nBenjamin\nBradley\nChad\nBilly\nScott\nStephen\nKenneth\nMarcus\nDustin\nBryan\nBobby\nJerry\nAndrew\nLarry\nPatrick\nGregory\nJimmy\nDerrick\nJeffery\nShawn\nWesley\nPaul\nGary\nCorey\nSamuel\nJacob\nDonald\nPhillip\nShane\nRonald\nRicky\nTerry\nJared\nKyle\nKeith\nJohnny\nBrent\nRonnie\nZachary\nAntonio\nJamie\nJeremiah\nRandy\nShaun\nDennis\nEdward\nCasey\nDanny\nMicheal\nDouglas\nJesse\nCarl\nRodney\nTony\nRussell\nSean\nGeorge\nJoe\nLance\nCedric\nRandall\nShannon\nWillie\nCory\nJessie\nReginald\nCurtis\nNathaniel\nTommy\nBrad\nCody\nDerek\nHeath\nWalter\nAllen\nClinton\nRaymond\nTroy\nJon\nMario\nJoel\nCarlos\nClint\nLawrence\nRoger\nScotty\nTyrone\nHenry\nLuke\nRickey\nRoy\nCourtney\nDamon\nKristopher\nMitchell\nSeth\nClayton\nCraig\nDarrell\nGerald\nPhilip\nAndre\nCalvin\nJody\nTodd\nFrederick\nLucas\nAdrian\nAlan\nBarry\nByron\nMarvin\nMaurice\nClifton\nJarrod\nJay\nJoey\nIsaac\nMicah\nTerrence\nDonnie\nEddie\nFrank\nKelvin\nLee\nArthur\nBlake\nBrett\nDerick\nKelly\nLonnie\nSteve\nTerrance\nAlbert\nAlvin\nBruce\nBryant\nChris\nClifford\nErik\nGrant\nJerome\nJonathon\nQuincy\nTrent\nCecil\nChadwick\nFranklin\nHarold\nLeon\nLeonard\nPreston\nCaleb\nCameron\nDrew\nJack\nJerrod\nKendrick\nPeter\nStacy\nStanley\nToby\nWarren\nBrock\nClay\nDallas\nFredrick\nJim\nJohnathan\nJordan\nRocky\nRoderick\nWade\nAndy\nCharlie\nDwight\nKenny\nLamont\nLeslie\nMelvin\nTerrell\nTrevor\nTyler\nVincent\nAlex\nAlexander\nDale\nDamien\nDedrick\nEarnest\nEdwin\nErnest\nEugene\nGlen\nGlenn\nJeff\nJerod\nLouis\nMarc\nVictor\nWayne\nAvery\nDon\nEvan\nGabriel\nHerman\nHoward\nJackie\nJohnnie\nJulius\nLloyd\nMarco\nMyron\nOtis\nReggie\nRobin\nRusty\nSpencer\nTracy\nVernon\nAntoine\nAshley\nAustin\nBennie\nCarlton\nClarence\nDaryl\nDewayne\nFloyd\nFreddie\nGuy\nJake\nJosh\nKendall\nKerry\nMarlon\nMarty\nNeil\nQuentin\nRobby\nRodrick\nSammy\nStuart\nWallace\nWaylon\nAngelo\nBradford\nBroderick\nBuddy\nDemetrius\nDonny\nDwayne\nFred\nGarrett\nHarry\nIan\nJermaine\nJimmie\nKent\nLamar\nLandon\nLester\nMatt\nMickey\nRay\nSammie\nScottie\nShelby\nTheodis\nTremayne\nTy\nWillard\nWillis\nBen\nBrady\nBrice\nBryce\nBuck\nColin\nDamion\nDarius\nDarren\nDean\nDusty\nEarl\nEdmond\nErick\nEverett\nGene\nGreg\nIra\nIvan\nIvory\nJarred\nJarvis\nJess\nJoesph\nJulian\nKarl\nLevi\nLewis\nLuther\nLynn\nMalcolm\nMarquis\nMarshall\nMorgan\nNeal\nNick\nNickolas\nRalph\nRonny\nRoss\nSidney\nTeddy\nTheodore\nThurman\nVirgil\nXavier\nAdrain\nAndrea\nAntwain\nAric\nAubrey\nBarrett\nBart\nBeau\nBenny\nBrenton\nClark\nClyde\nColby\nCornelius\nDarrin\nDarryl\nDemarcus\nDesmond\nElbert\nFrankie\nGeoffrey\nGordon\nJayson\nJeramy\nJeromy\nKirk\nLeo\nMarion\nMartin\nMason\nMathew\nMonte\nMorris\nMurphy\nNicolas\nOmar\nPerry\nRandal\nRickie\nSam\nSedrick\nSherman\nStephan\nStevie\nSylvester\nTom\nTommie\nTrenton\nWendell\nWhitney\nYancey\nMichael\nJason\nChristopher\nJames\nJoshua\nJohn\nJeremy\nJustin\nDavid\nWilliam\nMatthew\nRobert\nBrian\nJonathan\nJoseph\nDaniel\nCharles\nBrandon\nEric\nKevin\nTimothy\nSteven\nAdam\nNicholas\nAaron\nRichard\nDustin\nNathan\nThomas\nAnthony\nRyan\nChad\nMark\nAndrew\nKenneth\nJeffrey\nMarcus\nBilly\nStephen\nBenjamin\nGary\nBradley\nShawn\nScott\nJacob\nTravis\nGregory\nDerek\nPatrick\nBobby\nWesley\nJeffery\nDerrick\nJimmy\nJerry\nBryan\nSamuel\nAntonio\nJesse\nPhillip\nPaul\nKeith\nTerry\nDonald\nCorey\nLarry\nBrent\nJared\nEdward\nCarl\nKyle\nRodney\nShane\nJeremiah\nJoe\nRicky\nZachary\nJohnny\nCory\nCurtis\nTony\nClinton\nRonald\nJamie\nRonnie\nAllen\nRandy\nDennis\nWillie\nGeorge\nClint\nDanny\nMicheal\nNathaniel\nDouglas\nRussell\nShannon\nCedric\nRoger\nTommy\nCody\nDarrell\nJoey\nSean\nBrad\nCasey\nClayton\nCraig\nHarold\nLee\nCourtney\nJohnathan\nLuke\nShaun\nJon\nLucas\nRaymond\nHeath\nJoel\nRoy\nTodd\nLance\nMario\nPhilip\nRickey\nRoderick\nAlan\nFrederick\nRandall\nSeth\nCaleb\nEddie\nReginald\nBruce\nKristopher\nMicah\nWalter\nCarlos\nCharlie\nClifton\nDonnie\nErik\nBlake\nCalvin\nFrank\nJay\nMarvin\nVictor\nAndre\nFranklin\nGrant\nJarrod\nLonnie\nVincent\nAdrian\nBrett\nGabriel\nMarshall\nClarence\nClifford\nFredrick\nToby\nTroy\nAlbert\nCameron\nJermaine\nJerome\nJonathon\nKendrick\nLawrence\nTerrance\nTyrone\nAustin\nBeau\nEarl\nMelvin\nPreston\nScotty\nVernon\nAlvin\nByron\nEarnest\nGerald\nHenry\nJody\nPerry\nBrock\nClay\nDamon\nDarren\nFloyd\nIsaac\nJack\nKenny\nLouis\nMaurice\nRusty\nStanley\nTyler\nAlex\nAndy\nBen\nCecil\nChris\nDamien\nDemarcus\nErick\nFred\nJessie\nLeonard\nAlexander\nDallas\nDevin\nErnest\nFreddie\nIan\nJackie\nJake\nJulius\nKelly\nLeslie\nRocky\nSteve\nTerrence\nWaylon\nAlfred\nBarry\nBill\nBryant\nChadwick\nCortney\nDale\nDrew\nGarrett\nJimmie\nJohnnie\nKendall\nLevi\nRalph\nSammy\nTrent\nWarren\nWendell\nBradford\nDemetrius\nDerick\nDylan\nJohnathon\nJosh\nKerry\nLandon\nLeon\nMarlon\nMartin\nNickolas\nQuentin\nArthur\nBennie\nCedrick\nChristian\nColby\nCole\nCornelius\nCoy\nDewayne\nDusty\nDwight\nGeoffrey\nGuy\nHarry\nKelvin\nKirk\nMarc\nQuincy\nSpencer\nStacy\nTeddy\nTerence\nTerrell\nTyson\nAlexis\nAlton\nAntoine\nAshley\nBroderick\nChester\nCurt\nDarryl\nDedrick\nDeon\nDesmond\nDetrick\nDon\nElijah\nEvan\nGlen\nGreg\nJerod\nJordan\nKarl\nLynn\nNigel\nNorman\nOmar\nRamon\nRandal\nRobbie\nRoss\nWayne\nAvery\nBarrett\nBrannon\nCourtland\nDemario\nDewey\nEdgar\nGarry\nGaylon\nHarley\nHerbert\nHoward\nIra\nJayson\nJeff\nJim\nLamont\nLewis\nMarquis\nMatt\nMiles\nMorgan\nMyron\nNeil\nPeter\nQuinton\nRashad\nRobin\nRoyce\nScottie\nSimon\nStuart\nTavares\nTimmy\nTommie\nTracy\nTrenton\nAdrain\nAngelo\nBryce\nColin\nDamian\nDan\nDarin\nDarius\nDarrick\nDaryl\nDenver\nDerik\nDonovan\nDwayne\nEdmund\nEverett\nFabian\nGordon\nIssac\nJackson\nJarred\nJarvis\nJerrad\nJerrod\nLamar\nLeroy\nLloyd\nLogan\nMax\nNeal\nNoah\nOrlando\nRay\nRicardo\nRodger\nRon\nRoosevelt\nSedrick\nSheldon\nTaylor\nTed\nTheodore\nTrevor\nWade\nWeston\nWillis\nWinston\nJoshua\nMichael\nJames\nChristopher\nJason\nJohn\nMatthew\nDavid\nBrandon\nJustin\nRobert\nJeremy\nWilliam\nJonathan\nJoseph\nBrian\nDaniel\nCharles\nKevin\nSteven\nTimothy\nEric\nNicholas\nAaron\nAdam\nDustin\nRichard\nAnthony\nRyan\nThomas\nBenjamin\nNathan\nStephen\nTravis\nChad\nBradley\nAndrew\nMarcus\nJacob\nJeffrey\nMark\nPatrick\nKenneth\nBobby\nJesse\nPaul\nBilly\nLarry\nGary\nDerrick\nJared\nJimmy\nJeffery\nKeith\nScott\nAntonio\nPhillip\nShawn\nJerry\nTerry\nGregory\nKyle\nZachary\nCody\nBrent\nCorey\nWesley\nBryan\nDerek\nRicky\nCasey\nRonald\nDonald\nEdward\nRandy\nSamuel\nJohnny\nDanny\nJeremiah\nRaymond\nSean\nClinton\nBlake\nDouglas\nJohnathan\nNathaniel\nTony\nJessie\nLucas\nRonnie\nTommy\nClayton\nGeorge\nJoe\nRodney\nAdrian\nMicheal\nRandall\nLee\nShane\nRoy\nRussell\nTodd\nJordan\nRickey\nBarry\nCarl\nEddie\nHeath\nSeth\nBrett\nCalvin\nRoger\nDennis\nJoey\nJonathon\nMario\nCory\nJamie\nWillie\nCedric\nClint\nJarrod\nPhilip\nRoderick\nAlan\nBrad\nCourtney\nJon\nScotty\nShannon\nCaleb\nCameron\nCurtis\nMitchell\nChris\nErik\nHarold\nJay\nLawrence\nLevi\nLuke\nAlexander\nCarlos\nClifton\nDonnie\nHenry\nJackie\nLance\nTroy\nWalter\nAllen\nAlvin\nBruce\nByron\nCraig\nBeau\nPreston\nAlex\nAndre\nGrant\nJerome\nKristopher\nMelvin\nRay\nAlbert\nAustin\nDarren\nFranklin\nIsaac\nJack\nJody\nJoel\nReginald\nTrent\nArthur\nClarence\nDarrell\nDrew\nDusty\nFrank\nFrederick\nKelvin\nKendrick\nMarvin\nMaurice\nPeter\nShaun\nTerrance\nTyrone\nAndy\nDylan\nEdwin\nEvan\nFredrick\nGerald\nJermaine\nRusty\nSpencer\nDwayne\nMicah\nDewayne\nEugene\nKarl\nKelly\nLeslie\nMarshall\nMartin\nRodrick\nStanley\nWill\nBryant\nClifford\nDamon\nDon\nEarl\nFloyd\nGabriel\nJarrett\nLonnie\nLouis\nMarco\nNoah\nTyler\nVincent\nBarrett\nChristian\nDemarcus\nDerick\nHarvey\nIan\nKenny\nLandon\nMathew\nQuentin\nStacy\nTeddy\nAshley\nBen\nBennie\nChester\nDwight\nEarnest\nEli\nFreddie\nGarrett\nGeoffrey\nJarred\nJerrod\nJosh\nKendall\nLester\nLewis\nMarcello\nMarchello\nMarlon\nNeil\nNolan\nPerry\nQuincy\nRocky\nRoss\nTaylor\nTracy\nVernon\nVictor\nXavier\nBradford\nBranden\nBrock\nBrooks\nCornelius\nDale\nDallas\nDamien\nEthan\nEverett\nJake\nJarod\nJayson\nJohnathon\nKirk\nLeonard\nLogan\nMorgan\nMyron\nQuinton\nRobbie\nStuart\nToby\nWaylon\nWayne\nWhitney\nZachariah\nAngelo\nAntoine\nBenny\nBernard\nBrady\nBuddy\nClaude\nCortney\nDarryl\nDaryl\nDean\nElijah\nEmanuel\nErnest\nGlenn\nHerbert\nJarvis\nJefferson\nJohnnie\nJulius\nKent\nLamar\nLeon\nLeroy\nMarc\nMarion\nMonty\nReggie\nRobby\nRustin\nSidney\nTerence\nTy\nWade\nZachery\nAdrain\nAhmad\nAlfred\nBart\nBrice\nBroderick\nCarlton\nCecil\nClay\nDarin\nDarius\nDarnell\nDarrel\nDevin\nEdgar\nFrancis\nGordon\nIssac\nJedidiah\nJeff\nJermey\nJosiah\nJulian\nKerry\nKurt\nLaron\nMarquis\nMarty\nMason\nMiles\nNickolas\nNicolas\nOtis\nRalph\nRicardo\nRobin\nScottie\nStewart\nTerrell\nTory\nTrenton\nTristan\nChristopher\nJoshua\nMichael\nJames\nJason\nMatthew\nJustin\nJohn\nWilliam\nDavid\nRobert\nBrandon\nJeremy\nJonathan\nJoseph\nDaniel\nBrian\nCharles\nSteven\nAaron\nTimothy\nAdam\nAnthony\nNicholas\nKevin\nThomas\nEric\nRichard\nDustin\nRyan\nAndrew\nJacob\nNathan\nBradley\nJeffrey\nTravis\nKenneth\nBryan\nStephen\nBenjamin\nGregory\nBilly\nMarcus\nBobby\nMark\nPatrick\nChad\nJesse\nDerek\nLarry\nSamuel\nPaul\nDerrick\nPhillip\nJimmy\nZachary\nJared\nGary\nDonald\nKyle\nScott\nWesley\nJeffery\nCasey\nJerry\nShawn\nAntonio\nEdward\nKeith\nRandy\nTerry\nRonald\nBlake\nCody\nRicky\nCorey\nTony\nJohnny\nBrent\nSean\nNathaniel\nCarl\nTommy\nClayton\nMicheal\nClinton\nJohnathan\nJordan\nAllen\nBrett\nCaleb\nJeremiah\nSeth\nShane\nTyler\nDouglas\nRaymond\nCurtis\nRandall\nRonnie\nCourtney\nJoe\nRodney\nCalvin\nGeorge\nMario\nCory\nDennis\nLance\nRoger\nCraig\nHeath\nHenry\nJessie\nDarrell\nJoel\nMitchell\nRoy\nTerrance\nWillie\nJamie\nJarrod\nLucas\nShannon\nBrad\nDanny\nEddie\nJermaine\nKristopher\nTroy\nClint\nJay\nJoey\nWalter\nAdrian\nCarlos\nJon\nJonathon\nLee\nMicah\nRussell\nTodd\nAlan\nLuke\nPhilip\nScotty\nAlexander\nAustin\nCameron\nChase\nErik\nMartin\nRickey\nRoderick\nArthur\nBryant\nCedric\nEvan\nHarold\nLouis\nReginald\nShaun\nClifford\nGerald\nPreston\nTerrence\nTyrone\nAlbert\nAlex\nClarence\nClifton\nCole\nDonnie\nDrew\nFrank\nLawrence\nMaurice\nMelvin\nBruce\nGabriel\nLandon\nZachery\nAndy\nDarren\nFranklin\nIan\nJerome\nJulian\nPeter\nVictor\nDerick\nFredrick\nKenny\nKent\nLonnie\nNeil\nNoah\nColby\nDusty\nHoward\nKelvin\nKirk\nLogan\nMarvin\nRocky\nStanley\nTaylor\nToby\nVernon\nWayne\nAlvin\nAndre\nDamien\nDewayne\nDwight\nEarl\nFrederick\nGrant\nJack\nJackie\nJackson\nKendall\nMathew\nAlfred\nBarry\nByron\nChadwick\nDemetrius\nDon\nHerbert\nLeslie\nMarc\nQuincy\nStuart\nTrevor\nBret\nChris\nChristian\nClay\nDamon\nEarnest\nEdwin\nElijah\nEugene\nEverett\nFrankie\nGlenn\nIsaac\nJake\nJerod\nJose\nKerry\nKurt\nLevi\nLewis\nMarlon\nMarshall\nQuentin\nRalph\nRusty\nSpencer\nTrent\nTyson\nAntwan\nBryce\nDale\nDallas\nDemarcus\nDoyle\nDylan\nEli\nElliot\nErnest\nGene\nGlen\nGuy\nHarvey\nJamaal\nJarod\nJarrett\nJeff\nJonas\nLeroy\nLester\nMike\nRay\nRoss\nSammy\nTristan\nVincent\nWeston\nBeau\nBen\nCecil\nColeman\nColin\nCornelius\nDan\nDavis\nGarland\nGarrett\nGavin\nGreg\nHerman\nJefferson\nJennifer\nJim\nJimmie\nJody\nJohnathon\nJohnnie\nJosh\nJulius\nKasey\nKendrick\nLeo\nLloyd\nMarco\nMarques\nMarty\nNickolas\nNicolas\nRicardo\nRobin\nRonny\nRoosevelt\nRoyce\nStevie\nTeddy\nTracy\nWade\nWarren\nWaylon\nWendell\nWill\nAndrea\nBenny\nBrannon\nBryson\nCedrick\nCharlie\nClaude\nDamian\nDarnell\nDillon\nEdgar\nEmmanuel\nErick\nForest\nForrest\nFred\nFreddie\nGraham\nHarry\nHunter\nIvan\nJarred\nKarl\nKelly\nLeon\nLorenzo\nLuther\nMorris\nMyron\nOliver\nQuinton\nRenaldo\nReuben\nRex\nRussel\nScottie\nTerrell\nWhitney\nZachariah\nChristopher\nJoshua\nMichael\nMatthew\nJames\nBrandon\nJustin\nJason\nDavid\nJohn\nRobert\nJonathan\nWilliam\nJeremy\nJoseph\nDaniel\nBrian\nSteven\nEric\nAdam\nCharles\nDustin\nAaron\nKevin\nRyan\nAnthony\nTimothy\nAndrew\nThomas\nRichard\nNicholas\nMarcus\nJeffrey\nChad\nKyle\nBradley\nBenjamin\nJacob\nMark\nTravis\nStephen\nKenneth\nNathan\nDerek\nJared\nPatrick\nBryan\nGregory\nPaul\nZachary\nCody\nJesse\nBobby\nLarry\nBilly\nScott\nGary\nJeffery\nJimmy\nSamuel\nDerrick\nJerry\nShawn\nPhillip\nWesley\nBlake\nAntonio\nJohnny\nTyler\nRicky\nTerry\nKeith\nDonald\nGeorge\nSean\nCorey\nLance\nTony\nRandy\nJordan\nRandall\nRaymond\nDanny\nEdward\nWillie\nBrent\nCaleb\nTommy\nCarl\nCasey\nCurtis\nJamie\nJohnathan\nJeremiah\nJoel\nNathaniel\nJoe\nRonald\nAllen\nDennis\nTerrance\nClayton\nRodney\nBrett\nCraig\nHeath\nJon\nMicheal\nGerald\nMitchell\nRonnie\nSeth\nCory\nLee\nPhilip\nRoy\nClinton\nDouglas\nGrant\nJessie\nLuke\nRussell\nShane\nCalvin\nChase\nDarrell\nLucas\nScotty\nAlan\nCedric\nCourtney\nTroy\nClint\nDarren\nCameron\nGabriel\nLawrence\nMario\nPreston\nRoger\nTodd\nAdrian\nCarlos\nEvan\nJarrod\nReginald\nWalter\nAlex\nBrad\nDrew\nJack\nJermaine\nKristopher\nAustin\nBarry\nBruce\nHenry\nJay\nMicah\nShannon\nTyrone\nAlbert\nChristian\nClay\nColby\nEddie\nJoey\nJohnathon\nMathew\nByron\nErik\nHarold\nMarvin\nRickey\nShaun\nTaylor\nVernon\nAndre\nAndy\nArthur\nCole\nDale\nDevin\nDonnie\nFrank\nFrederick\nGarrett\nKelvin\nKendrick\nLandon\nLonnie\nLouis\nMarshall\nVincent\nAlexander\nBryant\nClifton\nJarred\nJonathon\nMartin\nRoderick\nRusty\nTerrence\nAlvin\nIan\nIsaac\nJerome\nKendall\nLevi\nMarquis\nMaurice\nDallas\nDamon\nEarl\nHunter\nJackie\nJeff\nKelly\nKerry\nKirk\nLloyd\nNoah\nQuinton\nStanley\nTristan\nBeau\nBuddy\nCharlie\nChris\nColin\nCoy\nFranklin\nFreddie\nHarry\nHerbert\nJerad\nLewis\nPerry\nPeter\nRay\nRoss\nSpencer\nZachery\nBret\nCecil\nColt\nDamian\nDewayne\nDwight\nGarry\nGlenn\nJamaal\nJimmie\nLeonard\nLeslie\nSammy\nTerrell\nWaylon\nAmos\nAntwan\nBen\nBradly\nClifford\nCornelius\nDeangelo\nDedrick\nDerick\nDwayne\nEarnest\nFloyd\nForrest\nFredrick\nGlen\nHerman\nJarvis\nJerrod\nJulian\nKenny\nLogan\nMorgan\nNathanael\nRuben\nSteve\nTerence\nTrent\nVictor\nWarren\nWendell\nBennie\nBrady\nDean\nDillon\nDon\nDusty\nEmanuel\nErick\nHoward\nJake\nJamin\nJarrett\nJim\nJody\nJohnnie\nJosh\nKurt\nLaron\nMarc\nMarco\nMarion\nMatt\nMelvin\nNeil\nQuentin\nQuincy\nRalph\nRandal\nRicardo\nRocky\nScottie\nTrenton\nZackary\nZackery\nAron\nBradford\nBranden\nChester\nClyde\nDamion\nDane\nDarryl\nDaryl\nDemario\nDonny\nDustan\nDylan\nEdwin\nGavin\nLeon\nLeroy\nMarlon\nMarty\nMorris\nNeal\nNicolas\nNorman\nRex\nRobby\nSidney\nStuart\nTheodore\nTrevor\nTy\nVance\nVirgil\nWayne\nWeston\nWill\nChristopher\nJoshua\nMichael\nJames\nMatthew\nJustin\nJohn\nBrandon\nJonathan\nDavid\nRobert\nWilliam\nJason\nJoseph\nDaniel\nJeremy\nBrian\nCharles\nEric\nSteven\nDustin\nAnthony\nAaron\nAndrew\nAdam\nKevin\nNicholas\nTimothy\nThomas\nRyan\nRichard\nStephen\nJacob\nCody\nNathan\nZachary\nMark\nJeffrey\nBradley\nKyle\nMarcus\nTravis\nChad\nBenjamin\nGregory\nPatrick\nKenneth\nPaul\nBryan\nDerrick\nDerek\nScott\nJesse\nSamuel\nJeffery\nTyler\nBobby\nJared\nBilly\nGary\nLarry\nJimmy\nShawn\nTerry\nDonald\nCasey\nPhillip\nRicky\nJerry\nWesley\nCorey\nNathaniel\nClinton\nRonald\nSean\nKeith\nJordan\nLance\nJeremiah\nCaleb\nJohnny\nAntonio\nEdward\nRandy\nCurtis\nDennis\nBlake\nBrent\nChase\nClayton\nGeorge\nTony\nCarl\nShane\nAllen\nHeath\nJohnathan\nTommy\nCraig\nLee\nSeth\nMicheal\nAlexander\nAustin\nDouglas\nRoy\nBrett\nJoe\nDanny\nDarrell\nJessie\nRoger\nRussell\nWillie\nAlex\nCourtney\nJoel\nJon\nJonathon\nRandall\nCalvin\nEddie\nDrew\nRodney\nTerrance\nChance\nEvan\nKristopher\nLuke\nMitchell\nRickey\nWalter\nAdrian\nCedric\nPhilip\nByron\nJermaine\nRaymond\nRonnie\nBarry\nBrad\nClint\nColby\nDarren\nJarrod\nDevin\nErik\nGabriel\nLawrence\nRay\nTaylor\nTodd\nCameron\nClifton\nCory\nJake\nMicah\nShannon\nCarlos\nFranklin\nLandon\nLeonard\nLevi\nLucas\nTroy\nWade\nAndre\nBruce\nJamie\nMarvin\nNoah\nIan\nScotty\nShaun\nVincent\nChristian\nGrant\nHenry\nJack\nJay\nJerrod\nLewis\nMarquis\nSidney\nSpencer\nTrenton\nAlbert\nArthur\nDerick\nFrank\nGarrett\nGerald\nJoey\nLeon\nMaurice\nQuinton\nStanley\nAlan\nClay\nClifford\nCole\nDominic\nEarnest\nFreddie\nFredrick\nGeoffrey\nKendall\nMario\nMorgan\nQuincy\nReginald\nRoderick\nRusty\nSteve\nTerrell\nTrent\nTyrone\nAndy\nChris\nDexter\nJackie\nJarred\nJarrett\nKelly\nKerry\nLogan\nPeter\nPreston\nTracy\nBeau\nBrock\nChester\nClarence\nColt\nDemarcus\nDewayne\nEarl\nEugene\nFrederick\nHoward\nJimmie\nKelvin\nKendrick\nLonnie\nMelvin\nRalph\nRocky\nRoss\nTerrence\nVictor\nAlfred\nBrenton\nCharlie\nDallas\nDon\nDwayne\nElijah\nErnest\nGuy\nHarold\nJosh\nLloyd\nOtis\nQuintin\nTrevor\nTristan\nWarren\nAntwan\nBernard\nBryce\nCoby\nCornelius\nCoy\nDamon\nDeangelo\nDonnie\nDwight\nDylan\nEmmanuel\nEzekiel\nGlen\nJerome\nJody\nJohnathon\nLamar\nLouis\nScottie\nZachery\nAntoine\nBarrett\nBenny\nBranden\nBryon\nCary\nCedrick\nCliff\nDale\nDarius\nDarrin\nDarryl\nDusty\nEmanuel\nErin\nEthan\nFrankie\nGlenn\nIsaac\nJeremey\nJerod\nKent\nKirk\nKurtis\nLeroy\nLeslie\nMartin\nMason\nMathew\nMickey\nNeal\nRobin\nStuart\nVernon\nWayne\nAshley\nBen\nBennie\nBrannon\nBroderick\nBrooks\nBryant\nColin\nCortney\nCoty\nDamion\nDarin\nDaryl\nDeandre\nDonny\nDuane\nEli\nErick\nGarry\nHarvey\nHerbert\nHunter\nIra\nJess\nJim\nJohathan\nJuan\nKenton\nLamarcus\nMarc\nMarco\nMarlon\nMarshall\nMarty\nMax\nNathanael\nOmar\nPerry\nQuentin\nRandal\nRiley\nRodrick\nRoyce\nShelby\nSterling\nToby\nZane\nChristopher\nJoshua\nMichael\nJames\nBrandon\nMatthew\nJustin\nJohn\nDavid\nRobert\nWilliam\nJonathan\nJason\nDaniel\nJoseph\nJeremy\nCharles\nSteven\nAndrew\nBrian\nDustin\nKevin\nNicholas\nAdam\nZachary\nEric\nAaron\nAnthony\nCody\nThomas\nNathan\nRyan\nKyle\nTimothy\nJacob\nBradley\nStephen\nRichard\nJeffrey\nMarcus\nBenjamin\nKenneth\nBryan\nTyler\nMark\nShawn\nPatrick\nJesse\nSamuel\nTravis\nGregory\nBilly\nChad\nJared\nDerek\nDerrick\nJeffery\nSean\nJordan\nTerry\nBlake\nDonald\nLarry\nPhillip\nJerry\nBobby\nKeith\nAntonio\nScott\nTony\nGary\nJohnathan\nBrent\nNathaniel\nCory\nJimmy\nWesley\nCaleb\nCasey\nShane\nCorey\nRicky\nSeth\nPaul\nDanny\nRandy\nAustin\nGeorge\nRodney\nAdrian\nClayton\nCurtis\nEdward\nRonald\nCarl\nMicheal\nAlex\nBrett\nMitchell\nRandall\nDrew\nCraig\nHeath\nJessie\nJonathon\nRickey\nTommy\nCalvin\nJeremiah\nLance\nRaymond\nRussell\nJoe\nLucas\nTodd\nJoel\nLee\nLuke\nTerrance\nChase\nRonnie\nAlexander\nClinton\nCourtney\nDouglas\nJarrod\nReginald\nRoger\nShannon\nTroy\nAllen\nDevin\nJohnny\nPhilip\nPreston\nAlan\nCameron\nKristopher\nRoy\nTaylor\nStanley\nGrant\nJamie\nMario\nTrevor\nWillie\nAlbert\nLevi\nRoderick\nWalter\nDevon\nPeter\nSpencer\nColby\nFrank\nIsaac\nKendrick\nZachery\nAntoine\nArthur\nBruce\nClint\nDarrell\nIan\nJay\nTristan\nBrad\nCarlos\nChance\nDemarcus\nDennis\nEddie\nEvan\nGabriel\nGarrett\nJoey\nJohnathon\nLogan\nByron\nCedric\nDusty\nErik\nEugene\nFrederick\nGlenn\nHenry\nJermaine\nShaun\nTrent\nVincent\nAndre\nClifton\nDexter\nHarold\nJon\nKerry\nMarquis\nMelvin\nMicah\nTyrone\nVictor\nAlvin\nAubrey\nBarry\nChris\nDale\nDarren\nEarl\nGerald\nMartin\nRoss\nScotty\nTrey\nAndy\nCharlie\nElijah\nFranklin\nFredrick\nGeoffrey\nHunter\nLandon\nLeslie\nMorgan\nPerry\nWayne\nBeau\nBrock\nChristian\nClay\nCole\nDallas\nDane\nDewayne\nDominique\nDon\nDylan\nJody\nJose\nKurt\nLawrence\nLouis\nNickolas\nTerrence\nZackery\nBryant\nCarlton\nCortney\nDerick\nDillon\nFloyd\nFred\nJack\nJerome\nJerrod\nKirk\nMarvin\nMathew\nOrlando\nOtis\nQuentin\nQuinton\nRocky\nStuart\nTerrell\nZackary\nBrady\nCecil\nColt\nCoty\nDarius\nDaryl\nDesmond\nDwight\nEdwin\nJackie\nJake\nJamar\nJarod\nJarred\nJarrett\nJermey\nJerod\nJimmie\nJosiah\nKelvin\nLeonard\nQuintin\nRalph\nRandal\nRodrick\nShea\nShelby\nStephan\nAvery\nBraden\nBrenton\nBrooks\nCoy\nDeandre\nDonnie\nEarnest\nFreddie\nHarrison\nJayson\nJuan\nKelly\nKendall\nKenny\nKent\nLester\nLewis\nLionel\nLonnie\nMason\nMaurice\nMilton\nNeal\nNeil\nNorman\nRex\nRicardo\nSidney\nStefan\nTimmy\nTracy\nWade\nWaylon\nWendell\nWeston\nWhitney\nAmos\nBo\nBradford\nBradly\nBrody\nClarence\nClark\nColin\nCollin\nDamien\nDamon\nDarin\nDarryl\nDonovan\nErick\nErnest\nHerman\nHubert\nIvan\nJaime\nJamey\nJeff\nJerad\nJeramy\nJulian\nKeenan\nKolby\nLeland\nLeo\nLeon\nMalcolm\nMarc\nMarion\nMarshall\nMartel\nMartez\nMickey\nMyron\nNick\nNoah\nNolan\nOwen\nQuincy\nRamon\nRandolph\nRay\nRobby\nRusty\nSammy\nShelton\nSkylar\nTeddy\nTyrell\nWarren\nXavier\nChristopher\nJoshua\nMichael\nMatthew\nJames\nBrandon\nJustin\nJohn\nWilliam\nRobert\nJonathan\nDavid\nJeremy\nDaniel\nAndrew\nJoseph\nDustin\nJason\nSteven\nRyan\nZachary\nCharles\nKevin\nCody\nTimothy\nJacob\nEric\nKyle\nNicholas\nBrian\nAdam\nAaron\nAnthony\nThomas\nBradley\nStephen\nRichard\nNathan\nJesse\nBenjamin\nMark\nKenneth\nMarcus\nJeffrey\nTyler\nCorey\nChad\nPatrick\nBryan\nDerek\nJared\nSamuel\nTravis\nJordan\nPaul\nShawn\nPhillip\nGregory\nJeffery\nBlake\nBobby\nBilly\nSean\nCasey\nCory\nWesley\nDerrick\nJimmy\nScott\nAntonio\nLarry\nCaleb\nDonald\nSeth\nTerry\nJohnny\nGary\nKeith\nNathaniel\nShane\nRonald\nAlex\nJerry\nBrent\nJohnathan\nRandy\nCarl\nJoel\nAlexander\nClayton\nAustin\nRicky\nChase\nLance\nGeorge\nJeremiah\nMicheal\nRaymond\nCurtis\nPreston\nRodney\nBrett\nJonathon\nRoger\nTony\nSpencer\nClinton\nCourtney\nDarrell\nLee\nMitchell\nWillie\nAllen\nCameron\nDevin\nJake\nJarrod\nLuke\nRickey\nDanny\nDouglas\nEdward\nJessie\nJoe\nKristopher\nRoy\nRussell\nDrew\nHenry\nLogan\nAdrian\nColby\nJon\nMicah\nRoss\nTaylor\nTodd\nTroy\nCraig\nJamie\nRandall\nRonnie\nHeath\nScotty\nTommy\nTrevor\nCalvin\nEddie\nEvan\nGrant\nJay\nDennis\nDylan\nPhilip\nAlan\nClifton\nDexter\nGerald\nShaun\nGabriel\nHunter\nJack\nLevi\nLucas\nReginald\nTrent\nByron\nDemarcus\nKerry\nLandon\nMario\nNoah\nPeter\nClint\nFrederick\nJerrod\nJulius\nLeonard\nQuincy\nRoderick\nShannon\nTrey\nVincent\nBruce\nBryant\nDesmond\nDonnie\nDusty\nGarrett\nJackie\nKelly\nKendall\nMathew\nMelvin\nWalter\nAlbert\nAndy\nBeau\nBrock\nCarlos\nDarren\nDemario\nDwight\nFloyd\nFreddie\nIan\nJarvis\nJermaine\nJoey\nKendrick\nLawrence\nLouis\nMason\nQuentin\nRay\nStanley\nTerrance\nVictor\nAlvin\nArthur\nBrady\nCedric\nChance\nErik\nFrank\nFranklin\nIsaac\nKelvin\nLonnie\nMorgan\nQuinton\nTerrence\nClarence\nClay\nDallas\nDerick\nDewayne\nJohnathon\nKody\nMarc\nRusty\nZachery\nZackary\nBranden\nBryce\nCecil\nCharlie\nDale\nDillon\nEugene\nFredrick\nGarry\nGlenn\nJerome\nMalcolm\nMarquis\nMarshall\nMiles\nTracy\nTristan\nWayne\nXavier\nBroderick\nChristian\nCole\nCordell\nCornelius\nDamien\nDarnell\nElliott\nErnest\nHarold\nJamel\nJermey\nMarvin\nMaurice\nRalph\nRodrick\nSidney\nTerence\nTy\nWarren\nAndre\nAvery\nBarry\nBrad\nBradly\nBrenton\nBuddy\nClifford\nDakota\nDemetric\nDemetrius\nElijah\nEmmanuel\nFrankie\nFred\nHoward\nJarrett\nJody\nJose\nJuan\nJulian\nKarl\nKeenan\nLeslie\nLester\nLewis\nPayton\nRiley\nShelby\nTimmy\nToby\nTyrone\nWade\nWeston\nZachariah\nZane\nAntoine\nAntwan\nAntwon\nAshley\nBarrett\nChadrick\nChanning\nCoby\nCortez\nDalton\nDarrin\nDarryl\nDean\nDeangelo\nDominique\nEarnest\nEli\nErick\nIra\nJamar\nJaron\nJerrell\nJosh\nKenny\nKirk\nKorey\nLane\nLeroy\nLloyd\nMartin\nMyron\nOscar\nRandal\nRico\nSammy\nSheldon\nSkyler\nStefan\nStuart\nTorrence\nVirgil\nWhitney\nWillis\nChristopher\nJoshua\nMichael\nJames\nJustin\nMatthew\nBrandon\nJohn\nJeremy\nWilliam\nJonathan\nRobert\nDavid\nAndrew\nDaniel\nRyan\nCody\nJoseph\nTimothy\nDustin\nZachary\nCharles\nThomas\nJacob\nSteven\nAaron\nAnthony\nKevin\nNicholas\nBrian\nJason\nEric\nBradley\nTyler\nAdam\nKyle\nNathan\nStephen\nJeffrey\nJordan\nSamuel\nTravis\nBryan\nDerek\nRichard\nBenjamin\nPatrick\nJesse\nMarcus\nGregory\nCorey\nCory\nKenneth\nBlake\nDerrick\nCasey\nJared\nChad\nPaul\nShawn\nCaleb\nMark\nSean\nShane\nBilly\nScott\nSeth\nBobby\nAlex\nAustin\nJeffery\nPhillip\nWesley\nJimmy\nGary\nJohnathan\nMitchell\nDonald\nJerry\nKeith\nTerry\nAlexander\nCameron\nLarry\nAntonio\nClayton\nCurtis\nLance\nBrent\nJonathon\nPhilip\nEdward\nJohnny\nChase\nLogan\nRandy\nAllen\nBrett\nRandall\nTaylor\nTony\nRonald\nGeorge\nRicky\nCalvin\nCarl\nDennis\nDouglas\nHunter\nLevi\nNathaniel\nRussell\nDanny\nHeath\nJake\nJoe\nMicah\nMicheal\nRodney\nDevin\nCraig\nLucas\nRaymond\nRonnie\nTommy\nKristopher\nRoy\nSpencer\nWillie\nChance\nCourtney\nTodd\nTrevor\nLuke\nTerrance\nBruce\nEvan\nGerald\nJessie\nTroy\nDarrell\nDrew\nJeremiah\nJohnathon\nJon\nCedric\nClinton\nDexter\nJamie\nJay\nVictor\nAdrian\nBryant\nColby\nGarrett\nLee\nMario\nPreston\nReginald\nBrad\nDallas\nEddie\nDarren\nDylan\nHenry\nIan\nJoel\nRoderick\nTrent\nTrenton\nZachery\nBarry\nByron\nGrant\nHarold\nJack\nJarrod\nJoey\nTerrence\nTrey\nVincent\nAlan\nAlvin\nAndre\nCarlos\nChristian\nClifton\nDarius\nFrank\nFranklin\nJackie\nKendall\nKody\nLandon\nMax\nCharlie\nFreddie\nJody\nKendrick\nLawrence\nMarshall\nRickey\nStanley\nWade\nWalter\nAlbert\nClay\nCordell\nCordero\nDale\nDamon\nElijah\nErik\nMarquis\nMartin\nMarvin\nRoger\nTyrone\nBrady\nBryce\nClifford\nColin\nCoty\nDeandre\nDerick\nForrest\nGlen\nHerbert\nIsaac\nJerome\nLouis\nMason\nMathew\nMaurice\nNicolas\nArthur\nBo\nBryson\nDakota\nDillon\nDonovan\nDwight\nFloyd\nFrederick\nFredrick\nJermaine\nJerrod\nKelly\nKurtis\nMilton\nMorgan\nPeter\nQuentin\nQuintin\nRusty\nSammy\nShannon\nWill\nWinston\nXavier\nAndy\nAntoine\nBeau\nClint\nCole\nDeangelo\nDemarcus\nDonnie\nEarl\nFrankie\nGabriel\nGeoffrey\nHarrison\nJarod\nJarred\nJarrett\nJarvis\nJimmie\nKerry\nKory\nKurt\nLonnie\nMalcolm\nParker\nPerry\nRashad\nRobbie\nRodrick\nTerrell\nZackary\nAbraham\nAshley\nBen\nBlakely\nBrannon\nBrennan\nBret\nBrice\nBrock\nCornelius\nDarnell\nDemario\nDesmond\nDewayne\nDon\nDusty\nDwayne\nEugene\nGavin\nJamal\nJeremey\nJosiah\nJuan\nJulian\nKirk\nKorey\nLane\nLeon\nLeonard\nLewis\nLloyd\nLorenzo\nMarc\nMarty\nMelvin\nNeil\nNoah\nOrlando\nQuinton\nRay\nRoss\nSam\nTanner\nTimmy\nTyson\nWeston\nAshton\nAubrey\nBernard\nBlaine\nBrandy\nBrendan\nBrenton\nChris\nClarence\nClyde\nCortez\nDalton\nDamarcus\nDemetrius\nDevon\nDominic\nEdwin\nErick\nGarry\nGraham\nHouston\nJackson\nJohnnie\nJordon\nJosh\nKaleb\nKarl\nKasey\nKenny\nKent\nLuther\nMaxwell\nMiles\nMontrell\nMyron\nOliver\nOwen\nRalph\nRandal\nRex\nShaun\nSkylar\nStefan\nStephan\nSterling\nStuart\nTristan\nVernon\nWayne\nZane\nChristopher\nJoshua\nJustin\nMichael\nJames\nMatthew\nBrandon\nJohn\nWilliam\nRobert\nDavid\nAndrew\nJonathan\nCody\nJoseph\nJacob\nJeremy\nZachary\nDaniel\nAaron\nTimothy\nTyler\nRyan\nDustin\nNicholas\nAnthony\nCharles\nSteven\nKyle\nJason\nThomas\nAdam\nEric\nBenjamin\nKevin\nBrian\nNathan\nStephen\nRichard\nTravis\nKenneth\nBradley\nDerek\nMark\nJordan\nPatrick\nJesse\nJeffrey\nMarcus\nSamuel\nCorey\nCory\nBlake\nBryan\nCameron\nGregory\nJared\nChad\nJeffery\nBilly\nAlex\nSean\nShawn\nWesley\nSeth\nAlexander\nAustin\nNathaniel\nPaul\nCasey\nShane\nBobby\nCaleb\nJerry\nScott\nDonald\nPhillip\nJohnathan\nDerrick\nAntonio\nClayton\nSpencer\nTaylor\nGary\nLarry\nRicky\nCurtis\nEdward\nDouglas\nRandy\nChase\nMitchell\nBrent\nCourtney\nTerry\nDanny\nJimmy\nJohnny\nKeith\nJake\nCarl\nDevin\nJessie\nLance\nRaymond\nJonathon\nRandall\nRonald\nCalvin\nTony\nAllen\nGarrett\nHeath\nJeremiah\nLogan\nLucas\nTommy\nLee\nEvan\nGeorge\nKristopher\nMason\nPreston\nBrett\nDrew\nEddie\nHunter\nJoe\nMario\nMicheal\nWillie\nAlan\nJoel\nTrent\nTrevor\nDylan\nIan\nCedric\nLevi\nClinton\nDarren\nLuke\nRonnie\nRussell\nTerrance\nGrant\nJohnathon\nRodney\nZachery\nBruce\nClay\nCraig\nDennis\nMicah\nTodd\nTrenton\nXavier\nClint\nColby\nColton\nKendrick\nLandon\nPhilip\nReginald\nTerrence\nVictor\nVincent\nAdrian\nAlbert\nHenry\nJack\nJamie\nJay\nKendall\nKody\nRoderick\nRoss\nShannon\nAndre\nChristian\nDillon\nDon\nJarrod\nPeter\nQuentin\nRay\nRoy\nByron\nDexter\nDonnie\nFrederick\nGeoffrey\nJackie\nMartin\nRickey\nStanley\nTrey\nArthur\nBryce\nBryson\nCarlos\nChance\nColin\nDewayne\nDominique\nFrank\nJulian\nKelvin\nMathew\nNoah\nRusty\nTanner\nZachariah\nAlvin\nBrad\nClifford\nCordero\nDallas\nDemarcus\nDemario\nErik\nGabriel\nJoey\nMarquis\nScotty\nTroy\nTyrone\nZackery\nCole\nCoty\nIsaac\nJamal\nJarrett\nJermaine\nJermey\nKaleb\nKelly\nLamar\nLeonard\nLonnie\nMaurice\nMiles\nMorgan\nRoger\nTristan\nWade\nZackary\nBrant\nBryant\nCarlton\nClifton\nDarrell\nDesmond\nDusty\nEarl\nGerald\nJarvis\nJimmie\nJody\nJon\nJulius\nKelsey\nLeon\nMalcolm\nQuincy\nShaun\nSkylar\nTracy\nZane\nAndy\nAntoine\nBeau\nBernard\nBlaine\nBroderick\nChadwick\nChester\nDamian\nDerick\nDevon\nElijah\nJarred\nJohnnie\nJonah\nKirby\nKirk\nKory\nLawrence\nLorenzo\nLouis\nNickolas\nQuinton\nSkyler\nStephan\nTerence\nTimmy\nBranden\nClarence\nCornelius\nDamon\nDane\nDarin\nDarryl\nDeangelo\nDominic\nEdwin\nFranklin\nHarold\nJace\nJaron\nJosiah\nKent\nKentrell\nKurt\nLeslie\nMarlon\nMarty\nMarvin\nMilton\nNathanael\nPerry\nRalph\nRobbie\nRocky\nShelby\nSidney\nStuart\nTeddy\nWarren\nWayne\nAllan\nBarry\nBen\nBraden\nCamron\nCarter\nCorbin\nDakota\nDale\nDaryl\nDonovan\nDrake\nDuane\nDwight\nEli\nErick\nEthan\nEzekiel\nGordon\nGuy\nHarrison\nJackson\nJamar\nJeremey\nJerod\nJerome\nJuan\nKasey\nKenny\nKorey\nLamarcus\nMackenzie\nMarshall\nMatt\nMaxwell\nOscar\nParker\nPayton\nRamon\nRobby\nSam\nTheodore\nTyrell\nWaylon\nWestley\nWilson\nChristopher\nJoshua\nJustin\nMichael\nJames\nMatthew\nBrandon\nWilliam\nDavid\nJohn\nCody\nJonathan\nRobert\nZachary\nJacob\nJeremy\nAndrew\nDaniel\nTyler\nAaron\nNicholas\nRyan\nJoseph\nDustin\nSteven\nKyle\nCharles\nTimothy\nAnthony\nThomas\nAdam\nJordan\nEric\nTravis\nBenjamin\nNathan\nJason\nKevin\nStephen\nBrian\nJesse\nDerek\nPatrick\nRichard\nBradley\nAustin\nBlake\nCorey\nCaleb\nJeffrey\nJared\nGregory\nMarcus\nSeth\nKenneth\nCory\nBryan\nSamuel\nPhillip\nCameron\nWesley\nAlexander\nMark\nLogan\nJohnathan\nSean\nJeffery\nPaul\nCasey\nKeith\nBilly\nColton\nDerrick\nJerry\nAlex\nChad\nEthan\nTaylor\nScott\nBobby\nTerry\nBrett\nClayton\nDonald\nEdward\nGary\nShawn\nDouglas\nChase\nHunter\nLarry\nGarrett\nLevi\nAntonio\nCurtis\nDevin\nLance\nShane\nRicky\nGeorge\nRaymond\nNathaniel\nEvan\nJonathon\nRodney\nRonald\nJohnny\nRandy\nTony\nDylan\nJimmy\nLuke\nDanny\nJeremiah\nMicheal\nMitchell\nSpencer\nTrevor\nBrent\nDennis\nKristopher\nWillie\nHeath\nRussell\nVictor\nCarl\nColby\nGrant\nJohnathon\nLucas\nPreston\nRandall\nTroy\nMason\nBryant\nClinton\nCourtney\nDrew\nJessie\nZachery\nAlbert\nAllen\nBrock\nJake\nMarvin\nMicah\nTrent\nAdrian\nAlan\nChance\nDarius\nRoy\nTerrance\nTommy\nCalvin\nJon\nKendrick\nTodd\nTrey\nXavier\nBruce\nDarrell\nMartin\nMelvin\nReginald\nTrenton\nArthur\nIan\nJamie\nKaleb\nLee\nPhilip\nRoger\nTanner\nByron\nDarren\nIsaac\nJay\nRoderick\nShaun\nVincent\nAndre\nDakota\nDexter\nEddie\nJoel\nKelly\nTerrence\nWalter\nBryce\nChristian\nClifton\nErik\nFranklin\nJarrod\nKendall\nLandon\nMaurice\nPeter\nRoss\nTyrone\nZackary\nBrad\nCedric\nClint\nDillon\nJack\nJoe\nJoey\nKelvin\nMario\nMathew\nNickolas\nRickey\nShannon\nAlvin\nCraig\nDallas\nDevon\nDominic\nDominique\nFrank\nHenry\nKirk\nMorgan\nQuinton\nRonnie\nBeau\nBo\nClifford\nFrederick\nGlen\nJamar\nJody\nMarquis\nRay\nZackery\nBrady\nChaz\nClay\nDesmond\nDewayne\nDonnie\nElijah\nFredrick\nGabriel\nGavin\nHarold\nJackson\nJarvis\nKorey\nLawrence\nMarshall\nMiles\nStanley\nTerrell\nTracy\nTristan\nZachariah\nAron\nAshton\nClarence\nCortez\nCoty\nDale\nDemarcus\nDemario\nDerick\nDonovan\nJamal\nJordon\nJulian\nJulius\nKeaton\nKelsey\nLeonard\nLonnie\nLouis\nLukas\nMalcolm\nMarc\nNoah\nRocky\nSidney\nTerence\nBlaine\nBrendan\nCharlie\nColten\nCordell\nDalton\nDamon\nDemetrius\nEarnest\nEli\nForrest\nFrankie\nHayden\nJackie\nJarred\nJarrett\nJerrod\nJose\nKurtis\nLamar\nLeon\nLloyd\nMarty\nMax\nNicolas\nQuincy\nRalph\nRaphael\nRashad\nWarren\nAntoine\nArsenio\nAsa\nBraden\nBrice\nBroderick\nCarlos\nCarlton\nCole\nCorbin\nCordero\nDamien\nDusty\nDwight\nEdwin\nEzra\nGeoffrey\nGerald\nGordon\nHouston\nJerome\nKenny\nKerry\nKyler\nLamarcus\nLewis\nMarion\nParker\nReese\nShelby\nWeston\nWillis\nWinston\nZane\nAlec\nAshley\nBarry\nBennie\nBranden\nCecil\nChadwick\nCollin\nConnor\nCoy\nDarryl\nDeandre\nDrake\nDwayne\nEmmanuel\nEugene\nGarrick\nHarrison\nIvan\nJace\nJermaine\nJerred\nJimmie\nJohnnie\nJosiah\nKeenan\nKeon\nKurt\nLaramie\nLeroy\nLionel\nLorenzo\nMadison\nMarkell\nMaxwell\nNico\nQuentin\nRodrick\nRusty\nStephan\nSteve\nStevie\nStuart\nToby\nTom\nTy\nWayne\nWyatt\nChristopher\nMichael\nJoshua\nJustin\nJames\nMatthew\nWilliam\nCody\nZachary\nJacob\nJohn\nBrandon\nDavid\nTyler\nJonathan\nRobert\nAndrew\nJoseph\nDustin\nAaron\nJordan\nRyan\nDaniel\nJeremy\nNicholas\nAnthony\nKyle\nTimothy\nSteven\nCharles\nThomas\nKevin\nEric\nNathan\nStephen\nBenjamin\nTravis\nEthan\nRichard\nJesse\nDerek\nAdam\nBlake\nKenneth\nBrian\nCaleb\nBradley\nCorey\nPatrick\nAustin\nJared\nJason\nTaylor\nCameron\nSamuel\nJeffrey\nWesley\nMarcus\nGregory\nClayton\nMark\nCory\nShawn\nAlexander\nLogan\nJeffery\nSeth\nColton\nPhillip\nAlex\nBilly\nDylan\nTrevor\nChase\nDonald\nCasey\nChad\nShane\nNathaniel\nBryan\nDerrick\nHunter\nTerry\nPaul\nAntonio\nDevin\nBrett\nJerry\nJimmy\nJohnathan\nColby\nSpencer\nDalton\nEvan\nMitchell\nScott\nSean\nGeorge\nKeith\nDarius\nLevi\nBobby\nChristian\nEdward\nJeremiah\nJohnny\nBrent\nGarrett\nGary\nLucas\nJake\nLarry\nLuke\nRodney\nGrant\nJessie\nPreston\nRicky\nRoy\nTrenton\nAdrian\nCurtis\nJon\nKristopher\nDakota\nJonathon\nLee\nXavier\nClinton\nDouglas\nDrew\nJoe\nRonald\nZachery\nLance\nPhilip\nTodd\nCarl\nRandy\nRaymond\nChance\nDarren\nJoel\nTommy\nAllen\nDillon\nTony\nAndre\nJohnathon\nMicheal\nQuinton\nRandall\nTrent\nVincent\nWillie\nByron\nCalvin\nDevon\nJack\nJackson\nMarquis\nMason\nTerrance\nCoty\nCraig\nDarrell\nDeandre\nHeath\nJarrod\nKendall\nLawrence\nWeston\nAlan\nDennis\nReginald\nTevin\nBryce\nClint\nCole\nErik\nFrederick\nKaleb\nLandon\nRoderick\nRonnie\nRussell\nTroy\nBeau\nCarlos\nCedric\nFranklin\nIsaac\nJulian\nMartin\nMathew\nQuentin\nWalter\nBrock\nColin\nDominique\nElijah\nJamal\nRickey\nRoger\nTerrence\nZachariah\nBryant\nClifford\nCourtney\nDerick\nDexter\nHayden\nNoah\nShannon\nShelby\nTristan\nAlbert\nAshton\nBlaine\nBruce\nClifton\nColten\nIan\nJay\nJermaine\nJerrod\nJody\nJoey\nKirk\nMario\nPeter\nSheldon\nSteve\nTanner\nTrey\nZackary\nDallas\nDanny\nDemarcus\nDesmond\nDonovan\nDwight\nEarl\nEddie\nGabriel\nHarrison\nJarvis\nJuan\nKelly\nLeslie\nMorgan\nSkyler\nStuart\nZackery\nCarlton\nClarence\nClay\nCornelius\nDonnie\nDusty\nGavin\nGeoffrey\nHenry\nJordon\nJosiah\nKameron\nKelvin\nKody\nLamar\nMalcolm\nMarshall\nMaxwell\nMelvin\nMicah\nMiles\nNicolas\nRiley\nScotty\nShaun\nTerrell\nBrice\nChandler\nClark\nCortez\nEmanuel\nErnest\nFrank\nFreddie\nFredrick\nGerald\nHarley\nJace\nJackie\nJamie\nJaron\nJerome\nKendrick\nKent\nLane\nNickolas\nParis\nParker\nPayton\nPierre\nQuincy\nRodrick\nStanley\nTylor\nVernon\nVictor\nWade\nAlvin\nArchie\nBraden\nBrady\nBrendan\nDale\nDamon\nDarrius\nDeangelo\nDemetrius\nDenzel\nDominic\nGarrick\nGlen\nKarl\nKasey\nKerry\nLeroy\nLloyd\nMarc\nMarvin\nOrlando\nReggie\nSkylar\nStefan\nTyrone\nWayne\nAlec\nAndrea\nArthur\nBo\nBrad\nBraylon\nBrenton\nBret\nBroderick\nDane\nDarryl\nDemario\nDemetris\nDevan\nEli\nErin\nEzekiel\nGlenn\nHarold\nIsaiah\nJarred\nJarrett\nKeaton\nKenny\nKentrell\nKurt\nKyler\nLeon\nLorenzo\nMackenzie\nRocky\nRustin\nRusty\nSidney\nStephan\nStevie\nTerence\nZane\nAntwon\nArron\nAubrey\nBennie\nBernard\nBranden\nBrayden\nCedrick\nCharlie\nCorbin\nDamien\nDarnell\nDarrin\nDarron\nDedrick\nDerik\nEdgar\nEllis\nEmmanuel\nForrest\nGage\nHouston\nHubert\nJaime\nJamar\nJerod\nJess\nJohnnie\nKeenan\nKelsey\nLeonard\nMadison\nManuel\nMaurice\nMax\nMontana\nMyles\nOdis\nRashad\nRicardo\nStacy\nToby\nTy\nWaylon\nWilson\nChristopher\nJoshua\nMichael\nJames\nCody\nMatthew\nJustin\nTyler\nWilliam\nJacob\nBrandon\nZachary\nJohn\nJoseph\nRobert\nAndrew\nJonathan\nDavid\nRyan\nDaniel\nAaron\nJordan\nNicholas\nDustin\nCharles\nAnthony\nJeremy\nKyle\nTimothy\nSteven\nAustin\nNathan\nThomas\nBlake\nSamuel\nKevin\nEric\nStephen\nEthan\nJesse\nBradley\nCaleb\nTaylor\nBenjamin\nPatrick\nTravis\nDylan\nRichard\nJason\nKenneth\nAdam\nCameron\nCorey\nJared\nMark\nBrian\nGregory\nCory\nDerek\nHunter\nLogan\nMarcus\nSeth\nAlexander\nDakota\nJeffrey\nTrevor\nCasey\nSean\nWesley\nJohnathan\nShawn\nGarrett\nBilly\nJeffery\nBrett\nChase\nDalton\nPhillip\nChristian\nColton\nAlex\nDevin\nKeith\nPaul\nSpencer\nJimmy\nChad\nLarry\nBryan\nColby\nDerrick\nEvan\nDonald\nHayden\nScott\nBobby\nJake\nBrent\nClayton\nDillon\nJerry\nMitchell\nAntonio\nShane\nGary\nKaleb\nMason\nNathaniel\nJonathon\nJohnathon\nPreston\nTanner\nTony\nDarius\nTerry\nCurtis\nJessie\nRandy\nCalvin\nClinton\nIan\nJohnny\nLance\nRonald\nDennis\nEdward\nJoe\nLevi\nLuke\nCole\nTerrance\nTevin\nVincent\nZachery\nJoel\nLee\nWillie\nXavier\nDanny\nDominique\nLandon\nLucas\nRandall\nRicky\nAdrian\nAlan\nKristopher\nMicheal\nTommy\nCarl\nChance\nGeorge\nGrant\nJackson\nJon\nKendall\nKendrick\nRodney\nRussell\nAshton\nCourtney\nDevon\nDouglas\nHenry\nJeremiah\nRaymond\nShelby\nTrenton\nVictor\nArthur\nCraig\nDrew\nAllen\nClay\nClint\nConnor\nHeath\nJamie\nLawrence\nMalcolm\nNickolas\nQuinton\nBruce\nBryce\nDevan\nMathew\nTodd\nTrent\nTrey\nClifton\nDexter\nFrank\nJarvis\nParker\nRonnie\nRoss\nShaun\nBrock\nByron\nChandler\nDallas\nDarren\nDemarcus\nDemetrius\nEddie\nGabriel\nIsaac\nMorgan\nRay\nSkyler\nZackery\nCarlos\nDarrell\nDeangelo\nErik\nGage\nJulian\nKameron\nKody\nMarquis\nNoah\nRickey\nRoger\nRoy\nTerrell\nTroy\nAndre\nCedric\nCoty\nDeandre\nGavin\nHarold\nIsaiah\nJack\nJay\nKeenan\nLonnie\nMicah\nPayton\nPhilip\nReginald\nStanley\nAlvin\nBeau\nClarence\nDamien\nDillion\nEugene\nFranklin\nHarrison\nJarred\nJarrod\nJerome\nJerrod\nJusitn\nLeslie\nLouis\nMarshall\nMartin\nMelvin\nShannon\nTracy\nTristan\nTyrone\nWeston\nZackary\nAlbert\nBarrett\nBarry\nBrendan\nCarlton\nClifford\nColin\nCortez\nDamian\nDonnie\nDonovan\nForrest\nGeoffrey\nHugh\nKeifer\nKelby\nLorenzo\nMarvin\nMiles\nRiley\nRoderick\nSebastian\nShaquille\nTy\nWilson\nZachariah\nZane\nAlec\nAlonzo\nAvery\nCodie\nDamon\nDarrin\nDarrius\nDewayne\nDrake\nGerald\nHarley\nHouston\nJarrett\nKerry\nKyler\nLeroy\nOmar\nPerry\nPeter\nRoman\nScottie\nSkylar\nStuart\nTerence\nTheodore\nWalter\nWill\nAllan\nArron\nBlaine\nBraden\nBrady\nBranden\nBroderick\nBryant\nCharlie\nDedrick\nDominic\nDusty\nDwayne\nEdwin\nErnest\nFloyd\nFreddie\nGunnar\nGunner\nJackie\nJasper\nJermaine\nJody\nJoey\nJordon\nJosiah\nJulius\nKelvin\nKolby\nKory\nLamar\nLeonard\nLukas\nMarkus\nMartez\nMaurice\nNicolas\nNorman\nParis\nQuincy\nRashad\nRico\nScotty\nStevie\nTerrence\nAlfred\nAntwon\nAubrey\nBrantley\nBraxton\nBret\nBriar\nBrice\nBrooks\nCarter\nCedrick\nCollin\nCorbin\nCord\nCornelius\nCoy\nDante\nDemario\nDenzel\nDeshawn\nDesmond\nEarl\nEdgar\nElijah\nErick\nFernando\nFrederick\nIvan\nJace\nJacoby\nJamarcus\nJesus\nJose\nKelly\nKorey\nLane\nLewis\nMario\nMarkell\nMarquise\nMiguel\nMyron\nOlen\nOrlando\nQuentin\nRuben\nWarren\nWaylon\nChristopher\nJoshua\nMichael\nTyler\nJames\nCody\nMatthew\nZachary\nJacob\nWilliam\nBrandon\nJustin\nJohn\nRobert\nDavid\nAndrew\nJoseph\nJonathan\nDylan\nNicholas\nDaniel\nAaron\nRyan\nJordan\nAustin\nSteven\nKyle\nAnthony\nCharles\nDustin\nTimothy\nJeremy\nBlake\nThomas\nBenjamin\nTaylor\nKevin\nEric\nStephen\nAdam\nDakota\nCaleb\nEthan\nPatrick\nSamuel\nCameron\nNathan\nAlexander\nBradley\nJesse\nRichard\nColton\nSeth\nJason\nDalton\nDerek\nKenneth\nBrian\nHunter\nTravis\nJeffrey\nDillon\nLogan\nChristian\nCorey\nAlex\nBryan\nChase\nJared\nWesley\nGregory\nShawn\nTanner\nTrevor\nDevin\nSpencer\nMark\nCasey\nGarrett\nSean\nTevin\nDerrick\nMarcus\nPaul\nShane\nColby\nEvan\nPhillip\nBilly\nCory\nJonathon\nJerry\nLuke\nMitchell\nClayton\nHayden\nJeffery\nTerry\nMason\nJimmy\nKeith\nGary\nJackson\nJohnathan\nGrant\nDarius\nGeorge\nScott\nBrett\nLarry\nRodney\nChad\nNathaniel\nPreston\nTony\nBobby\nRonald\nLevi\nZachery\nLucas\nRaymond\nAntonio\nBrent\nDevonte\nDonald\nJeremiah\nJohnny\nRandall\nTerrance\nDevante\nIan\nKody\nTrenton\nEdward\nJoe\nClint\nLandon\nXavier\nConnor\nCurtis\nDennis\nHenry\nKendall\nLance\nReginald\nTerrence\nTodd\nVincent\nDevon\nKristopher\nMicheal\nAllen\nCarl\nChance\nDamian\nJack\nJake\nJay\nLawrence\nTommy\nZackery\nClinton\nDanny\nJamie\nKaleb\nMicah\nRandy\nRickey\nRoger\nRussell\nZackary\nAdrian\nBrady\nCole\nCollin\nDarren\nDeandre\nGerald\nHeath\nJarrod\nJessie\nJoel\nLee\nPhilip\nShannon\nTrent\nWillie\nAlan\nColin\nCraig\nDominique\nDouglas\nDrew\nGabriel\nIsaac\nJohnathon\nQuinton\nRicky\nSkyler\nVictor\nCourtney\nEddie\nJose\nJulian\nMalcolm\nMathew\nBraden\nBryce\nClifton\nDallas\nDarrell\nJon\nMartin\nMorgan\nRoy\nShelby\nTy\nWalter\nWeston\nCalvin\nDamien\nDemetrius\nDesmond\nDexter\nDonovan\nJarred\nKendrick\nNickolas\nParker\nPeter\nTrey\nTroy\nTylor\nAlbert\nAlec\nBruce\nCedric\nDemarcus\nDominic\nElijah\nForrest\nFranklin\nGavin\nLouis\nMarquis\nMelvin\nQuentin\nRashad\nRoderick\nRonnie\nSkylar\nAndre\nCornelius\nCortez\nDrake\nDusty\nFrank\nGlen\nHarley\nHarrison\nJamal\nJaron\nShaquille\nStanley\nSteve\nAshton\nBranden\nByron\nCarlos\nCarlton\nCarter\nConner\nDamon\nDarryl\nDillion\nFrederick\nGarret\nHouston\nJalen\nJarrett\nJermaine\nJosiah\nJuan\nKeaton\nKelly\nKenny\nLewis\nMarshall\nPayton\nTerrell\nTre\nArthur\nBeau\nBo\nBryant\nCarson\nChandler\nClarence\nCordell\nDale\nErik\nJodeci\nKerry\nKirk\nMyles\nNeal\nNicolas\nNoah\nOrlando\nRusty\nTracy\nTristan\nWarren\nWinston\nBen\nBrennan\nBroderick\nCoty\nDalvin\nDarrius\nDeangelo\nDemarco\nDevonta\nDylon\nFredrick\nGraham\nHarold\nHarvey\nJace\nJacoby\nJarvis\nJerome\nJoey\nKameron\nKaylon\nKent\nKurt\nLondon\nLukas\nMarvin\nMaurice\nMax\nMiles\nRay\nReid\nRiley\nRodrick\nRoman\nRoss\nScotty\nTyrell\nZachariah\nZane\nAlfred\nAlvin\nAndy\nAron\nBennie\nBlaine\nBrannon\nBrock\nBrody\nClifford\nColeman\nDandre\nDarian\nDerick\nDevontae\nDewayne\nDillan\nDimitri\nDon\nDonavan\nDonnie\nDwight\nEarl\nEli\nEmmanuel\nErick\nGareth\nGarth\nIvan\nJackie\nJavier\nJesus\nJulius\nKalen\nKelton\nKory\nKyler\nLadarius\nLane\nLeo\nMackenzie\nMarquez\nQuintin\nRico\nRyne\nSergio\nSheldon\nStuart\nTerence\nTravon\nTyrone\nVernon\nWaylon\nWillard\nChristopher\nMichael\nJoshua\nTyler\nJames\nCody\nZachary\nJacob\nWilliam\nMatthew\nJustin\nBrandon\nJohn\nRobert\nAustin\nJoseph\nDavid\nAndrew\nJonathan\nNicholas\nDylan\nJordan\nDaniel\nRyan\nKyle\nAaron\nDustin\nCharles\nTaylor\nNathan\nTimothy\nThomas\nHunter\nBlake\nSteven\nAnthony\nJeremy\nStephen\nAlexander\nSamuel\nCaleb\nDakota\nBenjamin\nPatrick\nJesse\nAdam\nKevin\nRichard\nBrian\nLogan\nEric\nCameron\nDalton\nSeth\nDillon\nCorey\nTravis\nAlex\nGarrett\nTanner\nMarcus\nEthan\nDevin\nGregory\nJason\nSean\nKenneth\nTrevor\nJared\nBradley\nMark\nBilly\nChristian\nColton\nNathaniel\nJeffrey\nDerek\nSpencer\nJeffery\nWesley\nBryan\nPaul\nEvan\nJohnathan\nClayton\nCory\nShawn\nColby\nDerrick\nJerry\nLuke\nMason\nShane\nZachery\nChase\nKeith\nMitchell\nCasey\nEdward\nScott\nDarius\nHayden\nJimmy\nLarry\nTerry\nGary\nLevi\nLucas\nAntonio\nBobby\nBrett\nJose\nLance\nTrey\nPreston\nChad\nDonald\nGeorge\nJackson\nCalvin\nDallas\nJessie\nKendall\nPhillip\nTrenton\nBrent\nCole\nCurtis\nGrant\nJonathon\nKaleb\nLandon\nTevin\nAllen\nWeston\nBrady\nJalen\nRicky\nXavier\nCarl\nConnor\nDrew\nJack\nIsaac\nJake\nJoel\nRonald\nTommy\nTony\nDarren\nIan\nParker\nZackery\nChance\nDevon\nDevonte\nDouglas\nJeremiah\nJohnny\nKristopher\nMicheal\nTroy\nVincent\nZackary\nCollin\nDominique\nAdrian\nColin\nColten\nRandy\nDanny\nDevante\nDonovan\nGabriel\nHenry\nJamal\nKody\nMorgan\nPayton\nRandall\nRodney\nTerrance\nChandler\nDeandre\nDexter\nElijah\nFrank\nHarold\nJoe\nJulian\nKyler\nLouis\nQuentin\nShelby\nSkyler\nAlan\nDesmond\nRaymond\nRussell\nShaquille\nTrent\nAlbert\nBraden\nBryce\nCarlos\nDamien\nDamon\nDarrell\nJarrod\nReginald\nRoderick\nRonnie\nRoy\nTristan\nAshton\nAvery\nDemarcus\nJohnathon\nJordon\nLee\nMarquis\nMarshall\nPhilip\nSawyer\nTy\nConner\nCorbin\nCraig\nDenzel\nDillan\nDrake\nForrest\nHeath\nJamie\nJaylon\nJon\nLawrence\nMalcolm\nMelvin\nQuincy\nSheldon\nTerrell\nTyrone\nAndre\nBeau\nBruce\nClint\nClinton\nDarrius\nDennis\nGunner\nHouston\nJace\nJarvis\nJay\nJuan\nMartin\nMaxwell\nMiles\nNicolas\nRickey\nSebastian\nTodd\nTylor\nClifton\nColt\nCoy\nDillion\nEddie\nEli\nGage\nHarley\nKasey\nMarvin\nPerry\nPeter\nQuinton\nRaheem\nReed\nStanley\nStuart\nTre\nVictor\nWade\nWillie\nAddison\nArthur\nBrad\nBryant\nCarter\nClay\nConor\nCourtney\nDale\nDamian\nDarien\nDarryl\nDe\nDemetrius\nDevan\nDusty\nEdgar\nErik\nEugene\nGrayson\nHarrison\nIsaiah\nJermaine\nJerome\nJohnnie\nKameron\nKaylon\nKeenan\nKolby\nMarlon\nMathew\nScotty\nWarren\nZachariah\nAlec\nAlvin\nArron\nBraylon\nBrennon\nCedric\nCoty\nDayton\nDedrick\nDerick\nDewayne\nErnest\nEzekiel\nFrederick\nGeoffrey\nGerald\nGlen\nGreg\nHakeem\nJarred\nJarrett\nJoey\nKelly\nKerry\nKirk\nLane\nLeon\nLewis\nLonnie\nMadison\nMalcom\nMax\nMicah\nRay\nShannon\nSilas\nStetson\nTerrence\nTucker\nWalter\nAhmad\nAndy\nBernard\nBlaine\nBranden\nBraxton\nBrendon\nBrock\nBrody\nCarlton\nCarson\nCecil\nCharlie\nCordell\nDamion\nDarin\nDemario\nDeondre\nDeonte\nDeshaun\nDevonta\nDevontae\nDylon\nEarnest\nElias\nEmanuel\nErick\nFloyd\nFranklin\nFreddie\nJamison\nJarod\nJorge\nKarl\nKelsey\nKendell\nKeon\nKolten\nKory\nMackenzie\nMalik\nMaurice\nNeal\nNoah\nOmar\nPeyton\nRashad\nRiley\nRoger\nRoss\nRusty\nSam\nShaun\nSimon\nToby\nTracy\nWayne\nWilson\nMichael\nChristopher\nTyler\nAustin\nJacob\nJames\nZachary\nBrandon\nJoshua\nWilliam\nMatthew\nJohn\nJustin\nCody\nRobert\nJoseph\nDavid\nDaniel\nAndrew\nNicholas\nHunter\nAaron\nDylan\nJordan\nJonathan\nRyan\nDustin\nKyle\nCharles\nTimothy\nDakota\nSteven\nAlexander\nAnthony\nBlake\nCaleb\nKevin\nSamuel\nThomas\nBenjamin\nNathan\nTaylor\nEric\nJesse\nDalton\nLogan\nCameron\nDevin\nCorey\nJeremy\nStephen\nRichard\nSeth\nDillon\nAlex\nEthan\nPatrick\nJason\nChristian\nAdam\nBradley\nJared\nGarrett\nBrian\nKenneth\nWesley\nColton\nMarcus\nTrevor\nSean\nClayton\nChase\nGregory\nHayden\nMark\nSpencer\nTanner\nDerek\nJeffrey\nMason\nTravis\nCasey\nEvan\nJalen\nLuke\nNathaniel\nDarius\nCory\nPhillip\nXavier\nTrenton\nPaul\nShane\nTrey\nDevon\nLevi\nBrett\nMitchell\nShawn\nBryan\nChance\nConnor\nDerrick\nJonathon\nRodney\nBilly\nGary\nJeremiah\nJohnny\nLarry\nJerry\nRicky\nDonald\nGrant\nTony\nJake\nScott\nTerry\nZachery\nBrady\nJohnathan\nKaleb\nQuinton\nAllen\nChad\nCole\nDallas\nGeorge\nHarley\nLucas\nTevin\nGabriel\nSkyler\nBobby\nCurtis\nIsaac\nJimmy\nRandy\nAntonio\nCollin\nDrake\nElijah\nForrest\nJeffery\nHenry\nIan\nJackson\nJessie\nKeith\nKristopher\nLandon\nLane\nMicheal\nRonald\nRonnie\nZackary\nAdrian\nCarl\nPreston\nBraden\nBrent\nColby\nDarren\nDennis\nDrew\nEdward\nKendall\nRaymond\nReginald\nTommy\nJack\nJoe\nJohnathon\nJose\nRiley\nRoy\nZackery\nAlec\nCalvin\nHarrison\nLance\nMorgan\nNoah\nPayton\nCourtney\nJay\nJon\nParker\nShaquille\nAlan\nArthur\nClay\nClint\nDamon\nJamal\nKody\nMartin\nRussell\nShelby\nToby\nTodd\nTrent\nWeston\nAshton\nBryce\nConner\nDouglas\nLee\nMicah\nRoger\nSkylar\nTroy\nVincent\nChandler\nDamion\nDanny\nDeandre\nGage\nGerald\nJoel\nKendrick\nLawrence\nLuis\nSebastian\nSidney\nTerrence\nTyrone\nWalter\nWyatt\nByron\nCarson\nClinton\nColten\nCorliss\nDesmond\nDevonte\nEddie\nFrank\nJarvis\nMarquis\nQuentin\nRandall\nScotty\nTracy\nWillie\nAlbert\nAndre\nAvery\nCarter\nCorbin\nCraig\nDamian\nDarrius\nDevan\nDevonta\nDillion\nDusty\nFrederick\nGeoffrey\nHouston\nJarrod\nJaylon\nJuan\nKyler\nMathew\nMiles\nShannon\nShaun\nAddison\nBeau\nBranden\nBrendon\nBryant\nDale\nDamien\nDevante\nDominic\nDonovan\nEdwin\nErick\nErik\nJess\nKeifer\nKorey\nLonnie\nMalcolm\nMario\nMarquise\nMarshall\nMaxwell\nMiguel\nNickolas\nNicolas\nSheldon\nTy\nVictor\nAlonzo\nBrad\nBrendan\nBrock\nCade\nCedric\nColin\nCortez\nDemarcus\nEdgar\nEli\nEzekiel\nGarret\nGavin\nHeath\nJace\nJesus\nJonah\nJosiah\nJustice\nKameron\nMarvin\nMickey\nPhilip\nQuincy\nRashad\nReed\nShelton\nTerence\nTerrell\nWade\nWarren\nZane\nAlfred\nAngel\nBlaine\nBo\nBraylon\nBrenden\nBrennan\nBruce\nCoty\nDarion\nDarrell\nDayton\nDean\nDedrick\nDemetri\nDemetrius\nDequan\nDerick\nDeven\nDominique\nDonnie\nGunnar\nGunner\nHarold\nJaleel\nJamie\nJarred\nJavier\nJermaine\nKeaton\nKurt\nLadarius\nLorenzo\nMalik\nMarc\nMontana\nNeil\nNelson\nPeter\nPeyton\nRoberto\nRoss\nTerrance\nTrae\nTristan\nTylor\nWayne\nZachariah\nZechariah\nArron\nAusten\nBailey\nBraxton\nBrayden\nBriar\nBroderick\nBrody\nBryson\nCharlie\nColeman\nCordell\nDarian\nDarien\nDaron\nDarryl\nDemarius\nDemetris\nDeonte\nDeshawn\nDewayne\nDion\nDrue\nEmmanuel\nFreddie\nFredrick\nGlenn\nHugh\nIsaiah\nJackie\nJaron\nJerome\nJerrod\nJoey\nJordon\nKane\nKenny\nKolby\nKory\nLayne\nLouis\nLukas\nMarkel\nMarkus\nMax\nMelvin\nMyles\nOscar\nRaheem\nRay\nSawyer\nSterling\nTre\nTrevion\nTyler\nJacob\nChristopher\nAustin\nJoshua\nWilliam\nMichael\nJames\nBrandon\nMatthew\nCody\nJustin\nZachary\nJohn\nNicholas\nAndrew\nHunter\nDaniel\nJordan\nJoseph\nDakota\nDustin\nRobert\nAaron\nDavid\nJonathan\nRyan\nDylan\nLogan\nAnthony\nDalton\nNathan\nCaleb\nChristian\nAlexander\nCharles\nColton\nKevin\nSteven\nBenjamin\nKyle\nAdam\nTimothy\nGarrett\nAlex\nThomas\nStephen\nBlake\nJeremy\nSeth\nTaylor\nDevin\nEthan\nJesse\nSamuel\nTanner\nMarcus\nDillon\nEric\nJason\nRichard\nPatrick\nBrian\nTravis\nBradley\nMason\nTrevor\nCameron\nEvan\nLandon\nCorey\nLuke\nSean\nClayton\nWesley\nChase\nKenneth\nHayden\nJackson\nNathaniel\nPaul\nBryan\nGregory\nJeffrey\nLane\nBrett\nCasey\nJeffery\nSpencer\nCole\nJared\nLevi\nTristan\nConnor\nElijah\nKaleb\nMitchell\nDerek\nDevon\nIan\nShawn\nScott\nChance\nXavier\nColby\nTrenton\nJalen\nJohnathan\nMark\nNoah\nBobby\nJake\nPreston\nCory\nDarius\nEdward\nJose\nCurtis\nGrant\nJerry\nJimmy\nKeith\nBryce\nChandler\nLarry\nTerry\nZachery\nLucas\nPhillip\nSkyler\nTony\nAlec\nAntonio\nRicky\nBraden\nIsaac\nJonathon\nShane\nAllen\nChad\nDrew\nMalik\nTrey\nBilly\nBrent\nDrake\nLance\nMicah\nAdrian\nClay\nDallas\nHenry\nJohnny\nKody\nKristopher\nTevin\nWyatt\nGabriel\nGage\nGeorge\nShelby\nWeston\nBrady\nDerrick\nDevante\nIsaiah\nJeremiah\nJon\nQuinton\nRodney\nTommy\nDevonte\nDonald\nGary\nJoel\nMathew\nPayton\nRaymond\nTy\nCollin\nJack\nJessie\nKendall\nReginald\nRonald\nVictor\nAndre\nCalvin\nCarson\nCarter\nColin\nDemetrius\nKendrick\nMorgan\nRandall\nShannon\nTrent\nTristen\nTroy\nWalter\nZackery\nAlan\nDennis\nDouglas\nHarrison\nHouston\nLee\nMicheal\nParker\nPeyton\nQuentin\nRonnie\nTrevon\nBrendan\nCarl\nDarren\nJamal\nJarred\nJaylon\nJoe\nJohnathon\nRandy\nRoger\nRoy\nVincent\nZane\nBraylon\nBrock\nColten\nConner\nForrest\nHeath\nJace\nJay\nLuis\nRickey\nShaquille\nTodd\nTriston\nAshton\nBranden\nDamian\nDeonte\nDusty\nEddie\nErik\nFredrick\nMarquise\nSkylar\nZackary\nBailey\nBeau\nBrennan\nCarlos\nClifton\nClint\nClinton\nCortez\nCraig\nDarian\nDarrius\nDeandre\nDedrick\nGrayson\nHarold\nJamie\nJuan\nJustice\nKeaton\nKristian\nLayton\nMarquis\nMaxwell\nPeter\nQuincy\nRiley\nRiver\nTucker\nAusten\nBlaine\nBryson\nCooper\nDanny\nDominique\nHarley\nJarod\nJaylen\nJermaine\nJulian\nKyler\nMarshall\nNickolas\nOscar\nRay\nRussell\nTerrance\nTrever\nWarren\nWillie\nAddison\nAlvin\nAusitn\nBraxton\nBrenden\nBrenton\nBryant\nByron\nColt\nCornelius\nDamon\nDaryl\nDeion\nDesmond\nDevan\nDevontae\nDon\nDonovan\nEli\nFrank\nGavin\nGerald\nJacoby\nJarrod\nJesus\nJordon\nKelly\nKhalil\nMadison\nMalachi\nMalcolm\nMario\nMartin\nMontel\nNikolas\nRoderick\nRoosevelt\nSawyer\nWade\nAlbert\nAlejandro\nAnfernee\nArthur\nBrody\nBruce\nCade\nCedric\nCharlie\nColeman\nCorbin\nCoy\nCristian\nDale\nDemarcus\nDeon\nDevonta\nDexter\nDominic\nEaston\nEmmanuel\nFrancisco\nFranklin\nGeoffrey\nJarrett\nJavier\nJoey\nJorge\nJusitn\nKasey\nKeenan\nKelvin\nKendal\nKenny\nLanden\nLawrence\nLewis\nLonnie\nLorenzo\nMarc\nMarlon\nMarvin\nMiguel\nMiles\nMontrell\nNathanael\nPhilip\nReed\nRoss\nShaun\nTerence\nTerrell\nWalker\nWaylon\nWendell\nAbraham\nAidan\nAvery\nBarrett\nBen\nBennett\nBritton\nCecil\nCedrick\nDamien\nDarrell\nDayton\nDillan\nDuncan\nEdwin\nErick\nFrederick\nGarret\nGrady\nGreyson\nGustavo\nHolden\nJackie\nJalon\nJerome\nJess\nKane\nKolby\nKory\nLeonard\nManuel\nMarkel\nMikel\nOmar\nQuinn\nRicardo\nRusty\nSidney\nSonny\nStephon\nSteve\nStuart\nTeddy\nTerrence\nThaddeus\nTracy\nTylor\nJacob\nTyler\nAustin\nMichael\nChristopher\nWilliam\nJames\nJoshua\nBrandon\nMatthew\nZachary\nJohn\nCody\nJustin\nAndrew\nNicholas\nHunter\nJoseph\nDylan\nDavid\nRobert\nJordan\nChristian\nRyan\nAaron\nDakota\nJonathan\nDaniel\nCaleb\nLogan\nCharles\nKyle\nSamuel\nDustin\nNathan\nDalton\nAnthony\nBenjamin\nThomas\nAlexander\nBlake\nColton\nChase\nTimothy\nSeth\nSteven\nTristan\nEric\nEthan\nCameron\nDevin\nJesse\nKevin\nTaylor\nGarrett\nBradley\nTanner\nTrevor\nMalik\nBrian\nDillon\nNoah\nSpencer\nKenneth\nChance\nMason\nJared\nAlex\nJason\nRichard\nClayton\nCorey\nHayden\nCole\nJeffrey\nJeremy\nElijah\nTravis\nAdam\nEvan\nNathaniel\nPatrick\nJackson\nLuke\nStephen\nJohnathan\nSean\nMarcus\nGrant\nPreston\nBryan\nDerek\nMark\nWesley\nBrett\nChandler\nDarius\nConnor\nJose\nLucas\nPaul\nColby\nJonathon\nTrenton\nCasey\nLandon\nIsaac\nAlec\nGregory\nVictor\nAntonio\nLevi\nMitchell\nCory\nJerry\nKeith\nBilly\nDerrick\nIan\nLarry\nPhillip\nRonald\nTerry\nBryce\nShane\nDevon\nEdward\nJake\nJalen\nJaylon\nJeffery\nAllen\nIsaiah\nJeremiah\nJessie\nJuan\nBobby\nCollin\nGary\nMicah\nXavier\nGeorge\nKaleb\nLance\nShawn\nSkyler\nTristen\nChad\nLane\nScott\nTy\nZachery\nZackary\nBrent\nDeandre\nJack\nKendrick\nRaymond\nTony\nTrent\nBrady\nDonald\nKristopher\nWyatt\nAdrian\nCalvin\nCarson\nJimmy\nJohnathon\nRicky\nDallas\nDouglas\nDrake\nParker\nRandy\nRodney\nTriston\nWeston\nAndre\nBailey\nColin\nConner\nHarrison\nJustice\nQuinton\nAvery\nBraden\nCurtis\nDarren\nJoe\nJulian\nMicheal\nTrey\nWalter\nAshton\nClay\nColten\nDemarcus\nDrew\nEdgar\nGabriel\nGage\nJohnny\nRiley\nRussell\nTristin\nZane\nBraylon\nBrock\nCedric\nDamon\nDangelo\nDennis\nGunner\nKyler\nMartin\nPayton\nRonnie\nTroy\nWillie\nZackery\nByron\nCarter\nDanny\nJaylen\nLee\nLuis\nMathew\nNickolas\nRoger\nSkylar\nTommy\nWalker\nZachariah\nAlan\nBryant\nCarl\nCarlos\nClinton\nCraig\nDarian\nDarrell\nDillion\nErick\nHarley\nJesus\nJon\nKendall\nMorgan\nQuentin\nRandall\nRhett\nShannon\nSheldon\nTerrance\nAlejandro\nAndres\nCourtney\nDamien\nDevan\nDevonte\nDonovan\nEddie\nHeath\nJoel\nLawrence\nMario\nMarquis\nMarshall\nNicolas\nPeyton\nRoy\nShelby\nTristian\nVincent\nBlaine\nBrayden\nBrody\nCade\nCorbin\nDavis\nEduardo\nEmanuel\nGrayson\nHenry\nKeenan\nMalcolm\nMelvin\nPhilip\nSebastian\nTevin\nTodd\nWade\nWarren\nAddison\nArthur\nBeau\nBrenden\nBrennan\nCooper\nDamian\nDante\nDemetrius\nDesmond\nDevonta\nErik\nFrancisco\nGavin\nHerman\nHouston\nIvan\nJay\nJaylin\nJonah\nJosiah\nKaden\nKameron\nKeaton\nMarquez\nMiguel\nPeter\nReginald\nRoberto\nTucker\nAnfernee\nAusten\nBrad\nBraxton\nBrendan\nBriar\nBrice\nCesar\nCoty\nDeshawn\nDevante\nEdwin\nEli\nEmmanuel\nForrest\nGreyson\nHaden\nHarold\nJace\nJarod\nJimmie\nJoey\nKelton\nKody\nKurtis\nLouis\nMadison\nMarc\nMarvin\nMyles\nPerry\nReid\nRickey\nSawyer\nStephon\nTerrell\nTylor\nWill\nAlbert\nBradly\nBrendon\nBryson\nChauncey\nClarence\nClark\nClifton\nClint\nCornelius\nDamion\nDandre\nDavion\nDayton\nDeangelo\nDeion\nDeon\nDillan\nDominique\nDonnie\nEaston\nFrank\nGiovanni\nJamie\nJarrod\nJordon\nKaylon\nKeegan\nKelly\nKolby\nMackenzie\nManuel\nMarquise\nMaxwell\nMiles\nNathanial\nOscar\nRicardo\nRiver\nRoderick\nScotty\nStanley\nSteve\nToby\nTyrone\nWilson\nAbraham\nAubrey\nBranden\nBraylin\nBroderick\nColeman\nDalvin\nDavian\nDemario\nDenver\nDenzel\nDonte\nDylon\nEfrain\nElias\nErnest\nFabian\nFredrick\nGerald\nGraham\nGriffin\nGunnar\nJackie\nJacoby\nJamal\nJavier\nJess\nJessy\nJody\nKasey\nKelvin\nKerry\nKolton\nKorey\nKristofer\nKylon\nLadarius\nMckinley\nMontrell\nNikolas\nOwen\nQuincy\nReed\nRocky\nRoss\nSam\nShaun\nSterling\nTrace\nTyrell\nJacob\nAustin\nChristopher\nMichael\nTyler\nJoshua\nZachary\nWilliam\nMatthew\nJames\nJohn\nBrandon\nAndrew\nJustin\nNicholas\nCody\nHunter\nJoseph\nDavid\nDylan\nJordan\nCaleb\nRobert\nJonathan\nRyan\nChristian\nLogan\nDaniel\nSamuel\nAaron\nDakota\nKyle\nAlexander\nDalton\nEthan\nTimothy\nNathan\nCharles\nTanner\nNoah\nBenjamin\nJason\nThomas\nAnthony\nKevin\nColton\nCameron\nDevin\nSteven\nTaylor\nDustin\nEric\nBlake\nJeremy\nTrevor\nAlex\nSeth\nChase\nMason\nCole\nGarrett\nStephen\nKenneth\nJared\nClayton\nPatrick\nRichard\nHayden\nJackson\nTristan\nBradley\nBrian\nMark\nEvan\nLandon\nLuke\nDillon\nJesse\nSean\nMarcus\nAdam\nGregory\nKaleb\nSpencer\nGrant\nParker\nJohnathan\nConnor\nMalik\nPeyton\nWesley\nNathaniel\nTravis\nDarius\nElijah\nLevi\nTrenton\nJerry\nBryan\nChandler\nJose\nBrady\nBrett\nCorey\nDerrick\nIsaiah\nJeffrey\nLucas\nCory\nTy\nBryce\nGabriel\nMitchell\nShawn\nXavier\nBailey\nPreston\nDerek\nHarrison\nIsaac\nLarry\nAntonio\nChance\nJake\nJeremiah\nDevon\nIan\nJohnny\nShane\nAlec\nBraden\nDallas\nKeith\nDrake\nJeffery\nJessie\nJuan\nKyler\nBilly\nCollin\nJack\nTristen\nGary\nGavin\nLane\nPayton\nWyatt\nAllen\nColby\nDonald\nJaylon\nJimmy\nMicah\nRicky\nSkylar\nTommy\nTrey\nBobby\nBrendan\nCasey\nPaul\nAndre\nJonathon\nKendrick\nRiley\nRodney\nScott\nBrent\nCarl\nCarlos\nDrew\nHenry\nLuis\nSkyler\nWillie\nZachery\nAshton\nBrayden\nChad\nDarrell\nGage\nRonald\nTony\nTriston\nZackary\nAdrian\nAlan\nBraylon\nConner\nGeorge\nJace\nJakob\nJonah\nKendall\nRaymond\nWeston\nZane\nBraxton\nCarter\nColten\nDarren\nDonovan\nJalen\nJoel\nKelton\nLadarius\nPhillip\nTerry\nTrace\nZackery\nClinton\nCurtis\nDevonte\nJohnathon\nJustice\nKeaton\nKristopher\nNicolas\nRandy\nRussell\nSebastian\nTerrance\nCooper\nEdward\nGunner\nHarley\nJoe\nKameron\nKody\nLance\nMorgan\nQuentin\nRandall\nRickey\nTucker\nVictor\nAlejandro\nBranden\nCalvin\nCarson\nColin\nDanny\nDennis\nEddie\nEli\nGrayson\nHeath\nIvan\nJarrett\nJay\nJoey\nJon\nJosiah\nMarshall\nMicheal\nRiver\nToby\nVincent\nWalker\nWalter\nAvery\nBrock\nBrody\nCedric\nClay\nDante\nDarian\nDeandre\nDemetrius\nDesmond\nDouglas\nDusty\nFrank\nHouston\nIsiah\nJesus\nLee\nLewis\nMaxwell\nOmar\nPhilip\nReed\nRonnie\nTrevon\nAddison\nBeau\nBryson\nCesar\nCourtney\nDeonte\nDiego\nHector\nJaylen\nMalcolm\nMiles\nOscar\nQuinton\nRoderick\nRoss\nSheldon\nTodd\nTristian\nZachariah\nBlaine\nBrad\nBrenden\nBrennan\nBrenton\nBrice\nCorbin\nCristian\nDewayne\nDonavan\nEdgar\nEmmanuel\nErick\nJaden\nJermaine\nJulian\nJulius\nLukas\nMackenzie\nMartin\nMathew\nOwen\nReginald\nReid\nRoy\nTerrell\nTrent\nTristin\nTroy\nWade\nAlexis\nAndres\nAngel\nBraeden\nBriar\nBrooks\nBruce\nClarence\nCortez\nCoy\nCraig\nDamien\nDamon\nDaylon\nDayton\nDemarcus\nDeshawn\nDeven\nDillion\nDuncan\nFranklin\nGerald\nHarold\nJamie\nJarod\nJarrod\nJavon\nJordon\nKeenan\nKennedy\nKolton\nMario\nMarvin\nMiguel\nMontrell\nNickolas\nRafael\nRemington\nRobin\nRuben\nShannon\nShelby\nSimon\nTarik\nTracy\nTyrone\nAbel\nAidan\nAlbert\nBrendon\nBritton\nCade\nClifton\nClint\nDamion\nDangelo\nDavis\nDean\nDeangelo\nDeion\nDestin\nDominick\nEverett\nFrederick\nFredrick\nGerardo\nGlen\nGlenn\nHoward\nJamison\nJasper\nJaylan\nJohnnie\nKaden\nKeegan\nKelvin\nKenan\nKristian\nMadison\nMarquez\nMarquis\nMaurice\nMax\nMickey\nPerry\nRashad\nRhett\nRicardo\nRoberto\nRoger\nSawyer\nSidney\nTerrence\nTurner\nTyree\nAlvin\nArthur\nAsa\nAubrey\nAustyn\nBraiden\nBrennen\nBritt\nBrodie\nByron\nCaden\nCoby\nDamian\nDarrin\nDarrius\nDavion\nDenver\nDenzel\nDeon\nDonnie\nDustyn\nEaston\nEduardo\nErik\nErin\nEzekiel\nFabian\nFernando\nFreddie\nGreyson\nGunnar\nHaden\nJarvis\nJimmie\nJonas\nJorge\nJudah\nKarl\nKeandre\nKenton\nKeon\nKeshun\nKirk\nKolby\nKyron\nLeonard\nLeroy\nLouis\nMalachi\nMarkus\nMarlon\nMaverick\nMelvin\nNathanael\nOliver\nOrlando\nPeter\nQuincy\nRaul\nRodrick\nScotty\nSergio\nShaun\nSteve\nStuart\nTalon\nTrevin\nTrevion\nWaylon\nZechariah\nJacob\nAustin\nMichael\nJoshua\nChristopher\nTyler\nJames\nWilliam\nMatthew\nBrandon\nHunter\nJohn\nZachary\nNicholas\nDavid\nDylan\nAndrew\nJustin\nJordan\nCaleb\nEthan\nJoseph\nCody\nJonathan\nRobert\nLogan\nDakota\nNoah\nRyan\nDalton\nSamuel\nChristian\nAaron\nDaniel\nKyle\nCameron\nAnthony\nBenjamin\nAlexander\nDevin\nThomas\nGarrett\nNathan\nCharles\nSeth\nDustin\nBlake\nTrevor\nMason\nChase\nTanner\nColton\nAlex\nJackson\nJared\nSteven\nEric\nLandon\nTimothy\nTristan\nBradley\nCole\nAdam\nJason\nClayton\nBrian\nKaleb\nDillon\nKevin\nTaylor\nHayden\nNathaniel\nPatrick\nGabriel\nJeremy\nJesse\nLuke\nConnor\nGavin\nRichard\nJohnathan\nMarcus\nElijah\nIsaac\nShawn\nSpencer\nGrant\nIan\nMark\nWesley\nSean\nBryce\nKenneth\nLucas\nParker\nDevon\nGregory\nStephen\nTrenton\nDarius\nPeyton\nEvan\nIsaiah\nBrett\nJeffrey\nJeremiah\nAntonio\nCory\nWyatt\nBrady\nBryan\nJose\nColby\nGage\nJack\nJake\nJuan\nLevi\nMalik\nPaul\nXavier\nBilly\nChance\nChandler\nPayton\nTravis\nCorey\nMitchell\nPhillip\nJesus\nDallas\nLuis\nTrey\nBraden\nPreston\nShane\nBobby\nDawson\nDonald\nDrew\nTy\nAlec\nCollin\nCurtis\nLane\nNickolas\nRiley\nAdrian\nBailey\nEdward\nHenry\nJalen\nJaylon\nJerry\nBrayden\nCarlos\nCasey\nDerek\nGeorge\nJoel\nKeaton\nKeith\nTroy\nZane\nAllen\nCarter\nJessie\nKobe\nLarry\nScott\nTony\nTristen\nAshton\nCarson\nColin\nJohnathon\nAngel\nBraxton\nBrent\nBrock\nChad\nConner\nMathew\nSkyler\nZackery\nBraylon\nCalvin\nCarl\nColten\nDerrick\nGary\nJarrett\nJimmy\nKameron\nKyler\nQuinton\nRiver\nTrace\nTriston\nBrennan\nDennis\nHarrison\nJakob\nJoe\nMax\nTerry\nTrent\nZachery\nZackary\nDanny\nDrake\nGrayson\nGriffin\nJaylen\nJeffery\nJorge\nLance\nMicah\nRicky\nRodney\nTommy\nErik\nOscar\nAlejandro\nBrendan\nDarren\nKristopher\nMyles\nNicolas\nWade\nCade\nDamon\nDonovan\nDouglas\nErick\nJarrod\nJon\nJustice\nKody\nKolby\nLadarius\nLee\nMaxwell\nWalker\nAndre\nBb\nBlaine\nBryson\nByron\nDayton\nDevonte\nEli\nHarley\nJace\nJay\nJonathon\nKendall\nMaurice\nRaymond\nRicardo\nShelby\nVincent\nWeston\nAlan\nBeau\nBranden\nBrody\nDemetrius\nEaston\nHeath\nJaquan\nJonah\nKaylon\nKendrick\nLawrence\nMicheal\nMorgan\nQuentin\nRandall\nReece\nReginald\nRonald\nSkylar\nTevin\nToby\nTristian\nVictor\nAlexis\nBraydon\nBrenden\nBruce\nClinton\nCorbin\nDamian\nDominic\nDonnie\nDusty\nEduardo\nFrederick\nJamie\nJarod\nJaron\nJohnny\nKelvin\nMario\nMartin\nMiguel\nOmar\nPeter\nRhett\nRoss\nRussell\nSheldon\nTerrance\nWalter\nAidan\nAusten\nAvery\nBrice\nCamron\nCooper\nCordell\nCortez\nDarian\nDarion\nDarrell\nDeandre\nDesmond\nDevan\nDewayne\nDillan\nDonavan\nDonte\nEdwin\nFrancisco\nHolden\nIvan\nJackie\nJayden\nJaylin\nJordon\nJosiah\nJulian\nJuwan\nKaden\nKeshawn\nKylan\nLayne\nMalachi\nMalcolm\nManuel\nMarquise\nMarshall\nNathanael\nOrlando\nPhilip\nRandy\nReid\nRonnie\nSergio\nTerrell\nTrevon\nTyree\nWill\nAiden\nArmando\nBrad\nCraig\nDante\nDarrius\nDemarcus\nDestin\nDevontae\nDexter\nEmmanuel\nFernando\nFranklin\nGerald\nGunner\nHarold\nIsiah\nIsmael\nJamarcus\nJayson\nJerome\nKhalil\nKolton\nLathan\nMarvin\nMelvin\nNelson\nRoberto\nSam\nStone\nTracy\nTrevion\nTucker\nWarren\nWaylon\nWillie\nWilson\nAlbert\nAlvin\nAsa\nBo\nBryant\nBrycen\nCaden\nCarlton\nCesar\nClay\nCoby\nDamion\nDavion\nDavis\nDe\nDemarco\nDeondre\nDillion\nDominick\nDylon\nEddie\nEdgar\nElias\nEverett\nFrank\nFreddy\nGlenn\nGreyson\nGunnar\nHouston\nJaime\nJalin\nJalon\nJamal\nJamar\nJaret\nJarvis\nJasper\nJavier\nJody\nJonas\nJulio\nJustus\nJustyn\nKadarius\nKalen\nKane\nKelton\nKenny\nKirby\nKoby\nLanden\nMackenzie\nMadison\nMarc\nMarkus\nMarquis\nMiles\nParis\nReagan\nReese\nRemington\nRickey\nSawyer\nSidney\nSimon\nSolomon\nTodd\nTristin\nTyson\nWayne\nZachariah\nJacob\nWilliam\nMatthew\nAustin\nMichael\nJoshua\nChristopher\nTyler\nHunter\nJames\nBrandon\nZachary\nAndrew\nJohn\nDylan\nJoseph\nDavid\nNicholas\nJonathan\nJustin\nLogan\nCaleb\nJordan\nRobert\nEthan\nNoah\nCody\nRyan\nDaniel\nChristian\nCameron\nDakota\nSamuel\nSeth\nAaron\nDalton\nAnthony\nKyle\nCharles\nBlake\nBenjamin\nTimothy\nGarrett\nAlexander\nJason\nNathan\nTanner\nHayden\nJackson\nColton\nAlex\nEric\nSteven\nThomas\nMason\nNathaniel\nSpencer\nTrevor\nAdam\nChase\nKevin\nLuke\nDevin\nDustin\nTaylor\nLandon\nJared\nIsaac\nJose\nBradley\nJesse\nClayton\nElijah\nTristan\nCole\nJuan\nRichard\nTrenton\nJeremy\nKenneth\nGabriel\nIsaiah\nPatrick\nDawson\nConnor\nDillon\nBraden\nParker\nBrian\nBryan\nTravis\nTrey\nAntonio\nEvan\nJeremiah\nLucas\nChandler\nCarlos\nIan\nJeffrey\nLevi\nAdrian\nJohnathan\nPreston\nBrayden\nKaleb\nPeyton\nDevon\nStephen\nMarcus\nTy\nCarson\nDerek\nPayton\nSean\nChance\nCorey\nGrant\nPhillip\nShawn\nBryce\nColby\nJack\nLuis\nCory\nDarius\nGary\nJerry\nPaul\nCasey\nGavin\nWesley\nWyatt\nXavier\nBrett\nGregory\nJake\nJalen\nJeffery\nJohnny\nMitchell\nAllen\nDrake\nMark\nRaymond\nSkyler\nZackary\nAlec\nBilly\nKyler\nTrent\nBailey\nBrendan\nConner\nGage\nKeith\nScott\nZackery\nAlejandro\nAshton\nCollin\nDrew\nHenry\nJaylon\nJimmy\nLane\nMalik\nZane\nBobby\nCorbin\nShane\nAlexis\nDallas\nRodney\nVictor\nAvery\nCade\nDerrick\nDonald\nGunner\nHarrison\nJesus\nKeaton\nRiley\nTerry\nBrady\nBraxton\nBraylon\nBrent\nBryson\nZachery\nBrennan\nBrody\nEdward\nJayden\nJon\nJosiah\nKobe\nMaxwell\nQuinton\nTyrese\nWeston\nCarl\nDennis\nJavier\nJoel\nLance\nLarry\nQuentin\nTrevon\nAngel\nJaden\nJessie\nJohnathon\nJonathon\nJulian\nKameron\nMicheal\nNathanael\nSkylar\nWalter\nCalvin\nChad\nCurtis\nDonovan\nEli\nHarley\nJaylen\nMax\nMiguel\nMorgan\nReece\nTommy\nTucker\nAndre\nDanny\nGeorge\nJay\nKody\nMalachi\nMathew\nMicah\nRicky\nRussell\nVincent\nCaden\nCamron\nCedric\nClay\nColin\nCooper\nDeandre\nDevan\nDominic\nErick\nFredrick\nGrayson\nIvan\nJace\nJarrod\nMiles\nRonald\nRonnie\nRoy\nTony\nTristen\nZion\nAlan\nBrenden\nBrock\nCarter\nEdgar\nEduardo\nEmmanuel\nErik\nIsiah\nJarred\nJoe\nKristopher\nRandy\nReid\nRemington\nSebastian\nToby\nTroy\nBaby\nBarrett\nBlaine\nDarrell\nDesmond\nDeven\nEddie\nFernando\nGraham\nHeath\nIssac\nJaylin\nKaden\nKendall\nKendrick\nKolton\nLukas\nMarshall\nMartin\nOscar\nOwen\nPeter\nRandall\nRiver\nShelby\nTristin\nTriston\nAidan\nArthur\nAustyn\nDemetrius\nFrancisco\nGriffin\nJackie\nJamal\nJavion\nJermaine\nJonah\nKhalil\nKolby\nKylan\nLee\nMarkel\nMarlon\nNickolas\nNicolas\nOmar\nRickey\nShannon\nTerrell\nTerrence\nTyree\nWade\nWalker\nWillie\nAlbert\nAlberto\nBraeden\nBrendon\nCamden\nCoby\nColeman\nCornelius\nCraig\nCristian\nDavis\nDonavon\nDouglas\nEaston\nEzekiel\nFrederick\nHouston\nJamar\nJaron\nJarrett\nJaylan\nJayson\nJoey\nKelvin\nLayne\nLewis\nMalcolm\nMateo\nNelson\nNikolas\nRay\nSawyer\nStanley\nTodd\nTrace\nTyrone\nWilson\nAlvin\nAndres\nBo\nBraydon\nClifton\nColten\nCourtney\nDale\nDamian\nDarian\nDarren\nDeshawn\nDestin\nDonavan\nDoyle\nDyllan\nEdwin\nGerald\nGreyson\nJarod\nJarvis\nJorge\nJustice\nKade\nKentrell\nKeshawn\nLadarius\nLanden\nLayton\nLouis\nMadison\nMarquis\nMelvin\nMyles\nPedro\nPhilip\nQuincy\nReed\nReginald\nRoberto\nRoger\nSammy\nSheldon\nTurner\nWill\nAbraham\nAndy\nBb\nBeau\nBraylen\nBritton\nBroderick\nBrooks\nBruce\nChauncey\nChaz\nClifford\nColt\nCortez\nDarnell\nDaylon\nDemarcus\nDexter\nDillion\nDonte\nDusty\nEmanuel\nFabian\nGarrison\nGerardo\nGuy\nHarold\nIsmael\nJaime\nJamarius\nJasper\nJaveon\nJosue\nJulius\nKalen\nKeegan\nKevon\nKorbin\nKurt\nLawson\nLiam\nLondon\nMarco\nMario\nMarquez\nMarquise\nMarvin\nMaurice\nMontana\nPaxton\nPerry\nRicardo\nTalon\nTerrance\nTravon\nTreveon\nTristian\nTrysten\nTyson\nWarren\nWayne\nJacob\nWilliam\nMichael\nJoshua\nChristopher\nHunter\nBrandon\nAustin\nJames\nTyler\nEthan\nMatthew\nJohn\nZachary\nJustin\nNicholas\nChristian\nCaleb\nDylan\nJoseph\nAndrew\nLogan\nDavid\nJonathan\nJordan\nCameron\nRyan\nDalton\nNathan\nSamuel\nColton\nDakota\nRobert\nDaniel\nGarrett\nNoah\nAaron\nAlexander\nSeth\nCody\nJackson\nCharles\nThomas\nBenjamin\nAnthony\nMason\nTimothy\nBlake\nJason\nKyle\nChase\nLuke\nTanner\nTrevor\nKevin\nDevin\nGabriel\nElijah\nJared\nIsaac\nAlex\nEric\nCole\nHayden\nNathaniel\nJesse\nClayton\nIsaiah\nSteven\nBrian\nBryce\nWesley\nKaleb\nPatrick\nDustin\nGavin\nLandon\nRichard\nGrant\nTristan\nDawson\nJose\nTaylor\nBraden\nJohnathan\nParker\nDillon\nBradley\nLucas\nSpencer\nStephen\nPreston\nAdam\nJeremy\nKenneth\nLevi\nSean\nDevon\nXavier\nCarson\nChance\nMark\nPeyton\nBrayden\nCorey\nEvan\nJuan\nMarcus\nJack\nTrenton\nConnor\nGage\nGregory\nIan\nAntonio\nChandler\nShawn\nBrett\nJake\nPayton\nTravis\nBryan\nConner\nDarius\nRiley\nJeremiah\nAdrian\nDrake\nJaden\nJalen\nSkyler\nBrady\nJimmy\nLuis\nWyatt\nJaylen\nOscar\nPaul\nZackary\nDerrick\nJaylon\nJeffrey\nKameron\nZane\nBilly\nCarlos\nColby\nDrew\nHarrison\nHenry\nJace\nMiguel\nTerry\nTrey\nAlejandro\nBailey\nCurtis\nJerry\nJonathon\nLarry\nAlec\nBaby\nCaden\nCorbin\nDallas\nJohnny\nLane\nMalik\nShane\nTy\nBraylon\nBryson\nCade\nKobe\nSebastian\nAlan\nCollin\nDerek\nDonald\nGrayson\nJakob\nJesus\nJulian\nKeaton\nKristopher\nMax\nRonald\nAidan\nAlexis\nBrendan\nEli\nGary\nJarrett\nNicolas\nPhillip\nTony\nTucker\nWeston\nZachery\nBb\nBraxton\nBrent\nCarl\nCarter\nDonovan\nMicah\nMicheal\nMorgan\nBobby\nBrennan\nCedric\nFrancisco\nHarley\nKevon\nMartin\nMaxwell\nTommy\nTrent\nCory\nJayden\nJoe\nJoel\nJorge\nOmar\nReginald\nVincent\nAshton\nBrock\nChad\nHouston\nJohnathon\nJon\nJonah\nKaden\nKyler\nRicky\nTristen\nWarren\nAllen\nColin\nDante\nDominic\nEduardo\nEdward\nGeorge\nJosiah\nKolby\nOwen\nRicardo\nRonnie\nScott\nBrendon\nBrody\nCasey\nDeandre\nDennis\nDesmond\nFrederick\nGerardo\nJavier\nJaylan\nJeffery\nKeith\nKolton\nKylan\nLanden\nLawrence\nPeter\nPhilip\nTrevon\nWalter\nZackery\nAndre\nAngel\nAvery\nBlaine\nClay\nDanny\nDavion\nDiego\nDouglas\nEzekiel\nFernando\nGunner\nIsiah\nJavon\nKelton\nKendall\nManuel\nMitchell\nNickolas\nQuentin\nRaymond\nReed\nSkylar\nTate\nTyrese\nWalker\nZachariah\nCalvin\nCamden\nClifton\nColten\nCristian\nErick\nFranklin\nGarret\nGreyson\nJarvis\nJaylin\nJosue\nKendrick\nLance\nLee\nQuincy\nQuinton\nSimon\nBarrett\nCamron\nCayden\nColeman\nCooper\nDemetrius\nDeshawn\nDevan\nEddie\nHector\nJamie\nJay\nKaylon\nKoby\nKurt\nKyron\nLiam\nMalachi\nMalcolm\nMario\nMathew\nMiles\nMontana\nNathanael\nPerry\nRoss\nTristin\nTriston\nTroy\nVictor\nAddison\nBeau\nBennett\nBranden\nBrooks\nBruce\nCesar\nChris\nClinton\nDamon\nDarrell\nDaylon\nDayton\nDeon\nDewayne\nDonnie\nDylon\nEmmanuel\nEnrique\nErik\nFabian\nGarett\nHarold\nIsrael\nJacoby\nJamal\nJavion\nJaxon\nJordon\nJustice\nKeegan\nKeyshawn\nKody\nLouis\nMarkus\nMarquis\nMarshall\nMarvin\nNoel\nRandy\nReid\nRickey\nRodney\nSergio\nShamar\nTalon\nTitus\nTravon\nTyrell\nWade\nWayne\nAndy\nBraydon\nBrenden\nCoby\nColt\nCourtney\nDamien\nDamion\nDarian\nDarion\nDarren\nDerick\nDeven\nDillion\nDominique\nEdgar\nEzra\nFreddie\nGeoffrey\nHeath\nJaren\nJarod\nJessie\nJustus\nKarson\nKentrell\nLawson\nLayton\nLeonard\nMarco\nMaurice\nMyles\nNolan\nQuintin\nReece\nRemington\nRiver\nRoderick\nRodrick\nRoger\nRoman\nRussell\nRylan\nSawyer\nSilas\nTerrell\nTrevion\nTristian\nTylan\nTyson\nZechariah\nZion\nAbraham\nArthur\nBenton\nBlaze\nBo\nBrad\nBrayan\nBrennen\nBrennon\nBryant\nByron\nChaz\nClifford\nClint\nCortez\nCraig\nDamian\nDaron\nDavis\nDemarcus\nDenver\nDillan\nDwight\nEarnest\nEaston\nElias\nEmanuel\nEverett\nFredrick\nGraham\nGriffin\nIssac\nIvan\nJackie\nJadon\nJarred\nJayson\nJericho\nKaiden\nKamryn\nKane\nLadarius\nLathan\nLeo\nMarc\nMartavious\nNeal\nNikolas\nParis\nPedro\nRandall\nRaul\nRay\nReagan\nRoberto\nRodrigo\nRoy\nShaun\nSteve\nTerrance\nTodd\nTrace\nWilson\nWinston\nJacob\nWilliam\nJoshua\nAustin\nEthan\nHunter\nMatthew\nChristopher\nTyler\nMichael\nZachary\nJohn\nJames\nCaleb\nNicholas\nDylan\nAndrew\nBrandon\nLogan\nJonathan\nJoseph\nChristian\nDaniel\nRobert\nDavid\nCameron\nJustin\nNoah\nJordan\nAlexander\nSamuel\nJackson\nMason\nHayden\nThomas\nNathan\nBenjamin\nDalton\nSeth\nAaron\nDakota\nElijah\nGarrett\nCody\nAnthony\nRyan\nColton\nKyle\nLuke\nGavin\nBlake\nDevin\nJason\nCharles\nGabriel\nCarson\nTimothy\nKevin\nLandon\nSteven\nConnor\nEric\nKaleb\nChase\nEvan\nJose\nIsaac\nTanner\nNathaniel\nBraden\nTrevor\nIsaiah\nColby\nJuan\nJesse\nLucas\nTrenton\nBrayden\nPatrick\nPreston\nCole\nAlex\nTristan\nBrian\nBryce\nClayton\nRichard\nIan\nJared\nPayton\nSean\nWesley\nDustin\nMarcus\nPeyton\nAdam\nJaden\nCade\nSpencer\nDawson\nShawn\nXavier\nJesus\nJohnathan\nLevi\nParker\nJeremiah\nKenneth\nMark\nTaylor\nChandler\nTravis\nGage\nDevon\nJack\nJeremy\nStephen\nWyatt\nBrady\nAdrian\nCarter\nGrant\nJake\nKobe\nBradley\nDillon\nBryan\nCaden\nCarlos\nDerrick\nLuis\nChance\nJakob\nKyler\nPaul\nTy\nCollin\nDrake\nJayden\nMalik\nTrey\nBilly\nBraxton\nDarius\nGregory\nHarrison\nJaylen\nKeaton\nAshton\nCorbin\nCorey\nEli\nGeorge\nJalen\nJerry\nLance\nPhillip\nZackary\nJohnny\nKameron\nMiguel\nSebastian\nShane\nAntonio\nBryson\nJaylon\nJimmy\nJoel\nJosiah\nRiley\nTrent\nBrendan\nBrett\nEdward\nAllen\nCalvin\nConner\nDrew\nEduardo\nHenry\nLane\nLarry\nMalachi\nMicah\nTerry\nTristen\nAlexis\nBlaine\nBrock\nDallas\nGary\nJeffrey\nJulian\nMaxwell\nScott\nChad\nCooper\nJeffery\nJessie\nKeith\nSkyler\nTony\nAlec\nBaby\nCarl\nColin\nGrayson\nJon\nJonah\nKaden\nMarshall\nOmar\nRandy\nTommy\nWeston\nZane\nAvery\nBobby\nBrent\nCory\nCristian\nErick\nMiles\nMorgan\nNicolas\nTrevon\nVictor\nAlan\nAndy\nBraylon\nCamron\nCurtis\nHector\nKendall\nKolby\nRicky\nTucker\nVincent\nWalker\nZachery\nAidan\nAngel\nBailey\nBrody\nBryant\nDamien\nFrancisco\nHarley\nIsrael\nJace\nJarod\nJorge\nKristopher\nMario\nMicheal\nMitchell\nQuentin\nReece\nRicardo\nTristin\nZion\nAiden\nAndre\nBrenden\nCasey\nClay\nDemarcus\nDerek\nDonald\nIvan\nJoe\nKeegan\nKylan\nNickolas\nQuinton\nRandall\nRhett\nSkylar\nTriston\nAndres\nBeau\nDiego\nDominic\nDonovan\nDouglas\nEdgar\nGerardo\nJaxon\nJaylan\nJonathon\nLanden\nManuel\nQuincy\nRoberto\nTrace\nTroy\nAlejandro\nCesar\nDamon\nDavion\nGunner\nJamie\nJavier\nJohnathon\nKolton\nLee\nMathew\nMax\nMyles\nOscar\nPeter\nPhilip\nRonald\nTitus\nTravon\nWillie\nZackery\nAhmad\nAsa\nBraydon\nBrendon\nBrooks\nBruce\nDanny\nDarren\nDavis\nDayton\nDonavan\nEaston\nGiovanni\nGlenn\nGraham\nHouston\nJay\nJayce\nJaylin\nJayson\nKeagan\nKendrick\nLawson\nLiam\nLukas\nMartin\nPedro\nRaymond\nReginald\nRodney\nTrevion\nTyrese\nWarren\nAlberto\nArmando\nBarrett\nBlaze\nBraeden\nColten\nDamian\nDarrell\nDedrick\nDevan\nDeven\nDominick\nEdwin\nFrederick\nGerald\nGriffin\nGunnar\nJaiden\nJarrett\nJavion\nJaxson\nJett\nJulio\nJulius\nKade\nKelton\nKenny\nLeighton\nLouis\nMarc\nMarquis\nMarvin\nNathanael\nOwen\nRafael\nRemington\nRoss\nSergio\nShannon\nTylor\nUriel\nWill\nZachariah\nAdolfo\nArturo\nBenton\nByron\nCayden\nCedric\nCornelius\nCortez\nCruz\nDamion\nDante\nDarion\nDarnell\nDaylan\nDeandre\nDesmond\nDestin\nDevonte\nDillion\nDonte\nDorian\nEddie\nEmmanuel\nEzekiel\nFernando\nGarret\nIssac\nJagger\nJaheim\nJakobe\nJamal\nJarred\nJarrod\nJarvis\nJasper\nKadin\nKason\nKoby\nKyron\nMarcos\nNikolas\nNolan\nReid\nRiver\nSammy\nSaul\nSilas\nSimon\nSolomon\nSteve\nTerrance\nTerrell\nWilson\nAbraham\nAlfredo\nAlvin\nAugustus\nAxel\nAyden\nBaylor\nBennett\nBraiden\nBranden\nBrennen\nBriar\nClifton\nColeman\nCordell\nCraig\nDalen\nDarian\nDarrius\nDarwin\nDennis\nDeonte\nDewayne\nDexter\nDillan\nDraven\nElias\nEmanuel\nEnrique\nFabian\nFisher\nFrank\nFredrick\nGarrison\nGuillermo\nGustavo\nHarold\nHeath\nJacoby\nJade\nJaime\nJairo\nJerome\nJoey\nJosue\nJustice\nKaiden\nKale\nKeon\nKeyshawn\nKody\nKole\nLatrell\nLorenzo\nMarco\nMaurice\nMontana\nMontrell\nOliver\nPierce\nPresley\nQuinn\nRay\nReed\nRoy\nRussell\nRylan\nSawyer\nStanley\nStetson\nStone\nTheodore\nTravion\nWade\nJacob\nEthan\nWilliam\nCaleb\nJoshua\nChristopher\nMatthew\nHunter\nJames\nAustin\nMichael\nJohn\nTyler\nBrandon\nLogan\nChristian\nAndrew\nDylan\nZachary\nDavid\nJonathan\nAlexander\nJoseph\nJordan\nJackson\nRobert\nNicholas\nNoah\nRyan\nNathan\nSamuel\nElijah\nBenjamin\nDaniel\nJustin\nAnthony\nCameron\nDakota\nCody\nHayden\nSeth\nGabriel\nMason\nLuke\nGarrett\nAaron\nColton\nGavin\nDalton\nKyle\nTimothy\nBlake\nThomas\nConnor\nAlex\nIsaac\nKaleb\nCharles\nLandon\nJason\nCarson\nDevin\nJose\nChase\nKevin\nBrayden\nIsaiah\nJuan\nNathaniel\nEric\nTanner\nJeremiah\nSteven\nTristan\nTrevor\nBraden\nCarlos\nCole\nJared\nLevi\nAdam\nClayton\nEvan\nIan\nJesse\nBryan\nBryce\nGage\nJack\nPeyton\nWyatt\nRichard\nAntonio\nRiley\nJaden\nLucas\nLuis\nStephen\nBradley\nColby\nGrant\nJayden\nParker\nPreston\nKaden\nKenneth\nBrian\nDevon\nCarter\nDawson\nSean\nTrenton\nAngel\nMarcus\nSpencer\nCaden\nChance\nEli\nKobe\nXavier\nAdrian\nAshton\nJake\nJesus\nCade\nChandler\nPayton\nCooper\nDustin\nJohnathan\nTaylor\nDrake\nJohnny\nDillon\nJeremy\nSebastian\nShawn\nCollin\nDerek\nPhillip\nBobby\nBrady\nConner\nGrayson\nHarrison\nAidan\nCorbin\nHenry\nMark\nMicah\nBilly\nKeith\nLance\nPatrick\nBrendan\nDerrick\nJaxon\nMalachi\nSkyler\nWesley\nAiden\nDallas\nEdward\nErick\nGeorge\nJace\nJaylon\nTy\nZane\nAlan\nBraylon\nJimmy\nLarry\nMitchell\nShane\nBryson\nEdgar\nJakob\nJaylen\nLane\nTrent\nTrey\nTristen\nAlejandro\nJalen\nJoel\nJosiah\nJulian\nKade\nKeaton\nKristopher\nMalik\nScott\nColin\nCorey\nCory\nDiego\nDominic\nDonovan\nGregory\nJessie\nKyler\nPaul\nVictor\nZachery\nBrock\nEaston\nGary\nIvan\nJerry\nJonathon\nMiguel\nMiles\nOscar\nTravis\nWeston\nBlaine\nBraxton\nBrett\nDamien\nDarius\nDrew\nHarley\nJagger\nJeffrey\nJonah\nKameron\nKody\nOwen\nRaymond\nRodney\nZackary\nBeau\nCarl\nDanny\nDayton\nDonald\nEduardo\nGunner\nKeegan\nKendall\nLayton\nRonald\nVincent\nZackery\nBrody\nCamron\nCharlie\nCristian\nDouglas\nFernando\nGiovanni\nGriffin\nJay\nJeffery\nLanden\nMario\nOmarion\nRhett\nAlexis\nAllen\nAvery\nBaby\nCalvin\nCesar\nCoby\nJayce\nJustice\nMartin\nMarvin\nNicolas\nReginald\nRonnie\nRoss\nTerry\nWalter\nZion\nDamian\nEdwin\nElias\nErik\nFrancisco\nHolden\nJaylin\nJorge\nMarshall\nMathew\nNickolas\nRandy\nRicky\nSergio\nToby\nTommy\nTrace\nWillie\nAndres\nBrennan\nCedric\nDevan\nDominick\nElisha\nJamal\nJasper\nJoe\nJohnathon\nJon\nKylan\nLawson\nMaxwell\nMicheal\nMyles\nOmar\nRemington\nRiver\nRoger\nRussell\nSimon\nSkylar\nTavion\nTevin\nTony\nTristin\nTriston\nAhmad\nAsher\nBailey\nBo\nBraiden\nBraydon\nBrent\nBryant\nByron\nCayden\nCornelius\nCraig\nCurtis\nDarren\nEddie\nGunnar\nHector\nJamie\nJavier\nJayson\nKaiden\nKelton\nKolton\nLukas\nMarco\nMarquis\nMax\nMelvin\nPhilip\nQuinton\nReid\nRicardo\nSalvador\nSawyer\nTerrance\nTucker\nWilson\nZachariah\nAndre\nAndy\nAsa\nAyden\nBrenden\nCasey\nDamon\nDante\nDemetrius\nDonavan\nEmmanuel\nEnrique\nFrank\nGarret\nIsiah\nJaydon\nJaylan\nJerome\nJett\nJosue\nKadin\nKason\nKendrick\nLayne\nLee\nRafael\nReece\nTrevion\nTroy\nWarren\nWaylon\nAlec\nBen\nBlayne\nBraeden\nBraylen\nBrooks\nClifton\nDax\nDevonte\nDylon\nEarl\nEzekiel\nFabian\nFredrick\nGarrison\nGreyson\nHeath\nJaheim\nJarrett\nJarvis\nJavian\nKamron\nKelvin\nKevon\nNathanael\nOrion\nQuentin\nQuincy\nRashad\nReese\nRoberto\nRoderick\nSidney\nStanley\nTalon\nTate\nTrevon\nTyrese\nWalker\nAbraham\nAlbert\nArmando\nArthur\nAustyn\nBlaze\nBrad\nBrendon\nBret\nCaiden\nCamden\nCamren\nCannon\nChad\nChris\nClarence\nClay\nColeman\nColeton\nColten\nCourtney\nCullen\nDamion\nDane\nDaquan\nDarrius\nDavin\nDaylan\nDaylon\nDeandre\nDesmond\nDeven\nElliott\nFranklin\nGaven\nGerardo\nGrady\nGustavo\nHayes\nIsmael\nIsrael\nIssac\nJadon\nJahiem\nJair\nJalon\nJamison\nJaquan\nJaxson\nJeb\nJefferson\nJordon\nKai\nKane\nKenny\nKeon\nKevion\nKolby\nKylin\nLamont\nLathan\nLawrence\nLeonardo\nLiam\nMalcolm\nMarkell\nMauricio\nMaximus\nMoises\nMorgan\nOliver\nOrlando\nPedro\nRamiro\nRandall\nRaul\nRuben\nShamar\nShaun\nSky\nSonny\nTerrell\nTreyton\nWade\nWill\nXander\nZander\nJacob\nJoshua\nEthan\nWilliam\nMichael\nCaleb\nJohn\nChristopher\nMatthew\nJames\nAndrew\nLogan\nTyler\nHunter\nDylan\nAustin\nChristian\nJoseph\nSamuel\nZachary\nDavid\nJackson\nNoah\nBrandon\nJonathan\nJordan\nAnthony\nNicholas\nHayden\nCameron\nLandon\nGavin\nRobert\nAlexander\nJustin\nLuke\nRyan\nDaniel\nConnor\nNathan\nBenjamin\nElijah\nGabriel\nMason\nBrayden\nSeth\nIsaac\nThomas\nAaron\nKevin\nCody\nEvan\nCharles\nBlake\nJason\nColton\nDakota\nTimothy\nDalton\nCaden\nGarrett\nJesse\nAlex\nAshton\nCarson\nEric\nTrenton\nIan\nJeremiah\nKaleb\nSteven\nDevin\nBrian\nNathaniel\nJayden\nJose\nTristan\nAidan\nClayton\nIsaiah\nParker\nChase\nGage\nLucas\nBryan\nKyle\nCole\nJaden\nTanner\nTrevor\nKaden\nBraden\nCarter\nPreston\nDillon\nEli\nJack\nJared\nAdrian\nCooper\nDustin\nZane\nBradley\nBryce\nLevi\nSean\nTy\nAiden\nJake\nJesus\nLane\nAdam\nJuan\nStephen\nWesley\nAngel\nKenneth\nRichard\nWyatt\nConner\nJohnathan\nBrady\nSpencer\nAntonio\nBraxton\nColby\nDevon\nLuis\nMicah\nXavier\nCollin\nGrant\nPatrick\nChandler\nGeorge\nHarrison\nJeremy\nMalachi\nOwen\nTaylor\nBryson\nCade\nCarlos\nDawson\nRiley\nShawn\nLanden\nSkyler\nChance\nColin\nMiguel\nPeyton\nTrey\nGregory\nJalen\nJaxon\nTravis\nJonah\nJorge\nCorey\nJaylon\nJeffrey\nJimmy\nMark\nPayton\nBrock\nDominic\nJerry\nNicolas\nBrett\nDiego\nGrayson\nGunner\nSebastian\nBilly\nBrody\nCasey\nDerrick\nHenry\nKameron\nKobe\nMarcus\nWeston\nCorbin\nDonald\nEaston\nIvan\nJace\nJoel\nMax\nPaul\nVictor\nAlejandro\nAvery\nCayden\nDrake\nJulian\nMario\nScott\nSkylar\nAllen\nBaby\nHaden\nJaylen\nJoe\nJosiah\nKyler\nMarco\nMiles\nMitchell\nTrent\nZachery\nZackary\nAlan\nBlaine\nBrennan\nCurtis\nDerek\nDonovan\nEdward\nGary\nJohnny\nKamron\nLawson\nRodney\nShane\nXander\nZander\nAden\nAlec\nBobby\nBraylon\nBrenden\nEdgar\nEduardo\nEmmanuel\nHarley\nJakob\nJarrett\nLance\nPhillip\nRandy\nRaymond\nReece\nRicky\nTrace\nBeau\nCedric\nCristian\nDamien\nDanny\nDarius\nErik\nKeegan\nKeith\nLarry\nAyden\nCalvin\nCamden\nCamron\nCesar\nCory\nDavis\nJamal\nJayce\nJeffery\nKade\nKeaton\nKristopher\nLayton\nMathew\nOmar\nOscar\nRiver\nRonald\nRussell\nTerry\nBraydon\nCarl\nDamian\nDante\nDayton\nDrew\nEdwin\nFernando\nJon\nKayden\nMalik\nMyles\nQuinton\nTristen\nTucker\nAlexis\nAndy\nAsher\nBailey\nBryant\nDallas\nFrancisco\nHector\nJavion\nJaxson\nJayson\nJessie\nKeenan\nKendrick\nLiam\nSawyer\nTerrance\nTyrone\nAbraham\nAndre\nBrooks\nChad\nClay\nDamon\nDavion\nDouglas\nEddie\nEnrique\nErick\nGiovanni\nJagger\nJavier\nJaylin\nJett\nJonathon\nKylan\nMarshall\nMaxwell\nMicheal\nQuentin\nReginald\nTate\nTony\nTristin\nTriston\nVincent\nWade\nWilson\nZachariah\nAdolfo\nBrendan\nDale\nDennis\nDeven\nDominick\nFisher\nJohnathon\nJosue\nKaiden\nLouis\nNickolas\nRoman\nRonnie\nTyrese\nWalker\nWalter\nAddison\nBarrett\nBraeden\nBraiden\nBrennen\nDemarcus\nDevan\nDewayne\nDraven\nFabian\nFrank\nGrady\nHeath\nHouston\nJacobi\nJaiden\nJaime\nJamari\nKadin\nKannon\nKendall\nKolby\nKolton\nKristian\nLeonardo\nMarquis\nMaurice\nMauricio\nMoises\nOmarion\nPablo\nPedro\nRandall\nReese\nRemington\nRuben\nSergio\nShannon\nTitus\nTommy\nYahir\nZackery\nAndres\nAntoine\nArmando\nAsa\nBrendon\nBrice\nCason\nCharlie\nClinton\nCoby\nColeman\nDaylan\nDillion\nElisha\nGerardo\nGustavo\nIsai\nIsrael\nIssac\nJadon\nJakobe\nJalon\nJamarion\nJase\nJaydon\nJaylan\nJude\nJustice\nKai\nKelton\nKenyon\nLayne\nLewis\nManuel\nMemphis\nMorgan\nNathanael\nOrlando\nOsvaldo\nQuinn\nRafael\nRaul\nReed\nReid\nRhett\nRoberto\nRoss\nRoyce\nRylan\nSaul\nSimon\nToby\nTrevon\nTyron\nUriel\nWaylon\nWayne\nAlexzander\nAmarion\nAxel\nBarry\nBraylen\nBrenton\nCaiden\nClint\nCristopher\nDarrell\nDaxton\nDaylon\nDean\nDeclan\nDominique\nDontavious\nElliott\nEmanuel\nErnest\nFelix\nFranklin\nFrederick\nGarrison\nGaven\nGreyson\nHugo\nJadyn\nJaheim\nJair\nJamarius\nJamie\nJamison\nJaven\nJermaine\nJoey\nJulio\nJulius\nKane\nKeshawn\nKohl\nLee\nLeo\nLeroy\nMarc\nMartin\nMoses\nNelson\nPaxton\nPierce\nRolando\nShaun\nShelby\nSilas\nStefan\nTerrence\nTyson\nWillie\nZeke\nJacob\nWilliam\nEthan\nJoshua\nMichael\nJames\nHunter\nMatthew\nTyler\nAndrew\nChristopher\nLogan\nCaleb\nJohn\nJoseph\nAustin\nLandon\nBrandon\nDaniel\nJackson\nDavid\nDylan\nSamuel\nElijah\nRobert\nZachary\nChristian\nHayden\nNathan\nRyan\nJustin\nCameron\nNoah\nAnthony\nMason\nJordan\nAlexander\nJonathan\nNicholas\nBenjamin\nGavin\nEvan\nCharles\nConnor\nDakota\nAaron\nBrayden\nGabriel\nLuke\nIsaac\nJose\nThomas\nJason\nJesse\nAshton\nCody\nSeth\nJayden\nJeremiah\nCaden\nKaden\nBlake\nNathaniel\nAlex\nKaleb\nKevin\nDalton\nAidan\nCarson\nColton\nGarrett\nIsaiah\nWyatt\nEric\nDevin\nChase\nAiden\nLucas\nTristan\nBraden\nJuan\nSteven\nTimothy\nJaden\nConner\nTanner\nBraxton\nClayton\nEli\nBrady\nIan\nLevi\nBrian\nCole\nDawson\nPeyton\nMalachi\nPreston\nAngel\nCarter\nColby\nOwen\nParker\nBryan\nCooper\nTrevor\nBryce\nAdam\nCade\nJack\nLuis\nChandler\nJesus\nMarcus\nPayton\nSkyler\nTaylor\nAdrian\nKyle\nKyler\nLanden\nRiley\nTrenton\nGrant\nSpencer\nCarlos\nColin\nKenneth\nTy\nMicah\nStephen\nXavier\nBryson\nHenry\nJared\nJimmy\nJohnathan\nPatrick\nWesley\nGage\nTravis\nAntonio\nDevon\nGeorge\nJake\nJeremy\nJaxon\nLane\nRichard\nAlexis\nDrake\nAyden\nDustin\nZander\nCorbin\nGrayson\nJace\nPaul\nDillon\nJaylen\nJosiah\nTrey\nVictor\nCollin\nSebastian\nAllen\nBraylon\nJaylon\nJoel\nShawn\nZane\nAvery\nBrett\nOscar\nAlan\nBradley\nChance\nDominic\nJalen\nBaby\nDamian\nDiego\nEaston\nIvan\nShane\nXander\nAlejandro\nBobby\nDamien\nJohnny\nJorge\nMiguel\nMiles\nMorgan\nPhillip\nSean\nBrock\nCalvin\nDerek\nDerrick\nEdward\nGregory\nJerry\nJulian\nKeith\nMario\nTerry\nWeston\nBraydon\nBrody\nCamron\nCorey\nCristian\nDonovan\nErick\nGunner\nKameron\nKeaton\nLance\nMark\nTrace\nTriston\nTroy\nBeau\nCayden\nDayton\nDonald\nFrancisco\nJonah\nMaddox\nRonald\nBryant\nDrew\nEzekiel\nHarrison\nJosue\nReece\nRicky\nSkylar\nTristen\nAndy\nBrenden\nCamden\nCesar\nDallas\nDarius\nDavion\nHudson\nJakob\nJamarion\nJavion\nJaxson\nJessie\nKade\nKeegan\nMax\nRiver\nRonnie\nSawyer\nZackary\nAden\nBrooks\nEdwin\nJon\nKendrick\nKristopher\nNicolas\nOmarion\nRaymond\nRyder\nTucker\nVincent\nAsher\nBilly\nCurtis\nDavis\nEdgar\nErik\nFernando\nGustavo\nHarley\nJakobe\nJavier\nJeffrey\nJonathon\nKaiden\nManuel\nNickolas\nRussell\nSergio\nTony\nWaylon\nBlaine\nBrendan\nChad\nCoby\nJaiden\nJamal\nJeffery\nJett\nKobe\nKody\nMicheal\nMitchell\nPedro\nRaul\nRhett\nScott\nTate\nTrevon\nTyson\nAsa\nBrayan\nBrendon\nBrennan\nCarl\nCasey\nCharlie\nEnrique\nGary\nGerardo\nGriffin\nHolden\nJay\nKayden\nKeshawn\nLarry\nLee\nLiam\nMathew\nNikolas\nOrlando\nPhilip\nReese\nRicardo\nSilas\nSimon\nTristin\nWalker\nWilson\nAdan\nAlec\nAndre\nBennett\nBrice\nColeman\nColten\nCornelius\nDaylon\nDemetrius\nDennis\nEduardo\nElias\nEmmanuel\nGreyson\nHector\nHouston\nIsrael\nJarrett\nJude\nKamron\nKeenan\nKolton\nLawson\nMarcos\nOliver\nPablo\nPhoenix\nPierce\nQuentin\nRoberto\nRoderick\nRoy\nTerrance\nTrent\nWalter\nZackery\nAmarion\nAndres\nArthur\nBo\nBrent\nBriar\nCedric\nCory\nDominick\nFrederick\nGavyn\nHaden\nJamie\nJase\nJustice\nKendall\nKolby\nKylan\nKyron\nLathan\nLayton\nLeonel\nLukas\nMalik\nMarquis\nMarshall\nMaurice\nMaxwell\nOmar\nPeter\nQuincy\nRandall\nRandy\nRoss\nRylan\nTommy\nTrevion\nWarren\nWillie\nAbraham\nAgustin\nAlbert\nAlexzander\nBraeden\nBraiden\nBrodie\nBrycen\nByron\nCash\nCason\nChris\nDevan\nDewayne\nElisha\nElliot\nEly\nEmanuel\nEzra\nFabian\nGauge\nGiovanni\nIssac\nJabari\nJagger\nJamari\nJavon\nJayce\nJaylin\nJulius\nKanye\nKelvin\nLewis\nLincoln\nMarques\nMarvin\nNathanael\nPaxton\nReginald\nRemington\nRodney\nSolomon\nTobias\nWade\nZachery\nZion\nAlvin\nAnderson\nArmando\nAxel\nAydan\nBailey\nBowen\nBrandan\nBrant\nBraylan\nBrennen\nBriley\nBruce\nCaiden\nClark\nClay\nCoy\nCyrus\nDagan\nDamon\nDanny\nDarrell\nDarren\nDemarcus\nDesmond\nDusty\nEan\nFloyd\nFredrick\nGraham\nHarold\nJaheim\nJamarian\nJameson\nJayvion\nJoey\nJohnathon\nJordon\nKadin\nKarson\nKelton\nKenny\nKhalil\nKoby\nKonnor\nKristian\nLawrence\nLayne\nLeonardo\nLouis\nMarlon\nMartin\nMateo\nNate\nNelson\nQuinton\nReed\nRoman\nRowdy\nRuben\nRylee\nSam\nSantiago\nShamar\nShannon\nSullivan\nTheodore\nTitus\nTreveon\nTyree\nTyrone\nUriel\nYahir\nEthan\nWilliam\nJacob\nJoshua\nJames\nMichael\nCaleb\nChristopher\nTyler\nLogan\nNoah\nMatthew\nJohn\nHunter\nLandon\nAustin\nDavid\nAndrew\nJoseph\nJackson\nElijah\nMason\nHayden\nSamuel\nJonathan\nGabriel\nChristian\nAlexander\nBrandon\nDylan\nAnthony\nDaniel\nBenjamin\nNicholas\nRyan\nGavin\nJustin\nBrayden\nJordan\nRobert\nConnor\nJayden\nNathan\nEvan\nZachary\nCaden\nAshton\nLuke\nAaron\nCharles\nAiden\nCameron\nThomas\nJose\nKevin\nIsaac\nDakota\nSeth\nJesse\nParker\nColton\nDalton\nCody\nKaden\nPeyton\nBlake\nCarson\nConner\nIan\nAidan\nAlex\nJeremiah\nIsaiah\nCarter\nJason\nCooper\nCole\nJuan\nAdrian\nAngel\nDevin\nJack\nLucas\nJaden\nRiley\nWyatt\nBraden\nTimothy\nEric\nLevi\nChase\nEli\nGarrett\nAdam\nBryce\nDevon\nKaleb\nKyle\nLuis\nTristan\nDawson\nBryan\nNathaniel\nBraxton\nKenneth\nTrenton\nBrian\nCarlos\nJake\nJaxon\nJeremy\nTy\nGage\nJesus\nSteven\nWesley\nLanden\nRichard\nOwen\nAntonio\nBrady\nHarrison\nSpencer\nAyden\nClayton\nPayton\nPreston\nTanner\nTrevor\nBradley\nCayden\nDrake\nMarcus\nTravis\nHenry\nSean\nChance\nBryson\nIvan\nJared\nTaylor\nZane\nColin\nDiego\nDillon\nJaylen\nLane\nMark\nShawn\nBraylon\nCollin\nMicah\nAlan\nColby\nCorey\nJimmy\nJonah\nKyler\nPatrick\nVictor\nAlejandro\nChandler\nJace\nJohnathan\nJorge\nJulian\nDominic\nMiguel\nXavier\nGrant\nGrayson\nHudson\nJeffrey\nJosiah\nShane\nBrett\nEdward\nKameron\nMalachi\nPaul\nBaby\nCorbin\nJamarion\nMaddox\nOscar\nXander\nAllen\nAndy\nAvery\nCade\nKaiden\nKeaton\nLance\nManuel\nMax\nSkyler\nTommy\nTucker\nDerrick\nJaylon\nJessie\nLarry\nAsher\nBeau\nBraydon\nBrock\nDamien\nDrew\nDustin\nEdgar\nGary\nJerry\nKayden\nNicolas\nPhillip\nRylan\nSebastian\nAden\nCamden\nCarl\nCesar\nEaston\nEduardo\nFernando\nGregory\nJon\nKeegan\nOmar\nTriston\nWeston\nAlexis\nAndres\nBlaine\nCamron\nFrancisco\nGeorge\nJude\nKylan\nMario\nMaxwell\nMicheal\nMitchell\nMorgan\nStephen\nVincent\nWarren\nAddison\nBilly\nBrenden\nDennis\nDonovan\nEddie\nErik\nHector\nJaxson\nJohnny\nJonathon\nMalik\nTrey\nBobby\nCalvin\nCristian\nDallas\nDanny\nDonald\nEdwin\nEmmanuel\nGriffin\nGunner\nJaiden\nJaime\nKendall\nOmarion\nRandy\nRicardo\nSawyer\nSergio\nSkylar\nTerry\nAndre\nBraeden\nBraylen\nGustavo\nJulio\nJustice\nMelvin\nOliver\nPablo\nRaymond\nReece\nRiver\nRoberto\nSilas\nTalon\nTerrance\nTroy\nZachery\nZackery\nAbraham\nArmando\nBennett\nBo\nBrennan\nBrody\nDamian\nDemarion\nGreyson\nJalen\nJavier\nJeffery\nJoe\nJohan\nKarson\nKeith\nKristian\nLeonardo\nLiam\nMartin\nNickolas\nQuentin\nSimon\nTrent\nWalker\nWilson\nAmarion\nAsa\nBraiden\nBrice\nBrodie\nBrooks\nClinton\nDavion\nDerek\nDorian\nHarley\nHolden\nIssac\nJakob\nJavion\nJohnathon\nKamron\nLandyn\nLee\nMarvin\nQuinton\nRhett\nRussell\nTristen\nTyson\nArturo\nBryant\nCaiden\nCannon\nCasey\nCason\nCoby\nCourtney\nDamon\nElias\nErick\nGaven\nGiovanni\nGunnar\nIzaiah\nJarrett\nJase\nJay\nKade\nKadin\nKristopher\nLawson\nLukas\nMarshall\nMiles\nNolan\nPedro\nPhilip\nQuincy\nRex\nRicky\nRoger\nRoy\nRuben\nTate\nWalter\nWaylon\nZachariah\nZander\nAydan\nBarrett\nBentley\nBrendan\nByron\nCash\nChad\nChris\nCurtis\nDarius\nDarren\nDaylon\nDayton\nDevan\nEmanuel\nEzekiel\nFrank\nGerardo\nHouston\nJasper\nKamarion\nKelvin\nKendrick\nKolby\nLeo\nMarcos\nMyles\nNikolas\nRemington\nRodney\nRoman\nRonald\nRyder\nSaul\nScott\nToby\nTony\nTrace\nTristin\nWill\nWillie\nYahir\nZackary\nAbram\nAlbert\nBen\nBlayne\nCanon\nClay\nColeman\nCornelius\nCory\nCruz\nDamion\nDarrell\nDavis\nDaxton\nDenver\nDominick\nDouglas\nDraven\nFabian\nFranklin\nHank\nIsiah\nJabari\nJamison\nJax\nJaydon\nJaylin\nJayson\nJermaine\nJett\nJoel\nJordon\nJosue\nJovani\nJudah\nKai\nKeenan\nKenny\nKentrell\nKobe\nKoby\nKody\nKolton\nKorbin\nLayne\nLondon\nMarkell\nMathew\nMaurice\nMauricio\nMekhi\nReagan\nReid\nRonnie\nRylee\nShamar\nShelby\nTitus\nTrevion\nTyrell\nUriel\nAdan\nAdian\nAlexzander\nAlfred\nAllan\nAmare\nAnderson\nAtticus\nAxel\nBailey\nBoston\nBradlee\nBranson\nBrant\nBraylin\nBriar\nBricen\nBriley\nBritton\nBroderick\nBronson\nBruce\nBrycen\nCedric\nCharlie\nClark\nClifton\nColten\nDale\nDamarion\nDashawn\nDavin\nDevlin\nEarl\nEmilio\nForrest\nFrankie\nFrederick\nGarret\nGuillermo\nIrvin\nJadon\nJadyn\nJagger\nJamal\nJamar\nJameson\nJoey\nJonas\nJunior\nKalob\nKason\nKelton\nKenyon\nLamarcus\nLawrence\nMarco\nNate\nNoel\nPaxton\nPhoenix\nPorter\nRoss\nRyker\nShaun\nTalan\nTerrell\nTodd\nTomas\nTreyvon\nTylen\nWestin\nZamarion\nZechariah\nWilliam\nEthan\nJacob\nJames\nLandon\nJoshua\nChristopher\nCaleb\nJackson\nLogan\nMatthew\nJohn\nNoah\nMichael\nAndrew\nElijah\nDavid\nHayden\nMason\nChristian\nAiden\nAnthony\nAustin\nHunter\nSamuel\nAlexander\nGavin\nDaniel\nTyler\nZachary\nLuke\nJonathan\nDylan\nJoseph\nBenjamin\nNicholas\nEvan\nRyan\nBrandon\nRobert\nGabriel\nJordan\nCameron\nCharles\nBrayden\nNathan\nAaron\nJason\nJustin\nCarter\nDakota\nIsaiah\nCarson\nIsaac\nJack\nJose\nPeyton\nCaden\nJayden\nThomas\nAidan\nConnor\nKevin\nParker\nKaleb\nTristan\nKaden\nBlake\nBraxton\nJeremiah\nAlex\nSeth\nBryson\nCole\nAngel\nBraden\nEli\nLucas\nEric\nAshton\nChase\nCody\nLuis\nBryce\nColton\nCooper\nConner\nOwen\nSteven\nWyatt\nAdrian\nAyden\nJesse\nTimothy\nJaden\nJuan\nBrian\nBryan\nDalton\nDiego\nIan\nKyle\nLevi\nNathaniel\nPreston\nDevin\nGage\nXavier\nGrayson\nCarlos\nJace\nTrevor\nGarrett\nMaddox\nAdam\nRichard\nTrenton\nAntonio\nJaxon\nMalachi\nJesus\nRiley\nTanner\nBradley\nBrady\nZane\nHenry\nMarcus\nSean\nWesley\nBrody\nDawson\nClayton\nJared\nMiguel\nJulian\nLane\nStephen\nDustin\nGrant\nLanden\nSpencer\nDominic\nJohnathan\nTy\nVictor\nBraylon\nDevon\nPatrick\nPayton\nTravis\nErick\nKenneth\nRiver\nSawyer\nCorbin\nJake\nPaul\nTalan\nTaylor\nAden\nKayden\nKeegan\nMicah\nRylan\nSebastian\nCade\nEdwin\nEzekiel\nJaylen\nJeremy\nJosiah\nMark\nOscar\nAsher\nDrake\nEaston\nHudson\nJonah\nAvery\nBrennan\nCayden\nChandler\nColby\nColin\nDerrick\nJohnny\nShane\nTrey\nAlexis\nDerek\nDrew\nGary\nKeaton\nKyler\nLance\nRonald\nXander\nAlan\nDallas\nDillon\nEdgar\nJeffrey\nMax\nPhillip\nGunner\nJaxson\nJude\nKaiden\nQuinton\nShawn\nSkyler\nTony\nTristen\nZander\nBilly\nChance\nCollin\nCorey\nCristian\nEdward\nGregory\nJaiden\nJoel\nMiles\nRandy\nScott\nTucker\nBrock\nCash\nDamian\nDamien\nDanny\nDonovan\nGeorge\nJalen\nJamarion\nJoe\nJosue\nLayton\nLiam\nMaxwell\nReece\nAlejandro\nBo\nBobby\nCesar\nDavis\nEduardo\nErik\nJayce\nJeffery\nJimmy\nJorge\nManuel\nMarco\nMitchell\nRemington\nRicky\nBlaine\nBrendan\nChad\nEnrique\nHarrison\nIvan\nJonathon\nKeith\nLawson\nOliver\nOmar\nQuentin\nReed\nTrace\nTrent\nTriston\nAndy\nBeau\nBrenden\nBrett\nCurtis\nFernando\nFrancisco\nJakob\nJasper\nJaylon\nJerry\nKameron\nKobe\nMarshall\nRhett\nRicardo\nRyder\nTerry\nVincent\nWalker\nAlec\nAndres\nBrayan\nBraydon\nByron\nCasey\nCharlie\nDarius\nDarren\nDennis\nGriffin\nJavier\nJavion\nJay\nJon\nKade\nKolby\nLeland\nLeonardo\nMartin\nOmarion\nSimon\nTyson\nWeston\nAndre\nBrodie\nBrooks\nBruce\nCaiden\nCalvin\nCamden\nCory\nDonald\nEmmanuel\nGreyson\nIsrael\nIssac\nJaydon\nJett\nJustice\nKolton\nKristopher\nNolan\nPeter\nRaymond\nRoberto\nRodrigo\nSergio\nTate\nTommy\nTroy\nAllen\nBradyn\nBraylen\nBrycen\nCamron\nDarrell\nDominick\nEddie\nElias\nHarley\nJayson\nKarson\nKylan\nLarry\nLayne\nLincoln\nLukas\nMario\nPhoenix\nRaul\nSam\nSantiago\nSilas\nTalon\nWarren\nBentley\nBraeden\nBrent\nCale\nCannon\nCason\nCruz\nDayton\nDenver\nDeshawn\nDevonte\nEzra\nGael\nGustavo\nJaime\nJamie\nJase\nJessie\nJonas\nKamden\nKason\nKonnor\nLandyn\nNicolas\nPierce\nRashad\nRoman\nRuben\nSlade\nTerrance\nTyrese\nWalter\nWaylon\nZachariah\nZachery\nAbraham\nAddison\nAhmad\nArthur\nBoston\nChris\nClay\nClifton\nDante\nDaxton\nDemarcus\nDewayne\nDouglas\nEthen\nGauge\nGibson\nHeath\nHector\nHolden\nIsmael\nJulio\nJulius\nKai\nKelvin\nKendrick\nLee\nLeonel\nLondon\nMalik\nMathew\nMicheal\nNickolas\nRafael\nRay\nRonnie\nTavion\nZackary\nZechariah\nZion\nAlvin\nArmando\nCase\nDamion\nDavion\nDean\nDeclan\nDeshaun\nDevan\nDeven\nGrady\nGuy\nHaden\nIsiah\nJamarcus\nJamari\nJarrett\nJohnathon\nKadin\nKale\nKane\nKelton\nKendall\nKeshun\nKorbin\nLawrence\nLeon\nLewis\nMarquis\nMauricio\nMaximus\nMoises\nMorgan\nPaxton\nPhilip\nReid\nRodney\nRoy\nRussell\nSaul\nSkylar\nSolomon\nTerrell\nTheodore\nTodd\nTrevon\nTristin\nTyrone\nWade\nWill\nWillie\nZackery\nZayne\nAbel\nAce\nAdan\nAlfredo\nAli\nAngelo\nAsa\nAxel\nBarrett\nBennett\nBradon\nBranden\nBrenton\nBryston\nCarl\nCedric\nClark\nCoby\nCohen\nCoy\nDamon\nDeandre\nDorian\nElliott\nEllis\nEmerson\nEmmett\nFelix\nGarret\nGraham\nHarold\nHouston\nHoward\nJabari\nJacoby\nJadon\nJagger\nJamal\nJamar\nJaquan\nJavan\nJohan\nJudah\nJustus\nKamryn\nKasen\nKoby\nKody\nKristian\nKurtis\nKyron\nLathan\nLeighton\nMaurice\nMelvin\nNehemiah\nNeil\nOrlando\nPedro\nQuinn\nRandall\nReginald\nRickey\nRoderick\nRyker\nSemaj\nShannon\nShaun\nSonny\nSterling\nTevin\nToby\nTye\nWilson\nXavion\nXzavier\nZaid\nWilliam\nJacob\nEthan\nJackson\nChristopher\nJames\nLogan\nCaleb\nLandon\nJohn\nJoshua\nHunter\nMichael\nHayden\nAiden\nAndrew\nMatthew\nNoah\nAlexander\nJoseph\nTyler\nJayden\nMason\nDavid\nChristian\nElijah\nDaniel\nGabriel\nSamuel\nEvan\nJonathan\nAustin\nNicholas\nGavin\nRobert\nBrayden\nBenjamin\nJordan\nRyan\nBrandon\nIsaac\nCameron\nDylan\nLuke\nIsaiah\nCharles\nAnthony\nKaden\nPeyton\nNathan\nCaden\nJustin\nZachary\nKevin\nAaron\nCarson\nColton\nCooper\nJose\nThomas\nBlake\nJeremiah\nParker\nWyatt\nBraxton\nJason\nLucas\nAidan\nAlex\nKaleb\nBraden\nCarter\nJack\nChase\nLevi\nOwen\nJesse\nTristan\nAngel\nConnor\nDalton\nJuan\nLuis\nNathaniel\nAshton\nRiley\nEric\nJaxon\nIan\nPreston\nBryson\nKyle\nSeth\nTrenton\nBryce\nGarrett\nCarlos\nConner\nDakota\nEli\nJaden\nTimothy\nCole\nRichard\nAdrian\nXavier\nDevin\nSteven\nBrady\nBrian\nCody\nAdam\nAyden\nBryan\nMaddox\nKayden\nLanden\nMiguel\nSean\nGunner\nJeremy\nWesley\nBrody\nDiego\nKenneth\nMalachi\nTaylor\nGage\nJace\nDawson\nHudson\nZane\nAlan\nJulian\nAntonio\nGrant\nHenry\nShawn\nTanner\nBradley\nCorbin\nGrayson\nJesus\nJosiah\nAvery\nCayden\nJake\nKaiden\nWeston\nDillon\nJaiden\nJerry\nMarcus\nSpencer\nVictor\nAsher\nChandler\nDerrick\nJaylen\nLane\nOliver\nAden\nColby\nCollin\nDominic\nMicah\nBraylon\nCash\nClayton\nJohnathan\nPayton\nTrevor\nTy\nHarrison\nIvan\nJude\nMark\nOmar\nPatrick\nPaul\nSebastian\nTravis\nBraydon\nDrake\nKeegan\nRylan\nSilas\nTucker\nChance\nCorey\nEduardo\nEdwin\nJimmy\nKeaton\nKyler\nTristen\nZander\nSawyer\nDustin\nJaylon\nLawson\nMax\nMaxwell\nRyder\nStephen\nGary\nGeorge\nJaxson\nJorge\nLayton\nMalik\nOscar\nTerry\nXander\nJalen\nJared\nLiam\nRandy\nAlejandro\nAlexis\nBeau\nCamden\nDerek\nEaston\nEdward\nErick\nJavier\nJeffrey\nJoel\nJohnny\nJonah\nJosue\nKeith\nKylan\nLeonardo\nLincoln\nReece\nRiver\nRodney\nTony\nAndy\nBilly\nBrett\nBrodie\nCade\nCalvin\nColin\nDamian\nDevon\nEmmanuel\nHarley\nHector\nJustice\nKade\nKingston\nLance\nLarry\nMiles\nPaxton\nRhett\nScott\nTommy\nWalker\nWaylon\nAndre\nBrennan\nBrock\nCesar\nDallas\nDominick\nDrew\nEdgar\nEmanuel\nErik\nEzekiel\nFernando\nJamari\nKameron\nLayne\nSkyler\nTrent\nTristin\nTroy\nTyson\nAnderson\nBobby\nCaiden\nCasey\nDanny\nDouglas\nGerardo\nIsrael\nJamarion\nJessie\nKolby\nKristopher\nMorgan\nNicolas\nReese\nRicardo\nTate\nVincent\nAbraham\nAllen\nAndres\nBentley\nBo\nBraiden\nBraylen\nColt\nCristian\nDamien\nDeshawn\nDonald\nDonovan\nElias\nFrancisco\nGrady\nGregory\nJase\nJavion\nJaylan\nJohnathon\nJonathon\nMarshall\nPhillip\nRicky\nToby\nTrey\nBrent\nBrooks\nBruce\nCohen\nCurtis\nDayton\nGiovanni\nGriffin\nHarold\nHeath\nHolden\nJeffery\nJett\nJon\nKarson\nLeland\nManuel\nMitchell\nNickolas\nQuinton\nSantiago\nTalon\nTerrance\nZechariah\nAxel\nBennett\nBlaine\nBryant\nCarl\nDarius\nDavis\nEmilio\nGavyn\nHugo\nJaydon\nJoe\nJonas\nKobe\nMicheal\nNehemiah\nQuincy\nReid\nRodrigo\nShaun\nAlbert\nAlec\nBarrett\nBoston\nBradyn\nCamron\nCase\nCason\nChad\nCory\nDamarion\nDarrell\nDaxton\nDemetrius\nEddie\nFrank\nHaden\nHaiden\nIsiah\nJakob\nJayce\nJoey\nJulius\nKamden\nKamron\nKason\nKeagan\nLandyn\nMadden\nMarco\nMarquis\nPedro\nPhoenix\nPorter\nQuinn\nRafael\nRaymond\nRickey\nRoberto\nRoderick\nSergio\nShane\nTrevion\nTristian\nWalter\nZackery\nZion\nAbel\nAdan\nBen\nBraeden\nBrenden\nBrenton\nBriar\nCannon\nClark\nClifton\nColten\nCornelius\nDamion\nDarren\nDavion\nDeangelo\nDuncan\nElisha\nElliott\nFisher\nGraham\nGustavo\nHouston\nIsmael\nJadyn\nJakobe\nJay\nJayson\nJermaine\nKeenan\nKelton\nKendall\nKeshawn\nKorbin\nLathan\nLee\nMario\nMyles\nPablo\nPhilip\nRandall\nRaul\nRemington\nRoman\nRonald\nRussell\nSam\nTrace\nTriston\nTylan\nTyree\nWarren\nWillie\nZachery\nAhmad\nAidyn\nAlonso\nArmando\nArthur\nAtticus\nAydin\nBrennen\nBrycen\nByron\nCale\nCedric\nChris\nClarence\nColeman\nCourtney\nCruz\nDane\nDeacon\nDennis\nDerick\nDraven\nDwight\nEllis\nEmir\nEnrique\nEverett\nGarret\nGarrison\nGunnar\nHarper\nJacobi\nJameson\nJarvis\nJaveon\nJerimiah\nKamarion\nKenyon\nKody\nLawrence\nLeo\nLorenzo\nLouis\nMalcolm\nMartin\nMarvin\nMateo\nMathew\nMaurice\nMaximus\nMemphis\nNathanael\nNikolas\nOmarion\nReginald\nRocky\nRonnie\nRoss\nRoy\nSkylar\nTerrell\nTheodore\nWill\nZackary\nZayden\nAbram\nAlexzander\nAugustus\nBaylor\nBrad\nBrayan\nBraylin\nCamryn\nCanaan\nClay\nClinton\nCoen\nCortez\nCristofer\nCyrus\nDale\nDonnie\nElliot\nEthen\nFranklin\nFrederick\nFredrick\nGael\nGauge\nGaven\nGreyson\nIssac\nJadon\nJamarcus\nJaquan\nJasper\nJaxton\nJeremyah\nJericho\nJimmie\nJorden\nJordon\nJudah\nJudd\nJusten\nKamren\nKane\nKarl\nKash\nKelby\nKent\nKolton\nKyan\nKylon\nLadarius\nLondon\nMalaki\nMarlon\nMaverick\nMekhi\nMelvin\nMontana\nNash\nNelson\nNolan\nOrion\nOrlando\nPeter\nPierce\nPrinceton\nQuentin\nRowan\nRuben\nRylee\nSimon\nTalen\nTitus\nTobias\nTripp\nUlises\nVance\nYahir\nYair\nZachariah\nZack\nJacob\nEthan\nWilliam\nLandon\nJackson\nJoshua\nAiden\nJames\nHunter\nJohn\nNoah\nChristopher\nMichael\nLogan\nJayden\nHayden\nCaleb\nElijah\nChristian\nDaniel\nMason\nBrayden\nTyler\nDavid\nMatthew\nAndrew\nAustin\nAlexander\nJoseph\nSamuel\nGabriel\nGavin\nJonathan\nBrandon\nCarson\nLuke\nRobert\nNathan\nAnthony\nEvan\nIsaac\nJordan\nBenjamin\nWyatt\nAaron\nRyan\nPeyton\nDylan\nJustin\nKaden\nLucas\nTristan\nJeremiah\nCameron\nThomas\nColton\nIsaiah\nCarter\nCole\nBraxton\nCaden\nCharles\nZachary\nAyden\nBrody\nConnor\nKaleb\nJaxon\nJose\nNicholas\nOwen\nParker\nCooper\nChase\nEli\nKevin\nRiley\nAshton\nAidan\nIan\nDevin\nJack\nJaden\nBlake\nPreston\nTimothy\nAngel\nJason\nSeth\nAdrian\nDakota\nEric\nNathaniel\nCody\nJesse\nCayden\nHudson\nTanner\nDalton\nGarrett\nJace\nLevi\nBrady\nBryce\nHenry\nMaddox\nMicah\nTrenton\nAlex\nBrian\nJeremy\nLuis\nXavier\nDrake\nGrayson\nMarcus\nClayton\nCollin\nJulian\nWesley\nBryan\nBryson\nJake\nKyle\nMalachi\nPayton\nSean\nAdam\nConner\nDawson\nGage\nKayden\nTrevor\nZane\nBraylon\nTucker\nBraden\nCarlos\nCorbin\nMark\nRichard\nAsher\nColin\nGunner\nJosiah\nJude\nPaul\nAlan\nDiego\nJohnathan\nJuan\nKeaton\nMax\nKenneth\nLanden\nLiam\nGrant\nDerrick\nJesus\nSawyer\nJared\nKaiden\nLane\nOliver\nTaylor\nAntonio\nKameron\nPatrick\nSebastian\nSpencer\nBradley\nJonah\nSteven\nWeston\nCade\nCash\nKeegan\nMario\nTy\nCamden\nEaston\nJaxson\nJimmy\nKingston\nKyler\nOscar\nRyder\nTravis\nTroy\nChance\nJoel\nVincent\nAlejandro\nAlexis\nJohnny\nMiguel\nXander\nZander\nAden\nColby\nCorey\nDamian\nDevon\nJosue\nMalik\nOmar\nRandy\nRemington\nShawn\nSilas\nAvery\nDanny\nDominic\nEzekiel\nGeorge\nGrady\nIsrael\nJaiden\nMiles\nReece\nRicky\nAllen\nBlaine\nBrock\nChandler\nDallas\nDonovan\nEmanuel\nJamarion\nLandyn\nLarry\nMaxwell\nMorgan\nRylan\nShane\nSkyler\nStephen\nTyson\nBeau\nCalvin\nDominick\nDustin\nElias\nEmmanuel\nHarley\nJaylon\nJerry\nKason\nKeith\nManuel\nNicolas\nVictor\nAaden\nAndre\nBilly\nBraydon\nBraylen\nBrodie\nCannon\nDamien\nDrew\nEdward\nFernando\nGriffin\nIvan\nJett\nJulio\nKylan\nReid\nBobby\nBrennan\nCaiden\nCharlie\nDarren\nDavion\nGregory\nJaylen\nJonathon\nMartin\nMarvin\nMicheal\nRaymond\nRicardo\nWaylon\nZackary\nAbraham\nBradyn\nBryant\nCristian\nDayton\nEdwin\nErick\nFrancisco\nHarrison\nJaquan\nJavion\nJayce\nJeffrey\nLawson\nLayne\nPhillip\nRiver\nRonald\nRylee\nTate\nTrey\nBrenden\nCruz\nDonald\nFabian\nHector\nJasper\nJessie\nKeagan\nKendrick\nLance\nLeonardo\nLukas\nMarshall\nPaxton\nRaul\nRhett\nSergio\nSkylar\nWalker\nAnderson\nAndres\nAndy\nAsa\nBennett\nBentley\nBraylin\nBrendan\nBrett\nByron\nCesar\nColt\nDarius\nDerek\nErik\nHolden\nJalen\nJamari\nJaylin\nJorge\nKale\nKamron\nKane\nKarson\nKobe\nReed\nRodrigo\nRoman\nSimon\nTrace\nTrent\nTriston\nWalter\nZachery\nZayden\nZechariah\nAugustus\nBarrett\nCasey\nCayson\nChris\nClinton\nCohen\nDamion\nDaxton\nDeacon\nDeven\nDillon\nDouglas\nEddie\nEnrique\nGary\nGiovanni\nHeath\nJakob\nJase\nJay\nJonas\nJulius\nJustice\nKade\nKolby\nMadden\nMarco\nMaverick\nPierce\nRafael\nRoberto\nRussell\nRyker\nSantiago\nTheodore\nZachariah\nZion\nAlfredo\nArthur\nAugust\nAxel\nBen\nBlane\nBo\nBoston\nBraiden\nBrendon\nBrennen\nBrice\nBrooks\nBrycen\nCraig\nCurtis\nDamarion\nDane\nDante\nDarrell\nDax\nDeandre\nDenver\nDerick\nDeshawn\nDraven\nDuncan\nEduardo\nElliot\nElliott\nFranklin\nGideon\nHaiden\nHarper\nJavier\nJohnathon\nKai\nKash\nKelvin\nKylen\nLincoln\nLondon\nLouis\nMitchell\nNickolas\nRodney\nRuben\nTommy\nTony\nTristen\nTyrell\nAlberto\nAlec\nAlvin\nAmare\nAydan\nBrayan\nCarl\nCason\nCoby\nCorban\nCyrus\nDavin\nDemarcus\nEdgar\nEzra\nGerardo\nGreyson\nGustavo\nHaden\nJadon\nJamarcus\nJameson\nJaren\nJaxton\nJayson\nJeffery\nJoe\nJohan\nJudah\nKaeden\nKendall\nKorbin\nLawrence\nMalaki\nMathew\nMekhi\nMyles\nNolan\nReese\nRoderick\nRoy\nSaul\nSullivan\nTalon\nToby\nTrevon\nTristian\nTristin\nWestin\nWinston\nAce\nAddison\nAhmad\nAmari\nAmarion\nAmir\nArturo\nAshtin\nBaylor\nBeckett\nBrent\nBrenton\nBriar\nBriley\nCamron\nCortez\nCourtney\nDarrin\nDavis\nDaylin\nDemarion\nDevonte\nDon\nEathan\nEmerson\nFisher\nFreddy\nGael\nGauge\nGaven\nGraham\nHarold\nIsiah\nIzaiah\nJackie\nJacobi\nJagger\nJaime\nJairo\nJakobe\nJamarius\nJaron\nJavon\nJaydon\nJaylan\nJermaine\nJorden\nKaidyn\nKamryn\nKannon\nKasen\nKasey\nKeelan\nKegan\nKellen\nKelton\nKoby\nKolton\nKonner\nKristopher\nLayton\nLeo\nLester\nLyric\nMarcos\nMaurice\nMaximus\nMemphis\nNathanael\nNehemiah\nPeter\nQuentin\nRandall\nScotty\nSemaj\nSimeon\nTerrance\nTerrence\nTerry\nTobias\nTravion\nUriel\nWillie\nYahir\nZayne\nZeke\nWilliam\nJacob\nEthan\nJoshua\nJayden\nChristopher\nNoah\nJackson\nAiden\nLandon\nJames\nHunter\nMichael\nElijah\nBrayden\nJohn\nCaleb\nLogan\nMason\nSamuel\nAlexander\nDavid\nHayden\nGabriel\nAndrew\nChristian\nGavin\nTyler\nAustin\nMatthew\nJonathan\nDaniel\nJoseph\nEvan\nLuke\nBenjamin\nCarter\nBrandon\nConnor\nRyan\nAnthony\nLucas\nBrody\nDylan\nIsaac\nJeremiah\nBraxton\nRobert\nAyden\nKaden\nWyatt\nAaron\nKaleb\nNathan\nCaden\nCameron\nJack\nKayden\nLevi\nCharles\nJordan\nEli\nIsaiah\nJustin\nPeyton\nCarson\nNicholas\nCooper\nKevin\nChase\nOwen\nColton\nThomas\nAshton\nHudson\nJaxon\nAlex\nJason\nParker\nJose\nTristan\nRiley\nGarrett\nBraylon\nBryce\nIan\nCayden\nCole\nJace\nJaden\nAngel\nBlake\nGage\nZachary\nJosiah\nMaddox\nAidan\nBryson\nAdam\nBrian\nJeremy\nPreston\nSteven\nKenneth\nTanner\nJuan\nNathaniel\nSawyer\nConner\nDalton\nJulian\nKyle\nRichard\nDrake\nEric\nTy\nAdrian\nClayton\nJesse\nKyler\nLuis\nWesley\nWeston\nTrenton\nBryan\nCody\nHenry\nRyder\nSeth\nBrady\nCarlos\nDawson\nJonah\nLiam\nMicah\nBraden\nJake\nKaiden\nTimothy\nDakota\nJesus\nChance\nCollin\nEaston\nGrayson\nLane\nKeegan\nTristen\nDevin\nXavier\nCorbin\nGunner\nJaxson\nMarcus\nSilas\nAden\nAntonio\nKingston\nMax\nZane\nAsher\nCash\nDallas\nKeaton\nMalachi\nSebastian\nStephen\nTucker\nJaylon\nRylan\nSean\nJude\nPaul\nTrevor\nAlan\nBentley\nBraylen\nCristian\nDiego\nEduardo\nGrant\nJamarion\nJoel\nLanden\nLawson\nMark\nMiguel\nPayton\nZander\nAaden\nBradley\nDominic\nKameron\nRemington\nCamden\nDamien\nDevon\nErick\nGeorge\nJared\nJohnathan\nSkyler\nVictor\nAlexis\nBraydon\nGary\nHarrison\nIvan\nJaylen\nKarson\nOliver\nTravis\nXander\nAndy\nBilly\nCade\nDerrick\nJaiden\nJasper\nKason\nMiles\nOscar\nRiver\nTitus\nTyson\nAbraham\nAnderson\nColin\nEdward\nJimmy\nJohnny\nMario\nRaymond\nShawn\nZayden\nAlejandro\nAvery\nBeau\nCalvin\nGiovanni\nJagger\nJalen\nJerry\nJoe\nLayton\nPatrick\nPaxton\nRicky\nSpencer\nWalker\nAllen\nBrennan\nBrock\nDayton\nDillon\nDonovan\nDustin\nGriffin\nOmar\nReed\nTaylor\nTrey\nBarrett\nCaiden\nChandler\nFernando\nJakob\nJavier\nJaydon\nJeffrey\nJett\nJonathon\nJudah\nLandyn\nMaxwell\nRhett\nSkylar\nTroy\nVincent\nColby\nCorey\nCruz\nDamian\nDaxton\nEzra\nGrady\nJayce\nJosue\nKristopher\nLarry\nMalik\nRodney\nSantiago\nTrent\nAlec\nAndre\nBraeden\nBrett\nBrodie\nDarius\nDrew\nEmmanuel\nFrancisco\nIsrael\nJeffery\nKade\nKylan\nMarvin\nPierce\nReece\nReid\nTerry\nTriston\nBraiden\nBrendan\nByron\nCamron\nCason\nCharlie\nColten\nCurtis\nDanny\nEdgar\nEzekiel\nGraham\nHector\nJax\nJessie\nJonas\nKeagan\nKolby\nKorbin\nLincoln\nMartin\nMitchell\nNickolas\nNolan\nPeter\nRandall\nTony\nTrace\nUriel\nWalter\nAhmad\nAxel\nBeckett\nBlaze\nBobby\nBrice\nBrooks\nBruce\nBrycen\nCasey\nColt\nDonald\nEdwin\nErik\nFisher\nGreyson\nJase\nJaxton\nJon\nJulius\nKai\nKamarion\nKeith\nKeshawn\nLeland\nLeonardo\nManuel\nPhoenix\nQuinton\nRonnie\nSimon\nTommy\nAmari\nAndres\nBlaine\nBoston\nBradyn\nBryar\nCannon\nCesar\nCohen\nDraven\nElliot\nEmanuel\nGauge\nGavyn\nGregory\nHarley\nHolden\nHouston\nJacoby\nJakobe\nJaylin\nKendall\nKolton\nKonner\nKristian\nMarcos\nMarshall\nMicheal\nMorgan\nNash\nNathanael\nRaul\nRicardo\nRoberto\nRoman\nShane\nTerrance\nTripp\nTristian\nUriah\nWestin\nZechariah\nAbel\nBaylor\nBrent\nDane\nDante\nDavis\nDaylon\nDouglas\nEddie\nFinley\nGaige\nGerardo\nGideon\nJorge\nKasey\nKendrick\nLeo\nMaximus\nMyles\nPhillip\nRandy\nReese\nRodrigo\nRonald\nRoss\nRowan\nRuben\nRylee\nScott\nTalon\nTate\nWarren\nWaylon\nAbram\nAce\nAdan\nAlvin\nAmare\nAmos\nAsa\nBennett\nBrenden\nBrennon\nCarl\nCarsyn\nCedric\nChad\nChevy\nChris\nClark\nCortez\nCory\nDemarcus\nDennis\nDerek\nEmmett\nGunnar\nIsaias\nIssac\nIzaiah\nJamarcus\nJamarius\nJay\nJaylyn\nJefferson\nJohnathon\nKaeden\nKamari\nKamden\nKasen\nKobe\nKody\nKylen\nLandry\nLathan\nLeon\nLondon\nLyric\nMaverick\nMelvin\nMoises\nNehemiah\nNicolas\nOmarion\nPhilip\nPorter\nRafael\nRamon\nRoderick\nRonan\nRyker\nSemaj\nSergio\nSlade\nTerrence\nTrevon\nTyrell\nUrijah\nWade\nWill\nWillie\nZachariah\nZachery\nZackary\nZaden\nZion\nAdrien\nAlexzander\nAlijah\nAlonzo\nAntwan\nAubrey\nBeckham\nBlayne\nBob\nBraedon\nBrannon\nBrayan\nBraylin\nBrayson\nBrendon\nBrennen\nBriar\nCain\nCale\nChace\nCorben\nDarren\nDavion\nDax\nDeacon\nDemetrius\nDenver\nDeshawn\nDominick\nDorian\nElias\nElliott\nEly\nEnrique\nFletcher\nFranklin\nGibson\nHarper\nJabari\nJadon\nJavion\nJaxen\nJaydan\nJayvion\nJermiah\nJudd\nJulien\nJulio\nJustice\nKash\nKavion\nKelton\nKenny\nKeyon\nKing\nKiptyn\nKyson\nLance\nLayne\nLonnie\nMadden\nMalakai\nMarco\nMathew\nMekhi\nMoses\nNigel\nOrlando\nPablo\nPedro\nQuincy\nRaiden\nRashad\nSaul\nTalan\nTurner\nWayne\nZaylon\nWilliam\nJacob\nElijah\nJames\nEthan\nJayden\nMichael\nMason\nLandon\nAiden\nJackson\nJoshua\nBrayden\nChristopher\nHunter\nLogan\nNoah\nJohn\nGavin\nSamuel\nAlexander\nCaleb\nGabriel\nDavid\nAndrew\nBentley\nChristian\nMatthew\nCooper\nTyler\nEli\nJoseph\nLuke\nWyatt\nAustin\nIsaiah\nJonathan\nRyan\nBenjamin\nAnthony\nJordan\nCarson\nConnor\nDaniel\nLevi\nParker\nEvan\nAaron\nIsaac\nKaden\nJaxon\nJeremiah\nCarter\nHayden\nDylan\nRobert\nJustin\nCameron\nJose\nLucas\nPeyton\nBrody\nThomas\nBrandon\nBryson\nAyden\nOwen\nNathan\nColton\nHudson\nTristan\nKaleb\nLiam\nEaston\nKayden\nZachary\nCharles\nRiley\nBraxton\nKevin\nJaden\nMaddox\nNicholas\nTimothy\nBlake\nChase\nCaden\nTucker\nAngel\nConner\nKyle\nAlex\nJack\nAsher\nGage\nIan\nSeth\nNathaniel\nTrenton\nAdrian\nCollin\nJace\nDrake\nJason\nGrayson\nJake\nPreston\nBryce\nJaxson\nBraylon\nCayden\nHenry\nJesse\nRyder\nSawyer\nWeston\nJasper\nJesus\nDalton\nSteven\nTrevor\nAshton\nBrady\nCole\nDakota\nDawson\nJosiah\nLane\nMalachi\nCarlos\nJude\nMicah\nRylan\nJonah\nKaiden\nLuis\nBryan\nGunner\nAdam\nBrian\nCody\nEric\nJulian\nCash\nKingston\nKyler\nMarcus\nTanner\nTravis\nAidan\nDevin\nZayden\nMark\nOliver\nPayton\nAlejandro\nBradley\nGarrett\nKameron\nZane\nBrock\nColin\nDominic\nGrant\nJeremy\nJoel\nXander\nAntonio\nClayton\nEduardo\nLanden\nSilas\nXavier\nRichard\nSean\nColby\nCristian\nEdward\nJuan\nKarson\nMax\nMiles\nPaxton\nVictor\nWesley\nAlan\nJaylen\nPatrick\nSebastian\nSkyler\nStephen\nTaylor\nAvery\nBently\nChance\nCorbin\nEzekiel\nJakob\nJax\nJayce\nJett\nKeaton\nMaxwell\nRoman\nSpencer\nTroy\nTy\nVincent\nAxel\nCaiden\nCalvin\nDiego\nElias\nEmmanuel\nJohnathan\nJohnny\nKeegan\nKenneth\nMario\nZander\nBraylen\nCamden\nDamian\nGiovanni\nHolden\nKylan\nPaul\nRemington\nRiver\nWaylon\nAsa\nBennett\nDanny\nHarrison\nJaiden\nJimmy\nJorge\nLayton\nMalik\nRhett\nShane\nZaiden\nAnderson\nBrett\nBrooks\nChandler\nCorey\nGreyson\nJosue\nShawn\nTrey\nAllen\nBobby\nBraden\nBraiden\nColten\nDallas\nErick\nEverett\nGrady\nHarley\nIvan\nKason\nKobe\nKonner\nLarry\nMiguel\nNicolas\nRicky\nSantiago\nWalker\nAbraham\nAden\nAndy\nBraydon\nBrendan\nCade\nCason\nCharlie\nDamien\nDerek\nDrew\nJavier\nKash\nKnox\nKorbin\nPhoenix\nReginald\nReid\nSergio\nSkylar\nTalon\nTristen\nTyson\nBeau\nBeckett\nBilly\nClay\nDillon\nDustin\nEdwin\nEzra\nGeorge\nIsrael\nJagger\nJaxton\nJaylon\nJeffrey\nJudah\nKade\nKasen\nKeith\nLawson\nLeonardo\nOmar\nOscar\nRandy\nReed\nReese\nZayne\nAbel\nAbram\nAlec\nBarrett\nBrennan\nBrycen\nCasey\nCohen\nCullen\nDarius\nDaxton\nDerrick\nGaven\nGregory\nGriffin\nJamarion\nJoe\nLandyn\nLeo\nLincoln\nOrlando\nRowan\nRyker\nTrent\nAhmad\nBo\nCarsen\nChad\nDamon\nDax\nDean\nEdgar\nFrancisco\nJared\nJaydon\nJessie\nKarter\nKendall\nMarshall\nMathew\nMaximus\nNolan\nRaymond\nTommy\nTrace\nZion\nAndres\nArcher\nBentlee\nBrantley\nBrodie\nByron\nCamron\nCarl\nDamarion\nDante\nDonovan\nEmanuel\nFelix\nFernando\nGary\nHouston\nJameson\nJase\nJaveon\nJay\nKing\nKipton\nLukas\nManuel\nMemphis\nMorgan\nNasir\nQuinton\nReece\nRoberto\nTerrance\nTerry\nTitus\nTony\nUriah\nZachariah\nZackary\nAdrien\nAndre\nAugustus\nAustyn\nBlaine\nBradyn\nBraylin\nBriar\nBrice\nCesar\nChris\nCruz\nDarnell\nDevon\nDonald\nErik\nFinn\nFredrick\nGraham\nHaden\nHarper\nJeffery\nJordyn\nKai\nKelvin\nLathan\nLayne\nMadden\nNehemiah\nOrion\nQuinn\nRonald\nRuben\nWarren\nWillie\nWilson\nAaden\nAldo\nAlexis\nAllan\nAmari\nAmarion\nArmando\nBlayze\nBoston\nBrenden\nBrentley\nBruce\nBryant\nCannon\nCasen\nColt\nCory\nCourtney\nCurtis\nDavis\nDayton\nEddie\nElliott\nEmerson\nEmmett\nFisher\nFletcher\nGauge\nHector\nIssac\nJacoby\nJaime\nJalen\nJamarcus\nJamari\nJerry\nJonathon\nJustice\nKale\nKanyon\nKeagan\nKeenan\nKellan\nKohen\nKolby\nKole\nKristian\nKyan\nKylen\nKyran\nLegend\nLondon\nMarcos\nMarlon\nMartin\nMaurice\nMoises\nMyles\nPhillip\nPorter\nRafael\nRashad\nRoy\nRussell\nSaul\nTheodore\nToby\nTripp\nTruett\nTurner\nTylan\nUriel\nUrijah\nWalter\nAddison\nAditya\nAidyn\nAryan\nAtticus\nBailey\nBaylor\nBenton\nBrayson\nBrendon\nBrennon\nCallen\nCamdyn\nCase\nCedric\nCoby\nCorbyn\nDamion\nDaquan\nDarian\nDarren\nDavin\nDaylen\nDeclan\nDemarcus\nDenver\nDereon\nDeshawn\nDexter\nElisha\nEllis\nEly\nEnrique\nGatlin\nGavyn\nGerald\nGiovanny\nHarold\nHayes\nHeath\nJaron\nJarrod\nJavion\nJulius\nJunior\nKane\nKendrick\nKenny\nKhalil\nKody\nKolton\nKonnor\nKooper\nKristopher\nKylin\nLandan\nLeeland\nLeroy\nLorenzo\nMalakai\nMarquis\nMateo\nMilo\nNathanael\nNelson\nPeter\nPierce\nQuincy\nRaiden\nRaul\nRicardo\nRodney\nSam\nSolomon\nTate\nThatcher\nTriston\nVance\nWestin\nWill\nZachery\nWilliam\nJacob\nMason\nAiden\nNoah\nJayden\nElijah\nEthan\nJoshua\nJackson\nJames\nMichael\nBentley\nJohn\nLogan\nGabriel\nLandon\nBrayden\nChristopher\nCaleb\nHunter\nAlexander\nSamuel\nDaniel\nIsaac\nHayden\nJoseph\nDavid\nEli\nLevi\nLiam\nWyatt\nBenjamin\nTyler\nGavin\nAndrew\nAustin\nLuke\nBraxton\nBrody\nChristian\nMatthew\nJonathan\nAnthony\nCarter\nIsaiah\nParker\nEaston\nJordan\nCameron\nCooper\nJeremiah\nBrandon\nCarson\nConnor\nHudson\nJace\nEvan\nDylan\nRyan\nAsher\nCharles\nBryson\nRobert\nTristan\nAyden\nKaden\nLucas\nColton\nJaxon\nThomas\nJack\nPeyton\nZachary\nNathan\nRyder\nAaron\nKaleb\nOwen\nGrayson\nKayden\nKevin\nMaddox\nJustin\nIan\nChase\nAdrian\nHenry\nJason\nRiley\nCorbin\nConner\nGage\nWeston\nAshton\nJaxson\nMax\nTimothy\nJose\nAngel\nBryce\nNicholas\nJake\nOliver\nPreston\nSawyer\nXavier\nAlex\nCaden\nPaxton\nAxel\nJaden\nJesse\nNathaniel\nTanner\nAdam\nBrantley\nJude\nLane\nCayden\nCody\nDalton\nGunner\nMicah\nSteven\nBraylon\nChance\nClayton\nDrake\nGarrett\nJonah\nJosiah\nJuan\nMalachi\nSebastian\nXander\nAidan\nColt\nDawson\nSeth\nBlake\nBrian\nBryan\nCollin\nJulian\nKaiden\nKarson\nKenneth\nRemington\nRylan\nTucker\nZayden\nAvery\nBrady\nCole\nKingston\nKyler\nDakota\nMarcus\nTrevor\nTy\nWesley\nDominic\nIvan\nJohnathan\nLanden\nSilas\nKyle\nLuis\nCarlos\nCash\nJayce\nBradley\nDerrick\nEric\nGraham\nJaiden\nJeremy\nRichard\nTravis\nTrenton\nZane\nAntonio\nMaxwell\nSpencer\nAnderson\nBeckett\nDevin\nGreyson\nJasper\nJett\nKeegan\nMiles\nTristen\nBraden\nCaiden\nJesus\nJoel\nAbel\nBrock\nCharlie\nCorey\nEdward\nGrant\nMark\nRyker\nSkyler\nChandler\nEzekiel\nJagger\nJohnny\nKylan\nMarshall\nPayton\nShawn\nTaylor\nCalvin\nDallas\nEduardo\nGeorge\nJaylen\nKameron\nKorbin\nLayton\nLukas\nMiguel\nAlexis\nBennett\nCannon\nDamian\nElias\nErick\nGriffin\nJosue\nKade\nLandyn\nShane\nStephen\nVincent\nAlan\nBeau\nBlaine\nBraylen\nBrycen\nCohen\nEmmanuel\nKobe\nLawson\nLayne\nMyles\nReed\nAlejandro\nBraydon\nBrennan\nBrooks\nColby\nCristian\nCruz\nDerek\nDevon\nDiego\nDustin\nEdgar\nIsrael\nPatrick\nPhoenix\nReece\nRhett\nSantiago\nTripp\nAndre\nCamden\nEmmett\nErik\nGiovanni\nGregory\nJakob\nJared\nJimmy\nJon\nJudah\nKasen\nKason\nKendrick\nKonner\nLeonardo\nRiver\nRoman\nTriston\nTroy\nVictor\nDamien\nDillon\nFernando\nHarper\nHarrison\nJase\nJax\nJaxton\nJorge\nKarter\nLarry\nMateo\nNehemiah\nOscar\nPaul\nTony\nTrent\nWalker\nWaylon\nZaiden\nAbraham\nAden\nBently\nBilly\nBoston\nCade\nCason\nChevy\nColin\nDavis\nDeshawn\nDesmond\nDexter\nEverett\nEzra\nHayes\nIssac\nJayson\nKai\nKamden\nKeaton\nOmar\nQuinton\nRicky\nWalter\nZander\nAmari\nBarrett\nBentlee\nBo\nDanny\nDax\nDeclan\nDonovan\nDraven\nFisher\nHarley\nHector\nHolden\nJaxen\nJeffrey\nJerry\nKeith\nKing\nKnox\nKyron\nLeland\nLincoln\nManuel\nMaverick\nMitchell\nNicolas\nNolan\nRaymond\nReginald\nRodney\nRodrigo\nRylen\nTitus\nTrey\nZackary\nAbram\nAllen\nAndy\nArcher\nAsa\nBobby\nBriar\nBrodie\nDarius\nDavion\nDominick\nFinn\nGatlin\nJamarion\nJavion\nKash\nKorbyn\nKye\nLathan\nLouis\nMadden\nMaximiliano\nMaximus\nRandy\nReid\nRonald\nSean\nSergio\nShaun\nTerrance\nTerry\nWarren\nAce\nAlec\nAtticus\nBaylor\nBraiden\nBrennen\nCallen\nCase\nChanning\nDane\nDaxton\nDean\nEddie\nEmanuel\nFinley\nGaige\nGauge\nGunnar\nJameson\nJaquan\nJay\nJoe\nJonas\nKristopher\nKylen\nLee\nLeo\nMalik\nMario\nMarkus\nMarquis\nMorgan\nMoses\nPhillip\nQuentin\nRashad\nRayden\nRaylan\nRoberto\nRonnie\nSlade\nTalon\nTerrell\nTrace\nZachariah\nZaden\nZavier\nZayne\nAidyn\nAndres\nArmando\nAubrey\nBeckham\nBrandt\nBrendan\nCamron\nCayson\nCesar\nClay\nClinton\nCorbyn\nDante\nDemarcus\nDonald\nEdwin\nElliott\nEmerson\nEmilio\nEnrique\nFelix\nFrank\nGary\nGrady\nHendrix\nHouston\nJakobe\nJamari\nJaydon\nJeffery\nJermaine\nJessie\nJonathon\nKaison\nKamron\nKane\nKellen\nKendall\nKenyon\nKhalil\nKole\nKolton\nLance\nMalakye\nMartin\nMayson\nMemphis\nNash\nPhilip\nPorter\nPranav\nQuintin\nRafael\nRaiden\nSam\nSimon\nTatum\nTommy\nTyson\nWade\nWestin\nWillie\nYahir\nZion\nAdyn\nAhmad\nAlijah\nAmir\nAron\nArthur\nArturo\nAugustus\nAydan\nAydin\nBenson\nBenton\nBerkley\nBowen\nBraxten\nBrenden\nBrent\nBrentley\nBryant\nBrylan\nByron\nChad\nChristain\nClark\nConor\nCorban\nCyrus\nDamon\nDarrell\nDaylen\nDayton\nDemetrius\nDeshaun\nDestin\nDouglas\nDrew\nEllis\nEugene\nFabian\nFelipe\nForrest\nFrancisco\nGarrison\nHaiden\nIker\nJacobi\nJacoby\nJalen\nJarrett\nJavier\nJaxxon\nJaylin\nJaylon\nJensen\nJorden\nJordyn\nJudson\nJulio\nJulius\nKaidyn\nKeagan\nKenny\nKentrell\nKeon\nKieran\nKody\nKristian\nKyson\nLamarion\nLawrence\nLyric\nMalakai\nMarcos\nMicheal\nMiller\nMilo\nNeymar\nNickolas\nOakley\nPedro\nPierce\nQuinn\nRicardo\nRocky\nRoderick\nRoyce\nRylee\nScott\nSolomon\nTobias\nTristian\nTyrese\nZeke\nWilliam\nMason\nJacob\nJames\nElijah\nHunter\nEthan\nAiden\nGabriel\nJackson\nJayden\nNoah\nMichael\nEli\nBentley\nBrayden\nLandon\nLiam\nJohn\nSamuel\nChristopher\nDaniel\nIsaac\nAlexander\nLogan\nJaxon\nMatthew\nAyden\nBryson\nWyatt\nCarter\nAndrew\nCooper\nJoshua\nBenjamin\nLuke\nLevi\nJoseph\nCaleb\nHayden\nBraxton\nConnor\nGavin\nJordan\nEaston\nJace\nDavid\nRyan\nAnthony\nCarson\nChristian\nIsaiah\nRobert\nHudson\nEvan\nLucas\nTyler\nBrantley\nDylan\nBrandon\nColton\nGrayson\nAustin\nJonathan\nAaron\nNathan\nKaden\nJack\nJeremiah\nParker\nCharles\nBrody\nNicholas\nKayden\nOwen\nAdrian\nCameron\nJaxson\nJustin\nPeyton\nJason\nRyder\nThomas\nTristan\nAsher\nOliver\nCaden\nSilas\nHenry\nJosiah\nMaddox\nChase\nBlake\nKevin\nSawyer\nIan\nMicah\nZachary\nKaleb\nRiley\nRylan\nTucker\nAngel\nRemington\nPreston\nJose\nBraylon\nDrake\nNathaniel\nCole\nCorbin\nKingston\nMax\nWeston\nAdam\nAlex\nGage\nKaiden\nAshton\nCody\nMarcus\nGunner\nJesse\nKyler\nSebastian\nEric\nJude\nKyle\nXavier\nZane\nAntonio\nJuan\nLane\nBrady\nCollin\nGarrett\nJase\nLincoln\nTanner\nDakota\nJaden\nJesus\nJulian\nPaxton\nWesley\nAidan\nCamden\nConner\nJasper\nJeremy\nJonah\nZayden\nCarlos\nCash\nGreyson\nJaiden\nKarson\nLuis\nMalachi\nSpencer\nTimothy\nAxel\nBryan\nBryce\nCharlie\nGrant\nSeth\nTrenton\nCayden\nKason\nVictor\nXander\nBennett\nDawson\nDeclan\nJake\nChandler\nEverett\nGraham\nJayce\nMiles\nBraden\nDalton\nEmmett\nEzekiel\nJax\nJett\nKeegan\nKnox\nWaylon\nCason\nDominic\nHarrison\nLanden\nLawson\nSteven\nTravis\nBeckett\nColby\nDevin\nEzra\nGriffin\nJagger\nKenneth\nPatrick\nRyker\nTy\nZander\nAbel\nBarrett\nBeau\nBrycen\nChance\nDiego\nEmmanuel\nJaylen\nJudah\nKolton\nLayton\nMaxwell\nRichard\nShawn\nAlejandro\nBraylen\nDallas\nDillon\nDustin\nIvan\nJoel\nKeaton\nMark\nMyles\nTrevor\nTyson\nAden\nBlaine\nBraydon\nBriar\nCannon\nChanning\nClayton\nGeorge\nGrady\nJohnathan\nJohnny\nLeo\nMateo\nSantiago\nTitus\nTristen\nBrennan\nBrian\nCade\nEdward\nElias\nGregory\nKade\nKasen\nMiguel\nTerry\nAmari\nAndre\nBrentley\nColin\nColt\nDax\nJared\nKarter\nLandry\nLukas\nMaverick\nRiver\nRoman\nStephen\nVincent\nAlan\nAllen\nAvery\nBradley\nBrooks\nCase\nCohen\nCorey\nCristian\nDamian\nDarius\nDean\nDerrick\nErick\nGideon\nJamarion\nJavier\nKameron\nLance\nMaximus\nNicolas\nNolan\nPayton\nPhillip\nTate\nTatum\nTriston\nZayne\nBently\nBryant\nCalvin\nDanny\nEdwin\nEmanuel\nGauge\nHarper\nJeffrey\nJustice\nLandyn\nNehemiah\nPhoenix\nSkyler\nWalker\nBilly\nBrock\nCaiden\nColten\nDamien\nJessie\nJimmy\nJosue\nKorbin\nLeland\nMadden\nMajor\nMalik\nManuel\nOscar\nRhett\nSimon\nTripp\nWade\nZaiden\nAbraham\nAbram\nAndres\nArcher\nAsa\nAugust\nBentlee\nBobby\nBrendan\nChevy\nDeacon\nDerek\nDexter\nFernando\nFinn\nGael\nGary\nHolden\nJerry\nJon\nJulius\nKase\nKhalil\nKing\nKobe\nLee\nOmar\nPierce\nRaylan\nReed\nReid\nTommy\nTrace\nTrey\nWarren\nAlexis\nBryar\nCasen\nCruz\nDamon\nDante\nElliott\nEmiliano\nFisher\nFrancisco\nHank\nIker\nIsrael\nJameson\nJamison\nJaxen\nJorge\nKeith\nKellan\nKellen\nKelton\nKendrick\nKylan\nKyran\nLarry\nMalcolm\nMaurice\nNash\nPaul\nPeter\nRaiden\nRandall\nRuben\nTaylor\nTheodore\nTroy\nWalter\nAnderson\nAndy\nAugustus\nBeckham\nBraiden\nBrantlee\nBrently\nCarl\nCourtney\nCurtis\nDavis\nDenver\nDesmond\nDonald\nEdgar\nEduardo\nElliot\nEnrique\nGiovanni\nHayes\nJakob\nJamari\nJaxton\nJensen\nJoe\nJordyn\nKamden\nKane\nKayson\nKeagan\nKolby\nMicheal\nOdin\nRandy\nReese\nRicardo\nRicky\nRonnie\nRowan\nSean\nTalon\nTobias\nTony\nTruman\nArthur\nBlayne\nBlaze\nBoston\nBrennen\nBrent\nCesar\nDale\nDane\nDaxton\nDemarcus\nDevon\nDonovan\nDrew\nEmerson\nEmilio\nEmmitt\nFelix\nFredrick\nGatlin\nGunnar\nHagen\nHarvey\nJacoby\nJeffery\nJericho\nJonas\nJudson\nKadyn\nKai\nKannon\nKash\nKristopher\nKylen\nKyson\nLandan\nLawrence\nLorenzo\nMarco\nMario\nMarshall\nMessiah\nPorter\nRafael\nReece\nRhys\nScott\nSlade\nSylas\nTerrell\nTristian\nWestin\nWillie\nYahir\nZachariah\nAdan\nAidyn\nAldo\nAmare\nAmir\nBaron\nBaylor\nBenson\nBowen\nBraxtyn\nBraylin\nBrayson\nBrenden\nBrenton\nBrett\nBrodie\nBruce\nByron\nCamryn\nCasey\nCedric\nClark\nClay\nCullen\nDarrell\nDarren\nDavion\nDayton\nDemarion\nElisha\nFabian\nFinley\nGannon\nGaven\nGiovani\nHaden\nHarley\nHaydyn\nHeath\nHector\nJadon\nJarrett\nJaxsen\nJaydin\nJet\nJoey\nJordon\nJulio\nJunior\nJustus\nKage\nKendall\nKonnor\nKooper\nKorbyn\nLathan\nLayne\nLeeland\nLegend\nLeighton\nLeonardo\nLeroy\nLuca\nMaddix\nMarkell\nMarquis\nMaximiliano\nMiller\nMitchell\nNoel\nOakley\nPablo\nRaul\nRaymond\nRex\nRoberto\nRomeo\nRonald\nSergio\nShane\nShiloh\nSkylar\nSolomon\nThaddeus\nUriah\nZain\nWilliam\nMason\nNoah\nJames\nElijah\nAiden\nEthan\nBentley\nJackson\nLiam\nJacob\nJohn\nChristopher\nMichael\nJayden\nJaxon\nJoshua\nLogan\nHunter\nChristian\nLuke\nLandon\nIsaac\nCaleb\nJase\nSamuel\nAlexander\nJace\nJeremiah\nMatthew\nBrayden\nGabriel\nEli\nCarter\nBraxton\nCarson\nDaniel\nDavid\nLevi\nAndrew\nBenjamin\nWyatt\nJoseph\nGavin\nAyden\nCharles\nCooper\nHayden\nSawyer\nHudson\nGrayson\nBrantley\nBryson\nEaston\nOwen\nAsher\nConnor\nLucas\nThomas\nTyler\nAustin\nHenry\nOliver\nColton\nAaron\nJack\nParker\nAnthony\nCameron\nIsaiah\nJordan\nRobert\nBrandon\nZachary\nJonathan\nJosiah\nKaiden\nKayden\nRyan\nBrody\nEvan\nJaxson\nJason\nDylan\nKevin\nAngel\nNathan\nRyker\nSilas\nTristan\nZayden\nCamden\nMaddox\nTucker\nJustin\nAdam\nDrake\nJude\nKaden\nKingston\nWeston\nCorbin\nKaleb\nTimothy\nChase\nGreyson\nBlake\nPeyton\nIan\nJulian\nBryce\nJose\nCash\nGunner\nKenneth\nRylan\nAbel\nSebastian\nXavier\nKyler\nMicah\nRyder\nAshton\nLincoln\nCollin\nNicholas\nRemington\nWesley\nAdrian\nAlex\nBeau\nCaden\nMalachi\nNathaniel\nBraylon\nJayce\nKyle\nZander\nDalton\nDominic\nEric\nJaiden\nRhett\nBeckett\nChandler\nCole\nHarrison\nJaden\nJesse\nMarcus\nConner\nDawson\nEzekiel\nGage\nJasper\nMiles\nSteven\nZane\nChance\nEmmett\nGarrett\nPaxton\nDallas\nJesus\nJonah\nKarson\nRiley\nSeth\nTrenton\nWaylon\nXander\nAntonio\nAxel\nBrentley\nBryan\nCarlos\nCayden\nJayceon\nJuan\nKason\nMax\nBennett\nBrooks\nCase\nEzra\nIvan\nJake\nKylan\nLane\nRichard\nBrady\nCason\nPatrick\nPreston\nRoman\nSantiago\nBrian\nDakota\nDevin\nEdward\nElias\nGrady\nJudah\nKing\nMateo\nTravis\nAlan\nAvery\nBarrett\nBradley\nCalvin\nClayton\nDamian\nGrant\nJax\nJohnny\nLanden\nMaxwell\nBrycen\nCaiden\nCohen\nCorey\nKade\nKameron\nKnox\nPayton\nRiver\nStephen\nZayne\nColt\nEmmanuel\nGeorge\nHolden\nKarter\nLayton\nReed\nVictor\nBeckham\nCannon\nDeclan\nKayson\nKeaton\nLawson\nLeo\nLuis\nMarshall\nSean\nVincent\nWalker\nAidan\nBraden\nBraydon\nBrennan\nCody\nDexter\nElliott\nJeremy\nJett\nJosue\nKeegan\nKorbin\nLandyn\nMark\nTate\nTitus\nTripp\nZion\nAden\nColin\nDaxton\nEverett\nGregory\nGunnar\nKash\nKeith\nKolton\nLayne\nLeonardo\nMiguel\nNolan\nRaymond\nSpencer\nTanner\nZaiden\nAlexis\nArcher\nDiego\nHarper\nJagger\nJaylen\nKai\nKasen\nKendall\nKendrick\nMario\nMyles\nOmar\nPorter\nReid\nSylas\nTerry\nTheodore\nTrevor\nTy\nAbraham\nAugust\nBentlee\nBraylen\nCade\nCesar\nChanning\nCurtis\nDean\nDustin\nFrancisco\nGael\nGauge\nGraham\nHarley\nJay\nJoel\nOscar\nPaul\nRonald\nTrey\nTyson\nCristian\nCruz\nDamien\nDamon\nDavis\nDeacon\nDerrick\nDillon\nElliot\nGriffin\nJavier\nJohnathan\nJustice\nKellan\nKobe\nLarry\nPhillip\nRaylan\nSolomon\nSutton\nWalter\nWestin\nZachariah\nAnderson\nAndres\nAsa\nAtticus\nBo\nErik\nHayes\nJensen\nJerry\nMajor\nMartin\nMaverick\nMessiah\nRyland\nShane\nTaylor\nTroy\nAbram\nAllen\nAmir\nAndre\nAxton\nBaylor\nBilly\nBlaze\nBrent\nBrock\nByron\nChevy\nDayton\nDerek\nDeshawn\nDonald\nDonovan\nDrew\nEdwin\nFelix\nHector\nJared\nJaxen\nJaxton\nJaydon\nJeffery\nJeffrey\nJorge\nKane\nKannon\nKooper\nLandry\nLukas\nMalik\nMaximus\nNicolas\nPhilip\nPierce\nRandy\nReece\nReese\nReginald\nRickey\nRodney\nRoland\nRonnie\nRowan\nStetson\nTalon\nTobias\nTommy\nTristen\nZackary\nAhmad\nAlbert\nAlejandro\nBenton\nBobby\nBrantlee\nBrenden\nBrenton\nBryant\nCarl\nCasen\nCayson\nCedric\nCharlie\nDanny\nDante\nDemetrius\nDesmond\nEdgar\nEduardo\nEmanuel\nEmiliano\nEmory\nFernando\nFinn\nGideon\nGiovanni\nHendrix\nIker\nIsrael\nJoaquin\nJustus\nKase\nKole\nKonner\nKonnor\nKylen\nLance\nLeonidas\nMadden\nPhoenix\nQuincy\nRicardo\nTerrance\nTurner\nWarren\nAlexzander\nAlijah\nAmos\nAydan\nBlaine\nBowen\nBraeden\nBraiden\nConrad\nDarius\nDarren\nDax\nDevon\nDorian\nEmmitt\nEnrique\nErick\nFinley\nGaige\nGerardo\nIssac\nJacoby\nJakobe\nJameson\nJavion\nJayvion\nJessie\nJimmy\nJoe\nJoey\nJulio\nKaidyn\nKale\nKeagan\nKristopher\nKyson\nLedger\nMac\nManuel\nMaximiliano\nMoses\nRansom\nRidge\nRussell\nSaul\nSkyler\nSullivan\nTony\nTrent\nTriston\nWade\nZechariah\nAce\nAlberto\nAlec\nAlfredo\nAlonso\nAmari\nAngelo\nArthur\nBrendan\nBrodie\nBryer\nBryton\nChris\nClark\nClinton\nColby\nCorban\nCoy\nCrosby\nDenver\nDraven\nDwayne\nEmerson\nFisher\nFrank\nGary\nGibson\nHarold\nHouston\nIbrahim\nJakoby\nJamie\nJaylon\nJayson\nJet\nJon\nJulius\nKamden\nKarsen\nKarsyn\nKeon\nKeshawn\nKian\nLadarius\nLangston\nLeland\nLennox\nLeon\nLorenzo\nMarcos\nNathanael\nNoe\nOrlando\nQuentin\nRay\nRaylon\nRex\nRoger\nRomeo\nRoss\nRuger\nShawn\nSteele\nSterling\nTatum\nTerrence\nXzavier\nMason\nWilliam\nNoah\nElijah\nJames\nLiam\nJohn\nCarter\nJacob\nLogan\nJaxon\nHunter\nMichael\nWyatt\nEthan\nLuke\nAiden\nJackson\nGabriel\nSamuel\nBentley\nAlexander\nJoshua\nJayden\nDaniel\nBenjamin\nMatthew\nJace\nDavid\nAnthony\nGrayson\nLevi\nBraxton\nChristopher\nIsaac\nCaleb\nLucas\nEaston\nEli\nJoseph\nHudson\nOwen\nConnor\nIsaiah\nKayden\nBrayden\nAsher\nAndrew\nHenry\nJaxson\nRyder\nJase\nJonathan\nLandon\nSawyer\nAyden\nCooper\nJeremiah\nOliver\nRobert\nRyan\nCharles\nChristian\nParker\nCarson\nHayden\nBryson\nDylan\nGavin\nNathan\nBrantley\nCameron\nTyler\nColton\nJordan\nThomas\nKingston\nJack\nJosiah\nGunner\nChase\nAustin\nIan\nSebastian\nAaron\nMaddox\nBrandon\nBrody\nKevin\nLincoln\nEvan\nKaiden\nBlake\nJason\nJulian\nSilas\nTristan\nAbel\nCamden\nDawson\nAdrian\nNathaniel\nDrake\nTucker\nJasper\nMax\nNicholas\nPeyton\nEzra\nPreston\nWeston\nAshton\nJustin\nRhett\nRiver\nRyker\nTimothy\nBennett\nKaden\nAngel\nCayden\nJayceon\nJose\nRylan\nZachary\nCorbin\nKarson\nKarter\nRemington\nZayden\nJax\nJayce\nKaleb\nMiles\nXavier\nGreyson\nHarrison\nJeremy\nLane\nMalachi\nWesley\nChandler\nGage\nJesse\nNolan\nZander\nBryan\nJude\nKenneth\nAvery\nBeau\nBrian\nBryce\nCole\nConner\nGrant\nJonah\nKyler\nBeckett\nBrooks\nClayton\nDallas\nGraham\nRiley\nSteven\nAlan\nAxel\nChance\nDominic\nKyle\nMicah\nZane\nBarrett\nBraylon\nCash\nCharlie\nCollin\nEmmett\nEzekiel\nGarrett\nJett\nReid\nCaden\nCaiden\nCarlos\nCody\nDakota\nEric\nMaverick\nWaylon\nXander\nAdam\nAlex\nCade\nDamian\nDevin\nElias\nJaden\nAntonio\nDalton\nDeclan\nGrady\nHolden\nKing\nMaxwell\nMiguel\nDean\nEverett\nGeorge\nLanden\nMarshall\nPaxton\nWalker\nAugust\nBraden\nBrycen\nGannon\nJake\nJudah\nKeegan\nMyles\nReed\nVictor\nBrady\nCohen\nIvan\nJaiden\nJaxton\nKash\nKason\nSantiago\nSpencer\nVincent\nCalvin\nCannon\nDamien\nDaxton\nJohnny\nKamden\nKnox\nLeo\nMarcus\nRichard\nTravis\nBo\nBradley\nChevy\nColin\nElliot\nJameson\nJuan\nKai\nPatrick\nPrinceton\nRoman\nRowan\nSean\nSeth\nTitus\nTrevor\nZaiden\nArcher\nBraylen\nElliott\nFinn\nKasen\nLawson\nLuis\nTanner\nTate\nTripp\nZayne\nAce\nBrennan\nCorey\nCristian\nCruz\nDexter\nEdgar\nGiovanni\nGriffin\nHayes\nJensen\nLayton\nMaximus\nNash\nOscar\nTy\nZachariah\nAidan\nBrentley\nCase\nCason\nColby\nColt\nJesus\nJimmy\nJoel\nKobe\nLarry\nPaul\nRayden\nTatum\nTheodore\nTony\nTrenton\nTroy\nAbraham\nCesar\nDeacon\nHank\nHarley\nJagger\nJaydon\nJeffrey\nJessie\nKayson\nMateo\nPhillip\nRaymond\nRonald\nScott\nStephen\nTerry\nZion\nAnderson\nAtticus\nBeckham\nBobby\nBrock\nDamon\nDiego\nDustin\nEduardo\nEdward\nEllis\nEmmanuel\nIker\nJared\nJerry\nJoe\nJosue\nKameron\nKeaton\nKorbin\nLandyn\nMajor\nPhoenix\nRaylan\nShawn\nTrey\nWarren\nWilson\nAden\nAmari\nAmir\nAsa\nBilly\nBlaine\nCarl\nChanning\nDanny\nEdwin\nFinley\nGary\nGibson\nGideon\nGunnar\nJohnathan\nJorge\nKade\nKendrick\nKolton\nLegend\nLukas\nMalik\nMario\nNehemiah\nPierce\nShane\nSimon\nTobias\nTyson\nAlexzander\nAllen\nAugustus\nBentlee\nCasen\nCayson\nClark\nEmerson\nFelix\nFletcher\nJakob\nJavier\nKane\nKonnor\nLance\nLathan\nMessiah\nMiller\nReece\nReese\nSkyler\nSylas\nToby\nAbram\nAlejandro\nBoston\nBrantlee\nBrendan\nBrently\nBrice\nBryant\nCedric\nColten\nDarius\nDavis\nDax\nDayton\nDraven\nFernando\nGregory\nGrey\nIzaiah\nJamarion\nJedidiah\nJon\nJustice\nKeith\nKylan\nLeon\nLeonardo\nMartin\nNeymar\nNoe\nQuinton\nRaiden\nRicardo\nRicky\nRonan\nRoyce\nRuger\nRussell\nStetson\nTerrance\nTitan\nTristen\nWestin\nAdan\nAmare\nAndre\nAndres\nAndy\nArthur\nAxton\nBraydon\nBrayson\nBrodie\nBruce\nByron\nCallen\nCurtis\nDarren\nDemarcus\nDennis\nDenver\nDerrick\nDesmond\nDonald\nDorian\nEddie\nEmanuel\nEmiliano\nEmmitt\nEsteban\nFisher\nFoster\nFrancisco\nFrank\nGentry\nGustavo\nHarper\nIsrael\nJacoby\nJamison\nJaylen\nJohnathon\nJulius\nKaison\nKamarion\nKaylon\nKenton\nKoen\nKorbyn\nKylen\nKyrie\nKyson\nLandry\nLayden\nLayne\nLee\nLeland\nLeonel\nLewis\nLouis\nLuca\nMalcolm\nMarco\nMark\nMarvin\nMatthias\nNixon\nOakley\nOmar\nPedro\nPorter\nRafael\nRandy\nRansom\nRay\nRex\nRidge\nRonnie\nRoy\nSolomon\nThiago\nTrace\nTrent\nWillie\nAidyn\nAldo\nAlec\nAlexis\nAubrey\nBlaze\nBraelyn\nBraxtyn\nBrayan\nBrenden\nBrett\nBriar\nBryar\nCanaan\nCaysen\nClay\nClifton\nColson\nCornelius\nCourtney\nCullen\nDante\nDaylen\nDillon\nEan\nEden\nEdison\nEmery\nEmory\nEnrique\nErik\nEzequiel\nFrederick\nGael\nHeath\nHouston\nJalen\nJay\nJayson\nJericho\nJonas\nJudson\nKamron\nKannon\nKarsen\nKarsyn\nKase\nKasyn\nKeagan\nKeelan\nKellan\nKhalil\nKillian\nKolby\nKole\nLawrence\nMadden\nMaddux\nManuel\nMasen\nMelvin\nMemphis\nMoses\nNelson\nNikolas\nOllie\nOrion\nPayton\nPhilip\nRoderick\nSergio\nTalon\nTerrell\nTheo\nTommy\nTurner\nUriah\nWinston\nZaidyn\nZechariah\nMary\nMaria\nAlice\nMargaret\nHelen\nFrances\nDorothy\nElizabeth\nJosephine\nRuth\nNellie\nIsabel\nMartha\nBetty\nLucy\nLupe\nCarmen\nEsther\nGrace\nAnnie\nBertha\nEva\nEvelyn\nJulia\nMercedes\nPauline\nRose\nVirginia\nAgnes\nEmma\nIrene\nJennie\nJessie\nKatherine\nLouise\nRita\nRuby\nBeatrice\nClara\nElla\nLucille\nMarguerite\nPetra\nSusie\nAlicia\nAmelia\nAnna\nAurora\nEdna\nEleanor\nJane\nLaura\nLillian\nMildred\nMinnie\nRosa\nThelma\nTheresa\nMary\nMaria\nCarmen\nMargaret\nHelen\nRuth\nDorothy\nJosephine\nAlice\nElizabeth\nFlorence\nIrene\nRose\nEdith\nKatherine\nFrances\nGrace\nMarie\nVirginia\nClara\nJulia\nRamona\nRita\nAnita\nEmma\nHazel\nMartha\nAmelia\nAnna\nAntonia\nBessie\nEdna\nEsther\nGertrude\nJessie\nLouise\nLucy\nLupe\nMargarita\nMildred\nNellie\nViola\nAurora\nConnie\nCruz\nDolores\nEva\nFrancisca\nJennie\nJosefina\nLillian\nMaggie\nMercedes\nPauline\nRachel\nStella\nThelma\nAdela\nAmalia\nAngelita\nAngie\nArtemisa\nEthel\nGeorgia\nJuanita\nLaura\nMabel\nMinnie\nPearl\nSusie\nTheresa\nMary\nMaria\nHelen\nMargaret\nRuth\nDorothy\nElizabeth\nJosephine\nCarmen\nMarie\nFrances\nLouise\nVirginia\nAlice\nAnita\nRita\nGrace\nLupe\nRose\nJessie\nNellie\nAnnie\nJulia\nMartha\nPauline\nAnna\nDolores\nEvelyn\nIrene\nAda\nAmelia\nBetty\nEdna\nGertrude\nEsther\nEva\nHazel\nLillian\nLola\nLucy\nThelma\nAngelita\nBeatrice\nConcepcion\nEmma\nInez\nJuanita\nLaura\nMildred\nMinnie\nRosa\nAgnes\nAngela\nAntonia\nClara\nDora\nEdith\nEleanor\nGuadalupe\nJennie\nJosefina\nJuana\nKatherine\nLucille\nMargarita\nPearl\nRamona\nAurora\nBertha\nCatherine\nChristine\nConsuelo\nElisa\nEllen\nElsie\nFrancisca\nIda\nJane\nJean\nLena\nLeona\nMarian\nMarion\nMarjorie\nNancy\nOlive\nRuby\nSusie\nTeresa\nVelma\nViola\nMary\nMargaret\nMaria\nFrances\nDorothy\nRuth\nHelen\nVirginia\nAlice\nJosephine\nLouise\nNellie\nEvelyn\nJulia\nAnna\nElizabeth\nEva\nMildred\nRuby\nMarie\nBertha\nJuanita\nLupe\nRose\nAnita\nCarmen\nFlorence\nIsabel\nLillian\nLucille\nEsther\nLucy\nVictoria\nAgnes\nCatherine\nClara\nEdith\nIda\nJennie\nLaura\nMarjorie\nAdelina\nAmelia\nAnnie\nCelia\nEdna\nHazel\nKatherine\nPearl\nRosa\nAntonia\nCharlotte\nDolores\nEthel\nGenevieve\nGladys\nGrace\nGuadalupe\nJean\nJessie\nMargarita\nPauline\nSally\nThelma\nAnn\nBeatrice\nConnie\nEmily\nIsabelle\nLena\nLeona\nLuz\nLydia\nRita\nVera\nAlicia\nAmalia\nAndrea\nChristine\nConcepcion\nConcha\nDoris\nEmma\nFaye\nHilda\nIrene\nJane\nJosefina\nLola\nMae\nMarion\nMartha\nMinnie\nPetra\nStella\nSusie\nMary\nDorothy\nHelen\nJosephine\nMargaret\nFrances\nMaria\nRuth\nVirginia\nAlice\nCarmen\nMildred\nElizabeth\nEsther\nRose\nEleanor\nLouise\nLucille\nLupe\nDolores\nEvelyn\nJulia\nNellie\nRita\nEdith\nIrene\nAnita\nBertha\nClara\nBetty\nFlorence\nIsabel\nSally\nAmelia\nDora\nEdna\nJuana\nRamona\nVivian\nAnna\nBessie\nBlanche\nEva\nMercedes\nPauline\nPetra\nRuby\nSarah\nAgnes\nAngelita\nEmma\nGladys\nHazel\nLaura\nLillian\nLucy\nConsuelo\nEthel\nGuadalupe\nIda\nJessie\nKatherine\nLena\nMarian\nMarjorie\nSusie\nElla\nMarion\nMartha\nRosa\nTheresa\nAdeline\nAnn\nBarbara\nBeatrice\nBernice\nCatherine\nElisa\nErnestine\nFlora\nGertrude\nGrace\nHilda\nJennie\nJuanita\nLeona\nLois\nMabel\nMaggie\nMamie\nManuela\nMargarita\nMarguerite\nMarie\nPearl\nTeresa\nAda\nAdela\nAdelina\nAmalia\nAntonia\nCelia\nConcha\nCora\nDelia\nDoris\nEsperanza\nFrancisca\nGeorgia\nHerminia\nJane\nJeanette\nKathryn\nLorraine\nLydia\nMartina\nMelba\nSara\nVictoria\nViola\nWanda\nMary\nHelen\nVirginia\nDorothy\nMaria\nRuth\nMargaret\nElizabeth\nMildred\nCarmen\nFrances\nDolores\nEva\nLupe\nAlice\nAnita\nAnna\nEsther\nIrene\nJosephine\nEdith\nThelma\nClara\nEleanor\nVera\nBertha\nFlorence\nJessie\nJulia\nMartha\nIda\nRose\nEdna\nEmma\nKatherine\nLaura\nLillian\nLouise\nNellie\nRosa\nRuby\nBetty\nGrace\nMarjorie\nPatricia\nAurora\nDora\nDoris\nEvelyn\nGeorgia\nJuanita\nLucy\nPauline\nPetra\nVivian\nAgnes\nBessie\nGenevieve\nLucille\nMargarita\nAmelia\nAnn\nAnnie\nBeatrice\nCatherine\nEllen\nElsie\nJean\nJennie\nLois\nRita\nStella\nBarbara\nConnie\nConsuelo\nDella\nGladys\nHazel\nInez\nIsabel\nJane\nMercedes\nSarah\nBernice\nCelia\nEloise\nElvira\nLeonor\nLydia\nMinnie\nPhyllis\nRamona\nTeresa\nAlma\nAngelita\nArmida\nCaroline\nDelfina\nEmily\nGertrude\nGuadalupe\nHortensia\nJuana\nOlga\nSocorro\nViola\nViolet\nAdela\nAngela\nAngelina\nAntonia\nBlanche\nChristine\nCora\nCruz\nGeneva\nGloria\nJune\nManuela\nMyrtle\nRebecca\nRosario\nSally\nAda\nAdelina\nAlberta\nCarolina\nCecelia\nConcha\nElla\nEsperanza\nFay\nFrancisca\nHenrietta\nHope\nIsabelle\nJosefina\nMabel\nMarian\nMaxine\nMona\nNancy\nNora\nOlive\nPearl\nRachel\nSadie\nSara\nVictoria\nWilma\nMary\nMaria\nHelen\nDorothy\nMargaret\nFrances\nRuth\nCarmen\nVirginia\nAlice\nEva\nEvelyn\nJosephine\nLouise\nMildred\nGrace\nRose\nLupe\nEsther\nLillian\nMarie\nNellie\nThelma\nElizabeth\nIrene\nLucille\nDolores\nHazel\nJulia\nJuanita\nKatherine\nLucy\nAnita\nBeatrice\nBetty\nEdith\nFlorence\nJennie\nAntonia\nEleanor\nAdela\nAdelina\nBertha\nElvira\nEthel\nGertrude\nIsabel\nMarjorie\nPauline\nBarbara\nBessie\nCelia\nConsuelo\nJane\nJessie\nVictoria\nAmalia\nEdna\nJean\nLaura\nLena\nMartha\nTeresa\nAnna\nDora\nHenrietta\nJune\nKathryn\nLydia\nRita\nIda\nRuby\nStella\nTrinidad\nAnn\nAnnie\nCharlotte\nDoris\nEllen\nGenevieve\nLois\nManuela\nMinnie\nNina\nPearl\nSocorro\nSophie\nVelma\nViola\nAmelia\nAngelita\nBernice\nCaroline\nChristine\nClara\nEmma\nGladys\nMargarita\nMarian\nMyrtle\nNora\nRebecca\nRosa\nSarah\nTheresa\nAgnes\nAlicia\nAngelina\nAurora\nBlanche\nConnie\nDelia\nGeorgia\nGuadalupe\nInez\nLola\nMabel\nMarguerite\nMarion\nMercedes\nMercy\nRamona\nRoberta\nVera\nAurelia\nBonnie\nCatherine\nCecilia\nDella\nElla\nEmily\nFern\nFrancis\nLeah\nLouisa\nMollie\nOpal\nPhyllis\nRafaela\nSylvia\nAngela\nArmida\nConcepcion\nCora\nElena\nErnestine\nFannie\nFlora\nHarriet\nHerminia\nHilda\nHortencia\nHortensia\nIna\nJewel\nJosefina\nLillie\nMae\nMiriam\nMolly\nNorma\nSally\nSoledad\nSusie\nTillie\nVivian\nMary\nMaria\nMargaret\nHelen\nVirginia\nRuth\nCarmen\nFrances\nDorothy\nJosephine\nAlice\nMildred\nElizabeth\nBertha\nNellie\nEvelyn\nJulia\nBetty\nBeatrice\nDolores\nIrene\nLupe\nJessie\nEsther\nMartha\nBarbara\nLucy\nEmma\nMarie\nAnita\nAnna\nAntonia\nGrace\nRose\nConsuelo\nEva\nGladys\nGuadalupe\nHazel\nLillian\nVictoria\nCelia\nPauline\nAmelia\nDora\nEdna\nLouise\nRosa\nAnnie\nJean\nJuanita\nAurora\nFrancisca\nJennie\nLois\nMargarita\nVivian\nClara\nEdith\nEllen\nElsie\nEthel\nFlorence\nIsabel\nJane\nMarjorie\nRachel\nBessie\nConnie\nDoris\nOlga\nThelma\nAngela\nLola\nMinnie\nPatricia\nRuby\nConcha\nEleanor\nGenevieve\nLaura\nLena\nMercedes\nMyrtle\nTeresa\nVera\nWilma\nAgnes\nAngie\nArmida\nAurelia\nBernice\nCharlotte\nEloisa\nElvira\nInez\nJune\nMae\nMaxine\nPaula\nPetra\nRita\nAdela\nAlicia\nAmalia\nAnn\nCatherine\nCruz\nEsperanza\nGertrude\nMarion\nNatalia\nSara\nSarah\nSophie\nTheresa\nAmy\nAngelina\nBonnie\nConcepcion\nDelfina\nDelia\nDella\nEmily\nHenrietta\nHerminia\nJosefina\nKatherine\nLucille\nManuela\nOlive\nPearl\nSally\nViolet\nAdeline\nAnne\nCarlota\nCaroline\nCatalina\nCecilia\nEffie\nFlora\nHerlinda\nJanet\nJoan\nLorraine\nLydia\nMaggie\nNora\nNorma\nPhyllis\nRafaela\nRamona\nRebecca\nStella\nSusie\nTrinidad\nVelma\nVerna\nAda\nAlberta\nAlma\nAndrea\nAngelita\nArtemisa\nBeatriz\nCarol\nCarrie\nElisa\nEloise\nEstella\nFaye\nGeorgia\nHope\nJuana\nKathleen\nKathryn\nLibrada\nLillie\nMabel\nMamie\nMarguerite\nMariana\nMelba\nMerle\nMuriel\nNettie\nRefugio\nSocorro\nMary\nMaria\nCarmen\nVirginia\nMargaret\nHelen\nDorothy\nFrances\nRuth\nAlice\nLupe\nJosephine\nJulia\nRose\nBetty\nElizabeth\nEva\nDolores\nEleanor\nNellie\nAnita\nLouise\nMildred\nConsuelo\nDora\nIsabel\nMarjorie\nAnna\nEvelyn\nGrace\nAmelia\nBertha\nMartha\nSarah\nBeatrice\nLucy\nBarbara\nEdna\nTeresa\nEmma\nJennie\nLucille\nLydia\nAntonia\nEsther\nEthel\nIrene\nManuela\nMarie\nRita\nGuadalupe\nJean\nJessie\nPatricia\nRosa\nRuby\nSocorro\nClara\nElsie\nJune\nStella\nAnnie\nBessie\nFlorence\nGenevieve\nGladys\nJuana\nPauline\nRamona\nVera\nIda\nJuanita\nAdela\nAgnes\nAurora\nCharlotte\nElvira\nLaura\nLois\nVictoria\nViola\nViolet\nDoris\nEdith\nElla\nHazel\nKatherine\nMarguerite\nBernice\nCelia\nMercedes\nMinnie\nPearl\nPetra\nBlanche\nFrancisca\nHenrietta\nLena\nLillian\nMargarita\nMyrtle\nNancy\nRebecca\nThelma\nAngelita\nCatherine\nJosefina\nRoberta\nAlicia\nAmalia\nAngela\nAnn\nCruz\nEllen\nGertrude\nJane\nKathleen\nKathryn\nLola\nPhyllis\nVivian\nAna\nAndrea\nBeatriz\nConnie\nFlora\nGeorgia\nGeraldine\nHortense\nLeona\nLeonor\nLily\nMabel\nNina\nOlive\nSadie\nSara\nWilma\nAlejandra\nAlma\nAnne\nArmida\nDelia\nEloisa\nEmily\nEsperanza\nEugenia\nFrancis\nHortencia\nJosefa\nMaxine\nMay\nMelba\nMercy\nMolly\nOlivia\nOpal\nRachel\nRafaela\nRefugio\nRosie\nSophie\nSylvia\nZona\nAdelina\nAngelina\nAngie\nArtemisa\nAurelia\nBelen\nBeulah\nBillie\nCarlota\nCaroline\nCatalina\nChristina\nErnestina\nEstella\nEunice\nEvangeline\nHilda\nInez\nLorraine\nMargie\nNatalia\nNora\nOlga\nPeggy\nRena\nRhoda\nRosemary\nSally\nSelma\nSoledad\nTillie\nVerna\nWinifred\nMary\nMaria\nHelen\nMargaret\nFrances\nVirginia\nCarmen\nDorothy\nRuth\nAlice\nLouise\nJosephine\nBetty\nElizabeth\nNellie\nEsther\nAnita\nDolores\nJulia\nLupe\nAurora\nIsabel\nMarie\nMildred\nConsuelo\nLucy\nPauline\nAmelia\nEvelyn\nJuanita\nJessie\nSocorro\nEdith\nJean\nRose\nAngelita\nClara\nEva\nIrene\nLillian\nRamona\nVera\nDora\nLydia\nMarjorie\nRosa\nSarah\nAnna\nBertha\nAntonia\nBarbara\nElsie\nLucille\nManuela\nMartha\nRita\nEleanor\nHazel\nLaura\nLorraine\nThelma\nBeatrice\nElvira\nGeraldine\nCharlotte\nConcha\nFlorence\nGrace\nIda\nJune\nEthel\nJennie\nMargarita\nAnnie\nEmma\nGertrude\nGuadalupe\nRosie\nRuby\nAlicia\nCruz\nKatherine\nNorma\nPatricia\nPearl\nTheresa\nCelia\nGladys\nMarian\nMercedes\nTeresa\nAdelina\nAmalia\nConnie\nElena\nEsperanza\nJuana\nLola\nMarguerite\nNancy\nRebecca\nShirley\nWilma\nDoris\nErnestina\nKathryn\nMaxine\nRachel\nStella\nSusie\nVictoria\nAda\nAgnes\nAlma\nAngela\nAnn\nArmida\nCatherine\nDelfina\nEunice\nHarriet\nInez\nJane\nJosefina\nLily\nLois\nMabel\nMinnie\nNatalia\nOlga\nOpal\nPetra\nSophie\nAngelina\nConcepcion\nEllen\nEloisa\nEnriqueta\nErnestine\nEstella\nGenevieve\nGeorgia\nKathleen\nMae\nMyrtle\nRosario\nSara\nViola\nAngie\nAurelia\nBessie\nCatalina\nCecilia\nChristine\nCora\nDelia\nDella\nElla\nEloise\nEtta\nFrancisca\nGregoria\nHope\nHortencia\nHortensia\nJoy\nLucia\nMercy\nRosemary\nSadie\nSoledad\nVerna\nAdela\nAdeline\nAnne\nBernice\nBonnie\nCarolina\nCleo\nCuca\nDixie\nEileen\nFay\nIrma\nJoan\nLena\nLeonor\nLillie\nMaclovia\nMatilda\nMollie\nNettie\nNora\nRoberta\nSally\nTrinidad\nViolet\nWinifred\nMary\nMaria\nHelen\nDorothy\nFrances\nRuth\nVirginia\nMargaret\nAlice\nCarmen\nJosephine\nBetty\nLupe\nElizabeth\nMildred\nRose\nLouise\nNellie\nAnna\nBarbara\nEva\nHazel\nJuanita\nMarie\nSocorro\nEsther\nJulia\nLucy\nSarah\nMarjorie\nDolores\nGrace\nIrene\nJean\nAntonia\nAurora\nJessie\nRosa\nConsuelo\nEvelyn\nFlorence\nDoris\nMercedes\nPauline\nThelma\nVera\nLillian\nMartha\nClara\nDora\nEmma\nLaura\nAnita\nEleanor\nGuadalupe\nEdith\nElsie\nIsabel\nJennie\nLucille\nPatricia\nRita\nRuby\nAmelia\nJuana\nRamona\nTeresa\nAnnie\nBeatrice\nBertha\nInez\nManuela\nFrancisca\nGeraldine\nJane\nKatherine\nLois\nAlicia\nGladys\nMargarita\nStella\nVictoria\nAgnes\nEthel\nGenevieve\nJune\nLydia\nAngelita\nArmida\nBernice\nCelia\nLola\nMinnie\nRoberta\nShirley\nVivian\nAdelina\nAngelina\nCatalina\nConnie\nDelia\nElisa\nGertrude\nMabel\nAnn\nConcha\nCora\nEdna\nElvira\nEsperanza\nHenrietta\nKathryn\nLeona\nPaula\nPhyllis\nRosie\nSally\nSara\nAlma\nBessie\nBette\nElena\nElla\nEunice\nHarriet\nIda\nMarion\nNorma\nOlive\nOlivia\nPearl\nPeggy\nViola\nAmalia\nCharlotte\nGeorgia\nHerminia\nHortense\nKathleen\nLeonor\nLillie\nLorraine\nLouisa\nMarian\nMercy\nRachel\nRebecca\nRefugio\nBeulah\nEmily\nHilda\nIrma\nMay\nMicaela\nMollie\nPetra\nSylvia\nTheresa\nVelma\nViolet\nAda\nAdela\nAngela\nAudrey\nBlanche\nCarlota\nChristine\nDixie\nElma\nEloisa\nEvangelina\nFelicitas\nFlora\nJoan\nLuz\nMelba\nNatalie\nSofia\nSusie\nTillie\nTomasa\nTrinidad\nWanda\nWilma\nAndrea\nArtemisa\nAurelia\nCarolyn\nCatherine\nCecilia\nChristina\nCleo\nCruz\nDelfina\nEdythe\nErlinda\nErnestine\nFannie\nFrancis\nHerlinda\nHope\nIla\nIna\nIsabelle\nKatie\nLibrada\nLorenza\nOpal\nOtilia\nPatsy\nRafaela\nRosalie\nRosario\nSusan\nVirgie\nWillie\nWinifred\nYvonne\nMary\nMaria\nMargaret\nHelen\nAlice\nFrances\nDorothy\nCarmen\nJosephine\nVirginia\nBetty\nRuth\nLupe\nNellie\nElizabeth\nMarie\nMarjorie\nEsther\nIrene\nSocorro\nRose\nAntonia\nEleanor\nAmelia\nAnna\nIsabel\nMildred\nAnita\nElsie\nClara\nDolores\nEdna\nEva\nEvelyn\nJulia\nLillian\nEdith\nFlorence\nGrace\nBarbara\nJean\nLois\nLouise\nRamona\nRita\nBertha\nEmma\nLucy\nAurora\nAnnie\nDora\nDoris\nJuanita\nKatherine\nRuby\nBeatrice\nConsuelo\nIda\nJane\nJennie\nLucille\nMartha\nEthel\nGuadalupe\nKathryn\nCharlotte\nJessie\nLorraine\nManuela\nPauline\nBessie\nElvira\nPatricia\nCelia\nGladys\nMargarita\nMercedes\nSarah\nVera\nAngelita\nElla\nHilda\nLaura\nNancy\nPetra\nThelma\nGenevieve\nInez\nJune\nMarion\nMyrtle\nOphelia\nVelma\nAlicia\nAlma\nBernice\nJuana\nLola\nLydia\nRachel\nShirley\nCatalina\nCatherine\nCruz\nElena\nFrancisca\nGloria\nHazel\nJosefina\nMabel\nMargie\nNorma\nPearl\nPhyllis\nRosie\nViolet\nAdela\nAngelina\nArmida\nBonnie\nConcha\nDelia\nEunice\nFern\nFlora\nGeorgia\nGertrude\nHenrietta\nMae\nMarian\nMercy\nRosa\nRosario\nTeresa\nWilma\nAnn\nBette\nBillie\nEsperanza\nHortense\nLena\nLily\nMarguerite\nMinnie\nSylvia\nAdeline\nCaroline\nConcepcion\nConnie\nDella\nElaine\nErnestina\nEstella\nGeraldine\nHope\nMay\nRebecca\nSara\nSophie\nTrinidad\nVictoria\nViola\nAdelina\nAmalia\nAna\nCecilia\nErlinda\nFreda\nLeonor\nMolly\nPeggy\nRosaura\nSally\nSusie\nTheresa\nVivian\nWanda\nAda\nAgnes\nAlberta\nAngela\nArtemisa\nAurelia\nBeatriz\nBelen\nCarol\nCarrie\nCecelia\nChristine\nCora\nDaisy\nDelfina\nDonna\nEloisa\nEmilia\nEulalia\nHortensia\nJoan\nJosie\nJoyce\nLeona\nMagdalena\nMaxine\nMicaela\nMona\nNora\nOfelia\nRefugio\nRoberta\nSadie\nSybil\nMary\nMaria\nHelen\nMargaret\nBetty\nVirginia\nFrances\nRuth\nDorothy\nAlice\nCarmen\nJosephine\nEva\nIrene\nRose\nElizabeth\nLouise\nAnna\nJulia\nLupe\nEvelyn\nMildred\nBarbara\nDolores\nEleanor\nIsabel\nEmma\nSocorro\nConsuelo\nLillian\nMarjorie\nMartha\nNellie\nBertha\nJessie\nRamona\nBeatrice\nDora\nDoris\nManuela\nCelia\nSarah\nRita\nRosa\nVera\nEdna\nEsther\nIda\nJune\nLucy\nAmelia\nBessie\nHazel\nJennie\nJuana\nLois\nLydia\nMarie\nNorma\nPauline\nRuby\nClara\nJean\nKatherine\nFlorence\nGrace\nJuanita\nLaura\nAlicia\nAnita\nCatherine\nGloria\nGuadalupe\nLorraine\nThelma\nAngelita\nEdith\nEthel\nGeraldine\nLola\nLucille\nMargarita\nMarian\nPhyllis\nRosie\nStella\nConnie\nElsie\nGladys\nMaggie\nPatricia\nSally\nTeresa\nAdelina\nAnn\nAnnie\nAntonia\nElvira\nGeorgia\nJosefina\nMae\nMargie\nMyrtle\nNancy\nTrinidad\nWanda\nArmida\nCharlotte\nElla\nGertrude\nHerminia\nMabel\nOpal\nShirley\nVivian\nAngela\nArtemisa\nAurora\nChristine\nConcha\nEllen\nErnestine\nHortencia\nHortensia\nJacqueline\nJane\nKathleen\nMinnie\nPearl\nTheresa\nViolet\nAmalia\nCecilia\nDelfina\nDelia\nEloise\nEmily\nGenevieve\nJesus\nMarion\nMercedes\nNaomi\nOlivia\nPetra\nRachel\nRebecca\nRosalie\nSara\nSoledad\nAgnes\nBelen\nCatalina\nChristina\nConcepcion\nCora\nCruz\nDaisy\nElaine\nElisa\nErlinda\nEstella\nFaye\nFlora\nFrancisca\nHenrietta\nInez\nJeanne\nLena\nOfelia\nPeggy\nRena\nRoberta\nAnne\nAurelia\nBennie\nBeverly\nCleo\nDella\nElena\nEmilia\nEsperanza\nEvangelina\nFrancis\nHarriett\nHope\nJosie\nJoyce\nLeonor\nLilly\nMarilyn\nMaxine\nMercy\nMolly\nTillie\nVictoria\nWilma\nMary\nMaria\nHelen\nBetty\nCarmen\nMargaret\nVirginia\nAlice\nDorothy\nRuth\nFrances\nJosephine\nDolores\nRose\nDora\nElizabeth\nEvelyn\nMarjorie\nMildred\nEva\nLucy\nLupe\nMartha\nBertha\nAnna\nEsther\nIrene\nJulia\nNellie\nBarbara\nConsuelo\nEdith\nEmma\nIsabel\nLouise\nClara\nLillian\nSarah\nFlorence\nJessie\nJuanita\nKatherine\nMarie\nJean\nRosa\nSocorro\nAnita\nAurora\nCelia\nEdna\nElvira\nGuadalupe\nGloria\nLydia\nRuby\nNorma\nStella\nThelma\nBessie\nConnie\nEleanor\nGrace\nRosie\nSally\nAntonia\nBeatrice\nMargarita\nNancy\nPauline\nAlicia\nHazel\nJune\nLucille\nPatricia\nRita\nAdelina\nAnnie\nCruz\nEsperanza\nIda\nJennie\nLois\nPearl\nPhyllis\nRamona\nSusie\nAmelia\nAngelina\nArmida\nDaisy\nElsie\nEthel\nRosalie\nVera\nVivian\nAmalia\nGeorgia\nHortensia\nJane\nJuana\nMargie\nMarian\nRachel\nSara\nAurelia\nCaroline\nCharlotte\nConcepcion\nDelia\nDoris\nFrancisca\nGeraldine\nLeona\nMae\nMolly\nShirley\nTeresa\nVictoria\nViola\nAdela\nAdeline\nAngelita\nAnne\nCatalina\nCatherine\nCora\nDella\nElla\nErnestina\nEstella\nFlora\nGladys\nHattie\nJosefina\nKathryn\nLaura\nLily\nMercedes\nMinnie\nPeggy\nSadie\nVelma\nAgnes\nBernice\nBillie\nEmilia\nFannie\nGenevieve\nHortencia\nLena\nLola\nManuela\nPaula\nAlma\nAlta\nAngela\nArtemisa\nBettie\nBonnie\nElaine\nElena\nElisa\nEnedina\nGertrude\nHenrietta\nHope\nInez\nJosefa\nJoyce\nLila\nLuisa\nMercy\nNora\nOlga\nRebecca\nViolet\nWanda\nWilma\nAlyce\nAngie\nAnn\nBeatriz\nCecilia\nDelfina\nEloise\nEmily\nErlinda\nFrancis\nHilda\nIsabelle\nKathleen\nLillie\nLorraine\nMarion\nMelba\nMyrtle\nNatalia\nNatalie\nOfelia\nPriscilla\nRefugio\nRoberta\nRosemary\nSofia\nSoledad\nSylvia\nTheresa\nTillie\nWinifred\nMary\nMaria\nBetty\nAlice\nHelen\nDorothy\nMargaret\nCarmen\nFrances\nRuth\nJosephine\nVirginia\nDolores\nMartha\nLupe\nMarjorie\nConsuelo\nJulia\nRose\nBertha\nLucy\nSocorro\nIrene\nNellie\nRita\nJessie\nMarie\nLouise\nEva\nGuadalupe\nAnita\nBeatrice\nEleanor\nAnna\nGloria\nElizabeth\nKatherine\nMildred\nAntonia\nArmida\nBarbara\nEmma\nEsther\nIsabel\nRamona\nBessie\nDoris\nJuanita\nPatricia\nRosa\nRuby\nClara\nEvelyn\nJean\nMargarita\nVera\nAnnie\nLillian\nTeresa\nAmelia\nDora\nEdith\nEthel\nGrace\nJune\nLois\nPauline\nShirley\nConnie\nFlora\nFlorence\nGertrude\nLucille\nSarah\nAurora\nCharlotte\nDelia\nEdna\nHazel\nThelma\nCelia\nSara\nStella\nAngelita\nCecilia\nElsie\nErnestine\nLillie\nMarian\nRosie\nSally\nVictoria\nVivian\nAdelina\nCatherine\nElvira\nEsperanza\nGeraldine\nGladys\nJane\nJuana\nLorraine\nPeggy\nPetra\nTillie\nViola\nAdela\nAngelina\nConcepcion\nElena\nElla\nJennie\nLaura\nNorma\nPearl\nRachel\nRebecca\nWanda\nAnn\nBillie\nElisa\nEmily\nGenevieve\nHortencia\nKathleen\nLydia\nManuela\nMarion\nMercedes\nNancy\nPhyllis\nRosario\nSophie\nSusie\nAlicia\nBelia\nCruz\nDella\nErlinda\nGeorgia\nHenrietta\nIda\nJoyce\nMargie\nMicaela\nMyrtle\nOlga\nViolet\nAlma\nAurelia\nIgnacia\nLena\nLuz\nTrinidad\nWilma\nAngela\nBenita\nBette\nBettie\nCatalina\nDelfina\nEloisa\nEmilia\nFrancisca\nGregoria\nHilda\nHope\nInez\nKathryn\nLucia\nMadge\nMae\nMarguerite\nMelba\nMelva\nMinnie\nOlivia\nPolly\nSoledad\nSylvia\nTheresa\nVelma\nVerna\nAda\nAdeline\nAgnes\nAmalia\nAmparo\nArcelia\nArtemisa\nBeatriz\nBernice\nBlanche\nCarol\nCleo\nColleen\nEnriqueta\nErnestina\nFern\nFrancis\nJosefa\nJosie\nLela\nLeonor\nLilly\nLinda\nMable\nMatilde\nMolly\nNatalia\nOlive\nOra\nRosemary\nMary\nMaria\nBetty\nHelen\nDorothy\nAlice\nCarmen\nFrances\nMargaret\nVirginia\nJosephine\nRuth\nNellie\nGloria\nIrene\nDora\nLucy\nEsther\nJulia\nLupe\nBarbara\nDoris\nJuanita\nMarie\nSocorro\nAnna\nElizabeth\nEva\nDolores\nRose\nIsabel\nJean\nLouise\nAnita\nJessie\nEmma\nMarjorie\nShirley\nBeatrice\nConsuelo\nLillian\nPatricia\nRosa\nAmelia\nBessie\nCelia\nAurora\nBertha\nNorma\nEleanor\nElla\nGuadalupe\nHazel\nKatherine\nLucille\nMildred\nArmida\nElsie\nLaura\nLydia\nRita\nAnnie\nEdith\nFlorence\nJennie\nManuela\nPauline\nRamona\nSarah\nAngelita\nCatalina\nLois\nVera\nClara\nMinnie\nAlicia\nElvira\nEvelyn\nMargarita\nMartha\nSally\nSusie\nConnie\nEsperanza\nHortensia\nRosie\nThelma\nVictoria\nBernice\nDelia\nGrace\nJune\nMaxine\nAlma\nAntonia\nCharlotte\nEdna\nGeraldine\nHortencia\nIda\nJosefina\nJoyce\nLorraine\nNancy\nPeggy\nPetra\nRuby\nStella\nAgnes\nArtemisa\nCecilia\nCora\nGertrude\nGladys\nJuana\nMargie\nMercedes\nPatsy\nViola\nAdelina\nAngela\nAngelina\nAurelia\nBette\nCarolina\nConcha\nErnestina\nEthel\nHilda\nLola\nOlga\nSara\nSofia\nSylvia\nViolet\nAdela\nErnestine\nFaye\nFrancisca\nGeorgia\nJane\nJoan\nLena\nLillie\nLucia\nMarion\nOfelia\nRoberta\nVivian\nWanda\nAmparo\nCatherine\nEllen\nEnedina\nGenevieve\nHenrietta\nJanice\nKathleen\nLeona\nMable\nMae\nMay\nMyrtle\nNora\nOphelia\nRachel\nRosalie\nTeresa\nTheresa\nVelma\nWilma\nWinnie\nAmalia\nBillie\nBlanche\nBonnie\nChristine\nDelfina\nElisa\nElva\nFannie\nFlora\nHarriet\nHortense\nImogene\nKatie\nLarue\nLidia\nLilly\nMabel\nMarian\nNadine\nNatalia\nPhyllis\nRebecca\nRosario\nRosemary\nVerna\nAda\nAlberta\nAndrea\nAnn\nAnne\nBeatriz\nBelen\nBeth\nCarolyn\nClotilde\nColleen\nConcepcion\nConception\nCruz\nElaine\nEmily\nErlinda\nEstella\nGwendolyn\nHattie\nHope\nIla\nInez\nJeanette\nJeanne\nJenny\nJoy\nLeonor\nLily\nLorna\nMagdalena\nMarilyn\nMicaela\nOlivia\nPearl\nSadie\nTillie\nTrinidad\nWinifred\nYvonne\nMary\nMaria\nBetty\nMargaret\nDorothy\nFrances\nAlice\nCarmen\nHelen\nVirginia\nBarbara\nJosephine\nRuth\nDora\nLupe\nGloria\nDolores\nLucy\nPatricia\nEva\nEsther\nElizabeth\nJulia\nMarie\nRose\nMildred\nSocorro\nIrene\nJean\nLois\nNellie\nAnnie\nJuanita\nSally\nAnita\nBeatrice\nEmma\nIsabel\nMarjorie\nGuadalupe\nNorma\nRita\nLillian\nRosa\nStella\nThelma\nBertha\nClara\nJuana\nLouise\nShirley\nAmelia\nConsuelo\nEvelyn\nMargarita\nRosie\nSarah\nEleanor\nElvira\nGrace\nLydia\nMartha\nAurora\nDoris\nEdith\nEthel\nRamona\nSusie\nCecilia\nElsie\nLucille\nPetra\nAnna\nCelia\nLily\nMinnie\nTeresa\nVera\nCarol\nChristine\nIda\nJoan\nJune\nManuela\nMaxine\nBonnie\nConnie\nEmily\nEstella\nJennie\nJessie\nKatherine\nLena\nMercedes\nRuby\nSara\nViola\nAlicia\nAngelita\nDelia\nEdna\nErnestina\nFlorence\nFrancisca\nGladys\nJane\nJosefina\nPauline\nPeggy\nAdela\nAnn\nBernice\nBessie\nBillie\nCharlotte\nConcha\nErnestine\nGenevieve\nGertrude\nKathleen\nOlga\nRebecca\nTheresa\nWanda\nAurelia\nCaroline\nConcepcion\nElena\nLaura\nMae\nMarion\nPaula\nPhyllis\nRosemary\nVelma\nVictoria\nVivian\nAdeline\nAmparo\nAngela\nAngelina\nAngie\nAnne\nArmida\nCatalina\nCatherine\nCruz\nElla\nEloisa\nHortencia\nJoyce\nLucia\nMabel\nNancy\nOfelia\nOpal\nPearl\nSylvia\nAgnes\nBeverly\nEllen\nGeorgia\nHope\nLilly\nMarian\nMarilyn\nMercy\nNora\nPatsy\nTrinidad\nZonnie\nAlta\nAmalia\nArtemisa\nBette\nCleo\nConstance\nDaisy\nDonna\nEmilia\nEnedina\nErma\nEsperanza\nFlora\nFrancis\nHazel\nJacqueline\nLillie\nLuz\nMay\nMolly\nNatalia\nNettie\nNina\nOphelia\nSofia\nAdelina\nAmy\nAndrea\nCora\nElisa\nGenoveva\nGeraldine\nHenrietta\nHortensia\nJeanne\nJosefa\nJoy\nLaverne\nLeonor\nLoretta\nLorraine\nMarina\nMelba\nOlivia\nOtilia\nRefugio\nRosalie\nSadie\nSoledad\nTillie\nVerna\nViolet\nMary\nMaria\nBetty\nHelen\nMargaret\nAlice\nFrances\nBarbara\nCarmen\nJosephine\nVirginia\nRuth\nDolores\nDorothy\nLupe\nIrene\nEsther\nNellie\nJulia\nBertha\nAnnie\nLydia\nNorma\nTeresa\nDora\nMartha\nElizabeth\nAnita\nEmma\nGuadalupe\nMarie\nRose\nRamona\nSocorro\nConsuelo\nEva\nIsabel\nJessie\nLouise\nPatricia\nGloria\nMildred\nRosie\nShirley\nJean\nMargarita\nEleanor\nFlorence\nThelma\nAnna\nCelia\nPauline\nSarah\nVera\nDoris\nGrace\nIda\nJuanita\nPhyllis\nBeatrice\nClara\nEvelyn\nGladys\nJoyce\nMarjorie\nRita\nAmelia\nConnie\nElvira\nKatherine\nLois\nRuby\nAngelita\nAurora\nBessie\nHazel\nJune\nLaura\nLucy\nMaxine\nMinnie\nStella\nAntonia\nEdna\nEsperanza\nFrancisca\nJoan\nLillian\nMarian\nRoberta\nArmida\nEdith\nNancy\nPearl\nSally\nViola\nAnn\nGeraldine\nJennie\nLorraine\nRosa\nAlicia\nAurelia\nBillie\nConcepcion\nElla\nNora\nVelma\nDelia\nElsie\nErnestine\nFaye\nHortencia\nLillie\nLucia\nManuela\nPeggy\nPetra\nTillie\nVictoria\nViolet\nVivian\nWanda\nAdela\nAngela\nCatalina\nColleen\nElisa\nEloisa\nEstella\nGenevieve\nHortensia\nJosie\nKathleen\nLena\nLilly\nLuz\nMercedes\nNaomi\nOlga\nWilma\nAgnes\nAmalia\nArtemisa\nBeverly\nCarolyn\nCora\nEllen\nHilda\nJuana\nMercy\nMyrtle\nNadine\nRebecca\nRosalie\nAngie\nAudrey\nChristine\nDelfina\nDonna\nEileen\nErnestina\nEvangeline\nGeorgia\nHarriet\nHenrietta\nKathryn\nLucille\nMae\nMaggie\nMargie\nMarilyn\nPatsy\nRosemary\nSusie\nAlma\nAngelina\nBernice\nBonnie\nCarolina\nElena\nErlinda\nEugenia\nFannie\nFlora\nJesus\nJosefina\nLeona\nLeonor\nLily\nLinda\nLola\nMatilda\nPat\nRachel\nSadie\nVelia\nAileen\nBeatriz\nBelia\nBette\nCarol\nCecilia\nDaisy\nDella\nEthel\nEunice\nFern\nGertrude\nGregoria\nHerminia\nHope\nLidia\nLila\nLoraine\nNina\nOlivia\nPaula\nSoledad\nSophie\nSusan\nVelda\nVerna\nWillie\nMary\nBetty\nMaria\nDorothy\nAlice\nHelen\nMargaret\nBarbara\nCarmen\nRuth\nFrances\nVirginia\nDolores\nJosephine\nDora\nGloria\nGuadalupe\nLucy\nPatricia\nIrene\nSocorro\nNorma\nAnita\nEva\nMartha\nNellie\nDoris\nBertha\nMarie\nMarjorie\nRose\nEmma\nPauline\nSarah\nTeresa\nShirley\nAmelia\nEdna\nIsabel\nJulia\nMildred\nRita\nAnna\nAnnie\nJoyce\nLupe\nLydia\nRosa\nDelia\nElizabeth\nEvelyn\nJean\nLouise\nEleanor\nElsie\nElvira\nGeraldine\nGrace\nMargarita\nClara\nEsperanza\nJessie\nJuanita\nLois\nRamona\nSally\nVictoria\nAlicia\nAntonia\nEdith\nJune\nSusie\nThelma\nBessie\nJuana\nLillian\nRuby\nConnie\nEsther\nFrancisca\nLaura\nManuela\nAurora\nHortensia\nJosefina\nMarilyn\nPeggy\nSara\nStella\nCatalina\nNatalia\nOlga\nRosie\nAngelita\nBeatrice\nBeverly\nConsuelo\nElla\nErnestine\nEthel\nHazel\nJennie\nMarian\nMinnie\nNancy\nArmida\nCharlotte\nElisa\nLena\nRachel\nVelma\nVerna\nAgnes\nAngelina\nAurelia\nBelen\nCecilia\nCelia\nElena\nErnestina\nJo\nLorraine\nLucia\nMargie\nWanda\nAdelina\nArtemisa\nBernice\nFlorence\nKatherine\nKathryn\nLeona\nLeonor\nMolly\nPhyllis\nSylvia\nVera\nViola\nBelia\nBillie\nConcepcion\nCruz\nEllen\nEmily\nGeneva\nGenevieve\nGladys\nHenrietta\nJane\nJoan\nLily\nLucille\nMariana\nOfelia\nRosemary\nAda\nDelfina\nDella\nHerminia\nJoy\nMarion\nMay\nMercy\nPatsy\nPearl\nPriscilla\nRebecca\nRena\nRoberta\nTheresa\nAida\nAudrey\nCarolina\nChristina\nCora\nDaisy\nDonna\nElaine\nEstella\nEunice\nGeorgia\nHilda\nIda\nJacqueline\nJeanne\nJesus\nMagdalena\nMelba\nRosalie\nSadie\nViolet\nVivian\nAlma\nAngela\nAnn\nBette\nBlanche\nBonnie\nCaroline\nCarolyn\nCecelia\nElva\nErma\nEster\nFern\nFlora\nHarriet\nJeannette\nKathleen\nLidia\nLilly\nLola\nMae\nMaggie\nMartina\nMatilde\nMyrtle\nNadine\nNatividad\nOlive\nOlivia\nPetra\nPolly\nRafaela\nVelia\nMary\nMaria\nBetty\nBarbara\nHelen\nDorothy\nAlice\nMargaret\nVirginia\nCarmen\nJosephine\nPatricia\nRuth\nShirley\nGloria\nFrances\nRose\nLupe\nBertha\nDolores\nDora\nMarie\nEmma\nIrene\nNorma\nAurora\nEva\nMartha\nPeggy\nRamona\nEsther\nJoyce\nJuanita\nNellie\nAnita\nEvelyn\nLucy\nBillie\nJulia\nIsabel\nMargarita\nPauline\nRosa\nAnna\nHazel\nSocorro\nBeatrice\nSally\nAmelia\nAnnie\nCelia\nDoris\nIda\nLydia\nMildred\nTeresa\nElvira\nLois\nJean\nNancy\nClara\nElizabeth\nLena\nLouise\nRosie\nBeverly\nConsuelo\nDelia\nElla\nGeraldine\nRita\nSarah\nGuadalupe\nJennie\nStella\nThelma\nAlicia\nAnn\nBonnie\nEleanor\nJoan\nJune\nLola\nPhyllis\nViola\nWanda\nEthel\nFlorence\nJane\nLucille\nVera\nArmida\nCarol\nCharlotte\nEdna\nKatherine\nLillian\nMarian\nMarjorie\nSusie\nBessie\nCatherine\nConnie\nEmily\nGeorgia\nGrace\nJosefina\nLorraine\nRebecca\nVelma\nBernice\nEdith\nEvangelina\nFlora\nJessie\nMercedes\nOfelia\nOlga\nSara\nAngelita\nAntonia\nColleen\nCruz\nDelfina\nDelores\nEllen\nElsie\nErnestine\nEsperanza\nFrancisca\nJacqueline\nLaura\nMinnie\nMyrtle\nNina\nNora\nOlivia\nPatsy\nPetra\nRuby\nAngela\nCora\nDonna\nEvangeline\nJoann\nRachel\nSue\nTheresa\nVelia\nViolet\nVivian\nAda\nAdela\nConcha\nEloisa\nEnedina\nGladys\nJosie\nLucia\nMae\nMagdalena\nMarilyn\nMaxine\nRosemary\nTillie\nAdeline\nAngelina\nArlene\nCandelaria\nCatalina\nEloise\nErlinda\nErnestina\nEstella\nEtta\nFay\nGeneva\nGenevieve\nHilda\nHortensia\nIrma\nJuana\nLilly\nMaggie\nMargie\nMercy\nRosario\nVerna\nVictoria\nYvonne\nAdelina\nAgnes\nAmalia\nArtemisa\nAurelia\nBeatriz\nBelen\nCarlota\nCaroline\nCarolyn\nConcepcion\nCristina\nDaisy\nDella\nElaine\nFrancis\nJeanne\nLeona\nMabel\nManuela\nMarion\nMona\nOralia\nRafaela\nRoberta\nSylvia\nAmparo\nAnne\nBette\nBlanche\nCecelia\nCecilia\nElena\nEmilia\nErma\nEstelle\nHenrietta\nHerminia\nImogene\nJo\nJoanne\nLila\nLora\nLula\nLuz\nMicaela\nMolly\nMyrna\nNadine\nNatalia\nPearl\nPriscilla\nRaquel\nSharon\nTrinidad\nWilma\nYolanda\nMary\nBetty\nMaria\nHelen\nBarbara\nFrances\nPatricia\nMargaret\nDorothy\nAlice\nVirginia\nCarmen\nDolores\nRuth\nJosephine\nRose\nGloria\nMartha\nIrene\nLouise\nElizabeth\nJoan\nNancy\nRita\nNellie\nBertha\nNorma\nShirley\nMarie\nSally\nJean\nLucy\nLupe\nEsther\nSarah\nDora\nDoris\nJennie\nEmma\nJuanita\nAnita\nBeatrice\nEva\nAnnie\nLillian\nRosa\nJessie\nLois\nMildred\nPatsy\nDonna\nMarilyn\nConsuelo\nJacqueline\nJoyce\nMarjorie\nAnna\nGladys\nJulia\nPauline\nRamona\nRosemary\nRuby\nSocorro\nStella\nWanda\nAmelia\nEdna\nEvelyn\nTeresa\nCelia\nFrancisca\nAntonia\nAurora\nCarol\nCatalina\nClara\nDelia\nEthel\nMinnie\nAnn\nBessie\nBeverly\nElvira\nIsabel\nLucille\nMargie\nPeggy\nRachel\nAlicia\nElla\nFlorence\nGeraldine\nJosefina\nLaura\nLorraine\nEdith\nElisa\nGrace\nGuadalupe\nJane\nMargarita\nPhyllis\nRebecca\nEllen\nElsie\nJune\nWilma\nAngie\nArmida\nAurelia\nBernice\nBillie\nConcepcion\nConnie\nKathryn\nLeona\nLydia\nOlga\nAngelita\nBonnie\nCarolina\nCecilia\nElaine\nEleanor\nErnestine\nEsperanza\nEstella\nIda\nJoanne\nMarian\nOfelia\nOlivia\nRosie\nVelma\nAndrea\nAngela\nAnne\nCatherine\nEmily\nEunice\nEvangeline\nGenevieve\nHazel\nJo\nJuana\nLola\nManuela\nMollie\nRoberta\nSue\nThelma\nTillie\nVerna\nAngelina\nCaroline\nDaisy\nElena\nErnestina\nGeorgia\nHilda\nIrma\nJanice\nLily\nLoretta\nMarion\nOpal\nPearl\nSusie\nTheresa\nAdela\nEloise\nHortencia\nJoy\nKatherine\nKatie\nLila\nLillie\nMae\nMaggie\nNaomi\nNora\nPriscilla\nSara\nVera\nViola\nViolet\nYolanda\nAgnes\nAna\nArtemisa\nBelen\nBelia\nCharlene\nColleen\nCruz\nEmilia\nFlora\nGlenna\nHarriet\nInez\nJeanette\nLena\nLenora\nLilia\nLinda\nLorna\nMabel\nMercedes\nMona\nNatalia\nRaquel\nRosalie\nSadie\nVivian\nZonnie\nAdelina\nAlberta\nAmalia\nCharlotte\nChristine\nConcha\nCora\nEliza\nErlinda\nErma\nErmelinda\nEufemia\nGeneva\nGertrude\nHenrietta\nImogene\nJanet\nJeanne\nJesus\nJesusita\nJoann\nJoe\nJohnnie\nJose\nKathleen\nLeonor\nLucia\nLula\nMaxine\nMercy\nMicaela\nMolly\nMyrtle\nNadine\nNeva\nNina\nNona\nOralia\nPat\nPetra\nRegina\nSylvia\nTrinidad\nVictoria\nMary\nBetty\nBarbara\nAlice\nHelen\nMargaret\nDorothy\nVirginia\nMaria\nFrances\nNorma\nCarmen\nGloria\nRose\nPatricia\nRuth\nShirley\nDolores\nIrene\nJosephine\nAnna\nAmelia\nEsther\nMartha\nNellie\nJoan\nMarie\nLucy\nJuanita\nLouise\nStella\nDoris\nAnnie\nBillie\nConnie\nElizabeth\nJoyce\nLydia\nPatsy\nJessie\nMarjorie\nBonnie\nEva\nEvelyn\nRuby\nSarah\nTeresa\nWanda\nDora\nEmma\nIda\nJean\nLupe\nMildred\nPeggy\nDonna\nEdna\nGeraldine\nLois\nOlga\nRita\nSally\nBeverly\nCarol\nIsabel\nJennie\nLaura\nNancy\nRamona\nRosa\nAgnes\nAlicia\nAnn\nBertha\nCelia\nElsie\nLucille\nPhyllis\nArmida\nBeatrice\nDelia\nElvira\nJane\nMarilyn\nRosie\nVera\nAngie\nJoanne\nJulia\nPauline\nRachel\nSocorro\nAngelita\nAnita\nBessie\nClara\nGuadalupe\nKathleen\nLily\nMargarita\nMaxine\nOfelia\nPat\nVivian\nConsuelo\nEdith\nHazel\nJo\nKatherine\nSusie\nAdelina\nCruz\nElisa\nGenevieve\nRebecca\nAurora\nCharlotte\nEthel\nJune\nLillian\nLola\nLorraine\nManuela\nMargie\nMinnie\nTheresa\nVelma\nViola\nAntonia\nCaroline\nElla\nGeorgia\nGrace\nHenrietta\nJanice\nJoann\nMarion\nNona\nBobbie\nDelores\nErnestine\nEstella\nFlorence\nHortencia\nIrma\nJenny\nMarian\nMyrtle\nYolanda\nAdeline\nAngelina\nAnne\nCarolyn\nErlinda\nEsperanza\nFrancisca\nInez\nJosefina\nJosie\nJuana\nLena\nMagdalena\nMaggie\nMarlene\nRaquel\nSylvia\nThelma\nViolet\nAdela\nAlberta\nAngela\nBettie\nBlanche\nConcepcion\nDelphine\nDixie\nElaine\nEleanor\nElena\nEllen\nJanet\nJeanne\nJudith\nLeona\nMercy\nNaomi\nNelda\nNina\nPetra\nRosalie\nTillie\nVerna\nWilma\nYvonne\nAlma\nAlta\nAmparo\nAudrey\nAurelia\nBernice\nBette\nCatherine\nCecilia\nChristine\nColleen\nDaisy\nDella\nEmily\nErnestina\nEula\nEunice\nFaye\nFern\nGeneva\nHarriet\nHilda\nHortensia\nJackie\nJeannette\nJoy\nLeonor\nLula\nMadeline\nMarylou\nNadine\nOphelia\nRoberta\nSadie\nSara\nSophie\nSue\nVelia\nVictoria\nMary\nBetty\nBarbara\nHelen\nAlice\nMaria\nMargaret\nVirginia\nDorothy\nFrances\nShirley\nJosephine\nCarmen\nGloria\nPatricia\nRuth\nIrene\nNancy\nDolores\nNorma\nMartha\nMarie\nRose\nElizabeth\nNellie\nPatsy\nSally\nBertha\nDoris\nLupe\nRosie\nSarah\nDonna\nDora\nJulia\nLucy\nPeggy\nAnna\nEvelyn\nJoan\nTeresa\nWanda\nAmelia\nAnnie\nArmida\nJane\nJean\nJuanita\nLois\nMildred\nBeatrice\nBeverly\nEleanor\nEsther\nPauline\nStella\nEdna\nElla\nEva\nIsabel\nRita\nAnn\nCarol\nClara\nMarilyn\nMarjorie\nRachel\nViola\nCharlotte\nEmma\nJennie\nVera\nAnita\nElsie\nElvira\nGrace\nJoyce\nLoretta\nMargarita\nOlga\nConsuelo\nDelia\nGeraldine\nLaura\nLucille\nVivian\nAngelita\nBillie\nConnie\nInez\nJo\nSocorro\nSylvia\nBessie\nBonnie\nGuadalupe\nLillian\nLorraine\nLouise\nRamona\nWilma\nAgnes\nAntonia\nJanet\nKatherine\nLydia\nPhyllis\nRebecca\nTheresa\nVelma\nBernice\nCecilia\nEstella\nEthel\nGladys\nIda\nIrma\nJoann\nLillie\nRosa\nAlicia\nAngelina\nAurora\nCatalina\nDelores\nElisa\nEsperanza\nFlorence\nHilda\nJacqueline\nJeanne\nJessie\nMae\nMarian\nPetra\nRosalie\nRosemary\nThelma\nAmy\nCarmelita\nErnestine\nKathryn\nLilly\nManuela\nRoberta\nTillie\nVerna\nAlma\nArlene\nCelia\nEdith\nErnestina\nGenevieve\nGeorgia\nJosefina\nJuana\nJune\nKathleen\nLena\nMargie\nMarlene\nMinnie\nMyrtle\nNora\nOfelia\nPaula\nSadie\nSue\nSusie\nAdela\nAngela\nAudrey\nBette\nCarolyn\nChristine\nConcha\nCora\nCruz\nElaine\nFaye\nFlora\nFrancisca\nJeanette\nKatie\nLily\nLinda\nLucia\nMaggie\nNatalie\nOpal\nPat\nVictoria\nViolet\nAngie\nBelen\nBobbie\nCatherine\nCharlene\nDalia\nDelfina\nDella\nEmily\nEnedina\nFannie\nFreda\nGayle\nGeneva\nGlenna\nHazel\nHenrietta\nHerminia\nIris\nJosie\nLila\nLola\nLula\nMamie\nNadine\nPolly\nRuby\nSara\nMary\nBetty\nBarbara\nHelen\nAlice\nMargaret\nVirginia\nFrances\nDorothy\nCarmen\nPatricia\nMaria\nShirley\nNorma\nDolores\nGloria\nMartha\nDora\nJosephine\nElizabeth\nJoan\nCarol\nIrene\nNancy\nNellie\nPauline\nRuth\nSally\nPatsy\nJulia\nRose\nJuanita\nLydia\nRamona\nAnna\nBertha\nEva\nLucy\nAnnie\nPhyllis\nRosie\nBeverly\nLouise\nRita\nAnita\nDonna\nSocorro\nConnie\nDelia\nEsther\nIsabel\nJessie\nMargie\nMarie\nMarilyn\nSylvia\nAnn\nAntonia\nBonnie\nDoris\nEvelyn\nJean\nPeggy\nClara\nGrace\nJoyce\nLois\nLupe\nOlga\nSara\nSarah\nCarolyn\nCelia\nLillian\nRuby\nWanda\nArmida\nCharlotte\nDarlene\nJo\nJosie\nLaura\nMildred\nTeresa\nAgnes\nAngie\nGeraldine\nGladys\nGuadalupe\nJennie\nJoann\nKatherine\nMarian\nVerna\nAurora\nBessie\nBillie\nEleanor\nElla\nEthel\nJune\nLena\nPearl\nBeatrice\nConsuelo\nFlora\nJoanne\nLillie\nNora\nStella\nAmelia\nEdith\nFlorence\nGeorgia\nInez\nIrma\nKatie\nMaxine\nOfelia\nRachel\nRosa\nAlicia\nAngelina\nAngelita\nCaroline\nCecilia\nElsie\nEmma\nErnestine\nJane\nJanet\nKathleen\nKay\nLorraine\nMargarita\nMarjorie\nOlivia\nSue\nSusan\nSusie\nTheresa\nViola\nVivian\nWilma\nBette\nBobbie\nChristine\nCora\nDella\nDelores\nErnestina\nHazel\nHenrietta\nJacqueline\nLeona\nLily\nMaggie\nMarlene\nMollie\nNaomi\nThelma\nAda\nEdna\nElaine\nElena\nElvira\nEsperanza\nJackie\nJanice\nJeanette\nJeanne\nJosefina\nKathryn\nManuela\nMercedes\nMercy\nNina\nRebecca\nRena\nRosemary\nVictoria\nAdelina\nArlene\nAudrey\nBernice\nCatherine\nCharlene\nDixie\nEarlene\nEileen\nEllen\nElva\nErma\nFern\nFrancisca\nGenevieve\nGertrude\nHarriet\nIda\nJuana\nLaverne\nLolita\nLoretta\nLucille\nMae\nMatilda\nMinnie\nNelda\nNona\nRosario\nTerry\nTillie\nVelia\nVelma\nVera\nMary\nBetty\nBarbara\nHelen\nAlice\nMargaret\nFrances\nDorothy\nShirley\nMaria\nRuth\nIrene\nVirginia\nCarmen\nNancy\nPatricia\nGloria\nRose\nJosephine\nSally\nEsther\nCarol\nEvelyn\nBeverly\nDolores\nMarie\nNellie\nLupe\nMartha\nNorma\nElizabeth\nJoyce\nSylvia\nTeresa\nAnita\nLydia\nGrace\nLucy\nBeatrice\nJulia\nSocorro\nConnie\nDonna\nEdna\nJean\nJoan\nMarjorie\nPauline\nRamona\nDora\nSarah\nAnn\nJune\nLouise\nPatsy\nPeggy\nAnna\nEva\nJuanita\nRosie\nRuby\nAmelia\nBessie\nCelia\nDoris\nEmma\nMercy\nPhyllis\nRosa\nAngelita\nArmida\nBernice\nBillie\nCharlotte\nMarilyn\nStella\nWanda\nBertha\nCarolyn\nIsabel\nMargarita\nMildred\nRita\nClara\nDelia\nGeraldine\nIda\nJessie\nJo\nJoanne\nLillian\nLillie\nMae\nOfelia\nOlga\nRachel\nAurora\nBonnie\nCecilia\nHortencia\nJanet\nLinda\nNora\nOlivia\nThelma\nTheresa\nAntonia\nEthel\nHazel\nKatherine\nLaura\nPat\nSadie\nAnnie\nCecelia\nEleanor\nElsie\nJennie\nMargie\nAlicia\nAngie\nCatherine\nConsuelo\nDarlene\nEdith\nElla\nJoann\nJosie\nLena\nLucille\nSandra\nViola\nAngelina\nArlene\nAudrey\nDella\nElaine\nElisa\nIrma\nJeanette\nKathleen\nMaxine\nMolly\nVera\nVictoria\nWilma\nAna\nBobbie\nDixie\nElena\nEsperanza\nFaye\nGeorgia\nHilda\nJanice\nJudith\nLola\nMarlene\nMinnie\nRebecca\nVivian\nYolanda\nAurelia\nBelia\nChristine\nDelfina\nDelores\nEileen\nEloise\nErlinda\nEstella\nEtta\nFlora\nFrancisca\nIsabelle\nJosefina\nKay\nLeonor\nLois\nLoretta\nLorraine\nMollie\nMyrna\nNatalia\nNina\nRosalie\nSara\nSophie\nTerry\nVelia\nAlma\nAnne\nAnnette\nAntoinette\nBette\nBlanche\nCharlene\nConcepcion\nConcha\nEllen\nElva\nEmily\nEnedina\nEvangelina\nEvangeline\nGlenda\nIla\nJacqueline\nJeanne\nJosefa\nJoy\nLaverne\nLeona\nLily\nMaggie\nNaomi\nOphelia\nPriscilla\nRoberta\nRosemary\nSue\nSusie\nViolet\nMary\nBetty\nShirley\nBarbara\nHelen\nAlice\nMargaret\nMaria\nFrances\nGloria\nPatricia\nDorothy\nVirginia\nIrene\nNancy\nCarmen\nCarol\nDonna\nMarilyn\nLucy\nDolores\nDora\nJoyce\nJosephine\nLouise\nRuth\nMarie\nPhyllis\nRose\nRosie\nBeverly\nEvelyn\nNorma\nSally\nPeggy\nRamona\nSylvia\nBillie\nEsther\nJo\nBertha\nJulia\nLupe\nRachel\nWanda\nAnna\nCarolyn\nJanet\nMartha\nOlga\nTeresa\nEva\nJoan\nAmelia\nClara\nDelia\nJuanita\nMarjorie\nPauline\nRosa\nAnn\nDoris\nNellie\nSarah\nThelma\nEleanor\nElizabeth\nEmma\nLillian\nPatsy\nRita\nAnnie\nElsie\nCharlotte\nConnie\nEdith\nGeraldine\nJean\nKatherine\nLoretta\nLydia\nMargie\nRuby\nSocorro\nAnita\nJane\nJanice\nJoanne\nVera\nJennie\nLois\nRoberta\nVivian\nYvonne\nBernice\nBessie\nGrace\nHazel\nMargarita\nMildred\nPaula\nSandra\nStella\nAlicia\nArmida\nKay\nLinda\nMae\nSusan\nVictoria\nCarole\nCecilia\nCharlene\nFlorence\nGeorgia\nIda\nIsabel\nJosie\nKathryn\nLaura\nLena\nNadine\nWilma\nAngelita\nAudrey\nBeatrice\nCaroline\nEdna\nGladys\nGuadalupe\nJessie\nJoy\nMarian\nMarlene\nOlivia\nPat\nSharon\nTheresa\nAngelina\nAurelia\nBlanche\nBonnie\nCecelia\nChristine\nDaisy\nElvira\nEmily\nErnestine\nFlora\nIrma\nLillie\nLorraine\nMinnie\nPatty\nRena\nVerna\nViola\nAntonia\nAurora\nBobbie\nCelia\nDella\nDiane\nEllen\nEthel\nGenevieve\nHortencia\nInez\nJune\nLeona\nMabel\nMaxine\nMyrtle\nVelia\nViolet\nAdelina\nAlma\nArlene\nCatherine\nConcha\nDelores\nElaine\nElla\nFrankie\nJudith\nKaren\nLilly\nLola\nMaggie\nMercedes\nRebecca\nSara\nSusie\nVelma\nAdela\nAna\nAngie\nBelen\nCarolina\nConsuelo\nElena\nEloisa\nEloise\nFaye\nJackie\nJanie\nJeanette\nJeanne\nJoann\nLily\nLucille\nLula\nMarcella\nMarcia\nMatilda\nMay\nNelda\nNona\nOphelia\nPetra\nRosalie\nRosemary\nRosita\nRuthie\nSadie\nSue\nTillie\nMary\nBetty\nBarbara\nShirley\nHelen\nVirginia\nFrances\nNancy\nAlice\nGloria\nMargaret\nPatricia\nMaria\nDorothy\nIrene\nCarmen\nMartha\nRose\nLydia\nCarol\nSally\nNorma\nSylvia\nDolores\nRuth\nJulia\nJosephine\nEsther\nJoyce\nDonna\nCarolyn\nConnie\nDora\nLupe\nNellie\nAnnie\nLucy\nPeggy\nRita\nAnita\nJuanita\nPhyllis\nStella\nDoris\nJean\nLoretta\nTeresa\nAnna\nBeverly\nJoan\nLouise\nMarilyn\nEvelyn\nPatsy\nRoberta\nCharlotte\nClara\nEva\nLois\nSocorro\nCecilia\nEleanor\nElizabeth\nJanet\nMarie\nVera\nEmma\nGeraldine\nGrace\nJane\nJanice\nJoann\nLillian\nPauline\nRachel\nSarah\nAnn\nIda\nJo\nJune\nRamona\nRosa\nAmelia\nBertha\nFlorence\nJudith\nRosie\nRuby\nSandra\nSharon\nThelma\nWanda\nAngie\nBessie\nEdna\nIsabel\nJoanne\nLorraine\nLucille\nMae\nOlga\nAgnes\nBernice\nEdith\nEllen\nGeorgia\nMargie\nMarian\nMarjorie\nMarlene\nAlicia\nDelia\nKay\nLaura\nLillie\nOlivia\nSara\nYvonne\nBeatrice\nBillie\nBonnie\nDella\nElaine\nElsie\nEstella\nGenevieve\nHazel\nIrma\nMercy\nPat\nRebecca\nSue\nSusie\nTheresa\nAlma\nCarole\nCelia\nJennie\nKatherine\nKathleen\nMildred\nRosemary\nVivian\nAlberta\nArlene\nArmida\nCruz\nElla\nEthel\nHenrietta\nHortencia\nJacqueline\nJessie\nKathryn\nLinda\nMaggie\nMatilda\nAngelita\nBobbie\nCaroline\nCatherine\nChristine\nDelores\nFlora\nHilda\nInez\nKaren\nLena\nMyrna\nOphelia\nPriscilla\nRena\nVelma\nAdelina\nAudrey\nCharlene\nDaisy\nDarlene\nDixie\nElena\nErlinda\nEsperanza\nEunice\nGlenna\nJeanne\nJosefina\nJoy\nLeona\nLilly\nMarylou\nMaxine\nNina\nNora\nOpal\nSusan\nSuzanne\nVelia\nVerna\nVictoria\nAlta\nAna\nAnnette\nAntonia\nBelia\nBeth\nClaudia\nConsuelo\nCynthia\nElvira\nGladys\nGuadalupe\nHortensia\nIva\nJanell\nJeanette\nJenny\nJerry\nLaverne\nLula\nMinnie\nMolly\nNaomi\nOfelia\nSadie\nViola\nViolet\nMary\nBetty\nBarbara\nHelen\nMargaret\nShirley\nFrances\nGloria\nPatricia\nVirginia\nAlice\nNancy\nDorothy\nRose\nCarol\nIrene\nMartha\nMaria\nCarolyn\nNellie\nNorma\nSally\nBeverly\nDolores\nElizabeth\nJoyce\nRuth\nAnna\nCarmen\nMarilyn\nSylvia\nAnnie\nPeggy\nRoberta\nWanda\nJuanita\nEmma\nJoan\nLucy\nAnita\nBertha\nDonna\nJosephine\nPatsy\nAmelia\nJanice\nMargie\nDoris\nEvelyn\nBonnie\nDora\nLoretta\nMildred\nSarah\nEsther\nJoann\nLouise\nLydia\nRuby\nClara\nEva\nIda\nLupe\nGrace\nIsabel\nJanet\nJean\nJo\nJulia\nLinda\nMarie\nRamona\nYvonne\nElsie\nJune\nKatherine\nMargarita\nRita\nStella\nCharlotte\nEleanor\nRachel\nSue\nAnn\nDarlene\nGeraldine\nMarjorie\nOlga\nOlivia\nSandra\nConnie\nJennie\nPauline\nPhyllis\nRosie\nVictoria\nBessie\nDiane\nEdith\nJane\nKaren\nLillian\nYolanda\nAlicia\nDelia\nErnestine\nJessie\nLaura\nLois\nMarlene\nMinnie\nTeresa\nArmida\nCarole\nCharlene\nEdna\nElvira\nJoanne\nLena\nLillie\nSharon\nSocorro\nVivian\nCelia\nChristine\nElla\nGenevieve\nJudy\nLorraine\nPat\nRosa\nVerna\nAngie\nBeatrice\nEllen\nEsperanza\nIrma\nJackie\nKathleen\nKay\nLucille\nRosalie\nViola\nArlene\nAurora\nCatherine\nCecilia\nClaudia\nDixie\nGlenda\nGuadalupe\nJacqueline\nJeanette\nMyrna\nPaula\nSusan\nAgnes\nAndrea\nAngelita\nBillie\nDeanna\nDelores\nElaine\nEloisa\nEstella\nGeneva\nJoy\nMae\nMarylou\nSara\nThelma\nVelia\nWilma\nAnne\nBernice\nBobbie\nDiana\nEloise\nEvangeline\nFlorence\nHarriet\nJenny\nJosie\nJudith\nKathryn\nManuela\nMarian\nMaxine\nMelba\nNadine\nOfelia\nOphelia\nSheila\nSusie\nTerry\nVelma\nAdelina\nAlma\nAngelina\nAntonia\nBetsy\nDella\nFaye\nFlora\nGeorgia\nGwendolyn\nHazel\nLaverne\nLidia\nLilly\nMona\nPetra\nRebecca\nRosemary\nSadie\nTheresa\nToni\nViolet\nAda\nAlberta\nAngela\nAnnette\nCecelia\nChristina\nColleen\nCora\nElva\nEmilia\nEmily\nErnestina\nEstela\nEthel\nFrancisca\nFrankie\nGertrude\nHerminia\nInez\nJody\nLila\nLola\nMaggie\nMarion\nMercy\nMolly\nNatalia\nNora\nTillie\nMary\nBarbara\nBetty\nPatricia\nAlice\nFrances\nMargaret\nShirley\nHelen\nNancy\nVirginia\nDorothy\nGloria\nIrene\nMaria\nBeverly\nCarol\nSylvia\nMartha\nCarmen\nRose\nSally\nNorma\nDonna\nRuth\nDolores\nJosephine\nJoyce\nSharon\nElizabeth\nEvelyn\nJuanita\nMarie\nCarolyn\nWanda\nDarlene\nLinda\nEsther\nJoan\nJudy\nJulia\nLupe\nMarilyn\nNellie\nPat\nRita\nSandra\nDora\nDoris\nJanice\nJudith\nKaren\nOlga\nPeggy\nRachel\nBertha\nLydia\nJanet\nMargie\nPatsy\nPhyllis\nIsabel\nLouise\nAnnie\nCharlotte\nJane\nLucy\nMarjorie\nStella\nTeresa\nConnie\nMaxine\nRosie\nBeatrice\nElsie\nJean\nJo\nRosalie\nSocorro\nAnita\nEleanor\nGrace\nJennie\nKay\nLoretta\nRamona\nAngie\nBonnie\nCecilia\nEthel\nLillian\nAmelia\nAurora\nDelia\nEmma\nKathleen\nLillie\nMargarita\nPauline\nRebecca\nSarah\nSusan\nVera\nAlicia\nAlma\nArmida\nBillie\nCarole\nCecelia\nGenevieve\nJoanne\nKatherine\nLena\nLois\nMarlene\nRosa\nYolanda\nYvonne\nAngelina\nAnn\nAnna\nBernice\nCatherine\nCelia\nCharlene\nDeanna\nEdna\nEva\nGeorgia\nMildred\nOlivia\nRoberta\nClara\nDelores\nElla\nEllen\nErnestine\nFlorence\nJoann\nJoy\nKathryn\nMae\nPriscilla\nRuby\nSue\nWilma\nEdith\nElaine\nEmily\nHazel\nHenrietta\nIrma\nJessie\nJosie\nLorraine\nVelia\nVerna\nVivian\nAudrey\nBobbie\nChristine\nIda\nMarylou\nMyrna\nNora\nThelma\nVictoria\nAnne\nDella\nDiane\nDixie\nErma\nGlenda\nJackie\nJeanette\nJenny\nLaura\nLily\nLucille\nMarian\nMolly\nNina\nOfelia\nTheresa\nAngela\nBeth\nCora\nCynthia\nDaisy\nElsa\nErnestina\nFlora\nGeneva\nGuadalupe\nHilda\nJune\nLeona\nManuela\nSadie\nSonja\nSusie\nVelma\nAida\nAlberta\nAngelita\nBessie\nCaroline\nConsuelo\nDiana\nElvira\nEtta\nGayle\nGeraldine\nGlenna\nJacqueline\nLenore\nLilly\nLucia\nMaggie\nNadine\nOphelia\nPaula\nRomelia\nSuzanne\nAdela\nArtemisa\nBelen\nBeulah\nCarmelita\nClaudia\nCruz\nElena\nElisa\nElvia\nErlinda\nEunice\nGail\nGwen\nGwendolyn\nHortencia\nInez\nJeannette\nJuana\nKatie\nLola\nMadeline\nMickey\nMinnie\nMyrtle\nNaomi\nPearl\nPetra\nRosemary\nSheila\nTillie\nTommie\nMary\nBarbara\nBetty\nAlice\nPatricia\nMargaret\nMaria\nCarol\nHelen\nNancy\nFrances\nGloria\nIrene\nShirley\nCarmen\nVirginia\nDorothy\nLinda\nSandra\nDolores\nRuth\nSylvia\nNorma\nSharon\nCarolyn\nMartha\nPatsy\nRose\nMarilyn\nJosephine\nNellie\nDonna\nMarie\nWanda\nJanet\nJoyce\nPhyllis\nJuanita\nLupe\nJudy\nLucy\nEvelyn\nJudith\nBeverly\nCharlotte\nAnnie\nElizabeth\nJean\nJoan\nRosie\nAnita\nAnn\nEsther\nPeggy\nConnie\nRachel\nRoberta\nStella\nCecilia\nSally\nAnna\nLydia\nRita\nDora\nEmma\nJo\nKaren\nCarole\nDoris\nEleanor\nLouise\nOlga\nRosalie\nClara\nClaudia\nElsie\nJanice\nRosa\nRuby\nSarah\nSusan\nBeatrice\nBillie\nBonnie\nDarlene\nDiane\nElaine\nKatherine\nLaura\nMarjorie\nThelma\nAmelia\nEva\nGeraldine\nLillian\nMarlene\nOlivia\nPauline\nPriscilla\nIrma\nLoretta\nPat\nVera\nYolanda\nAngelita\nDelia\nJulia\nLois\nMargie\nMildred\nRamona\nAngelina\nChristine\nGrace\nKathleen\nLorraine\nMargarita\nMaxine\nOfelia\nRebecca\nSue\nTheresa\nViola\nArmida\nBertha\nEdna\nEllen\nGlenda\nIsabel\nMarylou\nRosemary\nSusie\nWilma\nAnne\nCatherine\nEthel\nJane\nMyrna\nYvonne\nAudrey\nCharlene\nDiana\nEstella\nFlorence\nIda\nJeanette\nJennie\nJessie\nLaverne\nMarion\nNaomi\nNora\nTeresa\nVelia\nAlta\nCecelia\nCelia\nDelores\nElla\nEmily\nErnestine\nLena\nLynda\nMarian\nMolly\nSadie\nSherry\nSocorro\nAgnes\nAlberta\nAngie\nCarolina\nElva\nElvira\nGuadalupe\nHortencia\nJackie\nJosie\nJune\nKathryn\nKay\nLeona\nLillie\nLola\nMercy\nVelma\nVivian\nAlicia\nAlma\nArlene\nAurora\nBessie\nBrenda\nCaroline\nDeanna\nDella\nDixie\nEdith\nGail\nGenevieve\nGeorgia\nGladys\nJoann\nJoy\nMaggie\nMarcia\nPatty\nRosemarie\nSuzanne\nVictoria\nAndrea\nAngela\nAnnette\nAntonia\nBelia\nBernice\nErlinda\nEvangeline\nFrancisca\nHazel\nJeannette\nJoanne\nJulie\nLucille\nLynn\nLynne\nMadeline\nMae\nManuela\nMaryhelen\nMinnie\nPaula\nPearl\nRegina\nSara\nSonja\nTerry\nToni\nVerna\nViolet\nMary\nBarbara\nBetty\nPatricia\nLinda\nMargaret\nCarol\nHelen\nAlice\nFrances\nGloria\nNancy\nVirginia\nShirley\nJudith\nSharon\nDorothy\nMaria\nMartha\nRose\nSandra\nIrene\nCarolyn\nSylvia\nCarmen\nJoyce\nNorma\nSally\nJudy\nLydia\nRuth\nMarie\nElizabeth\nDolores\nEvelyn\nBeverly\nEsther\nAnita\nLucy\nPatsy\nPhyllis\nJanice\nLupe\nPeggy\nRita\nJosephine\nAnna\nMarilyn\nNellie\nWanda\nLouise\nDoris\nCecilia\nDonna\nJulia\nConnie\nRosa\nElla\nJo\nKaren\nRachel\nSusan\nCharlotte\nDora\nJoan\nAnn\nBillie\nJane\nKatherine\nOlga\nRosie\nSarah\nStella\nBertha\nBonnie\nEva\nJean\nJoann\nJuanita\nEleanor\nJessie\nMargie\nChristine\nGrace\nJanet\nRamona\nAngie\nGeraldine\nJosie\nLois\nOlivia\nYvonne\nAnnie\nCharlene\nJennie\nMyrna\nPauline\nRebecca\nSue\nTeresa\nVivian\nCarole\nEvangeline\nFlorence\nIda\nJune\nKathleen\nLoretta\nMarjorie\nMildred\nRuby\nWilma\nAntonia\nBeatrice\nBrenda\nClara\nDarlene\nEmma\nGeorgia\nGlenda\nLillian\nPat\nRoberta\nSara\nSherry\nArlene\nCatherine\nIrma\nMinnie\nThelma\nVera\nVicki\nYolanda\nAlicia\nAlma\nAndrea\nEdith\nEdna\nIsabel\nKathryn\nMargarita\nPaula\nRosalie\nTheresa\nBernice\nBessie\nChristina\nDiane\nElaine\nGuadalupe\nLena\nLorraine\nMarlene\nPriscilla\nSheila\nTerry\nVictoria\nEmily\nGenevieve\nHortensia\nJeannette\nKay\nLaura\nMarian\nMercy\nOfelia\nPearl\nVerna\nAngelita\nAnne\nAnnette\nClaudia\nColleen\nConcha\nCora\nEllen\nErlinda\nErnestina\nFlora\nGlenna\nHazel\nHenrietta\nJacqueline\nJerry\nJoanne\nLillie\nMaxine\nNadine\nNaomi\nSocorro\nSusie\nViola\nAdelina\nAdeline\nAmelia\nAurora\nBelia\nBeulah\nBobbie\nCarmelita\nCaroline\nCelia\nConsuelo\nDeanna\nDelia\nDiana\nDianne\nDixie\nDolly\nEstella\nGail\nJoy\nJuana\nJulie\nLola\nLynn\nMadeline\nMarion\nViolet\nAgnes\nAlta\nAngelina\nArmida\nAurelia\nBetsy\nDella\nDelores\nElsie\nElvira\nErma\nGayle\nGeneva\nGladys\nHortencia\nIris\nJosefina\nLeona\nLorena\nLucille\nLynda\nMabel\nMarguerite\nMarsha\nMarylou\nMolly\nMona\nMyrtle\nNettie\nNora\nPetra\nVelia\nVelma\nVicky\nWilla\nMary\nBarbara\nBetty\nLinda\nPatricia\nGloria\nMargaret\nAlice\nSandra\nNancy\nFrances\nVirginia\nDorothy\nHelen\nShirley\nIrene\nCarolyn\nSharon\nCarmen\nNorma\nMaria\nMartha\nCarol\nJoyce\nJudith\nJudy\nDonna\nSylvia\nMarie\nRose\nSally\nRuth\nDolores\nWanda\nBeverly\nEsther\nElizabeth\nJosephine\nCecilia\nJanice\nKaren\nJanet\nSusan\nAnita\nAnn\nJoan\nBonnie\nStella\nBrenda\nConnie\nLouise\nLydia\nOlivia\nPeggy\nDora\nLois\nNellie\nPatsy\nAnnie\nDoris\nMarilyn\nMarjorie\nAnna\nJuanita\nJulia\nLoretta\nRita\nSarah\nBeatrice\nClara\nEvelyn\nJean\nPhyllis\nRamona\nBertha\nEdith\nLupe\nRosie\nRuby\nBillie\nJennie\nJo\nLucy\nRoberta\nYolanda\nDiane\nJoann\nKathleen\nLaura\nLynda\nOlga\nRachel\nSuzanne\nDiana\nEdna\nJeanette\nJessie\nLillian\nLorraine\nEleanor\nElla\nEmma\nIda\nJosie\nKatherine\nMae\nMargie\nMaxine\nRebecca\nTeresa\nCarole\nCatherine\nCharlene\nCharlotte\nElaine\nGeorgia\nJoanne\nPauline\nRosa\nBessie\nDeanna\nDelia\nEllen\nEva\nGlenda\nGrace\nGuadalupe\nHenrietta\nJane\nKay\nPat\nRosemary\nSherry\nSocorro\nVelma\nVictoria\nChristine\nHazel\nJulie\nThelma\nCaroline\nGeraldine\nKathryn\nLola\nMargarita\nMildred\nMyrna\nPearl\nPriscilla\nSue\nAmelia\nAngie\nArlene\nArmida\nBernice\nBobbie\nCelia\nElvira\nEmily\nErlinda\nEthel\nFlorence\nGladys\nLucille\nNora\nVivian\nAlberta\nAlicia\nAlma\nAurora\nDarlene\nDelores\nErma\nIrma\nJacqueline\nLena\nPaula\nRosalie\nViola\nAgnes\nAnne\nClaudia\nElsie\nErnestine\nEstella\nHortencia\nJenny\nJoy\nJune\nLillie\nLily\nMolly\nPamela\nPatty\nSusie\nTheresa\nVera\nWilma\nAngelina\nAnnette\nBettie\nCecelia\nConstance\nConsuelo\nDella\nElsa\nEsperanza\nFannie\nFlora\nFrieda\nGail\nGayle\nIsabel\nJeannie\nJohnnie\nLeona\nMarcia\nMarylou\nMinnie\nNona\nOfelia\nRena\nVerna\nAlta\nAndrea\nAngela\nAngelita\nAntonia\nArtemisa\nAudrey\nCynthia\nDixie\nElva\nEunice\nEvangeline\nFreda\nGeneva\nGenevieve\nHope\nJackie\nJovita\nJudie\nLaverne\nLee\nLorene\nLucia\nMadeline\nMarcella\nMarian\nMarlene\nMelba\nMercy\nMyrtle\nNadine\nRegina\nRuthie\nSadie\nSandy\nTerry\nWillie\nMary\nBarbara\nBetty\nLinda\nPatricia\nSharon\nGloria\nHelen\nVirginia\nNancy\nCarol\nSandra\nShirley\nMargaret\nJudy\nMaria\nAlice\nCarolyn\nFrances\nMartha\nJoyce\nJudith\nSylvia\nDorothy\nNorma\nIrene\nRose\nKaren\nDonna\nPeggy\nLouise\nCarmen\nMarilyn\nJosephine\nSally\nDolores\nJo\nOlivia\nElizabeth\nJanice\nBeverly\nJuanita\nSusan\nMarie\nPatsy\nRita\nRoberta\nLois\nBonnie\nEvelyn\nDoris\nJanet\nRuth\nCarole\nEva\nSarah\nCharlotte\nLupe\nRosie\nAnita\nAnna\nBertha\nCecilia\nEsther\nJulia\nLucy\nPhyllis\nRamona\nNellie\nAnn\nRosa\nCatherine\nJoan\nYolanda\nConnie\nKathleen\nMildred\nPat\nStella\nDarlene\nDiane\nGeorgia\nJean\nKatherine\nLoretta\nRebecca\nBrenda\nLillian\nPauline\nTeresa\nAnnie\nBeatrice\nCharlene\nEdna\nElsie\nGeraldine\nGlenda\nIda\nJessie\nLorraine\nMargie\nRosemary\nSocorro\nWanda\nDora\nGrace\nJosie\nLydia\nMargarita\nMarlene\nOlga\nSherry\nBessie\nClaudia\nJoann\nJoanne\nLaura\nLillie\nLynda\nRosalie\nRuby\nEleanor\nGenevieve\nIrma\nKay\nMae\nMarjorie\nPriscilla\nSue\nVelma\nWilma\nAngie\nArlene\nArmida\nClara\nDelia\nDiana\nElla\nEmma\nRachel\nSheila\nAntonia\nBillie\nCaroline\nElaine\nEmily\nJennie\nMaxine\nVictoria\nAngelita\nCynthia\nEdith\nEthel\nGladys\nIsabel\nMercy\nPamela\nPaula\nPenny\nThelma\nTheresa\nYvonne\nEllen\nGuadalupe\nJacqueline\nJane\nJeanette\nKathy\nLena\nVera\nAnne\nAudrey\nCelia\nChristine\nConsuelo\nElvira\nFlora\nGail\nHazel\nJulie\nKathryn\nLilly\nMaggie\nNora\nSadie\nSharron\nSusie\nTerry\nVicki\nBernice\nCecelia\nDelores\nDixie\nFaye\nJenny\nMarcia\nMarsha\nMinnie\nMyrna\nNaomi\nSuzanne\nAlta\nBobbie\nCarla\nErlinda\nErnestine\nGayle\nLenora\nLeona\nLynn\nMarian\nMarion\nNina\nRegina\nTillie\nVeronica\nAida\nAlicia\nAlma\nAngelina\nCora\nDella\nErma\nGlenna\nHarriet\nHenrietta\nHerlinda\nJackie\nLana\nLorna\nMabel\nMadeline\nMarla\nMarylou\nMelinda\nSara\nVickie\nVivian\nAlberta\nAnnette\nAurora\nChristina\nConstance\nCruz\nDianna\nDianne\nElisa\nEloise\nEsperanza\nEvangeline\nFannie\nFlorence\nInez\nJanie\nJeanne\nJune\nLaverne\nLela\nLoraine\nLou\nLucia\nLucille\nLupita\nLynne\nMiriam\nMolly\nMyrtle\nNola\nOfelia\nOphelia\nPetra\nRosario\nSondra\nTommie\nVerna\nViola\nViolet\nMary\nBarbara\nLinda\nPatricia\nSharon\nBetty\nSandra\nGloria\nCarol\nMargaret\nFrances\nShirley\nCarolyn\nKaren\nVirginia\nAlice\nHelen\nNancy\nJudy\nMartha\nMaria\nSusan\nDonna\nJoyce\nIrene\nJudith\nCarmen\nDorothy\nSylvia\nCecilia\nElizabeth\nNorma\nRose\nJanice\nDolores\nRuth\nConnie\nDiane\nSally\nBeverly\nJanet\nPhyllis\nAnnie\nMarie\nKathleen\nAnn\nLois\nLouise\nPatsy\nAnita\nCharlotte\nAnna\nJo\nWanda\nDoris\nEsther\nEvelyn\nJosephine\nMarilyn\nGrace\nLupe\nPeggy\nYolanda\nBertha\nBrenda\nPamela\nJane\nLucy\nRebecca\nBonnie\nMargie\nOlga\nDiana\nGeraldine\nTeresa\nDora\nJessie\nLoretta\nPauline\nRita\nRosemary\nRosie\nCarole\nLillian\nMargarita\nOlivia\nRoberta\nChristine\nElaine\nMarjorie\nSarah\nSue\nAngie\nArlene\nCheryl\nElla\nJacqueline\nJoan\nJune\nLaura\nRamona\nLydia\nNellie\nRuby\nVictoria\nVivian\nDeanna\nIrma\nJean\nJoanne\nJosie\nKatherine\nKathryn\nKay\nRachel\nSherry\nWilma\nClara\nDianne\nEva\nIda\nIsabel\nJennie\nJuanita\nJulia\nVicki\nDelia\nGladys\nLillie\nLorraine\nPaula\nPriscilla\nRosalie\nStella\nDarlene\nEdna\nEleanor\nEsperanza\nGeorgia\nJoann\nLynda\nMaxine\nAngelina\nBeatrice\nBobbie\nElena\nEmma\nGuadalupe\nHazel\nJeanette\nMarsha\nMildred\nRosa\nSheila\nAlma\nAntonia\nBernice\nCaroline\nCelia\nCharlene\nElsie\nGlenda\nMarcia\nAngelita\nGail\nLena\nLucille\nMarcella\nMarlene\nMaryann\nMolly\nNora\nPat\nSara\nSuzanne\nTerry\nTheresa\nVera\nAlicia\nAnne\nConsuelo\nGeneva\nGenevieve\nGwendolyn\nHenrietta\nJackie\nLucinda\nMercy\nViolet\nYvonne\nAmelia\nArmida\nBecky\nBessie\nCecelia\nClaudia\nCynthia\nDella\nEileen\nFlorence\nHarriet\nInez\nJenny\nJoy\nKathy\nManuela\nNaomi\nRena\nSocorro\nSusie\nAndrea\nAurora\nCatherine\nEdith\nEllen\nEloise\nElva\nEmily\nErnestine\nFrankie\nLeona\nLeslie\nMae\nMaureen\nMercedes\nMyrna\nPearl\nSadie\nThelma\nToni\nVerna\nAlta\nAna\nDixie\nDolly\nElvira\nErma\nEthel\nFlora\nHilda\nJan\nJerry\nJulie\nMaggie\nMarian\nMarion\nMinnie\nNina\nRosemarie\nRosita\nTillie\nAmy\nAngela\nBeth\nBillie\nCarmelita\nCatalina\nDaisy\nDelores\nDianna\nEffie\nErlinda\nErnestina\nEstella\nEvangeline\nFay\nFrancis\nFrancisca\nJanie\nJeannette\nJudie\nLeah\nLily\nLorene\nLupita\nLynne\nMabel\nMarylou\nMichael\nMillie\nNadine\nPatty\nPenelope\nSallie\nTrudy\nValerie\nVeronica\nViola\nMary\nBarbara\nLinda\nPatricia\nMargaret\nCarol\nSandra\nSharon\nJudy\nGloria\nBetty\nNancy\nFrances\nShirley\nMaria\nJudith\nKaren\nCarolyn\nSusan\nVirginia\nMartha\nAlice\nDonna\nHelen\nIrene\nDorothy\nNorma\nElizabeth\nMarie\nSylvia\nBonnie\nConnie\nCarmen\nCheryl\nJoyce\nJosephine\nSally\nBeverly\nPamela\nPatsy\nRose\nCarole\nJanet\nKathleen\nMarilyn\nRuth\nJo\nAnna\nCharlotte\nJoan\nLupe\nYolanda\nBrenda\nEsther\nJanice\nDiane\nDolores\nGrace\nJulia\nAnn\nLouise\nEvelyn\nPeggy\nOlivia\nJosie\nLydia\nLorraine\nNellie\nRosie\nSue\nBertha\nCatherine\nCecilia\nJane\nKatherine\nRita\nDiana\nGeraldine\nJean\nPhyllis\nJuanita\nMargarita\nSusie\nWanda\nAnita\nDoris\nMargie\nSherry\nToni\nVictoria\nArlene\nIda\nMarsha\nRosa\nSarah\nBobbie\nRachel\nStella\nTeresa\nChristine\nElla\nJoann\nKathryn\nLucy\nPauline\nRebecca\nRoberta\nDella\nDianne\nGeorgia\nLynda\nRuby\nBernice\nBillie\nDarlene\nDora\nGlenda\nGuadalupe\nKay\nLaura\nPat\nRamona\nSheila\nTerry\nAlicia\nClara\nConsuelo\nDelia\nEleanor\nIrma\nJeanette\nJessie\nJulie\nLillian\nLois\nLoretta\nMarjorie\nOlga\nPaula\nRosemary\nAnnie\nDeanna\nDelores\nEdna\nEllen\nEmma\nGail\nMarlene\nSocorro\nVeronica\nVivian\nAngie\nBeatrice\nCharlene\nIsabel\nJoanne\nLucille\nMaggie\nMarian\nMildred\nNaomi\nNora\nSuzanne\nWilma\nAntonia\nDianna\nElaine\nEstella\nJackie\nJacqueline\nJennie\nJenny\nLily\nLynn\nMae\nVicki\nArmida\nClaudia\nElsie\nErnestine\nEva\nHilda\nInez\nJeanne\nJeannette\nLena\nLeslie\nLillie\nMarcia\nPenny\nPriscilla\nThelma\nVera\nAlma\nAndrea\nAngelina\nAngelita\nAnne\nCelia\nCruz\nDaisy\nElvira\nGenevieve\nHortensia\nJudi\nManuela\nMarcella\nMarylou\nNina\nSadie\nSara\nVerna\nAmelia\nAngela\nAudrey\nCecelia\nErnestina\nEthel\nFlorence\nHope\nJan\nJennifer\nJoy\nKathy\nLeona\nLula\nMadeline\nMarion\nMaureen\nMelva\nMichele\nSaundra\nYvonne\nAgnes\nBessie\nBeth\nConstance\nDana\nDona\nEdith\nEileen\nEsperanza\nEunice\nEvangeline\nGayle\nGinger\nGladys\nJanie\nJune\nMabel\nMaryann\nMinnie\nMonica\nNona\nPatty\nRosalie\nSandy\nTheresa\nTrudy\nVickie\nAda\nAurora\nBecky\nCaroline\nChristina\nDeborah\nDixie\nElena\nElva\nErlinda\nFaye\nGeneva\nGlenna\nHenrietta\nHortencia\nIris\nJoanna\nJuana\nLana\nLola\nLucia\nLupita\nMarla\nMaryellen\nMercy\nMerle\nMyrna\nOfelia\nPam\nRobin\nVelma\nVicky\nMary\nLinda\nBarbara\nPatricia\nSharon\nCarol\nSandra\nGloria\nMargaret\nNancy\nJudy\nBetty\nDonna\nMaria\nShirley\nSusan\nKaren\nVirginia\nCarolyn\nAlice\nJudith\nSylvia\nJoyce\nFrances\nMartha\nIrene\nDorothy\nJanet\nJanice\nMarilyn\nRose\nHelen\nYolanda\nElizabeth\nKathleen\nMarie\nConnie\nCarmen\nCheryl\nDiana\nDolores\nSally\nBeverly\nLydia\nDiane\nPamela\nPeggy\nNorma\nAnn\nAnna\nJuanita\nLupe\nBrenda\nKatherine\nRita\nRuth\nPhyllis\nVictoria\nEsther\nKathryn\nPatsy\nAnita\nBonnie\nCecilia\nElaine\nElla\nGeraldine\nJean\nJosephine\nLucy\nCharlotte\nEvelyn\nRosie\nJoan\nJulia\nAnnie\nVicki\nWanda\nBeatrice\nCharlene\nDoris\nJane\nLorraine\nMargie\nRuby\nChristine\nLaura\nLouise\nPauline\nRebecca\nSusie\nTeresa\nCarole\nDianne\nEllen\nGeorgia\nJeanne\nPaula\nRoberta\nRosa\nStella\nVivian\nCatherine\nJo\nRachel\nSherry\nTerry\nGrace\nJoann\nLois\nMarjorie\nRamona\nEva\nJennie\nLena\nLoretta\nOlivia\nSarah\nSue\nTheresa\nArlene\nClaudia\nDora\nGuadalupe\nLucille\nMarcia\nMarian\nNellie\nPriscilla\nAngie\nAntonia\nBertha\nElsie\nElvira\nEmma\nIda\nKay\nMarsha\nRosemary\nSheila\nBessie\nEdith\nErlinda\nFlorence\nGail\nGlenda\nJessie\nMildred\nThelma\nAnne\nDarlene\nEileen\nEmily\nJanie\nJeanette\nJoanne\nJoy\nKathy\nLillian\nLynn\nMarlene\nPat\nSara\nSocorro\nWilma\nArmida\nBillie\nCathy\nCecelia\nDeanna\nDelores\nEnedina\nIsabel\nLeona\nLynda\nMae\nMaxine\nMercy\nRosalie\nRosita\nAngelita\nCelia\nCynthia\nEdna\nEleanor\nGenevieve\nJackie\nJenny\nLillie\nMarcella\nMargarita\nMarion\nMinnie\nNina\nPatti\nPetra\nSuzanne\nValerie\nVera\nVickie\nViola\nYvonne\nAdela\nAlberta\nAlma\nAndrea\nChristina\nClara\nDaisy\nErnestine\nEsperanza\nFrankie\nHarriet\nIrma\nJacqueline\nJan\nJennifer\nJosie\nJulie\nJune\nLucinda\nMarylou\nMyrna\nNadine\nOlga\nPenny\nPolly\nSadie\nVeronica\nAlicia\nAmelia\nAna\nBernice\nBlanca\nDella\nDixie\nFrancine\nLeslie\nLorna\nMalinda\nNelda\nPatty\nSandy\nSondra\nTrudy\nViolet\nZonnie\nAdelina\nAngela\nBette\nCarla\nConstance\nDelfina\nDelia\nDianna\nElena\nElouise\nEstella\nEunice\nHilda\nJanis\nMichelle\nMonica\nNaomi\nNora\nRena\nRobin\nRosemarie\nSonja\nTerri\nToni\nMary\nLinda\nBarbara\nPatricia\nSandra\nCarol\nSharon\nGloria\nSusan\nMargaret\nBetty\nMaria\nKaren\nNancy\nFrances\nVirginia\nJudy\nCarolyn\nShirley\nAlice\nDonna\nYolanda\nMartha\nHelen\nJudith\nSally\nConnie\nDorothy\nKathleen\nIrene\nSylvia\nCheryl\nDiana\nElizabeth\nJanice\nRose\nRuth\nBeverly\nMarilyn\nDiane\nJoyce\nCarmen\nBonnie\nJanet\nPamela\nRita\nNorma\nBrenda\nCharlotte\nEsther\nAnita\nEvelyn\nJo\nLupe\nMarie\nLorraine\nLouise\nMargie\nPatsy\nDolores\nJean\nPeggy\nPhyllis\nRebecca\nSherry\nAnna\nKay\nLaura\nSarah\nCecilia\nJuanita\nKatherine\nOlivia\nStella\nSusie\nAnn\nElsie\nEva\nJosephine\nKathryn\nPauline\nRamona\nVicki\nCatherine\nJane\nLynda\nRuby\nChristine\nCynthia\nGuadalupe\nJulia\nNellie\nPaula\nRosa\nRosemary\nRosie\nLucy\nLydia\nMarsha\nOlga\nWanda\nAnne\nLois\nArlene\nCarole\nJacqueline\nLillie\nRoberta\nSuzanne\nBertha\nDarlene\nGrace\nJoan\nMarjorie\nTeresa\nCharlene\nClara\nDella\nEleanor\nGeorgia\nDoris\nIsabel\nJeanne\nJessie\nKathy\nTerry\nTheresa\nBillie\nChristina\nDelia\nDora\nEdna\nElaine\nJennie\nJoann\nJulie\nPat\nRachel\nSheila\nYvonne\nAnnie\nBeatrice\nEllen\nLoretta\nToni\nClaudia\nGayle\nJackie\nJosie\nMargarita\nVera\nVictoria\nAndrea\nBessie\nCecelia\nDianne\nEileen\nEmma\nIrma\nJennifer\nLucille\nRosalie\nSue\nAngie\nCaroline\nCathy\nGail\nGeraldine\nJan\nJenny\nJune\nLena\nMolly\nNaomi\nStephanie\nAlicia\nAngelita\nDelores\nEdith\nEthel\nFlora\nJeannie\nLeona\nLillian\nPaulette\nPolly\nSheryl\nVivian\nAdelina\nCarla\nEmily\nErlinda\nErma\nJanis\nJoanne\nMarlene\nMildred\nVerna\nViola\nWilma\nAlberta\nArmida\nBernice\nDenise\nElla\nEloise\nGenevieve\nGinger\nHarriet\nHazel\nJeanette\nMarcia\nMinnie\nPenny\nRena\nSharron\nAntonia\nDana\nFlorence\nGlenda\nInez\nLana\nLeslie\nMarian\nMarylou\nMaureen\nMaxine\nMichele\nNina\nNora\nSara\nSherri\nAdela\nAgnes\nAlta\nAngela\nAngelina\nAnnette\nApril\nBeatriz\nBette\nBobbie\nCandy\nCarmelita\nCarrie\nCelia\nCora\nDianna\nElena\nEstella\nEtta\nFaye\nFrancisca\nGlenna\nGwendolyn\nIda\nJeannette\nMarcella\nMelody\nPenelope\nPriscilla\nRegina\nRhonda\nRosita\nSocorro\nViolet\nAlma\nAna\nBecky\nBonita\nCindy\nDaisy\nDale\nDixie\nElva\nEvangelina\nEvangeline\nHope\nIva\nJohnnie\nJudi\nLorena\nLou\nLucia\nLucinda\nLynn\nMadeline\nMae\nMalinda\nMelinda\nMercedes\nPatty\nPearl\nPhoebe\nRosario\nSandy\nVelma\nVeronica\nVickie\nLinda\nMary\nPatricia\nBarbara\nGloria\nSandra\nSharon\nSusan\nNancy\nMargaret\nCarol\nBetty\nKaren\nFrances\nDonna\nMaria\nShirley\nAlice\nKathleen\nVirginia\nCarolyn\nSylvia\nJanice\nJudith\nMartha\nYolanda\nRose\nJudy\nCheryl\nIrene\nDiane\nCarmen\nPamela\nJanet\nBeverly\nMarilyn\nHelen\nDorothy\nNorma\nSally\nJoyce\nPeggy\nBrenda\nConnie\nElizabeth\nRuth\nEvelyn\nRebecca\nCynthia\nPhyllis\nRosa\nGuadalupe\nDolores\nEsther\nJane\nRita\nSherry\nMarie\nRoberta\nCecilia\nDiana\nJuanita\nCatherine\nMarsha\nAnita\nJean\nJo\nAnna\nTeresa\nCharlotte\nChristine\nLaura\nLupe\nLydia\nLillian\nVicki\nWanda\nAnn\nJoan\nKathryn\nLorraine\nPaula\nRosemary\nCharlene\nDeborah\nJosephine\nKatherine\nKathy\nStella\nAnne\nClaudia\nDoris\nEleanor\nPauline\nRosie\nBonnie\nDarlene\nGrace\nLouise\nMarjorie\nNellie\nOlivia\nSue\nVictoria\nBessie\nElla\nJulia\nLynda\nRachel\nKay\nPatsy\nPriscilla\nDelores\nDora\nJoann\nLynn\nSheila\nSusie\nSuzanne\nTerry\nToni\nBeatrice\nBertha\nChristina\nEdith\nEva\nLucy\nMargie\nOlga\nRamona\nSarah\nTheresa\nArlene\nDelia\nIsabel\nLoretta\nRuby\nElaine\nGlenda\nLois\nVeronica\nVivian\nEdna\nJacqueline\nLeslie\nVerna\nYvonne\nAnnie\nDeanna\nGeorgia\nGeraldine\nJennie\nJessie\nJosie\nMarlene\nPat\nThelma\nAngie\nBobbie\nEllen\nIda\nMarcia\nMargarita\nSara\nAnnette\nBernice\nCarole\nConstance\nElsie\nGail\nIrma\nJanis\nJoanne\nRosalie\nVera\nArmida\nCecelia\nEmma\nJoy\nJulie\nMaxine\nPatty\nPaulette\nVickie\nViola\nBernadette\nBillie\nCarla\nCaroline\nCathy\nDianne\nEileen\nGwendolyn\nJeanette\nMaureen\nMichele\nMildred\nMyra\nSocorro\nStephanie\nAlberta\nAngela\nAngelina\nAntonia\nClara\nDenise\nErnestina\nGladys\nGlenna\nJacque\nJan\nJanie\nJenny\nJune\nLucille\nMae\nMarcella\nMarla\nRosita\nSadie\nAlma\nCindy\nDaisy\nDella\nDixie\nElva\nEmily\nErlinda\nErma\nEthel\nGeneva\nJeanne\nJennifer\nLena\nMaggie\nNadine\nNina\nOfelia\nPenny\nSallie\nSheryl\nWilma\nAndrea\nAurora\nBetsy\nDebbie\nDianna\nGayle\nHarriet\nHazel\nJill\nJudi\nLaverne\nMaryann\nMinnie\nMolly\nNora\nTerri\nAdela\nAdelina\nAlicia\nAmanda\nAngelita\nAudrey\nBecky\nBette\nCarolina\nCheri\nCora\nDebra\nDona\nEvangelina\nFaye\nFlorence\nJewel\nLee\nLillie\nMarian\nMarion\nMercy\nMyrna\nPetra\nRosemarie\nSherrie\nValerie\nVicky\nViolet\nAmelia\nCandace\nCarrie\nClaudette\nConsuelo\nCruz\nElisa\nElouise\nElvia\nEstella\nEunice\nFrancis\nGenevieve\nHenrietta\nJackie\nJeannie\nLaurel\nLita\nLouella\nLupita\nLynne\nMalinda\nMelba\nMichelle\nNelda\nPearl\nPenelope\nRegina\nRena\nRobin\nSharron\nTrudy\nVelma\nLinda\nMary\nBarbara\nPatricia\nSusan\nSharon\nSandra\nGloria\nNancy\nCarol\nMargaret\nDonna\nVirginia\nBetty\nKaren\nJudy\nShirley\nMaria\nAlice\nCarolyn\nFrances\nMartha\nKathleen\nPamela\nSylvia\nDiane\nJanice\nJudith\nElizabeth\nIrene\nYolanda\nDorothy\nHelen\nCheryl\nMarilyn\nPeggy\nCynthia\nDeborah\nJoyce\nRebecca\nBrenda\nJanet\nDiana\nBeverly\nTeresa\nNorma\nCarmen\nChristine\nRose\nCatherine\nRita\nJane\nPaula\nCecilia\nCharlotte\nConnie\nKathy\nVicki\nDolores\nOlivia\nSarah\nAnn\nLaura\nEsther\nMarie\nStella\nKatherine\nRuth\nSally\nAnna\nSherry\nBonnie\nEvelyn\nJuanita\nLouise\nRosemary\nGuadalupe\nJo\nKathryn\nJosephine\nLynda\nMarsha\nJacqueline\nMargie\nRoberta\nTerry\nRachel\nSheila\nSue\nVictoria\nWanda\nElla\nLupe\nPauline\nDoris\nJoan\nJoanne\nLorraine\nClaudia\nMarjorie\nAngela\nAnita\nArlene\nBertha\nDarlene\nJean\nJessie\nLydia\nRosa\nGail\nLucy\nPatsy\nPhyllis\nTheresa\nGeraldine\nLoretta\nOlga\nSuzanne\nClara\nEllen\nJulia\nMargarita\nPriscilla\nElaine\nEva\nGeorgia\nGrace\nJune\nNellie\nSusie\nYvonne\nJoann\nJulie\nKay\nRamona\nRuby\nDora\nGlenda\nIrma\nJennifer\nLena\nLois\nRosie\nAngelita\nCathy\nChristina\nEdith\nElsie\nJeanne\nLeslie\nRosalie\nAna\nAnnie\nBeatrice\nBessie\nLillie\nLynn\nMildred\nNora\nAlma\nAngie\nBillie\nCharlene\nDianne\nErlinda\nMarcella\nVivian\nEmily\nIsabel\nJanie\nVeronica\nAndrea\nCarla\nCaroline\nDelia\nEdna\nEleanor\nEmma\nIda\nLillian\nMarlene\nMaureen\nMichelle\nPenny\nAnnette\nBernice\nCarole\nColleen\nDella\nEileen\nGenevieve\nGladys\nJeanette\nJennie\nLupita\nValerie\nAlberta\nAudrey\nCarmelita\nCatalina\nDelores\nEthel\nFlora\nJosie\nLucille\nMarcia\nMarylou\nPaulette\nTerri\nAlicia\nAngelina\nAnne\nAntonia\nArmida\nCora\nDana\nEsperanza\nEstella\nFaye\nGayle\nJackie\nJill\nLeonor\nMichele\nNadine\nPat\nPearl\nRena\nRobin\nWendy\nAntoinette\nBecky\nBeth\nBobbie\nConstance\nEnedina\nErnestine\nHazel\nHerlinda\nJan\nJoy\nKristine\nLeona\nLily\nLisa\nLola\nLucinda\nMarian\nMarianne\nMelva\nNina\nPatty\nPenelope\nRegina\nSheri\nSheryl\nSocorro\nThelma\nTrudy\nVerna\nCarrie\nCecelia\nCelia\nConcepcion\nDawn\nDeanna\nDebra\nDianna\nElva\nFlorence\nGeneva\nGlenna\nJacque\nJanis\nJeannette\nLana\nLaurie\nLynne\nMaxine\nMercy\nMolly\nOfelia\nSadie\nSandy\nStephanie\nToni\nVelma\nVickie\nVicky\nViolet\nAmelia\nBlanche\nCandace\nCathleen\nCheri\nCherie\nDaisy\nDale\nDee\nDenise\nElsa\nElvia\nElvira\nErma\nErnestina\nHarriet\nIna\nIsabelle\nKatharine\nLaverne\nLenora\nLilly\nLorena\nLouisa\nMaggie\nManuela\nMarguerite\nMarla\nMaryann\nMelba\nMelissa\nMercedes\nMeredith\nMinnie\nMollie\nMonica\nOphelia\nPhoebe\nRosalia\nRosemarie\nSophie\nTeri\nTerrie\nTina\nViola\nWilma\nLinda\nMary\nPatricia\nBarbara\nSusan\nSandra\nCarol\nGloria\nMargaret\nKaren\nKathleen\nMaria\nSharon\nNancy\nVirginia\nDonna\nDeborah\nBetty\nShirley\nJanet\nFrances\nElizabeth\nChristine\nJudy\nPamela\nBrenda\nAlice\nJudith\nSylvia\nMarilyn\nNorma\nCheryl\nIrene\nDiana\nHelen\nRita\nYolanda\nRose\nCarolyn\nRebecca\nCatherine\nJanice\nMartha\nDorothy\nCynthia\nPeggy\nLaura\nConnie\nDiane\nBeverly\nCarmen\nJosephine\nJoyce\nTeresa\nEvelyn\nVictoria\nKathryn\nDolores\nJuanita\nKatherine\nLouise\nLydia\nMarie\nRuth\nEsther\nCharlotte\nSally\nWanda\nCecilia\nJulia\nKathy\nSuzanne\nBonnie\nRoberta\nSherry\nTerry\nGuadalupe\nPhyllis\nAnita\nAnn\nAnna\nOlivia\nTheresa\nJacqueline\nJane\nJean\nMarsha\nRosemary\nCathy\nJo\nRosa\nSarah\nVicki\nChristina\nPriscilla\nJoan\nLorraine\nPaula\nPauline\nSusie\nCharlene\nLucy\nBertha\nElla\nJeanette\nLupe\nLynda\nGail\nGlenda\nPatsy\nDarlene\nGeorgia\nRachel\nRosie\nEva\nJulie\nLois\nNellie\nSheila\nVickie\nArlene\nDelia\nGeraldine\nGrace\nMarcia\nStella\nVivian\nBeatrice\nElaine\nGayle\nKay\nLynn\nRamona\nYvonne\nCarla\nJennifer\nLillian\nLoretta\nNora\nOlga\nValerie\nClara\nConstance\nDebra\nDora\nEllen\nElsie\nLeslie\nRuby\nCarole\nDelores\nEmily\nMargarita\nMarjorie\nMarlene\nAngela\nAngie\nBernice\nEdith\nJanis\nJennie\nJoann\nMargie\nRosalie\nAnnie\nColleen\nIrma\nJessie\nLena\nLucinda\nPenny\nVeronica\nAlberta\nAmelia\nAnne\nCandace\nClaudia\nDenise\nEileen\nEleanor\nJan\nJeanne\nLillie\nMae\nMaureen\nWilma\nAlma\nAna\nConsuelo\nDoris\nElva\nEmma\nGenevieve\nIda\nJanie\nMarian\nMelinda\nRosalinda\nToni\nBobbie\nCecelia\nDeanna\nDianne\nElvira\nErlinda\nFlorence\nGwendolyn\nJoanne\nMichele\nMichelle\nPaulette\nSara\nVerna\nAlicia\nAmy\nAndrea\nAnnette\nCaroline\nDianna\nJacque\nJacquelyn\nJeri\nJune\nLynne\nPatty\nRegina\nRosita\nSandy\nSocorro\nSue\nVicky\nAngelita\nAurelia\nCandice\nCelia\nDebbie\nErnestine\nFrancisca\nHarriet\nHilda\nJill\nKatie\nLorena\nLula\nMelanie\nMolly\nMonica\nPearl\nStephanie\nAmanda\nBecky\nBillie\nEdna\nEvangeline\nGeneva\nGladys\nIris\nIsabel\nJackie\nJosie\nJoy\nLana\nLucia\nRena\nRenee\nRosemarie\nShelley\nSheryl\nAgnes\nArmida\nBelinda\nBessie\nDana\nDella\nDoreen\nEstela\nFlora\nGraciela\nJenny\nLucille\nMarcella\nMarina\nMaxine\nMelody\nMildred\nMyra\nNatalie\nNina\nOphelia\nPetra\nRobin\nSadie\nSherrie\nTerri\nTherese\nTrudy\nViola\nWendy\nAda\nAntoinette\nAntonia\nBelen\nCarrie\nCherie\nDiann\nDolly\nEarlene\nElouise\nEula\nFannie\nHazel\nHenrietta\nInez\nKarla\nLaverne\nLilly\nLily\nLorna\nLupita\nMaggie\nManuela\nMargo\nMelissa\nMercedes\nOfelia\nRhonda\nRoselyn\nSusanna\nThelma\nMary\nLinda\nPatricia\nBarbara\nSusan\nSandra\nDeborah\nMargaret\nCarol\nGloria\nKathleen\nKaren\nNancy\nMaria\nSharon\nBetty\nSylvia\nDonna\nShirley\nElizabeth\nVirginia\nDiane\nIrene\nAlice\nFrances\nPamela\nYolanda\nHelen\nBrenda\nRebecca\nCynthia\nMartha\nNorma\nBeverly\nCarolyn\nChristine\nJanet\nRose\nCarmen\nCatherine\nMarilyn\nAnna\nKatherine\nRuth\nDiana\nDorothy\nSally\nCheryl\nConnie\nKathryn\nJanice\nJudy\nCecilia\nEvelyn\nLaura\nDebra\nRita\nEsther\nJudith\nMarie\nTeresa\nLydia\nRachel\nJean\nPaula\nAnn\nJacqueline\nKathy\nMarsha\nJosephine\nPeggy\nRosa\nTheresa\nCharlotte\nDolores\nJuanita\nBonnie\nGeraldine\nJo\nRoberta\nVicki\nVictoria\nAnita\nGuadalupe\nLoretta\nSarah\nNellie\nPauline\nStella\nClara\nJoan\nJulia\nLouise\nSherry\nDarlene\nDoris\nLorraine\nDora\nGrace\nJoyce\nLynn\nPhyllis\nRamona\nRosemary\nClaudia\nLupe\nJennifer\nRosie\nWanda\nJacque\nChristina\nGail\nJane\nRhonda\nBertha\nCharlene\nElaine\nEllen\nLynda\nPatsy\nSusie\nDenise\nErlinda\nGayle\nJessie\nJoanne\nMarjorie\nOlga\nRuby\nTerry\nVeronica\nCandace\nElla\nLeslie\nMildred\nNora\nVickie\nYvonne\nCathy\nEleanor\nEva\nIsabel\nJeanne\nJulie\nLucy\nMargarita\nMaxine\nPriscilla\nRosalie\nSuzanne\nAlicia\nAndrea\nAngelita\nIrma\nLena\nSheila\nAnne\nBelinda\nDebbie\nEdith\nElsie\nGlenda\nKay\nRobin\nVelma\nAngela\nBernice\nConstance\nDianna\nIda\nJan\nAmelia\nAna\nBeatrice\nCaroline\nCecelia\nCelia\nColleen\nGeorgia\nJeanette\nJoann\nLillian\nLucille\nMadeline\nMarcia\nMercy\nMichelle\nOlivia\nStephanie\nSue\nVivian\nArlene\nBillie\nCarole\nDaisy\nJune\nMargie\nValerie\nVera\nWendy\nAngie\nAnnette\nBecky\nCarla\nDella\nHenrietta\nJennie\nJenny\nLillie\nLucinda\nSara\nShelley\nAnnie\nAntonia\nApril\nConsuelo\nDelia\nDianne\nEdna\nErma\nJacquelyn\nJuana\nMarlene\nPearl\nPenny\nRenee\nSheryl\nSocorro\nVerna\nVicky\nBessie\nBobbie\nCarolina\nCindy\nEileen\nElena\nEmily\nFlora\nGwen\nGwendolyn\nHilda\nJoy\nLaurie\nLeona\nLilly\nMarianne\nMarla\nMaryann\nNatalia\nNina\nPatti\nRoselyn\nRosita\nToni\nWilma\nAntoinette\nArcelia\nAurora\nBlanca\nDelores\nDixie\nEthel\nEtta\nFaye\nFrancisca\nGeneva\nGladys\nIlene\nJosefina\nKatie\nLula\nMae\nMarta\nMaureen\nMolly\nNaomi\nNatalie\nRegina\nSadie\nSherrie\nTerri\nTina\nAlta\nAngelina\nEmma\nGenevieve\nGeorgianna\nGinger\nGracie\nJackie\nLee\nLisa\nLois\nLorna\nLynne\nMelanie\nMelody\nMiriam\nNadine\nPatty\nPaulette\nRosalinda\nSheri\nSilvia\nTrinidad\nViolet\nAgnes\nAlberta\nAleta\nAlma\nAudrey\nAurelia\nBonita\nColeen\nCristina\nDeanna\nEloise\nElva\nElvira\nEsperanza\nEstella\nEvangeline\nFannie\nFlorence\nGeorgina\nHarriet\nHope\nIsabelle\nJanie\nJanis\nJoanna\nJosie\nKristina\nKristine\nLaverne\nLola\nLupita\nLynette\nMable\nManuela\nMargo\nMarian\nMarion\nMercedes\nMickey\nNelda\nOfelia\nOphelia\nRosella\nSonia\nSusana\nSusanne\nThelma\nTherese\nWillie\nMary\nLinda\nPatricia\nBarbara\nDeborah\nSusan\nSandra\nGloria\nKaren\nSharon\nMargaret\nCarol\nKathleen\nNancy\nMaria\nDiane\nBrenda\nCynthia\nDonna\nElizabeth\nPamela\nChristine\nShirley\nDebra\nIrene\nVirginia\nFrances\nSylvia\nRebecca\nBetty\nRose\nMartha\nJanet\nYolanda\nJudith\nHelen\nAlice\nCarolyn\nJudy\nDiana\nDorothy\nEsther\nJanice\nCatherine\nConnie\nKathryn\nMarilyn\nCarmen\nKatherine\nLaura\nBeverly\nPeggy\nEvelyn\nJuanita\nMarie\nAnna\nSally\nBonnie\nKathy\nNorma\nTheresa\nCheryl\nRuth\nPaula\nRita\nTeresa\nChristina\nGuadalupe\nSarah\nVictoria\nAnita\nAnn\nJacqueline\nJoyce\nSue\nWanda\nJo\nCecilia\nRosemary\nVicki\nMarsha\nGail\nJane\nLydia\nSherry\nJoan\nLois\nMarjorie\nRosie\nTerry\nCharlene\nJennifer\nJosephine\nRoberta\nGeraldine\nJulia\nLouise\nAnne\nEva\nJulie\nYvonne\nArlene\nDolores\nJean\nLillian\nPhyllis\nRosa\nCathy\nElaine\nIrma\nOlivia\nPauline\nStella\nSusie\nVickie\nDenise\nLorraine\nCharlotte\nGrace\nBeatrice\nDarlene\nLupe\nLynn\nMaureen\nClaudia\nJoy\nLynda\nSuzanne\nConstance\nGeorgia\nLena\nLoretta\nMarlene\nNellie\nPriscilla\nRachel\nVivian\nBillie\nClara\nColleen\nDoris\nEdith\nEllen\nElsie\nEmma\nIsabel\nLeslie\nRamona\nValerie\nAna\nBertha\nEleanor\nErlinda\nGayle\nJacque\nJacquelyn\nJeanette\nJessie\nMargarita\nSara\nDelia\nJan\nNora\nRhonda\nBernice\nCecelia\nDianna\nDora\nGlenda\nKay\nLucy\nRegina\nRobin\nSheila\nStephanie\nVeronica\nWendy\nAngela\nCindy\nJeanne\nJoann\nLucinda\nToni\nAlicia\nAnnie\nBeth\nDeanna\nDella\nEstella\nIda\nJoanne\nLucille\nMarcia\nMargie\nNadine\nSheryl\nBelinda\nCandace\nCaroline\nCelia\nDelores\nDianne\nElla\nJenny\nLillie\nMichele\nMichelle\nPatsy\nTerri\nBonita\nGinger\nJune\nLee\nMarianne\nMonica\nRena\nRenee\nAgnes\nAndrea\nAngelita\nBessie\nCarla\nCarole\nCora\nDebbie\nEileen\nFlorence\nHilda\nJackie\nJanie\nLana\nMelinda\nMelissa\nMildred\nPaulette\nPenny\nAmelia\nAngie\nAntonia\nBlanca\nDebora\nElouise\nErnestine\nEthel\nGlenna\nLaverne\nLupita\nMaxine\nMercy\nMyrna\nOlga\nPatty\nRuby\nShelley\nWilma\nAda\nAdela\nAida\nBecky\nBetsy\nBobbie\nEdna\nElvia\nElvira\nEmily\nFlora\nHenrietta\nJamie\nLaurie\nLisa\nLola\nLynette\nLynne\nMarcella\nMaryann\nNina\nOphelia\nRosalie\nRosalinda\nSadie\nSheri\nVera\nVerna\nAlberta\nAlma\nAmy\nAngelina\nAurelia\nCarrie\nDana\nDee\nDoreen\nElva\nErma\nGladys\nGwendolyn\nHarriet\nHazel\nJanis\nJeannie\nJennie\nJosie\nKatie\nLeona\nLora\nLorena\nLucia\nMaggie\nMargo\nMarian\nMercedes\nMolly\nNanette\nPatrice\nPatti\nSherri\nSocorro\nThelma\nViola\nAmanda\nAnnette\nAntoinette\nApril\nArmida\nBernadette\nCamille\nCandice\nCeleste\nCherie\nCherry\nChris\nColeen\nConsuelo\nCristina\nDaisy\nDarla\nDelma\nDixie\nDorothea\nEarlene\nElda\nEliza\nEsperanza\nGeneva\nGeorgina\nGracie\nGwen\nIsabell\nJanette\nJeanie\nJerri\nJolene\nKim\nLilly\nMalinda\nManuela\nMarguerite\nMarla\nMinnie\nMollie\nMona\nNikki\nOfelia\nPearl\nRosalee\nRosanna\nRosario\nSandy\nSonia\nTeri\nVicky\nViolet\nZena\nMary\nLinda\nPatricia\nDeborah\nBarbara\nSusan\nKaren\nDebra\nGloria\nPamela\nSandra\nKathleen\nNancy\nSharon\nCarol\nMaria\nDiane\nDonna\nMargaret\nChristine\nRebecca\nMartha\nVirginia\nCynthia\nJanet\nElizabeth\nBrenda\nShirley\nBetty\nRose\nYolanda\nSylvia\nCarolyn\nJanice\nCatherine\nFrances\nTeresa\nIrene\nJudy\nMarilyn\nKatherine\nKathryn\nKathy\nBeverly\nRuth\nSally\nAlice\nAnna\nPeggy\nRita\nHelen\nCarmen\nDorothy\nEvelyn\nLaura\nPaula\nTheresa\nJudith\nNorma\nDiana\nVictoria\nConnie\nBonnie\nCheryl\nJoyce\nVicki\nGuadalupe\nJosephine\nJo\nAnita\nDolores\nMarie\nRachel\nPhyllis\nRosa\nSherry\nLorraine\nRoberta\nAnn\nRosemary\nTerry\nDenise\nValerie\nCecilia\nDoris\nJacqueline\nCathy\nChristina\nDarlene\nEsther\nLouise\nJane\nLydia\nVickie\nDora\nLisa\nMarsha\nRhonda\nRosie\nSuzanne\nCharlotte\nLeslie\nYvonne\nGrace\nWanda\nEva\nSarah\nArlene\nJoan\nJoanne\nJuanita\nJulie\nRamona\nCharlene\nElaine\nJulia\nLoretta\nGail\nIrma\nJean\nPauline\nRuby\nStella\nVivian\nAnne\nEleanor\nLucy\nLupe\nSheila\nNora\nRegina\nEllen\nLynn\nMaureen\nOlga\nSusie\nDebbie\nDelia\nIsabel\nKay\nLena\nLynda\nMargarita\nMarlene\nNellie\nAngela\nAngelina\nElla\nIda\nLaurie\nMarjorie\nOlivia\nTerri\nGeraldine\nJan\nJennifer\nJoann\nMarcia\nMarian\nPriscilla\nRobin\nShelley\nSue\nAna\nBeatrice\nCaroline\nCindy\nClara\nDianna\nGlenda\nPatsy\nBertha\nColleen\nGeorgia\nJacquelyn\nLois\nMichele\nRosalie\nStephanie\nToni\nAngelita\nBecky\nBelinda\nCecelia\nConstance\nDelores\nElsa\nGenevieve\nJeanette\nJeanne\nJoy\nLillian\nMelanie\nMelinda\nMichelle\nPenny\nSheryl\nWendy\nAngie\nBernice\nClaudia\nFlorence\nGayle\nGinger\nJackie\nJanie\nJanis\nJessie\nJune\nLucinda\nPearl\nRosita\nSara\nVicky\nAnnie\nAntonia\nBillie\nCarla\nCarole\nEdith\nEmma\nJacque\nJenny\nJill\nLee\nLillie\nMelissa\nMildred\nRosalinda\nThelma\nTina\nWilma\nAmelia\nDebora\nDianne\nElsie\nEstella\nHilda\nKim\nKristine\nLynne\nMargie\nMarianne\nMaxine\nRena\nSherri\nAlicia\nBlanca\nCandace\nCelia\nChristie\nDana\nEdna\nEileen\nEmily\nGlenna\nJana\nJeannette\nJosefina\nLola\nLucille\nLynette\nMae\nNaomi\nSadie\nTeri\nAlma\nBetsy\nDale\nDella\nElvira\nEvangeline\nGladys\nJennie\nLaverne\nMelody\nPatti\nSocorro\nVeronica\nViola\nAmalia\nAmy\nAndrea\nAntoinette\nBernadette\nBessie\nCheri\nCora\nDawn\nErnestine\nGay\nHarriet\nHenrietta\nJosie\nLupita\nMarta\nMolly\nMona\nMonica\nPatty\nRoselyn\nRoxanne\nBobbie\nChristy\nDaisy\nDoreen\nElena\nElouise\nFrancisca\nGeneva\nGracie\nHope\nIris\nKelly\nKimberly\nKris\nLeticia\nLori\nMarcella\nMargo\nMarietta\nMinnie\nNina\nPatrice\nRosanna\nVelma\nVera\nAlberta\nApril\nArmida\nCharmaine\nClaire\nDeanna\nDelphine\nDolly\nEsperanza\nEstela\nFaith\nFannie\nGeorgina\nHeather\nHolly\nIsabell\nIsabelle\nKristin\nLilly\nLolita\nLora\nLorna\nMatilda\nMelba\nNanette\nNola\nPaulette\nRenee\nRuthie\nSallie\nSandy\nShari\nSheri\nSherrie\nTrudy\nMary\nLinda\nPatricia\nDeborah\nDebra\nSusan\nBarbara\nSandra\nPamela\nGloria\nCynthia\nKaren\nMaria\nCarol\nKathleen\nNancy\nSharon\nMargaret\nDonna\nElizabeth\nDiane\nRebecca\nRose\nBetty\nJanet\nBrenda\nChristine\nMartha\nYolanda\nCarolyn\nSally\nSylvia\nCatherine\nIrene\nKatherine\nKathy\nTeresa\nVirginia\nAlice\nMarilyn\nHelen\nJudy\nLaura\nKathryn\nShirley\nBeverly\nFrances\nNorma\nAnna\nConnie\nLydia\nTheresa\nVicki\nDiana\nDorothy\nJanice\nCarmen\nAnita\nDenise\nPaula\nDarlene\nVictoria\nEvelyn\nCheryl\nJuanita\nJo\nPeggy\nRuth\nSherry\nRita\nRosa\nCecilia\nJacqueline\nMichelle\nRobin\nTerry\nCathy\nGuadalupe\nJane\nEsther\nJoyce\nJudith\nMarie\nStella\nLorraine\nRachel\nRoberta\nAnn\nChristina\nSusie\nWanda\nGail\nLynn\nRhonda\nDoris\nLouise\nMarsha\nPhyllis\nSarah\nSheila\nSuzanne\nBonnie\nDolores\nJosephine\nEllen\nJoan\nLucy\nSue\nLupe\nRosemary\nRosie\nEleanor\nJulia\nPauline\nTerri\nCharlene\nCindy\nJean\nMargarita\nArlene\nAnne\nBertha\nEva\nJulie\nLisa\nPatsy\nRamona\nVickie\nVivian\nCharlotte\nClara\nIrma\nRuby\nValerie\nYvonne\nElaine\nGlenda\nLynda\nElla\nGeraldine\nGrace\nJoanne\nLeslie\nLois\nPriscilla\nClaudia\nLucinda\nMargie\nNellie\nCarla\nDebbie\nLeticia\nMichele\nOlivia\nRenee\nSherri\nCecelia\nEdith\nEmma\nIsabel\nJill\nLoretta\nRosalie\nSheryl\nStephanie\nAndrea\nDora\nJan\nLena\nLillian\nMarlene\nVerna\nAngela\nAnnie\nCaroline\nJeanette\nKim\nLillie\nMarjorie\nMonica\nRegina\nVera\nAlma\nBeatrice\nBessie\nCandace\nDelores\nGayle\nGeorgia\nJeanne\nJeannette\nJennifer\nMarcella\nMelinda\nPenny\nShelley\nVeronica\nAna\nBecky\nBernice\nCarole\nCelia\nDawn\nDianna\nJackie\nJoann\nKay\nLucille\nPatti\nSheri\nAngie\nEthel\nHilda\nIda\nJacque\nNora\nOlga\nAlberta\nColleen\nDelia\nElsie\nEmily\nErnestine\nJanie\nKimberly\nLorna\nMelissa\nVelma\nAgnes\nAntonia\nBillie\nBlanca\nElouise\nGwendolyn\nJacquelyn\nJanis\nJessie\nMarcia\nMarta\nMolly\nRoxanne\nSocorro\nTina\nVanessa\nAmy\nAngelina\nBelinda\nBeth\nJennie\nMarian\nMarla\nMaxine\nNadine\nPearl\nRena\nRosita\nThelma\nVicky\nWendy\nWilma\nCherie\nDarla\nDebora\nDella\nElsa\nEsperanza\nEstella\nFrancisca\nGinger\nGladys\nGlenna\nHerlinda\nJenny\nJeri\nJoy\nJune\nLaurie\nLou\nLula\nLynne\nOfelia\nOphelia\nRosalinda\nTrudy\nAda\nAmanda\nAngelita\nAnnette\nArmida\nAurelia\nCarmelita\nCheri\nConstance\nCora\nDana\nDianne\nDixie\nDoreen\nEileen\nElisa\nElva\nElvira\nFlora\nFrancine\nGracie\nIris\nJeannie\nLorene\nLori\nManuela\nMercy\nMildred\nMona\nSadie\nSherrie\nTeri\nTerrie\nToni\nAlicia\nAlta\nAmelia\nArlinda\nAurora\nBernadette\nCathleen\nCherry\nDaisy\nEdna\nErlinda\nEtta\nFaye\nGeneva\nHarriet\nHazel\nLela\nLeona\nLora\nLourdes\nMae\nMargo\nMarianne\nMarylou\nMaureen\nNaomi\nNina\nPaulette\nPenelope\nRaquel\nRuthie\nSara\nTamara\nViola\nAdela\nApril\nBobbi\nBobbie\nBridget\nChris\nCrystal\nEleanore\nElena\nErma\nErnestina\nEsmeralda\nFannie\nGenevieve\nHeidi\nJeanine\nJerri\nJolene\nKelly\nKristen\nLee\nLouisa\nLucia\nLupita\nLuz\nMabel\nMadeline\nMalinda\nMarguerite\nMelanie\nMelody\nMinnie\nMiriam\nMyra\nPatrice\nPatty\nRachael\nSallie\nShauna\nTherese\nTracy\nMary\nLinda\nPatricia\nDeborah\nSusan\nDebra\nBarbara\nSandra\nCynthia\nKaren\nNancy\nMaria\nPamela\nSharon\nDonna\nMargaret\nRose\nGloria\nKathleen\nBrenda\nElizabeth\nRebecca\nMartha\nCarol\nVirginia\nCheryl\nJanet\nDiane\nCatherine\nConnie\nFrances\nIrene\nSylvia\nTeresa\nPaula\nYolanda\nDiana\nChristine\nMarilyn\nShirley\nAlice\nJanice\nAnna\nVicki\nJo\nNorma\nPeggy\nSally\nCarolyn\nJudy\nVictoria\nKathy\nDarlene\nJudith\nLaura\nHelen\nRita\nKatherine\nTheresa\nBetty\nBeverly\nDenise\nRosa\nSherry\nTerry\nDorothy\nKathryn\nBonnie\nCarmen\nCindy\nEsther\nJulie\nLucy\nEvelyn\nJoyce\nMarie\nRuth\nJosephine\nAnn\nSarah\nAnita\nJuanita\nJulia\nRobin\nCathy\nElaine\nGuadalupe\nLorraine\nLydia\nPhyllis\nRhonda\nDebbie\nVickie\nYvonne\nJacqueline\nCecilia\nDolores\nGail\nJane\nLouise\nRachel\nSheila\nJoan\nLisa\nRoberta\nRosie\nCharlene\nAnne\nJean\nLoretta\nValerie\nWanda\nLori\nStella\nEllen\nLeslie\nTerri\nVeronica\nJoanne\nSuzanne\nBertha\nCharlotte\nEva\nGlenda\nLaurie\nMargarita\nArlene\nIrma\nPriscilla\nSue\nLupe\nMarlene\nPauline\nWendy\nDoris\nLucille\nMarian\nMichelle\nNellie\nPatsy\nRamona\nShelley\nStephanie\nSusie\nChristina\nDianne\nGrace\nJoann\nMarsha\nToni\nAna\nAnnette\nJennie\nJennifer\nJill\nJoy\nMarjorie\nOlivia\nSherri\nAngie\nCarla\nClaudia\nEileen\nElsie\nIsabel\nLena\nLynn\nMarcia\nMaureen\nMichele\nNora\nAngela\nColleen\nDana\nElla\nGeraldine\nJackie\nJacque\nJeanette\nJeanne\nJune\nMonica\nPenny\nRosemary\nSheri\nSheryl\nAndrea\nDawn\nDora\nEmily\nLois\nTina\nAlma\nConstance\nDelia\nJan\nKimberly\nOlga\nRegina\nVicky\nAmelia\nAudrey\nBecky\nBernice\nDelores\nLucinda\nLynda\nMargie\nMaxine\nMercy\nRuby\nVerna\nVivian\nAntonia\nBessie\nCaroline\nJody\nKay\nLillian\nLorena\nRoxanne\nAngelina\nBeatrice\nBelinda\nCarrie\nCecelia\nErnestine\nEvangeline\nHolly\nLynne\nMarla\nMelody\nPatty\nRenee\nRosalie\nSandy\nVanessa\nAlberta\nAnnie\nCelia\nCheri\nClara\nDeanna\nDella\nDianna\nEmma\nErlinda\nEstella\nGayle\nGenevieve\nJanie\nLupita\nMarcella\nMelanie\nSherrie\nTeri\nVera\nAngelita\nArmida\nBillie\nDixie\nEdna\nEthel\nGina\nGladys\nJeannie\nJenny\nJeri\nJessie\nKelly\nKim\nMelinda\nMildred\nPatti\nRena\nRosita\nWilma\nAntoinette\nApril\nBernadette\nCandy\nEleanor\nJacquelyn\nLee\nLou\nMargo\nShelly\nTracy\nViolet\nBeth\nCandace\nCarole\nElouise\nGeneva\nGeorgia\nGlenna\nGwendolyn\nHenrietta\nIda\nJoni\nKarla\nLeticia\nMelissa\nMona\nNina\nRuthie\nSadie\nSara\nSocorro\nThelma\nAdela\nAlicia\nAmanda\nAmy\nBlanca\nCherie\nDeann\nDebora\nEdith\nElena\nElva\nEsperanza\nFrancisca\nGraciela\nHilda\nJamie\nJayne\nJoanna\nLana\nLaurel\nLaverne\nLillie\nLula\nMarion\nNadine\nNaomi\nPatrice\nViola\nAva\nDarla\nEvangelina\nFaye\nHazel\nIlene\nJanette\nJosie\nLorrie\nLucia\nMae\nMarina\nMarta\nMyrna\nSusana\nTamara\nTherese\nVelma\nAda\nAlyce\nAnnabelle\nBette\nCandice\nChristy\nConchita\nConsuelo\nDaisy\nDebby\nDena\nFredia\nInez\nIsabell\nIsabelle\nJana\nJessica\nKatharine\nKathie\nKathrine\nLeah\nLeola\nLeona\nLeta\nLyn\nManuela\nMarianne\nMarietta\nMelba\nMeredith\nMinnie\nOphelia\nPaulette\nPearl\nPolly\nRosanna\nRosanne\nRoselyn\nRosetta\nShari\nShauna\nSusanna\nSusanne\nTammy\nMary\nDebra\nLinda\nPatricia\nDeborah\nSusan\nCynthia\nBarbara\nSandra\nKaren\nNancy\nPamela\nCheryl\nMaria\nCarol\nGloria\nSharon\nElizabeth\nDonna\nMargaret\nKathleen\nBrenda\nDiane\nVirginia\nRose\nRebecca\nBetty\nCatherine\nJanet\nVicki\nSylvia\nMartha\nDiana\nTeresa\nCarolyn\nFrances\nKathy\nJanice\nShirley\nDorothy\nKatherine\nLaura\nMarilyn\nYolanda\nJudy\nSally\nAnna\nNorma\nTheresa\nVictoria\nChristine\nJo\nIrene\nDenise\nRita\nRuth\nCathy\nSherry\nCarmen\nKathryn\nPaula\nDebbie\nEsther\nJoyce\nAlice\nPeggy\nBeverly\nJulie\nDarlene\nHelen\nJuanita\nLisa\nRobin\nLorraine\nAnita\nAnn\nEvelyn\nJulia\nRhonda\nConnie\nTerry\nCindy\nMichelle\nTina\nVickie\nCecilia\nJacqueline\nMarie\nSarah\nValerie\nKim\nTerri\nJudith\nLeslie\nSheila\nArlene\nRachel\nElaine\nLouise\nLydia\nLynn\nEllen\nLoretta\nLori\nRosa\nNora\nPhyllis\nWendy\nAngela\nChristina\nDolores\nCharlene\nWanda\nBonnie\nCharlotte\nDoris\nEva\nGuadalupe\nIrma\nJosephine\nRoberta\nJoan\nSuzanne\nGail\nJennifer\nYvonne\nGrace\nSheryl\nStephanie\nJane\nKimberly\nSue\nAndrea\nAnne\nEmma\nRenee\nSherri\nBertha\nLena\nLynda\nMargarita\nMarlene\nMelanie\nPauline\nRosemary\nRosie\nRuby\nIsabel\nJean\nJeanne\nLeticia\nMarcia\nOlga\nPriscilla\nSusie\nAngie\nBecky\nEileen\nJoanne\nLaurie\nLillian\nLupe\nMarsha\nOlivia\nRena\nVivian\nBernice\nDelia\nEleanor\nGayle\nGeraldine\nJackie\nMelinda\nSherrie\nStella\nVera\nVeronica\nDawn\nDora\nMarla\nMichele\nAnnie\nCarla\nDella\nLois\nMae\nNellie\nAnnette\nCecelia\nCelia\nElla\nGina\nLucy\nMarjorie\nPatti\nPenny\nRegina\nShelley\nSheri\nToni\nClara\nDana\nDianne\nJoni\nMildred\nMinnie\nRamona\nAna\nAngelina\nCheri\nClaudia\nDebora\nGlenda\nGwendolyn\nJan\nJeanette\nLucinda\nMarcella\nMargie\nPatsy\nPatty\nRoxanne\nAlma\nAmy\nApril\nBeth\nBlanca\nCaroline\nColleen\nDelores\nEmily\nHolly\nJeannie\nJill\nJoann\nJoy\nMona\nAlicia\nBelinda\nBessie\nConsuelo\nDianna\nElsie\nGenevieve\nHilda\nMercy\nNatalie\nSara\nSheree\nVanessa\nBeatrice\nConstance\nDarla\nDeanna\nEdith\nElsa\nGeorgia\nHeather\nIda\nJessie\nKay\nLee\nLucia\nLucille\nMarta\nMonica\nSadie\nSocorro\nTamara\nTeri\nVicky\nViola\nCandice\nCarrie\nEstella\nGeneva\nGracie\nHeidi\nJacquelyn\nJanis\nJune\nLenora\nMarian\nMaureen\nPenelope\nRosalie\nRosita\nThelma\nAgnes\nAntonia\nAudrey\nAurelia\nGeorgina\nJacque\nJanie\nJenny\nJody\nJosie\nKelly\nLilly\nLola\nLorna\nLynne\nNina\nRobyn\nTerrie\nTracy\nVerna\nAdelina\nCamille\nCarole\nDoreen\nElena\nElva\nElvira\nErlinda\nEtta\nFlora\nGinger\nGladys\nGwen\nHelena\nHope\nJana\nJennie\nJolene\nKristine\nLadonna\nLauren\nLourdes\nLupita\nMaggie\nMelody\nOphelia\nPolly\nRonda\nShannon\nVelma\nAdela\nAlberta\nAmelia\nBillie\nCarmelita\nCathleen\nDebby\nDena\nElia\nElma\nElouise\nEsperanza\nEvangeline\nHazel\nIsabelle\nJeanine\nJeri\nJoanna\nKarin\nKatie\nKimberlee\nKristi\nLaverne\nLeona\nLily\nLorene\nLou\nLuann\nLynette\nMadeline\nMelissa\nMelva\nMinerva\nNadine\nPearl\nRoxanna\nSabrina\nShari\nSharron\nShelly\nSilvia\nSonia\nTanya\nValentina\nAngelita\nAntoinette\nAurora\nBenita\nBobbie\nCandace\nChris\nChristy\nClaire\nCora\nDaisy\nDeana\nDee\nEunice\nFaye\nFlorine\nFrancis\nHarriet\nHerlinda\nImogene\nIris\nJanette\nJosefina\nLana\nLaurel\nLeanne\nLeigh\nLora\nLula\nMargo\nMarguerite\nMarylou\nMay\nNaomi\nNelda\nNoreen\nPam\nRochelle\nRosalinda\nRoselyn\nShawn\nSuzan\nMary\nLinda\nPatricia\nDebra\nDeborah\nSusan\nCynthia\nSandra\nKaren\nBarbara\nMaria\nNancy\nPamela\nDonna\nSharon\nCarol\nGloria\nElizabeth\nMargaret\nDiane\nCheryl\nBrenda\nKathleen\nRebecca\nRose\nVirginia\nTeresa\nJanet\nSylvia\nYolanda\nLaura\nMartha\nDiana\nCatherine\nChristine\nBetty\nLisa\nDebbie\nTheresa\nKatherine\nShirley\nAnna\nJanice\nKathy\nDenise\nNorma\nVicki\nCarolyn\nCindy\nConnie\nJudy\nDarlene\nVictoria\nEvelyn\nFrances\nJo\nKathryn\nCathy\nHelen\nRobin\nCarmen\nKimberly\nPaula\nJulie\nAlice\nRosa\nDorothy\nKim\nAnn\nLaurie\nTerry\nBeverly\nYvonne\nRita\nPeggy\nJudith\nRuth\nTina\nAnita\nJoyce\nSherry\nLeslie\nMarie\nMarilyn\nJuanita\nSally\nTerri\nIrene\nValerie\nLorraine\nBonnie\nChristina\nVickie\nDawn\nJennifer\nLynn\nRhonda\nStella\nSuzanne\nGail\nLoretta\nLori\nSarah\nDolores\nDoris\nElaine\nGrace\nJean\nLydia\nStephanie\nGuadalupe\nLouise\nRachel\nRoberta\nWanda\nAnne\nCarla\nCharlene\nJosephine\nPhyllis\nSusie\nColleen\nJacqueline\nJulia\nEsther\nJoan\nJoann\nLillian\nPauline\nRamona\nRosemary\nRuby\nAngela\nCecilia\nMichelle\nVivian\nCharlotte\nEllen\nSue\nWendy\nLucy\nOlivia\nSheila\nVeronica\nDana\nJane\nRosie\nAlicia\nDelores\nElla\nEva\nJackie\nJeanne\nJoanne\nMelody\nArlene\nEileen\nEleanor\nIsabel\nLeticia\nMarcia\nMargarita\nMonica\nBecky\nBertha\nDeanna\nDebora\nGlenda\nLucinda\nOlga\nPriscilla\nSherrie\nCecelia\nDelia\nDora\nEdith\nEmma\nJoni\nPatti\nRenee\nRosalie\nJoy\nLaverne\nLois\nLucille\nMargie\nMarjorie\nNora\nPenny\nSheri\nToni\nEmily\nGayle\nGina\nKelly\nLupe\nMelanie\nMichele\nSherri\nAnnie\nBelinda\nCarrie\nConstance\nKay\nMarcella\nMarla\nMarlene\nMelinda\nMelissa\nPatsy\nRena\nSheryl\nAnnette\nElsie\nJeanette\nJill\nLaurel\nTracy\nAntoinette\nAudrey\nBernice\nCheri\nDianne\nGeraldine\nGwendolyn\nIda\nIrma\nRegina\nTeri\nAmelia\nAndrea\nAngelina\nAngie\nDella\nGenevieve\nJessie\nJody\nJosie\nLee\nSara\nVicky\nAlma\nApril\nBlanca\nBobbie\nClaudia\nDoreen\nElouise\nElsa\nGracie\nJeannie\nJeri\nLynda\nMarsha\nMona\nNatalie\nShelly\nAlta\nAmy\nAna\nDarla\nDena\nEstella\nJanie\nLena\nLilly\nMaureen\nNellie\nNina\nPatty\nRobyn\nTerrie\nVerna\nBillie\nDianna\nFaith\nJanis\nLillie\nMaxine\nMolly\nPearl\nRoxanne\nSandy\nShelley\nSheree\nVanessa\nAntonia\nBeatrice\nBernadette\nBessie\nBeth\nCandy\nCarole\nCaroline\nCrystal\nEdna\nEvangeline\nFannie\nHeather\nJacquelyn\nJan\nJana\nJenny\nLenora\nLou\nLupita\nLynette\nMarian\nMarion\nMarta\nMaryann\nMercy\nPolly\nSabrina\nThelma\nVera\nWilma\nAngelita\nAurelia\nBonita\nCatalina\nCelia\nClara\nCruz\nDelphine\nErnestina\nEunice\nGeneva\nGeorgia\nHeidi\nHenrietta\nIsabelle\nJamie\nJennie\nJuana\nKarla\nKerry\nLorena\nLuann\nLuz\nMarianne\nMiriam\nMyrna\nNadine\nPaulette\nRosanna\nShari\nShawn\nSilvia\nTanya\nAmanda\nCandace\nCherie\nConsuelo\nCora\nElisa\nElvira\nErlinda\nEthel\nEtta\nFelicia\nFlora\nFlorence\nHazel\nHolly\nJanette\nJayne\nJeannette\nJerri\nJoanna\nJune\nKristi\nLana\nLeona\nLily\nLourdes\nLynne\nMargo\nMarina\nMatilda\nMildred\nMyra\nNaomi\nPatrica\nRosita\nRuthie\nShauna\nTherese\nTracey\nAda\nBenita\nBetsy\nCarolina\nChris\nDarcy\nDee\nDolly\nElise\nEloisa\nElvia\nErin\nErma\nEsperanza\nFaye\nFrancis\nFrancisca\nGale\nGinger\nGladys\nIlene\nIva\nJolene\nKari\nKathie\nKendra\nLauren\nLeah\nLeta\nLona\nLora\nLorna\nLorrie\nMaggie\nMarcy\nMay\nMinerva\nNita\nOfelia\nPetra\nRenae\nRhoda\nRonda\nRosalinda\nRosetta\nSadie\nSusanne\nViola\nWillie\nMary\nLinda\nPatricia\nSusan\nDebra\nCynthia\nDeborah\nKaren\nBarbara\nSandra\nCarol\nBrenda\nNancy\nDonna\nElizabeth\nMaria\nCindy\nKathleen\nDiane\nPamela\nSharon\nRebecca\nDiana\nGloria\nSylvia\nLaura\nTeresa\nJulie\nKathy\nCheryl\nJudy\nMargaret\nMartha\nVirginia\nRose\nDebbie\nChristine\nCatherine\nLisa\nTheresa\nJanet\nDenise\nConnie\nShirley\nAnna\nIrene\nCarolyn\nLeslie\nPeggy\nBetty\nDarlene\nLori\nYolanda\nCathy\nKathryn\nRobin\nKim\nTerri\nVicki\nSally\nRhonda\nFrances\nJanice\nKatherine\nNorma\nKimberly\nMarilyn\nSherry\nBeverly\nJo\nAnita\nDorothy\nJennifer\nAlice\nBonnie\nTina\nEsther\nEvelyn\nVickie\nVictoria\nLaurie\nLorraine\nDawn\nMarie\nRita\nRosa\nJoyce\nPaula\nRachel\nSusie\nAnn\nRosemary\nCarmen\nIrma\nRuth\nTerry\nCecilia\nSarah\nChristina\nLynn\nJuanita\nLoretta\nSheila\nJudith\nWanda\nAnnette\nElaine\nJean\nLucy\nPhyllis\nVivian\nGail\nHelen\nJulia\nSheryl\nSue\nJosephine\nLydia\nMichelle\nBecky\nGuadalupe\nRamona\nRoberta\nTammy\nMarlene\nVeronica\nAngela\nCharlene\nValerie\nAndrea\nDoris\nJacqueline\nKelly\nLouise\nYvonne\nAnne\nCharlotte\nEva\nJoan\nPatsy\nPatty\nBelinda\nBertha\nCarrie\nJoann\nTracy\nColleen\nJane\nMargie\nSherri\nEllen\nMarjorie\nAlma\nCaroline\nEleanor\nVicky\nWendy\nAlicia\nCarla\nDelores\nGrace\nLupe\nRegina\nRenee\nBeth\nDeanna\nDelia\nDolores\nLeticia\nMonica\nPauline\nSheri\nStephanie\nSuzanne\nArlene\nJennie\nJill\nNora\nOlga\nPriscilla\nRosie\nRuby\nTeri\nAngie\nIsabel\nJackie\nJeri\nJoanne\nJody\nMarianne\nPenny\nToni\nAna\nElla\nElsie\nLillian\nLucinda\nMelinda\nMichele\nShelley\nDora\nGeraldine\nHolly\nJan\nLena\nLois\nMarla\nMarsha\nMaureen\nStella\nAmy\nApril\nDana\nDianna\nEmma\nGayle\nGlenda\nJeanette\nJeanne\nJessie\nKay\nMargarita\nOlivia\nPam\nPatti\nRosalie\nThelma\nBeatrice\nBernice\nCecelia\nCelia\nClara\nDebora\nDianne\nEdith\nGina\nGwendolyn\nHeidi\nJamie\nMarcia\nAnnie\nBillie\nGeorgia\nJanie\nJoy\nKristi\nNellie\nPat\nRoxanne\nSabrina\nVerna\nClaudia\nEdna\nEileen\nEmily\nGeneva\nIda\nJenny\nJoni\nLynda\nMelissa\nPearl\nRena\nRobyn\nSandy\nSonia\nTami\nAmelia\nConstance\nCrystal\nEvangeline\nFlora\nJana\nJeannie\nLaurel\nLee\nMaxine\nMelody\nNaomi\nAudrey\nBessie\nCarmelita\nCarole\nDixie\nEunice\nJoanna\nLaverne\nLorna\nMarian\nMelanie\nMona\nSheree\nTamara\nAngelita\nBobbie\nCheri\nDoreen\nJanis\nKarla\nLeah\nMargo\nSara\nShannon\nShelly\nSherrie\nAngelina\nDanette\nDarla\nDella\nElsa\nElva\nElvira\nEstella\nFlorence\nGenevieve\nHeather\nKerry\nKimberley\nLenora\nLillie\nLorene\nLynne\nMadeline\nMaryann\nMildred\nNina\nRhoda\nSocorro\nStacy\nTerrie\nTrina\nAlta\nBernadine\nChris\nChristy\nClaire\nElvia\nErlinda\nErma\nFelicia\nFrancisca\nGeorgina\nGinger\nGladys\nHazel\nJayne\nJosefina\nLuann\nLucia\nLula\nMabel\nMarion\nMarta\nMarty\nMinnie\nNadine\nPenelope\nRene\nRosanna\nShauna\nStacey\nTanya\nTherese\nVanessa\nBetsy\nBlanca\nBridget\nCandace\nCandy\nCatalina\nCathleen\nCindi\nCristina\nDani\nErnestine\nEsperanza\nGwen\nHarriet\nJanine\nJeannette\nJodi\nKelli\nKimberlee\nLauri\nLeona\nLora\nLou\nLucille\nLupita\nLynette\nMaggie\nMarcella\nMercedes\nMitzi\nMyrna\nNanette\nPatrice\nRonda\nRosalind\nRosalinda\nRosemarie\nRosita\nShawn\nSilvia\nSophia\nSusanna\nVera\nVikki\nAlberta\nBelen\nCarolina\nCherie\nCruz\nDebbi\nDolly\nDona\nEarlene\nElena\nElise\nErin\nErnestina\nGale\nGay\nInez\nJacque\nJacquelyn\nJessica\nJewel\nJosie\nKathi\nKathrine\nKatrina\nKristin\nLavern\nLesley\nLila\nLiz\nLorrie\nLourdes\nLuanne\nMae\nMari\nMelva\nMollie\nMolly\nMyra\nNatalie\nNita\nPatrica\nPolly\nRosanne\nShawna\nSherie\nSonja\nTrudy\nValorie\nVelma\nWilma\nZona\nMary\nPatricia\nLinda\nSusan\nDebra\nCynthia\nKaren\nDeborah\nBarbara\nKathy\nSandra\nPamela\nMaria\nDebbie\nElizabeth\nCarol\nCindy\nBrenda\nDonna\nJulie\nNancy\nLisa\nCheryl\nDiane\nSharon\nKathleen\nLaura\nTeresa\nDiana\nRose\nGloria\nCatherine\nDenise\nJanet\nRebecca\nMargaret\nPeggy\nSylvia\nVirginia\nTheresa\nMartha\nAnna\nLori\nBetty\nJudy\nChristine\nKimberly\nCathy\nTammy\nTerri\nKim\nBeverly\nCarolyn\nShirley\nConnie\nKatherine\nJennifer\nRobin\nVicki\nTerry\nTina\nYolanda\nIrene\nCarmen\nMichelle\nDorothy\nLeslie\nLorraine\nPaula\nRita\nSarah\nSherry\nNorma\nJanice\nJulia\nRuth\nSally\nAlice\nValerie\nKathryn\nBecky\nAnnette\nDarlene\nVictoria\nAnn\nFrances\nKelly\nJo\nLaurie\nYvonne\nVeronica\nLoretta\nBonnie\nHelen\nJoann\nRosa\nStephanie\nJoanne\nSusie\nVickie\nAnita\nGrace\nMarie\nSheila\nCharlotte\nLydia\nCarrie\nCecilia\nJuanita\nWanda\nArlene\nDawn\nMarilyn\nRosemary\nWendy\nAmy\nEvelyn\nIrma\nBertha\nCarla\nEsther\nJoyce\nLucy\nLynn\nPenny\nPhyllis\nRhonda\nRoberta\nBeth\nDolores\nGuadalupe\nJudith\nPatsy\nPauline\nRachel\nGail\nLouise\nSandy\nTamara\nAndrea\nChristina\nEllen\nJane\nMarlene\nRegina\nSuzanne\nAnne\nElaine\nJoan\nLupe\nSheri\nSheryl\nAngela\nEva\nJackie\nJean\nMelinda\nSherri\nSue\nToni\nPatty\nRamona\nCharlene\nDora\nDoris\nMelissa\nMichele\nRenee\nStella\nColleen\nEileen\nGeraldine\nJill\nJosephine\nPam\nRosalie\nAudrey\nIsabel\nJacqueline\nLillian\nLucinda\nPatti\nTracy\nAlma\nAnnie\nCaroline\nChris\nMargie\nPriscilla\nShannon\nClara\nDelores\nJenny\nJody\nLeticia\nMarjorie\nRosie\nTammie\nAlicia\nCecelia\nJoy\nMonica\nRena\nTeri\nBelinda\nCheri\nDana\nGeorgia\nHolly\nIda\nJeanette\nJeannette\nJeannie\nMarcia\nNadine\nNellie\nOlga\nBernice\nConstance\nDarla\nDeanna\nDianne\nGina\nJeanne\nMaxine\nNatalie\nOlivia\nSara\nShelly\nVicky\nEdna\nEmma\nGayle\nHeidi\nJeri\nMargarita\nRosita\nVivian\nAngie\nBobbie\nErin\nGwendolyn\nJune\nLois\nLynda\nMelanie\nMelody\nMona\nShelley\nSherrie\nVerna\nAna\nBernadine\nBessie\nClaudia\nErlinda\nJan\nMyra\nVera\nBernadette\nCathleen\nEleanor\nElla\nElvira\nEstella\nGenevieve\nGlenda\nJacque\nJamie\nJana\nJanie\nJennie\nLeah\nLee\nLora\nLynne\nMarian\nMarsha\nMaureen\nPat\nPearl\nRuby\nSonia\nVelma\nAlison\nApril\nBeatrice\nBetsy\nDoreen\nGeneva\nGracie\nJayne\nJessie\nLiz\nMaryann\nNina\nPatrice\nRosemarie\nStacy\nTami\nTammi\nTerrie\nTrudy\nBobbi\nBridget\nCandace\nDaisy\nDella\nEdith\nEmily\nErma\nGwen\nJeanie\nKay\nKelley\nKimberley\nLena\nMarcella\nMiriam\nMolly\nNora\nTanya\nThelma\nTrina\nWilma\nAngelina\nAngelita\nCarole\nChristy\nDebby\nDebora\nDelia\nDianna\nEvangelina\nEvangeline\nFaith\nGeorgina\nHilda\nJanis\nJoni\nKathi\nKristi\nLauren\nLeona\nLillie\nLorna\nLorrie\nLucille\nMarla\nMildred\nMinnie\nRene\nRonda\nRoxanne\nSabrina\nTherese\nAllison\nAmanda\nBeatriz\nCandy\nChristi\nCindi\nEunice\nFlorence\nJessica\nJoanna\nJosie\nKarla\nKatharine\nKris\nLeann\nLenora\nLola\nLula\nLupita\nMae\nMercy\nMyrna\nShari\nShawn\nVanessa\nViola\nAlberta\nAntonia\nBillie\nBlanca\nCarmelita\nCarolina\nCathryn\nCelia\nChristie\nCruz\nDee\nDelma\nDolly\nElisa\nElsa\nElsie\nErmelinda\nFrancine\nGinger\nIris\nJodie\nKatie\nKatrina\nKellie\nKeri\nKerry\nLaurel\nLaverne\nLorene\nLorie\nLou\nMarianne\nMarita\nMercedes\nNaomi\nOfelia\nRobyn\nRosalinda\nRoxane\nSilvia\nSusana\nTamera\nTamra\nViolet\nWilla\nAileen\nAmalia\nBlanche\nCandi\nCatalina\nCeleste\nCherie\nCherry\nConsuelo\nCora\nDeana\nDebi\nDinah\nDollie\nElvia\nFlora\nGale\nGay\nGlenna\nGuillermina\nHazel\nHeather\nHenrietta\nJacquelyn\nJacquline\nJeannine\nJodi\nJohnnie\nJudi\nKari\nKelli\nKendra\nLavonne\nLuz\nLynette\nMarion\nMarta\nMelva\nMinerva\nNeva\nPattie\nPeggie\nRachael\nRobbie\nSocorro\nStacey\nSusanna\nSuzan\nTonya\nMary\nPatricia\nLinda\nSusan\nCynthia\nDebra\nKaren\nLisa\nDonna\nDebbie\nKathy\nSandra\nDeborah\nElizabeth\nMaria\nBarbara\nCheryl\nDiane\nLaura\nCindy\nNancy\nBrenda\nCarol\nSharon\nPamela\nLori\nJulie\nTeresa\nAnna\nKathleen\nSylvia\nDiana\nTheresa\nRebecca\nChristine\nTammy\nDenise\nGloria\nRose\nMargaret\nKimberly\nCathy\nKelly\nMartha\nJanet\nCarolyn\nJudy\nKim\nVicki\nVirginia\nConnie\nTerri\nTerry\nTina\nAnnette\nCatherine\nKatherine\nBecky\nFrances\nIrene\nMichelle\nRobin\nShirley\nDarlene\nKathryn\nBetty\nSherry\nYolanda\nLeslie\nPeggy\nJennifer\nJulia\nRhonda\nDawn\nSally\nVictoria\nLaurie\nPaula\nNorma\nLydia\nRuth\nAnn\nYvonne\nAlice\nAnita\nChristina\nStephanie\nVeronica\nJanice\nHelen\nJuanita\nRita\nJoyce\nLoretta\nBeverly\nBonnie\nElaine\nValerie\nJane\nMarie\nPatti\nWendy\nLynn\nSherri\nAndrea\nAngela\nJudith\nRosemary\nCecilia\nPhyllis\nRoberta\nRosa\nSheila\nSheryl\nAnne\nDolores\nTami\nGail\nLucy\nPam\nSandy\nSusie\nTracy\nArlene\nCarrie\nDorothy\nEllen\nJo\nLorraine\nMonica\nSarah\nSuzanne\nJacqueline\nPenny\nRachel\nAmy\nMarilyn\nMichele\nRenee\nRuby\nVivian\nCarmen\nJoanne\nLouise\nPatty\nVickie\nDeanna\nGrace\nSheri\nCharlotte\nEvelyn\nIrma\nJean\nShelly\nToni\nBeth\nLupe\nMargie\nCharlene\nEsther\nEva\nMelanie\nPatsy\nBernice\nDana\nBelinda\nBertha\nCarla\nGeraldine\nGina\nJackie\nJamie\nJan\nJeanne\nJoan\nMelissa\nNora\nDianne\nGuadalupe\nLillian\nMarlene\nWanda\nDelores\nEleanor\nElla\nGayle\nJill\nMargarita\nRegina\nTamara\nTeri\nCecelia\nClara\nEmma\nLaverne\nLynda\nRosie\nShelley\nCaroline\nDianna\nJoann\nJosephine\nOlivia\nPriscilla\nRamona\nDelia\nDoris\nEileen\nGwendolyn\nIda\nLena\nOlga\nShannon\nTammie\nTanya\nVera\nAlberta\nAlma\nAna\nColleen\nDarla\nIsabel\nJoy\nMarcella\nNadine\nSue\nVerna\nDebora\nElsie\nJeannette\nLana\nLeticia\nLucille\nMaryann\nMelinda\nPat\nRoxanne\nSara\nAlicia\nAngie\nAnnie\nAudrey\nBobbie\nCarole\nChris\nErin\nJeanette\nJennie\nJenny\nLiz\nLynne\nMarcia\nSherrie\nVanessa\nApril\nCheri\nClaudia\nCrystal\nDebby\nDora\nHolly\nJeannie\nLee\nLorena\nMarian\nMelody\nPauline\nStella\nTherese\nBeatrice\nBernadine\nChristy\nDella\nEmily\nGenevieve\nGeorgia\nGinger\nHeidi\nJeri\nJessie\nJune\nKathi\nKay\nKris\nLaurel\nLynette\nMarianne\nMarsha\nMatilda\nMaureen\nSocorro\nStacy\nTerrie\nThelma\nVicky\nAmelia\nCandy\nCathleen\nHeather\nJoanna\nJoni\nKellie\nLeann\nLorna\nLucinda\nMaggie\nMarjorie\nMildred\nMolly\nMona\nMyra\nNellie\nRosita\nSonia\nYvette\nBetsy\nCindi\nDoreen\nEdna\nEstella\nEvangeline\nGlenda\nJana\nJanie\nJanis\nKarla\nLupita\nMarla\nNita\nRena\nRene\nSabrina\nAngelina\nAntonia\nBessie\nConstance\nDaisy\nDeena\nDina\nEdith\nEdwina\nElena\nElva\nErlinda\nEtta\nGracie\nHelena\nIris\nJacquelyn\nKerri\nLauren\nLorie\nMarguerite\nNatalie\nSelina\nSusanna\nTamra\nAllison\nAngelia\nAurora\nCamille\nChristie\nClaire\nDolly\nElouise\nErnestine\nFrancine\nHilda\nJodi\nJody\nKari\nKatie\nKelley\nKristin\nLois\nLula\nMarta\nMaxine\nMay\nNanette\nNina\nRochelle\nRonda\nRosalie\nRosalinda\nSadie\nShawna\nSheree\nTammi\nTracey\nAdela\nAlison\nAlta\nAmanda\nAngelita\nBernadette\nBillie\nCora\nDeana\nDebi\nDee\nElise\nElvira\nErma\nEvangelina\nGay\nGeneva\nGladys\nGretchen\nGwen\nHarriet\nJacque\nJerri\nJessica\nJosefina\nJosie\nKarin\nKristi\nLauri\nLenora\nLillie\nLiza\nLora\nLourdes\nMagdalena\nNona\nPatrice\nPearl\nRhoda\nRosemarie\nSharlene\nStacey\nSusana\nTonya\nViola\nAda\nAurelia\nBridget\nCatalina\nCeleste\nCelia\nCherie\nClarissa\nCornelia\nDelfina\nDenice\nDinah\nDixie\nDorene\nEloise\nElvia\nFaith\nFannie\nFlora\nGeorgina\nGraciela\nHazel\nHope\nJanelle\nKelli\nKerry\nKristen\nKristine\nKristy\nLadonna\nLaverna\nLeah\nLeanne\nLorene\nLorri\nLorrie\nMae\nManuelita\nMarina\nMarion\nMercy\nMyrna\nNaomi\nNola\nOpal\nPaulette\nRobyn\nRosanna\nShari\nSonja\nSonya\nSusanne\nSuzette\nTamera\nTrina\nValarie\nVelma\nViolet\nMary\nLisa\nPatricia\nLinda\nSusan\nSandra\nDebbie\nKaren\nDeborah\nDebra\nBrenda\nElizabeth\nDonna\nBarbara\nCynthia\nCindy\nKathy\nMaria\nLori\nNancy\nLaura\nTeresa\nPamela\nCarol\nSharon\nJulie\nCheryl\nJanet\nDiane\nTammy\nDiana\nMargaret\nRebecca\nGloria\nKathleen\nDenise\nVirginia\nRobin\nKelly\nKim\nKimberly\nMichelle\nSylvia\nAnna\nAnnette\nConnie\nCathy\nCatherine\nMartha\nTerri\nChristine\nTheresa\nTina\nRose\nCarolyn\nRhonda\nLaurie\nShirley\nIrene\nYolanda\nAlice\nJennifer\nVicki\nBecky\nJudy\nChristina\nDawn\nJanice\nLorraine\nPeggy\nCarmen\nPaula\nSherry\nTerry\nAngela\nVictoria\nWendy\nBeverly\nFrances\nKathryn\nBetty\nKatherine\nTracy\nYvonne\nDarlene\nDorothy\nAnn\nJulia\nLeslie\nLynn\nStephanie\nVeronica\nSandy\nSarah\nSuzanne\nBonnie\nNorma\nRosa\nVickie\nJoan\nJuanita\nMonica\nRuth\nAmy\nEvelyn\nMarlene\nRachel\nRoberta\nCarrie\nRita\nAnita\nSheila\nAndrea\nRosemary\nSally\nSherri\nTamara\nCarla\nDeanna\nEllen\nEva\nIrma\nLydia\nMichele\nPam\nSheri\nVivian\nJill\nSheryl\nCecilia\nElaine\nEsther\nGuadalupe\nJacqueline\nLoretta\nMelissa\nPatty\nRegina\nAna\nArlene\nHelen\nJo\nJudith\nMarie\nBeth\nDoris\nJane\nShelley\nSusie\nValerie\nAnne\nMelanie\nPenny\nRosie\nJoann\nJoyce\nMarilyn\nDianna\nGeraldine\nPhyllis\nSara\nShelly\nToni\nAlicia\nCaroline\nCharlene\nColleen\nDolores\nGrace\nMelinda\nPatsy\nTami\nBernice\nEileen\nJamie\nMargie\nDana\nHolly\nLillian\nMelody\nPatti\nSue\nCharlotte\nJoanne\nWanda\nBeatrice\nJoy\nLucy\nNora\nTeri\nBelinda\nJackie\nJeanette\nLouise\nPriscilla\nShannon\nAngie\nClara\nDelores\nErin\nGail\nGlenda\nJean\nJeannie\nShari\nCecelia\nCheri\nJennie\nStella\nAlma\nBertha\nChristy\nDelia\nEstella\nHeidi\nJosephine\nMargarita\nMaureen\nNatalie\nOlivia\nRamona\nRenee\nCrystal\nDora\nIsabel\nJoni\nKristi\nLena\nLiz\nLucinda\nLupe\nRoxanne\nAmelia\nBernadette\nGina\nIda\nKelli\nLeticia\nLois\nLynda\nRosalie\nRuby\nSherrie\nVicky\nAngelita\nGenevieve\nJacque\nJan\nJeannette\nJodi\nJody\nKarla\nLynette\nMarjorie\nMarla\nYvette\nCarole\nChris\nDarla\nEmily\nJeanne\nJenny\nJosie\nKimberley\nLorna\nPauline\nRosemarie\nThelma\nApril\nAudrey\nDoreen\nEdith\nJoanna\nLula\nRobyn\nRonda\nSonia\nStacey\nStacy\nAntonia\nBlanca\nConstance\nDella\nEdna\nGayle\nGwen\nJeri\nJessie\nKathi\nKay\nKerri\nLora\nLorrie\nLucille\nMarcella\nMarcia\nMercy\nPolly\nRena\nRene\nShawn\nShawna\nTammie\nTanya\nAlison\nBridget\nDebora\nEleanor\nEmma\nErlinda\nGeorgia\nJanie\nKatrina\nKerry\nLee\nLeigh\nMarian\nMolly\nMona\nNellie\nPearl\nTerrie\nTracey\nAntoinette\nBillie\nClaudia\nElvia\nGinger\nGracie\nGwendolyn\nJolene\nKari\nKelley\nKristine\nLorie\nLourdes\nLynne\nMaryann\nMatilda\nOlga\nPat\nSabrina\nVera\nAlberta\nAlta\nAnnie\nBernadine\nCelia\nCorina\nDianne\nElla\nElsa\nElva\nHilda\nJohanna\nJune\nKatie\nLauren\nLauri\nMyrna\nNadine\nNanette\nSonya\nTherese\nTrina\nVerna\nArmida\nCamille\nCandy\nCassandra\nChristie\nDeana\nDesiree\nGladys\nHenrietta\nHope\nJana\nJayne\nJeanie\nJeannine\nJuana\nMaggie\nMargo\nMarianne\nMindy\nMyra\nNina\nRosalinda\nSandi\nVanessa\nAdelina\nAmanda\nBobbie\nCandace\nCari\nCathleen\nCherie\nChristi\nConsuelo\nDebby\nDebi\nDeloris\nElsie\nErma\nErnestina\nEtta\nEunice\nFannie\nFaye\nFrancine\nFrancisca\nGay\nGayla\nGeorgina\nGretchen\nJacquelyn\nJanette\nKendall\nKris\nKristy\nLaverne\nLeah\nLeona\nLesa\nLilly\nLita\nLorena\nLupita\nMarcy\nMarion\nMarsha\nMarta\nMelba\nMildred\nMisty\nPatrice\nRochelle\nRosita\nSondra\nSusanna\nTamra\nTonya\nTraci\nViola\nAlisa\nAurora\nBelen\nBessie\nBonita\nCarmelita\nCelina\nDeanne\nDelphine\nDiann\nEdwina\nElena\nElouise\nEsperanza\nEvangeline\nFlora\nFlorence\nGerri\nGraciela\nHarriet\nHelena\nJanelle\nJeanine\nJerri\nJoe\nJudi\nKellie\nKristie\nLeann\nLeanne\nLeisa\nLily\nLissa\nLiza\nLola\nLoraine\nLou\nLucia\nMae\nMaryhelen\nMitzi\nOfelia\nReba\nRosanna\nRoseanne\nRoxane\nSusana\nSuzanna\nSydney\nTamera\nTammi\nTracie\nTricia\nMary\nLisa\nLinda\nPatricia\nSusan\nSandra\nKaren\nCynthia\nBrenda\nDebbie\nDeborah\nBarbara\nLori\nElizabeth\nMaria\nJulie\nDebra\nCheryl\nTeresa\nLaura\nCarol\nSharon\nTammy\nNancy\nPamela\nDonna\nKathy\nDiana\nCindy\nRebecca\nDiane\nDenise\nTerri\nTheresa\nJanet\nKimberly\nAnna\nMargaret\nKathleen\nKelly\nGloria\nJennifer\nRobin\nMartha\nMichelle\nCatherine\nKim\nConnie\nLaurie\nVirginia\nCathy\nSylvia\nChristine\nAnnette\nCarolyn\nYolanda\nVicki\nTina\nAnita\nStephanie\nKatherine\nRhonda\nSherry\nChristina\nJanice\nJudy\nJacqueline\nTracy\nRose\nDawn\nDeanna\nFrances\nMichele\nRuth\nSuzanne\nBeverly\nDarlene\nPaula\nAnn\nBecky\nVeronica\nAngela\nLeslie\nNorma\nPeggy\nShirley\nIrene\nLoretta\nLorraine\nBonnie\nKathryn\nTerry\nVictoria\nAlice\nMarie\nRachel\nCarrie\nLynn\nSarah\nYvonne\nBetty\nDorothy\nJulia\nRenee\nSherri\nWendy\nCharlotte\nCarmen\nAmy\nEvelyn\nHelen\nJoyce\nLupe\nMonica\nValerie\nDolores\nCecilia\nJudith\nLydia\nMarilyn\nRosa\nSheila\nShelly\nSheri\nBeth\nCarla\nEsther\nJackie\nJill\nMelissa\nPenny\nSandy\nAndrea\nJane\nJoann\nRosemary\nTeri\nColleen\nGail\nRoberta\nPhyllis\nAna\nIrma\nJean\nJoan\nMelinda\nSally\nSara\nTamara\nArlene\nElaine\nJuanita\nRita\nShelley\nToni\nAngie\nGuadalupe\nMelanie\nSheryl\nSusie\nDana\nRamona\nVivian\nAnne\nCharlene\nEllen\nRegina\nEileen\nJoanne\nLucy\nMelody\nVicky\nHeidi\nPam\nEva\nGlenda\nJeanne\nMarjorie\nNatalie\nShari\nAlma\nGina\nJosephine\nLynda\nMargie\nApril\nCrystal\nDoris\nLena\nMarlene\nRuby\nSue\nTracey\nVickie\nCaroline\nCecelia\nDora\nElla\nHeather\nJeanette\nJenny\nKerry\nLeticia\nPatty\nPauline\nPriscilla\nRobyn\nAudrey\nBelinda\nDelia\nJamie\nJo\nJoy\nMarcella\nNina\nStella\nTammie\nWanda\nBertha\nGrace\nHolly\nLouise\nMaureen\nShannon\nStacey\nCheri\nDianna\nJan\nLorie\nOlivia\nRosalie\nRosie\nRoxanne\nAngelita\nKelli\nLee\nMolly\nMona\nNora\nPatti\nChris\nDianne\nKristi\nLiz\nMarsha\nNellie\nPatsy\nRene\nSherrie\nAlicia\nDoreen\nGayle\nLynette\nRonda\nSabrina\nThelma\nAlberta\nAngel\nBeatrice\nElsie\nEmily\nGeorgina\nIsabel\nJana\nJeri\nJodi\nKarla\nKay\nKristine\nLois\nLucinda\nLynne\nRosita\nStacy\nTami\nAmanda\nCelia\nConstance\nCorina\nDebora\nDelores\nErin\nErma\nGeorgia\nGinger\nJessie\nJoni\nJosie\nKellie\nLillian\nLorrie\nMarcia\nRena\nShawn\nSonia\nTanya\nTerrie\nVanessa\nVerna\nYvette\nAllison\nBlanca\nEdith\nEmma\nGeneva\nGenevieve\nGeraldine\nJolene\nLorri\nLupita\nMarla\nOlga\nSusanna\nSuzette\nTonya\nVera\nAlta\nBernice\nBillie\nBobbie\nCandy\nCassandra\nChristy\nDina\nEdna\nEsperanza\nEstella\nJeannie\nJennie\nJudi\nLaverne\nMargarita\nMaryann\nMatilda\nMaxine\nPaulette\nPolly\nRosalinda\nSonya\nSusana\nAmelia\nBernadette\nBetsy\nCarole\nClara\nClaudia\nDeena\nEleanor\nElvira\nGretchen\nGwendolyn\nJacque\nJanie\nKari\nKimberlee\nKimberley\nKristy\nLaurel\nLourdes\nMarianne\nNaomi\nPat\nPearl\nRosanna\nRosario\nRosemarie\nRoxanna\nSonja\nTammi\nTara\nValarie\nAnnie\nArmida\nAurora\nBessie\nBridget\nCamille\nCandi\nCeleste\nCorrina\nDaisy\nDena\nElsa\nErnestine\nFaith\nFelicia\nJeannette\nJessica\nJoanna\nJohanna\nJune\nKatie\nKelley\nKerri\nKristina\nLauri\nLeah\nLeann\nLeanne\nLeigh\nLeona\nLillie\nLora\nLorene\nLucille\nNadine\nNicki\nOfelia\nRaquel\nRochelle\nShellie\nTricia\nVelma\nViola\nWilma\nCandace\nClaudette\nColeen\nDanette\nDarla\nDebi\nDee\nDella\nDorene\nElisa\nEvangeline\nFlorence\nFrancine\nFrancisca\nGeri\nGracie\nGraciela\nHope\nIda\nJanell\nJanette\nJanine\nJayne\nJody\nJohnna\nLadonna\nMagdalena\nMaggie\nMarcy\nMildred\nMiriam\nMyra\nMyrna\nNoreen\nRae\nRhoda\nRosalind\nRoselyn\nShauna\nShelli\nValorie\nAlisa\nAlison\nAngelina\nAntoinette\nAntonia\nCara\nCarey\nCarolina\nCindi\nCristina\nDanielle\nDaphne\nDeann\nDebby\nElouise\nElvia\nErlinda\nErnestina\nFlora\nGigi\nGladys\nGlenna\nGwen\nHazel\nHilda\nJeanine\nKatrina\nKristin\nLana\nLeta\nLetitia\nLola\nLorena\nMae\nManuela\nMargo\nMari\nMarian\nMarisa\nMinerva\nMyrtle\nNita\nOphelia\nRachael\nRoxann\nSadie\nSelma\nSharlene\nShawna\nShelia\nTana\nTherese\nWilliam\nMary\nLisa\nPatricia\nLinda\nSusan\nKaren\nCynthia\nLori\nSandra\nMaria\nLaura\nDeborah\nJulie\nDonna\nBarbara\nDebbie\nElizabeth\nDebra\nBrenda\nMichelle\nTeresa\nPamela\nCindy\nNancy\nKathy\nKelly\nKimberly\nTammy\nCarol\nRebecca\nSharon\nCheryl\nDenise\nDiane\nGloria\nRobin\nChristine\nTina\nDiana\nMargaret\nTheresa\nKathleen\nAnna\nJennifer\nJanet\nKim\nSylvia\nConnie\nLaurie\nYolanda\nCatherine\nSherry\nChristina\nAngela\nDawn\nSherri\nTerri\nMartha\nRhonda\nVeronica\nAnita\nVirginia\nCathy\nFrances\nSuzanne\nMonica\nPaula\nRose\nTracy\nStephanie\nBonnie\nNorma\nAnnette\nCarolyn\nJudy\nMichele\nVicki\nLeslie\nPeggy\nShirley\nDarlene\nValerie\nSheila\nJill\nMarie\nAmy\nKatherine\nLorraine\nIrene\nLoretta\nSally\nSarah\nVictoria\nBecky\nEvelyn\nJanice\nMelissa\nTerry\nCarmen\nCecilia\nAnn\nBetty\nRenee\nWendy\nAlice\nBeth\nJulia\nJacqueline\nSandy\nShelly\nYvonne\nAndrea\nDorothy\nMarilyn\nRoberta\nRosa\nRuth\nHelen\nLynn\nPenny\nRachel\nSheri\nJoann\nJoyce\nKathryn\nLydia\nBeverly\nEva\nSheryl\nCarrie\nDeanna\nJudith\nElaine\nEsther\nJackie\nPhyllis\nRita\nAlicia\nAnne\nArlene\nGina\nHolly\nRegina\nTamara\nColleen\nJean\nMelinda\nMarlene\nMelanie\nRamona\nCarla\nAngie\nCharlene\nJeanette\nMargarita\nShelley\nBertha\nDana\nDarla\nJosephine\nJuanita\nRosemary\nTeri\nToni\nGail\nLucy\nAna\nDora\nGuadalupe\nPatty\nStella\nWanda\nDolores\nJamie\nJo\nJoy\nNatalie\nPam\nPauline\nStacey\nEllen\nJane\nJoanne\nMargie\nSherrie\nVivian\nBelinda\nCaroline\nCharlotte\nLeticia\nLouise\nRuby\nTammie\nVickie\nLupe\nMaureen\nStacy\nTami\nVicky\nIrma\nJoan\nMarla\nPriscilla\nRene\nSara\nShannon\nAlma\nApril\nDianne\nDoris\nHeather\nKelley\nMelody\nPatsy\nRonda\nBeatrice\nCrystal\nJeri\nKelli\nLynda\nNina\nShari\nClara\nGrace\nSabrina\nSusie\nTanya\nBernice\nDianna\nEileen\nGayle\nGeraldine\nGlenda\nIda\nJenny\nLynne\nMatilda\nOlivia\nRobyn\nVerna\nCarole\nDoreen\nEdna\nHeidi\nJeanne\nJodi\nKimberley\nLauri\nLucinda\nLupita\nNora\nPatti\nRosie\nRosita\nRoxanne\nSonya\nSue\nTracey\nYvette\nCandy\nDina\nEmma\nGeorgia\nKarla\nLorie\nMarcella\nMarcy\nMarjorie\nSonia\nTerrie\nTonya\nAnnie\nCarmelita\nCheri\nDelia\nGinger\nJeannette\nKay\nKellie\nMolly\nRena\nRochelle\nTara\nEdith\nEmily\nErin\nGenevieve\nJoanna\nJoni\nJune\nLillian\nLiz\nLois\nMiriam\nAllison\nBernadette\nCecelia\nCelia\nChris\nClaudia\nConstance\nDebora\nJan\nLaverne\nLora\nLorena\nLorrie\nMarcia\nMarian\nMarianne\nPearl\nRosemarie\nTherese\nTracie\nTrudy\nVanessa\nAdela\nAmelia\nAngelina\nAudrey\nCorina\nDaphne\nDelores\nEleanor\nElisa\nElvira\nErnestine\nEstella\nGwen\nGwendolyn\nHazel\nHenrietta\nJana\nJanette\nJody\nJosie\nLeann\nMadeline\nMildred\nMona\nOlga\nPaige\nPat\nPolly\nShawn\nSophia\nTammi\nTraci\nViola\nAngel\nBetsy\nBobbi\nBonita\nBridget\nCeleste\nConsuelo\nDeana\nDixie\nDorothea\nFrancine\nFrancisca\nInez\nJacque\nJanie\nJennie\nJodie\nKari\nKerry\nKristi\nKristine\nLena\nLeona\nLiza\nLorna\nLynette\nLynnette\nMae\nMarta\nMaryann\nShelby\nShellie\nStacie\nThelma\nVelma\nAlberta\nAlison\nAmber\nBernadine\nBlanca\nBobbie\nCandace\nChristi\nChristie\nCora\nDee\nElvia\nEvangelina\nFaith\nHarriet\nHilda\nJanine\nJeannie\nJessie\nJolene\nKerri\nKristen\nKristin\nLeah\nLorri\nMarion\nMyrna\nSocorro\nWendi\nWilma\nAgnes\nAmalia\nAngelita\nBettina\nChristy\nDaisy\nDanette\nDeann\nDella\nDelphina\nDesiree\nDori\nElena\nElsa\nElsie\nElva\nEmilia\nErlinda\nEthel\nEunice\nEvangeline\nFlorence\nFrankie\nGeneva\nHerlinda\nHope\nIsabel\nJayne\nJessica\nKatrina\nKristina\nLana\nLaurel\nLeigh\nLillie\nLola\nLourdes\nLucia\nMargo\nMaricela\nMarina\nMaxine\nNadine\nPatrice\nRae\nSabina\nSharla\nShauna\nSonja\nTamra\nVera\nAdelina\nAdriana\nAmanda\nAntoinette\nAurora\nBecki\nCarlene\nCassandra\nCatalina\nCathie\nCherie\nColette\nDebby\nDeena\nEloise\nElouise\nFelicia\nFlora\nGaye\nGeorgina\nGracie\nGraciela\nIris\nIva\nJaneen\nJanis\nJewel\nJosefina\nJuana\nJuliana\nKarrie\nKimberlee\nKristy\nLadonna\nLenora\nLenore\nLesa\nLorinda\nLuann\nLyn\nMarci\nMarylou\nMelodie\nMercy\nMichael\nMickey\nMindy\nMinerva\nNanette\nNellie\nRobbin\nRosanna\nSondra\nSusana\nSusanna\nLisa\nMary\nPatricia\nSusan\nLinda\nKaren\nLori\nLaura\nSandra\nMaria\nCynthia\nDeborah\nElizabeth\nBarbara\nBrenda\nKimberly\nJulie\nTammy\nDonna\nDebra\nNancy\nPamela\nMichelle\nTeresa\nCindy\nChristine\nSharon\nDebbie\nJennifer\nDiana\nKathy\nTina\nKelly\nRebecca\nDiane\nDenise\nTheresa\nCheryl\nCarol\nKathleen\nTerri\nAnna\nSylvia\nPaula\nMargaret\nRobin\nChristina\nConnie\nMartha\nSherri\nYolanda\nGloria\nJanet\nRhonda\nIrene\nKim\nLeslie\nTracy\nAnnette\nVirginia\nAngela\nSherry\nCatherine\nStephanie\nVeronica\nLaurie\nYvonne\nMonica\nValerie\nCathy\nDawn\nMelissa\nNorma\nAnn\nKathryn\nCarolyn\nCarmen\nAlice\nAmy\nDarlene\nSheila\nVictoria\nMarie\nRose\nSuzanne\nWendy\nBeth\nBonnie\nMichele\nPenny\nJudy\nLorraine\nRachel\nDana\nRuth\nJulia\nTerry\nBecky\nFrances\nLoretta\nSheri\nKatherine\nSarah\nStacy\nAndrea\nGina\nBetty\nCharlene\nJanice\nMelanie\nPeggy\nSally\nColleen\nJuanita\nRenee\nRoberta\nSandy\nShannon\nAnne\nCarla\nIrma\nJill\nVicki\nBeverly\nJacqueline\nRosemary\nMarlene\nSusie\nTamara\nAnita\nDeanna\nDorothy\nElaine\nJosephine\nLynn\nRegina\nRita\nAlicia\nHeidi\nJackie\nShelley\nJoyce\nLydia\nPam\nVickie\nCarrie\nHolly\nPatty\nRosa\nSheryl\nEva\nEvelyn\nJeanette\nJo\nMelinda\nShelly\nArlene\nDolores\nJudith\nShirley\nStacey\nJoann\nKristi\nMargie\nPriscilla\nTami\nCecilia\nDianna\nEsther\nSara\nGeraldine\nJamie\nJean\nJeanne\nJoan\nJoanne\nLupe\nPauline\nRamona\nVivian\nBelinda\nCharlotte\nJane\nLucy\nPhyllis\nToni\nAlma\nAna\nCaroline\nChris\nHelen\nKelli\nRonda\nRoxanne\nTanya\nTracey\nBernice\nDarla\nDora\nGuadalupe\nLeticia\nMargarita\nTammie\nYvette\nEileen\nEllen\nHeather\nRuby\nTeri\nApril\nBeatrice\nChristy\nDoris\nLaverne\nAngie\nCrystal\nGail\nJenny\nJosie\nLois\nLouise\nLucinda\nLynda\nMarilyn\nMarjorie\nNora\nBobbie\nGinger\nGlenda\nJoy\nKelley\nMaureen\nOlga\nSherrie\nWanda\nBertha\nDelores\nJoanna\nJody\nKarla\nKimberley\nLora\nRobyn\nAmanda\nAmelia\nBernadette\nCandy\nGenevieve\nGeorgina\nJessica\nLeah\nLorena\nLorrie\nOlivia\nStella\nSue\nDelia\nDina\nEmily\nEmma\nKristine\nLillian\nLiz\nLynette\nMarcia\nMatilda\nMelody\nMisty\nPatsy\nTonya\nVanessa\nVicky\nCecelia\nEdna\nEleanor\nErin\nGayle\nIda\nIsabel\nJan\nLena\nLorie\nNatalie\nRene\nRosalie\nShari\nSonia\nAlberta\nAllison\nAudrey\nCheri\nClara\nDee\nDeena\nGrace\nGwendolyn\nLourdes\nPearl\nSonya\nTerrie\nAnnie\nCandace\nCassandra\nConsuelo\nCorrina\nDianne\nElla\nElsa\nFelicia\nJana\nJanine\nJanis\nKay\nKerry\nKristin\nKristina\nLeona\nLorna\nMercy\nMiriam\nMona\nNina\nPatti\nRochelle\nRosie\nRosita\nVera\nAngelina\nBessie\nBlanca\nDanette\nDella\nDoreen\nElisa\nGeorgia\nJeannie\nJeri\nJune\nKari\nKatrina\nLaurel\nLauren\nLauri\nLeigh\nLorri\nMarcella\nMaribel\nMarsha\nShawn\nShelia\nStacie\nTamra\nTracie\nAlison\nCarmelita\nDorene\nEvangeline\nJodi\nJolene\nKatie\nKris\nKristen\nKristy\nLynne\nMarian\nMarianne\nMaxine\nMolly\nVerna\nAlana\nAngelica\nBridget\nCandi\nCara\nCatalina\nCathleen\nConstance\nCorina\nDena\nElvira\nErlinda\nErnestina\nErnestine\nGeneva\nGeri\nJami\nJeannette\nKerri\nKimberlee\nLeann\nLee\nLupita\nMarci\nMarina\nMarion\nMarla\nMaryann\nNadine\nPamala\nRoseann\nSocorro\nSonja\nTammi\nThelma\nTricia\nVelma\nAngelita\nCamille\nCari\nCherie\nChristie\nClarissa\nCristina\nDaisy\nDarcy\nDeana\nDebby\nDenice\nElena\nEsperanza\nEtta\nFaith\nFrancine\nGwen\nHelena\nHilda\nHope\nJanell\nJennie\nJerri\nKarin\nKeri\nKirsten\nKristie\nLenora\nLesa\nLila\nLola\nLolita\nLorinda\nLucia\nMadeline\nMalinda\nMarta\nMartina\nNicole\nPolly\nRachelle\nRena\nRosalinda\nRoxanna\nSabrina\nSadie\nShellie\nSondra\nSusana\nTori\nViolet\nAida\nAlta\nAmber\nAngel\nArmida\nBobbi\nCaren\nCarlene\nCarole\nCelia\nChristi\nClaire\nColeen\nDawna\nDesiree\nEdie\nErma\nEstella\nEster\nEunice\nFannie\nFlora\nIlene\nIsabell\nJacque\nJacquelyn\nJanna\nJeanine\nJeannine\nJessie\nJodie\nJohnna\nJudi\nKellie\nLea\nLorene\nLuann\nLuz\nMaggie\nMarcy\nMyrna\nNellie\nNoreen\nPatrica\nPaulette\nRenae\nRobbin\nRosanna\nShanna\nSharlene\nShauna\nSophia\nSophie\nSusanna\nTamela\nTara\nTherese\nValencia\nViola\nWilma\nMary\nLisa\nPatricia\nSusan\nLinda\nKaren\nMaria\nElizabeth\nKimberly\nCynthia\nSandra\nLori\nLaura\nJulie\nTammy\nDonna\nBarbara\nDeborah\nMichelle\nChristine\nBrenda\nDenise\nPamela\nTeresa\nDebra\nKelly\nCheryl\nKathleen\nRebecca\nAnna\nMargaret\nCarol\nSharon\nJennifer\nDiana\nTheresa\nNancy\nDebbie\nCindy\nKathy\nTina\nAngela\nChristina\nRobin\nDiane\nRhonda\nSherri\nAnnette\nGloria\nKim\nWendy\nTerri\nSylvia\nTracy\nDawn\nJacqueline\nStephanie\nLaurie\nMonica\nVirginia\nYolanda\nAmy\nJudy\nMelissa\nRose\nCatherine\nConnie\nMartha\nPaula\nVeronica\nAnita\nLorraine\nYvonne\nSuzanne\nValerie\nSarah\nJanet\nRenee\nMichele\nGina\nAnn\nBonnie\nCarolyn\nDarlene\nLeslie\nSheila\nBecky\nIrene\nShelly\nFrances\nStacy\nVictoria\nCathy\nCharlotte\nMarie\nRosemary\nAndrea\nPeggy\nSally\nSherry\nDana\nDeanna\nRegina\nTamara\nBetty\nRosa\nShannon\nAnne\nJulia\nNorma\nRita\nRuth\nShirley\nStacey\nYvette\nCarla\nKatherine\nAlice\nAna\nJanice\nJill\nPenny\nCharlene\nColleen\nMelinda\nPriscilla\nDolores\nKathryn\nRoberta\nCecilia\nHolly\nLoretta\nRachel\nCarmen\nHelen\nJoyce\nLynn\nMarilyn\nTracey\nWanda\nBeth\nCaroline\nCarrie\nLydia\nShelley\nBeverly\nDorothy\nEllen\nSusie\nTammie\nTerry\nMargarita\nDarla\nHeather\nIrma\nJackie\nJoanne\nNora\nRamona\nSheri\nEsther\nGrace\nJamie\nJoann\nMartina\nPauline\nStella\nArlene\nElaine\nEvelyn\nHeidi\nJoan\nJuanita\nJudith\nSheryl\nToni\nAlicia\nJane\nKari\nKristi\nVicki\nApril\nKristen\nMelanie\nPatty\nTami\nTanya\nFrancine\nIsabel\nJean\nJeanne\nLeticia\nLucy\nNatalie\nSandy\nVivian\nVonda\nDoreen\nEva\nJodi\nLeah\nMarlene\nRoxanne\nSara\nSherrie\nVicky\nAllison\nBelinda\nDianna\nErin\nGlenda\nJosephine\nJosie\nKristine\nLynda\nPhyllis\nRobyn\nRuby\nVickie\nDelores\nMargie\nPam\nAlma\nElena\nGeraldine\nKellie\nAudrey\nBridget\nClara\nCrystal\nGwendolyn\nJeanette\nJo\nKarla\nKris\nKristin\nLucinda\nMaureen\nThelma\nCheri\nGenevieve\nJacquelyn\nJeannette\nJody\nKelli\nLena\nLouise\nLupe\nPatti\nShawn\nSonia\nVerna\nAngie\nBobbie\nEileen\nGuadalupe\nIda\nJessica\nJune\nMarcella\nMarian\nMarina\nRonda\nSonya\nTraci\nTrina\nBertha\nChristy\nDena\nDora\nDoris\nElla\nJoanna\nJodie\nKatrina\nKelley\nLillian\nLora\nLupita\nLynette\nMarianne\nMolly\nAlison\nAmanda\nAmelia\nAngelina\nCorina\nDianne\nJoy\nLorena\nMelody\nOlga\nPatsy\nRosita\nShauna\nShawna\nTeri\nVera\nAdrienne\nAngelita\nBeatrice\nBernadette\nBernice\nBillie\nCarole\nCecelia\nEmily\nErnestine\nFelicia\nGeorgia\nGretchen\nJenny\nLana\nMarcia\nMarjorie\nNanette\nOlivia\nPearl\nRosalie\nRosie\nSonja\nSusanna\nTerrie\nTonya\nValarie\nVanessa\nAlberta\nCarolina\nConstance\nDanielle\nDelia\nDina\nEvangeline\nGail\nGinger\nGracie\nHenrietta\nJacque\nJan\nJennie\nJessie\nKay\nLeigh\nLois\nMatilda\nRena\nRosemarie\nStaci\nTracie\nAntoinette\nCandy\nCindi\nDeneen\nEdith\nEleanor\nErma\nEsperanza\nGayle\nJana\nJoni\nKerry\nKristina\nLauren\nLee\nLeona\nLorie\nLorna\nLorrie\nMarcy\nMargo\nMarla\nMaryann\nMildred\nMindy\nNina\nPolly\nRene\nRoselyn\nSue\nSusana\nTrudy\nAmber\nArmida\nBessie\nBlanca\nCeleste\nChris\nElisa\nElvira\nEmma\nErnestina\nEstella\nFannie\nFrancisca\nGeneva\nGeorgina\nGlenna\nHazel\nHope\nJanie\nJocelyn\nJuana\nKristy\nLaverne\nLynne\nMarion\nMarsha\nMarta\nMercy\nMichael\nMisty\nMonique\nMyrna\nPaige\nPatrice\nRosalind\nRoxanna\nShelli\nSuzie\nTherese\nTricia\nTrisha\nAmalia\nAngelica\nCassandra\nCelia\nClarissa\nColeen\nDebora\nErlinda\nFlora\nJanis\nJeanine\nJerri\nJulianne\nKatie\nKerri\nKimberley\nKirsten\nLea\nLiz\nLiza\nLorri\nLucille\nLuz\nMaggie\nMarci\nMarylou\nMaxine\nNellie\nNicole\nNikki\nRobert\nRosalinda\nSabrina\nSamantha\nSophia\nTammi\nTana\nTara\nAdela\nAngel\nAnnabelle\nAnnie\nAnnmarie\nArtemisa\nCamille\nCara\nCarlene\nCelina\nConsuelo\nCora\nCorrina\nDanette\nDaphne\nDarcy\nDayna\nDeann\nDeanne\nDee\nEdna\nElsa\nElvia\nErika\nEsmeralda\nEve\nFaye\nGabriela\nGay\nIsabelle\nJami\nJanette\nJayme\nJeannie\nJeri\nJudi\nKarin\nKathie\nKimber\nKristie\nKrystal\nLadonna\nLeann\nLeeann\nLesley\nLily\nLorene\nLorinda\nLucia\nMarisa\nMerlinda\nNona\nPat\nRochelle\nRosalva\nSadie\nSandi\nShanna\nShari\nSocorro\nStarla\nSuzette\nTamera\nVelma\nViola\nZina\nLisa\nMary\nPatricia\nSusan\nKimberly\nCynthia\nKaren\nSandra\nLinda\nMaria\nLaura\nLori\nMichelle\nElizabeth\nJulie\nDeborah\nBrenda\nChristine\nRebecca\nPamela\nDonna\nBarbara\nTeresa\nKelly\nTammy\nDiane\nDebra\nTina\nSharon\nRhonda\nJennifer\nAnna\nDenise\nDiana\nAngela\nCheryl\nTheresa\nStephanie\nWendy\nCarol\nDebbie\nKathleen\nNancy\nSylvia\nTracy\nKim\nDawn\nMargaret\nRobin\nCindy\nMonica\nChristina\nMelissa\nAmy\nCarolyn\nGloria\nKathy\nVeronica\nJacqueline\nVirginia\nAndrea\nCatherine\nFrances\nPaula\nConnie\nJudy\nKatherine\nRose\nKathryn\nSuzanne\nMartha\nTerri\nVictoria\nDeanna\nJill\nNorma\nValerie\nGina\nShelly\nYvonne\nAnnette\nShannon\nSherri\nJanet\nSherry\nYolanda\nCarla\nLeslie\nLorraine\nMelinda\nJuanita\nLaurie\nDana\nMichele\nRenee\nSheila\nAnita\nAnn\nHeidi\nJanice\nShirley\nBetty\nDarlene\nElaine\nMarie\nRuth\nSally\nBecky\nCathy\nCharlene\nIrene\nAlice\nJoann\nRachel\nRosemary\nAna\nCharlotte\nEva\nRegina\nStacy\nVicki\nBeth\nDorothy\nLydia\nRita\nSarah\nYvette\nCecilia\nMarlene\nPeggy\nBeverly\nBonnie\nCarmen\nEvelyn\nJeanette\nJulia\nPriscilla\nSamantha\nHolly\nJackie\nJoyce\nPenny\nRoberta\nStacey\nColleen\nHeather\nHelen\nMelanie\nRosa\nSheri\nTerry\nCarrie\nJoanne\nJodi\nLoretta\nLynn\nRamona\nRuby\nTamara\nTraci\nApril\nCaroline\nErin\nGuadalupe\nJudith\nKristine\nLeticia\nAnne\nArlene\nJo\nKelli\nPhyllis\nJody\nJosephine\nLillian\nLupe\nPauline\nShawn\nToni\nAmanda\nAudrey\nEsther\nFelicia\nGeraldine\nKristina\nRonda\nSara\nSheryl\nSonia\nStella\nSusie\nBernice\nDelores\nJoy\nMarilyn\nOlivia\nRene\nVickie\nAlicia\nChristy\nDianna\nDora\nEllen\nEmily\nGrace\nIrma\nJamie\nJean\nJoan\nKristin\nLucy\nMartina\nRosie\nShelley\nTami\nTanya\nVonda\nBelinda\nDoreen\nKimberley\nLora\nPam\nSonya\nDena\nLucinda\nMargarita\nTonya\nVicky\nVivian\nWanda\nEileen\nGeorgia\nGlenda\nJosie\nMaureen\nMolly\nNatalie\nRobyn\nTeri\nVelma\nAntoinette\nCara\nDarla\nIsabel\nJana\nJeanne\nJeri\nJessica\nKarla\nLucia\nLynette\nMonique\nNora\nShawna\nTracey\nAmber\nAngie\nBridget\nCorina\nCrystal\nDolores\nGenevieve\nKris\nLena\nMarcella\nAlison\nAllison\nAngelina\nCassandra\nCecelia\nDebora\nDella\nEdith\nFrancisca\nGail\nGinger\nJane\nJeannette\nJennie\nJoanna\nKellie\nKerry\nLeah\nLynda\nMarla\nMelody\nPatty\nSandy\nShauna\nSue\nTrina\nTrisha\nAmelia\nAngelita\nBernadette\nCheri\nEleanor\nElisa\nElla\nElvira\nIda\nJacque\nJessie\nLorie\nMargie\nPatti\nPearl\nRosita\nShari\nVerna\nAlma\nBernadine\nCandace\nCarolina\nCorrina\nJanine\nKarin\nKatrina\nKristen\nKristy\nLaverne\nLee\nLenora\nLois\nLorena\nLouise\nMarian\nMarsha\nMarta\nMatilda\nMercedes\nOlga\nRosanna\nRoxanne\nSonja\nVanessa\nBeatrice\nCherie\nChris\nDanielle\nDeanne\nDoris\nElena\nElsa\nGeneva\nGwendolyn\nKara\nLauri\nLupita\nMarianne\nMarjorie\nMona\nPatsy\nRachelle\nRena\nStaci\nSusana\nTammie\nTerrie\nVera\nWilma\nAlberta\nAntonia\nBertha\nBillie\nBobbi\nCarole\nCathleen\nCelia\nClara\nCristina\nDebby\nDelia\nDesiree\nDianne\nEdna\nEvangelina\nHilda\nJacquelyn\nJanelle\nJanette\nJenny\nJuli\nKari\nKelley\nKimberlee\nKristi\nLeanne\nMargo\nMia\nNaomi\nNina\nRobbin\nRosemarie\nSabrina\nSelina\nSuzette\nTiffany\nAdrienne\nAnnie\nBetsy\nCandy\nClaudia\nConsuelo\nElvia\nEsmeralda\nEstella\nEugenia\nEvangeline\nFrancine\nFrankie\nGay\nGena\nImelda\nJan\nJanell\nJodie\nJolene\nJuliana\nJune\nKatie\nKay\nKendall\nLana\nLeann\nLiza\nLucille\nMarcelina\nMaricela\nMarina\nMaxine\nMyrna\nNadine\nRae\nRaquel\nRochelle\nRosalie\nRosalinda\nSallie\nTamera\nTammi\nThelma\nTricia\nAlana\nAlisa\nAlta\nAmalia\nAngelica\nAurora\nBobbie\nCatalina\nChrista\nClarissa\nConstance\nDee\nDina\nDixie\nElva\nErlinda\nEtta\nGwen\nHazel\nIngrid\nJeanine\nJerri\nJoni\nKaryn\nKeri\nKirsten\nLaurel\nLauren\nLenore\nLiz\nLola\nLorri\nLorrie\nLuz\nLynne\nMarci\nMarcia\nMarisa\nMarisela\nMisty\nMyra\nNellie\nRachael\nRandi\nRomona\nShana\nSocorro\nSophia\nTara\nThomas\nTracie\nViolet\nLisa\nMary\nKimberly\nMichelle\nCynthia\nPatricia\nSandra\nSusan\nJulie\nMaria\nJennifer\nKaren\nDeborah\nRebecca\nTammy\nElizabeth\nChristine\nLaura\nLinda\nBarbara\nBrenda\nDonna\nTeresa\nStephanie\nTina\nPamela\nAngela\nKelly\nCarol\nDebra\nMelissa\nSharon\nChristina\nMonica\nKathleen\nMargaret\nCheryl\nNancy\nAmy\nDenise\nLori\nDiana\nTracy\nDiane\nVeronica\nTheresa\nAnna\nSylvia\nWendy\nCindy\nDawn\nRhonda\nDebbie\nPaula\nKathy\nMichele\nJanet\nConnie\nKim\nJacqueline\nSherry\nCarolyn\nCatherine\nRobin\nGina\nKatherine\nAndrea\nVictoria\nGloria\nYvonne\nAnita\nVirginia\nDeanna\nIrene\nTerri\nMartha\nAnn\nAnnette\nFrances\nKathryn\nSheila\nYolanda\nLeslie\nShannon\nLorraine\nStacy\nValerie\nSarah\nRachel\nRoberta\nRosemary\nRuth\nShelly\nSherri\nCecilia\nLaurie\nNorma\nRenee\nRose\nCathy\nJulia\nBeth\nSuzanne\nDarlene\nHeather\nJill\nJudy\nTiffany\nShelley\nBecky\nEvelyn\nRegina\nRosa\nStacey\nApril\nCarla\nCarrie\nRita\nSonia\nDana\nGuadalupe\nTracey\nTerry\nAnne\nHeidi\nHolly\nJanice\nKristin\nYvette\nAna\nCharlotte\nDorothy\nEsther\nHelen\nIrma\nMarie\nMelinda\nBetty\nCarmen\nJamie\nJoann\nKristine\nPriscilla\nShirley\nAlice\nJosephine\nLoretta\nLydia\nNatalie\nSheri\nJackie\nLynn\nSally\nSara\nShawna\nAlicia\nAmanda\nBeverly\nJessica\nJuanita\nKristina\nMarlene\nTamara\nTonya\nVicki\nCaroline\nCharlene\nElaine\nJeanette\nJoanne\nRamona\nTami\nArlene\nGlenda\nGrace\nJean\nLeticia\nMargarita\nNora\nBonnie\nColleen\nKristen\nToni\nAudrey\nDolores\nJo\nJoy\nJoyce\nMelanie\nSusie\nTanya\nEileen\nJoan\nJody\nKristi\nPhyllis\nSandy\nSheryl\nSonya\nDoreen\nEllen\nGeraldine\nJodi\nLucy\nMarjorie\nMelody\nVickie\nAngelica\nBelinda\nJudith\nKari\nKarla\nKelley\nKimberley\nMarilyn\nMolly\nPauline\nStella\nVivian\nAlma\nAngelita\nDora\nEdna\nErin\nGail\nJoanna\nLeah\nLucinda\nOlga\nPatty\nRosalie\nSusana\nTraci\nVicky\nVonda\nAngelina\nCandace\nCheri\nChristy\nDanielle\nGinger\nLouise\nMarina\nPam\nPeggy\nRobyn\nRonda\nRuby\nSamantha\nSonja\nTeri\nTrina\nVanessa\nBernadette\nBertha\nClara\nHope\nIsabel\nJennie\nKatrina\nLena\nLorena\nMarcia\nMartina\nMonique\nNadine\nNellie\nPenny\nRosie\nRoxanne\nShawn\nWanda\nAlberta\nCandy\nCathleen\nChris\nDesiree\nDianna\nEdith\nEleanor\nGeorgina\nJane\nJenny\nKelli\nKerry\nLora\nMarta\nMisty\nNicole\nOlivia\nRochelle\nBridget\nCarole\nCristina\nDarla\nDella\nDina\nElvira\nErlinda\nEva\nFrancine\nGenevieve\nGretchen\nJacque\nJana\nJanine\nJeannie\nKarin\nLaverne\nLupe\nLuz\nMarcella\nMarla\nMaryann\nRachael\nShari\nShauna\nSophia\nAmelia\nAnnie\nBeatrice\nBernice\nCassandra\nChristie\nDelia\nDoris\nEmily\nErma\nEsperanza\nEstella\nFrancisca\nGraciela\nGwendolyn\nJanette\nJeanne\nJolene\nKay\nKendra\nKris\nKristy\nLee\nLynette\nLynne\nMaureen\nMildred\nMiriam\nMona\nPatsy\nRene\nRosita\nSilvia\nTamera\nTammi\nAlisa\nAllison\nBerlinda\nBernadine\nBlanca\nBridgette\nCarolina\nCecelia\nCeleste\nCherie\nCorina\nCorinne\nElvia\nEvangeline\nFaith\nFelicia\nGeorgia\nInez\nJeannette\nJeri\nKirsten\nKrista\nMargie\nMatilda\nMichael\nNaomi\nNina\nRenae\nSherrie\nSuzette\nTammie\nTrisha\nVera\nAlvina\nAntoinette\nAntonia\nAudra\nAurora\nBobbi\nBobbie\nCarmelita\nCatalina\nConstance\nConsuelo\nCrystal\nDaphne\nDeann\nDebby\nElena\nEnedina\nFreida\nGayla\nHenrietta\nIda\nJami\nJan\nJessie\nJosie\nKellie\nKimberlee\nLea\nLeann\nLeigh\nLillian\nLucia\nLucille\nLupita\nMae\nMarisa\nPaige\nPolly\nRaquel\nRena\nRosalia\nRoxanna\nShana\nStacie\nSue\nTara\nWendi\nAdrianne\nAimee\nAlison\nAmber\nAngie\nBelen\nBethany\nCandice\nCelina\nClarissa\nColette\nCorrine\nDanette\nDayna\nDeanne\nDebora\nDeedee\nDena\nDianne\nElisa\nElise\nElsa\nEmma\nEtta\nGayle\nGena\nGreta\nHerlinda\nIsabelle\nJeanie\nJune\nKara\nKathrine\nKatie\nKristie\nLeanne\nLenora\nLiz\nLiza\nLorie\nLynda\nMarcie\nMargo\nMarian\nMaxine\nNanette\nPearl\nRosalind\nRosanna\nRosanne\nRoseann\nSabra\nSelina\nSharla\nShelia\nSondra\nSuzie\nThelma\nTricia\nTrudy\nWhitney\nWinifred\nLisa\nMichelle\nMary\nKimberly\nMaria\nPatricia\nStephanie\nCynthia\nJulie\nSusan\nJennifer\nSandra\nElizabeth\nDeborah\nLaura\nTammy\nKaren\nChristine\nTeresa\nMelissa\nBrenda\nLinda\nPamela\nDonna\nRebecca\nBarbara\nAngela\nChristina\nDebra\nLori\nTina\nDawn\nKelly\nNancy\nAmy\nDenise\nSharon\nDiana\nMonica\nAnna\nVeronica\nDiane\nMargaret\nCheryl\nTracy\nCarol\nRhonda\nWendy\nPaula\nGloria\nCindy\nTheresa\nCatherine\nGina\nKathleen\nMichele\nNorma\nVictoria\nAnnette\nDebbie\nSylvia\nJacqueline\nAndrea\nJill\nRachel\nVirginia\nMartha\nSheila\nYvonne\nKatherine\nYolanda\nRobin\nShannon\nSherry\nStacy\nStacey\nJanet\nApril\nKathy\nLeslie\nRosa\nSarah\nAnita\nConnie\nSherri\nTerri\nKim\nCarolyn\nDarlene\nDeanna\nJulia\nLaurie\nRenee\nTamara\nAnne\nHeather\nRose\nSuzanne\nYvette\nCarmen\nCarrie\nHolly\nValerie\nJuanita\nLorraine\nCathy\nRegina\nShelly\nJamie\nSheri\nAnn\nKristina\nMarie\nCarla\nCharlene\nColleen\nKathryn\nKristine\nShelley\nTiffany\nBecky\nDana\nMelinda\nAlice\nBonnie\nFrances\nKristin\nLydia\nJudy\nLeticia\nArlene\nJeanette\nLoretta\nSally\nTracey\nBeverly\nCecilia\nHeidi\nLynn\nMargarita\nRita\nTonya\nGeraldine\nPriscilla\nRoberta\nAlicia\nIrene\nJodi\nJoyce\nSonia\nSonya\nVicki\nAna\nEsther\nHelen\nMelanie\nSamantha\nSara\nTanya\nTeri\nCaroline\nDorothy\nGrace\nJackie\nBernadette\nBetty\nEva\nEvelyn\nGuadalupe\nIrma\nJanice\nLucinda\nRonda\nRuth\nSabrina\nToni\nVanessa\nCharlotte\nDolores\nErin\nJoann\nJoy\nLeah\nMarilyn\nRamona\nBeth\nBridget\nCrystal\nKelley\nKristen\nNicole\nOlivia\nPauline\nRosemary\nTerry\nTraci\nTrina\nChristy\nDina\nJessica\nJoanne\nKristi\nShawna\nShirley\nStella\nAudrey\nCassandra\nKelli\nLorena\nPeggy\nVickie\nClaudia\nIsabel\nJean\nJo\nKimberley\nMonique\nNatalie\nRoxanne\nShari\nShawn\nAllison\nAlma\nBelinda\nCheri\nDelores\nDora\nDoreen\nElaine\nElisa\nJane\nJody\nJosephine\nLucy\nLynette\nMargie\nMarlene\nMona\nSandy\nSheryl\nTami\nTracie\nVivian\nAngelica\nBeatrice\nCorina\nDanielle\nDarla\nDesiree\nFelicia\nGail\nJanelle\nKellie\nKerry\nLorie\nLouise\nMarjorie\nMartina\nMelody\nMisty\nNina\nNora\nPenny\nRobyn\nShauna\nSherrie\nVicky\nWanda\nAngelita\nAngie\nAntoinette\nDianna\nDoris\nElena\nGinger\nJoanna\nJosie\nKirsten\nLena\nLora\nMarcella\nPatsy\nRosie\nRuby\nTammie\nVerna\nWendi\nAmelia\nDelia\nEllen\nGeorgia\nGeorgina\nGwendolyn\nJudith\nKara\nKerri\nKristy\nLana\nLara\nLeigh\nLupe\nLynda\nMarcia\nMarla\nNadine\nPatti\nPatty\nPhyllis\nRachael\nStaci\nSusanne\nVonda\nAmanda\nCarey\nClara\nCristina\nDeann\nEdna\nErnestine\nJeannette\nJeannie\nKari\nKristie\nLeann\nLenora\nLuz\nMarian\nMatilda\nRene\nRosita\nSusie\nSuzette\nTonia\nTrisha\nAlberta\nAudra\nBernice\nBertha\nCeleste\nChristie\nClarissa\nDanette\nDeana\nEleanor\nErika\nEstella\nGeneva\nGenevieve\nGretchen\nJana\nJoan\nJodie\nKarin\nKatrina\nLaverne\nLois\nMaricela\nMarina\nNanette\nVera\nAngelina\nBlanca\nCandace\nDeanne\nDena\nEileen\nElsa\nElvia\nFrancine\nGladys\nGraciela\nJune\nKarla\nKendra\nKrista\nLeona\nLupita\nLynnette\nMara\nMaryann\nMercedes\nMeredith\nMiriam\nRaquel\nRena\nRosalinda\nRosemarie\nSilvia\nSophia\nStacie\nTamera\nTammi\nAdriana\nAdrienne\nAimee\nAlfreda\nBetsy\nBobbie\nBrandi\nCaren\nCecelia\nCelia\nChris\nConsuelo\nDaphne\nDebora\nDee\nElva\nElvira\nEmily\nFlora\nGayle\nGlenda\nIda\nJeanne\nJeri\nJoni\nKaryn\nLillian\nLorna\nLourdes\nMalinda\nMarion\nMarnie\nMaureen\nMelisa\nMia\nPaulette\nRebekah\nRochelle\nRoni\nRoseann\nSusana\nTania\nTara\nAbigail\nAlisa\nAmber\nArlinda\nBelen\nBillie\nBonita\nCherie\nChristi\nDeedee\nDelphina\nDianne\nDori\nEliza\nElla\nErlinda\nEvangeline\nFaith\nGlenna\nHelena\nIris\nJanine\nJeanna\nJenny\nJesusita\nJulianne\nJulieta\nKatie\nKay\nKeri\nKris\nLee\nLucia\nMarcy\nMargo\nMarietta\nMarisa\nMarlo\nMarsha\nMarta\nMaxine\nMinerva\nNellie\nPam\nPolly\nRenita\nRosanna\nSelena\nSharla\nSharolyn\nTrudy\nMichelle\nLisa\nKimberly\nJennifer\nMary\nLaura\nPatricia\nMaria\nJulie\nTammy\nMelissa\nChristine\nElizabeth\nCynthia\nKaren\nRebecca\nDeborah\nChristina\nSusan\nAngela\nStephanie\nKelly\nSandra\nTina\nTeresa\nLinda\nDawn\nPamela\nLori\nTracy\nBarbara\nDebra\nMonica\nDiana\nAmy\nDonna\nShannon\nCheryl\nWendy\nTheresa\nDenise\nMichele\nSharon\nVeronica\nBrenda\nRhonda\nAndrea\nCatherine\nDiane\nGina\nNancy\nHeather\nCarol\nKathleen\nVictoria\nPaula\nSylvia\nAnna\nRobin\nTamara\nAnnette\nCindy\nMargaret\nValerie\nStacey\nYolanda\nGloria\nJill\nSherry\nVirginia\nYvonne\nAnn\nDebbie\nKatherine\nJacqueline\nSheila\nKim\nMelinda\nApril\nConnie\nTerri\nCarla\nDeanna\nShelly\nStacy\nHolly\nNorma\nCarrie\nLeslie\nRachel\nRenee\nKathryn\nKristin\nMartha\nMelanie\nSuzanne\nJanet\nLaurie\nSarah\nCarolyn\nIrene\nJuanita\nKristine\nRegina\nSherri\nAnita\nDarlene\nKathy\nRose\nBonnie\nFrances\nTanya\nSonia\nRamona\nAna\nCharlene\nCharlotte\nJamie\nKristen\nRoberta\nBecky\nDana\nHelen\nTraci\nYvette\nJudy\nKelli\nLoretta\nPriscilla\nSamantha\nTiffany\nTonya\nVicki\nAlicia\nAnne\nBeth\nJudith\nJulia\nSheri\nTami\nCathy\nEsther\nJodi\nNicole\nShelley\nTammie\nCarmen\nJoanna\nKristi\nMarie\nRoxanne\nToni\nBeverly\nDanielle\nElaine\nHeidi\nIsabel\nJanice\nJosephine\nLeticia\nLynette\nNatalie\nRita\nShawn\nDarla\nGuadalupe\nRosemary\nSonya\nSuzette\nTerry\nVanessa\nKristina\nLynn\nPauline\nRonda\nBetty\nKari\nLucy\nMargarita\nRosa\nShirley\nAmber\nBeatrice\nCaroline\nColleen\nIrma\nKerry\nLorena\nLorraine\nMarlene\nRuth\nVickie\nAlma\nAmanda\nBelinda\nCecilia\nGinger\nMelody\nSally\nSara\nTeri\nAlice\nAudrey\nBernadette\nCrystal\nDolores\nJody\nKerri\nKimberley\nLara\nLydia\nPeggy\nTrisha\nVivian\nChristy\nDianna\nErin\nEvelyn\nJo\nJoanne\nRaquel\nStacie\nTracey\nAudra\nBernice\nDorothy\nEileen\nErica\nFelicia\nJackie\nJessica\nKirsten\nMarcella\nMonique\nRene\nRobyn\nRosita\nShana\nShawna\nTara\nCandace\nClaudia\nCristina\nDeana\nEdna\nFrancine\nGeraldine\nJoann\nJoy\nJoyce\nKristy\nLora\nLucinda\nMisty\nPatty\nShauna\nAngelina\nAntoinette\nBertha\nBobbi\nBrandi\nConstance\nEvangeline\nGenevieve\nGwendolyn\nJane\nJeanette\nKara\nKatrina\nKelley\nKellie\nKris\nMarilyn\nMarla\nNora\nOlga\nPearl\nPenny\nShanna\nShari\nSonja\nAngelica\nArlene\nBobbie\nBridget\nCeleste\nCheri\nClarissa\nDora\nEllen\nEva\nGeorgia\nGrace\nJenny\nKarla\nKrista\nLeann\nLillian\nMarina\nMaureen\nNina\nRuby\nSabrina\nShelia\nStella\nTracie\nCamille\nCassandra\nCherie\nChrista\nChristie\nClara\nDelores\nDina\nElena\nElisabeth\nEmily\nGlenda\nJana\nJeanne\nJoan\nJolene\nKatie\nKendra\nLaverne\nLeah\nLynda\nMargie\nMarjorie\nMichael\nOlivia\nSandy\nTrina\nVonda\nWanda\nAlisa\nAlison\nAnissa\nBillie\nCandice\nCari\nCathleen\nDelia\nDella\nDena\nDianne\nEmma\nGail\nJean\nJeannie\nKeri\nKimberlee\nLaurel\nLee\nMarta\nNadine\nPatti\nPaulette\nRochelle\nSophia\nSusanna\nSusie\nTricia\nTrudy\nVicky\nAdrienne\nAngelita\nAngie\nBlanca\nCandy\nCara\nCecelia\nCorrina\nDeanne\nDoreen\nDoris\nGretchen\nJacquelyn\nJeannette\nJosette\nLesley\nLois\nLouise\nMarcia\nMarnie\nMegan\nMona\nPam\nPhyllis\nRachelle\nRosalie\nRosemarie\nSerena\nSherrie\nSue\nTamra\nVerna\nAlexandra\nAllison\nAngel\nAngelique\nArlinda\nCarey\nCarmelita\nCassie\nDarcy\nDeann\nDebora\nDesiree\nElsa\nErlinda\nErnestine\nGeneva\nGeorgina\nHannah\nHillary\nIngrid\nJessie\nJosie\nJuana\nJune\nKay\nKristie\nLea\nLeanne\nLorie\nLourdes\nMaricela\nMarlo\nMarsha\nMartina\nMyrna\nNannette\nNikki\nNoelle\nPolly\nRae\nSelina\nShannan\nSheryl\nVelma\nWendi\nAdelina\nAdriana\nAlberta\nAntonia\nBernadine\nBianca\nBrandy\nBridgette\nCarri\nCasandra\nCelia\nCelina\nColette\nCorina\nCourtney\nCristy\nDanelle\nEleanor\nElisa\nElvira\nEricka\nErika\nEugenia\nEvangelina\nGabrielle\nHilda\nJanelle\nJanie\nJenifer\nJeri\nJodie\nJolie\nKarie\nLadonna\nLana\nLeigh\nLena\nLenora\nLily\nLiza\nLupe\nMarcy\nMargo\nMaribel\nMarisa\nMaryann\nMercy\nMitzi\nMolly\nNanette\nNatasha\nPetra\nRebekah\nRoxanna\nSocorro\nTabatha\nTamera\nTammi\nTania\nThelma\nTonia\nTuesday\nTyra\nLisa\nMichelle\nJennifer\nKimberly\nMary\nLaura\nMelissa\nStephanie\nPatricia\nJulie\nTammy\nCynthia\nMaria\nShannon\nAmy\nChristina\nChristine\nSusan\nRebecca\nLori\nSandra\nElizabeth\nMonica\nAngela\nTina\nDeborah\nKelly\nKaren\nHeather\nDawn\nTracy\nDenise\nTeresa\nLinda\nRachel\nBrenda\nDiana\nVeronica\nBarbara\nDonna\nKathleen\nAnna\nCheryl\nMichele\nWendy\nDebra\nAndrea\nDiane\nPamela\nCatherine\nPaula\nNancy\nRhonda\nCarol\nSharon\nYvonne\nKatherine\nRobin\nVictoria\nAnn\nYolanda\nDeanna\nGina\nMargaret\nCindy\nMelinda\nTiffany\nTheresa\nHolly\nValerie\nAnnette\nApril\nLeslie\nCarrie\nJulia\nStacey\nCarla\nJacqueline\nSarah\nStacy\nKathy\nNicole\nAnita\nTraci\nSylvia\nRegina\nDana\nSonia\nJill\nSheila\nJanet\nKristin\nVirginia\nMartha\nTanya\nNorma\nSuzanne\nDebbie\nErin\nKathryn\nKim\nConnie\nDarlene\nTamara\nYvette\nBecky\nColleen\nKristine\nRenee\nRose\nShelly\nIrene\nJamie\nLaurie\nRoberta\nAlicia\nJody\nRaquel\nTracey\nJodi\nJuanita\nKristen\nKristina\nMelanie\nShawna\nSherry\nAlice\nAmanda\nBonnie\nCrystal\nGloria\nHeidi\nNatalie\nRita\nSamantha\nSherri\nTricia\nCarolyn\nCharlotte\nClaudia\nLeticia\nLoretta\nGuadalupe\nJessica\nSheri\nDanielle\nIrma\nLorraine\nLydia\nMarlene\nSara\nTerri\nTonya\nBetty\nDina\nEva\nFrances\nKelli\nMarie\nRobyn\nShelley\nVicki\nBelinda\nKatrina\nKristi\nLucinda\nPenny\nVickie\nAna\nAnne\nCassandra\nCecilia\nCharlene\nChristy\nJanice\nJeanette\nJoann\nLeah\nPeggy\nTrina\nVivian\nBeverly\nCaroline\nCathy\nElaine\nLora\nMelody\nRuth\nCarmen\nDolores\nJosephine\nKellie\nMonique\nAlisa\nBeth\nCheri\nEsther\nHelen\nJudy\nLara\nPriscilla\nRamona\nRosa\nShawn\nSheryl\nTami\nTara\nAngelica\nAudrey\nBernadette\nDena\nEmily\nLynn\nMarilyn\nRochelle\nShirley\nTammie\nDarla\nDorothy\nJo\nJoanna\nMarla\nPauline\nRosemary\nSally\nTerry\nWanda\nBridget\nKari\nKerry\nKimberley\nRene\nSonja\nTeri\nToni\nVanessa\nAimee\nAlma\nAmber\nCandy\nFelicia\nGenevieve\nGinger\nIsabel\nJeanne\nJoanne\nJudith\nKristy\nLynda\nMarcella\nMargarita\nNora\nRonda\nSabrina\nSandy\nShauna\nSonya\nJoy\nKristie\nMisty\nRoxanne\nShari\nBobbie\nBrandi\nDeanne\nErica\nGrace\nJoan\nJoyce\nKara\nKelley\nLynette\nMartina\nSherrie\nTracie\nVicky\nAdrienne\nArlene\nBertha\nBrandy\nCathleen\nCristina\nDeana\nDianne\nEdith\nElena\nElvira\nEvelyn\nGeraldine\nJeannette\nKendra\nLillian\nLucille\nMarianne\nMarsha\nMolly\nMona\nOlivia\nPatsy\nRuby\nSusie\nTrisha\nAllison\nAnissa\nBernice\nCarmelita\nChristie\nEllen\nErika\nHenrietta\nJackie\nJacque\nJanette\nJeri\nKatie\nKeri\nKirsten\nKrista\nMaryann\nMaureen\nShanna\nStacie\nTammi\nAmelia\nAngelina\nBillie\nCamille\nCeleste\nCorina\nEileen\nElisa\nErnestine\nEvangelina\nGeorgina\nGlenda\nGwendolyn\nJenny\nJessie\nJuliet\nKimberlee\nLena\nLupe\nMadeline\nMarcy\nMarisela\nMindy\nMyrna\nNadine\nNikki\nNina\nPhyllis\nRachael\nRena\nSusana\nSusanne\nTabatha\nTawnya\nWendi\nAngie\nAudra\nBeatrice\nCandace\nChristi\nClarissa\nColette\nDanette\nDebora\nDianna\nDora\nDoris\nGail\nGayle\nGeneva\nGraciela\nJana\nJanelle\nJerri\nJodie\nJosie\nJulianna\nKarla\nKerri\nLadonna\nLaverne\nLee\nLesa\nLola\nLucy\nMarci\nMatilda\nMaxine\nNaomi\nNoelle\nOlga\nRachelle\nSaundra\nStaci\nTamra\nAlison\nAngelique\nAngelita\nCelia\nChandra\nCherie\nClara\nDaphne\nDionne\nElsa\nEmma\nEthel\nFrancisca\nGabrielle\nJolene\nKarin\nKatharine\nLeanne\nLeigh\nLenora\nLiza\nLorena\nLouise\nLuz\nLynne\nMargie\nMaricela\nMarisa\nMeredith\nNichole\nPam\nRebekah\nRenae\nRoxanna\nSerena\nShana\nSophia\nStella\nValarie\nAdela\nAlexandra\nAngel\nAntonia\nBernadine\nBethany\nCandice\nCecelia\nChrista\nCorinne\nCornelia\nCourtney\nDarcy\nDayna\nDeena\nDelia\nDelores\nDelphine\nDenice\nDesiree\nDoreen\nElla\nElsie\nFreda\nGeri\nHilda\nIda\nIris\nJacquelyn\nJaime\nJami\nJane\nJean\nJeannie\nJenifer\nJonnie\nJustine\nKaryn\nKay\nKori\nLana\nLaurel\nLauren\nLesley\nLois\nLorie\nLorrie\nLynnette\nMandy\nManuela\nMarcia\nMarian\nMarion\nMarlena\nMarnie\nMarta\nMeghan\nMercy\nMildred\nMiranda\nPaige\nPatti\nPaulette\nPetra\nRosalinda\nRosita\nShelia\nSusanna\nTabitha\nTania\nTonia\nTonja\nTwila\nVera\nVikki\nVonda\nWinifred\nJennifer\nLisa\nMichelle\nKimberly\nMelissa\nAmy\nJulie\nMaria\nShannon\nMary\nStephanie\nAngela\nPatricia\nElizabeth\nLaura\nChristina\nChristine\nTracy\nCynthia\nHeather\nRebecca\nTammy\nSusan\nSandra\nTina\nMonica\nKaren\nDenise\nLori\nDeborah\nAnna\nVeronica\nDawn\nKelly\nPamela\nAndrea\nTheresa\nTeresa\nDonna\nBrenda\nWendy\nBarbara\nSharon\nDiana\nMichele\nLinda\nPaula\nStacy\nRachel\nApril\nCatherine\nTanya\nDebra\nHolly\nNancy\nRobin\nTamara\nCheryl\nKathleen\nValerie\nDiane\nNicole\nStacey\nRhonda\nVictoria\nCindy\nRenee\nTiffany\nJacqueline\nJill\nCarol\nJessica\nMargaret\nGina\nCarrie\nDana\nCarolyn\nAlicia\nKristine\nKristen\nRegina\nTara\nTraci\nCrystal\nGloria\nKristina\nSylvia\nHeidi\nKatherine\nYvonne\nDeanna\nJulia\nLeslie\nJanet\nKristin\nMelanie\nSarah\nSherri\nVirginia\nCharlene\nJuanita\nKathy\nTracey\nYvette\nChristy\nErin\nSonia\nAnn\nKathryn\nKristi\nLaurie\nSherry\nJodi\nKim\nSuzanne\nAmanda\nConnie\nIrene\nRoberta\nAnnette\nTonya\nJamie\nNatalie\nTricia\nMartha\nNorma\nAnita\nClaudia\nJoann\nJody\nPriscilla\nRose\nShelly\nTerri\nDarlene\nRosa\nRosemary\nSabrina\nBonnie\nDina\nKari\nRaquel\nSheri\nCarmen\nFrances\nRita\nSally\nSheila\nToni\nAnne\nJudy\nKarla\nKelli\nLeticia\nLorraine\nYolanda\nBecky\nDena\nMelinda\nShelley\nBelinda\nDebbie\nSamantha\nCarla\nGuadalupe\nKatrina\nRobyn\nSara\nShawna\nVanessa\nAlice\nCathy\nCorina\nDanielle\nErica\nFrancine\nShauna\nVicki\nBeverly\nCassandra\nEmily\nErika\nGrace\nLeah\nLydia\nBeth\nCecilia\nJudith\nMarie\nMisty\nTami\nTrina\nAna\nAngelina\nBobbie\nBrandi\nColleen\nJanice\nJeannie\nJosephine\nKellie\nBernadette\nBetty\nJoanna\nNora\nPeggy\nRene\nSonja\nAlma\nAngelica\nAngie\nAudra\nElisa\nEva\nGinger\nJean\nJeanette\nJo\nKerry\nLara\nMarlene\nPauline\nPenny\nRachael\nRuth\nSandy\nSonya\nAmber\nBridget\nDolores\nDorothy\nGeraldine\nGwendolyn\nKara\nKerri\nLucinda\nLynn\nMarla\nRamona\nShanna\nTammie\nTerry\nBrandy\nCaroline\nEsther\nHelen\nIrma\nJackie\nJenny\nJoy\nKrista\nKristie\nLauren\nLoretta\nRoxanne\nShawn\nStacie\nTeri\nTrisha\nWendi\nAngelique\nCharlotte\nCheri\nDarla\nEileen\nJoanne\nKristy\nLupita\nMelody\nMolly\nOlivia\nSheryl\nStaci\nStefanie\nStella\nVivian\nAllison\nBernice\nCourtney\nDeana\nDelia\nDianna\nEdith\nElaine\nKimberley\nLorena\nLorrie\nLupe\nMarcella\nMarilyn\nRochelle\nShirley\nTonia\nVickie\nWanda\nAimee\nAlisa\nAngel\nAntoinette\nArlinda\nCecelia\nChristie\nClara\nDora\nGeneva\nIsabel\nJanie\nJeannette\nKimberlee\nLucy\nLynda\nMarcia\nMaureen\nMindy\nMonique\nNadine\nRachelle\nRuby\nTamera\nTracie\nAlberta\nAmelia\nBeatrice\nBillie\nBrooke\nCari\nGeorgina\nJoan\nJoyce\nMargarita\nMarsha\nShana\nAdriana\nAngelita\nAudrey\nBertha\nBobbi\nCharity\nCherie\nChrista\nDeena\nDella\nEdna\nEmma\nEvelyn\nGail\nGenevieve\nGretchen\nJane\nJennie\nKelley\nKeri\nKirsten\nLea\nLillian\nMarian\nRonda\nRosita\nShari\nSherrie\nVerna\nBethany\nCandy\nCorrina\nDanette\nDesiree\nDianne\nElsa\nElvira\nErnestine\nFelicia\nFrancisca\nGlenda\nJanette\nJolene\nJoni\nKarin\nKatharine\nKendra\nLeann\nLeigh\nLeona\nLiza\nLora\nMarci\nMarisa\nMarissa\nMelisa\nNina\nPatty\nPhyllis\nTabatha\nTamra\nTisha\nVera\nVicky\nAlexandra\nArlene\nBlanca\nCandice\nCarmelita\nCarolina\nCeleste\nCelia\nChris\nChristi\nClarissa\nCristina\nDarci\nDarcy\nDelores\nEleanor\nEllen\nFlora\nGeorgia\nHilda\nJenifer\nJeri\nJuliana\nKerrie\nLeanna\nLeanne\nLorie\nNaomi\nNichole\nPatsy\nPaulette\nRena\nRoseann\nRoxann\nSofia\nSophia\nSusie\nSuzette\nTasha\nTyra\nViolet\nAdela\nAlison\nAnnie\nBridgett\nCandace\nCara\nConstance\nDaphne\nDionne\nDoreen\nDoris\nEstella\nHollie\nJeanne\nJessie\nJuliet\nJune\nKatie\nKris\nLaurel\nLee\nLena\nLillie\nLourdes\nLuz\nLynette\nMargo\nMari\nMarietta\nMarina\nMaritza\nMaxine\nMeredith\nPatti\nRobert\nRosanna\nSerena\nShannan\nSharla\nSilvia\nSondra\nSusanne\nValarie\nViola\nAlta\nAnissa\nAnnalisa\nBetsy\nCarey\nCassie\nCatrina\nChandra\nChristian\nClaudette\nColette\nConcepcion\nConsuelo\nCorinna\nDavina\nDeann\nDebora\nDenna\nDonald\nElisabeth\nElise\nEvangeline\nEvangelita\nFaith\nGena\nGladys\nHenrietta\nHillary\nHope\nJana\nJodie\nJohanna\nJosette\nJustine\nKyle\nLaverne\nLilia\nLucia\nLynne\nMadeline\nMarcie\nMaribel\nMarnie\nMegan\nMiriam\nMona\nMorgan\nNannette\nNatasha\nNikki\nOlga\nOrlinda\nRosalinda\nRosie\nShelby\nShelli\nSusana\nTerrie\nThelma\nTonja\nValencia\nVelda\nJennifer\nLisa\nMichelle\nKimberly\nChristina\nMelissa\nAmy\nJulie\nStephanie\nShannon\nMaria\nChristine\nAngela\nLaura\nMary\nCynthia\nHeather\nPatricia\nElizabeth\nMonica\nRebecca\nTammy\nTina\nDawn\nTracy\nAndrea\nLori\nSandra\nDenise\nTeresa\nKaren\nSusan\nVeronica\nWendy\nStacy\nRachel\nBrenda\nDeborah\nKelly\nLinda\nApril\nTiffany\nPamela\nAnna\nNicole\nTheresa\nDiana\nSharon\nMichele\nDebra\nBarbara\nCheryl\nJessica\nKathleen\nStacey\nCindy\nValerie\nYvonne\nCarrie\nCarol\nKatherine\nKristina\nRhonda\nDeanna\nHolly\nJacqueline\nVictoria\nLeslie\nNancy\nTanya\nDonna\nJill\nKristin\nSuzanne\nTamara\nCrystal\nRobin\nSarah\nDiane\nMelanie\nMelinda\nRenee\nSylvia\nYolanda\nAlicia\nHeidi\nShawna\nSonia\nVanessa\nAnn\nCatherine\nSherry\nKristen\nKristine\nMargaret\nTara\nChristy\nAnnette\nGina\nGloria\nRegina\nTricia\nVirginia\nErin\nJulia\nTraci\nRoberta\nAngelica\nAnita\nDanielle\nJamie\nKristi\nShelly\nYvette\nCarla\nJodi\nMartha\nNatalie\nPaula\nTonya\nDana\nRosa\nTrina\nFrances\nSheila\nAmanda\nConnie\nIrene\nLaurie\nLeticia\nSherri\nAllison\nKathryn\nRose\nSonya\nTerri\nCarmen\nDarlene\nGinger\nKathy\nSheri\nTracey\nBonnie\nLorraine\nRaquel\nAna\nMarie\nErica\nRoxanne\nCassandra\nCathy\nEmily\nFelicia\nJanet\nKim\nRamona\nRita\nClaudia\nKelli\nMarlene\nSamantha\nSara\nShelley\nAmber\nBecky\nCarolyn\nCecilia\nIrma\nKrista\nRobyn\nTami\nToni\nBernadette\nCharlotte\nJuanita\nDebbie\nDianna\nJennie\nMisty\nWanda\nBrandy\nDena\nKari\nKimberley\nKristie\nLoretta\nMarcella\nNorma\nAnne\nCourtney\nGuadalupe\nJanice\nJeanette\nJenny\nJoanne\nKatrina\nLucinda\nLynette\nPauline\nPriscilla\nSabrina\nAlice\nAlison\nAlma\nBelinda\nBrandi\nCharlene\nDorothy\nErika\nIsabel\nJosephine\nJudith\nLara\nRachael\nTracie\nAudrey\nCandice\nCheri\nDolores\nElaine\nHope\nJenifer\nJoann\nJody\nJoyce\nKendra\nLydia\nOlivia\nRosemary\nRuth\nShawn\nSherrie\nTrisha\nAimee\nAngelina\nBeatrice\nBobbi\nDoreen\nEsther\nEvelyn\nFrancine\nJo\nJodie\nJolene\nLeah\nMindy\nRene\nSheryl\nSonja\nStacie\nBobbie\nCandy\nColleen\nDina\nElisa\nEva\nGenevieve\nJackie\nJudy\nKeri\nLynn\nSally\nShauna\nVivian\nArlene\nBeverly\nDora\nHelen\nJoanna\nJoy\nKara\nKarla\nKerry\nLorena\nMargarita\nMargo\nMeredith\nMolly\nPenny\nRachelle\nRonda\nTammie\nVicki\nAngie\nBernice\nBillie\nDelphine\nFrancisca\nGrace\nJean\nKerri\nKristy\nLupe\nMarcie\nMaryann\nMonique\nNikki\nRebekah\nShanna\nStefanie\nTerry\nTisha\nTonia\nVickie\nAngelita\nBetty\nBridget\nCandace\nDarcy\nDarla\nDeana\nJeannie\nJessie\nJoan\nLillian\nLiza\nMelisa\nMelody\nNaomi\nShirley\nSusana\nWendi\nAlexandra\nAlisa\nAudra\nBertha\nCaroline\nCecelia\nChrista\nCorina\nDelia\nJana\nJosie\nKelley\nLeanne\nMarilyn\nMarsha\nMiriam\nNichole\nPeggy\nRenae\nRuby\nSandy\nTeri\nAdrianne\nAmie\nAngel\nBeth\nCamille\nChristie\nClarissa\nCorrina\nCristina\nDelilah\nDella\nEdith\nEleanor\nElena\nGwendolyn\nJanette\nKirsten\nLee\nLorinda\nLucia\nLuz\nMarci\nMaribel\nMarisa\nMegan\nNatasha\nNina\nRochelle\nShana\nShari\nStaci\nSuzette\nVicky\nAngelique\nArlinda\nDenice\nEstella\nGeraldine\nGretchen\nJane\nJeanne\nJuliet\nKrystal\nLaverne\nLucy\nMarla\nMarlo\nOlga\nSophia\nSusie\nTamra\nTanisha\nTrudy\nAdrienne\nAntoinette\nBlanca\nCeleste\nCharity\nCherie\nClara\nCrista\nDavina\nDeedee\nElise\nEllen\nElvira\nGabriela\nGeorgina\nHenrietta\nIda\nJeannette\nJeri\nKellie\nLana\nLaurel\nLeann\nLeigh\nLena\nLora\nLourdes\nLupita\nLynda\nMarnie\nMartina\nNora\nRosanna\nRoseann\nRosie\nRosita\nSusanna\nTasha\nTiffani\nAdina\nAlissa\nAlvina\nAngelia\nAnjanette\nAntonia\nAurora\nBrooke\nCarmelita\nCary\nCassie\nCatrina\nClaudine\nColette\nDanette\nDeann\nDesiree\nEileen\nElisabeth\nEmma\nEricka\nErnestine\nEsmeralda\nEsperanza\nGlenda\nIris\nJacquelyn\nJohn\nJuana\nJune\nKarin\nKaryn\nKori\nLela\nLorie\nLorrie\nMalissa\nMarcia\nMarcy\nMarianne\nMarina\nMatilda\nMercy\nMissy\nMona\nMyrna\nNanette\nNellie\nPaulette\nPaulina\nPetra\nShani\nShannan\nShelby\nShelia\nStella\nSuzanna\nAlana\nAmelia\nBetsy\nBrittany\nCarey\nCari\nCelia\nChandra\nChelsea\nChris\nCinnamon\nConcepcion\nConstance\nDeanne\nDeena\nDelores\nEdna\nErnestina\nEvangeline\nFaith\nGayle\nGena\nGeneva\nGracie\nGwen\nHarriet\nHelena\nHilary\nHilda\nHolli\nInez\nJanine\nJocelyn\nJoleen\nJoni\nJuli\nKandi\nKarrie\nKathrine\nKatie\nKimberlee\nKris\nLois\nLouise\nMagdalena\nMaritza\nMarta\nMia\nMildred\nMisti\nMyra\nNelda\nPatti\nPolly\nRandi\nRena\nRenea\nRichelle\nRina\nRosemarie\nRoxann\nShonda\nTabitha\nTammi\nThelma\nTreva\nVera\nJennifer\nMichelle\nLisa\nKimberly\nStephanie\nMelissa\nAmy\nChristina\nHeather\nShannon\nAngela\nRebecca\nJulie\nMaria\nCynthia\nLaura\nChristine\nPatricia\nDawn\nTammy\nElizabeth\nMary\nAndrea\nMonica\nKaren\nNicole\nSusan\nTina\nDenise\nJessica\nVeronica\nLori\nSandra\nRachel\nWendy\nTeresa\nAnna\nKelly\nTracy\nApril\nCheryl\nMichele\nBrenda\nCarrie\nTanya\nTara\nTiffany\nKristin\nHolly\nKathleen\nPamela\nStacy\nValerie\nDebra\nSharon\nDeborah\nTamara\nVictoria\nMelanie\nDiana\nRobin\nStacey\nBrandy\nDanielle\nSarah\nBarbara\nNancy\nCarol\nHeidi\nLinda\nRenee\nAlicia\nTheresa\nShawna\nTonya\nCrystal\nJulia\nKatherine\nKristen\nMisty\nAmanda\nCatherine\nLeslie\nPaula\nCindy\nMelinda\nBrandi\nSonia\nChristy\nClaudia\nDeanna\nKristina\nMargaret\nRhonda\nSheila\nSherry\nRosa\nDonna\nKathy\nMartha\nJodi\nSherri\nYvette\nAna\nDana\nJill\nLeticia\nSamantha\nSuzanne\nAnnette\nJamie\nKathryn\nLaurie\nSara\nVanessa\nYolanda\nErica\nGuadalupe\nRegina\nGloria\nYvonne\nKatrina\nPriscilla\nTraci\nAnita\nCarmen\nGina\nJanet\nSonya\nAmber\nAnn\nFrances\nAllison\nAngel\nAngelica\nJenny\nKristi\nNatalie\nRose\nSylvia\nTricia\nVirginia\nBecky\nDebbie\nCharlene\nDiane\nErin\nGenevieve\nJuanita\nMarie\nRaquel\nShelley\nShelly\nSheri\nTrina\nEmily\nRamona\nAimee\nAnne\nCarolyn\nConnie\nKelli\nKristine\nLeah\nLorraine\nPenny\nTami\nCassandra\nCharlotte\nJacqueline\nJeanette\nLoretta\nMarlene\nMonique\nNorma\nRoberta\nTracie\nAlma\nBeverly\nCecilia\nDarlene\nErika\nFelicia\nJody\nMegan\nShauna\nAlice\nCarla\nJenifer\nJoy\nKari\nRita\nTracey\nCathy\nColleen\nDina\nDorothy\nKarla\nKendra\nKimberley\nKristy\nLara\nRuth\nAlison\nBonnie\nBridget\nChristie\nElaine\nHelen\nIsabel\nJosephine\nLillian\nLydia\nLynette\nRachelle\nSally\nVicki\nCheri\nEva\nIrene\nJoanna\nLynn\nMarcy\nRobyn\nTerri\nAlisa\nAngie\nBillie\nCara\nIrma\nJeannie\nJo\nJudy\nKellie\nKrista\nShirley\nSonja\nAngelina\nBelinda\nBeth\nDora\nEsther\nEvelyn\nJanice\nJoanne\nMelody\nNikki\nRuby\nBernadette\nBetty\nCaroline\nJeannette\nOlivia\nRoxanne\nSabrina\nTammi\nTrisha\nCandice\nCandy\nCorina\nDolores\nJackie\nJeanne\nJodie\nKeri\nLaurel\nLorena\nLucinda\nMarla\nRochelle\nRosemary\nShawn\nTasha\nTeri\nTisha\nToni\nAraceli\nAudra\nBlanca\nCandace\nCherie\nCristina\nDeana\nElena\nHope\nJana\nJean\nKelley\nKerry\nKim\nMichell\nNora\nPauline\nRosanna\nShana\nStaci\nTammie\nVivian\nWanda\nAngelita\nBethany\nBobbi\nBobbie\nCeleste\nChristi\nClara\nClarissa\nDena\nElisa\nElsa\nGabriela\nGinger\nGrace\nJolene\nJoyce\nKristie\nLauren\nMarcella\nMarcia\nMarilyn\nNichole\nRachael\nRonda\nShelby\nSheryl\nStefanie\nTerra\nTonia\nAmelia\nAutumn\nBernice\nBetsy\nCamille\nCecelia\nCelia\nDanelle\nDelores\nFrancisca\nGail\nGlenda\nJanette\nJennie\nJoann\nKara\nKirsten\nLucia\nMarci\nMarcie\nMargarita\nMeredith\nMona\nMyra\nNaomi\nRene\nSandy\nShanna\nAlberta\nAngelique\nAnissa\nArlene\nCarmelita\nDarla\nDelia\nDesiree\nDianne\nDoreen\nErnestina\nEvangeline\nFrancine\nGeneva\nGraciela\nGretchen\nIsela\nJami\nJudith\nJune\nKatie\nKerri\nLora\nMarianne\nMindy\nNadine\nNatasha\nOlga\nRosalinda\nSondra\nSusana\nSusie\nTia\nVickie\nVicky\nWendi\nYesenia\nAdrienne\nAntoinette\nBeatrice\nBrandee\nBrooke\nCasey\nCassie\nCathleen\nCharity\nChrista\nConstance\nConsuelo\nCourtney\nDeena\nDenice\nDianna\nEricka\nFaith\nGeorgina\nGwendolyn\nJane\nJosie\nJuana\nKarrie\nKatina\nLee\nLupe\nLuz\nMarcela\nMaricela\nMarina\nMarisol\nMarlo\nMercedes\nRenae\nSerena\nShellie\nSophia\nTerry\nUrsula\nAdelina\nAlyssa\nAthena\nAudrey\nCaryn\nCelina\nChastity\nCorinna\nCornelia\nDanette\nEdna\nElisabeth\nEllen\nEstella\nGeraldine\nHilary\nJan\nJanel\nJason\nJayme\nJenni\nJohanna\nJuli\nJuliet\nKira\nLadonna\nLena\nLesley\nLucille\nLynda\nMagdalena\nMarisa\nMarissa\nMarjorie\nMarnie\nMia\nMichael\nMisti\nMollie\nPearl\nPeggy\nRoxanna\nShari\nSilvia\nStella\nSusanna\nTamra\nThelma\nTiffani\nVelma\nVera\nAdriana\nAlisha\nAmi\nAmie\nAntonia\nBertha\nBrandie\nChandra\nCharmaine\nCher\nChristin\nColette\nDelphina\nEdward\nEmma\nEtta\nGayle\nHollie\nIris\nJacque\nJoan\nJocelyn\nKami\nKristan\nLana\nLanette\nLarissa\nLashonda\nLatonya\nLeanna\nLeanne\nLeona\nLoraine\nLorie\nLourdes\nLuisa\nLupita\nLynnette\nMalinda\nMarietta\nMaritza\nMatilda\nMaureen\nMaxine\nMelisa\nMellisa\nMelva\nMiranda\nPaige\nRandi\nRebekah\nRoni\nRosalina\nRosanne\nRosemarie\nRosie\nSelena\nSelina\nSharla\nStacie\nSusanne\nTera\nValarie\nViolet\nWhitney\nJennifer\nMichelle\nKimberly\nLisa\nAmy\nHeather\nStephanie\nMelissa\nMaria\nChristina\nRebecca\nAngela\nElizabeth\nMary\nVeronica\nShannon\nJulie\nPatricia\nCynthia\nLaura\nNicole\nTammy\nMonica\nChristine\nDenise\nDawn\nTina\nAndrea\nSandra\nSusan\nTanya\nJessica\nTiffany\nRachel\nTeresa\nAnna\nKaren\nLori\nTracy\nApril\nKelly\nBrenda\nMelanie\nHolly\nSarah\nTheresa\nLinda\nWendy\nBrandy\nDiana\nVictoria\nTonya\nKatherine\nBarbara\nCheryl\nDeborah\nPamela\nGloria\nStacy\nCarrie\nDanielle\nCatherine\nLeslie\nMisty\nKristin\nVanessa\nCrystal\nSonia\nDonna\nErin\nTara\nYvonne\nRenee\nBrandi\nMelinda\nMichele\nKathleen\nNancy\nValerie\nAmanda\nDebra\nGina\nSuzanne\nTamara\nClaudia\nKristina\nStacey\nAlicia\nRobin\nKristen\nShawna\nSylvia\nJill\nRegina\nSara\nDeanna\nHeidi\nKristi\nCindy\nDana\nErica\nMartha\nSharon\nSherry\nAngelica\nJamie\nJuanita\nPriscilla\nYvette\nChristy\nFrances\nLaurie\nNatalie\nConnie\nJodi\nMargaret\nJulia\nLeticia\nPaula\nRhonda\nCassandra\nSheila\nShelly\nAnita\nAnnette\nDiane\nTraci\nAmber\nErika\nKathy\nIrene\nJanet\nAllison\nShelley\nCarla\nTricia\nYolanda\nAnne\nGuadalupe\nRaquel\nVirginia\nCarolyn\nJacqueline\nCharlotte\nKathryn\nTerri\nBecky\nBonnie\nBridget\nColleen\nJenny\nKari\nRose\nSamantha\nAnn\nCarol\nEmily\nEsther\nKarla\nRosa\nStacie\nDarlene\nKatrina\nKristine\nLorraine\nLucinda\nRoberta\nShauna\nShawn\nSheri\nTrina\nAimee\nBelinda\nCarmen\nJoy\nKim\nKrista\nLynette\nMarie\nSabrina\nAlma\nAna\nBernadette\nJeanette\nKerry\nNorma\nRita\nSherri\nTracie\nCathy\nCharlene\nOlivia\nRachelle\nFelicia\nGeorgina\nJoann\nKristy\nMolly\nRobyn\nShanna\nSonya\nAlison\nDebbie\nGinger\nJoanna\nKeri\nLydia\nMarcella\nMargarita\nMonique\nTammie\nCaroline\nCecilia\nCeleste\nChristi\nEvelyn\nJudith\nKelley\nKelli\nKristie\nMarlene\nMegan\nNaomi\nPauline\nRamona\nRuth\nTrisha\nVicki\nArlene\nBertha\nBobbie\nCheri\nCorina\nGwendolyn\nIsabel\nJanelle\nJanice\nJoanne\nJosephine\nLeah\nMarcia\nMelody\nMeredith\nPenny\nSheryl\nTami\nTeri\nTracey\nAngel\nAngelina\nBethany\nBetty\nGail\nJana\nJeannie\nJody\nJoyce\nJudy\nKara\nKendra\nLorena\nLoretta\nStaci\nToni\nAlice\nAlisa\nAudra\nAudrey\nBeverly\nBrandie\nChristie\nDolores\nDora\nEdith\nElaine\nEva\nFaith\nGenevieve\nJanette\nJennie\nKerri\nKimberley\nLea\nLena\nMaribel\nMarla\nMona\nNichole\nRoxanne\nSally\nUnknown\nAmie\nAngelita\nBeth\nCandace\nChandra\nClarissa\nCristina\nEileen\nFrancisca\nGretchen\nHelen\nJenna\nJodie\nMarilyn\nMarisa\nNikki\nNora\nPeggy\nRachael\nRochelle\nRosemary\nStefanie\nTerra\nVivian\nAlexandra\nAngie\nAutumn\nBeatrice\nBillie\nBrooke\nCasey\nDesiree\nDianna\nElsa\nGlenda\nIrma\nJackie\nKirsten\nLeanne\nLiza\nMindy\nRebekah\nRene\nSandy\nSusana\nTabitha\nTania\nTonia\nAlisha\nAmelia\nAngelique\nBernice\nBlanca\nBrandee\nCandice\nCandy\nCharity\nChrista\nConsuelo\nDeana\nDina\nDorothy\nFrancine\nJami\nLara\nLee\nLeigh\nMaricela\nMelisa\nMiriam\nShelby\nShirley\nSusie\nTammi\nVickie\nVicky\nAdrienne\nAnastasia\nAnnie\nAntonia\nAshley\nCamille\nCara\nCarmelita\nChastity\nDelia\nDoreen\nEllen\nJeanne\nJenifer\nJohanna\nJosie\nLatasha\nLeanna\nLouise\nLynn\nMarjorie\nNatasha\nNina\nPaulette\nSocorro\nSonja\nSuzanna\nTerry\nValarie\nAbigail\nAlissa\nAllyson\nAntoinette\nBobbi\nBuffy\nCelina\nChelsea\nCorinne\nCourtney\nCristy\nDarla\nDavina\nDeanne\nElisa\nEvangeline\nGeorgia\nIda\nJanie\nJanna\nJean\nJeannette\nJoey\nKarin\nKatina\nKimberlee\nLana\nLatisha\nLaurel\nLenora\nLindsay\nLynda\nMarci\nMarcie\nMarsha\nMaureen\nMichael\nMonika\nPearl\nPhyllis\nRenae\nRosalie\nRuby\nSerena\nShana\nShari\nSummer\nSuzette\nTawnya\nAdriana\nAlejandra\nAlta\nBrittany\nCari\nCarlene\nCelia\nClara\nCorinna\nDanelle\nDeena\nDena\nErnestine\nEstella\nGabrielle\nGeraldine\nGrace\nGriselda\nJanell\nJeanine\nJessie\nJoan\nJocelyn\nKarri\nKellie\nKenya\nLauren\nLesley\nLillian\nLorie\nLucretia\nLucy\nLupe\nLupita\nMalinda\nMarcela\nMarcy\nMarian\nMartina\nMiranda\nMyra\nNadine\nPatty\nRoxanna\nSasha\nSherrie\nSofia\nStella\nTanisha\nTisha\nTrudy\nWanda\nWendi\nAlberta\nAlethea\nAmi\nAurora\nBernadine\nBetsy\nCandi\nCarey\nCassie\nCecelia\nChristal\nChristian\nColeen\nConstance\nCori\nDanette\nDarcie\nDavid\nDeedee\nDeidra\nElena\nElisabeth\nEmma\nEricka\nGraciela\nHilary\nHolli\nJane\nJanel\nJo\nJolene\nJuana\nJuliana\nJulianne\nJuliet\nKarrie\nKatie\nKay\nKerrie\nLarissa\nLaverne\nLillie\nLola\nLorinda\nLorna\nLuisa\nMagdalena\nMarianne\nMarissa\nMerlinda\nMia\nMisti\nNiki\nPaige\nPatsy\nPetra\nPolly\nRosie\nRosita\nShaunna\nShawnna\nSondra\nSophia\nTamra\nTana\nTasha\nTera\nTiffani\nTonja\nVerna\nJennifer\nMichelle\nHeather\nAmy\nLisa\nStephanie\nMelissa\nAngela\nKimberly\nRebecca\nChristina\nMaria\nShannon\nJulie\nMonica\nElizabeth\nVeronica\nPatricia\nChristine\nApril\nMary\nJessica\nRachel\nDawn\nAndrea\nSandra\nKelly\nLaura\nSarah\nTammy\nTina\nTanya\nAmanda\nCynthia\nNicole\nTiffany\nCarrie\nLori\nSusan\nTeresa\nDenise\nErin\nDanielle\nKaren\nTracy\nAnna\nBrenda\nMelanie\nWendy\nBarbara\nDiana\nTheresa\nCrystal\nDeborah\nStacy\nMisty\nCatherine\nHolly\nHeidi\nLeslie\nVictoria\nKristin\nRenee\nStacey\nBrandy\nClaudia\nJill\nKristen\nAmber\nLinda\nSara\nSharon\nSonia\nErica\nShawna\nTara\nAlicia\nTamara\nYvonne\nChristy\nEmily\nDonna\nValerie\nVanessa\nKatherine\nKathleen\nPamela\nMelinda\nMichele\nSylvia\nBrandi\nDeanna\nDiane\nRobin\nGina\nGloria\nMargaret\nRegina\nAnnette\nCheryl\nCindy\nDebra\nCarol\nJamie\nPriscilla\nVirginia\nJacqueline\nJolene\nKristina\nLeticia\nTonya\nJulia\nKathryn\nNancy\nNatalie\nPaula\nSherry\nAna\nJody\nYolanda\nDana\nMartha\nRhonda\nCourtney\nRosa\nShelly\nYvette\nAnita\nRaquel\nAnn\nBecky\nFrances\nJoy\nLaurie\nSamantha\nAngelica\nCarolyn\nErika\nGuadalupe\nJuanita\nKristi\nRoberta\nTricia\nCassandra\nKathy\nRachael\nSheila\nBonnie\nConnie\nJoanna\nJodi\nKatrina\nMonique\nJeanette\nKari\nLydia\nRobyn\nShelley\nTrina\nAimee\nBernadette\nJenny\nKristine\nLorraine\nOlivia\nSally\nSonya\nToni\nCarmen\nEsther\nKrista\nLeah\nMarcella\nRuth\nAnne\nBridget\nCarla\nElisa\nIrene\nJoann\nKristy\nMegan\nNorma\nRochelle\nSheri\nSuzanne\nTrisha\nAllison\nCecilia\nColleen\nCorina\nKara\nKeri\nMargarita\nAngelina\nAngie\nCaroline\nCharlotte\nLorena\nMarie\nCandice\nChristie\nFelicia\nJanice\nJoyce\nKarla\nRose\nSherri\nSonja\nTraci\nAdrienne\nAlice\nAlma\nCharity\nJodie\nKatie\nSabrina\nStacie\nStefanie\nTami\nTerri\nAlison\nAudra\nBeth\nBrooke\nJackie\nJanet\nKerri\nKim\nMarisa\nRosemary\nShanna\nShauna\nSusana\nTisha\nAdriana\nAmelia\nCharlene\nDebbie\nGinger\nJosephine\nKelli\nKendra\nKerry\nMelody\nMiranda\nRita\nShana\nShawn\nStaci\nTracey\nBethany\nChrista\nKimberley\nLillian\nMindy\nPenny\nRebekah\nRoxanne\nSandy\nVivian\nAlexis\nAngel\nArlene\nAudrey\nCristina\nDolores\nEva\nKristie\nAngelita\nBillie\nCandace\nCathy\nClarissa\nDarlene\nGeorgina\nHelen\nIsabel\nKelley\nLynn\nMarcia\nMaribel\nNaomi\nNichole\nShelby\nTracie\nBeatrice\nBernice\nBetty\nDena\nElaine\nGrace\nJana\nJanelle\nJenifer\nJessie\nJoleen\nJudith\nMagdalena\nMarissa\nRamona\nSuzette\nTammie\nTawnya\nTonia\nVicki\nYesenia\nAlisa\nAlisha\nAshley\nAutumn\nBeverly\nBlanca\nDaphne\nDesiree\nDina\nElena\nHope\nJanine\nJeannie\nJo\nJoanne\nLara\nLourdes\nLuz\nMarcy\nMarina\nMarlene\nMaryann\nMolly\nMona\nNikki\nShirley\nTeri\nAntonia\nBelinda\nBertha\nBrandie\nCeleste\nChastity\nCherie\nCindi\nDora\nElvira\nGenevieve\nIrma\nKami\nKerrie\nKirsten\nLauren\nLindsey\nLucinda\nLynette\nMarilyn\nMichael\nRachelle\nRuby\nSheryl\nSophia\nTabitha\nTanisha\nVerna\nVickie\nAlexandra\nAurelia\nBobbie\nCamille\nCandy\nCarin\nCasey\nCelia\nChristi\nDeana\nEileen\nElsa\nErnestine\nEvelyn\nFrancisca\nGlenda\nJanie\nJean\nJudy\nKellie\nLana\nLatasha\nLea\nLupita\nMaricela\nMarla\nMeredith\nNatasha\nRosalinda\nSerena\nSunshine\nTania\nTasha\nTerry\nCarey\nCari\nCarolina\nCatrina\nCecelia\nConsuelo\nCorinna\nCorrina\nDanette\nDayna\nDoreen\nDorothy\nEdna\nEricka\nFrancine\nGail\nGretchen\nJacquelyn\nJeanne\nJeannette\nJeri\nKarie\nKeisha\nLayla\nLee\nLeilani\nLoretta\nLupe\nMaggie\nMalinda\nMandy\nMarci\nMarsha\nMaureen\nMeghan\nOlga\nPeggy\nRene\nRonda\nRosemarie\nSilvia\nStella\nSuzanna\nTammi\nTera\nTrudy\nWendi\nAbigail\nAlexandria\nAlina\nAlyssa\nAngelia\nAnitra\nAntoinette\nAthena\nBettina\nCara\nChanda\nChelsea\nCheri\nChristian\nDarla\nDavina\nDeanne\nDelia\nEstella\nFaith\nGabriela\nGeneva\nGeorgia\nGriselda\nJami\nJane\nJose\nJosefina\nJune\nKarin\nKrystal\nLadonna\nLarissa\nLatonya\nLeanna\nLeigh\nLesley\nLindsay\nLouise\nLynda\nLynnette\nMarcie\nMargie\nMarianne\nMischa\nPauline\nRandi\nRichelle\nRosanna\nRosario\nRuthie\nShari\nShellie\nTamera\nTerra\nTrinity\nValarie\nWanda\nAileen\nAlejandra\nAllyson\nAlvina\nAngelique\nAraceli\nBobbi\nBuffy\nCarina\nCarly\nCelina\nChandra\nClara\nConcepcion\nCori\nCornelia\nDanna\nDianna\nDianne\nDionne\nDixie\nEliza\nEllen\nElvia\nEmma\nEsperanza\nEvangeline\nFawn\nGena\nGwendolyn\nHelena\nHollie\nIngrid\nJanell\nJanette\nJenna\nJennie\nJoan\nJosie\nJuliet\nJustina\nKarrie\nLeanne\nLena\nLetitia\nLora\nLucille\nLucy\nMaricella\nMarlena\nMarta\nMartina\nMatilda\nMyrna\nNanette\nNellie\nNina\nNora\nPatsy\nPhyllis\nRosie\nRoxann\nRyan\nSelena\nSerina\nShantel\nSharla\nShawnna\nShirlene\nSpring\nStormy\nSue\nSusie\nTiffanie\nJennifer\nMichelle\nAmy\nMelissa\nHeather\nLisa\nStephanie\nAngela\nChristina\nRebecca\nKimberly\nAndrea\nJessica\nVeronica\nMaria\nMonica\nShannon\nElizabeth\nNicole\nAmanda\nLaura\nJulie\nKelly\nRachel\nMary\nChristine\nTanya\nCynthia\nPatricia\nSarah\nApril\nDawn\nTiffany\nKaren\nSandra\nTammy\nWendy\nDanielle\nCarrie\nErin\nTina\nAmber\nTracy\nCrystal\nBrenda\nTeresa\nStacy\nTara\nAnna\nDiana\nMisty\nSusan\nDenise\nBrandy\nLori\nSara\nVictoria\nMelanie\nStacey\nValerie\nHolly\nGina\nJamie\nLinda\nKatherine\nSharon\nRobin\nKristen\nKristin\nShawna\nTamara\nHeidi\nRegina\nAlicia\nErica\nVanessa\nMichele\nSonia\nTheresa\nDeborah\nAnnette\nNancy\nSamantha\nBarbara\nCindy\nErika\nLeslie\nYvonne\nRenee\nJacqueline\nGloria\nMargaret\nRhonda\nAngelica\nEmily\nCheryl\nBrandi\nCatherine\nChristy\nDeanna\nKari\nMegan\nPamela\nSylvia\nAllison\nClaudia\nColleen\nKristina\nMelinda\nYolanda\nAimee\nJodi\nJulia\nKathleen\nNatalie\nDonna\nAnita\nShelly\nTonya\nFrances\nLeah\nLeticia\nKristi\nMarie\nAna\nDebra\nJolene\nKathryn\nCarla\nJanet\nKristie\nMartha\nCarolyn\nCourtney\nDiane\nJenny\nRaquel\nRoberta\nSherry\nFelicia\nGuadalupe\nMandy\nPriscilla\nTraci\nDana\nJill\nPaula\nAlison\nCarmen\nCassandra\nConnie\nKrista\nTricia\nAngelina\nCharity\nChristie\nKara\nSheila\nSuzanne\nVirginia\nAnn\nBonnie\nJuanita\nOlivia\nCarol\nJody\nKendra\nMonique\nRachelle\nSummer\nAnne\nAudrey\nBecky\nIsabel\nKarla\nKelli\nRita\nSonya\nAutumn\nBethany\nJoanna\nKeri\nKristine\nLorena\nMarcella\nMelody\nMolly\nNorma\nRobyn\nRosa\nRosemary\nShauna\nSheri\nToni\nTracey\nBeatrice\nCandice\nCharlene\nCharlotte\nLaurie\nMarcia\nMargarita\nRamona\nRoxanne\nAdrienne\nAlma\nBobbie\nJaime\nKathy\nKatrina\nKellie\nLorraine\nLucinda\nRebekah\nShelley\nSherri\nStacie\nBernadette\nCandace\nDarlene\nElisa\nIrene\nJanice\nJeanette\nJoann\nKristy\nLynn\nNaomi\nTrisha\nYvette\nAdriana\nAngie\nCecilia\nDena\nEva\nJenifer\nJosephine\nJoy\nKerry\nNichole\nRuth\nSabrina\nTerri\nAlisa\nAudra\nBelinda\nCeleste\nElaine\nGabriela\nKatie\nRachael\nRochelle\nRose\nStella\nBrandie\nCaroline\nCristina\nEsther\nGeorgina\nGwendolyn\nJoyce\nLacey\nLydia\nLynette\nShana\nShanna\nStaci\nTabitha\nTami\nYesenia\nBetty\nCara\nCecelia\nClarissa\nCorina\nJennie\nJudith\nMandi\nMarcela\nMarla\nMindy\nMiranda\nRonda\nSandy\nStefanie\nTrina\nBeth\nBianca\nCarolina\nCasey\nDorothy\nEdith\nElena\nErnestine\nGinger\nGrace\nHelen\nImelda\nJackie\nJami\nKarina\nNatasha\nShelby\nSusana\nSusie\nTonia\nTracie\nAlice\nAngelita\nAthena\nBeverly\nBlanca\nBrooke\nCari\nCathy\nChrista\nDarcy\nDianna\nDora\nEsmeralda\nHope\nJoanne\nJocelyn\nLara\nLorie\nMarci\nMaribel\nMarisa\nPenny\nRuby\nSally\nSerena\nShirley\nTammie\nBillie\nBobbi\nChristi\nCori\nDebbie\nEricka\nEvangeline\nGretchen\nHilary\nJana\nJane\nJeannie\nLoretta\nMarilyn\nMarisol\nNina\nPeggy\nRacheal\nTamika\nTisha\nVicki\nAlisha\nAlvina\nAmelia\nAngel\nAnissa\nAntoinette\nArlene\nBridget\nCarey\nCheri\nChristal\nClara\nEileen\nElsa\nEvangelina\nEvelyn\nGraciela\nGriselda\nIrma\nJacquelyn\nJanelle\nJeannette\nJenna\nKim\nKirsten\nLeann\nLesley\nLourdes\nLuz\nMarcy\nMarina\nMarsha\nMaureen\nMelisa\nMiriam\nMyra\nPaige\nRandi\nRoxanna\nSusanna\nTeri\nTerra\nAlanna\nAlexis\nAlyssa\nAnitra\nAnnie\nAraceli\nAshley\nBertha\nBetsy\nBrianna\nCamille\nCarmelita\nCatrina\nChanda\nChandra\nChantel\nConsuelo\nDarla\nDavina\nDina\nDolores\nDominique\nElisabeth\nEllen\nElvia\nElvira\nErnestina\nFaith\nFrancine\nFrancisca\nGenevieve\nJo\nJohanna\nJoni\nJudy\nKami\nKerri\nKimberlee\nLindsay\nLora\nLouisa\nMaricela\nMarlene\nMarta\nMercy\nMeredith\nMichael\nOlga\nPaulette\nShawn\nSonja\nTania\nTawnya\nVivian\nWendi\nYadira\nAdrianna\nAlana\nAlexandra\nAlissa\nAlyson\nAnastasia\nAngelic\nBriana\nCarie\nCarri\nCassie\nCelina\nClaire\nConcepcion\nDaniel\nDelilah\nElise\nFlorence\nGeneva\nGeraldine\nHollie\nIsela\nJames\nJanie\nJosie\nJuana\nKimberley\nLana\nLatoya\nLauren\nLee\nLeigh\nLena\nLindsey\nLynna\nMaritza\nMatilda\nMaya\nMayra\nMelvina\nMona\nNikki\nNora\nPearl\nRosalinda\nRosanna\nRosario\nRosie\nSasha\nShantel\nShellie\nSheryl\nShirlene\nSilvia\nSophia\nTamra\nTasha\nTera\nTerry\nThelma\nValencia\nVelma\nVerna\nWindy\nAdrianne\nAndria\nAngelia\nAnnabelle\nAntonia\nBrandee\nBuffy\nCandy\nCarina\nCarisa\nChelsea\nChrystal\nClaudine\nCorinna\nCorrina\nCristal\nDaphne\nDara\nDeana\nDebora\nDeena\nDelores\nDemetria\nDesiree\nElsie\nEmilie\nEve\nGwen\nHolli\nJanette\nJeanine\nJessie\nJulianne\nJune\nKarrie\nKaryn\nKrystal\nLeanne\nLillian\nLucia\nLucy\nLynnette\nMara\nMarcie\nMargo\nMarisela\nMarnie\nNadine\nNellie\nNoelle\nPhyllis\nRae\nSelena\nSelina\nSuzanna\nTaryn\nTiffani\nTwila\nUrsula\nWanda\nYessenia\nJennifer\nMelissa\nAmy\nMichelle\nHeather\nJessica\nLisa\nAngela\nStephanie\nChristina\nShannon\nRebecca\nKimberly\nMaria\nAmanda\nMonica\nVeronica\nElizabeth\nAndrea\nLaura\nSarah\nCynthia\nNicole\nJamie\nJulie\nRachel\nKelly\nMary\nCrystal\nJaime\nErin\nPatricia\nAmber\nChristine\nDawn\nSara\nCarrie\nTanya\nApril\nTiffany\nDanielle\nStacy\nMelanie\nKaren\nMisty\nAnna\nDenise\nSandra\nTracy\nTina\nWendy\nRenee\nTeresa\nLori\nBrenda\nErica\nHeidi\nTammy\nValerie\nTara\nDiana\nHolly\nVanessa\nVictoria\nKatherine\nLeslie\nKristen\nKristin\nTheresa\nSonia\nStacey\nYvonne\nDeborah\nRegina\nCatherine\nKristina\nEmily\nNatalie\nCheryl\nCourtney\nSamantha\nTamara\nBrandy\nDeanna\nGina\nMelinda\nSharon\nSusan\nClaudia\nJill\nMargaret\nRobin\nShawna\nAngelica\nErika\nJodi\nLinda\nYvette\nBrandi\nKathleen\nMichele\nSuzanne\nAllison\nKatrina\nNancy\nYolanda\nKari\nMandy\nCarolyn\nAlicia\nDonna\nJacqueline\nLindsay\nRhonda\nGloria\nSabrina\nJulia\nLeah\nPamela\nCandice\nCarmen\nJenny\nKathryn\nMegan\nOlivia\nPriscilla\nChristy\nCindy\nDana\nDebra\nFelicia\nKristi\nMarisa\nVirginia\nAnn\nPaula\nShelly\nSylvia\nChristie\nKarla\nKatie\nMonique\nAutumn\nBarbara\nCassandra\nElaine\nNichole\nSherry\nTonya\nAngel\nAnnette\nBethany\nGuadalupe\nJoy\nKristy\nLeticia\nLorraine\nMarie\nMartha\nAdrienne\nConnie\nFrancisca\nGinger\nSheila\nSheri\nAlexis\nAlison\nJoanna\nKelli\nRoberta\nTraci\nAimee\nAna\nBernadette\nIsabel\nRaquel\nRoxanne\nTrisha\nAnita\nCandace\nCarol\nCharlotte\nKendra\nKeri\nKrista\nMolly\nNorma\nSummer\nToni\nTracey\nAngelina\nBridget\nCarla\nCecilia\nJody\nAlice\nAnne\nBonnie\nBrooke\nFrances\nJanet\nJeanette\nLaurie\nNatasha\nRebekah\nRuth\nAngie\nAudrey\nCaroline\nCharity\nGenevieve\nIrene\nRachael\nSonya\nAngelita\nAshley\nBelinda\nBeth\nChrista\nClarissa\nElisa\nFarrah\nJanice\nJuanita\nLorena\nMargarita\nNaomi\nRobyn\nRochelle\nRosa\nRosemary\nShelley\nAlma\nBianca\nBillie\nBlanca\nCharlene\nCorina\nJana\nJoanne\nKara\nKristine\nLatoya\nRamona\nShanna\nSophia\nTasha\nTricia\nBobbie\nEva\nHope\nJackie\nJolene\nJoyce\nKerry\nLydia\nLynn\nMarcella\nMaritza\nMarsha\nRita\nShauna\nStacie\nTrina\nAdriana\nCeleste\nColleen\nDiane\nDianna\nDolores\nEvelyn\nGabriela\nGeneva\nGrace\nJohanna\nKarina\nKerri\nLiberty\nLindsey\nMarina\nRuby\nSherri\nTonia\nAlisha\nBeverly\nCamille\nCara\nCelina\nDavina\nDebbie\nDora\nElena\nGeorgina\nJanelle\nKarin\nKellie\nLynette\nMaribel\nMarla\nMarlene\nMaureen\nRachelle\nRhiannon\nStella\nTennille\nTerri\nAlexandra\nAmie\nBeatrice\nBecky\nBridgette\nCandy\nCari\nDarlene\nDeana\nFaith\nGretchen\nJami\nLara\nLena\nMandi\nMeredith\nMona\nNadia\nNina\nRose\nShawn\nShirley\nStefanie\nTabitha\nTisha\nAnissa\nBrandie\nDena\nDesiree\nElsa\nHelen\nJessie\nJoann\nLarissa\nLauren\nLora\nLucia\nMelody\nMindy\nMinerva\nMiranda\nSerena\nShana\nSonja\nStaci\nTatiana\nVicki\nAlana\nAlejandra\nAlisa\nArlene\nAudra\nBernice\nCasey\nCheri\nChristi\nChrystal\nEricka\nEsperanza\nEsther\nGwendolyn\nHannah\nHillary\nIris\nJanie\nJeannie\nJenifer\nJosie\nKarri\nKimberley\nKristal\nLeann\nLillian\nLucinda\nMaricela\nMarilyn\nMelisa\nNora\nSelena\nSharlene\nSilvia\nSpring\nTameka\nTania\nTeri\nTerra\nVivian\nYesenia\nAlyssa\nAnnie\nBetty\nBobbi\nCecelia\nChandra\nChelsea\nCorrina\nDaisy\nDarcy\nDina\nJanine\nJennie\nJoan\nJuana\nKarrie\nKelley\nKirsten\nLesley\nLola\nLoretta\nMarisela\nMarlena\nMelina\nPearl\nPeggy\nRena\nSally\nShellie\nStacia\nSusana\nSusanna\nSuzette\nTana\nTori\nTracie\nWhitney\nAaron\nAbby\nAdelina\nAlberta\nAlissa\nAmelia\nAmi\nAntonia\nAurelia\nBrandee\nBree\nCarmelita\nCassie\nCatalina\nChristopher\nConsuelo\nCristina\nDoreen\nEileen\nEllen\nElvia\nEmma\nEstella\nEunice\nGail\nHelena\nHollie\nJasmine\nJeannette\nJosephine\nJudith\nKathy\nKim\nKimberlee\nKori\nKristie\nKrystal\nLana\nLea\nLeigh\nLizette\nLois\nLorinda\nLorna\nLourdes\nLucy\nLupita\nLuz\nMarcela\nMarcia\nMellissa\nMindi\nMiriam\nMyra\nNikki\nPaige\nPetra\nRosanna\nSelina\nShelby\nSheryl\nSusie\nTabatha\nTami\nTanisha\nTatum\nTessa\nVicky\nAbigail\nAdria\nAllyson\nAlyson\nAnitra\nAubrey\nBeatriz\nCarie\nCarisa\nCarissa\nCarli\nCarly\nChasity\nCherie\nCorinna\nDanelle\nDaniela\nDelia\nDetra\nDixie\nDorothy\nDusty\nEleanor\nElise\nEliza\nEloisa\nErlinda\nEugenia\nFrancine\nGraciela\nGriselda\nHilary\nHilda\nImelda\nIngrid\nJanae\nJanel\nJean\nJenna\nJeremy\nJo\nJohn\nJudy\nJuliet\nKaty\nLacey\nLakesha\nLatasha\nLayla\nLeila\nLeilani\nLupe\nLynda\nLynnette\nMaggie\nMalissa\nMarisol\nMarissa\nMarta\nMatilda\nMia\nMichael\nMisti\nNadine\nOlga\nPenelope\nPenny\nPhyllis\nRaylene\nRebeca\nRosalva\nSierra\nStar\nSunshine\nSusanne\nTerry\nTherese\nTobi\nTrudy\nValentina\nWanda\nJennifer\nMelissa\nJessica\nMichelle\nHeather\nAmy\nChristina\nLisa\nStephanie\nSarah\nAngela\nAndrea\nKimberly\nRebecca\nMaria\nElizabeth\nAmanda\nShannon\nMonica\nKelly\nNicole\nCrystal\nVeronica\nJamie\nRachel\nLaura\nAmber\nMary\nJulie\nChristine\nErin\nPatricia\nTiffany\nSara\nApril\nCynthia\nDanielle\nTara\nDawn\nMisty\nAnna\nJaime\nSandra\nErica\nCarrie\nDenise\nTanya\nSabrina\nEmily\nHolly\nTeresa\nKaren\nKatherine\nBrandy\nValerie\nVictoria\nStacy\nTammy\nVanessa\nJill\nSusan\nAlicia\nTina\nMelanie\nTheresa\nTracy\nAllison\nMegan\nSonia\nRenee\nTamara\nBrenda\nLeslie\nNatalie\nRegina\nDiana\nSamantha\nSharon\nStacey\nHeidi\nLindsay\nCheryl\nKristin\nWendy\nChristy\nKristen\nLori\nMelinda\nKathryn\nKristina\nAngelica\nCatherine\nBarbara\nDeanna\nMichele\nDana\nKathleen\nRobin\nKatrina\nBrandi\nCourtney\nErika\nKristy\nLeah\nShawna\nSylvia\nJacqueline\nMandy\nClaudia\nMarie\nYvonne\nAnita\nJenny\nKendra\nNancy\nSummer\nCarmen\nGina\nLinda\nShanna\nTonya\nBrooke\nJodi\nLeticia\nPamela\nTrisha\nVirginia\nYolanda\nAnnette\nDebra\nAdrienne\nCindy\nDeborah\nKelli\nMargaret\nMindy\nRaquel\nRhonda\nSuzanne\nAna\nCassandra\nKara\nKristi\nSonya\nAnn\nBernadette\nCecilia\nCelina\nRoberta\nRuth\nTerri\nAngelina\nColleen\nDonna\nGuadalupe\nJoy\nKatie\nToni\nAimee\nCarla\nJulia\nKari\nMonique\nOlivia\nPriscilla\nSheila\nShelly\nAnne\nBeth\nConnie\nDiane\nAngel\nGloria\nNichole\nSherry\nJolene\nMarissa\nMolly\nRachael\nRobyn\nRochelle\nCarol\nCarolyn\nFelicia\nKarla\nMarisa\nNaomi\nRita\nRose\nShauna\nYvette\nAdriana\nAngie\nBethany\nBonnie\nCandice\nDesiree\nElisa\nKrista\nLaurie\nNorma\nRosa\nAutumn\nEsther\nJoanna\nLindsey\nMartha\nSelina\nTraci\nCara\nCharlene\nCharlotte\nFarrah\nJaclyn\nJanice\nJody\nKeri\nKristine\nNadia\nRamona\nRoxanne\nAmelia\nBelinda\nBianca\nEva\nJana\nJoann\nKristie\nMeredith\nRebekah\nSalina\nSheri\nSophia\nTami\nTricia\nYesenia\nAlisha\nAlison\nAlma\nAngelita\nBridget\nChristie\nFrances\nJohanna\nKathy\nKellie\nLorraine\nPaula\nStacie\nTrina\nAudrey\nCamille\nClarissa\nDebbie\nDelia\nElaine\nEricka\nFrancisca\nJanelle\nJanet\nJenna\nKarina\nShana\nAlisa\nAlyssa\nBeverly\nCandace\nCharity\nCorina\nDena\nElena\nJocelyn\nJoni\nKerry\nLynn\nMarsha\nRosemary\nTaryn\nTracey\nWhitney\nAlexandra\nAngelique\nAshley\nCarly\nDarcy\nEllen\nHelen\nJasmine\nJeanette\nJuanita\nKelley\nLorena\nLydia\nLynette\nMarcella\nMargarita\nSerena\nStaci\nSusana\nTabitha\nTeri\nBecky\nCarey\nCaroline\nChelsea\nDorothy\nGenevieve\nGeorgina\nJosephine\nKami\nKim\nLoretta\nMarcia\nMelody\nMichael\nPenny\nRena\nRhiannon\nShawn\nSherri\nSunshine\nBlanca\nBobbie\nBrandie\nCarissa\nCasey\nCeleste\nChrystal\nDanette\nEileen\nEsperanza\nGretchen\nIsabel\nJennie\nJillian\nKerri\nKrystal\nLarissa\nMaritza\nMarlene\nNatasha\nNikki\nSandy\nShelby\nStefanie\nTera\nTisha\nAbigail\nAlexis\nAmie\nCarolina\nChantel\nCheri\nChristi\nFaith\nGabriela\nGeneva\nGinger\nGrace\nJessie\nKirsten\nLaurel\nLauren\nLiza\nMarisol\nMarlena\nMiranda\nMiriam\nSally\nSelena\nShelley\nStella\nTasha\nTerra\nBernice\nBetty\nBillie\nBree\nBriana\nChandra\nCorinna\nCortney\nDeana\nDominique\nFrancine\nHollie\nIda\nJackie\nJami\nJayme\nJoyce\nJudy\nKate\nLea\nLeigh\nLena\nLuz\nMarina\nMaxine\nMelisa\nMyra\nPearl\nPeggy\nRene\nRonda\nRuby\nSonja\nSusanna\nSuzette\nUrsula\nAdrianne\nAlice\nAubrey\nBridgett\nCathy\nCori\nCristina\nDarlene\nDavina\nDeanne\nDora\nEvangeline\nGwendolyn\nHaley\nHelena\nHilary\nHope\nIvy\nJacquelyn\nJane\nJanette\nJanine\nJeannie\nJenifer\nJeri\nJoan\nJoanne\nJosefina\nJudith\nKarrie\nKaryn\nLatisha\nLeona\nLizette\nLora\nLucia\nMarcie\nMarcy\nMarjorie\nMelina\nMindi\nRachelle\nRocio\nRosalinda\nRoxanna\nSommer\nTammie\nTamra\nTawnya\nVicki\nVivian\nAdelita\nAlana\nAraceli\nAurora\nBertha\nBrenna\nCari\nCarina\nCarmelita\nCecelia\nChanda\nCorinne\nDevon\nDianna\nDina\nDolores\nElise\nElvira\nErnestina\nEsmeralda\nFawn\nGeorgia\nGraciela\nIrene\nJanae\nJanell\nJean\nJeannette\nJulianne\nKathrine\nKimberlee\nKimberley\nLeann\nLesley\nLillian\nMagdalena\nMarcela\nMarisela\nMaureen\nMia\nMona\nNora\nPauline\nReyna\nRichelle\nRosanna\nRosario\nShanon\nShirley\nSofia\nStacia\nStephany\nWendi\nAdrian\nAllyson\nAlyson\nAnissa\nAnnie\nArlene\nBeatrice\nBrittany\nBrook\nBuffy\nCarisa\nCassie\nCelia\nCharmaine\nCherie\nChrissy\nClaire\nClara\nConsuelo\nCorrie\nDanelle\nDaniella\nDeann\nDelores\nDionne\nDusty\nElisabeth\nEliza\nEve\nEvelyn\nGena\nGeraldine\nGracie\nHannah\nHillary\nIrma\nJacque\nJaimie\nJanel\nJanie\nJanna\nJesica\nJo\nJosie\nJuliet\nKarie\nKendall\nLacey\nLana\nLara\nLatanya\nLatasha\nLayla\nLeanne\nLeyla\nLilia\nLiliana\nLois\nLucinda\nLupita\nLynda\nMandi\nManuela\nMara\nMarci\nMargo\nMariah\nMaribel\nMaricruz\nMarilyn\nMarion\nMarla\nMarlinda\nMaryann\nMeagan\nMeghan\nMercedes\nPhoebe\nRacheal\nRandi\nReina\nRosalie\nShea\nSilvia\nSusie\nTamera\nTania\nTiffanie\nTonia\nTori\nValencia\nVenessa\nJennifer\nMelissa\nJessica\nMichelle\nHeather\nChristina\nSarah\nLisa\nStephanie\nAmy\nAngela\nAndrea\nElizabeth\nNicole\nAmanda\nKimberly\nRebecca\nMaria\nKelly\nShannon\nCrystal\nJamie\nRachel\nVeronica\nLaura\nAmber\nMonica\nMary\nSara\nErin\nJulie\nDanielle\nVanessa\nApril\nCynthia\nErica\nTara\nTiffany\nChristine\nCarrie\nPatricia\nKatherine\nEmily\nAlicia\nSandra\nAnna\nDawn\nTina\nMelanie\nTracy\nDenise\nKristina\nSabrina\nSamantha\nTeresa\nValerie\nMisty\nBrandy\nJaime\nKaren\nKristy\nRenee\nDiana\nHolly\nKristin\nTanya\nStacy\nVictoria\nKristen\nWendy\nAngelica\nYvonne\nNatalie\nStacey\nCatherine\nKathryn\nBrandi\nCheryl\nGina\nTamara\nLinda\nLindsay\nLori\nSonia\nDeanna\nTheresa\nBrenda\nLeslie\nShawna\nSummer\nTammy\nCourtney\nMegan\nMelinda\nSusan\nDesiree\nLeah\nNancy\nPriscilla\nTrisha\nHeidi\nRegina\nAdrienne\nCassandra\nDeborah\nJill\nJulia\nMandy\nKathleen\nAllison\nClaudia\nErika\nMichele\nRobin\nTonya\nAutumn\nChristy\nSharon\nSylvia\nJacqueline\nJodi\nGloria\nKristi\nLeticia\nMarie\nJuanita\nSonya\nYolanda\nKara\nKendra\nSuzanne\nBrooke\nDana\nKelli\nPamela\nAshley\nBarbara\nDebra\nDonna\nNichole\nToni\nAnnette\nCarol\nKatie\nLindsey\nYvette\nAlison\nAnne\nAudrey\nKatrina\nMargaret\nRosa\nAimee\nAnn\nBianca\nEva\nFelicia\nJaclyn\nKarla\nOlivia\nRuth\nVirginia\nCarolyn\nColleen\nLauren\nMarisa\nMarissa\nMelody\nMonique\nRobyn\nShauna\nCarla\nCindy\nDiane\nKari\nTabitha\nCarmen\nJanet\nJenny\nKrista\nMindy\nShanna\nTraci\nAlma\nCharity\nConnie\nIrene\nMartha\nPaula\nRachael\nRita\nAna\nAudra\nBonnie\nCandace\nIsabel\nJoanna\nKelley\nMargarita\nNaomi\nNorma\nRaquel\nRoxanne\nTricia\nAlexis\nAngelina\nAnita\nCristina\nFaith\nJolene\nJoy\nKerry\nMarcella\nRhonda\nAlyssa\nBethany\nCaroline\nCharlene\nElena\nElisa\nKellie\nKrystal\nLaurie\nTrina\nAdrianne\nAlisha\nCharlotte\nDebbie\nEricka\nFrances\nJanelle\nKristie\nRhiannon\nSherri\nAdriana\nBelinda\nCandice\nCara\nCelina\nCorina\nGenevieve\nKathy\nKeri\nLorena\nRosemary\nRuby\nStefanie\nAmelia\nBeth\nCamille\nCecilia\nClarissa\nDolores\nEsmeralda\nGinger\nJanice\nJennie\nKarina\nKristine\nLacey\nLuz\nLydia\nMarsha\nRoberta\nSheila\nTerri\nTracey\nBecky\nGuadalupe\nJody\nMarlena\nMeredith\nMiranda\nRachelle\nSheri\nTasha\nBeatrice\nBriana\nEsther\nGabriela\nGrace\nLillian\nMandi\nMaritza\nNina\nSally\nShawn\nSherry\nSophia\nTami\nAmie\nAngel\nAngelita\nBernadette\nBeverly\nCandy\nCassie\nChristie\nDarlene\nDena\nElaine\nEsperanza\nJeanette\nJocelyn\nKasey\nKerri\nLeanne\nLorraine\nMalinda\nNadine\nShelley\nStacie\nAlexandra\nAlissa\nAngelique\nBobbie\nBridget\nCarissa\nCasey\nCeleste\nChelsea\nCorinne\nJacquelyn\nJillian\nLatoya\nMariah\nMaribel\nMarisol\nMeghan\nMolly\nNatasha\nNikki\nRamona\nRene\nRochelle\nRosalinda\nRyan\nSelena\nSelina\nSerena\nSonja\nTeri\nTerra\nTia\nAlisa\nAthena\nBillie\nBlanca\nBobbi\nDoreen\nGabrielle\nGwendolyn\nHelen\nImelda\nJami\nJana\nKimberlee\nKirsten\nLeigh\nMarilyn\nMaxine\nMelina\nPenny\nShana\nShelby\nShelly\nStaci\nStella\nSunshine\nTisha\nTracie\nVenessa\nAbigail\nBrittany\nCarey\nCorrie\nDevon\nElisha\nHilary\nHollie\nIrma\nJackie\nJanette\nJeannette\nJoanne\nJosie\nLatisha\nLea\nLucia\nLucinda\nMarcia\nMarisela\nMarlene\nMaureen\nMelisa\nMiriam\nNadia\nNoemi\nRebekah\nTamika\nValencia\nYadira\nYesenia\nAlexandria\nAlice\nAndreana\nAnnie\nAntoinette\nAntonia\nAraceli\nArlene\nBrianna\nBrianne\nCarolina\nCelia\nCheri\nCherie\nChrista\nChrystal\nCorrina\nCristy\nDarla\nDestiny\nDianna\nDina\nDominique\nEmma\nEvelyn\nFrancisca\nGretchen\nHannah\nJanae\nJenifer\nJo\nJoann\nJudith\nJudy\nKate\nKaty\nKimberley\nLatasha\nMagdalena\nMaricela\nMarla\nMayra\nMisti\nMorgan\nMyra\nNora\nPeggy\nReyna\nRosalie\nRose\nShanda\nSocorro\nTamra\nTania\nTera\nTerry\nWanda\nWendi\nAlana\nAlejandra\nAngie\nAubrey\nBettina\nBetty\nBrandie\nBridgette\nBrook\nCari\nCathy\nClaire\nClara\nConsuelo\nDaphne\nDarcy\nDeana\nDorothy\nEileen\nElaina\nElisabeth\nElissa\nElsa\nElvira\nFlora\nHallie\nHarmony\nIsela\nJanell\nJanuary\nJesse\nJosephine\nJune\nKathrine\nKeely\nKim\nKristal\nLacy\nLarissa\nLeann\nLesley\nLoretta\nLynette\nLynn\nManuela\nMarlinda\nMichael\nMireya\nOlga\nPaige\nRonda\nSandy\nSasha\nShaunna\nShea\nSondra\nSusie\nTanisha\nValentina\nAbby\nAisha\nAlberta\nAlexa\nAlyson\nAriane\nBernadine\nBertha\nBree\nCarina\nCheyenne\nChrissy\nChristel\nCora\nCorie\nCory\nDaniel\nDaniella\nDelilah\nEdith\nEleanor\nEllen\nFawn\nFrancine\nGayle\nGeorgina\nHillary\nIda\nJane\nJasmine\nJeanne\nKami\nKarin\nKary\nLana\nLara\nLaurel\nLeanna\nLeona\nLiz\nLorie\nLourdes\nLuisa\nMackenzie\nMandie\nMara\nMarianne\nMaryann\nMaya\nMeaghan\nMercedes\nMercy\nNellie\nNicolle\nPhyllis\nPricilla\nRandi\nRenae\nRhea\nRichelle\nRoseann\nSadie\nSalina\nShari\nShasta\nShirley\nSierra\nSommer\nStacia\nStarla\nSusanna\nTammie\nTessa\nThelma\nValeria\nVenus\nWhitney\nJennifer\nMelissa\nJessica\nAmanda\nMichelle\nSarah\nHeather\nChristina\nAmy\nNicole\nStephanie\nElizabeth\nLisa\nAngela\nKimberly\nMaria\nAndrea\nAmber\nRebecca\nCrystal\nMonica\nShannon\nJamie\nErin\nKelly\nLaura\nVeronica\nRachel\nTiffany\nSara\nApril\nVanessa\nErica\nDanielle\nMary\nAnna\nChristine\nPatricia\nMegan\nMisty\nCynthia\nJulie\nEmily\nAlicia\nKristina\nMelanie\nTara\nCarrie\nDawn\nBrandy\nKristen\nSamantha\nDenise\nHolly\nKatherine\nSusan\nCheryl\nTeresa\nSandra\nKristin\nNatalie\nValerie\nHeidi\nMelinda\nPriscilla\nStacy\nStacey\nRenee\nDiana\nJacqueline\nTina\nTracy\nAngelica\nLeah\nTanya\nVictoria\nLindsey\nBarbara\nBrandi\nErika\nKaren\nSummer\nJaime\nMindy\nLindsay\nYvonne\nLeslie\nBrooke\nLinda\nTamara\nKathryn\nKatrina\nSonia\nAshley\nTheresa\nCandice\nDeanna\nJill\nCourtney\nLauren\nNichole\nWendy\nBrenda\nMichele\nRegina\nRobin\nTammy\nMeghan\nMonique\nCatherine\nLeticia\nSabrina\nChristy\nDana\nKristi\nAnnette\nColleen\nGina\nKathleen\nAllison\nJulia\nKendra\nMargaret\nAna\nKatie\nLori\nOlivia\nPamela\nAutumn\nElisa\nSonya\nBethany\nBonnie\nKari\nKristy\nMarie\nNancy\nSharon\nJenny\nShawna\nAdriana\nAnn\nCassandra\nRosa\nYolanda\nBrianne\nMarissa\nRachael\nRoxanne\nYvette\nAnita\nAnne\nDeborah\nFelicia\nGloria\nSuzanne\nVirginia\nAdrienne\nAlisha\nCindy\nJanet\nMarisa\nTonya\nAlison\nBernadette\nCecilia\nDonna\nJodi\nNatasha\nShelly\nAlma\nAngelina\nCarmen\nDesiree\nElena\nGuadalupe\nJuanita\nLydia\nMartha\nMiranda\nNaomi\nBianca\nDiane\nJoanna\nKelli\nSylvia\nTrisha\nIrene\nKrista\nAngie\nDebra\nLaurie\nMandy\nPaula\nAudrey\nCandace\nCharity\nJanelle\nJoy\nKarla\nKrystal\nRochelle\nShanna\nShauna\nAbigail\nCarolyn\nJana\nKara\nMarcella\nMelody\nRachelle\nRuby\nStacie\nToni\nClaudia\nCorina\nCristina\nFrances\nHannah\nNina\nRose\nSally\nSheila\nTami\nBeth\nBriana\nBrianna\nBridget\nCarla\nCarol\nCathy\nCelina\nEva\nIsabel\nJaclyn\nKristine\nShelley\nSherry\nAlexis\nAthena\nCorinne\nJasmine\nJeanette\nMargarita\nRaquel\nRuth\nSheri\nTraci\nTricia\nAudra\nBeatrice\nBecky\nCara\nCarly\nDebbie\nEricka\nGabriela\nGinger\nJanel\nKarina\nMarlena\nRhonda\nRobyn\nSophia\nTerri\nAimee\nAlissa\nCasey\nChelsea\nChristie\nFrancisca\nJolene\nJosephine\nMeredith\nRosalinda\nSherri\nSusana\nTracey\nAlyssa\nBobbie\nBreanna\nCharlene\nCharlotte\nChrista\nConnie\nElaine\nEsther\nEvelyn\nFaith\nKellie\nKeri\nKristie\nMandi\nMiriam\nNatalia\nRebekah\nRoberta\nAlisa\nDarlene\nDevon\nDorothy\nElvira\nGenevieve\nGeorgina\nJami\nJenifer\nJoanne\nKirsten\nLatanya\nLuz\nMarcia\nNikki\nRita\nRosemary\nShana\nStaci\nTisha\nVivian\nYesenia\nAlejandra\nAmelia\nBlanca\nCarissa\nCaroline\nCeleste\nCelia\nClarissa\nDina\nElisabeth\nHillary\nJackie\nJanice\nJessie\nJody\nKathy\nKristal\nLorraine\nMaritza\nMarlene\nNicolette\nRamona\nRyan\nTabitha\nTracie\nWhitney\nAdrianna\nAngel\nAngelique\nAraceli\nBelinda\nBobbi\nBrandie\nCamille\nCatalina\nChrissy\nChrystal\nCori\nDelia\nGretchen\nHelen\nJenna\nJennie\nJillian\nKelley\nKim\nLacey\nLara\nLeann\nLorena\nLucinda\nMarsha\nMercedes\nNadia\nNora\nNorma\nRandi\nSelena\nVenessa\nAlice\nAllyson\nAlvina\nAngelita\nAntonia\nDayna\nEsmeralda\nGrace\nGwendolyn\nJacquelyn\nJoann\nJodie\nKatharine\nKimberlee\nLatisha\nLeanna\nLeigh\nLena\nLoretta\nLynette\nLynn\nMalissa\nMariah\nMarilyn\nMarisol\nMarla\nMisti\nMolly\nNoemi\nRhiannon\nSandy\nTasha\nTerra\nTrina\nViviana\nAlyson\nAnissa\nAnnie\nAubrey\nBeatriz\nBetty\nBreanne\nCassie\nCelena\nDaniela\nDavina\nDestiny\nDolores\nDominique\nEbony\nEileen\nFrancine\nGlenda\nGriselda\nJean\nJocelyn\nJosie\nJudith\nKerri\nKerry\nMarisela\nMichael\nMichaela\nPauline\nPenny\nReyna\nRocio\nRosanna\nSelina\nShari\nSheryl\nSusie\nTania\nWendi\nAdrianne\nAlana\nAlexandra\nAlexandria\nAmie\nAntoinette\nBeverly\nCandi\nCari\nClara\nDallas\nGeorgia\nIris\nIvy\nJaimie\nJanette\nJosefina\nKate\nLaurel\nLeanne\nLee\nLupe\nMackenzie\nMaribel\nMayra\nMelisa\nNichol\nRene\nSasha\nShawn\nStarla\nSunshine\nSusanna\nTana\nTanisha\nTia\nAbby\nAndria\nArlene\nAurora\nBambi\nCandy\nCarina\nCarmelita\nCarolina\nCatrina\nCecelia\nChandra\nChantel\nChasity\nDaisy\nDeana\nDevin\nDora\nDulce\nDusty\nEdith\nEdna\nEliza\nEllen\nEsperanza\nHilda\nJanell\nJayme\nJeri\nJuliana\nKasey\nKaty\nKenya\nKimberley\nLeona\nLucia\nMarina\nMellissa\nMia\nNoelle\nRaven\nRayna\nRosanne\nRosie\nSalina\nSonja\nStefanie\nStella\nSunny\nTabatha\nTiffanie\nValencia\nAdrian\nAlberta\nAlexa\nAlysia\nAmalia\nAnastasia\nAriane\nArlinda\nBritney\nBryn\nCallie\nCami\nCarey\nCarisa\nCasandra\nCasie\nChastity\nCherie\nChristi\nChristin\nCody\nColette\nConsuelo\nCora\nCristal\nDarla\nDavid\nDelilah\nElisha\nElsa\nElvia\nEunice\nGabrielle\nGeorgette\nGraciela\nHarmony\nImelda\nIsela\nJanine\nJanna\nJanuary\nJeanne\nJeannette\nJeannie\nJena\nJeremy\nJo\nJordan\nJoyce\nJudy\nJulissa\nKami\nKarie\nKira\nKirstin\nKori\nKris\nKylene\nLacy\nLakisha\nLana\nLatoya\nLea\nLeia\nLeila\nLela\nLesley\nLetitia\nLiana\nLiliana\nLillian\nLinsey\nLizette\nLucy\nMalinda\nMarcie\nMariana\nMaricela\nMaureen\nMelina\nMicaela\nNadine\nNoel\nPearl\nPeggy\nPerla\nRonda\nRoseann\nRoseanna\nRoxanna\nSharla\nShelby\nShonda\nSocorro\nSommer\nStarr\nSuzette\nTamika\nTeri\nTerry\nThelma\nTiana\nTiffani\nTori\nTosha\nTrish\nVicki\nWindy\nYadira\nJennifer\nJessica\nMelissa\nAmanda\nSarah\nMichelle\nStephanie\nChristina\nNicole\nAmber\nLisa\nHeather\nRebecca\nAndrea\nElizabeth\nTiffany\nAngela\nAmy\nErin\nCrystal\nKimberly\nMaria\nApril\nRachel\nLaura\nJamie\nMonica\nSara\nVeronica\nDanielle\nKelly\nMary\nShannon\nEmily\nErica\nVanessa\nMegan\nJulie\nPatricia\nCynthia\nKristen\nAnna\nChristine\nKatherine\nAlicia\nKristin\nLindsay\nBrooke\nTara\nMonique\nSamantha\nBrandy\nMisty\nSandra\nMelanie\nNatalie\nTanya\nDenise\nValerie\nCourtney\nKathryn\nCarrie\nHolly\nKristina\nLeslie\nLeah\nDawn\nDiana\nStacy\nAshley\nErika\nKatie\nKaren\nSabrina\nTeresa\nTina\nAngelica\nKatrina\nAllison\nBrandi\nMelinda\nRenee\nSusan\nLauren\nHeidi\nNichole\nTamara\nKathleen\nMeghan\nRegina\nTheresa\nVictoria\nCandice\nCheryl\nDeanna\nStacey\nCassandra\nJaime\nMargaret\nTracy\nJulia\nSonia\nKristy\nLindsey\nBrenda\nChristy\nDeborah\nJacqueline\nKrista\nWendy\nCatherine\nLori\nYvonne\nDesiree\nLinda\nSuzanne\nGina\nLeticia\nRoxanne\nTrisha\nJill\nNaomi\nNatasha\nPamela\nAlisha\nAutumn\nSharon\nYolanda\nAlexis\nMarie\nPriscilla\nRosa\nBethany\nKristi\nRobin\nShawna\nBarbara\nClaudia\nRachael\nAlma\nBonnie\nCindy\nDonna\nKendra\nMichele\nMindy\nSummer\nTonya\nAdriana\nDana\nJenny\nKelli\nRebekah\nStefanie\nFrances\nKara\nKari\nMarissa\nTammy\nVirginia\nAdrienne\nAlison\nCandace\nCarmen\nCecilia\nGuadalupe\nLydia\nMandy\nNancy\nOlivia\nSonya\nTasha\nAna\nFelicia\nRaquel\nCristina\nDiane\nKarla\nMiranda\nAnne\nChrista\nJoanna\nLorena\nMaribel\nMartha\nShauna\nYvette\nAnn\nAnnette\nAudrey\nColleen\nDebra\nKristine\nPaula\nRoberta\nRobyn\nCara\nClarissa\nGloria\nKimberley\nMarisa\nSheila\nAimee\nJodi\nKarina\nCarolyn\nEsther\nEva\nJaclyn\nKelley\nRuth\nSylvia\nAlissa\nAngelina\nBeth\nBianca\nCharlene\nGabriela\nJanet\nJeanette\nJolene\nKellie\nRosemary\nRuby\nShelly\nToni\nTricia\nWhitney\nAngel\nBrianna\nEsmeralda\nHilary\nIsabel\nJacquelyn\nJuanita\nRachelle\nRita\nRochelle\nSophia\nAbigail\nAlyssa\nDestiny\nGrace\nJessie\nJoy\nKrystal\nMaritza\nMorgan\nTabitha\nAnita\nAntonia\nAubrey\nBlanca\nBrianne\nBridget\nCarla\nCorina\nGenevieve\nJanelle\nJenna\nJocelyn\nMeredith\nRhonda\nSalina\nShelby\nShelley\nStacie\nSusana\nTraci\nCeleste\nChelsea\nJohanna\nMolly\nNina\nNorma\nRose\nTerri\nTrina\nAlice\nAudra\nBillie\nBrandie\nBriana\nBrittany\nCasey\nCassie\nConnie\nHope\nJosephine\nLacey\nLorraine\nLynette\nLynn\nMarcella\nMelody\nSheri\nYesenia\nAdrianne\nAmelia\nAmie\nBecky\nBernadette\nChristie\nClara\nDebbie\nDianna\nElena\nElsa\nGeneva\nHannah\nJana\nJanette\nJanice\nJoann\nKerri\nKimberlee\nLaurie\nMargarita\nMaureen\nMichael\nNikki\nTami\nTracey\nYadira\nAlana\nAlexandra\nAngie\nBeatrice\nBobbie\nCelina\nChantel\nChrystal\nElaine\nElisa\nElisha\nEmma\nEricka\nFrancisca\nIrma\nJackie\nJasmine\nJenifer\nJudith\nKathy\nKerry\nKirsten\nLatoya\nLeanna\nMeagan\nNicolette\nPauline\nPerla\nRamona\nShanna\nAlisa\nAlvina\nAraceli\nBetty\nCamille\nCarly\nCarol\nCharity\nCharlotte\nDelia\nDolores\nEllen\nEvelyn\nIrene\nJami\nJanell\nJayme\nJeri\nKeri\nKristal\nKristie\nLara\nLea\nLeann\nLena\nLillian\nMandi\nMarisela\nMayra\nMiriam\nSally\nSerena\nSherry\nSuzette\nTaryn\nAlexandria\nAllyson\nAriana\nArlene\nAthena\nBobbi\nCelia\nClaire\nConsuelo\nCori\nDora\nDorothy\nDusty\nElvira\nEunice\nGinger\nIris\nJoni\nJosie\nKasey\nKate\nLarissa\nLaurel\nLoretta\nLupita\nMarci\nMarcia\nMarcie\nMariah\nMaricela\nMarina\nMercedes\nNadia\nPearl\nRhiannon\nSandy\nSasha\nSelena\nSherri\nShirley\nSonja\nStaci\nTania\nVivian\nViviana\nAngelique\nAngelita\nAnnie\nBertha\nBreanne\nBrook\nCarolina\nCathy\nChristin\nEbony\nEdith\nEsperanza\nGeorgina\nGraciela\nHelen\nJennie\nJillian\nJodie\nJody\nJoyce\nLacy\nLatasha\nLatisha\nLourdes\nMagdalena\nMariana\nMarisol\nMarlena\nMarlene\nMelina\nMichaela\nNoelle\nNora\nShana\nSusanna\nTeri\nVicki\nAlejandra\nAlyson\nArmida\nCarmelita\nCaroline\nCatrina\nChandra\nCheri\nCherie\nCortney\nDara\nDesirae\nDevon\nDulce\nEdna\nElisabeth\nElise\nGabrielle\nGeorgia\nHelena\nHillary\nIvy\nJaimie\nJane\nJanel\nJoanne\nJoleen\nJudy\nKim\nLana\nLani\nLee\nLeia\nLizette\nLoni\nLucinda\nLuz\nMelisa\nMia\nMyra\nNadine\nNikole\nPaige\nPenny\nRacheal\nRandi\nReyna\nRocio\nSelina\nTabatha\nTalia\nTamera\nTanisha\nTerra\nAdelina\nAdrianna\nAndria\nAntoinette\nArianna\nAurora\nBeatriz\nBelinda\nBrenna\nBrittney\nChristen\nChristi\nCora\nCorinne\nDaisy\nDaniela\nDaniella\nDarcy\nDarlene\nDayna\nEileen\nEleanor\nEugenia\nEvangelina\nFaith\nGladys\nHaley\nIngrid\nJeannie\nJordan\nJuliet\nKerrie\nKisha\nLatanya\nLeanne\nLeigh\nLetitia\nLindy\nLora\nLucia\nMarilyn\nMarivel\nMarjorie\nMisti\nNatalia\nNoemi\nReina\nRikki\nRonda\nRosalinda\nRosanna\nRosie\nSiobhan\nStarla\nSuzanna\nTawnya\nTera\nTia\nTiffanie\nTisha\nTori\nVicky\nAdriane\nAisha\nAja\nAlaina\nAlethea\nAlexia\nAnissa\nArlinda\nBridgett\nCandi\nCandy\nCari\nCarina\nCarissa\nCassidy\nCheyenne\nColette\nCorrine\nCristy\nDanica\nDaniel\nDavina\nDeann\nDeidra\nDena\nDustie\nElaina\nEmilie\nErnestina\nErnestine\nEstrella\nFatima\nFaye\nGwendolyn\nIda\nInez\nIsela\nJanis\nJeanie\nJeanine\nJerilyn\nJoey\nJuana\nJustin\nKami\nKaralee\nKarin\nKassandra\nKaty\nKay\nKori\nKylie\nLeona\nLiana\nLisette\nLyndsey\nMaggie\nMarcy\nMaren\nMarsha\nMatthew\nMaya\nMellissa\nMireya\nMonika\nPaulette\nPetra\nRae\nRena\nRenae\nRichelle\nRoxana\nRoxann\nSage\nSebrina\nSerina\nShannan\nShawn\nShayna\nSilvia\nSommer\nStella\nStephenie\nSusanne\nTammi\nTana\nTanna\nTerry\nTessa\nTonia\nTrinity\nVera\nWendi\nJennifer\nJessica\nMelissa\nAmanda\nStephanie\nSarah\nNicole\nMichelle\nChristina\nAmber\nElizabeth\nCrystal\nHeather\nRebecca\nLisa\nAngela\nAndrea\nAmy\nKimberly\nMaria\nTiffany\nApril\nErin\nLaura\nRachel\nMonica\nVanessa\nJamie\nDanielle\nVeronica\nSara\nShannon\nErica\nEmily\nKelly\nKristen\nMary\nKristin\nMegan\nPatricia\nCynthia\nJulie\nAnna\nCourtney\nChristine\nAlicia\nKatherine\nLindsay\nTara\nSandra\nSamantha\nAshley\nDiana\nLindsey\nValerie\nBrandy\nLeslie\nAngelica\nBrandi\nBrooke\nCarrie\nMisty\nTanya\nDenise\nRenee\nNatalie\nCassandra\nLauren\nJaime\nMonique\nKristina\nPriscilla\nHolly\nVictoria\nJulia\nTamara\nHeidi\nKatie\nTeresa\nKatrina\nMelanie\nTheresa\nAllison\nCandice\nMelinda\nTracy\nBrenda\nKaren\nStacy\nNatasha\nSabrina\nAna\nDawn\nLinda\nNichole\nJacqueline\nKathryn\nErika\nKrystal\nLeticia\nStacey\nSummer\nLeah\nPamela\nSonia\nRegina\nBethany\nLori\nSophia\nTammy\nClaudia\nKathleen\nTina\nDana\nKristy\nMeghan\nSharon\nAdriana\nAlexis\nMargaret\nRachael\nRobin\nYvonne\nAlison\nBarbara\nCandace\nMarissa\nSusan\nSuzanne\nYvette\nAutumn\nCasey\nFelicia\nRoxanne\nShawna\nWendy\nDeanna\nNancy\nCarolyn\nSonya\nYolanda\nCarla\nCatherine\nChristy\nJill\nKendra\nRosa\nTrisha\nCristina\nGuadalupe\nJoanna\nDesiree\nGina\nKristi\nCheryl\nMorgan\nSylvia\nAudra\nBeth\nCarmen\nJodi\nJolene\nKarina\nMiranda\nAngelina\nDonna\nKara\nKari\nMandy\nMarisa\nMartha\nNaomi\nRebekah\nAlisha\nAnnette\nBonnie\nCecilia\nIrene\nJenny\nJoy\nTasha\nJanet\nKelli\nNina\nAlyssa\nAmelia\nCelina\nGloria\nMarie\nBrittany\nCaroline\nCindy\nGabriela\nJanelle\nMelody\nOlivia\nRochelle\nTonya\nVirginia\nAbigail\nAdrienne\nAimee\nAnn\nBrianne\nCorina\nElisa\nJenna\nStefanie\nToni\nAngel\nBrianna\nKellie\nMeagan\nMichele\nMolly\nPaula\nRuth\nAlexandra\nConnie\nEsther\nFrances\nFrancisca\nKarla\nKirsten\nLatoya\nLydia\nMaribel\nMindy\nRhonda\nWhitney\nAlma\nAnne\nBianca\nBridget\nIsabel\nJaclyn\nRobyn\nShanna\nTabitha\nAudrey\nCarly\nCeleste\nDeborah\nDebra\nElena\nEva\nJasmine\nJosephine\nLacey\nRaquel\nAlissa\nAnita\nBecky\nCara\nClarissa\nColleen\nElaine\nEvelyn\nJeanette\nJuanita\nRose\nShauna\nShelly\nSheri\nBlanca\nBriana\nCassie\nDestiny\nDiane\nJana\nJanice\nJenifer\nMarcella\nTracey\nTricia\nCarol\nJanette\nJocelyn\nKerry\nLacy\nLucinda\nMia\nRuby\nShelley\nTashina\nAmie\nAngelita\nBobbi\nCamille\nCharlotte\nDaisy\nDora\nFaith\nGinger\nHannah\nHelen\nJeannette\nJillian\nJoanne\nKathy\nKrista\nLeanne\nLiliana\nLorraine\nMargarita\nNorma\nRamona\nSelina\nSheila\nTraci\nVenessa\nYesenia\nAlana\nAntoinette\nAntonia\nAshlee\nAshleigh\nCharity\nChelsea\nDaniela\nGabrielle\nJessie\nKristine\nKyla\nRene\nRhiannon\nRoberta\nSandy\nSherri\nStacie\nTerri\nAdrianna\nAdrianne\nAlejandra\nAlisa\nAubrey\nBernadette\nCharlene\nGenevieve\nHaley\nJennie\nJody\nJohanna\nJoni\nJudith\nKate\nKelley\nKeri\nKimberlee\nLaurie\nLeanna\nLorena\nMarina\nMaritza\nMiriam\nPauline\nRita\nRosemary\nSherry\nAlice\nAthena\nBeatriz\nBelen\nCari\nCarissa\nChandra\nChrista\nChristin\nClaire\nDianna\nDolores\nDominique\nEileen\nElsa\nEricka\nHayley\nJacquelyn\nKerri\nKira\nLea\nLeigh\nMaricela\nMelisa\nPearl\nRandi\nSelena\nSerena\nShana\nTami\nTeri\nTiffanie\nTrina\nAmalia\nCathy\nChrystal\nDeidra\nDelia\nEsperanza\nGeorgina\nHillary\nJoan\nLesley\nLisette\nLucia\nLynn\nMarisol\nMeredith\nNoemi\nRachelle\nSally\nSheryl\nSonja\nSunshine\nTanisha\nUrsula\nAlexandria\nAngelique\nAriana\nBetty\nBridgette\nCorey\nCorrine\nDaniella\nDena\nElise\nEmilia\nEmma\nFrancine\nGrace\nHilary\nIrma\nIvy\nJanine\nJuliet\nKami\nKimberley\nLara\nLarissa\nLatanya\nLaurel\nLena\nLillian\nLuz\nLynda\nLynette\nMaggie\nMandi\nMarcia\nMariana\nMarilyn\nMaureen\nNadine\nNicolette\nNikki\nPaige\nPeggy\nPenny\nRosalinda\nRoxana\nStaci\nSue\nSusana\nSusanna\nTamra\nTiana\nAdrian\nAnastasia\nAnnie\nBrittney\nCasandra\nChristie\nCorinne\nCortney\nDanelle\nEbony\nEdith\nElisabeth\nEllen\nElvira\nEsmeralda\nFawn\nGretchen\nHelena\nIris\nJami\nJanell\nJordan\nJoyce\nJustine\nKasey\nKatharine\nLeann\nLoretta\nLucy\nMarisela\nMaryann\nMayra\nMichael\nNadia\nRyan\nShayna\nShelby\nSherrie\nStarla\nTamika\nTarah\nTaylor\nTeena\nTera\nTerra\nTia\nTiffani\nTisha\nValarie\nVicki\nVicky\nViviana\nAdelina\nAlyson\nAngie\nAraceli\nAurora\nBenita\nBernice\nBertha\nBillie\nBrandie\nBreanna\nBrook\nCandy\nCarina\nCarisa\nCatrina\nCelena\nCelia\nCherie\nClara\nConstance\nDarlene\nDavid\nDeana\nDina\nDusty\nEleanor\nElisha\nElissa\nEstella\nFrancesca\nGayle\nGriselda\nHope\nJade\nJane\nJanna\nJayme\nJean\nJenelle\nJessi\nJoann\nKelsey\nKristie\nLilia\nLindy\nLourdes\nLyndsey\nMarci\nMariah\nMarla\nMarlena\nMarlene\nMercedes\nMyra\nNora\nOlga\nPatrice\nReanna\nRocio\nRosio\nSasha\nShayla\nStarr\nTessa\nTracie\nTrudy\nYadira\nAbby\nAlexa\nAlexia\nAnnalee\nAracely\nArlene\nBeatrice\nBelinda\nBetsy\nBrenna\nCami\nCarlene\nCarolina\nCatalina\nCecelia\nChantelle\nChristen\nClare\nCori\nCristen\nDayna\nDebbie\nDeidre\nDorothy\nElicia\nFelisha\nGail\nGeneva\nGwendolyn\nHilda\nImelda\nIsela\nJackie\nJazmin\nJeanne\nJodie\nJudy\nJuliana\nJulianne\nJustin\nKandice\nKaty\nKristal\nLana\nLatasha\nLee\nLeilani\nLily\nLiza\nLupita\nMagdalena\nMalinda\nMargo\nMarjorie\nMark\nMatilda\nMelina\nNellie\nNeva\nPaulina\nPerla\nPhyllis\nRachell\nRaven\nRebecka\nReina\nRenae\nRichelle\nRoxanna\nSalina\nSandi\nShandra\nShasta\nSheena\nShiloh\nShirley\nSilvia\nSofia\nSommer\nSuzanna\nTabatha\nTerry\nTiara\nTrista\nVannessa\nVickie\nVivian\nJennifer\nJessica\nSarah\nStephanie\nAmanda\nMelissa\nNicole\nMichelle\nChristina\nElizabeth\nCrystal\nAmber\nHeather\nAndrea\nAmy\nVanessa\nAngela\nTiffany\nKimberly\nRebecca\nLisa\nRachel\nDanielle\nSara\nJamie\nLaura\nErin\nMaria\nEmily\nAshley\nMonica\nApril\nVeronica\nShannon\nErica\nKelly\nMegan\nCassandra\nSamantha\nMary\nKristen\nLindsey\nLindsay\nKristin\nAlicia\nJulie\nNatalie\nValerie\nCynthia\nLauren\nCourtney\nPatricia\nAnna\nTara\nChristine\nKathryn\nKatherine\nAngelica\nDiana\nLeah\nDesiree\nHeidi\nDenise\nKristina\nKatie\nJacqueline\nSandra\nKrystal\nAllison\nHolly\nBrandy\nCarrie\nVictoria\nTheresa\nCatherine\nMelanie\nErika\nKaren\nMisty\nNatasha\nPriscilla\nStacy\nCandice\nJaime\nLeslie\nSabrina\nKatrina\nShawna\nTanya\nBrittany\nBethany\nBrandi\nClaudia\nKathleen\nMonique\nAlexis\nNichole\nDawn\nMeghan\nStacey\nCandace\nGina\nYvonne\nSonia\nTeresa\nTina\nTamara\nDeanna\nJillian\nJulia\nLeticia\nRenee\nBrooke\nLinda\nStefanie\nPamela\nWendy\nFelicia\nMichele\nLacey\nAdriana\nRegina\nRobin\nSusan\nSylvia\nAutumn\nBrenda\nChelsea\nYvette\nMarissa\nAna\nBarbara\nGloria\nKara\nKrista\nMorgan\nSharon\nRebekah\nSophia\nTracy\nTrisha\nAdrienne\nCarla\nDana\nJill\nKari\nMelinda\nOlivia\nRachael\nAlisha\nColleen\nJanelle\nJoanna\nSheena\nCasey\nDeborah\nGuadalupe\nJaclyn\nKristy\nLori\nMartha\nRachelle\nTasha\nYolanda\nAimee\nAlison\nCassie\nDonna\nJeanette\nJuanita\nMandy\nRuth\nAngelina\nJacquelyn\nKelli\nKristi\nMiranda\nRoxanne\nSonya\nVirginia\nAnnette\nBonnie\nJolene\nKendra\nMargaret\nMarisa\nNancy\nNina\nSummer\nAngel\nAudrey\nCecilia\nClarissa\nDiane\nLaurie\nMarie\nRosa\nTammy\nAlma\nBianca\nCara\nCarmen\nEvelyn\nGabriela\nJasmine\nJenny\nShauna\nSuzanne\nBriana\nCheryl\nChristy\nCindy\nCristina\nElena\nFrances\nMelody\nMolly\nNaomi\nRaquel\nAnne\nAubrey\nBrianna\nBrittney\nCarolyn\nCelina\nCharlene\nElisa\nJodi\nRandi\nRochelle\nSheila\nAlana\nAlexandra\nAlyssa\nAnn\nJanet\nKarla\nLorraine\nTabitha\nTia\nAngelique\nAnita\nEva\nLorena\nMaureen\nRosanna\nShelly\nTraci\nAudra\nBridget\nCorina\nDebra\nJessie\nKristine\nKrystle\nMindy\nShanna\nToni\nAntoinette\nElisabeth\nIrene\nAbigail\nAmelia\nCarissa\nCeleste\nEsther\nFrancisca\nJenifer\nJosephine\nJudith\nKellie\nKeri\nKira\nRoberta\nSelina\nSonja\nAlejandra\nBeatrice\nBernadette\nBeth\nBrianne\nCarly\nCaroline\nChandra\nCharlotte\nDarlene\nIsabel\nJackie\nKarina\nLydia\nMaribel\nMarisol\nRobyn\nAmie\nAnnie\nBelinda\nBlanca\nCamille\nDestiny\nHillary\nJami\nJanette\nJenna\nKirsten\nLeanne\nMargarita\nPaula\nRita\nRosalinda\nRose\nSasha\nSerena\nShana\nTerra\nTessa\nTonya\nAlexia\nBreanna\nChrystal\nFrancine\nHilary\nJanice\nJennie\nJoy\nKathy\nLacy\nLourdes\nMarcella\nRhonda\nAdrianna\nAlissa\nAshlee\nBobbie\nCharity\nCheyenne\nDaniela\nDebbie\nEsmeralda\nGenevieve\nGrace\nHannah\nJuliana\nKassandra\nKate\nKayla\nKelsey\nLatasha\nLee\nLynda\nMarina\nMarlene\nMeredith\nNoel\nRuby\nWendi\nAdrianne\nAlexa\nAlexandria\nAllyson\nBecky\nBetty\nCarol\nDarcy\nDesirae\nEricka\nFaith\nJanae\nJocelyn\nKelley\nLeigh\nLesley\nMaritza\nMiriam\nNadia\nSally\nSelena\nStacie\nTaryn\nTeri\nWhitney\nAntonia\nAshleigh\nAthena\nBeverly\nBreanne\nEbony\nElise\nEsperanza\nIris\nJana\nJayme\nJulianna\nKatharine\nKimberlee\nKristal\nLara\nLatoya\nLiliana\nMarilyn\nMartina\nNikki\nNorma\nPeggy\nRhiannon\nRosemary\nShelby\nShelley\nSherrie\nSiobhan\nTabatha\nTalia\nTerri\nTricia\nAdrian\nAlice\nArlene\nBobbi\nBritney\nCarolina\nCathy\nClaire\nConstance\nCori\nDaniella\nDena\nDora\nEileen\nElissa\nElsa\nFallon\nGeorgina\nJody\nJohanna\nKerri\nLeila\nLuz\nMariah\nMarsha\nMayra\nMia\nMichael\nMyra\nNora\nOlga\nPaige\nSalina\nSherry\nSocorro\nSondra\nStaci\nStephenie\nSusana\nTamera\nTanisha\nTiffani\nVenessa\nAngelita\nArianna\nAriel\nCaitlin\nCecelia\nChristal\nChristi\nChristie\nChristin\nDaisy\nDeana\nDina\nDominique\nElaine\nElicia\nGinger\nHaley\nJanine\nJoann\nJodie\nJoni\nKami\nKandice\nKerry\nKristel\nLena\nLiza\nLoretta\nLucinda\nLupita\nLynn\nMalinda\nMarcela\nMarcia\nMaricela\nMarisela\nMeagan\nMercedes\nMyrna\nNatalia\nNichol\nNicolette\nPenny\nRenae\nSherri\nTera\nTracey\nVivian\nViviana\nAlaina\nAlanna\nAnastasia\nAngie\nAraceli\nAurora\nBeatriz\nBlair\nBrandie\nBrynn\nCarina\nCatalina\nCathleen\nCatrina\nCelia\nCherie\nChrista\nChristen\nChristopher\nCody\nConcepcion\nCora\nDara\nDavina\nDayna\nDeidra\nDemetria\nDianna\nDolores\nEleanor\nEllen\nEmilia\nFrancesca\nIrma\nJane\nJanel\nJanell\nJanie\nJesse\nJordan\nJoyce\nJuana\nKarrie\nKasey\nKaty\nKendall\nKera\nKimberley\nKyle\nLaurel\nLucy\nLuisa\nLupe\nLyndsay\nMarci\nMariana\nMelisa\nNereida\nPauline\nRacheal\nRamona\nRaylene\nRena\nRene\nRosario\nSheri\nShirley\nSilvia\nSommer\nSuzanna\nSuzette\nThelma\nTiffanie\nTisha\nTracie\nValarie\nYesenia\nAlba\nAlina\nAndrew\nArcelia\nAriana\nAriane\nAubree\nBelen\nBillie\nBridgett\nBridgette\nBrook\nCamilla\nCari\nCarlie\nCasandra\nCassidy\nChantel\nChelsey\nConnie\nCorrie\nCorrine\nDaniel\nDelilah\nDevin\nEdna\nElaina\nElisha\nEmilie\nEugenia\nEvangelina\nGabrielle\nGeraldine\nGladys\nGlenda\nGretchen\nHollie\nIsela\nIvy\nJade\nJaimie\nJason\nJeannette\nJenni\nJennilee\nJoelle\nJosefina\nJosie\nJune\nJustine\nKasandra\nKay\nKristyn\nLadonna\nLarissa\nLatanya\nLeann\nLeanna\nLeeann\nLillian\nLisette\nLora\nLucia\nLyndsey\nLynette\nLynnette\nMackenzie\nMaggie\nMarianne\nMarla\nMarlena\nMarlo\nMaryann\nMellisa\nNadine\nNoelle\nNydia\nRaven\nReyna\nRosie\nRowena\nSadie\nSandy\nShari\nShawn\nShayna\nSierra\nStella\nSydney\nTana\nTawnya\nTaylor\nTiana\nTiffiny\nTonia\nVanesa\nVicki\nJennifer\nJessica\nSarah\nStephanie\nMelissa\nAmanda\nNicole\nAshley\nMichelle\nCrystal\nChristina\nHeather\nElizabeth\nAmber\nVanessa\nAmy\nTiffany\nAndrea\nRebecca\nRachel\nKimberly\nMegan\nLisa\nDanielle\nAngela\nErin\nSara\nApril\nShannon\nErica\nLaura\nVeronica\nKelly\nJamie\nMaria\nKatherine\nLindsay\nKristen\nMonica\nEmily\nSamantha\nAlicia\nTara\nMary\nLindsey\nCynthia\nChristine\nLauren\nValerie\nCassandra\nHolly\nKristin\nPatricia\nCourtney\nNatalie\nAnna\nJacqueline\nKrystal\nJulie\nDesiree\nBrandy\nErika\nKristina\nAlexis\nBrittany\nMonique\nKatie\nDiana\nVictoria\nAngelica\nKathryn\nAllison\nHeidi\nMelanie\nNichole\nSabrina\nCarrie\nCatherine\nSandra\nNatasha\nChelsea\nTanya\nTheresa\nAdrienne\nJulia\nKathleen\nTeresa\nLeslie\nRenee\nLeah\nMisty\nStacey\nTamara\nCandice\nTina\nBrandi\nShawna\nBrenda\nStefanie\nBethany\nKatrina\nDawn\nDenise\nPriscilla\nStacy\nKaren\nSheena\nMeghan\nRegina\nAna\nJaclyn\nLeticia\nSusan\nYvette\nAlison\nBrooke\nKara\nSonia\nSophia\nJill\nKayla\nMargaret\nJaime\nKrista\nMarie\nMarissa\nNancy\nSylvia\nYvonne\nRachael\nTracy\nDeanna\nLinda\nMelinda\nMiranda\nAlexandra\nAutumn\nBriana\nClarissa\nPamela\nAdriana\nBrianna\nCandace\nDana\nFelicia\nAngelina\nClaudia\nDeborah\nGina\nRaquel\nRebekah\nSonya\nTasha\nWendy\nCasey\nKari\nKristi\nLacey\nMelody\nAlisha\nFrances\nJanelle\nJoanna\nMarisa\nRobin\nSharon\nSummer\nTammy\nAdrianna\nAnne\nBianca\nBridget\nBrittney\nCarolyn\nGuadalupe\nKristy\nMorgan\nVirginia\nAudrey\nCamille\nJenny\nMandy\nOlivia\nRandi\nRoxanne\nBarbara\nBernadette\nBonnie\nCecilia\nCeleste\nColleen\nDiane\nKelli\nKendra\nKrystle\nLydia\nShauna\nTabitha\nCarla\nDebra\nElena\nElisa\nGloria\nJasmine\nKarla\nRachelle\nRosanna\nYolanda\nAbigail\nAlejandra\nAlyssa\nAngel\nAnnette\nAshlee\nCassie\nJeanette\nJillian\nNaomi\nRoberta\nRosa\nAimee\nCara\nCristina\nGabriela\nJodi\nLori\nRochelle\nSuzanne\nAmelia\nCheryl\nChristy\nJuanita\nLorena\nMichele\nRobyn\nAlexandria\nAubrey\nBrianne\nCindy\nHannah\nJanet\nKarina\nMargarita\nMeredith\nMolly\nNina\nRuth\nTrisha\nAnn\nBlanca\nCaitlin\nCarmen\nCelia\nCorina\nJoy\nKate\nMartha\nMayra\nPaula\nSasha\nToni\nTonya\nAntoinette\nCelina\nCharity\nDaisy\nEva\nJolene\nKristine\nRose\nAudra\nBelinda\nCharlotte\nDonna\nEsther\nIrene\nJade\nJenna\nJosephine\nKristie\nLaurie\nLeanne\nMarina\nMiriam\nSally\nShanna\nShelby\nSherri\nAnita\nAnnie\nBeth\nBillie\nCallie\nChandra\nChelsey\nChristi\nClaire\nEvelyn\nIsabel\nJessie\nJustine\nKatharine\nKira\nLourdes\nMaureen\nMeagan\nNikki\nRhonda\nRocio\nSelina\nSerena\nShana\nShelley\nTessa\nAlana\nAntonia\nBrandie\nChrystal\nDaniela\nDulce\nFrancine\nJacquelyn\nJoyce\nKellie\nKirsten\nLuz\nMarquita\nMindy\nShelly\nTera\nWhitney\nAraceli\nAriana\nCarly\nCarol\nCaroline\nCherie\nConnie\nDesirae\nDestiny\nElaine\nEricka\nHillary\nKasey\nKeri\nLarissa\nMaggie\nMarcella\nMelina\nSavannah\nSheila\nSherry\nSusana\nTabatha\nAlice\nAlma\nAngie\nAthena\nBecky\nBreanna\nChantel\nCharlene\nChrista\nEbony\nEdith\nGenevieve\nGeorgina\nGrace\nJackie\nJanice\nJudith\nKelley\nKristal\nLynn\nMallory\nMandi\nMarilyn\nMarisol\nMartina\nPaige\nRae\nRhiannon\nRosemary\nStaci\nAdrian\nAlisa\nAlissa\nAmie\nAngelique\nCarissa\nCassidy\nDominique\nDora\nFrancesca\nHelen\nJennie\nJodie\nKathy\nLana\nLynette\nMarci\nMariah\nMichael\nMisti\nNora\nReyna\nRita\nRoxanna\nShawn\nShayla\nSheri\nTami\nTiffanie\nAriel\nBobbi\nBreanne\nBrenna\nBridgette\nCarolina\nCathy\nCecelia\nChristie\nCorrina\nDaniella\nDelia\nDena\nElisabeth\nEllen\nFallon\nHilary\nHollie\nJanell\nJayme\nJohanna\nKacey\nKassandra\nLatoya\nLea\nLeandra\nLeann\nLillian\nMaritza\nNorma\nPauline\nPearl\nRoxana\nRuby\nSelena\nSonja\nSpring\nStacie\nTamra\nTerri\nTiffani\nTrina\nVenessa\nWendi\nYesenia\nAlanna\nAlberta\nAshleigh\nAurora\nBeverly\nChristian\nCorinne\nCristal\nDanelle\nDayna\nElsa\nEsmeralda\nFaith\nFrancisca\nGabriel\nGabrielle\nGinger\nGraciela\nGwendolyn\nJanel\nJanna\nJenelle\nJenifer\nJeri\nJoann\nJoanne\nJocelyn\nJody\nJordan\nJosefina\nKelsey\nKendall\nLacy\nLara\nLaurel\nLeia\nLily\nLizette\nLynnette\nMarcia\nMaribel\nMaricela\nMarlena\nNadia\nNatalia\nPatrice\nPerla\nReina\nRene\nRosalinda\nSalina\nSofia\nTia\nTonia\nTrista\nVivian\nYadira\nAndria\nArlene\nBeatrice\nBritney\nCandy\nCarmelita\nCatrina\nCharmaine\nCortney\nDara\nDeidra\nDolores\nDorothy\nEileen\nFernanda\nGeneva\nGillian\nHope\nIris\nIrma\nJacklyn\nJami\nJanae\nJanine\nJosie\nJuliana\nJustina\nKarin\nKerrie\nKim\nKimberlee\nKimberley\nLeanna\nLiliana\nLiza\nLoretta\nLyndsay\nLyndsey\nMagdalena\nMarcela\nMelisa\nMia\nNadine\nNydia\nRosalie\nRoseann\nRosio\nShirley\nTaylor\nTerra\nTiana\nTracey\nTraci\nTricia\nViviana\nAbby\nAdela\nAdrianne\nAnastasia\nAnissa\nAnthony\nBenjamin\nBetty\nBobbie\nCarey\nChanel\nChelsie\nCody\nCori\nDanica\nDarlene\nDavid\nDeana\nDeirdre\nDianna\nElise\nElisha\nEliza\nFelisha\nGretchen\nHayley\nHelena\nHolli\nJana\nJoan\nJuana\nKaleena\nKali\nKami\nKarissa\nKaty\nKaylene\nKerry\nKisha\nKristyn\nKrysten\nLaci\nLatisha\nLesley\nLisette\nLorraine\nLucinda\nLuisana\nMaira\nMaranda\nMariaelena\nMarian\nMariana\nMarion\nMarsha\nMaryann\nMona\nMyra\nNicolette\nNoemi\nPaulina\nPetra\nRayna\nRosemarie\nRyan\nSandy\nSarina\nSilvia\nSommer\nStephani\nSunny\nSusanna\nTamika\nTasheena\nTisha\nUrsula\nValarie\nVicki\nViridiana\nJennifer\nJessica\nAmanda\nAshley\nSarah\nStephanie\nMelissa\nNicole\nMichelle\nHeather\nAmber\nCrystal\nElizabeth\nChristina\nVanessa\nMegan\nAndrea\nTiffany\nDanielle\nAmy\nRachel\nKimberly\nRebecca\nLisa\nErin\nLauren\nJamie\nLaura\nAngela\nEmily\nMaria\nKatherine\nMonica\nSamantha\nShannon\nAlicia\nSara\nErica\nVeronica\nKelly\nLindsey\nBrittany\nCassandra\nLindsay\nApril\nKristen\nChristine\nCynthia\nValerie\nTara\nJenna\nKristin\nCourtney\nNatalie\nAnna\nKatie\nKristina\nVictoria\nMary\nKrystal\nPatricia\nChelsea\nHolly\nJulie\nMonique\nKathryn\nSheena\nAlexis\nKatrina\nNichole\nDiana\nJacqueline\nCandice\nDesiree\nAllison\nDenise\nErika\nLeslie\nJoanna\nLeah\nCarrie\nMeghan\nPriscilla\nLeticia\nBrandy\nSabrina\nAngelica\nRenee\nRachael\nTamara\nBethany\nGina\nKara\nStacy\nMarissa\nSandra\nBrenda\nCatherine\nDeanna\nMelanie\nTracy\nCandace\nStacey\nKathleen\nBrandi\nJulia\nAlexandra\nNatasha\nBrianna\nClaudia\nDana\nLacey\nLinda\nAna\nKelli\nKendra\nRebekah\nTeresa\nTina\nShawna\nTanya\nAudrey\nTheresa\nRegina\nAdriana\nCheryl\nHeidi\nKrista\nMiranda\nSylvia\nClarissa\nDawn\nKristy\nPamela\nRachelle\nStefanie\nYvonne\nAdrienne\nAlyssa\nKaren\nRoxanne\nWhitney\nAutumn\nBrittney\nElyse\nJaclyn\nOlivia\nMelinda\nSonya\nSophia\nTasha\nWendy\nBarbara\nBriana\nSonia\nSusan\nBrooke\nFelicia\nMargaret\nRobin\nAnn\nColleen\nJacquelyn\nJaime\nKristi\nVirginia\nJenny\nAlisha\nAlison\nCarmen\nCelina\nLatoya\nLori\nMorgan\nSavannah\nSharon\nBianca\nCara\nDeborah\nJodi\nRaquel\nAimee\nAnne\nCristina\nJasmine\nMayra\nMeagan\nMichele\nMisty\nAngelina\nAshlee\nCecilia\nGuadalupe\nHannah\nJanelle\nJill\nKari\nKarla\nMolly\nNancy\nToni\nAngel\nBeth\nBonnie\nCassie\nGabriela\nKayla\nMarie\nShanna\nYolanda\nAbigail\nAlexandria\nAmelia\nElisa\nJessie\nNaomi\nSuzanne\nBernadette\nBridget\nCarly\nCarolyn\nCasey\nGloria\nRandi\nRosa\nAlejandra\nCaitlin\nCarol\nCaroline\nCorina\nDominique\nIrene\nIsabel\nJocelyn\nJuanita\nKate\nMandy\nMelody\nRoberta\nRose\nRosemary\nTabitha\nTammy\nYvette\nBrianne\nCindy\nDebra\nGenevieve\nJanet\nJohanna\nJudith\nKristine\nLydia\nMarisol\nMartha\nMiriam\nStaci\nSummer\nAnita\nAnnette\nAshleigh\nBrandie\nBreanna\nCarla\nChristy\nJolene\nJoy\nKelsey\nNina\nPearl\nRochelle\nTonya\nTrisha\nAdrianna\nAlissa\nAriana\nCarissa\nDestiny\nElise\nEvelyn\nGrace\nHillary\nJana\nJennie\nJillian\nJosephine\nKarina\nKeri\nLarissa\nMallory\nMarisa\nMarquita\nRobyn\nRuth\nSheila\nStacie\nTrista\nAntoinette\nAraceli\nBelinda\nBlanca\nCharlene\nConnie\nFrances\nJeanette\nKasey\nLaurie\nMargarita\nShelby\nTaylor\nTessa\nAdrian\nAlma\nAngelita\nBecky\nBritney\nCeleste\nCelia\nCharity\nChelsey\nChrista\nElena\nEmma\nJami\nJordan\nKellie\nKirsten\nKristie\nLeann\nLucia\nMarcella\nMindy\nNorma\nRita\nSerena\nShauna\nTraci\nAubrey\nCasandra\nDaniela\nDebbie\nDiane\nDulce\nEsther\nEva\nFrancine\nFrancisca\nJustina\nJustine\nKristal\nMaribel\nMarina\nPaula\nRhiannon\nRhonda\nRyan\nSelina\nTerra\nAudra\nAurora\nCarolina\nCharlotte\nChristie\nDonna\nElisha\nEsmeralda\nGeorgina\nGwendolyn\nHelen\nJade\nJanae\nJudy\nKaty\nKrystle\nKyla\nLorraine\nLynette\nMaricela\nMaureen\nMeredith\nMyra\nNikki\nReyna\nRosanna\nRuby\nSally\nShelly\nSherry\nSusana\nTashina\nVenessa\nYesenia\nAmie\nAnnie\nAntonia\nAshlie\nBridgette\nCamille\nCatalina\nChristi\nCody\nConstance\nDeidra\nDelia\nDesirae\nElisabeth\nGabrielle\nJayme\nJeannette\nJodie\nJosie\nJulianne\nKassandra\nKendall\nKerry\nLara\nLiliana\nLynn\nMia\nNadia\nNicolette\nPaige\nRenae\nRocio\nSelena\nShayla\nTerri\nTiana\nAlisa\nAlyson\nAndria\nArielle\nBertha\nBobbie\nBrenna\nBrittani\nChrystal\nDaisy\nEileen\nEllen\nHilary\nHollie\nJasmin\nKatelyn\nKatharine\nKerri\nLacy\nLaurel\nLorena\nLoretta\nMaggie\nMarilyn\nNora\nOlga\nSalina\nShaina\nTabatha\nTiffani\nTiffanie\nTracie\nAbby\nAriel\nBeatrice\nBreanne\nCari\nChandra\nChanel\nChasity\nCherie\nChristin\nCorinne\nCrista\nCristal\nDanelle\nDavina\nDevon\nDianna\nEbony\nElaine\nElsa\nEmilia\nEricka\nEstrella\nFaith\nHayley\nHope\nIvy\nJackie\nJane\nJanice\nJeannie\nJena\nJesse\nJody\nJohn\nJoyce\nKelley\nKira\nLakisha\nLeila\nLenora\nLynda\nMagdalena\nMandi\nMariana\nMarla\nMaya\nMildred\nNoelle\nRamona\nRosalinda\nSandy\nSasha\nShari\nShelley\nSheri\nSherri\nSheryl\nSonja\nSpring\nTaryn\nTera\nTracey\nVivian\nViviana\nAdria\nAisha\nAlexia\nAlice\nAngie\nBeatriz\nBrandon\nCameron\nCaryn\nCassidy\nCelisse\nChantel\nChelsie\nChristal\nChristen\nChristian\nDarcy\nDeidre\nDorothy\nEleanor\nEsperanza\nFatima\nFlor\nGail\nGena\nGeneva\nGraciela\nHaley\nJanell\nJuliana\nKacie\nKarissa\nKim\nKirby\nKristan\nLana\nLea\nLeanna\nLeigh\nLena\nLucinda\nMalinda\nManuela\nMara\nMarcia\nMelina\nMelisa\nMichaela\nPaloma\nPauline\nReina\nRene\nRosalie\nRoxanna\nSierra\nSommer\nStephani\nSuzanna\nTess\nTisha\nTricia\nAda\nAddie\nAdriane\nAdrianne\nAfton\nAlana\nAllyson\nAnalicia\nAngelique\nAnissa\nAthena\nBeverly\nBritni\nCami\nCandy\nCathy\nCatrina\nCecelia\nChloe\nConsuelo\nCortney\nCory\nDannielle\nDarcie\nDina\nDolores\nDora\nDusty\nEcho\nElaina\nElvira\nEryn\nFrancis\nGeorgia\nGriselda\nIrma\nJeri\nJesus\nJo\nJoelle\nJoni\nJoseph\nKarli\nKeli\nKimberley\nKristyn\nLatanya\nLatricia\nLindy\nLiza\nLizette\nLuz\nLyndsey\nLynnette\nMaricella\nMarisela\nMaritza\nMercedes\nMisti\nMollie\nNadine\nNatalia\nNoemi\nPaola\nParis\nPaulette\nPenny\nPerla\nRacheal\nRoseanne\nRoxann\nShana\nShantel\nSharlene\nShaunna\nShayna\nShirley\nSilvia\nSofia\nStarr\nStella\nSusie\nTalia\nTami\nTarah\nTeri\nTianna\nTrina\nUrsula\nValarie\nValencia\nWilliam\nJessica\nAshley\nJennifer\nAmanda\nStephanie\nNicole\nSarah\nMelissa\nAmber\nChristina\nHeather\nMegan\nVanessa\nElizabeth\nCrystal\nRachel\nMichelle\nDanielle\nBrittany\nAndrea\nTiffany\nRebecca\nAmy\nSamantha\nKimberly\nLaura\nErin\nAngela\nLauren\nErica\nJamie\nEmily\nSara\nMaria\nMonica\nKelly\nLisa\nKatherine\nLindsay\nCassandra\nKristen\nVeronica\nAlicia\nValerie\nJenna\nKrystal\nShannon\nLindsey\nTara\nChelsea\nNatalie\nMary\nKathryn\nCynthia\nKristin\nPatricia\nCourtney\nChristine\nKristina\nVictoria\nApril\nDesiree\nJulie\nAngelica\nCandice\nErika\nSabrina\nMeghan\nMonique\nKatie\nAnna\nHolly\nAlyssa\nNatasha\nLeah\nPriscilla\nAllison\nDiana\nJoanna\nKatrina\nNichole\nBrandi\nJacqueline\nAlexandra\nStacy\nBrandy\nCatherine\nDenise\nMorgan\nAdriana\nMarissa\nMelanie\nTeresa\nAlexis\nTanya\nBrenda\nRenee\nTamara\nFelicia\nRachael\nAshlee\nCaitlin\nGina\nKathleen\nPamela\nSandra\nMargaret\nSavannah\nBrittney\nKrista\nSonya\nSusan\nBethany\nCandace\nDeanna\nKaren\nSheena\nYvonne\nBrooke\nNancy\nStacey\nKrystle\nRaquel\nCarrie\nLeslie\nSonia\nTheresa\nWhitney\nAna\nBarbara\nClaudia\nHeidi\nKara\nBrianna\nJulia\nLacey\nLinda\nMeagan\nTina\nTracy\nCecilia\nKristy\nMisty\nAlisha\nDominique\nJaclyn\nRebekah\nRoxanne\nBriana\nJaime\nRegina\nSophia\nSylvia\nTabitha\nAlison\nCasey\nChristy\nDeborah\nMayra\nShawna\nAubrey\nBianca\nMolly\nStefanie\nHannah\nJill\nMarisela\nMelinda\nMiranda\nNaomi\nRuth\nYvette\nAudrey\nCheryl\nClarissa\nGloria\nGuadalupe\nKelli\nKendra\nLeticia\nAutumn\nCarla\nCarmen\nColleen\nJanelle\nSheila\nYolanda\nAdrienne\nAmelia\nDana\nElisa\nMichele\nRobin\nWendy\nCamille\nJasmine\nLorena\nMarie\nSummer\nTaylor\nAimee\nAlejandra\nAnne\nBreanna\nCarolyn\nCristina\nJillian\nKelsey\nLatoya\nMallory\nRandi\nRochelle\nStacie\nTasha\nVirginia\nAngelina\nBonnie\nCassie\nCeleste\nKari\nKristine\nLori\nMarisa\nMelody\nMindy\nSuzanne\nAngel\nAnnette\nAshleigh\nCara\nCarly\nCharlotte\nElyse\nEsther\nFrances\nKarina\nKayla\nNikki\nRachelle\nRosa\nAlana\nDawn\nEva\nJacquelyn\nJosephine\nKarla\nLydia\nSharon\nTammy\nAnn\nBridget\nCaroline\nDiane\nDonna\nEvelyn\nGrace\nIrene\nJayme\nJenny\nKristi\nOlivia\nPaula\nTrisha\nAbigail\nCharlene\nChristie\nConnie\nDebra\nHillary\nJessie\nKate\nMandy\nMargarita\nNorma\nRosemary\nCelina\nCindy\nIsabel\nJordan\nJoy\nJuanita\nRoberta\nRobyn\nTaryn\nToni\nAlexandria\nAntoinette\nCarissa\nCharity\nDaniela\nDaniella\nDestiny\nDianna\nGabrielle\nHilary\nJanet\nJeanette\nKirsten\nMaricela\nNina\nShauna\nShelby\nSierra\nTerra\nTrista\nAnita\nCortney\nGabriela\nJami\nJocelyn\nKaitlin\nLacy\nRose\nSelina\nSerena\nAudra\nBobbi\nBrianne\nCallie\nCorina\nElise\nEsmeralda\nJolene\nKasey\nKristal\nMarisol\nMartha\nMeredith\nMiriam\nPerla\nReyna\nRita\nRuby\nSelena\nShanna\nShayna\nTonya\nAdrianna\nAlisa\nAlissa\nAnnie\nAntonia\nBeth\nBrenna\nBritney\nCiara\nDorothy\nDulce\nElena\nEmma\nFrancisca\nJade\nJanice\nJodi\nJohanna\nKaty\nKristie\nMaggie\nMarilyn\nMarina\nMichaela\nRosanna\nSally\nShelly\nSusana\nAriana\nAthena\nBeatriz\nBlanca\nChristin\nElaine\nHaley\nIris\nJean\nJustine\nKellie\nLarissa\nLuz\nMichael\nTiffani\nTori\nViviana\nBecky\nBernadette\nChrista\nDebbie\nDolores\nFaith\nJana\nJenifer\nJennie\nJuliana\nKatharine\nKerri\nLatisha\nMackenzie\nMarcella\nPaige\nRocio\nSantana\nShana\nSonja\nTabatha\nTarah\nTashina\nTerri\nTraci\nTrina\nVenessa\nAriel\nAshlie\nAshly\nBeatrice\nBelinda\nBillie\nBrittani\nCelia\nChandra\nChantel\nChelsie\nCherise\nDanica\nDeidre\nElisabeth\nEstrella\nHayley\nHope\nJane\nJoseph\nKassie\nKatelyn\nKira\nKrystina\nLatasha\nLeann\nLeila\nLisette\nLorraine\nLucia\nMalissa\nMaribel\nMaritza\nMaureen\nMia\nRhiannon\nRhonda\nRosalinda\nRyan\nSandy\nSasha\nShari\nSherry\nTera\nTeri\nTessa\nTierra\nValarie\nYesenia\nAlma\nAlycia\nAraceli\nArlene\nBeverly\nBlair\nBreanne\nBritni\nBrittni\nCasandra\nCatalina\nChristal\nChristen\nDanelle\nDarlene\nElsa\nFrancine\nGabriella\nGenevieve\nIrma\nIvy\nJames\nJasmin\nJulianna\nKali\nKassandra\nKeri\nLara\nLatanya\nLaurie\nLeandra\nLena\nLesley\nLiliana\nLucinda\nLyndsey\nMelina\nNadine\nNatalia\nNoelle\nReanna\nRosario\nSavanna\nShantel\nSherri\nSondra\nTawny\nValentina\nVivian\nAida\nAileen\nAlexia\nAlice\nAshli\nBobbie\nBrandie\nBridgette\nCari\nCarolina\nCatrina\nCecelia\nChelsey\nCheri\nCheyenne\nChristopher\nClaire\nClara\nCristal\nDanae\nDavina\nDeanne\nDelia\nDesirae\nEdith\nEllen\nEricka\nFernanda\nGraciela\nGriselda\nGwendolyn\nHelen\nJanna\nJazmin\nJena\nJoelle\nJosie\nJudith\nJuliann\nKami\nKathy\nKelley\nKendall\nKyle\nLeanna\nLillian\nLizette\nLynette\nMadeline\nMandi\nMara\nMariah\nMercedes\nNora\nOlga\nPenny\nRoxanna\nSalina\nSheri\nSuzanna\nTalia\nTia\nValeria\nYadira\nAdrian\nAdriane\nAlesha\nAllyson\nAlysia\nAndrew\nAngelique\nAubree\nBetty\nCalandra\nCherie\nChristi\nChristian\nCierra\nCody\nCorinne\nCorrine\nDani\nDelilah\nDina\nEileen\nElisha\nEsperanza\nHollie\nJackie\nJaimie\nJanell\nJerilyn\nJulissa\nKeshia\nKimberlee\nLeanne\nLee\nLindy\nLora\nLoren\nLourdes\nLupita\nLynnette\nMarcela\nMarianne\nMarlene\nMartina\nMatthew\nMyra\nNadia\nNicki\nNoel\nPauline\nPearl\nPetra\nRena\nShaina\nSheree\nStaci\nStella\nStevie\nTamra\nTiana\nTracey\nTracie\nViolet\nAbby\nAisha\nAlaina\nAlyson\nAnalisa\nAnastasia\nAndria\nAngie\nAnnamarie\nAshely\nAshlyn\nAurora\nAzucena\nBrittny\nCandy\nCarol\nCassidy\nCatarina\nCathy\nChantal\nChantell\nChelsee\nChrystal\nConstance\nCorey\nCori\nCorrina\nDaisy\nDarci\nDarcy\nDavid\nDayna\nDevon\nEliza\nElvia\nElvira\nEvette\nFrancesca\nGail\nGeneva\nGladys\nHailey\nHelena\nHolli\nJacinda\nJacklyn\nJanine\nJeanne\nJesse\nJoanne\nJoshua\nJoyce\nJulianne\nJustin\nKandice\nKatelin\nKaycee\nKenna\nKori\nKristan\nKristyn\nKrysta\nLaci\nLea\nLeeann\nLeigh\nLinsey\nLuisa\nMaegan\nMalia\nMarci\nMarla\nMarlena\nMaya\nMelisa\nMellisa\nMelodie\nMicaela\nMicah\nMirna\nMisha\nNatali\nNicolette\nNikole\nRacheal\nRamona\nRoseanna\nRosie\nSerina\nShelley\nShirley\nSiobhan\nStephaine\nStormy\nSydney\nTami\nTasia\nTiffanie\nTonia\nTricia\nVannessa\nWilliam\nJessica\nAshley\nAmanda\nJennifer\nSarah\nStephanie\nNicole\nMelissa\nBrittany\nHeather\nAmber\nDanielle\nVanessa\nElizabeth\nMegan\nMichelle\nCrystal\nChristina\nRachel\nSamantha\nTiffany\nKimberly\nAndrea\nAmy\nLauren\nSara\nRebecca\nMaria\nErica\nAngela\nAlicia\nLaura\nJamie\nEmily\nWhitney\nKatherine\nCassandra\nErin\nLisa\nKelly\nShannon\nVeronica\nCourtney\nKrystal\nMonica\nLindsey\nKristen\nVictoria\nKatie\nNatalie\nAngelica\nLindsay\nValerie\nAnna\nMary\nApril\nCynthia\nPatricia\nJulie\nKristina\nAllison\nKathryn\nBrittney\nChristine\nMonique\nTara\nFelicia\nChelsea\nKristin\nErika\nJenna\nAlexandra\nAlyssa\nDesiree\nDiana\nKatrina\nBrianna\nHolly\nNatasha\nSandra\nJacqueline\nSabrina\nPriscilla\nAlexis\nBethany\nKrista\nLeah\nNichole\nBrandi\nDenise\nTamara\nGina\nMeghan\nMelanie\nBrooke\nCandice\nBrenda\nCaitlin\nCatherine\nKathleen\nHannah\nStacey\nBianca\nMallory\nMarissa\nTanya\nAshlee\nKara\nLeslie\nRachael\nSavannah\nYvette\nKendra\nMorgan\nAdriana\nTeresa\nJoanna\nMayra\nHeidi\nKristy\nLacey\nRebekah\nStacy\nClaudia\nJulia\nKayla\nKelsey\nSophia\nAlisha\nCasey\nJasmine\nMelinda\nNancy\nTheresa\nAna\nCarrie\nDawn\nMolly\nRaquel\nRobin\nAngelina\nMargaret\nMisty\nTina\nBriana\nChristy\nKaren\nBonnie\nDeanna\nPamela\nRenee\nBreanna\nLeticia\nMarie\nOlivia\nSonya\nAlison\nKrystle\nStefanie\nTracy\nAimee\nAudrey\nBrandy\nKelli\nShawna\nAbigail\nAlexandria\nBrianne\nCandace\nCheryl\nDeborah\nDominique\nJacquelyn\nJanelle\nLinda\nMarisa\nRobyn\nRoxanne\nTasha\nCristina\nGuadalupe\nKari\nNaomi\nTaylor\nYolanda\nAdrienne\nAshleigh\nMichele\nCarmen\nCassie\nCindy\nJohanna\nMeagan\nMiranda\nRachelle\nSierra\nTabitha\nVirginia\nColleen\nGloria\nJillian\nJordan\nJustine\nSylvia\nAlejandra\nBarbara\nCecilia\nJaime\nJill\nMelody\nRandi\nRegina\nRochelle\nSasha\nSummer\nSusan\nWendy\nCara\nCarolyn\nClarissa\nDana\nJeanette\nJessie\nLydia\nSonia\nAlma\nCarla\nCeleste\nChrista\nDaniela\nElyse\nEmma\nEsther\nFrances\nKaylee\nMindy\nSheila\nYvonne\nAmelia\nAngel\nAnita\nChristie\nDiane\nElena\nFrancine\nKristi\nLorena\nPaula\nRuth\nShauna\nYesenia\nAshlie\nBridget\nCarissa\nCelina\nCristal\nElisa\nIsabel\nJaclyn\nJenny\nKirsten\nLori\nLuz\nNorma\nSelina\nSuzanne\nToni\nAnnette\nAutumn\nBernadette\nDebra\nEva\nJosephine\nKasey\nKelley\nKristine\nRosa\nShana\nSharon\nSheena\nAlissa\nAnne\nAriel\nBlanca\nCamille\nDesirae\nEliana\nGabrielle\nKate\nKatelyn\nMargarita\nMaribel\nNikki\nTrisha\nAdrianna\nAubrey\nBrenna\nCarolina\nCaroline\nDestiny\nDonna\nFaith\nGrace\nHaley\nIrene\nIris\nJanet\nJulianne\nKarina\nMandy\nMarisol\nMartha\nPerla\nRita\nRose\nRuby\nShelby\nSusana\nTaryn\nTonya\nAshly\nAudra\nBobbi\nBrittani\nCharlotte\nCiara\nGabriela\nKassandra\nKimberley\nLaurie\nLynette\nMadeline\nMaricela\nPaige\nRhiannon\nSerena\nShanna\nTraci\nAngelita\nAnnie\nAriana\nBecky\nCharity\nClaire\nCori\nDaisy\nGwendolyn\nHayley\nJanice\nJasmin\nJocelyn\nKarla\nKayleigh\nKira\nKristie\nLarissa\nLillian\nMiriam\nRichelle\nShaina\nSonja\nStaci\nAlana\nAlice\nAnastasia\nAnn\nAshton\nAthena\nBritney\nCarly\nChandra\nCharmayne\nFrancisca\nJeannette\nJena\nJodi\nJolene\nJuanita\nLiliana\nLyndsey\nMaritza\nNadine\nNina\nRosanna\nShea\nStacie\nAlycia\nAngelique\nAntoinette\nAraceli\nBritni\nCallie\nCasandra\nCassondra\nChantel\nChelsey\nCortney\nDaniella\nDelia\nGenevieve\nHelen\nHollie\nJaimie\nJana\nJulianna\nKellie\nKendall\nLacy\nLoretta\nMadison\nMarisela\nMeaghan\nMia\nRacheal\nReina\nRyan\nSalina\nTabatha\nTashina\nVenessa\nViolet\nAllyson\nAlysha\nBlair\nBridgette\nBrittni\nCarina\nCarol\nChelsie\nClara\nConnie\nConstance\nDavina\nDeidra\nDeidre\nDena\nDorothy\nDulce\nEsmeralda\nHillary\nJade\nJami\nJoni\nJuliana\nKaitlin\nKathy\nKaty\nKeri\nKristal\nKrysta\nLaurel\nLucinda\nMaggie\nMandi\nMelina\nMercedes\nMichaela\nMyra\nNatalia\nPeggy\nReanna\nRosalinda\nRoxana\nSavanna\nSelena\nShelly\nTana\nTiana\nAlexa\nAlyson\nAmie\nAntonia\nBailey\nBeth\nCassidy\nChanel\nCorina\nDeana\nDianna\nEbony\nElaine\nElise\nEllen\nEvelyn\nFrancesca\nGabriella\nGraciela\nHope\nJean\nJenifer\nJoanne\nJudith\nJudy\nKaitlyn\nKassie\nKatharine\nKortney\nLatoya\nLizette\nLucia\nMariah\nMarlene\nMeredith\nMichael\nReyna\nRhonda\nRocio\nRosemary\nRoxanna\nSally\nStevie\nSydney\nTami\nTiffani\nTori\nTracey\nTricia\nAlaina\nAlisa\nAnnamarie\nBernice\nBetsy\nCandelaria\nCelia\nCharlene\nCheyenne\nChristian\nChristopher\nChrystal\nCierra\nCody\nDanica\nDannielle\nDayna\nDebbie\nDevin\nDevon\nDolores\nDora\nEileen\nElisabeth\nFallon\nGeorgina\nGriselda\nHailey\nHarmony\nHilary\nIrma\nIvy\nJoann\nJoelle\nJoy\nJustina\nKali\nKerry\nKimberlee\nKrysten\nLatasha\nLatisha\nLeandra\nLeanna\nLesley\nMackenzie\nMagdalena\nMarcella\nMarilyn\nMarlena\nMartina\nMaryann\nMaureen\nMckenna\nMoriah\nNicolette\nNohemi\nRene\nRobert\nSade\nSantana\nSavanah\nShantel\nShayna\nSondra\nStephany\nSusanna\nTamra\nTania\nTasheena\nTessa\nTierra\nViviana\nYadira\nAlanna\nAlex\nAlina\nAlyse\nAnalisa\nArielle\nArlene\nAshli\nBeatrice\nBeatriz\nBelinda\nBobbie\nBrandie\nBreanne\nBridgett\nBrittanie\nCari\nChantelle\nCheri\nCherish\nChristen\nChristi\nChristin\nCollette\nCrista\nDaniel\nDeanne\nDenisse\nDominque\nElisha\nElissa\nEliza\nEsperanza\nGeneva\nHallie\nHelena\nJackie\nJane\nJanna\nJaymie\nKaleigh\nKarli\nKarrie\nKellyn\nKeshia\nKylie\nLatanya\nLea\nLeann\nLeanne\nLeeann\nLeilani\nLiberty\nLorraine\nLucy\nLynda\nLynsey\nMaira\nMara\nMariana\nMarina\nMisti\nNiki\nNikita\nNikole\nNora\nPaloma\nPaola\nPauline\nRebeca\nRena\nRoberta\nSandy\nSarina\nSharayah\nShayla\nSherrie\nSherry\nSofia\nTahnee\nTamar\nTammy\nTatiana\nTerra\nTia\nTrista\nValeria\nVicky\nVivian\nAdrianne\nAlena\nAlexandrea\nAllie\nAmberly\nAmi\nAnnalisa\nAracely\nArianna\nAshely\nAurelia\nBreann\nBritta\nCarley\nCarli\nChanelle\nCherie\nChristiana\nClare\nConsuelo\nCorinne\nDalia\nDanelle\nDarcy\nDarlene\nDaryl\nDina\nElva\nElvia\nEricka\nEstrella\nFarrah\nFernanda\nGillian\nGinger\nHalley\nHanna\nIva\nJanell\nJanette\nJayme\nJazmin\nJenelle\nJesica\nJodie\nJosefina\nJuana\nJuliann\nKailey\nKandice\nKati\nKayleen\nKeisha\nKeli\nKelsy\nKerri\nKori\nLacee\nLaci\nLana\nLena\nLily\nLinsey\nLoren\nLynn\nLynnette\nMaegan\nMarcela\nMarla\nMattie\nMelisa\nMercy\nNadia\nNickole\nNoelle\nNydia\nOlga\nPatsy\nRachell\nRamona\nRashelle\nRaven\nRikki\nSamatha\nSherri\nSilvia\nStefani\nSuzanna\nTeri\nTianna\nTrina\nUrsula\nJessica\nAshley\nAmanda\nJennifer\nSarah\nStephanie\nNicole\nDanielle\nBrittany\nAmber\nHeather\nMelissa\nSamantha\nElizabeth\nMegan\nVanessa\nMichelle\nChristina\nCrystal\nTiffany\nRachel\nAndrea\nRebecca\nLauren\nAmy\nKimberly\nSara\nEmily\nErica\nLaura\nKatherine\nMaria\nAngela\nAlicia\nKayla\nChelsea\nLisa\nAlyssa\nJamie\nKelly\nCassandra\nVictoria\nCourtney\nErin\nAlexandra\nLindsey\nShannon\nWhitney\nKristen\nVeronica\nKathryn\nNatalie\nCynthia\nMonica\nValerie\nMary\nAngelica\nKatie\nLindsay\nJenna\nKristina\nErika\nKrystal\nJacqueline\nAnna\nChristine\nAllison\nPatricia\nBrittney\nApril\nKelsey\nKendra\nTara\nDesiree\nBrianna\nFelicia\nKristin\nMarissa\nSabrina\nNatasha\nAlexis\nHolly\nMonique\nLeah\nBethany\nJulie\nBriana\nCasey\nKatrina\nMeghan\nHannah\nNichole\nLeslie\nPriscilla\nCaitlin\nDenise\nDiana\nAna\nJulia\nKathleen\nMelanie\nSavannah\nYvette\nAlisha\nBrooke\nAdriana\nBrandi\nKrista\nRenee\nSandra\nStacy\nBrandy\nCandice\nTeresa\nCatherine\nKara\nRachael\nTheresa\nAlison\nClaudia\nMorgan\nSasha\nTanya\nCandace\nAshlee\nRaquel\nShawna\nAlexandria\nKarina\nMayra\nRoxanne\nCecilia\nGina\nJaclyn\nJasmine\nKristi\nLacey\nMallory\nStacey\nHeidi\nMargaret\nTamara\nBreanna\nKaren\nLeticia\nMelinda\nRegina\nBrenda\nRebekah\nSophia\nTasha\nCarly\nDana\nMolly\nSylvia\nYolanda\nAudrey\nClarissa\nDawn\nKelli\nTabitha\nBianca\nElyse\nJanelle\nJordan\nNancy\nAngel\nBritney\nCarmen\nCristina\nDeanna\nElisa\nGabriela\nJacquelyn\nJoanna\nJustine\nLinda\nSonia\nTaylor\nTracy\nYvonne\nAimee\nChristy\nGabrielle\nJeanette\nKrystle\nMisty\nRochelle\nYesenia\nCarrie\nJillian\nJocelyn\nKatelyn\nKristy\nMeagan\nPaige\nRachelle\nAnnette\nChelsey\nCindy\nDestiny\nDominique\nKasey\nKristine\nLydia\nTina\nToni\nVirginia\nAngelina\nAubrey\nBarbara\nBrianne\nCelina\nPaula\nRandi\nSharon\nSierra\nSonya\nSummer\nCharlene\nEmma\nGloria\nKari\nOlivia\nPamela\nRosa\nSusan\nAshleigh\nCarissa\nDaniela\nLori\nMartha\nShauna\nStefanie\nAdrianna\nAnastasia\nBonnie\nBridget\nCamille\nCara\nChantel\nCheryl\nJanet\nJenny\nJessie\nTrisha\nAbigail\nCassie\nCeleste\nDeborah\nGuadalupe\nHillary\nMarie\nMarisa\nMarisela\nMiranda\nRuth\nAutumn\nDiane\nDonna\nEvelyn\nGrace\nIsabel\nKeri\nKirsten\nLatasha\nMargarita\nMarina\nRosanna\nTraci\nTricia\nWendy\nAlejandra\nAnn\nBrittani\nColleen\nJohanna\nKaitlin\nMarcella\nMindy\nNaomi\nShaina\nTaryn\nAlexa\nAnita\nBrenna\nCaroline\nChelsie\nCiara\nElise\nFrances\nHaley\nJaime\nJill\nMadison\nMaricela\nMelody\nReyna\nRobin\nRobyn\nSerena\nShelby\nStaci\nStacie\nTammy\nAdrienne\nAnne\nAntoinette\nCarolina\nCharmayne\nChristie\nCortney\nDaisy\nDesirae\nElena\nHope\nJosephine\nJuanita\nKaitlyn\nKatharine\nKristal\nNikki\nRita\nRuby\nSheila\nShelly\nSuzanne\nTessa\nAlysia\nAriana\nBlanca\nCarolyn\nChrista\nClaire\nCorina\nEsther\nFaith\nIrene\nJackie\nJanae\nKarla\nLorraine\nMichele\nNorma\nRose\nAlana\nAlma\nDaniella\nElisabeth\nEricka\nHayley\nHilary\nJaimie\nJeannette\nJolene\nKassandra\nKrystina\nLatoya\nLaurie\nLorena\nMandy\nMia\nMichael\nNina\nSavanna\nSelina\nSherry\nSydney\nTabatha\nAllyson\nAmelia\nAntonia\nBailey\nCarla\nCharlotte\nChristopher\nClara\nDorothy\nEva\nGabriella\nHelen\nJudith\nKate\nKaty\nKaylee\nMarcela\nMarlene\nMeredith\nNoelle\nVenessa\nAlissa\nAlyson\nAmie\nAshlie\nBridgette\nConnie\nDeidra\nDeidre\nEileen\nEsmeralda\nJana\nJanice\nJulianna\nKaila\nKyla\nLiliana\nLucia\nMarisol\nMichaela\nNatalia\nNoel\nPerla\nShanna\nShayla\nTerra\nTia\nChandra\nChantelle\nCristal\nDebra\nFrancine\nJade\nJazmin\nJenifer\nKelley\nKellie\nKelsie\nKendall\nLaurel\nLillian\nMaira\nMercedes\nMiriam\nRikki\nSarina\nSelena\nSheena\nTonya\nVivian\nAbby\nAnastacia\nAudra\nBreanne\nBrittni\nCallie\nCarol\nCasandra\nCelena\nChanelle\nDevin\nElaine\nKami\nKerri\nKerry\nKira\nKyle\nKylie\nLarissa\nLena\nLynette\nMandi\nMariah\nMaribel\nMarilyn\nMellissa\nMyra\nNikita\nPearl\nRocio\nRoxanna\nRyan\nShayna\nSherri\nSuzette\nTalia\nTashina\nTatum\nTori\nTracey\nValeria\nAdilene\nAlycia\nAriel\nAshlyn\nAyla\nBecky\nBernadette\nBritni\nCharity\nCheyenne\nChloe\nChristian\nChrystal\nCierra\nConsuelo\nDayna\nEdith\nEllen\nFrancesca\nFrancisca\nGenevieve\nIris\nIrma\nJane\nJanel\nJasmin\nJena\nJody\nJoy\nKaela\nKarissa\nKayleigh\nKori\nKrysta\nLara\nLizette\nMaggie\nMarcia\nMaxine\nPatrice\nRamona\nReina\nRhonda\nRoberta\nRosario\nRosemary\nSadie\nSerina\nSofia\nSusana\nTera\nTiffani\nTrina\nYadira\nAdriane\nAlanna\nAlex\nAli\nAlice\nAnjelica\nAnnalisa\nBelinda\nCandy\nCassidy\nCecelia\nCelia\nCharmaine\nCherish\nChristen\nChristi\nCody\nDaniel\nDaniele\nDebbie\nDelia\nElyssa\nIvy\nJanessa\nJayme\nJessi\nJoan\nJoann\nJodi\nJoshua\nJulianne\nJustin\nKacie\nKaleigh\nKali\nKandice\nKasandra\nKristan\nKristie\nLea\nLeandra\nLeigh\nLynda\nLynn\nMartina\nMeaghan\nMicaela\nMyriam\nNadia\nNadine\nNora\nPaola\nPhylicia\nRacheal\nRhiannon\nRichelle\nRobert\nRoxana\nShantel\nSheri\nStefani\nTanisha\nTerri\nAdrianne\nAlesha\nAlexandrea\nAlisa\nAlyse\nAmalia\nAnalicia\nAngelique\nAngelita\nAnnie\nAraceli\nArianna\nAshton\nBeatrice\nBeatriz\nBernice\nBetsy\nBlair\nBrittnie\nBrook\nCandis\nCarina\nCasie\nCassaundra\nCathy\nChristin\nCorey\nCorrina\nCory\nDanae\nDanica\nDanika\nFernanda\nGretchen\nGriselda\nHallie\nHanna\nHolli\nIvette\nJanell\nJesse\nJessika\nJosie\nJuliana\nJustina\nKathy\nKatlyn\nKeshia\nKristyn\nKyra\nLaci\nLeann\nLeanna\nLyndsay\nMaegan\nMalia\nMaranda\nMaryann\nMisti\nNicolette\nRenae\nScarlett\nShyla\nSilvia\nSimone\nSkye\nStacia\nStephenie\nStormy\nTami\nTeri\nValarie\nVanna\nAdrian\nAfton\nAleasha\nAlexia\nAmberly\nAndrew\nAngie\nAnissa\nAnnabelle\nAnthony\nArielle\nAshely\nAshli\nAundrea\nAurora\nBertha\nBeverly\nBillie\nBobbie\nBrandon\nBridgett\nBrigitte\nBrisa\nCaitlyn\nCassi\nCelestina\nChanel\nCherie\nConstance\nCori\nDanelle\nDanette\nDannielle\nDarlene\nDavina\nDelilah\nDena\nDenisse\nDominque\nDora\nDoreen\nEbony\nElaina\nEmilia\nGeraldine\nGiovanna\nGraciela\nIliana\nJami\nJanay\nJanette\nJenelle\nJulissa\nKailee\nKalie\nKarly\nKatelin\nKeely\nKiersten\nKim\nKrysti\nLacy\nLarisa\nLeeann\nLeona\nLia\nLinsey\nLisette\nLucy\nMadelyn\nMalorie\nMara\nMariaelena\nMaricella\nMaritza\nMarquita\nMercy\nNikole\nPaulina\nRacquel\nRae\nRaven\nRosalinda\nRosamaria\nSalina\nSally\nSaundra\nShana\nShawn\nSheryl\nShirley\nStarla\nTania\nTawni\nTerrilyn\nTiara\nTiffanie\nTisha\nTosha\nTrista\nTyler\nWilliam\nJessica\nAshley\nAmanda\nSarah\nJennifer\nStephanie\nBrittany\nSamantha\nNicole\nDanielle\nVanessa\nElizabeth\nHeather\nAmber\nMelissa\nTiffany\nMichelle\nRachel\nMegan\nLauren\nChristina\nCrystal\nEmily\nRebecca\nKimberly\nSara\nCourtney\nKayla\nAndrea\nMaria\nAlyssa\nCassandra\nErica\nChelsea\nLaura\nAlexandra\nKatherine\nAlicia\nLisa\nVictoria\nAmy\nAngela\nKristen\nKelly\nJamie\nErin\nMary\nChristine\nVeronica\nKatie\nMonica\nAnna\nBrittney\nCynthia\nCaitlin\nShannon\nWhitney\nLindsey\nAngelica\nKelsey\nKristin\nKathryn\nKrystal\nBrianna\nAlexis\nJenna\nNatasha\nTara\nJacqueline\nAllison\nNatalie\nKendra\nKristina\nMonique\nJulie\nPatricia\nDesiree\nValerie\nDiana\nPriscilla\nBriana\nErika\nFelicia\nHannah\nLindsay\nMarissa\nApril\nBianca\nBrandi\nAna\nKatrina\nMolly\nSabrina\nCandice\nNichole\nHolly\nMorgan\nRachael\nAdriana\nAlexandria\nBrooke\nCatherine\nLeah\nBethany\nJasmine\nJulia\nKathleen\nYvette\nDenise\nLeticia\nTaylor\nAshlee\nGabrielle\nMeghan\nMayra\nMelanie\nLeslie\nSandra\nTamara\nKrista\nStacey\nBrandy\nDeanna\nKara\nKarina\nLinda\nRaquel\nBreanna\nBrenda\nClaudia\nJaclyn\nKaitlin\nLacey\nNancy\nRenee\nTanya\nTeresa\nAubrey\nCasey\nGina\nPaige\nChelsey\nClarissa\nDana\nHeidi\nJordan\nOlivia\nAlisha\nAngel\nCarrie\nKaitlyn\nAnnette\nKatelyn\nMargaret\nRebekah\nSasha\nStacy\nTheresa\nBarbara\nBritney\nJoanna\nKaren\nKelli\nMeagan\nRegina\nRoxanne\nShawna\nSophia\nAbigail\nCandace\nMarie\nMarisa\nSierra\nSylvia\nTasha\nAshleigh\nAutumn\nJillian\nTracy\nCristina\nEmma\nJacquelyn\nJanelle\nSavannah\nYvonne\nAmelia\nAudrey\nCarissa\nCecilia\nCindy\nHaley\nAlejandra\nCassie\nGabriela\nYolanda\nAngelina\nCamille\nDominique\nGrace\nJocelyn\nJustine\nKristi\nRachelle\nRosa\nVirginia\nAimee\nCarmen\nColleen\nDaisy\nGuadalupe\nIrene\nKarla\nKirsten\nMallory\nPamela\nRochelle\nSharon\nToni\nTrisha\nAdrianna\nAlexa\nCarla\nKassandra\nLydia\nMelinda\nTina\nWendy\nAdrienne\nAlma\nCelina\nDaniela\nDonna\nElyse\nJeanette\nJuanita\nKari\nMaricela\nNaomi\nRobin\nSerena\nSonia\nSummer\nTabitha\nDestiny\nJanet\nKrystle\nLorena\nMarisela\nMartha\nMiranda\nShaina\nAlison\nAlissa\nBlanca\nChantel\nCiara\nElisa\nEsther\nGabriella\nMarcella\nRuth\nShelby\nSusan\nSusana\nTiffani\nAnne\nCheryl\nCortney\nFrances\nJessie\nKristine\nMadison\nNikki\nPaula\nRandi\nShanna\nAriana\nBeatriz\nCaitlyn\nCarolyn\nCorina\nElaine\nEsmeralda\nJaimie\nJenny\nLori\nMackenzie\nNina\nNorma\nShayla\nStaci\nAriel\nBridget\nBridgette\nCarly\nCaroline\nCeleste\nChelsie\nChristy\nDawn\nDeborah\nElise\nKaylee\nKristy\nMaribel\nMisty\nNoelle\nReyna\nSheila\nSonya\nAlice\nAnastasia\nChristie\nDaniella\nElena\nEvelyn\nMargarita\nMarisol\nSheena\nStacie\nAlysha\nAntoinette\nBrianne\nCheyenne\nCristal\nEllen\nJade\nJanice\nJosephine\nKasey\nKate\nKellie\nKourtney\nKristie\nLatasha\nLeandra\nStefanie\nTonya\nTori\nBailey\nCelia\nCharlene\nCharmayne\nDiane\nFaith\nFrancisca\nGloria\nJaime\nJill\nJolene\nKyla\nKylie\nMindy\nRobyn\nRose\nShea\nTaryn\nYesenia\nAlaina\nAurora\nBelinda\nChrista\nCierra\nClaire\nDesirae\nEileen\nElisha\nEricka\nHelen\nIsabel\nJasmin\nJenifer\nJessi\nJohanna\nJoy\nKarissa\nKaty\nLizette\nLorraine\nMaggie\nMaritza\nMichaela\nMiriam\nPerla\nShayna\nSydney\nTabatha\nTatiana\nAbby\nAntonia\nArielle\nArlene\nBernadette\nBonnie\nBrenna\nCarina\nDavina\nElisabeth\nEva\nHillary\nJami\nKendall\nKrysta\nKyle\nLarissa\nMarina\nMichele\nRosemary\nRoxanna\nShauna\nSuzanne\nAllyssa\nAngelique\nAnita\nAnn\nBreanne\nBritni\nBrittani\nCallie\nCara\nCiera\nDebra\nEstrella\nFelisha\nGeorgina\nGrecia\nJeannette\nJudith\nKali\nKylee\nLatisha\nLeanna\nLiliana\nLucia\nLucy\nMandy\nMarcia\nMariah\nMercedes\nMia\nNadia\nNicolette\nRichelle\nRocio\nRosanna\nRuby\nRyan\nSelina\nShana\nShelly\nTalia\nTessa\nTiara\nTracey\nTraci\nTrina\nTrista\nAlana\nAlisa\nAllyson\nAmie\nAnais\nAnnie\nAshely\nBrittny\nCarol\nCarolina\nCharlotte\nChloe\nCorinne\nDavid\nDeidra\nEden\nFlor\nIris\nIvonne\nJackie\nJerrica\nJoann\nKathy\nKaylene\nKelley\nKrysten\nKrystina\nLacy\nLeigh\nLuz\nLyndsey\nLynette\nLynn\nMarilyn\nMeredith\nMichael\nMikaela\nSilvia\nSonja\nTammy\nTamra\nTiffanie\nVivian\nAdilene\nAdrianne\nAlanna\nAlycia\nAlyse\nAshlyn\nBerenice\nBreann\nBrigitte\nChandra\nChanel\nChantelle\nChristian\nChrystal\nClare\nConnie\nDenisse\nDevin\nEbony\nEdith\nElaina\nFrancesca\nFrancine\nHailey\nIliana\nJazmin\nJodi\nJulianna\nJulianne\nKailee\nKasandra\nKeri\nKira\nKristyn\nLara\nLaurie\nLora\nMaricruz\nMarlene\nMaureen\nMellissa\nNatalia\nPaola\nPaulette\nPaulina\nRena\nSally\nSherry\nSofia\nTerra\nTricia\nVicki\nAlexia\nAlyson\nAngelita\nAngie\nArianna\nAshlie\nAudra\nAyla\nBree\nBrittni\nBrook\nBrynn\nCasandra\nCatalina\nCecelia\nCharity\nChristin\nClara\nCorrina\nDanica\nDelia\nDelilah\nDestinee\nDulce\nErnestina\nFawn\nGenevieve\nGraciela\nHilary\nHollie\nIrma\nJesse\nJoanne\nJuliana\nJustina\nKaila\nKaleigh\nKatharine\nKatlyn\nKelsie\nKortney\nKristal\nLatoya\nLea\nLillian\nLogan\nLoren\nLoretta\nLynnette\nMarcela\nMariana\nMaricella\nMarla\nMelody\nMicaela\nNoel\nRacheal\nRaven\nRosalie\nRoseanna\nSandy\nSerina\nShantel\nStevie\nSunny\nTahnee\nTalisa\nTashina\nTianna\nTierra\nTonia\nValeria\nAdrian\nAlysia\nAnnalisa\nAracely\nArica\nAshton\nAubree\nBelen\nBobbi\nBrandie\nBryanna\nCandy\nCari\nCharmaine\nCherie\nDaniel\nDianna\nDolores\nDusty\nElida\nElissa\nFernanda\nGeneva\nGwendolyn\nJane\nJanette\nJazmine\nJennie\nJessika\nJodie\nKaela\nKailey\nKaley\nKami\nKarli\nKassie\nKim\nKyra\nLeann\nLilian\nLily\nLizbeth\nLourdes\nLynsey\nMara\nMariel\nMaryann\nMelina\nMelisa\nNellie\nNikita\nNora\nRamona\nReanna\nRhiannon\nRoxana\nRyann\nShari\nSheri\nSimone\nStacia\nStarla\nStefani\nStephany\nSusanna\nSuzanna\nTawni\nTeri\nTia\nUrsula\nVenessa\nViolet\nAdria\nAlexandrea\nAlina\nAmberly\nAnissa\nAnnamarie\nArianne\nBeatrice\nBecky\nBernice\nBeverly\nBreana\nBridgett\nBrittanie\nCarmella\nCaryn\nCatrina\nChantal\nChelsi\nCheri\nChristi\nCinthia\nCori\nCorinna\nDalia\nDarcie\nDarcy\nDarlene\nDaryl\nDawna\nDayna\nDeandra\nDebbie\nDevon\nDorothy\nEliza\nElvia\nElvira\nEmilee\nEmilia\nEve\nFallon\nGeorgia\nHanna\nInez\nJaimee\nJames\nJana\nJanae\nJanessa\nJanna\nJaqueline\nJena\nJesica\nJoan\nJody\nJosefina\nKala\nKarin\nKassi\nKaterina\nKatlin\nKaylynn\nKeisha\nKelsi\nKeshia\nKirstin\nLacee\nLaci\nLadonna\nLana\nLeeann\nLeila\nLena\nMadeline\nMaegan\nMalorie\nMandi\nMarcie\nMargo\nMartina\nMaxine\nMeaghan\nMelyssa\nMireya\nMonika\nMoriah\nNadine\nNatosha\nPeggy\nPilar\nRaelynn\nRenae\nRhianna\nRosalinda\nRosalyn\nRosie\nSade\nSalina\nSamatha\nSarina\nSavanah\nSavanna\nSelena\nShanice\nShyla\nSondra\nStephani\nTana\nTasheena\nTera\nTristan\nTyler\nViridiana\nWhitley\nYadira\nJessica\nAshley\nAmanda\nBrittany\nSarah\nStephanie\nSamantha\nNicole\nJennifer\nDanielle\nHeather\nMelissa\nElizabeth\nAmber\nMegan\nVanessa\nMichelle\nChristina\nRachel\nTiffany\nLauren\nAlyssa\nRebecca\nAndrea\nEmily\nKayla\nChelsea\nCrystal\nCourtney\nCassandra\nErica\nMaria\nSara\nKimberly\nLaura\nKatherine\nKelsey\nAlicia\nAmy\nAlexandra\nHannah\nJamie\nVictoria\nKristen\nBrianna\nMonica\nBrittney\nLisa\nErin\nAngela\nMarissa\nApril\nVeronica\nAllison\nCaitlin\nCynthia\nAngelica\nLindsey\nAnna\nShannon\nAlexis\nErika\nJasmine\nMary\nKathryn\nKrystal\nKatie\nNatalie\nBianca\nKristin\nChristine\nJordan\nLindsay\nAna\nDesiree\nSabrina\nPatricia\nWhitney\nMonique\nJacqueline\nBriana\nKelly\nFelicia\nKristina\nJenna\nLeah\nSandra\nBrooke\nDiana\nTaylor\nAdriana\nTara\nKatrina\nPriscilla\nCandice\nDenise\nHolly\nJulie\nKendra\nMelanie\nAlexandria\nCatherine\nBethany\nMayra\nMorgan\nValerie\nBreanna\nBrenda\nKara\nNatasha\nGabrielle\nKaitlyn\nMeghan\nKaren\nJoanna\nNichole\nKarina\nKylie\nAbigail\nCasey\nClaudia\nKathleen\nChelsey\nGabriela\nJillian\nSavannah\nYvette\nAshlee\nBrandi\nJulia\nLacey\nLeslie\nMercedes\nCandace\nKatelyn\nKrista\nPaige\nRachael\nRaquel\nAudrey\nGuadalupe\nBrandy\nJanelle\nLydia\nSophia\nAutumn\nDana\nLinda\nMartha\nMelinda\nMolly\nOlivia\nRoxanne\nTamara\nTeresa\nAlisha\nCecilia\nHeidi\nJanet\nJustine\nKaitlin\nNancy\nPamela\nAngel\nBritney\nMargaret\nMiranda\nStacey\nTanya\nAdrianna\nAlejandra\nGina\nSierra\nCarrie\nClarissa\nDeanna\nGloria\nKarla\nKassandra\nRosa\nSonia\nSydney\nAlison\nKirsten\nMadison\nMeagan\nNaomi\nRenee\nSasha\nStacy\nSylvia\nAlexa\nEmma\nFrances\nKristine\nSusan\nTabitha\nAshleigh\nCindy\nDestiny\nJessie\nRachelle\nRochelle\nYesenia\nAriana\nCristina\nJacquelyn\nMarisa\nAngelina\nColleen\nKristy\nLeticia\nRandi\nRuby\nShawna\nTaryn\nTasha\nYvonne\nBrianne\nCarly\nJeanette\nMaritza\nSharon\nVirginia\nWendy\nAlissa\nBlanca\nCarolina\nCasandra\nElisa\nHillary\nJocelyn\nLorena\nMichaela\nTina\nBailey\nBarbara\nCassie\nCeleste\nChelsie\nClaire\nDaniela\nDiane\nElena\nElisabeth\nEvelyn\nJazmin\nMaribel\nMichele\nToni\nYolanda\nAdrienne\nAriel\nAubrey\nCaitlyn\nCarmen\nDaniella\nDesirae\nElyse\nKarissa\nKaylee\nKylee\nLiliana\nMariana\nMarie\nMelody\nNikki\nRebekah\nShelby\nTheresa\nTracy\nTrisha\nArianna\nBridget\nChantel\nDominique\nIsabel\nLizette\nMaricela\nMisty\nRobyn\nRoxanna\nAdilene\nAnne\nArielle\nBrenna\nCarla\nCaroline\nCharmayne\nCiara\nDonna\nEllen\nEsmeralda\nGabriella\nGrace\nHaley\nMargarita\nMarina\nMarisol\nRuth\nSummer\nTammy\nAbby\nAimee\nAlysha\nAmelia\nBrittani\nCarolyn\nDeborah\nHayley\nJade\nKelli\nKristi\nMallory\nShaina\nStevie\nAlma\nAlysia\nCamille\nCharmaine\nCorina\nDebra\nFaith\nJenny\nKasey\nKiara\nKyla\nLeanna\nLizbeth\nMeredith\nMiriam\nNorma\nRobin\nSerena\nSilvia\nSonya\nAlexia\nAnais\nAnita\nCheyenne\nDaisy\nElise\nGeorgina\nIrene\nJaclyn\nJaime\nKari\nKeri\nPaulina\nPerla\nStacie\nAlaina\nAurora\nBonnie\nBreanne\nCarissa\nCelina\nChristy\nHailey\nJasmin\nJill\nKasandra\nKate\nLarissa\nPaula\nShanna\nSheila\nStefanie\nTia\nAlana\nAnn\nBernadette\nBridgette\nBrittni\nCecelia\nCharlene\nClara\nEricka\nFrancisca\nIliana\nJanette\nJayme\nJuanita\nJulianne\nKellie\nKira\nLatasha\nMadeline\nMia\nRaven\nRegina\nReyna\nRocio\nRose\nRoxana\nSalina\nSandy\nShantel\nShauna\nSheena\nAlice\nAlina\nAlisa\nAlycia\nAnastasia\nBeatriz\nBritany\nBrittny\nCara\nCortney\nDarlene\nDeidra\nDulce\nFrancine\nGraciela\nGriselda\nJackie\nJaimie\nJazmine\nJohanna\nJudith\nKelley\nLeann\nMarisela\nNadia\nRyan\nSavanna\nSusana\nTalia\nAndreina\nAntoinette\nAraceli\nAshton\nAthena\nAudra\nBryanna\nChantal\nCharity\nCharlotte\nChrista\nChristian\nCierra\nConnie\nEsther\nFabiola\nHope\nJoy\nLucia\nLyndsey\nMackenzie\nMeaghan\nNina\nTatiana\nTessa\nTonya\nTori\nTraci\nTricia\nAlexandrea\nAllyson\nAlyson\nAntonia\nArlene\nAshly\nAudriana\nBrittanie\nCassidy\nCheryl\nCorrina\nDelilah\nEva\nHollie\nIris\nIrma\nJodi\nKaila\nKendall\nKeshia\nKristie\nKyle\nKyra\nLatoya\nLillian\nLorraine\nMaggie\nMarcella\nMckenzie\nMichael\nNadine\nNoelle\nRikki\nSadie\nSarai\nSelina\nSuzanne\nViridiana\nAlanna\nAlecia\nAngelita\nBeatrice\nBerenice\nBobbi\nBritni\nBrittini\nCelia\nChandra\nCherie\nChloe\nCiera\nDawn\nDayna\nDevin\nEden\nEdna\nElaine\nElissa\nElsa\nFatima\nGenevieve\nHelen\nJami\nJana\nJanessa\nJanice\nJanna\nJosephine\nKacie\nKatharine\nKelcie\nKelsie\nKiersten\nLacy\nLeandra\nLizeth\nLori\nLuisa\nMarcela\nMariah\nMarlena\nMarlene\nMicaela\nMindy\nNicolette\nRamona\nRenae\nRita\nRosario\nSherri\nSimone\nStephany\nTanisha\nTera\nTracey\nValentina\nAmerica\nAmie\nAnalisa\nAnnette\nAracely\nAshlie\nAyla\nBelinda\nBreann\nBree\nBrittaney\nCallie\nCari\nCarlie\nCarol\nChanel\nChelsi\nChristen\nChristie\nChrystal\nCori\nCristal\nDanelle\nDanika\nDelia\nDevon\nDianna\nEileen\nEleanor\nErnestina\nFrancesca\nGenesis\nGeneva\nHanna\nIsela\nJacklyn\nJaleesa\nJeannette\nJena\nJennie\nJessika\nJesus\nJolene\nJovanna\nJoyce\nKala\nKandice\nKassie\nKathy\nLatisha\nLiana\nLuz\nMandy\nMikaela\nNoel\nNora\nRhiannon\nRhonda\nRiley\nShanelle\nShayna\nSheree\nStefani\nTatum\nTrina\nValeria\nVenessa\nVivian\nViviana\nWhitley\nAhsley\nAlba\nAli\nAmbar\nAngelique\nAnnie\nAubrie\nAudrianna\nBetty\nBeverly\nBrittnie\nCameron\nCarina\nCassondra\nChantell\nCherise\nChristopher\nConsuelo\nCorinna\nCorinne\nDakota\nDanae\nDanica\nDeana\nDeja\nDena\nDenisse\nDolores\nElyssa\nEstrella\nGladys\nGrecia\nImelda\nIvette\nIvy\nJanell\nJenni\nJulianna\nJustin\nJustina\nKailee\nKatlyn\nKaty\nKeisha\nKelsea\nKelsi\nKiley\nKirstie\nKourtney\nKristal\nKrystle\nLana\nLeeann\nLesley\nLily\nLisette\nLourdes\nMaira\nMakayla\nMara\nMaricella\nMariela\nMarilyn\nMelina\nMona\nMonika\nMyra\nRacheal\nRachell\nRene\nRichelle\nRosemarie\nRosemary\nSally\nSamatha\nSelena\nShayla\nShelley\nSuzette\nTabetha\nTerra\nTiana\nTierra\nTiffanie\nYadira\nYessenia\nYuriko\nAdrian\nAlexander\nAlia\nAlysa\nAlyssia\nAnahi\nAnthony\nAshely\nAsia\nAubree\nBelen\nBreana\nBrielle\nBrigitte\nBrittnay\nBrittnee\nChantelle\nCherish\nChristin\nDestinee\nDora\nDorothy\nEbony\nEliana\nElora\nEmilee\nEric\nEugenia\nFelisha\nFlor\nFrancis\nFrankie\nGiovanna\nHilary\nHilda\nIngrid\nJanae\nJane\nJoann\nJoni\nJordyn\nJourdan\nJuana\nJuliana\nJulissa\nKacy\nKaleigh\nKalli\nKalynn\nKandace\nKarrie\nKatelin\nKatheryn\nKati\nKayleigh\nKaylyn\nKerri\nKiera\nKori\nKristyn\nKrystin\nKrystina\nLacie\nLara\nLaurel\nLea\nLeila\nLena\nLinnea\nLisamarie\nLogan\nLucy\nLyndsay\nLynette\nMalerie\nMarian\nMarla\nMaya\nMckenna\nMoriah\nNatalia\nNatashia\nNikole\nOlga\nPaloma\nPaola\nPatsy\nPauline\nPhylicia\nPricilla\nRaechel\nRebeca\nRhianna\nRosalia\nRosanna\nSerina\nShelly\nSherry\nStaci\nStacia\nTabatha\nTania\nTanna\nTashina\nTawni\nTerri\nTess\nTiffani\nValarie\nVanna\nViolet\nJessica\nAshley\nAmanda\nBrittany\nStephanie\nSamantha\nSarah\nNicole\nJennifer\nElizabeth\nMegan\nDanielle\nKayla\nMelissa\nAmber\nAlyssa\nLauren\nVanessa\nHeather\nEmily\nRachel\nMichelle\nCourtney\nRebecca\nTiffany\nChristina\nChelsea\nAndrea\nCassandra\nMaria\nKimberly\nAlexandra\nKatherine\nSara\nKelsey\nBrianna\nAlexis\nCrystal\nHannah\nTaylor\nLaura\nErica\nAmy\nVictoria\nAngela\nAnna\nBrittney\nBriana\nJasmine\nAlicia\nCaitlin\nErin\nJordan\nJamie\nErika\nShannon\nAngelica\nKelly\nLisa\nVeronica\nMonica\nMonique\nMary\nCynthia\nKrystal\nLindsey\nNatalie\nSabrina\nAna\nKristina\nBianca\nKathryn\nAllison\nApril\nJacqueline\nKristen\nLindsay\nPatricia\nAriel\nAlexandria\nKatie\nDesiree\nDiana\nShelby\nBreanna\nChristine\nKristin\nAdriana\nMarissa\nNatasha\nKaren\nPaige\nKatrina\nJenna\nFelicia\nBrooke\nCatherine\nTara\nKatelyn\nKendra\nValerie\nWhitney\nOlivia\nSierra\nBrenda\nGabriela\nJulie\nLeah\nMelanie\nMorgan\nNichole\nRaquel\nBrandi\nGabrielle\nKara\nMercedes\nRachael\nSandra\nAbigail\nPriscilla\nBethany\nJulia\nYvette\nAlejandra\nAriana\nClaudia\nYesenia\nAlexa\nMiranda\nAshlee\nDenise\nHolly\nKathleen\nMayra\nKaitlin\nKrista\nLeslie\nAlma\nDeanna\nHaley\nJoanna\nMeghan\nKaitlyn\nKylie\nMolly\nAlisha\nArielle\nGabriella\nGloria\nKarina\nTamara\nTeresa\nChelsey\nDaisy\nKassandra\nLinda\nMarina\nAdrianna\nAudrey\nCandice\nCiara\nCindy\nHeidi\nNancy\nBritney\nMeagan\nAlison\nBrandy\nCristina\nMarisa\nSydney\nVirginia\nCandace\nDana\nKirsten\nSasha\nShawna\nClarissa\nJocelyn\nLacey\nMelinda\nRenee\nRobin\nJacquelyn\nSavannah\nCarmen\nCecilia\nDestiny\nJustine\nLydia\nMargaret\nNaomi\nTanya\nAngel\nCarissa\nDaniella\nEmma\nJade\nLeticia\nLorena\nMadison\nStacey\nAngelina\nCarolina\nCasey\nChloe\nJillian\nMariah\nPaula\nRoxanne\nYvonne\nBlanca\nCarrie\nCeleste\nKarla\nKaylee\nRebekah\nRegina\nRochelle\nRuby\nSylvia\nTabitha\nBridget\nGuadalupe\nHillary\nRosa\nWendy\nAmelia\nAnnette\nBrittani\nCamille\nCarla\nCarly\nCassie\nDominique\nJanelle\nPamela\nAshleigh\nCortney\nDaniela\nGrace\nKelsie\nMartha\nNikki\nRose\nAimee\nAnita\nAutumn\nElena\nElisabeth\nGina\nIsabel\nJanet\nJessie\nKari\nKarissa\nKristy\nMallory\nMarie\nRachelle\nSerena\nSonia\nSophia\nStacy\nAnastasia\nAnne\nAubrey\nBailey\nBarbara\nCasandra\nCheyenne\nColleen\nCristal\nDesirae\nEva\nMackenzie\nMaritza\nMichaela\nSummer\nTasha\nAdrienne\nCaitlyn\nJaime\nKelli\nMargarita\nMisty\nTammy\nAlissa\nBrenna\nChantel\nDulce\nEdith\nHailey\nJaclyn\nKristine\nLiliana\nMaribel\nMarisol\nRobyn\nTia\nYolanda\nCelina\nCheryl\nClaire\nElisa\nIrene\nIris\nJeanette\nJordyn\nLeandra\nMaricela\nMelody\nMichele\nNadia\nRaven\nStefanie\nSusan\nTaryn\nTessa\nTheresa\nTina\nToni\nAlexia\nAnn\nBrianne\nCara\nCaroline\nCarolyn\nCelia\nEsther\nHayley\nKayleigh\nLizette\nLucia\nMarisela\nMikaela\nReyna\nAllyson\nAlysha\nAnnie\nBeatriz\nBreanne\nChristian\nCierra\nElaine\nEsmeralda\nEvelyn\nGriselda\nJenny\nKaila\nKellie\nKirstie\nSuzanne\nTori\nArianna\nAshlie\nBrianda\nBritni\nChelsie\nElise\nEllen\nFrancisca\nHelen\nJudith\nKasey\nKatelynn\nKendall\nLori\nRuth\nShauna\nTatum\nTonya\nValeria\nAnissa\nCecelia\nDanitza\nFrances\nIvette\nJazmin\nKrystle\nLourdes\nLuz\nMarlene\nMia\nNatalia\nNina\nRandi\nRoberta\nRoxanna\nSally\nSavanna\nShea\nStevie\nTiana\nTracy\nTrisha\nAlana\nAlycia\nBrittni\nCallie\nCarina\nCharmayne\nChrista\nChristy\nDeborah\nDevon\nEricka\nIrma\nJohanna\nKasandra\nKelley\nLyndsey\nMichael\nNoemi\nPaulina\nPerla\nReanna\nRosemary\nShaina\nTania\nAbby\nAlannah\nAlice\nAlina\nAraceli\nBobbie\nBrittanie\nCarol\nChantelle\nCharlene\nCiera\nCorina\nDanica\nDelia\nDevin\nFaith\nHanna\nJaimie\nJessika\nJosephine\nJuanita\nKate\nKristie\nKylee\nLorraine\nLynette\nMarcella\nMariana\nMarilyn\nMiriam\nSharon\nSheena\nSheila\nSimone\nSonya\nStefani\nSuzette\nAlysia\nAntoinette\nAntonia\nAshly\nAshton\nBreana\nCassidy\nCatalina\nChanel\nCharlotte\nDiane\nFatima\nHilary\nHope\nJanette\nJayme\nJuana\nKaleigh\nKaty\nKiersten\nKira\nKristi\nLacy\nLarissa\nLeanna\nLillian\nLoren\nLuisa\nMaggie\nMara\nMckenzie\nMicaela\nReina\nRhiannon\nSelina\nSerina\nShayla\nShelly\nTatiana\nTess\nTierra\nViviana\nAlexandrea\nAmie\nAngie\nAnjelica\nAsia\nAthena\nBeth\nBridgette\nDavina\nDawn\nElsa\nElvira\nElyse\nEunice\nHilda\nIvonne\nJanae\nJasmin\nJena\nJill\nJuliana\nJustina\nKathy\nKatlyn\nKerri\nKiara\nLia\nLily\nLizbeth\nLucero\nMadeline\nMaya\nMindy\nNora\nNorma\nRocio\nSandy\nSelene\nShanna\nShayna\nSkye\nSusanna\nTricia\nVivian\nYadira\nAdilene\nAileen\nAlanna\nAnabel\nAnastacia\nAngelique\nAngelita\nBernadette\nBrittny\nChandra\nCharmaine\nChelsi\nCody\nConnie\nCorey\nDayna\nDebbie\nDenisse\nDianna\nEdna\nElisha\nGladys\nGrecia\nIsamar\nIvy\nJazmine\nJesse\nJoann\nKacy\nKali\nKeri\nKerry\nLucinda\nMakayla\nMarcia\nMaricruz\nMckenna\nMikayla\nNoelle\nSarai\nShantel\nSheridan\nSkylar\nStaci\nStephenie\nTisha\nTrina\nAdelina\nAdrian\nAlaina\nAnamaria\nAnnamarie\nAshlyn\nAubree\nAurora\nBelinda\nBlair\nChantal\nClara\nCori\nCorinne\nCory\nDanae\nDeidra\nDonna\nDorothy\nEileen\nEsperanza\nFlor\nFrancesca\nGenevieve\nGeorgina\nGiovanna\nIliana\nIvana\nJackie\nJami\nJana\nJane\nJanell\nJulianna\nJulissa\nJustin\nKacie\nKailey\nKatlin\nKayleen\nKeisha\nKorina\nKristal\nLatasha\nLaurel\nLeila\nLilliana\nMariela\nMartika\nMaureen\nMonika\nPaola\nRichelle\nRyan\nSalina\nSamatha\nSonja\nSusana\nTabatha\nTanisha\nTeri\nTerra\nTrista\nViolet\nViridiana\nYessenia\nAlena\nAlisa\nAllyse\nAnnamaria\nArlene\nBertha\nBillie\nBobbi\nBrandie\nBreann\nBree\nBrigitte\nBrittnee\nBrittnie\nBryanna\nCasie\nCassondra\nChanelle\nCheyanne\nChristiana\nChristie\nChristin\nCorrina\nCourtnee\nCristy\nDakota\nDamaris\nDanika\nDebra\nDesarae\nDestini\nEmilia\nFabiola\nFiona\nGenesis\nGlenda\nGwendolyn\nHeaven\nIleana\nItzel\nIvanna\nJennie\nJody\nJolene\nJosefina\nJoshua\nJulianne\nKaci\nKenya\nKeshia\nKiley\nKimberley\nKori\nKourtney\nKristyn\nKrystin\nKyla\nKyra\nLacie\nLara\nLeanne\nLeilani\nLeona\nLilia\nLizeth\nLupita\nMacey\nMagdalena\nMaira\nMariel\nMarkie\nMarla\nMattie\nMeaghan\nMeredith\nNataly\nNikole\nOlga\nPaloma\nPatrice\nPricilla\nRamona\nRita\nRobert\nRosie\nRoxana\nRubi\nShana\nSherri\nSherry\nSidney\nStacie\nStephany\nTashina\nTera\nTraci\nAdela\nAlba\nAlesha\nAlexander\nAlia\nAlondra\nAlysa\nAlyse\nAlyssia\nAnisa\nAnnalisa\nAriell\nAshli\nAyla\nBeatrice\nBerenice\nBernice\nBonnie\nBrandee\nBritany\nBrittaney\nBryana\nCady\nCami\nCherish\nDalia\nDaryl\nDeana\nDemi\nDestinee\nDolores\nDomonique\nEden\nEliza\nEmerald\nEstella\nEstrella\nFernanda\nFrancine\nGabriel\nHazel\nHolli\nIlse\nIsela\nJanel\nJanessa\nJaneth\nJanie\nJeanna\nJenelle\nJenessa\nJenifer\nJordin\nJourdan\nJoyce\nJudy\nKacey\nKaela\nKaitlynn\nKandice\nKarlee\nKateri\nKatharine\nKaycee\nKaylene\nKayli\nKaylie\nKaylyn\nKeely\nKelsi\nKendal\nKimberlee\nKyrene\nLatanya\nLauryn\nLavina\nLea\nLeeann\nLeeza\nLeigha\nLesley\nLinsey\nLoretta\nLucy\nMacy\nMaegan\nMalia\nMalorie\nMarcela\nMaryann\nMarysol\nMelina\nNicolette\nNikita\nPhoebe\nRebeca\nRhonda\nRiley\nRosalinda\nShanice\nShawnee\nSinead\nSirena\nStella\nStevi\nSydnee\nTalia\nTana\nTasheena\nTawnie\nTayler\nTianna\nTiffani\nVera\nZarina\nAshley\nJessica\nAmanda\nSamantha\nSarah\nStephanie\nBrittany\nElizabeth\nJennifer\nMegan\nNicole\nAmber\nMelissa\nDanielle\nKayla\nAlyssa\nLauren\nRebecca\nMichelle\nRachel\nChelsea\nEmily\nShelby\nHeather\nAndrea\nAlexandra\nVictoria\nBrianna\nVanessa\nChristina\nKelsey\nMaria\nAlexis\nTiffany\nKatherine\nCourtney\nTaylor\nCassandra\nErica\nCrystal\nHannah\nLaura\nSara\nAlicia\nKimberly\nMariah\nMarissa\nAriel\nJordan\nAngelica\nSabrina\nDesiree\nAmy\nJasmine\nMary\nBrittney\nBriana\nVeronica\nBianca\nLindsey\nCynthia\nErika\nAngela\nAnna\nBreanna\nJamie\nAlexandria\nCaitlin\nJulia\nKristen\nKathryn\nMonica\nBrooke\nJacqueline\nKelly\nLisa\nAna\nErin\nJenna\nMorgan\nNatalie\nBrandi\nApril\nAllison\nKrystal\nPaige\nShannon\nMonique\nValerie\nLindsay\nMelanie\nKatie\nKristina\nAdriana\nMolly\nOlivia\nPatricia\nKaren\nBrenda\nDiana\nLeah\nNatasha\nChristine\nKarina\nMiranda\nLeslie\nAlexa\nJulie\nGabrielle\nAriana\nCatherine\nBethany\nKaitlyn\nMayra\nChelsey\nHolly\nKristin\nMeghan\nMercedes\nDeanna\nFelicia\nKatrina\nRaquel\nSandra\nKendra\nSydney\nKatelyn\nTara\nAlejandra\nAudrey\nDenise\nGabriela\nAbigail\nClarissa\nNancy\nWhitney\nHaley\nNichole\nAshlee\nKaitlin\nKarla\nPriscilla\nRenee\nJoanna\nClaudia\nLacey\nRebekah\nSierra\nAdrianna\nKara\nGloria\nGuadalupe\nMadison\nKathleen\nArielle\nMaritza\nSavannah\nTanya\nCheyenne\nRosa\nBlanca\nRachael\nCristina\nEmma\nMarisa\nMartha\nAshleigh\nCasey\nDaniela\nJade\nKrista\nLinda\nMeagan\nTeresa\nWendy\nDestiny\nJanet\nAimee\nArianna\nBailey\nKylie\nRachelle\nSophia\nYesenia\nCandace\nCarissa\nCeleste\nDominique\nDulce\nFaith\nHayley\nKaylee\nLeticia\nAlisha\nBrandy\nBritney\nCarly\nCiara\nKelli\nKirsten\nMarina\nShawna\nTheresa\nYolanda\nCandice\nDana\nEva\nGabriella\nJeanette\nTabitha\nTia\nAngel\nAnne\nBridget\nCarolina\nGrace\nJazmin\nJocelyn\nJustine\nMargaret\nMarisol\nVirginia\nYvette\nAlison\nAutumn\nCarmen\nCecilia\nDesirae\nKarissa\nKelsie\nMarie\nTrisha\nAmelia\nAngelina\nIsabel\nKristine\nLorena\nMaricela\nRuth\nStacey\nAlma\nChloe\nCindy\nClaire\nJaclyn\nRochelle\nTamara\nAnastasia\nDeborah\nGina\nHailey\nKylee\nLiliana\nRandi\nStacy\nTania\nAubrey\nCelina\nDiane\nEvelyn\nHeidi\nHillary\nJenny\nJillian\nJudith\nKassandra\nLydia\nMackenzie\nPaula\nStevie\nTasha\nTessa\nToni\nCaitlyn\nCamille\nChantel\nDaisy\nElena\nElisa\nJessie\nKyla\nMia\nRegina\nRuby\nSummer\nTracy\nYvonne\nAlexia\nAnnette\nCaroline\nChanel\nDevon\nIris\nJacquelyn\nJaime\nJazmine\nMallory\nMiriam\nNikki\nSerena\nShayla\nSylvia\nTayler\nValeria\nVivian\nBarbara\nBeatriz\nCarla\nChelsie\nChristian\nCorina\nHilary\nJanelle\nJuanita\nKelsi\nLizette\nMarisela\nMckenzie\nNaomi\nNatalia\nShea\nViviana\nAdilene\nAnjelica\nCassie\nChrista\nChristy\nDevan\nEsmeralda\nEsther\nIesha\nJordyn\nKellie\nKira\nKristi\nLuz\nMariana\nMarlene\nRobyn\nRoxanne\nSasha\nSusan\nViridiana\nAlysia\nCortney\nDevin\nIrene\nJohanna\nKelley\nLarissa\nLuisa\nMadeline\nNina\nPerla\nSavanna\nSharon\nShayna\nTina\nTori\nZoe\nAlice\nBrianne\nBrittani\nCarolyn\nCharmayne\nCheryl\nCierra\nDakota\nDemi\nIliana\nKaila\nLeanna\nMelinda\nMichaela\nRoxanna\nSonia\nTalia\nTonya\nYessenia\nAlanna\nAlexandrea\nAlissa\nAnn\nAntoinette\nArlene\nBonnie\nBreanne\nBryanna\nCara\nCarrie\nCassidy\nDaniella\nElyse\nEricka\nFernanda\nGladys\nIvette\nKasey\nKristy\nLizbeth\nLucero\nMaira\nMelody\nMicaela\nNadia\nPaulina\nRaven\nReyna\nRocio\nRose\nSonya\nTiana\nAdrienne\nAndreina\nAnita\nAnnie\nAyla\nBeatrice\nBreana\nDanica\nElissa\nEliza\nFrances\nGriselda\nHanna\nHope\nJana\nJaqueline\nJasmin\nJulianna\nKacey\nKaley\nKiara\nKristie\nLaurie\nLillian\nMarilyn\nMichele\nMikayla\nMisty\nNicolette\nNoemi\nNorma\nRoberta\nRobin\nSandy\nStefanie\nTanisha\nTaryn\nAllyson\nAnabel\nAngelique\nAntonia\nAraceli\nBernadette\nCayla\nCelia\nCharlene\nClara\nCristal\nDelia\nElaine\nElise\nFrancisca\nGenevieve\nHaleigh\nIleana\nKaleigh\nKendall\nLacy\nMargarita\nMaribel\nMarla\nNoel\nNora\nRamona\nRikki\nRoxana\nSerina\nSusana\nTianna\nTyler\nAllie\nAlysha\nAnissa\nAsia\nBelen\nBrenna\nBridgette\nCorinne\nDavina\nDenisse\nElisabeth\nEllen\nFlor\nIrma\nJanessa\nJeannette\nJosephine\nKatelynn\nKathy\nKaty\nLilia\nLily\nLori\nMakayla\nOlga\nPaola\nSadie\nSage\nSelena\nShaina\nShana\nShanna\nShawnee\nSilvia\nTammy\nTatiana\nTatum\nTricia\nYadira\nAileen\nAlana\nAlycia\nBeverly\nBrook\nCarina\nCatalina\nCecelia\nCelena\nChantal\nChantelle\nCiera\nCorrina\nDawn\nDelaney\nDestini\nDonna\nEdna\nEstefania\nFrancine\nGenesis\nGwendolyn\nHelen\nJanell\nJanette\nJanice\nJolene\nJustina\nKali\nKari\nKarli\nKatelin\nKatlyn\nKirstie\nKourtney\nKristyn\nLara\nLatisha\nLatoya\nLeanne\nLisette\nLizeth\nLoren\nLucia\nMarcella\nMartina\nMikaela\nMyra\nNikole\nPaloma\nShantel\nSheena\nSidney\nSimone\nStaci\nStephany\nTerra\nTess\nTraci\nAlannah\nAlessandra\nAshlyn\nAshton\nAudra\nBeth\nBetsy\nBrittni\nBrittnie\nCallie\nChandra\nCharlotte\nChelsy\nCherie\nChristie\nCody\nDayna\nDeidre\nDemetria\nDestinee\nDestiney\nDolores\nEdith\nEileen\nElisha\nEmilee\nFelisha\nGraciela\nIsabella\nIvana\nIvonne\nJackie\nJami\nJane\nJayme\nJenifer\nJoann\nJordon\nJoyce\nJuana\nKala\nKathrine\nKayleigh\nKaylie\nKeisha\nKeri\nKerry\nKeshia\nKortney\nKristal\nLeana\nLena\nLesley\nLogan\nLourdes\nMarlena\nMartika\nMaya\nMckenna\nMoriah\nNoelle\nPamela\nReina\nRhiannon\nSalina\nSally\nSarina\nSelina\nShelly\nStefani\nTiara\nTiffani\nValentina\nYazmin\nAcacia\nAlina\nAlyssia\nAnalisa\nAndie\nAngie\nAracely\nArlette\nAshlie\nAurelia\nBailee\nBerenice\nBertha\nBree\nBritany\nBrittnee\nCarley\nCarlie\nCasandra\nCassondra\nCatrina\nChasity\nCherish\nChrystal\nCinthia\nClarisa\nCodi\nColleen\nConnie\nCorie\nCorrine\nDani\nDaniel\nDebra\nDevyn\nDora\nElia\nEllie\nElyssa\nErnestina\nEsperanza\nFabiola\nHarley\nHaylee\nJennie\nJorden\nJose\nJoy\nKaci\nKailey\nKalyn\nKarlee\nKassie\nKatarina\nKate\nKeely\nKelci\nKori\nKrystle\nLaurel\nLilliana\nLissette\nLorraine\nLynette\nMacie\nMacy\nMaggie\nMara\nMeaghan\nMindy\nNichelle\nNohely\nParis\nRebeccah\nRiley\nRosemarie\nShari\nShauna\nShelley\nSienna\nSkylar\nSofia\nStacie\nSuzanne\nTashina\nTawny\nTeri\nTracie\nTrinity\nViolet\nYessica\nAda\nAlaina\nAlethea\nAlex\nAllyssa\nAnastacia\nAndria\nAnnalisa\nAriane\nAshely\nAshly\nAshlynn\nAstrid\nAthena\nAubrie\nAyana\nBreann\nBrianda\nBrigette\nBrisa\nBrissa\nBritnee\nBritni\nBritny\nBrittini\nBrittny\nCarey\nCarol\nCelene\nChanda\nCharity\nCherise\nChristopher\nCollette\nDalia\nDamaris\nDanitza\nDavid\nDeidra\nDesire\nDiamond\nDomonique\nDylan\nElora\nEstella\nFrancesca\nFrancis\nFrankie\nGeorgina\nGracie\nGrecia\nHali\nIsamar\nIsela\nIvy\nJacy\nJanna\nJasmyn\nJayde\nJayne\nJeanine\nJessa\nJessi\nJewel\nJill\nJoselyn\nKaitlynn\nKalie\nKandice\nKaryn\nKatharine\nKaycee\nKaylene\nKesha\nKiersten\nKiley\nKirstin\nKrysta\nKyra\nLacee\nLeandra\nLeann\nLeilani\nLiana\nLilian\nLoretta\nLucinda\nLynda\nLyndsey\nMaegan\nMagdalena\nMandy\nMarcela\nMarcia\nMariela\nMarlee\nMelina\nMelisa\nMeredith\nMiriah\nMollie\nNayeli\nNia\nNisa\nPearl\nPetra\nPhoebe\nPhylicia\nPilar\nPrecious\nRenae\nRene\nRita\nRosalinda\nRosario\nSarai\nShanae\nShanda\nShay\nShelbi\nSheryl\nSkye\nSkyler\nSonja\nStacia\nStephenie\nStormy\nSuzanna\nSuzette\nTabatha\nTasheena\nTierney\nTierra\nTrina\nValarie\nVannessa\nVianey\nJessica\nAshley\nSamantha\nAmanda\nSarah\nStephanie\nBrittany\nChelsea\nDanielle\nElizabeth\nJennifer\nMegan\nNicole\nTaylor\nEmily\nMaria\nMelissa\nKayla\nRachel\nLauren\nRebecca\nAmber\nAlexis\nAlyssa\nVictoria\nMichelle\nBrianna\nShelby\nVanessa\nAndrea\nCassandra\nKelsey\nAlexandra\nChristina\nCourtney\nHeather\nAngelica\nTiffany\nMarissa\nBriana\nKimberly\nSara\nHannah\nKatherine\nLaura\nAnna\nJasmine\nJordan\nErika\nCrystal\nMariah\nErica\nAlicia\nMonica\nAlexandria\nCynthia\nHaley\nKaitlyn\nMary\nSabrina\nVeronica\nBreanna\nMorgan\nNatalie\nKelly\nBrittney\nShannon\nAlejandra\nDesiree\nJacqueline\nAmy\nBrooke\nErin\nAna\nPaige\nCaitlin\nAdriana\nGabriela\nMonique\nLindsey\nAngela\nKaren\nBianca\nAllison\nJulia\nKatie\nKatelyn\nDiana\nJamie\nLeah\nAriel\nChelsey\nKathryn\nLisa\nMiranda\nOlivia\nSierra\nKristen\nJenna\nKatrina\nPatricia\nYesenia\nJulie\nNatasha\nBrenda\nKrystal\nLindsay\nHolly\nKaitlin\nGabrielle\nKristin\nKarina\nApril\nAbigail\nBrandi\nKristina\nFelicia\nCatherine\nAshlee\nChristine\nKrista\nMadison\nCheyenne\nClaudia\nRaquel\nDestiny\nJocelyn\nKara\nKendra\nMackenzie\nRebekah\nSavannah\nGabriella\nSandra\nKarla\nMelanie\nPriscilla\nWhitney\nDenise\nEmma\nGuadalupe\nIsabel\nMolly\nTara\nClarissa\nJazmin\nMayra\nYvette\nMeghan\nAriana\nKaylee\nSydney\nValeria\nHailey\nNancy\nSophia\nAlexa\nHillary\nJoanna\nRenee\nValerie\nGloria\nJanet\nMercedes\nNichole\nCaitlyn\nCristina\nDominique\nGrace\nKassandra\nMarina\nRachael\nDaniela\nDeanna\nHayley\nAdrianna\nBethany\nCasey\nLeslie\nTabitha\nCarmen\nCarolina\nRuby\nBailey\nRosa\nTanya\nAlma\nAutumn\nCindy\nLeticia\nMargaret\nNicolette\nAlisha\nAngel\nBrandy\nChloe\nHeidi\nJanelle\nKathleen\nMariela\nMaritza\nTeresa\nCarly\nEvelyn\nKylie\nVirginia\nAngelina\nAubrey\nCiara\nDaisy\nDulce\nJustine\nMarisa\nMarisol\nShawna\nBritney\nCandace\nEdith\nAlissa\nLarissa\nLinda\nReyna\nTheresa\nArianna\nCeleste\nChelsie\nChrista\nDana\nElisa\nKirsten\nLacey\nMartha\nMichaela\nNaomi\nRuth\nSonia\nSusan\nAllyson\nCarissa\nCelina\nEsmeralda\nJacquelyn\nJade\nMargarita\nMiriam\nRochelle\nTrisha\nYvonne\nBlanca\nColleen\nDaniella\nDevon\nEva\nGina\nKelli\nMadeline\nSelina\nTamara\nToni\nZoe\nBridget\nCamille\nCassie\nElena\nJasmin\nJessie\nKelsie\nMelina\nMelinda\nRachelle\nTasha\nVivian\nAmelia\nAnastasia\nCandice\nCecilia\nChantel\nKristi\nKylee\nLiliana\nMarisela\nMelody\nRegina\nSalina\nSavanna\nTaryn\nAlison\nBrianda\nCierra\nJordyn\nMeagan\nNikki\nSummer\nTessa\nTori\nTyler\nBryanna\nCara\nClaire\nCorina\nDanitza\nElise\nJillian\nKarissa\nKellie\nLydia\nMaricela\nPerla\nTiana\nWendy\nArlene\nAshleigh\nAudrey\nBarbara\nBeatriz\nBrittani\nJudith\nMaira\nMarie\nNatalia\nRubi\nSasha\nSheila\nTalia\nTayler\nYolanda\nAdilene\nAngelita\nAnne\nCallie\nCassidy\nDevin\nFaith\nJaclyn\nKelley\nKyla\nLorena\nMarlene\nMia\nPaula\nRandi\nRosemary\nSerena\nTatiana\nAraceli\nCarla\nCarolyn\nCheyanne\nCristal\nDawn\nHanna\nIvette\nPaola\nPaulina\nRhiannon\nRoxanne\nShanice\nSharon\nShayla\nViviana\nYadira\nYessenia\nAdrienne\nAimee\nAnissa\nAnita\nAntoinette\nAntonia\nArielle\nAthena\nBernadette\nDallas\nDianna\nFlor\nJaime\nKali\nKayleigh\nLucia\nMaribel\nMikayla\nMisty\nPamela\nRobyn\nShelbi\nStacey\nStephany\nTatum\nTina\nAileen\nAngelique\nAnnette\nAshlie\nAshlyn\nBrandie\nBrianne\nCortney\nDeborah\nDesirae\nDiane\nDonna\nEricka\nEsther\nFrancisca\nGeorgina\nIris\nJeanette\nJohanna\nJulianna\nKasey\nKiara\nKristy\nLizette\nLuz\nMckenna\nMckenzie\nNadia\nNina\nNorma\nRaven\nRobin\nSarai\nSelene\nSkylar\nSylvia\nAlina\nBreana\nBrenna\nCarol\nCasandra\nChantal\nConnie\nDayna\nDelia\nDestinee\nElisabeth\nEllen\nFrances\nHope\nJami\nJanae\nJane\nJosephine\nJuliana\nKacie\nKaila\nKailey\nKate\nKatelynn\nKelcie\nKira\nKristine\nLacy\nLeanna\nLillian\nLizbeth\nLizeth\nMallory\nMaya\nSadie\nShaina\nTia\nTracy\nAlana\nAlexandrea\nAlexus\nAlysha\nAlysia\nAnjelica\nAracely\nBelen\nBerenice\nBreann\nBridgette\nCarina\nCatalina\nChristian\nChristy\nDakota\nDanica\nDavina\nDenisse\nDiamond\nDolores\nFernanda\nHilary\nIesha\nIsabella\nJazmine\nJenny\nKendall\nKenia\nKyra\nLaurel\nLea\nLourdes\nLucero\nMariana\nMicaela\nMikaela\nMoriah\nNoelle\nRae\nRocio\nShea\nShelbie\nSofia\nStevie\nTania\nTanisha\nTianna\nTiffani\nTonya\nAlanna\nAlex\nAlondra\nAyla\nBreanne\nBria\nBrittni\nCaroline\nCarrie\nCecelia\nCharlotte\nCheryl\nDevyn\nElaine\nElvia\nEmilee\nFrancesca\nHaylee\nJanessa\nJayme\nJesse\nJolene\nJuana\nJulianne\nJustina\nKari\nKatarina\nKiana\nKiley\nKristyn\nLynette\nMarcela\nMarilyn\nMeredith\nMireya\nNallely\nNoemi\nRebeca\nRenae\nSerina\nShayna\nSilvia\nStacie\nStacy\nStefanie\nSusana\nSuzanne\nAlaina\nAlejandrina\nAlice\nAlisa\nAlix\nBritany\nBrooklyn\nCandy\nDelaney\nGenesis\nGiovanna\nGladys\nGrecia\nGriselda\nHaleigh\nIrma\nIvonne\nJanette\nKaley\nKarli\nKatelin\nKatharine\nKathy\nKatlyn\nKaty\nKelsea\nKelsi\nKerri\nKourtney\nKristian\nKrysta\nLa\nLatisha\nLiana\nLily\nLogan\nLorraine\nLucy\nMacy\nMaggie\nMakayla\nMarcella\nMichele\nMollie\nNayeli\nOlga\nRikki\nRiley\nRosalinda\nRoxanna\nShantel\nSkyler\nSophie\nViridiana\nYasmin\nZaira\nAlexia\nAlycia\nAlyson\nAnalisa\nAshly\nAstrid\nAudriana\nBeatrice\nBertha\nBianka\nBonnie\nBrea\nBreeana\nBrittnee\nBryana\nCassaundra\nCayla\nCeara\nChandra\nChanel\nCherish\nClara\nColby\nConsuelo\nDarian\nDebra\nDelilah\nDemi\nDestini\nDevan\nDora\nDoris\nDrew\nElsa\nEmerald\nEstrella\nFrankie\nGenevieve\nGeorgia\nIrene\nJenifer\nJoselyn\nJosie\nJulissa\nKacey\nKailee\nKalyn\nKaycee\nKaylie\nKaylynn\nKenya\nKori\nLeandra\nLena\nLilia\nLupita\nLyndsey\nMacie\nMarlena\nNikita\nNora\nParis\nPearl\nRose\nSage\nSarina\nSedona\nSonya\nStefani\nStella\nStormy\nTashina\nTrina\nValarie\nValentina\nAmaris\nAnais\nAnalicia\nAndria\nAngie\nAnn\nAshely\nAshton\nAsia\nAubrie\nAurelia\nAurora\nAzucena\nBillie\nBree\nBrittanie\nCelia\nCharlene\nCharmaine\nChelsi\nCherie\nClarisa\nCori\nCorinne\nCorrina\nDamaris\nDebbie\nDeidra\nEbony\nEdna\nEileen\nElaina\nEleanor\nEliza\nEloisa\nEmilie\nFatima\nGillian\nGraciela\nGretchen\nHailee\nHelen\nHollie\nIliana\nIsamar\nJaneth\nJanice\nJessika\nJodi\nJordin\nJoyce\nKacy\nKaela\nKalee\nKaleigh\nKami\nKandice\nKarly\nKaterina\nKathrine\nKatia\nKaylyn\nKeisha\nKelcey\nKiera\nKristal\nLana\nLara\nLeilani\nLianna\nLisette\nLoren\nLori\nLynn\nMadeleine\nMaricella\nMarla\nMarta\nMaxine\nMeaghan\nMicah\nMichael\nMirna\nOfelia\nPaloma\nReanna\nRhianna\nRichelle\nRita\nRoxana\nRylee\nSally\nSandy\nSariah\nSelena\nShana\nShauna\nSheena\nShelly\nSherry\nSidney\nSimone\nSiobhan\nStaci\nTanna\nTerra\nThalia\nTiara\nTraci\nVanesa\nYanet\nZulema\nAbril\nAddison\nAlexys\nAlysa\nAmalia\nAmberly\nAmerica\nAnabel\nAubree\nAustin\nAvery\nBailee\nBernice\nBobbi\nBrieanna\nCarley\nCarli\nCharity\nCharmayne\nChasity\nChelsy\nChenoa\nChristen\nChristiana\nCiarra\nCiera\nCody\nColette\nCory\nDalia\nDanae\nDeana\nDeidre\nDestany\nDominque\nDorothy\nEden\nElia\nElisha\nEstella\nFelisha\nGardenia\nHallie\nHarley\nIvana\nJanel\nJanell\nJaqueline\nJasmyne\nJeannette\nJena\nJenessa\nJennie\nJoann\nJovana\nJovanna\nJuanita\nJuliette\nKaelyn\nKalie\nKeshia\nKiersten\nKimberley\nKristie\nKyle\nLeana\nLeanne\nLeigh\nLia\nLynda\nMaranda\nMarcia\nMargret\nMariel\nMarley\nMartina\nMaryann\nMarysol\nMerissa\nMindy\nMyra\nNathalie\nNoel\nNohemi\nNydia\nOctavia\nPaulette\nPayton\nPhylicia\nRamona\nReba\nReina\nRene\nRoberta\nSalena\nSarahi\nShanelle\nShante\nShawnee\nShaylene\nShelley\nSheridan\nShirley\nSonja\nSonora\nSuzanna\nTamika\nTammy\nThelma\nTiffanie\nTracey\nTyra\nYazmin\nJessica\nAshley\nSamantha\nAmanda\nSarah\nTaylor\nBrittany\nAlexis\nElizabeth\nEmily\nStephanie\nJennifer\nNicole\nMegan\nAlyssa\nBrianna\nKayla\nMelissa\nDanielle\nRachel\nVictoria\nAlexandra\nAmber\nMaria\nRebecca\nHannah\nLauren\nMichelle\nAndrea\nJasmine\nVanessa\nChelsea\nKelsey\nShelby\nCourtney\nKimberly\nChristina\nMarissa\nCassandra\nSara\nJordan\nKatherine\nAngelica\nHeather\nTiffany\nBriana\nAlexandria\nHaley\nCrystal\nMary\nMorgan\nCynthia\nLaura\nSabrina\nAlicia\nShannon\nAnna\nErika\nBreanna\nCaitlin\nErica\nJamie\nKaitlyn\nBrooke\nNatalie\nKassandra\nAna\nGabriela\nPaige\nSavannah\nAngela\nBianca\nKaren\nVeronica\nAmy\nErin\nMariah\nMonica\nKatie\nOlivia\nBrenda\nMadison\nSierra\nJenna\nAlejandra\nAlexa\nAllison\nDiana\nJacqueline\nJulia\nCheyenne\nAdriana\nKristen\nLisa\nDesiree\nGabrielle\nKarina\nKelly\nMiranda\nBrittney\nMonique\nAriana\nLindsay\nApril\nKatelyn\nAbigail\nKathryn\nValerie\nLindsey\nPatricia\nAriel\nCatherine\nJocelyn\nPriscilla\nBailey\nDenise\nLeslie\nJazmin\nValeria\nMelanie\nYesenia\nKaitlin\nSandra\nSydney\nKatrina\nKristina\nKrystal\nEmma\nMercedes\nCristina\nHailey\nMayra\nGabriella\nKarla\nClarissa\nDaniela\nDominique\nHolly\nRachael\nAshlee\nGuadalupe\nIsabel\nKathleen\nMackenzie\nMeghan\nBrandi\nChelsey\nDestiny\nJasmin\nMolly\nAdrianna\nAlma\nClaudia\nTanya\nYvette\nAnissa\nKendra\nTori\nHayley\nRaquel\nCiara\nFelicia\nKristin\nNatasha\nRebekah\nTara\nJordyn\nLeah\nAutumn\nCaitlyn\nCecilia\nJade\nAlisha\nAngelina\nCelina\nChristine\nMarisa\nNancy\nBethany\nJoanna\nKara\nKrista\nMarina\nSummer\nArianna\nAudrey\nWhitney\nAlison\nKaylee\nCindy\nLiliana\nRosa\nCasey\nMichaela\nAngel\nAshleigh\nAubrey\nCarly\nJanet\nJulie\nJustine\nKylie\nMarisol\nMaritza\nMeagan\nMiriam\nShea\nBlanca\nBrandy\nFernanda\nJessie\nTessa\nCamille\nCarmen\nChloe\nClaire\nDaisy\nDana\nDulce\nEsmeralda\nJanelle\nSelena\nSylvia\nTeresa\nElisa\nKelli\nKirsten\nMargaret\nNichole\nRenee\nSavanna\nTaryn\nAnastasia\nCierra\nDaniella\nGloria\nKendall\nLeticia\nNicolette\nTabitha\nTheresa\nAlexia\nCarissa\nCarolina\nCassidy\nEvelyn\nGina\nItzel\nJaclyn\nJillian\nKylee\nLinda\nPerla\nAimee\nCara\nCarolyn\nGrace\nIsabella\nLarissa\nMadeline\nMaribel\nMckenzie\nNikki\nSusan\nToni\nYaritza\nBreana\nCeleste\nDeanna\nHeidi\nMariela\nRuby\nTamara\nAlissa\nAshlyn\nCandace\nElena\nJazmine\nMikayla\nRachelle\nReyna\nRochelle\nSophia\nTyler\nWendy\nKellie\nMallory\nSonia\nCandice\nChelsie\nDesirae\nEva\nKyla\nLacey\nLydia\nMargarita\nMia\nMoriah\nTiana\nVirginia\nAdilene\nAnahi\nCarla\nCaroline\nChristian\nDevon\nGiselle\nHope\nIrene\nJeanette\nLea\nLizbeth\nMariana\nMarisela\nRaven\nSerena\nStacey\nStephany\nTania\nYolanda\nZoe\nAngelique\nAraceli\nBridget\nEstrella\nJuanita\nJudith\nKatelynn\nKiana\nLucero\nMakayla\nMartha\nMelinda\nPaola\nPaula\nRiley\nRocio\nRose\nTia\nAdrienne\nBrianda\nDallas\nDonna\nKelley\nKiara\nLucia\nMaya\nNaomi\nRandi\nRobyn\nSadie\nSasha\nShaina\nShayla\nStacie\nTatiana\nTatum\nYvonne\nAlexus\nCassie\nChristy\nCorina\nCristal\nDakota\nDeborah\nElise\nHaylee\nKarissa\nLillian\nMckenna\nNina\nNorma\nSelina\nSonya\nSusana\nTanisha\nThalia\nTierra\nViviana\nAllyson\nAlysia\nAnita\nChandler\nCiera\nColleen\nDanica\nDiamond\nFrances\nHillary\nJenny\nJohanna\nKaila\nKasey\nKatarina\nKelsie\nKira\nLorena\nMikaela\nPaulina\nRebeca\nStacy\nTasha\nTayler\nVivian\nAlisa\nAnjelica\nAnne\nAshton\nBrenna\nBrianne\nBrittani\nCasandra\nCatalina\nDeyanira\nEllen\nEricka\nEsther\nGenesis\nGraciela\nGriselda\nJaime\nJoselyn\nKailey\nKaitlynn\nKiersten\nKristi\nKristine\nLeanna\nLizette\nMarlee\nMarlene\nNoemi\nNora\nRegina\nRobin\nRoxanne\nSalina\nSandy\nShawna\nTalia\nAlaina\nAlysha\nAlyson\nAnnette\nAntonia\nArielle\nBarbara\nBernadette\nBryanna\nCarina\nCelia\nChantel\nCortney\nDarian\nDemi\nElisabeth\nFrancisca\nIris\nJosephine\nKari\nKatlyn\nKelsea\nKiley\nLorraine\nLuz\nMarcela\nMaricela\nMelody\nRikki\nRosemary\nRoxanna\nSelene\nSidney\nStaci\nSuzanne\nTrisha\nYessenia\nAbby\nAlex\nAlexandrea\nAnn\nAnnie\nBreanne\nBritney\nCecelia\nChanel\nCharlene\nCorinne\nDawn\nDestinee\nDevin\nDorothy\nEmilee\nFaith\nHanna\nHelen\nIvette\nJacquelyn\nJaimie\nJane\nJayme\nJovanna\nKasandra\nKaylin\nKelsi\nKrysta\nLeanne\nLourdes\nMarcella\nMarie\nRuth\nShanice\nSharon\nShayna\nSilvia\nSkye\nStevie\nTiffani\nTina\nYadira\nAlysa\nAmelia\nAsia\nAthena\nBeatrice\nBrittni\nBryana\nCarol\nDora\nEdith\nGladys\nGrecia\nHalie\nIvy\nJanice\nJessika\nKaleigh\nKalyn\nKarly\nKaty\nKristy\nLeandra\nLiana\nMara\nMariel\nMarilyn\nMichele\nOlga\nPayton\nRubi\nSally\nSheila\nSofia\nTawny\nTess\nTracy\nViridiana\nYasmin\nAileen\nAlana\nAlannah\nAnabel\nArlene\nAshly\nBelen\nBerenice\nCharity\nCharmayne\nCheyanne\nClara\nCoraima\nDanitza\nDavina\nDestini\nDiane\nDominque\nElaina\nHali\nHarley\nJanette\nJuliana\nJulianne\nKacey\nKalee\nKali\nKaylene\nKaylyn\nKimberlee\nKirstin\nKristal\nLa\nLogan\nLucy\nLynette\nLynn\nMaira\nMarlena\nMelisa\nMicaela\nMisty\nNoelle\nPaloma\nPamela\nPeyton\nShelbie\nSheridan\nSkyler\nSuzette\nTashina\nTianna\nTonya\nTrina\nYajaira\nAdrian\nAisha\nAlayna\nAnalisa\nAngelita\nAntoinette\nAshlie\nAshlynn\nAubree\nAzucena\nBailee\nBonnie\nBrandie\nBria\nBridgette\nBrittanie\nChantell\nCharlotte\nChasity\nChrista\nCinthia\nClarisa\nCrysta\nDalia\nDanae\nDina\nElsa\nEstefania\nFabiola\nGeorgina\nGianna\nHelena\nHunter\nIliana\nJesse\nJosie\nKarlee\nKelci\nKelcie\nKenna\nKortney\nKyleigh\nLarisa\nLatasha\nLisette\nLizeth\nLluvia\nLuisa\nMadelyn\nMaggie\nMarianna\nMaricruz\nMaureen\nMelina\nMindy\nMonika\nMontana\nNadia\nNatalia\nNikole\nPaulette\nReina\nRhiannon\nShai\nShantel\nShawnee\nShelbi\nStefanie\nTatianna\nTracey\nValentina\nYanira\nAlba\nAleah\nAlena\nAlice\nAlina\nAllyssa\nAlondra\nAlycia\nAmairani\nAndria\nAnnissa\nAundrea\nBeth\nBobbie\nBrea\nBrisa\nBrittnee\nCaitlynn\nCallie\nCassondra\nCayla\nChantal\nChantelle\nCharmaine\nChelsi\nCintia\nDalila\nDanelle\nDanika\nDarcy\nDayna\nDeandra\nDeidra\nDeidre\nDelaney\nDesire\nDesirea\nDevan\nEden\nEleanor\nEliza\nEmilia\nErnestina\nFatima\nFrancine\nGeorgia\nHalle\nHallie\nHollie\nIleana\nIsamar\nIsela\nJacinda\nJackie\nJanell\nJaqueline\nJasmyne\nJaycee\nJenifer\nJovana\nKalene\nKatelin\nKenia\nKyra\nLaci\nLayla\nLeila\nLeilani\nLilian\nLori\nLynelle\nMacy\nMagdalena\nMakenna\nMaricella\nMarlen\nMikala\nMitzi\nMollie\nNadine\nNatali\nPauline\nPrecious\nReanna\nRegan\nRoberta\nRoxana\nRylee\nSantana\nSavanah\nShae\nShauna\nSiena\nSkylar\nSolana\nSonora\nSophie\nStefani\nStormy\nSusanna\nSydnee\nTiara\nTraci\nVerenice\nYahaira\nYanet\nAbriana\nAja\nAlexzandria\nAmaris\nAmie\nAnahy\nAndie\nAnisa\nAnnalisa\nAnyssa\nAreli\nArely\nAurora\nAvery\nBaylee\nBelinda\nBertha\nBetsy\nBeverly\nBrittaney\nBrynn\nCari\nCarlee\nCarli\nCarrie\nCelestina\nChanelle\nChante\nCherie\nChristie\nCody\nConnie\nConstance\nCorey\nCori\nCorrine\nDamaris\nDaphne\nDara\nDarlene\nDebra\nDenisse\nDestanie\nDevyn\nElaine\nElia\nElissa\nElvia\nElyse\nElyssa\nEunice\nFrankie\nGenevieve\nGuillermina\nGwendolyn\nHaleigh\nHarlie\nHayden\nIlse\nImelda\nInez\nIrma\nIsis\nIvonne\nJacklyn\nJalisa\nJanae\nJanett\nJazmyn\nJazmyne\nJesenia\nJill\nJodi\nJolene\nJorden\nJosefina\nJuana\nJulianna\nJune\nJustice\nJustina\nKalie\nKami\nKarlie\nKarrie\nKay\nKayleen\nKaylie\nKeira\nKennedy\nKia\nKiera\nKimberley\nKinsey\nKorina\nKristian\nKrystle\nLeeann\nLena\nLesley\nLexus\nLinette\nLoretta\nLupita\nLyndsey\nMacey\nMakenzie\nMandi\nMercedez\nMirna\nNayeli\nNicolle\nNicollette\nPage\nPatience\nRaina\nReagan\nRita\nRosario\nSage\nSalena\nSarahi\nSarai\nSavana\nSherry\nShiloh\nSimone\nSonja\nStella\nSuzanna\nTabatha\nTamika\nTammy\nTrinity\nVianey\nYazmin\nZoey\nZuleika\nZulema\nJessica\nAshley\nSamantha\nTaylor\nSarah\nNicole\nEmily\nAlexis\nAmanda\nJennifer\nStephanie\nBrianna\nMegan\nAlyssa\nDanielle\nElizabeth\nKayla\nBrittany\nMaria\nRachel\nHannah\nLauren\nAmber\nMelissa\nRebecca\nVictoria\nJasmine\nAlexandra\nVanessa\nAndrea\nCourtney\nMarissa\nShelby\nMichelle\nCassandra\nChristina\nMariah\nAngelica\nSierra\nKelsey\nKatherine\nBriana\nSara\nTiffany\nJacqueline\nChelsea\nHeather\nHaley\nJordan\nAlicia\nMorgan\nSabrina\nCrystal\nKimberly\nKaitlyn\nBreanna\nAbigail\nSavannah\nAlexandria\nAna\nLaura\nShannon\nAnna\nBrooke\nGabriela\nAlexa\nDesiree\nJamie\nCheyenne\nErika\nGabrielle\nCaitlin\nSydney\nAlejandra\nMiranda\nMonica\nBianca\nCynthia\nDestiny\nVeronica\nMadison\nDiana\nEmma\nMary\nNatalie\nPaige\nAllison\nAdriana\nErica\nKarina\nKristen\nLindsey\nAngela\nKatelyn\nOlivia\nKaren\nClarissa\nErin\nGabriella\nKatie\nMonique\nKelly\nBrenda\nAmy\nAriana\nKassandra\nLeslie\nMackenzie\nMarisa\nMayra\nYesenia\nBailey\nBrittney\nKaylee\nHayley\nJenna\nJulia\nKristina\nApril\nKarla\nNancy\nNatasha\nDaniela\nGuadalupe\nKathryn\nPatricia\nRachael\nKaitlin\nMercedes\nAudrey\nMichaela\nSummer\nValerie\nGenesis\nHailey\nJocelyn\nLeah\nCeleste\nBethany\nBrandi\nKylie\nMadeline\nKatrina\nLisa\nRaquel\nSandra\nAshlee\nTori\nCatherine\nChristine\nHolly\nMolly\nClaudia\nJasmin\nJoanna\nPriscilla\nChloe\nJazmin\nMarina\nDenise\nDominique\nJade\nLindsay\nAngel\nAutumn\nKara\nAshleigh\nKendra\nNichole\nValeria\nMaritza\nRebekah\nAlexia\nAriel\nGrace\nKrystal\nMeghan\nAngelina\nCelina\nChelsey\nCiara\nCierra\nFelicia\nJulie\nMelanie\nWhitney\nAdrianna\nAnissa\nCaitlyn\nDaisy\nIsabella\nCasey\nCecilia\nKristin\nTara\nWendy\nCarly\nRosa\nSelina\nSerena\nCassidy\nDalia\nEsmeralda\nIsabel\nKylee\nSelena\nYvette\nArianna\nDakota\nMargaret\nRuby\nTatum\nTessa\nAlison\nLiliana\nReyna\nCarissa\nDana\nDeanna\nKathleen\nKirsten\nLeticia\nMikayla\nTeresa\nZoe\nAimee\nAlisha\nAlissa\nBlanca\nDulce\nMartha\nTayler\nCarolina\nElena\nJanelle\nJustine\nLarissa\nLinda\nMia\nPaola\nAlma\nBrandy\nCristina\nEvelyn\nGina\nJazmine\nKendall\nKrista\nPerla\nSavanna\nAdilene\nCarmen\nItzel\nLorena\nLydia\nMarisol\nTiana\nChristian\nClaire\nGloria\nJanet\nMckenna\nRenee\nSophia\nCandice\nCristal\nDarian\nMakayla\nNadia\nNaomi\nYasmin\nAshlyn\nBryanna\nCaroline\nHope\nNorma\nShaina\nSonia\nSusana\nSylvia\nTanya\nAllyson\nAnastasia\nAraceli\nAubrey\nCamille\nFaith\nJessie\nKatelynn\nKiara\nMeagan\nMikaela\nMiriam\nNikki\nStephany\nTia\nTyler\nViviana\nAmelia\nAnne\nClara\nDaniella\nJacquelyn\nKarissa\nMallory\nPaulina\nRegina\nSusan\nTamara\nBreana\nCarla\nCarrie\nChandler\nCharlotte\nHanna\nIrene\nKelsie\nLacey\nLizbeth\nMargarita\nMireya\nNicolette\nRaven\nSadie\nShawna\nShayla\nTabitha\nTheresa\nAlexus\nBrenna\nBritney\nClarisa\nFrances\nHaylee\nHeidi\nIris\nJillian\nKaila\nLogan\nMaggie\nMaya\nRuth\nSelene\nTania\nTaryn\nTianna\nTina\nYvonne\nAnahi\nAngelique\nBarbara\nBeatriz\nCarolyn\nCharmayne\nCindy\nDestinee\nElisa\nElise\nHunter\nJohanna\nJosephine\nJudith\nKaitlynn\nKatarina\nKiana\nKira\nLucia\nLuz\nNina\nRandi\nRiley\nSalina\nToni\nYolanda\nAbby\nAlisa\nAnn\nBridget\nCarina\nChelsie\nCheyanne\nCortney\nDallas\nDayana\nFernanda\nIrma\nJaclyn\nJaime\nJordyn\nJosie\nJuliana\nKailey\nKyra\nMariana\nMicaela\nMoriah\nRhiannon\nViridiana\nAlanna\nAlysha\nAnnette\nBobbi\nBreann\nChantel\nDarlene\nDawn\nDeborah\nElisabeth\nEmilee\nGraciela\nJenny\nKacey\nKelli\nLizette\nMakenzie\nMarlee\nMelinda\nRochelle\nSage\nStacy\nTatiana\nTracy\nAlaina\nAlyson\nAshlynn\nBerenice\nBrianda\nBrianne\nCandace\nCiera\nColleen\nDesirae\nDonna\nEdith\nFrancisca\nGrecia\nHailee\nJoy\nKellie\nKori\nMaricela\nMariela\nMelina\nNoemi\nPaula\nRobyn\nRose\nRoxana\nSavanah\nSheridan\nSidney\nStacey\nTanisha\nTess\nTiffani\nTrisha\nValentina\nVirginia\nYadira\nYazmin\nYessenia\nAdrienne\nAntoinette\nAshlie\nBrisa\nDanika\nEsperanza\nEvelin\nHelena\nJustina\nKaley\nKali\nKasandra\nKenia\nKhadijah\nKyla\nLeandra\nLily\nMarilyn\nMelody\nNayeli\nOlga\nRobin\nRocio\nRosario\nSedona\nShantel\nSilvia\nSusanna\nTierra\nTonya\nAlysa\nAracely\nArielle\nAspen\nCarley\nCassie\nCecelia\nCelia\nDanica\nDenisse\nDiane\nJaimie\nJanae\nJeanette\nJuanita\nKassidy\nKennedy\nKenya\nKourtney\nLizeth\nLucero\nMadelyn\nMagdalena\nMarcela\nMaribel\nMarie\nMarisela\nMc\nMckenzie\nMichele\nNataly\nPamela\nRebeca\nRhianna\nRikki\nRosemary\nSamara\nSasha\nSkylar\nSofia\nStevie\nAileen\nAlexandrea\nAlina\nAliyah\nAnais\nAnalisa\nAnjelica\nAnyssa\nAsia\nAurora\nBonnie\nBrittani\nCallie\nChristiana\nCinthia\nConnie\nCorina\nDanitza\nDevon\nEden\nEliza\nEsther\nEva\nFrancesca\nGriselda\nIliana\nImani\nItzayana\nJayme\nJulianna\nKaleigh\nKalyn\nKasey\nKatlyn\nKayleigh\nKristi\nLaurel\nLucy\nMeaghan\nNoelle\nNohely\nPayton\nRicki\nRita\nRyan\nRylee\nSally\nSarai\nShanice\nSharon\nShea\nSheila\nAbbey\nAngie\nAnnie\nArlene\nAubrie\nAudra\nAyla\nBreanne\nBridgette\nBrooklyn\nCarli\nCayla\nCharlee\nChrista\nDamaris\nDevan\nDevyn\nDora\nElaine\nElissa\nElsa\nEmerald\nEricka\nFlor\nFrankie\nHallie\nHarley\nHayden\nIsela\nJesse\nJessika\nJoselyn\nJulissa\nKacie\nKarli\nKarlie\nKassie\nKate\nKaterina\nKaylene\nKeri\nKierra\nKiersten\nKiley\nKrysta\nLatasha\nLillian\nLluvia\nLoren\nLyndsey\nMadeleine\nMaranda\nMari\nMarlene\nMarley\nMeredith\nNikole\nPeyton\nRoxanne\nSandy\nSerina\nShayna\nShelbi\nSonya\nStormy\nVivian\nAlayna\nAlexander\nAlice\nAlix\nAmerica\nAndria\nAnita\nAustin\nAvery\nBailee\nBernadette\nBetsy\nCara\nCarlie\nCarol\nChanel\nCharity\nClare\nCorrina\nDebra\nDevin\nEileen\nElisha\nElvira\nGiselle\nGwendolyn\nHalie\nHelen\nIvy\nJanessa\nJanine\nJaqueline\nJena\nJulianne\nKailee\nKari\nKarly\nKayleen\nKendal\nKimberlee\nKristy\nLexis\nLynette\nMaira\nMaricella\nMckayla\nMollie\nNadine\nNatalia\nRachelle\nRaina\nRegan\nShay\nShianne\nShyanne\nSkye\nStacie\nStefanie\nSydnee\nTashina\nTraci\nVianey\nYaritza\nAidee\nAime\nAlena\nAllie\nAmberly\nAngelita\nAshton\nAubree\nAudrianna\nAyana\nBaylee\nBernice\nBetty\nBeverly\nBillie\nBobbie\nBrook\nCaitlynn\nCasandra\nCeline\nCorinne\nDanyelle\nDarby\nDeandra\nDeidre\nDelaney\nDemi\nDesarae\nDiamond\nDianna\nEleanor\nEliana\nElide\nEllen\nElsie\nElvia\nElyse\nEmilie\nEunice\nEvangelina\nFabiola\nGenevieve\nGeorgia\nGeorgina\nGracie\nHeaven\nHolli\nHollie\nIlse\nIngrid\nIsamar\nIvette\nJaneth\nJennie\nJesus\nJocelyne\nJodi\nJuliette\nJustice\nKaeli\nKalie\nKarley\nKayley\nKelcie\nKelsea\nKelsi\nKrystina\nLa\nLacy\nLeila\nLeilani\nLexi\nLiana\nLisette\nLizet\nLori\nLupita\nMalia\nMarcella\nMariel\nMarlena\nMartina\nMichael\nMikala\nMisty\nNora\nPetra\nPhoebe\nRae\nRamona\nReanna\nRoxanna\nSarahi\nSheri\nSiera\nSimone\nSonja\nSonora\nSophie\nSydni\nTabatha\nThalia\nTiara\nTisha\nTory\nTrinity\nVanesa\nViolet\nYajaira\nZhane\nAbbigail\nAdrian\nAlba\nAlex\nAli\nAlondra\nAlycia\nAlyssia\nAmairani\nAmaris\nAmbar\nAnali\nAnalyssa\nAnastacia\nAngelic\nAnnika\nAnnmarie\nAshli\nAshly\nAthena\nAzucena\nBeatrice\nBlake\nBree\nBreonna\nBrielle\nBryana\nBryce\nCari\nCatalina\nCathleen\nCatrina\nCelena\nChantelle\nCharlie\nCharmaine\nChristianna\nChristy\nColby\nCoral\nCori\nCorrine\nCory\nDavina\nDelia\nDesirea\nDestiney\nDestini\nDeyanira\nEbony\nElyssa\nEstefani\nEstella\nEstrella\nFatima\nFelisha\nGianna\nGiovanna\nGladys\nHilda\nImelda\nIsabelle\nIvonne\nJacey\nJalen\nJana\nJanette\nJasmyn\nJazmen\nJazmyne\nJoanne\nJodie\nJosefina\nJosette\nKaelyn\nKailyn\nKarime\nKarin\nKarlee\nKarolina\nKathy\nKatlin\nKaty\nKaylie\nKaylynn\nKeegan\nKelley\nKenna\nKimberley\nKimberlie\nKortney\nKristine\nKyndra\nLacie\nLara\nLena\nLesly\nLilia\nLynsey\nMacie\nMacy\nMaddison\nMajerle\nMakenna\nMara\nMargie\nMarimar\nMarlen\nMaryam\nMerissa\nMindy\nMyra\nMyrna\nNallely\nNathalie\nNichelle\nNoheli\nPatrice\nPaulette\nReina\nRosie\nRosio\nSalena\nSarina\nSavana\nScarlett\nShanna\nShauna\nShaylee\nSheena\nShelbie\nShirley\nSkyler\nStar\nStarr\nSuzanne\nTalia\nTasha\nTatyana\nTeal\nTerra\nTyra\nValarie\nYarima\nYasmeen\nZaina\nJessica\nAshley\nSamantha\nTaylor\nAlexis\nSarah\nAmanda\nEmily\nStephanie\nKayla\nElizabeth\nHannah\nBrianna\nMegan\nMaria\nRachel\nJennifer\nNicole\nDanielle\nBrittany\nAlyssa\nAlexandra\nVictoria\nCourtney\nLauren\nAmber\nJasmine\nMadison\nMelissa\nSelena\nVanessa\nAndrea\nRebecca\nMichelle\nMarissa\nAngelica\nJordan\nMariah\nShelby\nSierra\nChristina\nKimberly\nNatalie\nSara\nCassandra\nSydney\nKatherine\nMorgan\nDestiny\nSavannah\nHaley\nDiana\nJacqueline\nKaitlyn\nBrooke\nChelsea\nKelsey\nMiranda\nSabrina\nBriana\nAbigail\nKarina\nMary\nGabrielle\nPaige\nAlexandria\nCheyenne\nAlicia\nTiffany\nBreanna\nGabriela\nAna\nBailey\nAdriana\nCrystal\nCynthia\nAnna\nLaura\nAllison\nAlejandra\nEmma\nVeronica\nCaitlin\nHeather\nJulia\nAriana\nMonica\nAlexa\nAngela\nJocelyn\nKelly\nAmy\nBianca\nErika\nKylie\nBrittney\nKaren\nErin\nOlivia\nKatie\nErica\nHailey\nMonique\nKassandra\nKristen\nKatelyn\nDesiree\nMackenzie\nDaisy\nGuadalupe\nBrenda\nCeleste\nGabriella\nJazmin\nKathryn\nShannon\nLeslie\nMarisa\nMichaela\nKaitlin\nYesenia\nCatherine\nClarissa\nMercedes\nClaudia\nLindsey\nAlondra\nJamie\nJoanna\nMadeline\nJenna\nKristina\nPatricia\nDominique\nLindsay\nJasmin\nCecilia\nKarla\nRebekah\nAngel\nKaylee\nLeah\nAdrianna\nCassidy\nCiara\nValerie\nAutumn\nRachael\nChristine\nRosa\nSophia\nDaniela\nAshlee\nKristin\nCarolina\nArianna\nDenise\nHolly\nSandra\nValeria\nBethany\nCierra\nGloria\nKendall\nNatasha\nBrenna\nEvelyn\nHayley\nMayra\nRaquel\nRuby\nAriel\nCaitlyn\nCarmen\nLydia\nMartha\nTeresa\nApril\nKatrina\nKendra\nLisa\nMckenna\nMikayla\nPaola\nAudrey\nFelicia\nIsabella\nJulie\nKathleen\nKrystal\nSummer\nMaritza\nPriscilla\nSelina\nTori\nWhitney\nAnissa\nChloe\nGrace\nJustine\nKara\nMargaret\nMeghan\nSavanna\nTara\nAlexia\nAubrey\nCasey\nJazmine\nKirsten\nMakayla\nMckenzie\nMolly\nNancy\nPerla\nReyna\nFaith\nMarina\nTanya\nZoe\nBrandi\nCarly\nJade\nLiliana\nMarisol\nMia\nBlanca\nDeanna\nLeticia\nTatum\nCaroline\nEsmeralda\nGina\nHope\nMelanie\nRiley\nTiana\nAlison\nAlma\nAshlyn\nJordyn\nNaomi\nAngelina\nAshleigh\nDaniella\nJessie\nLacey\nSonia\nBrandy\nCelina\nCristina\nElena\nKrista\nKylee\nLorena\nNichole\nRenee\nViviana\nAimee\nCindy\nGenesis\nItzel\nMallory\nMaribel\nSerena\nAngelique\nCharlotte\nKiana\nRegina\nTayler\nTyler\nAmelia\nCamille\nDana\nFernanda\nHeidi\nIsabel\nMeagan\nVirginia\nAlissa\nAllyson\nAraceli\nCheyanne\nDelaney\nElisa\nJillian\nJudith\nMargarita\nMarie\nMarlene\nShania\nSidney\nSylvia\nTabitha\nTheresa\nWendy\nYvette\nAaliyah\nEva\nKiara\nLarissa\nLinda\nMariana\nMiriam\nNorma\nViridiana\nDakota\nFabiola\nHanna\nIridian\nMaya\nMikaela\nSadie\nSarai\nCarissa\nCarla\nCassie\nClaire\nDulce\nElisabeth\nElise\nFrances\nKatarina\nLizbeth\nMicaela\nNicolette\nShea\nTamara\nTania\nTatiana\nTessa\nAlina\nAlisha\nAnastasia\nBritney\nCandice\nClara\nDalia\nDenisse\nDestinee\nDiamond\nEsperanza\nHarley\nJacquelyn\nJanet\nJuliana\nJustice\nKaila\nKaitlynn\nKasandra\nKatelynn\nKira\nLuz\nNikki\nNoelle\nSalina\nSilvia\nBailee\nChelsey\nCristal\nDeja\nDevin\nGeorgina\nHaylee\nJaime\nJenny\nJuanita\nKiley\nMakenna\nMaricela\nNoemi\nSandy\nShayna\nYadira\nAlexus\nAstrid\nBeatriz\nBrooklyn\nBryanna\nChantel\nDallas\nEdith\nHunter\nIrania\nIris\nJanelle\nJoy\nKasey\nLizette\nLucero\nPeyton\nSedona\nTaryn\nTia\nYvonne\nBelen\nBridget\nCallie\nColleen\nEllen\nEmilee\nEsther\nJayme\nJosephine\nKayleigh\nKaylie\nLily\nLizeth\nLucia\nMakenzie\nMikala\nSalena\nShaina\nShelbi\nStacey\nSusana\nTianna\nAdilene\nAnahi\nAnnette\nAnnie\nBerenice\nBreana\nBrianne\nChrista\nCiera\nDesirae\nImani\nIsabelle\nIvy\nJocelyne\nJulianna\nKailee\nKarissa\nKennedy\nKyla\nMadelyn\nMaggie\nMarilyn\nNatalia\nRachelle\nRhiannon\nRikki\nRuth\nSavanah\nSofia\nStacy\nTasha\nTina\nAlana\nAlex\nAliyah\nAlysa\nAnne\nAshlie\nAspen\nBrook\nCara\nCelena\nChristian\nDanitza\nDelia\nDestini\nEmilie\nEricka\nGladys\nHeaven\nJaclyn\nJanae\nJesse\nJuana\nKailey\nKari\nKate\nKatlyn\nKaty\nKellie\nKelsie\nLourdes\nMaddison\nMagdalena\nMireya\nNina\nPamela\nRaven\nRyan\nSerina\nSkylar\nThalia\nToni\nVivian\nYessenia\nAlexandrea\nAlisa\nAnabel\nAngelita\nAnyssa\nAshton\nAsia\nBarbara\nBeatrice\nBrianda\nCandace\nCarrie\nCasandra\nChelsie\nChristiana\nDania\nDianna\nDora\nElisha\nEstefani\nGriselda\nIliana\nKali\nKarly\nKassidy\nKenya\nKianna\nKyra\nMadeleine\nMaira\nMara\nMarcela\nMelinda\nMisty\nNadia\nNora\nPaulina\nPayton\nRandi\nRose\nRylee\nSasha\nSelene\nShantel\nSkye\nSonya\nSusan\nYajaira\nAnjelica\nArielle\nAthena\nBrittani\nCarina\nCarolyn\nChandler\nChantelle\nCorina\nDamaris\nDavina\nDemi\nDestiney\nDevon\nElaine\nElsa\nEvangelina\nEvelin\nFlor\nFrancisca\nGiselle\nGrecia\nHelen\nHillary\nJanette\nJazmyn\nKaela\nKelli\nKelsi\nLexie\nLexus\nLillian\nMacy\nMelina\nMelody\nPhoebe\nRobyn\nRocio\nRosario\nShanna\nShawna\nTiara\nTracy\nTrinity\nYazmin\nZaira\nAbby\nAbrianna\nAlaina\nAlba\nAlice\nAlysia\nAlyson\nAnalicia\nAnalisa\nAnita\nAnn\nArely\nAudra\nAyla\nBaylee\nBonnie\nBryana\nCecelia\nCorrina\nDarby\nDawn\nDevyn\nDiane\nDonna\nEbony\nEileen\nEliza\nEstefany\nEstrella\nFrancine\nGenevieve\nGraciela\nHailee\nIrene\nIrma\nJaqueline\nJeanette\nJensen\nJohanna\nJosie\nKaleigh\nKaley\nKarely\nKarlie\nKatelin\nKatlin\nKaycee\nKenia\nKourtney\nKristy\nLacy\nLiana\nLyric\nMariela\nMeaghan\nMoriah\nMyranda\nNataly\nNayeli\nParis\nRebeca\nSarahi\nShayla\nStevie\nTatyana\nTiffani\nYahaira\nYamilex\nAdrian\nAlanna\nAlycia\nArlette\nAshlynn\nAvery\nBobbie\nBreann\nBrittanie\nCarol\nCayla\nCelia\nChristy\nConnie\nCortney\nDarian\nDarlene\nDeborah\nEunice\nFrancesca\nHaleigh\nHalie\nHayden\nHelena\nIvette\nJackie\nJenifer\nJessika\nJoann\nKacey\nKacie\nKarli\nKaylyn\nKierra\nKorina\nKortney\nKristi\nKristine\nLayla\nLeila\nLexi\nLisette\nMadisen\nMadyson\nMaia\nMarley\nMckayla\nMercedez\nPatience\nPaula\nRaina\nRamona\nReanna\nReina\nRianna\nRochelle\nSage\nScarlett\nSharon\nShaylyn\nShelly\nShyanne\nSiara\nSirena\nSkyler\nSophie\nStefanie\nSydnee\nSydni\nTalia\nTanisha\nTrista\nYaritza\nYasmin\nYolanda\nAbbey\nAbriana\nAdara\nAllie\nAllyssa\nAlyssia\nAmalia\nAmerica\nAmethyst\nAngie\nAnnalisa\nAntoinette\nAracely\nBibiana\nBreanne\nBrynn\nCaitlynn\nCandy\nCarley\nCarlie\nChantal\nCiarra\nCodi\nCorinna\nDanae\nDaphne\nDeidre\nDolores\nDrew\nEleanor\nElvia\nEstefania\nFelicity\nGema\nGeneva\nGianna\nGisela\nGwendolyn\nHallie\nHazel\nIngrid\nJaneth\nJena\nJovanna\nJoyce\nKalli\nKarlee\nKatharine\nKeila\nKelley\nKiersten\nKimberley\nKristyn\nKyle\nLea\nLeanna\nLeanne\nLeeann\nLilia\nLilibeth\nLogan\nLori\nLorraine\nLucy\nLuisa\nMaegan\nMari\nMaricruz\nMelisa\nMichele\nMyra\nOfelia\nPresley\nRosalia\nRosalinda\nRubi\nRylie\nSarina\nShana\nShay\nSheila\nSheridan\nSienna\nStephany\nSydnie\nTammy\nTess\nTierra\nTonya\nTrina\nTristen\nVianey\nYasmine\nYessica\nAddison\nAdelina\nAileen\nAisha\nAlea\nAleah\nAlec\nAlena\nAli\nAliza\nAnais\nAnayeli\nAnisa\nAniza\nAnnmarie\nAntonia\nArlene\nAshli\nAubree\nAurelia\nBella\nBernadette\nBertha\nBrandee\nBridgette\nBrielle\nBrigitte\nBrittni\nCalli\nCarson\nCatelyn\nCatrina\nChase\nChastity\nChelsi\nCheyanna\nClarisa\nCody\nDanika\nDanyelle\nDayana\nDebra\nDelicia\nDena\nDesire\nDestinie\nDina\nDomonique\nDylan\nEdna\nEmelie\nEryn\nEssence\nEstefanie\nEstephanie\nFrida\nGisel\nHalle\nHarmony\nHollie\nIridiana\nIsis\nIvonne\nJacklyn\nJacklynn\nJaimie\nJana\nJayde\nJennie\nJoana\nJolene\nKalee\nKallie\nKandice\nKaylene\nKayley\nKaylin\nKaytlyn\nKendyl\nKerri\nKerry\nKhadijah\nKirstin\nKlarissa\nKristal\nKyleigh\nLara\nLauryn\nLilliana\nLissette\nLluvia\nMarcella\nMarrissa\nMaxine\nMeranda\nMindy\nMontana\nNallely\nNatalee\nNatali\nNereyda\nPage\nPaisley\nPaloma\nPauline\nPearl\nPriya\nRichelle\nRicki\nRosemary\nRoxana\nSally\nSerenity\nShawnee\nSheena\nShelbie\nStella\nTaelor\nTamera\nTashina\nTeagan\nTyra\nValentina\nXena\nXenia\nXochitl\nYanira\nYareli\nYomira\nZulema\nJessica\nAshley\nSamantha\nAlexis\nTaylor\nEmily\nSarah\nAlyssa\nHannah\nMadison\nElizabeth\nStephanie\nMaria\nAmanda\nKayla\nBrianna\nMegan\nVictoria\nJennifer\nNicole\nVanessa\nAlexandra\nRachel\nBrittany\nJasmine\nLauren\nSabrina\nRebecca\nCourtney\nDanielle\nAmber\nSavannah\nMarissa\nKimberly\nAngelica\nMariah\nMelissa\nHaley\nSierra\nShelby\nAndrea\nMorgan\nBailey\nMichelle\nJacqueline\nSydney\nCheyenne\nAbigail\nBriana\nDestiny\nKatherine\nChristina\nSara\nBrooke\nAnna\nGabrielle\nAlicia\nKaitlyn\nCassandra\nChelsea\nJordan\nBreanna\nDiana\nKelsey\nBianca\nSelena\nKatelyn\nTiffany\nHailey\nCynthia\nKarina\nMary\nNatalie\nAna\nAngela\nHeather\nKaren\nLaura\nGabriela\nLeslie\nVeronica\nMackenzie\nAllison\nMonica\nAlexa\nAlexandria\nCrystal\nAlondra\nEmma\nPaige\nErika\nMiranda\nJocelyn\nDaisy\nDesiree\nAlejandra\nJulia\nOlivia\nAriana\nGabriella\nAdriana\nErin\nShania\nDominique\nKelly\nBrenda\nJamie\nKassandra\nMadeline\nSophia\nJenna\nCaitlin\nKaylee\nAmy\nDaniela\nYesenia\nGuadalupe\nShannon\nCeleste\nKristen\nClaudia\nJazmin\nKylie\nCassidy\nKaitlin\nKarla\nKatie\nMichaela\nSummer\nAutumn\nBrittney\nMonique\nNancy\nMarisa\nMikayla\nCiara\nChloe\nLindsey\nValeria\nErica\nJade\nKathryn\nMia\nClarissa\nHayley\nMarisol\nIsabel\nPriscilla\nKendra\nGrace\nKiana\nPatricia\nValerie\nArianna\nIsabella\nMercedes\nJazmine\nMolly\nCaroline\nJoanna\nAdrianna\nAlexia\nAriel\nCecilia\nEvelyn\nJasmin\nLeah\nMckenna\nApril\nMakayla\nCarly\nDana\nHolly\nKirsten\nSerena\nBethany\nCaitlyn\nKatrina\nLeticia\nCindy\nZoe\nAngel\nAshlee\nLindsay\nRebekah\nRosa\nRuby\nSandra\nTara\nDenise\nFelicia\nHanna\nKrystal\nRachael\nAshleigh\nCatherine\nCristina\nDelaney\nElena\nEsperanza\nFaith\nLisa\nMariana\nMaritza\nMartha\nRaquel\nTeresa\nCarolina\nKristina\nKylee\nMayra\nPerla\nEsmeralda\nGenesis\nJustine\nLorena\nReyna\nTessa\nGloria\nJordyn\nJulie\nKara\nMckenzie\nTatiana\nTori\nAlma\nHeidi\nKatelynn\nMeghan\nAudrey\nBrenna\nCarmen\nCheyanne\nHope\nKristin\nMargaret\nPaola\nRiley\nAdilene\nBreana\nEstefania\nMelanie\nRaven\nYvette\nAngelina\nCierra\nClaire\nJanet\nMeagan\nMikaela\nNatasha\nWhitney\nAlison\nAnissa\nAubrey\nBaylee\nBrandy\nDakota\nLiliana\nMallory\nMarina\nMiriam\nNaomi\nRegina\nRenee\nShea\nViviana\nAntonia\nBlanca\nCarla\nLinda\nMaya\nSkylar\nTyler\nEdith\nElisa\nEva\nJulianna\nLarissa\nOdalys\nSadie\nTania\nTiana\nYadira\nAnnie\nAshlyn\nBrandi\nCamille\nChristine\nDaniella\nJohanna\nKrista\nLacey\nLily\nMaribel\nPayton\nSavanna\nTatum\nWendy\nAlexus\nAlisha\nBeatriz\nCasey\nJacquelyn\nKendall\nMarisela\nPaulina\nSonia\nTanya\nVivian\nAimee\nChelsey\nDallas\nFernanda\nGina\nJillian\nLesley\nNatalia\nNikki\nPamela\nTaryn\nAlana\nAlex\nAnahi\nAraceli\nAylin\nCarina\nChantel\nCinthia\nDeanna\nDulce\nHarley\nHaylee\nItzel\nJenny\nJuliana\nKiara\nKyla\nLizbeth\nLuz\nPaula\nShayla\nAlissa\nAmelia\nBailee\nCelina\nDeja\nDestinee\nGenevieve\nLogan\nMargarita\nPaloma\nSilvia\nTabitha\nTayler\nVirginia\nAlina\nAlisa\nCharlotte\nIrene\nKathleen\nKira\nLesly\nMadelyn\nMireya\nShyanne\nSidney\nStacey\nTia\nTina\nToni\nAnastasia\nAngelique\nBarbara\nJocelyne\nJudith\nKiley\nKyra\nLizeth\nLucia\nMadalyn\nMariela\nNadia\nNichole\nSienna\nSofia\nSuzette\nTheresa\nYasmin\nAbby\nAileen\nAnne\nAthena\nBridget\nCallie\nCristal\nDania\nDevon\nEsther\nFrances\nHelen\nJessie\nKaila\nKailey\nKari\nKatelin\nKelsie\nKennedy\nLillian\nMacy\nMadeleine\nMakenna\nRocio\nRoxanne\nShayna\nSydnee\nSylvia\nTamara\nYamilex\nYaritza\nAlanna\nAlexandrea\nAlice\nAlyson\nArely\nAspen\nAurora\nBerenice\nCandace\nCarlie\nCarolyn\nClara\nColleen\nCorina\nEileen\nElise\nIsabelle\nJaqueline\nLizette\nMakenzie\nMarlene\nNoemi\nOdalis\nRobin\nRochelle\nRuth\nRylee\nSage\nSasha\nSedona\nSerina\nTiara\nYasmine\nAllyson\nAllyssa\nAnisa\nAshlynn\nBelen\nBrianne\nBrooklyn\nBryanna\nCarley\nDalia\nHaleigh\nIris\nJanelle\nJayme\nKacie\nKaley\nKarissa\nKaylyn\nLydia\nMaricela\nMarie\nMarilyn\nMelody\nMoriah\nPeyton\nRobyn\nSarai\nSarina\nSusan\nTrisha\nYvonne\nAnalisa\nAngelita\nBertha\nBrianda\nCarissa\nCarrie\nCeline\nChelsie\nClare\nDesirae\nDiane\nElisabeth\nEmilee\nHailee\nHeaven\nIliana\nIvy\nJaclyn\nJaime\nJoselyn\nJosephine\nJuanita\nKali\nKasandra\nKaycee\nKaylie\nKenya\nKortney\nLucero\nMadisen\nMarianna\nNicolette\nNina\nNora\nRandi\nRosario\nRubi\nRylie\nShantel\nStephany\nTristen\nTyra\nAllie\nAreli\nArielle\nAshlie\nBreanne\nBritney\nCelia\nCiarra\nDemetria\nDemi\nDenisse\nDonna\nElyssa\nHunter\nJanell\nJanessa\nJazmyn\nJulianne\nJustice\nKaitlynn\nKassidy\nKate\nKaylin\nKeely\nKiersten\nLuisa\nMarlee\nMelina\nMichele\nMontana\nNataly\nNoelle\nNorma\nSelina\nSonya\nTalia\nTiffani\nYessenia\nAlysia\nAnita\nAracely\nAsia\nBobbi\nBreann\nBrisa\nBrittanie\nBrynn\nCandice\nCasandra\nCassie\nChandler\nChanel\nChantal\nChristiana\nCiera\nDamaris\nDevin\nEdna\nEllen\nEryn\nFrancesca\nGeorgina\nGianna\nGiselle\nGladys\nGrecia\nHayden\nIrma\nIsis\nJacquelin\nKarlie\nKatlyn\nKelli\nKenia\nKierra\nKourtney\nLeandra\nLeanna\nMaggie\nMarcella\nMeredith\nMicaela\nRachelle\nRhiannon\nRikki\nRosalinda\nSalina\nSarahi\nSavanah\nSelene\nStacy\nTianna\nViridiana\nXena\nZoey\nAddison\nAlayna\nAlyssia\nAmaris\nAngie\nAnjelica\nAnnette\nAnyssa\nArlene\nAshly\nAstrid\nAyla\nBeverly\nBridgette\nCara\nCayla\nCharity\nCharlene\nChristie\nDelia\nEbony\nEden\nElaina\nEllie\nEstefany\nGillian\nHalle\nHelena\nJada\nJanette\nJosie\nKailee\nKarly\nKatharine\nKathy\nKayleigh\nKori\nKristi\nLexi\nLucy\nMaira\nMelinda\nMonika\nReagan\nRoxanna\nScarlett\nShandiin\nShanna\nSharon\nShaye\nSkye\nSkyler\nSuzanne\nTanisha\nTatyana\nTrinity\nVanesa\nZulema\nAbbigail\nAide\nAlysha\nAmbar\nAnais\nAnalicia\nAnika\nAnnika\nAntoinette\nAshton\nBeatrice\nBrandie\nCamilla\nCharlie\nChristy\nCora\nCori\nDanitza\nDavina\nDeborah\nDiamond\nDomonique\nEstrella\nFrancine\nFrancisca\nGisela\nGraciela\nGwendolyn\nHalie\nIleana\nJackie\nJacklyn\nJanae\nJeanette\nJuliette\nKaleigh\nKasey\nKathia\nKayley\nKelley\nKellie\nKelsi\nKiera\nLaurel\nLexie\nLiana\nMaddison\nMandy\nMc\nMckayla\nMikala\nMitzi\nMyra\nNathalie\nNayeli\nReina\nRita\nRoxana\nRyan\nSariah\nShawna\nShay\nStevie\nStormy\nTess\nThalia\nTierra\nTristan\nVianey\nYajaira\nYareli\nYolanda\nAda\nAdrienne\nAitana\nAlaina\nAleah\nAlena\nAlessandra\nAlycia\nAmairani\nAudra\nAva\nBibiana\nBonnie\nBria\nBrittani\nCameron\nCarli\nChristian\nCoral\nCorrina\nCorrine\nDanica\nDayana\nDelilah\nDestini\nDolores\nElaine\nElissa\nEliza\nElla\nElvia\nEmely\nEricka\nGeorgia\nGladis\nGriselda\nHana\nHilda\nIesha\nImani\nInes\nIvonne\nJacquelynn\nJanice\nJesus\nJoelle\nJoy\nJuliet\nJulissa\nKacey\nKarlee\nKarli\nKatia\nKaylynn\nKelci\nKelcie\nKelsea\nKenna\nKeyla\nKianna\nKorina\nKristian\nKristy\nKrysta\nLeeann\nLeona\nLexis\nLissette\nLynette\nMalia\nMara\nMaryjane\nMicah\nNoel\nPhoebe\nRayna\nReanna\nRhianna\nRosie\nShaniah\nSheridan\nShirley\nShyla\nSusanna\nSydni\nTamika\nTammy\nTerra\nTrista\nValentina\nVivianna\nYazmin\nZinnia\nAbbie\nAleena\nAlexcia\nAliyah\nAmalia\nAnaya\nAndria\nAnn\nAnnabelle\nAnneliese\nArianne\nArmida\nAubree\nBaylie\nBianka\nBreeanna\nBridgett\nBrieanna\nBritni\nBrittnay\nBryce\nCailey\nCaitlynn\nCaleigh\nCarol\nCatalina\nCatrina\nCecelia\nCelicia\nChasity\nChristen\nCinthya\nCorinna\nCortney\nCydney\nDanae\nDanika\nDaria\nDarian\nDeana\nDeisy\nDestiney\nEliana\nElisha\nElyse\nEvangelina\nFabiola\nFaviola\nFrankie\nFrida\nGema\nHallie\nIdalia\nIngrid\nIsela\nIvette\nJacey\nJacinda\nJaden\nJaimie\nJamila\nJana\nJanie\nJaylene\nJazlyn\nJena\nJenifer\nJesica\nJill\nJolene\nJoselin\nKaela\nKaelyn\nKalynn\nKarolina\nKathya\nKatya\nKaya\nKaylene\nKeana\nKeegan\nKimber\nKristal\nKristine\nLacy\nLatisha\nLilia\nLillie\nLina\nLisette\nLoren\nLori\nLyric\nMacie\nMagdalena\nMarcela\nMarika\nMarlen\nMaryann\nMckinley\nMelany\nMilagros\nMindy\nMira\nMisty\nMollie\nMykayla\nNathaly\nOdessa\nPearl\nPrecious\nQuinn\nRaelynn\nRebeca\nRegan\nRenae\nRiana\nRose\nRyann\nSabryna\nSaira\nSalena\nSandy\nSantana\nShae\nShanelle\nShaniya\nSimone\nSiobhan\nSirena\nSky\nSoledad\nSusana\nSuzanna\nTasha\nTawny\nTaylar\nTeagan\nTiffanie\nTorri\nTrina\nVania\nVerenice\nYahaira\nYalitza\nYamileth\nYanet\nJessica\nAlexis\nAshley\nSamantha\nEmily\nSarah\nTaylor\nHannah\nAlyssa\nJennifer\nMadison\nBrianna\nMaria\nElizabeth\nRachel\nKayla\nMegan\nAmanda\nVictoria\nStephanie\nNicole\nLauren\nVanessa\nJasmine\nDanielle\nMelissa\nRebecca\nAngelica\nSabrina\nAlexandra\nAmber\nAndrea\nSierra\nBrittany\nMarissa\nCassandra\nJordan\nMariah\nSavannah\nSydney\nMorgan\nHaley\nJacqueline\nAlicia\nDestiny\nJulia\nMichelle\nAbigail\nEmma\nKatherine\nCourtney\nCheyenne\nShelby\nBailey\nGabrielle\nKaitlyn\nDiana\nMonica\nKimberly\nBriana\nChristina\nSara\nAllison\nAnna\nAna\nCynthia\nAriana\nNatalie\nHailey\nBreanna\nOlivia\nGabriela\nLaura\nAlexandria\nKarina\nKelly\nLeslie\nMary\nVeronica\nAdriana\nAlexa\nMiranda\nAdrianna\nAngela\nSelena\nBrooke\nDesiree\nKaren\nMikayla\nBianca\nCaitlin\nDaisy\nPaige\nAlondra\nErica\nGabriella\nKarla\nTiffany\nEsmeralda\nJenna\nKatelyn\nErika\nErin\nKathryn\nDominique\nHeather\nAlejandra\nBrenda\nGrace\nGuadalupe\nIsabel\nJazmin\nJocelyn\nKelsey\nMia\nYesenia\nCeleste\nMadeline\nTatum\nKristen\nCrystal\nMonique\nArianna\nMackenzie\nMichaela\nShannon\nSophia\nAutumn\nChelsea\nJade\nKaylee\nAmy\nCatherine\nDaniela\nValerie\nKassandra\nRosa\nChloe\nIsabella\nJulissa\nSerena\nMckenna\nSummer\nAriel\nCassidy\nMakayla\nCaitlyn\nFaith\nKylie\nMarisa\nAlison\nCarolina\nPatricia\nRiley\nBrittney\nJasmin\nCaroline\nGenesis\nMercedes\nCiara\nCierra\nClaudia\nJamie\nKiana\nLeah\nAnahi\nHolly\nKaitlin\nLesley\nValeria\nHayley\nKatie\nZoe\nAngelina\nLindsey\nYulissa\nAubrey\nAudrey\nKatrina\nKendra\nLindsay\nMolly\nReyna\nRaquel\nSandra\nAngel\nClarissa\nMarisol\nRebekah\nRuby\nApril\nAshlee\nLiliana\nMaribel\nNancy\nBethany\nJazmine\nKendall\nMeghan\nMikaela\nAlexus\nAlma\nBrandi\nBrandy\nCarly\nEsperanza\nPerla\nPriscilla\nAylin\nGiselle\nMckenzie\nMireya\nNatasha\nSadie\nAshlyn\nJordyn\nJulie\nKylee\nNaomi\nRylee\nSidney\nSonia\nAlexia\nEvelyn\nLily\nMelanie\nCindy\nClaire\nJanet\nLeticia\nLisa\nAlissa\nBryanna\nChristine\nCristina\nHanna\nHope\nLydia\nMargaret\nMarina\nTara\nTessa\nCasey\nDenise\nLuz\nShania\nAaliyah\nItzel\nJustine\nLarissa\nMaritza\nMeagan\nPaola\nSavanna\nWhitney\nAnissa\nBrenna\nDakota\nDulce\nElise\nEstrella\nHeidi\nKristina\nLacey\nMaya\nNina\nPaulina\nRachael\nSofia\nTeresa\nAimee\nCarla\nKristin\nRuth\nTatiana\nViviana\nAdilene\nAlina\nAnastasia\nCarmen\nCristal\nElisa\nJessie\nKirsten\nKyra\nWendy\nDestinee\nEdith\nElena\nGloria\nIrene\nJoanna\nKailey\nKennedy\nMariana\nPayton\nPeyton\nRenee\nTayler\nTiana\nTori\nAngelique\nAshleigh\nBaylee\nBlanca\nBrooklyn\nDana\nDeanna\nJuliana\nKara\nLinda\nMartha\nNichole\nYasmine\nAileen\nAlana\nAllyson\nAnnika\nAntonia\nAraceli\nBarbara\nCecilia\nDelaney\nIris\nKatelynn\nKrista\nKrystal\nMadeleine\nRaven\nTaryn\nBailee\nBerenice\nDamaris\nDiamond\nFrances\nJulianna\nKathleen\nKira\nKyla\nLogan\nMargarita\nMayra\nMicaela\nSerina\nTabitha\nAliyah\nAnita\nBeatriz\nCameron\nGina\nGrecia\nHailee\nJaclyn\nJillian\nKiara\nMadelyn\nMallory\nMarie\nMarisela\nShayla\nShea\nTianna\nAbby\nEleanor\nElisabeth\nFelicia\nFernanda\nFlor\nGraciela\nJudith\nKarissa\nLorena\nSarai\nSelina\nTalia\nYasmin\nYessenia\nAddison\nAlisha\nAnnie\nAthena\nAurora\nBridget\nBritney\nCeline\nChelsey\nDesirae\nKali\nKatarina\nMariela\nMelina\nSkylar\nStephany\nSusan\nTania\nToni\nYadira\nYazmin\nAmelia\nAnalisa\nCarissa\nDonna\nEstefania\nEva\nFrancisca\nJada\nJaqueline\nJosephine\nKayleigh\nKaylin\nKenia\nLizbeth\nMakenzie\nMarlene\nMoriah\nNikki\nPaloma\nRegina\nRocio\nSage\nSalma\nSavanah\nSedona\nShyanne\nSusana\nVirginia\nYajaira\nAbbey\nAnais\nAyleen\nBreana\nBrisa\nCamille\nCasandra\nCatalina\nCheyanne\nDarian\nDeja\nEricka\nIsabelle\nJuliet\nLisette\nMakenna\nNoemi\nReina\nSharon\nShayna\nSienna\nSkyler\nTamara\nTia\nAlanna\nAlessandra\nAlyssia\nAngelita\nAsia\nAvery\nCarina\nCorina\nDallas\nDenisse\nFatima\nGianna\nIsela\nJazmyn\nJenifer\nKarly\nKasandra\nKate\nKeely\nKelsie\nLeanna\nMadisen\nMaricela\nMelinda\nMiriam\nNadia\nNicolette\nOdalis\nPamela\nRebeca\nRhiannon\nSasha\nSkye\nSophie\nSylvia\nValentina\nYamilex\nYvette\nAlyson\nAmerica\nAspen\nBrianda\nCallie\nDaniella\nDayana\nDevin\nDevon\nDomonique\nEmilee\nGillian\nHaylee\nHeaven\nHelen\nHelena\nHunter\nJanae\nJanelle\nJeanette\nJohanna\nKaitlynn\nKasey\nKassidy\nKaylie\nKaylynn\nKenya\nMacy\nNatalia\nNoelle\nNorma\nPhoebe\nPrecious\nSelene\nShawna\nSonya\nStacy\nTyra\nVivian\nAleah\nAlice\nAnisa\nBernadette\nCandace\nChantel\nCharlene\nCiera\nDania\nDelia\nElaine\nElyssa\nGisselle\nHallie\nHarley\nJoselyn\nKarli\nKianna\nKristal\nLesly\nLillian\nLizeth\nMadisyn\nMelody\nMichele\nMyranda\nOdalys\nPaula\nRoxana\nRoxanne\nRubi\nShyann\nSilvia\nTanya\nTheresa\nViridiana\nYolanda\nAlize\nAlysa\nAnjelica\nAstrid\nAudra\nBrianne\nCassie\nCherish\nDanitza\nElyse\nEstefani\nEsther\nFiona\nIliana\nJackeline\nJailene\nJuanita\nKaley\nKiley\nLeanne\nLena\nLexi\nLexus\nLilian\nLizette\nLucero\nLucy\nLuisa\nMaddison\nMagdalena\nMaira\nMarcella\nMarianna\nMisty\nParis\nRoxanna\nSarahi\nThalia\nTiara\nTierra\nTina\nZoey\nAiyana\nAllie\nAlycia\nAnalicia\nAnn\nAnne\nAnnette\nArely\nAshlynn\nAyanna\nAyla\nBreanne\nCara\nCarli\nCharlotte\nChristian\nDina\nDominque\nDorothy\nEllen\nElvira\nGladys\nIleana\nImani\nIvana\nIvette\nIvonne\nJane\nJasmyn\nJenny\nJocelyne\nJoy\nJulisa\nJustice\nKailee\nKatlyn\nKiersten\nLauryn\nLilly\nLourdes\nMarcela\nMaryssa\nMckayla\nMelisa\nMeredith\nNadine\nNataly\nNikita\nRandi\nReanna\nRobyn\nSally\nSandy\nSerenity\nShaylene\nTatyana\nTristen\nYareli\nYessica\nAbrianna\nAlaina\nAlexandrea\nAlisa\nAllyssa\nAmalia\nAnalise\nAnnissa\nAracely\nAreli\nArielle\nArlene\nAshly\nAshton\nBertha\nBillie\nBridgette\nBritanny\nCamilla\nCandice\nCarlee\nCarrie\nChandler\nChanel\nChantelle\nChelsie\nCiarra\nDalia\nDawn\nDemi\nDylan\nEbony\nElaina\nEliza\nEllie\nEmerald\nFrancesca\nGeorgia\nGiovanna\nGwendolyn\nHalie\nIrma\nIvy\nJaime\nJanessa\nJaneth\nJaquelin\nJaycee\nJayme\nJewel\nJodi\nJorden\nJoselin\nJovanna\nKari\nKatharine\nKaylyn\nKeanna\nKelli\nKellie\nKeri\nKiera\nKierra\nKourtney\nKristian\nLeilani\nLucia\nMaia\nMeaghan\nMicayla\nMikala\nMitzi\nNeida\nNubia\nRosemary\nRyan\nShaina\nShauna\nSimone\nSuzette\nTammy\nTiffani\nTracey\nTrinity\nTristan\nVanesa\nVianey\nXena\nYaritza\nYulisa\nAbril\nAdela\nAdrienne\nAilyn\nAlba\nAlena\nAlivia\nAliya\nAlysia\nAnabel\nAnai\nAngie\nAnnabel\nAnyssa\nBobbi\nBrittani\nBryana\nCaitlynn\nCamryn\nCarolyn\nCecelia\nCelena\nCelia\nCelina\nCharlie\nClara\nConnie\nCorrina\nDanica\nDeborah\nDelilah\nDevyn\nDianna\nDora\nDrew\nEden\nEliana\nElissa\nElle\nEstefany\nEvelin\nFabiola\nJaci\nJacquelin\nJacquelyn\nJanice\nJill\nJosie\nJulianne\nJustina\nKacey\nKaila\nKatelin\nKathy\nKayleen\nKeila\nKelci\nKelley\nKristi\nKyle\nLa\nLatanya\nLeann\nLilliana\nLori\nLupita\nLyndsey\nLyric\nMacie\nMadyson\nMaite\nMakaela\nMakena\nMandy\nMarilyn\nMarlen\nMiah\nMontana\nNallely\nNathalie\nOlga\nOriana\nPaulette\nPearl\nQuinn\nRaeann\nRaina\nReagan\nRegan\nReilly\nRosario\nRose\nRyleigh\nSarina\nSavana\nShay\nSheila\nShelbie\nShianne\nStar\nStormie\nSusanna\nSydnee\nTatianna\nTristin\nTyler\nWinter\nYahaira\nYamilet\nYvonne\nZoie\nAbbie\nAdrianne\nAiyanna\nAlanah\nAlesha\nAlex\nAlexys\nAlpha\nAlysha\nAmara\nAmaris\nAmberly\nAndreana\nAnika\nAnnalise\nAntoinette\nAriadna\nAryana\nAubrie\nAugust\nAzalia\nBeatrice\nBerta\nBeth\nBreann\nCami\nCamila\nCandelaria\nCandy\nCarley\nCarlie\nCarson\nCayla\nChantal\nCharlee\nChase\nChrista\nChristy\nCinthia\nClare\nCora\nCorinne\nCortney\nDaija\nDanae\nDarcy\nDasia\nDayanara\nDebbie\nDelainey\nDestiney\nDiane\nEileen\nElexus\nElora\nEmely\nEmmalee\nEvangelina\nFlora\nFrankie\nGabriele\nGenevieve\nGisela\nGreta\nHalee\nHalle\nIngrid\nJacinda\nJackelyn\nJanette\nJasmyne\nJaylene\nJaylin\nJayna\nJazlyn\nJenica\nJoanne\nJohana\nKaci\nKacie\nKaela\nKamryn\nKarlee\nKatalina\nKayli\nKaytlynn\nKeana\nKeira\nKristine\nKristyn\nLacy\nLana\nLatisha\nLaurel\nLeona\nLidia\nLilia\nLissette\nLondon\nMadalyn\nMaegan\nMaggie\nMara\nMarielena\nMarjorie\nMarlena\nMc\nMercedez\nMirna\nMoira\nMonika\nMykel\nNayeli\nNayely\nNora\nPatience\nPauline\nPilar\nRacheal\nRachelle\nRamona\nRayna\nRobin\nRochelle\nRosie\nSamatha\nSariah\nShanell\nShanice\nShanna\nSky\nSkyla\nSoledad\nStacey\nSuzanne\nTasha\nTea\nTonya\nTracy\nTrista\nVianca\nVivianna\nXenia\nXochitl\nYesica\nZaira\nAlexis\nSamantha\nJessica\nEmily\nAshley\nAlyssa\nSarah\nTaylor\nHannah\nMadison\nJennifer\nBrianna\nVictoria\nMegan\nMaria\nElizabeth\nKayla\nVanessa\nJasmine\nAlexandra\nNicole\nLauren\nStephanie\nAmanda\nSierra\nRachel\nAndrea\nBrittany\nDestiny\nAngelica\nEmma\nAmber\nAbigail\nMariah\nJordan\nJulia\nKaitlyn\nSydney\nDanielle\nSavannah\nMarissa\nMichelle\nMorgan\nOlivia\nRebecca\nMelissa\nSabrina\nNatalie\nAlicia\nKimberly\nAna\nGabrielle\nCassandra\nBailey\nBriana\nBrooke\nHailey\nCynthia\nAllison\nAnna\nCheyenne\nHaley\nEsmeralda\nKatherine\nLeslie\nDiana\nAlejandra\nShelby\nSara\nAdriana\nCourtney\nJacqueline\nDaisy\nMackenzie\nMadeline\nKelsey\nMary\nMiranda\nAlexa\nMonica\nAriana\nBreanna\nGabriela\nPaige\nAlexandria\nSophia\nGabriella\nCrystal\nChristina\nGrace\nJocelyn\nKaylee\nAngel\nBianca\nCaitlin\nAlondra\nKarina\nMia\nMikayla\nVeronica\nIsabel\nKaren\nKylie\nChloe\nDaniela\nErin\nLaura\nSelena\nAngela\nKarla\nTiffany\nErika\nKatelyn\nValeria\nAmy\nGuadalupe\nIsabella\nJenna\nDesiree\nMarisa\nAdrianna\nArianna\nKassandra\nKathryn\nKatie\nErica\nMaya\nHeather\nDominique\nJasmin\nMakayla\nYesenia\nJade\nMckenna\nMonique\nCeleste\nTatum\nZoe\nBrenda\nBrittney\nKristen\nAriel\nAutumn\nJazmine\nMichaela\nSerena\nValerie\nChelsea\nClarissa\nFaith\nKaitlin\nCaroline\nGiselle\nJamie\nJazmin\nNancy\nRaquel\nShannon\nCarolina\nKylee\nPriscilla\nLeah\nAlexia\nReyna\nCaitlyn\nRiley\nRuby\nCatherine\nKelly\nMercedes\nPatricia\nRosa\nSummer\nTara\nAnahi\nApril\nBethany\nCarmen\nClaudia\nHayley\nLiliana\nLindsey\nMayra\nMolly\nSandra\nCassidy\nDelaney\nKatrina\nCarly\nJoanna\nMeghan\nGloria\nJordyn\nJulissa\nLesley\nNaomi\nAshlyn\nCiara\nGenesis\nLindsay\nPaola\nRachael\nAubrey\nCecilia\nCierra\nDenise\nShania\nAngelina\nAudrey\nElena\nEvelyn\nLorena\nMckenzie\nRebekah\nWendy\nClaire\nTatiana\nAshlee\nCindy\nJulie\nKyra\nMelanie\nPaulina\nAlma\nDeanna\nMadelyn\nMarisol\nMikaela\nSofia\nTori\nAnissa\nIsabelle\nKatelynn\nLily\nBryanna\nCameron\nCasey\nChristine\nEsperanza\nHolly\nKendra\nKiana\nLarissa\nLeticia\nMarina\nMiriam\nTeresa\nHanna\nKristina\nKrystal\nKyla\nLizbeth\nMakenna\nMakenzie\nMariana\nNatalia\nCristina\nKara\nLacey\nNatasha\nSkylar\nAraceli\nCheyanne\nDaniella\nHope\nKathleen\nMaritza\nMeagan\nRaven\nRylee\nBaylee\nElisa\nJillian\nJulianna\nKendall\nMadeleine\nMargaret\nMartha\nMireya\nPerla\nSonia\nTessa\nAlissa\nDulce\nKennedy\nPayton\nAaliyah\nAllyson\nBerenice\nHunter\nJanet\nJustine\nKailey\nKiara\nLillian\nLinda\nLuz\nSienna\nVivian\nAlison\nAthena\nBrandy\nBrooklyn\nCarla\nJuliana\nLisa\nLizeth\nMallory\nMarie\nNorma\nSalma\nSavanna\nTayler\nTiana\nAileen\nAlexus\nEva\nGraciela\nJada\nLesly\nMargarita\nOdalis\nPamela\nShea\nAlana\nAnastasia\nBrandi\nBrenna\nKate\nShayla\nViviana\nYasmine\nYvette\nBridget\nCharlotte\nEstrella\nHailee\nIsela\nLydia\nMaribel\nNayeli\nAbby\nCasandra\nDakota\nDenisse\nElisabeth\nGina\nHeidi\nIrene\nJailene\nKaylie\nKira\nKirsten\nNichole\nReina\nRhiannon\nRuth\nAmelia\nAnnie\nAnnika\nAshleigh\nAylin\nCatalina\nCelina\nDana\nDesirae\nEdith\nFernanda\nMicaela\nNadia\nRocio\nRose\nSadie\nTania\nAlina\nAngelique\nCalista\nDevin\nDianna\nHarley\nHaylee\nHeaven\nItzel\nJaqueline\nJosephine\nKasey\nKenya\nLucero\nMarisela\nPrecious\nRegina\nTalia\nTatyana\nTianna\nYajaira\nYasmin\nAbbey\nAdilene\nAimee\nAlize\nAmerica\nBailee\nCeline\nCiera\nEden\nElise\nGisselle\nLeilani\nLexi\nSidney\nTabitha\nTia\nTyra\nAliyah\nAnisa\nArely\nAsia\nAva\nCallie\nCamille\nCamryn\nChelsey\nCristal\nDamaris\nDestinee\nEmilee\nEricka\nFelicia\nJacquelyn\nJanelle\nLuisa\nMckayla\nNoemi\nOdalys\nRenee\nWhitney\nAllie\nAnjelica\nAurora\nBernadette\nBlanca\nDeja\nFlor\nIvy\nJanessa\nJudith\nKali\nKassidy\nMadyson\nMelody\nMya\nNathalie\nNina\nReagan\nSkyler\nSylvia\nTamara\nTheresa\nToni\nYadira\nYessenia\nYulissa\nAddison\nAlisha\nAnita\nAspen\nCarissa\nChanel\nGillian\nHalle\nHallie\nJaclyn\nJanette\nJasmyn\nJuanita\nKailee\nKaleigh\nKatlyn\nKaylin\nKrista\nMacy\nMaddison\nMariela\nMarley\nMartina\nMelina\nSasha\nSerina\nSharon\nSophie\nTaryn\nThalia\nVirginia\nViridiana\nAbril\nAlycia\nAracely\nArielle\nAshlynn\nAshton\nAubree\nAvery\nBelen\nBreana\nBrianda\nBrisa\nBritney\nBrook\nBrynn\nCarina\nCarli\nClara\nDiane\nEileen\nEliana\nEliza\nGeorgia\nGianna\nJaime\nJanae\nJenny\nJohanna\nKaitlynn\nKenia\nKori\nLena\nMadalyn\nMaricela\nMarilyn\nNicolette\nShawna\nSilvia\nStephany\nTierra\nTina\nTyler\nYaritza\nYazmin\nYessica\nYolanda\nAlisa\nAlysia\nArlene\nAryana\nBeatriz\nCarley\nCassie\nDelia\nElaina\nElaine\nEmely\nEstefani\nFatima\nGracie\nIris\nJazmyn\nKaila\nKaley\nKamryn\nKarli\nKatarina\nKatelin\nKayleigh\nKiley\nKyleigh\nMagdalena\nMalia\nMarlene\nMyranda\nNikki\nNizhoni\nPeyton\nReanna\nRosario\nRoxanne\nSarai\nSedona\nSelina\nSheila\nAlena\nAlice\nAlly\nAngeles\nAngelic\nAnnabelle\nAnne\nAntonia\nAstrid\nAudra\nBridgette\nCara\nCarolyn\nChristy\nCinthia\nColleen\nCorina\nDalia\nDanitza\nDavina\nDeborah\nElla\nEmilie\nEsther\nFrances\nFrancesca\nHayden\nHelen\nIsis\nJailine\nJaycee\nJazmyne\nJoy\nJuliette\nKarissa\nKelsy\nKinsey\nKristin\nLaurel\nLeanna\nLexie\nLexus\nLilliana\nLizette\nMaggie\nMarcella\nMontana\nPaloma\nSage\nSarahi\nSavanah\nShae\nShelbie\nShyanne\nSimone\nStacey\nStacy\nSusana\nTaya\nVanesa\nXena\nYareli\nAlanna\nAlexandrea\nAmaya\nAnalisa\nAngeline\nAnn\nBrianne\nBrielle\nCamila\nCarlie\nChantel\nCoral\nDayana\nDelilah\nDevyn\nDolores\nEbony\nEleanor\nElisha\nEllie\nEmerald\nFelicity\nFrancisca\nGiovanna\nGladys\nHelena\nIliana\nJosie\nJovanna\nKari\nKarly\nKeely\nKelsi\nKiera\nKiersten\nLauryn\nLeanne\nLeslye\nLilly\nLisette\nLogan\nLourdes\nLyndsey\nMadisen\nMakaela\nMarcela\nMari\nMarianna\nNeida\nParis\nPatience\nPaula\nPricilla\nRobin\nRobyn\nSerenity\nSonya\nTanya\nTess\nYvonne\nAdela\nAdrienne\nAlayna\nAlex\nAlexi\nAllyssa\nAlyson\nAnastacia\nAngelita\nAnyssa\nAria\nAshlie\nAyanna\nBryana\nCaitlynn\nCandace\nCarlee\nCelestina\nClare\nClarisa\nDallas\nDanae\nDania\nDeisy\nDevon\nDiamond\nDomonique\nDora\nElysia\nEstefania\nFabiola\nGemma\nGisell\nGissel\nHaylie\nHilda\nIlse\nIridian\nIvette\nJacey\nJanely\nJaylene\nJessie\nJocelyne\nJustice\nKacey\nKacie\nKaela\nKaelyn\nKarlee\nKasandra\nKaterina\nKaya\nKaycee\nKayci\nKellie\nKelsie\nKeyla\nKrysta\nLidia\nLilian\nLluvia\nLoren\nLorraine\nLucia\nMaegan\nMakaila\nMaricella\nMaryjane\nMelinda\nMercedez\nMikala\nMiya\nPresley\nRacheal\nRandi\nRebeca\nRosemary\nRyan\nRylie\nShaelyn\nShaina\nShaye\nShayna\nStevie\nTanisha\nTonya\nYamilex\nAbbigail\nAbrianna\nAida\nAlanis\nAlexys\nAli\nAlyssia\nAmairani\nAmari\nAnaya\nAnessa\nAnnabella\nAnnisa\nAriadna\nArlette\nAubrie\nAustin\nAyla\nAyleen\nBailie\nBarbara\nBella\nBeverly\nBobbi\nBrea\nBreanne\nBrooklynn\nCatrina\nCelia\nCora\nDaria\nDarian\nDebra\nDemi\nDestany\nDestini\nDeyanira\nDina\nDonna\nElle\nEstefany\nFrida\nGenevieve\nGlenda\nGrecia\nGretchen\nGriselda\nHaleigh\nHali\nHarlee\nHaven\nImani\nIngrid\nIrma\nIzabella\nJackeline\nJackie\nJadyn\nJalen\nJana\nJaneth\nJasmyne\nJazlyn\nJoselin\nJoseline\nJuana\nJulianne\nJulisa\nKalista\nKatheryn\nKathy\nKayleen\nKelli\nKelsea\nKianna\nKristy\nLexis\nLucy\nLuna\nLyric\nMacey\nMadelynn\nMadilyn\nMadisyn\nMaia\nMakena\nMariam\nMarianne\nMarlee\nMeaghan\nMerissa\nMirella\nNataly\nNayely\nPhoebe\nPriscila\nRachelle\nRyann\nRyleigh\nSally\nSantana\nSarina\nSavana\nShaylynn\nShelbi\nStacie\nStella\nSydnee\nSydnie\nTammy\nTasia\nTeagan\nTiara\nTiffani\nValentina\nYarely\nYazmine\nZoey\nAbbie\nAbriana\nAcacia\nAilyn\nAinsley\nAiyana\nAlesha\nAlora\nAlysa\nAlyse\nAnika\nArlyn\nAugust\nBetty\nBibiana\nBonnie\nBrandie\nBreeanna\nBria\nBrieanna\nBriseida\nBrittani\nCarol\nCecelia\nCelena\nChandler\nCharity\nCharlene\nChase\nChelsie\nChrista\nChristian\nChristiana\nConnie\nCori\nCourtnee\nDani\nDarcy\nDeandra\nDesteny\nDestinie\nDevan\nEdna\nElsa\nElva\nElvia\nElysa\nEryn\nEssence\nFrankie\nGabriele\nGalilea\nImelda\nJaden\nJaida\nJaiden\nJanice\nJanie\nJayme\nJenifer\nJesse\nJimena\nJoann\nJorden\nKalee\nKalie\nKarime\nKarlie\nKaty\nKaylah\nKayley\nKeeley\nKenna\nLea\nLeandra\nLeann\nLilia\nLynette\nMagali\nMaira\nMaren\nMarlena\nMelisa\nMeredith\nMiah\nMicayla\nMonet\nMonika\nMykayla\nNadine\nNo\nNubia\nOctavia\nOriana\nParker\nPaulette\nPrisila\nRaelyn\nRayven\nRita\nRochelle\nRoxana\nRoxanna\nSaige\nSammantha\nSandy\nSelene\nShay\nShaylee\nSheridan\nShyla\nSkye\nSkyla\nSommer\nStarr\nStefanie\nSusan\nTasha\nTatianna\nTeanna\nTracy\nTrinity\nTristen\nTyla\nVivica\nYahaira\nYanira\nYoselin\nYsela\nYuliana\nZaria\nSamantha\nAlexis\nEmily\nAshley\nAlyssa\nJessica\nHannah\nTaylor\nJennifer\nMadison\nVictoria\nSarah\nElizabeth\nMaria\nBrianna\nLauren\nAbigail\nJasmine\nMegan\nNicole\nAmanda\nEmma\nKayla\nRachel\nSavannah\nStephanie\nSierra\nVanessa\nSydney\nAlexandra\nDestiny\nMichelle\nAndrea\nMarissa\nAngelica\nMariah\nRebecca\nKaitlyn\nKimberly\nMelissa\nGabrielle\nAnna\nDanielle\nAmber\nHaley\nJacqueline\nBrittany\nMorgan\nBriana\nGrace\nNatalie\nHailey\nOlivia\nAriana\nBrooke\nIsabella\nLeslie\nJulia\nCassandra\nAlicia\nKatherine\nSara\nDaniela\nSabrina\nDiana\nJordan\nAllison\nGabriela\nKarina\nShelby\nAngela\nBreanna\nCourtney\nKaylee\nMackenzie\nSophia\nVeronica\nKaren\nKarla\nDaisy\nMikayla\nPaige\nAdriana\nAlejandra\nAlondra\nAna\nBailey\nCheyenne\nFaith\nKatelyn\nGabriella\nMary\nIsabel\nMia\nChloe\nCynthia\nJenna\nAlexa\nEsmeralda\nKylie\nMonica\nYesenia\nArianna\nJocelyn\nLaura\nZoe\nBianca\nCassidy\nAlexandria\nDominique\nErika\nKatie\nEvelyn\nAutumn\nMaya\nChristina\nValeria\nAlexia\nCaitlin\nDesiree\nGuadalupe\nHeather\nJazmin\nTatum\nCeleste\nKelsey\nLindsey\nAngel\nJamie\nMakayla\nSelena\nBrenda\nCrystal\nJade\nLizbeth\nMiranda\nAmy\nMonique\nJasmin\nMadeline\nSerena\nMichaela\nBrittney\nKelly\nRiley\nCaitlyn\nGiselle\nMckenna\nCarolina\nElena\nKiara\nRosa\nTiffany\nKristen\nKylee\nPatricia\nShannon\nClaire\nErica\nAdrianna\nAngelina\nRebekah\nJazmine\nKassandra\nKatrina\nLeah\nPriscilla\nErin\nJordyn\nMelanie\nPaola\nSummer\nSkylar\nApril\nAudrey\nCierra\nGenesis\nHope\nKathryn\nAriel\nChelsea\nMakenna\nMarisol\nNaomi\nSandra\nClaudia\nRaquel\nTrinity\nClarissa\nJaqueline\nAshlyn\nCaroline\nKendra\nMaritza\nValerie\nCecilia\nCindy\nLily\nReyna\nSofia\nCiara\nGloria\nTeresa\nDakota\nIsabelle\nLesley\nLiliana\nCarmen\nLillian\nMckenzie\nMercedes\nNatalia\nRuby\nShania\nAnahi\nEsperanza\nHanna\nJulianna\nKiana\nLuz\nMargaret\nBryanna\nCamryn\nDenise\nMariana\nMeghan\nPayton\nRachael\nRhiannon\nYasmin\nAnissa\nCatherine\nJoanna\nLauryn\nPaulina\nSerenity\nBrooklyn\nCristina\nHayley\nJuliana\nKaitlin\nKate\nNancy\nAlison\nAnastasia\nBrenna\nDelaney\nGisselle\nKristina\nLindsay\nMarina\nMarisa\nSalma\nSophie\nAlana\nHolly\nKailey\nKendall\nLeticia\nRaven\nRenee\nRylee\nSavanna\nTara\nAlexus\nAlissa\nAmelia\nAubrey\nDeanna\nLorena\nMakenzie\nMayra\nSonia\nBailee\nCamille\nKara\nLydia\nMolly\nMya\nRose\nShayla\nVivian\nViviana\nAllyson\nAlma\nAshlee\nBritney\nFatima\nFernanda\nHeidi\nIris\nJailene\nKaitlynn\nKassidy\nKrystal\nKyra\nLesly\nLizeth\nRuth\nTatiana\nTiana\nWendy\nYasmine\nCameron\nCarly\nChristine\nKathleen\nKira\nKyla\nLizette\nMaribel\nMikaela\nMiriam\nPerla\nAthena\nBethany\nCasey\nElise\nHailee\nJillian\nKennedy\nKristin\nLacey\nMireya\nNayeli\nSage\nYajaira\nAngelique\nCarissa\nEsther\nHaylee\nJulie\nKailee\nKatelynn\nKirsten\nKrista\nLinda\nPeyton\nSadie\nAva\nBaylee\nBerenice\nBridget\nDulce\nElisa\nIvy\nJanet\nLisa\nMartha\nNatasha\nNina\nSienna\nTabitha\nWhitney\nCheyanne\nDaniella\nDiamond\nJada\nKamryn\nKayleigh\nLuisa\nMadelyn\nPamela\nRocio\nSylvia\nAileen\nAurora\nCalista\nElaina\nEstrella\nFelicia\nFelicity\nHunter\nJosephine\nJudith\nJulissa\nMargarita\nSidney\nSusana\nTamara\nTatyana\nTayler\nTori\nAimee\nAlaina\nAraceli\nAshleigh\nAshlynn\nAvery\nAylin\nBreana\nEllie\nEmilee\nGraciela\nIrene\nJaden\nJaime\nLarissa\nLisette\nMarie\nMicaela\nAbby\nBrandi\nCarla\nDana\nDeja\nIliana\nKali\nLexi\nMaricela\nMarisela\nMelody\nNoemi\nPaula\nSarai\nSerina\nVirginia\nAlize\nAmaya\nAnne\nAnyssa\nAsia\nAspen\nBeatriz\nBlanca\nBrandy\nCarina\nClara\nDamaris\nEmely\nEstefania\nEva\nFrances\nHallie\nJaclyn\nJanelle\nJewel\nJustine\nMaddison\nMarcela\nNoelle\nRebeca\nSharon\nTessa\nTheresa\nAaliyah\nAlexandrea\nAlisa\nAnnika\nBarbara\nBrisa\nDestinee\nDevin\nEdith\nElla\nElyssa\nEricka\nFlor\nGalilea\nGillian\nHeaven\nJanae\nJaneth\nJessie\nJohanna\nJosie\nLucia\nMadelynn\nMallory\nMarlene\nNichole\nRegina\nRyan\nTia\nTianna\nYessenia\nYvette\nAbril\nAlina\nAliyah\nAllie\nAnnabelle\nBrianda\nCelina\nCristal\nDanitza\nDesirae\nGina\nGissel\nItzel\nJuanita\nKaley\nKasey\nKatlyn\nKiley\nLeilani\nMakena\nMarian\nMarianna\nPaloma\nSedona\nSkyler\nStephany\nSusan\nTalia\nTyler\nViridiana\nYadira\nAddison\nAlayna\nAlena\nAlysia\nAngie\nAntonia\nAshton\nAudra\nBelen\nCallie\nCamila\nCarolyn\nCharlotte\nDrew\nEden\nElissa\nGenevieve\nGianna\nGladys\nHayden\nJanette\nKarissa\nKaylie\nKaylyn\nKeely\nKianna\nMacy\nMadeleine\nMadyson\nMalia\nMc\nMeagan\nMelina\nMicah\nNotnamed\nOdalis\nParis\nPhoebe\nPriscila\nRhianna\nSarahi\nSavanah\nShyla\nSydnee\nTania\nTanya\nTaryn\nYolanda\nAbbey\nAdilene\nAlisha\nAlyson\nAmerica\nArielle\nAyleen\nBrynn\nCarlie\nConsuelo\nCorina\nDalia\nFrancisca\nLupita\nMaggie\nMarilyn\nMckayla\nNataly\nNizhoni\nOdalys\nRaina\nRoxanna\nRylie\nSasha\nShea\nThalia\nValentina\nYareli\nYulissa\nYvonne\nAlia\nAnita\nAshly\nBryana\nCatalina\nCiera\nCinthia\nDestiney\nDevyn\nDomonique\nDonna\nEliana\nElisabeth\nElyse\nFabiola\nFrida\nGriselda\nHelen\nJazmyn\nJuliette\nKacey\nKasandra\nKierra\nLucy\nMara\nMeredith\nMoriah\nNicolette\nNoelia\nReina\nRoxanne\nSariah\nStacy\nTierra\nTyra\nZoey\nAbbie\nAdamaris\nAdelina\nAlanna\nAlice\nAllyssa\nAnnie\nAyanna\nAyla\nBrittani\nBrooklynn\nCarol\nCelia\nCeline\nCharity\nCiarra\nCitlalli\nCora\nDevon\nEstefany\nFrancesca\nHillary\nIngrid\nIsis\nJoy\nJuliet\nKaila\nKalee\nKaleigh\nKelli\nKenia\nKenya\nKiersten\nLisbeth\nLizet\nLogan\nLourdes\nLucero\nMadisen\nMaricruz\nMaryjane\nNadia\nOlga\nPearl\nReanna\nRita\nRyann\nShandiin\nShelbie\nStacey\nYessica\nAilyn\nAiram\nAiyana\nAlycia\nAlysa\nAlyssia\nAnalicia\nAngelita\nAnika\nAnnette\nAnya\nAracely\nAubree\nBrianne\nCaitlynn\nCarlee\nCarrie\nChandler\nCzarina\nDariana\nDeandra\nDianna\nEmilie\nEve\nEvelin\nFiona\nGema\nGisell\nGracie\nHaleigh\nHarley\nHaylie\nIvana\nIvory\nJane\nJaquelin\nJayden\nJaylene\nJazlyn\nJenny\nJoselyn\nKailyn\nKalista\nKarli\nKarly\nKenzie\nKourtney\nKristy\nLaurel\nLayla\nLilly\nMadisyn\nMagdalena\nMaia\nMaira\nMariela\nMartina\nMisty\nMyah\nNidia\nReagan\nRobyn\nRosalinda\nRosario\nSaige\nShawna\nShyanne\nSimone\nSkye\nSonya\nStacie\nStefanie\nTatianna\nTeagan\nTess\nTiara\nWillow\nYamilet\nYaritza\nYasmeen\nAbigayle\nAcacia\nAdrienne\nAleah\nAlexsandra\nAlexys\nAnaya\nAnjelica\nAnn\nAnnalisa\nArely\nArleth\nAstrid\nBreann\nBrielle\nCali\nCalli\nCambria\nCara\nCassie\nChantel\nChelsey\nColleen\nDalila\nDallas\nDarby\nDayanara\nDeborah\nDora\nEliza\nElsa\nEunice\nGabriel\nHadley\nHalle\nHollie\nImani\nIrma\nIsela\nJacob\nJanessa\nJasmyn\nJayde\nJeanette\nJenifer\nJessika\nJhoana\nJocelyne\nJocelynn\nJoelle\nJulianne\nJustice\nKaelyn\nKarime\nKarlee\nKatia\nKaycee\nKellie\nKelsie\nKiera\nKristine\nKrysta\nKyleigh\nLeann\nLena\nLexie\nLianna\nLilianna\nLilliana\nLoren\nManuela\nMaren\nMarlee\nMickayla\nMontana\nNereida\nNora\nNorma\nPrecious\nPresley\nQuinn\nRegan\nRubi\nSavana\nSelina\nShay\nSianna\nSirena\nStevie\nTina\nUnique\nXimena\nYamilex\nAbbigail\nAbriana\nAlba\nAlex\nAliah\nAlly\nAmani\nAnabel\nAnabelle\nAnahy\nAnais\nAnisa\nArlene\nAubriana\nBrissa\nBrook\nCaleigh\nCaylee\nCecelia\nChantal\nChrista\nChyanne\nCiana\nClare\nCorinne\nDani\nDanika\nDayna\nDelia\nDelilah\nDestinie\nDylan\nEileen\nEmmalee\nEvangelina\nGeorgina\nGisel\nGlenda\nHaily\nHana\nIvette\nIvonne\nIzabella\nJacey\nJacklyn\nJadyn\nJalen\nJaycee\nJeniffer\nJosefina\nJoyce\nJuana\nKacie\nKalysta\nKari\nKarlie\nKatelin\nKathy\nKayleen\nKayley\nKaylynn\nKeeley\nKeila\nKeyla\nKorina\nKristi\nKyara\nLeandra\nLesli\nLilian\nLitzy\nMacey\nMaci\nMakaila\nMaranda\nMarley\nMeaghan\nMina\nNatalee\nNathalia\nNikki\nNubia\nParker\nPricila\nRayna\nRobin\nRochelle\nRosemary\nRoxana\nSally\nShaina\nShanelle\nSilvia\nSkyla\nSoledad\nStella\nToni\nTracy\nValarie\nVanesa\nVianey\nXochitl\nYulisa\nAdela\nAliza\nAmaris\nAmberly\nAnamaria\nAnnamarie\nAnnmarie\nAntoinette\nAreli\nAryanna\nAsha\nAshlin\nAubrie\nAyana\nBeatrice\nBetty\nBonnie\nBrandee\nBria\nBrieanna\nCaley\nCandace\nCarley\nCasandra\nCayla\nChase\nChasity\nChastity\nChristian\nChyna\nCitlali\nCodi\nConnie\nDanae\nDaphne\nDarian\nDayana\nDayanna\nDestany\nDestini\nDevan\nDiane\nEleanor\nElle\nEllen\nElvia\nEmber\nEryka\nFlora\nGeorgia\nGrecia\nGretchen\nHalie\nHazel\nIsabell\nJackie\nJacquelyn\nJaimie\nJesse\nJessi\nJesus\nJewell\nJill\nJoana\nJohana\nJoseline\nJovanna\nJulieta\nJulisa\nJustina\nKai\nKaia\nKalea\nKalie\nKallie\nKaycie\nKaytlynn\nKeanna\nKimberlee\nKirstin\nLacie\nLaila\nLaney\nLara\nLarisa\nLatasha\nLea\nLeanna\nLeanne\nLeia\nLeila\nLexus\nLia\nLiberty\nLilia\nLiseth\nLondon\nLynette\nLynn\nMacie\nMadilynn\nMagaly\nMaliyah\nMalorie\nMariam\nMarlena\nMattison\nMckinley\nMelinda\nMercy\nMichel\nMikyla\nMirella\nMitzi\nMykala\nMyra\nMyranda\nNautica\nNia\nPauline\nPilar\nPiper\nRachelle\nRamona\nSamara\nSelene\nShaelyn\nShanae\nShawntay\nShaylee\nSheila\nSheridan\nShiloh\nSky\nSuzette\nTonya\nTyanna\nTyla\nXiomara\nYailin\nYazmin\nYsenia\nZaida\nZulema\nEmily\nAshley\nSamantha\nAlexis\nJessica\nHannah\nMadison\nAlyssa\nJennifer\nBrianna\nTaylor\nVictoria\nElizabeth\nSarah\nAbigail\nLauren\nMaria\nEmma\nMegan\nSydney\nJasmine\nAndrea\nKayla\nVanessa\nDestiny\nHailey\nNicole\nSierra\nRachel\nStephanie\nAlexandra\nMichelle\nSavannah\nKimberly\nAmanda\nNatalie\nGrace\nAngelica\nAmber\nJacqueline\nMelissa\nOlivia\nLeslie\nAnna\nIsabella\nKaitlyn\nAngela\nSophia\nTrinity\nMorgan\nJulia\nMarissa\nAdriana\nAriana\nMackenzie\nRebecca\nAna\nDanielle\nJordan\nHaley\nKatherine\nNotnamed\nFaith\nMariah\nAlicia\nChloe\nSabrina\nSara\nBrooke\nKaylee\nAllison\nBriana\nDaniela\nDiana\nBailey\nJenna\nCassandra\nMaya\nShelby\nGabriela\nAlexa\nBrittany\nIsabel\nGabriella\nAlejandra\nGabrielle\nBreanna\nKatelyn\nKarina\nArianna\nEsmeralda\nJocelyn\nKylie\nYesenia\nTatum\nChristina\nDaisy\nJaqueline\nMia\nAlondra\nKarla\nZoe\nMelanie\nErika\nPaige\nCourtney\nAlexia\nVeronica\nBianca\nCynthia\nKaren\nLaura\nAngelina\nMadeline\nMakayla\nCheyenne\nValeria\nCaitlin\nJade\nJasmin\nJazmin\nAutumn\nEvelyn\nMary\nMiranda\nDesiree\nCarolina\nCrystal\nGuadalupe\nAmy\nCassidy\nMikayla\nKelsey\nMonica\nGiselle\nRiley\nKathryn\nSofia\nAlexandria\nCaitlyn\nKiara\nAudrey\nErin\nSerena\nCeleste\nHeather\nKatie\nClaire\nErica\nGenesis\nAngel\nApril\nNatalia\nBrenda\nLindsey\nMadelyn\nTiffany\nClaudia\nLillian\nSandra\nSavanna\nDominique\nHope\nKelly\nMckenna\nRuby\nAnahi\nCarmen\nKassandra\nKendra\nJazmine\nKatrina\nMckenzie\nMonique\nSelena\nBethany\nElena\nGloria\nLeah\nLily\nReyna\nAubrey\nBrooklyn\nClarissa\nIsabelle\nPaola\nSkylar\nBritney\nCatherine\nLitzy\nLizbeth\nAdrianna\nBrittney\nCaroline\nKylee\nMarisol\nMeghan\nRaquel\nShannon\nLindsay\nMargaret\nMariana\nMarina\nRosa\nViviana\nFernanda\nSummer\nAriel\nDenise\nKaitlin\nPriscilla\nRylee\nBrisa\nKate\nMichaela\nNancy\nPatricia\nEsperanza\nKennedy\nLydia\nPerla\nRebekah\nAmaya\nAnissa\nCecilia\nKyra\nMakenna\nMolly\nRenee\nAlana\nCameron\nCindy\nHanna\nNaomi\nNina\nSadie\nValerie\nBrenna\nCiara\nHaylee\nJada\nMercedes\nAaliyah\nFatima\nHolly\nJamie\nJoanna\nLesly\nLuz\nWendy\nCasey\nJordyn\nLiliana\nYasmin\nDakota\nDelaney\nEliana\nHayley\nItzel\nJuliana\nKristen\nMarisa\nPayton\nYvette\nDulce\nJaden\nKatelynn\nKiana\nLeticia\nMiriam\nAileen\nAvery\nDeanna\nGillian\nGisselle\nLesley\nTessa\nAbril\nAlissa\nAngelique\nAurora\nCierra\nHailee\nJacquelyn\nKyla\nNadia\nPeyton\nRuth\nSophie\nAbby\nAnnika\nAsia\nCharlotte\nChelsea\nChristine\nJulianna\nKendall\nKristina\nMikaela\nSidney\nAmelia\nAva\nBlanca\nCamryn\nCarla\nCarly\nDaniella\nJulissa\nLeilani\nMadeleine\nMarian\nMaritza\nMayra\nSerenity\nShayla\nSkyler\nVivian\nAlina\nAnastasia\nBaylee\nBryanna\nCristina\nEdith\nElisa\nIvy\nKara\nKassidy\nKathleen\nKirsten\nLauryn\nPaula\nRose\nTabitha\nYazmin\nAshlee\nBrandi\nDariana\nDestinee\nEllie\nJillian\nJosephine\nNoelia\nRachael\nShyanne\nSonia\nTara\nTatiana\nYasmine\nAliyah\nCamille\nDana\nHeidi\nJulie\nKailey\nKamryn\nLarissa\nLorena\nMakenzie\nMarlene\nMelody\nMya\nReina\nSalma\nTiana\nAlexus\nAlison\nAlma\nAraceli\nAshlyn\nAshlynn\nAylin\nBrandy\nCarolyn\nCielo\nDeja\nDiamond\nElise\nEmilee\nHallie\nJenny\nKaitlynn\nLuisa\nMartha\nMckayla\nPaulina\nSienna\nYamilet\nAlaina\nAllyson\nAshleigh\nAthena\nIris\nIsis\nJanet\nKailee\nKarissa\nKaycee\nKiley\nKristin\nLacey\nNichole\nTaryn\nTori\nAddison\nAmerica\nArlene\nCasandra\nCheyanne\nEmely\nEstrella\nGina\nHunter\nJustine\nKira\nLinda\nLisa\nMacy\nMadisyn\nMaggie\nMallory\nMargarita\nNatasha\nPhoebe\nRhiannon\nSage\nTeresa\nAlize\nAspen\nElla\nEstefania\nFrida\nGianna\nJackeline\nJanelle\nJayden\nJenifer\nJohanna\nLilly\nSydnee\nSylvia\nZoey\nAnnie\nAntonia\nBelen\nBrynn\nDamaris\nDesirae\nEden\nElisabeth\nEsther\nGenevieve\nIliana\nIvana\nKarlee\nKiersten\nKrista\nLexi\nMaricela\nMelina\nMicaela\nNayeli\nNikki\nRosemary\nShania\nTania\nTanya\nAlanna\nCarissa\nCecelia\nCiera\nCora\nCristal\nGeorgia\nGracie\nHaylie\nIrene\nJessie\nKali\nKaryme\nKiera\nKrystal\nLizeth\nLogan\nLucy\nMacey\nMarianna\nMarie\nSarahi\nSarai\nSavanah\nAbbigail\nAdilene\nAdrienne\nAlayna\nAnyssa\nAracely\nAyanna\nBeatriz\nCalista\nCarley\nCelina\nDeborah\nDenisse\nEmilia\nFlor\nHeaven\nJanae\nKaila\nKayleigh\nKaylie\nKelsie\nLayla\nMadelynn\nMadyson\nMalia\nMariela\nMarlen\nMeagan\nMeredith\nNoemi\nRaven\nReagan\nReanna\nSerina\nTamara\nTyler\nViridiana\nYamileth\nYessica\nAlisha\nAnika\nAnya\nBerenice\nBridget\nCayla\nCitlalli\nClara\nDestiney\nDevin\nEstefany\nEunice\nFrances\nHaleigh\nHana\nHarmony\nHayden\nIvanna\nJanessa\nJaquelin\nJazmyn\nJoselyn\nJuanita\nJudith\nKellie\nKianna\nLucero\nMadisen\nMarcella\nMarisela\nMireya\nNicolette\nPiper\nRocio\nRosalinda\nSilvia\nStephany\nTalia\nTayler\nThalia\nTheresa\nTia\nTianna\nVirginia\nWhitney\nYahaira\nYareli\nYaritza\nAlessandra\nAlexys\nAlisa\nAnne\nArleth\nBailee\nCatalina\nChantel\nDayana\nDelilah\nEileen\nElaina\nEva\nEve\nEvelin\nFrancesca\nGissel\nHailie\nHalle\nHarley\nHelen\nIvette\nIzabella\nJaida\nJaime\nJane\nJoana\nJoseline\nJosie\nKasandra\nKathy\nMacie\nMaia\nMaribel\nMichell\nMisty\nNoelle\nNora\nOdalis\nParis\nRosario\nSarina\nSasha\nScarlett\nShaylee\nSkye\nSonya\nSusan\nSusana\nVianey\nYvonne\nAimee\nAiyana\nAlena\nAlysa\nAnalisa\nAnnabelle\nAshton\nCali\nCallie\nCinthia\nElsa\nEricka\nGraciela\nGrecia\nIrma\nJocelyne\nJulianne\nKarli\nKatia\nKenia\nLaila\nLeila\nLitzi\nLizette\nMadalyn\nMaddison\nMakyla\nMonserrat\nMoriah\nNallely\nNataly\nPaloma\nPamela\nPrecious\nPresley\nRachelle\nShea\nWillow\nYadira\nAbbie\nAbrianna\nAlexandrea\nAliya\nAlyson\nAnalicia\nAngelita\nAngie\nAnjelica\nAnnette\nAyla\nBella\nBreana\nBriseida\nCandace\nCarina\nCassie\nCharity\nDaphne\nDonna\nDrew\nEliza\nEmilie\nEmmalee\nFabiola\nFelicia\nFelicity\nJaneth\nJaylene\nJoyce\nKatelin\nKatya\nKeely\nKelli\nKourtney\nKyleigh\nLena\nLesli\nLidia\nLilianna\nLilliana\nLisette\nMadilyn\nMara\nMarilyn\nOlga\nRegina\nRobyn\nRoxanna\nSally\nSelina\nSharon\nShayna\nStacy\nValentina\nYajaira\nYamile\nAdelina\nAiram\nAlia\nAllie\nAllyssa\nAlycia\nAnakaren\nAnaya\nAshli\nAubree\nAubrie\nAudra\nAzucena\nBeyonce\nBrianda\nBridgette\nBrielle\nCara\nCarol\nCarrie\nCharisma\nChasity\nDevyn\nEleanor\nEstefani\nHalie\nHelena\nHillary\nJesse\nJhoana\nJohana\nJuana\nKaley\nKatarina\nLeanna\nLexus\nLizet\nLluvia\nLondon\nLourdes\nLucia\nMaryann\nNathaly\nNayely\nNizhoni\nRandi\nRobin\nRylie\nSariah\nSedona\nShae\nShawna\nShelbie\nShyla\nSydnie\nTess\nTristen\nVanesa\nYessenia\nYolanda\nYuliana\nZoie\nAbbey\nAlexsandra\nAlice\nAnabel\nAreli\nArely\nArriana\nAryanna\nAshlie\nBobbie\nBrylee\nCelia\nChiara\nColleen\nCorina\nDafne\nDania\nDayna\nDelia\nDelicia\nDomonique\nDora\nDylan\nElissa\nElle\nGalilea\nHarlie\nJaiden\nJayla\nJazlyn\nJeniffer\nJessenia\nJewel\nJuliet\nJustina\nKarime\nKasey\nKayley\nKaylin\nKeyla\nLexie\nLisbeth\nLoren\nLyndsey\nMagdalena\nMaren\nMariafernanda\nMarlee\nMattie\nMelinda\nMelisa\nNatalee\nNikole\nOdalys\nPriscila\nRayna\nRebeca\nRegan\nRhea\nRochelle\nRyan\nRyleigh\nSarena\nShay\nSheridan\nShyann\nSusanna\nTatianna\nTiara\nUnique\nVianney\nXimena\nXochitl\nYoselin\nYulissa\nAcacia\nAdamaris\nAli\nAmbria\nAnamaria\nAnayeli\nAngelic\nAnisa\nAnn\nAnnalisa\nArielle\nAshly\nAshtyn\nAyana\nBerania\nBernadette\nBianey\nBonnie\nBreanne\nBrianne\nBrissa\nBritany\nBrook\nBryana\nBryce\nCailin\nCallista\nCarlie\nCeline\nChelsey\nCiarra\nCienna\nCitlali\nClare\nConsuelo\nCydney\nDanitza\nDarlene\nDestany\nDevon\nDezirae\nDiane\nDianna\nEbony\nEleana\nElisia\nEloisa\nElyse\nElyssa\nEssence\nEstella\nEvangelina\nGisell\nGladys\nGriselda\nGwyneth\nHanah\nHayleigh\nIsabela\nIsabell\nIsela\nIzabel\nJacquelin\nJadyn\nJaelyn\nJana\nJanell\nJanette\nJasmyne\nJaycee\nJaycie\nJayda\nJazmyne\nJesenia\nJessa\nJoceline\nJocelynn\nJoelle\nJolie\nJoselin\nJoy\nJustice\nKalista\nKallie\nKarly\nKatlyn\nKaya\nKenna\nKierra\nKilee\nKirstyn\nKristal\nKristine\nLacie\nLaney\nLaurel\nLeslye\nLiana\nLilian\nLyric\nMaeve\nMarbella\nMariadejesus\nMariaguadalupe\nMariam\nMarley\nMaryjane\nMaryssa\nMichele\nNadine\nNathalie\nNevaeh\nNia\nNidia\nNisa\nNoel\nNorma\nRaina\nRayanne\nReilly\nRiana\nRoxana\nSamara\nShantel\nSheila\nSiena\nStacey\nStar\nStevie\nStormy\nSuzette\nTanner\nTaya\nTerra\nVerania\nVerenice\nVivianna\nYamilex\nYaquelin\nAdeline\nAilyn\nAiyanna\nAlea\nAlex\nAlexi\nAllissa\nAlora\nAmari\nAmya\nAnahy\nAnais\nAnastacia\nAnessa\nAngeles\nAnita\nAniya\nAnnamarie\nAriah\nArizona\nAstrid\nAubry\nBobbi\nBrittani\nBriza\nCaitlynn\nCamila\nCaylee\nChantal\nChelsie\nCheryl\nCheyanna\nChrista\nChristiana\nCianna\nColette\nCori\nDalila\nDallas\nDelanie\nDesire\nDestinie\nDorothy\nElaine\nEmmy\nFiona\nGeraldine\nGiavanna\nGinger\nGisela\nHeidy\nHollie\nImani\nInez\nIran\nIvonne\nIzabelle\nJackelyn\nJailene\nJami\nJanice\nJanie\nJanine\nJayde\nJaylin\nJaylyn\nJaylynn\nJazlynn\nJessika\nJosefina\nJovana\nJuliette\nKaela\nKaelyn\nKalie\nKatharine\nKatheryn\nKathya\nKayleen\nKaylene\nKayli\nKaylynn\nKeanna\nKeara\nKeegan\nKelsea\nKenya\nKinsey\nLacee\nLaisha\nLaiza\nLeandra\nLeeann\nLeigha\nLia\nLiberty\nLila\nLilia\nLorraine\nLupita\nLynda\nMadilynn\nMaegan\nMarcela\nMariajose\nMariel\nMarisleysis\nMartina\nMaura\nMelany\nMirka\nMitzy\nMontana\nMyra\nNadya\nOralia\nPearl\nPrincess\nQuinn\nRianna\nRita\nRoxanne\nRubi\nRyann\nSaige\nSamanta\nSantana\nSavana\nSequoia\nShaina\nShealynn\nSkyla\nStefani\nSuzanne\nSydni\nTabatha\nTashina\nTehya\nTina\nToni\nTrina\nTristan\nVania\nWinter\nXiomara\nYamilette\nYanitza\nYenifer\nZaira\nAshley\nEmily\nAlexis\nMadison\nSamantha\nJessica\nHannah\nAlyssa\nElizabeth\nBrianna\nJennifer\nSarah\nVictoria\nTaylor\nMaria\nAndrea\nJasmine\nEmma\nMegan\nAbigail\nVanessa\nHailey\nLauren\nNicole\nIsabella\nDestiny\nStephanie\nGrace\nKayla\nNatalie\nSydney\nMichelle\nAlexandra\nRachel\nOlivia\nKaitlyn\nSavannah\nAnna\nChloe\nSophia\nJacqueline\nHaley\nSierra\nLeslie\nAngelica\nMelissa\nAriana\nAmber\nMorgan\nDanielle\nAmanda\nAlexa\nFaith\nJulia\nMackenzie\nMia\nAngelina\nTrinity\nAna\nAngela\nKatherine\nJordan\nKaylee\nAllison\nBriana\nDiana\nNotnamed\nIsabel\nMakayla\nAlicia\nCassandra\nGabriella\nArianna\nMariah\nMarissa\nJenna\nGabrielle\nKimberly\nDaniela\nKarla\nAlondra\nRebecca\nAdriana\nBrooke\nKylie\nSara\nZoe\nKatelyn\nBailey\nShelby\nEsmeralda\nJazmin\nAutumn\nGabriela\nTatum\nAlejandra\nBreanna\nEvelyn\nPaige\nVeronica\nAlexia\nCynthia\nLaura\nSabrina\nAlexandria\nMaya\nValeria\nDaisy\nMadeline\nJade\nKaren\nNatalia\nAngel\nCheyenne\nJocelyn\nAnahi\nCourtney\nMikayla\nIsabelle\nJasmin\nErin\nRiley\nChristina\nCrystal\nErika\nMckenna\nBrittany\nCaitlin\nKarina\nYesenia\nNayeli\nMiranda\nGuadalupe\nJazmine\nValerie\nBianca\nMary\nKathryn\nCeleste\nAshlyn\nKatie\nSofia\nBrenda\nClaire\nDesiree\nGiselle\nPaola\nAaliyah\nMya\nNaomi\nLeah\nLily\nErica\nKylee\nSerena\nWendy\nMariana\nMelanie\nMonica\nRylee\nAmy\nBrooklyn\nClaudia\nHope\nTiffany\nCaitlyn\nCarolina\nDenise\nDominique\nSelena\nAva\nCassidy\nJulianna\nKassandra\nRebekah\nNevaeh\nAdrianna\nSkylar\nFatima\nRaquel\nAudrey\nHeather\nJaqueline\nJordyn\nLiliana\nLillian\nMargaret\nMonique\nRosa\nSummer\nBethany\nDulce\nElena\nGenesis\nMarisol\nPriscilla\nClarissa\nJulissa\nKatrina\nLesly\nReyna\nRuby\nCatherine\nKate\nLizbeth\nAriel\nBrisa\nFernanda\nJillian\nJoanna\nJuliana\nKennedy\nMeghan\nMolly\nCindy\nKiana\nKiara\nKyra\nMadelyn\nPaulina\nPayton\nPerla\nCarmen\nHanna\nItzel\nKendra\nNancy\nPatricia\nCameron\nHayley\nKelsey\nLuz\nMarina\nCaroline\nChelsea\nKelly\nLitzy\nSavanna\nApril\nBrittney\nHolly\nKaitlin\nMakenna\nMayra\nAlissa\nAnissa\nAshlee\nAubrey\nBritney\nCecilia\nGianna\nJada\nKyla\nLindsey\nMckenzie\nPeyton\nAmaya\nAnastasia\nAylin\nBerenice\nDelaney\nGisselle\nHailee\nJayden\nJulie\nMercedes\nMiriam\nSerenity\nSophie\nTara\nAlison\nAvery\nCierra\nKristen\nNadia\nAbby\nAngelique\nBrenna\nCamryn\nEsperanza\nGracie\nKendall\nMaggie\nCristina\nEstrella\nJaiden\nMacy\nMaritza\nMelody\nTatiana\nAliyah\nAngie\nBryanna\nElise\nJamie\nKatelynn\nKira\nLindsay\nNoemi\nAmerica\nCharlotte\nDaniella\nElisa\nHaylee\nKaitlynn\nLayla\nMarisa\nMartha\nSage\nSandra\nTessa\nAmelia\nDakota\nIris\nKailey\nMichaela\nRose\nViviana\nYasmin\nAshleigh\nCamille\nCarly\nElla\nHallie\nKayleigh\nMikaela\nRachael\nTeresa\nAlana\nCarla\nJosephine\nLeticia\nMadeleine\nMelina\nRhiannon\nSadie\nAileen\nAnnabelle\nAthena\nCalista\nCheyanne\nCiara\nEva\nGloria\nGraciela\nJaden\nKathleen\nKrystal\nLucia\nLydia\nMaribel\nNatasha\nNina\nSonia\nTiana\nAlma\nAnnie\nAraceli\nAsia\nBaylee\nCristal\nDenisse\nDesirae\nDiamond\nEliana\nEmely\nFelicia\nJudith\nKasandra\nKristin\nLaila\nLeilani\nMakenzie\nMariela\nPaloma\nRegan\nRuth\nShea\nSienna\nTyler\nXimena\nYazmin\nAdilene\nAlina\nAracely\nCitlalli\nDaphne\nEdith\nFelicity\nHeaven\nIzabella\nJazmyn\nJohanna\nKamryn\nKenya\nLesley\nNataly\nOdalys\nShannon\nShayla\nVivian\nYvette\nAlexus\nAshlynn\nBelen\nCarissa\nDamaris\nEllie\nEvelin\nHalle\nHeidi\nIliana\nJohana\nKara\nNoelia\nNorma\nPaula\nYaire\nAurora\nBailee\nBlanca\nBrissa\nCelina\nDeanna\nDestinee\nEmilee\nEmilie\nHunter\nJanet\nJazlyn\nJustice\nKassidy\nLauryn\nMadyson\nMalia\nMarilyn\nMarlene\nNoelle\nNora\nPhoebe\nPiper\nReagan\nReina\nRenee\nTania\nTanya\nTheresa\nYadira\nYajaira\nYaritza\nAlessandra\nAreli\nArely\nBeatriz\nCamila\nCasandra\nChristine\nCielo\nDana\nEileen\nElisabeth\nEliza\nEstefania\nFrancisca\nJacquelyn\nKirsten\nLinda\nLourdes\nLucy\nMadisen\nMadisyn\nMallory\nMarley\nMicaela\nPriscila\nRaven\nRoxana\nSalma\nSarai\nSasha\nSheyla\nTamara\nTaryn\nTayler\nTori\nYamilet\nZoey\nAlayna\nAspen\nCarina\nDafne\nDanitza\nDayana\nDeja\nEmilia\nEsther\nFlor\nGrecia\nIvy\nJenny\nJustine\nKailee\nKiera\nKristina\nLilly\nLisa\nLizeth\nLluvia\nMeredith\nMonserrat\nNicolette\nNikki\nOdalis\nParis\nRebeca\nShyann\nSilvia\nSkyler\nThalia\nTia\nToni\nAlize\nAnayeli\nAnne\nAryanna\nBella\nCallie\nCelia\nEden\nFabiola\nFiona\nFrida\nHarmony\nIrene\nJadyn\nJayla\nJoana\nJoselyn\nJosie\nJuliette\nKaila\nKali\nKarime\nKenia\nLaisha\nLarissa\nLilliana\nLogan\nMadalyn\nMeagan\nMikaila\nMireya\nPamela\nPrecious\nSarina\nSharon\nSusana\nTabitha\nViolet\nVirginia\nViridiana\nYamileth\nYasmine\nYuliana\nAddison\nAimee\nAiyana\nAlaina\nAllyson\nAllyssa\nAshton\nAubree\nCarley\nCatalina\nCharity\nDelilah\nEstefany\nGeorgia\nGladys\nHayden\nJanelle\nJanessa\nJessie\nJovana\nKiley\nLacey\nLiberty\nLizette\nLucero\nLuisa\nMagaly\nMargarita\nMarlen\nNallely\nNayely\nRaina\nSariah\nSedona\nSidney\nSkye\nStacey\nVivianna\nAbigayle\nAinsley\nAlyson\nAnalisa\nAnnika\nAnyssa\nAria\nArlene\nBrandi\nCandace\nCitlali\nDalia\nDayanara\nElaina\nGissel\nHarley\nHelena\nImani\nIngrid\nIvette\nJacklyn\nJacquelin\nJane\nJaquelin\nJimena\nJolene\nKaleigh\nKayli\nKaylie\nKenna\nKeyla\nLeila\nLexie\nLexus\nLidia\nLilian\nLorena\nMacie\nMara\nMarian\nMaryjane\nNichole\nNubia\nReilly\nRoxanna\nRoxanne\nSaige\nSarahi\nSavana\nShania\nShyanne\nYolanda\nAdamari\nAlycia\nAlysa\nAnaya\nArlette\nAyanna\nBrandy\nBridget\nBrielle\nBrooklynn\nCarolyn\nCiera\nCitlally\nClara\nGema\nGillian\nHaylie\nIvanna\nJaidyn\nJaycee\nJolie\nJulisa\nKatarina\nKatlyn\nKeely\nKenzie\nKrista\nKyleigh\nMadelynn\nMaia\nMarie\nMarisela\nNathalie\nNia\nReanna\nRobyn\nSavanah\nShaylee\nSheila\nSylvia\nTalia\nYoselin\nAbbey\nAbril\nAdamaris\nAllie\nAnai\nAnnette\nAntoinette\nAnya\nArielle\nAyana\nBreana\nBrianne\nCandy\nCasey\nCayla\nChantal\nChasity\nCorinne\nElsa\nEricka\nEunice\nEve\nFrances\nGina\nGiovanna\nHaleigh\nJackeline\nJackelyn\nJoseline\nJoy\nKaela\nKarlee\nKaryme\nKasey\nKatia\nKayley\nKaylynn\nLisette\nLyric\nMariam\nMelany\nNizhoni\nRosario\nRyleigh\nShayna\nSheridan\nSkyla\nSusanna\nTyra\nWhitney\nYarely\nYulissa\nAilyn\nAisha\nAlanna\nAlba\nAliana\nAliza\nAnais\nAnnalisa\nAnnalise\nAntonia\nAubrie\nAyleen\nAzul\nCara\nCarli\nCarlie\nCarol\nCharlize\nChrista\nCinthia\nCitlaly\nCora\nCorina\nDeborah\nDestiney\nDevin\nElaine\nGenevieve\nIsabela\nItalia\nJasmyn\nJayde\nJazmyne\nJenifer\nJhoana\nJovanna\nKaelyn\nKatelin\nKayleen\nKeila\nKiersten\nLesli\nLexi\nMacey\nMadilyn\nMagdalena\nMarcella\nMaricela\nMckayla\nMelinda\nMira\nMontana\nNyah\nPresley\nRocio\nRyann\nRylie\nSandy\nSerina\nShawna\nSonya\nStephany\nStevie\nSusan\nSydnee\nSydni\nTeagan\nTierra\nTristan\nVianney\nXiomara\nYareli\nAbbigail\nAdrienne\nAlena\nAlly\nAmari\nAnika\nAnisa\nAriadna\nArleth\nAryana\nAzucena\nBarbara\nBrianda\nBritany\nBrynn\nCarrie\nCarson\nCharisma\nCheryl\nChristiana\nDalila\nDavina\nDeana\nDesire\nDevon\nDina\nDorothy\nEdna\nElexis\nEmmalee\nFrancesca\nGeorgina\nGissell\nHana\nHelen\nIlse\nIreland\nIrlanda\nIsis\nIvana\nIzabelle\nJaclyn\nJanette\nJanice\nJaquelyn\nJeanette\nJuanita\nJulianne\nJulieta\nKaia\nKarely\nKathy\nKaylah\nKaylin\nLaurel\nLeanna\nLia\nLiana\nMarla\nMaryann\nMercedez\nMichele\nMyah\nOsiris\nPearl\nRaegan\nReese\nRosalinda\nRosemary\nSherlyn\nSimone\nStacy\nStella\nTatianna\nTianna\nUnique\nVanesa\nYessenia\nYulianna\nZoie\nAbigale\nAbriana\nAlexandrea\nAlia\nAlice\nAlisha\nAmara\nAnalicia\nAnastacia\nAngeles\nAngelika\nAngelita\nAnita\nArmida\nAsha\nAshly\nAstrid\nAviana\nAyla\nBelle\nBeyonce\nBridgette\nBriseyda\nBrook\nBryana\nBryce\nBryn\nCandice\nCecelia\nChantel\nCharlene\nChelsey\nCherish\nClare\nColette\nColleen\nDanae\nDanika\nDevan\nDevyn\nDonna\nDora\nDrew\nEbony\nEleanor\nElianna\nElyse\nEmber\nGemma\nGiana\nGriselda\nGwendolyn\nHailie\nIdalia\nIlianna\nIsela\nJacey\nJayda\nJennyfer\nJewel\nJoelle\nJosette\nJuana\nJuliet\nKaley\nKarissa\nKarli\nKaya\nKelsea\nKelsi\nKelsie\nKendal\nKianna\nKori\nKourtney\nLacy\nLilith\nLorenia\nMadysen\nMaeve\nMaranda\nMarianna\nMariel\nMilagros\nMirka\nMoriah\nMykayla\nMylee\nMyra\nNathaly\nNidia\nNikole\nNohemi\nPaisley\nParker\nPenelope\nPilar\nPrisila\nQuinn\nRachelle\nRamona\nRayna\nRhianna\nRosana\nRyan\nRylan\nScarlet\nSelina\nShayne\nSheccid\nShirley\nShyla\nSky\nSonja\nSuzette\nTatyana\nTracey\nValentina\nVianey\nXochitl\nYahaira\nYamilex\nYaneli\nYaquelin\nYuridia\nAbbie\nAbrianna\nAcacia\nAleah\nAlejandrina\nAlexys\nAlianna\nAliya\nAlli\nAlyna\nAlynna\nAlysia\nAlyssia\nAmya\nAnabelle\nAnali\nAnjelica\nAnn\nAnnabella\nAnneliese\nArianne\nAriza\nArrianna\nAshlin\nBetsy\nBillie\nBobbi\nBreann\nBreeanna\nCampbell\nCassie\nCeanna\nCharli\nCharlie\nChastity\nChelsie\nChiara\nChristian\nCiarra\nDania\nDanna\nDariana\nDeisy\nDennise\nDianna\nElia\nElle\nElvia\nElysia\nEmerald\nEryn\nEstefani\nFranchesca\nGisel\nGisell\nGretchen\nHaven\nHeidy\nHillary\nIrma\nIvonne\nJahaira\nJaida\nJailene\nJailyn\nJalyn\nJanae\nJanna\nJaylen\nJaylin\nJayna\nJesse\nJessenia\nJoan\nJoceline\nJorden\nJordin\nJoselin\nKacey\nKacie\nKami\nKari\nKarlie\nKeeley\nKeira\nKellie\nKristal\nKristine\nKyndra\nLana\nLaney\nLea\nLeann\nLeslye\nLila\nLilia\nLilianna\nLisbeth\nLorraine\nLuna\nLupita\nLyla\nLynette\nMaegan\nMagali\nMakena\nMalaya\nMariadelcarmen\nMaricella\nMarisella\nMarlee\nMason\nMelisa\nMelodie\nMicah\nMontserrat\nNadine\nNatali\nNoel\nOctavia\nOlga\nPaityn\nPayson\nQuincy\nRaelynn\nRayanne\nRena\nRobin\nRochelle\nRosie\nSabina\nSally\nSamara\nSamaria\nSantana\nSaylor\nSelene\nSequoia\nShae\nShaylynn\nShiann\nSiena\nSoledad\nSoraya\nSydnie\nTamia\nTina\nVianca\nYara\nYessica\nYulisa\nYvonne\nEmily\nAshley\nAlexis\nSamantha\nMadison\nAlyssa\nHannah\nJennifer\nEmma\nIsabella\nJessica\nElizabeth\nBrianna\nMaria\nAbigail\nLauren\nSarah\nJasmine\nVictoria\nTaylor\nMia\nAndrea\nHailey\nOlivia\nMegan\nKayla\nStephanie\nRachel\nGrace\nSydney\nNatalie\nMichelle\nAngelina\nAlexandra\nSophia\nChloe\nSavannah\nNicole\nVanessa\nDestiny\nKimberly\nMelissa\nLeslie\nAmanda\nDaniela\nFaith\nJacqueline\nAnna\nHaley\nKaitlyn\nAriana\nBrooke\nAngela\nEvelyn\nMorgan\nJulia\nSierra\nAlexa\nAlondra\nArianna\nKatherine\nIsabel\nCassandra\nGabriella\nAngelica\nValeria\nDiana\nTrinity\nAlicia\nMarissa\nLizbeth\nJordan\nPaige\nKylie\nMelanie\nKaylee\nAna\nSara\nAmber\nKarla\nMackenzie\nTatum\nZoe\nBriana\nSofia\nAaliyah\nAngel\nJocelyn\nAdriana\nMaya\nAlexia\nGabriela\nJade\nAllison\nDanielle\nRiley\nMakayla\nAlejandra\nMadeline\nDaisy\nJenna\nBianca\nKatelyn\nAudrey\nSabrina\nEsmeralda\nGabrielle\nVeronica\nAlexandria\nRebecca\nAutumn\nKarina\nMary\nChristina\nJasmin\nIsabelle\nJazmin\nMariah\nMikayla\nCynthia\nYesenia\nCourtney\nErin\nBailey\nNevaeh\nKaren\nLaura\nMariana\nNotnamed\nShelby\nBreanna\nKatie\nRylee\nAmy\nLily\nCeleste\nCrystal\nFernanda\nGenesis\nGiselle\nCheyenne\nKassandra\nKathryn\nCarolina\nJordyn\nLeah\nPaulina\nDesiree\nErika\nLiliana\nMolly\nValerie\nAshlyn\nMiranda\nNatalia\nPaola\nSerena\nBrenda\nElena\nJamie\nRuby\nAva\nJazmine\nLindsey\nAmelia\nAvery\nCassidy\nGuadalupe\nKennedy\nMonica\nReyna\nKelly\nNaomi\nPriscilla\nCaitlin\nCaroline\nKylee\nMonique\nAubrey\nCaitlyn\nErica\nJaden\nMya\nAriel\nCatherine\nClaire\nElla\nJuliana\nSummer\nJada\nHeather\nJillian\nNayeli\nEllie\nItzel\nJulissa\nMckenna\nSavanna\nTiffany\nAnahi\nGloria\nJoanna\nVivian\nBrooklyn\nCecilia\nGracie\nJaqueline\nMaritza\nNancy\nPerla\nRosa\nWendy\nDelaney\nHope\nJulianna\nKelsey\nRaquel\nRebekah\nSkylar\nAdrianna\nApril\nAraceli\nFatima\nLillian\nAmerica\nElise\nSadie\nCierra\nDominique\nDulce\nEsperanza\nKatrina\nKira\nKristen\nMadelyn\nMercedes\nSerenity\nViviana\nAnastasia\nBrittany\nDenise\nIris\nKate\nNadia\nSophie\nAbby\nClaudia\nKiara\nMakenzie\nSienna\nBryanna\nCarla\nClarissa\nLeticia\nLitzy\nMarisol\nPatricia\nSelena\nXimena\nYasmin\nHaylee\nJayden\nKailey\nKiana\nMckenzie\nPayton\nAlana\nAmaya\nCarmen\nHanna\nHolly\nMiriam\nReagan\nTamara\nAliyah\nAngelique\nBrisa\nCamryn\nJosephine\nKaitlin\nLesly\nMakenna\nAshlee\nBethany\nGianna\nHayley\nKendall\nLeilani\nLydia\nMarisa\nMeghan\nRachael\nSandra\nAlina\nAllyson\nAlma\nAracely\nAshleigh\nBrittney\nEmilee\nKathleen\nLayla\nLizeth\nMelody\nMichaela\nBritney\nCristina\nKyla\nLinda\nMacy\nMelina\nRylie\nAlissa\nCameron\nCamila\nDaniella\nHalle\nJaneth\nJulie\nKatelynn\nKyra\nLindsay\nLuz\nMargaret\nMarlene\nNatasha\nNina\nTiana\nZoey\nAshlynn\nChristine\nCindy\nDayana\nEstefania\nHailee\nHeidi\nKendra\nKrystal\nMikaela\nRenee\nTara\nTeresa\nAshanti\nAthena\nCasey\nChelsea\nDana\nGisselle\nHayden\nJanet\nMayra\nRegan\nAimee\nAlison\nAnnabelle\nAnnika\nBrandy\nBrooklynn\nCamille\nCiara\nDanna\nDenisse\nEmely\nEstrella\nKiley\nLexi\nLilly\nMariela\nPeyton\nShannon\nSonia\nAddison\nAileen\nAlaina\nAnnette\nBlanca\nCasandra\nDakota\nEliana\nElisa\nEliza\nIzabella\nJacquelyn\nJadyn\nJimena\nJudith\nKristina\nMarina\nMartha\nNataly\nSarahi\nSasha\nTessa\nYadira\nYareli\nAnnie\nBridget\nDamaris\nDelilah\nDestinee\nDonna\nEsther\nFelicity\nGina\nJanelle\nJohanna\nJoselyn\nKirsten\nLisa\nMadeleine\nMaggie\nMaribel\nMarie\nRaven\nSage\nShayla\nTalia\nYvette\nAlexus\nArely\nAsia\nAurora\nAylin\nBella\nBreana\nBrynn\nCalista\nDiamond\nEdith\nJaiden\nKailee\nKaitlynn\nKaya\nMireya\nRhiannon\nTaryn\nViolet\nYamilet\nYasmine\nYazmin\nYuliana\nArlette\nCallie\nClara\nDeanna\nEden\nEva\nIliana\nIrene\nKali\nKristin\nLacey\nLauryn\nLorena\nMallory\nNoelia\nSusana\nTabitha\nTania\nTheresa\nTori\nYamileth\nYulissa\nAbbey\nAbril\nAlessandra\nAngie\nAnika\nAnissa\nBailee\nBelen\nBerenice\nFabiola\nJaelyn\nKaia\nKara\nKenia\nKianna\nLarissa\nLucy\nMadyson\nNeida\nNoelle\nSalma\nSarai\nArleth\nCarissa\nCarly\nCharlotte\nDayanara\nEvelin\nGenevieve\nGraciela\nGrecia\nJazmyn\nJustice\nJustine\nKaila\nKassidy\nKayleigh\nLaila\nLexus\nLilian\nLogan\nMarilyn\nMonserrat\nReese\nRoxana\nRyan\nSariah\nSedona\nSkyler\nSylvia\nYajaira\nAlanna\nAlayna\nAria\nAyanna\nBaylee\nBrandi\nBrenna\nCristal\nEileen\nEve\nFrancesca\nFrida\nHeaven\nIvy\nJanae\nJazlyn\nJenny\nJoseline\nJosie\nJoy\nJuliette\nKaelyn\nKamryn\nKaylie\nKenya\nLesley\nLizette\nParis\nPiper\nRose\nSavanah\nShea\nSusan\nTatiana\nTeagan\nYvonne\nAnnabella\nAnya\nAnyssa\nArlene\nAubrie\nAyleen\nBeatriz\nCarlie\nCelina\nCielo\nCitlaly\nEmilie\nFlor\nGalilea\nGemma\nGeorgina\nHelena\nIsis\nIvanna\nJaidyn\nKaiya\nKarissa\nKasandra\nLaisha\nLeila\nMadisyn\nMalia\nMarisela\nMckayla\nPriscila\nRachelle\nShyanne\nTayler\nTia\nValentina\nZoie\nAliya\nAllie\nAlyson\nAmara\nAnnalisa\nAyla\nCara\nChantal\nCitlali\nDania\nDesirae\nDestiney\nEleanor\nGillian\nGiovanna\nHallie\nIsabela\nJenifer\nKeila\nKeyla\nLila\nLilliana\nLisbeth\nLluvia\nMarianna\nMaricela\nMarley\nMiah\nNoemi\nOdalys\nPilar\nRosario\nRyleigh\nSandy\nSelene\nShania\nStephany\nTanya\nWhitney\nWillow\nYaquelin\nYaritza\nYoselin\nAbbie\nAnabelle\nAniya\nAnnalise\nAspen\nAzucena\nCecelia\nCiera\nDalia\nDanae\nDanitza\nDavina\nElyse\nEstefany\nHilda\nHunter\nJaclyn\nJoana\nJoselin\nJuliet\nKarime\nKyleigh\nLaurel\nLea\nLeanna\nLena\nLiana\nLiberty\nLuisa\nMadilyn\nMadisen\nMaricella\nMicaela\nNadine\nNizhoni\nPaloma\nPaula\nRayna\nRegina\nRocio\nSelina\nThalia\nTiara\nVirginia\nYolanda\nAbbigail\nAdamaris\nAlize\nAllyssa\nAlycia\nAlysha\nAnalisa\nAnaya\nAryana\nCarlee\nCarolyn\nCatalina\nCeline\nCora\nDanika\nDaphne\nDarlene\nDeja\nEstefani\nEunice\nFrances\nGeorgia\nHailie\nHarley\nHaven\nIrma\nIvana\nJanette\nJaquelin\nJayda\nJohana\nJuanita\nKarely\nKaryme\nKasey\nKatelin\nKenzie\nKiersten\nMaddison\nMaren\nMargarita\nMarian\nMaryjane\nNayely\nPenelope\nPhoebe\nPrecious\nPrincess\nRaina\nRebeca\nReina\nRianna\nRita\nRyann\nSavana\nShaylee\nSidney\nStacy\nSydnee\nTaya\nTina\nYessenia\nZaida\nAdamari\nAdilene\nAiram\nAlex\nAlisa\nAlisha\nAmaris\nAnalicia\nAnisa\nAreli\nArielle\nAshly\nAshton\nAubree\nAzul\nBeyonce\nBrianda\nCaitlynn\nCali\nCandice\nCarina\nCinthia\nClare\nDafne\nDayanna\nDevon\nDevyn\nElisabeth\nElysia\nEmelia\nEricka\nFelicia\nGissel\nHaleigh\nIngrid\nIvette\nIzabel\nJanice\nJayde\nJeanette\nJessie\nJolene\nJulianne\nKaela\nKatlyn\nKaylyn\nKeely\nKirstin\nKrista\nLana\nLupita\nMacey\nMacie\nMakena\nMaliyah\nMelisa\nMichele\nMontserrat\nNichole\nNicolette\nPresley\nReilly\nRubi\nRuth\nSamara\nShandiin\nShayna\nSheridan\nSheyla\nSkyla\nSonya\nTianna\nTyler\nYazmine\nYessica\nAidan\nAilyn\nAlysia\nAnais\nAnnamarie\nAnne\nArabella\nAriella\nAryanna\nAstrid\nAyesha\nBarbara\nBelinda\nBrianne\nBrielle\nBriseida\nBryana\nCarley\nCarol\nCelia\nCharlize\nChelsey\nChrista\nCianna\nDalilah\nDani\nDariana\nDora\nElaina\nElaine\nEmili\nEmilia\nEvelynn\nFiona\nFrancisca\nGeneva\nGia\nGwendolyn\nHana\nHaylie\nHelen\nJackie\nJacquelin\nJaime\nJane\nJanessa\nJaquelyn\nJasmyn\nJaycee\nJayla\nJaylynn\nJessika\nJocelynn\nJordin\nKari\nKarli\nKarly\nKatarina\nKaycee\nKayli\nKaylin\nKaylynn\nKeara\nKendal\nKeren\nKiera\nKierra\nKrysta\nLeann\nLeslye\nLianna\nLilianna\nLola\nMadysen\nMarcela\nMarlee\nMeagan\nMelany\nMelinda\nNailea\nNathaly\nNelly\nNereida\nNikki\nPamela\nQuinn\nRobyn\nRosalie\nSaige\nSarina\nSayra\nScarlet\nScarlett\nSerina\nSharon\nShawna\nSkye\nSkylee\nStella\nTreasure\nVanesa\nVianey\nViridiana\nYadhira\nYahaira\nAcacia\nAddyson\nAdeline\nAislinn\nAiyana\nAlani\nAlena\nAlexzandra\nAlia\nAlice\nAlivia\nAliza\nAlora\nAlysa\nAmalia\nAneesa\nAnjelica\nAnn\nAntoinette\nArden\nArriana\nAshtyn\nAudra\nBrylee\nBryn\nCailee\nCassie\nCecily\nCelestina\nCharity\nCheyanne\nDemi\nDevin\nDezirae\nDolores\nEbony\nEdna\nElexis\nElissa\nElle\nElliana\nElsa\nElvia\nEmerald\nEmmalee\nEvalyn\nEvangelina\nGissell\nHalie\nHazel\nIreland\nIsabell\nIsela\nJackeline\nJayleen\nJaylene\nJazlynn\nJoann\nJolie\nJuana\nKacie\nKai\nKaleigh\nKarlee\nKarolina\nKathy\nKatia\nKatya\nKaytlin\nKelsie\nKenna\nKimberlin\nKristy\nLacie\nLeandra\nLeilany\nLesli\nLexie\nLexis\nLilia\nLillianna\nLitzi\nLizbet\nLucero\nLucia\nMagali\nMaia\nMarcella\nMariajose\nMariel\nMeadow\nMelani\nMeredith\nMicayla\nMilagros\nMonet\nMyra\nNatalee\nNaydelin\nNia\nNikita\nNoor\nNubia\nNya\nParker\nPearl\nPhoenix\nPricilla\nRaegan\nRayne\nRobin\nRochelle\nSalina\nShauna\nSiera\nSilvia\nSoraya\nStefani\nTea\nUnique\nXochitl\nYanitza\nZariah\nAbigayle\nAdelina\nAdrienne\nAinsley\nAkira\nAlaysia\nAleena\nAlexcia\nAlexsandra\nAliah\nAliana\nAlly\nAmani\nAmari\nAmbria\nAmya\nAnai\nAnessa\nAngeles\nAngelic\nAniah\nAntonia\nArleen\nAundrea\nAyana\nBeth\nBridgette\nBrooklynne\nCailyn\nCamilla\nCarli\nCassady\nCayla\nCaylee\nCharisma\nChasity\nChristiana\nChristianna\nChristy\nCinthya\nCitlalli\nConsuelo\nCorrina\nCydney\nDaija\nDallas\nDanica\nDasia\nDestyni\nDianna\nDylan\nElianna\nElicia\nEllen\nEmber\nEstephanie\nGiana\nGiavanna\nGisel\nGisela\nGisell\nGriselda\nHaili\nHarlie\nHayle\nHolland\nIdaly\nItzayana\nJaida\nJaide\nJana\nJanie\nJaylee\nJaylin\nJaylyn\nJayna\nJazmyne\nJesenia\nJessi\nJhoana\nJisselle\nJocelyne\nJodi\nJosefina\nJoyce\nJustyce\nKalia\nKallie\nKambria\nKarisma\nKaylene\nKeana\nKeanna\nKenisha\nKennady\nKierstyn\nKori\nKristal\nKylah\nLara\nLaysha\nLeyla\nLina\nLisette\nLizet\nLizzette\nLoren\nLourdes\nLuna\nLyndsey\nMaci\nMadelynn\nMagaly\nMagdalena\nMaisy\nMariadelcarmen\nMariadelosang\nMariafernanda\nMariaguadalupe\nMarlen\nMattie\nMelannie\nMelia\nMerari\nMicah\nMikala\nMiracle\nMitzy\nMoriah\nMyah\nMyranda\nNallely\nNathalia\nNaya\nNicolle\nNoelani\nNuvia\nNyah\nOdalis\nPaisley\nRaylynn\nReanne\nReece\nRosalinda\nRosemary\nRosie\nRosita\nRowan\nRylin\nSaray\nShaelyn\nShakira\nShealyn\nSheila\nShelbie\nShyla\nSimone\nSirena\nStevie\nSymone\nTamika\nTammy\nTeresita\nTracy\nTriniti\nVianney\nWynter\nYaire\nYara\nYarely\nYasmeen\nZenaida\nZulema\nEmily\nEmma\nAshley\nAlexis\nAlyssa\nSamantha\nIsabella\nMadison\nAbigail\nHannah\nElizabeth\nJessica\nJennifer\nVictoria\nBrianna\nMaria\nSarah\nOlivia\nGrace\nSophia\nAndrea\nHailey\nTaylor\nJasmine\nNatalie\nLauren\nMia\nKayla\nStephanie\nAlexa\nChloe\nSavannah\nAlexandra\nMegan\nVanessa\nLeslie\nKaitlyn\nSydney\nMichelle\nAngelina\nKimberly\nNicole\nAriana\nDestiny\nMackenzie\nFaith\nTrinity\nDaniela\nRachel\nMorgan\nBrooke\nAnna\nMelissa\nAmanda\nPaige\nAlondra\nArianna\nJocelyn\nAngelica\nEvelyn\nGabriela\nKarla\nMarissa\nDiana\nAngela\nKylie\nLizbeth\nJordan\nKaylee\nMelanie\nGabriella\nSierra\nKatelyn\nMariah\nAdriana\nBriana\nJacqueline\nMaya\nAlejandra\nValeria\nAva\nMakayla\nIsabel\nAlexia\nElla\nJulia\nTatum\nAna\nSofia\nHaley\nJade\nAlicia\nKatherine\nCassandra\nSara\nZoe\nJazmin\nJenna\nDaisy\nRebecca\nAllison\nKaren\nBianca\nMadeline\nAmber\nAmy\nBailey\nKarina\nRiley\nAutumn\nEsmeralda\nLily\nShelby\nAaliyah\nKylee\nDanielle\nGabrielle\nGiselle\nIsabelle\nMya\nSabrina\nBrooklyn\nBreanna\nNatalia\nLeah\nNevaeh\nCeleste\nAngel\nAvery\nJordyn\nJuliana\nKatie\nVeronica\nAudrey\nLillian\nAlexandria\nNaomi\nValerie\nCourtney\nGuadalupe\nKassandra\nLaura\nMary\nCrystal\nKathryn\nLiliana\nPerla\nRylee\nReyna\nAmelia\nCarolina\nAlana\nAmaya\nAubrey\nGenesis\nRuby\nDesiree\nFatima\nMiranda\nAriel\nChristina\nFernanda\nAdrianna\nCynthia\nKate\nMadelyn\nMariana\nNotnamed\nErin\nJada\nMonique\nPriscilla\nClaudia\nJasmin\nMarisol\nMikayla\nXimena\nYesenia\nCatherine\nErika\nJazmine\nJulianna\nKiara\nLindsey\nMonica\nAliyah\nMckenna\nRosa\nTiffany\nAshlyn\nCheyenne\nGianna\nSadie\nBrenda\nCamila\nElena\nJillian\nPaulina\nRebekah\nCaroline\nDenise\nHaylee\nJamie\nKristen\nNadia\nPayton\nSerenity\nVivian\nCaitlyn\nMckenzie\nAbby\nCarmen\nDulce\nGracie\nHope\nKennedy\nLeilani\nMolly\nSandra\nSerena\nYasmin\nAnahi\nClaire\nSummer\nAddison\nDelaney\nEsperanza\nItzel\nKailey\nKendall\nLydia\nMakenna\nNayeli\nBrenna\nJaqueline\nKelly\nSavanna\nTatiana\nWendy\nAileen\nAmerica\nApril\nCassidy\nEllie\nFrida\nKendra\nMaritza\nMercedes\nAnissa\nCaitlin\nCecilia\nCierra\nCristina\nJaden\nJayden\nJoanna\nJulissa\nKyla\nNancy\nParis\nHeather\nJadyn\nJimena\nMeghan\nSkylar\nViviana\nZoey\nCindy\nClarissa\nElise\nMakenzie\nPaola\nAlize\nEva\nPeyton\nSophie\nAracely\nBryanna\nEliana\nKatelynn\nLesly\nRaquel\nTania\nAngelique\nErica\nGloria\nKyra\nSage\nAurora\nBrittney\nDanna\nHanna\nIris\nJulie\nKira\nLayla\nMayra\nRylie\nSarai\nAlma\nAshlynn\nBrittany\nDaniella\nHayden\nJoselyn\nKatrina\nKiana\nLeila\nMarlene\nMelody\nNatasha\nRaven\nAlison\nAnastasia\nAraceli\nAshlee\nAthena\nBethany\nBrynn\nCarla\nChelsea\nEvelin\nHeaven\nIzabella\nKelsey\nMireya\nPatricia\nReagan\nSelena\nShayla\nBella\nBritney\nCharlotte\nDayanara\nDenisse\nEliza\nGisselle\nHeidi\nJaiden\nLexi\nLindsay\nLisa\nMacy\nMarisa\nNataly\nPamela\nAnnabelle\nBelen\nDana\nGrecia\nKara\nKaryme\nLeticia\nMelany\nTaryn\nTiana\nYazmin\nAlissa\nArely\nAyanna\nCiara\nDesirae\nElisa\nHayley\nJosephine\nKaitlin\nKiley\nKrystal\nLesley\nLucy\nMargaret\nMartha\nNina\nShannon\nTeresa\nYuliana\nAinsley\nAngie\nAnika\nAnnika\nDakota\nDayana\nEden\nEmilia\nEstrella\nGenevieve\nHelen\nKathleen\nLarissa\nLilly\nLinda\nLuz\nMarina\nMiriam\nReese\nRose\nTalia\nBrisa\nDelilah\nHailee\nHalle\nIsabela\nJanelle\nKamryn\nSasha\nValentina\nYadira\nAlaina\nArleth\nBeatriz\nCamryn\nCarly\nCheyanne\nChristine\nDaphne\nDominique\nJudith\nKassidy\nKaylie\nKeyla\nLaila\nLitzy\nLizeth\nMaggie\nMalia\nNoemi\nYamileth\nYaritza\nAlayna\nAnaya\nAngeles\nArlette\nAshleigh\nAsia\nAylin\nCadence\nCarissa\nCristal\nElaina\nEmely\nGraciela\nJaneth\nJayda\nJazmyn\nJenifer\nKenia\nKirsten\nLia\nLogan\nLorena\nMikaela\nNizhoni\nNoelle\nPriscila\nYessenia\nAdilene\nAllie\nAspen\nCamille\nCasandra\nEileen\nGalilea\nHarley\nHolly\nJanessa\nKali\nKasandra\nKrista\nMadyson\nMallory\nMaribel\nMckayla\nMelina\nMichaela\nPaula\nPresley\nRhiannon\nSedona\nStephany\nTabitha\nTessa\nYasmine\nAbril\nAlanna\nAlexus\nAlice\nAllyson\nArlene\nAryanna\nBerenice\nBlanca\nBridget\nClara\nJacquelyn\nMargarita\nMariela\nRyan\nShania\nSidney\nSienna\nThalia\nTia\nAimee\nAlina\nAnisa\nAnyssa\nBaylee\nDeanna\nDiamond\nDylan\nElisabeth\nEsther\nHallie\nIliana\nIsis\nJustice\nKaitlynn\nKarissa\nKendal\nKyleigh\nLaisha\nLilia\nLilian\nMadalyn\nMarian\nNichole\nPaloma\nPiper\nRocio\nRyleigh\nSusan\nTatyana\nAbbey\nAlessandra\nAlisha\nAlyson\nAnnie\nAnya\nBarbara\nBrandi\nBrielle\nEstefania\nJaedyn\nJoana\nJustine\nKailee\nKayden\nKayleigh\nKenya\nKristina\nLacey\nLaci\nLiana\nLucia\nLuisa\nMarianna\nMarisela\nMaryjane\nNia\nNoelia\nNora\nPhoebe\nRebeca\nSamara\nSherlyn\nSimone\nSkyler\nTara\nWhitney\nWillow\nYvette\nAiyana\nAlena\nAlisa\nAlly\nAreli\nBrandy\nCalista\nCallie\nCarina\nDestinee\nElle\nElyse\nEmilie\nFelicia\nHailie\nHaven\nHaylie\nJaidyn\nJanet\nJaquelin\nKasey\nKaylin\nLluvia\nMaci\nMiah\nNoel\nRegina\nSarahi\nSavanah\nSelina\nShea\nTori\nVanesa\nViolet\nYahaira\nAidan\nAlexys\nAnne\nAriadna\nAriza\nAubree\nCandace\nCharity\nCielo\nDalia\nDanitza\nDeja\nEleanor\nEmilee\nGriselda\nHazel\nHeidy\nIvy\nJoslyn\nKailyn\nKarely\nKarime\nKeira\nLana\nLexus\nLilianna\nLillianna\nLisbeth\nLizette\nMaddison\nMadelynn\nMaia\nMarie\nMarley\nMeagan\nMicaela\nMonserrat\nPenelope\nRachael\nRegan\nRenee\nRoxanne\nRuth\nSariah\nSkye\nSonia\nStella\nSydnee\nTamara\nTyra\nVirginia\nYajaira\nAbbie\nAbbygail\nAlex\nAmya\nAnnette\nArielle\nArly\nAshanti\nAyla\nBrooklynn\nCarley\nChanel\nCharlize\nCitlali\nCitlaly\nDamaris\nDania\nDevyn\nElianna\nElsa\nEricka\nEstefany\nFelicity\nFrances\nHarmony\nHelena\nHunter\nIvanna\nJanae\nJasmyn\nJaylynn\nJazlyn\nJenny\nJohanna\nJolie\nKaleigh\nKarlee\nLainey\nLauryn\nLuna\nMadilyn\nMaricela\nMaricella\nMarilyn\nRoselyn\nScarlett\nSharon\nStacey\nStacy\nVianey\nYareli\nYoselin\nYulissa\nAbriana\nAcacia\nAdelina\nAdrienne\nAlani\nAliza\nAlysia\nAnalisa\nAngelita\nAnnabella\nAnnalisa\nAntonia\nAubrianna\nBrissa\nCambria\nCamilla\nCara\nCasey\nCorina\nDawn\nDayanna\nDelia\nDonna\nEdith\nEstefani\nFiona\nGillian\nGisell\nGladys\nHaleigh\nImani\nIvana\nJackeline\nJane\nJaycee\nJocelynn\nJohana\nJosefina\nJosie\nJoy\nJuliet\nJuliette\nJulisa\nKaley\nKathy\nKatlyn\nKayley\nKenzie\nKiera\nLena\nLexie\nLilliana\nLola\nMakena\nMelisa\nMyah\nMyra\nNicolette\nNikki\nRayna\nRobyn\nSamira\nSheila\nSheyla\nTheresa\nTianna\nXiomara\nYaquelin\nAilyn\nAiram\nAliana\nAliya\nAmara\nAmari\nAmaris\nAnalise\nAnastacia\nAria\nArissa\nAryana\nAstrid\nAyleen\nBailee\nBreana\nBridgette\nCameron\nCatalina\nCecelia\nCelia\nCelina\nCeline\nChrista\nCinthia\nCora\nDestiney\nElaine\nElyssa\nEunice\nGissel\nGwendolyn\nHalie\nIngrid\nIreland\nIsabell\nJacey\nJaelyn\nJaida\nJasmyne\nJesse\nJessie\nJewel\nKaia\nKatelin\nKaylynn\nKeila\nKelsie\nKianna\nKristin\nLila\nLilyana\nMaliah\nMarcela\nMariel\nMarlen\nMeredith\nMirka\nNatalya\nNathalia\nNorma\nPrecious\nQuinn\nRaegan\nRoxana\nRoxanna\nRubi\nRyley\nSelah\nShyann\nTammy\nToni\nTrista\nVianney\nYvonne\nAdamaris\nAisha\nAlannah\nAlivia\nAlora\nAlycia\nAmira\nAnais\nAnalicia\nAneesa\nAngeline\nAnn\nAriella\nAshly\nAshton\nAudra\nAzul\nBrylee\nCarolyn\nCassie\nCinthya\nDafne\nDaija\nDanae\nDavina\nDayna\nDelanie\nDevon\nEvangelina\nEvelynn\nFlor\nFrancesca\nFrancisca\nGeorgia\nGeorgina\nGizelle\nIrlanda\nIsela\nIzabel\nIzabelle\nJacquelin\nJaime\nJanice\nJayde\nJayla\nJaylene\nJazlynn\nJesenia\nJiselle\nJoselin\nJoseline\nKacey\nKacie\nKaila\nKarli\nKayli\nKelli\nKristal\nLaney\nLesli\nLeyla\nLilyanna\nMadisyn\nMagdalena\nMaile\nMariam\nMarlee\nMeadow\nMelinda\nMikala\nMollie\nMonet\nNatalee\nNathalie\nNayzeth\nOdalys\nPaulette\nRachelle\nRamona\nRhea\nRheanna\nRosario\nRyann\nSalma\nShandiin\nShayna\nShirley\nShyanne\nSol\nStefanie\nSusana\nSylvia\nTaliyah\nTatianna\nTiara\nTina\nVivianna\nXitlaly\nYarely\nYessica\nYolanda\nZaira\nAbigayle\nAdeline\nAlysa\nAlyse\nAmairany\nAmberly\nAnia\nAnita\nAniya\nAnnaliese\nArabella\nArlet\nArlyn\nAshtyn\nAubrie\nBabygirl\nBeatrice\nBeyonce\nBriseida\nBrook\nBryana\nCaitlynn\nCarlee\nCarol\nCaylee\nCerenity\nCiana\nCienna\nCorinne\nDani\nDeisy\nDelila\nDemi\nDevin\nDiane\nDora\nDorian\nEbony\nFabiola\nGema\nGina\nHali\nIlse\nImelda\nIrma\nIvette\nIvonne\nJaclyn\nJaycie\nJaylee\nJaylin\nJayme\nJoelle\nJolene\nJuanita\nKarolina\nKatarina\nKatia\nKeely\nKenna\nKiarra\nKiersten\nKylah\nLacy\nLailah\nLaysha\nLeanna\nLeona\nLiberty\nLina\nLisette\nLizbet\nLizet\nLori\nLourdes\nLucero\nLyla\nMacey\nMacie\nMadeleine\nMadisen\nMarcella\nMariaisabel\nMarla\nMelani\nMichel\nMichell\nMilan\nMira\nMoriah\nMykaela\nNadine\nNatali\nNubia\nNyssa\nOriana\nPrincesa\nRaelynn\nRandi\nRhianna\nRianna\nRosemary\nSabina\nSally\nSandy\nSantana\nSavana\nShianne\nShreya\nSilvia\nSonya\nTanya\nTatumn\nTristen\nViridiana\nYanet\nAbigale\nAdrian\nAislinn\nAkasha\nAleah\nAleena\nAlia\nAmalia\nAmelie\nAmerie\nAmiyah\nAnabelle\nAnahy\nAnette\nAngelena\nAniyah\nAnja\nAnnabel\nAnnalise\nAranza\nArianne\nAustin\nAvril\nAyana\nBernadette\nBetsy\nBillie\nBreanne\nBree\nBreeana\nBria\nBrianne\nBridgett\nBrynna\nByanca\nCailin\nCarlie\nCharisma\nCharlee\nChelsey\nChiara\nChristie\nCiera\nColleen\nDallas\nDanika\nDarian\nDevan\nEllen\nElsie\nEmber\nEmmaleigh\nEryn\nEstella\nEstephanie\nFrancis\nGia\nGisela\nGisele\nGissell\nIdaly\nIndia\nIrene\nIyana\nIzabela\nJacie\nJackelin\nJalen\nJaquelyn\nJayleen\nJazlynne\nJocelin\nJoceline\nJosselyn\nJourney\nJoyce\nJuana\nJudy\nKai\nKaiya\nKalli\nKallie\nKarlie\nKarly\nKaterina\nKatharine\nKaya\nKaydence\nKaylah\nKaylen\nKaylyn\nKeana\nKeara\nKeiry\nKelley\nKelsi\nKristy\nKrysta\nKyara\nLara\nLeann\nLeigha\nLeonela\nLibby\nLisset\nLorraine\nLynette\nMackenna\nMadysen\nMagali\nMaliyah\nMandy\nMargot\nMariaguadalupe\nMarianne\nMaricruz\nMayte\nMilagros\nMirna\nMisty\nNallely\nNathaly\nNayely\nNayla\nNidia\nNuvia\nOlga\nParker\nPayge\nPearl\nRaina\nReanna\nReina\nRori\nSaira\nSarina\nSerina\nShae\nSheccid\nSianna\nSiena\nSkyla\nSoleil\nSydni\nSydnie\nTaya\nTayler\nTierra\nTrina\nTristin\nTyanna\nTyler\nUnique\nVioleta\nYamile\nYanira\nYoseline\nYsela\nYulianna\nYulisa\nZariah\nZayra\nZoie\nZulema\nEmily\nIsabella\nEmma\nAshley\nMadison\nAlexis\nSamantha\nAbigail\nAlyssa\nElizabeth\nJessica\nHannah\nJennifer\nOlivia\nJasmine\nBrianna\nMia\nGrace\nVictoria\nHailey\nMaria\nSophia\nSarah\nAlexa\nNatalie\nAndrea\nStephanie\nAlexandra\nTaylor\nMichelle\nTrinity\nKayla\nChloe\nLeslie\nAriana\nDestiny\nLauren\nAngelina\nKimberly\nArianna\nNicole\nSavannah\nAnna\nVanessa\nMorgan\nBrooke\nDaniela\nSydney\nDiana\nMegan\nEvelyn\nKaitlyn\nKylie\nMelissa\nRachel\nAva\nElla\nFaith\nJocelyn\nMackenzie\nZoe\nAna\nAngela\nSara\nGabriella\nMariana\nLily\nMarissa\nNevaeh\nRebecca\nAlondra\nKatherine\nJulia\nKatelyn\nIsabel\nAaliyah\nKaylee\nMariah\nValeria\nAngelica\nTatum\nAdriana\nSierra\nAllison\nCeleste\nGabriela\nJazmin\nSofia\nMelanie\nAlexia\nPaige\nRiley\nJade\nKarla\nMaya\nAmber\nAudrey\nJordan\nJacqueline\nMakayla\nMya\nDaisy\nMiranda\nAlejandra\nAlicia\nAmy\nJenna\nMadeline\nGenesis\nHaley\nKaren\nLeah\nBailey\nEsmeralda\nAlexandria\nBreanna\nRylee\nBianca\nDanielle\nKarina\nRuby\nCassandra\nBrooklyn\nGianna\nKatie\nLillian\nAmanda\nGabrielle\nNatalia\nNotnamed\nAshlyn\nBriana\nAmelia\nBrenda\nIsabelle\nGiselle\nAngel\nGuadalupe\nLiliana\nSabrina\nAmaya\nAutumn\nAvery\nAliyah\nJasmin\nValerie\nItzel\nMikayla\nVeronica\nCrystal\nErika\nKate\nMaritza\nMary\nXimena\nCamila\nNaomi\nChristina\nClaire\nLizbeth\nCarmen\nDayanara\nKassandra\nCarolina\nElena\nJordyn\nYesenia\nCheyenne\nAubrey\nDesiree\nKylee\nMckenna\nShelby\nCynthia\nLaura\nLeilani\nSummer\nJuliana\nMonica\nMonique\nPriscilla\nGracie\nHope\nKennedy\nPerla\nApril\nAurora\nMolly\nErin\nJayden\nMarisa\nAddison\nAriel\nCassidy\nFernanda\nPeyton\nReagan\nSerena\nPaola\nPaulina\nAlana\nCatherine\nJada\nJamie\nKiara\nMarina\nParis\nSerenity\nDaniella\nDenise\nJulianna\nLayla\nMckenzie\nAmerica\nAnahi\nBella\nCourtney\nDelaney\nJazmine\nJulissa\nKelly\nKendra\nKyra\nSandra\nAdrianna\nAshlee\nLindsey\nMadelyn\nSherlyn\nAlina\nElise\nEllie\nGloria\nHaylee\nNancy\nNayeli\nPayton\nCharlotte\nJaqueline\nLesly\nMiriam\nSadie\nWendy\nCaitlin\nEliana\nKyla\nMarlene\nPatricia\nCadence\nCamille\nErica\nFatima\nJadyn\nJosephine\nMarisol\nRaquel\nRebekah\nReese\nReyna\nSelena\nSophie\nAnnika\nArely\nCaroline\nDanna\nEva\nHanna\nJoanna\nKathryn\nLilly\nMacy\nMakenna\nMakenzie\nVivian\nViviana\nAraceli\nAshlynn\nCamryn\nClaudia\nLindsay\nLizeth\nLuz\nTiffany\nYasmin\nAlma\nKeira\nKiana\nMercedes\nDakota\nDulce\nKailey\nKendall\nKira\nLeila\nLexi\nNadia\nSage\nSavanna\nAnnabelle\nBethany\nCecilia\nClarissa\nHailee\nHolly\nJaden\nMelody\nSkylar\nZoey\nBritney\nCindy\nJillian\nJoselyn\nJulie\nLydia\nNataly\nAnastasia\nEmely\nHeather\nHeaven\nJimena\nKaydence\nKaylie\nKelsey\nKristen\nLucia\nLucy\nMargaret\nNatasha\nTeresa\nAbby\nAlessandra\nAlissa\nBrittany\nCaitlyn\nEstrella\nIvy\nLaisha\nTatiana\nTessa\nValentina\nAbril\nAngie\nBlanca\nBryanna\nCiara\nCristina\nHayley\nJudith\nKaryme\nKatelynn\nLeticia\nLiberty\nRhiannon\nAlison\nBrenna\nEden\nElle\nJaidyn\nKristina\nMallory\nMeghan\nNoemi\nPiper\nSienna\nTiana\nAnaya\nAreli\nAthena\nBelen\nCameron\nCierra\nDominique\nEmilie\nGisselle\nKathleen\nKatrina\nKayleigh\nMaggie\nMartha\nRubi\nRylie\nSarai\nYaritza\nAllyson\nAngelique\nBrielle\nBrisa\nCarly\nElisa\nFrida\nGenevieve\nJohanna\nJustice\nNina\nRaven\nRosa\nThalia\nYasmine\nAileen\nAracely\nClara\nCristal\nDana\nEliza\nEsther\nIris\nJaiden\nJanessa\nKarime\nKrystal\nLitzy\nMarianna\nMayra\nMelany\nPamela\nSamara\nSasha\nShayla\nTabitha\nTaryn\nYadira\nYoselin\nBrooklynn\nDamaris\nEsperanza\nHarley\nIzabella\nJackeline\nJanet\nKiera\nLea\nLisa\nMadeleine\nMadisyn\nMelina\nRegan\nRegina\nRose\nShannon\nSonia\nStacy\nStella\nYareli\nYvette\nAnissa\nAriza\nAshleigh\nAsia\nGalilea\nHeidi\nIliana\nIsabela\nJenny\nKaelyn\nKaitlynn\nKiley\nLluvia\nMalia\nNia\nXiomara\nAbrianna\nBrittney\nBrynn\nDesirae\nElissa\nEvelin\nJaneth\nKaitlin\nKamryn\nKenya\nKirsten\nLaila\nMadelynn\nMarisela\nRebeca\nRuth\nShea\nStephany\nVianney\nYamileth\nAiyana\nAllie\nAlyson\nAmira\nAspen\nBaylee\nCalista\nCarla\nCasey\nCatalina\nEmilee\nEstefania\nGrecia\nIngrid\nJazlyn\nKassidy\nKeyla\nLesley\nLilian\nLorena\nMichaela\nNizhoni\nPaloma\nPrecious\nRoselyn\nTania\nTeagan\nYahaira\nYazmin\nYuliana\nAdamaris\nAnya\nBailee\nBreana\nCallie\nCarissa\nCasandra\nDanitza\nDenisse\nDylan\nEdith\nElisabeth\nEmmalee\nFiona\nFlor\nIsis\nJosie\nKailee\nKaleigh\nKara\nKaya\nLilianna\nLilliana\nLizette\nLogan\nPenelope\nRaina\nRyan\nSkyler\nSusan\nTori\nYessenia\nAlize\nAngelita\nAnita\nArlette\nAylin\nChelsea\nChristiana\nDayana\nDelilah\nEmilia\nJacquelyn\nJayla\nJohana\nKadence\nKarely\nKasey\nKatarina\nKianna\nLacey\nLarissa\nLexie\nMarlee\nMaryjane\nMeredith\nMikaela\nMireya\nPhoebe\nPresley\nPrincess\nQuinn\nSimone\nSkye\nSylvia\nTalia\nTara\nTianna\nAinsley\nAlaina\nAlanna\nAliya\nAnika\nAniyah\nAryana\nAryanna\nAyleen\nBrandy\nChristine\nCorina\nDiane\nEileen\nEleanor\nFelicity\nGillian\nGraciela\nHana\nJanae\nJayda\nJazmyn\nJazmyne\nJessie\nJoseline\nKali\nLinda\nLourdes\nLuisa\nMacey\nMadilyn\nMadyson\nMaia\nMarley\nMiah\nMina\nRyann\nSarahi\nSavanah\nSedona\nShaylee\nTanya\nTayler\nTyler\nVirginia\nAisha\nAlia\nAnne\nAnnie\nArlene\nArleth\nAyanna\nBeatriz\nBrissa\nCarolyn\nCecelia\nCharlize\nCheyanne\nCora\nDaphne\nDeja\nDiamond\nDonna\nElaina\nIrene\nKayley\nKaylin\nKyleigh\nLaci\nLiana\nLola\nMariela\nMarilyn\nMckayla\nMyah\nNoelia\nNoelle\nNora\nRachael\nRaegan\nTheresa\nUnique\nViolet\nViridiana\nWillow\nXitlali\nYamilet\nZoie\nAbbey\nAbigale\nAdilene\nAimee\nAlena\nAlexus\nAlisha\nAmelie\nAnabelle\nAraya\nArielle\nAstrid\nBabygirl\nBerenice\nBriseyda\nBryana\nCambria\nCara\nCarina\nCarol\nCloe\nDania\nDestinee\nEstefani\nEvangelina\nHalle\nHaylie\nHelen\nIreland\nIsela\nJane\nKaley\nKamila\nKatia\nKeila\nKenia\nKierra\nLena\nLila\nLillie\nLuna\nMaddison\nMara\nMaribel\nMarie\nMayrin\nMeadow\nNathalie\nPaula\nSaige\nSariah\nSelina\nSonya\nVianey\nAbbigail\nAilani\nAmara\nAmaris\nAmya\nAnnabella\nAnnette\nAntonia\nAnyssa\nAria\nArwen\nAyana\nAyla\nBarbara\nCitlali\nCorinne\nDanae\nDavina\nDevin\nGiovanna\nGladys\nImani\nJanelle\nJayleen\nJaylene\nJulieta\nJuliette\nKaia\nKaila\nKailyn\nKaiya\nKamille\nKarissa\nKarli\nKarly\nKaydance\nKayden\nLia\nLisbeth\nLisette\nMadisen\nMagaly\nMakena\nMckinley\nMelia\nMicaela\nMonserrat\nMyra\nNichole\nRayne\nReece\nReina\nRenee\nScarlett\nSusana\nTamara\nTrista\nXochitl\nYajaira\nYessica\nAiyanna\nAlysa\nAmalia\nAnalicia\nAnastacia\nAniya\nAriadna\nAshanti\nAubree\nAubrie\nAzul\nBridget\nBrylee\nCali\nCelia\nCeline\nChanel\nCiera\nDayanna\nEllen\nElsie\nEve\nFrancesca\nGeorgia\nGina\nGissel\nGizelle\nHallie\nHarmony\nHayden\nHoney\nIvana\nJacquelin\nJaquelin\nJesse\nJourney\nJustine\nKarlie\nKarolina\nKathy\nKayli\nKaylynn\nKendal\nKenna\nLauryn\nLeanna\nLexus\nLilia\nLilyana\nLondon\nLuciana\nMacie\nMadalyn\nMaleah\nMaliyah\nMargarita\nMariajose\nMariam\nMarian\nMaricela\nMaylin\nNathaly\nNidia\nPriscila\nRachelle\nRosalinda\nRowan\nSarina\nSerina\nShania\nSharon\nShayna\nSilvia\nSuzette\nSydnee\nTatyana\nTia\nTriniti\nXitlaly\nZaira\nAilyn\nAiram\nAlayna\nAlexys\nAliana\nAlivia\nAliza\nAllyssa\nAlycia\nAmethyst\nAmiya\nAnabel\nAnisa\nArrianna\nAshly\nAshtyn\nBernadette\nBetzaida\nBreann\nBria\nBrianda\nBryn\nCarlie\nCelina\nCielo\nCitlaly\nDalia\nDalila\nDariana\nDawn\nDeborah\nDelia\nDora\nElianna\nEunice\nFabiola\nFelicia\nGemma\nHaleigh\nIrma\nIsabell\nJaclyn\nJaelynn\nJesenia\nJoana\nJolene\nJoslyn\nJuanita\nJulianne\nKaci\nKallie\nKaty\nKaylen\nKaylyn\nKenzie\nLana\nLaney\nLeslye\nLexy\nLeyla\nLilyanna\nLina\nLizet\nLyla\nLyndsey\nMadalynn\nMaren\nMariel\nMarlen\nMelisa\nMyla\nNallely\nNatali\nNikki\nPaityn\nPaulette\nRayna\nRita\nRobyn\nRocio\nRomina\nRosario\nRoxana\nRyleigh\nSamira\nSheila\nSheyla\nSkyla\nSonja\nStevie\nTina\nTracy\nTyla\nVanesa\nYadhira\nAbbie\nAbriana\nAdeline\nAlani\nAleah\nAleena\nAlexsandra\nAlianna\nAlisa\nAlly\nAlora\nAlyssia\nAmani\nAmberly\nAnalisa\nAngeles\nAnnaliese\nAnnalisa\nAnnalise\nArden\nAudra\nBeverly\nBeyonce\nBrianne\nBriseida\nCarmela\nCassie\nCharity\nChasity\nChevelle\nChiara\nCianna\nCienna\nClare\nColleen\nDallas\nDanika\nDarlene\nDayna\nDeanna\nDestiney\nElexis\nElisha\nElysia\nElyssa\nEricka\nFallon\nFaye\nGisela\nGracelyn\nHanny\nHarper\nHazel\nHeidy\nHelena\nHillary\nHunter\nIdaly\nIran\nIvonne\nJaeden\nJanice\nJaquelyn\nJasmyn\nJaycee\nJazlynn\nJenessa\nJewel\nJhoana\nJocelin\nJocelyne\nJoy\nJuana\nJuliet\nJulisa\nKacie\nKaris\nKatlyn\nKatya\nKelsie\nKiersten\nKourtney\nKristal\nKristin\nLaurel\nLesli\nLexis\nLezly\nLianna\nLidia\nLillianna\nLivia\nMadilynn\nMagdalena\nMarcela\nMarcia\nMaricella\nMeagan\nMercedez\nMicah\nMila\nMontserrat\nNayla\nNeha\nNikole\nNorma\nNya\nOdalis\nPearl\nPrincesa\nReilly\nRianna\nRochelle\nRoselin\nRoxanna\nRoxanne\nSaray\nSeleste\nShyla\nSidney\nSol\nStacey\nSydni\nTamia\nTehya\nTess\nTierra\nTristen\nTyra\nWhitney\nYanet\nYaquelin\nYarely\nYazmine\nYolanda\nYulisa\nAbagail\nAbigayle\nAcacia\nAdalyn\nAdamari\nAddie\nAdria\nAdrienne\nAidan\nAkira\nAleigha\nAlexandrea\nAlexya\nAline\nAlyna\nAlyse\nAmairany\nAmari\nAmayah\nAmayrani\nAmina\nAnabella\nAnahy\nAnais\nAnalise\nAnayeli\nAndie\nAnjali\nAnnabel\nAnnalee\nAnnamarie\nAriella\nArissa\nArlet\nAshli\nAspyn\nAutum\nAveri\nAviana\nAvianna\nAzaria\nBayleigh\nBelinda\nBetty\nBraelyn\nBrandi\nBrinley\nBrook\nCarlee\nCarley\nCarli\nCarter\nCaydence\nCayla\nCharlee\nCharlene\nCinthya\nClarisa\nCruz\nDalilah\nDarian\nDezarae\nDorothy\nEbony\nElicia\nElyse\nEmmy\nEstella\nFrancisca\nGema\nGeorgina\nGiana\nHadley\nHailie\nHannia\nHennessy\nHollie\nIlene\nImelda\nIndia\nInez\nItalia\nIvanna\nIzabelle\nJaelyn\nJalyn\nJanie\nJaylee\nJaylen\nJaylyn\nJenifer\nJetta\nJoelle\nJolee\nJoselin\nJoyce\nKaidence\nKailin\nKaily\nKalea\nKalina\nKaliyah\nKalli\nKarlee\nKarmen\nKaycee\nKayleen\nKeegan\nKeely\nKrista\nLainey\nLilah\nLissette\nLoren\nLupita\nMaci\nMariafernanda\nMaryann\nMaryn\nMason\nMelannie\nMichell\nMilan\nMiracle\nMollie\nMontana\nMyriam\nNatalya\nNaydelin\nNayely\nNeida\nNellie\nNeveah\nNicolette\nNoelani\nNubia\nParker\nPayten\nPilar\nPricila\nRayanna\nRenata\nRene\nRosio\nSavana\nSayra\nSelene\nShawna\nShay\nShaylin\nShealynn\nSheridan\nShyanne\nSiena\nSoleil\nStar\nStefanie\nStefany\nTatianna\nTaya\nTaytum\nTea\nTegan\nValery\nVianca\nWinter\nXenia\nYanira\nYenifer\nYoseline\nYosselin\nYulianna\nZariah\nZayra\nEmily\nMia\nAshley\nIsabella\nEmma\nSamantha\nAbigail\nMadison\nSophia\nElizabeth\nAlexis\nHannah\nAlyssa\nNatalie\nOlivia\nBrianna\nMaria\nHailey\nGrace\nJessica\nAva\nJasmine\nSarah\nVictoria\nAngelina\nJennifer\nAndrea\nAlexa\nTaylor\nLauren\nMichelle\nChloe\nEvelyn\nSavannah\nVanessa\nElla\nAlexandra\nAriana\nDestiny\nKayla\nKimberly\nNicole\nSofia\nStephanie\nValeria\nAlondra\nTrinity\nLeslie\nNevaeh\nArianna\nLily\nAngela\nSydney\nAnna\nBrooke\nIsabel\nKaitlyn\nMegan\nRachel\nFaith\nAna\nKaylee\nMackenzie\nMaya\nMelanie\nMelissa\nRiley\nJocelyn\nDiana\nGabriela\nGabriella\nZoe\nMariah\nAlexia\nCamila\nMariana\nAngelica\nAvery\nBriana\nDaniela\nMorgan\nJulia\nJazmin\nAmy\nKylie\nAllison\nHaley\nKatherine\nMya\nEsmeralda\nJenna\nJacqueline\nMakayla\nPaige\nSara\nJade\nKatelyn\nAaliyah\nLillian\nBrooklyn\nDanielle\nNatalia\nAlicia\nGenesis\nRylee\nAmanda\nAmber\nMarissa\nCiara\nGabrielle\nNotnamed\nSierra\nValerie\nMadeline\nAudrey\nLeah\nDaisy\nRebecca\nAdriana\nSerenity\nGiselle\nKatie\nTatum\nAlejandra\nAmelia\nDayanara\nIsabelle\nJordan\nAutumn\nLiliana\nNaomi\nCassandra\nKaren\nKarla\nMiranda\nRuby\nBreanna\nItzel\nSummer\nBianca\nEstrella\nKate\nGianna\nJordyn\nPayton\nLayla\nSabrina\nBrenda\nCeleste\nJada\nSienna\nKylee\nAddison\nChristina\nClaire\nCynthia\nGracie\nMadelyn\nShelby\nAlexandria\nFernanda\nJazmine\nJuliana\nSophie\nAmaya\nMikayla\nPerla\nXimena\nGuadalupe\nPaulina\nBailey\nJasmin\nEllie\nErin\nKarina\nReagan\nAubrey\nBella\nCarmen\nErika\nEva\nJulissa\nKiara\nLeilani\nKyra\nPeyton\nAnahi\nLaura\nAliyah\nCatherine\nElena\nJimena\nMonica\nSkylar\nZoey\nCharlotte\nMarisol\nReyna\nSadie\nAshlyn\nDakota\nLucy\nVeronica\nAlana\nJayden\nMaritza\nPaola\nCheyenne\nCrystal\nDulce\nHope\nMary\nMolly\nSavanna\nAdrianna\nAngel\nCaitlin\nKassandra\nKennedy\nLizbeth\nMercedes\nRosa\nYesenia\nAmerica\nMckenna\nSelena\nWendy\nDesiree\nLilly\nPriscilla\nAlessandra\nApril\nBrisa\nCarolina\nErica\nHaylee\nKelly\nNadia\nSandra\nTiffany\nAshlee\nAurora\nRubi\nKendall\nMonique\nVivian\nCadence\nCaitlyn\nCecilia\nDaniella\nKailey\nKathryn\nMakenzie\nMelody\nReese\nEmely\nAnnabelle\nDelaney\nDenise\nEsperanza\nFatima\nJadyn\nKeira\nMckenzie\nArleth\nCaroline\nCourtney\nIzabella\nJaden\nLesly\nSerena\nAbby\nBrittany\nHelen\nJosephine\nKira\nLindsey\nSamara\nAriel\nCamille\nCindy\nClarissa\nDanna\nEliana\nGloria\nJoselyn\nJulianna\nJulie\nKaylie\nLindsay\nLitzy\nMarisa\nNayeli\nRaquel\nRebekah\nEden\nEliza\nIvy\nJillian\nJoanna\nKendra\nLaila\nLizeth\nLuz\nTatiana\nHeidi\nLydia\nMaggie\nRuth\nTeresa\nAlma\nAnaya\nAnissa\nCamryn\nCarla\nClaudia\nJamie\nLarissa\nLinda\nMakenna\nNancy\nSage\nAileen\nAlison\nAllie\nAngie\nArely\nAshlynn\nCarly\nChelsea\nEvelin\nKatrina\nKyla\nMadisyn\nMalia\nMichaela\nNatasha\nSherlyn\nViviana\nYasmin\nBritney\nHailee\nIris\nKelsey\nLeila\nLilliana\nMacy\nMariela\nMarina\nNataly\nSasha\nSkyler\nAnastasia\nAngelique\nAracely\nHayden\nJudith\nKiana\nLucia\nPatricia\nRegina\nRenee\nRylie\nTessa\nTiana\nYazmin\nAllyson\nAraceli\nAsia\nAthena\nAubree\nBrenna\nBrooklynn\nBryanna\nCamilla\nCristina\nDana\nElle\nHeaven\nJaiden\nKamryn\nKara\nLexi\nParis\nShayla\nViolet\nYareli\nAnnika\nAylin\nBrielle\nCassidy\nDaphne\nDayana\nDominique\nElise\nHeather\nKaydence\nLeticia\nLorena\nMadeleine\nMarian\nMelina\nMiriam\nNina\nNoemi\nPiper\nTalia\nAdilene\nAlaina\nAlina\nBrandy\nBrittney\nDanika\nFrida\nGisselle\nHanna\nHolly\nIliana\nJaqueline\nJayla\nKadence\nLuna\nMaribel\nMayra\nMiah\nNoelle\nRachael\nStella\nAbril\nAlayna\nArlene\nBerenice\nBethany\nEmilia\nHaylie\nIngrid\nJazlyn\nJenny\nJohana\nKailyn\nKiera\nKristina\nMagdalena\nMallory\nMarlene\nMeghan\nPaula\nRyan\nSariah\nScarlett\nShea\nSonia\nStephany\nTara\nYadira\nYahaira\nYaritza\nAnika\nBarbara\nBridget\nDanitza\nDesirae\nEdith\nEmmalee\nGalilea\nIsela\nJaidyn\nJanessa\nJolette\nKarissa\nLilian\nMargaret\nMarilyn\nRaegan\nSarai\nTanya\nTaryn\nValentina\nYuliana\nAbbigail\nAleah\nAlissa\nAreli\nAyanna\nCierra\nCitlaly\nClara\nDamaris\nFiona\nFlor\nGrecia\nJanae\nJanet\nJohanna\nKaitlin\nKarol\nLana\nLesley\nLizette\nMckayla\nPresley\nRyleigh\nSarahi\nSkye\nTabitha\nTania\nTeagan\nAnnie\nAriza\nAshly\nCasey\nCristal\nElisa\nEmilee\nEstefania\nGina\nJazmyn\nJoslyn\nKaitlynn\nKatelynn\nKathleen\nLiberty\nLluvia\nMaddison\nMaia\nMaryjane\nMelany\nMikaela\nShannon\nYarely\nZoie\nAlanna\nAnnette\nAyla\nBetzaida\nBlanca\nBrynn\nCallie\nDania\nDelilah\nDiamond\nFabiola\nGizelle\nGwendolyn\nHalle\nIrene\nIvanna\nJanelle\nJayda\nKali\nKenzie\nKiersten\nKiley\nKrystal\nLeanna\nLola\nLuisa\nMarie\nMartha\nMicaela\nNatalee\nNora\nPhoebe\nRaven\nTyra\nVirginia\nYasmine\nAimee\nAlice\nAlize\nAnnalise\nAspen\nAubrie\nBrandi\nCarol\nCatalina\nChristine\nCitlali\nCora\nDeanna\nDylan\nEmilie\nHarley\nIsabell\nJaelyn\nJolie\nJoseline\nJoy\nKaley\nKarime\nKeyla\nKyleigh\nLilia\nLilianna\nMadilyn\nMarley\nPenelope\nRose\nSidney\nSusan\nTianna\nWillow\nYoselin\nYulissa\nAlivia\nAmya\nAnalisa\nAnnalisa\nBeatriz\nChantal\nDariana\nDevyn\nElaina\nEstefani\nEsther\nGenevieve\nHelena\nIsabela\nJaycee\nJessie\nJosie\nKaleigh\nKayleigh\nKaylin\nKenia\nLea\nLila\nLucero\nMadalyn\nMakena\nMaliyah\nMargarita\nMarlee\nNathalie\nPaloma\nPrecious\nRhiannon\nSavanah\nSimone\nThalia\nTori\nTyler\nYamileth\nAilyn\nAiyana\nAlyson\nAmara\nAryana\nAyleen\nBrianda\nBriseida\nCali\nCelina\nDafne\nElissa\nElyse\nEricka\nFrancesca\nGeraldine\nHaleigh\nHaven\nHayley\nImani\nIsis\nJewel\nJustice\nLogan\nMacie\nMadyson\nMaricela\nMireya\nNia\nNorma\nPriscila\nRayna\nReina\nShyanne\nSilvia\nTheresa\nTia\nUnique\nVianey\nYuridia\nAbrianna\nAdelina\nAinsley\nAlisa\nAlly\nAnn\nAnyssa\nAria\nBelen\nBriseyda\nBryana\nCambria\nCameron\nDanica\nEleanor\nElianna\nEstefany\nGia\nGiovanna\nGraciela\nHallie\nHarmony\nHazel\nJackeline\nJaida\nJane\nJocelynn\nJoselin\nKaelyn\nKailee\nKamila\nKianna\nKirsten\nLaisha\nLauryn\nLexus\nLiana\nLillie\nMalaya\nMandy\nMara\nMina\nMonserrat\nNaima\nNathalia\nNikki\nNizhoni\nRoxana\nSalma\nSusana\nSydnee\nTatianna\nTatyana\nTayler\nTess\nVanesa\nVianney\nVivianna\nXiomara\nYamilet\nAiram\nAlena\nAlexus\nAliana\nAlora\nAlycia\nAlysa\nAnais\nAnalise\nAniya\nAniyah\nAnya\nAshleigh\nAstrid\nCarolyn\nCasandra\nCharity\nChasity\nChelsey\nCheyanne\nDayami\nDeborah\nDenisse\nEileen\nEstella\nGeorgia\nGeorgina\nGladys\nHailie\nIlse\nIvana\nIvonne\nJamileth\nJordynn\nJuanita\nJuliette\nKarma\nKathy\nKaya\nKiarra\nLena\nLexie\nLilyanna\nLyla\nMadelynn\nMaren\nMarianna\nNicolette\nNikole\nNubia\nPrincess\nRoselyn\nSelene\nSelina\nSylvia\nTamara\nYajaira\nYessenia\nYolanda\nYvonne\nAbbey\nAbbie\nAmari\nAmelie\nAmirah\nAnalicia\nAnastacia\nAnnabel\nAnnamarie\nAnne\nAntonia\nArabella\nArissa\nArlette\nAryanna\nBree\nBrianne\nBriseis\nBritany\nCandace\nCarina\nCarissa\nCharisma\nCianna\nCienna\nCiera\nDiane\nElaine\nEmery\nFrancisca\nHoney\nJalyn\nJaneth\nJayde\nJaylee\nJaylynn\nJenifer\nJourney\nJuliet\nKaia\nKaiya\nKarli\nKasandra\nKassidy\nKeila\nKelsie\nKenya\nKinsey\nKristen\nLaci\nLacie\nLainey\nLaurel\nLeyla\nLia\nLisa\nLisette\nLupita\nMaci\nMarcela\nMariam\nMarisela\nMilagros\nMiya\nMontserrat\nNeha\nNoelani\nPamela\nPricilla\nRaelynn\nRaina\nRosalinda\nSamira\nScarlet\nShandiin\nShania\nShaylee\nSiena\nSkyla\nSoraya\nStacey\nTamia\nTiara\nToni\nVioleta\nXochitl\nYaneli\nYvette\nZaira\nAda\nAdamari\nAdamaris\nAdelaide\nAdrienne\nAlani\nAleena\nAliza\nAmalia\nAmaris\nAmina\nAmira\nAngelita\nAnnabella\nAnnalicia\nBelinda\nBetsy\nBreana\nBrissa\nBrook\nCalista\nCampbell\nCara\nCarley\nCarlie\nCharlize\nCorina\nDahlia\nDalilah\nDanae\nDarlene\nDestinee\nDestiney\nDorothy\nElisabeth\nElliana\nEllianna\nEvangelina\nEve\nFaye\nFelicity\nGiana\nGisel\nGissel\nGriselda\nHaily\nHarleigh\nIrma\nIvette\nJackelyn\nJackie\nJacquelyn\nJayleen\nJaylene\nJaymie\nJazmyne\nJosefina\nJulianne\nJulieta\nJustine\nKaci\nKaila\nKalia\nKarly\nKaterina\nKaycee\nKayden\nKelli\nKenadee\nKendyl\nKloe\nKrista\nLacey\nLilyana\nLorelei\nLuciana\nMacey\nMagali\nMariajose\nMarlen\nMeagan\nMikalah\nMilan\nMoriah\nMyah\nMyla\nMyra\nNaidelyn\nNatali\nNayelli\nNelly\nNeveah\nNoelia\nNorah\nParker\nRebeca\nRegan\nRio\nRocio\nRosario\nSamanta\nSarina\nSelah\nShyann\nStar\nTaytum\nTierra\nYaquelin\nZaida\nAhtziri\nAisha\nAlisha\nAliya\nAlyssia\nAmairany\nAnali\nAndi\nAnessa\nAngeles\nAnisa\nAnnmarie\nAriella\nArielle\nAshli\nAshlie\nAtiana\nAtziri\nAudra\nAviana\nAzalea\nAzul\nBreann\nBridgette\nBrookelyn\nCarrie\nCecelia\nChanel\nCharley\nCharli\nCharlie\nCiana\nCielo\nCinthya\nConnie\nDalia\nDarian\nDayna\nDelia\nDevin\nDionna\nDonna\nEdna\nEllen\nElli\nElyssa\nEmelia\nEmerson\nFelicia\nFrances\nGisell\nGwen\nHalie\nHarper\nHeidy\nIlianna\nImelda\nIzabel\nJacelyn\nJacquelin\nJanice\nJaquelin\nJaquelyn\nJasmyn\nJaylin\nJaylyn\nJeslyn\nJesse\nJocelyne\nJorja\nJovanna\nJudy\nKarlee\nKarley\nKaryme\nKasey\nKatarina\nKathrine\nKatia\nKatya\nKaydee\nKayli\nKimora\nKori\nKristine\nKristyn\nLeann\nLeilany\nLibby\nLidia\nLillyan\nLillyanna\nLisbeth\nLondon\nLucille\nMadisen\nMakaila\nMarla\nMeadow\nMelisa\nMila\nMonet\nNalani\nNichole\nNyla\nOdalys\nOlga\nRhianna\nRia\nRobin\nRosemary\nRowan\nRoxie\nRyann\nSavana\nSedona\nShanna\nShantal\nShay\nShayna\nSheila\nSheyla\nSilvana\nSloane\nStacy\nStormie\nSuzette\nTaylee\nTrina\nTylee\nValery\nVania\nViridiana\nWinter\nXitlali\nXitlaly\nYadhira\nYaretzi\nYessica\nAaralyn\nAbagail\nAbigale\nAbigayle\nAbygail\nAddie\nAdela\nAdelynn\nAida\nAilani\nAislinn\nAlannah\nAlexi\nAlexsandra\nAlexys\nAlia\nAmerie\nAmiah\nAnabella\nAnaly\nAnanya\nAngelia\nAnia\nAnnabell\nAnnelise\nAriah\nAriyah\nAshton\nAvril\nAysha\nBailee\nBaylie\nBeyonce\nBianka\nBillie\nBlythe\nBraelyn\nBria\nBriceida\nBrynna\nCallista\nCandice\nCayla\nCelia\nCerenity\nChiara\nDalila\nDallas\nDasia\nDayanna\nDebra\nDeja\nDeyanira\nDivine\nDolores\nDomonique\nDrew\nElayna\nElexis\nElia\nElliot\nElsie\nEmili\nEryn\nEstephanie\nEunice\nEvelyne\nFallon\nFinley\nGema\nGemma\nGillian\nGisele\nGracelyn\nGwenyth\nHadley\nHadyn\nHana\nHarlee\nHillary\nIleana\nIrais\nIrlanda\nIsobel\nIzabelle\nJaidan\nJaime\nJanie\nJazlynn\nJeanette\nJoana\nJulisa\nJustina\nKaelynn\nKaili\nKallie\nKamilah\nKarizma\nKarolina\nKatharine\nKayle\nKayleen\nKaylene\nKayley\nKaylyn\nKaylynn\nKeely\nKendal\nKennedi\nKera\nKierra\nKierstin\nKimber\nKinley\nKinsley\nKristin\nKylah\nKylene\nLaney\nLeeann\nLesli\nLezly\nLillianna\nLina\nLorelai\nLynette\nLysette\nMadalynn\nMaddie\nMadysen\nMaiya\nMarbella\nMarcella\nMari\nMarianne\nMayah\nMayela\nMayte\nMckinley\nMelannie\nMelanny\nMeredith\nMicah\nMikaila\nMikala\nMilena\nMiracle\nNadine\nNathaly\nNevaeha\nNohemi\nNuvia\nNya\nOctavia\nPatience\nRae\nRamona\nReilly\nRenata\nRian\nRiana\nRobyn\nRochelle\nRosselyn\nSaige\nSally\nSerina\nShirley\nSinai\nSky\nStevie\nSunshine\nSydnie\nTaliyah\nTaniyah\nTatiyana\nTayla\nTaylin\nTea\nTerra\nTeya\nTracy\nTrista\nWendi\nYanitza\nYazmine\nYliana\nYoselyn\nYsabella\nZariah\nZenaida\nZulema\nMia\nEmily\nIsabella\nAshley\nEmma\nMadison\nAva\nSophia\nSamantha\nAlexis\nAlyssa\nAbigail\nHannah\nNatalie\nElizabeth\nHailey\nAlexa\nBrianna\nOlivia\nMaria\nVictoria\nJasmine\nGrace\nValeria\nAndrea\nSarah\nJessica\nKimberly\nElla\nVanessa\nJennifer\nSavannah\nTaylor\nNevaeh\nChloe\nStephanie\nLauren\nKayla\nLeslie\nLily\nAlexandra\nAngelina\nArianna\nSofia\nEvelyn\nKaylee\nDestiny\nMaya\nJocelyn\nMariah\nMelanie\nAriana\nIsabel\nMarissa\nAddison\nNicole\nGabriella\nMichelle\nFaith\nKaitlyn\nMackenzie\nCamila\nBrooklyn\nJazmin\nRiley\nAllison\nAnna\nRachel\nAna\nJulia\nNatalia\nRylee\nSydney\nZoe\nDiana\nIsabelle\nMariana\nMelissa\nAngela\nAlexia\nAdriana\nAudrey\nMorgan\nAlondra\nDaniela\nJacqueline\nTatum\nAvery\nBrooke\nMegan\nValerie\nSara\nAaliyah\nKatelyn\nLillian\nTrinity\nDaisy\nGabriela\nJade\nBriana\nMakayla\nMya\nKylie\nLayla\nKarla\nLeah\nMadeline\nAubrey\nEsmeralda\nKeira\nDulce\nJordan\nKatherine\nMiranda\nPaige\nAmy\nDanielle\nNaomi\nAlicia\nBella\nAmanda\nRebecca\nSerenity\nGabrielle\nGenesis\nGianna\nHaley\nRuby\nAlejandra\nAngelica\nSienna\nLiliana\nSierra\nBianca\nJenna\nKate\nAlexandria\nAmelia\nAutumn\nMary\nJazmine\nKaren\nShelby\nAmaya\nBailey\nEva\nGiselle\nClaire\nElena\nNotnamed\nAmber\nAngel\nAshlyn\nEstrella\nJayden\nKarina\nJasmin\nJuliana\nMonica\nPeyton\nCassandra\nKylee\nZoey\nKatie\nSavanna\nBreanna\nNadia\nVeronica\nCiara\nDayanara\nSherlyn\nXimena\nCynthia\nMikayla\nAriel\nDakota\nItzel\nJordyn\nSummer\nAurora\nDelaney\nJulianna\nPayton\nAdrianna\nAnahi\nBrenda\nKennedy\nMckenzie\nJoselyn\nKiara\nMarisol\nMolly\nCharlotte\nFatima\nFernanda\nEllie\nErika\nJulissa\nPaola\nReagan\nAlessandra\nCatherine\nDaniella\nLizbeth\nPerla\nReyna\nSadie\nSophie\nEliana\nJada\nLeilani\nLindsey\nSabrina\nCheyenne\nAlana\nAliyah\nCeleste\nErin\nGuadalupe\nLucy\nCadence\nChristina\nGracie\nLaura\nMadelyn\nAnnabelle\nCaitlin\nJayla\nKyra\nDanna\nErica\nJaqueline\nKassandra\nLilly\nMckenna\nCaitlyn\nCamryn\nPriscilla\nReese\nAmerica\nGloria\nIzabella\nMakenzie\nPaulina\nRebekah\nSkylar\nTiffany\nYesenia\nAbby\nCarolina\nCecilia\nSandra\nAlina\nApril\nBrooklynn\nDenise\nJillian\nJoanna\nAngie\nCarmen\nKaydence\nKendall\nMaritza\nArely\nClaudia\nCourtney\nCrystal\nDesiree\nTatiana\nJadyn\nJimena\nKiana\nKira\nLesly\nLydia\nRylie\nVivian\nYoselin\nCarly\nEden\nHaylee\nHope\nKyla\nLexi\nLola\nMiriam\nSage\nViolet\nYasmin\nYazmin\nAllie\nAshlynn\nAthena\nChelsea\nClara\nKailey\nKatelynn\nKathryn\nKayleigh\nKelly\nLaila\nMaggie\nMargaret\nMonique\nNatasha\nAnastasia\nAnnika\nDanica\nDayana\nEvelin\nHanna\nKendra\nMalia\nNancy\nRosa\nSelena\nTessa\nWendy\nAlma\nAylin\nCarla\nEmely\nJohanna\nLeila\nLindsay\nLizeth\nLorena\nMelany\nNataly\nSerena\nViviana\nYareli\nAubree\nDana\nFrida\nHayden\nHeather\nLuna\nMakenna\nMallory\nMarley\nMelody\nSarai\nAlayna\nAriza\nBethany\nEsperanza\nGenevieve\nJosephine\nKamila\nKiera\nRegina\nShayla\nTeagan\nAileen\nAracely\nBrisa\nCindy\nElise\nEliza\nGrecia\nHelen\nIris\nKaylie\nLilliana\nMercedes\nPamela\nRaquel\nTania\nAnaya\nAshlee\nDelilah\nElisa\nEmilia\nHeidi\nJamie\nJulie\nLondon\nMarianna\nMarina\nMichaela\nSasha\nScarlett\nTaryn\nYuliana\nAnissa\nAraceli\nAyla\nCameron\nCamille\nClarissa\nHailee\nHarmony\nIvy\nJoselin\nMadyson\nMireya\nRenee\nRyleigh\nYamileth\nAngelique\nCassidy\nDanika\nDominique\nElle\nEsther\nJaden\nJanelle\nLilian\nLilyana\nNayeli\nPatricia\nRose\nSonia\nSusan\nYaritza\nAlison\nBrenna\nBrittany\nCaroline\nCatalina\nCitlaly\nDamaris\nDaphne\nHayley\nHaylie\nHolly\nJazmyn\nKara\nKelsey\nLucia\nMadisyn\nNatalee\nParis\nRubi\nTyra\nAllyson\nArleth\nBrynn\nCora\nEmilee\nJaelyn\nJayda\nKadence\nKamryn\nKenya\nKristen\nKristina\nKrystal\nLesley\nLinda\nMacy\nMadilyn\nMarilyn\nPaloma\nSkye\nTyler\nAbril\nAdilene\nAlissa\nCristal\nDenisse\nHeaven\nIliana\nIngrid\nJohana\nKatrina\nLuz\nMartha\nNoelia\nRyan\nSarahi\nShyanne\nTalia\nTiana\nVirginia\nYadira\nAinsley\nAlice\nAlyson\nAniya\nAnnie\nAryanna\nBritney\nGeorgia\nJaiden\nJazlyn\nJoseline\nKeyla\nLeticia\nLila\nLuisa\nNoemi\nNora\nPiper\nPresley\nSamara\nSavanah\nShea\nStephany\nXiomara\nYarely\nAbrianna\nAnya\nBlanca\nBridget\nCallie\nCristina\nEleanor\nGisselle\nIsabela\nIsis\nIvanna\nJacquelyn\nKirsten\nLisa\nMaddison\nMaia\nMarlene\nMayte\nMonserrat\nNina\nQuinn\nRhianna\nStella\nYasmine\nYuridia\nYvette\nAlize\nAmaris\nAmya\nAreli\nDeanna\nEvangeline\nIrene\nJenny\nJudith\nKaelyn\nKassidy\nKaylin\nLacey\nLarissa\nLauryn\nLilianna\nMakena\nMargarita\nMayra\nMeredith\nMiah\nNatalya\nNia\nRachael\nRegan\nRhiannon\nSariah\nTamara\nValentina\nAbbie\nAbbigail\nAlanna\nAlivia\nAliya\nAmira\nAnais\nAnika\nAnisa\nAryana\nBailee\nBrandy\nBrielle\nBriseyda\nCambria\nDesirae\nDiamond\nEmerson\nEmilie\nHalle\nJanet\nJaylee\nJuliet\nJustice\nKenia\nLucero\nLuciana\nMaribel\nMarie\nMarisa\nMaryjane\nMelina\nPenelope\nSedona\nShannon\nSiena\nTanya\nYaretzy\nAdamari\nAdelina\nAdeline\nAnabelle\nAnnabella\nArlette\nAubrianna\nAyleen\nBarbara\nBaylee\nBeatriz\nBethzy\nChristine\nDanitza\nDariana\nDeisy\nEdith\nFlor\nGiovanna\nHailie\nHazel\nJanessa\nJaylene\nJessie\nJuliette\nKaitlin\nKali\nKristin\nLaci\nLeanna\nNoelle\nPriscila\nRaegan\nRuth\nSilvia\nSkyler\nTara\nThalia\nYahaira\nYamilet\nAdamaris\nAlaina\nAliana\nAnne\nAria\nAshly\nAubrie\nBerenice\nBetsy\nCali\nCara\nCarlie\nCitlali\nElaina\nElliana\nElyse\nEmmalee\nEstefani\nEstefany\nFelicity\nGiana\nGizelle\nJanae\nJazlynn\nJourney\nJustine\nKaia\nKailyn\nKaleigh\nKarime\nKarissa\nKarol\nKayleen\nKenzie\nKiley\nLexie\nLucille\nMadalyn\nMyah\nNathalia\nPhoebe\nRocio\nSarina\nSimone\nTeresa\nTori\nViridiana\nYajaira\nAimee\nAlly\nAmara\nAniyah\nAnnette\nCasey\nCierra\nFabiola\nFinley\nGalilea\nGina\nGladys\nJaedyn\nJaida\nJayleen\nJenifer\nJoslyn\nJoy\nKai\nKaila\nKairi\nKaley\nKarely\nKarma\nLeyla\nLillianna\nLillie\nLupita\nMagdalena\nMara\nMariela\nMicaela\nMikaela\nMila\nNaima\nNathalie\nNeveah\nNizhoni\nNorma\nNuvia\nPrecious\nRaven\nReina\nRomina\nRosalinda\nSalma\nSelah\nSelene\nSylvia\nTabitha\nToni\nYoselyn\nZoie\nAda\nAiyana\nAlena\nAnalicia\nAnalisa\nAngelita\nAnnalisa\nAshleigh\nAyanna\nBelinda\nBrinley\nBrissa\nCampbell\nCharity\nClare\nDania\nDeborah\nDeja\nElissa\nFrances\nFrancesca\nGraciela\nGwendolyn\nHalie\nHallie\nHillary\nIsela\nJaidyn\nJocelynn\nJosie\nKaitlynn\nKaylynn\nKeila\nLaney\nLea\nLiberty\nLizette\nLondyn\nMadeleine\nMadelynn\nMarlee\nMckayla\nMeghan\nNichole\nOdalys\nPatience\nPrincess\nReanna\nRenata\nRoxana\nSaige\nSamarah\nShania\nSharon\nSkyla\nTheresa\nTia\nValery\nVianey\nWhitney\nYessica\nAddyson\nAdyson\nAilyn\nAlisha\nAmalia\nAmelie\nAnabel\nAniah\nAnnalise\nAnneliese\nAriah\nAsia\nAyana\nBelen\nBriseida\nBryanna\nCandice\nCarissa\nCarol\nCecelia\nCielo\nCienna\nCoral\nDani\nDayra\nDianna\nEileen\nElsie\nEmery\nEunice\nFiona\nHeidy\nItalia\nIvana\nIvette\nIzabelle\nJacquelin\nJaneth\nJaycee\nJessi\nJolie\nKailee\nKaryme\nKasandra\nKatia\nKaycee\nKenna\nKiersten\nKimora\nKyleigh\nLainey\nLitzy\nLivia\nMacey\nMacie\nMaricela\nMarlen\nMeadow\nMelannie\nMollie\nMylie\nNathaly\nNyla\nPaula\nPearl\nPhoenix\nRayne\nRebeca\nRoselyn\nSahara\nSamira\nSheyla\nStacy\nSuri\nSusana\nSydnee\nSydni\nTiara\nVera\nVioleta\nYaretzi\nZuleyka\nAbbey\nAdalyn\nAlani\nAlexys\nAliza\nAlycia\nAlyse\nAlysha\nAmiyah\nAnita\nAnnaliese\nAverie\nBentley\nBetzy\nBriseis\nBrittney\nBrynlee\nCalista\nChelsey\nCherish\nDalia\nDallas\nDarlene\nDesteny\nDestiney\nDevyn\nDiane\nElaine\nElysia\nGia\nHelena\nHoney\nImani\nIsabell\nJackelyn\nJane\nJaylin\nJaylyn\nJaylynn\nKacey\nKalia\nKalina\nKarli\nKasey\nKaya\nKelsie\nKinsey\nKitzia\nKrista\nLaurel\nLena\nLia\nLisette\nLluvia\nLogan\nMaliyah\nMarcela\nMaren\nMarian\nMarisela\nMilla\nMyla\nMyra\nNicolette\nNohemi\nParker\nRayna\nRianna\nRihanna\nRosemary\nRoxanne\nRyann\nShakira\nShaylee\nSonya\nTianna\nVianca\nVivianna\nWillow\nXochitl\nYazmine\nYessenia\nYulissa\nZaira\nAbigayle\nAddisyn\nAdelaide\nAilani\nAlaya\nAlisa\nAlysa\nAlyssia\nAmairani\nAmia\nAngeles\nAngeline\nAnnabel\nAnnamarie\nAntonia\nArabella\nAriadna\nAzul\nBraelyn\nBrea\nBreana\nBryana\nCarina\nCarley\nCaydence\nCharlee\nCharlie\nCharlize\nChristian\nChristiana\nCiana\nCianna\nCinthia\nDafne\nDayanna\nDora\nElisabeth\nEmber\nEricka\nEvangelina\nFrancisca\nGema\nGemma\nGillian\nGisele\nHarlee\nHarley\nIzabel\nJaylen\nJayme\nJaymee\nJazmyne\nJoana\nKaidence\nKallie\nKatelin\nKathleen\nKayden\nKayley\nKeanna\nKeely\nKinley\nKyara\nLacy\nLeilany\nLilyanna\nLina\nLinnea\nLissette\nLorelei\nLyla\nMabel\nMadalynn\nMandy\nMariajose\nMariyah\nMelani\nMiracle\nMonet\nNadine\nNahomy\nNaveah\nNubia\nNya\nOfelia\nPaityn\nReece\nSaira\nSavana\nShyann\nShyla\nSidney\nSol\nSoleil\nStevie\nTaliyah\nTayla\nTayler\nTrista\nVianney\nYulisa\nAbigale\nAdison\nAisha\nAlanah\nAleana\nAlexsandra\nAlia\nAlyna\nAmayah\nAmi\nAnabella\nAnalia\nAnalise\nAnessa\nAnette\nAnyssa\nAolanis\nAranza\nAraya\nAriella\nArielle\nArlene\nArya\nAspen\nAstrid\nAudriana\nAveri\nAvril\nAzalea\nBeyonce\nBobbi\nBonnie\nBreann\nBree\nBrianda\nBridgette\nCailyn\nCandace\nCarrie\nCasandra\nCassie\nCayla\nCelia\nCelina\nCharisma\nChevelle\nCheyanne\nCiera\nCloe\nDaria\nDelani\nDelia\nDonna\nDylan\nEdna\nElayna\nEmelyn\nEmerald\nEmili\nEstefania\nEve\nEvelynn\nFrankie\nGisell\nGracelyn\nGracey\nGwyneth\nHadley\nHaleigh\nHaven\nIrma\nJacey\nJackeline\nJaeda\nJaeden\nJasmyne\nJaycie\nJayde\nJaydin\nJizelle\nJocelin\nJoceline\nJolene\nJosselyn\nJoyce\nJuanita\nJulisa\nKaela\nKamilah\nKaris\nKarlie\nKarolina\nKaylei\nKeara\nKeilani\nKendal\nKendyl\nKennedi\nKianna\nKierra\nLana\nLeia\nLiana\nLillyana\nLorraine\nLourdes\nLynette\nMaci\nMagali\nMaile\nMaite\nMarbella\nMarlyn\nMattie\nMika\nMilan\nNadya\nNevaeha\nNorah\nPayten\nRaeanna\nRaina\nRayanna\nRhea\nRita\nRobyn\nRylan\nSandy\nSaniya\nSantana\nSariya\nSelina\nShantell\nShayna\nSheila\nSherlin\nSinai\nSonja\nSoraya\nStacey\nStefany\nTammy\nTatianna\nTatyana\nVida\nWinter\nZariah\nZayra\nAbagail\nAdela\nAdia\nAdrienne\nAhtziry\nAlannah\nAlba\nAleena\nAlex\nAlexandrea\nAlexi\nAlexus\nAliyana\nAmairany\nAmbar\nAnai\nAnela\nAnn\nArissa\nAsha\nAshlie\nAviana\nAzucena\nBaylie\nBerlin\nBeverly\nBrandi\nBria\nBrianne\nBritany\nBryce\nBrylee\nCailin\nCalli\nCamilla\nCaylee\nChantel\nCharlene\nCharli\nChelsie\nDaira\nDaisha\nDanae\nDarby\nDavina\nDestinee\nDestini\nElexa\nEllen\nElsa\nElva\nElyana\nEmelia\nEmmie\nEstella\nGeraldine\nGinger\nGisela\nGriselda\nHunter\nIleana\nIlianna\nIlse\nIreland\nJaci\nJailyn\nJalissa\nJaquelin\nJaylah\nJazelle\nJessa\nJessenia\nJessika\nJewel\nJhoana\nJocelyne\nJolette\nJoscelyn\nJoselynn\nJuliann\nKaci\nKaelynn\nKailynn\nKalli\nKalyn\nKambria\nKatharine\nKathy\nKeisha\nKellie\nKeyra\nKimber\nKimberley\nKimberli\nKlara\nKloey\nKourtney\nLaisha\nLanie\nLaylah\nLeann\nLeilah\nLela\nLexis\nLibby\nLidia\nLilah\nLilia\nLillyan\nLilyan\nLoren\nLouisa\nMakaila\nMalaya\nMalina\nMarcella\nMarializ\nMariam\nMarianne\nMattea\nMaylin\nMayrin\nMelia\nMelinda\nMichele\nMilani\nMilena\nMiley\nMina\nMoriah\nMylee\nMyranda\nNatali\nNikole\nNoelani\nNyah\nOriana\nPaisley\nPersephone\nRachelle\nRaelyn\nRaelynn\nRashel\nRene\nRoberta\nRobin\nRory\nRosie\nRyley\nSally\nSanjana\nSeanna\nShae\nShaelynn\nShaina\nShandiin\nShaylyn\nShirley\nShreya\nSydnie\nTalya\nTaya\nTaytum\nTess\nThea\nTrina\nTristen\nTristin\nTylee\nUnique\nVianna\nVivienne\nYadhira\nYaneli\nYanet\nYanitza\nYara\nYvonne\nZariyah\nZuleika\nZulema\nIsabella\nEmily\nMia\nSophia\nAshley\nEmma\nMadison\nAva\nSamantha\nElizabeth\nAbigail\nNatalie\nAlyssa\nOlivia\nAlexis\nHannah\nBrianna\nHailey\nChloe\nNevaeh\nVictoria\nAlexa\nSavannah\nAddison\nKimberly\nAndrea\nCamila\nMaria\nTaylor\nValeria\nJocelyn\nSofia\nAngelina\nJessica\nElla\nJasmine\nGrace\nJennifer\nEvelyn\nBrooke\nSarah\nAriana\nLily\nKayla\nLauren\nMelanie\nGabriella\nAlexandra\nMariah\nVanessa\nDestiny\nArianna\nZoe\nKaylee\nSydney\nIsabel\nStephanie\nNicole\nDaniela\nMariana\nJulia\nMaya\nRiley\nLillian\nMichelle\nDiana\nLeslie\nBrooklyn\nJade\nAaliyah\nAubrey\nAvery\nAnna\nRachel\nTrinity\nLiliana\nNatalia\nAudrey\nGiselle\nMya\nValerie\nAllison\nFaith\nJazmin\nKylie\nAlexia\nGabriela\nAna\nKatelyn\nMakayla\nKarla\nMadeline\nIsabelle\nJacqueline\nMegan\nAngela\nEsmeralda\nKaitlyn\nRuby\nAdriana\nGenesis\nAngelica\nKatherine\nRylee\nAlicia\nDanielle\nJoselyn\nMackenzie\nMorgan\nLayla\nNaomi\nSophie\nMarissa\nTatum\nBella\nGianna\nJordan\nAmy\nBailey\nMiranda\nAlondra\nBriana\nDaisy\nHaley\nPaige\nEva\nKeira\nLeah\nClaire\nDulce\nJayden\nMelissa\nAutumn\nSadie\nSienna\nGabrielle\nLilly\nRebecca\nAbril\nJasmin\nJuliana\nKate\nAlejandra\nAmanda\nBreanna\nHayden\nKatie\nSerenity\nAshlyn\nPayton\nZoey\nAmaya\nSara\nXimena\nCharlotte\nJenna\nJulissa\nKaren\nKylee\nBianca\nKennedy\nSierra\nAmelia\nCrystal\nFernanda\nPaola\nJazmine\nCheyenne\nReese\nAngel\nElena\nAlana\nAlina\nJordyn\nAdrianna\nEliana\nMadelyn\nMolly\nYoselin\nAlessandra\nAlexandria\nAmber\nCassandra\nKarina\nLaila\nMonica\nPeyton\nShelby\nAriel\nEllie\nJulianna\nLizbeth\nMckenna\nNotnamed\nReagan\nAnahi\nCarolina\nErin\nLeilani\nLucy\nChristina\nGuadalupe\nMary\nErika\nKyra\nMckenzie\nScarlett\nGracie\nJada\nMelody\nVeronica\nCeleste\nCynthia\nItzel\nIzabella\nPaulina\nSabrina\nDakota\nDesiree\nMelany\nNataly\nPerla\nRosa\nDayanara\nEstrella\nLydia\nSavanna\nApril\nBrenda\nCarmen\nCatherine\nDelaney\nLesly\nAzul\nElise\nJillian\nKiara\nMarisol\nMikayla\nTessa\nAurora\nEliza\nFatima\nKiera\nMakenzie\nNadia\nRegina\nReyna\nSummer\nAlissa\nAliyah\nAngelique\nEden\nHope\nLaura\nAbby\nCaitlyn\nJamie\nKassandra\nKathryn\nKendall\nPriscilla\nTeagan\nViviana\nBrielle\nCiara\nLilliana\nPresley\nSelena\nViolet\nVivian\nAylin\nDana\nKaylie\nKelly\nLeila\nRaquel\nYasmin\nCecilia\nIris\nPaula\nBrooklynn\nCassidy\nDayana\nDelilah\nIvy\nKendra\nKyla\nLexi\nPiper\nAmerica\nAnnabelle\nAshlynn\nBethany\nHaylie\nIliana\nJaqueline\nLola\nMakenna\nMarely\nMarina\nMaritza\nTatiana\nChelsea\nClaudia\nHaylee\nHolly\nJaden\nJoanna\nKailey\nPatricia\nRubi\nAileen\nAngie\nAudrina\nCaitlin\nCarly\nDanika\nEsther\nGloria\nJadyn\nKamila\nKaylin\nLindsay\nMonique\nPamela\nRuth\nSarai\nTiffany\nWendy\nYadira\nYesenia\nArely\nAyla\nBrittany\nJanessa\nJayla\nLeticia\nLuna\nMadeleine\nNayeli\nSandra\nStella\nAthena\nBrenna\nCadence\nCamryn\nDanica\nDanna\nDenise\nHelena\nJohanna\nJulie\nKayden\nKayleigh\nKiana\nMacy\nMaggie\nMiley\nMiriam\nSasha\nYazmin\nYuliana\nAlaina\nAria\nCindy\nCristal\nDaniella\nHeidi\nKara\nKira\nLindsey\nNatasha\nPenelope\nRylie\nValentina\nYareli\nAlivia\nAnastasia\nAriza\nBrisa\nBryanna\nClara\nClarissa\nIsis\nJaelyn\nJimena\nJosephine\nJudith\nJuliet\nLuz\nMaddison\nMargaret\nMelina\nSkylar\nAddyson\nAllie\nAllyson\nAnissa\nCamille\nCaroline\nCourtney\nHailee\nIsabela\nLila\nMarlene\nSerena\nTaryn\nAlma\nAsia\nElle\nEmely\nErica\nIvanna\nJoselin\nKelsey\nKiley\nLexie\nLucia\nMarley\nShayla\nAiyana\nAlize\nAnnie\nAubree\nAyleen\nDenisse\nJazlyn\nKaydence\nKrystal\nLesley\nLilyana\nMadisyn\nMallory\nMarilyn\nMichaela\nNora\nPaloma\nPhoebe\nRyleigh\nSamara\nTalia\nTania\nYamileth\nAlayna\nAlison\nAnaya\nAniyah\nBrynn\nCarla\nCristina\nEsperanza\nHayley\nJaslene\nKaitlin\nKaitlynn\nKristina\nLacey\nLinda\nMadilyn\nMayra\nRose\nAracely\nAreli\nAryanna\nAshlee\nCamilla\nDominique\nFrida\nGisselle\nIngrid\nLiana\nLilian\nLogan\nLyla\nNancy\nNathalie\nPaisley\nRebekah\nSherlyn\nXiomara\nYvette\nZariah\nAryana\nBailee\nBelen\nCora\nDylan\nEmerson\nEvangeline\nFiona\nGenevieve\nHanna\nJoy\nKailee\nKenia\nKenya\nLarissa\nLizeth\nMalia\nMireya\nNoelia\nNoelle\nSage\nSarahi\nSedona\nTara\nWillow\nYamilet\nYuridia\nAdilene\nAnnika\nArleth\nAspen\nCameron\nDahlia\nHarley\nHazel\nJacquelyn\nJaidyn\nKali\nKamryn\nKarime\nKeyla\nMadelynn\nMarianna\nMariela\nMarisa\nMercedes\nNina\nParis\nRebeca\nRihanna\nAlena\nAlexus\nAlice\nAmara\nAnya\nBerenice\nCambria\nCheyanne\nDania\nDanitza\nDiamond\nEmilee\nEvelin\nGeorgia\nGrecia\nHarmony\nHeaven\nHelen\nJanet\nJenny\nLisa\nLondon\nMarie\nMarlee\nMartha\nMaryjane\nMonserrat\nRyan\nSariah\nSidney\nStephany\nSylvia\nYaritza\nAda\nAubrie\nBarbara\nBrynlee\nDeanna\nDesirae\nEdith\nElisa\nEve\nGwendolyn\nIrene\nIsela\nJanelle\nJayda\nJustice\nKaelyn\nKaryme\nKatelynn\nKathleen\nKenzie\nLana\nLitzy\nMylee\nNoemi\nRocio\nScarlet\nShannon\nSiena\nTanya\nVianey\nWhitney\nYahaira\nAbbigail\nAdelina\nAdeline\nAilyn\nAliya\nAmira\nAnika\nAnnabella\nCallie\nChristine\nDamaris\nDaphne\nDonna\nElliana\nElyse\nEstefania\nGiovanna\nGraciela\nHarper\nJohana\nJosie\nJuliette\nKatrina\nKaylynn\nKimora\nKristin\nLaci\nLena\nLilah\nMaite\nMarisela\nMayte\nMelani\nNatalee\nNathaly\nNeveah\nReina\nRenee\nRosemary\nRylan\nSerina\nSimone\nSkyla\nSkyler\nTeresa\nTheresa\nVania\nYajaira\nAdamaris\nAdele\nAliana\nAmelie\nAngeline\nAnisa\nAnnette\nAraceli\nAshly\nBeyonce\nBlanca\nBrianda\nBridget\nBrittney\nChanel\nCienna\nDalia\nEileen\nEmery\nEmilia\nEstefani\nFelicity\nGalilea\nHalle\nJanae\nJazmyn\nJessie\nKassidy\nKeila\nKyleigh\nLilith\nLillie\nLuisa\nMacey\nMaia\nMariajose\nMikaela\nMyah\nRayna\nRenata\nShaylee\nTabitha\nTaliyah\nYessenia\nAlyson\nAniya\nAshleigh\nBaylee\nBreana\nBritney\nBrylee\nCitlaly\nDeborah\nDestinee\nEleanor\nEmber\nFabiola\nHaven\nIreland\nJaelynn\nJaiden\nJane\nJaquelin\nJaylene\nJocelynn\nJolie\nJordin\nJordynn\nKaiya\nKarly\nKelsie\nKiersten\nKristen\nLucero\nMadalyn\nNatali\nNia\nNizhoni\nPhoenix\nPrecious\nPriscila\nRowan\nSelene\nStacy\nSydnee\nTayler\nTyra\nValery\nYarely\nYaretzi\nAbbie\nAbbygail\nAdelaide\nAdison\nAlani\nAlanna\nAlannah\nAleena\nAlyna\nAnalisa\nAnaly\nAnnalise\nAriah\nBeatriz\nCarina\nCharlize\nCloe\nDelia\nDiane\nElisabeth\nFrancesca\nGissel\nGreta\nHana\nHeather\nJaneth\nJaquelyn\nJayleen\nJazlynn\nJenifer\nJolene\nJoseline\nJoslyn\nKaila\nKailyn\nKallie\nKarol\nKatia\nKirsten\nLacy\nLaisha\nLauryn\nLeyla\nLilianna\nLillianna\nLorena\nLyric\nMacie\nMadilynn\nMakena\nMaricela\nNalani\nNichole\nQuinn\nRegan\nRhianna\nRhiannon\nRoselyn\nSalma\nShania\nShayna\nShea\nShiloh\nShyla\nSkye\nSonia\nTiana\nTori\nYolanda\nYoselyn\nAddisyn\nAkira\nAleah\nAmaris\nAnabella\nAngelita\nAnnabel\nAntonia\nArabella\nAverie\nBelinda\nBetsy\nBridgette\nBrinley\nBrissia\nCali\nCarissa\nCarolyn\nCasey\nCatalina\nDariana\nDayra\nDeja\nElaina\nElaine\nElianna\nEllen\nEvelynn\nImani\nItalia\nJackelyn\nJaycee\nJayde\nJaylee\nJaylynn\nJazelle\nJoana\nJoceline\nJustine\nKadence\nKamilah\nKarely\nKayleen\nKelsi\nKenna\nKhloe\nKianna\nLaney\nLeia\nLia\nLluvia\nLourdes\nMadyson\nMagdalena\nMaleah\nMarian\nMarin\nMayrin\nMiah\nMicaela\nMilan\nNadya\nNelly\nNikki\nPrincess\nRaina\nReece\nRiya\nRyann\nSaige\nSelah\nSheila\nShyann\nTamara\nTatianna\nThalia\nTina\nVianney\nXochitl\nYara\nYulissa\nZuleika\nAdalyn\nAdamari\nAinsley\nAlisa\nAlisha\nAlisson\nAlly\nAlora\nAnabelle\nAnais\nAnalicia\nAngeles\nAnita\nAnyssa\nAriella\nAubriana\nAudra\nAurelia\nAyana\nAyanna\nBriseida\nBriseyda\nCarol\nCaylee\nChelsey\nCherish\nCielo\nCitlali\nDani\nDeisy\nElsie\nEmmie\nGina\nHaleigh\nHallie\nHillary\nIvana\nJaylin\nJewel\nJocelyne\nJosslyn\nJourney\nJuanita\nKarma\nKarolina\nKasandra\nKasey\nKaylah\nKeana\nKeegan\nKyara\nLea\nLeilany\nLillyana\nLillyanna\nLilyann\nLorelai\nLucille\nMaiya\nMargarita\nMariafernanda\nMariangel\nMeadow\nMeredith\nMontserrat\nNathalia\nRaegan\nRaven\nRian\nRoxana\nRoxanne\nSarina\nShaila\nShyanne\nSuri\nSusan\nSusana\nTanisha\nTia\nTianna\nYocelin\nZara\nZoie\nAbagail\nAdrina\nAimee\nAliza\nAlycia\nAlysa\nAmya\nAnalise\nAnastacia\nAniah\nAnnamarie\nArielle\nAubrianna\nAviana\nBetzaida\nBriella\nBriseis\nBrissa\nCaitlynn\nCandice\nCapri\nCarley\nCarmela\nCasandra\nChanelle\nCharity\nChristiana\nDaira\nDalilah\nDavina\nDestiney\nDianna\nElia\nEmilie\nEmmalee\nEricka\nEryn\nEvie\nFlor\nFrances\nGiana\nGillian\nGizelle\nGladis\nHadassah\nIvonne\nIzabelle\nJackeline\nJaclyn\nJanie\nJaya\nJaylen\nJazzlyn\nJocelin\nJosefina\nJoslynn\nKaia\nKalyn\nKatarina\nKaterina\nKristal\nLeslye\nLexus\nLisette\nLissette\nLizette\nMaci\nMaile\nMaliyah\nMarcela\nMaren\nMaribel\nMarlen\nMaryn\nMerissa\nMila\nMilana\nMiya\nMontana\nMyra\nNorma\nRachael\nRayne\nReanna\nRhea\nRhyan\nRianna\nRosalinda\nSaanvi\nSahara\nSavanah\nSayuri\nSheyla\nSianna\nSinai\nTatyana\nTegan\nYsabella\nZuri\nAbbey\nAddisen\nAhtziri\nAlanah\nAli\nAlianna\nAlyssia\nAmairany\nAmalia\nAmari\nAmerie\nAmie\nAmiya\nAnabel\nAnnabell\nAnnalicia\nAnnalisa\nAnne\nAolanis\nArlette\nArya\nAubry\nAustin\nAvalon\nAvianna\nAyva\nAzucena\nBaylie\nBelle\nBlessing\nBrandi\nBrandy\nBrookelynn\nCayla\nCecelia\nCelia\nCharlene\nCharlie\nCianna\nClare\nCorinne\nDanya\nDayanna\nDayna\nEdna\nEleni\nElvia\nEmmy\nEvalyn\nFinley\nGeorgina\nGia\nGiada\nGiavanna\nGisell\nGretchen\nHaidyn\nHailie\nHalie\nHayleigh\nHeidy\nIdaly\nIsabell\nItzayana\nJailynn\nJaliyah\nJalynn\nJanice\nJaslyn\nJaylyn\nJazlene\nJazmyne\nJoselyne\nJoselynn\nJovana\nJulieanna\nJustina\nKaci\nKairi\nKaley\nKalina\nKaliyah\nKari\nKarissa\nKateri\nKathy\nKayli\nKierstyn\nKinsey\nKitzia\nKiya\nLacie\nLainey\nLara\nLarisa\nLeanna\nLeilene\nLezly\nLianna\nLiberty\nLilyan\nLilyanna\nLorelei\nLynette\nMaeve\nMalaya\nMarbella\nMarcella\nMareli\nMarla\nMayah\nMaylin\nMercedez\nMichell\nMildred\nMina\nMischa\nMoriah\nNadine\nNorah\nNubia\nNya\nNyah\nPaityn\nParker\nPaulette\nPetra\nPricilla\nRaelynn\nRilee\nRita\nRobin\nRory\nScarlette\nSicily\nSilvia\nSofie\nSoleil\nStacey\nStefany\nStevie\nTaya\nTess\nTristan\nTristen\nUnique\nVicky\nVioleta\nVirginia\nViridiana\nXitlali\nYanet\nYazmine\nYelitza\nYessica\nYoseline\nZaira\nZuleyka\nAaralyn\nAbrianna\nAbrielle\nAbygail\nAcacia\nAddilyn\nAdelynn\nAdrienne\nAdyson\nAfton\nAilany\nAiram\nAislinn\nAixa\nAiyanna\nAlysia\nAmiyah\nAnahy\nAndie\nAneesa\nAnette\nAngelli\nAngely\nAnjelica\nAnn\nAriadna\nAstrid\nAudrianna\nAvril\nAzalea\nBeatrice\nBetty\nBetzy\nBianka\nBraelynn\nBrayden\nBria\nBrinlee\nBrook\nCaleigh\nCalista\nCarlee\nCaydence\nCeline\nCharley\nCharli\nCoral\nDafne\nDallas\nDanae\nDelanie\nDelila\nDennise\nDestany\nDevin\nDevyn\nDivina\nDixie\nDiya\nDolores\nDrew\nEllia\nElora\nElysia\nElyssa\nEma\nEmmely\nEmmerson\nEstefany\nEvangelina\nFallon\nGeraldine\nGinger\nGisel\nGisele\nGladys\nGlenda\nHaily\nHunter\nIrie\nIzabel\nIzel\nJacie\nJackie\nJacquelin\nJaeda\nJaedyn\nJaida\nJailyn\nJaime\nJalyn\nJalyssa\nJasmyn\nJersey\nJianna\nJiselle\nJoelle\nKacey\nKalani\nKaleigh\nKalia\nKalista\nKamya\nKarizma\nKarlee\nKaty\nKaya\nKennadi\nKiarra\nKierra\nKimberli\nKinsley\nKirstin\nKrista\nKylea\nKyrie\nLandry\nLaylah\nLaysha\nLeilah\nLexy\nLidia\nLuciana\nLynda\nMabel\nMadalynn\nMadisen\nMae\nMaliah\nMari\nMariaelena\nMariangela\nMartina\nMattie\nMeagan\nMeghan\nMilagros\nMilena\nMiracle\nMylie\nMyranda\nNahima\nNaima\nNaiya\nNatalya\nNayely\nNidhi\nNoel\nNoelani\nNoemy\nNohemi\nOakley\nOriana\nPayten\nPearl\nRachelle\nRandi\nRaylee\nReilly\nRosemarie\nRoxanna\nRyanne\nSabina\nSamanta\nSamaria\nSamaya\nSamira\nSaydee\nShae\nShaina\nShandiin\nShaylin\nShivani\nSky\nSloan\nSoraya\nSunshine\nThea\nTristin\nTylee\nVivianna\nXitlaly\nYasmine\nYesica\nYvonne\nZainab\nZaria\nZuleima\nIsabella\nSophia\nEmma\nEmily\nMia\nAbigail\nAva\nSamantha\nMadison\nElizabeth\nOlivia\nAshley\nAlexis\nNatalie\nChloe\nCamila\nAlyssa\nBrianna\nVictoria\nHailey\nAlexa\nValeria\nAddison\nLily\nHannah\nGrace\nElla\nNevaeh\nKimberly\nTaylor\nEvelyn\nSavannah\nGenesis\nDestiny\nAriana\nSofia\nMaria\nRiley\nAndrea\nMariah\nKaylee\nAngelina\nJessica\nJasmine\nAllison\nGabriella\nSarah\nBrooklyn\nAlexandra\nJennifer\nVanessa\nNatalia\nJocelyn\nArianna\nAubrey\nBrooke\nMelanie\nMichelle\nZoe\nLayla\nAudrey\nKayla\nMakayla\nLillian\nAaliyah\nPeyton\nKylie\nMaya\nSydney\nStephanie\nMorgan\nBella\nGiselle\nIsabel\nMya\nSerenity\nTrinity\nAvery\nBailey\nDaniela\nIsabelle\nMadeline\nAnna\nGianna\nFaith\nLauren\nLeah\nLeslie\nNicole\nMelissa\nDiana\nJacqueline\nMiranda\nPayton\nKatherine\nKaitlyn\nAlicia\nGabriela\nKatelyn\nMadelyn\nKate\nLiliana\nMackenzie\nAmaya\nJade\nJulia\nRylee\nClaire\nAmelia\nJazmin\nAdriana\nAlondra\nAngela\nHayden\nAlexia\nCharlotte\nSophie\nBriana\nMiley\nRachel\nAmy\nDaisy\nRebecca\nRuby\nSadie\nAna\nAngelica\nKarla\nTatum\nNaomi\nMariana\nMarissa\nBianca\nLucy\nXimena\nZoey\nEsmeralda\nPaige\nJordan\nLilly\nMegan\nSara\nSienna\nValerie\nAlejandra\nHaley\nKeira\nScarlett\nAshlyn\nDelilah\nMarley\nAutumn\nJenna\nEva\nJazmine\nMary\nAlexandria\nGabrielle\nJuliana\nMarely\nGracie\nLeilani\nReagan\nViolet\nElena\nEllie\nKennedy\nSierra\nIzabella\nKylee\nReese\nAudrina\nDanielle\nKaren\nSabrina\nValentina\nDulce\nEstrella\nJordyn\nLydia\nAurora\nMakenna\nReyna\nEliana\nPriscilla\nFernanda\nJasmin\nKatie\nMikayla\nFatima\nItzel\nAmanda\nEden\nJayden\nStella\nAnnabelle\nDesiree\nJulianna\nKarina\nKiara\nLaila\nMolly\nAliyah\nMakenzie\nMonica\nNataly\nCarmen\nDanna\nPaulina\nAlina\nAmber\nApril\nAriel\nBrooklynn\nCecilia\nCheyenne\nGuadalupe\nHaylee\nHope\nKassandra\nKhloe\nTessa\nAmerica\nBrielle\nCatherine\nErika\nIvy\nJazlyn\nMckenna\nMelany\nNayeli\nAdrianna\nAlana\nJimena\nLondon\nVeronica\nAllisson\nCarolina\nShelby\nAbril\nCynthia\nDayanara\nPerla\nAngel\nCaitlyn\nCassandra\nIris\nJaslene\nJoanna\nJoselyn\nKamila\nKira\nLaura\nLyla\nPaola\nVivian\nAnahi\nBreanna\nCaitlin\nCassidy\nGenevieve\nJulissa\nKyla\nLexi\nRubi\nAlessandra\nCamryn\nChristina\nDaniella\nKendall\nKiera\nLeila\nLizbeth\nLucia\nLuna\nNotnamed\nTeagan\nTiffany\nAshlynn\nAthena\nBrenda\nCadence\nCeleste\nChelsea\nEmely\nErin\nJamie\nMckenzie\nMelody\nSarai\nAngelique\nCamille\nCaroline\nDelaney\nJada\nJosephine\nPaisley\nRihanna\nSkylar\nYareli\nAlison\nAllyson\nCiara\nClara\nDanika\nEliza\nHolly\nJanelle\nKayleigh\nLola\nMarisol\nPresley\nYesenia\nCallie\nDanica\nElise\nErica\nGloria\nJadyn\nJillian\nLindsey\nNadia\nNora\nViviana\nYoselin\nAlice\nAngie\nArely\nAzul\nDenise\nHeidi\nJaelyn\nKatelynn\nKaydence\nKendra\nMadilyn\nMarlee\nSummer\nWendy\nYaretzi\nAnastasia\nAriza\nAubree\nAyla\nJayla\nKaylie\nKyra\nLilliana\nMalia\nRylie\nYamileth\nAdeline\nAylin\nHarmony\nJulie\nKathryn\nLacey\nMaritza\nRosa\nTatiana\nBryanna\nCrystal\nJayda\nKaitlin\nKali\nLindsay\nMelina\nPiper\nRaquel\nSandra\nShayla\nYazmin\nAbby\nAileen\nAllie\nAmira\nAnaya\nAraceli\nBrenna\nDayami\nDayana\nDenisse\nKelsey\nLilyana\nMargaret\nNoelle\nRebekah\nSamara\nSasha\nSavanna\nAlissa\nAniyah\nAnya\nClaudia\nDana\nElle\nHalle\nIsis\nKayden\nKeyla\nKiana\nKiley\nLesly\nMiriam\nPatricia\nSelah\nYasmin\nAbbigail\nAnnabella\nBrynn\nCarla\nCourtney\nDamaris\nHanna\nIliana\nJanessa\nKailey\nKelly\nLeticia\nLexie\nLia\nLilian\nMarina\nMarlene\nMikaela\nPaloma\nSelena\nSerena\nSherlyn\nYaritza\nCarly\nFrida\nHailee\nJaylene\nKailyn\nKara\nKyleigh\nLila\nMacy\nMaddison\nMaggie\nMareli\nMarilyn\nMila\nNancy\nPenelope\nRyleigh\nVianey\nAinsley\nAnnika\nAubrianna\nClarissa\nDakota\nDominique\nElaina\nEmerson\nEmery\nEmilee\nHarley\nHeaven\nIsabela\nJaycee\nKadence\nKaelyn\nKailee\nMaryjane\nMayrin\nMckayla\nMercedes\nNatasha\nNoelia\nPamela\nPaula\nSage\nSedona\nYamilet\nAddyson\nAlaina\nAlyson\nAnnie\nCamilla\nCora\nDiamond\nDonna\nElisa\nEsther\nHazel\nIngrid\nIvanna\nMadeleine\nMartha\nMonique\nMylee\nQuinn\nRegina\nShannon\nAlanna\nAlize\nAnika\nCali\nCatalina\nChanel\nFiona\nGisselle\nHeather\nIsabell\nIvana\nJaqueline\nJazlynn\nKamryn\nKaylynn\nKenya\nMichaela\nReina\nRose\nSariah\nTanya\nTeresa\nWhitney\nAiyana\nAlisson\nAmara\nAnabelle\nAryanna\nBrisa\nCristal\nEleanor\nEve\nHarper\nJaden\nJaiden\nJasmyn\nJazlene\nJohanna\nJolie\nKarissa\nKristen\nLiana\nLilah\nMarianna\nMarie\nParker\nSarahi\nAdelina\nAlayna\nAlena\nAliana\nAnissa\nBarbara\nBaylee\nBethany\nBrittany\nCheyanne\nCindy\nCristina\nDalila\nDylan\nEmilia\nEsperanza\nGizelle\nHillary\nJaidyn\nKarlee\nKimora\nKrystal\nLea\nLilianna\nLilyanna\nLluvia\nMadalyn\nMadyson\nMayra\nMireya\nNathaly\nNina\nPhoebe\nRachael\nRaegan\nRenee\nRowan\nRuth\nSharon\nSkyla\nTabitha\nTalia\nTaryn\nYadira\nYuliana\nAimee\nAleah\nAlivia\nAlma\nAngelita\nAria\nAryana\nAyleen\nBelen\nBelinda\nBraelyn\nBrylee\nCara\nCaylee\nCharlize\nDeborah\nElsie\nFelicity\nGeorgia\nHayley\nHelen\nIsela\nJane\nJanice\nJayleen\nJaylin\nJazmyn\nKaitlynn\nKenna\nLana\nLinda\nLitzy\nLorena\nLuz\nMadelynn\nMadisyn\nMakena\nMiah\nMilagros\nMonserrat\nMyah\nNatalee\nNathalie\nNoemi\nParis\nRhianna\nScarlet\nShyanne\nXochitl\nYazmine\nAdilene\nAilyn\nAlaya\nAleena\nAmari\nAnnette\nArlene\nArleth\nAshlee\nBlanca\nCameron\nCarissa\nDeanna\nEileen\nElliana\nEvangeline\nEvelin\nFinley\nGiada\nGiovanna\nGrecia\nHadley\nIrene\nJaylynn\nJessie\nJocelynn\nJordin\nJuliette\nKaryme\nKatia\nKianna\nKristina\nLillyana\nLogan\nLyric\nMacie\nNeveah\nRayna\nShiloh\nStacy\nTania\nTori\nZariah\nAbbey\nAlani\nAlexus\nAlyna\nAmelie\nAmya\nAnalia\nAnnabel\nAnne\nAracely\nAriadna\nAyana\nBridget\nBriseyda\nBritney\nCarina\nCharlie\nCherish\nCienna\nCierra\nCitlali\nDahlia\nEstefania\nHadassah\nHaylie\nJayde\nJazleen\nJosie\nJuliet\nJune\nKaley\nKirsten\nLauryn\nLilith\nLillianna\nLillie\nLillyanna\nLucero\nMacey\nMarisa\nMarlie\nMeghan\nPrecious\nRegan\nSaige\nSidney\nSoraya\nSylvia\nTiana\nTiara\nVioleta\nVirginia\nYarely\nZuleyka\nAdamaris\nAdelaide\nAlisha\nAmiyah\nAnabel\nAnabella\nArabella\nAreli\nArlette\nAspen\nAubrie\nAudriana\nAveri\nBeatriz\nBraelynn\nBryana\nCharlee\nCharley\nChristine\nCloe\nDania\nDaphne\nDayanna\nElsa\nEmmalee\nGraciela\nGwendolyn\nHallie\nJackeline\nJaida\nJanet\nJayme\nJolene\nKaila\nKarely\nKassidy\nKaylen\nKayley\nKaylin\nKendyl\nKenzie\nLarissa\nLondyn\nLuisa\nMaia\nMariajose\nMariam\nMaribel\nMarisela\nMelani\nMina\nMiracle\nNatali\nNorah\nPhoenix\nRosario\nRyan\nRyann\nSiena\nThalia\nTheresa\nTianna\nXiomara\nYanitza\nYara\nYuridia\nYvette\nAbbie\nAda\nAliya\nAmaris\nAmina\nAnalicia\nAnyssa\nArmani\nAstrid\nAubriana\nCiana\nCielo\nDalia\nDalilah\nDestiney\nElianna\nEmilie\nFabiola\nFlor\nGalilea\nHeidy\nHelena\nJacquelin\nJacquelyn\nJaelynn\nJaquelin\nJaslyn\nJaylee\nJazmyne\nJudith\nKasey\nKatrina\nKaya\nKayleen\nKayli\nKeely\nKendal\nKenia\nLacy\nLara\nLeilany\nLena\nLiberty\nLina\nLizeth\nLyra\nMaite\nMallory\nMaren\nMariafernanda\nMariela\nMarlen\nMatilda\nMicaela\nNadine\nPaityn\nPayten\nPriscila\nRenata\nRomina\nRosalinda\nRosemary\nSarina\nSavanah\nShania\nSheyla\nSoleil\nSusana\nTaytum\nTia\nUnique\nWillow\nYailin\nZoie\nAdelyn\nAdrienne\nAliza\nAlysa\nAnita\nAniya\nAnnalise\nArielle\nAshly\nAsia\nBailee\nBetsy\nBrandi\nBrissa\nBrissia\nBrynlee\nCailyn\nCalista\nCasey\nCayla\nCelia\nDani\nDanitza\nDarla\nDarlene\nDasha\nDayanira\nDestinee\nElaine\nElisabeth\nElyse\nEmber\nEmmie\nEstella\nEvelynn\nFrancisca\nGia\nGisele\nGiuliana\nGwenyth\nHaven\nImani\nIsla\nIvette\nIzabelle\nJaneth\nJenny\nJewel\nJohana\nJustice\nKaelynn\nKaiya\nKarime\nKathleen\nKelsie\nKierra\nLeanna\nLeona\nLizette\nLorelei\nMadalynn\nMadilynn\nMaiya\nMariyah\nMilan\nMontserrat\nMoriah\nNaima\nNathalia\nNizhoni\nPatience\nPrincess\nRaelynn\nRianna\nRilee\nRoselyn\nSalma\nSavana\nSayuri\nSelina\nShea\nShyla\nSkye\nStar\nStephany\nSydnee\nTyler\nValery\nVera\nVianney\nViridiana\nYasmine\nYulissa\nZara\nAdalyn\nAddisyn\nAditi\nAdyson\nAiden\nAisha\nAlexys\nAlianna\nAmalia\nAnnalee\nAntonia\nArden\nAriah\nAvril\nAyden\nBlessing\nBrandy\nCailin\nCampbell\nCharisma\nChristiana\nCiera\nDaelynn\nDanae\nDayra\nDelanie\nDiya\nEdith\nElissa\nEllen\nEmmy\nEvalyn\nGemma\nHayleigh\nHennessy\nHilary\nItzayana\nIzabel\nJanae\nJanette\nJaniyah\nJoselin\nJoslynn\nJulieta\nJustine\nKaia\nKailani\nKaili\nKalia\nKallie\nKalyn\nKeila\nKimber\nKirra\nKrista\nLailah\nLaney\nLeia\nLorelai\nLucille\nLupita\nMaci\nMaleah\nMaliyah\nMara\nMarcela\nMargarita\nMarian\nMeadow\nMilla\nMira\nMollie\nMyla\nNayely\nNelly\nNia\nNicolette\nNikki\nNola\nRaina\nRaven\nRayne\nRoxanne\nRylan\nSahara\nSamia\nShaylee\nSimone\nSonia\nStacey\nStevie\nSunshine\nSuri\nTess\nTierra\nToni\nVanesa\nVienna\nYolanda\nYulianna\nZaria\nAbrianna\nAbrielle\nAdison\nAiyanna\nAlanis\nAli\nAlisa\nAlliyah\nAlly\nAlycia\nAmairany\nAmayah\nAmiya\nAnalisa\nAnalise\nAndie\nAngeles\nAngelly\nAni\nAniah\nAnsley\nAriyana\nArlyn\nAubry\nAvalon\nAyanna\nAyva\nBetzy\nBree\nBrinley\nBriseida\nCandace\nCasandra\nCassie\nCaydence\nCharity\nClare\nCorinne\nDelia\nDemi\nDiane\nEunice\nEvangelina\nEvie\nFelicia\nFrancesca\nGeorgina\nGeraldine\nGiana\nGladys\nGracelyn\nGwen\nHeydi\nIlliana\nIlse\nIrma\nIxchel\nJackelyn\nJanie\nJaslynn\nJaylyn\nJeanette\nJenesis\nJennavecia\nJersey\nJessenia\nJessi\nJoana\nJocelin\nJordynn\nJoselynn\nJosselyn\nJulianne\nKai\nKailynn\nKalli\nKamilah\nKaylyn\nKinley\nKinsey\nKyara\nLaysha\nLeann\nLeigha\nLeyla\nLidia\nLilee\nLilia\nLisa\nLisette\nLouisa\nLourdes\nLuciana\nLynette\nMaddie\nMadisen\nMagdalena\nMaylin\nMeredith\nMyra\nNaila\nNallely\nNubia\nNyla\nOlga\nOlive\nPaulette\nPreslee\nRayanna\nReanna\nRebeca\nRhyan\nRory\nRoxy\nSaira\nSelene\nShyann\nSilvana\nSkyler\nSloane\nTamara\nTara\nTatianna\nTayla\nTriniti\nTrista\nVania\nWinter\nXitlaly\nYahaira\nYanira\nYessenia\nYoselyn\nZaira\nAddie\nAhtziry\nAideliz\nAila\nAilin\nAiram\nAlannah\nAlayah\nAlexie\nAlizabeth\nAlyana\nAlysia\nAmairani\nAmani\nAmariah\nAnamaria\nAndi\nAnette\nAngelia\nAngelic\nAnisa\nAnjali\nAnn\nAolanis\nAriella\nAsha\nAundrea\nAurelia\nAverie\nAvianna\nBeatrice\nBerlin\nBerlyn\nBianka\nBlake\nBrea\nBria\nBrianda\nBrianne\nBrilee\nBrisia\nBritany\nBrook\nBrooklin\nCarli\nCecelia\nChantal\nChevelle\nChiara\nColette\nColleen\nConstanza\nCorina\nDafne\nDallas\nDawn\nDayani\nDayna\nDeja\nDennise\nDevyn\nDina\nDrew\nElayna\nEleni\nElisha\nEllery\nElliot\nElyssa\nEricka\nEster\nGabryella\nGinger\nHolland\nHunter\nIreland\nIrelyn\nIvory\nIzabell\nJaliyah\nJalyn\nJalynn\nJazelle\nJazzlyn\nJenessa\nJocelyne\nJoelle\nJourney\nJovanna\nJoy\nKaely\nKaidence\nKairi\nKaliyah\nKambria\nKamille\nKamyla\nKarley\nKarlie\nKarly\nKatarina\nKathy\nKatya\nKeegan\nKiersten\nKloe\nKloey\nKristin\nKylah\nKyndall\nLaci\nLacie\nLaisha\nLaylah\nLeeanna\nLeena\nLiah\nLianna\nLilli\nLivia\nLiyah\nLois\nLylah\nMakaylah\nMakenzi\nMalaya\nMariaelena\nMaricela\nMarjorie\nMaryann\nMattie\nMayah\nMelania\nMelanny\nMelia\nMelisa\nMilana\nMonet\nMonserrath\nMylie\nMyranda\nNayomi\nNereyda\nNika\nNikita\nNohemi\nNorma\nNylah\nOdalis\nPeighton\nRhiley\nRileigh\nRobin\nRocio\nRosie\nRoxana\nRoxanna\nSabina\nSamaya\nSandy\nSaniyah\nSavina\nSaylor\nScarlette\nShanelle\nShayna\nShayne\nSheila\nSilvia\nSimran\nSkylee\nSofie\nStarr\nSusan\nSylvana\nTamia\nTaya\nTaylin\nTegan\nVida\nVivianna\nVivienne\nXitlali\nYaretzy\nZayda\nIsabella\nSophia\nEmma\nMia\nEmily\nOlivia\nMadison\nAbigail\nAva\nSamantha\nNatalie\nChloe\nAshley\nElizabeth\nAlexis\nAlyssa\nValeria\nVictoria\nBrianna\nAddison\nTaylor\nLily\nHailey\nCamila\nSarah\nBella\nSofia\nAndrea\nAlexa\nAllison\nNevaeh\nGrace\nElla\nEvelyn\nKaylee\nZoe\nAriana\nKimberly\nSavannah\nAubrey\nHannah\nMaria\nBrooklyn\nGabriella\nMariah\nVanessa\nLeah\nArianna\nJocelyn\nLayla\nMaya\nPeyton\nRiley\nAaliyah\nBrooke\nMakayla\nAvery\nJasmine\nMelanie\nAlexandra\nAudrey\nGenesis\nSerenity\nJessica\nKayla\nMichelle\nDestiny\nFaith\nNatalia\nClaire\nGianna\nMackenzie\nAngelina\nLillian\nZoey\nTrinity\nGiselle\nIsabel\nAnna\nMadeline\nKaitlyn\nLiliana\nLauren\nStephanie\nEva\nRuby\nSophie\nMya\nBailey\nKylie\nNicole\nSadie\nTatum\nValerie\nAmaya\nMadelyn\nMorgan\nDaniela\nPaige\nSydney\nLeilani\nAmelia\nHayden\nLeslie\nSara\nAlexia\nCharlotte\nIsabelle\nJade\nKatherine\nMelissa\nJennifer\nPayton\nAngela\nKhloe\nLilly\nAmy\nJacqueline\nNaomi\nRachel\nMegan\nRylee\nXimena\nAlondra\nJulia\nKylee\nReagan\nDaisy\nSienna\nAutumn\nGabriela\nMariana\nAudrina\nScarlett\nIzabella\nLucy\nAdriana\nEllie\nFernanda\nKatelyn\nKeira\nAlicia\nMolly\nAliyah\nBriana\nJordyn\nStella\nAna\nElena\nJayden\nKennedy\nMiranda\nAdrianna\nKarla\nAurora\nDanielle\nValentina\nGabrielle\nJazmine\nJordan\nLyla\nViolet\nAngelica\nLondon\nMikayla\nAnahi\nLeila\nPiper\nAlejandra\nCheyenne\nJazmin\nLola\nEliana\nFatima\nJulianna\nKate\nMiley\nRebecca\nShelby\nTessa\nAshlyn\nBianca\nJuliana\nMakenna\nAlina\nDanna\nGracie\nAlexandria\nAriza\nAylin\nCecilia\nEsmeralda\nHaley\nKaren\nReese\nAlana\nJenna\nMelody\nAnnabelle\nCassandra\nDelilah\nMarley\nMonica\nAmber\nAnalia\nDulce\nMarissa\nAriel\nDiana\nKendall\nMckenna\nPenelope\nSierra\nVivian\nApril\nBrielle\nBrooklynn\nJimena\nSabrina\nAllyson\nAmanda\nAmerica\nAthena\nGuadalupe\nItzel\nKiara\nLaila\nMary\nMckenzie\nPriscilla\nLilliana\nLuna\nCamille\nCarmen\nElise\nIris\nJillian\nKatie\nSummer\nAngel\nChristina\nEstrella\nJada\nAyleen\nBrisa\nCrystal\nDaniella\nHaylee\nKathryn\nKendra\nLexi\nLydia\nMacy\nJoanna\nKadence\nAnnabella\nCaroline\nDayana\nErika\nHeidi\nJosephine\nKyla\nLaura\nSarai\nAileen\nCadence\nDelaney\nEden\nJamie\nJulissa\nKamila\nKarina\nKaydence\nKaylie\nLia\nNataly\nAlison\nHarmony\nIvanna\nJanelle\nJazlyn\nKyra\nLizbeth\nMakenzie\nMelina\nPaulina\nRosa\nSelena\nAbby\nBreanna\nCarolina\nDanica\nEmery\nGenevieve\nIvy\nJuliet\nMalia\nMaliyah\nNora\nPaola\nSavanna\nVeronica\nAshlynn\nAubree\nCamryn\nCassidy\nLilyana\nMelany\nReyna\nTeagan\nTiffany\nYaretzi\nAlessandra\nAnaya\nHope\nJasmin\nLila\nNatalee\nNathalie\nPerla\nRylie\nSasha\nSerena\nAllie\nAngelique\nArely\nBrynlee\nCaitlin\nCaylee\nDayanara\nEliza\nJayla\nKailey\nMadeleine\nMiriam\nMonserrat\nNotnamed\nPaisley\nRebekah\nSariah\nAbril\nAlice\nBrenda\nBrynn\nCaitlyn\nClaudia\nEvangeline\nHazel\nIliana\nIsis\nJaelyn\nKatelynn\nKiley\nMadilyn\nMarisol\nMarlee\nSamara\nSherlyn\nAmara\nAzul\nCatherine\nDakota\nDana\nDenise\nEmely\nHanna\nHolly\nJazlynn\nKara\nKassandra\nMaddison\nMartha\nMikaela\nNayeli\nYamileth\nYareli\nAlivia\nAria\nAspen\nBrenna\nCeleste\nChelsea\nCindy\nEmilee\nHarper\nIsabela\nJaiden\nJohanna\nJulie\nKaelyn\nKamryn\nKayleigh\nKiana\nKira\nMadelynn\nMargaret\nPresley\nTatiana\nYamilet\nAlanna\nAngie\nAniyah\nAryanna\nAyla\nCarly\nClarissa\nDanika\nEmilia\nEsperanza\nJadyn\nJoselyn\nKaylynn\nKelly\nKiera\nMarina\nShayla\nWillow\nYaritza\nYuliana\nAdalyn\nAddyson\nAilyn\nAiyana\nAlayna\nAleena\nAllisson\nAlma\nAlyson\nAubrie\nCynthia\nHadley\nJayda\nLeticia\nLilah\nLorena\nLuciana\nMaggie\nMaritza\nMercedes\nNatasha\nPaloma\nPatricia\nRyleigh\nYazmin\nAnnie\nAnnika\nAraceli\nAracely\nBelen\nBrylee\nCali\nCiara\nDesiree\nElaina\nElisa\nGloria\nHeather\nHelena\nJanessa\nKali\nKaylin\nLena\nLinda\nLuz\nMichaela\nMonique\nNoelle\nRaquel\nRenee\nSkylar\nYesenia\nAlisson\nBarbara\nCora\nEmerson\nErica\nHailee\nHarlow\nJackeline\nJane\nJoy\nKaiya\nKenzie\nLindsey\nMallory\nMarilyn\nMarlene\nMila\nMyla\nNina\nQuinn\nRose\nSage\nTalia\nTaryn\nAinsley\nAmira\nAnabelle\nArabella\nAubrianna\nBaylee\nCallie\nCatalina\nDamaris\nDaphne\nDayanna\nDylan\nErin\nEvelin\nFrida\nHayley\nIsla\nJaidyn\nJaqueline\nJaslene\nJessie\nKaryme\nKelsey\nKianna\nLucia\nNadia\nOlive\nPhoebe\nRachael\nSandra\nSarahi\nShyla\nTiana\nYvette\nAlaina\nAmani\nAnastasia\nAnissa\nAniya\nArielle\nBerenice\nClara\nDenisse\nEdith\nFrancesca\nGemma\nGia\nGwendolyn\nHarley\nHeaven\nIrene\nIvette\nJoslyn\nJuliette\nLana\nLesly\nLyric\nMadisyn\nMarely\nMina\nMyah\nNia\nNoemi\nRaegan\nRihanna\nRowan\nSiena\nWendy\nYasmin\nAbrielle\nAddisyn\nAleah\nAnabel\nAnnette\nAnya\nCarissa\nCarla\nDania\nEleanor\nElle\nGeorgia\nGeraldine\nGiovanna\nJaycee\nJaylee\nJayleen\nJaylin\nJocelynn\nJudith\nKailyn\nKenya\nKeyla\nKristina\nLillie\nLillyanna\nMadalyn\nMireya\nNorah\nRuth\nRyan\nSelene\nShea\nSkye\nXochitl\nYoselin\nAbrianna\nAliana\nAnisa\nAriella\nAsia\nBrissa\nCamilla\nCelia\nCheyanne\nCristal\nDahlia\nDominique\nElianna\nFiona\nGalilea\nHaven\nHelen\nIvana\nJaylene\nJaylynn\nJemma\nKaia\nKaidence\nKailee\nKathleen\nLaney\nLexie\nLiana\nLiberty\nLilian\nLillianna\nLluvia\nMaribel\nMarie\nMckayla\nMiah\nNancy\nNathalia\nNizhoni\nReece\nReina\nRomina\nRubi\nSelah\nShiloh\nVianney\nYuridia\nAda\nAdelyn\nAdrienne\nAlani\nAliah\nAlisha\nAnessa\nAshlee\nBailee\nBridget\nBryanna\nCasey\nCharlie\nDariana\nDestinee\nEmilie\nEmmy\nEsther\nEve\nEvelynn\nGiada\nGisselle\nItalia\nJanae\nJayde\nJazmyn\nJosie\nKaitlin\nKendal\nKenia\nLacey\nLeilah\nLucero\nMadilynn\nMakena\nMontserrat\nNathaly\nPaula\nRenata\nRosario\nTayler\nThalia\nYasmine\nZariah\nZoie\nAbbigail\nAdeline\nAdilene\nAmelie\nAnabella\nAnamaria\nAolanis\nArleth\nAshly\nAyden\nBelinda\nBria\nBrittany\nCailyn\nCourtney\nDeanna\nDonna\nElliana\nElyse\nEricka\nGiuliana\nJohana\nKaitlynn\nKarime\nKasey\nKassidy\nKaya\nKayleen\nKenna\nKyleigh\nLauryn\nLeyla\nLilia\nLillyana\nLondyn\nLorelai\nMacie\nMadalynn\nMariajose\nMarian\nMariela\nMaryjane\nMeghan\nMicah\nPaityn\nParis\nPrincess\nPriscila\nRaelynn\nRoselyn\nRoxanne\nSalma\nSarina\nScarlet\nSidney\nTabitha\nVioleta\nAbigayle\nAdelynn\nAimee\nAlaya\nAlexus\nAlissa\nAmiyah\nAnais\nAnalise\nAntonia\nAverie\nBethany\nBritney\nBrookelyn\nCameron\nCara\nCarina\nChristiana\nDalilah\nDestini\nDevyn\nEmber\nEstefania\nEvie\nFinley\nGisell\nGreidys\nHaleigh\nHaylie\nImani\nJaden\nJaelynn\nJolie\nJulianne\nJustice\nKaila\nKaley\nKaliyah\nKayden\nKaylyn\nKinsley\nKristen\nKrystal\nLainey\nLeighton\nLexy\nLilianna\nLindsay\nLisa\nLorelei\nLucille\nLuisa\nLylah\nMaci\nMaliah\nMattie\nMaylee\nMeadow\nMilagros\nNatalya\nNeveah\nPearl\nRaven\nRebeca\nRegina\nRoxanna\nSianna\nSonia\nTamara\nTania\nTara\nUnique\nVirginia\nViviana\nVivianna\nXiomara\nYahaira\nYulissa\nAbbie\nAdelaide\nAiyanna\nAlena\nAlize\nAmaris\nAnette\nAnnabel\nAnnalee\nAreli\nArlene\nAryana\nBerkley\nBlanca\nBraelyn\nBriley\nBrinley\nBriseida\nBriseis\nCarlie\nCayla\nCharlee\nCharlize\nChristine\nCloey\nDanitza\nDesirae\nDestiney\nDiamond\nElisabeth\nEmelia\nEmme\nEvalyn\nFelicia\nFelicity\nHalle\nHallie\nHeidy\nIsabell\nJaedyn\nJaida\nJanice\nJoelle\nJolene\nJordin\nKaleigh\nKalli\nKayli\nKeely\nKeila\nKloe\nLara\nLarissa\nLea\nLeilany\nLilyanna\nLitzy\nLyra\nMacey\nMadyson\nMaite\nMalaya\nMaleah\nMara\nMarin\nMayrin\nMelani\nMeredith\nMiracle\nNoelia\nPamela\nParker\nPhoenix\nPriya\nRaina\nRayne\nSahara\nSavana\nScarlette\nSedona\nShannon\nSkyla\nSylvia\nTaliyah\nTanya\nTeresa\nTianna\nValery\nVianey\nYadira\nYarely\nAbygail\nAdelina\nAdrina\nAdyson\nAida\nAisha\nAlia\nAliya\nAlora\nAlycia\nAmayah\nAmia\nAnaiya\nAngeline\nAnia\nAnnabell\nAnnalise\nAritza\nAriyah\nAurelia\nAvani\nAzucena\nBeatriz\nBetsy\nBriella\nCarolyn\nChanel\nCharley\nCienna\nCloe\nCorinne\nCristina\nDafne\nDavina\nDestany\nDiane\nElaine\nEmmalyn\nEvolet\nGiana\nGisel\nGizelle\nHarlee\nIzabelle\nJacklyn\nJanet\nJaquelyn\nJaslyn\nJazzlyn\nJune\nKacey\nKalia\nKallie\nKamilah\nKarissa\nKaty\nKayley\nKimora\nKrista\nLeia\nLina\nLizette\nMaia\nMalina\nMaren\nMarianna\nMarisa\nMariyah\nMarlie\nMatilda\nMayra\nMillie\nNaima\nNatali\nNichole\nNicolette\nNubia\nNyah\nRemi\nRosalie\nRoxana\nRoxy\nSally\nSandy\nShayne\nShyanne\nSimone\nSkyler\nSloane\nStevie\nTatianna\nTheresa\nToni\nVanesa\nVenus\nVivienne\nYoselyn\nAbbygail\nAbigale\nAdele\nAdison\nAliza\nAlli\nAmalia\nAmari\nAmberlyn\nAmina\nAnali\nAnalisa\nAnaly\nAndie\nAniah\nAnitza\nAnnalicia\nAri\nArlette\nAubriana\nAvah\nAyanna\nBeatrice\nBraelynn\nBrianne\nCampbell\nCapri\nCarlee\nCaydence\nCelina\nChantel\nCharli\nChastelyn\nChelsey\nCoraline\nDalia\nDallas\nDarlene\nDayami\nDeja\nDeziree\nElia\nElina\nElissa\nEstella\nGinger\nGrecia\nGwen\nGwenyth\nHaidyn\nHalo\nHayleigh\nHolland\nHunter\nIlse\nJacquelin\nJaylah\nJaylyn\nJustine\nKairi\nKarely\nKaris\nKarisma\nKarlie\nKatrina\nKaylani\nKaylen\nKendyl\nKeyli\nKierra\nKiersten\nKinley\nKirsten\nKyah\nKyrie\nLailah\nLaylah\nLesley\nLiah\nLibby\nLilith\nLizeth\nLogan\nLoren\nMagdalena\nMaricela\nMariel\nMariella\nMarisela\nMarlen\nMaryam\nMaylin\nMayte\nMelannie\nMicaela\nMilan\nMoriah\nMylee\nNyla\nPatience\nPrecious\nRaelyn\nRayna\nRhianna\nRobyn\nRory\nRyann\nRylan\nRyley\nSamarah\nSaniya\nSaniyah\nSavanah\nSharon\nShaylee\nSheila\nSheyla\nShyann\nSilvana\nSilvia\nSolana\nStacy\nTatyana\nTaya\nTyra\nWynter\nXitlali\nYajaira\nYanitza\nYaretzy\nZara\nAbbey\nAdalynn\nAdamari\nAdamaris\nAditi\nAlayah\nAlianna\nAlisa\nAlyna\nAlyvia\nAmariah\nAmerie\nAmirah\nAnaleah\nAnalee\nAnaleigh\nAnalicia\nAnanya\nAndi\nAnnamarie\nAnne\nAnnelise\nAnnmarie\nAnushka\nAnyssa\nAriadna\nAriah\nArissa\nAshtyn\nAstrid\nAubry\nAudriana\nAudrie\nAustyn\nAvary\nAveri\nAzaria\nAzariah\nBrandy\nBraya\nBrea\nBridgette\nBrighton\nBristol\nCandice\nCarley\nChasity\nCianna\nColbie\nDani\nDanya\nDarianna\nDayra\nDemi\nEbony\nEileen\nElisha\nEllen\nElsie\nElysia\nElyssa\nEma\nEmmalee\nEmmery\nEstela\nGiavanna\nGissell\nGlenda\nGracelyn\nGraciela\nGreydis\nGriselda\nHaily\nHawa\nHillary\nHollie\nIdaly\nIlliana\nIreland\nIrma\nIzabel\nJaime\nJaliyah\nJanie\nJaniyah\nJaquelin\nJayline\nJaymee\nJazleen\nJazlene\nJazlin\nJenny\nJeslyn\nJessenia\nJewel\nJiselle\nJolee\nJosselyn\nJovanna\nJulieta\nKailani\nKami\nKamille\nKarlee\nKarmen\nKarsyn\nKasandra\nKathy\nKeiry\nKelsie\nKenadee\nKimber\nKinsey\nKorina\nLaisha\nLaynee\nLeigha\nLeona\nLianna\nLidia\nLillyan\nLissette\nMackenna\nMairyn\nMaisy\nMargarita\nMarleigh\nMaycee\nMckinley\nMercedez\nMichele\nMika\nMiliana\nMollie\nNellie\nNola\nNorma\nNya\nNyomi\nPeighton\nPetra\nPricilla\nRachelle\nRebeka\nReegan\nRiann\nRita\nRori\nRosalinda\nRosie\nSamaya\nSaylor\nShae\nShaylynn\nSinai\nSofie\nStacey\nSuri\nSusan\nSusana\nTaytum\nTemperance\nTia\nTiara\nTori\nTristyn\nTyler\nWhitney\nXitlaly\nXoe\nYazmine\nYessica\nYsabella\nZaira\nZaria\nZarina\nZuleyka\nIsabella\nSophia\nMia\nEmma\nOlivia\nEmily\nAbigail\nAva\nMadison\nNatalie\nChloe\nSamantha\nVictoria\nElizabeth\nAlexis\nHailey\nCamila\nAddison\nElla\nEvelyn\nNevaeh\nLily\nBella\nAlyssa\nBrianna\nAshley\nAlexa\nZoe\nAubrey\nSofia\nBrooklyn\nGabriella\nSavannah\nAndrea\nAllison\nKaylee\nArianna\nHannah\nTaylor\nValeria\nKimberly\nAaliyah\nJasmine\nSerenity\nAlexandra\nGrace\nGenesis\nCharlotte\nLayla\nZoey\nLeah\nAudrey\nDestiny\nMaya\nMaria\nNatalia\nLillian\nMakayla\nKylie\nKhloe\nPeyton\nJocelyn\nKayla\nSarah\nRiley\nAriana\nSophie\nGianna\nMelanie\nAvery\nClaire\nVanessa\nAmelia\nLiliana\nMariah\nPayton\nFaith\nAngelina\nGiselle\nJessica\nMackenzie\nTatum\nAnna\nBrooke\nSydney\nBailey\nDaisy\nLilly\nNicole\nEllie\nJulia\nScarlett\nValentina\nLauren\nPaige\nRuby\nNaomi\nViolet\nJennifer\nLucy\nRylee\nIsabel\nLyla\nAliyah\nMichelle\nMya\nAdriana\nStephanie\nXimena\nAngela\nEden\nIzabella\nLeilani\nTrinity\nAmaya\nDaniela\nIsabelle\nJordyn\nMadeline\nMikayla\nReagan\nJade\nKaitlyn\nKatelyn\nLeila\nSadie\nValerie\nEva\nDanna\nGabriela\nAutumn\nBrooklynn\nAriza\nJacqueline\nLeslie\nDelilah\nMadelyn\nPenelope\nEliana\nJazmine\nReese\nStella\nAlicia\nAnnabelle\nAudrina\nAurora\nBrielle\nIvy\nKatherine\nLexi\nMarissa\nMegan\nElena\nHarper\nAna\nBriana\nHayden\nKennedy\nSummer\nAlexia\nAlondra\nJuliana\nLydia\nAshlyn\nMary\nMiranda\nMolly\nAmy\nEsmeralda\nKendall\nLaila\nMariana\nMelissa\nTeagan\nYaretzi\nAlexandria\nDiana\nJazmin\nKeira\nMelody\nJenna\nShelby\nApril\nChelsea\nFernanda\nJayla\nKamila\nMorgan\nRebecca\nGracie\nJayden\nJulianna\nLondon\nPresley\nSienna\nTessa\nAnahi\nEstrella\nAlejandra\nAngel\nKendra\nLila\nSierra\nAubree\nCassandra\nEleanor\nGenevieve\nItzel\nMakenna\nMckenzie\nAthena\nDanielle\nGabrielle\nKylee\nPiper\nRachel\nSara\nAlina\nDulce\nKassandra\nMonica\nAlessandra\nAlice\nHaley\nJordan\nKarla\nLola\nMiley\nPaisley\nBrisa\nJillian\nKate\nAdrianna\nChristina\nClara\nCynthia\nGuadalupe\nJada\nKira\nMalia\nMarisol\nNataly\nVivian\nAlana\nAmanda\nAngelica\nCadence\nSabrina\nAiyana\nBianca\nCarly\nEmery\nKatie\nKiera\nLilliana\nSelena\nAnaya\nAngelique\nArabella\nCarmen\nEvangeline\nHope\nIvanna\nJazlyn\nKaren\nKyleigh\nLilah\nMelany\nReyna\nAllie\nAllyson\nCarolina\nCecilia\nElise\nHolly\nKiara\nMarley\nMckenna\nQuinn\nTiffany\nAnnabella\nCaitlyn\nCheyenne\nHeidi\nIris\nKyla\nNayeli\nRuth\nScarlet\nAddyson\nAinsley\nAlaina\nAlison\nAlivia\nAmber\nAnabelle\nDaniella\nDaphne\nJanelle\nKinsley\nLucia\nLuna\nMacy\nMila\nSasha\nTatiana\nVeronica\nAriel\nAshlynn\nCamille\nCaroline\nDelaney\nHazel\nJasmin\nJimena\nJosephine\nJosie\nJulissa\nKatelynn\nKiana\nNoelle\nPriscilla\nRowan\nRylie\nBreanna\nDenise\nEliza\nEmely\nErika\nGiana\nHarmony\nJaelyn\nKathryn\nLilyana\nMyla\nAbril\nAlayna\nAria\nAyleen\nBrenda\nBrynlee\nCamilla\nCora\nDanika\nHadley\nJanessa\nJuliet\nKarina\nKelly\nKelsey\nMadeleine\nPaulina\nRebekah\nViviana\nAleah\nAryanna\nAylin\nBrittany\nBrynn\nClarissa\nDayana\nElle\nFinley\nJayda\nKailey\nKaydence\nLilianna\nMakenzie\nMaritza\nNora\nRose\nSavanna\nTiana\nYaritza\nCatherine\nEsther\nHaylee\nJaqueline\nJayleen\nKayleigh\nKeyla\nLaura\nMadelynn\nMarilyn\nMikaela\nPaula\nPerla\nRegina\nRyleigh\nSerena\nSherlyn\nWillow\nAnnie\nAnya\nAzul\nCali\nDakota\nDanica\nErica\nErin\nFiona\nIsla\nJoselyn\nJuliette\nKaiya\nMaddison\nMallory\nMelina\nNadia\nPaola\nSkylar\nYamileth\nYazmin\nYesenia\nAbby\nAdelina\nAlissa\nAlisson\nCamryn\nCharlie\nEmilia\nFatima\nGloria\nJulie\nKara\nLia\nLillyana\nLondyn\nMadilyn\nMaliyah\nMargaret\nMireya\nNatasha\nNina\nNoemi\nRaquel\nTalia\nAdeline\nAlyson\nBryanna\nCaitlin\nCassidy\nCeleste\nCiara\nEmilee\nEsperanza\nGeorgia\nGiuliana\nJaelynn\nJamie\nJoanna\nJohanna\nKayden\nKaylie\nKyra\nLarissa\nLilian\nLilyanna\nNorah\nOlive\nParker\nVivienne\nYareli\nYoselin\nZoie\nAdalyn\nAileen\nAngie\nAniyah\nAnnika\nAyla\nBailee\nBarbara\nBrenna\nBrylee\nDesiree\nElliana\nEmelia\nGia\nGiovanna\nHailee\nHeaven\nIngrid\nIsis\nJazlynn\nKaylin\nKenzie\nKiley\nKrystal\nLacey\nLena\nLeticia\nLizeth\nMadalyn\nMadisyn\nMilagros\nPhoebe\nRaegan\nSarai\nAbbigail\nAdelyn\nAleena\nAmerica\nAnabella\nAnika\nAnissa\nBelen\nClaudia\nCrystal\nHarley\nIsabell\nJadyn\nJane\nJaylynn\nJessie\nKaelyn\nKamryn\nKassidy\nMaci\nMarina\nMiriam\nNeveah\nNia\nPaloma\nPatricia\nPhoenix\nRubi\nSage\nSamara\nSarahi\nSariah\nTenley\nZariah\nAimee\nAmara\nAnastasia\nArlette\nAspen\nAverie\nBaylee\nBrinley\nCallie\nCameron\nCharlee\nCindy\nCourtney\nDahlia\nEvelynn\nHaylie\nIsabela\nJayde\nJaylene\nKinley\nLana\nLuz\nMacie\nMarlee\nMercedes\nMonique\nNatalee\nRaelynn\nRosalie\nShayla\nSkye\nSkyler\nSloane\nAdalynn\nAlani\nAlena\nAmaris\nAmina\nAmiyah\nAnalia\nAniya\nAraceli\nAracely\nArely\nAriah\nAudriana\nBridget\nCarla\nCarlee\nCatalina\nDayanara\nElaina\nElisa\nElisabeth\nGisselle\nGracelyn\nHarlow\nJaylin\nKailani\nKailyn\nKaley\nLiana\nLisa\nLizbeth\nMaggie\nMarianna\nMarie\nMaryjane\nMckayla\nMichaela\nMilla\nMyah\nRihanna\nSylvia\nTaya\nTess\nTia\nVioleta\nYamilet\nAbrielle\nAdamari\nAdelaide\nAilyn\nAmira\nAnnette\nArielle\nArlene\nAubrie\nAyanna\nDonna\nDylan\nHeidy\nIliana\nItalia\nJaycee\nJaylyn\nJocelynn\nJoslyn\nJudith\nKarissa\nKaya\nLexie\nLeyla\nLiberty\nLillianna\nLillie\nLindsey\nLogan\nLylah\nLyric\nMadyson\nMariajose\nMariela\nMeadow\nMiah\nNotnamed\nRenata\nSandra\nSarina\nScarlette\nAbbey\nAime\nAlaya\nAlisha\nAmani\nAmerie\nAmiah\nAri\nAriella\nAryana\nAshlee\nBree\nBrissa\nCarlie\nDalilah\nDania\nDenisse\nElsie\nElyse\nEmmalee\nFarrah\nFelicity\nFrancesca\nGemma\nGwendolyn\nHanna\nHayley\nHeather\nHelen\nImani\nIzabelle\nJaida\nJanae\nJolie\nJordynn\nJulieta\nKaleigh\nKayleen\nKeila\nKimber\nKinsey\nKourtney\nKristin\nLaylah\nLea\nLorelei\nLuciana\nLucille\nMakena\nNancy\nNathaly\nRosa\nRoxanna\nRoxanne\nShyla\nTaryn\nVianney\nWhitney\nYadira\nYaretzy\nAdelynn\nAisha\nAiyanna\nAlayah\nAlma\nAshleigh\nAvril\nBelinda\nBerenice\nBethany\nBriella\nCelia\nCelina\nChanel\nDalila\nDallas\nDeborah\nDiamond\nDominique\nEdith\nEileen\nElianna\nEmmalyn\nEstella\nEvangelina\nEve\nFrances\nGrecia\nJazmyn\nJourney\nJoy\nJune\nKadence\nKaila\nKaitlin\nKaitlynn\nKarly\nKaryme\nKenya\nKierra\nKrista\nKristen\nLainey\nLeanna\nLeilany\nLesley\nLesly\nLeylani\nMadilynn\nMaia\nMaleah\nMiya\nNalani\nNyla\nReina\nSawyer\nSelah\nShaylee\nSimone\nSonia\nStephany\nSusan\nSusana\nSydnee\nTabitha\nTatianna\nTeresa\nThalia\nTori\nUnique\nWendy\nYasmin\nAbbie\nAbygail\nAdilene\nAlanna\nAlia\nAliana\nAnabel\nAnais\nAngeline\nAubriana\nAurelia\nAveri\nBria\nBristol\nCarolyn\nCaylee\nChanning\nCherish\nCitlali\nCorina\nDana\nDayanna\nDeanna\nDevyn\nEloise\nEvelin\nFabiola\nGraciela\nHana\nHaven\nIlianna\nJaylah\nJordin\nJustice\nKaia\nKali\nKallie\nKamilah\nLauryn\nLeighton\nLilia\nLillyanna\nLinda\nMakaila\nMalina\nMara\nMarisela\nMartha\nMckinley\nMillie\nMylee\nNatali\nNathalie\nNichole\nNikki\nNoelia\nNyah\nPaityn\nPaulette\nPriscila\nRaven\nRemi\nRyan\nSahara\nSalma\nSavanah\nSedona\nShaila\nSilvia\nSuri\nTara\nTegan\nTiara\nXitlali\nYulissa\nAbrianna\nAda\nAddilyn\nAdrienne\nAdyson\nAiram\nAlanah\nAlexi\nAliya\nAliyana\nAllisson\nAlycia\nAmayah\nAmia\nAmiya\nAmya\nAnnabel\nAntonella\nAolanis\nAreli\nAshtyn\nAsia\nAyana\nAyden\nBraelyn\nCarina\nChelsey\nCielo\nCienna\nCloe\nCristina\nDamaris\nDayra\nDella\nDesirae\nElissa\nEmber\nEmmy\nEverleigh\nEvie\nFrida\nGeraldine\nIla\nIreland\nIvana\nJaiden\nJaidyn\nJalynn\nJaniyah\nJasmyn\nJaylee\nJazmyne\nJemma\nJoslynn\nKailee\nKairi\nKarely\nKarsyn\nKasandra\nKaycee\nKelsie\nKendal\nKianna\nLailah\nLeia\nLeona\nLilith\nLinnea\nMabel\nMadalynn\nMaliah\nMariella\nMaylee\nMayrin\nMeghan\nMilani\nNatalya\nNizhoni\nRaina\nRomina\nRoselyn\nSaanvi\nSaniyah\nShea\nShiloh\nShyanne\nSiena\nSol\nTania\nTheresa\nTianna\nVienna\nXochitl\nYolanda\nYvette\nAaliya\nAbriella\nAdamaris\nAdaya\nAddisyn\nAdele\nAkira\nAlexus\nAli\nAliah\nAlizabeth\nAlly\nAlora\nAnne\nAntonia\nAriadna\nArleth\nArmani\nAshly\nAubrianna\nAubrielle\nAyva\nBeatrice\nBernice\nBlanca\nBraelynn\nBriseis\nBritney\nBrittney\nBryana\nBryn\nCaitlynn\nCalista\nCambria\nCarley\nCayla\nCeline\nChantal\nCharley\nCharlize\nCheyanne\nCierra\nColbie\nDiya\nElayna\nElin\nElliot\nElsa\nEmerson\nEmilie\nEmme\nEmmie\nEsme\nEternity\nFlor\nFrankie\nGalilea\nHelena\nIsha\nIzel\nJackeline\nJacquelyn\nJalissa\nJaliyah\nJanet\nJaslene\nJaslyn\nJianna\nJolene\nJosslyn\nKaelynn\nKaliyah\nKalli\nKami\nKaris\nKarlee\nKarli\nKatarina\nKathleen\nKaylen\nKaylynn\nKeegan\nKenley\nKimora\nKirsten\nLaisha\nLara\nLeilah\nLiah\nLillyann\nLisette\nLizette\nLluvia\nLorelai\nLucero\nLyra\nMarely\nMarian\nMarisa\nMarlene\nMarlie\nMaryam\nMaryann\nMiabella\nMilan\nMira\nMiyah\nMonika\nMonserrat\nMontserrat\nNathalia\nNaya\nNelly\nNirvana\nNoel\nOriana\nParis\nPatience\nPayten\nPrincess\nRamona\nRaya\nRayna\nRegan\nRobyn\nRosario\nSandy\nSaniya\nScout\nSelene\nShannon\nSheila\nSheyla\nSky\nSkyla\nSloan\nSoleil\nSonja\nSusanna\nTanya\nTaylee\nXiomara\nYaneli\nYarely\nYessenia\nYuliana\nYvonne\nZuri\nAanya\nAbbygail\nAbigale\nAdrianne\nAila\nAleida\nAlize\nAllegra\nAlli\nAlyvia\nAmari\nAmberlynn\nAmeliana\nAmelie\nAmyah\nAnalee\nAnalicia\nAnaly\nAnayah\nAnessa\nAniela\nAnnalee\nAnnalisa\nAnnalise\nAnnalyse\nArianah\nArianny\nArissa\nArya\nAshanti\nAudrianna\nAustyn\nAvah\nAven\nAvianna\nAyari\nAzalea\nAzalia\nBriseida\nBrynlie\nCailyn\nCampbell\nCasey\nCatarina\nChevelle\nChristiana\nCitlaly\nConstance\nCoraline\nDarlene\nDayna\nDelylah\nDestany\nDestinee\nDestini\nDorothy\nElia\nEllianna\nEllison\nElora\nElyssa\nEma\nEmmalynn\nEstefany\nEunice\nFreya\nGema\nGenessis\nGiavanna\nGisel\nGisele\nGisell\nGizelle\nGladys\nHadassah\nHaiden\nHailie\nHaleigh\nHalima\nHalle\nHalo\nHarlee\nHayleigh\nHoney\nIlliana\nIndigo\nIrene\nIyanna\nIzabel\nJacklyn\nJaden\nJaela\nJailyn\nJanna\nJaquelyn\nJazelle\nJazzlyn\nJessa\nJesse\nJohana\nJoscelyn\nJoselyne\nJoselynn\nJuniper\nKaci\nKaela\nKahlan\nKaily\nKailynn\nKalena\nKarlie\nKarmen\nKasey\nKatrina\nKaty\nKaylah\nKaylani\nKayley\nKayli\nKendyl\nKenia\nKenna\nKensington\nKirra\nKloe\nKloey\nKora\nKori\nKylah\nKyndall\nLaney\nLanie\nLayna\nLeela\nLexis\nLibby\nLidia\nLiv\nLuisa\nMacey\nMagdalena\nMaite\nMargot\nMari\nMaribel\nMayah\nMelannie\nMelia\nMercy\nMeredith\nMicaela\nMilania\nMonroe\nMoriah\nNadine\nNahla\nNaima\nNaiya\nNallely\nNariah\nNazareth\nNeriah\nNicolette\nNoor\nNova\nNuvia\nNylah\nOpal\nPamela\nPayson\nPrecious\nRaelyn\nRebeca\nReece\nRemington\nRenee\nRiver\nRochelle\nRocio\nRory\nRoxana\nRylan\nSaige\nShaelynn\nShania\nShaniya\nShawna\nSidney\nSiri\nSofie\nSofiya\nSolange\nSonya\nStacy\nStarla\nSunny\nSymphony\nTaelyn\nTatyana\nTesla\nTina\nTylee\nValery\nVera\nVirginia\nVivianna\nYahaira\nYasmine\nYazmine\nYulianna\nZainab\nZara\nZariyah\nZiva\nZulay\nZuria\nSophia\nIsabella\nEmma\nEmily\nMia\nOlivia\nAva\nAbigail\nVictoria\nElizabeth\nChloe\nNatalie\nMadison\nSofia\nLily\nSamantha\nCamila\nHailey\nBrooklyn\nNevaeh\nAubrey\nZoey\nGrace\nElla\nAddison\nZoe\nAvery\nAaliyah\nAlexis\nArianna\nSavannah\nAlyssa\nEvelyn\nAndrea\nAlexa\nCharlotte\nAmelia\nLayla\nBella\nBrianna\nLeah\nTaylor\nRiley\nAudrey\nAshley\nGabriella\nKimberly\nLillian\nKaylee\nGenesis\nHannah\nKhloe\nGianna\nSarah\nJocelyn\nScarlett\nPeyton\nClaire\nKylie\nMaya\nAllison\nJasmine\nNatalia\nSophie\nValeria\nSerenity\nAriana\nNicole\nLiliana\nMaria\nJulia\nRuby\nRylee\nSydney\nLucy\nViolet\nBrooke\nEllie\nMakayla\nAutumn\nLilly\nVanessa\nAlexandra\nMariah\nMelanie\nXimena\nPayton\nTrinity\nAnna\nFaith\nIzabella\nKayla\nDestiny\nBailey\nHarper\nNaomi\nGiselle\nLauren\nIsabel\nStella\nLyla\nEva\nSadie\nBrielle\nJessica\nKatelyn\nMadeline\nValentina\nAurora\nDaisy\nLeilani\nMadelyn\nPaige\nTatum\nAudrina\nJade\nMichelle\nAliyah\nKatherine\nAngelina\nAria\nDelilah\nIsabelle\nAlice\nAmaya\nAnnabelle\nDaniela\nJordyn\nMorgan\nAmy\nAngela\nElena\nJennifer\nSara\nMackenzie\nMya\nAubree\nBrooklynn\nMelody\nSienna\nKennedy\nMiranda\nAlexia\nKaitlyn\nLaila\nMila\nValerie\nPenelope\nJacqueline\nMolly\nAdriana\nAlondra\nEliana\nGabriela\nRachel\nReagan\nRebecca\nAlicia\nAlina\nAngelique\nHayden\nMakenzie\nQuinn\nGracie\nKeira\nPiper\nStephanie\nTeagan\nAna\nEden\nDiana\nLydia\nMikayla\nReese\nAdrianna\nElise\nGenevieve\nJazmine\nMariana\nDanna\nKate\nPaisley\nKylee\nPresley\nAlexandria\nAshlyn\nIvy\nJulianna\nMakenna\nMarissa\nMegan\nAlejandra\nAthena\nBianca\nHaley\nJuliana\nLondon\nAriel\nHope\nAlaina\nFernanda\nHazel\nJulissa\nKendall\nAileen\nAlessandra\nDaniella\nGuadalupe\nJayden\nJazlyn\nJimena\nJordan\nLila\nLilliana\nMelissa\nNayeli\nSabrina\nVivian\nYaretzi\nDanielle\nEsmeralda\nItzel\nKamila\nMckenna\nCamille\nGabrielle\nIvanna\nKarina\nLeslie\nLexi\nLucia\nMckenzie\nPriscilla\nShelby\nAmber\nBriana\nJazmin\nJenna\nLuna\nAlana\nApril\nCora\nEleanor\nEmery\nJayleen\nJosephine\nKarla\nKayleigh\nKendra\nAlayna\nAylin\nCecilia\nCeleste\nDakota\nHeidi\nNina\nReyna\nAllie\nCatherine\nClara\nGemma\nHaylee\nKatie\nMacy\nAbby\nAinsley\nChelsea\nLola\nMary\nRaegan\nRyleigh\nRylie\nAllyson\nAmanda\nAngel\nBreanna\nEliza\nJuliette\nKelsey\nKinsley\nMaci\nScarlet\nSierra\nTiana\nYaritza\nAdalyn\nAlison\nAnahi\nAngelica\nAriza\nBrynn\nCheyenne\nDelaney\nDulce\nEsther\nEstrella\nMiley\nSelena\nSummer\nViviana\nAniyah\nAyla\nCadence\nCamryn\nCassidy\nCynthia\nElliana\nFatima\nJuliet\nKailey\nKaren\nLeila\nNora\nSkylar\nAddisyn\nAnaya\nHadley\nJillian\nMaddison\nNadia\nAddyson\nAlivia\nAshlynn\nCaroline\nChristina\nCrystal\nHarlow\nHarmony\nIsla\nKelly\nKyla\nLacey\nLilian\nLilianna\nMarley\nNoelle\nPaulina\nSavanna\nTessa\nVeronica\nAnabelle\nAnastasia\nArabella\nCharlie\nClarissa\nDayana\nElaina\nErin\nHarley\nIris\nJaelyn\nJayda\nJazlynn\nKaelyn\nKinley\nKira\nNatasha\nSamara\nWillow\nAliana\nAnnabella\nAraceli\nBrynlee\nCali\nCallie\nCassandra\nDaphne\nJada\nJosie\nKassandra\nKatelynn\nLilah\nLilyana\nLondyn\nMadilyn\nMalia\nMarina\nMarisol\nMelany\nMichaela\nPhoebe\nRegina\nRose\nTeresa\nAleena\nAniya\nAspen\nBridget\nCarmen\nGia\nJanelle\nJazmyn\nJoselyn\nKathryn\nKaydence\nMaggie\nMiah\nMikaela\nOlive\nPaola\nVivienne\nAdalynn\nAmerica\nAzul\nBraelyn\nBrittany\nCharlee\nCiara\nEsperanza\nEvangeline\nHayley\nJasmin\nJulie\nKamryn\nKiara\nKiera\nKyra\nLexie\nMadeleine\nMargaret\nParker\nShayla\nYamileth\nAbril\nAdelyn\nAlissa\nAryanna\nBethany\nCamilla\nCourtney\nDanika\nDanitza\nDesiree\nDylan\nElisa\nKara\nKaylie\nLaura\nLaylah\nMacie\nNataly\nNatalya\nNoemi\nNorah\nRebeca\nRosa\nTaryn\nTenley\nAdelaide\nArely\nAubrianna\nAyleen\nBriella\nEmely\nEmilia\nFiona\nGeorgia\nHanna\nHolly\nJayla\nKenzie\nKyleigh\nMiriam\nRayne\nRyan\nSage\nSerena\nAdeline\nAmara\nAmerie\nAolanis\nAverie\nBaylee\nBria\nBrinley\nBrissa\nCaitlin\nCambria\nDanica\nDenise\nElle\nElliot\nEmber\nEmmalyn\nFarrah\nGeraldine\nGiuliana\nGwyneth\nIliana\nJaelynn\nJane\nJaqueline\nJayde\nJaylah\nJoanna\nKailee\nKaitlynn\nKaylin\nKrystal\nLiana\nLiberty\nLuciana\nMadelynn\nMaliyah\nMarilyn\nMercedes\nPaloma\nRenata\nRuth\nSarai\nSariah\nSloane\nTiffany\nAbbigail\nAdelina\nAlia\nAliah\nAmelie\nAnalia\nAnnabel\nAnnie\nAubrie\nBrenna\nBrylee\nCaitlyn\nCarolina\nCharley\nDahlia\nElianna\nGloria\nKadence\nKailyn\nKali\nKaya\nLea\nLeyla\nLia\nLindsey\nLisa\nMadilynn\nMarie\nMaritza\nMyah\nNeveah\nPaityn\nPerla\nRihanna\nRowan\nSasha\nTalia\nVera\nWendy\nYamilet\nYesenia\nAilyn\nAimee\nAlani\nAliya\nAngie\nAnnalise\nAnnika\nAvianna\nBrisa\nBryanna\nCaylee\nElisabeth\nEmerson\nEmilie\nErika\nHaven\nHelen\nIsis\nJamie\nJaylynn\nJourney\nKayden\nKiana\nLainey\nLillie\nLillyanna\nLilyanna\nLucille\nLuz\nMadyson\nMaite\nMelina\nMonica\nMonique\nMyra\nNatalee\nNathalie\nPaulette\nRaelyn\nRaelynn\nRylan\nTatiana\nUnique\nAbrielle\nAiyanna\nAlianna\nAlly\nAmira\nAnabella\nAnnette\nAntonella\nAryana\nBentley\nCalista\nCarla\nCharlize\nCheyanne\nClaudia\nColette\nEmilee\nEmmalee\nFinley\nFrida\nGiovanna\nGisselle\nGraciela\nGrecia\nHailee\nHeaven\nJacquelyn\nJaquelin\nJaylene\nJocelynn\nKallie\nKenya\nKeyla\nKiley\nLilith\nMadisyn\nMakena\nMarlee\nMarlene\nNathaly\nRaquel\nRebekah\nReina\nRhiannon\nSandra\nSarahi\nSiena\nVivianna\nYazmin\nAbbey\nAlisson\nAlma\nAnissa\nAnya\nAracely\nAreli\nAriah\nAriella\nArielle\nAubriana\nAviana\nBailee\nBraelynn\nCapri\nCatalina\nEmelia\nFelicity\nGalilea\nHalle\nHelena\nIlliana\nIsabell\nJaidyn\nJanet\nJaycee\nJohanna\nJulianne\nJune\nLeanna\nLizbeth\nLogan\nMaia\nMayte\nMilagros\nMyla\nNoelani\nNotnamed\nOphelia\nPatricia\nPaula\nPearl\nRaya\nRemi\nRosalie\nSkyler\nWhitney\nXiomara\nZara\nAdyson\nAlanna\nAleah\nAli\nAlyson\nAmani\nAmaris\nAmiah\nAmiyah\nAnais\nAnika\nAriadne\nAvani\nAveri\nBarbara\nBrenda\nCarly\nCristina\nDalilah\nDania\nDavina\nDayanna\nElin\nElsa\nElsie\nGizelle\nGwen\nHadassah\nHarlee\nIsela\nJadyn\nJanessa\nJaylin\nJaylyn\nJoelle\nJoy\nKaia\nKailani\nKatrina\nKhloee\nKirra\nLana\nLaney\nLeia\nLiah\nLinda\nLylah\nMadalyn\nMaiya\nMalaya\nMariajose\nMaryjane\nMillie\nMonroe\nNyla\nPyper\nRachael\nRamona\nRaven\nRenee\nRyann\nSamira\nShyla\nSidney\nTianna\nZariah\nAbbie\nAda\nAdrienne\nAilani\nAiyana\nAmirah\nAmiya\nAnnelise\nAudriana\nAzalea\nBelen\nBelinda\nBetty\nCarlee\nCaydence\nChanel\nChristine\nDemi\nDesirae\nEdith\nEileen\nElayna\nEmmalynn\nEsme\nEvangelina\nEvie\nIvana\nJaden\nJazleen\nJuniper\nJustice\nKamari\nKarissa\nKathleen\nKimora\nKristina\nLailah\nLauryn\nLena\nLesly\nLillianna\nLillyann\nMackenna\nMaleah\nMallory\nMaribel\nMckinley\nMireya\nNancy\nPayten\nRory\nRosemary\nRoxana\nSawyer\nScarlette\nSelah\nSkye\nSonia\nStacy\nSusana\nTabitha\nTania\nTayla\nTegan\nThalia\nVianney\nYareli\nYasmine\nYoselin\nYuliana\nZaira\nAddilyn\nAdela\nAdele\nAdilene\nAlaya\nAlayah\nAlisha\nAlycia\nAlyna\nAmayah\nAmya\nAnabel\nAnaiya\nAnalisa\nAnisa\nArya\nAshlin\nAubriella\nAzariah\nBriley\nBriseis\nCamdyn\nCameron\nCarina\nCecelia\nCelia\nChevelle\nDana\nDani\nDariana\nDeborah\nDelila\nElissa\nEllery\nEllianna\nElliott\nElora\nEmersyn\nEmmie\nEve\nEvelynn\nGiavanna\nGracelyn\nGwendolyn\nHunter\nImani\nIrene\nJaiden\nJaina\nJaslene\nJaslyn\nJazelle\nJazmyne\nJenny\nJolene\nJoslyn\nJovie\nKairi\nKarime\nKassidy\nKayley\nKaylynn\nLarissa\nLeighton\nLeylani\nLizeth\nLizette\nLucero\nLynette\nMalina\nMariam\nMarianna\nMicaela\nMollie\nNatali\nNayla\nNizhoni\nNola\nPaislee\nPepper\nPhoenix\nPrincess\nRayna\nRita\nSaanvi\nSaige\nShaelyn\nShea\nSherlyn\nSimone\nStephany\nTia\nTori\nVida\nVioleta\nVirginia\nYahaira\nYarely\nYulissa\nZahara\nZaniyah\nZoie\nZoya\nAbagail\nAbrianna\nAdamaris\nAdelynn\nAislin\nAlannah\nAlena\nAlize\nAlora\nAlyse\nAmairani\nAmalia\nAmari\nAnaiah\nAndi\nAniah\nAnnaliese\nAnnalisa\nAritza\nArlene\nAshlee\nAshleigh\nAshtyn\nAsiya\nAubrielle\nAubryana\nAvalynn\nAyanna\nAyva\nAzlynn\nBerkley\nBlake\nBlakely\nBristol\nCarissa\nCelina\nCharity\nCharli\nChiara\nCienna\nCindy\nCitlaly\nDalila\nDallas\nDayanara\nDayra\nDenisse\nDestinee\nDevin\nDevyn\nDorothy\nElaine\nEmerie\nEmiliana\nErica\nEvalyn\nEvolet\nGiana\nGissel\nGladys\nGracelynn\nHaleigh\nHaylie\nHeather\nIsabela\nIsadora\nItzayana\nIzabelle\nIzzabella\nJacey\nJaida\nJaliyah\nJanice\nJaniyah\nJasmyne\nJaya\nJenesis\nJordin\nJordynn\nJosalyn\nKai\nKaiya\nKarely\nKaris\nKarlee\nKaryme\nKendal\nKenna\nKennedi\nKenzi\nKierra\nKinsey\nKristen\nKyara\nKylah\nKynlee\nKyrie\nLara\nLilyann\nLindsay\nLorelai\nMacey\nMae\nMagdalena\nMaliah\nMarbella\nMarian\nMarisa\nMayra\nMeredith\nMicah\nMilan\nMilania\nMiracle\nNalani\nNaya\nNikki\nNoel\nPenny\nPrecious\nPriscila\nRemy\nRhianna\nRilynn\nRomina\nRoselyn\nRoxanne\nRubi\nSade\nSally\nSaniyah\nScout\nSedona\nSharon\nShaylee\nSky\nSoleil\nSoraya\nTaliyah\nTanya\nTatianna\nViktoria\nWren\nXenia\nXitlali\nYasmin\nAbbygail\nAdalee\nAdamari\nAddie\nAfton\nAlanah\nAleeya\nAliza\nAlyanna\nAlysson\nAmairany\nAmia\nAmina\nAnaid\nAnalise\nAnayah\nAngeline\nAngelita\nAnnalee\nAnne\nAnniston\nAntonia\nAriadna\nAriyah\nArleen\nArlette\nAsia\nAudree\nAvalon\nAvril\nAyesha\nBonnie\nBrandy\nBree\nBritton\nBrook\nBrooklynne\nBryana\nBrystal\nCielo\nClaira\nColbie\nCristal\nDagny\nDalia\nDamaris\nDasia\nDeanna\nDennise\nDezirae\nDonna\nEleni\nEllis\nElly\nEloise\nEma\nEmilyn\nEmmy\nEmrie\nEvalynn\nEvelin\nEverleigh\nEzra\nGiada\nGwendalyn\nHallie\nHana\nHayleigh\nHeavenly\nIlianna\nIngrid\nIrelynn\nIssabella\nIvory\nIzel\nJaclyn\nJamileth\nJanie\nJaylee\nJazlene\nJenessa\nJessalyn\nJessie\nJiselle\nJorja\nJovanna\nJudith\nJulieta\nJulisa\nJustine\nKacey\nKaci\nKailynn\nKaitlin\nKaleah\nKaliyah\nKamilah\nKamille\nKarol\nKarsyn\nKasey\nKatalina\nKaylah\nKayleen\nKayli\nKeily\nKenia\nKenley\nKensley\nKeren\nKianna\nKiersten\nKodi\nKora\nLaci\nLacie\nLeilah\nLeilany\nLesley\nLianna\nLillyana\nLilyan\nLina\nLorelei\nLorena\nLuci\nLux\nLyric\nMagnolia\nMargarita\nMaricela\nMariella\nMarin\nMarleigh\nMarlie\nMartha\nMaryam\nMaylin\nMelinda\nMercy\nNaila\nNia\nNoor\nNubia\nPatience\nPetra\nPoppy\nPreslee\nPrisha\nRaylee\nRemington\nRhea\nRiver\nRobyn\nRosalinda\nSalma\nSarina\nSavanah\nSelene\nShania\nSheila\nShiloh\nSilvia\nSinai\nSkyla\nSuri\nSylvia\nTamara\nTaylee\nTaylin\nTeegan\nTess\nTina\nYajaira\nYaretzy\nYulianna\nYvette\nYvonne\nSophia\nIsabella\nEmma\nMia\nOlivia\nEmily\nAva\nAbigail\nSofia\nMadison\nVictoria\nCamila\nNatalie\nElizabeth\nZoey\nAaliyah\nElla\nCharlotte\nZoe\nChloe\nBrooklyn\nEvelyn\nLily\nSamantha\nAubrey\nNevaeh\nGrace\nLayla\nSavannah\nGenesis\nAddison\nAmelia\nAshley\nAvery\nAlyssa\nArianna\nHarper\nScarlett\nKaylee\nAlexis\nHailey\nHannah\nAudrey\nLillian\nSerenity\nAllison\nAlexa\nLeah\nBella\nBrianna\nFaith\nPeyton\nMelanie\nJocelyn\nTaylor\nAria\nAndrea\nGabriella\nKimberly\nJasmine\nLiliana\nMaria\nNatalia\nMaya\nRiley\nKylie\nMariah\nMila\nSophie\nLucy\nVanessa\nBrielle\nGianna\nRuby\nClaire\nNaomi\nXimena\nKhloe\nSarah\nEllie\nMackenzie\nAnna\nAriana\nValeria\nBailey\nNicole\nAlexandra\nAubree\nKayla\nAnnabelle\nTatum\nTrinity\nLeilani\nLilly\nViolet\nJade\nAliyah\nMya\nJessica\nRylee\nValentina\nEva\nDestiny\nIsabel\nStella\nAurora\nAutumn\nLauren\nReagan\nReese\nJordyn\nPayton\nMadelyn\nSadie\nVivian\nAlexia\nAngelina\nSydney\nBrooke\nDaisy\nJennifer\nMadeline\nPaige\nElena\nMakayla\nAlondra\nMolly\nPaisley\nKaitlyn\nAmy\nAthena\nGiselle\nPenelope\nQuinn\nAmaya\nMelody\nPresley\nKendall\nMiranda\nMorgan\nPiper\nBrooklynn\nDelilah\nEden\nIsabelle\nMichelle\nRachel\nAngela\nIzabella\nJulia\nMelissa\nAdriana\nElise\nJuliana\nKamila\nKennedy\nLuna\nAngelique\nStephanie\nValerie\nEliana\nHazel\nKylee\nAlessandra\nClara\nFernanda\nIvy\nKate\nKatherine\nSara\nSummer\nAlicia\nAna\nKatelyn\nLyla\nAriel\nLaila\nLondon\nSienna\nMikayla\nKeira\nLilliana\nRose\nAlexandria\nCora\nDaniela\nMariana\nAlice\nGracie\nHadley\nMckenna\nYaretzi\nAlina\nDanielle\nJulianna\nAngel\nAudrina\nLexi\nLucia\nMakenna\nRebecca\nElisa\nHayden\nJazmin\nLydia\nShelby\nSkylar\nBrynn\nEleanor\nEmery\nGenevieve\nLeila\nBrynlee\nEsmeralda\nGabriela\nLola\nMakenzie\nMarissa\nMary\nSierra\nAmber\nAngelica\nAshlynn\nAyla\nCecilia\nEmilia\nIsla\nJazmine\nRegina\nAlison\nAriza\nCali\nCrystal\nGabrielle\nJayleen\nKarla\nKatie\nKiara\nLilah\nNora\nAlana\nEvangeline\nHanna\nJordan\nKarina\nKinley\nKinsley\nMegan\nTeagan\nDelaney\nElliana\nKenzie\nLia\nRylie\nViviana\nAdrianna\nChelsea\nEliza\nHaley\nJosephine\nKaydence\nLeslie\nLilyana\nReyna\nSabrina\nAnnabella\nCamilla\nCaroline\nCatherine\nCharlie\nDiana\nErika\nJayla\nJulissa\nMarley\nMckenzie\nNataly\nAdalyn\nArielle\nArya\nCarmen\nChristina\nJacqueline\nJuliet\nKyla\nAdalynn\nAlayna\nAnastasia\nAniyah\nAyleen\nCamille\nItzel\nJosie\nLila\nLuciana\nNoelle\nTalia\nAdeline\nAdelyn\nAlejandra\nApril\nAzalea\nCadence\nHayley\nKenya\nMelany\nNadia\nPerla\nRuth\nWillow\nAileen\nAllyson\nAshlyn\nBriana\nCarly\nElianna\nFiona\nGemma\nHope\nJimena\nKelsey\nMargaret\nYaritza\nAlianna\nAllie\nDakota\nDaniella\nEmerson\nEstrella\nHarmony\nHolly\nIvanna\nJazlyn\nJenna\nKali\nKassandra\nKendra\nLilianna\nNayeli\nNoemi\nPriscilla\nSelena\nVivienne\nAnya\nAraceli\nBriella\nCassandra\nCataleya\nDayana\nErin\nFelicity\nGiuliana\nIliana\nIris\nJane\nJayden\nJuliette\nLacey\nMadilyn\nRaelynn\nTessa\nTiffany\nVeronica\nVianney\nAlaina\nAnabella\nAylin\nAzul\nCallie\nCamryn\nCassidy\nCheyenne\nDanna\nEsperanza\nJaylah\nKadence\nKira\nLeyla\nMaliyah\nMiah\nMonica\nOlive\nZoie\nAddyson\nAlivia\nAnabelle\nAnahi\nAnaya\nBrinley\nCaitlyn\nCynthia\nDaphne\nElle\nFatima\nGuadalupe\nHarley\nIsis\nJasmin\nLondyn\nMaci\nMacie\nMarilyn\nMichaela\nParker\nRebekah\nSage\nSiena\nAdelynn\nAlissa\nArabella\nArely\nAubrie\nAverie\nBianca\nBraelyn\nCarolina\nDanika\nElsie\nFinley\nHarlow\nHaven\nHaylee\nHeidi\nJanelle\nJohanna\nJoselyn\nKyra\nLillyana\nMalia\nMarie\nMelina\nMiriam\nPatricia\nRenata\nRosalie\nSandra\nSawyer\nSherlyn\nAbril\nAleena\nAnnalise\nAnnette\nAryanna\nAspen\nBaylee\nClarissa\nElisabeth\nEmber\nEsther\nGraciela\nJaelyn\nJazlynn\nKailey\nKathryn\nKaylie\nMadisyn\nMarianna\nMarisol\nMaritza\nNia\nPhoenix\nRyleigh\nSerena\nYareli\nAliya\nAlyson\nCatalina\nCeleste\nDylan\nElyse\nGia\nGloria\nJada\nJaelynn\nJamie\nJoanna\nKaylynn\nKeyla\nLainey\nLaura\nLena\nLexie\nLyric\nMacy\nMaddison\nMallory\nMyla\nPaula\nPhoebe\nSarai\nSasha\nScarlet\nShayla\nSkye\nTeresa\nVera\nAbby\nAdelina\nAlanna\nAliana\nAmanda\nAubriana\nBreanna\nCharlee\nCharley\nCourtney\nDesiree\nDulce\nElaina\nHelena\nItzayana\nJayde\nJaylene\nJulie\nKamryn\nKaren\nKataleya\nKayleigh\nKiera\nLaylah\nLea\nLucille\nMarina\nMiley\nNatasha\nNorah\nRaegan\nRaelyn\nRyan\nSelah\nSonia\nYamileth\nAddisyn\nAdelaide\nAdele\nAmiyah\nAniya\nAolanis\nAurelia\nAvianna\nBraelynn\nBrylee\nCaitlin\nCiara\nClaudia\nDahlia\nDalilah\nElayna\nGalilea\nGisselle\nGwendolyn\nJudith\nKaelyn\nKaitlynn\nLuz\nMadalyn\nMadeleine\nMariajose\nMaryjane\nMikaela\nMonserrat\nNina\nNova\nSariah\nSavanna\nTatiana\nTenley\nWinter\nXochitl\nYamilet\nAdrienne\nAinsley\nAleah\nAnnie\nAriah\nAubrianna\nDanica\nDenisse\nEloise\nElsa\nErica\nFrida\nHelen\nJanae\nJanessa\nKailyn\nKaliyah\nKara\nKayden\nKelly\nKenia\nMadilynn\nMaggie\nMalaya\nMonroe\nNatalee\nRosemary\nScarlette\nSelene\nTaryn\nThalia\nTiana\nYvette\nAbigale\nAbrianna\nAda\nAdilene\nAiyana\nAlena\nAlly\nAubrielle\nBailee\nBarbara\nBelen\nBridget\nCaylee\nDana\nDominique\nEmilee\nEve\nGiana\nIsabell\nJaylynn\nJazzlyn\nJourney\nJoy\nKailee\nKaylin\nLeighton\nMae\nMarian\nMckayla\nMina\nMonique\nParis\nRaquel\nRaven\nRyann\nSamara\nSimone\nSloane\nUnique\nZara\nAbbie\nAimee\nAliah\nAliyana\nAlma\nAmayah\nAmerica\nAnalicia\nAnika\nAnnabel\nAnnaliese\nAnnika\nAyanna\nCameron\nCaydence\nDanitza\nDorothy\nEmilie\nEmmalee\nEvelynn\nFrancesca\nIrene\nIsabela\nJaqueline\nJaycee\nJemma\nJillian\nKalea\nLarissa\nLeanna\nLeena\nLeia\nLiana\nLilian\nLillie\nLilyanna\nLindsey\nLivia\nLorelei\nMaite\nMaylin\nNathalie\nNeveah\nPaulette\nPreslee\nRowan\nShannon\nStevie\nSylvia\nVivianna\nWhitney\nYaretzy\nZuri\nAbbigail\nAlisson\nAmira\nAnabel\nAnais\nAnaliyah\nAngie\nAnnabell\nAriella\nArlette\nAudrianna\nBrisa\nBrittany\nCalista\nCambria\nCapri\nCasey\nDalia\nDamaris\nDayanara\nDayanna\nDenise\nDevyn\nDrew\nEdith\nEmely\nEmmalyn\nEmmalynn\nFarrah\nFaye\nGeorgia\nGiada\nGiovanna\nGizelle\nHailee\nHallie\nHeaven\nIngrid\nIzabel\nJayda\nJaylin\nJessie\nJordynn\nKaia\nKairi\nKaiya\nKalani\nKallie\nKassidy\nKatelynn\nKathleen\nKayleen\nKenna\nKori\nKristina\nKrystal\nLailah\nLana\nLillianna\nLindsay\nLisa\nLizbeth\nLorena\nMadyson\nMakena\nMarisa\nMarlee\nMckinley\nMercedes\nMilana\nMireya\nMollie\nMontserrat\nNola\nNya\nNyla\nPaislee\nPaityn\nPaloma\nPaola\nPayten\nPearl\nPriya\nRilynn\nRiver\nRosa\nRosie\nSarahi\nSedona\nSusan\nTaylin\nTheresa\nTracy\nXiomara\nYesenia\nYuliana\nZaniyah\nZariah\nAilyn\nAisha\nAkira\nAlani\nAlia\nAlyanna\nAmari\nAmiah\nAmina\nAmya\nAnayah\nAnnalee\nAnneliese\nAracely\nArmani\nAryana\nAubri\nAubriella\nAveri\nAyana\nBayleigh\nBlake\nBrenna\nBristol\nCayla\nCelina\nCharlize\nChevelle\nCristal\nDariana\nDixie\nEmmy\nEstella\nEvalyn\nGeraldine\nGracelyn\nGwenyth\nHaylie\nIrlanda\nItalia\nIvana\nIvory\nJaiden\nJaniyah\nJaylee\nJazelle\nJazmyn\nJohana\nJosselyn\nJune\nKamilah\nKaya\nKaylah\nKiana\nKora\nKourtney\nKyleigh\nLeilah\nLeona\nLillyanna\nLinda\nLitzy\nLiv\nLogan\nLuisa\nLyra\nMargarita\nMaryann\nMiya\nNancy\nPatience\nRemi\nRihanna\nRoselyn\nRoxanne\nSaige\nSalma\nShaila\nSkyla\nSkyler\nYoselin\nZo\nAdamari\nAdamaris\nAiram\nAliza\nAlyna\nAmaris\nAmerie\nAnalia\nAngeline\nAniah\nAnissa\nAnne\nAntonia\nArleth\nAudree\nBethany\nBriseis\nBryanna\nCara\nCarissa\nCarley\nChanelle\nCherish\nChristine\nCielo\nClare\nColette\nCorinne\nDania\nEileen\nEmelia\nEmmaline\nEvangelina\nFrances\nGiavanna\nGrecia\nHalle\nImani\nIyanna\nJadyn\nJanie\nJenesis\nJewel\nJocelynn\nJolie\nJuniper\nJustice\nKarlee\nKarma\nKarol\nKiley\nKristen\nLeticia\nLiberty\nLilia\nLizeth\nLylah\nMabel\nMaia\nMariam\nMaribel\nMariyah\nMaryam\nMayra\nMayte\nMeredith\nMillie\nNalani\nNathalia\nNylah\nPamela\nPaulina\nPeighton\nRaina\nRayne\nReina\nRomina\nRylan\nSaanvi\nSamira\nSaylor\nShiloh\nShyla\nSilvia\nSoraya\nSuri\nTaelyn\nTara\nTaytum\nTess\nVianey\nWendy\nWren\nYaneli\nYarely\nYasmine\nAbygail\nAdaline\nAddalyn\nAddilyn\nAlannah\nAlora\nAmani\nAmethyst\nAmia\nAnaiah\nAnali\nAnaly\nAnisa\nAshtyn\nAubry\nAvani\nAzariah\nBelle\nBentley\nBerenice\nBrea\nBrenda\nBriseida\nBryleigh\nBrynley\nCindy\nClaira\nCoral\nCosette\nCristina\nDallas\nDarlene\nDemi\nDestinee\nDiya\nElaine\nElora\nEmmie\nEverly\nGwen\nHalo\nHarlee\nHayleigh\nIvonne\nIzabela\nIzabelle\nJaidyn\nJanette\nJaquelyn\nJazlene\nJenessa\nJocelyne\nJoelle\nJoslyn\nJovie\nJulieta\nKaila\nKalista\nKarlie\nKaydee\nKaylani\nKaylen\nKendal\nKendyl\nKennedi\nKimora\nLaney\nLara\nLeanne\nLenora\nLexani\nLexy\nLianna\nLilith\nLluvia\nLucianna\nLynette\nMadalynn\nMadisen\nMaeve\nMagdalena\nMaleah\nMaren\nMaricela\nMariela\nMarlie\nMartha\nMatilda\nMayrin\nMercy\nMicaela\nMylie\nNala\nNaomy\nNeha\nNoelani\nNoelia\nPenny\nPromise\nQuincy\nRaylene\nRebeca\nRocio\nRosalyn\nRoxanna\nSally\nSerene\nSkylee\nSoleil\nSusana\nTahlia\nTegan\nVirginia\nXitlali\nYadira\nYarel\nYasmin\nYazmin\nYulianna\nZaylee\nZion\nAbbey\nAbella\nAbigayle\nAbrielle\nAddie\nAdley\nAdysen\nAislynn\nAlaya\nAlayah\nAleigha\nAlessa\nAlexus\nAleyah\nAlisa\nAlycia\nAlynna\nAlyssia\nAlyvia\nAmairani\nAmara\nAmariah\nAmberly\nAmilia\nAmiya\nAnalise\nAnnaleigh\nAreli\nAriadna\nAriadne\nArianni\nArianny\nAritza\nAriyanna\nArlene\nAsha\nAudra\nAudriana\nAvrie\nBlakely\nBraylee\nBree\nBria\nBriley\nCalliope\nCarlie\nCarmella\nCeline\nChanel\nCharli\nCheyanne\nCienna\nClementine\nCleo\nDaleyza\nDalila\nDanae\nDavina\nDeborah\nDeja\nDelanie\nDelylah\nDezirae\nElina\nElliot\nElyssa\nEmerie\nEricka\nEsme\nEstefania\nEvie\nFarah\nGisele\nHaileigh\nHarlie\nHeather\nHolland\nHoney\nHonor\nIrelynn\nJacquelyn\nJaida\nJalynn\nJanice\nJasleen\nJaslene\nJasmyn\nJaylen\nJessa\nJianna\nJolee\nJournee\nJoyce\nJubilee\nKacey\nKailynn\nKalia\nKamilla\nKarely\nKarissa\nKarli\nKarly\nKaryme\nKathy\nKeisha\nKenley\nKensington\nKenzi\nKinsey\nKirra\nKristine\nKyara\nLacie\nLandyn\nLeilanie\nLesly\nLisette\nLorelai\nLotus\nLya\nMacee\nMagaly\nMalaysia\nMarcela\nMarcella\nMarisela\nMarlen\nMarlena\nMarlene\nMaylen\nMeghan\nMelinda\nMilla\nMoriah\nNadine\nNatalya\nNathaly\nNavy\nNelly\nNichole\nNicolette\nNuvia\nRain\nRaylee\nRemy\nRenee\nRobyn\nRosario\nRoslyn\nRoxana\nRyder\nSarahy\nSelina\nSerina\nShanelle\nShania\nShaylee\nSheila\nSidney\nSilvana\nSofie\nSonya\nStacey\nSunny\nTabitha\nTayla\nTeegan\nThea\nTia\nTinsley\nVienna\nYara\nYatziri\nYazmine\nYessenia\nYsenia\nYvonne\nZahara\nZaida\nZaira\nZariyah\nZella\nZendaya\nZia\nZooey\nZulema\nSophia\nIsabella\nEmma\nMia\nOlivia\nEmily\nSofia\nAbigail\nAva\nMadison\nElizabeth\nCamila\nNatalie\nCharlotte\nVictoria\nEvelyn\nAvery\nAria\nLayla\nHarper\nSamantha\nZoe\nChloe\nLily\nAubrey\nAaliyah\nAmelia\nLillian\nBrooklyn\nGrace\nAriana\nZoey\nHannah\nArianna\nScarlett\nAudrey\nElla\nGenesis\nMila\nPenelope\nNevaeh\nAddison\nAllison\nHailey\nAlexis\nMelanie\nAlexa\nViolet\nNicole\nKimberly\nBella\nGabriella\nSerenity\nNatalia\nFaith\nSavannah\nLeah\nAlyssa\nJocelyn\nKaylee\nValentina\nMackenzie\nEllie\nLucy\nRuby\nBrianna\nJasmine\nLiliana\nAriel\nRiley\nSadie\nAndrea\nGianna\nPeyton\nAshley\nBrielle\nElena\nXimena\nDelilah\nAutumn\nClaire\nKennedy\nMaria\nMaya\nSarah\nTaylor\nKhloe\nLilly\nLuna\nMadelyn\nMya\nAurora\nStella\nBailey\nSophie\nTatum\nAlexia\nJulia\nKendra\nMelody\nValeria\nIsabel\nAnnabelle\nPayton\nJade\nKayla\nLeilani\nAlexandra\nAubree\nEva\nMariah\nPaige\nPresley\nReagan\nKatherine\nRylee\nMichelle\nNaomi\nPaisley\nEliana\nMadeline\nMckenzie\nValerie\nKylie\nSkylar\nIzabella\nJordyn\nQuinn\nAnna\nBrooke\nAlice\nDaisy\nDestiny\nCora\nIsabelle\nGiselle\nHayden\nSydney\nKatelyn\nLyla\nVanessa\nAliyah\nAthena\nKinsley\nMariana\nTrinity\nJessica\nKylee\nLydia\nPiper\nSienna\nAlicia\nIvy\nKate\nLauren\nLondon\nAmy\nBrooklynn\nJacqueline\nKendall\nLeila\nLucia\nMakayla\nMolly\nReese\nStephanie\nHazel\nKaitlyn\nNora\nVivian\nAngela\nArabella\nJaylah\nRachel\nYaretzi\nAdriana\nEleanor\nEmilia\nAnastasia\nDaniela\nGenevieve\nGracie\nJosephine\nAlexandria\nEden\nEmery\nMarley\nMiranda\nAlessandra\nAlondra\nAna\nAngelina\nEliza\nHadley\nHope\nLexi\nMorgan\nJayla\nJuliana\nLaila\nSummer\nAmaya\nArya\nBrynlee\nElise\nJordan\nJulianna\nJuliet\nKiara\nMckenna\nRose\nSara\nAdrianna\nAlana\nAngelique\nAniyah\nKenzie\nLilliana\nMary\nMikayla\nRebecca\nWillow\nCaroline\nCharlie\nHarmony\nIsla\nJennifer\nKamila\nAlaina\nBianca\nBriella\nGabriela\nHaylee\nJayleen\nJazlyn\nMelissa\nScarlet\nAdelyn\nAlejandra\nAmber\nAylin\nCarly\nDiana\nJazmin\nKeira\nAdalyn\nAngelica\nAubrie\nCarolina\nHaven\nMakenzie\nMarissa\nRaelynn\nSabrina\nTeagan\nViviana\nAdalynn\nAlayna\nApril\nElisa\nEsmeralda\nGemma\nHaley\nIris\nItzel\nLola\nMarilyn\nNorah\nVeronica\nAlison\nBriana\nElliana\nLeslie\nPhoebe\nRegina\nVivienne\nAdeline\nAmanda\nAnnabella\nBrynn\nCadence\nCatherine\nDaniella\nElle\nFiona\nJenna\nNoelle\nRuth\nAlivia\nAnaya\nAudrina\nDelaney\nEmerson\nJimena\nJuliette\nKaydence\nKayleigh\nLacey\nLila\nMaddison\nRosalie\nShelby\nTiffany\nAbby\nAlina\nAllyson\nAyla\nCallie\nChristina\nClara\nDanna\nDaphne\nHanna\nJazmine\nMakenna\nMiley\nNadia\nNataly\nRyleigh\nAinsley\nAriza\nAshlyn\nAshlynn\nAzalea\nCamille\nCassandra\nCeleste\nEsther\nEvangeline\nJane\nKira\nKyra\nMaci\nMarlee\nSage\nSelena\nSerena\nAlma\nCamilla\nCassidy\nDaleyza\nDanielle\nDesiree\nElaina\nElianna\nElsie\nHarley\nKaelyn\nKamryn\nKinley\nLilah\nMegan\nNina\nTessa\nAiyana\nAngel\nBlake\nChelsea\nCheyenne\nFernanda\nFinley\nGuadalupe\nIvanna\nJayden\nLondyn\nMadeleine\nMadilyn\nMonica\nRaegan\nAllie\nAnnalise\nBethany\nCali\nCarmen\nCatalina\nDahlia\nEstrella\nEverly\nGabrielle\nJune\nKarla\nKatie\nKyla\nMargaret\nMiriam\nMyla\nNayeli\nPaulina\nTatiana\nAdelaide\nAdelynn\nAdilene\nAileen\nAriella\nCataleya\nCecilia\nChanel\nDenise\nFatima\nHeaven\nKeyla\nLexie\nLuciana\nOlive\nPriscilla\nSierra\nAmiyah\nAnahi\nCharley\nClarissa\nJosie\nJulissa\nKali\nKaren\nKarina\nKenya\nLia\nMacie\nMalia\nMiah\nParker\nRenata\nReyna\nSarai\nYaritza\nAleah\nAmerica\nAubrianna\nAverie\nCynthia\nEvelynn\nGia\nJemma\nJoanna\nKailey\nKaylie\nKelsey\nKora\nLeia\nLilian\nLilianna\nLilyana\nLucille\nMadelynn\nMelina\nMonroe\nNatasha\nSkyler\nSloane\nYareli\nAlena\nAmelie\nAmira\nAnabelle\nArlene\nAspen\nBryanna\nDulce\nEmmy\nGiuliana\nJanelle\nJessie\nJulie\nMelany\nMichaela\nNova\nPaloma\nSavanna\nScarlette\nShiloh\nAdelina\nAliana\nAliya\nAngie\nArielle\nAudriana\nBrisa\nBrittany\nDayana\nEmber\nEsperanza\nEvie\nGwendolyn\nHeidi\nItzayana\nJada\nJamie\nJaylene\nJillian\nJocelynn\nJoselyn\nKadence\nKaia\nKassidy\nKathryn\nKiera\nKimber\nLana\nMallory\nMarina\nMarisol\nPaityn\nParis\nRaquel\nRenee\nRowan\nTiana\nAddyson\nAmaris\nAnnie\nAnya\nAriadne\nAubrielle\nAyleen\nAzul\nBaylee\nBraelyn\nBridget\nBrinley\nDakota\nDana\nEmmalyn\nHayley\nHelena\nJaelyn\nJanessa\nJanney\nJaqueline\nJayda\nKassandra\nKatelynn\nKyleigh\nLeilany\nLillyana\nLillyanna\nLinda\nLorelei\nLyric\nMadilynn\nMaggie\nMara\nMariajose\nMckinley\nPaola\nPerla\nRaelyn\nSalma\nSkye\nTalia\nVera\nAbril\nAda\nAdele\nAlyson\nAlyvia\nAmara\nAnabella\nAubriella\nBraelynn\nCaitlin\nCaitlyn\nCarla\nCharlee\nCharli\nEloise\nEmelia\nErika\nFelicity\nFrida\nGeorgia\nGracelyn\nIliana\nIrene\nIsis\nJazlynn\nKara\nLena\nLeyla\nLiana\nLilith\nLuz\nMaliyah\nMarjorie\nMilania\nNoemi\nRebekah\nRomina\nRosemary\nRylie\nSamara\nSariah\nAddisyn\nAdrienne\nAleena\nAmiah\nAnika\nAnissa\nAniya\nAnnabel\nArely\nAri\nAryanna\nAurelia\nBeatrice\nCiara\nDalilah\nElisabeth\nEmely\nEmilee\nEmilie\nGiana\nHailee\nJasmin\nKaley\nKensley\nLea\nLiberty\nLilyanna\nLogan\nMaia\nMakena\nMaryjane\nMercedes\nMikaela\nNancy\nNatalee\nNatalya\nNathalie\nPatricia\nRaven\nRosa\nSaige\nSarahi\nTegan\nThalia\nYesenia\nZariah\nAlissa\nAmirah\nAnnika\nAolanis\nAraceli\nAveri\nAviana\nBarbara\nBreanna\nBrenna\nCapri\nCaylee\nCecelia\nChristine\nDallas\nDanica\nDanika\nDemi\nElliott\nElsa\nErica\nErin\nEvalyn\nEve\nGloria\nJaelynn\nJaylin\nJazmyn\nJewel\nJohanna\nJoy\nJustice\nKaylin\nKenia\nLainey\nLaylah\nLeighton\nLexy\nLylah\nMabel\nMaribel\nMarie\nMartha\nMckayla\nMilani\nMollie\nPyper\nReina\nSawyer\nShaila\nSherlyn\nSiena\nSofie\nSutton\nSylvia\nWhitney\nAbrielle\nAlanna\nAmani\nAmayah\nAmina\nAnabel\nAnne\nAriah\nAriya\nArlette\nBailee\nBryn\nCelia\nColette\nDalia\nDani\nDanitza\nDariana\nDylan\nEdith\nEiza\nElyse\nEmmalee\nEmmie\nEstefania\nEvalynn\nGrecia\nHalle\nHarlow\nIngrid\nIreland\nIrie\nJanae\nJuniper\nKailani\nKaiya\nKaya\nKelly\nKiana\nKiley\nLaney\nLennon\nLeona\nLorena\nMacy\nMadisyn\nMarlene\nMaxine\nMira\nMyah\nNalani\nNayla\nNeriah\nNia\nNyla\nPhoenix\nRemington\nRyann\nRylan\nSandra\nSasha\nSavanah\nShayla\nTahlia\nTeresa\nVianney\nVirginia\nYamileth\nZoie\nAliah\nAlly\nAnalia\nAnnette\nArizona\nArleth\nAudree\nAudrianna\nBelle\nBentley\nBlakely\nBria\nBristol\nCambria\nCamryn\nCasey\nClaudia\nCourtney\nDalila\nDamaris\nDavina\nDeborah\nDevyn\nEileen\nElliot\nEmerald\nEmersyn\nEvolet\nGalilea\nGiovanna\nHelen\nHolly\nImani\nJacquelyn\nJayne\nJazzlyn\nJordynn\nJulieta\nKailee\nKataleya\nKensington\nLesly\nLilia\nLillianna\nLilyann\nLina\nLisa\nLizbeth\nLizeth\nMalaya\nMalayah\nMalaysia\nMaleah\nMaliah\nMayra\nMeadow\nMilah\nMillie\nMina\nMonserrat\nNathalia\nNaya\nNichole\nNizhoni\nNyah\nOakley\nRemy\nRiver\nRory\nRoselyn\nRoxanne\nRubi\nSelah\nShyanne\nSloan\nTara\nTianna\nTori\nUnique\nVida\nWendy\nXiomara\nYasmin\nZaya\nAbbey\nAbygail\nAddilyn\nAdrina\nAlannah\nAnneliese\nAryana\nAshlee\nAshtyn\nAubriana\nAzaria\nBelen\nBerkley\nBetty\nBlessing\nBlythe\nBree\nBrighton\nCarlee\nCayla\nCharlize\nCitlali\nCoraline\nCosette\nDayanara\nDenisse\nDominique\nElissa\nEllen\nElyssa\nEmerie\nFaye\nFrancesca\nGeorgina\nGwen\nGwyneth\nHadassah\nHarlee\nHattie\nJaden\nJanely\nJaycee\nJayde\nJaylee\nJoslyn\nJourney\nJudith\nJurnee\nJustine\nKailyn\nKarely\nKarime\nKatalina\nKatrina\nKayden\nKayleen\nKaylyn\nKenley\nKyrie\nLacie\nLaura\nLaurel\nLeanna\nLeticia\nLindsay\nLizette\nMadalyn\nMaddie\nMaeve\nMarianna\nMaricela\nMarlie\nMaryam\nMaylin\nMelani\nMicaela\nMilan\nMilena\nMoriah\nMylah\nNathaly\nNeveah\nNicolette\nNikole\nPaulette\nPayten\nPrudence\nRayna\nRebeca\nRemi\nRobin\nRyan\nSedona\nShaye\nSoleil\nSpencer\nTala\nTemperance\nTenley\nWilla\nWren\nYasmine\nYazmin\nYuliana\nYvette\nZara\nAbbigail\nAbriana\nAbrianna\nAddilynn\nAdelle\nAiyanna\nAlanis\nAleya\nAlia\nAlize\nAmairani\nAmairany\nAmeerah\nAmiya\nAnalee\nAnaliyah\nAnnabell\nAnnalee\nAnnalisa\nAracely\nAriyah\nAyana\nAyanna\nBlanca\nBraylee\nBrenda\nBriley\nBrissa\nBrittney\nBryana\nCaelyn\nCameron\nCarissa\nCarley\nCarmella\nCarolyn\nCharleigh\nCharlene\nCielo\nCorinne\nDayla\nDelanie\nDestinee\nDiamond\nElayna\nEmmeline\nEunice\nFrances\nFreya\nGiavanna\nHartley\nHeather\nHolland\nIlliana\nIndie\nIsabela\nIsela\nIvana\nIvory\nIzabelle\nJaneth\nJaslene\nJazelle\nJazlene\nJessa\nJoey\nJoselin\nKailynn\nKaitlin\nKalia\nKallie\nKarli\nKarly\nKarma\nKaycee\nKaylynn\nKeila\nKeilani\nKenna\nKennya\nKhaleesi\nKinsey\nKylah\nLailah\nLarissa\nLindsey\nLiv\nLivia\nLluvia\nLorelai\nLuisa\nLux\nLyra\nMae\nMaite\nMakaylah\nMaren\nMariam\nMarisela\nMaritza\nMaryann\nMavis\nMaylee\nMercy\nMireya\nMiya\nMonique\nMyra\nNoel\nNola\nNya\nNylah\nPaula\nPepper\nPersephone\nPetra\nPoppy\nPreslee\nPrincess\nRenesmee\nRhiannon\nRihanna\nRita\nRiya\nRosalee\nRosie\nSaylor\nSelene\nSiobhan\nSonya\nSoraya\nTaryn\nTia\nVeda\nVianey\nVivianne\nWinter\nYahaira\nYamilet\nYulissa\nYvonne\nZariyah\nZuria\nAbagail\nAdalee\nAdamaris\nAdela\nAfton\nAilyn\nAimee\nAisha\nAlani\nAlany\nAlba\nAlessa\nAlessia\nAli\nAlisha\nAlora\nAlyana\nAmaiyah\nAmalia\nAmilia\nAnais\nAnnabeth\nAnnelise\nArianny\nAriyana\nAudra\nAustyn\nAvah\nAvalynn\nAven\nAyah\nAzaleah\nBobbie\nBraylin\nBrea\nBridgette\nBritney\nBrookelynn\nBrylee\nCailin\nCailynn\nCamdyn\nCara\nCarleigh\nCarlie\nCayleigh\nCelina\nChanelle\nCharity\nCherish\nChevelle\nCindy\nCorrine\nCrystal\nDarianna\nDayra\nDeanna\nDiane\nDianna\nDiya\nDonna\nElanie\nElina\nEllianna\nElvira\nEmmaline\nEmmalynn\nEna\nEstefany\nEvangelina\nEverleigh\nEzra\nFarrah\nGeraldine\nGiada\nGisselle\nGreta\nGuiliana\nGwenyth\nHallie\nHeily\nHunter\nIndigo\nIvette\nJacey\nJaiden\nJaney\nJaniyah\nJaslyn\nJaylynn\nJenicka\nJenny\nJolie\nJoseline\nJoyce\nJuanita\nJulianne\nKaidence\nKairi\nKaleah\nKalli\nKamilah\nKamilla\nKathleen\nKatia\nKayli\nKeagan\nKendyl\nKianna\nKierra\nKirsten\nKori\nKristen\nKrystal\nLanaya\nLeena\nLennox\nLiah\nLillie\nLitzy\nLucinda\nMacey\nMackenna\nMadalynn\nMadyson\nMaisy\nMalin\nMariyah\nMatilda\nMayte\nMilana\nMonae\nNaevia\nNallely\nNikki\nPamela\nPeighton\nPrecious\nPreslie\nRamona\nRania\nRaylee\nRayne\nRilynn\nRosalind\nRosalyn\nRoxy\nRyanne\nSaanvi\nSaniyah\nSelina\nShaylee\nSheyla\nShirley\nSky\nSkyla\nSol\nStormy\nSunny\nSuzanna\nTaliah\nTania\nTanvi\nTaytum\nTeegan\nTesla\nTheresa\nTinsley\nToni\nTrisha\nValery\nVayda\nVioleta\nYara\nZainab\nZendaya\nZinnia\nZiva\nZuleyka\nSophia\nEmma\nMia\nIsabella\nOlivia\nSofia\nAva\nAbigail\nEmily\nVictoria\nCharlotte\nElizabeth\nNatalie\nZoey\nScarlett\nEvelyn\nMadison\nAmelia\nAria\nAvery\nCamila\nHarper\nPenelope\nLayla\nZoe\nElla\nChloe\nGrace\nLily\nBrooklyn\nAriana\nNevaeh\nMila\nHannah\nArianna\nHailey\nXimena\nAllison\nAaliyah\nLillian\nSamantha\nAubrey\nAddison\nMelanie\nAlexa\nAudrey\nViolet\nGenesis\nEllie\nSavannah\nSerenity\nGabriella\nKaylee\nLeah\nAlexis\nAurora\nNatalia\nAndrea\nBella\nAnnabelle\nSadie\nValentina\nDaleyza\nAutumn\nClaire\nLuna\nKimberly\nMadelyn\nLiliana\nLeilani\nLucy\nNicole\nRiley\nAshley\nDelilah\nMaria\nPeyton\nRuby\nStella\nMackenzie\nAlyssa\nPaisley\nEliana\nFaith\nMaya\nMya\nBrianna\nKennedy\nKylie\nSarah\nAlexandra\nIvy\nValeria\nGianna\nEva\nReagan\nAriel\nAubree\nJade\nKayla\nTaylor\nPiper\nElena\nHazel\nIsabel\nMadeline\nTrinity\nAna\nBrielle\nNora\nSophie\nAthena\nGiselle\nJasmine\nLilly\nMelody\nQuinn\nRylee\nEleanor\nNaomi\nVivian\nAlice\nKhloe\nEmery\nAnna\nLauren\nBailey\nKatherine\nPresley\nBrooke\nDestiny\nAmaya\nJulia\nIsabelle\nSydney\nVanessa\nAlina\nLydia\nPaige\nAlexia\nAngelina\nSkylar\nCora\nKendra\nTatum\nGenevieve\nIzabella\nJocelyn\nValerie\nLyla\nMariah\nPayton\nHayden\nDaisy\nJennifer\nKinsley\nMckenzie\nMorgan\nYaretzi\nArabella\nClara\nJulianna\nMakayla\nReese\nAdalynn\nEverly\nJuliana\nMichelle\nWillow\nAdriana\nAlexandria\nKate\nLaila\nLondon\nRose\nAlessandra\nEden\nEmilia\nAliyah\nEsmeralda\nJordyn\nLilliana\nParker\nStephanie\nAnastasia\nAngelique\nBrooklynn\nElise\nJuliet\nRenata\nKendall\nLucia\nMariana\nSummer\nAdelyn\nJacqueline\nKaitlyn\nLexi\nDaniela\nGabriela\nIvanna\nMiranda\nNayeli\nSienna\nIsla\nMakenzie\nMarley\nNadia\nRebecca\nAlondra\nBrynlee\nItzel\nJessica\nKamila\nAdalyn\nAlicia\nCaroline\nJosephine\nKaydence\nKeira\nTeagan\nAmy\nAngela\nArielle\nArya\nCharlie\nHarley\nHope\nIris\nJayla\nJuliette\nMolly\nCallie\nEliza\nHadley\nJazmin\nKylee\nTessa\nCataleya\nMckenna\nMelissa\nNoelle\nAylin\nJayleen\nMary\nSara\nAlayna\nDiana\nGemma\nKenzie\nKinley\nAnahi\nAnnabella\nCecilia\nElisa\nEvelynn\nFernanda\nMegan\nNorah\nOlive\nRachel\nAdeline\nEvangeline\nFinley\nJazlyn\nKathryn\nLola\nMakenna\nMiriam\nShelby\nAdelina\nBrynn\nElliana\nHarmony\nJimena\nKatelyn\nKiara\nLondyn\nLucille\nMadeleine\nRaegan\nRegina\nAlaina\nAlison\nAmina\nCali\nDaphne\nKarla\nKatie\nLila\nMadilyn\nMarissa\nRaelynn\nRosalie\nSabrina\nSelena\nAlana\nAlivia\nAmber\nAriella\nAshlyn\nBriella\nCrystal\nDakota\nEmerson\nKali\nLeila\nSage\nSierra\nAdrianna\nAniyah\nAshlynn\nDaniella\nDanielle\nEstrella\nFiona\nGracie\nHarlow\nHaylee\nLeslie\nMonserrat\nTalia\nAnabelle\nAnaya\nApril\nAranza\nAyla\nAyleen\nBianca\nBria\nCatalina\nCharlee\nChristina\nDanna\nElsa\nEsperanza\nJazmine\nJoanna\nMikaela\nMikayla\nPhoebe\nRuth\nRyleigh\nSawyer\nSkyler\nYamileth\nAda\nAlejandra\nAriah\nAriza\nAudrina\nCadence\nCatherine\nChelsea\nDayana\nGia\nHaley\nLilian\nMelany\nAzalea\nBlake\nCamille\nDelaney\nEsther\nKyla\nLana\nMaci\nMaddison\nMarilyn\nMiah\nNatasha\nNaya\nPriscilla\nSavanna\nScarlet\nViviana\nAdelynn\nAlani\nAllie\nAllyson\nElaina\nJordan\nKimber\nKira\nLaura\nLia\nLilyana\nMadalyn\nMaggie\nMargaret\nNova\nPerla\nRomina\nSloane\nAdilene\nAileen\nAinsley\nAlyson\nAngelica\nBaylee\nCamilla\nCarly\nCeleste\nElle\nEmber\nEmilee\nHanna\nJayden\nJaylah\nLeia\nLiberty\nReyna\nSkye\nVivienne\nYaritza\nAngel\nAnnie\nAspen\nAverie\nBraelyn\nBrinley\nBrylee\nCheyenne\nDahlia\nGabrielle\nGiuliana\nGloria\nJane\nJenna\nJulissa\nLaylah\nMyla\nAleena\nAnika\nAvianna\nCarolina\nChanel\nDylan\nHeidi\nHenley\nJada\nJanessa\nJune\nJustice\nKadence\nKayleigh\nLilyanna\nMalia\nMaliyah\nMelina\nNeveah\nRaquel\nRosa\nSamara\nVera\nZariah\nAdelaide\nAmara\nAraceli\nAubriana\nAzul\nBridget\nCassidy\nColette\nDulce\nEmmalyn\nHolly\nIvory\nJessie\nJosie\nJuniper\nKassidy\nKhaleesi\nMillie\nNina\nPatricia\nRebekah\nTiffany\nVeronica\nAddyson\nAmanda\nAnissa\nAryanna\nBriana\nElyse\nEmely\nErin\nGeorgia\nGracelyn\nGwendolyn\nHaven\nHelena\nItzayana\nJaylene\nJourney\nKaia\nKailey\nKelsey\nKiera\nLacey\nLilianna\nLyric\nMalaya\nMarianna\nMarjorie\nMontserrat\nNataly\nParis\nPaula\nPenny\nSariah\nThalia\nYareli\nAbril\nAlma\nAmiyah\nAnabella\nBethany\nBryanna\nCambria\nCapri\nCarmen\nCassandra\nCristina\nCynthia\nDanica\nDemi\nDenise\nEve\nFelicity\nIrie\nKaelyn\nKarina\nKassandra\nKenia\nMacie\nMadelynn\nMadilynn\nMarisol\nMarlee\nMichaela\nPaulina\nRylie\nSarai\nSelah\nSherlyn\nSkyla\nSylvia\nTeresa\nAiram\nAleah\nAmerica\nAnabel\nArely\nAubrie\nCaitlyn\nCamryn\nCeline\nDalary\nDalilah\nDallas\nElianna\nElsie\nEmmalynn\nFatima\nGuadalupe\nHayley\nImani\nIsabela\nJanelle\nJewel\nJillian\nJulie\nKamryn\nKatelynn\nKayden\nKaylynn\nLena\nLennon\nLeona\nLeyla\nLinda\nLuciana\nMariajose\nMariam\nMckinley\nMeadow\nMina\nMiya\nPaloma\nRaven\nRemington\nSarahi\nSasha\nShiloh\nAlena\nAmelie\nAngie\nAnnalee\nAryana\nBrenda\nCarla\nCharlize\nDavina\nDesiree\nElisabeth\nElliot\nEloise\nErica\nEverleigh\nFrida\nHolland\nIliana\nJoy\nKailyn\nKayleen\nKenya\nKiana\nKyra\nLea\nLesly\nLexie\nLilith\nLuz\nLylah\nMabel\nMalaysia\nMarie\nMiley\nNathalie\nPaislee\nPaulette\nPearl\nPhoenix\nRyan\nScarlette\nSerena\nTabitha\nVivianna\nWinter\nYesenia\nYuliana\nZaniyah\nZara\nAbby\nAisha\nAliana\nAlianna\nAlly\nAmalia\nAmira\nAngeline\nAniya\nAntonia\nAriya\nAubriella\nBailee\nBlakely\nBreanna\nBrisa\nCameron\nCasey\nClarissa\nClementine\nEdith\nElayna\nEllianna\nElora\nErika\nEverlee\nFreya\nGisselle\nGwen\nHadassah\nHeaven\nIvana\nJaelyn\nJaelynn\nJazlynn\nJohanna\nJoselyn\nJulieta\nKaiya\nKara\nKenley\nKeyla\nKyleigh\nLeighton\nLeticia\nLiana\nLilah\nLillianna\nLillyana\nLindsay\nLogan\nMallory\nMonroe\nPaola\nRaelyn\nRosemary\nSaige\nTara\nTegan\nWhitney\nYamilet\nYvette\nAbrianna\nAddelyn\nAimee\nAlannah\nAnais\nAnya\nArantza\nAriadne\nAudriana\nAzalia\nClaudia\nCoral\nDamaris\nDani\nDanitza\nDorothy\nElissa\nEsme\nEvalyn\nEvangelina\nJamie\nJaylin\nJenesis\nJessa\nJocelynn\nKamilah\nKaren\nKiley\nLailah\nLaylani\nLillith\nLindsey\nLizbeth\nLux\nMaia\nMaleah\nMarian\nMaritza\nMartha\nMavis\nMercedes\nMilan\nMilena\nMireya\nMyah\nNatalee\nNathaly\nNia\nNoemi\nNya\nReina\nRemi\nRemy\nRiver\nSaanvi\nTatiana\nXochitl\nZoie\nZuri\nAbrielle\nAddisyn\nAilyn\nAlaya\nAnnalise\nAnnamarie\nAracely\nArlene\nArlette\nArmani\nAubrianna\nAubrielle\nAyanna\nAyva\nBlanca\nBrittany\nCaitlin\nChanelle\nCharley\nCoraline\nDalila\nDania\nDelia\nDrew\nElaine\nElin\nEmelia\nEmersyn\nEmmalee\nEmmy\nFarrah\nFrances\nGalilea\nGiana\nGracelynn\nGrecia\nHaylie\nIrene\nItalia\nIzabelle\nJemma\nJenevieve\nJoslyn\nKai\nKarsyn\nKatalina\nKaylin\nKeilani\nKensley\nKristina\nKrystal\nLainey\nLillie\nLillyanna\nLina\nLisa\nLivia\nLorena\nMacey\nMacy\nMadisyn\nMadyson\nMaisie\nMaliah\nMara\nMaylin\nMayte\nMicaela\nMonica\nMoriah\nMyra\nNathalia\nNavy\nNikki\nRaina\nRenesmee\nRihanna\nRosie\nSaniyah\nSantana\nSelina\nSky\nSumaya\nSuri\nSutton\nTania\nTemperance\nTiana\nAbbigail\nAdaleigh\nAida\nAiyanna\nAlanna\nAlba\nAliah\nAlissa\nAliyana\nAmairany\nAmirah\nAnnabell\nAnnabeth\nAriadna\nAstrid\nAudrianna\nAvalon\nAvayah\nAveri\nAviana\nAyana\nBlair\nBraelynn\nBraylee\nBriseis\nBrynley\nCattleya\nCaydence\nCelina\nDelanie\nDiamond\nEiza\nElliott\nEmerie\nEmi\nEmmie\nEvalynn\nEvie\nGeraldine\nGraciela\nGreta\nHailee\nHalle\nHarlee\nIreland\nIsabell\nIsis\nJacquelyn\nJaqueline\nJayde\nJazleen\nJazlene\nJournee\nJuanita\nKailani\nKarely\nKarma\nKathleen\nKaya\nKaylie\nKelsie\nKenna\nKynlee\nLandry\nLaney\nLeilah\nLiah\nLiv\nLorelai\nLorelei\nMadalynn\nMaeve\nMaite\nMarina\nMayah\nMercy\nMilah\nMilani\nMiracle\nMonique\nNeriah\nNyla\nNylah\nPayson\nPepper\nPersephone\nPrincess\nRachael\nRiya\nRobyn\nRoselyn\nRowan\nRyann\nSalem\nSaylor\nShaylee\nSinai\nSloan\nStar\nTaliyah\nTaryn\nTaylin\nTaytum\nUnique\nVianey\nVianney\nWendy\nXitlali\nYasmin\nZendaya\nZyla\nAdalina\nAddilyn\nAdele\nAdyson\nAiyana\nAlayah\nAlisha\nAliza\nAmaris\nAmayah\nAmilia\nAnabell\nAnalia\nAnayah\nAndi\nAnia\nAnita\nAolanis\nAreli\nArianny\nAriyah\nAriyanna\nAurelia\nAustyn\nBarbara\nBelinda\nBernadette\nBlythe\nBrigitte\nBriley\nCarlie\nCaylee\nCharli\nChevelle\nChristine\nCiara\nCielo\nConstance\nDalia\nDanika\nDariana\nDarla\nDeborah\nDevyn\nEileen\nElinor\nEllison\nElodie\nEma\nEmeri\nEmilie\nEmmeline\nFallon\nFaye\nFrankie\nGiovanna\nGisele\nGissel\nGwenyth\nGwyneth\nHadlee\nHarlie\nHelen\nHunter\nIsadora\nIsela\nIzel\nJaneth\nJayda\nJaylee\nJaylynn\nJenny\nJolie\nKailynn\nKaitlin\nKaitlynn\nKalani\nKaliyah\nKarime\nKelly\nKendal\nKendyl\nKennedi\nKianna\nKiersten\nKrista\nLacy\nLeanna\nLeela\nLianna\nLibby\nLilia\nLuisa\nLupita\nMarcella\nMariel\nMarisa\nMarli\nMaryjane\nMatilda\nMollie\nNala\nNatalya\nNavya\nPaityn\nRayna\nRenee\nRilynn\nRita\nRory\nRoxanna\nSandra\nSelene\nSpencer\nStephany\nStevie\nTayla\nTheresa\nVanellope\nVida\nVivianne\nWilla\nYulianna\nZion\nZola\nAadhya\nAadya\nAarna\nAbbey\nAbbie\nAbriella\nAdalie\nAdamaris\nAdilyn\nAdina\nAdrienne\nAdrina\nAilani\nAlexus\nAleyda\nAleyna\nAlyana\nAlycia\nAlysson\nAlyvia\nAmari\nAmerie\nAmiah\nAminah\nAmya\nAnaleigh\nAnalise\nAnanya\nAngelik\nAnnalicia\nAnne\nAnneliese\nAnnette\nAri\nArianni\nAribella\nAriela\nAvah\nAya\nAzariah\nAzucena\nBeatrice\nBelle\nBerenice\nBerlin\nBlessing\nBonnie\nBrenna\nBriseida\nBritney\nCaitlynn\nCamdyn\nCandace\nCarli\nCarolyn\nCarson\nCarter\nCecily\nCharity\nCharleigh\nCharlene\nCherish\nCheyanne\nChiara\nCloe\nDanissa\nDarlene\nDayanara\nDayanna\nDeanna\nEisley\nElia\nElyssa\nEmmerson\nEricka\nEstelle\nEvolet\nEzra\nFlor\nGoldie\nHana\nHarleigh\nHartley\nHattie\nHayleigh\nIyana\nJaina\nJana\nJanney\nJasmin\nJiselle\nJoey\nJovie\nJudith\nKaelynn\nKalea\nKaley\nKamille\nKarlie\nKarter\nKataleya\nKatarina\nKaterina\nKeziah\nKhadija\nKinsey\nKora\nKori\nKorra\nKyrie\nLainee\nLillyann\nLilyan\nLinnea\nLizette\nLynda\nLyra\nMae\nMagdalena\nMagdalene\nMagnolia\nMaisy\nMarceline\nMaren\nMargarita\nMariella\nMaxine\nMayra\nMelani\nMelannie\nMelinda\nMiyah\nNahomi\nNalani\nNichole\nNoa\nNovalee\nOakley\nOpal\nOphelia\nPoppy\nPrecious\nPyper\nQueen\nRocio\nRosemarie\nRoxanne\nSally\nSalma\nSaphira\nSapphire\nSavana\nSedona\nSenna\nShania\nSiena\nSimone\nSol\nSolana\nSonia\nStacy\nSusan\nTamara\nTenley\nTess\nVania\nVioletta\nWynter\nXiomara\nYamilex\nYanitza\nYara\nYarely\nYasmeen\nYulissa\nZaria\nZayla\nZoee\nZooey\nJohn\nManuel\nJoe\nWilliam\nFrank\nJames\nRobert\nJose\nHenry\nLouis\nJack\nJoseph\nJuan\nAlbert\nEdward\nAntonio\nCharles\nRamon\nAlfred\nPaul\nThomas\nDavid\nFred\nGeorge\nArthur\nGilbert\nPete\nRafael\nRaymond\nSamuel\nFrancisco\nHarold\nKenneth\nPedro\nArmando\nBenjamin\nCarlos\nDan\nHarry\nLeo\nLuis\nMiguel\nMike\nRoberto\nTony\nJohn\nJoe\nJose\nFrank\nGeorge\nJames\nJuan\nWilliam\nRobert\nRalph\nFrancisco\nHenry\nJoseph\nEdward\nManuel\nPaul\nHarry\nLouis\nAlbert\nArthur\nCharles\nDonald\nRichard\nErnest\nRamon\nAntonio\nGilbert\nRafael\nSamuel\nDavid\nLeo\nPedro\nRaymond\nAndrew\nEugene\nJesus\nKee\nSam\nThomas\nTom\nWalter\nJohn\nFrank\nJames\nJoe\nWilliam\nManuel\nRobert\nJoseph\nJose\nCharles\nHenry\nGeorge\nRichard\nThomas\nEdward\nJesus\nAlbert\nJuan\nWalter\nAntonio\nFrancisco\nRalph\nDavid\nFred\nPaul\nJack\nRoberto\nEugene\nLouis\nRamon\nRaymond\nTom\nAlfred\nSamuel\nWillie\nCharlie\nChester\nHarry\nHoward\nLawrence\nLee\nLuis\nSam\nAlex\nDaniel\nErnest\nGilbert\nJim\nLloyd\nPete\nRay\nTony\nAndrew\nCarl\nCarlos\nHarold\nKenneth\nLeo\nLeonard\nLewis\nRicardo\nRoy\nAlfonso\nAngel\nBernard\nGuadalupe\nHerbert\nJesse\nMichael\nPedro\nSalvador\nJohn\nWilliam\nJames\nGeorge\nManuel\nRobert\nJoe\nFrank\nJose\nAlbert\nJoseph\nEdward\nCharles\nHenry\nPaul\nGilbert\nJack\nArthur\nJuan\nLouis\nRalph\nRamon\nThomas\nFrancisco\nHarold\nCarlos\nDavid\nAntonio\nPedro\nRaymond\nRichard\nTony\nClarence\nErnest\nLuis\nMartin\nSam\nVictor\nFred\nJesus\nRay\nWalter\nAndrew\nFrancis\nHarry\nLeonard\nPete\nAlexander\nLawrence\nAlex\nAlfred\nEarl\nHerbert\nKenneth\nOscar\nAmos\nClyde\nGuy\nHoward\nIgnacio\nRoy\nSamuel\nSteve\nTom\nAlfonso\nBen\nCarl\nDaniel\nFernando\nJesse\nLloyd\nMike\nPhillip\nRaul\nSalvador\nVernon\nWaldo\nWoodrow\nWilliam\nFrank\nJohn\nGeorge\nJose\nJoe\nRobert\nJames\nManuel\nCharles\nAlbert\nJoseph\nHenry\nFred\nErnest\nHarry\nRaymond\nRalph\nLouis\nJack\nJuan\nArthur\nJesus\nPaul\nRamon\nRichard\nThomas\nDavid\nEdward\nPedro\nAntonio\nGilbert\nHarold\nRoy\nLawrence\nCarl\nCarlos\nMike\nMartin\nWalter\nAlfred\nCruz\nEarl\nLeonard\nSamuel\nTony\nAlex\nFrancisco\nHoward\nLuis\nRay\nAlfredo\nBen\nCharlie\nClyde\nDonald\nEddie\nEugene\nLee\nLeo\nLewis\nPeter\nAndrew\nArmando\nChester\nErnesto\nFelix\nKenneth\nOscar\nPete\nRafael\nAlberto\nAlejandro\nBill\nDan\nFrancis\nHerman\nJess\nJesse\nLloyd\nMiguel\nRoberto\nRodolfo\nStanley\nTom\nTomas\nAlexander\nArturo\nAugustine\nBenjamin\nClarence\nClaude\nDaniel\nEdwin\nElmer\nEnrique\nFernando\nFrederick\nGabriel\nKeith\nNelson\nRoss\nRussell\nSam\nSteve\nTheodore\nJohn\nWilliam\nRobert\nFrank\nJoe\nJames\nManuel\nJose\nCharles\nGeorge\nJoseph\nAlbert\nHenry\nJack\nFred\nRalph\nAntonio\nRichard\nJuan\nLouis\nRaymond\nDavid\nEdward\nThomas\nArthur\nGilbert\nHarry\nRamon\nAlfred\nErnest\nCarl\nDonald\nJesus\nPaul\nRay\nAndrew\nFrancisco\nMike\nRoy\nRaul\nCarlos\nLawrence\nLeo\nRudolph\nWalter\nHarold\nPedro\nEnrique\nEugene\nHugh\nMiguel\nBill\nChester\nTony\nVincent\nAlfonso\nAngel\nBen\nFelix\nHoward\nJesse\nJim\nKenneth\nPete\nRoberto\nSalvador\nSteve\nAbel\nAlberto\nAnthony\nClyde\nEdwin\nElmer\nFernando\nLeon\nLeonard\nLuis\nPhilip\nTom\nVictor\nAlfredo\nClarence\nErnesto\nFloyd\nGuadalupe\nGuillermo\nOscar\nPhillip\nRodolfo\nAlex\nAllen\nBernard\nEdmundo\nFrancis\nHorace\nLeroy\nMarvin\nMelvin\nNorman\nSamuel\nSimon\nTrinidad\nWallace\nWesley\nAdolfo\nAlexander\nAndres\nArmando\nArnold\nBenjamin\nBilly\nCharlie\nDaniel\nEarl\nEvaristo\nFrederick\nGabriel\nGlenn\nGordon\nGuy\nJimmie\nJoaquin\nKee\nLee\nLester\nLewis\nPeter\nSantiago\nTheodore\nTommy\nWayne\nJohn\nManuel\nWilliam\nRobert\nFrank\nJoe\nJames\nJose\nGeorge\nCharles\nEdward\nAlbert\nJesus\nHenry\nArthur\nDavid\nFred\nRamon\nRichard\nThomas\nErnest\nHarry\nJoseph\nJuan\nCarl\nRalph\nAntonio\nFrancisco\nEugene\nPaul\nLouis\nPedro\nRaymond\nJack\nAlfonso\nTony\nAlfredo\nPete\nAlfred\nFelix\nKenneth\nMike\nNorman\nRoy\nDaniel\nDonald\nHarold\nClarence\nRay\nAllen\nAndrew\nLloyd\nTheodore\nVictor\nCarlos\nHoward\nRafael\nTom\nFrancis\nGuadalupe\nLeo\nOscar\nRudolph\nGilbert\nMartin\nRuben\nSam\nWalter\nBill\nChester\nEarl\nLeonard\nLuis\nSteve\nAlex\nAngel\nAnthony\nArmando\nBenjamin\nDan\nHerbert\nJesse\nLorenzo\nMax\nPeter\nRaul\nWillard\nWillie\nAlberto\nAlexander\nBen\nBert\nCharlie\nClifford\nClyde\nEdgar\nEdwin\nGlenn\nGuy\nLester\nMarvin\nMelvin\nRoberto\nRodolfo\nSalvador\nSamuel\nElias\nErnesto\nFloyd\nGordon\nGus\nHarvey\nJess\nJim\nLawrence\nLupe\nMark\nNick\nRicardo\nWarren\nAbraham\nArnulfo\nBernard\nEduardo\nEverett\nFernando\nFranklin\nFrederick\nGabriel\nGustavo\nHerman\nJimmy\nKarl\nMarion\nMiguel\nPatrick\nPhilip\nRefugio\nRosendo\nSidney\nSteven\nVicente\nWilbur\nWilson\nYgnacio\nJohn\nWilliam\nRobert\nManuel\nJose\nFrank\nJoe\nJames\nGeorge\nCharles\nJoseph\nAlbert\nEdward\nThomas\nAntonio\nHenry\nJuan\nJack\nFrancisco\nJesus\nErnest\nArthur\nFred\nLouis\nWalter\nRalph\nRichard\nPaul\nRamon\nRaymond\nLawrence\nDavid\nDonald\nHarold\nAlfred\nGilbert\nMike\nRay\nRoy\nTony\nCarlos\nHarry\nPedro\nPete\nDaniel\nEnrique\nKenneth\nMartin\nBenjamin\nFrancis\nHoward\nRoberto\nCarl\nGuadalupe\nLuis\nOscar\nSalvador\nCecil\nFernando\nSam\nTom\nVictor\nAlfonso\nAngel\nBen\nKeith\nLeo\nAlejandro\nClarence\nEarl\nGordon\nJulio\nLewis\nLloyd\nPablo\nAlberto\nAlex\nAlexander\nAndrew\nArnold\nArturo\nEduardo\nElmer\nEugene\nFelix\nMilton\nPhillip\nRafael\nRefugio\nRicardo\nSamuel\nWillie\nWoodrow\nAgustin\nArmando\nFelipe\nHerbert\nIgnacio\nIsmael\nJulian\nLeon\nLeroy\nMelvin\nMiguel\nNicolas\nRaul\nRodolfo\nStanley\nTheodore\nVicente\nAlfredo\nAndres\nBert\nBob\nClyde\nEddie\nEdwin\nFloyd\nGerald\nGuillermo\nGuy\nHarvey\nHubert\nKee\nPeter\nPhilip\nRudolph\nSimon\nVernon\nYgnacio\nAbel\nAnthony\nAugustine\nAurelio\nBruce\nCharlie\nClifford\nCruz\nDan\nDomingo\nEarnest\nElias\nEverett\nFrederick\nGabriel\nGlenn\nGustavo\nJess\nJesse\nLeonard\nLeslie\nMichael\nRex\nSantiago\nJohn\nRobert\nManuel\nFrank\nWilliam\nJames\nJose\nJoe\nGeorge\nCharles\nThomas\nDavid\nAlbert\nHenry\nRichard\nJuan\nEdward\nFrancisco\nAntonio\nJesus\nJoseph\nJack\nRamon\nRaymond\nErnest\nAlfred\nPaul\nArthur\nWalter\nHarry\nCarlos\nLawrence\nKenneth\nLouis\nGilbert\nMike\nPedro\nBen\nRalph\nRoy\nVictor\nEugene\nHarold\nSamuel\nTony\nAlfonso\nPete\nRaul\nTom\nWoodrow\nAlex\nCarl\nDonald\nFred\nLeonard\nRay\nVernon\nDaniel\nClarence\nEarl\nFelix\nLee\nLuis\nRafael\nTheodore\nDomingo\nFernando\nFrederick\nKee\nRuben\nAlberto\nBenjamin\nDan\nElmer\nHerbert\nHoward\nIgnacio\nJulian\nLupe\nSalvador\nAlejandro\nAlexander\nFrancis\nLloyd\nLorenzo\nMartin\nMiguel\nRudolph\nVincent\nWayne\nAngel\nArmando\nDouglas\nErnesto\nGerald\nLeo\nLeon\nMarion\nPhilip\nSam\nAlfredo\nCharlie\nDon\nGlenn\nHarvey\nJesse\nMax\nMelvin\nPeter\nRicardo\nAndres\nAnthony\nChester\nEddie\nEnrique\nFelipe\nFlorentino\nGustavo\nHerman\nJimmie\nJohnnie\nLester\nOliver\nRoberto\nRoss\nSimon\nAdolfo\nAndrew\nArturo\nBert\nBill\nBob\nBruce\nCecil\nCharley\nClaude\nEdmund\nFranklin\nGabriel\nGlen\nJim\nLionel\nLynn\nOscar\nRex\nRodolfo\nSidney\nStanley\nTomas\nWesley\nWillie\nWilson\nAllen\nAlvin\nArcadio\nBilly\nCruz\nEdwin\nElias\nFidel\nFloyd\nGene\nGrant\nHomer\nJohnny\nJulio\nLeonardo\nLyle\nMilton\nNorman\nPablo\nPatrick\nRiley\nRoger\nSantiago\nVicente\nWallace\nWillard\nJohn\nRobert\nManuel\nJose\nWilliam\nJames\nFrank\nJoe\nGeorge\nAlbert\nPaul\nCharles\nDavid\nRichard\nHenry\nEdward\nArthur\nJuan\nFrancisco\nJack\nLouis\nJoseph\nRalph\nRamon\nJesus\nRaymond\nThomas\nLuis\nErnest\nWalter\nAlfred\nFred\nHarold\nCarlos\nMiguel\nRoy\nTony\nClarence\nDaniel\nMike\nPedro\nGilbert\nHarry\nRay\nSalvador\nAlberto\nFloyd\nAngel\nHerbert\nPeter\nRafael\nCarl\nDonald\nHoward\nKenneth\nLawrence\nTheodore\nErnesto\nIgnacio\nRaul\nVictor\nAndrew\nEugene\nFernando\nMartin\nOscar\nPete\nRodolfo\nAntonio\nArturo\nBen\nEarl\nRuben\nAlex\nAlfredo\nJesse\nLeo\nLeonard\nMarvin\nTom\nAllen\nBenjamin\nBill\nClifford\nDouglas\nElmer\nFelix\nJulio\nMelvin\nSam\nSamuel\nTomas\nWillie\nDan\nFelipe\nHerman\nJim\nJohnny\nKee\nLee\nLeslie\nLupe\nPablo\nRoberto\nArmando\nBernard\nBruce\nChester\nEdgar\nEdwin\nEnrique\nHector\nSantiago\nStanley\nAlfonso\nCharley\nConrado\nGilberto\nGregorio\nGuadalupe\nLeroy\nMichael\nMilton\nRandolph\nRefugio\nReynaldo\nSteve\nVincent\nWayne\nYgnacio\nAdolfo\nAlexander\nArnold\nArnulfo\nBilly\nCecil\nCharlie\nClyde\nCruz\nEverett\nFrancis\nFrederick\nGordon\nGuillermo\nHarvey\nJulian\nLloyd\nMax\nTrinidad\nVernon\nAndres\nAnselmo\nAnthony\nAugustine\nAurelio\nBernardo\nDomingo\nEulalio\nGerald\nGrant\nJimmie\nJoaquin\nLeon\nLorenzo\nLouie\nMarcelino\nMorris\nNorman\nPat\nPhillip\nRex\nReyes\nRudolph\nSimon\nVirgil\nWillard\nWilson\nJohn\nRobert\nFrank\nWilliam\nManuel\nJose\nJoe\nGeorge\nJames\nCharles\nEdward\nJack\nDavid\nJoseph\nAlbert\nRamon\nAntonio\nRichard\nHenry\nJuan\nErnest\nPaul\nThomas\nRalph\nArthur\nFred\nLouis\nDaniel\nJesus\nRaul\nRaymond\nFrancisco\nAlfred\nCarlos\nHarry\nPedro\nRoy\nRoberto\nWalter\nGilbert\nLeonard\nMike\nTony\nClarence\nLuis\nOscar\nHarold\nHoward\nNorman\nAlberto\nEugene\nPete\nCarl\nRay\nAndrew\nBenjamin\nDonald\nEarl\nMiguel\nPeter\nVictor\nAngel\nArturo\nKee\nLawrence\nLloyd\nSamuel\nTom\nAlfonso\nAlfredo\nCharlie\nChester\nClyde\nErnesto\nGabriel\nHector\nJulian\nLeo\nLester\nRafael\nRudolph\nTheodore\nAlex\nClifford\nCruz\nEdwin\nJimmie\nJulio\nRodolfo\nTomas\nVernon\nArmando\nBill\nFernando\nGuillermo\nHerbert\nNelson\nPablo\nAdolfo\nAlexander\nBilly\nEduardo\nFelix\nGilberto\nGrant\nGustavo\nIgnacio\nLorenzo\nMelvin\nPhillip\nSalvador\nSam\nSantiago\nStanley\nWallace\nAndres\nBruce\nElmer\nGuadalupe\nHarvey\nJohnny\nKenneth\nLee\nLeroy\nRuben\nSimon\nTrinidad\nWarren\nAlejandro\nArnold\nAugustine\nBen\nBob\nCecil\nDan\nDick\nEddie\nFrancis\nGordon\nHerman\nJess\nJesse\nMartin\nPhilip\nRicardo\nRoland\nRudy\nStephen\nWayne\nArnulfo\nDon\nGerald\nJim\nJimmy\nJohnnie\nMarvin\nRoger\nVicente\nVincent\nWillis\nYgnacio\nAgapito\nAgustin\nAlvin\nCandelario\nConrado\nDolores\nDomingo\nDouglas\nEdgar\nEdwardo\nElias\nEugenio\nFloyd\nGene\nGregorio\nGuy\nJerry\nJoaquin\nLarry\nMarcos\nMarion\nNed\nPhil\nRefugio\nReynaldo\nSteve\nWillie\nWilson\nJohn\nRobert\nWilliam\nJames\nManuel\nJoe\nFrank\nGeorge\nJose\nEdward\nCharles\nRichard\nHenry\nDavid\nJack\nAlbert\nFrancisco\nJesus\nArthur\nJoseph\nJuan\nThomas\nPaul\nRaymond\nHarold\nFred\nKenneth\nRalph\nRamon\nAntonio\nRay\nRoy\nErnest\nGilbert\nRaul\nHarry\nLouis\nDonald\nBen\nFernando\nKee\nWalter\nAlfred\nCarlos\nMike\nPete\nTony\nEarl\nOscar\nRuben\nDaniel\nHoward\nLuis\nAlejandro\nAlfredo\nArmando\nFrancis\nVictor\nEnrique\nHerbert\nLawrence\nLeonard\nSamuel\nAlfonso\nBenjamin\nEdwin\nSam\nTheodore\nTom\nEugene\nMartin\nMiguel\nNorman\nPedro\nRodolfo\nVicente\nWarren\nBob\nJesse\nLloyd\nMelvin\nStanley\nWillie\nAlex\nAlexander\nBill\nChester\nClarence\nGuy\nKeith\nLeo\nRafael\nSalvador\nAlberto\nAllen\nCarl\nClyde\nErnesto\nFloyd\nIgnacio\nJim\nJimmie\nLee\nMarvin\nPeter\nPhilip\nSantos\nAngel\nArturo\nAugustine\nBernard\nBilly\nCecil\nCharlie\nEdgar\nElmer\nGregorio\nJohnny\nOliver\nReynaldo\nAndrew\nBert\nCruz\nFaustino\nFelix\nGabriel\nGlenn\nHarvey\nJoaquin\nJulian\nPablo\nRoman\nRudolph\nClaude\nDale\nDennis\nDon\nEddie\nElbert\nElias\nHector\nJacob\nJimmy\nLarry\nLeslie\nLewis\nLorenzo\nLouie\nLupe\nMax\nMyron\nRussell\nSteve\nTrinidad\nVernon\nWayne\nWilson\nAlvin\nAndres\nAndy\nCalvin\nCharley\nChee\nForrest\nGail\nGerald\nGilberto\nGlen\nGordon\nGuadalupe\nHilario\nHugh\nJay\nJess\nJohnnie\nLoren\nMargarito\nMario\nMaurice\nPatrick\nPhillip\nRefugio\nRex\nRoberto\nJohn\nRobert\nWilliam\nJames\nJose\nJoe\nManuel\nFrank\nGeorge\nCharles\nRichard\nJack\nJoseph\nHenry\nAlbert\nArthur\nDavid\nJesus\nEdward\nJuan\nRaymond\nThomas\nLouis\nErnest\nPaul\nRalph\nLuis\nFred\nRamon\nGilbert\nAntonio\nHarry\nCarlos\nFrancisco\nKenneth\nRaul\nRoy\nAlfred\nDonald\nHarold\nIgnacio\nCarl\nKee\nOscar\nSalvador\nWalter\nAlfonso\nSam\nTony\nVictor\nEugene\nMiguel\nTom\nNorman\nPedro\nRay\nSamuel\nAlfredo\nClifford\nLeo\nAngel\nDaniel\nGordon\nPeter\nArmando\nBill\nFernando\nHerbert\nJesse\nMartin\nMelvin\nWillie\nDan\nEarl\nFrancis\nHoward\nLeonard\nMike\nRuben\nWarren\nAndres\nBenjamin\nBilly\nEddie\nEdwin\nJerry\nJimmie\nJohnny\nLawrence\nMilton\nAlex\nBert\nCharley\nEnrique\nErnesto\nFelix\nGuadalupe\nJoaquin\nLee\nLloyd\nArnold\nCharlie\nClyde\nEdgar\nElmer\nGene\nHector\nJulian\nJulio\nLeroy\nLester\nMax\nPete\nRafael\nRudolph\nStanley\nVernon\nAndrew\nBen\nClarence\nCruz\nGuy\nHarvey\nHerman\nJim\nLewis\nMichael\nRoberto\nSteve\nWayne\nWilson\nAlvin\nAmos\nArturo\nBenito\nCalvin\nCecil\nChee\nDon\nFloyd\nGerald\nGuillermo\nKeith\nLeonardo\nNelson\nNicolas\nPablo\nSimon\nTommy\nVirgil\nWallace\nWillard\nAdolph\nAlberto\nAllen\nAurelio\nBruce\nClinton\nDolores\nElias\nFranklin\nGilberto\nGonzalo\nHugh\nJessie\nJimmy\nJohnnie\nLeland\nLouie\nMarvin\nNed\nOliver\nPhillip\nRex\nRicardo\nRodolfo\nRoss\nTheodore\nVincent\nJohn\nWilliam\nRobert\nManuel\nJoe\nJose\nFrank\nJames\nGeorge\nDavid\nEdward\nHenry\nJack\nCharles\nJesus\nFrancisco\nAlbert\nAntonio\nJuan\nLouis\nRichard\nHarry\nRaymond\nThomas\nErnest\nPaul\nArthur\nFred\nGilbert\nJoseph\nWalter\nTom\nDaniel\nHarold\nRamon\nAlfred\nRoy\nCarlos\nHoward\nCarl\nDonald\nErnesto\nKenneth\nRalph\nPablo\nOscar\nRaul\nEugene\nLuis\nTony\nEarl\nFelix\nMiguel\nMike\nAlfonso\nBen\nClarence\nRay\nRuben\nSalvador\nAlex\nBill\nPhilip\nSamuel\nWarren\nAlberto\nBenjamin\nEddie\nFernando\nMartin\nPete\nRafael\nWayne\nJesse\nLeo\nLeonard\nMelvin\nAlfredo\nBob\nPedro\nRoberto\nSam\nAndrew\nArmando\nAugustine\nClyde\nDan\nHector\nIgnacio\nJohnny\nVictor\nWillie\nArnold\nElias\nEnrique\nGlen\nLarry\nLawrence\nLloyd\nAlejandro\nDick\nGerald\nGlenn\nHerbert\nKee\nStephen\nAngel\nBilly\nCharlie\nChester\nEdmund\nFloyd\nJim\nMarvin\nRodolfo\nTheodore\nAnthony\nArturo\nBruce\nCalvin\nFelipe\nFidel\nGene\nHarvey\nJay\nJimmie\nKeith\nLee\nNorman\nRefugio\nSimon\nStanley\nAdolfo\nAlexander\nBernard\nBernardo\nBillie\nCharley\nFrancis\nFrederick\nGabriel\nGregorio\nGuy\nHerman\nJerry\nJulian\nLouie\nMarion\nVernon\nAbel\nAllen\nAlvin\nArnoldo\nAurelio\nCruz\nDave\nEduardo\nEdwin\nElmer\nFlorencio\nFranklin\nGilberto\nGuadalupe\nHomer\nHugh\nJulio\nLeroy\nLester\nLorenzo\nMark\nMarshall\nMilton\nPeter\nPhillip\nReynaldo\nRoss\nRudy\nTed\nTomas\nVicente\nVirgil\nWillard\nWilson\nJohn\nRobert\nWilliam\nJames\nFrank\nJose\nManuel\nJoe\nCharles\nHenry\nGeorge\nJack\nAlbert\nRichard\nJesus\nPaul\nEdward\nJoseph\nThomas\nDavid\nRaymond\nJuan\nRamon\nErnest\nArthur\nLuis\nHarry\nKee\nLouis\nAlfred\nHarold\nRalph\nWalter\nAntonio\nCarlos\nEugene\nFrancisco\nGilbert\nKenneth\nLawrence\nRaul\nRoy\nDonald\nTom\nTony\nClarence\nMiguel\nAngel\nRay\nDan\nPedro\nAlfredo\nCarl\nFernando\nJimmie\nPete\nRoberto\nSam\nBen\nEarl\nFelix\nFred\nMike\nOscar\nSalvador\nBenjamin\nDaniel\nIgnacio\nSamuel\nErnesto\nRafael\nAlfonso\nBill\nBilly\nCalvin\nEdwin\nArmando\nCharlie\nGerald\nGuadalupe\nHerman\nJim\nLeonard\nMartin\nNorman\nRicardo\nAlex\nClyde\nHector\nJerry\nLarry\nLee\nLeo\nMario\nNicolas\nPhillip\nRefugio\nRuben\nVictor\nWallace\nAlberto\nArnold\nArturo\nCharley\nEnrique\nFlorencio\nHoward\nJulian\nLloyd\nPablo\nCecil\nDouglas\nFloyd\nGene\nLeon\nLewis\nPhilip\nWillie\nAlejandro\nAndrew\nDon\nEddie\nFrancis\nFrederick\nGordon\nMarion\nMelvin\nPeter\nRudolph\nWarren\nAugustine\nClaude\nDomingo\nEduardo\nElmer\nFelipe\nGlen\nGuillermo\nGustavo\nHarvey\nLester\nLupe\nMichael\nPascual\nTomas\nBert\nBillie\nBob\nDale\nEdgar\nElias\nGabriel\nGilberto\nGlenn\nJessie\nJimmy\nNed\nSimon\nSteven\nTheodore\nVicente\nVincent\nWayne\nWesley\nAaron\nAugustin\nBenito\nBernard\nBruce\nConrad\nDennis\nDewey\nDolores\nDuane\nEmilio\nFranklin\nGrant\nGregorio\nHerbert\nJay\nJesse\nJoaquin\nLorenzo\nLuther\nMarcos\nMax\nNelson\nPorfirio\nReynaldo\nRodolfo\nSantiago\nStanley\nWilson\nJohn\nRobert\nWilliam\nJoe\nManuel\nJames\nFrank\nGeorge\nJose\nCharles\nJack\nAlbert\nHenry\nJesus\nRichard\nEdward\nDavid\nThomas\nRaymond\nFrancisco\nJoseph\nAntonio\nJuan\nHarold\nRamon\nErnest\nPaul\nRalph\nArthur\nKenneth\nDonald\nEugene\nLouis\nFred\nTony\nGilbert\nKee\nWalter\nTom\nAlfred\nMike\nPete\nRaul\nCarlos\nEddie\nPedro\nHarry\nBilly\nDaniel\nJimmie\nRoy\nAlfonso\nFernando\nArturo\nGene\nMiguel\nRay\nAlex\nAngel\nLuis\nSalvador\nSamuel\nAlberto\nBenjamin\nCarl\nDan\nJim\nJohnny\nMartin\nArmando\nBill\nCharlie\nElmer\nRafael\nRoberto\nEarl\nHerbert\nIgnacio\nJohnnie\nLeo\nClyde\nFelix\nGlenn\nJesse\nMelvin\nOscar\nAlexander\nEdgar\nEnrique\nEverett\nFrancis\nHoward\nLawrence\nRicardo\nVictor\nWayne\nBob\nCecil\nClarence\nGuadalupe\nLee\nLester\nMarvin\nSteven\nWarren\nAlfredo\nArnold\nCalvin\nDick\nEdwin\nGilberto\nHector\nLloyd\nMilton\nRodolfo\nVincent\nAlejandro\nAlvin\nAndrew\nBert\nBruce\nClaude\nErnesto\nGlen\nGuy\nHarvey\nLeonard\nMarion\nNorman\nPeter\nRuben\nSam\nTomas\nVernon\nWillie\nBenny\nBobby\nDennis\nDouglas\nElias\nGabriel\nGordon\nHerman\nHugh\nJay\nJerry\nJimmy\nStanley\nAdolfo\nAllen\nBen\nCharley\nCruz\nEdmund\nGerald\nGuillermo\nJulian\nLarry\nLeon\nLewis\nMark\nMax\nMichael\nPhilip\nRefugio\nReynaldo\nRoger\nVirgil\nAllan\nAlonzo\nAugustine\nBernardo\nEugenio\nFloyd\nHumberto\nJessie\nLorenzo\nLupe\nNelson\nPablo\nPatrick\nPhillip\nRogelio\nRudy\nSantiago\nSantos\nSteve\nTeddy\nTommie\nUnknown\nVicente\nWallace\nWesley\nWillard\nRobert\nJohn\nJames\nFrank\nWilliam\nManuel\nJose\nGeorge\nJoe\nJesus\nCharles\nRaymond\nRichard\nHenry\nJack\nEdward\nArthur\nAlbert\nDonald\nRamon\nThomas\nJuan\nGilbert\nPaul\nFred\nJoseph\nDavid\nHarold\nFrancisco\nRalph\nAntonio\nDaniel\nErnest\nWalter\nRaul\nLuis\nRoy\nHarry\nLouis\nTony\nKee\nKenneth\nCarlos\nMike\nClarence\nMiguel\nPeter\nAlfred\nBilly\nPedro\nTom\nNorman\nPete\nRuben\nAlfonso\nCarl\nJim\nRay\nEugene\nHoward\nIgnacio\nLeo\nOscar\nSam\nJohnny\nLeonard\nRafael\nSalvador\nAlex\nAlfredo\nBen\nBob\nDon\nJimmie\nMarvin\nRoberto\nArmando\nBill\nClifford\nEnrique\nErnesto\nJesse\nRudolph\nArturo\nFernando\nFloyd\nFrancis\nGilberto\nMartin\nPhillip\nVictor\nArnold\nEarl\nFelipe\nFelix\nAlberto\nAngel\nEddie\nMelvin\nRodolfo\nAndrew\nBenjamin\nDan\nEduardo\nGregorio\nJimmy\nMario\nMax\nTheodore\nWillie\nAllen\nCharlie\nClyde\nGlenn\nGordon\nHerman\nLewis\nLorenzo\nPhilip\nRoger\nAugustine\nCalvin\nCecil\nCharley\nCruz\nDennis\nDouglas\nGene\nGerald\nGuy\nJerry\nJulio\nNed\nRefugio\nSantiago\nStanley\nVernon\nWayne\nAlejandro\nBahe\nBobby\nDick\nElmer\nFidel\nHector\nHerbert\nJohnnie\nLeopoldo\nPablo\nTommy\nVirgil\nAlexander\nBert\nBruce\nEmilio\nErnie\nFreddie\nHarvey\nHumberto\nJorge\nLarry\nLeroy\nLester\nLloyd\nMichael\nOliver\nReynaldo\nTrinidad\nWallace\nArnulfo\nBenny\nBernardo\nChester\nDale\nGuadalupe\nGuillermo\nJoaquin\nJulian\nKeith\nLee\nLeon\nLupe\nMark\nMilton\nNelson\nRicardo\nSamuel\nSteven\nTomas\nWarren\nJohn\nRobert\nFrank\nManuel\nJoe\nWilliam\nJose\nJames\nRichard\nGeorge\nCharles\nJesus\nHenry\nDavid\nJack\nEdward\nArthur\nAlbert\nDonald\nFrancisco\nThomas\nRaymond\nAntonio\nFred\nRamon\nGilbert\nJuan\nLouis\nRalph\nHarry\nPaul\nErnest\nWalter\nJoseph\nKee\nBilly\nRaul\nCarlos\nMiguel\nMike\nRuben\nTony\nAlex\nRoy\nAlfred\nLuis\nHarold\nSam\nRafael\nTom\nJimmie\nPete\nAlfonso\nKenneth\nEugene\nOscar\nVictor\nCarl\nDaniel\nFernando\nLeo\nMartin\nGene\nLawrence\nPedro\nRoberto\nAngel\nArmando\nBill\nBob\nRay\nAllen\nBen\nEddie\nNorman\nSalvador\nFrancis\nHerbert\nHoward\nPeter\nAlberto\nArturo\nBillie\nFelix\nHector\nSamuel\nWallace\nAlfredo\nDan\nDon\nElmer\nGlen\nJerry\nJesse\nJohnnie\nLeonard\nMarvin\nRonald\nRudy\nTheodore\nDale\nGlenn\nHerman\nIgnacio\nKeith\nLarry\nRodolfo\nWillie\nAlejandro\nArnold\nCecil\nEarl\nGerald\nGilberto\nGuillermo\nJim\nJimmy\nJohnny\nLee\nLorenzo\nNelson\nPhillip\nTomas\nWayne\nAndres\nAndrew\nEduardo\nElias\nEnrique\nFelipe\nFloyd\nLeon\nMario\nStanley\nTed\nTommy\nAlvin\nArnulfo\nBenjamin\nCharlie\nClifford\nClyde\nDick\nLewis\nLloyd\nMax\nPablo\nPhilip\nRefugio\nVicente\nAdolfo\nAnthony\nBennie\nClarence\nClaude\nEmilio\nErnesto\nGregorio\nGuadalupe\nGustavo\nHugh\nIra\nIsaac\nJulian\nLeslie\nLouie\nMichael\nRicardo\nRussell\nTrinidad\nAbelardo\nBenny\nBernard\nBobby\nChester\nDomingo\nDouglas\nFrederick\nGerardo\nGuy\nHarvey\nHaskie\nHorace\nJay\nJoaquin\nJulio\nKarl\nLeroy\nMack\nMaurice\nMelvin\nNed\nNicholas\nSantiago\nVictoriano\nJohn\nRobert\nManuel\nJose\nJoe\nWilliam\nFrank\nJames\nGeorge\nRichard\nCharles\nJesus\nDavid\nEdward\nFrancisco\nPaul\nJuan\nHenry\nJack\nRamon\nRaymond\nAntonio\nAlbert\nRalph\nArthur\nErnest\nGilbert\nThomas\nDonald\nLouis\nRuben\nTony\nHarry\nJoseph\nBilly\nFred\nKenneth\nLuis\nPedro\nVictor\nAlfred\nKee\nDaniel\nHarold\nBill\nRaul\nRay\nMiguel\nCarlos\nJimmie\nTom\nEddie\nHerbert\nOscar\nPete\nRoy\nBen\nEnrique\nRoberto\nClarence\nHector\nMike\nNorman\nWalter\nWillie\nAlex\nAlfonso\nArmando\nEugene\nJohnny\nHoward\nSam\nTommy\nArturo\nBob\nBobby\nLawrence\nLeo\nLeonard\nRudy\nAngel\nCarl\nClyde\nDan\nLloyd\nAlfredo\nAndrew\nBenjamin\nHerman\nMario\nRafael\nSamuel\nCharlie\nClifford\nFernando\nFrancis\nJerry\nSalvador\nEdwin\nGene\nMilton\nRicardo\nWallace\nArnold\nDon\nJimmy\nLee\nLeroy\nMartin\nPeter\nTeddy\nVernon\nAlberto\nErnesto\nGuy\nJesse\nJulian\nMarion\nPablo\nPhillip\nWayne\nAurelio\nBahe\nBillie\nBruce\nDick\nEduardo\nEverett\nFloyd\nGordon\nJim\nLupe\nMargarito\nMax\nMelvin\nRodolfo\nVicente\nBenito\nBennie\nBenny\nEarl\nFelix\nGlenn\nKeith\nLeslie\nLewis\nLorenzo\nMarvin\nRefugio\nRosendo\nVirgil\nAlexander\nAugustine\nCalvin\nCharley\nEdgar\nFelipe\nGabriel\nGerald\nGilberto\nGuadalupe\nGuillermo\nHoskie\nIgnacio\nNed\nNelson\nPatrick\nPhilip\nRudolph\nSantiago\nStanley\nWesley\nAlejandro\nAlvin\nAndres\nArchie\nBernard\nCecil\nChester\nDanny\nDenny\nDuane\nElias\nElmer\nGail\nGustavo\nHarvey\nHomer\nJackie\nJess\nJohnnie\nJorge\nLarry\nMark\nMichael\nNeal\nOliver\nReynaldo\nRonald\nRussell\nTed\nTomas\nYgnacio\nRobert\nJohn\nWilliam\nJoe\nManuel\nJose\nJames\nFrank\nGeorge\nRichard\nCharles\nJesus\nDonald\nJack\nEdward\nHenry\nDavid\nRamon\nRaymond\nJuan\nAlbert\nFrancisco\nGilbert\nThomas\nAntonio\nArthur\nBilly\nFred\nTony\nJoseph\nErnest\nPaul\nRalph\nHarold\nHarry\nRoy\nLuis\nRuben\nKee\nBob\nDaniel\nJohnny\nAlfred\nLouis\nMike\nKenneth\nAlfredo\nRoberto\nRodolfo\nArmando\nHoward\nOscar\nPedro\nRafael\nRaul\nRay\nEddie\nBobby\nClarence\nEugene\nCarlos\nFernando\nTom\nAlex\nCarl\nEarl\nGerald\nHerbert\nJimmie\nLeonard\nMiguel\nPete\nAngel\nBill\nJerry\nSalvador\nFloyd\nJimmy\nNorman\nRudy\nSam\nSamuel\nArturo\nBenny\nJesse\nLee\nLeo\nStanley\nClifford\nDon\nElmer\nFrancis\nJim\nLarry\nLawrence\nPeter\nTommy\nAlberto\nAndrew\nBen\nBruce\nCharlie\nGuillermo\nJohnnie\nMartin\nSantiago\nTheodore\nVernon\nWalter\nAlfonso\nArnold\nDouglas\nErnesto\nLewis\nVictor\nBenjamin\nCruz\nFelix\nHector\nLloyd\nMax\nMelvin\nVicente\nWayne\nWillie\nAlejandro\nBillie\nCurtis\nDick\nElias\nGlen\nMario\nPablo\nPhillip\nReynaldo\nRicardo\nVincent\nWallace\nAdolfo\nAllen\nCalvin\nCecil\nClyde\nDale\nFelipe\nGene\nHumberto\nJulian\nRoger\nRonald\nSantos\nYgnacio\nAbelardo\nDan\nDean\nEverett\nGlenn\nIgnacio\nJulio\nKeith\nLupe\nMarvin\nPhilip\nRex\nRudolph\nYsidro\nAndres\nAnthony\nArnulfo\nAurelio\nDuane\nEdgar\nEdwin\nFreddie\nGuadalupe\nJoaquin\nLeon\nLeslie\nMilton\nRussell\nSteve\nWillard\nWilson\nAdalberto\nAlexander\nArnoldo\nAustin\nBennie\nBernard\nChee\nChester\nDave\nDomingo\nDoyle\nEduardo\nEnrique\nForrest\nGabriel\nGordon\nHerman\nHugh\nJay\nJorge\nJunior\nLeonardo\nLester\nLorenzo\nMarcelino\nMargarito\nMark\nRamiro\nRefugio\nTeddy\nWilbur\nRobert\nJohn\nJames\nWilliam\nFrank\nJoe\nRichard\nManuel\nJose\nGeorge\nCharles\nDonald\nJesus\nDavid\nAlbert\nGilbert\nJack\nHenry\nThomas\nAntonio\nTony\nRaymond\nRamon\nEdward\nErnest\nPaul\nFrancisco\nJuan\nKenneth\nRuben\nLouis\nAlfred\nFred\nBilly\nHarold\nRoberto\nArthur\nCarlos\nRalph\nDaniel\nRaul\nRoy\nJoseph\nArmando\nOscar\nHarry\nMiguel\nBobby\nCarl\nDon\nPete\nClarence\nJimmy\nAlex\nAlfonso\nLuis\nMike\nPedro\nBob\nFloyd\nHector\nJerry\nKee\nRodolfo\nVictor\nBill\nDale\nEarl\nRonald\nSalvador\nSamuel\nAngel\nBenjamin\nFrancis\nHerbert\nJohnny\nTommy\nWalter\nEnrique\nLarry\nPeter\nRudy\nSam\nEddie\nFernando\nGlenn\nLee\nRay\nAlfredo\nEugene\nGene\nJimmie\nMelvin\nPablo\nRafael\nTheodore\nTom\nWillie\nDan\nHoward\nLeo\nStanley\nBen\nCharlie\nErnesto\nGerald\nIgnacio\nLawrence\nRicardo\nTed\nBennie\nJesse\nJohnnie\nLeroy\nNorman\nVernon\nArturo\nEverett\nFelix\nGilberto\nLeonard\nMartin\nWesley\nArnold\nCecil\nDouglas\nGuillermo\nJim\nKarl\nLester\nLupe\nRoger\nAndrew\nArnulfo\nMarvin\nRudolph\nCalvin\nDelbert\nDick\nElmer\nGuadalupe\nGustavo\nGuy\nHerman\nLorenzo\nMilton\nPhilip\nPhillip\nAbel\nAlberto\nAlejandro\nAndres\nGabriel\nGregorio\nJay\nKeith\nLloyd\nMario\nVirgil\nWayne\nAlexander\nAlvin\nBert\nClifford\nClinton\nClyde\nEduardo\nEdwin\nFelipe\nFranklin\nGordon\nJorge\nJulian\nJulio\nKay\nLewis\nLynn\nMarcelino\nMax\nOliver\nRefugio\nSteve\nTomas\nVicente\nVincent\nWilbur\nWillard\nAdolfo\nAllen\nBenny\nBernard\nBillie\nCharley\nCurtis\nDennis\nDolores\nFrederick\nHarlan\nHubert\nHugh\nJessie\nJoaquin\nLeon\nMacario\nMariano\nMarion\nMark\nMorris\nNicolas\nPhil\nRene\nReynaldo\nSantos\nRobert\nJohn\nJames\nFrank\nJoe\nManuel\nRichard\nWilliam\nJose\nCharles\nGeorge\nDonald\nDavid\nEdward\nJesus\nThomas\nAlbert\nJack\nHenry\nRaymond\nKenneth\nRamon\nErnest\nPaul\nGilbert\nJoseph\nJuan\nFrancisco\nArthur\nRoy\nBilly\nEddie\nOscar\nHector\nBobby\nFred\nHarry\nJim\nJohnny\nCarl\nCarlos\nJerry\nTommy\nRuben\nBill\nLouis\nWalter\nArmando\nDaniel\nHarold\nJimmy\nPedro\nDon\nMiguel\nRalph\nRay\nTony\nAntonio\nPete\nAlfonso\nEugene\nHoward\nJimmie\nLeonard\nRaul\nEarl\nBob\nLarry\nMike\nAngel\nErnesto\nFelix\nRoberto\nAlberto\nBen\nFernando\nGerald\nHerbert\nLee\nPeter\nRudy\nSam\nTheodore\nTom\nAlfred\nAlfredo\nArturo\nCharlie\nLawrence\nLuis\nNorman\nAlejandro\nAlex\nClarence\nFrancis\nJohnnie\nKee\nMarvin\nRicardo\nRodolfo\nRoger\nStanley\nFloyd\nGene\nLeo\nSamuel\nVictor\nWayne\nAllen\nCecil\nDale\nEnrique\nFranklin\nIgnacio\nLeroy\nLloyd\nMartin\nRafael\nReynaldo\nAndrew\nDanny\nDouglas\nGuadalupe\nJesse\nMichael\nArnold\nBenjamin\nBernardo\nDan\nEdwin\nElmer\nGregorio\nGuillermo\nLupe\nMax\nPhillip\nSalvador\nVernon\nVicente\nAnthony\nBillie\nClyde\nDean\nDick\nDomingo\nEduardo\nGilberto\nHarvey\nKeith\nLeon\nPhilip\nRonald\nSammy\nSantiago\nWarren\nAdolfo\nAurelio\nBruce\nClaude\nCurtis\nGlen\nHerman\nLorenzo\nMelvin\nRoland\nRudolph\nSantos\nVirgil\nWallace\nAlvaro\nAlvin\nChee\nClifford\nCruz\nDennis\nDuane\nEmilio\nGabriel\nGlenn\nHomer\nJulian\nJulio\nLeland\nLeopoldo\nLewis\nMarshall\nNed\nNelson\nPablo\nPatrick\nRefugio\nTrinidad\nWillie\nRobert\nJohn\nJames\nFrank\nWilliam\nJoe\nRichard\nManuel\nGeorge\nCharles\nJose\nDavid\nDonald\nHenry\nAlbert\nJack\nEdward\nRaymond\nArthur\nPaul\nAntonio\nThomas\nGilbert\nJesus\nJoseph\nRoy\nJuan\nRamon\nTom\nLarry\nBilly\nAlfred\nBill\nDaniel\nEugene\nHarry\nJohnny\nFred\nErnest\nLouis\nTony\nKenneth\nRaul\nRay\nJerry\nLawrence\nLeonard\nRalph\nDon\nKee\nRuben\nWalter\nBen\nBob\nEddie\nHarold\nArmando\nFrancisco\nHector\nLee\nCarl\nCarlos\nLeo\nRoberto\nStanley\nWayne\nAlex\nTommy\nDale\nJim\nMiguel\nPedro\nAlfredo\nAngel\nBenjamin\nJimmie\nMarvin\nMike\nNorman\nRudy\nSamuel\nTheodore\nArturo\nDan\nFernando\nGerald\nHoward\nArnold\nClyde\nGene\nLuis\nOscar\nPete\nPeter\nRonald\nSalvador\nBenny\nBobby\nDanny\nFrancis\nGary\nGordon\nHerbert\nJesse\nKeith\nLeroy\nLloyd\nMartin\nRafael\nSam\nVictor\nAlberto\nCharlie\nClarence\nDick\nEdwin\nErnesto\nGuy\nIgnacio\nPhillip\nVernon\nAlfonso\nAlvin\nDean\nEarl\nFelix\nGlenn\nRoger\nRudolph\nAllen\nAndrew\nBuddy\nEmilio\nEnrique\nHerman\nJimmy\nLester\nLupe\nMario\nRussell\nWillie\nAugustine\nAurelio\nBennie\nHarvey\nJackie\nLeon\nLouie\nMichael\nNed\nPablo\nReynaldo\nRodolfo\nWarren\nWillard\nBernard\nBruce\nCharley\nClifford\nDave\nDennis\nEdgar\nElmer\nFelipe\nFloyd\nGlen\nJohnnie\nJohnson\nJustin\nLewis\nLorenzo\nMax\nMilton\nNelson\nPhilip\nSidney\nTomas\nVicente\nAbelardo\nAlonzo\nBert\nCarroll\nChester\nElias\nEverett\nFranklin\nIsmael\nJessie\nLeonardo\nLeslie\nMarion\nMelvin\nRicardo\nRosendo\nTeddy\nRobert\nJohn\nJames\nFrank\nJoe\nWilliam\nRichard\nCharles\nManuel\nDavid\nGeorge\nJack\nHenry\nJose\nDonald\nJesus\nThomas\nAlbert\nEdward\nKenneth\nTony\nRaymond\nAntonio\nErnest\nGilbert\nLouis\nArthur\nJerry\nRalph\nAlfred\nDaniel\nFred\nCarlos\nPaul\nFrancisco\nJoseph\nKee\nJimmy\nBilly\nDon\nGerald\nRamon\nJuan\nOscar\nLarry\nTom\nBill\nHarold\nHarry\nHector\nJimmie\nMelvin\nRoy\nBobby\nRonald\nSamuel\nArmando\nHoward\nEddie\nEugene\nFranklin\nRaul\nRay\nWalter\nClarence\nJim\nMike\nPete\nBen\nFloyd\nJohnny\nLawrence\nLee\nNorman\nEarl\nGene\nRuben\nRudy\nAngel\nArnold\nLuis\nAlex\nBob\nHerbert\nPeter\nTommy\nVictor\nFelix\nMiguel\nRoberto\nWillie\nBenjamin\nCharlie\nDan\nRodolfo\nRudolph\nStanley\nWayne\nAnthony\nArturo\nBruce\nFernando\nGabriel\nMarvin\nPedro\nPhillip\nSalvador\nSteve\nAlfredo\nAndrew\nCarl\nClifford\nDanny\nDick\nErnesto\nGuy\nHerman\nJay\nJesse\nMartin\nTeddy\nTheodore\nVernon\nWilson\nAlberto\nAlfonso\nAllen\nAlvin\nDale\nGlenn\nGordon\nGuillermo\nLeo\nLeon\nLeonard\nLewis\nMichael\nPhilip\nRafael\nReynaldo\nRoger\nWillis\nAdolfo\nAndy\nArnulfo\nCecil\nCharley\nClyde\nDouglas\nElias\nFelipe\nFrancis\nGary\nGlen\nIgnacio\nJunior\nLeroy\nLester\nMax\nSam\nTomas\nWallace\nAlejandro\nAndres\nArchie\nBahe\nBenny\nBert\nBillie\nBoyd\nClaude\nElmer\nEnrique\nFreddie\nGilberto\nGregorio\nHarvey\nHugh\nIvan\nJackie\nJulio\nKarl\nLeslie\nLloyd\nLorenzo\nLouie\nLupe\nLuther\nOliver\nPat\nTed\nWesley\nYsidro\nRobert\nJohn\nJames\nWilliam\nRichard\nFrank\nJoe\nManuel\nCharles\nDavid\nDonald\nGeorge\nHenry\nJose\nAlbert\nRaymond\nErnest\nEdward\nJack\nJesus\nPaul\nBilly\nThomas\nTony\nArthur\nRoy\nJohnny\nRamon\nLouis\nRalph\nBill\nFred\nKenneth\nGilbert\nHarry\nRuben\nAlfred\nJerry\nEddie\nWalter\nHarold\nMarvin\nDaniel\nMike\nRay\nAlex\nAntonio\nCarlos\nJimmy\nLarry\nRonald\nBobby\nJimmie\nJuan\nFrancisco\nLeo\nPete\nJoseph\nOscar\nVictor\nWayne\nDon\nLeonard\nCarl\nGary\nGerald\nJim\nKee\nLuis\nMelvin\nNorman\nArmando\nEugene\nLawrence\nRaul\nRudy\nStanley\nClarence\nFernando\nHector\nPedro\nPeter\nTom\nFranklin\nPhilip\nTommy\nAlfonso\nEarl\nHerman\nLee\nMartin\nRodolfo\nBenny\nBob\nCharlie\nDick\nLeroy\nPatrick\nRoger\nAlberto\nAngel\nBenjamin\nClifford\nDale\nFelix\nGuillermo\nHerbert\nHoward\nKeith\nSamuel\nAlvin\nArnold\nBen\nBennie\nCecil\nClyde\nDelbert\nDuane\nJesse\nPhillip\nRafael\nSalvador\nVernon\nWillie\nAlfredo\nCruz\nDanny\nDouglas\nEdwin\nErnesto\nFloyd\nGordon\nJay\nLloyd\nMiguel\nRoberto\nTed\nTerry\nTheodore\nAdolfo\nArnulfo\nArturo\nElmer\nEverett\nGlen\nGlenn\nJulian\nLewis\nRefugio\nTomas\nWallace\nAllen\nAndres\nDan\nDennis\nEnrique\nFreddie\nGene\nHarvey\nIgnacio\nJohnnie\nLeslie\nLester\nLuther\nMichael\nNelson\nSam\nAllan\nAndrew\nAndy\nArchie\nClaude\nDean\nEduardo\nGonzalo\nGuadalupe\nGuy\nIvan\nJackie\nLeland\nLoren\nMark\nPablo\nRene\nRicardo\nRonnie\nTrinidad\nVincent\nRobert\nJohn\nRichard\nJames\nWilliam\nFrank\nJoe\nCharles\nDonald\nDavid\nManuel\nGeorge\nHenry\nJose\nEdward\nThomas\nAlbert\nJack\nPaul\nBill\nGilbert\nLarry\nFred\nJesus\nRaymond\nHarold\nErnest\nJohnny\nArthur\nJerry\nRay\nKenneth\nRalph\nTony\nAntonio\nJimmy\nDon\nLeonard\nBilly\nJoseph\nRaul\nRuben\nWalter\nKee\nHarry\nJimmie\nJuan\nRamon\nBob\nRonald\nFrancisco\nHector\nLouis\nMike\nPete\nRoy\nRudy\nVictor\nAlex\nTom\nAlfredo\nCarlos\nEarl\nGary\nLeo\nRoger\nWayne\nCarl\nEddie\nEugene\nLawrence\nLuis\nPedro\nAlfred\nDanny\nBobby\nGene\nMelvin\nAllen\nCharlie\nDaniel\nEdwin\nJim\nLeroy\nTommy\nAndrew\nDan\nHoward\nLee\nRoberto\nTed\nVernon\nAngel\nBenny\nFernando\nLeon\nPhillip\nArmando\nBen\nBenjamin\nClarence\nFloyd\nFrancis\nFranklin\nMartin\nNorman\nPeter\nStanley\nArnold\nClifford\nDale\nGordon\nJay\nJesse\nLloyd\nOscar\nRodolfo\nAdolfo\nAlberto\nGabriel\nGuy\nJohnnie\nLewis\nLouie\nMarvin\nWillie\nAlfonso\nArturo\nDick\nDouglas\nErnesto\nGlenn\nHerbert\nHerman\nJackie\nLeslie\nMarion\nPatrick\nPhilip\nTerry\nAnthony\nEduardo\nGerald\nIgnacio\nKarl\nKeith\nMiguel\nRex\nRonnie\nSam\nSamuel\nVirgil\nWallace\nWilbur\nAlejandro\nBillie\nChester\nCurtis\nFelix\nFrederick\nGonzalo\nGuadalupe\nHarvey\nMarshall\nMary\nMax\nMichael\nNelson\nPat\nSalvador\nWilfred\nAbelardo\nAbraham\nArnulfo\nBoyd\nBruce\nCecil\nDarrell\nDennis\nEmilio\nFrankie\nGilberto\nHubert\nHugh\nJacob\nJoaquin\nJulian\nLester\nLupe\nMario\nMark\nNed\nNeil\nPablo\nRafael\nRene\nRudolph\nSteve\nSteven\nTheodore\nVicente\nVincent\nWesley\nRobert\nJohn\nRichard\nJames\nWilliam\nFrank\nJoe\nManuel\nCharles\nDavid\nGeorge\nHenry\nRaymond\nDonald\nJerry\nJose\nPaul\nEdward\nThomas\nGilbert\nAlbert\nLarry\nRonald\nBill\nCarlos\nJohnny\nErnest\nFred\nAntonio\nRalph\nRoy\nArthur\nKenneth\nJesus\nTony\nBob\nDaniel\nRamon\nBilly\nDon\nEddie\nJack\nHarold\nHarry\nWalter\nGerald\nJoseph\nRay\nAlfred\nJimmy\nKee\nCarl\nFrancisco\nHoward\nJim\nRuben\nTom\nJuan\nEugene\nLawrence\nJimmie\nMichael\nOscar\nRudy\nVictor\nAlex\nAlfonso\nBobby\nDanny\nGary\nHector\nPete\nTommy\nArnold\nRoberto\nAngel\nArmando\nLeo\nWayne\nEarl\nJohnnie\nNorman\nStanley\nBennie\nCecil\nCharlie\nFreddie\nJesse\nLouis\nMelvin\nMiguel\nMike\nRaul\nTed\nBen\nGene\nHerman\nPhillip\nClifford\nHerbert\nLee\nLeroy\nPeter\nPhilip\nVernon\nAnthony\nChester\nDan\nDennis\nErnesto\nFelix\nIgnacio\nJulian\nKeith\nLeon\nLeonard\nLewis\nAndrew\nBenjamin\nBenny\nCalvin\nClarence\nDale\nElmer\nFernando\nFloyd\nFranklin\nLloyd\nLuis\nSam\nTerry\nClyde\nCurtis\nEdwin\nFrancis\nGlenn\nGuillermo\nHarvey\nPedro\nRafael\nRodolfo\nRoger\nVirgil\nAlberto\nAndres\nBoyd\nBruce\nDean\nDick\nKarl\nMartin\nMarvin\nMax\nPatrick\nReynaldo\nRonnie\nRussell\nSalvador\nSteven\nAlfredo\nCharley\nJackie\nJessie\nLorenzo\nNed\nRex\nWillie\nAbelardo\nAlan\nAllen\nAlvin\nBarry\nBillie\nBuddy\nConrad\nDelbert\nDonnie\nDudley\nEdgar\nElias\nEverett\nFreddy\nGabriel\nGuy\nJess\nLonnie\nLouie\nMaurice\nPerry\nRicardo\nRudolph\nSammy\nSamuel\nSteve\nTheodore\nTomas\nWesley\nRobert\nJohn\nJames\nJoe\nWilliam\nRichard\nFrank\nCharles\nDavid\nGeorge\nManuel\nRaymond\nDonald\nEdward\nThomas\nLarry\nHenry\nJerry\nPaul\nJose\nBilly\nFred\nRonald\nErnest\nJesus\nAlbert\nBill\nKenneth\nJohnny\nRoy\nGilbert\nJack\nArthur\nJimmy\nBobby\nCarl\nDon\nRalph\nTony\nMike\nRamon\nBob\nHarold\nAlfred\nDaniel\nJoseph\nRay\nGary\nJuan\nJim\nTommy\nHarry\nLee\nLouis\nEddie\nTom\nWayne\nArmando\nPete\nGerald\nKee\nLawrence\nNorman\nWalter\nCarlos\nDanny\nJimmie\nRuben\nBenny\nLeo\nLloyd\nLuis\nPeter\nRudy\nAntonio\nEugene\nLeonard\nMelvin\nOscar\nRaul\nPedro\nWillie\nAngel\nCharlie\nClarence\nFernando\nGene\nJohnnie\nMichael\nRonnie\nTheodore\nDick\nFrancisco\nHoward\nSam\nSteve\nVernon\nAlex\nDale\nDennis\nFloyd\nFranklin\nHerman\nMarvin\nRoberto\nStanley\nBen\nBruce\nDelbert\nErnie\nFelix\nFreddie\nSalvador\nSamuel\nTerry\nWesley\nWillard\nAlfredo\nAndrew\nArnold\nBenjamin\nClyde\nEarl\nEnrique\nHerbert\nKeith\nLeroy\nMiguel\nVictor\nVirgil\nArturo\nBennie\nClifford\nJesse\nLeslie\nPhilip\nRoger\nBernard\nDan\nEdwin\nGordon\nGuillermo\nHarvey\nHugh\nLeon\nLewis\nLouie\nMartin\nRafael\nRodolfo\nWilfred\nAlberto\nAlfonso\nCalvin\nDouglas\nFrankie\nGlen\nHector\nLorenzo\nPhillip\nRicardo\nWilson\nAllen\nAnthony\nClaude\nDean\nErnesto\nGlenn\nGuy\nHomer\nIvan\nJessie\nOrville\nRudolph\nRussell\nWallace\nWendell\nBillie\nByron\nCecil\nCharley\nCurtis\nDonnie\nDuane\nElias\nFrancis\nGabriel\nHubert\nJackie\nJon\nLuther\nMariano\nNelson\nNick\nSteven\nRobert\nJohn\nJames\nRichard\nWilliam\nFrank\nJoe\nDavid\nCharles\nManuel\nDonald\nGeorge\nJerry\nHenry\nEdward\nPaul\nLarry\nRaymond\nRonald\nKenneth\nJoseph\nThomas\nJose\nArthur\nAlbert\nBilly\nFred\nGilbert\nTony\nBill\nBobby\nJimmy\nEddie\nJack\nJohnny\nHarry\nRalph\nGary\nRoy\nCarlos\nWalter\nCarl\nDaniel\nDon\nJuan\nNorman\nRamon\nJim\nErnest\nLee\nMichael\nRay\nRudy\nGerald\nHarold\nJesus\nJimmie\nFloyd\nLeo\nRaul\nAntonio\nKee\nEugene\nLuis\nMike\nRoberto\nTommy\nAlfred\nDouglas\nLeroy\nLouis\nOscar\nAlex\nBenny\nJesse\nLawrence\nRuben\nArmando\nBob\nClarence\nTom\nWayne\nDanny\nGlenn\nPete\nWillie\nLeonard\nPeter\nRoger\nVictor\nArnold\nBen\nEarl\nHector\nAngel\nBenjamin\nDale\nGlen\nDennis\nFreddie\nGordon\nHarvey\nMarvin\nMelvin\nPhilip\nPhillip\nStanley\nAlfonso\nBruce\nHoward\nKeith\nLloyd\nMarion\nMilton\nSalvador\nSam\nSamuel\nVernon\nClyde\nEdgar\nEdwin\nFrancisco\nAlfredo\nBernard\nDelbert\nDick\nErnesto\nFernando\nHerbert\nHerman\nLewis\nPatrick\nRonnie\nWallace\nAndy\nAugustine\nBennie\nDan\nGene\nGuillermo\nMax\nNelson\nPat\nRicardo\nTed\nEduardo\nErnie\nFranklin\nJackie\nTerry\nWesley\nAllen\nAndrew\nAurelio\nCharlie\nClifford\nFelipe\nFelix\nFrankie\nFreddy\nFrederick\nGabriel\nHomer\nJon\nLeslie\nMiguel\nReynaldo\nRodolfo\nSteve\nAdolfo\nAlan\nAnthony\nArnulfo\nBarry\nClinton\nDean\nGale\nJohnnie\nJulian\nLeon\nLorenzo\nPedro\nRafael\nRene\nRex\nStephen\nSteven\nTheodore\nTomas\nVirgil\nAlvin\nBert\nCalvin\nCecil\nCharley\nChris\nClaude\nDarrell\nDave\nEd\nEdmund\nEnrique\nEverett\nJoel\nJustin\nLester\nLonnie\nLouie\nMarshall\nNeil\nOrlando\nPhil\nRandall\nRaymundo\nReuben\nRito\nRodney\nRussell\nVicente\nVincent\nWilfred\nRobert\nJames\nJohn\nRichard\nWilliam\nFrank\nJoe\nCharles\nDavid\nGeorge\nManuel\nJerry\nDonald\nLarry\nRaymond\nPaul\nRonald\nEdward\nKenneth\nHenry\nThomas\nJohnny\nArthur\nJack\nJoseph\nAlbert\nBill\nErnest\nJose\nTony\nFred\nJim\nDaniel\nEddie\nAlfred\nJesus\nCarlos\nGerald\nMichael\nPete\nGary\nLawrence\nJimmy\nPeter\nRalph\nRay\nGilbert\nHarold\nBobby\nBilly\nAntonio\nMike\nRuben\nWalter\nBob\nHarry\nRoy\nVictor\nDennis\nHector\nKee\nArmando\nCarl\nClarence\nDon\nEarl\nJimmie\nLeo\nTommy\nArnold\nDanny\nJuan\nNorman\nRamon\nRaul\nRoger\nWayne\nAnthony\nJesse\nLee\nLouis\nRudy\nDale\nEugene\nGene\nLloyd\nPhillip\nStanley\nDan\nDouglas\nHoward\nLeonard\nMarvin\nMelvin\nAlex\nBenny\nCharlie\nEdwin\nOscar\nPatrick\nSamuel\nAndrew\nFrancisco\nHarvey\nLeroy\nVernon\nAlfonso\nBen\nCecil\nFloyd\nMartin\nRoberto\nSalvador\nSam\nTom\nAndy\nGlen\nHerbert\nLeon\nLewis\nMiguel\nRussell\nWarren\nClyde\nErnesto\nGordon\nLeslie\nLester\nRonnie\nTheodore\nAllen\nAlvin\nAngel\nClifford\nFelipe\nFernando\nGlenn\nLorenzo\nPedro\nPhilip\nSteve\nCarroll\nChester\nDarrell\nFrancis\nHerman\nLouie\nNelson\nNick\nRodolfo\nStephen\nBarry\nBenjamin\nBennie\nBruce\nDean\nDick\nEverett\nFelix\nFreddy\nGregory\nGuy\nIgnacio\nJackie\nJay\nKarl\nLupe\nRicardo\nRudolph\nTed\nTeddy\nTerry\nVincent\nVirgil\nWilson\nAlfredo\nArturo\nBert\nCalvin\nConrad\nDave\nDelbert\nDenny\nEnrique\nFreddie\nJohnnie\nKeith\nLoren\nLuis\nLynn\nMario\nMax\nOrville\nPablo\nReuben\nSteven\nWendell\nWilford\nWilfred\nWillard\nWillie\nAugustine\nClayton\nCurtis\nFranklin\nHomer\nHumberto\nJoel\nJon\nJulio\nLeland\nMarshall\nRafael\nReynaldo\nTomas\nRobert\nJohn\nJames\nRichard\nCharles\nWilliam\nFrank\nDavid\nJoe\nGeorge\nJerry\nThomas\nRonald\nDonald\nManuel\nRaymond\nEdward\nLarry\nPaul\nErnest\nJohnny\nHenry\nKenneth\nArthur\nMichael\nTony\nAlbert\nBilly\nJimmy\nJose\nDaniel\nCarlos\nJack\nRoy\nRudy\nEddie\nRalph\nJoseph\nGilbert\nBill\nBobby\nGary\nDanny\nFred\nRuben\nAlfred\nDon\nWalter\nJesus\nJuan\nGerald\nRamon\nAlex\nCarl\nLouis\nAntonio\nJim\nPeter\nMartin\nRay\nRoger\nFrancisco\nOscar\nJesse\nPatrick\nTom\nTommy\nAnthony\nDan\nFernando\nHarold\nDennis\nLee\nMarvin\nPete\nArnold\nDale\nEarl\nJimmie\nStanley\nArmando\nKee\nNorman\nPhillip\nRaul\nRonnie\nClyde\nVictor\nAndrew\nBob\nEugene\nGene\nLeonard\nMiguel\nTerry\nBennie\nBenny\nClarence\nHarry\nJohnnie\nPedro\nSam\nWayne\nCharlie\nClifford\nHoward\nSteve\nAngel\nGlenn\nHector\nHerbert\nLawrence\nLeo\nLloyd\nLuis\nStephen\nAndy\nBen\nCalvin\nGabriel\nHerman\nLeroy\nLonnie\nLorenzo\nMike\nRicardo\nSamuel\nSteven\nTed\nAllen\nAlvin\nArturo\nBarry\nBenjamin\nDelbert\nGlen\nGuy\nJon\nMelvin\nRene\nRoberto\nRudolph\nWillie\nAlberto\nDouglas\nErnesto\nFloyd\nFrancis\nFrankie\nFreddie\nJay\nJulio\nLeslie\nLynn\nReynaldo\nTimothy\nVernon\nWallace\nWarren\nAlexander\nAlfonso\nAugustine\nBruce\nChester\nDenny\nIvan\nLeon\nLester\nLewis\nVincent\nWilfred\nWilson\nAlfredo\nAndres\nBillie\nDarrell\nDean\nEduardo\nFranklin\nGuillermo\nHumberto\nJacob\nJessie\nJoel\nJorge\nLeland\nMario\nMark\nNed\nRussell\nSalvador\nTheodore\nVirgil\nBernard\nCarroll\nCecil\nDick\nEdwin\nElbert\nEllis\nElmer\nFreddy\nHarvey\nJackie\nJulian\nLouie\nMarion\nMickey\nNathan\nNick\nPablo\nRafael\nRodolfo\nRoland\nSantiago\nVicente\nRobert\nJohn\nJames\nRichard\nWilliam\nCharles\nJoe\nDavid\nFrank\nThomas\nGeorge\nEdward\nLarry\nRonald\nDonald\nJerry\nGary\nManuel\nRaymond\nKenneth\nMichael\nHenry\nGilbert\nPaul\nAlbert\nBilly\nJose\nErnest\nJack\nJimmy\nRoy\nArthur\nDon\nRalph\nDaniel\nTony\nDennis\nEddie\nJohnny\nBill\nBobby\nRay\nRudy\nAlfred\nJoseph\nRamon\nTommy\nJesus\nJuan\nHarry\nMike\nWalter\nAlex\nFred\nJim\nNorman\nDanny\nLouis\nPete\nRoger\nSamuel\nTom\nWayne\nEugene\nLee\nCarlos\nEarl\nJimmie\nMelvin\nRuben\nBob\nHarold\nLeonard\nAntonio\nCarl\nGerald\nJesse\nVictor\nAnthony\nKee\nPeter\nLeo\nLuis\nRaul\nArmando\nDouglas\nFrancisco\nHoward\nPhilip\nRonnie\nTerry\nVernon\nArnold\nClifford\nWillie\nBen\nFloyd\nHerbert\nJackie\nLawrence\nLorenzo\nPhillip\nStanley\nAngel\nBenjamin\nBenny\nSam\nErnesto\nGene\nHector\nLloyd\nMarvin\nOscar\nRoberto\nStephen\nAndrew\nBruce\nDale\nFranklin\nLeroy\nLewis\nMiguel\nVirgil\nAllen\nAlvin\nBennie\nClarence\nFreddie\nIgnacio\nJulian\nLouie\nPatrick\nPedro\nRicardo\nSalvador\nSteve\nCalvin\nCecil\nDan\nLeslie\nMark\nMartin\nNelson\nSantiago\nBernard\nBoyd\nChester\nEverett\nFernando\nFlorencio\nGabriel\nHerman\nHugh\nKarl\nRex\nWesley\nClifton\nClyde\nEric\nFrederick\nGlenn\nGordon\nGuadalupe\nGuillermo\nLeon\nLynn\nRudolph\nRussell\nSteven\nTed\nWinston\nAlan\nAlberto\nAlexander\nAllan\nBrian\nCharley\nDonnie\nEdwin\nGlen\nHarvey\nJoel\nJohnnie\nLanny\nLoren\nOrville\nPat\nRene\nRodney\nRodolfo\nWarren\nAlfredo\nAndy\nBillie\nCurtis\nDuane\nFrankie\nGarry\nGrant\nGuy\nJess\nKeith\nLionel\nMario\nMyron\nNed\nRoss\nVicente\nWilbur\nWilson\nRobert\nJohn\nJames\nWilliam\nRichard\nDavid\nFrank\nCharles\nJoe\nJerry\nThomas\nManuel\nRonald\nGeorge\nGary\nMichael\nRaymond\nLarry\nKenneth\nDonald\nPaul\nEdward\nArthur\nHenry\nJose\nAlbert\nDaniel\nErnest\nJoseph\nRoy\nJohnny\nGilbert\nTony\nDouglas\nDennis\nBilly\nBill\nEddie\nJack\nAlfred\nFred\nJesus\nJimmy\nRay\nMike\nRalph\nGerald\nHarold\nRamon\nBobby\nCarl\nCarlos\nHarry\nLawrence\nLouis\nRoger\nMarvin\nRonnie\nTommy\nJim\nLee\nPhillip\nRuben\nWalter\nAlex\nDanny\nPeter\nVictor\nAntonio\nDon\nArmando\nRudy\nStanley\nTom\nArnold\nEugene\nJuan\nSteven\nPete\nWayne\nBob\nHoward\nJimmie\nLeonard\nLester\nMelvin\nStephen\nEarl\nGene\nKee\nLeroy\nDale\nFranklin\nJesse\nBenjamin\nClifford\nFloyd\nMartin\nSamuel\nSteve\nAngel\nClarence\nClyde\nDan\nFreddie\nOscar\nPatrick\nRaul\nCharlie\nFelix\nHerman\nJohnnie\nLeo\nLeslie\nLuis\nNorman\nRoberto\nSam\nTerry\nTheodore\nTimothy\nAlan\nAnthony\nBruce\nGlenn\nHerbert\nVernon\nBennie\nFernando\nFrancis\nFrancisco\nHarvey\nHector\nLeon\nWillie\nAllen\nAndrew\nMilton\nPedro\nPhilip\nRicardo\nWarren\nBen\nBenny\nGordon\nKeith\nRoland\nTed\nWillard\nWilson\nCalvin\nDarrell\nDave\nEnrique\nErnesto\nLouie\nMiguel\nRussell\nWallace\nWesley\nAlberto\nAlexander\nAlfonso\nAlfredo\nAlvin\nAndres\nCecil\nEric\nErnie\nFreddy\nHumberto\nJessie\nJon\nLonnie\nLyle\nLynn\nMario\nNed\nRodolfo\nWendell\nAndy\nArturo\nBert\nCarroll\nChester\nClaude\nCurtis\nDelbert\nDick\nDonnie\nElias\nElmer\nFelipe\nGarry\nGilberto\nIgnacio\nJay\nJoaquin\nJulian\nKarl\nKent\nLloyd\nLowell\nMark\nMax\nMicheal\nMorris\nNelson\nPablo\nPat\nRodney\nSalvador\nVincent\nAbel\nBernard\nClayton\nConrad\nEarnest\nEdgar\nEdwin\nEldon\nFrederick\nGlen\nHubert\nHugh\nJeffrey\nJulio\nLaurence\nLorenzo\nManny\nMarion\nMaurice\nNick\nRandolph\nRon\nRudolph\nSammy\nTomas\nVirgil\nRobert\nJohn\nJames\nRichard\nWilliam\nDavid\nFrank\nJoe\nCharles\nLarry\nRonald\nThomas\nJerry\nGeorge\nMichael\nManuel\nDonald\nGary\nKenneth\nRaymond\nEdward\nHenry\nPaul\nErnest\nJohnny\nDaniel\nRoy\nJose\nDennis\nEddie\nJack\nArthur\nFred\nTony\nRalph\nJimmy\nAlfred\nMike\nTommy\nRonnie\nBill\nDouglas\nDanny\nGerald\nGilbert\nAlbert\nCarl\nJoseph\nHarry\nWalter\nBobby\nRoger\nLeonard\nStanley\nVictor\nCarlos\nLawrence\nRay\nLouis\nPeter\nRuben\nJuan\nTom\nHarold\nJimmie\nWayne\nBilly\nMelvin\nStephen\nDon\nRamon\nJesus\nJim\nLee\nRaul\nRudy\nArnold\nFreddie\nGene\nPatrick\nSteven\nFrancisco\nHoward\nMartin\nNorman\nPhillip\nTerry\nAllen\nAnthony\nBen\nDan\nJesse\nPete\nPhilip\nAntonio\nEugene\nWillie\nAndrew\nEarl\nKee\nKeith\nOscar\nSamuel\nAlex\nHector\nLeo\nLeon\nLeroy\nLloyd\nLuis\nArmando\nBarry\nBenny\nFelix\nFloyd\nFrankie\nGlenn\nMarvin\nAlfonso\nBenjamin\nBruce\nClarence\nDale\nDick\nGabriel\nGordon\nNelson\nCharlie\nClyde\nHarvey\nLester\nTed\nTimothy\nAlan\nArturo\nCurtis\nFernando\nLeslie\nRoberto\nAngel\nBob\nCalvin\nCecil\nChester\nHerbert\nIgnacio\nJay\nMiguel\nMilton\nRussell\nSam\nWallace\nWesley\nAlvin\nClifford\nFranklin\nHerman\nPedro\nRandall\nRoland\nSteve\nWarren\nAlfredo\nCraig\nEdwin\nEnrique\nLynn\nMark\nMax\nTheodore\nWilfred\nBennie\nDarrell\nDave\nDwight\nEdmund\nEverett\nGregory\nGuy\nJackie\nJorge\nJulian\nReynaldo\nRicardo\nRoss\nVincent\nAlton\nBernard\nBrian\nCharley\nClinton\nCruz\nErnesto\nErnie\nFreddy\nFrederick\nHugh\nJon\nLeland\nLorenzo\nMario\nRafael\nRodolfo\nSalvador\nSammy\nScott\nSimon\nTroy\nAbel\nAlexander\nAllan\nClayton\nConrad\nDonnie\nEldon\nElmer\nFrancis\nGlen\nGuadalupe\nGuillermo\nJess\nJessie\nJohnnie\nJulius\nMarshall\nNick\nRodney\nTomas\nVirgil\nWilbert\nAubrey\nAugustine\nBuddy\nClaude\nDelbert\nEdgar\nEmilio\nGarry\nHarley\nIra\nJeff\nJerald\nJulio\nLonnie\nMatthew\nOrville\nOtto\nPat\nPerry\nRefugio\nRene\nRex\nRufus\nSilas\nStewart\nRobert\nJames\nJohn\nRichard\nDavid\nWilliam\nFrank\nJoe\nGeorge\nCharles\nMichael\nRonald\nManuel\nLarry\nJerry\nDonald\nGary\nEdward\nRaymond\nThomas\nPaul\nHenry\nKenneth\nAlbert\nDaniel\nRoy\nJohnny\nJoseph\nDennis\nJose\nArthur\nTony\nErnest\nRalph\nJack\nBilly\nJimmy\nLawrence\nWayne\nGilbert\nJim\nFred\nRoger\nMike\nDanny\nTommy\nVictor\nEddie\nCarlos\nHarold\nJesus\nRudy\nCarl\nLouis\nAlfred\nBobby\nPeter\nTom\nWalter\nHarry\nBill\nGerald\nRay\nAnthony\nDon\nSamuel\nStephen\nSteven\nDouglas\nKee\nPhillip\nLeonard\nPatrick\nRamon\nMelvin\nRonnie\nRuben\nJimmie\nLeo\nNorman\nSteve\nHector\nEugene\nFrancisco\nJuan\nOscar\nLee\nWillie\nArmando\nMartin\nMarvin\nRussell\nTimothy\nBruce\nDan\nLloyd\nPhilip\nTerry\nAlan\nAlex\nAngel\nBenny\nBob\nGene\nHoward\nPete\nStanley\nTed\nAntonio\nEarl\nFelix\nJohnnie\nLewis\nLuis\nAlvin\nArnold\nDale\nGlenn\nGordon\nJesse\nRaul\nVernon\nBarry\nFernando\nHerbert\nLeslie\nMilton\nTheodore\nAndrew\nArturo\nFranklin\nFreddie\nJon\nMark\nSalvador\nSammy\nBenjamin\nBennie\nCalvin\nCharlie\nErnesto\nFrancis\nLeroy\nCraig\nFloyd\nHarvey\nKarl\nMax\nPat\nSam\nAlexander\nBrian\nCecil\nClifford\nDick\nFrederick\nGuadalupe\nIgnacio\nMiguel\nNelson\nPedro\nWilson\nAllen\nBen\nBernard\nChris\nDean\nDuane\nEduardo\nEverett\nFrankie\nJackie\nKeith\nLouie\nRafael\nRick\nChester\nClyde\nDwight\nEdwin\nFredrick\nHugh\nJeffrey\nJerald\nKent\nLeon\nMario\nNeil\nNicolas\nRicardo\nRoberto\nRoss\nTim\nWallace\nAugustine\nCharley\nDarrell\nDave\nDomingo\nElmer\nEnrique\nErnie\nFreddy\nHerman\nJoel\nJulius\nKenny\nLester\nLorenzo\nLupe\nLynn\nMarshall\nMicheal\nNed\nRodolfo\nWilfred\nAlejandro\nAllan\nAlton\nAmos\nAndy\nArchie\nBert\nClarence\nClaude\nFelipe\nJay\nJulio\nKen\nLeland\nLoren\nMaurice\nNicholas\nNick\nPerry\nRandall\nRene\nReynaldo\nRodney\nVincent\nVirgil\nWarren\nWendell\nWesley\nWilmer\nRobert\nJohn\nRichard\nJames\nWilliam\nDavid\nFrank\nJoe\nCharles\nLarry\nMichael\nGeorge\nGary\nRonald\nThomas\nManuel\nPaul\nDonald\nKenneth\nJerry\nDaniel\nJoseph\nHenry\nRaymond\nDanny\nEdward\nDennis\nArthur\nJohnny\nJose\nJimmy\nRalph\nRoy\nAlbert\nErnest\nMike\nTony\nAlfred\nJesus\nBilly\nWayne\nFred\nGilbert\nHarold\nRamon\nCarlos\nHarry\nJack\nEddie\nGerald\nBill\nBruce\nVictor\nLawrence\nLeonard\nTerry\nDouglas\nPeter\nRoger\nTom\nLouis\nRay\nSteven\nLuis\nSteve\nTommy\nDon\nPatrick\nStephen\nEugene\nLeroy\nRudy\nWalter\nRonnie\nRuben\nBenny\nDale\nJim\nMartin\nOscar\nRaul\nBobby\nJesse\nPete\nAlex\nAngel\nJimmie\nLee\nStanley\nTimothy\nBob\nCharlie\nJay\nNorman\nAllen\nAntonio\nCarl\nHector\nHerbert\nMelvin\nSamuel\nArmando\nFrancisco\nGene\nLeslie\nLewis\nPhillip\nAlan\nBenjamin\nErnesto\nErnie\nFernando\nJuan\nAnthony\nClifford\nDan\nCurtis\nFrancis\nFreddie\nRoberto\nArnold\nGlenn\nHoward\nKee\nNelson\nAndrew\nBennie\nChester\nDwight\nEarl\nEdwin\nGregory\nPedro\nRodney\nWilson\nAlvin\nAndy\nCalvin\nCecil\nClarence\nClaude\nJorge\nLeo\nMario\nMark\nMax\nMiguel\nPhilip\nRussell\nArturo\nBarry\nDick\nFelix\nJon\nKeith\nRandy\nRudolph\nSalvador\nSammy\nVernon\nFloyd\nHarvey\nMarvin\nRene\nTed\nTeddy\nWallace\nAlfredo\nBernard\nFranklin\nFrederick\nGordon\nIgnacio\nJackie\nJohnnie\nLeon\nRicardo\nRoland\nVicente\nVincent\nVirgil\nWillie\nAlejandro\nBen\nChris\nChristopher\nElias\nGrant\nIrvin\nLloyd\nLonnie\nMicheal\nNeil\nSam\nScott\nTrinidad\nTroy\nAlfonso\nAllan\nCharley\nClinton\nClyde\nCruz\nDarrell\nEric\nGabriel\nGuillermo\nLorenzo\nLynn\nMarshall\nRandall\nRicky\nTheodore\nWendell\nAlberto\nAlexander\nBarney\nBrian\nDave\nDelbert\nDoyle\nEdmund\nElmer\nEnrique\nFrankie\nFreddy\nHerman\nHomer\nIsmael\nJaime\nJerome\nJonathan\nKarl\nKen\nLester\nLoren\nLouie\nLupe\nMarcus\nMilton\nNathan\nRafael\nRogelio\nRoss\nWarren\nRobert\nJohn\nRichard\nJames\nWilliam\nDavid\nMichael\nJoe\nCharles\nFrank\nGeorge\nThomas\nGary\nLarry\nRonald\nPaul\nDonald\nJerry\nKenneth\nManuel\nEdward\nRaymond\nHenry\nDennis\nJoseph\nArthur\nDaniel\nAlbert\nMike\nJack\nJohnny\nTony\nJose\nTerry\nGilbert\nDanny\nJimmy\nErnest\nRoger\nGerald\nWalter\nFred\nJesus\nJim\nSteven\nRoy\nPeter\nTommy\nEddie\nEugene\nLawrence\nPatrick\nStephen\nRalph\nCarlos\nLeonard\nLouis\nSteve\nAnthony\nDon\nRonnie\nAlfred\nRay\nTom\nWayne\nDouglas\nFrancisco\nRuben\nTimothy\nAllen\nAntonio\nArmando\nBill\nBruce\nJuan\nLeroy\nHarold\nPhillip\nRudy\nStanley\nAlex\nBobby\nPete\nPhilip\nRamon\nCarl\nClifford\nGregory\nHarry\nJesse\nBob\nMark\nRaul\nRussell\nBilly\nEarl\nJimmie\nNorman\nOscar\nVictor\nKee\nArturo\nBenny\nDale\nHerman\nLeo\nLuis\nAlan\nFloyd\nLloyd\nMelvin\nSamuel\nAndrew\nHerbert\nBenjamin\nCecil\nClarence\nFrankie\nJon\nMartin\nRodney\nBen\nFrancis\nHector\nKeith\nTed\nAlfredo\nArnold\nFernando\nJay\nJeffrey\nLee\nRene\nVernon\nBarry\nCraig\nErnie\nFreddie\nGene\nGlenn\nMax\nAndy\nChester\nDan\nEdwin\nJackie\nLewis\nMarvin\nMicheal\nPedro\nVincent\nWillie\nAndres\nChristopher\nGordon\nHoward\nRex\nWesley\nWilson\nAlfonso\nAngel\nChris\nClyde\nDuane\nEverett\nJulian\nMario\nMiguel\nRoberto\nRoss\nTim\nBrian\nClaude\nDave\nFranklin\nGilberto\nHarvey\nJess\nJustin\nMarcus\nNelson\nRandall\nRandy\nRicky\nSalvador\nSam\nTheodore\nVirgil\nWarren\nAlexander\nBryan\nCalvin\nCharlie\nDean\nDelbert\nErnesto\nFreddy\nFrederick\nGlen\nGreg\nGuy\nIgnacio\nJorge\nKent\nKerry\nLester\nLynn\nRon\nTroy\nAaron\nAlejandro\nAllan\nArchie\nDarrell\nElmer\nEnrique\nEric\nGabriel\nGuadalupe\nIvan\nJohnnie\nJonathan\nMilton\nMorris\nNeil\nNick\nRandolph\nReuben\nRick\nRickey\nRobin\nRoland\nRudolph\nWillard\nAlvin\nAugustine\nBennie\nByron\nDick\nDwight\nEdison\nEdwardo\nFelix\nForrest\nGuillermo\nHarrison\nJessie\nJulio\nKarl\nKelly\nKen\nLeon\nLeslie\nLonnie\nLoren\nLorenzo\nLouie\nLupe\nPablo\nRafael\nReynaldo\nRicardo\nRickie\nTomas\nWallace\nWilbur\nRobert\nJohn\nRichard\nDavid\nJames\nWilliam\nMichael\nLarry\nCharles\nFrank\nThomas\nGary\nKenneth\nGeorge\nJoe\nRonald\nDonald\nPaul\nDaniel\nEdward\nJerry\nManuel\nRaymond\nDennis\nDanny\nJoseph\nAlbert\nRoy\nJohnny\nHenry\nMike\nJack\nSteven\nJimmy\nJose\nStephen\nFred\nTony\nWayne\nJesus\nWalter\nArthur\nErnest\nTerry\nEddie\nLawrence\nRalph\nGilbert\nRuben\nPhillip\nSteve\nGerald\nPatrick\nTommy\nHarold\nRay\nDouglas\nJim\nMark\nJuan\nBruce\nJimmie\nLouis\nVictor\nAnthony\nBill\nBilly\nCarl\nCarlos\nTom\nRoger\nAlfred\nAntonio\nDon\nLeonard\nMelvin\nHarry\nJesse\nRamon\nAllen\nBobby\nRaul\nRudy\nStanley\nDale\nFrancisco\nPeter\nRonnie\nDan\nArmando\nTimothy\nRussell\nGregory\nAlan\nLeroy\nAlex\nHoward\nMarvin\nSamuel\nEugene\nFrederick\nLeo\nPete\nPhilip\nBob\nKee\nLee\nMartin\nOscar\nAndrew\nBenjamin\nBenny\nGordon\nFernando\nGlenn\nJay\nNorman\nRoberto\nClarence\nEarl\nFreddie\nKeith\nLloyd\nLuis\nPedro\nTed\nWarren\nBarry\nBrian\nCharlie\nHerbert\nLeslie\nArnold\nFranklin\nHector\nLewis\nTim\nVernon\nWillie\nClifford\nDarrell\nFloyd\nLouie\nRodney\nFelix\nGene\nHerman\nRicky\nAlfonso\nAlfredo\nCraig\nElmer\nEnrique\nErnie\nFrancis\nGreg\nJeffrey\nRandall\nRicardo\nAlvin\nAngel\nByron\nCalvin\nCecil\nDave\nDean\nEdwin\nFrankie\nIgnacio\nMiguel\nRandy\nRene\nSam\nArturo\nBen\nBernard\nSalvador\nTheodore\nAlejandro\nChris\nCruz\nHomer\nJoel\nJohnnie\nJonathan\nLeon\nLorenzo\nMario\nMax\nNelson\nPhil\nRandolph\nReynaldo\nWesley\nAndy\nArchie\nBennie\nClyde\nDana\nDoyle\nDuane\nDwight\nEric\nErnesto\nGabriel\nHarvey\nJorge\nLionel\nMarshall\nRafael\nRickey\nRudolph\nVirgil\nWallace\nChristopher\nConrad\nCurtis\nDomingo\nFredrick\nGlen\nGuillermo\nGuy\nKenny\nMaurice\nMicheal\nNicholas\nRodolfo\nRon\nTeddy\nVincent\nAlberto\nAlexander\nAllan\nAustin\nBoyd\nBradley\nCharley\nClifton\nDelbert\nFreddy\nGarry\nHugh\nJackie\nJeff\nJessie\nJoaquin\nJon\nKent\nLance\nLincoln\nLonnie\nLyle\nMilton\nNeil\nPerry\nRick\nRoss\nScott\nSylvester\nTerrence\nTommie\nWillard\nBrad\nCarlton\nChester\nClaude\nClayton\nDarrel\nDarryl\nEdison\nEduardo\nEldon\nGilberto\nGrant\nGuadalupe\nHumberto\nIra\nJackson\nJaime\nKen\nKim\nLeland\nLester\nNathaniel\nNick\nOwen\nPablo\nPat\nRex\nSammy\nSergio\nSidney\nWade\nWendell\nWilfred\nWilson\nRobert\nJohn\nDavid\nRichard\nJames\nWilliam\nMichael\nThomas\nCharles\nLarry\nFrank\nGary\nGeorge\nJoe\nEdward\nRonald\nKenneth\nDaniel\nPaul\nDonald\nJerry\nManuel\nDennis\nSteven\nRaymond\nJoseph\nDanny\nHenry\nStephen\nJose\nJohnny\nRoy\nArthur\nJack\nRalph\nSteve\nAlbert\nTerry\nTony\nMike\nMark\nBruce\nErnest\nRuben\nFred\nGilbert\nJimmy\nRay\nEddie\nGregory\nPatrick\nLawrence\nLouis\nPhillip\nRoger\nVictor\nWalter\nLeonard\nHarold\nTommy\nWayne\nAlfred\nBobby\nGerald\nJuan\nPeter\nAnthony\nDouglas\nJim\nJesus\nRamon\nRudy\nBill\nTom\nCarlos\nTimothy\nDon\nRussell\nWillie\nAlan\nAntonio\nHarry\nSamuel\nCarl\nLeo\nRonnie\nBilly\nAllen\nArmando\nDale\nEugene\nFrancisco\nGlenn\nLee\nAndrew\nLuis\nMelvin\nNorman\nRoberto\nStanley\nAlex\nJimmie\nRaul\nHerman\nJesse\nMartin\nOscar\nEarl\nFernando\nRandy\nBarry\nClarence\nDan\nHector\nHerbert\nPhilip\nScott\nAngel\nCraig\nFreddie\nHoward\nLloyd\nMiguel\nArnold\nJeffrey\nKeith\nRodney\nBenjamin\nFrederick\nAlvin\nFrancis\nGordon\nLonnie\nMario\nPete\nRene\nWarren\nChristopher\nClifford\nIgnacio\nPedro\nBenny\nBob\nCurtis\nDarrell\nEric\nJay\nLewis\nAndy\nCharlie\nClyde\nJohnnie\nLeroy\nMicheal\nRicky\nWallace\nAlfonso\nFloyd\nGlen\nJon\nLeslie\nRodolfo\nRoland\nRudolph\nSam\nTheodore\nAlexander\nBen\nBennie\nCalvin\nDean\nDelbert\nErnesto\nEverett\nFredrick\nGene\nHarvey\nJoel\nJulian\nKee\nLynn\nMarc\nMarvin\nNelson\nRandall\nRick\nRickey\nVernon\nWesley\nAlfredo\nBrian\nEdwin\nHumberto\nJackie\nLeon\nMarshall\nMax\nMilton\nReynaldo\nSammy\nWilson\nAbel\nAugustine\nChester\nFrankie\nGuillermo\nJerome\nJonathan\nKent\nLorenzo\nPat\nRoss\nTed\nVincent\nAndres\nArturo\nChris\nConrad\nDave\nEdgar\nElmer\nErnie\nFranklin\nJeff\nJessie\nKarl\nLester\nLouie\nPerry\nSidney\nTim\nAlberto\nAlejandro\nArchie\nArnulfo\nBrent\nByron\nChuck\nCruz\nFelix\nGuadalupe\nGuy\nJess\nJohnson\nJulio\nJustin\nKen\nLance\nLoren\nPhil\nSalvador\nTravis\nBernard\nBradley\nCecil\nClark\nClifton\nDwayne\nEduardo\nEmory\nGabriel\nGrant\nGreg\nHarrison\nHomer\nIrvin\nJaime\nKenny\nLeland\nLupe\nMarco\nMonty\nRandolph\nRex\nRicardo\nRupert\nSammie\nSergio\nTroy\nVirgil\nJohn\nRobert\nJames\nDavid\nRichard\nWilliam\nMichael\nThomas\nLarry\nCharles\nRonald\nEdward\nJoe\nFrank\nGeorge\nGary\nDonald\nDaniel\nKenneth\nPaul\nSteven\nRaymond\nManuel\nDennis\nJerry\nJoseph\nStephen\nAlbert\nHenry\nJose\nRuben\nJohnny\nDanny\nRalph\nBruce\nArthur\nGilbert\nTony\nMike\nTimothy\nAnthony\nErnest\nJack\nRoy\nTerry\nMark\nJesus\nLawrence\nRoger\nCarlos\nJimmy\nPhillip\nHarold\nPatrick\nFrancisco\nHarry\nPeter\nEddie\nGerald\nGregory\nLouis\nWayne\nBilly\nJuan\nCarl\nLeonard\nRudy\nTommy\nArmando\nDouglas\nFred\nRay\nStanley\nAlfred\nSamuel\nDale\nEugene\nLee\nRamon\nVictor\nBill\nHoward\nWalter\nAntonio\nJesse\nRaul\nSteve\nMartin\nLuis\nAlex\nAndrew\nJim\nNorman\nRodney\nRussell\nArnold\nDan\nFreddie\nPete\nTom\nDon\nFrancis\nAllen\nBenny\nBrian\nClifford\nGordon\nJimmie\nRandy\nBenjamin\nEric\nFernando\nGene\nBarry\nLeo\nMiguel\nWillie\nFloyd\nGlenn\nKeith\nScott\nKee\nMario\nMicheal\nNelson\nOscar\nRonnie\nBobby\nCalvin\nChris\nDelbert\nEarl\nFranklin\nFrederick\nHector\nLeon\nLeroy\nMarvin\nRodolfo\nCecil\nChristopher\nCraig\nEdwin\nHerman\nJay\nJeffrey\nLeslie\nLonnie\nMelvin\nRicardo\nAlan\nAlvin\nCurtis\nPhilip\nRoberto\nRudolph\nSalvador\nSammy\nWesley\nClarence\nDuane\nJackie\nRandall\nTed\nAlexander\nBennie\nCharlie\nErnesto\nHerbert\nKevin\nPedro\nRene\nRicky\nTheodore\nAlfredo\nArturo\nDarrell\nFrankie\nGlen\nIgnacio\nLester\nLewis\nRandolph\nVincent\nVirgil\nClyde\nFelix\nLorenzo\nMax\nRoland\nWilson\nChester\nFreddy\nGuy\nHarvey\nJon\nRafael\nRudolfo\nSam\nSpencer\nTroy\nAlberto\nBert\nDean\nDwight\nGreg\nGuillermo\nHugh\nJohnnie\nJulian\nJustin\nLloyd\nLoren\nLouie\nLuther\nRoss\nTim\nVernon\nWendell\nWilfred\nAlejandro\nAndy\nBob\nBoyd\nEduardo\nFidel\nGabriel\nGuadalupe\nJan\nJess\nJonathan\nKent\nKim\nMarco\nMarion\nMilton\nNeal\nReynaldo\nWarren\nAlfonso\nAllan\nAngel\nDarryl\nDoyle\nEmilio\nErnie\nEverett\nGarry\nGilberto\nHarrison\nJohnson\nJorge\nLowell\nMatthew\nMickey\nPat\nRick\nRickey\nTeddy\nWade\nWallace\nAbraham\nAdolfo\nBen\nBernard\nBuddy\nClaude\nDaryl\nEdgar\nEldon\nElmer\nEnrique\nFelipe\nFredrick\nGus\nJaime\nJake\nJeffery\nJoaquin\nJoel\nKarl\nLance\nLeopoldo\nMarc\nMonte\nMonty\nPerry\nRodger\nSergio\nSylvester\nTomas\nVicente\nRobert\nJohn\nDavid\nJames\nMichael\nRichard\nWilliam\nThomas\nCharles\nLarry\nGary\nFrank\nDaniel\nGeorge\nEdward\nSteven\nRonald\nStephen\nDonald\nPaul\nJoe\nKenneth\nRaymond\nManuel\nJerry\nJoseph\nMark\nDennis\nJose\nHenry\nRoy\nJohnny\nDanny\nErnest\nLawrence\nGilbert\nTimothy\nAlbert\nJimmy\nBruce\nGregory\nPatrick\nDouglas\nJack\nRoger\nArthur\nCarlos\nFrancisco\nRalph\nRuben\nTerry\nAnthony\nLeonard\nJesus\nAndrew\nBilly\nPhillip\nFred\nHarold\nLouis\nRay\nWayne\nHarry\nTony\nCarl\nAlfred\nArmando\nJesse\nAntonio\nPeter\nStanley\nSteve\nTommy\nChristopher\nEddie\nRaul\nWalter\nBobby\nDan\nLuis\nBenjamin\nJuan\nMike\nSamuel\nGerald\nDale\nLee\nRamon\nAlvin\nMartin\nRandall\nVictor\nAlan\nPhilip\nRandy\nRudy\nTom\nArnold\nDon\nJeffrey\nMario\nMiguel\nAlex\nAllen\nCraig\nEarl\nFernando\nDarrell\nEdwin\nEugene\nOscar\nJim\nBob\nFreddie\nLeroy\nRonnie\nLeslie\nLloyd\nBill\nGlenn\nHector\nLeo\nMarvin\nRandolph\nAlfonso\nAngel\nFrederick\nHoward\nNorman\nRodney\nScott\nBarry\nCalvin\nJimmie\nMelvin\nRussell\nClarence\nPedro\nPete\nRoberto\nDean\nLorenzo\nMicheal\nCharlie\nFranklin\nGene\nKeith\nVernon\nArturo\nBernard\nClyde\nCurtis\nEric\nFrancis\nJon\nKevin\nJeffery\nKent\nLewis\nRene\nRicardo\nRick\nRicky\nRodolfo\nVincent\nWillard\nWillie\nAlfredo\nCecil\nChester\nChris\nErnie\nFloyd\nFredrick\nHerbert\nJoel\nRudolph\nBenny\nByron\nDwight\nFrankie\nGuadalupe\nHarvey\nHerman\nJackie\nJohnnie\nLester\nSam\nWarren\nAlberto\nAllan\nBrian\nClifford\nDuane\nKee\nLoren\nNelson\nRickey\nRobin\nRoland\nSpencer\nTed\nTheodore\nBen\nBennie\nClaude\nEdgar\nErnesto\nFreddy\nGabriel\nGlen\nGuy\nJavier\nJay\nJerome\nKarl\nKurt\nLonnie\nNicholas\nSalvador\nWesley\nAugustine\nClayton\nEduardo\nEnrique\nEverett\nFelix\nGordon\nHarrison\nJess\nJulio\nMatthew\nMax\nRafael\nRex\nReynaldo\nRogelio\nWallace\nAlejandro\nAlexander\nAndres\nClark\nClinton\nDave\nDelbert\nDomingo\nDonnie\nEdmund\nGarry\nIra\nJustin\nKirk\nLeon\nLynn\nMack\nManny\nMorris\nTeddy\nWendell\nBrent\nBryan\nBurton\nEldon\nGustavo\nHugh\nJake\nJeff\nJessie\nJohnson\nJulian\nKelly\nKenny\nLance\nLeonardo\nLouie\nLuther\nMarco\nMarshall\nMonty\nNeil\nPablo\nPreston\nRoderick\nSergio\nSidney\nTim\nVirgil\nWilson\nRobert\nJohn\nMichael\nDavid\nJames\nRichard\nWilliam\nCharles\nThomas\nGary\nLarry\nDaniel\nFrank\nSteven\nRonald\nEdward\nJoe\nGeorge\nJoseph\nKenneth\nDonald\nStephen\nDennis\nMark\nPaul\nRaymond\nJerry\nJose\nManuel\nArthur\nTimothy\nJohnny\nDanny\nAlbert\nDouglas\nGilbert\nHenry\nRoy\nBruce\nPeter\nGregory\nJack\nTerry\nErnest\nRalph\nJimmy\nRoger\nRuben\nTony\nAlfred\nCarl\nPatrick\nEugene\nLawrence\nLouis\nRandy\nAnthony\nPhillip\nHarold\nWalter\nWayne\nAndrew\nFrancisco\nGerald\nDale\nEddie\nChristopher\nHarry\nRamon\nStanley\nBobby\nCarlos\nFred\nAntonio\nJuan\nJesse\nJesus\nRaul\nBilly\nMike\nKeith\nBill\nNorman\nSteve\nTommy\nRay\nSamuel\nLeonard\nMartin\nVictor\nArnold\nHector\nJeffrey\nMicheal\nAllen\nMario\nOscar\nAlan\nBenjamin\nFrederick\nHoward\nRonnie\nHerbert\nMarvin\nClifford\nGlenn\nMelvin\nAlvin\nCraig\nFrancis\nFreddie\nLeslie\nLuis\nRandall\nRudy\nScott\nArmando\nBenny\nFernando\nGordon\nMiguel\nTom\nAlex\nDan\nDarrell\nJim\nPhilip\nRodney\nRussell\nAlexander\nBarry\nDean\nDon\nLee\nPete\nRicky\nClarence\nJimmie\nRick\nAngel\nEdwin\nFranklin\nJon\nLeroy\nRoberto\nSammy\nBrian\nCurtis\nEric\nJay\nJonathan\nLeon\nLloyd\nLynn\nPedro\nCalvin\nCecil\nFredrick\nGuy\nKevin\nSalvador\nTheodore\nWillie\nChester\nFloyd\nHerman\nLeo\nLorenzo\nNelson\nRandolph\nWesley\nAlfonso\nEarl\nFelix\nJorge\nRene\nRudolph\nAndres\nAndy\nBryan\nByron\nClyde\nDave\nDelbert\nErnesto\nErnie\nLonnie\nVernon\nDana\nDonnie\nDwight\nFrankie\nGene\nJoel\nKee\nNeil\nRickey\nWilfred\nAlfredo\nArturo\nBen\nBernard\nBradley\nCharlie\nDuane\nFreddy\nGabriel\nGuillermo\nHarrison\nJohnnie\nKelly\nLester\nNicholas\nRandal\nRex\nRicardo\nWarren\nAnderson\nEdison\nElmer\nEverett\nGarry\nHubert\nKerry\nKim\nLeland\nMilton\nSam\nVincent\nAbel\nBrent\nChris\nClinton\nEldon\nGlen\nGuadalupe\nHarvey\nJackie\nJavier\nJeffery\nJerome\nJohnson\nKirk\nLewis\nLouie\nMitchell\nPerry\nReuben\nStuart\nTed\nTeddy\nVirgil\nWade\nWilson\nBob\nClaude\nFelipe\nIgnacio\nIsmael\nJacob\nJess\nJulian\nKurt\nMatthew\nMonte\nRamiro\nReed\nReynaldo\nRoland\nAaron\nAlejandro\nCary\nClayton\nClifton\nDarrel\nDonn\nEduardo\nEmmett\nForrest\nGerardo\nGilberto\nIrvin\nJeff\nJerald\nJessie\nJody\nKent\nLupe\nLyle\nManny\nMarc\nMarcus\nNorbert\nRafael\nRigoberto\nRobin\nRodolfo\nRudolfo\nSandy\nSantiago\nStewart\nTim\nUnknown\nWallace\nRobert\nJohn\nDavid\nMichael\nJames\nRichard\nWilliam\nThomas\nSteven\nCharles\nGary\nLarry\nDonald\nGeorge\nRonald\nDaniel\nMark\nJoe\nFrank\nPaul\nKenneth\nEdward\nRaymond\nStephen\nJoseph\nDennis\nManuel\nJohnny\nHenry\nArthur\nAnthony\nDanny\nJose\nJerry\nTimothy\nGregory\nAlbert\nRalph\nBruce\nTerry\nGilbert\nErnest\nRoy\nDouglas\nFrancisco\nRoger\nStanley\nCarl\nPeter\nLawrence\nJeffrey\nJesus\nSteve\nAlfred\nRuben\nCarlos\nFred\nJimmy\nVictor\nRandy\nPatrick\nAndrew\nJuan\nLeonard\nGerald\nPhilip\nDale\nJack\nPhillip\nAlan\nHarold\nRussell\nWalter\nWayne\nJesse\nLouis\nChristopher\nCraig\nLuis\nScott\nTony\nMike\nAntonio\nBobby\nEddie\nHarry\nLee\nSamuel\nRay\nRonnie\nEugene\nFernando\nHerman\nMartin\nMelvin\nRamon\nBilly\nGlenn\nClifford\nArmando\nBenjamin\nDon\nFrederick\nHerbert\nMario\nAllen\nDan\nHector\nHoward\nTommy\nArnold\nBarry\nJay\nMicheal\nNorman\nAlex\nGlen\nLeroy\nRaul\nTom\nKeith\nOscar\nRicky\nFrancis\nJim\nLeslie\nLloyd\nMiguel\nGordon\nRandall\nRene\nWillie\nBill\nBrian\nDean\nEric\nMarvin\nVernon\nErnesto\nRodney\nCurtis\nEdwin\nFreddie\nKevin\nMarc\nPete\nTed\nAlfonso\nAlvin\nJon\nLonnie\nRandolph\nRudy\nArturo\nCalvin\nFelix\nFloyd\nFrankie\nFranklin\nKim\nLester\nLynn\nRex\nRoberto\nTheodore\nVincent\nWesley\nAlexander\nBradley\nDarrell\nDuane\nGene\nNelson\nPedro\nRudolph\nClarence\nGabriel\nGuadalupe\nJerome\nJonathan\nLewis\nMatthew\nTeddy\nAlfredo\nChester\nDelbert\nFredrick\nLouie\nRodolfo\nSam\nBenny\nBob\nByron\nCecil\nCharlie\nDwight\nJessie\nJoel\nLeo\nLorenzo\nManny\nMitchell\nRick\nAngel\nHarvey\nJimmie\nLeon\nLyle\nMax\nMilton\nRicardo\nSammy\nVirgil\nWallace\nChris\nEarl\nEdison\nGuy\nIgnacio\nJackie\nJaime\nJohnson\nJulian\nKee\nNicholas\nRickey\nTroy\nWilbert\nAllan\nAndy\nBennie\nBert\nClyde\nGreg\nGuillermo\nJavier\nJeffery\nJohnnie\nJorge\nKelly\nKerry\nMarco\nNeil\nPerry\nRoland\nBoyd\nBrent\nClayton\nDana\nElias\nElmer\nFreddy\nGarry\nKent\nMarshall\nOrville\nRoss\nSergio\nSidney\nTodd\nUnknown\nAlejandro\nAlton\nBen\nBernard\nDallas\nDarryl\nDonnie\nEdgar\nEduardo\nEverett\nFelipe\nGilberto\nHarrison\nHubert\nHumberto\nJulio\nJustin\nKarl\nLance\nLoren\nNick\nNorbert\nSimon\nStuart\nWillard\nWilson\nAaron\nAdam\nAdolph\nAdrian\nAlberto\nBillie\nBryan\nCarlton\nCody\nCruz\nDave\nDoyle\nEldon\nEnrique\nErnie\nIrvin\nIvan\nJacob\nJeff\nJess\nKelley\nKirk\nKurt\nLaurence\nLeland\nLon\nMarcus\nMarion\nMerle\nNed\nRafael\nRobin\nSalvador\nSpencer\nStewart\nTerrance\nTim\nWade\nWarren\nDavid\nRobert\nMichael\nJohn\nJames\nRichard\nWilliam\nThomas\nGary\nSteven\nCharles\nDaniel\nMark\nPaul\nKenneth\nDonald\nGeorge\nJoe\nLarry\nFrank\nDennis\nRonald\nJoseph\nEdward\nStephen\nRaymond\nManuel\nTimothy\nHenry\nJose\nGregory\nJerry\nJohnny\nRoy\nAlbert\nAnthony\nArthur\nRoger\nDouglas\nGilbert\nJesus\nBruce\nRuben\nDanny\nRandy\nPatrick\nTerry\nRalph\nAlfred\nJeffrey\nPeter\nErnest\nFrancisco\nHarold\nGerald\nJimmy\nPhillip\nVictor\nAndrew\nJack\nBobby\nDale\nLeonard\nMartin\nMike\nCarl\nSteve\nCarlos\nLawrence\nLouis\nTony\nAntonio\nEugene\nStanley\nWalter\nBilly\nHarry\nWayne\nFred\nKeith\nKevin\nMicheal\nAllen\nChristopher\nCraig\nRicky\nAlan\nEddie\nPhilip\nRandall\nJesse\nRamon\nRay\nBrian\nDon\nHector\nNorman\nRaul\nRodney\nArmando\nBenjamin\nClifford\nRussell\nGlenn\nJuan\nDean\nLloyd\nRudy\nLuis\nMelvin\nSamuel\nCalvin\nCurtis\nEric\nFernando\nRick\nHerbert\nHoward\nLeroy\nScott\nArturo\nDuane\nJim\nMario\nMarvin\nOscar\nRonnie\nTheodore\nTommy\nWillie\nFloyd\nFreddie\nFrederick\nGordon\nLee\nRicardo\nArnold\nEarl\nHerman\nJonathan\nLonnie\nRene\nRoberto\nAlvin\nChris\nDan\nEdwin\nLeo\nWesley\nBarry\nClarence\nFelix\nFrancis\nJay\nLorenzo\nTom\nVernon\nAlex\nGlen\nMiguel\nVincent\nAngel\nBenny\nGene\nJimmie\nLester\nReynaldo\nAlexander\nBrad\nElmer\nFranklin\nIgnacio\nJeffery\nLeon\nLeslie\nLewis\nMitchell\nRickey\nRudolph\nAlejandro\nAlfredo\nBill\nDarrell\nJessie\nKent\nNicholas\nPete\nRex\nSam\nAlfonso\nBryan\nCecil\nErnesto\nKim\nKirk\nMatthew\nNelson\nVirgil\nBen\nBradley\nEdison\nGuy\nJon\nKarl\nRafael\nWilfred\nWilson\nAbel\nCharlie\nChester\nDwight\nFredrick\nJoel\nJohnnie\nMarc\nPerry\nRodolfo\nTed\nTerrence\nDarryl\nGarry\nGuadalupe\nGustavo\nJackie\nJulian\nKelly\nKerry\nPablo\nRandolph\nSammy\nTeddy\nAndy\nClayton\nDana\nEverett\nFrankie\nHarrison\nLynn\nMarco\nPedro\nPhilbert\nSalvador\nTodd\nWarren\nWillard\nAllan\nAugustine\nBrent\nClyde\nDonnie\nEnrique\nFreddy\nJavier\nJeff\nKee\nLance\nLoren\nMarion\nMarty\nNathan\nRocky\nSidney\nTerrance\nTim\nTroy\nWade\nBernard\nByron\nCasey\nConrad\nDallas\nDaryl\nDave\nElias\nErnie\nGreg\nHarvey\nJackson\nJaime\nJoey\nJorge\nKenny\nKurt\nLionel\nLouie\nMack\nMarshall\nMax\nMikel\nReuben\nRobin\nRoland\nRoss\nSantiago\nWilbert\nAdrian\nAlberto\nAndres\nArchie\nArt\nAurelio\nBrett\nBuddy\nClark\nDelbert\nEdmond\nEdwardo\nFelipe\nGabriel\nGerardo\nGilberto\nGrady\nGrant\nHugh\nIvan\nJohnson\nLeland\nLowell\nMilton\nMyron\nNeil\nOwen\nPreston\nRaymundo\nReed\nSergio\nStuart\nTracy\nVan\nWallace\nWilmer\nRobert\nMichael\nDavid\nJohn\nJames\nRichard\nWilliam\nSteven\nGary\nDaniel\nThomas\nMark\nCharles\nPaul\nRonald\nGeorge\nKenneth\nLarry\nDonald\nFrank\nJoseph\nStephen\nJoe\nEdward\nDennis\nJerry\nRaymond\nGregory\nTimothy\nManuel\nRoy\nJose\nAnthony\nTerry\nGilbert\nHenry\nRandy\nBruce\nJeffrey\nArthur\nDouglas\nJohnny\nPatrick\nAlbert\nDanny\nErnest\nRoger\nKevin\nJack\nJimmy\nPeter\nRalph\nDale\nFrancisco\nStanley\nHarold\nGerald\nRay\nRuben\nAlfred\nBobby\nLawrence\nChristopher\nCraig\nKeith\nScott\nBilly\nSamuel\nBrian\nHarry\nMartin\nAntonio\nCarlos\nAndrew\nRicky\nWalter\nJesus\nRussell\nAlan\nPhillip\nWayne\nEddie\nLouis\nRamon\nSteve\nTommy\nTony\nClifford\nJesse\nMike\nRandall\nRonnie\nVictor\nLeonard\nRick\nDarrell\nFred\nCarl\nHoward\nLee\nMicheal\nDon\nFernando\nLeo\nLeroy\nLuis\nEugene\nMelvin\nRodney\nMarvin\nJuan\nRaul\nRoberto\nBenjamin\nGlenn\nHector\nPhilip\nVernon\nArnold\nJim\nKerry\nNorman\nOscar\nRicardo\nCurtis\nJon\nAllen\nBarry\nEarl\nKim\nArmando\nClarence\nEric\nJay\nPedro\nAlex\nBenny\nMario\nDean\nErnesto\nHerbert\nJoel\nLeslie\nAlvin\nArturo\nFreddie\nFrederick\nGlen\nJeffery\nPete\nRudy\nBill\nChris\nFelix\nJonathan\nRandolph\nWillie\nAngel\nLeon\nMatthew\nMiguel\nMitchell\nWesley\nDan\nFloyd\nGordon\nGuy\nJorge\nLester\nLonnie\nTheodore\nVirgil\nAlfonso\nBradley\nFranklin\nJeff\nJessie\nLorenzo\nRobin\nBrad\nDuane\nEdwin\nGabriel\nHerman\nKent\nLloyd\nNelson\nRoland\nAlexander\nBen\nCalvin\nCecil\nJimmie\nLewis\nLynn\nSalvador\nSergio\nTed\nTom\nVincent\nWilson\nAlfredo\nClayton\nGarry\nLyle\nMarc\nMilton\nRene\nRex\nReynaldo\nSidney\nAndy\nBrent\nCharlie\nHarvey\nJackie\nKarl\nLouie\nMarshall\nNicholas\nRocky\nRodolfo\nSam\nWade\nWarren\nBryan\nChester\nClinton\nClyde\nDaryl\nDwight\nEnrique\nErnie\nGene\nGreg\nGregg\nGuillermo\nLance\nRafael\nRickey\nRudolph\nStuart\nTerrence\nAbraham\nAlejandro\nBennie\nBernard\nBoyd\nDelbert\nDwayne\nElmer\nFrankie\nGuadalupe\nHarrison\nJacob\nJohnnie\nJohnson\nJulian\nKelly\nMarcos\nMax\nPablo\nPat\nPerry\nPreston\nSammy\nAlberto\nAllan\nAmbrose\nBradford\nBrett\nCharley\nClark\nClaude\nEdison\nEldon\nElroy\nEmerson\nFrancis\nFreddy\nFredrick\nGus\nIgnacio\nJoey\nKirk\nKurt\nMarcus\nMonte\nRandal\nReyes\nRoss\nAbel\nAmos\nBernardo\nClifton\nDonnie\nEdgar\nErwin\nGrant\nHumberto\nJasper\nJavier\nJulius\nMorris\nNed\nRickie\nRoderick\nRory\nTerrance\nTim\nTracy\nTravis\nWilbert\nWilbur\nWilford\nAaron\nAnderson\nArnulfo\nBarney\nCameron\nChristophe\nCornelius\nCruz\nDave\nEdmond\nEdmund\nEduardo\nEdwardo\nEmilio\nEverett\nForrest\nFransisco\nGustavo\nHubert\nJaime\nJason\nJerome\nJustin\nKenny\nKyle\nLeland\nMonty\nNeal\nNick\nScot\nSpencer\nSterling\nDavid\nRobert\nMichael\nJohn\nJames\nRichard\nWilliam\nMark\nSteven\nThomas\nDaniel\nCharles\nGary\nPaul\nFrank\nLarry\nRonald\nKenneth\nGeorge\nEdward\nJoseph\nRaymond\nStephen\nDonald\nJoe\nTimothy\nDennis\nManuel\nJerry\nJeffrey\nGregory\nAnthony\nDanny\nJohnny\nErnest\nJose\nArthur\nDouglas\nKevin\nTerry\nGilbert\nRoy\nRandy\nAlbert\nBruce\nPatrick\nPeter\nHenry\nRuben\nKeith\nAndrew\nScott\nChristopher\nPhillip\nRalph\nRoger\nVictor\nWayne\nLawrence\nCarl\nJesus\nLeonard\nMicheal\nMike\nBrian\nCarlos\nJimmy\nFrancisco\nGerald\nJack\nMartin\nRay\nAlan\nCraig\nBobby\nJesse\nAntonio\nLouis\nDale\nRussell\nBilly\nRandall\nStanley\nSteve\nAlfred\nEddie\nLuis\nRicky\nSamuel\nTony\nFernando\nJuan\nBenjamin\nRonnie\nWalter\nEric\nEugene\nAlex\nFred\nNorman\nMelvin\nRamon\nCurtis\nHarry\nLee\nRick\nFrederick\nArnold\nRaul\nRodney\nTommy\nAllen\nHarold\nJeffery\nMarvin\nPhilip\nArmando\nClarence\nDarrell\nBill\nDan\nGlenn\nHector\nJonathan\nVincent\nAlvin\nEarl\nEdwin\nHoward\nHerbert\nLeo\nRoberto\nBarry\nCalvin\nLeslie\nLloyd\nMatthew\nOscar\nJay\nJim\nTom\nBradley\nBrent\nMario\nClifford\nClyde\nDean\nDelbert\nFreddie\nHerman\nJon\nMiguel\nTheodore\nChester\nFrancis\nGuy\nLonnie\nRandolph\nRicardo\nArturo\nDon\nGlen\nJohnnie\nRudy\nVernon\nHarrison\nKelly\nLeroy\nLorenzo\nAndy\nBenny\nFrankie\nGabriel\nGordon\nIgnacio\nKim\nAlfonso\nBob\nCharlie\nDwight\nJimmie\nKarl\nRene\nWillie\nAlexander\nCecil\nChris\nDuane\nFranklin\nJeff\nJoel\nLester\nNelson\nRex\nRobin\nTerrance\nWesley\nAngel\nErnesto\nErnie\nGene\nJackie\nJessie\nJorge\nKirk\nLance\nLeon\nLewis\nPete\nRickey\nLouie\nMarc\nSam\nTroy\nWallace\nAllan\nDave\nEnrique\nGarry\nGuillermo\nJavier\nKent\nLoren\nLynn\nNathan\nTerrence\nWilson\nAlfredo\nBernard\nDoyle\nFredrick\nGregg\nJulius\nKerry\nMilton\nNicholas\nOliver\nRodolfo\nSalvador\nSammy\nTed\nWarren\nBrad\nCary\nClay\nEdison\nGerard\nGrant\nJaime\nKee\nKurt\nLyle\nNeil\nRafael\nRon\nRoss\nRudolph\nStewart\nAaron\nAbel\nAdolph\nAlberto\nAugustine\nClayton\nDallas\nEdgar\nEduardo\nEverett\nGuadalupe\nHarley\nHarvey\nIrvin\nJerome\nJoaquin\nMarcos\nMax\nMonte\nRoland\nSidney\nVirgil\nAlejandro\nArchie\nBoyd\nClinton\nConrad\nDaryl\nDavis\nDonnie\nDwayne\nFelix\nFloyd\nGilberto\nGustavo\nIsmael\nJackson\nJeffry\nJoey\nJulian\nMarco\nMitchell\nMonty\nPedro\nPerry\nReed\nRoman\nSergio\nStuart\nTim\nToby\nTodd\nTomas\nWade\nWilfred\nAdolfo\nAnderson\nBen\nBennie\nBradford\nBrett\nByron\nClark\nCleveland\nCruz\nEdwardo\nElmer\nFelipe\nGerardo\nGerry\nGreg\nIra\nIvan\nJerald\nJulio\nLeland\nLemuel\nLupe\nMarcus\nMerrill\nMorgan\nMyron\nNathaniel\nPablo\nReymundo\nRolando\nRusty\nSantos\nSean\nShane\nTracy\nVan\nVicente\nWendell\nWilbur\nDavid\nRobert\nMichael\nJohn\nJames\nRichard\nWilliam\nMark\nSteven\nDaniel\nCharles\nThomas\nDonald\nGary\nPaul\nJoseph\nLarry\nEdward\nRonald\nGeorge\nKenneth\nStephen\nTimothy\nFrank\nRaymond\nGregory\nJerry\nDouglas\nDennis\nRandy\nJoe\nAnthony\nManuel\nTerry\nBruce\nJeffrey\nScott\nAlbert\nDanny\nPatrick\nGilbert\nHenry\nChristopher\nKevin\nJose\nArthur\nJohnny\nRuben\nRalph\nRoy\nVictor\nBrian\nJimmy\nPhillip\nRoger\nMike\nAlan\nErnest\nKeith\nPeter\nLeonard\nJack\nSteve\nWayne\nCarlos\nDale\nFred\nLawrence\nJesse\nSamuel\nGerald\nMarvin\nBilly\nJuan\nMartin\nNorman\nTony\nCarl\nLouis\nTommy\nCraig\nJesus\nEddie\nRodney\nGlenn\nWalter\nAlfred\nEric\nFrancisco\nHarold\nEugene\nRussell\nAndrew\nDarrell\nLuis\nArnold\nDon\nPhilip\nBenjamin\nBobby\nRay\nAntonio\nFrederick\nMicheal\nOscar\nRamon\nRick\nStanley\nAllen\nArmando\nRicky\nCurtis\nHarry\nHector\nJim\nTheodore\nClifford\nFernando\nRonnie\nAlex\nAlvin\nBarry\nGlen\nJeffery\nJonathan\nMario\nMelvin\nRaul\nJon\nMatthew\nRandall\nRicardo\nRobin\nTom\nChris\nPete\nBill\nFranklin\nLeo\nDean\nHoward\nCalvin\nDana\nEarl\nKent\nRudy\nWillie\nBradley\nDan\nFrancis\nFreddie\nGuy\nLeon\nNelson\nBenny\nHerbert\nBen\nBrad\nCecil\nGabriel\nJoel\nKim\nLee\nLeslie\nLewis\nLloyd\nAngel\nDuane\nJay\nVincent\nCharlie\nDaryl\nEmerson\nFloyd\nGordon\nKerry\nTim\nVernon\nAllan\nBryan\nFelix\nFrankie\nGreg\nJeff\nLonnie\nMiguel\nRene\nRoberto\nWade\nWesley\nBob\nClarence\nErnesto\nGuillermo\nKarl\nKurt\nLance\nMilton\nPedro\nRex\nRocky\nTodd\nAlfredo\nArturo\nBrent\nLeroy\nMarshall\nRickey\nSam\nSammy\nAlberto\nChester\nDave\nDelbert\nEdison\nEnrique\nGene\nHerman\nMitchell\nNicholas\nPerry\nRandolph\nTerrence\nAdam\nAlexander\nAndy\nClark\nEduardo\nJohnnie\nKirk\nLouie\nTracy\nAdrian\nAlfonso\nBennie\nBernard\nDonnie\nEdwin\nGeoffrey\nJackie\nJessie\nJimmie\nJohnson\nKelly\nLoren\nLorenzo\nMarc\nMarcos\nMax\nRafael\nRandal\nSalvador\nVirgil\nAaron\nByron\nDwight\nElmer\nGuadalupe\nHarrison\nIgnacio\nJaime\nJerald\nJoey\nJulian\nLionel\nNathan\nPreston\nRoss\nTed\nWallace\nWarren\nWilfred\nAlejandro\nArchie\nBrett\nDarwin\nErwin\nGregg\nIrvin\nJerome\nKee\nLeland\nMonty\nNed\nNeil\nRudolph\nStewart\nTeddy\nTroy\nWilford\nBennett\nCary\nClayton\nClyde\nDwayne\nEdmund\nEdwardo\nEmmett\nErnie\nFredrick\nGarry\nIvan\nJason\nJoaquin\nJulio\nLester\nMarco\nMarcus\nNeal\nOrlando\nPablo\nPat\nReed\nReynaldo\nSantiago\nStuart\nTerrance\nTommie\nWard\nAbel\nAndres\nBenson\nBoyd\nBuddy\nChristophe\nClaude\nClay\nConrad\nDanial\nDee\nDuncan\nEdgar\nEfren\nEldon\nForrest\nGilberto\nIsaac\nJeffry\nJustin\nLynn\nManny\nMarty\nMonte\nNathaniel\nOrville\nRamiro\nReginald\nRoderick\nRodger\nRoland\nRon\nScot\nSergio\nTimmy\nVicente\nWyatt\nDavid\nMichael\nRobert\nJames\nJohn\nRichard\nWilliam\nMark\nSteven\nThomas\nDaniel\nCharles\nDonald\nGary\nGeorge\nKenneth\nRonald\nLarry\nPaul\nJoseph\nEdward\nJoe\nFrank\nStephen\nRaymond\nDennis\nTimothy\nGregory\nScott\nAnthony\nJerry\nKevin\nMike\nRandy\nJeffrey\nManuel\nBruce\nBrian\nJose\nPatrick\nHenry\nTerry\nPeter\nAlbert\nSteve\nDanny\nArthur\nCarlos\nDouglas\nGilbert\nJimmy\nJohnny\nTony\nChristopher\nVictor\nRuben\nRicky\nLeonard\nPhillip\nAlfred\nAndrew\nErnest\nLawrence\nCarl\nJack\nRay\nRoy\nFrancisco\nMartin\nRalph\nRoger\nJuan\nDale\nJeffery\nCraig\nGerald\nKeith\nRussell\nWalter\nAntonio\nCurtis\nEddie\nWayne\nEric\nJesse\nLouis\nRandall\nAlan\nBilly\nDon\nMatthew\nJesus\nMicheal\nRodney\nSamuel\nDarrell\nFred\nRick\nStanley\nAllen\nEugene\nRonnie\nBryan\nDan\nRudy\nAlex\nGlen\nBenjamin\nOscar\nBarry\nBobby\nHoward\nJim\nPhilip\nTommy\nHarold\nTom\nBob\nJay\nBill\nGlenn\nJonathan\nLee\nArmando\nKarl\nPerry\nChris\nFrederick\nHarry\nJon\nRaul\nVincent\nAlvin\nArnold\nBradley\nDean\nJeff\nMitchell\nNelson\nRamon\nCalvin\nFreddie\nMario\nClarence\nErnesto\nGuy\nLuis\nWesley\nDuane\nLeo\nRicardo\nTim\nVernon\nClifford\nFloyd\nKent\nMarvin\nAlfredo\nGreg\nHerbert\nHerman\nKelly\nVirgil\nBenny\nEdwin\nGene\nHector\nNorman\nRex\nSam\nCharlie\nGabriel\nJoel\nAndy\nBrent\nJaime\nMelvin\nTracy\nWillie\nClyde\nEarl\nErnie\nFrancis\nFranklin\nGarry\nLorenzo\nRobin\nTed\nTheodore\nTodd\nAlexander\nFelix\nFernando\nGordon\nJimmie\nLeslie\nNeil\nBen\nCecil\nClayton\nGuadalupe\nJessie\nLeroy\nLloyd\nMarc\nMiguel\nRoberto\nDave\nHarrison\nKurt\nLonnie\nMilton\nRene\nRickey\nRocky\nSalvador\nByron\nDana\nDelbert\nLance\nMarcus\nPete\nSammy\nStuart\nAlfonso\nAllan\nAngel\nArturo\nBrad\nEdmund\nFrankie\nFredrick\nGuillermo\nHarvey\nJoey\nLester\nLouie\nMarty\nReynaldo\nWade\nWilson\nAaron\nAbel\nAlejandro\nCary\nDaryl\nJavier\nKenny\nKerry\nKim\nKirk\nLeon\nLewis\nPedro\nRodolfo\nRon\nRudolph\nSergio\nTerrence\nWarren\nAlberto\nBennie\nBernard\nCasey\nDwight\nEduardo\nEverett\nHugh\nJerome\nJess\nMarion\nMarshall\nRafael\nRandolph\nTroy\nWillis\nAugustine\nDick\nDonnie\nElvis\nFermin\nGrant\nIgnacio\nIrvin\nKen\nKirby\nLeland\nLyle\nMarco\nNicky\nPhil\nRobbie\nSean\nWilbert\nBrett\nCarlton\nClark\nClaude\nDanial\nDarwin\nDwayne\nEdison\nElmer\nEmerson\nEnrique\nJacob\nJohnnie\nJorge\nJulian\nJulius\nKee\nKendall\nMarcos\nMonty\nNathan\nNathaniel\nNed\nNicholas\nNick\nRoland\nSantos\nTerrance\nWallace\nZane\nAdolfo\nAdrian\nArt\nBillie\nChester\nEdgar\nEvan\nFederico\nGerardo\nGustavo\nJackie\nJefferson\nJerald\nJody\nJulio\nKyle\nLupe\nManny\nMax\nMickey\nNeal\nRory\nTeddy\nWendell\nWilfred\nAgustin\nAlton\nAlvaro\nBennett\nClifton\nDarrel\nDavis\nDexter\nDirk\nDomingo\nDoug\nDoyle\nEdmundo\nEllis\nElton\nFidel\nGerry\nGrady\nGregorio\nIvan\nJoaquin\nJohnson\nLoren\nMalcolm\nMarlin\nMaurice\nMauro\nMorris\nOrlando\nOtis\nPreston\nRandal\nRaymundo\nReuben\nRoss\nRupert\nSantiago\nShane\nShawn\nSpencer\nTerence\nWillard\nRobert\nDavid\nMichael\nJohn\nJames\nRichard\nWilliam\nMark\nSteven\nCharles\nThomas\nDaniel\nPaul\nLarry\nGary\nFrank\nKenneth\nTimothy\nDonald\nRonald\nJoseph\nMike\nJoe\nGeorge\nEdward\nKevin\nScott\nStephen\nGregory\nSteve\nRaymond\nDennis\nBrian\nDanny\nJerry\nTerry\nAnthony\nJeffrey\nRandy\nJohnny\nManuel\nArthur\nDouglas\nRicky\nAlbert\nJose\nChristopher\nPatrick\nGilbert\nTony\nJimmy\nEric\nEddie\nPeter\nDale\nVictor\nHenry\nBruce\nJim\nPhillip\nRussell\nRuben\nKeith\nMartin\nCarl\nMatthew\nJack\nAlfred\nRoy\nRalph\nTom\nBill\nCarlos\nErnest\nLeonard\nAndrew\nGerald\nJesus\nSamuel\nWayne\nCurtis\nHarold\nLawrence\nStanley\nRay\nJesse\nJuan\nRoger\nBobby\nRick\nJay\nRamon\nRudy\nTommy\nAlan\nBilly\nGreg\nLouis\nRandall\nLee\nTim\nAllen\nGlenn\nJeff\nLuis\nMicheal\nNorman\nRaul\nChris\nCraig\nDon\nFernando\nFrancisco\nHoward\nWalter\nRicardo\nBryan\nDan\nMario\nAlvin\nArnold\nJon\nPhilip\nRonnie\nAntonio\nCalvin\nBarry\nFreddie\nGlen\nLeo\nRodney\nHarry\nAlex\nArmando\nBenjamin\nEugene\nOscar\nPerry\nVincent\nBret\nDarrell\nJeffery\nBob\nBradley\nFrederick\nHector\nVirgil\nClifford\nMelvin\nPat\nTodd\nAngel\nDuane\nFrancis\nJimmie\nJonathan\nRobin\nAndy\nBrent\nDean\nFred\nPedro\nSam\nAlexander\nBrett\nDave\nHerbert\nKelly\nMiguel\nRon\nRoss\nTed\nWesley\nClarence\nEarl\nGabriel\nGene\nJessie\nJoel\nKent\nKirk\nLeland\nLeroy\nLeslie\nMarvin\nMitchell\nWade\nArturo\nBen\nBenny\nJoey\nTheodore\nTracy\nClay\nFloyd\nLonnie\nPete\nRickey\nRodolfo\nVernon\nAlfredo\nBernard\nCecil\nClyde\nFelix\nFrankie\nFranklin\nLorenzo\nMarty\nNelson\nRoberto\nBrad\nChester\nDana\nEdwin\nKen\nKurt\nLloyd\nMatt\nRocky\nDwight\nEdison\nErnesto\nErnie\nGordon\nLeon\nRandolph\nRoland\nAlberto\nDoug\nElmer\nEmmett\nGuadalupe\nGuy\nKarl\nLester\nMarc\nMilton\nNathan\nSammy\nShawn\nWillie\nAlfonso\nBenito\nClayton\nDaryl\nDelbert\nEduardo\nHarrison\nLance\nLewis\nLyle\nNeil\nRex\nTerrence\nWilson\nBart\nChuck\nClinton\nDonnie\nEnrique\nEverett\nGilberto\nHerman\nIvan\nJavier\nJorge\nLaurence\nLouie\nLynn\nMax\nNathaniel\nNick\nRafael\nAaron\nAbel\nByron\nCharlie\nClifton\nDarrel\nDarryl\nDoyle\nErvin\nEsteban\nFreddy\nGarry\nIgnacio\nJackie\nKenny\nMarco\nMaurice\nMonty\nRandal\nRickie\nSean\nSergio\nTroy\nWallace\nWill\nWillard\nAlejandro\nAllan\nAlonzo\nAmos\nArchie\nAugustine\nDwayne\nEd\nEmerson\nHarvey\nHubert\nIrvin\nJacob\nJaime\nJulian\nJulius\nKee\nKerry\nKyle\nLupe\nMarcos\nRene\nRusty\nSalvador\nVince\nAbraham\nAdam\nBert\nDomingo\nEarnest\nFederico\nFelipe\nGustavo\nHugh\nHumberto\nJefferson\nJerald\nJerome\nJess\nLionel\nMathew\nNeal\nPablo\nPhil\nRoderick\nShannon\nSylvester\nTerence\nTerrance\nWilfred\nAdolfo\nAmbrose\nArnulfo\nArt\nAudie\nBennie\nBenson\nBlaine\nBoyd\nCameron\nCary\nClaude\nCory\nCruz\nDerek\nDerrick\nDick\nEdgar\nElvis\nGeoffrey\nGrant\nKelvin\nKim\nLoren\nLuther\nManny\nMerlin\nMickey\nNicholas\nNoel\nNorbert\nPercy\nPreston\nRandell\nReed\nReyes\nRobbie\nRodger\nStuart\nWilford\nDavid\nMichael\nRobert\nJohn\nRichard\nJames\nMark\nWilliam\nDaniel\nSteven\nThomas\nPaul\nCharles\nScott\nMike\nGary\nLarry\nTimothy\nRonald\nDonald\nFrank\nJoseph\nKenneth\nGeorge\nJoe\nSteve\nRaymond\nRandy\nEdward\nKevin\nJeffrey\nPatrick\nJerry\nGregory\nDennis\nStephen\nDanny\nBrian\nAnthony\nTerry\nChristopher\nRicky\nManuel\nDouglas\nJohnny\nArthur\nTony\nJose\nPeter\nGilbert\nJim\nJimmy\nVictor\nRalph\nBruce\nEric\nCarlos\nRoger\nRussell\nKeith\nDale\nMatthew\nAlbert\nChris\nCraig\nTim\nBill\nPhillip\nRuben\nWayne\nEddie\nHenry\nJack\nJeff\nJuan\nAndrew\nTom\nAllen\nErnest\nMartin\nRay\nLawrence\nWalter\nAlan\nCarl\nBilly\nHarold\nGreg\nRaul\nRoy\nGerald\nBobby\nDon\nLeonard\nDan\nMario\nFrancisco\nRandall\nJay\nBryan\nJeffery\nHarry\nJesus\nRonnie\nStanley\nVincent\nLuis\nSamuel\nBret\nGlenn\nJesse\nDarrell\nLee\nOscar\nRamon\nRick\nArmando\nLouis\nRudy\nTodd\nAlfred\nAlvin\nBarry\nBradley\nTommy\nCurtis\nPhilip\nArnold\nFred\nFreddie\nNorman\nDave\nFernando\nClifford\nJon\nMelvin\nBob\nFrederick\nVernon\nAndy\nJoel\nLeroy\nMarvin\nAntonio\nBrett\nDean\nHoward\nJonathan\nMicheal\nRicardo\nSam\nAlex\nBenjamin\nCalvin\nEdwin\nEugene\nRodney\nEarl\nHector\nBrad\nPete\nRickey\nBrent\nGlen\nDuane\nKelly\nMitchell\nWillie\nArturo\nDelbert\nErnie\nFrankie\nGordon\nGuy\nHerman\nJimmie\nKenny\nKirk\nLeo\nShawn\nTracy\nHerbert\nJessie\nMarty\nAngel\nBen\nFelix\nKarl\nMarc\nPedro\nStuart\nCharlie\nDoug\nEdison\nFranklin\nGabriel\nNick\nRon\nClay\nDana\nKurt\nLonnie\nMiguel\nPerry\nRene\nRoberto\nTed\nClarence\nClyde\nErnesto\nFloyd\nGene\nJacob\nLloyd\nNelson\nPat\nRandolph\nTheodore\nTroy\nWesley\nBenny\nCecil\nJoey\nLewis\nRex\nRobin\nAlfonso\nFrancis\nKent\nLance\nLoren\nLorenzo\nLouie\nSammy\nShane\nWade\nAlfredo\nIgnacio\nJulian\nLeland\nNeil\nNicholas\nWilfred\nAaron\nAdrian\nBart\nByron\nChester\nChuck\nClint\nDarren\nDarryl\nGrant\nHarvey\nJackie\nJorge\nLeon\nLeslie\nNathaniel\nRudolph\nVirgil\nAlexander\nAllan\nDonnie\nEdmund\nEmerson\nEverett\nFredrick\nGarry\nGuadalupe\nGustavo\nJackson\nKerry\nLester\nMarcus\nMarshall\nNathan\nRoland\nRoss\nWallace\nWilbert\nWilbur\nAlejandro\nAnderson\nClark\nClayton\nCruz\nFelipe\nGregg\nIvan\nJavier\nJerome\nJody\nMarco\nMarcos\nMax\nNeal\nPhil\nRafael\nRobbie\nRodolfo\nWarren\nAbel\nAl\nAndres\nArchie\nAugustine\nBennie\nBernard\nBernie\nBert\nCasey\nDane\nDaryl\nDonny\nEduardo\nElvis\nHugh\nJaime\nJustin\nKee\nKim\nLane\nLaurence\nMickey\nMonty\nRandal\nReynaldo\nRory\nRusty\nSalvador\nSergio\nShannon\nTerrance\nTimmy\nWilson\nAdolfo\nCharley\nDick\nDwayne\nDwight\nEd\nEnrique\nFrederico\nGerardo\nGerry\nGilberto\nGuillermo\nHarrison\nIsaac\nJamie\nJason\nJefferson\nKirby\nKyle\nLyle\nLynn\nMilton\nMonte\nOrlando\nShaun\nSterling\nTerrence\nTrent\nWillard\nAbraham\nAlonzo\nAmos\nAndre\nArnulfo\nBoyd\nCary\nClifton\nCorey\nCurt\nDavis\nDerek\nDewayne\nEdwardo\nEmery\nErvin\nEvan\nFidel\nFreddy\nFreeman\nHubert\nIrvin\nJerald\nJohnnie\nJulio\nKelvin\nLionel\nLupe\nMarion\nMarlin\nMatt\nNed\nNoel\nRandell\nReuben\nRob\nRocky\nRyan\nSean\nTeddy\nTravis\nDavid\nRobert\nMichael\nJohn\nJames\nMark\nRichard\nWilliam\nThomas\nSteven\nDaniel\nPaul\nScott\nCharles\nMike\nRonald\nKevin\nKenneth\nTimothy\nGary\nLarry\nJoseph\nDonald\nGeorge\nEdward\nSteve\nFrank\nJoe\nBrian\nAnthony\nJerry\nDanny\nDennis\nRaymond\nGregory\nDouglas\nRandy\nJeffrey\nTony\nTerry\nStephen\nChristopher\nJohnny\nJose\nHenry\nJeff\nRicky\nArthur\nPatrick\nRoger\nEric\nManuel\nJim\nBruce\nGilbert\nVictor\nAlbert\nErnest\nKeith\nRalph\nPeter\nJimmy\nMartin\nRussell\nChris\nPhillip\nRoy\nTom\nMatthew\nTim\nEddie\nWayne\nCarlos\nCraig\nDale\nBobby\nBill\nLeonard\nJack\nFred\nBilly\nGreg\nAlex\nRay\nBryan\nRuben\nCarl\nSamuel\nCurtis\nJay\nAndrew\nLawrence\nTommy\nWalter\nAlan\nAlfred\nJesse\nJuan\nRandall\nRonnie\nGlenn\nMario\nDan\nJesus\nDean\nTroy\nGerald\nJeffery\nJon\nRaul\nRick\nAllen\nFernando\nBradley\nEugene\nHarold\nRodney\nAntonio\nDuane\nFrancisco\nLouis\nPhilip\nVincent\nDarrell\nDon\nHarry\nAndy\nRamon\nArmando\nBob\nOscar\nRudy\nStanley\nAlvin\nArnold\nKelly\nLee\nMarvin\nMicheal\nRicardo\nBarry\nMelvin\nBenjamin\nGlen\nKarl\nLuis\nMiguel\nTodd\nJoel\nNorman\nTed\nCalvin\nClifford\nLance\nRoberto\nTracy\nAngel\nEarl\nBen\nDarren\nFreddie\nHector\nLeroy\nLeslie\nWillie\nDave\nGene\nHoward\nJonathan\nKent\nMarty\nMitchell\nBenny\nBrent\nKenny\nLorenzo\nPerry\nDarryl\nVernon\nWesley\nAaron\nBrett\nDelbert\nErnie\nFloyd\nLloyd\nPedro\nSam\nArturo\nBrad\nErnesto\nFranklin\nFrederick\nGabriel\nJody\nJorge\nKerry\nRex\nRon\nShawn\nAlberto\nBernard\nChuck\nDwayne\nEdwin\nHerbert\nPete\nRene\nRoss\nClayton\nDana\nEduardo\nFrancis\nHarvey\nHerman\nJimmie\nKen\nNathan\nNelson\nVirgil\nAlexander\nAlfredo\nAllan\nClay\nFrankie\nJaime\nJohnnie\nKurt\nLewis\nMarc\nSean\nWade\nWendell\nBret\nClinton\nEmerson\nEnrique\nFelix\nGarry\nJustin\nKim\nKirk\nTeddy\nAlfonso\nClarence\nDerek\nDoug\nElmer\nGuy\nJason\nJulian\nLeon\nLester\nLynn\nMarco\nNeil\nNick\nPat\nRafael\nRobin\nSammy\nSergio\nAbel\nCecil\nCharlie\nDonnie\nGordon\nGuillermo\nJoey\nLeland\nTravis\nBart\nClaude\nDarwin\nDaryl\nEdison\nGrant\nJackie\nJessie\nLeo\nLonnie\nLoren\nNathaniel\nNicholas\nRocky\nStuart\nAlejandro\nArt\nChester\nFredrick\nGuadalupe\nGustavo\nJacob\nJulio\nRamiro\nRickey\nTheodore\nWarren\nWilfred\nAndres\nCary\nEverett\nJavier\nJeffry\nKee\nKyle\nMatt\nMax\nNeal\nPhil\nRandolph\nReynaldo\nSalvador\nWallace\nWillard\nAmos\nBert\nDarrel\nDwight\nEd\nEdgar\nElias\nGerard\nGerardo\nGregg\nJulius\nKelvin\nMarcus\nMilton\nMonty\nNolan\nPablo\nRandal\nReed\nReyes\nRodolfo\nRoland\nRusty\nTy\nWilbert\nAdam\nAdrian\nByron\nCasey\nConrad\nCornelius\nDallas\nDavis\nDomingo\nElvis\nEmmett\nFreddy\nGilberto\nGus\nHarrison\nIrvin\nLouie\nManny\nOrlando\nReginald\nReuben\nRodger\nRory\nRyan\nStan\nStevie\nTerrence\nTomas\nAbelardo\nAnderson\nAugustine\nBlaine\nBradford\nBrandon\nBryce\nClint\nCruz\nCurt\nDane\nDenny\nDerrick\nDonny\nEarnest\nErvin\nEvan\nFaron\nHank\nIvan\nJake\nJess\nJohnson\nLionel\nLyle\nMarshall\nMathew\nMitch\nMorris\nNed\nOctavio\nReggie\nRobbie\nRudolph\nRussel\nSantos\nSpencer\nStewart\nTerence\nTerrance\nTommie\nTyrone\nVan\nVince\nWes\nWillis\nDavid\nRobert\nMichael\nJohn\nJames\nMark\nRichard\nWilliam\nDaniel\nSteven\nThomas\nPaul\nCharles\nKevin\nScott\nMike\nKenneth\nRonald\nJoseph\nGary\nTimothy\nLarry\nJeffrey\nFrank\nBrian\nGregory\nDonald\nRaymond\nJoe\nAnthony\nEdward\nJerry\nDanny\nSteve\nPatrick\nStephen\nGeorge\nChristopher\nDouglas\nTony\nEric\nManuel\nRandy\nAlbert\nJose\nTerry\nChris\nJohnny\nPeter\nJeff\nDennis\nRicky\nPhillip\nArthur\nAndrew\nGilbert\nKeith\nCraig\nGreg\nRoger\nRuben\nVictor\nJim\nHenry\nTodd\nBruce\nEddie\nJimmy\nBill\nCarl\nWayne\nMartin\nJeffery\nRalph\nAlan\nRoy\nTim\nTom\nTroy\nBilly\nJesse\nLeonard\nMatthew\nCarlos\nRussell\nBryan\nJack\nJesus\nRay\nErnest\nJon\nGerald\nLuis\nTommy\nBarry\nJuan\nSamuel\nVincent\nAllen\nArnold\nJay\nWalter\nDan\nAlfred\nGlenn\nRamon\nRonnie\nMiguel\nRandall\nRaul\nAlex\nBobby\nDon\nHarold\nDale\nFrancisco\nRick\nCurtis\nEugene\nFred\nHoward\nLawrence\nLeroy\nMarvin\nMicheal\nDarrell\nDean\nPhilip\nRudy\nBenjamin\nDave\nHarry\nJonathan\nMitchell\nNorman\nBradley\nEarl\nMario\nTracy\nAaron\nBrent\nDuane\nKelly\nLouis\nArmando\nFernando\nRon\nDwayne\nRicardo\nAndy\nDarryl\nJoel\nLee\nMelvin\nWillie\nBrett\nRodney\nSam\nStanley\nDarren\nGabriel\nKenny\nOscar\nShawn\nFloyd\nHector\nRene\nAngel\nAntonio\nBrad\nClifford\nErnie\nGordon\nGuy\nLance\nMarc\nPete\nBob\nGlen\nRobin\nTed\nAdam\nFranklin\nRoberto\nSammy\nAlvin\nClay\nFelix\nJaime\nKen\nKent\nWesley\nBenny\nFreddie\nGene\nLeon\nNelson\nReynaldo\nCharlie\nDelbert\nEdwin\nFrederick\nHerman\nJavier\nLonnie\nLorenzo\nNick\nVirgil\nAdrian\nAlexander\nBen\nCalvin\nClarence\nDoug\nFrankie\nHerbert\nJimmie\nKarl\nLeo\nLeslie\nLouie\nAlfredo\nByron\nDwight\nJessie\nKurt\nPerry\nRobbie\nStuart\nArturo\nCecil\nRocky\nTheodore\nWade\nFrancis\nGregg\nIrvin\nJoey\nJorge\nKirk\nLyle\nMatt\nNathan\nRex\nSean\nWarren\nAlfonso\nBernard\nClark\nDewayne\nKerry\nLeland\nMarcos\nMarcus\nMickey\nNeil\nTravis\nAlejandro\nClyde\nDerek\nDoyle\nEdwardo\nErnesto\nGarry\nGeoffrey\nGregorio\nGustavo\nJulian\nKyle\nLewis\nLloyd\nMarshall\nMyron\nRodolfo\nShane\nTimmy\nVernon\nBennie\nChester\nClayton\nClinton\nCurt\nDaryl\nDonnie\nEmerson\nEvan\nForrest\nGuadalupe\nJefferson\nJohnnie\nLester\nMarion\nMarty\nMax\nRamiro\nRoss\nSterling\nAbel\nAlberto\nAmos\nAugustine\nBert\nChuck\nDarrel\nElmer\nErvin\nFredrick\nGrant\nGuillermo\nHugh\nHumberto\nJerome\nMilton\nMonty\nOrlando\nRuss\nTerence\nDirk\nEd\nEmilio\nEnrique\nFelipe\nGerard\nGilberto\nJackson\nJason\nJohnson\nJulius\nKee\nKris\nLoren\nLynn\nMarco\nMitch\nMonte\nNathaniel\nNicholas\nNoel\nPat\nPhil\nRandolph\nRod\nRoland\nRudolph\nRusty\nStewart\nTod\nTy\nVince\nWallace\nWendell\nBennett\nClint\nDana\nDerrick\nEarnest\nEdgar\nEdison\nElias\nErik\nFabian\nFidel\nFreeman\nHarrison\nHarvey\nIsaac\nJerald\nJustin\nManny\nPedro\nReuben\nRickey\nRodger\nSalvador\nSergio\nSherman\nTad\nToby\nWillard\nAdolfo\nAllison\nAnderson\nArt\nBarney\nBart\nBlaine\nBoyd\nBryant\nBuddy\nChad\nClifton\nColin\nDamon\nDavis\nDenny\nDion\nEdmund\nEdmundo\nEduardo\nEverett\nGerardo\nIvan\nJackie\nJasper\nJulio\nKelvin\nKim\nKurtis\nLes\nLuke\nLupe\nMathew\nMervin\nMorgan\nOrville\nOwen\nRoderick\nRonny\nStan\nTomas\nWilfred\nWilson\nXavier\nDavid\nMichael\nJohn\nRobert\nJames\nMark\nRichard\nWilliam\nScott\nSteven\nDaniel\nCharles\nThomas\nPaul\nJoseph\nRonald\nTimothy\nKevin\nKenneth\nJoe\nJeffrey\nBrian\nFrank\nDonald\nGary\nLarry\nGeorge\nMike\nEdward\nAnthony\nSteve\nChristopher\nJerry\nRaymond\nDanny\nGregory\nEric\nRandy\nDouglas\nStephen\nPatrick\nJose\nJeff\nTodd\nPhillip\nGilbert\nTony\nChris\nJohnny\nJim\nTerry\nDennis\nJeffery\nBruce\nPeter\nTim\nKeith\nManuel\nCraig\nEddie\nJesus\nAndrew\nMartin\nGreg\nRoger\nTroy\nCarlos\nJimmy\nAlbert\nMatthew\nArthur\nHenry\nVictor\nRoy\nErnest\nRalph\nBill\nCurtis\nAlan\nRandall\nTom\nBobby\nJon\nDale\nJack\nMario\nRuben\nDan\nBilly\nCarl\nRicky\nAlfred\nRussell\nAllen\nWayne\nAlex\nSamuel\nHarold\nLouis\nPhilip\nArmando\nLeonard\nRay\nRick\nStanley\nWalter\nBarry\nVincent\nFrancisco\nGerald\nBradley\nFernando\nJonathan\nRodney\nAntonio\nBryan\nFred\nJesse\nRicardo\nTommy\nDean\nJuan\nKelly\nDarrell\nJay\nBenjamin\nBrent\nDon\nMarvin\nMicheal\nDuane\nJoel\nLuis\nGlenn\nLawrence\nLee\nRonnie\nRudy\nShawn\nTracy\nAaron\nBob\nMarc\nArnold\nHarry\nHector\nNorman\nMitchell\nOscar\nDave\nTed\nRamon\nRaul\nKenny\nKent\nKirk\nMiguel\nAdam\nAndy\nDarryl\nFloyd\nGlen\nKurt\nRene\nDelbert\nLorenzo\nCalvin\nErnie\nFreddie\nFrederick\nMelvin\nVernon\nBrett\nAlvin\nEdwin\nGabriel\nHoward\nLance\nLewis\nDoug\nJoey\nPedro\nPerry\nSam\nEugene\nFrancis\nFranklin\nJustin\nKen\nNathan\nBen\nClarence\nDwayne\nEnrique\nGene\nGordon\nGuy\nLeo\nLeroy\nMatt\nOrlando\nTheodore\nWarren\nBernard\nBrad\nClifford\nDana\nDaryl\nJaime\nKarl\nLester\nPete\nWesley\nWillie\nAngel\nChuck\nErnesto\nHerman\nLeon\nLeslie\nLloyd\nNick\nPat\nRon\nArturo\nBenny\nCecil\nJavier\nJimmie\nRex\nVirgil\nByron\nDarren\nEarl\nEmerson\nEverett\nGregg\nKerry\nMarcus\nMarty\nNicholas\nRobin\nWade\nAlexander\nBret\nCasey\nCharlie\nDwight\nFelipe\nFrankie\nLonnie\nLouie\nMarcos\nRafael\nSammy\nClint\nDerek\nEdison\nHarrison\nJerome\nJessie\nLyle\nMarco\nMax\nMyron\nReginald\nRoberto\nSalvador\nTravis\nAlfredo\nClark\nEvan\nFelix\nJason\nJohnnie\nJorge\nLoren\nPablo\nRoss\nSean\nSergio\nStewart\nTerrance\nWallace\nWilson\nAlberto\nAlejandro\nClay\nClayton\nDoyle\nGarry\nGerardo\nGrant\nGuadalupe\nLarson\nMonte\nNeal\nNeil\nRandal\nRandolph\nRickey\nRob\nRoland\nTeddy\nTod\nVince\nWilfred\nAdrian\nArt\nBernie\nBoyd\nClyde\nConrad\nCory\nDewayne\nEduardo\nFritz\nGeoffrey\nGuillermo\nHerbert\nIsaac\nJackie\nJoaquin\nLuther\nMorgan\nNathaniel\nNelson\nRobbie\nRory\nShane\nStuart\nTerence\nTomas\nAbel\nAlvaro\nAndres\nAugustine\nBennie\nBuddy\nCary\nChester\nClifton\nDelvin\nEd\nFredrick\nHank\nHugh\nJohnson\nKee\nKim\nLeander\nLeland\nLynn\nMarshall\nMilton\nNed\nReynaldo\nRodolfo\nRusty\nTyrone\nWally\nAlfonso\nAlton\nArchie\nBert\nBrandon\nBryce\nCurt\nDerrick\nDion\nDomingo\nElbert\nElmer\nEmery\nEmilio\nErik\nFreddy\nHarvey\nIgnacio\nIsmael\nIvan\nJacob\nJess\nJulio\nJulius\nKyle\nManny\nMickey\nMonty\nOwen\nPhil\nRigoberto\nRoman\nRonny\nRueben\nRuss\nSantos\nScot\nSimon\nSylvester\nTyler\nVal\nWillard\nDavid\nMichael\nRobert\nJohn\nJames\nRichard\nMark\nWilliam\nScott\nSteven\nDaniel\nThomas\nPaul\nKevin\nTimothy\nJoseph\nKenneth\nBrian\nCharles\nJeffrey\nRonald\nLarry\nGary\nFrank\nDonald\nAnthony\nMike\nGeorge\nRaymond\nJoe\nChristopher\nGregory\nDanny\nJerry\nEdward\nMartin\nSteve\nStephen\nDouglas\nEric\nTony\nJose\nManuel\nPatrick\nTerry\nJeff\nAndrew\nTodd\nVictor\nRandy\nDennis\nHenry\nBryan\nPeter\nRuben\nErnest\nTroy\nGilbert\nCarlos\nJim\nRicky\nRoger\nBruce\nJohnny\nKeith\nMatthew\nPhillip\nGreg\nJesus\nRoy\nChris\nEddie\nJon\nAlbert\nCarl\nCraig\nVincent\nAlan\nJack\nRussell\nTom\nJimmy\nJuan\nBobby\nLawrence\nRalph\nTim\nBilly\nRay\nWalter\nDale\nJeffery\nLeonard\nDean\nJay\nWayne\nAlex\nArthur\nFrancisco\nAdam\nRandall\nAntonio\nBill\nDarrell\nGerald\nStanley\nAllen\nOscar\nCurtis\nDuane\nJonathan\nBarry\nDan\nPhilip\nRamon\nRodney\nSamuel\nKelly\nLuis\nBenjamin\nMario\nFernando\nMitchell\nFred\nGlenn\nAlfred\nDon\nJesse\nRaul\nTommy\nArnold\nRudy\nEugene\nGabriel\nRene\nTracy\nAndy\nArmando\nHector\nNorman\nRick\nBrent\nKent\nPete\nRon\nCalvin\nKirk\nLance\nBradley\nDarren\nLee\nLloyd\nMicheal\nRonnie\nFreddie\nLeroy\nBrad\nDarryl\nHarold\nLouis\nMiguel\nBob\nClifford\nDwayne\nGordon\nKarl\nMarvin\nRicardo\nFrankie\nMelvin\nRoberto\nBrett\nDave\nDelbert\nGene\nHarrison\nJoel\nShawn\nTheodore\nWillie\nAngel\nHoward\nLorenzo\nWesley\nDoug\nGlen\nGuy\nJimmie\nNathan\nWade\nEdwin\nGregg\nHarry\nKen\nSean\nEnrique\nFrederick\nJaime\nJason\nJavier\nLeo\nMarc\nTravis\nVernon\nBen\nBenny\nErnesto\nErnie\nHerbert\nJoey\nLonnie\nMatt\nSam\nVirgil\nAllan\nAlvin\nCecil\nChuck\nJerome\nKurt\nKyle\nMarshall\nPerry\nSergio\nShane\nTed\nAlfredo\nEmerson\nFloyd\nFranklin\nKenny\nLeslie\nSimon\nBernard\nCharlie\nClyde\nDamon\nDaryl\nIgnacio\nLynn\nMax\nPedro\nPhil\nRobin\nRoland\nStuart\nTerrance\nWarren\nChad\nClayton\nFrancis\nFreddy\nGrant\nHerman\nMarty\nMyron\nRickey\nAaron\nAlexander\nClark\nDerrick\nDonnie\nDwight\nEarl\nEduardo\nFelix\nHarvey\nKerry\nLeon\nMaurice\nNathaniel\nOrlando\nRandolph\nRex\nReynaldo\nRudolph\nSalvador\nAlfonso\nByron\nDallas\nDerek\nEd\nJulius\nJustin\nLewis\nLoren\nMarcos\nMarcus\nMonte\nNelson\nNicholas\nNick\nTimmy\nVince\nWallace\nAmos\nAndres\nClint\nConrad\nDana\nDewayne\nEverett\nGerardo\nGilberto\nIvan\nJessie\nJulian\nLouie\nManny\nMathew\nMilton\nPablo\nPat\nRafael\nRocky\nStewart\nTerence\nAlberto\nAlejandro\nAngelo\nAugustine\nBart\nCary\nChester\nClinton\nDarin\nFredrick\nGuillermo\nJackie\nJody\nKelvin\nLionel\nMarco\nReginald\nRobbie\nRoss\nRusty\nSammy\nSherman\nSylvester\nWendell\nAdrian\nAmbrose\nArt\nArturo\nClarence\nClaude\nCody\nEdgar\nEdison\nEdmund\nFelipe\nGarry\nGerard\nGuadalupe\nGustavo\nJohnnie\nJohnson\nKee\nMitch\nMorgan\nNeal\nRaymundo\nRodolfo\nRyan\nShannon\nSheldon\nStephan\nTeddy\nWilfred\nWilson\nAbel\nAdolfo\nBenedict\nBernardo\nBradford\nBuddy\nCesar\nChristian\nClay\nClifton\nDarrel\nDion\nDomingo\nForrest\nGeoffrey\nGreggory\nHubert\nHugh\nIsaac\nIsidro\nJamie\nJefferson\nJerald\nJess\nJohnathan\nJorge\nJoshua\nKennith\nKim\nLester\nLuke\nLuther\nLyndon\nMarion\nMonty\nMorris\nOliver\nReuben\nRob\nRobby\nRoman\nRosendo\nRuss\nSammie\nSantiago\nSpencer\nTheron\nTrent\nTy\nTyrone\nWillard\nZachary\nDavid\nMichael\nJohn\nRobert\nJames\nMark\nRichard\nWilliam\nDaniel\nThomas\nSteven\nPaul\nScott\nKevin\nJoseph\nCharles\nTimothy\nKenneth\nRonald\nJeffrey\nEdward\nBrian\nGary\nPatrick\nFrank\nLarry\nChristopher\nGregory\nAnthony\nDonald\nJoe\nMike\nEric\nRaymond\nMartin\nGeorge\nJerry\nAndrew\nSteve\nStephen\nKeith\nMatthew\nManuel\nTony\nDanny\nJose\nJohnny\nDouglas\nTodd\nRandy\nVictor\nGilbert\nRoy\nPeter\nRuben\nTerry\nAlbert\nJeff\nTroy\nChris\nPhillip\nBruce\nCarlos\nDennis\nJimmy\nHenry\nBryan\nRoger\nSamuel\nJeffery\nRicky\nRussell\nCarl\nJack\nLawrence\nShawn\nVincent\nBill\nCraig\nDale\nTom\nArthur\nDarrell\nBilly\nJim\nBobby\nEddie\nPhilip\nTim\nWayne\nJesus\nAlan\nFrancisco\nRandall\nGreg\nRay\nAdam\nJon\nMario\nMarvin\nBenjamin\nFred\nRalph\nTommy\nErnest\nRodney\nWalter\nGerald\nHector\nJuan\nRudy\nAlex\nGlenn\nHarold\nJesse\nLeonard\nAllen\nJay\nJonathan\nMicheal\nCurtis\nMiguel\nNorman\nRick\nRonnie\nArmando\nDean\nDon\nDuane\nLeroy\nLuis\nOscar\nAlfred\nAndy\nBarry\nBrent\nEugene\nGabriel\nJoel\nAntonio\nEarl\nLouis\nRamon\nRene\nAaron\nFernando\nKelly\nRicardo\nStanley\nAlvin\nHarry\nArnold\nBradley\nFrederick\nKarl\nKurt\nLance\nRaul\nSam\nSean\nTed\nDan\nDarren\nDarryl\nHoward\nKent\nBrett\nClifford\nClayton\nJason\nLeslie\nTheodore\nBrad\nGlen\nLeo\nMelvin\nSammy\nWarren\nAlfonso\nHerman\nMitchell\nDwayne\nErnie\nFrancis\nKen\nLorenzo\nPedro\nPerry\nVernon\nWade\nAngel\nCalvin\nClarence\nDelbert\nFrankie\nJessie\nMarc\nNeil\nWillie\nKenny\nLee\nLeon\nMarty\nPete\nRoberto\nRon\nAlfredo\nBob\nByron\nEmerson\nGordon\nNathan\nNick\nRafael\nTracy\nAdrian\nErnesto\nFloyd\nJaime\nJimmie\nJoey\nMatt\nNathaniel\nShane\nTimmy\nAbel\nChad\nCharlie\nDave\nDoug\nGene\nGregg\nJerome\nJustin\nKyle\nMarco\nMarcus\nNelson\nOrlando\nDana\nDaryl\nEnrique\nHerbert\nJamie\nKirk\nLoren\nMathew\nNicholas\nPat\nTravis\nWillard\nAlexander\nArturo\nBenny\nBernard\nCasey\nChuck\nDarin\nEdison\nFranklin\nJohnnie\nLonnie\nCliff\nClinton\nEduardo\nEdwin\nFelipe\nFreddie\nHarrison\nLeland\nMilton\nRobbie\nRobin\nRodolfo\nStuart\nTerrence\nVirgil\nWesley\nDerek\nErik\nErvin\nFelix\nGerardo\nGuadalupe\nGuy\nLouie\nLyle\nRex\nRoland\nRoss\nSergio\nTod\nAlberto\nArt\nBradford\nBret\nCecil\nClay\nDarrin\nDarwin\nDerrick\nDwight\nEdmund\nGarry\nGerard\nGilberto\nHarvey\nKerry\nLaurence\nLeander\nLester\nLewis\nReynaldo\nTy\nWilson\nAl\nAugustine\nBen\nBennie\nCameron\nClint\nClyde\nCruz\nDallas\nEdgar\nEverett\nFabian\nGrant\nIvan\nJackson\nJacob\nJorge\nJulio\nJulius\nKendall\nLloyd\nManny\nMarcos\nMax\nRoderick\nRoman\nStephan\nTrent\nBernie\nBryon\nBuddy\nChristian\nClark\nClaude\nCody\nDamon\nDirk\nDonnie\nGonzalo\nGrady\nHubert\nIrvin\nIsidro\nIsmael\nJavier\nJody\nJohnson\nJonathon\nJulian\nKee\nLuther\nLynn\nMalcolm\nMarion\nMarshall\nNeal\nPablo\nRandolph\nSalvador\nShannon\nStewart\nTerence\nToby\nTomas\nValentino\nVince\nWilbur\nXavier\nAllan\nAnderson\nAndres\nAugustin\nBart\nBenson\nBert\nBlaine\nBoyd\nBrandon\nCary\nCole\nCorey\nCornelius\nCory\nDanial\nDarrel\nDenny\nDevin\nDino\nDion\nDominic\nDonny\nEd\nElliott\nElmer\nEmery\nGustavo\nIgnacio\nIra\nIsaac\nJackie\nJefferson\nJess\nJoaquin\nKim\nKip\nMarlin\nMonty\nPreston\nRandell\nReginald\nReuben\nRickey\nRob\nRobby\nRoyce\nRusty\nSamson\nScot\nShaun\nSidney\nStacy\nTerrance\nTracey\nWillis\nMichael\nDavid\nJohn\nRobert\nJames\nRichard\nWilliam\nMark\nDaniel\nThomas\nSteven\nScott\nTimothy\nPaul\nJoseph\nKevin\nChristopher\nBrian\nCharles\nRonald\nAnthony\nKenneth\nJeffrey\nFrank\nGary\nGregory\nEric\nJoe\nDonald\nStephen\nGeorge\nMartin\nJose\nPatrick\nSteve\nRaymond\nEdward\nMike\nAndrew\nLarry\nTodd\nJerry\nDanny\nMatthew\nDouglas\nPeter\nTony\nKeith\nTroy\nArthur\nPhillip\nHenry\nJohnny\nChris\nDennis\nSamuel\nManuel\nCarlos\nAlbert\nGilbert\nJeff\nRandy\nRodney\nShawn\nBilly\nCraig\nRoger\nTerry\nDarren\nJesse\nJonathan\nFrancisco\nLawrence\nBruce\nDale\nJeffery\nAlan\nGreg\nJack\nJesus\nJuan\nEddie\nRicky\nRoy\nVincent\nErnest\nRuben\nBenjamin\nRay\nVictor\nAlex\nBryan\nJay\nTim\nJim\nWalter\nBobby\nBradley\nJimmy\nJon\nMicheal\nGerald\nPhilip\nRalph\nDarrell\nLuis\nMario\nRandall\nSean\nFred\nRussell\nEugene\nRamon\nAdam\nBarry\nBrent\nLeonard\nWayne\nAlfred\nCarl\nDean\nHarold\nLouis\nMarvin\nRicardo\nAaron\nBill\nDarryl\nGabriel\nJason\nLeroy\nNorman\nRoberto\nTom\nTommy\nTravis\nArnold\nRonnie\nAndy\nCurtis\nDarrin\nGlenn\nAntonio\nLee\nBrad\nAlvin\nArmando\nArturo\nDon\nFernando\nJoel\nRudy\nAngel\nDan\nFrederick\nKarl\nLance\nLorenzo\nMarty\nPedro\nRaul\nRene\nDuane\nHector\nKelly\nMelvin\nTracy\nAllen\nEarl\nHarry\nOscar\nGlen\nLloyd\nMiguel\nNathan\nShannon\nStanley\nAlexander\nBenny\nClarence\nHerbert\nKurt\nShane\nClifford\nJessie\nNicholas\nRick\nRon\nTheodore\nVirgil\nWesley\nBob\nBrett\nCalvin\nErik\nFrankie\nLeo\nMatt\nPete\nBret\nDarin\nDave\nDerek\nEmerson\nJimmie\nKen\nLeslie\nMarc\nSalvador\nStuart\nTed\nWade\nClinton\nDelbert\nEdwin\nFreddie\nGene\nJaime\nJorge\nLeland\nMarco\nRafael\nRoland\nVernon\nWarren\nBen\nDana\nEverett\nFranklin\nHoward\nJoey\nLeon\nMathew\nNeal\nAlfredo\nCharlie\nChuck\nDwayne\nEnrique\nFreddy\nGuy\nKirk\nMilton\nNathaniel\nByron\nClint\nHarrison\nKent\nMitchell\nAdrian\nEduardo\nFelix\nGerardo\nGordon\nGuadalupe\nLonnie\nNelson\nReynaldo\nRoss\nSammy\nSergio\nToby\nAlfonso\nChad\nClyde\nDoug\nErnesto\nErnie\nFrancis\nJackie\nJavier\nJohnnie\nKenny\nLewis\nMarcos\nMax\nNeil\nPerry\nRex\nSheldon\nStacy\nTeddy\nTyrone\nAbel\nAmbrose\nAndres\nDaren\nElmer\nFloyd\nGuillermo\nGustavo\nHugh\nJulian\nManny\nMyron\nOrlando\nPablo\nReginald\nRodolfo\nTimmy\nWillie\nAlberto\nAnderson\nArt\nBrandon\nBuddy\nCecil\nChester\nClifton\nDallas\nDonovan\nDwight\nGrant\nGregg\nHerman\nIrvin\nJacob\nJamie\nJoaquin\nJody\nJoshua\nJustin\nKyle\nLouie\nLynn\nNoel\nPat\nRandolph\nRickey\nRob\nRobin\nRyan\nSantiago\nTerrance\nTy\nWilson\nAdolfo\nBennie\nBernardo\nChristian\nClark\nClay\nCory\nDaryl\nDenny\nDino\nEdison\nElroy\nEvan\nFelipe\nFredrick\nGarry\nHarvey\nKris\nLincoln\nLuther\nMarcus\nMarshall\nMiles\nMorgan\nRaymundo\nRoderick\nSam\nSidney\nSpencer\nWilfred\nAbelardo\nAbraham\nAlejandro\nAllan\nAmos\nAndre\nBenson\nBlaine\nBlake\nBoyd\nBryon\nCarter\nCary\nClayton\nDamon\nDane\nDarwin\nDelfino\nDomingo\nDonny\nEmilio\nErick\nErvin\nIsaac\nIsrael\nJared\nJefferson\nJess\nJulius\nKim\nLoren\nNick\nNorbert\nPreston\nRandal\nRocky\nRonny\nRueben\nShaun\nTomas\nTully\nTyler\nWallace\nWilford\nDavid\nMichael\nJohn\nRobert\nJames\nRichard\nWilliam\nMark\nDaniel\nChristopher\nSteven\nScott\nPaul\nTimothy\nBrian\nJoseph\nAnthony\nThomas\nJeffrey\nKevin\nKenneth\nFrank\nCharles\nRonald\nEdward\nGary\nDonald\nJoe\nGregory\nEric\nPatrick\nLarry\nGeorge\nStephen\nRaymond\nMartin\nAndrew\nJose\nTodd\nDouglas\nMike\nTroy\nMatthew\nManuel\nDanny\nBryan\nSteve\nJerry\nDennis\nJohnny\nShawn\nPeter\nRoger\nKeith\nRandy\nChris\nPhillip\nArthur\nJesus\nRodney\nVictor\nAlbert\nGilbert\nJuan\nRuben\nTony\nErnest\nTerry\nJimmy\nCraig\nHenry\nSamuel\nDarrell\nCarlos\nJeffery\nJonathan\nMario\nGabriel\nJeff\nJon\nCarl\nJason\nRay\nVincent\nJesse\nJoel\nRalph\nRicky\nRoy\nRussell\nMarvin\nRaul\nLawrence\nSean\nWayne\nBobby\nBrent\nBruce\nDale\nGerald\nAntonio\nBenjamin\nEddie\nFrancisco\nLuis\nNorman\nAlan\nDean\nFred\nTim\nWalter\nArmando\nBradley\nDarren\nJack\nKelly\nAlex\nOscar\nLeonard\nRandall\nTravis\nAaron\nCurtis\nDan\nFernando\nGreg\nHector\nJim\nLouis\nTommy\nAllen\nBill\nDuane\nFrederick\nRamon\nRonnie\nAdam\nJay\nNathan\nTheodore\nArnold\nTom\nAngel\nBilly\nGlenn\nMarc\nMelvin\nAndy\nDarrin\nHarold\nLee\nLorenzo\nAlfred\nDarryl\nKent\nPhilip\nRene\nRicardo\nRon\nBarry\nBrad\nChad\nEdwin\nEugene\nRudy\nMiguel\nClifford\nGordon\nLeroy\nMicheal\nVernon\nWesley\nBenny\nBrett\nCalvin\nErnesto\nJaime\nRoberto\nWarren\nAlfredo\nDon\nFreddie\nHoward\nRick\nTracy\nAlexander\nFrankie\nGlen\nKurt\nLance\nOrlando\nShane\nDarin\nErik\nJerome\nJulian\nKarl\nMitchell\nRodolfo\nTed\nFranklin\nHerman\nJorge\nNicholas\nPete\nRyan\nSammy\nStuart\nWade\nAbel\nAlvin\nEmerson\nFelix\nJamie\nJavier\nJimmie\nJustin\nKirk\nMarty\nNathaniel\nPedro\nShannon\nAdrian\nBob\nDerek\nEnrique\nErnie\nFrancis\nFreddy\nLeon\nLloyd\nMonty\nReynaldo\nStanley\nTyrone\nAlberto\nAlejandro\nArturo\nCasey\nDana\nDelbert\nDion\nEdison\nGuy\nHarrison\nJoey\nKyle\nLonnie\nVirgil\nBen\nBennie\nClayton\nClinton\nDarrel\nDwayne\nGene\nJulio\nMarco\nNeal\nRandolph\nRoland\nTerrance\nXavier\nAugustine\nBernard\nCecil\nClarence\nClyde\nDaryl\nDave\nEarl\nElias\nEverett\nFloyd\nGilberto\nIgnacio\nIvan\nJackie\nJessie\nJody\nJulius\nKenny\nLester\nLoren\nMarcos\nMarcus\nMatt\nMilton\nPerry\nRafael\nSam\nTeddy\nTy\nByron\nCary\nCharlie\nDoug\nDwight\nEdgar\nEmmett\nFredrick\nHerbert\nIra\nLeland\nLewis\nMax\nRogelio\nRoss\nWilfred\nWillie\nAlfonso\nAllan\nArt\nBoyd\nBradford\nCornell\nCory\nCruz\nDewayne\nDirk\nDoyle\nDrew\nEduardo\nEdwardo\nErvin\nFabian\nGeoffrey\nGerardo\nGregg\nGuadalupe\nHarry\nIrvin\nIsaac\nJackson\nJacob\nJeffry\nKee\nLeander\nLeo\nLupe\nManny\nMathew\nNick\nPreston\nRamiro\nReginald\nRex\nRob\nRobbie\nSergio\nShaun\nSpencer\nTimmy\nVicente\nAdolfo\nAlonzo\nAngelo\nBennett\nBert\nBrandon\nBret\nChuck\nClaude\nClifton\nDerrick\nDevin\nDick\nDiego\nDominic\nGarry\nGustavo\nIan\nJefferson\nJoshua\nKen\nKip\nLeslie\nLouie\nMonte\nMorgan\nNelson\nNoel\nPablo\nPat\nReuben\nReyes\nRobin\nRudolph\nToby\nVan\nWendell\nWillard\nMichael\nDavid\nRobert\nJohn\nJames\nRichard\nMark\nWilliam\nChristopher\nDaniel\nScott\nPaul\nBrian\nSteven\nThomas\nTimothy\nJoseph\nKevin\nCharles\nRonald\nJeffrey\nPatrick\nEric\nKenneth\nAnthony\nRaymond\nFrank\nEdward\nGary\nGregory\nMatthew\nJose\nDonald\nStephen\nTodd\nMartin\nAndrew\nDouglas\nLarry\nGeorge\nJoe\nMike\nPeter\nJohnny\nManuel\nJerry\nSean\nCraig\nGilbert\nShawn\nSteve\nDanny\nJason\nRandy\nTony\nJesus\nTroy\nDennis\nTerry\nBryan\nChris\nJon\nKeith\nRoger\nAlbert\nArthur\nRussell\nSamuel\nJuan\nRene\nRay\nCarlos\nJack\nRuben\nVictor\nDarrell\nHenry\nJeff\nJeffery\nJesse\nRalph\nRodney\nFrancisco\nJimmy\nBrent\nRoy\nJay\nTim\nBenjamin\nCarl\nGerald\nRicky\nTommy\nBruce\nAdam\nBilly\nRicardo\nBobby\nDarren\nJonathan\nLouis\nGabriel\nRamon\nWayne\nAlan\nEddie\nLawrence\nRudy\nVincent\nEugene\nHector\nKelly\nLuis\nMario\nPhillip\nAaron\nJim\nJoel\nLeonard\nRandall\nRonnie\nAntonio\nMarvin\nAlex\nAllen\nDale\nNathan\nWalter\nBill\nBradley\nDuane\nHarold\nDean\nGlenn\nTom\nArmando\nBarry\nBrett\nClinton\nCurtis\nErnest\nJavier\nKirk\nTheodore\nFred\nLeroy\nMelvin\nMicheal\nOscar\nPhilip\nAndy\nLee\nRick\nTracy\nAlexander\nBrad\nDon\nFernando\nGreg\nNorman\nRaul\nChad\nDelbert\nMiguel\nAlfred\nDan\nDerek\nFranklin\nHoward\nMarc\nPete\nArnold\nDarryl\nLance\nNicholas\nTravis\nVernon\nAlfredo\nLeon\nRoberto\nShane\nAlvin\nEnrique\nKurt\nKyle\nPedro\nWesley\nClifford\nHarry\nLoren\nReynaldo\nRodolfo\nAngel\nArturo\nGene\nRex\nStacy\nVirgil\nBob\nChristian\nDonovan\nDwayne\nEdwin\nFrankie\nFreddy\nJaime\nLeo\nLonnie\nLorenzo\nTyrone\nWade\nByron\nCalvin\nDarrin\nDaryl\nEarl\nEduardo\nGlen\nHarrison\nIvan\nJimmie\nLeslie\nMarty\nRon\nRyan\nSalvador\nShannon\nStanley\nTed\nAbel\nAlejandro\nBernard\nDamon\nDarin\nErnesto\nEverett\nJoey\nMarco\nNathaniel\nOrlando\nRandolph\nSergio\nTy\nWarren\nBenny\nBret\nDewayne\nErik\nGilberto\nJorge\nJulio\nJustin\nMarcus\nMatt\nSam\nSantiago\nWillie\nAdrian\nBennie\nBrandon\nClarence\nGuadalupe\nIsmael\nJerome\nMarshall\nPreston\nSammy\nTerrance\nBen\nCesar\nClayton\nDevin\nDomingo\nFloyd\nFrederick\nGordon\nGuillermo\nHerman\nHugh\nJacob\nJared\nLloyd\nLynn\nMarcos\nMathew\nNeil\nPerry\nRoss\nShaun\nStuart\nWillard\nAdolfo\nAlberto\nAlfonso\nAllan\nAndre\nCarlton\nCecil\nDave\nDoug\nEdison\nErnie\nErvin\nFelix\nFrancis\nFreddie\nFredrick\nGregg\nGuy\nIan\nJohnnie\nJonathon\nJulian\nKarl\nKenny\nKent\nKerry\nLester\nLewis\nMitchell\nMonty\nNeal\nRafael\nRoderick\nSimon\nTeddy\nTyler\nAlonzo\nBenito\nClark\nClifton\nDane\nDaren\nDarwin\nDominic\nDwight\nEmmett\nFelipe\nHerbert\nIgnacio\nJessie\nJulius\nKen\nKendall\nLeland\nLuke\nNick\nRudolph\nRusty\nTerrell\nToby\nWilfred\nXavier\nAlton\nBryant\nBryon\nCary\nCasey\nChuck\nClyde\nCorey\nCory\nDana\nDusty\nEdgar\nEmerson\nEmmanuel\nEsteban\nForrest\nGeoffrey\nGerardo\nGrant\nGustavo\nHeath\nIra\nJamie\nJoaquin\nJody\nJoshua\nKee\nLane\nMaurice\nMervin\nMickey\nMorgan\nNelson\nNoel\nNorbert\nOtis\nRobin\nShon\nSpencer\nStacey\nTimmy\nTrent\nVince\nWallace\nWilson\nMichael\nDavid\nRobert\nJohn\nJames\nRichard\nMark\nWilliam\nChristopher\nBrian\nSteven\nDaniel\nPaul\nScott\nThomas\nTimothy\nCharles\nJoseph\nJeffrey\nRonald\nEric\nKevin\nKenneth\nAnthony\nMatthew\nPatrick\nEdward\nStephen\nFrank\nGary\nRaymond\nJose\nGregory\nAndrew\nDonald\nTodd\nGeorge\nLarry\nSean\nDouglas\nJason\nMartin\nSteve\nJoe\nManuel\nShawn\nBryan\nTroy\nJesus\nChris\nCraig\nVictor\nJohnny\nKeith\nRodney\nTerry\nJerry\nRoger\nDanny\nGilbert\nMike\nTony\nBobby\nSamuel\nRandy\nHenry\nErnest\nJonathan\nDennis\nJeff\nAlan\nWayne\nPhillip\nAlbert\nBilly\nJuan\nLawrence\nPeter\nRuben\nJeffery\nBenjamin\nAaron\nCarlos\nEddie\nRonnie\nFrancisco\nHector\nJimmy\nTravis\nArthur\nDarren\nTommy\nJesse\nJoel\nKelly\nRussell\nArmando\nGabriel\nLeonard\nCarl\nLouis\nLuis\nAdam\nJack\nRene\nAntonio\nBradley\nDarrell\nJustin\nRamon\nRay\nRicardo\nRudy\nDale\nGerald\nMario\nRyan\nAlex\nBrent\nVincent\nDean\nOscar\nFred\nRalph\nRaul\nRoy\nShane\nAndy\nTim\nBill\nFernando\nJon\nRandall\nRicky\nAlfred\nCurtis\nDan\nWalter\nBrett\nMarc\nMarvin\nMicheal\nAlfredo\nDerek\nFrankie\nHarold\nJaime\nLee\nMelvin\nChad\nClinton\nDon\nHoward\nJay\nMiguel\nDuane\nDwayne\nErnesto\nEugene\nGreg\nKirk\nRon\nLeroy\nPhilip\nBret\nBruce\nClifford\nGlenn\nGuy\nLance\nRick\nTom\nAllen\nBarry\nBenny\nDarrin\nKarl\nKurt\nNorman\nSergio\nAdrian\nAlejandro\nAngel\nArturo\nGordon\nJim\nLoren\nNathan\nRoberto\nShannon\nWesley\nAbel\nBrad\nErik\nGuillermo\nJessie\nJody\nJorge\nKyle\nLeon\nMarco\nMarcos\nMarcus\nNathaniel\nPete\nRoland\nTheodore\nAlvin\nAndres\nCameron\nDarin\nDaryl\nDelbert\nDustin\nEdwin\nFrancis\nFrederick\nHarry\nJerome\nKent\nTracy\nVernon\nAlberto\nArnold\nChristian\nFelix\nFloyd\nFranklin\nGlen\nGuadalupe\nHerman\nIgnacio\nJulian\nLorenzo\nNicholas\nTed\nByron\nCary\nEarl\nJavier\nJimmie\nJoey\nLewis\nMatt\nRobbie\nSam\nShaun\nWarren\nAlexander\nAllan\nBen\nClarence\nCorey\nDarryl\nEnrique\nFredrick\nGerardo\nGregg\nJared\nKee\nKen\nLeander\nMickey\nPablo\nPedro\nRodolfo\nStacy\nStanley\nWade\nWillie\nCasey\nCecil\nFabian\nFelipe\nJamie\nKelvin\nLeo\nLeslie\nLloyd\nMax\nMitchell\nOrlando\nRafael\nSammy\nTrent\nTyrone\nClay\nDamon\nDarrel\nEmerson\nErnie\nHerbert\nJacob\nJefferson\nJoaquin\nKenny\nLester\nLonnie\nMarty\nMathew\nPreston\nSantiago\nTrevor\nVirgil\nAlfonso\nAmbrose\nBart\nBrandon\nCalvin\nClifton\nCody\nDoug\nDwight\nEdgar\nErick\nFederico\nFreddie\nFreddy\nGarrett\nGeoffrey\nGrant\nIsaac\nJeremy\nLouie\nMaurice\nNeil\nNelson\nNick\nRudolph\nSeth\nTerrence\nToby\nTyler\nAdolfo\nAugustine\nBert\nBlaine\nCesar\nClint\nDana\nDevin\nDino\nDion\nGene\nIan\nIra\nIsrael\nJackie\nJohnnie\nJulius\nKerry\nLynn\nMack\nMalcolm\nMilton\nMonte\nMonty\nNoel\nPat\nRamiro\nRex\nSalvador\nStacey\nStuart\nTeddy\nTimmy\nTrenton\nWallace\nWendell\nZane\nAlonzo\nAnderson\nAndre\nBryon\nCharlie\nClayton\nClyde\nColin\nCory\nDane\nDave\nDerrick\nDominic\nDonovan\nDoyle\nDrew\nElroy\nEmery\nHarlan\nHarrison\nHilario\nIsmael\nJackson\nJasper\nJeffry\nJoshua\nLeland\nLuke\nLyle\nMerle\nNorbert\nPerry\nRoss\nSanford\nSantos\nStephan\nTerence\nTy\nVicente\nXavier\nZachary\nMichael\nDavid\nRobert\nJohn\nJames\nRichard\nChristopher\nMark\nWilliam\nDaniel\nBrian\nScott\nSteven\nThomas\nJeffrey\nJoseph\nPaul\nCharles\nJason\nTimothy\nKenneth\nAnthony\nEric\nRonald\nKevin\nMatthew\nJose\nStephen\nGary\nEdward\nGregory\nPatrick\nDonald\nFrank\nSean\nGeorge\nTodd\nRaymond\nShawn\nJonathan\nTroy\nLarry\nManuel\nDouglas\nMartin\nChris\nCraig\nAndrew\nCarlos\nPeter\nBryan\nJoe\nJerry\nMike\nDanny\nJohnny\nJesus\nJuan\nRuben\nDarren\nKeith\nRandy\nDennis\nPhillip\nErnest\nAlbert\nVictor\nSamuel\nTony\nMario\nFrancisco\nRalph\nGabriel\nSteve\nLawrence\nRussell\nTerry\nGilbert\nJoel\nJustin\nBenjamin\nBrent\nHenry\nJeffery\nMarc\nTravis\nAaron\nJay\nLuis\nRamon\nAllen\nArthur\nBilly\nBradley\nCarl\nHarold\nJon\nShane\nAntonio\nEddie\nJesse\nVincent\nWayne\nJimmy\nLance\nLouis\nFernando\nJeff\nRoger\nDarrell\nDerek\nHector\nLeonard\nRicky\nBruce\nDale\nMiguel\nRoy\nAlex\nAlfred\nAngel\nArmando\nBrett\nGerald\nJack\nLee\nRodney\nAdam\nChad\nCurtis\nPhilip\nRicardo\nRonnie\nRudy\nRyan\nBobby\nKirk\nRaul\nRene\nAlejandro\nRay\nDean\nEugene\nFrederick\nJavier\nTommy\nAlan\nJorge\nKelly\nMarvin\nRandall\nTracy\nWalter\nBrad\nGlenn\nClifford\nDarrin\nDuane\nKyle\nMicheal\nRoberto\nAlvin\nClinton\nDan\nHoward\nJim\nOscar\nBill\nCalvin\nLeon\nNathan\nBrandon\nKurt\nLeroy\nLoren\nNorman\nPedro\nShannon\nAndy\nArnold\nArturo\nCorey\nDarin\nErnesto\nFreddie\nGlen\nStanley\nTim\nTom\nDarryl\nDon\nDwayne\nGuy\nJeremy\nKarl\nTheodore\nWade\nBarry\nDelbert\nFred\nGene\nGreg\nAlexander\nAlfredo\nCory\nDustin\nEarl\nErik\nHarry\nKent\nMarcos\nOrlando\nTyrone\nAdrian\nFloyd\nFranklin\nGeoffrey\nJaime\nWesley\nByron\nFrankie\nJoey\nLeo\nMatt\nMelvin\nRon\nSam\nAlberto\nDonovan\nDoug\nGarrett\nLorenzo\nMarco\nNathaniel\nNicholas\nRick\nTyler\nVernon\nCasey\nChristian\nDamon\nFelix\nGerardo\nGordon\nIvan\nJamie\nJoshua\nLester\nLonnie\nMarcus\nMitchell\nPete\nTrevor\nVirgil\nWarren\nCameron\nClarence\nDaryl\nEduardo\nEdwin\nEmerson\nErvin\nLeslie\nNelson\nRafael\nRoland\nRoss\nSammy\nSpencer\nTed\nAbel\nBernard\nClint\nDwight\nEnrique\nGilberto\nIan\nJimmie\nJohnnie\nKenny\nLloyd\nLuke\nLyle\nMarshall\nMathew\nPablo\nRobin\nSeth\nTimmy\nToby\nAbraham\nBret\nBryon\nCharlie\nChuck\nConrad\nDenny\nFrancis\nGuillermo\nGustavo\nHerman\nIra\nIsaac\nJulio\nKerry\nMarty\nMax\nReginald\nShaun\nVance\nAngelo\nAugustine\nBlaine\nBob\nGarry\nGregg\nGuadalupe\nHerbert\nIgnacio\nIrvin\nJared\nJefferson\nJerald\nJerome\nKee\nMilton\nNeil\nNoel\nPerry\nPreston\nRandolph\nRobbie\nRobby\nSantiago\nSheldon\nTeddy\nTerrance\nTrent\nWaylon\nWillie\nAbram\nAlfonso\nAllan\nAndre\nAndres\nBart\nBenito\nClayton\nDamian\nDave\nDavis\nDino\nDion\nDominic\nEldon\nElroy\nErnie\nGrant\nHugh\nJessie\nJody\nLaurence\nRex\nReynaldo\nScot\nSergio\nTerrence\nTy\nVicente\nAdolfo\nAnderson\nBarton\nBen\nBenny\nBoyd\nChester\nCurt\nDallas\nDana\nDane\nDarwin\nDewey\nElijah\nEthan\nFabian\nFredrick\nHarley\nHeath\nHumberto\nJacob\nJake\nJoaquin\nJohnathan\nJulian\nJulius\nLane\nLewis\nManny\nMarcello\nMarlin\nOwen\nRandal\nRobb\nRodolfo\nRory\nRusty\nSonny\nStewart\nTerence\nTitus\nTobin\nTod\nMichael\nDavid\nRobert\nJames\nJohn\nRichard\nChristopher\nWilliam\nSteven\nJason\nMark\nDaniel\nBrian\nThomas\nScott\nJeffrey\nPaul\nJoseph\nEric\nKevin\nCharles\nTimothy\nMatthew\nRonald\nAnthony\nKenneth\nShawn\nStephen\nJose\nAndrew\nFrank\nPatrick\nGary\nEdward\nGregory\nDonald\nTroy\nSean\nCarlos\nTodd\nAaron\nJuan\nJoe\nRaymond\nJonathan\nJerry\nManuel\nKeith\nRandy\nGeorge\nLarry\nChad\nTravis\nChris\nJesus\nJesse\nBryan\nJeremy\nCraig\nDanny\nMario\nMartin\nPeter\nRuben\nRussell\nDennis\nShane\nAlbert\nDouglas\nFrancisco\nMike\nVincent\nTony\nGilbert\nLance\nLuis\nBenjamin\nBilly\nRene\nSteve\nVictor\nHenry\nJustin\nPhillip\nSamuel\nArthur\nGabriel\nJeffery\nJimmy\nJohnny\nMarc\nBrandon\nDarrell\nDarren\nJon\nBobby\nDerek\nMarcus\nRoy\nAdam\nWalter\nBrent\nErnest\nLeonard\nRaul\nRoger\nTommy\nFernando\nLee\nAlex\nArmando\nDale\nKelly\nLawrence\nDean\nGerald\nJeff\nRodney\nWayne\nBradley\nPhilip\nRamon\nBrett\nBruce\nCarl\nJack\nRalph\nAlfred\nGlenn\nRandall\nRicardo\nRicky\nRoberto\nCurtis\nJoel\nMicheal\nAlan\nFrederick\nKyle\nNathan\nRonnie\nTerry\nWesley\nHector\nJay\nEddie\nRay\nAlexander\nAllen\nBill\nClinton\nAntonio\nJaime\nJim\nLeroy\nMarco\nNicholas\nShannon\nTyrone\nAndy\nArnold\nCory\nDon\nErik\nFred\nHarold\nMarvin\nNorman\nOscar\nRudy\nAngel\nDuane\nGreg\nMiguel\nTom\nAlberto\nBarry\nChristian\nLeon\nRick\nAlejandro\nDelbert\nGuy\nPete\nRoland\nWade\nWarren\nDarrin\nLouis\nSergio\nBen\nClint\nCody\nJavier\nKarl\nNeil\nTheodore\nByron\nClifford\nHarry\nJoey\nRyan\nArturo\nBrad\nCasey\nCorey\nDan\nDustin\nEarl\nFrancis\nGarrett\nGlen\nJamie\nJared\nJorge\nKurt\nLoren\nLyle\nTed\nTracy\nTrevor\nAdrian\nDerrick\nErnesto\nErnie\nEugene\nGeoffrey\nGrant\nJulian\nLeslie\nLonnie\nMarcos\nMelvin\nNathaniel\nRodolfo\nAbel\nAlvin\nCalvin\nDwayne\nEdgar\nGerardo\nHerbert\nJoshua\nLorenzo\nMathew\nPedro\nRoman\nStanley\nTim\nAlfredo\nDamon\nDarin\nDonovan\nEnrique\nFranklin\nFreddie\nHoward\nJerome\nJimmie\nJulio\nKent\nKirk\nAndre\nBret\nDarryl\nDwight\nFredrick\nJody\nLeo\nRafael\nShaun\nToby\nVirgil\nAndres\nBenny\nBrady\nDominic\nEdwin\nFelix\nFloyd\nFrankie\nGordon\nGuillermo\nIsaac\nJessie\nLeland\nLewis\nNick\nReginald\nSpencer\nTomas\nTrent\nCesar\nChester\nClayton\nDaryl\nDevin\nDonnie\nEduardo\nGilberto\nHeath\nIan\nJefferson\nLouie\nMax\nMyron\nOmar\nPerry\nRobin\nRusty\nSalvador\nSterling\nVernon\nAdolfo\nAlfonso\nAlonzo\nBryon\nCharlie\nChuck\nDallas\nDave\nIvan\nJerald\nKenny\nMatt\nNeal\nPreston\nReynaldo\nSammy\nWillie\nClarence\nClay\nDamian\nDarwin\nDino\nDoyle\nEmerson\nEthan\nEverett\nJacob\nJarrod\nJayson\nLeonardo\nMarty\nMickey\nMilton\nMitchell\nMorgan\nOrlando\nRamiro\nReed\nRon\nRudolph\nSam\nSantiago\nSonny\nStacey\nVicente\nWillard\nXavier\nAllan\nAugustine\nBernardo\nBlaine\nBryant\nCameron\nClark\nClifton\nClyde\nDana\nDirk\nEdison\nEldon\nEsteban\nGustavo\nHerman\nIgnacio\nIsmael\nJess\nKen\nKerry\nLeander\nLenny\nLloyd\nLynn\nMalcolm\nNoel\nNorberto\nPablo\nQuentin\nRoss\nTerrance\nTy\nTyler\nWendell\nAdan\nAnderson\nAntony\nBenito\nBlake\nBoyd\nBryce\nCary\nCecil\nClaude\nCornelius\nDarien\nDenny\nDevon\nDusty\nEmmett\nErich\nErick\nFidel\nGene\nGuadalupe\nHumberto\nIra\nIsrael\nJackie\nJeffry\nJohnnie\nJulius\nKelvin\nLester\nLucas\nMarlin\nMarlon\nMarshall\nMason\nNoah\nReuben\nRogelio\nRoyce\nScot\nStewart\nTeddy\nTerrence\nTrenton\nVal\nVince\nMichael\nDavid\nJohn\nRobert\nJames\nChristopher\nJason\nRichard\nWilliam\nBrian\nDaniel\nSteven\nScott\nMark\nEric\nMatthew\nKevin\nThomas\nPaul\nJeffrey\nJoseph\nTimothy\nAnthony\nCharles\nRonald\nShawn\nJose\nEdward\nAndrew\nSean\nKenneth\nStephen\nGregory\nGary\nTodd\nDonald\nChad\nGeorge\nAaron\nPatrick\nRaymond\nManuel\nFrank\nBryan\nJonathan\nTroy\nJeremy\nMartin\nJoe\nLarry\nJerry\nKeith\nCarlos\nRyan\nChris\nJuan\nShane\nJustin\nPeter\nAdam\nBrandon\nCraig\nGabriel\nDouglas\nSamuel\nTravis\nJesus\nJoshua\nVictor\nAlbert\nBrent\nFrancisco\nJohnny\nTony\nJeffery\nDerek\nArthur\nMario\nRandy\nJimmy\nLance\nBenjamin\nDanny\nJesse\nJoel\nMarc\nVincent\nBradley\nGilbert\nPhillip\nCarl\nDennis\nRene\nLawrence\nNathan\nRussell\nSteve\nHenry\nDarrell\nJon\nMike\nRamon\nRuben\nBrett\nMiguel\nBilly\nRicky\nLuis\nRodney\nDarren\nErnest\nRoy\nWayne\nAlex\nTerry\nAlan\nBobby\nClinton\nAntonio\nMarcus\nRicardo\nRalph\nJack\nFernando\nGerald\nRaul\nRoberto\nRonnie\nDale\nJay\nKelly\nLeonard\nOscar\nRandall\nRay\nDustin\nPhilip\nBrad\nChristian\nErik\nErnesto\nAlejandro\nAlexander\nArturo\nHarold\nLee\nMarco\nNicholas\nCurtis\nEddie\nMicheal\nTommy\nAngel\nGlen\nJeff\nKyle\nTrevor\nWalter\nWarren\nAdrian\nAlfred\nAllen\nArmando\nFred\nGreg\nJaime\nJamie\nShannon\nTheodore\nDon\nFrederick\nGlenn\nJavier\nLloyd\nNorman\nCasey\nDan\nSergio\nDuane\nLouis\nNathaniel\nRoger\nWade\nCorey\nGeoffrey\nIan\nJim\nLorenzo\nMarcos\nRudy\nVernon\nBarry\nByron\nCalvin\nClint\nDamon\nFrankie\nHector\nJerome\nJorge\nJulian\nKent\nLoren\nTim\nTyrone\nWesley\nEduardo\nFranklin\nJared\nMatt\nRoman\nSalvador\nCory\nDelbert\nDerrick\nKirk\nMarvin\nMelvin\nRick\nAndy\nArnold\nBill\nDarryl\nDaryl\nDwayne\nEnrique\nJody\nRafael\nToby\nBruce\nClifford\nDean\nEarl\nEugene\nFreddie\nGene\nGuy\nIsaac\nLonnie\nMathew\nPedro\nShad\nCody\nDarrin\nDominic\nDwight\nErick\nEverett\nFelix\nGarrett\nHarry\nHoward\nJacob\nLeo\nLeroy\nLester\nNeil\nRoland\nShaun\nTom\nTracy\nTyler\nVirgil\nEmerson\nGerardo\nLeon\nNoah\nNoel\nTed\nAlfredo\nAlvin\nAndre\nAugustine\nBret\nClayton\nDarin\nEmmett\nHerbert\nJayson\nJoey\nMitchell\nOrlando\nPete\nReuben\nReynaldo\nRodolfo\nSammy\nStanley\nTimmy\nWallace\nAlberto\nAlfonso\nBob\nCesar\nDonnie\nFelipe\nFrancis\nIgnacio\nJackson\nJessie\nJoaquin\nJohnathan\nJulio\nKarl\nMarty\nPablo\nScot\nScotty\nSpencer\nTrent\nWillie\nZachary\nAlonzo\nBernard\nBradford\nBryon\nChance\nClarence\nClifton\nConrad\nDallas\nDane\nDevin\nDion\nDonovan\nErich\nErnie\nFloyd\nGrant\nGuadalupe\nIsmael\nIsrael\nIvan\nJake\nKurt\nMarlin\nMonte\nPerry\nSantiago\nSeth\nAbel\nBart\nBen\nBenny\nBert\nBillie\nBlaine\nBrady\nCecil\nDirk\nEdwin\nElias\nGuillermo\nHarrison\nHerman\nJefferson\nJimmie\nJohnnie\nKen\nKenny\nLewis\nMarlon\nMaurice\nPreston\nRandolph\nReginald\nRex\nRoss\nRudolph\nRusty\nSonny\nSterling\nStuart\nTrenton\nTy\nTyson\nVicente\nWaylon\nAdolfo\nAlton\nAndres\nBeau\nBennie\nCameron\nCarter\nChadwick\nDarrel\nDoug\nEmilio\nEsteban\nEvan\nFabian\nGarry\nGavin\nIra\nJess\nKerry\nKristopher\nLeslie\nLynn\nMax\nNick\nQuentin\nRob\nRobby\nRobin\nRocky\nRojelio\nSherman\nStephan\nStevie\nStewart\nTerrence\nWillard\nAmos\nAustin\nBenito\nBlake\nCharlie\nCurt\nDamian\nDomingo\nEdwardo\nEmery\nErin\nEstevan\nFreddy\nFredrick\nGordon\nGrady\nHarvey\nHeath\nHumberto\nIrvin\nJarrod\nJermaine\nJordan\nKristian\nLeander\nLucas\nLuke\nMarion\nMyron\nOmar\nRobbie\nRogelio\nShon\nSimon\nStacy\nTerrance\nTomas\nTruman\nWilfred\nXavier\nMichael\nChristopher\nDavid\nRobert\nJames\nJason\nJohn\nBrian\nWilliam\nDaniel\nRichard\nSteven\nMark\nScott\nMatthew\nEric\nJoseph\nThomas\nJeffrey\nAnthony\nKevin\nPaul\nJose\nTimothy\nCharles\nChad\nShawn\nSean\nAndrew\nGregory\nEdward\nKenneth\nAaron\nPatrick\nStephen\nJustin\nRonald\nFrank\nGary\nBryan\nRyan\nTravis\nJuan\nDonald\nFrancisco\nJesus\nBrandon\nGeorge\nJeremy\nJerry\nRaymond\nManuel\nGabriel\nJonathan\nCarlos\nTroy\nTodd\nJesse\nDouglas\nJoshua\nLarry\nJoe\nBenjamin\nAdam\nDennis\nKeith\nSamuel\nVictor\nAlbert\nJohnny\nAntonio\nDanny\nShane\nCraig\nLuis\nPhillip\nPeter\nMario\nChris\nMartin\nRandy\nGilbert\nJeffery\nRicardo\nRuben\nNathan\nRene\nDarrell\nJon\nRamon\nTony\nVincent\nHector\nLance\nBrett\nRoger\nTerry\nOscar\nWayne\nArthur\nBilly\nJack\nJimmy\nRussell\nAdrian\nCarl\nAlexander\nMarc\nRoy\nShannon\nBradley\nBrent\nDarren\nRaul\nTommy\nBobby\nErnest\nJacob\nDerek\nErik\nKelly\nMiguel\nRodney\nFernando\nAlejandro\nAngel\nCory\nDuane\nDustin\nJoel\nMike\nNathaniel\nPhilip\nKyle\nLouis\nChristian\nDean\nErnesto\nNicholas\nRandall\nAlfred\nEddie\nJay\nMarcus\nRoman\nRudy\nWalter\nAlan\nAlex\nCurtis\nEnrique\nFrederick\nLeonard\nArmando\nCasey\nClinton\nLee\nRicky\nRoberto\nBruce\nDamon\nHenry\nJamie\nLawrence\nMicheal\nArturo\nEugene\nGerald\nJavier\nMarco\nRalph\nSteve\nWesley\nAllen\nGreg\nJaime\nTracy\nVernon\nDale\nFred\nJared\nKarl\nSergio\nTheodore\nVirgil\nBrad\nCalvin\nDominic\nFrankie\nMarvin\nPedro\nRay\nArnold\nBen\nEduardo\nHeath\nIvan\nJorge\nRonnie\nClayton\nClifford\nClint\nGlen\nGlenn\nCorey\nJeff\nKirk\nLorenzo\nMelvin\nSeth\nShaun\nWade\nAlberto\nAndy\nBret\nByron\nCesar\nJulian\nLeroy\nRafael\nTrent\nTyler\nBarry\nCody\nDan\nDelbert\nGene\nGeoffrey\nGerardo\nJody\nLeon\nMarcos\nNeil\nPete\nStanley\nAlfonso\nAlfredo\nAndre\nDaryl\nDon\nDwayne\nKristopher\nLeslie\nLonnie\nLoren\nOrlando\nSimon\nTyrone\nWarren\nCharlie\nEarl\nFredrick\nGregg\nGuy\nHarold\nHoward\nJerome\nJessie\nJonathon\nKent\nMitchell\nPreston\nRudolph\nTim\nCedric\nDerrick\nDylan\nEvan\nFrancis\nHerman\nIan\nIsrael\nLeo\nMax\nMyron\nNorman\nOmar\nRick\nRoland\nRon\nTed\nTerrence\nZachary\nAlvin\nAndres\nChester\nClarence\nClyde\nDarin\nDewayne\nDonnie\nDonovan\nErvin\nFelix\nGarrett\nHarvey\nIsaac\nJayson\nJim\nJoey\nLeander\nMathew\nScotty\nToby\nTrevor\nBenson\nBradford\nBrady\nBryant\nBryce\nCameron\nDamian\nFelipe\nFreddie\nHarry\nJeremiah\nJimmie\nRoderick\nSonny\nSpencer\nTerrance\nTom\nTomas\nVicente\nAbelardo\nAdolfo\nAllan\nBernardo\nBert\nBill\nBlake\nConrad\nCruz\nDevin\nDwight\nEdwardo\nEdwin\nErick\nErnie\nEverett\nFloyd\nGuadalupe\nGustavo\nHarrison\nIsmael\nJackie\nJefferson\nJulio\nLamont\nLuke\nManny\nMonte\nMorgan\nNeal\nNoah\nRodolfo\nSam\nSammy\nSaul\nTy\nVance\nWendell\nWyatt\nAnderson\nBeau\nBenny\nBryon\nCecil\nClaudio\nDana\nDino\nDion\nDoug\nEdgar\nEldon\nEli\nElroy\nEsteban\nEthan\nFreddy\nGenaro\nGuillermo\nJohnnie\nLester\nLincoln\nLloyd\nMarlon\nMerlin\nNick\nNoel\nPablo\nReginald\nReuben\nRex\nRob\nSalvador\nSantiago\nShon\nStuart\nWillie\nWilson\nAugustine\nAurelio\nChance\nCole\nDallas\nElias\nElmer\nErwin\nEstevan\nFabian\nFaron\nFranklin\nGarry\nGordon\nGrady\nGrant\nHerbert\nJake\nJarvis\nJohnathan\nKee\nKurt\nLamar\nLeland\nLionel\nLynn\nMarshall\nMicah\nMilton\nMonty\nMorris\nNoe\nNolan\nRamiro\nRodrigo\nRogelio\nRosendo\nRudolfo\nSantos\nStacy\nThaddeus\nWallace\nWill\nXavier\nMichael\nChristopher\nDavid\nJason\nRobert\nJames\nJohn\nDaniel\nBrian\nRichard\nWilliam\nJoseph\nMatthew\nEric\nScott\nSteven\nMark\nAnthony\nThomas\nKevin\nJose\nAaron\nPaul\nTimothy\nJeffrey\nCharles\nShawn\nAdam\nAndrew\nRyan\nJustin\nGregory\nJoshua\nBrandon\nJonathan\nSean\nKenneth\nJesus\nChad\nJeremy\nEdward\nRonald\nStephen\nBryan\nFrank\nCarlos\nManuel\nDonald\nPatrick\nTravis\nBenjamin\nFrancisco\nJuan\nShane\nKeith\nGary\nGabriel\nGeorge\nTroy\nNathan\nRaymond\nTodd\nVictor\nLarry\nJerry\nJesse\nSamuel\nCraig\nMartin\nPeter\nRandy\nDanny\nDennis\nJoe\nJohnny\nPhillip\nBrent\nMario\nJoel\nTony\nDouglas\nLuis\nRussell\nMarcus\nRuben\nAlbert\nArthur\nAntonio\nArmando\nRoberto\nWayne\nHector\nRoy\nErnest\nGilbert\nJavier\nMiguel\nPhilip\nJacob\nLance\nRamon\nAdrian\nJeffery\nTerry\nAngel\nBradley\nBrett\nJaime\nDarren\nLeonard\nNicholas\nRene\nAlexander\nChris\nDamon\nEddie\nJon\nOscar\nRonnie\nClinton\nJorge\nKyle\nRandall\nRicardo\nTommy\nHenry\nJared\nJimmy\nNathaniel\nSteve\nVincent\nCarl\nErik\nGerald\nMarc\nAlejandro\nDerek\nEugene\nFernando\nRoger\nSergio\nCurtis\nJack\nKelly\nRaul\nBobby\nDarrell\nWesley\nAlan\nAlex\nDale\nDustin\nMarco\nBilly\nRodney\nZachary\nAlfred\nChristian\nHarold\nJamie\nMarvin\nRudy\nAlfredo\nLee\nMelvin\nRay\nAndy\nLawrence\nMike\nWalter\nHoward\nJay\nNeil\nSalvador\nTyrone\nAlberto\nAllen\nAlvin\nCalvin\nDan\nDean\nFrederick\nKirk\nKristopher\nLouis\nOrlando\nRafael\nArnold\nBrad\nClint\nDelbert\nDuane\nJoey\nMicheal\nShannon\nCody\nCory\nFelix\nFred\nKent\nLonnie\nShaun\nTracy\nArturo\nBruce\nCasey\nClifford\nDamian\nDaryl\nEduardo\nEnrique\nErnesto\nGlenn\nIan\nJessie\nLeroy\nTrevor\nAlfonso\nFrankie\nFreddie\nGreg\nHeath\nIsaac\nJayson\nJeremiah\nLorenzo\nRalph\nRicky\nSeth\nVernon\nVirgil\nWade\nWarren\nClayton\nDerrick\nDonovan\nEarl\nElias\nGuillermo\nHarry\nLoren\nMarcos\nRoland\nToby\nTyler\nBill\nBoyd\nCesar\nFelipe\nGordon\nJarrod\nMarty\nTheodore\nBrady\nCameron\nDwayne\nGustavo\nIvan\nJerome\nJim\nJosh\nJulian\nKurt\nLeon\nPedro\nRoman\nSpencer\nTerrance\nTyson\nBarry\nBernard\nBret\nColby\nCorey\nDarin\nDarrin\nFranklin\nGeoffrey\nGerardo\nJefferson\nJody\nMathew\nTom\nWillie\nXavier\nAbel\nAllan\nByron\nDallas\nEdwin\nEli\nEmilio\nErick\nErnie\nGrant\nGuy\nHerman\nJohnathan\nLeander\nLeland\nPete\nPreston\nRodolfo\nUnknown\nAndre\nAndres\nAugustine\nBen\nBryon\nClarence\nColin\nDana\nDion\nEmmett\nEvan\nEverett\nGarrett\nGene\nJeff\nKarl\nMarshall\nMatt\nMax\nMilton\nNick\nNorman\nOmar\nPablo\nRandolph\nRudolph\nSantiago\nTed\nTomas\nBart\nBob\nBrendan\nBryant\nChester\nEdwardo\nEmerson\nGlen\nHarrison\nHerbert\nIgnacio\nJackson\nJarvis\nJoaquin\nJulio\nLewis\nLloyd\nMalcolm\nMaurice\nMitchell\nNelson\nOliver\nQuincy\nRex\nReynaldo\nSam\nSherwin\nSimon\nStacy\nStanley\nStuart\nTy\nZane\nAdolfo\nBenny\nBrenton\nBryce\nBuddy\nCruz\nDamien\nDarryl\nDewayne\nDon\nDwight\nGuadalupe\nHeriberto\nJonathon\nJulius\nKris\nLeslie\nLevi\nLouie\nLuke\nLuther\nLynn\nMarlon\nMicah\nOwen\nReginald\nRocky\nRogelio\nSantos\nScotty\nTerence\nTim\nTrent\nVicente\nWaylon\nAl\nAmbrose\nAron\nBenson\nBobbie\nBrain\nBranden\nClay\nConrad\nDaren\nDonnie\nDoug\nDylan\nEdgar\nEfrain\nEfren\nElmer\nElton\nErin\nErvin\nFloyd\nForrest\nFreddy\nGarrison\nHarvey\nHubert\nHumberto\nIsmael\nIsrael\nJackie\nJake\nJarrett\nJasper\nJed\nJerald\nJeromy\nJimmie\nJonah\nJonas\nJordan\nKenny\nKeven\nLeo\nMonty\nMorgan\nNeal\nNoel\nOctavio\nPat\nPercy\nPerry\nReed\nReuben\nRick\nRosario\nRoss\nRussel\nSammy\nShad\nSheldon\nShon\nSonny\nSterling\nTeddy\nTimmy\nTrenton\nVance\nWilson\nMichael\nJason\nChristopher\nDavid\nRobert\nJames\nJohn\nBrian\nDaniel\nMatthew\nRichard\nWilliam\nJoseph\nEric\nSteven\nScott\nMark\nJeffrey\nJoshua\nJose\nAaron\nThomas\nPaul\nRyan\nJeremy\nAnthony\nAdam\nJustin\nKevin\nTimothy\nCharles\nShawn\nAndrew\nChad\nSean\nKenneth\nBrandon\nBenjamin\nStephen\nJonathan\nDonald\nJuan\nCarlos\nJesus\nManuel\nGregory\nPatrick\nGabriel\nBryan\nTravis\nGeorge\nNathan\nGary\nRaymond\nFrancisco\nEdward\nRonald\nShane\nTodd\nFrank\nJesse\nSamuel\nJacob\nDouglas\nAntonio\nJoe\nMario\nKeith\nMartin\nCraig\nTroy\nLuis\nRuben\nVictor\nPeter\nLarry\nJohnny\nPhillip\nArthur\nRandy\nNathaniel\nRicardo\nRoberto\nDennis\nJerry\nMiguel\nRamon\nBobby\nBradley\nArmando\nAlexander\nJared\nGilbert\nJamie\nRoy\nAdrian\nJeffery\nJorge\nTerry\nDanny\nRaul\nTony\nAlex\nDustin\nMarcus\nRussell\nLance\nVincent\nClinton\nDerek\nFernando\nAngel\nChris\nChristian\nDarren\nHenry\nRene\nAlbert\nBilly\nDarrell\nJimmy\nKelly\nLee\nBrett\nErnest\nJack\nKyle\nMarc\nSteve\nWayne\nAlejandro\nJoel\nMicheal\nNicholas\nPhilip\nRoger\nRudy\nSergio\nWalter\nDale\nIan\nJon\nAllen\nCasey\nJavier\nBrad\nJaime\nTommy\nHector\nLouis\nMarvin\nOscar\nAlberto\nBrent\nErik\nGerald\nCarl\nOrlando\nPedro\nRodney\nDuane\nFelix\nLawrence\nWesley\nClayton\nCorey\nDerrick\nEugene\nGuillermo\nHeath\nKristopher\nLeon\nRonnie\nCory\nEduardo\nEnrique\nHarold\nMarco\nMike\nShannon\nEddie\nErnesto\nJay\nJulio\nRalph\nRoman\nTyler\nArturo\nCody\nDamon\nFrederick\nLeonard\nLoren\nOmar\nRafael\nRay\nRicky\nWade\nAlfred\nClint\nCurtis\nIsaac\nJarrod\nMarcos\nZachary\nAbel\nAndres\nGuy\nJeremiah\nJerome\nMitchell\nRandall\nSeth\nClifford\nDarin\nDelbert\nDonovan\nJeff\nKent\nNorman\nSpencer\nToby\nAlan\nAlfonso\nArnold\nBenny\nByron\nCalvin\nCesar\nEsteban\nJake\nLorenzo\nRoland\nAlfredo\nAlvin\nCameron\nDominic\nEarl\nGeoffrey\nGlenn\nJessie\nJim\nJulian\nKirk\nPete\nTrevor\nTyrone\nTyson\nXavier\nAndy\nBruce\nDean\nErick\nFloyd\nFred\nGerardo\nGlen\nIvan\nJarrett\nJoaquin\nNeil\nRodolfo\nSalvador\nTheodore\nWillie\nBen\nDewayne\nElton\nGilberto\nGuadalupe\nHoward\nJosh\nKenny\nTed\nVernon\nAndre\nDamian\nFabian\nFelipe\nGarrett\nHerbert\nJoey\nKurt\nLeland\nLeroy\nLeslie\nLonnie\nLucas\nPablo\nReuben\nSam\nShaun\nTracy\nTrent\nBill\nFranklin\nGordon\nGreg\nHerman\nIgnacio\nJayson\nJohnathan\nKarl\nMelvin\nNeal\nReginald\nReynaldo\nRick\nRolando\nSantiago\nTim\nTom\nVicente\nWarren\nAustin\nBrady\nBryce\nClarence\nColby\nDallas\nDwayne\nEdwin\nElias\nErin\nEthan\nFederico\nIsmael\nJody\nKerry\nLester\nMarlon\nMarty\nMathew\nRogelio\nSonny\nStephan\nStuart\nAbraham\nBart\nBlake\nBryon\nChance\nDamien\nDamion\nDarryl\nDaryl\nDon\nDwight\nFrankie\nGene\nGrant\nHarrison\nHarry\nJerrod\nJess\nJonathon\nJordan\nKory\nLionel\nLloyd\nLyle\nMarshall\nMaurice\nMax\nMicah\nRex\nRobin\nSammy\nShad\nSheldon\nSimon\nStewart\nTerrance\nAdolfo\nAugustine\nBarry\nCaleb\nChester\nClay\nDan\nDiego\nDominick\nDusty\nEfren\nEli\nEmery\nFreddie\nHeriberto\nIsrael\nJerald\nJerrold\nJohnnie\nLamar\nLeander\nLeo\nLeonardo\nLewis\nMalcolm\nNoah\nNoe\nNoel\nPreston\nRaymundo\nReggie\nRon\nRoss\nSaul\nSky\nStefan\nWilbert\nWill\nAdan\nAllan\nArnoldo\nAshley\nBenito\nBlair\nBob\nBranden\nBrandt\nBruno\nDarwin\nDevon\nErnie\nGerman\nGonzalo\nIssac\nJarod\nJean\nJefferson\nJeramy\nJimmie\nJulius\nKim\nLeif\nLemuel\nLevi\nLouie\nLowell\nMauricio\nMorgan\nMorris\nMurphy\nNick\nOliver\nOwen\nQuentin\nRaphael\nRigoberto\nRoyce\nRueben\nSamson\nSantos\nStacy\nStanley\nTerence\nTerrence\nTomas\nTy\nVirgil\nWallace\nWyatt\nMichael\nJason\nDavid\nChristopher\nRobert\nDaniel\nJohn\nJames\nBrian\nMatthew\nRichard\nWilliam\nJoseph\nSteven\nEric\nScott\nAaron\nJeremy\nMark\nRyan\nJoshua\nAnthony\nJose\nJeffrey\nThomas\nKevin\nPaul\nJustin\nAndrew\nTimothy\nCharles\nJonathan\nShawn\nKenneth\nAdam\nBenjamin\nBrandon\nChad\nBryan\nJuan\nSean\nGabriel\nNathan\nTravis\nStephen\nGregory\nJesus\nManuel\nCarlos\nEdward\nFrancisco\nFrank\nJesse\nGeorge\nRonald\nGary\nJacob\nPatrick\nTodd\nRaymond\nSamuel\nDonald\nMartin\nShane\nMario\nJoe\nPhillip\nVictor\nDouglas\nBradley\nDennis\nGilbert\nJerry\nLuis\nPeter\nAlbert\nMiguel\nDanny\nRuben\nTroy\nArmando\nKeith\nLarry\nCraig\nAntonio\nJohnny\nJared\nRoy\nMarc\nRicardo\nRoberto\nRussell\nTony\nMarcus\nPhilip\nDerek\nDustin\nJimmy\nCarl\nAdrian\nBrett\nCasey\nErik\nFernando\nOscar\nRamon\nBrent\nHenry\nJamie\nJavier\nJoel\nJorge\nRaul\nBilly\nJaime\nJeffery\nAlan\nDarrell\nVincent\nBobby\nHector\nRandall\nSeth\nTerry\nTommy\nCameron\nChris\nErnest\nKyle\nRoger\nArthur\nLawrence\nMarcos\nRandy\nCorey\nCurtis\nEnrique\nJay\nMarco\nRalph\nRicky\nRudy\nEduardo\nGerald\nRafael\nAlejandro\nClinton\nDwayne\nEugene\nIsaac\nNathaniel\nRene\nWayne\nAllen\nEddie\nMicheal\nSergio\nIan\nJack\nKristopher\nNicholas\nAlexander\nChristian\nCody\nDamian\nGerardo\nLouis\nOrlando\nTyler\nWesley\nZachary\nBruce\nCory\nDamon\nJon\nKelly\nLeonard\nAlex\nErnesto\nLee\nRay\nAlfred\nAndres\nBrad\nDarren\nDonovan\nHarold\nHeath\nTrevor\nTyson\nAndy\nAngel\nDuane\nJerome\nPedro\nSpencer\nTyrone\nDana\nDerrick\nGeoffrey\nGilberto\nJayson\nLeroy\nLorenzo\nRonnie\nShannon\nSteve\nWade\nCesar\nClifford\nClint\nFrederick\nNeil\nRodney\nAlfredo\nAlvin\nFrankie\nGarrett\nJarrod\nJeremiah\nJessie\nJulio\nToby\nAlfonso\nArturo\nByron\nDominic\nHarry\nIvan\nKarl\nLeland\nMicah\nRodolfo\nRoman\nWarren\nEsteban\nJulian\nLewis\nLucas\nMax\nNick\nSalvador\nTrent\nWalter\nXavier\nAlberto\nAndre\nArnold\nCharlie\nClayton\nDarrin\nDean\nJim\nJimmie\nJohnathan\nLance\nMarvin\nMitchell\nAbraham\nCalvin\nFrancis\nFred\nKurt\nLeo\nLoren\nMason\nMelvin\nMoses\nNorman\nRoland\nRoss\nTheodore\nBlake\nBrady\nBret\nBryon\nDale\nDarin\nEthan\nEvan\nFelipe\nHerbert\nIsrael\nJefferson\nMathew\nRocky\nSimon\nTed\nTom\nVernon\nAbel\nBarry\nBill\nEarl\nFabian\nFelix\nFranklin\nGrant\nGuadalupe\nHerman\nHoward\nJeff\nKirk\nLeonardo\nMarty\nMaurice\nMike\nNelson\nOmar\nPete\nRick\nRogelio\nSantiago\nVirgil\nAdan\nAlton\nAustin\nBernardo\nBrendon\nDallas\nDevin\nDon\nEdgar\nErick\nGlenn\nGuillermo\nJoey\nJordan\nLevi\nMyron\nPablo\nRodrigo\nRusty\nShaun\nStanley\nStefan\nTomas\nVicente\nBert\nColby\nDan\nDavis\nDwight\nDylan\nEli\nElias\nFloyd\nForrest\nGuy\nHarrison\nJonathon\nLeon\nLeslie\nLloyd\nNoah\nNoel\nOliver\nPhilbert\nPreston\nReginald\nSammy\nStacy\nTerrance\nTy\nWillie\nAllan\nAlonzo\nBarrett\nBeau\nBen\nCaleb\nCarlo\nChance\nClifton\nColin\nDamien\nDaryl\nDelbert\nDusty\nEdwardo\nEdwin\nEmery\nErnie\nFredrick\nGordon\nGreg\nIsmael\nJody\nJosh\nLuke\nLyle\nMalcolm\nMarlon\nMonty\nPerry\nPhil\nQuincy\nQuinn\nReuben\nReynaldo\nRoderick\nSheldon\nTracy\nAnderson\nArchie\nBenny\nBernard\nBlaine\nBranden\nBronson\nBryce\nBuddy\nCecil\nClarence\nClay\nCornelius\nCoy\nCruz\nDamion\nDarryl\nDax\nDenny\nDewayne\nDonny\nDrew\nEdmund\nEfren\nElijah\nElton\nEmilio\nErin\nEverett\nFreddie\nGene\nGerman\nGregorio\nHarvey\nHugo\nJake\nJaron\nJeremey\nJerrod\nJosue\nKendall\nKerry\nKory\nLamar\nLester\nLionel\nLouie\nMorgan\nRaymundo\nRobin\nRolando\nRudolph\nSam\nSonny\nStacey\nStuart\nTad\nTheron\nMichael\nJason\nChristopher\nDavid\nRobert\nJames\nJohn\nDaniel\nBrian\nMatthew\nJoseph\nJeremy\nJoshua\nRyan\nWilliam\nRichard\nSteven\nEric\nJose\nAaron\nAnthony\nMark\nJeffrey\nKevin\nThomas\nBrandon\nAndrew\nScott\nPaul\nTimothy\nJustin\nBenjamin\nNathan\nGabriel\nCharles\nAdam\nShawn\nTravis\nJuan\nJacob\nJonathan\nStephen\nChad\nKenneth\nCarlos\nSean\nGregory\nBryan\nEdward\nManuel\nJesus\nJesse\nFrancisco\nJared\nRonald\nGeorge\nDonald\nRaymond\nSamuel\nDustin\nFrank\nPatrick\nShane\nKeith\nLuis\nJerry\nGary\nTodd\nMario\nVictor\nAdrian\nBradley\nDouglas\nAlejandro\nDerek\nJoe\nJoel\nMiguel\nPeter\nLarry\nTroy\nAlbert\nRuben\nRussell\nMartin\nAntonio\nRicardo\nHector\nAngel\nArthur\nBobby\nCraig\nTerry\nJon\nClinton\nJohnny\nRamon\nFernando\nGilbert\nNicholas\nZachary\nBilly\nCasey\nJeffery\nNathaniel\nDennis\nHenry\nRandy\nRoy\nJeremiah\nVincent\nSergio\nBrent\nJack\nKyle\nRaul\nRene\nErik\nJorge\nMarcus\nSeth\nTony\nCarl\nCorey\nJaime\nPhilip\nPhillip\nCameron\nDanny\nJavier\nWayne\nArmando\nIan\nLawrence\nMarc\nOrlando\nErnest\nJay\nTyler\nAlexander\nJimmy\nLeonard\nMicah\nRonnie\nCody\nOscar\nPedro\nWesley\nBrett\nErnesto\nHeath\nLouis\nRicky\nRoberto\nRoger\nRudy\nTrevor\nChris\nChristian\nCory\nDamon\nEugene\nMarvin\nToby\nAlberto\nAllen\nLee\nRafael\nRay\nDarrell\nGarrett\nKelly\nLoren\nMicheal\nOmar\nRandall\nAlex\nAndres\nCesar\nCurtis\nGerardo\nGlenn\nJamie\nPreston\nSalvador\nTommy\nTyrone\nWalter\nAndre\nAndy\nDale\nDarren\nDuane\nEddie\nEduardo\nGuillermo\nHarold\nJarrod\nLance\nLuke\nMarcos\nPablo\nShannon\nSpencer\nAlan\nAlfredo\nKristopher\nMarco\nRodney\nSteve\nBrad\nDominic\nJulio\nRalph\nTheodore\nAlfred\nBruce\nFrederick\nGeoffrey\nGerald\nIsaac\nIvan\nJayson\nJulian\nLorenzo\nLucas\nPete\nVernon\nWillie\nEvan\nGlen\nLonnie\nMitchell\nTy\nAlfonso\nByron\nClayton\nClint\nDamian\nDerrick\nDon\nJessie\nLevi\nMaurice\nReynaldo\nRodolfo\nTyson\nWade\nAbel\nBen\nErick\nErnie\nJerome\nLeland\nMike\nRoman\nSam\nSantiago\nAdan\nArturo\nColin\nDaryl\nFelix\nFred\nJohnathan\nKurt\nLeo\nLeroy\nOtis\nReuben\nRoderick\nTerrence\nAustin\nBarry\nBill\nDallas\nDarin\nEthan\nFrankie\nGilberto\nGuadalupe\nJoey\nJonathon\nLogan\nNeil\nPerry\nRick\nStuart\nVicente\nArnold\nCaleb\nCharlie\nClifford\nDelbert\nGraham\nGreg\nHans\nLeander\nMarshall\nMathew\nMyron\nNoah\nNorman\nPhilbert\nRandolph\nRogelio\nStacy\nTed\nTerrance\nWarren\nBernard\nBlaine\nCalvin\nCecil\nDevin\nDwayne\nElias\nEmerson\nEnrique\nEverett\nFederico\nFelipe\nFloyd\nFrancis\nFranklin\nHarry\nHerbert\nHoward\nJeff\nKarl\nKenny\nKent\nLeon\nLionel\nMax\nReed\nRobin\nRon\nRueben\nRusty\nTomas\nTrent\nVirgil\nXavier\nBeau\nBret\nBryce\nClarence\nClay\nDan\nDean\nDonovan\nElijah\nFabian\nGuy\nIgnacio\nIsrael\nJackson\nJermaine\nJody\nMelvin\nMorris\nNeal\nNoel\nRex\nSammy\nSheldon\nSimon\nStanley\nStewart\nAbraham\nAbram\nAdolfo\nAllan\nAugustine\nBlake\nCarson\nCoby\nConrad\nDamien\nDarrick\nDion\nDonnie\nEdgar\nEdwin\nEfrain\nElton\nEmilio\nFredrick\nGregg\nGustavo\nHugo\nIsmael\nJake\nJarrett\nJefferson\nJim\nJoaquin\nJosh\nKerry\nKirk\nKristian\nLeonardo\nLloyd\nNolan\nOctavio\nPhil\nQuincy\nReyes\nRory\nRoyce\nTobias\nTom\nAgustin\nAmos\nArron\nAurelio\nBenny\nBrice\nBryon\nChester\nCornelius\nDana\nDarrel\nDarrin\nDevon\nDewayne\nDonavan\nDoyle\nDwight\nEarl\nEldon\nEli\nElliott\nEsteban\nFransisco\nGarry\nGerman\nGrant\nHerman\nHumberto\nJarod\nJohnnie\nJordan\nJusten\nKris\nLewis\nLouie\nMalcolm\nMarlon\nMerle\nMorgan\nNathanael\nNelson\nNicolas\nRobby\nRocky\nRoland\nRosendo\nSterling\nWeston\nYsidro\nZachariah\nZane\nMichael\nJason\nChristopher\nDavid\nRobert\nJames\nDaniel\nJohn\nBrian\nMatthew\nJoshua\nRyan\nRichard\nJoseph\nJeremy\nEric\nWilliam\nAnthony\nMark\nSteven\nAaron\nKevin\nJustin\nJeffrey\nJose\nThomas\nBenjamin\nAndrew\nTimothy\nPaul\nScott\nJonathan\nAdam\nCharles\nNathan\nShawn\nTravis\nBrandon\nJacob\nJesse\nStephen\nKenneth\nGabriel\nChad\nCarlos\nPatrick\nFrancisco\nJuan\nBryan\nSean\nGregory\nJesus\nSamuel\nRaymond\nEdward\nFrank\nManuel\nJared\nLuis\nGary\nNicholas\nTodd\nBradley\nDonald\nGeorge\nShane\nRonald\nKeith\nPeter\nMario\nRuben\nAdrian\nDouglas\nIan\nDustin\nJerry\nKyle\nAntonio\nMartin\nVictor\nBrent\nAngel\nCraig\nNathaniel\nFernando\nJohnny\nLarry\nPhillip\nRamon\nAlbert\nJeremiah\nVincent\nCory\nCasey\nJorge\nMarcus\nRicardo\nRussell\nArmando\nErik\nAlexander\nDanny\nDerek\nDennis\nJoe\nRandy\nWesley\nGilbert\nRoy\nArthur\nHector\nJoel\nRoberto\nTerry\nErnest\nMiguel\nPhilip\nTony\nMarcos\nTroy\nChristian\nCody\nZachary\nAlejandro\nClinton\nCorey\nJeffery\nJimmy\nKristopher\nRalph\nBrett\nJay\nBobby\nMarco\nOscar\nAlex\nIsaac\nJavier\nRaul\nBilly\nLance\nRandall\nDarrell\nHenry\nLawrence\nNeil\nTyler\nArturo\nJulian\nMicheal\nOrlando\nRafael\nRicky\nBruce\nIvan\nJaime\nLeonard\nRene\nSpencer\nTrevor\nAllen\nCarl\nJack\nJarrod\nJon\nLee\nLouis\nMitchell\nOmar\nWayne\nJoey\nSeth\nTyrone\nBrad\nClayton\nCurtis\nDamon\nDuane\nJamie\nJerome\nRodney\nWalter\nAlan\nCesar\nDamian\nDerrick\nEddie\nErnesto\nGerald\nHeath\nMelvin\nPedro\nRudy\nSalvador\nSergio\nShaun\nAbel\nAlfred\nClint\nDominic\nGeoffrey\nMarc\nSteve\nTheodore\nAlberto\nChris\nDale\nRoman\nTyson\nCameron\nGarrett\nLevi\nPreston\nRonnie\nTomas\nDaryl\nDean\nEugene\nFrederick\nJayson\nMicah\nWade\nAndy\nBen\nDarren\nEduardo\nEvan\nKurt\nMathew\nRay\nTommy\nXavier\nAlfonso\nAlfredo\nDevin\nEdwin\nEsteban\nGlenn\nGuillermo\nLloyd\nLyle\nNicolas\nPablo\nRoger\nToby\nAlvin\nAndres\nBarry\nCalvin\nDwayne\nEnrique\nFranklin\nFreddie\nGerardo\nHarold\nJeff\nJulio\nKelly\nLeander\nLeon\nLuke\nTy\nEthan\nEverett\nHarry\nIsmael\nIsrael\nLucas\nRocky\nVernon\nAndre\nArnold\nBeau\nBenny\nBlake\nCaleb\nClifton\nDamien\nDon\nDylan\nGilberto\nJoaquin\nKirk\nLeland\nLeo\nLeroy\nLonnie\nLorenzo\nMax\nNelson\nPete\nSantiago\nStacy\nAngelo\nAustin\nClifford\nColin\nCruz\nDarryl\nDonovan\nElias\nFelipe\nFelix\nFrankie\nHerbert\nHoward\nJessie\nJohnathan\nKarl\nLoren\nMonty\nMorgan\nRhett\nRogelio\nTracy\nVirgil\nAbraham\nAugustine\nBryce\nDarin\nDelbert\nDion\nDwight\nEmerson\nFred\nGlen\nGordon\nGuadalupe\nIgnacio\nIsaiah\nJonathon\nJordan\nLogan\nMarvin\nMike\nMyron\nNoah\nNorman\nRandolph\nRick\nRodolfo\nRusty\nSheldon\nStanley\nVicente\nWarren\nWillie\nAdan\nAlvaro\nAmmon\nArnulfo\nByron\nChet\nClay\nColby\nDallas\nDewayne\nEarl\nEli\nElijah\nFrancis\nGreg\nHarvey\nJake\nJarvis\nJerrod\nMatt\nPerry\nRamiro\nRoland\nSaul\nSimon\nAlonzo\nBernardo\nBryon\nDarrick\nDave\nDonavon\nDusty\nFabian\nFloyd\nGene\nGrant\nHerman\nJim\nJimmie\nKristofer\nLandon\nLionel\nMaurice\nNeal\nNick\nNoel\nOliver\nOwen\nRaymundo\nReynaldo\nRickey\nRoderick\nSonny\nTanner\nTed\nTeddy\nTerrance\nTom\nTrent\nTrenton\nWaylon\nAllan\nAshley\nBenito\nBennie\nBernard\nBlaine\nBrock\nBrooks\nCarlton\nChadwick\nClarence\nCollin\nCourtney\nDan\nDonny\nElliot\nElmer\nElvis\nEmilio\nErick\nErvin\nFidel\nForrest\nFreddy\nGregg\nIra\nJackson\nJarom\nJefferson\nJeramy\nJermaine\nJess\nKenny\nKris\nMarshall\nMason\nMerlin\nMervin\nMickey\nQuentin\nRaphael\nReuben\nRex\nRobbie\nRoss\nRudolph\nSam\nSherman\nStephan\nStewart\nStuart\nTaylor\nTerence\nTerrell\nTory\nZachariah\nMichael\nChristopher\nJason\nDavid\nRobert\nJames\nMatthew\nDaniel\nBrian\nJohn\nJoseph\nJoshua\nRyan\nRichard\nJeremy\nWilliam\nSteven\nEric\nAnthony\nTimothy\nAaron\nAdam\nJustin\nJeffrey\nKevin\nAndrew\nMark\nJose\nNicholas\nThomas\nScott\nCharles\nBrandon\nBenjamin\nJonathan\nStephen\nPaul\nGabriel\nNathan\nJacob\nTravis\nPatrick\nShawn\nJuan\nChad\nCarlos\nJesse\nJesus\nKenneth\nFrancisco\nSamuel\nManuel\nGregory\nSean\nBryan\nEdward\nFrank\nMario\nShaun\nPhillip\nRonald\nRaymond\nGary\nTodd\nDonald\nJared\nKeith\nBradley\nJohnny\nLuis\nGeorge\nPeter\nRuben\nShane\nFernando\nAdrian\nJeremiah\nDouglas\nAntonio\nDustin\nTroy\nAlbert\nKyle\nVictor\nArmando\nLarry\nCasey\nRicardo\nDanny\nMartin\nMiguel\nArthur\nDennis\nAngel\nJoel\nNathaniel\nWesley\nZachary\nJaime\nJeffery\nPhilip\nRussell\nBrent\nMarcus\nRandy\nAlan\nCody\nErik\nJay\nCraig\nHector\nRamon\nRaul\nGilbert\nVincent\nAlejandro\nAlexander\nJoe\nOscar\nCory\nJon\nRoberto\nSeth\nRoger\nRoy\nErnest\nIan\nJavier\nKristopher\nAlex\nDerek\nMarc\nRudy\nTerry\nTyler\nIsaac\nJack\nAllen\nBilly\nCameron\nDominic\nJerry\nCarl\nChristian\nCurtis\nClinton\nHenry\nLawrence\nPedro\nBruce\nGerardo\nJimmy\nLee\nLuke\nMarco\nRafael\nRene\nBrett\nDarrell\nEddie\nErnesto\nJorge\nRandall\nRicky\nTyson\nAndres\nBobby\nDale\nFrederick\nSergio\nTony\nClint\nEugene\nGeoffrey\nGlenn\nLevi\nLouis\nRalph\nTommy\nAlfred\nDamien\nDamon\nDerrick\nEduardo\nIvan\nJayson\nLance\nMicheal\nNeil\nOrlando\nSpencer\nTrevor\nHeath\nJulian\nKelly\nLorenzo\nMathew\nRodney\nAlfonso\nAlfredo\nAndy\nChris\nCorey\nDamian\nDuane\nEthan\nJamie\nNoah\nRodolfo\nWayne\nAbel\nAbraham\nArturo\nCesar\nClayton\nDwayne\nFrankie\nJoey\nLeonard\nMarvin\nMitchell\nPablo\nTheodore\nWalter\nBarry\nClifford\nGarrett\nGerald\nLeon\nTyrone\nVernon\nAustin\nCalvin\nClifton\nElias\nEvan\nHarold\nJerome\nLonnie\nMarcos\nOmar\nDarren\nJarrod\nJohnathan\nJordan\nKent\nLucas\nMicah\nPreston\nRoland\nXavier\nBlake\nBryce\nBryon\nSalvador\nSteve\nStuart\nTerrance\nToby\nWade\nAlberto\nDevin\nEnrique\nErick\nFelipe\nFranklin\nGlen\nGordon\nIsmael\nJessie\nJoaquin\nJulio\nLogan\nRay\nRogelio\nRonnie\nTanner\nTrent\nAlvin\nBryant\nDarin\nDean\nDonovan\nFabian\nFelix\nFredrick\nGene\nGuillermo\nHoward\nJeff\nKristofer\nLeland\nLloyd\nMarshall\nMarty\nMike\nWarren\nAndre\nBrendan\nByron\nCharlie\nEdgar\nFrancis\nGilberto\nGuadalupe\nHarrison\nIra\nKarl\nKurt\nLeo\nLeroy\nMax\nPete\nReuben\nRoman\nRudolph\nTomas\nTy\nVicente\nVirgil\nBen\nBlaine\nDallas\nDwight\nDylan\nFederico\nGreg\nIsrael\nJosh\nKirk\nLoren\nLydell\nLyle\nMaurice\nNick\nNorman\nRick\nRocky\nRoss\nSimon\nSonny\nTerrence\nThaddeus\nWillis\nWyatt\nAlvaro\nAngelo\nBenny\nBernard\nBrad\nBret\nClarence\nColin\nCristobal\nDelbert\nDelvin\nDon\nEarl\nEdwin\nEfren\nFloyd\nGuy\nHarley\nJed\nJess\nJody\nJonathon\nKendrick\nLeslie\nMarlon\nMason\nMonty\nMorgan\nMyron\nNicolas\nReed\nReggie\nSheldon\nStewart\nTracy\nWillie\nAmos\nBenito\nBrendon\nDana\nDarryl\nDaryl\nDonnie\nElijah\nEsteban\nGrant\nIgnacio\nJackson\nJarrett\nJerrod\nJim\nJosiah\nKasey\nKris\nLeander\nLeonardo\nLewis\nMelvin\nNoel\nOliver\nRandolph\nRashad\nReginald\nRory\nSantos\nStanley\nSterling\nAldo\nAlton\nAric\nAugustine\nBeau\nBranden\nBrice\nCaleb\nCarlton\nCollin\nCourtney\nCruz\nDane\nDarian\nDarrin\nDavin\nDesmond\nDevon\nDewayne\nDino\nDominique\nDonavan\nDonny\nEliseo\nElroy\nElton\nErich\nEstevan\nFred\nFreddie\nGavin\nGenaro\nGustavo\nJake\nJarod\nJohnnie\nKory\nLandon\nLouie\nMalcolm\nMilo\nMilton\nMurphy\nNeal\nOwen\nRex\nRon\nSam\nSantiago\nShad\nShon\nStacey\nStacy\nStephan\nTaylor\nTed\nTheron\nTobias\nTrenton\nWaylon\nMichael\nChristopher\nJason\nDavid\nRobert\nJames\nJoshua\nMatthew\nDaniel\nJohn\nJoseph\nRyan\nBrian\nJustin\nJeremy\nRichard\nAaron\nWilliam\nSteven\nAndrew\nEric\nNicholas\nAnthony\nAdam\nJose\nThomas\nTimothy\nBrandon\nJeffrey\nScott\nJonathan\nMark\nBenjamin\nKevin\nPaul\nCharles\nTravis\nNathan\nGabriel\nJacob\nJesse\nStephen\nGregory\nJesus\nJuan\nPatrick\nManuel\nBryan\nSean\nChad\nFrancisco\nShawn\nCarlos\nEdward\nKenneth\nSamuel\nDustin\nMario\nJared\nErik\nZachary\nRaymond\nRonald\nPeter\nDonald\nFrank\nGeorge\nRuben\nGary\nShane\nKeith\nBrent\nPhillip\nKyle\nLuis\nShaun\nAdrian\nBradley\nTodd\nJerry\nCory\nJeremiah\nDouglas\nRicardo\nAntonio\nFernando\nNathaniel\nJoel\nVictor\nIan\nGilbert\nRandy\nAngel\nCasey\nAlexander\nArmando\nMiguel\nIsaac\nSeth\nJeffery\nJorge\nMartin\nCraig\nDanny\nJohnny\nRoberto\nArthur\nRamon\nBrett\nDerek\nHenry\nJon\nMarcus\nRussell\nJay\nPhilip\nJaime\nJoe\nRaul\nAlbert\nCody\nLarry\nCurtis\nBilly\nDennis\nAbraham\nAlejandro\nJarrod\nTrevor\nTroy\nWesley\nClinton\nJimmy\nPedro\nAlex\nEduardo\nGarrett\nJavier\nMicheal\nRene\nVincent\nWayne\nBobby\nCorey\nHector\nJulian\nLuke\nMarc\nMarco\nRicky\nAlberto\nCameron\nJack\nKristopher\nErnesto\nOscar\nRoy\nSergio\nTerry\nAlfredo\nCarl\nLouis\nTony\nArturo\nLawrence\nLevi\nTyler\nAndres\nEddie\nGuillermo\nRandall\nClayton\nDale\nDarren\nDominic\nGerardo\nLee\nLucas\nRoger\nAlan\nAustin\nErnest\nJamie\nRalph\nCesar\nEnrique\nJayson\nEvan\nNeil\nOmar\nDerrick\nIsrael\nLyle\nMarcos\nOrlando\nRoman\nTyrone\nAllen\nBrad\nBruce\nChristian\nClint\nMathew\nNoah\nPreston\nRay\nRudy\nClarence\nDallas\nDarrell\nDonovan\nLance\nNicolas\nRafael\nErick\nGuadalupe\nJoaquin\nRodney\nSpencer\nSteve\nAbel\nClifford\nDevin\nDuane\nEdgar\nGerald\nHeath\nIsmael\nIvan\nJessie\nJoey\nLorenzo\nClifton\nDelbert\nElias\nFelipe\nFrederick\nMorgan\nAlfonso\nAlfred\nAndre\nDean\nDon\nFabian\nIgnacio\nLonnie\nPablo\nRogelio\nRonnie\nTommy\nBeau\nBenny\nByron\nChris\nDamien\nDamon\nDylan\nEugene\nGeoffrey\nGilberto\nHarold\nJohnathan\nJonathon\nJordan\nLeon\nMicah\nMitchell\nRocky\nSammy\nTheodore\nWaylon\nXavier\nCaleb\nCalvin\nChester\nDwayne\nFredrick\nGordon\nJess\nJulio\nLeonard\nMarvin\nNick\nNoe\nReynaldo\nRodolfo\nSalvador\nSaul\nStanley\nStuart\nTanner\nAlvin\nAndy\nBrendan\nColin\nCourtney\nDewayne\nElijah\nGrant\nJosh\nKarl\nLeander\nLeroy\nLogan\nMike\nNoel\nSterling\nToby\nWalter\nBarry\nBret\nCharlie\nConrad\nDamian\nEli\nErnie\nFelix\nFrankie\nFranklin\nGlenn\nGuy\nHarley\nHoward\nJerome\nKelly\nKent\nLeland\nMaurice\nReginald\nRusty\nSam\nSantiago\nTerrance\nTrent\nVernon\nWade\nWarren\nArnold\nBen\nBlaine\nBlake\nCecil\nCollin\nDarryl\nDaryl\nEarl\nEthan\nFloyd\nFrancis\nGlen\nKendall\nMyron\nNathanael\nNelson\nRick\nRon\nSheldon\nTaylor\nTerrence\nTom\nTyson\nWillie\nAgustin\nAngelo\nAron\nAugustine\nBernard\nBryon\nBuck\nDonavan\nDrew\nEdmund\nFederico\nFred\nGene\nGustavo\nHarry\nJake\nJasper\nJedediah\nJermaine\nJonah\nKurt\nLeo\nLoren\nLouie\nMarshall\nMax\nNickolas\nOwen\nReuben\nRodrigo\nRory\nShannon\nTed\nTrenton\nTy\nVirgil\nAdan\nBrenden\nBryant\nBryce\nChase\nCole\nCruz\nDane\nDarin\nDave\nDesmond\nEdwardo\nEmerson\nEsteban\nEverett\nFreddie\nGregg\nHarrison\nHerbert\nJarod\nJasen\nJody\nKirk\nKris\nKristian\nLeonardo\nMelvin\nMerle\nMiles\nMoises\nMonty\nMoses\nNorman\nPerry\nPete\nRoderick\nRolando\nSantos\nSimon\nTerrell\nTomas\nTracy\nVicente\nWyatt\nAriel\nAshley\nBill\nBlas\nBrady\nBrant\nBuddy\nColby\nColton\nDarrin\nDominick\nDorian\nDwight\nEmilio\nEmmanuel\nGiovanni\nHerman\nHugo\nIsaiah\nJeff\nJefferson\nJerald\nJim\nJimmie\nJoesph\nLeslie\nLewis\nLisa\nMalcolm\nMarcelino\nNathanial\nNeal\nPhilbert\nQuincy\nRex\nRhett\nRian\nRoss\nStacy\nStewart\nTrinidad\nTye\nWill\nZachariah\nMichael\nChristopher\nDavid\nJason\nJoshua\nRobert\nDaniel\nJames\nMatthew\nJustin\nJoseph\nJohn\nRyan\nBrian\nEric\nWilliam\nRichard\nAnthony\nAdam\nAaron\nJeremy\nAndrew\nJonathan\nNicholas\nSteven\nTimothy\nBrandon\nThomas\nJeffrey\nKevin\nScott\nBenjamin\nMark\nJose\nJacob\nStephen\nCharles\nGabriel\nPaul\nTravis\nJesus\nJesse\nDustin\nNathan\nJuan\nPatrick\nEdward\nBryan\nFrancisco\nSean\nCarlos\nChad\nKenneth\nBradley\nLuis\nShawn\nGregory\nManuel\nAdrian\nGeorge\nMario\nJared\nFrank\nRonald\nRaymond\nRuben\nSamuel\nKyle\nVictor\nKeith\nDonald\nDerek\nErik\nJeremiah\nPhillip\nJoel\nLarry\nRicardo\nShane\nMiguel\nAntonio\nGary\nPeter\nZachary\nAngel\nJorge\nNathaniel\nRoberto\nBrett\nFernando\nBrent\nArmando\nMarcus\nIan\nJohnny\nShaun\nMarc\nSergio\nGilbert\nDennis\nDouglas\nMartin\nRamon\nAlejandro\nTyler\nAlexander\nClinton\nJerry\nOscar\nCasey\nCraig\nJaime\nTroy\nAlex\nHector\nHenry\nSeth\nAlbert\nCory\nJoe\nLuke\nCody\nCurtis\nJon\nTodd\nWesley\nJavier\nJeffery\nPedro\nPhilip\nDerrick\nRandy\nArthur\nJay\nLucas\nMarco\nRicky\nTony\nAlan\nCarl\nDanny\nEnrique\nIsaac\nMarcos\nRaul\nVincent\nJimmy\nLawrence\nOmar\nOrlando\nArturo\nBrad\nErnest\nJarrod\nTerry\nTrevor\nBilly\nErnesto\nEvan\nKristopher\nLee\nAndres\nJamie\nRafael\nRoy\nAustin\nChristian\nClint\nDylan\nGarrett\nJack\nRussell\nWayne\nDarren\nDominic\nIvan\nPreston\nAlberto\nCorey\nGerardo\nLouis\nMicheal\nRalph\nCameron\nEddie\nMathew\nMorgan\nRay\nRudy\nAllen\nClayton\nHeath\nJessie\nLance\nLevi\nRoman\nTommy\nWalter\nAlfred\nBobby\nBruce\nJerome\nRandall\nRene\nBeau\nByron\nFrederick\nGeoffrey\nJoey\nJonathon\nLeonard\nRodney\nGilberto\nLoren\nMicah\nMitchell\nAndre\nClifford\nDale\nJordan\nKelly\nTaylor\nDallas\nDarrell\nDuane\nEduardo\nNoah\nRonnie\nAbel\nAlfonso\nAlfredo\nBlake\nEugene\nFabian\nGerald\nGuillermo\nLorenzo\nNorman\nPablo\nSpencer\nAndy\nArnold\nBranden\nColin\nEsteban\nFrancis\nJosue\nJulian\nLyle\nNeil\nRoger\nRoss\nZachariah\nAugustine\nCesar\nChris\nElijah\nFelix\nJohnathan\nKurt\nSalvador\nTerrance\nTomas\nTy\nWarren\nWaylon\nBenny\nBryce\nEdwin\nGerman\nHarley\nIsrael\nJarred\nKirk\nNeal\nNicolas\nSheldon\nVernon\nAbraham\nAlonzo\nAngelo\nBrendan\nClifton\nDamien\nDon\nDonovan\nDrew\nEdgar\nElias\nFranklin\nGlen\nGordon\nGrant\nJake\nJayson\nJulio\nKenny\nLester\nMarvin\nMaurice\nPete\nRobin\nSteve\nTheodore\nTyson\nAlvin\nBarry\nBryon\nDamian\nDaryl\nDewayne\nFelipe\nGustavo\nKarl\nLeo\nLogan\nMelvin\nRamiro\nReginald\nReuben\nReynaldo\nRogelio\nTyrone\nBernardo\nBradford\nBrady\nBret\nCalvin\nCecil\nChance\nConrad\nCourtney\nDana\nDean\nEfrain\nErick\nFrankie\nJarrett\nJermaine\nKristofer\nLewis\nMarshall\nMyron\nOwen\nRodolfo\nRoland\nSantiago\nSimon\nTanner\nToby\nWillie\nXavier\nBrock\nCaleb\nDamon\nEdwardo\nEli\nErin\nEthan\nGlenn\nGreg\nGuadalupe\nHarold\nHarrison\nHerbert\nIsmael\nJoaquin\nLamar\nNelson\nOctavio\nRandolph\nRusty\nSterling\nStuart\nVicente\nAdan\nAldo\nAlexis\nBenito\nClay\nDevon\nDiego\nDonavan\nEldon\nElliott\nJody\nKurtis\nLandon\nLeander\nLeland\nLeon\nLeroy\nMarlon\nMax\nNick\nNoe\nReyes\nRick\nRocky\nRory\nWade\nAric\nAshley\nBen\nBlaine\nBo\nBryant\nBuck\nCarlton\nDamion\nDarin\nDarrick\nDomingo\nDwayne\nEarl\nEmilio\nFreddy\nHeriberto\nHumberto\nJackson\nJess\nJimmie\nJosef\nJosiah\nJulius\nKelsey\nKent\nLeonardo\nMacario\nMoses\nNickolas\nRaymundo\nRigoberto\nRufus\nSalvatore\nSantos\nSaul\nStanley\nTom\nWyatt\nZane\nAdrain\nAnson\nAvery\nBrooks\nCarlo\nChase\nChaz\nClaudio\nCole\nCristian\nDan\nDane\nDario\nDarrin\nDarryl\nDelbert\nDerick\nDevin\nDuston\nDusty\nEdgardo\nEhren\nElliot\nElmer\nErnie\nEstevan\nFiliberto\nFloyd\nFred\nGene\nGuy\nHarry\nHarvey\nIsaiah\nJamal\nJarod\nJohnathon\nJonas\nKendrick\nKris\nMason\nMike\nNathanael\nPerry\nReed\nReggie\nRex\nReymundo\nRickey\nRoderick\nRoyce\nSam\nTerrence\nTim\nTrent\nTrenton\nVirgil\nWillard\nMichael\nChristopher\nDavid\nJoshua\nMatthew\nDaniel\nJason\nRobert\nJohn\nJustin\nJames\nJoseph\nRyan\nBrian\nRichard\nAnthony\nJonathan\nAndrew\nBrandon\nWilliam\nAaron\nEric\nJeremy\nAdam\nSteven\nNicholas\nJose\nBenjamin\nJesse\nMark\nThomas\nTimothy\nPaul\nJeffrey\nScott\nJacob\nKevin\nNathan\nSean\nJesus\nTravis\nCharles\nStephen\nGabriel\nDustin\nJuan\nFrancisco\nKenneth\nPatrick\nEdward\nCarlos\nBryan\nManuel\nKyle\nChad\nGregory\nSamuel\nShawn\nLuis\nRaymond\nDerek\nJared\nNathaniel\nBradley\nMario\nMiguel\nDonald\nZachary\nAdrian\nAntonio\nFrank\nPeter\nFernando\nRicardo\nTyler\nGeorge\nAlexander\nArmando\nGary\nJoel\nJorge\nRuben\nIan\nPhillip\nCody\nKeith\nRonald\nDouglas\nJeremiah\nErik\nMartin\nShane\nMarcus\nRoberto\nSergio\nBrett\nJaime\nVictor\nSeth\nCasey\nJordan\nBrent\nTodd\nAngel\nCraig\nLevi\nShaun\nGilbert\nLucas\nOscar\nRamon\nRussell\nAlejandro\nChristian\nJon\nCameron\nClinton\nJerry\nMarco\nVincent\nHector\nLarry\nArthur\nDerrick\nRandy\nTony\nTrevor\nCory\nCurtis\nDanny\nAlberto\nDominic\nJeffery\nJoe\nMarcos\nNoah\nPhilip\nAlex\nJohnny\nRene\nJerome\nLuke\nTroy\nCarl\nIsaac\nJimmy\nAlbert\nClayton\nEvan\nGarrett\nGeoffrey\nLouis\nWesley\nDennis\nErnest\nJulio\nCesar\nJavier\nKristopher\nLee\nRaul\nBobby\nRandall\nWayne\nArturo\nCorey\nLawrence\nMarc\nRicky\nRudy\nAndres\nGerald\nJulian\nMathew\nMicheal\nRoy\nAlan\nColin\nIvan\nOrlando\nClifford\nHenry\nPedro\nTerry\nAustin\nEduardo\nJohnathan\nLogan\nTaylor\nBilly\nBeau\nDarren\nFrederick\nGerardo\nOmar\nSantiago\nClint\nErnesto\nJayson\nRodney\nSalvador\nAbraham\nAllen\nAndre\nBlake\nBranden\nBryce\nEnrique\nJarrod\nJay\nRodolfo\nTheodore\nTommy\nWalter\nAlfonso\nAlfred\nAlfredo\nBrad\nEsteban\nGuillermo\nJamie\nRoger\nSpencer\nAbel\nDonovan\nJack\nJonathon\nLeonard\nLorenzo\nLyle\nSteve\nTyrone\nBruce\nCaleb\nDarrell\nEddie\nElias\nMicah\nRafael\nRalph\nRay\nCalvin\nEthan\nFabian\nGlen\nJessie\nJoey\nLoren\nMarshall\nMitchell\nMorgan\nRoman\nRonnie\nTerrance\nXavier\nChris\nDale\nDamien\nDevin\nDrew\nFreddie\nGilberto\nGrant\nIsrael\nNicolas\nPablo\nPreston\nBen\nByron\nEdgar\nEmmanuel\nFranklin\nMarvin\nAlvin\nDallas\nDaryl\nDean\nHeath\nIsmael\nJoaquin\nNoel\nPete\nRogelio\nVernon\nWarren\nAlexis\nAndy\nCharlie\nEarl\nEugene\nEverett\nFelipe\nHerman\nHoward\nKarl\nLance\nMaurice\nMelvin\nNeil\nNickolas\nNolan\nWaylon\nArnold\nDamon\nElijah\nFrankie\nGavin\nGustavo\nIsaiah\nKelly\nKurt\nLeland\nLeslie\nMike\nRick\nTomas\nTyson\nAllan\nAugustine\nBarry\nBrendan\nBret\nBryon\nDarryl\nDiego\nEstevan\nFred\nGlenn\nKirk\nLonnie\nMyron\nReginald\nRocky\nRusty\nShannon\nStuart\nTyrel\nVicente\nAngelo\nAron\nAshley\nBryant\nDylan\nFredrick\nGonzalo\nJake\nJamison\nJohnathon\nJosue\nLionel\nNorman\nRoderick\nRolando\nSaul\nSonny\nSterling\nStewart\nTanner\nTerrence\nVirgil\nAdan\nAlvaro\nBenny\nBernard\nBlaine\nCarlton\nCole\nDan\nDerick\nDonnie\nEdmund\nEdwardo\nEdwin\nEmanuel\nErick\nErnie\nFelix\nFidel\nForrest\nGarrick\nHarry\nJackson\nLamar\nLandon\nLeander\nLeroy\nMarques\nMax\nMikel\nNeal\nNelson\nPerry\nRex\nSheldon\nTrenton\nTy\nValentino\nWeston\nWillie\nWyatt\nAdalberto\nAldo\nAubrey\nBo\nBrady\nClifton\nDemetrius\nDevon\nDomingo\nEfrain\nErin\nErwin\nGarrison\nGene\nGuadalupe\nHans\nHarlan\nJarvis\nJimmie\nJosh\nJulius\nKory\nLaurence\nLeonardo\nLester\nLewis\nLloyd\nMalcolm\nMarlin\nMiles\nOrrin\nRaymundo\nSam\nSidney\nTristan\nZachariah\nAbram\nAdrain\nAlonzo\nAric\nArnulfo\nBrenden\nBrice\nCecil\nClay\nColby\nDalton\nDana\nDarin\nDarrick\nDarrin\nDavin\nEli\nEliseo\nElton\nGordon\nGreg\nGregorio\nGuy\nHarold\nHarrison\nIgnacio\nJarod\nJasper\nJean\nJedediah\nJerald\nJermaine\nJim\nJonas\nKent\nKirby\nLane\nLeo\nLeon\nLuther\nManny\nMarcelino\nMason\nNathanael\nNoe\nOwen\nRebecca\nRickey\nRoland\nRoss\nRudolph\nSammy\nStanley\nTed\nToby\nTrent\nWilbert\nZachery\nMichael\nChristopher\nDavid\nMatthew\nDaniel\nJoshua\nJason\nRobert\nJames\nJustin\nRyan\nJohn\nJoseph\nAnthony\nBrandon\nBrian\nAaron\nRichard\nAdam\nAndrew\nWilliam\nJonathan\nEric\nNicholas\nSteven\nJose\nThomas\nBenjamin\nJeremy\nJacob\nTimothy\nJeffrey\nKevin\nMark\nDustin\nSean\nNathan\nPaul\nCharles\nJesse\nScott\nTravis\nPatrick\nKyle\nCarlos\nKenneth\nJared\nGabriel\nJesus\nStephen\nBryan\nManuel\nGregory\nJuan\nFrancisco\nSamuel\nAdrian\nShawn\nCody\nChad\nTyler\nRaymond\nEdward\nLuis\nGeorge\nMario\nPhillip\nFernando\nDerek\nPeter\nRicardo\nErik\nShane\nGary\nZachary\nIan\nMiguel\nFrank\nBradley\nNathaniel\nAlexander\nRonald\nBrett\nDonald\nKeith\nAlejandro\nAngel\nCasey\nJeremiah\nShaun\nJoel\nVictor\nJordan\nMarcus\nRuben\nTodd\nTroy\nDouglas\nRaul\nJoe\nRoberto\nAntonio\nMartin\nRandy\nAlbert\nCory\nArmando\nBrent\nCraig\nAlan\nGilbert\nSeth\nHector\nIsaac\nJavier\nJeffery\nVincent\nPhilip\nRamon\nRussell\nAlex\nJaime\nOscar\nPedro\nArthur\nCameron\nTrevor\nChristian\nClinton\nCurtis\nDerrick\nJack\nNoah\nCaleb\nGarrett\nIvan\nJimmy\nJorge\nWesley\nAustin\nJohnny\nKristopher\nLarry\nRoy\nClayton\nHenry\nMarc\nAlberto\nAllen\nBlake\nEvan\nMarco\nMathew\nTony\nAndres\nCarl\nDanny\nLance\nBilly\nJon\nJulian\nLevi\nLucas\nRoger\nDennis\nJay\nLuke\nRafael\nSergio\nAndre\nBobby\nJonathon\nLogan\nCesar\nCorey\nErnesto\nJamie\nRandall\nBret\nEnrique\nErnest\nGuillermo\nLawrence\nLeonard\nMicheal\nArturo\nJerry\nLee\nLouis\nOrlando\nSalvador\nAlexis\nJohnathan\nMarcos\nRalph\nRay\nRodney\nDale\nFabian\nGrant\nSpencer\nTerry\nAbel\nAlfred\nAngelo\nDominic\nJarrod\nJulio\nLoren\nRudy\nTyrone\nWayne\nDylan\nEduardo\nElijah\nRene\nTaylor\nBruce\nJerome\nLorenzo\nMicah\nByron\nColin\nDevin\nGerald\nJessie\nJoey\nLeon\nLyle\nMitchell\nNicolas\nPreston\nRicky\nRonnie\nTanner\nAlfonso\nClifford\nCole\nDarrell\nEsteban\nGeoffrey\nGerardo\nHarold\nIsaiah\nRoss\nWarren\nAbraham\nAlfredo\nDiego\nIsrael\nKarl\nMyron\nNickolas\nNorman\nOmar\nPablo\nTristan\nBryce\nCalvin\nChase\nDarren\nDonovan\nEmilio\nErick\nFranklin\nFreddie\nGustavo\nKurt\nSantiago\nTerrence\nTommy\nWalter\nXavier\nDamian\nEarl\nEli\nEstevan\nEthan\nJayson\nLeo\nLloyd\nNeil\nReynaldo\nStuart\nVernon\nVicente\nAndy\nBeau\nColt\nDallas\nDuane\nEddie\nEdwin\nFrederick\nGilberto\nHarry\nJarrett\nKelly\nMarshall\nRick\nRobin\nRocky\nRogelio\nSimon\nSterling\nStewart\nTrenton\nWade\nBarry\nBrendan\nBryon\nDan\nFelipe\nGarrick\nGordon\nHarley\nHarrison\nMarvin\nMelvin\nMorgan\nNoel\nTerrance\nTrent\nBranden\nClint\nDarryl\nDaryl\nDwayne\nDwight\nFrankie\nFred\nGlenn\nGuadalupe\nGuy\nIsmael\nJake\nJarvis\nJerald\nJoaquin\nJohnathon\nLeonardo\nLewis\nMaurice\nMoses\nNeal\nOwen\nRodolfo\nSteve\nAgustin\nAllan\nAshley\nBlaine\nBryson\nDana\nDon\nDonnie\nGene\nHumberto\nJermaine\nJosiah\nJulius\nKirk\nMax\nMike\nReggie\nRoland\nRoman\nSaul\nTerence\nTheodore\nTy\nVance\nWillie\nAlonzo\nArnold\nAugustine\nBrady\nBryant\nChris\nClifton\nColton\nDane\nDarin\nDewayne\nEdgar\nElliot\nEmanuel\nFrancis\nFredrick\nGlen\nGregorio\nHunter\nJoesph\nMason\nNick\nPete\nReuben\nRory\nShea\nTyrell\nValentin\nWaylon\nWeston\nZane\nAdalberto\nAron\nBennett\nBrad\nBrenton\nCedric\nClarence\nCourtney\nCristobal\nDerick\nDion\nEdmund\nEfren\nErich\nEugene\nGarret\nGavin\nGerman\nHeath\nHoward\nIgnacio\nIra\nJarod\nJessica\nJosue\nKent\nLamar\nLandon\nLionel\nMalcolm\nMarlon\nMarques\nMikel\nMonty\nNathanial\nNelson\nNolan\nRenaldo\nRigoberto\nRusty\nShannon\nSolomon\nStanley\nTom\nTomas\nTyson\nWyatt\nZachery\nAldo\nAlton\nAlvin\nAmmon\nBen\nBenny\nBernardo\nBo\nBradford\nClaude\nClyde\nCollin\nCordell\nCyrus\nDelbert\nDominick\nDrew\nEfrain\nElias\nEmmanuel\nErvin\nFreddy\nGalen\nGreg\nHanson\nIsaias\nJamar\nJarom\nJedidiah\nJerrod\nJess\nJimmie\nKendall\nKody\nKory\nLeander\nLeonel\nLeroy\nLowell\nMerle\nNathanael\nQuentin\nQuintin\nRamiro\nRandolph\nRoderick\nRolando\nSantos\nSkyler\nStanford\nTerrell\nWillard\nZachariah\nMichael\nChristopher\nMatthew\nDaniel\nDavid\nJoshua\nRobert\nJason\nRyan\nJames\nJohn\nJoseph\nJustin\nBrandon\nAdam\nBrian\nNicholas\nAnthony\nAndrew\nWilliam\nSteven\nRichard\nAaron\nEric\nJonathan\nKyle\nJose\nThomas\nTimothy\nJacob\nJeffrey\nMark\nJeremy\nBenjamin\nKevin\nNathan\nSean\nCharles\nDustin\nStephen\nScott\nJesse\nPaul\nBryan\nJesus\nTravis\nGabriel\nPatrick\nGregory\nZachary\nSamuel\nTyler\nJuan\nKenneth\nFrancisco\nLuis\nShawn\nCarlos\nChad\nEdward\nDerek\nBradley\nJared\nDonald\nAlexander\nManuel\nMario\nAdrian\nJoel\nPhillip\nAntonio\nRaymond\nVictor\nFrank\nMarcus\nGeorge\nMartin\nGary\nCody\nMiguel\nPeter\nRicardo\nDouglas\nShane\nErik\nIan\nBrett\nAlex\nRoberto\nNathaniel\nJeremiah\nJorge\nRonald\nRuben\nDerrick\nGarrett\nBrent\nKeith\nSergio\nSeth\nFernando\nCasey\nTodd\nAlejandro\nArthur\nCraig\nRamon\nJordan\nTrevor\nTroy\nVincent\nAngel\nClinton\nGilbert\nIsaac\nPhilip\nRandy\nClayton\nHector\nRussell\nCory\nJerry\nRoy\nShaun\nAlan\nAlbert\nAndres\nCurtis\nJohnny\nDanny\nEvan\nAustin\nJeffery\nLance\nErnest\nLevi\nMarco\nNoah\nArmando\nCorey\nJavier\nRaul\nRene\nTerry\nWesley\nCaleb\nEnrique\nLuke\nRandall\nBlake\nLarry\nMathew\nBobby\nDarren\nHenry\nJimmy\nJonathon\nRicky\nAlberto\nCameron\nChase\nDennis\nDevin\nDominic\nJon\nLee\nLogan\nMitchell\nOscar\nPedro\nCarl\nColin\nJaime\nJay\nJulian\nTaylor\nArturo\nEduardo\nGrant\nJoe\nLucas\nMarc\nMarcos\nMicheal\nFelipe\nLouis\nTommy\nAbraham\nAllen\nAndre\nErnesto\nOrlando\nPreston\nTony\nChristian\nCole\nJake\nKristopher\nLeonard\nNicolas\nRoger\nSpencer\nAlexis\nBruce\nEddie\nIvan\nLawrence\nRafael\nAlfredo\nDrew\nJack\nJulio\nKelly\nMicah\nCalvin\nDale\nEugene\nGene\nGeoffrey\nGerald\nIsrael\nPablo\nByron\nCesar\nGavin\nJerome\nNeil\nRodney\nXavier\nAlvin\nClifford\nErick\nEsteban\nLionel\nMaurice\nSalvador\nAbel\nDylan\nEli\nElias\nGuillermo\nJamie\nMorgan\nRonnie\nTanner\nTheodore\nTyrone\nWalter\nWayne\nAlfonso\nBilly\nBryce\nElijah\nGustavo\nHarold\nIsmael\nLyle\nMyron\nStuart\nTrenton\nBrad\nDane\nDuane\nDwayne\nGlenn\nIsaiah\nJoey\nJohnathan\nLoren\nLorenzo\nMarshall\nMike\nAndy\nBret\nDarin\nDarrell\nGerardo\nGlen\nJarrod\nNickolas\nOmar\nRalph\nReynaldo\nSteve\nTyson\nWarren\nAlfred\nBlaine\nDaryl\nDean\nDonovan\nEdgar\nFrederick\nGilberto\nJessie\nJoaquin\nKellen\nKurt\nRandolph\nRudy\nSantos\nZane\nArnold\nClint\nColt\nEdwin\nEstevan\nEthan\nFrancis\nFranklin\nHeath\nIgnacio\nKendall\nKirk\nLeland\nLeon\nLeslie\nMoses\nRocky\nRoman\nSaul\nSimon\nTerrance\nAlec\nBranden\nChris\nConrad\nDamian\nDiego\nElliott\nFabian\nGuadalupe\nKarl\nLandon\nLeo\nLonnie\nMarvin\nMelvin\nNick\nPete\nReuben\nTristan\nVicente\nWade\nZachariah\nAdolfo\nAlonzo\nAngelo\nAugustine\nBradford\nBryant\nClifton\nColton\nEfrain\nHarry\nHunter\nKent\nLeroy\nMonty\nNorman\nTerrence\nTyrel\nBarry\nChaz\nClark\nCollin\nDallas\nDon\nDwight\nEfren\nEmmanuel\nFrankie\nGraham\nJeffry\nJermaine\nJess\nJohnathon\nJosue\nMarty\nMiles\nMilton\nNathanael\nNoel\nNolan\nOwen\nRamiro\nRay\nRigoberto\nRodrigo\nShannon\nToby\nTomas\nAllan\nAshley\nBenito\nBenny\nBrendan\nBrenton\nBrock\nBryon\nCarlton\nCharlie\nClarence\nClay\nDana\nDario\nDarrel\nDarrick\nDave\nDelbert\nDerik\nDominique\nDusty\nEdmund\nElliot\nEmilio\nErnie\nForrest\nGordon\nGreg\nJarad\nJarod\nJayson\nJedediah\nJosiah\nKendrick\nKurtis\nLeonardo\nMarion\nMarques\nMickey\nPerry\nQuinn\nReggie\nRobin\nRoderick\nRogelio\nRory\nRoss\nSheldon\nStanley\nTrent\nTy\nVernon\nWaylon\nWyatt\nAbelardo\nAlvaro\nArron\nAurelio\nAvery\nBen\nBrady\nBrant\nClyde\nColby\nCristobal\nDamon\nDeon\nDevon\nDillon\nEarl\nErich\nErin\nFelix\nFred\nFredrick\nGarrick\nGerman\nGuy\nHerbert\nHiram\nHoward\nHumberto\nHyrum\nJarrett\nJeff\nJefferson\nKeenan\nKiel\nKristofer\nMax\nMerle\nNeal\nNehemiah\nNelson\nOctavio\nOliver\nParker\nReginald\nRick\nSantiago\nSarah\nStanford\nTed\nTerence\nTheron\nTom\nTyrell\nValentino\nVan\nVirgil\nWill\nWillie\nMichael\nChristopher\nMatthew\nDaniel\nDavid\nJoshua\nRobert\nRyan\nJames\nJoseph\nJohn\nBrandon\nJason\nJustin\nAndrew\nAdam\nAnthony\nNicholas\nBrian\nWilliam\nEric\nRichard\nSteven\nJonathan\nAaron\nJose\nThomas\nTimothy\nKevin\nJacob\nBenjamin\nJeremy\nMark\nKyle\nTyler\nTravis\nJeffrey\nPaul\nScott\nSean\nCharles\nDustin\nNathan\nStephen\nJesse\nJesus\nPatrick\nGabriel\nBryan\nGregory\nZachary\nKenneth\nJuan\nCarlos\nFrancisco\nCody\nDerek\nChad\nLuis\nEdward\nAlexander\nSamuel\nJared\nIan\nRuben\nShawn\nManuel\nAdrian\nBradley\nRaymond\nVictor\nVincent\nAlex\nMario\nShane\nMiguel\nNathaniel\nFrank\nMarcus\nAngel\nCasey\nJordan\nMartin\nPeter\nPhillip\nFernando\nBrent\nDonald\nEvan\nCory\nGeorge\nGilbert\nJoel\nAustin\nBrett\nErik\nHector\nJeremiah\nJorge\nRicardo\nAntonio\nDouglas\nDerrick\nRonald\nSeth\nCameron\nIsaac\nJeffery\nKeith\nAlejandro\nArmando\nRoberto\nCraig\nJohnny\nTrevor\nChase\nCarl\nGarrett\nOscar\nRandy\nAndres\nChristian\nGary\nRamon\nRussell\nTroy\nLarry\nCurtis\nGeoffrey\nJoe\nPhilip\nWesley\nAlan\nAlbert\nJimmy\nMathew\nRandall\nClinton\nLuke\nRaul\nRene\nCorey\nDennis\nSergio\nAllen\nLee\nMarc\nRoger\nShaun\nLawrence\nTodd\nDanny\nJavier\nJon\nLance\nMarco\nMarcos\nMicheal\nRicky\nJohnathan\nArthur\nArturo\nBilly\nBlake\nHenry\nJaime\nKristopher\nClayton\nDevin\nJonathon\nLouis\nOrlando\nEnrique\nNoah\nErnest\nGrant\nIvan\nLogan\nPedro\nTaylor\nTerry\nRoy\nAbel\nAndre\nBobby\nBryce\nErnesto\nJay\nLorenzo\nLucas\nMitchell\nRoman\nWayne\nAbraham\nAlberto\nCaleb\nDarren\nEduardo\nJerry\nLevi\nJack\nJulian\nLoren\nOmar\nXavier\nBrendan\nCole\nColin\nDarrell\nGerardo\nRafael\nRalph\nSteve\nTheodore\nTony\nAlfonso\nDominic\nEthan\nFabian\nGilberto\nLionel\nNicolas\nPreston\nRay\nTommy\nTyrone\nCesar\nJerome\nKurt\nRoss\nDale\nDrew\nJamie\nJulio\nKelly\nReuben\nRonnie\nRudy\nSpencer\nAlfred\nBruce\nByron\nClifford\nVicente\nBeau\nCalvin\nEdwin\nEugene\nIsaiah\nReynaldo\nSalvador\nTerrance\nWalter\nAlfredo\nBarry\nBrad\nBranden\nChance\nClint\nDylan\nEmmanuel\nFrederick\nGuillermo\nJosue\nMarvin\nMorgan\nNeil\nRodney\nSantiago\nDallas\nDean\nDevon\nEddie\nGerald\nJake\nKarl\nLeander\nMarshall\nSterling\nTristan\nDamien\nDonovan\nEstevan\nFelix\nGlenn\nHeath\nHumberto\nIsrael\nJayson\nLandon\nLeon\nMax\nMiles\nOliver\nRamiro\nRogelio\nSimon\nTomas\nTrent\nTrey\nBrady\nColby\nDamian\nDusty\nElijah\nJameson\nJarrett\nJoaquin\nMelvin\nMyron\nPablo\nRigoberto\nStefan\nTanner\nTerence\nTyrel\nTyrell\nWarren\nAlexis\nBrenton\nChris\nDwayne\nDwight\nEarl\nGustavo\nHarry\nRocky\nRolando\nTerrence\nTrenton\nTyson\nAllan\nAvery\nBryon\nCharlie\nClark\nDane\nElias\nElliott\nFrancis\nGlen\nIgnacio\nJess\nJoey\nJosh\nKent\nLeland\nLeonard\nLonnie\nLyle\nQuentin\nWeston\nBrock\nColt\nDerik\nEdgar\nEli\nEmanuel\nEmilio\nErick\nEsteban\nFelipe\nForrest\nFrankie\nFreddie\nFredrick\nGene\nGuadalupe\nHarley\nJessie\nJosiah\nKendall\nKory\nLeo\nLeroy\nMaurice\nMicah\nNick\nNoel\nPete\nRickey\nShayne\nStephan\nVernon\nAndy\nAngelo\nArnold\nAshley\nAugustine\nBlaine\nBradford\nBret\nBryant\nCarlo\nChester\nDaryl\nDerick\nDomingo\nDominique\nDon\nDuane\nEfrain\nFederico\nFred\nGavin\nHarold\nJackson\nJarrod\nJermaine\nJohnathon\nKurtis\nMike\nNeal\nNikolas\nOwen\nParker\nRex\nRick\nRobin\nRoderick\nRoland\nSheldon\nSkyler\nSolomon\nStanley\nSylvester\nToby\nTy\nWade\nWaylon\nWill\nWillie\nAdan\nAlvaro\nBennie\nBenny\nBrice\nCarson\nClay\nColton\nConrad\nCourtney\nCoy\nCristian\nDamon\nDarin\nDarwin\nDexter\nDiego\nGonzalo\nGraham\nGreg\nGuy\nHarrison\nHerbert\nIsmael\nJarod\nJoesph\nJulius\nKellen\nKendrick\nKenny\nKirk\nLamar\nLeonardo\nMarty\nNelson\nPerry\nQuinn\nRodolfo\nRodrigo\nRojelio\nRory\nSam\nSantino\nSantos\nShannon\nVance\nAbelardo\nAli\nAlonzo\nAlvin\nAriel\nBernard\nBoyd\nBrendon\nCedric\nCruz\nDallin\nDana\nDarrin\nDarryl\nDillon\nDion\nDonte\nElliot\nErich\nEverett\nGerman\nHans\nHerman\nHoward\nIssac\nJamaal\nJasper\nJeramy\nJonah\nJonas\nKiel\nLeif\nLester\nLewis\nMauro\nMilton\nMoises\nNathanael\nNathanial\nNolan\nNorman\nQuincy\nRandolph\nRaphael\nRaymundo\nRemington\nRenaldo\nRobbie\nRoque\nScotty\nShea\nSidney\nStuart\nVan\nVaughn\nVirgil\nWilson\nWyatt\nMichael\nChristopher\nDaniel\nMatthew\nDavid\nJoshua\nRobert\nRyan\nJoseph\nAndrew\nJames\nJohn\nBrandon\nAnthony\nNicholas\nJustin\nJason\nSteven\nKyle\nEric\nJonathan\nBrian\nWilliam\nAdam\nAaron\nRichard\nKevin\nJacob\nJose\nSean\nMark\nThomas\nBenjamin\nTyler\nTimothy\nJeremy\nNathan\nJeffrey\nStephen\nPaul\nJesse\nDustin\nCharles\nZachary\nCody\nBryan\nPatrick\nTravis\nJesus\nGabriel\nShawn\nFrancisco\nScott\nCarlos\nGregory\nKenneth\nAlexander\nJuan\nSamuel\nChad\nLuis\nEdward\nBradley\nJared\nDerek\nAdrian\nManuel\nNathaniel\nVictor\nMario\nJoel\nJordan\nMiguel\nRaymond\nAlex\nIan\nAntonio\nMarcus\nBrett\nShane\nAustin\nPhillip\nAlejandro\nDerrick\nFrank\nCorey\nMartin\nRandy\nRonald\nBrent\nCasey\nDonald\nRuben\nRicardo\nDevin\nCraig\nFernando\nTrevor\nCory\nArmando\nGary\nGeorge\nKeith\nTaylor\nVincent\nRamon\nAngel\nErik\nJeremiah\nJohnny\nPeter\nAlbert\nRene\nWesley\nEvan\nJoe\nKristopher\nPhilip\nGarrett\nJavier\nRoberto\nShaun\nAndres\nChase\nHenry\nJeffery\nSergio\nJulian\nRussell\nBlake\nClayton\nCurtis\nHector\nIsaac\nJorge\nLogan\nLuke\nSeth\nArthur\nDouglas\nMarcos\nRaul\nTodd\nMicheal\nSpencer\nGilbert\nJaime\nJon\nMarco\nDarren\nDrew\nLarry\nOscar\nTony\nAndre\nJulio\nMathew\nClinton\nGeoffrey\nRicky\nBryce\nCameron\nDanny\nGrant\nTerry\nChristian\nEduardo\nLevi\nCesar\nDennis\nIvan\nLouis\nLucas\nMitchell\nRoger\nTroy\nAlan\nLawrence\nMarc\nMicah\nPedro\nArturo\nDylan\nJonathon\nLance\nOmar\nPreston\nDominic\nJay\nJimmy\nJohnathan\nAbel\nEnrique\nErnest\nJake\nRoy\nAlberto\nJessie\nLeonard\nSalvador\nAbraham\nCole\nColin\nErnesto\nJerry\nLee\nLionel\nLorenzo\nRandall\nTyrone\nAllen\nChance\nFabian\nJack\nNicolas\nCalvin\nCarl\nDarrell\nDevon\nPablo\nRafael\nRudy\nWayne\nBilly\nCaleb\nEddie\nBobby\nDane\nGerardo\nJamie\nNoah\nRay\nRoman\nTheodore\nTommy\nZane\nAlexis\nBeau\nBranden\nBrendan\nBruce\nDallas\nEugene\nGlenn\nGordon\nKarl\nMyron\nRonnie\nRoss\nSteve\nTy\nChris\nDonovan\nIgnacio\nMorgan\nOrlando\nTanner\nTristan\nAlfonso\nDale\nEdgar\nEmmanuel\nGilberto\nHeath\nJayson\nJerome\nJoey\nJosiah\nKelly\nNeil\nRick\nClifford\nFrederick\nGuillermo\nGustavo\nIsrael\nJarrod\nJermaine\nJoaquin\nKent\nNickolas\nRalph\nSkyler\nXavier\nAlfredo\nBrad\nBrenton\nBret\nCedric\nDamon\nDillon\nElias\nErick\nEsteban\nFelipe\nFred\nGerald\nIsmael\nLandon\nLyle\nReynaldo\nRogelio\nSantiago\nSheldon\nStanley\nTomas\nWalter\nAlfred\nAlvin\nAngelo\nByron\nCharlie\nClint\nCollin\nDamian\nDean\nDelbert\nDiego\nFrankie\nGuadalupe\nHarry\nIsaiah\nKurtis\nMarshall\nMaurice\nRoland\nSimon\nStephan\nStuart\nTerrance\nConrad\nDuane\nEdwardo\nEfrain\nElliott\nEstevan\nJosue\nKellen\nKendall\nKurt\nLoren\nRiley\nRoderick\nRory\nSonny\nTerence\nTyson\nVernon\nVicente\nAlvaro\nBlaine\nBrock\nColton\nDwayne\nEarl\nFranklin\nHarrison\nKasey\nKody\nLewis\nMarvin\nMason\nMax\nMoses\nNolan\nReuben\nRyne\nTrent\nTrenton\nWarren\nAlonzo\nBryant\nCruz\nElijah\nEthan\nGavin\nGreg\nHeriberto\nJody\nKeegan\nKristofer\nMarlon\nMaxwell\nNathanael\nNorman\nPete\nReginald\nRodolfo\nStefan\nTyrel\nWillie\nAndy\nBernard\nBernardo\nBrennan\nBryon\nChaz\nDamien\nDana\nDarryl\nDavin\nDwight\nGuy\nJairo\nJarod\nJarred\nJeff\nKenny\nKorey\nKory\nMalcolm\nMiles\nNelson\nNoel\nPerry\nRex\nRodney\nRusty\nSaul\nTed\nToby\nWeston\nZachariah\nAbram\nAdolfo\nAshley\nAshton\nBarry\nBradly\nBrady\nBrenden\nBrendon\nCarlo\nChester\nClifton\nColt\nCristopher\nDallin\nDan\nDaryl\nDon\nEdmund\nEfren\nElliot\nErich\nFelix\nFrancis\nFredrick\nGene\nGlen\nGraham\nHarley\nHoward\nHunter\nIsidro\nJackie\nJameson\nJarrett\nJefferson\nJohnathon\nJohnnie\nKirk\nLeander\nLeo\nLeon\nLeonardo\nLino\nManny\nMikel\nMonty\nNikolas\nQuentin\nRigoberto\nSebastian\nSkylar\nStewart\nTyrell\nWade\nZachery\nAlden\nAli\nAllan\nAric\nArnold\nArron\nBradford\nCarlton\nChristina\nClark\nClay\nCornelius\nCoty\nCristobal\nDarin\nDarius\nDavis\nDesmond\nDewayne\nDexter\nEdgardo\nEdwin\nEli\nEmerson\nEmery\nErwin\nFaron\nFreddie\nGarrick\nGonzalo\nHal\nJamison\nJaron\nJarvis\nJeramy\nJimmie\nJohnson\nJonah\nJordon\nKelvin\nKen\nKendrick\nLambert\nLonnie\nMarino\nNoe\nOctavio\nRaymundo\nReyes\nRoyce\nSantos\nShea\nSterling\nSylvester\nWillis\nMichael\nChristopher\nMatthew\nDaniel\nDavid\nJoshua\nRyan\nJames\nRobert\nAndrew\nJoseph\nBrandon\nNicholas\nJustin\nAnthony\nJohn\nKyle\nSteven\nEric\nBrian\nJacob\nJason\nJonathan\nRichard\nWilliam\nAdam\nJose\nAaron\nKevin\nTimothy\nThomas\nSean\nJeremy\nTyler\nBenjamin\nMark\nNathan\nStephen\nJeffrey\nJesse\nPatrick\nScott\nCharles\nJuan\nZachary\nAlexander\nDustin\nCody\nPaul\nJesus\nDerek\nTravis\nGregory\nSamuel\nBryan\nGabriel\nBradley\nFrancisco\nKenneth\nShawn\nJared\nCarlos\nAdrian\nLuis\nMartin\nChad\nShane\nAlex\nManuel\nMiguel\nEdward\nIan\nAntonio\nBrett\nNathaniel\nPhillip\nMarcus\nVictor\nJordan\nRaymond\nVincent\nDonald\nCory\nJoel\nBrent\nGeorge\nPeter\nAustin\nCasey\nEvan\nMario\nAlan\nFrank\nCameron\nErik\nCorey\nGarrett\nSeth\nKeith\nCraig\nJohnny\nRicardo\nFernando\nAlejandro\nJavier\nTrevor\nChristian\nDouglas\nIvan\nSergio\nDevin\nRuben\nOscar\nPhilip\nAndres\nAngel\nJorge\nTaylor\nDerrick\nRandy\nRonald\nChase\nJeremiah\nClinton\nGary\nRamon\nWesley\nArmando\nRoberto\nShaun\nHector\nMicheal\nAlbert\nJulian\nMathew\nTroy\nGilbert\nJoe\nLuke\nMitchell\nCurtis\nDanny\nMarc\nTodd\nBlake\nColin\nDennis\nJeffery\nLarry\nLogan\nMarcos\nBryce\nKristopher\nArthur\nClayton\nErnesto\nJon\nAlfredo\nDarren\nJaime\nRoy\nSpencer\nAbraham\nJerry\nPedro\nIsaac\nJulio\nLorenzo\nLouis\nDrew\nDylan\nLance\nLucas\nMarco\nAllen\nArturo\nDominic\nEnrique\nHenry\nLevi\nRussell\nAlberto\nAndre\nDonovan\nGeoffrey\nJake\nLee\nPreston\nRaul\nRene\nCaleb\nRoman\nTerry\nTony\nJay\nBilly\nRandall\nBeau\nCarl\nCesar\nEduardo\nGerardo\nJack\nPablo\nTanner\nTyson\nDevon\nLawrence\nNicolas\nXavier\nCole\nDarrell\nJimmy\nJonathon\nAlfred\nErnest\nJohnathan\nRodney\nTerrance\nBobby\nBranden\nElijah\nEmmanuel\nGrant\nIsrael\nKelly\nLeonard\nLionel\nNickolas\nTyrone\nAlfonso\nBruce\nChance\nDallas\nJamie\nNeil\nOmar\nRafael\nWarren\nAbel\nDale\nEdwin\nJerome\nRoss\nSalvador\nTheodore\nDean\nGerald\nNoah\nRay\nRonnie\nRudy\nWayne\nAlexis\nBrenton\nBryant\nDiego\nKurt\nMorgan\nOrlando\nRicky\nTrenton\nWyatt\nCalvin\nFrankie\nKarl\nRodolfo\nRoger\nTristan\nWalter\nBrendan\nByron\nClifford\nDane\nElias\nFabian\nGilberto\nJessie\nJohnathon\nJosiah\nLeon\nMarshall\nMicah\nNolan\nRoland\nTomas\nTrent\nWeston\nAdan\nAllan\nBrendon\nClarence\nClint\nDamien\nDamon\nDonavan\nDuane\nEdgar\nEli\nFrancis\nGlenn\nHunter\nJoaquin\nLandon\nRogelio\nSaul\nSkyler\nSteve\nTerrence\nZachery\nArnold\nBen\nBrice\nDillon\nErick\nHarold\nJoey\nKody\nMalcolm\nMarvin\nMax\nPerry\nRalph\nRoderick\nVicente\nZane\nAlonzo\nBrad\nBrock\nClifton\nCollin\nFelix\nFrederick\nGavin\nGuillermo\nGustavo\nIsaiah\nJayson\nJosue\nKurtis\nLeonardo\nMaurice\nMaxwell\nNathanael\nRick\nStanley\nStefan\nStuart\nTommy\nTy\nAlec\nAlvin\nBarry\nClark\nColby\nConrad\nDaren\nDarrick\nDwight\nEarl\nEddie\nEsteban\nEstevan\nEthan\nEugene\nFranklin\nFreddie\nKendall\nKory\nLeo\nLeroy\nLoren\nLouie\nLyle\nMason\nNeal\nNoel\nNorman\nPete\nRocky\nWade\nAndy\nAngelo\nAshley\nAugustine\nBernardo\nBrennan\nCristobal\nCyrus\nDamian\nDarrin\nDerick\nErwin\nFelipe\nGene\nHarry\nJarrod\nKellen\nLeland\nMiles\nReuben\nRiley\nRory\nSammy\nShea\nSimon\nSterling\nVernon\nWillie\nZachariah\nZackery\nAgustin\nBenito\nBrady\nBret\nCarlton\nCarson\nClay\nColton\nDaryl\nEmanuel\nErin\nGalen\nGlen\nHarrison\nHumberto\nIgnacio\nJoesph\nJosef\nLeander\nMyles\nMyron\nQuentin\nRamiro\nReynaldo\nSheldon\nStephan\nZackary\nAddison\nArron\nBlaine\nBo\nBraden\nBradford\nBrenden\nConnor\nCourtney\nCruz\nDakota\nDallin\nDarin\nDavis\nDominique\nDon\nEfrain\nEfren\nElliott\nEloy\nEmilio\nFloyd\nFred\nFreddy\nFredrick\nGarret\nGreg\nGuadalupe\nGuy\nIsmael\nJameson\nJarrett\nJerod\nJess\nKeenan\nKendrick\nKent\nKirk\nLloyd\nMarty\nNick\nOliver\nParker\nPierre\nQuinn\nRandon\nRaymundo\nRobby\nRodrigo\nRoque\nRudolph\nSantos\nTyrell\nValentin\nAldo\nAli\nAlton\nArnoldo\nAron\nBradly\nCassidy\nCedric\nChanning\nChaz\nChris\nColeman\nConor\nCordell\nCorwin\nDaiel\nDan\nDario\nDarryl\nDexter\nDomonic\nEdwardo\nEleazar\nErnie\nEzequiel\nFermin\nForest\nGarry\nGregorio\nIra\nIsidro\nJarvis\nJayce\nJerrad\nJosh\nJuancarlos\nKasey\nKeaton\nKenny\nKiel\nKristofer\nLonnie\nMayra\nMelvin\nMohammed\nMonty\nMoses\nNicole\nNigel\nNikolas\nOwen\nReginald\nRocco\nRolando\nRoyce\nRusty\nRyne\nScot\nSherwin\nSkylar\nSonny\nTed\nWendell\nZechariah\nMichael\nChristopher\nMatthew\nDaniel\nDavid\nAndrew\nJoshua\nRyan\nRobert\nJames\nJustin\nAnthony\nJoseph\nNicholas\nBrandon\nJohn\nKyle\nEric\nSteven\nJonathan\nWilliam\nJacob\nAaron\nBrian\nJose\nAdam\nJason\nKevin\nThomas\nRichard\nTyler\nTimothy\nJeffrey\nBenjamin\nMark\nAlexander\nZachary\nNathan\nSean\nJeremy\nStephen\nCody\nPatrick\nScott\nJesse\nSamuel\nTravis\nDustin\nPaul\nCharles\nJesus\nDerek\nGabriel\nCarlos\nJordan\nJuan\nBryan\nFrancisco\nGregory\nManuel\nKenneth\nLuis\nJared\nBradley\nChad\nCory\nEdward\nShawn\nShane\nAdrian\nMiguel\nAlex\nAustin\nMario\nNathaniel\nRaymond\nVictor\nCameron\nCorey\nAntonio\nJoel\nMartin\nPhillip\nFrank\nIan\nPeter\nTrevor\nErik\nAngel\nRicardo\nCasey\nDonald\nBrett\nGeorge\nRuben\nFernando\nKeith\nAlejandro\nDevin\nVincent\nOscar\nRonald\nGarrett\nBrent\nCraig\nMarcus\nJorge\nLogan\nPhilip\nWesley\nArmando\nAlbert\nChase\nEdgar\nSergio\nChristian\nCurtis\nRandy\nJoe\nMarco\nMathew\nGary\nDouglas\nHector\nJohnny\nRoberto\nAlan\nAndres\nDerrick\nBlake\nColin\nJavier\nKristopher\nLucas\nRamon\nSeth\nTroy\nGilbert\nJeremiah\nMitchell\nTaylor\nBryce\nJerry\nDominic\nRaul\nRicky\nLance\nLuke\nPreston\nDanny\nIvan\nJulio\nJonathon\nJulian\nAlberto\nDylan\nJohnathan\nMicheal\nSpencer\nTerry\nDennis\nGrant\nIsaac\nRandall\nRussell\nArthur\nArturo\nClayton\nDarren\nJeffery\nLevi\nOrlando\nTony\nCaleb\nGerald\nPedro\nTodd\nEnrique\nJaime\nJay\nLarry\nNickolas\nAllen\nCarl\nDarrell\nEduardo\nShaun\nTanner\nGeoffrey\nHenry\nOmar\nBrendan\nJack\nLawrence\nMarc\nRudy\nAndre\nBobby\nCole\nDrew\nErnesto\nJimmy\nCesar\nDale\nJon\nLee\nLorenzo\nMarcos\nNicolas\nAbraham\nBilly\nDiego\nLouis\nRene\nRoy\nXavier\nAbel\nByron\nDonovan\nGustavo\nJake\nMicah\nTheodore\nAlfredo\nEmmanuel\nFabian\nNeil\nRoss\nTyrone\nWalter\nErnest\nMax\nSteve\nWayne\nClinton\nJamie\nJessie\nMiles\nRay\nSalvador\nTrenton\nTristan\nCalvin\nChance\nGuillermo\nIsaiah\nMason\nRafael\nRoger\nTerrance\nBryant\nCollin\nCruz\nDamian\nJerome\nKendrick\nKody\nLyle\nMorgan\nRalph\nRonnie\nAlexis\nAndy\nBruce\nDevon\nDillon\nElijah\nFrancis\nIsrael\nJayson\nMaurice\nRoman\nSterling\nTyson\nBlaine\nDarrin\nEddie\nEugene\nFrederick\nGerardo\nGlenn\nHunter\nLeo\nMarshall\nSkyler\nStephan\nBeau\nDuane\nEdwin\nEfrain\nEvan\nGilberto\nHeath\nIsmael\nKarl\nKelly\nLandon\nMalcolm\nPablo\nSheldon\nTy\nWyatt\nDallas\nDaryl\nElias\nEverett\nGavin\nHarrison\nIgnacio\nJarrett\nJoey\nKory\nKurt\nLeonard\nMyron\nNoah\nReynaldo\nRiley\nRodney\nTommy\nWade\nAlfonso\nAlfred\nAugustine\nBarry\nBrady\nBranden\nBrendon\nDallin\nDamien\nEli\nErick\nEsteban\nFelipe\nHeriberto\nJameson\nJosiah\nLionel\nLoren\nMaxwell\nRodolfo\nTomas\nTrent\nWarren\nAdan\nAngelo\nAshley\nBernard\nChadwick\nClint\nDerick\nEmery\nFrankie\nGlen\nJohnathon\nJosue\nKristofer\nMyles\nReuben\nSantiago\nSaul\nStefan\nVicente\nZachery\nAlec\nAlvaro\nBrooks\nClay\nColby\nColt\nColton\nDane\nDominique\nDwight\nEstevan\nEthan\nFelix\nFreddie\nGuy\nHarold\nHarry\nHugo\nJace\nJaron\nKirk\nMike\nNolan\nPete\nReed\nReid\nRick\nRogelio\nSonny\nZachariah\nZackary\nAllan\nAmos\nArnold\nAvery\nBen\nBrad\nBrock\nClifford\nClifton\nForrest\nFred\nGreg\nHerman\nHoward\nHumberto\nJarrod\nKendall\nLeland\nMarvin\nMelvin\nNeal\nNelson\nOliver\nRamiro\nSam\nSammy\nStuart\nTerrence\nVernon\nWeston\nAddison\nAlvin\nArron\nBenito\nBrenton\nBryon\nCharlie\nConrad\nCourtney\nDakota\nDanial\nDarryl\nDwayne\nEdmund\nElliott\nFloyd\nFranklin\nFredrick\nJackson\nJoaquin\nJoesph\nKeenan\nKenny\nLamar\nLeon\nNorman\nParker\nRoyce\nSalvatore\nSkylar\nTerence\nTyrell\nZane\nAbram\nAli\nAlonzo\nAron\nAusten\nBrennan\nChris\nClark\nConor\nDarin\nDavis\nDean\nFreddy\nGrady\nJarred\nJeff\nJeffry\nJessica\nJohnnie\nJonah\nKorey\nKurtis\nMauricio\nNathanael\nNoel\nOwen\nPerry\nPierre\nReginald\nRex\nRobin\nRodrigo\nRory\nSantos\nShayne\nShea\nSimon\nStanley\nTyrel\nWillie\nAbelardo\nAdalberto\nAmanda\nAriel\nBaby\nBabyboy\nBennett\nBenny\nBernardo\nBraden\nBradford\nBret\nCarlton\nCarson\nCedric\nClarence\nConner\nConnor\nCordero\nCoty\nCyrus\nDalton\nDamon\nDana\nDarrel\nDave\nDeven\nDominick\nDrake\nDusty\nEarl\nElliot\nEmanuel\nEmilio\nErwin\nEsteven\nEzekiel\nEzra\nGarret\nGerman\nGordon\nHarvey\nIsidro\nJacques\nJarryd\nJasper\nJerald\nJeramy\nJerel\nJess\nJim\nJoseluis\nKasey\nKent\nKirby\nLeander\nLeighton\nLeonardo\nLeroy\nLeslie\nLonnie\nMariano\nMichale\nMitchel\nMonty\nMoses\nNathanial\nOctavio\nPatricio\nQuentin\nQuinton\nRaymundo\nRigoberto\nRusty\nSebastian\nShay\nSpenser\nStanton\nTalon\nTeddy\nTory\nVaughn\nVince\nWill\nZackery\nMichael\nChristopher\nMatthew\nJoshua\nDaniel\nDavid\nAndrew\nRobert\nJustin\nRyan\nJoseph\nAnthony\nJames\nJohn\nKyle\nNicholas\nBrandon\nJonathan\nJacob\nEric\nWilliam\nSteven\nJose\nBrian\nZachary\nAaron\nThomas\nRichard\nAdam\nBenjamin\nKevin\nTyler\nTimothy\nCody\nAlexander\nJason\nSean\nJeremy\nNathan\nMark\nJesus\nTravis\nJeffrey\nJesse\nCharles\nPaul\nPatrick\nScott\nDustin\nSamuel\nStephen\nAustin\nGabriel\nJuan\nDerek\nCarlos\nBryan\nFrancisco\nLuis\nKenneth\nAlex\nJordan\nCory\nManuel\nCameron\nEdward\nChad\nBradley\nJared\nShane\nRicardo\nShawn\nAdrian\nVictor\nMarcus\nVincent\nMartin\nPhillip\nCorey\nIan\nNathaniel\nRaymond\nBrett\nPeter\nTrevor\nGregory\nMiguel\nCasey\nRuben\nAngel\nFrank\nMario\nTaylor\nJorge\nDevin\nRonald\nAntonio\nFernando\nChristian\nChase\nErik\nOscar\nDouglas\nGarrett\nLogan\nAlejandro\nSergio\nCraig\nKeith\nLevi\nAndres\nHector\nJoel\nIsaac\nJeremiah\nRaul\nWesley\nBlake\nDonald\nJonathon\nBrent\nDerrick\nJohnny\nRamon\nSeth\nTroy\nClayton\nDylan\nGeorge\nRandy\nAlberto\nJavier\nArmando\nBryce\nGary\nMarcos\nRoberto\nAlbert\nCesar\nJulian\nMitchell\nRussell\nSpencer\nCurtis\nPreston\nRene\nTanner\nMathew\nEduardo\nOmar\nAlan\nColin\nLuke\nMarc\nMarco\nPedro\nCaleb\nDominic\nLance\nRandall\nDennis\nEdgar\nKristopher\nOrlando\nClinton\nDanny\nHenry\nJeffery\nLucas\nShaun\nTodd\nBryant\nErnesto\nJohnathan\nPhilip\nTony\nIvan\nJaime\nGeoffrey\nJake\nTyson\nArthur\nArturo\nJoe\nMicheal\nRoss\nJulio\nRafael\nRudy\nDonovan\nGerardo\nJack\nEnrique\nJerry\nAbraham\nAllen\nGilbert\nXavier\nBobby\nCarl\nDarren\nDrew\nEmmanuel\nFabian\nLawrence\nMorgan\nColton\nLee\nLorenzo\nMaxwell\nNicolas\nTerry\nDiego\nGrant\nRoy\nBrendan\nGuillermo\nJay\nJimmy\nLarry\nLouis\nMax\nRoger\nIsaiah\nJon\nRodolfo\nRoman\nTheodore\nAlfredo\nErnest\nFelix\nGilberto\nGustavo\nRay\nStefan\nVicente\nAndre\nBilly\nCole\nDevon\nDillon\nJamie\nKurt\nMason\nMicah\nNeil\nTerrance\nTrent\nTyrone\nAlec\nCollin\nEdwin\nIsmael\nJarrod\nKirk\nLionel\nTerrence\nZachariah\nAbel\nCalvin\nDallas\nDane\nEddie\nHunter\nLandon\nSkyler\nSteve\nAlfonso\nBeau\nChance\nConnor\nElias\nEmilio\nErick\nIsrael\nLoren\nRodney\nTommy\nBlaine\nByron\nClint\nColby\nDamien\nDean\nEli\nEstevan\nFelipe\nFranklin\nMarshall\nNoah\nReginald\nRicky\nRiley\nTrenton\nWalter\nZackary\nAlfred\nAndy\nBrady\nBranden\nElijah\nGlenn\nJaron\nLyle\nMiles\nMyron\nNolan\nPablo\nRonnie\nSaul\nStuart\nWayne\nWeston\nAshton\nDominick\nEthan\nGavin\nGerald\nHarrison\nIgnacio\nJosiah\nKarl\nLeonard\nMarvin\nParker\nRoland\nSantiago\nSterling\nTomas\nAdolfo\nClifford\nDale\nDamian\nDarryl\nDuane\nEfrain\nElliot\nIrving\nJerome\nJosue\nKendall\nKody\nKory\nMalcolm\nNickolas\nRalph\nVance\nWyatt\nZachery\nBrenton\nBronson\nCarson\nDarrin\nElliott\nEsteban\nEvan\nGlen\nJarred\nJessie\nNelson\nRogelio\nSalvador\nSheldon\nStephan\nVernon\nAlexis\nAngelo\nDarrell\nDominique\nDwayne\nHarold\nJoaquin\nJoey\nKasey\nKendrick\nLeland\nLeo\nNathanael\nRolando\nSimon\nAlonso\nBraden\nBret\nBrock\nBruce\nJeff\nKellen\nKelly\nLeonardo\nLeslie\nMilton\nOctavio\nOliver\nTracy\nUriel\nAgustin\nArnold\nBernard\nBrad\nBryson\nChris\nClay\nCruz\nEverardo\nFrancis\nFrankie\nGregorio\nHugo\nHumberto\nJosef\nKaleb\nLeon\nLewis\nMyles\nPerry\nQuentin\nReid\nReynaldo\nRick\nRueben\nRyne\nSalvatore\nTed\nToby\nTristan\nVanessa\nWade\nWarren\nWestley\nAbram\nAdan\nAlvaro\nArron\nAsa\nAugustine\nAurelio\nAvery\nBrice\nCecil\nChaz\nClifton\nConner\nConrad\nDarin\nDarius\nDerick\nForrest\nFrederick\nGarret\nGuadalupe\nHarley\nHarry\nJarvis\nJerald\nJuancarlos\nKent\nKurtis\nLane\nLeonel\nLloyd\nLouie\nMaria\nNeal\nNikolas\nNoel\nRodrigo\nRusty\nSebastian\nShayne\nStanley\nTom\nTyrell\nWillie\nZane\nAllan\nAlvin\nBarry\nCorbin\nCourtney\nDallin\nDalton\nDaryl\nDevan\nDrake\nEarl\nEmery\nFederico\nFermin\nGarrick\nHarris\nHeath\nIrvin\nJace\nJackson\nJarrett\nJess\nJessica\nJim\nJohnathon\nJordon\nKirby\nMarkus\nMarty\nMauricio\nMelvin\nMoses\nNoe\nPete\nQuinn\nRamiro\nReymundo\nShannon\nSonny\nTy\nTylor\nValentino\nAlonzo\nAmmon\nAntony\nAriel\nAron\nArsenio\nBaby\nBrandin\nBrenden\nBrendon\nBryon\nCarter\nChadwick\nCheyenne\nClarence\nColt\nCordell\nDamon\nDavin\nDelbert\nDesmond\nDon\nElton\nEphraim\nEugene\nEzra\nFidel\nGordon\nGreg\nGregg\nHerbert\nHerschel\nHouston\nHoward\nIsidro\nJameson\nJaren\nJerod\nJulius\nKameron\nKeaton\nKelvin\nKen\nKenny\nKristofer\nLeander\nLeif\nLuciano\nMisael\nMohammad\nMonty\nMurphy\nMychal\nNick\nNorman\nReece\nReuben\nReyes\nRobbie\nRobin\nRory\nSam\nSamson\nSilas\nSpenser\nTerence\nTobias\nTrey\nUriah\nVan\nVince\nVinson\nWaylon\nWestin\nWill\nMichael\nChristopher\nJoshua\nDaniel\nMatthew\nDavid\nAndrew\nRobert\nRyan\nJoseph\nNicholas\nAnthony\nJames\nJustin\nKyle\nJohn\nJacob\nBrandon\nEric\nTyler\nJose\nSteven\nWilliam\nZachary\nJonathan\nKevin\nRichard\nAaron\nAdam\nThomas\nBenjamin\nBrian\nSean\nAlexander\nCody\nTimothy\nNathan\nJesus\nJuan\nDerek\nTravis\nMark\nJordan\nJeremy\nPaul\nSamuel\nJesse\nCharles\nStephen\nJason\nLuis\nDustin\nAustin\nFrancisco\nCarlos\nJeffrey\nPatrick\nScott\nGabriel\nVictor\nJared\nAdrian\nAlex\nCameron\nManuel\nKenneth\nEdward\nBryan\nGregory\nMiguel\nIan\nBradley\nMarcus\nShane\nAntonio\nPhillip\nVincent\nCorey\nAngel\nTaylor\nAlejandro\nChad\nCory\nShawn\nLogan\nMartin\nChristian\nMario\nTrevor\nRuben\nPeter\nJorge\nRaymond\nCasey\nJoel\nNathaniel\nSergio\nGeorge\nRicardo\nRoberto\nHector\nOscar\nErik\nDonald\nGarrett\nKeith\nJavier\nBrett\nDouglas\nChase\nFernando\nFrank\nIsaac\nTroy\nEdgar\nAlbert\nArmando\nLevi\nWesley\nBrent\nMitchell\nRamon\nDerrick\nLucas\nRonald\nSeth\nDevin\nEthan\nJulian\nSpencer\nCesar\nJohnny\nArturo\nEduardo\nGary\nIvan\nJonathon\nMathew\nPreston\nTanner\nDylan\nMarcos\nPhilip\nRaul\nAndres\nJaime\nKristopher\nAlberto\nColton\nCurtis\nDominic\nJeremiah\nCraig\nMarc\nAlan\nBlake\nDrew\nErnesto\nLuke\nColin\nRandy\nRafael\nClayton\nDanny\nMarco\nOrlando\nGilbert\nJohnathan\nLance\nPedro\nEnrique\nJulio\nCaleb\nCarl\nDillon\nGerardo\nRene\nArthur\nMax\nMicheal\nXavier\nBryant\nDennis\nBryce\nJoe\nRandall\nFabian\nJake\nOmar\nRicky\nAndre\nGrant\nJerry\nNicolas\nDevon\nHenry\nIsaiah\nIsrael\nJay\nJeffery\nLarry\nLawrence\nLorenzo\nNickolas\nRoman\nRoy\nShaun\nAbraham\nCollin\nTodd\nAbel\nDiego\nDonovan\nErick\nLouis\nAlfredo\nBeau\nGeoffrey\nHunter\nJack\nJon\nRussell\nAlfonso\nAllen\nBruce\nCalvin\nEmmanuel\nGuillermo\nGustavo\nSalvador\nClinton\nCole\nJimmy\nRudy\nTrenton\nJamie\nRay\nSkyler\nTony\nBrendan\nDarren\nDominique\nElias\nKarl\nMason\nPablo\nRoss\nTommy\nAlfred\nByron\nDamien\nDarrell\nEmilio\nEstevan\nMaxwell\nMicah\nNeil\nRogelio\nSheldon\nTerry\nTrent\nBobby\nErnest\nEvan\nGilberto\nLoren\nStephan\nVicente\nBlaine\nBranden\nChance\nColby\nDean\nEsteban\nLandon\nMiles\nRodney\nRodolfo\nBilly\nClifford\nClint\nCorbin\nEddie\nFrederick\nHarold\nIsmael\nJosue\nMalcolm\nRoger\nStefan\nTerrance\nTristan\nWarren\nWyatt\nAlexis\nAlvaro\nArnold\nBrock\nDakota\nEdwin\nFrankie\nFranklin\nGerald\nHugo\nJohnathon\nKelly\nLeonardo\nMarvin\nRalph\nSaul\nSteve\nTheodore\nTy\nZachery\nAlonzo\nBrady\nJaron\nLeonard\nLionel\nSam\nSantiago\nSkylar\nTyrone\nTyson\nWade\nZackery\nAndy\nAngelo\nBrennan\nConnor\nDamian\nDaryl\nDominick\nElijah\nEugene\nFelix\nHumberto\nIgnacio\nIrvin\nJayson\nJoaquin\nJoey\nJordon\nKendrick\nKody\nLee\nMaurice\nNoah\nNoel\nReuben\nSterling\nWayne\nWeston\nZachariah\nZackary\nAdan\nAlonso\nBrad\nBrendon\nCristian\nCruz\nDallas\nDamon\nEli\nEmanuel\nFelipe\nForrest\nGlenn\nHeath\nJessie\nKendall\nKirk\nKurtis\nLyle\nRick\nVance\nAlvin\nBen\nDallin\nDane\nEfren\nEverett\nFrancis\nGuadalupe\nHarvey\nJarrod\nJeff\nKaleb\nKasey\nMarshall\nMauricio\nMorgan\nNikolas\nRiley\nTyrell\nWalter\nZane\nAdolfo\nAldo\nAlec\nBo\nBret\nChandler\nChaz\nConrad\nDale\nDexter\nDwight\nEmerson\nGavin\nHarrison\nHoward\nJameson\nKameron\nKeegan\nLeo\nLewis\nMackenzie\nOctavio\nParker\nQuinton\nReginald\nRobin\nRolando\nTucker\nAshton\nAugustine\nBenito\nBernardo\nBryon\nCarson\nCarter\nDon\nDuane\nElliot\nFredrick\nGerman\nGreg\nGriffin\nIrving\nIsaias\nJarrett\nJerome\nJosiah\nKent\nLeonel\nMyron\nNeal\nNelson\nNico\nRamiro\nReynaldo\nRigoberto\nStanley\nTerrence\nTrey\nArsenio\nBrenton\nBronson\nBryson\nColten\nCordell\nCristopher\nDalton\nDarwin\nDeandre\nDonavan\nErnie\nEzekiel\nGarrick\nGarrison\nHarry\nIsidro\nJaren\nJermaine\nJimmie\nJulius\nKeenan\nKellen\nKelsey\nKorey\nKory\nMarquis\nMyles\nNathanial\nNestor\nNoe\nOliver\nPerry\nReyes\nRico\nRoderick\nRory\nSantos\nShannon\nSimon\nTomas\nBrandyn\nBrice\nCedric\nChanning\nCharlie\nChris\nConner\nDana\nDarryl\nDavis\nDelbert\nDerick\nDevan\nElliott\nEmery\nFederico\nFidel\nGene\nGlen\nHarley\nIsiah\nIssac\nJaymes\nJerald\nJessica\nJonas\nJustice\nKenny\nKurt\nLeander\nLeon\nLeroy\nLonnie\nLuciano\nMike\nMitchel\nMoises\nNolan\nNorman\nPete\nRonnie\nRyne\nSalvatore\nSammy\nStetson\nStuart\nThaddeus\nToby\nTory\nVince\nZechariah\nAdalberto\nAllan\nAmmon\nAriana\nArnoldo\nAron\nAshley\nAxel\nBaltazar\nBenny\nBrandt\nBrenden\nClarence\nClark\nClyde\nCooper\nCornelius\nDante\nDarrin\nDemetrius\nDereck\nDesmond\nDion\nDonnie\nDorian\nDwayne\nEdwardo\nErich\nEzra\nGarry\nGordon\nHans\nHeriberto\nHugh\nIra\nIsai\nJackson\nJairo\nJarod\nJarred\nJermey\nJim\nJohnnie\nJr\nKelvin\nKristofer\nLamar\nLane\nLeland\nLloyd\nLouie\nManny\nMaximillian\nMelvin\nMikel\nMilton\nMychal\nNikolaus\nNorberto\nOrion\nOwen\nQuentin\nRaphael\nRashad\nRex\nRodrigo\nRusty\nSantino\nSchuyler\nSidney\nTerence\nTheron\nTj\nTracy\nTylor\nUlysses\nUriah\nValentin\nValentino\nVernon\nWacey\nWilson\nMichael\nChristopher\nJoshua\nDaniel\nMatthew\nDavid\nAndrew\nRyan\nAnthony\nJoseph\nRobert\nNicholas\nJacob\nTyler\nJustin\nKyle\nJames\nJose\nJohn\nBrandon\nSteven\nZachary\nJonathan\nCody\nWilliam\nEric\nAaron\nThomas\nAlexander\nKevin\nRichard\nJordan\nBrian\nAdam\nLuis\nJesus\nTimothy\nJeremy\nBenjamin\nNathan\nSean\nJuan\nTravis\nAustin\nStephen\nJesse\nPatrick\nSamuel\nPaul\nMark\nGabriel\nJason\nCharles\nDustin\nCarlos\nFrancisco\nJeffrey\nTaylor\nAdrian\nDerek\nManuel\nCameron\nChristian\nAlex\nAlejandro\nJared\nMiguel\nScott\nVictor\nVincent\nKenneth\nShane\nTrevor\nEthan\nGregory\nShawn\nMartin\nNathaniel\nAntonio\nBryan\nErik\nJorge\nMarcus\nMario\nAngel\nBradley\nCory\nEdward\nRuben\nRicardo\nDylan\nHector\nCasey\nCorey\nIan\nGarrett\nKeith\nSergio\nChad\nRaymond\nChase\nJulian\nPhillip\nRamon\nLogan\nColton\nIsaac\nJavier\nJoel\nOscar\nFernando\nBrett\nEduardo\nRoberto\nSeth\nGeorge\nJulio\nSpencer\nFrank\nTroy\nEdgar\nPeter\nEnrique\nJonathon\nDouglas\nJake\nLevi\nRaul\nHenry\nRandy\nJeremiah\nJohnny\nMathew\nMitchell\nDevin\nGary\nTanner\nMarco\nDonald\nIvan\nLance\nRonald\nWesley\nCaleb\nCesar\nJaime\nOmar\nPhilip\nBlake\nBrent\nBryce\nDerrick\nDominic\nAndres\nColin\nPedro\nAlan\nArmando\nErnesto\nJohnathan\nAndre\nArturo\nCarl\nClayton\nGerardo\nLucas\nNicolas\nConnor\nCraig\nAlberto\nGilbert\nRene\nEmmanuel\nMarcos\nXavier\nAlbert\nJeffery\nJerry\nMax\nCurtis\nIsaiah\nKristopher\nMicheal\nJoe\nLarry\nLuke\nSkyler\nTodd\nAlfredo\nDanny\nDevon\nDonovan\nFabian\nRafael\nTony\nAllen\nDakota\nDillon\nElijah\nEmilio\nJack\nMarc\nMason\nSalvador\nCole\nErick\nLouis\nRoger\nRoman\nRussell\nArthur\nDalton\nDiego\nEddie\nLee\nRudy\nShaun\nAbraham\nDennis\nGustavo\nJessie\nJimmy\nLorenzo\nPreston\nRoy\nTy\nCollin\nDallas\nDamian\nJay\nJon\nJosue\nNickolas\nAbel\nDrew\nJackson\nMarshall\nSaul\nTrent\nHunter\nJosiah\nRicky\nSebastian\nTommy\nWyatt\nDamien\nEsteban\nGilberto\nTerry\nBobby\nBrendan\nBrock\nCalvin\nChance\nElias\nErnest\nGrant\nIsmael\nJamie\nKelly\nKody\nLawrence\nRiley\nTrenton\nZachariah\nAndy\nClinton\nEvan\nFrederick\nGerman\nGuillermo\nTheodore\nAlfonso\nBeau\nIgnacio\nJohnathon\nLeonard\nMicah\nRodney\nTyson\nAdan\nAlec\nAlexis\nGeoffrey\nJoaquin\nKarl\nNolan\nOrlando\nPablo\nRay\nSam\nSheldon\nWalter\nWeston\nZachery\nBret\nBryant\nDominique\nGavin\nLionel\nMiles\nNeil\nRonnie\nSkylar\nSterling\nSteve\nAlfred\nAlvin\nAngelo\nBrad\nBrendon\nByron\nCruz\nEstevan\nHugo\nIsrael\nKendall\nNoah\nParker\nRandall\nRogelio\nRoss\nStefan\nTyrell\nVance\nWade\nDale\nDarren\nDean\nElliot\nFelix\nGerald\nGiovanni\nHarrison\nHayden\nKendrick\nMalcolm\nMelvin\nStuart\nTerrance\nTyrone\nVicente\nWarren\nZane\nAllan\nBrady\nDan\nDwight\nEdwin\nForrest\nHarold\nHeriberto\nJordon\nKory\nKurt\nLeonardo\nMaxwell\nMoises\nMorgan\nQuinn\nRyne\nSantos\nBraden\nBranden\nBruce\nClint\nColten\nDarrell\nFelipe\nFreddie\nJoey\nKurtis\nLoren\nNelson\nNikolas\nQuinton\nRamiro\nRodrigo\nStephan\nTristan\nWayne\nBilly\nBrennan\nChris\nCristian\nEfrain\nEli\nEmanuel\nGene\nHeath\nJakob\nKeenan\nKirk\nKristian\nLeon\nMarvin\nNoel\nQuentin\nRalph\nRodolfo\nStanley\nSylvester\nTucker\nWillie\nZackary\nAgustin\nBarry\nBrandyn\nChandler\nCharlie\nCorbin\nDerick\nDusty\nFrankie\nGage\nGlenn\nGregorio\nIrving\nJarod\nJarrod\nLane\nLyle\nMaurice\nMauricio\nNathanael\nNestor\nNico\nNoe\nOctavio\nReuben\nSantiago\nShayne\nShelby\nVernon\nAugustine\nBrenton\nCarter\nColby\nConner\nCornelius\nDallin\nDamion\nDarin\nElliott\nEugene\nFederico\nFranklin\nFreddy\nGuadalupe\nGuy\nHarry\nHumberto\nIrvin\nIssac\nJaron\nJimmie\nJoseluis\nKeegan\nMyron\nNick\nNorman\nRandolph\nReynaldo\nRobin\nSimon\nTylor\nUriel\nVaughn\nAdolfo\nAlvaro\nAron\nBen\nBenny\nBernardo\nCarlton\nCordell\nDamon\nDarius\nDarrick\nDarryl\nDaryl\nEzekiel\nFausto\nFrancis\nGarret\nHerman\nIsidro\nJace\nJefferson\nJerome\nJess\nJim\nJuancarlos\nKameron\nKyler\nLeander\nLonnie\nMarquis\nMickey\nMike\nRaymundo\nShannon\nTed\nAdriel\nAmbrose\nArnold\nArsenio\nAurelio\nBlaine\nBrice\nBronson\nCarson\nChaz\nClarence\nClark\nCourtney\nCristobal\nDarrin\nDavis\nDelbert\nDesmond\nDexter\nDion\nDominick\nDonavan\nEfren\nGarrick\nGordon\nGreg\nHarlan\nHerbert\nJade\nJayson\nJeff\nJohnnie\nJulius\nKeaton\nKent\nKenton\nKohl\nLeo\nLeonel\nMychal\nNeal\nNiko\nOliver\nOwen\nPete\nReid\nRick\nRobbie\nSamson\nStetson\nTerence\nTerrence\nTomas\nUriah\nVince\nVirgil\nAbram\nAlonso\nAric\nAshley\nAshton\nBenito\nBernard\nBoyd\nBraxton\nBryon\nChanning\nColter\nConor\nCorwin\nDane\nDelano\nDenzel\nDevan\nDewayne\nDon\nDwayne\nEdgardo\nEdmund\nEmerson\nEmery\nErnie\nEvander\nEverardo\nFermin\nFred\nGerard\nGreggory\nHarley\nHolden\nIsiah\nJairo\nJamar\nJameson\nKaleb\nKolby\nKorey\nLeland\nLeroy\nLewis\nLloyd\nMarkus\nMarlon\nMarty\nMikel\nMyles\nNathanial\nNicholaus\nNigel\nQuintin\nRey\nReyes\nRocky\nRoderick\nRolando\nRory\nSammy\nShon\nSonny\nTalon\nTerrell\nToby\nTrace\nTrevon\nUlysses\nValentin\nMichael\nChristopher\nJoshua\nMatthew\nDaniel\nDavid\nAndrew\nRyan\nAnthony\nJoseph\nJacob\nKyle\nNicholas\nRobert\nTyler\nJustin\nJames\nZachary\nBrandon\nJose\nCody\nJohn\nSteven\nKevin\nAlexander\nEric\nJonathan\nWilliam\nJesus\nJordan\nAaron\nDylan\nRichard\nSean\nJuan\nLuis\nThomas\nAustin\nBrian\nBenjamin\nChristian\nNathan\nFrancisco\nSamuel\nPatrick\nAdam\nCarlos\nTimothy\nJesse\nJeremy\nTravis\nGabriel\nStephen\nMark\nJeffrey\nCharles\nTaylor\nJason\nAdrian\nVictor\nAlex\nMiguel\nPaul\nAngel\nShane\nScott\nManuel\nJorge\nJared\nVincent\nTrevor\nDustin\nDerek\nAlejandro\nGregory\nMartin\nMario\nCameron\nDillon\nBryan\nHector\nNathaniel\nGarrett\nEdward\nAntonio\nFernando\nMarcus\nKenneth\nShawn\nErik\nIan\nRuben\nLogan\nCory\nEdgar\nRaymond\nOscar\nRicardo\nSergio\nCasey\nRoberto\nEthan\nJoel\nJulian\nGeorge\nTanner\nBradley\nChase\nEduardo\nJavier\nSeth\nIsaac\nMarco\nPeter\nPhillip\nCaleb\nCesar\nCorey\nRamon\nRaul\nBrett\nOmar\nFrank\nIvan\nDevin\nBlake\nChad\nColton\nSpencer\nDakota\nTroy\nClayton\nLuke\nBryce\nConnor\nJake\nPreston\nCole\nKeith\nMarcos\nXavier\nAndres\nDominic\nKristopher\nDevon\nWesley\nJohnny\nJonathon\nJulio\nAlan\nBrent\nHunter\nLevi\nMitchell\nAlberto\nAlec\nGerardo\nGilbert\nDonald\nJohnathan\nEnrique\nIsaiah\nJaime\nPedro\nColin\nGary\nJoe\nLucas\nMathew\nArmando\nCraig\nRafael\nAlbert\nDouglas\nRene\nRonald\nDiego\nErnesto\nMason\nClinton\nCurtis\nDalton\nJeremiah\nNicolas\nAndre\nFabian\nArturo\nErick\nGustavo\nLance\nMax\nRandy\nAbraham\nArthur\nCollin\nLouis\nMicheal\nDerrick\nIsrael\nDanny\nElias\nEmilio\nEmmanuel\nJeffery\nRandall\nAlexis\nGilberto\nGuillermo\nMarc\nCarl\nDarren\nHayden\nJack\nAllen\nDonovan\nParker\nRay\nSkyler\nAlfredo\nBrendan\nDamian\nJon\nMarshall\nTony\nElijah\nGeoffrey\nGrant\nNickolas\nSalvador\nTerrance\nWyatt\nZachariah\nAbel\nDrew\nEddie\nHumberto\nJerry\nJohnathon\nRicky\nRoy\nTerry\nColby\nEdwin\nLawrence\nMaxwell\nPhilip\nRiley\nRodolfo\nRoman\nSaul\nTodd\nTy\nDamien\nDominick\nEsteban\nGerman\nJimmy\nLarry\nSebastian\nWeston\nChance\nEstevan\nJosiah\nJosue\nLeonard\nLeonardo\nMicah\nPablo\nTheodore\nAlfonso\nHarrison\nIsmael\nRussell\nStefan\nTrent\nBranden\nDennis\nFrankie\nHenry\nKody\nLandon\nLane\nOrlando\nRodney\nRogelio\nSantiago\nStephan\nTomas\nZachery\nAlfred\nBeau\nBryant\nCalvin\nGuadalupe\nJackson\nJoaquin\nLee\nMaurice\nMorgan\nNolan\nReynaldo\nSheldon\nWalter\nAngelo\nBilly\nDallas\nGage\nJessie\nLorenzo\nNoah\nRoger\nRudy\nSteve\nAriel\nBlaine\nClint\nDominique\nKory\nLyle\nMiles\nNathanael\nShelby\nWayne\nAdan\nAlonzo\nDamon\nEli\nEvan\nFrederick\nHarley\nJay\nKeegan\nLoren\nMalcolm\nRoss\nShaun\nTommy\nTyrone\nWarren\nBobby\nBrendon\nBruce\nDale\nEfrain\nErnest\nEugene\nFelipe\nGarret\nIgnacio\nJamal\nJamie\nKasey\nKeaton\nKurt\nTrenton\nVicente\nAvery\nBret\nByron\nClifford\nCristian\nDrake\nElliot\nFranklin\nGerald\nGlenn\nLeonel\nNorman\nRonnie\nSkylar\nTylor\nTyrell\nAlexandro\nAlvaro\nAndy\nCarlton\nCharlie\nClay\nConner\nCordell\nGavin\nGlen\nHugo\nJace\nJarred\nKelly\nKendall\nLeon\nMarkus\nMonty\nNikolas\nNoel\nRamiro\nTrey\nTristan\nZackery\nZane\nBrennan\nCedric\nChandler\nConor\nCruz\nDallin\nDamion\nDante\nDemetrius\nForrest\nGenaro\nGuy\nHarold\nHeriberto\nHernan\nIsiah\nIssac\nJarrod\nJayson\nJerome\nJoey\nKarl\nKirk\nKurtis\nLeo\nLewis\nMiguelangel\nNathanial\nNeil\nNelson\nReuben\nRick\nSage\nSam\nSantos\nTerrence\nWillie\nArnold\nAron\nBenny\nBrad\nBryson\nCarson\nCarter\nCoty\nDerick\nDwight\nEliseo\nGordon\nIrving\nJameson\nKaleb\nKendrick\nMarvin\nMoises\nMyron\nNoe\nOliver\nPete\nSterling\nStuart\nTevin\nTucker\nVernon\nZackary\nAbelardo\nAgustin\nAllan\nAlonso\nBo\nBrenton\nColten\nConrad\nCorbin\nDane\nDarin\nDario\nDarrell\nDarrin\nDillan\nDuane\nDuncan\nEdgardo\nEfren\nEmanuel\nEvander\nFrancis\nGregorio\nHarry\nHarvey\nIrvin\nJakob\nJordon\nKeenan\nKolton\nKorey\nLionel\nLukas\nMarcel\nMike\nNestor\nNigel\nOctavio\nParis\nPierce\nQuinn\nQuinton\nRalph\nRodrigo\nRoland\nRolando\nRyne\nShayne\nSimon\nStanley\nToby\nTyson\nUriel\nValentin\nVince\nWade\nWestley\nBenito\nBernardo\nBrady\nBrandt\nBrock\nBroderick\nChaz\nClarence\nClifton\nCourtney\nDavis\nDion\nDwayne\nDyllan\nEarl\nEdwardo\nElliott\nFelix\nForest\nFreddy\nGriffin\nGunnar\nJade\nJaron\nJeff\nJulius\nKeanu\nKeven\nLeander\nLeroy\nLonnie\nLuciano\nMaria\nMarlon\nMelvin\nMoses\nMyles\nNiko\nOwen\nRashad\nRaymundo\nReginald\nRigoberto\nRobin\nSammy\nSheridan\nTruman\nUriah\nAddison\nAldo\nAlvin\nAshton\nAxel\nBaby\nBrandyn\nBruno\nChester\nChris\nColter\nCullen\nDaryl\nDerrek\nDevan\nDewayne\nDomonic\nEdmund\nEleazar\nElizabeth\nEzekiel\nFausto\nGarrick\nGarth\nGibran\nHouston\nJarod\nJarvis\nJerrod\nJosemanuel\nKegan\nKent\nKirby\nKolby\nKristofer\nLeland\nLiam\nMackenzie\nMarty\nMauricio\nMilton\nNicholaus\nNico\nQuentin\nQuincy\nReyes\nRudolph\nSamir\nShay\nShea\nSkye\nSonny\nStewart\nTeddy\nThaddeus\nTory\nTracy\nUlysses\nVidal\nVirgil\nWill\nWilson\nMichael\nChristopher\nJoshua\nDaniel\nDavid\nMatthew\nAndrew\nJacob\nRyan\nBrandon\nTyler\nAnthony\nJoseph\nRobert\nZachary\nJose\nNicholas\nJustin\nJames\nCody\nKyle\nAlexander\nJohn\nJesus\nJonathan\nDylan\nAaron\nWilliam\nKevin\nSteven\nEric\nChristian\nAustin\nLuis\nJordan\nThomas\nJuan\nRichard\nNathan\nBrian\nAdam\nTimothy\nCarlos\nSean\nGabriel\nBenjamin\nPatrick\nFrancisco\nSamuel\nTaylor\nJesse\nJason\nAdrian\nMiguel\nManuel\nAlejandro\nMark\nJeremy\nTanner\nPaul\nAngel\nJeffrey\nStephen\nTravis\nCharles\nMartin\nJorge\nBryan\nVictor\nAlex\nTrevor\nDustin\nAntonio\nScott\nDerek\nJared\nShane\nCameron\nDillon\nConnor\nMario\nIan\nNathaniel\nKenneth\nFernando\nRicardo\nRuben\nRaymond\nSergio\nShawn\nEdward\nDevin\nGarrett\nEduardo\nMarcus\nVincent\nRamon\nDominic\nGeorge\nCory\nOscar\nChase\nHector\nLogan\nCasey\nJoel\nChad\nColton\nDakota\nEthan\nEdgar\nGregory\nErik\nJavier\nSeth\nCaleb\nCorey\nIvan\nRoberto\nAndres\nIsaac\nLuke\nJulio\nBradley\nCesar\nJake\nRaul\nAlan\nAlberto\nJulian\nGerardo\nOmar\nPedro\nSpencer\nBlake\nLucas\nMarco\nArmando\nXavier\nErnesto\nMitchell\nPeter\nBrett\nFrank\nJaime\nJohnny\nBryce\nPhillip\nCristian\nArturo\nMathew\nMarcos\nBrent\nJohnathan\nDalton\nDonald\nEnrique\nGilbert\nPhilip\nArthur\nHayden\nAbraham\nRafael\nDevon\nJonathon\nErick\nJeremiah\nJosue\nPablo\nSebastian\nAlbert\nColin\nIsaiah\nLevi\nRene\nZachery\nAlec\nAlfredo\nAndre\nDrew\nJoe\nKeith\nRonald\nWesley\nCollin\nDouglas\nIsrael\nRoman\nCurtis\nRandy\nTroy\nClinton\nDamian\nMason\nAbel\nClayton\nCole\nHenry\nHunter\nLance\nPreston\nGustavo\nJack\nKristopher\nMax\nNicolas\nDennis\nGrant\nJeffery\nBranden\nCarl\nCraig\nDamon\nDiego\nDominique\nDonovan\nLouis\nTony\nEmmanuel\nGuillermo\nMaxwell\nOrlando\nRicky\nDanny\nDerrick\nFabian\nSkyler\nTy\nElijah\nJay\nMicheal\nNickolas\nRiley\nDallas\nEsteban\nJon\nTodd\nElias\nEvan\nJerry\nJimmy\nKody\nChance\nDarren\nEdwin\nEmilio\nJohnathon\nLawrence\nLorenzo\nMalcolm\nMicah\nRoger\nSalvador\nTevin\nWeston\nWyatt\nAlfonso\nAllen\nEddie\nForrest\nGavin\nLandon\nNoah\nSantiago\nTrenton\nAlexis\nColten\nGeoffrey\nHarrison\nKaleb\nLeonard\nMarc\nRudy\nZachariah\nAdan\nCalvin\nDamien\nEstevan\nGilberto\nJosiah\nKory\nSaul\nSheldon\nWalter\nFelipe\nIsmael\nParker\nRussell\nSterling\nZane\nBrendan\nBrendon\nCarson\nColby\nGage\nIrvin\nIrving\nJackson\nJessie\nLeonardo\nMoises\nRandall\nRoy\nSimon\nTommy\nClint\nConner\nHarley\nLarry\nLee\nMarshall\nMiles\nNoe\nNolan\nRamiro\nRay\nTrent\nTrey\nZackary\nBobby\nBryant\nDean\nEmanuel\nGary\nKurt\nLeon\nLeonel\nLyle\nMorgan\nNikolas\nRodrigo\nShaun\nTerry\nTylor\nBeau\nBraden\nBrady\nBruce\nDale\nDominick\nGerald\nJace\nJordon\nLeo\nMarvin\nReyes\nRoss\nSkylar\nSteve\nTerrence\nTomas\nAlexandro\nAlonzo\nAndy\nAngelo\nAriel\nBrennan\nBrock\nByron\nDevante\nFelix\nGerman\nGuadalupe\nJamie\nKarl\nKyler\nNathanael\nOctavio\nQuinn\nRogelio\nRonnie\nStefan\nTre\nVicente\nAlfred\nAlonso\nAlvaro\nCooper\nDwight\nEli\nErnest\nFranklin\nHugo\nJamal\nJayson\nKendall\nKendrick\nQuentin\nRalph\nRaymundo\nReynaldo\nShelby\nAdalberto\nAugustine\nAusten\nBen\nBrenden\nCarter\nChandler\nColter\nDallin\nDarrell\nDavis\nDevan\nDwayne\nEdgardo\nEfrain\nEugene\nGarth\nGiovanni\nGonzalo\nIgnacio\nJaron\nJerome\nJoaquin\nJoey\nKameron\nKeegan\nKristofer\nNoel\nRodolfo\nStephan\nTerrance\nTheodore\nTristan\nWade\nWayne\nZackery\nAlvin\nBrandyn\nCedric\nChaz\nCristobal\nDesmond\nFrederick\nHarold\nIsaias\nJade\nJairo\nJalen\nJovan\nKeaton\nKirk\nKristian\nMauricio\nNathanial\nNiko\nOliver\nReid\nReuben\nRodney\nStuart\nUriel\nAidan\nAli\nAllan\nAron\nBret\nBryson\nCoty\nCruz\nDane\nDerick\nFreddy\nGarret\nGriffin\nHumberto\nIsidro\nKeenan\nKelly\nKirby\nKolton\nKorey\nLoren\nMike\nNestor\nPerry\nQuinton\nRey\nRigoberto\nRobin\nStanley\nToby\nAddison\nAdolfo\nAshton\nBenito\nBenny\nBilly\nBo\nCordell\nDarian\nDarius\nDillion\nDrake\nDylon\nEfren\nElliott\nEverett\nEzekiel\nFrancis\nFreddie\nGlen\nIsiah\nJakob\nJarrod\nKenny\nKent\nKolby\nLane\nMackenzie\nMarquis\nMaurice\nMilton\nMisael\nMyles\nReginald\nRick\nRoderick\nRoland\nSantos\nShayne\nTucker\nTyrone\nVance\nWarren\nAldo\nAvery\nBenjamen\nBradly\nCade\nConor\nConrad\nCorbin\nDamion\nDante\nDarien\nDario\nDaryl\nDemitri\nDomingo\nDorian\nEdwardo\nElliot\nEmil\nEvander\nFred\nGino\nGlenn\nGordon\nGraham\nHarry\nHeriberto\nHernan\nJess\nJusten\nLionel\nMarcelino\nMarkus\nNelson\nNico\nOrion\nPete\nReece\nRex\nRory\nRylan\nSolomon\nStetson\nStewart\nTalon\nTyson\nAhmed\nArron\nAurelio\nAxel\nBernard\nBernardino\nBradford\nBraulio\nBrice\nBrody\nCharlie\nClay\nClifford\nClifton\nColt\nDana\nDarin\nDarrin\nDe\nDevonte\nDion\nDuane\nEleazar\nErich\nEzra\nFrankie\nGarrick\nGarrison\nGildardo\nHeath\nHilario\nJohnnie\nJonah\nJoseluis\nJosh\nJulius\nKasey\nLeopoldo\nLeroy\nLouie\nLukas\nMarty\nMoses\nNeal\nReed\nRemington\nRhett\nRickey\nRyne\nSam\nSammy\nSawyer\nScotty\nThor\nTobias\nUlises\nWacey\nWill\nWilson\nYsidro\nZakary\nMichael\nChristopher\nDaniel\nTyler\nJoshua\nJacob\nMatthew\nDavid\nRyan\nJoseph\nJose\nZachary\nAnthony\nBrandon\nNicholas\nAndrew\nCody\nRobert\nAustin\nJames\nJustin\nJonathan\nJohn\nKyle\nAlexander\nJesus\nChristian\nEric\nKevin\nAaron\nSteven\nWilliam\nJuan\nLuis\nJordan\nThomas\nRichard\nDylan\nSean\nGabriel\nCarlos\nNathan\nFrancisco\nBrian\nSamuel\nAdam\nJesse\nBenjamin\nJason\nAngel\nConnor\nMiguel\nTimothy\nTaylor\nManuel\nAlex\nMark\nAlejandro\nJorge\nJeremy\nPatrick\nVictor\nStephen\nAdrian\nDustin\nCameron\nTanner\nBryan\nPaul\nMartin\nRicardo\nTravis\nTrevor\nCharles\nOscar\nEduardo\nMarcus\nAntonio\nDerek\nDillon\nJared\nKenneth\nJeffrey\nMario\nSergio\nJavier\nNathaniel\nCaleb\nIan\nGarrett\nRuben\nVincent\nScott\nShawn\nLogan\nSeth\nAlan\nDevin\nRaymond\nAndres\nRoberto\nIsaac\nDominic\nFernando\nShane\nDakota\nEdward\nChad\nColton\nMarcos\nPedro\nOmar\nJoel\nEdgar\nSpencer\nTroy\nCesar\nErik\nJulian\nCory\nHunter\nRamon\nXavier\nHector\nJake\nBryce\nCorey\nBlake\nMitchell\nFrank\nMarco\nChase\nGerardo\nIvan\nJulio\nRaul\nCristian\nLucas\nCasey\nBradley\nEthan\nGregory\nLuke\nGeorge\nArmando\nJonathon\nBrett\nCole\nEnrique\nRafael\nAlberto\nJack\nPhillip\nDevon\nPeter\nAlec\nJohnathan\nNicolas\nDamian\nPreston\nZachery\nMason\nArturo\nRene\nAlexis\nColin\nJeremiah\nJohnny\nCollin\nErick\nJaime\nMathew\nMax\nRoman\nAlfredo\nAndre\nDalton\nHenry\nRonald\nAlbert\nEmmanuel\nEvan\nFabian\nGrant\nGuillermo\nClayton\nKeith\nLevi\nLorenzo\nDonald\nElijah\nGilbert\nSebastian\nTy\nWesley\nDouglas\nGary\nKristopher\nDiego\nEmilio\nLance\nMaxwell\nPhilip\nBrendan\nGustavo\nJimmy\nMarc\nPablo\nAllen\nCraig\nErnesto\nJoe\nAbraham\nJackson\nLeonardo\nRiley\nSkyler\nTony\nFelipe\nIsaiah\nIsrael\nTrey\nBranden\nIsmael\nKody\nBrady\nBrent\nDarren\nDennis\nEdwin\nElias\nJerry\nRandy\nRudy\nArthur\nCedric\nConner\nCurtis\nDanny\nNickolas\nCalvin\nEddie\nEsteban\nEstevan\nHayden\nJosiah\nMicheal\nNolan\nRodolfo\nSaul\nTrenton\nDallas\nDamien\nDerrick\nHugo\nJon\nLarry\nLawrence\nMicah\nParker\nVicente\nCarter\nColby\nDallin\nForrest\nGilberto\nOrlando\nRogelio\nZackary\nZane\nAbel\nDominick\nNoah\nSalvador\nTodd\nTommy\nAlfonso\nCarl\nDrew\nKaleb\nLandon\nTrent\nTylor\nZachariah\nAdan\nByron\nDonovan\nEfrain\nFelix\nKendrick\nRandall\nRonnie\nSkylar\nSterling\nWeston\nAshton\nChance\nGarret\nGavin\nHarley\nJeffery\nJohnathon\nJosue\nMorgan\nRoger\nStefan\nSteve\nWalter\nAlonso\nAlvaro\nBilly\nBobby\nLeonel\nMalcolm\nMoises\nRicky\nRussell\nShaquille\nSheldon\nTheodore\nWade\nAlfred\nAvery\nBruce\nChandler\nDean\nDominique\nGeoffrey\nJalen\nJay\nKyler\nLeonard\nLouis\nNoe\nOctavio\nRamiro\nSantiago\nAndy\nDamon\nFrankie\nFrederick\nGage\nHumberto\nKameron\nKendall\nLee\nRoss\nTomas\nUriel\nWayne\nAngelo\nBrody\nDrake\nEfren\nEli\nGerman\nJessie\nKasey\nKristian\nLoren\nMackenzie\nMiles\nRay\nSimon\nStuart\nTerry\nTyrone\nCarson\nDavis\nErnest\nEzekiel\nGerald\nHarrison\nJakob\nJamie\nJonah\nMyles\nNelson\nOliver\nRodrigo\nRolando\nTyson\nWyatt\nAgustin\nAlvin\nBenny\nBlaine\nBrendon\nBryant\nBryson\nClifford\nColten\nCorbin\nDesmond\nEmanuel\nGarrison\nJayson\nJerome\nKeegan\nKory\nMaurice\nNathanial\nQuinn\nRoy\nRoyce\nTristan\nTyrell\nBraden\nClinton\nConor\nConrad\nDane\nDante\nDevan\nFred\nGuadalupe\nHarold\nHeriberto\nIrvin\nIssac\nJaron\nJoaquin\nKenny\nLane\nLeon\nLyle\nMarshall\nMike\nOsvaldo\nPayton\nRodney\nRoland\nSantos\nShaun\nTerrance\nTrevon\nValentino\nZackery\nAdrien\nAriel\nArnold\nBrandyn\nBrenden\nBrennan\nBrock\nColt\nDario\nDarrell\nDeion\nDerick\nDeven\nDimitri\nErnie\nEverett\nEzequiel\nGlen\nGunnar\nJefferson\nJoey\nJordon\nJulius\nKent\nKorey\nMarvin\nMikel\nRobin\nShay\nStephan\nTevin\nTre\nVirgil\nWarren\nZechariah\nAllan\nAsher\nAusten\nChaz\nClay\nColter\nDamion\nDaryl\nDemetrius\nDwight\nEarl\nEdwardo\nEugene\nFidel\nGlenn\nGordon\nGriffin\nHeath\nHoward\nIrving\nJace\nJunior\nJustice\nKellen\nKirk\nKole\nLiam\nMariano\nMauro\nMisael\nNeil\nNico\nRey\nReynaldo\nRick\nRigoberto\nRyne\nSage\nSammy\nSheridan\nToby\nWestin\nAdolfo\nAlexandro\nAli\nAlonzo\nAric\nArnoldo\nAugustine\nBenito\nBennett\nBrennen\nBrice\nCade\nChris\nCruz\nDale\nDarion\nDarius\nDevante\nDorian\nFreddie\nGonzalo\nHarry\nIgnacio\nIsiah\nJaren\nJorden\nJoseluis\nJovan\nJuancarlos\nKeenan\nKegan\nKelly\nKurt\nLeopoldo\nLeroy\nMarkus\nNathanael\nNestor\nNikolas\nNoel\nOwen\nPayson\nRalph\nReed\nReno\nSam\nSamual\nSeamus\nShelby\nSolomon\nStanley\nTalon\nTerrence\nTrace\nTucker\nWalker\nAbelardo\nAdalberto\nAddison\nAhmad\nAhmed\nAldo\nAmmon\nAron\nArron\nAustyn\nAxel\nBeau\nBill\nCeasar\nCharlie\nClarence\nClint\nCristobal\nDarian\nDarien\nDion\nDomingo\nDon\nDuane\nDuncan\nDwayne\nDylon\nElliot\nElliott\nErin\nFederico\nFermin\nForest\nFredrick\nGarrick\nGraham\nHernan\nHoracio\nJamal\nJarred\nJean\nJorgeluis\nKarl\nKeaton\nLeo\nLeslie\nLester\nLewis\nLionel\nLloyd\nLouie\nLuciano\nLukas\nMarques\nMarty\nMauricio\nMelvin\nMitchel\nMonty\nOtis\nQuincy\nQuinton\nRaphael\nRaymundo\nRoque\nRudolfo\nRusty\nSantino\nShayne\nUlises\nVance\nVincente\nWillie\nWinston\nMichael\nDaniel\nTyler\nJacob\nJoshua\nMatthew\nDavid\nChristopher\nBrandon\nAustin\nAnthony\nJoseph\nAndrew\nNicholas\nJose\nZachary\nRobert\nRyan\nCody\nKyle\nJesus\nAlexander\nJohn\nJustin\nJames\nWilliam\nJuan\nJonathan\nChristian\nKevin\nAaron\nLuis\nJordan\nGabriel\nEric\nNathan\nThomas\nDylan\nSteven\nRichard\nCarlos\nSamuel\nJesse\nAdam\nFrancisco\nBrian\nBenjamin\nSean\nManuel\nAlejandro\nJason\nTimothy\nAngel\nJeremy\nCharles\nAdrian\nConnor\nMiguel\nMark\nJorge\nTrevor\nPatrick\nLogan\nStephen\nAlex\nEduardo\nVictor\nPaul\nMarcus\nSergio\nMartin\nTanner\nTaylor\nRicardo\nScott\nGarrett\nJared\nDevin\nDustin\nFernando\nNathaniel\nOscar\nTravis\nAntonio\nDerek\nIan\nCristian\nIsaac\nCameron\nHunter\nJavier\nErik\nAndres\nEdgar\nMario\nShane\nBlake\nHector\nBryan\nKenneth\nCesar\nSeth\nVincent\nDakota\nCaleb\nEdward\nJeffrey\nRuben\nAlec\nXavier\nIvan\nJake\nMitchell\nCory\nDominic\nMarcos\nRaymond\nDillon\nOmar\nAlan\nBryce\nPedro\nRoberto\nColton\nEthan\nGregory\nRaul\nChase\nDalton\nJoel\nJulian\nMarco\nShawn\nAlberto\nDevon\nDiego\nBradley\nGeorge\nCole\nLuke\nNicolas\nCorey\nSpencer\nAlexis\nLucas\nRamon\nTroy\nClayton\nLevi\nRafael\nChad\nWyatt\nAndre\nArmando\nDonald\nElijah\nHayden\nJohnny\nRonald\nAlbert\nJack\nJulio\nMason\nBrett\nIsaiah\nKeith\nLorenzo\nCasey\nIsrael\nGerardo\nJohnathan\nPeter\nWesley\nEnrique\nGrant\nDerrick\nJaime\nBrendan\nCollin\nJonathon\nPhillip\nSkyler\nDamian\nErnesto\nJeremiah\nArturo\nChance\nEvan\nRene\nConner\nDallas\nFrank\nGustavo\nJosue\nColin\nDanny\nFabian\nMathew\nSebastian\nAlfredo\nAbraham\nEmilio\nEmmanuel\nEdwin\nErick\nMicheal\nPreston\nHenry\nRandy\nRiley\nDrew\nEsteban\nJonah\nLeonardo\nTrey\nAbel\nDominique\nGuillermo\nElias\nGilberto\nNoah\nParker\nJimmy\nSalvador\nPhilip\nTodd\nAllen\nBranden\nJackson\nMax\nSheldon\nTrenton\nWeston\nZachery\nBrent\nIsmael\nKody\nMaxwell\nNickolas\nRandall\nAngelo\nBobby\nDallin\nDouglas\nDrake\nGilbert\nMorgan\nOrlando\nRoman\nTheodore\nZackary\nAlfonso\nCurtis\nEstevan\nHarrison\nLane\nChandler\nMarc\nRaymundo\nSaul\nTy\nZane\nAvery\nBrady\nCalvin\nDamien\nJoe\nMicah\nNikolas\nRamiro\nRodolfo\nWalter\nArthur\nCooper\nGary\nGavin\nJamie\nJay\nJerry\nJohnathon\nKristopher\nPablo\nRoy\nTommy\nZachariah\nBeau\nBernardo\nCharlie\nCraig\nDonovan\nEfrain\nForrest\nJessie\nJoey\nKaleb\nKendall\nMarvin\nMoises\nRogelio\nVicente\nAshton\nCarson\nDarren\nDean\nDominick\nGerman\nJeffery\nLance\nLawrence\nLeonard\nLeonel\nRicky\nRodrigo\nRudy\nRussell\nSantiago\nShaun\nAriel\nBrenden\nBrennan\nCarl\nClay\nDarius\nIgnacio\nLarry\nLeo\nMoses\nReynaldo\nStefan\nTony\nAlexandro\nAndy\nBilly\nDamon\nDarian\nErnest\nIrvin\nJalen\nJon\nJosiah\nLandon\nMiles\nSterling\nSteve\nTerrance\nTylor\nUriel\nClinton\nColby\nEli\nGage\nKristian\nMaurice\nNoe\nQuinn\nRay\nRigoberto\nAdolfo\nAlonzo\nBrock\nDarien\nDennis\nFelipe\nGiovanni\nIssac\nLouis\nOrion\nReed\nRoger\nSkylar\nTomas\nTrent\nTyson\nZackery\nBrendon\nCruz\nDale\nDante\nDavis\nDillan\nFrederick\nHeriberto\nJakob\nMarshall\nMauricio\nNoel\nNolan\nOctavio\nTre\nWade\nAlfred\nAllan\nAlvaro\nBraden\nBryant\nBryson\nCedric\nDario\nHumberto\nJace\nJayson\nJoaquin\nKenny\nKyler\nOliver\nRodney\nShayne\nTyrone\nUlises\nWarren\nWayne\nAdan\nAgustin\nArnold\nCade\nCarter\nEfren\nFelix\nFrankie\nGunnar\nHernan\nJess\nKeegan\nLiam\nMalcolm\nNelson\nReuben\nTucker\nAusten\nBlaine\nBruce\nClint\nCristobal\nDane\nDeandre\nEddie\nEzekiel\nEzequiel\nHarley\nIsiah\nJaron\nJordon\nJulius\nKane\nKeanu\nKolby\nKurt\nLloyd\nMarquis\nMisael\nNestor\nQuentin\nSantos\nSawyer\nShea\nTerrell\nTrevon\nAddison\nAidan\nByron\nChris\nClark\nConor\nConrad\nDamion\nDenzel\nEdgardo\nEleazar\nEmery\nEugene\nForest\nGeoffrey\nGerald\nGlen\nJairo\nJamal\nJonatan\nKarl\nKasey\nKeenan\nKendrick\nKristofer\nLoren\nMackenzie\nMitchel\nNorberto\nRick\nRolando\nTerrence\nTravon\nValentin\nZechariah\nAlek\nBenito\nBrad\nBraxton\nBrennen\nBrenton\nBronson\nColten\nCordell\nDarion\nDarnell\nDarryl\nDusty\nEdwardo\nEliseo\nElmer\nEmanuel\nEzra\nFidel\nFrancis\nFransisco\nGino\nGrady\nGuadalupe\nHouston\nHugo\nIsidro\nJaden\nKelvin\nKolton\nLeander\nLee\nLukas\nMarcel\nMontana\nOwen\nRey\nRonnie\nRoss\nRusty\nSimon\nTevin\nTristan\nAdalberto\nAdriano\nAdrien\nAldo\nAli\nAlonso\nAlvin\nAri\nAron\nAustyn\nBen\nBo\nBrandan\nBret\nBrice\nChaz\nColter\nCorbin\nDemetrius\nDevante\nDeven\nDexter\nDion\nDorian\nDwight\nElisha\nFlavio\nFranklin\nGonzalo\nGregorio\nJarrod\nJayce\nJayden\nJericho\nJimmie\nJovany\nJustice\nKeaton\nKorey\nKory\nKurtis\nLamar\nLewis\nLyle\nMalachi\nMateo\nMelvin\nNathanial\nNeal\nNeil\nNick\nOsbaldo\nOsvaldo\nPaxton\nQuinton\nReymundo\nRhett\nRoyal\nSchuyler\nShaquille\nTorin\nVaughn\nWalker\nWaylon\nAlden\nAshley\nAxel\nBennett\nBrayan\nCain\nClarence\nClifford\nCorwin\nDarrin\nDavin\nDeion\nDeshawn\nDuncan\nEmmett\nFederico\nFred\nFreddy\nGarrison\nGene\nGraham\nGrayson\nGreyson\nHarry\nHerman\nHiram\nHolden\nIrving\nIsreal\nJarred\nJaylen\nJerome\nJessy\nJustus\nKade\nKalen\nKameron\nKieran\nKirk\nKonner\nLazaro\nLeroy\nLincoln\nLonnie\nLouie\nLucio\nMargarito\nMike\nMyles\nNathanael\nNicholaus\nNorman\nObed\nPerry\nPete\nQuintin\nReece\nRojelio\nRory\nSam\nScottie\nSerjio\nShiloh\nStanley\nStephan\nThaddeus\nTrace\nTrever\nTrevin\nTynan\nUbaldo\nVance\nMichael\nJacob\nDaniel\nTyler\nChristopher\nJoshua\nJose\nNicholas\nAustin\nMatthew\nBrandon\nDavid\nJoseph\nAnthony\nAndrew\nRyan\nZachary\nRobert\nJustin\nJames\nAlexander\nJesus\nCody\nChristian\nJuan\nKyle\nJonathan\nJohn\nLuis\nKevin\nGabriel\nAaron\nRichard\nWilliam\nEric\nSamuel\nBenjamin\nSteven\nCarlos\nThomas\nFrancisco\nJordan\nNathan\nDylan\nAngel\nMiguel\nAlejandro\nJesse\nAdam\nTimothy\nAdrian\nBrian\nManuel\nAlex\nJorge\nJason\nVictor\nLogan\nSean\nJeremy\nMark\nConnor\nTanner\nCharles\nNathaniel\nTrevor\nTaylor\nAntonio\nIsaac\nGarrett\nOscar\nJared\nMarcus\nSergio\nCameron\nMario\nPatrick\nAndres\nCristian\nMartin\nDakota\nDustin\nHunter\nDerek\nFernando\nRicardo\nCaleb\nEduardo\nElijah\nWyatt\nMarco\nTravis\nJavier\nStephen\nRoberto\nSeth\nHector\nPaul\nEdgar\nBryan\nAlexis\nOmar\nXavier\nAlec\nColton\nIan\nErik\nKenneth\nCesar\nDevin\nEdward\nIsaiah\nBlake\nChase\nJake\nMarcos\nCole\nJeffrey\nArmando\nScott\nLucas\nBradley\nSpencer\nBrett\nDillon\nBryce\nDominic\nTristan\nEthan\nHayden\nAlan\nPedro\nWesley\nGerardo\nDevon\nIvan\nRaul\nShawn\nFrank\nGeorge\nJoel\nJulian\nNoah\nMason\nShane\nJulio\nRaymond\nLuke\nRuben\nTroy\nLevi\nMitchell\nDiego\nEnrique\nPreston\nRamon\nJaime\nRafael\nVincent\nEvan\nGrant\nJack\nCasey\nCorey\nChance\nErick\nArturo\nChandler\nChad\nDalton\nEsteban\nAlberto\nEdwin\nCory\nGregory\nJohnny\nPeter\nRene\nBrendan\nClayton\nDamian\nPhillip\nColin\nJeremiah\nJosue\nLorenzo\nPablo\nNicolas\nAbraham\nBrent\nDallas\nSkyler\nErnesto\nRiley\nJonathon\nTy\nAlbert\nAlfredo\nEmmanuel\nIsrael\nSebastian\nJohnathan\nMorgan\nCollin\nKaleb\nZachery\nAndre\nConner\nEmilio\nFabian\nJonah\nHenry\nKeith\nTrey\nAlfonso\nDonald\nIsmael\nRonald\nGary\nTrenton\nZane\nCalvin\nElias\nJimmy\nKody\nKristopher\nMaxwell\nParker\nSaul\nBailey\nCraig\nDrew\nHarrison\nMax\nGilbert\nJackson\nMicheal\nSalvador\nEddie\nGiovanni\nMathew\nOrlando\nCarter\nDamien\nDonovan\nDouglas\nGage\nGavin\nGuillermo\nGustavo\nRoman\nTrent\nAidan\nBrenden\nCooper\nDrake\nLane\nLawrence\nMicah\nZackary\nAbel\nColby\nCurtis\nDanny\nDominique\nGilberto\nJoe\nLance\nLeonardo\nRudy\nAllen\nAlonso\nAndy\nDerrick\nPhilip\nSantiago\nTony\nDamon\nDarren\nDennis\nDominick\nFelipe\nLeonel\nLouis\nSheldon\nVicente\nAvery\nBranden\nBrennan\nCruz\nDallin\nForrest\nHarley\nHumberto\nJay\nJessie\nKeaton\nTomas\nUriel\nWeston\nAdan\nAlvaro\nBrady\nCarson\nNolan\nRodrigo\nSkylar\nTristen\nAlonzo\nArthur\nBernardo\nConor\nEstevan\nEzequiel\nIrvin\nJon\nJosiah\nKyler\nLandon\nLarry\nLiam\nRandy\nRodolfo\nAdolfo\nBrock\nCarl\nDante\nDean\nEfrain\nFelix\nJerry\nLeonard\nMalik\nMarc\nOctavio\nRamiro\nRicky\nRussell\nTriston\nTylor\nZachariah\nBryant\nFranklin\nIssac\nJoaquin\nMoises\nNickolas\nNoe\nQuentin\nRalph\nRandall\nRogelio\nSimon\nTheodore\nAdrain\nAlfred\nBraden\nDale\nElliot\nGeoffrey\nGuadalupe\nHeriberto\nJustice\nLee\nMauricio\nOliver\nQuinn\nRigoberto\nRoy\nSantos\nSawyer\nSterling\nTommy\nZackery\nAusten\nChaz\nColten\nDane\nDarius\nEli\nHugo\nIsiah\nJoey\nJohnathon\nKameron\nKeanu\nKeenan\nMalcolm\nMarkus\nRoger\nStephan\nTyrell\nWarren\nAnfernee\nAngelo\nBobby\nBryson\nByron\nDuane\nEzekiel\nFrankie\nFreddy\nGerman\nJace\nJeffery\nJonatan\nKendrick\nLeon\nNeil\nNikolas\nRolando\nShaun\nTodd\nWade\nWalker\nAgustin\nBilly\nBrendon\nClay\nCristobal\nDarien\nDevan\nDevante\nDion\nDuncan\nEmanuel\nErnest\nEugene\nGarrison\nJarred\nJordon\nKarl\nKeegan\nKory\nLukas\nLyle\nMarvin\nNelson\nOwen\nRay\nRaymundo\nRiver\nRoss\nShayne\nSteve\nTerry\nAbelardo\nAdalberto\nAddison\nAshton\nBrody\nChris\nDarian\nDesmond\nEfren\nFederico\nGrayson\nGunnar\nIgnacio\nJalen\nJefferson\nJulius\nKellen\nKelly\nKendall\nKristian\nMarshall\nNathanael\nNoel\nPeyton\nRonnie\nStefan\nStuart\nTalon\nTerrance\nTyson\nUlises\nWalter\nZakary\nAlek\nAlexandro\nAriel\nArnoldo\nBennett\nCade\nClint\nDarrell\nDeion\nDusty\nEdgardo\nFermin\nGarret\nGriffin\nHiram\nHolden\nJairo\nJusten\nKieran\nKurtis\nLincoln\nMaximilian\nMike\nMisael\nQuinten\nReid\nRico\nArnulfo\nAron\nAugustine\nBeau\nBraxton\nBrayan\nBrennen\nBrooks\nCedric\nClark\nColeman\nColt\nDagoberto\nDavis\nElliott\nFrederick\nFredrick\nGarett\nGerald\nGonzalo\nGordon\nGraham\nHarold\nHernan\nHoracio\nIrving\nJamie\nJayden\nJayson\nJerome\nJovani\nKegan\nKohl\nKolton\nLayne\nMackenzie\nMarquis\nMelvin\nMiles\nNestor\nNorberto\nOsvaldo\nPaulo\nQuincy\nRaphael\nReece\nReese\nRhett\nRodney\nSage\nTrever\nTrevon\nTyrone\nAdonis\nAllan\nAnton\nAri\nArron\nAugust\nBraulio\nBruce\nCamron\nCarlo\nClinton\nDakotah\nDarion\nDeandre\nDelbert\nDemetrius\nDenton\nDorian\nEverardo\nForest\nFred\nGunner\nHarris\nHarry\nIsai\nJade\nJameson\nJaren\nJarrett\nKai\nLloyd\nMarcel\nMarcelino\nMarlon\nMauro\nMikael\nNathanial\nNicklaus\nPerry\nReed\nRemington\nReuben\nSam\nStone\nTobias\nVernon\nAhmed\nAli\nAmmon\nArnold\nBarrett\nBenito\nBrad\nBrandan\nBrayden\nBraydon\nBrice\nCaesar\nCamden\nCarlton\nClifford\nClyde\nConrad\nCorbin\nCordell\nDan\nDarnell\nDarryl\nDawson\nDax\nDestin\nDon\nDraven\nDustyn\nEsai\nEverett\nFidel\nFrancis\nGalen\nGenaro\nGiovani\nGlenn\nGrady\nHudson\nIsidro\nJaden\nJakob\nJarod\nJaylen\nJermaine\nJonas\nJorden\nKaden\nKasey\nKeagan\nKillian\nKole\nKurt\nLeopoldo\nLionel\nLoren\nMarquise\nMckay\nMyles\nNigel\nNiko\nPayton\nQuinton\nRomeo\nRosendo\nSammy\nSantana\nShea\nSidney\nStanley\nStetson\nSyed\nTate\nTerrence\nToby\nTrevin\nTristin\nTucker\nUlysses\nValentin\nValentino\nWayne\nWillie\nMichael\nJacob\nDaniel\nJose\nTyler\nJoshua\nMatthew\nChristopher\nAnthony\nNicholas\nDavid\nAustin\nJoseph\nBrandon\nAndrew\nJesus\nZachary\nRyan\nChristian\nAlexander\nJustin\nRobert\nJonathan\nJames\nLuis\nJuan\nCody\nJohn\nCarlos\nJordan\nKyle\nGabriel\nWilliam\nKevin\nSamuel\nAngel\nAaron\nDylan\nNathan\nEric\nBenjamin\nFrancisco\nRichard\nThomas\nAdam\nSteven\nMiguel\nAlejandro\nManuel\nJason\nJesse\nAdrian\nJorge\nBrian\nConnor\nHunter\nEduardo\nAntonio\nNathaniel\nLogan\nMarcus\nVictor\nJeremy\nCaleb\nTimothy\nTristan\nTrevor\nBryan\nChase\nTaylor\nOscar\nMark\nPatrick\nSean\nCesar\nIsaac\nCameron\nStephen\nAlex\nMartin\nTanner\nAndres\nCharles\nRicardo\nFernando\nNoah\nSergio\nDakota\nMario\nWyatt\nCole\nIsaiah\nTravis\nDevin\nEdgar\nElijah\nColton\nDominic\nRuben\nAlan\nOmar\nEthan\nJared\nMarcos\nPaul\nRoberto\nGarrett\nAlec\nAlexis\nCristian\nSeth\nHector\nIan\nJake\nMarco\nJavier\nDerek\nDustin\nErik\nJulio\nXavier\nJoel\nSpencer\nBradley\nEdward\nHayden\nMason\nBryce\nRaymond\nJulian\nRaul\nBlake\nIvan\nVincent\nArmando\nGerardo\nPedro\nDamian\nRiley\nDillon\nJeffrey\nShawn\nChance\nKenneth\nShane\nDiego\nJack\nLucas\nLuke\nNicolas\nJaime\nRamon\nArturo\nChandler\nDevon\nSaul\nBrett\nErick\nEnrique\nGrant\nScott\nAlberto\nCollin\nGregory\nDalton\nJohnny\nClayton\nFrank\nMitchell\nEdwin\nRafael\nEmilio\nGeorge\nTroy\nAbraham\nFabian\nLevi\nCory\nPreston\nPeter\nRoman\nWesley\nCorey\nEmmanuel\nErnesto\nJonathon\nRene\nAlfredo\nColin\nHenry\nCasey\nSebastian\nEvan\nJosue\nPhillip\nChad\nIsrael\nJeremiah\nLorenzo\nDonald\nMathew\nZane\nGavin\nTrent\nBailey\nEsteban\nJohnathan\nOrlando\nPablo\nParker\nTrenton\nTristen\nGustavo\nJerry\nTy\nAndre\nDallas\nConner\nKyler\nSkyler\nDrew\nGage\nJonah\nBrendan\nGilbert\nJosiah\nKeith\nTrey\nBrent\nCalvin\nGuillermo\nJackson\nSalvador\nAlbert\nArthur\nCarter\nDamon\nElias\nJimmy\nRandy\nAbel\nJoe\nKaleb\nMaxwell\nPhilip\nRicky\nRodolfo\nKristopher\nMalik\nMicah\nMoises\nRodrigo\nZachery\nBrady\nGilberto\nLane\nLarry\nUriel\nCurtis\nDominick\nGiovanni\nHarrison\nJay\nKody\nMax\nSantiago\nAidan\nAndy\nAvery\nDanny\nIsmael\nLouis\nRonald\nAlonso\nAngelo\nDerrick\nDouglas\nFelipe\nJalen\nLandon\nMorgan\nBranden\nCarson\nDamien\nJon\nLance\nMarc\nNoel\nNolan\nZachariah\nAlfonso\nBrenden\nErnest\nIrvin\nIsiah\nLiam\nNickolas\nRogelio\nAdan\nBraden\nDallin\nEddie\nEstevan\nJoaquin\nKeaton\nRamiro\nRay\nRoy\nSheldon\nTristin\nWeston\nAllen\nBernardo\nCarl\nClay\nColby\nCraig\nDarian\nJakob\nKristian\nNelson\nNoe\nOliver\nRudy\nRussell\nVicente\nZackary\nAgustin\nBrody\nColten\nDarren\nDonovan\nEli\nEzequiel\nFrankie\nIsaias\nQuentin\nTriston\nAriel\nConor\nGary\nJohnathon\nMarvin\nNikolas\nQuinn\nRandall\nSkylar\nTheodore\nUlises\nBrennan\nBryson\nCooper\nEzekiel\nGriffin\nIssac\nJarrett\nKeegan\nMicheal\nTodd\nTomas\nTony\nWalter\nAdrain\nAlvaro\nAshton\nBrendon\nBruce\nCedric\nDante\nGarret\nGuadalupe\nIrving\nJeffery\nLawrence\nLeonardo\nOctavio\nTalon\nAlfred\nAusten\nBeau\nBilly\nCruz\nDarius\nFelix\nFrederick\nJaron\nKade\nMiles\nReece\nRoger\nSawyer\nTate\nTommy\nTrevon\nAlexandro\nAlonzo\nBryant\nByron\nCade\nDale\nDeandre\nDennis\nDominique\nDrake\nEugene\nForrest\nFred\nJerome\nJessie\nJoey\nLukas\nMalcolm\nMarlon\nNestor\nQuinton\nRoss\nSantos\nTucker\nTyson\nAddison\nAnfernee\nBennett\nChaz\nDeion\nDuncan\nEdgardo\nEfren\nEliseo\nEmanuel\nEzra\nFranklin\nGrayson\nJace\nJaden\nJairo\nJordon\nKeenan\nLazaro\nLeroy\nMarshall\nMauricio\nPayton\nRolando\nRonnie\nSage\nSimon\nTrystan\nTylor\nTyrell\nAldo\nBenny\nBraxton\nChris\nColeman\nDane\nDarien\nDillan\nDion\nElliott\nFreddy\nHernan\nHugo\nHumberto\nJayden\nJulius\nKameron\nKasey\nKeanu\nKelly\nLeo\nLeonel\nRaymundo\nRhett\nRick\nRigoberto\nSterling\nSteve\nTerrance\nTre\nTristian\nTyrone\nWalker\nWarren\nAdalberto\nAndreas\nArnoldo\nAustyn\nBret\nBrock\nCaden\nColt\nCorbin\nDemetrius\nDevan\nDorian\nEfrain\nGordon\nGunnar\nHeriberto\nJamie\nKaden\nKai\nKolton\nLoren\nMisael\nMyles\nNathanael\nNeil\nRalph\nShaun\nStefan\nTerrence\nTevin\nWade\nWayne\nZackery\nAllan\nAlton\nAlvin\nBenito\nCharlie\nClinton\nCullen\nDamion\nDarnell\nDarrell\nEmerson\nEverett\nFidel\nFrancis\nFreddie\nGeoffrey\nGerman\nGlenn\nGunner\nHiram\nHolden\nIgnacio\nJarrod\nJonas\nJovanny\nJustice\nJuwan\nKendall\nKorey\nLeander\nLeobardo\nLeon\nLeonard\nMariano\nMarquis\nMateo\nMaurice\nMaximilian\nMike\nMontana\nNeal\nNigel\nOsbaldo\nOsvaldo\nPeyton\nQuinten\nRaphael\nRiver\nRodney\nSam\nSidney\nTerry\nValentin\nAbelardo\nAdonis\nAdriano\nAmmon\nBen\nBrad\nBrayan\nCaesar\nClint\nCristobal\nDavin\nDawson\nDayton\nDe\nDean\nDeven\nDevyn\nDon\nDuane\nEdwardo\nElmer\nEmiliano\nFausto\nGarrison\nGerald\nGiovanny\nGraham\nHarley\nHarold\nJadon\nJavon\nJayson\nJefferson\nJermaine\nJess\nJorden\nJovany\nJulien\nKane\nKarl\nLee\nLuciano\nMarcelo\nMarkus\nMyron\nNathen\nObed\nPierce\nQuintin\nRaven\nReid\nRemington\nRoderick\nRonaldo\nRyley\nRyne\nSantana\nShelby\nStetson\nTobias\nUlysses\nVernon\nVincente\nZakary\nAngus\nArgenis\nArmand\nBaltazar\nBobby\nBrandan\nBranson\nBritton\nBruno\nCamden\nCannon\nCecil\nCodey\nConrad\nCordell\nDangelo\nDarin\nDarwin\nDomingo\nDonnie\nDraven\nEdson\nEleazar\nErasmo\nFiliberto\nGarett\nGenaro\nGiovani\nGregorio\nIzaak\nJamal\nJarred\nJayce\nJessy\nJohnnie\nJosh\nKenny\nKirk\nKory\nKristofer\nKurtis\nLeopoldo\nLouie\nMalachi\nMarty\nMaximiliano\nMohammad\nNick\nNico\nNorberto\nOwen\nPorter\nQuincy\nReginald\nRey\nReyes\nReynaldo\nRidge\nRitchie\nRocky\nRon\nRosario\nSammy\nSamual\nShay\nSheridan\nStephan\nStuart\nTariq\nTeddy\nToby\nTrace\nTracey\nTynan\nValentino\nWilson\nJacob\nMichael\nDaniel\nJose\nChristopher\nAnthony\nMatthew\nTyler\nJoshua\nAndrew\nDavid\nNicholas\nAustin\nJoseph\nBrandon\nJesus\nRyan\nZachary\nLuis\nChristian\nKyle\nJonathan\nAlexander\nJustin\nRobert\nJohn\nJuan\nJames\nWilliam\nJordan\nAngel\nGabriel\nAaron\nCarlos\nCody\nKevin\nDylan\nSamuel\nBenjamin\nNathan\nFrancisco\nBrian\nAlejandro\nMiguel\nThomas\nEric\nAntonio\nAlexis\nAdrian\nJason\nSteven\nLogan\nVictor\nIsaac\nAdam\nJorge\nRichard\nEthan\nNoah\nIsaiah\nTimothy\nFernando\nJesse\nSean\nHunter\nRicardo\nAlex\nCole\nNathaniel\nCaleb\nConnor\nManuel\nCameron\nTanner\nEduardo\nMartin\nTristan\nMark\nGarrett\nJared\nTrevor\nOscar\nElijah\nAndres\nSergio\nIan\nMario\nJavier\nDakota\nBryan\nColton\nHector\nMarco\nRuben\nDevin\nChase\nSeth\nStephen\nDustin\nTaylor\nXavier\nJulian\nPatrick\nDominic\nJeremy\nCesar\nPaul\nCharles\nErik\nRiley\nBryce\nMarcus\nCristian\nMason\nPedro\nBradley\nEdward\nEdgar\nIvan\nRaymond\nTravis\nJake\nDevon\nMarcos\nOmar\nSpencer\nWyatt\nAlec\nDiego\nLuke\nRoberto\nHayden\nRamon\nDerek\nShane\nVincent\nArmando\nJack\nAlan\nBlake\nDillon\nJeffrey\nEnrique\nJoel\nKenneth\nBailey\nNicolas\nRaul\nJulio\nLucas\nShawn\nGavin\nGerardo\nMitchell\nGrant\nArturo\nGregory\nJeremiah\nScott\nChandler\nCollin\nEmilio\nErick\nFabian\nAbraham\nChance\nEvan\nJohnathan\nLevi\nBrett\nCasey\nDamian\nGeorge\nRafael\nJonathon\nMax\nIsrael\nPeter\nRoman\nPablo\nTroy\nErnesto\nGustavo\nJosue\nSaul\nAlberto\nAlfredo\nDalton\nPreston\nBrendan\nFrank\nChad\nJackson\nRonald\nSebastian\nJaime\nMathew\nTrenton\nWesley\nLorenzo\nAbel\nDante\nKaleb\nZane\nBrady\nElias\nEsteban\nGage\nGuillermo\nJohnny\nTrey\nCorey\nTy\nConner\nParker\nClayton\nColin\nCory\nDrew\nEdwin\nJakob\nRene\nSalvador\nHenry\nKeith\nJimmy\nLiam\nCarter\nDonovan\nIsmael\nMaxwell\nPhillip\nAndy\nCalvin\nDallas\nHarrison\nSkyler\nTristen\nAdan\nJoe\nMicah\nCurtis\nDerrick\nEmmanuel\nJonah\nKody\nTrent\nAlbert\nJerry\nLeonardo\nMorgan\nTommy\nTony\nBrenden\nGiovanni\nKyler\nMalik\nNolan\nSantiago\nZachery\nAndre\nBrock\nMarc\nOrlando\nRicky\nRudy\nUriel\nBrent\nCarson\nDanny\nDennis\nGilberto\nLarry\nRodolfo\nAngelo\nBrody\nCooper\nFelipe\nGary\nGilbert\nJohnathon\nLouis\nNickolas\nPhilip\nRandy\nRussell\nSheldon\nSkylar\nAdolfo\nAlfonso\nBrennan\nColby\nIrvin\nJosiah\nLawrence\nQuinn\nZackary\nBobby\nDamon\nReynaldo\nVicente\nBranden\nBrayden\nDamien\nDominick\nDonald\nEli\nGriffin\nJace\nJoaquin\nJon\nKeegan\nLance\nRodrigo\nAidan\nAllen\nAlvaro\nArthur\nBryant\nBryson\nCade\nDallin\nLeonard\nMicheal\nQuentin\nRogelio\nSantos\nSimon\nZackery\nAldo\nAvery\nBrendon\nColten\nDavis\nEdgardo\nEstevan\nEzequiel\nHugo\nIssac\nJeffery\nLane\nOsvaldo\nRandall\nRigoberto\nTristin\nZachariah\nAlonzo\nBraden\nDouglas\nEfrain\nFelix\nGerman\nIsiah\nMiles\nNikolas\nTriston\nAlonso\nAusten\nBrayan\nCruz\nDarren\nDrake\nEddie\nGeoffrey\nGuadalupe\nHeriberto\nHernan\nJessie\nKameron\nKeaton\nKeenan\nNoe\nRaymundo\nRoger\nCedric\nChris\nDeion\nErnest\nHumberto\nIgnacio\nJayson\nJoey\nJustice\nLandon\nMauricio\nMoises\nNelson\nShaun\nTalon\nTerry\nAlfred\nAshton\nCarl\nCharlie\nCraig\nDean\nIsaias\nJalen\nJamie\nJarod\nKurt\nMarshall\nNoel\nOwen\nPayton\nRamiro\nRolando\nRoy\nSage\nTodd\nTucker\nTyrone\nTyson\nAugustine\nBraxton\nEmanuel\nEzekiel\nGlenn\nJordon\nJulius\nJunior\nKaden\nKendall\nKendrick\nKristian\nMarkus\nNathanael\nOctavio\nOrion\nReid\nSteve\nTomas\nWade\nWarren\nAgustin\nAllan\nAriel\nArnoldo\nAxel\nBeau\nBilly\nByron\nCaden\nDamion\nDarius\nDuncan\nElliot\nJaden\nJayden\nKolby\nKory\nKristopher\nLeonel\nMarvin\nRalph\nRay\nReed\nRomeo\nSterling\nTheodore\nWalter\nAbram\nAiden\nBlaine\nBo\nBrad\nCoby\nConor\nCorbin\nDesmond\nGarret\nGarrison\nGonzalo\nHyrum\nJairo\nJarrod\nJerome\nKai\nKobe\nLeroy\nLukas\nMisael\nMyles\nMyron\nOswaldo\nQuinton\nRodney\nRonnie\nStefan\nTrace\nTre\nTylor\nTyrell\nAdalberto\nAlexandro\nAron\nAustyn\nBennett\nBernardo\nClay\nClinton\nCordell\nDale\nDarion\nElisha\nElliott\nEzra\nForrest\nFreddie\nHarley\nJovan\nJovani\nJovany\nJude\nKenny\nKordell\nLee\nMalachi\nMalcolm\nMateo\nMoses\nNico\nOliver\nPete\nPeyton\nPierce\nRiver\nTate\nTerrell\nUlises\nValentin\nWayne\nWeston\nAntony\nBenito\nBenny\nBrandyn\nCarlo\nColeman\nCristobal\nCyrus\nDane\nDayton\nDeandre\nDevante\nDexter\nDominique\nEaston\nEliseo\nElmer\nEugene\nEverardo\nFred\nFrederick\nGino\nGraham\nHouston\nHudson\nJaron\nJarred\nJay\nJulien\nKade\nKarl\nLeo\nMaurice\nMaximilian\nMike\nOsbaldo\nRhett\nRylan\nTerrance\nWalker\nAbelardo\nAdrien\nAlijah\nAlvin\nBaby\nBernard\nBraulio\nBret\nBrigham\nBruce\nCullen\nDangelo\nDarian\nDarin\nDarnell\nDarrell\nDarrin\nDeshawn\nDeven\nDevyn\nDillan\nDimitri\nDomonic\nDuane\nDwayne\nEdwardo\nEfren\nEmery\nEmiliano\nEver\nFiliberto\nFrancis\nFrankie\nGarett\nHarold\nIrving\nIsac\nJorden\nKenyon\nKillian\nKirk\nKohl\nKristofer\nKurtis\nLoren\nMarcelo\nMarlin\nMarlon\nMaverick\nNathanial\nNikolai\nQuintin\nReyes\nRocky\nRudolph\nShiloh\nStetson\nTevin\nTobias\nToby\nTrever\nTrevin\nTrystan\nTylar\nVidal\nWaylon\nAddison\nAlessandro\nAli\nAmir\nAmmon\nAric\nArnold\nAsa\nAurelio\nBrando\nBranson\nBraydon\nBrennen\nChaz\nClarence\nColtin\nCornelio\nCristopher\nDandre\nDaryl\nDashawn\nDaylan\nDeon\nDerick\nDerik\nDillion\nDonte\nDraven\nDusty\nDyllan\nElvis\nFederico\nGabino\nGerald\nGordon\nGunnar\nGuy\nHeber\nHolden\nJameson\nJarrett\nJohnnie\nJosef\nJosh\nKeanu\nKelly\nKelvin\nKeven\nKieran\nKodi\nKolton\nKonner\nLayne\nLeobardo\nLuciano\nLyle\nMadison\nMarcelino\nMitchel\nNestor\nNicholaus\nObed\nPhoenix\nPorter\nRaven\nReece\nReilly\nRemington\nReno\nRoland\nRoss\nRyland\nRylee\nSammy\nSeamus\nServando\nSidney\nSolomon\nSonny\nStephan\nStephon\nStuart\nTayler\nTravon\nTruman\nTurner\nTyree\nVaughn\nVirgil\nJacob\nMichael\nJose\nDaniel\nAnthony\nChristopher\nJoshua\nDavid\nMatthew\nJoseph\nBrandon\nTyler\nNicholas\nJesus\nAndrew\nRyan\nAustin\nLuis\nZachary\nJonathan\nAlexander\nJuan\nRobert\nJames\nKyle\nChristian\nJohn\nJustin\nGabriel\nCarlos\nAngel\nJordan\nWilliam\nSamuel\nNathan\nDylan\nBenjamin\nAaron\nNoah\nAdrian\nKevin\nCody\nMiguel\nFrancisco\nThomas\nEthan\nEric\nJason\nAlejandro\nHunter\nIsaac\nVictor\nBrian\nCameron\nSteven\nAdam\nManuel\nJared\nAntonio\nJorge\nConnor\nTrevor\nIsaiah\nRicardo\nElijah\nChase\nNathaniel\nJeremy\nLogan\nAlex\nRichard\nCaleb\nTanner\nOscar\nAndres\nJesse\nFernando\nMark\nJulian\nSean\nTimothy\nTristan\nEduardo\nSeth\nBryan\nBryce\nMario\nCharles\nCole\nSpencer\nGarrett\nHector\nRuben\nAlexis\nCesar\nDominic\nEdgar\nCristian\nDevin\nRoberto\nJavier\nJack\nMarco\nMarcus\nXavier\nMarcos\nMason\nOmar\nWyatt\nJake\nMartin\nTravis\nGerardo\nIvan\nRaymond\nPaul\nTaylor\nPedro\nSergio\nPatrick\nIan\nStephen\nKenneth\nLuke\nNicolas\nRamon\nArmando\nAbraham\nAlec\nBlake\nDustin\nJoel\nRaul\nAlan\nJeffrey\nEnrique\nGavin\nColton\nVincent\nDakota\nDiego\nScott\nDerek\nBrendan\nJaime\nAlberto\nEdward\nHayden\nRafael\nJackson\nJohnathan\nRiley\nBradley\nBrett\nCollin\nErik\nZane\nGeorge\nJeremiah\nBailey\nDalton\nDamian\nShane\nWesley\nGregory\nHenry\nMitchell\nArturo\nColin\nDillon\nEmilio\nPreston\nShawn\nDevon\nEvan\nLucas\nMathew\nFrank\nJakob\nJohnny\nSaul\nFabian\nChandler\nErnesto\nIsrael\nJulio\nClayton\nErick\nLeonardo\nMaxwell\nPeter\nChance\nCorey\nGrant\nJosue\nLorenzo\nMax\nGustavo\nJonathon\nLevi\nAlfredo\nCarter\nConner\nSebastian\nJosiah\nParker\nCooper\nEsteban\nLiam\nTrenton\nDamien\nElias\nGage\nMicah\nEdwin\nEmmanuel\nAidan\nCasey\nChad\nCory\nOrlando\nSalvador\nAndy\nCalvin\nDante\nDawson\nTrent\nTroy\nCarson\nIsmael\nRoman\nAbel\nGuillermo\nHarrison\nJonah\nBrennan\nGiovanni\nJoe\nMarc\nPablo\nSkyler\nBrenden\nDominick\nDrake\nGilberto\nRonald\nAlbert\nDonovan\nRodrigo\nTristen\nAndre\nDouglas\nEstevan\nNickolas\nDonald\nKaleb\nKeegan\nRodolfo\nTrey\nDallas\nFelipe\nJimmy\nSantiago\nUriel\nZachery\nAdan\nGriffin\nJoaquin\nKristopher\nNikolas\nRogelio\nBraxton\nBrent\nDrew\nEddie\nJarod\nJerry\nKeith\nPhillip\nShaun\nBranden\nCade\nCurtis\nGilbert\nJay\nRandy\nRene\nRicky\nTheodore\nAshton\nBrendon\nChris\nDamon\nJalen\nJayson\nKyler\nMoises\nNolan\nPayton\nSkylar\nTommy\nZachariah\nAlfonso\nBrady\nDerrick\nEfrain\nEli\nEmanuel\nIsiah\nJohnathon\nLane\nLeonel\nNoe\nTucker\nWeston\nZackary\nAllen\nBraden\nBrock\nCedric\nDallin\nGary\nLance\nLouis\nMalik\nPeyton\nTomas\nUlises\nAlonzo\nAngelo\nArthur\nAvery\nBrayan\nDanny\nDuncan\nHugo\nJaden\nJayden\nKobe\nMauricio\nMorgan\nMyles\nTriston\nVicente\nBobby\nBrody\nCorbin\nCraig\nDarius\nDarren\nDennis\nJeffery\nKaden\nKody\nKristian\nLandon\nMalcolm\nOctavio\nPhilip\nQuinton\nTerrell\nTristin\nAlvaro\nColby\nEzekiel\nIrvin\nJace\nJustice\nKeenan\nMateo\nMicheal\nMiles\nOrion\nOsvaldo\nQuentin\nQuinn\nRylan\nSheldon\nSteve\nWarren\nAdolfo\nAriel\nBryant\nByron\nColten\nEzequiel\nFelix\nGrayson\nJessie\nKeaton\nMarshall\nMarvin\nNathanael\nRudy\nTodd\nTrace\nAldo\nBrayden\nBryson\nDamion\nDeven\nLarry\nLawrence\nMisael\nRalph\nRay\nRolando\nRonaldo\nSimon\nTy\nAgustin\nBernardo\nCharlie\nDarian\nEfren\nGonzalo\nGuadalupe\nHernan\nHumberto\nIgnacio\nIssac\nJairo\nJarrod\nJon\nKade\nLeo\nNoel\nOwen\nSage\nTyson\nAdalberto\nBilly\nCaden\nCristobal\nDavis\nDean\nDeandre\nFranklin\nHarley\nHolden\nIrving\nJonas\nMalachi\nMaurice\nRhett\nRigoberto\nRoger\nRoy\nRussell\nTony\nTyrone\nZackery\nAdriano\nAugustine\nBeau\nBenny\nBruce\nCordell\nDale\nEliseo\nEzra\nGerald\nIsaias\nKai\nKurtis\nNelson\nOliver\nRomeo\nTylor\nAllan\nAlonso\nArnold\nArnoldo\nBlaine\nBrigham\nCarl\nCruz\nCyrus\nDane\nDesmond\nElliot\nFrankie\nFrederick\nGeoffrey\nGregorio\nHiram\nJaylen\nJoey\nJordon\nJordy\nKasey\nKolby\nKolton\nKurt\nMarcelo\nMarkus\nMaximilian\nMaximillian\nMoses\nNathanial\nRamiro\nRaymundo\nRey\nRiver\nSantos\nStone\nTerry\nAdonis\nAdriel\nAlexandro\nAlvin\nBen\nBenito\nBennett\nBraeden\nClay\nConor\nDandre\nDeshawn\nDevan\nDimitri\nDion\nDominik\nDorian\nEdgardo\nEmiliano\nGino\nIsreal\nJarom\nJaron\nJarrett\nKameron\nKieran\nKordell\nLayne\nLeon\nLuiz\nMackenzie\nReed\nReynaldo\nSterling\nTalon\nWade\nWalker\nWalter\nBraydon\nBrennen\nBrice\nBrooks\nCanyon\nDavion\nDexter\nDillan\nDwayne\nErnest\nEverett\nFrancis\nGarret\nGarrison\nGerman\nGildardo\nGiovanny\nGlenn\nHoward\nIsaak\nIshmael\nJamie\nJarred\nJerome\nJett\nJonatan\nKendall\nKendrick\nLivan\nLuciano\nMariano\nMaximiliano\nMike\nNehemiah\nNot\nRandall\nRaphael\nReece\nRodney\nSammy\nSolomon\nTate\nTerrance\nTobias\nTrevon\nTristian\nTyrell\nVincente\nWayne\nAmmon\nAnfernee\nAurelio\nAxel\nBrandyn\nBrennon\nBrenton\nCamron\nChaz\nClifford\nColeman\nColter\nCristopher\nDayton\nDevyn\nEdwardo\nGenaro\nGianni\nHarold\nHilario\nIsacc\nIsai\nIsidro\nJagger\nJase\nJerod\nJevon\nJorden\nJordi\nJosef\nJustus\nKarl\nKarson\nKelvin\nKohl\nLee\nLouie\nLukas\nMarcelino\nMohamed\nMyron\nObed\nPorter\nQuinten\nQuintin\nRamses\nRemington\nRosario\nRoss\nRyland\nSam\nSamson\nSantino\nSidney\nSilas\nStefan\nStephan\nToby\nWestin\nAbram\nAiden\nAlek\nAlexandre\nAlfred\nAmir\nAnderson\nAri\nAron\nArron\nAsher\nAugust\nAusten\nBradly\nBraedon\nBronson\nBryon\nCeasar\nClifton\nClint\nDangelo\nDarin\nDarrin\nDemetrius\nDerick\nDevlin\nDiamond\nDomingo\nDonte\nDraven\nElder\nEthen\nEverardo\nFiliberto\nFreddie\nFreddy\nGlen\nGrady\nGraham\nGunnar\nHarry\nHeath\nHerman\nIra\nIssiah\nJadon\nJamal\nJamison\nJosh\nJovani\nJustyn\nKale\nKane\nKeanu\nKellen\nKillian\nKirk\nKole\nLamar\nLazaro\nLeobardo\nLeslie\nLino\nMacario\nMarcel\nMarques\nMatias\nMelvin\nMilton\nMitchel\nMohammad\nNeal\nNestor\nPayson\nPete\nPhoenix\nPierce\nQuincy\nRaudel\nRaymon\nReggie\nReuben\nRex\nReyes\nRonnie\nRory\nRosendo\nSeamus\nStetson\nTavian\nTeagan\nTerence\nTre\nTrinity\nTrystan\nTurner\nTyree\nUlisses\nUlysses\nValentin\nVidal\nWillie\nWolfgang\nYovani\nJacob\nMichael\nJose\nDaniel\nChristopher\nJoshua\nDavid\nAnthony\nMatthew\nNicholas\nJoseph\nBrandon\nTyler\nAndrew\nLuis\nRyan\nJesus\nZachary\nJuan\nJonathan\nAngel\nCarlos\nChristian\nGabriel\nAlexander\nJames\nAustin\nJustin\nJohn\nDylan\nRobert\nNoah\nWilliam\nNathan\nKyle\nKevin\nSamuel\nAaron\nBenjamin\nAlejandro\nJordan\nFrancisco\nBrian\nAdrian\nEthan\nThomas\nIsaac\nIsaiah\nCody\nCameron\nEric\nHunter\nNathaniel\nAdam\nSteven\nMiguel\nJason\nManuel\nJorge\nJared\nVictor\nLogan\nAntonio\nCaleb\nSeth\nRicardo\nConnor\nRichard\nElijah\nTanner\nTrevor\nMario\nOscar\nEduardo\nSean\nFernando\nChase\nDiego\nAlex\nBryan\nTimothy\nJavier\nJulian\nSergio\nCole\nOmar\nRuben\nAndres\nDominic\nJeremy\nCesar\nMark\nJesse\nJack\nDevin\nMarcus\nMartin\nIvan\nPatrick\nGarrett\nMason\nIan\nArmando\nHector\nWyatt\nCharles\nXavier\nBryce\nJake\nJoel\nSebastian\nCristian\nEdgar\nPedro\nTristan\nEdward\nErik\nAlexis\nEvan\nIsrael\nMarco\nHayden\nLuke\nStephen\nSpencer\nPaul\nAlec\nEnrique\nTravis\nAlan\nJackson\nMarcos\nRaymond\nAbraham\nArturo\nGavin\nColton\nPreston\nRamon\nRoberto\nVincent\nRaul\nBlake\nChandler\nGerardo\nShane\nDamian\nErick\nParker\nDakota\nLucas\nRiley\nAlberto\nCarson\nShawn\nFrank\nBradley\nFabian\nMitchell\nNicolas\nJulio\nMaxwell\nRafael\nScott\nErnesto\nTaylor\nGustavo\nJohnathan\nBrendan\nJaime\nJakob\nKaleb\nKenneth\nDerek\nEmilio\nPeter\nGeorge\nJeremiah\nAlfredo\nJeffrey\nRoman\nCollin\nMax\nDalton\nDamien\nDevon\nDillon\nChance\nDawson\nPablo\nSkyler\nBailey\nBrenden\nDustin\nGrant\nHenry\nRene\nConner\nEsteban\nJosiah\nJosue\nLevi\nLiam\nSaul\nAbel\nEmmanuel\nCade\nLeonardo\nTrey\nZane\nCasey\nJaden\nIsmael\nCarter\nElias\nGregory\nHarrison\nLorenzo\nTroy\nAndre\nBrady\nJayden\nRodrigo\nBrett\nGage\nJohnny\nBraden\nColin\nEdwin\nGuillermo\nMathew\nMicah\nPhillip\nZackary\nAidan\nKeith\nTrenton\nCalvin\nGiovanni\nOrlando\nDominick\nGilberto\nNickolas\nSalvador\nCory\nDallas\nKyler\nRonald\nZachariah\nAvery\nClayton\nDanny\nDonovan\nDrew\nTrent\nWesley\nAlbert\nBrennan\nCorey\nJimmy\nJonathon\nRandy\nRodolfo\nBrayden\nDonald\nJoaquin\nQuentin\nAngelo\nBranden\nDamon\nJace\nJalen\nKaden\nSantiago\nUlises\nCooper\nDouglas\nHugo\nTy\nBrayan\nBrock\nEzequiel\nJonah\nKobe\nNolan\nPayton\nAlfonso\nAndy\nChad\nDrake\nGilbert\nGriffin\nAdan\nArthur\nCaden\nFelipe\nMarc\nPeyton\nRamiro\nRogelio\nUriel\nCurtis\nDallin\nIsiah\nIssac\nKody\nLandon\nLarry\nMauricio\nMicheal\nMorgan\nRigoberto\nBryson\nCorbin\nIrvin\nJerry\nJessie\nMiles\nMoises\nOctavio\nOwen\nShaun\nTristen\nAllen\nBobby\nBrent\nCruz\nDennis\nDerrick\nEmanuel\nEstevan\nEzekiel\nHumberto\nJoe\nLouis\nPhilip\nQuinn\nRicky\nTomas\nVicente\nAlvaro\nAshton\nDante\nDean\nFelix\nGuadalupe\nJeffery\nKeegan\nLawrence\nLeonel\nSteve\nBrendon\nBrody\nColten\nConor\nDamion\nGarret\nGary\nKai\nKristopher\nMariano\nNoel\nPorter\nRay\nSimon\nTyrese\nAdolfo\nClay\nEddie\nEfrain\nEli\nGrayson\nIgnacio\nJarod\nLance\nMateo\nNikolas\nOliver\nOrion\nOsvaldo\nRonnie\nSage\nSantos\nSkylar\nTyrell\nWalter\nAlonso\nBryant\nColby\nDuncan\nEzra\nHeriberto\nKade\nNoe\nTyson\nWeston\nAllan\nAlonzo\nCyrus\nDarren\nDeven\nJayson\nJohnathon\nJon\nKeaton\nKolton\nLeo\nMalachi\nReyes\nRolando\nSheldon\nSolomon\nTate\nTommy\nValentin\nZackery\nAgustin\nBraulio\nCamden\nCraig\nGeoffrey\nHolden\nJaren\nJay\nKeanu\nKendrick\nMisael\nMyles\nNathanial\nNestor\nQuinton\nReid\nRoy\nRudy\nTriston\nWarren\nAdalberto\nAiden\nAlexandro\nAriel\nBennett\nBilly\nByron\nCedric\nChris\nDane\nDarian\nEfren\nEmiliano\nEverett\nIsaias\nJadon\nJaron\nJarrod\nKasey\nLee\nLeon\nLeonard\nMalik\nMarvin\nRandall\nRomeo\nSterling\nTerrell\nTheodore\nTucker\nZion\nBruce\nConrad\nDavis\nDeshawn\nDevyn\nJarrett\nJustice\nLane\nMalcolm\nMaximiliano\nOsbaldo\nReed\nRoger\nRyland\nStephan\nTalon\nTerrence\nTerry\nTylor\nZachery\nAldo\nAnakin\nBenito\nBrenton\nCarl\nCordell\nDangelo\nDarius\nDeandre\nEdgardo\nElliot\nFreddy\nGerman\nGiovanny\nIsai\nJairo\nJamie\nJayce\nJoey\nJovany\nKameron\nKeenan\nKristian\nLewis\nMarquise\nMarshall\nMoses\nNotnamed\nQuintin\nReece\nReese\nRoss\nTobias\nTony\nTrevon\nTyrone\nUlysses\nAbram\nAddison\nAhmad\nAlfred\nAli\nAmmon\nAntoine\nAri\nAugustine\nAxel\nBeau\nBernardo\nDario\nDeclan\nDesmond\nDion\nDominique\nEaston\nElmer\nEugene\nGenaro\nGregorio\nHarley\nHarold\nHernan\nIsidro\nJamison\nJerome\nJonas\nJordon\nJovan\nKenny\nLukas\nMarcelino\nMike\nNathanael\nNikolai\nPayson\nRussell\nRylan\nStefan\nTodd\nWade\nWalker\nAmir\nAsher\nAyden\nBraeden\nBrennen\nCristobal\nDashawn\nDevan\nDonavan\nEliseo\nEmerson\nFederico\nFrankie\nFranklin\nFrederick\nGonzalo\nGraham\nGreyson\nIsacc\nJovani\nJustus\nKaiden\nKelton\nLeopoldo\nLincoln\nLuiz\nMarquis\nMckay\nMelvin\nNeil\nRaymundo\nReginald\nRey\nReynaldo\nTerrance\nToby\nTrevin\nTristian\nWilson\nAdriano\nAdrien\nAlek\nAlijah\nArnold\nAusten\nBen\nBenny\nBraedon\nBraxton\nBret\nBronson\nCamron\nCarlo\nCeasar\nClifford\nCoby\nColt\nCutter\nDavian\nDavon\nDaylon\nDeangelo\nDemetrius\nDestin\nDimitri\nDwight\nElliott\nEriberto\nErwin\nEsai\nEver\nFrancis\nGlenn\nGordon\nGunner\nHiram\nIram\nIrving\nIzaiah\nJaiden\nJamal\nJarom\nJarred\nJeron\nJosef\nJude\nJulien\nKeagan\nKendall\nKieran\nKoby\nKolby\nKonner\nMarkus\nMarlon\nMauro\nMaximilian\nNelson\nNorberto\nPaxton\nQuincy\nSawyer\nSilas\nSky\nSonny\nStuart\nTrinity\nTristin\nValentino\nWayne\nWinston\nAhmed\nAlvin\nAntony\nAntwan\nAries\nArnoldo\nAron\nBlaine\nBraydon\nBrycen\nCamilo\nCelso\nCharlie\nClaudio\nDandre\nDarien\nDarin\nDavion\nDe\nDelbert\nDenver\nDevante\nDillan\nDomingo\nDorian\nDraven\nEllis\nElvis\nErnest\nErvin\nFaustino\nFavian\nFidel\nFransisco\nFred\nGarett\nGarrison\nGino\nGrady\nHudson\nJaeden\nJavon\nJaxson\nJensen\nJerrick\nJoan\nJonatan\nJovanny\nJunior\nKadin\nKarl\nKellen\nKelvin\nKian\nKordell\nKorey\nKurtis\nLanden\nLatrell\nLeandro\nLionel\nLoren\nMackenzie\nMarcel\nMarcoantonio\nMaurice\nMaximillian\nMikel\nPete\nPhoenix\nPierce\nRalph\nRhett\nRio\nRiver\nRodney\nRory\nSabastian\nSam\nSheridan\nStone\nTevin\nTheron\nTrace\nTre\nTristyn\nTrystan\nUriah\nWayde\nZack\nZakery\nJacob\nMichael\nDaniel\nJose\nAnthony\nJoshua\nJesus\nMatthew\nDavid\nAndrew\nJoseph\nChristopher\nBrandon\nTyler\nNicholas\nLuis\nZachary\nAngel\nRyan\nGabriel\nAlexander\nChristian\nJonathan\nJuan\nCarlos\nJustin\nEthan\nSamuel\nKevin\nDylan\nBenjamin\nNoah\nAustin\nJames\nRobert\nNathan\nAdrian\nJohn\nKyle\nWilliam\nBrian\nIsaac\nFrancisco\nJordan\nMiguel\nThomas\nAlejandro\nIsaiah\nEric\nHunter\nJorge\nJason\nCameron\nAaron\nAdam\nLogan\nSebastian\nManuel\nJulian\nJared\nBryan\nNathaniel\nVictor\nConnor\nFernando\nElijah\nAlex\nOscar\nCaleb\nAntonio\nCody\nSteven\nAlexis\nRichard\nMario\nEduardo\nSeth\nRicardo\nTrevor\nAndres\nJack\nTanner\nXavier\nJeremy\nCesar\nIvan\nMason\nDiego\nSean\nChase\nNotnamed\nRuben\nCole\nGarrett\nIan\nWyatt\nHector\nMarco\nHayden\nBryce\nDominic\nEdgar\nSergio\nDevin\nJavier\nOmar\nTimothy\nMark\nTristan\nJesse\nEvan\nLuke\nMarcos\nCharles\nCristian\nAlan\nJackson\nPedro\nBlake\nGavin\nMartin\nErik\nVincent\nJake\nRoberto\nDamian\nEnrique\nGerardo\nJoel\nMarcus\nAidan\nCarson\nEdward\nErick\nRamon\nJakob\nRaul\nTravis\nNicolas\nPatrick\nStephen\nColton\nPreston\nSpencer\nJaden\nRiley\nJeremiah\nArmando\nJaime\nParker\nAlec\nDevon\nJosue\nPaul\nRafael\nChance\nRaymond\nAlberto\nKenneth\nDalton\nGage\nIsrael\nJulio\nBradley\nDerek\nDillon\nEmilio\nLucas\nBrendan\nJohnathan\nScott\nWesley\nJayden\nMaxwell\nRoman\nCollin\nDakota\nGrant\nSaul\nArturo\nJeffrey\nMax\nShawn\nAbraham\nAndre\nColin\nErnesto\nGeorge\nZane\nTaylor\nLeonardo\nAlfredo\nSkyler\nDawson\nGustavo\nShane\nElian\nDustin\nFabian\nRene\nBrett\nCaden\nFrank\nLevi\nAxel\nCarter\nChandler\nClayton\nJosiah\nKaleb\nMathew\nPeter\nAbel\nCorey\nJalen\nAndy\nEdwin\nElias\nEmmanuel\nGregory\nJohnny\nBrenden\nCade\nDante\nPablo\nBraden\nDonovan\nJonathon\nLorenzo\nMitchell\nTy\nCory\nHarrison\nKobe\nCooper\nDamien\nHenry\nMarc\nBailey\nGiovanni\nMoises\nRodrigo\nTrey\nTroy\nBrayan\nIsmael\nNolan\nTrenton\nCalvin\nConner\nDominick\nGilberto\nJace\nSalvador\nBrayden\nDamon\nGriffin\nJonah\nLiam\nMicah\nAlbert\nAshton\nRonald\nSantiago\nAngelo\nCasey\nChad\nKaden\nKeegan\nLance\nMateo\nMauricio\nMicheal\nOrlando\nAlfonso\nAlonso\nDrake\nGuillermo\nDallin\nEsteban\nMorgan\nRandy\nTrent\nBranden\nGilbert\nJerry\nJoaquin\nNikolas\nTommy\nZachery\nAdan\nBrennan\nDanny\nEstevan\nKeith\nPhillip\nSimon\nZackary\nAllen\nIsiah\nJimmy\nKade\nKristopher\nRogelio\nVicente\nAiden\nBrady\nColby\nCorbin\nDrew\nGary\nLane\nLeonel\nNickolas\nOwen\nPayton\nRodolfo\nTristen\nAgustin\nAlvaro\nBrody\nRamiro\nEzekiel\nFelipe\nIssac\nJay\nJayson\nLouis\nOctavio\nQuinn\nSkylar\nUlises\nBryson\nCruz\nCurtis\nDarian\nDean\nEddie\nJessie\nLandon\nLarry\nTate\nAdolfo\nAldo\nAvery\nCristobal\nDerrick\nDonald\nEmanuel\nEzra\nGuadalupe\nJoseluis\nJuancarlos\nJulien\nKyler\nMiles\nMoses\nPeyton\nWeston\nBrock\nBryant\nCarl\nDarius\nHumberto\nJonatan\nKai\nKody\nKristian\nMalik\nOliver\nQuentin\nRicky\nShaun\nSteve\nAlonzo\nArthur\nBrendon\nBrent\nCamden\nDennis\nEli\nEzequiel\nGerman\nGrayson\nHolden\nJarrett\nJoe\nNoel\nOrion\nRudy\nTomas\nTucker\nBraxton\nDallas\nDamion\nDarren\nFelix\nGarret\nIrvin\nMalachi\nMalcolm\nNathanial\nNoe\nPhilip\nRay\nRolando\nRylan\nTony\nWalter\nAlfred\nArnold\nChris\nDouglas\nHarley\nJairo\nJarod\nJaron\nJayce\nJaylen\nJoey\nJon\nKameron\nLeonard\nOsvaldo\nSantos\nTristin\nBen\nByron\nCedric\nDorian\nEfrain\nHarry\nHeriberto\nHugo\nIsaias\nJustice\nMarcoantonio\nMisael\nNathanael\nReynaldo\nSage\nSheldon\nTalon\nTheodore\nAllan\nBrigham\nCamron\nCraig\nDale\nDeandre\nEfren\nGarrison\nIrving\nJadon\nJohnathon\nJoseangel\nKoby\nLoren\nMaximus\nNeil\nQuinten\nRaymundo\nReece\nRigoberto\nRoger\nRoy\nStefan\nTyrell\nTyson\nUriel\nWarren\nArath\nAyden\nColten\nDesmond\nDevan\nDuncan\nEmiliano\nFrankie\nFranklin\nGlenn\nHoracio\nIgnacio\nJaren\nJordon\nJovany\nJulius\nKeanu\nKeaton\nLeo\nMariano\nMarvin\nMaximilian\nReyes\nRomeo\nRonaldo\nSterling\nTriston\nTylor\nTyrese\nAbram\nAli\nAlvin\nAurelio\nBraeden\nBrennen\nBruce\nCayden\nClay\nCristopher\nDane\nDangelo\nDarrell\nDimitri\nErnest\nEugene\nEverardo\nFidel\nGraham\nHernan\nHiram\nJarred\nJovani\nKeenan\nLanden\nLawrence\nLukas\nMarshall\nPorter\nReed\nRodney\nRyder\nSabastian\nSantana\nTobias\nToby\nTodd\nTre\nUlysses\nWade\nZachariah\nZackery\nZechariah\nZion\nAddison\nAugustine\nBeau\nBennett\nBlaine\nBraydon\nCharlie\nCoby\nConor\nDavin\nDeangelo\nDemetrius\nDeven\nElliot\nGonzalo\nGunnar\nJaiden\nJarrod\nJett\nJonas\nJordy\nJude\nMarcelo\nMyles\nNestor\nObed\nRalph\nReid\nRussell\nRyland\nShayne\nTrace\nUlisses\nUriah\nAbran\nAdriel\nAhmed\nAriel\nAustyn\nBenito\nBrycen\nCauy\nChaz\nCyrus\nDavis\nDayton\nDevonte\nEdgardo\nEleazar\nEliseo\nElisha\nElvis\nEthen\nEverett\nFreddy\nGannon\nGunner\nHassan\nJovan\nJovanni\nJunior\nKarsten\nKendall\nKenny\nLeon\nMarcanthony\nMarkus\nMatthias\nMaurice\nMiguelangel\nMikel\nMilton\nOswaldo\nPierce\nQuintin\nQuinton\nReuben\nRobbie\nRohan\nRoland\nSilas\nTerrence\nTerry\nThaddeus\nTruman\nTyrone\nVance\nWayne\nZakary\nAlek\nAlexandro\nAlexzander\nAri\nAron\nBernardo\nBobby\nBraedon\nBrodie\nBruno\nCarsten\nChet\nColeman\nDarien\nDaunte\nDaxton\nDeclan\nDeion\nDevyn\nDion\nEdwardo\nElliott\nFavian\nFlavio\nFrancis\nFransisco\nFredy\nGregorio\nGuy\nHarold\nHeber\nHilario\nHudson\nIsidro\nIzaiah\nJamison\nJan\nJarett\nJasper\nJavan\nJerome\nJoan\nKane\nKarson\nKendrick\nKory\nLeobardo\nLouie\nLuisgustavo\nMarcello\nMarquez\nMarquis\nMauro\nMaximiliano\nMike\nMitchel\nNelson\nNicklaus\nPayson\nRoyce\nSabian\nSantino\nSimeon\nSolomon\nTerrell\nTorin\nTrenten\nVincente\nWill\nAbimael\nAden\nAmado\nAmmon\nAnton\nAntony\nArian\nAric\nArik\nArnulfo\nBilly\nBrandyn\nBrannon\nBranson\nBrennon\nBronson\nCarlo\nCarlton\nClinton\nCordell\nCristofer\nCullen\nDarin\nDario\nDarrion\nDaylen\nDemetri\nDenzel\nDevlin\nDillion\nDominique\nDonavan\nDraven\nDuane\nEaston\nEddy\nEmery\nFausto\nFermin\nFrederick\nGamaliel\nGeoffrey\nGerald\nGreg\nHerbert\nHerman\nHoward\nHyrum\nIsacc\nIsael\nJacobo\nJaeden\nJamal\nJaxon\nJaxson\nJeffery\nJermaine\nJorden\nJosejuan\nJoshuah\nJustino\nKain\nKamron\nKellen\nKelvin\nKenyon\nKeshawn\nKeven\nKieran\nKlayton\nKolby\nKolton\nKristofer\nKurtis\nLayton\nLazaro\nLee\nLeland\nLeopoldo\nLuc\nLuisalberto\nLyle\nMelvin\nMontana\nNash\nNehemiah\nNico\nRaphael\nReese\nRey\nRhett\nRick\nRiver\nRonnie\nRyker\nSam\nSamson\nSeamus\nSidney\nSkye\nStephan\nStone\nTayler\nValentin\nWillis\nZander\nJacob\nMichael\nJose\nAnthony\nMatthew\nJesus\nJoshua\nDaniel\nChristopher\nAndrew\nJoseph\nDavid\nJonathan\nBrandon\nAngel\nLuis\nNicholas\nZachary\nEthan\nTyler\nRyan\nGabriel\nCarlos\nAlexander\nChristian\nDylan\nJuan\nSamuel\nKevin\nRobert\nJustin\nBenjamin\nJohn\nWilliam\nNathan\nNoah\nJames\nKyle\nAdrian\nIsaac\nLogan\nAustin\nIsaiah\nBrian\nAaron\nAlejandro\nFrancisco\nJorge\nJason\nCameron\nElijah\nJordan\nMiguel\nHunter\nVictor\nEric\nThomas\nJulian\nNathaniel\nCaleb\nConnor\nEduardo\nSebastian\nBryan\nAlex\nAdam\nManuel\nOscar\nJack\nCody\nCesar\nRichard\nDiego\nAntonio\nTrevor\nAlexis\nFernando\nLuke\nSeth\nTanner\nCole\nJared\nRicardo\nSteven\nMario\nJavier\nMason\nXavier\nJackson\nSergio\nIvan\nSean\nAidan\nDevin\nNotnamed\nAndres\nDominic\nIan\nMarco\nCharles\nChase\nJesse\nCristian\nEdgar\nGarrett\nAlan\nMark\nWyatt\nHector\nCarson\nEvan\nMarcus\nRoberto\nGavin\nMarcos\nTristan\nDamian\nTimothy\nGerardo\nRuben\nOmar\nMartin\nPatrick\nAxel\nJaden\nErik\nRaul\nJeremy\nErick\nPreston\nJoel\nRamon\nBryce\nHayden\nLucas\nRiley\nRafael\nArmando\nColton\nNicolas\nSpencer\nFabian\nJayden\nTravis\nArturo\nDerek\nPaul\nRaymond\nJaime\nJosue\nPedro\nJulio\nCarter\nKaleb\nVincent\nBlake\nEmmanuel\nEnrique\nEdward\nAbraham\nJake\nLiam\nEdwin\nStephen\nJeremiah\nMicah\nSaul\nShane\nLevi\nErnesto\nShawn\nAlberto\nGage\nRoman\nAlec\nCollin\nDevon\nIsrael\nGiovanni\nMaxwell\nScott\nBrendan\nDillon\nElias\nJeffrey\nMax\nGrant\nLeonardo\nParker\nSkyler\nBrayan\nCaden\nKenneth\nOrlando\nPeter\nColin\nGeorge\nChance\nAbel\nSalvador\nBradley\nBrayden\nColby\nEsteban\nKaden\nTaylor\nAlfredo\nCooper\nIsmael\nZane\nHenry\nJohnathan\nRene\nWesley\nDakota\nFrank\nLorenzo\nCade\nJosiah\nPablo\nDamien\nEli\nEmilio\nGuillermo\nConner\nDustin\nJakob\nJohnny\nKobe\nOwen\nTrent\nZackary\nAndy\nBrett\nChandler\nNolan\nClayton\nRonald\nBraden\nGregory\nGustavo\nJonah\nSantiago\nAshton\nDalton\nJace\nMoises\nOsvaldo\nPhillip\nAiden\nJalen\nMathew\nTrey\nTroy\nAlbert\nAndre\nCorbin\nDawson\nDominick\nEmiliano\nJimmy\nJoaquin\nRogelio\nTyson\nDonovan\nFelipe\nTrenton\nHarrison\nLance\nNickolas\nTristen\nUriel\nVicente\nAngelo\nBailey\nBrady\nDanny\nMauricio\nRodrigo\nZackery\nDrake\nGilberto\nLandon\nLeonel\nMalachi\nMitchell\nRodolfo\nRudy\nAldo\nBryson\nChad\nPayton\nShaun\nBrenden\nBrennan\nEzequiel\nIssac\nMiles\nMoses\nQuinn\nAdan\nAvery\nDallin\nFelix\nGary\nJoe\nKade\nKeegan\nKyler\nMarc\nMaximus\nNikolas\nRandy\nRussell\nBrent\nBrock\nCasey\nDallas\nEmanuel\nGilbert\nHugo\nIsiah\nJaiden\nJoseluis\nTy\nAlvaro\nCory\nIrvin\nIsaias\nKolby\nNoe\nBrody\nCalvin\nDante\nDarren\nMalik\nAriel\nArthur\nBryant\nCamden\nCorey\nCurtis\nDale\nEfrain\nEzekiel\nGerman\nJerry\nJohan\nLane\nMorgan\nMyles\nOctavio\nPeyton\nSage\nSkylar\nTomas\nUlises\nAlfonso\nAmmon\nDarius\nDrew\nErubiel\nEstevan\nGriffin\nIgnacio\nJaron\nJay\nJayson\nJoan\nJonathon\nKai\nKody\nPhilip\nRamiro\nRigoberto\nTony\nTyrell\nBraeden\nDane\nDorian\nDouglas\nIzaiah\nJuancarlos\nKeanu\nKeaton\nKristopher\nLouis\nNestor\nOliver\nQuentin\nRylan\nTommy\nTriston\nWarren\nZachariah\nAllen\nBranden\nBrendon\nDamon\nDonald\nHyrum\nJarod\nJaxon\nJaylen\nJovani\nKeith\nMarshall\nMaximilian\nMicheal\nSteve\nTheodore\nTodd\nAdolfo\nAlonso\nBrigham\nCharlie\nDamion\nDarian\nDean\nDeandre\nDeclan\nHeriberto\nJaren\nJustice\nKristian\nLawrence\nOrion\nReece\nRomeo\nSimon\nCedric\nChris\nCristobal\nCruz\nElian\nHumberto\nJeffery\nJoey\nMarvin\nRaymundo\nRicky\nAdriano\nAgustin\nAli\nAlonzo\nCraig\nDavis\nDevan\nGuadalupe\nJair\nJovany\nJulius\nKendall\nLarry\nLeon\nLukas\nMateo\nRay\nReese\nRoger\nRolando\nWalter\nZachery\nBen\nBennett\nBernardo\nByron\nCayden\nCoby\nDominique\nEddie\nFrankie\nGarret\nJairo\nJessie\nLeo\nMaximiliano\nNoel\nSantos\nSterling\nTate\nTitus\nTristin\nTucker\nWeston\nAbram\nBobby\nBrad\nBrennen\nBrycen\nDennis\nEliseo\nEzra\nFranklin\nGrayson\nHolden\nIrving\nIsai\nJarrett\nJon\nJovan\nJunior\nKameron\nKarson\nLuisangel\nMarcelino\nMarlon\nMiguelangel\nPorter\nQuinton\nRonnie\nTalon\nZion\nAlfred\nBraxton\nBrice\nCarl\nClinton\nColten\nCristopher\nDavion\nDemian\nEaston\nEdgardo\nElliot\nEloy\nHudson\nJadon\nJamal\nJohnathon\nJonas\nJoseantonio\nJude\nKenny\nLincoln\nMalcolm\nMarkus\nMaurice\nMauro\nMelvin\nMilton\nNathanael\nRandall\nRhett\nRoy\nSolomon\nStone\nToby\nTrevon\nWade\nZander\nAbran\nAmir\nAnderson\nAntony\nAugustine\nAyden\nBeau\nBraydon\nCaiden\nCyrus\nDarrell\nDerrick\nDesmond\nDevyn\nDominik\nDuncan\nElisha\nElliott\nFidel\nGiovanny\nHernan\nIsidro\nJaeden\nJarom\nJavin\nJaydon\nJett\nJonatan\nJordy\nKaiden\nKayden\nKillian\nKoby\nLewis\nLuciano\nMarcelo\nMarcoantonio\nMohamed\nMohammed\nRick\nRoland\nSam\nSheldon\nStefan\nTobias\nTrace\nTylor\nTyrone\nWalker\nWilson\nXander\nAdalberto\nAddison\nAdriel\nAlek\nArnold\nBret\nBruno\nCanyon\nChaz\nClay\nConor\nDion\nEmmett\nFederico\nFlavio\nFreddie\nGonzalo\nHarley\nHarry\nIsaak\nIsac\nJovanny\nKane\nKarim\nKelvin\nKole\nMike\nMisael\nMyron\nNathen\nNehemiah\nNeil\nParis\nPayson\nQuincy\nRalph\nReid\nSamson\nUlysses\nUriah\nVincente\nAbelardo\nAden\nArnoldo\nBraedon\nBraiden\nBroderick\nBruce\nClark\nColtin\nConrad\nCristofer\nDangelo\nDario\nDarwin\nDaryl\nDerick\nDonavan\nDraven\nEfren\nEllis\nElvis\nErnest\nEverett\nGenaro\nGeoffrey\nGerald\nGino\nGiovani\nGregorio\nGreyson\nGunnar\nGunner\nHarold\nImanol\nIram\nJamie\nJamison\nJan\nJarred\nJayce\nJermaine\nJerome\nJordon\nJoseangel\nJosef\nJulien\nKale\nKarl\nKelly\nKristofer\nLee\nLeobardo\nMaximillian\nNico\nOsbaldo\nPhoenix\nRosario\nRyland\nRyley\nSammy\nShayne\nTerrance\nTerry\nTom\nTre\nTyrese\nValentin\nWayne\nWill\nYair\nAbdiel\nAhmed\nAlden\nAsher\nAugustus\nBaltazar\nBenito\nBlaine\nBrannon\nBrennon\nBridger\nBronson\nCale\nCampbell\nClifford\nCodey\nColt\nCrew\nDan\nDayton\nDemetrius\nDeondre\nDeven\nDevlin\nDimitri\nEnrico\nErvin\nEsequiel\nEver\nFaustino\nForrest\nFred\nFreddy\nGarett\nGeovanni\nGeronimo\nGiancarlo\nGlenn\nGordon\nGuy\nHarris\nHoracio\nIra\nJacobo\nJerimiah\nJorden\nJourdan\nJustus\nKadin\nKasey\nKeagan\nKeenan\nKelby\nKellen\nKendrick\nKenyon\nKevyn\nKeyshawn\nKolbe\nKory\nKurt\nKylan\nLanden\nLayne\nLazaro\nLucio\nMarcello\nMariano\nMckay\nMilan\nNelson\nNoname\nPerry\nRamses\nRamsey\nReed\nRex\nReyes\nRigo\nRiver\nRodney\nRowan\nSeamus\nSimeon\nSoren\nTyree\nUbaldo\nValentino\nZack\nZechariah\nJacob\nJose\nMichael\nDaniel\nJoshua\nAnthony\nJesus\nMatthew\nJoseph\nDavid\nAndrew\nAngel\nChristopher\nLuis\nEthan\nTyler\nGabriel\nJonathan\nAlexander\nJuan\nBrandon\nCarlos\nRyan\nChristian\nNicholas\nZachary\nKevin\nDylan\nAdrian\nSamuel\nLogan\nJames\nNathan\nWilliam\nJohn\nIsaiah\nIsaac\nAustin\nNoah\nBrian\nFrancisco\nRobert\nBenjamin\nMiguel\nJustin\nJulian\nJorge\nElijah\nJason\nKyle\nJordan\nThomas\nAlejandro\nDiego\nAaron\nConnor\nCaleb\nSebastian\nHunter\nBryan\nVictor\nCameron\nManuel\nEric\nDominic\nRicardo\nFernando\nAlex\nXavier\nOscar\nAdam\nNathaniel\nEduardo\nAntonio\nJack\nMason\nGavin\nAidan\nLuke\nCesar\nDamian\nSeth\nIan\nJackson\nJesse\nSteven\nTanner\nMario\nSean\nCole\nHayden\nSergio\nTrevor\nRichard\nAndres\nCody\nJavier\nAlan\nCharles\nIvan\nJared\nEdgar\nJaden\nMarco\nOmar\nJayden\nMartin\nRuben\nChase\nHector\nMarcus\nPedro\nTristan\nBryce\nCristian\nDevin\nJeremy\nJoel\nAlexis\nEvan\nMark\nBlake\nGarrett\nErick\nRiley\nCarter\nTimothy\nWyatt\nAiden\nArmando\nJeremiah\nRoberto\nDerek\nErik\nJake\nPreston\nCarson\nNicolas\nEmmanuel\nGerardo\nJosiah\nKenneth\nLucas\nAbraham\nJulio\nKaleb\nSpencer\nFabian\nPatrick\nPaul\nCaden\nMarcos\nRaymond\nEdwin\nGeorge\nLiam\nNotnamed\nRaul\nIsrael\nVincent\nJosue\nRamon\nJaime\nMaxwell\nRafael\nShane\nColton\nRoman\nGage\nStephen\nAlberto\nLeonardo\nParker\nZane\nBrayan\nEnrique\nDamien\nElias\nEdward\nSaul\nBradley\nDillon\nErnesto\nGustavo\nShawn\nDevon\nTravis\nDominick\nJeffrey\nAxel\nConner\nGrant\nSantiago\nAndy\nBrayden\nColin\nJonah\nAlfredo\nLandon\nLevi\nPablo\nOwen\nKaden\nMicah\nArturo\nGiovanni\nBrendan\nCollin\nEsteban\nMax\nTaylor\nEmilio\nRene\nAbel\nJakob\nOrlando\nScott\nTrey\nAlec\nBraden\nBrady\nCade\nJohnathan\nJohnny\nPeter\nJalen\nTrenton\nChandler\nCooper\nErubiel\nFrank\nDrake\nHugo\nRandy\nColby\nCory\nDakota\nDustin\nEzekiel\nNolan\nAshton\nBrenden\nBrody\nChance\nGilberto\nHenry\nLorenzo\nMoises\nSkyler\nEli\nEmanuel\nTrent\nTy\nDonovan\nGuillermo\nJace\nMalachi\nRodrigo\nAndre\nBrock\nCasey\nGregory\nHarrison\nKai\nPhillip\nTroy\nVicente\nClayton\nKyler\nRodolfo\nWesley\nIsmael\nKeegan\nQuinn\nSalvador\nUriel\nZackary\nAvery\nBryant\nJoaquin\nMarc\nUlises\nAldo\nAngelo\nChad\nDonald\nEstevan\nIssac\nLeonel\nPayton\nAlvaro\nBrett\nCalvin\nEmiliano\nJaxon\nMauricio\nMitchell\nAlonso\nDallas\nDarius\nGriffin\nIsaias\nJoe\nOctavio\nOsvaldo\nTyson\nAdan\nDawson\nIsiah\nMaximiliano\nMaximus\nRogelio\nTheodore\nTristen\nAlbert\nAlfonso\nAllen\nAyden\nBryson\nCayden\nDallin\nDalton\nDante\nFelix\nGerman\nJimmy\nJonathon\nKeith\nKobe\nMateo\nNikolas\nCorey\nIrvin\nJustice\nKristopher\nMathew\nNickolas\nPorter\nRylan\nTony\nCruz\nEzra\nFelipe\nGael\nHumberto\nJay\nJoey\nLance\nMiles\nRamiro\nRonald\nBrennan\nCamden\nJairo\nLouis\nNoe\nRudy\nSkylar\nTomas\nZachery\nAdolfo\nArthur\nCraig\nDamon\nEzequiel\nIgnacio\nMorgan\nQuentin\nRoger\nRomeo\nWeston\nBranden\nBrent\nDane\nDanny\nDarren\nElian\nJerry\nJon\nLeo\nMelvin\nMicheal\nOrion\nRoy\nShaun\nSolomon\nTate\nTriston\nBraeden\nBruno\nCorbin\nDavis\nDean\nDennis\nFidel\nGilbert\nJair\nJarod\nJett\nJonas\nJunior\nKade\nPeyton\nPhilip\nReece\nRussell\nSantos\nSteve\nTristin\nAden\nAlexandro\nAmmon\nChris\nDominik\nDouglas\nEfrain\nJaiden\nJaxson\nJayce\nJude\nKaiden\nKody\nLukas\nMyles\nRicky\nSimon\nZachariah\nZion\nArath\nAriel\nBailey\nCurtis\nDeandre\nDemetrius\nDominique\nDrew\nEaston\nGary\nGonzalo\nGrayson\nHeriberto\nJuancarlos\nKayden\nKeanu\nRolando\nTodd\nAgustin\nAli\nAlonzo\nBennett\nBranson\nBrendon\nBruce\nCamron\nCarl\nDarian\nDayton\nIzaiah\nJessie\nKameron\nMaurice\nMaximo\nNathanael\nOliver\nRay\nTalon\nAllan\nBraydon\nBrigham\nCristobal\nDamion\nDerrick\nDorian\nFranklin\nHarley\nHudson\nIrving\nIsidro\nJarrod\nJayson\nJohnathon\nMarlon\nNelson\nRey\nRigoberto\nSilas\nAugustine\nClay\nCoby\nConor\nDeclan\nDuncan\nEddie\nEfren\nJagger\nJaylen\nJohan\nJordon\nJovani\nJovany\nJulius\nMalakai\nMarvin\nPhoenix\nReed\nSterling\nTommy\nTrace\nZander\nZechariah\nAbram\nAlexzander\nArnold\nAsher\nColeman\nCristofer\nCristopher\nDesmond\nDeven\nElliot\nGuadalupe\nHolden\nIsai\nJerome\nJonatan\nJoseluis\nKenny\nKieran\nKolton\nKristian\nLarry\nMalik\nMarshall\nMisael\nNoel\nQuincy\nQuinton\nRamses\nReyes\nRyker\nSabastian\nSheldon\nTobias\nTucker\nTyrell\nUlysses\nZayne\nAdalberto\nAddison\nAustyn\nBilly\nColten\nCrew\nCyrus\nDeangelo\nDomingo\nEdgardo\nEdwardo\nEsai\nGenaro\nGeovanni\nGiovanny\nGlenn\nJadon\nJaeden\nJasper\nJoan\nJulien\nKelvin\nKoby\nKolby\nKole\nLee\nLeobardo\nLincoln\nMariano\nMatteo\nPayson\nPete\nPierce\nRalph\nRaymundo\nReese\nRyder\nSamson\nSantino\nSawyer\nTerrance\nTitus\nTrevon\nAbdiel\nAdriel\nAhmad\nAlexandre\nAlijah\nAlvin\nArian\nAydin\nBeau\nBenicio\nBenito\nBernardo\nBlaise\nBobby\nBrycen\nCaiden\nDavin\nEdmundo\nEleazar\nEliseo\nElvis\nEthen\nFrankie\nFrederick\nGerald\nGraham\nGunner\nHeath\nHyrum\nIsacc\nJael\nJarom\nJaziel\nJuaquin\nJustus\nKale\nKarl\nKarson\nKeagan\nLawrence\nLeon\nLewis\nMiguelangel\nMikel\nMoses\nOsbaldo\nOswaldo\nRandall\nReynaldo\nRiver\nRonaldo\nSonny\nStanley\nTerry\nToby\nVance\nWade\nWalker\nYahir\nZackery\nZakary\nAlek\nAmari\nAmarion\nAri\nAric\nArik\nAtticus\nBlaine\nBrad\nBrennen\nBret\nCal\nCarlo\nCarsen\nCharlie\nClinton\nColt\nDale\nDarien\nDarnell\nDeshawn\nDevyn\nDyllan\nErnest\nEverett\nFlavio\nGarret\nGarrison\nGeoffrey\nGiancarlo\nGordon\nGrady\nGregorio\nGreyson\nHarold\nHiram\nIsaak\nJarrett\nJasiel\nJaydon\nJaylin\nJermaine\nJovan\nKaeden\nKelly\nKendrick\nKent\nKevyn\nLane\nLatrell\nLeighton\nLeopoldo\nMalcolm\nMarko\nMarkus\nMaximillian\nMckay\nNathanial\nNathen\nNestor\nNico\nNigel\nRhett\nRocco\nRocky\nRodney\nRohan\nSaid\nSam\nShea\nSlade\nTrystan\nTyrone\nUbaldo\nUriah\nValentin\nValentino\nWalter\nWarren\nWilson\nXander\nAlessandro\nAnders\nAnish\nAusten\nAydan\nBarry\nBasil\nBoston\nBraiden\nBrice\nBroc\nByron\nCanyon\nCarsten\nClemente\nCordell\nDarin\nDenzel\nDerick\nDion\nDomonic\nDonavan\nDraven\nDwight\nEdson\nEver\nFavian\nFederico\nFreddy\nGavyn\nGerson\nGianni\nGunnar\nHoracio\nIbrahim\nIverson\nJadin\nJadyn\nJameson\nJamie\nJaylon\nJean\nJeffery\nJoesph\nJordy\nJosh\nJosias\nJustyn\nKadin\nKalvin\nKane\nKarsten\nKasey\nKen\nKenyon\nKian\nKirk\nKonner\nKorbin\nKory\nKurtis\nLanden\nLayne\nLionel\nLucio\nMac\nMackenzie\nMarcelo\nMaximilian\nMike\nMohammad\nMustafa\nNash\nNicklas\nObed\nOdin\nPatricio\nQuinten\nQuintin\nReid\nReymundo\nRoland\nRoss\nSage\nSantana\nSeamus\nSidney\nSimeon\nTayton\nTerrence\nTre\nTyrese\nUziel\nVincente\nWill\nJacob\nJose\nDaniel\nAnthony\nMichael\nAngel\nJesus\nJoshua\nAndrew\nDavid\nJoseph\nGabriel\nLuis\nEthan\nRyan\nChristopher\nMatthew\nBrandon\nAlexander\nNicholas\nJuan\nJonathan\nCarlos\nTyler\nChristian\nKevin\nDylan\nNathan\nSamuel\nZachary\nWilliam\nBenjamin\nJohn\nAdrian\nJames\nIsaac\nLogan\nIsaiah\nDiego\nMiguel\nAaron\nCaleb\nElijah\nRobert\nNoah\nAlejandro\nJustin\nAustin\nBryan\nJulian\nBrian\nAidan\nFrancisco\nVictor\nConnor\nJason\nJordan\nThomas\nMason\nHunter\nJorge\nXavier\nKyle\nSebastian\nAiden\nAlan\nAntonio\nEduardo\nEric\nGavin\nFernando\nNathaniel\nAdam\nCody\nEvan\nJackson\nCameron\nSteven\nDominic\nAlex\nLuke\nCesar\nJack\nAndres\nManuel\nJavier\nMario\nOscar\nJayden\nJesse\nIvan\nSergio\nRicardo\nAlexis\nHayden\nEdgar\nDamian\nCole\nSeth\nTrevor\nIan\nDevin\nOmar\nRichard\nSean\nCharles\nWyatt\nAshton\nCristian\nHector\nCaden\nRuben\nBlake\nJoel\nMartin\nTanner\nCarson\nArmando\nJake\nChase\nJaden\nPaul\nJared\nTristan\nKaden\nMark\nBryce\nAbraham\nColin\nErik\nMarco\nTimothy\nVincent\nEnrique\nGerardo\nDerek\nJeremy\nMarcus\nRoberto\nCarter\nEdward\nKaleb\nElias\nFabian\nRamon\nRaul\nErick\nKenneth\nNicolas\nGarrett\nJosue\nRafael\nErnesto\nLiam\nLucas\nRiley\nBrayden\nPatrick\nEdwin\nMarcos\nOwen\nDominick\nGage\nJeremiah\nJosiah\nDevon\nNotnamed\nRoman\nColton\nLandon\nMaxwell\nLeonardo\nConner\nPreston\nEmmanuel\nJulio\nAlberto\nBrayan\nPedro\nSpencer\nArturo\nCollin\nIsrael\nPablo\nStephen\nDamien\nEmilio\nEsteban\nParker\nRaymond\nGeorge\nIsmael\nAlfredo\nBradley\nDillon\nGiovanni\nGustavo\nXander\nAyden\nBrendan\nCooper\nDonovan\nJaime\nHenry\nTrenton\nTy\nAndre\nClayton\nSaul\nEli\nAbel\nBrady\nMicah\nCade\nGrant\nGuillermo\nJohnathan\nZane\nJace\nNolan\nShawn\nBraden\nJonah\nLevi\nShane\nSkyler\nMax\nPeter\nChance\nDante\nOrlando\nAlec\nAxel\nSantiago\nJohnny\nRene\nTravis\nEmanuel\nFrank\nJeffrey\nTaylor\nCalvin\nDakota\nJakob\nJaxon\nSalvador\nTrent\nHugo\nUriel\nYahir\nLorenzo\nRodrigo\nAndy\nBrody\nBryson\nGael\nJimmy\nMauricio\nScott\nAngelo\nJalen\nOsvaldo\nZackary\nBraeden\nBrenden\nDustin\nEzekiel\nKai\nRandy\nTyson\nWesley\nAvery\nCasey\nMateo\nMoises\nZander\nAdan\nAlonso\nCorbin\nMiles\nAden\nAllen\nColby\nDawson\nGregory\nLeonel\nMathew\nPhillip\nRogelio\nBrett\nFelipe\nKayden\nSantos\nTrey\nBrock\nCamden\nDalton\nGilberto\nJoaquin\nJonathon\nAlfonso\nDallin\nDrake\nEmiliano\nIrvin\nKade\nLanden\nLeo\nMarc\nNikolas\nTristen\nTroy\nDamion\nKeegan\nMalachi\nMitchell\nAdolfo\nCayden\nDamon\nHarrison\nJay\nKobe\nPeyton\nRonald\nSimon\nTomas\nUlises\nAlbert\nAldo\nAlvaro\nArthur\nBrennan\nGriffin\nIssac\nLouis\nMaximus\nNickolas\nPorter\nQuinn\nRoy\nZachariah\nEdgardo\nFelix\nGerman\nJessie\nKyler\nLance\nLarry\nMorgan\nNoe\nTommy\nAgustin\nChad\nChandler\nDarius\nDrew\nJaylen\nMarshall\nMicheal\nOliver\nReese\nRodolfo\nAli\nAlonzo\nDanny\nEaston\nEfrain\nIzaiah\nJadon\nJerry\nJoe\nJohnathon\nJoseluis\nMaximiliano\nNoel\nOctavio\nOrion\nPayton\nRamiro\nRylan\nSteve\nTate\nTucker\nBrendon\nBryant\nCory\nDavis\nDonald\nEddie\nEstevan\nEzequiel\nHudson\nHumberto\nIgnacio\nJayson\nJuancarlos\nKaiden\nLane\nRigoberto\nVicente\nWeston\nZachery\nBeau\nBranden\nBruce\nColten\nDayton\nErubiel\nHarley\nIsaias\nKenny\nKristopher\nLawrence\nMalik\nPhilip\nRicky\nRiver\nZion\nCaiden\nCorey\nCruz\nCyrus\nDarren\nDevyn\nGilbert\nIsiah\nJaiden\nJunior\nQuincy\nRey\nToby\nTony\nWade\nAmari\nBennett\nBilly\nBraxton\nCamron\nCristofer\nDerrick\nJairo\nJayce\nJaydon\nJoey\nJon\nMarlon\nPhoenix\nReece\nRussell\nSage\nShaun\nTalon\nTobias\nTyrell\nBrent\nConor\nCraig\nCurtis\nDennis\nDeshawn\nEzra\nGrayson\nJair\nJeffery\nJude\nJulius\nKameron\nKeith\nMalakai\nMarvin\nQuinton\nRolando\nSkylar\nAbram\nAlexzander\nAriel\nAron\nBrennen\nDallas\nDane\nDarian\nDeclan\nDylon\nEfren\nGary\nGenaro\nHeriberto\nIsidro\nJovany\nKeaton\nKelvin\nMathias\nNelson\nOswaldo\nQuentin\nRoger\nRudy\nTristin\nWarren\nZakary\nAdriano\nAlexandro\nAlfred\nDario\nDean\nDeandre\nDesmond\nDorian\nDouglas\nElian\nElliot\nEverett\nFrankie\nFranklin\nGuadalupe\nIrving\nJarrett\nJaxson\nKody\nKristian\nMaddox\nMariano\nMelvin\nMike\nMisael\nReynaldo\nRohan\nRomeo\nRowan\nSantino\nSilas\nStone\nZechariah\nAddison\nAdrien\nAllan\nAmir\nAmmon\nAndreas\nBailey\nBobby\nBraydon\nCarl\nDarrell\nDavin\nDillan\nDion\nElisha\nElmer\nFreddy\nGannon\nGianni\nGideon\nGunnar\nHyrum\nJamal\nJovani\nKendrick\nKolby\nKolton\nLayne\nLeon\nMaximilian\nMekhi\nMiguelangel\nMilton\nMyles\nNathanael\nNestor\nPete\nPierce\nRaymundo\nRex\nReyes\nRyker\nSam\nSterling\nTodd\nUriah\nValentin\nWalker\nAydan\nBlaine\nBraedon\nBrigham\nCharlie\nClinton\nColter\nCristobal\nDan\nDemetrius\nDominique\nDonavin\nEsai\nGarret\nGiovani\nGrady\nGunner\nIsaak\nIsai\nJaeden\nJagger\nJett\nJoan\nJohan\nJordon\nJulien\nKeanu\nKeenan\nKieran\nKoby\nLukas\nMoses\nNico\nObed\nOsbaldo\nQuintin\nRandall\nRay\nReed\nRocco\nSonny\nStuart\nTerrell\nTheodore\nTriston\nWalter\nXzavier\nZackery\nAdriel\nAhmad\nAhmed\nAlden\nAmare\nArath\nAri\nArnold\nBenito\nBernardo\nBlaze\nByron\nCarsen\nClark\nClaudio\nConrad\nDale\nDarrin\nDevan\nDeven\nDimitri\nDuncan\nDwayne\nEleazar\nEmmett\nEnoch\nEverardo\nFederico\nFrancis\nFredy\nGiovanny\nGlenn\nGordon\nHarry\nHolden\nIsacc\nJahir\nJermaine\nJordyn\nJovan\nJovanny\nKamron\nKane\nKarim\nKarl\nKarson\nKarsten\nKeven\nLincoln\nMarius\nMarkus\nMohamed\nRaphael\nReid\nRhett\nSawyer\nServando\nSimeon\nStanley\nStefan\nTerrence\nTitus\nVance\nYael\nAbdiel\nAlijah\nAlvin\nAsa\nAsher\nCannon\nCase\nCash\nCipriano\nCristopher\nCutter\nDangelo\nDenzel\nDeon\nDominik\nDon\nDuane\nEliseo\nEver\nFidel\nFlavio\nGuy\nHoward\nIsrrael\nIzaac\nJaedon\nJasper\nJavon\nJedidiah\nJeronimo\nJhonatan\nJonas\nJonatan\nJosef\nJosemanuel\nJustice\nKadin\nKarter\nKelton\nKenyon\nKurt\nLeland\nLeonard\nLuca\nLuisangel\nMarcel\nMarcelino\nMarcoantonio\nMasen\nMaximo\nNathanial\nNehemiah\nNeo\nRonnie\nSammy\nTevin\nTrever\nYair\nZack\nAbner\nAidyn\nAmarion\nAndon\nArjun\nArnoldo\nAugustine\nAustyn\nAzael\nBabyboy\nBen\nBenny\nBoston\nBradyn\nBriant\nBroderick\nBruno\nCarlo\nCeasar\nChaz\nChris\nColeman\nCordell\nCristo\nDagoberto\nDamarion\nDarien\nDarnell\nDarwin\nDaylen\nDereck\nDonte\nEan\nEarl\nEden\nEloy\nEmerson\nErnest\nFavian\nFinn\nFranco\nGaige\nGarrison\nGerald\nHarold\nHernan\nIram\nIsael\nIzayah\nJacobo\nJan\nJarod\nJarom\nJase\nJaydin\nJericho\nJerome\nJimmie\nJoeseph\nJustus\nJustyn\nKeagan\nKole\nKolten\nKonner\nKonnor\nKrystian\nLee\nLeobardo\nLuciano\nLucio\nMarcanthony\nMarques\nMarquis\nMauro\nMustafa\nMyron\nNicholaus\nNorberto\nPatricio\nPaulo\nRalph\nRamsey\nReagan\nReuben\nRhys\nRidge\nRodney\nRoland\nRonaldo\nRonan\nRosendo\nRyley\nSabastian\nSantana\nShea\nSidney\nSincere\nSlade\nStephon\nTre\nTrevin\nTristian\nTyrone\nWill\nZayne\nJose\nJacob\nAnthony\nDaniel\nAngel\nMichael\nJesus\nJoshua\nDavid\nJoseph\nLuis\nEthan\nAndrew\nChristopher\nMatthew\nAlexander\nRyan\nJonathan\nTyler\nGabriel\nBrandon\nJuan\nNicholas\nCarlos\nNathan\nChristian\nJames\nIsaac\nKevin\nAdrian\nDylan\nBenjamin\nElijah\nDiego\nLogan\nSamuel\nWilliam\nZachary\nJohn\nNoah\nRobert\nAlejandro\nJulian\nIsaiah\nConnor\nFrancisco\nCaleb\nMiguel\nBrian\nAaron\nAiden\nBryan\nAdam\nJustin\nAidan\nXavier\nSebastian\nVictor\nJordan\nAustin\nJason\nLuke\nJorge\nNathaniel\nEduardo\nDominic\nMason\nJackson\nAlex\nManuel\nThomas\nJack\nAlexis\nGavin\nCole\nCameron\nKyle\nEric\nOscar\nAntonio\nFernando\nIvan\nHunter\nIan\nAlan\nMario\nSergio\nSeth\nCesar\nEvan\nRicardo\nWyatt\nAndres\nJavier\nEdgar\nHayden\nChase\nRichard\nJayden\nJoel\nDamian\nRoberto\nMarco\nSean\nCharles\nOmar\nSteven\nJesse\nErick\nHector\nAbraham\nCody\nOwen\nCristian\nCarson\nMartin\nJaden\nLeonardo\nAshton\nJeremiah\nDevin\nCaden\nCarter\nPedro\nJake\nTanner\nLucas\nRuben\nColin\nEdward\nJared\nJeremy\nVincent\nEdwin\nJulio\nLiam\nTimothy\nMark\nArmando\nCooper\nBryce\nKaden\nErik\nNicolas\nTristan\nBlake\nJosue\nLandon\nPreston\nTrevor\nDerek\nGarrett\nGerardo\nRafael\nNotnamed\nPaul\nBrayden\nColton\nIsrael\nJosiah\nMarcus\nAdan\nRiley\nAlberto\nKaleb\nElias\nEnrique\nJaime\nMarcos\nRaul\nPatrick\nRamon\nConner\nParker\nGage\nGeorge\nFabian\nDominick\nArturo\nMax\nAyden\nBrody\nDamien\nRoman\nEsteban\nGiovanni\nJohnathan\nMaxwell\nRaymond\nBrayan\nJeffrey\nTy\nAxel\nBrady\nEmilio\nShawn\nTravis\nGustavo\nKenneth\nSantiago\nSpencer\nZane\nEmmanuel\nGrant\nLevi\nCollin\nErnesto\nHenry\nStephen\nAlfredo\nDevon\nBraden\nDillon\nEli\nGael\nChance\nMicah\nSaul\nAndy\nBradley\nDakota\nJonah\nAbel\nJohnny\nOrlando\nShane\nPeter\nIsmael\nAndre\nBrendan\nDonovan\nSkyler\nTaylor\nWesley\nCade\nGuillermo\nLorenzo\nNolan\nEmiliano\nHarrison\nJace\nJakob\nScott\nAlec\nClayton\nMiles\nPablo\nRene\nAden\nAlonso\nGilberto\nJoaquin\nKyler\nMalachi\nBrett\nBrock\nCayden\nCorbin\nFrank\nMauricio\nPeyton\nBryson\nIssac\nKai\nKaiden\nMoises\nRandy\nRodolfo\nRogelio\nTyson\nYahir\nTrey\nCasey\nDante\nEmanuel\nGilbert\nGregory\nNickolas\nTrenton\nCruz\nDustin\nOliver\nTristen\nAvery\nJaxon\nOsvaldo\nPhillip\nRodrigo\nRylan\nXander\nBraeden\nCamden\nMorgan\nSalvador\nTate\nUriel\nVicente\nAlfonso\nBrennan\nColby\nDrake\nEfrain\nJairo\nLeonel\nNikolas\nFelipe\nIsaias\nJimmy\nMateo\nZackary\nAdolfo\nAlbert\nJaiden\nKayden\nTrent\nTroy\nAngelo\nBrenden\nCalvin\nDarren\nDrew\nEzekiel\nEzequiel\nHumberto\nJoey\nPayton\nSantos\nWeston\nAldo\nBranden\nDanny\nDarius\nEzra\nHugo\nIsiah\nJalen\nLance\nLanden\nLarry\nLukas\nMarc\nRyder\nZander\nAsher\nBraxton\nChandler\nGriffin\nJay\nKade\nKeith\nMaximus\nOctavio\nAllen\nAlvaro\nArthur\nBryant\nDane\nDeven\nEaston\nJayson\nJohan\nKeegan\nLane\nLeo\nMathew\nOrion\nQuentin\nAli\nBruce\nCharlie\nCorey\nDalton\nDerrick\nIsai\nMaximiliano\nNoe\nPorter\nSam\nSimon\nTony\nBrent\nCory\nDamon\nDavin\nDominik\nGerman\nGrayson\nHudson\nJessie\nMyles\nRicky\nTommy\nAlonzo\nBeau\nBilly\nGary\nIgnacio\nJoe\nJonathon\nJuancarlos\nJustice\nLincoln\nMicheal\nMisael\nRoy\nRudy\nShaun\nTheodore\nTomas\nChris\nDallin\nEddie\nFelix\nHolden\nIsidro\nIzaiah\nJaylen\nKristopher\nLouis\nMaddox\nRamiro\nAbram\nConor\nDamion\nDawson\nDonald\nEstevan\nJett\nMalik\nMitchell\nNelson\nQuintin\nQuinton\nRomeo\nTucker\nUlises\nZachariah\nBrennen\nChad\nCyrus\nDavis\nDennis\nDorian\nHeriberto\nJameson\nJase\nJovan\nJunior\nRonald\nSterling\nWalter\nYair\nAlfred\nAlijah\nBraedon\nBruno\nCurtis\nDallas\nDean\nDesmond\nDuncan\nErnest\nFrankie\nGonzalo\nGunnar\nIrvin\nJadon\nJadyn\nJerry\nMarvin\nMaximilian\nNathanael\nRamses\nRigoberto\nRonnie\nSteve\nZackery\nZion\nAriel\nBobby\nClinton\nCristobal\nCristopher\nDavion\nDeclan\nDraven\nDylon\nElian\nGunner\nIrving\nJaxson\nJerome\nJohnathon\nJudah\nJude\nKarson\nKelvin\nKendrick\nKieran\nKody\nKole\nMarshall\nPhilip\nRolando\nSilas\nAdriano\nAmmon\nBoston\nCamron\nCraig\nDale\nEdgardo\nGuadalupe\nJair\nJonatan\nJordon\nJovany\nJulien\nKeaton\nLeobardo\nLeon\nMekhi\nMoses\nNoel\nRay\nRaymundo\nReese\nTalon\nTrevon\nValentin\nZachery\nAdalberto\nAmari\nAmir\nArmani\nArnold\nAugustine\nBraulio\nBrendon\nCannon\nCohen\nCrew\nDillan\nDion\nEthen\nGreyson\nHarley\nJax\nJon\nJonas\nJoseluis\nJovani\nJovanny\nKeenan\nKellen\nKolby\nLawrence\nLee\nMarcelo\nMariano\nMathias\nMaurice\nPhoenix\nPierce\nQuinn\nReuben\nRey\nRhett\nRiver\nRoger\nTeagan\nTrace\nTriston\nWilson\nXzavier\nYael\nZaid\nAbdiel\nAdriel\nAgustin\nAlden\nAllan\nAmare\nAron\nBernardo\nBraydon\nBrigham\nBrodie\nCaiden\nCedric\nClay\nDarion\nDeandre\nDouglas\nEfren\nEliseo\nElliot\nFavian\nGianni\nGraham\nJahir\nJarrett\nJayce\nJaydon\nJermaine\nJosef\nKadin\nKarsten\nKeagan\nKeanu\nKenny\nKyan\nLayne\nLoren\nMauro\nMaximillian\nOswaldo\nQuincy\nReed\nRigo\nRonaldo\nSage\nSaid\nSantino\nSonny\nTerrence\nTerry\nTitus\nToby\nTre\nTrystan\nWade\nZakary\nZechariah\nAhmed\nAlexandro\nAnderson\nAndreas\nAntony\nAsa\nAydan\nAzael\nBen\nBenito\nBennett\nBlaise\nCaelan\nCash\nCoby\nColten\nDan\nEliud\nElliott\nElvis\nEsai\nEugenio\nFlavio\nFreddy\nFrederick\nGaven\nGenaro\nGeoffrey\nGordon\nGrady\nHarry\nHeath\nJaren\nJeshua\nJoan\nJordy\nKameron\nKarim\nKasey\nKeven\nKhalil\nLuciano\nMalakai\nMarlon\nMarquis\nMaximo\nNathanial\nNehemiah\nNick\nPrince\nRalph\nReece\nReyes\nRocco\nRoss\nRyker\nRyland\nSawyer\nTerrance\nTrevin\nTristin\nTylor\nUriah\nValentino\nAddison\nAdrien\nAhmad\nAndon\nArath\nAri\nAsael\nBabyboy\nBailey\nBaylor\nBlaze\nBradyn\nCarl\nChaz\nClaudio\nColter\nConrad\nCristofer\nDalen\nDangelo\nDarien\nDavian\nDaylen\nDevante\nDevyn\nDhruv\nDomingo\nEddy\nErwin\nEverett\nFermin\nFidel\nFinnegan\nFranco\nFred\nFredrick\nFredy\nGannon\nGarret\nGerald\nGiancarlo\nGibran\nHiram\nIsreal\nIzaac\nIzaak\nJacobo\nJamal\nJamie\nJan\nJasper\nJaziel\nJeffery\nJeramiah\nJulius\nJustus\nKadyn\nKael\nKale\nKamron\nKane\nKarl\nKelly\nKendall\nKeon\nKian\nKolton\nKristofer\nLebron\nLeonard\nLuca\nMalcolm\nMarcel\nMarkus\nMatias\nMatthias\nMelvin\nMohamed\nObed\nOsiel\nRandall\nRaphael\nReid\nRex\nRhys\nRobin\nRocky\nRoderick\nRonin\nRowan\nSabastian\nSheldon\nSkylar\nSolomon\nTayshaun\nTeague\nTristian\nVince\nWayne\nWill\nWinston\nAbelardo\nAdonis\nAiram\nAleksander\nAlessandro\nAlexsander\nAlvin\nArnulfo\nAxl\nAydin\nBoden\nBranson\nBronson\nBrycen\nByron\nCamren\nCanyon\nCarmelo\nCian\nCoen\nCoy\nDaren\nDarian\nDeegan\nDereck\nDeshaun\nDestin\nDon\nDwight\nEder\nElmer\nEmerson\nErubiel\nEugene\nFinn\nFox\nFranklin\nFreddie\nGadiel\nGarrison\nGauge\nGian\nGideon\nGiovanny\nGlenn\nGregorio\nHerman\nHyrum\nIsaak\nJaeden\nJamari\nJaron\nJasiel\nJavon\nJaydin\nJensen\nJhovany\nJoseangel\nJustyn\nKellan\nKelton\nKen\nKenyon\nKeshawn\nKillian\nKobe\nKorbin\nKory\nKristian\nKurt\nKyron\nLazaro\nLeighton\nLeopoldo\nLewis\nLex\nMack\nMarcelino\nMasen\nMaxim\nMiguelangel\nMike\nMohammad\nNathen\nNeil\nNeo\nNomar\nOsmar\nPayson\nQuinten\nReynaldo\nRick\nRohan\nRome\nRory\nRueben\nRussell\nRylee\nSebastien\nShea\nStephan\nSydney\nTatum\nTobias\nTrinidad\nTruman\nTyrell\nTyren\nVaughn\nWalker\nWarren\nWestin\nZavier\nAngel\nJacob\nJose\nDaniel\nMichael\nAnthony\nJesus\nJoshua\nDavid\nGabriel\nJoseph\nAndrew\nLuis\nAlexander\nEthan\nChristopher\nMatthew\nTyler\nJuan\nJonathan\nChristian\nAdrian\nCarlos\nRyan\nBrandon\nSamuel\nKevin\nDiego\nNoah\nNicholas\nIsaac\nLogan\nJames\nNathan\nDylan\nIsaiah\nZachary\nAiden\nWilliam\nElijah\nBenjamin\nJohn\nJulian\nFrancisco\nBryan\nAidan\nMiguel\nAaron\nSebastian\nRobert\nCaleb\nBrian\nGavin\nAlejandro\nJordan\nJorge\nJack\nLuke\nMason\nThomas\nAustin\nConnor\nDominic\nAlex\nXavier\nJustin\nNathaniel\nManuel\nEduardo\nEvan\nEric\nAdam\nJackson\nVictor\nIan\nJason\nOscar\nHunter\nJayden\nCarter\nHector\nCesar\nCharles\nDamian\nSergio\nHayden\nAndres\nAlan\nAntonio\nJesse\nRicardo\nJoel\nIvan\nJavier\nLucas\nSeth\nAlexis\nEdgar\nLandon\nFernando\nCameron\nJeremiah\nWyatt\nCody\nKaden\nKyle\nCaden\nCole\nSean\nRichard\nMario\nOmar\nOwen\nTanner\nSteven\nErick\nAbraham\nBlake\nDevin\nChase\nJulio\nLeonardo\nMark\nCarson\nGiovanni\nJake\nTrevor\nJosiah\nBrayden\nNicolas\nColin\nCristian\nJared\nLiam\nMarco\nMartin\nNotnamed\nEmmanuel\nMarcus\nJosue\nRoman\nTimothy\nVincent\nMarcos\nGerardo\nBrody\nElias\nDamien\nGael\nJaden\nRafael\nRiley\nAshton\nConner\nEnrique\nFabian\nAdan\nGage\nPreston\nRoberto\nTristan\nArmando\nRuben\nArturo\nAyden\nEdwin\nPaul\nAlberto\nParker\nCooper\nJeremy\nKenneth\nKaleb\nPablo\nSantiago\nDerek\nPedro\nEdward\nEsteban\nRaul\nBryce\nErik\nJaime\nDominick\nEmilio\nMax\nPatrick\nGeorge\nRaymond\nSaul\nAngelo\nBrayan\nHenry\nRamon\nMaxwell\nColton\nErnesto\nSpencer\nBraden\nEli\nDonovan\nBradley\nGrant\nKai\nShawn\nAxel\nIsrael\nJohnathan\nCollin\nGarrett\nJonah\nLevi\nMicah\nFrank\nLorenzo\nPeter\nBrady\nJace\nTroy\nTy\nNolan\nStephen\nAbel\nAndy\nGustavo\nJohnny\nMalachi\nUriel\nBrendan\nEmiliano\nJeffrey\nAndre\nDillon\nShane\nIsmael\nJoaquin\nMauricio\nTravis\nBryson\nDevon\nTrenton\nEzekiel\nKyler\nPeyton\nZane\nAden\nAlfredo\nJaxon\nMateo\nSalvador\nSkyler\nDante\nDrake\nOrlando\nDakota\nGuillermo\nMiles\nRodrigo\nChance\nNickolas\nAlec\nBrock\nCamden\nHarrison\nKaiden\nMaximus\nNoe\nRene\nCalvin\nCayden\nJakob\nLanden\nRogelio\nScott\nXander\nBraeden\nBrenden\nGilberto\nGregory\nJaiden\nKayden\nMaddox\nMarc\nWesley\nYahir\nAlonso\nAsher\nDanny\nRandy\nTaylor\nAli\nAlvaro\nBrett\nDustin\nEmanuel\nIzaiah\nJimmy\nKeegan\nOliver\nRylan\nChad\nCruz\nDrew\nEddie\nGilbert\nGriffin\nIssac\nLance\nChris\nColby\nCorbin\nHugo\nIgnacio\nCaiden\nCasey\nLeonel\nMaximiliano\nMitchell\nRudy\nTristen\nAlbert\nAlfonso\nCade\nClayton\nDamon\nEzequiel\nHolden\nJaylen\nMoises\nOsvaldo\nPhillip\nSimon\nDallas\nLouis\nLukas\nRyder\nSteve\nUlises\nZion\nAvery\nEstevan\nHudson\nIsiah\nLeo\nMisael\nNikolas\nPayton\nQuinn\nRicky\nRodolfo\nTrent\nVicente\nZachery\nBeau\nBernardo\nBraydon\nDalton\nDavis\nEaston\nEfrain\nGary\nIrvin\nIsaias\nJerry\nKeith\nMathew\nRigoberto\nTrey\nCharlie\nCurtis\nDarius\nFelipe\nMorgan\nQuentin\nTucker\nTyson\nWeston\nAlexzander\nAllen\nCohen\nDerrick\nFelix\nHumberto\nJulius\nKade\nKameron\nLane\nAlonzo\nBrennan\nDawson\nDouglas\nGerman\nGrayson\nJair\nJett\nJoe\nJude\nPorter\nZander\nAdolfo\nAldo\nAmare\nAriel\nCash\nCory\nDallin\nDarren\nEfren\nJalen\nJay\nJessie\nJohan\nJonas\nMalik\nPhoenix\nRussell\nSam\nSantos\nTate\nAbram\nBrigham\nBryant\nColten\nCristopher\nDavin\nDominik\nDonald\nElian\nFrankie\nJayce\nJayson\nKenny\nLincoln\nOrion\nSawyer\nShaun\nTobias\nArthur\nEver\nEzra\nGonzalo\nJon\nNestor\nNoel\nPierce\nSilas\nTalan\nTony\nZachariah\nZackary\nArath\nBrent\nCorey\nCyrus\nDean\nDennis\nElliot\nGunner\nJustice\nMarlon\nMarvin\nMoses\nNathanael\nOctavio\nQuincy\nRey\nReyes\nRomeo\nRonald\nTommy\nAgustin\nAllan\nBen\nBranden\nBraulio\nBruno\nCristobal\nDamion\nDane\nDominique\nHyrum\nJonathon\nJoseluis\nJunior\nKeaton\nKeven\nLuca\nMaximilian\nMyles\nRamses\nRaymundo\nReed\nRolando\nRyland\nSonny\nSterling\nTheodore\nTyrell\nWalter\nAdrien\nAlexandro\nAron\nAydan\nBennett\nBraxton\nChandler\nDayton\nDeclan\nDorian\nEverett\nFreddy\nGunnar\nHeriberto\nJahir\nJairo\nJameson\nJeffery\nKelvin\nKristian\nKyan\nMariano\nOswaldo\nRandall\nRiver\nSolomon\nTalon\nTitus\nTomas\nTriston\nTylor\nAlfred\nBoston\nBraedon\nBraylon\nBrennen\nCarl\nConor\nDangelo\nDario\nDavian\nDevan\nDevyn\nEdgardo\nEliseo\nGiovani\nIsidro\nJamie\nJaydon\nJoey\nJovany\nJuanpablo\nKeanu\nKristopher\nLarry\nLeon\nMalaki\nMekhi\nMicheal\nMohamed\nNehemiah\nPhilip\nQuinton\nRamiro\nReece\nReese\nRohan\nSheldon\nSkylar\nTodd\nZackery\nAdin\nAhmed\nAlvin\nAugustine\nBenny\nBrycen\nCraig\nDarrell\nDeven\nEmerson\nEsai\nGianni\nHarry\nHiram\nJasper\nJax\nJaxson\nJovanni\nJudah\nKellen\nKody\nKole\nLewis\nLucian\nMarcelo\nMaurice\nNico\nOsmar\nPaulo\nPayson\nQuintin\nRonan\nRyker\nTyrone\nWalker\nAlessandro\nAmari\nBailey\nBilly\nBlaine\nBraiden\nBrodie\nBruce\nCarlo\nClay\nColter\nCristofer\nDeandre\nDemetrius\nDilan\nEden\nFranklin\nGauge\nGenaro\nGregorio\nGreyson\nIrving\nIsac\nIzaac\nJadon\nJamison\nJan\nJaren\nJavon\nJaydin\nJefferson\nJeshua\nJosh\nJovanny\nKenyon\nKian\nLeland\nMakai\nMarcelino\nMarkus\nMarshall\nNathanial\nNikolai\nObed\nQuinten\nReid\nRocco\nRonnie\nRoy\nRyley\nToby\nTrace\nTristin\nValentin\nVaughn\nVernon\nVladimir\nAbelardo\nAditya\nAdriano\nAmir\nAric\nArnold\nAustyn\nBarrett\nBenicio\nBobby\nBrendon\nBroderick\nByron\nCannon\nCrew\nDan\nDaxton\nDimitri\nDraven\nDyllan\nErnest\nEverardo\nFidel\nFinn\nFredy\nGarret\nGeoffrey\nGerald\nGerson\nGiovanny\nHeath\nHeber\nIsacc\nJarom\nJohnpaul\nJosef\nJovani\nJuancarlos\nKarl\nKarson\nKeenan\nKendall\nKobe\nKoen\nLawrence\nLazaro\nLuka\nMalakai\nMaverick\nMaximo\nMelvin\nNelson\nNick\nNorman\nRalph\nRex\nReyli\nRoger\nRonaldo\nRowan\nSantino\nShea\nStone\nTaj\nTerrance\nTrevin\nTristian\nWarren\nWill\nWilson\nZakary\nAchilles\nAedan\nAsa\nBradon\nBrando\nCamron\nCase\nCeasar\nCedric\nClark\nCoen\nColeman\nCosme\nDarrius\nDeegan\nDereck\nDerick\nDesmond\nDuncan\nDwayne\nDylon\nElliott\nElmer\nElvis\nEnzo\nErasmo\nEthen\nFinnegan\nGideon\nGraham\nHarley\nHoracio\nIsael\nIsai\nJaeden\nJamari\nJarod\nJaron\nJaylin\nJoan\nJonatan\nJorden\nJustus\nKadin\nKale\nKamren\nKamron\nKane\nKannon\nKarim\nKasey\nKeagan\nKelton\nKillian\nLandin\nLandyn\nLayton\nLeroy\nLuisangel\nMatix\nMikel\nMilo\nNikolaus\nOsbaldo\nPatricio\nPrince\nRaiden\nRaphael\nRhett\nRigo\nRowen\nSabastian\nShannon\nSidney\nSlade\nStanley\nTadeo\nTavin\nTerrell\nTerry\nTruman\nUlysses\nVan\nWade\nWaylon\nYael\nYovani\nZack\nAbran\nAdriel\nAlain\nAlijah\nAmarion\nAnderson\nAndreas\nAnton\nArmani\nAtticus\nAugust\nAusten\nBenito\nBo\nBoden\nBrad\nBrant\nBronson\nBryon\nCamren\nCanyon\nChristofer\nClarence\nCoby\nColt\nCy\nDale\nDameon\nDarien\nDaylen\nDenzel\nDeshawn\nEan\nEddy\nEder\nEnoch\nFlavio\nFrancis\nFreddie\nFrederick\nGannon\nGarrison\nGaven\nGavyn\nGino\nGuadalupe\nIbrahim\nIsaak\nIzak\nJadyn\nJaedon\nJamal\nJase\nJaykob\nJeramiah\nJermaine\nJhovany\nJoesph\nJohnathon\nJordyn\nJoseangel\nJulien\nKael\nKain\nKeon\nKhalil\nKolton\nKonnor\nKorey\nLars\nLeonard\nLoren\nLuciano\nLucio\nMalcolm\nMarcel\nMiguelangel\nNathen\nNevin\nNomar\nOdin\nRamsey\nRaven\nRay\nRayden\nReilly\nRemington\nRocky\nRoland\nRosendo\nRylee\nSage\nTayton\nThaddeus\nTom\nTrever\nTyree\nUbaldo\nUlices\nValentino\nVance\nWayne\nXzavier\nZaid\nZavier\nZechariah\nAngel\nDaniel\nJacob\nAnthony\nJose\nJesus\nMichael\nJoshua\nLuis\nGabriel\nDavid\nChristopher\nAlexander\nAndrew\nEthan\nMatthew\nJonathan\nJoseph\nChristian\nJuan\nDiego\nNathan\nNoah\nAdrian\nCarlos\nLogan\nAiden\nKevin\nRyan\nTyler\nDylan\nIsaac\nNicholas\nBrandon\nSamuel\nIsaiah\nJames\nJulian\nElijah\nWilliam\nZachary\nSebastian\nXavier\nBenjamin\nJohn\nRobert\nJack\nAlejandro\nCaleb\nGavin\nLuke\nAaron\nAidan\nConnor\nFrancisco\nJordan\nDominic\nMiguel\nJackson\nAustin\nAdam\nBryan\nJustin\nNathaniel\nManuel\nVictor\nJayden\nBrian\nThomas\nEduardo\nJorge\nLandon\nMason\nFernando\nDamian\nJason\nOscar\nEvan\nCesar\nHayden\nJesse\nTristan\nAlex\nAndres\nHector\nWyatt\nAntonio\nIvan\nHunter\nIan\nRicardo\nAlexis\nSean\nLucas\nAlan\nOwen\nKyle\nOmar\nSteven\nCameron\nCarter\nJavier\nEric\nEdgar\nJaden\nRuben\nCole\nMario\nChase\nJoel\nSergio\nBrayden\nAbraham\nCharles\nLiam\nVincent\nCody\nJake\nCristian\nJeremiah\nKaden\nLeonardo\nRichard\nMartin\nBrody\nSeth\nKaleb\nCaden\nMarco\nTanner\nTimothy\nEdwin\nCarson\nDevin\nRoberto\nSantiago\nJared\nMarcus\nBrayan\nJosiah\nAyden\nBryce\nIsrael\nRiley\nGage\nRoman\nJosue\nParker\nBlake\nTrevor\nErick\nGiovanni\nPedro\nPreston\nElias\nMarcos\nAshton\nDamien\nJulio\nNotnamed\nPaul\nRamon\nNicolas\nMark\nRafael\nHenry\nFabian\nArmando\nRaul\nEdward\nCooper\nBrady\nEsteban\nJohnathan\nErik\nGael\nPatrick\nAdan\nColin\nColton\nConner\nDerek\nJace\nJeremy\nLevi\nTravis\nShane\nEmiliano\nGarrett\nRaymond\nAlberto\nGerardo\nMax\nArturo\nEmanuel\nErnesto\nBraden\nKenneth\nMicah\nEmmanuel\nEzekiel\nAbel\nAxel\nDominick\nDonovan\nIsmael\nJohnny\nShawn\nGrant\nJaime\nKai\nZane\nEnrique\nGeorge\nStephen\nEli\nJoaquin\nJonah\nLorenzo\nFrank\nLanden\nPablo\nDevon\nEmilio\nSpencer\nGustavo\nDillon\nPeter\nSaul\nAden\nAndre\nMaxwell\nRyder\nTroy\nUriel\nAlfredo\nAngelo\nJaxon\nKaiden\nMiles\nOliver\nKeegan\nNolan\nOrlando\nGuillermo\nWesley\nXander\nAvery\nHudson\nAndy\nJakob\nMaddox\nMateo\nBrendan\nRylan\nTaylor\nBradley\nMalachi\nSalvador\nCayden\nDustin\nTrenton\nTy\nBryson\nDane\nGrayson\nKayden\nPeyton\nTalan\nTyson\nYahir\nAsher\nLeo\nMoises\nSkyler\nCollin\nDakota\nDante\nLincoln\nRene\nDrew\nPorter\nCalvin\nIssac\nZander\nBrock\nCade\nCorey\nDanny\nEstevan\nHugo\nMauricio\nRodrigo\nScott\nAlonso\nCamden\nChance\nJoe\nMisael\nRodolfo\nAlbert\nAlvaro\nFelipe\nGregory\nJaiden\nJalen\nJeffrey\nLeonel\nMaximiliano\nNickolas\nSimon\nTate\nTrent\nTrey\nVicente\nAlfonso\nDarius\nDrake\nEzequiel\nEzra\nHarrison\nJulius\nLance\nMorgan\nTristen\nCohen\nEddie\nFelix\nMaximus\nOctavio\nPhoenix\nRandy\nSantos\nTalon\nBraeden\nKade\nKyler\nNikolas\nTomas\nUlises\nAldo\nAlec\nAli\nBrett\nCasey\nClayton\nCruz\nGilbert\nMarc\nShaun\nWeston\nAllen\nCash\nIsai\nIsaias\nJayson\nLukas\nMathew\nMicheal\nMoses\nPhillip\nRonald\nRudy\nSawyer\nTony\nBennett\nBrenden\nCaiden\nDennis\nElliot\nGilberto\nIsiah\nIzaiah\nJairo\nJett\nJohan\nNoe\nOrion\nOswaldo\nRigoberto\nRomeo\nAdrien\nAgustin\nBrennan\nBrent\nChris\nEaston\nGriffin\nIgnacio\nIrvin\nJay\nJonas\nLeland\nLuca\nMitchell\nNoel\nRicky\nSilas\nZachariah\nZackary\nAnderson\nColby\nCristopher\nCurtis\nDallas\nElliott\nHumberto\nJaydon\nJoey\nJude\nLane\nQuentin\nRowan\nRussell\nAdolfo\nBraxton\nCorbin\nCory\nDawson\nDonald\nGunnar\nJadon\nJimmy\nKameron\nLarry\nPayton\nRamiro\nRogelio\nRoy\nSkylar\nTommy\nAlexandro\nAmare\nBrodie\nJameson\nJaylen\nJonathon\nKeaton\nNehemiah\nPierce\nWalter\nAlonzo\nAriel\nArthur\nBryant\nCharlie\nConor\nDalton\nDamon\nDean\nDerrick\nDorian\nJaxson\nLawrence\nMarvin\nQuinn\nRyland\nSolomon\nSteve\nTheodore\nValentin\nAbram\nBernardo\nBranden\nChandler\nCristobal\nDallin\nDeclan\nDouglas\nEfrain\nFreddy\nGary\nGunner\nJulien\nKian\nLee\nMarlon\nMaurice\nOsvaldo\nRolando\nWarren\nZachery\nAdriel\nAllan\nAri\nBoston\nBraulio\nColten\nCyrus\nDarren\nDavian\nDerick\nDominik\nGianni\nGiovani\nHolden\nJessie\nKellen\nLeon\nMarcelino\nNelson\nObed\nPhilip\nReece\nRhett\nSonny\nTucker\nTyrell\nYandel\nZion\nArjun\nBeau\nCraig\nDraven\nGauge\nGideon\nJayce\nJerry\nJovanny\nJustice\nKeith\nKody\nMaximilian\nNash\nNathanael\nReid\nRex\nAlessandro\nAlexzander\nAmir\nAugustine\nAydan\nBraydon\nBruce\nBruno\nBrycen\nDavis\nElian\nFinn\nGuadalupe\nHarley\nMalakai\nMalaki\nMarcelo\nMarshall\nMyles\nNathanial\nQuintin\nRay\nRey\nReynaldo\nRiver\nRyker\nWaylon\nAddison\nArmani\nCarl\nChad\nDario\nDeven\nEden\nGannon\nGrady\nJair\nJeffery\nJerome\nJorden\nJordon\nJovani\nJuancarlos\nKristian\nLeobardo\nLouis\nLuciano\nMariano\nMarques\nMaverick\nMelvin\nMiguelangel\nMilo\nNathen\nQuinton\nRamses\nReese\nRoger\nRonaldo\nTriston\nVan\nXzavier\nYair\nAlvin\nAmari\nAmmon\nAydin\nBarrett\nCale\nCamron\nCarlo\nCrew\nCristofer\nDamion\nDarian\nDarnell\nDarrell\nDeacon\nDesmond\nDilan\nEdgardo\nGerman\nGiovanny\nIbrahim\nIsacc\nIsidro\nJaciel\nJan\nJase\nJax\nJoan\nJon\nJonatan\nJovanni\nJovany\nKeanu\nKendrick\nKeven\nKieran\nKole\nKristopher\nLeonard\nMadden\nMilton\nRandall\nReed\nSantino\nTobias\nToby\nTristin\nUriah\nVance\nWalker\nAbdiel\nAdyn\nAlden\nAlek\nAntoine\nAnton\nBailey\nBenito\nBentley\nBilly\nBlaine\nBraiden\nClinton\nDavin\nDeshawn\nDominique\nEliseo\nElisha\nFidel\nGerald\nGreyson\nHeriberto\nHiram\nIzayah\nJagger\nJarrett\nJaziel\nJhonatan\nJohnathon\nJunior\nKael\nKarson\nKeagan\nKenny\nKingston\nKolby\nMalik\nMatias\nNestor\nOsmar\nRocky\nSheldon\nStone\nWade\nWilson\nZavier\nAbner\nAhmed\nAlfred\nArath\nArian\nAryan\nAtticus\nBen\nBlaze\nBobby\nBraedon\nClark\nCoby\nDangelo\nDayton\nDeandre\nDemetri\nDenzel\nDevan\nDevyn\nEan\nEddy\nEleazar\nEmerson\nErubiel\nFrancis\nFrederick\nGonzalo\nImanol\nIrving\nIsac\nIzaac\nJaycob\nJoseluis\nJosh\nJuanpablo\nKadin\nKarsten\nKasey\nKash\nKeenan\nKenji\nKenyon\nKolton\nLeandro\nLewis\nLuka\nMauro\nMike\nMohammad\nNeil\nNico\nNigel\nNorberto\nOsman\nPaxton\nPresley\nRaiden\nRalph\nRaymundo\nReuben\nRonan\nRonnie\nRylee\nSage\nSlade\nTeagan\nTerrance\nTorin\nTrystan\nUlysses\nValentino\nVaughn\nYael\nZackery\nAdin\nAhmad\nAlexys\nAntony\nAric\nAron\nAthan\nAzael\nBaltazar\nBradyn\nBronson\nBrooks\nCannon\nCassius\nChaz\nClint\nCoen\nDavon\nDeion\nDemetrius\nDeshaun\nDillan\nDuane\nDuncan\nDylon\nEfren\nEliel\nErnest\nEros\nEsau\nEthen\nFausto\nFavian\nFrankie\nFranklin\nFredy\nGarret\nGavyn\nGian\nGiancarlo\nGregorio\nHassan\nHoward\nHyrum\nIsael\nJamie\nJamison\nJancarlo\nJareth\nJensen\nJordy\nJovan\nKane\nKarl\nKillian\nKobe\nKoen\nKolten\nKonnor\nLandan\nLandyn\nLayne\nLouie\nLucian\nMalcolm\nMathias\nMatthias\nMohamed\nMohammed\nNikolai\nPayson\nPete\nRaven\nRemington\nRocco\nRonin\nRoyce\nSam\nSantana\nStephan\nTadeo\nTalen\nTerry\nVladimir\nXavior\nZack\nZakary\nAbran\nAce\nAdalberto\nAdonis\nAdriano\nAeden\nAidyn\nAmon\nAndrei\nArnoldo\nAugust\nAundre\nAurelio\nAven\nAzriel\nBranson\nBrendon\nBrigham\nBroderick\nBryton\nCain\nCal\nCamrin\nCarmelo\nCase\nCason\nCedric\nChristofer\nColeman\nColt\nConrad\nCorban\nDagoberto\nDarion\nDarrin\nDashawn\nDavion\nDax\nDeegan\nDemian\nDewayne\nDezmond\nDimitri\nDomenic\nDomingo\nElmer\nErwin\nEthyn\nEugene\nEverardo\nEverett\nEythan\nFermin\nFinley\nFlavio\nGadiel\nGavan\nGeovanni\nGibran\nGibson\nGlenn\nHamza\nHaydon\nHeath\nHerman\nHernan\nHezekiah\nHouston\nIra\nIsreal\nJacobo\nJadyn\nJaeden\nJael\nJahir\nJaidon\nJaylon\nJeshua\nJohann\nJordyn\nJosemanuel\nJudas\nJustus\nKale\nKanyon\nKasen\nKonner\nKorbin\nKyan\nKylan\nLatrell\nLeroy\nLino\nLondon\nMaddux\nMarkus\nMatteo\nMaximo\nMckay\nMekhi\nMemphis\nMessiah\nMikael\nMonte\nNahum\nNick\nNicklas\nNomar\nOmari\nOsbaldo\nOtis\nPaulo\nQuincy\nQuinlan\nRaphael\nReagan\nReyes\nRhys\nRidge\nRigo\nRowdy\nRyu\nSaid\nShayne\nSimeon\nSoren\nStefan\nTatum\nTavin\nTerrell\nTerrence\nTevin\nTillman\nTitus\nTrenten\nUziel\nVince\nVincenzo\nWayne\nWill\nZain\nZayden\nZeke\nAngel\nJose\nDaniel\nAnthony\nJacob\nDavid\nLuis\nEthan\nJesus\nMichael\nChristopher\nJoshua\nAlexander\nAndrew\nGabriel\nJoseph\nJonathan\nNoah\nChristian\nMatthew\nLogan\nIsaac\nDiego\nAdrian\nBrandon\nNathan\nCarlos\nJuan\nRyan\nAiden\nIsaiah\nKevin\nNicholas\nTyler\nJulian\nDylan\nSamuel\nWilliam\nJayden\nJames\nBenjamin\nElijah\nAaron\nJohn\nJackson\nSebastian\nMiguel\nXavier\nZachary\nGavin\nRobert\nAlejandro\nJack\nConnor\nMason\nCaleb\nJordan\nJorge\nFrancisco\nVictor\nEvan\nDominic\nLuke\nAdam\nBryan\nManuel\nOscar\nJustin\nFernando\nNathaniel\nAntonio\nJason\nLandon\nAustin\nThomas\nAidan\nAlex\nDamian\nAndres\nTristan\nRicardo\nSergio\nEric\nAlan\nOwen\nEduardo\nHector\nWyatt\nCameron\nIan\nCesar\nJesse\nBrian\nHunter\nLucas\nHayden\nBrayden\nBrody\nCristian\nSean\nCole\nMario\nOmar\nChase\nErick\nIvan\nRichard\nCarter\nCaden\nJaden\nJavier\nJoel\nJosiah\nLeonardo\nSantiago\nAbraham\nJeremiah\nBlake\nCharles\nFabian\nKyle\nSteven\nAyden\nEdgar\nAlexis\nMarcus\nVincent\nDevin\nKaden\nElias\nLiam\nJosue\nEmmanuel\nPreston\nRuben\nGiovanni\nParker\nBrady\nIsrael\nMarco\nGael\nGage\nJake\nMartin\nEdwin\nColton\nSeth\nTimothy\nColin\nMicah\nNicolas\nCooper\nDerek\nMark\nBrayan\nRoberto\nCarson\nJulio\nTanner\nJared\nKaleb\nRoman\nBryce\nHenry\nRaul\nCody\nArmando\nEmilio\nGerardo\nDamien\nTrevor\nAndre\nMax\nPedro\nRiley\nJoaquin\nPaul\nMarcos\nPatrick\nEdward\nEli\nKenneth\nJaxon\nAxel\nRafael\nAshton\nErik\nJeremy\nRamon\nOliver\nPablo\nAdan\nAlberto\nEnrique\nEmiliano\nRodrigo\nZane\nGeorge\nRyder\nRaymond\nArturo\nEzekiel\nJohnny\nLevi\nGustavo\nKayden\nShawn\nEsteban\nBraden\nJaime\nOrlando\nAbel\nJohnathan\nMateo\nShane\nJace\nWesley\nEmanuel\nNotnamed\nPeter\nSaul\nCash\nDillon\nDonovan\nErnesto\nHudson\nIsmael\nLincoln\nPeyton\nStephen\nCollin\nDante\nDevon\nJaiden\nJonah\nKeegan\nTyson\nXander\nAlfredo\nConner\nKai\nTravis\nAngelo\nAsher\nBradley\nCayden\nGrant\nMalachi\nNolan\nMoises\nTroy\nAvery\nCade\nDominick\nGarrett\nKaiden\nAden\nAndy\nBrock\nCalvin\nDrew\nLanden\nSkyler\nAlbert\nKyler\nLorenzo\nMaxwell\nRogelio\nCruz\nMiles\nAldo\nChance\nDrake\nMauricio\nBryson\nRene\nUriel\nRylan\nTrent\nZander\nBraxton\nDakota\nGuillermo\nHugo\nJeffrey\nLukas\nMaddox\nTrey\nTy\nCorbin\nFrank\nGrayson\nJaxson\nSpencer\nDane\nEzequiel\nKade\nVicente\nIssac\nAlvaro\nEzra\nGregory\nJunior\nTrenton\nCamden\nCasey\nDarius\nIzaiah\nJakob\nJonas\nMaximus\nOsvaldo\nPhoenix\nSawyer\nTate\nUlises\nBrenden\nBryant\nDallas\nMaximiliano\nPorter\nScott\nAlonso\nElliot\nIsaias\nNoe\nYahir\nAli\nCristopher\nFelix\nGilbert\nJalen\nKingston\nLeo\nQuinn\nRandy\nAllen\nChris\nEaston\nJayson\nJulius\nLeland\nMisael\nSalvador\nSimon\nTaylor\nTristen\nValentin\nBeau\nBrett\nBruce\nCorey\nDanny\nGrady\nJerry\nJude\nRodolfo\nRoy\nTalon\nAbram\nArthur\nBraeden\nCaiden\nClayton\nConor\nDamion\nDustin\nGerman\nGilberto\nHumberto\nLarry\nLeonel\nPhillip\nQuentin\nRowan\nAlec\nAlonzo\nBrendan\nEverett\nGiovani\nGriffin\nHarrison\nKristopher\nMathew\nNehemiah\nPayton\nZackary\nAlfonso\nAmare\nColten\nDarian\nDawson\nDean\nDraven\nEfrain\nIsai\nJameson\nJaydon\nJoe\nMyles\nNash\nNikolas\nRyland\nTony\nWalter\nWeston\nBraydon\nBrennan\nCohen\nDominik\nEfren\nJadon\nJayce\nKane\nKillian\nMarc\nMicheal\nMoses\nNathanael\nNoel\nRamiro\nRey\nTucker\nZachariah\nAmari\nCharlie\nDerrick\nEddie\nEstevan\nFrankie\nIrvin\nJaeden\nJimmy\nKeith\nMorgan\nReed\nShaun\nYael\nZion\nAgustin\nAlexzander\nAmir\nAriel\nBranden\nBrodie\nCannon\nChandler\nFelipe\nIgnacio\nJay\nJessie\nJett\nKameron\nMalik\nNickolas\nOctavio\nPhilip\nRamses\nRomeo\nSilas\nTheodore\nTitus\nAdolfo\nBilly\nBraiden\nByron\nCrew\nDallin\nDamon\nDario\nDavian\nDavis\nDeclan\nDennis\nDevan\nDonald\nElian\nElliott\nFreddy\nGary\nKobe\nLeandro\nMalakai\nOrion\nRaymundo\nRicky\nSantos\nTalan\nAdriel\nAllan\nBrendon\nColby\nDarren\nGreyson\nJair\nJase\nJoey\nJuancarlos\nJudah\nJustice\nLance\nLuca\nRigoberto\nRocco\nRoger\nRussell\nSam\nWarren\nAri\nDouglas\nFinn\nGiancarlo\nIrving\nIsidro\nJairo\nJamison\nJohnathon\nJonathon\nKellen\nKody\nLane\nLawrence\nLeon\nMadden\nMarkus\nOswaldo\nRay\nReese\nRyker\nSteve\nWade\nAhmed\nAmmon\nArjun\nArmani\nAryan\nBennett\nBoston\nCarlo\nCory\nDalton\nEliseo\nGideon\nGunnar\nIbrahim\nJeffery\nJerome\nJohan\nJosh\nJulien\nKeagan\nKellan\nMatteo\nMaverick\nOsmar\nQuinton\nReyes\nRudy\nTerry\nTobias\nYurem\nZayden\nAbdiel\nAdrien\nAlvin\nAnderson\nAron\nAydan\nBenicio\nBernardo\nBobby\nBraulio\nCian\nDeandre\nDeegan\nDorian\nEder\nEugene\nIsiah\nJasper\nJaylen\nJoseluis\nJovan\nKasen\nKeenan\nKorbin\nKristian\nMarshall\nMaximo\nMitchell\nMohamed\nQuintin\nReynaldo\nRonald\nRonan\nSonny\nTommy\nTristin\nVince\nYair\nYandel\nZackery\nAlek\nBarrett\nBen\nBrent\nChad\nClark\nColter\nCurtis\nCyrus\nDavin\nDax\nDeshawn\nDeven\nErwin\nFinley\nGerald\nGianni\nGunner\nHarley\nHiram\nHolden\nIsaak\nIzayah\nJaron\nJeshua\nJosef\nJovanni\nKadin\nKarim\nKarson\nKegan\nKelvin\nKevyn\nLee\nLouis\nMarcelo\nMarques\nMarvin\nMiller\nPierce\nQuincy\nQuinten\nRaiden\nReece\nSage\nSantino\nSkylar\nSoren\nStephan\nToby\nTomas\nUriah\nWalker\nAdalberto\nAlden\nAlessandro\nBailey\nBenito\nBlaze\nColt\nCristofer\nDan\nDarien\nDavion\nDemian\nDevyn\nElvis\nEmerson\nEmmett\nEsai\nFidel\nGauge\nGaven\nGavyn\nHeriberto\nJoan\nJovani\nKeaton\nKeven\nKolton\nKonner\nLayton\nLucian\nMaurice\nMelvin\nNelson\nNery\nNestor\nNick\nNixon\nOsman\nRalph\nRhett\nRodney\nRolando\nRonaldo\nSolomon\nStanley\nTeagan\nUlysses\nZachery\nZaid\nZakary\nZayne\nAddison\nAdonis\nAlexandro\nAusten\nBeckett\nBlaine\nBo\nBraylon\nBrigham\nBruno\nBrycen\nCarl\nChaz\nConrad\nCristobal\nDangelo\nDeangelo\nDiesel\nDilan\nDomanic\nDuncan\nEddy\nElmer\nEmir\nEthen\nFavian\nFermin\nFrederick\nGadiel\nGaige\nGraham\nHoracio\nHyrum\nIzaak\nJan\nJax\nJaylin\nJedidiah\nJordy\nJovany\nKasey\nKendrick\nKenny\nKoen\nLennon\nLucius\nMarius\nMarlon\nMaximilian\nMayson\nMekhi\nMiguelangel\nMike\nNico\nObed\nPatricio\nRiver\nRory\nRowen\nRoyce\nSlade\nSterling\nTerrance\nTheo\nTrace\nTre\nTrevon\nTyree\nTyrell\nVan\nAbelardo\nAdriano\nAidyn\nAlfred\nAlijah\nAntony\nArian\nAsa\nAsiel\nBarry\nBenny\nBradyn\nBraedon\nBrice\nCale\nCarmelo\nCasen\nChristofer\nConstantine\nCornelius\nDameon\nDeacon\nDerick\nDomenic\nEden\nElisha\nEnzo\nErnest\nFabricio\nFausto\nFinnegan\nFranco\nFredrick\nGarret\nGenaro\nGeoffrey\nGeovanny\nGonzalo\nGregorio\nHassan\nHeath\nHeber\nIzak\nJael\nJagger\nJamari\nJaren\nJaycob\nJaylon\nJaziel\nJet\nJon\nJonatan\nJordin\nJordon\nJuanpablo\nKaeden\nKalani\nKale\nKason\nKelton\nKieran\nKonnor\nLandyn\nLayne\nLeonidas\nMaddux\nMalaki\nMarcelino\nMathias\nMohammed\nMyron\nNathanial\nNikolai\nNomar\nOdin\nPaulo\nPayson\nRex\nRoland\nRonin\nRosario\nSaid\nSantana\nShay\nStephon\nStetson\nTaj\nTerrence\nTrevin\nTristian\nUbaldo\nWaylon\nXzavier\nYeshua\nZack\nZeus\nAaden\nAdin\nAdyn\nAeden\nAlain\nAlton\nAnakin\nAnders\nAndreas\nAndrei\nAndrik\nArman\nArnold\nArnoldo\nAthan\nAtticus\nAugust\nAugustine\nAydin\nAziel\nBode\nBodhi\nBrennen\nBret\nBrighton\nBritton\nBrodee\nBroden\nBronson\nCaesar\nCain\nCallum\nCamilo\nCamron\nCase\nCraig\nDarnell\nDarrius\nDarwin\nDenzel\nDesmond\nDevlin\nDillan\nDominique\nDomonic\nDonavan\nEarl\nEdgardo\nEly\nEmery\nEphraim\nEsau\nEverardo\nFederico\nForrest\nFrancesco\nFranklin\nGannon\nGeovanni\nGian\nGiovanny\nGrey\nGuadalupe\nHank\nHarry\nHernan\nHezekiah\nIsael\nIzaac\nJadyn\nJaidon\nJaidyn\nJakub\nJasiah\nJaven\nJavon\nJaydin\nJean\nJeancarlo\nJericho\nJermaine\nJessy\nJiovanni\nJorden\nJullian\nKael\nKalvin\nKendall\nKohen\nKristofer\nLawson\nLeobardo\nLeroy\nLewis\nLuciano\nLuisangel\nMarek\nMarquez\nMarquis\nMatthias\nMaximino\nMaxx\nMemphis\nMerrick\nMichaelangelo\nMickey\nMikah\nMilo\nNasir\nNathen\nOcean\nOtto\nPaxton\nRaphael\nRian\nRickey\nRico\nRueben\nRylen\nSabastian\nSammy\nSamson\nServando\nSheldon\nStone\nSullivan\nTahj\nTatum\nThaddeus\nTristyn\nTrystan\nTyrese\nTyrone\nValentino\nVance\nVaughn\nVernon\nVincente\nVito\nYovani\nAnthony\nDaniel\nAngel\nAlexander\nJacob\nMichael\nEthan\nJose\nJoshua\nJesus\nDavid\nJoseph\nChristopher\nGabriel\nAndrew\nAiden\nAdrian\nLuis\nMatthew\nNoah\nJonathan\nJayden\nNathan\nChristian\nCarlos\nRyan\nIsaac\nBrandon\nSamuel\nDiego\nLogan\nIsaiah\nJulian\nBenjamin\nDylan\nWilliam\nJuan\nElijah\nJames\nGavin\nKevin\nJohn\nNicholas\nTyler\nMiguel\nJackson\nXavier\nMason\nAlejandro\nJack\nBrody\nAaron\nSebastian\nRobert\nConnor\nCaleb\nZachary\nJordan\nEvan\nLandon\nLuke\nJustin\nBryan\nAustin\nDominic\nJorge\nTristan\nVictor\nWyatt\nAdam\nFrancisco\nBrian\nAidan\nNathaniel\nChase\nOscar\nHunter\nManuel\nEduardo\nJason\nAntonio\nDamian\nRicardo\nLucas\nAlex\nThomas\nCesar\nBrayden\nIan\nCarter\nFernando\nCameron\nAyden\nIvan\nAndres\nSantiago\nJesse\nOwen\nErick\nJavier\nAlan\nJoel\nCharles\nEric\nLiam\nSean\nCole\nHayden\nHector\nBlake\nJaden\nSergio\nGiovanni\nJosiah\nColton\nJeremiah\nRichard\nAbraham\nRoman\nHenry\nEdgar\nRiley\nDamien\nVincent\nMario\nDevin\nOmar\nCarson\nKyle\nCaden\nJake\nCristian\nEmmanuel\nLeonardo\nKaden\nSteven\nJosue\nElias\nKaleb\nSeth\nCody\nMarcus\nEli\nAshton\nMark\nIsrael\nMax\nMicah\nPaul\nParker\nAlexis\nDerek\nLevi\nPreston\nJared\nMartin\nRoberto\nAdan\nRafael\nRuben\nBrady\nBryce\nGrant\nRaymond\nEmiliano\nGage\nOliver\nRyder\nCooper\nFabian\nJonah\nArmando\nAxel\nJeremy\nTimothy\nMarcos\nTanner\nEdwin\nGerardo\nMiles\nJaxon\nPatrick\nColin\nNicolas\nZane\nCash\nPedro\nRamon\nEdward\nJace\nJohnny\nMarco\nNolan\nBraden\nEzekiel\nJulio\nPeyton\nLincoln\nRaul\nShane\nTrevor\nEmilio\nGarrett\nHudson\nJaime\nJoaquin\nAlberto\nErik\nMaximus\nSaul\nConner\nEnrique\nGael\nGustavo\nMaxwell\nAsher\nKeegan\nPablo\nStephen\nAndre\nArturo\nBrayan\nCollin\nDominick\nKaiden\nTravis\nCruz\nIsmael\nJude\nKenneth\nAngelo\nCayden\nJaiden\nMateo\nOrlando\nAndy\nEsteban\nGeorge\nKayden\nRylan\nAbel\nJohnathan\nMaddox\nEmanuel\nKai\nLeo\nNotnamed\nShawn\nSkyler\nDrake\nMalachi\nTroy\nUriel\nEaston\nCalvin\nGrayson\nMauricio\nXander\nDillon\nErnesto\nFrank\nJonas\nLorenzo\nMaximiliano\nTy\nWesley\nDevon\nYahir\nAlfredo\nBradley\nCamden\nDonovan\nKingston\nRomeo\nSawyer\nAvery\nDante\nPeter\nRyker\nSalvador\nAden\nBryson\nGregory\nIssac\nPhillip\nRandy\nRodrigo\nTrenton\nCade\nKyler\nLanden\nRene\nSpencer\nTyson\nChance\nDallas\nGuillermo\nHugo\nCaiden\nGrady\nIzaiah\nMyles\nTaylor\nAlonso\nAlonzo\nBraxton\nJayson\nJeffrey\nTristen\nValentin\nBrenden\nDrew\nEzra\nGilbert\nJaxson\nJulius\nLuca\nMoises\nRocco\nRogelio\nAlec\nBrock\nCasey\nDanny\nFelix\nGerman\nJalen\nJett\nPayton\nRowan\nScott\nSimon\nAbram\nBrodie\nDarius\nEddie\nGriffin\nJaylen\nJerry\nNickolas\nQuinn\nUlises\nAlbert\nClayton\nDustin\nElliot\nIsaias\nJameson\nKade\nPhoenix\nRodolfo\nAlvaro\nBraydon\nBrett\nGreyson\nHarrison\nIsai\nJohan\nKane\nMathew\nRicky\nAaden\nAmare\nAriel\nArthur\nBrendan\nConor\nDakota\nDane\nDavin\nDeclan\nEstevan\nJimmy\nLukas\nMitchell\nNash\nNikolas\nTalon\nTeagan\nZander\nBraylon\nColten\nCorey\nDominik\nEzequiel\nJakob\nJay\nJoey\nKameron\nLance\nMalik\nMarshall\nMaverick\nRussell\nBennett\nBernardo\nBraeden\nBrennan\nDallin\nDalton\nDonald\nElian\nJairo\nKellen\nLeon\nOrion\nRey\nShaun\nTate\nTrey\nZackary\nZion\nAdriel\nAli\nAllen\nCristopher\nEverett\nGunner\nJoe\nJunior\nLouis\nPorter\nRoy\nRyland\nTomas\nTrent\nVicente\nWeston\nZachariah\nAgustin\nAldo\nAlexzander\nAlfonso\nBruno\nChris\nCorbin\nCyrus\nDean\nGraham\nGunnar\nJasper\nKeith\nLeonel\nMilo\nMisael\nMorgan\nNoe\nOctavio\nOsvaldo\nRaiden\nTheodore\nArmani\nBeau\nBobby\nCrew\nDerrick\nElliott\nFelipe\nGary\nGilberto\nGiovanny\nHumberto\nJessie\nJonathon\nKillian\nQuentin\nRonald\nSantino\nUlysses\nVance\nAlexandro\nAmari\nBryant\nColby\nDarian\nDarren\nDraven\nEmerson\nGianni\nJaydon\nJon\nKristopher\nLawrence\nNoel\nRigoberto\nSam\nSterling\nTucker\nAlek\nAron\nBrent\nBrigham\nCamron\nCharlie\nDeegan\nEmery\nFrankie\nGenaro\nGiancarlo\nHolden\nIrvin\nJadon\nJulien\nKieran\nKolton\nMadden\nMarley\nReece\nReed\nRoger\nRolando\nRonan\nSilas\nWalter\nYandel\nAdolfo\nAlvin\nAmmon\nAtticus\nBarrett\nBraiden\nCohen\nConrad\nCristobal\nCurtis\nDarey\nDavis\nDawson\nDax\nDesmond\nGauge\nGiovani\nHarley\nIsaak\nJayce\nJudah\nKash\nKorbin\nKristian\nLamar\nMalakai\nMarc\nPaxton\nReid\nSantos\nSkylar\nTitus\nTristin\nTriston\nZackery\nZayne\nAlijah\nAmir\nAydan\nBoston\nBruce\nByron\nCannon\nChad\nDario\nDorian\nFinn\nJovanny\nJovany\nJustus\nKale\nKenny\nKody\nNehemiah\nNixon\nReese\nRiver\nRudy\nSteve\nTony\nWade\nXzavier\nAllan\nAnderson\nBen\nBrycen\nColter\nDamion\nDamon\nDavian\nDeandre\nEden\nEthen\nFreddy\nFrederick\nIrving\nIsael\nIsiah\nJacoby\nJamison\nJase\nKael\nLane\nLeonidas\nLondon\nLyric\nMathias\nMaurice\nMoses\nNelson\nOsmar\nOswaldo\nQuincy\nRamses\nRonin\nRoyce\nTobias\nTommy\nVan\nYair\nYurem\nZayden\nAbdiel\nAce\nAlexavier\nAri\nAugustine\nCraig\nDiesel\nDouglas\nEfrain\nEver\nGavyn\nHeriberto\nIshaan\nIsidro\nJassiel\nJonatan\nJustice\nKeaton\nKelvin\nKobe\nKonner\nLandyn\nMariano\nMarkus\nMarlon\nMaxim\nMaximo\nMohamed\nNathanael\nObed\nPhilip\nQuinton\nRamiro\nRaymundo\nReyes\nRocky\nSage\nSlade\nTegan\nThaddeus\nTodd\nWestin\nYael\nZaid\nZavier\nAdrien\nAedan\nAusten\nBilly\nBlaine\nBraedan\nCael\nCarlo\nCason\nClinton\nColt\nCordell\nCory\nDarien\nDarrell\nDeacon\nDerick\nDeshawn\nDeven\nDevyn\nDominique\nEddy\nEfren\nGuadalupe\nHiram\nHyrum\nJan\nJerome\nJohnathon\nJorden\nJoseluis\nJovani\nKian\nKyan\nLarry\nLayton\nLeobardo\nMalcolm\nManny\nMaximilian\nMaxx\nMiguelangel\nNick\nNiko\nPierce\nRaphael\nRoland\nRonaldo\nRylen\nSaid\nTalan\nTerry\nToby\nUriah\nValentino\nWalker\nWayne\nYahel\nZack\nZain\nAidyn\nArian\nArnav\nAtreyu\nAzriel\nBaltazar\nBaron\nBayron\nBenicio\nBenito\nBenny\nBo\nBrendon\nBrogan\nCain\nCale\nCassius\nClark\nDale\nDangelo\nDavien\nDemian\nDennis\nDeshaun\nDilan\nDillan\nEder\nEdgardo\nElisha\nEnzo\nEugene\nEverardo\nFrancis\nFranklin\nFransisco\nGaige\nGeovanni\nGideon\nIgnacio\nIsac\nIsreal\nIzayah\nJacobo\nJahir\nJair\nJamari\nJaren\nJax\nJeramiah\nJeremias\nJeriah\nJerimiah\nJohann\nJoshuah\nKarson\nKarsten\nKason\nKeagan\nKenyon\nLuciano\nMarcelo\nMarques\nMarvin\nMatteo\nMerrick\nMicheal\nMohammed\nOdin\nQuintin\nRandall\nRay\nReagan\nRemy\nRhett\nSammy\nSolomon\nSonny\nStetson\nStratton\nTheo\nTrace\nTristyn\nTyree\nVaughn\nAhmed\nAlessandro\nAndru\nArcher\nArnold\nAryan\nAydin\nBradyn\nBraulio\nBrennon\nBrenton\nBrodey\nBrodi\nBronson\nCarl\nChace\nChaz\nCoen\nCristofer\nDavon\nDeion\nDemetrius\nDuncan\nEleazar\nEliseo\nElvis\nEly\nEmir\nFinley\nGarrison\nGonzalo\nGregorio\nHank\nHoracio\nJael\nJaron\nJarrett\nJaydan\nJaydin\nJayvon\nJermaine\nJeshua\nJoan\nJoseangel\nKadin\nKaeden\nKeenan\nKelton\nKendrick\nKeshawn\nKevyn\nKhalil\nKoen\nKolby\nLeandro\nLee\nLeland\nLeonard\nLewis\nLuisangel\nMack\nMarek\nMarion\nMarko\nMelvin\nMemphis\nMilton\nNestor\nOsiel\nPresley\nRayden\nRemington\nReuben\nRidge\nRonnie\nRory\nSamson\nSantana\nSimeon\nSoren\nStephan\nTaj\nTalen\nTaven\nTavin\nTrevin\nTreyton\nTrystan\nTurner\nTyrell\nUbaldo\nWaylon\nWilson\nWinston\nZechariah\nAbelardo\nAbner\nAdin\nAdonis\nAj\nAndon\nAndreas\nAnton\nAntony\nAntwan\nArmaan\nArman\nAurelio\nAzael\nBailey\nBenson\nBenton\nBoden\nBowen\nBrad\nBraedon\nBranden\nBrandyn\nBrennen\nCarsen\nCarsten\nCasen\nChandler\nCian\nClay\nCoby\nCordae\nCorde\nDameon\nDarwin\nDayton\nDeangelo\nDelano\nDereck\nDerik\nDevan\nDimitri\nDion\nDuke\nDyllan\nEdson\nEliel\nElmer\nEmmett\nEmmitt\nErvin\nFlavio\nForrest\nFranco\nGannon\nGaven\nGerald\nGerard\nGordon\nHamza\nHeath\nHugh\nIram\nIzaac\nIzaak\nIzak\nIzaya\nJadyn\nJaeden\nJamal\nJamie\nJasiel\nJavin\nJayceon\nJaycob\nJaziel\nJean\nJosh\nJuancarlos\nJuanpablo\nJudas\nKamden\nKasey\nKeven\nKing\nKolten\nKorben\nKyson\nLayne\nLinkin\nLonnie\nMagnus\nMarcelino\nMarcell\nMarquez\nMarquis\nMasen\nMatix\nMatthias\nMaximillian\nMekhi\nMessiah\nMickey\nMikel\nMiller\nMykel\nNathen\nNeil\nNery\nNigel\nNoa\nOcean\nOmari\nOsman\nPalmer\nRashad\nReilly\nRylee\nRyne\nSeven\nStone\nTayden\nTerrell\nTitan\nTreyvon\nTristian\nTytan\nUlisses\nUrijah\nVince\nYusuf\nZaiden\nZakary\nZephaniah\nJacob\nDaniel\nAlexander\nAngel\nAnthony\nEthan\nDavid\nMichael\nAiden\nJose\nJoshua\nGabriel\nChristopher\nJoseph\nJesus\nMatthew\nNoah\nLogan\nJulian\nAdrian\nJayden\nAndrew\nLuis\nChristian\nIsaac\nDylan\nElijah\nCarlos\nJonathan\nIsaiah\nJuan\nNathan\nBenjamin\nJames\nWilliam\nNicholas\nKevin\nSebastian\nRyan\nTyler\nBrandon\nSamuel\nJackson\nXavier\nDiego\nCaleb\nDominic\nAaron\nConnor\nJohn\nSantiago\nEvan\nJordan\nLandon\nMiguel\nRobert\nLiam\nGavin\nMason\nDamian\nCarter\nZachary\nLuke\nAlejandro\nBrody\nJack\nWyatt\nNathaniel\nAdam\nBrayden\nOscar\nAustin\nEduardo\nHunter\nIan\nVictor\nFrancisco\nJesse\nLucas\nCameron\nJason\nJustin\nOwen\nThomas\nJorge\nManuel\nChase\nAlan\nIvan\nJavier\nJeremiah\nJosiah\nAlex\nCole\nAntonio\nTristan\nGiovanni\nBlake\nBryan\nEric\nAyden\nParker\nSteven\nJaxon\nMax\nAidan\nHayden\nAndres\nCesar\nBrian\nVincent\nJoel\nRicardo\nSergio\nCharles\nHenry\nEli\nLevi\nColton\nEmmanuel\nAbraham\nHector\nKaleb\nOmar\nMario\nCarson\nRuben\nRyder\nRiley\nIsrael\nCooper\nOliver\nRichard\nEdgar\nSeth\nDevin\nPreston\nKaden\nCristian\nJake\nMarcus\nMicah\nDamien\nRoman\nBrady\nBryce\nEdwin\nTimothy\nRoberto\nCody\nElias\nEmiliano\nFernando\nGage\nMartin\nDerek\nEdward\nKyle\nAshton\nErick\nLeonardo\nNicolas\nNolan\nCaden\nSean\nJace\nJaden\nGrant\nPatrick\nZane\nAdan\nGael\nKai\nKayden\nConner\nMarco\nArmando\nJeremy\nAsher\nRamon\nTanner\nEzekiel\nTrevor\nEmilio\nJared\nLincoln\nPedro\nFabian\nJosue\nMarcos\nRaymond\nHudson\nMaxwell\nMark\nMaximus\nAbel\nAndre\nAngelo\nAxel\nCash\nJulio\nColin\nCollin\nErik\nXander\nAlexis\nJaxson\nRaul\nRylan\nTroy\nMateo\nGerardo\nJonah\nTravis\nCruz\nDominick\nDrake\nEzra\nMiles\nIsmael\nPaul\nJoaquin\nBraden\nGeorge\nJude\nShane\nTy\nEaston\nCamden\nChance\nJaiden\nJaime\nKenneth\nWesley\nFrank\nRafael\nStephen\nCayden\nShawn\nSkyler\nAlberto\nDante\nPablo\nSaul\nAndy\nBrayan\nEsteban\nPeter\nSpencer\nArturo\nEddie\nErnesto\nKingston\nLorenzo\nMalachi\nNotnamed\nRomeo\nMaddox\nMauricio\nMoises\nPeyton\nDillon\nGarrett\nJohnny\nKeegan\nRyker\nTyson\nZander\nCalvin\nSawyer\nCaiden\nDonovan\nEnrique\nGuillermo\nJohnathan\nKaiden\nTrey\nBraydon\nGustavo\nIzaiah\nJett\nPhoenix\nRene\nTrenton\nJayce\nTristen\nUriel\nAden\nBradley\nBrennan\nDominik\nGraham\nGrayson\nJulius\nQuinn\nSalvador\nAli\nBraxton\nDanny\nDean\nJakob\nKade\nLanden\nOrlando\nRodrigo\nRudy\nAdriel\nBrendan\nBrenden\nColten\nEmanuel\nFelix\nGilbert\nJayson\nLeonel\nLukas\nNehemiah\nWeston\nOrion\nSantos\nSilas\nAaden\nAldo\nAlec\nBryson\nByron\nCorbin\nDrew\nJameson\nLeo\nPaxton\nRocco\nZion\nCade\nClayton\nJeffrey\nMyles\nSimon\nZachariah\nAlfredo\nEmmett\nKane\nKyler\nMatteo\nMaximiliano\nPayton\nQuentin\nRandy\nTalon\nTrent\nZackary\nAlijah\nDevon\nDustin\nIsaias\nJimmy\nJonas\nMilo\nRowan\nScott\nAbdiel\nElliot\nEverett\nHolden\nHugo\nJax\nJaydon\nLouis\nMathew\nYandel\nAlbert\nAlexzander\nAmare\nAvery\nDesmond\nFelipe\nGunner\nJohan\nJudah\nMisael\nMohamed\nNikolas\nRyland\nTaylor\nWalter\nXzavier\nAbram\nAlonzo\nBraylon\nCasey\nChris\nConor\nDallin\nDane\nDraven\nGreyson\nGriffin\nIssac\nJunior\nMadden\nNickolas\nNoel\nValentin\nVicente\nYahir\nAllen\nAlonso\nBennett\nBruce\nCohen\nColt\nDallas\nDarian\nDavian\nDilan\nEstevan\nGregory\nHarrison\nIrvin\nJoe\nKian\nLeon\nNash\nPorter\nRaiden\nRay\nSteve\nUlises\nAlfonso\nAri\nArthur\nBraeden\nCharlie\nConrad\nCorey\nCyrus\nDavis\nDonald\nEmerson\nFrankie\nGerman\nGianni\nGideon\nGilberto\nJasper\nJoey\nJulien\nKellen\nMoses\nPhillip\nReed\nReid\nRey\nRonan\nTomas\nValentino\nYael\nAriel\nCory\nDakota\nGauge\nIsiah\nJaxton\nJaylen\nMarkus\nMarlon\nMaximilian\nNikolai\nPierce\nTobias\nTony\nTucker\nAmir\nAnderson\nBarrett\nBraiden\nBrock\nCael\nCrew\nDamon\nDeclan\nDerrick\nDeven\nEfrain\nEzequiel\nGiovani\nGrady\nJay\nKarter\nLeland\nLuciano\nMalik\nNathanael\nPhilip\nRocky\nRussell\nTalan\nTate\nTitus\nTristin\nAce\nAdrien\nAmari\nBranden\nBrendon\nCamilo\nDalton\nDarius\nDemetrius\nDennis\nDillan\nEfren\nEmery\nFranco\nGonzalo\nIsai\nJacoby\nJadon\nKeith\nKieran\nKristopher\nLane\nLarry\nLondon\nLuca\nMalakai\nMarc\nNoe\nOsvaldo\nRhett\nRolando\nRoy\nSkylar\nSonny\nTheodore\nTommy\nBrigham\nBryant\nCannon\nCurtis\nDax\nDexter\nElliott\nGiancarlo\nGunnar\nJerry\nJovani\nJustice\nKale\nKillian\nKody\nKole\nLandyn\nMaverick\nQuincy\nRamiro\nRodolfo\nRogelio\nWarren\nZachery\nAdolfo\nAlek\nAlfred\nAugust\nAzael\nBoston\nBrett\nBruno\nCason\nDavin\nFinn\nFinnegan\nFreddy\nHiram\nHumberto\nIbrahim\nJairo\nJaxen\nJordyn\nJovan\nKaeden\nKeaton\nKellan\nKolton\nKristian\nLawrence\nLayne\nMicheal\nMorgan\nPayson\nRicky\nRiver\nRohan\nShaun\nSolomon\nTrace\nUriah\nVan\nWade\nZaiden\nAhmed\nAidyn\nAllan\nArcher\nArmani\nAryan\nBraulio\nBrent\nBridger\nBronson\nBrooks\nChad\nDawson\nDaxton\nHarley\nHendrix\nHyrum\nJase\nJaycob\nJaydan\nJensen\nJerome\nJessie\nJoan\nJovanny\nKameron\nKarson\nKasen\nKash\nKayson\nKeagan\nKenny\nKobe\nKonner\nKorbin\nMarley\nNixon\nQuinton\nRex\nRoger\nSam\nSlade\nTitan\nVance\nVaughn\nZayden\nAchilles\nAlexavier\nArath\nArian\nAtreyu\nAtticus\nBeau\nBeckett\nBilly\nBobby\nBranson\nBrennen\nBroderick\nCarlo\nChandler\nCristopher\nDeegan\nDorian\nEleazar\nErnest\nFinley\nGary\nGiovanny\nGuadalupe\nHank\nHarry\nHeath\nHeber\nIsac\nJair\nJeramiah\nJet\nJon\nJonathon\nJovanni\nKnox\nKymani\nLeonard\nLuka\nMatias\nMitchell\nNico\nOctavio\nOswaldo\nRaphael\nReece\nRemington\nRhys\nRodney\nRonald\nRonin\nRonnie\nSamson\nSantino\nTodd\nTriston\nTrystan\nUziel\nWalker\nZaid\nAdriano\nAlexandro\nAydan\nBentley\nBlaine\nBrice\nBrodie\nBrycen\nCain\nDarren\nDavion\nDeacon\nDeandre\nDeshawn\nDimitri\nDominique\nDonavan\nElian\nElvis\nEsai\nFidel\nGadiel\nGeovanni\nGiovany\nIgnacio\nIrving\nIsreal\nJaeden\nJaidyn\nJalen\nJamison\nJaydin\nJedidiah\nJosemanuel\nJustus\nKadin\nKael\nKaysen\nKeanu\nKhalil\nKonnor\nKris\nKrish\nLance\nLeonidas\nMaddux\nMarvin\nMasen\nMatthias\nMauro\nMaximo\nMelvin\nMerrick\nMiguelangel\nNevin\nObed\nReese\nRigoberto\nRoland\nSeamus\nSoren\nSteele\nWaylon\nYurem\nZaden\nZavier\nAdin\nAlessandro\nAmar\nAmmon\nArjun\nAron\nAzriel\nBeckham\nBenson\nBernardo\nBriggs\nBroden\nCale\nCamren\nCamron\nCarl\nCedric\nChace\nCristofer\nCullen\nDale\nDan\nDangelo\nDariel\nDarwin\nDavon\nDayton\nDeagan\nDerick\nDevan\nDion\nEden\nEdgardo\nEliseo\nElisha\nEllis\nEmory\nEnoch\nEnzo\nEverardo\nEwan\nFranklin\nGeoffrey\nGino\nGlenn\nHassan\nHayes\nIsael\nIsidro\nJadyn\nJagger\nJamie\nJaziel\nJohnathon\nJoseluis\nJullian\nKareem\nKason\nKelvin\nKoen\nKolten\nKyson\nLegend\nLewis\nLucian\nMalcolm\nMarcel\nMarciano\nMarques\nMaxx\nMckay\nNate\nNeil\nNiko\nOsman\nOtto\nPaulo\nRamses\nRayden\nRaymundo\nReyes\nReynaldo\nRidge\nRome\nRowdy\nRowen\nRoyce\nStetson\nSylas\nTegan\nToby\nTom\nTorin\nTreyson\nTripp\nTristian\nTyrell\nTyrone\nUlysses\nVladimir\nWarner\nYeshua\nAarav\nAdair\nAdryan\nAedan\nAgustin\nAhmad\nAlvaro\nAmani\nAndreas\nAndrey\nAram\nArlo\nAydin\nBen\nBenny\nBernard\nBradlee\nBraylen\nCanon\nCanyon\nCarmelo\nCarsten\nCassius\nClark\nClifford\nColby\nColeman\nColter\nCorban\nCorbyn\nCristo\nDamion\nDarey\nDarien\nDarrius\nDemitri\nDevyn\nDezmond\nDomonic\nDouglas\nDrayden\nDuncan\nDyllan\nEddy\nEly\nGaige\nGarret\nGenaro\nGeovanny\nGian\nGlen\nGrayden\nHarper\nHeriberto\nHezekiah\nHoward\nIram\nIsaak\nIsacc\nIzaak\nIzak\nIzayah\nJael\nJakub\nJamir\nJaren\nJasiah\nJeffery\nJesiah\nJohann\nJorden\nJoseangel\nJuelz\nKain\nKalel\nKamren\nKasey\nKekoa\nKelton\nKhristian\nKooper\nKurt\nKurtis\nKyree\nLathan\nLeandro\nLedger\nLee\nLennon\nLouie\nLucien\nLyric\nMaksim\nManny\nMarcelo\nMariano\nMathias\nMayson\nMessiah\nMiller\nMohammad\nMykah\nNelson\nPatricio\nQuinlan\nQuintin\nRalph\nRandall\nRemy\nRigo\nRonaldo\nRylee\nRylie\nSabastian\nSaid\nSimeon\nSky\nTalen\nTariq\nTaven\nTeagan\nTeegan\nTerry\nTiago\nTillman\nTyce\nViktor\nWestley\nXavion\nZack\nZackery\nZechariah\nJacob\nDaniel\nAnthony\nAlexander\nAngel\nMichael\nJayden\nEthan\nGabriel\nNoah\nAiden\nJose\nJoseph\nJulian\nDavid\nAdrian\nChristopher\nJoshua\nIsaac\nAndrew\nLogan\nJonathan\nMatthew\nElijah\nJesus\nMason\nWilliam\nChristian\nSamuel\nBenjamin\nIsaiah\nNathan\nLuis\nLiam\nDylan\nJames\nSebastian\nCarlos\nCaleb\nRyan\nXavier\nConnor\nJackson\nJuan\nAaron\nGavin\nNicholas\nBrandon\nRobert\nJohn\nJordan\nWyatt\nTyler\nKevin\nLandon\nBrayden\nSantiago\nDamian\nEli\nLucas\nDiego\nDominic\nJack\nEvan\nLuke\nZachary\nBrody\nAlejandro\nJason\nMiguel\nAdam\nIan\nAustin\nJeremiah\nHunter\nCameron\nJustin\nCarter\nJosiah\nOwen\nNathaniel\nThomas\nVictor\nElias\nGiovanni\nCharles\nBryan\nJesse\nAntonio\nAyden\nFrancisco\nIvan\nAndres\nAidan\nTristan\nMax\nBlake\nEduardo\nJaxon\nHenry\nMicah\nColton\nEric\nChase\nRyder\nCole\nIsrael\nVincent\nManuel\nAlex\nLeonardo\nJoel\nLevi\nHayden\nRichard\nJorge\nAlan\nCody\nBrian\nCesar\nParker\nSergio\nCaden\nFernando\nOliver\nOscar\nEmmanuel\nKaleb\nRoman\nDevin\nCarson\nMarcus\nJaden\nRicardo\nJosue\nOmar\nEmiliano\nRuben\nMark\nPreston\nSean\nBryce\nJavier\nRiley\nHudson\nJace\nMario\nAsher\nCooper\nEdward\nGage\nKyle\nPatrick\nSteven\nKaden\nMaxwell\nDamien\nErick\nGrayson\nEdgar\nColin\nDerek\nAxel\nMartin\nDrake\nJaxson\nLincoln\nMateo\nEzekiel\nHector\nJonah\nKayden\nRoberto\nEdwin\nAbraham\nCruz\nEaston\nNicolas\nTimothy\nJake\nKaiden\nRylan\nSeth\nTanner\nAdan\nCash\nRaymond\nKai\nMiles\nAlexis\nBradley\nJared\nJoaquin\nZane\nFabian\nJeremy\nWesley\nAshton\nJude\nNolan\nRyker\nEmilio\nEnrique\nGrant\nMarcos\nMaximus\nRaul\nRomeo\nBryson\nCristian\nPaul\nBrady\nCayden\nDean\nPedro\nPeyton\nSaul\nBentley\nGael\nAbel\nEzra\nJulio\nKenneth\nKingston\nSawyer\nJameson\nStephen\nTrevor\nAngelo\nDominick\nJayce\nTyson\nCollin\nConner\nGeorge\nIzaiah\nJaime\nKeegan\nLorenzo\nMalachi\nRafael\nJohnny\nKade\nMarco\nTroy\nAndre\nChance\nErnesto\nRamon\nSilas\nSkyler\nBraden\nDillon\nJaiden\nMaddox\nPeter\nXander\nCade\nDante\nAndy\nTravis\nAlberto\nBraxton\nDonovan\nIsmael\nArmando\nEmanuel\nErik\nLeo\nAvery\nGerardo\nJakob\nJax\nLeonel\nPablo\nArturo\nGarrett\nHarrison\nJett\nKyler\nOrion\nScott\nShane\nTristen\nYahir\nEverett\nGunner\nJeffrey\nReid\nSpencer\nTrenton\nZander\nBennett\nCalvin\nOrlando\nRodrigo\nTate\nBrendan\nBrennan\nBrock\nCharlie\nCorbin\nFelix\nLukas\nMaximiliano\nWeston\nBraydon\nDeegan\nGustavo\nKellen\nLanden\nLouis\nSimon\nTalon\nAmare\nArthur\nDerrick\nDevon\nEsteban\nGriffin\nJohnathan\nJudah\nMauricio\nRandy\nRyland\nGregory\nIsaias\nJay\nJaylen\nJulius\nMatteo\nNoe\nTheodore\nTy\nAllen\nClayton\nDallas\nDanny\nDustin\nGunnar\nIker\nIssac\nKameron\nKash\nQuentin\nRene\nXzavier\nAden\nAdriel\nAlec\nCrew\nDarian\nDeclan\nDrew\nElliott\nEzequiel\nGraham\nHugo\nKellan\nLuca\nMarkus\nMoises\nNehemiah\nNikolas\nNoel\nRonald\nShawn\nVicente\nZayden\nAlfredo\nBrayan\nColt\nElliot\nGreyson\nGuillermo\nHolden\nJohan\nMalakai\nNixon\nPaxton\nQuinn\nRicky\nSalvador\nTaylor\nTrent\nAli\nAmari\nAri\nBrenden\nByron\nCaiden\nChris\nCohen\nDane\nDawson\nDouglas\nElian\nFrank\nGilberto\nJonas\nKing\nKody\nNathanael\nPorter\nRay\nRey\nTitus\nTrey\nValentin\nZachariah\nZackary\nAldo\nAlonso\nBeckett\nCamden\nColby\nDallin\nDominik\nEmmett\nIsai\nJoe\nJoey\nJuancarlos\nLarry\nLawrence\nLeland\nMarshall\nMisael\nMyles\nPayton\nRaiden\nRowan\nSantino\nSkylar\nUriel\nAbram\nAlonzo\nBoston\nColten\nDarius\nLeon\nMilo\nMoses\nPhillip\nPhoenix\nReed\nRemington\nRocco\nTony\nAlfonso\nBruno\nCasey\nCyrus\nDakota\nDalton\nEstevan\nJasper\nKillian\nLucian\nMalik\nNotnamed\nRogelio\nTucker\nUriah\nUrijah\nZion\nAarav\nAlexzander\nArmani\nBenson\nBrooks\nDavian\nDavin\nDesmond\nEmerson\nGiovanny\nIgnacio\nJacoby\nJairo\nJerry\nJimmy\nKolten\nMitchell\nNash\nRudy\nTripp\nAaden\nAditya\nAlbert\nAlijah\nAlvaro\nAugustine\nBeau\nBraeden\nBraiden\nBraylon\nCain\nCurtis\nDamon\nDorian\nDraven\nDwayne\nEnzo\nFelipe\nFinley\nGilbert\nJaydon\nJayson\nJessie\nKayson\nKeaton\nKeith\nLane\nMarcelo\nMathew\nMathias\nMaximo\nOctavio\nRhett\nRoger\nRonan\nRoy\nSantos\nVan\nBeckham\nBruce\nCorey\nCristobal\nDavion\nDonald\nElisha\nFinn\nGianni\nGiovani\nHumberto\nIzayah\nJalen\nJaxen\nJaziel\nJustice\nKobe\nKristopher\nLayne\nMarc\nMariano\nMaverick\nNickolas\nPhilip\nRamses\nReagan\nReece\nReese\nSam\nSlade\nSonny\nWarren\nZechariah\nAbdiel\nAndreas\nBowen\nBrent\nCannon\nCason\nChanning\nConor\nDavis\nDemetrius\nDennis\nEfren\nGavyn\nJacobo\nJaxton\nJulien\nLuciano\nMalaki\nOdin\nRhys\nRiver\nRussell\nStefan\nSteve\nTomas\nTristin\nUlises\nValentino\nYandel\nZaid\nAhmed\nAidyn\nAlessandro\nAriel\nAtticus\nAugust\nAzriel\nBarrett\nBode\nBrett\nChandler\nDexter\nDilan\nDillan\nEddie\nEfrain\nFranco\nFrankie\nGadiel\nHiram\nIrving\nIsiah\nJorden\nJovanni\nKael\nKarson\nKasen\nKendrick\nLayton\nLee\nMadden\nMarek\nMarlon\nMatthias\nMaximilian\nMiguelangel\nMorgan\nNelson\nNiko\nPrince\nRohan\nSage\nSantana\nSolomon\nThiago\nTommy\nUlysses\nZayne\nAdolfo\nAedan\nAllan\nAmir\nAtreyu\nBlaise\nBo\nBoden\nBrennen\nBrigham\nBryant\nChad\nColter\nConrad\nCraig\nCristopher\nDarren\nDax\nDeandre\nDion\nFinnegan\nFrederick\nGauge\nGideon\nIbrahim\nIrvin\nIsaak\nIzrael\nJon\nJovani\nJuaquin\nKane\nKarter\nKason\nKian\nKieran\nKole\nKorbin\nLandyn\nLawson\nLeif\nLeonard\nLyric\nMalcolm\nMarquis\nMarvin\nMatix\nMaurice\nMaxton\nMicheal\nMike\nMohamed\nNathen\nOsvaldo\nPierce\nQuinton\nRamiro\nRemy\nRoland\nRonin\nRyden\nShaun\nTalan\nTeagan\nTobias\nVaughn\nWestin\nYael\nZakary\nZavier\nAce\nAdiel\nAgustin\nAlexandro\nAlvin\nAnderson\nApollo\nArcher\nAryan\nAydan\nBernardo\nBraulio\nBridger\nCarlo\nChace\nCory\nDariel\nDaxton\nDayton\nDeangelo\nDemarcus\nEden\nEdgardo\nEly\nEmery\nFranklin\nGary\nGrady\nGuadalupe\nHarper\nHarry\nHarvey\nHezekiah\nIram\nJamison\nJedidiah\nJerome\nJunior\nKarim\nKashton\nKelvin\nKenny\nLeonidas\nLinkin\nLuisangel\nMasen\nMaxim\nMikael\nMikel\nNikolai\nOsmar\nPayson\nPresley\nRaphael\nRoyce\nSabastian\nSammy\nStetson\nStone\nTatum\nTerrence\nTristian\nTriston\nTyce\nVladimir\nWalker\nWalter\nWill\nXavi\nZaiden\nAdonai\nAlek\nAlekzander\nAmmon\nArley\nArnold\nAron\nAugustus\nBenny\nBlaine\nBradyn\nBranden\nBraylen\nBrice\nBrighton\nBrogan\nBrycen\nBryton\nCael\nCale\nCarl\nCase\nCullen\nDarien\nDeagan\nDerick\nDeven\nDominique\nEnoch\nFreddy\nGannon\nGeovanni\nGerald\nHarlan\nHeriberto\nIshaan\nIzaac\nIzak\nJadon\nJaeden\nJarrett\nJasiah\nJohnathon\nJosemanuel\nKage\nKain\nKamden\nKamron\nKannon\nKarsten\nKeagan\nKiernan\nKirk\nKolton\nKonner\nKristian\nKyan\nKymani\nLance\nLondon\nMarcello\nMarley\nMarques\nMayson\nObadiah\nObed\nQuincy\nRalph\nRandall\nRodolfo\nRoyal\nRylee\nSamson\nSeamus\nSylas\nTavin\nTerrance\nTobin\nTodd\nTrace\nTrevin\nTrystan\nVance\nVincenzo\nWade\nWilson\nZain\nAbelardo\nAchilles\nAdriano\nAlexavier\nAlfred\nAramis\nArnav\nAsa\nAyaan\nAydin\nBenicio\nBilly\nBlaze\nBobby\nBodhi\nBodie\nBrendon\nBrennon\nBriggs\nBroden\nBroderick\nBronson\nBurton\nCallen\nCamilo\nCarmelo\nCasen\nCassius\nCedric\nChevy\nConstantine\nCristiano\nDemian\nDenzel\nDeshawn\nDuke\nEdison\nEliseo\nEllis\nElmer\nEmory\nEphraim\nErnest\nEsai\nEsau\nFredy\nGenaro\nGerard\nGerman\nGiancarlo\nGlen\nGreysen\nHarley\nHarold\nHendrix\nHyrum\nIra\nIsael\nJagger\nJai\nJaleel\nJamal\nJan\nJareth\nJarred\nJassiel\nJeffery\nJericho\nJerimiah\nJohann\nJonathon\nJordy\nJoseluis\nJovany\nJoziah\nJustus\nKale\nKalel\nKamari\nKelly\nKent\nKenyon\nKoen\nKolby\nKruz\nKurt\nLeighton\nLennox\nLionel\nLuc\nLucius\nMack\nMatias\nMaxx\nMemphis\nMerrick\nMikah\nNico\nPete\nPierson\nQuintin\nRashad\nRaylan\nRex\nRick\nRolando\nRonaldo\nRory\nSevastian\nSheldon\nSoren\nSterling\nTadeo\nTayden\nTurner\nTyrone\nUziel\nValentine\nWarner\nWaylon\nZackery\nZeke\nZuriel\nJacob\nAnthony\nDaniel\nMichael\nEthan\nAngel\nAlexander\nNoah\nMason\nAiden\nGabriel\nJayden\nDavid\nJulian\nJoseph\nAdrian\nLiam\nIsaac\nBenjamin\nElijah\nMatthew\nJose\nChristopher\nAndrew\nJesus\nJoshua\nLogan\nNathan\nWilliam\nChristian\nDylan\nIsaiah\nSebastian\nJames\nLuis\nAaron\nSamuel\nCaleb\nJonathan\nCarlos\nTyler\nJackson\nBrandon\nXavier\nLuke\nRyan\nNicholas\nEvan\nJordan\nDominic\nLandon\nCarter\nJohn\nEli\nJuan\nOwen\nConnor\nGavin\nRobert\nBrayden\nSantiago\nLucas\nDamian\nIan\nIvan\nHunter\nJack\nZachary\nWyatt\nAustin\nBrody\nNathaniel\nAdam\nDiego\nJeremiah\nJosiah\nKevin\nLevi\nRoman\nAyden\nJaxon\nAlejandro\nJason\nMiguel\nOscar\nThomas\nVictor\nCameron\nGiovanni\nParker\nAlex\nAndres\nColton\nJorge\nBlake\nJustin\nCharles\nElias\nHenry\nTristan\nMicah\nAxel\nLeonardo\nOliver\nMax\nFrancisco\nJesse\nCole\nAsher\nEaston\nHayden\nAlan\nEduardo\nManuel\nAntonio\nHudson\nMario\nVincent\nCarson\nCesar\nRyder\nJoel\nChase\nHector\nBrian\nBryson\nGage\nJace\nEmiliano\nRicardo\nRichard\nAidan\nJaxson\nEmmanuel\nEdgar\nEric\nMaxwell\nCooper\nJaden\nKaleb\nAshton\nJonah\nBentley\nEzekiel\nLincoln\nOmar\nPreston\nBryan\nIsrael\nJavier\nMateo\nAbraham\nEmilio\nEdward\nMarcus\nDamien\nMaximiliano\nSean\nXander\nDerek\nGrayson\nNolan\nKyle\nMiles\nRuben\nZane\nCristian\nBryce\nJake\nSeth\nSteven\nEzra\nFernando\nGrant\nRiley\nRylan\nAbel\nCash\nFabian\nKayden\nSergio\nKaden\nPaul\nErick\nNicolas\nKai\nMarco\nMartin\nCaden\nJosue\nDevin\nJohnny\nTanner\nTrevor\nRyker\nCody\nTimothy\nDominick\nMarcos\nColin\nDeclan\nJeremy\nMark\nRoberto\nAdan\nBrady\nJoaquin\nRaymond\nAngelo\nBradley\nJohnathan\nMaximus\nRafael\nTravis\nAlexis\nCalvin\nLeo\nSilas\nChance\nDante\nDrake\nTroy\nArmando\nCruz\nEverett\nWeston\nConner\nKaiden\nPatrick\nRamon\nGreyson\nJameson\nJude\nBennett\nBraxton\nCollin\nEdwin\nElliot\nKeegan\nMyles\nSawyer\nSpencer\nAndre\nAvery\nErik\nHarrison\nJaime\nMalachi\nRaul\nWesley\nEnrique\nIzaiah\nLorenzo\nCamden\nDonovan\nGarrett\nGeorge\nJaiden\nEmmett\nIsmael\nJulio\nKenneth\nPeter\nStephen\nAlberto\nCayden\nErnesto\nZander\nAden\nCharlie\nGael\nGerardo\nGriffin\nHolden\nIker\nKyler\nPablo\nDean\nEsteban\nTyson\nFrank\nJared\nLanden\nLukas\nPeyton\nSkyler\nClayton\nDallas\nGustavo\nJakob\nJayce\nPedro\nRomeo\nDrew\nMaddox\nRodrigo\nShawn\nAdriel\nBrayan\nBrock\nCorbin\nDerrick\nHugo\nJax\nKingston\nShane\nAli\nArturo\nBraden\nJudah\nOrlando\nPaxton\nRaiden\nGraham\nRyland\nTristen\nAlbert\nBrendan\nCade\nEmanuel\nKellan\nRicky\nScott\nDarian\nIssac\nLeon\nLeonel\nLuca\nMauricio\nOrion\nPorter\nBrennan\nGrady\nGunner\nLouis\nLucian\nPhillip\nUlises\nBraylon\nJayson\nJett\nKade\nTate\nTheodore\nTitus\nAlec\nAlonso\nAndy\nAugust\nBeckett\nCaiden\nDustin\nIsaias\nJeffrey\nJulius\nKellen\nMathew\nMatteo\nNehemiah\nSaul\nSterling\nTrey\nVicente\nAldo\nAlfredo\nAllen\nAmare\nDamon\nFelix\nJasper\nKash\nMilo\nNoel\nRene\nTaylor\nUriel\nZackary\nAtticus\nBeau\nBraeden\nBraydon\nColt\nColten\nDakota\nDanny\nLane\nLeland\nMaximilian\nNixon\nQuinn\nReid\nRowan\nSimon\nTy\nXzavier\nYahir\nAlonzo\nAydan\nBrenden\nBrycen\nColby\nDominik\nEddie\nEzequiel\nGregory\nJairo\nJaylen\nJoey\nMaverick\nSkylar\nSylas\nTalon\nTrenton\nUlysses\nAlexzander\nAmari\nCannon\nDeegan\nDevon\nElliott\nEstevan\nGunnar\nIrvin\nJaxton\nMadden\nMalcolm\nNotnamed\nZayden\nAbram\nArmani\nArthur\nBrett\nBrigham\nByron\nCasey\nCohen\nDariel\nDarren\nDesmond\nDexter\nEnzo\nFrankie\nGuillermo\nJamison\nJonas\nKeith\nMisael\nNash\nNickolas\nNikolas\nOsvaldo\nPierce\nRandy\nRiver\nRonin\nSullivan\nTatum\nUriah\nZion\nAdrien\nDalton\nDarius\nDax\nDillon\nGeovanni\nJalen\nJerry\nJimmy\nJunior\nKeaton\nLuciano\nMarkus\nNathanael\nNoe\nOdin\nQuentin\nRonan\nRudy\nRussell\nSalvador\nSantos\nTomas\nTrent\nValentino\nZaiden\nAnderson\nBrooks\nBruno\nClark\nCorey\nDraven\nFinn\nGary\nGilberto\nGiovani\nGiovanny\nIsiah\nJohan\nKian\nMalakai\nMariano\nMoises\nReece\nRhys\nRoy\nTrace\nTucker\nVan\nWalter\nWaylon\nZachariah\nAlvaro\nAmir\nAryan\nAydenn\nBrodie\nCallen\nCason\nCristobal\nDane\nDario\nEmerson\nGauge\nGiancarlo\nJase\nJerome\nJoe\nKameron\nKane\nKarter\nMarshall\nMaximo\nReed\nRocco\nRonald\nRowen\nRoyce\nTony\nAbdiel\nAce\nAgustin\nAlijah\nArcher\nAri\nAriel\nAydin\nBenicio\nBronson\nChad\nChanning\nChris\nDavian\nDouglas\nEliseo\nGianni\nGilbert\nIbrahim\nIsai\nJagger\nJeshua\nJovanni\nJuanpablo\nKale\nKasen\nKeenan\nKobe\nKristopher\nLance\nLeonidas\nLuka\nLyric\nMarlon\nMasen\nMaxim\nMoses\nNelson\nNikolai\nPhilip\nRamses\nRoland\nRory\nSantana\nSantino\nSonny\nVance\nZayne\nAlfonso\nAugustine\nBeckham\nBridger\nBrixton\nBryant\nCain\nColter\nCrosby\nDayton\nDorian\nEden\nHarper\nHumberto\nHyrum\nIshmael\nIzayah\nJaziel\nJorden\nJulien\nKendrick\nKent\nKieran\nKing\nKody\nLennox\nLeonard\nMatthias\nQuincy\nQuinton\nRaphael\nRaylan\nReese\nRey\nRhett\nRodolfo\nRoger\nRohan\nRylen\nSolomon\nSteve\nTeagan\nTobias\nUrijah\nWarren\nZavier\nAddison\nArlo\nAtreyu\nBobby\nBoston\nBraiden\nBruce\nChandler\nClay\nCoen\nConrad\nCraig\nCyrus\nDangelo\nDavin\nDawson\nDaxton\nDeangelo\nDominique\nEfren\nElian\nFranklin\nFreddy\nGavyn\nGonzalo\nHank\nHassan\nIgnacio\nIshaan\nJacoby\nJaycob\nJovani\nJuancarlos\nKamden\nKarim\nKarson\nKhalil\nKoen\nKolton\nKonnor\nKorbin\nKyson\nLawrence\nMatix\nMicheal\nMike\nMitchell\nNico\nOsmar\nPrince\nRay\nReginald\nReyes\nRolando\nSamson\nShaun\nStefan\nThiago\nTommy\nTriston\nWade\nXavi\nYandel\nAdiel\nAlek\nAlessandro\nAlexandro\nAllan\nArian\nArley\nAzriel\nBen\nBenito\nBlaine\nBlaze\nBranden\nBrendon\nCael\nCasen\nCory\nDavion\nDeacon\nDeandre\nDemetrius\nDerick\nDwayne\nFidel\nFinley\nFreddie\nGerman\nHaven\nHendrix\nJasiah\nJaxen\nJay\nJaydin\nJaydon\nJedidiah\nJericho\nJon\nJonathon\nJustice\nJustus\nKason\nKeanu\nKeon\nKristian\nLarry\nLayton\nLennon\nLenny\nLewis\nMaison\nMathias\nMatias\nMayson\nMorgan\nPhoenix\nQuintin\nSam\nSeamus\nTrevon\nTristian\nViktor\nVince\nWalker\nYael\nZack\nAbner\nAdolfo\nAlden\nAnders\nAndreas\nAnton\nAvi\nAzael\nBarrett\nBo\nBowen\nBraedon\nBrantley\nCanon\nClyde\nCrew\nCullen\nCurtis\nDallin\nDamion\nDavien\nDeven\nDilan\nDion\nDonald\nDrayden\nFinnegan\nFrancis\nFranco\nFrederick\nGideon\nGraysen\nHezekiah\nIsaak\nIsreal\nIzaac\nJacen\nJeffery\nJensen\nJessie\nJoan\nJoseluis\nJovan\nKayson\nKelvin\nKillian\nKnox\nKolten\nKurtis\nLangston\nLeandro\nLegend\nLeighton\nLoren\nLouie\nMarvin\nMaximillian\nMaxx\nMohamed\nNeil\nPayton\nRamiro\nReynaldo\nRigoberto\nRocky\nRogelio\nRyden\nRyley\nSabastian\nSaid\nShayne\nStanley\nTerrence\nThaddeus\nTodd\nVaughn\nWestin\nWill\nZain\nZeke\nZyon\nAarav\nAdair\nAdonis\nAhmad\nAlexavier\nAmmon\nAndrei\nArjun\nAston\nAtlas\nAurelio\nAven\nBenson\nBranson\nBraulio\nBrecken\nBrenton\nBrigg\nBriggs\nCallan\nCarl\nCarlo\nCarmelo\nCarsten\nCase\nCassius\nCristopher\nDamari\nDan\nDarey\nDennis\nDenver\nDeshawn\nDiesel\nDillinger\nEfrain\nEmery\nEmmitt\nEphraim\nEzrah\nFelipe\nForrest\nGadiel\nGaige\nGeovanny\nHeath\nHussain\nIsac\nIsael\nJaeden\nJamie\nJamir\nJancarlo\nJermaine\nJesiah\nJohann\nJordyn\nJosef\nJoziah\nKaige\nKain\nKaleo\nKamren\nKareem\nKarsen\nKarsten\nKase\nKasey\nKenji\nKenny\nKeyon\nKipton\nKiptyn\nKohen\nKolby\nKole\nKonner\nKrish\nKyan\nKylan\nKymani\nLandyn\nLeif\nLionel\nLuc\nLucius\nMack\nMaddix\nMaksim\nMalik\nManny\nMarc\nMarcel\nMarcelo\nMarius\nMarley\nMaxton\nMckay\nMekhi\nMerrick\nMickey\nMiguelangel\nNasir\nNeo\nOctavio\nOsbaldo\nPranav\nRashad\nRayden\nRaymundo\nReagan\nRex\nRidge\nRio\nRockwell\nRodney\nRonaldo\nRonnie\nRook\nRylee\nSage\nShea\nSoren\nStetson\nSylis\nTalan\nTaven\nTeegan\nTerrance\nTerrell\nTerry\nThane\nTobin\nTrevin\nTrystan\nTurner\nTyrell\nValentin\nVincenzo\nVladimir\nWillie\nWilson\nXavian\nYair\nZackery\nZakary\nJacob\nLiam\nDaniel\nEthan\nAnthony\nAlexander\nNoah\nMichael\nMason\nAiden\nDavid\nJayden\nJulian\nMatthew\nElijah\nGabriel\nAndrew\nIsaac\nJoseph\nLogan\nJoshua\nWilliam\nBenjamin\nAngel\nChristian\nIsaiah\nSamuel\nJose\nJackson\nAdrian\nJames\nChristopher\nSebastian\nJesus\nDylan\nJonathan\nDominic\nNathan\nCaleb\nRyan\nLuis\nEli\nXavier\nCarlos\nLuke\nLucas\nAaron\nWyatt\nGavin\nHunter\nCarter\nJohn\nBrayden\nDamian\nJordan\nJuan\nBrandon\nAustin\nSantiago\nEvan\nLandon\nJosiah\nJaxon\nJeremiah\nRobert\nConnor\nLevi\nNicholas\nGael\nDiego\nIvan\nJack\nAdam\nZachary\nOwen\nIan\nKevin\nElias\nTyler\nHenry\nBlake\nColton\nOliver\nNathaniel\nThomas\nAyden\nJason\nMiguel\nAndres\nBrody\nFrancisco\nCharles\nAlejandro\nParker\nCameron\nVictor\nLincoln\nAlex\nMateo\nRoman\nTristan\nJorge\nRichard\nVincent\nJaxson\nManuel\nHudson\nJoel\nGrayson\nJace\nOscar\nCooper\nGiovanni\nAxel\nAbraham\nEric\nCole\nEaston\nAsher\nChase\nJustin\nMax\nBentley\nLeonardo\nAntonio\nRyder\nDevin\nEzekiel\nJavier\nJesse\nHayden\nEduardo\nHector\nDamien\nJonah\nOmar\nBryan\nCarson\nRicardo\nSergio\nAbel\nAlan\nSteven\nAidan\nMario\nNolan\nEmiliano\nMaximiliano\nBryce\nEmilio\nIsrael\nMarcus\nMicah\nZane\nCash\nCesar\nFernando\nJude\nMaxwell\nKaleb\nKayden\nLeo\nPreston\nEdward\nEzra\nIker\nJaden\nKaden\nGage\nXander\nBrady\nEmmanuel\nFabian\nMaximus\nDerek\nBradley\nDominick\nNicolas\nPatrick\nRiley\nBryson\nCaden\nJosue\nLorenzo\nRyker\nSean\nSilas\nMiles\nJameson\nSawyer\nTanner\nTimothy\nBrian\nDeclan\nErick\nRuben\nAdan\nAndre\nJake\nMartin\nAlexis\nKenneth\nAngelo\nRafael\nRoberto\nEmmett\nCamden\nCruz\nDonovan\nGreyson\nJeremy\nWesley\nWeston\nColin\nKai\nRomeo\nAshton\nCody\nMarcos\nMark\nRaymond\nSeth\nEverett\nGeorge\nKaiden\nKingston\nKyle\nArmando\nTrevor\nEdgar\nIsmael\nMalachi\nPaul\nRylan\nZayden\nEsteban\nMaddox\nAlberto\nCristian\nDrake\nPedro\nTravis\nBraxton\nGrant\nJohnathan\nPeter\nJaime\nJax\nJoaquin\nLanden\nLeonel\nSaul\nBennett\nErik\nMarco\nAdriel\nAvery\nConner\nGunner\nHarrison\nPeyton\nShane\nZander\nArturo\nCalvin\nGerardo\nJulio\nGraham\nGustavo\nCorbin\nDean\nJaiden\nMyles\nOrlando\nRamon\nEdwin\nEnrique\nJett\nSkyler\nTaylor\nDante\nStephen\nTucker\nCayden\nCollin\nDallas\nDrew\nJared\nJayce\nJulius\nShawn\nAlfredo\nGregory\nJohnny\nKeegan\nSpencer\nCharlie\nElliot\nIzaiah\nJeffrey\nPaxton\nTheodore\nErnesto\nKing\nMarshall\nMilo\nZion\nAndy\nChance\nIssac\nKyler\nLuca\nNixon\nOrion\nPhoenix\nRyland\nTitus\nArmani\nDominik\nEmanuel\nPablo\nAllen\nBeau\nDillon\nEzequiel\nGarrett\nIsaias\nJay\nJudah\nKellan\nLukas\nRaul\nRogelio\nTroy\nDakota\nJasper\nKash\nPorter\nRowan\nTrenton\nTristen\nTy\nTyson\nBraden\nCaiden\nDexter\nFelix\nFrank\nGriffin\nLouis\nRodrigo\nScott\nZachariah\nAbram\nAden\nAtticus\nBraylon\nCade\nDanny\nIzayah\nKade\nMauricio\nNehemiah\nRicky\nRoyce\nSterling\nTate\nUriel\nAlec\nAli\nBrendan\nBruce\nDalton\nJaylen\nLeland\nMaverick\nNikolas\nRene\nAldo\nBeckett\nClayton\nCohen\nColby\nDarius\nDorian\nElliott\nGrady\nJakob\nJase\nJayson\nMadden\nQuinn\nSimon\nTalon\nTrey\nBenson\nChris\nColt\nDawson\nDerrick\nDesmond\nEmerson\nGianni\nHolden\nJalen\nKellen\nLeon\nLuciano\nMoises\nPhillip\nReed\nRiver\nSantino\nSkylar\nTrent\nYahir\nAlfonso\nAlonzo\nAmare\nArthur\nBeckham\nBrennan\nBrock\nBrooks\nCasey\nColten\nCurtis\nDamon\nEddie\nEstevan\nGideon\nGuillermo\nJoe\nKarter\nMaximo\nNeymar\nNoel\nRaiden\nRonan\nSalvador\nSoren\nVicente\nAlbert\nAlijah\nAlonso\nArcher\nBraiden\nCorey\nCrew\nDevon\nFelipe\nGilbert\nGunnar\nJionni\nJoey\nLane\nMalik\nRandy\nRemington\nRoy\nSolomon\nAlexzander\nAmir\nAugust\nBoston\nBrycen\nCyrus\nDennis\nDustin\nHugo\nJohan\nJulien\nKeith\nKian\nKolton\nMalakai\nMatteo\nMisael\nNoe\nRey\nRhys\nTobias\nUriah\nUrijah\nWalker\nWaylon\nAmari\nAnderson\nAri\nArley\nAydan\nBarrett\nBrantley\nBrenden\nCory\nDamion\nDane\nDraven\nGauge\nGerman\nHarley\nIsiah\nJairo\nJensen\nKendrick\nKobe\nKody\nKristopher\nLennon\nMathew\nMaximilian\nMohamed\nMorgan\nPhilip\nTatum\nTristin\nWarren\nXzavier\nZechariah\nArian\nBobby\nCain\nCason\nChandler\nConor\nDario\nDavian\nDavis\nDeandre\nDeegan\nEfrain\nEllis\nEnzo\nFinnegan\nFrederick\nIrvin\nIsai\nJacoby\nJasiah\nJaziel\nKarim\nKarson\nKnox\nKristian\nLance\nLawrence\nLuka\nMarkus\nMoses\nNathanael\nNelson\nRamiro\nRay\nRocco\nShaun\nWalter\nZaiden\nAbdiel\nAchilles\nAdiel\nAlvaro\nBraeden\nBruno\nCannon\nClark\nCristopher\nDarren\nEden\nFinn\nGiancarlo\nGilberto\nGionni\nIbrahim\nIgnacio\nJerry\nJoan\nKale\nKane\nLandyn\nLayne\nLayton\nMarvin\nMayson\nNickolas\nNikolai\nPayton\nPierce\nPrince\nReid\nRex\nRodolfo\nSantana\nTorin\nValentin\nZackary\nAarav\nAmmon\nAriel\nBenicio\nBrayan\nBraydon\nBrodie\nBronson\nBryant\nCallen\nCarlo\nChanning\nClay\nDallin\nDariel\nDonald\nElian\nEsai\nFrankie\nGiovani\nGiovanny\nHernan\nJaxton\nJonas\nJoziah\nJunior\nLarry\nMalcolm\nMathias\nMatias\nMitchell\nReagan\nRohan\nRoland\nRonald\nRudy\nSage\nSantos\nStefan\nSylas\nTerrell\nTrevon\nVance\nWade\nWestin\nZavier\nAce\nAgustin\nAtreyu\nAzariah\nBlaine\nBo\nBrigham\nBrighton\nCase\nChad\nColter\nDarian\nDaxton\nDezmond\nDiesel\nHassan\nHendrix\nHyrum\nImmanuel\nIzaac\nJagger\nJamison\nJaxen\nJedidiah\nJimmy\nJorden\nJoseluis\nJovanni\nJuancarlos\nKasen\nKason\nKayson\nKelvin\nKenny\nKieran\nKrew\nLucian\nMarlon\nMasen\nMaxim\nNathen\nNico\nQuentin\nQuinton\nRaphael\nRoger\nRolando\nRory\nRoyal\nRussell\nTony\nValentino\nWinston\nYael\nZayne\nAdolfo\nAdrien\nAlek\nAmos\nApollo\nAres\nArlo\nAron\nAryan\nBlaise\nBodhi\nBraylen\nBrett\nCale\nCallan\nCristobal\nDangelo\nDeacon\nDouglas\nEliseo\nElisha\nEmmitt\nFranco\nGary\nGavyn\nGerald\nGibson\nGordon\nIsaak\nIsael\nJadon\nJael\nJamal\nJamie\nJet\nJovany\nJullian\nKael\nKameron\nKeanu\nKeaton\nKhalil\nKoen\nKolby\nKole\nKolten\nKorbin\nKylan\nKyson\nLeighton\nLennox\nLeonard\nLondon\nLyric\nMagnus\nMajor\nMarcelo\nMarley\nMatthias\nMikel\nNiko\nOdin\nOsvaldo\nOtto\nPaulo\nQuincy\nQuintin\nRayden\nReece\nSonny\nStetson\nTerry\nToby\nTodd\nTommy\nUlises\nUlysses\nAdonis\nAdryan\nAedan\nAhmad\nAlessandro\nArchie\nAugustine\nAugustus\nBenito\nBowen\nBranson\nBrendon\nBriggs\nByron\nCallum\nCampbell\nCarmelo\nCasen\nCedric\nColeman\nConrad\nCrosby\nDarien\nDarrell\nDayton\nDemarcus\nDuke\nDwayne\nEdison\nEfren\nEnoch\nEthaniel\nEzio\nFederico\nFlynn\nGrey\nHarper\nHumberto\nJaeden\nJai\nJamari\nJaren\nJaxxon\nJaycob\nJaydan\nJaydon\nJohann\nJovani\nJustus\nKamden\nKelton\nKillian\nKrish\nKurtis\nLandry\nLeandro\nLeonidas\nMac\nMalaki\nMaxton\nMaxx\nNeil\nNyjah\nOctavio\nOsmar\nRandall\nRaymundo\nReese\nRhett\nRidge\nRodney\nRonin\nTeagan\nTomas\nTyree\nTyrone\nViktor\nZacarias\nZakary\nZeke\nZephaniah\nAaden\nAddison\nAdriano\nAllan\nAnder\nAndreas\nAndrey\nAnton\nAsa\nAsh\nAurelio\nAustyn\nAxl\nAydin\nAzael\nBernardo\nBilly\nBode\nBraulio\nBrogan\nCaesar\nCamron\nCarl\nCashton\nCayson\nClyde\nColtin\nCortez\nCraig\nCy\nDamarion\nDarnell\nDavin\nDaylon\nDemetrius\nDenzel\nDerick\nDillan\nDion\nDomenic\nEdwardo\nEleazar\nEliel\nEliot\nElyjah\nEmery\nEmmit\nEmory\nErnest\nEugene\nEver\nEverardo\nEwan\nFidel\nFinley\nFrancis\nFreddy\nGeovanny\nGian\nHaven\nHoracio\nHosea\nHugh\nIsacc\nIshaan\nIsidro\nJade\nJaron\nJericho\nJerome\nJesiah\nJohnpaul\nJonathon\nJovan\nKaeden\nKain\nKalel\nKamari\nKamryn\nKannon\nKarsen\nKennedy\nKingsley\nKymani\nLachlan\nLakai\nLee\nLegend\nLucien\nMaddix\nMarcel\nMarcelino\nMariano\nMarques\nMarquez\nMatix\nMattix\nMauro\nMaximillian\nMekhi\nMicheal\nMohammad\nMohammed\nMykel\nMyron\nNash\nNasir\nOakley\nOskar\nPayson\nPranav\nQuinten\nRiot\nRonnie\nRowen\nRyden\nRyley\nSalvatore\nSam\nShiloh\nSiddharth\nStone\nTayden\nTheo\nTheseus\nTiago\nTrace\nTristyn\nTyce\nVan\nVaughn\nVernon\nVince\nYahya\nZaid\nZain\nLiam\nNoah\nJacob\nAlexander\nDaniel\nAiden\nMichael\nMason\nAnthony\nEthan\nJayden\nBenjamin\nJoseph\nGabriel\nElijah\nIsaac\nDavid\nMatthew\nSebastian\nAdrian\nAndrew\nJulian\nAngel\nJesus\nJoshua\nDylan\nWilliam\nJames\nChristopher\nDominic\nLogan\nJackson\nNathan\nSamuel\nJose\nIsaiah\nJonathan\nCaleb\nChristian\nDamian\nLuis\nLuke\nRyan\nAaron\nCarter\nLandon\nWyatt\nJack\nSantiago\nLucas\nCarlos\nEli\nRobert\nJaxon\nConnor\nOliver\nJordan\nHunter\nLevi\nEvan\nIan\nXavier\nJuan\nGavin\nJohn\nJosiah\nNathaniel\nOwen\nBrody\nColton\nJace\nLincoln\nNicholas\nJeremiah\nElias\nZachary\nMateo\nMiguel\nBlake\nTyler\nBrayden\nKevin\nAyden\nAdam\nThomas\nRyder\nIvan\nCameron\nEaston\nBrandon\nHudson\nLeonardo\nHenry\nJaxson\nDiego\nVincent\nAustin\nRoman\nJason\nParker\nAlejandro\nGael\nJorge\nAxel\nCharles\nManuel\nAbraham\nGrayson\nVictor\nCooper\nTristan\nFrancisco\nEzra\nAlex\nMicah\nSteven\nAlan\nAsher\nGiovanni\nMax\nCarson\nEduardo\nRyker\nAndres\nAntonio\nEzekiel\nChase\nCamden\nIker\nJesse\nOscar\nFernando\nGreyson\nJavier\nNolan\nJustin\nAbel\nCole\nKaleb\nMaxwell\nSilas\nDeclan\nBentley\nJameson\nMario\nMiles\nAidan\nEmilio\nMarcus\nSergio\nBrian\nEmiliano\nJase\nJude\nCesar\nEmmanuel\nHector\nJoel\nWeston\nBryan\nHayden\nRichard\nEric\nGeorge\nKayden\nLorenzo\nMartin\nMaximiliano\nCristian\nDerek\nJaden\nPatrick\nPreston\nSawyer\nBraxton\nDamien\nEdward\nIsrael\nLeo\nMaximus\nWesley\nZane\nFabian\nZayden\nGage\nPaul\nRuben\nSean\nCody\nBryson\nEmmett\nBryce\nKaden\nKai\nNicolas\nRicardo\nJax\nCash\nDominick\nEverett\nJonah\nOmar\nTanner\nAdan\nBennett\nEdgar\nJosue\nKaiden\nKyle\nRafael\nSeth\nZander\nCalvin\nErick\nErik\nGerardo\nHarrison\nRiley\nXander\nJeremy\nJake\nCayden\nColin\nConner\nJaime\nMaddox\nAdriel\nGrant\nRaul\nTimothy\nArmando\nBradley\nCruz\nDante\nDean\nEnrique\nJoaquin\nJulio\nTravis\nIsmael\nMarcos\nRamon\nTheodore\nAndre\nAngelo\nGunner\nJohnny\nMalachi\nMarco\nMark\nPeter\nRylan\nEsteban\nDonovan\nJaiden\nJayce\nKingston\nRaymond\nTrevor\nAlberto\nBrady\nErnesto\nFelix\nAden\nJared\nMaverick\nRoberto\nShane\nTroy\nTucker\nTyson\nHolden\nIzaiah\nMatteo\nNixon\nDevin\nAlexis\nAshton\nChance\nGraham\nJayceon\nKing\nRomeo\nAndy\nAvery\nFrank\nLeonel\nLukas\nNoel\nPeyton\nCaden\nCharlie\nEdwin\nJohnathan\nKenneth\nLuca\nPedro\nScott\nSimon\nYahir\nArcher\nBrooks\nKeegan\nMilo\nZaiden\nAlonzo\nArthur\nCorbin\nGarrett\nOrion\nSpencer\nStephen\nWaylon\nZachariah\nAlfredo\nBeckett\nDamon\nDanny\nDesmond\nDominik\nDrake\nDrew\nGriffin\nKade\nMoises\nShawn\nTy\nBeau\nBrantley\nBrock\nCaiden\nKendrick\nMarshall\nMyles\nSantino\nSaul\nTalon\nAmir\nArmani\nArturo\nBruce\nClark\nJaylen\nJayson\nJett\nKellen\nPablo\nThiago\nAbram\nCollin\nColt\nGustavo\nJasper\nKash\nMaximilian\nPorter\nRodrigo\nRyland\nClayton\nDonald\nDustin\nGianni\nJakob\nTony\nDexter\nGideon\nJulien\nJulius\nKellan\nLuciano\nRonin\nUriel\nAldo\nBarrett\nBeckham\nElliot\nFinn\nGregory\nJudah\nKameron\nRicky\nSkyler\nSterling\nAli\nArian\nBrayan\nEnzo\nEzequiel\nGilbert\nGuillermo\nIsaias\nJaxen\nJay\nKnox\nLeon\nMilan\nNathanael\nReed\nRocco\nSantos\nTate\nTrenton\nUriah\nZion\nAlec\nAlfonso\nAlijah\nBraden\nBrendan\nBrennan\nCarmelo\nDakota\nDerrick\nEmanuel\nJeffrey\nKane\nKeaton\nKolton\nKyler\nLucian\nMalik\nMohamed\nNehemiah\nPhilip\nRoy\nAlonso\nAri\nCain\nDillon\nEden\nElliott\nFrankie\nIssac\nJamison\nKeith\nLanden\nMajor\nMauricio\nMisael\nNikolas\nNoe\nOdin\nQuinn\nRay\nRonan\nRory\nSylas\nTaylor\nTrent\nUlises\nValentin\nWade\nAlbert\nAllen\nAlvaro\nAmari\nCason\nColten\nDallas\nDavian\nDevon\nHarley\nLane\nLawrence\nLeonidas\nOrlando\nPaxton\nSalvador\nTitus\nXzavier\nAtticus\nCade\nHugo\nHyrum\nIzaac\nJohan\nMalakai\nMessiah\nNiko\nRaiden\nRiver\nSkylar\nTatum\nTrey\nAugust\nBruno\nConor\nConrad\nCorey\nDarius\nDavis\nEmerson\nHendrix\nJimmy\nJovanni\nKamden\nKason\nKobe\nKorbin\nLouis\nMarcelo\nMathew\nPhoenix\nQuentin\nReid\nRemington\nRocky\nRogelio\nRoyce\nSolomon\nTadeo\nTobias\nWalter\nAlessandro\nCannon\nChandler\nCohen\nCurtis\nCyrus\nDeandre\nDemetrius\nDuke\nGilberto\nGunnar\nIbrahim\nJacoby\nJair\nJairo\nJaxton\nJensen\nJoe\nJoey\nLarry\nLeland\nMariano\nMikah\nNash\nNeymar\nNickolas\nNikolai\nQuincy\nRhett\nRonald\nRowan\nRussell\nVicente\nYael\nAnderson\nArjun\nAzariah\nBenson\nBoston\nBraiden\nCallum\nCase\nCasey\nCassius\nDalton\nDane\nDariel\nDax\nDeegan\nGauge\nGiovani\nGrady\nJionni\nJonas\nJustice\nKarter\nKian\nKolten\nLewis\nLionel\nMadden\nMathias\nNico\nOctavio\nPierce\nPrince\nRodolfo\nRome\nSoren\nTerrance\nTomas\nTrace\nTristen\nWarren\nWestin\nZavier\nZayne\nAarav\nAbdullah\nAchilles\nAllan\nAydan\nBen\nBenicio\nBodhi\nBraydon\nBronson\nByron\nColby\nCrew\nDarian\nDario\nDaxton\nDeacon\nDilan\nElian\nEugene\nGannon\nHarvey\nHiram\nIzayah\nKalel\nKieran\nKristian\nKyrie\nLandyn\nLennon\nLeonard\nLuka\nMack\nMarcel\nMarkus\nMohammed\nPrinceton\nQuinton\nReese\nRene\nRex\nRhys\nRoger\nRohan\nValentino\nVaughn\nZackary\nAbdiel\nAidyn\nAlden\nAmare\nArlo\nAron\nAugustine\nBernardo\nBoden\nBowen\nBrent\nBrett\nBridger\nBrodie\nBrycen\nCasen\nColter\nDangelo\nDorian\nEddie\nEloy\nEsai\nEstevan\nFelipe\nFinley\nFinnegan\nFrancis\nFranklin\nGordon\nHamza\nIsiah\nJadon\nJalen\nJedidiah\nJeshua\nJoseluis\nKody\nLazaro\nLee\nLondon\nMalcolm\nMatias\nMemphis\nMicheal\nMickey\nMorgan\nMoses\nRayden\nReece\nRudy\nSam\nSheldon\nSlade\nSonny\nStefan\nTeagan\nVan\nVance\nWinston\nZakaria\nAdrien\nAlaric\nAlek\nAmos\nAryan\nAyaan\nBradyn\nBryant\nCallen\nCamilo\nCastiel\nDallin\nDawson\nDennis\nDraven\nEan\nEleazar\nEnoch\nFranco\nFrederick\nGadiel\nGiancarlo\nGonzalo\nGrey\nHaven\nHumberto\nIgnacio\nIsai\nJagger\nJessie\nJonathon\nJoseangel\nJunior\nKamari\nKarsten\nKeagan\nKelvin\nKillian\nKonnor\nKristopher\nLayton\nLeandro\nLouie\nMagnus\nMarvin\nMaurice\nMaxim\nMaximo\nPayton\nPhillip\nRandy\nRaphael\nStanley\nThaddeus\nToby\nTommy\nUrijah\nVihaan\nWalker\nYadier\nYair\nZain\nZechariah\nZeke\nAce\nAhmed\nAlton\nAriel\nAtreyu\nBane\nBenito\nBentlee\nBlaine\nBraeden\nBranden\nBrice\nBrigham\nBrighton\nBrixton\nCarl\nChad\nChanning\nClay\nClinton\nDash\nDeon\nDeven\nDimitri\nEder\nEdison\nEdson\nEthyn\nEverardo\nFord\nForrest\nFredrick\nGerard\nGerman\nHank\nHernan\nIrvin\nIsaak\nIsael\nIsidro\nJaycob\nJaziel\nJerry\nJovan\nJovani\nJuanpablo\nKael\nKale\nKarim\nKarson\nKeenan\nKent\nKhalil\nKolby\nKymani\nLance\nLandry\nLoki\nMarc\nMarlon\nMatthias\nMayson\nMitchell\nNikola\nRamses\nRey\nReyes\nRigdon\nRoland\nRolando\nRonnie\nSamson\nSantana\nSeamus\nTerry\nTheo\nWayne\nWillem\nYeshua\nYousef\nZahir\nAdalberto\nAddison\nAdolfo\nAdonis\nAgustin\nAleczander\nAlfred\nAlvin\nAnakin\nAndrei\nAntoine\nAram\nAric\nArnold\nAugustus\nAydin\nBlaze\nBobby\nBraylen\nBrecken\nBrenden\nBroderick\nBrogan\nBrysen\nCael\nCairo\nCedric\nChris\nClifford\nCristiano\nCristobal\nDarrell\nDarren\nDaryl\nDemitri\nDion\nDominique\nEfren\nEliam\nEliazar\nEliseo\nEllis\nEly\nEmery\nEmmitt\nEzio\nGeovanni\nGino\nGiovanny\nHaiden\nHarper\nHassan\nHelios\nHussein\nImmanuel\nIrving\nIshaan\nIzaak\nJaceon\nJamie\nJasiah\nJasiel\nJaxx\nJaycen\nJaydin\nJaydon\nJedediah\nJeffery\nJencarlos\nJet\nJullian\nKaison\nKanon\nKarl\nKarlos\nKasen\nKaysen\nKayson\nKeoni\nKoa\nKole\nKolt\nLedger\nLennox\nLyndon\nMac\nMakai\nMarley\nMiguelangel\nMike\nMonroe\nMontgomery\nNelson\nNotnamed\nOmari\nOskar\nOsmar\nPayson\nQuinten\nRalph\nRandall\nRaylan\nRemy\nReynaldo\nRiggs\nRodney\nRonaldo\nRoyal\nRyatt\nRyden\nRylee\nSabastian\nSage\nSammy\nShaun\nSiddharth\nSimeon\nStetson\nSteve\nStryker\nTayden\nTitan\nTrevin\nTristian\nTyce\nWes\nWesten\nWestyn\nWillie\nYandel\nZayd\nZayn\nZephaniah\nNoah\nLiam\nAlexander\nDaniel\nJacob\nSebastian\nEthan\nMichael\nElijah\nAnthony\nJayden\nDavid\nMatthew\nAiden\nMason\nLogan\nBenjamin\nIsaac\nAngel\nAdrian\nJulian\nWilliam\nGabriel\nJames\nAndrew\nJoseph\nChristopher\nDylan\nJesus\nJose\nSamuel\nOliver\nIsaiah\nJoshua\nWyatt\nNathan\nChristian\nLuke\nDamian\nJackson\nDominic\nAaron\nCaleb\nJonathan\nJaxon\nHunter\nJack\nLuis\nCarlos\nEli\nJohn\nRyan\nCarter\nLucas\nSantiago\nLevi\nConnor\nGavin\nHenry\nJosiah\nIan\nJordan\nBrandon\nMateo\nNicholas\nJace\nEvan\nJuan\nLandon\nOwen\nAustin\nXavier\nKevin\nLeonardo\nAdam\nJeremiah\nThomas\nLincoln\nRobert\nIvan\nGrayson\nRoman\nAyden\nGiovanni\nJaxson\nAntonio\nBrayden\nNathaniel\nCameron\nBrody\nElias\nEzra\nHudson\nDiego\nEaston\nVincent\nParker\nZachary\nCharles\nColton\nRyder\nFrancisco\nMiguel\nAlejandro\nJason\nAsher\nCarson\nJorge\nVictor\nManuel\nAndres\nBlake\nEmmanuel\nEmiliano\nEzekiel\nNolan\nOscar\nMiles\nTyler\nAxel\nBentley\nAbel\nTristan\nEric\nJameson\nJesse\nLeo\nCole\nCooper\nGael\nIker\nRicardo\nLorenzo\nMaximus\nJavier\nAlan\nAbraham\nAlex\nKayden\nMaxwell\nMicah\nEverett\nRichard\nZane\nDerek\nRyker\nBryan\nFabian\nSawyer\nSteven\nEmmett\nGreyson\nXander\nDeclan\nEmilio\nMax\nWeston\nChase\nSilas\nAidan\nJude\nBryce\nHector\nIsrael\nJase\nJax\nJustin\nNicolas\nBrian\nAdriel\nBrady\nCamden\nEduardo\nPreston\nZayden\nCruz\nFernando\nJoel\nCristian\nGeorge\nMaximiliano\nHayden\nJaden\nKai\nKing\nColin\nPatrick\nCash\nDamien\nErick\nJosue\nMark\nMaverick\nTheodore\nEdgar\nJonah\nRiley\nSergio\nCesar\nGrant\nJayce\nMarco\nMario\nWesley\nIsmael\nKenneth\nMarcus\nBennett\nBradley\nGage\nKaleb\nKaden\nOmar\nRuben\nBraxton\nCalvin\nEsteban\nJeremy\nJoaquin\nJohnny\nMartin\nRoberto\nTucker\nPaul\nBryson\nCody\nCorbin\nHarrison\nKaiden\nTimothy\nJett\nMaddox\nTanner\nAshton\nPedro\nRaymond\nSean\nTroy\nDevin\nErik\nGerardo\nRafael\nArmando\nCayden\nEdward\nKingston\nKyle\nOrion\nPaxton\nAvery\nDean\nDominick\nElliot\nJaiden\nLuca\nShane\nZander\nArcher\nBeckett\nLukas\nAdan\nNixon\nAlexis\nAlonzo\nAndy\nBrantley\nCollin\nConner\nGraham\nMalachi\nAndre\nDante\nJulio\nSeth\nAngelo\nRamon\nRaul\nRemington\nEnzo\nGunner\nJake\nPeter\nCaden\nCharlie\nKnox\nLeonel\nMarcos\nPablo\nSimon\nArthur\nBeckham\nChance\nNoel\nRomeo\nSpencer\nStephen\nArturo\nBrooks\nKeegan\nPeyton\nTrevor\nAbram\nEnrique\nGustavo\nJaime\nJasper\nMilan\nReed\nRodrigo\nRowan\nRylan\nAlberto\nElian\nEmerson\nGarrett\nJohnathan\nJulius\nOrlando\nZion\nAden\nFinn\nJeffrey\nMyles\nTitus\nAtticus\nBeau\nEzequiel\nOdin\nRaiden\nRyland\nSkyler\nAlfredo\nClayton\nDonovan\nKameron\nKillian\nLanden\nPhoenix\nPorter\nSaul\nAmir\nColt\nEden\nEdwin\nElliott\nFelix\nFrank\nGriffin\nJared\nKellen\nMalakai\nRiver\nSalvador\nShawn\nYahir\nZaiden\nArmani\nAugust\nCade\nIssac\nJayceon\nJaylen\nRonin\nTyson\nDaxton\nDrake\nEmanuel\nIzaiah\nJudah\nLeon\nMatteo\nMoises\nNoe\nQuinn\nTate\nCrew\nDallas\nDustin\nEddie\nErnesto\nHarvey\nJayson\nKyler\nTalon\nTaylor\nAce\nBarrett\nBrock\nCaiden\nDillon\nHolden\nHugo\nIsaias\nLuciano\nMathew\nNehemiah\nRemy\nRhett\nUriah\nAlec\nAlijah\nAnderson\nArian\nBruce\nBruno\nClark\nCyrus\nDamon\nDominik\nKade\nRicky\nRoyce\nSolomon\nTravis\nWalter\nAlbert\nAzariah\nCannon\nCastiel\nColten\nDeacon\nDexter\nGideon\nGilbert\nGiovani\nGregory\nJay\nKolton\nLeonidas\nMilo\nRene\nRudy\nVicente\nAlexzander\nAmari\nBodhi\nDalton\nDax\nDrew\nGannon\nGuillermo\nLeland\nMarshall\nMaximilian\nMisael\nNash\nNikolai\nPhilip\nRonald\nScott\nSterling\nTony\nUriel\nAri\nBenson\nBraden\nBrett\nBrigham\nDarius\nDerrick\nEfrain\nFinley\nGerman\nJaxen\nKane\nKash\nLouis\nMauricio\nMessiah\nNeymar\nPhillip\nRayden\nRoger\nSantos\nZachariah\nAlfonso\nAlvaro\nEmmitt\nGary\nGianni\nKeith\nKian\nKolten\nKorbin\nMalcolm\nMathias\nMoses\nPrince\nRogelio\nRonan\nRory\nTatum\nThiago\nTobias\nTristen\nTy\nWarren\nXzavier\nBen\nBronson\nCain\nCason\nDarian\nDesmond\nDevon\nDorian\nGrady\nGunnar\nHamza\nJakob\nJamison\nJohan\nJonas\nKarter\nKasen\nKayson\nLandyn\nLawrence\nMariano\nMatias\nMatthias\nNathanael\nNico\nNikolas\nRex\nRey\nRocco\nSullivan\nUlises\nValentin\nVan\nWalker\nWaylon\nZayne\nAgustin\nAli\nAllen\nArlo\nAtlas\nBoston\nBrennan\nCarlo\nCassius\nCohen\nConrad\nCristiano\nDawson\nEnoch\nGilberto\nHendrix\nJalen\nJensen\nJunior\nKeaton\nKellan\nKristian\nLennox\nLewis\nLionel\nLucian\nMadden\nMarc\nMicheal\nMitchell\nQuentin\nRandy\nRodolfo\nRussell\nSamson\nSantino\nToby\nTommy\nTrenton\nAbdiel\nAldo\nAlonso\nAriel\nAxl\nBrenden\nBrixton\nBrycen\nCamilo\nColby\nColter\nDane\nDanny\nDario\nDavis\nDilan\nHeriberto\nHezekiah\nIzayah\nJaxton\nJoe\nJoey\nJordyn\nKamden\nKarson\nKason\nKristopher\nLane\nLouie\nLyric\nMaximo\nMuhammad\nOakley\nReid\nRobin\nRocky\nRoyal\nStetson\nTrey\nWade\nWinston\nYael\nZackary\nAlessandro\nAres\nAries\nAsa\nConor\nCurtis\nDakota\nDale\nDariel\nDeandre\nDemetrius\nDonald\nDraven\nDuke\nEllis\nEmery\nEstevan\nFinnegan\nFrancis\nGrey\nJairo\nJamari\nJaziel\nJericho\nJulien\nJustice\nKendrick\nKhalil\nKieran\nKobe\nLondon\nMagnus\nMakai\nMalik\nMarley\nNeil\nPayson\nRamiro\nRhys\nRowen\nTillman\nTomas\nZechariah\nAhmed\nAlden\nAlvin\nAmare\nBlaine\nBobby\nBrayan\nBrendan\nCallen\nCamdyn\nChandler\nDarren\nDecker\nDenzel\nDouglas\nEzio\nFelipe\nFlynn\nFranco\nFrankie\nFranklin\nGadiel\nGauge\nGibran\nGonzalo\nHarley\nIgnacio\nJagger\nJair\nJasiel\nJon\nJoziah\nKody\nLance\nLarry\nLegend\nLennon\nMajor\nMarvin\nMaurice\nMelvin\nMorgan\nNiko\nOctavio\nOtto\nPierce\nRamses\nRay\nReece\nRidge\nRonnie\nSage\nSammy\nSky\nSkylar\nSylas\nTadeo\nTheo\nThor\nUrijah\nUziel\nVaughn\nWestin\nZain\nAbdullah\nAchilles\nAlexandro\nAllan\nApollo\nArjun\nAxton\nAydan\nBoden\nBraydon\nBraylon\nByron\nCarmelo\nCasey\nCayson\nChris\nCristobal\nDangelo\nDenver\nDereck\nDiesel\nEphraim\nFreddy\nGaige\nGibson\nGordon\nGraysen\nHank\nHansel\nHarlan\nHumberto\nHyrum\nJacoby\nJasiah\nJerry\nJeshua\nJimmy\nJovanni\nJustus\nKhalid\nKoda\nKoen\nKyren\nKyrie\nLayton\nLee\nLucio\nLuka\nMasen\nMemphis\nMiguelangel\nMohammed\nNickolas\nPatricio\nPayton\nReyes\nRohan\nRoland\nRoy\nRylen\nSam\nStanley\nStefan\nTerrance\nThaddeus\nTitan\nTyce\nValentino\nYasiel\nYousif\nZavier\nAbdirahman\nAmmon\nAnakin\nAnder\nAugustine\nAzael\nBailey\nBernardo\nBowen\nBrent\nBrodie\nCallan\nCallum\nCedric\nChad\nConstantine\nCorey\nCory\nCrosby\nDamion\nEfren\nEliam\nEly\nEnder\nErnest\nFox\nGavyn\nGerald\nGiancarlo\nGionni\nHiram\nIbrahim\nIsai\nJadon\nJamie\nJaxxon\nJeramiah\nJermaine\nJohnathon\nJonathon\nJovan\nJuancarlos\nKael\nKain\nKarim\nKashton\nKonnor\nKylan\nKyson\nLawson\nLayne\nLeif\nLucius\nMarcelino\nMarcelo\nMatix\nMaxton\nMayson\nMikel\nMohamed\nNasir\nQuincy\nRalph\nRandall\nReagan\nRico\nShaun\nSonny\nSoren\nSteve\nTerrence\nTripp\nWayne\nYadier\nYahel\nYair\nYusuf\nZaid\nAaden\nAarav\nAbbas\nAdonis\nAdrien\nAedan\nAidyn\nAlfred\nAnders\nArik\nArius\nArley\nAron\nAtreyu\nAven\nAydin\nAzriel\nBraeden\nBraiden\nBrandt\nBraylen\nBryant\nBrysen\nCairo\nCam\nCanyon\nCarl\nCase\nCasen\nChanning\nCian\nClay\nClifton\nCy\nDallin\nDamari\nDavian\nDavin\nDavion\nDeegan\nDennis\nDeshawn\nDion\nDutch\nEdmund\nEiden\nEleazar\nFausto\nForrest\nFoster\nFred\nFrederick\nGarrison\nGiovanny\nGlenn\nHarper\nHoward\nHugh\nIrvin\nIsmail\nJadyn\nJai\nJarrett\nJaydan\nJedidiah\nJefferson\nJerome\nJionni\nJones\nJordon\nJuanpablo\nKaeden\nKaidyn\nKaison\nKannon\nKase\nKaysen\nKeanu\nKeenan\nKelton\nKendall\nKimball\nKole\nKrish\nLamar\nLazarus\nLeandro\nLeighton\nMaddix\nMaison\nMalaki\nMarkus\nMauro\nMccoy\nMerrick\nNathanial\nNelson\nNestor\nNikko\nNikola\nNyjah\nOllie\nPierre\nQuinton\nRigdon\nRigoberto\nRockwell\nRuger\nSami\nSheldon\nSidney\nStryker\nSulaiman\nTerry\nTodd\nTrace\nTru\nTruman\nTytus\nVance\nVladimir\nWallace\nYeshua\nYousef\nZayn\nZeke\nZuriel\nMary\nHelen\nDorothy\nMargaret\nFrances\nRuth\nEvelyn\nAlice\nVirginia\nElizabeth\nFlorence\nMarie\nMildred\nRose\nHazel\nLouise\nJosephine\nLucille\nGrace\nGladys\nEdna\nEleanor\nMarjorie\nBernice\nThelma\nEdith\nDoris\nIrene\nLillian\nCatherine\nEthel\nAnna\nAnn\nEsther\nMarion\nKatherine\nBetty\nElsie\nGertrude\nMabel\nBeatrice\nClara\nMarian\nViolet\nJean\nLaura\nJessie\nLois\nMarguerite\nMae\nMyrtle\nPauline\nRuby\nEmma\nEva\nGenevieve\nSarah\nAnita\nIda\nJulia\nMartha\nViola\nBertha\nCharlotte\nPearl\nBarbara\nJuanita\nVera\nAlma\nEllen\nKathleen\nKathryn\nLena\nMaria\nAgnes\nAnne\nNorma\nJennie\nMuriel\nPatricia\nVivian\nCarmen\nIsabel\nNellie\nDolores\nMay\nElla\nEmily\nGeraldine\nHenrietta\nRamona\nAdeline\nAnnie\nClaire\nJane\nLorraine\nMadeline\nMaxine\nBessie\nGeorgia\nIrma\nLeona\nLucile\nLucy\nSally\nVelma\nAlberta\nAngelina\nCaroline\nFern\nInez\nOlive\nRoberta\nVerna\nJeanne\nMamie\nMiriam\nPhyllis\nRita\nTheresa\nWilma\nWinifred\nAmelia\nBlanche\nHarriet\nJune\nLola\nNina\nStella\nAda\nCarrie\nCecelia\nGloria\nHelene\nIsabelle\nMinnie\nSadie\nAngela\nConstance\nEileen\nElinor\nEstelle\nFlora\nIna\nJeanette\nLoretta\nLupe\nMatilda\nMerle\nRosalie\nRosie\nTeresa\nVictoria\nAlyce\nAngeline\nAudrey\nCarmelita\nCarol\nCarolyn\nCecile\nDella\nFreda\nGoldie\nHilda\nMarcella\nMelba\nOlga\nSylvia\nYvonne\nAmy\nClarice\nDaisy\nElma\nElvira\nFannie\nGeneva\nIris\nJanet\nJeannette\nJoyce\nLottie\nMargarita\nMaude\nShirley\nAileen\nAngie\nAstrid\nBeulah\nBeverly\nCecilia\nConsuelo\nDora\nEtta\nEunice\nHattie\nJoan\nLee\nLenore\nNora\nRachel\nRosa\nSara\nWillie\nAdelaide\nAdele\nAdrienne\nAlthea\nAntonia\nBillie\nCelia\nElaine\nErma\nEve\nFaye\nFrancis\nHarriett\nIla\nIsabella\nJacqueline\nKatharine\nKatie\nLila\nLina\nLydia\nMable\nMargie\nMercedes\nPeggy\nRena\nRosemary\nSophia\nSue\nTillie\nMary\nDorothy\nHelen\nMargaret\nRuth\nFrances\nAlice\nEvelyn\nMarie\nElizabeth\nFlorence\nVirginia\nMildred\nGrace\nLillian\nHazel\nMarjorie\nDoris\nRose\nLouise\nEleanor\nJosephine\nThelma\nBernice\nGladys\nCatherine\nAnna\nEdna\nIrene\nEsther\nBeatrice\nEthel\nBarbara\nElsie\nLucille\nEdith\nJean\nGertrude\nBetty\nJane\nMarian\nMarion\nMabel\nPauline\nAnn\nIda\nAgnes\nJulia\nMartha\nVera\nAnita\nKatherine\nAnne\nLois\nJennie\nLeona\nDolores\nEllen\nKathryn\nClara\nEmma\nEva\nMarguerite\nBertha\nAlma\nJessie\nRuby\nVivian\nViola\nBessie\nGenevieve\nLorraine\nPearl\nLaura\nLena\nMaria\nMyrtle\nNellie\nNorma\nEmily\nJune\nMuriel\nHarriet\nOlga\nPatricia\nPhyllis\nClaire\nGeraldine\nIsabel\nJuanita\nKathleen\nWilma\nAileen\nConstance\nBlanche\nCharlotte\nGeorgia\nIrma\nVelma\nAngelina\nStella\nAdeline\nAudrey\nMaxine\nAlberta\nAnnie\nRoberta\nTheresa\nCarmen\nCecelia\nEileen\nElla\nInez\nNadine\nSylvia\nViolet\nWinifred\nCarol\nElva\nErma\nLoretta\nLucile\nLucy\nLydia\nMay\nMinnie\nRosie\nVerna\nAlyce\nCaroline\nEstelle\nHenrietta\nIsabelle\nRita\nRosalie\nSarah\nAmelia\nAnnette\nAntoinette\nCecilia\nEunice\nFern\nJeanne\nMadeline\nMae\nNancy\nOlive\nRosa\nAngela\nErnestine\nJanet\nJeanette\nSara\nShirley\nAdele\nBeulah\nElena\nHilda\nLupe\nMiriam\nOpal\nRamona\nVictoria\nAlta\nConsuelo\nCora\nDella\nEloise\nElvira\nFlora\nGloria\nHarriett\nHelene\nLela\nLola\nNaomi\nSally\nWanda\nWilda\nAda\nAmy\nChristine\nDora\nElaine\nFay\nGeneva\nGwendolyn\nKay\nLila\nMable\nMatilda\nMercedes\nNell\nTeresa\nTillie\nUrsula\nAngie\nBonnie\nCelia\nDaisy\nDonna\nDorothea\nElinor\nEugenia\nFreda\nLenore\nLuella\nMargery\nMaude\nMaurine\nMelba\nMerle\nNatalie\nNettie\nNina\nNora\nPeggy\nSusan\nZelma\nAdrienne\nAlda\nBerniece\nBeverly\nCarrie\nClarice\nCornelia\nEdwina\nEdythe\nEffie\nEthelyn\nFaye\nIna\nJeannette\nJoan\nJoyce\nJuliet\nLeila\nLenora\nLeola\nMadge\nMamie\nMattie\nNeva\nPaula\nRachel\nRegina\nRena\nSadie\nSelma\nSue\nVerda\nMary\nDorothy\nHelen\nMargaret\nRuth\nFrances\nAlice\nVirginia\nEvelyn\nElizabeth\nMarie\nMildred\nFlorence\nRose\nJosephine\nEdith\nGrace\nEdna\nMarjorie\nEleanor\nDoris\nLouise\nGladys\nLucille\nHazel\nLillian\nIrene\nAnna\nBernice\nEthel\nEsther\nBarbara\nGertrude\nKatherine\nThelma\nLois\nCatherine\nElsie\nJean\nBetty\nMarion\nEmma\nLaura\nGenevieve\nPauline\nClara\nMarguerite\nMartha\nAnn\nMabel\nBeatrice\nRuby\nMarian\nAgnes\nVivian\nCharlotte\nEva\nIsabel\nNellie\nAnita\nAnne\nBertha\nViola\nKathryn\nMaria\nJulia\nLena\nAlma\nGeraldine\nJane\nMaxine\nEllen\nGeorgia\nKathleen\nPatricia\nJuanita\nLorraine\nRoberta\nEmily\nPhyllis\nIda\nVera\nVerna\nClaire\nJune\nMadeline\nDolores\nMyrtle\nPearl\nVelma\nJennie\nSarah\nEileen\nJessie\nWinifred\nCarmen\nOlive\nVictoria\nBlanche\nHarriet\nIrma\nMinnie\nViolet\nWilma\nDora\nTheresa\nLeona\nMae\nBessie\nElla\nMuriel\nNorma\nStella\nAmelia\nAudrey\nOlga\nJanet\nShirley\nAda\nElinor\nLucy\nSylvia\nAlberta\nFern\nAngela\nErnestine\nInez\nLola\nNancy\nRita\nAdele\nCarol\nConstance\nDorothea\nErma\nHenrietta\nJeanne\nMay\nAnnie\nCarolyn\nAlta\nAntoinette\nGwendolyn\nHilda\nLucile\nLupe\nAileen\nAngelina\nBeulah\nFlora\nIsabelle\nJeanette\nRamona\nAlyce\nAnnette\nCaroline\nCecilia\nEunice\nFay\nHarriett\nMiriam\nSophie\nAdeline\nAmy\nCecelia\nChristine\nElaine\nElisabeth\nEstelle\nHelene\nJeannette\nJoan\nMelba\nNaomi\nSally\nDella\nJacqueline\nLenore\nLoretta\nLydia\nMamie\nRegina\nEleanore\nElva\nFreda\nGloria\nLee\nLila\nSue\nYvonne\nAngie\nAnnabelle\nAntonia\nCecile\nClaudia\nCora\nDonna\nEloise\nKatie\nNina\nRena\nRosalie\nTillie\nAurelia\nCelia\nEdythe\nElvira\nEnid\nEugenia\nJuana\nLaverne\nLorene\nLuella\nMable\nMerle\nNadine\nNora\nOlivia\nPeggy\nPetra\nSara\nSusan\nVeronica\nAlva\nBonnie\nCarrie\nCleo\nDaisy\nDorris\nElma\nFaye\nFrancis\nGeneva\nGoldie\nIva\nIvy\nKatharine\nKay\nMargie\nMasako\nMatilda\nMona\nRebecca\nRosa\nRosemary\nSadie\nShizuko\nWanda\nArline\nAurora\nBeryl\nBeth\nCarmelita\nDolly\nEffie\nErna\nEtta\nEula\nEvalyn\nJanice\nJuliette\nLenora\nLillie\nLinda\nMarcella\nMargery\nMarianne\nMercedes\nMonica\nNatalie\nNettie\nOpal\nRae\nAdelaide\nAvis\nBernadine\nBillie\nCatalina\nChristina\nClare\nCorinne\nElenor\nFannie\nFerne\nIla\nIris\nLeatha\nLela\nLeola\nLily\nLorna\nLulu\nMadeleine\nMargret\nMaude\nMolly\nMyrle\nPaula\nPriscilla\nRachel\nTeresa\nVeda\nWilda\nMary\nDorothy\nHelen\nMargaret\nRuth\nFrances\nVirginia\nElizabeth\nAlice\nMarie\nEvelyn\nMildred\nFlorence\nRose\nMarjorie\nEdna\nEleanor\nJosephine\nBarbara\nBernice\nLouise\nLillian\nKatherine\nThelma\nGrace\nEdith\nHazel\nJean\nEsther\nDoris\nIrene\nAnna\nBetty\nCatherine\nLois\nMartha\nJane\nAnn\nLucille\nEthel\nGladys\nGertrude\nPauline\nEva\nElsie\nMarion\nVivian\nBeatrice\nMarian\nRuby\nVera\nCharlotte\nKathryn\nEmma\nAgnes\nClara\nLena\nViolet\nMarguerite\nJessie\nLaura\nAlma\nBertha\nEllen\nMabel\nJune\nViola\nAnne\nMaria\nPhyllis\nIda\nJulia\nPearl\nJennie\nGeraldine\nJuanita\nPatricia\nDolores\nTheresa\nLorraine\nLucy\nMyrtle\nNellie\nShirley\nAnita\nCarmen\nMuriel\nIsabel\nMadeline\nMaxine\nAlberta\nBlanche\nElla\nEmily\nKathleen\nNancy\nVelma\nWilma\nWinifred\nGenevieve\nSarah\nOlga\nRamona\nNorma\nClaire\nMae\nSylvia\nDorothea\nElaine\nLola\nRoberta\nSally\nGeorgia\nJeanne\nMay\nAnnie\nConstance\nOlive\nAudrey\nCaroline\nJeanette\nCarolyn\nEileen\nHenrietta\nInez\nLeona\nLoretta\nLupe\nMinnie\nAdele\nBessie\nJoan\nLydia\nMiriam\nRita\nVerna\nVictoria\nYvonne\nAda\nAngelina\nGwendolyn\nRosie\nStella\nDora\nElinor\nEunice\nAdeline\nJanet\nAmelia\nAngela\nHarriet\nHilda\nIsabelle\nRosalie\nAileen\nCarol\nFreda\nIrma\nNadine\nBeulah\nBillie\nCecelia\nCora\nErnestine\nLucile\nMelba\nPeggy\nSophie\nAntoinette\nDella\nErma\nLillie\nMasako\nOpal\nRosa\nWanda\nDaisy\nEstelle\nFay\nFern\nNora\nAlyce\nAnnette\nBeth\nConsuelo\nHelene\nLily\nNaomi\nRosemary\nAngie\nArlene\nBonnie\nChristine\nEdythe\nEloise\nHarriett\nJacqueline\nJeannette\nKay\nLorene\nLuella\nMarcella\nNatalie\nNina\nAlta\nBeryl\nCelia\nFlora\nGeneva\nIris\nLaverne\nRachel\nRena\nSara\nTeresa\nCecilia\nEda\nEtta\nFaye\nGloria\nGuadalupe\nIna\nLeah\nMaurine\nNettie\nSadie\nShizue\nSue\nVeronica\nAdelaide\nAmy\nArline\nBeverly\nDonna\nEleanore\nElva\nElvira\nHattie\nIola\nJanice\nJoy\nJoyce\nLeola\nLila\nLoraine\nMargery\nRowena\nSusan\nAlva\nAnnabelle\nCarrie\nCleo\nElsa\nEugenia\nFrieda\nGoldie\nGretchen\nIva\nKiyoko\nLenora\nLenore\nLilly\nLinda\nLorna\nMable\nMinerva\nNeva\nRebecca\nRosalind\nSusie\nVesta\nWinona\nZelma\nAlicia\nAntonia\nCarmelita\nConnie\nDolly\nElma\nFlorine\nHope\nHortense\nJohanna\nJuana\nJuliette\nKatharine\nLee\nLeora\nLuz\nMadeleine\nMadelyn\nMargarita\nMargie\nMattie\nMollie\nSallie\nAida\nAletha\nAmanda\nAnnabel\nAugusta\nBernadette\nClare\nClarice\nCruz\nDorris\nElisabeth\nElvera\nEsperanza\nEve\nFannie\nGene\nJewel\nLela\nLeonora\nLeota\nLorena\nMarianne\nMaude\nMillie\nMyra\nNelda\nNell\nPriscilla\nRegina\nRobin\nRosemarie\nRoxie\nSelma\nShizuko\nTosca\nValerie\nZelda\nMary\nDorothy\nHelen\nMargaret\nRuth\nFrances\nEvelyn\nVirginia\nElizabeth\nMarie\nAlice\nFlorence\nMildred\nBarbara\nRose\nMarjorie\nEleanor\nLillian\nJosephine\nThelma\nJean\nLouise\nBetty\nDoris\nEdith\nGrace\nIrene\nGladys\nLois\nLucille\nBernice\nCatherine\nHazel\nKatherine\nEsther\nAnna\nEdna\nElsie\nGertrude\nMartha\nMarion\nBeatrice\nPauline\nEthel\nJane\nLaura\nVivian\nAnn\nEmma\nMarguerite\nAnne\nIda\nMarian\nGeraldine\nAlma\nJuanita\nVera\nEva\nGenevieve\nEmily\nJune\nKathryn\nMabel\nPatricia\nPhyllis\nCharlotte\nMuriel\nNellie\nViola\nEllen\nAgnes\nAnita\nBertha\nClara\nDolores\nLena\nPearl\nBlanche\nNorma\nJessie\nKathleen\nMaxine\nRuby\nJulia\nLorraine\nMyrtle\nViolet\nEileen\nJeanne\nCarmen\nInez\nSarah\nOlga\nWilma\nWinifred\nJennie\nMaria\nRoberta\nLeona\nMadeline\nMae\nVelma\nAudrey\nFlora\nIsabel\nLucy\nAlberta\nRamona\nAmelia\nLucile\nMinnie\nRita\nSylvia\nAnnie\nClaire\nMay\nAngelina\nEunice\nGeorgia\nRosalie\nVictoria\nCarol\nErma\nMiriam\nStella\nAdeline\nDorothea\nHarriet\nHenrietta\nAda\nBessie\nElaine\nIrma\nLydia\nMelba\nSally\nLupe\nTheresa\nVerna\nConstance\nFern\nJeanette\nNancy\nShirley\nElinor\nPeggy\nAdele\nElvira\nJanet\nNaomi\nOlive\nTeresa\nYvonne\nJeannette\nJoyce\nLenore\nDora\nIsabelle\nLily\nLoretta\nSara\nChristine\nDella\nHilda\nLola\nNadine\nNora\nAntoinette\nBeth\nBeulah\nAileen\nAmy\nAngela\nCaroline\nCecelia\nCora\nElla\nSue\nBonnie\nCarolyn\nCecilia\nEloise\nHelene\nOpal\nSophie\nAnnabelle\nEstelle\nGeneva\nGuadalupe\nJoan\nMargery\nConnie\nJacqueline\nLaverne\nLee\nMasako\nNina\nAdelaide\nAlyce\nConsuelo\nDolly\nElvera\nLila\nMargie\nMerle\nRosa\nWanda\nAntonia\nArlene\nBeverly\nDaisy\nEleanore\nEugenia\nFaye\nGloria\nHarriett\nHarriette\nHaruko\nJanice\nLorene\nLuella\nMarcella\nMatilda\nMona\nNettie\nRosemary\nRosie\nSusan\nSusie\nYoshiko\nAngie\nAnnette\nAurora\nBeryl\nCarmel\nCelia\nCorinne\nElma\nErna\nErnestine\nFay\nFreda\nFrieda\nGwendolyn\nLeah\nLenora\nLilly\nLorena\nLula\nMargarita\nMarjory\nMaude\nPhoebe\nRegina\nRosalind\nSelma\nToshiko\nVeronica\nVivienne\nWilda\nAlta\nDonna\nEda\nElna\nElva\nEnid\nEstella\nEvalyn\nEvelyne\nIone\nLillie\nMamie\nMaybelle\nMelva\nRosemarie\nSadie\nZelda\nBillie\nCarrie\nCecile\nCleo\nEdwina\nElena\nGoldie\nIla\nJosie\nJoy\nLora\nMercedes\nRachel\nRae\nRowena\nVesta\nZelma\nAlthea\nBettie\nChristina\nClarice\nCynthia\nEdythe\nElda\nElisabeth\nElnora\nFannie\nIsabell\nJuana\nKatharine\nKimiko\nKiyoko\nLinda\nLulu\nMadeleine\nMargarette\nMollie\nNedra\nNell\nNeva\nOlivia\nOra\nPetra\nShizuko\nWilhelmina\nYolanda\nAlva\nAmalia\nAugusta\nBette\nChieko\nClementine\nConcha\nDelfina\nDelores\nDena\nEffie\nElsa\nEve\nFlorine\nGail\nGemma\nGwen\nHannah\nHisako\nHortense\nImogene\nIola\nIris\nKatie\nKay\nLeanore\nLeila\nLeola\nLeonora\nLina\nLoraine\nLorna\nLucia\nMarcia\nMarianne\nMercy\nNona\nPaula\nRebecca\nRena\nRhea\nRosamond\nRosina\nSophia\nTomiko\nMary\nDorothy\nHelen\nMargaret\nRuth\nVirginia\nFrances\nEvelyn\nAlice\nElizabeth\nMarie\nFlorence\nJosephine\nEleanor\nBarbara\nRose\nMildred\nMarjorie\nBetty\nLouise\nBernice\nLillian\nJean\nGrace\nLois\nDoris\nEdith\nEsther\nIrene\nHazel\nJane\nLucille\nMarion\nAnna\nCatherine\nKatherine\nThelma\nGladys\nEdna\nAnn\nMarian\nMartha\nJune\nPauline\nEthel\nElsie\nEva\nPatricia\nLorraine\nLena\nPhyllis\nGertrude\nVivian\nCharlotte\nEmma\nClara\nJuanita\nRuby\nBeatrice\nAnita\nVera\nEllen\nGenevieve\nAnne\nLaura\nGeraldine\nIda\nViolet\nKathleen\nPearl\nAgnes\nMaxine\nKathryn\nJulia\nViola\nMarguerite\nAnnie\nJennie\nMabel\nHarriet\nMaria\nWilma\nEmily\nMuriel\nJessie\nInez\nMyrtle\nAlma\nBertha\nNellie\nNorma\nAngelina\nWinifred\nJanet\nMadeline\nTheresa\nEileen\nJeanne\nIsabel\nLucy\nAudrey\nNancy\nElaine\nMay\nOlive\nAlberta\nDolores\nOlga\nBlanche\nCarmen\nClaire\nSarah\nSylvia\nRita\nVelma\nLeona\nRoberta\nCarol\nLucile\nMae\nCaroline\nStella\nBessie\nGeorgia\nMinnie\nRosalie\nIrma\nShirley\nAdeline\nJeanette\nLydia\nAda\nAdele\nCarolyn\nElla\nFlora\nAileen\nFern\nHelene\nHilda\nAmelia\nEunice\nHenrietta\nMelba\nRamona\nVerna\nVictoria\nSally\nConstance\nDora\nLola\nElvira\nJeannette\nAntoinette\nElva\nIsabelle\nJoan\nMiriam\nNaomi\nSara\nAmy\nAngie\nBeverly\nDonna\nErma\nGwendolyn\nHarriett\nJacqueline\nLoretta\nNora\nPeggy\nTeresa\nBeulah\nBonnie\nCecelia\nRosie\nSophie\nWanda\nAlta\nAlyce\nAngela\nElinor\nFrieda\nSue\nAnnette\nBeth\nCelia\nChristine\nGloria\nLily\nRena\nYvonne\nCora\nGeneva\nJewel\nLaverne\nLupe\nRachel\nSelma\nAnnabelle\nDaisy\nErnestine\nFreda\nLorene\nRosemary\nSusan\nAdelaide\nConsuelo\nDorothea\nElma\nEstelle\nJoyce\nLillie\nMarcella\nNadine\nOpal\nRosa\nEleanore\nGeorgina\nLinda\nMargie\nMarjory\nBillie\nEloise\nIris\nKay\nMamie\nMercedes\nMerle\nToshiko\nDella\nEdythe\nEugenia\nFaye\nFumiko\nGoldie\nJanice\nLenore\nRegina\nCarmelita\nChiyoko\nEda\nElsa\nEmilia\nFrancis\nGuadalupe\nHaruko\nLee\nMarcia\nMargery\nMollie\nNatalie\nShizuko\nSusie\nWilda\nBetsy\nDiane\nFay\nIola\nKimiye\nLeah\nMillie\nSadie\nAndrea\nAurora\nBettie\nCarrie\nCecilia\nClarice\nClaudia\nConnie\nElisabeth\nEnid\nEvangeline\nHattie\nHope\nHortense\nJewell\nJoy\nJulie\nLorna\nLuella\nMable\nMargarita\nMatilda\nMaybelle\nMelva\nMillicent\nNeva\nOra\nPaula\nRebecca\nRosemarie\nVeronica\nAngeline\nArlene\nArline\nBernardine\nCarmel\nCarmela\nCynthia\nDelphine\nDolly\nDorris\nGretchen\nHarriette\nIsabell\nKatie\nLauretta\nLeila\nLenora\nLeota\nLottie\nLula\nMadeleine\nMasako\nMatsuko\nMolly\nMyra\nNina\nPetra\nRowena\nSuzanne\nTillie\nYoneko\nZelda\nAlbina\nAlda\nAlvera\nBelle\nBernadine\nCamille\nCecile\nErna\nEsperanza\nFannie\nGene\nGrayce\nIna\nJuana\nKiyo\nLina\nLora\nLoraine\nMeta\nNelda\nSybil\nVerla\nAddie\nAdrienne\nBenita\nBeryl\nCatalina\nChiyo\nDelia\nDelphina\nEdyth\nElvera\nEmilie\nEtta\nEvalyn\nFerne\nFrankie\nGeorgette\nGwen\nHaruye\nHelena\nJerry\nJudith\nLeone\nLila\nLorena\nLouella\nMarcelina\nMarilyn\nMaryann\nMattie\nMona\nNita\nNona\nNorine\nOlivia\nShizu\nShizue\nSophia\nTomiko\nVeda\nVelda\nVivienne\nWinona\nYolanda\nYoshiko\nZelma\nAngelita\nAntonia\nAstrid\nAvis\nAyako\nBette\nBirdie\nCarolina\nCathryn\nChristina\nCleo\nDelfina\nDixie\nEffie\nElna\nErlinda\nEster\nFaith\nFumi\nHannah\nHatsuko\nHellen\nIdell\nIlene\nIona\nIone\nIvy\nJosie\nJovita\nJuliette\nKatharine\nKimiko\nKiyoko\nLela\nLeola\nLilly\nLucia\nLulu\nMadelyn\nMadge\nMarianne\nMartina\nMaryellen\nMayme\nMichiye\nMickey\nMignon\nMisao\nNell\nNicolasa\nOdessa\nOllie\nPolly\nPriscilla\nRosalind\nRosamond\nRoxie\nSadako\nSheila\nTheodora\nTina\nToshi\nTrinidad\nWilhelmina\nWillie\nWinnifred\nYoshimi\nYukiye\nZita\nMary\nDorothy\nMargaret\nHelen\nRuth\nFrances\nVirginia\nEvelyn\nAlice\nElizabeth\nMarie\nMarjorie\nRose\nEleanor\nBarbara\nJosephine\nFlorence\nBetty\nJean\nDoris\nMildred\nJune\nGrace\nLouise\nLillian\nBernice\nEdith\nThelma\nLois\nLucille\nAnna\nGladys\nElsie\nJane\nEsther\nIrene\nCatherine\nKatherine\nMarion\nEdna\nMarian\nAnn\nHazel\nPatricia\nGertrude\nPauline\nEthel\nMartha\nKathryn\nMarguerite\nClara\nPhyllis\nAnita\nBeatrice\nLorraine\nVera\nGeraldine\nAgnes\nVivian\nEmma\nIda\nCharlotte\nRuby\nAnne\nMabel\nNorma\nJessie\nViola\nWilma\nAudrey\nDolores\nEllen\nPearl\nEva\nMyrtle\nJennie\nNellie\nJulia\nJuanita\nKathleen\nCarol\nLaura\nGenevieve\nMuriel\nViolet\nCarmen\nJeanne\nOlga\nAlma\nMaxine\nWinifred\nConstance\nElaine\nEmily\nLucy\nBertha\nHarriet\nInez\nLena\nRita\nVelma\nGeorgia\nSylvia\nJanet\nSarah\nClaire\nHenrietta\nRoberta\nAnnie\nMadeline\nEileen\nLeona\nMaria\nNancy\nRamona\nTheresa\nAmelia\nOlive\nAlberta\nElla\nAda\nAngelina\nVictoria\nMay\nBlanche\nCaroline\nMinnie\nShirley\nVerna\nJeanette\nAileen\nLola\nHilda\nIsabel\nLaverne\nLucile\nMelba\nPeggy\nSally\nStella\nIrma\nJeannette\nAlta\nDora\nJoan\nAdeline\nFern\nMiriam\nBessie\nRosalie\nFlora\nMae\nConsuelo\nDorothea\nLoretta\nAmy\nBillie\nCarolyn\nErma\nLydia\nRosie\nBeverly\nElvira\nEstelle\nHelene\nIsabelle\nLupe\nDella\nElinor\nAdele\nAngela\nRachel\nCecilia\nChristine\nNadine\nSophie\nCora\nEunice\nKay\nNina\nOpal\nAnnette\nBonnie\nErnestine\nJoyce\nAngie\nAntoinette\nElva\nGloria\nNaomi\nNatalie\nFrieda\nLila\nMamie\nRena\nSadie\nTeresa\nDonna\nFreda\nLily\nSusan\nAntonia\nEloise\nGwendolyn\nPaula\nRosemary\nSara\nBeulah\nCleo\nFumiko\nLuella\nMable\nMerle\nNora\nSelma\nYvonne\nBettie\nCecelia\nConnie\nEleanore\nGeneva\nRosa\nToshiko\nAlyce\nBeth\nBette\nDolly\nFaye\nIone\nJoy\nKimiko\nKiyoko\nLeah\nWanda\nYoshiko\nAnnabelle\nArlene\nAurora\nDaisy\nEugenia\nJewel\nJewell\nLinda\nLorene\nMillie\nOlivia\nTheda\nYolanda\nCecile\nEda\nElda\nElvera\nFay\nGeorgette\nGuadalupe\nHaruko\nIla\nLeila\nLouisa\nMasako\nMercedes\nRegina\nShizuko\nSue\nCarrie\nCynthia\nEvalyn\nHarriett\nHattie\nIris\nJanice\nLela\nMadeleine\nMargery\nMargie\nPriscilla\nYaeko\nAlthea\nBeryl\nChristina\nClare\nClarice\nElsa\nEnid\nFannie\nIvy\nJacqueline\nJayne\nKatharine\nLenore\nLeola\nLilly\nLoraine\nLula\nMarcella\nNell\nNeva\nRae\nSusie\nWilda\nAlicia\nCarmel\nChiyoko\nDelores\nElma\nEstella\nEvelyne\nGene\nHannah\nHortense\nIna\nJosefina\nJuliette\nLucia\nMadelyn\nMargarita\nMatilda\nMitsuye\nMollie\nMyra\nPetra\nWinona\nAida\nAiko\nAngeline\nBelle\nBethel\nCamille\nChiyeko\nEdwina\nEsperanza\nEtta\nEve\nFlorine\nGoldie\nJudith\nJulie\nKatie\nKazuye\nLenora\nLottie\nMarianne\nMaybelle\nMelva\nMichi\nMitsuko\nMolly\nNelda\nPansy\nPhoebe\nRosella\nTillie\nTrinidad\nWilhelmina\nYoshiye\nAdelaide\nAdrienne\nAndrea\nAnnabel\nAurelia\nBernadine\nCelestine\nClaudine\nDelphine\nDina\nDominga\nEdythe\nEffie\nElena\nElisabeth\nEula\nFrancine\nFrancis\nFumi\nGeorgina\nHelena\nHisako\nHope\nKate\nKazuko\nLillie\nLorna\nLura\nMarcia\nMattie\nMichiko\nNettie\nNola\nPat\nRosalind\nRosaline\nRowena\nShizue\nShizuye\nSumiko\nTeruko\nTina\nTomiko\nVenus\nZelda\nZella\nAddie\nAimee\nAlbina\nAlda\nAletha\nAline\nAlvina\nAmalia\nArleen\nArline\nAsako\nAugusta\nAyako\nBetsy\nCarmelita\nCarmella\nCatharine\nCathryn\nCeleste\nCelia\nClaudia\nCorinne\nDelia\nDixie\nElna\nEulalia\nFerne\nGretchen\nIlene\nIsobel\nJohanna\nKiyo\nLeora\nLeota\nLina\nLorena\nLorenza\nMagdalena\nMarcelle\nMariana\nMariko\nMarina\nMarjory\nMaryann\nMina\nNan\nNobuko\nNona\nNoreen\nPaz\nPolly\nRhoda\nRosemarie\nRosetta\nTatsuko\nThais\nTosca\nValerie\nVeda\nVeronica\nWilla\nWinnifred\nYoneko\nYukiko\nZelma\nZora\nMary\nDorothy\nHelen\nMargaret\nVirginia\nRuth\nFrances\nEvelyn\nAlice\nElizabeth\nBarbara\nBetty\nMarie\nRose\nMildred\nFlorence\nEleanor\nMarjorie\nJosephine\nJean\nDoris\nJane\nLillian\nJune\nGrace\nLouise\nBernice\nLois\nIrene\nLucille\nAnna\nEdna\nPatricia\nCatherine\nGladys\nPhyllis\nMarian\nMarion\nKatherine\nEdith\nThelma\nPauline\nHazel\nEsther\nElsie\nGertrude\nMartha\nEthel\nGeraldine\nAnn\nEmma\nAgnes\nLorraine\nEva\nAnita\nBeatrice\nVivian\nDolores\nCharlotte\nLaura\nClara\nMabel\nNorma\nJessie\nMuriel\nAudrey\nEllen\nJulia\nKathryn\nWinifred\nVera\nGenevieve\nIda\nLena\nKathleen\nMarguerite\nViolet\nJuanita\nViola\nNellie\nJeanne\nJennie\nAlma\nMay\nRuby\nShirley\nAnne\nWilma\nCarmen\nEmily\nJanet\nMaria\nPearl\nLucy\nMaxine\nIsabel\nMadeline\nSylvia\nRoberta\nTheresa\nBlanche\nClaire\nHarriet\nNancy\nCarol\nJeanette\nLeona\nRita\nVelma\nBertha\nSarah\nStella\nBeverly\nEileen\nElaine\nGeorgia\nLupe\nOlive\nAdele\nJoan\nMae\nMiriam\nVerna\nMinnie\nMyrtle\nOlga\nAngelina\nMelba\nAlberta\nAnnie\nFlora\nLucile\nRamona\nBessie\nBillie\nCaroline\nElla\nLola\nAdeline\nConstance\nHenrietta\nIrma\nPeggy\nAntoinette\nFern\nSally\nDorothea\nAda\nInez\nVictoria\nJoyce\nLoretta\nJanice\nLydia\nConnie\nIsabelle\nRosalie\nLaverne\nTeresa\nDora\nEloise\nEunice\nHelene\nNina\nCarolyn\nChristine\nDella\nBeulah\nElvira\nBette\nHilda\nGloria\nMargie\nNadine\nNaomi\nSara\nWanda\nAlta\nAmelia\nAngela\nErnestine\nJeannette\nKay\nRosie\nAileen\nElva\nFreda\nMamie\nSophie\nSue\nYvonne\nAmy\nCecilia\nDonna\nEstelle\nAngie\nCarrie\nCecelia\nConsuelo\nDaisy\nJewel\nOpal\nRachel\nRosemary\nSusie\nAnnette\nBeth\nElinor\nHarriett\nJacqueline\nCora\nErma\nLily\nMargery\nAnnabelle\nFumiko\nLeola\nLila\nLuella\nMarcella\nMargarita\nMercedes\nOlivia\nPaula\nSusan\nToshiko\nAurora\nAyako\nGeneva\nJuana\nMatilda\nNora\nRena\nYoshiko\nAdelaide\nAlyce\nBettie\nElena\nEvalyn\nGwendolyn\nHarriette\nLenore\nMable\nNatalie\nShizuko\nTheodora\nAiko\nArline\nEdythe\nElvera\nEnid\nEstella\nEugenia\nFrieda\nHope\nJoy\nLenora\nLilly\nLinda\nLorena\nLorene\nMiyoko\nMolly\nBonnie\nEleanore\nElise\nFay\nGail\nGuadalupe\nKimiko\nLeah\nMarilyn\nMitsuko\nMollie\nNell\nSadie\nTillie\nValerie\nAntonia\nArlene\nAugusta\nCarmel\nCecile\nCelia\nClare\nCleo\nDelores\nElisabeth\nElma\nFaye\nFerne\nFrancis\nHaruko\nHideko\nHortense\nIola\nJosie\nKatharine\nLela\nMarcia\nMarietta\nMasako\nNeva\nPetra\nSybil\nWilla\nYukiko\nAdrienne\nAvis\nChristina\nFaith\nFrancisca\nIris\nIsabell\nKiyoko\nLee\nLora\nLoraine\nMiyeko\nPolly\nPriscilla\nRae\nRebecca\nRosa\nRowena\nShizue\nYoneko\nAdela\nCarmelita\nClarice\nConcepcion\nDolly\nEffie\nElsa\nHelena\nHisako\nKimiye\nManuela\nMarjory\nMichiko\nMitsuye\nSelma\nTomiko\nTrinidad\nWilda\nWinona\nAlicia\nAngeline\nAurelia\nCatalina\nDeloris\nDelphine\nDina\nDixie\nEsperanza\nEthelyn\nEvangeline\nGene\nHattie\nIna\nIone\nIvy\nJayne\nJosefina\nKatie\nLouisa\nMaybelle\nMelva\nNobuko\nRosina\nSallie\nSheila\nWinnifred\nYolanda\nZelma\nAloha\nAlva\nAmalia\nBettye\nChiyoko\nClaudia\nDorthy\nEda\nElna\nElnora\nEmiko\nEmilia\nErna\nGoldie\nHarumi\nIla\nIona\nJewell\nJuliet\nKate\nLeila\nLillie\nLottie\nLou\nLura\nMadge\nMavis\nOra\nRufina\nSumiko\nSuzanne\nToshi\nVerda\nVeronica\nVesta\nVivienne\nWilhelmina\nAlvina\nBelle\nBernadette\nBerniece\nBeryl\nBethel\nBeverley\nCeleste\nCorinne\nDiane\nDiva\nDominga\nEdwina\nEiko\nElda\nElynor\nEmilie\nEtta\nEula\nFelipa\nFlorine\nFumiye\nFusaye\nGarnet\nGretchen\nGwen\nHanako\nHannah\nHaruye\nHulda\nIva\nJanis\nJohanna\nJulie\nJuliette\nKathlyn\nKazuko\nLaurel\nLeonor\nLeslie\nLina\nLorna\nLouella\nLucia\nLulu\nMadelyn\nMarianne\nMarina\nMaude\nMeredith\nMerle\nMisako\nMyra\nNettie\nNobu\nNona\nPhoebe\nRafaela\nReba\nSetsuko\nShizu\nTaeko\nTina\nToshiye\nYasuko\nMary\nDorothy\nMargaret\nHelen\nVirginia\nFrances\nRuth\nBarbara\nBetty\nEvelyn\nAlice\nElizabeth\nMarjorie\nMarie\nJean\nEleanor\nRose\nMildred\nFlorence\nJosephine\nDoris\nJane\nLorraine\nLois\nJune\nLillian\nLucille\nEsther\nPatricia\nPhyllis\nLouise\nBernice\nEdna\nGrace\nCatherine\nMarian\nEdith\nIrene\nThelma\nAnna\nMarion\nMartha\nEthel\nPauline\nElsie\nHazel\nGladys\nKatherine\nDolores\nJeanne\nNorma\nAnn\nBeatrice\nVivian\nGeraldine\nAnita\nViolet\nEllen\nKathryn\nIda\nJulia\nClara\nShirley\nGertrude\nEmma\nMabel\nLaura\nCharlotte\nVera\nAgnes\nWilma\nCarmen\nMarguerite\nEva\nJessie\nMaria\nRoberta\nViola\nEmily\nRita\nRuby\nAnne\nKathleen\nJuanita\nNancy\nAudrey\nGenevieve\nLucy\nMyrtle\nIsabel\nMaxine\nTheresa\nWinifred\nMadeline\nAlma\nJennie\nJoan\nStella\nPearl\nAlberta\nLeona\nMuriel\nCarol\nSarah\nVelma\nAnnie\nBeverly\nLena\nJanet\nAngelina\nEileen\nBessie\nVictoria\nClaire\nElaine\nLupe\nNellie\nBlanche\nFlora\nVerna\nHarriet\nGeorgia\nJoyce\nCarolyn\nLaverne\nAdele\nJanice\nYvonne\nBertha\nConstance\nInez\nPeggy\nGloria\nSally\nCaroline\nMae\nOlive\nRamona\nJeanette\nMay\nIrma\nSylvia\nAdeline\nEunice\nAngie\nElva\nMiriam\nHilda\nOpal\nDonna\nElvira\nRosie\nBillie\nDora\nErma\nFern\nLola\nMinnie\nTeresa\nElla\nLydia\nOlga\nRosalie\nAmelia\nBette\nConsuelo\nCora\nMelba\nNadine\nNora\nAntonia\nBeth\nMargie\nRosemary\nBonnie\nDorothea\nElinor\nEloise\nLily\nSophie\nAurora\nCelia\nKay\nLucile\nAda\nAlyce\nCecelia\nAileen\nAnnette\nBettie\nDaisy\nHelene\nCecilia\nJeannette\nLoretta\nSara\nSue\nSusan\nAngela\nBeulah\nFay\nFrieda\nGwendolyn\nToshiko\nArlene\nChristine\nConnie\nDella\nDolly\nElena\nFreda\nLuella\nMarcella\nRena\nAmy\nElisabeth\nGuadalupe\nNaomi\nAlta\nAntoinette\nCatalina\nEnid\nJacqueline\nLeah\nLenore\nMargarita\nNina\nRachel\nYoshiko\nAiko\nAnnabelle\nEdythe\nEleanore\nEsperanza\nHarriett\nHenrietta\nHope\nJewel\nLela\nLillie\nMamie\nMasako\nOlivia\nSuzanne\nWanda\nCamille\nElma\nFumiko\nGeneva\nLorene\nMable\nMargery\nMatilda\nMiyoko\nCarrie\nCecile\nErnestine\nEstelle\nHaruko\nIsabelle\nKazuko\nTheda\nBetsy\nBeverley\nCarmelita\nChiyoko\nDelia\nHarriette\nIola\nJenny\nJudith\nLila\nLinda\nMaude\nMerle\nMitsuko\nRebecca\nRosa\nShizuko\nTrinidad\nAugusta\nElsa\nEugenia\nFaye\nGail\nGeorgina\nJoy\nJulie\nLula\nMarjory\nVivienne\nAyako\nCleo\nDelfina\nFrancis\nGeorgette\nHannah\nHelena\nJuana\nKatharine\nMadeleine\nMercedes\nNeva\nOra\nPaula\nAdelaide\nAlicia\nArline\nClarice\nClaudia\nDelphine\nDominga\nEdwina\nElise\nElvera\nFannie\nHortense\nIone\nIris\nJudy\nKatie\nLee\nLeola\nManuela\nMarcia\nNatalie\nNettie\nPat\nRae\nSelma\nShizue\nTeruko\nTomiko\nWilda\nYolanda\nAlthea\nAna\nAurelia\nBeryl\nChristina\nCornelia\nEula\nEvangeline\nFumi\nGeorgene\nIvy\nJayne\nJewell\nJosie\nLeota\nLorena\nMadge\nMarcelle\nMarianne\nMarietta\nMichiko\nMollie\nNola\nPriscilla\nSachiko\nValerie\nVeronica\nYoneko\nAngeline\nAvis\nBelle\nCorinne\nCynthia\nDaphne\nDena\nDixie\nDorthy\nErna\nEvalyn\nFerne\nFusaye\nGwen\nIla\nImogene\nJoanne\nKiyoko\nLeora\nLoraine\nLynn\nMarilyn\nMarvel\nMiyeko\nMyra\nNathalie\nNell\nReba\nRegina\nSadie\nSetsuko\nSumiko\nTheodora\nTillie\nVeda\nVerda\nWinnifred\nZelda\nAdela\nAlvera\nAndrea\nBernadine\nCarmel\nCarole\nCatharine\nChizuko\nClare\nClaudine\nConcepcion\nDiana\nDiane\nElinore\nEmilia\nEmilie\nErlinda\nEstella\nFrancine\nGeorgiana\nHanako\nHattie\nJerry\nJuliet\nKimiko\nLeila\nLenora\nLeonora\nLiberty\nLilly\nLorna\nLuz\nMadelyn\nMarina\nMaudie\nMavis\nMelva\nMillie\nMisao\nMitsuye\nMolly\nNadene\nNatividad\nOlympia\nOna\nPetra\nRefugio\nRhoda\nRosamond\nShizuye\nSocorro\nStephanie\nSusie\nToshiye\nVicenta\nYukiko\nAddie\nAdelle\nAdrienne\nAngelita\nAntonette\nAsako\nBobbie\nBruna\nCarnation\nCathryn\nCharlene\nChiyeko\nClaribel\nCorrine\nDorris\nEda\nElnora\nFaith\nFlossie\nFrancisca\nIona\nIsabell\nIsabella\nIva\nJacquelyn\nJanette\nJanis\nJesus\nJosefina\nKimie\nLea\nLelia\nLeonor\nLeslie\nLora\nLottie\nLou\nMarcelina\nMaybelle\nMayme\nMinerva\nMitsue\nMiye\nMona\nNobuko\nNorine\nPilar\nPolly\nRenee\nThais\nTina\nVesta\nWilla\nWinona\nMary\nDorothy\nHelen\nMargaret\nRuth\nVirginia\nFrances\nBetty\nBarbara\nEvelyn\nAlice\nMarie\nMildred\nJean\nElizabeth\nFlorence\nDoris\nMarjorie\nRose\nEleanor\nJosephine\nLois\nJune\nEsther\nLorraine\nPatricia\nLillian\nGrace\nLucille\nLouise\nJane\nBernice\nCatherine\nIrene\nPhyllis\nThelma\nAnna\nMarian\nEdith\nGladys\nElsie\nHazel\nMartha\nGeraldine\nMarion\nEdna\nJeanne\nNorma\nViolet\nVivian\nKatherine\nMaria\nEthel\nAnn\nPauline\nAnita\nEva\nDolores\nClara\nJuanita\nCharlotte\nRuby\nVera\nAnne\nBeatrice\nRita\nPearl\nGertrude\nLucy\nEllen\nAlma\nShirley\nCarmen\nEmma\nKathryn\nGenevieve\nLupe\nAudrey\nIda\nLaura\nMabel\nEmily\nJennie\nAgnes\nMuriel\nNancy\nJessie\nMaxine\nIsabel\nWilma\nJulia\nMyrtle\nRoberta\nKathleen\nLena\nMarguerite\nViola\nBertha\nNellie\nBette\nJanet\nSarah\nSylvia\nBeverly\nConstance\nMay\nBlanche\nClaire\nGeorgia\nPeggy\nCarol\nEileen\nMadeline\nTheresa\nAdeline\nElaine\nJoan\nAlberta\nAngelina\nGloria\nVictoria\nAnnie\nFlora\nVelma\nAmelia\nOlive\nRosie\nRamona\nHarriet\nDora\nLaverne\nStella\nLola\nRosemary\nMae\nBessie\nCarolyn\nDorothea\nLeona\nJanice\nJeanette\nMinnie\nWinifred\nDonna\nEsperanza\nIrma\nJoyce\nRosalie\nWanda\nFern\nVerna\nSally\nCaroline\nConsuelo\nElva\nElvira\nMiriam\nYoshiko\nBonnie\nCecelia\nCecilia\nMargie\nAurora\nBillie\nConnie\nHope\nAileen\nAnnette\nElla\nErma\nInez\nAdele\nAmy\nAngie\nAntoinette\nElinor\nNadine\nSue\nTeresa\nFumiko\nHilda\nLily\nLoretta\nHelene\nHenrietta\nLucile\nYvonne\nCelia\nFaye\nJacqueline\nJeannette\nMelba\nLydia\nMamie\nMarcella\nMargery\nOlga\nSara\nSusan\nAngela\nChristine\nDaisy\nGuadalupe\nMarilyn\nArlene\nEleanore\nEunice\nIsabelle\nJewel\nMargarita\nAda\nAlyce\nArline\nCleo\nGwendolyn\nHaruko\nLorene\nRachel\nRebecca\nToshiko\nTrinidad\nBeth\nBeulah\nDella\nIla\nMasako\nAlta\nLila\nMercedes\nMerle\nNatalie\nNina\nOpal\nSusie\nEstelle\nJuana\nKay\nNaomi\nNora\nPaula\nRegina\nAnnabelle\nAntonia\nClare\nEdythe\nEugenia\nFay\nFrieda\nJoy\nKiyoko\nRena\nRosa\nAiko\nCarmel\nCarmelita\nCora\nDolly\nErnestine\nHarriett\nAyako\nChristina\nDelia\nFerne\nGail\nLenore\nLillie\nLuella\nMona\nPriscilla\nShizuko\nAndrea\nBeverley\nClarice\nCorinne\nEloise\nIris\nJosefina\nMadelyn\nMarina\nMatilda\nPetra\nRae\nSadie\nShizue\nBeryl\nBettie\nDawn\nElsa\nGoldie\nKimiko\nLeah\nMarcia\nNell\nSophie\nTillie\nVeronica\nWilda\nYolanda\nAdela\nAdelaide\nCamille\nCarrie\nDelores\nDiana\nElisabeth\nElvera\nEnid\nEvangeline\nGeneva\nHarriette\nJudith\nKatie\nLela\nLoraine\nMarjory\nMaybelle\nMisao\nMyra\nMyrna\nNettie\nSelma\nSuzanne\nBenita\nBernadette\nBernadine\nCatalina\nChiyoko\nCruz\nDiane\nDorris\nEda\nEstella\nEtta\nFreda\nFumiye\nGeorgette\nIvy\nJudy\nLee\nLeola\nLottie\nLucia\nMable\nMarietta\nMitsuko\nReba\nRosemarie\nSocorro\nSoledad\nTeruko\nTomiko\nToshiye\nYaeko\nCarole\nChieko\nChiyeko\nClaudia\nEdwina\nElma\nEmiko\nFannie\nHannah\nHatsuye\nHelena\nHisako\nIsabell\nIva\nJayne\nJosie\nKatharine\nLorena\nMavis\nMollie\nNeva\nNobuko\nOlivia\nRowena\nSadako\nTheodora\nWilhelmina\nWinona\nAdrienne\nAida\nAlva\nAmalia\nAurelia\nBerniece\nCecile\nDominga\nEffie\nElise\nFrancis\nGeorgina\nHortense\nIlene\nJacquelyn\nJohanna\nKikuye\nLilly\nMadeleine\nNona\nSachiko\nTomasa\nToni\nYoshiye\nZelma\nAddie\nAletha\nAlpha\nAmparo\nAna\nBelle\nBetsy\nCeleste\nCharlene\nConcha\nDelfina\nDena\nFelicia\nFlorine\nFrancisca\nFusako\nHiroko\nIone\nJewell\nJovita\nJulie\nKazuko\nKimiye\nKimiyo\nLeota\nLeslie\nLinda\nLolita\nLou\nLouisa\nLuz\nMadge\nMaida\nManuela\nMatsuye\nMaude\nMelva\nMeredith\nMichiko\nMidori\nMitzi\nMolly\nPatsy\nPhoebe\nSumiko\nSybil\nTakako\nValerie\nAdelina\nAkiko\nAlba\nAlda\nAlicia\nAlthea\nArdis\nArmida\nAugustina\nAvis\nBethel\nCarroll\nCornelia\nDixie\nDollie\nDortha\nEldora\nElena\nElisa\nElna\nEloisa\nEmilie\nErlinda\nErminia\nEula\nEulalia\nFrank\nFumi\nGeannie\nGene\nGrayce\nHerlinda\nHortencia\nIgnacia\nImelda\nInes\nKimi\nLavonne\nLeonore\nLetha\nLouella\nLura\nMarcelle\nMariko\nMercy\nMeta\nMiyako\nMiyeko\nMiyoko\nMonica\nNita\nOra\nPhylis\nRenee\nRosalind\nSallie\nSayoko\nSetsuko\nShigeko\nSumi\nSusana\nSydney\nUna\nVelda\nYoneko\nYukiko\nMary\nDorothy\nMargaret\nHelen\nVirginia\nBetty\nRuth\nBarbara\nFrances\nEvelyn\nAlice\nElizabeth\nMarjorie\nDoris\nJean\nMarie\nJune\nMildred\nEleanor\nJosephine\nFlorence\nPatricia\nLois\nRose\nLillian\nLorraine\nJane\nIrene\nPhyllis\nLucille\nMarian\nEdith\nAnna\nLouise\nBernice\nMarion\nEsther\nGeraldine\nEdna\nGrace\nShirley\nNorma\nMaria\nCatherine\nPauline\nCharlotte\nThelma\nGladys\nKatherine\nMartha\nAnn\nJeanne\nBeatrice\nDolores\nElsie\nHazel\nEthel\nGertrude\nEva\nCarmen\nAnita\nJulia\nJuanita\nVivian\nEllen\nMuriel\nRuby\nGenevieve\nEmma\nKathryn\nVera\nKathleen\nClara\nAudrey\nMaxine\nBeverly\nJennie\nRita\nAlma\nGloria\nViola\nMarguerite\nJessie\nLaura\nNancy\nViolet\nIsabel\nAnne\nWilma\nPearl\nAgnes\nElaine\nIda\nJanet\nAngelina\nAnnie\nHarriet\nSarah\nEmily\nVelma\nCarol\nMabel\nNellie\nGeorgia\nBertha\nLupe\nLucy\nRoberta\nBette\nConstance\nDora\nJoan\nWinifred\nRosemary\nLena\nPeggy\nRamona\nJoyce\nBonnie\nJeanette\nStella\nYvonne\nAlberta\nBessie\nVerna\nClaire\nWanda\nRosie\nJacqueline\nTheresa\nVictoria\nConsuelo\nEileen\nEunice\nMay\nMyrtle\nElla\nMae\nNaomi\nOlive\nSylvia\nAntonia\nBlanche\nCarolyn\nJeannette\nSally\nAnnette\nCaroline\nLeona\nMiriam\nDorothea\nLaverne\nLoretta\nBillie\nConnie\nElvira\nFlora\nMargie\nMinnie\nRosalie\nAmelia\nHilda\nErma\nGuadalupe\nInez\nJanice\nLola\nMadeline\nBettie\nOlga\nAda\nSara\nAdeline\nFern\nYoshiko\nAdele\nHenrietta\nLydia\nTeresa\nAurora\nCecilia\nEloise\nEsperanza\nMarcella\nMercedes\nAntoinette\nDella\nAngie\nLila\nMarilyn\nMelba\nBeulah\nGwendolyn\nMargarita\nOpal\nPaula\nAmy\nCecelia\nFay\nJuana\nLucile\nNadine\nAileen\nIrma\nKay\nKiyoko\nRachel\nFrieda\nLily\nNatalie\nCora\nElva\nFumiko\nMargery\nSophie\nArline\nElinor\nHope\nMable\nAngela\nCelia\nElvera\nJoy\nRosa\nSusan\nSusie\nArlene\nChristine\nDonna\nIsabelle\nLenore\nNora\nOlivia\nFaye\nLillie\nAlta\nFreda\nManuela\nPetra\nAdelaide\nBeth\nDaisy\nDolly\nElma\nErnestine\nLinda\nMatilda\nMillie\nMiyoko\nRebecca\nSue\nCarmel\nChristina\nEdythe\nEnid\nEstelle\nEugenia\nFrancisca\nHarriett\nJayne\nMichiko\nYuriko\nCarrie\nEleanore\nJosie\nLee\nMasako\nOra\nRegina\nRena\nSelma\nTillie\nTrinidad\nAngelita\nAurelia\nFrancis\nGeneva\nHelene\nKatharine\nLuella\nMadelyn\nMamie\nMarjory\nMerle\nNina\nPatsy\nShizuko\nVeronica\nAlicia\nAlyce\nCatalina\nElena\nGeorgina\nJewell\nJudy\nMarianne\nPriscilla\nCarmelita\nCarolina\nCorinne\nDelores\nElisabeth\nFumi\nIla\nIvy\nLenora\nLouisa\nMarcia\nMavis\nMyra\nSadie\nSocorro\nSuzanne\nValerie\nYasuko\nAdela\nAyako\nBeryl\nFannie\nHideko\nJudith\nKimiko\nLeah\nLoraine\nLorna\nLucia\nLula\nMitsuko\nSheila\nSoledad\nVivienne\nAiko\nAlvina\nAmalia\nAna\nAnnabel\nBeverley\nClarice\nColleen\nDixie\nElise\nEloisa\nEula\nGoldie\nHattie\nIris\nKazuko\nLeila\nLeota\nLuisa\nMartina\nMolly\nMona\nNeva\nRae\nToshiko\nWilda\nZelma\nAnnabelle\nBeatriz\nClare\nCleo\nDiane\nEdwina\nEstella\nFerne\nFrankie\nJeane\nJerry\nJosefina\nLeola\nLorene\nLucie\nMaryann\nMelva\nMisao\nPhoebe\nRosemarie\nSumiko\nAlda\nAvis\nBerniece\nBruna\nCecile\nChiyoko\nClaudia\nConcha\nCruz\nDorthy\nEmilie\nEtta\nFlorine\nFusako\nHannah\nIna\nIone\nIsabell\nIsabella\nJulie\nJuliette\nKatie\nLeonore\nLilly\nLuz\nMarcelle\nMaurine\nMaybelle\nSachiko\nShizuye\nTerry\nTeruko\nVelda\nYoshiye\nZelda\nAntonette\nCamille\nChizuko\nDawn\nDelphine\nEda\nElsa\nEmiko\nEmilia\nEvelyne\nFusaye\nGeorgette\nGregoria\nHatsumi\nHisako\nHortensia\nJewel\nJovita\nKiyo\nLavina\nLeonor\nLora\nMadge\nMargot\nMariana\nMarina\nMatilde\nMidori\nMitsuye\nNelda\nNettie\nNobuko\nNorine\nPilar\nSadako\nShizue\nSonia\nTomasa\nTomiko\nWillie\nYukiko\nAdella\nAlvera\nAva\nBelen\nBernadine\nBlossom\nCarlota\nCarole\nConcepcion\nCynthia\nDiana\nDortha\nEarlene\nEdyth\nElenore\nGene\nGrayce\nHiroko\nHisaye\nHortense\nIva\nJames\nJenny\nJesus\nJoanne\nJohanna\nKatheryn\nKazue\nKikue\nLela\nLeonora\nLorenza\nMadeleine\nMagdalena\nMarye\nMaryjane\nMayme\nMinerva\nNita\nPat\nPaz\nRefugio\nRosella\nRosetta\nVeda\nVesta\nVina\nWinona\nYoneko\nAletha\nAlthea\nAmanda\nAndrea\nAngeline\nAugustina\nBernadette\nBetsy\nChiyeko\nClaudine\nCrystal\nDelfina\nErminia\nEster\nEvalyn\nFaith\nFumie\nGemma\nGeorgiana\nGermaine\nHaruko\nHatsuko\nHerminia\nIlene\nIola\nJo\nJoanna\nKaoru\nKate\nKathrine\nKimiye\nLaurel\nLeone\nLeslie\nLidia\nLorena\nLottie\nLucretia\nMargarite\nMarge\nMari\nMarylouise\nMaureen\nMeredith\nMicaela\nMillicent\nNatalia\nNicolasa\nNola\nPolly\nReba\nRenee\nReva\nRhoda\nRosalind\nRowena\nSakaye\nSandra\nSatsuki\nShizu\nSybil\nTazuko\nTheda\nTheodora\nTina\nToshiye\nToyoko\nTsuyako\nUrsula\nWilhelmina\nYolanda\nYuri\nZella\nZoe\nMary\nDorothy\nBetty\nHelen\nMargaret\nVirginia\nBarbara\nRuth\nFrances\nMarjorie\nEvelyn\nAlice\nJean\nElizabeth\nJune\nMarie\nDoris\nPatricia\nMildred\nEleanor\nFlorence\nJosephine\nLorraine\nRose\nLois\nPhyllis\nLillian\nLucille\nShirley\nIrene\nCatherine\nJane\nEsther\nGrace\nNorma\nLouise\nAnna\nPauline\nBernice\nMarion\nGeraldine\nMaria\nEdith\nMartha\nMarian\nCarmen\nJeanne\nGladys\nKatherine\nGloria\nEdna\nJuanita\nAnita\nThelma\nVivian\nDolores\nBeatrice\nElsie\nAnn\nElaine\nEthel\nKathleen\nAudrey\nHazel\nMaxine\nNancy\nRita\nVera\nEva\nBeverly\nJennie\nJulia\nLaura\nGertrude\nViola\nCharlotte\nMuriel\nRuby\nBette\nGenevieve\nLucy\nViolet\nConstance\nEmma\nLupe\nMabel\nClara\nIsabel\nWinifred\nAnnie\nIda\nMarguerite\nAgnes\nNellie\nPeggy\nDora\nAnne\nEmily\nKathryn\nSarah\nEileen\nPearl\nWilma\nAngelina\nEllen\nLena\nCarol\nJanet\nMyrtle\nRoberta\nVelma\nCarolyn\nJoyce\nAlma\nTheresa\nJessie\nMargie\nRosie\nHarriet\nRosemary\nVerna\nBertha\nJoan\nLeona\nRamona\nVictoria\nBessie\nClaire\nGeorgia\nJacqueline\nConsuelo\nAlberta\nSylvia\nYvonne\nInez\nLaverne\nMiriam\nCaroline\nDonna\nJeanette\nStella\nBonnie\nElvira\nLydia\nSally\nAntonia\nConnie\nOlga\nAdeline\nBlanche\nJanice\nMadeline\nSara\nElla\nMay\nWanda\nLola\nAurora\nFlora\nMinnie\nTeresa\nAmelia\nHenrietta\nMae\nOlive\nLily\nRosalie\nBettie\nEunice\nErma\nNatalie\nAdele\nAmy\nAngie\nElinor\nYoshiko\nBillie\nHilda\nEloise\nFern\nMarilyn\nNadine\nNaomi\nHope\nMargarita\nMelba\nAda\nAnnette\nKiyoko\nMargery\nDorothea\nJeannette\nAngela\nCelia\nGwendolyn\nLila\nEsperanza\nGuadalupe\nMable\nMasako\nArlene\nBeulah\nCecilia\nShizuko\nAntoinette\nEugenia\nIrma\nJoy\nKay\nMarcella\nRosa\nSophie\nChristine\nRebecca\nAileen\nBeth\nFaye\nIsabelle\nLucile\nNina\nOpal\nPetra\nToshiko\nErnestine\nLoretta\nMarjory\nMercedes\nElma\nElva\nJuana\nLenore\nMerle\nRachel\nSocorro\nSusan\nSuzanne\nAlta\nBeverley\nDella\nEleanore\nHelene\nIris\nPaula\nChiyoko\nEmiko\nEstelle\nFumiko\nJosie\nLilly\nNeva\nSue\nSusie\nZelda\nCatalina\nCora\nElena\nEnid\nEstella\nHarriett\nKatharine\nManuela\nMichiko\nMitsuko\nNora\nSumiko\nAdelaide\nElvera\nFay\nJewel\nLeila\nMolly\nNettie\nRena\nAndrea\nDaisy\nDelia\nFreda\nLinda\nMadelyn\nOlivia\nTillie\nTrinidad\nAdela\nArline\nAvis\nBeryl\nCarmel\nCarrie\nCecelia\nConcha\nDelores\nDiana\nDolly\nEdythe\nFrancisca\nJosefina\nJudith\nLillie\nLorena\nMagdalena\nMatilda\nMidori\nMitsuye\nMollie\nPriscilla\nRegina\nShizuye\nTheodora\nYolanda\nAdrienne\nBernadine\nCarmelita\nCarolina\nClarice\nCorinne\nEffie\nEldora\nEvangeline\nFrancis\nFrieda\nGeorgette\nGwen\nLeola\nMamie\nPhoebe\nRowena\nYoshiye\nAlyce\nAngelita\nBettye\nElisabeth\nEmilia\nFumi\nGeneva\nIla\nIone\nJayne\nLorna\nLuella\nMadeleine\nMarcelle\nMarianne\nMarina\nMaryjane\nMisao\nTomiko\nWilda\nYuriko\nAlicia\nAmparo\nAnnabelle\nCecile\nChizuko\nChristina\nConcepcion\nCruz\nDelfina\nDelphine\nEda\nEiko\nElisa\nErna\nFelicitas\nGail\nGene\nGoldie\nHarriette\nLavonne\nLorene\nLouisa\nMarcia\nMaureen\nMona\nMyra\nNelda\nNobuko\nNoreen\nRosamond\nSadie\nSelma\nTerry\nValerie\nVeronica\nZelma\nAida\nAlbertina\nAllene\nAlvera\nAyako\nBernadette\nCamille\nClare\nClaudia\nCleo\nColleen\nDawn\nDixie\nDorris\nEtta\nEula\nHerminia\nIva\nJackie\nJesus\nJewell\nJo\nJulie\nJuliette\nLeah\nLoraine\nMariko\nMavis\nPatsy\nRae\nRosemarie\nSachiko\nTeruko\nVerda\nAddie\nAmalia\nAna\nBelle\nBetsy\nCarole\nCornelia\nElinore\nElise\nFaith\nHisako\nHortense\nHortensia\nIlene\nImogene\nIvy\nJacquelyn\nJovita\nKaoru\nLeslie\nLeta\nMarilynn\nMaurine\nMeredith\nNona\nRhoda\nShigeko\nToshi\nYaeko\nAiko\nAlda\nBlossom\nCatharine\nCharlene\nChiyeko\nClarissa\nClaudine\nCynthia\nDena\nDoreen\nDorthy\nEdyth\nElda\nElna\nElsa\nFlorine\nFusako\nGeorgina\nHideko\nHortencia\nIna\nJoanne\nKaye\nKazue\nKimiko\nLenora\nLeonor\nLeonora\nLottie\nLucia\nLuisa\nLula\nMadge\nMarietta\nMasaye\nMaybelle\nMiyoko\nRosalia\nSoledad\nSumiye\nThais\nTina\nToyoko\nVida\nYasuko\nAkiko\nAurelia\nBelen\nBenita\nBerniece\nBobbie\nBruna\nCarmella\nCorrine\nDaphne\nDominga\nEdwina\nEloisa\nEmilie\nFelipa\nFumiye\nFusaye\nGayle\nGlenna\nJan\nJoann\nJosefa\nJudy\nLee\nLela\nLeora\nLidia\nLolita\nLora\nLynn\nMartina\nMatilde\nMillie\nMitsue\nNedra\nNell\nReba\nReva\nRosalind\nRuthe\nSadako\nSharon\nSheila\nShizue\nSophia\nSybil\nTakako\nVeda\nVesta\nWillie\nWinona\nYoshie\nAbbie\nAlva\nAlvina\nBeatriz\nBerta\nBonita\nCandelaria\nCarmela\nDelphina\nDina\nDollie\nElayne\nErlinda\nErminia\nEvalyn\nFerne\nGeorgene\nGina\nHana\nHattie\nJenny\nJoaquina\nJohn\nKathryne\nKatie\nKikuye\nKimi\nKiyo\nLina\nLivia\nMadalyn\nMargo\nMarvel\nMarylou\nMarylouise\nMerilyn\nMichi\nMillicent\nMiyeko\nNada\nNatividad\nNila\nNorine\nOfelia\nOphelia\nPalma\nPat\nRaquel\nRosalee\nRosaline\nRosalyn\nRosella\nSallie\nSetsuko\nTokie\nTomasa\nToshiye\nTrini\nVelda\nVivienne\nYoshi\nYuki\nYukiko\nMary\nDorothy\nBetty\nMargaret\nHelen\nBarbara\nVirginia\nFrances\nRuth\nMarjorie\nElizabeth\nAlice\nEvelyn\nJean\nPatricia\nDoris\nJune\nMarie\nFlorence\nJosephine\nGloria\nEleanor\nMildred\nPhyllis\nLorraine\nRose\nLois\nShirley\nLillian\nIrene\nJane\nGrace\nLucille\nLouise\nEsther\nCatherine\nBernice\nMarian\nGladys\nDolores\nGeraldine\nNorma\nAnna\nJeanne\nKatherine\nEdith\nCarmen\nMarion\nBeatrice\nEdna\nBeverly\nThelma\nMaria\nElsie\nMartha\nPauline\nAnn\nNancy\nJuanita\nEthel\nLupe\nMarilyn\nElaine\nAudrey\nVivian\nAnita\nKathryn\nBette\nGertrude\nAnne\nCharlotte\nRuby\nEva\nJulia\nClara\nMuriel\nJessie\nRita\nHazel\nNellie\nVera\nGenevieve\nMarguerite\nViolet\nLaura\nKathleen\nJennie\nPeggy\nViola\nLucy\nJacqueline\nRoberta\nIsabel\nEllen\nEmma\nBertha\nPearl\nCarol\nJoan\nConstance\nJanet\nEmily\nAlma\nIda\nWilma\nCarolyn\nDora\nMaxine\nRosemary\nMyrtle\nRosalie\nSarah\nHarriet\nLena\nAnnie\nClaire\nEileen\nMargie\nAgnes\nWanda\nWinifred\nAngelina\nGeorgia\nJoyce\nMay\nConsuelo\nLaverne\nMabel\nDonna\nSylvia\nRosie\nAmelia\nAlberta\nLeona\nTheresa\nVerna\nYvonne\nBonnie\nMadeline\nJeanette\nOlga\nVelma\nCaroline\nNadine\nLola\nVictoria\nMae\nStella\nBlanche\nFlora\nSally\nBessie\nMinnie\nOlive\nAntonia\nElvira\nLydia\nNaomi\nTeresa\nBettie\nFern\nMargarita\nElla\nMiriam\nRamona\nGuadalupe\nHope\nJeannette\nAdeline\nAnnette\nConnie\nLily\nAurora\nCelia\nAntoinette\nBillie\nElva\nLila\nAngie\nCecilia\nEsperanza\nEunice\nInez\nLoretta\nDorothea\nGwendolyn\nHilda\nIsabelle\nAda\nDaisy\nMargery\nMelba\nEloise\nJanice\nMarcella\nRachel\nHenrietta\nIrma\nSara\nAngela\nArlene\nMasako\nNatalie\nToshiko\nYoshiko\nCorinne\nErma\nMamie\nMarilynn\nPaula\nAdele\nAmy\nFaye\nJosefina\nEleanore\nElinor\nEmiko\nKay\nSophie\nAileen\nAnnabelle\nArline\nPriscilla\nBeverley\nDella\nJewel\nJoy\nMatilda\nMerle\nRebecca\nGeneva\nHelene\nJuana\nLucile\nRosa\nVeronica\nAlta\nBeulah\nCecelia\nChristine\nCora\nDiana\nDolly\nLenore\nMable\nNina\nNora\nPetra\nSadie\nSusie\nCarmelita\nConcha\nErnestine\nHarriett\nIris\nKiyoko\nLillie\nLoraine\nLorna\nYolanda\nAlyce\nBeth\nCarole\nCatalina\nElma\nFrancis\nLorene\nMercedes\nMitsuko\nMyra\nPatsy\nCleo\nEstelle\nHaruko\nIna\nJacquelyn\nJudith\nLucia\nMarcia\nMarjory\nOpal\nRae\nRosalind\nSocorro\nSusan\nYuriko\nAlicia\nAngelita\nCarrie\nClare\nColleen\nDoreen\nElsa\nFay\nMarianne\nMichiko\nMiyoko\nRosario\nSumiko\nBernadette\nChiyoko\nEda\nEdythe\nElena\nLuella\nManuela\nNettie\nNeva\nNobuko\nOlivia\nRegina\nWilla\nAmalia\nAntonette\nBetsy\nBettye\nCamille\nClaudia\nDixie\nElvera\nFumiko\nGoldie\nKimiko\nLenora\nSue\nTrinidad\nWinona\nYoshiye\nAmparo\nAndrea\nClarice\nCynthia\nEdwina\nElisa\nEmilia\nFaith\nFrieda\nJewell\nMavis\nMidori\nMolly\nPat\nPolly\nSachiko\nSheila\nSoledad\nTheodora\nWilda\nYoneko\nAiko\nAugustina\nCruz\nElisabeth\nEloisa\nEnid\nEugenia\nEvangeline\nFannie\nFrancisca\nGail\nGeorgette\nHideko\nHisako\nIla\nJulie\nLeah\nLeila\nLottie\nMadelyn\nMagdalena\nMelva\nMollie\nRenee\nRosemarie\nSelma\nSetsuko\nSuzanne\nAdela\nAdelaide\nBernadine\nChristina\nDorthy\nIlene\nJayne\nJerry\nJosie\nKatie\nLinda\nLouisa\nLuisa\nLuz\nMarge\nMaryann\nMisao\nNelda\nTillie\nAida\nAyako\nCarmel\nCarolina\nCatharine\nDiane\nEffie\nErnestina\nFreda\nHortencia\nIsabell\nKatharine\nKazuko\nLee\nLela\nLorena\nMargret\nMaryjane\nMarylou\nShizue\nShizuko\nTerry\nWinnifred\nAlthea\nAna\nAngeline\nBeryl\nBobbie\nCarlota\nCarmela\nCharlene\nChiyeko\nChizuko\nConcepcion\nDelphine\nEnriqueta\nEstella\nFumiye\nGeorgiana\nGeorgina\nHarriette\nHaruye\nImogene\nIsabella\nJoanne\nJudy\nJuliette\nKikuye\nLeola\nLeota\nLilia\nLynn\nMaggie\nMariana\nMarina\nMaureen\nMinerva\nMona\nPeggie\nPenelope\nPhoebe\nPrudence\nRena\nTeruko\nVeda\nVerda\nAdrienne\nAlvina\nArdis\nArleen\nAvis\nBeatriz\nChieko\nClaudine\nCornelia\nDaphne\nDelfina\nDelores\nElda\nEnes\nEtta\nEula\nEvelyne\nFusako\nHortense\nHortensia\nIgnacia\nJanis\nJeane\nJenny\nJoann\nKazue\nLeonor\nLeslie\nLeta\nLilly\nLora\nLula\nMadeleine\nMasaye\nMattie\nMaurine\nMayme\nMerilyn\nMerry\nMitsuye\nOllie\nOra\nRhoda\nRobert\nRobin\nRosella\nRosetta\nSantos\nShirlee\nShizuye\nValentina\nViolette\nVivienne\nYukiko\nZelda\nZella\nAdella\nAimee\nAkiko\nAlexandria\nAudree\nBebe\nBerneice\nBerniece\nBruna\nCharlyne\nDarlene\nDominga\nDona\nElinore\nEmilie\nEster\nEvalyn\nFelicitas\nFlorine\nFrancine\nFujiko\nGayle\nGene\nGerry\nGrayce\nHannah\nHattie\nHelyn\nHerlinda\nIona\nIvy\nJanette\nJosefa\nJustine\nKaoru\nKathlyn\nKimi\nKimiye\nKimiyo\nLavern\nLeone\nLetha\nLidia\nLina\nLura\nMarcelle\nMari\nMariko\nMarylee\nMarylouise\nMaybelle\nMelvina\nMiyeko\nMonica\nNatalia\nNell\nNoreen\nOfelia\nOphelia\nPalma\nPatti\nRoma\nRosalyn\nRoselyn\nSakaye\nSandra\nShigeko\nSimona\nSofia\nSumiye\nSybil\nTamiko\nTina\nTomasa\nToshiye\nTsuyako\nValerie\nVerla\nVernice\nVida\nYaeko\nYasuko\nYayeko\nYuri\nMary\nBetty\nDorothy\nBarbara\nMargaret\nHelen\nVirginia\nRuth\nFrances\nPatricia\nMarjorie\nAlice\nJean\nElizabeth\nEvelyn\nMarie\nDoris\nShirley\nEleanor\nJune\nGloria\nJosephine\nLois\nFlorence\nLorraine\nPhyllis\nRose\nMildred\nMaria\nNorma\nLillian\nEsther\nDolores\nCarmen\nLucille\nIrene\nMarian\nBernice\nGrace\nThelma\nCatherine\nAnna\nLouise\nJeanne\nGeraldine\nBeverly\nMarilyn\nPauline\nMartha\nJane\nKatherine\nEdith\nMarion\nEdna\nCharlotte\nVivian\nNancy\nBeatrice\nHazel\nElsie\nGladys\nAnn\nAnita\nLaura\nJuanita\nEthel\nJacqueline\nAudrey\nMaxine\nBette\nEva\nLupe\nElaine\nRuby\nMuriel\nRita\nKathleen\nKathryn\nGertrude\nJennie\nLucy\nCarol\nConsuelo\nJulia\nViolet\nVera\nClara\nEmma\nJessie\nWilma\nAgnes\nNellie\nPeggy\nAnne\nJoyce\nIsabel\nJoan\nRoberta\nSarah\nEllen\nEileen\nAngelina\nRosemary\nJanet\nGenevieve\nPearl\nRosie\nConstance\nEmily\nIda\nWinifred\nAnnie\nLaverne\nMarguerite\nCarolyn\nWanda\nRamona\nBonnie\nMabel\nSylvia\nViola\nDora\nVelma\nAlberta\nYvonne\nMargie\nBertha\nAlma\nTheresa\nInez\nLena\nAurora\nClaire\nAmelia\nElvira\nStella\nBessie\nJeanette\nNadine\nVictoria\nDonna\nJanice\nMadeline\nConnie\nLeona\nSally\nBettie\nLola\nGuadalupe\nGeorgia\nMay\nMyrtle\nHarriet\nMae\nLila\nRosa\nLily\nLydia\nBlanche\nEsperanza\nLoretta\nMargarita\nMiriam\nOlga\nAdeline\nAntonia\nTeresa\nVerna\nEloise\nRosalie\nCecilia\nFlora\nMarcella\nArlene\nCelia\nJoy\nAdele\nHenrietta\nPaula\nAngie\nRachel\nSara\nChristine\nElla\nEunice\nOlive\nYoshiko\nAileen\nColleen\nErnestine\nLinda\nMargery\nOpal\nAda\nCecelia\nLucile\nMinnie\nDorothea\nMelba\nNaomi\nDelores\nFern\nMercedes\nPetra\nPriscilla\nSuzanne\nAngela\nAntoinette\nCaroline\nElinor\nErma\nHilda\nRebecca\nBeverley\nJeannette\nNora\nSophie\nToshiko\nArline\nGwendolyn\nHope\nIrma\nMarilynn\nNina\nCora\nElva\nHarriett\nMerle\nBeulah\nDoreen\nIris\nLorene\nSocorro\nDolly\nEleanore\nSusan\nAnnabelle\nEstelle\nFay\nGeorgette\nJewel\nTillie\nYolanda\nBillie\nCarole\nEmiko\nJuana\nKiyoko\nNatalie\nShizuko\nAlyce\nAnnette\nAurelia\nEugenia\nFumiko\nJosefina\nLeah\nLuella\nRena\nYuriko\nAmy\nDaisy\nElena\nElma\nElvera\nFaye\nJesus\nKatharine\nKay\nMarcia\nRosemarie\nSusie\nClarice\nGerry\nJacquelyn\nLorna\nManuela\nMarianne\nMolly\nTomiko\nAlta\nConcepcion\nConcha\nEnid\nFrieda\nHisako\nIsabelle\nLaurel\nLillie\nMasako\nMatilda\nMidori\nMyra\nPatsy\nAiko\nAna\nCarrie\nDelfina\nEdythe\nElsa\nHarriette\nJoanne\nLee\nLenore\nLucia\nMichiko\nOlivia\nPat\nRowena\nVeronica\nCarolina\nCatalina\nChristina\nClare\nCorinne\nDiana\nGeorgina\nHelene\nKimiko\nMavis\nMelva\nSoledad\nTrinidad\nAlicia\nAngelita\nBeth\nCamille\nCarmel\nCarmelita\nCleo\nDella\nFreda\nGeneva\nIna\nJudith\nJudy\nLenora\nMaurine\nMona\nSachiko\nShirlee\nSue\nAmalia\nBettye\nCynthia\nErlinda\nEstella\nHaruye\nJayne\nLeslie\nLilly\nMagdalena\nMarina\nMarjory\nMitsuko\nOfelia\nSelma\nWilda\nYoneko\nAndrea\nBerniece\nChiyoko\nChizuko\nClaudia\nFrancisca\nGene\nHideko\nHortense\nIsabell\nMable\nMadelyn\nMaureen\nNatividad\nPolly\nSumiko\nValerie\nVeda\nBobbie\nCecile\nCornelia\nDiane\nFrancis\nHortensia\nJewell\nKate\nKazuko\nLeatrice\nLorena\nLottie\nMadeleine\nMadge\nMaryann\nSadie\nSandra\nTeruko\nAdelina\nBeryl\nBeverlee\nCarlota\nCruz\nCrystal\nDawn\nEmilia\nEvangeline\nGeorgiana\nGlenna\nGoldie\nJulie\nLeila\nLeonor\nLouisa\nMamie\nMariko\nMillicent\nMiyoko\nNeva\nPhoebe\nRae\nRosalind\nTomasa\nToni\nUrsula\nVivienne\nYasuko\nAdelaide\nAdrienne\nAmparo\nAvis\nAyako\nCharlene\nDelia\nDixie\nEldora\nEmilie\nEnriqueta\nEvalyn\nFlorine\nFrankie\nFusako\nGail\nGrayce\nHerlinda\nIla\nIone\nIva\nJo\nJohn\nJosie\nJuliet\nLavonne\nLora\nLoraine\nMarcelina\nMargarette\nMarietta\nMarybelle\nMattie\nNan\nNelda\nNettie\nNona\nOphelia\nOra\nPatty\nRenee\nRhoda\nRosario\nSallie\nWilla\nYaeko\nYoshiye\nYukiye\nAdela\nAllene\nArmida\nBeatriz\nBebe\nBillee\nBruna\nCamilla\nCarmela\nChiyeko\nDaphne\nDorris\nEda\nEffie\nElda\nElisa\nEulalia\nFaith\nFelicitas\nFumi\nGayle\nHannah\nHerminia\nImogene\nJenny\nLaverna\nLela\nLeota\nMaryellen\nMerry\nMina\nMitsuye\nMollie\nNell\nNita\nRafaela\nRegina\nSharon\nTerry\nTosca\nVelda\nWilhelmina\nYuri\nAbbie\nAkiko\nAlda\nAlvina\nAngel\nBecky\nBelen\nBelva\nBetsy\nBlossom\nCarmella\nDale\nDollie\nEarline\nEiko\nElnora\nEster\nEtta\nEula\nFannie\nGilda\nGwen\nHester\nJanis\nJeannie\nKatheryn\nKatie\nKiyo\nLeola\nLeonora\nLilia\nLuana\nMarcelle\nMarge\nMartina\nMatilde\nMayme\nMelvina\nMercy\nMillie\nMisako\nMisao\nMitzi\nNobuko\nPamela\nPansy\nShizue\nShizuye\nSilvia\nTheodora\nToshiye\nVerda\nYoshie\nAlbina\nAlva\nAngeline\nAntonette\nAntonio\nArdath\nBelia\nBella\nBelle\nBernadette\nBernadine\nBerta\nCarolyne\nCarroll\nCathleen\nCelestine\nCharline\nChieko\nConcetta\nDelphina\nDelphine\nDena\nDominga\nEarlene\nElenore\nElinore\nEloisa\nEmelia\nErna\nEstela\nFelipa\nFerne\nFusaye\nGeorgianna\nGinger\nGregoria\nHanako\nHelena\nHilaria\nHiroko\nHisaye\nHolly\nInes\nIola\nIvy\nJackie\nJacklyn\nJanette\nJeane\nJoann\nJuliette\nKazuye\nKimi\nLavon\nLetha\nLotus\nLula\nLuz\nMadalyn\nMargret\nMarna\nMaryjane\nMarylouise\nMasae\nMaudie\nMerilyn\nMeta\nMicaela\nMieko\nNatalia\nPatti\nPaulina\nRefugio\nRosina\nSabina\nSheila\nSonia\nSumiye\nSuzan\nSybil\nTrini\nWinnifred\nWinona\nYukiko\nZelma\nZoe\nMary\nBetty\nDorothy\nBarbara\nHelen\nMargaret\nVirginia\nPatricia\nRuth\nFrances\nMarjorie\nJean\nDoris\nAlice\nShirley\nEvelyn\nElizabeth\nLois\nGloria\nJune\nEleanor\nMarie\nMildred\nLorraine\nJosephine\nFlorence\nPhyllis\nMaria\nRose\nNorma\nIrene\nEsther\nBeverly\nLillian\nMarian\nGrace\nLucille\nLouise\nMarilyn\nCarmen\nMarion\nGeraldine\nDolores\nJane\nBernice\nJeanne\nAnna\nCatherine\nMartha\nJacqueline\nBeatrice\nEdith\nPauline\nEva\nElaine\nEdna\nJuanita\nCarol\nNancy\nAnita\nAudrey\nJoyce\nVivian\nGladys\nAnn\nEthel\nVera\nMaxine\nKatherine\nElsie\nThelma\nLaura\nPeggy\nKathleen\nRuby\nLucy\nCharlotte\nJoan\nJulia\nViolet\nRita\nLupe\nJessie\nKathryn\nJennie\nHazel\nIda\nCarolyn\nBette\nViola\nIsabel\nClara\nConsuelo\nEmma\nDora\nEileen\nRoberta\nGertrude\nEmily\nRosemary\nBertha\nWanda\nAgnes\nAnne\nDonna\nElvira\nEllen\nRosie\nWilma\nLaverne\nMuriel\nNellie\nGenevieve\nSally\nClaire\nAngelina\nAnnie\nSarah\nStella\nMarguerite\nJanet\nConstance\nPearl\nAurora\nGeorgia\nBonnie\nHarriet\nRamona\nMargie\nSylvia\nBettie\nYvonne\nMabel\nConnie\nJanice\nVictoria\nLena\nRosalie\nNadine\nRosa\nLeona\nJeanette\nTheresa\nMay\nCelia\nOlga\nAntonia\nVerna\nAlberta\nAmelia\nMadeline\nSara\nAlma\nElinor\nLydia\nBlanche\nLola\nBessie\nFlora\nHenrietta\nMargarita\nMyrtle\nTeresa\nVelma\nMae\nOlive\nRachel\nInez\nNaomi\nCaroline\nElla\nJeannette\nAmy\nAngie\nBillie\nLoretta\nWinifred\nJoy\nEsperanza\nFern\nIrma\nLila\nLily\nAda\nColleen\nMiriam\nPatsy\nAileen\nAntoinette\nGwendolyn\nSocorro\nCatalina\nGuadalupe\nHilda\nHope\nMargery\nMinnie\nRebecca\nSophie\nAdeline\nEunice\nJosefina\nMercedes\nArlene\nCecilia\nCorinne\nJacquelyn\nLinda\nYoshiko\nCecelia\nErma\nIris\nMarcia\nMelba\nAnnabelle\nAnnette\nCora\nPriscilla\nSuzanne\nAdele\nAlicia\nDaisy\nDorothea\nErnestine\nPaula\nYolanda\nBeulah\nDoreen\nJuana\nAlta\nAngela\nMarcella\nSusan\nChristine\nElena\nNora\nShirlee\nDelores\nElva\nIsabelle\nMarilynn\nBeverley\nKay\nNatalie\nNina\nOpal\nTillie\nAiko\nDolly\nEstella\nHelene\nLorene\nOfelia\nPetra\nToshiko\nTrinidad\nAmalia\nDelia\nEleanore\nJewel\nLucile\nManuela\nMasako\nDella\nEdythe\nElisa\nLenore\nLillie\nBeth\nCarolina\nCarrie\nHortense\nJoanne\nJosie\nKiyoko\nLeah\nLenora\nMolly\nNettie\nPat\nAndrea\nAngelita\nCharlene\nDiana\nEloise\nGeorgette\nLuz\nOlivia\nSheila\nClaudia\nEugenia\nEvangeline\nLeatrice\nLoraine\nRena\nSoledad\nSue\nAmparo\nCarmel\nEtta\nFumiko\nHortensia\nIva\nJo\nLela\nRosario\nTheodora\nVelia\nAdela\nAna\nConcha\nHaruko\nJackie\nJovita\nKatharine\nLee\nLorna\nMerle\nMichiko\nMiyoko\nMyra\nRegina\nSelma\nSusie\nTerry\nValerie\nAlyce\nAyako\nBernadette\nBeryl\nChristina\nDiane\nElvera\nEstelle\nHarriett\nJenny\nJudith\nKimiko\nLeila\nLilly\nLouisa\nLuella\nMable\nMadelyn\nMarjory\nMelva\nOphelia\nAdelina\nBettye\nBruna\nCarmelita\nClarice\nCleo\nConcepcion\nEmiko\nFannie\nFay\nFaye\nFreda\nGeneva\nIla\nImogene\nIsabell\nJoann\nLeola\nLeora\nMaybelle\nRosemarie\nSachiko\nSadie\nShizuko\nSumiko\nCynthia\nDarlene\nDixie\nFrancisca\nGene\nHideko\nJeane\nJerry\nLaurel\nLeslie\nMamie\nMatilda\nMitsuko\nNelda\nZelda\nAugustina\nDelphine\nElsa\nFrieda\nGail\nHelena\nJanis\nJohn\nJulie\nJuliet\nJuliette\nLuisa\nMadeleine\nMarianne\nMariko\nMaureen\nMercy\nMillie\nMisao\nMona\nNeva\nNobuko\nSybil\nToni\nWilda\nAdrienne\nArline\nAurelia\nBelen\nBlossom\nCamille\nCarmela\nChiyoko\nElisabeth\nEmilie\nFrancis\nGeorgina\nGoldie\nGrayce\nIna\nJudy\nKazuko\nLolita\nLorena\nMagdalena\nMaryann\nMaryjane\nMerilyn\nRosaline\nVerda\nWinona\nYukiko\nAdelaide\nAkiko\nArdis\nArleen\nDaphne\nEffie\nElise\nEloisa\nEmilia\nFaith\nFelicitas\nGeorgiana\nGregoria\nIone\nJoanna\nLeonor\nLucia\nMaggie\nMillicent\nNorine\nPhoebe\nRae\nRafaela\nRuthe\nSadako\nShizue\nVeronica\nVivien\nAline\nArmida\nAvis\nBernadine\nBerta\nCelestine\nCorrine\nDawn\nDenise\nDollie\nDorris\nEdwina\nElma\nErlinda\nFrancine\nGerry\nGlenna\nGwen\nHerlinda\nHisako\nJayne\nKatie\nLauretta\nLula\nMarilouise\nMicaela\nMidori\nMiyo\nMollie\nOra\nRefugio\nRhoda\nRosalia\nShirlie\nSophia\nTina\nTomiko\nVicenta\nWinnifred\nAngeline\nAnnabell\nArdith\nBetsy\nBobbie\nCarole\nChiyeko\nClotilde\nCornelia\nCruz\nDana\nDina\nErnestina\nEve\nFumi\nGeorgie\nHarriette\nHattie\nIleen\nJesus\nLeta\nLora\nLottie\nLucretia\nLynn\nMarcheta\nMarietta\nMarina\nMarvel\nMaurine\nMitsuye\nNaoma\nNita\nNoreen\nPilar\nReba\nRobert\nRosalyn\nSantos\nSharon\nShigeko\nSofia\nSusana\nTomasa\nVelda\nWilla\nWinnie\nYoshiye\nAlbertina\nArdath\nAsako\nAugusta\nBebe\nBenita\nCecile\nChizuko\nClare\nDale\nDelfina\nDelma\nDorthy\nElda\nEnes\nEnid\nEstela\nFelipa\nFusaye\nGay\nGayle\nGeorgianna\nGilda\nHanako\nHelyn\nHerminia\nIlene\nJanie\nJeannie\nJohanna\nJustine\nKimiye\nLaurene\nLavon\nLelia\nLetitia\nLilia\nLyla\nMargarite\nMasae\nMerry\nMickey\nMiyeko\nMyrna\nNatividad\nNona\nOtilia\nPamela\nPola\nPolly\nRenee\nRobin\nRomelia\nRosella\nRowena\nSabina\nSonia\nSumi\nTeruko\nTherese\nVida\nWillie\nYasuko\nYuriko\nZoe\nAimee\nAllene\nAlva\nAmanda\nAudre\nBarbra\nBeatriz\nBelia\nCandelaria\nCarlota\nCarlotta\nCarmella\nCaryl\nCecil\nCeleste\nDena\nEiko\nElenor\nElenore\nElidia\nEmmy\nEnriqueta\nErna\nEthyl\nEugenie\nEula\nEvangelina\nEvelyne\nFlorine\nGlenora\nGracie\nGretchen\nHannah\nJewell\nKikuye\nLauraine\nLavonne\nLeota\nLetty\nLina\nLouella\nLura\nMarcelina\nMarcelle\nMarge\nMargret\nMartina\nMarylouise\nMaude\nMavis\nNatalia\nNola\nOllie\nPansy\nPatty\nPaulina\nPenelope\nPhebe\nReyes\nRoma\nRosalind\nRosina\nRosita\nRuthie\nSakaye\nTayeko\nVesta\nVickie\nZella\nZelma\nMary\nBetty\nBarbara\nDorothy\nHelen\nVirginia\nMargaret\nPatricia\nRuth\nGloria\nFrances\nShirley\nJean\nAlice\nDoris\nMarjorie\nJune\nLois\nEvelyn\nElizabeth\nMaria\nLorraine\nMarie\nEleanor\nJosephine\nPhyllis\nBeverly\nMildred\nNorma\nRose\nDolores\nFlorence\nIrene\nMarilyn\nEsther\nCarmen\nMarian\nLillian\nNancy\nLucille\nLouise\nAnna\nJoyce\nMartha\nKatherine\nJeanne\nJane\nJacqueline\nGeraldine\nGrace\nMarion\nPauline\nCarol\nBeatrice\nCatherine\nThelma\nBernice\nJoan\nAnn\nEdith\nJuanita\nPeggy\nAnita\nEva\nAudrey\nElaine\nMaxine\nGladys\nRoberta\nElsie\nEdna\nLaura\nLupe\nSally\nViolet\nVivian\nVera\nLucy\nKathryn\nRita\nBette\nCharlotte\nHazel\nKathleen\nJanet\nAngelina\nJennie\nRuby\nEmma\nJanice\nAnne\nWilma\nDonna\nDora\nEthel\nCarolyn\nConsuelo\nJulia\nClara\nIsabel\nJessie\nGertrude\nBonnie\nWanda\nConstance\nTheresa\nGenevieve\nRosie\nSarah\nViola\nConnie\nEllen\nAnnie\nIda\nRosemary\nBertha\nEileen\nMarguerite\nAlma\nMuriel\nRamona\nStella\nAurora\nSylvia\nClaire\nMargie\nBettie\nPearl\nYvonne\nNellie\nAmelia\nVictoria\nCelia\nLeona\nElvira\nGeorgia\nAgnes\nMay\nHarriet\nEmily\nMargarita\nAlberta\nGuadalupe\nLaverne\nPatsy\nWinifred\nVelma\nFlora\nLola\nJeanette\nLydia\nRosalie\nColleen\nMyrtle\nEsperanza\nLily\nMabel\nArlene\nInez\nLila\nLoretta\nRosa\nMadeline\nNadine\nBillie\nMae\nSocorro\nAntonia\nCorinne\nLena\nVerna\nCecilia\nJoy\nMiriam\nOlga\nPaula\nBlanche\nHenrietta\nTeresa\nBessie\nCaroline\nAngela\nEunice\nHilda\nAileen\nOfelia\nAda\nAdeline\nErma\nNatalie\nGwendolyn\nSara\nIrma\nPat\nRachel\nYoshiko\nAnnette\nBeverley\nFaye\nChristine\nEstelle\nFern\nPetra\nSusan\nSuzanne\nCora\nDorothea\nJeannette\nKay\nLinda\nAdele\nJoanne\nNaomi\nNora\nOlive\nRebecca\nAlta\nCatalina\nErnestine\nIris\nJacquelyn\nMercedes\nSue\nAmy\nElinor\nElla\nMinnie\nAngie\nDarlene\nFrancisca\nHelene\nHope\nNina\nPriscilla\nCecelia\nTillie\nEloise\nJackie\nShirlee\nDaisy\nElena\nEstella\nMarcella\nMelba\nRosemarie\nAlyce\nChristina\nDelia\nDiana\nHarriett\nIsabelle\nAntoinette\nBeulah\nCarole\nDella\nElisa\nFay\nJosefina\nJuana\nMable\nMargery\nSheila\nYolanda\nAlicia\nDelores\nEleanore\nJewel\nLuella\nBeth\nClarice\nDoreen\nGene\nJudy\nMerle\nSophie\nToshiko\nAiko\nArline\nElvera\nJesus\nJosie\nMolly\nOlivia\nSusie\nAmparo\nCarmel\nCarmelita\nConcha\nDelfina\nElva\nEnid\nEugenia\nJo\nLillie\nLorna\nBettye\nCarolina\nFumiko\nHortensia\nJerry\nLaurel\nLoraine\nLucile\nMarcia\nMarianne\nTomasa\nAdrienne\nAngelita\nConcepcion\nDolly\nEtta\nFrancis\nIla\nKiyoko\nLeatrice\nLenora\nLorene\nManuela\nMaryann\nMichiko\nVeronica\nAdela\nAndrea\nCecile\nCleo\nDawn\nFrieda\nGeorgette\nGoldie\nJewell\nLeola\nMamie\nOphelia\nRegina\nRena\nSoledad\nAnnabelle\nCharlene\nHisako\nHortencia\nJenny\nJudith\nLela\nLucia\nMarjory\nMasako\nMidori\nMillicent\nNona\nSandra\nArleen\nCornelia\nDona\nIlene\nImogene\nLee\nLouisa\nLuisa\nMagdalena\nMarilynn\nMatilda\nMavis\nSantos\nTerry\nTrinidad\nAdelaide\nAurelia\nCruz\nFrankie\nJayne\nJoann\nKatie\nLeah\nLenore\nLorena\nMadelyn\nNettie\nNeva\nPaulina\nRae\nSetsuko\nTeruko\nAdelina\nAkiko\nAngeline\nBernadette\nBetsy\nBobbie\nClare\nClaudine\nCorrine\nDixie\nDorris\nEiko\nElenore\nEulalia\nGeorgina\nIna\nJulie\nKazuko\nLaverna\nLavonne\nLidia\nLynn\nMarina\nMiyoko\nMona\nOpal\nRosario\nSadie\nAna\nArmida\nBernadine\nChizuko\nEdythe\nElda\nElma\nEloisa\nEmiko\nErnestina\nEstela\nFreda\nGail\nGeneva\nGeorge\nGwen\nHaruko\nHortense\nIva\nKatharine\nLora\nMadeleine\nMarietta\nMarylou\nMelva\nMercy\nMollie\nNatividad\nNita\nNobuko\nNoreen\nOra\nPatty\nPolly\nRaquel\nRefugio\nShigeko\nSumiko\nSybil\nWilda\nWilla\nWillie\nYuriko\nAleen\nAllene\nBella\nBerniece\nBeverlee\nCarrie\nCathryn\nCeleste\nDenise\nEdwina\nEffie\nElisabeth\nEmilie\nErlinda\nFelipa\nFlorine\nGayle\nHideko\nIsabell\nIvy\nJoanna\nJustine\nLauretta\nLeila\nLeora\nLilly\nLina\nMarylee\nMaybelle\nMitsuko\nMyra\nMyrna\nNanette\nRenee\nRosalind\nSachiko\nSallie\nTheodora\nToni\nWinona\nAida\nAlthea\nAmalia\nAnnamae\nAyako\nBelen\nCarlota\nCarmela\nClaudia\nCrystal\nDiane\nDollie\nDominga\nDorothey\nEda\nEnriqueta\nEster\nFaith\nFumiye\nHattie\nJacquelin\nKimiko\nLea\nLeonor\nLilia\nLolita\nLucretia\nLuz\nMargarite\nMariana\nMickey\nMisao\nNoel\nNola\nPeggie\nRafaela\nRhoda\nRoselyn\nRowena\nSharon\nSofie\nUrsula\nValerie\nVerda\nVida\nWinnifred\nZelma\nAbigail\nAnnabel\nAnnetta\nBenita\nBerta\nBeryl\nChiyeko\nDana\nDelphine\nEarline\nElodia\nElsa\nEmi\nErminia\nEtsuko\nFannie\nFloy\nFumi\nGerry\nGuillermina\nHarriette\nHelena\nHerminia\nHiroko\nJames\nJeane\nJerrie\nJohanna\nJuliette\nKikuye\nKimi\nKitty\nKiyo\nLeonora\nLeonore\nLeta\nLottie\nLou\nLula\nLupie\nMaggie\nMarilynne\nMarta\nMaurine\nMerilyn\nMerry\nMitzi\nMiyeko\nNatalia\nNelda\nRobert\nRuthe\nSadako\nThalia\nTina\nToyoko\nVerla\nWilliam\nYaeko\nYoneko\nZella\nZona\nAddie\nAlbertina\nAlbina\nAline\nAlvera\nAlvina\nArdith\nAsako\nAugusta\nAugustina\nAvis\nBlanca\nCamille\nCarlotta\nCarmella\nChiyoko\nConception\nDagmar\nDahlia\nDale\nDaphne\nDarleen\nDee\nDorene\nDorthy\nEarlene\nElia\nElinore\nEmilia\nEncarnacion\nEnedina\nErna\nEvalyn\nEvangeline\nEvelyne\nFelice\nFreida\nFujiko\nGale\nHaruye\nHerlinda\nIgnacia\nIsabella\nJack\nJanette\nJanis\nJeanie\nJeannie\nJeri\nKaren\nKate\nKikue\nLaurette\nLavina\nLavon\nLouella\nMadge\nMagdalene\nMarcelina\nMargo\nMariko\nMarilee\nMaude\nMaureen\nMaxene\nMeredith\nMinerva\nMiyo\nNannette\nNathalie\nNoemi\nNorine\nPamela\nPatti\nPenny\nRachael\nRebeca\nRobin\nRoma\nRosalee\nRosalia\nRosamond\nRosaura\nRosella\nRufina\nSelma\nSherry\nShirlie\nShizue\nShizuko\nShizuye\nSophia\nSusanna\nSusanne\nThais\nThora\nTomiko\nTomoko\nYayoi\nYukiye\nMary\nBetty\nBarbara\nDorothy\nMargaret\nHelen\nPatricia\nVirginia\nRuth\nShirley\nGloria\nFrances\nJean\nAlice\nDoris\nBeverly\nMarjorie\nLois\nEvelyn\nJune\nMarie\nDolores\nElizabeth\nMaria\nNorma\nJosephine\nMarilyn\nEleanor\nRose\nPhyllis\nJoyce\nIrene\nLorraine\nNancy\nEsther\nMildred\nLillian\nCarmen\nMartha\nFlorence\nLouise\nMarian\nJacqueline\nLucille\nJoan\nGrace\nAnna\nGeraldine\nPauline\nAudrey\nMarion\nBernice\nCarol\nJuanita\nJane\nCatherine\nElaine\nEdith\nJeanne\nCharlotte\nKatherine\nSally\nBeatrice\nElsie\nEthel\nPeggy\nRoberta\nAnn\nLucy\nVera\nGladys\nLupe\nEdna\nThelma\nJulia\nRuby\nEva\nMaxine\nVivian\nDonna\nKathleen\nAnita\nNellie\nRita\nClara\nHazel\nLaura\nRamona\nJennie\nJessie\nRosie\nBonnie\nCarolyn\nIsabel\nKathryn\nWanda\nEllen\nAngelina\nConsuelo\nViolet\nBertha\nEmma\nYvonne\nBette\nConnie\nDora\nWilma\nElvira\nGeorgia\nConstance\nAnnie\nJanet\nMargie\nMuriel\nStella\nViola\nRosemary\nJanice\nGertrude\nAnne\nLaverne\nTheresa\nPat\nEsperanza\nSarah\nAurora\nCelia\nEmily\nPatsy\nAntonia\nClaire\nColleen\nNadine\nGenevieve\nJoanne\nMarguerite\nAgnes\nVelma\nVictoria\nAlma\nEileen\nGuadalupe\nHarriet\nLeona\nLydia\nPaula\nIda\nRosa\nAlberta\nPearl\nSylvia\nBettie\nJeanette\nLola\nMabel\nWinifred\nBillie\nJoy\nMyrtle\nAmelia\nLena\nMay\nRosalie\nMae\nTeresa\nLily\nMiriam\nAileen\nBessie\nJosefina\nMadeline\nRachel\nSara\nSuzanne\nBeverley\nMargarita\nOlga\nPriscilla\nCatalina\nCorinne\nLinda\nCaroline\nElla\nInez\nJuana\nLoretta\nVerna\nCecilia\nChristine\nDella\nFlora\nSocorro\nArlene\nHenrietta\nElinor\nLila\nFaye\nGwendolyn\nRebecca\nAdeline\nAngie\nRosemarie\nBlanche\nJackie\nJeannette\nAlicia\nCecelia\nEloise\nAngela\nAnnette\nElena\nEunice\nNina\nPetra\nAntoinette\nHilda\nJacquelyn\nSusan\nErnestine\nMarcia\nCora\nYoshiko\nErma\nEstella\nIrma\nMargery\nNora\nOlive\nBeth\nElisa\nMercedes\nNaomi\nNatalie\nAda\nDiana\nHope\nMelba\nPatty\nAdele\nAndrea\nArline\nDaisy\nDelores\nEugenia\nHelene\nIris\nLee\nSue\nChristina\nLenore\nSophie\nAlta\nAmy\nAnnabelle\nConcha\nEleanore\nFern\nFrancisca\nIsabelle\nJewel\nJoann\nLillie\nMarcella\nOfelia\nTillie\nAdrienne\nAurelia\nDoreen\nElva\nGene\nJenny\nKay\nOpal\nToshiko\nAna\nDarlene\nElvera\nErnestina\nMerle\nMolly\nTrinidad\nAlyce\nAmalia\nAmparo\nCarmelita\nClarice\nDorothea\nErlinda\nEstelle\nImogene\nJerry\nJo\nLavonne\nLorna\nManuela\nMichiko\nMinnie\nRaquel\nSoledad\nAdelina\nAngelita\nBeatriz\nBettye\nCorrine\nEnid\nEstela\nFumiko\nGwen\nHarriett\nJovita\nJudy\nMarilynn\nMasako\nShigeko\nYolanda\nCynthia\nDona\nFay\nLeila\nLeota\nLorene\nLuella\nMagdalena\nMarina\nMarylou\nNeva\nShirlee\nWilda\nArmida\nBobbie\nCarmel\nCarole\nCharlene\nDelia\nDorris\nElma\nEloisa\nFreda\nGeorgette\nHisako\nKatie\nLaurel\nLeah\nLeatrice\nMarjory\nRena\nRosario\nSharon\nDixie\nDolly\nFrankie\nGail\nGeorgina\nGoldie\nHortencia\nHortense\nJeane\nJewell\nJudith\nLilly\nLouisa\nLula\nMaryann\nMollie\nNona\nOlivia\nOphelia\nTeruko\nTomasa\nAdela\nDawn\nEdythe\nGeneva\nGerry\nHortensia\nLela\nLilia\nMable\nMatilda\nRae\nRegina\nSusie\nTherese\nBelen\nBeulah\nCarrie\nCecile\nEmilia\nFumi\nGlenna\nIna\nIva\nJulie\nKatharine\nLeonor\nLoraine\nLucia\nNatalia\nSadie\nAiko\nCarolina\nDale\nDelfina\nElsa\nFaith\nFelipa\nJacklyn\nJanis\nJoanna\nJosie\nLeola\nLeslie\nLuz\nMaureen\nMona\nMyra\nNettie\nPolly\nRenee\nTomiko\nWinona\nAlvina\nClaudia\nClaudine\nCleo\nDarleen\nDeloris\nDorthy\nEnedina\nEtta\nFrancis\nGayle\nGeorgene\nHerminia\nLeora\nLou\nLucile\nMadelyn\nMarylyn\nNatividad\nRefugio\nRhoda\nRosetta\nSadako\nSandra\nSelma\nSheila\nValerie\nWillie\nAllene\nCarla\nCarmela\nConcepcion\nCruz\nDiane\nEdwina\nElisabeth\nEster\nEulalia\nEvangeline\nFannie\nGilda\nHerlinda\nIola\nIsabell\nJuliet\nJuliette\nKaren\nKimiko\nKiyoko\nMaggie\nMaryellen\nMattie\nMercy\nMitsuko\nMiyoko\nMyrna\nNanette\nNoreen\nOra\nRosalind\nSachiko\nSallie\nShizuko\nTerry\nVelia\nVeronica\nWilla\nWilliam\nAdelaide\nAida\nAkiko\nAlthea\nAmada\nAugustina\nBettylou\nBeverlee\nClare\nConchita\nDarline\nDorene\nEda\nEmilie\nFrieda\nGeorgiana\nHelena\nHideko\nIvy\nJayne\nJesus\nKazuko\nLenora\nLetitia\nLidia\nLolita\nLora\nLynn\nMarge\nMarietta\nMarillyn\nMaryan\nMeredith\nMillie\nNada\nNan\nNobuko\nRosaline\nRufina\nSetsuko\nSofia\nSybil\nToni\nVelda\nVilma\nYoneko\nAddie\nAlene\nAltagracia\nArdis\nBelia\nBeryl\nCandelaria\nCharleen\nCherie\nChiyeko\nChiyoko\nCornelia\nCorrinne\nDelphina\nDominga\nEldora\nElise\nElnora\nEnriqueta\nEula\nEvalyn\nFelicitas\nGeorge\nGeorgie\nHarriette\nHiroko\nIla\nIlene\nJeanie\nJeannie\nKathy\nLauretta\nLelia\nLeta\nLorena\nLucretia\nLuisa\nMarcelina\nMariana\nMarianne\nMelva\nMonica\nNell\nNita\nNola\nOllie\nPamela\nReva\nRobert\nRowena\nRoxie\nRuthe\nShizue\nVivien\nWinnifred\nAlda\nAline\nAlva\nAnnabell\nAnnetta\nArleen\nArtie\nAthena\nBenita\nBerta\nBetsy\nBonita\nCamille\nCarmella\nCarroll\nCathryn\nChieko\nClotilde\nDaphne\nDelma\nDorcas\nEarlene\nEarline\nEdward\nEffie\nElayne\nElinore\nElna\nEmiko\nErminia\nErna\nEtsuko\nEvangelina\nEvelyne\nFeliciana\nFlorencia\nGraciela\nGregoria\nGreta\nGuillermina\nHaruko\nIgnacia\nIone\nJoaquina\nJocelyn\nJulieta\nJunko\nKeiko\nLaverna\nLetha\nLorenza\nLoris\nLura\nMadge\nMamie\nMarcelle\nMarilee\nMartina\nMaude\nMaudie\nMaurine\nMavis\nMerilyn\nMickey\nMillicent\nModesta\nNannette\nNorine\nPalmira\nPansy\nPatti\nPhoebe\nRafaela\nReba\nRhea\nRina\nRuthie\nSabina\nSachi\nSantos\nSophia\nTessie\nTheo\nTheodora\nToshie\nToyoko\nTwila\nUrsula\nVerda\nVerla\nVicenta\nYsabel\nYuriko\nYvette\nZella\nMary\nBarbara\nBetty\nDorothy\nPatricia\nHelen\nMargaret\nShirley\nVirginia\nGloria\nRuth\nBeverly\nFrances\nAlice\nJean\nDolores\nDoris\nEvelyn\nLois\nMaria\nMarjorie\nMarilyn\nPhyllis\nJosephine\nElizabeth\nLorraine\nJoyce\nMarie\nJune\nEleanor\nNorma\nRose\nNancy\nEsther\nMildred\nIrene\nJoan\nCarmen\nFlorence\nJacqueline\nLucille\nAnna\nMarian\nLillian\nMarion\nLouise\nLupe\nAudrey\nGeraldine\nGrace\nCarol\nJeanne\nAnn\nSally\nMartha\nPauline\nJane\nDonna\nJuanita\nBernice\nRoberta\nCharlotte\nElaine\nEva\nKatherine\nPeggy\nEdna\nThelma\nCatherine\nVivian\nRosie\nEdith\nBeatrice\nLucy\nAnita\nCarolyn\nViolet\nJennie\nElsie\nJulia\nLaura\nBonnie\nEthel\nRita\nClara\nJanet\nEllen\nConsuelo\nConnie\nVera\nKathleen\nGertrude\nMaxine\nPatsy\nEmma\nGladys\nJanice\nIsabel\nJessie\nKathryn\nWilma\nYvonne\nWanda\nRosemary\nDora\nPat\nAurora\nGenevieve\nNellie\nBertha\nIda\nMargarita\nRuby\nSarah\nRamona\nAnne\nGeorgia\nAngelina\nMarguerite\nEileen\nStella\nClaire\nHazel\nBillie\nColleen\nNadine\nAnnie\nJeanette\nTheresa\nViola\nAlma\nConstance\nElvira\nLaverne\nVelma\nMuriel\nBette\nCelia\nHarriet\nPearl\nTeresa\nJoy\nLeona\nAntonia\nMargie\nBeverley\nGuadalupe\nJoanne\nEsperanza\nOlga\nRachel\nAgnes\nRosa\nAmelia\nEmily\nRosalie\nAngie\nElena\nLydia\nSylvia\nVictoria\nSocorro\nArlene\nElla\nLola\nWinifred\nPaula\nMabel\nSusan\nVerna\nAlberta\nRebecca\nLoretta\nRosemarie\nCecilia\nErnestine\nMay\nSuzanne\nLena\nInez\nSara\nAlicia\nBettie\nCaroline\nFlora\nJuana\nEunice\nHenrietta\nLila\nCatalina\nCecelia\nElinor\nLily\nMinnie\nAngela\nDelores\nMyrtle\nBessie\nGwendolyn\nJeannette\nChristine\nCorinne\nDarlene\nIrma\nJackie\nKazuko\nMae\nMercedes\nNaomi\nNatalie\nAdele\nMadeline\nMiriam\nPetra\nAileen\nBlanche\nDiana\nFrancisca\nJoann\nAdeline\nEstella\nHortensia\nJacquelyn\nLinda\nMarcella\nCharlene\nDoreen\nHope\nJo\nOlive\nTillie\nDelia\nErma\nFaye\nLaurel\nCora\nIris\nMarcia\nMargery\nNina\nBeryl\nBeulah\nEloise\nJosefina\nKay\nLenore\nClarice\nHilda\nJosie\nTerry\nAmy\nDona\nDorothea\nHelene\nOpal\nPriscilla\nTeruko\nAda\nDiane\nFern\nIsabelle\nManuela\nNora\nAmparo\nAna\nAntoinette\nDolly\nEstelle\nLee\nLuz\nMagdalena\nOfelia\nPatty\nConcha\nDella\nGail\nMarylou\nMolly\nRaquel\nRosario\nSue\nAdelina\nAnnette\nChristina\nEleanore\nJudith\nLeola\nMelba\nSumiko\nYolanda\nYoshiko\nAlyce\nArline\nAurelia\nFrancis\nGeneva\nRegina\nValerie\nAngelita\nArmida\nElvera\nErnestina\nEugenia\nEvangeline\nFay\nJudy\nLavonne\nLillie\nLilly\nLorna\nLuella\nMamie\nOphelia\nSadie\nSelma\nSoledad\nSophie\nAlta\nAndrea\nAnnabelle\nCarmelita\nEloisa\nFrieda\nGeorgette\nHerlinda\nHortencia\nLorene\nLucile\nMable\nAdela\nAmalia\nBobbie\nClaudia\nDaisy\nDelfina\nDixie\nJanis\nJerry\nLynn\nMatilda\nMickey\nShirlee\nVelia\nAdrienne\nAkiko\nConcepcion\nDawn\nEmiko\nEmilia\nFumiko\nIla\nIna\nJewel\nJewell\nJohanna\nLeatrice\nLeta\nLucia\nMarianne\nMasako\nMichiko\nMyrna\nSandra\nSheila\nTrinidad\nAdelaide\nAlexandra\nArleen\nBeth\nCarolina\nElisa\nElma\nElva\nEstela\nFaith\nGlenna\nHarriett\nJohn\nMarceline\nMarilynn\nMelva\nMona\nNoreen\nOlivia\nRefugio\nRhoda\nRowena\nTherese\nTomasa\nToshiko\nYuriko\nBernadette\nCamille\nCleo\nDenise\nEdythe\nFrankie\nFreda\nGwen\nHannah\nHarriette\nKatharine\nKiyoko\nLita\nLou\nMaureen\nMavis\nMerle\nNola\nNona\nSachiko\nShizuko\nWinona\nAiko\nAlthea\nAugustina\nCarrie\nChiyoko\nClaudine\nCruz\nEula\nGene\nGregoria\nJeane\nJenny\nKatie\nLeila\nLenora\nLeora\nLolita\nLuisa\nLura\nMarietta\nMerilyn\nMicaela\nMyra\nNatalia\nNelda\nNeva\nPolly\nRena\nRenee\nSharon\nWilla\nBeatriz\nBettye\nBeverlee\nCarmel\nEda\nEffie\nElisabeth\nEnriqueta\nEvangelina\nGoldie\nGreta\nHaruko\nHattie\nHideko\nHortense\nImogene\nJoanna\nJovita\nKazue\nLilia\nLoraine\nLorena\nMadge\nMarina\nMitsuko\nMollie\nPatti\nSallie\nSusana\nTheodora\nVesta\nVickie\nYoneko\nZelda\nAloha\nBerta\nBetsy\nCherie\nClare\nCorrine\nDarleen\nDelphine\nElsa\nEnid\nErlinda\nEtta\nGilda\nHermelinda\nHisako\nIva\nLeah\nLeonor\nLeslie\nLidia\nLora\nMadeleine\nMaryann\nMercy\nMonica\nRae\nRobert\nRosita\nSusie\nTina\nToni\nVilma\nWilda\nAida\nAnnabel\nAyako\nBelen\nBruna\nCarla\nCarole\nCristina\nDale\nEarlene\nEdwina\nGayle\nGeorgina\nGerry\nHelena\nIola\nJacklyn\nJayne\nJulie\nJuliet\nKathrine\nLela\nLeota\nMarilou\nMarjory\nMarta\nMatilde\nMaurine\nMaybelle\nNobuko\nNorine\nReva\nRobin\nRosalind\nRosella\nRufina\nSofia\nSybil\nVelda\nVerda\nAllene\nAlvina\nAntonette\nArdith\nBelia\nBelva\nBernita\nCarmela\nCharleen\nChizuko\nConception\nCynthia\nDana\nDina\nDorris\nEarline\nElda\nElinore\nEliza\nEmilie\nEnedina\nEster\nFlorine\nFrancine\nHerminia\nIone\nJesus\nKimiko\nLauretta\nLavern\nLeonora\nLona\nLucretia\nMadelyn\nMargret\nMargy\nMarlyn\nMarvel\nMaryjane\nMattie\nMaude\nMidori\nMignon\nMina\nNanette\nNettie\nOtilia\nShigeko\nStephanie\nVeronica\nVivien\nWillie\nWinnifred\nYoshiye\nYukiko\nZelma\nZoe\nAlbertina\nAlbina\nAlvera\nAmada\nArdis\nArdys\nBerneice\nBirdie\nBlossom\nCandelaria\nCarmella\nCecil\nClaris\nConcetta\nConchita\nConsuela\nCoralie\nDarline\nDorene\nEleanora\nEthyl\nEtsuko\nEugenie\nEulalia\nEvalyn\nEvelyne\nFannie\nFelicitas\nGay\nGretchen\nHenry\nHilma\nHiroko\nHolly\nIlene\nIona\nIsabella\nJan\nJanette\nJeannie\nJeraldine\nJose\nJuliette\nKitty\nLina\nLorenza\nLouisa\nLynne\nMaggie\nMarcelina\nMargarette\nMeredith\nMillicent\nMisako\nMitzi\nNell\nOra\nRafaela\nRomelia\nRosamond\nSadako\nSandy\nSophia\nSusanne\nTayeko\nTessie\nTomiko\nValencia\nVelva\nVerla\nVivienne\nWilliam\nMary\nBarbara\nBetty\nDorothy\nPatricia\nHelen\nShirley\nVirginia\nMargaret\nBeverly\nGloria\nDolores\nAlice\nRuth\nFrances\nDoris\nJean\nLois\nMaria\nMarilyn\nJoan\nJoyce\nMarjorie\nEvelyn\nElizabeth\nEsther\nNancy\nPhyllis\nLorraine\nNorma\nJosephine\nEleanor\nMarie\nRose\nCarmen\nJune\nIrene\nMildred\nJacqueline\nGeraldine\nCarol\nLucille\nFlorence\nLillian\nSally\nDonna\nMarian\nAnna\nMartha\nMarion\nLouise\nRamona\nJanet\nGrace\nElaine\nJuanita\nAnita\nBernice\nLupe\nBeatrice\nRoberta\nEdith\nAudrey\nPauline\nPeggy\nJane\nAnn\nJeanne\nCatherine\nCharlotte\nVera\nElsie\nMaxine\nThelma\nRuby\nCarolyn\nConsuelo\nRosie\nJennie\nKatherine\nKathleen\nPatsy\nEva\nLucy\nLaura\nVivian\nJoanne\nDora\nPat\nBonnie\nEthel\nRita\nColleen\nConnie\nHazel\nViolet\nJulia\nEdna\nEllen\nElvira\nGladys\nIsabel\nGeorgia\nJessie\nWanda\nDiane\nAurora\nNadine\nAngelina\nWilma\nBertha\nEmma\nRosemary\nTheresa\nAnne\nCelia\nClara\nMargarita\nSylvia\nViola\nYvonne\nJanice\nNellie\nJoy\nConstance\nEsperanza\nSarah\nStella\nKathryn\nTeresa\nBillie\nAnnie\nLaverne\nGertrude\nRachel\nEmily\nGenevieve\nGuadalupe\nPearl\nVictoria\nClaire\nMarguerite\nVelma\nIda\nAntonia\nJeanette\nRosalie\nAgnes\nAngela\nArlene\nMargie\nHarriet\nAlicia\nJoann\nLinda\nMadeline\nMuriel\nAmelia\nRosa\nVerna\nBeverley\nEileen\nLydia\nAlberta\nBette\nLeona\nLola\nDelores\nOlga\nAngie\nMyrtle\nChristine\nLily\nCaroline\nLena\nDarlene\nPaula\nLoretta\nSara\nDiana\nLila\nMabel\nNatalie\nCecilia\nCharlene\nIrma\nMercedes\nRosemarie\nEunice\nFlora\nJo\nDelia\nMae\nSuzanne\nElena\nElisa\nGwendolyn\nHenrietta\nWinifred\nJackie\nRebecca\nErnestine\nEstella\nJosefina\nPetra\nPriscilla\nAlma\nBessie\nCatalina\nDoreen\nFrancisca\nSocorro\nAdeline\nAileen\nAnnette\nHilda\nInez\nMiriam\nBlanche\nCecelia\nAntoinette\nCorinne\nJeannette\nCora\nMay\nOfelia\nAdele\nElla\nJuana\nKay\nPatty\nSue\nHope\nJacquelyn\nMarcia\nDona\nElinor\nLenore\nLorna\nManuela\nNaomi\nNina\nSusan\nBettie\nJerry\nMyrna\nSoledad\nEvangeline\nSharon\nYolanda\nCarolina\nChristina\nEloise\nErma\nFaye\nGeorgette\nIris\nNora\nSophie\nCarmelita\nLorene\nMarcella\nRaquel\nAlta\nAnnabelle\nArline\nBeulah\nDolly\nErlinda\nJosie\nJudith\nMelba\nAda\nCynthia\nDella\nEleanore\nEstelle\nHelene\nLillie\nLuz\nMinnie\nOlive\nOpal\nAmy\nDixie\nFern\nImogene\nLee\nLeonor\nLou\nLuella\nMargery\nMerle\nMolly\nRena\nAdela\nDaisy\nDelfina\nElva\nHortensia\nJudy\nLilia\nLoraine\nMagdalena\nTillie\nTrinidad\nAmparo\nCarole\nConcepcion\nDawn\nErnestina\nEvangelina\nJewel\nMichiko\nRenee\nRhoda\nSheila\nValerie\nAmalia\nAna\nBetsy\nDorothea\nEnid\nGlenna\nJanis\nJesus\nMarylou\nRae\nSandra\nAlyce\nAngelita\nAurelia\nBeatriz\nBeryl\nCamille\nClaudine\nConcha\nFrancis\nIna\nIsabell\nLeah\nLela\nLenora\nLolita\nMarceline\nMarianne\nMarilynn\nMaureen\nMercy\nOlivia\nRobert\nCruz\nDale\nElma\nFay\nFelicitas\nGeorgina\nJeannine\nJenny\nJulie\nLavonne\nLilly\nMatilda\nMollie\nMyra\nSusie\nTerry\nBerta\nBeth\nBobbie\nCharmaine\nClarice\nEtta\nFreda\nFrieda\nGraciela\nGwen\nHarriett\nJohanna\nKazuko\nLeota\nLidia\nMable\nNatividad\nNelda\nNeva\nRegina\nRosario\nShirlee\nTeruko\nArmida\nCleo\nEmilia\nGreta\nLeila\nLucia\nLuisa\nMaggie\nMarcelina\nMarina\nMaryann\nMona\nMonica\nNettie\nRichard\nSachiko\nSetsuko\nTherese\nTomasa\nWilda\nYoshiko\nAiko\nAndrea\nCarrie\nCorrine\nCristina\nDaphne\nEda\nElsa\nGayle\nGene\nGeneva\nJan\nJovita\nLeola\nMamie\nMarietta\nMicaela\nRafaela\nShizuko\nWilla\nAdrienne\nAmanda\nArleen\nDelma\nDorthy\nEdythe\nEnedina\nEstela\nEugenia\nFaith\nFelipa\nFlorine\nFrankie\nHelena\nIsabelle\nJanie\nJewell\nJohn\nLeta\nLula\nNona\nNoreen\nOphelia\nPolly\nRosina\nSelma\nVeronica\nWilliam\nAida\nBerniece\nBertie\nCarmel\nCecile\nCharles\nDarleen\nDorris\nEarline\nElvera\nEnriqueta\nEster\nFrancine\nGail\nGoldie\nIlene\nJeannie\nJuliana\nJuliette\nLaurel\nLora\nLynn\nMarlene\nMartina\nMasako\nMelva\nMiyoko\nNan\nNorene\nPamela\nPansy\nPatti\nPilar\nRefugio\nRosella\nRufina\nTina\nTomiko\nVilma\nWinona\nYukiko\nZoe\nAbigail\nAdelaide\nAdelina\nAvis\nBelia\nBernadine\nBernardine\nBettye\nCarlene\nCarmela\nCarroll\nCherie\nClare\nClaudia\nConception\nConsuela\nDianne\nDominga\nDorene\nEdwina\nElisabeth\nElise\nEliza\nEloisa\nErna\nEve\nGerry\nHerlinda\nHerminia\nHortencia\nIla\nIva\nJosefa\nJoseph\nJulieta\nKaren\nKeiko\nKiyoko\nLeonora\nLeslie\nLibrada\nMadelyn\nMarjory\nMaurine\nMavis\nMitsuko\nNobuko\nNola\nNorine\nSofia\nThais\nTheodora\nVerda\nYoshiye\nAgripina\nAkiko\nAlba\nAlexandra\nArdis\nAyako\nBelen\nBernadette\nCamilla\nCharline\nChiyoko\nDeloris\nDelphina\nDonald\nElinore\nEulalia\nEvelyne\nFlorene\nFrank\nGilda\nHermelinda\nHideko\nIone\nJames\nJeanie\nJoye\nJuliet\nKatie\nKenneth\nLavina\nLeora\nLita\nLorelei\nLouisa\nLucile\nMarcie\nMarillyn\nMarolyn\nMarylee\nMattie\nMillie\nNancie\nNanette\nNatalia\nNicolasa\nNita\nNoel\nOrtensia\nRebeca\nSadako\nSadie\nSallie\nSonia\nSusana\nToni\nVickie\nWinnie\nYuri\nYvette\nZelda\nAlda\nAlison\nAloha\nAlvera\nAngeline\nAnnabell\nAntonette\nAntonio\nArden\nArdith\nAthena\nBeverlee\nCandelaria\nCarlotta\nChizuko\nChris\nClementine\nCoralie\nCornelia\nDeborah\nDenise\nDollie\nEmiko\nEula\nFumiko\nGeorgene\nGeorgie\nGermaine\nGlenda\nGregoria\nGretchen\nHenry\nHisako\nHortense\nJacklyn\nJayne\nJeane\nKatharine\nKitty\nLavon\nLeonarda\nLetty\nLucila\nLucinda\nMadeleine\nMadge\nMarilu\nMarna\nMarta\nMaude\nMerilyn\nMeryl\nMitzi\nOra\nPaulina\nPhillis\nPhoebe\nRomana\nRowena\nRuthie\nSantos\nSherry\nSilvia\nStephanie\nSumiko\nSusanne\nUrsula\nVelda\nVelia\nVerla\nVivienne\nYuriko\nZelma\nMary\nBarbara\nBetty\nPatricia\nDorothy\nShirley\nHelen\nDolores\nMargaret\nVirginia\nBeverly\nGloria\nJoan\nDoris\nAlice\nFrances\nRuth\nMarilyn\nJean\nJoyce\nMaria\nLois\nNancy\nEvelyn\nCarol\nPhyllis\nJune\nMarjorie\nJosephine\nEleanor\nLorraine\nElizabeth\nNorma\nRose\nCarmen\nMarie\nEsther\nLouise\nJacqueline\nIrene\nGeraldine\nFlorence\nMildred\nDonna\nJoanne\nSally\nAnna\nMarian\nLillian\nLupe\nMartha\nJanet\nPeggy\nAnn\nGrace\nJane\nAudrey\nCarolyn\nCharlotte\nJuanita\nMarion\nAnita\nDiane\nBernice\nLucille\nPauline\nRamona\nRita\nBeatrice\nElaine\nKatherine\nPatsy\nThelma\nBonnie\nJeanne\nRoberta\nCatherine\nLaura\nVera\nElsie\nRuby\nClara\nPat\nEdna\nMaxine\nRosie\nJennie\nKathleen\nEva\nDora\nVivian\nConsuelo\nJanice\nRachel\nIsabel\nEdith\nRosemary\nConnie\nEmma\nJulia\nLucy\nStella\nWanda\nEllen\nEileen\nEthel\nGladys\nBillie\nSylvia\nYvonne\nHazel\nWilma\nAnne\nArlene\nAurora\nElvira\nJessie\nMargarita\nTeresa\nTheresa\nVictoria\nBertha\nAnnie\nJoann\nAngelina\nGeorgia\nJoy\nEsperanza\nNadine\nKathryn\nNellie\nRosa\nCelia\nJeanette\nMarguerite\nLaverne\nAlberta\nDiana\nGenevieve\nLeona\nViola\nViolet\nPearl\nAmelia\nClaire\nGertrude\nBeverley\nGuadalupe\nAlma\nDelores\nLoretta\nConstance\nDarlene\nRosalie\nSarah\nAntonia\nJo\nAgnes\nBette\nColleen\nEmily\nIda\nMuriel\nDelia\nPaula\nMarianne\nNaomi\nMargie\nSocorro\nJacquelyn\nLila\nLydia\nSharon\nCecilia\nMay\nVelma\nHarriet\nLola\nSuzanne\nAlicia\nAngela\nAngie\nCaroline\nElena\nLinda\nLily\nOlga\nCharlene\nRebecca\nChristine\nHenrietta\nSusan\nVerna\nPriscilla\nJackie\nJuana\nMercedes\nSara\nBlanche\nElla\nRaquel\nSue\nMadeline\nIrma\nJeannine\nNatalie\nErnestine\nPatty\nFlora\nGwendolyn\nMiriam\nMyrtle\nRosemarie\nAdele\nAdeline\nHilda\nMabel\nMyrna\nCatalina\nAnnette\nBessie\nCorinne\nElisa\nInez\nSheila\nAmparo\nAntoinette\nCora\nEstella\nJeannette\nDoreen\nBettie\nDona\nIris\nJosefina\nLena\nAileen\nElinor\nEloise\nEunice\nFern\nJudith\nWinifred\nBeulah\nCecelia\nCynthia\nElva\nEstelle\nLenore\nLuella\nMae\nMelba\nNina\nNora\nOlive\nPetra\nAna\nMolly\nOfelia\nYolanda\nAda\nAmy\nArline\nDolly\nFay\nJerry\nMarcia\nRenee\nVelia\nCarla\nConcha\nEvangeline\nFrancisca\nHope\nTillie\nAlyce\nBobbie\nLee\nManuela\nMargery\nMaryann\nMinnie\nSophie\nArmida\nCarmelita\nClarice\nErma\nGwen\nHelene\nHortensia\nIna\nJudy\nLillie\nMagdalena\nMercy\nSusie\nTrinidad\nAdela\nAmalia\nCleo\nEster\nJanis\nLorna\nLuz\nMarcella\nOphelia\nRobert\nAndrea\nAngelita\nAnnabelle\nConcepcion\nCorrine\nDixie\nFaye\nGay\nHarriett\nNatalia\nNettie\nValerie\nYoshiko\nAdrienne\nAlta\nCarole\nChristina\nDawn\nDorothea\nEarlene\nEvangelina\nGerry\nGreta\nJewel\nJosie\nKay\nLeola\nLora\nMarcelina\nRena\nSandra\nBeatriz\nBelen\nBenita\nCarmel\nElma\nErnestina\nJoanna\nLavonne\nLidia\nLorene\nMarceline\nMarylou\nMollie\nOpal\nPolly\nToni\nCruz\nDelfina\nDella\nEdwina\nEnedina\nErlinda\nEugenia\nGail\nGeorgette\nJenny\nJohanna\nJohn\nLilia\nLouisa\nMona\nOlivia\nRichard\nSofia\nWillie\nAdelina\nArdis\nAurelia\nClaudia\nEdythe\nEmilia\nFelicitas\nGeneva\nGlenna\nIva\nJesus\nLilly\nLoraine\nLucia\nMarilynn\nMasako\nMaureen\nMichiko\nRowena\nShirlee\nSumiko\nTheodora\nBeth\nBetsy\nBeverlee\nCarolina\nDana\nDorris\nEarline\nElda\nElsa\nElvera\nEmiko\nFelicia\nFrank\nGoldie\nGregoria\nHortencia\nIla\nIlene\nIsabelle\nJulie\nKazuko\nLeila\nLela\nLeonor\nLucile\nMarjory\nMelva\nMitsuko\nNola\nNona\nRosita\nSallie\nTomasa\nArleen\nBernadine\nBeryl\nCarrie\nCecile\nCherie\nCherry\nClaudine\nDaisy\nDarline\nEleanore\nElouise\nEnriqueta\nFannie\nJames\nJanette\nJovita\nLeslie\nLuisa\nMargo\nMarina\nMerilyn\nMerle\nMiyoko\nMyra\nNeva\nOtilia\nRefugio\nRegina\nSoledad\nTerry\nTherese\nWilla\nWinona\nCaryl\nCharleen\nDarleen\nDominga\nEffie\nEnid\nFaith\nFrieda\nFumiko\nGayle\nGeorgina\nGraciela\nHelena\nHisako\nJacklyn\nJacquelin\nLeah\nLeonora\nMable\nMamie\nMargret\nMina\nNelda\nNobuko\nNoreen\nNorine\nRae\nSachiko\nSelma\nSusana\nToshiko\nAida\nAiko\nArden\nAsako\nBelle\nBerniece\nBertie\nClare\nCoralie\nCornelia\nCristina\nDeloris\nDena\nEarleen\nEliza\nElodia\nEtta\nEula\nFrancis\nHaruko\nHerminia\nHortense\nIone\nKaren\nKatie\nKeiko\nKiyoko\nLenora\nLeora\nLou\nLynn\nMadeleine\nMadelyn\nMartina\nMatilda\nMatilde\nOra\nPamela\nPatti\nRebeca\nRosalind\nRosella\nSadie\nSherry\nSophia\nVeronica\nVickie\nAdelle\nAgustina\nAlbina\nAlejandra\nAlthea\nAlva\nAvis\nAyako\nBelia\nBettye\nBonita\nCarlota\nCarrol\nConchita\nDonald\nDorene\nDorine\nDorthy\nElise\nElna\nEmilie\nEstela\nEthelyn\nGeorge\nGilda\nHarriette\nHideko\nImogene\nIsabell\nIsabella\nJeane\nJoe\nJuliet\nJuliette\nKatharine\nKimiko\nLaverna\nLavina\nLeonore\nLorena\nLouella\nLula\nLulu\nMargy\nMariana\nMarvel\nMavis\nMeredith\nMeta\nMignon\nMillicent\nRobin\nRoselyn\nSimona\nSonya\nUna\nUrsula\nVerda\nWilda\nYsabel\nAngeline\nArdith\nBerta\nCamilla\nCamille\nCarlene\nCarlotta\nCarmella\nChiyeko\nCoral\nDeborah\nDianne\nErminia\nErna\nFlorine\nFrankie\nFreda\nFujiko\nGene\nGracie\nGretchen\nHerlinda\nHiroko\nJanie\nJayne\nJeannie\nJewell\nLaurel\nLeatrice\nLetha\nLita\nLolita\nLorayne\nLyla\nMarlene\nMarta\nMattie\nMaurine\nMonica\nNan\nNedra\nNorene\nPaulina\nPeggie\nReba\nRene\nRhea\nRochelle\nRosaline\nRosario\nRosenda\nSetsuko\nShirlie\nSonia\nSusanna\nTina\nTrudy\nVilma\nVivien\nVivienne\nWilliam\nWinnifred\nYasuko\nYoshiye\nYuriko\nZelma\nMary\nBarbara\nBetty\nPatricia\nDorothy\nShirley\nJoan\nDolores\nVirginia\nBeverly\nHelen\nMargaret\nMarilyn\nGloria\nAlice\nNancy\nRuth\nJoyce\nJean\nFrances\nDoris\nLois\nMaria\nNorma\nCarol\nEvelyn\nMarjorie\nDonna\nElizabeth\nPhyllis\nMarie\nRose\nJosephine\nJune\nEleanor\nCarmen\nJacqueline\nLorraine\nEsther\nJoanne\nIrene\nLouise\nSally\nGeraldine\nJanet\nFlorence\nMarian\nCarolyn\nLillian\nMildred\nLupe\nMartha\nAnita\nAnn\nJuanita\nAnna\nJane\nLucille\nPatsy\nBonnie\nCatherine\nPauline\nDiane\nMarion\nBeatrice\nElaine\nJeanne\nPeggy\nAudrey\nRita\nRoberta\nJanice\nVivian\nConsuelo\nCharlotte\nGrace\nJennie\nKathleen\nRamona\nPat\nBernice\nLucy\nEva\nAnne\nClara\nKatherine\nElsie\nRosie\nJeanette\nJoy\nThelma\nJessie\nEdith\nJoann\nLaura\nRosemary\nYvonne\nEdna\nMaxine\nDelores\nDora\nAngelina\nVera\nGeorgia\nAnnie\nConnie\nEllen\nRachel\nLoretta\nTheresa\nElvira\nJulia\nKathryn\nNellie\nDarlene\nIsabel\nGladys\nRuby\nJo\nCelia\nEmma\nArlene\nAmelia\nHazel\nBillie\nViolet\nClaire\nMargarita\nLaverne\nEthel\nRosa\nDiana\nTeresa\nVictoria\nWanda\nStella\nSusan\nWilma\nGertrude\nNadine\nSylvia\nAngie\nBertha\nRosalie\nAurora\nEsperanza\nEmily\nMarguerite\nSuzanne\nAntonia\nGuadalupe\nPearl\nMargie\nColleen\nIda\nMarianne\nEileen\nHarriet\nAlicia\nLola\nAlma\nLila\nSarah\nSue\nConstance\nGenevieve\nSharon\nLydia\nViola\nJackie\nSara\nAgnes\nAngela\nBette\nBeverley\nJeannette\nVelma\nOlga\nCatalina\nLeona\nPaula\nCharlene\nRosemarie\nJacquelyn\nCaroline\nDelia\nCecilia\nLena\nVerna\nWinifred\nBessie\nAlberta\nArmida\nKay\nNatalie\nGwendolyn\nHenrietta\nHilda\nMay\nMercedes\nNaomi\nRebecca\nDoreen\nElena\nEloise\nMae\nMarcia\nMaureen\nMuriel\nRaquel\nSocorro\nChristine\nElisa\nJuana\nLily\nLinda\nNina\nInez\nMabel\nMadeline\nOfelia\nElla\nJosefina\nPatty\nDona\nErnestine\nGwen\nIrma\nMyrna\nNora\nPriscilla\nAdele\nClarice\nConcha\nDorothea\nMyrtle\nPetra\nAdeline\nCynthia\nJudith\nCorinne\nDixie\nElinor\nEstella\nFlora\nMinnie\nDella\nDolly\nFern\nGreta\nMona\nAnnette\nBettie\nCarmelita\nIris\nAmy\nAntoinette\nChristina\nEvangeline\nFay\nJanis\nJoanna\nJosie\nMiriam\nSheila\nArline\nCecelia\nErma\nGeneva\nJerry\nMarlene\nAileen\nAnnabelle\nCarolina\nEunice\nEvangelina\nFrancisca\nGerry\nHortensia\nIna\nMagdalena\nMarcella\nAna\nBlanche\nCarole\nDaisy\nElva\nErlinda\nHelene\nHope\nLilly\nSophie\nAlta\nDawn\nEstelle\nFaye\nFrieda\nGay\nLoraine\nLorna\nOlive\nValerie\nAngelita\nCherie\nGlenna\nJeannine\nJenny\nJewel\nJovita\nLee\nLorene\nLuella\nMargery\nRena\nYolanda\nYoshiko\nAdrienne\nBobbie\nCleo\nGail\nJudy\nKaren\nKatharine\nLeonor\nMable\nMasako\nMelba\nMolly\nPamela\nVelia\nBeth\nBeverlee\nCarla\nCora\nCorrine\nEmiko\nJesus\nMyra\nSoledad\nTherese\nAdela\nAlyce\nAndrea\nArdith\nBeatriz\nBeulah\nCarmel\nDarleen\nFreda\nHortencia\nLora\nLouisa\nLucia\nLynn\nMaryann\nOphelia\nRosario\nShirlee\nTerry\nTillie\nAda\nAdelina\nArleen\nElma\nEmilia\nHerlinda\nLenore\nMeredith\nNannette\nNatalia\nNona\nOlivia\nRae\nSofia\nSusie\nTrinidad\nArden\nCarrie\nConcepcion\nDelfina\nDeloris\nEdwina\nFelicitas\nFlorine\nGayle\nHarriett\nJeanine\nJohn\nLaurel\nLilia\nLillie\nLorena\nLou\nLucile\nManuela\nMercy\nMickey\nNita\nNoreen\nOra\nRegina\nSallie\nWilla\nAmalia\nArdeth\nBeryl\nClare\nDianne\nDorris\nEloisa\nErnestina\nEugenia\nFelipa\nGretchen\nJewell\nLavonne\nLela\nLeola\nLeslie\nMamie\nMarilynn\nMarylou\nMichiko\nNeva\nNorene\nOpal\nRenee\nRichard\nRosita\nSetsuko\nTina\nToshiko\nAlvina\nAmparo\nAurelia\nBernadine\nClaudine\nDale\nEdythe\nElvera\nEstela\nIsabelle\nIvy\nJoe\nJohanna\nJulie\nKazuko\nLuz\nMargot\nMarjory\nMarvel\nMerle\nNelda\nRafaela\nSadie\nZelma\nAida\nAkiko\nBelia\nBlanca\nClaudia\nCristina\nDenise\nDorla\nEarlene\nEda\nEffie\nEnedina\nEnriqueta\nEtta\nEulalia\nFrancis\nGeorgina\nHideko\nJan\nJuliet\nJuliette\nJustine\nKatie\nLauretta\nLea\nLeila\nLenora\nLolita\nLuisa\nMarceline\nMarietta\nMarilee\nMaurine\nMavis\nMaybelle\nMillicent\nPeggie\nRefugio\nRobert\nRowena\nVeronica\nVicky\nVilma\nAline\nAugustina\nCandelaria\nCarmella\nCruz\nDana\nDorene\nEarline\nElisabeth\nEve\nFumiko\nGenoveva\nGracie\nGraciela\nHisako\nIlene\nInes\nJack\nJanette\nJeannie\nLavon\nLeah\nLeatrice\nLeonora\nLita\nMariana\nMatilda\nMelva\nModesta\nNadean\nNettie\nNorine\nPattie\nRosalind\nSandra\nSherry\nSonya\nSusana\nToni\nVeda\nZoe\nAngelica\nAvis\nBarbra\nBelva\nBernadette\nBettye\nBonita\nCarmela\nCarolee\nCecile\nCharleen\nCheryl\nChiyoko\nConchita\nDelphine\nDonald\nEiko\nElinore\nEliza\nEnid\nEula\nEvalyn\nFrancine\nGina\nGoldie\nIdella\nImelda\nImogene\nIola\nJacklyn\nJacquelin\nJanie\nKatheryn\nKeiko\nKimiko\nLidia\nLona\nLoris\nLucinda\nMarcelina\nMarge\nMargy\nMariko\nMarina\nMarylin\nMidori\nNan\nNatividad\nNola\nPansy\nPilar\nRobin\nRosella\nSachiko\nSumiko\nSybil\nTomasa\nTomasita\nYasuko\nZelda\nAgripina\nAllene\nArdis\nAscension\nBenita\nBerta\nBettylou\nBobby\nCaryl\nClair\nConception\nCornelia\nDaphne\nDeborah\nDian\nDina\nElda\nEleanore\nElidia\nElsa\nErmelinda\nErna\nEster\nFrank\nFrankie\nGene\nHattie\nHenry\nHerminia\nHiroko\nHortense\nIla\nIone\nJayne\nJeane\nJill\nJose\nJoycelyn\nJuliana\nLaurie\nLeda\nLorine\nLouella\nLula\nMadeleine\nMadelyn\nMargo\nMarsha\nMarylee\nMarylyn\nMattie\nMaude\nMerilyn\nMerna\nMicaela\nNoel\nNoemi\nOna\nRobbie\nRosalee\nRuthe\nSantos\nTanya\nTeruko\nTheodora\nTrudy\nVerda\nVida\nVivien\nWilliam\nWillie\nYaeko\nYoshiye\nYsabel\nMary\nBarbara\nBetty\nPatricia\nDorothy\nJoan\nShirley\nMarilyn\nBeverly\nMargaret\nGloria\nVirginia\nHelen\nNancy\nDolores\nJoyce\nRuth\nAlice\nFrances\nJean\nLois\nCarol\nDonna\nDoris\nNorma\nEvelyn\nMaria\nPhyllis\nJoanne\nMarjorie\nElizabeth\nJosephine\nEsther\nEleanor\nJune\nJanet\nMarie\nRose\nAnn\nIrene\nMarlene\nSally\nCarmen\nLorraine\nLouise\nJacqueline\nGeraldine\nLupe\nMartha\nCarolyn\nLillian\nJane\nDiane\nMarian\nMildred\nFlorence\nPeggy\nBonnie\nPatsy\nJoann\nAnita\nAudrey\nGrace\nCharlotte\nCatherine\nRita\nJuanita\nAnna\nRoberta\nPat\nKatherine\nBeatrice\nLucille\nPauline\nJanice\nDarlene\nElaine\nConnie\nJeanne\nVera\nMarion\nEdna\nEva\nWanda\nYvonne\nAnne\nRosie\nRachel\nVivian\nJennie\nBernice\nConsuelo\nElsie\nJulia\nRosemary\nEdith\nRamona\nRuby\nLaura\nKathleen\nThelma\nLoretta\nJoy\nMaxine\nDora\nEllen\nEmma\nArlene\nTeresa\nGeorgia\nIsabel\nTheresa\nWilma\nBillie\nClara\nConstance\nJeanette\nDiana\nLucy\nAmelia\nEthel\nBertha\nJo\nCelia\nDelores\nSylvia\nGenevieve\nGladys\nKathryn\nMargie\nStella\nAngelina\nCharlene\nSharon\nAnnie\nJessie\nViolet\nDoreen\nNadine\nLaverne\nGuadalupe\nNellie\nCarole\nEmily\nSarah\nBeverley\nHazel\nMargarita\nClaire\nViola\nAlberta\nAlma\nIda\nJackie\nRosalie\nAntonia\nKay\nLydia\nSusan\nVictoria\nDona\nRebecca\nAngie\nMay\nMarianne\nPearl\nCaroline\nColleen\nPaula\nAurora\nEsperanza\nGertrude\nLeona\nLola\nSuzanne\nVelma\nAgnes\nCecilia\nElvira\nHarriet\nMaureen\nEileen\nJeannette\nMuriel\nBette\nMarguerite\nRosa\nAlicia\nElla\nErnestine\nNaomi\nSara\nInez\nLorna\nLila\nSheila\nSocorro\nLinda\nRosemarie\nAdeline\nAnnette\nBlanche\nDelia\nMarcia\nNina\nOlga\nVerna\nLily\nSue\nBessie\nEloise\nJerry\nFlora\nMabel\nRaquel\nAntoinette\nArmida\nDixie\nElinor\nGail\nPetra\nYolanda\nAngela\nElena\nGwendolyn\nJudith\nLena\nMadeline\nMae\nEstella\nCatalina\nCecelia\nEunice\nFaye\nIrma\nLee\nAdele\nChristine\nDawn\nJosefina\nMyrna\nOlive\nWinifred\nDianne\nHenrietta\nJacquelyn\nJosie\nMolly\nPatty\nPriscilla\nBettie\nErma\nGayle\nHelene\nHilda\nJuana\nMyrtle\nOfelia\nBobbie\nCarla\nCorinne\nCynthia\nJudy\nSusie\nAda\nAmy\nElisa\nMarcella\nMercedes\nMona\nNatalie\nSandra\nValerie\nAileen\nArline\nBeth\nCora\nEvangeline\nGeneva\nJulie\nLillie\nMelba\nAnnabelle\nDella\nFern\nHope\nKaren\nLenore\nLora\nLynn\nBeryl\nChristina\nDaisy\nErlinda\nGwen\nManuela\nMarilynn\nOlivia\nOpal\nPamela\nRenee\nAlyce\nAmalia\nClaudia\nCruz\nDorothea\nEdwina\nEugenia\nIsabelle\nLenora\nLorene\nMaryann\nMiriam\nRena\nAmparo\nCarmelita\nCarolina\nClarice\nCleo\nFay\nGeorgina\nGreta\nIna\nJanis\nKatie\nLucia\nNeva\nTillie\nAdela\nEarlene\nEleanore\nElisabeth\nIris\nMinnie\nRae\nVelia\nBelia\nConcha\nDarleen\nElma\nFrancisca\nFreda\nGerry\nJeannine\nLeah\nLeila\nAiko\nAlta\nAna\nArdis\nCherie\nDale\nDelfina\nDolly\nElsa\nEnid\nEstelle\nEtta\nEula\nFrancine\nGlenna\nLela\nLouella\nMargery\nMitzi\nNelda\nNora\nRafaela\nSetsuko\nSoledad\nSophie\nTherese\nBetsy\nCamille\nCarrie\nCharleen\nDeborah\nDollie\nElvera\nEmilia\nFumiko\nJewel\nJohanna\nKazuko\nLavonne\nLeonor\nLorena\nLuella\nMatilda\nMichiko\nNoreen\nRegina\nRosario\nShirlee\nSofia\nTrinidad\nAdelina\nAdrienne\nAngelita\nBernadette\nCarmel\nClare\nConcepcion\nFrancis\nHortensia\nJenny\nJesus\nJohn\nLaurel\nLilly\nMarietta\nMavis\nNatalia\nPatti\nToni\nAndrea\nBeatriz\nBelen\nBenita\nBernardine\nBeverlee\nDorene\nEldora\nErnestina\nEulalia\nEvangelina\nFelicitas\nGay\nHerlinda\nHortense\nJacklyn\nJan\nJanette\nJeanie\nJoanna\nJovita\nJoycelyn\nLavon\nLilia\nLita\nLou\nLuisa\nMagdalena\nMercy\nMerle\nNatividad\nNoel\nNorene\nRobert\nRosalee\nRowena\nSallie\nSonia\nTomasa\nWilla\nAdelaide\nAida\nAntonette\nArdith\nBonita\nCorrine\nCrystal\nDaphne\nDenise\nDonald\nEdythe\nElenore\nFrank\nJanie\nJewell\nJimmie\nJocelyn\nJoe\nKatharine\nKimiko\nLeslie\nLidia\nLina\nLolita\nLouisa\nLoyce\nMable\nMadelyn\nMadge\nMargret\nMarylou\nMaurine\nMyra\nNettie\nOphelia\nRichard\nRoselyn\nRosita\nRuthie\nSadie\nWilliam\nYasuko\nZoe\nAkiko\nAlene\nBettye\nBeulah\nBobby\nCarlota\nCaryl\nCeleste\nCharline\nConception\nCornelia\nDeloris\nDena\nEffie\nElodia\nEloisa\nElva\nEmiko\nEnriqueta\nEstela\nFlorine\nFrankie\nGeorgene\nGraciela\nHarriett\nHelena\nIva\nJeannie\nJill\nKim\nLauretta\nLeonora\nLeora\nLeta\nLetha\nLoraine\nMadeleine\nMaggie\nMarceline\nMargot\nMariana\nMarilee\nMarjory\nMollie\nNita\nNona\nPattie\nPeggie\nReva\nRhea\nRhoda\nSofie\nSumiko\nSusana\nTheodora\nToshiko\nVeronica\nVilma\nYoko\nYoshiko\nAlida\nAllene\nAlthea\nAlva\nArden\nArdeth\nAvelina\nBernadine\nBruna\nCarrol\nColette\nDelphine\nElayne\nElise\nEster\nEve\nFaith\nFelice\nFusaye\nGretchen\nHaruko\nHermelinda\nHortencia\nIla\nIsabell\nJanine\nJeanine\nJerrie\nJuliette\nJunko\nKarla\nKeiko\nLavina\nLeatrice\nLorine\nLula\nLuz\nLynne\nMamie\nMarianna\nMarsha\nMarta\nMartina\nMasako\nMelva\nMickey\nMillicent\nMillie\nMonica\nNan\nNola\nOllie\nPatrica\nPhoebe\nPolly\nReiko\nRosalind\nSelma\nSonya\nStephanie\nUrsula\nVicki\nWilda\nWinona\nZelda\nBarbara\nMary\nPatricia\nBetty\nJoan\nDorothy\nShirley\nBeverly\nMargaret\nMarilyn\nHelen\nGloria\nNancy\nDolores\nVirginia\nJoyce\nCarol\nAlice\nFrances\nDonna\nRuth\nJean\nLois\nDoris\nJoanne\nNorma\nJanet\nEvelyn\nDiane\nEleanor\nSally\nMarjorie\nMarlene\nJune\nPhyllis\nRose\nIrene\nElizabeth\nCarmen\nJosephine\nMarie\nAnn\nEsther\nLorraine\nCarolyn\nGeraldine\nMaria\nJacqueline\nAnita\nLouise\nMartha\nPat\nMarian\nJoann\nPeggy\nBonnie\nFlorence\nMildred\nJanice\nLillian\nAnna\nRoberta\nLupe\nPatsy\nElaine\nKathleen\nConnie\nCharlotte\nJane\nJuanita\nCatherine\nJeanne\nGrace\nAudrey\nMarion\nRita\nDarlene\nArlene\nSylvia\nEva\nLucille\nEdith\nJeanette\nPauline\nClara\nJulia\nConstance\nDiana\nYvonne\nBeatrice\nRachel\nWanda\nAnne\nCarole\nRosie\nKatherine\nLoretta\nSharon\nThelma\nTheresa\nLaura\nGeorgia\nMargie\nBernice\nJoy\nVivian\nDora\nElsie\nEthel\nDelores\nIsabel\nLucy\nEdna\nRosemary\nCharlene\nEllen\nRuby\nWilma\nSusan\nClaire\nJennie\nLinda\nTeresa\nBillie\nRamona\nJo\nGladys\nNadine\nEmma\nKay\nStella\nJudith\nElvira\nKathryn\nMaureen\nVictoria\nNellie\nSarah\nCaroline\nGenevieve\nMaxine\nAlberta\nBertha\nVera\nAngie\nConsuelo\nIda\nViolet\nAngelina\nBette\nHazel\nJackie\nLaverne\nRosa\nRosalie\nSue\nJessie\nAmelia\nAnnie\nJeannette\nSara\nMarguerite\nSuzanne\nLila\nMarcia\nOlga\nAngela\nEmily\nEileen\nHarriet\nMuriel\nJacquelyn\nPaula\nRosemarie\nBeverley\nAgnes\nAlma\nVelma\nAurora\nColleen\nSandra\nLorna\nCecilia\nMargarita\nErnestine\nGayle\nCelia\nDona\nDoreen\nEstella\nGertrude\nLola\nViola\nDixie\nPearl\nGuadalupe\nHenrietta\nJanis\nLydia\nMyrna\nAntonia\nEloise\nMarianne\nSheila\nVerna\nElena\nGwendolyn\nLeona\nAdrienne\nDelia\nEsperanza\nMabel\nArmida\nJudy\nLynn\nAnnette\nErma\nGail\nMadeline\nValerie\nAdeline\nCynthia\nDianne\nHelene\nIris\nKaren\nLenore\nMay\nBobbie\nCarla\nChristine\nEvangeline\nFaye\nFlora\nLena\nMae\nNaomi\nRebecca\nSocorro\nWinifred\nAntoinette\nArline\nElisa\nInez\nMarilynn\nMona\nPetra\nBessie\nDolly\nElla\nElva\nIrma\nMyra\nPriscilla\nSusie\nTillie\nCatalina\nCecelia\nHilda\nRenee\nAda\nAlicia\nBeth\nDawn\nFaith\nFay\nFern\nJulie\nLily\nMyrtle\nNatalie\nNina\nRae\nRaquel\nBettie\nEunice\nHope\nLillie\nMargery\nMercedes\nMiriam\nSonia\nYolanda\nAdele\nCorinne\nDorothea\nEdwina\nJeannie\nMaryann\nMinnie\nPatty\nAmy\nBetsy\nCarlene\nChristina\nCora\nDella\nEugenia\nGerry\nGlenna\nHortensia\nJoanna\nJuana\nSondra\nAndrea\nAnnabelle\nCarmel\nLee\nLou\nLuella\nMarcella\nMarylou\nMelba\nPamela\nRegina\nToni\nVelia\nAdela\nAileen\nDaisy\nElinor\nErlinda\nGay\nGretchen\nGwen\nIna\nLilly\nLoraine\nMolly\nNola\nOlivia\nSherry\nAlyce\nAmparo\nDelfina\nFrancine\nJenny\nLeila\nNoreen\nRobert\nSonya\nAlta\nAna\nBernadine\nCarrie\nDarleen\nFrankie\nJan\nJosie\nMatilda\nNora\nOfelia\nSallie\nShirlee\nStephanie\nSydney\nAmalia\nAngelita\nCarolina\nClarice\nCleo\nConcha\nElvera\nEstela\nFrancisca\nGreta\nJerry\nJosefina\nJovita\nLenora\nLeonor\nMagdalena\nMickey\nOpal\nRobin\nAdelina\nBelia\nBelva\nBlanche\nClaudine\nDorene\nEmilia\nFrieda\nHerminia\nLavonne\nLita\nLucile\nMarlyn\nNettie\nOphelia\nRichard\nArdis\nCamille\nClaudia\nColette\nConcepcion\nDeborah\nDenise\nElsa\nGeneva\nHarriett\nImogene\nIsabell\nJanette\nJeannine\nJewel\nJill\nKazuko\nLeatrice\nLorene\nMartina\nMillie\nRefugio\nRosario\nTerry\nYoshiko\nYuriko\nAida\nBeatriz\nBeverlee\nBonny\nClare\nCorrine\nDale\nDarline\nGeorgiana\nGlenda\nHelena\nHortencia\nKathy\nLilia\nLolita\nLouisa\nLynne\nMadelyn\nMerilyn\nMollie\nOlive\nPolly\nRena\nSophie\nSusanne\nToshiko\nVeronica\nYoko\nAdella\nAlene\nAyako\nBenita\nBeryl\nCarmelita\nCherie\nCoral\nDorthy\nEffie\nEleanore\nElisabeth\nElise\nEliza\nEtta\nEulalia\nEvangelina\nGeorgette\nGeorgina\nGermaine\nHerlinda\nIla\nJohn\nLela\nLeslie\nLouella\nLucia\nMargot\nMargret\nMarina\nMarta\nMercy\nMidori\nRhoda\nRosita\nSophia\nSusana\nZelma\nArden\nArleen\nAugustina\nAurelia\nBernadette\nBobby\nCarmela\nCaryl\nCharline\nChiyoko\nCornelia\nDian\nDorcas\nDorine\nEarlene\nEloisa\nElouise\nErnestina\nEstelle\nEula\nGracie\nHarlene\nHarriette\nHermelinda\nIgnacia\nIlene\nJewell\nKitty\nLaurel\nLeta\nLidia\nLora\nLorena\nLuz\nMamie\nManuela\nMarcelina\nMarietta\nMarylyn\nMelva\nMichiko\nMillicent\nMina\nNadene\nNedra\nNoel\nNona\nNorine\nPaulette\nRosalind\nRowena\nSetsuko\nSumiko\nSybil\nTeruko\nTherese\nVelda\nVicki\nWilhelmina\nWillie\nYukiko\nZoe\nAdelle\nAlejandra\nAllene\nAlva\nAlvina\nAvis\nBelen\nBerta\nCamilla\nCarleen\nCarolee\nCarrol\nCharleen\nClarissa\nConchita\nDaphne\nDelma\nElma\nEmiko\nEnid\nEnriqueta\nFreda\nGearldine\nGene\nGeri\nGilda\nHiroko\nHisako\nHolly\nHortense\nIola\nIone\nIsobel\nJacklyn\nJacquelin\nJeri\nJesus\nJosefa\nJuliet\nJuliette\nKarla\nLauretta\nLea\nLida\nLisa\nLorita\nLucinda\nLucretia\nLula\nMara\nMargo\nMarilee\nMarilou\nMarjory\nMaryanne\nMarylin\nMavis\nMeredith\nMitzi\nMiyoko\nNan\nNatalia\nNelda\nNorene\nOra\nPatti\nPhoebe\nRafaela\nReva\nRosalee\nRoselyn\nRosetta\nSadie\nSelma\nTheodora\nTomiko\nWilda\nWilla\nWinona\nBarbara\nMary\nPatricia\nBetty\nJoan\nShirley\nDorothy\nBeverly\nMargaret\nNancy\nGloria\nMarilyn\nCarol\nHelen\nVirginia\nDolores\nJoyce\nDonna\nJean\nFrances\nJanet\nAlice\nRuth\nDiane\nDoris\nMarlene\nCarolyn\nLois\nPhyllis\nSally\nEvelyn\nJoanne\nAnn\nMarjorie\nEleanor\nElizabeth\nIrene\nMarie\nNorma\nRose\nJosephine\nCarmen\nLorraine\nEsther\nGeraldine\nJacqueline\nLouise\nMaria\nPat\nMartha\nDarlene\nJune\nCarole\nJane\nBonnie\nJoann\nAnna\nFlorence\nRoberta\nAnita\nMarian\nJanice\nLillian\nSylvia\nPatsy\nArlene\nLupe\nPeggy\nElaine\nJeanne\nKathleen\nPauline\nJuanita\nRita\nAudrey\nCharlotte\nGrace\nMildred\nCatherine\nSharon\nLoretta\nMargie\nRachel\nLaura\nJennie\nBernice\nLucille\nConnie\nDiana\nBeatrice\nMarion\nTheresa\nVivian\nAnne\nJeanette\nEva\nKatherine\nKathryn\nJulia\nKay\nLucy\nSusan\nEdith\nYvonne\nRosie\nClara\nEllen\nEdna\nJoy\nWilma\nRosemary\nDora\nSarah\nWanda\nElsie\nGeorgia\nMaxine\nCharlene\nDelores\nThelma\nJudith\nNadine\nSue\nJo\nSandra\nStella\nVera\nJessie\nLydia\nAnnie\nClaire\nRamona\nConsuelo\nRuby\nBette\nConstance\nGladys\nHazel\nMarcia\nEmily\nJudy\nMaureen\nNellie\nAmelia\nAngelina\nEmma\nCaroline\nJackie\nLinda\nRosalie\nJacquelyn\nPaula\nSuzanne\nTeresa\nEthel\nIsabel\nEileen\nLola\nAlma\nBillie\nSara\nBertha\nGail\nIda\nVictoria\nViolet\nCecilia\nClaudia\nLaverne\nRosa\nCelia\nDixie\nGenevieve\nMarianne\nAurora\nJeannette\nOlga\nAngela\nAngie\nBeverley\nKaren\nLeona\nElvira\nHarriet\nInez\nNina\nSheila\nGwendolyn\nAlberta\nDoreen\nVelma\nVerna\nDelia\nLynn\nRosemarie\nViola\nLila\nMargarita\nChristine\nColleen\nDona\nLorna\nRebecca\nAnnette\nGuadalupe\nValerie\nAgnes\nAntonia\nEsperanza\nMyrna\nWinifred\nAdrienne\nEloise\nMuriel\nAlicia\nEunice\nFaye\nGwen\nPriscilla\nElinor\nErnestine\nGertrude\nIrma\nJosie\nLily\nMaryann\nMyrtle\nPearl\nRae\nArmida\nDianne\nMae\nMarguerite\nMay\nAdele\nHenrietta\nJerry\nJulie\nLee\nNaomi\nBobbie\nCatalina\nElena\nElla\nHilda\nMabel\nSocorro\nBessie\nCarla\nChristina\nCynthia\nErnestina\nLeah\nTerry\nArline\nDorothea\nFay\nHelene\nHope\nMarilynn\nMiriam\nNatalie\nAileen\nCecelia\nCorinne\nEstella\nLena\nMadeline\nNora\nYolanda\nBettie\nConcha\nEvangeline\nLeila\nMargery\nPatty\nAdeline\nBlanche\nElva\nFlora\nGayle\nGlenda\nLavonne\nMolly\nMona\nMyra\nNoreen\nOfelia\nRenee\nAntoinette\nClaudette\nDolly\nElisa\nEstelle\nHarriett\nJanis\nLeslie\nLora\nMercedes\nOlive\nRegina\nAda\nDawn\nDella\nGretchen\nIris\nJeannine\nLilly\nMarylou\nMelba\nPetra\nRaquel\nAmy\nClare\nFern\nJoanna\nJosefina\nJuana\nLynne\nNona\nRobin\nSusie\nAlta\nBeryl\nCarlene\nCarmelita\nEdwina\nErlinda\nErma\nLaurel\nLenore\nLoraine\nLorene\nMarcella\nOpal\nSonya\nSydney\nToni\nAdela\nAllene\nAnnabelle\nBeulah\nCora\nEarlene\nEugenia\nFaith\nIna\nJan\nJeanie\nJeannie\nJenny\nKatie\nLucia\nMagdalena\nMichiko\nMinnie\nOlivia\nSondra\nVelda\nWinona\nAdelina\nAndrea\nArdith\nBeth\nCarrie\nClarice\nDarline\nDee\nDelfina\nDenise\nGeorgina\nGlenna\nJeanine\nJohanna\nKatharine\nLela\nLou\nMatilda\nMeredith\nOphelia\nRosalind\nStephanie\nSumiko\nWilda\nAmparo\nBernadine\nBerta\nCamille\nCarmel\nCharleen\nDarleen\nElsa\nFrankie\nGeneva\nGreta\nHortencia\nHortensia\nImogene\nJanette\nLillie\nLouella\nLuella\nMargot\nMarina\nMillicent\nNelda\nNell\nNeva\nSherry\nSophie\nTheodora\nTillie\nToshiko\nAloha\nAlyce\nAmalia\nBelen\nBelva\nBernadette\nBetsy\nCarolee\nCherie\nDaisy\nDorthy\nEarline\nElma\nElvera\nEnedina\nGerry\nJohn\nJovita\nLolita\nLouisa\nLucile\nLynette\nMillie\nMollie\nNira\nNorine\nRhoda\nRuthie\nShirlee\nSofia\nSonia\nSusanne\nWilla\nAna\nAngelita\nBenita\nBrenda\nCarolina\nCharline\nClaudine\nCleo\nConcepcion\nCruz\nDaphne\nDeloris\nEleanore\nFrancine\nFrancisca\nFrieda\nJacquelin\nJanie\nJayne\nJewell\nJill\nJuliet\nKiyoko\nLuz\nMable\nMadge\nManuela\nMarylin\nMaybelle\nMerle\nMichelle\nMonica\nNanette\nPatti\nRichard\nRobert\nSharlene\nWillie\nYoshiko\nAida\nAurelia\nAvelina\nCamilla\nCarmela\nCarroll\nCherry\nChloe\nColette\nConception\nDale\nDollie\nDorene\nEvonne\nGay\nGene\nGeorgette\nHiroko\nIlene\nJewel\nJoe\nJulianne\nKimiko\nKitty\nLavon\nLea\nLenora\nLilia\nMaggie\nMarietta\nMarjory\nMarlyn\nMarylyn\nMaurine\nMelva\nMerry\nNadene\nNan\nNedra\nNettie\nNorene\nPamela\nPeggie\nPhoebe\nRochelle\nRosalyn\nRosario\nRowena\nSadie\nSallie\nSoledad\nTrinidad\nVesta\nWilliam\nYoko\nZoe\nAbigail\nAline\nAlthea\nAmanda\nArden\nArla\nAvis\nBecky\nBelia\nBennie\nBertie\nBettye\nBlanca\nBonita\nCarleen\nCarmella\nConchita\nCorrine\nDana\nDeborah\nDian\nDinah\nDorcas\nEarnestine\nEiko\nElodia\nEloisa\nEmiko\nEstela\nEvangelina\nFlorine\nFreda\nGeorgene\nGeorgie\nGerald\nGoldie\nGracie\nHerminia\nInes\nIva\nJacklyn\nJanine\nJeane\nKarin\nKaye\nKazuko\nLavina\nLelia\nLeta\nLidia\nLorena\nLoyce\nLula\nLyla\nMadeleine\nMargy\nMariann\nMarilee\nMercy\nMerna\nMickey\nMinerva\nMitzi\nMiyoko\nNatalia\nNola\nOma\nPattie\nRay\nRoma\nRosita\nSachiko\nSharleen\nSherrie\nTherese\nTommie\nUrsula\nVelia\nVeronica\nZella\nMary\nBarbara\nPatricia\nShirley\nJoan\nBetty\nCarol\nNancy\nDorothy\nMargaret\nHelen\nBeverly\nMarilyn\nGloria\nVirginia\nDonna\nJoyce\nDolores\nJanet\nJean\nRuth\nDiane\nAlice\nFrances\nJoanne\nSally\nArlene\nAnn\nCarolyn\nElizabeth\nLois\nDoris\nNorma\nEvelyn\nIrene\nMarjorie\nMarlene\nEleanor\nPhyllis\nLorraine\nDarlene\nMarie\nJosephine\nJune\nLouise\nCarmen\nJoann\nEsther\nPat\nRose\nGeraldine\nElaine\nCarole\nMartha\nSylvia\nJacqueline\nMaria\nKathleen\nSandra\nJanice\nAnna\nSharon\nCharlotte\nAnita\nPeggy\nBonnie\nMarian\nConnie\nPauline\nLupe\nPatsy\nJane\nLillian\nRoberta\nYvonne\nBeatrice\nDiana\nSusan\nRita\nCatherine\nGrace\nJuanita\nJeanne\nRosie\nJo\nAudrey\nKatherine\nFlorence\nAnne\nLaura\nLinda\nLoretta\nMargie\nJudith\nTheresa\nJackie\nJessie\nMarion\nLucille\nRachel\nKay\nJulia\nRamona\nWanda\nJeanette\nKathryn\nCharlene\nGail\nJennie\nSuzanne\nEva\nEdith\nEllen\nMaureen\nMildred\nClara\nJoy\nMyrna\nDixie\nEileen\nEmma\nRuby\nJudy\nRosemary\nDora\nElsie\nNadine\nVera\nEthel\nGeorgia\nGladys\nBillie\nAmelia\nConstance\nEdna\nSarah\nMarcia\nRosalie\nWilma\nAnnie\nLydia\nSue\nThelma\nVictoria\nEmily\nTeresa\nCaroline\nDelores\nClaire\nIda\nIsabel\nLola\nLucy\nMaxine\nLaverne\nBeverley\nCelia\nSheila\nHazel\nLynn\nBernice\nNellie\nPaula\nRosa\nBertha\nKaren\nVivian\nClaudia\nJeannette\nSara\nAngie\nDelia\nLeona\nNaomi\nStella\nViolet\nAdrienne\nAlberta\nConsuelo\nDianne\nDona\nHarriet\nBette\nGlenda\nJulie\nValerie\nVerna\nAngelina\nJacquelyn\nNina\nArline\nGenevieve\nOlga\nRebecca\nMarguerite\nMarianne\nViola\nGuadalupe\nLorna\nAgnes\nAlma\nAurora\nCynthia\nMargarita\nRosemarie\nAdele\nArmida\nColleen\nMadeline\nPriscilla\nVelma\nAnnette\nCecilia\nFlora\nMuriel\nAlicia\nAntonia\nChristine\nDorothea\nEsperanza\nLily\nEloise\nIrma\nNatalie\nAdeline\nDoreen\nElisa\nElvira\nGertrude\nJosie\nLee\nLila\nMyrtle\nElla\nGayle\nLeah\nLenore\nMonica\nOfelia\nShirlee\nCecelia\nFaye\nHilda\nMaryann\nMiriam\nRenee\nErnestine\nEstella\nFay\nJoanna\nLena\nBettie\nHope\nMona\nPatty\nPearl\nAileen\nChristina\nClaudette\nErma\nGwendolyn\nHenrietta\nInez\nJenny\nLynne\nMae\nDella\nHelene\nJanis\nMay\nRae\nSocorro\nAntoinette\nBlanche\nDaisy\nEstelle\nEunice\nMarilynn\nMolly\nAngela\nCarla\nDarleen\nDorene\nGay\nMabel\nSallie\nTillie\nClarice\nCorinne\nEarlene\nElena\nLela\nMyra\nNora\nOpal\nWinifred\nYolanda\nAlyce\nBernadette\nBeth\nCora\nGeorgina\nGretchen\nJeannine\nJill\nLeila\nMarcella\nMarylou\nNola\nBenita\nBobbie\nCatalina\nDale\nDeborah\nDenise\nDolly\nFern\nFrancisca\nJanette\nJosefina\nMargery\nOlivia\nRaquel\nVelia\nAndrea\nBessie\nCleo\nDawn\nElinor\nFaith\nGerry\nGlenna\nGwen\nIna\nLavonne\nLillie\nLoraine\nLou\nLucia\nMeredith\nNona\nOlive\nSelma\nSydney\nBeverlee\nEvangelina\nEvangeline\nHortencia\nIris\nJerry\nJohanna\nKatharine\nNoreen\nPetra\nRosario\nSondra\nTerry\nAllene\nAmy\nCarolee\nEugenia\nJan\nJeanie\nJeannie\nJuana\nLenora\nLeslie\nPolly\nToni\nAda\nAna\nAnnabelle\nBetsy\nCarmelita\nCharleen\nClare\nConcha\nEdwina\nElvera\nErlinda\nFreda\nFrieda\nGeneva\nLaurie\nLynda\nMable\nMargot\nNatalia\nPamela\nRegina\nVickie\nWilla\nArleen\nAurelia\nBernadine\nBeulah\nBonita\nCarlene\nCeleste\nConcepcion\nDelfina\nEnid\nEstela\nFlorine\nHortensia\nIla\nJeri\nLilly\nLona\nLora\nMatilda\nMercedes\nNan\nOphelia\nRobin\nRosalind\nSharlene\nSophie\nStephanie\nAlvina\nArden\nBeatriz\nCarmel\nCharles\nCheryl\nCorrine\nCrystal\nDeloris\nElva\nEmilia\nFrancis\nFrankie\nGinger\nJacklyn\nLea\nLeonor\nLorene\nLuanne\nMarietta\nMillicent\nNeva\nNorine\nRobert\nRosita\nSadie\nSherry\nSusanne\nSusie\nTrinidad\nYoshiko\nAida\nAkiko\nAlva\nAmparo\nBeryl\nCathryn\nCecile\nCherie\nDana\nDelma\nEiko\nEleanore\nElma\nFelicia\nGeorgiana\nIsabelle\nJanie\nJewel\nKathy\nLaurel\nMagdalena\nMarilou\nMarina\nMasako\nMillie\nMinnie\nMollie\nNanette\nNita\nOla\nRochelle\nSetsuko\nSonia\nSonya\nVeronica\nWilda\nWinona\nAdela\nAdelina\nAlexandra\nAline\nAngelita\nBelia\nCarlotta\nCarrol\nCaryl\nCharmaine\nConchita\nDarline\nDiann\nEffie\nEmiko\nEnedina\nErlene\nFrancine\nGene\nGeorgette\nGeorgine\nGreta\nHerlinda\nImogene\nJewell\nJudie\nJustine\nKarin\nKazuko\nLeone\nLita\nLuann\nLuella\nMadeleine\nMarcelina\nMargo\nMarilee\nMarna\nMarylin\nMarylyn\nMaurine\nMaybelle\nMelba\nMelva\nMichiko\nMickey\nMitzi\nNelda\nNettie\nPatt\nReba\nReva\nRosalee\nSherrill\nShigeko\nTomasa\nToshiko\nTrudy\nValeria\nVida\nZelda\nAdelle\nAlta\nAmalia\nAmanda\nAngeline\nArdis\nBelva\nBillee\nBrenda\nCamille\nCarmela\nCarmella\nCarolina\nCruz\nDaphne\nDawna\nDee\nDian\nDione\nDonald\nDottie\nElise\nEloisa\nElsa\nErna\nEtta\nEula\nFelicitas\nGeorge\nGina\nGlory\nHannah\nHeather\nHelena\nHerminia\nHiroko\nIva\nJacquelin\nJennifer\nJerrie\nJoe\nJuliana\nKarla\nKarol\nKatie\nKaye\nKeiko\nLavon\nLeonora\nLeora\nLeta\nLuana\nLyla\nLynette\nMadelyn\nMarcy\nMarita\nMarjory\nMarsha\nMelinda\nMercy\nMerilyn\nMerle\nMerlene\nMidori\nMimi\nMinerva\nNoralee\nPatti\nPaulina\nRosella\nRoxana\nSachiko\nSonja\nSusana\nTanya\nTherese\nUrsula\nVelda\nWilhelmina\nYoko\nZola\nBarbara\nMary\nShirley\nPatricia\nJoan\nCarol\nBetty\nNancy\nMarilyn\nBeverly\nMargaret\nDorothy\nDonna\nHelen\nVirginia\nDolores\nGloria\nFrances\nJanet\nDiane\nJoyce\nJean\nRuth\nJoanne\nAlice\nMarlene\nSally\nCarolyn\nDarlene\nSandra\nLois\nNorma\nAnn\nPhyllis\nElizabeth\nDoris\nSharon\nJanice\nRoberta\nMarjorie\nRose\nArlene\nEvelyn\nEleanor\nIrene\nMarie\nMartha\nCarmen\nEsther\nGeraldine\nJacqueline\nCarole\nJosephine\nPat\nJoann\nKathleen\nMaria\nSylvia\nJane\nYvonne\nElaine\nLorraine\nJune\nLouise\nBonnie\nJuanita\nJudith\nAnita\nSusan\nAnna\nMarian\nLoretta\nLupe\nCharlotte\nConnie\nJudy\nSheila\nLillian\nGrace\nPatsy\nAnne\nJo\nLucille\nClaudia\nPeggy\nAudrey\nKatherine\nFlorence\nRachel\nGail\nPauline\nJeanette\nDiana\nRita\nCatherine\nBeatrice\nLinda\nKaren\nRosie\nWanda\nEllen\nGeorgia\nJoy\nJeanne\nMildred\nTheresa\nJulia\nKathryn\nLaura\nSuzanne\nCharlene\nKay\nMargie\nJennie\nMaureen\nMarcia\nNadine\nEva\nMarion\nDixie\nWilma\nEdith\nRosemary\nVera\nVivian\nBertha\nElsie\nTeresa\nLucy\nBernice\nRamona\nRuby\nSue\nEmily\nMaxine\nSarah\nStella\nAnnette\nEdna\nJackie\nMyrna\nDora\nJessie\nValerie\nAngelina\nDelores\nBeverley\nClara\nEthel\nLydia\nEmma\nRosa\nCelia\nIsabel\nThelma\nChristine\nCaroline\nGladys\nIda\nHazel\nClaudette\nEileen\nGenevieve\nClaire\nConstance\nNellie\nAlma\nAngie\nJeannette\nJosie\nMargarita\nVictoria\nDoreen\nNaomi\nVerna\nAnnie\nMuriel\nAmelia\nCecilia\nLaverne\nPaula\nAdrienne\nHarriet\nArline\nBillie\nDona\nLeona\nRosalie\nEsperanza\nIrma\nSara\nDianne\nGlenda\nLynn\nViolet\nLola\nAngela\nConsuelo\nCynthia\nMarianne\nNina\nOlga\nErnestine\nMarguerite\nColleen\nLynne\nRosemarie\nAgnes\nAntonia\nCarla\nJacquelyn\nJulie\nAurora\nGertrude\nHenrietta\nPearl\nRebecca\nArmida\nFaye\nMabel\nYolanda\nAlicia\nAntoinette\nGayle\nLorna\nMona\nVelma\nAlberta\nBette\nGuadalupe\nLee\nLenore\nLily\nMarilynn\nPamela\nWinifred\nGwendolyn\nMyrtle\nGwen\nViola\nDelia\nEstella\nMadeline\nTerry\nCora\nDawn\nGretchen\nHelene\nLeah\nMay\nMercedes\nMiriam\nShirlee\nAdeline\nBessie\nCecelia\nDale\nElvira\nFlora\nLeslie\nPriscilla\nRae\nSocorro\nAdele\nEvangeline\nJanis\nLena\nMaryann\nNatalie\nPatty\nRenee\nSherry\nStephanie\nToni\nAdela\nAmy\nBobbie\nCarlene\nGay\nInez\nLila\nMarsha\nSusie\nBeth\nBlanche\nElla\nHilda\nJoanna\nLorene\nMolly\nRochelle\nChristina\nDolly\nJerry\nJill\nMarcella\nMargery\nMonica\nNoreen\nSondra\nAndrea\nBettie\nCatalina\nDenise\nEarlene\nElena\nEloise\nGerry\nJeannie\nJosefina\nLou\nMarylou\nSonia\nCharleen\nDella\nDorene\nErma\nFay\nHope\nIna\nOlivia\nSallie\nDana\nDeborah\nEstelle\nEunice\nGreta\nIris\nJeanie\nLavonne\nMargo\nNora\nPatti\nRaquel\nRegina\nRobin\nSonya\nAlta\nAngelita\nBernadine\nCheryl\nDorothea\nElisa\nElva\nFlorine\nKatharine\nKathy\nLenora\nMercy\nMinnie\nNorine\nOfelia\nOphelia\nRhoda\nRosalind\nSharlene\nSusanne\nSydney\nTillie\nAda\nAmparo\nCarmelita\nCarolee\nCarrie\nClarice\nCorinne\nErlinda\nEtta\nEvangelina\nFern\nLea\nLuanne\nMarylyn\nMyra\nPetra\nSandy\nAlyce\nDaisy\nDeloris\nElinor\nFreda\nGinger\nHarriett\nHortencia\nJacklyn\nJan\nLynda\nMagdalena\nMerle\nNola\nNona\nRosario\nRosita\nSachiko\nWilla\nYoshiko\nAida\nAllene\nCherie\nClaudine\nEleanore\nFaith\nGlenna\nHeather\nImogene\nJanette\nJanie\nJeannine\nJenny\nJeri\nJewel\nJovita\nKatie\nLeora\nLucia\nLula\nManuela\nMarge\nMargot\nMollie\nNan\nOpal\nSidney\nTherese\nAdelina\nAurelia\nBelva\nBetsy\nCamille\nCarleen\nConcepcion\nDarleen\nEdwina\nElvera\nFrancine\nFrankie\nGeneva\nGeorgina\nGoldie\nHerminia\nIone\nIva\nJohanna\nKazuko\nLaurel\nLillie\nLuella\nMable\nMae\nMatilda\nMelba\nMeredith\nMichiko\nPaulette\nRosetta\nZoe\nArdith\nArleen\nBeatriz\nBelia\nBeverlee\nBlanca\nCarmela\nCarolina\nCarroll\nCeleste\nClare\nCleo\nCordelia\nErnestina\nEstela\nEugenia\nFrancis\nGaye\nGracie\nHelena\nHerlinda\nJayne\nJewell\nJuliet\nKiyoko\nLaurie\nLeila\nLeota\nLilia\nMarina\nMaryellen\nMasako\nMerry\nMichelle\nMillie\nNannette\nNorene\nRena\nRobert\nRowena\nSaundra\nSetsuko\nShelby\nVeronica\nWinnie\nAdell\nAileen\nAna\nArden\nArdis\nAugustina\nBenita\nBettye\nCarmel\nCathy\nConcha\nCorrine\nCristina\nDarline\nDelphine\nDian\nDorris\nElise\nElma\nEmiko\nEnedina\nFrancisca\nFrieda\nGale\nGeorgiana\nGerda\nGraciela\nHattie\nHiroko\nHortensia\nIlene\nIsabelle\nJanelle\nJohn\nLavern\nLela\nLeonor\nLilly\nLora\nLoraine\nLouella\nLuana\nLucile\nLynnette\nMaggie\nMari\nMarjory\nMarlyn\nMaryjo\nMaurine\nMelody\nMerlene\nOlive\nOtilia\nRichard\nSharron\nSigrid\nTrinidad\nVerda\nVicki\nVickie\nWinnifred\nWinona\nYoko\nAdelia\nAiko\nAlpha\nAlva\nAndree\nAntonette\nAsako\nAstrid\nAva\nBeryl\nBonita\nBrenda\nCarolynn\nCarrol\nCaryl\nCharline\nChiyoko\nDarlyne\nDelma\nDominga\nDorine\nEdythe\nEilene\nFelicia\nHarlene\nIsabell\nJacquelin\nJacqulyn\nJuana\nJulianne\nKarin\nKarleen\nKimiko\nKitty\nLenna\nLina\nLorena\nLoris\nMadeleine\nMardell\nMarilee\nMartina\nMarylin\nMelinda\nMerilyn\nMikell\nMitzi\nNanette\nNelda\nNettie\nNeva\nNobuko\nPenny\nRaylene\nRosanne\nRoslyn\nSadie\nShelley\nShirlene\nShirly\nSilvia\nSophie\nSumiko\nTania\nTanya\nTerrie\nTonia\nTrini\nVanessa\nYuriko\nMary\nBarbara\nPatricia\nCarol\nShirley\nJoan\nNancy\nBetty\nBeverly\nMarilyn\nDonna\nMargaret\nVirginia\nHelen\nDorothy\nGloria\nJoyce\nDolores\nDiane\nJanet\nFrances\nSharon\nSandra\nAlice\nCarolyn\nMarlene\nRuth\nJoanne\nSally\nJanice\nJean\nDarlene\nAnn\nLois\nNorma\nElizabeth\nIrene\nPhyllis\nEleanor\nCarole\nArlene\nRoberta\nRose\nMarie\nSylvia\nPat\nJudith\nDoris\nEsther\nGeraldine\nEvelyn\nMaria\nYvonne\nAnita\nKathleen\nJacqueline\nCarmen\nMartha\nJane\nGail\nJoann\nJosephine\nLouise\nElaine\nLorraine\nMarjorie\nPeggy\nLinda\nSusan\nJune\nKaren\nBonnie\nJudy\nConnie\nLoretta\nJo\nCharlotte\nLupe\nAnna\nJeanette\nPauline\nRachel\nCharlene\nLillian\nGrace\nKatherine\nMarian\nPatsy\nKay\nCatherine\nRita\nWanda\nJoy\nFlorence\nJuanita\nSuzanne\nJulia\nRosie\nJeanne\nAnne\nMyrna\nClaudia\nMarcia\nSue\nGeorgia\nMargie\nLaura\nDiana\nBeatrice\nJackie\nMarion\nLucy\nDixie\nSheila\nJennie\nMaureen\nRosemary\nRamona\nMildred\nAnnette\nAudrey\nLydia\nEllen\nEdith\nMaxine\nTheresa\nKathryn\nThelma\nPaula\nWilma\nDelores\nLucille\nElsie\nJessie\nStella\nBernice\nCaroline\nEdna\nHazel\nIsabel\nEmma\nGayle\nAngelina\nDora\nSarah\nArline\nRuby\nVera\nNadine\nTeresa\nVivian\nClaire\nClara\nGlenda\nAmelia\nCynthia\nJeannette\nRosemarie\nCecilia\nChristine\nDianne\nValerie\nAngie\nClaudette\nConsuelo\nJulie\nMargarita\nBertha\nColleen\nEva\nLola\nBeverley\nLynn\nSara\nCelia\nConstance\nEmily\nNellie\nGenevieve\nLeona\nBette\nRosalie\nAnnie\nBillie\nEthel\nGladys\nJacquelyn\nAlma\nEileen\nJosie\nVelma\nYolanda\nAurora\nHarriet\nMarsha\nAdrienne\nVictoria\nAngela\nDona\nFaye\nMarianne\nNaomi\nVerna\nAlicia\nJanis\nLynne\nRosa\nSherry\nViola\nViolet\nDawn\nEstella\nIda\nPearl\nGay\nMuriel\nBobbie\nCecelia\nErnestine\nGertrude\nGretchen\nLaverne\nMadeline\nNina\nPriscilla\nAlberta\nDella\nDoreen\nHenrietta\nMarguerite\nMona\nAntonia\nElvira\nGwendolyn\nOlga\nRebecca\nCarla\nDelia\nEsperanza\nHope\nLee\nMaryann\nPatty\nRochelle\nAgnes\nInez\nNora\nOlivia\nGuadalupe\nIris\nLorna\nMarylou\nMerle\nMyrtle\nNoreen\nArmida\nElla\nGerry\nStephanie\nAdeline\nLeslie\nNatalie\nRaquel\nTerry\nAntoinette\nChristina\nDale\nDenise\nErma\nFern\nHelene\nIrma\nLily\nMolly\nRenee\nBeth\nCarlene\nEarlene\nFlora\nGwen\nIna\nKathy\nLeah\nPamela\nRae\nSharlene\nBlanche\nClarice\nEloise\nSherrill\nCora\nElisa\nJerry\nLila\nMarilynn\nShirlee\nSocorro\nSonia\nAdele\nBettie\nFay\nGeneva\nLena\nMonica\nNona\nOfelia\nRosalind\nSallie\nTillie\nCatalina\nFaith\nGinger\nHilda\nJan\nJill\nLenore\nLilly\nMabel\nMay\nMercedes\nMiriam\nMyra\nRosario\nSharron\nSondra\nDorene\nEunice\nGlenna\nMarina\nNola\nSonja\nWinifred\nAdelina\nAllene\nArleen\nCorinne\nDarla\nDelfina\nElena\nElinor\nElva\nEvangeline\nHortencia\nLorene\nMagdalena\nSusie\nAda\nAlta\nCarroll\nDarleen\nDeborah\nEleanore\nErlinda\nGracie\nIsabelle\nJeanie\nJoanna\nKaye\nLora\nMarcella\nMargot\nMelba\nMelva\nMeredith\nPetra\nRegina\nSusanne\nWendy\nAdela\nAileen\nAlison\nAmy\nAna\nBessie\nBeverlee\nCarmelita\nCherie\nDeanna\nDolly\nEdwina\nJenny\nLuella\nMarcelina\nOpal\nPenny\nSydney\nToni\nAndrea\nBeryl\nBetsy\nCamille\nCecile\nCheryl\nCleo\nDarline\nDorothea\nEstela\nEugenia\nFrancine\nJeannie\nKatie\nLaurie\nLouella\nMargery\nMargo\nMarietta\nMarilee\nMarta\nMarva\nMelinda\nMillie\nNelda\nRobin\nSonya\nTonya\nCarrie\nCathy\nCharleen\nCruz\nDeloris\nEstelle\nFelicia\nFumiko\nGaye\nGeorgette\nHelena\nHortensia\nIlene\nJacque\nJanette\nJuana\nKatharine\nLela\nMae\nMaryanne\nMatilda\nPatti\nAlva\nAmalia\nAngelita\nBeulah\nCarolina\nDana\nDee\nEnedina\nErnestina\nEtta\nGeri\nHerminia\nJeri\nLillie\nLisa\nLouisa\nLucia\nLula\nLynda\nMadeleine\nManuela\nMarjory\nMarleen\nMickey\nMillicent\nNeva\nOlive\nPenelope\nRhoda\nRoxie\nSophie\nVelia\nAida\nBrenda\nCarolee\nCaryl\nCeleste\nChloe\nConcepcion\nCornelia\nDaisy\nDorine\nElma\nElvera\nEvangelina\nFlorine\nFrancis\nFrieda\nHarlene\nHarriett\nHolly\nJoe\nJohanna\nLavonne\nLeila\nLeola\nLita\nLoraine\nLou\nLouann\nLucretia\nLynette\nMarylin\nMavis\nMichele\nMichelle\nMichiko\nMollie\nNita\nNoel\nOphelia\nPaulette\nReba\nRosita\nRowena\nRoxanna\nSandy\nSelma\nSherrie\nShiela\nSoledad\nTanya\nTherese\nVicki\nVida\nWilda\nAdriana\nAmparo\nArdith\nBea\nBeatriz\nBernadette\nBernadine\nBonita\nCarmel\nCarrol\nChris\nConcha\nCoralie\nDarlyn\nDian\nEarline\nEffie\nElia\nElsa\nEmiko\nErlene\nFrankie\nGale\nGeorgie\nGreta\nHerlinda\nIngrid\nJacklyn\nJeanine\nJeannine\nJeraldine\nJohn\nJovita\nKarol\nKeiko\nLavina\nLidia\nLuann\nMable\nMadge\nMaurine\nMerry\nMimi\nNorine\nOra\nRobyn\nRoselyn\nRoxanne\nSaundra\nSheryl\nSigrid\nSusanna\nSybil\nToby\nVeronica\nVickie\nVirgie\nWinona\nZelda\nAlexandra\nAlyce\nBelva\nBenita\nBerta\nCamilla\nCecily\nCharmaine\nClaudine\nDebbie\nDelma\nDena\nDiann\nDianna\nEarleen\nElise\nElissa\nEliza\nElnora\nEmilia\nErin\nErna\nEster\nEvalyn\nFrancisca\nGaylene\nGeorgene\nHarriette\nImogene\nInes\nJanie\nJayne\nJerrie\nJewel\nKarin\nKarla\nKarlene\nKatheryn\nLaureen\nLauretta\nLenora\nLeonor\nLeonora\nLeta\nLolita\nLona\nLorretta\nLuanne\nLucile\nLuisa\nMamie\nMarilyne\nMarlyn\nMartina\nMasako\nMerilyn\nMinnie\nMitzi\nNada\nNancie\nNanette\nNatalia\nNettie\nPhoebe\nPolly\nReiko\nRena\nRuthie\nSetsuko\nShirlene\nSumiko\nToshiko\nTrinidad\nVelda\nVelta\nVicky\nWilla\nYoshiko\nZoe\nMary\nBarbara\nPatricia\nCarol\nShirley\nNancy\nBetty\nJoan\nDonna\nBeverly\nMargaret\nMarilyn\nVirginia\nDorothy\nDiane\nHelen\nJoyce\nCarolyn\nSharon\nGloria\nJanet\nFrances\nSandra\nJanice\nDolores\nAlice\nLinda\nDarlene\nElizabeth\nJoanne\nCarole\nJean\nRuth\nAnn\nMarlene\nNorma\nSally\nJudith\nRoberta\nMarie\nArlene\nRose\nEvelyn\nEleanor\nIrene\nDoris\nPhyllis\nPat\nLois\nJudy\nJacqueline\nGail\nMartha\nJoann\nSusan\nSylvia\nKathleen\nPeggy\nAnita\nGeraldine\nElaine\nYvonne\nDeanna\nLoretta\nBonnie\nDiana\nKaren\nMaria\nEsther\nConnie\nMarjorie\nJune\nJane\nCharlotte\nJeanette\nJosephine\nAnna\nCarmen\nLouise\nKatherine\nSuzanne\nCatherine\nCharlene\nJo\nRachel\nRita\nJuanita\nPatsy\nAnne\nMarcia\nWanda\nLupe\nKay\nLorraine\nLillian\nSue\nMarian\nKathryn\nJeanne\nLaura\nPaula\nDixie\nMargie\nMyrna\nJulia\nSheila\nBeatrice\nPauline\nRuby\nGeorgia\nDianne\nClaudia\nGrace\nLucille\nMaureen\nWilma\nEva\nMildred\nEllen\nFlorence\nLydia\nRosalie\nRosemary\nRosie\nJennie\nTheresa\nBillie\nJackie\nVera\nAudrey\nClara\nConstance\nRamona\nEdith\nMaxine\nCaroline\nElsie\nGlenda\nLucy\nVivian\nDelores\nEmily\nIsabel\nLynn\nBernice\nJoy\nGayle\nEdna\nJessie\nColleen\nLynne\nEileen\nMarion\nValerie\nRosemarie\nAnnette\nDora\nNadine\nCecilia\nRosa\nArline\nChristine\nJeannette\nVictoria\nBertha\nCelia\nLola\nVerna\nGladys\nAngie\nStella\nTeresa\nIda\nJulie\nNellie\nToni\nBeverley\nEmma\nMarianne\nThelma\nCynthia\nHazel\nJacquelyn\nYolanda\nEthel\nHarriet\nMarsha\nSara\nBette\nMarguerite\nSarah\nAngelina\nClaudette\nViolet\nClaire\nLeona\nNaomi\nPamela\nAmelia\nLaverne\nSonja\nFaye\nJanis\nMargarita\nVelma\nAlma\nAngela\nAnnie\nHenrietta\nAntoinette\nAntonia\nDeanne\nAlberta\nCecelia\nDoreen\nFlora\nMadeline\nMona\nLorna\nGay\nAdele\nGenevieve\nPearl\nIrma\nLee\nOlga\nRebecca\nSherry\nConsuelo\nGuadalupe\nNina\nRenee\nJan\nOlivia\nPatty\nPriscilla\nAdrienne\nDona\nJoanna\nMaryann\nMolly\nTerry\nViola\nBobbie\nDelia\nElvira\nEsperanza\nEunice\nMarylou\nVicki\nAlicia\nElla\nGertrude\nGwendolyn\nInez\nJacklyn\nMelba\nMuriel\nArmida\nCarla\nDawn\nDenise\nEloise\nFrancine\nGretchen\nLynda\nNoreen\nSondra\nWinifred\nCora\nDarleen\nDianna\nEstella\nJosie\nLenore\nLeslie\nNora\nOfelia\nSonya\nDeborah\nDella\nErnestine\nHelene\nLeah\nSharron\nBeth\nChristina\nGlenna\nMae\nMarcella\nMargery\nMay\nPenelope\nRochelle\nSharlene\nAurora\nCharleen\nMarilee\nMercedes\nMiriam\nAmy\nCarlene\nCorinne\nElinor\nElva\nErma\nKathy\nLou\nMarilynn\nMerle\nMyra\nPenny\nPetra\nRegina\nSusanne\nCheryl\nLila\nMyrtle\nNatalie\nNola\nPatti\nRaquel\nShirlee\nStephanie\nAdeline\nAndrea\nBessie\nCarolee\nDale\nDana\nEarlene\nEugenia\nEvangeline\nHope\nJanette\nJeannie\nJerry\nLeilani\nLora\nLorene\nMargo\nRhoda\nSonia\nBernadine\nCamille\nCeleste\nClarice\nDolly\nErlinda\nFrankie\nGinger\nGwen\nHarlene\nLaurel\nLena\nLily\nNorita\nRosalind\nSaundra\nSherrill\nAlyce\nBrenda\nCathy\nCleo\nDee\nDorothea\nHarriett\nIlene\nIris\nJeannine\nJolene\nLaurie\nLavonne\nLynette\nMabel\nMagdalena\nNeva\nRobin\nSusie\nSydney\nAgnes\nArleen\nCarroll\nCecile\nClaudine\nCruz\nFern\nJudie\nLeota\nLetha\nLidia\nLucia\nMarietta\nMeredith\nRae\nSandy\nVeronica\nAda\nAileen\nBecky\nBeulah\nCorrine\nDarline\nDorene\nElma\nFay\nFreda\nGreta\nHilda\nHortencia\nJill\nJuana\nLenora\nMadelyn\nMelva\nMerry\nOphelia\nTanya\nAmparo\nArdith\nCarmelita\nCatalina\nDeloris\nErnestina\nIva\nJewel\nJuliet\nLeila\nMarylyn\nMavis\nMelinda\nNorene\nPolly\nSallie\nSocorro\nTillie\nTina\nVickie\nWendy\nAlta\nBlanche\nCarleen\nCarrie\nCaryl\nConcha\nEleanore\nElena\nGeneva\nGerry\nJanelle\nJenny\nJohanna\nJuliette\nLeola\nLilly\nLouisa\nLuella\nMable\nMargot\nMarla\nMercy\nMickey\nNan\nNona\nRena\nRosita\nSelma\nAna\nBelen\nBerta\nBetsy\nBettie\nBeverlee\nCarmella\nCharline\nColeen\nCornelia\nDarla\nDelfina\nDian\nDina\nDottie\nEarline\nEdwina\nFaith\nGeorgianna\nGoldie\nGraciela\nImogene\nIna\nJeanine\nJudi\nKatharine\nKatie\nLeora\nLorena\nMadeleine\nMarina\nMaryanne\nMaryellen\nMichele\nMollie\nMonica\nNanette\nNorine\nPaulette\nRosalyn\nShari\nSybil\nZoe\nAdela\nAnnabelle\nCarolina\nElda\nElisabeth\nElsa\nElvera\nEmilie\nEnid\nEvangelina\nGale\nGaye\nGracie\nHerlinda\nJanie\nJayne\nJerrie\nJohn\nJosefina\nKitty\nLeonor\nLeonora\nLeta\nLita\nLolita\nLouella\nLucretia\nMamie\nOlive\nOra\nRafaela\nRosario\nSilvia\nVelia\nVelva\nVida\nAddie\nAdelina\nAletha\nAllene\nAlva\nAngelita\nArden\nArdis\nAurelia\nCamilla\nCarolynn\nCharlaine\nCharles\nCrystal\nDaisy\nDorine\nEffie\nElisa\nElnora\nErlene\nEulalia\nFreida\nGayla\nGeorgene\nGeorgiana\nGeorgie\nGeorgina\nHannah\nHarriette\nIla\nJeane\nJeri\nJesus\nJewell\nJocelyn\nKarin\nKarla\nKarol\nKatheryn\nKaye\nLeanne\nLilia\nLillie\nLucinda\nLuz\nManuela\nMarge\nMargy\nMarjory\nMarleen\nMarta\nMaryjane\nMatilda\nMerlyn\nMillie\nMinnie\nNell\nOpal\nRaylene\nRoseann\nSherrie\nSheryl\nShirlene\nSoledad\nTheodora\nTommie\nTrinidad\nTwila\nVonda\nWillie\nYoshiko\nAida\nAlthea\nAmalia\nBelia\nBelva\nBernadette\nBeryl\nBettye\nBobbe\nBobby\nBonny\nCherie\nDarlyne\nDaryl\nDeann\nDelma\nDiann\nDortha\nDorthy\nEarleen\nEstelle\nEve\nFloy\nFrancis\nFrancisca\nFrank\nGarnet\nGeorgette\nGina\nHaruko\nHattie\nHelena\nIone\nJeanie\nJessica\nJoe\nKeiko\nKim\nLauralee\nLauretta\nLavelle\nLeanna\nLela\nLoraine\nLouann\nLyn\nLynnette\nMaralyn\nMarlyn\nMarna\nMarolyn\nMaybelle\nMicaela\nMichiko\nMimi\nMina\nNatalia\nNita\nPattie\nPeggie\nPhoebe\nRachael\nReba\nReiko\nRetha\nRobert\nRomelia\nRonald\nRonda\nRosetta\nRuthie\nSachiko\nSadie\nShiela\nSophie\nStarlene\nSuzy\nTheda\nToby\nTreva\nTrudy\nVenita\nVicky\nVirgie\nWilla\nWinona\nZelda\nZona\nMary\nBarbara\nPatricia\nCarol\nNancy\nBetty\nShirley\nJoan\nDonna\nMarilyn\nMargaret\nSandra\nSharon\nBeverly\nLinda\nVirginia\nDiane\nJudith\nJoyce\nJanet\nDorothy\nHelen\nCarolyn\nGloria\nFrances\nJanice\nJudy\nAlice\nCarole\nNorma\nDolores\nDarlene\nElizabeth\nSally\nJean\nSusan\nAnn\nJoanne\nMarlene\nPhyllis\nRoberta\nRuth\nIrene\nRosalie\nMarie\nKathleen\nLois\nMartha\nRose\nJacqueline\nArlene\nKaren\nDoris\nLoretta\nEleanor\nEvelyn\nElaine\nDeanna\nPat\nGeraldine\nMaria\nMarjorie\nSylvia\nEsther\nGail\nAnita\nBonnie\nJoann\nPeggy\nYvonne\nDiana\nCarmen\nWanda\nConnie\nJane\nJosephine\nCharlene\nLouise\nCatherine\nJeanette\nLorraine\nLupe\nJo\nMarcia\nPatsy\nJune\nSuzanne\nRachel\nAnne\nCharlotte\nKay\nLaura\nAnna\nKatherine\nPauline\nMargie\nRita\nSheila\nSue\nJuanita\nMarian\nFlorence\nKathryn\nJeanne\nRosemary\nEllen\nJulia\nRamona\nGeorgia\nLillian\nGrace\nBeatrice\nClaudia\nJackie\nMyrna\nRosie\nPaula\nRuby\nDelores\nGlenda\nLynn\nGayle\nJoy\nValerie\nDianne\nDixie\nAnnette\nAudrey\nCheryl\nEva\nEdith\nLucy\nMaureen\nMildred\nSonja\nConstance\nLucille\nLydia\nLynne\nJessie\nMaxine\nClara\nEdna\nMarsha\nSarah\nVera\nJulie\nWilma\nEileen\nMarion\nBernice\nChristine\nStella\nJennie\nNadine\nTheresa\nBillie\nEmma\nJeannette\nRosemarie\nBette\nCaroline\nVerna\nEmily\nIsabel\nRebecca\nVivian\nHazel\nPamela\nColleen\nPriscilla\nYolanda\nTeresa\nVictoria\nCecilia\nCelia\nCynthia\nDora\nLynda\nOlga\nSara\nClaire\nLeona\nThelma\nGladys\nLola\nAngie\nBertha\nElsie\nEthel\nGwendolyn\nHarriet\nAmelia\nNaomi\nAndrea\nAnnie\nArleen\nLaverne\nBeverley\nJosie\nMarianne\nSherry\nAngelina\nMargarita\nNina\nPenny\nToni\nClaudette\nMona\nNellie\nIda\nVicki\nAdrienne\nBrenda\nDoreen\nMuriel\nJacquelyn\nPatty\nAntoinette\nDelia\nErnestine\nJanis\nMadeline\nRosa\nArline\nAlberta\nAntonia\nConsuelo\nLorna\nMarguerite\nMelba\nVelma\nDona\nGertrude\nKathy\nMaryann\nSharron\nAngela\nCarlene\nGenevieve\nJan\nNora\nAlma\nCecelia\nDian\nSondra\nEstella\nGretchen\nGuadalupe\nLaurel\nMarilynn\nMolly\nAgnes\nArmida\nGwen\nSonia\nViola\nCarla\nDarleen\nIrma\nJoanna\nPearl\nRochelle\nViolet\nDeborah\nElvira\nJeannie\nJill\nLavonne\nMiriam\nTerry\nAurora\nDawn\nDeanne\nGay\nLeilani\nLila\nLora\nMargo\nMarylou\nMerle\nOlivia\nRenee\nStephanie\nVeronica\nBobbie\nDorene\nFay\nLorene\nWendy\nWinifred\nCora\nEsperanza\nFaye\nGeneva\nHenrietta\nLena\nLeslie\nPenelope\nSheryl\nBeth\nErma\nFlora\nIlene\nInez\nJeannine\nJudie\nNatalie\nNoreen\nSandy\nSaundra\nBessie\nBetsy\nDianna\nLeah\nLee\nMyra\nRobin\nCecile\nEunice\nFrancine\nHilda\nHope\nJolene\nMarietta\nMay\nMonica\nSusie\nAdele\nChristina\nDale\nDorothea\nEloise\nHelene\nJeri\nLily\nLou\nRegina\nSherrie\nAlicia\nDella\nDenise\nElinor\nGerry\nHarriett\nJerry\nLouella\nNelda\nPatti\nPetra\nSharlene\nSocorro\nSonya\nAdela\nAmy\nElla\nErlinda\nGlenna\nGracie\nHeather\nJenny\nMae\nMarina\nMercedes\nRae\nRosario\nSusanne\nVickie\nBernadine\nCorinne\nDanielle\nDee\nHarlene\nJanie\nLaurie\nLenora\nMargery\nMargot\nMarilee\nNona\nRosalee\nAda\nAdeline\nBlanche\nCamille\nClarice\nDaisy\nElena\nEvangeline\nLenore\nMarla\nNola\nRhoda\nRosalind\nAlyce\nAna\nCatalina\nCharleen\nCleo\nDolly\nElisabeth\nElva\nEugenia\nFern\nFreda\nGinger\nIris\nKatie\nLela\nLillie\nMadeleine\nMagdalena\nManuela\nMarcella\nMelinda\nMeredith\nMinnie\nRaquel\nRosita\nShirlene\nTillie\nAlta\nBelva\nCarrie\nCarrol\nCaryl\nClaudine\nGeorgiana\nJanette\nLorena\nMabel\nMelva\nMerilyn\nMickey\nMyrtle\nOfelia\nSallie\nAileen\nAnnabelle\nBonita\nCarleen\nDarla\nEmilia\nEmilie\nImogene\nJanine\nJohanna\nKatharine\nLauretta\nLeila\nLouisa\nMarjory\nMaurine\nVelia\nVonda\nAlthea\nBernadette\nBettie\nCarmelita\nCarolee\nCarolyne\nCarroll\nConcha\nDarline\nEstelle\nFaith\nGene\nJacklyn\nJayne\nJuana\nKaye\nLeola\nLoralee\nLucia\nMadelyn\nMarta\nMercy\nMerry\nNan\nNanette\nRoxanne\nSherrill\nShirlee\nSydney\nWilla\nBeatriz\nCathleen\nDeann\nDelfina\nEarlene\nElvera\nEvonne\nFlorene\nGale\nHarriette\nHattie\nHortencia\nHortensia\nIna\nJeraldine\nJewel\nJewell\nLeone\nLilly\nLolita\nLuella\nLuz\nMaggie\nNeva\nSybil\nTanya\nYoshiko\nAmalia\nBettye\nBobby\nCarolina\nCathy\nCherie\nCorrine\nDorthy\nEdwina\nEdythe\nEnid\nEstela\nFelicia\nFlorine\nFrancisca\nFrieda\nGeorgina\nJames\nJeanine\nJoane\nJoellen\nJohn\nJosefina\nJovita\nJudi\nJulianne\nLavada\nLeota\nLeta\nLidia\nLuana\nLynette\nMichael\nMillie\nMollie\nOllie\nOpal\nPolly\nReba\nRosanne\nRosetta\nShari\nSherron\nSophie\nTina\nToshiko\nVada\nVicky\nWillie\nZelda\nZona\nAida\nAllene\nAlvina\nBecky\nBerta\nBeulah\nCarolynn\nCeleste\nCharmaine\nCherry\nColette\nConchita\nCornelia\nDeana\nDeloris\nDena\nEleanore\nElsa\nErlene\nEtta\nFrancis\nGayla\nGeorgette\nHelena\nHerlinda\nIsabelle\nIva\nJeanie\nJerrie\nJessica\nJuliet\nJuliette\nKarla\nKatheryn\nKathrine\nKazuko\nLeora\nLina\nLorelei\nLucinda\nMamie\nMarcelina\nMari\nMarleen\nMarty\nMarvel\nMaryanne\nMaryellen\nMatilda\nMelissa\nMinerva\nMitzi\nNancie\nNoel\nNorene\nOlive\nRaylene\nReva\nRichard\nRonda\nRosalia\nRosalyn\nSetsuko\nShannon\nSigrid\nTerri\nTherese\nTrudy\nVelda\nWilda\nWinona\nAiko\nAmanda\nAmparo\nAngelita\nArdith\nArlyne\nAurelia\nBea\nBenita\nCarolann\nCharla\nChloe\nClare\nConcepcion\nCruz\nDana\nDarlyne\nDina\nDorine\nDottie\nEilene\nElisa\nEloisa\nEna\nEnedina\nFrankie\nGeorgene\nGilda\nGraciela\nGrayce\nHallie\nHeidi\nJaneen\nJanyce\nJennifer\nJoella\nJustine\nKarin\nKim\nKimiko\nLelia\nLetha\nLilla\nLona\nLoraine\nLoreen\nLori\nLoris\nMargarite\nMarianna\nMarva\nMaryjo\nMarylin\nMattie\nMavis\nMichele\nMimi\nNada\nNadene\nNatividad\nNettie\nNita\nNorine\nOphelia\nOra\nPatrica\nRachael\nRonnie\nRosaline\nRoseann\nRosella\nSadie\nSerena\nShelby\nSofia\nSuzette\nTeddy\nTomiko\nTonia\nTrinidad\nTwila\nVerda\nVesta\nZoe\nMary\nBarbara\nPatricia\nCarol\nLinda\nNancy\nSharon\nJoan\nJudith\nBetty\nShirley\nSandra\nDonna\nMarilyn\nMargaret\nJudy\nDiane\nVirginia\nCarolyn\nBeverly\nDorothy\nJoyce\nSusan\nJanice\nHelen\nJanet\nFrances\nGloria\nCarole\nJean\nAlice\nSally\nElizabeth\nDarlene\nJoanne\nIrene\nKathleen\nDolores\nRuth\nAnn\nNorma\nKaren\nRoberta\nPat\nEvelyn\nMarie\nBonnie\nPhyllis\nLois\nGail\nMartha\nMarlene\nArlene\nMaria\nLoretta\nRose\nElaine\nEleanor\nMarjorie\nDiana\nPeggy\nJacqueline\nJoann\nGeraldine\nSylvia\nJo\nAnita\nDeanna\nYvonne\nEsther\nLouise\nSuzanne\nJane\nRosalie\nBrenda\nCharlotte\nConnie\nDoris\nAnne\nCarmen\nJuanita\nJosephine\nAnna\nRita\nWanda\nKatherine\nKay\nCharlene\nPatsy\nMarcia\nSue\nJeanette\nJune\nLorraine\nRachel\nSheila\nEllen\nRosemary\nMargie\nLynn\nLupe\nMarian\nCatherine\nFlorence\nLaura\nGrace\nMyrna\nGlenda\nGeorgia\nClaudia\nPauline\nRosie\nJeanne\nKathryn\nDianne\nJulie\nLynne\nBeatrice\nLucille\nPaula\nRamona\nAnnette\nJulia\nJackie\nChristine\nDixie\nLillian\nStella\nEdith\nEva\nEdna\nCaroline\nPriscilla\nVivian\nLydia\nLynda\nBillie\nLucy\nMarion\nRuby\nValerie\nJeannette\nGayle\nIsabel\nMaureen\nSarah\nTheresa\nCecilia\nDelores\nMildred\nAudrey\nJoy\nThelma\nJennie\nTeresa\nCynthia\nEmily\nNadine\nWilma\nClara\nColleen\nVictoria\nMaxine\nRebecca\nYolanda\nConstance\nJessie\nMarsha\nLeona\nPenny\nBertha\nEthel\nHarriet\nKathy\nAndrea\nPenelope\nVera\nAngie\nBernice\nCheryl\nRosemarie\nBette\nEileen\nSherry\nSonja\nTerry\nAngelina\nLaurel\nAntoinette\nPamela\nSharron\nHazel\nBeverley\nDora\nGladys\nSandy\nSondra\nEmma\nMarianne\nNina\nSara\nToni\nIda\nLaverne\nNellie\nVerna\nVicki\nArleen\nClaire\nMarguerite\nOlivia\nElsie\nStephanie\nAngela\nJan\nLorna\nMadeline\nRosa\nNaomi\nCarla\nCecelia\nJacquelyn\nJanis\nJosie\nMelinda\nAlma\nGretchen\nDelia\nAnnie\nGenevieve\nGwen\nGwendolyn\nDoreen\nJill\nMargo\nPatty\nOlga\nWendy\nAlicia\nCorinne\nDawn\nIrma\nMarilynn\nRobin\nVelma\nBobbie\nCelia\nGay\nHope\nJeannie\nJudie\nMaryann\nViola\nAdrienne\nMargarita\nFaye\nGuadalupe\nLila\nLola\nViolet\nAdeline\nAlberta\nAmelia\nAurora\nBeth\nCarlene\nChristina\nElvira\nFlora\nRenee\nRosalind\nClaudette\nDona\nErnestine\nEsperanza\nHelene\nNora\nAna\nDenise\nLee\nMolly\nRochelle\nAdele\nAgnes\nCora\nEarlene\nGerry\nLeslie\nSaundra\nSusie\nAntonia\nCecile\nConsuelo\nElinor\nEloise\nInez\nLeah\nMercedes\nArmida\nGeneva\nGertrude\nHenrietta\nLaurie\nPearl\nSherrill\nWinifred\nDale\nDeanne\nElena\nLenore\nMay\nMiriam\nPatti\nBetsy\nDarla\nDorene\nIlene\nJeannine\nMabel\nMelba\nMeredith\nMona\nMuriel\nVeronica\nArline\nClarice\nDeborah\nDee\nFay\nGale\nJeanie\nJerry\nLeilani\nLillie\nLou\nLucia\nMarylou\nMichelle\nNona\nRaquel\nSonia\nAlyce\nElla\nGinger\nIna\nLavonne\nLorene\nRae\nSallie\nSocorro\nBessie\nDian\nDianna\nDolly\nEdwina\nErma\nEunice\nIris\nMyra\nNeva\nOfelia\nPetra\nCleo\nEstella\nFreda\nHilda\nHortencia\nJacque\nJoe\nLenora\nLily\nMerle\nMonica\nSharlene\nSusanne\nAmy\nBecky\nCamille\nCathy\nDella\nFrancine\nFrankie\nJoanna\nJudi\nMarcella\nMercy\nMinnie\nMyrtle\nShirlee\nAda\nBernadine\nCarmel\nCherie\nCruz\nDarleen\nEugenia\nJanie\nLena\nLouella\nLuana\nRena\nAdela\nCarolynn\nCarroll\nCatalina\nColeen\nDana\nElisa\nElsa\nElva\nEvangelina\nFrancis\nGlenna\nJanalee\nJanette\nJenny\nJeri\nJewel\nJolene\nLouisa\nLuella\nMadeleine\nMae\nMarilee\nMarla\nNoreen\nRosita\nSheryl\nSilvia\nAlta\nBettie\nCarolee\nCarrie\nDaisy\nDiann\nGeorgiana\nJohanna\nJulianne\nKarin\nKatharine\nLora\nLorelei\nMargery\nMarina\nMelva\nRegina\nShirlene\nWilla\nAnnabelle\nBernadette\nCarrol\nChloe\nClaudine\nCrystal\nDeloris\nDorothea\nEvangeline\nFrieda\nGeorgene\nGerrie\nHarriett\nHeather\nHelena\nJacklyn\nJacquie\nJeanine\nJessica\nJohn\nJovita\nKarla\nLaurene\nLeila\nLeonor\nLorena\nLynette\nMargot\nMaryanne\nMaryellen\nMichael\nMillie\nNatalie\nNola\nOpal\nPolly\nRosalee\nRosalyn\nShannon\nSonya\nVickie\nAileen\nAllene\nBeverlee\nBlanche\nCarleen\nCarolina\nCharleen\nClare\nCorrine\nElma\nEmiko\nEmilia\nEmilie\nErlinda\nFrancisca\nGeorgann\nGeorgina\nKathie\nLela\nLeora\nLeta\nLilly\nLoraine\nLyn\nMadelyn\nMagdalena\nMarcelina\nMarietta\nMarleen\nMarylyn\nMerry\nMichele\nMollie\nReiko\nRosario\nRuthie\nSelma\nSusana\nSybil\nTanya\nTeri\nTina\nTrinidad\nVelda\nAdelina\nAlexandra\nAngelita\nBeatriz\nBelva\nBerta\nBonita\nCathleen\nCharlyn\nConcha\nCordelia\nDanielle\nDelfina\nEarline\nEleanore\nEnid\nErnestina\nFaith\nFreida\nGerri\nGracie\nHortensia\nImogene\nKarlene\nKaty\nKeiko\nKitty\nLauralee\nLauretta\nLea\nLeota\nLoralee\nMarge\nMariann\nMichiko\nMickey\nNancie\nNelda\nNita\nNorine\nReba\nRhoda\nRosetta\nSachiko\nSharleen\nSheri\nTerrie\nTillie\nToby\nTommie\nTonia\nVelia\nWillie\nYoshiko\nAdelaide\nAlene\nAmalia\nAmanda\nAndree\nAngeline\nBeulah\nBobbi\nCamilla\nColette\nConcepcion\nDawna\nDelma\nEloisa\nElvera\nErlene\nErna\nEstela\nEvonne\nFern\nFlorine\nGaye\nGaylene\nGearldine\nGeorgette\nGeorgianna\nHannah\nHarlene\nHeidi\nHerminia\nHolly\nJayne\nJennifer\nJeraldine\nJerri\nJerrie\nJoellen\nJuana\nKarol\nKathlyn\nKatie\nKaye\nKim\nLana\nLesley\nLetha\nLona\nLoreen\nLorretta\nLoy\nLucile\nLula\nMaralyn\nMarlyn\nMarolyn\nMavis\nMerna\nMicaela\nNan\nNanette\nNettie\nOra\nRobert\nRowena\nSharen\nSusanna\nSydney\nVivien\nWinnie\nZelda\nAdella\nAline\nAlison\nAmparo\nAndra\nArdelle\nArdis\nArdith\nAvis\nBelen\nBlanca\nCarmelita\nCeleste\nCheri\nChris\nConchita\nCoral\nCornelia\nDaphne\nDeann\nDorine\nDorthy\nDottie\nEdythe\nElisabeth\nElissa\nElnora\nEstelle\nEula\nFran\nFrancene\nGeorge\nGeri\nGregoria\nHerlinda\nHiroko\nHortense\nIma\nIsabelle\nIvy\nJanyce\nJeanene\nJesus\nJoycelyn\nJuliann\nKarole\nKristin\nKristine\nLaureen\nLelia\nLeola\nLeticia\nLisa\nLuz\nLyla\nMable\nMadge\nMaggie\nManuela\nMarilynne\nMarline\nMarlys\nMarta\nMaryalice\nMarylin\nMatilda\nMerilyn\nMerrilee\nNanci\nNedra\nNeoma\nNeomi\nNoel\nOlive\nPaulette\nPhoebe\nRacheal\nRaelene\nRefugio\nRetha\nRheba\nRonna\nRoxanne\nSherrie\nTamara\nTheda\nTrudy\nVicky\nVirgie\nVonda\nWilda\nYsabel\nZoe\nZola\nMary\nPatricia\nBarbara\nLinda\nCarol\nJudith\nSharon\nNancy\nSandra\nJudy\nSusan\nDonna\nMargaret\nBetty\nJoan\nDiane\nShirley\nCarolyn\nMarilyn\nJoyce\nVirginia\nGloria\nBeverly\nJanice\nJanet\nDorothy\nBonnie\nFrances\nKathleen\nHelen\nAlice\nKaren\nCarole\nJean\nElizabeth\nAnn\nDolores\nIrene\nRuth\nDarlene\nMartha\nJoanne\nPhyllis\nGail\nPat\nSally\nNorma\nDiana\nBrenda\nMarie\nRoberta\nElaine\nEvelyn\nRose\nMarjorie\nLois\nLoretta\nMarlene\nArlene\nAnita\nPeggy\nGeraldine\nCharlotte\nJacqueline\nSylvia\nJoann\nJo\nSue\nConnie\nEleanor\nLouise\nDoris\nKatherine\nMaria\nCarmen\nCharlene\nCatherine\nSuzanne\nEsther\nYvonne\nJane\nJeanette\nDeanna\nJosephine\nRosemary\nJeanne\nRachel\nLynda\nKay\nMarcia\nWanda\nEllen\nJuanita\nPatsy\nRosalie\nAnne\nDianne\nLorraine\nMaureen\nJulie\nJune\nJulia\nSheila\nRita\nKathryn\nLupe\nLynn\nClaudia\nLynne\nGayle\nAnna\nMarian\nLillian\nCynthia\nPaula\nPriscilla\nValerie\nGeorgia\nPauline\nGrace\nLucille\nLaura\nRebecca\nVivian\nChristine\nJackie\nKathy\nMargie\nPamela\nRosie\nBeatrice\nGlenda\nEdna\nTheresa\nEdith\nMyrna\nPenny\nWilma\nDixie\nFlorence\nRamona\nCecilia\nConstance\nSarah\nYolanda\nVictoria\nClara\nLydia\nMarsha\nJennie\nCaroline\nAnnette\nDelores\nEva\nJessie\nTeresa\nJeannette\nRuby\nAndrea\nLucy\nMelinda\nJoy\nMildred\nStella\nMaxine\nNadine\nSherry\nAngie\nBernice\nEmily\nBette\nLana\nRosemarie\nVicki\nBillie\nColleen\nRosa\nTerry\nVera\nDora\nMadeline\nSara\nMarion\nAnnie\nIda\nStephanie\nBertha\nEileen\nAudrey\nGladys\nCarla\nHarriet\nThelma\nCecelia\nMarianne\nSharron\nCelia\nRobin\nWendy\nElsie\nPenelope\nSondra\nToni\nCheryl\nHazel\nOlivia\nJill\nLorna\nMargarita\nNaomi\nChristina\nGwen\nLeona\nLola\nSandy\nAlma\nAmelia\nEmma\nNina\nNora\nGenevieve\nIsabel\nVerna\nEthel\nJan\nPatty\nDenise\nGwendolyn\nBeth\nDona\nLaurel\nNellie\nBeverley\nJacquelyn\nJudie\nMarguerite\nNatalie\nAntoinette\nHenrietta\nMuriel\nMyra\nSonja\nTamara\nAngelina\nClaire\nDale\nDelia\nEarlene\nAlberta\nElvira\nJosie\nLeslie\nMarcella\nOlga\nSusanne\nBobbie\nDianna\nFaye\nGretchen\nJeannie\nMaryann\nMolly\nSaundra\nSheryl\nArleen\nDawn\nJudi\nAdele\nCarlene\nFlora\nIrma\nJanis\nLee\nRae\nViola\nCathy\nDella\nDoreen\nEsperanza\nFrancine\nGay\nGerry\nJeanie\nMarilynn\nMiriam\nAgnes\nAlicia\nAmy\nAntonia\nErnestine\nJoanna\nMyrtle\nPearl\nSherrill\nVelma\nViolet\nAdeline\nConsuelo\nGuadalupe\nLenore\nMarylou\nSocorro\nArmida\nClaudette\nCora\nDeborah\nJerry\nLaverne\nLila\nMarla\nAdrienne\nArline\nDee\nMargo\nPatti\nVeronica\nAurora\nCecile\nDian\nHelene\nLenora\nNoreen\nVickie\nAngela\nBecky\nEloise\nErlinda\nGeneva\nGinger\nJenny\nLaurie\nLorene\nMelanie\nMona\nRenee\nRochelle\nBetsy\nDarla\nErma\nEstella\nGale\nHope\nIris\nKarin\nLily\nMichele\nRegina\nRosalind\nAna\nDana\nDiann\nHarriett\nHeather\nJanie\nJeanine\nLynette\nNola\nWinifred\nCamille\nClarice\nDeanne\nInez\nKaye\nLonna\nMonica\nArdith\nBettie\nBonita\nDorene\nFay\nGertrude\nLeila\nMadeleine\nMagdalena\nMarina\nMarta\nMelba\nMelva\nOpal\nPaulette\nRaquel\nRosario\nSusie\nVicky\nCarolee\nCathleen\nDorothea\nElisa\nElla\nEstelle\nLeah\nLeilani\nLona\nLora\nMae\nMercedes\nNelda\nOfelia\nSharlene\nSonia\nAlta\nBessie\nCharleen\nDeloris\nFern\nHilda\nJeannine\nJennifer\nJolene\nKathie\nKatie\nMarietta\nMay\nRena\nSallie\nAda\nAdela\nAileen\nBernadine\nCarmelita\nCarolynn\nClaudine\nElinor\nElva\nEvangeline\nFrankie\nLavonne\nLeanna\nLetha\nLillie\nLou\nLucia\nLyn\nMargery\nMichael\nReba\nRosetta\nSonya\nSophie\nTina\nBeulah\nCarrie\nCarroll\nCatalina\nCrystal\nDaphne\nDarleen\nDolly\nEleanore\nElena\nEunice\nFaith\nGeorgene\nHelena\nIlene\nJacklyn\nJanette\nJuana\nLaraine\nLena\nLilly\nLouisa\nMadelyn\nMarleen\nMaurine\nMerle\nMichelle\nNedra\nPam\nPetra\nRosalyn\nWilla\nCarrol\nCeleste\nCherie\nCorinne\nCruz\nEnid\nErnestina\nEugenia\nEvangelina\nJacque\nKarla\nLeanne\nLela\nLorena\nMarylyn\nMattie\nNan\nNona\nOlive\nRobert\nTheodora\nAlene\nAngelita\nApril\nDaisy\nEdwina\nGeorgina\nGlenna\nGracie\nIsabelle\nJovita\nKristine\nLadonna\nLori\nLucretia\nLynnette\nMabel\nMardell\nMarilee\nMaryanne\nMatilda\nMercy\nRhoda\nShirlee\nShirlene\nVelda\nWillie\nZoe\nAdelina\nAida\nAlyce\nAmparo\nAnnabelle\nCarleen\nCarolina\nClare\nCorrine\nDanielle\nDorthy\nElise\nElsa\nEtta\nGeorgette\nGeri\nGina\nHerlinda\nImogene\nJacquelin\nJayne\nJewell\nJohanna\nJuliet\nKatharine\nKristin\nLea\nLidia\nLinnea\nLoraine\nLouella\nMarge\nMargot\nMarva\nMeredith\nMickey\nMillie\nPolly\nRachael\nRosalee\nRowena\nSharleen\nSherrie\nSilvia\nSusanna\nTerri\nToby\nVerla\nBernadette\nCamilla\nCarmel\nCaryl\nDarline\nDebra\nDena\nEmiko\nEmilie\nFlorine\nFloy\nFrancisca\nGaye\nHolly\nIna\nJessica\nJoni\nJosefina\nKitty\nLani\nLaureen\nLeonor\nLeota\nLeta\nLisa\nLorelei\nLuana\nLuella\nLuz\nMari\nMarlyn\nMerry\nMichiko\nMinnie\nNanette\nRichard\nRosalinda\nSelma\nSuzann\nSybil\nSydney\nTanya\nTillie\nVelia\nYvette\nAdelaide\nAdella\nAllene\nAlva\nBelinda\nBelva\nBeryl\nBettye\nBlanche\nBonny\nCharline\nChris\nCleo\nColette\nConcha\nDina\nEarline\nEmilia\nErlene\nErna\nFreda\nGabrielle\nGaylene\nGeorge\nGeorgie\nGerri\nGoldie\nGreta\nHerminia\nIlona\nJanine\nJeri\nJohnnie\nJulianne\nKimiko\nKyoko\nLaurene\nLawanda\nLeora\nLonnie\nLoralee\nLuanne\nMarianna\nMarilou\nMarolyn\nMarylee\nMarylin\nMerlene\nMollie\nNeoma\nNeva\nNorene\nOphelia\nPrudence\nReta\nRoma\nRosella\nRuthie\nShannon\nShari\nSunny\nSuzy\nTherese\nTrudie\nVeda\nZella\nAddie\nAmanda\nAntonette\nArletta\nBelen\nCarlotta\nCatharine\nCharlette\nChristie\nCoral\nCordelia\nCornelia\nCristina\nDeana\nDeeann\nDeirdre\nDelfina\nDinah\nDonald\nDottie\nDrucilla\nEffie\nElisabeth\nElma\nEula\nEulalia\nFrancis\nFreida\nFrieda\nGary\nGraciela\nIsabell\nIvy\nJerri\nJoellen\nJohn\nJuliann\nKarel\nKarol\nKaty\nLauna\nLauralee\nLauretta\nLeola\nLetitia\nLetty\nLiana\nLiz\nLuann\nLucinda\nLuisa\nLyla\nMable\nMadge\nManuela\nMariann\nMarilynne\nMarjory\nMerilyn\nMerrilee\nMicaela\nMickie\nNanci\nNancie\nNannette\nNelly\nNikki\nNorine\nReiko\nRomona\nRonda\nRosanne\nRoselyn\nRoslyn\nRoxie\nSadie\nSammie\nSharen\nShelia\nShelley\nSheri\nSheridan\nSherilyn\nSherri\nSherron\nShiela\nSigrid\nSofia\nSoledad\nSusann\nSuzette\nTeddy\nTommie\nTonya\nTracy\nTrinidad\nTrudy\nVivien\nWinnie\nMary\nLinda\nPatricia\nBarbara\nCarol\nSharon\nJudith\nNancy\nSandra\nJudy\nSusan\nCarolyn\nDonna\nMargaret\nDiane\nJoan\nBetty\nKaren\nJoyce\nMarilyn\nShirley\nVirginia\nJanice\nJanet\nBonnie\nGloria\nDorothy\nKathleen\nBeverly\nHelen\nFrances\nJean\nAlice\nElizabeth\nCarole\nIrene\nDarlene\nDolores\nMartha\nAnn\nJoanne\nRuth\nDiana\nSally\nGail\nMarie\nPat\nPhyllis\nNorma\nGeraldine\nRoberta\nAnita\nPeggy\nSuzanne\nElaine\nEvelyn\nMaria\nJoann\nCharlotte\nRose\nKatherine\nLois\nJo\nCharlene\nSue\nConnie\nJacqueline\nArlene\nSylvia\nPamela\nJane\nDoris\nMarjorie\nMarlene\nRita\nCatherine\nBrenda\nEleanor\nKay\nLynn\nLouise\nLoretta\nJulie\nAnna\nEllen\nCarmen\nEsther\nKathryn\nAnne\nPatsy\nWanda\nMarcia\nJosephine\nJuanita\nYvonne\nMaureen\nSheila\nRachel\nJeanette\nDeanna\nChristine\nJune\nJeanne\nLynda\nRosemary\nGeorgia\nRebecca\nLillian\nLynne\nJulia\nLaura\nClaudia\nLorraine\nPauline\nGlenda\nValerie\nDianne\nKathy\nPaula\nPenny\nRosalie\nMargie\nCynthia\nJackie\nPriscilla\nWilma\nGayle\nMarian\nSherry\nVivian\nDelores\nGrace\nMarsha\nVictoria\nAnnette\nLupe\nCecilia\nBeatrice\nEva\nTerry\nMyrna\nRamona\nRosie\nTheresa\nJennie\nYolanda\nCaroline\nFlorence\nLucille\nLydia\nMildred\nRuby\nEdith\nMarion\nSarah\nConstance\nClara\nSharron\nJoy\nAndrea\nEdna\nToni\nEmily\nJeannette\nMelinda\nOlivia\nSandy\nStephanie\nMadeline\nMaxine\nVicki\nJessie\nRosemarie\nLorna\nMarianne\nNadine\nTeresa\nBernice\nColleen\nWendy\nRosa\nPenelope\nThelma\nIsabel\nLucy\nJeannie\nNellie\nSara\nBertha\nEileen\nHazel\nBette\nBillie\nCecelia\nCheryl\nDixie\nLeslie\nStella\nAngie\nVerna\nCathy\nVera\nVeronica\nLeona\nSondra\nAudrey\nJill\nRobin\nArleen\nCarla\nDona\nLana\nAmelia\nCelia\nChristina\nDoreen\nEmma\nClaire\nHarriet\nMargarita\nNina\nJacquelyn\nJerry\nMarguerite\nAlma\nAntoinette\nDelia\nMyra\nElsie\nEthel\nIda\nIrma\nMaryann\nPatty\nAngelina\nAnnie\nArmida\nDawn\nGenevieve\nGwendolyn\nJanis\nMarilynn\nMichele\nNaomi\nNora\nBobbie\nDianna\nGladys\nJan\nJosie\nRenee\nSheryl\nClaudette\nDenise\nEstella\nJudie\nMargo\nAntonia\nDora\nLola\nMarcella\nMuriel\nOlga\nSherrill\nEarlene\nLaurie\nPearl\nElena\nBeth\nBetsy\nCarlene\nHenrietta\nJudi\nLaurel\nPatti\nAlberta\nAlicia\nAngela\nBeverley\nGuadalupe\nLee\nLynette\nTamara\nVelma\nViolet\nAdrienne\nDale\nElla\nErnestine\nGay\nLila\nMarylou\nMelanie\nMiriam\nRae\nSaundra\nSydney\nBecky\nDella\nFlora\nGale\nLaverne\nLeah\nDeborah\nErma\nJennifer\nRochelle\nAna\nConsuelo\nFaye\nHelene\nJeri\nMarla\nAdele\nDana\nDarleen\nEloise\nFrancine\nGertrude\nJoanna\nMolly\nSusanne\nVickie\nAmy\nCarleen\nGretchen\nLavonne\nPaulette\nSallie\nSonja\nSusie\nViola\nArline\nCharleen\nCora\nSonia\nEsperanza\nFreda\nGeneva\nMinnie\nNatalie\nAdela\nCarrol\nDian\nEunice\nFern\nGwen\nHilda\nJeanie\nKatharine\nMichelle\nMonica\nRegina\nAdeline\nAgnes\nDarla\nElvira\nFaith\nGerry\nHeather\nInez\nIris\nJeannine\nKarin\nKathie\nLeilani\nLillie\nMelba\nMona\nAurora\nCarrie\nClaudine\nDee\nGlenna\nJenny\nJolene\nJudyth\nLora\nMeredith\nOfelia\nArdith\nDeanne\nErlinda\nGinger\nHope\nIna\nJanette\nJanie\nJeanine\nLouella\nMadelyn\nMelva\nNelda\nRosalind\nSheri\nTillie\nTrudy\nWinifred\nBettie\nBlanche\nBonita\nCarolynn\nClarice\nDorothea\nFrankie\nGeorgene\nJacklyn\nLenora\nLorena\nMae\nMay\nMercy\nMerle\nNanette\nNita\nRaquel\nSandi\nSharlene\nAlyce\nBeryl\nBessie\nCarroll\nChristie\nEugenia\nGeri\nGina\nIla\nIlene\nJovita\nLenore\nLorene\nMabel\nMarva\nMercedes\nNona\nPolly\nShari\nSocorro\nApril\nCathleen\nCherie\nCorrine\nDeloris\nHarriett\nHerlinda\nIngrid\nKarol\nLani\nLela\nLeta\nLona\nMargery\nMaryellen\nNannette\nNeva\nNola\nTerri\nYvette\nAda\nBernadette\nDorene\nEleanore\nElva\nEve\nGeorgina\nKarla\nKatie\nKitty\nKristin\nLadonna\nLauretta\nLily\nMarina\nNanci\nNicole\nRena\nRosalee\nSherrie\nTanya\nTherese\nAlta\nBobbi\nCaren\nCarolina\nCathryn\nCorinne\nDiann\nDolly\nEdythe\nElinor\nElsa\nEtta\nEvangeline\nHolly\nIva\nJayne\nJerilyn\nKaye\nKristine\nLori\nLucinda\nMarietta\nMarilee\nMillie\nMollie\nNan\nRhoda\nRonda\nRosanne\nRosario\nSharyn\nSherron\nShirlee\nSybil\nZoe\nAmalia\nBonny\nCarmelita\nCarolee\nCaryl\nCeleste\nColette\nDanielle\nDarline\nDebbie\nDena\nEarline\nEvangelina\nGraciela\nHeidi\nJacque\nJerrie\nKeiko\nLeanne\nLena\nLoraine\nLou\nLuanne\nLucia\nLyn\nLynnette\nMable\nManuela\nMargot\nMelissa\nMyrtle\nNoreen\nOpal\nPam\nPhoebe\nReta\nSachiko\nSidney\nSonya\nTina\nAileen\nAngelita\nCatharine\nCecile\nCharmaine\nCindy\nCoralee\nCruz\nFay\nFrancis\nGeorgiana\nGracie\nGreta\nHelena\nJanine\nJeraldine\nJewel\nJimmie\nJohn\nLeanna\nMagdalena\nMarta\nMartina\nMarylin\nMaurine\nMichael\nNoel\nOphelia\nRaylene\nReiko\nRosetta\nRowena\nRoxanna\nRoxanne\nSherri\nValarie\nVicky\nWinnie\nAdelina\nAlfreda\nAndra\nCaroll\nCharline\nCoralie\nCornelia\nCrystal\nDaphne\nDinah\nEdwina\nEnid\nEstela\nFrieda\nImogene\nIsabelle\nJamie\nJerri\nJewell\nJoellen\nJohanna\nJuliana\nKarolyn\nKim\nLeota\nLidia\nLisa\nLolita\nLorelei\nLuana\nMardell\nMariana\nMarilou\nMarty\nMicaela\nMickey\nMillicent\nPortia\nRobert\nSadie\nSandie\nSharilyn\nSherryl\nSuellen\nSusana\nTonya\nTwila\nValorie\nVonnie\nAdelaide\nAdrianne\nAllene\nAlvina\nAmanda\nAngel\nAntonette\nBunny\nCamilla\nCamille\nCarlotta\nCatalina\nCharla\nChris\nChristy\nClare\nConception\nDaisy\nElda\nElinore\nElise\nEloisa\nElouise\nErin\nEula\nFreida\nGermaine\nIone\nIsabell\nJanalee\nJosette\nKaron\nKelly\nLanette\nLaraine\nLea\nLonna\nLonnie\nLu\nMadeleine\nMarge\nMari\nMelody\nNikki\nNorene\nPennie\nRene\nRhea\nRichard\nRosalyn\nRoxana\nSelma\nSherill\nSusanna\nSuzan\nThea\nTheodora\nToshiko\nVelia\nWilda\nWinona\nAlva\nAnnabelle\nArla\nArleta\nAsenath\nAurelia\nBarbra\nBarrie\nBelinda\nBelva\nBenita\nBerniece\nBettye\nBeulah\nCamelia\nCara\nCarmela\nCarolyne\nCathie\nCleo\nConcha\nDanette\nDanna\nDaryl\nDawna\nDeana\nDeena\nDelfina\nDelma\nDelphina\nDina\nDollie\nElisa\nEmilia\nFran\nFrancisca\nGary\nGayl\nGene\nGeorgianna\nGerri\nHarlene\nHelaine\nHilary\nHortencia\nJacquie\nJames\nJannette\nJeane\nJerilynn\nJessica\nJoane\nJosefina\nJuana\nJuliann\nJulianne\nJustine\nKarlene\nKaryn\nKatheryn\nKristina\nLaurine\nLavina\nLeann\nLeila\nLeni\nLeonor\nLeora\nLetitia\nLilly\nLinnea\nLouann\nLucretia\nLuella\nLula\nLuz\nMarcy\nMarianna\nMarjory\nMaryalice\nMatilda\nMattie\nMelvina\nMerlyn\nMichiko\nMina\nMitzi\nNettie\nNoelle\nNorine\nOlive\nPrudence\nRachael\nRandi\nRhonda\nRomelia\nRonnie\nRosalinda\nRosanna\nRoseanne\nSabra\nSaralee\nSharen\nShelby\nSilvia\nSophia\nSophie\nStarr\nSumiko\nSunny\nTeri\nToby\nTomasa\nUna\nWilla\nWillie\nZona\nLinda\nMary\nBarbara\nPatricia\nSharon\nCarol\nSandra\nNancy\nJudith\nJudy\nKaren\nSusan\nDonna\nCarolyn\nDiane\nJoan\nMargaret\nKathleen\nShirley\nBetty\nJanet\nMarilyn\nVirginia\nCarole\nJoyce\nGloria\nJanice\nBonnie\nBeverly\nHelen\nDorothy\nFrances\nDiana\nElizabeth\nAlice\nJean\nJoanne\nDolores\nRuth\nAnn\nDarlene\nMartha\nPhyllis\nSally\nPamela\nMarie\nRoberta\nIrene\nGail\nConnie\nMaria\nCharlotte\nPat\nNorma\nJo\nElaine\nPeggy\nRose\nSue\nRita\nSylvia\nJacqueline\nGeraldine\nLynda\nKatherine\nKathryn\nAnita\nJane\nJoann\nLoretta\nSheila\nLois\nSuzanne\nLouise\nDianne\nCharlene\nChristine\nJulie\nKathy\nLynn\nCatherine\nMarlene\nEvelyn\nKay\nMarcia\nArlene\nMarjorie\nDoris\nEsther\nClaudia\nAnne\nEllen\nYvonne\nRosemary\nMarsha\nMaureen\nJeanne\nCarmen\nJeanette\nSherry\nEleanor\nJuanita\nPatsy\nWanda\nJosephine\nGeorgia\nLynne\nBrenda\nTerry\nAnna\nRachel\nDeanna\nVicki\nJulia\nMarian\nPenny\nVictoria\nRebecca\nCecilia\nPaula\nRosalie\nValerie\nJackie\nPauline\nCynthia\nMichele\nTheresa\nLorraine\nGlenda\nTeresa\nJune\nMargie\nPriscilla\nFlorence\nVivian\nJoy\nGayle\nEileen\nAndrea\nCaroline\nLaura\nToni\nGrace\nBillie\nLydia\nOlivia\nSarah\nCheryl\nDelores\nLeslie\nLillian\nAnnette\nMelinda\nYolanda\nColleen\nJessie\nStephanie\nJeannette\nBeatrice\nRamona\nRuby\nMarion\nRobin\nRosemarie\nPenelope\nEva\nLucille\nWendy\nJan\nMildred\nEdith\nJill\nLupe\nJennie\nMaxine\nSharron\nEdna\nLucy\nSandy\nStella\nAudrey\nConstance\nEmily\nWilma\nMyrna\nRosie\nCathy\nDixie\nBette\nLana\nLeona\nGwendolyn\nJanis\nMarianne\nBernice\nLorna\nChristina\nElsie\nEmma\nJacquelyn\nSara\nVera\nRosa\nCarla\nBertha\nNadine\nAntoinette\nMadeline\nSaundra\nDianna\nNellie\nPatty\nSondra\nCecelia\nClara\nJudie\nJudi\nEthel\nMichelle\nDora\nMargo\nVerna\nGenevieve\nMaryann\nPaulette\nSheryl\nIrma\nThelma\nDawn\nDona\nGwen\nHarriet\nDenise\nIsabel\nLee\nLola\nVeronica\nHazel\nJeri\nBobbie\nDelia\nGladys\nNaomi\nNina\nAngie\nBeverley\nKarin\nAdrienne\nAlma\nJosie\nMarilynn\nAmelia\nClaire\nDale\nGay\nMarcella\nVickie\nAlberta\nJeannie\nJoanna\nMarylou\nRenee\nAngelina\nCelia\nJerry\nKathie\nLaurie\nMargarita\nDana\nDeborah\nDella\nIda\nLaurel\nNora\nViola\nAnnie\nBecky\nDoreen\nMolly\nOlga\nPatti\nSusanne\nAngela\nArleen\nFrancine\nHenrietta\nMelanie\nPearl\nCora\nEloise\nGlenna\nGretchen\nLaverne\nMarguerite\nVelma\nBeth\nElena\nElla\nRochelle\nRosalind\nVicky\nClaudette\nEarlene\nGeneva\nSherrie\nSusie\nSydney\nTina\nAlicia\nBessie\nCamille\nClarice\nDee\nFaye\nLorene\nLynette\nNatalie\nConsuelo\nDorene\nErnestine\nMelody\nRae\nRegina\nSonja\nTanya\nTerri\nAntonia\nAurora\nCandace\nElvira\nFay\nFlora\nInez\nLeah\nMichael\nTrudy\nAgnes\nDarleen\nEstella\nEunice\nGale\nGuadalupe\nKaaren\nMarilee\nMona\nMyra\nBonita\nCarlene\nChristie\nEugenia\nHelene\nLeilani\nLenore\nMeredith\nPam\nTamara\nAdele\nArmida\nCharleen\nCindy\nDeanne\nJanette\nJeanie\nJennifer\nKaye\nSallie\nCarolynn\nEsperanza\nIris\nJenny\nJerilyn\nLavonne\nLillie\nMelba\nMuriel\nApril\nArline\nBetsy\nDian\nElinor\nErma\nFaith\nKarla\nLucia\nLucinda\nMabel\nMadeleine\nMyrtle\nNona\nShari\nSheri\nCathleen\nCorinne\nErlinda\nKristine\nMarla\nNola\nRena\nSherrill\nViolet\nCarleen\nCarrie\nGeorgina\nGerry\nHope\nJayne\nKatharine\nMiriam\nSandi\nWinifred\nAlta\nBlanche\nCarmelita\nGeorgette\nJerri\nMerrily\nMerry\nSherri\nAda\nCherie\nFrankie\nGinger\nHolly\nJacklyn\nJolene\nLenora\nMarietta\nMay\nMickey\nNoreen\nOfelia\nAna\nArdith\nBernadette\nCarolee\nCarrol\nDelilah\nElisa\nHarriett\nKatie\nLily\nLora\nMargot\nMichaele\nNelda\nSocorro\nSonya\nSuzy\nAdeline\nCaryl\nCathryn\nCheri\nChris\nChristy\nDiann\nDorothea\nEdwina\nFern\nHilda\nJanie\nJerrie\nLeanne\nLeola\nMerle\nMonica\nNan\nNeva\nSidney\nSuellen\nSunny\nTerrie\nCharmaine\nDeana\nJana\nJerilynn\nLena\nMercy\nSonia\nSuzan\nTeri\nWilla\nAmy\nBettie\nCassandra\nCathie\nCrystal\nDolly\nEtta\nGeorgiana\nGeri\nGertrude\nGracie\nIngrid\nJeannine\nJeraldine\nJimmie\nJoellen\nKristin\nLani\nLidia\nLilly\nLou\nLynnette\nMarlys\nMarta\nMaryanne\nNanette\nPetra\nReba\nAdela\nAlyce\nBettye\nCaren\nCatalina\nDarline\nDorthy\nEvangeline\nFrancis\nGeorgene\nGerri\nHannah\nIna\nJacque\nJulianne\nLadonna\nLila\nLorena\nLuanne\nMable\nMadelyn\nMarleen\nMelissa\nNikki\nNoel\nNorene\nPolly\nRhoda\nRonda\nSheron\nAileen\nCarolyne\nCharline\nCoral\nDaisy\nDaphne\nDarla\nDeloris\nDena\nElma\nElsa\nElva\nEmilie\nGinny\nHeather\nJeanine\nJohnnie\nJosefina\nJuliet\nKaron\nKitty\nLauretta\nManuela\nMarjory\nRobbie\nRonna\nRosalyn\nRowena\nRuthie\nShannon\nSharen\nSharlene\nSusanna\nTheodora\nTommie\nAlison\nCaroll\nCecile\nCorrine\nCruz\nDavid\nDebbie\nEstelle\nEvangelina\nEvonne\nFreda\nHilary\nIla\nImogene\nJames\nJonnie\nJuana\nKarolyn\nKarren\nKaryn\nKim\nLavon\nLeora\nLouisa\nLuella\nMae\nMarcy\nMargery\nMarilou\nMarlyn\nMarva\nMarylyn\nMaurine\nMavis\nMerrilee\nMichal\nNannette\nNita\nPennie\nPortia\nRandi\nRene\nRobert\nRobyn\nRosalee\nRoxie\nShelley\nSilvia\nTherese\nZelma\nAloma\nBelva\nBobette\nCarolina\nCarroll\nCleo\nElvera\nErna\nGene\nGeorgianna\nHarlene\nHelena\nIlene\nIsabelle\nJamie\nJewel\nJewell\nJohanna\nKirsten\nLaurene\nLeila\nLela\nLonna\nLoraine\nMelodie\nMercedes\nMillie\nMinnie\nMitzi\nNedra\nOphelia\nOra\nPhoebe\nRandy\nRobbin\nRosario\nRoxann\nSandie\nSharyn\nSherryl\nShirlee\nTracy\nWinnie\nAbigail\nAdelaide\nAdelina\nArdis\nBeryl\nBobbi\nCandy\nCarlotta\nCarmela\nCharla\nCherry\nClare\nClaudine\nDebra\nDelfina\nDinah\nEleanore\nEnid\nFlorine\nFrancisca\nGreta\nHerlinda\nHortencia\nJanine\nJerrilyn\nJessica\nJody\nJohn\nLesley\nLisa\nLoreen\nLucile\nLura\nLuz\nLyn\nMadelaine\nMagdalena\nMarge\nMargret\nMargy\nMarianna\nMarina\nMaryellen\nMarylouise\nMelva\nMerilyn\nNettie\nPamala\nPattie\nRhea\nRhonda\nRonnie\nRoslyn\nRoxanne\nSherilyn\nSophie\nTillie\nTwila\nVelia\nWilliam\nWillie\nAdrianne\nAleta\nAlexandra\nAlexis\nAline\nAmanda\nBea\nBeatriz\nBerta\nBeulah\nBonny\nCarolann\nCoralie\nDanielle\nDarlyne\nDelois\nEarleen\nEarline\nElisabeth\nErlene\nFrieda\nGearldine\nGeorgann\nGeorge\nGeorgeann\nGeorgetta\nGeorgiann\nGina\nGraciela\nJaneen\nJocelyn\nJoetta\nJohnna\nJoni\nJovita\nJustine\nKarleen\nKeiko\nKerry\nLeonor\nLinnea\nLiz\nLorenza\nLouann\nLouella\nLoyce\nLuann\nLyndell\nMariana\nMariann\nMatilda\nMattie\nMaudie\nMerilee\nMillicent\nMimi\nNada\nNanci\nNicki\nNicole\nNorine\nOna\nRaelene\nRaquel\nRosalinda\nRosaline\nRosanne\nRoselyn\nRosetta\nRosita\nSandee\nSharan\nSharla\nShirlene\nSigrid\nTonya\nTrina\nValentina\nVerla\nVikki\nVivienne\nVonda\nZoe\nAdrian\nAletha\nAllison\nAlvina\nAngelita\nAnnetta\nAstrid\nAvelina\nAvis\nBenita\nBernita\nBeverlee\nBillye\nBlanca\nBobby\nBonni\nBridget\nCarlyn\nCharlyne\nColette\nDeann\nDoretta\nDottie\nEarnestine\nEffie\nEmilia\nErica\nEster\nEula\nEulalia\nGary\nGaylene\nGeorgie\nGerrie\nGuillermina\nGwynn\nHeidi\nHortense\nIva\nJacquelynn\nJanelle\nJannette\nJeanetta\nJoanie\nJoleen\nJuliana\nJulianna\nKarol\nKate\nKathi\nKathlene\nKaty\nKazuko\nKimiko\nKris\nKristen\nLavera\nLeeann\nLeigh\nLeslee\nLolita\nLona\nLonnie\nLori\nLorrie\nLuana\nLucretia\nMalinda\nMamie\nMargarett\nMarjie\nMarlena\nMarolyn\nMaryjane\nMarylee\nMichaela\nMichel\nMollie\nNickie\nOlive\nOpal\nPatrica\nPenney\nRebeca\nReta\nRosalia\nRoxanna\nSammie\nSharol\nSharone\nShelia\nSherie\nSherill\nSherril\nShiela\nSusana\nSuzanna\nSybil\nTamra\nTrinidad\nVictory\nMary\nLinda\nPatricia\nBarbara\nSharon\nCarol\nSandra\nJudith\nSusan\nNancy\nJudy\nKaren\nDonna\nCarolyn\nDiane\nMargaret\nKathleen\nShirley\nBetty\nMarilyn\nJanet\nVirginia\nJoan\nJoyce\nJanice\nGloria\nPamela\nBeverly\nBonnie\nFrances\nDorothy\nDiana\nCarole\nHelen\nElizabeth\nMartha\nAlice\nCheryl\nDarlene\nJean\nSally\nRuth\nIrene\nAnn\nPhyllis\nJoanne\nConnie\nDolores\nGail\nPeggy\nRoberta\nSuzanne\nCharlotte\nRita\nJo\nJoann\nJacqueline\nMarie\nElaine\nNorma\nPat\nKathy\nRose\nKatherine\nSue\nSylvia\nMaria\nAnita\nChristine\nLynn\nKathryn\nCharlene\nCatherine\nJane\nEvelyn\nLouise\nLynda\nPaula\nGeraldine\nJulie\nMarsha\nSheila\nDoris\nDianne\nJeanne\nLois\nAnne\nMarjorie\nEllen\nCarmen\nMarcia\nLoretta\nMarlene\nWanda\nArlene\nClaudia\nJuanita\nKay\nSherry\nDeanna\nBrenda\nGeorgia\nEsther\nJulia\nVictoria\nYvonne\nPenny\nCynthia\nEileen\nTerry\nAnna\nLorraine\nVicki\nEleanor\nPatsy\nGayle\nRebecca\nJosephine\nRosemary\nLynne\nMaureen\nGlenda\nLaura\nLeslie\nTheresa\nMichele\nPauline\nRachel\nRosalie\nToni\nBillie\nTeresa\nAndrea\nJackie\nJeanette\nMarian\nJune\nVivian\nCecilia\nValerie\nConstance\nMargie\nStephanie\nCaroline\nYolanda\nAnnette\nJoy\nRamona\nLydia\nRuby\nSarah\nLillian\nGrace\nSharron\nLupe\nMelinda\nStella\nSandy\nEdith\nFlorence\nDelores\nPriscilla\nColleen\nMildred\nJill\nMarion\nOlivia\nPaulette\nSheryl\nChristina\nMarianne\nRosie\nBeatrice\nCathy\nEdna\nLana\nCecelia\nLucille\nSondra\nLucy\nEva\nPenelope\nWilma\nMaxine\nSara\nRobin\nJennie\nDianna\nDixie\nMyrna\nThelma\nWendy\nEmily\nJan\nGwendolyn\nJeannette\nVera\nBertha\nCarla\nNadine\nRosa\nRosemarie\nJacquelyn\nJanis\nLeona\nBernice\nBobbie\nBette\nMichelle\nPam\nSaundra\nAntoinette\nDona\nPatty\nEthel\nJudi\nIsabel\nAudrey\nClara\nHarriet\nJerry\nBeth\nJessie\nMargarita\nDora\nGladys\nVickie\nDenise\nHazel\nJudie\nVerna\nVicky\nAngie\nCelia\nEmma\nMadeline\nMaryann\nVeronica\nAnnie\nIrma\nJoanna\nTina\nJeri\nDawn\nRenee\nIda\nLaurel\nNora\nTrudy\nAlicia\nCherie\nDana\nDoreen\nGay\nJeannie\nAlberta\nAngelina\nDelia\nLorna\nMargo\nMarguerite\nGretchen\nLaurie\nNaomi\nPatti\nClaire\nEdwina\nFrancine\nGwen\nRosalind\nSonja\nGuadalupe\nKarin\nNellie\nSusanne\nElsie\nJosie\nLee\nViola\nArleen\nBeverley\nCharleen\nErnestine\nSusie\nAmelia\nFaye\nGale\nJenny\nNina\nRegina\nSydney\nAlma\nDeborah\nLaverne\nLola\nMiriam\nOlga\nPearl\nSheri\nTamara\nVelma\nDarleen\nHope\nKathie\nMelanie\nTerri\nAntonia\nEarlene\nElla\nMarcella\nAurora\nConsuelo\nDella\nGenevieve\nGinger\nHenrietta\nJanette\nJennifer\nLynette\nNikki\nViolet\nAngela\nApril\nDale\nEstella\nLenore\nMelody\nMolly\nNatalie\nRae\nCora\nEloise\nJeanie\nMeredith\nRochelle\nSherrie\nTanya\nBettie\nCamille\nCindy\nClaudette\nElvira\nErlinda\nInez\nLavonne\nLeah\nLorene\nMarilee\nMarilynn\nSherrill\nDee\nElena\nJanie\nMona\nMuriel\nRoxanne\nAdele\nBetsy\nCarolee\nLeilani\nWinifred\nCarlene\nCarrie\nCathleen\nDian\nErma\nFay\nHolly\nIlene\nMyra\nAdrienne\nBonita\nHelene\nMarla\nMarylou\nMichael\nMonica\nAgnes\nCarroll\nChristie\nFrankie\nGlenna\nJana\nSharlene\nSocorro\nSonia\nAna\nArline\nCarleen\nCassandra\nDarla\nEsperanza\nHarriett\nJayne\nLila\nNola\nNoreen\nSharyn\nAlyce\nBecky\nCandace\nDiann\nDorene\nHilda\nJeannine\nJerri\nKaye\nKristin\nKristine\nLenora\nLucinda\nMelba\nMercedes\nMerry\nAda\nCarmelita\nCarolynn\nCheri\nCorinne\nEunice\nFaith\nGerry\nIris\nJolene\nJulianne\nKarla\nMarietta\nMarleen\nSharen\nSuzan\nTeri\nAileen\nFreda\nIngrid\nKatharine\nKerry\nKitty\nLyn\nMabel\nMadeleine\nMarva\nMerle\nMollie\nNanette\nNita\nAmanda\nArmida\nBernadette\nBlanche\nDorothea\nFern\nGeorgina\nLela\nLorena\nNancie\nNelda\nRaquel\nSallie\nSandi\nYvette\nCeleste\nElisa\nGaye\nGeneva\nKarol\nLadonna\nLena\nLeola\nLillie\nLora\nMadelyn\nMae\nMarcy\nMargery\nMaryanne\nMinnie\nRosalyn\nRoseann\nShari\nSherri\nShirlee\nSusann\nAdeline\nCarolina\nCarrol\nCaryl\nCatalina\nCathryn\nChris\nClare\nCrystal\nEugenia\nFrancis\nGeorgette\nJohnnie\nLinnea\nLuana\nMarina\nMickey\nNicole\nPetra\nRoxie\nShannon\nShelley\nTana\nTerrie\nAmy\nBelinda\nCheryle\nCorrine\nDeloris\nEvangelina\nFrieda\nGerri\nGertrude\nGracie\nHeather\nHeidi\nJacklyn\nJeanine\nJeraldine\nJerilyn\nJerrie\nJuliet\nKathi\nLeila\nLori\nLynnette\nMelva\nNanci\nNedra\nOpal\nRobyn\nRosalee\nSidney\nSybil\nTrinidad\nAlexis\nAlta\nCecile\nClaudine\nEstelle\nFlora\nIna\nJanine\nLisa\nLonnie\nLucia\nMari\nMarylin\nMelissa\nMercy\nMerrilee\nMillie\nNicki\nRhoda\nRonda\nRosanne\nRosario\nSherron\nTherese\nTommie\nArdith\nBessie\nCathie\nColette\nDaphne\nDeanne\nElva\nEmilie\nEtta\nFlorine\nJewel\nKaaren\nLesley\nMaryellen\nMavis\nMimi\nRena\nRosalinda\nSherryl\nSilvia\nTrina\nVelda\nAdela\nAlexandra\nAngelita\nCaron\nCherry\nDeana\nDebbie\nDolly\nDottie\nFrancisca\nGeorgiana\nGreta\nHarriette\nHerlinda\nJaclyn\nJanelle\nJimmie\nJuana\nKarolyn\nKaron\nKatie\nKristen\nLani\nLaraine\nMagdalena\nMarlys\nMarta\nMarylyn\nNan\nOphelia\nPolly\nRandi\nReba\nRosetta\nSusanna\nSuzette\nTillie\nAdelina\nAlana\nCandy\nDanielle\nElise\nFran\nJames\nJanyce\nJody\nJohn\nLauna\nLaurene\nLea\nLou\nLouella\nLucretia\nMadonna\nMarge\nMaryjo\nMarylouise\nMelodie\nMichaele\nNatasha\nNeva\nNona\nOfelia\nRhonda\nRichard\nRobbie\nRobert\nRoxanna\nShelia\nSophie\nTonia\nTonya\nValarie\nWilla\nAdrianne\nAlison\nAndra\nAntonette\nArla\nBelva\nBernadine\nBettye\nCamilla\nCaroll\nCarolyne\nCharmaine\nChristy\nCoralee\nDarline\nDebra\nDena\nDinah\nDorthy\nElisabeth\nEve\nGary\nGaylene\nGeorgie\nGeri\nGina\nGinny\nHannah\nHellen\nIsabelle\nJacquelin\nJoe\nJonnie\nJosefina\nJuliana\nJustine\nKarren\nKim\nLawanda\nLeta\nLetha\nLonna\nLorrie\nLuz\nMadalyn\nManuela\nMargot\nMarianna\nMarilynne\nMarylee\nMatilda\nMaurine\nMay\nMerlene\nMichal\nNoel\nNorene\nPamala\nPaul\nPennie\nPrudence\nRonnie\nRosita\nSandie\nSerena\nSharleen\nShelly\nSherie\nSherilyn\nVirgie\nWillie\nWinona\nAdriana\nAlona\nAnnabelle\nBelen\nBonny\nCaren\nCarlotta\nCharline\nClarice\nCleo\nColeen\nCorine\nCorliss\nDelphine\nDollie\nElouise\nElvera\nEstela\nEula\nEvangeline\nEvon\nFrancesca\nGabrielle\nGene\nGeorgianna\nGerrie\nGlory\nHelena\nHortencia\nIla\nIva\nJacque\nJamie\nJaneen\nJerrilyn\nJovita\nKarlene\nKaryl\nKathrine\nLeanna\nLeanne\nLelia\nLeora\nLibby\nLona\nLuann\nMaggie\nMargret\nMarlyn\nMarty\nMyrtle\nNadene\nNettie\nOra\nPamella\nPattie\nPhoebe\nPortia\nRachelle\nRaylene\nReva\nRoseanne\nRosella\nRuthann\nSharilyn\nSonya\nStefanie\nSuzann\nTammy\nTeddy\nTracy\nVonnie\nWinnie\nZandra\nZelma\nAida\nAnnalee\nAnnetta\nAurelia\nBarry\nBeatriz\nBelia\nBeryl\nBeulah\nBilly\nBobbi\nCarlyn\nCarmel\nCaryn\nCathrine\nCharlyne\nChloe\nCoral\nCornelia\nCruz\nDavid\nDeann\nDelfina\nDennis\nDina\nEarline\nEdythe\nElma\nErin\nEster\nFreddie\nFreida\nGayla\nGeorganne\nGoldie\nHortensia\nIsabell\nJeane\nJerilynn\nJohanna\nJohna\nJoye\nJudee\nJudyth\nJuliette\nKathe\nKaty\nLael\nLanette\nLarry\nLauretta\nLeigh\nLeota\nLily\nLolita\nLoraine\nLouisa\nLuella\nMable\nMaralee\nMaralyn\nMaren\nMariana\nMarjory\nMarvel\nMerrily\nOleta\nPatrica\nPeggie\nRene\nReta\nRhea\nSharie\nSharol\nSheridan\nSusana\nSuzie\nSuzy\nThomas\nVickey\nVictory\nVivienne\nVonda\nZelda\nZoe\nAdelaide\nAleta\nAlfreda\nAlvina\nAmalia\nAmparo\nArdis\nAvis\nBenita\nBerta\nBeverlee\nBridget\nBrooke\nCatharine\nCharles\nCheryll\nConcepcion\nConception\nCoralie\nCristina\nDaisy\nDarcy\nDenice\nDorris\nEarleen\nEddie\nElda\nEleanore\nElissa\nElsa\nElvia\nEmilia\nEnid\nErlene\nErnestina\nEvelyne\nFlorene\nGeorgiann\nGraciela\nHedy\nIlona\nImogene\nIsabella\nJenifer\nJessica\nJewell\nJocelyn\nJoellen\nJosette\nJulianna\nKaryn\nKatheryn\nKelly\nKendra\nKristi\nLanita\nLaureen\nLidia\nLouann\nLouanne\nLuanne\nLula\nMadge\nMaida\nMariann\nMaribeth\nMarilou\nMarita\nMartina\nMattie\nMaurene\nMegan\nMerilyn\nMickie\nMillicent\nMinerva\nNyla\nOna\nOralia\nOrlene\nPatrice\nPauletta\nRafaela\nRonald\nRosalia\nRosalina\nRoselyn\nRowena\nRoxana\nRoxann\nRoyce\nRozanne\nRuthie\nSadie\nSaralee\nSelma\nShaaron\nShanna\nShara\nSharyl\nSheron\nStacy\nSuzanna\nThalia\nTheda\nTheo\nTheodora\nTracey\nVada\nValorie\nVelia\nVivien\nWilda\nWilliam\nLinda\nMary\nPatricia\nBarbara\nCarol\nSharon\nSandra\nSusan\nJudith\nNancy\nDonna\nJudy\nKaren\nCarolyn\nKathleen\nMargaret\nDiane\nPamela\nShirley\nGloria\nJanet\nCheryl\nBetty\nMarilyn\nJoan\nVirginia\nJanice\nJoyce\nBonnie\nBeverly\nDiana\nCarole\nElizabeth\nDorothy\nFrances\nHelen\nMartha\nSally\nJean\nAnn\nConnie\nAlice\nChristine\nGail\nDarlene\nRuth\nSuzanne\nMaria\nDolores\nRoberta\nIrene\nJo\nKathy\nPhyllis\nCharlotte\nMarie\nRose\nJoanne\nCatherine\nJane\nPeggy\nElaine\nClaudia\nSue\nKathryn\nPaula\nVictoria\nAnita\nLynn\nKatherine\nPat\nLouise\nRita\nDianne\nJacqueline\nJoann\nSylvia\nLois\nMarsha\nLynda\nNorma\nVicki\nJeanne\nCharlene\nSherry\nEvelyn\nEllen\nWanda\nPenny\nJulie\nMarcia\nBrenda\nDoris\nJuanita\nSheila\nAndrea\nMarjorie\nGeraldine\nAnne\nEileen\nMichele\nMarlene\nRebecca\nCynthia\nKay\nLorraine\nCarmen\nLeslie\nTerry\nMaureen\nRosemary\nArlene\nGlenda\nEsther\nGeorgia\nTheresa\nYvonne\nRachel\nJeanette\nLoretta\nLynne\nTeresa\nAnna\nEleanor\nPatsy\nYolanda\nJosephine\nGayle\nConstance\nLaura\nDeanna\nToni\nJulia\nSarah\nJackie\nLupe\nCecilia\nVivian\nJill\nStephanie\nJune\nChristina\nDelores\nCaroline\nPriscilla\nValerie\nAnnette\nLillian\nRosalie\nBillie\nOlivia\nSharron\nCathy\nMarian\nDianna\nJoy\nMargie\nPauline\nGrace\nLydia\nSandy\nBeatrice\nEdith\nMildred\nPaulette\nRosie\nSheryl\nRuby\nStella\nLucille\nJennifer\nCarla\nJeannette\nLana\nMaxine\nDeborah\nJacquelyn\nMarion\nWilma\nJan\nMelinda\nJennie\nJessie\nRobin\nRosemarie\nPenelope\nVickie\nClara\nColleen\nEdna\nMarianne\nBertha\nFlorence\nRamona\nThelma\nEva\nWendy\nDixie\nJanis\nHazel\nPatty\nRenee\nPam\nVera\nCecelia\nLaurie\nLucy\nEmily\nMichelle\nJudi\nTrudy\nSara\nNadine\nBobbie\nRosa\nSaundra\nAntoinette\nBeth\nLaurel\nBernice\nDana\nGwendolyn\nHarriet\nMadeline\nMaryann\nLee\nNina\nAlma\nEmma\nMarguerite\nBette\nDawn\nAngela\nClaire\nEthel\nLeona\nLola\nGladys\nDora\nElsie\nJudie\nLorna\nMargo\nBonita\nDenise\nJeannie\nVeronica\nCelia\nMargarita\nNellie\nPatti\nIda\nNora\nMarcella\nMyrna\nTina\nVerna\nVicky\nDelia\nDona\nGenevieve\nAnnie\nCathleen\nSondra\nBernadette\nEloise\nJanie\nNaomi\nCamille\nRegina\nTerri\nAlberta\nAlicia\nAngelina\nGay\nGretchen\nJosie\nMarta\nSusanne\nAngie\nAntonia\nCheri\nElena\nJeri\nMelody\nAdrienne\nBeverley\nHenrietta\nHolly\nKathie\nCherie\nErnestine\nFrancine\nJerry\nDee\nGinger\nGuadalupe\nVelma\nViola\nAna\nCandace\nFaye\nGale\nJoanna\nSherrill\nDella\nIris\nIrma\nPearl\nRochelle\nSusie\nAudrey\nBecky\nCharleen\nCheryle\nMelanie\nSonja\nTanya\nTeri\nBetsy\nDeloris\nElla\nJeanie\nMarilynn\nMiriam\nShelley\nSherri\nViolet\nGertrude\nGwen\nHelene\nLora\nTamara\nArmida\nFaith\nInez\nIsabel\nJenny\nMyra\nAmelia\nConsuelo\nErlinda\nHope\nLaverne\nNikki\nAurora\nChris\nCora\nDoreen\nEarlene\nFrankie\nLucinda\nMarilee\nWinifred\nAdele\nArleen\nCarlene\nCarolee\nCindy\nClaudette\nErma\nFlora\nFreda\nKarin\nLynette\nTerrie\nBettie\nCarrie\nGeneva\nKaye\nKristin\nLeah\nLena\nLenora\nLisa\nMarla\nMercedes\nJerri\nKarla\nMarylou\nMelba\nMeredith\nMerry\nMonica\nMuriel\nNatalie\nNola\nRosalind\nSandi\nShari\nAdeline\nCandy\nDale\nEugenia\nEunice\nGerry\nKatharine\nLily\nNoreen\nRae\nRoxanne\nSheri\nSherrie\nSuzan\nAgnes\nBernadine\nDian\nJolene\nLeilani\nMichael\nOlga\nCarroll\nEstella\nIlene\nMolly\nNan\nNelda\nShannon\nSharyn\nWilla\nAmy\nEdwina\nEsperanza\nGlenna\nJanette\nKristine\nLani\nLou\nMarva\nSharlene\nSherryl\nSocorro\nSonia\nSydney\nTheodora\nCarolynn\nCarrol\nCorinne\nDaphne\nDarleen\nDiann\nFrancis\nJeannine\nLavonne\nLenore\nMona\nOfelia\nSallie\nTherese\nAlta\nArline\nCharla\nDarla\nDebbie\nFay\nGeri\nJerilyn\nJohnnie\nKatie\nLila\nLorene\nMickey\nNita\nNona\nRena\nRoseann\nSharen\nBessie\nDeanne\nDebra\nElisabeth\nGaye\nGracie\nHeidi\nJana\nKerry\nLea\nLeanne\nLeta\nLouella\nLyn\nMarina\nMelissa\nMyrtle\nSuzette\nAlana\nApril\nCaren\nCassandra\nCecile\nChristie\nDorene\nElsa\nElvira\nEvangeline\nHerlinda\nIngrid\nJohanna\nKatheryn\nKim\nLillie\nMabel\nMelva\nMercy\nAda\nAlison\nAlyce\nCarmelita\nEtta\nHarriett\nIva\nJacklyn\nJuana\nJuliet\nLela\nMae\nMagdalena\nMarylee\nNanette\nNicole\nPolly\nTracy\nWillie\nAileen\nBlanche\nCamilla\nCathryn\nCrystal\nDorinda\nDorthy\nDottie\nElva\nGeorgette\nGeorgina\nGerri\nJanine\nJessica\nLaraine\nLeanna\nLeila\nLesley\nLonnie\nLori\nLynnette\nMargery\nMarietta\nOpal\nRaquel\nRhoda\nRonna\nRosalee\nRosalinda\nRosalyn\nShirlee\nSybil\nAlexandra\nCarolina\nCarolyne\nCatalina\nCeleste\nCharline\nClarice\nDaisy\nDena\nDorothea\nEarline\nEstela\nGene\nGeorgene\nGraciela\nHilda\nKathi\nKristi\nKristina\nLoraine\nLorena\nLuz\nMari\nMarti\nMaryellen\nMaryjane\nMerle\nMillicent\nMillie\nRetha\nRhonda\nRobyn\nRosario\nSherron\nSilvia\nAlexis\nAnnetta\nArdith\nBenita\nCaryl\nCatharine\nCathie\nColette\nConcepcion\nDeana\nDenice\nDinah\nEvangelina\nGina\nIna\nJanelle\nJewell\nJimmie\nJoellen\nJonnie\nKarolyn\nKitty\nLouisa\nLuana\nLuella\nMerrilee\nMollie\nPattie\nRandi\nRobert\nRonda\nRonnie\nSherilyn\nSuellen\nSunny\nVirgie\nWinnie\nAlene\nAmalia\nBelinda\nChristy\nClaudine\nCleo\nDanielle\nDanna\nDarline\nDelfina\nElisa\nEstelle\nGeorganne\nGinny\nHeather\nIsabelle\nJames\nJayne\nJewel\nJulianne\nKarren\nKathryne\nKris\nLetha\nLilly\nLucia\nManuela\nMargot\nMarilou\nMarlys\nMattie\nMaurine\nMelodie\nMimi\nNanci\nNancie\nNedra\nNicki\nPatrice\nPennie\nReba\nRobbie\nSonya\nSophie\nSuzie\nTana\nVelia\nVonda\nAllene\nAngelita\nAntonette\nBeryl\nBrooke\nCherri\nDavid\nElinor\nEster\nEve\nFrancisca\nFrieda\nIla\nJacquline\nJamie\nJaneen\nJerrie\nJody\nJoella\nJuliana\nKaran\nKaryn\nKathlyn\nLeigh\nLoyce\nLuanne\nMable\nMadeleine\nMadelyn\nMaggie\nMarcy\nMargret\nMarianna\nMarty\nMaryanne\nMerilyn\nNettie\nNickie\nNiki\nNorene\nPamala\nRaylene\nReiko\nRene\nRhea\nRosanne\nRoxie\nRuthie\nSammie\nSharyl\nSidney\nSuzann\nTommie\nTrina\nTrudie\nAdela\nAdelina\nAlfreda\nBernardine\nBettina\nBobbi\nCarlotta\nCarolann\nCherilyn\nClare\nCorrine\nDolly\nElyse\nEvonne\nGaylene\nGeorge\nHarlene\nHarriette\nHortensia\nJanell\nJeanine\nJerrilyn\nJosefina\nJudyth\nKarol\nKathe\nKathlene\nKathrine\nKelly\nLarraine\nLavon\nLeone\nLidia\nLinnea\nLolita\nLonna\nMariann\nMartina\nMaryjo\nMarylyn\nMay\nMerlene\nMichaele\nMinnie\nNell\nNyla\nOra\nPamella\nPatrica\nPeggie\nPortia\nRoseanne\nRoselyn\nRoxana\nSheron\nSheryll\nSophia\nSusanna\nSuzanna\nTreva\nTrinidad\nTwyla\nVickey\nVida\nViki\nVikki\nWinona\nAlida\nAline\nAloha\nAmanda\nAva\nBabette\nBettye\nBeulah\nBeverlee\nBonny\nCarlyn\nCarolin\nCaryn\nCathrine\nCharlyn\nCherry\nCheryll\nColeen\nCoral\nCristina\nCruz\nDarlyne\nDeirdre\nDennis\nDina\nDonnie\nDyanne\nEarleen\nEilene\nFern\nFrancesca\nFreddie\nGeorgetta\nGeorgiana\nGerrie\nGreta\nHattie\nIsabell\nJaclyn\nJacque\nJaney\nJoanie\nJohn\nJulene\nJulieta\nKaaren\nKate\nKathaleen\nKaty\nKit\nKristen\nLaurene\nLeann\nLeni\nLeota\nLita\nLona\nLoralee\nLorelei\nLuann\nMarge\nMarjory\nMarleen\nMarlyn\nMavis\nMerilee\nMerrie\nMickie\nNeva\nOllie\nOphelia\nPetra\nRandy\nReina\nReta\nRosetta\nSelma\nShelia\nSherre\nSusana\nTillie\nTonya\nTrudi\nTwila\nValorie\nVerla\nVesta\nVivienne\nAdrian\nAkemi\nAndria\nAnnabelle\nArdis\nAvis\nBobby\nBobette\nCallie\nCaroll\nCassie\nCharmaine\nCherlyn\nCherryl\nChristene\nCoralee\nCordelia\nCourtney\nDawna\nDeena\nDorine\nDortha\nDyann\nElayne\nEleanore\nElise\nElma\nEmilie\nErin\nEvie\nFelicia\nFloy\nFreida\nGeorgianna\nGeorgianne\nGermaine\nGoldie\nGwenda\nHannah\nHelena\nHortense\nImogene\nJacquelin\nJacquelynn\nJann\nJanna\nJannette\nJennette\nJeraldine\nJocelyn\nJodie\nKandy\nKirsten\nLadonna\nLanette\nLeonor\nLeora\nLeticia\nLindy\nLouanne\nMadelaine\nMadge\nMadolyn\nMamie\nMarcelle\nMarline\nMaryhelen\nMarylin\nMaudie\nMelodee\nMerrily\nNannette\nNoel\nPauletta\nPhylis\nPrudence\nRachael\nRaelene\nRosanna\nRosella\nRosita\nRowena\nRoxanna\nRoyce\nSandie\nSerena\nSharilyn\nSharol\nSherrell\nSigne\nSigrid\nStarr\nSusann\nTammy\nTonie\nUnknown\nVanda\nVeda\nVenita\nVernetta\nYvette\nZelda\nZoe\nLinda\nMary\nPatricia\nBarbara\nCarol\nSusan\nSharon\nSandra\nNancy\nDonna\nKaren\nJudith\nJudy\nKathleen\nDiane\nCarolyn\nMargaret\nGloria\nPamela\nJanet\nCheryl\nShirley\nBetty\nJanice\nVirginia\nMarilyn\nDiana\nJoyce\nJoan\nBonnie\nElizabeth\nDorothy\nBeverly\nFrances\nMartha\nHelen\nAnn\nCarole\nGail\nChristine\nConnie\nKathy\nJean\nJane\nAlice\nVictoria\nSally\nSuzanne\nCatherine\nDarlene\nPeggy\nPhyllis\nSue\nMaria\nKathryn\nJoanne\nLynn\nPaula\nIrene\nElaine\nRuth\nRose\nMarie\nDolores\nJacqueline\nRoberta\nSylvia\nJo\nVicki\nLaura\nKatherine\nRosemary\nJeanne\nCharlotte\nDianne\nAnita\nLynda\nClaudia\nBrenda\nNorma\nCharlene\nSherry\nJulie\nEvelyn\nPat\nAnne\nMarsha\nSheila\nCynthia\nLouise\nMarcia\nJoann\nGeraldine\nRita\nDoris\nPenny\nKay\nToni\nEllen\nLeslie\nLois\nLoretta\nMarjorie\nMarlene\nYolanda\nAndrea\nLorraine\nTheresa\nGeorgia\nMichele\nAnna\nMaureen\nWanda\nYvonne\nEsther\nGayle\nRebecca\nLynne\nCarmen\nJeanette\nJuanita\nTeresa\nValerie\nArlene\nEileen\nConstance\nTerry\nRobin\nSheryl\nPatsy\nStephanie\nJan\nJosephine\nGlenda\nJill\nPauline\nCathy\nLaurie\nRachel\nChristina\nJackie\nLupe\nVivian\nSandy\nDeborah\nJanis\nLillian\nAnnette\nJulia\nLydia\nVickie\nCarla\nDeanna\nPaulette\nColleen\nDianna\nDelores\nCecilia\nJennifer\nEleanor\nBeatrice\nLucille\nBillie\nRosalie\nJune\nCaroline\nJoy\nMargie\nMichelle\nOlivia\nWendy\nGrace\nGwendolyn\nJudi\nMarian\nPriscilla\nMaxine\nEva\nJeannette\nLana\nCandace\nDenise\nStella\nRuby\nSarah\nSharron\nEdith\nRosie\nFlorence\nRamona\nDixie\nSara\nJacquelyn\nMelinda\nMildred\nGuadalupe\nMarianne\nDana\nRosemarie\nTrudy\nMarion\nRenee\nSharyn\nAudrey\nLucy\nJanie\nRosa\nTerri\nThelma\nClaire\nPatty\nVeronica\nVicky\nEdna\nPenelope\nLaurel\nLorna\nMargo\nSaundra\nJennie\nPam\nBernice\nWilma\nBobbie\nVera\nAntoinette\nDora\nJeannie\nLee\nBertha\nDoreen\nTina\nJessie\nAngela\nCecelia\nAnnie\nBecky\nDawn\nEmily\nLynette\nBeth\nAlicia\nHarriet\nNellie\nNora\nSusanne\nTeri\nMarguerite\nMaryann\nPatti\nBette\nCherie\nJeri\nLauren\nMadeline\nMelody\nNaomi\nSondra\nCathleen\nFaye\nGretchen\nMonica\nAngie\nClara\nFrancine\nMargarita\nVelma\nVerna\nDale\nEmma\nKathie\nSherrie\nBernadette\nCindy\nEthel\nAntonia\nElsie\nNadine\nNina\nAdrienne\nAlma\nJosie\nLeona\nLisa\nMyrna\nGladys\nHazel\nIsabel\nJanette\nAngelina\nDelia\nGale\nGwen\nRegina\nCelia\nGinger\nIrma\nLola\nMarcella\nRhonda\nAmelia\nJudie\nCheri\nGay\nIda\nSandi\nElla\nSherri\nAlberta\nAna\nConsuelo\nDona\nElena\nErnestine\nJenny\nJerry\nLorene\nMelanie\nSusie\nApril\nAurora\nCamille\nChris\nEstella\nJoanna\nLaverne\nDee\nSonja\nBetsy\nBeverley\nEloise\nEsperanza\nGenevieve\nKristine\nMarilynn\nMiriam\nMona\nNoreen\nOlga\nRosalind\nSheri\nCandy\nCheryle\nErma\nGlenna\nHolly\nCora\nJeanie\nLora\nMeredith\nNikki\nCharleen\nIris\nJeannine\nKim\nMolly\nMyra\nNatalie\nPearl\nRae\nRoxanne\nSallie\nArmida\nElvira\nHenrietta\nLucinda\nMarla\nShannon\nSydney\nTamara\nViola\nViolet\nAdele\nAgnes\nBonita\nCarroll\nCherry\nDiann\nErlinda\nKatharine\nRochelle\nTanya\nCarrie\nEarlene\nHilda\nJamie\nJayne\nKarla\nMerry\nShelley\nClaudette\nDella\nGerry\nGertrude\nHelene\nKarin\nKathi\nMarina\nMelba\nMichael\nMuriel\nNita\nRobyn\nSharlene\nAlta\nCarolina\nEunice\nHeather\nJerri\nKarol\nLeilani\nLela\nMarta\nMarylou\nNola\nRena\nSherrill\nSocorro\nTerrie\nWinifred\nDian\nEugenia\nFrankie\nKristin\nMyrtle\nNona\nOfelia\nSusanna\nAdela\nBettie\nDarleen\nDebra\nEdwina\nGeneva\nInez\nJeanine\nKatie\nLeah\nMercedes\nSharen\nShari\nTracy\nAileen\nCathryn\nCorinne\nDena\nKitty\nLani\nLavonne\nLenore\nLila\nLily\nNelda\nSonia\nAmy\nBelinda\nCarlene\nCathie\nCeleste\nCharla\nChristy\nElisabeth\nHarriett\nIngrid\nJacklyn\nLyn\nMarietta\nMarilee\nMaryellen\nSherryl\nAdeline\nDeanne\nFaith\nGeri\nHope\nKerry\nLena\nLeta\nLucia\nTherese\nWillie\nAda\nCandice\nCarolyne\nFlora\nGina\nHeidi\nJoellen\nJulianne\nKaron\nKaryn\nMarva\nMelissa\nMerle\nOpal\nRosario\nSheron\nSuzan\nTonya\nCarleen\nCarolee\nCecile\nClaudine\nDeloris\nEve\nFreda\nHerlinda\nJana\nJohanna\nJohnnie\nKaaren\nKarren\nKaye\nLesley\nLillie\nLou\nLynnette\nMargery\nMaryanne\nMelva\nNanci\nNicki\nBeatriz\nBeryl\nChristie\nClarice\nCrystal\nDorothea\nEarline\nElva\nIna\nJonnie\nJuana\nKatheryn\nLaraine\nLenora\nLonnie\nLoraine\nMagdalena\nNan\nNoel\nPamala\nRene\nSidney\nSilvia\nSuellen\nSybil\nTrudi\nAdelina\nAlexis\nBernadine\nBlanche\nCarolynn\nCarrol\nCheryll\nDeena\nElinor\nElsa\nEtta\nGinny\nGracie\nIlene\nJanelle\nJanine\nJewell\nJimmie\nJolene\nJosefina\nKristina\nLauretta\nLeanne\nLeila\nLilly\nLinnea\nLona\nLori\nMadelyn\nMae\nMickey\nNanette\nNeva\nRichard\nRoseann\nRoxanna\nTrina\nAleta\nAlexandra\nAlison\nAngelita\nCarmel\nDanielle\nDebbie\nDorene\nEddie\nElisa\nFran\nGaye\nJay\nMarcy\nMargot\nMimi\nMinnie\nNicole\nPolly\nRaquel\nRonnie\nSandie\nShelia\nSherilyn\nSonya\nTana\nTommie\nTonia\nWilla\nAllison\nArline\nBettye\nBobbi\nCaren\nCarmela\nCarmelita\nCatalina\nClare\nDaisy\nDaphne\nDaryl\nDeidra\nDeirdre\nDina\nFay\nFern\nGeorgette\nGeorgina\nGerrie\nJerilyn\nJewel\nKaryl\nLea\nLeticia\nLorena\nMelodie\nNorene\nPamella\nPatrice\nRhoda\nRobert\nRuthie\nSusann\nTammy\nTheodora\nToby\nYvette\nAlana\nAlyce\nAmanda\nAmber\nBessie\nCaryl\nCassandra\nDinah\nDolly\nErin\nEvangelina\nFrancis\nGeorgene\nHarriette\nIla\nIsabell\nJacquelynn\nJames\nJerrie\nJudee\nLadonna\nLoreen\nLuanne\nLuz\nMadeleine\nManuela\nMari\nMarylin\nMay\nMercy\nMickie\nNannette\nOra\nPennie\nRandee\nRosalinda\nSharolyn\nSharyl\nShirlee\nSunny\nZelma\nAlthea\nBenita\nBonny\nCatharine\nCharmaine\nCherilyn\nCollette\nCornelia\nCristina\nDanna\nDarla\nDarline\nDeana\nDeidre\nDenice\nElayne\nElise\nElnora\nEnid\nErnestina\nEstela\nFelicia\nFreddie\nGaylene\nGenie\nGilda\nHilary\nJannie\nJessica\nJuliana\nJuliette\nKaran\nLaureen\nLetha\nLonna\nLuana\nLuella\nLula\nMable\nMarge\nMargret\nMarleen\nMarna\nMavis\nMillie\nOllie\nRetha\nReva\nRonda\nRonna\nRosalee\nRosalyn\nRosetta\nRoslyn\nSharilyn\nSherian\nSusana\nSuzann\nSuzi\nTreva\nVada\nVeda\nVikki\nAlene\nArdith\nAvis\nBridget\nBrooke\nCathi\nCharlette\nCinda\nConcepcion\nDelfina\nDevon\nDollie\nDottie\nEliza\nElma\nErica\nEstelle\nEvangeline\nGeorgiana\nGeorgianna\nGraciela\nHattie\nHelena\nIva\nJacquelin\nJade\nJanell\nJaney\nJaqueline\nJuliet\nKathrine\nKit\nKris\nKristen\nLarraine\nLaurene\nLavada\nLeanna\nLeora\nLetitia\nLouisa\nMarianna\nMarlyn\nMarlys\nMarty\nMatilda\nMattie\nMelodye\nMerrie\nMicaela\nPatt\nPattie\nRachael\nRanda\nRicki\nRobbie\nRoxie\nRuthann\nSadie\nSharol\nSheryll\nShirlene\nSophia\nSuzette\nSuzy\nTeddy\nVerda\nVonnie\nAbigail\nAdella\nAdelle\nAdrian\nAdrianne\nAllene\nAntionette\nAntonette\nArleen\nBernie\nBlanca\nCameron\nCamilla\nCassie\nColette\nDavid\nDawna\nDeann\nDelma\nDoretha\nDorinda\nEarnestine\nElaina\nEloisa\nElouise\nElvera\nEmilie\nFrancene\nFrancisca\nFreida\nFrieda\nGena\nGeorge\nGerri\nHannah\nHortencia\nJacque\nJacqulyn\nJanalee\nJaneen\nJenifer\nJeraldine\nJody\nJohn\nJovita\nJudyth\nKathlyn\nKelly\nKendra\nKristan\nKristi\nLanell\nLauri\nLeeann\nLeigh\nLita\nLoni\nMabel\nMamie\nMariann\nMarti\nMaryjane\nMaurine\nMillicent\nMitzi\nNancie\nNicola\nNorine\nPauletta\nPetra\nPrudence\nRacheal\nRandy\nRaylene\nReba\nRebeca\nRosanne\nRoselyn\nRoxana\nSandee\nSharla\nSharleen\nShelby\nSherril\nSherron\nShiela\nSigne\nSuzie\nTerryl\nTeryl\nTrinidad\nTrudie\nVelda\nVelia\nWinnie\nWinona\nZelda\nZona\nAida\nAnnetta\nAva\nBeulah\nBeverlee\nBilly\nCamila\nCandida\nCara\nCarlota\nCarola\nCaroll\nCecily\nCharline\nCherlyn\nChrista\nChristopher\nCleo\nCoralee\nDelora\nDeon\nDonnie\nDrena\nDrinda\nEarleen\nEffie\nEilene\nEmilia\nEnedina\nErna\nEula\nEulalia\nFannie\nFlorene\nFrancie\nGearldine\nGeorganne\nGlinda\nGolda\nHiroko\nHortense\nHortensia\nImogene\nIvy\nJanett\nJann\nJeralyn\nJerrilyn\nJoella\nJonell\nKandy\nKarleen\nKarolyn\nKathlene\nKatrina\nLaurena\nLavern\nLavon\nLeann\nLettie\nLilia\nLoralee\nLorenza\nLorrayne\nLucile\nLucretia\nLura\nLyla\nMadaline\nMara\nMarcelina\nMarcie\nMardell\nMardi\nMarilou\nMarline\nMarlo\nMarquita\nMarybeth\nMarylee\nMaudie\nMelodee\nMerrily\nMichiko\nMinerva\nNada\nPhillis\nPhoebe\nRaelene\nRaymond\nReiko\nReta\nRickie\nRoma\nRosalia\nRoselee\nRosita\nRoxann\nSabina\nSelma\nSharri\nShelly\nSigrid\nStephany\nSuzanna\nTania\nTanna\nTara\nTomi\nValorie\nVelvet\nVida\nVirgie\nVivien\nWynona\nLinda\nMary\nPatricia\nSusan\nBarbara\nSharon\nCarol\nSandra\nNancy\nKathleen\nKaren\nDonna\nJudy\nJudith\nDiane\nPamela\nCheryl\nCarolyn\nMargaret\nJanet\nJanice\nGloria\nShirley\nMarilyn\nBetty\nDiana\nVirginia\nJoyce\nChristine\nJoan\nBeverly\nElizabeth\nBonnie\nKathy\nDorothy\nCynthia\nMartha\nSuzanne\nFrances\nJean\nConnie\nHelen\nAnn\nAlice\nPhyllis\nGail\nSally\nMaria\nCatherine\nJane\nDarlene\nKathryn\nPeggy\nLynn\nRuth\nCarole\nMarsha\nJo\nPaula\nLaura\nSue\nKatherine\nRoberta\nElaine\nIrene\nSherry\nVicki\nAnita\nJoanne\nDolores\nJacqueline\nMarie\nClaudia\nJeanne\nRita\nSheila\nBrenda\nYolanda\nSylvia\nCharlene\nRosemary\nCharlotte\nEllen\nVictoria\nPat\nNorma\nDianne\nJulie\nLynda\nEvelyn\nMarcia\nAnne\nLeslie\nCathy\nRose\nTerry\nJanis\nRebecca\nTheresa\nToni\nYvonne\nLoretta\nLois\nDenise\nJoann\nTeresa\nAndrea\nMaureen\nLouise\nPenny\nLorraine\nGeraldine\nEsther\nLynne\nKay\nAnna\nMarlene\nStephanie\nConstance\nValerie\nWanda\nDoris\nJill\nGayle\nMichele\nEileen\nMarjorie\nJeanette\nJackie\nJuanita\nArlene\nDeborah\nRobin\nSandy\nJan\nJennifer\nPaulette\nGlenda\nPatsy\nCarla\nCarmen\nGeorgia\nChristina\nVivian\nSheryl\nJune\nRachel\nJosephine\nVickie\nLaurie\nJoy\nWendy\nJulia\nLupe\nMichelle\nEleanor\nColleen\nLydia\nMarian\nRenee\nDeanna\nRosalie\nAnnette\nMargie\nGwendolyn\nCecilia\nPauline\nBillie\nDianna\nCandace\nLana\nDelores\nLillian\nPam\nStella\nSarah\nCaroline\nOlivia\nTerri\nGrace\nEdith\nCheri\nPriscilla\nRuby\nRosie\nMildred\nMelinda\nJeannie\nGuadalupe\nJudi\nLaurel\nMelody\nPatty\nSharron\nWilma\nBeatrice\nJeannette\nMarianne\nMaxine\nRosa\nDawn\nJacquelyn\nMarion\nRamona\nLucille\nEva\nFlorence\nKristine\nJennie\nPenelope\nAngela\nCecelia\nCherie\nEmily\nJanie\nFrancine\nTrudy\nDana\nRosemarie\nSara\nDoreen\nAntoinette\nDale\nNadine\nBecky\nBobbie\nNina\nNora\nVera\nCathleen\nCindy\nTina\nBertha\nEdna\nDixie\nRhonda\nSherrie\nVicky\nAudrey\nBeth\nEmma\nHarriet\nSusie\nPatti\nLucy\nBette\nIrma\nMadeline\nSusanne\nBernadette\nJessie\nMaryann\nMyrna\nVeronica\nClara\nGale\nDora\nKathie\nCandy\nMargo\nMelanie\nThelma\nApril\nGay\nLee\nTeri\nClaire\nLeona\nMarcella\nSheri\nAngelina\nEthel\nFaye\nIda\nAlicia\nGinger\nIsabel\nLynette\nJeri\nOlga\nSharyn\nDona\nSuzette\nAlma\nBernice\nBonita\nMargarita\nMonica\nCandice\nDarla\nSaundra\nHope\nMarguerite\nSherri\nKim\nRoxanne\nAngie\nGladys\nHenrietta\nLisa\nAdrienne\nDella\nEloise\nJeanie\nMyra\nHeidi\nHolly\nKarin\nLauren\nLaverne\nLorna\nNikki\nPearl\nRochelle\nAnnie\nCelia\nDelia\nMona\nNaomi\nAmelia\nBeverley\nRegina\nSandi\nSondra\nGretchen\nJoanna\nJudie\nChris\nErma\nErnestine\nGwen\nJerry\nKristin\nSuzan\nTamara\nTerrie\nAdele\nAntonia\nBetsy\nCamille\nHazel\nJanette\nJosie\nMarilynn\nElla\nEstella\nGeneva\nMiriam\nNellie\nTanya\nVerna\nDebbie\nDian\nElsie\nGeorgette\nKarla\nLori\nMeredith\nGenevieve\nLora\nSonja\nAlberta\nAlison\nAna\nDee\nHelene\nJessica\nVelma\nAlana\nAurora\nClaudette\nIngrid\nJeannine\nJenny\nLola\nMerry\nNanci\nSherrill\nCarlene\nConsuelo\nCora\nGilda\nLeah\nLucinda\nMuriel\nRena\nCheryle\nEarlene\nElena\nEsperanza\nGlenna\nIris\nJanine\nJohnnie\nKimberly\nNoreen\nSydney\nViola\nArmida\nCarrie\nDarleen\nFlora\nHeather\nLenore\nShari\nShelley\nAgnes\nArleen\nChristy\nDiann\nHilda\nJana\nJayne\nLila\nMichael\nRosalind\nCathie\nCecile\nGeorgina\nInez\nJamie\nKitty\nLyn\nMarla\nRobyn\nSocorro\nWinifred\nAdela\nAlexis\nElvira\nKatharine\nKatie\nLavonne\nLou\nMercedes\nRae\nShelia\nTherese\nViolet\nAda\nAdeline\nCarrol\nDanielle\nErlinda\nGeri\nJeanine\nJosefina\nKaye\nKristina\nLuana\nMadelyn\nMelba\nMolly\nPatrice\nSherryl\nAmy\nCassandra\nEdwina\nKathi\nLela\nLena\nLorene\nRosalinda\nDebra\nEugenia\nEvangeline\nIlene\nJolene\nLucia\nNatalie\nPolly\nSallie\nBettie\nElisa\nKris\nLily\nMarilee\nMarina\nMelissa\nNanette\nSandie\nSharlene\nWillie\nChristie\nCorinne\nCrystal\nDorene\nFrankie\nGina\nJerri\nKaron\nLani\nLenora\nLoraine\nLynnette\nMadeleine\nMarylou\nPamala\nAileen\nAleta\nCaren\nCarolynn\nCarroll\nCherryl\nElva\nGerry\nJuana\nKristi\nLesley\nLillie\nLorena\nMagdalena\nOfelia\nRene\nYvette\nAlta\nBlanche\nCathryn\nCharleen\nColette\nEunice\nFaith\nLonnie\nMargot\nMari\nMarianna\nMaryanne\nMinnie\nRoseann\nShannon\nShirlee\nSonia\nTonya\nBenita\nBessie\nClare\nCorrine\nDeanne\nDeloris\nFrancis\nGene\nJaneen\nJanelle\nJerilyn\nMae\nMarty\nMarva\nNita\nNona\nRandi\nRosario\nRoslyn\nRoxie\nSilvia\nAlyce\nAnnabelle\nBridget\nCatharine\nCeleste\nCorliss\nDeana\nDena\nDolly\nFay\nIna\nJacklyn\nJimmie\nJody\nKarol\nKerry\nLadonna\nLilly\nLonna\nLorrie\nMarietta\nMarta\nVeda\nWilla\nCarmelita\nCristina\nDenice\nDorothea\nErica\nErin\nFrieda\nGaye\nGracie\nIsabelle\nJacque\nJulianne\nKatheryn\nLea\nLura\nMarcie\nMelva\nMercy\nNelda\nNettie\nPennie\nReba\nRobert\nSherilyn\nTracy\nValarie\nAmanda\nAntonette\nBelinda\nCherlyn\nClaudine\nColeen\nDanna\nDeirdre\nDinah\nElisabeth\nEstela\nFrancie\nGertrude\nHarriett\nKarlene\nKristen\nLauretta\nLeanne\nLouella\nLucretia\nLuz\nMyrtle\nNannette\nNicki\nNola\nRobbie\nRoxanna\nSusanna\nSuzi\nTommie\nAlexandra\nBernadine\nCarolina\nCharla\nCherry\nCherylene\nClarice\nCruz\nDaphne\nDelfina\nFelicia\nGayla\nGeorgiana\nGerri\nJerrie\nJewel\nJoe\nKarolyn\nLilia\nLourdes\nMattie\nMollie\nPetra\nRaquel\nRhoda\nRosanne\nSheron\nSonya\nSunny\nSusana\nSuzann\nTrina\nTrinidad\nTrudi\nZelma\nAllison\nAngelita\nBeverlee\nCamilla\nCarolee\nCaryl\nCatalina\nCherilyn\nCherri\nCleo\nConcepcion\nDawna\nDeidre\nDonita\nEve\nFern\nFreda\nFreddie\nGaylene\nJerrilyn\nJewell\nJohanna\nJonnie\nJuliette\nKaran\nKathe\nLeslee\nLeta\nLinnea\nLuann\nMamie\nMarylin\nMaurine\nMay\nMerle\nMillie\nMimi\nMitzi\nNicola\nNoel\nPattie\nRhea\nRonnie\nRosalee\nRosalia\nSherron\nAndra\nAnnetta\nAvis\nBobbi\nBonny\nCandis\nCharlyn\nCheryll\nCornelia\nDayle\nDebby\nDeena\nDina\nDonnie\nDorris\nDorthy\nDottie\nElma\nElvia\nErnestina\nEster\nEvangelina\nHerlinda\nHortencia\nJacalyn\nJames\nJustine\nKaaren\nLaureen\nLaurene\nLeila\nLeilani\nLeola\nLona\nLula\nMable\nManuela\nMarcy\nMarlys\nMelodie\nMickey\nNickie\nOpal\nRachael\nRaylene\nRonna\nRosella\nSandee\nSharen\nSharilyn\nSidney\nTammy\nTana\nTreva\nAmparo\nBeatriz\nBettye\nCarolyne\nCherrie\nDarline\nDarlyne\nDeann\nDiedre\nEarline\nEdythe\nEmilie\nEstelle\nFrancisca\nGeorgene\nGraciela\nHelena\nJacki\nJanell\nJann\nJannie\nJanyce\nJenifer\nJoetta\nJoette\nKandy\nLaraine\nLavern\nLeanna\nLeota\nLetha\nLidia\nLiza\nLolita\nLuanne\nMargery\nMargret\nMarilynne\nMeri\nMichaele\nMichel\nMinerva\nNedra\nNeva\nNorine\nPhylis\nRandee\nRetha\nRonda\nRuthie\nSadie\nShelly\nSusann\nSuzy\nTwila\nValorie\nVerona\nVikki\nWinnie\nZandra\nZoe\nAdrianne\nAida\nAlanna\nAletha\nAlix\nAmalia\nArdith\nArla\nArline\nAva\nBennie\nBlanca\nBrooke\nCandi\nCathi\nCharmaine\nCindi\nDavid\nDennis\nDenyse\nEleanore\nElissa\nEtta\nEvonne\nFrederica\nGaile\nGena\nGeorgianna\nGeorgie\nHedy\nJaney\nJoleen\nJoni\nJuliana\nKarren\nKathlyn\nKathryne\nKaty\nKelly\nKit\nLanette\nLavon\nMabel\nMaggie\nMaren\nMarilou\nMarylouise\nMarylyn\nMarylynn\nMavis\nMerilyn\nMicaela\nNan\nNicole\nNorene\nPamella\nPeggie\nPenni\nRanda\nRandy\nReta\nRichard\nRicki\nRosalina\nRoselyn\nRosetta\nRowena\nRoxana\nSheilah\nSherie\nStacy\nStarr\nStefanie\nSuellen\nSuzie\nTerrill\nTheodora\nTonia\nVada\nValeria\nVerla\nVonnie\nAdelina\nAllene\nAlthea\nAmber\nAntionette\nBarbra\nBelen\nBerta\nBeryl\nBettina\nCandelaria\nCarleen\nCarmel\nCathlene\nCharles\nCharline\nCoralee\nDaisy\nDarcy\nDeedee\nDollie\nDorcas\nDortha\nDrew\nEddie\nEdris\nElayne\nElyse\nEnid\nFran\nGeorganna\nGeorge\nGeorgetta\nHellen\nHermelinda\nIlona\nIva\nJacquelin\nJacqulyn\nJaniece\nJannette\nJay\nJeraldine\nJocelyn\nJoellen\nJonna\nJorja\nJoye\nKaryn\nKathrine\nKimberley\nLiana\nLibby\nLoralee\nLorie\nLouisa\nMardell\nMariana\nMariann\nMarleen\nMarti\nMaryjo\nMegan\nMelodee\nMerilee\nMerlene\nMerrie\nMerrily\nMonique\nNadene\nNancie\nOra\nPatsie\nPatt\nRefugio\nReva\nRickie\nRobbin\nRonald\nRoseanne\nSammie\nShelby\nSherian\nSheridan\nShiela\nSophie\nStacey\nSuzanna\nSybil\nTeddy\nTillie\nVelda\nVelia\nWendie\nWinona\nAddie\nAdelita\nAdriana\nAleda\nAlene\nArtie\nBarrie\nBeckie\nBelia\nBethany\nBobby\nBobbye\nBunnie\nBunny\nCara\nCarmela\nCarolann\nCaroll\nCarolynne\nCathrine\nCecily\nCharlesetta\nChere\nChloe\nChristeen\nChristopher\nClarissa\nCollette\nConchita\nCristine\nDalene\nDarlyn\nDeetta\nDelois\nDonald\nDorinda\nDovie\nDrena\nDusty\nEarnestine\nElana\nElenor\nEllyn\nElouise\nErika\nEssie\nFlorine\nFreida\nGarnet\nGary\nGeorganne\nGeorgeann\nGinny\nGlennda\nGlennis\nGoldie\nGreta\nGuillermina\nHarlene\nHoney\nJacquelynn\nJade\nJayme\nJeane\nJeanene\nJerlene\nJodi\nJonell\nJonni\nJudee\nJustina\nKari\nKarma\nKaryl\nKatheleen\nKathlene\nKatrina\nKendra\nKittie\nLarrie\nLauri\nLenny\nLina\nLindsay\nLita\nLiz\nLoni\nLorretta\nLottie\nLucrecia\nLurline\nLyda\nLynnda\nLynnea\nMandy\nMargarette\nMarge\nMaribeth\nMarjory\nMarlena\nMarnie\nMarquita\nMaryellen\nMaryjane\nMaura\nMercie\nMichaelyn\nMickie\nMike\nNance\nNell\nNena\nOlive\nOma\nOna\nOphelia\nPaige\nPaul\nPeg\nPhillis\nPhoebe\nPortia\nRanae\nRhona\nRilla\nRosalyn\nRoxann\nSelma\nSerena\nSharleen\nSharlyn\nShellie\nSherrilyn\nSheryn\nShirlene\nSimone\nSofia\nStephen\nStephenie\nSusannah\nTamra\nTena\nTeresita\nToby\nTomi\nTrisha\nTwyla\nValentina\nWillow\nZelda\nLinda\nMary\nPatricia\nSusan\nBarbara\nSharon\nCarol\nSandra\nNancy\nKathleen\nDonna\nKaren\nJudy\nPamela\nDiane\nJudith\nMargaret\nJanet\nCheryl\nCarolyn\nJanice\nChristine\nShirley\nGloria\nMarilyn\nCynthia\nVirginia\nJoyce\nDiana\nBeverly\nElizabeth\nKathy\nBonnie\nBetty\nJoan\nGail\nCatherine\nDorothy\nMartha\nFrances\nLynda\nSuzanne\nMaria\nConnie\nKathryn\nPaula\nAnn\nPeggy\nHelen\nLaura\nAlice\nJean\nLynn\nPhyllis\nJane\nJo\nSally\nKatherine\nDarlene\nBrenda\nSue\nJoanne\nCathy\nMarsha\nSherry\nDeborah\nVicki\nJulie\nSheila\nDolores\nRuth\nIrene\nRose\nRoberta\nElaine\nYolanda\nMarie\nVictoria\nJanis\nRebecca\nClaudia\nJeanne\nTerry\nSylvia\nTeresa\nRita\nAnita\nJacqueline\nCharlene\nEllen\nCharlotte\nCarole\nNorma\nYvonne\nToni\nLeslie\nPat\nTheresa\nGayle\nLouise\nEvelyn\nMichele\nRosemary\nLorraine\nPenny\nMarcia\nChristina\nMarjorie\nMaureen\nAnne\nDianne\nLoretta\nValerie\nDenise\nStephanie\nMarlene\nGeraldine\nLois\nWanda\nDoris\nAnna\nAndrea\nJuanita\nGlenda\nJoann\nEsther\nEileen\nCarmen\nConstance\nJeanette\nJill\nRobin\nJan\nLynne\nGeorgia\nPatsy\nLydia\nJennifer\nJosephine\nVivian\nJackie\nKay\nAnnette\nRachel\nSheryl\nSandy\nCecilia\nVickie\nMichelle\nArlene\nJulia\nJune\nCarla\nCindy\nJoy\nPriscilla\nMargie\nWendy\nColleen\nGwendolyn\nTerri\nRenee\nMelinda\nOlivia\nPauline\nEleanor\nLaurie\nKristine\nLillian\nLupe\nStella\nRamona\nCandace\nDelores\nPaulette\nSarah\nRosalie\nDianna\nLaurel\nMarian\nCheri\nLana\nLucille\nGrace\nBillie\nRosie\nJeannie\nMelody\nEva\nEdith\nCandy\nRuby\nCaroline\nCathleen\nRosa\nPam\nJacquelyn\nJeannette\nDeanna\nAngela\nPenelope\nMarianne\nChris\nMarion\nEmily\nDawn\nJanie\nLucy\nTina\nBeatrice\nBecky\nEdna\nMaxine\nSara\nTrudy\nLee\nClaire\nPatty\nJessie\nLynette\nPatti\nAntoinette\nGale\nGuadalupe\nJudi\nDebbie\nFrancine\nMargarita\nJennie\nKathie\nVeronica\nAlicia\nAudrey\nClara\nMildred\nSusie\nVera\nLorna\nSharyn\nSharron\nThelma\nBertha\nGinger\nNora\nDale\nRosemarie\nVicky\nAdrienne\nApril\nBobbie\nHolly\nFlorence\nMaryann\nCecelia\nGay\nSusanne\nGwen\nMargo\nWilma\nEmma\nKarin\nRobyn\nTeri\nIrma\nJeri\nSaundra\nDana\nMadeline\nBernice\nDixie\nDoreen\nNina\nSherri\nBeth\nIsabel\nDebra\nSherrie\nDora\nEthel\nMarguerite\nNadine\nCherie\nHarriet\nRegina\nCandice\nJoanna\nLucinda\nMelanie\nRhonda\nSheri\nDona\nLeona\nLisa\nOlga\nSandi\nKim\nKristin\nChristy\nDella\nElla\nAngelina\nAngie\nBette\nIda\nVerna\nCelia\nFaye\nTanya\nBernadette\nJosie\nNoreen\nVelma\nAlma\nMarilynn\nAna\nBonita\nErlinda\nJenny\nJessica\nMarla\nCathie\nClaudette\nHazel\nJanette\nMolly\nMyra\nNaomi\nLauren\nMonica\nAleta\nAnnie\nGladys\nJanine\nJayne\nRochelle\nAntonia\nDelia\nBeverley\nConsuelo\nDee\nGenevieve\nRosalind\nTerrie\nEloise\nEsperanza\nGretchen\nLaverne\nNellie\nSonja\nTamara\nAurora\nCathryn\nElena\nJeanie\nMarcella\nRosalinda\nCheryle\nChristie\nMona\nRae\nKatharine\nShannon\nSocorro\nErnestine\nHelene\nMeredith\nNanci\nRoxanne\nAlana\nCharleen\nElsie\nJudie\nKristen\nLenore\nMyrna\nSuzette\nAmelia\nCarrie\nEstella\nKimberly\nPearl\nSondra\nAlberta\nDarla\nDiann\nHeidi\nHilda\nJody\nKitty\nSuzan\nViolet\nBetsy\nCora\nCorinne\nGlenna\nHenrietta\nKaryn\nNatalie\nShari\nSonia\nTherese\nAdele\nAlison\nCeleste\nEunice\nFlora\nInez\nJeannine\nJerry\nKarla\nKris\nLeah\nLola\nLora\nMuriel\nViola\nCaren\nCarlene\nKathi\nKatie\nLenora\nLorene\nLuana\nLyn\nMarilee\nMiriam\nShelley\nEarlene\nGeneva\nGilda\nGina\nHope\nLesley\nSharlene\nSydney\nAileen\nAmy\nCrystal\nErma\nGertrude\nIlene\nIngrid\nLillie\nMelissa\nNicki\nAdela\nAlexis\nDeana\nElva\nLori\nNikki\nRaquel\nRonda\nSherrill\nSherryl\nArleen\nBelinda\nCamille\nCarroll\nDarleen\nElvira\nHeather\nJacklyn\nJeanine\nKerry\nLeanne\nMerry\nWinifred\nAlexandra\nFreda\nJerilyn\nJohnnie\nLavonne\nLou\nMarylou\nNita\nWillie\nArmida\nCarolynn\nCassandra\nElisabeth\nFrankie\nGeri\nIris\nJohanna\nMargery\nMercedes\nOfelia\nPamala\nRena\nAdeline\nCarrol\nDorene\nJerri\nJewel\nKaron\nLynnette\nMarina\nMichael\nNona\nPamella\nRene\nSharen\nSidney\nCarolina\nDeloris\nDena\nJolene\nKristina\nLaraine\nMelva\nTracy\nYvette\nAlyce\nCristina\nDolly\nEdwina\nFern\nLani\nLena\nLila\nLucia\nMarta\nMelba\nSallie\nCherryl\nClare\nDenice\nElsa\nGaylene\nGeorgette\nGeorgina\nGraciela\nIna\nJamie\nJosefina\nKathlyn\nKaye\nLoraine\nLura\nMyrtle\nNola\nPatrice\nPennie\nTrudi\nAda\nAmanda\nArline\nBernadine\nClarice\nCorrine\nDanielle\nElise\nEstelle\nFay\nGaye\nJanelle\nKarol\nKristy\nLily\nMay\nMickey\nNorene\nShelia\nSherron\nAgnes\nAllison\nColette\nDebby\nDian\nDorothea\nJerrie\nJulianne\nLeslee\nLuz\nMagdalena\nMari\nMelodie\nNanette\nNelda\nRosalyn\nRosario\nRoxanna\nSandie\nBettie\nCandi\nCarmelita\nCharla\nCherry\nDinah\nErnestina\nEvangelina\nFaith\nGerrie\nGerry\nHortencia\nJana\nLorena\nMadeleine\nMarva\nMercy\nPetra\nPolly\nRachelle\nRichard\nSilvia\nAmparo\nBlanca\nCarleen\nColeen\nDanna\nDeidre\nElinor\nElisa\nEugenia\nEve\nHarriett\nJewell\nKarolyn\nLadonna\nLeticia\nLonna\nLuanne\nMae\nMarcy\nMarleen\nMaryanne\nMattie\nMelodee\nOphelia\nRachael\nRandy\nReba\nRobert\nShirlee\nSuzy\nVelda\nAngelita\nAva\nBridget\nCandyce\nCarolee\nCaryl\nCecile\nCharmaine\nCheryll\nCornelia\nDaryl\nErica\nErin\nFran\nGeorgene\nJohn\nKaran\nLauretta\nLeilani\nLoreen\nLorie\nMable\nMarianna\nMerrie\nMerrilee\nMinnie\nNeva\nNoel\nOpal\nRosanne\nSherilyn\nSheron\nShiela\nSusanna\nTammy\nBessie\nBettye\nCarlotta\nCaryn\nCathi\nClaudine\nCleo\nConcepcion\nCorliss\nDayle\nEmilia\nEvangeline\nFrancisca\nGenie\nGerri\nGinny\nHelena\nIla\nIsabelle\nJimmie\nJoellen\nJuliet\nKendra\nLela\nLetha\nLidia\nLiz\nMaggie\nMargot\nMarietta\nMarna\nMollie\nNickie\nOla\nRhoda\nRoslyn\nRoxie\nShelly\nSherril\nSuzie\nTheodora\nAdrianne\nAllene\nArdith\nBelen\nBlanche\nCandis\nCara\nCatalina\nCherrie\nCinda\nCleta\nDarline\nElma\nErika\nFrieda\nGene\nHerlinda\nJoella\nJoni\nJuliette\nKatheryn\nLeila\nLeora\nLeta\nLilia\nLonnie\nLouella\nLouisa\nLourdes\nManuela\nMarlyn\nMaryellen\nMerle\nMimi\nNancie\nPeggie\nRandi\nRobbie\nRonna\nRonnie\nRoseann\nSharleen\nSheryle\nSophia\nSuzanna\nToby\nValorie\nVeda\nWilla\nWinona\nAida\nAlta\nAmber\nAndra\nBenita\nCassie\nCharline\nChristi\nClarissa\nDarcy\nDeena\nDeirdre\nDina\nDorinda\nEarline\nElayne\nElyse\nEtta\nEula\nFreddie\nGeorgiana\nGeorgianna\nGracie\nJames\nJanell\nJannette\nJonnie\nJuana\nKandi\nKathrine\nKristi\nLaureen\nLilly\nLorine\nLuisa\nLynnda\nMabel\nMadelyn\nMariann\nMarlys\nMaurine\nMavis\nNan\nNannette\nNedra\nPatrica\nReta\nRory\nRosella\nRosita\nRoxann\nSharyl\nValarie\nVickey\nVilma\nWendie\nAlexa\nBari\nBelva\nBeverlee\nBrooke\nCamilla\nCarmel\nCarolyne\nCatharine\nChristopher\nCollette\nDawna\nDeanne\nDebora\nDede\nDeidra\nDelfina\nDelois\nDorthy\nEloisa\nEster\nFelicia\nFrancesca\nFrancis\nGeorganne\nGoldie\nIlona\nIsabell\nIva\nJacquelin\nJanene\nJodie\nJohnetta\nKathaleen\nKathleene\nKathlene\nKelly\nLessie\nLindsay\nLita\nLoralee\nLorelei\nLuann\nMargret\nMarjory\nMarti\nMarybeth\nMarylin\nMarylyn\nMerilee\nMerilyn\nMichaele\nMichal\nMillie\nNell\nNettie\nPortia\nRandee\nRaylene\nRicki\nRosalee\nRoseanne\nRuthie\nSammie\nShirlene\nStar\nSybil\nTommie\nTwyla\nVada\nVikki\nZella\nAdrian\nAlene\nAletha\nAlida\nAllyson\nAnnetta\nAurelia\nBeatriz\nBerta\nBonny\nCaron\nCharlyn\nCherri\nCoralee\nCristine\nCruz\nDaphne\nDavid\nDebrah\nDiedre\nDonnie\nElna\nElvia\nEstela\nGayla\nGlynda\nHillary\nHollis\nIvy\nJacquelynn\nJacquie\nJaneen\nJaney\nJoseph\nJovita\nKaaren\nKandy\nKarel\nKaty\nLavon\nLeigh\nLinnea\nLizabeth\nLolita\nLona\nLuella\nMadelon\nMalinda\nMara\nMarcie\nMaribeth\nMaryjane\nMicaela\nMichel\nMickie\nMignon\nNancee\nNena\nNicole\nPauletta\nRebeca\nRetha\nRhea\nRosanna\nSandee\nShanna\nSharan\nSharlyn\nSunny\nSuzi\nTerese\nTwila\nVelia\nVelva\nWinnie\nZoe\nAlva\nAngelica\nAnnabelle\nArtie\nBarbra\nBennie\nBertie\nBev\nBunny\nCameron\nCathey\nCathrine\nCherilyn\nCorine\nDaisy\nDara\nDaria\nDelora\nDennis\nDevon\nDottie\nDyanne\nEda\nEdward\nEdythe\nEffie\nElana\nEvalyn\nEvonne\nGabrielle\nGlinda\nGreta\nJacalyn\nJacki\nJaclyn\nJacque\nJanna\nJeanetta\nJerrilyn\nJoe\nJonell\nJose\nJosette\nJudee\nKarlene\nKimberley\nKirsten\nKristie\nLawana\nLawanna\nLeana\nLeanna\nLeola\nLeota\nLetitia\nLiana\nLucina\nLula\nMarcene\nMargene\nMarilou\nMarilynne\nMarolyn\nMarty\nMarylynn\nMerrilyn\nMinerva\nMonique\nNiki\nNoelle\nOllie\nOralia\nPattie\nPhillis\nRaelene\nRandall\nRebekah\nReva\nRise\nRobbin\nRomelia\nRosetta\nRosslyn\nSadie\nSheridan\nSherlyn\nSheryll\nSheryn\nSigne\nSimone\nSonya\nStacey\nStacy\nSusana\nTana\nTania\nTheda\nTillie\nTonia\nTrinidad\nTrudie\nVal\nVerda\nVesta\nViki\nAbigail\nAlaina\nAlanna\nAlejandra\nAlfreda\nAmalia\nAndre\nAngeline\nAnitra\nAntionette\nArdis\nAscencion\nAsenath\nAvis\nBea\nBecki\nBedelia\nBeryl\nBetti\nBettina\nBeulah\nBobbi\nBobby\nBobette\nBronwyn\nCarmela\nCaroll\nCharlette\nChristene\nConception\nConcha\nDarlyne\nDayna\nDeedee\nDelene\nDelilah\nDelma\nDonetta\nDonnalee\nDoreene\nDorine\nDorris\nDrucilla\nEddie\nEleanore\nElissa\nEmilie\nEnedina\nFredericka\nFreida\nGaile\nGary\nGena\nGeorgie\nGlee\nGwenn\nGwyn\nHannah\nHarlene\nHarriette\nHattie\nHermelinda\nHilary\nHortensia\nJacquelyne\nJacqulyn\nJanyce\nJeana\nJeane\nJeanene\nJeffrey\nJere\nJoelle\nJoetta\nJoleen\nJorja\nJoycelyn\nJuliana\nJuliann\nKeri\nKevin\nKit\nKittie\nLanita\nLauri\nLea\nLeeann\nLezlie\nLilah\nLina\nLindsey\nLindy\nLorinda\nLorretta\nLottie\nLuanna\nLucretia\nLynell\nMamie\nMarcelina\nMardell\nMaren\nMargarette\nMarge\nMariana\nMariellen\nMarlane\nMarlena\nMartina\nMarvis\nMaryjo\nMarylouise\nMatilda\nMeg\nMerrily\nMichaela\nMichiko\nNatasha\nNicola\nOra\nPaige\nPenni\nPhylis\nRaye\nRickie\nRolinda\nRosalia\nRosamond\nRoselinda\nRoxana\nRoxane\nSelena\nSelma\nSerena\nSheran\nSherian\nShireen\nSigrid\nStarla\nSuzann\nTamera\nTamra\nTeddie\nTeddy\nTeena\nTena\nThea\nThora\nTomi\nTonya\nTrina\nValentina\nVerla\nVida\nVivien\nWilda\nWilliam\nZandra\nZora\nLinda\nMary\nSusan\nPatricia\nBarbara\nKathleen\nSandra\nNancy\nCarol\nSharon\nKaren\nDonna\nPamela\nJudy\nDiane\nMargaret\nJudith\nChristine\nCheryl\nJanet\nCynthia\nCarolyn\nJanice\nGloria\nShirley\nMarilyn\nDiana\nElizabeth\nDeborah\nCatherine\nVirginia\nKathy\nJoyce\nBetty\nBeverly\nBonnie\nJoan\nMaria\nMartha\nKathryn\nPeggy\nCathy\nBrenda\nPaula\nFrances\nHelen\nGail\nLaura\nKatherine\nVictoria\nAnn\nLynn\nSuzanne\nConnie\nLynda\nAlice\nVicki\nRuth\nDorothy\nRebecca\nPhyllis\nTeresa\nTheresa\nSally\nMarsha\nJacqueline\nJo\nJean\nMarie\nJoanne\nJane\nRose\nDarlene\nJulie\nSherry\nYolanda\nIrene\nElaine\nClaudia\nSue\nRita\nSylvia\nAnita\nRoberta\nDolores\nSheila\nMarcia\nStephanie\nCarole\nJanis\nCharlene\nLeslie\nJeanne\nYvonne\nNorma\nTerry\nCharlotte\nMaureen\nDenise\nValerie\nRosemary\nEllen\nLorraine\nEvelyn\nRobin\nAnna\nChristina\nGayle\nAnne\nToni\nCarmen\nAndrea\nDianne\nMichele\nLoretta\nConstance\nEsther\nMarlene\nWanda\nPenny\nJoann\nJeanette\nJill\nWendy\nMarjorie\nVivian\nGeraldine\nJuanita\nLouise\nLois\nDoris\nColleen\nLydia\nJosephine\nVickie\nPat\nGlenda\nKristine\nCarla\nArlene\nEileen\nJennifer\nCandace\nMichelle\nGeorgia\nGwendolyn\nJune\nRachel\nMelinda\nKay\nRenee\nLynne\nSheryl\nAnnette\nLaurie\nPaulette\nPriscilla\nJulia\nTerri\nJan\nCecilia\nPatsy\nSarah\nCathleen\nMargie\nEleanor\nOlivia\nRegina\nJackie\nJacquelyn\nCindy\nLupe\nRosalie\nPauline\nSandy\nEva\nJoy\nGuadalupe\nLillian\nMelanie\nRamona\nStella\nRosa\nEdith\nDianna\nRosie\nGrace\nRuby\nCandice\nAngela\nLucille\nDelores\nJeannette\nMarian\nAntoinette\nDebra\nLana\nMarianne\nDebbie\nLynette\nLaurel\nLucy\nMelody\nPenelope\nSara\nChris\nDeanna\nJeannie\nJanie\nBeatrice\nMargarita\nAudrey\nBecky\nCaroline\nFlorence\nCecelia\nDoreen\nMaxine\nTina\nDawn\nRobyn\nCheri\nEmily\nShelley\nWilma\nBillie\nDana\nJennie\nPam\nAlicia\nNora\nIrma\nPatty\nRhonda\nVera\nBertha\nCandy\nMadeline\nIsabel\nLee\nNina\nMelissa\nLucinda\nTrudy\nVicky\nDora\nVeronica\nLisa\nMarion\nCherie\nOlga\nBeth\nPatti\nSaundra\nTeri\nJudi\nKathie\nSusie\nJessie\nDixie\nEdna\nEmma\nRosemarie\nBobbie\nLeona\nDale\nMaryann\nSharron\nJenny\nAdrienne\nMonica\nErlinda\nEthel\nMyrna\nClara\nMildred\nGale\nGretchen\nAngie\nGinger\nKristin\nClaire\nFrancine\nHolly\nKarin\nMarguerite\nDelia\nKimberly\nNadine\nApril\nMyra\nSheri\nJeri\nMolly\nAntonia\nBette\nCelia\nHeidi\nLauren\nRochelle\nElena\nMargo\nSherrie\nGwen\nKerry\nNellie\nTerrie\nBernice\nChristie\nDona\nIda\nJanette\nSusanne\nTanya\nAdele\nAna\nAnnie\nCarrie\nDella\nGina\nPearl\nThelma\nHazel\nJessica\nKatharine\nRosalind\nCathie\nEsperanza\nGenevieve\nGladys\nIris\nJoanna\nElla\nFaye\nJamie\nKristina\nLori\nLorna\nSharyn\nSherri\nVelma\nAlberta\nBelinda\nBonita\nConsuelo\nKim\nSuzan\nAlma\nBernadette\nBeverley\nMarcella\nNatalie\nAlison\nAmelia\nChristy\nClaudette\nGlenna\nJeanie\nKaryn\nLeah\nLenore\nLola\nNoreen\nAlana\nEstella\nHarriet\nJanine\nJerry\nShari\nTamara\nVerna\nHelene\nJayne\nKarla\nLena\nRosalinda\nRoxanne\nSondra\nCathryn\nErnestine\nJacklyn\nJana\nMarla\nMiriam\nTherese\nAngelina\nEloise\nRae\nKris\nNaomi\nCheryle\nCora\nHope\nLora\nMarina\nSandi\nDee\nGay\nHenrietta\nIlene\nMay\nMerry\nMona\nAmy\nCamille\nCaren\nDarla\nElsie\nCorinne\nKathi\nKristen\nNikki\nViola\nBetsy\nCassandra\nFlora\nGeorgette\nJanelle\nJolene\nLaverne\nLorene\nRena\nSocorro\nAleta\nCrystal\nElvira\nHilda\nJosie\nKarol\nLani\nLavonne\nMadelyn\nMari\nSusanna\nAdela\nHeather\nLyn\nNanci\nRaquel\nSherrill\nSydney\nCarlene\nCharleen\nColeen\nEdwina\nElisa\nLadonna\nLesley\nLillie\nMarilynn\nMuriel\nRandy\nSharlene\nArmida\nAurora\nFrankie\nInez\nJeanine\nKitty\nLuana\nRonda\nShannon\nWillie\nAlexis\nCristina\nDeidre\nDena\nEunice\nGaye\nIngrid\nJeannine\nLila\nMae\nMarta\nNanette\nNita\nViolet\nYvette\nAlyce\nDebby\nDolly\nElise\nElvia\nGeneva\nLily\nLou\nOfelia\nSonia\nSuzette\nDarleen\nDiann\nEarlene\nErma\nGertrude\nJody\nMeredith\nMimi\nNelda\nShelia\nSonja\nTracy\nAmanda\nCarolynn\nCherry\nGilda\nGraciela\nJohanna\nJohnnie\nJudie\nJulianne\nKatie\nLinnea\nLynnette\nMarilee\nNan\nPatrice\nSilvia\nValarie\nArleen\nDeana\nEstelle\nEtta\nGerry\nHerlinda\nKathrine\nLeticia\nLoraine\nMadeleine\nMarietta\nMarylou\nMelba\nMickey\nPetra\nSallie\nSherryl\nAda\nCarlotta\nDian\nDorothea\nGeorgina\nGreta\nJanna\nJuliana\nKaron\nKaye\nKristi\nKristie\nLucia\nManuela\nMargery\nPolly\nRonna\nSharen\nAgnes\nBarbra\nBernadine\nCaryl\nCeleste\nEugenia\nGayla\nJerrie\nKelly\nMercedes\nMerrilee\nSusana\nWinifred\nAileen\nCarleen\nCarolee\nCaryn\nClarice\nCorrine\nDanielle\nDeirdre\nDinah\nDorene\nElva\nFrancis\nFrancisca\nJewel\nJimmie\nJosefina\nLaurene\nLonnie\nMagdalena\nMargot\nMaurine\nMichael\nMollie\nRene\nShelly\nShirleen\nTrudi\nAdeline\nAlta\nBeatriz\nBenita\nBlanca\nCharmaine\nCorliss\nDeedee\nElsa\nFay\nGracie\nJerilyn\nLela\nLilia\nLorrie\nLuella\nMalinda\nMarva\nMelva\nMillie\nNicki\nPeggie\nPennie\nRandi\nRhoda\nRoxie\nSandie\nSharleen\nAlexandra\nAnnabelle\nAntonette\nAva\nCarrol\nCarroll\nCassie\nDebora\nDeena\nDenice\nEstela\nFaith\nFern\nGeri\nHortencia\nJerri\nKaran\nLeanne\nLenora\nLucretia\nMarcy\nMercy\nNola\nPamala\nRosanne\nRoxana\nTammy\nToby\nWilla\nArline\nBessie\nDaphne\nDeloris\nErica\nFreda\nHilary\nKathlyn\nKendra\nLea\nLeigh\nLeilani\nLorena\nLuz\nMargret\nMaryanne\nMaryellen\nNeva\nNoel\nNona\nRoxanna\nSadie\nStarr\nVikki\nAddie\nAllison\nAngelita\nBonny\nBrooke\nCamilla\nCarmela\nCarolina\nCecile\nClare\nColette\nDaria\nDeanne\nDevon\nDina\nEarline\nErin\nEve\nFelicia\nFran\nGeorgiana\nIsabelle\nJaneen\nJanell\nJewell\nLeila\nLeta\nLidia\nLindsay\nLoreen\nLorinda\nMaura\nNancie\nNicole\nOpal\nOphelia\nReba\nRonnie\nRory\nRosetta\nShawn\nSherilyn\nShirlene\nSigne\nSybil\nTommie\nAndra\nBridget\nCandis\nCarmelita\nCatalina\nCathrine\nCleo\nDawna\nDelfina\nElisabeth\nErnestina\nHarriett\nHelena\nHillary\nIna\nIva\nJacalyn\nJames\nJaney\nJodie\nJuana\nKathe\nKatheryn\nKimberley\nLita\nLouisa\nMarilou\nMarleen\nMickie\nMinnie\nOra\nRachelle\nReta\nRobbie\nRosario\nRuthie\nSharyl\nSherida\nShiela\nShirlee\nSophia\nSuzi\nTheodora\nTonia\nTrudie\nVenita\nVonnie\nAlene\nBettie\nCandi\nCathey\nCharla\nCherri\nCherrie\nChristi\nClarissa\nClaudine\nDanna\nDarcy\nDaryl\nDorthy\nEarnestine\nElayne\nElissa\nEvangeline\nGerri\nJacquelyne\nJoe\nKaty\nLavern\nLeann\nLeslee\nLouella\nLuanne\nMabel\nMaggie\nMarci\nMarcie\nMariann\nMarlys\nMarti\nMarty\nMerle\nNedra\nNorene\nOdessa\nPattie\nRosalyn\nSonya\nStefanie\nSuellen\nSuzanna\nSuzie\nVanessa\nVeda\nVelia\nWinona\nAdella\nAdrianne\nAida\nAllene\nAllyson\nAmalia\nAngel\nBlanche\nCathi\nCinda\nDaisy\nDayle\nDeberah\nDede\nDeidra\nDelois\nDenyse\nDiedre\nEdie\nElnora\nElyse\nEvangelina\nGaylene\nHollis\nIla\nIsabell\nJaclyn\nJocelyn\nJonnie\nJuliet\nKandace\nKathaleen\nKathlene\nKristy\nLaraine\nLetha\nLilly\nLina\nLindsey\nLolita\nLona\nLoralee\nLuann\nLula\nMamie\nMarianna\nMarlane\nMattie\nMavis\nMelodee\nMelodie\nMinerva\nMyrtle\nNell\nNicola\nNicolette\nPortia\nRebeca\nReva\nRhea\nRichard\nRicki\nRobbin\nRobert\nRosalee\nRoseann\nRoselyn\nRoslyn\nSophie\nStephany\nStephenie\nSunny\nSuzann\nTana\nTerese\nTricia\nTrina\nValorie\nWilda\nAbigail\nAnnetta\nAntionette\nAurelia\nBerta\nBettina\nBeverlee\nBobbi\nBobby\nCharles\nCharline\nCherryl\nChrystal\nCollette\nCornelia\nDarnell\nDavid\nDortha\nEarleen\nEleanore\nEloisa\nEmilia\nEula\nEvonne\nFannie\nFrancesca\nGena\nGeorganne\nGeorgene\nHannah\nHattie\nJacki\nJacque\nJade\nJanene\nJaniece\nJodi\nJohnna\nJoni\nKandy\nKarolyn\nKarren\nKevin\nLaureen\nLauretta\nLennie\nLeora\nLoni\nLu\nLyndia\nLynell\nMable\nMadonna\nMariana\nMarjory\nMarlena\nMarlyn\nMarna\nMartie\nMerilyn\nMerrie\nMicaela\nMillicent\nMina\nNannette\nNettie\nPamella\nRachael\nRandee\nRoxann\nRozanne\nSandee\nSharie\nSheridan\nSigrid\nStacy\nTonya\nTrinidad\nTwila\nUnknown\nVivien\nAdelina\nAdriana\nAlanna\nAlva\nAngelica\nAngeline\nArcelia\nArdis\nArdith\nBelen\nCarey\nCarmel\nCarolann\nCaroll\nCarolyne\nCatharine\nCecily\nCharolette\nChristeen\nCoralee\nDanette\nDarline\nDayna\nDeann\nDebrah\nDollie\nElinor\nEllyn\nElma\nErlene\nEugenie\nEvon\nFelipa\nGaylen\nGene\nGeorgann\nGeorgeanna\nGlynda\nGoldie\nGwendolynn\nHallie\nHerminia\nJacquelin\nJann\nJanyce\nJerrilyn\nJoelle\nJoetta\nJoleen\nKandi\nKarleen\nKarlene\nLarry\nLawanna\nLelia\nLeola\nLindy\nLonna\nLoree\nLorelei\nLorie\nLottie\nLouann\nLuisa\nLynnda\nMadge\nMarcelina\nMarlee\nMarybeth\nMarylyn\nMarylynn\nMerilee\nMerlene\nMerrily\nMichaela\nMichaele\nMitzi\nNoelle\nOdette\nOla\nOllie\nPrudence\nRetha\nRickie\nRosina\nRosita\nRowena\nSalli\nSharlyn\nSheron\nSherril\nSherrilyn\nSherron\nThomas\nTillie\nTomasa\nTreva\nVana\nVelda\nViki\nWendie\nWilliam\nZelma\nAdelaida\nAlexa\nAlexia\nAndria\nArlinda\nArnetta\nBabette\nBebe\nBeryl\nBethany\nBetti\nBettye\nBobette\nCallie\nCandyce\nCara\nCarin\nCaron\nCeceilia\nCeline\nCharlyn\nCheryll\nConcepcion\nConcha\nCoreen\nCristine\nCristy\nCruz\nDahlia\nDebbi\nDebbra\nDiedra\nDoretha\nDorinda\nDorrie\nDrusilla\nDyane\nEddie\nEdythe\nEffie\nFelice\nFloretta\nFrancene\nFrieda\nGabrielle\nGaynell\nGeorge\nGeorgianna\nGermaine\nGigi\nGinny\nGlinda\nJacquline\nJannette\nJenifer\nJennette\nJeraldine\nJesus\nJinx\nJoellen\nJohn\nJorene\nJosefa\nJoye\nJudee\nKathryne\nKit\nLajuana\nLarue\nLatricia\nLauna\nLaverna\nLeandra\nLeanna\nLeonor\nLiane\nLibby\nLin\nLizabeth\nLizbeth\nLoma\nLorretta\nLouanna\nLuanna\nLyndell\nLynna\nMadelon\nManya\nMargarite\nMarily\nMarita\nMarlaine\nMarlynn\nMarquita\nMartina\nMaryjane\nMarylin\nMichel\nMidge\nNancee\nNena\nNickie\nNiki\nPatrica\nPatt\nPhillis\nPhoebe\nPhylis\nRacheal\nRaelene\nRaye\nRayleen\nRomona\nRosaline\nRosann\nRosella\nRuthanne\nSharee\nSharla\nSharol\nShauna\nSheilah\nShelby\nSherian\nStacey\nStar\nStarla\nSuzy\nTania\nTanna\nTara\nTeddy\nTeresita\nTerryl\nThea\nTheo\nTisa\nTisha\nTomi\nTona\nTonie\nTracey\nValeria\nValli\nVernell\nZoe\nZoila\nLinda\nMary\nSusan\nPatricia\nKathleen\nBarbara\nNancy\nSandra\nSharon\nCarol\nKaren\nPamela\nDonna\nChristine\nDeborah\nDiane\nMargaret\nJanet\nJudith\nCynthia\nJudy\nJanice\nCheryl\nGloria\nCarolyn\nShirley\nElizabeth\nMarilyn\nCatherine\nKathy\nDiana\nVirginia\nJoyce\nKathryn\nBeverly\nBrenda\nBonnie\nMaria\nLaura\nGail\nBetty\nJoan\nKatherine\nPeggy\nMartha\nRebecca\nVictoria\nLynn\nPaula\nSuzanne\nTeresa\nFrances\nCathy\nConnie\nVicki\nAnn\nSally\nTheresa\nHelen\nAlice\nIrene\nJoanne\nMarsha\nRuth\nJane\nDorothy\nRita\nTerry\nStephanie\nJulie\nJacqueline\nJean\nYolanda\nLynda\nSylvia\nJo\nMichele\nPhyllis\nSherry\nDenise\nElaine\nAnita\nDarlene\nRoberta\nRose\nMarie\nChristina\nJeanne\nCharlene\nClaudia\nLeslie\nWendy\nValerie\nYvonne\nDolores\nSheila\nEllen\nNorma\nMarcia\nJanis\nConstance\nLorraine\nGayle\nCharlotte\nRosemary\nAnne\nWanda\nSue\nMaureen\nCarole\nAnna\nRobin\nJennifer\nEvelyn\nCarmen\nMarlene\nLoretta\nEsther\nLouise\nJoann\nDebra\nAndrea\nDianne\nGeraldine\nMichelle\nEileen\nLaurie\nColleen\nJeanette\nJill\nLydia\nToni\nPenny\nLynne\nCandace\nJosephine\nRachel\nVickie\nVivian\nJuanita\nGlenda\nLois\nArlene\nTerri\nKristine\nMarjorie\nMelinda\nRenee\nSheryl\nJan\nShelley\nCarla\nDoris\nCindy\nJulia\nPriscilla\nGeorgia\nRhonda\nCecilia\nRosalie\nMelanie\nGwendolyn\nEleanor\nJoy\nAngela\nRosa\nCathleen\nAnnette\nPaulette\nJune\nLupe\nSarah\nLillian\nDebbie\nOlivia\nPatsy\nDianna\nRegina\nMargie\nPauline\nRosie\nMarianne\nCaroline\nJackie\nCandice\nLynette\nGuadalupe\nStella\nMelody\nKay\nRamona\nBeatrice\nSandy\nEva\nBelinda\nLaurel\nEdith\nLucy\nPat\nJeannette\nMelissa\nBillie\nJennie\nLana\nLucille\nTina\nBecky\nEmily\nLisa\nBeth\nShari\nJeannie\nSara\nDelores\nDana\nFlorence\nPenelope\nBertha\nGrace\nTeri\nDawn\nDeanna\nLucinda\nMarian\nNora\nCecelia\nMonica\nClaire\nFrancine\nAlicia\nLee\nCheri\nIrma\nVicky\nAntoinette\nDoreen\nIsabel\nJacquelyn\nRobyn\nRuby\nEdna\nMargarita\nMarion\nVera\nAudrey\nMadeline\nNina\nPatti\nJanie\nDora\nMaryann\nClara\nKimberly\nPam\nVeronica\nApril\nAngelina\nBonita\nPatty\nJessie\nMargo\nMaxine\nMildred\nSherrie\nBernadette\nEmma\nGale\nGinger\nJeri\nRosemarie\nTrudy\nBobbie\nChristie\nLori\nCherie\nDixie\nHarriet\nHolly\nAdrienne\nDale\nDelia\nLauren\nHeidi\nMarguerite\nNadine\nSherri\nSusanne\nJanette\nKerry\nLorna\nMarcella\nRochelle\nAdele\nGay\nVerna\nCandy\nCathryn\nJessica\nWilma\nNatalie\nSharron\nAlma\nNaomi\nTamara\nBernice\nElena\nGretchen\nThelma\nIda\nKim\nSaundra\nAna\nConsuelo\nCora\nElla\nGwen\nJenny\nKristina\nOlga\nAngie\nAnnie\nCarrie\nChris\nChristy\nDee\nDona\nLeona\nNellie\nSusie\nBette\nErlinda\nFaye\nGladys\nKathie\nKristin\nSheri\nAlison\nAntonia\nCeleste\nErnestine\nNoreen\nRosalinda\nAmelia\nIlene\nIris\nJeanie\nJoanna\nCelia\nEstella\nEthel\nLola\nGlenna\nKarin\nKatharine\nMeredith\nMiriam\nMolly\nAmy\nCorinne\nEloise\nErma\nHazel\nJayne\nTerrie\nKarla\nLora\nJamie\nJeannine\nJudi\nMarina\nClaudette\nDarla\nLesley\nMarla\nMarta\nMona\nShannon\nRae\nArmida\nJerry\nKristi\nLeah\nMyrna\nNikki\nPearl\nSharyn\nTanya\nViolet\nGenevieve\nHeather\nMyra\nSonja\nSuzan\nTherese\nVelma\nAurora\nCarlene\nCassandra\nCathie\nGeorgette\nGina\nHilda\nHope\nJerri\nLaverne\nAlana\nCamille\nHenrietta\nJosie\nLillie\nLyn\nRene\nEsperanza\nLynnette\nNanci\nSandi\nWinifred\nBetsy\nDella\nJana\nOfelia\nRena\nRosalind\nSondra\nSonia\nSuzette\nValarie\nAlberta\nJuana\nKelly\nMagdalena\nRandy\nRoxanne\nSydney\nTracy\nCaren\nCheryle\nDebby\nElvira\nFlora\nJanine\nJohnnie\nKitty\nLavonne\nLenore\nRonda\nSharlene\nShelly\nSocorro\nViola\nBeverley\nDaphne\nIngrid\nJacklyn\nJeanine\nJolene\nKristen\nMarilee\nAlexis\nBlanca\nCarolynn\nCristina\nCrystal\nFay\nLeanne\nLorene\nMay\nRosario\nSherrill\nAgnes\nDarleen\nElsie\nLucia\nMari\nMerry\nNanette\nBessie\nCaryn\nColeen\nDiann\nDorene\nEarlene\nEstela\nJody\nJohanna\nJohn\nMadelyn\nMuriel\nSallie\nBlanche\nCecile\nCharleen\nDena\nDorothea\nEtta\nEvangelina\nGeorgene\nHelene\nJanelle\nKaye\nLena\nLenora\nLorrie\nLou\nMelva\nMichael\nPolly\nYvette\nCarleen\nCristine\nDenice\nEvangeline\nFrankie\nKaryn\nKatheryn\nKatie\nLetitia\nLila\nLoraine\nLorena\nMarilynn\nMelodie\nNan\nAda\nBarbra\nBettie\nElsa\nEstelle\nEugenia\nGeorgina\nGerry\nGertrude\nGraciela\nJudie\nLeilani\nMarylou\nMickey\nNona\nSharen\nAmanda\nCathrine\nDaryl\nDeena\nDeidre\nGeneva\nHerlinda\nJulianne\nKathrine\nKimberley\nLela\nLindsay\nMae\nMaryanne\nNeva\nNola\nPatrice\nPeggie\nShelia\nSilvia\nAdela\nAdeline\nAleta\nAllison\nBridget\nCandyce\nCarolina\nCherry\nConcepcion\nElisa\nElise\nGeri\nGilda\nHelena\nHortencia\nJosefina\nKathi\nKathlene\nKris\nLadonna\nMelba\nRoxanna\nStacy\nWillie\nAileen\nAlyce\nAva\nBrooke\nCarmelita\nCatalina\nCharmaine\nEunice\nGaye\nJacque\nKristie\nLeigh\nLidia\nLinnea\nLuana\nMarcy\nMargery\nMillie\nPamala\nRandi\nReba\nRonnie\nSusana\nAlthea\nBenita\nCamilla\nCarolee\nCatharine\nDeloris\nFrancisca\nInez\nJuliana\nKathlyn\nLeticia\nLonnie\nMadeleine\nMarva\nMaryellen\nMerrilee\nMickie\nMinnie\nNancie\nRobert\nSusanna\nVikki\nWinona\nAdrianne\nAida\nAlexandra\nAlta\nAlva\nBeatriz\nBeryl\nCaryl\nCharla\nClarice\nClaudine\nDarcy\nDeedee\nElva\nFreda\nGayla\nGracie\nJames\nJanene\nKarol\nLark\nLaureen\nLea\nLeila\nLily\nLindy\nLorie\nManuela\nMarlys\nMollie\nNorene\nOphelia\nPatrica\nPennie\nPetra\nRaylene\nRhoda\nRobbie\nRonna\nRosalyn\nRosita\nRoxie\nSharyl\nWendi\nAlene\nCarrol\nCorrine\nDanielle\nDarline\nDavid\nDebora\nDinah\nDolly\nErika\nFaith\nFrancesca\nIna\nJanell\nJanyce\nJuliette\nLani\nLaraine\nLeanna\nLindsey\nLouisa\nLuanne\nMabel\nMichal\nNannette\nNicki\nNita\nRachael\nRachelle\nRandee\nRory\nRoseann\nRoseanne\nSherryl\nSidney\nSuzann\nTrina\nCandis\nCarmela\nClare\nDaisy\nEdwina\nElinor\nElvia\nErin\nErnestina\nHarriett\nHilary\nJewel\nJuliet\nKaron\nLetha\nLorelei\nMaurine\nMercedes\nPamella\nPortia\nRosalina\nRoseanna\nRosetta\nRuthie\nSandee\nShirlee\nStacey\nTana\nTrudi\nValorie\nAmber\nAntonette\nArline\nBelen\nCarroll\nCassie\nCherrie\nCheryll\nChristene\nColette\nDeann\nDeanne\nEddie\nFreida\nFrieda\nGeorgetta\nJanna\nJenifer\nJodi\nJodie\nKaran\nLaurene\nLeslye\nLilia\nLilly\nLorinda\nLory\nLouella\nMarcie\nMargot\nMarleen\nMarti\nMimi\nMitzi\nNedra\nRaquel\nRosanne\nShawn\nSheron\nTammy\nWilla\nAbigail\nAlida\nBettye\nBobbi\nCarlotta\nCecily\nChristi\nCollette\nDelfina\nDelinda\nDorinda\nElisabeth\nFelicia\nFern\nFran\nGemma\nGene\nJaney\nJerilyn\nJimmie\nJocelyn\nJoellen\nJonnie\nJustine\nKathyrn\nKatrina\nKristy\nLizabeth\nLona\nLoree\nLuz\nMargret\nMerlene\nNicole\nNoel\nOpal\nOra\nPauletta\nRhea\nRosalee\nRoslyn\nSelma\nShauna\nSonya\nTerese\nTonya\nTrinidad\nTwila\nUnknown\nVickey\nVonda\nWinnie\nAletha\nAmparo\nAngelita\nArdith\nArleen\nBennie\nBernadine\nBeverlee\nBonni\nCathi\nCharles\nCherri\nChrista\nChristeen\nClarissa\nCleo\nCruz\nDanelle\nDanna\nDeana\nDeirdre\nDonald\nDorthy\nEster\nGeorganne\nGreta\nHollis\nIlona\nJacquline\nJerrilyn\nJoleen\nKathern\nKrista\nLanette\nLauretta\nLeonor\nLisbeth\nLita\nLoreen\nLura\nLynelle\nMalinda\nMarcelina\nMarty\nMarylyn\nMatilda\nMegan\nMelodee\nMercy\nMerrily\nMichaele\nMinerva\nPaige\nRichard\nRosalia\nRowena\nRoxy\nSharilyn\nSherida\nSherilyn\nSheryll\nSuellen\nTara\nTommie\nAdrian\nAnnetta\nCara\nCarmel\nCarmella\nCarolann\nDayle\nDebera\nDian\nEdythe\nElyse\nEmilie\nErica\nEula\nEvonne\nFlorine\nFrancis\nFreddie\nGabrielle\nGaylene\nGeorge\nIva\nJaneen\nJannette\nJannie\nJeraldine\nJohnette\nKate\nKathaleen\nLarry\nLauri\nLavern\nLeann\nLiane\nLourdes\nLuella\nLynnda\nMardi\nMarianna\nMarietta\nMaryjo\nMarylee\nMerle\nMicaela\nMillicent\nMyrtle\nNicola\nNiki\nPhillis\nRebekah\nRenae\nReta\nRetha\nRicki\nRickie\nRoxana\nSharleen\nSharman\nSharol\nShiela\nSigne\nSophie\nStefanie\nTamra\nTheodora\nToby\nTwyla\nVelia\nVida\nWilliam\nAddie\nAdelina\nAlexandria\nAlfreda\nAlyson\nAndree\nAnnabelle\nArlinda\nBeckie\nBerta\nBettina\nBobbe\nBrandy\nCandi\nCarolyne\nCarolynne\nCaron\nCathlene\nCelestine\nCharlyne\nCleta\nCordelia\nCorine\nDagmar\nDara\nDawna\nEarleen\nEarline\nEilene\nEleanore\nElouise\nErmelinda\nErna\nFrancene\nGena\nGeorgiana\nGeorgianna\nGinny\nGuillermina\nGwenda\nHattie\nHelaine\nHillary\nHortensia\nIsabelle\nIvy\nJacquelin\nJanise\nJerrie\nJoe\nJoni\nJonna\nJosette\nJuliann\nJulianna\nKandy\nKaty\nKendall\nKevin\nLaural\nLawanda\nLeslee\nLeta\nLibby\nLoyce\nLuisa\nLynell\nMarci\nMaribeth\nMarilou\nMarlena\nMarlyn\nMartie\nMartina\nMarya\nMattie\nMichaela\nMichel\nMonique\nNelda\nNicolette\nNoelle\nPenni\nPhylis\nPrudence\nRebeca\nRonald\nRosella\nSandie\nSharan\nSharie\nSherril\nShirlene\nSuzanna\nSuzi\nTami\nTerryl\nThomas\nTillie\nTreva\nValeria\nVanessa\nVesta\nVonnie\nWilda\nZenaida\nAdelaide\nAdelle\nAdriana\nAllene\nAllyson\nAlvina\nAmalia\nAngel\nAnnabella\nArla\nAudra\nBabette\nBerna\nBethany\nBlythe\nBonny\nBrigid\nCarey\nCaroll\nCharline\nCharlyn\nCharolette\nCherryl\nCinda\nClorinda\nConni\nCoral\nCoralee\nCornelia\nCris\nCyndee\nDaria\nDayna\nDebbra\nDede\nDelilah\nDelora\nDenna\nDina\nDollie\nDonita\nDorine\nDrusilla\nElayne\nElissa\nElma\nEloisa\nEnedina\nEve\nFatima\nFelicitas\nGeorgeann\nGeorgianne\nGeorgine\nGigi\nHallie\nHarlene\nHedy\nHermelinda\nImelda\nJacalyn\nJaclyn\nJaime\nJanetta\nJann\nJay\nJerene\nJewell\nJoellyn\nJoetta\nJoette\nJonell\nJoseph\nJovita\nKandace\nKarleen\nKarlene\nKarolyn\nKathryne\nKirsten\nLajuana\nLanell\nLauna\nLauralee\nLavada\nLeora\nLina\nLinette\nLise\nLiza\nLoralee\nLorita\nLorretta\nLottie\nLuann\nLula\nLupita\nLyndell\nMable\nMallory\nMamie\nMaralee\nMarcelle\nMarcellina\nMaren\nMargy\nMarquita\nMaura\nMeg\nMelvina\nMerideth\nMerri\nMerrie\nMeryl\nNatalia\nNickie\nNorine\nOdessa\nOralia\nPattie\nPaulina\nPhoebe\nPilar\nRaelene\nRandie\nRea\nRegan\nReggie\nRetta\nRise\nRobbin\nRomona\nRona\nRosamaria\nRosanna\nRoxann\nSabra\nSamantha\nSanta\nSerena\nSharry\nShelby\nSheree\nSheridan\nSigrid\nSofia\nStarr\nStephen\nSuzie\nTamera\nTania\nTari\nTeena\nTeresita\nTeressa\nTerrell\nTomi\nTonia\nTrisha\nVal\nValencia\nValery\nVelda\nVenus\nVerla\nVernita\nViki\nVirgie\nZelma\nZoe\nLinda\nSusan\nMary\nPatricia\nKathleen\nBarbara\nNancy\nSandra\nDeborah\nKaren\nSharon\nCarol\nPamela\nChristine\nDonna\nDiane\nJanet\nMargaret\nCynthia\nJanice\nJudith\nCheryl\nElizabeth\nShirley\nGloria\nJudy\nCarolyn\nCatherine\nKathryn\nMarilyn\nDiana\nKathy\nVirginia\nGail\nDebra\nJoyce\nBrenda\nMaria\nRebecca\nBeverly\nLaura\nMartha\nKatherine\nPaula\nJoan\nBonnie\nPeggy\nVictoria\nBetty\nDenise\nTeresa\nTheresa\nSuzanne\nFrances\nSally\nMarsha\nAnn\nLynn\nVicki\nCathy\nAlice\nHelen\nSherry\nConnie\nJacqueline\nIrene\nElaine\nJane\nSylvia\nStephanie\nRobin\nJean\nJoanne\nRita\nDorothy\nWendy\nJulie\nDarlene\nRose\nRuth\nJo\nYolanda\nLynda\nMarie\nChristina\nTerry\nYvonne\nMarcia\nSheila\nMaureen\nPhyllis\nJeanne\nMichele\nAnita\nLeslie\nValerie\nLorraine\nRoberta\nColleen\nNorma\nAnne\nEllen\nCharlene\nLaurie\nEvelyn\nCharlotte\nClaudia\nConstance\nMichelle\nDolores\nAnna\nRosemary\nWanda\nJennifer\nGayle\nMarlene\nJanis\nCarmen\nShelley\nLouise\nEileen\nCarole\nLynne\nRachel\nLoretta\nJill\nSue\nJeanette\nRhonda\nKristine\nRenee\nGeraldine\nJan\nVickie\nAndrea\nCindy\nEsther\nGlenda\nDianne\nJuanita\nCandace\nJoann\nLois\nGwendolyn\nMelinda\nCarla\nLisa\nDoris\nSheryl\nPenny\nMarjorie\nArlene\nJulia\nTerri\nRosa\nToni\nVivian\nCecilia\nAnnette\nLydia\nPriscilla\nSarah\nJosephine\nJoy\nRamona\nKay\nDebbie\nGuadalupe\nLaurel\nPaulette\nLillian\nGeorgia\nOlivia\nRosalie\nMelissa\nMelanie\nPauline\nEva\nJune\nMona\nBelinda\nJacquelyn\nMelody\nMargie\nMarian\nStella\nCandice\nDana\nCathleen\nRosie\nBeatrice\nLana\nNora\nDawn\nRegina\nAngela\nPatsy\nAlicia\nLupe\nTina\nLucy\nMonica\nCaroline\nGrace\nJeannette\nMarianne\nIrma\nDelores\nDianna\nEdith\nAntoinette\nJackie\nLucille\nLynette\nTeri\nOlga\nCheri\nPenelope\nJeannie\nMarion\nKimberly\nVicky\nAudrey\nSara\nBecky\nHolly\nCecelia\nDeanna\nJanie\nBertha\nEmily\nBillie\nDora\nMargarita\nTrudy\nLucinda\nRuby\nCorinne\nFrancine\nEleanor\nJennie\nMarguerite\nMarla\nSheri\nIsabel\nMarta\nPatti\nFlorence\nBeth\nRochelle\nVeronica\nPatrice\nGale\nLorna\nDoreen\nNadine\nMaxine\nRobyn\nAngelina\nCelia\nMargo\nLee\nRosemarie\nGinger\nKim\nShari\nEdna\nNina\nSherrie\nSandy\nSherri\nVerna\nApril\nClaire\nPatty\nVera\nBobbie\nChristy\nJanette\nKerry\nLora\nPat\nGay\nHeidi\nSusie\nAngie\nBonita\nLauren\nMadeline\nDale\nKathie\nCherie\nDelia\nNaomi\nGenevieve\nJenny\nKristin\nSusanne\nCeleste\nJessie\nNellie\nRoxanne\nAdrienne\nAlma\nClara\nFaye\nIda\nAna\nMildred\nSondra\nTerrie\nAdele\nCarrie\nBernadette\nLola\nMarcella\nAlison\nAmelia\nBetsy\nElena\nJanine\nJeri\nShannon\nThelma\nWilma\nBernice\nCandy\nChris\nEmma\nEthel\nJamie\nJody\nMolly\nShelly\nAntonia\nMaryann\nTamara\nTanya\nGretchen\nSaundra\nKarin\nMyra\nCassandra\nConsuelo\nDella\nErlinda\nErnestine\nGladys\nKarla\nKristina\nLori\nVelma\nAmy\nAnnie\nJessica\nRosalinda\nAmanda\nSuzan\nTherese\nBlanca\nDona\nHarriet\nJeannine\nRosalind\nSuzette\nColeen\nCora\nHazel\nJayne\nPearl\nSonja\nCamille\nCheryle\nDarla\nDebora\nGlenna\nHope\nIlene\nKaryn\nLaverne\nLeona\nMeredith\nRae\nCathryn\nFlora\nHeather\nHilda\nIris\nMyrna\nRena\nSharron\nChristie\nGwen\nKitty\nRene\nSydney\nElla\nEloise\nEstella\nJoanna\nLynnette\nMarina\nMercedes\nNanette\nSonia\nCristina\nCrystal\nDee\nJana\nJeanine\nRandi\nRonda\nTracy\nAlthea\nCarlene\nElvira\nGeorgette\nJeanie\nKatharine\nLeticia\nMerry\nPam\nCaren\nLorene\nNikki\nRoseanna\nSusanna\nElsie\nEsperanza\nHelene\nJosefina\nJulianne\nKristi\nLucia\nNanci\nNatalie\nRosanne\nAurora\nBridget\nDixie\nGilda\nGina\nLena\nLorie\nLyn\nMiriam\nNoreen\nBette\nHenrietta\nJerri\nJolene\nLeah\nLily\nMarilynn\nSilvia\nViola\nViolet\nAdela\nClaudette\nEarlene\nElsa\nFaith\nFay\nGertrude\nJacque\nJudi\nLesley\nMelodie\nSharlene\nAlberta\nBeverley\nCharleen\nDaphne\nDeidre\nDena\nDolly\nEugenia\nHilary\nJosie\nKristen\nLenore\nLila\nLindsay\nRosalyn\nSusana\nArmida\nGeri\nKelly\nLillie\nMari\nNola\nRosanna\nWillie\nDenice\nDorene\nJacklyn\nJanelle\nKathlene\nLadonna\nLani\nLorrie\nLou\nLuanne\nPetra\nShelia\nSocorro\nYvette\nAdeline\nAleta\nCaryl\nCaryn\nClarice\nDaryl\nDebby\nInez\nKristy\nLeilani\nMagdalena\nMarleen\nMuriel\nOfelia\nRachael\nRandy\nRaquel\nRosario\nStacy\nAda\nAgnes\nAlexis\nBenita\nCarmelita\nCatalina\nCathie\nCorrine\nElisa\nFrankie\nGeneva\nGraciela\nJerry\nJohnnie\nKaron\nKathrine\nMae\nMarietta\nMichael\nNona\nRoseann\nSherryl\nAileen\nAllison\nBarbra\nBrooke\nDian\nErica\nEunice\nHelena\nJanell\nLeigh\nMarilee\nMay\nMickey\nRachelle\nAlana\nCarolynn\nCecile\nDeana\nErin\nErma\nEstelle\nGeorgina\nJodi\nJuliana\nKatie\nLark\nMadeleine\nMarty\nNan\nNancie\nOphelia\nPamala\nSallie\nSandi\nSharyn\nAlexandra\nArleen\nCarmela\nCristine\nDeloris\nDiann\nEdwina\nEstela\nEvangelina\nEvangeline\nJohanna\nJuana\nKarol\nLea\nLeanne\nMarva\nNeva\nNita\nPolly\nSherrill\nStacey\nStarlene\nTrudi\nValorie\nWinifred\nAlta\nCarey\nCarolina\nCinda\nDeanne\nDorothea\nElise\nElva\nErnestina\nGaye\nGracie\nHerlinda\nJudie\nKatheryn\nKathlyn\nLinnea\nLonnie\nMadelyn\nManuela\nMarcy\nMarylou\nNicki\nRandee\nRhoda\nRoseanne\nSharman\nTana\nTrina\nVikki\nBlanche\nCandis\nCarleen\nDanielle\nDawna\nDeirdre\nDinah\nElyse\nGerry\nHannah\nJerilyn\nKendra\nKyle\nLaureen\nLavonne\nLeanna\nLenora\nLeslee\nLetitia\nLorelei\nLorena\nLouisa\nMelva\nMimi\nMyrtle\nNicolette\nPennie\nRobert\nRoxana\nSharen\nShellie\nSherilyn\nSonya\nSuzanna\nTommie\nUnknown\nVelia\nAdrian\nAdrianne\nBeatriz\nBeverlee\nCandyce\nCharla\nClare\nDarleen\nDevon\nFrancisca\nFreda\nGayla\nGreta\nHerminia\nIna\nJaneen\nKathi\nLeila\nLela\nLuana\nLuann\nMarcie\nMargery\nOra\nPamella\nPatrica\nReba\nRonnie\nRoxanna\nShawn\nShiela\nTara\nValeria\nAva\nBelen\nBessie\nBettie\nBobbi\nCarlotta\nColette\nFrancis\nFrieda\nGigi\nJames\nJewel\nKandy\nKate\nKatrina\nKaye\nKristie\nLeonor\nLeta\nLidia\nLilly\nLindsey\nLolita\nLona\nLoraine\nLuz\nMabel\nMaurine\nMelba\nMicheline\nMindy\nMinnie\nNedra\nNicole\nRobbie\nRonna\nRory\nRosita\nTheodora\nTonya\nAdelina\nAida\nAngelita\nCarroll\nCathrine\nDarcy\nDebrah\nDelilah\nDina\nElma\nFelicia\nHattie\nHortencia\nJanene\nJann\nJuliette\nKandra\nKathaleen\nLauri\nLetha\nMaryanne\nMillie\nNiki\nPortia\nRichard\nRosetta\nSidney\nValarie\nWilhelmina\nWilliam\nAmalia\nBabette\nBerta\nBeryl\nBonny\nCarolee\nCatharine\nCathi\nCherry\nClarissa\nCollette\nCoral\nCorliss\nDarline\nDeann\nDebbra\nDeena\nElisabeth\nElvia\nEtta\nEvonne\nGaylene\nGeorgiana\nHillary\nIngrid\nIsabelle\nJodie\nJohn\nJoleen\nJoni\nKelley\nKimberley\nLaraine\nLauretta\nLavon\nLeann\nLouann\nLouella\nMalinda\nMara\nMargot\nMargret\nMartina\nMattie\nMickie\nNancee\nNannette\nNoel\nNorine\nPhillis\nRaylene\nRebeca\nRebekah\nRosalee\nRosaline\nSharilyn\nSharyl\nSherie\nShirlene\nSuzann\nSuzie\nSybil\nTammy\nTari\nTeena\nTeryl\nTrinidad\nTwila\nVivienne\nWendi\nAlfreda\nAllyson\nAlyce\nAmber\nAntionette\nAntonette\nArdith\nBernadine\nBunny\nCarmella\nCecily\nCharmaine\nCheryll\nChristene\nClaudine\nDaisy\nDanna\nDelfina\nDennise\nDrucilla\nGeorgene\nGinny\nIva\nJerrie\nJustine\nKaran\nKathyrn\nKimberlee\nKrista\nLin\nLindy\nLita\nLizabeth\nLory\nLuella\nLynelle\nMable\nMarci\nMaryellen\nMarylin\nMavis\nMegan\nMelodee\nMerrie\nMillicent\nMollie\nNelda\nPeggie\nRandie\nRenita\nRhea\nRuthie\nShanna\nSharleen\nShelby\nSherlyn\nSoledad\nStarla\nStarr\nStefanie\nTerese\nTracey\nTrisha\nVernetta\nViki\nVita\nWilla\nAdriana\nAlanna\nAline\nBelva\nBethany\nBettye\nCamilla\nCandi\nCarmel\nCaron\nCatheryn\nCharolette\nChristi\nCleo\nCorina\nDavid\nDebera\nDede\nDeedee\nDonita\nDottie\nElia\nElissa\nEmilie\nEve\nGary\nGeorganne\nGeorgie\nGoldie\nHollis\nJacalyn\nJacqulyn\nJanel\nJannette\nJannie\nJoanie\nJulianna\nKathryne\nKaty\nLeola\nLeslye\nLiane\nLida\nLina\nLise\nLoreen\nLourdes\nLucie\nMarybeth\nMitzi\nNada\nNorah\nOna\nRicki\nRisa\nRowena\nSandie\nSheree\nSheridan\nSherron\nSheryle\nShirlee\nSophia\nStephany\nSuellen\nSusann\nTena\nTonie\nTwyla\nVanessa\nVelda\nVickey\nWendie\nYolonda\nAdella\nAlvina\nAmparo\nAnnabel\nArline\nBari\nBernita\nCameron\nCara\nCarin\nCaroll\nCarolynne\nCarrol\nCathey\nCharles\nCharlie\nCharlyn\nCherilyn\nCherrie\nCherryl\nConchita\nCorine\nCruz\nDayle\nDeborrah\nDeidra\nDonelle\nDorcas\nDrusilla\nElayne\nElinor\nEllie\nElvera\nEmilia\nEster\nFlorine\nFran\nGenie\nGeorganna\nGerri\nGlynda\nHarlene\nHarriette\nHollie\nImelda\nJacquelin\nJacquline\nJaime\nJanyce\nJeane\nJocelyn\nJoe\nJoelle\nJolie\nJoycelyn\nJuliann\nKandi\nKandice\nKris\nLane\nLanita\nLarae\nLaurene\nLayne\nLenda\nLennie\nLibby\nLilia\nLizbeth\nLorinda\nLorri\nLynell\nMadonna\nMamie\nMargarite\nMariana\nMariann\nMarianna\nMarjory\nMarlys\nMarti\nMatilda\nMercy\nNettie\nOdette\nPauletta\nRanda\nRetha\nRichelle\nRobbin\nRoslyn\nSelma\nSerena\nSherill\nSofia\nSunny\nSuzzane\nTamera\nTobi\nTreva\nTrudie\nValentina\nVallorie\nVirgie\nVonda\nVonnie\nWinona\nZoe\nAdelaide\nAdelle\nAlba\nAlene\nAngelica\nAnnabelle\nArdis\nArla\nAurelia\nAvelina\nBeckie\nBennie\nBettina\nBlanch\nBrigid\nCandee\nCandise\nCarlyn\nCherri\nChrista\nChrys\nCydney\nDarlyn\nDiedre\nDoretha\nDorine\nDorthy\nDouglas\nEddie\nEdythe\nEffie\nEleanore\nEllyn\nElodia\nEnid\nErna\nFabienne\nFern\nFrancene\nFrancesca\nFrank\nFreddie\nGena\nGene\nGeorgianna\nGeralyn\nGiovanna\nHortensia\nIla\nIvy\nJacquelyne\nJacquie\nJanise\nJanna\nJenifer\nJimmie\nJoellen\nJoetta\nJonnie\nJulienne\nKatherin\nKathern\nKenneth\nKit\nLanette\nLari\nLaure\nLawana\nLawanda\nLeonora\nLesa\nLissa\nLonda\nLoree\nLucretia\nMadalyn\nManya\nMardi\nMaren\nMargene\nMarlyn\nMarna\nMarolyn\nMaryjo\nMerri\nMerrily\nMichaela\nMidge\nMoira\nNickie\nNila\nNoelle\nOllie\nOpal\nPenni\nRona\nRoselyn\nRoxann\nRoxie\nSabra\nSadie\nSandee\nSharla\nShauna\nSheena\nSherida\nSibyl\nSigne\nSigrid\nStar\nSuzi\nTamra\nTerrea\nTerryl\nThea\nTomasa\nTonia\nTrena\nVallerie\nValli\nVeda\nVerla\nVesta\nVida\nVilma\nWinnie\nZelda\nZona\nLinda\nPatricia\nSusan\nMary\nDeborah\nKathleen\nKaren\nBarbara\nNancy\nSandra\nSharon\nChristine\nCarol\nDebra\nPamela\nDonna\nDiane\nCynthia\nJanet\nMargaret\nJanice\nCheryl\nElizabeth\nCatherine\nJudith\nJudy\nGloria\nDenise\nGail\nRebecca\nCarolyn\nShirley\nKathryn\nBrenda\nKatherine\nDiana\nMarilyn\nVictoria\nMaria\nTeresa\nLaura\nVirginia\nKathy\nBeverly\nJoyce\nPeggy\nJoan\nMartha\nBonnie\nPaula\nLynn\nBetty\nAnn\nTheresa\nRobin\nVicki\nSally\nJacqueline\nIrene\nSuzanne\nHelen\nLaurie\nAlice\nRose\nJulie\nJane\nFrances\nRita\nJean\nValerie\nSylvia\nConnie\nRuth\nMarsha\nCathy\nTerry\nDorothy\nJoanne\nYolanda\nChristina\nElaine\nLeslie\nDarlene\nSheila\nSherry\nAnita\nWendy\nEllen\nMarie\nAnne\nYvonne\nJo\nPhyllis\nMarcia\nClaudia\nMichele\nLorraine\nStephanie\nGayle\nJeanne\nRoberta\nJennifer\nAnna\nNorma\nVickie\nDolores\nColleen\nEvelyn\nMaureen\nJanis\nConstance\nLisa\nLynda\nMichelle\nCharlene\nRhonda\nWanda\nEileen\nRosemary\nShelley\nTerri\nJill\nEsther\nMelinda\nCarmen\nMarlene\nCindy\nCharlotte\nJan\nKristine\nLynne\nJeanette\nRenee\nCandace\nVivian\nPenny\nCarla\nGlenda\nDebbie\nLydia\nToni\nDianne\nLoretta\nAndrea\nArlene\nRachel\nLouise\nCarole\nJosephine\nMarjorie\nJoann\nJulia\nJuanita\nAnnette\nSue\nGeorgia\nLois\nGeraldine\nGwendolyn\nDoris\nJoy\nMonica\nSarah\nRosa\nSheryl\nRegina\nRamona\nKay\nCecilia\nTina\nDawn\nCathleen\nLori\nPriscilla\nJune\nMarianne\nStella\nDana\nPaulette\nEva\nJackie\nMelody\nGuadalupe\nAntoinette\nAlicia\nMelissa\nCandice\nRoxanne\nSara\nMelanie\nPauline\nAngela\nJacquelyn\nBelinda\nLaurel\nLynette\nPatrice\nEleanor\nNina\nHolly\nLillian\nNora\nRuby\nMona\nVicky\nTeri\nKimberly\nMarian\nJeannette\nRosie\nBeatrice\nBeth\nBertha\nOlivia\nPatsy\nRosalie\nGale\nMargarita\nIrma\nMarla\nCaroline\nCecelia\nEdith\nKerry\nLupe\nLucille\nMargie\nRobyn\nSheri\nChristy\nClaire\nDianna\nMargo\nSherri\nDeanna\nFrancine\nGrace\nJeri\nBecky\nLucinda\nVeronica\nLucy\nMaxine\nCheri\nLorna\nEmily\nKim\nPatti\nAmy\nDoreen\nLana\nDelores\nKarin\nOlga\nRosemarie\nAudrey\nFlorence\nJenny\nLee\nMarion\nBonita\nJanie\nJennie\nMadeline\nBillie\nDale\nJeannie\nJessie\nEdna\nGretchen\nMarta\nCelia\nHeidi\nMarguerite\nCherie\nNadine\nSandy\nSherrie\nClara\nPenelope\nApril\nDelia\nDora\nIda\nTrudy\nDebora\nKristin\nMildred\nDixie\nMolly\nAna\nKristina\nNanette\nVera\nAnnie\nPatty\nShannon\nTherese\nCorinne\nHope\nIsabel\nJanette\nJody\nMarcella\nNaomi\nBernice\nEmma\nJamie\nThelma\nAdrienne\nGinger\nJanine\nAdele\nCarrie\nKarla\nKathie\nCandy\nCrystal\nAlma\nCeleste\nWilma\nAmelia\nCaren\nMaryann\nBetsy\nChristie\nEthel\nGwen\nShelly\nAlison\nDarla\nDona\nElena\nGay\nHilda\nJessica\nMiriam\nRochelle\nAntonia\nBobbie\nDella\nEloise\nLyn\nSusie\nAngelina\nBernadette\nEstella\nHarriet\nJeanie\nLauren\nRonda\nShari\nSusanne\nTamara\nErlinda\nJeannine\nPat\nTanya\nCassandra\nErin\nGina\nHazel\nMeredith\nMyrna\nNatalie\nChris\nGlenna\nJerri\nElla\nFaith\nKelly\nMarilynn\nRosalind\nSonia\nTerrie\nAllison\nKristi\nLeona\nSilvia\nSydney\nVerna\nGladys\nOfelia\nVelma\nBenita\nCaryn\nCathryn\nConsuelo\nDee\nDenice\nHeather\nJanelle\nLola\nLora\nBlanca\nElsa\nFaye\nJana\nLena\nLesley\nNanci\nNikki\nRandi\nRene\nColeen\nErnestine\nGenevieve\nIris\nJoanna\nKristen\nLorrie\nSaundra\nSondra\nArmida\nBette\nCamille\nIlene\nKris\nLeah\nLeticia\nNellie\nViolet\nAngie\nEsperanza\nInez\nLaverne\nMagdalena\nMyra\nRae\nSallie\nGraciela\nJeanine\nJuana\nKatharine\nMarina\nPearl\nSharron\nBeverley\nDena\nElva\nErma\nHelene\nLucia\nMari\nTracy\nAmanda\nGeorgette\nLorene\nPolly\nYvette\nAurora\nCheryle\nClare\nEve\nHenrietta\nKristie\nLily\nLorie\nLynnette\nSuzan\nViola\nAgnes\nCarlene\nJosie\nKathrine\nLila\nRosanna\nStacy\nColette\nCristina\nDebby\nLeanne\nRosanne\nShelia\nSonja\nAlana\nArleen\nElvira\nGertrude\nJudi\nKristy\nMarcy\nMarylou\nMercedes\nMimi\nSocorro\nAileen\nAlberta\nCathie\nCharleen\nClaudette\nDaphne\nDiann\nEstela\nEvangeline\nJerry\nKathi\nLavonne\nMindy\nNona\nPam\nRandy\nRena\nSherrill\nSherryl\nSuzette\nValarie\nAlexis\nAlta\nCecile\nCora\nDanielle\nDarcy\nDeloris\nElsie\nFreda\nGeneva\nJayne\nKaryn\nLauri\nLenora\nLillie\nLilly\nLindsay\nMelodie\nOphelia\nRosalyn\nRoxanna\nShellie\nAva\nCarolina\nCatalina\nCristine\nElisa\nElisabeth\nElise\nEugenia\nGaye\nGeorgina\nGilda\nKaron\nKaye\nLadonna\nLani\nLoraine\nMarcie\nMarietta\nMarva\nMichael\nPetra\nRoseann\nSharlene\nValorie\nVikki\nEarlene\nElvia\nFay\nGracie\nHelena\nHerlinda\nJacalyn\nJohnnie\nKarol\nKatheryn\nLeslee\nMadelyn\nMuriel\nNoreen\nRosario\nRoseanna\nShawn\nSusanna\nTonya\nAbigail\nAdela\nBettie\nDeana\nDeidre\nDina\nFlora\nJacque\nJohanna\nJolene\nJulianne\nKathlyn\nLeilani\nMerry\nAleta\nBlanche\nCarolynn\nCorrine\nDanna\nEvangelina\nHilary\nJosefina\nKimberley\nLenore\nLonnie\nLorena\nLouisa\nLuz\nMadeleine\nMara\nMarilee\nMarty\nMaurine\nMay\nMelba\nMickey\nNicolette\nNola\nRhoda\nRosalinda\nTrina\nUnknown\nAdrianne\nAlexandra\nBarbra\nBridget\nClarice\nEdwina\nEunice\nFern\nGreta\nJocelyn\nKathlene\nLilia\nMalinda\nMarci\nMargot\nMarleen\nNannette\nNedra\nNeva\nNicki\nNoel\nRachelle\nRaquel\nRosetta\nRoxann\nSherilyn\nTerese\nAdeline\nAlthea\nCathrine\nDebbra\nDebera\nDelilah\nDolly\nFrancis\nIva\nJacklyn\nJanna\nJenifer\nJuliet\nKatrina\nLeigh\nLoreen\nMarianna\nMyrtle\nNelda\nPamala\nSharyl\nShirlee\nBeryl\nBrooke\nCandyce\nCarmelita\nCharmaine\nDaria\nDarleen\nDaryl\nDeirdre\nDian\nDorothea\nErnestina\nFrancisca\nGayla\nHortencia\nIna\nKendra\nKitty\nLauretta\nNan\nNita\nRonnie\nRosita\nSharyn\nStarr\nSusana\nTara\nTracey\nAdelina\nAlyce\nCatharine\nCherry\nCinda\nDarline\nDinah\nGeorgiana\nGeri\nGinny\nJacquline\nJanell\nJodie\nJoni\nJuliana\nKathaleen\nKrista\nLea\nLeann\nLeta\nLorelei\nLorinda\nLou\nMarlys\nMaryanne\nMelodee\nMercy\nMerrie\nNicole\nPatrica\nPennie\nRebeca\nRoseanne\nThea\nTommie\nTrudi\nAllyson\nAvis\nBeatriz\nBobbi\nBonny\nCandi\nCandis\nCherrie\nDeanne\nDrucilla\nElinor\nGerri\nGerry\nHattie\nIvy\nJacquelin\nJann\nJerilyn\nJewel\nKari\nKellie\nLark\nLaureen\nLetitia\nLinnea\nLourdes\nMargery\nMollie\nNena\nNorene\nRobbie\nRosella\nRowena\nRuthie\nTana\nTricia\nWinifred\nWinona\nZoe\nAdrian\nAida\nAllyn\nBelen\nCarleen\nCaryl\nClaudine\nCorliss\nDaisy\nDayle\nDeborha\nFrancesca\nHollis\nJodi\nJoellen\nJosette\nKatie\nLeanna\nLela\nLibby\nLizabeth\nLuana\nMadonna\nMae\nMartina\nMegan\nMelva\nMinnie\nNancie\nNettie\nPamella\nPeggie\nRaylene\nRoxane\nShiela\nSophie\nVanessa\nViki\nWendi\nWillie\nZandra\nAda\nCamilla\nCarrol\nCary\nCher\nCherryl\nConcepcion\nDeedee\nDorinda\nElissa\nEsmeralda\nEtta\nFrankie\nFreddie\nGeorgie\nGlinda\nIngrid\nKandy\nKelley\nKenna\nKevin\nKristeen\nLeila\nLidia\nLissa\nLoren\nLuann\nLucile\nMabel\nMarcelina\nMaren\nMaura\nMerlene\nMillicent\nOpal\nPenni\nRachael\nRona\nRonna\nRoselyn\nRoxie\nSerena\nSharleen\nStacey\nStarla\nSuzanna\nTammy\nToby\nTreva\nVelia\nAdriana\nAmber\nAngel\nAngelita\nAnnamarie\nAntonette\nBethany\nCandie\nCara\nCarmela\nCarolee\nCathi\nCherri\nCheryll\nChristi\nDanelle\nDara\nDeann\nDeborrah\nDebrah\nDede\nDedra\nDeena\nDelma\nDevon\nElnora\nEmilia\nEmilie\nErica\nErmalinda\nGaile\nGena\nGeorganne\nGeorgianna\nHermelinda\nJudie\nJuliette\nKate\nKathyrn\nKimberlee\nLaurene\nLeora\nLezlie\nLiane\nLindy\nLiz\nLona\nLoralee\nLorri\nLucretia\nLura\nManuela\nMargret\nMariann\nMaribeth\nMatilda\nMattie\nMicki\nPhoebe\nReba\nRebekah\nReva\nRichard\nRobbin\nRosalee\nRoslyn\nSandi\nSharen\nSherril\nShirlene\nSuzann\nTami\nTari\nTonia\nVickey\nWilla\nAdella\nAlanna\nAlva\nAndree\nAngeline\nAnnabel\nArlette\nAurelia\nBettina\nBrigid\nCarin\nCarroll\nCharla\nChere\nChristopher\nCindi\nCollette\nCoral\nCorina\nCorine\nCornelia\nDanette\nDavid\nDawna\nDebi\nDeidra\nDorcas\nDorene\nEarline\nEddie\nElayne\nEstelle\nEula\nEvon\nEvonne\nFelicia\nFran\nFrieda\nGaylene\nGeorgiann\nHannah\nHarriette\nHortensia\nJaneen\nJanetta\nJaney\nJeanene\nJeraldine\nJesus\nJoe\nJoette\nJoleen\nJovita\nJustine\nKyle\nLane\nLanette\nLaurette\nLawana\nLeola\nLiana\nLina\nLonna\nLoree\nLuanne\nLuella\nLynell\nLynnda\nMaricela\nMarna\nMarnie\nMarylin\nMavis\nMerle\nPattie\nReina\nRhea\nRobbyn\nRoni\nRory\nRoxana\nSharman\nSherie\nSofia\nSonya\nSophia\nStarlene\nSunny\nSusann\nTamera\nTeddy\nTeena\nTonie\nTrena\nTrudie\nVal\nValeria\nVeda\nVelda\nAletha\nAlexa\nAmalia\nAmparo\nAngelica\nAnnetta\nArdith\nArline\nBennie\nBessie\nBettye\nBobette\nBunny\nCandelaria\nCarey\nCarmella\nCaroll\nCarolyne\nCassie\nCelestine\nCharity\nCharlette\nCharline\nChrista\nChristene\nClarissa\nCleo\nCruz\nDeeann\nDelfina\nEllyn\nEster\nFatima\nFelice\nFlorine\nFredda\nGeorgann\nGeralyn\nGlory\nGwenda\nHarriett\nHillary\nImogene\nIola\nJaclyn\nJaime\nJames\nJanel\nJanene\nJewell\nJimmie\nJoanie\nJodene\nJonnie\nKarleen\nKarlene\nKarolyn\nKaryl\nKathern\nKathryne\nKerrie\nLayne\nLelia\nLianne\nLita\nLory\nMable\nManuel\nManya\nMarguerita\nMarijane\nMarilou\nMarjory\nMarti\nMeri\nMichel\nMickie\nMillie\nMinerva\nMoira\nNadene\nNiki\nNoelle\nPaige\nPortia\nRandie\nRegenia\nRickie\nRobert\nRosalia\nRosaline\nRozanne\nSabra\nSelina\nShireen\nSigne\nSoledad\nStar\nSybil\nTania\nTeddi\nTheodora\nTia\nTwila\nVerda\nZella\nAbby\nAddie\nAlejandra\nAlexandria\nAlyson\nAntionette\nArdell\nBernadine\nBernita\nBerta\nBonni\nBrinda\nCallie\nCameron\nCarlotta\nCarmel\nCecily\nCharolette\nChristeen\nClementina\nCory\nCristy\nDarcey\nDarlyne\nDea\nDeane\nDebborah\nDennis\nDonita\nDonnette\nDori\nDorthy\nDyanne\nElda\nElin\nEliza\nEllie\nEnriqueta\nFonda\nFrank\nFreida\nGeorgeann\nGeorgene\nGigi\nGoldie\nGregory\nGwynn\nHallie\nHopie\nIsabell\nIsabelle\nJannette\nJay\nJene\nJerrie\nJesse\nJoane\nJohnetta\nJohnna\nJonna\nJosefa\nKandace\nKarel\nKenneth\nKerri\nKirsten\nKit\nKristene\nLanna\nLarae\nLarry\nLauna\nLaure\nLawanda\nLeda\nLeonor\nLeslye\nLetha\nLindsey\nLizbeth\nLonda\nLouella\nLynna\nMaggie\nMamie\nMargarette\nMarlee\nMaryhelen\nMeg\nMia\nMicaela\nMichaela\nMicheline\nMitzi\nNatasha\nNathalie\nNeta\nNorah\nNoralee\nPenney\nPhyliss\nPrudence\nRetha\nRetta\nRicky\nRilla\nSandie\nScarlett\nShanon\nSharlet\nSharol\nSherlyn\nSheryle\nTaffy\nTerresa\nTimmie\nTroy\nUrsula\nValentina\nVida\nVilma\nVirgie\nVivien\nVonda\nVonnie\nWilhelmina\nWindy\nZelda\nLinda\nPatricia\nDeborah\nSusan\nMary\nKathleen\nKaren\nDebra\nNancy\nBarbara\nChristine\nSandra\nPamela\nCarol\nCynthia\nSharon\nDiane\nDonna\nJanet\nMargaret\nElizabeth\nJanice\nCheryl\nDenise\nCatherine\nJudith\nJudy\nGloria\nRebecca\nMarilyn\nLaura\nCarolyn\nKathryn\nBrenda\nTeresa\nGail\nVictoria\nKathy\nDiana\nKatherine\nPaula\nMaria\nVirginia\nJoan\nJoyce\nShirley\nMartha\nRobin\nBonnie\nPeggy\nBeverly\nLeslie\nTheresa\nCathy\nVicki\nConnie\nLaurie\nAnn\nLynn\nSuzanne\nJulie\nBetty\nJacqueline\nRose\nSally\nJane\nRoberta\nValerie\nSherry\nLisa\nJean\nChristina\nMichele\nDorothy\nYolanda\nAlice\nMichelle\nSheila\nAnita\nFrances\nMarsha\nTerry\nRuth\nJo\nAnne\nStephanie\nSylvia\nIrene\nElaine\nWendy\nHelen\nDarlene\nClaudia\nJennifer\nRita\nYvonne\nVickie\nMarie\nJeanne\nJoanne\nLorraine\nTerri\nEllen\nPhyllis\nMaureen\nColleen\nMarcia\nAnna\nJan\nCharlene\nConstance\nLynda\nGayle\nMelinda\nNorma\nCindy\nRenee\nToni\nRhonda\nJill\nEvelyn\nMarlene\nDolores\nWanda\nAndrea\nDebbie\nJanis\nEileen\nCharlotte\nCarla\nKristine\nLoretta\nShelley\nCarmen\nLouise\nRosemary\nLynne\nJeanette\nPenny\nEsther\nCandace\nKim\nVivian\nLydia\nDoris\nRachel\nSue\nLois\nLori\nJulia\nDianne\nGlenda\nMarjorie\nAnnette\nCarole\nJuanita\nJoann\nMelissa\nRosa\nTina\nSarah\nGwendolyn\nSheryl\nArlene\nAngela\nRoxanne\nGeraldine\nKimberly\nRamona\nMonica\nJoy\nMelody\nCathleen\nCecilia\nJosephine\nGuadalupe\nMelanie\nPriscilla\nTeri\nLaurel\nDana\nEva\nKay\nNina\nBelinda\nDawn\nJune\nRegina\nBecky\nHolly\nJackie\nPauline\nLillian\nVicky\nCandice\nPatti\nPaulette\nGeorgia\nJeri\nOlivia\nStella\nMarianne\nNadine\nPatrice\nRosalie\nAlicia\nJody\nLucy\nMarian\nVeronica\nChristy\nEmily\nJeannie\nMargo\nApril\nIrma\nJacquelyn\nLorna\nGrace\nSheri\nMarla\nSherrie\nDelores\nLucinda\nRosie\nSara\nJeannette\nRuby\nCaroline\nSherri\nDianna\nBeatrice\nEleanor\nJennie\nLucille\nNora\nRobyn\nAntoinette\nKerry\nBeth\nClaire\nCarrie\nCheri\nFrancine\nLynette\nAudrey\nJanine\nLupe\nMargarita\nHeidi\nMarion\nBertha\nDebora\nDoreen\nAmy\nBillie\nMargie\nIsabel\nGinger\nEdna\nEdith\nJanie\nJenny\nJessie\nMona\nGale\nMaxine\nOlga\nPatsy\nTerrie\nShelly\nDora\nMarta\nCelia\nElena\nCecelia\nDeanna\nDelia\nKarla\nBonita\nJeanine\nBernadette\nCorinne\nDale\nFlorence\nKelly\nRochelle\nTherese\nVera\nPenelope\nTrudy\nAlison\nGretchen\nCherie\nHeather\nLauren\nAdrienne\nAna\nAnnie\nShannon\nAntonia\nDarla\nKristina\nLee\nRosemarie\nSondra\nBetsy\nClara\nSusie\nChris\nDee\nJamie\nMarguerite\nMolly\nAlma\nDixie\nEmma\nLana\nJanette\nRene\nBobbie\nKristin\nMildred\nPatty\nWilma\nAngelina\nDella\nGay\nHope\nJessica\nRandi\nTamara\nKathie\nSusanne\nAmelia\nChristie\nKarin\nTracy\nVerna\nBernice\nCeleste\nIda\nCandy\nAdele\nHazel\nDenice\nJana\nLora\nMadeline\nSandy\nThelma\nKristy\nMarcella\nAngie\nCathryn\nLorrie\nMaryann\nShari\nElisa\nEthel\nGwen\nGina\nLeticia\nMyra\nNaomi\nRonda\nSaundra\nHarriet\nPat\nYvette\nCharmaine\nJayne\nLesley\nNatalie\nEstella\nGlenna\nHilda\nJanelle\nMarcy\nNellie\nRosario\nBlanca\nCamille\nCassandra\nGenevieve\nJerri\nJoanna\nJulianne\nKathrine\nLeona\nSydney\nCrystal\nErlinda\nFaye\nRosanne\nClaudette\nJeannine\nNanette\nSilvia\nSuzan\nArleen\nBette\nConsuelo\nCorrine\nElsa\nJeanie\nNanci\nPearl\nSharlene\nGilda\nKristen\nRena\nSharron\nArmida\nAurora\nCora\nDona\nEloise\nEsperanza\nKristi\nLaverne\nLena\nLila\nSuzette\nDena\nElvira\nGeorgina\nIris\nJudi\nLola\nLyn\nSallie\nCaren\nDaphne\nHenrietta\nMarina\nNona\nRaquel\nValarie\nAmanda\nCharleen\nElisabeth\nElla\nFaith\nGladys\nKristie\nLeah\nLorene\nLynnette\nMagdalena\nNita\nRosalind\nRosalinda\nSonia\nTanya\nColette\nGeneva\nHelene\nIlene\nMari\nMiriam\nMyrna\nNikki\nNoreen\nAlexandra\nAllison\nDarcy\nElsie\nErma\nGracie\nJosefina\nKris\nLorie\nMarilynn\nPam\nVelma\nViola\nAileen\nBeverley\nCathie\nKatharine\nOfelia\nBridget\nJohanna\nKarol\nLenore\nLillie\nMercedes\nMeredith\nShelia\nSonya\nDanielle\nErnestine\nEugenia\nGraciela\nKaryn\nLauri\nLeanne\nLucia\nMarilee\nMindy\nRobbie\nTonya\nViolet\nCheryle\nEstela\nFreda\nGeri\nJosie\nKathi\nLavonne\nMarcie\nMuriel\nNannette\nRandy\nRoxanna\nAlana\nAlberta\nCaryn\nColeen\nDebrah\nErin\nJacalyn\nJocelyn\nKatrina\nNola\nPamala\nRae\nRoxann\nValorie\nAbigail\nAgnes\nBenita\nCecile\nDeirdre\nDiann\nIngrid\nJolene\nJuana\nLani\nLoraine\nLou\nRosanna\nSherrill\nStacy\nAleta\nCarlene\nChristi\nDeanne\nDebby\nElise\nElva\nJacklyn\nJuliana\nLea\nMadelyn\nMay\nMelodie\nMerry\nSocorro\nTerese\nAllyson\nCathi\nCristina\nDeana\nDeloris\nDian\nEvangeline\nGeorgette\nInez\nJohnnie\nLindsay\nMargery\nMichael\nMinnie\nNicki\nOphelia\nPaige\nPetra\nRoslyn\nStacey\nAdela\nAlexis\nAlthea\nBlanche\nClare\nEunice\nFelicia\nGeorgianna\nGreta\nIvy\nJaneen\nJanell\nJann\nJodi\nLorena\nShawn\nVikki\nAdeline\nCatalina\nCristine\nElissa\nElyse\nGerry\nJodie\nKatie\nKaye\nKimberley\nLeann\nLenora\nLeslee\nLorelei\nMabel\nMalinda\nMarci\nMarylou\nMaura\nNelda\nPolly\nRachelle\nValentina\nVickey\nWinifred\nAngelita\nCatharine\nDebera\nDolly\nDorothea\nEarlene\nEdwina\nEvangelina\nFrancisca\nFrankie\nJacque\nJanna\nKatheryn\nKathlyn\nKellie\nLadonna\nLela\nLonnie\nLouisa\nMaryanne\nNan\nRachael\nRuthie\nSusana\nSusanna\nTana\nTrina\nVanessa\nAda\nAlyce\nAva\nAvis\nBernadine\nCarlotta\nCharla\nCherry\nClarice\nDebbra\nDeidre\nFlora\nHortencia\nKate\nLily\nLuanne\nMadeleine\nMae\nMaggie\nMelba\nMickey\nMollie\nNancie\nPennie\nRhoda\nRoseanna\nRosita\nSuzann\nTommie\nTrudi\nAida\nAmber\nCarey\nCarleen\nCarolina\nCollette\nElvia\nEve\nFay\nFrancesca\nGayla\nHerlinda\nJames\nLeilani\nLindsey\nMarty\nMarva\nMegan\nPandora\nRobbin\nRosalyn\nRoxie\nSherilyn\nSonja\nSuzanna\nTami\nTammy\nViki\nBonny\nBrooke\nCandyce\nCarrol\nDaisy\nDinah\nDorene\nFern\nGwenda\nHelena\nJerilyn\nJerry\nJonnie\nLeanna\nLeigh\nLilly\nLissa\nLizabeth\nLorinda\nLourdes\nLura\nMamie\nMara\nMarietta\nMattie\nMercy\nMimi\nNicole\nOpal\nRaylene\nRicki\nRoseanne\nRosetta\nRoxane\nShirlee\nUnknown\nWillie\nZoe\nAlta\nAlyson\nBobbi\nCamilla\nCaron\nCinda\nCornelia\nDanette\nDarleen\nDaryl\nDawna\nDeedee\nDeena\nDorinda\nEmilie\nErika\nEstelle\nGaylene\nGertrude\nGlinda\nHilary\nIna\nJaclyn\nJuliet\nKelley\nKitty\nKrista\nKristeen\nLeila\nLise\nLuann\nMargot\nMargret\nMillie\nMyrtle\nNiki\nPatrica\nRandee\nRoseann\nRosella\nSharyl\nSharyn\nShellie\nVelia\nWilla\nWilliam\nAllyn\nAlva\nBeatriz\nBeverlee\nCallie\nCandi\nCarmela\nCelestine\nCherrie\nCheryll\nCindi\nClaudine\nConcepcion\nDavid\nDebbi\nDeborrah\nDelfina\nFrancis\nGeralyn\nGinny\nHannah\nHermelinda\nJanene\nJanyce\nJohn\nJonna\nKandi\nKandy\nKaran\nKendra\nKimberlee\nLawanda\nLiane\nLindy\nLucie\nLuz\nMerrie\nNedra\nNettie\nNicolette\nNorine\nReba\nRhea\nRichard\nRondi\nRonna\nRosalee\nRosann\nSherie\nSheryle\nSidney\nStarla\nStarr\nSybil\nTara\nTheodora\nTracey\nTrinidad\nVal\nAllene\nAmalia\nArdith\nBarbra\nBettie\nCandis\nCara\nCathrine\nDanna\nDarline\nDede\nDelilah\nEllena\nEmilia\nErica\nErnestina\nFran\nFrieda\nGeorgiana\nJanel\nJaney\nJoleen\nKarolyn\nKathaleen\nLaureen\nLavern\nLetitia\nLidia\nLoreen\nLorri\nLuisa\nMadonna\nMarcelle\nMarilou\nMarleen\nMartina\nMaude\nMina\nPauletta\nRenae\nRona\nRuthann\nSharman\nSimone\nTena\nTonia\nTricia\nTwyla\nWendi\nAbby\nAlida\nAngel\nAntionette\nArlinda\nBabette\nBelia\nBerta\nCarmelita\nCaryl\nCassie\nCathey\nCherilyn\nClarissa\nCorina\nCyndi\nDanita\nDara\nDayle\nDayna\nDevon\nDollie\nDonita\nDorthy\nEarline\nGaye\nGenie\nGerri\nHattie\nHollis\nIsabelle\nJacquelynn\nJanetta\nJenifer\nJerrie\nJewel\nKaron\nKathern\nKevin\nLaraine\nLaurene\nLauretta\nLaurette\nLavon\nLeola\nLeonor\nLeta\nLibby\nLita\nLoren\nLouella\nLyla\nMarianna\nMaribeth\nMarna\nMarti\nMaryjo\nMatilda\nMaurine\nMavis\nMelva\nMerri\nMerrilee\nMia\nMitzi\nNadene\nNeva\nOra\nPattie\nPaulina\nPeggie\nPhillis\nRandie\nRebekah\nReina\nRickie\nRobert\nRoni\nRonnie\nRoselyn\nRowena\nRoxana\nSharen\nSherryl\nSheryll\nSoledad\nSophia\nStacie\nStefanie\nSunny\nVelda\nVida\nZandra\nAdrian\nAdrianne\nAlanna\nAlecia\nAlene\nAletha\nAline\nAlvina\nAntonette\nArline\nAurelia\nBelen\nBennie\nBettye\nBunny\nCaprice\nCarmel\nCarolyne\nCarolynn\nCary\nChrystal\nCleo\nCorine\nDanelle\nDelois\nDelphine\nDennise\nDenyse\nDottie\nEugenie\nFawn\nFrancene\nGae\nGeorganne\nGeorge\nGeorgene\nGigi\nHortensia\nIla\nJacquline\nJami\nJanett\nJimmie\nJoetta\nJoette\nJoni\nJoseph\nJosette\nJudie\nKeri\nKerri\nLark\nLavada\nLesli\nLilia\nLinnea\nLoree\nLucretia\nMariann\nMarisela\nMarjory\nMaryellen\nMeg\nMelodee\nMichaela\nMonique\nNancee\nNickie\nPalma\nPamella\nPansy\nPenni\nRetha\nRonald\nSadie\nSari\nShana\nShawna\nSophie\nSteven\nThomas\nTrisha\nTrudie\nTwila\nVenita\nVivien\nWendie\nAbbie\nAdella\nAlexa\nAlfreda\nAmparo\nAnnamarie\nBessie\nBianca\nBlythe\nBrandy\nCarletta\nCarlyn\nCarolin\nCathlene\nCelina\nCherri\nChrista\nCindie\nCoral\nCorliss\nCory\nCristy\nDalia\nDeann\nDevra\nDina\nDorcas\nEdythe\nElia\nElinor\nEster\nEvonne\nFatima\nFelice\nGabrielle\nGary\nGuillermina\nGwyn\nHarriett\nIva\nJacki\nJacquelin\nJeraldine\nJerilynn\nJoe\nJoycelyn\nJuliann\nJustine\nKarlene\nKarole\nKathyrn\nKerrie\nKirsten\nKit\nKrystal\nKyle\nLeota\nLiana\nLianne\nLili\nLin\nLinell\nLolita\nLoma\nLonna\nLorretta\nLory\nLuana\nMable\nManuela\nMarlyn\nMaryl\nMarylyn\nMickie\nNell\nOctavia\nPhoebe\nPiper\nPortia\nReta\nRosalia\nRosalva\nRosina\nRozanne\nSelma\nSerena\nSheril\nShiela\nShirleen\nShirlene\nSigrid\nSofia\nStephenie\nTreva\nUna\nValli\nVernita\nVonda\nWinona\nZella\nAdriana\nAdriane\nAlisa\nAndre\nAngelica\nArdis\nArthur\nBelle\nBilly\nBobbette\nBobette\nBonni\nBrenna\nCameron\nCandance\nCandie\nCarin\nCarolee\nCasey\nCecily\nChari\nCharlesetta\nChristiane\nCindee\nClair\nCoreen\nCruz\nCydney\nDarnell\nDebbe\nDelinda\nDell\nDenese\nDeniece\nDevin\nDoretta\nDorie\nDorrie\nDru\nDyan\nDyann\nEffie\nElda\nEloisa\nElvera\nEmelia\nEnid\nEsmeralda\nEtta\nFelipa\nFlorine\nFreddie\nGayl\nGlennda\nGlory\nGlynda\nGregory\nHillary\nImelda\nJacklynn\nJacqulyn\nJaniece\nJannette\nJesus\nJewell\nJil\nJoelle\nJohna\nJohnna\nJohnny\nJolynn\nJonell\nJonelle\nJudyth\nJulee\nJulianna\nKari\nKathlene\nKathryne\nKorla\nKym\nLanell\nLanette\nLanora\nLauraine\nLauralee\nLeora\nLetha\nLezlie\nLinette\nLizbeth\nLona\nLottie\nLu\nLula\nLynell\nManon\nMardel\nMargarite\nMaricela\nMarlena\nMarnie\nMartie\nMarylin\nMerle\nMicaela\nMicky\nMliss\nNoel\nNoella\nOna\nOralia\nPage\nPhylis\nRacheal\nRaelene\nRanda\nRebeca\nRenata\nReyna\nRicci\nRikki\nRobbi\nRomona\nRosalba\nRosalina\nSabina\nSamantha\nSandi\nSantos\nScott\nSharan\nSheilah\nShelby\nShelli\nSigne\nStar\nStarlene\nStefani\nStephani\nSusann\nSusette\nSuzie\nTamra\nTania\nTari\nTeena\nTheresia\nTobi\nTonie\nTrish\nValeria\nVerda\nVesta\nVirgie\nWhitney\nZelma\nLinda\nDeborah\nSusan\nMary\nPatricia\nDebra\nKaren\nCynthia\nKathleen\nPamela\nNancy\nBarbara\nSandra\nSharon\nCarol\nDonna\nDiane\nJanet\nElizabeth\nDenise\nCheryl\nMargaret\nJanice\nChristine\nRebecca\nCatherine\nLaura\nTeresa\nRobin\nJudith\nGloria\nBrenda\nMarilyn\nJudy\nDiana\nKathy\nKathryn\nPaula\nMaria\nGail\nVictoria\nCarolyn\nJulie\nKatherine\nShirley\nTheresa\nMartha\nJoyce\nJoan\nVirginia\nBeverly\nLaurie\nLeslie\nPeggy\nSuzanne\nRose\nValerie\nVicki\nLynn\nAnn\nLisa\nBonnie\nMichelle\nCathy\nRoberta\nSally\nBetty\nConnie\nJane\nSherry\nTerry\nAnita\nJoanne\nSheila\nMichele\nJo\nJean\nRuth\nJacqueline\nDorothy\nDarlene\nIrene\nWendy\nJennifer\nStephanie\nHelen\nFrances\nTerri\nMarsha\nAnne\nRita\nYolanda\nElaine\nAlice\nRhonda\nSylvia\nYvonne\nCindy\nAnna\nJeanne\nColleen\nVickie\nMarie\nLorraine\nRenee\nChristina\nGayle\nJan\nJill\nPhyllis\nEllen\nDebbie\nLori\nClaudia\nCharlene\nMarcia\nMelinda\nMaureen\nDolores\nNorma\nEvelyn\nWanda\nConstance\nCarla\nEileen\nLynda\nRachel\nKim\nToni\nCarmen\nJeanette\nShelley\nLoretta\nDoris\nKimberly\nMarlene\nLouise\nPenny\nLydia\nDawn\nLynne\nLois\nJulia\nSheryl\nEsther\nMelissa\nAnnette\nSarah\nDianne\nCandace\nMarjorie\nSue\nGwendolyn\nAndrea\nAngela\nCharlotte\nMonica\nArlene\nRosemary\nDana\nJoy\nGlenda\nRamona\nSherri\nJuanita\nRosa\nVivian\nTina\nGuadalupe\nRoxanne\nJanis\nJosephine\nMelanie\nTeri\nJoann\nCarole\nPatti\nJune\nGeorgia\nCecilia\nMelody\nMarianne\nBecky\nCathleen\nCheri\nGeraldine\nHolly\nJackie\nApril\nPauline\nLucy\nPaulette\nSheri\nRegina\nKay\nCarrie\nBelinda\nRuby\nNina\nVicky\nMarla\nHeidi\nRosie\nEleanor\nJanine\nJeri\nNora\nVeronica\nBeth\nLillian\nKerry\nPriscilla\nLaurel\nOlivia\nSara\nGrace\nMarian\nRosalie\nDianna\nMona\nPatrice\nJacquelyn\nEmily\nGale\nStella\nAlicia\nEva\nAntoinette\nCandice\nDeanna\nDelores\nLucille\nPatsy\nJoni\nKristine\nMargie\nAmy\nIrma\nSherrie\nLynette\nJeannie\nRobyn\nKarla\nLorna\nAudrey\nJeannette\nBeatrice\nJody\nMargarita\nCaroline\nLucinda\nLupe\nJennie\nMarion\nIsabel\nCherie\nJamie\nRochelle\nEdith\nJanie\nDoreen\nTherese\nDora\nVanessa\nCelia\nDebora\nDelia\nJenny\nTrudy\nShelly\nAdrienne\nFrancine\nShannon\nBillie\nCecelia\nJana\nClara\nGinger\nSusanne\nKarin\nNadine\nPatty\nAlma\nJanette\nLee\nMarta\nVera\nBertha\nGay\nJessie\nRene\nTanya\nGina\nLeticia\nOlga\nTerrie\nCandy\nDarla\nMargo\nBonita\nCorinne\nLora\nBernadette\nCeleste\nKristin\nElena\nFlorence\nChristy\nCrystal\nHeather\nNanette\nClaire\nLeah\nMarguerite\nHope\nTracy\nDale\nJeanie\nSandy\nAngelina\nBernice\nLana\nMadeline\nNaomi\nThelma\nJeannine\nKelly\nRonda\nSondra\nSusie\nDenice\nLauren\nLou\nJessica\nMildred\nTamara\nAlison\nElisa\nMaxine\nMolly\nBobbie\nRandi\nShari\nWilma\nAnnie\nEdna\nLorrie\nCassandra\nGwen\nPearl\nSuzan\nAna\nDixie\nKimberley\nKristi\nMyra\nPenelope\nSonja\nBridget\nEmma\nGretchen\nJeanine\nLesley\nCathryn\nChristie\nDee\nDella\nAntonia\nColeen\nErlinda\nMarcella\nBetsy\nCaren\nKristen\nChris\nEthel\nGladys\nJoanna\nKathi\nKathie\nSonia\nMaryann\nNellie\nDona\nElla\nFaith\nGayla\nIda\nRena\nRosanne\nVerna\nAdele\nCarlene\nCharmaine\nHilda\nLuann\nRosemarie\nEstella\nJanelle\nAmelia\nAngie\nColette\nErnestine\nHazel\nKristina\nLorie\nMarina\nNanci\nNatalie\nNoreen\nSharron\nBlanca\nCamille\nEloise\nEsperanza\nHelene\nRobbin\nVelma\nYvette\nLeona\nAurora\nCora\nDebby\nErma\nIris\nJayne\nRaquel\nAllison\nArleen\nBette\nGlenna\nJolene\nLyn\nRae\nRosalind\nSydney\nGeorgina\nJerri\nJodi\nLynnette\nMindy\nMyrna\nShelia\nStacey\nStacy\nTonya\nValarie\nClaudette\nElvira\nOfelia\nSusana\nCarolina\nCaryn\nElsie\nFaye\nGenevieve\nJulianne\nLeanne\nMarcy\nMiriam\nRosalinda\nSaundra\nTricia\nAileen\nDanielle\nDaphne\nDarcy\nElsa\nGaye\nGeorgette\nGilda\nKristy\nLena\nRachelle\nSusanna\nTammy\nConsuelo\nDena\nElisabeth\nEugenia\nKathrine\nLauri\nLenora\nLola\nLucia\nMarilynn\nPolly\nRandy\nAmanda\nBlanche\nDeana\nDeirdre\nGeneva\nJosefina\nKris\nLila\nLorene\nLuanne\nMarilee\nPamala\nRachael\nShawn\nCorrine\nElise\nErin\nInez\nKatrina\nMeredith\nMerry\nNikki\nSuzette\nViola\nAleta\nCheryle\nDebrah\nDiann\nDorene\nEve\nIvy\nKaryn\nLaverne\nMarva\nMercedes\nRoxann\nAlberta\nBenita\nFreda\nJocelyn\nKatharine\nKristie\nLily\nLorri\nMarcie\nMichael\nNola\nRoseann\nTracey\nVenita\nAntonette\nCathie\nClarice\nDeedee\nElva\nFlora\nHenrietta\nJann\nJuana\nKathlene\nLavonne\nMadelyn\nMae\nPam\nValorie\nViolet\nAlexis\nAva\nClare\nGeri\nGraciela\nHarriet\nIlene\nJaneen\nJuliana\nKimberlee\nLillie\nLuz\nMari\nMelodie\nMickey\nMollie\nNicole\nRobbie\nRosalyn\nRosario\nAdela\nCarey\nDolly\nDorothea\nElvia\nJacklyn\nJanene\nJohnnie\nLorinda\nMadeleine\nNita\nShauna\nSherryl\nTerese\nAlexandra\nBrooke\nChristi\nCindi\nDebbra\nDina\nGertrude\nJanell\nLeanna\nLorelei\nSallie\nSharlene\nSherrill\nAdrian\nAgnes\nAmber\nArmida\nCharleen\nCristina\nDanna\nDeanne\nDebera\nDeena\nEdwina\nErica\nEstela\nFrancisca\nFrankie\nIngrid\nKari\nKaye\nKelley\nLenore\nMargot\nMelba\nNoel\nNona\nSilvia\nSocorro\nCathi\nDanette\nFelicia\nFrancesca\nGracie\nHilary\nJosie\nLaureen\nLela\nLeta\nLindy\nLoraine\nMagdalena\nMara\nMuriel\nRhoda\nRosanna\nTrina\nVikki\nAda\nAlana\nBeverley\nBobbi\nEarlene\nKaron\nKitty\nLark\nLeann\nLidia\nLouisa\nMarci\nMargery\nMay\nMegan\nMercy\nMimi\nNancie\nPatrica\nReba\nRobert\nRoxanna\nSonya\nSuzanna\nTara\nTwila\nUnknown\nAbigail\nCecile\nCharline\nDaisy\nDarleen\nDeidre\nDelilah\nDeloris\nElyse\nEvangeline\nGerri\nJacalyn\nJenifer\nJerry\nJohanna\nJudi\nKatheryn\nLea\nMargret\nMarleen\nNicki\nPat\nVickey\nWinifred\nAdeline\nCathrine\nDeann\nDoretta\nErnestina\nFay\nGeorgiana\nGinny\nHillary\nHortencia\nJacque\nJodie\nKarol\nKatie\nKyle\nLani\nLeigh\nManuela\nMarietta\nNan\nNeva\nPetra\nRoseanne\nSherilyn\nAdrianne\nAida\nAllyson\nBeverlee\nCaron\nCatalina\nCheryll\nCinda\nEstelle\nEunice\nGigi\nHerlinda\nIna\nIva\nJudie\nJuliet\nKate\nKathaleen\nLadonna\nLilly\nLise\nLuisa\nMabel\nMaggie\nMelva\nMickie\nMitzi\nMoira\nNannette\nRichard\nRowena\nRoxie\nSofia\nWendi\nAlene\nAlthea\nBarbra\nBeatriz\nBessie\nBettie\nCarleen\nCarmelita\nCatharine\nDayle\nEvangelina\nGaylene\nGeralyn\nGreta\nJames\nJaniece\nJanna\nJerrie\nKaran\nKerri\nLaronda\nLaurene\nLeila\nLeilani\nLesa\nLinnea\nLita\nOphelia\nPaige\nRebekah\nRicki\nRonnie\nRuthie\nSandi\nShirlee\nWinona\nAlta\nAnnamarie\nBerta\nCarolynn\nCasey\nCherrie\nCherry\nCorliss\nDawna\nElissa\nEtta\nFern\nGuillermina\nJewel\nJoette\nKathyrn\nKendra\nKrista\nKristeen\nLesli\nLetitia\nLiane\nLindsay\nLissa\nLizabeth\nLona\nLonnie\nLoreen\nLorena\nLourdes\nLu\nMalinda\nMariann\nMinerva\nPamella\nPennie\nPrudence\nRebeca\nRosalia\nRosita\nSharen\nSharla\nTania\nTena\nTommie\nTrudi\nWillie\nAlisa\nAngelita\nAntionette\nBambi\nCandyce\nCarroll\nCary\nCharisse\nCherri\nClarissa\nDanita\nDebi\nDennise\nEllyn\nJacquline\nJay\nJerilyn\nJimmie\nKathlyn\nKirsten\nLanette\nLawanda\nLibby\nMaricela\nMarlys\nMaryanne\nMerrie\nMonique\nNedra\nNelda\nNiki\nRenae\nRickie\nRonna\nSharyn\nShellie\nSunny\nTonie\nViki\nWilla\nAlanna\nAletha\nAllyn\nAngelique\nArdis\nArline\nBobette\nBrandy\nCarmela\nCarmella\nCarrol\nCathey\nCharla\nClaudine\nCorine\nDara\nDede\nDelma\nDinah\nDorian\nDorinda\nGeorgann\nGeorgene\nGoldie\nHermelinda\nImelda\nJaney\nJewell\nJoanie\nJonnie\nJuliette\nKandy\nKathryne\nKelli\nLetha\nLiana\nLonna\nMadonna\nMarylin\nMarylyn\nMerlene\nPenni\nPhoebe\nRanda\nRhea\nRoselyn\nRosetta\nRoxane\nRoyce\nSharilyn\nSheree\nSherie\nSidney\nSophia\nTami\nVelda\nAdella\nAlida\nAmparo\nAngel\nAnnemarie\nBabette\nBeckie\nBernadine\nCamilla\nCandi\nCandis\nCarmel\nCherlyn\nChristal\nCollette\nCruz\nDaria\nDavid\nDavida\nDebbi\nDeborha\nDelfina\nDonita\nDori\nEnid\nErika\nEugenie\nEula\nFrancis\nFreddie\nFrieda\nGeorge\nGerry\nHelena\nHortensia\nIsabelle\nJanel\nJannette\nJeanene\nJenice\nJeraldine\nJoe\nJoleen\nJorja\nJuli\nJulianna\nKellie\nKeri\nLane\nLeeann\nLeonor\nLeonora\nLida\nLoree\nLouann\nMadaline\nMarianna\nMarlena\nMartina\nMarty\nMattie\nMaurine\nMavis\nMelodee\nMeri\nMichaele\nMyrtle\nNicola\nOpal\nOra\nPortia\nRacheal\nRandie\nRayna\nReta\nRosann\nRoslyn\nSadie\nSerena\nSharyl\nSheron\nSherril\nShiela\nStarla\nStarr\nStefanie\nTeena\nTheodora\nTracie\nVelia\nVonnie\nZelda\nZoe\nAdriana\nAlyce\nAmalia\nAngelica\nAnnabelle\nAnnetta\nBettina\nBonny\nCallie\nCarolee\nCathlene\nCecily\nChloe\nCristine\nCristy\nDayna\nDeeann\nDenyse\nDevon\nDorie\nElaina\nElinor\nEnriqueta\nGabrielle\nGeorganne\nGeorgetta\nGeorgianna\nHattie\nIla\nJaclyn\nJacquelin\nJanett\nJanetta\nJanise\nJenine\nJoetta\nJonell\nJovita\nJuliann\nKandi\nKara\nKarlene\nKathern\nKevin\nKit\nLajuana\nLavern\nLawana\nLeola\nLeslee\nLianne\nLilia\nLina\nLindsey\nLolita\nLoren\nLory\nLuana\nMarita\nMarlyn\nMarti\nMarylou\nMatilda\nMaura\nMerri\nMerrilee\nMicaela\nMillie\nMina\nPiper\nRaylene\nReina\nRise\nRona\nRory\nRosalee\nRoseanna\nSuzann\nTana\nTani\nTillie\nTonia\nTrinidad\nVal\nValencia\nVida\nZandra\nAbbe\nAbbie\nAgustina\nAlane\nAlexa\nAlexandria\nAndria\nAnnabel\nArletta\nAurelia\nBelen\nBelva\nBrigid\nBronwyn\nCara\nCarin\nCarletta\nCassie\nCherryl\nChrista\nCinthia\nClarinda\nCleo\nCornelia\nCydney\nDamita\nDaryl\nDebborah\nDeborrah\nDebroah\nDelphine\nDesiree\nDian\nDiedre\nEarline\nEda\nElayne\nElda\nElia\nElida\nEliza\nElouise\nEmilia\nErline\nEsmeralda\nEulalia\nGayleen\nGenoveva\nGiselle\nGlynis\nGriselda\nHannah\nHollis\nJacki\nJacquelyne\nJacquelynn\nJaime\nJanyce\nJoane\nJohn\nJonda\nJoseph\nJosette\nJoye\nKarel\nKarren\nKarrie\nKym\nLanita\nLaraine\nLauretta\nLaurette\nLaurinda\nLawanna\nLelia\nLinette\nLoralee\nLorin\nLorita\nLupita\nLyla\nMamie\nMarilou\nMarisela\nMarlynn\nMaryellen\nMerle\nMinnie\nNicolette\nNorene\nNorine\nNyla\nOma\nPauletta\nRafaela\nRenita\nReva\nRoni\nRosaline\nRosella\nRoxana\nSharlee\nSharleen\nShawna\nSimone\nSuzie\nSybil\nTamra\nTari\nTeresita\nThomas\nTia\nTrisha\nValentina\nVeda\nWendie\nZina\nAddie\nAdelina\nAdell\nAimee\nAllena\nAndra\nAngelia\nArdith\nAvis\nBeryl\nBobbe\nBobby\nCam\nCari\nCarlotta\nCarola\nCharlesetta\nCher\nCherilyn\nChristeen\nChristene\nChristianne\nClorinda\nConcepcion\nConcha\nCoral\nCordelia\nCorina\nCozette\nCyd\nDaina\nDalia\nDeberah\nDelois\nDenese\nDenisa\nDodie\nDyanne\nEdythe\nElana\nElba\nElma\nElvera\nEmilie\nEnedina\nEnola\nErmelinda\nEster\nEvette\nFae\nFelecia\nFrancie\nGena\nGenie\nGeorgiann\nGisele\nGlinda\nGwyneth\nHolli\nHollie\nJannie\nJayme\nJeane\nJenise\nJoey\nJohnetta\nJonna\nJosephina\nJoycelyn\nJulee\nJulienne\nKandace\nKandice\nKarleen\nKayla\nKenda\nKiki\nKimberlie\nLauree\nLavada\nLavera\nLavonda\nLavonna\nLeatha\nLeesa\nLenna\nLili\nLin\nLiz\nLorilee\nLorretta\nLottie\nLouanne\nLouella\nLuci\nLucie\nLuella\nLynell\nMarcelina\nMarcelle\nMardell\nMargarete\nMarjory\nMark\nMarya\nMaudie\nMelisa\nMerced\nMeridith\nMia\nMichal\nMicheline\nMirna\nNancee\nNatividad\nNell\nNena\nNoelle\nNoemi\nPamla\nPeggie\nRaymond\nRenea\nRenetta\nRenette\nRetha\nRicci\nRichelle\nRicky\nRoslynn\nSabra\nSalli\nShana\nShanna\nSharan\nShaun\nSheena\nSheridan\nSindy\nSonjia\nStar\nSuanne\nSusann\nTeddi\nTeryl\nThea\nTresa\nTreva\nTroy\nTwyla\nUrsula\nValery\nValinda\nValli\nVernell\nVernice\nVirgie\nVonda\nVonna\nWinnie\nLinda\nSusan\nDebra\nDeborah\nMary\nPatricia\nKaren\nCynthia\nPamela\nNancy\nKathleen\nBarbara\nSandra\nCarol\nDonna\nDiane\nSharon\nJanet\nCheryl\nElizabeth\nDenise\nRebecca\nMargaret\nTeresa\nRobin\nCatherine\nLaura\nJanice\nMaria\nGloria\nDiana\nBrenda\nLisa\nPaula\nKathy\nJudy\nTheresa\nMarilyn\nJudith\nGail\nJulie\nKathryn\nKatherine\nCarolyn\nVictoria\nVicki\nRose\nLeslie\nChristine\nJoan\nJoyce\nLynn\nBeverly\nLori\nMartha\nVirginia\nSuzanne\nTerri\nLaurie\nAnn\nStephanie\nMichelle\nValerie\nPeggy\nSherry\nTerry\nMichele\nShirley\nConnie\nYolanda\nSally\nCathy\nSheila\nElaine\nBonnie\nRoberta\nWendy\nMarie\nDebbie\nJacqueline\nJo\nJane\nJennifer\nCindy\nRuth\nJean\nDarlene\nSylvia\nVickie\nAlice\nBetty\nRhonda\nAnna\nAnita\nKim\nAnne\nHelen\nFrances\nIrene\nRenee\nDorothy\nJoanne\nYvonne\nColleen\nEllen\nLorraine\nJill\nRita\nMelinda\nDolores\nToni\nMarsha\nSheryl\nKimberly\nMarcia\nWanda\nJeanne\nPhyllis\nJan\nMaureen\nLoretta\nClaudia\nNorma\nEileen\nEvelyn\nRachel\nAngela\nConstance\nGayle\nCharlotte\nCarla\nMarian\nCharlene\nJeanette\nTeri\nDawn\nAndrea\nCarmen\nDianne\nLydia\nLynda\nChristina\nEsther\nJulia\nShelley\nLynne\nLois\nSue\nMarlene\nAnnette\nMonica\nVivian\nJuanita\nMelody\nRoxanne\nMelissa\nGlenda\nRamona\nDoris\nArlene\nGwendolyn\nSarah\nMelanie\nTina\nLouise\nPenny\nRosa\nCecilia\nCandace\nHolly\nMarla\nJoy\nMarianne\nJosephine\nDana\nSheri\nHeidi\nJanis\nMarjorie\nRosemary\nJackie\nApril\nGeraldine\nRegina\nSherri\nRobyn\nCathleen\nGuadalupe\nNina\nCarole\nBecky\nJoann\nPatti\nJune\nEva\nGina\nBeth\nJeri\nLucy\nAmy\nVicky\nMona\nLillian\nPauline\nCheri\nSherrie\nOlivia\nSara\nDeanna\nDebora\nIrma\nVeronica\nAudrey\nGeorgia\nKay\nStella\nGrace\nJody\nKerry\nBelinda\nJoni\nLynette\nJeannie\nPaulette\nVanessa\nCarrie\nMargie\nPriscilla\nEleanor\nJacquelyn\nRuby\nLaurel\nRosalie\nAlicia\nAntoinette\nCaroline\nLee\nLauren\nLupe\nNora\nRosie\nJana\nRochelle\nDianna\nEmily\nJeannette\nPatrice\nClaire\nOlga\nJamie\nMargarita\nBeatrice\nGale\nJanine\nDoreen\nTerrie\nJennie\nLorna\nLucille\nShannon\nTracy\nTherese\nCherie\nJenny\nLucinda\nNadine\nBobbie\nDelores\nMargo\nAlison\nAna\nBertha\nChristy\nNaomi\nSheree\nDelia\nKathie\nPatsy\nSandy\nShelly\nCandice\nCorinne\nDora\nFrancine\nJanie\nLeticia\nEdith\nHeather\nJanette\nKelly\nPatty\nVera\nAdrienne\nDale\nMarcella\nElena\nKathi\nAlma\nJeanine\nKarla\nTamara\nCelia\nLora\nMarion\nStacey\nAntonia\nKarin\nRene\nAngelina\nCandy\nCecelia\nGinger\nIsabel\nSonia\nEdna\nShawn\nCrystal\nKristine\nMarina\nMaryann\nRonda\nStacy\nGwen\nMarguerite\nShari\nSusanne\nBillie\nMarta\nTanya\nBetsy\nFlorence\nJessie\nSusie\nCeleste\nDarla\nEmma\nDena\nJerri\nRosanne\nRosemarie\nSuzan\nAnnie\nBonita\nJessica\nLorie\nCaren\nErin\nMildred\nTrudy\nLeah\nAmelia\nBernice\nIda\nMaxine\nChris\nDella\nJoanna\nDenice\nDixie\nLorrie\nYvette\nAdele\nHilda\nHope\nCamille\nDee\nGretchen\nLauri\nMyra\nNanette\nKristin\nLana\nLorene\nPenelope\nTracey\nBridget\nDona\nJayne\nLeona\nSusana\nClara\nMiriam\nNoreen\nJeannine\nLesley\nLou\nLuann\nMari\nRandi\nGay\nElsa\nLena\nAngie\nChristie\nFaye\nJeanie\nNellie\nPearl\nRosario\nColette\nJolene\nJulianne\nKimberley\nLola\nMolly\nShelia\nLuanne\nNatalie\nVerna\nAllison\nGenevieve\nHazel\nIris\nLyn\nShauna\nSonja\nCassandra\nDebbra\nEstella\nFaith\nGeorgette\nLeanne\nMadeline\nSondra\nWilma\nAva\nBernadette\nEsperanza\nGladys\nNanci\nNikki\nRobbin\nRosalind\nArleen\nCorrine\nDarcy\nElise\nElla\nEthel\nKatharine\nRena\nSuzette\nGraciela\nIlene\nKathrine\nKristy\nMyrna\nTricia\nBlanca\nCaryn\nElisa\nGayla\nGlenna\nHarriet\nHenrietta\nKimberlee\nKristen\nKristi\nLucia\nRaquel\nRoxie\nBeverley\nColeen\nKristina\nRae\nSilvia\nThelma\nValarie\nAlberta\nBenita\nBette\nCathryn\nDanette\nElisabeth\nGilda\nJosefina\nKatrina\nLynnette\nPolly\nSharron\nTonya\nVikki\nAurora\nCora\nDebby\nDorene\nGeneva\nJanelle\nLaverne\nMarcie\nMerry\nMindy\nPamala\nRosalinda\nRoxann\nSabrina\nSharlene\nCheryle\nElsie\nElva\nKaryn\nLani\nMarilee\nMelba\nMercedes\nPam\nRoxanna\nSallie\nSherrill\nValorie\nVelma\nErlinda\nJacalyn\nJodi\nJohanna\nLeslee\nMarcy\nMeredith\nMichael\nAileen\nAmanda\nBobbi\nCharmaine\nClare\nDebrah\nDina\nFelicia\nGeorgina\nLadonna\nLaureen\nLily\nMarilynn\nMelodie\nNola\nSonya\nSusanna\nAlexandra\nAlisa\nDanielle\nElvira\nErica\nErnestine\nEve\nFreda\nGeri\nHelene\nLenora\nRosalyn\nTara\nViola\nCarlene\nEloise\nJuana\nLorelei\nMagdalena\nOphelia\nPat\nAlexis\nDeirdre\nEstela\nFlora\nKitty\nLavonne\nLeila\nLoraine\nLorena\nMarylou\nNita\nRachelle\nRandy\nRenae\nStarla\nSuzanna\nUnknown\nAda\nCathie\nDeanne\nErma\nGaye\nJerilyn\nLea\nLeann\nLeigh\nLillie\nMara\nMimi\nMitzi\nRachael\nTerese\nAdela\nCarolina\nClaudette\nConsuelo\nDebi\nDorothea\nElyse\nHilary\nJacklyn\nKatie\nLeta\nLidia\nLila\nLindy\nMegan\nMercy\nNoel\nOfelia\nShellie\nSocorro\nAida\nAlana\nDeena\nDiann\nJanel\nJanell\nKarol\nKerri\nKristie\nLauretta\nLorinda\nMalinda\nMay\nMuriel\nMyrtle\nSandi\nSaundra\nSherryl\nTami\nAleta\nBeatriz\nCarmelita\nCherryl\nClarice\nEarlene\nInez\nIngrid\nJerrie\nJohn\nKris\nLuz\nMarva\nMaryanne\nMerle\nMicki\nRosanna\nRowena\nViolet\nAdeline\nCatalina\nCathrine\nChristi\nDaphne\nEugenia\nJaneen\nJanna\nJenifer\nJodie\nJosie\nJudi\nJuliet\nKaye\nLanette\nLenore\nLorri\nLuana\nRebekah\nRobbie\nRobert\nSherie\nViki\nWillie\nAbigail\nAgnes\nAlyce\nArmida\nBlanche\nCara\nCaryl\nCristina\nDelilah\nFrancisca\nJohnnie\nKeri\nLela\nLeonor\nMadelyn\nMarci\nMerrilee\nNeva\nNona\nPennie\nPetra\nSherilyn\nTrina\nAngelita\nBambi\nCarey\nCecile\nCharleen\nDeana\nDeann\nDebbi\nElissa\nEunice\nGracie\nHelena\nHollie\nIvy\nJanene\nJocelyn\nJuliette\nLeilani\nLilia\nLindsay\nLinnea\nLonnie\nLu\nMargery\nPamella\nRosetta\nRoslyn\nShawna\nSuzann\nSydney\nTammy\nVelda\nAngelica\nAurelia\nBrooke\nCandyce\nCathi\nCheryll\nCinda\nCindi\nDawna\nDesiree\nEdwina\nEmilia\nEvangelina\nFay\nGertrude\nHerlinda\nJannette\nJosette\nJuliana\nKate\nKelley\nLark\nLaronda\nLaurene\nLeanna\nLeeann\nLeola\nMickey\nNicki\nPattie\nReba\nRuthie\nSidney\nSophia\nTonia\nVeda\nVickey\nWilla\nAdrian\nAlthea\nAmber\nBabette\nBessie\nBettina\nCallie\nCarleen\nCatharine\nCharisse\nClaudine\nDara\nDede\nDian\nDori\nEstelle\nEvonne\nFern\nFrancesca\nGeorgiana\nJacki\nJaney\nJerry\nJolie\nKandy\nKarolyn\nKaron\nKathaleen\nKatheryn\nKaty\nKelli\nLouisa\nLuisa\nMabel\nMae\nMaggie\nMarlena\nMaryellen\nMaura\nMerri\nNicole\nPortia\nRandie\nRoseanna\nStefanie\nValencia\nWendi\nZoe\nAbby\nAvis\nBarbra\nBeckie\nBerta\nBettie\nCaron\nCharla\nCherri\nCoral\nCordelia\nDarleen\nDeborha\nDonita\nDoretta\nDorinda\nErnestina\nEvangeline\nFelice\nFrankie\nIna\nJacquline\nJoetta\nKari\nKathe\nKellie\nLawanda\nLetitia\nLissa\nLona\nLoree\nLoreen\nLory\nMadeleine\nMarcelle\nMargot\nMariann\nMaribeth\nMarietta\nMarleen\nMarti\nMicaela\nMinnie\nNan\nNicola\nPatrica\nRhoda\nRichard\nRoseanne\nSharee\nStacie\nSunny\nTamera\nTrisha\nAdriana\nAnnetta\nArdith\nAthena\nCarmella\nCarolynn\nCarrol\nCherry\nCollette\nDaisy\nDanna\nDaryl\nDavid\nDayna\nDebera\nDeedee\nDelfina\nElvia\nErika\nEvon\nFrancis\nGaylene\nHillary\nImelda\nJacque\nJann\nJoellen\nLatanya\nLouann\nMariana\nMavis\nMelodee\nMoira\nMollie\nMonique\nNancie\nNannette\nNorine\nPhoebe\nRichelle\nRoxane\nSheryle\nShirlee\nTaryn\nTeena\nTwila\nVal\nWinifred\nAllyson\nAlta\nAmalia\nAngel\nAngeline\nAntionette\nBeverlee\nCharline\nChrista\nDanelle\nDeeann\nDeidra\nDeidre\nDeloris\nDinah\nDolly\nEarline\nGary\nGinny\nHortencia\nJacquelynn\nJeanene\nJewel\nJimmie\nJuli\nJulianna\nKathlene\nKathyrn\nKirsten\nKrista\nKyle\nLawana\nLesa\nLeslye\nLili\nLindsey\nLise\nLourdes\nMarjory\nMaryjo\nMerrie\nMia\nNelda\nPaige\nPeggie\nRebeca\nReva\nRicki\nRonna\nSharen\nSharla\nShelli\nSherree\nStacia\nUrsula\nValentina\nVonda\nVonnie\nAlba\nAlene\nAlfreda\nAlva\nAmparo\nAntonette\nArcelia\nBecki\nBelen\nBlythe\nBrinda\nCarlotta\nCarma\nCarmela\nChere\nCherilyn\nCherrie\nClarissa\nCorina\nCorliss\nCory\nCruz\nCydney\nDalene\nDaria\nDayle\nDenese\nDennise\nElayne\nEleanore\nElia\nEmilie\nFrieda\nGeorgene\nGeorgetta\nHarriett\nJodee\nJoella\nJoette\nJonni\nJonnie\nJuliann\nKandis\nKarie\nKerrie\nKevin\nLanell\nLaraine\nLauna\nLesli\nLezlie\nLilly\nLizabeth\nLonna\nLoralee\nLorry\nLynell\nMargret\nMarisa\nMarita\nMarylin\nMatilda\nMattie\nMerilee\nMickie\nMillicent\nMina\nNedra\nNoelle\nRaylene\nRenita\nRhea\nRoni\nRosaline\nRoseann\nRoxana\nSerena\nSharyn\nShaun\nSheryll\nSigrid\nSuanne\nTana\nTari\nTena\nThea\nTheodora\nTommie\nTresa\nValeria\nVelia\nWinona\nWynona\nZelma\nAddie\nAdrianne\nAnthony\nArnita\nBernadine\nBernita\nBonny\nCamilla\nCarletta\nCathlene\nCharlesetta\nChrystal\nCleo\nCyndy\nDanita\nDarci\nDebhora\nDelaine\nDru\nDrusilla\nEarleen\nErmelinda\nEsmeralda\nFran\nGermaine\nGerri\nGerry\nGigi\nHortensia\nJanetta\nJoycelyn\nKarlene\nKenna\nKimberlie\nKittie\nLaurice\nLaurine\nLiane\nLibby\nLiza\nLoni\nLucie\nLucretia\nMamie\nMarianna\nMarisela\nMarlys\nMarna\nMeri\nMillie\nMirna\nNettie\nNickie\nNicolette\nReta\nRona\nRonnie\nRosalia\nRozanne\nSabina\nSharman\nSharol\nSheridan\nSherril\nShirleen\nSofia\nSophie\nSusann\nTamra\nTerryl\nTonette\nTracie\nTreva\nTrinidad\nValinda\nVirgie\nVivianne\nAdelaide\nAimee\nAlexandria\nAline\nAllene\nAlvina\nAlyson\nAndra\nAntoniette\nAutumn\nBennie\nBobette\nBonni\nBrigid\nCandee\nCandida\nCaprice\nCarroll\nCasandra\nCasey\nCharlette\nCharolette\nCherlyn\nCorby\nCristi\nCyd\nDahlia\nDarcel\nDava\nDebborah\nDeborrah\nDelphine\nDenyse\nDevin\nDevon\nDorian\nDorthy\nDottie\nElba\nElda\nElida\nEllyn\nElma\nElouise\nEssie\nEtta\nEugenie\nEvelia\nFannie\nGabrielle\nGeorgiann\nGeorgianna\nGerrie\nGlennda\nGuillermina\nIsabelle\nIva\nJacquelin\nJaime\nJames\nJaye\nJayme\nJeane\nJenine\nJoanie\nJohnette\nJorja\nJulene\nKara\nKaran\nKarleen\nKathryne\nKendra\nKit\nLarraine\nLaury\nLavon\nLavonna\nLeana\nLeatha\nLeesa\nLetha\nLisbeth\nLizbeth\nLorine\nLouella\nLynelle\nMable\nMadalyn\nManuela\nMarilou\nMaritza\nMartina\nMelodye\nMelva\nMichaela\nMinda\nMonika\nNadia\nNena\nPandora\nPenni\nPiper\nRayna\nRenay\nRenea\nRikki\nRomelia\nRosalina\nRosann\nRosita\nSadie\nSari\nShanna\nShanon\nShelby\nShirlene\nStarr\nSteven\nSuellen\nTani\nTanis\nTeddy\nTerre\nTeryl\nTheda\nVivien\nWannetta\nWendie\nWilliam\nZona\nAdella\nAdelle\nAlyse\nAnnabelle\nAnnemarie\nArdis\nArlette\nBelia\nBeryl\nBobby\nBronwyn\nCandi\nCandis\nCandise\nCari\nCarin\nCarmel\nCarolee\nCary\nCassie\nCathe\nChandra\nCharis\nChristal\nCinthia\nCleta\nClorinda\nCorine\nCornelia\nCosette\nCristine\nCristy\nDallas\nDarice\nDeette\nDenette\nDeniece\nDeon\nDevra\nDonald\nDonetta\nDorita\nDrucilla\nDusty\nEarnestine\nEdward\nElaina\nElana\nElinor\nEloisa\nEvie\nFlavia\nFredda\nGena\nGeorgeann\nGeorgi\nGlinda\nGoldie\nGreta\nGwenn\nGwyn\nHallie\nHelga\nIleen\nIona\nIsabell\nJacolyn\nJanalee\nJanina\nJanise\nJenene\nJesse\nJoani\nJoe\nJoel\nJoelle\nJoey\nJolynn\nJonette\nJulee\nJulienne\nJustine\nJyl\nKandice\nKarel\nKarren\nKathlyn\nKenneth\nLael\nLarita\nLauralee\nLavada\nLeisa\nLia\nLiana\nLilli\nLolita\nLottie\nLuci\nLuella\nLula\nLyla\nLyndi\nLynnell\nMadonna\nMarilynne\nMaris\nMarlyn\nMarquita\nMarty\nMeichele\nMichaele\nMiranda\nMissy\nNancee\nNidia\nNiki\nOdessa\nOdette\nOllie\nOna\nOpal\nPeggi\nPeri\nRaelene\nRafaela\nRandee\nRebecka\nRenata\nRenie\nReyna\nRicky\nRoselyn\nRoxan\nRoyce\nRuthann\nSelma\nSharlyn\nSharyl\nShaunna\nShawnee\nShayne\nSherrell\nSimone\nSoledad\nStar\nStarlet\nStefani\nStephenie\nSuzi\nTandy\nTania\nTeresita\nTeressa\nTomi\nValeri\nVelinda\nVerla\nVernice\nVernita\nVienna\nWende\nWillette\nWindy\nZelda\nDebra\nSusan\nLinda\nMary\nDeborah\nPatricia\nKaren\nCynthia\nNancy\nPamela\nKathleen\nBarbara\nSandra\nDonna\nCarol\nCheryl\nDiane\nSharon\nJanet\nDenise\nElizabeth\nTeresa\nRobin\nLaura\nLisa\nCatherine\nMargaret\nRebecca\nJanice\nBrenda\nKathy\nTheresa\nJulie\nLori\nDiana\nKatherine\nVictoria\nMaria\nPaula\nGloria\nDebbie\nKathryn\nJudy\nJudith\nLaurie\nCarolyn\nLeslie\nGail\nChristine\nValerie\nVicki\nTerri\nVirginia\nLynn\nMartha\nKim\nTerry\nMichelle\nAnn\nRose\nJoyce\nBeverly\nConnie\nCathy\nMarilyn\nShirley\nPeggy\nSuzanne\nCindy\nStephanie\nWendy\nJoan\nMichele\nBonnie\nYolanda\nSheila\nKimberly\nSherry\nRenee\nElaine\nJennifer\nRhonda\nBetty\nSally\nAnita\nVickie\nAnna\nRoberta\nSylvia\nDarlene\nJo\nJill\nJean\nAnne\nMarie\nAlice\nColleen\nJacqueline\nJane\nYvonne\nMelinda\nTina\nHelen\nRita\nFrances\nDorothy\nJoanne\nRuth\nEllen\nSheryl\nLorraine\nJeanne\nLoretta\nIrene\nDawn\nMaureen\nToni\nCarla\nChristina\nJan\nMarcia\nWanda\nTeri\nDolores\nRachel\nEileen\nNorma\nGayle\nCharlene\nMelissa\nCarmen\nClaudia\nLydia\nCharlotte\nHolly\nJulia\nMarsha\nPhyllis\nAngela\nMarla\nMelanie\nEvelyn\nMelody\nAndrea\nGina\nVivian\nDebora\nSue\nLynda\nEsther\nSarah\nMarlene\nDana\nJeanette\nMonica\nConstance\nLynne\nShelley\nAnnette\nRamona\nRegina\nJoy\nRosa\nDoris\nRoxanne\nDianne\nGlenda\nLouise\nGwendolyn\nVicky\nJoann\nHeidi\nJuanita\nLois\nSheri\nCathleen\nJeri\nSherri\nPenny\nLee\nMarianne\nArlene\nJanis\nJune\nBecky\nApril\nCecilia\nJackie\nEva\nRosemary\nJody\nJoni\nCheri\nAmy\nMarjorie\nPatti\nBeth\nJosephine\nLucy\nSherrie\nTracy\nCarole\nNina\nSheree\nAudrey\nRobyn\nBelinda\nCandace\nGuadalupe\nSara\nMarian\nLaurel\nVeronica\nRuby\nLynette\nCarrie\nGeraldine\nJana\nJamie\nJacquelyn\nShannon\nStella\nKelly\nAlicia\nDeanna\nEmily\nKerry\nDoreen\nSabrina\nGrace\nOlivia\nChristy\nDianna\nPauline\nTerrie\nJeannie\nKay\nRochelle\nTherese\nPriscilla\nDesiree\nJanine\nLillian\nLorna\nPatrice\nRosie\nAntoinette\nCherie\nLauren\nKristine\nIrma\nFrancine\nMona\nDarla\nJennie\nVanessa\nGeorgia\nLucille\nGale\nPaulette\nRosalie\nStacey\nNora\nAdrienne\nBertha\nKarin\nAlison\nEleanor\nKarla\nMargarita\nRonda\nMargie\nNadine\nSandy\nAna\nCandice\nDelores\nJanie\nJeannette\nJenny\nPatty\nShelly\nHeather\nSusie\nBobbie\nCelia\nIsabel\nLupe\nOlga\nVera\nElena\nJanette\nPatsy\nSilvia\nClaire\nCorinne\nJayne\nNaomi\nChris\nCaroline\nNanette\nLeticia\nMarta\nRene\nStacy\nCecelia\nGinger\nKimberley\nMarion\nTamara\nBeatrice\nDora\nJeanine\nClara\nLeah\nRosemarie\nAlma\nLorrie\nShawn\nTrudy\nMarcella\nBillie\nChristie\nEdith\nKristi\nDelia\nEdna\nEmma\nMaxine\nSuzan\nCandy\nMarguerite\nMolly\nPam\nYvette\nDena\nLucinda\nCeleste\nSonia\nBonita\nDenice\nFlorence\nLorie\nSusanne\nCrystal\nLora\nMarcy\nMarina\nBernice\nJessie\nAngelina\nDee\nGwen\nIda\nJeannine\nKathie\nTanya\nGretchen\nKatharine\nBlanca\nMadeline\nShari\nColette\nDona\nErin\nFaith\nJolene\nKristin\nLana\nMaryann\nBernadette\nBridget\nDale\nElisa\nRena\nRosanne\nLorene\nLynnette\nBetsy\nLeanne\nLuann\nMargo\nVerna\nJoanna\nKimberlee\nLyn\nNatalie\nAntonia\nRandi\nShelia\nAurora\nJanelle\nJessica\nLola\nMyra\nMyrna\nTracey\nAdele\nAnnie\nElsa\nMildred\nNanci\nRae\nWilma\nAngie\nEstella\nNellie\nNoreen\nTara\nCassandra\nHope\nLesley\nDarcy\nJodi\nKathrine\nMelodie\nPat\nPearl\nThelma\nAmelia\nCamille\nCheryle\nGay\nJerri\nKathi\nLeigh\nSondra\nSuzette\nValarie\nHelene\nMegan\nMerry\nPolly\nColeen\nRosalind\nSherrill\nAllison\nCathryn\nDella\nDixie\nHilda\nIris\nKristina\nLila\nMari\nDebby\nEve\nKristen\nLauri\nLily\nLou\nMiriam\nRoxann\nSaundra\nAva\nLaverne\nLuanne\nCora\nCorrine\nFaye\nGenevieve\nGladys\nHenrietta\nJohanna\nJulianne\nLea\nLorelei\nMindy\nSonja\nAmanda\nElla\nElva\nGeorgette\nGeri\nIngrid\nJocelyn\nKristie\nLenora\nMeredith\nSharron\nShauna\nTrina\nAlisa\nCaren\nDanielle\nElsie\nEthel\nGracie\nKari\nKristy\nLucia\nPenelope\nSonya\nCaryn\nDebbra\nHarriet\nHazel\nJeanie\nMichael\nNikki\nNita\nRaquel\nAileen\nAlberta\nAlexandra\nBobbi\nBonny\nCharmaine\nCristina\nDanette\nElvira\nEsperanza\nFrankie\nHilary\nJodie\nKaryn\nKatie\nKatrina\nMitzi\nRachelle\nArleen\nCarlene\nDiann\nElisabeth\nFelicia\nGeorgina\nKris\nLindy\nLuz\nMimi\nRosalinda\nTammy\nVikki\nViolet\nDayna\nDeana\nEugenia\nGayla\nGeneva\nKelley\nMarcie\nPamala\nRobbie\nSusana\nValorie\nAdela\nBette\nConsuelo\nElise\nErma\nFlora\nGertrude\nLaureen\nLeann\nLena\nLenore\nMelba\nSusanna\nVelma\nBeverley\nChristi\nClaudette\nDaphne\nErlinda\nErnestine\nKarol\nKerri\nLela\nLeona\nLeslee\nLilly\nLorri\nRonna\nTonya\nAgnes\nClarice\nDeirdre\nJanell\nJuana\nKaran\nLilia\nMara\nMercedes\nOfelia\nRobbin\nRosario\nRoxane\nTami\nTricia\nViola\nCathie\nCindi\nCorine\nDeidre\nDina\nGaye\nGilda\nInez\nJosie\nLoraine\nMadelyn\nMagdalena\nMarci\nMarilee\nNoel\nRhoda\nRowena\nAleta\nDeanne\nFrancesca\nGraciela\nIlene\nJaneen\nJanna\nJuliana\nLorena\nMelodee\nNicki\nNona\nRandy\nRoni\nRosalyn\nSherryl\nAlana\nAlexis\nDinah\nDolly\nEunice\nJann\nJosefina\nKaron\nKelli\nMarilynn\nRosanna\nRoxanna\nSocorro\nAmber\nBeatriz\nCatalina\nCathrine\nDebrah\nDorene\nElissa\nFreda\nJacque\nJudi\nKitty\nLaurene\nMaryanne\nMerri\nMonique\nPamella\nTeena\nTerese\nAda\nAllyson\nBambi\nBenita\nCharleen\nClare\nEloise\nErica\nEstela\nFelice\nGena\nGreta\nJoanie\nLavonne\nMay\nMercy\nNola\nAida\nCarolina\nCatharine\nCherryl\nDaisy\nDarleen\nDeann\nDebbi\nDeena\nElvia\nFay\nFrancis\nGeralyn\nHelena\nHerlinda\nJami\nKatheryn\nKirsten\nLeeann\nLita\nLiz\nLizabeth\nLourdes\nNicole\nRachael\nRobert\nRosetta\nSharlene\nShawna\nSherree\nSydney\nViki\nWillie\nAbigail\nBrooke\nCheryll\nCoral\nDawna\nDori\nDorothea\nErnestina\nGiselle\nGlenna\nJacklyn\nJanene\nLanette\nLawanda\nLeila\nLillie\nLise\nLonnie\nMalinda\nNan\nPatrica\nRebekah\nRoseann\nSallie\nSherie\nShirlee\nTaryn\nAdrianne\nAline\nBarbra\nCarleen\nCaron\nDavid\nDebi\nEvangelina\nHollie\nJacalyn\nKellie\nLani\nLauretta\nLesa\nLina\nLorinda\nMae\nMarylou\nMaura\nRichard\nSandi\nSerena\nValentina\nVelda\nAdeline\nAlyce\nArmida\nCandyce\nCinda\nDede\nEdwina\nIvy\nJerry\nJeryl\nJohnnie\nLadonna\nLatanya\nLeanna\nLoree\nLouisa\nLuisa\nMadeleine\nMartina\nMarva\nPetra\nReba\nRebeca\nRhea\nRosalina\nRosita\nSharyn\nSidney\nSophia\nStacie\nTonia\nWendi\nAvis\nCamilla\nCarlotta\nCarmel\nCherri\nCollette\nCristi\nDanita\nDanna\nDaria\nDaryl\nDayle\nDelilah\nDeloris\nEarlene\nFrancisca\nGabrielle\nIva\nJohn\nJuliann\nKarolyn\nKathlene\nKaye\nKendra\nKrista\nLesli\nLuana\nMaggie\nMarty\nNeva\nRoslyn\nRuthie\nSharen\nSherilyn\nTania\nTrudi\nUrsula\nVenus\nWinifred\nAlta\nAthena\nBianca\nCarey\nCarmela\nCary\nCaryl\nCathi\nCleo\nConcepcion\nCorina\nDanelle\nDonita\nDorinda\nElyse\nGerri\nGigi\nGinny\nJacki\nJacquline\nJenifer\nJosette\nKeri\nLeola\nLiane\nLidia\nLindsey\nLizbeth\nLoni\nMarianna\nMarisa\nMickey\nMicki\nMoira\nMyrtle\nNedra\nRaylene\nRonnie\nStarla\nTana\nUnknown\nVenita\nVickey\nZoe\nAlene\nAmalia\nAngelica\nAngelita\nAnnamarie\nBettie\nCara\nCarmelita\nCasey\nCassie\nCher\nCherry\nChristiane\nClarissa\nClarisse\nCory\nCyndi\nDani\nDeedee\nDenese\nErika\nEtta\nHortencia\nImelda\nIna\nIsabelle\nJames\nJaye\nJerilyn\nJoannie\nJodee\nJulianna\nJuliet\nJuliette\nKara\nKit\nKyle\nLeonor\nLetha\nLoreen\nMaricela\nMarisela\nMarti\nMattie\nMelva\nMerrilee\nMichaela\nMuriel\nNannette\nPaige\nPennie\nSanta\nSari\nSharyl\nSheryll\nSuzann\nTonie\nWinona\nAdriana\nAlexa\nAlyson\nAmparo\nAngel\nAntonette\nCandi\nCandis\nCarolynn\nCecile\nCelestine\nCharla\nChristal\nCorliss\nDebera\nDevon\nDru\nEstelle\nFern\nGaylene\nJaclyn\nJacquelynn\nJewel\nJewell\nJoette\nJoleen\nKate\nKathaleen\nKerrie\nKym\nLark\nLindsay\nLoren\nLucila\nMadonna\nMamie\nMargery\nMaribeth\nMarietta\nMarleen\nMarlys\nMaryjo\nMicaela\nMillie\nMollie\nNettie\nNorene\nOphelia\nRaelene\nRenita\nReta\nRosann\nRoseanna\nRoseanne\nRoselyn\nSheilah\nSimone\nStefanie\nSuzanna\nSybil\nTamra\nTari\nTena\nTeresita\nThea\nTwila\nVal\nValeria\nVelia\nVonnie\nWilla\nAletha\nAlthea\nAngelique\nAnnetta\nBennie\nBerta\nBessie\nBettina\nBlanche\nCari\nCarolee\nChandra\nCharline\nCookie\nCristine\nDelma\nDenita\nDonald\nDorian\nDottie\nEarline\nEden\nEliza\nFatima\nFelecia\nFlorine\nFonda\nFreida\nGabriela\nGeorgiana\nGlinda\nHannah\nJanel\nJannette\nJoellen\nJudie\nJustine\nKenneth\nKimberlie\nKimi\nLarhonda\nLaurette\nLavern\nLawana\nLeilani\nLetitia\nLinnea\nLonna\nLouella\nMargot\nMargret\nMatilda\nMeg\nMelonie\nNancie\nNelda\nNoelle\nNova\nRegan\nRomona\nRosalee\nRosalia\nRosalva\nRoxie\nRozanne\nShanna\nSherril\nSheryle\nSilvana\nSophie\nSuzie\nTia\nTommie\nTori\nTraci\nTreva\nTrinidad\nTrisha\nVeda\nAndria\nAngelia\nAngeline\nAurelia\nBabette\nBecki\nBeckie\nBelen\nBethany\nBeverlee\nBobette\nCathey\nCecily\nCelina\nCharles\nCharlesetta\nChrista\nCindee\nClaudine\nCorby\nCydney\nDara\nDarice\nDemetria\nEdythe\nElda\nElinor\nEnedina\nEvangeline\nFannie\nFawn\nFrancie\nFreddie\nFrieda\nGermaine\nGlynda\nHortensia\nJacquelin\nJaney\nJeanene\nJenine\nJimmie\nJolynn\nJonell\nKandace\nKandee\nKandy\nKarleen\nKarrie\nKathryne\nLatonya\nLeta\nLibby\nLinette\nLyla\nMariann\nMark\nMarlyn\nMelony\nMeri\nMerle\nMickie\nNadia\nNickie\nNicolette\nNorine\nOna\nPamila\nPattie\nPaul\nRandee\nRandie\nRaye\nRenea\nReva\nReyna\nRicki\nRoxana\nScheryl\nShelby\nShellie\nSofia\nSpring\nStar\nStephani\nSusann\nTonette\nTressa\nValery\nVienna\nVonda\nWendie\nZandra\nAbbie\nAbby\nAddie\nAdrian\nAlanna\nAlesia\nAllyn\nAlva\nAnamaria\nAntionette\nArcelia\nBridgette\nCameron\nCarin\nCathlene\nCindra\nCyndie\nDanice\nDann\nDarby\nDarcel\nDarci\nDarline\nDea\nDeborra\nDelphine\nDenee\nDeon\nDian\nDorcas\nDoretta\nDorthy\nEleanore\nElia\nErna\nEvalyn\nGayleen\nGeorgene\nGeorgianna\nGerry\nGisele\nGlynis\nGwyn\nHeide\nHollis\nJaime\nJanett\nJenell\nJere\nJolie\nJonna\nJonnie\nJose\nJovita\nJudyth\nJulee\nJuli\nKandice\nKathe\nKathlyn\nKathyrn\nKaty\nKevin\nLaure\nLaurine\nLaury\nLavina\nLeatha\nLezlie\nLianne\nLisbeth\nLiza\nLonda\nLucretia\nLula\nMabel\nMable\nMalia\nMariana\nMarlena\nMarya\nMaurine\nMechelle\nMelonee\nMillicent\nMinerva\nMonte\nOllie\nOra\nParis\nPenni\nPhillis\nPiper\nRafaela\nRayna\nRetha\nRobbi\nRoy\nRuthann\nSadie\nSalli\nSandee\nShaun\nShiela\nStarr\nTaffy\nTammie\nTeressa\nToby\nTracie\nTresa\nTrudie\nTyra\nValeri\nVena\nAdel\nAdelia\nAdelina\nAdelle\nAlix\nAnastasia\nAnthony\nArla\nArnetta\nAudra\nAutumn\nBari\nBelia\nBella\nBernadine\nBlair\nCalleen\nCallie\nCammy\nCarma\nCatheryn\nCharise\nCharisse\nCharmayne\nChere\nCherilyn\nCherlyn\nCherrie\nCordelia\nCoreen\nCori\nCorrinne\nCosette\nCourtney\nCraig\nCris\nCruz\nDamita\nDanni\nDarcey\nDarcie\nDarnell\nDavina\nDebroah\nDeeann\nDeette\nDelfina\nDelinda\nDennise\nDodie\nDollie\nDonnell\nDorie\nEarnestine\nEda\nElana\nEloisa\nEmilia\nEmilie\nEsmeralda\nEvie\nEvon\nFelicitas\nFlorita\nGeorgann\nGeorgeann\nGeorgeanne\nGeorgine\nGregoria\nGriselda\nGuillermina\nGwenda\nGwenn\nHallie\nHattie\nHelaine\nIlona\nImogene\nIra\nIsabell\nJanise\nJanyce\nJayme\nJeana\nJeannetta\nJenise\nJerrie\nJoe\nJoeann\nJoella\nJohnetta\nJonette\nJosephina\nJoye\nKandis\nKarlene\nKittie\nLaraine\nLatricia\nLaurinda\nLeesa\nLeonora\nLettie\nLiana\nLindi\nLizanne\nLolita\nLoralee\nLorry\nLory\nLouann\nLuanna\nLupita\nLura\nLynelle\nMalea\nMarcela\nMardi\nMaren\nMarna\nMarylin\nMaryrose\nMaudie\nMavis\nMelisa\nMerilee\nMerlene\nMerrie\nMichal\nMina\nMinnie\nMirna\nMissy\nMisty\nNancee\nNena\nNicola\nNoemi\nNyla\nOpal\nPeggie\nPrudence\nRacheal\nRegena\nRenae\nRenetta\nRennie\nRomelia\nRonald\nRonnah\nRoseana\nSanna\nSelina\nSharleen\nSherian\nSherrell\nSindy\nStefani\nStephenie\nSuzi\nSydnie\nSynthia\nTani\nTeddi\nTerilyn\nTerisa\nTerra\nTessie\nTheodora\nTiffany\nTillie\nTiny\nValli\nVangie\nVeta\nWende\nZenobia\nSusan\nDebra\nLinda\nMary\nDeborah\nKaren\nPatricia\nCynthia\nPamela\nNancy\nKathleen\nBarbara\nSandra\nDonna\nSharon\nCheryl\nCarol\nDiane\nDenise\nLisa\nJanet\nElizabeth\nTeresa\nLori\nLaura\nRobin\nCatherine\nJulie\nKathy\nRebecca\nMargaret\nJanice\nDiana\nDebbie\nTheresa\nKim\nCindy\nBrenda\nMaria\nLaurie\nKatherine\nVictoria\nKimberly\nKathryn\nValerie\nMichelle\nJudy\nTerri\nPaula\nCathy\nMartha\nChristine\nLeslie\nVicki\nLynn\nGloria\nGail\nCarolyn\nRose\nAnn\nRhonda\nTerry\nJudith\nTina\nStephanie\nJoyce\nVirginia\nSherry\nJennifer\nBeverly\nSuzanne\nPeggy\nConnie\nShirley\nAnita\nBonnie\nRenee\nYolanda\nJoan\nWendy\nVickie\nAnna\nMichele\nSylvia\nRoberta\nMarilyn\nDarlene\nSheila\nElaine\nJane\nJill\nSally\nBetty\nYvonne\nJean\nDorothy\nAlice\nAnnette\nJacqueline\nSheryl\nJo\nRuth\nColleen\nAnne\nRita\nLorraine\nHelen\nDawn\nMelinda\nMarie\nJan\nEllen\nJoanne\nFrances\nJeanne\nMaureen\nIrene\nAndrea\nPhyllis\nAngela\nDana\nToni\nLoretta\nChristina\nNorma\nCarmen\nTeri\nJulia\nCarla\nMonica\nWanda\nEileen\nGayle\nMelody\nJanis\nCharlene\nJeanette\nDebora\nEvelyn\nSue\nDolores\nGina\nSheri\nLydia\nJoy\nMarcia\nMelanie\nMelissa\nTracy\nEsther\nCharlotte\nVivian\nHolly\nRegina\nRachel\nShelley\nPenny\nSarah\nLynne\nRoxanne\nJoann\nClaudia\nLynda\nJuanita\nMarlene\nCarrie\nConstance\nSherri\nArlene\nBecky\nDianne\nRosa\nDoreen\nRamona\nLouise\nMarsha\nAmy\nRosemary\nHeidi\nMarla\nCecilia\nEva\nPatti\nVicky\nDarla\nGrace\nJeri\nJody\nCathleen\nApril\nDoris\nJackie\nGlenda\nRobyn\nBeth\nGuadalupe\nGwendolyn\nAudrey\nJoni\nLois\nJosephine\nAlicia\nBelinda\nDeanna\nMarianne\nMarjorie\nCheri\nLaurel\nGeraldine\nJeannie\nVeronica\nKelly\nSherrie\nJune\nEmily\nPauline\nLee\nCherie\nCarole\nKerry\nNina\nSheree\nLynette\nSara\nMona\nCandace\nDianna\nJana\nRuby\nLillian\nTerrie\nRene\nCandy\nKarin\nLucy\nNora\nDora\nTherese\nJamie\nShannon\nKay\nLeticia\nMargie\nPriscilla\nStella\nShelly\nAna\nChristy\nMarian\nSandy\nJennie\nRosie\nSabrina\nVanessa\nAntoinette\nGeorgia\nSusie\nIrma\nJanine\nStacey\nRochelle\nBeatrice\nEleanor\nNanette\nRosalie\nAlison\nDelores\nHeather\nJeannette\nNadine\nDesiree\nLauren\nPam\nTanya\nCandice\nFrancine\nKristi\nOlga\nTamara\nJacquelyn\nKimberley\nEdith\nEdna\nKarla\nOlivia\nIsabel\nStacy\nLucinda\nBertha\nErin\nMargarita\nAlma\nJanie\nLorna\nLorrie\nVera\nCorinne\nDelia\nAdrienne\nCeleste\nGinger\nNatalie\nCecelia\nPatrice\nShawn\nGale\nRonda\nShari\nClaire\nJayne\nKristine\nCelia\nJanette\nJenny\nLorie\nPatty\nChris\nMarta\nJeanine\nClara\nLora\nPaulette\nRosemarie\nBillie\nBobbie\nLucille\nBernice\nCaroline\nMildred\nTracey\nGretchen\nKristin\nLupe\nJodi\nSilvia\nCrystal\nDena\nYvette\nJessie\nEstella\nNaomi\nSusanne\nMarion\nPatsy\nElena\nTrudy\nAntonia\nJeannine\nMaryann\nAnnie\nCassandra\nElsa\nGwen\nJessica\nKathie\nAllison\nDale\nMiriam\nRosanne\nDenice\nKathi\nKimberlee\nAngelina\nBernadette\nChristie\nDee\nJolene\nMarcella\nAngie\nFlorence\nKristina\nKristy\nMadeline\nMargo\nMarguerite\nBridget\nMarisa\nRosalinda\nGay\nIda\nJerri\nMelodie\nCathryn\nDella\nVerna\nBonita\nCaren\nLynnette\nMyra\nAmelia\nJoanna\nKatharine\nLeanne\nMolly\nBetsy\nEmma\nLauri\nMari\nSonia\nSuzan\nAmanda\nDarcy\nMarina\nRosalind\nCamille\nFelicia\nPearl\nPenelope\nPolly\nDanielle\nHope\nJocelyn\nLorri\nLyn\nRandi\nShelia\nSuzette\nThelma\nColette\nKatrina\nKristen\nLeah\nMaxine\nRachelle\nRobbin\nConsuelo\nDebby\nLana\nMyrna\nNellie\nRae\nSonja\nCaryn\nDixie\nFrancesca\nJeanie\nKathrine\nWilma\nDaphne\nIngrid\nLaureen\nLenora\nErnestine\nFaith\nGeorgina\nJanelle\nKelley\nLadonna\nMegan\nTammy\nDebbra\nJodie\nLavonne\nLou\nMarcy\nNoreen\nRoxanna\nViola\nAdele\nArmida\nAurora\nBobbi\nColeen\nDina\nErlinda\nHilda\nLeigh\nLesley\nLorene\nMindy\nSusana\nTonya\nAlberta\nAva\nChristi\nCindi\nCorrine\nDanette\nDona\nEve\nSherie\nDeana\nElsie\nGeri\nJanell\nKari\nKaryn\nLeann\nLeona\nLola\nTara\nCharmaine\nElisa\nElise\nKris\nMagdalena\nNicole\nRena\nSherrill\nTrina\nBlanca\nDeanne\nIris\nLani\nLila\nLuanne\nMitzi\nSonya\nCheryle\nDeena\nDeirdre\nDorene\nElvira\nFaye\nGenevieve\nHilary\nJulianne\nLena\nSharlene\nAlisa\nCarlene\nCora\nEloise\nEsperanza\nHenrietta\nJohanna\nNanci\nNita\nRaquel\nRoxann\nTami\nGladys\nGraciela\nKerri\nKristie\nLaverne\nLucia\nPat\nRosanna\nElla\nGeorgette\nHelene\nJanna\nJuliana\nLuann\nMercedes\nPamala\nRobbie\nSusanna\nValarie\nCarey\nCathie\nDorinda\nGracie\nMarcie\nMeredith\nMerry\nShauna\nValorie\nVelma\nVikki\nDebi\nGayla\nJuli\nKatie\nAlexis\nCathrine\nElisabeth\nHarriet\nKatheryn\nLesa\nMay\nSondra\nTerese\nVickey\nDarleen\nJerilyn\nJosie\nKaye\nLilia\nLily\nLourdes\nMelba\nNikki\nNona\nRosario\nShawna\nSocorro\nTonia\nViolet\nArleen\nBeverley\nDayna\nDinah\nDolly\nErica\nFay\nFlora\nInez\nJudi\nKandy\nLuz\nMalinda\nNannette\nRoslyn\nSherryl\nTricia\nAleta\nAlexandra\nBambi\nCarolina\nClaudette\nEthel\nGilda\nGlenna\nIlene\nKeri\nLeeann\nLenore\nLetha\nLorelei\nMarci\nSaundra\nSharron\nWendi\nAbigail\nAileen\nCarmela\nDani\nJaneen\nKirsten\nKitty\nLatanya\nLea\nPetra\nRosalyn\nRoxane\nShellie\nStacie\nAdeline\nAida\nBette\nCandi\nCorina\nCristina\nDeidre\nDian\nEmilia\nGaye\nGeneva\nGreta\nHelena\nJacque\nJerry\nKellie\nLiane\nLillie\nLorena\nMarti\nMarty\nRebekah\nSandi\nAdela\nAgnes\nCara\nClarice\nDeedee\nDiann\nElva\nFreda\nGlynis\nIvy\nKaran\nKaron\nKelli\nLilly\nLiz\nLoraine\nMarilee\nMarilynn\nNola\nOfelia\nPatrica\nRossana\nValencia\nWillie\nAngelita\nBenita\nBettina\nBonny\nCandis\nCari\nCaron\nCary\nCathi\nCherry\nChrista\nCorine\nDori\nEstela\nEtta\nFrancisca\nGigi\nGisele\nJacki\nJanel\nJann\nKandi\nLeesa\nLouisa\nMaura\nMelodee\nMelva\nRachael\nSophia\nTeena\nTracie\nTwila\nViki\nYolonda\nAmber\nAngelica\nAvis\nCarmelita\nCasey\nCatharine\nClare\nDanita\nDara\nDawna\nDebrah\nDelilah\nDorothea\nErika\nGena\nJewel\nJoanie\nJosefina\nKrista\nLeila\nLindy\nPennie\nRandy\nReba\nRenita\nRobert\nRoni\nRoseann\nRuthie\nSallie\nSydney\nUnknown\nBeatriz\nBlanche\nCaryl\nCoral\nDanna\nElvia\nEugenia\nEvangelina\nFrankie\nHazel\nHollie\nJacklyn\nJacquline\nJami\nKarrie\nKathlene\nLawanda\nLeilani\nLela\nLeora\nLindsay\nLise\nLita\nLu\nMichael\nMollie\nRenae\nStarla\nSuzanna\nTana\nTommie\nUrsula\nVal\nWinifred\nAda\nAdelina\nAlyce\nCarin\nCharleen\nCollette\nDebbi\nEdwina\nErma\nGuillermina\nHillary\nJohn\nJuana\nLaurene\nLizabeth\nLoree\nMargery\nMargret\nMimi\nNancie\nNoel\nRhoda\nTrudi\nWilliam\nAdriana\nAlthea\nAthena\nCharla\nDavid\nDeann\nHortencia\nJames\nJannette\nJeanna\nKarol\nKate\nLauretta\nLezlie\nLidia\nLindsey\nLuisa\nMadeleine\nManuela\nMara\nMaryanne\nMoira\nMuriel\nNedra\nNettie\nPaige\nPamella\nRaylene\nRosetta\nRoxie\nSharyn\nSheena\nSuzie\nAlana\nAllyson\nBessie\nCamilla\nCarleen\nCatalina\nDeborha\nDeeann\nFern\nGeralyn\nGerri\nGinny\nGiselle\nJaye\nJenifer\nJolie\nJonnie\nJulee\nKaty\nLeslee\nLoreen\nLorinda\nMarva\nMaryellen\nMattie\nNeva\nNicolette\nPeggie\nReva\nSharen\nSheryll\nSofia\nTraci\nTrisha\nTwyla\nValentina\nAletha\nBrooke\nCarolynn\nCecile\nCheryll\nCristy\nDebera\nDelfina\nEarlene\nElyse\nEunice\nFrancis\nFrieda\nGertrude\nJaime\nJayme\nJoe\nJohnnie\nJoycelyn\nJuliet\nKendra\nLinnea\nLorretta\nLuana\nMae\nMartina\nMarylou\nMickey\nNorene\nRonna\nSheril\nTobi\nVelda\nVenita\nVenus\nAbbie\nAdrianne\nAlanna\nAlexandria\nAnnetta\nAntonette\nArline\nAutumn\nBeckie\nBeryl\nBrinda\nCherri\nCoreen\nDeloris\nDennise\nDionne\nErnestina\nEvangeline\nFelecia\nGeorgiana\nJanene\nJewell\nJonna\nJuliann\nLanette\nLinn\nLissa\nLoni\nLoren\nMandy\nMaren\nMariann\nMarna\nMatilda\nMeri\nMerri\nMerrilee\nMickie\nMillicent\nMina\nMinerva\nMonique\nMyrtle\nOphelia\nRhea\nSarita\nSharla\nSheryle\nShirlee\nTena\nTeressa\nWende\nWendie\nAdrian\nAmalia\nAngel\nAurelia\nBelia\nBrigid\nCandyce\nCaprice\nCarmel\nCherryl\nCinda\nCindie\nCinthia\nCydney\nCyndee\nDanelle\nDarcie\nDaria\nDede\nDeon\nDonald\nEdward\nElba\nElia\nEster\nHarriett\nIsabelle\nJani\nJerrie\nJeryl\nJoella\nJudie\nKandice\nKara\nKarleen\nKarlene\nKathlyn\nLaurette\nLaurinda\nLeta\nLetitia\nLianne\nLibby\nLina\nMabel\nMadonna\nMaggie\nMalia\nMark\nMartine\nMelodye\nMerrie\nNoelle\nPattie\nRaelene\nRichard\nRikki\nRonald\nRosalia\nRoxana\nSelina\nSerena\nSherree\nSherril\nSophie\nTerrea\nToby\nTonie\nVeda\nWinnie\nZoe\nAlane\nAlfreda\nBabette\nBernadine\nBerta\nCarolee\nCarroll\nCassie\nCharisse\nCindee\nCindra\nCorinna\nDarline\nDarnell\nDaryl\nDenese\nDollie\nElda\nEvon\nFran\nGabrielle\nGeorgene\nGlendora\nIna\nIsabell\nJohnna\nJovita\nKarie\nKevin\nKimber\nKimi\nLarry\nLeanna\nLeonor\nLesli\nLinette\nLonnie\nLyla\nLynell\nMadelyn\nMamie\nMargot\nMarguerita\nMaricela\nMarietta\nMarlys\nMicki\nMillie\nMinnie\nNan\nRafaela\nRebeca\nRonni\nRosalba\nRosana\nRosaura\nRowena\nSelma\nSharie\nSherilyn\nSidney\nSindy\nSteven\nSusann\nSuzann\nSuzy\nTamera\nTari\nTawny\nThea\nTresa\nTreva\nValeri\nWinona\nZelda\nAlejandra\nAlene\nAlida\nAline\nAlvina\nAnastasia\nAnnamarie\nArla\nBobby\nCarlota\nCarmella\nCarrol\nCharline\nChere\nCherilyn\nCherlyn\nCherrie\nClarissa\nCornelia\nCorrina\nCristi\nCyndi\nDayle\nDebborah\nDebie\nDelena\nDorian\nDorthy\nDru\nEdythe\nEvette\nFannie\nFlavia\nFrancene\nFreddie\nGaylene\nGeorganne\nGeorgie\nGlinda\nHolli\nJacalyn\nJacklynn\nJaclyn\nJacquelyne\nJanetta\nJaniece\nJeana\nJoelle\nJoellen\nJoi\nJuliette\nJustine\nKarren\nKathey\nKenna\nLaraine\nLarita\nLavonda\nLia\nLili\nLiza\nLolita\nLonna\nLuanna\nLucila\nLucile\nLura\nLynelle\nMariana\nMarianna\nMaribeth\nMarisela\nMarita\nMarleen\nMaurine\nMeg\nMercy\nMichaela\nMisty\nNelda\nNicki\nOleta\nRandee\nReta\nRicki\nRisa\nRosalee\nRoseanna\nRoseanne\nSharol\nShelli\nShirlene\nSoledad\nStar\nStephani\nTamra\nTania\nTerre\nTerresa\nTheodora\nTonette\nTori\nTrinidad\nVelia\nVernita\nVonda\nYasmin\nZandra\nZina\nAbby\nAdell\nAdelle\nAdriene\nAmparo\nAngelia\nAntionette\nArcelia\nBernita\nBethany\nBettye\nBlair\nBrandi\nBunny\nCarie\nCarlotta\nCatheryn\nCecily\nCharles\nCheree\nChristiane\nChrystal\nClaudine\nCleo\nCorliss\nCory\nCris\nCristie\nCruz\nCyndie\nDaisy\nDalene\nDanell\nDarcel\nDemetria\nDeniece\nDenyse\nDevon\nDorie\nDorine\nEffie\nEmilie\nEnedina\nErmelinda\nEstelle\nEvonne\nFelice\nFrancie\nGaile\nGarnet\nGeorgeanne\nGeorgianna\nGwenn\nHannah\nHerlinda\nHortensia\nIlona\nImelda\nIsela\nJacquelin\nJeni\nJenise\nJere\nJerilynn\nJodene\nJoleen\nJolyn\nJolynn\nJonni\nJulianna\nJulienne\nKathaleen\nKatherina\nKathryne\nKenneth\nKerrie\nKimberle\nKimberli\nKit\nKym\nLacey\nLajuana\nLavon\nLawana\nLenda\nLesia\nLesly\nLiana\nLonda\nLory\nLottie\nLucretia\nLula\nMachelle\nManuel\nMarijo\nMarjory\nMaryjo\nMavis\nMelisa\nMerilee\nMerle\nMerrily\nMichel\nMiki\nMiranda\nNatalia\nNelly\nNena\nNickie\nNicky\nNila\nOpal\nOra\nOralia\nPage\nPenney\nPenni\nPhilomena\nRacheal\nRenata\nRenda\nRenea\nRise\nRobbi\nRoma\nRonnie\nRosalva\nSabra\nSandie\nSharilyn\nSharman\nSharyl\nSherlyn\nSheron\nShiela\nStephen\nStephenie\nSusette\nTeddi\nTonja\nVada\nValeria\nVonnie\nAdelita\nAdella\nAlta\nAlyson\nAndree\nAndria\nAngelique\nAnthony\nAraceli\nAugusta\nBarbra\nBetti\nBettie\nBev\nBeverlee\nBobette\nBridgett\nBrooks\nCammie\nCandie\nCarlyn\nCarri\nCathey\nCenthia\nChandra\nCharlette\nCharolette\nCheryal\nChristen\nChristopher\nConcepcion\nConi\nConni\nCorrie\nCorrinne\nCourtney\nDannette\nDarby\nDarcey\nDavida\nDawne\nDeboraha\nDelene\nDelphine\nDenita\nDennis\nDonette\nDoni\nDorcas\nDoree\nDory\nDottie\nEdie\nElaina\nElayne\nElissa\nElma\nEloisa\nEnriqueta\nErlene\nEugenie\nEula\nEvie\nFawn\nFelipa\nFreida\nGabriela\nGabriella\nGaynell\nGeorge\nGermaine\nGerry\nGuadelupe\nGwenda\nGwynne\nHallie\nHaydee\nHellen\nHerminia\nIla\nIva\nJacqulyn\nJaneth\nJanise\nJannie\nJanyce\nJasmine\nJeanene\nJeani\nJina\nJoannie\nJodee\nJoline\nJonell\nJose\nJoye\nJulene\nJunie\nJustina\nKandee\nKarey\nKarlyn\nKarolyn\nKary\nKathe\nKathern\nKelle\nKendis\nKimberlie\nKoreen\nKyle\nLanora\nLarraine\nLaure\nLauree\nLaury\nLeatrice\nLeisa\nLennie\nLeola\nLeonora\nLindi\nLisbeth\nLizbeth\nLona\nLouanne\nLtanya\nLynetta\nLynnell\nMaralee\nMarcel\nMardi\nMarilou\nMarily\nMaritza\nMarlena\nMarlinda\nMarlyn\nMelani\nMelony\nMerrilyn\nMia\nMicaela\nMichal\nMidge\nMonika\nNadia\nNancey\nNatasha\nNorine\nOllie\nPandora\nPetrina\nRandie\nRegan\nRegena\nReyna\nRichelle\nRickie\nRobbyn\nRobynn\nRocio\nRona\nRosann\nRosita\nSandee\nSanta\nSari\nShan\nShaun\nShawnee\nSheilah\nShelby\nStacia\nStefani\nStefanie\nSunday\nTammie\nTani\nTaryn\nTenley\nTerra\nThais\nThomas\nTonnie\nTrena\nTrish\nTrudie\nTyra\nValery\nVena\nVenetia\nVienna\nVita\nSusan\nLinda\nMary\nCynthia\nDebra\nKaren\nDeborah\nPatricia\nNancy\nPamela\nKathleen\nCheryl\nJulie\nSandra\nBarbara\nCindy\nCarol\nLisa\nDiane\nSharon\nDonna\nLaura\nElizabeth\nDenise\nLori\nJanet\nDebbie\nTeresa\nKathy\nBrenda\nRobin\nKim\nDiana\nCatherine\nTheresa\nRebecca\nMargaret\nMaria\nLeslie\nLaurie\nKimberly\nTerri\nJanice\nCarolyn\nMichelle\nJudy\nChristine\nCathy\nValerie\nVicki\nVictoria\nPaula\nKathryn\nGloria\nKatherine\nJennifer\nMartha\nVirginia\nAnn\nLynn\nRhonda\nGail\nTina\nTerry\nJoyce\nRose\nDarlene\nConnie\nSherry\nAnnette\nStephanie\nJudith\nAnna\nSylvia\nWendy\nBonnie\nYolanda\nAnita\nSuzanne\nJoan\nShirley\nPeggy\nBeverly\nMichele\nVickie\nRenee\nJill\nRoberta\nAnne\nMarie\nYvonne\nBetty\nElaine\nColleen\nSheila\nSheryl\nLorraine\nRuth\nJean\nSally\nTammy\nRita\nJacqueline\nJane\nMaureen\nHelen\nMarilyn\nDawn\nChristina\nJoanne\nDorothy\nMelinda\nDana\nFrances\nEllen\nJeanne\nAngela\nLoretta\nAlice\nSue\nTeri\nJo\nIrene\nMonica\nAndrea\nCarla\nJan\nKelly\nJulia\nTracy\nPhyllis\nWanda\nCarmen\nCarrie\nBecky\nJeanette\nRachel\nToni\nGina\nNorma\nMarianne\nEileen\nSheri\nMelody\nRegina\nCharlene\nTamara\nVivian\nSherri\nHeidi\nLydia\nMelissa\nDolores\nDebora\nLynne\nRamona\nEvelyn\nHolly\nShelley\nEsther\nGayle\nJody\nJoy\nMelanie\nCharlotte\nSandy\nPenny\nAmy\nBeth\nDianne\nErin\nRosa\nSarah\nPatti\nRosemary\nJackie\nVicky\nPam\nDeanna\nLynda\nGwendolyn\nMarlene\nJuanita\nMarcia\nCecilia\nClaudia\nGrace\nGlenda\nDoris\nVeronica\nDoreen\nRoxanne\nDianna\nIrma\nDarla\nLouise\nSherrie\nArlene\nJeri\nAlicia\nApril\nJeannie\nAudrey\nConstance\nMarla\nTami\nEva\nBelinda\nJoann\nJanis\nPatty\nCarole\nGuadalupe\nCheri\nChristy\nRobyn\nShelly\nJosephine\nMona\nJoni\nLaurel\nStacy\nLucy\nMarian\nTanya\nCathleen\nMarsha\nLauren\nCaroline\nJune\nKerry\nPauline\nSara\nStacey\nShannon\nKay\nLois\nJenny\nLee\nTracey\nDora\nJamie\nLillian\nTerrie\nChris\nLynette\nLorna\nJennie\nLeticia\nNina\nJodi\nRonda\nKimberley\nRochelle\nStella\nRosie\nAna\nGeraldine\nCandace\nJana\nCrystal\nJanine\nMargie\nDelia\nMarjorie\nTherese\nVanessa\nEmily\nLorrie\nPriscilla\nRuby\nHeather\nKarla\nEleanor\nSusie\nGale\nGeorgia\nKarin\nShawn\nNadine\nOlivia\nLucinda\nShari\nLupe\nNora\nAntoinette\nDelores\nAlison\nBeatrice\nBertha\nClaire\nJeannette\nMargarita\nNatalie\nIsabel\nAlma\nCandy\nCorinne\nRosemarie\nSabrina\nRosalie\nPaulette\nCherie\nNanette\nMaryann\nJayne\nYvette\nAdrienne\nPatrice\nRene\nSonia\nKristi\nEdith\nLora\nElena\nJanette\nJanie\nMarta\nGinger\nJacquelyn\nLauri\nLorie\nJeanine\nOlga\nSheree\nClara\nLucille\nPatsy\nAmanda\nGay\nSusanne\nAngie\nCandice\nCeleste\nCelia\nChristie\nDesiree\nFrancine\nKristin\nJessie\nNaomi\nSilvia\nBobbie\nTrina\nBetsy\nColette\nJanelle\nBernadette\nCindi\nDebi\nElsa\nLeah\nCecelia\nDebby\nDena\nIda\nJoanna\nKelli\nKristine\nLesley\nCaren\nCassandra\nEdna\nKristina\nMarion\nVera\nLorri\nMarina\nDenice\nGwen\nBernice\nJessica\nKathi\nMarguerite\nMarcella\nAllison\nFelicia\nMari\nMildred\nMolly\nTrudy\nCamille\nJerri\nMargo\nRosalind\nSonja\nAnnie\nKari\nAngelina\nBridget\nLiz\nDee\nBillie\nMiriam\nBlanca\nBobbi\nKelley\nTammie\nEmma\nGenevieve\nJeannine\nJolene\nKris\nRosanne\nWilma\nFlorence\nKimberlee\nLynnette\nSuzan\nDanette\nGretchen\nJodie\nLeigh\nPat\nElisa\nLeona\nKathie\nLeann\nLyn\nRena\nSusana\nDeanne\nEsperanza\nJeanie\nKatharine\nLana\nSuzette\nAdele\nDale\nGraciela\nMarcy\nTonya\nGeri\nJocelyn\nJulianne\nKathrine\nMyra\nRandi\nSusanna\nDeana\nDella\nHilda\nJohanna\nKristy\nLena\nMyrna\nRobbin\nRosanna\nCathryn\nChristi\nIris\nKatie\nLuann\nNellie\nPearl\nAmelia\nCora\nGeneva\nRobbie\nTricia\nAlisa\nArleen\nBonita\nColeen\nLenora\nLorene\nVerna\nDarcy\nDebbi\nDorene\nFaye\nIngrid\nJanell\nKerri\nLeanne\nMelodie\nNikki\nRae\nShauna\nThelma\nTraci\nTracie\nVikki\nAurora\nCarlene\nCaryn\nCorrine\nDeena\nKatrina\nKellie\nLola\nMadeline\nMaxine\nMegan\nRachelle\nShelia\nAntonia\nDeirdre\nElvira\nEstella\nEugenia\nEve\nHope\nSocorro\nDawna\nRaquel\nTamra\nCharmaine\nFaith\nGlenna\nLorena\nLuanne\nSharron\nTara\nVickey\nAileen\nDeann\nDebbra\nDina\nErica\nGladys\nLaverne\nLenore\nPenelope\nRosalinda\nValorie\nAva\nBambi\nConsuelo\nElva\nEstela\nFlora\nJuli\nKristen\nKristie\nLucia\nMindy\nSandi\nViola\nHazel\nHilary\nIlene\nJami\nLea\nMarcie\nMitzi\nValarie\nCandi\nCathie\nJosie\nLily\nLuz\nSherrill\nClaudette\nDanita\nDixie\nDona\nDori\nElla\nFrankie\nJenifer\nLadonna\nMagdalena\nSuzanna\nAlberta\nBernadine\nCheryle\nDanielle\nDayna\nDorinda\nGeorgette\nHarriet\nHelena\nHelene\nHenrietta\nJanna\nJosefina\nKandy\nKendra\nLani\nLila\nLorinda\nMerry\nPolly\nRoxann\nSondra\nTerese\nCorina\nDeedee\nEloise\nErlinda\nGayla\nGracie\nGreta\nJuliana\nLatanya\nLeeann\nNoreen\nPamala\nPetra\nSaundra\nWendi\nAda\nCari\nDaphne\nElisabeth\nKarol\nKaryn\nLaureen\nLeanna\nLesa\nMaura\nNicole\nSherie\nStacie\nAgnes\nArmida\nBette\nCyndi\nDani\nDiann\nElise\nElsie\nErnestine\nEthel\nEvangelina\nInez\nJudi\nKitty\nLilia\nMalinda\nMarilee\nMelba\nMonique\nNanci\nNannette\nNita\nRebekah\nRenae\nVelma\nAlexandra\nAlexis\nAmber\nClare\nJuana\nLou\nMarci\nMarty\nMercedes\nMeredith\nMichael\nOfelia\nRobert\nSophia\nAida\nAlthea\nAnnamarie\nBeverley\nCathi\nJoanie\nKaty\nLindy\nLoraine\nMaryanne\nRaylene\nReba\nRoxane\nSallie\nShawna\nTammi\nAbigail\nAdela\nAngelica\nCara\nCarin\nCyndy\nElvia\nGabrielle\nGeorgina\nGinny\nLavonne\nLeisa\nLesli\nLoree\nManuela\nMarisa\nMarylou\nPattie\nRuthie\nSonya\nTamera\nTwila\nYolonda\nBeatriz\nCarolina\nClarice\nCollette\nDolly\nEdwina\nErnestina\nFrancisca\nGerri\nGisele\nJaneen\nJannette\nJerry\nKeri\nMariann\nNona\nViolet\nCarleen\nCarmelita\nCatalina\nCathrine\nCristina\nDebrah\nDeidre\nDinah\nJuliet\nLeila\nLeilani\nLeslee\nLorelei\nMarti\nMarva\nMelodee\nMimi\nNeva\nRenita\nRhoda\nRonna\nRosalia\nRoseann\nRoslyn\nSharyl\nShiela\nStarla\nAlyce\nAngelita\nAntionette\nBeckie\nBenita\nKrista\nLawana\nLilly\nLourdes\nMara\nRosario\nSuzie\nTana\nTonia\nTrena\nAbbie\nAmalia\nBettina\nCaryl\nClarissa\nDarleen\nErma\nEunice\nFrancesca\nGabriela\nGena\nGeralyn\nKate\nKaye\nKirsten\nLiza\nMeg\nMercy\nMinerva\nMuriel\nNelda\nRachael\nSerena\nSharlene\nSherryl\nWinifred\nCarey\nCaron\nCherri\nDeborha\nFay\nFelecia\nGilda\nIvy\nJames\nJann\nJayme\nJerilyn\nKarrie\nLauretta\nLeta\nLindsey\nLise\nLonnie\nMadeleine\nMandy\nMay\nNoel\nNola\nPennie\nRebeca\nRoxanna\nSheena\nSindy\nSydney\nValentina\nVenus\nAdriana\nAdrianne\nAnastasia\nCecile\nCindie\nCoral\nCorine\nDanna\nErika\nFreda\nGaylene\nGerry\nGertrude\nJanene\nJoleen\nJulianna\nLanette\nLawanda\nLela\nLia\nLillie\nLita\nMerri\nNancie\nNicki\nRosalyn\nShellie\nTena\nZoe\nAntonette\nCarmella\nCarolynn\nCatharine\nCharleen\nCheryll\nCinthia\nCory\nDavid\nDelilah\nDeloris\nDonita\nEliza\nEvangeline\nEvonne\nGaye\nJacklyn\nJanel\nJerrie\nJewell\nKarolyn\nKaron\nKatheryn\nKathyrn\nKym\nLaurene\nLezlie\nLona\nLonna\nMadelyn\nMadonna\nMarilynn\nMarlena\nMillie\nMiranda\nNedra\nPamella\nRhea\nRosita\nSharla\nSherilyn\nSofia\nWilliam\nWillie\nAdrian\nAllyson\nAvis\nBecki\nBessie\nCameron\nCharisse\nDaisy\nDebera\nDottie\nElyse\nFern\nHerlinda\nHortencia\nJaime\nJaye\nJohn\nJohnnie\nKaran\nKarlene\nKerrie\nLeora\nLidia\nLizabeth\nMarisela\nMarissa\nMavis\nMickey\nMickie\nNan\nPenni\nRoseanne\nRosetta\nRowena\nSherree\nTeena\nTwyla\nVelda\nVilma\nAbby\nAdeline\nAlana\nAthena\nChandra\nCinda\nCleo\nConcepcion\nCori\nDorothea\nGigi\nJacki\nJacque\nJodee\nJuliann\nKarleen\nKimber\nLaural\nLetitia\nLilian\nLindsay\nLinnea\nLoren\nLouann\nLuana\nMarietta\nMoira\nNickie\nNorine\nPaige\nPatrica\nPilar\nRichard\nRonald\nRoni\nRosana\nSandie\nShelli\nSimone\nStephany\nTonie\nTrisha\nVal\nVenetia\nWendie\nWinona\nAleta\nAlfreda\nAngel\nBeryl\nBianca\nBonny\nBrooke\nCarmela\nCary\nCasey\nCharla\nCharles\nCyndie\nDorian\nElida\nEloisa\nEula\nEvette\nHillary\nImelda\nJoetta\nJulee\nKimi\nLaraine\nLavon\nLeesa\nLeonor\nLeslye\nLibby\nLili\nLinette\nLoreen\nLory\nLouisa\nMae\nMargot\nMargret\nMerilee\nNoemi\nOphelia\nPeggie\nPhylis\nReta\nRichelle\nRosalee\nRoselyn\nRossana\nShelby\nSherril\nStaci\nStar\nSuzann\nSuzy\nTamela\nTia\nValeri\nViki\nAlita\nAngelia\nAraceli\nBerta\nBethany\nBlanche\nBunny\nCarmel\nCecily\nCherrie\nCindee\nCris\nCydney\nDalene\nDarcie\nDede\nDelfina\nDelphine\nDeniece\nDevon\nDoretha\nDru\nEdie\nElaina\nEstelle\nEtta\nHannah\nHarriett\nHeide\nHolli\nJeana\nJeanene\nJoi\nJonna\nKara\nKathaleen\nKimberle\nKrystal\nLaurinda\nLorretta\nLuisa\nMarilou\nMark\nMartina\nMattie\nMelva\nMia\nMillicent\nMollie\nNena\nPiper\nRandy\nRomona\nRosalva\nRoxie\nSadie\nSammie\nSari\nShanda\nSharen\nTaryn\nTheodora\nToby\nTrinidad\nUrsula\nVivien\nWilda\nAdriane\nAimee\nAutumn\nBernardine\nBernie\nBettie\nCamilla\nCandie\nCandis\nCandyce\nCassie\nCher\nCherlyn\nCherry\nClaudine\nCristy\nDara\nDaria\nDaryl\nDeidra\nDian\nDorie\nDorine\nEarlene\nEdythe\nElayne\nElissa\nEmilia\nEster\nFrancis\nGiselle\nHermelinda\nHortensia\nIlona\nIsabell\nJacquline\nJanetta\nJaney\nJeanna\nJodine\nJoellen\nJudie\nKary\nKathlyn\nKit\nLajuana\nLanell\nLarita\nLetha\nLida\nLissa\nLynell\nMaricela\nMarlys\nMarna\nMartine\nMaurine\nMerrilee\nMiki\nNettie\nNiki\nOpal\nPenney\nPeri\nReva\nRicki\nRobbi\nRonni\nRonnie\nRoxana\nShanna\nSharyn\nSheilah\nSheryle\nSigne\nSiobhan\nStefanie\nSusann\nTamie\nTania\nTasha\nThea\nTobi\nTomi\nTommie\nTori\nTroy\nTrudi\nValencia\nVonda\nWinnie\nAdella\nAlejandra\nAlene\nAlexandria\nAlta\nAlva\nAnnmarie\nArcelia\nArnetta\nBarbie\nBarbra\nBelva\nBrigid\nCarolann\nCelestine\nCharlesetta\nChristene\nCorliss\nCristine\nDanell\nDelaine\nDelana\nDelma\nDennise\nDorthy\nEden\nElia\nElnora\nEnriqueta\nEsmeralda\nFawn\nGeorge\nGermaine\nGini\nGregory\nGuillermina\nGwyn\nHallie\nHollie\nIsabelle\nJacquelin\nJeanetta\nJenell\nJenelle\nJeni\nJewel\nJoannie\nJolie\nJonni\nJosette\nJovita\nJulienne\nKarie\nKatharyn\nKathern\nKevin\nKimberli\nKimberlie\nKimmie\nKyle\nLark\nLauna\nLaure\nLaurey\nLavern\nLeatrice\nLiana\nLin\nLolita\nLore\nLoyce\nLuella\nLynnell\nMabel\nMachelle\nMaggie\nMamie\nMarcelina\nMargery\nMarianna\nMarleen\nMaryjane\nMarylee\nMerle\nMerrie\nMichel\nMinnie\nMirna\nMissy\nMisty\nNada\nNelly\nPamelia\nRachell\nRaelene\nRaye\nRetha\nRosalina\nSamantha\nSandee\nSarita\nShaun\nSheryll\nShirlee\nSoledad\nSophie\nStarr\nSuzi\nSybil\nTeddy\nThalia\nThomas\nTona\nTonette\nTony\nTreva\nUnknown\nValda\nVenita\nVida\nVonnie\nAbbe\nAddie\nAdelina\nAlanna\nAleen\nAletha\nAndree\nAnnetta\nAnthony\nBelen\nBilly\nBobette\nBoni\nBrigit\nCandee\nCarlotta\nCarrol\nCece\nCharity\nCherilyn\nChrystal\nChyrl\nCinde\nCornelia\nCruz\nCyndee\nDalia\nDann\nDarline\nDeeann\nDeedra\nDenese\nDollie\nDonald\nDonnell\nDorcas\nDovie\nElene\nElinor\nElma\nFatima\nFelipa\nFlor\nFrancie\nFreddie\nFrieda\nGaile\nGarnet\nGeorgine\nGoldie\nGwenda\nImogene\nIsabella\nJannie\nJasmine\nJenine\nJenise\nJesusita\nJil\nJonelle\nJonette\nJonnie\nJoycelyn\nJulieta\nJuliette\nKandi\nKandice\nKarren\nKarri\nKathey\nKathlene\nLavonna\nLawanna\nLenette\nLina\nLoralee\nLorenza\nLoris\nLu\nLupita\nMagda\nMardi\nMaribeth\nMechelle\nMelonie\nMeta\nMichaela\nMila\nNatalia\nNicolette\nNorene\nOctavia\nOlive\nPetrina\nPhoebe\nPixie\nRafaela\nRenata\nRina\nRona\nRosalba\nRosann\nRoseanna\nSharie\nSharri\nShawnee\nSheryn\nShirlene\nSidney\nSteven\nTamora\nTawny\nTeressa\nTerra\nTessie\nTheda\nTillie\nTimothy\nTrini\nTrude\nVannessa\nVelia\nVenessa\nWende\nWhitney\nZelma\nZina\nAlaine\nAlix\nAlyson\nAnabel\nAngeline\nAnnabelle\nApryl\nArdis\nArdyce\nArline\nArmanda\nAurelia\nBabette\nBelle\nCandida\nCarma\nCarolee\nCarroll\nCathe\nCathey\nCeline\nChantal\nCharis\nCharline\nCharyl\nCherryl\nChrista\nChristin\nCoreen\nCorrie\nCristie\nDanelle\nDanise\nDannette\nDarcel\nDarice\nDeborrah\nDelinda\nDelisa\nDelora\nDemetra\nDennis\nDesi\nDierdre\nDonella\nDorthea\nEda\nEddie\nEdward\nElda\nEleanore\nElenor\nEllyn\nEmmy\nEugenie\nEulalia\nEvelyne\nEvie\nFran\nFrancene\nGabriella\nGayleen\nGenie\nGeorgeann\nGeorgene\nGianna\nGlynis\nHattie\nHollis\nIla\nIna\nIone\nIvory\nJacalyn\nJacky\nJanae\nJanean\nJaniece\nJanise\nJay\nJenice\nJennette\nJennine\nJeraldine\nJesus\nJodene\nJoelle\nJoey\nJustine\nKathren\nKathrin\nKathryne\nKayla\nKayleen\nKellee\nKendall\nKenna\nKenneth\nKimm\nLane\nLarae\nLatonya\nLauralee\nLaurette\nLavada\nLeola\nLianne\nLinnette\nLizbeth\nLorette\nLorilyn\nLourie\nLtanya\nLucretia\nLynelle\nMachele\nMalia\nMaralee\nMarcelle\nMaren\nMarge\nMarjory\nMarya\nMaryellen\nMatilde\nMelia\nMelony\nMeri\nMicki\nMikki\nMina\nMinda\nMonika\nMyrtle\nNancee\nNila\nNoelle\nOleta\nOllie\nPerri\nRaeann\nRanae\nRandall\nRandee\nRandie\nRay\nRayna\nRegan\nRisa\nRise\nRoanne\nRobynn\nRolanda\nRosina\nSelma\nSharan\nSharilyn\nSharleen\nSharolyn\nShela\nSherlyn\nShirl\nStarlene\nStefani\nSunny\nSusi\nTambra\nTammara\nTari\nTeddi\nTerisa\nTerrill\nTerrilyn\nThais\nTracee\nTresa\nVeda\nVelina\nVernetta\nVicci\nVienna\nWilla\nZelda\nZena\nSusan\nKaren\nMary\nLinda\nCynthia\nDebra\nPatricia\nLisa\nJulie\nDeborah\nCheryl\nPamela\nKathleen\nNancy\nLori\nSandra\nKathy\nBarbara\nDebbie\nDiane\nElizabeth\nLaura\nDonna\nCarol\nDenise\nCindy\nSharon\nTeresa\nJanet\nDiana\nBrenda\nRobin\nKim\nTheresa\nMichelle\nCatherine\nMaria\nRebecca\nMargaret\nTerri\nKimberly\nLaurie\nCathy\nChristine\nLeslie\nTammy\nJennifer\nJanice\nJudy\nTina\nValerie\nCarolyn\nKathryn\nKatherine\nRhonda\nPaula\nPeggy\nVicki\nKelly\nVictoria\nLynn\nMartha\nGloria\nAnnette\nDarlene\nAnn\nRenee\nVirginia\nTerry\nYolanda\nConnie\nSylvia\nAnna\nStephanie\nJoyce\nWendy\nMichele\nAnita\nShirley\nBonnie\nJill\nSuzanne\nRose\nGail\nBeverly\nJudith\nElaine\nJoan\nRuth\nChristina\nTamara\nAnne\nDana\nDawn\nHelen\nColleen\nSherry\nLorraine\nVickie\nJoanne\nJane\nSally\nSheila\nSheryl\nAngela\nYvonne\nAlice\nRoberta\nSue\nTeri\nMarie\nBetty\nJean\nBecky\nIrene\nMarilyn\nTami\nAndrea\nMonica\nCarrie\nMelinda\nTracy\nJeanne\nJo\nJulia\nFrances\nToni\nDorothy\nRita\nLoretta\nGina\nCarla\nJacqueline\nJan\nWanda\nPhyllis\nMaureen\nCarmen\nHeidi\nMelissa\nPam\nSandy\nEllen\nJoann\nNorma\nEileen\nPatty\nRegina\nJeanette\nLydia\nRachel\nSheri\nAmy\nEvelyn\nBeth\nCharlene\nJackie\nPenny\nVivian\nPatti\nRosa\nSherri\nCharlotte\nErin\nMelody\nVicky\nDolores\nBelinda\nMelanie\nJoy\nSarah\nRosemary\nShelley\nGayle\nHolly\nJody\nLynne\nDoreen\nLynda\nMarianne\nEsther\nStacy\nDebora\nVeronica\nApril\nDeanna\nChristy\nDianne\nMarcia\nArlene\nDarla\nStacey\nJuanita\nMarlene\nRamona\nCecilia\nIrma\nDianna\nEva\nShelly\nGlenda\nJoni\nClaudia\nGrace\nJenny\nSara\nJune\nAlison\nAudrey\nSusie\nCarole\nCheri\nLouise\nChris\nLucy\nDoris\nAlicia\nGuadalupe\nJeri\nMarla\nRobyn\nCathleen\nNatalie\nTanya\nJeannie\nRoxanne\nConstance\nLee\nMarsha\nSherrie\nShannon\nLorrie\nLaurel\nGwendolyn\nLynette\nAllison\nJanis\nKerry\nLauren\nShari\nTammie\nJamie\nKay\nJeannette\nJodi\nJosephine\nKarla\nLupe\nNina\nLois\nRonda\nPatrice\nCaroline\nGeraldine\nCrystal\nLorna\nOlivia\nRene\nShawn\nMona\nKristi\nRosie\nJennie\nMargarita\nPauline\nRochelle\nRuby\nTerrie\nAna\nLillian\nMargie\nNora\nSonia\nLeticia\nTherese\nCherie\nVanessa\nElena\nKarin\nTracey\nEdith\nLiz\nPat\nSabrina\nAdrienne\nHeather\nLorie\nPriscilla\nMarjorie\nDelia\nDora\nJana\nKathi\nEmily\nMarian\nYvette\nGeorgia\nStella\nAlma\nLucinda\nNanette\nCandy\nBernadette\nKristine\nDebi\nJacquelyn\nKimberley\nCelia\nLora\nMarta\nBertha\nKelli\nKristin\nKelley\nAmanda\nAntoinette\nCeleste\nEleanor\nNadine\nBeatrice\nGale\nPaulette\nRosalie\nRosemarie\nAngie\nDelores\nNaomi\nBobbie\nCandace\nDena\nKari\nBridget\nTrina\nGinger\nChristie\nColette\nKris\nClaire\nJanette\nJoanna\nFrancine\nJanine\nMarion\nCassandra\nDesiree\nMolly\nIsabel\nKellie\nTrudy\nCorinne\nJanie\nLauri\nSusanne\nTamra\nDebby\nDenice\nOlga\nVera\nBernice\nElisa\nKristen\nBetsy\nCindi\nChristi\nJayne\nJeanine\nMarcella\nMaryann\nClara\nKristy\nCecelia\nMegan\nFelicia\nJeannine\nJessie\nLynnette\nSilvia\nAnnie\nCandice\nDeena\nGwen\nJerri\nJessica\nSheree\nEdna\nGretchen\nKimberlee\nMargo\nTraci\nBlanca\nPatsy\nTonya\nElsa\nKathie\nSusanna\nSusana\nBillie\nDee\nKatie\nKatrina\nLorri\nMari\nSuzette\nAntonia\nLucille\nMarguerite\nMarina\nRosalind\nKerri\nLana\nKristina\nMyrna\nSonja\nDella\nEmma\nJuli\nLeann\nLeanne\nMyra\nDeanne\nHope\nLeah\nLeona\nLesley\nMadeline\nMiriam\nCamille\nDebbi\nGenevieve\nLorene\nMelodie\nAmelia\nEstella\nFlorence\nGeri\nIngrid\nJolene\nTammi\nAngelina\nDina\nSuzan\nBobbi\nColeen\nSandi\nShelia\nTamera\nTara\nDanette\nElise\nJeanie\nJulianne\nLeigh\nLola\nMarcy\nRaquel\nRena\nAlisa\nElisabeth\nKatharine\nMildred\nNellie\nDona\nFaith\nJudi\nMaxine\nMonique\nDorene\nGay\nLesa\nAdele\nEsperanza\nIda\nJodie\nMarisa\nMindy\nSonya\nValarie\nCheryle\nClaudette\nNicole\nPearl\nRae\nRandi\nRobbin\nVikki\nGladys\nHilda\nKathrine\nMercedes\nPolly\nSaundra\nVerna\nCathryn\nDale\nFaye\nLuann\nLuz\nMarcie\nTricia\nWilma\nAva\nCaryn\nElvira\nEthel\nJanelle\nLaverne\nPamala\nAurora\nBonita\nDeirdre\nErma\nLenora\nLyn\nRosanna\nSophia\nAlexis\nCaren\nElla\nMerry\nRosalinda\nSharlene\nCora\nErnestine\nHelene\nJuliana\nKeri\nLorena\nLourdes\nNoreen\nPenelope\nRachelle\nRosanne\nCathie\nCharmaine\nConsuelo\nDeana\nGracie\nKristie\nNikki\nRobbie\nSherrill\nSocorro\nThelma\nValorie\nAdela\nAileen\nBenita\nCathrine\nClare\nCollette\nDarcy\nDori\nGinny\nGlenna\nJocelyn\nJohanna\nLatanya\nLena\nShawna\nViolet\nBeatriz\nCorrine\nKirsten\nLaureen\nLoraine\nLuanne\nMarci\nRoxann\nSondra\nTamie\nTracie\nAlberta\nCyndi\nDanita\nDayna\nElsie\nErlinda\nEstela\nGabrielle\nGeorgina\nHarriet\nHazel\nKitty\nLani\nLea\nLilia\nMalinda\nNita\nSuzy\nAllyson\nCari\nDaphne\nErica\nEugenia\nEve\nGerri\nKaty\nKrista\nLeanna\nLenore\nLou\nOfelia\nRosario\nAngelica\nCarmelita\nEvangelina\nFrancisca\nGraciela\nInez\nIris\nKaryn\nKatheryn\nLadonna\nLeeann\nLindy\nNanci\nRoxane\nSherie\nAlexandra\nAmber\nFlora\nFrancesca\nGeorgette\nJami\nKeely\nLeisa\nMagdalena\nRoxanna\nStacie\nVickey\nViola\nAda\nArleen\nBernadine\nCristina\nDanielle\nDeann\nGayla\nGigi\nIlene\nIvy\nLise\nMaggie\nMarilee\nMichael\nNicki\nRachael\nWendi\nBambi\nBonny\nCathi\nCharla\nJaime\nJosie\nLucia\nMara\nMarilynn\nPattie\nZoe\nAntonette\nCandi\nCarey\nCarlene\nCatalina\nDiann\nDorothea\nElvia\nGaye\nGeneva\nGreta\nHilary\nJenifer\nJosefina\nKaron\nKarrie\nLillie\nLouisa\nNona\nRosalyn\nVal\nAleta\nArmida\nChrista\nDebbra\nDixie\nJanell\nJuana\nLeslee\nLidia\nLila\nLily\nMarisela\nMimi\nMitzi\nRonna\nSuzanna\nTerese\nAgnes\nBrigitte\nClarice\nDanna\nErika\nImelda\nJanel\nJanna\nJoanie\nLizabeth\nLuana\nMaryanne\nMay\nRhoda\nRoseanne\nRuthie\nSerena\nStarla\nSuzie\nTambra\nAngelita\nBessie\nCarolina\nCary\nDeidre\nGena\nGisele\nHenrietta\nJaneen\nJayme\nKarol\nLindsay\nLissa\nLonnie\nLoreen\nMariann\nPerri\nRichard\nRoseann\nSharron\nTeena\nVelma\nAida\nCherrie\nElva\nFelecia\nFern\nLeila\nLeilani\nLesli\nMandy\nManuela\nMarylou\nMaura\nMissy\nMollie\nNeva\nRoslyn\nSandie\nShauna\nSofia\nStarr\nTana\nAlfreda\nBette\nBeverley\nCasey\nCherri\nCoral\nCori\nDani\nDarleen\nDawna\nDede\nEloise\nFay\nGilda\nHelena\nKandy\nKevin\nLiane\nLorelei\nMeredith\nNatasha\nOphelia\nRosetta\nStaci\nTwila\nViki\nAdrianne\nAlana\nAthena\nBridgette\nBrigette\nCara\nCecile\nChandra\nCharleen\nCinthia\nCorine\nCory\nCyndy\nDavid\nDottie\nErnestina\nJuliet\nKerrie\nLavonne\nLorinda\nMerrilee\nNannette\nNoel\nRenae\nRowena\nSabra\nShelli\nThea\nVenita\nWinona\nAimee\nAngel\nCarmela\nCorina\nDelilah\nFreda\nGabriela\nGaylene\nGeralyn\nLiza\nMargot\nMarty\nMelisa\nNoelle\nPatrica\nPeggie\nRebekah\nRobert\nSherryl\nTia\nTonia\nUrsula\nWillie\nWinifred\nAlthea\nAlyce\nAndra\nAnnamarie\nAnnetta\nCarleen\nCinda\nCindie\nConcepcion\nDaisy\nDeedee\nDorinda\nEdwina\nGertrude\nGiselle\nJames\nJerrie\nJoellen\nKandi\nKaran\nKendra\nLanette\nLaurene\nLauretta\nLeonor\nLibby\nLinnea\nMadeleine\nMamie\nMargret\nMaricela\nMarietta\nMark\nMarva\nMaryellen\nMelodee\nNan\nNicolette\nNola\nPennie\nReba\nRosalia\nSharyl\nSheena\nSindy\nSoledad\nTrena\nTreva\nValeria\nAbigail\nAdriana\nBrooke\nCammie\nCharisse\nCoreen\nDarline\nDian\nDolly\nElida\nFrankie\nHermelinda\nHortencia\nJacki\nJacklyn\nJacque\nJohn\nJohnnie\nJulee\nKathaleen\nKathlene\nKimber\nLela\nLetha\nLita\nLolita\nLory\nMelba\nNedra\nPenni\nPetra\nRaylene\nRebeca\nSallie\nShellie\nSherilyn\nSuzi\nSydney\nTamela\nTrisha\nTrudi\nVenus\nVonda\nYolonda\nAdrian\nAngelia\nBeckie\nBlanche\nBrigid\nCarlotta\nCarolynn\nCaron\nCaryl\nCassie\nClarissa\nCristy\nDanelle\nDaryl\nDeborha\nDebrah\nDelinda\nEnedina\nEtta\nEunice\nEvangeline\nFrieda\nIsabelle\nJerry\nJovita\nJuliann\nKara\nKaree\nKyle\nLaurette\nLavon\nLeesa\nLetitia\nLorry\nLouann\nLynell\nMaritza\nMattie\nMercy\nMerri\nMicki\nMoira\nNancie\nPaige\nPerla\nRosalina\nRosita\nSharla\nShelby\nShirlee\nTammara\nTari\nTena\nTwyla\nValencia\nVelia\nAdelina\nAlida\nAlta\nAmparo\nBarbra\nBecki\nBelen\nBettina\nCarie\nCarmel\nCarri\nCatharine\nCelestine\nCeline\nCherryl\nCorey\nCristine\nDara\nDarci\nDeloris\nEarlene\nEdie\nGeorgiana\nGerry\nIna\nJerilyn\nJewel\nJoi\nJoleen\nJudie\nKaye\nKendall\nKori\nLawanda\nLeta\nLoren\nMadonna\nMarlena\nMickie\nMiki\nMina\nMinerva\nMuriel\nOpal\nPamella\nPhillis\nPhoebe\nRandy\nRoni\nSabina\nSamantha\nSandee\nShaun\nSidney\nTaryn\nUnknown\nVeda\nWilliam\nAbbie\nAdriane\nAnastasia\nAnnabelle\nAntionette\nBrinda\nCarrol\nChantal\nChrystal\nCyndie\nDarcie\nDebera\nDeeann\nDinah\nDodie\nEdward\nElizebeth\nElyse\nEstelle\nFran\nGeorgianna\nHerlinda\nIsabella\nJanene\nJann\nJeanna\nJesus\nJewell\nJodee\nJosette\nJuliette\nJustine\nKarie\nKarlene\nKarri\nKate\nLark\nLeonora\nLezlie\nLilly\nLina\nLona\nLoni\nLorita\nLucretia\nMariana\nMarissa\nMarleen\nMerrie\nMickey\nMonika\nMyrtle\nNelda\nNena\nPilar\nPortia\nRaelene\nRenata\nRenita\nRetha\nReyna\nRobbi\nRomona\nRona\nRosana\nRosella\nShana\nShanna\nSharen\nSherlyn\nStephani\nThomas\nTomi\nTommie\nTonja\nTrudie\nAbby\nAdeline\nAlyson\nAraceli\nAvis\nBarbie\nBev\nBianca\nCecily\nCherlyn\nCheryll\nChristopher\nClaudine\nCristi\nCruz\nDaria\nDennise\nDevon\nDonita\nDorie\nDorthy\nEilene\nElda\nEnid\nGenoveva\nGeorgene\nHelga\nIla\nJona\nKareen\nKathryne\nKathyrn\nKeli\nKimberlie\nLajuana\nLatonya\nLiana\nLianne\nLisette\nLizanne\nLoree\nLorretta\nLoyce\nLu\nLula\nLupita\nMachelle\nMalia\nMarilou\nMelva\nMichaela\nMichaele\nNickie\nNoemi\nReina\nRory\nRoselyn\nSelena\nSelina\nSherill\nSherree\nStar\nTamy\nTania\nTeressa\nTheodora\nTracee\nTroy\nValentina\nVida\nWendie\nAline\nAmalia\nAnitra\nBarb\nBernita\nCallie\nCammy\nCandis\nCandyce\nCarin\nCelina\nChari\nCharlette\nCherry\nCookie\nCornelia\nCourtney\nCris\nDarnell\nDominique\nDoretta\nDoria\nDorine\nElaina\nElinor\nElissa\nEllyn\nEmilie\nEsmeralda\nEster\nEvonne\nFatima\nFawn\nFelice\nGary\nGenie\nGermaine\nGlinda\nGlory\nGoldie\nGriselda\nGwenda\nHillary\nIva\nJacalyn\nJani\nJannette\nJeana\nJeanice\nJeffrey\nJenni\nJoetta\nKaylene\nKellee\nKimberli\nKimbra\nLarhonda\nLaure\nLawanna\nLeana\nLeslye\nLettie\nLindsey\nLouella\nLowana\nLucina\nMadelyn\nMae\nMallory\nMarcela\nMarianna\nMarquita\nMarti\nMartina\nMechelle\nMeg\nMerilee\nMichel\nMilissa\nNettie\nNicola\nOdessa\nPaul\nPenney\nPeri\nRichelle\nRosalva\nRoxie\nSharleen\nShawnee\nShayne\nSheilah\nSherril\nSheryll\nShiela\nShirlene\nSophie\nStarlene\nStephany\nSusann\nSusy\nSybil\nTani\nTori\nTressa\nTrinidad\nValene\nValeri\nValery\nVenetia\nVita\nWilla\nAbbe\nAdella\nAlba\nAlexa\nAlexandria\nAlva\nAndre\nAndria\nAnthony\nArcelia\nArdis\nAstrid\nAugustina\nBalinda\nBerta\nBettie\nBonni\nBunny\nCameron\nCamilla\nCandie\nCarma\nCarolee\nCharline\nCher\nChristiana\nConcetta\nConsuela\nCydney\nCyndee\nDaniel\nDanise\nDannette\nDeb\nDeboraha\nDelaine\nDelfina\nDemetria\nDeniece\nDenita\nDenna\nDeon\nDonette\nDrusilla\nEarline\nEffie\nElayne\nElia\nEllie\nEmilia\nEvette\nEydie\nFrancie\nFrancis\nHattie\nHeide\nHortensia\nIsabell\nJacquelyne\nJaney\nJeani\nJenine\nJina\nJoe\nJolie\nJonell\nJonie\nJonna\nJulienne\nJustina\nKarel\nKarolyn\nKathyleen\nKristan\nKym\nLanita\nLauralee\nLavina\nLawana\nLayne\nLeandra\nLelia\nLetty\nLida\nLizbeth\nLonna\nLoralee\nLore\nLouanne\nLucila\nLuisa\nLura\nMabel\nMable\nManon\nMargery\nMaribeth\nMarna\nMaryjo\nMaurine\nMavis\nMelvina\nMerlene\nMike\nMiranda\nMirna\nMisty\nNancee\nNila\nNorine\nPaulina\nRanae\nReva\nRhea\nRicki\nRonni\nRosalee\nRosina\nRozanne\nSharman\nSharri\nSigrid\nStanley\nSteve\nSteven\nTammera\nTeddi\nTerra\nTeryl\nTessie\nTomasa\nTrish\nVanita\nVirgie\nVonnie\nZelda\nAlejandrina\nAlene\nAletha\nAllene\nAnamaria\nAndree\nAnnalee\nAnnmarie\nArden\nAutumn\nBabette\nBlair\nBlythe\nBobby\nBridgett\nCaprice\nCarletta\nCarmella\nCarolann\nCarroll\nChristal\nChristene\nChristiane\nChristianne\nClair\nCleo\nConni\nCorinna\nCorliss\nCorrie\nCriselda\nCurtis\nDarlena\nDayle\nDeatrice\nDebie\nDelene\nDenae\nDenese\nDoni\nDonnell\nDorcas\nDyann\nEddie\nEden\nElma\nEnriqueta\nEugena\nEvon\nFonda\nFrancene\nFrank\nFreida\nGia\nGinnie\nGregory\nGwenn\nHallie\nHolley\nHolli\nIndia\nJacquelynn\nJaimie\nJanan\nJanella\nJay\nJayna\nJeane\nJenene\nJil\nJoelle\nJolyn\nJonni\nJulianna\nKarina\nKarma\nKarren\nKarry\nKary\nKaryl\nKasey\nKathe\nKathern\nKenda\nKimberely\nKit\nKolleen\nKoreen\nKyra\nLane\nLarae\nLauna\nLaural\nLaurice\nLaurinda\nLavern\nLeatrice\nLeeanne\nLenna\nLilli\nLinette\nLottie\nLuanna\nLucie\nLynelle\nLynnda\nManette\nMarcelle\nMardi\nMariellen\nMarilu\nMarita\nMarjory\nMarlinda\nMarlys\nMaya\nMelodi\nMelony\nMerle\nMeryl\nMillicent\nMillie\nMinnie\nMitzie\nNiki\nNorah\nNyla\nOctavia\nOla\nOllie\nOra\nOralia\nPeggi\nPier\nPiper\nRachele\nRayma\nRayna\nRenea\nRisa\nRise\nRobbyn\nRoben\nRoberto\nRolanda\nRonnette\nRosalba\nRoseanna\nSari\nSelma\nShanda\nShannan\nSharyn\nShellee\nSherre\nShonda\nSuanne\nSusannah\nSuzann\nSylvie\nSynthia\nTajuana\nTam\nTamar\nTamarah\nTammey\nTamre\nTawni\nTerilyn\nThresa\nToby\nToya\nTresa\nTyra\nValda\nValinda\nVallerie\nVicci\nVictor\nVivien\nWillette\nWynona\nZina\nZoila\nMary\nKaren\nSusan\nLinda\nLisa\nCynthia\nPatricia\nDebra\nDeborah\nDonna\nSandra\nJulie\nLori\nPamela\nDebbie\nLaura\nNancy\nCheryl\nElizabeth\nKathleen\nKathy\nDiane\nCindy\nDenise\nCarol\nBarbara\nSharon\nTeresa\nRobin\nMichelle\nJanet\nKim\nDiana\nBrenda\nKimberly\nTerri\nTheresa\nMaria\nTammy\nCatherine\nRebecca\nKelly\nMargaret\nLaurie\nCathy\nChristine\nLeslie\nJudy\nTina\nValerie\nRhonda\nJennifer\nJanice\nKathryn\nCarolyn\nKatherine\nAnnette\nPaula\nAnna\nStephanie\nVictoria\nDawn\nAnn\nWendy\nMartha\nRenee\nGloria\nVicki\nJill\nSuzanne\nLynn\nConnie\nMichele\nSherry\nPeggy\nSylvia\nTerry\nBeverly\nAnne\nDana\nYolanda\nJoyce\nSheila\nBonnie\nTamara\nTracy\nAnita\nShirley\nVirginia\nDarlene\nCarrie\nColleen\nRose\nGail\nElaine\nYvonne\nTeri\nBecky\nJudith\nAngela\nRoberta\nChristina\nTami\nLorraine\nRuth\nJoan\nSheryl\nMarie\nAndrea\nVickie\nMonica\nSally\nHelen\nSandy\nJoanne\nPam\nAlice\nJane\nToni\nGina\nBetty\nJulia\nSue\nJean\nEllen\nDorothy\nCarla\nSheri\nFrances\nMaureen\nJeanne\nLoretta\nIrene\nMelinda\nMarilyn\nCarmen\nSherri\nMelissa\nRita\nHeidi\nBeth\nStacy\nAmy\nEileen\nJacqueline\nShelly\nWanda\nJan\nRachel\nNorma\nErin\nJo\nDeanna\nJeanette\nRegina\nDolores\nRosa\nPhyllis\nShelley\nPatty\nLydia\nJackie\nPenny\nEsther\nEvelyn\nMelanie\nRamona\nJoann\nMelody\nVivian\nCharlene\nJoy\nPatti\nHolly\nStacey\nLynne\nRosemary\nVeronica\nLynda\nCecilia\nGayle\nJamie\nCharlotte\nIrma\nBelinda\nRoxanne\nAlicia\nSarah\nArlene\nJody\nJuanita\nDebora\nGrace\nApril\nChris\nSara\nMarlene\nVicky\nTammie\nDarla\nAudrey\nDoreen\nEva\nShannon\nClaudia\nGlenda\nDianna\nLeticia\nMarianne\nDianne\nMarcia\nCheri\nShari\nLouise\nTanya\nLynette\nHeather\nKelley\nJenny\nLauren\nNora\nSonia\nChristy\nJoni\nJodi\nNina\nAlison\nRochelle\nCarole\nNatalie\nMona\nJeri\nSherrie\nAllison\nDoris\nKimberley\nRonda\nVanessa\nGuadalupe\nJosephine\nTerrie\nCathleen\nLiz\nCrystal\nCaroline\nJune\nGwendolyn\nKerry\nLillian\nShawn\nLorrie\nMarla\nJana\nLaurel\nCandy\nJanis\nLois\nKelli\nTherese\nJeannette\nCherie\nConstance\nRobyn\nSusie\nAna\nJeannie\nMarjorie\nStella\nBernadette\nPauline\nTracey\nJennie\nLupe\nPatrice\nYvette\nGeraldine\nMargarita\nMargie\nMarsha\nRene\nSabrina\nKristi\nLucy\nGinger\nEdith\nKay\nLee\nBridget\nDora\nKristin\nEleanor\nKarla\nKristen\nJoanna\nLora\nBeatrice\nEmily\nMarian\nRosie\nLorie\nOlivia\nDelia\nJeanine\nFrancine\nKristine\nLorna\nNadine\nCandace\nMarta\nDebby\nJanine\nKarin\nTrina\nAntoinette\nKari\nMaryann\nRosalie\nRuby\nBertha\nClaire\nDelores\nLeanne\nPaulette\nCeleste\nPriscilla\nTamra\nElena\nOlga\nLeah\nIsabel\nBetsy\nAmanda\nKathi\nAngie\nCorinne\nKellie\nPat\nAlma\nFelicia\nKatie\nMonique\nTamera\nCassandra\nSonya\nNanette\nRosemarie\nTonya\nChristie\nGeorgia\nLauri\nKris\nTammi\nIngrid\nDanette\nDesiree\nElisa\nKatrina\nLucinda\nColette\nGretchen\nPatsy\nSandi\nLucille\nMargo\nDee\nJanette\nJanie\nSilvia\nDebi\nDena\nNaomi\nCamille\nJanelle\nAdrienne\nCecelia\nCelia\nClara\nDella\nGwen\nKathie\nMolly\nBobbie\nTraci\nJeannine\nLorri\nMarina\nColeen\nEdna\nElsa\nEmma\nJerri\nJessie\nVera\nCindi\nDina\nJudi\nKerri\nSusanne\nBernice\nJulianne\nSuzette\nIda\nJacquelyn\nGale\nAlisa\nCandice\nKristy\nRosalind\nAmelia\nLynnette\nMarcella\nMyra\nJayne\nJessica\nJolene\nAnnie\nBlanca\nDenice\nJodie\nKristina\nSonja\nTrudy\nBillie\nFlorence\nJeanie\nLorena\nMiriam\nMyrna\nDeanne\nKimberlee\nLesley\nMarion\nSusana\nMarguerite\nMelodie\nTricia\nValarie\nAntonia\nSheree\nAngelina\nErica\nHope\nKeri\nRobbin\nShelia\nTara\nDarcy\nGeri\nLadonna\nMadeline\nMildred\nVerna\nFaith\nKaryn\nLana\nLeigh\nLorene\nNicole\nRena\nSuzan\nCyndi\nLeona\nRaquel\nRosanne\nSusanna\nTracie\nBambi\nBobbi\nGay\nGigi\nMalinda\nMari\nThelma\nCaren\nDeann\nDona\nMarcy\nChristi\nDeena\nDeirdre\nEve\nGenevieve\nJuli\nLuz\nMarcie\nPearl\nRachelle\nAngelica\nCaryn\nEsperanza\nEstella\nGraciela\nVenus\nVikki\nBrigitte\nCari\nCarlene\nLucia\nMagdalena\nMaxine\nDeana\nElisabeth\nGladys\nKatharine\nLea\nRosanna\nCorrine\nDori\nGracie\nLeann\nMercedes\nCharmaine\nLena\nLenore\nMarci\nShauna\nAdele\nElsie\nKirsten\nLenora\nMindy\nMitzi\nWilma\nAdela\nAileen\nArleen\nDayna\nDebbi\nElise\nJohanna\nMaura\nMegan\nRosario\nShawna\nDanielle\nGeorgina\nHazel\nHilda\nLeeann\nMeredith\nStacie\nTori\nAlberta\nAurora\nCathryn\nDixie\nElla\nGeneva\nJenifer\nJosie\nKarrie\nKathrine\nKaty\nKitty\nLola\nLourdes\nMaggie\nNellie\nPolly\nRandi\nTamie\nAlexandra\nAmber\nCora\nEugenia\nHilary\nKendra\nRoseann\nSaundra\nViola\nAllyson\nDorene\nIris\nJami\nKristie\nLesa\nOfelia\nPamala\nRae\nRosalinda\nSherrill\nSocorro\nClaudette\nDavid\nElvira\nErika\nJuana\nLilia\nLindy\nLuann\nRobbie\nRoxane\nCathie\nDanita\nElva\nGabrielle\nHelene\nHenrietta\nInez\nJuliana\nLaverne\nLyn\nNikki\nRoxanna\nSharlene\nTamela\nCarey\nCary\nCheryle\nConsuelo\nGreta\nKeely\nLawanda\nLeanna\nNanci\nRuthie\nSherie\nClare\nCristina\nDeidre\nElvia\nFreda\nLavonne\nLizabeth\nMarisa\nNoreen\nRoxann\nStaci\nStarla\nSuzy\nSydney\nValorie\nAthena\nBeatriz\nBernadine\nErnestine\nFrankie\nGaye\nJanna\nJoanie\nKandy\nKerrie\nLani\nMerry\nMichael\nNita\nSophia\nTonia\nAntionette\nBridgette\nCandi\nCathi\nCathrine\nDiann\nDorothea\nErma\nHarriet\nHelena\nLily\nRosalyn\nRoslyn\nSondra\nTania\nVelma\nArmida\nAva\nCarolina\nCherri\nDaphne\nDinah\nDorinda\nEdwina\nEstela\nFaye\nGeorgette\nJosefina\nLaureen\nLiza\nPenelope\nRachael\nRobert\nSerena\nTari\nTerese\nVickey\nCassie\nDale\nFlora\nJohnnie\nJuliet\nKyle\nLou\nMae\nMara\nMarilee\nMarilynn\nMillie\nPatrica\nPennie\nAngelita\nCarmelita\nCatalina\nDaisy\nDawna\nErlinda\nJanell\nJocelyn\nKarol\nLatanya\nLila\nLise\nLoraine\nMaryanne\nMaryellen\nTambra\nViolet\nWendi\nAgnes\nAngel\nCecile\nDebbra\nDeedee\nDorian\nEunice\nEvangelina\nGayla\nGerri\nGlenna\nIlene\nIna\nKara\nKatheryn\nKimber\nKym\nLiane\nLillie\nMandy\nMariann\nMarti\nMarylou\nMerri\nMuriel\nPamella\nRenita\nRhoda\nShelli\nShellie\nSuzie\nTaryn\nAdriana\nAlyce\nBeckie\nBenita\nBonita\nCara\nCarleen\nCasey\nDanna\nDebrah\nEthel\nGinny\nJaime\nKate\nKellee\nLeila\nLeilani\nLidia\nLorelei\nManuela\nMeg\nPattie\nPetra\nSandie\nShanna\nTena\nAida\nAlexis\nAnnemarie\nBarrie\nCarin\nCarmela\nCaron\nCorina\nCory\nDani\nDarleen\nEloise\nFrancisca\nGabriela\nGilda\nHerlinda\nKaron\nKrista\nLeslee\nLouisa\nLuana\nLuanne\nMartina\nMercy\nMimi\nNannette\nNeva\nNola\nPaige\nRebeca\nRonna\nSharron\nSuzanna\nVeda\nAmalia\nBettie\nBonny\nChandra\nClarice\nDara\nEdie\nErnestina\nFrancesca\nGuillermina\nJacki\nJohn\nJuliette\nKaye\nLita\nLoren\nLorinda\nLuisa\nMadeleine\nMerrie\nMonika\nPeri\nTana\nVelda\nWilliam\nAda\nAlana\nAnastasia\nAndra\nAnnamaria\nAnnamarie\nBianca\nBrigette\nClarissa\nDeloris\nDominique\nFelecia\nGena\nIvy\nJanene\nKendall\nLatonya\nLezlie\nLianne\nLindsay\nMamie\nMarva\nMay\nMelba\nNiki\nRebekah\nRenae\nRosetta\nSimone\nTheodora\nAdelina\nAlfreda\nBlanche\nCammie\nCindie\nCollette\nCristy\nCyndie\nDolly\nDonita\nIva\nJaneen\nJanel\nJuliann\nKaran\nKarie\nKarri\nLeonor\nLilly\nLina\nLinnea\nLory\nMarisela\nMelodee\nMichell\nNicki\nNicolette\nPerri\nRaelene\nRoni\nSelina\nShirlee\nStefanie\nVal\nYolonda\nAdriane\nAntonette\nBabette\nBrooke\nCarroll\nCaryl\nChrista\nCindee\nCristi\nDede\nDeeann\nElida\nEster\nFay\nFran\nGisele\nHannah\nIsabelle\nJames\nJodee\nJonnie\nKathlene\nLavon\nLesli\nLetty\nMachelle\nMaricela\nMarty\nMisty\nNoel\nPilar\nRhea\nRosalva\nSallie\nShelby\nTeddi\nTorey\nTrudi\nWinifred\nAbigail\nAdeline\nAdrian\nAleta\nAlexandria\nAllene\nBette\nBridgett\nCarmel\nCarolynn\nCatharine\nCharisse\nConcepcion\nCoral\nCoreen\nCourtney\nCyndy\nDaria\nDeborha\nDian\nDorine\nEtta\nEvangeline\nEvonne\nFrancie\nGaylene\nGeralyn\nHortencia\nJacque\nJoi\nJustine\nLaurene\nLeisha\nLibby\nLindsey\nLouann\nMeri\nMickey\nMollie\nNoelle\nNona\nPenni\nRandy\nRomelia\nRonnie\nRosalia\nRoseanne\nSandee\nSharyl\nSherryl\nSofia\nTommie\nTonette\nTwila\nUrsula\nValentina\nVenita\nViki\nZina\nAraceli\nBelen\nBerta\nBeverlee\nBeverley\nCamilla\nCharleen\nCharles\nCherry\nCori\nDaniel\nDaryl\nDebie\nDeidra\nDelfina\nDelphine\nDoretta\nDorthy\nEarlene\nEden\nElissa\nEvette\nImelda\nJacklyn\nJannette\nJerry\nJoellen\nJoetta\nJudie\nJulee\nJulianna\nKimberli\nLajuana\nLaronda\nLeesa\nLela\nLia\nLoree\nMarietta\nMelodi\nMia\nMickie\nMirna\nReba\nReina\nRichard\nRisa\nRona\nRosita\nRowena\nSharla\nShaun\nSherilyn\nShirlene\nSiobhan\nSteven\nTomi\nTrena\nTresa\nTreva\nTrinidad\nTrisha\nVenetia\nWendie\nWillie\nZoe\nAbby\nAdrianne\nAlesia\nAlida\nAngelia\nAvis\nBecki\nCarrol\nCharlette\nCheryll\nChristiane\nCris\nElaina\nElia\nElma\nEmilia\nEnriqueta\nEsmeralda\nEstelle\nFawn\nFreida\nFrieda\nGriselda\nHeide\nHortensia\nJacquline\nJeanna\nJenni\nJerilyn\nJewel\nJolynn\nJoseph\nKandi\nKandis\nKarey\nKarolyn\nKelle\nKimi\nLanette\nLissa\nLona\nLore\nLorretta\nLulu\nLynetta\nMargot\nMark\nMarlena\nMaya\nMillicent\nMinerva\nMinnie\nNedra\nPortia\nPrincess\nRaylene\nReyna\nSean\nSharee\nSharen\nSherril\nShiela\nStar\nStefani\nSuzann\nSuzi\nTerre\nThea\nTonie\nTonja\nVonnie\nAdriene\nAlejandra\nAlta\nAlthea\nAlva\nAlyson\nAnnabelle\nBarbra\nBev\nBlair\nBobby\nBrandy\nCarolee\nCecily\nChana\nCharla\nCherise\nCherrie\nClaudine\nCleo\nCorey\nCorine\nCornelia\nCruz\nDarci\nDarcie\nDayle\nDevon\nEulalia\nGeorge\nGertrude\nGia\nGiselle\nGlynis\nJacqulyn\nJaye\nJayme\nKaryl\nKathlyn\nKathryne\nKevin\nKit\nLaure\nLeanora\nLeatha\nLeta\nLoni\nLucie\nMadonna\nMarcelle\nMarianna\nMarissa\nMaritza\nMarybeth\nMaryjo\nMicaela\nMiranda\nMissy\nMoira\nNancie\nNatasha\nNoemi\nNorine\nParis\nPaul\nRaymond\nRenea\nRichelle\nRonald\nRosana\nRoxan\nSelena\nSharilyn\nSheryll\nSindy\nSophie\nSybil\nSynthia\nTammara\nTani\nTeena\nThomas\nTimothy\nTrish\nTyra\nValencia\nVernice\nVilma\nVonda\nAdelita\nAlvina\nAmparo\nAnamaria\nAndree\nAndria\nAnnetta\nAstrid\nBarbie\nBettina\nBobette\nBrian\nBrigid\nCandie\nCarlota\nCarri\nCasandra\nCeline\nCherlyn\nChristel\nChrystal\nCindra\nCinthia\nConni\nCristie\nCydney\nDalene\nDelene\nDennis\nDion\nDollie\nDorie\nDorrie\nDottie\nDrucilla\nEarline\nEliza\nEloisa\nFonda\nFrancis\nGemma\nGeorgetta\nGidget\nHaydee\nIsabell\nJann\nJeanene\nJenelle\nJenine\nJerrie\nJolyn\nJonelle\nJulieta\nKathern\nKathey\nKenneth\nKimberlie\nKristal\nLanita\nLaraine\nLarhonda\nLark\nLatricia\nLelia\nLeonore\nLolita\nLonna\nLonnie\nLottie\nLyndi\nLynelle\nLynnel\nMabel\nMadelyn\nMargret\nMariana\nMarna\nMaryjane\nMatilda\nMichel\nMonette\nNelda\nPenney\nRaeann\nRafaela\nRandie\nRegan\nRicki\nRomona\nRozanne\nSamantha\nSarita\nShana\nSharyn\nShawneen\nSherill\nSherree\nSheryle\nSidney\nStephenie\nTamy\nTamyra\nTanja\nTia\nTisha\nTommi\nTony\nValeria\nValinda\nValli\nVelia\nViveca\nWende\nWinnie\nWynona\nAlba\nAline\nAlisia\nAlondra\nAlycia\nArcelia\nAutumn\nBessie\nBonni\nBrita\nCallie\nCameron\nCammy\nCandyce\nCelina\nCharline\nChere\nCherryl\nCristine\nDanae\nDannette\nDarcel\nDarilyn\nDarline\nDarlyn\nDebera\nDemetria\nDenna\nDonalee\nDoni\nDru\nEdythe\nElayne\nElicia\nEmilie\nEric\nEvie\nFatima\nFelice\nFern\nGema\nGenise\nGenny\nGeorgianna\nGermaine\nGerry\nGiovanna\nGlory\nGretta\nHillary\nHolli\nHollie\nIrasema\nJaylene\nJeane\nJeanetta\nJeffrey\nJenise\nJewell\nJoe\nJonna\nJovita\nJulieann\nKarlene\nKary\nKathaleen\nKenna\nKimmie\nKristan\nLanora\nLarae\nLaree\nLatonia\nLauralee\nLauretta\nLawana\nLeeanne\nLeisa\nLetha\nLetitia\nLinn\nLizzie\nLorenza\nLoriann\nLorilee\nLorin\nLula\nManuel\nMaribeth\nMarlys\nMarylynn\nMelani\nMelonie\nMelony\nMelva\nMerrilee\nMicheal\nNena\nNonie\nOdette\nOllie\nOpal\nOra\nOralia\nPhillis\nPia\nPiper\nRaeleen\nRenda\nRicky\nRosaline\nRosamaria\nRosaura\nRosella\nSabina\nSalli\nSelma\nShan\nSharol\nSheena\nShereen\nSherlyn\nShona\nSoledad\nStormy\nSusann\nSusy\nTawnya\nTeresita\nTerra\nTorri\nTorrie\nTressa\nTroy\nTwyla\nUnknown\nVelina\nVonna\nWilla\nZelda\nZella\nZelma\nAbbie\nAdella\nAide\nAlane\nAletha\nAlethea\nAlexia\nAlysia\nAndi\nAndy\nAnnabel\nAnnalisa\nAnthony\nAracely\nArline\nArnita\nBelia\nBelle\nBennie\nBethany\nBrandi\nBruce\nBunny\nCandida\nCandis\nCarie\nCathlene\nCelene\nCelestine\nCharise\nCharlesetta\nChristal\nChristin\nCinda\nClementina\nCordelia\nCozette\nCrista\nDaina\nDalia\nDallas\nDanelle\nDanise\nDarby\nDaryn\nDeby\nDeeanna\nDelilah\nDelinda\nDelora\nDemetra\nDenese\nDenette\nDeniece\nDenyse\nDionne\nDodie\nDonetta\nDorri\nDrusilla\nDyan\nDyanna\nEilene\nElana\nElda\nEleanore\nElinor\nEllyn\nErmelinda\nEvelia\nEvelynn\nFrancene\nFrank\nFreddie\nFrederica\nGary\nGaylynn\nGenelle\nGerald\nGerrie\nGianna\nGinette\nGwenda\nGwyn\nHelga\nIla\nInger\nJade\nJanean\nJaney\nJani\nJaniece\nJanise\nJanyce\nJeanice\nJena\nJenee\nJenell\nJennette\nJennine\nJesus\nJohnna\nJoleen\nJolinda\nJonie\nJosefa\nJosette\nJoycelyn\nJustina\nKandice\nKarleen\nKasey\nKeli\nKendis\nKenya\nKimberely\nKimberlyn\nKitt\nKristeen\nKrystal\nLanetta\nLaquita\nLara\nLari\nLarisa\nLaurette\nLavonna\nLawanna\nLeana\nLeatrice\nLei\nLenette\nLeola\nLeonora\nLindi\nLinette\nLolly\nLoreen\nLorianne\nLorilyn\nLuanna\nLucretia\nLupita\nMargery\nMariaelena\nMarilou\nMarleen\nMarlyn\nMartine\nMarylee\nMattie\nMechelle\nMerrily\nMidori\nMignon\nMiki\nMireya\nMyrtle\nNan\nNathalie\nNicola\nNorene\nOctavia\nOlinda\nPamelia\nPhoebe\nPrescilla\nRachele\nRanae\nRebbecca\nRefugio\nReta\nRetha\nReva\nRina\nRobbi\nRosalina\nRoseanna\nRossana\nRosslyn\nRoxana\nRudy\nRuthy\nSadie\nSeaneen\nSharan\nSharie\nSharmaine\nSharolyn\nShayne\nShellee\nSoraya\nStacia\nStarr\nStephani\nSummer\nSunny\nSusi\nTama\nTamarah\nTeressa\nTerilyn\nTerresa\nThalia\nTillie\nTobi\nTona\nTracee\nValeri\nVictor\nWilhelmina\nWinona\nYvonnie\nZandra\nKaren\nSusan\nLisa\nMary\nLinda\nCynthia\nPatricia\nSandra\nDebra\nLori\nLaura\nDeborah\nJulie\nDonna\nDebbie\nElizabeth\nCheryl\nNancy\nPamela\nBarbara\nTeresa\nDenise\nDiane\nKathy\nCindy\nKathleen\nKimberly\nCarol\nSharon\nBrenda\nMichelle\nRobin\nJanet\nKelly\nMaria\nKim\nDiana\nTammy\nTheresa\nLaurie\nTerri\nRebecca\nTina\nCatherine\nJennifer\nChristine\nMargaret\nRhonda\nLeslie\nCathy\nTracy\nCarolyn\nAnnette\nValerie\nStephanie\nJudy\nWendy\nJanice\nRenee\nKatherine\nPaula\nJill\nSuzanne\nAnna\nGloria\nSherry\nDawn\nVictoria\nKathryn\nMichele\nAnn\nLynn\nVicki\nConnie\nMartha\nSylvia\nYolanda\nTeri\nJoyce\nAngela\nCarrie\nAnita\nColleen\nTamara\nAndrea\nTerry\nChristina\nBeverly\nSheila\nDana\nMonica\nYvonne\nPeggy\nVirginia\nBonnie\nRuth\nSandy\nAnne\nDarlene\nRose\nMarie\nSheri\nElaine\nGina\nTami\nLorraine\nShirley\nJudith\nJacqueline\nBecky\nGail\nAlice\nShelly\nSally\nToni\nJoan\nJane\nHeidi\nJoanne\nRegina\nDeanna\nRoberta\nMelissa\nCarla\nHelen\nJulia\nJeanette\nSherri\nVickie\nPam\nFrances\nMaureen\nRita\nSue\nMelinda\nSheryl\nBeth\nLoretta\nShelley\nCarmen\nEllen\nBetty\nAmy\nMelanie\nJeanne\nJean\nEileen\nMarilyn\nNorma\nPenny\nIrene\nDorothy\nMelody\nSarah\nVeronica\nStacy\nErin\nPatty\nLydia\nRosa\nJackie\nJamie\nWanda\nJoann\nRachel\nAlicia\nPhyllis\nCharlene\nApril\nDolores\nEsther\nRoxanne\nJan\nEvelyn\nArlene\nCharlotte\nLynne\nVivian\nPatti\nRamona\nRosemary\nShari\nStacey\nJoy\nHolly\nJo\nEva\nVicky\nJuanita\nTracey\nBelinda\nLeticia\nDianna\nJanine\nAudrey\nIrma\nJody\nDarla\nLynda\nChris\nTanya\nCecilia\nNatalie\nJenny\nCheri\nAlison\nSara\nSusie\nKimberley\nDoreen\nGrace\nMarianne\nYvette\nGlenda\nChristy\nJodi\nCarole\nLouise\nMarlene\nTammie\nDianne\nNina\nCrystal\nHeather\nKelley\nShannon\nRonda\nKerry\nLynette\nRochelle\nMarcia\nKelli\nKellie\nSherrie\nMarla\nLois\nNora\nVanessa\nConstance\nDebora\nCaroline\nJeannette\nJeri\nMargie\nFelicia\nJeannie\nRene\nRobyn\nAna\nKari\nAllison\nGwendolyn\nSonia\nAntoinette\nDoris\nGuadalupe\nJoni\nClaudia\nSabrina\nJune\nGayle\nLorie\nBridget\nCathleen\nKarla\nMonique\nEmily\nLauren\nLee\nLiz\nMarsha\nLorrie\nMarian\nJana\nPauline\nTerrie\nKristin\nJennie\nKarin\nKristen\nMona\nKay\nMarjorie\nJosephine\nKristi\nLillian\nPatrice\nRosemarie\nGretchen\nKristine\nLora\nLupe\nPriscilla\nCassandra\nBernadette\nDesiree\nJoanna\nLaurel\nMargarita\nShawn\nTraci\nBeatrice\nBertha\nCelia\nJanis\nGeraldine\nCandace\nDora\nJeanine\nLorna\nMarcella\nRuby\nAdrienne\nRosalie\nElena\nTherese\nDelia\nNadine\nTonya\nCorinne\nLucy\nStella\nAmanda\nNanette\nGinger\nIsabel\nEleanor\nOlga\nCandy\nClaire\nFrancine\nJanette\nTrina\nSuzette\nAlma\nAngie\nCeleste\nJessica\nLauri\nMarina\nNaomi\nSonya\nVera\nCherie\nRosie\nElisa\nEdith\nKatrina\nDina\nLeanne\nDena\nGeorgia\nKatie\nLeah\nOlivia\nBetsy\nChristie\nBobbie\nIngrid\nMaryann\nPaulette\nJanie\nSonja\nPatsy\nDanette\nDeanne\nMarta\nSilvia\nDella\nJayne\nKris\nCindi\nDee\nKathi\nRosalind\nAlisa\nJacquelyn\nClara\nDelores\nGwen\nEmma\nPat\nTamra\nDebi\nElsa\nSandi\nKristina\nCecelia\nDarcy\nMarisa\nMegan\nTara\nTracie\nBlanca\nHope\nJeannine\nJessie\nKerri\nKristy\nMari\nMiriam\nRosalinda\nTammi\nCamille\nEdna\nLucinda\nMolly\nMyra\nTrudy\nAmelia\nBernice\nChristi\nDebby\nLynnette\nMargo\nTamera\nIda\nKirsten\nLeann\nLucia\nKeri\nLana\nLucille\nSusanne\nFlorence\nGigi\nJerri\nKimberlee\nMarion\nNicole\nRobbin\nDanielle\nNoreen\nValarie\nBillie\nDeana\nLeigh\nLorena\nAngelina\nColette\nJodie\nLeona\nRachelle\nFaith\nJanelle\nLorri\nRaquel\nAmber\nCaren\nJuli\nShelia\nStacie\nSusana\nThelma\nLourdes\nRena\nColeen\nDeirdre\nGay\nJosie\nJudi\nCari\nLena\nMarguerite\nAnnie\nAurora\nBobbi\nDenice\nJeanie\nKathie\nMagdalena\nMarcy\nMindy\nRobbie\nWendi\nCandice\nCathryn\nLola\nLuz\nMadeline\nAntonia\nBonita\nBridgette\nBrigitte\nGenevieve\nHilda\nJohanna\nJuana\nMelodie\nShawna\nSondra\nVikki\nDori\nMaxine\nPolly\nShellie\nCorrine\nElisabeth\nJolene\nLorene\nLuann\nPearl\nAngelica\nBenita\nCristina\nEstella\nGale\nGladys\nGraciela\nDeena\nElvira\nLadonna\nLenora\nArleen\nCandi\nEsperanza\nEve\nLaureen\nNellie\nNikki\nTricia\nVelma\nWilma\nDayna\nElla\nErica\nIris\nJulianne\nKarrie\nLeeann\nMarcie\nMildred\nRoxanna\nTori\nAileen\nGeorgina\nGeri\nJosefina\nKaryn\nMercedes\nMichael\nRandi\nShelli\nAlexandra\nAva\nDeann\nHelene\nJenifer\nKristie\nSimone\nTamie\nCaryn\nJuliet\nLesley\nMaryanne\nMyrna\nPaige\nSocorro\nDixie\nGeneva\nGlenna\nJami\nJanna\nJocelyn\nViola\nCharmaine\nCora\nCyndi\nJanell\nLesa\nMaricela\nPennie\nVerna\nDale\nDebbi\nDorene\nMarci\nMitzi\nPamala\nSusanna\nSuzan\nAdriana\nCara\nDanita\nDeedee\nFrancisca\nGreta\nLani\nLenore\nMisty\nPenelope\nRosario\nTerese\nAbigail\nCheryle\nConsuelo\nDona\nElise\nErika\nHenrietta\nHilary\nJaime\nKatharine\nKaty\nLeisa\nLilia\nLyn\nRobert\nSharlene\nSuzie\nTana\nTonia\nAngel\nDaphne\nElvia\nEugenia\nGracie\nKrista\nLaverne\nRosanna\nRosanne\nSaundra\nSherie\nTania\nDawna\nElsie\nGabrielle\nHazel\nJohn\nLea\nLila\nLoraine\nLuanne\nRoxann\nSheree\nSofia\nAdela\nAdele\nAllyson\nBambi\nBeverley\nCarlene\nClare\nCollette\nDanna\nDiann\nElva\nFrankie\nInez\nKarie\nKathrine\nLawanda\nLiane\nRoxane\nBeatriz\nBettina\nCarolina\nCorina\nDarci\nDeidre\nGayla\nGeorgette\nKendra\nKitty\nMarylou\nMaura\nMercy\nMerry\nOfelia\nRebeca\nRosalyn\nSuzanna\nViolet\nAleta\nBrooke\nCathi\nChrista\nEstela\nFaye\nFlora\nKandy\nKellee\nLanette\nLeanna\nLetitia\nMaggie\nMandy\nRebekah\nShauna\nSophia\nSuzy\nAthena\nCasey\nClaudette\nDavid\nDeeann\nEdie\nErnestina\nGaye\nIlene\nJustine\nKatheryn\nKerrie\nKimber\nLatanya\nMimi\nNanci\nPatrica\nPattie\nRenae\nRonna\nSallie\nStaci\nTamela\nAlberta\nAlexis\nAnnamarie\nCarin\nCathie\nCherri\nCori\nEvangelina\nKandi\nKate\nLeilani\nLindy\nLoreen\nLouisa\nMalinda\nMoira\nMonika\nPerri\nSydney\nTonja\nAndra\nBridgett\nCarri\nCathrine\nErnestine\nFelecia\nGena\nGerri\nJuliana\nLatonya\nLavonne\nLibby\nLidia\nLily\nLiza\nMartina\nMeredith\nNona\nSharron\nSherilyn\nSherrill\nShiela\nTwila\nCarey\nClarice\nDebbra\nFrancesca\nFreda\nGabriela\nHarriet\nHelena\nJuliann\nKyle\nLeslee\nLorelei\nManuela\nMarilee\nMinerva\nNannette\nNoel\nNoemi\nRachael\nRoseanne\nAlana\nAlyce\nBabette\nBecki\nBelen\nBernadine\nCoreen\nDorothea\nEloise\nErlinda\nEthel\nGaylene\nGinny\nHillary\nLorinda\nMark\nMarti\nMelva\nNita\nPetra\nRae\nRaylene\nRosana\nRoseann\nRoslyn\nSharyl\nTrudi\nTwyla\nValorie\nVida\nAida\nAnastasia\nAvis\nCaron\nCary\nChandra\nClarissa\nCristi\nDinah\nDorian\nFawn\nHortencia\nIsabelle\nIvy\nJaneen\nJanene\nJannette\nKendall\nLilly\nMara\nMargot\nMeg\nMickey\nNicki\nNola\nReba\nRenita\nSerena\nSherryl\nStarla\nTammara\nThea\nTia\nTresa\nTrisha\nVickey\nAbby\nAda\nAdrian\nAgnes\nAlthea\nAmalia\nAngelita\nAntionette\nCarlotta\nCassie\nCelina\nCharleen\nDarleen\nErma\nFay\nGuillermina\nJacki\nJoanie\nJoellen\nJuliette\nLesli\nLita\nLuana\nMachelle\nMarva\nNancie\nPamella\nRichard\nRosalia\nSandie\nSharyn\nTaryn\nTracee\nValencia\nVenetia\nAdeline\nAdriene\nAimee\nCarie\nCarmela\nCarmelita\nCharla\nConcepcion\nCyndee\nDalene\nDanelle\nDaria\nEsmeralda\nFrancis\nKarlene\nLezlie\nLia\nLillie\nLizabeth\nLonnie\nLou\nLucretia\nLuisa\nMarty\nMaryellen\nMelba\nMuriel\nNeva\nRaelene\nTambra\nTrish\nValeria\nVeda\nZoe\nAlesia\nAlyson\nAngelia\nBarbra\nBrandy\nCatalina\nCoral\nCory\nDede\nDelilah\nDolly\nEmilia\nGilda\nGriselda\nJanel\nJohnna\nJudie\nKara\nKaye\nKeely\nKelle\nLaurene\nLianne\nLise\nLoree\nMadelyn\nMaryjo\nMay\nMelisa\nMicki\nMissy\nMollie\nNicolette\nPeri\nRhoda\nRichelle\nRoxana\nRuthie\nStacia\nSteven\nTari\nTena\nTeressa\nVenita\nVenus\nAlejandra\nAnette\nArcelia\nBev\nBrigid\nCarmel\nCaryl\nCorey\nCruz\nDara\nDarcie\nElana\nJames\nJewel\nKarol\nKarri\nKimberlie\nKym\nLeesa\nLeila\nLeonora\nLetha\nLindsay\nLinnea\nLissa\nMarietta\nMarissa\nMerri\nNickie\nPenni\nRomona\nRoseanna\nRosella\nRosetta\nSelina\nSindy\nTammera\nTeena\nTeresita\nTorri\nTroy\nWillie\nAnnemarie\nBessie\nBrigette\nCris\nDaisy\nDeloris\nDorinda\nEden\nEdwina\nElissa\nEloisa\nEster\nEunice\nFern\nFonda\nFran\nGeralyn\nGermaine\nGisele\nHannah\nJacque\nJayme\nJerry\nJodee\nJoseph\nJulene\nKirstin\nLark\nLawana\nLetty\nLina\nLonda\nLory\nMae\nMariann\nMaribel\nMarisela\nMarleen\nMarybeth\nMaya\nMelodee\nRandy\nReva\nRosita\nSelena\nSharla\nAbbie\nAdella\nAdrianne\nAlanna\nAlta\nAlyssa\nAnnmarie\nAnthony\nAntonette\nArmida\nBarbie\nBerta\nCamilla\nCarleen\nCecile\nChristal\nChristene\nCristy\nDarline\nDebrah\nDeidra\nDennis\nDian\nDorie\nEvangeline\nFelice\nImelda\nIvonne\nJacquline\nJaye\nJenine\nJohnnie\nJoi\nJolynn\nJovita\nKathaleen\nKimmie\nKori\nLavon\nLeta\nLisha\nLolita\nLore\nMabel\nMartine\nMavis\nMelonie\nMillicent\nPandora\nPilar\nRenata\nRenate\nRenea\nRhea\nRoni\nRonnie\nRosalina\nSandee\nSari\nSarita\nShana\nShanna\nShirlee\nSiobhan\nStefanie\nSuzann\nThomas\nTisha\nValentina\nZina\nAdriane\nAlene\nAlfreda\nAndria\nAnnamaria\nBari\nBarrie\nBianca\nBonny\nCarolee\nCecily\nCeline\nCheryll\nChristiane\nChrystal\nCinthia\nCyndie\nCyndy\nDawne\nDelfina\nDonald\nDottie\nEllie\nFatima\nGeorge\nGiselle\nHerlinda\nHermelinda\nHolli\nHortensia\nIna\nJacklyn\nJanett\nJann\nJeanene\nJonna\nJulee\nJulieta\nKaron\nKarren\nKathlene\nKimberli\nLauretta\nLaury\nLicia\nLili\nLizbeth\nLoni\nLouann\nLupita\nMarcela\nMarlena\nMaryjane\nMatilda\nMattie\nMerrie\nMerrilee\nMicaela\nMichell\nMila\nMirna\nNelda\nNelly\nOdette\nSharilyn\nSheena\nShelby\nStephani\nTamala\nTawnya\nTeddi\nTomi\nTommie\nTonette\nTrena\nWinona\nYolonda\nAlecia\nAngelique\nBeckie\nBelia\nBelle\nBette\nCameron\nCamie\nCandis\nCarmella\nCharisse\nChere\nCinda\nClaudine\nCorine\nCorrie\nCourtney\nDaniel\nDannette\nDenyse\nDevon\nDiedre\nElaina\nElda\nElida\nEtta\nGerry\nHerminia\nIsabella\nJannet\nJannie\nJeffrey\nJenni\nJoleen\nJolie\nJonnie\nJustina\nKimi\nKristal\nKrystal\nLajuana\nLaree\nLarhonda\nLarissa\nLeandra\nLenette\nLilian\nLorayne\nLorenza\nLorina\nLucie\nLynetta\nMadeleine\nMadonna\nMarcelle\nMaritza\nMaryhelen\nMichaela\nMichel\nNan\nNatasha\nOralia\nPhoebe\nRetha\nRicky\nRisa\nRobbi\nRona\nRoxie\nSamantha\nSharri\nSherill\nSunday\nSuzi\nSynthia\nTammey\nTamyra\nTonie\nToya\nUnknown\nVilma\nWendee\nWilla\nWilliam\nAdelle\nAdina\nAlane\nAlena\nAlex\nAlexandria\nAndree\nAnnalisa\nBarb\nBethany\nBettie\nBlair\nCallie\nCandie\nCarroll\nCatharine\nCherlyn\nCherrie\nCherry\nCherryl\nCindie\nCorinna\nCristie\nDani\nDarin\nDarryl\nDayle\nDean\nDeb\nDebera\nDebie\nDeeanne\nDeitra\nDelphine\nDenna\nDorcas\nDoree\nDru\nEdythe\nElayne\nElisha\nElma\nElyse\nEula\nEulalia\nEvette\nFrancie\nGia\nHattie\nIsabell\nIva\nJanee\nJaney\nJani\nJeana\nJenne\nJesse\nJoetta\nJohnny\nJose\nJosefa\nJoycelyn\nJulienne\nKarleen\nKymberly\nLaquita\nLari\nLarry\nLaurette\nLaurine\nLavada\nLeana\nLei\nLela\nLinette\nLoida\nLona\nLoren\nLoriann\nLorianne\nLottie\nLourie\nLuanna\nLucila\nLura\nLynell\nMargery\nMarianna\nMaribeth\nMarilou\nMelani\nMelany\nMelodi\nMina\nMonette\nNedra\nNila\nNorene\nNova\nPeggie\nPricilla\nReina\nRenay\nRonald\nRossana\nRowena\nSophie\nSusannah\nSybil\nTamar\nTedi\nTillie\nTyra\nVal\nValeri\nVannessa\nVelda\nVelvet\nVernice\nViki\nVina\nVonda\nZena\nAddie\nAdelina\nAlida\nAlisha\nAlondra\nAlva\nAmada\nAmi\nAmparo\nAnamaria\nAraceli\nAracely\nAutumn\nBeryl\nBirgit\nBlanche\nBrandi\nBridgitt\nCarlyn\nCarolann\nCatherina\nChanda\nChantay\nCharles\nCindee\nConni\nCordelia\nCornelia\nDalia\nDaniela\nDannelle\nDeby\nDedra\nDeeanna\nDelana\nDelene\nDelisa\nDemetra\nDemetria\nDenita\nDennise\nDollie\nDominique\nDonelle\nDonnell\nDorina\nDrusilla\nEarlene\nElmira\nEvelia\nEvon\nFannie\nGenie\nGenine\nGertrude\nGianna\nGoldie\nHeide\nInga\nJacalyn\nJade\nJanetta\nJaylene\nJeanna\nJena\nJil\nJoannie\nJoe\nJoella\nJordana\nJosette\nJulianna\nJulieanne\nKaran\nKarolyn\nKarry\nKathryne\nKathyrn\nKayla\nKelleen\nKerstin\nLaila\nLanita\nLarae\nLauran\nLaurinda\nLeatha\nLeeanna\nLeisha\nLeonor\nLiana\nLindi\nLoura\nLoyce\nLu\nMagda\nMamie\nMaren\nMargarite\nMariana\nMarlys\nMarna\nMaryalice\nMeghan\nMelony\nMelynda\nMia\nMillie\nMirian\nMyrtle\nNada\nNena\nNiki\nNoelle\nNorine\nOpal\nParis\nPauletta\nPixie\nPrincess\nRacheal\nRanee\nRebbecca\nRenell\nRosalva\nRosann\nRosaura\nRosenda\nSammie\nSean\nSelma\nSharee\nSharen\nShella\nShonda\nSidney\nStephany\nStormy\nTamy\nTani\nTanja\nTawna\nTawni\nTera\nTerra\nTeryl\nTobi\nTrinidad\nVelia\nVenise\nWhitney\nWilhelmina\nWinifred\nZelda\nAilene\nAlissa\nAlix\nAmerica\nAnnetta\nArline\nAurelia\nBelva\nBetina\nBeverlee\nBobette\nBrian\nBriana\nBrita\nBryn\nCaprice\nCarrol\nCherilyn\nChrissy\nChristel\nChristen\nChristopher\nClementina\nConi\nCorliss\nCorrinne\nCristine\nCyntha\nDanise\nDaryl\nDeborha\nDelicia\nDelinda\nDelora\nDene\nDenese\nDenette\nDenny\nDetra\nDietra\nDione\nDionne\nDody\nDonell\nDoni\nDonita\nDonya\nDoretha\nDoria\nDorise\nDorthy\nDyanne\nEddie\nElba\nElia\nEliza\nEnedina\nEssie\nEstelle\nEugenie\nEvalyn\nFabiola\nFelicitas\nFrancene\nFrank\nFreddie\nFrieda\nGabriella\nGayleen\nGemma\nGenia\nGinette\nGini\nGlynis\nGregory\nGricelda\nGwyn\nHellen\nHenry\nHester\nHollie\nIlona\nInes\nInger\nIsela\nJacqui\nJamey\nJanalee\nJanan\nJanean\nJanella\nJaqueline\nJeanetta\nJeanmarie\nJenise\nJennette\nJerilyn\nJerrie\nJoani\nJonette\nJudee\nJulieann\nKandace\nKandis\nKarel\nKarl\nKary\nKathe\nKathlyn\nKati\nKayleen\nKaylene\nKeli\nKenna\nKevin\nKimbra\nKimie\nKimm\nKit\nKolleen\nKyla\nKyra\nLanell\nLannette\nLara\nLaronda\nLavette\nLayne\nLecia\nLeda\nLelia\nLenita\nLeola\nLeora\nLesia\nLisbeth\nLizanne\nLonna\nLorin\nLouella\nLucina\nLuella\nMable\nMalia\nMarcel\nMarcelina\nMargret\nMariaelena\nMarilynn\nMaurine\nMechele\nMelvina\nMeri\nMerilee\nMichaele\nMickie\nMilissa\nMindi\nMiranda\nMischelle\nMitzie\nMylene\nNatividad\nNell\nNicky\nNikita\nNinfa\nOla\nOphelia\nOrtencia\nPage\nPati\nPaulene\nPollyanna\nRaeann\nRaymond\nRechelle\nReiko\nReyna\nRicarda\nRicki\nRoger\nRosalee\nRosette\nRosina\nRoxan\nRozanne\nSabra\nScarlett\nShaun\nShawnda\nSheilah\nShellee\nShereen\nSherree\nSherrell\nSherril\nSheryll\nShirleen\nSilvana\nSoledad\nSonjia\nStar\nStephaine\nStephen\nStephenie\nSusi\nSusy\nTatiana\nTeddie\nTerresa\nTessie\nTiffany\nTinamarie\nTish\nTomasa\nTressa\nTreva\nTrinette\nUrsula\nVangie\nYadira\nYulanda\nYumi\nLisa\nSusan\nKaren\nLinda\nMary\nSandra\nPatricia\nJulie\nCynthia\nLori\nLaura\nDeborah\nElizabeth\nDonna\nDebra\nDenise\nPamela\nCheryl\nNancy\nDebbie\nTeresa\nKathleen\nKimberly\nBarbara\nMichelle\nDiane\nRobin\nSharon\nBrenda\nCindy\nCarol\nKathy\nKelly\nJanet\nMaria\nJennifer\nTammy\nDiana\nKim\nTina\nRebecca\nTheresa\nLaurie\nTerri\nChristine\nCatherine\nTracy\nRhonda\nMargaret\nLeslie\nMichele\nValerie\nWendy\nStephanie\nCarolyn\nSuzanne\nCathy\nJacqueline\nAngela\nAnnette\nKatherine\nDawn\nJill\nRenee\nJudy\nPaula\nConnie\nJanice\nChristina\nDana\nMartha\nAnna\nGloria\nAnn\nVicki\nSherry\nVictoria\nSylvia\nLynn\nYvonne\nKathryn\nTeri\nYolanda\nSheila\nCarrie\nTamara\nVirginia\nAndrea\nMonica\nBonnie\nGina\nColleen\nAnne\nSheri\nTerry\nJoyce\nRuth\nAnita\nRose\nPeggy\nRegina\nMarie\nShirley\nSherri\nCarla\nLorraine\nShelly\nDeanna\nSandy\nJoan\nElaine\nSheryl\nMelinda\nMelissa\nTami\nJackie\nBeverly\nBecky\nGail\nToni\nJulia\nJoanne\nDarlene\nVickie\nJudith\nHeidi\nAmy\nRoberta\nSally\nBeth\nHelen\nPenny\nStacy\nVeronica\nMaureen\nMelanie\nAlice\nIrene\nShelley\nDorothy\nJane\nJeanne\nPam\nRachel\nShari\nMelody\nApril\nEllen\nJeanette\nRita\nMarilyn\nFrances\nJean\nBetty\nLoretta\nCarmen\nJamie\nSarah\nCaroline\nEileen\nNorma\nSue\nCharlene\nPatty\nLeticia\nLydia\nHolly\nErin\nJoann\nAlicia\nWanda\nStacey\nTracey\nDolores\nBelinda\nRosemary\nEvelyn\nRosa\nCharlotte\nShannon\nVivian\nEsther\nPhyllis\nYvette\nRamona\nDarla\nJan\nJoy\nJuanita\nChris\nJanine\nJo\nCheri\nEva\nKelli\nLynne\nHeather\nNatalie\nRoxanne\nDianna\nCrystal\nGayle\nGrace\nCarole\nKelley\nAudrey\nJenny\nLynda\nAlison\nCecilia\nArlene\nJody\nDoreen\nTanya\nVicky\nRochelle\nChristy\nKari\nMarcia\nKellie\nSara\nSusie\nTammie\nIrma\nMarlene\nJana\nLynette\nPatti\nKimberley\nMarianne\nJodi\nSherrie\nRonda\nDianne\nFelicia\nTraci\nClaudia\nDoris\nRobyn\nGretchen\nJoni\nGlenda\nLouise\nPauline\nRene\nSonia\nKerry\nShawn\nLiz\nNina\nAntoinette\nNora\nBridget\nKristi\nLauren\nMarla\nJosephine\nTerrie\nNanette\nAna\nDanielle\nGuadalupe\nJeannette\nTonya\nKarla\nLorrie\nJeri\nLaurel\nKarin\nKay\nAllison\nLucy\nDena\nKristine\nLillian\nVanessa\nCathleen\nDina\nMarjorie\nJune\nSabrina\nTherese\nAngie\nLois\nFrancine\nLorie\nCherie\nJeannie\nMargie\nLee\nConstance\nDelia\nSonya\nCeleste\nGinger\nJoanna\nMargarita\nDebora\nLorna\nMona\nTrina\nDesiree\nGwendolyn\nJanis\nLora\nStella\nDora\nCassandra\nAmanda\nRuby\nKristin\nLupe\nCandy\nMarian\nAdrienne\nJennie\nEleanor\nOlga\nTara\nAlma\nJeanine\nMonique\nNaomi\nBernadette\nKris\nNadine\nPatrice\nRosie\nCelia\nKristen\nRosalie\nBeatrice\nBertha\nEmily\nPriscilla\nJessica\nMarsha\nRosemarie\nOlivia\nSonja\nDeanne\nEdna\nJolene\nMaryann\nSilvia\nLauri\nKristy\nLucinda\nCorinne\nDarcy\nKatie\nTammi\nCandace\nAmelia\nGeraldine\nJanette\nKristina\nTracie\nJacquelyn\nSusanne\nClaire\nGeorgia\nLeah\nTamera\nDebby\nEdith\nElena\nIsabel\nMarcella\nRosalind\nCecelia\nColette\nDee\nJeannine\nMarta\nTamra\nIngrid\nMarina\nSuzette\nChristie\nElisa\nLeanne\nTrudy\nKerri\nPaulette\nAmber\nCamille\nDaphne\nLorena\nSandi\nDeirdre\nLorri\nBetsy\nDeana\nKathi\nKimberlee\nAlisa\nJanie\nKatrina\nRachelle\nBobbie\nCindi\nElsa\nJodie\nJuli\nMegan\nClara\nPatsy\nJanelle\nJerri\nJudi\nMargo\nMolly\nPat\nBlanca\nDanette\nDella\nDelores\nGigi\nGwen\nLourdes\nAngelina\nKeri\nLana\nLeann\nLeona\nLucille\nAnnie\nDeena\nStacie\nAngel\nMarcy\nPolly\nSusana\nDebi\nFlorence\nMari\nMarion\nMarisa\nMyra\nLynnette\nNikki\nNoreen\nCari\nEmma\nKathie\nLeigh\nShelli\nCara\nCaren\nEstella\nJayne\nKatharine\nTricia\nVera\nColeen\nCristina\nLena\nAntonia\nChristi\nElisabeth\nSophia\nBernice\nDenice\nJanna\nKristie\nLuz\nMarci\nMiriam\nPaige\nPearl\nCaryn\nEsperanza\nGraciela\nHilda\nJeanie\nRaquel\nRosanne\nShelia\nErika\nIda\nJulianne\nMarcie\nShellie\nAngelica\nBobbi\nDeann\nElise\nJohanna\nLucia\nMisty\nRena\nValarie\nBillie\nGenevieve\nMadeline\nNicole\nCarolina\nCharmaine\nElvira\nGeri\nHope\nJuliana\nDeidre\nIris\nMara\nMyrna\nAdriana\nAurora\nCorina\nGeorgina\nLadonna\nLiza\nMarguerite\nMichael\nRobbin\nWendi\nCyndi\nHilary\nKrista\nLesa\nLilia\nMagdalena\nRosario\nShawna\nSimone\nSondra\nJohnna\nJuliet\nKaryn\nKaty\nKendra\nKirsten\nLani\nLeeann\nLesley\nMindy\nRosanna\nDori\nJessie\nKate\nRandi\nRosalyn\nShauna\nSuzie\nThelma\nAnnamarie\nBridgette\nErica\nGay\nJuana\nLatanya\nLea\nLola\nRosalinda\nTonia\nBabette\nBrigitte\nDebbi\nLanette\nLilly\nCandice\nCorrine\nGreta\nJosie\nMaxine\nRoxanna\nVerna\nCathryn\nConsuelo\nFaith\nGabrielle\nHelene\nJanell\nLaureen\nLetitia\nLyn\nSallie\nSusanna\nWilma\nAllyson\nCora\nDale\nDawna\nDayna\nDorene\nGeorgette\nGladys\nHazel\nJenifer\nMandy\nMimi\nMitzi\nRenita\nAileen\nElva\nFaye\nGayla\nLorene\nMaryanne\nMercedes\nRobbie\nVelma\nAdele\nArleen\nAthena\nDavid\nDeedee\nEvangelina\nGale\nJami\nJaneen\nJosefina\nKarrie\nKathrine\nKitty\nLeila\nLenore\nMaricela\nTori\nCarri\nCary\nClare\nClaudette\nDanita\nFrancisca\nGracie\nJaime\nJohn\nKandy\nLavonne\nLenora\nLuann\nNannette\nSuzanna\nMalinda\nMarilee\nMeredith\nMildred\nRobert\nRoseann\nSaundra\nSocorro\nSuzan\nSuzy\nTerese\nVikki\nAlana\nCandi\nCarlene\nChrista\nErlinda\nEunice\nOfelia\nPatrica\nRachael\nSharlene\nSharron\nTamie\nAlesia\nBambi\nBeatriz\nBenita\nBonita\nBridgett\nCathi\nCollette\nDeidra\nEdwina\nElla\nErnestine\nEugenia\nLaverne\nLily\nLorinda\nLuana\nMelodie\nPenelope\nSherie\nAmalia\nCatalina\nDixie\nEve\nHelena\nIlene\nJustine\nKerrie\nLatonya\nLindy\nMerry\nShelby\nSherrill\nSofia\nTania\nTonja\nViola\nAgnes\nAlexandra\nAngelique\nAva\nCarie\nCathie\nCathrine\nCoral\nDona\nEdie\nElvia\nEthel\nHenrietta\nJacquline\nKara\nKimberli\nLoreen\nMaggie\nMargot\nMarylou\nMaura\nRae\nRebeca\nRebekah\nRoxann\nSandie\nStaci\nAida\nBarrie\nCassie\nCharleen\nDiann\nDolly\nErma\nFelecia\nFlora\nFrancesca\nGaye\nHillary\nLawanda\nLidia\nLila\nNellie\nSheree\nUrsula\nAdela\nAntionette\nClarissa\nDede\nElda\nGaylene\nGlenna\nKandi\nKarri\nLeilani\nLela\nLoraine\nMonika\nRoslyn\nVenus\nAlyce\nBeckie\nCarey\nConcepcion\nCorinna\nDarleen\nDebbra\nElana\nGerri\nGilda\nGinny\nInez\nJacki\nJocelyn\nLeanna\nLibby\nLuanne\nMariann\nMarti\nMay\nRenae\nRhoda\nStarla\nSydney\nValorie\nVelvet\nViolet\nAleta\nAngelia\nAutumn\nBernadine\nBettina\nCarmela\nCasey\nCori\nCyndy\nEloise\nElsie\nEstela\nEvette\nGeneva\nJanel\nJanene\nJoanie\nLeisa\nMarybeth\nMinerva\nPamala\nPattie\nPetra\nRichelle\nRonna\nSerena\nShanna\nShiela\nTwila\nAbby\nAdrian\nAlexis\nAlthea\nAnthony\nCarleen\nCatharine\nCecile\nCourtney\nDanna\nDarci\nFrankie\nJacque\nLesli\nMaryellen\nMissy\nRoxane\nSelena\nSelina\nAdrianne\nCharisse\nCherri\nCheryle\nCorine\nDani\nDeeann\nDorothea\nGabriela\nGuillermina\nIsabelle\nIvy\nJonna\nJuliette\nKarie\nKatheryn\nKimber\nMadeleine\nMae\nMarisela\nMarissa\nMartina\nMelisa\nMerri\nRhea\nRoseanne\nRoxana\nStefanie\nAbigail\nAlyson\nAngelita\nAnnabelle\nBonny\nBrigette\nBrooke\nCinthia\nDaria\nDorinda\nDottie\nFreda\nGeralyn\nHannah\nHerlinda\nIva\nJohna\nKathlene\nKaye\nKeli\nKimberlie\nLizabeth\nLolita\nLorelei\nLouisa\nMadonna\nMeri\nNanci\nNatasha\nNita\nPeri\nRaylene\nRosalia\nSabra\nSharyl\nSiobhan\nTawny\nTena\nVickey\nAnnemarie\nBarbie\nBethany\nBrigid\nChandra\nCorrina\nEmilia\nEster\nFawn\nGena\nJacklyn\nKarol\nKary\nKym\nLeta\nLiane\nLuisa\nMabel\nMartine\nMeg\nMillie\nPenni\nPilar\nTana\nTrena\nTrinidad\nAndra\nAraceli\nArmida\nBeverley\nCarolynn\nDarcie\nDeloris\nEarlene\nElida\nEsmeralda\nEstelle\nFay\nFrancis\nHarriet\nJudie\nJuliann\nJulianna\nKarlene\nKaron\nKendall\nKyle\nLise\nLissa\nMaritza\nMelba\nMoira\nNickie\nReba\nRichard\nRosana\nStar\nStarlene\nSuzi\nTamela\nTimothy\nValencia\nWilliam\nAda\nAlexandria\nAnastasia\nBecki\nCarin\nCarmel\nCeline\nChrystal\nCorey\nDaisy\nDannette\nDedra\nDinah\nDorie\nEloisa\nFran\nFrieda\nGregory\nHeide\nHortencia\nImelda\nJewel\nLaurene\nLeslee\nLindsey\nLonna\nLoree\nMachelle\nMadelyn\nMark\nMollie\nPandora\nParis\nRaelynn\nRenea\nRona\nRosalina\nRuthie\nSherril\nSherryl\nSoledad\nTani\nTeena\nTomi\nTracee\nTresa\nTreva\nTroy\nValeria\nViki\nVonda\nAimee\nAshley\nBessie\nCamilla\nCaron\nCoreen\nCris\nCristy\nDara\nDemetria\nDenese\nDennise\nDiedre\nDionne\nElia\nEtta\nFern\nGertrude\nJaney\nJaniece\nJeanna\nJena\nJerilyn\nJohnnie\nJoleen\nJonette\nKeely\nLaronda\nLeonor\nLia\nLinette\nLita\nLoni\nLoriann\nManuela\nMargret\nMarty\nMelodee\nMia\nMinnie\nNedra\nNeva\nNicolette\nPerla\nPortia\nRandee\nReyna\nRonnie\nRowena\nSari\nSharyn\nSheril\nTobi\nTrisha\nVenetia\nZelda\nAlberta\nAlejandra\nAndria\nAnitra\nAnnmarie\nAntonette\nAstrid\nBianca\nCandis\nCaprice\nCathlene\nChantal\nCindee\nCory\nDebrah\nDenita\nDierdre\nEden\nEllyn\nEric\nJacquelin\nJacquie\nJames\nJannette\nJayme\nJenni\nJodee\nJolynn\nJulee\nKaran\nKellee\nKori\nLauretta\nLeonora\nLezlie\nLory\nLou\nMarietta\nMercy\nMerilee\nMichel\nMisti\nMonette\nNelda\nNoel\nPamella\nPennie\nRaelene\nReina\nRossana\nSamantha\nStephani\nTari\nTawnya\nThea\nTonda\nTrudi\nVal\nValinda\nWhitney\nZena\nZoe\nAdelita\nAletha\nArlette\nBerta\nBev\nBlanche\nCarlotta\nCarmelita\nCarolee\nCecily\nCharline\nClaudine\nCristal\nCristine\nDeeanna\nDelinda\nElaina\nElizebeth\nElyse\nEnedina\nErnestina\nEvonne\nFonda\nGabriella\nGermaine\nGwyn\nJaclyn\nJeana\nJeanene\nJewell\nJoi\nKarolyn\nKelle\nKenneth\nKevin\nLanita\nLatricia\nLaurette\nLeesa\nLesly\nLetha\nLianne\nLillie\nLina\nLoralee\nLouann\nLucretia\nMargery\nMarilynn\nMatilda\nNicki\nNiki\nNoelle\nPhoebe\nRandy\nRenata\nRina\nRisa\nRoxie\nSabrena\nSean\nShanon\nShara\nSharilyn\nSharla\nSharri\nShereen\nSherilyn\nShirleen\nSoraya\nSuzann\nTamala\nTambra\nTammara\nTerresa\nTia\nTorri\nTrish\nValentina\nVirgie\nZandra\nAdelina\nAlanna\nAlene\nAlta\nAmparo\nAurelia\nBelen\nBette\nBlair\nBriana\nBronwyn\nBryn\nCallie\nCameron\nCelina\nCharla\nCherilyn\nCherrie\nCinda\nClarice\nCorrie\nCristi\nCyndee\nDanelle\nDaniel\nDawne\nDelilah\nDevon\nDiedra\nDonita\nDoria\nDorian\nDorthy\nEddie\nElissa\nFelice\nFelicitas\nFiona\nHermelinda\nIna\nJenelle\nJeni\nJesus\nJimmie\nJoellen\nJolie\nJose\nJoycelyn\nKathyrn\nKellye\nKimberle\nKimberlyn\nKimbra\nKimi\nLavon\nLawana\nLelia\nLetty\nLindi\nLinnea\nLisha\nLorina\nLuanna\nLucila\nMarcelle\nMarianna\nMarleen\nMarva\nMaryhelen\nMavis\nMelva\nMickey\nMignon\nMiranda\nMorgan\nMyrtle\nNova\nOpal\nOra\nPerri\nPhylis\nRomona\nRosalva\nRosaura\nRuthann\nSabina\nShannan\nShawnee\nSherree\nShirlene\nSidney\nStarr\nSunday\nSynthia\nTammera\nTawni\nTeresita\nTisha\nToby\nTomasa\nTommie\nTonette\nTory\nVannessa\nVida\nVilma\nWinifred\nZina\nAdeline\nAdriene\nAlecia\nAlina\nAlyssa\nAretha\nArline\nBari\nBrandy\nBritta\nCammie\nCarlyn\nCarmella\nCelestine\nCharity\nCheryll\nChristopher\nCornelia\nCydney\nDalene\nDaniela\nDarice\nDarlynn\nDebie\nDeborha\nDian\nDominique\nDonald\nDonnell\nEdward\nElba\nEmilie\nErmelinda\nEula\nFelisa\nFrancene\nGeorgianne\nGillian\nHelga\nIla\nIsabella\nJacqui\nJacqulyn\nJann\nJayna\nJenice\nJenise\nJennine\nJordana\nJosefa\nJovita\nKandice\nKarren\nKathlyn\nKelleen\nKimberely\nKristal\nKrystal\nLavada\nLeeanna\nLiana\nLonnie\nLorenza\nLorianne\nLyla\nMarcela\nMaryjane\nMaryjo\nMaurine\nMelonie\nMerrie\nMichaela\nMichell\nMina\nMuriel\nNatalia\nNena\nNoemi\nNorene\nPeggie\nRaina\nRaymond\nRobynn\nRonald\nRoni\nRoselyn\nRosetta\nRosslyn\nSalina\nSandee\nScarlett\nSelma\nShanda\nSharlyn\nShaun\nShellee\nSherill\nSherrell\nSheryll\nShirlee\nSigrid\nStephany\nTaryn\nTasha\nTeressa\nTerisa\nTessie\nThomas\nTorrie\nTreasa\nTwyla\nVeda\nWilla\nWindy\nAddie\nAdria\nAlondra\nAmie\nAndree\nAnnalisa\nAnnetta\nBarbra\nBeulah\nBirdie\nBrandi\nBrook\nCami\nCarma\nCarola\nChana\nChantay\nCharyl\nChere\nCherry\nChristeen\nChristianne\nCindie\nCruz\nDann\nDarline\nDarnell\nDebera\nDeedra\nDelfina\nDelisa\nDelphia\nDelphina\nDenette\nDenine\nDesire\nDoni\nDoree\nDoretta\nDovie\nEvangeline\nEvelia\nEvelina\nFabiola\nFlorinda\nGemma\nGeorge\nGeorgetta\nGeorgiana\nGeorgianna\nGerry\nGisele\nGlynis\nGwenda\nHattie\nHerminia\nHollie\nIlona\nInga\nIona\nIone\nJacquelyne\nJerrie\nJoette\nJona\nJonelle\nJonnie\nJulieann\nJulieta\nKathe\nKathryne\nKeith\nKenda\nLara\nLaraine\nLarhonda\nLarita\nLarry\nLauralee\nLaure\nLavern\nLeanora\nLesia\nLinnette\nLore\nLoren\nLorine\nLorretta\nLuella\nLula\nLulu\nLura\nMalia\nMamie\nMargit\nMariaelena\nMarita\nMarline\nMarquita\nMellissa\nMelodi\nMelony\nMelynda\nMicheline\nMicki\nMiki\nMila\nMirella\nNan\nNancie\nNola\nNona\nOctavia\nPaul\nPiper\nRachele\nRaeann\nRaeanne\nRayna\nRegenia\nRenate\nRenay\nRodney\nRosalee\nRosita\nSadie\nSanjuanita\nSherise\nSheron\nShona\nShonda\nSilvana\nSondi\nSonjia\nStacia\nStefani\nTamar\nTammey\nTamura\nTerra\nTerre\nTessa\nTheresia\nTiana\nTonie\nTorie\nTracye\nTressa\nTuesday\nUnknown\nValeri\nVallerie\nVelda\nVictor\nVienna\nVivien\nVonnie\nWendee\nWillie\nWinona\nZenaida\nAdella\nAdriane\nAgustina\nAlaina\nAlaine\nAlane\nAlethea\nAlex\nAlfreda\nAline\nAnabel\nAndre\nAnnabel\nAnnamaria\nAntonina\nApryl\nAracely\nArden\nBarri\nBelia\nBobette\nBunny\nCaitlin\nCarina\nCaterina\nCharissa\nChelle\nChery\nChristel\nChristiana\nChristiane\nConchita\nConsuela\nCordelia\nCorie\nCosette\nCraig\nDaina\nDalila\nDanica\nDarien\nDarlena\nDarryl\nDaryn\nDavida\nDayle\nDaylene\nDebborah\nDelma\nDene\nDeon\nDody\nDollie\nDonnette\nDonnie\nDorcas\nDoreena\nDorina\nDouglas\nDrusilla\nEda\nEliza\nEnid\nEvon\nFelipa\nFrank\nFrederica\nGary\nGaylyn\nGenie\nGia\nGisela\nGiselle\nGriselda\nGwynne\nHaydee\nHedy\nHiedi\nHolli\nHoney\nHortensia\nInes\nInger\nIvory\nJackqueline\nJacquelynn\nJanae\nJanean\nJani\nJanise\nJannie\nJasmine\nJaye\nJaymie\nJeanetta\nJeffrey\nJerry\nJillian\nJoane\nJoel\nJoella\nJoetta\nJoline\nJoseph\nJosephina\nJulienne\nKai\nKandie\nKareen\nKaryl\nKathaleen\nKatina\nKayla\nKayleen\nKendal\nKerstin\nKitt\nKiva\nKoni\nKristan\nKristeen\nLacey\nLaila\nLanna\nLarae\nLatonia\nLaurena\nLawanna\nLeana\nLeeanne\nLenna\nLesha\nLeslye\nLetticia\nLili\nLilli\nLizette\nLona\nLorenda\nLorilee\nLorin\nLorre\nLorry\nLottie\nLouanne\nLouella\nLourie\nLynell\nMachele\nMagda\nMaralee\nMardi\nMariana\nMaribeth\nMarilou\nMarji\nMarlena\nMarlyn\nMarya\nMaudie\nMaya\nMayra\nMechelle\nMeghan\nMelani\nMendy\nMerle\nMerrilee\nMeta\nMicaela\nMicky\nMilinda\nMilissa\nMillicent\nMindi\nMireya\nMischelle\nMitzie\nNana\nNettie\nNicola\nNorine\nNovella\nOphelia\nPaulina\nPhillip\nPollyanna\nRacheal\nRaeleen\nRamie\nRanae\nRegan\nRetha\nRhona\nRinda\nRonelle\nRoseanna\nRosella\nRozanne\nScott\nSeana\nSerina\nSharleen\nShaunna\nSheena\nShelle\nSheralyn\nSheridan\nShonna\nSindy\nSiri\nSonna\nSophie\nStephenie\nSteven\nSuanne\nSuellen\nSybil\nSylvana\nTanja\nTeddi\nTera\nTereasa\nTereza\nTerilyn\nTheodora\nTorey\nVada\nValery\nVelia\nVena\nVenessa\nVenita\nVerda\nVeronique\nVicenta\nViviana\nVivienne\nWinnie\nYasmin\nZora\nLisa\nKaren\nSusan\nMary\nLinda\nCynthia\nJulie\nLori\nPatricia\nDeborah\nLaura\nSandra\nKimberly\nDonna\nTeresa\nDebra\nElizabeth\nPamela\nMichelle\nDenise\nDebbie\nKelly\nNancy\nCheryl\nBarbara\nKathleen\nMaria\nRobin\nKathy\nBrenda\nSharon\nDiane\nJennifer\nTina\nTammy\nCindy\nCarol\nKim\nTracy\nDiana\nChristine\nJanet\nTheresa\nRebecca\nLaurie\nTerri\nSuzanne\nLeslie\nCatherine\nRhonda\nMargaret\nMichele\nStephanie\nWendy\nRenee\nCarolyn\nAngela\nValerie\nSherry\nCathy\nDawn\nJill\nAnnette\nAnna\nJacqueline\nKatherine\nDana\nGina\nChristina\nConnie\nJudy\nSheri\nVictoria\nGloria\nMonica\nAnn\nJanice\nMartha\nPaula\nSheila\nKathryn\nTamara\nYvonne\nSylvia\nSherri\nLynn\nVicki\nCarrie\nAndrea\nMelissa\nTeri\nYolanda\nBonnie\nCarla\nVirginia\nShelly\nColleen\nDeanna\nAnita\nLorraine\nDarlene\nAnne\nRegina\nShelley\nBeverly\nTami\nAmy\nHeidi\nSheryl\nJane\nVeronica\nTerry\nRuth\nJamie\nJulia\nRose\nStacy\nToni\nMelinda\nShari\nMarie\nSandy\nJeanette\nJudith\nJoyce\nStacey\nPeggy\nShirley\nMaureen\nGail\nTracey\nBecky\nElaine\nHelen\nAlice\nJoanne\nRoberta\nMelanie\nJoan\nIrene\nNorma\nHolly\nPenny\nJackie\nRita\nYvette\nBeth\nPam\nCarmen\nSarah\nSally\nVickie\nRachel\nSue\nJeanne\nJean\nDorothy\nAlicia\nEileen\nErin\nCharlene\nRosa\nApril\nMarilyn\nFrances\nWanda\nEvelyn\nNatalie\nMelody\nEllen\nRosemary\nShannon\nLydia\nJuanita\nHeather\nDolores\nJoann\nBetty\nCheri\nLoretta\nPhyllis\nKimberley\nCaroline\nPatty\nJoy\nDarla\nRamona\nBelinda\nCecilia\nLeticia\nChris\nTammie\nEva\nKelley\nRonda\nTanya\nAudrey\nLynda\nLynne\nCharlotte\nSara\nJanine\nKelli\nCrystal\nRobyn\nJenny\nVivian\nEsther\nRoxanne\nIrma\nAlison\nDina\nMarianne\nSherrie\nDianna\nKari\nKerry\nJodi\nTonya\nChristy\nArlene\nJan\nJana\nGrace\nMarcia\nPatti\nMarlene\nMarla\nVicky\nKellie\nDoreen\nNina\nJody\nRene\nDianne\nJo\nGlenda\nTraci\nAna\nGuadalupe\nRochelle\nLynette\nSonya\nSusie\nKristi\nMargie\nSonia\nKarin\nKristin\nFelicia\nLucy\nAntoinette\nDena\nJeannette\nKristine\nKarla\nTrina\nGayle\nJessica\nVanessa\nDoris\nSabrina\nAllison\nGwendolyn\nTracie\nLeah\nLorie\nCarole\nCathleen\nLouise\nDesiree\nLauren\nCherie\nCassandra\nDanielle\nLorrie\nJoni\nJosephine\nJune\nBridget\nJoanna\nLillian\nShawn\nClaudia\nTerrie\nKatrina\nLeanne\nKay\nKristen\nLiz\nMarjorie\nGretchen\nLupe\nPauline\nAlma\nDebora\nMonique\nPriscilla\nEmily\nJeannie\nLois\nLora\nCandace\nCeleste\nNora\nDora\nNicole\nDaphne\nEleanor\nKris\nKristina\nSuzette\nAmanda\nConstance\nIsabel\nJanette\nRosemarie\nDeanne\nJennie\nNadine\nAdrienne\nJeanine\nMona\nGeraldine\nMargarita\nSilvia\nAngie\nJeri\nLee\nStella\nTara\nBeatrice\nMarcella\nRosalie\nMarian\nBertha\nCorinne\nLaurel\nFrancine\nGinger\nBernadette\nDelia\nEdith\nOlivia\nRuby\nElena\nLorna\nOlga\nCelia\nTherese\nKerri\nSonja\nKimberlee\nKristy\nLauri\nBlanca\nMarta\nNaomi\nMarsha\nSophia\nSusanne\nDeena\nNanette\nElisa\nGwen\nTammi\nCandy\nGeorgia\nJeannine\nLorena\nElsa\nMarina\nClaire\nIngrid\nAmber\nBetsy\nJudi\nMargo\nCecelia\nShellie\nCamille\nDeana\nSusana\nLana\nMolly\nAngelina\nChristie\nIda\nJacquelyn\nKatie\nLorri\nPatrice\nRosalind\nTamra\nAnnie\nCara\nColette\nDee\nKathi\nMegan\nMiriam\nTamera\nTrudy\nCindi\nMaryann\nGigi\nKeri\nLesa\nAmelia\nErika\nMarcy\nPaige\nPaulette\nRosie\nShelli\nSondra\nStacie\nCari\nJodie\nRena\nSandi\nShawna\nAngel\nBobbie\nClara\nDanette\nLeann\nLucinda\nDeirdre\nJanie\nJanis\nRachelle\nEmma\nSuzy\nVera\nAlisa\nDelores\nJami\nJohanna\nDarcy\nElisabeth\nErica\nJolene\nKara\nAngelica\nLadonna\nLourdes\nLynnette\nNoreen\nColeen\nPat\nHilda\nKaryn\nLena\nMagdalena\nValarie\nBrigitte\nShauna\nBillie\nDebby\nEdna\nEsperanza\nJuli\nKirsten\nLuz\nMarci\nRosalinda\nJenifer\nKristie\nLatanya\nMarion\nRaquel\nSaundra\nAllyson\nArleen\nBernice\nFaith\nJanelle\nJulianne\nMadeline\nMercedes\nThelma\nCristina\nDenice\nJuliet\nKendra\nNannette\nCorina\nJayne\nJessie\nLeigh\nLesley\nMari\nMarisa\nMichael\nTricia\nChristi\nDawna\nGenevieve\nMarguerite\nVerna\nAurora\nDayna\nDebi\nDella\nElvira\nLola\nMisty\nShelia\nCaren\nCaryn\nDeidre\nFlorence\nLeeann\nLucille\nMarcie\nSuzie\nAdriana\nAthena\nCarolina\nCora\nDorene\nGena\nLeona\nMelodie\nTania\nAdela\nAlexandra\nBridgette\nConsuelo\nDeann\nHope\nJanell\nMyra\nPolly\nRobbin\nStaci\nTiffany\nAntonia\nBonita\nDebbi\nGraciela\nJanna\nJerri\nMaxine\nRae\nBobbi\nJeanie\nKaty\nMildred\nSusanna\nWendi\nBridgett\nCollette\nGeorgina\nJuliana\nKatharine\nLaureen\nNikki\nRandi\nRosanne\nRosario\nElise\nElva\nInez\nJosefina\nMindy\nPearl\nRebekah\nSuzanna\nCarey\nDanna\nDona\nGabrielle\nHelene\nHilary\nKrista\nLorene\nMeredith\nMyrna\nSocorro\nAdele\nAileen\nAlesia\nBeatriz\nCandice\nCathie\nElvia\nEugenia\nEve\nGay\nKathie\nLea\nLeilani\nMaura\nPatsy\nTonja\nChrista\nDavid\nEstella\nGladys\nJocelyn\nJuana\nJuliette\nLilia\nErnestine\nFelecia\nFrancesca\nJaime\nKerrie\nLenora\nLyn\nMitzi\nAda\nAnnamarie\nArmida\nDale\nDori\nJosie\nLatonya\nLetitia\nMara\nMimi\nPamala\nPenelope\nRobert\nRoxane\nSherie\nTonia\nTori\nAngelique\nAva\nBettina\nCathryn\nCharmaine\nDixie\nKarrie\nLeanna\nLily\nMarylou\nOfelia\nRoxanna\nCarmela\nKate\nLeila\nMaggie\nMarisela\nMelisa\nAgnes\nCathrine\nCori\nCorrine\nGale\nHelena\nHenrietta\nIris\nJohn\nKarri\nLiza\nMissy\nRenae\nRosanna\nSuzan\nCatalina\nClarissa\nClaudette\nCourtney\nDeedee\nDorinda\nEdie\nElsie\nEvangelina\nFlora\nGracie\nJames\nJannette\nJohnna\nKandi\nKarol\nLolita\nMarti\nMerry\nNellie\nPetra\nRoseann\nSherryl\nTamie\nAdrian\nAida\nBrooke\nCarleen\nCyndi\nJustine\nLavonne\nLibby\nRobbie\nRoxann\nSelina\nSerena\nVelma\nAbigail\nAlexis\nBenita\nCandi\nCarie\nElla\nErma\nFrancisca\nFrankie\nGeorgette\nIlene\nJaneen\nLise\nLuanne\nLucia\nMaryanne\nRachael\nRosalia\nSharlene\nSofia\nStefanie\nTrisha\nValencia\nAdriene\nCary\nClare\nEstela\nFaye\nGabriela\nLenore\nLilly\nLuana\nMandy\nRebeca\nSharron\nStarla\nSydney\nTana\nTena\nWhitney\nWilma\nAnnmarie\nCarolynn\nCassie\nDanelle\nJudie\nKitty\nLani\nParis\nRenita\nShanna\nShelby\nWilliam\nAmalia\nBambi\nCherrie\nCheryle\nCristy\nDede\nEloise\nEsmeralda\nGeri\nGlenna\nKaye\nLaverne\nLawanda\nLoreen\nMachelle\nMargot\nMaribel\nMartina\nMia\nSallie\nSimone\nTammara\nTrena\nAlberta\nAnnemarie\nCarlene\nCharla\nCorinna\nDarleen\nGayla\nGerri\nHazel\nJacquie\nKandy\nKarie\nKathrine\nKimberli\nMalinda\nMariann\nMaricela\nMarissa\nMinerva\nRhoda\nRosalyn\nSelena\nSharyn\nTracee\nValorie\nVickey\nAdrianne\nAleta\nBabette\nCarin\nCristi\nDiann\nErlinda\nGinny\nHillary\nLeonor\nLorelei\nLou\nLuisa\nManuela\nMichell\nMonika\nNanci\nNatasha\nNita\nShana\nUrsula\nVikki\nViola\nCaron\nDara\nDebbra\nDeeann\nDinah\nEmilia\nEthel\nGeneva\nGwyn\nJonna\nKarina\nKimberlie\nLindy\nLoraine\nMoira\nPatrica\nPilar\nRaylene\nRonna\nSandie\nViolet\nAbby\nAlyce\nAngelia\nCarmel\nCarmelita\nCarri\nCathi\nChandra\nCharleen\nCherri\nDarci\nDolly\nDorothea\nEvangeline\nJerilyn\nJoleen\nKatheryn\nKelle\nLanette\nLawana\nLela\nLouisa\nMargret\nMarilee\nMarybeth\nMaryellen\nPattie\nRichard\nSheree\nStar\nTia\nVenus\nVida\nAnnetta\nAraceli\nBrigette\nCheryll\nCorrina\nCory\nDanita\nEdwina\nEster\nEunice\nFatima\nGaylene\nGeralyn\nHerlinda\nIsabelle\nJacki\nJeanna\nKrystal\nLatonia\nLesli\nLia\nLonnie\nMarcelle\nMeg\nOphelia\nRaelene\nRosalee\nTambra\nTari\nTerese\nThea\nAdeline\nAlana\nAlanna\nAnthony\nAntionette\nBeckie\nBeverley\nBrandy\nBrigid\nCasey\nCharisse\nCornelia\nDarcie\nDevon\nDorie\nFelice\nGeorgianna\nGilda\nJayme\nJuliann\nKimber\nLezlie\nLillie\nLoren\nLorinda\nLuann\nLucila\nMarlena\nMarva\nMelina\nMelva\nMichel\nMickey\nReba\nRoseanne\nRowena\nSamantha\nSharla\nSherilyn\nSherrill\nStacia\nStarr\nSuzann\nTamela\nTawny\nTonette\nTrudi\nValentina\nZina\nAdelina\nAlecia\nAlejandra\nAnnamaria\nAntonette\nBernadine\nBethany\nBianca\nCallie\nCindie\nClarice\nCorey\nDaniel\nDaria\nDeborha\nDelilah\nDonita\nElia\nErnestina\nEvette\nGiselle\nGregory\nJacque\nJacquline\nJanel\nJenise\nJohnnie\nJulianna\nKarey\nKayla\nLeisa\nLetha\nLidia\nLizabeth\nLoriann\nMadelyn\nMae\nMagda\nMaritza\nMay\nNedra\nNena\nNoemi\nNona\nPage\nPeri\nRandy\nReina\nRhea\nRichelle\nRona\nRonnie\nRoslyn\nRoxie\nRuthie\nSabra\nSharilyn\nSharyl\nSophie\nSuzi\nSybil\nVenita\nAlene\nAlthea\nAmparo\nAnastasia\nAnnabelle\nBarbie\nBelen\nBonny\nDebrah\nDeidra\nDominique\nElaina\nEvonne\nFay\nFreda\nGabriella\nGaye\nGreta\nHarriet\nHollie\nIvy\nJeana\nJerry\nJulee\nKyle\nLauretta\nLeesa\nLila\nLisha\nLissa\nLoree\nLory\nMarcela\nMargery\nMarty\nMeri\nNatalia\nNicki\nNola\nPenney\nRisa\nRocio\nRosita\nScott\nSharie\nShaun\nStephani\nTammera\nTani\nTeena\nTresa\nTroy\nVelvet\nWinifred\nZena\nZoe\nAdina\nAndra\nAndria\nAutumn\nAvis\nBarrie\nBerta\nBette\nCamilla\nChrystal\nCyndy\nDahlia\nDarline\nDebie\nDenette\nDenine\nDottie\nElba\nEtta\nFonda\nGia\nGillian\nHallie\nInes\nJaney\nJenine\nJoanie\nJovita\nKathaleen\nKeli\nKimberle\nKristal\nLaronda\nLaurette\nLaurinda\nLeslee\nLetty\nLianne\nLindsay\nLinette\nLorretta\nLynelle\nMadonna\nMarianna\nMartine\nMaya\nMercy\nMignon\nMollie\nNan\nNicolette\nNorene\nOralia\nPenni\nPhoebe\nPortia\nRosalba\nRosetta\nRossana\nRoxana\nSandee\nSelma\nShiela\nSindy\nTawnya\nTeresita\nTeressa\nTobi\nTwyla\nVal\nVeda\nAngelita\nBecki\nBriana\nCammie\nCecile\nCharles\nCinthia\nConcepcion\nCristie\nDaina\nDalene\nDani\nDannette\nDawne\nDelfina\nDennise\nElissa\nEliza\nErmelinda\nGermaine\nGriselda\nHortencia\nJena\nJeni\nJenna\nJennette\nJenni\nJolie\nJose\nJosette\nJulene\nKasey\nKathlene\nKellee\nKendall\nKymberly\nLarhonda\nLeeanne\nLeora\nLinnea\nLorine\nLucretia\nMadeleine\nMaia\nMalia\nMarietta\nMaryjane\nMayra\nMechelle\nMelba\nMelodee\nMerri\nMisti\nMuriel\nNelda\nNettie\nNichole\nNoelle\nOdette\nPandora\nPennie\nReva\nReyna\nRomona\nRonald\nRosalina\nRosalva\nSeptember\nShannan\nSharen\nSharolyn\nSheli\nShirlee\nSteven\nSusann\nTamora\nThomas\nTomi\nTwila\nYolonda\nAdria\nAlyson\nAnnabel\nBev\nCameron\nCaprice\nCathey\nCherise\nCherry\nCindee\nConni\nDarlena\nDavida\nDedra\nDelana\nDelinda\nDenna\nDollie\nDonell\nEloisa\nEnedina\nEric\nEricka\nEstelle\nGiovanna\nGlynis\nGuillermina\nHayley\nIna\nIone\nIsabella\nIva\nJacklyn\nJacquelin\nJannell\nJeffrey\nJerrie\nJewel\nJodee\nJoycelyn\nKarlene\nKarolyn\nKarry\nKevin\nKolleen\nKym\nLaila\nLaraine\nLauna\nLawanna\nLeta\nLonna\nMariaelena\nMarleen\nMaryhelen\nMaryjo\nMelodi\nMicaela\nMichaela\nMillicent\nMillie\nNancie\nNicola\nNova\nRanae\nRayna\nRosaura\nSeana\nSharee\nSoledad\nStefani\nSuzana\nSynthia\nTommie\nTreva\nTrish\nValeria\nViki\nVonda\nVonnie\nWillie\nYevette\nZelda\nAdelaida\nAimee\nAlethea\nAlexa\nAlexandria\nAlycia\nAnette\nBarbra\nBeatris\nBlair\nBrinda\nBritt\nCami\nCandis\nCarina\nCarolee\nCelestine\nCelina\nChana\nChristal\nChristiane\nCinda\nConcetta\nCoral\nCoreen\nCyndie\nDaisy\nDann\nDebera\nDeeanna\nDeedra\nDelphine\nDian\nDiedre\nDonald\nDonelle\nDorian\nEdward\nElayne\nElida\nElonda\nFawn\nFrancie\nGeorgine\nImelda\nJacqui\nJamey\nJammie\nJanean\nJasmine\nJeanene\nJeanetta\nJenell\nJenelle\nJewell\nJoelle\nJoi\nJulieann\nKaran\nKary\nKathe\nKeely\nKellene\nKellye\nKenneth\nLacey\nLafondra\nLaurene\nLavada\nLavonna\nLenette\nLeonora\nLiana\nLoralee\nLus\nMaile\nMamie\nMaribeth\nMaricella\nMarilou\nMarisol\nMarnie\nMarnita\nMavis\nMerilee\nMicki\nMina\nMinnie\nMischelle\nNadia\nNickie\nPaulina\nPia\nPiper\nPricilla\nPrincess\nRaymond\nRegena\nRenea\nRicki\nRobbyn\nRoni\nRoselyn\nSarita\nShara\nSharri\nShelle\nSiobhan\nStarlene\nStephenie\nSusy\nTaryn\nTimi\nTonie\nTracye\nVelda\nVenetia\nXochitl\nAlena\nAlfreda\nAline\nAlyssa\nAnamaria\nAnamarie\nAnitra\nArlette\nBennie\nBethann\nBlanche\nBrandi\nBrett\nBrigit\nCamie\nCandee\nCarmella\nCaryl\nCathlene\nChantal\nChari\nCharlena\nCheree\nCherryl\nChimene\nChristene\nChristopher\nCorena\nCris\nCristal\nDeadra\nDeeanne\nDeette\nDemetria\nDenee\nDetra\nDodie\nDorcas\nDorrie\nDory\nEarlene\nEarline\nEden\nEllie\nEnid\nEraina\nEugenie\nFelicitas\nFiona\nFrancis\nFrank\nFrieda\nGlynnis\nHali\nHattie\nHaydee\nHeide\nIleen\nIrasema\nIvonne\nJaimie\nJani\nJanina\nJanise\nJaylene\nJenice\nJesse\nJohnny\nJolynn\nJonette\nJonnie\nJoseph\nJustina\nKandace\nKemberly\nKenna\nKimi\nKimm\nKimmie\nKira\nKirstin\nKit\nKoni\nKori\nLanae\nLanetta\nLanita\nLara\nLarraine\nLauralee\nLaure\nLeisha\nLeola\nLesia\nLiane\nLina\nLindsey\nLisabeth\nLisbeth\nLita\nLu\nLuanna\nLulu\nLuwana\nMarcelina\nMaren\nMarguerita\nMarilynn\nMark\nMarquita\nMaryalice\nMarylin\nMelani\nMelonie\nMelony\nMerrie\nMickie\nMilissa\nMiranda\nMirna\nMonette\nMyriam\nNeva\nNoel\nPeggie\nPerla\nRaeann\nRenay\nRetha\nRina\nRosamaria\nRosann\nRosella\nRuthann\nSharleen\nShellee\nShereen\nSherre\nSherrilyn\nShonna\nSidney\nSunday\nSusannah\nSusi\nSuzzanne\nTamar\nTanja\nTerre\nTess\nToby\nTyra\nValeri\nVenessa\nVivien\nAdelaide\nAdelia\nAdriane\nAlaina\nAlan\nAlba\nAlisha\nAlissa\nAlta\nAlva\nAmada\nAmie\nAnastacia\nAndre\nAngelika\nAngeline\nArcelia\nArdith\nArlyn\nAudry\nBarri\nBernita\nBessie\nBlythe\nBrian\nBrita\nBronwyn\nCarlota\nCarlotta\nCarlyn\nCarolyne\nCasandra\nCatharine\nCatrina\nCharise\nCharlyn\nCharyl\nChristel\nClaudine\nCorine\nCorrie\nCosette\nCristela\nCristine\nCruz\nCyndee\nDalia\nDanetta\nDania\nDaphine\nDarlynn\nDaryl\nDavina\nDe\nDeanie\nDeby\nDeloris\nDenell\nDenese\nDevi\nDiannia\nDionne\nDonetta\nDonya\nDore\nDoretta\nDouglas\nDrusilla\nElizebeth\nElodia\nElouise\nEna\nEulalia\nEvelia\nFanny\nFelipa\nFran\nFrancene\nGari\nGary\nGaylyn\nGenelle\nGerry\nHedy\nHolli\nHollis\nHoney\nHortensia\nIlda\nIsabell\nIvette\nJackqueline\nJamee\nJanalee\nJannie\nJaye\nJayna\nJeane\nJeanmarie\nJeannett\nJennell\nJodene\nJon\nJona\nJonni\nJosephina\nKami\nKandis\nKarlyn\nKarole\nKaroline\nKaron\nKatheleen\nKathrin\nKathryne\nKelleen\nKimberely\nKimbra\nKimiko\nKorinne\nLacy\nLajuana\nLanell\nLashaun\nLavina\nLawrence\nLecia\nLili\nLilian\nLizette\nLona\nLoni\nLorenza\nLorry\nLouann\nLupita\nLynell\nMardell\nMarge\nMariana\nMarilu\nMarivel\nMattie\nMaurine\nMelynda\nMitzie\nMyrtle\nNelly\nNinfa\nNyla\nOdessa\nOlive\nPamella\nPaul\nPerri\nPhillip\nRacheal\nRachele\nRaina\nRenata\nRhona\nRicarda\nRichele\nRicky\nRise\nRodney\nRondi\nRoseanna\nSabina\nSerafina\nShanda\nShaunna\nSherrin\nSheryll\nSigrid\nSimona\nStephen\nSteve\nStormy\nSummer\nTacy\nTaffy\nTama\nTamy\nTasha\nTeddi\nTerie\nTerisa\nTerresa\nTessie\nThalia\nTillie\nTimothy\nTinamarie\nTisa\nTish\nTisha\nTony\nTorri\nTory\nToya\nTrenna\nTressa\nTrudie\nTyla\nValinda\nVanda\nVandy\nVannessa\nVirgie\nViviana\nWenda\nWende\nWendie\nWilla\nWynona\nYasmin\nZandra\nLisa\nSusan\nKaren\nMary\nLinda\nLaura\nCynthia\nJulie\nPatricia\nLori\nSandra\nKimberly\nDeborah\nElizabeth\nMichelle\nTeresa\nKelly\nDenise\nTammy\nMaria\nDonna\nPamela\nDebra\nJennifer\nNancy\nCheryl\nKathleen\nRobin\nDebbie\nTina\nChristine\nBarbara\nDiane\nSharon\nBrenda\nCindy\nTracy\nKim\nKathy\nRebecca\nDiana\nCarol\nTheresa\nWendy\nJanet\nLaurie\nTerri\nStephanie\nCatherine\nAngela\nMichele\nLeslie\nSuzanne\nRhonda\nGina\nPaula\nMargaret\nValerie\nRenee\nChristina\nDawn\nDana\nAnnette\nJill\nKatherine\nSherry\nMonica\nCarolyn\nAnna\nMartha\nAnn\nMelissa\nJacqueline\nAndrea\nSheila\nTamara\nShelly\nSheri\nConnie\nSylvia\nStacy\nJanice\nCathy\nJudy\nSherri\nYvonne\nDeanna\nGloria\nVictoria\nYolanda\nKathryn\nStacey\nColleen\nVirginia\nAmy\nVicki\nAnita\nTeri\nCarrie\nHeidi\nAnne\nLynn\nCarla\nRegina\nMarie\nShelley\nMelinda\nDarlene\nVeronica\nBonnie\nTami\nJulia\nSheryl\nBecky\nMelanie\nIrene\nTerry\nShirley\nHeather\nHelen\nLorraine\nYvette\nJane\nRuth\nElaine\nBeth\nJoyce\nJudith\nJamie\nShannon\nApril\nJeanette\nToni\nHolly\nJoanne\nRachel\nBeverly\nAlicia\nShari\nMaureen\nSarah\nErin\nGail\nRita\nPenny\nAlice\nSandy\nTracey\nRoberta\nCarmen\nRose\nPeggy\nJackie\nNorma\nFrances\nVickie\nCharlene\nEllen\nJoan\nDarla\nJeanne\nRosa\nMelody\nJean\nSally\nKristin\nLeticia\nNatalie\nEileen\nTanya\nMarilyn\nDorothy\nBetty\nPam\nCrystal\nEva\nCaroline\nEvelyn\nKristine\nAlison\nBelinda\nDolores\nLydia\nLoretta\nPatty\nVivian\nPhyllis\nEsther\nKelley\nRonda\nJoann\nRamona\nIrma\nKimberley\nSara\nTraci\nAudrey\nKristi\nRoxanne\nTonya\nLeah\nSonia\nKristen\nSue\nCheri\nJessica\nJo\nJoy\nRobyn\nRosemary\nDianna\nKelli\nSusie\nWanda\nDina\nJuanita\nLynne\nAna\nJenny\nKerry\nKellie\nChris\nMarlene\nShawn\nTammie\nDena\nSherrie\nGrace\nKari\nCharlotte\nAllison\nArlene\nCecilia\nSonya\nJanine\nJody\nLynette\nMarianne\nDoreen\nJodi\nLynda\nClaudia\nMonique\nPatti\nBridget\nDora\nGuadalupe\nJune\nMarcia\nNina\nVicky\nCherie\nRene\nKarla\nLora\nMarla\nChristy\nJan\nFelicia\nDesiree\nJana\nKristina\nRuby\nGlenda\nDanielle\nDianne\nKarin\nLorie\nSabrina\nAntoinette\nElena\nKirsten\nNadine\nNora\nTrina\nNicole\nOlivia\nCarole\nMarjorie\nRochelle\nJosephine\nLouise\nTerrie\nConstance\nPriscilla\nLucy\nDebora\nGinger\nLillian\nEmily\nTherese\nTracie\nKatrina\nAlisa\nPauline\nDoris\nKristy\nMargie\nTara\nAngie\nDelia\nJoanna\nJeannie\nLauren\nSonja\nDeanne\nKris\nCassandra\nElisa\nGayle\nJoni\nSuzette\nGretchen\nLee\nMargarita\nKerri\nLorrie\nMona\nVanessa\nAlma\nCandy\nJeannette\nJennie\nCathleen\nGwendolyn\nJeri\nLaurel\nAmanda\nJanette\nStacie\nCeleste\nNanette\nSophia\nBeatrice\nJeannine\nMarcella\nBernadette\nMarian\nRosemarie\nMarsha\nRosalie\nTammi\nCandace\nCelia\nGeorgia\nJeanine\nLois\nEdith\nElsa\nMolly\nLiz\nAmber\nLupe\nLynnette\nIsabel\nMaryann\nSilvia\nKay\nPaulette\nRosie\nSusanne\nTamera\nBetsy\nKatie\nDaphne\nKaryn\nShawna\nLorena\nNaomi\nAdrienne\nIngrid\nTrudy\nCara\nCorinne\nEleanor\nZina\nColeen\nLauri\nMarina\nTamra\nAmelia\nLeanne\nTricia\nEdna\nErica\nOlga\nKara\nMiriam\nStella\nColette\nJodie\nBertha\nDeena\nAngelina\nKimberlee\nSusana\nVera\nChristie\nMarta\nPaige\nRachelle\nCecelia\nClaire\nDeana\nDebby\nFrancine\nLeann\nMegan\nDelores\nGeraldine\nJolene\nLucinda\nLuz\nShelli\nTrisha\nAngelica\nBlanca\nKeri\nLorri\nPatrice\nJanie\nJanis\nLana\nLorna\nStaci\nCamille\nDarcy\nShellie\nClara\nEmma\nElisabeth\nJanelle\nKrista\nMargo\nCristina\nDayna\nLadonna\nBobbie\nJacquelyn\nDanette\nJerri\nChristi\nLesley\nMarion\nMarisa\nBernice\nCari\nJohanna\nRosalind\nSandi\nCindi\nLena\nLiza\nDee\nErika\nGwen\nJohnna\nJuliet\nKarrie\nMadeline\nNikki\nValarie\nGraciela\nJudi\nLucia\nMisty\nNoreen\nShelia\nTiffany\nWendi\nHilda\nLeona\nMyra\nRena\nDeirdre\nDella\nMarcie\nMarcy\nRaquel\nTania\nAntonia\nBillie\nDeann\nIda\nLeigh\nMichael\nMyrna\nRosalinda\nAngel\nBridgette\nConsuelo\nGeorgina\nLatanya\nShauna\nSondra\nAllyson\nAnnie\nDeidre\nDenice\nEstella\nFaith\nGenevieve\nJosefina\nLourdes\nDebi\nCaryn\nDori\nElise\nHope\nMartina\nArleen\nGabrielle\nLesa\nMarci\nPatsy\nWhitney\nAlesia\nCorina\nCyndi\nElvira\nEve\nJulianne\nLea\nMari\nGena\nJuli\nMindy\nNannette\nThelma\nBobbi\nJayne\nJessie\nMaxine\nPolly\nRachael\nSusanna\nBenita\nFlorence\nGladys\nJanna\nJuliana\nKathi\nKristie\nLatonya\nLucille\nStefanie\nSuzie\nTonia\nAdriana\nChandra\nKatharine\nKendra\nMagdalena\nMildred\nRae\nRandi\nAurora\nCaren\nCathryn\nJami\nPearl\nSharlene\nSimone\nDorene\nEdie\nEsperanza\nJuana\nLeeann\nMercedes\nShelby\nCarolina\nDanna\nDavid\nDona\nFlora\nInez\nSaundra\nBrigitte\nChrista\nDixie\nGigi\nLorene\nSocorro\nSydney\nAileen\nAlexandra\nAva\nElva\nGeri\nHilary\nKaty\nLeanna\nLilia\nMitzi\nRosario\nSuzan\nAlexis\nCora\nElvia\nEugenia\nGale\nLaureen\nMarguerite\nMaribel\nNellie\nRobbie\nRosanne\nSuzy\nTonja\nVenus\nAdela\nCharmaine\nCorrine\nDebbi\nEstela\nEvangelina\nFrancisca\nGlynis\nHelena\nHelene\nJenifer\nKathie\nLeila\nLenora\nMaggie\nRobbin\nTerese\nZena\nAdele\nAnnamarie\nCary\nDawna\nElaina\nJohn\nJonna\nLani\nLola\nLorinda\nMaura\nRebekah\nRenae\nRosanna\nSuzanna\nTwila\nBeatriz\nClarissa\nJanell\nJeanie\nRoxane\nUrsula\nAbigail\nAida\nBrandi\nCarey\nClaudette\nDeedee\nErnestine\nGeorgette\nGracie\nIlene\nJosie\nLanette\nOfelia\nShana\nSofia\nTori\nValencia\nVerna\nCandi\nCandice\nCatalina\nClare\nGabriela\nGreta\nIris\nJocelyn\nJustine\nLavonne\nLuann\nLuanne\nMelisa\nRichelle\nRoseann\nSharron\nTamie\nAmalia\nBrooke\nCarie\nCathie\nCheryle\nDanelle\nGinny\nJacquline\nJanene\nKandi\nKathrine\nKerrie\nLissa\nMalinda\nMimi\nNanci\nRoxanna\nSerena\nSheree\nAlyce\nAngelique\nCathi\nDale\nDani\nDiann\nGay\nJaime\nJaneen\nLesli\nLily\nMara\nMia\nPetra\nTrena\nViolet\nAlana\nAlyson\nAngelia\nBrandy\nCarlene\nCassie\nDanita\nEvette\nFrancesca\nHarriet\nHillary\nJuliette\nKitty\nLeilani\nLeisa\nLillie\nLou\nMaricela\nMelodie\nMeredith\nPatrica\nRobert\nRoxann\nSherie\nAthena\nBonita\nBridgett\nCori\nDevon\nDorothea\nElsie\nErlinda\nFelecia\nGeneva\nGlenna\nJaimie\nKandy\nKarri\nLawanda\nLeesa\nLila\nLina\nPamala\nPat\nRonna\nRosalyn\nShanda\nSherilyn\nSherrill\nTrish\nWilma\nAlberta\nFaye\nGayla\nIsabelle\nJayme\nJeanna\nKate\nKimber\nLetitia\nLidia\nLise\nLoraine\nLoree\nLuana\nLyn\nManuela\nMargot\nMaryellen\nMarylou\nMerry\nMonika\nPennie\nRebeca\nRhoda\nRona\nSelina\nVikki\nAda\nAntonette\nArmida\nBarbie\nCatharine\nCory\nDolly\nEunice\nHolli\nJuliann\nKarie\nKatheryn\nKellee\nLilly\nLouisa\nMarti\nMichell\nRichard\nShanna\nSharyl\nShiela\nViola\nAgnes\nAnnemarie\nBambi\nBettina\nBrigette\nCarri\nCollette\nDarci\nDeeann\nErnestina\nFreda\nHazel\nImelda\nJames\nJoanie\nJulianna\nKarol\nKym\nLaverne\nMandy\nNoel\nNoelle\nNoemi\nPenelope\nRoseanne\nRowena\nTena\nAnnamaria\nAraceli\nBernadine\nBethany\nCharla\nDara\nDinah\nElissa\nHenrietta\nJewel\nKaron\nLia\nLorelei\nMariana\nMarilee\nMarty\nMaryanne\nMeg\nMissy\nParis\nStarla\nTari\nTrudi\nValorie\nVelma\nVelvet\nZoe\nAnastasia\nBarrie\nCarleen\nCarmela\nCarmelita\nCasey\nCathrine\nCharisse\nCherise\nConcepcion\nCristine\nDebrah\nDelfina\nDorinda\nErma\nEthel\nEvangeline\nGaye\nGerri\nGriselda\nJolynn\nLanita\nLarae\nLeslee\nLindy\nLonnie\nMarianna\nMarisela\nMarissa\nRosaura\nRoslyn\nRoxana\nAdrianne\nAleta\nAlexandria\nAnthony\nAntionette\nCarin\nCeline\nDaisy\nDaria\nDeidra\nEloise\nFawn\nGaylene\nHollie\nHortencia\nJeana\nLiana\nLolita\nMark\nNatasha\nNona\nRaelene\nRaylene\nRina\nRonnie\nSallie\nSybil\nTamela\nTawnya\nTracee\nTroy\nTwyla\nWilliam\nAbby\nAdeline\nAdriene\nAlecia\nAlejandra\nAlyssa\nAndria\nAngelita\nBelen\nChrystal\nCorrina\nCourtney\nEdwina\nEster\nGabriella\nGeralyn\nGwyn\nHannah\nJanina\nJena\nKathlene\nKori\nLela\nLiane\nLibby\nLita\nMarietta\nMarlena\nMelba\nMichaela\nMollie\nNicki\nNiki\nRenita\nSamantha\nSelena\nShaun\nSherryl\nStefani\nTani\nTia\nTresa\nTreva\nAnnmarie\nBecki\nBrigid\nCaryl\nCherri\nChrissy\nCindie\nClarice\nCorey\nCorine\nCorinna\nCris\nCristy\nDominique\nElana\nEliza\nElla\nEsmeralda\nFrankie\nGilda\nHerlinda\nIlona\nIvy\nJacki\nJoetta\nJudie\nKaye\nKevin\nKimberlie\nKyra\nLatonia\nLaurene\nLawana\nLeeanne\nLetty\nLoreen\nLoriann\nLory\nLucretia\nLuisa\nMadonna\nMeghan\nMichel\nMickey\nMoira\nPattie\nSharyn\nShirl\nTaffy\nTammera\nThea\nTyra\nValentina\nVickey\nAdelina\nAdrianna\nAimee\nAlba\nAnnetta\nBessie\nBeverley\nBlair\nBonny\nChantel\nDannette\nDarcie\nDeeanna\nEden\nFay\nJacquelin\nJenni\nJoellen\nKarina\nKenna\nKenneth\nKrystal\nLynelle\nMarcelle\nMarnie\nMavis\nMercy\nMeri\nMinerva\nMisti\nNancie\nPilar\nPortia\nReba\nRocio\nRonald\nRosalia\nRuthie\nSabina\nSusannah\nTammara\nTasha\nTawny\nTeena\nTeressa\nThomas\nTimothy\nVida\nVonda\nWinona\nAlane\nAmparo\nAnnabelle\nAutumn\nAvis\nBabette\nBriana\nCarmel\nCharleen\nCherrie\nCinthia\nDarline\nEnedina\nEricka\nEugenie\nFonda\nGermaine\nGia\nGisele\nGregory\nJerilyn\nJesus\nJewell\nJohna\nJoleen\nJose\nKeli\nKerstin\nKimberely\nKimberli\nLarhonda\nLavern\nLenore\nLizette\nMadeleine\nMae\nMariann\nMaritza\nMarva\nMarybeth\nMechelle\nMelony\nMerri\nMillie\nMirna\nNan\nNeva\nNickie\nNicola\nNicolette\nOpal\nPandora\nPeri\nReina\nRenata\nSharie\nSteven\nTambra\nTimi\nVelda\nVonnie\nYolonda\nZelda\nZenaida\nAlfreda\nAlisha\nAlissa\nAurelia\nBarbra\nBerta\nCamilla\nChantal\nCharles\nCherilyn\nCheryll\nChristal\nClaudine\nCorrie\nCydney\nCyndy\nDalene\nDarleen\nDavina\nDebbra\nDelilah\nDelinda\nDennise\nDian\nDonette\nDorian\nDorie\nEarlene\nEloisa\nEmilia\nEvonne\nFrancis\nGeorgianna\nGianna\nGillian\nHortensia\nJacque\nJanel\nJaney\nJerrie\nJodee\nJoelle\nJolie\nJoseph\nJosette\nJovita\nKami\nKary\nKasey\nKatina\nKendall\nKimberlyn\nKimi\nLeonor\nLezlie\nLonda\nLouann\nMadelyn\nMaryjane\nMay\nMyrtle\nNadia\nNathalie\nNedra\nNita\nNola\nPenni\nRandy\nRebbecca\nReyna\nRomy\nRoni\nRosalba\nRosana\nScarlett\nSharla\nShaunna\nSiobhan\nSiri\nSoledad\nSophie\nStephani\nStephany\nTamala\nTana\nTanja\nTeresita\nTerisa\nTommie\nTona\nWinifred\nYevette\nAlena\nAlondra\nAlthea\nAndra\nBeryl\nBrandee\nBronwyn\nCarrol\nCecily\nChristiana\nChristopher\nCoreen\nCristi\nDanell\nDarcey\nDenese\nDonnette\nErmelinda\nGuillermina\nIna\nJanetta\nJenine\nJenna\nJohnnie\nKarolyn\nKarren\nKelle\nKira\nKristal\nKristan\nKyle\nLaurette\nLeana\nLeora\nLilian\nLiliana\nLisha\nLizabeth\nLona\nLonna\nLorine\nLorita\nLucila\nLynell\nMamie\nMarcela\nMarcelina\nMarisol\nMaya\nMelani\nMelina\nMuriel\nNatalia\nNova\nPamella\nPiper\nPrincess\nRafaela\nReva\nRosalee\nRosann\nRoxie\nSandie\nSeptember\nSharri\nSharrie\nShona\nSindy\nStar\nSuzann\nTamar\nTerilyn\nTerryl\nTomi\nTrini\nTrinidad\nTrudie\nVeda\nAdrian\nAlida\nAlina\nAlycia\nAshley\nBeckie\nBritta\nCallie\nCameron\nCammy\nCarl\nCarlyn\nCarolee\nCarolynn\nCaron\nCarroll\nCelina\nCharlyn\nChristian\nCoral\nCornelia\nCruz\nDarcel\nDaryl\nDawne\nDedra\nDelisa\nDemetria\nDenette\nDessa\nDiedre\nDonnell\nElda\nElicia\nEric\nEvelia\nFanny\nFelicitas\nGenise\nGeorgiana\nGiselle\nHeide\nIsabella\nJacklyn\nJaye\nJaymie\nJeanene\nJeanetta\nJennette\nJerry\nJillian\nJoette\nJonnie\nJordana\nJoslyn\nJulene\nKarleen\nKarlyn\nKellye\nKenda\nKimberle\nLara\nLaronda\nLauna\nLeandra\nLuanna\nMabel\nMachelle\nMaia\nMaribeth\nMaryjo\nMattie\nMelodee\nMendy\nMerilee\nMerrie\nMicaela\nMicheline\nMickie\nMindi\nMinnie\nNelda\nNena\nOdette\nOphelia\nPage\nPerla\nRanda\nRonni\nRosamaria\nRoseanna\nRosetta\nRossana\nRoy\nRozanne\nSeana\nShannan\nShawne\nShawnee\nSidney\nStacia\nSummer\nSunny\nSynthia\nTamiko\nTerra\nTisha\nTobi\nVernice\nVilma\nVita\nVivien\nWendie\nWillie\nAbbie\nAdina\nAlanna\nAlejandrina\nAline\nAlva\nAlyse\nAmie\nAnamaria\nAnnalee\nAracely\nArcelia\nBari\nBirgit\nBlanche\nBrian\nBritt\nCammie\nCandis\nCarisa\nCarletta\nCarlotta\nCharline\nCheree\nCherlyn\nChevelle\nChristene\nCinda\nConni\nCyndee\nDaina\nDawnette\nDea\nDede\nDelaine\nDelphina\nDelynn\nDestiny\nDevin\nDiedra\nDion\nDione\nDodie\nDonald\nDoni\nDonita\nDorthea\nEstelle\nFelice\nGary\nGeorge\nGidget\nGlynda\nGreer\nInes\nInger\nIrasema\nIvette\nIvonne\nJackqueline\nJaclyn\nJaniece\nJanise\nJann\nJannette\nJaylene\nJayna\nJeffrey\nJenean\nJenee\nJenell\nJimmie\nJoi\nJolyn\nJona\nJosephina\nKaran\nKaylene\nKeely\nKelleen\nKit\nKristyn\nLadana\nLamona\nLanae\nLatasha\nLaurinda\nLavon\nLavonna\nLeia\nLesia\nLeslye\nLetha\nLianne\nLindsay\nLindsey\nLinnea\nLizbeth\nLoni\nLoren\nLoria\nLorilee\nLottie\nLouella\nLoura\nLurdes\nMable\nMaeve\nMandi\nMargret\nMariam\nMarika\nMarlyn\nMarni\nMaryhelen\nMarylynn\nMelia\nMelonie\nMike\nMikki\nMonalisa\nMorgan\nNorah\nOctavia\nOralia\nPatrick\nPenney\nPerri\nPhaedra\nPhillis\nPrudence\nRachell\nRaymond\nRayna\nRegena\nRicki\nRochell\nRosalina\nRosaline\nSabra\nSabrena\nSammie\nSandee\nScott\nSharee\nSharilyn\nSharolyn\nShawnda\nSherell\nSheril\nSherre\nSherrell\nSherrilyn\nSheryll\nSloan\nSteffanie\nSusann\nSusy\nSutton\nSuzi\nTandy\nTanna\nTaryn\nTatiana\nTerresa\nTheodora\nTheressa\nToi\nToya\nTracye\nTroylene\nVal\nVernita\nWenda\nWende\nWindy\nZandra\nAdelia\nAdella\nAnabel\nAndrew\nAngeline\nAngella\nAnnabel\nAnnalisa\nAnya\nArmandina\nAstrid\nAudry\nAvelina\nBenjamin\nBernita\nBette\nBilly\nBrenna\nBrett\nBrigitta\nCami\nCaprice\nCathlene\nCecile\nChanel\nCharlette\nCherese\nCherry\nChristena\nCorene\nCrista\nCybele\nDalia\nDalila\nDanetta\nDanny\nDaphane\nDarlean\nDarnell\nDaryn\nDavida\nDebera\nDeborra\nDelana\nDeloris\nDenia\nDenine\nDenita\nDeonna\nDeserie\nDierdre\nDonetta\nDoretta\nDorine\nDorrie\nDottie\nDrucilla\nDyana\nEdward\nElia\nEllisa\nElyse\nErmalinda\nEtta\nFelicita\nFidelia\nFran\nFredricka\nGilbert\nGini\nGiovanna\nGlory\nGoldie\nGregoria\nGwyneth\nHaydee\nHedy\nHelga\nHerminia\nIleana\nInga\nIone\nJade\nJanae\nJani\nJennell\nJodine\nJoe\nJoelene\nJoella\nJohnny\nJolinda\nJonette\nJonie\nJoycelyn\nJulieann\nJuliene\nJulienne\nJustina\nKamala\nKamela\nKandice\nKarry\nKassandra\nKathaleen\nKatherin\nKathern\nKathryne\nKellene\nKeren\nKerin\nKiersten\nKimmy\nKirstin\nKonnie\nLacey\nLajuana\nLanell\nLaquita\nLaraine\nLashawn\nLavette\nLeisha\nLeone\nLeonora\nLesly\nLin\nLisbeth\nLore\nLorretta\nLourie\nLupita\nLynnda\nLynnetta\nMalia\nMaralee\nMargarite\nMarleen\nMartine\nMarylee\nMayra\nMelva\nMichaele\nMichal\nMicheal\nMichon\nMiki\nMillicent\nMilly\nMirtha\nMitzie\nNelly\nPaul\nPauletta\nPetrina\nQuinn\nRacheal\nRaeann\nRaeleen\nRaven\nRegan\nRenate\nRhea\nRhonna\nRicky\nRobbi\nRobynn\nRolanda\nRolinda\nRondi\nRosalva\nRosella\nRuthann\nSadie\nSelene\nShara\nSharra\nSharry\nShay\nShayne\nSheridan\nSherita\nSherly\nSheryle\nShirleen\nSilvana\nSloane\nSonjia\nSoraya\nStephenie\nStormy\nTam\nTameria\nTangie\nTawnie\nTerina\nTerrisa\nTessie\nThalia\nThersa\nThresa\nToby\nTorrie\nTressa\nUna\nUnknown\nValentine\nValinda\nVanetta\nVelia\nVeronique\nVictor\nVienna\nVioleta\nVivienne\nWendee\nWilla\nWinnie\nYasmin\nZaida\nLisa\nMary\nKaren\nSusan\nKimberly\nPatricia\nLaura\nCynthia\nJulie\nLinda\nMichelle\nSandra\nDeborah\nElizabeth\nDenise\nLori\nMaria\nJennifer\nKelly\nDonna\nTeresa\nPamela\nChristine\nDebra\nTammy\nRobin\nKathleen\nNancy\nCheryl\nBrenda\nTracy\nTina\nBarbara\nSharon\nDiane\nCarol\nDebbie\nDiana\nCindy\nRebecca\nDawn\nAngela\nKim\nStephanie\nWendy\nTheresa\nJacqueline\nKathy\nChristina\nCatherine\nJanet\nRhonda\nMichele\nGina\nSuzanne\nTerri\nJill\nLeslie\nLaurie\nDana\nMargaret\nValerie\nPaula\nRenee\nMonica\nAnna\nAnnette\nKatherine\nSherry\nSheila\nAndrea\nCarolyn\nAnn\nShelly\nStacy\nTamara\nMelissa\nMartha\nDeanna\nHeidi\nSylvia\nYolanda\nAnne\nYvonne\nKathryn\nAmy\nSheri\nColleen\nCathy\nStacey\nConnie\nSherri\nRegina\nCarla\nVictoria\nCarrie\nGloria\nJanice\nShannon\nVeronica\nJudy\nYvette\nLynn\nVirginia\nHeather\nMelinda\nJulia\nMarie\nAnita\nDarlene\nMelanie\nBonnie\nApril\nTeri\nRose\nAlicia\nShelley\nSheryl\nJeanette\nToni\nHolly\nVicki\nLorraine\nCarmen\nRuth\nJoanne\nJudith\nMaureen\nBeth\nShirley\nRoberta\nErin\nJoyce\nSarah\nJackie\nJamie\nTami\nBeverly\nRachel\nElaine\nIrene\nLeticia\nTracey\nAlice\nNatalie\nRosa\nHelen\nNorma\nSally\nPeggy\nKristine\nRita\nBecky\nCaroline\nJane\nJoan\nGail\nKristin\nFrances\nTraci\nTerry\nEileen\nEllen\nAllison\nPenny\nTanya\nSandy\nCrystal\nDorothy\nPatty\nDarla\nCharlene\nJodi\nMonique\nVickie\nCharlotte\nJoann\nSonia\nBetty\nJean\nKelli\nDanielle\nLydia\nKimberley\nMelody\nJanine\nKristen\nRamona\nRonda\nRobyn\nShawn\nLeah\nJoy\nPhyllis\nShari\nLoretta\nEva\nDolores\nTonya\nAudrey\nChristy\nJessica\nArlene\nFelicia\nWanda\nEvelyn\nChris\nJuanita\nAlison\nKellie\nKristina\nDianna\nDoreen\nMarilyn\nJeanne\nKristi\nVivian\nCecilia\nDina\nIrma\nKari\nAna\nBelinda\nRosemary\nSara\nPam\nSherrie\nDianne\nKelley\nNicole\nLynda\nJo\nRochelle\nKerry\nCathleen\nDesiree\nJody\nPauline\nEsther\nRoxanne\nLynette\nTrina\nBridget\nMarlene\nLynne\nSonya\nKirsten\nKarin\nTammie\nJana\nNina\nGuadalupe\nSue\nCarole\nJenny\nMargarita\nDena\nCheri\nDora\nGrace\nAntoinette\nElena\nCherie\nClaudia\nKatrina\nLauren\nTrisha\nVicky\nElisa\nLorie\nAngie\nJosephine\nJune\nMarla\nSonja\nCassandra\nKarla\nMarianne\nAdrienne\nPatti\nNadine\nSuzette\nTracie\nAmanda\nGinger\nShawna\nTara\nTricia\nGretchen\nJoanna\nSusie\nNora\nDoris\nDelia\nEmily\nJan\nJeannette\nLora\nKris\nCandace\nStella\nDebora\nJeanine\nKerri\nVanessa\nAlma\nMarcia\nNanette\nRene\nSabrina\nAlisa\nDeanne\nLee\nMarsha\nRuby\nConstance\nEdith\nJanette\nOlivia\nJoni\nKimberlee\nLouise\nTiffany\nGlenda\nGwendolyn\nKristy\nAngelica\nLupe\nMarjorie\nMargie\nOlga\nPatrice\nTerrie\nLillian\nLorena\nLorrie\nLucy\nHope\nMarina\nGeraldine\nJacquelyn\nKaryn\nMarcella\nMona\nSilvia\nErica\nGayle\nRosemarie\nIngrid\nIsabel\nLeanne\nMarian\nDeneen\nElsa\nJennie\nStaci\nLois\nLorna\nSusanne\nBertha\nStacie\nAmber\nAngelina\nDanette\nPriscilla\nCandy\nLeann\nLucinda\nPaulette\nBeatrice\nCeleste\nCelia\nCorina\nCristina\nKara\nMarci\nRosalie\nBernadette\nDeana\nGeorgia\nJanelle\nJeannie\nMolly\nEleanor\nFrancine\nShelli\nSophia\nTamera\nColette\nDarcy\nJeri\nTherese\nTammi\nChristi\nLana\nLaurel\nLiz\nMegan\nBridgette\nCarolina\nChristie\nKrista\nNaomi\nRosie\nBillie\nErika\nMaryann\nMisty\nCari\nKay\nLynnette\nShellie\nTamra\nCamille\nDaphne\nKatie\nLauri\nMarta\nMiriam\nShelia\nJeannine\nLeigh\nMarcy\nCorinne\nRachelle\nEdna\nHilda\nKeri\nSondra\nZina\nAdriana\nAmelia\nDee\nDeirdre\nSusana\nBetsy\nBlanca\nDeann\nSamantha\nJodie\nWendi\nCara\nElisabeth\nMargo\nMarion\nValarie\nDenice\nPaige\nSandi\nBobbie\nClaire\nColeen\nGena\nGraciela\nLiza\nLorri\nLourdes\nRena\nShauna\nAngel\nCecelia\nDelores\nGeorgina\nMartina\nMia\nNoreen\nTrudy\nAnnie\nDeena\nEsperanza\nJanie\nAllyson\nElise\nLatanya\nPolly\nRaquel\nBobbi\nJolene\nLesley\nLuz\nCindi\nLeona\nMarisa\nMindy\nNikki\nJami\nJulianne\nLadonna\nLucia\nPatsy\nVera\nAurora\nDayna\nFlorence\nJudi\nKendra\nKristie\nEmma\nGabrielle\nLatonya\nMari\nBrigitte\nCaryn\nClara\nElvira\nJessie\nLesa\nLucille\nAlana\nMadeline\nMagdalena\nMyrna\nEugenia\nFaith\nRosalind\nBernice\nDella\nGabriela\nGwen\nJanell\nAileen\nCaren\nDebby\nHilary\nJohanna\nJuliet\nGenevieve\nJanis\nNellie\nSaundra\nAlesia\nAntonia\nElvia\nLea\nMitzi\nJenifer\nJerri\nJuliana\nKerrie\nLena\nMaricela\nMaxine\nNannette\nAlexandra\nAthena\nCorrine\nDavid\nDeidre\nEstella\nHelena\nIda\nKathie\nLola\nLorene\nMichael\nMimi\nMyra\nShanna\nEstela\nGeri\nJosie\nLetitia\nLilia\nMandy\nRandi\nRosalinda\nCatalina\nGay\nKarrie\nMarguerite\nSherie\nTonia\nArleen\nDanna\nKathi\nMarcie\nMercedes\nNoelle\nPearl\nTori\nAnnamarie\nCharmaine\nChrista\nConsuelo\nJayne\nJosefina\nLaureen\nLenora\nOfelia\nRae\nSusanna\nWhitney\nBeatriz\nFrancesca\nGigi\nMeredith\nStefanie\nThelma\nEvangelina\nGladys\nIris\nJustine\nRobbie\nVerna\nCandice\nClaudette\nElva\nGracie\nKecia\nMelisa\nRobbin\nRosanna\nRosanne\nRoxane\nSuzan\nAbigail\nBrandy\nDawna\nDori\nHazel\nHelene\nHillary\nJohn\nLawanda\nMaribel\nMildred\nSerena\nSharlene\nSocorro\nArmida\nCarlene\nDebbi\nDebi\nEve\nJeanie\nMara\nMaura\nRosario\nSuzy\nTania\nCora\nFrancisca\nGale\nJacquline\nSheree\nSimone\nUrsula\nAdrian\nBrandi\nBrigette\nChandra\nCourtney\nCyndi\nDanelle\nDarci\nDixie\nJohnna\nJuana\nJuli\nKaty\nLeilani\nLily\nRobert\nSofia\nSuzanna\nTonja\nVikki\nCherri\nDominique\nDorene\nGeneva\nGerri\nKate\nLeeann\nLenore\nMalinda\nPatrica\nRachael\nValencia\nViolet\nAmalia\nAnastasia\nAnjanette\nAraceli\nBabette\nBenita\nBettina\nBridgett\nClare\nClarissa\nDanita\nDona\nJames\nJaneen\nJanene\nJanna\nKarol\nKatharine\nLila\nLuann\nPamala\nPenelope\nRebeca\nViola\nZena\nAdela\nAnnmarie\nAntionette\nAva\nBonita\nDeedee\nEdie\nIlene\nKimberlie\nLeonor\nMarisela\nMaryanne\nRenae\nRocio\nTamie\nTrish\nVelma\nAlejandra\nAnnemarie\nBambi\nCarri\nCathryn\nCristy\nDaisy\nElla\nGreta\nJuliette\nKendall\nLanette\nLani\nMarissa\nNona\nRoxann\nShana\nShelby\nAda\nAgnes\nAngelique\nBrooke\nCarin\nCarmela\nCasey\nChrystal\nErlinda\nEsmeralda\nGlynis\nJocelyn\nLavonne\nLilly\nLolita\nMargot\nRosalyn\nSandie\nThea\nAlecia\nBethany\nBrigid\nCathrine\nCheryle\nCorrina\nDeidra\nDiann\nDorothea\nErnestine\nFlora\nJaime\nJonna\nJuliann\nJulianna\nKarri\nKathrine\nKimberli\nLeila\nLyn\nMaggie\nMarlena\nMerry\nPetra\nReyna\nRoseann\nRoslyn\nSallie\nShiela\nSydney\nTamela\nAdriene\nAimee\nAleta\nAlyson\nBecki\nCarey\nCharisse\nCorinna\nDeeann\nEloise\nFaye\nGayla\nGlenna\nJanina\nJewel\nKimber\nLeanna\nLidia\nLoreen\nLorinda\nMichell\nNatalia\nNoel\nPat\nRebekah\nRomy\nSelina\nStarla\nTeresita\nAida\nBarbie\nCammie\nCassie\nCharla\nCori\nDale\nDaneen\nDjuna\nEdwina\nElissa\nEmilia\nEthel\nGinny\nInez\nIsabelle\nJacque\nKatheryn\nKimi\nKitty\nLaverne\nLesli\nLina\nLuisa\nMaritza\nMay\nMoira\nPennie\nRhoda\nRoseanne\nRowena\nRoxanna\nSharla\nValentina\nCandi\nCatharine\nConcepcion\nDani\nDara\nDebbra\nErma\nEster\nEunice\nKarie\nKira\nLeisa\nMachelle\nMinerva\nNoemi\nNola\nParis\nRaylene\nRona\nSherilyn\nSherrill\nTrudi\nValorie\nAdele\nAdrianne\nAlexis\nAngelia\nAngelita\nBarbra\nCarie\nChantal\nCinthia\nDorinda\nGeorgette\nHannah\nHerlinda\nKathlene\nKevin\nLibby\nLorelei\nLouisa\nMarnie\nMarylou\nMillie\nMonika\nMuriel\nNanci\nNita\nRenita\nRoxana\nSandee\nSarita\nSharron\nShirl\nShirlee\nSteven\nSuzie\nTwila\nAlissa\nAntonette\nAshley\nBronwyn\nCathie\nCherrie\nDedra\nDinah\nElana\nEvette\nFelecia\nIvy\nJeffrey\nKandi\nLashawn\nLatonia\nLeesa\nMarilee\nMarybeth\nMerri\nNatasha\nRonna\nRosalia\nSharyl\nShaun\nSophie\nStefani\nTawnya\nTerra\nTerresa\nTresa\nVenus\nVonda\nWilliam\nAlisha\nAngeline\nAnnalisa\nAutumn\nCamilla\nCarmella\nCelina\nChristen\nCorey\nDarleen\nDiedre\nDionne\nDjuana\nElaina\nElsie\nFawn\nFrankie\nFreda\nGia\nHenrietta\nInger\nJanel\nJannette\nJeana\nJeanna\nJerry\nJolynn\nJustina\nKrystal\nKym\nLatricia\nLauretta\nLela\nLuana\nMarcela\nMariana\nMarti\nMaryellen\nMelonie\nMisti\nMollie\nNicki\nRenata\nRosita\nSelena\nStar\nTerese\nTessa\nThomas\nWilma\nBeverley\nCandie\nCarmelita\nCarolynn\nCaron\nCary\nCharles\nClarice\nCollette\nCornelia\nCristi\nDebrah\nDennise\nDevon\nElia\nEricka\nGisele\nGriselda\nJena\nJenni\nKandy\nKyle\nLiane\nLindy\nLissa\nLoraine\nMadeleine\nMark\nMayra\nMelodie\nMercy\nMicaela\nNadia\nNiki\nPattie\nRomona\nRosalva\nRuthie\nSabina\nSabra\nStacia\nSybil\nTana\nTomi\nTracee\nTrena\nAbby\nAdeline\nAdriane\nAlane\nAlisia\nAlthea\nAlyce\nAnnamaria\nBarrie\nBeckie\nCathi\nCatrina\nCeline\nCharise\nCherise\nChristin\nCoral\nDannette\nDede\nDelilah\nDorie\nGermaine\nGilda\nHallie\nHolli\nHollie\nImelda\nIvette\nJaqueline\nJayme\nJesus\nJoi\nKayla\nKenda\nKirstin\nLavon\nLeta\nLetha\nLoree\nLou\nLucila\nMae\nMarcelle\nMargret\nMarianna\nMarni\nMaryjane\nMelba\nMelina\nMissy\nReina\nRenay\nRichard\nRoni\nRonni\nSean\nSoledad\nStephani\nSuzi\nTammara\nTommie\nVelia\nZelda\nAlberta\nAndree\nBette\nBlanche\nBonny\nBrenna\nBritt\nCharleen\nChristene\nClaudine\nDalia\nDaniel\nDarcie\nDawne\nDea\nDemetria\nDenine\nDiedra\nDottie\nEliza\nErmelinda\nEvonne\nGaye\nHermelinda\nJacquelin\nJulee\nKamala\nKandace\nKarina\nKellee\nKenna\nKenneth\nLaronda\nLatisha\nLaurette\nLeonora\nLillie\nLinnea\nLita\nLonnie\nLoren\nLucretia\nMadonna\nMagda\nMarcelina\nMariann\nMarty\nMaryjo\nMaya\nMeg\nMelynda\nMickey\nMindi\nMirna\nMonette\nNeva\nRhea\nRichelle\nRosalba\nShannan\nShara\nSharyn\nSheril\nSherril\nSherryl\nSusannah\nTanja\nTera\nTimi\nTrinidad\nTwyla\nVelvet\nAline\nAmparo\nAndra\nAnthony\nAurelia\nBernadine\nBerta\nBessie\nBianca\nCallie\nCami\nCarleen\nCarmel\nCarolee\nCecily\nCoreen\nCristine\nCynde\nDaina\nDalene\nDaniela\nDaria\nDenese\nDetra\nDorina\nEden\nEloisa\nErnestina\nEstelle\nFrancene\nFrancis\nGaylene\nGenoveva\nGiselle\nHarriet\nJacki\nJoanie\nJoellen\nJohna\nKami\nKarlene\nKeely\nKeli\nKelle\nKimberely\nKimberlyn\nLajuana\nLawana\nLeeanne\nLia\nLianne\nLinette\nLisette\nLorine\nLura\nLus\nMandi\nMarietta\nMarva\nMeghan\nMelony\nMichaela\nMinnie\nNathalie\nNelly\nPaul\nRaelene\nRegan\nRossana\nRoxie\nShaunna\nSheli\nShirlene\nSiobhan\nTambra\nTawni\nTonette\nVelda\nViki\nVilma\nWendee\nWendie\nZoe\nAdaline\nAdelina\nAlba\nAlexandria\nAlycia\nAmie\nAnette\nAnnabel\nArcelia\nBelen\nBev\nBonni\nCameron\nCaryl\nCecile\nChrissy\nCindie\nCris\nCruz\nDavina\nDelana\nDelfina\nDelinda\nDenette\nDenita\nDierdre\nDolly\nDonita\nEllie\nElyse\nEnedina\nEvelia\nFiona\nGianna\nGuillermina\nHeide\nJacquelyne\nJacquie\nJammie\nJannine\nJenna\nJerilyn\nJewell\nJohnnie\nJoleen\nJolie\nJona\nJose\nJoseph\nJoycelyn\nKaran\nKasey\nKathyrn\nKeisha\nKellene\nKristan\nLadawn\nLatrice\nLaure\nLaurene\nLavonda\nLeda\nLelia\nLenette\nLetty\nLindsey\nLisha\nLizabeth\nLonna\nManuela\nMarisol\nMarleen\nMatilda\nMattie\nMerrilee\nMichaele\nMichel\nMillicent\nNedra\nNicolette\nOphelia\nPandora\nPenney\nPhoebe\nPia\nPilar\nPiper\nRaelynn\nRafaela\nReba\nRisa\nRobbi\nRolanda\nRonald\nRosamaria\nRoseanna\nRosetta\nShanda\nShellee\nSherene\nStormy\nTammera\nTeena\nTena\nTereasa\nTeressa\nTia\nTiffani\nTish\nTisha\nTreva\nValeri\nValeria\nVita\nWindy\nAdelia\nAlena\nAlina\nAlyssa\nAnabel\nAnnett\nAracely\nCaitlin\nCamie\nCaprice\nCarlotta\nCasandra\nCharity\nCherry\nCheryll\nChristal\nCindra\nCorine\nCorliss\nCory\nDelma\nDeloris\nDonald\nDorian\nDyan\nElda\nElicia\nElodia\nEvangeline\nFelice\nFelisa\nFlor\nGabriella\nGeorgianna\nGidget\nGillian\nGlynnis\nGwyn\nHaydee\nHayley\nHortencia\nIleana\nIna\nIsela\nJanean\nJann\nJeanetta\nJeni\nJenine\nJina\nJodee\nJoelle\nJovita\nJulene\nJulieanne\nKarleen\nKaron\nKarren\nKaye\nKaylene\nKimmie\nLaila\nLarae\nLark\nLauna\nLaurinda\nLavette\nLeeanna\nLeslee\nLeslye\nLetisia\nLezlie\nLona\nLoralee\nLoriann\nLuanne\nLuci\nLucina\nLupita\nMabel\nMalissa\nMarchelle\nMariam\nMarlo\nMavis\nMiki\nMikki\nNancie\nNelda\nNichole\nNicola\nNorene\nOpal\nPaulene\nPenni\nRaymond\nReagan\nRicki\nRonnie\nRosana\nRosaura\nShan\nSharleen\nSigne\nStephany\nStephenie\nTammra\nTani\nTari\nTasha\nTessie\nToi\nTonnie\nTuesday\nTyra\nYolonda\nAbbie\nAdella\nAlica\nAllen\nAlysia\nAmerica\nAndria\nArlette\nBobby\nBrandie\nBrett\nBrook\nCamelia\nCarolyne\nCaterina\nCatherina\nCathlene\nCharlette\nChristel\nChristiana\nChristopher\nCina\nCinda\nCristal\nCybele\nCydney\nCyndee\nCyndie\nDahlia\nDaniele\nDannielle\nDarcey\nDaryl\nDavida\nDawnette\nDelora\nDenelle\nDenene\nDenna\nDeserie\nDominica\nDoria\nDorine\nDyana\nEdythe\nElba\nElida\nElke\nEmilie\nEnid\nEric\nEugina\nFatima\nFlorinda\nFrank\nGary\nGayleen\nGenice\nGertrude\nHaley\nHolley\nHortensia\nIlona\nInes\nInge\nJackeline\nJacklyn\nJaimi\nJanetta\nJaniece\nJasmine\nJaylene\nJenette\nJenniffer\nJerrie\nJimmie\nJoey\nJonelle\nJonette\nJordana\nJuliane\nKarey\nKarlyn\nKarolyn\nKarry\nKatina\nKenya\nKiersten\nKimiko\nKindra\nKrissy\nKyra\nLanita\nLannette\nLanora\nLara\nLavinia\nLawanna\nLesia\nLindsay\nLinnette\nLise\nLivia\nLoni\nLorin\nLory\nLouann\nLourie\nLynell\nLynelle\nMamie\nMarcel\nMargery\nMariaelena\nMartin\nMeri\nMerrie\nMichal\nMicki\nMonalisa\nNena\nNorah\nNorine\nOdilia\nPeri\nPortia\nRaeann\nRayna\nRenate\nRenea\nRenetta\nRhona\nRina\nRosalee\nRosalina\nRuthann\nScarlett\nSeptember\nSharilyn\nSharrie\nSheilah\nShonna\nSidney\nSonjia\nStarlene\nStarr\nSunny\nSuzana\nSuzann\nSynthia\nTaunya\nTerisa\nTheodora\nTobi\nToby\nTorri\nTroy\nTrudie\nTwana\nVickey\nVivien\nAdina\nAdria\nAlaina\nAlbert\nAlene\nAlethea\nAnamaria\nAnnetta\nAntoniette\nAntonio\nAriane\nAviva\nBeatris\nBelle\nBilly\nBrinda\nBronwen\nCandida\nCandis\nCandise\nCarl\nCelestine\nChana\nChanel\nCharolette\nClarise\nCleo\nCristie\nDanell\nDania\nDaniella\nDanise\nDanya\nDarcel\nDaun\nDeadra\nDeatrice\nDeeanna\nDeedra\nDelisa\nDelise\nDemaris\nDenyse\nDevra\nDia\nDian\nDion\nDollie\nDonya\nDulce\nDusty\nEarlene\nElayne\nElma\nEmelia\nErmalinda\nErnest\nEvie\nFay\nFelicitas\nFlavia\nFonda\nFran\nGabriel\nGeorgianne\nGerald\nGeralyn\nGerilyn\nGerry\nGisela\nHedy\nHelaine\nHellen\nIlda\nIleen\nIsabella\nIva\nJacqui\nJaimie\nJanae\nJani\nJaymie\nJeanene\nJeanmarie\nJeffery\nJenee\nJenell\nJesse\nJil\nJillene\nJillian\nJoane\nJodene\nJohnette\nJolanda\nJonell\nJosette\nJudie\nJulieann\nKaaren\nKamela\nKelleen\nKellye\nKimbra\nKolleen\nKori\nLadena\nLanetta\nLaraine\nLatina\nLavena\nLeasa\nLeatrice\nLeonore\nLiana\nLicia\nLisabeth\nLizette\nLonda\nLorenza\nLorianne\nLorilee\nLorina\nLorretta\nLorry\nLouella\nLucrecia\nLynetta\nManya\nMarcine\nMarguerita\nMaribell\nMarielle\nMarika\nMarilynn\nMarita\nMarsi\nMartine\nMaryalice\nMechelle\nMelani\nMeryl\nMichelene\nMichella\nMichon\nMidge\nMina\nMira\nMischelle\nMishelle\nModesta\nNell\nNohemi\nNova\nOdelia\nOdette\nOralia\nOtilia\nPaulina\nPeggi\nPerla\nPerri\nPhyliss\nPortland\nPrecious\nRana\nRandee\nRashelle\nRay\nRebbeca\nRebbecca\nRebecka\nRenette\nRickey\nRonette\nRonica\nRosann\nSanjuanita\nSanta\nSarina\nSelene\nShae\nShanon\nShareen\nSharen\nSharie\nSharol\nShawnee\nShawnna\nShay\nSheron\nSherron\nShona\nSloan\nStephaine\nSuanne\nSummer\nSunday\nSusette\nSuzzette\nSylvie\nTama\nTammey\nTandi\nTangie\nTawnia\nTawny\nTere\nTeryl\nTheda\nThersa\nThresa\nTinamarie\nTippi\nTomasa\nTonda\nTonie\nToya\nTressa\nValinda\nVallerie\nVioleta\nVirgie\nVonnie\nWenda\nWilla\nWillie\nWillow\nYasmin\nZonia\nLisa\nKaren\nKimberly\nMary\nJulie\nPatricia\nSusan\nCynthia\nMichelle\nLaura\nElizabeth\nLinda\nJennifer\nDeborah\nSandra\nMaria\nChristine\nDenise\nKelly\nDonna\nTeresa\nTammy\nLori\nTina\nWendy\nTracy\nStephanie\nDebra\nPamela\nKathleen\nAngela\nCheryl\nRebecca\nNancy\nRobin\nBrenda\nDawn\nDiane\nSharon\nKim\nBarbara\nDiana\nChristina\nCindy\nTheresa\nCarol\nRhonda\nMichele\nGina\nJill\nMonica\nCatherine\nJacqueline\nSuzanne\nDebbie\nMelissa\nLaurie\nMargaret\nAndrea\nPaula\nRenee\nAnnette\nJanet\nKathy\nLeslie\nAnna\nValerie\nKatherine\nDana\nCarolyn\nStacy\nSheila\nYvonne\nSherry\nStacey\nDeanna\nSylvia\nAmy\nShelly\nHeidi\nTerri\nYolanda\nTamara\nVictoria\nMartha\nAnn\nShannon\nVeronica\nKathryn\nHeather\nRegina\nSheri\nGloria\nYvette\nKristin\nKristine\nAnne\nConnie\nMarie\nCarrie\nAlicia\nColleen\nJamie\nSherri\nVirginia\nCarla\nJanice\nShelley\nMelinda\nApril\nCathy\nDarlene\nJudy\nAnita\nIrene\nTracey\nJulia\nHolly\nLynn\nBonnie\nRachel\nTeri\nMelanie\nRuth\nLorraine\nAllison\nMonique\nErin\nRosa\nSheryl\nVicki\nNorma\nRose\nAlice\nTami\nRita\nHelen\nToni\nShirley\nSarah\nJoanne\nLeticia\nRoberta\nJudith\nElaine\nJeanette\nBeverly\nTraci\nNatalie\nCharlene\nTanya\nCarmen\nKimberley\nMaureen\nKristen\nBecky\nSamantha\nJoyce\nJane\nEllen\nSonia\nKristina\nDanielle\nPeggy\nSally\nJodi\nBeth\nJessica\nJackie\nMelody\nFrances\nLynette\nPenny\nShari\nEileen\nRonda\nCrystal\nGail\nJoan\nLeah\nShawn\nBetty\nCaroline\nKelli\nSonya\nVickie\nIrma\nTonya\nJanine\nEva\nTerry\nCharlotte\nJean\nJoann\nJuanita\nDorothy\nJeanne\nEsther\nSara\nKelley\nRamona\nSandy\nAna\nJoy\nArlene\nLydia\nMia\nMarilyn\nFelicia\nDesiree\nDarla\nDina\nAudrey\nCecilia\nGuadalupe\nTiffany\nDoreen\nPhyllis\nAlison\nMarlene\nAmanda\nBridget\nKristi\nBelinda\nCheri\nTrina\nVivian\nWanda\nConstance\nGrace\nLoretta\nLynda\nEvelyn\nRochelle\nTammie\nDolores\nKari\nJenny\nRoxanne\nDianna\nPatty\nSonja\nKarin\nSabrina\nJo\nNina\nRobyn\nChristy\nNicole\nChris\nKellie\nKatrina\nSherrie\nDena\nCassandra\nKarla\nJana\nAntoinette\nEmily\nKerry\nMarla\nTracie\nSilvia\nAngie\nKirsten\nShawna\nGinger\nJosephine\nMargarita\nClaudia\nOlivia\nCathleen\nDianne\nRene\nSuzette\nAlisa\nRosemary\nCara\nJody\nNadine\nPauline\nCherie\nKris\nLorie\nMarjorie\nGayle\nLillian\nPam\nAngelica\nNora\nAngelina\nJoanna\nKristy\nMona\nStacie\nErica\nErika\nLynne\nTrisha\nGlenda\nJune\nMarianne\nSue\nElisa\nLora\nPatti\nSophia\nLeanne\nLorena\nMarcia\nAlma\nDeanne\nJeanine\nDoris\nKrista\nLauren\nStella\nElena\nJeannette\nTara\nVicky\nCandace\nCarole\nKara\nCristina\nVanessa\nCandy\nAmber\nGretchen\nMolly\nLee\nMarta\nAdrienne\nBernadette\nJennie\nLorrie\nRuby\nAdriana\nTherese\nCeleste\nLucy\nStaci\nSusie\nDebora\nElsa\nHope\nBobbie\nDora\nJanette\nJeannie\nKimberlee\nLesley\nMarina\nTricia\nIngrid\nJacquelyn\nJan\nLouise\nNaomi\nSusana\nMarcella\nMargie\nMegan\nPriscilla\nTammi\nOlga\nKerri\nLupe\nNanette\nWendi\nFrancine\nMaryann\nPatrice\nBertha\nDelia\nGeraldine\nGwendolyn\nIsabel\nDanette\nGeorgia\nJeannine\nLaurel\nPaulette\nMarsha\nBlanca\nEdith\nRaquel\nDeana\nLana\nLeann\nRosalind\nBridgette\nJoni\nKecia\nKeri\nShellie\nSusanne\nDarcy\nJanelle\nLatanya\nLucinda\nTerrie\nBeatrice\nEleanor\nJeri\nLois\nRosemarie\nAmelia\nCelia\nDeann\nLorna\nMarci\nShauna\nCorinne\nDeena\nGabriela\nSandi\nCorina\nGeorgina\nCaryn\nRosalie\nAllyson\nMisty\nRachelle\nClaire\nKristie\nBetsy\nJulianne\nLauri\nChristi\nChristie\nElisabeth\nLena\nMarian\nTrudy\nAntonia\nCarolina\nLiz\nDaphne\nJohanna\nNoelle\nEdna\nHilda\nKay\nLeigh\nPaige\nRena\nStefanie\nColette\nEmma\nFaith\nHilary\nJessie\nLadonna\nLatonya\nAngel\nDayna\nKaryn\nMiriam\nNoreen\nRosalinda\nTamra\nCari\nLiza\nLorri\nRosie\nShelia\nAileen\nAlexandra\nBrigitte\nJerri\nKatie\nLourdes\nMartina\nRosanna\nTamera\nUrsula\nDee\nDenice\nJanis\nJuliana\nLea\nLeeann\nLilia\nLucia\nMarnie\nShelli\nDawna\nJustine\nMarcy\nMichael\nVonda\nBillie\nDeirdre\nGabrielle\nMagdalena\nJodie\nLuz\nMindy\nValarie\nCecelia\nDelores\nElise\nEstella\nTonia\nVera\nCaren\nEsperanza\nIda\nJuliet\nShana\nCamille\nCatalina\nConsuelo\nLeona\nLynnette\nMari\nMarion\nMeredith\nDebby\nElva\nJudi\nKendra\nSondra\nTania\nElvira\nGraciela\nJosefina\nMyra\nMyrna\nShanna\nAurora\nBeatriz\nBernice\nBobbi\nElvia\nGena\nJanell\nMaricela\nRobbin\nGenevieve\nGwen\nOfelia\nCandice\nClara\nFrancisca\nJanna\nJolene\nJosie\nJuana\nPearl\nRae\nArleen\nBridgett\nCharmaine\nCindi\nColeen\nGeri\nGigi\nJami\nJuli\nLetitia\nLidia\nChrista\nCourtney\nDeidre\nJanie\nLesa\nMargo\nNikki\nPatsy\nRandi\nVikki\nAlesia\nBrandi\nDella\nEstela\nLenora\nLucille\nSaundra\nThelma\nWhitney\nAnnemarie\nDavid\nEugenia\nHelene\nJohn\nKathi\nMarcie\nMimi\nPetra\nRosario\nSheree\nSocorro\nAngelique\nAnnie\nDeneen\nFelecia\nJenifer\nJocelyn\nMaribel\nMarisa\nRachael\nSusanna\nBrandy\nCora\nDanita\nJames\nRobert\nTerese\nAimee\nAlana\nCathryn\nChandra\nDori\nHelena\nIris\nJayne\nMadeline\nMaxine\nMelisa\nMitzi\nSydney\nWilma\nBettina\nEvangelina\nEve\nKarrie\nKatharine\nLeanna\nRenae\nZina\nAdela\nAdele\nAlyson\nAngelia\nAthena\nDanelle\nDionne\nDorene\nEvette\nKathie\nKaty\nMandy\nMercedes\nPenelope\nRebekah\nRoxann\nSerena\nTana\nDebi\nDiann\nHazel\nJaime\nJeanie\nKandi\nKimberli\nLorene\nMaritza\nMaura\nMelodie\nPolly\nSharron\nSimone\nSuzy\nAda\nBrooke\nClaudette\nCollette\nCyndi\nGay\nGladys\nGracie\nJaneen\nLeonor\nLola\nMonika\nNannette\nPennie\nRichard\nRosanne\nRoseann\nSuzanna\nTonja\nTrena\nAlisha\nBrigette\nCarey\nCarlene\nDeedee\nDominique\nHillary\nJulianna\nLanette\nLavonne\nLawanda\nLuisa\nMildred\nSuzie\nViolet\nAlejandra\nAlexis\nAmalia\nAnnamarie\nBarbra\nBonita\nDixie\nDolly\nDorothea\nFrankie\nGaylene\nIlene\nJanene\nJoelle\nKate\nKathrine\nMarguerite\nMinerva\nNellie\nNoel\nRoslyn\nSelena\nAnthony\nAntionette\nAraceli\nBenita\nBernadine\nChrystal\nCorinna\nDanna\nDevon\nErlinda\nJacquline\nJuliette\nLaureen\nLillie\nLilly\nNatasha\nRebeca\nRhoda\nRoxanna\nSharla\nShiela\nStarla\nValorie\nAdelina\nAutumn\nCarin\nDarci\nEsmeralda\nFlorence\nGeorgette\nKasey\nLani\nLashawn\nLeilani\nLia\nMaggie\nMarisela\nMarni\nMoira\nMollie\nPilar\nReina\nRina\nSarita\nSharlene\nShaun\nStephani\nTimi\nZena\nAgnes\nAngelita\nCarmela\nCharisse\nConcepcion\nCori\nCorrine\nCristine\nDeidra\nElsie\nGia\nJohnna\nKarie\nKathlene\nKimi\nMichell\nPatrica\nRoxane\nSelina\nSherie\nSofia\nTamie\nVenus\nAdrian\nAida\nAnastasia\nAva\nCassie\nCorrina\nDebbi\nDebbra\nDemetria\nElla\nEloise\nErnestina\nErnestine\nFaye\nFrancesca\nJanel\nJeanna\nKandy\nLatrice\nLesli\nLina\nLorinda\nLouisa\nMalinda\nMara\nMaryanne\nRaylene\nRobbie\nRosalyn\nRuthie\nShelby\nSuzan\nTisha\nTori\nAnjanette\nAnnmarie\nAshley\nBethany\nCharla\nClare\nClarissa\nDaisy\nEdwina\nEthel\nEunice\nGabriella\nGeneva\nJonna\nKeli\nKendall\nKerrie\nLoriann\nMadeleine\nMarissa\nMerry\nRomy\nTracee\nVerna\nViola\nAdriene\nAleta\nCarie\nChristene\nDeeann\nGayla\nGilda\nInger\nJeana\nJohnnie\nKevin\nKira\nLaronda\nLily\nLinette\nLizabeth\nLoreen\nLuana\nMargot\nMariann\nMark\nMay\nNanci\nPat\nRichelle\nSharyl\nShereen\nValencia\nAdrianne\nAntonette\nAstrid\nBrenna\nCatrina\nCristy\nDara\nDede\nEvonne\nGiselle\nInez\nLeesa\nLinnea\nLizette\nLoraine\nLuann\nLyn\nMarcelle\nMarlena\nMichaela\nMillie\nMirna\nNathalie\nNoemi\nPenni\nRosalia\nRowena\nShonna\nSybil\nTambra\nTammara\nTena\nTimothy\nTonie\nTresa\nAbby\nAlexandria\nAnnabelle\nCamilla\nCandi\nCarri\nChantal\nClaudine\nDale\nDenine\nDona\nDorinda\nElaina\nEliza\nEric\nErmelinda\nEvangeline\nFawn\nFern\nFlora\nGlenna\nGreta\nHannah\nHerlinda\nImelda\nJena\nJenna\nJoanie\nJuliann\nKarol\nKaron\nKimber\nKimberlie\nLashon\nLaverne\nLavette\nLenore\nLila\nLoree\nLorelei\nLuanne\nManuela\nMarleen\nMarti\nMarybeth\nMaryjane\nMeghan\nNeva\nNola\nPamala\nPaul\nRenita\nReyna\nRona\nSallie\nShonda\nStacia\nTanja\nTari\nTawnya\nTia\nVelma\nAndria\nBrigid\nCaron\nCathrine\nCelina\nCharity\nCorine\nDani\nDaniela\nDannette\nDelisa\nEdie\nElda\nEloisa\nEstelle\nGerri\nGuillermina\nHolli\nIvy\nJacki\nJammie\nJanina\nJayme\nJustina\nKamala\nKarri\nKatheryn\nKellee\nKimberely\nKristal\nKrystal\nLianne\nLynelle\nMaryellen\nMayra\nMelina\nMiranda\nRhea\nRocio\nRosalva\nSharyn\nSherryl\nSonji\nTamela\nTeena\nTrinidad\nAbigail\nAdriane\nAlecia\nAudra\nBabette\nCallie\nCarleen\nCarmelita\nCasey\nCherise\nChrissy\nCoral\nEmilia\nFay\nFrancis\nGale\nGidget\nGriselda\nHermelinda\nHollie\nIna\nIsabelle\nJonelle\nJose\nKarina\nKarlene\nKelle\nKelleen\nKenneth\nLeila\nLeslee\nLou\nLucretia\nMercy\nMisti\nRaelene\nRenata\nRoni\nRoseanna\nSandie\nScott\nSherilyn\nSherrill\nSuzann\nTamar\nTammera\nTerra\nToya\nTyra\nValentina\nAlyssa\nAracely\nAretha\nArmida\nBeckie\nBessie\nBianca\nBlanche\nBritt\nChere\nCherri\nCherrie\nCherry\nCoreen\nDaneen\nDaniella\nDavina\nDelinda\nEarlene\nElia\nElissa\nElyse\nErma\nFreda\nGregory\nHallie\nHenrietta\nJenine\nJoseph\nKami\nKirstin\nLara\nLela\nLiane\nLoren\nMabel\nMae\nMalia\nMargret\nMaribeth\nMarva\nMarylou\nMelba\nMerri\nMillicent\nMissy\nNita\nPandora\nRenea\nRomona\nRosalina\nRosana\nShannan\nShanon\nSharri\nSimona\nSiobhan\nSunday\nTawny\nTeresita\nThea\nTuesday\nVida\nVioleta\nWende\nAdria\nAlaina\nAlberta\nAlthea\nAlyce\nAmparo\nAnamaria\nAnette\nAnnamaria\nBarbie\nBonny\nCami\nCammy\nCarmel\nCarolynn\nCasandra\nCharles\nCheryle\nChristal\nCristi\nDanica\nDarleen\nDebrah\nDenean\nDenyse\nDhana\nFonda\nGianna\nGinny\nHortensia\nJacquie\nJaimie\nJannette\nJenise\nJerry\nJewel\nJoellen\nJoi\nJoleen\nJulee\nJuliane\nJulieta\nKarry\nKaye\nKenya\nKerin\nKimmie\nKitty\nKori\nKrissy\nKymberly\nLaraine\nLarissa\nLeeanne\nLiana\nLibby\nLissa\nLouann\nLupita\nLynell\nMarcelina\nMarianna\nMarietta\nMarilee\nMarisol\nMarty\nMeg\nMelva\nMicaela\nMinnie\nMorgan\nNadia\nNatalia\nNickie\nNiki\nNona\nOctavia\nOtilia\nParis\nRenay\nRolanda\nRonette\nRonna\nRosalee\nRoxana\nSeana\nShanda\nShani\nSharee\nShaunda\nShawnee\nStormy\nThomas\nTiffani\nTreva\nVickey\nWilliam\nAaron\nAdeline\nAdelita\nAlena\nAlina\nAlisia\nAlycia\nAmie\nAngeline\nAnnett\nBecki\nBriana\nCaprice\nCary\nCaryl\nCathi\nCharleen\nChristen\nChristiana\nClarice\nDanell\nDaniel\nDawne\nDedra\nDeeanna\nDeloris\nDenee\nElisha\nElke\nEnedina\nEnid\nFiona\nGemma\nGenelle\nHaley\nHayley\nJacque\nJacquelin\nJacqui\nJaqueline\nJeffrey\nJennette\nJodee\nJosette\nJovita\nJudie\nKarey\nKarolyn\nKisha\nKristan\nKym\nKyra\nLaticia\nLatonia\nLatrina\nLauna\nLauralee\nLaurinda\nLawanna\nLecia\nLeisa\nLetha\nLindy\nLise\nLisette\nLita\nLolita\nLoni\nMachelle\nMargery\nMariaelena\nMariana\nMarilynn\nMaya\nMelodee\nMelodi\nMelonie\nMichel\nMicki\nMignon\nNicolette\nPerla\nPiper\nRaeann\nRegan\nRikki\nRisa\nRonnie\nRoselyn\nShandra\nSharleen\nShaunna\nShirl\nShirlene\nSoraya\nStefani\nSummer\nSusannah\nTaunya\nTeddi\nTeressa\nTessa\nTobi\nTressa\nTrudi\nTwila\nTwyla\nVilma\nViviana\nWendie\nWinnie\nYevette\nAdelaida\nAlane\nAlanna\nAline\nAmi\nAndra\nAnnabel\nAnneliese\nAurelia\nBelen\nBette\nBlair\nCandie\nCarissa\nCarletta\nCarmella\nCelestine\nCeline\nChantel\nCherryl\nChristiane\nChristopher\nCris\nCyndee\nDalia\nDanya\nDarcie\nDarlena\nDawnette\nDelfina\nDenna\nDia\nDiona\nDione\nDonald\nDonetta\nDorthea\nEdward\nElida\nEmilie\nEula\nFlorinda\nGaye\nGema\nGerry\nGertrude\nGillian\nHarriet\nHeide\nInes\nJanae\nJenelle\nJerilyn\nJerrie\nJewell\nJimmie\nJodene\nJolynn\nJosephina\nJulienne\nKarren\nKeisha\nKristeen\nLaila\nLannette\nLatisha\nLatricia\nLaure\nLaurene\nLeandra\nLeora\nLesia\nLeta\nLetty\nLindsay\nLona\nLonna\nLoralee\nLorine\nLuci\nMarcela\nMariela\nMartin\nMaryhelen\nMaryjo\nMatilda\nMerrie\nMindi\nNedra\nNena\nNicki\nNicola\nOphelia\nPortia\nPrincess\nRanda\nRosalba\nRosaura\nRoseanne\nRosina\nSabra\nSari\nSebrina\nSharrie\nShawnda\nSheron\nShireen\nShirleen\nShona\nSoledad\nSophie\nSuzi\nTawna\nToby\nTracye\nTrini\nValeri\nWendee\nYolonda\nAlene\nAlessandra\nAlfreda\nAlissa\nAlvina\nAlysia\nAnabel\nAngelena\nAnja\nAnnetta\nAriana\nAvis\nBambi\nBerta\nBeverley\nBirgit\nBrandie\nCaitlin\nCamellia\nCamie\nCandis\nCarina\nCarlyn\nCharlena\nCher\nCheryll\nChristeen\nChristel\nChristin\nCinderella\nCindie\nCinthia\nCorrie\nCrista\nCristin\nDaina\nDania\nDaniele\nDarcel\nDaria\nDeedra\nDelilah\nDelphia\nDemetra\nDenette\nDenita\nDennise\nDeon\nDesi\nDevra\nDiedra\nDinah\nDodie\nDominica\nDorrie\nDottie\nElba\nElenore\nEllie\nFelisa\nFrank\nGeorge\nGermaine\nGiovanna\nGisela\nGisele\nGlynis\nGregoria\nHanna\nHolley\nHortencia\nIleana\nIva\nJeanene\nJennine\nJillene\nJillian\nJina\nJoe\nJohnny\nJolanda\nJonnie\nJoselyn\nJoslyn\nJulieann\nKaylene\nKeely\nKenna\nKimberlyn\nKimmy\nKolleen\nLadona\nLanora\nLasonya\nLaurette\nLeisha\nLesha\nLilian\nLindsey\nLisha\nLonda\nLorianne\nLorilei\nLorina\nLourie\nMachele\nMalissa\nMamie\nMandi\nMariam\nMarjory\nMarnee\nMarya\nMatilde\nMechelle\nMelita\nMeta\nMichaelle\nMicheal\nMicheline\nMickie\nMina\nMireya\nMonette\nNani\nNoelia\nOdette\nOna\nOralia\nPattie\nPaulina\nPia\nRachell\nRandy\nRegena\nRenate\nRenda\nRomelia\nRonald\nRosamaria\nRosetta\nSabine\nSelma\nSeptember\nShara\nShawnna\nSheena\nSheilah\nShellee\nSherrell\nSherril\nSheryll\nShiree\nSteven\nTamala\nTamora\nTamura\nTani\nTaryn\nTasha\nTawni\nTawnia\nTereza\nTerina\nTerresa\nThalia\nTiffanie\nToi\nTomi\nTommie\nVenessa\nWilhelmina\nWillie\nWindy\nZandra\nAdelia\nAlba\nAlexia\nAlona\nAlva\nAnalisa\nAnastacia\nAndre\nAngelika\nAngella\nAngi\nBarb\nBobby\nBonni\nBronwyn\nBrook\nCameron\nCammie\nCarlette\nCarman\nCarolee\nCarrol\nCaterina\nCatharine\nCecile\nCecily\nChantelle\nCharis\nCharise\nCharissa\nCharyl\nChina\nClementina\nColene\nContessa\nCorie\nCornelia\nCristal\nCurtis\nDamita\nDann\nDarcey\nDarline\nDeane\nDeborha\nDelynn\nDemetrius\nDenese\nDeonna\nDeserie\nDetra\nDierdre\nDollie\nDonelle\nDonnetta\nDonya\nDoree\nDorie\nDorina\nDorthy\nDyan\nEden\nEricka\nEtta\nEvie\nEvon\nFabiola\nFatima\nFelisha\nFran\nFranchesca\nFrancie\nGenine\nGeorgetta\nGeorgie\nGretta\nHedy\nHerminia\nIndia\nJackeline\nJaclyn\nJade\nJann\nJaye\nJeanetta\nJenette\nJeni\nJeryl\nJoetta\nJolie\nJon\nJona\nJonette\nJonni\nJoycelyn\nJoylyn\nJuan\nKandace\nKaran\nKaroline\nKathaleen\nKathren\nKimm\nKimmi\nKristiane\nKristyn\nKyla\nLajuana\nLanita\nLatania\nLatrenda\nLaurice\nLavern\nLavina\nLavonda\nLeana\nLeda\nLeia\nLenee\nLenette\nLetricia\nLili\nLisabeth\nLisbeth\nLivia\nLore\nLorretta\nLorry\nLucila\nLuzmaria\nLynna\nMagda\nMaia\nMarcey\nMaricruz\nMarita\nMarna\nMartine\nMellisa\nMeri\nMikki\nMonalisa\nMonet\nNatalee\nNia\nNinette\nOpal\nParrish\nPatrina\nPetrina\nPhaedra\nPhoebe\nRacheal\nRandee\nRaymond\nRayna\nRea\nReba\nRima\nRochele\nRochell\nRomi\nRosita\nRossana\nRoxie\nRuthanne\nSabina\nSean\nShan\nSharilyn\nSharmaine\nShawne\nShawnette\nSherise\nSherlyn\nSherron\nShirelle\nShirlee\nSian\nSidney\nSindy\nStarr\nStephany\nStephenie\nSuellen\nSuzzette\nSylvie\nSynthia\nTama\nTamiko\nTamira\nTammra\nTandy\nTatia\nTerryl\nTillie\nTimmie\nTonette\nTonna\nTrish\nTroy\nValery\nVichelle\nVictor\nVirgie\nWilla\nWinona\nXan\nZoe\nZoila\nZulema\nLisa\nMichelle\nKimberly\nKaren\nJennifer\nJulie\nMary\nSusan\nCynthia\nPatricia\nLaura\nElizabeth\nChristine\nSandra\nDeborah\nMaria\nTina\nKelly\nDenise\nLinda\nTammy\nTeresa\nTracy\nStephanie\nLori\nAngela\nKathleen\nMichele\nNancy\nDonna\nGina\nWendy\nDebra\nCheryl\nDawn\nRebecca\nChristina\nPamela\nBarbara\nBrenda\nSharon\nDiana\nDiane\nKim\nMelissa\nMonica\nAndrea\nJill\nCatherine\nTheresa\nRobin\nRhonda\nSuzanne\nCindy\nJacqueline\nCarol\nAmy\nDana\nLeslie\nAnna\nRenee\nStacy\nPaula\nMargaret\nStacey\nShannon\nJanet\nDebbie\nVictoria\nHeidi\nKatherine\nKathy\nSherry\nCarolyn\nDeanna\nShelly\nVeronica\nValerie\nLaurie\nSheila\nTerri\nYolanda\nYvonne\nTamara\nAnn\nKristine\nHeather\nMartha\nKristin\nAnnette\nKathryn\nSheri\nRegina\nSylvia\nYvette\nApril\nJamie\nGloria\nCarrie\nAnne\nKristen\nShelley\nAlicia\nHolly\nVirginia\nJulia\nTracey\nDarlene\nNicole\nMelinda\nCarla\nBonnie\nConnie\nRachel\nSherri\nColleen\nErin\nNatalie\nTraci\nCathy\nLeticia\nMarie\nAnita\nJanice\nTiffany\nLynn\nRosa\nRuth\nVicki\nJudy\nMonique\nRose\nCarmen\nSarah\nIrene\nKristina\nTanya\nLorraine\nSonia\nToni\nKimberley\nSheryl\nTeri\nMaureen\nHelen\nSonya\nJudith\nMelanie\nJeanette\nNorma\nTami\nDanielle\nBeth\nJoyce\nTonya\nJoanne\nEva\nJessica\nCharlene\nRita\nJodi\nRoberta\nShirley\nSamantha\nAlice\nKelli\nFrances\nJoan\nElaine\nJane\nAna\nShawn\nJoy\nDorothy\nKristi\nFelicia\nPenny\nCharlotte\nBridget\nCaroline\nCrystal\nAmanda\nJanine\nIrma\nJoann\nSally\nAllison\nBecky\nKelley\nLynette\nTrina\nJean\nLeah\nSandy\nJuanita\nEileen\nEvelyn\nJackie\nBetty\nMelody\nBeverly\nDolores\nRonda\nSara\nCheri\nDina\nNina\nKirsten\nKellie\nLydia\nGail\nEsther\nGuadalupe\nJeanne\nKari\nChristy\nMarilyn\nRobyn\nTerry\nCassandra\nShari\nDarla\nEllen\nPeggy\nRamona\nDesiree\nSonja\nAntoinette\nSherrie\nVickie\nKarin\nKatrina\nAudrey\nClaudia\nMargarita\nShawna\nWanda\nLoretta\nCecilia\nDianna\nKerry\nMarlene\nRosemary\nMona\nVivian\nArlene\nMarla\nDena\nGrace\nJody\nElisa\nEmily\nAlma\nBelinda\nDoreen\nJenny\nJoanna\nLynda\nJana\nDianne\nElena\nTracie\nKarla\nLorena\nSabrina\nCandace\nJo\nRochelle\nMegan\nStacie\nKristy\nPhyllis\nAdrienne\nAngelica\nMia\nCherie\nAlison\nAngelina\nPauline\nRoxanne\nAudra\nChristie\nDebora\nLillian\nPaige\nRene\nShauna\nErika\nGinger\nKris\nMarina\nSilvia\nDora\nLorie\nTammie\nTrisha\nKimberlee\nSophia\nAngie\nKrista\nTara\nAmber\nCathleen\nLana\nLauren\nAlisa\nBernadette\nElsa\nMarianne\nStaci\nVicky\nVanessa\nAdriana\nConstance\nLucy\nJeannie\nFrancine\nGretchen\nLouise\nSuzette\nChris\nDeana\nMisty\nJosephine\nTricia\nIsabel\nLeanne\nSusanne\nSusie\nBeatrice\nColette\nDoris\nMarcia\nNaomi\nNora\nPriscilla\nCristina\nNadine\nPatty\nStefanie\nDeanne\nEdith\nErica\nIngrid\nJeannette\nCarole\nGlenda\nLupe\nMolly\nOlivia\nBertha\nKerri\nOlga\nCara\nJacquelyn\nJanelle\nLesley\nDelia\nLee\nPatrice\nRuby\nWendi\nLena\nSusana\nJeanine\nLora\nMarcella\nPaulette\nCeleste\nCorina\nDanette\nHope\nJoelle\nLaurel\nRaquel\nSue\nCelia\nJanette\nMarta\nPatti\nElisabeth\nPam\nBlanca\nMarjorie\nBridgette\nGayle\nDarcy\nGabriela\nGwendolyn\nLeann\nRachelle\nShana\nTamra\nCandy\nGraciela\nKatie\nLorrie\nLynne\nMarisa\nNoelle\nCorinne\nRosemarie\nGena\nGeraldine\nJeri\nMargie\nHilda\nKara\nKeri\nLatonya\nLuz\nKaryn\nTherese\nJodie\nStella\nJulianne\nJune\nKendra\nLea\nGeorgina\nJeannine\nMargo\nNanette\nTerrie\nDeann\nKristie\nLiza\nBobbie\nCamille\nCari\nChristi\nElise\nJanie\nLucinda\nMarci\nMarsha\nMaryann\nTamera\nTania\nVera\nAngel\nDawna\nDeena\nLucia\nValarie\nAmelia\nDaphne\nJennie\nJoni\nLatanya\nRosalind\nEmma\nJan\nMiriam\nAlexandra\nGeorgia\nLynnette\nRosalinda\nShelli\nTabatha\nTammi\nBillie\nCarolina\nDeirdre\nTonia\nAurora\nConsuelo\nEleanor\nMaricela\nColeen\nJessie\nMarcy\nSandi\nLourdes\nRosie\nShelia\nShellie\nSimone\nEstella\nJami\nLorri\nMarion\nBrigitte\nCecelia\nJuliana\nLauri\nMarian\nMyrna\nBeatriz\nBrandi\nCharmaine\nDelores\nEdna\nJanis\nJohanna\nMindy\nMyra\nNikki\nAimee\nCaryn\nJolene\nJosefina\nMarnie\nMartina\nRosalie\nClara\nDee\nDella\nIda\nLois\nMagdalena\nTrudy\nAnnie\nChandra\nGenevieve\nHilary\nKatharine\nLorna\nMadeline\nUrsula\nVikki\nCourtney\nElvira\nJaime\nJudi\nLashawn\nLeigh\nNoreen\nRandi\nAileen\nFlorence\nJenifer\nJohn\nMercedes\nMichael\nShanna\nSheree\nBridgett\nDayna\nEsperanza\nGladys\nJocelyn\nKarrie\nLucille\nMarisela\nRena\nDominique\nEvangelina\nJanna\nJuana\nLesa\nSharlene\nSondra\nSusanna\nTatia\nAntonia\nCandice\nDenice\nFrancisca\nGabrielle\nJuliet\nMelisa\nTasha\nBobbi\nBrigette\nCarey\nCindi\nCorrine\nEugenia\nLeona\nLilia\nMari\nShelby\nThelma\nClaire\nEstela\nLetitia\nRachael\nSofia\nAnastasia\nBarbra\nBetsy\nDavid\nDeidre\nDionne\nGwen\nJustine\nKay\nLadonna\nOfelia\nPolly\nAngelique\nBrooke\nCatalina\nDona\nElva\nInez\nLily\nMarcie\nMarni\nAlana\nCaren\nChrista\nDanna\nDara\nElvia\nEsmeralda\nFaith\nLiz\nRobert\nSerena\nTia\nAngelia\nBernice\nJanell\nLani\nPenelope\nRosario\nAida\nArleen\nCollette\nEve\nJuli\nKathi\nKerrie\nLanette\nLorene\nMechelle\nMildred\nMitzi\nNoel\nPetra\nSaundra\nVenus\nAlexis\nAthena\nCarlene\nCasey\nDanita\nLeanna\nLeeann\nMaribel\nMarissa\nMaxine\nMonika\nNannette\nPatsy\nAdrianne\nBrandy\nCaprice\nEvette\nGeri\nHillary\nIris\nLara\nMaggie\nMichell\nMimi\nRichelle\nRosalyn\nSocorro\nAda\nAva\nFrancesca\nGreta\nJerri\nMeredith\nRhoda\nShiela\nTrena\nCharla\nClarissa\nDarci\nGeorgette\nLeila\nMandy\nMarguerite\nRebeca\nRosanna\nSuzanna\nWhitney\nAdela\nArmida\nCamilla\nDanelle\nElla\nGigi\nJeana\nJosie\nKimberli\nLaureen\nLavonne\nLeilani\nLenora\nReina\nRoxanna\nSydney\nTabitha\nTonja\nVonda\nAlesia\nAnthony\nBernadine\nBethany\nBettina\nCora\nDannette\nDevon\nEmilia\nFelecia\nGidget\nGriselda\nJames\nKasey\nKaty\nLola\nLorinda\nMara\nPearl\nRenae\nRocio\nRosanne\nStacia\nStefani\nTori\nVelma\nAdele\nAngelita\nCarri\nChrystal\nDiann\nGeneva\nGracie\nJaneen\nKarri\nKate\nMarcela\nPatrica\nRoxann\nTrudi\nViola\nWilliam\nAbigail\nAlisha\nAllyson\nAntionette\nAraceli\nAshley\nBenita\nCandi\nCathryn\nChantal\nConcepcion\nEdie\nElsie\nJonna\nJulianna\nKellee\nLatrice\nLawanda\nMargot\nPamala\nRona\nSharron\nShaun\nSherie\nSuzie\nTamatha\nTana\nValencia\nAnnamarie\nBabette\nBonita\nCarin\nCharisse\nDale\nDorene\nErnestina\nEvonne\nHollie\nImelda\nIvy\nJayne\nKimberlie\nLilly\nLolita\nMarianna\nMaritza\nMarlo\nMarylou\nMaura\nMelodie\nNanci\nNichole\nNoemi\nRae\nRebekah\nRichard\nSean\nShannan\nTawnya\nAdrian\nAlissa\nAnnemarie\nAutumn\nCarmela\nClaudine\nCyndi\nDebby\nDeidra\nDorothea\nEdwina\nGabriella\nGiselle\nGuillermina\nHelena\nHelene\nInger\nJeanie\nJoell\nJuliette\nKimi\nKirstin\nLeonor\nLesli\nLia\nLiana\nLina\nLinette\nLizabeth\nMachelle\nMalinda\nMarlena\nMichaela\nRobbin\nRoseann\nSallie\nSelena\nSiobhan\nSteven\nVerna\nCami\nCarmelita\nCherise\nChristian\nDori\nElba\nElyse\nEthel\nFaye\nFlora\nHolli\nKathrine\nKecia\nKevin\nKimberely\nKira\nLatonia\nLissa\nLuisa\nMarti\nNatasha\nNellie\nPilar\nRaylene\nRoslyn\nSelina\nSharla\nSonji\nTamar\nTamela\nTeresita\nTisha\nTracee\nValentina\nBecki\nBrandie\nBrigid\nCherri\nDaisy\nEliza\nErnestine\nGale\nGianna\nGillian\nIsabelle\nJacquline\nJanel\nJayme\nJeanna\nJolie\nKarie\nKrystal\nLaverne\nLeesa\nLidia\nLise\nLyn\nMae\nMalissa\nMicaela\nNiki\nNita\nPortia\nRomy\nSophie\nStephani\nTawny\nTessa\nTiffani\nTressa\nTyra\nZena\nZoe\nAdrianna\nAlecia\nAleta\nAlyssa\nAnnamaria\nAnnmarie\nAntonette\nBarbie\nBianca\nBrenna\nCarie\nCarleen\nChristiane\nCorine\nDebbra\nDeeann\nDeedee\nDixie\nDorinda\nErlinda\nErma\nEvangeline\nFabiola\nFrankie\nGia\nHeide\nJerilyn\nKarine\nLaurene\nLeslee\nLillie\nLorelei\nMarilee\nMiranda\nNatalia\nSharyn\nStarla\nSuzy\nTamie\nTresa\nViolet\nWendie\nWillie\nYolonda\nAlexandria\nAlina\nAmparo\nAndria\nBerta\nCharleen\nCheree\nCinda\nClarice\nCorinna\nDaria\nDawnette\nDeneen\nDinah\nElaina\nElia\nElissa\nEunice\nFiona\nGayla\nGaylene\nHannah\nHazel\nJacque\nJena\nJenelle\nJoel\nKarol\nKenya\nKimber\nLarissa\nLashon\nLatricia\nLawana\nLeisa\nLela\nLisette\nLoraine\nLoreen\nLuana\nMaya\nMichaelle\nNicki\nRenita\nRonna\nRosalia\nRuthie\nSharyl\nSunday\nTammara\nTomi\nTrish\nWilma\nAdriane\nAnjanette\nAnnabelle\nBeverley\nCary\nCathi\nChrissy\nChristin\nCorey\nCorrina\nCristine\nCristy\nDaniela\nDebi\nDebrah\nDorie\nDyan\nEden\nEloisa\nEloise\nFawn\nFay\nGay\nGinny\nHayley\nIna\nInes\nJanene\nJeanetta\nJohnna\nJordana\nJoycelyn\nJustina\nKarina\nKathie\nKendall\nKym\nLeta\nLibby\nLizette\nLonnie\nLoree\nLoren\nMagda\nMarcelle\nMark\nMaryanne\nMelina\nMoira\nNedra\nRegan\nRobbie\nRonnie\nRosana\nRosaura\nRoxane\nSabina\nSandie\nSarita\nShanda\nSherilyn\nShirlene\nSuzan\nTanja\nToya\nValorie\nZina\nAdriene\nAlanna\nAlva\nAmalia\nAmie\nAnnalisa\nArcelia\nAriana\nBelen\nCandis\nCarmel\nCathie\nCathrine\nCatrina\nCharise\nCherlyn\nCherrie\nCornelia\nDani\nDebbi\nDelfina\nDemetria\nDenita\nDia\nElana\nElisha\nEric\nGerri\nGlenna\nIlene\nInga\nIvonne\nJacki\nJacquelynn\nJuliann\nKandy\nKathlene\nKeli\nKenneth\nKristal\nKristeen\nLarae\nLaronda\nLaurette\nLenore\nLesly\nLiane\nLila\nLindsay\nLinnea\nLona\nLuanne\nLucretia\nMadeleine\nMariana\nMatilde\nMechele\nMelynda\nMercy\nMerry\nMichaele\nMinerva\nPaul\nPennie\nPiper\nRaelene\nRomona\nRoni\nRonnette\nRoseanne\nRosetta\nSeana\nShanon\nShara\nStephenie\nSybil\nSynthia\nTrinidad\nTwila\nVida\nWende\nWindy\nWinona\nAdelina\nAdeline\nAdina\nAlberta\nAlyce\nAlycia\nAngella\nBeckie\nBettie\nCarina\nCarlotta\nCassie\nCatharine\nCelestine\nCelina\nChanel\nCharlette\nCherilyn\nCherry\nCherryl\nChristianne\nCindie\nCruz\nDalia\nDaneen\nDaniel\nDarleen\nDawne\nDedra\nDelisa\nDenese\nDorena\nEnid\nEricka\nGenia\nGenie\nGilda\nGiovanna\nGisela\nHarriet\nHaydee\nHermelinda\nHerminia\nHortencia\nIvette\nJacklyn\nJaqueline\nJeffrey\nJenell\nJenna\nJennette\nJesus\nJoellen\nJoi\nJoleen\nJoseph\nKandace\nKatina\nKaye\nKeely\nKiersten\nKristan\nLachelle\nLashaun\nLiesl\nLilian\nLonna\nLoriann\nLory\nLouisa\nMadonna\nMarisol\nMarleen\nMarva\nMickie\nMiki\nNadia\nNathalie\nNicola\nNola\nOphelia\nPenni\nPeri\nRandee\nRandy\nRhea\nRina\nRisa\nRosalba\nSandee\nShonda\nSidney\nSuzann\nTamala\nTeena\nTerese\nTeressa\nThea\nTiffanie\nTimi\nTosha\nTreva\nVelvet\nAlane\nAlondra\nAlyson\nAnette\nAracely\nArline\nBambi\nBessie\nBrian\nBritt\nBronwyn\nCaitlin\nCandie\nCasandra\nChantel\nCharles\nCheryle\nChristal\nChristopher\nClare\nCoreen\nCori\nCristi\nDaina\nDaniele\nDaniella\nDeonna\nDeserie\nDiedra\nDonald\nEarlene\nEster\nEvelia\nJannette\nJasmine\nJenni\nJerry\nJewel\nJoey\nJovita\nKamela\nKandi\nKarolyn\nKarren\nKayla\nKimberlyn\nLarry\nLatasha\nLatisha\nLauretta\nLavina\nLetisia\nLou\nLuann\nLucila\nMaia\nMartine\nMarybeth\nMaryjane\nMaryjo\nMellissa\nMicheal\nMichel\nMirna\nMissy\nOralia\nPat\nPatrina\nPerla\nRenay\nRosalva\nShonna\nSoledad\nTashia\nTaunya\nTimothy\nTobi\nTonie\nTroy\nValeria\nVickey\nVilma\nYasmin\nYevette\nZenaida\nAbby\nAgnes\nAlejandra\nAlena\nAndra\nAndre\nAngelika\nAngeline\nAnnett\nArlette\nAvis\nBarrie\nBelia\nBella\nBrett\nBrook\nCammie\nCecile\nCharolette\nCher\nChristene\nCleo\nCristin\nCyndee\nDalene\nDanae\nDanica\nDanise\nDannielle\nDavina\nDebera\nDede\nDeeanna\nDeeanne\nDelilah\nDeloris\nDemetra\nDennise\nDevonne\nDian\nDolly\nElizebeth\nElke\nEnedina\nErmelinda\nFelipa\nFrancie\nGala\nGeralyn\nGermaine\nHaley\nHerlinda\nHoney\nIla\nIsabella\nJacquelin\nJanae\nJanina\nJeanene\nJenette\nJesusita\nJoanie\nJodee\nJonell\nJonnie\nJose\nJulee\nJulene\nJuliane\nKacey\nKandis\nKaron\nKary\nKatheryn\nKeshia\nKimmie\nKrysti\nLarhonda\nLatina\nLeeanne\nLianne\nLiliana\nLisha\nLoni\nLorine\nLorretta\nLouann\nLourie\nLupita\nLynelle\nMalia\nMargery\nMargret\nMariaelena\nMarquita\nMeg\nMeghan\nMelonie\nMelony\nMillicent\nMillie\nMina\nMischelle\nMisti\nMonette\nMuriel\nNickie\nNicolette\nPamella\nPattie\nRaymond\nReba\nRenata\nRolanda\nRomana\nRonette\nRoselyn\nRosita\nRowena\nSelene\nSerina\nShandra\nSharie\nSharleen\nShawnee\nShea\nSoraya\nStarr\nSusannah\nSusette\nTavia\nTena\nTerra\nTommie\nTory\nValeri\nVelia\nVena\nViki\nYesenia\nZandra\nAdelaida\nAgustina\nAlfreda\nAmada\nAmerica\nAmi\nAnabel\nAnalisa\nAnja\nAntoniette\nBeatris\nBilly\nBlanche\nBonny\nBrandee\nBriana\nBridgit\nCandance\nCarissa\nCarl\nCarolynn\nCeline\nChanda\nChantelle\nCharis\nChere\nCherice\nChristen\nChristiana\nClaudette\nCoral\nDanne\nDarline\nDava\nDavida\nDeedra\nDene\nDenean\nDenine\nDeon\nDetra\nDion\nDione\nDoni\nDoretha\nDorina\nDorthea\nDorthy\nDottie\nEmilie\nFatima\nFelice\nFelisa\nGary\nGenoveva\nGeorge\nGisele\nGlynis\nHelaine\nHenrietta\nJanetta\nJayna\nJewell\nJina\nJoella\nJohnnie\nKamala\nKatherina\nKeisha\nKelle\nKimberle\nKimmy\nKisha\nKyla\nKymberly\nKyra\nLaila\nLatrisha\nLauna\nLeandra\nLeatha\nLetha\nLindsey\nLita\nLonda\nLuci\nLynell\nMaren\nMariann\nMaribeth\nMarlyn\nMarna\nMarty\nMaryellen\nMaryhelen\nMatthew\nMavis\nMayra\nMerri\nMollie\nNeva\nNona\nNorine\nOdette\nPandora\nPaulina\nQuinn\nRachell\nReiko\nRenea\nReyna\nRobbi\nRobynne\nRonald\nRoseanna\nSabra\nShane\nShanta\nSharee\nSheilah\nShellee\nShirleen\nSusann\nSusy\nTabetha\nTambra\nTari\nTawnia\nTera\nTheodora\nThomas\nThomasina\nThresa\nTonna\nTosca\nTracye\nValisa\nVeronique\nAaron\nAdelita\nAdella\nAgena\nAkemi\nAlejandrina\nAletha\nAlexia\nAlise\nAlisia\nAlona\nAnamaria\nAndera\nAnitra\nAnneliese\nAnnelise\nAnya\nArianne\nAura\nAurelia\nBernardine\nBlair\nBobbette\nCallie\nCandelaria\nCarlos\nCarlota\nCarma\nCaron\nCarrin\nCecily\nCharity\nCharline\nCharlynn\nCherish\nChloe\nChristeen\nChristel\nCindee\nCinthia\nCorrinne\nCory\nCozette\nCris\nDahlia\nDanetta\nDanine\nDarlynn\nDeette\nDelinda\nDelma\nDelphine\nDenae\nDenee\nDenell\nDenelle\nDenyse\nDevra\nDodie\nDonita\nDonnette\nDonya\nDorine\nDyana\nDyann\nEarleen\nEddie\nEdward\nEugenie\nEvie\nFelicitas\nFlorinda\nFonda\nFrancis\nFreda\nFrieda\nGenelle\nGenice\nGeorgiana\nGreer\nGricelda\nGwyn\nHortensia\nIsela\nJackqueline\nJade\nJanett\nJaniece\nJason\nJaymie\nJeaneen\nJeneen\nJenice\nJenine\nJerrie\nJoetta\nJohnette\nJon\nJori\nJosefa\nJosephina\nJosette\nKarey\nKarlene\nKasandra\nKathaleen\nKatherin\nKathryne\nKayleen\nKelleen\nKimmi\nKindra\nKitty\nKoren\nKori\nKrissy\nKristene\nLaina\nLajuana\nLanita\nLanora\nLarisa\nLarue\nLashone\nLasonya\nLaticia\nLavena\nLavern\nLavonna\nLawanna\nLecia\nLeda\nLesia\nLezlie\nLiesel\nLilliana\nLisanne\nLizbeth\nLorenda\nLorin\nLorita\nLouanne\nLoura\nMabel\nMamie\nMandi\nMargit\nMarnee\nMay\nMelba\nMerrilee\nMichaella\nMickey\nMicki\nMignon\nMirella\nMonet\nMorgan\nMyriam\nNan\nNancie\nNelly\nNia\nNichelle\nNicol\nNicolle\nNinfa\nNohemi\nOpal\nParis\nPhoebe\nPrincess\nRanae\nRaven\nRenate\nRichele\nRonica\nRosalina\nRosina\nRossana\nRusty\nSami\nSamira\nSanjuanita\nScott\nSeanna\nSharilyn\nSharri\nShawnda\nSherice\nSheril\nSherill\nSherrill\nShona\nSloane\nStephaine\nStephany\nSteve\nSulema\nSummer\nSundra\nSuzi\nTamberly\nTammee\nTammera\nTandy\nTaryn\nTawni\nTeddi\nTheressa\nTiffiny\nTona\nTony\nTrini\nTrudie\nTwyla\nUnknown\nVada\nVeda\nVioleta\nViviana\nWendolyn\nYadira\nYoulanda\nZelda\nLisa\nMichelle\nKimberly\nJulie\nJennifer\nKaren\nSusan\nCynthia\nLaura\nMary\nPatricia\nElizabeth\nChristine\nMaria\nStephanie\nSandra\nTina\nDenise\nKelly\nDeborah\nTammy\nWendy\nTracy\nLori\nAngela\nLinda\nChristina\nGina\nMichele\nTeresa\nMelissa\nDawn\nRebecca\nNancy\nCheryl\nPamela\nKathleen\nDonna\nDebra\nDiana\nAmy\nAndrea\nMonica\nBarbara\nDiane\nBrenda\nTheresa\nSharon\nCatherine\nStacy\nRhonda\nJill\nRenee\nKim\nSuzanne\nShannon\nAnna\nCarol\nRobin\nTamara\nStacey\nCindy\nLeslie\nApril\nHeather\nPaula\nDana\nValerie\nHeidi\nJacqueline\nVictoria\nDeanna\nKatherine\nMargaret\nNicole\nYvonne\nKathy\nVeronica\nAnn\nYvette\nCarolyn\nKristin\nSherry\nLaurie\nSylvia\nSheila\nAnnette\nDebbie\nShelly\nYolanda\nJanet\nKathryn\nTerri\nRachel\nRegina\nMartha\nCarrie\nKristen\nTiffany\nSheri\nJamie\nKristine\nAlicia\nTanya\nGloria\nLynn\nMelinda\nAnne\nSarah\nTonya\nCarla\nSabrina\nMonique\nColleen\nErin\nHolly\nShelley\nSherri\nDarlene\nRosa\nJulia\nAnita\nLeticia\nTracey\nKimberley\nMarie\nDanielle\nBonnie\nKristina\nMelanie\nTraci\nVirginia\nConnie\nJanice\nToni\nSonia\nTami\nNorma\nJessica\nIrene\nSheryl\nCathy\nLorraine\nRuth\nCarmen\nRose\nVicki\nJeanette\nSamantha\nNatalie\nRoberta\nSonya\nJudy\nTeri\nJodi\nHelen\nJudith\nCharlene\nAlice\nSara\nShawn\nAna\nCrystal\nFelicia\nElaine\nLeah\nShirley\nCheri\nRita\nJoanne\nKelli\nKristi\nAmanda\nKari\nRonda\nBeth\nJoyce\nMaureen\nCaroline\nDina\nFrances\nJoy\nIrma\nBeverly\nEva\nGuadalupe\nShari\nTrina\nJuanita\nPenny\nAudrey\nBecky\nKatrina\nCharlotte\nLorena\nSally\nDorothy\nLynette\nCecilia\nMarilyn\nEvelyn\nMelody\nJean\nChristy\nEllen\nGail\nKelley\nSonja\nKirsten\nAntoinette\nJoann\nCherie\nEsther\nLydia\nRochelle\nClaudia\nDianna\nEileen\nJackie\nAllison\nJanine\nDena\nMarlene\nSandy\nBetty\nPeggy\nRamona\nTammie\nVickie\nLara\nTerry\nShawna\nJeanne\nKellie\nBelinda\nCassandra\nDolores\nJane\nMargarita\nBridget\nErica\nErika\nAdrienne\nKarin\nJody\nAmber\nDesiree\nAlma\nKerry\nVanessa\nBernadette\nNina\nAngelica\nJoan\nLoretta\nRobyn\nVivian\nJoanna\nTracie\nRoxanne\nCandace\nArlene\nJenny\nKristy\nAngie\nElena\nGrace\nKarla\nStaci\nStacie\nElisa\nRosemary\nMia\nJana\nDarla\nEmily\nGinger\nLora\nWanda\nAlisa\nChristie\nSophia\nDeana\nRaquel\nAudra\nIsabel\nLynda\nPaige\nStefanie\nKrista\nLillian\nMona\nMarla\nSherrie\nAlison\nJo\nTara\nTrisha\nLorie\nNora\nPauline\nRachelle\nGretchen\nWendi\nSilvia\nDianne\nKara\nRene\nIngrid\nTammi\nCeleste\nDoreen\nMarina\nPhyllis\nShauna\nCathleen\nKerri\nKimberlee\nMarianne\nPatty\nJosephine\nFrancine\nLana\nLynne\nVicky\nChris\nMarcia\nMarta\nDeanne\nJeanine\nJeannette\nCristina\nMegan\nDora\nLucy\nMarcella\nMarisa\nNaomi\nTonia\nAdriana\nAngelina\nKristie\nLeigh\nMolly\nLuz\nNanette\nLeanne\nLupe\nOlivia\nTricia\nDarcy\nGraciela\nLauren\nLesley\nMisty\nGayle\nJeri\nKris\nOlga\nStella\nConstance\nKeri\nMarlo\nSusana\nJune\nRuby\nCandice\nDebora\nGeraldine\nJeannie\nSusanne\nChristi\nDelia\nLaurel\nLouise\nNoelle\nAurora\nCara\nElsa\nJan\nMaricela\nNadine\nPriscilla\nAimee\nBridgette\nLea\nPatrice\nShelli\nBertha\nLatonya\nBeatrice\nBlanca\nJami\nSue\nSusie\nDeann\nJanelle\nLee\nLourdes\nRachael\nShana\nJacquelyn\nKendra\nLatanya\nMarci\nMarian\nSuzette\nDoris\nGena\nLena\nPaulette\nCandy\nCelia\nElisabeth\nGabriela\nTamera\nCarole\nCorina\nGwendolyn\nJodie\nCari\nJanette\nLynnette\nMarsha\nPatti\nShanna\nBobbie\nGeorgia\nGeorgina\nJeannine\nMarjorie\nNichelle\nCamille\nEdith\nGlenda\nTania\nDeena\nHope\nJennie\nMiriam\nTamra\nLeann\nBillie\nColette\nKatie\nCarolina\nNikki\nDaphne\nLiza\nMarcy\nAlexandra\nEmma\nHilary\nJoelle\nMichael\nRosie\nShellie\nBrandi\nCorinne\nKaryn\nRosalie\nBeatriz\nBrandy\nEdna\nLorna\nMaryann\nSondra\nChandra\nJolene\nRosemarie\nSimone\nAngel\nEstella\nHilda\nNoel\nRosalind\nTabatha\nTerrie\nDanette\nJulianne\nLorrie\nAnnie\nCami\nChrista\nJoni\nMargo\nClaire\nDionne\nEstela\nMarissa\nMartina\nMelisa\nMercedes\nSandi\nCecelia\nColeen\nCourtney\nIda\nJuana\nLadonna\nLilia\nLois\nLucia\nMarion\nMarnie\nAlana\nAmelia\nFaith\nAntonia\nEleanor\nEsperanza\nGreta\nMagdalena\nRena\nSerena\nShelia\nAngelique\nAthena\nBernice\nDawna\nDeirdre\nDelores\nEugenia\nJohanna\nJuli\nMarcie\nMargie\nMarisela\nPam\nRae\nSocorro\nTasha\nVera\nBrigitte\nDavid\nGeri\nJenifer\nKay\nMyrna\nTherese\nGenevieve\nMeredith\nMindy\nValarie\nCarey\nCharmaine\nConsuelo\nKarrie\nMari\nMaribel\nMonika\nSofia\nTia\nBobbi\nClaudine\nDanelle\nDee\nFlorence\nJaime\nJosefina\nRichelle\nRobert\nBrooke\nClara\nDominique\nElva\nElvira\nJessie\nJohn\nKatharine\nMichell\nSharlene\nSusanna\nTabitha\nThelma\nCindi\nCorinna\nDayna\nJocelyn\nJuliet\nLorene\nLucinda\nMechelle\nMyra\nPetra\nAnastasia\nBridgett\nDenice\nElise\nJanie\nJeanna\nJuliana\nJustine\nLashawn\nLauri\nLesa\nRosalinda\nRosanna\nShelby\nAllyson\nCatalina\nDorene\nLanette\nMitzi\nNellie\nUrsula\nAnnmarie\nDella\nElvia\nEvangelina\nGwen\nJanis\nKathrine\nLeanna\nRocio\nTrudy\nBrigette\nFrancisca\nGabrielle\nImelda\nJanna\nKarie\nLeona\nRebeca\nRosario\nAngelia\nAnnemarie\nBethany\nCaren\nCaryn\nCathryn\nDeidra\nEthel\nFrancesca\nJames\nLeeann\nLidia\nLuisa\nMadeline\nPenelope\nRebekah\nRoxanna\nTiffani\nTonja\nVenus\nAlexis\nAraceli\nCollette\nEve\nEvette\nJaneen\nJeanie\nJerri\nJosette\nKimberlie\nLily\nLiz\nPatsy\nPolly\nRandi\nSelina\nSuzy\nVerna\nAbigail\nAmalia\nAnnamarie\nAshley\nBarbra\nBetsy\nDanna\nDarci\nGladys\nGracie\nIlene\nKerrie\nMalinda\nMara\nMarni\nPearl\nRenae\nSelena\nSherie\nCarri\nJanell\nJeana\nJosie\nLeilani\nMandy\nMarguerite\nMaritza\nNannette\nNatasha\nNichole\nNoemi\nNoreen\nSaundra\nSharron\nTawnya\nVikki\nAdrian\nAlissa\nCarmela\nClarissa\nCorrina\nEsmeralda\nJanel\nKami\nLina\nLorri\nOfelia\nShannan\nStacia\nSuzanna\nTamatha\nWhitney\nAileen\nAlesia\nCorrine\nDavina\nElissa\nEmilia\nGriselda\nHelena\nInez\nIris\nJudi\nKeisha\nLani\nLatrice\nLia\nMildred\nStarla\nWindy\nAdrianne\nAlisha\nAmie\nAngelita\nBuffy\nCarlene\nChristian\nClaudette\nDeedee\nDori\nEricka\nHillary\nKate\nKathie\nKimberli\nMinerva\nRobbin\nSheree\nTana\nTori\nAnissa\nAntionette\nBenita\nCarin\nCathrine\nCherise\nConcepcion\nCori\nDeidre\nElaina\nGia\nGidget\nJayne\nKirstin\nLaronda\nLenora\nMaryanne\nMaura\nMimi\nRoni\nThea\nValencia\nAbby\nAdela\nCarleen\nCharla\nDaisy\nDara\nDebby\nDemetria\nDona\nGale\nGeorgette\nGigi\nJanene\nJoell\nLaureen\nLesli\nLola\nMaxine\nMelodie\nNanci\nPatrica\nRichard\nRonna\nTanja\nAdriene\nAida\nAnthony\nCarmelita\nCelina\nCharisse\nCherri\nJuliann\nKira\nLarissa\nLeila\nLetitia\nLoreen\nMissy\nNicola\nPamala\nSuzan\nSydney\nVelma\nBettina\nCarie\nCasey\nCatrina\nClare\nDebi\nGabriella\nHelene\nJolie\nJonna\nKandi\nKarri\nKathi\nKaty\nKellee\nLatasha\nLatonia\nLoraine\nLorinda\nLupita\nMarylou\nMerry\nNicki\nReyna\nRomy\nRosalva\nRosanne\nSeana\nShanda\nSophie\nSuzie\nTisha\nTresa\nAda\nAlejandra\nAndria\nBerta\nBonita\nCarmel\nCristine\nDixie\nElsie\nErlinda\nGeneva\nIsabelle\nKandy\nKatheryn\nKristan\nLavonne\nLeisa\nLeonor\nLoriene\nLouisa\nLuana\nLucille\nMarcela\nMarisol\nMaya\nMelina\nMina\nNiki\nRosalia\nRoseann\nRoslyn\nSharyl\nTiffanie\nWendie\nAdrianna\nAlecia\nAlexandria\nAracely\nArleen\nAva\nBianca\nCameron\nDaniella\nDanita\nDolly\nElla\nEloisa\nGilda\nHannah\nHollie\nJohnna\nKevin\nLolita\nMachelle\nManuela\nMariann\nMark\nMarlena\nMay\nPaul\nRonald\nRosalba\nRoxann\nSabina\nShaun\nSherilyn\nShonna\nStephani\nTerese\nTimothy\nTressa\nValentina\nVonda\nWende\nYolonda\nZena\nZoe\nAlaina\nAlthea\nAlyson\nArmida\nBabette\nBrandie\nBrian\nCandi\nChantel\nChristin\nChrystal\nCristi\nCristy\nCyndi\nDelfina\nDevon\nElia\nElke\nFiona\nGlenna\nGuillermina\nHarriet\nHermelinda\nJanina\nJoey\nKecia\nKymberly\nLashon\nLatricia\nLauna\nLaverne\nLavette\nLawanda\nLeesa\nLeslee\nLiana\nLiane\nLilly\nLise\nLucila\nMaggie\nMargot\nMarilee\nPilar\nRobbie\nRona\nRosalyn\nRosana\nRoxana\nRoxane\nScott\nSharla\nSherryl\nTamar\nTaunya\nTeresita\nTracee\nTrena\nAdele\nAlberta\nAlina\nAmi\nAnjanette\nAnnabelle\nAnnalisa\nAretha\nBeckie\nBelen\nCaitlin\nCassie\nCharlette\nChristopher\nCora\nDaniel\nDaniela\nDarcie\nDedra\nDeserie\nEdwina\nErnestine\nEster\nFabiola\nFelecia\nGayla\nHerlinda\nIna\nIvette\nJacque\nJacquline\nJaqueline\nJoseph\nKarol\nKathlene\nKelle\nKimber\nKimmie\nKrystal\nLibby\nLorelei\nMagda\nMalissa\nMiranda\nNathalie\nNicolle\nNita\nRenita\nRomona\nRonnie\nShanon\nSiobhan\nStacee\nStefani\nSummer\nSusannah\nTambra\nTamie\nTammera\nTena\nTera\nThomas\nAdelina\nAndra\nAntonette\nAutumn\nCallie\nCarina\nCathie\nCecile\nCecily\nChantal\nCheree\nCherice\nCherrie\nCherry\nChristiane\nCinthia\nCorine\nCristin\nDalia\nDanica\nDawnette\nDorothea\nEdie\nElisha\nEliza\nErma\nErnestina\nEunice\nFatima\nFaye\nGay\nGaylene\nHortencia\nIvy\nJonelle\nJordana\nJose\nJulianna\nKeli\nKendall\nKristal\nLauretta\nLeandra\nLeeanne\nLenore\nLillie\nMelba\nMerri\nMireya\nMirna\nMorgan\nOralia\nPage\nRachele\nRana\nRhoda\nShawnna\nShonda\nSoledad\nSteffanie\nStephen\nStephenie\nSteven\nTamela\nTammara\nTammra\nTonette\nValorie\nViolet\nWilliam\nWillie\nYevette\nAdriane\nAmparo\nAnisa\nCherilyn\nClarice\nDale\nDarleen\nDawne\nDelaine\nDiedra\nDinah\nDorinda\nEden\nElida\nEtta\nFawn\nFelice\nGeorgiana\nGerri\nGillian\nHayley\nHazel\nIliana\nJayme\nJeffrey\nJenna\nJerry\nJoleen\nJuliette\nKarey\nKarlene\nLanita\nLarisa\nLatina\nLatisha\nLawana\nLiesl\nLila\nLilian\nLindsay\nLisette\nLoree\nLyn\nMadonna\nMarianna\nMarti\nMaryellen\nMichaelle\nNeva\nNicolette\nRina\nRoseanne\nRossana\nSalina\nSerina\nShiela\nStephany\nSunny\nTamala\nTiffiny\nTreva\nTroy\nTrudi\nViola\nWilma\nXochitl\nAlena\nAnabel\nAnnamaria\nAnnetta\nAstrid\nAundrea\nBernadine\nCamie\nCandie\nCatharine\nCharise\nCher\nChristal\nChristene\nCyndee\nDanae\nDanyelle\nDebbra\nDelisa\nDennise\nDonielle\nDonya\nDyan\nDyana\nEloise\nEric\nEvangeline\nFrankie\nGricelda\nJacquelin\nJenine\nJina\nJolynn\nKary\nKeely\nKenya\nKitty\nKristian\nLa\nLela\nLindsey\nLindy\nMariana\nMelani\nMellissa\nMelynda\nMichaele\nMilissa\nMisti\nMoira\nNatalia\nNedra\nNola\nParis\nPhoebe\nRaymond\nRonette\nRosamaria\nRoseanna\nSari\nSarita\nShane\nSharee\nSonji\nTobi\nToi\nTonie\nTrinidad\nTyra\nVelia\nVelvet\nAgnes\nAleta\nAngeline\nBarbie\nBecki\nBlanche\nBobby\nBrandee\nBrigid\nBritt\nCaprice\nCarissa\nCarlyn\nCassaundra\nCharleen\nCharles\nChristen\nChristianne\nCruz\nDanell\nDannette\nDannielle\nDarice\nDebbi\nDebrah\nDede\nDenette\nDenna\nDiann\nEdward\nErinn\nEulalia\nFlor\nGayleen\nGeorgianna\nGianna\nHolli\nHortensia\nIla\nIleana\nJacki\nJaimie\nJanae\nJennette\nJerilyn\nJerrie\nJesus\nJewel\nJoie\nJonnie\nJustina\nKatherin\nKaye\nKimmy\nKindra\nLavon\nLavonda\nLenette\nLissa\nLuanne\nLuci\nLynelle\nMabel\nMae\nMarivel\nMayra\nMeghan\nMercy\nMicaela\nMichel\nMiko\nNadia\nPia\nRanda\nRandee\nRebel\nReina\nRenea\nRhea\nRicki\nRisa\nRosaura\nSandie\nSherice\nShireen\nShonta\nSuanne\nSuzann\nSybil\nTani\nTatia\nTeena\nTosha\nToya\nTwila\nTwyla\nZelda\nAlycia\nAnamaria\nArianne\nBambi\nBelia\nBessie\nBriana\nBritta\nBrook\nCarlotta\nCaron\nCary\nCelene\nChana\nChanda\nChanelle\nCharline\nChere\nCheryle\nChristiana\nCinda\nCoreen\nDani\nDarby\nDelinda\nDeneen\nDenyse\nDevra\nDione\nDonelle\nDonyale\nEarlene\nElana\nElba\nEnedina\nEvonne\nFelisa\nFrank\nGermaine\nGinny\nGisele\nHanna\nHaydee\nHeide\nHenrietta\nHoney\nIlda\nInga\nInge\nIona\nJacqualine\nJeanetta\nJena\nJenee\nJenelle\nJenette\nJenise\nJoanie\nJoel\nJohnnie\nJoi\nJona\nJuliane\nKamala\nKarlyn\nKellene\nKenneth\nKimberely\nKimberlyn\nKimi\nKristene\nKym\nKyra\nLainie\nLashaun\nLatonja\nLetecia\nLezlie\nLianne\nLinette\nLizette\nLoni\nLoralee\nLuann\nLucretia\nMadeleine\nMaile\nMalina\nMarcelle\nMarna\nMellisa\nMickie\nMillicent\nMinnie\nMirella\nMollie\nNelly\nOphelia\nPortia\nRacheal\nRenata\nRobbi\nRosaisela\nRosetta\nRuthann\nRuthie\nSabrena\nSandee\nSean\nSelma\nShara\nSharilyn\nShaunna\nShawnda\nShawnee\nSherlyn\nTawni\nTeressa\nTerisa\nTerra\nTisa\nTressie\nValinda\nVilma\nViviana\nWilla\nYasmin\nZina\nAdina\nAlane\nAlanna\nAlexa\nAlondra\nAlyssa\nAnalisa\nAnastacia\nAndera\nAndre\nAngelena\nAnnabel\nArianna\nCamela\nCamilla\nCammy\nCandelaria\nCarolynn\nCasandra\nCathlene\nChanel\nChrissy\nConni\nCoral\nCorey\nCris\nDalene\nDalila\nDaneen\nDanya\nDanyell\nDarlynn\nDeeann\nDeedra\nDelana\nDemetra\nDenee\nDeonna\nDevin\nDonald\nDusty\nDyann\nElizabet\nErmelinda\nEydie\nFay\nFlora\nFrancis\nFreda\nGari\nGary\nGeorgie\nGiselle\nHerminia\nHiedi\nIlona\nInger\nIsabella\nIsela\nIva\nIvonne\nJaclyn\nJanee\nJannette\nJeanell\nJeneen\nJesusita\nJewell\nJillian\nJoetta\nJolee\nJosephina\nJozette\nJulissa\nKaaren\nKai\nKarleen\nKarolyn\nKayleen\nKellye\nKenna\nKerstin\nKiersten\nKisha\nKyla\nLanna\nLarae\nLarhonda\nLasonya\nLauralee\nLeane\nLeia\nLeighann\nLeondra\nLetty\nLiliana\nLona\nLonna\nLonnie\nLoren\nLorina\nLory\nMadelyn\nMamie\nMaricruz\nMarietta\nMarika\nMariza\nMarlina\nMartine\nMaryjane\nMatthew\nMelodi\nMelonie\nMelony\nMeri\nMerrie\nMichaela\nMicki\nMika\nMila\nMindi\nMischelle\nMuriel\nMyla\nNicol\nNidia\nNona\nNova\nObdulia\nPat\nPatrick\nPattie\nPennie\nPerla\nPiper\nPrincess\nQuinn\nRachell\nRaelene\nRandy\nRaul\nRaylene\nRaynette\nRikki\nRoma\nRonnette\nRosalina\nRowena\nSallie\nSan\nSanta\nSebrina\nShellee\nSherita\nSherril\nSherrill\nShirlee\nShirlene\nSiria\nStacye\nStar\nSuzi\nSylvie\nTamila\nTammey\nTawnia\nTessa\nTessie\nTiana\nTish\nTresha\nTrini\nValeria\nVenice\nVickey\nViki\nVivien\nYadira\nAdeline\nAdria\nAlbertina\nAlejandrina\nAlene\nAlex\nAlexia\nAlise\nAlva\nAlyce\nAlysa\nAndree\nAnjeanette\nAnnett\nAntonieta\nAntonietta\nArcelia\nArminda\nArnetta\nAura\nBeatris\nBeverley\nBirgit\nBobbette\nBrenna\nBronwyn\nCammie\nCandyce\nCarlette\nCarolee\nCasie\nCaterina\nChante\nCharity\nCherish\nCherisse\nCherly\nCherlyn\nCheryll\nChristel\nChristena\nCindie\nCinnamon\nCorie\nCornelia\nCozette\nCristal\nCristie\nCydney\nCyndy\nDahlia\nDanika\nDann\nDaria\nDeeanna\nDeette\nDeirdra\nDelena\nDelene\nDelphine\nDenene\nDeniece\nDenine\nDennis\nDenyce\nDestiny\nDevera\nDian\nDiedre\nDonita\nDonnetta\nDorian\nDorrie\nDorthy\nDottie\nDreama\nDrena\nDulce\nElicia\nEna\nEugenie\nEvelia\nEvelina\nFonda\nFrieda\nGaye\nGerry\nGlynda\nHallie\nInes\nIvana\nJacinta\nJacklyn\nJacquelynn\nJade\nJammie\nJanay\nJaney\nJani\nJannie\nJaylene\nJeanene\nJenell\nJeni\nJimmie\nJodee\nJohnette\nJolyn\nJon\nJonell\nJoycelyn\nJulene\nJulienne\nKacy\nKandace\nKareen\nKarene\nKassandra\nKaterina\nKathren\nKathryne\nKaylene\nKelsey\nKeshia\nKimberle\nKori\nKrissy\nKristel\nKristyn\nKyle\nLacey\nLachelle\nLasandra\nLasaundra\nLashanda\nLaticia\nLaurinda\nLeasa\nLeeanna\nLelia\nLeonora\nLetica\nLigia\nLinnea\nLinnette\nLisha\nLou\nLourie\nLucina\nLus\nLynetta\nLynna\nLysa\nMaia\nMakeba\nMalia\nMarcelina\nMarcey\nMaren\nMargery\nMarguerita\nMariam\nMarline\nMarsi\nMarty\nMarya\nMaryhelen\nMatilda\nMaurine\nMayumi\nMeagan\nMechele\nMerritt\nMignon\nMiki\nMirtha\nMishelle\nNatalee\nNelda\nPandora\nPaola\nPatrina\nPenni\nPeri\nPetrina\nRacquel\nRaeann\nRashell\nRayna\nRechelle\nRenay\nRomi\nRomina\nRonica\nRosalynn\nRosella\nRoselyn\nRosina\nRozanne\nSaadia\nSarina\nSasha\nScarlet\nShanta\nSharie\nSharleen\nSharyn\nShayna\nShereen\nSheril\nSheron\nSheryn\nShonte\nSonjia\nSoraya\nSusette\nSyliva\nSynthia\nTabetha\nTaffy\nTahnee\nTalitha\nTaryn\nTawny\nTeresia\nTess\nTheodora\nTiffaney\nTommie\nTorrie\nTory\nTreasa\nVeda\nVita\nWendee\nWinifred\nWinona\nYumi\nZenaida\nLisa\nMichelle\nJennifer\nKimberly\nLaura\nJulie\nChristine\nKaren\nPatricia\nMaria\nElizabeth\nKelly\nMary\nTina\nCynthia\nSusan\nSandra\nStephanie\nAngela\nChristina\nMelissa\nDeborah\nMichele\nWendy\nTammy\nDenise\nTracy\nLinda\nLori\nDawn\nTeresa\nGina\nRebecca\nShannon\nKathleen\nAmy\nNancy\nMonica\nPamela\nAndrea\nDonna\nCheryl\nDebra\nDiana\nStacy\nHeather\nBarbara\nBrenda\nJill\nTheresa\nRobin\nStacey\nSharon\nDiane\nTamara\nRhonda\nCatherine\nRenee\nNicole\nCarol\nSuzanne\nVeronica\nPaula\nVictoria\nKatherine\nDana\nKim\nDeanna\nAnna\nLeslie\nCindy\nJacqueline\nKristin\nCarrie\nYolanda\nAnn\nYvonne\nHeidi\nRachel\nValerie\nApril\nTanya\nRegina\nCarolyn\nShelly\nAlicia\nSheila\nMargaret\nKristine\nYvette\nSylvia\nTiffany\nKristen\nLaurie\nSherry\nAnnette\nJanet\nMartha\nErin\nSheri\nDanielle\nSarah\nAnne\nKathryn\nMelinda\nDebbie\nKristina\nMonique\nKathy\nJamie\nTerri\nTonya\nGloria\nJulia\nLeticia\nTraci\nRosa\nColleen\nMelanie\nTracey\nJessica\nShelley\nHolly\nSamantha\nSherri\nSonia\nAnita\nNorma\nVicki\nJeanette\nNatalie\nCarla\nKimberley\nTami\nCarmen\nLynn\nConnie\nVirginia\nDarlene\nAna\nMarie\nJodi\nBonnie\nKristi\nToni\nSara\nIrene\nChristy\nCrystal\nKelli\nSabrina\nRose\nRuth\nClaudia\nFrances\nJanice\nLorraine\nCathy\nCassandra\nRaquel\nSonya\nAlice\nKari\nLara\nDina\nKelley\nElaine\nLeah\nTeri\nKellie\nKirsten\nSheryl\nKerry\nCharlene\nBeth\nJoanne\nAmanda\nCaroline\nCharlotte\nHelen\nShawn\nJudy\nCheri\nRita\nJoy\nTrina\nJody\nRoberta\nRochelle\nAmber\nLynette\nMaureen\nEileen\nErika\nJudith\nRamona\nEva\nAllison\nLorena\nLydia\nIrma\nAdrienne\nShawna\nShirley\nCecilia\nMarlene\nBeverly\nErica\nSally\nBecky\nTara\nGuadalupe\nSandy\nFelicia\nRachelle\nRonda\nKatrina\nDena\nStacie\nAntoinette\nRobyn\nTammie\nBridget\nJuanita\nAudrey\nDesiree\nJoyce\nVanessa\nAdriana\nStaci\nMelody\nTrisha\nAngelica\nGail\nJackie\nTerry\nAngelina\nJanine\nBelinda\nJoanna\nMarla\nPenny\nBetty\nEllen\nKristy\nDianna\nEvelyn\nKarin\nSonja\nAlma\nDeana\nRene\nShari\nCandace\nCristina\nJane\nAngelique\nJeanne\nMargarita\nDolores\nTracie\nKrista\nMarilyn\nPeggy\nJana\nVickie\nAlisa\nEmily\nJean\nJoann\nElena\nCherie\nDorothy\nAlison\nVivian\nArlene\nChristie\nLora\nDarla\nBrandi\nEsther\nRosemary\nJenny\nLoretta\nSilvia\nKarla\nTricia\nElisa\nJoan\nRoxanne\nIsabel\nMegan\nNina\nSophia\nBernadette\nKeri\nMia\nKerri\nLucy\nShauna\nGinger\nGrace\nLynda\nWendi\nDarcy\nOlivia\nLaurel\nMarcella\nKristie\nLillian\nMarina\nMarcia\nTammi\nAngie\nCeleste\nDeanne\nLorie\nTonia\nGabriela\nJeannette\nLauren\nLeanne\nOlga\nSherrie\nSusanne\nJosephine\nLupe\nVicky\nCari\nCathleen\nMona\nAudra\nShana\nSusana\nAlexandra\nDianne\nLeigh\nNaomi\nNora\nJeannie\nJo\nBlanca\nChristi\nJanelle\nStefanie\nTania\nLuz\nMarianne\nKimberlee\nPauline\nPriscilla\nWanda\nGena\nMolly\nDoreen\nJodie\nSuzette\nDelia\nFrancine\nGeorgina\nJeanine\nMisty\nSue\nConstance\nGretchen\nKara\nKendra\nBrandy\nCandice\nCandy\nPaige\nBobbie\nDora\nJanette\nMarlo\nMarnie\nNoelle\nNichelle\nAimee\nElsa\nIngrid\nSerena\nSusie\nChris\nLynne\nMarisa\nBertha\nCamille\nChrista\nElisabeth\nTamra\nDanette\nDionne\nJennie\nLesley\nCarolina\nCelia\nCourtney\nHope\nJacquelyn\nLana\nLeann\nNadine\nNanette\nBeatrice\nLatonya\nLena\nMarta\nGeorgia\nMarjorie\nMindy\nDebora\nJeri\nLee\nColette\nDeena\nKris\nLatanya\nLea\nBridgette\nGraciela\nJulianne\nRachael\nAmelia\nEdith\nGlenda\nJenifer\nShanna\nTabatha\nAngel\nChandra\nGayle\nJeannine\nRuby\nGeraldine\nKaryn\nShelli\nEleanor\nGwendolyn\nJune\nLiza\nMarsha\nPatty\nShellie\nAshley\nCorinne\nDoris\nLashawn\nLourdes\nPatrice\nAurora\nMiriam\nNikki\nCara\nPatti\nStella\nCarole\nJessie\nJosette\nMaribel\nBillie\nJosefina\nKatharine\nLynnette\nMichael\nPhyllis\nAnnmarie\nBeatriz\nBrooke\nJami\nLilia\nLouise\nMarci\nMaricela\nAraceli\nBrigette\nConsuelo\nDeirdre\nJan\nKarrie\nLadonna\nMaryann\nClaudine\nMarcy\nPam\nRosemarie\nBernice\nLucia\nLucinda\nMelisa\nBrigitte\nLauri\nPaulette\nRosalinda\nUrsula\nCecelia\nDawna\nEdna\nJuli\nLorrie\nMargie\nTherese\nValarie\nAngelia\nEsperanza\nNatasha\nRena\nTabitha\nTamera\nTiffani\nAnissa\nCarey\nCorina\nDaphne\nEmma\nJerri\nJocelyn\nKatie\nRobert\nRosie\nSandi\nShelia\nCaryn\nClaire\nDavid\nElise\nJanell\nJoelle\nEvangelina\nGabrielle\nHilda\nMara\nMargo\nVikki\nBuffy\nDeann\nHilary\nJuliet\nJustine\nLois\nMari\nElvia\nJanis\nJuana\nMarissa\nMeredith\nTerrie\nAileen\nAthena\nDara\nDella\nJaime\nJohanna\nJohn\nJoni\nJuliana\nMarian\nRosanna\nTamatha\nClara\nColeen\nDayna\nDeidre\nDenice\nElvira\nEstella\nJolene\nLeeann\nLorna\nMarisela\nMarni\nRosalie\nSondra\nSusanna\nTamiko\nTasha\nAbigail\nCatalina\nEstela\nGriselda\nIris\nMarcie\nMitzi\nTonja\nAnnie\nDee\nImelda\nLatrice\nNoel\nRosalind\nSimone\nCorrina\nDominique\nGenevieve\nGwen\nHillary\nIda\nJames\nKay\nKerrie\nRichelle\nShanon\nShelby\nSuzanna\nTawnya\nAida\nAmie\nCami\nJaneen\nJolie\nNichole\nVera\nAlana\nAntonia\nElva\nFaith\nMalinda\nMichell\nRobbin\nWindy\nAlisha\nAnastasia\nAngelita\nAnnemarie\nBobbi\nEve\nLeona\nMercedes\nPolly\nRocio\nRosario\nTia\nAdrianne\nAlejandra\nAllyson\nBridgett\nCarie\nCorrine\nFrancisca\nJanel\nJosie\nKami\nLanette\nLeanna\nLiana\nMarion\nMartina\nRae\nTisha\nAdrian\nAlissa\nDelores\nEsmeralda\nEugenia\nJanna\nKrystal\nLatonia\nLeilani\nMechelle\nRandi\nRebekah\nRenae\nSocorro\nCaren\nCarin\nCharmaine\nCindi\nCorinna\nEricka\nFrancesca\nJanie\nJeanna\nKate\nKimberlie\nLesa\nLidia\nMagdalena\nNicolette\nPetra\nSofia\nCassie\nGreta\nLily\nMyra\nNanci\nRosalyn\nSabina\nVenus\nAdriane\nAlexis\nAnnamarie\nAretha\nKathrine\nKimberli\nKirstin\nLarissa\nLorinda\nMariana\nMarlena\nRoni\nSaundra\nSheree\nAlexandria\nBethany\nBettina\nCaprice\nClarissa\nDani\nDeedee\nDevon\nFlorence\nJeana\nKandi\nLia\nMarcela\nMaura\nOfelia\nPearl\nSharlene\nSharron\nSherie\nTamie\nBetsy\nDaniel\nDarci\nEvette\nGeri\nHazel\nHelena\nJoey\nKarina\nKasey\nLani\nLenora\nLucille\nMandy\nMarisol\nMaya\nMonika\nNannette\nNoemi\nPatsy\nPenelope\nRoseann\nRoxanna\nStephani\nAlyssa\nAntionette\nCandi\nChristian\nCristi\nCristine\nDavina\nElissa\nElke\nJeanie\nKecia\nMadeline\nMinerva\nMyrna\nRichard\nRosalia\nShannan\nSydney\nThelma\nTrena\nVelma\nWhitney\nAva\nCarmel\nCristin\nCyndi\nDanelle\nDanita\nDebby\nEden\nGeorgette\nJanene\nKarie\nKarri\nKellee\nLavonne\nManuela\nMaritza\nMiranda\nRosalva\nRosana\nSelena\nStefani\nTamela\nTrudy\nAda\nAlesia\nAmalia\nArleen\nCasandra\nCasey\nCatrina\nCelina\nChantal\nDori\nEunice\nJohnna\nKam\nKimber\nKristan\nLeonor\nLetitia\nLola\nLuisa\nLupita\nMellissa\nNellie\nNoreen\nPilar\nRebeca\nRobbie\nSeana\nSuzan\nValorie\nVerna\nYevette\nAlecia\nArmida\nBarbra\nBrandie\nCarri\nChantel\nChrystal\nClaudette\nCollette\nCora\nDanna\nDebi\nDeeann\nDorene\nEliza\nErma\nErnestine\nGeneva\nGigi\nHannah\nJillian\nKathi\nKeisha\nKimberely\nKristal\nLarisa\nLenore\nLiz\nLoree\nLorri\nMalissa\nMargot\nMimi\nPennie\nRosanne\nRoseanne\nShona\nStephenie\nSuzie\nTiffanie\nTori\nAdela\nAnthony\nBrenna\nCathryn\nCherise\nDarcie\nEric\nGia\nJulianna\nLatisha\nMachelle\nMarguerite\nMildred\nNicola\nNiki\nRoslyn\nSelina\nTrudi\nAlberta\nAndria\nAntonette\nArcelia\nCameron\nCarina\nCarissa\nCarmela\nCheryle\nCinnamon\nConcepcion\nDaisy\nDeidra\nElaina\nFabiola\nFrankie\nGidget\nGillian\nJenelle\nJonna\nJudi\nJustina\nKeli\nLatasha\nLeesa\nLorene\nMark\nMelina\nMichel\nMissy\nPamala\nReina\nRosalba\nRoxana\nRoxann\nShantel\nShawnna\nShiela\nShonna\nSummer\nSybil\nTamala\nZoe\nAlba\nAlthea\nAngeline\nBenita\nCoreen\nCorey\nDanica\nDaniele\nDarleen\nElla\nEthel\nFlora\nGay\nGinny\nIlene\nJoell\nJuliette\nKathie\nKisha\nKori\nLatricia\nLaverne\nLeila\nLiane\nLila\nLolita\nLouisa\nMarti\nMaxine\nMeghan\nMirna\nRonna\nRoxane\nSharla\nSunny\nSuzy\nTammara\nTena\nTerese\nThomas\nValentina\nWilliam\nAdriene\nAngelic\nAracely\nAutumn\nCaitlin\nCammie\nCarmelita\nCary\nChere\nChristiana\nChristopher\nCinthia\nDiann\nDixie\nDolly\nEmilia\nErinn\nErnestina\nEvangeline\nFaye\nGladys\nHayley\nHeide\nInez\nIvette\nIvy\nJayme\nJayne\nJenni\nJolynn\nJulieann\nKamela\nKaty\nKimi\nKyra\nLaureen\nLawanda\nLela\nLoraine\nMarty\nMelodie\nMina\nMindi\nPhaedra\nRaylene\nReyna\nRhea\nRona\nRuthie\nShaun\nStacee\nStacia\nStar\nSteven\nTana\nTessa\nTimothy\nTracee\nYael\nAdina\nAlanna\nAmi\nAnnabelle\nBerta\nCandie\nCarleen\nCharisse\nCharla\nCharles\nClare\nCori\nCristy\nDebbra\nDeeanna\nDemetria\nDenese\nElida\nErlinda\nFelisa\nGayla\nGiselle\nGracie\nGuillermina\nHollie\nIsabelle\nJacquline\nJamee\nJannette\nJasmine\nJoel\nJohnnie\nKarolyn\nKelle\nKevin\nKira\nKristyn\nLiliana\nLina\nLizette\nLonnie\nLucretia\nMarianna\nMaryanne\nMay\nMichaele\nMoira\nNatalia\nNickie\nNicol\nNita\nPatrica\nPaul\nPerla\nPiper\nRacquel\nRolanda\nRomona\nRonnie\nSarina\nShayne\nShereen\nTanja\nTobi\nTresa\nTroy\nAdelina\nAgnes\nAlycia\nAlyson\nAriana\nBelen\nBrian\nCamilla\nCarlene\nCathi\nCecile\nChantell\nChantelle\nCharity\nCharleen\nChrissy\nChristen\nClarice\nCoretta\nCrista\nDaniela\nDannette\nDawne\nDedra\nDyan\nEdie\nElsie\nFelecia\nGale\nHelene\nInga\nJacquelin\nJanae\nJaqueline\nJenise\nJerry\nJodee\nJona\nKassandra\nKathlene\nKendall\nKitty\nLaronda\nLashon\nLavon\nLeisa\nLiesl\nLilly\nLissa\nLoreen\nLorelei\nLory\nLuanne\nLyn\nMadonna\nMagda\nNadia\nRaelene\nRana\nRenay\nSheli\nShonda\nStephany\nTambra\nValeria\nVenessa\nYolonda\nAdele\nAleta\nAlisia\nAlyce\nBriana\nBritt\nCathrine\nCheree\nCindee\nCorine\nCorrie\nDaniella\nDannielle\nDelana\nDeonna\nDione\nDona\nDorothea\nElia\nEloisa\nEnedina\nHallie\nHenrietta\nHortencia\nIna\nIsela\nIvonne\nJacki\nJoi\nJoleen\nKiersten\nLarhonda\nLeandra\nLilian\nLisette\nLisha\nMaggie\nMariann\nMarybeth\nMarylou\nMellisa\nMilissa\nNathalie\nNicki\nNicolle\nPia\nRachell\nRaina\nReba\nRenea\nRicki\nRonette\nSallie\nShirlene\nSoledad\nStephaine\nStephen\nSuzann\nTeena\nTeresita\nTiffiny\nToi\nToya\nTreva\nTuesday\nTwyla\nVioleta\nVonda\nWende\nWilma\nAdrianna\nAletha\nAnnalisa\nAnnamaria\nAnnetta\nAriel\nAundrea\nBambi\nBernadine\nBessie\nBonita\nBonny\nBrook\nCarlotta\nCatharine\nCelena\nChana\nCherri\nCherrie\nCindie\nDanae\nDanell\nDeandra\nDebbi\nDelilah\nDeloris\nDemetra\nDenna\nDyana\nEster\nEvelia\nFatima\nFrancis\nGabriella\nGary\nGianna\nGisela\nJaclyn\nJacque\nJammie\nJenna\nJerilyn\nJerrie\nJewel\nJoe\nJoellen\nJoycelyn\nJulissa\nKamala\nKandy\nKarena\nKarol\nKatheryn\nKeith\nKenna\nKenneth\nLaticia\nLavonda\nLeeanne\nLesli\nLindsay\nLindy\nLise\nLonna\nLuci\nLucila\nMadelyn\nMalia\nMarchelle\nMarleen\nMarna\nMatthew\nMayra\nMeagan\nMercy\nMika\nMillie\nMinette\nPage\nPat\nPortia\nQuincy\nRacheal\nRanae\nRochell\nRoseanna\nScott\nSean\nShane\nSharleen\nSharyn\nSophie\nStarla\nSteffanie\nSunday\nSusannah\nSynthia\nTawnia\nTawny\nTerrell\nThea\nTinamarie\nTressa\nTyra\nValencia\nVeda\nViola\nViolet\nWillie\nWindi\nZulema\nAlaina\nAlexa\nAlta\nAmerica\nAmparo\nAndra\nAndre\nAnnabel\nBianca\nBronwyn\nCarolynn\nCharon\nChristal\nChristiane\nChristin\nCristal\nCristen\nCristie\nDale\nDalia\nDarby\nDe\nDelisa\nDennise\nDiedra\nDinah\nDonald\nDorinda\nDusty\nFreda\nGaylene\nGerri\nGilda\nGlenna\nHaley\nIlda\nIleana\nInger\nJanee\nJaymie\nJenell\nJoely\nJolyn\nJose\nJosefa\nJoseph\nJovita\nJulieta\nKarleen\nKenya\nKirstie\nKyla\nKym\nLa\nLaila\nLatina\nLillie\nLita\nLona\nLorretta\nLuana\nMalisa\nMandi\nMarsi\nMartine\nMarva\nMarya\nMelynda\nMerry\nMireya\nMollie\nNeva\nNona\nPrincess\nRenita\nRikki\nRosalina\nRosetta\nRoshawn\nSalina\nSarita\nSasha\nShandra\nShanta\nSharee\nSheena\nSherilyn\nSherrill\nShireen\nSirena\nSoraya\nStarr\nTamika\nTatiana\nTeressa\nTerina\nTerra\nTomika\nTonie\nTosha\nVilma\nXochitl\nZena\nAisha\nAlane\nAlejandrina\nAlena\nAlexia\nAlica\nAnastacia\nAndrew\nAnette\nAnisa\nAstrid\nAurelia\nBabette\nBeckie\nBette\nBrandee\nBrigid\nCammy\nCandelaria\nCarmella\nCathie\nCathlene\nCatrice\nCelestine\nCherilyn\nChristianne\nCleo\nCorie\nCyndy\nDania\nDanise\nDeshawn\nDetra\nDiedre\nDiona\nDonelle\nElba\nEloise\nElyse\nEulalia\nEvie\nFelica\nFonda\nFreya\nGeorgiana\nGiovanna\nHattie\nHerminia\nIlana\nJanina\nJoanie\nJulee\nJulisa\nKarey\nKarry\nKary\nKayleen\nKellye\nKena\nKesha\nKimberlyn\nKimmie\nKristian\nKymberly\nLainie\nLarae\nLeda\nLeora\nLeslee\nLetisia\nLianne\nLibby\nLinette\nLizabeth\nLoriann\nLuann\nLynell\nMabel\nMae\nMarcelle\nMaricruz\nMarielle\nMario\nMarne\nMerri\nMichaela\nMichaelle\nMila\nMirella\nMischelle\nMorgan\nNichele\nNicholle\nPandora\nPattie\nPetrina\nRachele\nRandee\nRandy\nRaquelle\nRaymond\nRomy\nRoselyn\nRosio\nRowena\nSabra\nSandie\nSerina\nShanda\nShara\nSharman\nSharyl\nShawnee\nSigrid\nSiobhan\nSpring\nStarlene\nSusann\nTamar\nTammera\nTawni\nTerisa\nThalia\nTiffney\nTodd\nAdeline\nAdena\nAlbertina\nAlethea\nAnabel\nAngele\nAnja\nAnneliese\nAudrea\nBarbie\nBella\nBeverley\nBilly\nBrett\nCaryl\nChanda\nChanel\nCher\nCherry\nConni\nCoral\nCory\nCris\nCruz\nCydney\nCyndie\nDamaris\nDaneen\nDanika\nDanyelle\nDaria\nDaryl\nDava\nDawnell\nDebrah\nDelma\nDenita\nDondi\nEarlene\nEdwina\nElicia\nEna\nErmelinda\nEryn\nEstelle\nEvon\nFawn\nFay\nFelice\nFelicitas\nFiona\nFlorencia\nFrancie\nGenoveva\nGregory\nHenry\nHermelinda\nHiedi\nHoney\nIliana\nIlona\nJacinda\nJada\nJanean\nJeanetta\nJeffrey\nJesus\nJoette\nJon\nJulene\nJulieanne\nJullie\nKasandra\nKatherina\nKayla\nKaylene\nKerie\nKhristine\nKimiko\nKindra\nKoreen\nKyle\nLacey\nLannette\nLashan\nLashanda\nLashaun\nLashonda\nLauna\nLaurene\nLeatha\nLei\nLeta\nLeza\nLezlie\nLindsey\nLonda\nLoren\nLorianne\nLou\nMaren\nMargret\nMariaelena\nMaribeth\nMarline\nMelany\nMelonie\nMicheal\nMignon\nMira\nMisti\nNerissa\nNinette\nOlympia\nOphelia\nParis\nPatrick\nPatrisia\nPaulina\nRaeann\nRebecka\nRemi\nRhoda\nRhona\nRina\nRisa\nRoberto\nRonnette\nRosamaria\nRosita\nSabine\nSabrena\nSacha\nSamara\nShannen\nShantell\nSharen\nSharolyn\nShaunna\nShellee\nSherita\nSherryl\nSilva\nSona\nSonjia\nSuann\nSusette\nSuzi\nTabetha\nTarina\nTayna\nTera\nToby\nTomasa\nTrista\nTyla\nVita\nWendee\nWendie\nWinifred\nAbby\nAddie\nAdelia\nAdelita\nAdella\nAlbert\nAlethia\nAlina\nAnamarie\nAndree\nAngella\nAni\nAnthea\nAntonina\nAntonio\nArthur\nBalinda\nBecki\nBetina\nBlythe\nBobby\nBrianna\nBridgitte\nBrittany\nBuffie\nBunny\nCallie\nCameo\nCamie\nCandyce\nCarlos\nCarmina\nCaron\nCelestina\nCharise\nCherisse\nChristel\nCinda\nDaena\nDaina\nDanyel\nDarice\nDawnn\nDelfina\nDelinda\nDemetrius\nDennis\nDeserie\nDhana\nDian\nDjuana\nDomenica\nDominica\nDonia\nDonielle\nDonya\nDoretha\nDwana\nEdward\nEilene\nElayne\nErik\nFern\nFranki\nGala\nGlynis\nGretel\nGricelda\nGwyn\nHerlinda\nHolli\nIsabell\nIxchel\nJacinta\nJacklyn\nJacquelynn\nJade\nJanea\nJanett\nJaniece\nJanise\nJannet\nJason\nJeanice\nJeanmarie\nJeneen\nJenette\nJeni\nJenice\nJennefer\nJeralyn\nJoana\nJohnny\nJolanda\nJolee\nJoley\nJonelle\nJonette\nJordana\nJosephina\nJoya\nJozette\nJuliann\nKandace\nKandice\nKarlene\nKarlyn\nKaron\nKassie\nKaterina\nKathryne\nKelene\nKellene\nKendal\nKerith\nKerstin\nKia\nKimberle\nKoren\nKriss\nKriste\nKristeen\nLachelle\nLadawn\nLahoma\nLanetta\nLannie\nLarry\nLashone\nLashun\nLatonja\nLatosha\nLaure\nLauretta\nLavern\nLavette\nLavinia\nLavonna\nLawana\nLeeanna\nLeshawn\nLetha\nLetty\nLiese\nLinnea\nLorenza\nLucie\nLulu\nLynnae\nLysa\nMagaly\nMaile\nMarcee\nMarnee\nMarvella\nMaryellen\nMaryjo\nMauricia\nMaurine\nMeg\nMelba\nMelodi\nMelony\nMelva\nMicaela\nMichelene\nMillicent\nMireille\nMishelle\nMonet\nMya\nMyriam\nNedra\nNelly\nNena\nNichola\nNicky\nNikole\nNola\nNorine\nNorman\nPenni\nPeri\nPhoebe\nRafaela\nRayna\nRebbecca\nRegena\nRenata\nRobynne\nRonald\nRosina\nRoxie\nRudy\nRuthann\nSamone\nSeanna\nShalon\nShanell\nSharilyn\nShawnte\nShelene\nSherice\nSherlyn\nSherron\nSheryle\nShoshana\nSidney\nSloane\nStephane\nStephine\nSteve\nTama\nTamarra\nTammatha\nTammra\nTani\nTanna\nTaryn\nTerresa\nTimi\nTomi\nTommie\nTonette\nToy\nTrace\nTracye\nTreasa\nTrini\nTrinidad\nValeri\nVelia\nVelvet\nVickey\nVictor\nXochilt\nYesenia\nZandra\nZina\nLisa\nMichelle\nJennifer\nKimberly\nJulie\nLaura\nChristine\nMaria\nChristina\nPatricia\nCynthia\nElizabeth\nStephanie\nShannon\nKaren\nMary\nSandra\nMelissa\nTina\nAngela\nKelly\nSusan\nTracy\nHeather\nDenise\nAmy\nWendy\nDawn\nRebecca\nMichele\nLori\nDeborah\nGina\nTammy\nNicole\nTeresa\nMonica\nLinda\nKathleen\nAndrea\nPamela\nStacy\nDonna\nNancy\nDiana\nStacey\nDebra\nCheryl\nBrenda\nTamara\nBarbara\nDana\nSharon\nTheresa\nHeidi\nCatherine\nDiane\nKatherine\nLeslie\nRenee\nDeanna\nRachel\nVictoria\nVeronica\nRobin\nSuzanne\nAnna\nRhonda\nJill\nErin\nTanya\nKristin\nAnn\nCindy\nTiffany\nJacqueline\nApril\nCarol\nKim\nAlicia\nCarrie\nValerie\nDanielle\nKristen\nPaula\nCarolyn\nYolanda\nYvonne\nJulia\nMargaret\nLaurie\nRegina\nSarah\nSheila\nKristine\nShelly\nKristina\nHolly\nJamie\nYvette\nKathryn\nSherry\nMelinda\nJessica\nGloria\nSylvia\nSonia\nMonique\nKathy\nRosa\nTonya\nAnne\nSheri\nMartha\nLeticia\nTerri\nMelanie\nTraci\nChristy\nSamantha\nJanet\nTara\nTracey\nKelli\nAnnette\nRaquel\nVirginia\nKristi\nDebbie\nNatalie\nCarla\nShelley\nTricia\nColleen\nNorma\nKellie\nSherri\nJodi\nSara\nAnita\nAna\nLynn\nCrystal\nJeanette\nIrene\nVanessa\nKimberley\nDarlene\nMarie\nLorraine\nErika\nCarmen\nBonnie\nClaudia\nSabrina\nGuadalupe\nRuth\nShawna\nElaine\nTami\nDina\nKirsten\nConnie\nCharlene\nFelicia\nKari\nRochelle\nErica\nToni\nTrina\nCathy\nRose\nShawn\nJanice\nAlice\nVicki\nAdriana\nDena\nAmber\nRobyn\nJoanne\nSonya\nJudith\nAmanda\nLara\nSheryl\nBecky\nBeth\nFrances\nRita\nTrisha\nTeri\nLorena\nLeah\nAllison\nCassandra\nJody\nRoberta\nKatrina\nHelen\nKelley\nKrista\nKristy\nRachelle\nBeverly\nBridget\nJudy\nIrma\nKerry\nAngelica\nEva\nJuanita\nCaroline\nEileen\nAlison\nEsther\nJoann\nRamona\nSonja\nStaci\nJoanna\nTammie\nMargarita\nCheri\nTracie\nMarlene\nAngelina\nEmily\nJoyce\nShari\nSilvia\nDolores\nDianna\nRonda\nCharlotte\nLydia\nCecilia\nEllen\nAudrey\nDesiree\nLynette\nPriscilla\nCristina\nEvelyn\nJoy\nStacie\nKarin\nMaureen\nMegan\nShirley\nDeana\nCandace\nSally\nAlma\nKerri\nAlisa\nBetty\nRoxanne\nArlene\nChristie\nShana\nAntoinette\nMarla\nBelinda\nJanine\nJean\nJenny\nNina\nBernadette\nGabriela\nTerry\nAdrienne\nCherie\nDorothy\nMelody\nJeanne\nKarla\nPenny\nBrandi\nSandy\nJackie\nKristie\nMarilyn\nBlanca\nCandy\nLoretta\nShauna\nJeannette\nMona\nSerena\nSophia\nVivian\nElena\nPeggy\nRene\nOlivia\nRosemary\nVickie\nWendi\nMarcella\nLora\nMeredith\nAudra\nKeri\nElisa\nJoan\nJosephine\nJane\nGinger\nLynda\nNichole\nMisty\nLeanne\nCandice\nGrace\nJanelle\nAngelique\nIsabel\nKendra\nCeleste\nMarina\nPauline\nRachael\nAimee\nDionne\nKara\nMolly\nGail\nJana\nJo\nKimberlee\nMaricela\nGretchen\nLuz\nNatasha\nDeanne\nDoreen\nLaurel\nLillian\nDarla\nJeannie\nAngie\nDelia\nJeanine\nAlexandra\nLatanya\nOlga\nSherrie\nSusana\nBertha\nDianne\nLauren\nShanna\nStefanie\nBobbie\nJodie\nMarianne\nKatie\nNaomi\nTonia\nCathleen\nGwendolyn\nJennie\nLeann\nCamille\nCorina\nEdith\nElsa\nPaulette\nTamra\nDebora\nFrancine\nNora\nBrandy\nRuby\nDarcy\nDora\nGayle\nPaige\nTania\nChandra\nChristi\nJenifer\nLee\nWanda\nCara\nGeorgina\nJacquelyn\nLeigh\nSuzette\nJami\nLana\nLatonya\nLesley\nJanette\nJeannine\nLucy\nLupe\nMarci\nMarisa\nMarlo\nVicky\nNoelle\nBridgette\nIngrid\nCari\nDeena\nEmma\nJeri\nMarcia\nTammi\nAngel\nAnnmarie\nBeatrice\nGraciela\nMia\nJohanna\nChrista\nDoris\nKris\nMarnie\nLea\nLena\nNikki\nSusanne\nDeann\nLouise\nSusie\nTamera\nTisha\nBeatriz\nCelia\nCourtney\nDanette\nRosalinda\nTabatha\nConsuelo\nJoelle\nMarcie\nMarsha\nLorrie\nMaribel\nMiriam\nCarolina\nLorie\nMichael\nDeirdre\nHope\nKaryn\nNanette\nNichelle\nPatrice\nBillie\nConstance\nJulianne\nMarjorie\nMarta\nShelli\nTasha\nAmelia\nChris\nCorinne\nMindy\nHilary\nNadine\nRosalie\nRosemarie\nSondra\nAnissa\nGabrielle\nGenevieve\nLashawn\nMarcy\nShellie\nStella\nTabitha\nBrooke\nLourdes\nAlisha\nBobbi\nLiza\nMaryann\nPhyllis\nAraceli\nHilda\nJolene\nJuliana\nKarrie\nLynne\nMagdalena\nMarisela\nElvia\nJaneen\nLucia\nMalinda\nMargo\nRena\nAntonia\nClaire\nDayna\nEricka\nJan\nDelores\nEleanor\nJune\nJustine\nLilia\nLucinda\nMargie\nPatty\nDenice\nElisabeth\nGena\nGeorgia\nGeraldine\nJanel\nTerrie\nAllyson\nAthena\nAurora\nColette\nJocelyn\nJuana\nJuliet\nShannan\nSue\nSusanna\nAlejandra\nClaudine\nLatasha\nMyrna\nNoemi\nAnnie\nCarole\nCaryn\nEdna\nElvira\nLauri\nMarni\nCarey\nElise\nFrancisca\nLynnette\nMarissa\nRosario\nImelda\nJosette\nKatharine\nRebekah\nSimone\nTawnya\nUrsula\nAnnemarie\nBernice\nBethany\nBuffy\nEsperanza\nJanie\nMara\nMelisa\nValarie\nAlyssa\nEstela\nGia\nIda\nJanell\nKerrie\nLeeann\nMercedes\nRichelle\nRobert\nTherese\nBrigitte\nDavid\nGlenda\nJessie\nKathrine\nSofia\nAdrianne\nDawna\nIris\nJaime\nJosefina\nMarian\nPatti\nPenelope\nRae\nRosanna\nTiffani\nAlexis\nCatalina\nColeen\nCorinna\nFaith\nGriselda\nLidia\nMarlena\nRocio\nSandi\nSharlene\nSuzanna\nVera\nVikki\nAlissa\nAngelia\nAnjanette\nCecelia\nCharmaine\nChelsea\nClara\nDaphne\nDarci\nLatrice\nLiana\nMonika\nNoel\nSheree\nCarin\nElva\nJanna\nJosie\nKeisha\nLorna\nMarion\nMaritza\nMeghan\nRosie\nShani\nShanon\nAileen\nAnnamarie\nCasey\nHillary\nJohn\nKenya\nMaya\nAnastasia\nAshley\nCindi\nDaisy\nDominique\nFlorence\nKarri\nKimberlie\nLadonna\nLeanna\nLeona\nMichell\nOfelia\nRoxanna\nShelby\nShelia\nWhitney\nCorrina\nDanelle\nEstella\nJerri\nJuliette\nKami\nRacquel\nTonja\nDara\nDeidre\nGladys\nJames\nJeana\nKarina\nLorinda\nMaura\nRenae\nShonda\nTrudy\nAida\nAmie\nCarri\nChristian\nCinnamon\nEvette\nGabriella\nJoni\nKate\nLily\nLorene\nNellie\nPolly\nRosalind\nAbigail\nCameron\nDee\nEve\nJolie\nKay\nKirstin\nLarissa\nLeilani\nLia\nLina\nMechelle\nMyra\nNicolle\nPam\nTamatha\nBettina\nBridgett\nChristopher\nCori\nGeneva\nJuli\nJulianna\nKameron\nLanette\nLani\nLatonia\nLila\nSherie\nSocorro\nStacia\nAlana\nCandi\nDanna\nDella\nElissa\nErinn\nFrancesca\nGwen\nJanis\nJeanie\nKarie\nLiz\nLucille\nMadeline\nMarcela\nMitzi\nPearl\nRandi\nRona\nSaundra\nShanda\nSummer\nTori\nAlexandria\nAnnabelle\nAnthony\nAntionette\nBrian\nCaprice\nHazel\nHelena\nJanene\nLois\nMartina\nMinerva\nReina\nThelma\nWindy\nAdela\nAngelita\nBritt\nChantel\nDarcie\nDavina\nGeorgette\nJason\nKathie\nLatricia\nLesa\nLola\nMarguerite\nMariana\nPetra\nRebeca\nSeana\nTia\nTrena\nBetsy\nBrigette\nCarie\nCharla\nChristal\nCollette\nDaniel\nDeeann\nDelilah\nDori\nElia\nHolli\nInez\nLashon\nLetitia\nLiliana\nLolita\nLorri\nMandy\nMarisol\nReyna\nSelena\nTamela\nTyra\nVenus\nViviana\nAngeline\nAutumn\nAva\nBianca\nCassie\nCherise\nDaniela\nDione\nEvangelina\nGreta\nHelene\nJudi\nKaty\nKellee\nKimberli\nLeila\nLilly\nMargret\nMaxine\nMelodie\nMichaela\nMildred\nRory\nRosalba\nStarla\nTamiko\nAdrian\nAngelic\nCaitlin\nCharisse\nChrystal\nCorey\nCorrine\nCristine\nDeidra\nDemetria\nDona\nEdie\nErnestina\nFaye\nFrankie\nGillian\nIlene\nIsela\nKathi\nKecia\nKelle\nLavonne\nLeonor\nLesli\nMichel\nMirna\nRichard\nRosalia\nSerina\nShonna\nTatia\nValencia\nValorie\nAda\nCarlene\nCathryn\nDaniele\nDaniella\nDixie\nEric\nErnestine\nEvonne\nHannah\nKandi\nKira\nKyra\nLatisha\nLenore\nLinette\nMachelle\nMark\nMindi\nMorgan\nNannette\nNicki\nNicola\nNoreen\nPilar\nRoxana\nSean\nTanja\nAdriane\nAdrianna\nAndra\nAntonette\nBrenna\nChantal\nCharity\nCorrie\nCyndi\nDanita\nEden\nEmilia\nEugenia\nHollie\nIvy\nJayne\nJeanna\nJoey\nJohnna\nJulissa\nKassandra\nKevin\nKori\nLaureen\nLenora\nLucila\nMargot\nMay\nMellisa\nMiranda\nMissy\nRosamaria\nRosanne\nRoslyn\nShawnna\nStefani\nStephenie\nSteven\nSusannah\nSuzie\nSuzy\nWilliam\nAlesia\nCarmela\nChanda\nCharleen\nChristen\nChristin\nClarissa\nDeedee\nDorene\nFiona\nFrancis\nJenna\nJonna\nKisha\nLoriann\nLouisa\nMaggie\nNicol\nRaylene\nRina\nShandra\nSunny\nSuzann\nTamie\nTawny\nVerna\nAdele\nAnnamaria\nArmida\nCami\nCarissa\nCary\nCatrina\nChantelle\nCrista\nCristin\nDarleen\nDinah\nDorinda\nElaina\nElla\nEsmeralda\nFelecia\nGeri\nGlenna\nGuillermina\nHortencia\nJacquline\nJasmine\nJayme\nJena\nJeni\nKathlene\nLawanda\nLela\nMagda\nMalissa\nMelina\nRaina\nRhoda\nRobbie\nRosalina\nSasha\nSelene\nSharron\nSophie\nStephaine\nSybil\nSydney\nTerra\nTiffanie\nTommie\nTosha\nTrinidad\nVilma\nViolet\nVioleta\nAlecia\nAmalia\nAmi\nAndre\nBonita\nBrandie\nCaren\nCathrine\nCharles\nChristene\nChristiana\nCristi\nCristie\nDani\nDebi\nDevon\nDiann\nElke\nGayla\nJammie\nJanae\nJanean\nJennette\nJoely\nJuliann\nKesha\nKrystal\nLatrina\nLeisa\nLiane\nLoreen\nLoren\nMari\nMarianna\nMarti\nMeagan\nNanci\nPatsy\nPortia\nRobbin\nRonna\nRosalyn\nRosana\nRoxann\nSarina\nShaun\nShona\nSoledad\nTabetha\nTerese\nTeresita\nTracee\nTrinette\nAlyson\nBelen\nBerta\nCarina\nCarleen\nCelina\nChristianne\nCora\nDannette\nDebbra\nDebby\nDiedre\nElisha\nErlinda\nErma\nFlora\nGerri\nGigi\nGilda\nHoney\nInga\nJenelle\nJohnnie\nJolynn\nJoseph\nKasey\nKeli\nLaronda\nLashanda\nLaticia\nLeeanne\nLetty\nLissa\nLona\nLupita\nMalia\nMayra\nNatalia\nNita\nPatrica\nPaul\nPia\nRachele\nRichele\nRoni\nSiobhan\nSirena\nTambra\nTammara\nThea\nThomas\nTonette\nTresa\nAlberta\nAlyce\nArcelia\nAurelia\nCarmel\nCarmelita\nChantell\nChristiane\nClaudette\nConcepcion\nCristy\nDenna\nDionna\nElana\nElyse\nFawn\nGale\nHenrietta\nHerlinda\nJannette\nJeanene\nJerry\nJina\nJoanie\nJodee\nJonelle\nJulee\nJulieta\nKarena\nKatheryn\nKendall\nKenna\nKenneth\nKiersten\nKimber\nKrishna\nKristal\nLashonda\nLeesa\nLeonora\nLindsey\nLizette\nLorelei\nLucretia\nMaile\nMariann\nMarilee\nMercy\nMimi\nMireya\nMisti\nNadia\nNickie\nPaulina\nRacheal\nRachell\nRenita\nRomy\nRosita\nSarita\nShanta\nShantell\nShaunna\nSherice\nSherilyn\nStarr\nSteffanie\nTana\nTera\nTerina\nTerresa\nTessa\nTwila\nValeria\nVenessa\nVonda\nWendie\nWilma\nAdelina\nAdina\nAdria\nAlanna\nAlina\nAlthea\nAmparo\nAnabel\nAnya\nAretha\nAriel\nArleen\nBambi\nBenita\nBuffie\nCamilla\nCammie\nCasandra\nCherri\nCherrie\nCory\nDanae\nDarcey\nDemetra\nDolly\nDonielle\nDorothea\nEarlene\nEloisa\nEunice\nFlor\nGary\nGay\nGeorge\nGracie\nIna\nIvette\nJacquelin\nJade\nJanina\nJenni\nJenniffer\nJoe\nJose\nKarleen\nKarol\nKatrice\nLarhonda\nLeandra\nLeslee\nLibby\nLizabeth\nLuanne\nLuisa\nLyn\nMarva\nMarya\nMaryanne\nMatthew\nMellissa\nMerry\nMillie\nNichol\nNiki\nNikole\nPerla\nRaymond\nRenay\nRenea\nRonnie\nRoseanne\nRosetta\nRoxane\nRuthie\nSelina\nShantel\nShara\nShawnda\nShiela\nStacee\nTamika\nTaunya\nTimothy\nTreva\nTrish\nTrista\nTrudi\nVelia\nXochitl\nYolonda\nZena\nAdelita\nAdena\nAlethea\nAlisia\nAlondra\nAlta\nAlysia\nAracely\nBernadine\nBriana\nCamie\nCandie\nCandis\nCarmella\nCatharine\nCharline\nCherice\nCherish\nClare\nCristal\nCyndee\nDalia\nDannielle\nDawne\nDeeanna\nDeedra\nDetra\nDevin\nEdward\nEdwina\nEliza\nElma\nElsie\nFreda\nGidget\nHallie\nHarriet\nJacki\nJada\nJamey\nJaqueline\nJeffrey\nJene\nJenine\nJerilyn\nJoleen\nJon\nJoycelyn\nKandace\nKandy\nKaron\nKhristine\nKimberely\nKindra\nKoren\nKyla\nLachelle\nLannette\nLarisa\nLarry\nLashaun\nLaverne\nLilian\nLisette\nLonnie\nLoraine\nLoree\nLorry\nMae\nMamie\nMarcelle\nMelynda\nMicaela\nMignon\nMila\nPaola\nRayna\nRegena\nRolanda\nRonald\nRonette\nRosalva\nRosaura\nRoseann\nRuthann\nShela\nSloane\nStephani\nSuzan\nTanisha\nTiffiny\nTobi\nValentina\nZoe\nAbby\nAdelia\nAgnes\nAide\nAlaina\nAlba\nAleta\nAllegra\nAlycia\nAndria\nAnnalisa\nArlena\nAyesha\nBarbie\nBonny\nCammy\nCeline\nCharlena\nCheree\nCherry\nChrissy\nCinthia\nClaudina\nCoreen\nDanell\nDanise\nDanyelle\nDarby\nDenell\nDenette\nDennise\nDenyse\nDeserie\nDonnell\nDyan\nElicia\nElisia\nEydie\nFabiola\nFaviola\nFelice\nGaye\nGenoveva\nGinny\nGiselle\nGricelda\nHayley\nJanee\nJenise\nJewel\nJustina\nKamala\nKasandra\nKayla\nKeely\nKristan\nKyle\nLamonica\nLanita\nLashan\nLatrisha\nLauna\nLaurinda\nLawana\nLeana\nLeta\nLetisia\nLetticia\nLianne\nLicia\nLizbeth\nLuana\nMaia\nMaisha\nMalisa\nManuela\nMaren\nMaricella\nMario\nMarivel\nMarleen\nMartine\nMechele\nMelodee\nMichaelle\nMilissa\nMirella\nNelly\nNeva\nNichele\nPamala\nPennie\nQuincy\nRaeann\nRani\nRashell\nRayleen\nRhea\nRochell\nRonica\nRonnette\nSabina\nSalina\nScott\nSelma\nSenta\nShanin\nShante\nSharla\nSharyn\nShay\nSherise\nSteffani\nStephany\nSunday\nSynthia\nTemre\nTeressa\nTimi\nToby\nTressa\nVelma\nVelvet\nWendee\nYevette\nAaron\nAdeline\nAdriene\nAlexa\nAnamaria\nAngelena\nArlette\nBarbra\nBari\nBobette\nBrandee\nBritta\nBrittany\nBronwyn\nBrook\nCam\nCarlotta\nCarolee\nChanel\nChante\nCharise\nCharissa\nCharmain\nChloe\nClarice\nCorine\nDaina\nDanya\nDaria\nDavida\nDawnielle\nDelfina\nDelinda\nDeneen\nDenese\nDiahann\nDonald\nDonelle\nDonita\nDonya\nDorina\nDyana\nEliana\nElida\nEna\nEster\nEvangeline\nEvon\nFatima\nFelisha\nGaylene\nGianna\nGlynda\nHeide\nIlana\nIleana\nJacque\nJaimie\nJamee\nJannie\nJaymie\nJeniffer\nJennine\nJesse\nJesus\nJoell\nJosephina\nJulene\nKarl\nKarlene\nKatherina\nKati\nKaylene\nKia\nKimbra\nKorin\nKory\nKristian\nKymberly\nLacey\nLakisha\nLanie\nLaquita\nLashawnda\nLashun\nLaurette\nLavette\nLetha\nLisamarie\nLise\nLuann\nLynelle\nMadeleine\nManuel\nMargery\nMarna\nMarty\nMattie\nMelvina\nMickey\nMickie\nMikel\nMoya\nMuriel\nNecole\nNerissa\nNoelia\nOralia\nRicki\nRikki\nRima\nRomelia\nRonni\nRori\nRoseanna\nRosio\nSabra\nSandie\nSanjuanita\nSanta\nScarlett\nShalonda\nShannah\nSharyl\nShaunda\nShayna\nSheli\nSheridan\nSherrill\nShondra\nSimona\nSonjia\nStormy\nSusy\nTamala\nTammera\nTausha\nTisa\nToi\nTuesday\nValery\nYadira\nYumi\nZabrina\nZandra\nZoraida\nZulma\nAlaine\nAlene\nAlesha\nAlfreda\nAlise\nAlvina\nAmerica\nAnastacia\nAndree\nAngella\nAnitra\nAnjelica\nAriana\nArianne\nArline\nAsia\nAudrea\nBarrie\nBecki\nBeckie\nBernardette\nBessie\nBilly\nBrett\nBrianna\nBrynn\nCamela\nCasie\nChanin\nCharlette\nCharmane\nChere\nCheryle\nChina\nCinamon\nCindie\nCorie\nCruz\nDale\nDalila\nDaneen\nDania\nDaniell\nDanny\nDeane\nDebborah\nDeeanne\nDelisa\nDeshawn\nDia\nDiedra\nDonella\nDonyale\nEthel\nFarah\nFelipa\nFelisa\nFonda\nFrancina\nGenia\nGermaine\nGisele\nGregory\nGwenn\nHedy\nHermelinda\nIlda\nIliana\nIlona\nInger\nJaclyn\nJaniece\nJeanelle\nJewell\nJodine\nJoel\nJoellen\nJoette\nJohnette\nJoi\nJoli\nJonette\nJuan\nJuliane\nJulieann\nKandice\nKarey\nKariann\nKimiko\nKrissy\nKristyn\nLalena\nLanae\nLashanna\nLashune\nLatina\nLavonda\nLawanna\nLeane\nLeeanna\nLeighanne\nLeora\nLiesl\nLita\nLorianne\nLorien\nLurdes\nMandi\nMarcelina\nMariza\nMarlana\nMaryellen\nMarylou\nMatilde\nMelonie\nMendy\nMerritt\nMicheal\nMinnie\nMischelle\nMisha\nMonalisa\nNatascha\nNena\nNicolette\nNona\nOra\nPage\nPandora\nParis\nPatrisia\nPhaedra\nPiper\nPrudence\nRaelene\nRanda\nRanee\nRebbecca\nRenata\nRenne\nRhondalyn\nRobbi\nRobynn\nRosaline\nSabine\nSamira\nSandee\nSarena\nSari\nSharee\nSharice\nShawnee\nShea\nSheena\nSherina\nSheron\nSherryl\nShoshana\nSpring\nStar\nSulema\nSuzi\nTari\nTatiana\nTawana\nTawni\nTawnie\nTeena\nTena\nThomasina\nTiana\nTiara\nTinamarie\nTodd\nTonie\nToshia\nTyler\nValinda\nWillette\nWindie\nXochilt\nYesenia\nZoila\nZulema\nAfton\nAisha\nAissa\nAlbert\nAlbertina\nAlena\nAliza\nAlonda\nAlysa\nAnanda\nAnnabel\nAnneliese\nAraseli\nArianna\nArminda\nAura\nBess\nBethanie\nBeverley\nBradley\nBrigid\nCamila\nCarl\nCarly\nCarmina\nCassondra\nCecile\nCelene\nCelestine\nCharolette\nCherese\nCherisse\nCinda\nCleo\nCoral\nCrissy\nCristen\nDalene\nDann\nDannelle\nDanyel\nDarrell\nDaryl\nDaryn\nDawnell\nDea\nDebbi\nDebrah\nDede\nDedra\nDeitra\nDelma\nDenae\nDeon\nDeva\nDian\nDion\nDollie\nDonnetta\nDonnette\nDorie\nDyanna\nEarline\nEbony\nElan\nElba\nFreida\nGala\nGerald\nHaley\nHerminia\nIla\nIndia\nInge\nIsabella\nIsabelle\nIvonne\nJackeline\nJacquelynn\nJacqulyn\nJanetta\nJannelle\nJaylene\nJeaneen\nJeanett\nJenai\nJenee\nJenell\nJenice\nJennefer\nJerrie\nJoana\nJohna\nJonnie\nJovita\nJozette\nKacey\nKamela\nKamron\nKarine\nKarissa\nKathlyn\nKathrin\nKaye\nKelsey\nKemberly\nKimi\nKirstie\nKitty\nKristiann\nKrysta\nLalanya\nLashelle\nLashone\nLatania\nLatrece\nLauralee\nLavina\nLeasa\nLeda\nLeena\nLeigha\nLeighann\nLelia\nLenette\nLeyla\nLigia\nLili\nLilliana\nLindsay\nLinnea\nLisha\nLondon\nLorenza\nLorilyn\nLorriane\nLory\nLou\nLouann\nLucie\nLucrecia\nMaira\nMargarett\nMaribell\nMarita\nMarlyn\nMarne\nMarney\nMarsi\nMartin\nMarybeth\nMeadow\nMelany\nMerilee\nMerri\nMesha\nMichaele\nMoira\nMonic\nNancie\nNathalie\nNichola\nNila\nNohemi\nNydia\nOpal\nOphelia\nPatrick\nPattie\nPeter\nPetrina\nPhoebe\nRaguel\nRain\nRamie\nRandy\nRechelle\nReva\nRoberto\nRobyne\nRoma\nRomana\nRosann\nRoselyn\nRuben\nRudy\nRyan\nSabrena\nSadie\nSamone\nSeanna\nShalia\nShalon\nShanan\nSharie\nSharilyn\nSharlyn\nSharonda\nSharrie\nShaylene\nSheilla\nSherelle\nSherrell\nShira\nShirelle\nSindy\nSkye\nSteffany\nStephine\nSubrina\nSunnie\nSuzannah\nSylvie\nTammey\nTani\nTarra\nTaryn\nTaura\nTerrell\nTesha\nTess\nThalia\nTheresia\nTomi\nTonnette\nTracia\nTrese\nTresha\nTrini\nTunisia\nValeri\nVerena\nVida\nViki\nViola\nWinona\nYoulanda\nYumiko\nJennifer\nMichelle\nLisa\nKimberly\nJulie\nMaria\nLaura\nShannon\nChristine\nHeather\nElizabeth\nStephanie\nCynthia\nAngela\nChristina\nMelissa\nTracy\nAmy\nPatricia\nMary\nKaren\nTina\nSandra\nNicole\nDawn\nKelly\nSusan\nWendy\nDenise\nTammy\nMichele\nRebecca\nLori\nGina\nMonica\nDeborah\nTeresa\nAndrea\nStacy\nRachel\nLinda\nKathleen\nNancy\nDiana\nPamela\nTamara\nRenee\nCatherine\nStacey\nBrenda\nDeanna\nDonna\nKatherine\nErin\nTheresa\nCarrie\nDana\nKristin\nVeronica\nTiffany\nAnna\nVictoria\nBarbara\nApril\nJessica\nCheryl\nDebra\nHeidi\nAlicia\nTanya\nDiane\nRobin\nKristina\nSharon\nJill\nCindy\nSarah\nLeslie\nSuzanne\nDanielle\nAnn\nRhonda\nRegina\nKristen\nYvonne\nJacqueline\nYolanda\nPaula\nHolly\nKristine\nSabrina\nJamie\nMelanie\nValerie\nTonya\nMonique\nMargaret\nYvette\nCarol\nSheila\nSherry\nCarolyn\nKathryn\nLeticia\nKim\nTara\nMartha\nTraci\nJulia\nShelly\nLaurie\nMelinda\nJanet\nRaquel\nSylvia\nCrystal\nGloria\nClaudia\nAnne\nErica\nAnnette\nSonia\nRosa\nKrista\nCarla\nErika\nTracey\nSara\nChristy\nShawna\nNorma\nVanessa\nNatalie\nKelli\nTricia\nKathy\nKristi\nVirginia\nTerri\nShelley\nJodi\nColleen\nAmber\nSheri\nAna\nDebbie\nAmanda\nCarmen\nDina\nSamantha\nMarie\nDarlene\nConnie\nKimberley\nBonnie\nCassandra\nFelicia\nKellie\nTami\nKatrina\nSherri\nAnita\nDena\nAllison\nLorena\nJeanette\nToni\nRose\nIrene\nLorraine\nKari\nTrina\nAngelica\nGuadalupe\nJoanne\nCathy\nShawn\nRuth\nAlison\nCharlene\nEmily\nLynn\nTracie\nAlice\nJody\nLara\nLeah\nElaine\nRochelle\nStacie\nJoanna\nLydia\nAdriana\nHelen\nRoberta\nEva\nSonya\nBridget\nJenny\nCheri\nKerry\nRachelle\nTammie\nDeana\nAimee\nCecilia\nJuanita\nVicki\nKirsten\nJanice\nBeth\nJudy\nKarla\nCharlotte\nDesiree\nBecky\nCaroline\nLynette\nMargarita\nDolores\nKristy\nJoann\nJoyce\nFrances\nCandice\nEsther\nIrma\nRobyn\nSheryl\nAngelique\nJudith\nSandy\nBrandi\nElisa\nJean\nRita\nTeri\nArlene\nChrista\nMegan\nKelley\nAdrienne\nMaureen\nShana\nShirley\nCherie\nAlma\nNina\nJoy\nRamona\nRoxanne\nShari\nSonja\nIsabel\nKristie\nSally\nGrace\nEvelyn\nJeannette\nEileen\nKerri\nMarlene\nDianna\nShauna\nLoretta\nJanine\nKarin\nMaribel\nTrisha\nBeverly\nStaci\nAudrey\nBelinda\nAlisa\nAntoinette\nPenny\nSilvia\nSophia\nJeanne\nNichole\nBernadette\nChristie\nElena\nAngelina\nDorothy\nBrandy\nBrooke\nCandace\nCristina\nGinger\nMisty\nRonda\nVivian\nBetty\nSerena\nMona\nPeggy\nBlanca\nJana\nKimberlee\nAngie\nCamille\nEllen\nMarla\nMolly\nPriscilla\nStefanie\nGabriela\nWendi\nJane\nKara\nRosemary\nCeleste\nDeena\nLillian\nKeri\nBobbie\nRachael\nGretchen\nMelody\nNatasha\nRene\nJeanine\nOlivia\nTasha\nElsa\nJeannie\nKendra\nMeredith\nNora\nLora\nMarisol\nMarilyn\nChandra\nDeanne\nGail\nMarina\nTamra\nJackie\nJennie\nSusana\nDianne\nPauline\nBertha\nGwendolyn\nJoan\nJodie\nLuz\nMarlo\nFrancine\nMarcia\nRuby\nAngel\nDarla\nLeigh\nShanna\nTerry\nLaurel\nMarisa\nMarcella\nNaomi\nCandy\nDelia\nGeorgina\nPaulette\nDionne\nMarianne\nAmelia\nJanelle\nCelia\nJacquelyn\nAlexandra\nAudra\nVickie\nCourtney\nCari\nDora\nJo\nLeanne\nJenifer\nLiza\nLynda\nJami\nLana\nMaricela\nTania\nChristi\nIngrid\nLatanya\nLauren\nNadine\nTonia\nCara\nHilda\nJosephine\nTammi\nAraceli\nEricka\nPaige\nSherrie\nCathleen\nCorina\nGabrielle\nJuliet\nMarta\nNikki\nOlga\nLea\nLucy\nDarcy\nJohanna\nSuzette\nBillie\nMarci\nMia\nTabitha\nElisabeth\nKatie\nLashawn\nWanda\nEdith\nHope\nMarisela\nJoelle\nLilia\nCarolina\nGraciela\nLupe\nPatrice\nAshley\nLourdes\nMaryann\nJulianne\nLatonya\nAlisha\nAurora\nConstance\nGenevieve\nJeannine\nMarsha\nMiriam\nHilary\nMarjorie\nStella\nSusanne\nBeatrice\nBeatriz\nCorinne\nDoreen\nLesley\nLucia\nRena\nBridgette\nJanette\nJustine\nLorie\nLouise\nCaryn\nDanette\nEmma\nJosefina\nLena\nMarnie\nCecelia\nNanette\nAnnmarie\nDoris\nKaryn\nLee\nLynne\nMarcy\nNoelle\nChris\nVicky\nAnissa\nElvira\nGena\nJocelyn\nKatharine\nLorrie\nMarcie\nTamera\nUrsula\nDeirdre\nJuana\nMagdalena\nMindy\nRobert\nRosemarie\nRosie\nAntonia\nAthena\nLatasha\nMercedes\nRosalinda\nCharmaine\nJaime\nLynnette\nRocio\nAnjanette\nAnnie\nDeann\nDebora\nGeraldine\nLeann\nShannan\nClaudine\nFaith\nGlenda\nJolene\nKarrie\nLucinda\nRosalie\nSusie\nLiliana\nMaya\nRosario\nShelli\nAlexis\nChelsea\nCorinna\nDawna\nDayna\nJanel\nKeisha\nKenya\nShellie\nConsuelo\nDavid\nGabriella\nHillary\nImelda\nJune\nMargo\nMarni\nShanon\nAlyssa\nBethany\nCarole\nColette\nEsperanza\nJames\nMarian\nAlissa\nBobbi\nDeidre\nEleanor\nJanell\nKarina\nMichael\nSondra\nTawnya\nTisha\nCarey\nEsmeralda\nGayle\nJuliana\nKris\nLani\nLatrice\nMara\nMeghan\nMelisa\nPhyllis\nAlejandra\nBuffy\nEstela\nEvangelina\nKerrie\nLadonna\nLeanna\nMargie\nMyrna\nSue\nJeri\nJessie\nLidia\nLorna\nMarissa\nMyra\nRichelle\nSandi\nShani\nSusanna\nTia\nAbigail\nDenice\nElvia\nGeorgia\nJaneen\nKrystal\nLeona\nPatty\nSimone\nTiffani\nAlana\nAmie\nClaire\nDelores\nJosette\nLauri\nMalinda\nSharlene\nSheree\nTanisha\nAllyson\nAutumn\nCassie\nCindi\nDaisy\nDanelle\nDaphne\nEdna\nEstella\nEugenia\nIris\nJeanna\nJoey\nRichard\nStacia\nTerrie\nCandi\nCatalina\nElva\nKarie\nNichelle\nRebeca\nShelia\nSofia\nTabatha\nTherese\nValarie\nAngelita\nBernice\nBridgett\nClara\nCori\nDee\nElise\nFrancisca\nInez\nJanie\nLeeann\nNoel\nPenelope\nRebekah\nRosalind\nSaundra\nAileen\nAlyson\nBianca\nCorrine\nDominique\nGladys\nGriselda\nJanis\nJeanie\nJohn\nJuli\nKasey\nLois\nMechelle\nMiranda\nRosanna\nTrista\nEvette\nFlorence\nIda\nMarion\nRae\nRandi\nShelby\nSocorro\nTonja\nAdela\nAdrianne\nCasey\nCatrina\nChristian\nDarci\nDavina\nJan\nJason\nJolie\nLarissa\nReina\nShonda\nSummer\nVera\nZoe\nAida\nCharity\nCrista\nEve\nGia\nJanna\nJulianna\nJuliette\nMaxine\nMonika\nPilar\nShawnna\nTerra\nAlexandria\nAnastasia\nAnthony\nCory\nJerri\nJoni\nLatisha\nLeila\nMandy\nMaritza\nRenae\nRosalva\nTori\nWhitney\nWindy\nChrystal\nClarissa\nCollette\nDeidra\nKathrine\nMari\nRaina\nRoxanna\nStefani\nAmalia\nAntionette\nBrandie\nBrigitte\nCary\nKarri\nLanette\nLuisa\nMinerva\nNicolle\nOfelia\nPatsy\nReyna\nSelina\nThelma\nAnnemarie\nChanda\nCharla\nCharleen\nChristen\nColeen\nDelilah\nFabiola\nHelena\nJohnna\nJosie\nJulissa\nKate\nKaty\nLeilani\nLina\nLola\nLucille\nMadeline\nMisti\nRacquel\nSarina\nTamatha\nTanja\nTyra\nAdrianna\nAngelia\nCarie\nCarin\nCarri\nCherise\nDarcie\nDella\nDyan\nElissa\nEmilia\nFrancesca\nHazel\nKay\nKimberli\nKirstin\nLetitia\nMarcela\nMariana\nMartina\nMichell\nNoemi\nPatti\nRoxann\nShanda\nAdriane\nAlina\nAngeline\nBrigette\nCathryn\nCharisse\nChristopher\nCristy\nDara\nEliza\nGeneva\nGeorgette\nKassandra\nLainie\nLashonda\nLatonia\nPearl\nPetra\nPolly\nTera\nTrudy\nAda\nAdrian\nAndria\nBettina\nCora\nDanna\nDeedee\nDori\nElsie\nFawn\nGreta\nIsela\nJanene\nJeana\nJudi\nLatricia\nLila\nSelena\nSteven\nTessa\nTisa\nVikki\nAmi\nAnnamarie\nAracely\nCorrina\nCyndi\nEden\nElaina\nEric\nGeri\nHannah\nHollie\nJeffrey\nJenna\nJuliann\nKandi\nKarna\nKesha\nKisha\nKristal\nLawanda\nMalissa\nRosalia\nSerina\nSpring\nStarla\nStephani\nTiffanie\nAlecia\nCameron\nCarlene\nCelina\nClaudette\nConcepcion\nElla\nFelecia\nGuillermina\nJose\nKevin\nLashon\nLavonne\nLia\nLily\nNellie\nSasha\nShiela\nShonna\nAngelic\nAntonette\nBarbra\nCaren\nCinnamon\nCorrie\nDeeann\nDona\nErinn\nEvangeline\nFlora\nJayme\nJenni\nJulee\nKami\nKimberlie\nLolita\nLorene\nMildred\nMindi\nMireya\nNannette\nNicki\nNoreen\nPaul\nRosanne\nRoxana\nSharron\nShona\nSunny\nTamar\nTreena\nBenita\nBrian\nCaitlin\nCarissa\nCasandra\nCathrine\nChantel\nChristal\nCristi\nDalia\nDannielle\nDaria\nElia\nErnestina\nFatima\nGillian\nGwen\nIliana\nKathi\nKellee\nKimber\nKira\nLanita\nLarisa\nLatrina\nLoraine\nLorri\nLouisa\nMaisha\nMaura\nMimi\nNanci\nNatalia\nRoslyn\nTeresita\nThea\nTimothy\nTrena\nTrudi\nViola\nViviana\nVonda\nAaron\nAdele\nAriel\nArleen\nArmida\nAva\nBritt\nCandida\nCarina\nCarmel\nCorey\nFrancis\nGilda\nHallie\nHenrietta\nJena\nJesus\nJohnnie\nKathie\nKayla\nKeli\nLiana\nLiz\nLoriann\nMagda\nMaia\nMark\nMarlena\nMellissa\nNichol\nNikole\nPam\nRobbin\nRonna\nShawnee\nShea\nSherie\nTosha\nTracee\nTressa\nVelma\nVenus\nVerna\nWendie\nWilliam\nXochitl\nAmparo\nAnnalisa\nArcelia\nBerta\nBobby\nBrandee\nCarmela\nCarolynn\nChimene\nCorie\nDemetria\nDevon\nFlor\nFrankie\nHolli\nIvy\nJeni\nJenine\nJoleen\nJonna\nKandy\nKecia\nKenna\nKindra\nKristan\nLakeisha\nLatoya\nLela\nLesa\nLisette\nMariaelena\nMarivel\nMichaela\nMitzi\nPamala\nPatrica\nRenita\nRhea\nRobbie\nRona\nRoxane\nScott\nShaunna\nSusannah\nSuzanna\nTamela\nTamiko\nTana\nTawny\nTerese\nThomas\nTwila\nTwyla\nValencia\nValorie\nZulema\nAlexa\nAlisia\nAndra\nBelen\nBernadine\nCristal\nDaniela\nDanita\nDelana\nDiann\nDionna\nDonielle\nEnedina\nErlinda\nErnestine\nFaye\nFiona\nHortencia\nInga\nInger\nJenelle\nJeniffer\nJennette\nJenniffer\nKameron\nKarena\nKendall\nKiersten\nKyla\nLenora\nLissa\nLonnie\nMaggie\nMarguerite\nMarianna\nMayra\nMirna\nMissy\nNicol\nRacheal\nRayna\nRoseann\nRoseanna\nRosio\nRowena\nShanti\nShay\nShondra\nSteffanie\nToby\nTreva\nTrinidad\nAdelina\nAdina\nAlanna\nAlberta\nAlejandrina\nAlysia\nAnabel\nAnnabelle\nBetsy\nBonita\nBuffie\nCarisa\nCelena\nChantal\nChantelle\nCherri\nDale\nDixie\nElida\nElisha\nEloisa\nFelisa\nIleana\nIlene\nIvette\nJanee\nJerry\nJina\nJona\nJulieta\nKoren\nKrishna\nKyle\nKyra\nLarhonda\nLashan\nLenore\nLindsey\nLupita\nMaile\nMarna\nMarti\nMarva\nMuriel\nPerla\nPhoebe\nPiper\nRachele\nRana\nRonnette\nRosalba\nRosalyn\nRoseanne\nSean\nSeana\nSebrina\nShaun\nShawnda\nStar\nSuzie\nSuzy\nTamie\nTuesday\nValentina\nWende\nAlycia\nAnnamaria\nAriana\nBessie\nCamilla\nCaprice\nCatharine\nChanin\nCheryle\nChristin\nClare\nCristine\nDahlia\nDanica\nDaniella\nDolly\nDyana\nElicia\nEunice\nFrank\nGaylene\nGidget\nGracie\nGricelda\nIvonne\nJacki\nJaqueline\nJerilyn\nJewel\nJodee\nJustina\nKori\nLeeanne\nLetisia\nLili\nLilly\nLoren\nLucretia\nMachelle\nMarilee\nMarylou\nMelina\nMelonie\nMercy\nMerry\nNadia\nNathalie\nNelly\nNicola\nRonette\nRonnie\nSabina\nShalonda\nSharyn\nShayna\nShiloh\nStephany\nStephen\nStephenie\nSunday\nYesenia\nYolonda\nAbby\nAlane\nAlesha\nAlethea\nAlvina\nAmerica\nAnanda\nAngella\nAretha\nBrenna\nCarlotta\nCaron\nCharles\nChristianne\nCruz\nDalila\nDani\nDarleen\nDarnell\nDeeanna\nDeedra\nDelisa\nDione\nDonya\nDusty\nElba\nErma\nFelice\nGayla\nGigi\nGiselle\nJaimie\nJeanene\nJennefer\nJoe\nJosephina\nJulieann\nKarey\nKarlene\nKarma\nKarolyn\nKristyn\nLacey\nLaticia\nLaureen\nLaverne\nLeonor\nLeslee\nLiane\nLianne\nLilian\nLizabeth\nLoni\nLorinda\nLory\nMabel\nMarcelina\nMargot\nMariah\nMellisa\nMerri\nMikki\nMilissa\nMisha\nMorgan\nNecole\nRaelene\nRaylene\nRosita\nSabrena\nSacha\nSelene\nShane\nShannen\nSharie\nSharla\nShaunda\nSheena\nSherice\nSloane\nSuzann\nSydney\nTameka\nTari\nTashia\nTatia\nTatiana\nTiffiny\nTrinette\nValeria\nVioleta\nWillie\nAlena\nAliza\nAnalisa\nAndre\nAsia\nAstrid\nBriana\nBronwyn\nBrook\nBryan\nCami\nCammie\nCandee\nChantell\nCharissa\nChastity\nCheree\nCherish\nChristel\nChristene\nCinthia\nCristin\nDaniel\nDaniele\nDebby\nDedra\nDestiny\nDetra\nDevona\nDonelle\nDorene\nDorinda\nDyanna\nEdie\nEdward\nElda\nEloise\nEnid\nEster\nEugena\nEvonne\nGerri\nIna\nIsabelle\nJacquline\nJade\nJenette\nJohna\nJosefa\nKamala\nKarol\nKathlene\nKelle\nKenneth\nKia\nKiesha\nKimberely\nLashanda\nLashun\nLavette\nLibby\nLillie\nLindsay\nLoree\nLorelei\nLuana\nLynelle\nMalisa\nMarne\nMarty\nMelany\nMelba\nMelynda\nMica\nMicaela\nMichel\nNiki\nNinette\nOralia\nParis\nPaulina\nRachell\nRani\nRaymond\nRosana\nSandie\nShanin\nShante\nShaundra\nShena\nSophie\nStacee\nStephaine\nStormy\nSusy\nTabetha\nTambra\nTena\nTess\nTobi\nTonette\nTristan\nTroy\nVenessa\nWinifred\nZina\nAgnes\nAide\nAleta\nAletha\nAnamaria\nAnnabel\nAnnika\nAura\nAyesha\nBonny\nCallie\nCandelaria\nCandie\nCarleen\nCarmella\nChanel\nCharmane\nCher\nChristiane\nClarice\nCoreen\nDallas\nDamaris\nDanae\nDanny\nDanyelle\nDawnette\nDebbra\nDebi\nDelaine\nDeonna\nDeserie\nDinah\nDorina\nDusti\nEffie\nElke\nElodia\nEmilie\nErina\nEthel\nFlorinda\nHayley\nHelene\nHerlinda\nHerminia\nIndia\nIva\nJammie\nJanae\nJanean\nJenell\nJenise\nJennine\nJillian\nJoel\nJoell\nJoseph\nKama\nKandace\nKary\nKasandra\nKimberlyn\nKymberly\nLakisha\nLarry\nLashaun\nLatina\nLeane\nLeisa\nLetha\nLindy\nLinette\nLizbeth\nLuann\nMadonna\nMaren\nMaricruz\nMartie\nMartine\nMaryanne\nMelani\nMelodie\nMelony\nMichaele\nMika\nMiki\nMollie\nMonalisa\nNicholle\nNicolette\nNova\nOctavia\nPage\nPatience\nPetrina\nPhaedra\nPortia\nRenata\nRomelia\nRoni\nShalene\nShantell\nSharleen\nSharonda\nShellee\nSoledad\nTammara\nTanna\nTawnia\nTesha\nTiffini\nToya\nTresa\nVeda\nVelvet\nZandra\nZulma\nAdeline\nAdria\nAlex\nAlonda\nAlyce\nAlysa\nAmee\nAndreana\nArlinda\nAugustina\nAundrea\nAurelia\nBambi\nBarbie\nBecki\nBrigid\nCandance\nCarlyn\nCarmelita\nCarolann\nCasie\nCecily\nCeline\nChana\nCharise\nCharline\nChere\nChrissy\nChristinia\nCoretta\nCrissy\nDanell\nDannette\nDarby\nDarcey\nDebrah\nDelicia\nDenell\nDenna\nDia\nDion\nDominica\nDonald\nDorie\nDorothea\nElana\nElisia\nElizebeth\nEmelda\nEryn\nEvelia\nEvie\nGabriel\nGema\nGenoveva\nGermaine\nGianna\nGlenna\nGwyn\nHana\nHarriet\nHaydee\nHector\nHeide\nIlana\nIlona\nIrasema\nJesse\nJewell\nJimmy\nJoana\nJoanie\nJolee\nJolynn\nJoycelyn\nJuliane\nKacey\nKatheryn\nKelleen\nKimi\nKirstie\nKitty\nKorey\nKrissy\nLachelle\nLalena\nLaree\nLavon\nLawana\nLeesa\nLesli\nLigia\nLissette\nLizette\nLona\nLoreen\nLorien\nLucila\nMadeleine\nMadelyn\nMakeba\nMalaika\nMalia\nManuela\nMargret\nMariann\nMarleen\nMarya\nMattie\nMay\nMeagan\nMechele\nMeridith\nMichaelle\nMicheline\nMickie\nMillicent\nMirella\nMishelle\nMoira\nMyriam\nNelda\nNell\nNena\nNickie\nNyla\nPia\nRikki\nRochell\nRomona\nRosalina\nRosaura\nRubi\nRuthie\nSabine\nSadie\nSanta\nShanan\nShandra\nShantel\nShara\nSharee\nSharilyn\nShaunte\nShereen\nSherrell\nShilo\nSirena\nSoraya\nStefania\nStephannie\nTaura\nTeressa\nTessie\nTrinity\nVeronika\nViki\nViolet\nYuri\nZena\nAdelle\nAli\nAlta\nAlthea\nAnabelle\nAngelena\nAnjeanette\nApryl\nAracelia\nAraseli\nBabette\nBradley\nBrandon\nCammy\nCarl\nCarletta\nCassaundra\nCassondra\nCelestine\nCelinda\nCherry\nChristelle\nChristiana\nCinda\nConchita\nCoral\nCornelia\nCristen\nDanya\nDarnisha\nDaun\nDawne\nDeandra\nDebbi\nDelma\nDeloris\nDenelle\nDenese\nDenisha\nDerinda\nDesirae\nDevin\nDodie\nDonella\nDorena\nDottie\nEilene\nEmmy\nEula\nFarah\nFelisha\nFrancie\nFranki\nGenia\nGennifer\nGlenn\nGoldie\nGregory\nGwyneth\nHether\nHiedi\nIsha\nIsis\nJamee\nJannette\nJasmine\nJayne\nJoellen\nJoi\nJolyn\nJori\nJovita\nJulienne\nJulisa\nKarianne\nKarry\nKaterina\nKathyrn\nKeely\nKeesha\nKimberle\nKimiko\nKym\nLanee\nLanie\nLaronda\nLashane\nLashawna\nLashawnda\nLatashia\nLatosha\nLatrece\nLauna\nLauretta\nLavonda\nLeandra\nLeighann\nLeonora\nLesia\nLesly\nLeta\nLisha\nLorenza\nLorianne\nLorretta\nLurdes\nLus\nMae\nMandi\nMarcel\nMaribell\nMaricella\nMarlina\nMarybel\nMarybeth\nMeg\nMelissia\nMeri\nMignon\nMina\nMiroslava\nNatascha\nNita\nNona\nOphelia\nPatrisia\nPrecious\nRafaela\nRain\nRaul\nReba\nRechelle\nRegan\nRenea\nReva\nRima\nRisa\nRosamaria\nRoselle\nRoshelle\nSabra\nSamatha\nSarita\nSavannah\nScarlett\nShae\nShalon\nShavonne\nShawne\nShaylene\nSherron\nSierra\nSimona\nSommer\nStarr\nSubrina\nSunshine\nSuzi\nTamika\nTauna\nTaunya\nTausha\nTawna\nTeena\nTerresa\nThalia\nTiana\nTiara\nTifani\nTimberly\nTinamarie\nTomika\nTory\nToshia\nTyna\nTysha\nVeronique\nVida\nVirjinia\nWenonah\nWilma\nAdam\nAdelaide\nAdriene\nAisha\nAlaina\nAlesia\nAllegra\nAllena\nAlmadelia\nAlondra\nAlora\nAmada\nAmmie\nAnamarie\nAndrew\nAnette\nAnisa\nAnjenette\nAnnelise\nAntonio\nAudry\nAvis\nBarbi\nBrianna\nBrittany\nBronwen\nCamelia\nCaralee\nCarlota\nCarmina\nCaryl\nCassy\nCathie\nCelestina\nChanelle\nChannon\nCharis\nCharlesetta\nCharmian\nCherrie\nCheyenne\nChina\nChiquita\nCraig\nCristie\nDaina\nDalene\nDania\nDann\nDarlyn\nDava\nDavida\nDelena\nDelina\nDenine\nDennise\nDeshawn\nDesire\nDiedra\nDiedre\nDollie\nDominga\nDonette\nDonita\nDonnetta\nDouglas\nDove\nDrina\nDulce\nEarlene\nEcho\nEllie\nEmi\nErnest\nEstrella\nEulalia\nEvon\nFelicity\nFern\nFonda\nFredericka\nGala\nGale\nGary\nGeorge\nGeorgiana\nGeorgianna\nGerald\nGertrude\nGita\nGlynis\nHenry\nHermelinda\nIdalia\nIsa\nJacklyn\nJaclyn\nJacqualyn\nJacquelene\nJacquie\nJacqulyn\nJada\nJahna\nJanetta\nJaney\nJaniece\nJanina\nJayna\nJillene\nJoette\nJohnny\nJoie\nJonni\nJulene\nKacy\nKareen\nKarmen\nKaron\nKasie\nKathaleen\nKathryne\nKatina\nKatrena\nKatrine\nKaye\nKelsey\nKiana\nKierstin\nKimmie\nKina\nKorina\nKristene\nLagina\nLajuana\nLamonica\nLanae\nLasandra\nLashone\nLatunya\nLaurice\nLavina\nLeana\nLecia\nLeighanne\nLelania\nLesha\nLetty\nLezlie\nLilliana\nLinnea\nLise\nLonna\nLoralee\nLorrene\nLorriane\nLou\nLouann\nLove\nLuanne\nLudivina\nLyn\nMalika\nMalina\nMarchelle\nMardi\nMarika\nMarilou\nMarilynn\nMariza\nMarlys\nMarney\nMartin\nMarysol\nMelita\nMelodee\nMerideth\nMeshell\nMicheal\nMichella\nMickey\nMija\nMike\nMillie\nMirian\nMistie\nMonet\nMonigue\nNatacha\nNelia\nNereida\nNiccole\nNichele\nNickole\nNilda\nNissa\nNola\nOdessa\nOla\nOpal\nPatrick\nPeter\nPricilla\nRabecca\nRaeann\nRaeanne\nRamie\nRanae\nRanee\nRashell\nRayleen\nRicardo\nRicki\nRiki\nRina\nRobynn\nRoger\nRomy\nRonnell\nRonni\nRori\nRosaisela\nRosalynn\nRoselyn\nRoshawn\nRosina\nRossana\nRusty\nSage\nSalina\nSalome\nSandee\nSanjuana\nSanjuanita\nSativa\nShamra\nShan\nShaneen\nShanie\nShanyn\nSharice\nSharmaine\nShawndra\nShawnie\nShayne\nSherilyn\nSherrill\nShindana\nShiree\nShireen\nShirlee\nSidra\nSigne\nSiobhan\nStephine\nSueann\nSulema\nSybil\nSynthia\nTammera\nTamy\nTanis\nTatanisha\nTawana\nTaya\nTerina\nTerisa\nTiffiney\nTira\nTodd\nToi\nTrish\nTyla\nValeri\nVanetta\nVelda\nVelia\nVictor\nViva\nWendee\nWilhelmina\nYadira\nYevette\nYumiko\nZaida\nZelda\nZoila\nJennifer\nMichelle\nLisa\nKimberly\nMaria\nJulie\nHeather\nShannon\nChristina\nAmy\nElizabeth\nAngela\nLaura\nChristine\nStephanie\nCynthia\nMelissa\nPatricia\nSandra\nTina\nNicole\nMary\nRebecca\nKaren\nTracy\nDawn\nMonica\nDenise\nAndrea\nKelly\nSusan\nTammy\nWendy\nGina\nTeresa\nStacy\nDeborah\nLori\nMichele\nRachel\nCarrie\nDiana\nTiffany\nJessica\nApril\nDana\nVeronica\nLinda\nNancy\nKathleen\nTamara\nHeidi\nErin\nAnna\nRenee\nStacey\nPamela\nDanielle\nCatherine\nBrenda\nTanya\nAlicia\nKatherine\nKristin\nDeanna\nDonna\nSarah\nCindy\nDebra\nTara\nTheresa\nKristina\nVictoria\nRobin\nCheryl\nSharon\nMelanie\nLeslie\nBarbara\nYolanda\nDiane\nSuzanne\nJill\nYvonne\nRegina\nRhonda\nValerie\nCrystal\nPaula\nJacqueline\nSonia\nShelly\nKristen\nClaudia\nMartha\nMonique\nErica\nKristine\nLeticia\nJamie\nAnn\nHolly\nTonya\nMelinda\nAmber\nRosa\nYvette\nSara\nVanessa\nSherry\nSylvia\nLaurie\nJulia\nKathryn\nSheila\nErika\nAmanda\nNorma\nGloria\nMargaret\nTricia\nCarolyn\nAllison\nAna\nKristi\nAnnette\nCarol\nAnne\nJanet\nChristy\nTraci\nKim\nSabrina\nCarmen\nKrista\nVirginia\nRaquel\nJenny\nSheri\nNatalie\nShawna\nAnita\nMarie\nSamantha\nFelicia\nShelley\nJodi\nJeanette\nIrene\nAngelica\nKathy\nKatrina\nRuth\nTracey\nTrina\nLorena\nAlison\nGuadalupe\nCarla\nColleen\nDebbie\nTami\nTerri\nLeah\nStacie\nBonnie\nJoanna\nSherri\nCassandra\nConnie\nEmily\nKari\nLorraine\nAimee\nDarlene\nJanice\nKimberley\nToni\nEva\nSonya\nAdriana\nKelli\nElaine\nAlma\nKristy\nJoy\nRose\nRachelle\nRochelle\nShawn\nCharlene\nJuanita\nFrances\nKerry\nMargarita\nMegan\nEsther\nAlisa\nDina\nTracie\nCristina\nBeth\nDena\nCecilia\nLydia\nJoanne\nIrma\nRita\nRobyn\nAlice\nBridget\nTeri\nJody\nJudith\nLynn\nKellie\nAngelina\nCharlotte\nEvelyn\nBecky\nLara\nRoberta\nBelinda\nCaroline\nKeri\nCheri\nKirsten\nCathy\nKarin\nMarlene\nShirley\nMaribel\nRoxanne\nAngelique\nGretchen\nKristie\nSilvia\nJudy\nAdrienne\nSophia\nTrisha\nBlanca\nKerri\nNatasha\nSheryl\nAntoinette\nBrandi\nDolores\nSally\nCandice\nKendra\nStefanie\nArlene\nBrandy\nEileen\nElena\nGabriela\nCeleste\nHelen\nChrista\nKarla\nDesiree\nElisa\nKelley\nLynette\nMisty\nNaomi\nSonja\nCandace\nRonda\nTammie\nTisha\nBernadette\nTasha\nVicki\nMaureen\nDorothy\nSerena\nRamona\nSandy\nMolly\nNichole\nSusana\nMarisa\nPriscilla\nJean\nNina\nGinger\nNora\nShana\nStaci\nEricka\nJeannette\nShauna\nJennie\nBrooke\nRuby\nGrace\nLoretta\nMaricela\nMelody\nBeverly\nCherie\nIsabel\nJeanne\nJenifer\nJoann\nJoyce\nKara\nRachael\nDeana\nAudrey\nMarilyn\nPeggy\nMarci\nOlga\nAngel\nAraceli\nBetty\nChristie\nJanine\nJeannie\nRosemary\nTonia\nYesenia\nPenny\nJana\nJeanine\nMeredith\nHope\nMarcella\nGabrielle\nJosephine\nEllen\nVivian\nDelia\nTania\nDarla\nGail\nLora\nMarcia\nMarla\nAngie\nJodie\nPauline\nShari\nDianna\nGeorgina\nJackie\nMarisol\nAlexandra\nCamille\nJane\nMarina\nChristi\nLatasha\nMindy\nIngrid\nNikki\nElsa\nKatie\nLillian\nMia\nOlivia\nTerry\nMiriam\nCandy\nLana\nLuz\nMarianne\nShanna\nAmelia\nChandra\nFrancine\nMarta\nCari\nCorina\nCourtney\nLesley\nJuliet\nAshley\nDionne\nJanelle\nRene\nVicky\nWendi\nBobbie\nDianne\nGenevieve\nLucy\nPatrice\nBertha\nDeanne\nDora\nElisabeth\nKimberlee\nMarcy\nMarisela\nRebekah\nVickie\nAudra\nLatanya\nLaurel\nLeanne\nMarcie\nBeatrice\nJacquelyn\nJanette\nLauren\nLupe\nDarcy\nJoan\nJosefina\nLilia\nPaulette\nJune\nLourdes\nLynda\nPaige\nAlisha\nMona\nKaryn\nLea\nMarlo\nWanda\nCarolina\nCathleen\nCorinne\nHilda\nJohanna\nKeisha\nCelia\nImelda\nJami\nShelby\nTanisha\nFaith\nGraciela\nLorie\nStella\nSusanne\nAurora\nDoris\nGwendolyn\nJulianne\nLeigh\nRocio\nSuzette\nAnjanette\nBeatriz\nMichael\nAthena\nCarey\nConsuelo\nMarsha\nNadine\nAlyssa\nElvia\nSummer\nEdith\nHilary\nJeannine\nLee\nLena\nLiza\nLynnette\nNanette\nNoelle\nSherrie\nLatonya\nTabitha\nAbigail\nConstance\nJo\nKerrie\nLucinda\nMaryann\nTammi\nTamra\nCara\nLouise\nMercedes\nRosemarie\nTerra\nAlexis\nCorinna\nEmma\nGlenda\nLucia\nRosalie\nDoreen\nEdna\nEstella\nLiliana\nSofia\nSusie\nGeraldine\nJuliana\nRosalinda\nTawnya\nAnnie\nChelsea\nDeena\nIsela\nJustine\nLatrice\nShellie\nSusanna\nAnissa\nAutumn\nBridgette\nColette\nDanette\nDeann\nEstela\nMarjorie\nRosie\nAntonia\nCori\nGena\nJeri\nLashawn\nLatisha\nMarissa\nMarnie\nShanda\nTamera\nUrsula\nFrancisca\nJaime\nLeilani\nLorrie\nMargie\nMaya\nNoemi\nRosario\nAlissa\nBillie\nCasey\nEugenia\nHillary\nJuana\nKarrie\nLeann\nMari\nAmie\nCecelia\nChantel\nElvira\nJocelyn\nKatharine\nMagdalena\nShannan\nSue\nWindy\nClara\nEsperanza\nIda\nJessie\nMandy\nSelena\nShelli\nAlejandra\nBernice\nBrandie\nCaryn\nCatalina\nDavina\nKenya\nMyrna\nTrista\nDaphne\nDara\nElva\nEsmeralda\nJames\nJeanna\nJolene\nKris\nMariana\nMyra\nDavid\nDelores\nDominique\nJuliette\nKarina\nLynne\nRichelle\nSocorro\nTiffani\nAllyson\nGayle\nGladys\nJanell\nLauri\nMara\nMargo\nNoel\nShanon\nTerrie\nAdrian\nBetsy\nCandi\nClarissa\nDaisy\nEvangelina\nFrancesca\nGriselda\nIris\nMelisa\nRebeca\nAlysia\nCatrina\nCherise\nChris\nDanelle\nDayna\nDelilah\nHelena\nJanel\nKarri\nLeeann\nMalinda\nRena\nRobert\nTabatha\nTera\nAlyson\nAngelia\nAnnmarie\nBethany\nCarin\nClaudine\nCorrina\nDawna\nDella\nJanna\nJosie\nKendall\nLeanna\nPhyllis\nRandi\nRosanna\nValarie\nVikki\nAnastasia\nAracely\nBuffy\nChristopher\nChrystal\nDee\nDeirdre\nDenice\nElise\nFlorence\nJuli\nKisha\nLeila\nNicolle\nRenae\nSondra\nAida\nAnnemarie\nCandida\nCassie\nCharity\nClaire\nCrista\nJanie\nJanis\nJoey\nKaty\nKesha\nLanette\nLesa\nLola\nMartina\nMayra\nMichell\nPolly\nAdrianne\nCharisse\nCharmaine\nCindi\nJosette\nKate\nLani\nLarissa\nLidia\nMarian\nPatty\nPearl\nPetra\nStefani\nBobbi\nBrigitte\nCarole\nCelina\nDanna\nEve\nKira\nKrishna\nLily\nMaritza\nNichelle\nReina\nRosalind\nShara\nShelia\nTyra\nVera\nDarcie\nDeidre\nEleanor\nJulissa\nMarni\nMinerva\nRoxanna\nStacia\nTessa\nTia\nTrena\nXochitl\nCorrine\nDemetria\nGabriella\nHollie\nJeni\nJerri\nLadonna\nLeandra\nLetitia\nMarcela\nOfelia\nRoxana\nSandi\nSimone\nVenus\nCarri\nCristy\nEden\nGeorgia\nInez\nJason\nJeana\nJohn\nKathrine\nKristal\nMarion\nMonika\nShonna\nStephenie\nSunny\nTherese\nAdela\nAdria\nAdrianna\nAileen\nAlana\nAlina\nAlycia\nBrenna\nDarci\nDebora\nEmilia\nEvette\nIvonne\nJan\nJeanie\nLorene\nLorna\nNanci\nRachele\nReyna\nRosalyn\nSharla\nSharlene\nShay\nShonda\nWhitney\nAngelic\nBelen\nChanda\nChristian\nConcepcion\nCora\nCorey\nElida\nElisha\nGeri\nGia\nJenni\nKrystal\nLia\nLila\nMechelle\nNicolette\nRacquel\nRosalba\nRosalia\nRoseann\nSoledad\nStephani\nThea\nTosha\nVioleta\nAlecia\nAlexandria\nAmi\nAngelita\nCarmela\nChantal\nChristen\nChristin\nDione\nEbony\nElsie\nGeneva\nJayme\nJenna\nJenniffer\nJoelle\nJolie\nKali\nLatricia\nLeona\nLorinda\nMadeline\nPatrica\nRobbie\nRosalva\nRosio\nShani\nSheree\nTamatha\nViolet\nAndria\nBrandee\nCarie\nCathryn\nCristi\nDaniella\nDeedee\nElissa\nEloisa\nEric\nErnestina\nHannah\nJoni\nJulianna\nKarie\nLindsay\nLucille\nMeghan\nRaina\nRobbin\nSelina\nSharron\nSteven\nSuzanna\nThelma\nTresa\nTrudy\nAda\nAnnamarie\nAnthony\nAyanna\nBrian\nBrigette\nBrittany\nCarmel\nCary\nChristal\nCinnamon\nColeen\nCristal\nDevon\nFlora\nFreda\nGilda\nGiselle\nHolli\nJaqueline\nJasmine\nKatheryn\nKay\nLawanda\nMaisha\nMaura\nMay\nMildred\nPatsy\nRosanne\nSasha\nShea\nSherie\nTamika\nTanja\nTracee\nWinona\nAmalia\nAntionette\nAurelia\nBenita\nCasandra\nCyndi\nDaniel\nElaina\nEster\nEvelia\nGwen\nHaydee\nIvy\nJulieta\nJustina\nKirstin\nLatrina\nLeonor\nLiana\nLiane\nLina\nLizabeth\nLois\nMaggie\nMalissa\nMaxine\nMercy\nMindi\nMiranda\nMirna\nMitzi\nNadia\nNatalia\nNathalie\nNellie\nPatti\nPilar\nRae\nRichard\nRowena\nRoxane\nSalina\nShayla\nTamar\nTana\nZulma\nAli\nAmparo\nArmida\nCarina\nCharleen\nDaria\nDusty\nDyan\nEvangeline\nFawn\nGreta\nHelene\nHortencia\nInga\nIvette\nJaneen\nJudi\nKami\nKarma\nLakeisha\nLinette\nLisette\nLiz\nLuisa\nMaryanne\nMirella\nPhoebe\nRayna\nRoxann\nShawnda\nTiffanie\nTonja\nYadira\nAdriane\nAlesia\nBritt\nCaprice\nCaren\nCollette\nCorrie\nDanita\nDolly\nDorinda\nElana\nEliza\nElla\nGeorgette\nGinny\nHallie\nJannette\nJillian\nKimberlie\nKindra\nLakisha\nLilly\nLoraine\nLupita\nMandi\nMireya\nMisti\nNannette\nNicola\nNiki\nSadie\nStar\nTamiko\nVelia\nViviana\nWendie\nAdele\nAdina\nAmerica\nAnabel\nAndrew\nAnnamaria\nAntonette\nAva\nBettina\nBridgett\nCarmelita\nChanel\nCharissa\nCharla\nCory\nCristie\nCristine\nDamaris\nDani\nDanica\nDebby\nDori\nElyse\nFelecia\nFrankie\nIlene\nJacquline\nJanae\nJena\nJose\nKellee\nKimber\nKimberli\nKristyn\nLainie\nLatonia\nLaureen\nLavonne\nLetisia\nLissa\nLorri\nMariah\nMarivel\nMark\nMarlena\nMelina\nMelonie\nMorgan\nNiccole\nNicol\nNoreen\nPerla\nRenita\nRosana\nRosita\nRoslyn\nSamara\nSarina\nSerina\nShandra\nShantel\nShanti\nShawnna\nSunshine\nSydney\nTameka\nTatanisha\nTatiana\nTisa\nTori\nValorie\nVelma\nAdelina\nAlethea\nAnnabelle\nAraseli\nBarbra\nBianca\nBriana\nCallie\nChantell\nChristel\nCorie\nCristin\nDalia\nDeshawn\nEdie\nEmilie\nErma\nErnestine\nFatima\nFaye\nFrancis\nGaylene\nGracie\nIsabelle\nJammie\nJenelle\nJuliann\nKandy\nKarena\nKarolyn\nKecia\nKyra\nLenora\nLenore\nLibby\nLilian\nLindy\nLolita\nMagda\nMarylou\nMellissa\nMelodie\nMelynda\nMerry\nNichol\nPiper\nPortia\nRachell\nRosamaria\nSenta\nStacee\nStormy\nSusannah\nTamu\nTiffiny\nTrinidad\nTwila\nVerna\nWillow\nWinnie\nYasmin\nAdelita\nAide\nAlyce\nAngeline\nArcelia\nBerta\nChristiane\nCinthia\nDaniela\nDinah\nErlinda\nEunice\nFabiola\nGillian\nHayley\nHazel\nHeide\nIna\nJade\nJennine\nJohnna\nJohnnie\nJoleen\nJoseph\nJosephina\nKarey\nLeesa\nLela\nLianne\nLoren\nMaia\nMaren\nMariza\nMichaela\nPricilla\nRenea\nRona\nRoseanne\nSaundra\nShalonda\nShona\nSuzan\nTaryn\nTaunya\nTeena\nTerresa\nToby\nTreena\nTwyla\nWilliam\nZoe\nAndra\nAnika\nAriana\nAundrea\nAura\nCaitlin\nCarissa\nCharles\nCherice\nCherrie\nCheryle\nChristiana\nChristianne\nClaudette\nCorine\nDaina\nDawnette\nDedra\nDelfina\nDennise\nDonya\nDorene\nFiona\nGeorge\nGlenna\nGuillermina\nHolley\nIndia\nJaimie\nJamee\nJayne\nJenette\nJesus\nJolynn\nJonna\nJovita\nJulee\nKandi\nKasey\nKathlene\nKeli\nKenna\nKristan\nLadawn\nLatosha\nLesli\nLinnea\nLizette\nLouisa\nMarti\nMissy\nMollie\nNikole\nNola\nOralia\nPamala\nPenelope\nRacheal\nRana\nRina\nRosaura\nSarena\nSeana\nShalon\nSharonda\nShaunna\nShawnee\nSiobhan\nSkye\nStarla\nSuzy\nTamela\nTamie\nTammara\nTeressa\nTiffaney\nValentina\nVeronique\nAlba\nAlejandrina\nAletha\nAlexa\nAmoreena\nAnnabel\nAnnalisa\nAsia\nBrook\nCarmella\nCathrine\nCharise\nCher\nCheree\nCherry\nCheyenne\nClare\nConsuela\nCrissy\nDacia\nDale\nDannette\nDannielle\nDanya\nDelicia\nDemetra\nDonica\nElke\nErinn\nFelicity\nFlor\nGianna\nGregory\nHaley\nHarriet\nHerminia\nIliana\nIvon\nJacque\nJanene\nJene\nJennefer\nKarry\nKayla\nKelsey\nKia\nKori\nKymberly\nLacey\nLaronda\nLashanda\nLashon\nLashonda\nLatoya\nLawana\nLigia\nLillie\nLise\nLissette\nLizbeth\nLonna\nLucretia\nMachelle\nMaile\nMalaika\nMarcelina\nMarianna\nMatilde\nMatthew\nMelba\nMimi\nMisha\nPeter\nPetrina\nRolanda\nRomy\nSabina\nSean\nShane\nSharee\nSharie\nSoraya\nStephany\nStephine\nSunni\nSusy\nSuzie\nSynthia\nTeresita\nTiffini\nTobi\nToya\nZandra\nAaron\nAbby\nAdelaida\nAisha\nAleta\nAlysha\nAmina\nAshli\nAviva\nAyesha\nBobby\nBrett\nCameron\nCarlotta\nCarma\nCaron\nCatharine\nChante\nChantelle\nChari\nChrissy\nClarice\nDanae\nDanny\nDanyelle\nDawne\nDeeann\nDenine\nDestiny\nDia\nDixie\nDona\nDyana\nElia\nElicia\nEloise\nEstelle\nEthel\nGabriel\nGary\nGidget\nGigi\nGypsy\nInes\nInger\nJeanelle\nJenell\nJodee\nJoel\nJuliane\nKacy\nKameron\nKendal\nKiersten\nKiesha\nKimberely\nKimi\nLalena\nLanna\nLarhonda\nLaticia\nLavonda\nLeisa\nLona\nLoree\nLorelei\nLucila\nMalia\nMalika\nMaricella\nMario\nMelani\nMelva\nMerideth\nMeridith\nMichel\nMichon\nMika\nMiko\nMyisha\nPam\nParis\nPatrisia\nPaul\nPhaedra\nRaeann\nRaymond\nRonnie\nSacha\nSallie\nShalene\nShanta\nSharise\nShasta\nShawnie\nSheena\nShiela\nSophie\nTabetha\nTamica\nTawny\nThomas\nTimothy\nTish\nTonie\nTrudi\nVelvet\nVenessa\nVonda\nWillie\nXiomara\nYolonda\nAbbie\nAdeline\nAlaina\nAlberta\nAlise\nAlva\nAmiee\nAnalisa\nAndreana\nAngella\nAntonio\nAretha\nArleen\nBeatris\nBeronica\nBrigid\nCamilla\nCandelaria\nCarlene\nCarletta\nCarman\nCarolee\nCecily\nCelena\nChanin\nCharis\nCharlette\nCorena\nDahlia\nDaneen\nDaniele\nDanika\nDanyel\nDarleen\nDaun\nDebroah\nDeidra\nDelana\nDelinda\nDenna\nDetra\nDeva\nDonelle\nEdward\nEugenie\nFaviola\nFelice\nFelisa\nFelisha\nGayla\nGennifer\nGenny\nGenoveva\nGermaine\nGricelda\nHoney\nIesha\nIlda\nImani\nJaclyn\nJanella\nJaney\nJaniece\nJanina\nJannine\nJaye\nJeffrey\nJeniffer\nJerilyn\nJesse\nJewel\nJoana\nJoi\nJoycelyn\nJulieanne\nKandace\nKarna\nKary\nKassandra\nKathie\nKatina\nKeisa\nKenyatta\nKirstie\nKyle\nLashone\nLashun\nLatesha\nLaurinda\nLavette\nLavina\nLeslee\nLindsey\nLizet\nLorita\nLuana\nLurdes\nMakeba\nManuel\nManuela\nMargot\nMarguerite\nMaricruz\nMarilee\nMarilynn\nMarquita\nMarty\nMeagan\nMelony\nMicaela\nMichaelle\nMichiko\nMicki\nMiki\nMirian\nMoira\nNerissa\nNeva\nNona\nNova\nOpal\nPaola\nPaulina\nPennie\nRaelene\nRandy\nReba\nReiko\nRhoda\nRikki\nRomona\nRosalina\nRoseanna\nScott\nSelene\nSerene\nShanae\nShantell\nShayne\nSherice\nSierra\nSimona\nTandy\nTatia\nTausha\nTena\nTereasa\nTerese\nTiana\nTomika\nTressa\nTreva\nTrinette\nValencia\nVeda\nVenetia\nVenita\nZabrina\nZaneta\nAdena\nAkemi\nAlena\nAlondra\nAmada\nAnamaria\nAnanda\nAnastacia\nAngelena\nAngelene\nAnitra\nAnya\nArgelia\nAriel\nArnetta\nAvelina\nBambi\nBenjamin\nBernadine\nBonita\nBrandon\nCandyce\nCarisa\nCarleen\nCarlyn\nCarolynn\nCaterina\nChelsey\nCherish\nCherisse\nCherri\nChristene\nClover\nCody\nCristen\nDanell\nDannelle\nDanyell\nDarby\nDarcey\nDavida\nDavonna\nDawnell\nDebbi\nDeeanna\nDevona\nDiann\nDiona\nDouglas\nDulce\nEarlene\nEcho\nElba\nEna\nEnedina\nEnid\nEvonne\nFrancisco\nGaynell\nGene\nGerri\nGisela\nGregoria\nGwyn\nHelga\nHerlinda\nIvana\nIvory\nJacinda\nJacquelin\nJamey\nJanay\nJenee\nJenel\nJenine\nJennette\nJeremy\nJerusha\nJesusita\nJoe\nJoellen\nJulieann\nJurea\nKacey\nKandice\nKarol\nKasandra\nKathi\nKaylene\nKeely\nKeiko\nKellye\nKevin\nKeya\nKorina\nKristeen\nKyla\nLachelle\nLaini\nLakeesha\nLanita\nLarisa\nLarry\nLashan\nLatrece\nLaverne\nLawanna\nLeatrice\nLeeanna\nLeeanne\nLenita\nLeta\nLetisha\nLiberty\nLisha\nLoreen\nLorenza\nLus\nMalisa\nMarcelle\nMariam\nMaribell\nMariela\nMarizela\nMarlyn\nMarna\nMendy\nMichela\nMichella\nMikelle\nMila\nMillie\nMonette\nMuriel\nMyesha\nNatascha\nNecole\nNikol\nPatience\nPenney\nPoppy\nPrincess\nRaguel\nRain\nRani\nRay\nRhea\nRhona\nRicki\nRima\nRisa\nRodney\nRoni\nRonit\nRory\nRosalee\nRosella\nRubi\nRyan\nSanjuanita\nSarita\nScarlet\nSergio\nShaleen\nShanette\nShanita\nSharleen\nShayleen\nShayna\nShellee\nShena\nShereen\nSherilyn\nShyla\nSirena\nSoila\nStephen\nTamala\nTamarah\nTanesha\nTani\nTanishia\nTawna\nTemple\nThalia\nTiffiney\nTomi\nTommie\nTreasa\nTrish\nTristine\nTroy\nTuesday\nValeria\nValinda\nVilma\nWendee\nWindi\nYalonda\nYevette\nYolando\nZara\nAdam\nAgnes\nAkiko\nAlene\nAlesha\nAlex\nAlia\nAlica\nAliza\nAlthea\nAlvina\nAmee\nAnette\nAnisa\nAnja\nAnjannette\nAnjeanette\nAnmarie\nAnnastacia\nAnthea\nAntonina\nAprille\nArielle\nArminda\nAshlee\nAshleigh\nBabette\nBlanche\nBonny\nBrianna\nBrita\nBrittney\nBuffi\nBuffie\nCammy\nCandie\nCarmina\nCasie\nCecile\nCelestina\nCelinda\nChanell\nChannon\nChantil\nCharon\nChina\nChristena\nChristinia\nCoral\nCorin\nCortney\nCruz\nDalila\nDania\nDanise\nDarlynn\nDarnell\nDeandra\nDebbra\nDelaine\nDeserie\nDierdre\nDodie\nDonald\nDonell\nDonetta\nElayne\nElda\nElinor\nElisabet\nElodia\nErryn\nEvan\nFannie\nFanny\nFay\nFelicitas\nFlorinda\nGale\nGay\nGemma\nGeralyn\nGisselle\nGuinevere\nHarmony\nHenrietta\nHiedi\nIlana\nIleana\nIra\nIvan\nJackeline\nJacki\nJada\nJamillah\nJanean\nJanise\nJaymi\nJenean\nJennifier\nJosefa\nJuan\nJulienne\nJulisa\nKaci\nKama\nKandie\nKandis\nKaran\nKasia\nKasie\nKassie\nKatherin\nKatherina\nKerensa\nKerstin\nKimya\nKristel\nKristena\nKristian\nLakesha\nLannette\nLaquita\nLarena\nLashelle\nLashondra\nLashunda\nLauna\nLaure\nLaurice\nLeana\nLeighann\nLetha\nLianna\nLilliana\nLisbeth\nLita\nLoni\nLonnie\nLuanne\nLuis\nLynelle\nLynetta\nLynnae\nMabel\nMadonna\nMae\nMagdalene\nMarcey\nMarchelle\nMargery\nMargret\nMariaelena\nMarialuisa\nMariann\nMarilou\nMarlise\nMarnee\nMarsi\nMartine\nMarya\nMarybell\nMarybeth\nMarylee\nMarysol\nMeliza\nMellisa\nMelvina\nMeri\nMesha\nMicah\nMickie\nMiesha\nMistie\nMitra\nMonet\nMoriah\nMyrtle\nNancie\nNelly\nNicki\nNickie\nNidia\nNieves\nOctavia\nOnica\nOphelia\nPamelia\nPatrina\nPia\nPorsha\nPrecious\nPrudence\nQuinn\nRaechel\nRafaela\nRandee\nRandie\nRashawn\nRayann\nRaye\nRaylene\nRebbecca\nRechelle\nRenay\nRichele\nRobbyn\nRochell\nRocquel\nRoma\nRomana\nRonna\nRonnette\nRoselyn\nRosetta\nRosina\nSabrena\nSalena\nSamatha\nSami\nSamuel\nSeptember\nShae\nShanell\nShannah\nSharilyn\nShaun\nShawana\nShawnette\nShawnta\nShelle\nShenise\nSherelle\nSherene\nSherrell\nShila\nShiloh\nShira\nShonta\nShoshana\nSina\nSteffani\nStephaine\nStephannie\nSuanne\nSukari\nSunday\nSuzana\nSuzann\nSuzzanne\nSybil\nTalitha\nTamarra\nTammera\nTamsen\nTamura\nTamyra\nTarra\nTashia\nTawnia\nTaya\nTesha\nTessie\nTianna\nTifani\nTimika\nTinna\nToi\nTomeka\nTony\nTory\nTristan\nVannessa\nVickey\nWednesday\nWillette\nWilma\nYana\nYasmine\nZenaida\nZoila\nJennifer\nMichelle\nLisa\nKimberly\nMaria\nNicole\nHeather\nAmy\nJulie\nStephanie\nChristina\nElizabeth\nMelissa\nCynthia\nAngela\nLaura\nShannon\nChristine\nRebecca\nPatricia\nSandra\nMonica\nTina\nMary\nAndrea\nKaren\nDenise\nTracy\nKelly\nVeronica\nDawn\nRachel\nWendy\nTammy\nMichele\nJessica\nTeresa\nSusan\nLori\nTiffany\nApril\nStacy\nGina\nTanya\nDiana\nDeborah\nSarah\nDanielle\nAnna\nCarrie\nBrenda\nLinda\nKathleen\nNancy\nHeidi\nKatherine\nAlicia\nTamara\nMelanie\nRenee\nErin\nCatherine\nTheresa\nStacey\nKristin\nTara\nDeanna\nVictoria\nLeticia\nRobin\nDana\nKristina\nClaudia\nPamela\nCheryl\nCrystal\nSuzanne\nErica\nYolanda\nRosa\nBarbara\nMonique\nErika\nDonna\nCindy\nLeslie\nGloria\nBrandi\nSonia\nJill\nYvonne\nDebra\nChristy\nSharon\nValerie\nRegina\nJacqueline\nAmber\nMelinda\nMartha\nKristen\nSara\nAmanda\nDiane\nBrandy\nShelly\nJenny\nTonya\nHolly\nYvette\nSylvia\nAna\nNatalie\nJamie\nKathryn\nVanessa\nRhonda\nPaula\nSamantha\nShawna\nKristine\nNorma\nLaurie\nSherry\nAnn\nKristi\nAngelica\nJanet\nTricia\nSheila\nCarolyn\nKatrina\nMargaret\nRaquel\nCarol\nVirginia\nShelley\nAllison\nJulia\nLorena\nAnne\nAnnette\nCarmen\nEmily\nCarla\nGuadalupe\nTraci\nAimee\nIrene\nKrista\nSheri\nSabrina\nJeanette\nMisty\nCassandra\nKari\nFelicia\nMarie\nKim\nAnita\nGabriela\nNichole\nColleen\nStacie\nJodi\nAlison\nRuth\nTami\nLeah\nMegan\nAlma\nAdriana\nKristy\nDarlene\nConnie\nSherri\nJoanna\nKelli\nKerry\nNatasha\nTracey\nSonya\nTerri\nTrina\nKathy\nKeri\nAngelina\nRochelle\nJoy\nCecilia\nNikki\nLynn\nDebbie\nLorraine\nRose\nEva\nFrances\nJudith\nKirsten\nCharlene\nHelen\nKimberley\nMolly\nBonnie\nElaine\nRachelle\nToni\nBridget\nSilvia\nLydia\nMaribel\nRita\nDena\nSusana\nEsther\nJody\nStefanie\nDina\nDesiree\nElena\nMargarita\nBelinda\nEileen\nJuanita\nShawn\nRobyn\nBlanca\nMarlene\nRoxanne\nAlice\nCristina\nKristie\nSonja\nAngel\nTracie\nCharlotte\nCheri\nLynette\nAngelique\nBeth\nJoanne\nRachael\nKellie\nCaroline\nIrma\nJudy\nElisa\nKendra\nAlisa\nBecky\nChristie\nKara\nKatina\nNina\nAraceli\nJanice\nBernadette\nTrisha\nRamona\nShirley\nTeri\nCandice\nDolores\nJenifer\nOlivia\nRoberta\nStaci\nDelia\nMaricela\nChrista\nLara\nSally\nSandy\nJean\nArlene\nKarla\nKerri\nAdrienne\nTasha\nCandace\nIsabel\nShauna\nShana\nSheryl\nCathy\nMeredith\nAlexandra\nJeannette\nRosemary\nNaomi\nOlga\nShelby\nAntoinette\nCeleste\nAudrey\nGretchen\nJennie\nTanisha\nDianna\nJoyce\nLuz\nGinger\nJoann\nKelley\nMaureen\nPriscilla\nSerena\nVicki\nRuby\nAlejandra\nCherie\nEricka\nLatasha\nMelody\nJosephine\nSophia\nTammie\nDeana\nEvelyn\nJeannie\nVivian\nBrooke\nDora\nGeorgina\nDorothy\nGrace\nKeisha\nMarisa\nMarisol\nTania\nFrancine\nKarin\nKatie\nBeverly\nJane\nLoretta\nMarcella\nHope\nCandy\nMarla\nNora\nLillian\nMindy\nMona\nTisha\nJana\nAshley\nCorina\nElsa\nPeggy\nShanna\nYesenia\nEllen\nJanelle\nJeanine\nLaurel\nWendi\nAlisha\nGail\nGraciela\nJeanne\nMiriam\nBetty\nChandra\nGabrielle\nLauren\nMarcia\nRocio\nCarey\nGenevieve\nIngrid\nMarisela\nRene\nBobbie\nCarolina\nKimberlee\nLourdes\nEdith\nBertha\nLena\nMarilyn\nMarina\nSusie\nTammi\nAmie\nBrandie\nJanine\nLatanya\nMarcy\nMarsha\nHilda\nJodie\nLucia\nLucy\nTerry\nCara\nGriselda\nLeanne\nLeigh\nMarci\nMelisa\nRonda\nCharity\nElisabeth\nLora\nLupe\nMarianne\nSummer\nAurora\nCasey\nJackie\nMichael\nTonia\nWanda\nEstela\nJeannine\nNoelle\nMarta\nStella\nVickie\nEmma\nJenna\nPenny\nRosalinda\nBethany\nCari\nFaith\nTamra\nDeanne\nHilary\nJacquelyn\nJosefina\nKaryn\nLynda\nRosario\nJoan\nMarcie\nMaryann\nShari\nAutumn\nJo\nJune\nLilia\nNadine\nPauline\nChelsea\nCorinna\nDarla\nEsmeralda\nLatisha\nLiliana\nMercedes\nNanette\nAngie\nAudra\nAyanna\nConsuelo\nJohanna\nLana\nLesley\nMarlo\nRosie\nTabitha\nAlexis\nAmelia\nAntonia\nBeatriz\nBillie\nCamille\nChristi\nCorinne\nCourtney\nDarcy\nLiza\nPaulette\nTerra\nWindy\nBeatrice\nCelia\nLea\nPatrice\nIsela\nMia\nRebeca\nRebekah\nBridgette\nDoris\nJanel\nKarrie\nLatonya\nMarissa\nSherrie\nTawnya\nVicky\nAnissa\nCharmaine\nDoreen\nEsperanza\nJulianne\nKarina\nLeann\nLynnette\nSuzette\nHillary\nRosalie\nRosemarie\nCatina\nCecelia\nDanette\nJami\nKenya\nNoemi\nSocorro\nSusanne\nDayna\nGena\nJanette\nJeri\nJuliet\nLatrice\nLee\nMireya\nAthena\nCatalina\nDeena\nDianne\nGeorgia\nGlenda\nJuliana\nMalinda\nNoel\nSofia\nBrandee\nCathleen\nDionne\nEvangelina\nImelda\nJason\nJolene\nMaritza\nPaige\nTiffani\nAnnie\nClarissa\nClaudine\nEleanor\nJuana\nKasey\nLorie\nMargo\nPearl\nSunny\nSusanna\nElise\nJames\nJocelyn\nLashawn\nSheree\nTamika\nAbigail\nClara\nElva\nElvia\nKisha\nLeanna\nMargie\nMarian\nRichelle\nTamera\nVera\nMarjorie\nMonika\nRena\nBernice\nGwendolyn\nJessie\nKerrie\nLucinda\nRobert\nShellie\nTrista\nAlyssa\nAngelita\nConstance\nEve\nIris\nJanie\nKatharine\nKrystal\nLily\nMagdalena\nMarni\nTera\nAnnmarie\nCatrina\nEdna\nElvira\nGabriella\nJaime\nLorna\nLouise\nMandy\nOfelia\nShanon\nVioleta\nAmalia\nAracely\nIda\nJuliette\nMara\nMyrna\nSasha\nCaryn\nCori\nFrancisca\nLauri\nLidia\nMaya\nPhyllis\nRosalind\nRosanna\nSandi\nUrsula\nValarie\nXochitl\nAnastasia\nAnjanette\nCherise\nDeann\nEvette\nHannah\nIvy\nJosie\nJulissa\nJustine\nKristal\nLakeisha\nLorrie\nMarcela\nMarnie\nNiki\nPetra\nSimone\nStefani\nTessa\nVenus\nAlana\nAllyson\nBree\nBuffy\nClaire\nDavina\nDebora\nDominique\nJanna\nKami\nLynne\nMiranda\nRandi\nReina\nShelli\nSondra\nAileen\nAlissa\nBobbi\nCarie\nCassie\nChanda\nEstella\nFlorence\nFrancesca\nLeila\nMaisha\nMechelle\nPenelope\nPerla\nShannan\nSue\nAngelia\nAngelic\nChantel\nChristopher\nCristy\nDavid\nEloisa\nJolie\nKesha\nLarissa\nLeilani\nMariana\nMartina\nMayra\nMichell\nMyra\nPolly\nSunshine\nAnnemarie\nBrenna\nCarole\nChris\nDaisy\nDaniel\nDaphne\nDenice\nGeraldine\nHelena\nLadonna\nLeona\nLuisa\nMaura\nMicaela\nRosalva\nRoxanna\nTabatha\nTrudy\nAnnamarie\nCandi\nDanelle\nDarci\nDeirdre\nElisha\nGladys\nInez\nJan\nJaneen\nJanell\nJenni\nMaggie\nMalissa\nMildred\nRichard\nSelena\nShani\nStacia\nTia\nVikki\nAlysia\nAmerica\nAndria\nAntonette\nBelen\nBetsy\nChristal\nCorrine\nDani\nDawna\nDemetria\nEugenia\nFlora\nGiselle\nKirstin\nLoraine\nMeghan\nMirella\nSharla\nTamiko\nViviana\nAdrian\nAnika\nBriana\nCandida\nDara\nDevon\nEbony\nElissa\nGayle\nHollie\nJanis\nJoey\nJosette\nLakesha\nLanette\nLavonne\nLois\nNellie\nNicol\nNicolle\nPatsy\nRosanne\nShanda\nAdrianne\nArmida\nBridgett\nBrook\nCarissa\nCarri\nCher\nCorey\nCorrina\nCrista\nDaniella\nDori\nGeorgette\nJohn\nJustina\nKarri\nKris\nLawanda\nLia\nLiz\nMinerva\nNicola\nPatti\nRacquel\nReyna\nRowena\nShane\nShelia\nSusannah\nSuzanna\nTanja\nTherese\nWilliam\nZoe\nAdela\nAdele\nAlexandria\nAlina\nAnnamaria\nCamisha\nCarin\nCarina\nCasandra\nCherilyn\nChristian\nColeen\nColette\nDeidre\nDelores\nEliza\nEunice\nFabiola\nGuillermina\nJerri\nJulianna\nKandi\nKarie\nKyla\nLenora\nLesa\nLilian\nMadeline\nMari\nMarion\nNichol\nNicolette\nNikole\nPatty\nRacheal\nRenae\nSaundra\nSharlene\nSharron\nTerrie\nTori\nTosha\nAnthony\nBrigitte\nCindi\nCory\nDaniela\nDusty\nEmilia\nFrancis\nGia\nGillian\nJeanie\nJeanna\nJenniffer\nJohnna\nJose\nJuan\nKate\nLakisha\nLani\nLayla\nLeeann\nLeonor\nLina\nMagda\nMarivel\nMisti\nNatalia\nRosio\nSelina\nStarr\nStephani\nTobi\nValentina\nWhitney\nBerta\nCary\nCorrie\nCristal\nDannielle\nGwen\nIvonne\nJena\nJoelle\nJonna\nKathrine\nKira\nLela\nLetitia\nLila\nLisette\nLizbeth\nLola\nMatthew\nMercy\nPrudence\nRachele\nRaina\nRonnie\nStephany\nTamela\nTana\nTiffanie\nTonja\nTyra\nValorie\nAdrianna\nAli\nAmparo\nAurelia\nAva\nCelina\nCharla\nCherish\nChristen\nChristin\nClaudette\nConcepcion\nCora\nDarcie\nDella\nEvonne\nJade\nJasmine\nJeana\nJesus\nJoseph\nJuli\nKyra\nLatricia\nLenore\nLiana\nMirna\nRhoda\nRosalba\nShawnee\nShonna\nTamie\nTedra\nTrena\nAdriane\nAide\nAlecia\nAngeline\nAriana\nBrian\nBrigette\nCaitlin\nCameron\nCaren\nCelena\nChrystal\nCollette\nCristin\nCyndi\nDalia\nDaniele\nEric\nFatima\nIvette\nJayne\nKarena\nLatosha\nLindy\nLupita\nMalia\nMarlena\nMay\nMindi\nRae\nRoseanna\nShawnna\nSherie\nShiela\nShiloh\nSkye\nAlyson\nAndra\nAnjelica\nAntionette\nCarmelita\nCathrine\nCruz\nDee\nDeidra\nDelilah\nDixie\nDolly\nElida\nErnestine\nEvelia\nGisela\nIna\nJoni\nKimberlie\nKori\nLashonda\nLeyla\nLibby\nLouisa\nMelonie\nMollie\nMyisha\nNicki\nPoppy\nRenita\nRobbin\nRosana\nRubi\nSteven\nTameka\nTarra\nThelma\nTrinity\nVerna\nAda\nAida\nAisha\nAmi\nAnabel\nAsia\nAura\nCambria\nCaprice\nChantal\nDanita\nDeserie\nDorene\nEden\nEdwina\nErlinda\nEvangeline\nGinny\nJillian\nJudi\nLaila\nLetisia\nLillie\nLindsay\nLorene\nLucretia\nMalisa\nMarylou\nMendy\nMyesha\nNanci\nNannette\nNissa\nNova\nPilar\nRina\nRoseann\nRosetta\nSerina\nStar\nStephenie\nSuzy\nSydney\nToya\nTracee\nTressa\nTrinidad\nVilma\nViola\nWendie\nYadira\nAdelina\nAdria\nAlejandrina\nAlisia\nAlthea\nArcelia\nAriel\nBianca\nBrittany\nCarly\nCathryn\nCelestina\nChana\nCharisse\nChristiane\nCinnamon\nCinthia\nDanna\nDelfina\nErma\nEster\nEthel\nFiona\nGeneva\nGiovanna\nHaydee\nHolli\nHortencia\nIlene\nJennette\nJulee\nKarey\nKay\nKellee\nKendall\nKindra\nLatonia\nLeana\nLiane\nLilly\nLucille\nMae\nMalaika\nMarianna\nMaricruz\nMark\nMissy\nNadia\nNathalie\nPam\nPhaedra\nPortia\nRenata\nRosalia\nRosalyn\nRosaura\nShanee\nShaunna\nShay\nShayna\nSherilyn\nShona\nShonda\nStephaine\nSuzie\nTamala\nTamatha\nTenisha\nTiana\nTisa\nVelma\nAnel\nAngelene\nAnnabelle\nAretha\nAyana\nBenita\nBritt\nCharise\nCharleen\nCharles\nCheree\nCheyenne\nChristel\nChristiana\nCorine\nCristine\nDanica\nDelicia\nDetra\nDionna\nDona\nDonielle\nEna\nErinn\nErnestina\nFawn\nFaye\nFelice\nGeri\nGreta\nGricelda\nIlda\nIliana\nIndia\nIsabelle\nJaqueline\nKandice\nKatheryn\nKathie\nKaty\nKeli\nKia\nKimberli\nKoren\nLakeysha\nLatoya\nLeonora\nLinette\nLissa\nLizette\nLolita\nLoren\nMabel\nMaia\nMarti\nMaxine\nMelina\nMellissa\nMilissa\nMimi\nNona\nPrecious\nRaylene\nRona\nRoni\nRosalina\nRosita\nRoxana\nSabina\nSacha\nSadie\nSalina\nSarina\nSoraya\nStacee\nStarla\nSunday\nTabetha\nTamar\nTatanisha\nThomas\nToby\nTreva\nTwyla\nVelia\nViolet\nAaron\nAdelita\nAgnes\nAlberta\nAlexa\nAlycia\nBlythe\nBobby\nCarisa\nCarmela\nCecily\nCeline\nChante\nChantelle\nCherry\nConsuela\nCorie\nDahlia\nDavida\nDeedee\nDenita\nDestiny\nDinah\nDione\nDyan\nElia\nElicia\nElke\nElla\nEnedina\nFlor\nGabriel\nGigi\nHazel\nHelene\nHiedi\nInes\nJamila\nJaney\nJayme\nJenelle\nJeni\nJenine\nJenise\nJonelle\nJovita\nKary\nKasandra\nKathi\nKeya\nKristian\nLatesha\nLatrina\nLavonda\nLorinda\nLuana\nLyn\nMargot\nMariaelena\nMarilee\nMelani\nMellisa\nMelodie\nMerry\nMiesha\nMorgan\nNickie\nNickole\nNydia\nOctavia\nOphelia\nPhoebe\nPiper\nRana\nRebecka\nRhea\nRisa\nRomona\nRossana\nScarlett\nScott\nSean\nShalene\nShalonda\nShanelle\nShante\nShanti\nShawntel\nShayne\nSherrill\nShira\nSierra\nSiobhan\nSoledad\nSpring\nSuzan\nSybil\nTamu\nTawana\nTerese\nTeresita\nTessie\nThea\nTheodora\nTommy\nTresa\nWillow\nWinifred\nAlanna\nAlesha\nAlesia\nAllegra\nAngella\nAnnabel\nAundrea\nBonny\nCallie\nCarlene\nChanel\nCharissa\nChasity\nChastity\nChenoa\nCherrie\nClarice\nCristi\nDale\nDalila\nDaria\nDawnelle\nDemetra\nDesire\nElaina\nElda\nElizabet\nEloise\nEstelle\nFrankie\nGianna\nHallie\nJannette\nJeanene\nJesse\nJohnnie\nJonathan\nJuliane\nJuliann\nJulienne\nJulieta\nKathlene\nKeena\nKeesha\nKeshia\nKeysha\nKiesha\nKila\nKimi\nKrissy\nLacey\nLanie\nLashanda\nLetisha\nLianne\nLiberty\nLoreen\nLory\nMadelyn\nManuela\nMarcelle\nMargret\nMariah\nMariela\nMaryanne\nMerideth\nMichel\nMitzi\nMoira\nMya\nNatascha\nNoelia\nNoreen\nRachell\nRayna\nRonna\nRosamaria\nRoseanne\nRosina\nRoslyn\nSarita\nSelene\nShalon\nShandra\nShantel\nShara\nShareen\nShawnette\nShea\nSophie\nSteffanie\nTashia\nTiffiny\nTimothy\nTomi\nTomika\nWendee\nXochilt\nYolonda\nZandra\nAbby\nAdina\nAfrica\nAlba\nAmee\nAmina\nAmira\nAmmie\nAnanda\nAndreana\nAnette\nAngelena\nAnitra\nAnnalisa\nAsha\nAzucena\nBarbra\nBecki\nBettina\nBonita\nBrett\nBrianna\nBryan\nBuffie\nCameo\nCamilla\nCarmella\nCarolynn\nCaryl\nCatharine\nCharlyn\nCharmain\nChristene\nChristianne\nCoral\nCornelia\nDamaris\nDarcey\nDarleen\nDebi\nDesha\nDulcie\nDusti\nEdie\nEdward\nElana\nElba\nElma\nElsie\nElyse\nFanny\nFaviola\nFelisha\nFrancie\nFreda\nGayla\nGenoveva\nGilda\nGlenna\nHayley\nIleana\nIndira\nJada\nJammie\nJeanetta\nJeneen\nJeniffer\nJennefer\nJesica\nJoe\nJordana\nKacy\nKai\nKamala\nKameron\nKamisha\nKarma\nKarna\nKatrin\nKayce\nKeely\nKelsey\nKenda\nKenneth\nKevin\nKimberely\nKimberlyn\nKimya\nKrishna\nKristyn\nLaronda\nLasandra\nLatashia\nLaticia\nLawana\nLesli\nLigia\nLilliana\nLizet\nLove\nLucila\nLucina\nMaile\nMakeba\nMarguerite\nMaricella\nMario\nMariza\nMarleen\nMaryjane\nMeg\nMelannie\nMiguel\nMina\nMisha\nMistie\nMuriel\nNatividad\nNelly\nNena\nNeva\nNia\nNichele\nNorah\nNorine\nOdessa\nOdette\nPamala\nPaola\nPatrica\nRaymond\nRobbie\nRonald\nRonica\nRuben\nRuthie\nSabine\nSabrena\nSamara\nSandee\nSeana\nSharyn\nShaun\nShellee\nSherrell\nShonta\nStephine\nSunnie\nSuzann\nSynthia\nTamica\nTamisha\nTamora\nTanika\nTaunya\nTawny\nTaya\nTiara\nTiffini\nTuesday\nValencia\nWilma\nWinnie\nZaida\nZulema\nAdam\nAdelaida\nAlbert\nAlena\nAlexandrea\nAliza\nAmoreena\nAnya\nBambi\nBetina\nCandelaria\nCarleen\nCarley\nCarmel\nChe\nCherese\nClementina\nCristen\nDacia\nDania\nDannette\nDawne\nDennise\nDoria\nDorthy\nDyana\nEcho\nElysia\nEmi\nFelecia\nFelicitas\nFernanda\nGary\nGema\nGermaine\nHarriet\nHeide\nHilarie\nInga\nIvana\nJacquelin\nJacquline\nJamey\nJanae\nJanean\nJaylene\nJeffrey\nJene\nJenee\nJennipher\nJerry\nJohnette\nJohnny\nJoi\nJosefa\nKacey\nKarianne\nKarissa\nKassandra\nKatrena\nKeitha\nKenna\nKenyatta\nKimber\nKimiko\nKirstie\nLaina\nLakiesha\nLaquita\nLaree\nLarry\nLaureen\nLaurice\nLavon\nLeandra\nLeeanne\nLeisa\nLeora\nLetrice\nLicia\nLili\nLonna\nLonnie\nLoree\nMalynda\nMarcelina\nMariama\nMarybel\nMaryellen\nMattie\nMeadow\nMeagan\nMeegan\nMeka\nMelynda\nMerrilee\nMichaele\nMichal\nMickey\nMicole\nMikki\nMindee\nMinnie\nMira\nMirtha\nMoon\nMoriah\nNana\nNedra\nNichelle\nNicholle\nOna\nPatrick\nPetrina\nPia\nRani\nRayleen\nReba\nRochell\nRolanda\nRomy\nRonni\nRory\nRosella\nRoshawn\nRoxane\nRoxann\nRusty\nRyan\nSandie\nSavina\nScarlet\nSharie\nShasta\nShawndra\nShayla\nShilo\nShyla\nSima\nSimona\nSky\nSommer\nStephen\nTammra\nTandra\nTangela\nTaryn\nTawnia\nTiffiney\nTish\nTodd\nTorri\nTorrie\nTreena\nTrini\nTrudi\nVerenice\nVida\nVonda\nWindi\nWinona\nYanira\nYecenia\nZina\nZonia\nAidee\nAlaina\nAlfreda\nAlishia\nAlyce\nAmada\nAnamaria\nAnastacia\nAndre\nAngeles\nAnglea\nAnisa\nAnjeanette\nAnnissa\nAriane\nArianne\nArleen\nAstrid\nAugust\nAyesha\nBabette\nBarbie\nBelia\nBeronica\nBessie\nBeverley\nCarlos\nCaron\nCasie\nCassidy\nCathi\nChandrika\nCharline\nCherice\nCherri\nCheryle\nCorena\nCozette\nCristie\nCyndy\nDanae\nDavette\nDawana\nDeangela\nDebbi\nDebby\nDede\nDeeann\nDeeanna\nDelena\nDelila\nDeloris\nDemetrius\nDenisha\nDennis\nDesirae\nDiedre\nDonita\nDonya\nDulce\nEboni\nEddie\nElesha\nEllie\nEmiko\nEmilie\nErmelinda\nErnesto\nEstee\nEugenie\nEulalia\nFaustina\nFelipa\nFlorinda\nFrancisco\nFrank\nFreya\nGale\nGenelle\nGennifer\nGerri\nGracie\nGregory\nHarmony\nHector\nHermelinda\nHolley\nHoney\nHortensia\nIlona\nIsadora\nJacie\nJacinta\nJackeline\nJacki\nJacque\nJacquelynn\nJamee\nJamillah\nJanessa\nJanina\nJeanelle\nJennifier\nJennine\nJodee\nJolynn\nJulieann\nKacie\nKandace\nKarli\nKarmen\nKarolyn\nKarrin\nKathryne\nKayla\nKaylene\nKeisa\nKeith\nKellye\nKerstin\nKianga\nKristan\nKristel\nKristiana\nLa\nLacy\nLadawn\nLashawnda\nLashon\nLashun\nLatrece\nLaverne\nLavette\nLavina\nLeigha\nLeola\nLetty\nLinnea\nLorelei\nLorina\nLorri\nLuann\nLuanne\nLynelle\nMachelle\nMadeleine\nMadonna\nMai\nMandi\nManuel\nManya\nMaren\nMaribelle\nMarietta\nMarika\nMariko\nMarisella\nMarlys\nMarne\nMarsi\nMarva\nMarybeth\nMaryhelen\nMelaine\nMesha\nMica\nMicah\nMichaelle\nMignon\nMika\nMillie\nMyriam\nNelida\nNettie\nNiccole\nNicky\nNiesha\nNikita\nNneka\nPatrina\nPrescilla\nRaeann\nRaelene\nRaena\nRafaela\nRaguel\nRainbow\nRandy\nRanee\nRashelle\nRaychelle\nRebbecca\nRenea\nRhodora\nRikki\nRomelia\nRonette\nRosalee\nRoselia\nRoselle\nRuthann\nSabra\nSallie\nSammi\nSarai\nSebrina\nShae\nShameka\nShanta\nSharise\nSharonda\nShawndee\nShawntay\nShereen\nShiree\nShirlene\nShontae\nShonte\nShree\nSina\nSirena\nSteffany\nSusy\nTamasha\nTammara\nTamy\nTaneisha\nTatiana\nTavia\nTeena\nTereasa\nTesha\nThalia\nTiesha\nTira\nTonette\nToshia\nTravis\nTrishia\nTwila\nValency\nVelvet\nVenessa\nVirna\nYasmin\nZena\nZinnia\nZulma\nJennifer\nMichelle\nLisa\nMaria\nKimberly\nHeather\nAmy\nMelissa\nChristina\nStephanie\nNicole\nElizabeth\nRebecca\nJulie\nVeronica\nCynthia\nShannon\nLaura\nAngela\nMonica\nChristine\nPatricia\nSandra\nAndrea\nMary\nJessica\nKelly\nDawn\nKaren\nWendy\nSarah\nDenise\nRachel\nApril\nTina\nTracy\nGina\nMichele\nStacy\nDanielle\nTiffany\nTammy\nLori\nSusan\nTeresa\nCarrie\nDiana\nAlicia\nErin\nTanya\nClaudia\nAnna\nBrandy\nNancy\nBrenda\nTamara\nMelanie\nKatherine\nHeidi\nDeborah\nVictoria\nKristen\nAmanda\nLinda\nStacey\nCrystal\nKathleen\nKristina\nLeticia\nAmber\nCatherine\nSonia\nRenee\nBrandi\nTheresa\nTara\nRobin\nKristin\nMelinda\nAna\nSara\nDana\nYolanda\nErica\nHolly\nRosa\nMonique\nErika\nValerie\nBarbara\nSuzanne\nPamela\nSylvia\nMartha\nYvonne\nJill\nGloria\nCheryl\nLeslie\nCindy\nDeanna\nJamie\nEmily\nJacqueline\nVanessa\nRegina\nSharon\nNorma\nDiane\nAngelica\nLorena\nNatalie\nYvette\nDonna\nShawna\nTonya\nChristy\nGuadalupe\nDebra\nMisty\nSamantha\nAnn\nRhonda\nShelly\nAllison\nAimee\nLaurie\nAnne\nIrene\nKristine\nJenny\nKrista\nPaula\nJulia\nSheila\nMargaret\nRaquel\nAdriana\nKatrina\nCarmen\nKristi\nCarolyn\nSherry\nTraci\nJanet\nKathryn\nJeanette\nCarol\nMegan\nGabriela\nShelley\nTricia\nAlma\nBridget\nLeah\nCarla\nAlison\nJoanna\nVirginia\nAnnette\nAnita\nNatasha\nRobyn\nJodi\nSusana\nAngelina\nSheri\nColleen\nTrina\nBlanca\nMarie\nRuth\nConnie\nCecilia\nCristina\nDesiree\nBonnie\nJoy\nKari\nLorraine\nMarisa\nKathy\nMolly\nTracey\nFelicia\nMargarita\nSabrina\nMaribel\nSonya\nIrma\nKim\nKristy\nRose\nJuanita\nRachelle\nRita\nRuby\nTami\nCharlene\nNichole\nRochelle\nEsther\nCassandra\nEva\nCaroline\nElisa\nHelen\nKeri\nKelli\nKerry\nElaine\nKimberley\nAraceli\nStacie\nJoanne\nKara\nTerri\nBelinda\nDarlene\nAlice\nKristie\nToni\nAlisa\nJody\nSilvia\nLynn\nSally\nElena\nFrances\nNaomi\nRachael\nDebbie\nJoyce\nKellie\nMaricela\nMarisol\nTracie\nAlexandra\nCheri\nKarla\nAdrienne\nKirsten\nTrisha\nChristie\nRoberta\nPriscilla\nRosemary\nAntoinette\nJanice\nJudith\nDina\nSherri\nAngel\nArlene\nOlga\nSophia\nBeth\nCandice\nJenifer\nJennie\nMelody\nBecky\nLydia\nNikki\nShirley\nRamona\nStefanie\nCeleste\nIsabel\nKendra\nStaci\nSandy\nCandace\nGriselda\nJean\nDolores\nGretchen\nKatina\nMeredith\nBrooke\nEvelyn\nTasha\nNora\nShelby\nCharlotte\nKerri\nRoxanne\nShana\nShawn\nEileen\nJudy\nNina\nTanisha\nBernadette\nCathy\nEsmeralda\nJoann\nYesenia\nAngelique\nBertha\nCorina\nGrace\nOlivia\nBeverly\nKelley\nChrista\nDena\nLatasha\nMaureen\nLara\nAudrey\nBrandie\nCharity\nJeannette\nLiza\nVicki\nMarlene\nRebekah\nShauna\nElsa\nHilda\nMarina\nMindy\nMiriam\nSonja\nAngie\nCasey\nJosephine\nAmelia\nCarolina\nConsuelo\nEricka\nJackie\nLynette\nMarcella\nRocio\nCamille\nCherie\nEllen\nGraciela\nJanelle\nKatie\nTania\nDelia\nGinger\nJenna\nLoretta\nMarcia\nMarla\nTeri\nLilia\nNoemi\nPauline\nShanna\nTammie\nVivian\nCelia\nKarin\nLucia\nCourtney\nGeorgina\nJanine\nKeisha\nLauren\nSerena\nBetty\nLourdes\nMarisela\nSheryl\nChristi\nJosefina\nLillian\nLuz\nRene\nTisha\nWendi\nCara\nChandra\nJeanne\nAlejandra\nBeatriz\nKenya\nElisabeth\nJeannie\nKimberlee\nSummer\nAmie\nDeana\nGenevieve\nLena\nLiliana\nPeggy\nImelda\nJodie\nAntonia\nJana\nShari\nDianna\nDora\nMarissa\nAurora\nEdith\nKarina\nCarey\nMarilyn\nTonia\nBobbie\nGail\nJane\nJeannine\nJohanna\nLupe\nMarci\nMia\nPenny\nAlisha\nAlyssa\nElva\nJuana\nMarsha\nMarta\nTerry\nAlexis\nBethany\nElvia\nIngrid\nMelisa\nAshley\nCari\nDorothy\nFaith\nHilary\nJeanine\nLeanne\nRosario\nCandy\nEsperanza\nJanette\nRosie\nAlethea\nKarrie\nLaurel\nTabitha\nTammi\nFrancisca\nLatonya\nLesley\nBillie\nEmma\nEstela\nHope\nRonda\nSusanne\nSuzette\nCorinne\nLeann\nMichael\nMona\nTerra\nAthena\nChelsea\nGabrielle\nHannah\nLea\nMaryann\nSusie\nVickie\nClaire\nDeanne\nIris\nAutumn\nBeatrice\nCatina\nFrancine\nTawnya\nVicky\nBridgette\nJuliet\nLatanya\nLora\nLucy\nMyra\nNoelle\nAbigail\nCorinna\nEstella\nJacquelyn\nKaryn\nLorie\nMagdalena\nMarianne\nMeghan\nMireya\nBernice\nDarcy\nDionne\nElise\nMalinda\nMarcie\nPaige\nRosalinda\nSasha\nSusanna\nTamika\nTamra\nGwendolyn\nLakeisha\nLakisha\nMaya\nMinerva\nPatrice\nStella\nTera\nAlissa\nAllyson\nAudra\nCathleen\nDeena\nElvira\nMarcela\nMarjorie\nUrsula\nAlana\nCelina\nJami\nJulianne\nMercedes\nRena\nSofia\nAida\nAmalia\nBianca\nCecelia\nJames\nLeigh\nLynda\nMarcy\nRebeca\nSherrie\nTracee\nDarla\nEleanor\nGena\nJason\nJoan\nKasey\nMarlo\nNadine\nRosalie\nCharmaine\nJessie\nJocelyn\nJuliana\nLatisha\nLeilani\nMaritza\nMayra\nPaulette\nAngelita\nDaisy\nDanette\nFrancesca\nHillary\nIsela\nJanel\nJanell\nJasmine\nJo\nJosie\nJulissa\nJustine\nLatrice\nLee\nLouise\nSocorro\nWanda\nAdela\nCaryn\nClara\nDoreen\nLeanna\nLidia\nMaisha\nMari\nMirella\nMisti\nBobbi\nCorey\nEdna\nGlenda\nShellie\nSuzanna\nValarie\nAmi\nAracely\nConstance\nDianne\nKerrie\nLadonna\nMirna\nPearl\nRosanna\nShanda\nSheree\nXochitl\nDavina\nDoris\nEvangelina\nJune\nKarie\nKate\nMandy\nNanette\nRosalva\nRosio\nSunshine\nTessa\nAnnie\nBridgett\nCarissa\nCarly\nChanda\nCory\nFabiola\nFatima\nGenea\nGeorgia\nIda\nJaime\nJanna\nJolene\nKrystal\nLana\nMaggie\nMariana\nOfelia\nSelena\nSimone\nAisha\nCatalina\nConcepcion\nCorrina\nEliza\nJaqueline\nJeri\nMargie\nMargo\nMariah\nMonika\nNatalia\nPoppy\nRosemarie\nSandi\nShannan\nShanon\nTameka\nTia\nVenus\nAileen\nBrandee\nCarie\nCassie\nDelilah\nEugenia\nGladys\nKatharine\nLashawn\nLily\nLucinda\nLynnette\nMara\nMarion\nMarnie\nPatty\nRandi\nShane\nVera\nAnissa\nCasandra\nCatrina\nChristian\nChristopher\nChrystal\nDaphne\nDavid\nDominique\nFlorence\nJosette\nKori\nLeila\nLynne\nMiranda\nNoel\nPenelope\nPerla\nReina\nRosalba\nAlexandria\nCori\nDara\nDeann\nEloisa\nGayle\nGricelda\nIvonne\nIvy\nKisha\nLina\nLorrie\nMyrna\nRichelle\nRoxanna\nShelli\nWindy\nYadira\nBuffy\nCandida\nCaren\nClarissa\nDanelle\nJanie\nJuli\nKristal\nLatoya\nLeeann\nLisette\nMalissa\nRobert\nTosha\nVioleta\nAnabel\nAnel\nBetsy\nChantel\nChastity\nCher\nCristy\nDeirdre\nDelores\nKirstin\nLarissa\nLetitia\nNichol\nTabatha\nAdrian\nAdrianne\nAlia\nAlycia\nAnastasia\nBriana\nColette\nCorrie\nDenice\nDusty\nElia\nFrancis\nGabriella\nJenni\nJuan\nJuliette\nJustina\nKaty\nLayla\nLeona\nLizette\nLorna\nMarian\nMartina\nRenae\nRosanne\nRoseann\nShelia\nStacia\nTerrie\nTherese\nTrudy\nAnnmarie\nAubrey\nBrigitte\nChris\nCicely\nCorrine\nDaniel\nDaniela\nDaniella\nDayna\nEve\nHollie\nInez\nJeana\nJena\nJoni\nKarri\nLakesha\nLia\nLuisa\nMichell\nRosalia\nSue\nTamera\nTonja\nTrista\nAlyson\nAngeline\nAnnamaria\nAnthony\nAntionette\nAyanna\nBrigette\nCallie\nCameron\nCarina\nChristal\nChristel\nCindi\nCora\nElissa\nEunice\nJamila\nJaneen\nJannette\nJohn\nJose\nJulianna\nKami\nKesha\nKris\nLashonda\nLila\nMarylou\nMelodie\nMitzi\nReyna\nRosaura\nRoxana\nSaundra\nStefani\nStephenie\nSunny\nThelma\nTiffani\nTyra\nValorie\nAlina\nAndria\nAnitra\nAnnemarie\nBelen\nBrittany\nClaudine\nCrista\nDebora\nDeserie\nEbony\nEvette\nGeraldine\nJan\nJanis\nJesus\nKiersten\nLauri\nLilly\nLindsay\nLucretia\nMarivel\nMaxine\nPilar\nRichard\nShantel\nSierra\nSondra\nTamar\nTrena\nVikki\nAdina\nAlysia\nAmparo\nAnjanette\nAnnamarie\nArcelia\nCarole\nCary\nCherise\nDalila\nDarci\nDarcie\nDella\nElsie\nErnestina\nFanny\nGeorgette\nGuillermina\nJeanie\nKathrine\nLeslee\nLetisia\nLucille\nManuela\nMiesha\nRaina\nRayna\nSheena\nSherie\nValentina\nAdrianna\nAlanna\nAnnabelle\nArmida\nBerta\nBrook\nCarin\nCathryn\nChanel\nDalia\nDani\nDelfina\nDemetria\nElisha\nFlor\nFlora\nGeneva\nGillian\nIvette\nJayme\nJulieta\nMaricruz\nMarlena\nMyesha\nNicki\nNicol\nPetra\nSelina\nShawnna\nShonda\nStarla\nTamiko\nTana\nAlthea\nAmerica\nAngelic\nAnnalisa\nBrian\nCarmela\nCarmelita\nCollette\nCristi\nCristine\nCyndi\nDee\nDori\nElaina\nElida\nEmilia\nFawn\nGiselle\nHelene\nJerri\nJolie\nJonna\nKarena\nKimberlie\nKyra\nLaticia\nLawanda\nLeonor\nLiz\nLorri\nLucila\nLupita\nMaia\nMarni\nMay\nMercy\nMicaela\nMindi\nMorgan\nMyisha\nNellie\nPiper\nRacheal\nShani\nShara\nShawnee\nSoledad\nTiffanie\nValeria\nViviana\nAsia\nBlythe\nBree\nCandi\nCecily\nCharleen\nClare\nDeidre\nDestiny\nDevon\nDolly\nHerlinda\nHortencia\nJeni\nJoey\nJohnna\nJoleen\nKarey\nKira\nLanette\nLani\nLatosha\nLilian\nLouisa\nMadeline\nMagda\nNelly\nNichelle\nNicola\nNiki\nNikole\nPatience\nRosana\nSharron\nStacee\nSusannah\nTisa\nToby\nWhitney\nWilliam\nZoe\nAnika\nAntonette\nAstrid\nBambi\nBrenna\nBritt\nCandelaria\nCandie\nCarlene\nCharissa\nCherry\nCheyenne\nCristin\nCruz\nDanica\nDannielle\nDelicia\nDona\nDorene\nElla\nErlinda\nEthel\nEvangeline\nFelecia\nGabriel\nGracie\nGreta\nHaydee\nHelena\nHolli\nIliana\nJade\nJenniffer\nJoi\nKindra\nLashanda\nLashon\nLatonia\nLela\nLiane\nLola\nLolita\nMark\nMaura\nMelonie\nMimi\nNadia\nNathalie\nRoslyn\nSabina\nSadie\nSarina\nSelene\nShawnda\nShilo\nShiloh\nSteven\nSusy\nTamatha\nTamisha\nTanesha\nViolet\nWillow\nZulema\nAbby\nAlberta\nAli\nAlyce\nAnalia\nArgelia\nAurelia\nAva\nBelia\nCaitlin\nCamilla\nCaprice\nCarri\nCatharine\nCelena\nCherish\nChristiana\nCinthia\nDarleen\nDawna\nDeidra\nDonald\nDonielle\nEden\nElana\nEric\nGeri\nGiovanna\nJeanna\nJene\nJenelle\nJerry\nJoelle\nJulisa\nKandi\nKarna\nKevin\nLatrina\nLavonne\nLenore\nLindsey\nLindy\nLinnea\nLizabeth\nMalaika\nMalia\nMariela\nMichaela\nNicolle\nNoreen\nOralia\nPatrica\nPhaedra\nPolly\nRacquel\nRana\nRoxann\nScott\nShonna\nSteffanie\nStephaine\nStormy\nSydney\nTanja\nTreva\nTrinity\nTuesday\nYasmin\nAlisia\nAllegra\nAraseli\nAura\nBenita\nBeronica\nBettina\nCharisse\nCheree\nClaudette\nDaniele\nDanyel\nDennise\nDyan\nElda\nEmilie\nEvonne\nFaye\nGenoveva\nHana\nHazel\nIlene\nIndia\nJanene\nJasmin\nJewel\nJonathan\nJonelle\nJuliann\nKacey\nKandice\nKandy\nKarma\nKeshia\nLarisa\nLatricia\nLeyla\nLiana\nLibby\nLizbeth\nLois\nLorene\nMarianna\nMellisa\nMistie\nMollie\nNena\nNyree\nPortia\nRachele\nRachell\nRae\nRafaela\nRenata\nRhea\nRobbin\nRona\nRosalind\nRosamaria\nSacha\nSalina\nSeana\nShameka\nSharee\nShay\nShea\nShondra\nShoshana\nStar\nTawana\nTiffiny\nTrinidad\nYanira\nAda\nAdelina\nAlecia\nAlesha\nAleta\nAnamaria\nAngelia\nAnnika\nApryl\nAshlee\nAyesha\nAzucena\nBarbra\nBritta\nBrittney\nCambria\nCharla\nCharles\nChasity\nChere\nChristin\nColeen\nDanna\nDannette\nDawne\nEdward\nElizabet\nEnedina\nErnestine\nFelicity\nFranchesca\nFreda\nGinny\nGisela\nHaley\nHayley\nHermelinda\nIleana\nIsabelle\nJanae\nJeffrey\nJenea\nJenee\nJesse\nJillian\nJolynn\nJoseph\nJoshua\nJulee\nJulene\nKali\nKasandra\nKay\nKellee\nKendall\nKia\nKimiko\nKrishna\nLarhonda\nLaronda\nLeonora\nLesa\nLetisha\nLuana\nMachelle\nMalisa\nMarcelina\nMariaelena\nMarika\nMariza\nMarti\nMelina\nMiki\nMillie\nMisha\nMissy\nMoriah\nNicolette\nNoelia\nNydia\nPatsy\nPaul\nPetrina\nPhyllis\nPrecious\nRisa\nRosalina\nRoselyn\nRyan\nShae\nShalonda\nSharla\nSharlene\nShiela\nSkye\nSophie\nSpring\nStephani\nSulema\nSuzie\nTamie\nTanika\nTaunya\nTawny\nTedra\nThea\nTobie\nTori\nTressa\nTwyla\nValencia\nVelvet\nVenessa\nViola\nYessenia\nZulma\nAdria\nAdriane\nAide\nAlba\nAlbert\nAlexa\nAlexia\nAlishia\nAlondra\nAlysha\nAmee\nAundrea\nBrande\nBrianna\nCami\nCarisa\nCarlotta\nCasie\nChantelle\nCharis\nCharise\nChekesha\nCherilyn\nChina\nChristen\nCinnamon\nCoral\nCoreen\nCorie\nCristie\nDania\nDanyelle\nDaria\nDavida\nDemetra\nDevona\nDiedra\nDorian\nEna\nErma\nFarah\nFrankie\nGigi\nHerminia\nInes\nJacquelin\nJacquline\nJaimie\nJazmin\nJenell\nJennefer\nJennette\nJesica\nJosephina\nKamie\nKarissa\nKathi\nKimber\nKimberely\nLacey\nLakenya\nLakeshia\nLanita\nLaureen\nLaverne\nLeandra\nLenora\nLissa\nLissette\nLizeth\nLoraine\nMaile\nMandi\nMario\nMaryellen\nMatilda\nMatthew\nMellissa\nMelony\nMendy\nMildred\nMillicent\nNell\nNeva\nOtilia\nPatti\nPaulina\nPia\nPricilla\nRandee\nRashell\nRoseanna\nRoseanne\nSerina\nShanan\nShanta\nShanti\nShawana\nShayla\nShereen\nShona\nStarr\nSusann\nSuzan\nSybil\nTalitha\nTenisha\nTerese\nThomas\nThomasina\nTobi\nTonisha\nVelia\nWendie\nWinona\nYolonda\nAdele\nAdelita\nAlejandrina\nAlena\nAlessandra\nAliza\nAmoreena\nAnalisa\nAngelena\nArianna\nAriel\nBabette\nBonny\nBrandon\nBrigid\nCameo\nCassaundra\nCelestine\nCeline\nChantal\nChloe\nCristal\nDaina\nDanae\nDanell\nDarice\nDione\nDulce\nEdie\nElba\nElodia\nErendira\nEster\nEvelia\nFelisa\nFiona\nGale\nGia\nGianna\nGregory\nGwen\nHallie\nHanna\nIna\nIsaura\nJanay\nJanean\nJayne\nJenette\nJenine\nJennell\nJovita\nJuliane\nKamilah\nKarly\nKayla\nKeysha\nKiesha\nKrissy\nKristan\nKyla\nKyndra\nLainie\nLaquita\nLashawnda\nLashunda\nLeana\nLinette\nLonnie\nLuciana\nMabel\nMae\nMagaly\nMaricella\nMeagan\nMechelle\nMelani\nMelany\nMelia\nMeridith\nMila\nMoira\nNecole\nNidia\nNisha\nNita\nPamala\nPaola\nPatrina\nPatrisia\nPhoebe\nPrudence\nRaelene\nRandy\nRashida\nRaymond\nRegan\nRenita\nRobynn\nRosita\nRowena\nRoxie\nRuthann\nSagrario\nSandee\nSean\nSharonda\nShayna\nShayne\nShellee\nShonte\nSommer\nStephany\nTamala\nTamela\nTeresita\nTomika\nTommie\nTrudi\nTunisia\nVerna\nWillie\nWindi\nYevette\nZoila\nAbbie\nAgueda\nAlaina\nAltagracia\nAlvina\nAmiee\nAmity\nAnabell\nAndra\nAnette\nAnjelica\nAra\nArianne\nArleen\nAugustina\nBeatris\nBella\nBethanie\nBobby\nBrett\nBronwyn\nBryan\nBrynn\nBuffie\nCamisha\nCarl\nCarlota\nCarmel\nCassondra\nCecile\nChad\nCherene\nCherrie\nChrissy\nCinda\nClarice\nConsuela\nCrissy\nCrysta\nCybil\nDalene\nDanita\nDannell\nDedra\nDeeanna\nDelila\nDeloris\nDemetrius\nDenna\nDeshawn\nDiahann\nDinah\nDionna\nDixie\nDorinda\nDustie\nEcho\nElidia\nEloise\nElyse\nEmber\nEstelle\nFaviola\nFelica\nFelice\nGayla\nGenny\nGeorgiana\nGeorgianna\nGermaine\nGerri\nGilda\nGisele\nGlenna\nGlory\nGoldie\nHarmony\nHoney\nHortensia\nIlda\nInga\nIvana\nJacki\nJamey\nJamilah\nJamillah\nJanea\nJanett\nJavier\nJaymi\nJeanelle\nJeanene\nJeniffer\nJennelle\nJeremy\nJesenia\nJewell\nJina\nJodee\nJohnnie\nJulian\nJustin\nKai\nKarolyn\nKasie\nKassandra\nKatheryn\nKelsey\nKenneth\nKhristina\nKitty\nKristel\nKristian\nKyle\nKymberly\nLaila\nLashaun\nLatesha\nLavon\nLesli\nLillie\nLivia\nLorina\nLorinda\nLoukisha\nMadeleine\nMadelyn\nMadonna\nMalina\nMarilynn\nMarleen\nMarty\nMaryanne\nMarybel\nMeadow\nMelba\nMelita\nMeri\nMichaelle\nMichal\nMichel\nMichi\nMickie\nMicole\nMilissa\nMinda\nMonalisa\nMylene\nMyriam\nNannette\nNatacha\nNatascha\nNereida\nNereyda\nNicolasa\nNissa\nOctavia\nPam\nRamon\nRani\nRebbecca\nRochell\nRomana\nRonald\nRosalyn\nRoxane\nRubi\nRudy\nSabra\nSacheen\nSamia\nSantina\nSarita\nSasheen\nShala\nShalene\nShanell\nShantell\nShantelle\nShasta\nShaun\nShaunna\nShelbi\nSherrell\nShontel\nShyla\nSian\nStarlene\nSteffani\nTamyra\nTanasha\nTandra\nTayna\nTerisa\nTifany\nTinisha\nTristin\nTwila\nVelma\nZena\nZenia\nAaron\nAdelaida\nAgnes\nAime\nAlayna\nAlethia\nAlida\nAlix\nAmmie\nAnanda\nAndreana\nAngella\nAnglea\nAnisa\nAnjeanette\nAnnabell\nAnnalee\nAnya\nAria\nAriana\nArline\nArmando\nAsha\nAshanti\nAyana\nBari\nBecki\nBerenice\nBessie\nBethel\nBlanche\nBonita\nBrea\nBreanna\nBrita\nBritney\nBronwen\nBryn\nCammie\nCammy\nCarlee\nCarley\nCarli\nCarlie\nCarlyn\nCathrine\nCelestina\nCesilia\nChantell\nCharlette\nCherice\nChristiane\nChristol\nClaribel\nClarisa\nCleo\nCriselda\nDacia\nDale\nDamaris\nDanetta\nDanika\nDanyell\nDawnelle\nDeeann\nDeedee\nDelphine\nDemitra\nDenita\nDenyse\nDeseree\nDesirae\nDesirie\nDinora\nDiona\nDusti\nDustin\nEddie\nEdelmira\nElicia\nElisabet\nElke\nEllie\nEmelia\nEnid\nErmelinda\nErrin\nFelisha\nFernando\nFlorentina\nFrancisco\nFrank\nGenie\nGerald\nGrabiela\nGregoria\nGypsy\nHenrietta\nHilaria\nHolley\nIdalia\nIlona\nImani\nIona\nJaclyn\nJamee\nJammie\nJanella\nJaney\nJanina\nJannet\nJenean\nJenene\nJennafer\nJenne\nJenney\nJennine\nJesseca\nJocelyne\nJoe\nJoetta\nJolyn\nJoselyn\nJulieann\nKaci\nKacie\nKamisha\nKanika\nKanisha\nKasha\nKatrice\nKecia\nKeely\nKeiko\nKenyatta\nKeren\nKerie\nKerstin\nKirstie\nKorie\nKrisinda\nKristyn\nLakeysha\nLakiesha\nLanetta\nLashawna\nLavina\nLeena\nLiduvina\nLigia\nLonna\nLorelei\nLoren\nLorien\nLorretta\nLorriane\nLove\nLyn\nLynell\nMagnolia\nMalena\nManuel\nMarcelle\nMaren\nMarlen\nMarlies\nMarquita\nMarysol\nMatilde\nMayte\nMelodee\nMendi\nMerry\nMichaele\nMicki\nMilinda\nMina\nMischa\nMishelle\nMuriel\nNedra\nNeysa\nNickole\nNilda\nNohemi\nNonnie\nNyla\nOla\nPage\nPaloma\nPascha\nPebbles\nRabecca\nRadiah\nRainbow\nRanda\nRashelle\nRaylene\nRebecka\nReva\nRhoda\nRicki\nRima\nRobbie\nRobbyn\nRonnie\nRosaisela\nRosetta\nRoshell\nSalena\nSamara\nSamuel\nSeptember\nSequoia\nSerenity\nShaina\nShanee\nShanel\nShareen\nSharese\nSharleen\nShawnette\nShawntel\nShelina\nShera\nSherron\nShontell\nSimona\nSiobhan\nSoraya\nStephen\nSumiko\nSundae\nSuzana\nSuzy\nSynthia\nTaj\nTakisha\nTalya\nTamanika\nTameca\nTamieka\nTammara\nTamura\nTarah\nTaryn\nTatanisha\nTatum\nTausha\nTavia\nTawna\nTaya\nTenaya\nTeressa\nTereza\nTess\nTiffiney\nTiffini\nTinamarie\nTobey\nTodd\nToi\nTomeka\nTosca\nTrini\nTristen\nValisa\nVeroncia\nVianey\nVickey\nVonetta\nWendee\nWinnie\nXochilt\nYecenia\nYumi\nZaida\nZina\nJennifer\nMichelle\nHeather\nMaria\nAmy\nLisa\nKimberly\nMelissa\nChristina\nElizabeth\nStephanie\nAngela\nVeronica\nNicole\nRebecca\nJulie\nJessica\nShannon\nLaura\nMonica\nPatricia\nCynthia\nSandra\nSarah\nChristine\nAndrea\nKelly\nRachel\nApril\nMary\nWendy\nErin\nTiffany\nTina\nDawn\nDanielle\nDenise\nKaren\nTracy\nClaudia\nGina\nStacy\nDiana\nSusan\nAmber\nCarrie\nTeresa\nAlicia\nNancy\nHeidi\nTanya\nMichele\nAnna\nTamara\nLori\nAmanda\nKristen\nSara\nKatherine\nMelanie\nBrenda\nDeborah\nLinda\nTammy\nErica\nLeticia\nAna\nSonia\nBrandy\nRenee\nStacey\nCrystal\nValerie\nAngelica\nCatherine\nEmily\nKristin\nKristina\nDana\nVictoria\nVanessa\nHolly\nKathleen\nMartha\nTara\nLeslie\nTheresa\nJacqueline\nRosa\nYolanda\nRobin\nCindy\nNorma\nMelinda\nBrandi\nJill\nDeanna\nLorena\nJamie\nYvonne\nMisty\nErika\nSylvia\nNatalie\nShawna\nBarbara\nRegina\nGloria\nCheryl\nSuzanne\nMonique\nKathryn\nMegan\nSharon\nChristy\nPamela\nDonna\nGuadalupe\nGabriela\nYvette\nDebra\nTonya\nCarmen\nDiane\nIrene\nJoy\nJenny\nAllison\nJulia\nMargaret\nAnn\nSamantha\nJanet\nLeah\nShelly\nKristi\nPaula\nAlison\nCarolyn\nCourtney\nAimee\nKristine\nAdriana\nAnne\nRaquel\nSheila\nKatrina\nAngelina\nCarla\nKari\nAnita\nCristina\nVirginia\nAlma\nJoanna\nNatasha\nMaribel\nRhonda\nAnnette\nJeanette\nLaurie\nCarol\nJodi\nSherry\nDesiree\nMarie\nSilvia\nRuth\nCecilia\nKristy\nSusana\nAraceli\nBlanca\nColleen\nKara\nRobyn\nSheri\nChristie\nJuanita\nKrista\nFelicia\nTraci\nShelley\nJoanne\nPriscilla\nEva\nKristie\nNichole\nTricia\nHelen\nSabrina\nCassandra\nStacie\nMargarita\nBonnie\nKendra\nIrma\nKim\nDarlene\nElaine\nTracey\nBridget\nLorraine\nTami\nJody\nRochelle\nRuby\nCharity\nEsther\nJolene\nLydia\nMarisol\nSonya\nConnie\nEsmeralda\nMarisa\nMolly\nTrisha\nIsabel\nJudith\nMaricela\nJenifer\nCharlene\nElena\nTrina\nKatie\nCaroline\nElisa\nKarla\nAngie\nJoann\nLuz\nRachael\nKathy\nAdrienne\nKirsten\nMelody\nOlivia\nTasha\nRose\nCandace\nAlice\nBrooke\nDebbie\nNaomi\nRita\nCharlotte\nFrances\nKellie\nMarlene\nAudrey\nCeleste\nRachelle\nTerri\nHilda\nKerri\nSally\nArlene\nDina\nKimberley\nRoxanne\nShawn\nStefanie\nAlexandra\nKelli\nKerry\nRebekah\nToni\nAntoinette\nEileen\nAshley\nShauna\nAngel\nOlga\nRocio\nYesenia\nBernadette\nBrandie\nKeri\nSherri\nKelley\nAutumn\nBeth\nJanelle\nNora\nRosemary\nJanice\nRoberta\nTanisha\nBelinda\nLynn\nShirley\nCandice\nGretchen\nJennie\nLauren\nTeri\nAngelique\nJeannette\nJoyce\nStaci\nCorina\nTania\nAlisa\nKeisha\nLatasha\nLilia\nMindy\nShana\nBecky\nEvelyn\nMarina\nNina\nRamona\nSandy\nSummer\nBeatriz\nBertha\nEdith\nCheri\nDelia\nDena\nJosephine\nGrace\nNakia\nVicki\nMeredith\nShelby\nTracie\nGinger\nJudy\nMarisela\nAlejandra\nCasey\nMiranda\nNikki\nAmelia\nCara\nJeannie\nLena\nSophia\nCathy\nGraciela\nElisabeth\nElsa\nGeorgina\nMaureen\nDianna\nDolores\nJana\nLara\nMarissa\nVivian\nBethany\nChristi\nJeanne\nLoretta\nSonja\nAntonia\nBeverly\nEmma\nLiliana\nAlexis\nCherie\nChrista\nEricka\nLillian\nGriselda\nHilary\nMarcia\nWendi\nAlisha\nLourdes\nMiriam\nSheryl\nCelia\nChelsea\nMarsha\nJenna\nJuana\nAmie\nJane\nMarcella\nPauline\nTisha\nCarolina\nDorothy\nLynette\nMia\nAurora\nBetty\nConsuelo\nJean\nHope\nJackie\nPeggy\nBeatrice\nCari\nNoemi\nSerena\nSunshine\nEllen\nElvia\nImelda\nJosefina\nKarin\nMarianne\nChandra\nLatoya\nMyrna\nAudra\nKarina\nMichael\nMirna\nEsperanza\nDeana\nElvira\nGabrielle\nTabitha\nTammie\nJodie\nRene\nBobbie\nClara\nDora\nEstela\nJeanine\nKenya\nLiza\nMarla\nMayra\nMelisa\nTonia\nKimberlee\nLeigh\nLesley\nMarilyn\nMarta\nSasha\nShanna\nCarey\nIsela\nJasmine\nJocelyn\nLakeisha\nLakisha\nLeanne\nRosalinda\nSofia\nCarly\nCatalina\nDarcy\nEvangelina\nFrancine\nGail\nJacquelyn\nJoan\nLucia\nMona\nPenny\nSusanna\nJohanna\nLora\nLucy\nMarci\nMaryann\nTamra\nAbigail\nGenevieve\nGlenda\nIngrid\nLea\nLupe\nGwendolyn\nHillary\nJanine\nLaurel\nMarcela\nNadine\nShari\nCandy\nFrancisca\nGladys\nJuliet\nRosario\nStella\nTerra\nCamille\nClaire\nCorinne\nEbony\nTera\nAlissa\nAthena\nBernice\nJanette\nLatanya\nLatonya\nMaya\nVickie\nAlyssa\nAngelita\nCherish\nJune\nMireya\nTamika\nAllyson\nLatisha\nSocorro\nAracely\nDominique\nFaith\nJanel\nMaritza\nPaige\nAnabel\nDavina\nJamila\nLana\nLindsay\nLorie\nMaggie\nMercedes\nRobert\nAnastasia\nBillie\nBridgette\nCathleen\nDaisy\nDavid\nGabriella\nLatrice\nMalinda\nRonda\nSusie\nCori\nDarla\nGena\nJaime\nKatharine\nMarcie\nMarcy\nMeghan\nMyra\nNoelle\nSusanne\nTiffani\nAnnie\nFabiola\nPatrice\nWanda\nXochitl\nCarie\nCorinna\nFrancesca\nIda\nJeri\nJulianne\nLidia\nMagdalena\nMarjorie\nPaulette\nRandi\nRebeca\nBianca\nDanelle\nJason\nKasey\nLucinda\nLynda\nMaisha\nAlana\nLina\nMara\nRosalie\nRosemarie\nSherrie\nWindy\nAileen\nAmi\nCharmaine\nDayna\nDoris\nEdna\nEstella\nHannah\nHollie\nJanell\nNatalia\nRena\nRosalva\nSheree\nBobbi\nDemetria\nElise\nJeannine\nJosie\nKarrie\nKate\nKisha\nLindsey\nMichell\nOfelia\nReyna\nRosalba\nRosio\nVicky\nYadira\nAlyson\nAnnmarie\nChantel\nFatima\nJami\nKrystal\nLeann\nPatty\nTameka\nTerry\nTessa\nAisha\nAlethea\nAnel\nAnitra\nCatrina\nDeanne\nDeena\nJo\nJulissa\nKami\nKaty\nLashawn\nRichelle\nRosanna\nSuzette\nTammi\nTawnya\nAdela\nBrande\nChanda\nChrystal\nClarissa\nDianne\nErnestina\nGricelda\nJena\nJuliana\nKarie\nKaryn\nKori\nMarlo\nSelena\nShanda\nVenessa\nAida\nCorrina\nJaqueline\nJoey\nJustine\nLorrie\nMarian\nRacheal\nTanesha\nAlexandria\nChristen\nEleanor\nGeneva\nGeorgia\nJessie\nKatina\nLakesha\nLeilani\nLily\nMandy\nMariana\nRosalia\nRosie\nSadie\nUrsula\nBelen\nCaren\nCaryn\nCecelia\nCelina\nChristopher\nDionne\nIris\nIvy\nJeana\nJeanie\nKira\nLeanna\nLee\nLorna\nLynnette\nMisti\nPetra\nRoxana\nSuzanna\nAda\nAlexa\nAngelia\nAnjanette\nBrandee\nChastity\nColette\nCorey\nCorrie\nCory\nDeann\nElva\nJanna\nLarissa\nLeila\nLilian\nPenelope\nReina\nShane\nShanon\nSierra\nTamera\nAmalia\nCecily\nConstance\nDanica\nDaniella\nDaphne\nDoreen\nElissa\nEugenia\nEve\nGayle\nGeraldine\nHelena\nLila\nLola\nMariah\nMarni\nMinerva\nPerla\nValarie\nVioleta\nCarissa\nCicely\nDanette\nIvonne\nKerrie\nNellie\nShellie\nSue\nViviana\nAdrianne\nArcelia\nBetsy\nBridgett\nCandida\nCristy\nDara\nDenice\nElaina\nGeorgette\nInez\nJames\nJohn\nJoleen\nKathrine\nMargie\nMarnie\nNoel\nRosana\nSondra\nValeria\nVenus\nVikki\nAlina\nAntionette\nBrenna\nCarri\nJasmin\nLayla\nLiana\nLouise\nMarion\nNanette\nRhoda\nRosaura\nRyan\nSelina\nStefani\nVera\nAngeline\nAnjelica\nAnnemarie\nBerta\nBrittany\nCarin\nChanel\nChristian\nCristine\nDalia\nDawna\nDebora\nDestiny\nElana\nGuillermina\nJaneen\nJanis\nJoni\nLashonda\nLeona\nMalissa\nPatsy\nPhyllis\nShannan\nShawnda\nShonna\nTia\nAlia\nBriana\nBuffy\nCasandra\nChristiana\nConcepcion\nCorrine\nDayanara\nDeirdre\nDelilah\nFaviola\nFlorence\nJenni\nJesse\nJose\nKesha\nLani\nLia\nLuisa\nMalia\nMargo\nMartina\nMeagan\nMicaela\nPearl\nSandi\nShonda\nStephenie\nTobi\nTrista\nTrudy\nZoe\nAdina\nAdria\nAide\nAva\nBree\nCarmela\nCary\nChasity\nColeen\nCortney\nDaniel\nDarcie\nDeidre\nElida\nElisha\nEmilia\nEric\nEunice\nEvette\nFawn\nGillian\nHaydee\nJeanna\nJenelle\nJulianna\nKristal\nLanette\nLeandra\nLela\nLisette\nMarivel\nMaxine\nMiesha\nMirella\nRosalina\nShani\nTabatha\nTamar\nTherese\nTyra\nAndria\nAnnabel\nAnnamarie\nAraseli\nArmida\nAubrey\nCarole\nCherise\nClaudine\nDeidra\nDorian\nElia\nHarmony\nHazel\nHortencia\nJade\nJan\nJanie\nJoelle\nJolie\nKris\nLatosha\nLenora\nManuela\nMarcelina\nMildred\nMonika\nNathalie\nNichelle\nNikole\nPilar\nShea\nShelia\nSimone\nSoledad\nStacia\nTaryn\nTenisha\nWhitney\nAdele\nAdelina\nAdrian\nAdrianna\nAlisia\nAmerica\nAngelic\nAntonette\nCami\nCristin\nDanna\nDelores\nFelecia\nFlor\nFrankie\nJulieta\nJuliette\nLetitia\nLiberty\nLois\nLouisa\nLynne\nMaile\nMarguerite\nMelodie\nMendy\nMichaela\nMyisha\nNelly\nNia\nNicol\nNiki\nNoreen\nRoxanna\nSeana\nShantel\nSharlene\nShawnna\nSkye\nStephani\nThea\nThelma\nViolet\nZulma\nAlecia\nAlena\nAlesha\nAlysia\nArianne\nAyana\nBerenice\nBlythe\nBrook\nCameron\nCarina\nCassie\nChantelle\nCharisse\nCindi\nCinnamon\nCorie\nDaniela\nDevon\nEden\nGinny\nIliana\nJada\nKarena\nKelsey\nLindy\nMabel\nMariza\nMark\nMarylou\nMechelle\nMelonie\nMercy\nMorgan\nNissa\nPolly\nRae\nRenae\nRichard\nSpring\nTamie\nTerrie\nTiffanie\nTori\nValentina\nAkilah\nAlanna\nAlycia\nAmparo\nAndra\nAnnalisa\nBenita\nBeronica\nBrigette\nBrigitte\nCasie\nChristin\nCora\nDanya\nDelfina\nDusty\nHolli\nIna\nIsaura\nJayme\nJuli\nJustina\nKam\nKarri\nKay\nKia\nKimberlie\nLakeshia\nLauri\nLawanda\nLenore\nLeonor\nMaia\nMaira\nMarlena\nMellissa\nMyesha\nNadia\nPoppy\nRashida\nRosalyn\nRoseann\nSalina\nSheena\nStar\nSunny\nTamiko\nTana\nTanika\nTrinidad\nWilliam\nAdelita\nAlejandrina\nAnika\nAsia\nAundrea\nAurelia\nCelestina\nCharissa\nCherilyn\nChris\nChristal\nCoral\nDani\nDannielle\nDee\nDonald\nElda\nElla\nEloisa\nEnedina\nEster\nFlora\nGisela\nIleana\nJanene\nJerri\nJohnna\nKacey\nKandy\nKeely\nKellee\nKirstin\nLadonna\nLashanda\nLillie\nLizbeth\nLorelei\nLuana\nLucila\nLupita\nMari\nMaricruz\nMaryanne\nMaura\nMindi\nMonalisa\nNona\nNova\nRafaela\nRaina\nRhea\nRina\nRosalind\nShalonda\nShandra\nShante\nShelli\nSherie\nShoshana\nStarla\nTanja\nTatanisha\nTeresita\nViola\nYasmin\nZulema\nAletha\nAli\nAnamaria\nAretha\nAriana\nBronwyn\nCarley\nCathryn\nChantal\nCharleen\nChristel\nCinthia\nCristal\nDarleen\nEliza\nElizabet\nElsie\nErlinda\nEstrella\nGigi\nGiselle\nGwen\nHerlinda\nIvette\nJeffrey\nJosette\nJuliane\nKassandra\nKenna\nKevin\nKristan\nLacey\nLatricia\nLeeann\nLesli\nLissa\nLizette\nLoraine\nLorinda\nLorri\nMellisa\nMitzi\nMollie\nNicolle\nNikita\nNoelia\nNola\nNyree\nOralia\nRobbie\nRosanne\nRoxann\nSharron\nShiloh\nStarr\nSteven\nSusannah\nTamisha\nTawana\nTosha\nToya\nValorie\nZoila\nAdriane\nAlba\nAnalia\nAnnabelle\nCandelaria\nCarisa\nCarlene\nCarmel\nCarmelita\nCherry\nChloe\nCristie\nDaniele\nDanita\nDedra\nDelicia\nDella\nDeserie\nDinah\nDori\nEmilie\nEvelia\nFanny\nFrancis\nHarriet\nHayley\nIlda\nIsabelle\nJacinda\nJanae\nJeniffer\nJennefer\nJennette\nJeremy\nJesus\nJewel\nJosephina\nJovita\nKameron\nKimberli\nKindra\nKyle\nLatashia\nLesa\nLeyla\nLiane\nLoren\nLucretia\nLuis\nMagda\nMandi\nMarilu\nMarysol\nMatilde\nMatthew\nMay\nMerry\nMirian\nPatience\nPatti\nPiper\nRachell\nRacquel\nRegan\nRolanda\nRosita\nRoslyn\nSarina\nSeason\nShameka\nShanika\nSharla\nShaunna\nShay\nShiela\nStephany\nTamala\nTomeka\nTracee\nTrinity\nVelia\nVerna\nWillow\nXochilt\nAbby\nAlaina\nAlexia\nAlthea\nAlva\nAlysha\nAmee\nAnastacia\nAnthony\nApryl\nAura\nBarbra\nBobby\nBrian\nBritt\nCaitlin\nCallie\nCandi\nCarleen\nCarlos\nCatharine\nCatina\nCelena\nCheyenne\nCrista\nCristen\nCruz\nDacia\nDanika\nDanyel\nDanyelle\nDaria\nDeeann\nDeedee\nDennise\nDesirae\nDixie\nElicia\nEmmy\nEnriqueta\nErendira\nGabriel\nGiovanna\nGladis\nIesha\nInes\nJamaica\nJeni\nJenniffer\nJillian\nJoi\nJordan\nJoshua\nJoslyn\nKarey\nKarissa\nKarna\nKasandra\nKathi\nKendall\nKimya\nKyla\nLacy\nLarry\nLashon\nLatesha\nLetisia\nLonnie\nLorene\nMadeleine\nMalika\nMargot\nMelony\nMeridith\nMisha\nNannette\nNedra\nNeva\nNicki\nOctavia\nPaola\nPatrisia\nPaul\nRana\nRebecka\nRikki\nRosaisela\nRoseanne\nRosina\nRubi\nSarita\nShanta\nShanti\nShara\nShawana\nSophie\nSuzy\nTakisha\nTamanika\nTamatha\nTamela\nTamica\nTaunya\nTerina\nTomasa\nTomika\nWinnie\nYecenia\nAdelaida\nAlida\nAlyse\nAmiee\nAmina\nAnnamaria\nAnnika\nAntonio\nAugustina\nAyanna\nAyesha\nAzucena\nBonny\nBryna\nCambria\nCarolynn\nChekesha\nChenoa\nCher\nCherice\nClare\nClaudette\nCollette\nCristi\nCyndi\nDahlia\nDalila\nDanyell\nDarci\nDebby\nDenisha\nDorene\nErinn\nErnestine\nErrin\nEryn\nEvangeline\nEvonne\nFelisha\nGia\nGilda\nHaley\nIlene\nImani\nJacquelin\nJaimie\nJazmin\nJeanene\nJenine\nJonathan\nJoycelyn\nJuliann\nJulisa\nKai\nKali\nKandice\nKecia\nKimber\nKimi\nKoren\nKyra\nLanita\nLatonia\nLawana\nLilly\nLorenza\nLuciana\nMalaika\nMargret\nMariela\nMarti\nMelia\nMelina\nMignon\nMilissa\nMistie\nNichol\nNicola\nNicolette\nPrincess\nRachele\nRaelene\nRashelle\nReena\nRicardo\nRowena\nSacheen\nScarlett\nSerina\nSharonda\nShasta\nShawnee\nSherice\nShilo\nShira\nShona\nStacee\nSteffanie\nStephen\nSynthia\nTalisha\nTammara\nTerese\nThomas\nTiffaney\nTobie\nTommie\nTony\nTrena\nTristan\nVictor\nXochil\nYessenia\nAcacia\nAdam\nAlberta\nAlishia\nAndreana\nAndrew\nAnnalee\nAnnetta\nAnya\nArgelia\nAriel\nAudrea\nBecki\nBessie\nBrett\nCamelia\nCameo\nCamilla\nCamisha\nCarlee\nCarmella\nCarmina\nCharis\nCharla\nCharlyn\nCherisse\nChristianne\nClarice\nClover\nCorine\nDamon\nDaniell\nDanny\nDarby\nDarice\nDasha\nDeeanna\nDemetra\nDione\nDulce\nEdelmira\nEthel\nFaye\nFelisa\nGermaine\nGlory\nGracie\nGreta\nHallie\nInger\nJackeline\nJacy\nJanee\nJannette\nJeanetta\nJesica\nJoanie\nJodee\nJolynn\nJonette\nJordana\nJoseph\nJuan\nKacy\nKamilah\nKandi\nKarly\nKarma\nKathie\nKatrena\nKeesha\nKeira\nKeshia\nKiera\nKiersten\nKiesha\nKiley\nKimberely\nKimiko\nKrisha\nKristel\nLakiesha\nLarisa\nLashawnda\nLaureen\nLibra\nLigia\nLinette\nLivia\nLiz\nLizabeth\nMachelle\nMadeline\nMalena\nMalisa\nMaranda\nMariaelena\nMariam\nMaricella\nMattie\nMayte\nMelynda\nMesha\nMika\nMiki\nMillie\nMira\nMiroslava\nNecole\nNickie\nOtilia\nParis\nPatrica\nPeter\nPortia\nRayna\nRenita\nRobbin\nRoni\nRosalee\nRosamaria\nRoseanna\nRuthie\nSage\nSelene\nSeptember\nSerene\nShaleen\nShalene\nShanell\nSharleen\nSherita\nShondra\nShyla\nStephannie\nSulema\nSusy\nSybil\nTalia\nTalitha\nTatum\nTiffiny\nTira\nTressa\nTrini\nVelvet\nVonetta\nYanira\nYolonda\nZaida\nZandra\nAdena\nAlta\nAminah\nAmity\nAnalisa\nAnetra\nAngeles\nAngella\nAni\nAnjeanette\nAnnabell\nArianna\nArin\nArleen\nArlena\nArwen\nAsusena\nBabette\nBambi\nBeatris\nBeckie\nBonita\nBrianna\nBrigid\nCandance\nCarlota\nCarlotta\nChantell\nCharlette\nChelsey\nCherlene\nClarisa\nCriselda\nDamaris\nDanae\nDania\nDawne\nDelana\nDelena\nDelisa\nDevin\nDolly\nDyan\nDyana\nEdie\nElma\nEna\nErik\nErma\nErmelinda\nEydie\nFlorencia\nFranchesca\nGemma\nGenea\nGenoveva\nGeri\nGerri\nGianna\nGypsy\nHerminia\nIlana\nIrasema\nIsa\nJaimee\nJamey\nJenea\nJenette\nJenne\nJesseca\nJewell\nJinny\nJohna\nJolyn\nJonna\nJustin\nKacie\nKamala\nKandace\nKarlee\nKarli\nKatheryn\nKati\nKayce\nKenneth\nKera\nKrishna\nKristiana\nLaila\nLaquita\nLarhonda\nLashanna\nLauna\nLavonne\nLawanna\nLeatrice\nLeola\nLeonora\nLilliana\nLisha\nLissette\nLoni\nLucero\nLus\nMae\nMakisha\nMarcelle\nMario\nMarquita\nMeegan\nMeg\nMendi\nMichal\nMichela\nMiko\nMimi\nMissy\nMyla\nNakisha\nNatalee\nNena\nNickole\nNikia\nNinfa\nNita\nNoriko\nNubia\nNydia\nOdessa\nPennie\nPhaedra\nPrecious\nPricilla\nQiana\nRanee\nRaylene\nRenata\nRenne\nRossana\nRoxane\nSabina\nSabra\nSacha\nSamara\nSaundra\nShanie\nShannen\nShawndra\nSherilyn\nSherryl\nShiree\nSilbia\nSteffany\nStephine\nSulma\nSuzan\nSuzana\nTahirah\nTakesha\nTamia\nTamura\nTarina\nTausha\nTaya\nTemeka\nTena\nTheodora\nTiana\nTirzah\nToi\nTomi\nTroy\nValencia\nVannessa\nVerenice\nVeronika\nWendie\nAaron\nAbbey\nAbbie\nAbigayle\nAdella\nAfton\nAlejandro\nAlessandra\nAlex\nAlexander\nAllie\nAmara\nAmira\nAnabell\nAnanda\nAnette\nAngelo\nAngelyn\nAnissa\nAnja\nAnjali\nAnneliese\nAntonina\nAracelia\nArasely\nAreli\nArika\nAsha\nBaby\nBenjamin\nBethann\nBettina\nBilli\nBilliejo\nBrandice\nBrandon\nBryan\nBrynn\nCalandra\nCali\nCarl\nCarli\nCarlyn\nCaron\nCecile\nChaka\nCharlena\nCharles\nCharline\nCheree\nCherrie\nChristeen\nChristena\nChristiane\nChristinia\nClaribel\nConsuela\nCoreen\nCorena\nCrystle\nDalene\nDanell\nDavida\nDeedra\nDenielle\nDennis\nDeshawn\nDessie\nDetra\nDiann\nDionna\nDonielle\nDorinda\nDusti\nEboni\nEduardo\nEdward\nEdwina\nElba\nElidia\nEllie\nElodia\nElyse\nEma\nEmilee\nEsperansa\nEstelle\nFarrah\nFeather\nFiona\nFrank\nFreda\nGale\nGema\nGeorge\nGerardo\nGlenna\nGrasiela\nGregory\nHalima\nHanna\nHeaven\nHermelinda\nHiedi\nHollee\nHoney\nHortensia\nIsis\nJacinta\nJacquline\nJaimi\nJammie\nJanay\nJanea\nJanella\nJanina\nJannett\nJay\nJaylene\nJayne\nJeanett\nJenee\nJenene\nJenice\nJenise\nJennelle\nJermaine\nJessika\nJoel\nJohana\nJohnnie\nJorge\nJosefa\nJudi\nKanisha\nKarima\nKarlene\nKarley\nKasi\nKasie\nKatherin\nKaye\nKeli\nKeysha\nKhristina\nKina\nKitty\nKourtney\nKristeen\nKristene\nKristyn\nKrysti\nKyndra\nLacresha\nLakia\nLalena\nLanisha\nLaquisha\nLarina\nLatausha\nLatina\nLatrina\nLeana\nLeeanne\nLeighann\nLeondra\nLeshawn\nLeslee\nLety\nLibby\nLili\nLizeth\nLolita\nLoriann\nLorianne\nLory\nLuann\nLucrecia\nLyla\nLyra\nMadelyn\nMaegan\nManda\nMarbella\nMarcus\nMaren\nMariadelourdes\nMarialuisa\nMariann\nMarianna\nMaribell\nMarietta\nMarlee\nMaryjane\nMeadow\nMeaghan\nMeika\nMelaine\nMelani\nMelany\nMele\nMelodee\nMica\nMicheal\nMickey\nMikki\nMoncia\nMonette\nMorning\nMyriam\nNana\nNelda\nNelida\nNell\nNeomi\nNiccole\nNicholle\nNidia\nNikol\nNisha\nOcean\nOna\nOphelia\nPandora\nPatrcia\nPatrina\nPerri\nPhoebe\nRanda\nRandie\nRebbeca\nRebbecca\nRefugio\nReginia\nResa\nRisa\nRobynn\nRona\nRonica\nRonnie\nRosella\nRoshawn\nRoshon\nRuben\nSabah\nSalena\nSamatha\nSamira\nSantos\nSari\nScott\nSenaida\nSergio\nShae\nShantell\nSharee\nSharhonda\nSharlyn\nShaun\nShawnte\nShayna\nShayne\nShelbi\nShireen\nShonte\nSian\nSimona\nSina\nSiobhan\nSonda\nSoraya\nStephaine\nSunday\nSunni\nSydney\nTameca\nTameika\nTamesha\nTanda\nTangi\nTarah\nTatiana\nTawni\nTaylor\nTerasa\nTeressa\nTiesha\nTiffeny\nTiffiney\nTika\nTimothy\nTobey\nToby\nTorrey\nToshiba\nTova\nTreva\nTrish\nTritia\nTrudi\nVilma\nWednesday\nYadhira\nYael\nYessica\nZenia\nZina\nJennifer\nMichelle\nAmy\nMaria\nHeather\nMelissa\nChristina\nLisa\nKimberly\nElizabeth\nAngela\nNicole\nStephanie\nJessica\nVeronica\nRebecca\nSarah\nLaura\nPatricia\nMonica\nJulie\nShannon\nChristine\nErin\nCynthia\nAndrea\nSandra\nRachel\nKelly\nAmanda\nAmber\nMary\nApril\nKaren\nWendy\nErica\nDanielle\nTiffany\nAlicia\nStacy\nCarrie\nDawn\nTina\nTracy\nDiana\nGina\nTeresa\nSara\nSusan\nDenise\nNancy\nKatherine\nMichele\nAnna\nClaudia\nTanya\nAngelica\nEmily\nBrandy\nErika\nBrenda\nMelanie\nAna\nCrystal\nJamie\nMegan\nLori\nVictoria\nRosa\nLinda\nTammy\nValerie\nTamara\nHeidi\nTara\nKristen\nSonia\nKristina\nStacey\nLeticia\nVanessa\nRenee\nCatherine\nDeborah\nKristin\nLeslie\nRobin\nMisty\nJill\nNorma\nMartha\nKathleen\nBrandi\nDana\nTheresa\nJacqueline\nYolanda\nLorena\nNatalie\nYvonne\nHolly\nGloria\nChristy\nGuadalupe\nMonique\nDeanna\nRegina\nAdriana\nSylvia\nAllison\nShawna\nMelinda\nYvette\nCindy\nSamantha\nCourtney\nBarbara\nKathryn\nJulia\nCheryl\nRaquel\nLeah\nAlison\nCarmen\nSuzanne\nCristina\nAnne\nAngelina\nGabriela\nVirginia\nAimee\nAnn\nSharon\nMargaret\nJenny\nKari\nDonna\nPamela\nCarolyn\nChristie\nJoy\nKristi\nJanet\nDiane\nMandy\nBlanca\nJoanna\nTonya\nAnnette\nKristine\nSummer\nSusana\nOlivia\nShelly\nRhonda\nLaurie\nAnita\nAlma\nIrene\nMaribel\nKatrina\nMarie\nCarla\nDesiree\nYesenia\nKara\nPaula\nJodi\nCecilia\nJeanette\nTricia\nTrisha\nDebra\nLorraine\nSheila\nRuth\nSilvia\nTraci\nAdrienne\nEsmeralda\nColleen\nMargarita\nSherry\nNatasha\nAraceli\nCarol\nFelicia\nKarla\nStacie\nAngie\nIrma\nKrista\nKeri\nJoanne\nRachael\nBrooke\nMarisa\nNichole\nSabrina\nEva\nRuby\nSonya\nCaroline\nLauren\nMaricela\nJuanita\nKristy\nRobyn\nElena\nAutumn\nCharity\nEsther\nMarisol\nNaomi\nRachelle\nRita\nIsabel\nShelley\nBonnie\nKristie\nConnie\nJolene\nRose\nTrina\nKendra\nRebekah\nAlexandra\nRochelle\nKelli\nMelody\nAngel\nCharlene\nLydia\nMolly\nElisa\nKatie\nAshley\nCassandra\nFrances\nTamika\nArlene\nDarlene\nElaine\nMarlene\nSheri\nKimberley\nTanisha\nHelen\nTania\nMarina\nCara\nKerry\nSally\nTami\nJanelle\nJody\nJudith\nRosemary\nKathy\nKirsten\nCandice\nBecky\nJanice\nOlga\nAlice\nJenifer\nKellie\nAlexis\nGrace\nRoxanne\nPriscilla\nJaime\nJoann\nTracey\nAntoinette\nMindy\nSandy\nBridget\nMarisela\nShana\nStaci\nEvelyn\nHilda\nJudy\nCandace\nDebbie\nAngelique\nMayra\nMeredith\nNina\nDora\nDelia\nJoyce\nToni\nAudrey\nDena\nGeorgina\nAmelia\nBelinda\nCasey\nKelley\nRocio\nAlejandra\nBeth\nCeleste\nCharlotte\nLuz\nAmie\nBernadette\nEdith\nEileen\nKim\nKerri\nLatasha\nLynn\nShirley\nJuana\nShelby\nTerri\nAlisa\nCarolina\nJana\nJennie\nCheri\nElsa\nLilia\nMarcella\nMiriam\nRamona\nShauna\nLiliana\nStefanie\nCorina\nKarina\nTracie\nGraciela\nGretchen\nRoberta\nLourdes\nAlisha\nDolores\nJohanna\nLara\nNakia\nSophia\nBethany\nElvia\nGladys\nGriselda\nJeannette\nNora\nDina\nDorothy\nLucia\nSherri\nAurora\nJasmine\nJenna\nMarissa\nLoretta\nSerena\nHilary\nJosephine\nMia\nMiranda\nRene\nTaryn\nTasha\nBertha\nElisabeth\nEllen\nGinger\nMaureen\nAudra\nBrandie\nChrista\nChristi\nJosefina\nLillian\nMarla\nBeatriz\nBetty\nBeverly\nEbony\nLakisha\nLatoya\nLena\nShanna\nShawn\nTeri\nChandra\nChelsea\nJeanne\nNoemi\nCandy\nJanette\nLynette\nCari\nEricka\nGenevieve\nImelda\nJodie\nKenya\nLupe\nMarta\nMelisa\nSonja\nCherie\nHope\nLindsay\nSofia\nAbigail\nCelia\nJane\nMarcia\nVivian\nCathy\nPauline\nKarin\nNikki\nSunshine\nTisha\nCatalina\nGabrielle\nMagdalena\nElvira\nConsuelo\nDeana\nJami\nMercedes\nSheryl\nTabitha\nTerra\nAlana\nAthena\nBobbie\nEsperanza\nHannah\nMarilyn\nStella\nAracely\nEmma\nFaith\nJean\nMaya\nSusanna\nVicki\nAntonia\nCorinne\nDarcy\nFabiola\nLea\nBianca\nCarey\nJackie\nLucy\nAisha\nIngrid\nLesley\nMeghan\nMyrna\nWendi\nAlyssa\nCarly\nDaisy\nIsela\nKimberlee\nLakeisha\nMyra\nCatrina\nDianna\nMarcela\nMirna\nRosalinda\nAllyson\nJeannie\nMaritza\nRena\nTameka\nJeanine\nKeisha\nLaurel\nLeanne\nLiza\nMandi\nMichael\nTamra\nAnnie\nFrancine\nJacquelyn\nRosario\nTammie\nYadira\nAida\nBeatrice\nBillie\nCamille\nIris\nJanell\nLashonda\nLora\nMarcy\nMarianne\nTerry\nAlyson\nAmi\nGail\nGwendolyn\nJoan\nMarci\nNoelle\nTonia\nCori\nDoris\nElva\nKira\nLakesha\nSunny\nInez\nJanine\nMarcie\nMaryann\nNadine\nRosalie\nRosie\nSherrie\nWindy\nDarla\nHillary\nJessie\nLatisha\nMariah\nNatalia\nRonda\nWanda\nCathleen\nHarmony\nLana\nLeann\nMariana\nPeggy\nGena\nLatanya\nLuisa\nMarsha\nPenny\nRosalba\nWhitney\nClara\nDominique\nEstela\nFrancisca\nJason\nKarrie\nLidia\nSasha\nAlissa\nClaire\nClarissa\nKatharine\nLindsey\nMona\nOfelia\nRandi\nDanette\nDavina\nDeanne\nEvangelina\nJeannine\nJocelyn\nJuliet\nKate\nMinerva\nRosio\nSelena\nVicky\nChantel\nDoreen\nFrancesca\nJanel\nJune\nKrystal\nMartina\nRosalva\nRosemarie\nShari\nTamera\nTera\nTia\nAdela\nCarina\nChrystal\nFatima\nGricelda\nIvonne\nKasey\nLeigh\nMaggie\nMireya\nSocorro\nTamiko\nBetsy\nBriana\nBridgette\nCassie\nEleanor\nJulissa\nKaryn\nLatonya\nLeilani\nLila\nPatrice\nPerla\nRebeca\nSierra\nSusie\nTiana\nTiffani\nAdrianne\nAnastasia\nChristopher\nCristy\nEdna\nJosie\nKarie\nLacey\nLatrice\nLeila\nLynda\nMaisha\nMalinda\nMarjorie\nMarlo\nMichell\nSadie\nShanon\nSheree\nSuzette\nTessa\nUrsula\nVickie\nAdrian\nAileen\nAngeline\nAngelita\nBernice\nBobbi\nCarissa\nCorey\nDionne\nGlenda\nJuliana\nLee\nMisti\nNoel\nRosanna\nAnabel\nArcelia\nBrittany\nCarie\nCharmaine\nDanelle\nJanie\nJulianne\nMyesha\nPaige\nReina\nSandi\nViviana\nAnjanette\nAnnemarie\nAubrey\nBree\nCorinna\nDestiny\nEugenia\nFlor\nHortencia\nJose\nLina\nLorie\nLynnette\nMara\nNanette\nTawnya\nTori\nAdrianna\nAlexandria\nAnel\nAnnamarie\nAnnmarie\nCorrine\nDalia\nDeena\nElia\nElise\nElisha\nGabriella\nGeneva\nJanna\nJena\nJo\nKristal\nLily\nLizette\nMabel\nMicaela\nMirella\nPearl\nSimone\nSuzanna\nAlysia\nAnitra\nBeronica\nCarmela\nChristin\nConcepcion\nCorrie\nCory\nElissa\nFawn\nIvy\nJaqueline\nJulianna\nLacy\nMeagan\nMonika\nReyna\nRichelle\nRoxana\nRoxanna\nSondra\nSpring\nTrinity\nValarie\nVenus\nAlexa\nAlycia\nBridgett\nCecelia\nChantal\nDaniel\nDianne\nDusty\nEstella\nJoleen\nKerrie\nKisha\nLarissa\nMarnie\nMaxine\nMiesha\nNicolle\nPetra\nShellie\nTammi\nTeresita\nAdria\nAmalia\nAndria\nAnthony\nChasity\nDelilah\nHelena\nJoni\nKaty\nLashawn\nRobert\nShanda\nTiffanie\nAda\nChanda\nElaina\nEmilia\nGiselle\nHaydee\nJade\nJamila\nJayme\nJesus\nKatina\nKirstin\nLayla\nLeanna\nLisette\nMargo\nSusanne\nThelma\nTherese\nVera\nAngelia\nCarin\nChristal\nCristal\nDara\nDelores\nDenice\nDeserie\nElida\nEvette\nGeorgia\nJames\nLucinda\nMargie\nMariaelena\nRosanne\nStefani\nVioleta\nAlanna\nAlina\nArmida\nBrandee\nBrenna\nCarole\nChastity\nColette\nCortney\nDavid\nDayna\nDemetria\nFrancis\nGeraldine\nHollie\nJeana\nLorrie\nMarivel\nMatthew\nMellisa\nOralia\nPenelope\nPilar\nRosalia\nShannan\nTobi\nValeria\nXochitl\nAntionette\nAyanna\nCaryn\nCecily\nCherise\nChristen\nCinthia\nClaudine\nConstance\nCorrina\nDaniela\nDaniele\nDaniella\nDawna\nEloisa\nEunice\nJanis\nJeanna\nJeri\nJesse\nJustina\nJustine\nKathrine\nLiana\nLizbeth\nLola\nLouise\nMandie\nMari\nMarian\nMorgan\nNidia\nPaulette\nPhyllis\nRosana\nSelina\nSharla\nSharlene\nSoledad\nStarr\nTanesha\nTenisha\nTosha\nCaren\nDanica\nDanita\nDarcie\nDeidre\nEliza\nIvette\nLupita\nMalissa\nMichaela\nMitzi\nNellie\nRacquel\nRegan\nRosalind\nRoxann\nSalina\nSherie\nSommer\nSusannah\nTana\nTrista\nValentina\nZoe\nAaron\nAdina\nAngelic\nBelen\nCelina\nCherish\nDarci\nErlinda\nFaviola\nGinny\nJan\nJenine\nJenniffer\nJohn\nJolie\nJulisa\nKesha\nKyra\nLadonna\nLauri\nLeonor\nLetisia\nLilian\nManuela\nMarni\nMay\nMelonie\nMyisha\nNelly\nNoelia\nPolly\nRacheal\nShani\nShantel\nShonda\nTabatha\nTyra\nAriana\nAyana\nBrigitte\nCandida\nCarri\nCasandra\nChanel\nCheyenne\nChris\nCristi\nDaphne\nEmilie\nErnestina\nFlora\nGisela\nGuillermina\nHallie\nIda\nJoshua\nKori\nLeona\nLouisa\nMarcelina\nMarlena\nMildred\nNichol\nRashida\nRoni\nShawnna\nStacia\nStephani\nStephenie\nSyreeta\nTamar\nTanika\nAurelia\nAzure\nBenita\nBlythe\nCameron\nCarisa\nCherice\nChloe\nCinnamon\nCoral\nDalila\nDannielle\nDeirdre\nDevon\nGeorgette\nJasmin\nJeanie\nJoey\nKirstie\nLakeysha\nLanette\nLeeann\nLia\nMariela\nMelodie\nMindi\nPaola\nRenae\nRosalina\nSerina\nShamika\nShanta\nShayla\nSue\nTrudy\nAdele\nAmerica\nAnnalisa\nBrandon\nBrook\nCandelaria\nCary\nCharisse\nCharles\nCheree\nCherilyn\nCorie\nDanika\nDeann\nDebora\nEden\nElsie\nEster\nEve\nFaye\nHazel\nJanene\nJenni\nKami\nKarri\nKeely\nLetitia\nLucila\nLucille\nLynne\nMaira\nMaren\nMelina\nNiki\nNikia\nQiana\nRhea\nRichard\nShara\nTrena\nValorie\nVilma\nAddie\nAlethea\nAraseli\nAriel\nBerta\nCamelia\nChaka\nCharla\nChristiane\nCicely\nDeidra\nDelfina\nElda\nEthel\nEvelia\nFlorence\nGilda\nGillian\nGwen\nJaimie\nJanae\nJenelle\nJeniffer\nJoelle\nKelsey\nLani\nLashanda\nLeandra\nMadeline\nMollie\nNakisha\nNicola\nNikole\nPatty\nRaina\nRana\nRosamaria\nRoseann\nScott\nSelene\nShameka\nShanti\nShayna\nStarla\nSybil\nTesha\nThea\nToby\nViolet\nYasmin\nAdelina\nAmee\nAnika\nAsia\nAura\nBuffy\nCarlene\nCher\nChristel\nCora\nCoreen\nDani\nDanna\nDanyelle\nDaria\nDeedee\nDinah\nDixie\nElana\nErinn\nEvonne\nFrankie\nGeri\nHerlinda\nHolli\nJaimee\nJamee\nJina\nJohnna\nJoi\nJoseph\nJosette\nJovita\nJulieta\nKacey\nKarena\nKay\nLakeshia\nLakiesha\nLarhonda\nLaticia\nLawanda\nLela\nLenora\nMarianna\nMaricruz\nMarion\nMercy\nMistie\nNadia\nNicki\nOctavia\nPatrisia\nPatsy\nPepper\nRoseanne\nRowena\nSabina\nShane\nShante\nShantell\nShawnda\nShilo\nStar\nTamatha\nTenaya\nTerrie\nYecenia\nZandra\nZulema\nZulma\nAdena\nAdriane\nAide\nAkilah\nAlexia\nAlia\nAmparo\nAnalisa\nAnamaria\nAngella\nAnnabel\nAva\nAzucena\nBerenice\nCarmelita\nClare\nCollette\nCristine\nDanae\nDella\nElicia\nEric\nGeorge\nGianna\nHaley\nJaneen\nJanuary\nJeffrey\nJonelle\nJustin\nKamilah\nKiana\nKindra\nKourtney\nKristyn\nLashawnda\nLatricia\nLelia\nLesa\nLiberty\nLinette\nLissette\nLizet\nLois\nLorna\nMae\nMagda\nMalia\nMalisa\nMarylou\nMaura\nMellissa\nNanci\nNicolette\nPaulina\nRae\nRhoda\nRobbin\nRosalyn\nRosaura\nRosina\nRubi\nSarina\nSarita\nShandra\nShanell\nShanika\nShawnee\nSophie\nTiffiny\nTomeka\nTristan\nXochilt\nYanira\nAgnes\nAlba\nAlisia\nAmiee\nAmity\nAndra\nAntonette\nAsha\nBarbra\nBrande\nBrett\nCaitlin\nCambria\nCamilla\nCandi\nCarli\nCarlos\nChanelle\nCharleen\nCindi\nCruz\nDyan\nEdward\nGlenna\nGracie\nIsabelle\nIsis\nJacquline\nJennette\nJerry\nJillian\nJulee\nJuliette\nKarmen\nKeira\nKimberlie\nKrishna\nLatashia\nLatrina\nLiane\nLilly\nLinnea\nMalina\nMaricella\nMaryanne\nMaryjane\nMicah\nMisha\nMyeshia\nNannette\nNia\nOtilia\nPamala\nRachele\nRebbecca\nRoseanna\nRoxane\nSeason\nShea\nSteven\nSusy\nSydney\nTalia\nTamica\nTiffaney\nTimothy\nTracee\nZenia\nAltagracia\nAntonio\nBeatris\nBrianna\nBritt\nCarmella\nCathryn\nCelena\nChristene\nChristian\nChristiana\nClaudette\nColeen\nCorine\nDanell\nDanyel\nDarleen\nDayanara\nDionna\nEboni\nElba\nElisia\nEnriqueta\nGayle\nGoldie\nIndia\nInes\nIsaura\nJamey\nJammie\nJazmin\nJeneen\nJerri\nJesica\nJuan\nKacy\nKary\nKayla\nKellee\nKendall\nKenyatta\nKia\nKiley\nKris\nLacie\nLashon\nLatosha\nLesli\nLetisha\nLindy\nLorinda\nLorri\nLuciana\nLus\nMandee\nMika\nNikita\nNilda\nPatti\nPhoebe\nPoppy\nPortia\nRebecka\nRenata\nRoselia\nRosita\nRyan\nSaundra\nSeptember\nSerene\nShalonda\nSharron\nShay\nShelli\nShiela\nSkye\nTamira\nTatum\nTennille\nToya\nTwyla\nVelia\nWillow\nYsenia\nZenaida\nAlecia\nAlejandrina\nAlthea\nAnabelle\nAnalilia\nAnanda\nAnissa\nAnjelica\nAnnabelle\nAnnamaria\nArianne\nArmando\nArwen\nAshlee\nAsusena\nBambi\nBelia\nBettina\nBrian\nBritta\nBryn\nCallie\nCandie\nCarolynn\nCasie\nCatharine\nChantelle\nChekesha\nChelsie\nCherisse\nCrista\nDahlia\nDania\nDee\nDenisha\nDenita\nDeonna\nDetra\nDione\nDori\nDorian\nEma\nEmmy\nErendira\nErnestine\nFarah\nFelecia\nFrancisco\nHayley\nIlda\nIlona\nJacquelynn\nJannette\nJenette\nJesenia\nJohnnie\nJuli\nJuliann\nKacie\nKameron\nKandi\nKassandra\nKati\nKecia\nKeesha\nKimberli\nLaronda\nLivier\nLizeth\nLoraine\nLorelei\nLoren\nMaile\nManuel\nMargret\nMarguerite\nMariza\nMarti\nMarybel\nMerry\nMinnie\nMoira\nMonet\nMyriam\nNathalie\nNecole\nNereida\nNichelle\nNikol\nNissa\nNoreen\nNova\nNubia\nOlympia\nPatience\nPiper\nPrecious\nRanee\nRaymond\nRayna\nRikki\nRina\nRosaisela\nSamara\nSamuel\nSanta\nSari\nShanelle\nShasta\nSherell\nSherilyn\nSoraya\nTakisha\nTalisha\nTamie\nTawny\nTerese\nTiffini\nTomika\nTonja\nTory\nTrish\nValencia\nVania\nVannessa\nVikki\nWendie\nWenona\nYolonda\nZoila\nAbby\nAdeline\nAllegra\nAmara\nAnnika\nArica\nArleen\nAshleigh\nAubree\nAundrea\nAvelina\nAyesha\nBonny\nBreanna\nCammie\nCarlie\nCarlotta\nCassondra\nCharmayne\nChiara\nChina\nCorissa\nCristie\nDamaris\nDannette\nDanya\nDanyell\nDawnelle\nDelma\nDesirae\nDevina\nDona\nEcho\nEdie\nElyse\nEmi\nFarrah\nFelisa\nFernanda\nGayla\nGeorgiana\nGinette\nGregory\nHanna\nHelene\nHoney\nIesha\nIlana\nInga\nJacy\nJamilah\nJanett\nJannifer\nJennafer\nJeremy\nJerusha\nJohnny\nJonna\nJosefa\nJulene\nKarissa\nKarly\nKatheryn\nKaycee\nKeli\nKevin\nKiersten\nKimber\nKorina\nKory\nKristan\nKyla\nKyle\nKym\nLaquita\nLatonia\nLavina\nLavonne\nLeesa\nLeighann\nLeora\nLetecia\nLibby\nLiz\nLolita\nLorene\nLuana\nLula\nMachelle\nMadelyn\nMaegan\nMaia\nMalena\nMalika\nMariam\nMario\nMarisha\nMaritsa\nMarya\nMeadow\nMechelle\nMeggan\nMelaine\nMelony\nMelynda\nMendi\nMiki\nMilissa\nMimi\nMirian\nNiccole\nNickie\nNickole\nNinette\nNola\nNuvia\nOpal\nOphelia\nPeaches\nQuiana\nRachell\nRafaela\nRasheda\nRashonda\nReena\nRenea\nRicardo\nRolanda\nRosalee\nSalena\nSallie\nSantos\nShae\nShanita\nShantelle\nShaunna\nShawana\nShelbi\nShenee\nShira\nShonna\nShoshana\nSimona\nSiobhan\nStarlene\nStefany\nStephany\nStormy\nSumer\nSuzana\nTabetha\nTamala\nTarah\nTenesha\nTobie\nTonisha\nTreasure\nTressa\nTunisia\nTyesha\nVelma\nVenessa\nVerenice\nAime\nAleta\nAlta\nAlva\nAmina\nAnamarie\nAndrew\nAndrina\nAngelena\nAngle\nAnya\nApryl\nAreli\nAretha\nArin\nAzalia\nBarbie\nBonita\nBrigette\nCami\nCarl\nCarmel\nCarmina\nCassidy\nCathrine\nCatina\nCeline\nChante\nCharissa\nCherrie\nClarisa\nCristin\nCybil\nCyndee\nCyndi\nDacia\nDaniell\nDarcey\nDeeann\nDelicia\nDemetra\nDiona\nDolly\nDonielle\nDorene\nDulce\nDusti\nElizabet\nElla\nEmiko\nEna\nEnedina\nErma\nEvangeline\nFernando\nFiona\nGiovanna\nGreta\nGypsy\nHattie\nHenrietta\nHermelinda\nHerminia\nIleana\nIlene\nIliana\nIrasema\nIsa\nJacinda\nJaclyn\nJacob\nJada\nJamaica\nJamillah\nJanessa\nJayne\nJene\nJenee\nJewel\nJoe\nJoie\nJolyn\nJonathan\nJordan\nJulian\nJulienne\nJuniper\nJunko\nKaci\nKamala\nKandice\nKarma\nKena\nKenna\nKenneth\nKerra\nKeysha\nKiera\nKimberlina\nKoren\nKrisha\nKristene\nKylee\nLashawna\nLasonya\nLatrece\nLeana\nLesly\nLigia\nLillie\nLinsey\nLita\nLoni\nLonnie\nLucina\nLucretia\nMagaly\nMalaika\nMaranda\nMarcelle\nMarika\nMarty\nMayte\nMeegan\nMelani\nMelita\nMeridith\nMichaelle\nMicheal\nMillie\nMoncia\nNacole\nNailah\nNatacha\nNatividad\nNeda\nNena\nNerissa\nNicol\nNinfa\nNita\nNohemi\nPatrica\nPaul\nPollyanna\nPrincess\nPrudence\nRaelene\nRaul\nRechelle\nReem\nRefugio\nReva\nRobbie\nRomana\nRonica\nRonnie\nRoslyn\nSabrena\nSage\nSanjuanita\nSariah\nSeana\nShaina\nShannen\nSharice\nSharita\nSharonda\nSheela\nSheena\nSheilah\nShelia\nSherisse\nSherita\nSherrell\nShona\nShondra\nSilva\nStacee\nSteffanie\nStephaine\nStephannie\nSuzy\nTambra\nTameika\nTamekia\nTanasha\nTangela\nTanja\nTarra\nTashia\nTaunya\nTausha\nTavia\nTawana\nTawni\nTeena\nTerah\nTerrell\nTiara\nTiesha\nTomi\nTony\nTorrie\nTreena\nTrinette\nTrini\nTrinidad\nTrudi\nTyler\nValery\nVerna\nVictor\nViola\nVonetta\nWilma\nXiomara\nYara\nYasmine\nZaida\nZara\nZina\nAdelita\nAlaina\nAlberta\nAlesha\nAli\nAlishia\nAlmadelia\nAlvina\nAn\nAnalia\nAndee\nAndera\nAndreana\nAndriana\nAndy\nAngele\nAngeli\nAnica\nAnisa\nAntoniette\nAntonina\nArgelia\nArmanda\nArtemisa\nArturo\nAshanti\nAziza\nBella\nBelle\nBevin\nBilly\nBlossom\nBrandalyn\nBrianne\nBrisa\nCaprice\nCarlena\nCarletta\nCarlyn\nCelestina\nChantell\nChari\nCharis\nCharise\nCharlyn\nCherlyn\nCherry\nCheryle\nCheyanne\nCiara\nClair\nClaribel\nCleotilde\nClifford\nColby\nDanetta\nDanny\nDelisa\nDenelle\nDennise\nDeshawn\nDesire\nDevona\nDion\nDisa\nEduardo\nElishia\nElita\nEllie\nElodia\nEloise\nEmber\nEmelda\nErendida\nErmelinda\nEstelle\nEugene\nFlavia\nGaylene\nGenee\nGenesis\nGenna\nGenoveva\nGerardo\nGigi\nGregoria\nHalima\nHector\nHeidy\nHiedi\nHortensia\nIdalia\nIeshia\nIna\nIrena\nIva\nIvon\nIxchel\nJacinta\nJackeline\nJanee\nJannet\nJannie\nJaymi\nJeanene\nJemima\nJenean\nJennifier\nJermaine\nJimmy\nJobina\nJodee\nJonette\nJonnie\nJordana\nJoya\nJoycelyn\nJubilee\nJudi\nJulio\nKali\nKamika\nKandy\nKanika\nKarine\nKarleen\nKathie\nKathlene\nKatia\nKeiko\nKelee\nKenisha\nKeva\nKeya\nKiesha\nKimiko\nKimmie\nKinya\nKitty\nKiva\nKristeen\nKristel\nKyndra\nLacresha\nLacretia\nLaila\nLanell\nLanita\nLarisa\nLashana\nLashaun\nLashell\nLashelle\nLatesha\nLauna\nLavon\nLawanna\nLeeanna\nLeeanne\nLeena\nLenna\nLeslee\nLeslieann\nLilliana\nLisabeth\nLisha\nLorenza\nLucero\nLuis\nLurdes\nLynna\nMadeleine\nMakisha\nMandisa\nMargot\nMariadelcarmen\nMariko\nMarin\nMark\nMarleen\nMarysol\nMatilda\nMegin\nMelany\nMelodee\nMelva\nMichel\nMina\nMonalisa\nNaima\nNakeisha\nNedra\nNeisha\nNelida\nNicholle\nObdulia\nOliva\nOscar\nPassion\nPat\nPatrina\nPorsche\nPorsha\nPricilla\nQuincy\nRashada\nRaylene\nReagan\nRebekka\nRicki\nRisa\nRonisha\nRossana\nRufina\nRyann\nSacha\nSandee\nSanya\nSativa\nSean\nSecilia\nSeema\nShala\nShaleen\nShalita\nShanay\nShanel\nSharee\nSharie\nSharyl\nShawndra\nShawnta\nShawnte\nShayne\nShenandoah\nSherese\nShireen\nShontay\nShyla\nShyra\nSomer\nStephnie\nSteve\nSunita\nSunni\nSuzan\nSuzann\nSuzie\nTajuana\nTakesha\nTaleen\nTamela\nTamisha\nTamu\nTanea\nTaneshia\nTaneya\nTeana\nTereza\nTheodora\nThomas\nThuy\nTiffney\nTikisha\nTisa\nTorrey\nUnknown\nValeri\nVanesa\nVenicia\nVida\nVivianne\nWendee\nWilliam\nWinnie\nWinona\nXochil\nYadhira\nYajaira\nYessenia\nYvett\nZakia\nZuleyka\nJennifer\nAmy\nMichelle\nMaria\nMelissa\nHeather\nJessica\nLisa\nChristina\nElizabeth\nNicole\nSarah\nAngela\nKimberly\nRebecca\nStephanie\nShannon\nVeronica\nLaura\nMonica\nJamie\nJulie\nAmanda\nChristine\nErin\nKelly\nAndrea\nAmber\nSara\nSandra\nPatricia\nRachel\nCynthia\nErica\nJaime\nDanielle\nMary\nWendy\nTiffany\nCarrie\nApril\nKaren\nDawn\nAlicia\nStacy\nDiana\nNancy\nClaudia\nAnna\nTeresa\nEmily\nCrystal\nKatherine\nBrandy\nSusan\nTracy\nDenise\nMelanie\nAngelica\nSonia\nTina\nGina\nErika\nMichele\nValerie\nVictoria\nLeticia\nVanessa\nBrenda\nAna\nMegan\nNatalie\nRenee\nHeidi\nLinda\nTanya\nMisty\nStacey\nRosa\nKristin\nLeslie\nHolly\nJacqueline\nKristina\nTamara\nTara\nLori\nNorma\nBrandi\nCatherine\nAllison\nTammy\nChristy\nKristen\nYolanda\nGuadalupe\nDana\nKathleen\nTheresa\nMartha\nJill\nLorena\nDeborah\nJenny\nCindy\nAdriana\nCourtney\nKathryn\nMonique\nRobin\nSamantha\nMelinda\nDeanna\nLindsay\nYvonne\nCristina\nGloria\nLeah\nRegina\nSuzanne\nYvette\nOlivia\nSylvia\nBarbara\nAimee\nMaricela\nSharon\nJulia\nShawna\nSusana\nMarie\nAlison\nIrene\nRaquel\nCarmen\nAngelina\nDesiree\nGabriela\nSabrina\nJoanna\nAlma\nMandy\nKari\nMargaret\nDiane\nDonna\nMaribel\nMarisa\nSummer\nVirginia\nYesenia\nCarla\nPaula\nCheryl\nAnne\nBlanca\nKristine\nLauren\nCarolyn\nJoy\nKatrina\nAnnette\nKristi\nNatasha\nAnn\nPamela\nAnita\nCecilia\nAdrienne\nJanet\nMargarita\nSilvia\nKristy\nEsmeralda\nAraceli\nShelly\nJodi\nKrista\nEva\nAlejandra\nMarisela\nDebra\nElena\nRita\nKendra\nBrooke\nMolly\nRuth\nDarlene\nRuby\nSheila\nCarol\nJuanita\nKarla\nStacie\nTonya\nFelicia\nColleen\nJeanette\nTrisha\nRachelle\nKelli\nLaurie\nChristie\nShana\nAngie\nRobyn\nKeri\nRose\nKara\nSherry\nTania\nIrma\nKatie\nNichole\nPriscilla\nTraci\nLydia\nMelody\nNaomi\nRachael\nSheri\nCaroline\nHelen\nIsabel\nJudith\nMarisol\nCassandra\nElaine\nKarina\nKristie\nShelley\nBonnie\nLorraine\nRhonda\nJennie\nRocio\nAutumn\nEsther\nConnie\nRochelle\nLuz\nSonya\nRebekah\nSandy\nTrina\nMarissa\nHilda\nCandice\nFrances\nToni\nArlene\nJoanne\nDora\nKathy\nLiliana\nMarina\nAudrey\nDolores\nElisa\nMarlene\nTricia\nCharlene\nJanelle\nAngel\nBelinda\nLindsey\nBeth\nBridget\nCharity\nDelia\nTracey\nAlice\nAshley\nMeredith\nBethany\nEvelyn\nKellie\nOlga\nSally\nTami\nElisabeth\nRamona\nAlexis\nCandace\nCara\nGrace\nRoxanne\nJenifer\nJohanna\nKirsten\nLucia\nMiriam\nNadia\nGriselda\nLatoya\nRoberta\nChelsea\nGraciela\nJanice\nKerri\nRosemary\nTasha\nJody\nJolene\nShirley\nStaci\nAlexandra\nAntoinette\nLatasha\nAmie\nJasmine\nKelley\nLara\nAbigail\nKerry\nNina\nShauna\nCarolina\nMiranda\nCamille\nEricka\nKim\nLourdes\nMarcella\nTamika\nBeatriz\nBrandie\nChrista\nDena\nFarrah\nSophia\nCasey\nCorina\nEdith\nElsa\nAlisha\nLilia\nRosalinda\nTanisha\nStefanie\nAngelique\nDina\nGenevieve\nGretchen\nLynette\nAmelia\nKimberley\nMindy\nShelby\nAlyssa\nCeleste\nJami\nJoann\nLillian\nAlisa\nAurora\nCharlotte\nDebbie\nEbony\nEileen\nGeorgina\nBertha\nMarcia\nNora\nJoyce\nLena\nMayra\nAisha\nBernadette\nJudy\nMaureen\nCathy\nDorothy\nJodie\nBetty\nDianna\nJane\nJuana\nNikki\nVivian\nBecky\nLucy\nJeannette\nBianca\nBobbie\nConsuelo\nJana\nSofia\nTeri\nAntonia\nJenna\nJosephine\nMarta\nMercedes\nEmma\nLiza\nRosario\nFrancisca\nMaritza\nMelisa\nHannah\nJosefina\nEllen\nHope\nLoretta\nSerena\nTerri\nChandra\nMarilyn\nPauline\nTabitha\nCherie\nKarin\nLakisha\nLynn\nMarianne\nMeghan\nNadine\nSunshine\nTennille\nCatalina\nCheri\nJocelyn\nRhiannon\nShanna\nDarcy\nEstela\nGladys\nLiberty\nMarsha\nCelia\nEsperanza\nIsela\nJayme\nMarla\nSherri\nWendi\nCari\nGinger\nJean\nMichael\nBeverly\nJanette\nMia\nNoemi\nShawn\nSonja\nImelda\nLaurel\nSelena\nSheryl\nAlana\nJanine\nJeannie\nRonda\nTracie\nCori\nJackie\nLeanne\nMarcela\nBeatrice\nCarey\nCarly\nKeisha\nKimberlee\nLarissa\nLatisha\nLesley\nMaya\nNoelle\nCelina\nGabrielle\nHilary\nIris\nJacquelyn\nJeanne\nLidia\nTiana\nAudra\nCandy\nDominique\nKenya\nLea\nSunny\nTerra\nCarissa\nHillary\nPeggy\nRene\nAnabel\nCarina\nClaire\nDaisy\nDeana\nFaith\nFrancine\nGwendolyn\nHarmony\nKate\nMagdalena\nMandi\nMarci\nMelina\nMyrna\nRosie\nSherrie\nTori\nKarrie\nSasha\nSusanna\nTonia\nYadira\nClara\nIngrid\nPenny\nSusie\nTameka\nAdrianne\nAnnie\nJessie\nLora\nMariah\nReyna\nSierra\nStella\nVicki\nAthena\nAubrey\nDarla\nElva\nJeanine\nMirna\nOfelia\nTisha\nAmalia\nBrandee\nJanel\nLuisa\nMinerva\nMireya\nMyra\nVickie\nXochitl\nAida\nChristal\nChristi\nCorrie\nJaimie\nJanna\nJeannine\nLakeisha\nLupe\nTiffani\nAnitra\nBetsy\nBillie\nElvira\nJanell\nLily\nMara\nMaryann\nMona\nRosio\nTammie\nAllyson\nAlyson\nAracely\nBelen\nBrittany\nClarissa\nCorinne\nElvia\nFabiola\nKatharine\nLatanya\nLeanna\nRebeca\nRosanna\nTaryn\nUrsula\nWhitney\nAlissa\nBrook\nCarie\nEvangelina\nKasey\nSalina\nBernice\nBridgette\nCharmaine\nCorrina\nDavina\nDoris\nEdna\nHollie\nJanie\nJoan\nKrystal\nLeigh\nLucinda\nMariana\nShari\nAlexandria\nAnastasia\nAnnmarie\nCory\nDanelle\nEmilia\nFrancesca\nLakesha\nMalinda\nPaige\nRosalie\nSommer\nTiffanie\nCorinna\nEstella\nEugenia\nInez\nJune\nKaryn\nLashonda\nLee\nMarcie\nMarjorie\nMorgan\nNakia\nTia\nWindy\nAmi\nCatrina\nChantel\nCortney\nCristy\nGena\nIvette\nJaqueline\nJuliana\nLeann\nLynda\nMyesha\nNoel\nPearl\nTessa\nAdrianna\nDelilah\nGeorgia\nGlenda\nGricelda\nLizette\nMalissa\nMyisha\nNellie\nPerla\nReina\nRosalva\nRosemarie\nSuzanna\nViviana\nAngelita\nBriana\nGeneva\nJason\nJo\nJulianne\nKerrie\nLacey\nLynnette\nMaisha\nManuela\nRandi\nSadie\nTammi\nVicky\nAileen\nBobbi\nBree\nBrianna\nCheyenne\nDavid\nDayna\nDusty\nEleanor\nJamila\nKristal\nLina\nMaggie\nMargie\nMeagan\nRoxana\nSusanne\nTamra\nVioleta\nAdrian\nCecelia\nDaphne\nEunice\nFlor\nJose\nJuliet\nLorie\nMarcy\nMarivel\nMarlo\nMisti\nRena\nRosalba\nTanika\nAnissa\nAnjelica\nCorey\nDestiny\nEliza\nFawn\nIvonne\nJammie\nJoni\nLeila\nLeilani\nMarlena\nQiana\nTawnya\nVera\nAlexa\nAraseli\nChrystal\nCorrine\nElia\nGail\nGuillermina\nHortencia\nKira\nKisha\nLisette\nRosalia\nShanon\nTanesha\nAnnabelle\nElise\nJosie\nKarie\nLiana\nNatalia\nSelina\nSheree\nSimone\nSocorro\nAlysia\nDanette\nEvette\nJeanna\nJillian\nJuliette\nJulissa\nKami\nLashanda\nLeeann\nMirella\nMonika\nNelly\nRobert\nSoledad\nSpring\nTenisha\nVenus\nWanda\nAdela\nChanda\nChasity\nCherise\nColette\nCora\nDara\nDeena\nDionne\nElisha\nEve\nGabriella\nGeraldine\nHelena\nJaclyn\nJaimee\nJames\nJanae\nJesica\nLeonor\nMartina\nPatrice\nPilar\nRayna\nRichard\nRoxanna\nSandi\nValarie\nAngelic\nArmida\nCarmela\nChristopher\nCorie\nDaniella\nDawna\nDevon\nDoreen\nErlinda\nIda\nJasmin\nKori\nLayla\nLetisia\nLia\nLouisa\nMicaela\nPaulette\nRashida\nRichelle\nRosaura\nShasta\nValeria\nVenessa\nAdriane\nAmerica\nAmparo\nAnnamarie\nBuffy\nCandida\nCary\nCassie\nCelena\nCherilyn\nDalia\nDaniel\nDaniela\nJanuary\nJoelle\nLana\nLani\nLouise\nMabel\nMichaela\nMichell\nMildred\nNidia\nRacheal\nSalena\nShannan\nStarr\nTeresita\nTerry\nAda\nCaryn\nChanel\nConstance\nFaviola\nJeri\nJoleen\nJoseph\nJustine\nKirstin\nLanette\nLashawn\nLeona\nLois\nLola\nMadeline\nMarian\nMiesha\nRaina\nRenae\nRyan\nShameka\nShanda\nShayla\nStar\nTabatha\nTherese\nAide\nAnnemarie\nArcelia\nAriana\nBeronica\nBrenna\nCaitlin\nCharla\nChastity\nChristin\nDeann\nElaina\nFlora\nFlorence\nFrancis\nJesus\nKathrine\nKellee\nLatonya\nLila\nLilian\nLorrie\nLupita\nMalia\nMaura\nRosalind\nRosanne\nRosita\nShellie\nStefani\nSujey\nSusannah\nThelma\nAdina\nAlanna\nAndria\nAntonette\nAyana\nBenita\nCameron\nCarmina\nConcepcion\nCoral\nFarah\nFrankie\nJaimi\nJanis\nJaymie\nJeana\nLorna\nMariaelena\nMitzi\nNanette\nNikole\nRosalyn\nSharla\nSharlene\nStacia\nStephenie\nTosha\nValencia\nVelia\nAngelia\nAnthony\nAzucena\nBerta\nBrian\nChloe\nChristen\nDanica\nDaniele\nDeanne\nDebora\nDeirdre\nEboni\nElissa\nElsie\nEmilie\nFatima\nIsis\nJade\nJamey\nJan\nJeanie\nJesse\nJulianna\nKatina\nKelsey\nKesha\nKhalilah\nLacy\nLetitia\nLizbeth\nMargo\nMarnie\nNicolle\nOralia\nPatty\nPetra\nRhea\nRoseann\nShantel\nShawnna\nShelli\nSue\nSydney\nTamiko\nTana\nTera\nTrinity\nViolet\nWilliam\nAdria\nAkilah\nAlethea\nAlexia\nAlina\nAnalisa\nAndra\nAnika\nAnnabel\nAntionette\nAriel\nAurelia\nBrigette\nCaren\nCarlos\nCathleen\nClaudette\nDanita\nDianne\nEloisa\nErnestina\nGillian\nGwen\nIliana\nIvy\nJena\nJenelle\nJoey\nJohn\nJustina\nKiana\nKimberlie\nMari\nMatilde\nMellisa\nMellissa\nMindi\nPaul\nRhianna\nRosalina\nRosana\nShiloh\nStarla\nTamisha\nTiffiny\nYanira\nAdelina\nAngeline\nAyanna\nCarisa\nCarole\nChantelle\nCherish\nChris\nChristian\nCinthia\nDanika\nDanyelle\nDarci\nDeserie\nEden\nElida\nEnedina\nEric\nFaye\nGisela\nInes\nIvon\nJenell\nJennette\nJenni\nJenniffer\nJuan\nKacey\nKandi\nKandy\nKarri\nKaty\nKiersten\nKirstie\nLadonna\nLinnea\nLuciana\nMackenzie\nMandie\nMarni\nMaryanne\nMaxine\nMercy\nNakisha\nNichol\nReanna\nRosamaria\nSarita\nSelene\nShante\nSondra\nStephaine\nSuzette\nTorrie\nTrinidad\nTynisa\nYasmin\nZoe\nAlejandrina\nAlena\nAlycia\nAnel\nBridgett\nCamelia\nCarin\nCarri\nCasandra\nCasie\nChantal\nChenoa\nCrista\nDannielle\nDanyel\nDarcie\nDeeanna\nDelfina\nDenice\nElyse\nGeorgette\nHaydee\nJaneen\nJohnna\nJoi\nKindra\nKyla\nKyra\nLashawnda\nLenora\nLindy\nMagda\nMarguerite\nMatthew\nMicheal\nMollie\nNia\nNohemi\nPatrisia\nPhyllis\nRana\nRoseanna\nRowena\nSaundra\nSerina\nShamika\nShani\nShawnda\nShonna\nSkye\nStephani\nTalia\nTinisha\nVikki\nAlia\nAllegra\nAmee\nBerenice\nBlythe\nBrett\nBritt\nCarlee\nCarmelita\nChaka\nChristel\nChristiana\nCindi\nClaudine\nColeen\nCollette\nDanna\nDenisha\nDulce\nEdelmira\nElda\nEvangeline\nEvelia\nEvonne\nGiovanna\nGracie\nIlana\nIlda\nIlene\nInga\nJerri\nJolie\nJosette\nKiesha\nLatrina\nLauri\nLinette\nLolita\nLorene\nLucila\nLynne\nManuel\nMaricruz\nMendy\nNereida\nNichelle\nNiki\nNubia\nQuiana\nRina\nSacha\nSanta\nSeason\nSerenity\nShawnee\nShiela\nShonda\nStephany\nTamera\nTomika\nValentina\nWillow\nAbby\nAdele\nAlba\nAlecia\nAlysha\nArianna\nAshleigh\nAura\nBettina\nBrigitte\nBrittney\nCathryn\nCecily\nClare\nCorine\nCristal\nCristine\nDania\nDella\nDelores\nElla\nEster\nFanny\nGabriel\nGreta\nJayne\nJuli\nKamilah\nKarena\nKarey\nKarissa\nKenisha\nKristyn\nLatrice\nLawanda\nLilliana\nLizeth\nLorelei\nMarianna\nMariela\nMarysol\nMelodie\nMelonie\nMicah\nMimi\nNisha\nNoelia\nPatrica\nRachell\nRacquel\nRasheda\nRhoda\nRonnie\nSamara\nSarina\nShalon\nShara\nSharee\nShawana\nShayna\nShilo\nShoshana\nTamica\nTenille\nTracee\nTrudy\nTyra\nXochilt\nYecenia\nAlesha\nAlisia\nAmity\nAnamaria\nAnastacia\nAubree\nAzure\nBessie\nCallie\nCarolynn\nCicely\nCristi\nDavida\nDee\nDeidra\nDeidre\nEdward\nEstrella\nFiona\nGiselle\nIesha\nIleana\nJanee\nJannette\nJenee\nJenette\nJoshua\nJustin\nKay\nKeren\nLanesha\nLatosha\nLatricia\nLavonne\nLeana\nLeslee\nLesli\nLucille\nMaile\nMark\nMarylou\nMay\nMeridith\nMistie\nMoriah\nNaima\nNanci\nNena\nNicola\nPhaedra\nPhoebe\nPoppy\nPricilla\nRegan\nRosalynn\nShakira\nShalonda\nShandra\nShanta\nShaunna\nShay\nShea\nShelia\nShyla\nSomer\nSoraya\nSuzan\nTakisha\nTawana\nTaylor\nThea\nTomeka\nToya\nViola\nYessenia\nAaron\nAnjanette\nAnnalisa\nAnya\nAshlee\nAva\nBilly\nBrea\nCandelaria\nCandi\nCarlene\nCharise\nCharisse\nCharlie\nChekesha\nCherri\nChrissy\nCristen\nCristie\nCristin\nDaina\nDanae\nDanisha\nDarcey\nDesire\nDionna\nDixie\nDominic\nElma\nErinn\nFlorentina\nGayle\nGeri\nGilda\nGinny\nGypsy\nHermelinda\nHolli\nIlona\nIsabelle\nJackeline\nJameelah\nJeniffer\nKarolyn\nKasie\nKendall\nKevin\nLaila\nLakeshia\nLakiesha\nLavonda\nLeandra\nLela\nLoraine\nLorinda\nMaren\nMario\nMarybel\nMelani\nMisha\nMyeisha\nNathalie\nNicki\nNikita\nNoreen\nNova\nOphelia\nPaola\nRachele\nRae\nRasheedah\nRaymond\nRenata\nRoni\nRoseanne\nRoxann\nRubi\nSeana\nShaina\nShanika\nShantell\nSusy\nSylvie\nTamar\nTamela\nTatiana\nTawny\nTemeka\nTenaya\nTerrie\nTiara\nTony\nTrista\nTuesday\nTyesha\nVelma\nWendie\nWinnie\nYolonda\nYvett\nAime\nAlejandro\nAline\nAlondra\nAlyse\nAndreana\nAnisa\nAnnika\nAntonio\nArianne\nAsha\nAundrea\nBenjamin\nBibiana\nBrande\nBrie\nBryn\nCamilla\nCarleen\nCarley\nCarli\nCelestina\nChantell\nCharleen\nCher\nCheree\nCheyanne\nCruz\nDani\nDanya\nDawnelle\nDolly\nDorene\nDori\nDorinda\nDusti\nEdwina\nElba\nEloise\nEna\nEvelin\nFreedom\nGenna\nGiovana\nGladis\nGregory\nHallie\nHazel\nHerlinda\nHerminia\nIraida\nJeneen\nJeni\nJeremy\nJerry\nJerusha\nJesenia\nJessika\nJoie\nJonathan\nJonelle\nJonna\nJovanna\nJudi\nJulieta\nJulisa\nKaci\nKassandra\nKayla\nKeli\nKeysha\nKia\nKimber\nKris\nLadawn\nLakenya\nLatesha\nLeesa\nLibby\nLinsey\nLisamarie\nLissa\nLivia\nLlesenia\nLorina\nLuis\nLurdes\nLyndsay\nMalena\nManya\nMarialuisa\nMariam\nMaricella\nMarika\nMichel\nMidori\nMilissa\nMoira\nMyriam\nNannette\nNecole\nNeva\nNydia\nNyree\nPatsy\nRandee\nRanee\nRashell\nRaylene\nRonald\nRoxane\nSabina\nScott\nShanel\nShanell\nShayne\nSherie\nShira\nShonte\nSimona\nStephen\nSunni\nTamesha\nTaneka\nTimothy\nToby\nTorri\nTory\nTravis\nValorie\nVerna\nWenona\nAcacia\nAdelaida\nAkia\nAkiba\nAlberta\nAlishia\nAlthea\nAmberly\nAmiee\nAnalilia\nAnnamaria\nAnneliese\nAsia\nAstrid\nAutum\nBambi\nBeatris\nBrandice\nBritney\nCameo\nCarlie\nCarlye\nCassidy\nChana\nChante\nCherisse\nCherry\nClarice\nClarisa\nClementina\nCorrinna\nCyndi\nDawnielle\nDemetria\nDetra\nDia\nDinah\nDione\nDonald\nElana\nElicia\nElysia\nEnriqueta\nErma\nEryn\nFancy\nFelecia\nFelisha\nFrancisco\nFreda\nGema\nGemma\nGenie\nGia\nGianna\nGrabiela\nIsaura\nIvory\nJamaica\nJanene\nJeffrey\nJesusita\nJolynn\nJulieanne\nKali\nKarisa\nKarma\nKarmen\nKatheryn\nKavita\nKeesha\nKenneth\nKera\nKimiko\nKimya\nKorrie\nLakishia\nLalita\nLanisha\nLarisa\nLaureen\nLawana\nLeeanna\nLetisha\nLissett\nLissette\nLizzette\nLucretia\nMachelle\nMagaly\nMaia\nMalina\nMandisa\nMarcelina\nMargaux\nMargret\nMarion\nMarisha\nMarlen\nMarlyn\nMaryellen\nMaryjane\nMelany\nMelvina\nMichal\nMika\nMina\nMirian\nMonet\nMonisha\nNailah\nNatalee\nNicholle\nNissa\nNita\nNoami\nOctavia\nOpal\nOscar\nPaloma\nPatience\nPaulina\nPepper\nPolly\nPrudence\nRaeann\nRaelene\nRanda\nRashanda\nReagan\nRebbecca\nRebecka\nRona\nRonica\nRoshanda\nSabra\nSage\nSakinah\nSantina\nShalene\nShalimar\nShanti\nSharmaine\nSharonda\nSheena\nSherice\nSherrell\nSilva\nSiobhan\nSophie\nSparkle\nStarlene\nSybil\nSyreeta\nTaisha\nTambra\nTammara\nTaya\nTena\nTenesha\nTiffaney\nTobi\nTonette\nTonisha\nTonja\nTorie\nToshia\nTresa\nTynisha\nZenaida\nZulma\nAbra\nAdelita\nAdena\nAdriene\nAgnes\nAlbert\nAlberto\nAli\nAlva\nAlyce\nAmeerah\nAmey\nAmmie\nAndera\nAngelika\nAngella\nAriane\nArwen\nAyesha\nBecki\nCamellia\nCami\nCammie\nCarlyn\nCarry\nCathrine\nCatina\nCharles\nCharlyn\nChelsie\nChirstina\nCinnamon\nClover\nDannette\nDaria\nDecember\nDeeann\nDeedee\nDevina\nDyan\nDyana\nDyann\nElisabet\nElizebeth\nEstelle\nFannie\nFelice\nFelicitas\nFelicity\nFlorinda\nGenelle\nGenoveva\nGermaine\nGigi\nGita\nGrasiela\nHaley\nHector\nHelene\nIna\nIsabella\nJacinda\nJacquelyne\nJacquelynn\nJanay\nJanessa\nJanett\nJazmin\nJeanene\nJenae\nJenel\nJenica\nJordan\nJori\nJulieann\nKameron\nKanisha\nKarry\nKary\nKatia\nKatrena\nKecia\nKelsi\nKenna\nKhristina\nKiera\nKimberli\nKimi\nKortney\nKory\nKourtney\nKyle\nLacie\nLakeysha\nLaquisha\nLarhonda\nLeia\nLeighann\nLivier\nLizzet\nLoren\nLorien\nLorin\nLucrecia\nLynnae\nMadelyn\nMagan\nMahogany\nMaira\nMalaika\nMalika\nMalisa\nMandee\nMarbella\nMarcelle\nMargot\nMarin\nMariza\nMarti\nMechelle\nMelba\nMelida\nMemory\nMeranda\nMiguel\nMikki\nMilagros\nMissy\nMoria\nNatisha\nNatividad\nNelida\nNicol\nNikia\nOdessa\nParis\nPedro\nPenelope\nPeter\nRafaela\nRashonda\nRaven\nRemy\nRenea\nRhiana\nRicki\nRikki\nRobbie\nRobbin\nRonee\nRoselia\nRoslyn\nRuben\nSarai\nSean\nSequoia\nSergio\nShanan\nSharie\nSharleen\nShawnette\nShawnte\nShereen\nShilpa\nShona\nShonta\nSienna\nSigne\nSoila\nStacee\nSteffanie\nStormy\nSyliva\nTalisa\nTalitha\nTamekia\nTashia\nTatanisha\nTausha\nTavia\nTeanna\nTessie\nTianna\nTiffini\nTorrey\nTreva\nTrish\nTristan\nTunisia\nVianey\nVictor\nVilma\nWendee\nXiomara\nXochil\nYessica\nZakiya\nZoila\nZulema\nAbbey\nAbril\nAdelia\nAfton\nAlda\nAlica\nAlida\nAlysa\nAmada\nAmberlyn\nAmina\nAmira\nAmoreena\nAnetra\nAngelena\nAnica\nAnisha\nAnneke\nAnnelise\nArasely\nAretha\nArgelia\nAria\nArielle\nArin\nArleen\nArtemisa\nAshlie\nAudrea\nAvery\nBarbie\nBarbra\nBlair\nBonny\nBrandon\nBrandye\nBritta\nBronwen\nBronwyn\nBryan\nBryna\nCandis\nCarl\nCarmel\nCaterina\nCelica\nChanell\nChanning\nCharis\nCharissa\nCharlette\nCherrie\nChiara\nChristeen\nChristene\nChristiane\nColby\nColene\nConsuela\nCourtnie\nDacia\nDalila\nDanell\nDanyell\nDelaina\nDelisa\nDenelle\nDenielle\nDennise\nDevin\nDiamond\nDimple\nDionicia\nDonielle\nDonita\nDyanna\nEbonie\nEddie\nEduardo\nElizabet\nEneida\nEnid\nErendira\nErik\nErnestine\nFaline\nFay\nFlorita\nFranchesca\nFrancoise\nFrank\nGale\nGenea\nGenesis\nGeorgiana\nGerardo\nGilbert\nGlori\nGoldie\nGregoria\nGuinevere\nHayley\nHoney\nIgnacia\nIran\nIsha\nIvana\nJacque\nJael\nJaney\nJanina\nJannet\nJared\nJaymee\nJeanny\nJenice\nJenise\nJennafer\nJennel\nJennell\nJennelle\nJennine\nJessamyn\nJessi\nJewel\nJimmy\nJoel\nJohnnie\nJohnny\nJolena\nJonnie\nJordana\nJosephina\nJovana\nJulee\nJulene\nKacy\nKai\nKandace\nKanika\nKarine\nKarlene\nKarli\nKatherin\nKathie\nKati\nKatisha\nKeely\nKeira\nKeith\nKenia\nKeshia\nKesia\nKitty\nKorie\nKorina\nLanetta\nLanie\nLanita\nLannette\nLaquita\nLarena\nLarina\nLaronda\nLashaunda\nLashay\nLatania\nLatashia\nLatausha\nLatoshia\nLauna\nLaurene\nLavina\nLeeanne\nLeisha\nLiane\nLianne\nLilly\nLizet\nLonna\nLorenza\nLuana\nLucero\nLucina\nLyn\nLynnetta\nLynsey\nMadonna\nMagali\nMaisie\nMaranda\nMaribell\nMarilu\nMarisella\nMarita\nMarquita\nMartinique\nMaryam\nMeesha\nMeggan\nMickie\nMikelle\nMonalisa\nMonette\nMyeshia\nNakesha\nNakeya\nNaomie\nNashira\nNatosha\nNeely\nNickie\nNickole\nNiesha\nNika\nNiya\nNoemy\nOlympia\nPatti\nRania\nRashawn\nRashelle\nRaul\nRebekkah\nReena\nRenita\nRima\nRisa\nRochell\nRomelia\nRomina\nRosalee\nRoselyn\nRosenda\nRosina\nRozanna\nRusty\nSami\nSanjuana\nShaleen\nShalena\nShanay\nShane\nShanelle\nShanette\nShanita\nShannah\nShannen\nShaunte\nShawntel\nShemika\nShera\nSherilyn\nSherita\nSherree\nSindia\nSirenia\nSobeida\nSonnet\nSonny\nSulma\nSumer\nSunday\nTacy\nTai\nTakiyah\nTalisha\nTamala\nTamarra\nTameko\nTamie\nTanaya\nTaneil\nTannia\nTarsha\nTeena\nTerah\nTeressa\nTiffiney\nTirzah\nTisa\nTobie\nTommie\nTrang\nTressa\nTroy\nTwila\nVanesa\nVicenta\nVida\nVivien\nWinter\nYana\nZabrina\nZoey\nZoraida\nZuleika\nJennifer\nMichelle\nJessica\nMelissa\nSarah\nMaria\nHeather\nElizabeth\nChristina\nLisa\nAmy\nNicole\nKimberly\nAngela\nStephanie\nKelly\nMonica\nVeronica\nRebecca\nShannon\nJamie\nAmanda\nLaura\nAndrea\nAmber\nJulie\nErin\nSara\nRachel\nPatricia\nChristine\nSandra\nCynthia\nErica\nDanielle\nMary\nApril\nWendy\nTiffany\nCrystal\nAlicia\nVanessa\nNancy\nKaren\nCarrie\nKatherine\nJaime\nDiana\nEmily\nSabrina\nAnna\nStacy\nErika\nGina\nMegan\nNatalie\nClaudia\nBrandy\nSusan\nDenise\nDawn\nAna\nTara\nLeticia\nTeresa\nMelanie\nAngelica\nTracy\nBrenda\nValerie\nMisty\nSonia\nMichele\nKristina\nRosa\nJill\nLeslie\nTamara\nStacey\nTina\nTanya\nHolly\nSummer\nHeidi\nKathleen\nVictoria\nJacqueline\nRenee\nLinda\nAllison\nCatherine\nAdriana\nKristy\nKristin\nKristen\nMonique\nKathryn\nShawna\nCindy\nDana\nJenny\nLindsay\nRobin\nBrandi\nTheresa\nMartha\nGuadalupe\nLorena\nLori\nMelinda\nSamantha\nChristy\nTammy\nJulia\nLeah\nDeborah\nMarisa\nDeanna\nCourtney\nYvette\nCristina\nRegina\nNorma\nDesiree\nSuzanne\nYolanda\nJanet\nYvonne\nGabriela\nKristi\nMaricela\nCarmen\nGloria\nAimee\nMarie\nAlison\nKristine\nBarbara\nIrene\nOlivia\nNichole\nSharon\nSylvia\nKatie\nMandy\nCarolyn\nRaquel\nAlma\nDiane\nVirginia\nAdrienne\nMarisol\nAngelina\nMargaret\nJoanna\nNatasha\nDonna\nTrisha\nYesenia\nAnn\nCarla\nFelicia\nKari\nKarla\nKatrina\nLauren\nEsmeralda\nMaribel\nAnnette\nSusana\nAnne\nCheryl\nBlanca\nAraceli\nJoy\nSilvia\nBrooke\nKelli\nCecilia\nJeanette\nAnita\nPriscilla\nKendra\nAisha\nElaine\nCaroline\nMarisela\nMargarita\nMarissa\nShelly\nPamela\nNaomi\nKrista\nRuth\nElisa\nKarina\nDarlene\nDebra\nLydia\nAngel\nAutumn\nKara\nRobyn\nCandice\nIsabel\nCarol\nEva\nCassandra\nMolly\nRachael\nElena\nKathy\nShauna\nShanna\nJaclyn\nKeri\nRebekah\nRuby\nTricia\nAshley\nJodi\nAlejandra\nKristie\nLindsey\nNadia\nPaula\nBonnie\nMelody\nRose\nEsther\nRachelle\nSheila\nBeth\nColleen\nJuanita\nLaurie\nLorraine\nConnie\nHelen\nMarina\nJanelle\nJasmine\nKelley\nKellie\nTrina\nToni\nTonya\nCara\nRhonda\nMarlene\nSherry\nIrma\nRocio\nSophia\nAlexandra\nRoxanne\nBridget\nCasey\nChristie\nAlisha\nArlene\nLuz\nLisette\nOlga\nStacie\nAngie\nKirsten\nRochelle\nAlexis\nCarolina\nCharlene\nBeatriz\nRamona\nStefanie\nTania\nEbony\nJudith\nMeredith\nCandace\nTanisha\nTraci\nCharity\nDolores\nEvelyn\nJoanne\nRita\nFarrah\nLatoya\nSandy\nShana\nAlisa\nBrandie\nFrances\nSelena\nJennie\nGriselda\nLucia\nSerena\nJenifer\nSalina\nSheri\nEileen\nJocelyn\nMaya\nRoberta\nRosemary\nSonya\nAudrey\nMiriam\nBianca\nEricka\nJohanna\nShirley\nRhiannon\nBernadette\nJeannette\nMindy\nBethany\nChrista\nCelia\nKerry\nMayra\nSelina\nAlice\nDelia\nGraciela\nJoyce\nTamika\nJanice\nTerri\nShelley\nCeleste\nChelsea\nNora\nTasha\nGrace\nJillian\nLiliana\nElsa\nHilary\nJami\nJana\nSally\nJody\nCathy\nCorina\nLatasha\nMeghan\nAntoinette\nLara\nJoann\nMia\nJanette\nJuana\nJudy\nKerri\nNoemi\nTabitha\nAngelique\nBecky\nChristi\nLourdes\nBelinda\nElisabeth\nFaith\nGeorgina\nNina\nHannah\nJean\nJenna\nLynn\nAmelia\nEllen\nHilda\nJane\nLena\nTaryn\nGenevieve\nLilia\nMiranda\nGretchen\nKim\nAmie\nJolene\nLesley\nLynette\nTeri\nTracey\nBetty\nMarcella\nVivian\nBertha\nJosephine\nDebbie\nDena\nTami\nAlyssa\nMarilyn\nYadira\nEdith\nMichael\nSasha\nBriana\nCarina\nCharlotte\nEsperanza\nGladys\nJanine\nNadine\nSofia\nAbigail\nClaire\nDina\nJeanne\nKate\nLaurel\nLizette\nNoelle\nChandra\nCherie\nMaritza\nCarly\nCatalina\nCorinne\nHope\nJacquelyn\nKizzy\nBeatrice\nHillary\nJamila\nLakisha\nMagdalena\nMariah\nAurora\nCari\nDora\nDorothy\nEstela\nImelda\nJodie\nLiza\nLupe\nMarla\nMaureen\nMercedes\nTracie\nCamille\nCori\nJosefina\nKimberley\nMandi\nMarlena\nRosalba\nShelby\nStaci\nCheri\nLea\nMarcela\nPauline\nRosalinda\nTameka\nAntonia\nCelina\nKarin\nKimberlee\nSommer\nEmma\nIris\nJaimie\nLora\nSunshine\nAlissa\nBeverly\nJackie\nLucy\nTerra\nAllyson\nKrystal\nLillian\nMelisa\nMyra\nSonja\nWendi\nConsuelo\nJanna\nKeisha\nSierra\nDianna\nIsela\nJeanine\nLatisha\nMarcia\nCandy\nDaisy\nDavid\nJeannie\nLeanne\nLoretta\nCarissa\nChantel\nLynda\nMiesha\nReyna\nDaniel\nMireya\nMyrna\nRosio\nSusanna\nBobbie\nGinger\nJessie\nMelina\nPeggy\nRosalva\nAthena\nAudra\nJanel\nLeilani\nMaggie\nRene\nRosario\nRosie\nShawn\nSherri\nWhitney\nAdrianna\nAracely\nCharmaine\nKatharine\nMaryann\nMirna\nNikki\nRena\nRyan\nSheree\nAlana\nAlyson\nDominique\nElvia\nHollie\nJayme\nPenny\nVicki\nAdrianne\nAileen\nAnastasia\nAnnie\nChrystal\nElisha\nElissa\nFrancine\nJanell\nMarianne\nMarta\nRashida\nBrittany\nClara\nFrancesca\nMarsha\nNoel\nRosalie\nRosanna\nSusie\nTori\nXochitl\nCathleen\nCory\nElvira\nJustine\nKenya\nLana\nMinerva\nMorgan\nTalia\nTiffani\nVickie\nGwendolyn\nMariana\nRosemarie\nBree\nCorrie\nDevon\nEvangelina\nFrancisca\nGabrielle\nJuliana\nKasey\nLuisa\nMarci\nSusanne\nCassie\nDeana\nElise\nGeneva\nGlenda\nKarrie\nKaty\nLeann\nMaisha\nMalinda\nMarjorie\nMona\nRebeca\nSocorro\nTammie\nValarie\nCorey\nCorrine\nFabiola\nGeorgia\nLeanna\nLiana\nPatrice\nReina\nAmi\nAnabel\nBrandee\nCatrina\nCorinna\nDarcy\nKaryn\nLakeisha\nLakesha\nStella\nBillie\nDarla\nDestiny\nEdna\nIngrid\nLarissa\nLina\nMariela\nMeagan\nNatalia\nRoxana\nTisha\nTonia\nAida\nAnissa\nBobbi\nFawn\nHarmony\nIda\nInez\nIvette\nLatanya\nOfelia\nRandi\nRonda\nShawnte\nAdela\nAubrey\nBrianna\nChristopher\nClarissa\nDavina\nDoreen\nEstella\nJasmin\nJoey\nJohn\nLidia\nMarivel\nPaige\nSheryl\nTennille\nTerry\nTiffanie\nVenessa\nVicky\nAnnmarie\nAriana\nChanda\nCorie\nCortney\nCristal\nJoleen\nJulissa\nKirstin\nLeila\nLily\nRoxanna\nSuzanna\nAmalia\nAmerica\nAnel\nAngelita\nElva\nHaley\nHaydee\nJames\nJason\nMalia\nMalissa\nPerla\nQiana\nTawnya\nUrsula\nWindy\nCarey\nCarie\nChanel\nCheyenne\nFlor\nGena\nJoelle\nLizeth\nMarcie\nMellissa\nMyisha\nNicolle\nRosalia\nVioleta\nAlina\nBrook\nCaitlin\nConcepcion\nConstance\nCora\nCorrina\nDanica\nDelilah\nElaina\nElia\nFlorence\nHelena\nIvy\nJoan\nJose\nKarie\nKristal\nMisti\nNakia\nNellie\nTammi\nTamra\nTiana\nViviana\nAlena\nAndria\nAnitra\nAzucena\nCaryn\nDoris\nGail\nGiselle\nJune\nKori\nLashonda\nLatrice\nLeigh\nMara\nRosalyn\nShamika\nShante\nShari\nSujey\nSunny\nSuzette\nTera\nTessa\nTrinity\nAngelia\nBelen\nCecelia\nCristy\nDanelle\nDayna\nFatima\nJanie\nJeannine\nJoni\nKerrie\nKira\nKisha\nLeia\nMari\nPearl\nRosalind\nRosaura\nSadie\nStar\nTabatha\nTanesha\nTia\nBerenice\nChristal\nChristiana\nChristin\nCoral\nEleanor\nEve\nGricelda\nJaqueline\nJenelle\nJuliet\nLacey\nLayla\nLiset\nMarcy\nMartina\nPaola\nShannan\nStarr\nTamar\nTanika\nAdriane\nAide\nAngeline\nAnthony\nArcelia\nClaudine\nEunice\nEvette\nIvonne\nJade\nJanae\nJenni\nJulianne\nKathrine\nLucinda\nLynne\nLynnette\nPetra\nRaven\nReanna\nRenae\nRobert\nViolet\nWanda\nAlysia\nAmparo\nDaniella\nElida\nEloisa\nGuillermina\nJan\nJeanna\nJosie\nKarissa\nLee\nLia\nLindy\nLorie\nMandie\nMicaela\nMyesha\nNanette\nNichol\nRaina\nSandi\nShanon\nShawnna\nSherrie\nShonna\nTamera\nTenisha\nThelma\nCameron\nCherish\nIliana\nJammie\nJanis\nJanuary\nJeri\nJesus\nJuliette\nKay\nManuela\nMirella\nNelly\nSalena\nSelene\nShayla\nSoledad\nSondra\nStefani\nSumer\nZoe\nAdrian\nAlexandria\nAnjelica\nAnnemarie\nBrenna\nBridgette\nCarisa\nCarmela\nChante\nColette\nDalia\nDarci\nDarcie\nDeanne\nDemetria\nDeserie\nEliza\nEmilia\nEmilie\nFaviola\nFrancis\nGabriella\nHayley\nHazel\nJaimee\nJeana\nJo\nJohnna\nKami\nLucille\nMackenzie\nMatthew\nMaxine\nMichell\nMonika\nRacheal\nRichard\nSimone\nTyra\nVenus\nZulema\nAlanna\nAlecia\nAlexa\nAlia\nBrian\nCharise\nCicely\nDalila\nDebora\nDeena\nDianne\nEugenia\nHolli\nIesha\nJayne\nJonelle\nJordan\nKamilah\nKevin\nLeeann\nLila\nLupita\nLyndsay\nMargie\nMargo\nMarian\nMellisa\nPilar\nRhianna\nRosana\nRyann\nShanda\nShayna\nStarla\nSue\nTamisha\nWilliam\nYanira\nZulma\nAdina\nAlejandrina\nAnika\nAnnabel\nAnnalisa\nAriel\nAsha\nBernice\nBetsy\nBrie\nCarin\nChastity\nDelfina\nDenisha\nEvelia\nJustina\nKindra\nKirstie\nKyla\nLashanda\nLatonya\nLouise\nMadeline\nMarguerite\nMelodie\nNidia\nNova\nRachell\nRhea\nRosalina\nShameka\nShaunna\nShellie\nSugey\nValeria\nAdelina\nAlba\nBambi\nBerta\nBrigitte\nCasandra\nCasie\nCharisse\nCherise\nCoreen\nDania\nDaniela\nDelores\nDusty\nFelecia\nFlora\nIleana\nIlene\nJada\nJameelah\nJonna\nJuan\nKacey\nKesha\nLanette\nLani\nLela\nLeona\nLissette\nLola\nLouisa\nMabel\nMarcelina\nMaricruz\nMarion\nMay\nPolly\nRegan\nRichelle\nRosanne\nRoseanna\nShalon\nShani\nShasta\nSkye\nSophie\nStacia\nTherese\nVera\nAdria\nAngelic\nAshlee\nAurelia\nBeatris\nBridgett\nCaren\nCelena\nChristian\nDaphne\nDara\nDionne\nErinn\nErnestina\nGillian\nGisela\nHortencia\nJesse\nJoseph\nLakiesha\nLizbeth\nLizet\nMark\nMaryanne\nMindi\nMollie\nPatrisia\nPenelope\nSpring\nStephani\nSteven\nValentina\nVelia\nXochilt\nYasmin\nYecenia\nAaron\nAime\nAlycia\nAraseli\nAyesha\nBeronica\nBreanna\nCallie\nCarole\nChantal\nChantelle\nChris\nColeen\nDanette\nElsie\nEstrella\nFarah\nGeorgette\nGia\nHanna\nJeremy\nJoana\nJolie\nJovita\nKeely\nKeli\nLacy\nLadonna\nLashawn\nLatricia\nLeonor\nLoraine\nLucila\nMaile\nMarlo\nMaura\nMichaela\nMoriah\nNikole\nPaulette\nPrincess\nRayna\nRosamaria\nRosita\nSamara\nShandra\nShanta\nSharlene\nShavon\nShira\nTaylor\nTyesha\nVanesa\nAbby\nAlexia\nAlva\nAmberly\nAndra\nAngelena\nArianna\nArmida\nAyana\nCarlene\nCarlos\nCarri\nChasity\nDannielle\nDeidre\nDenice\nDevin\nElana\nElicia\nGracie\nHoney\nJaneen\nJeanie\nJosette\nJulianna\nKaci\nKellee\nKiana\nKimberlie\nLizett\nLorrie\nLuis\nMarin\nMercy\nMilissa\nMimi\nNanci\nPaloma\nPatty\nPaul\nPhyllis\nRachele\nSerina\nShanell\nShaunte\nShelli\nShiloh\nSybil\nTeresita\nAddie\nAgnes\nAkilah\nAlida\nAlisia\nAmiee\nAnastacia\nAnnamarie\nAntonette\nBenita\nBlythe\nBrigette\nBronwyn\nCamilla\nCandi\nCarleen\nCharissa\nChloe\nChristen\nCindi\nCristi\nDanell\nDaniele\nDanika\nDesire\nDulce\nEden\nEryn\nEvonne\nFiona\nGisel\nGwen\nHerlinda\nIlda\nIsabelle\nIsis\nJacquelin\nJanett\nJannette\nJaymie\nJesenia\nJesica\nJewel\nJoi\nJoshua\nJoslyn\nKacie\nKameelah\nKasandra\nKatina\nKristyn\nLatosha\nLeandra\nLorene\nMariann\nMistie\nNatividad\nNelida\nNicolette\nNikia\nNissa\nPhoebe\nQuiana\nRae\nSabina\nSage\nShara\nSharee\nSherie\nShonta\nSomer\nSusannah\nTamesha\nTatiana\nTerrie\nTobi\nWillow\nWinnie\nAdelita\nAmee\nAnnamaria\nAntionette\nAnya\nArgelia\nBrianne\nBrittney\nCandie\nCathrine\nCathryn\nCecily\nChristel\nChristiane\nCinthia\nDahlia\nDanita\nDawna\nDesirae\nDolly\nEboni\nElla\nElyse\nFaye\nFelisa\nFrankie\nJacklyn\nJaimi\nJazmin\nJeffrey\nJena\nJessika\nJoel\nJohnnie\nJulieta\nKarri\nKayla\nKelsey\nKenisha\nKia\nKristiana\nLatesha\nLavonne\nLawanda\nLiberty\nLilian\nLilliana\nLisett\nLisset\nLorna\nLuciana\nLucretia\nMaia\nMariaelena\nMarilynn\nMarti\nMelonie\nMendy\nMicheal\nMina\nNereida\nNubia\nNydia\nOriana\nRana\nRonnie\nRoseann\nRowena\nSarina\nSebrina\nShanika\nSharla\nSheena\nSiobhan\nTamekia\nTimothy\nTonisha\nTrinidad\nVictor\nVikki\nZenaida\nAda\nAnamaria\nAriane\nArica\nAshleigh\nBarbra\nBritt\nBuffy\nCaron\nCatharine\nCharleen\nClarisa\nCrista\nDanya\nDaria\nDeandra\nDeann\nDeidra\nDella\nEdelmira\nEmilee\nEnedina\nErlinda\nGayle\nGilda\nGinny\nGisele\nHermelinda\nJeni\nKanika\nKarey\nKenneth\nKhalilah\nLauri\nLetisia\nLissa\nLois\nLorelei\nManuel\nMariza\nMatilde\nMckenzie\nMichel\nMika\nMilagros\nMoira\nMyla\nNakisha\nNannette\nNicola\nPaulina\nPiper\nRory\nRoxann\nScarlett\nShawnee\nShea\nShelia\nShonda\nSparkle\nSuzy\nTana\nTarah\nThea\nTomeka\nTorrie\nTory\nTracee\nTrista\nZakiya\nAaliyah\nAdam\nAdele\nAlberta\nAleta\nAlishia\nAlysha\nAmada\nAnalilia\nAndrew\nAnjanette\nArianne\nAsia\nAundrea\nAura\nAva\nBreezy\nBrisa\nCary\nCassidy\nCelestina\nCharlie\nCherisse\nCody\nCristine\nDanae\nDaniell\nDanyelle\nDavida\nDee\nDeirdre\nDinah\nDorian\nElisabet\nFrancisco\nGeorge\nGeraldine\nGeri\nGianna\nIdalia\nJamey\nJamilah\nJeanene\nJenae\nJenee\nJina\nJodee\nJuli\nKatheryn\nKhara\nLakeshia\nLanisha\nLarisa\nLeana\nLiane\nLlesenia\nLolita\nMalisa\nMaranda\nMarlana\nMarleen\nMarni\nMarnie\nMarysol\nMeaghan\nMechelle\nMicah\nMitzi\nMoria\nMyiesha\nNatacha\nNathalie\nNatisha\nNoelia\nRani\nRenita\nRikki\nRoberto\nRoselia\nRoslyn\nSariah\nSarita\nScott\nShanti\nShawnda\nShawnta\nShawntae\nShayne\nShona\nStephany\nStephen\nStephenie\nTawni\nTenesha\nTerah\nTiesha\nTiffiny\nValorie\nVannessa\nYessenia\nAdelaida\nAdriene\nAkisha\nAlethea\nAllegra\nAmity\nAnalisa\nAndre\nAngella\nAnnabelle\nArmando\nAryn\nAyanna\nAzure\nBessie\nCarmel\nCarmelita\nCharla\nClarice\nClaudette\nCorine\nDanyell\nDarline\nDinora\nDorothea\nEddie\nEdward\nElda\nEllie\nEloise\nEnriqueta\nEric\nEstelle\nEthel\nEvangeline\nGiovanna\nGreta\nHaidee\nIlana\nIran\nJacinda\nJanee\nJanessa\nJeniffer\nJennine\nJerri\nJessi\nJohnny\nJosephina\nJulee\nJustin\nKacy\nKameron\nKandi\nKandice\nKarena\nKarli\nKarly\nKarolyn\nKelle\nKimber\nKris\nKrisha\nKrysta\nKymberly\nLakeysha\nLashanna\nLeslee\nLetisha\nLibby\nLorenza\nLorina\nLucrecia\nLurdes\nLus\nMagnolia\nMaira\nMargot\nMariko\nMario\nMartine\nMaryam\nMeggan\nMerry\nMildred\nMiroslava\nNaima\nNicki\nNiki\nNikisha\nNikkia\nNola\nNona\nOralia\nPatrica\nPrecious\nRaegan\nRafael\nRafaela\nRasheda\nRaylene\nRiann\nRicardo\nRina\nRosalynn\nRuben\nSandie\nSerenity\nShakira\nShanelle\nShantae\nShantell\nShareen\nShaunda\nShavonne\nShereen\nShonte\nSienna\nStephaine\nStormy\nSulema\nSusy\nTaisha\nTakisha\nTandra\nTarrah\nTashia\nTenille\nThalia\nThomas\nTianna\nTiara\nTiffaney\nTomika\nTonja\nTrish\nTwyla\nValery\nVida\nXochil\nAlesha\nAlvina\nAmina\nAnabell\nAndreana\nAnisa\nAnneliese\nAnnika\nArleen\nAshanti\nAshlie\nAsusena\nAugust\nBernadine\nBettina\nBobby\nBonita\nBonny\nBrandon\nBrett\nBryan\nCambria\nCandis\nCarlie\nCarman\nCarmina\nCeline\nChaka\nChara\nCharles\nChere\nCherry\nChiara\nChrissy\nClaribel\nCruz\nDani\nDanisha\nDanna\nDarleen\nDelana\nDelicia\nDelila\nDeseree\nDione\nDorene\nDori\nDustie\nElba\nElma\nEmmy\nErendira\nErma\nErnestine\nEsperansa\nEulalia\nFanny\nFara\nFernando\nGabriel\nGoldie\nGregoria\nHailey\nHerminia\nInes\nJanene\nJenell\nJennefer\nJenniffer\nJolynn\nJoselyn\nJovana\nJovanna\nJulieann\nKarma\nKathie\nKathryne\nKati\nKendall\nKiara\nKiera\nKimiko\nKizzie\nLaila\nLakeesha\nLakenya\nLarhonda\nLarry\nLashawna\nLatrina\nLauralee\nLeighann\nLenore\nLetecia\nLilly\nLinnea\nLisbeth\nLisha\nLizabeth\nLoreen\nLyla\nLynsey\nMadeleine\nMadelyn\nMagda\nMalika\nMaren\nMargret\nMariam\nMarianna\nMaricella\nMarika\nMarilu\nMarlina\nMarsela\nMaryjane\nMarylou\nMatilda\nMelodee\nMelva\nMelynda\nMerissa\nMissy\nMonet\nMonic\nNaila\nNichelle\nNiesha\nNoemy\nOctavia\nPatti\nPetrina\nPriya\nRaeann\nRebecka\nRebeka\nRebekka\nRenea\nRhiana\nRia\nRobbie\nRona\nRoseanne\nSanta\nSarai\nSerene\nShalonda\nShantel\nShaun\nShaunta\nShawntay\nShawntee\nSita\nSky\nSoraya\nSydney\nTanaya\nTawny\nThais\nTinisha\nTorri\nTrudy\nTwila\nVilma\nWinona\nXenia\nYasmine\nYesica\nAlaina\nAlayne\nAlbert\nAlesia\nAlthea\nAnalia\nAndrina\nAnessa\nAnjela\nAnnel\nAntonio\nArmanda\nAubree\nAviva\nAya\nAziza\nBibiana\nBrandice\nBrigid\nBritta\nCamelia\nCami\nCarley\nCelene\nCelestine\nCerissa\nChanelle\nCharline\nCheree\nChristene\nChristianne\nChrystie\nCiara\nCinnamon\nCristin\nCyndi\nDafina\nDallas\nDamaris\nDebby\nDeeann\nDeedee\nDeja\nDelaney\nDenita\nDionna\nDixie\nDominque\nDorina\nEbonie\nEduardo\nElizabet\nElizebeth\nEnrique\nEster\nFay\nFeather\nFelice\nFranchesca\nFrank\nGema\nGenny\nGerardo\nGiana\nGinamarie\nGladis\nGregory\nHallie\nHarriet\nHelene\nJackeline\nJacki\nJaclynn\nJacque\nJacquline\nJamaica\nJaymi\nJazmine\nJene\nJenine\nJoelene\nJoellen\nJordana\nKathia\nKatrice\nKeesha\nKeila\nKenna\nKhadijah\nKristel\nKristian\nKylie\nKyra\nLacresha\nLanita\nLaquisha\nLashana\nLatrisha\nLavinia\nLawana\nLeeanna\nLeora\nLindsy\nLinette\nLissett\nLondon\nLoriann\nLouann\nLove\nLuana\nLucina\nMachelle\nMaegan\nMalaika\nMalisha\nMarbella\nMariella\nMarilee\nMarisha\nMarva\nMarybel\nMaryellen\nMaryrose\nMeadow\nMelani\nMelany\nMelony\nMelvina\nMelyssa\nMica\nMichal\nMila\nMilena\nMira\nMisha\nMya\nNailah\nNakesha\nNakita\nNiccole\nNicholle\nNicol\nNinfa\nNohemi\nNoreen\nNyesha\nPrairie\nPriscila\nRaeanne\nRanee\nRasheedah\nRashelle\nRaymond\nReba\nReena\nRenata\nRenisha\nRheanna\nRima\nRobbin\nRochell\nRoni\nRosalee\nRoselyn\nRoshawn\nRudy\nSacha\nScarlet\nSean\nSenaida\nSeptember\nShaina\nShalanda\nShalene\nShanan\nShanee\nShaneka\nShanise\nSharmaine\nSharron\nShawntel\nShay\nShiela\nShoshana\nShyla\nSilbia\nSteffanie\nSunday\nTamatha\nTamica\nTamiko\nTaneisha\nTaneka\nTavia\nTegan\nTeneka\nTequila\nTesha\nTirzah\nTora\nTosha\nToya\nTressa\nTritia\nTroy\nTyree\nVenita\nVeronika\nXiomara\nYael\nYanet\nYasmeen\nYicel\nZandra\nZoila\nAdelia\nAdriann\nAesha\nAimie\nAlex\nAlexander\nAlfredo\nAli\nAlondra\nAlysa\nAmmie\nAmoreena\nAnarosa\nAndres\nAngelene\nAnica\nAnisha\nAnnetta\nAntonietta\nAntonina\nApryl\nAqueelah\nAretha\nArika\nArline\nArturo\nAstrid\nAutum\nAyisha\nAzalia\nBilly\nBlake\nBreana\nBreanne\nBrigit\nBryna\nCandida\nCarli\nCassaundra\nChana\nChanell\nChantell\nCharisma\nCharlena\nChenoa\nCherri\nCheryle\nChistina\nClare\nCollette\nCorin\nCorissa\nCristen\nCristie\nCybil\nCydney\nDacia\nDale\nDannie\nDanyel\nDava\nDedra\nDelma\nDenika\nDenisse\nDennis\nDennise\nDenyse\nDesere\nDetra\nDiamond\nDominic\nDorthy\nDouglas\nDyana\nElayne\nElidia\nElysia\nEricca\nEstee\nFelipa\nFelisha\nFlavia\nFreedom\nGaladriel\nGale\nGenoveva\nGermaine\nHeide\nHeidy\nHermila\nHortensia\nIleen\nIndia\nIsabell\nJamia\nJanise\nJannet\nJenessa\nJenise\nJesseca\nJohana\nJonathan\nJoya\nJulene\nJuliane\nJuliann\nJuniper\nKachina\nKai\nKanisha\nKarah\nKareemah\nKariann\nKarine\nKarisa\nKarna\nKary\nKasha\nKasia\nKathlene\nKathlyn\nKatia\nKaycee\nKeith\nKelleen\nKellye\nKenesha\nKenyetta\nKeshia\nKeturah\nKimberlyn\nKiran\nKorie\nKorina\nKrystina\nKyle\nKylee\nLaci\nLacie\nLady\nLakia\nLanae\nLaneisha\nLanika\nLaquita\nLarina\nLaronda\nLashaun\nLashawnda\nLashon\nLashunda\nLaticia\nLatonia\nLaureen\nLeatha\nLeeanne\nLenee\nLeon\nLeondra\nLetha\nLetticia\nLianna\nLianne\nLicet\nLili\nLisamarie\nLiz\nLonnie\nLorri\nLory\nLou\nLovina\nLuann\nLyndsey\nLynea\nMae\nMahogany\nMai\nMaida\nMargaux\nMariateresa\nMaricel\nMariel\nMarquetta\nMarsi\nMarty\nMarvin\nMarybeth\nMattie\nMayte\nMele\nMemory\nMeri\nMicheline\nMieko\nMignon\nMiki\nMinnie\nMirian\nMiya\nMoana\nMonalisa\nMoncia\nMyeisha\nMyeshia\nMyriah\nMyshia\nNadya\nNatalee\nNatascha\nNatosha\nNeely\nNeha\nNeisha\nNena\nNeomi\nNia\nNickole\nNicky\nNikesha\nNikita\nNinette\nNisha\nNita\nNoelani\nNoni\nNoriko\nOctober\nOdessa\nOliva\nOlympia\nOrquidea\nPatience\nPhillip\nPia\nPricilla\nRacquel\nRaelene\nRashonda\nRaul\nRemy\nRian\nRica\nRicci\nRisa\nRomelia\nRomina\nRonisha\nRoshanda\nRoxane\nRoyce\nRubi\nSalvador\nSanya\nSarena\nSascha\nSaundra\nSeema\nShala\nShaleen\nShalimar\nShalyn\nShamara\nShanae\nShane\nShanette\nShannel\nShantee\nSharise\nSharona\nSharonda\nShavonda\nShawnie\nShekinah\nShellee\nSherene\nSheridan\nSherrill\nShireen\nShree\nSimona\nSindy\nSirena\nSiri\nStarlett\nSteffany\nSunnie\nSyreeta\nTakiyah\nTali\nTalin\nTalisa\nTameca\nTamia\nTaneshia\nTanna\nTarra\nTatum\nTawanna\nTawna\nTeasha\nTemeka\nTenaya\nTeressa\nTessie\nThuy\nTierney\nTiffiney\nTommi\nTreena\nTresa\nTreva\nTristan\nTuesday\nTunisia\nTwanna\nTyeisha\nTyisha\nTynesha\nTynisha\nTyresha\nVashti\nVelma\nWendee\nYancy\nYezenia\nYisel\nZaida\nZenia\nZuleika\nJennifer\nMelissa\nJessica\nMichelle\nSarah\nChristina\nNicole\nMaria\nElizabeth\nHeather\nLisa\nAngela\nAmy\nStephanie\nKimberly\nKelly\nRebecca\nVeronica\nAmanda\nMonica\nAmber\nAndrea\nLaura\nShannon\nErin\nChristine\nRachel\nCrystal\nJulie\nSara\nJamie\nDanielle\nPatricia\nCynthia\nVanessa\nErica\nSandra\nApril\nMary\nTiffany\nAlicia\nNancy\nKatherine\nWendy\nEmily\nAnna\nDiana\nKaren\nCarrie\nMegan\nErika\nNatalie\nGina\nKristina\nBrandy\nStacy\nDenise\nClaudia\nMelanie\nSabrina\nTeresa\nAngelica\nValerie\nDesiree\nSusan\nTina\nTracy\nLinda\nTara\nAna\nKristen\nJaime\nTanya\nLeslie\nLeticia\nStacey\nBrenda\nKristy\nDawn\nJacqueline\nMichele\nAllison\nJulia\nKathryn\nMonique\nKristin\nSonia\nJill\nRosa\nAdriana\nBrandi\nMisty\nTamara\nCatherine\nHeidi\nVictoria\nRenee\nKathleen\nLindsay\nHolly\nMartha\nSamantha\nCourtney\nKatie\nCheryl\nTheresa\nSummer\nMelinda\nLorena\nChristy\nJenny\nLauren\nDeborah\nGabriela\nCristina\nRobin\nGuadalupe\nLori\nCindy\nYvonne\nMayra\nLeah\nYolanda\nDana\nRegina\nNichole\nKatrina\nMarisa\nBarbara\nSharon\nGloria\nDeanna\nBrooke\nSuzanne\nOlivia\nCarmen\nMarie\nKristine\nYvette\nTammy\nSylvia\nJanet\nKristi\nAlison\nRaquel\nMarissa\nMaricela\nAlma\nIrene\nShawna\nNatasha\nAnne\nNorma\nCecilia\nAimee\nCarolyn\nSusana\nPriscilla\nAngelina\nAnn\nBlanca\nAdrienne\nMargaret\nVirginia\nYesenia\nMandy\nKarina\nMaribel\nLindsey\nAshley\nEsmeralda\nKari\nKarla\nCarolina\nCarla\nElena\nKelli\nTrisha\nJeanette\nJaclyn\nDebra\nJoy\nCandice\nJoanna\nRuth\nShauna\nPaula\nRachael\nFelicia\nColleen\nJanelle\nSilvia\nMarisol\nDiane\nAlejandra\nDarlene\nLaurie\nPamela\nCassandra\nNaomi\nAraceli\nAutumn\nAlexandra\nCaroline\nKara\nKrista\nEva\nAnnette\nMarlene\nMindy\nMolly\nRochelle\nElisa\nRuby\nRocio\nAnita\nJuanita\nKendra\nDonna\nElaine\nAngel\nMeghan\nMelody\nRita\nAlisha\nMargarita\nBonnie\nJasmine\nEsther\nShanna\nMarisela\nRachelle\nSandy\nLorraine\nRose\nCara\nRobyn\nHelen\nIsabel\nCasey\nCorinne\nLydia\nRebekah\nTrina\nBethany\nCarol\nCharlene\nEbony\nRoxanne\nShana\nLuz\nConnie\nJudith\nCandace\nSheila\nShelly\nFrances\nTraci\nKellie\nLatoya\nAngie\nJodi\nTonya\nEvelyn\nIrma\nKirsten\nLucia\nSophia\nStacie\nChelsea\nKelley\nAlexis\nMeredith\nTabitha\nKristie\nToni\nArlene\nAudrey\nMarina\nJillian\nRhonda\nGriselda\nTricia\nAlice\nDevon\nBeatriz\nChristie\nJenifer\nKeri\nMiriam\nSherry\nBernadette\nBianca\nEileen\nAja\nCharity\nNoemi\nGrace\nJennie\nOlga\nNadia\nAmelia\nElisabeth\nGenevieve\nSerena\nBeth\nCorina\nJocelyn\nDolores\nLacey\nJana\nJoyce\nNora\nStefanie\nTamika\nAlisa\nDebbie\nKerry\nShelley\nTanisha\nDelia\nJanice\nKathy\nAisha\nElsa\nJeannette\nJoanne\nHilary\nGraciela\nLynette\nRosemary\nTania\nBelinda\nChrista\nLiliana\nSonya\nBridget\nFaith\nLisette\nBeverly\nJane\nLourdes\nSheri\nHilda\nJudy\nKimberley\nRosalinda\nJolene\nMarcella\nNina\nNoelle\nJacquelyn\nKrystal\nLynn\nAbigail\nAlyssa\nAntoinette\nJuana\nKate\nAmie\nBrandie\nEricka\nGinger\nHillary\nIris\nMelisa\nMyra\nSelena\nTasha\nAurora\nCelia\nEllen\nLizette\nMia\nRhiannon\nDena\nJanine\nJessie\nNikki\nRamona\nEdith\nImelda\nMarcia\nMiranda\nAnnie\nLatasha\nLena\nLesley\nRoberta\nSofia\nCarly\nDianna\nEsperanza\nHannah\nMarcela\nStaci\nBecky\nCelina\nJoann\nJosephine\nMaureen\nDorothy\nJami\nMercedes\nMichael\nRyan\nSierra\nCamille\nJody\nRosario\nSasha\nAngelique\nJenna\nMarta\nRene\nSally\nSheryl\nTaryn\nAlana\nBriana\nConsuelo\nHarmony\nJohanna\nBertha\nGeorgina\nKim\nTami\nCarina\nJackie\nLatisha\nLaurel\nLiza\nShelby\nVivian\nCathy\nKatharine\nMarilyn\nBetty\nChandra\nIsela\nJean\nMarla\nTeri\nTerri\nTracey\nCeleste\nChrystal\nJanette\nLea\nMagdalena\nSonja\nAthena\nChristi\nJosefina\nLilia\nMaritza\nShirley\nAntonia\nCarissa\nClaire\nFrancine\nKeisha\nLeanna\nSalina\nYadira\nCharlotte\nDina\nFrancisca\nLara\nMaira\nMarianne\nMaya\nPerla\nRebeca\nCheri\nCherie\nDora\nElvia\nLakisha\nAlissa\nEvangelina\nJeanne\nSelina\nBrittany\nDominique\nEmma\nJamila\nKerri\nLeilani\nTerra\nCandy\nCatalina\nFabiola\nKasey\nKenya\nMarjorie\nMarsha\nNadine\nSherri\nAubrey\nBeatrice\nElvira\nGretchen\nJeanine\nKarin\nBobbie\nElisha\nKaty\nLacy\nPauline\nAllyson\nCorrine\nCory\nHollie\nHope\nLeanne\nMarlena\nMireya\nWhitney\nAudra\nCassie\nGladys\nJanel\nLidia\nMariah\nStella\nAnabel\nJanell\nLillian\nMariana\nVioleta\nAlyson\nJoan\nRosio\nViviana\nBrianna\nClarissa\nJodie\nKimberlee\nMelina\nTiffani\nVicki\nVicky\nAdrianne\nCaryn\nGisela\nJanna\nMandi\nMara\nMirella\nTera\nCari\nChrissy\nCristy\nDarcy\nGabrielle\nJayme\nJeannie\nJuliana\nLakeisha\nLucy\nMeagan\nRena\nRosie\nShawn\nSommer\nDaisy\nEstella\nLana\nLoretta\nLuisa\nLupe\nMorgan\nAracely\nDestiny\nNatalia\nPeggy\nTawny\nWendi\nAdrianna\nAriana\nDavid\nDavina\nEstela\nInez\nKaryn\nLarissa\nLatanya\nMalinda\nMona\nMyesha\nReina\nTracie\nCatrina\nDanelle\nJasmin\nMaryann\nNichol\nTori\nAngelita\nBrenna\nDeana\nLiana\nMarci\nNoel\nPaige\nRosalba\nSusie\nTalia\nAzucena\nCarey\nDalia\nFatima\nLynda\nMyrna\nPaola\nQiana\nReyna\nSocorro\nSunshine\nSusanna\nAlexandria\nBree\nCori\nEleanor\nGwendolyn\nHelena\nJune\nLina\nMirna\nOfelia\nPenny\nTameka\nTammie\nTia\nYajaira\nAileen\nCortney\nDayna\nElva\nGail\nIngrid\nJuliet\nRobert\nSusanne\nVenus\nXochitl\nAmalia\nBobbi\nChanel\nChristopher\nGiselle\nKarrie\nLeigh\nLizbeth\nLizeth\nMalissa\nRosemarie\nTamra\nTisha\nAnastasia\nBelen\nCathleen\nEdna\nFrancesca\nJulianne\nLatrice\nLeia\nMaisha\nRaven\nTawnya\nValarie\nAime\nCharmaine\nClara\nDanette\nDevin\nGlenda\nHaley\nJose\nKristal\nKyla\nLeann\nLeila\nLora\nRosalyn\nSadie\nSheree\nSimone\nTanesha\nVickie\nAbby\nCorinna\nGabriella\nJade\nJaimie\nJeannine\nJenelle\nLakesha\nMarcie\nMarcy\nMeghann\nPearl\nRandi\nRosalie\nRosanna\nTabatha\nAdriane\nBrandee\nBridgette\nChristal\nCorey\nDianne\nDoreen\nEunice\nFarrah\nGricelda\nLatonya\nMonika\nNelly\nRashida\nRosalva\nShanon\nSherrie\nSunny\nTiana\nTonia\nTrinity\nAdela\nAndria\nBrianne\nDarla\nElise\nGeorgia\nIvy\nJanie\nJesus\nKenisha\nMalia\nMariela\nMinerva\nQuiana\nRoxana\nSuzanna\nAlysia\nAnel\nAnthony\nAriane\nCecelia\nColette\nDelilah\nDoris\nElaina\nElissa\nIvonne\nJena\nKori\nLani\nLily\nMisti\nRosalia\nUrsula\nBernice\nBillie\nCarmela\nChantel\nChristen\nDanica\nEliza\nGena\nGeneva\nJacklyn\nJoseph\nKirstin\nLupita\nLyndsey\nMellisa\nNicolle\nPatrice\nRonda\nShante\nShari\nStar\nSuzette\nTerry\nTessa\nVenessa\nWindy\nAdrian\nAlanna\nAlycia\nAnissa\nAnnamarie\nBreanna\nDara\nDeidre\nEugenia\nFaye\nJoleen\nJoni\nJustine\nKathrine\nKellee\nKylie\nLilian\nMaxine\nMellissa\nRhianna\nShanika\nShaunna\nStarla\nStephenie\nThelma\nYasmin\nAida\nAlexa\nAnnemarie\nChristian\nCorrie\nDaniela\nDeanne\nFawn\nJames\nJanae\nJason\nJo\nLee\nLindy\nLouise\nLucinda\nMaggie\nMargo\nMarian\nMay\nMyisha\nNellie\nSalena\nShannan\nShasta\nShayla\nShiloh\nSoledad\nSondra\nValeria\nVera\nAriel\nBetsy\nCasandra\nDaniella\nEloisa\nIesha\nIvette\nJaqueline\nJeanna\nKindra\nKisha\nKizzy\nKyra\nMiesha\nPenelope\nRichelle\nRina\nRosanne\nSerina\nShawnta\nWilliam\nAda\nAlena\nBrook\nCaren\nCrissy\nDanae\nDaphne\nDesirae\nDulce\nFaviola\nFlor\nGayle\nGwen\nHolli\nIda\nJanis\nJohn\nJuan\nKira\nLeona\nLorie\nMindi\nPaulina\nPetra\nRosaura\nShameka\nShani\nShayna\nTamera\nTennille\nArmida\nBerenice\nBeronica\nCallie\nCameron\nCorrina\nDaniel\nDenice\nDusty\nEboni\nGillian\nJammie\nJesse\nJordan\nJosie\nJustin\nLadonna\nLeana\nLeeann\nMichaela\nRacheal\nRayna\nReanna\nShanta\nShavon\nShawnte\nStarr\nSumer\nTanika\nTenisha\nZulema\nAlina\nBrian\nCathryn\nChasity\nChloe\nCora\nCoral\nCorie\nCristine\nEmilia\nEmilie\nEric\nFrancis\nGinny\nGiovanna\nIleana\nJan\nJaneen\nJeana\nJeanie\nKacey\nKeely\nKiley\nLissette\nMandie\nMartina\nMaura\nPhyllis\nPilar\nRhea\nRosita\nRoxanna\nShara\nThea\nTherese\nYanira\nAide\nAlecia\nAnnika\nAnnmarie\nArianna\nArianne\nCarri\nChantal\nChastity\nChristel\nConcepcion\nConstance\nEve\nGuillermina\nJanuary\nJoey\nJulissa\nKai\nKarie\nKelsey\nKerrie\nKris\nLawanda\nLayla\nLoraine\nMaile\nManuela\nMargie\nMari\nMarivel\nMildred\nMirian\nNanette\nRosalina\nRoseanna\nShamika\nShavonne\nShawnna\nShellie\nShonna\nSusannah\nTeresita\nAaron\nAdelina\nAlisia\nCaitlin\nCarie\nCarlos\nCarmelita\nCorine\nDalila\nDannielle\nDarci\nDeena\nDemetria\nEstrella\nGeraldine\nGilda\nHaydee\nHayley\nHortencia\nIliana\nJesica\nJuliette\nKesha\nKiana\nKrissy\nLeandra\nLinsey\nLola\nMelodie\nMicaela\nMichel\nMollie\nNathalie\nNicholas\nNikia\nNikole\nQuinn\nRachell\nRegan\nRichard\nRosana\nRoseann\nRubi\nRyann\nSandi\nSarina\nSarita\nShaunte\nSheena\nSpring\nStephany\nTana\nTiffanie\nAlba\nAlejandrina\nAlia\nAngelic\nAnika\nAraseli\nArcelia\nAva\nAyesha\nBridgett\nCarole\nChante\nCharissa\nCherise\nCiara\nCinthia\nCristal\nElida\nEvette\nFlora\nFlorence\nGracie\nHazel\nIlene\nJameelah\nKanika\nLacie\nLashonda\nLetitia\nLia\nLila\nLinnea\nLisbeth\nLiset\nLorelei\nLucila\nMabel\nMaren\nMarion\nMarylou\nNicolette\nPaul\nRafaela\nRenae\nSharlene\nShea\nSiobhan\nTammi\nTonisha\nViolet\nAdina\nAdria\nAlaina\nAlesha\nAmi\nAngeline\nAnjanette\nAshlee\nAsia\nAurelia\nBambi\nBarbra\nBrittney\nCamilla\nCharisse\nCheyenne\nChristiana\nChristin\nDania\nDeirdre\nDelfina\nDeserie\nElia\nEnedina\nGianna\nJaimee\nJeri\nJesenia\nJoshua\nKarissa\nKassandra\nKatheryn\nKayla\nKyle\nLanette\nLatosha\nLetisia\nMalika\nMarcelina\nMichell\nNakia\nNiki\nRoxann\nShanda\nShanell\nSharonda\nSue\nTamica\nTamisha\nWanda\nWinter\nAnitra\nAnjelica\nAnya\nAyanna\nBerta\nBrandon\nBrigitte\nColeen\nDanika\nDanita\nDionne\nElsie\nErnestina\nGabriel\nGeorgette\nGisel\nJeffrey\nJeniffer\nJennefer\nJenni\nJenniffer\nJolie\nJulianna\nKami\nKamilah\nKarri\nKhalilah\nLorna\nLouisa\nLynnette\nMadeline\nMarine\nMark\nMaryanne\nMatthew\nMelynda\nMistie\nPatty\nPrecious\nRacquel\nRae\nRosalind\nRosamaria\nRoseanne\nSelene\nSharla\nSteven\nTaylor\nTyra\nWillow\nZoe\nAdelita\nAmerica\nAmina\nAndrew\nAngelia\nAyana\nBeatris\nCarisa\nCarleen\nCarlie\nCecily\nCelena\nChanda\nClare\nDanna\nDeidra\nElla\nGenoveva\nGreta\nHailey\nHerlinda\nJacquelin\nJamaica\nJanee\nJanessa\nJazmin\nJenae\nJorge\nJosette\nJovita\nJuli\nJustina\nKarena\nKarey\nKay\nLenora\nLeonor\nLissa\nLizet\nLolita\nLorinda\nLucero\nLus\nLynsey\nMackenzie\nMaegan\nMarianna\nMarlana\nMeaghan\nMelonie\nNakisha\nNanci\nNicholle\nNiesha\nNydia\nPaloma\nPaulette\nRaina\nRosalynn\nSabina\nShanti\nStefani\nTarah\nTrinidad\nValentina\nYecenia\nYisel\nAdele\nAlishia\nAnamaria\nAnnabel\nAshleigh\nBenjamin\nCarmina\nCharleen\nCharles\nChelsey\nCherish\nCicely\nCindi\nClaudine\nDamaris\nDebora\nDelores\nDiamond\nElana\nEvonne\nGenesis\nGia\nIna\nJaclynn\nJennette\nJoi\nJonelle\nJonna\nKacy\nKatina\nKeli\nKimberli\nKimberlie\nKristan\nKristel\nLaila\nLashanda\nLashawn\nLatricia\nLela\nLeonora\nLynne\nMaricruz\nMario\nMarni\nMicah\nMicheal\nMonet\nMoriah\nMyeshia\nNatosha\nNereida\nNeva\nNiccole\nNichelle\nNicola\nNisha\nNoreen\nNubia\nOctavia\nPatrica\nPorsha\nPortia\nPrincess\nRaylene\nRenata\nSeason\nSerene\nSerenity\nShanelle\nShantel\nShantell\nShelli\nSkye\nSophie\nSydney\nTatiana\nTorrie\nZoila\nAlexia\nAlida\nAnnabelle\nAnnalisa\nArleen\nBettina\nBrigette\nCameo\nCandi\nCarin\nCarli\nChana\nCheree\nCherry\nChris\nClarice\nCorissa\nCorrin\nDani\nDarcie\nDeann\nDesire\nDonielle\nEden\nElba\nErinn\nErlinda\nEster\nEvelia\nHolley\nIvory\nJanay\nJanene\nJanina\nJazmine\nJenee\nJenell\nJessi\nJoelle\nJohnna\nJoslyn\nJuliann\nKacie\nKandice\nKaylene\nKenneth\nKeren\nKristyn\nKylene\nLarhonda\nLinette\nLorrie\nLuana\nMagnolia\nMariaelena\nMariko\nMarlina\nMarnie\nMechelle\nMelaine\nMercy\nMika\nMilagros\nMimi\nMyiesha\nOphelia\nPatrisia\nRachele\nRana\nRikki\nRowena\nRoxane\nSamara\nSanta\nSeema\nShane\nShanee\nShaun\nShay\nShelia\nShila\nSomer\nStacia\nStephani\nSujey\nTamar\nTerrie\nTomeka\nTrena\nTuesday\nTyesha\nTyler\nXenia\nYael\nYahaira\nZandra\nAkilah\nAlethea\nAlexander\nAllegra\nAmee\nAmparo\nAndra\nAni\nApryl\nArgelia\nArturo\nAsha\nAstrid\nBrett\nCambria\nCarlene\nCeline\nChantelle\nCinnamon\nCristin\nDaniele\nDella\nDenae\nDennise\nDevan\nDia\nEbonie\nEdward\nEleni\nErma\nGenelle\nGisele\nHeidy\nJada\nJaneth\nJanett\nJannet\nJosephina\nKandi\nKarolyn\nKathryne\nKati\nKendall\nKenyatta\nKevin\nKia\nKiersten\nLatishia\nLaureen\nLauri\nLenore\nLeyla\nLibby\nLiberty\nLizabeth\nLoriann\nMagda\nMai\nMaia\nMargot\nMarika\nMarlo\nMaryjane\nMiguel\nMitzi\nMoira\nNerissa\nNidia\nNova\nOralia\nPiper\nPolly\nRaelene\nRasheedah\nRicardo\nRonald\nRonnie\nRoselyn\nSage\nScarlett\nShawana\nShawnee\nShilo\nShoshana\nSuzy\nTakisha\nTamie\nTiffiny\nTimothy\nTony\nTracee\nTrish\nTrista\nTyisha\nVanesa\nVerenice\nYasmine\nZakiya\nZenaida\nAdeline\nAdriann\nAli\nAlondra\nAmada\nAnastacia\nAnnamaria\nAshlie\nBessie\nBlythe\nBreezy\nBrie\nBrigid\nBryan\nCarmel\nCarmella\nCary\nCasie\nCatharine\nChanelle\nChrissie\nChristiane\nCleopatra\nCoreen\nCristi\nDahlia\nDallas\nDaniell\nDanyel\nDanyell\nDawna\nDenisha\nDusti\nEddie\nElicia\nElisabet\nElke\nEmi\nEryn\nEthel\nFay\nFeather\nFrankie\nGema\nGenia\nHerminia\nIdalia\nIlana\nImani\nInes\nIsis\nJameka\nJamilah\nJanai\nJannette\nJeremy\nJerri\nJessika\nJoanie\nJodee\nJohnny\nJovanna\nJulieann\nJulieanne\nJulieta\nKandace\nKeesha\nKhara\nKimiko\nKorin\nKylee\nLakeshia\nLan\nLanisha\nLatesha\nLeslee\nLetha\nLetisha\nLiz\nLois\nLucretia\nLuis\nMariam\nMarin\nMarybel\nMelani\nMeliza\nMendy\nMichal\nMira\nNailah\nNaima\nNannette\nNathan\nNekia\nNickole\nNicol\nNuvia\nNyesha\nOdessa\nPatsy\nPricilla\nPriya\nRasheda\nRashelle\nRaul\nRebecka\nRhiana\nRica\nRisa\nRoberto\nRonni\nRoshawn\nSabra\nSacha\nSamira\nSergio\nShaneka\nSharee\nSharmaine\nSharron\nShereen\nSimona\nStephen\nSulema\nSunnie\nTabetha\nTamala\nTamekia\nTawana\nThu\nThuy\nTiffaney\nTobi\nTosha\nValorie\nWinnie\nYessica\nZakiyyah\nZara\nAbbey\nAbbie\nAiesha\nAlayna\nAleesha\nAleta\nAlvina\nAmaris\nAmity\nAnnalee\nAntonette\nArin\nAubree\nAura\nAziza\nBenita\nBlair\nBobby\nBuffy\nCandelaria\nCandie\nCandis\nCaprice\nCarlee\nCarolynn\nCaron\nCassidy\nChantell\nCharis\nCharlette\nCharline\nCharmain\nChaya\nChenoa\nCheyanne\nChina\nClarisa\nClaudette\nCollette\nCorin\nCorinn\nCorrinne\nDaina\nDanyelle\nDarby\nDavida\nDawnell\nDeandra\nDee\nDeedee\nDeja\nDelana\nDelicia\nDeniece\nDeseree\nDesirea\nDionna\nDominic\nDorian\nElda\nElodia\nEloise\nErnestine\nEssence\nFanny\nFelecia\nFelice\nFelisa\nGigi\nGrabiela\nHanh\nHoney\nIlda\nIrasema\nJacinda\nJackeline\nJamey\nJayna\nJene\nJohana\nJonathan\nJovan\nJulee\nKali\nKatia\nKerstin\nKhadijah\nKirstie\nKirsty\nLaci\nLakiesha\nLanita\nLarae\nLashanna\nLaticia\nLawana\nLawanna\nLeeanne\nLilah\nLilliana\nLillie\nLizbet\nLizzette\nLoni\nLorene\nLorenza\nLuciana\nLucille\nLucrecia\nMalina\nMamie\nManuel\nMaranda\nMarguerite\nMariann\nMarquita\nMaryjo\nMatilde\nMelyssa\nMignon\nMisha\nNaimah\nNikisha\nNita\nNohemi\nOpal\nPeaches\nPepper\nPerlita\nPhillip\nRaeanne\nRasheeda\nRianna\nRoni\nRory\nRuthie\nSarra\nShae\nShanay\nShanel\nSharleen\nShemeka\nShira\nShonda\nShonta\nSindy\nSparkle\nSuzie\nTanasha\nTarra\nTiara\nTorie\nTritia\nVeronika\nVictor\nVilma\nWenona\nWilma\nZulma\nAgnes\nAlejandro\nAltagracia\nAlva\nAnamarie\nAntionette\nAshanti\nAsucena\nAsusena\nAubrie\nBelia\nBethanie\nBrea\nBrigit\nCamellia\nCandida\nCarinne\nCarley\nCecile\nCelestina\nCesar\nChannon\nCharise\nCharisma\nCharon\nCherice\nCody\nCrista\nCristen\nCristie\nDanay\nDanell\nDanisha\nDebby\nDelaina\nDelina\nDemetra\nDenisse\nDeonna\nDesarae\nDeserae\nDinah\nDione\nDolly\nDona\nDyana\nElina\nElizabet\nElizebeth\nElma\nElysia\nEma\nEmmy\nEna\nErendira\nEstee\nEvangeline\nFarah\nFelipa\nFelisha\nFiona\nFranchesca\nFrank\nFreda\nGale\nGemma\nGennifer\nGeri\nGlory\nGregory\nHa\nHalima\nHallie\nHector\nHelene\nHollee\nIlona\nIsabella\nJacob\nJacqulyn\nJaimi\nJanea\nJenessa\nJeni\nJenice\nJenie\nJenise\nJesseca\nJessenia\nJina\nJoel\nJolynn\nJovana\nJoya\nJoycelyn\nJulisa\nKandy\nKanisha\nKarl\nKarlie\nKarly\nKarmen\nKaterina\nKeshia\nKhristina\nKimber\nKoren\nKorina\nKortney\nKourtney\nKyna\nLacee\nLaney\nLaquita\nLarisa\nLasandra\nLashaun\nLashaunda\nLashawna\nLashea\nLatashia\nLateefah\nLeena\nLeesa\nLetecia\nLili\nLilly\nLiseth\nLisha\nLisset\nLoren\nLorien\nLouis\nLucina\nLyndsay\nMae\nMalaika\nMalena\nMarcelle\nMaricella\nMarilu\nMariza\nMarja\nMarlaina\nMarleen\nMckenzie\nMelia\nMemory\nMerissa\nMiki\nMiracle\nMy\nMyla\nMyriam\nNacole\nNatascha\nNatisha\nNichola\nNissa\nNoelia\nPeter\nPhoebe\nPorsche\nRagan\nRanda\nRania\nRebeccah\nRebeka\nRebekka\nReena\nRenea\nRenita\nRheanna\nRia\nRomelia\nRomina\nRoselia\nRosina\nRyanne\nSanjuana\nSarai\nSaundra\nSebrina\nSeptember\nShakira\nShala\nShaleen\nShalini\nShanae\nShanita\nShareen\nSharika\nSheba\nShenika\nShera\nShianne\nShireen\nShona\nSidney\nSilvana\nStacee\nStephine\nSugey\nSyreeta\nTahnee\nTali\nTalitha\nTamarah\nTameca\nTarrah\nTatum\nTaunya\nTawanna\nTenesha\nTeressa\nTerina\nTesha\nThomas\nTiffney\nTinisha\nTory\nToya\nTresa\nTrudy\nUnique\nValinda\nVannessa\nVelia\nVianey\nVikki\nVincent\nWendie\nWinona\nYanet\nYessenia\nZenia\nAbra\nAddie\nAdelaida\nAdella\nAdia\nAgustina\nAidee\nAletha\nAlexandrina\nAlfredo\nAliza\nAmbur\nAminah\nAmira\nAmmie\nAnalisa\nAnanda\nAndreana\nAnette\nAngeles\nAngella\nAngelyn\nAnica\nAnnalise\nAnnisa\nAqueelah\nArica\nAriella\nArnetia\nArwen\nAryn\nAudrea\nAundrea\nAyde\nBetina\nBevin\nBreanne\nBrisa\nBritt\nBritta\nCami\nCassia\nCelene\nCelestine\nCesilia\nChad\nChanell\nChekesha\nChevon\nCinthya\nClaribel\nColby\nCorri\nCriselda\nCristalle\nCruz\nCyndi\nDanille\nDaria\nDarleen\nDarline\nDebrah\nDeeanna\nDelaney\nDelila\nDelinah\nDelmy\nDeven\nDominque\nDonita\nDonnetta\nDorothea\nDwan\nEboney\nEdgar\nElisia\nElyssa\nEnjoli\nErina\nEstelle\nEstrellita\nEulalia\nEvelina\nFatimah\nFelicitas\nFelicity\nGeralyn\nGesenia\nGinette\nGisella\nGregoria\nGuisela\nHanna\nHermelinda\nHillery\nIdania\nIndia\nIsaac\nIsabell\nIsabelle\nItza\nJacinta\nJacquelene\nJacquline\nJanella\nJani\nJannelle\nJaquay\nJaquelin\nJaquelyn\nJaymie\nJayne\nJenai\nJenay\nJenea\nJenica\nJenine\nJennafer\nJenney\nJennica\nJermaine\nJerry\nJerusha\nJewel\nJimmy\nJohannah\nJonette\nJordana\nJosefa\nJoshlyn\nJudi\nJulienne\nJulio\nKaci\nKamala\nKamika\nKarisa\nKasandra\nKassie\nKatherin\nKathie\nKaycee\nKayleen\nKenna\nKera\nKeturah\nKeyana\nKianna\nKitty\nKiyoko\nKorinne\nKrisha\nKrishna\nKristeen\nKristene\nKristian\nKyoko\nKyrsten\nLainie\nLalani\nLaneshia\nLarry\nLashawnda\nLashundra\nLatina\nLatrina\nLauna\nLavonne\nLeighann\nLelani\nLeo\nLesli\nLiane\nLinh\nLisamarie\nLisbet\nLivia\nLivier\nLizett\nLluvia\nLyla\nLynee\nMachelle\nMagaly\nMagan\nMahogany\nMaida\nMaja\nManisha\nMarbella\nMargret\nMarialuisa\nMarizol\nMarkisha\nMartine\nMarya\nMarybeth\nMayte\nMayumi\nMeegan\nMeggan\nMei\nMelba\nMelissia\nMelony\nMeranda\nMerideth\nMesha\nMichella\nMilinda\nMilissa\nMinnie\nMissy\nMiya\nModesta\nMoncia\nMoria\nMuriel\nMya\nMyrian\nNadya\nNatashia\nNefertiti\nNelida\nNia\nNickie\nNicolasa\nNikesha\nNilda\nNoemy\nNola\nNorah\nOlympia\nOriana\nOrtencia\nOscar\nPhaedra\nQuanisha\nRaechel\nRaegan\nRainbow\nRanae\nRaymond\nReagan\nReba\nReiko\nRema\nRemy\nRian\nRiki\nRisha\nRobbin\nRochell\nRonesha\nRonica\nRonisha\nRonit\nRoshanda\nRoslyn\nRudy\nSaba\nSahar\nSaira\nSallie\nSalvador\nSamehesha\nSamuel\nSantos\nSarabeth\nSariah\nSarrah\nScherrie\nSeana\nSeanna\nSera\nShabnam\nShaina\nShalene\nShalonda\nShanea\nShannel\nShantae\nShaundra\nShaunta\nShauntay\nShawne\nSherice\nShilpa\nShirlene\nShiva\nShondra\nShontel\nShyla\nSilbia\nSirena\nSky\nStephaine\nStephannie\nStormi\nSunni\nSusy\nSuzan\nTahlia\nTakesha\nTalisha\nTamanika\nTamarra\nTamesha\nTamiko\nTaneisha\nTaneka\nTani\nTanishia\nTashia\nTawni\nTeneka\nTerese\nTiesha\nTomasa\nTonja\nTorrey\nTressa\nTwila\nTyeshia\nTyronda\nValencia\nVida\nXiomara\nXochilt\nYolonda\nZuleika\nJennifer\nMelissa\nJessica\nMichelle\nNicole\nSarah\nMaria\nChristina\nElizabeth\nLisa\nHeather\nAmanda\nAngela\nStephanie\nKimberly\nAmy\nAmber\nMonica\nRebecca\nLaura\nVeronica\nKelly\nAndrea\nJamie\nErin\nCrystal\nShannon\nSara\nRachel\nErica\nChristine\nJulie\nPatricia\nVanessa\nTiffany\nApril\nDanielle\nSandra\nMary\nCynthia\nAlicia\nMegan\nKatherine\nEmily\nNancy\nDiana\nErika\nNatalie\nWendy\nAnna\nClaudia\nKristina\nKaren\nValerie\nDesiree\nMonique\nBrandy\nAngelica\nKathryn\nGina\nStacy\nTeresa\nGabriela\nCarrie\nTracy\nSonia\nBrenda\nJacqueline\nLauren\nAdriana\nDenise\nSusan\nLeticia\nLeslie\nTara\nMelanie\nAna\nDawn\nJulia\nSabrina\nKristen\nSamantha\nLinda\nKristin\nRosa\nVictoria\nMisty\nJaime\nStacey\nTina\nCindy\nAllison\nCourtney\nHolly\nRenee\nKatie\nCatherine\nTanya\nHeidi\nLorena\nBrooke\nKristy\nKathleen\nLindsay\nDana\nNichole\nBrandi\nJenny\nMelinda\nJill\nMayra\nTamara\nCristina\nMichele\nLeah\nSummer\nCheryl\nRobin\nYvonne\nTheresa\nAlison\nKatrina\nGuadalupe\nChristy\nMartha\nCarmen\nGloria\nRegina\nJanet\nAngelina\nMarisa\nIrene\nNorma\nSylvia\nSharon\nMindy\nKarla\nYolanda\nPriscilla\nLori\nMarissa\nSusana\nYvette\nDeanna\nAnne\nAshley\nAlejandra\nRaquel\nSuzanne\nDeborah\nOlivia\nMarie\nCandice\nKarina\nMaribel\nTammy\nAlma\nMargaret\nCarla\nCecilia\nBarbara\nLindsey\nYesenia\nKristine\nVirginia\nShawna\nCarolyn\nEsmeralda\nAdrienne\nJanelle\nKristi\nDiane\nMeghan\nKrista\nJoy\nNatasha\nAutumn\nMaricela\nTrisha\nAimee\nAnn\nBrianne\nJasmine\nMarisol\nCarolina\nBlanca\nColleen\nNaomi\nAraceli\nPamela\nSandy\nRachael\nRuth\nSilvia\nCaroline\nJeanette\nElena\nJaclyn\nJoanna\nCassandra\nEva\nKendra\nMolly\nFelicia\nViviana\nBonnie\nMelody\nRuby\nKari\nDonna\nMandy\nMargarita\nAlexis\nAnnette\nKara\nShauna\nEsther\nJuanita\nRebekah\nAnita\nKelli\nRocio\nDarlene\nPaula\nAlexandra\nIsabel\nRobyn\nCandace\nEvelyn\nLydia\nRoxanne\nTricia\nElisa\nLorraine\nLuz\nMarisela\nMiriam\nAudrey\nRachelle\nRita\nSophia\nCarol\nMarina\nAngie\nDebra\nIrma\nGriselda\nCharlene\nElaine\nShanna\nShelly\nLaurie\nSheila\nBrianna\nJillian\nRose\nAlisha\nCorinne\nRochelle\nMarlene\nCasey\nEbony\nChristie\nEileen\nNadia\nFrances\nAnnie\nLiliana\nAlyssa\nNoemi\nToni\nBethany\nKellie\nGrace\nBianca\nLucia\nKirsten\nMeredith\nTonya\nAmelia\nConnie\nGenevieve\nJana\nJanice\nKeri\nNina\nSerena\nAngel\nStacie\nElisabeth\nJudith\nAlissa\nKate\nBeatriz\nGraciela\nHelen\nAlice\nAlisa\nBeth\nChrista\nJenifer\nLatoya\nHilary\nJennie\nSonya\nKelley\nKrystal\nShana\nVivian\nYadira\nJacquelyn\nTamika\nRosemary\nTraci\nAlana\nAthena\nCorina\nDebbie\nDevon\nDolores\nSherry\nAbigail\nBridget\nKimberley\nJoanne\nTasha\nArlene\nEricka\nHannah\nKristie\nMaureen\nMiranda\nRosalinda\nStefanie\nCarly\nKathy\nTrina\nAntoinette\nBriana\nNoelle\nOlga\nTania\nBrandie\nCeleste\nEdith\nHilda\nNora\nRhonda\nTabitha\nBertha\nHillary\nJocelyn\nMarcia\nMaritza\nBernadette\nCharity\nChelsea\nDelia\nJenna\nLesley\nMelisa\nSally\nSelena\nShelley\nTracey\nJudy\nMia\nTanisha\nAngelique\nJodi\nMaya\nAmie\nJane\nJeannette\nRamona\nLatasha\nCara\nClaire\nKatharine\nAja\nCarissa\nJolene\nCharlotte\nLaurel\nElsa\nRosalia\nBelinda\nJanette\nJoann\nRhiannon\nTawny\nCamille\nCarina\nGeorgina\nJanine\nJohanna\nJoyce\nLilia\nEllen\nJosefina\nLillian\nShirley\nAubrey\nGladys\nLourdes\nJosephine\nMarilyn\nEsperanza\nRoberta\nAurora\nDomenica\nFaith\nMagdalena\nMarcella\nBeverly\nMarcela\nRosio\nBecky\nEmma\nGinger\nIris\nLucy\nRosario\nSofia\nAdrianne\nCelia\nJuana\nKerri\nLea\nLynn\nMorgan\nNatalia\nReina\nTami\nCelina\nJami\nLacey\nLara\nMichael\nNikki\nAudra\nDianna\nJean\nKerry\nKim\nPerla\nReyna\nClara\nFabiola\nJasmin\nLynette\nWhitney\nCheri\nDena\nGabrielle\nJody\nSheri\nBetty\nLizette\nChrystal\nJanell\nLeanne\nMercedes\nTiana\nBreanne\nDaisy\nLena\nSalina\nAisha\nFrancisca\nMireya\nAllyson\nDora\nLatisha\nLiza\nSierra\nTerra\nAntonia\nDina\nEstela\nMariana\nMirna\nRyan\nStaci\nSusanna\nCathy\nGretchen\nJeanine\nMaryann\nMyra\nTaryn\nAracely\nDarcy\nDestiny\nDorothy\nJodie\nKasey\nPauline\nConsuelo\nPatrice\nAdrianna\nJessie\nKeisha\nBobbie\nChandra\nKaty\nRosalie\nBrittany\nKenya\nLidia\nMaira\nMarianne\nMarlena\nNadine\nCassie\nElvia\nImelda\nJosie\nKristal\nRosanna\nCandy\nCatalina\nChristi\nElvira\nJamila\nLuisa\nMarcie\nRosalba\nTeri\nVicky\nFrancine\nJackie\nRosemarie\nSelina\nShelby\nTerri\nClarissa\nDeana\nJeannie\nKarin\nLeilani\nLoretta\nLupe\nMaggie\nMeghann\nSasha\nSommer\nSonja\nTracie\nValarie\nCorrine\nDavid\nElisha\nKimberlee\nLakisha\nMarsha\nMelina\nMinerva\nPenny\nTisha\nEvangelina\nGabriella\nJoan\nLeanna\nMariela\nRebeca\nSherri\nBillie\nCori\nDominique\nElissa\nFrancesca\nJose\nJuliana\nRandi\nShavon\nTalia\nTiffani\nAndria\nCatrina\nCherie\nHarmony\nHollie\nJeanne\nMarta\nRene\nSusie\nVioleta\nBreanna\nDoris\nDulce\nEleanor\nIsela\nJustine\nLarissa\nLina\nLizeth\nLora\nMariah\nMiesha\nSheryl\nTammie\nYajaira\nAida\nBeatrice\nCari\nCristy\nJade\nLynda\nMarjorie\nMeagan\nAlina\nAriana\nChantel\nChrissy\nJuliet\nMarla\nPaige\nPeggy\nRena\nTameka\nTamra\nAlyson\nAmi\nFatima\nHaley\nHope\nLana\nMaren\nMyesha\nTerry\nAdrian\nAnastasia\nBrenna\nDavina\nDelilah\nEdna\nGlenda\nJanna\nLakeisha\nLeann\nLindy\nMirella\nStella\nCorinna\nCorrie\nIvette\nIvy\nJanae\nLisette\nLizbeth\nQiana\nTanesha\nWendi\nAileen\nAngelita\nAnthony\nBobbi\nBridgette\nBrook\nGeorgia\nIngrid\nLacy\nLeeann\nMicaela\nMisti\nMona\nQuiana\nRaina\nRoxanna\nSherrie\nSimone\nXochitl\nAbby\nCaitlin\nChanel\nCharmaine\nChristal\nElise\nEunice\nJason\nLily\nMalissa\nMarivel\nRichelle\nRosie\nShanon\nVenus\nDalia\nDarla\nElva\nEstella\nGricelda\nGwendolyn\nIvonne\nJanel\nJaqueline\nJeannine\nJuan\nJune\nLeigh\nLeila\nMara\nNicolette\nShawn\nTera\nWindy\nConstance\nCortney\nDalila\nDayna\nDevin\nGeneva\nHelena\nJanie\nJayme\nKathrine\nLatanya\nLiana\nRacheal\nRobert\nAlexandria\nAmalia\nAnabel\nBambi\nFaviola\nGena\nIda\nInez\nJeri\nKaryn\nKisha\nLouise\nPearl\nRosalva\nRosalyn\nVenessa\nAlysia\nAriel\nArmida\nCheyenne\nCorey\nDanette\nDaniel\nElia\nJesus\nKellee\nKylene\nKylie\nMalinda\nMarcy\nMeaghan\nMyrna\nNichol\nNoel\nOfelia\nPaola\nRaven\nRoxana\nShari\nTessa\nAdela\nBeronica\nBetsy\nBrandee\nCarey\nDanelle\nDanica\nDeanne\nDoreen\nGail\nJaimie\nJulissa\nKelsey\nLatrice\nMartina\nMaxine\nMellisa\nSheree\nStarr\nTawnya\nAmerica\nAnnemarie\nBernice\nCathleen\nCherise\nChristen\nChristin\nChristopher\nCinthia\nCora\nDaniella\nDarci\nDesirae\nDianne\nElaina\nEliza\nEve\nJesse\nJoni\nJulianna\nLatonya\nLee\nMellissa\nSerina\nShameka\nShante\nSiobhan\nSunny\nSusanne\nAnissa\nCecelia\nCharisse\nColette\nCory\nDaniela\nIliana\nJazmin\nJustina\nKyla\nLani\nLyndsey\nMadeline\nMargie\nMari\nMaricruz\nMaura\nMay\nMyisha\nSandi\nSunshine\nSuzette\nTanika\nTia\nTiffanie\nWinter\nCameron\nDara\nEboni\nEloisa\nFlor\nJames\nKirstin\nLilian\nNikole\nRhianna\nRina\nShanika\nShannan\nShasta\nShaunna\nShayla\nShayna\nSocorro\nSuzanna\nTabatha\nYasmin\nAlejandrina\nAlexa\nAsia\nBelen\nCaryn\nCasandra\nJaimee\nJanuary\nJulianne\nKarissa\nKerrie\nLeona\nLeonor\nLia\nLila\nMarian\nMarianna\nMindi\nMonika\nNellie\nRayna\nSondra\nStar\nStarla\nTamar\nTori\nAlia\nAlycia\nAnnabel\nAnnamarie\nAraseli\nAshlee\nBree\nCorrina\nGisela\nGiselle\nJeanna\nJoseph\nKori\nLanette\nLoni\nLucinda\nMalia\nMandi\nShara\nSoledad\nTenisha\nTherese\nValeria\nAdriane\nAlesha\nAmparo\nAntionette\nArcelia\nCaren\nCrista\nDelores\nDemetria\nEmilia\nEric\nEugenia\nFanny\nGillian\nGwen\nHaydee\nJannette\nJesica\nJo\nKami\nKarrie\nLetisia\nLupita\nMarci\nMichaela\nNicolle\nPaulina\nRichard\nShamika\nShonna\nTatiana\nTracee\nVicki\nWanda\nAlexia\nAzucena\nBrian\nCharissa\nChastity\nConcepcion\nCristal\nErinn\nEvelia\nEvette\nFrancis\nGayle\nHazel\nJenelle\nJorge\nJovan\nKacey\nKiley\nKristyn\nLakeshia\nLatosha\nMicah\nMichell\nMollie\nNathalie\nNicola\nRashida\nReanna\nRenae\nRosaura\nShavonne\nTammi\nThelma\nZulema\nAda\nAdria\nAngeline\nBrittney\nCarlos\nChris\nCoral\nCrissy\nCristin\nElida\nEmilie\nEnjoli\nFarrah\nGeorgette\nJacklyn\nJeana\nJoleen\nJoshua\nKarie\nLeia\nMabel\nMilissa\nPaloma\nPhoebe\nPhyllis\nRacquel\nRikki\nRonda\nRosalina\nRoseann\nRowena\nRoxann\nSharlene\nTana\nTaylor\nTianna\nTonia\nUrsula\nValentina\nVera\nZoe\nAlanna\nAriane\nArianna\nAura\nBryn\nCarmela\nChantal\nChristian\nElicia\nElsie\nEster\nFawn\nGeraldine\nGinny\nGuillermina\nHayley\nHolli\nIesha\nJena\nJeniffer\nJenni\nJoelle\nJohn\nJuliette\nKatheryn\nKenisha\nKira\nLola\nLorene\nLouisa\nLuis\nMagda\nManuela\nNanci\nNelly\nPatty\nPaulette\nPetra\nRegan\nSadie\nSalena\nSarina\nSaundra\nShanda\nSharla\nShawnte\nShea\nSkye\nSue\nSuzana\nYahaira\nAlysha\nAnel\nAyesha\nBerenice\nBerta\nBridgett\nBrienne\nCallie\nDannielle\nDusty\nElana\nElyse\nIlene\nJaneen\nJayne\nJessika\nKacie\nKrissy\nLayla\nLucila\nMaisha\nMatthew\nMercy\nMildred\nNanette\nNiesha\nNoreen\nNova\nRachele\nRachell\nRosana\nSerenity\nShani\nShanta\nShaunte\nSheena\nShiloh\nSpring\nTritia\nTyesha\nViolet\nAbbie\nAdelina\nAide\nAlba\nAlena\nAngelia\nAngelic\nAnjelica\nAsha\nAshleigh\nBreann\nBrie\nChasity\nCheree\nCindi\nDallas\nDionne\nErnestina\nGiovanna\nJanee\nJanina\nJoey\nJordan\nJosette\nJulieta\nJustin\nKaci\nKiana\nKindra\nKristian\nLiane\nNidia\nNydia\nPortia\nQuinn\nRhea\nSarai\nSeason\nShantel\nShellie\nSindy\nSuzy\nTosha\nTrinity\nVanesa\nVickie\nYecenia\nAlaina\nAnamaria\nAndrew\nAnnika\nAnnmarie\nAsusena\nAurelia\nBeatris\nCarmelita\nChloe\nDanae\nDaphne\nDeidre\nDelfina\nDeserie\nEvangeline\nJammie\nJaymie\nKacy\nKamilah\nKatina\nKayla\nLacie\nLashonda\nLeandra\nLisamarie\nLiz\nLizabeth\nLucero\nLynne\nLynnette\nLynsey\nMariel\nMarion\nNubia\nRosanne\nShoshana\nTamera\nTeresita\nThea\nTyra\nYanira\nAaron\nAdam\nAdele\nAime\nAlisia\nAntonette\nAnya\nAva\nBettina\nBrigette\nBrigitte\nCamilla\nCandi\nCandida\nCarmel\nCarmina\nChanda\nCharis\nChristiana\nCorine\nCristine\nDenisha\nDesire\nEden\nFarah\nJanis\nJannet\nJessenia\nJolie\nKandice\nKeli\nKesha\nKristan\nKylee\nLizet\nLolita\nLorie\nLyndsay\nMandie\nMariaelena\nMarlo\nMarlyn\nMatilde\nMiguel\nMirian\nMonet\nNiki\nPorsche\nRosalynn\nRosita\nRubi\nRyann\nSamara\nSelene\nShalon\nShanell\nSomer\nStacia\nStefani\nSydney\nTyisha\nVannessa\nYessica\nAkilah\nAlondra\nAmee\nAnisa\nBrigid\nBrisa\nCarlie\nCarole\nCelena\nChante\nCharla\nCiara\nClare\nColeen\nDania\nDenice\nElizabet\nEvonne\nFrancisco\nGenoveva\nGia\nGianna\nHelene\nIlda\nJanea\nJanett\nJeanie\nJeffrey\nJenee\nJenell\nJoana\nKia\nKizzy\nKyra\nLaquisha\nLissette\nLizett\nLois\nLucille\nMackenzie\nMadeleine\nMaia\nMalika\nMamie\nManuel\nMarcelina\nMoriah\nNakia\nNereida\nNicholas\nNita\nNohemi\nPaul\nPenelope\nPrecious\nRae\nRenita\nRoslyn\nShanae\nSophie\nStephaine\nStephany\nSusannah\nTarah\nTonisha\nTrinidad\nTrish\nTrista\nWendie\nWilliam\nXochil\nYanet\nAlecia\nAlishia\nAlysa\nAnika\nAnnalisa\nApryl\nAundrea\nAyana\nAyanna\nCambria\nCami\nCarli\nCassidy\nChanelle\nCharise\nChavon\nChelsey\nChina\nChristel\nCruz\nDani\nDeann\nDebora\nDeena\nElba\nElda\nElisabet\nElla\nErnestine\nEstrella\nFaye\nFiona\nFlorencia\nGabriel\nGracie\nHortencia\nInes\nJan\nJaneth\nJenette\nJohnna\nJovita\nJuli\nKai\nKarri\nKassandra\nKendall\nKory\nLaila\nLakesha\nLashawn\nLeeanna\nLesli\nLili\nLisbeth\nLuana\nMaegan\nMagali\nMargo\nMarilu\nMarlen\nMaryanne\nMelony\nMelynda\nMimi\nMina\nMistie\nNakisha\nOctavia\nRana\nRaylene\nRoni\nRoseanne\nRoxane\nSage\nSanta\nShawnna\nSherie\nSteven\nTawni\nTenaya\nThomas\nTrudy\nValencia\nWillow\nWinnie\nYessenia\nZoila\nAbbey\nAleta\nAndra\nAnh\nAnitra\nAnnabelle\nAntonio\nArianne\nAshanti\nBenjamin\nBrynn\nCameo\nCandelaria\nCandis\nCary\nCasie\nCathryn\nCherish\nChevonne\nChristianne\nCicely\nCinnamon\nClaudine\nCorie\nCorin\nCyndi\nDanika\nDanisha\nDanita\nDanyelle\nDeirdre\nDominica\nDomonique\nEma\nEnedina\nFelicitas\nFreda\nGladis\nGrabiela\nHallie\nHanna\nIleana\nIna\nIran\nJenae\nJennette\nJenniffer\nJoi\nKanika\nKay\nKeely\nKiesha\nKimberli\nKimberlie\nKristel\nLarisa\nLela\nLenora\nLiberty\nLinette\nLonnie\nLus\nMarguerite\nMarin\nMario\nMarni\nMaryam\nMarybel\nMaryjane\nMarylou\nMelonie\nMerissa\nNathan\nNicol\nNisha\nOralia\nPatrisia\nPriya\nRaelynn\nRandee\nSabina\nScarlett\nShane\nShanti\nShay\nShelia\nShelli\nSparkle\nStormy\nTakisha\nTamiko\nTamisha\nVianey\nVida\nXiomara\nZakiyyah\nAdelaida\nAdia\nAdina\nAlethea\nAli\nAlida\nAmada\nAmberly\nAmiee\nAmina\nAndriana\nAnnel\nArica\nBarbra\nBessie\nBlythe\nBonita\nBonny\nBrandon\nBrett\nBrieanna\nCarie\nChantell\nChantelle\nCharlie\nCharon\nCherilyn\nChristiane\nCody\nDacia\nDaniell\nDanya\nDaria\nDeva\nDiandra\nDionna\nEdward\nErlinda\nEstelle\nEstrellita\nEthel\nFlorence\nGenesis\nGeorge\nGreta\nHector\nHerlinda\nHiedi\nIsaura\nIsis\nIvana\nIvory\nJacquline\nJacqulyn\nJada\nJamilah\nJavier\nJenessa\nJeni\nJennefer\nJerusha\nJesenia\nJodee\nJosephina\nJoslyn\nJulisa\nKanisha\nKati\nKevin\nKhalilah\nKyle\nLauri\nLawanda\nLeana\nLeeanne\nLesa\nLibby\nLiset\nLorrie\nMalisa\nMarisha\nMariza\nMechelle\nMeggan\nNatosha\nNelida\nNiccole\nNicholle\nOriana\nPerlita\nPilar\nPricilla\nPrincess\nRasheeda\nReagan\nRochell\nRonald\nRosamaria\nRosina\nRoxie\nShaneka\nSharina\nShaun\nShereen\nStephani\nStephenie\nStephine\nSyreeta\nTamica\nTaneka\nTavia\nThalia\nTrang\nTwila\nVelvet\nVerna\nViola\nWilma\nXochilt\nYasmine\nZakiya\nZulma\nAdelita\nAgnes\nAgustina\nAliza\nAlthea\nAmaris\nAmbrosia\nAmity\nAndre\nAni\nAnisha\nAnnamaria\nAstrid\nAubree\nBenita\nBlair\nBreana\nBritney\nCarisa\nCarri\nCathrine\nCecily\nCelestina\nChere\nCherry\nClarice\nClaudette\nCoreen\nCrysta\nDahlia\nDaniele\nDanyell\nDarcie\nDeandra\nDeidra\nDella\nDennise\nDesirea\nDonielle\nDonya\nEbonie\nEcho\nEryn\nFelecia\nFrankie\nHermelinda\nIndia\nInga\nIsabelle\nJacinta\nJacquelin\nJaimi\nJamaica\nJameelah\nJanai\nJanene\nJeremy\nJerilyn\nJessi\nJesusita\nJewel\nJina\nJordana\nJovanna\nJulieann\nJulio\nKatelyn\nKatia\nKelle\nKenneth\nKortney\nLaci\nLadonna\nLakeysha\nLaquita\nLashawnda\nLaticia\nLatrina\nLeta\nLetitia\nLianna\nLilly\nLinh\nLinsey\nLissa\nLoraine\nLoren\nLorina\nLorinda\nLorna\nMai\nMaida\nMaranda\nMargret\nMarkisha\nMartin\nMelva\nMeridith\nMerry\nMisha\nMy\nMyeshia\nMyiesha\nMyriam\nNaima\nNatashia\nNatisha\nNena\nNerissa\nNichelle\nNicholette\nNickole\nNikia\nNoelia\nNoemy\nParis\nPorsha\nRani\nRashawn\nRebbecca\nReena\nRicardo\nRoberto\nRosalind\nRosetta\nSacha\nSamira\nSenaida\nShaina\nShalonda\nShandra\nShanee\nShanelle\nSharice\nSharleen\nSharron\nShavonda\nSherita\nShilo\nShira\nSienna\nSoila\nStephen\nStevie\nSuzan\nTalisha\nTalitha\nTaneisha\nTawnie\nTegan\nTerese\nTerrie\nTiesha\nTiffiny\nTomi\nUnique\nVelia\nVeronique\nVivianna\nYara\nYazmin\nZaida\nAlejandro\nAmira\nAnastacia\nAngelena\nAngella\nAnica\nArely\nAubrie\nAugust\nAziza\nBarbie\nBreeann\nBritt\nCarin\nCarlene\nCarmella\nCassondra\nCesar\nCesilia\nChanell\nCharleen\nChavonne\nChenoa\nCheron\nCheyanne\nChimere\nChrissie\nChristianna\nCollette\nCorrin\nCristi\nDamaris\nDawna\nDee\nDeonna\nDesarae\nDetra\nDinah\nDixie\nElma\nElodia\nEmilee\nEssence\nEvie\nFelice\nFelisha\nFlora\nFlorentina\nFranchesca\nFrank\nGavriela\nGema\nGilda\nGregoria\nIdania\nIeshia\nIndira\nIsrael\nJacinda\nJacquelynn\nJanay\nJeanett\nJenai\nJennell\nJennelle\nJennine\nJoel\nJohana\nJohnnie\nJoscelyn\nJoycelyn\nKameelah\nKameron\nKandy\nKarena\nKarly\nKarolyn\nKaycee\nKeila\nKenna\nKenyatta\nKhadijah\nKhristina\nKoren\nKris\nLashanda\nLaureen\nLeigha\nLetty\nLilliana\nLillie\nLiseth\nLivia\nLucrecia\nLynnae\nMae\nMaresa\nMargot\nMariam\nMaricella\nMariella\nMarika\nMariko\nMark\nMarysol\nMelani\nMelodie\nMemory\nMikaela\nMilagros\nMillicent\nNika\nNyisha\nPamala\nPatrica\nPhoenix\nPolly\nPrisilla\nRafaela\nRasheda\nRebekka\nRianna\nRima\nRisha\nRonni\nRonnie\nRoseanna\nRuben\nRyanne\nSarrah\nSean\nSeanna\nShantelle\nSharee\nSharie\nSharonda\nShauntae\nShavone\nShawnda\nShawnta\nShera\nShonda\nSilva\nStacee\nSujey\nSulema\nSunni\nSusy\nTammara\nTaneshia\nTarrah\nTatum\nTennille\nThuy\nTimothy\nTinisha\nTorrey\nTrena\nTressa\nTristen\nVenita\nVienna\nWynter\nYeni\nYesica\nZenaida\nAlberto\nAlegandra\nAline\nAndreana\nAneesah\nAnette\nAnnalee\nAreli\nArgelia\nArielle\nArika\nArleen\nAshlie\nAustin\nAzadeh\nBaby\nBerenise\nBobby\nBrande\nBriza\nBryna\nBuffy\nCamellia\nCandyce\nCaridad\nCarleen\nCarlota\nCassia\nCerissa\nChannel\nCherice\nCheryll\nChevon\nChiara\nClarisa\nCordelia\nCorena\nDaina\nDanell\nDannette\nDarleen\nDarlin\nDavida\nDawnielle\nDayana\nDebby\nDedra\nDeja\nDenita\nDeseree\nDiamond\nDolly\nDominque\nDorinda\nDusti\nEbone\nEdwina\nEleni\nEllie\nEloise\nEmiko\nErendira\nFeather\nFelicity\nFern\nFlavia\nGary\nGenessa\nGennifer\nGeri\nGisella\nGlenna\nGuinevere\nHana\nHeidy\nHoa\nIla\nIlana\nJackeline\nJacob\nJael\nJamee\nJamela\nJamelia\nJamillah\nJenene\nJenica\nJoie\nJonathan\nKaley\nKali\nKamisha\nKandis\nKassie\nKenia\nKeona\nKeya\nKiersten\nKimiko\nKirstie\nKorin\nKourtney\nKristeen\nKrysta\nLaina\nLakia\nLarhonda\nLavina\nLelia\nLeslee\nLetisha\nLetticia\nLianne\nLicet\nLinnea\nLlesenia\nLoree\nLuciana\nMagaly\nMagan\nMahogany\nMaile\nMalina\nManda\nMarnie\nMartiza\nMelany\nMelia\nMendy\nMika\nMiki\nMinnie\nMischa\nMyla\nNaimah\nNaisha\nNannette\nNedra\nNeisha\nNereyda\nNeva\nNia\nNicholl\nNilda\nOdessa\nOscar\nPatrick\nPhaedra\nPiper\nPorscha\nQueen\nQuyen\nRaeann\nRaegan\nRanae\nRandy\nRashaun\nRashell\nRashelle\nRaya\nRayanna\nRemy\nRenata\nRenisha\nRheanna\nRian\nRisa\nRobynn\nRomelia\nRonica\nRudy\nRuthie\nSahara\nSapna\nSaralyn\nSarita\nSeptember\nSequoia\nSerene\nShalyn\nShanay\nShanel\nShaunta\nShavonna\nShawnee\nShelbi\nShemeka\nShiree\nShonte\nShyla\nSimona\nSol\nSoraya\nSterling\nSunday\nSuzann\nSuzannah\nSynthia\nTabetha\nTai\nTamela\nTanja\nTarra\nTawanna\nThao\nTiffaney\nTomeka\nTony\nToya\nTynesha\nTynisha\nVilma\nWilla\nXenia\nYolonda\nYovana\nZahra\nZara\nAcacia\nAddie\nAdelaide\nAdella\nAdena\nAdreana\nAdriene\nAgatha\nAidee\nAiesha\nAimie\nAiyana\nAlbert\nAlea\nAleida\nAleisha\nAlene\nAleshia\nAlica\nAllegra\nAllissa\nAlmarosa\nAlona\nAlva\nAlyce\nAlyse\nAmara\nAmbre\nAmita\nAnabelle\nAnacani\nAnalilia\nAndera\nAngelene\nAngelika\nAnja\nAnjali\nAnjanette\nAnndrea\nAprille\nArasely\nArin\nArmando\nAutum\nAyde\nBelia\nBethanie\nBilly\nBrea\nBreezy\nCalista\nCamelia\nCamila\nCarlee\nCarley\nCarlyn\nCarolann\nCarolynn\nCassi\nCatharine\nCelene\nCeline\nChaka\nChandi\nChannon\nCharae\nCinthya\nClaribel\nCleo\nColby\nComfort\nCortnie\nCriselda\nCristen\nCristie\nCrystle\nCurtis\nDaisie\nDamian\nDanna\nDanyel\nDarby\nDarice\nDarya\nDebi\nDeedee\nDenay\nDenee\nDenesha\nDeniece\nDenielle\nDenishia\nDenisse\nDeon\nDevan\nDiedra\nDiedre\nDione\nDominga\nDonald\nDorcas\nDorene\nDorian\nEbelia\nEdelmira\nEduardo\nElonda\nElysia\nElyssa\nEmelia\nEnid\nErendida\nEvelin\nFatimah\nFelipa\nFelisa\nFreedom\nGabriele\nGemma\nGenea\nGenie\nGenny\nGerardo\nGraviela\nGypsy\nHalima\nHaven\nHenry\nHerminia\nHien\nHillery\nHolland\nIdalia\nIeasha\nIsabella\nJaney\nJaymee\nJayna\nJazmine\nJeanelle\nJeanmarie\nJene\nJenea\nJeny\nJerri\nJerry\nJessamyn\nJimmy\nJocelynn\nJoelene\nJoella\nJohnny\nJolina\nJoline\nJonelle\nJonna\nJovana\nJulienne\nKadie\nKaitlin\nKama\nKamille\nKandi\nKarah\nKasandra\nKathie\nKatiria\nKeiko\nKeisa\nKellye\nKena\nKendrah\nKeren\nKeysha\nKhara\nKiara\nKimi\nKimya\nKiyomi\nKorina\nLa\nLakeesha\nLakenya\nLakiesha\nLanita\nLareina\nLarina\nLashana\nLashonna\nLatina\nLatricia\nLauralee\nLaurinda\nLavon\nLawanna\nLeighann\nLety\nLiesl\nLilah\nLisandra\nLisett\nLizbet\nLizzette\nLorissa\nLorri\nLucretia\nLurdes\nLyn\nLynelle\nMacrina\nMadelyn\nMagen\nMaki\nMarcelle\nMaressa\nMargaux\nMariadejesus\nMariaisabel\nMarilynn\nMarites\nMarizol\nMarlaina\nMarleen\nMarline\nMarya\nMaurissa\nMavis\nMelyssa\nMesha\nMi\nMichal\nMicheal\nMichel\nMisa\nMitzi\nMonigue\nMyriah\nNada\nNana\nNashira\nNatalee\nNatascha\nNeha\nNikisha\nNikita\nNila\nNisa\nNoella\nNuvia\nNyesha\nOsiris\nPage\nPatience\nPatti\nPhillip\nPhuong\nPia\nPrudence\nRaelene\nRain\nRainbow\nRamon\nRanda\nRanee\nRay\nRaymond\nReannon\nRebeccah\nRebecka\nReem\nReginald\nRhoda\nRia\nRica\nRicki\nRiki\nRoselle\nRoselyn\nRoya\nSantina\nSari\nSavannah\nScarlet\nScott\nSeema\nSena\nSergio\nSha\nShalini\nShanah\nShanea\nShantae\nShantell\nSharell\nSharmaine\nSharyl\nShavaun\nShavona\nShavonn\nShawana\nShelena\nSherell\nSherene\nSherise\nSherrel\nShevonne\nShonta\nSky\nSolange\nSueann\nSumer\nTakiyah\nTaliah\nTalina\nTarin\nTashina\nTausha\nTawnia\nTerina\nTessie\nTomika\nTrishia\nTwyla\nTyiesha\nVan\nVannesa\nVi\nVita\nYobana\nZelma\nZenia\nZenobia\nJennifer\nMelissa\nJessica\nSarah\nMichelle\nMaria\nNicole\nElizabeth\nChristina\nAmanda\nStephanie\nLisa\nHeather\nAmber\nKimberly\nTiffany\nVeronica\nRebecca\nLaura\nAngela\nAmy\nErin\nSara\nMonica\nCrystal\nAndrea\nKelly\nJamie\nVanessa\nErica\nRachel\nDanielle\nShannon\nSandra\nMegan\nPatricia\nChristine\nApril\nMary\nJulie\nCynthia\nAlicia\nKatherine\nEmily\nNancy\nLauren\nKristin\nNatalie\nErika\nMonique\nAnna\nAngelica\nKristen\nWendy\nDiana\nClaudia\nValerie\nMayra\nAna\nJacqueline\nKristina\nKatie\nLeslie\nKaren\nBrenda\nAdriana\nTeresa\nLinda\nBrooke\nDenise\nDesiree\nKathryn\nLeticia\nJulia\nRosa\nStacy\nSonia\nCourtney\nAllison\nBrandy\nSamantha\nSusan\nAshley\nTracy\nMelanie\nVictoria\nLindsay\nCarrie\nGina\nCatherine\nLorena\nTara\nHeidi\nJenny\nRenee\nMaribel\nTanya\nCandice\nSabrina\nBrandi\nJoanna\nCindy\nLeah\nKathleen\nDawn\nStacey\nHolly\nTina\nNichole\nMartha\nKatrina\nKarina\nCristina\nTamara\nMisty\nTheresa\nGabriela\nIrene\nAlison\nGuadalupe\nMelinda\nDana\nRobin\nLindsey\nAlejandra\nMichele\nGloria\nJill\nAlma\nCheryl\nAngelina\nYvette\nJanet\nKristy\nSummer\nYolanda\nPriscilla\nMarisol\nRaquel\nYvonne\nJaime\nNorma\nChristy\nMargaret\nMarissa\nNatasha\nRegina\nSuzanne\nSusana\nKrista\nMarie\nJohanna\nSylvia\nSharon\nMeghan\nAnne\nCarmen\nVirginia\nDeborah\nKarla\nDeanna\nCecilia\nMarisa\nYesenia\nJasmine\nLori\nOlivia\nBlanca\nBarbara\nAimee\nJeanette\nEsmeralda\nJanelle\nKristine\nEva\nPamela\nCarla\nTrisha\nRocio\nAraceli\nNina\nBonnie\nCassandra\nNaomi\nTammy\nShawna\nAdrienne\nAlexis\nCandace\nDiane\nKristi\nElisa\nSilvia\nCarolina\nMaricela\nSandy\nRuth\nRachael\nRobyn\nCarolyn\nElena\nIsabel\nRose\nColleen\nPaula\nJillian\nEsther\nAlexandra\nAnita\nAlisha\nAutumn\nBeth\nRebekah\nDarlene\nFelicia\nMindy\nKelli\nAnn\nBethany\nRachelle\nKari\nAnnette\nLuz\nMelody\nJoy\nDonna\nMorgan\nJaclyn\nCaroline\nKara\nKendra\nMargarita\nRuby\nSophia\nBrianne\nIrma\nDebra\nRoxanne\nJennie\nMarina\nMiranda\nGrace\nMandy\nElaine\nEvelyn\nMiriam\nCharlene\nRochelle\nLatoya\nMolly\nStefanie\nKellie\nRita\nSheila\nLiliana\nAriana\nShauna\nTasha\nAlyssa\nFrances\nMarlene\nBrianna\nEileen\nBeatriz\nHannah\nJuanita\nLorraine\nCarol\nEbony\nAmelia\nAngie\nAngel\nBrittany\nArlene\nAudrey\nConnie\nLydia\nCorina\nGriselda\nJanice\nCasey\nYadira\nSerena\nJenna\nJoanne\nBriana\nKirsten\nHelen\nJane\nAnnie\nAbigail\nGenevieve\nNoemi\nSonya\nCeleste\nElisabeth\nLaurie\nToni\nCara\nJacquelyn\nJudith\nShelly\nTonya\nKrystal\nMeredith\nKathy\nJeannette\nEdith\nMaritza\nShanna\nShirley\nAlice\nAnabel\nChrista\nGraciela\nRosemary\nBianca\nLatasha\nLucia\nNadia\nStacie\nCarina\nKate\nSally\nTanisha\nChelsea\nDaisy\nMariana\nNora\nAntoinette\nJosephine\nKelley\nNoelle\nGladys\nMarisela\nCamille\nDolores\nElsa\nJodi\nShelley\nAmie\nCelia\nJuana\nMaira\nEmma\nLaurel\nRosalinda\nCorinne\nJudy\nReyna\nAlissa\nJami\nTricia\nJanine\nRamona\nTania\nBrandie\nCarly\nWhitney\nTraci\nAthena\nRhonda\nSasha\nShana\nTabitha\nBernadette\nBridget\nDebbie\nLeilani\nMarcella\nMaya\nVivian\nAlana\nDorothy\nGeorgina\nIris\nJana\nMia\nChristie\nLacey\nLeanne\nLillian\nCaitlin\nCarissa\nHilda\nHillary\nAlisa\nJolene\nAracely\nFaith\nJocelyn\nLesley\nLourdes\nMaureen\nAngelique\nClaire\nJanette\nSheri\nLucy\nMyra\nDevon\nLara\nMelisa\nCelina\nJohana\nJosefina\nLilia\nMercedes\nNicolette\nAisha\nAurora\nCatalina\nJenifer\nLizette\nLynn\nBelinda\nEllen\nHilary\nLena\nOlga\nSherry\nDena\nKeri\nStaci\nTiana\nEricka\nMeagan\nMelina\nRyan\nCherie\nGinger\nSofia\nAdrianna\nJean\nKatharine\nTamika\nAja\nBertha\nJasmin\nPauline\nBecky\nCharity\nCharlotte\nClara\nEsperanza\nMarilyn\nTrina\nBeatrice\nBreanne\nJoyce\nKerry\nMarcela\nNatalia\nAileen\nAudra\nBeverly\nDelia\nDianna\nElvia\nJessie\nKristie\nPatrice\nReina\nTawny\nAntonia\nLatisha\nMagdalena\nSalina\nShelby\nGabrielle\nGretchen\nMaryann\nRhiannon\nTiffani\nViviana\nKimberley\nPerla\nEstela\nKerri\nSierra\nSelena\nTami\nConsuelo\nDina\nJanel\nLiza\nLynette\nRebeca\nTia\nCatrina\nJayme\nJoana\nJoann\nLea\nLizeth\nMarianne\nNadine\nRosio\nTracey\nTracie\nHope\nMarla\nNikki\nRandi\nSusanna\nBreanna\nDominique\nMariah\nMariela\nMarta\nMichael\nRoberta\nRosario\nSocorro\nTeri\nBetty\nBobbie\nElise\nFrancisca\nLily\nMarcia\nRosemarie\nSheryl\nVioleta\nCathy\nJustine\nKarin\nChrystal\nKaty\nFabiola\nJeannie\nKim\nTerri\nAllyson\nChanel\nCheri\nDora\nJeanine\nJody\nKristal\nLakisha\nRene\nRosalba\nSelina\nTerra\nAlanna\nElisha\nImelda\nJulianne\nLidia\nLizbeth\nMireya\nMyrna\nRoxana\nSherri\nAubrey\nKeisha\nKimberlee\nLeanna\nAdrianne\nAlyson\nCandy\nElvira\nFrancine\nJanae\nJuliana\nLeigh\nLina\nLoni\nSonja\nChandra\nChristi\nKenya\nLacy\nLana\nLarissa\nLynda\nMarci\nPaige\nAdrian\nElissa\nFatima\nFrancesca\nGwendolyn\nJoan\nLakeisha\nLupe\nMandi\nMirna\nSusie\nCassie\nChristen\nCori\nEunice\nHarmony\nLeila\nRosalia\nStella\nKelsey\nLeann\nLisette\nMarlena\nTalia\nVenessa\nDavid\nJeanne\nJesse\nLee\nMara\nMarcie\nTabatha\nAbby\nAlexandria\nBrenna\nBrittney\nBrook\nDarcy\nDayna\nIvette\nJamila\nJaqueline\nJodie\nJose\nRosanna\nChristin\nMarcy\nSommer\nAida\nAlina\nAngelita\nChristopher\nGlenda\nHaley\nJanell\nKasey\nMalissa\nMirella\nRaven\nRena\nVicky\nAndria\nDaniel\nDeana\nDestiny\nDevin\nEvangelina\nFlor\nIsela\nJackie\nJade\nLora\nLuisa\nMaggie\nRosie\nTiffanie\nChristian\nClarissa\nDoris\nFaviola\nInez\nJazmin\nJordan\nMalinda\nMari\nMarivel\nNoel\nRosalie\nRosalva\nShavon\nStarr\nAlaina\nChantel\nCortney\nDaniela\nTameka\nBillie\nDavina\nDulce\nEliza\nEmilia\nHollie\nMellissa\nOfelia\nShari\nSheree\nValarie\nAnya\nBelen\nBree\nDelilah\nJanie\nJuliet\nMarsha\nMay\nRaina\nTatiana\nTaylor\nTisha\nAmalia\nBridgette\nCorrie\nDesirae\nElva\nGabriella\nGeneva\nGricelda\nJacklyn\nKira\nLucinda\nMabel\nMonika\nPearl\nPenny\nRichelle\nSadie\nSunshine\nTaryn\nVickie\nWendi\nAlena\nAriel\nBambi\nCheyenne\nDanica\nDarla\nEstella\nFlora\nGeorgia\nGiselle\nQuiana\nRobert\nRosalyn\nSunny\nTanesha\nTerry\nBetsy\nChristal\nCorinna\nEdna\nEugenia\nJeannine\nJo\nLatrice\nMartina\nMichaela\nMinerva\nMyisha\nPeggy\nSerina\nShawn\nTamra\nVenus\nAnnamarie\nAshleigh\nBrandee\nCarey\nCari\nCharmaine\nCorrina\nDomenica\nDoreen\nGail\nHazel\nHelena\nJohn\nLiana\nNidia\nXochitl\nBerenice\nCaryn\nCorey\nDara\nEleanor\nGena\nIngrid\nIvonne\nJanna\nJeanna\nJoelle\nJoleen\nJoni\nJustina\nLeia\nLissette\nLoretta\nMichell\nMiesha\nNichol\nShasta\nTawnya\nVicki\nAlba\nAnastasia\nAshlee\nConstance\nCristy\nDalila\nDanelle\nJason\nLupita\nLynnette\nMarjorie\nMona\nNicolle\nShayna\nSiobhan\nAnjelica\nBobbi\nCarmela\nConcepcion\nCoral\nDionne\nDusty\nHayley\nJaimie\nJeanie\nKaryn\nKisha\nLatanya\nLia\nLilian\nLouise\nMalia\nQiana\nReanna\nRonda\nSondra\nStarla\nAdina\nAide\nCecelia\nColette\nCorrine\nDaniella\nEric\nJenelle\nJune\nKandice\nKendall\nKyla\nLetisia\nManuela\nMarian\nMariel\nMyesha\nPetra\nRashida\nRosita\nTherese\nUrsula\nViolet\nAdelina\nAdriane\nAlia\nAnnemarie\nAraseli\nAshanti\nBeatris\nCathleen\nChloe\nCora\nElaina\nEloisa\nGeraldine\nJuan\nKarrie\nKathrine\nLizet\nMellisa\nMonet\nSarina\nShavonne\nSimone\nSoledad\nStar\nTanika\nYasmin\nAdela\nAlejandrina\nCameron\nCharissa\nCristal\nDaphne\nDarci\nIvy\nJoshua\nLani\nLorie\nLyndsey\nNellie\nPaola\nPaulina\nRikki\nSelene\nShante\nShayla\nSherrie\nSuzette\nSyreeta\nTammie\nTera\nTracee\nWindy\nAlysia\nAmi\nAnthony\nArcelia\nCinthia\nCrista\nDania\nDeidra\nDeidre\nDianne\nEboni\nEve\nFrancis\nIliana\nJames\nJoseph\nJulissa\nKami\nKerrie\nLeeann\nMargie\nMarianna\nMeghann\nMicaela\nNikole\nNydia\nPaulette\nPilar\nRayna\nRenae\nRina\nRoxanna\nShanda\nTamar\nTammi\nTori\nTrista\nAnnabel\nBeronica\nBlair\nChrissy\nElida\nErnestina\nFawn\nGracie\nJaneen\nJulianna\nKacey\nKatheryn\nKia\nKori\nLiset\nMaren\nMariko\nMisti\nReena\nRegan\nSarai\nShameka\nSomer\nStefani\nSusanne\nTessa\nTianna\nTiffiny\nAda\nAlexa\nAngeline\nAnh\nAsia\nBrisa\nCandi\nCory\nDalia\nDanna\nDelores\nDeserie\nEmilie\nEvelia\nEvita\nIda\nJacquelin\nJesus\nJosie\nKellee\nKirstin\nLadonna\nLeona\nLeonor\nMarion\nNakia\nNanci\nNichelle\nRacquel\nRenata\nRosalina\nSandi\nShanon\nStephaine\nSydney\nTarah\nYara\nZulema\nAmbrosia\nAnnabelle\nAriane\nArianna\nAzucena\nChante\nCharisse\nCharla\nChasity\nCherise\nChristiana\nDamaris\nElia\nElisabet\nFaye\nGiovanna\nHortencia\nJanessa\nJanis\nJena\nJulieta\nKristyn\nLacie\nLakesha\nLatosha\nLila\nLindy\nLoren\nMarcelina\nMarysol\nMollie\nNanette\nNelly\nNicholas\nNubia\nRacheal\nRachele\nRosanne\nRosaura\nRoseann\nShanika\nShannan\nShoshana\nSue\nVanesa\nVera\nAaron\nAmbar\nAnnmarie\nBrian\nCasandra\nCasie\nCassidy\nChantal\nDeanne\nDenice\nEster\nEstrella\nGisela\nGuillermina\nJazmine\nJenise\nJeri\nJesica\nJuliette\nKarissa\nKylie\nLanette\nLinh\nLouisa\nMadeline\nMatthew\nNiesha\nPrecious\nPricilla\nRhea\nRichard\nSabina\nSarita\nShaunna\nShaunte\nTrinity\nValeria\nWanda\nZoe\nAdele\nAkilah\nAnabell\nAnika\nAundrea\nBrynn\nCarin\nDelfina\nDenisse\nEnedina\nErendira\nErinn\nFiona\nGillian\nGladis\nJammie\nJaymie\nJeana\nJenniffer\nJesenia\nJessika\nJoi\nJovana\nJustin\nKindra\nLashonda\nLatonya\nMaranda\nMariam\nMeaghan\nMelonie\nMichel\nMimi\nMisha\nMiya\nPhuong\nPrincess\nRoseanna\nRubi\nSharlene\nSophie\nSuzanna\nTamera\nTawni\nThelma\nTonia\nTritia\nWinter\nAdria\nAlesha\nAnissa\nAsha\nAyesha\nBernice\nBreann\nCallie\nCarlos\nCarmelita\nChanelle\nCristen\nDahlia\nDebora\nDeja\nDixie\nElana\nElba\nFlorence\nHaydee\nIesha\nJovita\nKasie\nKayla\nKeely\nKenia\nKyra\nLucila\nLucille\nMackenzie\nMaegan\nMaia\nMaisha\nMaura\nMelodie\nNoelia\nPhyllis\nRhianna\nRyann\nScarlett\nSkye\nSoraya\nSparkle\nSteven\nTamisha\nThanh\nYecenia\nYessenia\nYessica\nZoila\nAnamaria\nAnel\nAngelic\nAntonette\nApryl\nBettina\nBreana\nBrigette\nBritney\nCambria\nCarlene\nCarmina\nCelena\nChavon\nCheree\nCristin\nCruz\nDarcie\nElla\nElsie\nEnjoli\nHa\nHanna\nHolli\nIrasema\nJenell\nJenni\nKacy\nKamilah\nKassandra\nKiley\nLizabeth\nLizett\nLoraine\nLorna\nLyndsay\nLynne\nMargo\nMaryanne\nMercy\nMiguel\nMissy\nPaloma\nRenita\nRosana\nShantel\nShawnna\nShea\nShellie\nSpring\nStacia\nStephenie\nTenisha\nValencia\nValentina\nYoana\nAlecia\nAlethea\nAlycia\nAmerica\nAshly\nAsusena\nAubrie\nAura\nAyana\nBridgett\nBrie\nBrigitte\nCandida\nCesilia\nChantelle\nChastity\nCherry\nDanae\nDanette\nDaniele\nDeena\nDenisha\nElicia\nGabriel\nGemma\nIlda\nIsis\nJaimee\nJayne\nJeffrey\nJenee\nJeni\nJonelle\nJorge\nJovanna\nKali\nKarly\nKatina\nKesha\nKevin\nKiana\nLakeshia\nLashawn\nLisett\nLisset\nMagali\nMarguerite\nMarlen\nMarlyn\nMaxine\nMildred\nNatalee\nNicholle\nPaul\nPorsche\nRae\nRana\nRowena\nShalonda\nShamika\nShanita\nShara\nStephani\nTrinidad\nTyra\nWillow\nXochil\nYajaira\nYanira\nAlejandro\nAlishia\nAlva\nAmiee\nAmparo\nAngelia\nArianne\nAshlie\nBrandon\nBrieanna\nCandelaria\nCandis\nCarie\nCarisa\nCarmel\nChi\nChris\nCindi\nCristine\nDanita\nDawna\nDeirdre\nDemetria\nDenae\nDesire\nDesirea\nEden\nEryn\nGayle\nGeorgette\nGianna\nIlene\nJan\nJanett\nJanuary\nJosette\nKacie\nKandace\nKarie\nKarli\nKatia\nKeli\nKenneth\nKristel\nKristian\nKrysta\nKyle\nKylene\nLaila\nLeandra\nLiseth\nLiz\nLuciana\nMaile\nMariaelena\nMaricruz\nMario\nMariza\nMichal\nMilissa\nNereida\nNova\nNyesha\nParis\nPatience\nPortia\nRoxann\nSacha\nSeason\nShaina\nSharla\nShilo\nShonna\nThuy\nViola\nAgnes\nAleta\nAlexia\nAni\nAnisa\nAntonio\nAurelia\nBenita\nBerta\nCamilla\nCandie\nCarley\nCarli\nChanda\nCharlie\nCiara\nCorine\nDannielle\nDeann\nDennise\nDolly\nEdwina\nElysia\nEmi\nEstelle\nEvangeline\nEvette\nFanny\nFarrah\nGema\nGeri\nGilda\nHerlinda\nHermelinda\nJackeline\nJanene\nJannette\nJenae\nJoey\nJolie\nJonna\nJordana\nJovan\nKrissy\nKristan\nLaquita\nLatoyia\nLauri\nLayla\nLeena\nLilliana\nLinsey\nLlesenia\nLola\nLolita\nLucretia\nMadeleine\nMalika\nMandie\nMarin\nMarisha\nMindi\nNelida\nNena\nNickole\nNicola\nNoreen\nOriana\nPatrisia\nPhoebe\nRainbow\nRanda\nRasheedah\nRaylene\nRosina\nSaundra\nShanell\nShani\nShelli\nStephany\nTenaya\nTeresita\nThomas\nTinisha\nVictor\nAime\nAlondra\nAntionette\nArika\nArleen\nAva\nAyanna\nBrittania\nCandyce\nCathryn\nChantell\nCody\nDaina\nDella\nDominica\nErlinda\nFarah\nFelecia\nFrancisco\nGenesis\nGia\nGisel\nHoney\nIsabelle\nJanina\nJeremy\nJerri\nJohnna\nJulieann\nKaci\nKandi\nKatiria\nKeyana\nKimberli\nKimiko\nKortney\nLaquisha\nLarisa\nLashanda\nLiberty\nMai\nMaida\nMargot\nMaricella\nMark\nMarylou\nMelani\nMelony\nMirian\nMitzi\nMy\nNia\nNicki\nNiki\nPatrick\nPiper\nPolly\nPriscila\nQuinn\nRebecka\nRoni\nRosamaria\nSarabeth\nShalon\nShanelle\nSharonda\nSheena\nShyla\nSuzy\nTana\nTawnee\nTennille\nThao\nThea\nTiesha\nTosha\nTyesha\nVan\nYasmine\nAbbie\nAlysa\nAlysha\nAnacani\nAnastacia\nAngelena\nAnjanette\nAnnamaria\nAriella\nArmida\nBaby\nBrynne\nCameo\nCaren\nCarole\nCecily\nCelestina\nCharleen\nClaudette\nClaudine\nCoreen\nCorie\nDallas\nDanika\nDanyell\nDelicia\nDemetra\nDesarae\nDorothea\nErik\nEthel\nFelisha\nGenoveva\nGrabiela\nGreta\nIlana\nIvana\nJacquelynn\nJamee\nJaneth\nJayna\nJennell\nJennette\nJolynn\nKandis\nKarena\nKarima\nKenisha\nKimberlie\nLaci\nLaneisha\nLatesha\nLaticia\nLatricia\nLeana\nLenora\nLesa\nLeslee\nLetitia\nLiane\nLibby\nLoan\nLogan\nLorenza\nLucero\nLucina\nLuis\nLynsey\nMargaux\nMarika\nMarilu\nMatilde\nMeggan\nMelva\nMira\nNacole\nNathan\nNgoc\nNicol\nNikita\nNuvia\nOpal\nPia\nPriscella\nRandee\nRemy\nRosalind\nRosalynn\nRyanne\nSalena\nSamara\nSelma\nTai\nTamiko\nTatum\nTierra\nTimothy\nTomika\nTonisha\nToya\nVannessa\nWilma\nXochilt\nYazmin\nZakiya\nZulma\nAbbey\nAdeline\nAlisia\nAllegra\nAmara\nAnabelle\nAnalisa\nAnette\nAnitra\nAnjuli\nAnnika\nArgelia\nArielle\nBrienne\nCami\nCathrine\nCeline\nCharise\nChaya\nCherilyn\nCherisse\nChina\nChristianne\nCicely\nColby\nDani\nDanya\nDanyel\nDanyelle\nDaria\nDee\nDelma\nDestini\nDevina\nDinah\nDonisha\nDorian\nDustie\nEduardo\nEliana\nElyse\nGinny\nGwen\nHana\nHanh\nHolley\nInes\nJaimi\nJenea\nJerilyn\nJessamyn\nJesseca\nJosephina\nJovon\nJuli\nJulisa\nKaitlin\nKameron\nKamisha\nKarine\nKasandra\nKathlene\nKati\nKay\nKaycee\nKenda\nKerianne\nKezia\nKylee\nLakenya\nLan\nLanae\nLaniece\nLigia\nLillie\nLilly\nLindsy\nLinette\nLinnea\nLisbeth\nLisha\nLois\nLorina\nMae\nMahogany\nMaral\nMaribell\nMariella\nMarilynn\nMaritsa\nMarybel\nMayela\nMecca\nMeisha\nMina\nMoira\nMonisha\nNatashia\nNatisha\nNecole\nNisha\nNoemy\nNohemi\nOctavia\nPatrisha\nPatsy\nPatty\nRaelene\nRafaela\nRaymond\nRoberto\nRodolfo\nRolanda\nRoseanne\nRoselyn\nRuthie\nSabra\nSaira\nSamira\nSerene\nShady\nShandra\nShantell\nShanti\nShaun\nShawnee\nShay\nSherie\nSherita\nShona\nShonda\nSienna\nSimona\nSirena\nStormy\nSulema\nSumer\nTabetha\nTaisha\nTaniesha\nTenille\nTiara\nTory\nTreva\nTyler\nValorie\nVilma\nWynter\nYael\nYanet\nYesica\nZakiyyah\nAcacia\nAddie\nAlex\nAli\nAmberly\nAmity\nAmmie\nAn\nAndrew\nAnnalisa\nArlette\nArwen\nBarbie\nBelia\nBenjamin\nBernadine\nBessie\nBlake\nBlythe\nBo\nBritta\nBronwyn\nBryan\nBryanna\nBryn\nBryna\nBuffy\nCarlota\nCarri\nCaterina\nCecile\nCelica\nCerissa\nCharis\nCharline\nChau\nChere\nClarisa\nCrissy\nDelana\nDeserae\nDeven\nDiamond\nDonya\nDori\nEdelmira\nElma\nElyssa\nEmiko\nEmilee\nEneida\nEssence\nEstrellita\nEvonne\nFlavia\nFlorencia\nFrankie\nGeorgiana\nGoldie\nGregoria\nHailey\nHector\nHelene\nHerminia\nHong\nIsabell\nJameka\nJamilah\nJanai\nJanay\nJanea\nJanee\nJannet\nJenette\nJennefer\nJessi\nJonathan\nJuliann\nJulieanne\nKarisa\nKarmen\nKeiko\nKenyetta\nKeren\nKizzy\nKoren\nKorin\nKristiana\nLacresha\nLakeya\nLanisha\nLarhonda\nLeeanne\nLeesa\nLeyla\nLisamarie\nLizzette\nLoree\nLorien\nLorrie\nLus\nMagaly\nMagda\nMalina\nMariann\nMarielena\nMarilou\nMarkisha\nMarlina\nMarya\nMarybeth\nMaryellen\nMarygrace\nMaryjane\nMattie\nMayda\nMelaine\nMelany\nMelyssa\nMerissa\nMicah\nMika\nMiki\nMilagros\nMonic\nMonigue\nMyeshia\nMyriam\nNailah\nNatascha\nNathalie\nNatividad\nNedra\nNereyda\nNiccole\nNicholette\nOtilia\nPenelope\nRaelynn\nRafael\nRashell\nRashelle\nRaynelle\nReagan\nRebbecca\nRica\nRicki\nRisa\nRonisha\nRonni\nRonnie\nRosella\nRosenda\nRoslyn\nRoxane\nRuben\nSamia\nScott\nSebrina\nSequoia\nSerenity\nShanae\nShandi\nShanel\nSharee\nSharhonda\nSharona\nSharron\nShawana\nShawnta\nShelbie\nSherene\nShira\nSiria\nStacee\nStevie\nSunnie\nTalitha\nTameika\nTashia\nTelisha\nTianne\nTiffney\nTorrey\nTrang\nUnique\nVerenice\nVianey\nWilliam\nWinnie\nXiomara\nYahaira\nYasmeen\nZandra\nZinnia\nAdelaida\nAdrien\nAdrina\nAgustina\nAi\nAidee\nAlene\nAlessandra\nAlida\nAline\nAliya\nAlvina\nAmada\nAmal\nAmee\nAmina\nAnahi\nAnjali\nAnnabell\nAnnita\nAreli\nArica\nArmando\nAstrid\nAubree\nAutum\nAzadeh\nBetina\nBonita\nBrea\nBrett\nBritt\nCamellia\nCarleen\nCary\nCelene\nChantay\nCharito\nCharlee\nChelsey\nChelsie\nChenoa\nCheyanne\nChimere\nChristiane\nCinnamon\nClaribel\nColeen\nCollette\nCorin\nCrystalyn\nCrystel\nCrystle\nDamara\nDarcey\nDayana\nDesiray\nDestinie\nDeva\nDevan\nDiandra\nDione\nDivina\nDona\nDonielle\nEcho\nElbia\nElina\nElizabet\nElly\nElodia\nEmelia\nEmely\nErendida\nErma\nErnest\nErnestine\nEvan\nFelicity\nFernanda\nGenese\nGenie\nGermaine\nGiana\nGinna\nGrizelda\nHallie\nHang\nHeidy\nIleana\nIndira\nIvon\nJacinta\nJackelyn\nJacklynn\nJacob\nJacque\nJalene\nJamaica\nJameelah\nJannelle\nJene\nJenica\nJennelle\nJina\nJoel\nJohna\nJohnnie\nJolyn\nJonell\nJoslyn\nJudit\nJulienne\nKanika\nKanisha\nKaroline\nKarri\nKatee\nKatelyn\nKaterina\nKathi\nKathie\nKatya\nKaylene\nKecia\nKeena\nKelle\nKenna\nKeysha\nKiera\nKiesha\nKimber\nKimberlyn\nKionna\nKory\nKymberly\nLachelle\nLareina\nLaronda\nLashawnda\nLatrisha\nLavette\nLavonne\nLeeanna\nLekisha\nLili\nLisandra\nLisanne\nLluvia\nLonnie\nLucrecia\nLuna\nMaegen\nMalisa\nManuel\nMarbella\nMarcelle\nMarica\nMaricel\nMarites\nMarja\nMarlo\nMartin\nMaryam\nMarybell\nMayte\nMelita\nMinna\nMinnie\nMiracle\nMoises\nMoriah\nMya\nMyriah\nNaima\nNatosha\nNeha\nNeisha\nNeomi\nNerissa\nNga\nNikia\nNikisha\nNikkia\nOralia\nPa\nPam\nPatrica\nPennie\nPhillip\nRaeanna\nRandy\nRayleen\nRheanna\nRhiana\nRia\nRomelia\nRosalee\nRosaline\nRoselia\nSabah\nSabrena\nSahar\nSalvador\nSamatha\nSarena\nSari\nSeana\nSelia\nSendy\nSergio\nShalini\nShanan\nShanay\nShane\nShaneen\nShaneka\nSharie\nShena\nShiloh\nShirin\nShondra\nShontay\nSky\nSoila\nStefany\nStephen\nSueellen\nSusannah\nSynthia\nTahira\nTalar\nTalisha\nTam\nTamatha\nTamie\nTarin\nTarrah\nTawana\nTegan\nTenesha\nTerah\nTerese\nTeressa\nTerina\nThalia\nThu\nTifany\nToi\nTomeka\nToshia\nTovah\nTran\nTrudy\nTyisha\nTynisha\nVelia\nWinona\nYohana\nZenaida\nZully\nAarti\nAbril\nAdelita\nAdena\nAdrena\nAgueda\nAiesha\nAiyana\nAkisha\nAlayna\nAleen\nAleesha\nAleisha\nAletha\nAlexander\nAlica\nAllana\nAlthea\nAmberlee\nAmira\nAnabella\nAndra\nAndriana\nAngeles\nAngelika\nAnica\nAnnel\nAnnissa\nAri\nAria\nArin\nAvelina\nAvery\nAviva\nBao\nBari\nBrandalyn\nBreeann\nBrena\nBrooks\nCaitlyn\nCarlie\nCarlyn\nCarolynn\nCaron\nCarrissa\nCassondra\nCassy\nCatarina\nCedar\nChannon\nCharlena\nChavonne\nCher\nCherish\nCherlyn\nChisa\nClare\nClarice\nCleo\nConsuela\nContessa\nCorrene\nCorrinne\nCortni\nCourtenay\nCourtnie\nCristel\nCristela\nCrysta\nDacia\nDale\nDanesha\nDanisha\nDarleen\nDeandra\nDedra\nDeedee\nDelina\nDenay\nDennis\nDionna\nDonia\nDottie\nDustin\nEboney\nEbonie\nElda\nElidia\nEloise\nEma\nEmber\nEmerald\nEnid\nEnrique\nErikka\nEstee\nEulalia\nFelisa\nFernando\nFrieda\nGenelle\nGenessa\nGennifer\nGeorge\nGerardo\nGrasiela\nHalima\nHattie\nHenry\nHoa\nHuong\nIan\nIdalia\nIlea\nIlia\nIman\nImani\nIndia\nIsabella\nIsaura\nIsha\nJacinda\nJaclynn\nJacquelyne\nJacquline\nJacqulyn\nJaycee\nJaye\nJayleen\nJeniffer\nJennett\nJesika\nJessenia\nJewel\nJoanie\nJohnny\nJoycelyn\nJulio\nKacee\nKai\nKaila\nKaitlyn\nKalani\nKamaria\nKameelah\nKarlie\nKatey\nKathrina\nKathryne\nKatrice\nKayce\nKeira\nKeith\nKeona\nKerstin\nKesia\nKhadija\nKhadijah\nKianna\nKiara\nKiersten\nKimberely\nKimbra\nKimi\nKoral\nKris\nKyndra\nLaina\nLanesha\nLanita\nLarry\nLashana\nLashunda\nLatina\nLatoi\nLatrina\nLaureen\nLaurice\nLaurin\nLavon\nLawanda\nLeighanne\nLeisha\nLenee\nLeondra\nLeonora\nLeora\nLesli\nLeslieann\nLetisha\nLetrice\nLetticia\nLianne\nLilah\nLin\nLisbet\nLissa\nLivier\nLloana\nLorelei\nLorene\nLorinda\nLorrine\nLoryn\nLy\nLynetta\nLynnea\nMachelle\nMacy\nMadelyn\nManda\nMariateresa\nMarielle\nMarisabel\nMarlana\nMarlayna\nMarti\nMarvella\nMckenzie\nMechelle\nMele\nMelissia\nMerari\nMerilee\nMicheal\nMignon\nMila\nMiriah\nMirtha\nMistie\nMonette\nMorena\nMuriel\nMyiesha\nNada\nNadina\nNadya\nNajah\nNannette\nNatoya\nNeva\nNikeya\nNinette\nNola\nOdessa\nPayal\nPeaches\nPorsha\nPrescilla\nPuja\nRachell\nRaechel\nRaul\nReana\nRhoda\nRicardo\nRicci\nRiki\nRiva\nRochell\nRonald\nRonique\nRonna\nRonnisha\nRosetta\nRoshelle\nRosy\nRoxie\nRubicela\nSaida\nSandee\nSarra\nSavannah\nSayda\nSean\nSeema\nSeptember\nSerra\nShaila\nShamara\nShameika\nShanette\nShanta\nShantay\nSharina\nShaunta\nShawnda\nShawntae\nShawntay\nShawnte\nShayne\nShelia\nSherice\nShonte\nShoshanna\nShoshannah\nSteffanie\nSusy\nSuzan\nSuzann\nSuzie\nSylvana\nTabita\nTahnee\nTaleen\nTalya\nTamarie\nTamela\nTamica\nTammara\nTaneisha\nTaneka\nTaralyn\nTarra\nTausha\nTawna\nTawnia\nTawnie\nTequila\nThy\nTiare\nTiphanie\nTommie\nTonika\nTram\nTravis\nTrena\nTristan\nTuesday\nTwila\nValeri\nVania\nVeroncia\nVeronika\nVeronique\nVida\nVita\nWednesday\nYen\nYoua\nYuri\nYuridia\nZabrina\nZaira\nZena\nZenia\nZoraida\nJennifer\nJessica\nMelissa\nSarah\nMichelle\nNicole\nElizabeth\nMaria\nAmanda\nChristina\nStephanie\nAmber\nLisa\nHeather\nRebecca\nAmy\nTiffany\nLaura\nCrystal\nKimberly\nErin\nAngela\nAndrea\nVeronica\nMonica\nDanielle\nSara\nVanessa\nRachel\nKelly\nErica\nJamie\nShannon\nJulie\nDiana\nSandra\nMegan\nChristine\nCynthia\nLauren\nApril\nMary\nEmily\nKristin\nPatricia\nAlicia\nKatherine\nNancy\nKristen\nErika\nNatalie\nJacqueline\nAnna\nMonique\nAngelica\nWendy\nDenise\nClaudia\nAna\nValerie\nKatie\nJulia\nCourtney\nAshley\nKathryn\nKristina\nBrenda\nLindsay\nVictoria\nLinda\nTeresa\nSamantha\nAdriana\nBrooke\nKaren\nLeslie\nAllison\nRosa\nMelanie\nJoanna\nBrandy\nTara\nCandice\nGina\nLeticia\nDesiree\nSonia\nMartha\nLindsey\nSabrina\nLeah\nTanya\nJanet\nTina\nCatherine\nLorena\nSusan\nHeidi\nRenee\nBrandi\nTamara\nStacy\nKathleen\nMayra\nCristina\nNichole\nCarrie\nCindy\nGabriela\nGuadalupe\nJenny\nKatrina\nMaribel\nMisty\nKarina\nTracy\nMelinda\nTheresa\nAlejandra\nCassandra\nPriscilla\nNatasha\nHolly\nDana\nIrene\nAlma\nStacey\nAngelina\nJaime\nEvelyn\nDawn\nCecilia\nDeanna\nYolanda\nGloria\nYvonne\nAlison\nSophia\nRaquel\nSusana\nJasmine\nRobin\nMarissa\nYvette\nAlexis\nAnne\nKristy\nRegina\nMarie\nJill\nVirginia\nCandace\nCarmen\nMarisol\nMeghan\nNorma\nLiliana\nSylvia\nYesenia\nMarisa\nPamela\nLatoya\nMargaret\nJeanette\nAlexandra\nBlanca\nEsmeralda\nMichele\nKarla\nAraceli\nSummer\nDeborah\nBarbara\nKrystal\nJohanna\nSharon\nSuzanne\nAimee\nCheryl\nCarla\nLori\nOlivia\nAnn\nElena\nKristine\nNina\nChristy\nKrista\nShawna\nBonnie\nRebekah\nEsther\nRachael\nRose\nMorgan\nIsabel\nNaomi\nJanelle\nEva\nCarolina\nJillian\nTrisha\nElisa\nDiane\nRuth\nSilvia\nKendra\nJuanita\nTammy\nJaclyn\nMargarita\nMelody\nBethany\nKara\nKelli\nCarolyn\nRachelle\nColleen\nRoxanne\nBeatriz\nMolly\nRocio\nRuby\nSandy\nAnnette\nGrace\nPaula\nLydia\nDarlene\nJenna\nCasey\nStefanie\nAdrienne\nAnita\nCharlene\nAriana\nMarlene\nJoy\nJudy\nAlisha\nHannah\nMiranda\nKari\nAutumn\nCaroline\nRobyn\nHelen\nElaine\nMaricela\nRita\nArlene\nKristi\nLacey\nAbigail\nBrianna\nDonna\nJudith\nRochelle\nJennie\nMarina\nMiriam\nIrma\nMindy\nGriselda\nLorraine\nAudrey\nBrittany\nCarol\nFrances\nRosemary\nMandy\nSheila\nTasha\nDaisy\nMeredith\nFelicia\nLucia\nAngel\nChelsea\nBriana\nEileen\nJoanne\nKellie\nAmelia\nNoemi\nShauna\nLuz\nAlyssa\nCara\nSerena\nCorina\nGenevieve\nJacquelyn\nJeannette\nElisabeth\nAnnie\nEbony\nKate\nAlice\nCeleste\nConnie\nSherry\nKathy\nAntoinette\nBianca\nCaitlin\nJane\nLatasha\nOlga\nMaritza\nBrianne\nJessie\nKirsten\nCarina\nAngie\nBeth\nBridget\nDebra\nHilda\nJanice\nJolene\nToni\nCarly\nJosephine\nLillian\nTabitha\nWhitney\nYadira\nJanette\nLaurel\nMarisela\nCamille\nDolores\nMia\nKatharine\nTanisha\nTraci\nBernadette\nCorinne\nNereida\nCelia\nChristie\nJoyce\nAlexandria\nAlissa\nBrandie\nClaire\nEdith\nIris\nJenifer\nJocelyn\nMaya\nShanna\nShelly\nSofia\nJuliana\nKelley\nAlana\nKeri\nLesley\nMarta\nLaurie\nLourdes\nMaureen\nSally\nSonya\nEmma\nGraciela\nMariana\nAmie\nDelia\nJodi\nTonya\nNatalia\nNora\nTricia\nGladys\nJuana\nCharlotte\nChrystal\nDominique\nJoann\nRandi\nShirley\nAntonia\nBertha\nElsa\nEricka\nLeilani\nNadia\nTania\nJosefina\nRebeca\nRosalinda\nRosio\nShelley\nAlisa\nBelinda\nCathy\nHilary\nNoelle\nTawny\nDorothy\nLea\nLynn\nRhonda\nShana\nCatalina\nJanine\nPauline\nTiana\nVivian\nAdrianna\nChrista\nMercedes\nReyna\nStacie\nAthena\nCari\nCelina\nLily\nSalina\nCassie\nCharity\nDevon\nLena\nBetty\nConsuelo\nEllen\nJana\nLara\nMaira\nMarcia\nMyra\nBeatrice\nBeverly\nEsperanza\nKristal\nKristie\nLeanne\nMarcella\nMarilyn\nMeagan\nTrina\nAubrey\nClarissa\nFaith\nMarcela\nNicolette\nSelina\nAnabel\nAurora\nDebbie\nDianna\nJasmin\nLacy\nLilia\nLizette\nRyan\nBreanna\nDena\nHillary\nRosario\nSelena\nAmbar\nBecky\nGabrielle\nLucy\nMelisa\nRoberta\nDestiny\nEstela\nKerry\nCarissa\nChandra\nRhiannon\nAudra\nDina\nElvia\nLynette\nTamika\nAisha\nEvangelina\nGeorgina\nLynda\nMagdalena\nNikki\nKim\nTessa\nTiffani\nAngelique\nBobbie\nJami\nKasey\nPaige\nReina\nLiza\nRamona\nRosalie\nSusanna\nDaniela\nJustine\nKerri\nLizbeth\nMariela\nMichael\nNadine\nPerla\nSheri\nTatiana\nViviana\nCherie\nDora\nKaty\nMelina\nRoxana\nSierra\nGinger\nJackie\nKimberlee\nLatisha\nTami\nVioleta\nPatrice\nSasha\nStaci\nBreanne\nElvira\nFrancisca\nJazmin\nKrystle\nMandi\nRosie\nSheena\nTracey\nAileen\nAlba\nIsela\nJeannie\nJohana\nFabiola\nFrancine\nKelsey\nKimberley\nLana\nAja\nCheri\nElisha\nGretchen\nJoana\nPaola\nSimone\nBrenna\nBrittney\nDarcy\nFatima\nImelda\nJayme\nJeanine\nKeisha\nLarissa\nLisette\nLoretta\nMarianne\nRosalia\nRosemarie\nTerri\nAllyson\nAracely\nCandy\nElise\nFrancesca\nJaqueline\nJean\nJeanne\nJody\nKarin\nMireya\nPearl\nTeri\nLeann\nTerra\nRosanna\nTracie\nAlexa\nAshleigh\nChantel\nDenisse\nJoan\nLee\nOfelia\nRene\nSherri\nTalia\nTaylor\nAlyson\nAshlee\nCasandra\nChristin\nClara\nJoni\nLupe\nMay\nTawnya\nAida\nAndria\nAngelita\nCecelia\nChristal\nCortney\nEmilia\nGlenda\nHayley\nIngrid\nJacklyn\nJulianne\nLeigh\nLizeth\nMarla\nAdrianne\nAlaina\nChristian\nEdna\nElva\nJanel\nLakisha\nLeanna\nTaryn\nAmalia\nEliza\nEunice\nGiselle\nIvette\nJanae\nKira\nLidia\nMarlena\nShelby\nStella\nVicky\nBelen\nChristi\nJordan\nLeila\nLora\nLuisa\nNereyda\nSocorro\nSunshine\nSusie\nHaley\nMaryann\nSheryl\nAlanna\nDavina\nJodie\nMarci\nMirella\nRosalba\nTameka\nValeria\nVenessa\nBrook\nCatrina\nConstance\nDulce\nGricelda\nJade\nJamila\nJanell\nJenelle\nMai\nMara\nMariah\nMarivel\nMarsha\nNoel\nRena\nAlina\nAnastasia\nBernice\nCameron\nCori\nDesirae\nFlor\nHarmony\nInez\nJanna\nKandice\nLilian\nLucinda\nMaggie\nTia\nXochitl\nChanel\nChristen\nDoris\nFaviola\nMarian\nMinerva\nRacheal\nRichelle\nRoxanna\nSonja\nVera\nAdela\nDaniella\nDayna\nElaina\nEstella\nGabriella\nGwendolyn\nHollie\nJanie\nKenya\nKyla\nMarjorie\nMichell\nQuiana\nShari\nTera\nTiffanie\nJuliet\nMalinda\nNidia\nPenny\nRaven\nRosalva\nSerina\nSheree\nAbby\nAnya\nAriel\nBeronica\nBridgette\nDianne\nJeannine\nJo\nLoni\nMabel\nMarcie\nMari\nMicaela\nNubia\nShasta\nShayna\nSommer\nValarie\nCathleen\nCory\nDara\nDeana\nGeorgia\nJesse\nJosie\nMartina\nMona\nMonika\nPaulina\nRaina\nRosalina\nRosamaria\nWendi\nAdrian\nArianna\nBerenice\nCorrine\nCristal\nDanica\nDavid\nEleanor\nEmilie\nGail\nHope\nJaimie\nLina\nLyndsey\nTabatha\nTamra\nYuri\nAzucena\nCherise\nCheyenne\nChristopher\nDanae\nEvita\nJulianna\nJune\nKori\nLeeann\nLia\nMiesha\nNakia\nPeggy\nRhianna\nShavon\nSondra\nTanesha\nTenisha\nTierra\nAdelina\nAlysia\nBetsy\nCarey\nCorey\nCorinna\nCorrina\nElissa\nEugenia\nFrancis\nGeneva\nIvy\nJoi\nJose\nJoseph\nKristel\nLanette\nLani\nLila\nMatthew\nMy\nMyrna\nPhuong\nRonda\nSuzanna\nTerry\nThea\nVanesa\nAmi\nAngeline\nBlair\nCristin\nCristy\nDarla\nDeanne\nDeirdre\nDevin\nEvette\nHaydee\nJannette\nJesus\nJuliette\nJulissa\nKarissa\nKiana\nLatonya\nLeonor\nLizet\nLupita\nMalia\nMellissa\nMichaela\nMirna\nMyesha\nNicolle\nShayla\nSydney\nYessenia\nCallie\nChristiana\nConcepcion\nDaniel\nDenice\nFawn\nHelena\nJannet\nJesica\nKacie\nKristyn\nLadonna\nLakeisha\nLatrice\nLissette\nMarcy\nTashina\nTisha\nViolet\nAlena\nAmerica\nAnjelica\nBillie\nBobbi\nCharmaine\nDalia\nElia\nHanna\nIliana\nJanett\nJeanna\nKami\nKathrine\nLatanya\nLiana\nLoren\nLouise\nMargie\nNelly\nSadie\nSarina\nSherrie\nThelma\nTiara\nAdriane\nAnnika\nColette\nCoral\nDeann\nDeserie\nEloisa\nGeraldine\nIvonne\nKarrie\nKirstin\nMarianna\nMariel\nMaura\nMelodie\nNellie\nPorsha\nRacquel\nRobert\nShanika\nSomer\nStarla\nStarr\nStephenie\nSuzette\nTeena\nUrsula\nAnnmarie\nCambria\nCaryn\nCharissa\nCiara\nDanelle\nJayne\nJena\nKacey\nKia\nMaisha\nMalissa\nMollie\nRosaura\nShameka\nShanon\nShavonne\nShawn\nSunny\nTamar\nTammie\nWinter\nYanet\nAnel\nAnh\nBeatris\nCandida\nDaphne\nDelilah\nElida\nGena\nGracie\nJoshua\nKarly\nKassandra\nLashonda\nLilliana\nLynnette\nMadeline\nMaren\nMyisha\nPetra\nPilar\nRosana\nShannan\nSharlene\nStefani\nTamera\nWindy\nAaron\nAda\nAkilah\nAlexia\nAraseli\nBree\nBrisa\nCarmela\nDannielle\nDeidra\nFanny\nFiona\nFlora\nFlorence\nGillian\nHazel\nIlene\nJenni\nJoleen\nKacy\nKandace\nKenia\nLucila\nMariam\nMellisa\nMisti\nPaloma\nPrecious\nRenae\nRhea\nRoseann\nSalena\nStephany\nTanika\nTori\nYanira\nYasmin\nAmparo\nAngelic\nAnika\nAnnabel\nBridgett\nBrynn\nCandis\nCelena\nChantal\nCorrie\nDanette\nDeena\nDennise\nElana\nEvelia\nEvelin\nGuillermina\nJesenia\nJoelle\nJonelle\nJordana\nKisha\nLatosha\nLiset\nLizett\nLyndsay\nMackenzie\nMagaly\nMargot\nMirian\nNgoc\nNichol\nNikole\nNydia\nPortia\nReanna\nRenata\nRikki\nRyann\nSamara\nSandi\nStephaine\nSue\nTarah\nVickie\nAllegra\nAnamaria\nAnnemarie\nAurelia\nBrandee\nBrie\nCathryn\nChantelle\nCorin\nDania\nDanna\nDemetria\nDusty\nElizabet\nEstrella\nFallon\nHa\nJeanie\nJohn\nKaryn\nKimiko\nLeona\nLorna\nMarysol\nNiki\nNikia\nQiana\nRae\nRegan\nShaina\nSiobhan\nSoledad\nTaina\nTosha\nVicki\nZoe\nAdina\nAlejandrina\nAlia\nAnnamarie\nAnthony\nAntionette\nAsia\nBrigitte\nCarmelita\nCharisse\nChloe\nCorine\nDarci\nElla\nErnestina\nEve\nFelisha\nGiovanna\nGisela\nHuong\nIda\nJanee\nJanis\nJenilee\nJeri\nKanisha\nKrysta\nLacie\nLilly\nLuciana\nMagda\nMarcelina\nMargo\nMartine\nMaryanne\nMeaghan\nMeghann\nMichel\nPaulette\nPrincess\nRayna\nRina\nRoseanne\nShanae\nStacia\nTaneisha\nThanh\nTherese\nTrista\nVenus\nWanda\nYesica\nYessica\nAlecia\nCandi\nCarisa\nCarlie\nCassidy\nCeline\nChante\nCinthia\nCrista\nCristen\nDeja\nDelfina\nDoreen\nEboni\nElba\nElisabet\nElyse\nEric\nEvonne\nHortencia\nIlana\nJames\nJaneth\nJeniffer\nJenniffer\nJovana\nJustina\nKaitlin\nKati\nKendall\nKourtney\nLaila\nLakesha\nLayla\nLela\nLinh\nLiz\nLorie\nMaile\nMariaelena\nMarika\nMildred\nMimi\nPatty\nRoseanna\nScarlett\nShamika\nShanda\nSindy\nSoraya\nSusanne\nTeresita\nTianna\nXochilt\nYajaira\nAdria\nAni\nArcelia\nAubree\nAva\nBerta\nBlake\nBrett\nCarie\nCarley\nCarmina\nChana\nCorie\nDallas\nDionne\nElda\nEmerald\nEster\nJanessa\nJewel\nKali\nLashawn\nLeia\nLetisia\nLien\nLinsey\nLucille\nLynsey\nMaranda\nMaricruz\nMarion\nMaxine\nMistie\nNanette\nNelida\nNuvia\nRachell\nRafaela\nRosanne\nShaunna\nSpring\nStar\nTawni\nThuy\nTrinity\nVerna\nYara\nYecenia\nAbbey\nAide\nAlexander\nAli\nAlycia\nAndra\nAndrew\nAnnalisa\nAntonette\nArianne\nArmida\nAstrid\nBambi\nBenita\nBettina\nBlythe\nBrandon\nBritney\nBritt\nCasie\nChanell\nChastity\nCheree\nCherry\nClare\nClarice\nColeen\nDani\nDeidre\nDella\nDelores\nDenisha\nDeseree\nDixie\nDomenica\nEmilee\nEnedina\nErinn\nFelisa\nGayle\nIesha\nIsabelle\nJanina\nJanuary\nJason\nJaymie\nJazmine\nJeana\nJenica\nJessi\nJovan\nJustin\nKayla\nKeyana\nKyra\nLatricia\nLeana\nLeandra\nLenora\nLouisa\nMarlen\nNerissa\nNiesha\nRachele\nRosita\nSabina\nSarita\nShani\nShanti\nSharee\nSharonda\nShawnta\nSusy\nTimothy\nTracee\nTrang\nValentina\nVannessa\nVilma\nAdelita\nAmbrosia\nAnisha\nAnissa\nAnnabelle\nAshanti\nAyana\nAyesha\nBao\nBrea\nBreann\nCamilla\nCarli\nCarole\nCesilia\nCharles\nCody\nCrissy\nDalila\nDamaris\nDenee\nDesirea\nDustin\nErendira\nGinny\nHailey\nHerlinda\nIrasema\nJackeline\nJan\nJaneen\nJeffrey\nJenee\nJessika\nJoslyn\nJuli\nKandis\nKandyce\nKarie\nKatelyn\nKatheryn\nKellee\nKiara\nLan\nLatesha\nLaticia\nLenore\nLetisha\nLolita\nLuis\nMarguerite\nMarleen\nMelynda\nMina\nNanci\nPriya\nRashida\nRaylene\nRichard\nRosalind\nRubi\nSelene\nSerenity\nShanelle\nShelli\nShellie\nShoshana\nSoraida\nSyreeta\nTai\nTenaya\nThu\nTonisha\nTyesha\nVelma\nXiomara\nZulema\nAdrina\nAlva\nAndriana\nAnitra\nAnjuli\nAubrie\nAura\nBreana\nBrian\nCharise\nChasity\nChrissy\nCollette\nCora\nCristie\nDawna\nDeandra\nDenis\nDolly\nElicia\nElsie\nEryn\nFaye\nFernanda\nGeorgette\nGwen\nJacquelynn\nJenell\nJolynn\nJovanna\nJulieanne\nKaci\nKasandra\nKeli\nKenna\nKerrie\nKyle\nKylee\nLarisa\nLeora\nLindy\nLisbeth\nLlesenia\nLois\nLorina\nLynne\nMandie\nMariko\nMarilu\nMariza\nMarlo\nMichal\nMika\nMikaela\nMilissa\nMisha\nNakisha\nNathalie\nNeda\nNia\nNickole\nNoelia\nNoemy\nOctavia\nParis\nPricilla\nRaelene\nRasheeda\nReena\nRosalynn\nSeason\nShanel\nShante\nShantel\nSharron\nShaunte\nShelia\nShyla\nSkye\nStacee\nTatum\nTonia\nToya\nTristan\nTyler\nValencia\nVan\nVerenice\nYen\nYuliana\nAbbie\nAdeline\nAlexandrea\nAlondra\nAmara\nAnastacia\nArielle\nArin\nBrandis\nCandie\nCarlene\nCarlos\nCecily\nChanelle\nCharla\nChaya\nCherish\nCruz\nDanika\nDanyelle\nDebora\nDemetra\nDesire\nEllie\nElysia\nFelicity\nFrankie\nGemma\nGladis\nGreta\nHiedi\nJacquelin\nJaimee\nJenae\nJennelle\nJoline\nJonathan\nJonna\nKameron\nKandi\nKatina\nKiersten\nKiley\nKindra\nKristan\nKristian\nKylene\nKymberly\nLaquisha\nLashanda\nLe\nLesly\nLetitia\nLibby\nLivier\nLogan\nLola\nLucero\nMagali\nMahogany\nMaia\nMalika\nMarylou\nMelany\nMercy\nMitzi\nMyriam\nNatosha\nNga\nNisha\nOpal\nOralia\nPhyllis\nPorsche\nRana\nRowena\nRoxann\nRuthie\nSee\nShalonda\nShanay\nShanell\nShereen\nShiloh\nSophie\nStephani\nSunnie\nTamisha\nThao\nThomas\nViola\nYael\nZenaida\nZoraida\nZulma\nAbra\nAgnes\nAime\nAlesha\nAliza\nAmberly\nAmbra\nAmina\nAntonio\nAriane\nArika\nArleen\nAsucena\nAyanna\nBreeann\nCameo\nCaren\nCathrine\nChenoa\nCherice\nChevonne\nClover\nCristine\nDale\nDaniell\nDavida\nDenae\nDevan\nDonisha\nElisia\nEmi\nEnriqueta\nEstee\nFarah\nFernando\nFranchesca\nGia\nHana\nHermelinda\nHerminia\nIdalia\nIleana\nIna\nJada\nJamey\nJammie\nJanielle\nJanisha\nJennefer\nJessenia\nJewell\nJimena\nJosefa\nJovita\nJuan\nKamilah\nKarena\nKaycee\nKeiko\nKera\nKimber\nKimberlie\nKrissy\nKristle\nKrysten\nKylie\nLashawnda\nLeslee\nLivia\nLuana\nLucina\nLusia\nManuel\nManuela\nMarcelle\nMariella\nMarisha\nMark\nMarlyn\nMarybel\nMattie\nMerissa\nNatalee\nNena\nNhung\nNicholas\nNova\nRasheedah\nRemy\nRori\nRosalee\nRoxane\nSafiya\nSahar\nSarrah\nSean\nShanta\nSharla\nShonna\nSienna\nSparkle\nStevie\nSusannah\nTabetha\nTamala\nTammi\nTenesha\nTiffaney\nTiffiny\nTramaine\nUyen\nVeronique\nYoana\nYohanna\nZaida\nAdam\nAleah\nAlisia\nAlthea\nAlysha\nAmee\nAnabelle\nAnalilia\nAnalisa\nAngelena\nAnjanette\nAshly\nAsusena\nAzalea\nBailey\nBrandalyn\nBrandice\nBrieanne\nBrigid\nBryn\nCarlotta\nCarolynn\nCassia\nChanda\nChau\nChistina\nChris\nChristianne\nCinnamon\nCyrstal\nDalilah\nDaniele\nDanisha\nDanya\nDee\nDenys\nDinah\nDonielle\nEstelle\nFarrah\nFelicitas\nFrancisco\nGabriel\nGenna\nGenoveva\nHallie\nHong\nJackelyn\nJael\nJamaica\nJannett\nJayna\nJenessa\nJenine\nJennilee\nJolie\nJulieann\nJulieta\nKai\nKanesha\nKarey\nKarlie\nKasie\nKaterina\nKatia\nKeely\nKeesha\nKenisha\nKevin\nKhanh\nKitty\nKortney\nKrystel\nLachelle\nLaiza\nLanae\nLanisha\nLaquita\nLashawna\nLatia\nLaureen\nLawanda\nLeesa\nLetha\nLiane\nLianne\nLinette\nLorelei\nLorene\nMarlin\nMaryellen\nMatilde\nMeggan\nMelonie\nMira\nMya\nMyla\nNacole\nNeha\nNita\nNyisha\nOanh\nPatrisia\nPayal\nPenelope\nPolly\nQuyen\nRheanna\nRicki\nRiki\nRoni\nRosalyn\nRyanne\nSamira\nSarena\nShakira\nShara\nShay\nSherice\nSherie\nShonda\nSimona\nSona\nSteven\nSuzie\nSuzy\nTammara\nTana\nTawana\nTeal\nTennille\nTess\nTiffini\nTinamarie\nTomasa\nTram\nTynisha\nVannesa\nWilliam\nWillow\nZina\nAdele\nAdena\nAdia\nAkemi\nAlessandra\nAletha\nAlysa\nAmaris\nAndres\nAngelene\nAnica\nAnnamaria\nApryl\nAsha\nAshli\nAudrea\nAundrea\nAvelina\nBessie\nBlaire\nBobby\nBrienne\nBrina\nBryan\nBryana\nCamelia\nCandelaria\nCandyce\nCarin\nCarlota\nCassy\nCecile\nCelene\nCelestina\nCharleen\nCherisse\nChina\nCicely\nCindi\nClaudette\nCorena\nCrysta\nCrystle\nDahlia\nDarcie\nDarleen\nDebby\nDerek\nDinora\nDominica\nDona\nDorothea\nDusti\nDustie\nDyan\nDyana\nEbone\nEbonie\nEden\nEdwina\nElodia\nEnjoli\nEri\nErlinda\nErnestine\nEvan\nEvangeline\nEvelina\nFelecia\nGema\nGenesis\nGermaine\nGianna\nGrabiela\nGuinevere\nHan\nHolland\nHolli\nIsabella\nIsis\nJannifer\nJanny\nJaya\nJennell\nJesika\nJohnna\nJosephina\nKalani\nKallie\nKanika\nKarri\nKasi\nKeona\nKorin\nKorina\nKory\nKris\nKristiana\nLa\nLane\nLareina\nLatoyia\nLatrisha\nLeeanne\nLetticia\nLiberty\nLillie\nLinnea\nLisabeth\nLisamarie\nLisett\nLoreen\nLurdes\nLus\nMa\nMae\nMaegan\nMalena\nManda\nMaribell\nMario\nMele\nMeridith\nMerle\nMi\nMicah\nMignon\nMilagros\nMissy\nMiya\nMonet\nMonic\nMyranda\nNadya\nNatisha\nNeysa\nNiccole\nNichelle\nNicki\nNicola\nNikkia\nNneka\nNoreen\nOtilia\nPang\nParisa\nPaul\nPorche\nPorscha\nRaechel\nRenita\nRhoda\nRobbie\nRomina\nRoslyn\nRoxie\nSabra\nSaira\nSalome\nSamia\nSanjuana\nSarai\nScarlet\nShae\nShalene\nShane\nShanee\nShannah\nShavonda\nShawnna\nShawntae\nShawntee\nShera\nSherese\nSherilyn\nShira\nShonte\nSiri\nStephane\nSujey\nSulema\nSulma\nSuzana\nTamela\nTamesha\nTawnie\nTenille\nTerah\nTierney\nToccara\nTravis\nTressa\nTrinidad\nTyra\nValery\nValorie\nVelia\nVianey\nVy\nYasmeen\nYezenia\nYohana\nYumi\nZandra\nZena\nZenia\nAbril\nAkiko\nAlda\nAlea\nAleida\nAlesia\nAlethea\nAlishia\nAlona\nAmal\nAminah\nAmmie\nAmoreena\nAn\nAngella\nAnnelise\nAreli\nArely\nArgelia\nArlyn\nArmando\nArwen\nAshlie\nBarbra\nBenjamin\nBerenise\nBilly\nBonita\nBria\nCami\nCaressa\nCarlee\nCarlyn\nCarmel\nCarri\nCatharine\nChantay\nCharis\nChelsey\nChelsie\nChristel\nChristiane\nCierra\nCinthya\nConchita\nCorinn\nCorrin\nCourtnie\nCyndi\nDacia\nDaena\nDaina\nDanyale\nDanyell\nDaria\nDarline\nDedra\nDeedee\nDelicia\nDelmy\nDeonna\nDeserae\nDevyn\nDeyanira\nDiona\nDione\nDionna\nDominque\nDomonique\nDonelle\nEdit\nElishia\nEllena\nEloise\nElsy\nEna\nEnid\nErma\nFatimah\nFelice\nFreya\nGenelle\nHang\nHattie\nHeidy\nHelene\nHoa\nImee\nInes\nIrais\nIsa\nJacinda\nJaclynn\nJacqulyn\nJameelah\nJanay\nJanaya\nJanea\nJanella\nJanene\nJannelle\nJaquelin\nJaymee\nJeanelle\nJeni\nJenne\nJennette\nJennine\nJeremy\nJerilyn\nJerri\nJoella\nJori\nJoselyn\nJosette\nJoya\nJulee\nJulisa\nKa\nKameelah\nKamisha\nKarli\nKathlyn\nKathryne\nKay\nKelle\nKellen\nKenneth\nKerstin\nKesha\nKhalilah\nKiera\nKiki\nKimberli\nKinsey\nKrisha\nKristena\nLacee\nLaci\nLaina\nLakeysha\nLakiesha\nLanita\nLauryn\nLesa\nLetty\nLindsy\nLisandra\nLiseth\nLizabeth\nLizzette\nLoan\nLonnie\nLoreal\nLorenza\nLoriann\nLorrie\nLura\nMalaika\nMalisa\nMaral\nMaricel\nMaricella\nMarin\nMarinda\nMarita\nMarites\nMartinique\nMaryam\nMaryjane\nMelanee\nMeloney\nMerry\nMesha\nMeuy\nMiguel\nMirta\nMisa\nMyiesha\nNatascha\nNicholle\nNikisha\nNinfa\nNoelani\nNohemi\nNycole\nOliva\nPa\nPatrica\nPennie\nPerlita\nPiper\nPrescilla\nPriscella\nPriscila\nQuinn\nQuynh\nRaelynn\nRashell\nRebbecca\nRebekkah\nRian\nRisa\nRobbin\nRobynn\nRolanda\nRonnisha\nRoselia\nRoselyn\nSage\nSamar\nSanta\nScott\nSeema\nSeptember\nShadonna\nShalana\nShandi\nShaneka\nShannel\nShawana\nShawnte\nShea\nSheetal\nShena\nShiela\nShireen\nSirena\nSiria\nSteffany\nStephen\nStephine\nStormy\nSumer\nTakisha\nTakiyah\nTalea\nTamekia\nTamiko\nTarrah\nTashima\nTawanna\nTayna\nTeana\nTena\nTerese\nTerrie\nTessie\nThi\nTiffeny\nTomeka\nTonja\nTran\nTynesha\nVenesa\nVeronika\nVi\nVida\nVina\nWilla\nYazmin\nYeni\nYuka\nYury\nZabrina\nZakiya\nZenobia\nAbelina\nAdelle\nAdrena\nAleisha\nAlejandro\nAleta\nAlida\nAlise\nAllana\nAllie\nAlmadelia\nAlvina\nAlyce\nAlyse\nAmada\nAmethyst\nAmira\nAnanda\nAngelia\nAngle\nAnjali\nAnjelina\nAnnabell\nAnnalee\nAnneke\nAnnel\nAnneliese\nAnny\nAntonietta\nAqueelah\nArasely\nArica\nAriela\nAshely\nAziza\nBaby\nBanessa\nBarbi\nBelia\nBernadine\nBevin\nBinh\nBonny\nBridgit\nBrigette\nBrita\nBritta\nBrittanie\nBritton\nBronwen\nBronwyn\nBrooklyn\nBryanna\nBryanne\nBryce\nCalina\nCandance\nCarlin\nCassey\nCassondra\nCesar\nChan\nChannel\nCharlette\nCharlie\nCharline\nChaundra\nChoua\nCiera\nClarisa\nClarisse\nCristela\nCristi\nCristyn\nCrystel\nDaisey\nDaisha\nDanny\nDawnelle\nDawnette\nDayana\nDaylene\nDebrah\nDeeann\nDeirdra\nDelana\nDenay\nDenesha\nDenette\nDenielle\nDestinee\nDestini\nDiamond\nDonita\nDyanna\nEbonee\nEdie\nElbia\nEliana\nElidia\nEmber\nEmiko\nEmmeline\nErendida\nErik\nErina\nErmelinda\nEssence\nEsthela\nEvelynn\nFelipa\nFern\nFlorinda\nFrank\nGavriela\nGerardo\nGeri\nGerri\nGilda\nGlenna\nHeide\nHolley\nHoney\nIgnacia\nIlda\nIlia\nIndia\nIrina\nIva\nIvanna\nIvory\nJacinta\nJacquelyne\nJacquline\nJacy\nJamilah\nJamillah\nJannie\nJavon\nJeanice\nJene\nJeniece\nJenille\nJenniefer\nJennipher\nJennyfer\nJerica\nJesseca\nJoanie\nJocelynn\nJoe\nJoelene\nJoey\nJohna\nJulene\nJuliann\nJulieanna\nKandy\nKarinne\nKarmen\nKarra\nKatharyn\nKatrice\nKatrin\nKaycie\nKaylan\nKeosha\nKerin\nKeryn\nKeyona\nKiesha\nKiona\nKoren\nKristianne\nKrystin\nKyndra\nLaine\nLakeesha\nLakeya\nLakia\nLasha\nLashaunda\nLashay\nLatara\nLatashia\nLatina\nLatrina\nLauralee\nLauran\nLavonna\nLawana\nLeeanna\nLeina\nLeyla\nLianna\nLigia\nLillia\nLindsie\nLing\nLissa\nLoraine\nLorin\nLorraina\nLouann\nLuzmaria\nLyn\nLyndee\nMadonna\nMagen\nMalanie\nMandeep\nMargret\nMariaisabel\nMaricarmen\nMarielena\nMarielle\nMarietta\nMarivic\nMarizol\nMarja\nMarlina\nMarline\nMarvella\nMaryjo\nMeena\nMei\nMeisha\nMelita\nMeryl\nMey\nMica\nMichiko\nMikala\nMiki\nMindi\nMinh\nMirabai\nMone\nMonisha\nMorena\nMoria\nMyeisha\nMyia\nMylene\nNada\nNaila\nNakeya\nNalani\nNaseem\nNastassia\nNathan\nNatividad\nNegar\nNeisha\nNevada\nNickie\nNicol\nNissa\nNiya\nNola\nNona\nNorah\nNyesha\nOneida\nOona\nPatsy\nPepper\nQuincy\nRaeanne\nRagan\nRanda\nRandee\nRasheda\nRashelle\nReagan\nReana\nRhiana\nRichele\nRomelia\nRomy\nRonisha\nRonni\nRosaisela\nRoshanda\nRosibel\nRosina\nSacha\nSallie\nSalvador\nSamatha\nSamuel\nSandee\nSandie\nSantana\nSantos\nSarahann\nSeana\nSendi\nSequoia\nSha\nShalanda\nShamia\nShamica\nShandra\nShantae\nShantell\nSharah\nSharita\nShatoya\nShauntae\nShawnda\nShawnee\nShawntay\nShayne\nShenandoah\nSherah\nSherene\nSherrill\nShila\nSidney\nSky\nSokha\nStarlene\nStefany\nStormie\nSully\nSunni\nTalisha\nTalitha\nTameika\nTamica\nTarin\nTarra\nTausha\nTaya\nTeagan\nTerina\nTesha\nTeshia\nThais\nThania\nTifany\nTira\nTisa\nTomika\nTova\nTrinh\nTuyet\nTwila\nValeri\nVania\nVerenise\nVictor\nVincent\nVonetta\nWendie\nWinnie\nWren\nXochil\nYasmine\nYer\nYisel\nYoko\nYuridia\nZaira\nZakiyyah\nZoila\nJennifer\nJessica\nSarah\nMelissa\nMichelle\nNicole\nElizabeth\nAmanda\nChristina\nMaria\nStephanie\nCrystal\nVanessa\nAmber\nTiffany\nHeather\nAmy\nKimberly\nRebecca\nLisa\nLaura\nErin\nVeronica\nAndrea\nAngela\nMonica\nRachel\nDanielle\nSara\nKelly\nErica\nLauren\nMegan\nShannon\nEmily\nJamie\nChristine\nKatherine\nNatalie\nKristen\nPatricia\nDiana\nMary\nSandra\nNancy\nAshley\nApril\nKristin\nCynthia\nJacqueline\nJulie\nErika\nAlicia\nLindsay\nMonique\nValerie\nVictoria\nAnna\nCourtney\nClaudia\nLindsey\nSamantha\nKathryn\nKatie\nLinda\nAdriana\nKristina\nJulia\nAngelica\nEvelyn\nCassandra\nWendy\nAna\nBrenda\nDenise\nDesiree\nTara\nTeresa\nLeslie\nAlexis\nAllison\nCandice\nCatherine\nKathleen\nCristina\nMelanie\nSusan\nKaren\nRosa\nRenee\nLeticia\nCindy\nBrandy\nBrandi\nJenny\nGina\nNichole\nNatasha\nCarrie\nLeah\nStacy\nTanya\nGabriela\nHolly\nJanet\nSabrina\nSonia\nLorena\nHeidi\nKatrina\nKarina\nKrystal\nJoanna\nMartha\nMayra\nTamara\nGuadalupe\nTina\nTheresa\nYvette\nMaribel\nDana\nMarissa\nBrittany\nJillian\nStacey\nAlejandra\nTracy\nPriscilla\nAngelina\nRobin\nBrooke\nJasmine\nAlexandra\nAlison\nIrene\nMelinda\nCandace\nAlma\nMisty\nVirginia\nDeanna\nGloria\nPamela\nSusana\nChelsea\nRachael\nYolanda\nMarie\nKristy\nRaquel\nMarisa\nOlivia\nCheryl\nMichele\nCecilia\nMarisol\nRegina\nSharon\nMeghan\nDeborah\nYvonne\nStefanie\nDawn\nMargaret\nNorma\nKarla\nSophia\nSylvia\nAraceli\nJaime\nJanelle\nLacey\nJeanette\nCarolyn\nCarmen\nEsmeralda\nCarla\nEbony\nYesenia\nRebekah\nBlanca\nJaclyn\nShawna\nRuth\nSandy\nAnn\nLiliana\nLori\nJill\nAnne\nKara\nSummer\nBarbara\nEsther\nDiane\nNaomi\nKristine\nJudy\nKristi\nCaroline\nLatoya\nRocio\nNina\nIsabel\nKrista\nMorgan\nRoxanne\nSilvia\nBethany\nRachelle\nAdrienne\nJuliana\nMargarita\nAnita\nGrace\nBrianna\nTrisha\nElena\nAutumn\nJohanna\nBriana\nBonnie\nChristy\nAnnette\nColleen\nEva\nAriana\nKari\nElaine\nElisa\nAnnie\nCharlene\nKelli\nSuzanne\nCarolina\nTammy\nAudrey\nCarly\nRuby\nAimee\nJudith\nMarlene\nSheena\nCasey\nAlisha\nFelicia\nJacquelyn\nMelody\nBeatriz\nMarina\nRose\nAngel\nBianca\nPaula\nHannah\nLydia\nCassie\nDarlene\nJuanita\nMolly\nRobyn\nRochelle\nMaricela\nAbigail\nArlene\nIrma\nKendra\nShauna\nHelen\nMiriam\nDonna\nEileen\nKrystle\nCaitlin\nKellie\nLorraine\nLucia\nClaire\nMiranda\nFrances\nJoy\nJenifer\nBrianne\nTasha\nJennie\nKate\nBridget\nDaisy\nDebra\nElisabeth\nToni\nCorina\nJeannette\nKathy\nMindy\nAmelia\nJane\nLuz\nJanette\nKira\nMandy\nSerena\nAlyssa\nGladys\nCarol\nJoanne\nAlice\nOlga\nRita\nTabitha\nAntoinette\nCara\nConnie\nJenna\nJessie\nKirsten\nCeleste\nJolene\nMeredith\nRosanna\nYadira\nGenevieve\nTawny\nWhitney\nVivian\nMaritza\nSheila\nCarina\nRosemary\nEdith\nCarissa\nDolores\nJanice\nJanine\nLaurie\nSofia\nGriselda\nKayla\nKelley\nChristie\nKatharine\nHilda\nJosephine\nMaureen\nNoemi\nNora\nAlexandria\nCorinne\nMia\nAlana\nBernadette\nCamille\nAlissa\nJodi\nMercedes\nRandi\nShelley\nAngie\nShanna\nTonya\nAurora\nBeth\nDaniela\nLatasha\nTatiana\nBelinda\nCelina\nDominique\nLucy\nRoxana\nSonya\nCelia\nGeorgina\nJocelyn\nJoyce\nStacie\nTanisha\nLara\nMaira\nTricia\nLesley\nTania\nAdrianna\nBetty\nCharlotte\nDebbie\nLaurel\nMarilyn\nMelina\nShirley\nTraci\nAlisa\nAudra\nIris\nKelsey\nTiana\nEllen\nReyna\nRhiannon\nShelly\nSherry\nHillary\nEmma\nHilary\nJuana\nLacy\nLizette\nMarcella\nTiffani\nAthena\nEsperanza\nKerry\nLillian\nNatalia\nPatrice\nBreanna\nDorothy\nKim\nLena\nMaya\nNadia\nAmie\nBrandie\nKristal\nLourdes\nMeagan\nRosalinda\nSalina\nTessa\nBrittney\nChrystal\nJoann\nKristie\nMariana\nTrina\nDianna\nGraciela\nNicolette\nTaylor\nEricka\nEvelina\nLilia\nMarisela\nBeverly\nClarissa\nJosefina\nSally\nSierra\nBertha\nElise\nJade\nJayme\nAntonia\nHaley\nTaryn\nAubrey\nConsuelo\nJasmin\nNikki\nSelina\nDelia\nJody\nKeri\nPerla\nReina\nRyan\nElvira\nMarcela\nAngelique\nBobbie\nChrista\nHayley\nJami\nKaty\nLeanne\nLyndsey\nAmbar\nCathy\nElsa\nGabrielle\nJana\nLeilani\nMagdalena\nMarcia\nNadine\nRamona\nStaci\nAriel\nBreanne\nDevon\nFrancisca\nLily\nNereida\nSasha\nTia\nEunice\nKerri\nMarta\nNoelle\nSelena\nTerra\nViviana\nChandra\nFaith\nMelisa\nSusanna\nAileen\nAshlee\nCandy\nChristin\nSheri\nCharity\nGinger\nJackie\nLynn\nRosario\nMarianne\nMyra\nRebeca\nRhonda\nCatalina\nTerri\nTiffanie\nTracey\nEstela\nMarlena\nRoxanna\nTami\nBeatrice\nCherie\nChristen\nDestiny\nEvelin\nFabiola\nFrancine\nKimberley\nLarissa\nLatisha\nLeanna\nAllyson\nAlyson\nAnabel\nElisha\nJulianna\nMaryann\nRosemarie\nBecky\nDora\nIngrid\nLynette\nMaggie\nPaige\nTamika\nCortney\nCristal\nDina\nEvangelina\nKimberlee\nLea\nRosio\nAisha\nArianna\nBelen\nChristopher\nConstance\nLeann\nLidia\nAlaina\nCasandra\nCheri\nDena\nMariela\nShana\nCari\nCheyenne\nChristian\nClara\nFatima\nImelda\nJeanne\nLuisa\nPauline\nRene\nRoberta\nYuri\nDoris\nJanell\nJean\nJeanine\nMireya\nRosalie\nSherri\nStella\nAdrianne\nAlanna\nAlondra\nFrancesca\nGretchen\nJustine\nPearl\nShelby\nDarcy\nEmilia\nJacklyn\nJazmin\nLisette\nLynda\nMai\nMarci\nMay\nMichael\nSimone\nVioleta\nAshleigh\nBridgette\nDesirae\nElissa\nEliza\nHollie\nJenelle\nKristyn\nMalissa\nMariah\nRosalia\nYasmin\nChanel\nCorrine\nDaniel\nDayna\nLeila\nFallon\nJanae\nJeannie\nJuliet\nMarsha\nNoel\nSonja\nValarie\nVenessa\nAbby\nAida\nAja\nAracely\nChristi\nDulce\nJoana\nKasey\nLiza\nTalia\nAdrian\nDaniella\nElvia\nGwendolyn\nHarmony\nJaqueline\nKassandra\nLana\nLoretta\nShayla\nAlina\nCecelia\nChantel\nEleanor\nJoan\nJordan\nLakeisha\nLia\nMarian\nSheree\nSheryl\nSusie\nValeria\nVanesa\nCatrina\nHelena\nIvette\nJanel\nJulianne\nLina\nMarjorie\nNelly\nTameka\nTracie\nBrenna\nChristal\nCorrina\nElva\nLizbeth\nLizeth\nMara\nMona\nPaulina\nRena\nRosalina\nRosie\nTeri\nDavid\nGail\nJamila\nJoelle\nLiana\nMicaela\nMy\nRoseanna\nSommer\nYessenia\nAnastasia\nBlair\nDara\nDeana\nElaina\nGillian\nJodie\nJune\nKendall\nLakisha\nLila\nMalia\nMari\nMyrna\nOfelia\nAmalia\nAsia\nBrynn\nCameron\nChloe\nCori\nGeneva\nInez\nKarin\nLatrice\nMirna\nSadie\nAndria\nCristin\nDalia\nFaviola\nFlor\nGabriella\nGeorgia\nJohana\nJosie\nKeisha\nLeigh\nMarcy\nMirella\nRosalba\nTamra\nWendi\nYuliana\nBreann\nEstella\nJulissa\nKandice\nLee\nLora\nLouise\nMichaela\nMyesha\nPaola\nRobert\nShawn\nSuzette\nTabatha\nTamar\nViolet\nAda\nAlba\nAngelita\nBerenice\nCiara\nDevin\nFrancis\nGricelda\nIsela\nJeannine\nJose\nKyla\nLupita\nMellisa\nRichelle\nRosanne\nVicky\nAdela\nCallie\nColette\nCorinna\nDanelle\nGlenda\nIvy\nJames\nJanna\nKaitlin\nKenya\nLoni\nLupe\nMandi\nMinerva\nPhuong\nRaven\nRoxann\nSoledad\nStephany\nTawnya\nTera\nTrang\nYanira\nAdriane\nCharmaine\nCinthia\nElia\nEmilie\nJesica\nJesus\nJohn\nKathrine\nKrysta\nLeonor\nLucinda\nLynnette\nMalinda\nMartina\nNereyda\nNicholas\nQuiana\nRosana\nShamika\nShari\nSiobhan\nTarah\nTianna\nTiara\nTristan\nAlexia\nChantal\nChelsey\nCherise\nChristiana\nConcepcion\nCoral\nDarla\nDavina\nDelores\nGiselle\nLilian\nLoren\nMabel\nManuela\nMargie\nMarylou\nMeghann\nPrincess\nSerina\nSunny\nUrsula\nXochitl\nYajaira\nYessica\nAnamaria\nAnya\nBillie\nBobbi\nBrigitte\nBrook\nDoreen\nHope\nJenni\nKamilah\nLynsey\nMariam\nMollie\nNellie\nPrecious\nSarina\nShannan\nSondra\nSusanne\nSuzanna\nSydney\nAlexa\nAlia\nAnnalisa\nArielle\nBernice\nBetsy\nBree\nCandis\nCathleen\nCorey\nDanica\nDeidra\nEvelia\nKaleena\nKarissa\nKori\nLeeann\nLinh\nLinsey\nLuisana\nMadeline\nMariel\nMirian\nNathalie\nNydia\nPeggy\nPilar\nShantel\nShayna\nSyreeta\nThuy\nYanet\nAide\nAnnemarie\nCarli\nCharisse\nClare\nCorrie\nDelilah\nDianne\nHanna\nHortencia\nIda\nIvory\nJanie\nJuliette\nKirstin\nLacie\nLissette\nLyndsay\nMarion\nNichol\nPatrisia\nShasta\nTess\nTisha\nVicki\nBrigette\nCharissa\nDeena\nEdna\nElana\nErnestina\nEstrella\nHana\nJannet\nJason\nKia\nLan\nLani\nLizet\nMackenzie\nMaura\nMellissa\nMina\nNidia\nNikole\nPenny\nTerry\nAdria\nAnthony\nAva\nCaryn\nChantelle\nDaphne\nElyse\nEvette\nGladis\nIliana\nJaimie\nJoleen\nJustina\nKisha\nLorie\nLouisa\nMarcie\nMargo\nMyisha\nNicolle\nNubia\nRosalva\nStephaine\nValentina\nAnel\nAngelic\nAnika\nBrandee\nDalila\nDeanne\nEmerald\nEryn\nFanny\nIesha\nJanett\nJazmine\nJesse\nJo\nJoni\nJuan\nKiana\nLadonna\nMaren\nMarla\nRichard\nRosalyn\nRosamaria\nShameka\nShanell\nShanon\nShiloh\nSocorro\nStarla\nTanesha\nTrinity\nAlysia\nAnh\nAnnamarie\nAraseli\nAriane\nAurelia\nBreana\nCarmela\nCody\nDanae\nDeirdre\nEboni\nEmilee\nGena\nJannette\nKacey\nKarie\nKarrie\nKeely\nKylie\nKyra\nLatosha\nLeona\nMarivel\nMaryanne\nMercy\nMisti\nMonika\nNichelle\nPricilla\nReanna\nReena\nRhea\nSarita\nStefani\nSue\nThu\nVannessa\nVera\nViridiana\nAngeline\nAnjelica\nAzucena\nCasie\nCassidy\nCassondra\nCathryn\nChante\nCherry\nChris\nDebora\nDenisha\nDionne\nEden\nErendira\nEric\nFaye\nFlora\nHazel\nJeanie\nJenilee\nJessenia\nJoi\nJoslyn\nKatina\nKerrie\nKristel\nLayla\nLindsy\nLizett\nMagali\nMaile\nMariko\nMatthew\nMoriah\nPenelope\nPortia\nRacheal\nRenae\nRina\nRonda\nRoseann\nRosita\nRubi\nShara\nShaunte\nSherrie\nStevie\nTanika\nTeena\nToccara\nTori\nWilliam\nWindy\nAlexander\nAnnabel\nAsha\nBlythe\nBrisa\nCandi\nCarey\nCarley\nCicely\nCora\nDamaris\nEdwina\nFiona\nGeraldine\nGracie\nJena\nJesenia\nJoshua\nJulieann\nJustin\nKandace\nKarli\nLatanya\nLatonya\nLindy\nNgoc\nOctavia\nOralia\nPaulette\nRachell\nRaylene\nShavon\nStacia\nStarr\nSunshine\nTammie\nTenisha\nVickie\nYecenia\nYesica\nZulema\nAlejandro\nAlycia\nAmberly\nAndrew\nAndriana\nAnnmarie\nBrandon\nBritney\nCandelaria\nCharla\nChelsie\nChrissy\nCorine\nCrista\nCristy\nDania\nElba\nElida\nEloisa\nElsie\nEugenia\nEve\nGisela\nHailey\nHaydee\nIlene\nJanina\nJenae\nJeni\nJoseph\nJulieta\nKacie\nKala\nKera\nLanette\nLien\nMaegan\nMaranda\nMariaelena\nMarilu\nMaryam\nMeaghan\nMichell\nMildred\nMimi\nPhyllis\nPorsche\nRachele\nRenita\nSandi\nShaina\nShanda\nShanta\nShante\nStar\nTashina\nTawni\nTenaya\nThao\nVan\nVi\nWanda\nYer\nAbbey\nAdelina\nAlejandrina\nAndra\nAyesha\nBambi\nBerta\nBridgett\nBrie\nBryn\nCarlos\nCarmelita\nCarolynn\nCassy\nChastity\nCherish\nChi\nCollette\nCory\nDarci\nDarleen\nDenae\nDenice\nDeserie\nEnedina\nErinn\nEster\nGinny\nGuillermina\nHallie\nHanh\nHolland\nHong\nInes\nIvonne\nJan\nJanee\nJaneen\nJeana\nJenell\nJeniffer\nJessi\nJessika\nJovita\nJuliann\nKami\nKassie\nKeyana\nKiera\nKorina\nLarisa\nLeana\nLeandra\nLela\nLluvia\nLucila\nLuis\nMagaly\nMarlen\nMaxine\nMelodie\nMitzi\nNoelia\nPaloma\nPetra\nRaina\nRisa\nSarai\nShalonda\nShanelle\nShanika\nStephani\nTamera\nThea\nThelma\nTherese\nTyler\nVenus\nAdam\nAlecia\nAlena\nAngelia\nAni\nAntionette\nArmida\nAshlie\nAubree\nBritni\nCamilla\nCelena\nCharles\nChasity\nColeen\nCristine\nDeidre\nDelfina\nDenisse\nElda\nFawn\nFlorence\nGayle\nGenesis\nHuong\nJackeline\nJaclynn\nJacquelynn\nJanis\nJayne\nJenica\nJeri\nJonelle\nJonna\nKarisa\nKarly\nKasandra\nKati\nKiersten\nKymberly\nLa\nLashonda\nLetisia\nLilliana\nLinnea\nLolita\nMaia\nMarlyn\nNakia\nNga\nNisha\nRacquel\nRhianna\nRoseanne\nRyann\nShanae\nShanita\nShawnna\nSophie\nSparkle\nStephenie\nSuzy\nTierra\nTosha\nTracee\nVerenice\nVictor\nXochilt\nYazmin\nZoe\nAdina\nAgnes\nAlysha\nAmada\nArianne\nAsusena\nAubrie\nAundrea\nCami\nCandida\nCarie\nCarin\nCassi\nChanda\nChavon\nChristel\nCruz\nDallas\nDanette\nDeann\nElizabet\nElla\nErlinda\nHerlinda\nJacquelin\nJameelah\nJenee\nJoanie\nJohnna\nJordana\nKali\nKatheryn\nKristian\nKrystin\nLetitia\nLisamarie\nLiset\nLoraine\nLuciana\nMarguerite\nMarianna\nMarika\nMiesha\nMonet\nNanci\nNatashia\nNicholette\nPang\nRoni\nRosaura\nRowena\nSabina\nSelene\nShanel\nSharleen\nSharlene\nShavonne\nShawnte\nSirena\nSusannah\nTeresita\nThanh\nYoana\nAdriene\nAfton\nAmparo\nAnnika\nAntonette\nArleen\nAstrid\nBrandice\nBrett\nCatharine\nChanelle\nCheree\nCheyanne\nCorie\nDestinee\nElisabet\nEmi\nEvita\nEvonne\nFalon\nFarah\nFelisha\nGianna\nGilda\nHang\nIlana\nIsabelle\nJanessa\nJenette\nJennefer\nJennette\nJenniffer\nJosette\nJovana\nKaitlyn\nKalena\nKandi\nKaryn\nKasie\nKatelyn\nKeli\nKellee\nKenisha\nKeona\nKiley\nKindra\nKourtney\nKristan\nLacee\nLashawn\nLe\nLeyla\nLisbeth\nMarcelina\nMargot\nMariza\nMarysol\nMistie\nMonic\nNastassia\nNerissa\nNoemy\nPatty\nQuinn\nRenata\nSalena\nSerenity\nSharee\nSharita\nSharron\nShay\nShyla\nSindy\nSkye\nSteven\nTana\nTram\nTravis\nTrinidad\nTyra\nYara\nZoila\nAaron\nAdele\nAdelita\nAleah\nAlesha\nAlishia\nAlisia\nAmara\nAmerica\nAmi\nAnalisa\nAnnalee\nAura\nBailey\nBao\nBeatris\nBeronica\nBritta\nCambria\nCarisa\nCarleen\nCarlene\nCeline\nChana\nChristiane\nClarice\nCristen\nDanyel\nDarcie\nDawna\nDeandra\nDemetria\nDesire\nDomonique\nDyan\nEbonee\nEbonie\nEliana\nFarrah\nFranchesca\nFrancisco\nGenoveva\nHa\nImani\nJanea\nJaney\nJerri\nJolie\nJolynn\nJuli\nJullian\nKa\nKarena\nKay\nKelsie\nKesha\nLaci\nLacresha\nLaila\nLakesha\nLarae\nLeia\nLesly\nLilly\nLorrie\nLucille\nLucina\nLucretia\nMandie\nMariaisabel\nMarisha\nMartine\nMaryjane\nMelonie\nMerissa\nMicheal\nNaima\nNatosha\nNeda\nNicola\nNiesha\nNiki\nNohemi\nNoreen\nPa\nParis\nPiper\nPoonam\nRebecka\nRicardo\nRikki\nRoshanda\nSamara\nSamira\nSarena\nSee\nSeema\nShena\nShira\nSilvana\nTaina\nTamisha\nTammi\nTenika\nToya\nUyen\nVeronika\nVy\nWinter\nXiomara\nAbbie\nAdelaida\nAime\nAkia\nAleasha\nAllegra\nAlva\nAmina\nAnastacia\nAnnamaria\nAnny\nAntonio\nApryl\nArcelia\nAreli\nAshly\nBenjamin\nBrian\nBrigid\nCaren\nCarole\nChau\nChimere\nCierra\nCyrstal\nDanisha\nDeseree\nDione\nDorina\nEllie\nElysia\nEna\nEstelle\nFrankie\nGabriel\nGemma\nHeidy\nHolli\nIlda\nIsis\nJacob\nJaimee\nJamilah\nJanene\nJaneth\nJeanna\nJene\nJenessa\nJenine\nJoey\nJorge\nJosephina\nJovan\nKaci\nKacy\nKameron\nKaycee\nKelsi\nKiara\nKimberlie\nKylene\nLaquita\nLatesha\nLavina\nLeeanne\nLenora\nLiz\nLonnie\nLucero\nManda\nMargaux\nMaricruz\nMarielena\nMarlana\nMartin\nMayela\nMeggan\nMeryl\nMi\nMicah\nMiguel\nMika\nMilena\nMilissa\nMissy\nNai\nNena\nOdessa\nPhoebe\nPhung\nPrescilla\nRana\nRashida\nRayna\nSanjuana\nSaundra\nSavannah\nSeana\nSequoia\nShani\nShelli\nShereen\nShoshana\nSteffanie\nSusy\nSuzie\nTai\nTam\nTarin\nTawnie\nTiffini\nTiffiny\nTyesha\nVelia\nVerna\nWinnie\nYael\nYasmine\nYen\nZena\nAbril\nAkilah\nAlexandrea\nAli\nAmethyst\nAnalia\nAnisha\nAnnabelle\nAnneliese\nAugustina\nAzure\nBanesa\nBarbra\nBethanie\nBettina\nBrieanna\nBrienne\nBrittani\nBryanne\nCameo\nCarlee\nCarmel\nCarmella\nCarmina\nCelene\nCharlette\nChoua\nCorin\nCristie\nCrystle\nDahlia\nDaniell\nDanika\nDeisy\nDesirea\nDevina\nDeyanira\nDinah\nDionna\nDori\nElicia\nElodia\nEloise\nEmely\nErendida\nErik\nEvangeline\nFernanda\nGenie\nGenna\nGeri\nGlory\nHerminia\nHoa\nHolley\nIleana\nIrasema\nJacinda\nJacinta\nJackelyn\nJacquelyne\nJacqulyn\nJaymi\nJaymie\nJennilee\nJonathan\nJosefa\nJovanna\nJoycelyn\nJulee\nKevin\nKimber\nKristle\nKrystel\nKrysten\nKyle\nLanisha\nLesa\nLeslee\nLetisha\nLiesl\nLili\nLillie\nLisett\nLizzette\nLluliana\nLoan\nLois\nLola\nLorelei\nLorna\nLuana\nMadeleine\nMahogany\nMaisha\nMaral\nMarbella\nMariella\nMario\nMegumi\nMelani\nMelia\nMelynda\nMesha\nMichal\nMillicent\nMinh\nMira\nMoira\nMonalisa\nNailah\nNeena\nNelida\nNeva\nOscar\nOtilia\nPia\nPolly\nPorscha\nPriscila\nPriya\nQiana\nQuyen\nRandee\nRashell\nRashelle\nRicki\nRochell\nRosalind\nRosalynn\nRozanna\nSacha\nSaira\nSamatha\nSanam\nSean\nSeason\nShakira\nShaneka\nSharla\nShaunna\nShenna\nSherie\nShonte\nSia\nSpring\nStefany\nSubrina\nTabetha\nTalitha\nTawney\nTenesha\nTesha\nTimothy\nTisa\nTonia\nTran\nTrinh\nTrista\nTristen\nTritia\nValencia\nVannesa\nVilma\nXenia\nYing\nZenaida\nZoraida\nAdrea\nAgustina\nAiesha\nAiyana\nAlene\nAlesia\nAlethea\nAltagracia\nAlysa\nAmberlee\nAmbrosia\nAmee\nAmira\nAnabelle\nAngelena\nAnjuli\nAnnel\nAntonieta\nAutum\nAyanna\nBich\nBlake\nBobby\nBrooks\nBryana\nBryanna\nCaitlyn\nCammie\nCarlin\nCassia\nChan\nChantell\nChara\nChina\nChristianne\nChristyna\nCinthya\nCoreen\nCorrin\nCyndi\nDaina\nDanee\nDani\nDaniele\nDannielle\nDayana\nDeja\nDelana\nDelma\nDiamond\nDolly\nDung\nEbelina\nEduardo\nElisia\nEmmy\nEvan\nGenelle\nGeorgette\nGia\nGiovanna\nHelene\nIsabella\nIsaura\nJacquelina\nJacquline\nJaimi\nJanai\nJanella\nJavier\nJenise\nJennell\nJeremy\nJoelene\nJulisa\nKaela\nKambria\nKameelah\nKaris\nKarmen\nKarri\nKasha\nKathyrn\nKayleen\nKeith\nKenia\nKenna\nKortney\nKris\nKyndra\nLaronda\nLashanda\nLashaunda\nLashawnda\nLaureen\nLauretta\nLayne\nLetha\nLianne\nLinnette\nLizabeth\nLorene\nLorien\nLuzmaria\nLyla\nLynne\nMagda\nMarcelle\nMaribell\nMaricar\nMarin\nMark\nMarlina\nMarlo\nMaryjo\nMatilde\nMckenna\nMeagen\nMechelle\nMelodee\nMercedez\nMilagros\nMindi\nMisha\nMiya\nMyriam\nNada\nNakisha\nNatassia\nNeha\nNia\nNicholle\nPatti\nQuynh\nRae\nRaelene\nRafaela\nRima\nRonni\nRoselia\nRoslyn\nRossana\nRoxane\nSeanna\nSelma\nSeptember\nShalimar\nShalina\nShannah\nShantell\nSharese\nShaundra\nShawntae\nShelia\nStarlene\nSulema\nSuzan\nTakisha\nTali\nTalisha\nTamieka\nTaren\nTemika\nTerese\nTeressa\nThomas\nThy\nTiesha\nTifany\nTinesha\nTory\nTrudy\nUnique\nVelvet\nVida\nXuan\nYanin\nYasmeen\nYeni\nZaira\nZulma\nAarika\nAdeline\nAidee\nAlida\nAliza\nAlyse\nAmbre\nAmiee\nAn\nAnisa\nAnissa\nAnnalise\nAria\nArmine\nArwen\nAshely\nAubry\nAvelina\nAydee\nBelia\nBenicia\nBlia\nBonita\nBonny\nBrande\nBrandis\nBreeann\nBreezy\nBrieanne\nBritt\nBrittny\nCailin\nCali\nCaressa\nCarlena\nCarlie\nCarlina\nCarlyn\nCecily\nChanell\nChari\nChenoa\nChere\nCindi\nCinnamon\nClarisa\nCodi\nCriselda\nCrissy\nDacia\nDamara\nDanita\nDaria\nDelaney\nDella\nDemetra\nDene\nDenee\nDeseray\nDestinie\nDeven\nDiem\nDominga\nDonielle\nDorian\nDustin\nEbone\nEcho\nEleni\nElidia\nElin\nElma\nEmber\nEstrellita\nEthel\nEvanjelina\nFelecia\nFreda\nGema\nGennifer\nGeorge\nGinelle\nGiuliana\nGrabiela\nGreta\nGwen\nHector\nIndia\nInga\nIsabell\nIvon\nJamica\nJammie\nJanay\nJaniece\nJannifer\nJaspreet\nJeffrey\nJere\nJesika\nJewel\nJihan\nJimena\nJodee\nJoel\nJolena\nJoselyn\nJulietta\nKai\nKaila\nKandis\nKanesha\nKaori\nKarah\nKariann\nKarine\nKatherin\nKathie\nKathryne\nKaylene\nKeila\nKenda\nKenyatta\nKeyonna\nKhanh\nKiesha\nKimi\nKiran\nKirin\nKiyana\nKorin\nKrissy\nKrystina\nLai\nLakenya\nLane\nLanesha\nLaquisha\nLashay\nLaticia\nLauri\nLaurice\nLavonne\nLawanda\nLeslieann\nLeya\nLezlie\nLiberty\nLin\nLita\nLivia\nLorina\nLorinda\nLotoya\nLy\nLynnea\nMadelyn\nMagen\nMaida\nMaite\nMao\nMargret\nMariade\nMariaguadalupe\nMarielle\nMarkisha\nMarline\nMarni\nMarrissa\nMarti\nMarybeth\nMaryhelen\nMelony\nMeuy\nMichel\nMicole\nMirtha\nMya\nMyriah\nNatalee\nNathan\nNatisha\nNatoya\nNhu\nNita\nNorah\nNorine\nNova\nParveen\nPatrick\nPorsha\nRadhika\nRaeann\nRaelynn\nRafael\nRanda\nRania\nRasheeda\nReana\nRosina\nRubie\nRyanne\nSage\nScarlett\nSendy\nSeneca\nSerene\nShae\nShalini\nSharhonda\nShawnda\nShawnta\nShea\nShellie\nShemeka\nSheng\nShiela\nShirin\nShonna\nSiomara\nSomer\nStephen\nStephine\nStevi\nSueann\nSumer\nTalina\nTameeka\nTameika\nTamira\nTari\nTarra\nTarrah\nTasia\nTeal\nTerrie\nTifani\nTinamarie\nTodd\nTomisha\nTrena\nTressa\nTrish\nTu\nTyisha\nValorie\nVanesha\nVeda\nVeronique\nViola\nVivien\nYanette\nAbelina\nAddie\nAdia\nAdriann\nAgatha\nAislinn\nAlbert\nAlbertina\nAlea\nAleida\nAleshia\nAlex\nAlfredo\nAline\nAlmadelia\nAmaya\nAmbra\nAmmie\nAnalaura\nAnalilia\nAngelika\nAnglea\nAnica\nAnjali\nAnjanette\nAnnaliza\nAnneka\nAntonietta\nArely\nArgelia\nAriella\nArin\nArturo\nAshanti\nAshia\nAspen\nAsuzena\nAudelia\nAvery\nAviva\nAyana\nAysha\nBenita\nBlaire\nBrea\nBreeanna\nBrieana\nBritany\nBritton\nBriza\nBrynne\nBryony\nCandra\nCandyce\nCarri\nCassey\nCayla\nCecile\nCesilia\nChannon\nCharisma\nCharleen\nCharmain\nChavonne\nCherese\nCherice\nChevelle\nChistina\nChrissie\nChrysta\nChrystina\nClaudette\nContessa\nCorissa\nCourtenay\nCozette\nCristi\nDanna\nDanyell\nDanyelle\nDao\nDarby\nDavida\nDaysi\nDebby\nDedra\nDee\nDejah\nDelena\nDelicia\nDelmy\nDenis\nDenita\nDesirie\nDeva\nDevona\nDevorah\nDevyn\nDiedra\nDixie\nDona\nDulcinea\nDunia\nDyana\nEdward\nElina\nEma\nEmerita\nEnid\nEnjoli\nErrin\nEsmirna\nEura\nEvelynn\nFabiana\nFarm\nFelice\nFelicitas\nFern\nFernando\nFonda\nGale\nGenny\nGerald\nGinna\nGisselle\nGoldie\nGrasiela\nGregory\nHarmonie\nHeaven\nHeide\nHermila\nHoang\nHoney\nIna\nIndira\nIsha\nIva\nIvan\nIvet\nJacqlyn\nJamee\nJamey\nJamika\nJanetta\nJanuary\nJaquelin\nJaquelyn\nJay\nJaylene\nJaymee\nJennelle\nJenniferann\nJerry\nJessalyn\nJilian\nJina\nJulian\nJulieanne\nJulio\nKallie\nKammie\nKandyce\nKaralee\nKarisha\nKarlee\nKarlyn\nKarolyn\nKary\nKasondra\nKaterina\nKatia\nKeira\nKenneth\nKeosha\nKerstin\nKierra\nKimberli\nKitty\nKoren\nKrisha\nLachelle\nLaina\nLaneisha\nLarita\nLashaun\nLatashia\nLatia\nLatina\nLatishia\nLatrese\nLauran\nLaurene\nLeigha\nLeighann\nLeonora\nLesli\nLetica\nLianna\nLibby\nLidya\nLissa\nLissett\nLlesenia\nLogan\nLoida\nLoriann\nLorianne\nLoryn\nLuna\nLus\nLyzette\nMae\nMagnolia\nMalisa\nMalynda\nMamie\nManuel\nMarialuisa\nMariann\nMariateresa\nMaricarmen\nMaricel\nMaricella\nMaricris\nMarietta\nMarites\nMarnie\nMarquetta\nMarylu\nMassiel\nMattie\nMckenzie\nMee\nMeegan\nMegann\nMelaine\nMelany\nMele\nMelva\nMichiko\nMikaela\nMoraima\nMui\nMyla\nMylinh\nNacy\nNanette\nNaoko\nNeomi\nNiccole\nNicolet\nNikia\nNikol\nNila\nNilda\nNuria\nNuvia\nOanh\nOliva\nOphelia\nOrtencia\nPatrisha\nPatsy\nPaul\nPerlita\nPhebe\nPorcha\nPorche\nPriscella\nPrisilla\nPuja\nRaeanne\nRaechel\nRandy\nRani\nRebeka\nReema\nRegan\nRenea\nReva\nRhianon\nRhoda\nRicky\nRiki\nRivkah\nRomana\nRona\nRonesha\nRonica\nRonisha\nRonnie\nRori\nRory\nRosaisela\nRosalee\nRosangela\nRoselle\nRoselyn\nRosenda\nRosetta\nRupinder\nSabrena\nSaida\nSalma\nSan\nSanta\nSantos\nSarrah\nSergio\nShaleen\nShalena\nShamara\nShanee\nShanise\nShantal\nShantelle\nShaunta\nShavonn\nShawnee\nShawntee\nSheba\nShellee\nShemika\nSherice\nSheron\nSherree\nSherrell\nShila\nShilo\nShiree\nShona\nShonda\nShontae\nShoua\nSidney\nSienna\nSonal\nSoraya\nStacee\nStepanie\nStormy\nSujey\nSully\nSulma\nTaline\nTamica\nTamiko\nTaniesha\nTanis\nTanja\nTaralyn\nTaraneh\nTashana\nTashia\nTawanna\nTawnia\nTaya\nTenise\nTeryn\nThalia\nThuan\nTiare\nTiffaney\nTiffiney\nTiffney\nTomasa\nTomika\nTonie\nTrini\nTuyet\nTwila\nTynisha\nValene\nValeska\nVania\nVivianna\nWendie\nWesley\nWillow\nXee\nXochil\nYu\nYumi\nYuriana\nZabrina\nZainab\nZakiya\nZuleika\nJennifer\nJessica\nNicole\nMelissa\nSarah\nElizabeth\nMichelle\nStephanie\nChristina\nAshley\nAmanda\nHeather\nCrystal\nMaria\nVanessa\nAmber\nKimberly\nTiffany\nLaura\nRebecca\nMegan\nAmy\nDanielle\nRachel\nErin\nLisa\nLauren\nVeronica\nErica\nAngela\nAndrea\nCynthia\nMonica\nSara\nKelly\nJamie\nShannon\nKatherine\nEmily\nChristine\nNatalie\nDiana\nJacqueline\nPatricia\nErika\nAlicia\nNancy\nMary\nKristen\nLindsay\nSandra\nJulie\nApril\nLindsey\nVictoria\nValerie\nKristina\nKristin\nMonique\nSamantha\nAnna\nCourtney\nDesiree\nDaisy\nKathryn\nMayra\nLinda\nBrenda\nClaudia\nKatie\nAngelica\nWendy\nHolly\nKaren\nCassandra\nTara\nAlexis\nAdriana\nDenise\nJulia\nAllison\nTeresa\nAna\nCristina\nGabriela\nLeslie\nCatherine\nCindy\nBrittany\nStacy\nEvelyn\nSabrina\nCandice\nKrystal\nKathleen\nRenee\nJenny\nMelanie\nMarissa\nJoanna\nRosa\nLeticia\nPriscilla\nSusan\nChelsea\nNatasha\nTanya\nGina\nNichole\nMeghan\nAlejandra\nHeidi\nDana\nLeah\nSonia\nMartha\nLorena\nTracy\nBrandy\nBrandi\nAlexandra\nGuadalupe\nJasmine\nCarrie\nGloria\nKarina\nTheresa\nJanet\nTamara\nKatrina\nStacey\nCandace\nStefanie\nTina\nAngelina\nAlison\nSophia\nBrooke\nMaribel\nYvette\nDeanna\nAlma\nIrene\nYesenia\nJillian\nMarisol\nMelinda\nOlivia\nMichele\nMisty\nJaclyn\nYvonne\nCarmen\nMarie\nSylvia\nYolanda\nKarla\nSusana\nPamela\nRaquel\nMargaret\nVirginia\nAdrienne\nRegina\nSheena\nBethany\nAnne\nBrianna\nBarbara\nDawn\nLacey\nCecilia\nMarisa\nCarolyn\nRobin\nDiane\nGrace\nJaime\nCaitlin\nEsmeralda\nKrista\nRocio\nDeborah\nCasey\nMolly\nRebekah\nJeanette\nKristy\nNorma\nJacquelyn\nKristine\nJanelle\nRachael\nSharon\nCarla\nRuth\nMorgan\nAimee\nNaomi\nColleen\nAraceli\nLori\nRachelle\nShawna\nMelody\nJill\nKara\nKelli\nLiliana\nSummer\nCarolina\nNina\nBlanca\nRose\nChristy\nSilvia\nEbony\nAriana\nCheryl\nHannah\nIsabel\nSandy\nCarly\nKari\nLatoya\nAlisha\nRoxanne\nCaroline\nEsther\nElena\nAudrey\nEva\nHelen\nBonnie\nMarina\nSuzanne\nJohanna\nMargarita\nBianca\nEileen\nMarlene\nAbigail\nMiranda\nRobyn\nCharlene\nElaine\nKristi\nElisa\nLydia\nFrances\nKayla\nJudy\nKrystle\nRuby\nKathy\nAnn\nKendra\nBriana\nMiriam\nAnita\nAnnette\nRochelle\nBeatriz\nTrisha\nFelicia\nAutumn\nJoy\nWhitney\nAlyssa\nKelsey\nTabitha\nKate\nPaula\nAlice\nJane\nMarquita\nAngel\nAnnie\nConnie\nRita\nLucia\nSerena\nDarlene\nDonna\nElisabeth\nArlene\nJenna\nJuliana\nLorraine\nCarol\nRosanna\nCamille\nTasha\nAshlee\nLuz\nCara\nKirsten\nAngie\nJoanne\nCarissa\nCeleste\nEdith\nJanice\nJudith\nAntoinette\nAmelia\nBridget\nChristie\nCorina\nLaurie\nRosemary\nShauna\nAlana\nBrianne\nCassie\nDaniela\nJanette\nKellie\nMaritza\nNoemi\nShelly\nClaire\nMarilyn\nDebra\nJennie\nMeredith\nVivian\nElsa\nRandi\nTammy\nGenevieve\nTaylor\nGriselda\nMaira\nSofia\nJuanita\nMia\nYadira\nAlexandria\nKelley\nMaricela\nStacie\nDominique\nBreanna\nMariana\nMeagan\nShanna\nTawny\nTessa\nHilary\nJenifer\nSonya\nBrandie\nCarina\nJanine\nSheila\nJoyce\nTonya\nJuana\nLizette\nMandy\nIrma\nJessie\nJocelyn\nKatharine\nNatalia\nToni\nBeth\nCelia\nGraciela\nPaola\nAlissa\nJade\nJosephine\nMindy\nTania\nSally\nCharlotte\nMarisela\nMercedes\nRoxana\nBrittney\nDelia\nJolene\nLourdes\nAshleigh\nGladys\nSasha\nSherry\nAthena\nJustine\nShirley\nTanisha\nBeverly\nEricka\nShelley\nAudra\nCorinne\nElise\nHaley\nHilda\nSelena\nAngelique\nEllen\nIris\nJasmin\nLacy\nLatasha\nShelby\nConsuelo\nDolores\nLaurel\nMyra\nNoelle\nReyna\nTatiana\nTraci\nChrystal\nJoann\nLena\nLuisana\nMaureen\nBreanne\nLillian\nMichael\nDestiny\nHillary\nJeannette\nKeri\nKerry\nKira\nKristie\nMai\nNora\nOlga\nShana\nAubrey\nBelinda\nCharity\nLesley\nNikki\nDebbie\nLara\nBetty\nChanel\nJodi\nLeanne\nPatrice\nAileen\nEmma\nNadia\nRoxanna\nSheri\nCatalina\nClarissa\nDorothy\nKim\nMarcella\nMelisa\nTerra\nPaige\nAlisa\nAnabel\nChrista\nMelina\nAdrianna\nCristal\nEsperanza\nJana\nJosefina\nKristal\nLucy\nMallory\nMaya\nRebeca\nTiana\nCelina\nGabrielle\nLeilani\nLynette\nPerla\nSierra\nSusanna\nBertha\nDianna\nLarissa\nAracely\nBecky\nDevon\nLilia\nRamona\nSalina\nSelina\nTamika\nChandra\nFaith\nGeorgina\nKaitlin\nKimberlee\nAntonia\nAurora\nLeanna\nLynn\nRosario\nAmie\nKasey\nLily\nPauline\nTaryn\nBrenna\nDina\nElisha\nFabiola\nLuisa\nRosalinda\nVenessa\nAriel\nChristin\nElvira\nKaty\nTracey\nTrina\nCathy\nFrancesca\nJanell\nLyndsey\nMarta\nRhiannon\nTalia\nViviana\nBernadette\nJacklyn\nKimberley\nNicolette\nRene\nRyan\nTricia\nTrista\nAllyson\nAlondra\nAlyson\nBeatrice\nCortney\nJaqueline\nMaryann\nReina\nBobbie\nChristen\nDora\nDulce\nElissa\nFrancisca\nJean\nMariela\nMarlena\nVioleta\nAmbar\nBelen\nHollie\nJackie\nMaggie\nAdrianne\nClara\nElvia\nFallon\nJanae\nAdrian\nEstela\nSonja\nTracie\nValeria\nAnastasia\nCinthia\nEunice\nImelda\nLeann\nMarianne\nStaci\nTiffanie\nBridgette\nCherie\nChristian\nConstance\nDalia\nJeanne\nJody\nPearl\nStella\nTerri\nAida\nHayley\nLatisha\nMara\nNoel\nRena\nRoberta\nAja\nChelsey\nDayna\nJeanine\nLisette\nLiza\nMagdalena\nNadine\nTera\nCatrina\nChristal\nIngrid\nIvette\nIvy\nJazmin\nKaleena\nLoretta\nChantel\nCheri\nChristopher\nDesirae\nGinger\nHarmony\nJayme\nKassandra\nKatelyn\nKerri\nLea\nLidia\nLina\nLizbeth\nMarcela\nTarah\nTiffani\nAlanna\nFatima\nJami\nJenelle\nLiana\nMay\nMireya\nTia\nXochitl\nAshlie\nCandy\nCheyenne\nDaniella\nDevin\nEliza\nGretchen\nJamila\nJoana\nLizeth\nNereida\nRhonda\nRoseanna\nTami\nValarie\nCori\nDaniel\nDeisy\nJanel\nKirstin\nMarjorie\nSocorro\nSusie\nArianna\nBernice\nChloe\nChristi\nKacie\nKaitlyn\nLeila\nRosie\nYasmin\nBritney\nCari\nDarcy\nDelilah\nEleanor\nEmilia\nJeannie\nJoan\nJodie\nJulianna\nLeigh\nRosalie\nRosana\nRosemarie\nTeri\nVanesa\nBerenice\nBlair\nEdna\nElaina\nElyse\nMarsha\nMirna\nMonika\nShayna\nAsia\nCasandra\nDena\nEvangelina\nFrancine\nGlenda\nJulianne\nMalia\nMartina\nRosalia\nShayla\nThuy\nYuri\nCathleen\nGricelda\nHanna\nLana\nPhuong\nSimone\nVicky\nAndria\nCassidy\nCory\nDeana\nGwendolyn\nJason\nJeannine\nJuliet\nKarin\nLee\nLynda\nLyndsay\nMariah\nMarilu\nMona\nRaven\nSavannah\nSerina\nSheryl\nViridiana\nAbby\nAnh\nDavid\nDianne\nDoris\nElva\nFrancis\nGeneva\nJaimie\nJanie\nKenya\nMarcia\nPaloma\nShaina\nShari\nShawn\nTabatha\nAshly\nEstrella\nEugenia\nFlor\nHelena\nKandice\nMarci\nMichaela\nMy\nMyrna\nNathalie\nPaulina\nQuiana\nRosalba\nRosalva\nSheree\nSophie\nSuzanna\nTameka\nAmalia\nBillie\nBobbi\nCallie\nDanelle\nDanica\nGabriella\nGail\nGiselle\nIliana\nInez\nJanna\nJesse\nJose\nKathrine\nMandi\nMarla\nRobert\nRosio\nShamika\nTerry\nTori\nYessenia\nAndrew\nElida\nEvelin\nFaviola\nHana\nJordan\nKandace\nMarcie\nMarcy\nOfelia\nPrecious\nStefani\nZoe\nAdela\nAisha\nAlina\nAnthony\nBetsy\nBrandee\nChristiana\nDalila\nDoreen\nJanessa\nJohana\nKia\nLouise\nLupe\nLupita\nMadeline\nMeghann\nSiobhan\nSydney\nAda\nAlaina\nAnnemarie\nCarley\nCecelia\nChelsie\nCiara\nCristy\nDavina\nDeanne\nDeisi\nDenice\nIsela\nIvonne\nJesus\nJosie\nJustina\nKaryn\nLoni\nMaura\nSherri\nSue\nTiara\nUrsula\nYanira\nArielle\nBrigitte\nCharmaine\nColette\nCorrina\nDeena\nDenisha\nEloisa\nEstella\nFawn\nHolli\nHope\nJames\nJoshua\nKeisha\nKisha\nKyla\nLeandra\nLila\nMichell\nPetra\nPorsha\nPortia\nTamar\nViolet\nWanda\nAdriane\nCameron\nCarmela\nCassondra\nCorinna\nGillian\nIesha\nJoelle\nJoleen\nKarissa\nLatrice\nMarion\nMicaela\nMinerva\nPenny\nRichelle\nRosalina\nRosalyn\nShante\nShasta\nTamra\nTanesha\nTianna\nAlba\nArcelia\nBree\nBrynn\nCristin\nEmilie\nEvelina\nEvette\nJenae\nJohn\nJuliette\nKrysta\nLan\nLilian\nLora\nMeaghan\nMellissa\nMyesha\nRikki\nSadie\nSunny\nTammie\nTess\nAnnamarie\nAnnmarie\nCandis\nCasie\nChasity\nDamaris\nDeysi\nElana\nEve\nGena\nGrisel\nJeanna\nLakeisha\nLakisha\nLinh\nMabel\nMariam\nMirian\nMyisha\nNelly\nPilar\nPrincess\nRacheal\nRenae\nSommer\nTrang\nVera\nWendi\nAlexa\nAlexia\nAlycia\nAmerica\nAzucena\nDara\nDeidra\nDennise\nHazel\nIvory\nJanis\nJesenia\nKacy\nKristyn\nLani\nLia\nLinsey\nLizet\nLoren\nMalinda\nMarian\nMatthew\nMiesha\nMollie\nNellie\nPeggy\nRacquel\nReanna\nShanika\nShanon\nShantel\nShara\nShavon\nSoledad\nStarr\nStevie\nTawnya\nTenisha\nThao\nValentina\nYajaira\nAngelita\nAnjelica\nAnya\nBreana\nCarlie\nCathryn\nCharissa\nCorey\nDanika\nGianna\nHaydee\nJaneen\nJesica\nKendall\nKori\nKristel\nKylie\nLorie\nMalissa\nNakia\nNichelle\nNikole\nRafaela\nRichard\nSarina\nShani\nSuzette\nTristan\nVan\nAmi\nAnalisa\nAnamaria\nAnel\nAraseli\nAriane\nAshely\nChanelle\nCherish\nCody\nCorrie\nDania\nDenisse\nEboni\nErendira\nEric\nGeorgia\nIsaura\nJazmine\nJessika\nJoni\nJoseph\nJuan\nJune\nKarly\nKarrie\nKeely\nKyle\nLatanya\nLeeann\nLindy\nLucille\nLucinda\nMagda\nMarcelina\nMari\nMarlen\nMarylou\nNanci\nNicholas\nNidia\nPatty\nPricilla\nRaina\nRina\nSarita\nShameka\nShellie\nStar\nStephaine\nSusannah\nTamera\nThelma\nTrinity\nTyler\nYuliana\nAfton\nAlysha\nAngeline\nAnnabel\nBrie\nBrigette\nChantelle\nCharisse\nCherise\nCorrine\nDeirdre\nEbonie\nGabriel\nGemma\nGladis\nGuillermina\nHuong\nJanett\nJenniffer\nJovana\nKorina\nKyra\nLayla\nLilliana\nLois\nMariaelena\nMariel\nMarysol\nNydia\nPorsche\nRosamaria\nRoseann\nRoseanne\nSarai\nShanae\nSondra\nStephani\nThu\nTiffaney\nTonia\nVickie\nYessica\nAlejandro\nBeronica\nBreann\nCarey\nClare\nCorine\nCrista\nDaphne\nDeseree\nFlorence\nGinny\nGiovanna\nHoa\nJan\nJanay\nJeana\nJenee\nJeniffer\nKanisha\nKati\nLaila\nMarika\nMarivel\nMaryanne\nMee\nMeggan\nMikaela\nMimi\nNereyda\nNicola\nNisha\nRosaura\nRoxann\nSalena\nShanita\nSharlene\nShaunna\nSherrie\nStacia\nTanika\nTherese\nWilliam\nYanet\nAaron\nAlejandrina\nAnissa\nAntonette\nAsha\nBeatris\nBrandon\nBrian\nCaitlyn\nChantal\nCiji\nCora\nCoral\nCristine\nDarla\nDeserie\nDusty\nElsie\nEnedina\nIlene\nJackeline\nJacqulyn\nJenni\nJessenia\nJovanna\nJustin\nKacey\nKali\nKassie\nKatia\nKeli\nKenia\nLatonya\nLeia\nLela\nLucero\nMaren\nMarguerite\nMarianna\nMirella\nMonet\nNga\nNicolle\nPa\nPang\nParis\nRayna\nRosalind\nRosita\nRowena\nScott\nSelene\nShanda\nShanee\nSkye\nStephany\nSteven\nTierra\nTisha\nVannessa\nVicki\nXiomara\nYesica\nAdelina\nAide\nAlysia\nAmparo\nAngelic\nAnika\nArmida\nBailey\nBao\nBrook\nCarli\nCarole\nColeen\nDaniele\nDannielle\nDeidre\nElysia\nErinn\nEster\nFarrah\nGeorgette\nJammie\nJeffrey\nJenilee\nJeri\nJolie\nJulissa\nKa\nKami\nKellee\nKristian\nKristle\nKymberly\nLadonna\nLakesha\nLashawn\nLashonda\nLisbeth\nLissette\nLizett\nLouisa\nMaegan\nMargie\nMaricruz\nMellisa\nMelodie\nMina\nNiesha\nNoemy\nNoreen\nRachell\nRhea\nRosanne\nSean\nShiloh\nShira\nStarla\nSusanne\nTai\nTamisha\nTenaya\nThanh\nVenus\nVilma\nAlexander\nAlisia\nAnnika\nAntionette\nArianne\nBenjamin\nBryn\nChastity\nChrissy\nCiera\nConcepcion\nCristen\nDarci\nDelfina\nDorian\nEvelia\nFalon\nFelisha\nFiona\nGreta\nHailey\nHong\nJacquelin\nJayne\nJena\nJoslyn\nKarena\nKarie\nKasandra\nKiana\nKiera\nLa\nLacie\nLaquita\nLeonor\nLilly\nManuela\nMark\nMaxine\nMerissa\nMildred\nMisha\nNichol\nRaylene\nSabina\nSequoia\nShanel\nShanell\nShannan\nSteffanie\nStephenie\nTaneisha\nVictor\nYasmine\nYazmin\nZulema\nAlesha\nAlia\nAmberlee\nAndra\nAnnalisa\nAva\nBridgett\nBrisa\nBritni\nCarmelita\nCarmina\nDahlia\nDesire\nDolly\nDustin\nEcho\nElba\nElia\nElisabet\nElizabet\nEmilee\nEssence\nEvangeline\nEvita\nHanh\nHeidy\nHerlinda\nIda\nIlana\nIlda\nInes\nJacquelynn\nJannet\nJeanie\nJeni\nJulieta\nKaila\nKatheryn\nKevin\nKindra\nKortney\nKristan\nKrystina\nLaci\nLavonne\nLe\nLeona\nLianna\nLorna\nLuis\nLynsey\nMagen\nMarielle\nMiguel\nMika\nMira\nMisti\nNataly\nNiccole\nPatrisia\nPhyllis\nPia\nReena\nRisa\nRubi\nSahar\nSavanna\nShanelle\nSparkle\nTeresita\nYuridia\nZahra\nAdeline\nAlecia\nAlena\nAliza\nAyana\nBlaire\nBrittani\nBryana\nCandi\nCandie\nCarlos\nCesilia\nChanell\nCharla\nCierra\nCindi\nCintia\nDanae\nDanna\nDanyelle\nDarcie\nDiem\nDixie\nDominque\nEdwina\nEmerald\nErnestina\nErnestine\nFanny\nFarah\nFelecia\nGenoveva\nGeraldine\nGisela\nHelene\nIndia\nIsis\nJacquline\nJanene\nJannette\nJonathan\nJonelle\nJovita\nJuliann\nKallie\nKarlee\nKourtney\nKylee\nLanisha\nLaticia\nLiberty\nLola\nLynnette\nMadeleine\nMaranda\nMariko\nMarin\nMarisha\nMaritsa\nMelaine\nMelynda\nMichel\nMonigue\nMoriah\nMyriam\nNubia\nOralia\nPatrick\nPerlita\nPhoebe\nQuinn\nRenita\nRosalynn\nSee\nShane\nShay\nShea\nShilo\nShirin\nShoshana\nSunshine\nTam\nTawni\nThomas\nUyen\nVi\nVianey\nWindy\nWinnie\nYer\nAdam\nAdele\nAdina\nAgnes\nAkilah\nAmira\nAn\nAni\nAnnamaria\nAriella\nArleen\nAurelia\nAyesha\nBambi\nBenita\nBessie\nCambria\nCandelaria\nCarin\nCarlee\nCarleen\nCarlene\nCarri\nCary\nCelena\nCharise\nCollette\nCorrin\nCyrstal\nDaisey\nDanette\nDavida\nDawna\nDaysi\nDeja\nDemetria\nDenae\nDevan\nElicia\nElla\nFaye\nFranchesca\nGenesis\nGennifer\nHang\nIleana\nJanean\nJanee\nJaneth\nJanina\nJenica\nJohnna\nJulian\nKala\nKarli\nKasie\nKaylan\nKrysten\nLeighann\nLetisia\nLien\nLinnea\nLiset\nLucila\nLynne\nMackenzie\nMarbella\nMargo\nMargot\nMariaisabel\nMatilde\nMercy\nMicah\nMonisha\nNanette\nNatassia\nNelida\nNerissa\nNgoc\nNia\nNuvia\nOctavia\nPaulette\nQuyen\nRana\nRebecka\nRonda\nRoni\nRonisha\nRyann\nSamira\nSamuel\nSandi\nShaniece\nShena\nSintia\nTalitha\nTammi\nTana\nTeena\nTram\nTyesha\nValene\nViola\nWinter\nXochilt\nAbbey\nAdena\nAdia\nAleah\nAlexandrea\nAllegra\nAmbrosia\nAnanda\nAnisha\nAnitra\nAnjali\nAnnalise\nAriela\nArin\nAshlea\nAubree\nBelia\nBettina\nBonny\nBrett\nBrieanna\nCamilla\nCandyce\nCarisa\nCaryn\nCheree\nChoua\nChristel\nCorie\nDanisha\nDanita\nDaria\nDesarae\nDiamond\nDominica\nDomonique\nDrew\nEden\nElisia\nEryn\nEvan\nEvonne\nFlora\nGlory\nGregory\nGwen\nHolland\nJacob\nJada\nJanai\nJenette\nJennelle\nJordana\nJosette\nJulieann\nJulieanne\nJury\nKaci\nKamilah\nKandis\nKarolyn\nKeosha\nKerstin\nKeyanna\nKimber\nLachelle\nLanae\nLashanda\nLayne\nLenora\nLetisha\nLianne\nLillie\nLissa\nLiz\nLorrie\nLuciana\nLucina\nMa\nMae\nMagaly\nMarili\nMario\nMarlaina\nMarybeth\nMaryellen\nMonic\nNai\nNickole\nNinfa\nNoelia\nPaul\nRachele\nRae\nSari\nSavanah\nScarlett\nSerene\nShyla\nSindia\nSulema\nSuzy\nTalisha\nTawna\nTiesha\nTinisha\nTonisha\nTorrey\nTosha\nTristen\nTyra\nVerenice\nYeni\nAdelaide\nAdria\nAlessandra\nAlthea\nAlyce\nAmada\nAmberly\nAndreana\nAngelia\nAngella\nAnnabelle\nAreli\nAshli\nBanesa\nBethanie\nBrittny\nCameo\nCami\nCaren\nCassaundra\nCecily\nChante\nCharis\nCharleen\nCherry\nChina\nCruz\nCrystle\nDani\nDayana\nDeann\nDeepa\nDelmy\nDelores\nDennice\nDionna\nDomenica\nDonielle\nEmber\nEmi\nEthel\nFarm\nFelicitas\nFrank\nGayle\nGeri\nGermaine\nHellen\nIsabella\nJacquelyne\nJaimee\nJameelah\nJaymie\nJayna\nJerri\nJessi\nJessyca\nJesusita\nJo\nJodee\nJulisa\nKacee\nKalena\nKarri\nKay\nKayleen\nKelle\nKenisha\nKerrie\nKeyana\nKhristina\nKiley\nKrystin\nLanette\nLarisa\nLeeanna\nLesli\nLiseth\nLivier\nLucretia\nLyndsie\nMagali\nMagan\nMaia\nMalika\nMalisa\nMandie\nMaricella\nMarlyn\nMarquitta\nMartine\nMarybell\nMckenzie\nMelony\nMilagros\nMilissa\nMitzi\nNathan\nNatisha\nPolly\nRaul\nRayleen\nRebbecca\nRegan\nRenata\nRoxane\nSapna\nSarena\nSendy\nSerenity\nShantal\nShaquita\nShavonne\nSherilyn\nSomer\nSoraya\nStefany\nSyreeta\nTalin\nTammara\nTatum\nTawney\nTawnie\nTiffiny\nTramaine\nTravis\nTristin\nTuyen\nTyeisha\nTyisha\nValencia\nVania\nVannesa\nYara\nYen\nZara\nZena\nZoila\nZoraida\nAlberta\nAlida\nAlishia\nAlona\nAmara\nAmelie\nAnais\nAnastacia\nAndera\nAndrina\nAngelene\nAnnel\nAntonio\nArica\nAshanti\nAundrea\nAura\nAzure\nBreeann\nBryanna\nCandise\nCaridad\nCarlyn\nCarmel\nCassy\nCelica\nCherisse\nChi\nChistina\nChristianne\nCicely\nCinthya\nClarice\nContessa\nCristian\nDaisha\nDanyel\nDarby\nDeandra\nDonald\nDyan\nElda\nEnjoli\nErikka\nErlinda\nFernando\nFlorencia\nGema\nGenna\nGrabiela\nGracie\nGricel\nGrissel\nHaylee\nHeide\nHoney\nHortencia\nHuyen\nIdalia\nIvon\nJamee\nJamica\nJamilah\nJanea\nJanielle\nJannett\nJanuary\nJenay\nJenevieve\nJenine\nJennilee\nJewel\nJoella\nJoi\nJolynn\nJosefa\nJosephina\nJovan\nKai\nKang\nKanika\nKarma\nKatelin\nKeara\nKeeley\nKenneth\nKera\nKeturah\nKiara\nKiran\nKris\nKrystel\nLacee\nLakeshia\nLashawna\nLatina\nLatosha\nLauri\nLeesa\nLeslee\nLisamarie\nLisset\nLizabeth\nLolita\nLorin\nLyndi\nLynnea\nLysette\nMahogany\nMaile\nMallorie\nManda\nMarielena\nMarilee\nMarilou\nMarily\nMarkeisha\nMaryam\nMarygrace\nMassiel\nMele\nMichal\nMindi\nMiya\nMya\nNansi\nNastassia\nNatalee\nNeda\nNely\nNena\nNicholle\nNickie\nNika\nNiki\nNikia\nPatience\nPenelope\nPorscha\nPriscila\nRaelynn\nRashida\nRhianna\nRiki\nRio\nRobbin\nRoslyn\nRossana\nSaba\nSaundra\nSeptember\nShandi\nShaneka\nShanetta\nShantell\nSharee\nSharie\nShaunte\nShauntel\nShawnee\nShawnna\nSilva\nSilver\nStephine\nSuzana\nSuzie\nTabetha\nTarra\nTatianna\nTegan\nThea\nThi\nThy\nTiffeny\nToccara\nTwila\nValorie\nVanity\nVelia\nVelvet\nVeronique\nWendie\nYael\nYaneth\nYecenia\nYee\nYury\nZenaida\nAbra\nAbril\nAddie\nAdelaida\nAdreanna\nAime\nAkiko\nAlegandra\nAlethea\nAllisha\nAlva\nAlysa\nAlyse\nAmina\nAnalicia\nAndre\nAndriana\nAnica\nAnnalee\nAnnelise\nAnny\nAntwanette\nArely\nAria\nAugust\nAvery\nAziza\nBaby\nBarbie\nBarbra\nBo\nBrienne\nBrigid\nBritany\nBritt\nBritta\nBrittnee\nBryan\nBrynne\nCalli\nCasondra\nCatharine\nCelene\nCeline\nCendy\nCerise\nCesar\nChana\nChanda\nChanna\nCharisma\nCharles\nCharon\nChelsi\nChia\nChiara\nChris\nChrissie\nClaudine\nColby\nCoreen\nCorrinne\nCrissy\nCyndi\nDaina\nDaniell\nDarlena\nDeicy\nDelaina\nDelila\nDella\nDeserae\nDesirea\nDevi\nDiandra\nDivina\nDung\nDwan\nDyani\nEdward\nEllie\nElsy\nErienne\nEstelle\nFay\nFelicity\nFelisa\nFelix\nGenelle\nGenie\nGeorge\nGia\nGilda\nGinamarie\nGrasiela\nGuinevere\nGustavo\nHa\nHarpreet\nHattie\nHerminia\nIsabelle\nJacinda\nJacklin\nJaney\nJannie\nJaylene\nJenea\nJenell\nJennette\nJeny\nJesscia\nJessia\nJina\nJoe\nJonna\nJovonna\nJoycelyn\nKaela\nKalani\nKalin\nKalina\nKandi\nKandra\nKarlene\nKarol\nKatey\nKatharyn\nKatherin\nKathryne\nKaylene\nKaylin\nKeiko\nKeila\nKenna\nKeren\nKeyonna\nKhanh\nKiersten\nKimberlie\nKirstie\nKriston\nKristyna\nKyleen\nLakeysha\nLanita\nLashawnda\nLatricia\nLatrina\nLatrisha\nLaureen\nLauryn\nLawanda\nLeeanne\nLeora\nLetitia\nLetticia\nLibby\nLiesl\nLili\nLindsy\nLissett\nLoan\nLogan\nLona\nLorene\nLory\nMadalyn\nMadelyn\nMaegen\nMaisha\nMarcelle\nMargaux\nMarguita\nMaricel\nMariza\nMarlana\nMarleen\nMarni\nMarnie\nMartinique\nMarylu\nMckenna\nMei\nMelany\nMelba\nMelonie\nMerry\nMillicent\nMistie\nMorgen\nMyeshia\nNatashia\nNecole\nNhung\nNichele\nNicholette\nNicol\nNohemi\nNova\nNuria\nNyesha\nOanh\nOphelia\nOscar\nPatrica\nPhaedra\nPriya\nQiana\nRafael\nRandee\nRashelle\nRheanna\nRhoda\nRicardo\nRima\nRochell\nRosella\nRoselyn\nRosy\nRoya\nRuben\nSaida\nSana\nSang\nSeana\nSebrina\nShakira\nShalina\nShandra\nSharita\nSharleen\nSharonda\nSharron\nShawnte\nShela\nSheng\nSherie\nShona\nSteffany\nStephen\nSusy\nSuzan\nSynthia\nTaisha\nTamira\nTanaya\nTaneka\nTanja\nTaren\nTashana\nTashina\nTawnee\nTerah\nTeryn\nTheodora\nTiffini\nTimothy\nTommie\nTory\nToya\nTran\nTrena\nTrinidad\nTuyet\nTynisha\nUnique\nVita\nWillow\nXee\nYahaira\nYumi\nAbbie\nAdreana\nAdriann\nAdriene\nAleisha\nAlesia\nAlix\nAmani\nAmaris\nAmberlyn\nAmbra\nAmiee\nAminah\nAmmie\nAnabell\nAnabelle\nAnalia\nAnalilia\nAndreya\nAngelena\nAnnaliese\nAnneke\nAntonella\nArasely\nArgelia\nArlena\nArmanda\nArminda\nArturo\nAshika\nAshlye\nAshlyn\nAshton\nAsusena\nAubrie\nAudelia\nAudrina\nAugustina\nAustin\nAvelina\nAya\nAyanna\nAyla\nBanessa\nBella\nBerenise\nBerta\nBich\nBiridiana\nBlake\nBlossom\nBrandalyn\nBrandice\nBrea\nBreeanna\nBria\nBrittanie\nBrittni\nBryanne\nCaley\nCamie\nCaprice\nCaressa\nCarlena\nCarlisha\nCarmella\nCarolann\nCassey\nCassi\nCathrine\nCelestina\nChantell\nChau\nChaya\nCherilyn\nChristan\nChristena\nChristene\nChristiane\nChristinia\nCinnamon\nClementina\nCodi\nColene\nCorissa\nCourtnie\nCristi\nCristie\nCrystalyn\nDaicy\nDaizy\nDalilah\nDallas\nDanesha\nDebby\nDee\nDelisa\nDenee\nDeniece\nDiedra\nDinah\nDiona\nDionne\nDonisha\nDorothea\nDyanna\nEbelin\nEbonee\nEddie\nEdie\nElidia\nEmely\nEmmy\nEssica\nFrankie\nGenea\nGenny\nGerardo\nGiana\nGianina\nGiannina\nGigi\nGiulia\nHallie\nHan\nHenrietta\nHermelinda\nHien\nHiromi\nHoai\nIna\nIrasema\nIsabell\nIsha\nIva\nJacinta\nJackelyn\nJamesha\nJanese\nJanisha\nJanny\nJared\nJavier\nJeanelle\nJene\nJenessa\nJenise\nJennafer\nJennine\nJennyfer\nJeremy\nJerusha\nJhoanna\nJilliane\nJimmy\nJin\nJoanie\nJoellen\nJolena\nJorge\nJudi\nJudie\nJudit\nJuli\nJulio\nJullian\nKaley\nKamille\nKamryn\nKandie\nKandyce\nKao\nKarah\nKareen\nKariann\nKarisa\nKarlie\nKasondra\nKatina\nKaycee\nKeira\nKellye\nKelsie\nKeona\nKeysha\nKimberli\nKirby\nKirin\nKrisann\nKristiana\nKrysti\nKylene\nLacresha\nLadawn\nLakenya\nLakeya\nLakia\nLane\nLaquisha\nLashaunda\nLashay\nLatia\nLatoyia\nLaurinda\nLawren\nLeena\nLelani\nLeonora\nLesa\nLesly\nLeyla\nLilah\nLiliann\nLilianna\nLin\nLinette\nLing\nLinnae\nLisbet\nLizzette\nLluvia\nLonie\nLonnie\nLoraine\nLoree\nLoreen\nLoriann\nLorinda\nLuana\nLurdes\nLus\nLuzelena\nLy\nLyndie\nLyssa\nMachelle\nMalena\nManisha\nMarcus\nMariann\nMaribeth\nMarilynn\nMarine\nMarita\nMarizol\nMarkisha\nMarlin\nMarybel\nMavis\nMayela\nMayumi\nMecca\nMelva\nMi\nMicole\nMila\nMilena\nMinh\nMiracle\nMissy\nMyeisha\nNailah\nNakisha\nNatosha\nNechama\nNeelam\nNhi\nNhu\nNida\nNikita\nNila\nNoor\nNou\nOliva\nOlympia\nOsiris\nPeter\nPhillip\nPromise\nRaeann\nRaguel\nRahcel\nRamandeep\nRania\nRasheedah\nRebeka\nRebekka\nReema\nRemi\nRemy\nReshma\nRianna\nRonelle\nRonica\nRosangela\nRosann\nRoseana\nRoselia\nRosina\nRuthann\nRyanne\nSabra\nSabrian\nSallie\nSalvador\nSamara\nSamatha\nSandie\nSaran\nSeanna\nSeema\nSelia\nSerrina\nShabnam\nShaleen\nShalini\nShalynn\nShaneen\nShanette\nShanise\nSharae\nShareen\nSharhonda\nSharla\nSharmaine\nShatara\nShawana\nShawnda\nShawnta\nSheana\nSheela\nShelia\nSherrell\nShireen\nShivani\nShonta\nShonte\nSienna\nSindi\nSindy\nSirena\nSong\nStacee\nStaphanie\nStephannie\nSumer\nSunni\nTaina\nTala\nTali\nTangela\nTaniesha\nTarrah\nTashiana\nTenea\nTessie\nTien\nTiffanee\nTiffiney\nTiona\nToi\nTonja\nTracee\nTressa\nTrinh\nTrudy\nTyiesha\nValentine\nValeri\nValery\nVeda\nVenesa\nVeronika\nVianca\nVina\nVioletta\nVivianna\nVy\nXenia\nXia\nXochil\nYing\nYoanna\nYoua\nZainab\nZonia\nJennifer\nJessica\nAshley\nNicole\nMelissa\nSarah\nStephanie\nAmanda\nElizabeth\nMichelle\nChristina\nHeather\nVanessa\nCrystal\nMaria\nMegan\nDanielle\nAmber\nTiffany\nLaura\nRachel\nKimberly\nLauren\nAmy\nRebecca\nAndrea\nCynthia\nLisa\nErin\nVeronica\nAngela\nErica\nNatalie\nMonica\nKelly\nChristine\nEmily\nSara\nKatherine\nShannon\nJacqueline\nDiana\nJamie\nAlicia\nErika\nNancy\nKristen\nLindsay\nMary\nPatricia\nJulie\nBrittany\nKristin\nLindsey\nMayra\nSandra\nCourtney\nSamantha\nVictoria\nBrenda\nJoanna\nApril\nAllison\nJenna\nDaisy\nCassandra\nKristina\nAnna\nKathryn\nValerie\nKatie\nLinda\nMonique\nAna\nClaudia\nTara\nDenise\nJulia\nAlexandra\nDesiree\nWendy\nAlexis\nCandice\nKathleen\nAngelica\nLeslie\nHolly\nCatherine\nCristina\nCindy\nKrystal\nAdriana\nKaren\nTeresa\nMelanie\nChelsea\nSabrina\nGabriela\nStacy\nGina\nRosa\nNatasha\nEvelyn\nMeghan\nMarissa\nJasmine\nSusan\nBrandi\nTracy\nSonia\nPriscilla\nRenee\nLeah\nJanet\nTanya\nJenny\nKarina\nSheena\nLorena\nBrandy\nNichole\nHeidi\nStacey\nDana\nTamara\nKatrina\nGloria\nGuadalupe\nJillian\nBrianna\nIrene\nLeticia\nTina\nAlison\nSophia\nAngelina\nTheresa\nAlejandra\nRaquel\nCecilia\nDeanna\nRachael\nCaitlin\nMartha\nMarisol\nAlma\nCarmen\nCarrie\nLacey\nBethany\nStefanie\nYvette\nKrista\nMorgan\nSusana\nBrooke\nKristine\nLatoya\nMargaret\nSandy\nKarla\nMaribel\nMisty\nOlivia\nDiane\nMelinda\nCandace\nJaclyn\nAnne\nRegina\nSylvia\nJanelle\nRobin\nJeanette\nRuth\nYesenia\nCarla\nGrace\nCaroline\nMichele\nYvonne\nAlisha\nMarisa\nVirginia\nHannah\nShawna\nPamela\nJohanna\nMelody\nLiliana\nMarie\nSummer\nYolanda\nCarolyn\nSharon\nJaime\nCasey\nDominique\nEsther\nEbony\nBarbara\nAlyssa\nDeborah\nNadia\nBriana\nChristy\nNina\nMiranda\nRachelle\nKara\nKelsey\nDawn\nRebekah\nRocio\nKendra\nMolly\nNaomi\nWhitney\nAudrey\nSilvia\nEsmeralda\nJacquelyn\nKristy\nBonnie\nRobyn\nCarly\nEva\nFelicia\nRose\nElena\nMarlene\nAdrienne\nBlanca\nCharlene\nIsabel\nHelen\nRuby\nAraceli\nBrittney\nKari\nMargarita\nMeagan\nCarolina\nKrystle\nColleen\nSuzanne\nLydia\nElisa\nAlexandria\nAnn\nNorma\nMarina\nJill\nRoxanne\nSerena\nAriana\nMiriam\nRochelle\nCheryl\nConnie\nAmelia\nJudy\nKelli\nAshlee\nBianca\nJoy\nAimee\nGriselda\nMallory\nLucia\nFrances\nTabitha\nAnita\nDarlene\nLori\nPaula\nAnnie\nBreanna\nKate\nTaylor\nAnnette\nEileen\nElaine\nTrisha\nKathy\nBrianne\nClaire\nCorina\nAbigail\nKirsten\nKristi\nMaritza\nTammy\nKayla\nShauna\nArlene\nJane\nAntoinette\nCara\nDonna\nElise\nHilary\nJuliana\nRandi\nAlice\nAngel\nCarissa\nJanice\nVivian\nBeatriz\nCarol\nJudith\nKellie\nNoemi\nCassie\nLuz\nMaricela\nShelby\nGrisel\nJennie\nSheila\nGenevieve\nIrma\nChristie\nRita\nElisabeth\nPerla\nEmma\nLorraine\nRosemary\nToni\nCamille\nCarina\nMaira\nShana\nCelia\nJuanita\nJustine\nJoanne\nReyna\nKira\nAutumn\nTasha\nBridget\nMarilyn\nDebra\nLizette\nAlana\nJocelyn\nMindy\nNora\nSonya\nViviana\nLucy\nBeth\nDaniela\nHillary\nJasmin\nAlisa\nKatharine\nKeri\nJessie\nMarisela\nMandy\nTessa\nEdith\nTiana\nYadira\nAshleigh\nStacie\nCelina\nSofia\nMariana\nRoxana\nSavannah\nNatalia\nEricka\nJenifer\nLillian\nMeredith\nMia\nShelly\nTraci\nAngie\nCeleste\nCorinne\nRosanna\nLaurel\nMercedes\nTrista\nChanel\nJanine\nJoyce\nNoelle\nShanna\nSierra\nLaurie\nMaureen\nMyra\nTaryn\nClarissa\nDestiny\nGabrielle\nKelley\nAthena\nDebbie\nElsa\nJanette\nOlga\nCharlotte\nJulianne\nTanisha\nDianna\nGladys\nIris\nLena\nPaola\nSasha\nTatiana\nGraciela\nJosephine\nLacy\nMarcella\nSally\nShirley\nTawny\nTracey\nGeorgina\nJoann\nKim\nTania\nKaty\nAdrianna\nAlissa\nBeverly\nHaley\nJolene\nKasey\nLeanne\nSelina\nTrina\nBreanne\nCristal\nHilda\nMai\nMelisa\nNadine\nNikki\nTonya\nAubrey\nJade\nChrystal\nAlyson\nEllen\nLatasha\nMarquita\nTerra\nBelinda\nCathy\nChrista\nChristian\nLynette\nRosalinda\nSherry\nAurora\nJeannette\nMaggie\nPauline\nShelley\nAriel\nKaitlin\nLeanna\nLourdes\nMarcela\nPatrice\nAnabel\nBernadette\nElvia\nHayley\nLesley\nLynn\nSheri\nAntonia\nBrandie\nJordan\nStaci\nTricia\nAngelique\nIngrid\nJean\nLisette\nTracie\nChantel\nCharity\nChloe\nDolores\nLara\nPaige\nTamika\nVicky\nAllyson\nAmie\nCatalina\nCherie\nJana\nLea\nShayna\nTiffanie\nAileen\nCheri\nDevon\nDorothy\nFatima\nKatelyn\nRoxanna\nShari\nVenessa\nBetty\nCandy\nJuana\nLarissa\nDaniella\nFabiola\nLily\nFrancine\nJosefina\nMagdalena\nMichael\nSalina\nAudra\nBrenna\nCasandra\nDina\nJami\nJaqueline\nKendall\nKerry\nKristie\nMaya\nMelina\nSusanna\nVanesa\nCortney\nElyse\nFrancesca\nKristal\nLatisha\nLilia\nLyndsey\nRebeca\nReina\nSelena\nAracely\nBecky\nBlair\nChandra\nClara\nJanae\nJodi\nLana\nRene\nSydney\nDelia\nJazmin\nJenelle\nJoan\nAnastasia\nCatrina\nDulce\nFaith\nJanell\nKimberley\nMaryann\nRosario\nSonja\nBeatrice\nEsperanza\nHope\nKacie\nKarissa\nMalia\nTabatha\nTera\nZoe\nAlanna\nAshly\nDeisy\nDora\nJackie\nMariela\nRyan\nBertha\nBobbie\nChelsey\nKimberlee\nLuisa\nNicolette\nCameron\nElvira\nJeannie\nKaitlyn\nMariah\nPearl\nValeria\nVioleta\nBridgette\nConsuelo\nFallon\nGabriella\nGricel\nJoana\nNataly\nNathalie\nRamona\nRhiannon\nRosalie\nCinthia\nDayna\nEstela\nJanna\nMara\nMarlena\nMay\nPhuong\nRhonda\nTeri\nTiffani\nAisha\nChristen\nDoris\nElisha\nElissa\nEmilia\nJeanine\nKassandra\nMarta\nRosalia\nShayla\nAsia\nDavina\nJeanne\nLeila\nLidia\nLissette\nLora\nRoberta\nShaina\nAshlie\nDaniel\nDarcy\nDelilah\nJacklyn\nJulianna\nLakeisha\nLeilani\nLiza\nRosemarie\nSarina\nStella\nTia\nBelen\nChristopher\nEunice\nHollie\nLeann\nLeigh\nLizeth\nMackenzie\nMireya\nRosio\nSherri\nSusie\nTerri\nViridiana\nConstance\nGwendolyn\nJanel\nMadeline\nMarcia\nMarianne\nMeaghan\nPaloma\nYasmin\nAlondra\nArianna\nBritney\nCiara\nCorey\nDanica\nJayme\nJody\nKerri\nLia\nTalia\nTami\nValarie\nXochitl\nAdrian\nAlina\nCari\nCathleen\nDesirae\nDevin\nFlor\nGinger\nKeisha\nLizbeth\nLoren\nMirna\nSophie\nAndria\nBobbi\nCallie\nChantal\nChristin\nCori\nDena\nGillian\nJesica\nJustina\nMatthew\nNoel\nRosie\nSimone\nTess\nAdrianne\nBerenice\nBreann\nEvelin\nIvette\nJena\nJose\nLynda\nMari\nPrecious\nSheryl\nSuzanna\nViolet\nAja\nAmalia\nAmbar\nArielle\nClaribel\nColette\nDavid\nDianne\nFrancisca\nIvy\nJulissa\nKali\nKarin\nLacie\nLee\nLyndsay\nMarian\nMartina\nMichaela\nTarah\nYuri\nAida\nAnthony\nCassidy\nChristiana\nDalila\nGricelda\nHazel\nImelda\nJamila\nJohana\nLina\nMarci\nMarla\nPeggy\nRoseanna\nShasta\nSocorro\nTawnya\nYajaira\nAlaina\nAngelita\nCandis\nChristi\nCory\nEloisa\nEvangelina\nGeorgia\nGlenda\nHarmony\nKristyn\nLiana\nLoretta\nRosalba\nSarai\nSerina\nAlba\nBree\nBrittani\nCherish\nDeana\nGail\nJanie\nJuliet\nKandice\nKristian\nLynnette\nMonika\nNatali\nOfelia\nRaven\nShawn\nTrang\nYesica\nChristal\nDanelle\nDarla\nEstrella\nGiselle\nHelena\nLatrice\nLouise\nLupita\nMarjorie\nMaura\nRena\nStevie\nTamra\nTerry\nThuy\nTiara\nAdela\nAnh\nAntionette\nAzucena\nCharissa\nCheyenne\nCora\nCorrie\nGeneva\nJoelle\nJune\nKyla\nLakisha\nLeeann\nLilian\nLupe\nNereida\nRayna\nVicki\nAbby\nAshely\nCecelia\nCherise\nCorrina\nDaphne\nDeena\nDenice\nDomonique\nEleanor\nHaydee\nIliana\nJanessa\nJessika\nKarrie\nLizet\nLoni\nMalissa\nMandi\nMellisa\nMy\nPricilla\nPrincess\nRobert\nSherrie\nStefani\nTamar\nThao\nYanira\nYessica\nBernice\nCelisse\nCody\nEdna\nElia\nEvette\nIlene\nKirstin\nKrysta\nMaegan\nMarianna\nMellissa\nMichell\nPorsha\nRosana\nShameka\nSharlene\nSue\nSuzette\nTameka\nTristan\nYuliana\nAlesha\nAlexa\nAngeline\nAnnemarie\nAnnmarie\nBrigitte\nCambria\nCharmaine\nClare\nDanae\nEmilie\nHanna\nInez\nJason\nJazmine\nJeanna\nJenae\nJesse\nJohn\nJoseph\nKasandra\nLatanya\nMarsha\nMarylou\nMyrna\nNakia\nNelly\nSiobhan\nTherese\nTierra\nTori\nWindy\nAlycia\nAlyse\nBailey\nBao\nBetsy\nBritni\nDamaris\nElaina\nGeraldine\nGretchen\nJeannine\nJodie\nJoshua\nJuliette\nKassie\nKathrine\nKenya\nKyle\nLila\nMaryanne\nMiesha\nMollie\nNellie\nNubia\nPenny\nQuiana\nRichelle\nRosalina\nShara\nSondra\nTanesha\nUrsula\nAntonette\nBrandon\nDalia\nDeidre\nDenisse\nEliza\nIvonne\nKylie\nLucinda\nLynsey\nMalinda\nMaxine\nMicaela\nMirian\nMona\nNiki\nPaulina\nPetra\nSalena\nShea\nThu\nTyler\nZulema\nAnya\nCaitlyn\nCathryn\nChelsie\nCorinna\nDania\nDoreen\nEboni\nElana\nElva\nEstella\nFaviola\nGena\nJacquelin\nJonathan\nKacey\nKarly\nKeely\nKenisha\nKia\nKiana\nKylee\nMabel\nMarcie\nMirella\nMyesha\nNikole\nPortia\nRacheal\nRhea\nRosalva\nRosanne\nSheree\nSunshine\nThelma\nTianna\nAdelina\nAlia\nAnnabel\nBrynn\nCarlie\nCeline\nChantelle\nCorrine\nDara\nDeidra\nFlorence\nHang\nHeidy\nJaimie\nJeniffer\nJessi\nJosie\nJovanna\nLaila\nLindy\nLinh\nLinsey\nMeghann\nMimi\nNanci\nNicholas\nPa\nPang\nPriya\nRosita\nSee\nShantel\nSommer\nStarr\nStephaine\nWendi\nYecenia\nAda\nAdriane\nAlexia\nAlisia\nAmerica\nAni\nBreana\nBrook\nCiji\nErnestina\nEugenia\nEvan\nFlora\nFrancis\nHailey\nJackeline\nJenee\nJeri\nJesenia\nJustin\nKa\nKaryn\nMariko\nMarysol\nMeggan\nRenae\nRina\nRosalind\nShanell\nSharonda\nStar\nSteven\nTasia\nTonia\nVannesa\nAdria\nAlejandrina\nAmi\nAndrew\nAraseli\nBryanna\nCoral\nDeysi\nFawn\nGiovanna\nGracie\nIsaura\nJannette\nKandace\nKyra\nLaci\nLayla\nLeonela\nLouisa\nManuela\nMariam\nMelodie\nMinerva\nNayeli\nNichelle\nNicolle\nNisha\nParis\nPorsche\nRosalyn\nRosamaria\nShanelle\nShena\nStephani\nTammie\nTeela\nTeresita\nUnique\nVenus\nVera\nAnnamarie\nAshli\nBrandee\nBridgett\nBrigette\nCarey\nCarley\nCarli\nCherry\nCorine\nCristin\nDaniele\nDanika\nGabriel\nGuillermina\nIda\nIndia\nJayne\nJeana\nJenessa\nJoni\nKirby\nKorina\nLa\nLatonya\nLoan\nLucila\nLucille\nLuisana\nMadeleine\nMariaelena\nMarlen\nMarlyn\nMildred\nMina\nNena\nNichol\nNidia\nNydia\nPilar\nRachell\nRacquel\nRaina\nReena\nRowena\nShamika\nShanae\nShannan\nShante\nShavon\nSoledad\nSunny\nTabetha\nTammi\nTisha\nWanda\nAdina\nAide\nAlecia\nAnika\nArcelia\nAubrie\nBlythe\nBrian\nCandi\nCarmelita\nCasie\nCassondra\nCierra\nCorie\nCrista\nCrystle\nDallas\nDemetria\nEnjoli\nHallie\nHanh\nHuong\nIesha\nJannet\nJesus\nJuan\nKandis\nKarli\nKatheryn\nKati\nKatia\nKiley\nKristel\nLindsy\nLiset\nLizabeth\nMarika\nMiguel\nNereyda\nPatty\nReanna\nRichard\nRonda\nRoseann\nSahar\nSarita\nShanel\nShanika\nShaunna\nShira\nSusannah\nSusanne\nTiffiny\nTrinity\nWilliam\nXiomara\nYessenia\nAdam\nAgnes\nAlena\nAnamaria\nBaby\nBillie\nCarin\nCarlos\nCarmela\nChelsi\nClarice\nColeen\nCristine\nCristy\nCyndi\nDanna\nDannielle\nDenae\nDennise\nDesire\nDominque\nEliana\nElida\nEmilee\nEvelina\nGisela\nHana\nIndira\nJacquelynn\nJanay\nJaneth\nJenette\nJennafer\nJo\nKami\nKarena\nKaylee\nKori\nMaile\nMallorie\nMarcy\nMargo\nMariel\nMarilu\nMarion\nMarivel\nMira\nMonet\nMoriah\nNgoc\nOctavia\nPhoebe\nRaelene\nRemy\nRikki\nSadie\nSamira\nSandi\nTawni\nTenisha\nTerese\nTosha\nTrinidad\nUyen\nVan\nVickie\nAlex\nAlexander\nAlysia\nAnel\nAngelic\nAnjelica\nAsha\nAura\nBrittny\nCamilla\nCandyce\nCelena\nChanelle\nCharisse\nCintia\nCristen\nDelores\nDenisha\nErlinda\nEvita\nEvonne\nFalon\nFelisha\nGladis\nIlana\nIsela\nJanina\nJenica\nJessenia\nJewel\nJoleen\nJovana\nKayleen\nKevin\nKindra\nKrysten\nKrystin\nLadonna\nLatosha\nLisbeth\nLizzette\nLorina\nMaren\nMarleen\nMika\nNatashia\nNeda\nNickole\nNohemi\nRonnie\nRoseanne\nRubi\nSequoia\nShawnna\nStacia\nStephany\nStephenie\nTaneisha\nTeena\nViola\nYanet\nYoana\nZoila\nAlexandrea\nAndriana\nAnnabelle\nAntonio\nAshlyn\nAubree\nAva\nBeatris\nBeronica\nCaryn\nCassaundra\nConcepcion\nDanyelle\nDeirdre\nDeisi\nDevina\nDinah\nEcho\nElicia\nEmerald\nEric\nEvelia\nGemma\nGenesis\nHa\nHien\nHolli\nInes\nJaimee\nJames\nJanee\nJanett\nJeanie\nJennefer\nJerri\nJovita\nJoycelyn\nJuliane\nKala\nKatelin\nKaycee\nKera\nLani\nLeana\nLela\nLien\nLoraine\nLorna\nMaia\nMargaux\nMargie\nMarguerite\nMaricel\nNoreen\nOlympia\nPaul\nPriscila\nRhianna\nRonisha\nRosaura\nRoxann\nSavanna\nSelene\nShanon\nTeanna\nThea\nVannessa\nWinnie\nYael\nAlejandro\nAlesia\nAnais\nAnalisa\nAnnalisa\nAshlea\nAyesha\nBlaire\nBrie\nBritt\nCatharine\nChanda\nChastity\nCheree\nChoua\nChristel\nCruz\nDaniell\nDarci\nDebora\nDiamond\nElina\nElla\nElysia\nEssence\nEvangeline\nEve\nFanny\nFaye\nFiona\nFranchesca\nGayle\nGia\nHortencia\nIsis\nJacquelyne\nJaneen\nJayna\nJolie\nJulieanne\nKacy\nKatelynn\nKatina\nKay\nKaylan\nKellyn\nKenna\nLakesha\nLanette\nLanisha\nLeandra\nLeonor\nLianna\nLilly\nLorie\nMalisa\nMisha\nNai\nRachele\nRae\nRegan\nRia\nSamara\nSaundra\nShiloh\nTaisha\nTonisha\nTova\nVianey\nXochilt\nYazmin\nAdele\nAlysha\nAmparo\nAn\nAnastacia\nAngelia\nAnissa\nAnjuli\nAnnika\nArely\nAriella\nArmida\nAurelia\nBreeann\nBritany\nCaren\nCarlee\nCassi\nChante\nCharise\nCharleen\nChiara\nChrissy\nCicely\nCollette\nDawna\nDaysi\nDrew\nEbonie\nElisabet\nEster\nFarrah\nGianna\nGilda\nGreta\nHelene\nJamee\nJammie\nJanis\nJenell\nJeni\nJenine\nJenni\nJenniffer\nJoey\nJuliann\nJulieta\nKamilah\nKendal\nKeyana\nKiera\nKiersten\nKiran\nKortney\nKristle\nKrystina\nLai\nLaquisha\nLashonda\nLeia\nLisamarie\nLorene\nLynne\nMagda\nMarybel\nMechelle\nMee\nMindi\nMyisha\nNicki\nNiesha\nOanh\nPuja\nQiana\nQuinn\nRafaela\nRashida\nRaylene\nRheanna\nRosangela\nRuben\nScarlett\nScott\nShakira\nShandra\nShani\nShaunte\nShoshana\nSusy\nTai\nTracee\nTristen\nTyesha\nValencia\nVelvet\nVerenice\nXochil\nYasmine\nYer\nYuridia\nZina\nAbbey\nAdelaida\nAlessandra\nAlishia\nAllegra\nAlthea\nAmada\nAmberly\nAnalicia\nAndra\nAngelena\nAnisha\nArgelia\nAustin\nBonita\nBonny\nBrisa\nBrittanie\nBrittni\nBryn\nCalli\nCarisa\nCarlene\nCarole\nCathrine\nCecile\nCecily\nCelene\nChantell\nChasity\nCiera\nContessa\nDarcie\nDee\nDeserie\nDionna\nDionne\nDung\nElsie\nEnedina\nErendira\nEryn\nFernanda\nGrissel\nHerminia\nIsabelle\nJacinda\nJackelyn\nJacquelene\nJanene\nJaymie\nJeffrey\nJene\nJenise\nJennette\nJeremy\nJoel\nJoi\nJosette\nJulienne\nJulio\nJulisa\nKai\nKaila\nKarie\nKattie\nKaylene\nKenia\nKerrie\nKimber\nKristan\nKyndra\nLakiesha\nLan\nLarisa\nLashay\nLatoyia\nLeigha\nLenora\nLili\nLiz\nLois\nLorelei\nLucero\nMaranda\nMarcelina\nMarialuisa\nMarielle\nMario\nMartin\nMckenzie\nMelia\nMerissa\nMerry\nMi\nMicah\nMisti\nNadya\nNanette\nNathan\nNeha\nNelida\nNikia\nNoor\nNuvia\nPaulette\nPenelope\nPiper\nPooja\nPorscha\nRyann\nSamuel\nShanda\nShantelle\nSharron\nShawnee\nShereen\nShonda\nSindy\nSkye\nSoraya\nStarla\nSteffanie\nSulema\nSuzy\nTamera\nTashawna\nTenesha\nThanh\nTorrie\nToya\nTram\nTristin\nTuyet\nTyra\nVi\nZulma\nAaron\nAleesha\nAleta\nAli\nAllana\nAlysa\nAnny\nAriane\nArica\nArlin\nBreeanna\nBrieann\nBryana\nCameo\nCandelaria\nCandida\nCarmel\nCassey\nCelenia\nCharla\nChau\nChenoa\nCherisse\nChi\nChristiane\nChristianne\nCindia\nClaudine\nCodi\nColby\nCortnie\nCristian\nCrystina\nDanny\nDarleen\nDayana\nDeandra\nDeja\nDelmy\nDenelle\nDestinee\nDevora\nDonisha\nDyan\nDyana\nDyanna\nEdie\nElodia\nErik\nGisel\nGregoria\nHector\nHoa\nHuyen\nImani\nIsabella\nIvory\nJacinta\nJacqulyn\nJaimi\nJamia\nJan\nJanean\nJannelle\nJasmyn\nJenea\nJennine\nJesseca\nJina\nJonna\nJordana\nJosefa\nJoslyn\nJovan\nJuli\nKaci\nKandi\nKarlie\nKassi\nKatarina\nKathie\nKeana\nKelsi\nKelsie\nKeturah\nKierstin\nKiesha\nKisha\nKourtney\nKrystel\nKylene\nKymberly\nLashawn\nLatesha\nLeena\nLeighann\nLesli\nLetitia\nLilliana\nLillie\nLisset\nLissete\nLogan\nLolita\nLuis\nLy\nLyndsi\nMacy\nMae\nMagaly\nMagen\nMaha\nMahogany\nMalika\nMalina\nMalorie\nMaricella\nMariella\nMarily\nMarlina\nMarquisha\nMarya\nMaryrose\nMatilde\nMeagen\nMele\nMelonie\nMelynda\nMercy\nMichel\nMilagros\nMilissa\nMiracle\nMonic\nMyeisha\nMyriah\nNallely\nNastassia\nNathaly\nNavdeep\nNia\nNinfa\nNoelia\nNova\nNycole\nNyssa\nPeter\nPhyllis\nPolly\nPrisma\nRacine\nRaeann\nRana\nRebeka\nRenita\nRoselyn\nRoya\nSamatha\nSapna\nShalina\nShane\nShanee\nShaniece\nShannel\nSharee\nShawnte\nShay\nShelia\nShyla\nSidney\nSintia\nTana\nTanika\nTashina\nTenaya\nThomas\nTiffaney\nTiffeny\nTimothy\nVictor\nVilma\nWinter\nYahaira\nYen\nYoua\nYury\nAcacia\nAfton\nAleah\nAlise\nAllie\nAlona\nAlvina\nAmberlee\nAnamarie\nAnneliese\nApryl\nAreli\nAriadna\nArin\nArleen\nArlette\nAshanti\nAshlei\nAshlynn\nAshton\nAudrea\nAudrina\nAviva\nAzalia\nBambi\nBessie\nBria\nBrittnie\nCali\nCamelia\nCami\nCandie\nCandise\nCarleen\nCarlisha\nCarlotta\nCarolynn\nCelestina\nChanell\nChannel\nCharis\nCharles\nChelsy\nChristianna\nCinnamon\nCodie\nCorrin\nCourtnie\nCyndy\nDaisey\nDani\nDanisha\nDanyel\nDaria\nDeanne\nDebby\nDelfina\nDennis\nDeserae\nDestini\nDixie\nDolly\nDomenica\nDusty\nEdelmira\nEden\nElba\nElspeth\nEmber\nEveline\nGeorgette\nGiana\nIla\nIrais\nIvania\nJameelah\nJanea\nJanira\nJeanmarie\nJohnna\nJoselyn\nKaili\nKallie\nKanisha\nKaris\nKarisa\nKarolyn\nKasie\nKassy\nKatya\nKeiko\nKeli\nKeona\nKeren\nKiara\nKirstie\nKyleen\nLacee\nLaquita\nLaronda\nLashawna\nLaticia\nLatricia\nLatrisha\nLayne\nLeona\nLeslee\nLesly\nLetisia\nLinnea\nLinsay\nLiseth\nLissa\nLizett\nLoriann\nLyndsy\nMaegen\nMallori\nMandeep\nMariadelcarmen\nMariaisabel\nMarilee\nMariza\nMark\nMarkisha\nMarnie\nMaryn\nMelodee\nMelodi\nMeryl\nMichal\nMila\nMinh\nMonette\nNatalee\nNatosha\nNicholle\nNicola\nNicolina\nNita\nPage\nPayal\nPorche\nRaelynn\nRashell\nRashelle\nRebbecca\nRenata\nRisa\nRomina\nRomy\nRonika\nRosy\nSabina\nSage\nSaira\nSallie\nSandeep\nSantana\nSascha\nSavanah\nScarlet\nSerene\nShamara\nSharhonda\nSharla\nShawnta\nShayne\nShellie\nSheng\nShenna\nSherice\nSherise\nShirin\nSindia\nSirena\nSoila\nStefany\nSterling\nTali\nTalin\nTamesha\nTamisha\nTammara\nTanaya\nTaneka\nTatianna\nTawana\nTu\nTyeisha\nTyisha\nValentina\nVaness\nVeronique\nWilma\nAdaline\nAddie\nAgustina\nAime\nAlannah\nAleece\nAline\nAlivia\nAmal\nAmberle\nAmbra\nAndre\nAngeles\nAngelika\nAngella\nAnjali\nAnnalee\nAria\nArianne\nArlyn\nAstrid\nAsusena\nAutum\nAyla\nBenita\nBerta\nBethanie\nBettina\nBobby\nBrieanna\nBrittaney\nBronwyn\nBrynne\nCailin\nCalista\nCamile\nCarlota\nCarlyn\nCarmina\nCarolann\nCatarina\nCendy\nChad\nCharlette\nCharlie\nChavon\nChaya\nClarisse\nConcha\nCorin\nDale\nDanita\nDanitza\nDanya\nDanyale\nDarah\nDarlyn\nDawnelle\nDaysha\nDeann\nDelila\nDelina\nDenesha\nDer\nDerek\nDesarae\nDeseree\nDevan\nDevyn\nDione\nEdward\nElda\nEleni\nElexis\nElidia\nElizebeth\nElma\nEmelia\nEmely\nEmiko\nEnriqueta\nEricca\nErinn\nFelicity\nFelisa\nFrancisco\nGarrett\nGenna\nGennifer\nGenoveva\nGeovanna\nGriselle\nGrizel\nHoney\nHong\nIleana\nIna\nJacalyn\nJacey\nJackelin\nJaclynn\nJaquelyn\nJazzmine\nJenice\nJessyca\nJonell\nJonelle\nJosephina\nJosue\nJulieann\nKaela\nKaelyn\nKailey\nKaleena\nKaley\nKalyn\nKanika\nKarine\nKarri\nKatey\nKathryne\nKatlyn\nKayle\nKaylie\nKaylin\nKecia\nKeeley\nKelle\nKellee\nKendyl\nKenyatta\nKerstin\nKeyanna\nKeyonna\nKianna\nKieu\nKimberlie\nKimberlina\nKimbra\nKimiko\nKiri\nKolina\nKorin\nKristiana\nKrystyna\nLakeshia\nLaquesha\nLaquinta\nLarhonda\nLatia\nLatrina\nLeeanna\nLetisha\nLiane\nLianne\nLiberty\nLiesl\nLinette\nLivia\nLlesenia\nLluvia\nLuciana\nLuna\nLus\nLynnae\nLyssa\nMadison\nMadonna\nMandie\nManuel\nMaral\nMarbella\nMarcus\nMariadejesus\nMaricruz\nMarin\nMaritsa\nMarizol\nMarlin\nMarlo\nMarly\nMarquitta\nMarrisa\nMaryam\nMarybeth\nMaryelizabeth\nMarylin\nMckenna\nMelaine\nMelani\nMelany\nMelyssa\nMichaella\nMikaela\nMikayla\nMiya\nMyeshia\nNarine\nNastassja\nNechama\nNery\nNeysa\nNga\nNichola\nNicholette\nNicky\nNicol\nOlimpia\nOphelia\nOralia\nOriana\nPatience\nPatrick\nQuanisha\nRaeanne\nRafael\nRandee\nRani\nRicci\nRicki\nRomana\nRoni\nRoslyn\nSaba\nSalma\nSalvador\nSana\nSandee\nSandie\nSantina\nSarena\nSarrah\nSean\nSeana\nSeptember\nShalene\nShalyn\nShanta\nSharmaine\nShaun\nShauntel\nShavonne\nShawndra\nShawntel\nSherilyn\nSherryl\nShivani\nShoua\nSimona\nSomer\nStasia\nStephannie\nStormy\nSully\nSurina\nSuzana\nSuzie\nTahnee\nTam\nTamela\nTaren\nTawney\nTegan\nTereza\nTeryn\nTesha\nThien\nTifany\nTiffney\nTiphanie\nTory\nTrena\nTrevor\nTwyla\nValene\nVivianna\nVy\nWilla\nXee\nYalitza\nYasmeen\nYuki\nZenaida\nZoraida\nAbelina\nAdelita\nAdena\nAdia\nAdrien\nAdrina\nAidee\nAisling\nAislinn\nAkemi\nAkilah\nAkira\nAlane\nAlea\nAlethea\nAlida\nAllisa\nAlmarosa\nAlva\nAmara\nAmeerah\nAmita\nAmmie\nAnabell\nAnabella\nAnai\nAnalilia\nAnalise\nAndres\nAnja\nAnnabell\nAretha\nBarbie\nBarrie\nBella\nBerenise\nBo\nBrent\nBriann\nBrieana\nBriseida\nBrittan\nBrittnee\nCallista\nCamila\nCandra\nCarmella\nCassy\nCesilia\nChan\nChana\nChannon\nChase\nChavonne\nCherelle\nCherice\nCheyanne\nCheyenna\nChina\nChiquita\nChris\nChristena\nChristinamarie\nClaudette\nCleo\nColin\nCristie\nCrysta\nDahlia\nDaina\nDaisi\nDanesha\nDanyell\nDarcell\nDeedra\nDelena\nDella\nDenee\nDenia\nDenielle\nDenita\nDian\nDinora\nDominic\nDonielle\nDori\nDottie\nDru\nDylan\nEarlene\nEbone\nEboney\nEdnita\nElan\nElishia\nEman\nEmmy\nEna\nEngracia\nEnid\nErnestine\nFallyn\nFarah\nFatimah\nFernando\nFreda\nGenie\nGinny\nGrisell\nGwen\nHali\nHarmonie\nHerlinda\nHermelinda\nIlse\nImogene\nIndra\nIsa\nJacqualyn\nJacquline\nJamilah\nJannel\nJannell\nJanuary\nJeanelle\nJenai\nJenay\nJenie\nJennilee\nJerilyn\nJerry\nJessamyn\nJesscia\nJimena\nJoannie\nJocelynn\nJoella\nJohna\nJoline\nJolynn\nJorge\nJoscelyn\nJulee\nKacee\nKalena\nKamisha\nKandy\nKarah\nKariann\nKarilyn\nKarlee\nKarley\nKassidy\nKateri\nKathyrn\nKaycie\nKeanna\nKeesha\nKeiana\nKeila\nKenneth\nKeosha\nKeriann\nKeyona\nKhristine\nKimberely\nKimberli\nKitty\nKiyoko\nKorey\nKory\nKristene\nKristopher\nKymberlee\nLachelle\nLacresha\nLadawn\nLaine\nLakenya\nLanika\nLaraine\nLashae\nLashanda\nLashell\nLauri\nLavinia\nLavonne\nLe\nLecia\nLeeana\nLeeanne\nLesa\nLeyla\nLigia\nLilianna\nLindsie\nLinna\nLisbet\nLisett\nLisha\nLonnie\nLorin\nLorinda\nLucina\nLusia\nMagan\nMagdalene\nMaggi\nMalerie\nMarcelle\nMargot\nMarietta\nMarilou\nMarilynn\nMarlana\nMarquia\nMarti\nMaryjane\nMeena\nMeera\nMegumi\nMehgan\nMeiling\nMeka\nMesha\nMicole\nMiki\nMiko\nMitzi\nMya\nNadja\nNaima\nNajah\nNakeisha\nNannette\nNatassha\nNatassia\nNatividad\nNecole\nNerissa\nNgan\nNhi\nNhu\nNiccole\nNickie\nNikita\nNila\nNoelani\nNoemy\nNou\nNyesha\nNyla\nPamala\nPatrica\nPatrisia\nPorcha\nQuianna\nRachelann\nRadhika\nRaechel\nRaelyn\nRaul\nRayanne\nReanne\nRebekka\nReem\nRhoda\nRicardo\nRima\nRonit\nRosalynn\nRoselynn\nRosetta\nRoxane\nRuthann\nSabra\nSanta\nSarha\nSaul\nSavina\nSeanna\nSeema\nSergio\nSeth\nShaena\nShala\nShalonda\nShanay\nShanise\nShanita\nShannah\nShantell\nSharita\nSharleen\nSheela\nShemika\nSherita\nSherrell\nShiela\nShireen\nShona\nShonna\nSivan\nSong\nSophear\nSparkle\nStarkisha\nStarlene\nSteffani\nSteffany\nStehanie\nStepanie\nStephine\nStevi\nSujey\nSumer\nSun\nSuzan\nSuzzette\nSylvana\nTabbatha\nTakara\nTaleen\nTalina\nTalya\nTanna\nTaralyn\nTaran\nTarin\nTashia\nTavia\nTaya\nTemeka\nTerah\nTeressa\nTheodora\nThy\nTinesha\nToi\nTomasa\nTommie\nTorey\nTruc\nTylene\nTynisha\nValeri\nVallerie\nVaneza\nVelma\nVerna\nVeronika\nWillie\nXenia\nXia\nYaminah\nYeni\nYing\nYizza\nZabrina\nZanetta\nZena\nJessica\nJennifer\nAshley\nAmanda\nNicole\nStephanie\nMelissa\nElizabeth\nChristina\nSarah\nMichelle\nVanessa\nHeather\nMegan\nMaria\nLaura\nCrystal\nAmber\nDanielle\nRachel\nLauren\nBrittany\nKimberly\nTiffany\nAmy\nRebecca\nAndrea\nSara\nErica\nVeronica\nCynthia\nJamie\nNatalie\nErin\nLisa\nMonica\nAngela\nKatherine\nEmily\nSamantha\nNancy\nKelly\nChristine\nDiana\nJacqueline\nShannon\nKristen\nAlicia\nErika\nPatricia\nVictoria\nAllison\nMary\nMayra\nSandra\nBrenda\nJulie\nKristina\nLindsay\nKrystal\nCourtney\nJenna\nJoanna\nLindsey\nValerie\nKatie\nCassandra\nAnna\nKristin\nKathryn\nCindy\nApril\nMonique\nClaudia\nAna\nTara\nDenise\nLinda\nDesiree\nCristina\nWendy\nAdriana\nAngelica\nAlexandra\nHolly\nJulia\nDaisy\nKathleen\nPriscilla\nCatherine\nChelsea\nLeslie\nKaren\nEvelyn\nStacy\nCandice\nJasmine\nGabriela\nSabrina\nTeresa\nKatrina\nNichole\nDominique\nCaitlin\nNatasha\nGina\nRosa\nTanya\nMarissa\nMeghan\nKrystle\nMelanie\nJanet\nGuadalupe\nBrittney\nAlexis\nLorena\nLeticia\nRaquel\nRenee\nAlison\nTina\nSonia\nFelicia\nJenny\nKarina\nMarisol\nTracy\nLeah\nWhitney\nYesenia\nAlyssa\nDana\nSusan\nMartha\nBrandy\nAngelina\nRachael\nBrianna\nKarla\nTamara\nCarla\nStacey\nGloria\nCandace\nJeanette\nSheena\nBrooke\nAlejandra\nJillian\nBrandi\nSophia\nHeidi\nJohanna\nTheresa\nAlma\nMorgan\nYvette\nJaclyn\nMargaret\nIrene\nMaribel\nPamela\nCarmen\nDeanna\nGrace\nJanelle\nLiliana\nSusana\nMelinda\nSharon\nCasey\nCecilia\nKrista\nBianca\nCarrie\nRuth\nJuliana\nLacey\nYvonne\nDiane\nKristine\nRobin\nAshlee\nBethany\nIsabel\nMallory\nRocio\nDeborah\nHannah\nMarisa\nYolanda\nSandy\nEsmeralda\nEsther\nOlivia\nStefanie\nMarisela\nSylvia\nAnne\nNaomi\nBlanca\nSummer\nVirginia\nMarlene\nShawna\nCarolyn\nMeagan\nMarie\nJaime\nKara\nMolly\nAlisha\nBarbara\nJacquelyn\nRoxanne\nKristy\nMisty\nRegina\nSilvia\nCaroline\nLatoya\nMaricela\nRebekah\nColleen\nMichele\nNorma\nAudrey\nCarolina\nChristy\nRachelle\nAlexandria\nElena\nEva\nKelli\nMargarita\nMelody\nKelsey\nAriana\nAimee\nClaire\nElisa\nAraceli\nJustine\nLucia\nRose\nTaryn\nHelen\nJasmin\nCarly\nBonnie\nBreanna\nHilary\nTrisha\nAngel\nKendra\nMiranda\nNina\nMarina\nAnnie\nKari\nTabitha\nKristi\nBriana\nKayla\nAdrienne\nAbigail\nRuby\nSheila\nKellie\nEileen\nLydia\nSuzanne\nJill\nAmelia\nArlene\nJudy\nMaritza\nEbony\nElaine\nKatelyn\nTaylor\nAnnette\nCamille\nDarlene\nCassie\nCheryl\nElisabeth\nHillary\nJane\nCharlene\nHaley\nFrances\nKate\nAlana\nMiriam\nAnn\nSerena\nTatiana\nShauna\nBrianne\nJoy\nLorraine\nDawn\nEdith\nRobyn\nDonna\nLizette\nRochelle\nMaira\nSavannah\nLori\nKathy\nNadia\nPaula\nAutumn\nCharlotte\nElise\nGriselda\nCarissa\nDaniela\nEmma\nJudith\nNoemi\nCarina\nKaitlin\nConnie\nLuz\nVivian\nGenevieve\nMercedes\nRoxana\nKirsten\nAlice\nBritney\nCara\nCorina\nAshleigh\nBeatriz\nGabrielle\nHayley\nLucy\nAntoinette\nSierra\nKatharine\nMarilyn\nTammy\nAnita\nCarol\nJeannette\nJessie\nYadira\nJocelyn\nJulianne\nJanette\nJenifer\nLaurel\nRosemary\nBridget\nJoyce\nRita\nEricka\nMeredith\nJoanne\nLaurie\nNatalia\nShana\nMariana\nVioleta\nAlissa\nDebra\nJanice\nSally\nTania\nElyse\nReyna\nTasha\nChristie\nMyra\nNora\nJuanita\nLillian\nMai\nShelly\nViviana\nAthena\nCathy\nNoelle\nShelby\nValeria\nSherry\nSofia\nStacie\nAngie\nAubrey\nShirley\nCelia\nJazmin\nDestiny\nGladys\nLena\nPerla\nSasha\nCristal\nJosephine\nLeanne\nMandy\nRandi\nAriel\nCeleste\nKira\nNikki\nShanna\nChrista\nIrma\nRosanna\nJennie\nKaitlyn\nToni\nTanisha\nCorinne\nJade\nDianna\nGraciela\nMelisa\nMia\nAdrianna\nKelley\nOlga\nSonya\nBernadette\nGabriella\nJoana\nLatasha\nTraci\nElvia\nKaty\nKasey\nMichaela\nMindy\nPaola\nClarissa\nDolores\nJordan\nChrystal\nIris\nLidia\nLourdes\nPaige\nStaci\nEllen\nHilda\nJulianna\nAllyson\nFabiola\nJanine\nTricia\nBrandie\nBreanne\nLara\nTessa\nCelina\nChanel\nCherie\nHope\nKim\nKristie\nLacy\nLesley\nTiana\nBetty\nChristian\nDebbie\nDorothy\nFrancesca\nJayme\nMicaela\nMichael\nNadine\nChantel\nTonya\nAurora\nBrenna\nCasandra\nLily\nMadison\nTerra\nVanesa\nBertha\nCortney\nJena\nKassandra\nLynn\nMaggie\nMarcela\nTiffani\nAlisa\nCatalina\nDaniella\nJodi\nKristal\nNoel\nSalina\nAntonia\nBeatrice\nCharity\nChelsey\nElsa\nJosefina\nMaryann\nShayna\nYuliana\nFrancine\nLarissa\nLisette\nAnabel\nJolene\nLissette\nRebeca\nAlyson\nAngelique\nGeorgina\nKeri\nLeanna\nSelena\nAshlie\nAshly\nFaith\nJanae\nJean\nKerry\nPauline\nAmie\nBeth\nBlair\nClara\nDelia\nJackie\nJami\nJaqueline\nKimberley\nLynette\nMaureen\nReina\nShelley\nAlina\nBridgette\nDesirae\nKrystina\nRamona\nVicky\nBrittani\nChloe\nDevon\nJana\nJuana\nLyndsey\nMariela\nMaya\nTawny\nAileen\nAracely\nCassidy\nDulce\nTiffanie\nBelinda\nFatima\nRhiannon\nRosalinda\nRoxanna\nSheri\nChristopher\nDomonique\nJacklyn\nLatisha\nRosario\nTalia\nYasmin\nCinthia\nDaniel\nEsperanza\nFrancisca\nPatrice\nRyan\nTracey\nTrista\nVenessa\nAlondra\nDina\nIngrid\nJody\nLuisa\nMelina\nSydney\nTamika\nCatrina\nLeilani\nMarcella\nMarlena\nNataly\nNicolette\nRoberta\nAnastasia\nDoris\nIvy\nJoann\nKyla\nLilia\nMarianne\nRhonda\nSarai\nAudra\nBecky\nBeverly\nChristin\nDevin\nEunice\nJustina\nLeila\nRosalie\nSophie\nTabatha\nCheyenne\nChristen\nDora\nGiselle\nKerri\nLana\nLeann\nLora\nNathalie\nRichelle\nRosio\nSade\nSelina\nTiara\nYajaira\nAdrianne\nBailey\nDalia\nDavid\nLakeisha\nLizeth\nPearl\nShari\nSusanna\nZoe\nAdrian\nCandy\nCori\nGinger\nGwendolyn\nJeanine\nRaven\nShaina\nTrina\nAlanna\nDanica\nJoelle\nLea\nMadeline\nMariah\nMeaghan\nArianna\nBelen\nBerenice\nDena\nHailey\nJenelle\nKarissa\nKendall\nLizbeth\nMarcia\nMay\nNatali\nTera\nTeri\nAsia\nBobbie\nCaitlyn\nDanelle\nDominque\nEdna\nEleanor\nEstela\nJazmine\nKeisha\nMagdalena\nShawn\nSonja\nBetsy\nChandra\nColette\nConsuelo\nDarcy\nDelilah\nElvira\nHazel\nIvette\nJoan\nKrysta\nRene\nTerri\nTracie\nJeanne\nJulissa\nKimberlee\nLina\nMellissa\nRosie\nCiara\nJanell\nJanie\nJesse\nKandice\nKristyn\nMarta\nPrecious\nRosemarie\nStella\nTia\nValarie\nAmalia\nArielle\nAshely\nBrigitte\nCheri\nConstance\nElisha\nEvelin\nJulieta\nMackenzie\nMarquita\nShantel\nShayla\nTami\nCorey\nElissa\nEliza\nEmilia\nFallon\nGretchen\nLynda\nLyndsay\nMaegan\nMeghann\nPricilla\nAlba\nGeraldine\nImelda\nJose\nMireya\nMirna\nSusie\nYessenia\nAja\nBritni\nChantelle\nElva\nJuliet\nKali\nKenya\nLiza\nMalia\nMariel\nMarjorie\nMarla\nMinerva\nOfelia\nSarina\nSherri\nSuzette\nAbby\nBrittni\nCherish\nChristal\nCierra\nGeneva\nHollie\nJuliette\nKylie\nMirella\nNereida\nTarah\nUrsula\nBernice\nBree\nCorinna\nDayna\nJaimie\nJeannie\nJohana\nKacie\nKiana\nLoren\nLucero\nNelly\nSavanna\nShante\nVannessa\nYanira\nAisha\nAnais\nAndria\nAnnabel\nAnnemarie\nBrittny\nCandis\nDeidre\nEmilie\nFaviola\nIliana\nKacey\nKristian\nLeigh\nMandi\nNia\nRosalva\nStephany\nSuzanna\nYuri\nAida\nAlaina\nAndrew\nAnthony\nBreana\nGillian\nJamila\nJanessa\nJessika\nKarin\nKyle\nLee\nLoretta\nPorsha\nRosaura\nTamra\nAlyse\nAshli\nCassondra\nCecelia\nChantal\nCoral\nDenice\nFlor\nHanna\nHelena\nJames\nJenae\nKia\nLia\nLilian\nLinsey\nMara\nMarcie\nMarsha\nMikaela\nMonika\nMyrna\nRikki\nRosalyn\nSheryl\nSiobhan\nTori\nValentina\nAnh\nCallie\nDeana\nDenisse\nElaina\nIndia\nJanna\nJeanna\nLani\nMartina\nMaura\nMona\nNicolle\nPaulina\nPrincess\nRaylene\nRenae\nRosalba\nRosalia\nStevie\nTasia\nViridiana\nYesica\nAlexander\nAlia\nAnjelica\nAnnamarie\nAubree\nCari\nCherise\nChristi\nCorrine\nCory\nCrystle\nDannielle\nDavina\nDesire\nEric\nEstrella\nGiovanna\nGlenda\nGrecia\nIlene\nJeniffer\nJenniffer\nJoseph\nJosie\nKirstin\nLila\nLupe\nMalissa\nMarylou\nNikole\nParis\nRacheal\nSadie\nSerina\nShanae\nTawnya\nVicki\nAngeline\nBrittanie\nCameron\nChanelle\nCora\nCorrina\nCristine\nDenisha\nFlora\nHarmony\nInez\nIsela\nIvonne\nJacquelynn\nJanel\nJesica\nJoshua\nKori\nMabel\nMollie\nPaloma\nPorsche\nShanika\nTamar\nTeena\nTerry\nTierra\nXiomara\nAda\nAmbar\nAnamaria\nBobbi\nCarmela\nDarla\nDeanne\nDianne\nEmerald\nEugenia\nHana\nLinh\nLizet\nLouise\nMarcy\nMari\nMariaelena\nMarilu\nRoseanna\nSean\nSharlene\nSimone\nStacia\nStefani\nTahnee\nTess\nXochitl\nAdela\nAlycia\nAmerica\nAriane\nBreann\nCathryn\nCharmaine\nCorie\nCristy\nDalila\nDaphne\nDeisy\nGianna\nGrisel\nJanett\nJodie\nJohn\nJune\nKaylee\nKayleigh\nKeely\nKristan\nKrystin\nLaci\nLakisha\nLatrice\nLeeann\nLiana\nMadonna\nMagen\nMallorie\nMarian\nMyesha\nOctavia\nRosanne\nTristan\nYessica\nCorrie\nCrista\nDamaris\nDeena\nFrancis\nGail\nIsis\nJaimee\nJannette\nKaila\nKaryn\nLeandra\nLynsey\nMarysol\nMy\nNichelle\nNydia\nPeggy\nRena\nRichard\nRobert\nSheree\nStephani\nAlessandra\nAlexa\nAmi\nAzucena\nBrandon\nBrigette\nBritany\nCody\nCristin\nDeandra\nDeidra\nEboni\nEdlin\nElida\nEstella\nEvangelina\nEvette\nFlorence\nGena\nGeorgia\nJannet\nJeannine\nJessenia\nJesus\nJoleen\nJuliann\nKacy\nKasandra\nKiersten\nLadonna\nLatanya\nLeonela\nLinnea\nLiset\nLupita\nMariam\nMaxine\nPang\nPhoebe\nRhea\nSelene\nShellie\nSondra\nStephaine\nSteven\nSue\nTashina\nTherese\nTyler\nAlena\nAlva\nAlysha\nAnika\nAnnmarie\nBrandee\nBrian\nBrittnie\nBrynn\nChristiana\nClare\nDanae\nDebora\nDennise\nDiamond\nElia\nElysia\nEve\nGabriel\nGricelda\nIlana\nIndira\nJacquelin\nJonathan\nKeshia\nKourtney\nKrysten\nLisbeth\nLizett\nLucila\nMarianna\nMariko\nMarlen\nMatthew\nMeggan\nNakia\nPorscha\nRosana\nSahar\nShira\nSommer\nThuy\nTrang\nValencia\nVan\nVickie\nViolet\nAlecia\nAlesha\nAli\nAngelita\nBrook\nBryanna\nCandi\nCarlee\nCharisse\nCyndi\nDani\nDanyelle\nGuillermina\nIda\nKarli\nKassie\nKathrine\nKenisha\nLacie\nLilliana\nLizzette\nLouisa\nLucille\nLuis\nMagali\nMaile\nManuela\nMarci\nMaryanne\nMercy\nMimi\nNanci\nNereyda\nPenny\nPetra\nRaina\nReanna\nShasta\nShawnte\nSocorro\nThanh\nUnique\nVy\nAdria\nAni\nAntonette\nAnya\nAshton\nAurelia\nBrieanna\nCarlie\nCathleen\nCelenia\nChante\nCristen\nDeirdre\nEden\nElana\nElisabet\nElsie\nFarrah\nFelisha\nFiona\nGisela\nJayne\nJesenia\nKarrie\nKatheryn\nKenia\nKevin\nKirby\nLa\nLayla\nLucinda\nMellisa\nMiesha\nMonet\nNellie\nNichol\nNidia\nPa\nPhylicia\nPriya\nRacquel\nRoseann\nRowena\nShavon\nShea\nSoledad\nTawni\nTyra\nXochilt\nZoila\nAlexia\nAlysia\nBettina\nBrittaney\nCandyce\nCarlene\nClaribel\nDania\nDara\nElba\nElla\nEloisa\nErinn\nHolland\nHolli\nJackeline\nJaclynn\nJason\nJaymie\nJeanie\nJenessa\nJovanna\nJustin\nKaci\nKady\nKathryne\nKati\nKaylin\nKeli\nKristle\nKymberly\nLesly\nMargie\nMargot\nNicola\nNoreen\nRhianna\nRina\nRoseanne\nSaira\nSalena\nSantana\nSequoia\nSheng\nSherrie\nShoshana\nStar\nTammie\nTeela\nThao\nTianna\nTimothy\nTosha\nVera\nVerenice\nYecenia\nYoana\nZahra\nZulema\nAide\nAlexandrea\nAlisia\nAnnalisa\nAntionette\nAraseli\nArely\nAshlea\nAstrid\nAva\nBao\nBeatris\nBreeann\nCasie\nChelsie\nCheree\nConcepcion\nDenae\nDoreen\nDrew\nElizabet\nEnedina\nEryn\nEvelia\nFanny\nFernanda\nGenesis\nHa\nHeidy\nJanee\nJaneen\nJanis\nJessi\nJuan\nJulieann\nKelsie\nLeana\nLilly\nLissa\nLisset\nLoni\nLy\nLynne\nLynnette\nMadeleine\nMaia\nMalorie\nMaranda\nMaren\nMiguel\nMina\nMisti\nNayeli\nNeda\nNicholas\nPatty\nPhuong\nPilar\nReena\nRoxane\nRubi\nShamika\nShani\nShanice\nShannan\nShara\nSharde\nShera\nSirena\nStephenie\nTeresita\nWanda\nXenia\nYer\nAdele\nAdriane\nAlex\nAmina\nArcelia\nAreli\nAshlyn\nAubrie\nAyesha\nBeronica\nBerta\nCarey\nCarley\nCassaundra\nCharde\nChasity\nChela\nCiera\nColby\nDeysi\nGladis\nHerlinda\nHortencia\nIleana\nJaneth\nJeana\nJonelle\nKa\nKaela\nKaley\nKandace\nKandis\nKarisa\nKarly\nKatelynn\nKendal\nKyra\nLakeshia\nLetisia\nLianna\nLigia\nLindsy\nLindy\nMalinda\nMarion\nMerry\nMichal\nNiki\nPaulette\nPortia\nPrisma\nRayna\nRosalind\nRosamaria\nRyann\nSamara\nSeanna\nShanda\nShanelle\nShena\nShirin\nTameka\nTonisha\nTran\nTrinity\nTynisha\nVanity\nYazmin\nZena\nAaron\nAdelina\nAlejandro\nAllegra\nAlona\nAntonio\nBillie\nBlaire\nBrett\nBridgett\nCassey\nCeline\nCharissa\nCharles\nCydney\nDallas\nDaniele\nDanna\nDarci\nDaryl\nErlinda\nErnestina\nEster\nEvangeline\nFawn\nGayle\nGenna\nHalley\nHallie\nHaydee\nIsabelle\nIvory\nJan\nJanay\nJeffrey\nJesseca\nJulian\nKala\nKasie\nKatey\nKaycee\nKellyn\nKindra\nLaila\nLaquisha\nLaquita\nLatosha\nLauryn\nLenora\nLeonor\nLilibeth\nLorie\nMagda\nMarguerite\nMarlyn\nMaryam\nMele\nMelodie\nMildred\nNisha\nPhyllis\nPoonam\nPriscila\nRandy\nRebecka\nSaundra\nShala\nShanel\nShanell\nShardae\nShaunte\nShawntae\nShenna\nShyla\nSienna\nSkye\nSparkle\nStarr\nSunny\nTashia\nTatianna\nVannesa\nWendi\nYara\nYury\nAbbey\nAfton\nAlishia\nAllie\nAmara\nAnalicia\nAnamarie\nAnel\nBessie\nBlythe\nBrie\nCamilla\nCaren\nCarole\nChana\nChanell\nCharleen\nChris\nClarice\nCollette\nDelfina\nElisia\nElyssa\nGema\nGracie\nHanh\nIsaura\nJamee\nJammie\nJene\nJeni\nJenilee\nJennafer\nJenni\nJeri\nJoselyn\nKatelin\nKiley\nKimberlie\nKristel\nKylee\nLashawn\nLeia\nLetisha\nLien\nLiz\nMallori\nMarivel\nMarybel\nMeagen\nMercedez\nMichell\nMirian\nNatashia\nNubia\nPaul\nRachele\nRacine\nRae\nRaelene\nRashida\nRicci\nRosalina\nSandi\nSarita\nScarlett\nShanon\nShantell\nSharron\nShavonne\nShayne\nShoua\nStarla\nTanesha\nTayler\nTiffini\nTrinidad\nVenus\nAdina\nAgnes\nAhsley\nAmparo\nAnalisa\nAnnabelle\nAnnamaria\nArleen\nAustin\nAyla\nBreeanna\nBria\nBrielle\nBrisa\nBryan\nCali\nCambria\nCarli\nCaryn\nCassi\nCayla\nCelena\nCendy\nCherilyn\nChoua\nChristel\nCinthya\nCintia\nCyrstal\nDanette\nDaniell\nDanika\nDayana\nDeann\nDella\nDeseree\nDustin\nDusty\nEbonie\nElicia\nErmelinda\nEvelina\nEvonne\nGemma\nHolley\nIesha\nJacquline\nJanina\nJannett\nJenette\nJeremy\nJo\nJonna\nJorge\nJoslyn\nJovan\nJuliane\nKalyn\nKami\nKatina\nKay\nKaylyn\nKeena\nKellee\nKerrie\nKorin\nKorina\nKrystel\nLakesha\nLakiesha\nLanette\nLatonya\nLela\nLeona\nLisett\nLizabeth\nLola\nLucerito\nLyndsie\nMagaly\nMarbella\nMargo\nMarika\nMario\nMarkisha\nMarkita\nMatilde\nMckenna\nMerissa\nMicah\nMichela\nNastassia\nNastassja\nNathaly\nNohemi\nPenelope\nRenata\nReva\nRomina\nRoya\nRuben\nSabina\nSamatha\nSamuel\nSavanah\nShalene\nShameka\nShane\nShantelle\nShawntel\nShiela\nSunshine\nSusanne\nSusy\nTamera\nTana\nTanika\nThu\nVilma\nWilliam\nYahaira\nAlyce\nAlysa\nAmira\nAnastacia\nAnisha\nAnjali\nAnnika\nAnny\nArianne\nArlette\nAryn\nAvery\nBlake\nBryana\nCarleen\nCatharine\nCecily\nCesilia\nChanda\nChantell\nCherry\nChina\nColeen\nCorena\nCristian\nCruz\nDanya\nDanyell\nDasha\nDelores\nDemetria\nDesarae\nDestinee\nDinah\nDionna\nDung\nErendira\nEstephanie\nEvan\nHoa\nHong\nJannie\nJaquelyn\nJeanelle\nJoanie\nJoi\nJosefa\nJosephina\nJosette\nKadie\nKaelyn\nKaris\nKatlyn\nKaylene\nKenna\nKimiko\nKyndra\nLanae\nLashonda\nLeena\nLeighann\nLisandra\nLoan\nLorina\nLorissa\nMao\nMarcelina\nMarilou\nMartine\nMaryjane\nMechelle\nMelany\nMelony\nMichel\nMilena\nMilissa\nNanette\nNicki\nNickole\nPatti\nRachell\nRaeanne\nRaelynn\nRanda\nRonisha\nRosita\nSacha\nSee\nShabnam\nShanay\nSharina\nShelli\nSherilyn\nShonte\nSoraya\nSuzie\nTabetha\nTakisha\nTamesha\nTaneisha\nTaren\nTarrah\nTawnie\nTheodora\nTonia\nTorrey\nTory\nTracee\nTressa\nValorie\nVi\nWindy\nAgustina\nAlejandrina\nAmada\nAmanada\nAngelic\nAngelika\nAnissa\nApryl\nAshlei\nAundrea\nAziza\nBaby\nBenjamin\nBlia\nBonny\nBritt\nBrittainy\nCami\nCarlos\nCelestina\nCelisse\nChanning\nCharis\nCharlie\nChau\nChi\nChristiane\nCoreen\nCrystalyn\nCrystina\nDahlia\nDaisey\nDanisha\nDeisi\nDeniece\nDeserie\nDestiney\nDionne\nDominica\nElsy\nEmilee\nEssence\nEstrellita\nFalisha\nFelecia\nFranchesca\nGia\nGilda\nGisselle\nHang\nHuong\nJackelyn\nJacquelyne\nJaimi\nJaney\nJaniece\nJanuary\nJaquelin\nJenee\nJenise\nJennefer\nJennelle\nJennyfer\nJerri\nJesika\nJoey\nJovana\nJulieanne\nJulienne\nJury\nKalee\nKamille\nKandyce\nKarianne\nKaterina\nKatia\nKatlin\nKellen\nKenneth\nKeturah\nKiara\nKimber\nKirstie\nKisha\nKrysti\nLanisha\nLaureen\nLe\nLeonora\nLiane\nLianne\nLili\nLillie\nLisamarie\nLois\nLuciana\nMaida\nMaisha\nMariaguadalupe\nMarialuisa\nMaricella\nMarielle\nMaritsa\nMariza\nMark\nMarleen\nMarlo\nMarti\nMassiel\nMeliza\nMisha\nMiya\nMoriah\nMyisha\nNacole\nNallely\nNatassia\nNathan\nOralia\nPatrisia\nPhillip\nPiper\nPolly\nPorcha\nPuja\nRaeann\nRashelle\nRaymond\nRenisha\nRiana\nRio\nRoxann\nSamira\nSana\nSarena\nSascha\nSeason\nSelenia\nSerenity\nSergio\nShakira\nShanee\nShanta\nShaquita\nSharla\nShawnee\nSheana\nShelia\nShiloh\nShireen\nSindy\nSivan\nSomer\nSorangel\nStephannie\nTarin\nTessie\nThelma\nTiffaney\nTiffiny\nTinisha\nTopacio\nTova\nTrinh\nTyesha\nUyen\nVictor\nWinnie\nYael\nYanet\nYanette\nZoua\nAcacia\nAdam\nAlberta\nAleisha\nAlethea\nAlise\nAlmadelia\nAmethyst\nAnabell\nAnalia\nAndre\nAndreanna\nAnessa\nAnnabell\nAnnalee\nAnnel\nAnnelise\nArika\nArin\nAsha\nAshlynn\nAspen\nAyde\nBethanie\nBonita\nBriann\nBrienne\nBritta\nBronwyn\nBryn\nBrynne\nCamelia\nCamellia\nCamila\nCandelaria\nCandise\nCaprice\nCarolynn\nCarri\nChardae\nCharday\nCharla\nCharlee\nChelsi\nCherice\nChristianna\nChristianne\nCiarra\nCiji\nCorine\nCourtnie\nDanille\nDarcie\nDarleen\nDebby\nDelina\nDolly\nDomenique\nEliana\nEmelia\nErendida\nErik\nErma\nEstefania\nFarah\nFaye\nFelicity\nGenevie\nGenoveva\nGianina\nGinny\nGrabiela\nGreta\nHelene\nIlda\nIman\nIrasema\nIsabell\nIsabella\nIsha\nIvon\nJacqulyn\nJael\nJamey\nJamilah\nJamilla\nJaymee\nJenea\nJennette\nJennica\nJoel\nJohnnie\nJolie\nJoni\nJovita\nJullian\nKacee\nKai\nKailey\nKaleena\nKalie\nKalina\nKallie\nKameron\nKanisha\nKarena\nKarlie\nKaylan\nKaylie\nKeeley\nKeila\nKelsi\nKenesha\nKeona\nKeren\nKeyonna\nKhanh\nKiera\nKiran\nKortney\nKristiana\nKrystyna\nLacee\nLakia\nLarena\nLashanda\nLashell\nLatricia\nLavinia\nLetitia\nLibby\nLiberty\nLinsay\nLoraine\nLoreal\nLorin\nLorna\nLucretia\nMadelyn\nMae\nMalina\nMalori\nMandie\nMargaux\nMaricruz\nMarilee\nMarily\nMarisabel\nMarkesha\nMarleny\nMarlina\nMarrissa\nMarybeth\nMatalie\nMatilda\nMeera\nMegen\nMinh\nMira\nMistie\nMyeisha\nMyeshia\nNadya\nNai\nNatalee\nNiccole\nNicky\nNicol\nNika\nNoemy\nNuvia\nOliva\nOphelia\nPhilip\nRana\nRemy\nRenita\nRonda\nRosangela\nRoselyn\nRudy\nSahara\nSanam\nSantina\nScott\nSeema\nShade\nShalonda\nShalyn\nShamara\nShandi\nShanea\nSharday\nSharee\nSharmaine\nSharonda\nShauntel\nSherie\nSherika\nShonna\nSidney\nStefany\nSteffanie\nSteffany\nSulema\nSusannah\nSuzy\nTaisha\nTaraneh\nTavia\nTawana\nTeila\nTenisha\nThea\nTony\nTristen\nValene\nVeronique\nVianey\nVincent\nViola\nYasmine\nYuriana\nZaida\nZinnia\nAbril\nAdelaide\nAdeline\nAlayna\nAlea\nAlesia\nAline\nAllisa\nAllisha\nAlysse\nAmmy\nAn\nAnacani\nAndra\nAndreana\nAngelee\nAnglea\nAnisa\nAnjuli\nAnnaliese\nAnnalise\nAria\nArian\nArica\nAsheley\nAsma\nAsucena\nAsusena\nAudrina\nAura\nAysha\nBanesa\nBenita\nBreeana\nBrigid\nBrionna\nBritnie\nBrittnay\nBrittnee\nBritton\nBryce\nCamile\nCandida\nCarin\nCarmel\nCaylin\nChannel\nChannelle\nCharlette\nChastity\nChelsy\nChrissy\nChrystina\nChyanne\nCindi\nClair\nClarisa\nClarisse\nClaudine\nClementina\nCleo\nCodi\nCodie\nCorissa\nDanesha\nDarby\nDeja\nDenielle\nDesiray\nDevina\nDevyn\nDiandra\nDonielle\nDonisha\nEdlyn\nEleni\nEloise\nElyce\nEmi\nErnestine\nErnesto\nFelisa\nFrancisco\nFrank\nGeorgette\nGeri\nGiannina\nGinelle\nGisele\nGoldie\nGwen\nHeaven\nHuyen\nInes\nJacinta\nJacquelene\nJamielee\nJamika\nJavier\nJaymi\nJenell\nJenica\nJennah\nJennell\nJewel\nJordana\nJulisa\nKaleigh\nKalia\nKalli\nKarlee\nKasondra\nKatarina\nKatryna\nKeesha\nKelsy\nKeosha\nKesha\nKierra\nKodie\nKrystale\nLanesha\nLarae\nLarisa\nLatashia\nLatesha\nLean\nLeesa\nLesa\nLin\nLissete\nLizbet\nLogan\nLona\nLorelei\nLuana\nLuisana\nLyssa\nMa\nMagdalene\nMaghan\nMahogany\nMakeda\nMalisa\nMandeep\nMarcelle\nMariadejesus\nMariaisabel\nMaricel\nMarisha\nMariya\nMarline\nMartin\nMarty\nMarylu\nMarylyn\nMayte\nMckenzie\nMee\nMelissaann\nMelissia\nMelyssa\nMeridith\nMerritt\nMilagros\nMitzi\nMitzy\nMonalisa\nMonic\nMontana\nMontoya\nMuriel\nNada\nNansi\nNatividad\nNeha\nNga\nNgoc\nNicholle\nNiesha\nNikita\nNola\nNoor\nPorshia\nQueena\nRabecca\nRaeanna\nRandee\nRashell\nReem\nRicki\nRika\nRoberto\nRochel\nRoma\nRonica\nRonnie\nRori\nRoshelle\nRoslyn\nRossana\nRoxsana\nRut\nSabra\nSada\nSaida\nSallie\nSari\nSavana\nScarlet\nSeana\nSerene\nShalina\nSharhonda\nShatoya\nShaundra\nShawanna\nShay\nShenika\nSherina\nShondra\nSia\nSilva\nSinthia\nSintia\nSkylar\nStepanie\nStephane\nStephen\nStevi\nSunni\nTaira\nTalin\nTam\nTanea\nTarra\nTawney\nTeal\nTeala\nTeara\nTegan\nTerina\nTerrie\nThavy\nThi\nThomas\nThy\nTifanie\nTinamarie\nTisha\nTorie\nToya\nTram\nTristin\nVelia\nVelvet\nVianca\nYen\nYoung\nYumi\nZabrina\nZaira\nZara\nZarina\nZonia\nAbbie\nAbelina\nAdia\nAdrina\nAgueda\nAleah\nAleece\nAlexzandria\nAlida\nAliya\nAlizabeth\nAlmarosa\nAlora\nAlvina\nAmani\nAmaris\nAmbrosia\nAnabelle\nAnahi\nAnaiz\nAngelena\nAngelia\nAnhthu\nAnitra\nAnneliese\nArelis\nArgelia\nArlena\nArmida\nAshanti\nAshlye\nAurea\nAutum\nAviva\nAzusena\nBerenise\nBethann\nBobby\nBreona\nBrieanne\nBrigida\nBristol\nBritnee\nBrittan\nBrooklyn\nByanca\nCailin\nCapri\nCarlita\nCarmella\nCarmin\nCasaundra\nCassy\nCayce\nChampagne\nChantae\nCherelle\nCherlyn\nCheyanne\nChirstina\nContessa\nCordelia\nCorin\nCorvette\nCoryn\nCoty\nCristela\nCristiana\nCyntia\nCzarina\nDakota\nDamita\nDanee\nDarcey\nDarlyn\nDavida\nDavonna\nDawnielle\nDaysi\nDeedee\nDejah\nDelana\nDelila\nDelmy\nDeonna\nDeserae\nDevan\nDiann\nDinora\nDixie\nDomenica\nDominic\nDorcas\nDulse\nEcho\nEduardo\nEdward\nElda\nEssie\nEstefany\nEthel\nEvelynn\nEvita\nFalicia\nFatimah\nFelica\nFrancia\nGer\nGisell\nGizelle\nGregory\nHalie\nHarriet\nHermelinda\nHien\nIbeth\nIdalia\nIeshia\nIlaisaane\nItzel\nIvana\nIvett\nJacalyn\nJacey\nJacob\nJacquelina\nJacy\nJameika\nJamia\nJamilee\nJanaya\nJanea\nJanean\nJanene\nJaniel\nJanielle\nJannifer\nJanny\nJasmaine\nJasmyn\nJayna\nJazzmin\nJazzmine\nJeanett\nJeneva\nJeniece\nJenine\nJennipher\nJerilyn\nJerrie\nJessa\nJessamyn\nJessicca\nJessyca\nJihan\nJimena\nJimmy\nJodee\nJoellen\nJohnisha\nJohnna\nJordyn\nJoycelyn\nKailee\nKailyn\nKaitlan\nKalani\nKaleen\nKalisha\nKamilah\nKanani\nKao\nKarine\nKarri\nKasha\nKassi\nKatee\nKatherina\nKathlene\nKathrina\nKatrena\nKattie\nKaycie\nKaye\nKayleen\nKeandra\nKeanna\nKelliann\nKelsea\nKera\nKeshana\nKeyanna\nKeyla\nKhristina\nKianna\nKieu\nKimberli\nKimberlyn\nKory\nKristyna\nKyleen\nLachelle\nLael\nLaiza\nLanita\nLareina\nLatrina\nLatrisha\nLauri\nLeela\nLeora\nLeslee\nLesli\nLicet\nLilah\nLindsie\nLing\nLinna\nLiseth\nLissett\nLizzete\nLluvia\nLolita\nLorene\nLoriann\nLuiza\nLurdes\nLusia\nLuzmaria\nLyra\nMacy\nMagan\nMaite\nMala\nMalena\nMalika\nManuel\nMariadel\nMariatheresa\nMarisella\nMarison\nMarni\nMarquisha\nMarry\nMarshay\nMarybell\nMaryelizabeth\nMarygrace\nMelani\nMelania\nMeleane\nMelia\nMelida\nMemory\nMeryl\nMikayla\nMinnie\nMiracle\nMirza\nMonisha\nMyranda\nMyriam\nNadiyah\nNailah\nNakeisha\nNakisha\nNakita\nNary\nNatacha\nNatisha\nNatosha\nNelida\nNickie\nNikkia\nNissa\nNita\nNoriko\nNou\nNova\nNycole\nOdette\nOpal\nOra\nOsiris\nOtilia\nParisa\nPatrick\nPeter\nPhuc\nPia\nPorche\nPrescilla\nQuanisha\nQuianna\nRaechel\nRaeleen\nRafaela\nRaine\nRaisa\nRanesha\nRani\nRaquell\nRebbecca\nReema\nRekha\nRiley\nRima\nRoni\nRory\nRosalee\nRosalynn\nRosenda\nRoshanda\nRosina\nRozanne\nRudi\nRyane\nSachiko\nSalote\nSamia\nSaran\nSena\nSendy\nSeng\nShabana\nShadae\nShalena\nShalimar\nShalon\nShanise\nShannah\nShantay\nSharda\nShardai\nShareen\nSharell\nShaunna\nShazia\nShekinah\nShereen\nSherelle\nSherice\nSheridan\nShila\nSimona\nSindia\nSiomara\nSokha\nSong\nSoyla\nSpring\nSteffani\nStepahnie\nStephine\nSulma\nSumer\nSuong\nSylvie\nSynthia\nTaina\nTakara\nTalar\nTalina\nTalya\nTamica\nTamisha\nTammi\nTaneshia\nTannia\nTarryn\nTasheena\nTatum\nTawna\nTeanna\nTenika\nTerah\nTeressa\nTereza\nTeryn\nTien\nTiera\nTierney\nTiffiney\nTirzah\nTonika\nTriana\nTrish\nTuyen\nTwyla\nTyana\nTyisha\nTyla\nValery\nVeronika\nVianney\nVienna\nVika\nWhittney\nYajayra\nYamileth\nYaneth\nYang\nYaquelin\nYasmeen\nYoanna\nYoshiko\nYuridia\nZakiya\nZenaida\nZulma\nJessica\nAshley\nJennifer\nAmanda\nSarah\nNicole\nStephanie\nMelissa\nElizabeth\nChristina\nVanessa\nMichelle\nHeather\nBrittany\nLauren\nMaria\nMegan\nAmber\nDanielle\nCrystal\nRachel\nLaura\nKimberly\nTiffany\nSamantha\nSara\nErica\nAmy\nRebecca\nAndrea\nEmily\nNatalie\nMonica\nErin\nKatherine\nAngela\nVeronica\nChristine\nKelly\nDiana\nLisa\nCynthia\nJacqueline\nNancy\nMayra\nJamie\nAlicia\nShannon\nCourtney\nErika\nPatricia\nSandra\nAllison\nVictoria\nKristen\nWhitney\nBrenda\nKatie\nMary\nKristina\nAngelica\nCassandra\nAnna\nKathryn\nLindsey\nValerie\nLindsay\nAdriana\nKristin\nAna\nKrystal\nMonique\nJenna\nJulie\nAlexandra\nCristina\nClaudia\nBrittney\nJasmine\nDenise\nApril\nCindy\nLinda\nChelsea\nDesiree\nJoanna\nCatherine\nLeslie\nJulia\nMarissa\nWendy\nKathleen\nYesenia\nTara\nAlyssa\nGabriela\nNatasha\nCaitlin\nSabrina\nKaren\nPriscilla\nDaisy\nEvelyn\nKatrina\nJanet\nHolly\nMelanie\nCandice\nTeresa\nRosa\nDominique\nNichole\nTanya\nGuadalupe\nJeanette\nBrianna\nFelicia\nGina\nHannah\nSonia\nJenny\nLorena\nKarina\nStacy\nTracy\nGloria\nMallory\nLeah\nRenee\nStacey\nAlexis\nAlison\nMeghan\nMartha\nKrista\nSusan\nKarla\nYvette\nEliana\nLeticia\nDana\nCecilia\nRaquel\nAlejandra\nBrandy\nBrooke\nMaribel\nTheresa\nKayla\nJillian\nTamara\nHeidi\nKelsey\nMorgan\nKrystle\nCandace\nTina\nRobin\nMargaret\nMarisol\nRachael\nSophia\nAlisha\nDeanna\nJohanna\nAngelina\nBriana\nCarmen\nEsmeralda\nCarla\nCristal\nJustine\nBrandi\nMolly\nLiliana\nAlma\nMarisa\nGrace\nBethany\nAshlee\nCasey\nIrene\nMarlene\nAlexandria\nRuth\nSharon\nSusana\nSylvia\nMichele\nOlivia\nYvonne\nAudrey\nJanelle\nLacey\nAnne\nVirginia\nSandy\nJasmin\nPamela\nIsabel\nDiane\nMelinda\nKendra\nMaricela\nCaroline\nRegina\nKristine\nBianca\nCarolyn\nJaclyn\nAimee\nSilvia\nAraceli\nElisa\nNorma\nRachelle\nYolanda\nBlanca\nSummer\nTatiana\nEsther\nKatelyn\nSavannah\nEva\nMarisela\nMarie\nAriana\nMargarita\nDaniela\nHelen\nCarolina\nKelli\nKristy\nMarina\nMeagan\nAdrienne\nKara\nClaire\nDeborah\nRebekah\nRocio\nBarbara\nTaylor\nMelody\nRoxanne\nCarly\nElaine\nMaritza\nNina\nBritney\nStefanie\nShawna\nElena\nLydia\nMiranda\nRobyn\nJordan\nKate\nElise\nKari\nCarrie\nJacquelyn\nSierra\nBreanna\nNaomi\nJaime\nVivian\nMisty\nAngel\nLizette\nArlene\nAbigail\nChrista\nRochelle\nEmma\nAnita\nJanette\nJeannette\nHayley\nLatoya\nKristi\nRoxana\nAshleigh\nJocelyn\nSheila\nDarlene\nEdith\nKaitlin\nRuby\nCassie\nCheryl\nJuliana\nAlice\nAntoinette\nEbony\nPaula\nTrisha\nAmelia\nCharlene\nSheena\nColleen\nMiriam\nSuzanne\nAnn\nChristy\nJoy\nLori\nMaira\nGriselda\nRose\nTaryn\nSasha\nAnnette\nCarol\nAnnie\nKellie\nEileen\nNoemi\nBrianne\nJazmin\nBonnie\nFrancesca\nHaley\nJessie\nKathy\nLuz\nFrances\nJudy\nLucia\nPaige\nDawn\nElisabeth\nHilary\nIris\nNadia\nCorina\nAngie\nJane\nMercedes\nRosemary\nJade\nTabitha\nGabrielle\nLillian\nJudith\nRandi\nKirsten\nTania\nCarina\nCarissa\nJosephine\nMindy\nJill\nSerena\nViviana\nAlissa\nBeatriz\nCamille\nDonna\nElyse\nSade\nAubrey\nBridget\nJennie\nKelley\nLucy\nCelia\nNatalia\nMyra\nShelby\nKatharine\nCara\nChanel\nGenevieve\nMadeline\nShelly\nCharlotte\nIrma\nJuanita\nDestiny\nFabiola\nHillary\nKaitlyn\nMeredith\nMia\nShauna\nRita\nAutumn\nSally\nChristian\nConnie\nJanice\nMarcella\nAriel\nAlana\nMarilyn\nNoelle\nClarissa\nMadison\nTammy\nTiana\nPerla\nSofia\nTraci\nCelina\nEllen\nJoanne\nJoyce\nPaola\nToni\nChloe\nLorraine\nCeleste\nJulianne\nKasey\nNora\nReyna\nTasha\nSonya\nVicky\nAllyson\nChelsey\nLourdes\nValeria\nDianna\nMandy\nOlga\nAdrianna\nAlisa\nKaty\nKendall\nAileen\nAlexa\nBelinda\nBrittani\nKira\nLizbeth\nMai\nMichael\nShana\nYadira\nEricka\nLacy\nRosanna\nChristie\nLarissa\nMariela\nTricia\nAurora\nCorinne\nJacklyn\nLizeth\nAntonia\nLena\nTessa\nGladys\nHilda\nIngrid\nLily\nMagdalena\nMarcela\nMariana\nNikki\nRyan\nIliana\nLaurel\nMaureen\nJuana\nKeri\nStacie\nAngelique\nChantel\nShirley\nSydney\nTiffani\nLisette\nMaggie\nDebra\nElsa\nGiselle\nJackie\nJenifer\nKassandra\nKristie\nMelisa\nDolores\nFaith\nJaqueline\nJosefina\nNadine\nCaitlyn\nDorothy\nJoann\nLaurie\nLeanne\nAshlie\nJana\nJanine\nLatasha\nLissette\nTonya\nAshton\nBreanne\nBridgette\nJayme\nReina\nShaina\nViridiana\nAlyson\nBertha\nCortney\nDelia\nJena\nKimberley\nRebeca\nShanna\nBeatrice\nBeverly\nDevin\nJoana\nKristal\nShelley\nTalia\nCiara\nEunice\nJaimie\nKayleigh\nLilia\nMaryann\nStaci\nTerra\nTracey\nBailey\nDebbie\nCathy\nGeorgina\nLara\nMaya\nNikita\nDaniella\nGraciela\nHailey\nMichaela\nTanisha\nVanesa\nDesirae\nRoberta\nSalina\nAmie\nBeth\nBrandie\nCasandra\nCharity\nDora\nJodi\nJulianna\nMackenzie\nRoxanna\nSelina\nAnabel\nAnastasia\nAthena\nBernadette\nElvia\nKerry\nLeanna\nPaulina\nTiffanie\nAlina\nBrenna\nCandy\nConstance\nLeilani\nLidia\nMeaghan\nShayna\nCatalina\nClara\nFatima\nJanae\nKimberlee\nLesley\nRosalinda\nAracely\nAshly\nBetty\nCorey\nDaniel\nElissa\nKim\nRosario\nSherry\nSusanna\nTrina\nConsuelo\nGabriella\nJolene\nLyndsey\nLynette\nSelena\nYasmin\nCallie\nDina\nEsperanza\nHope\nKylie\nLiana\nLiza\nNataly\nBerenice\nBlair\nDulce\nElvira\nIvette\nMarlena\nPauline\nShayla\nTawny\nAdrianne\nChantal\nFrancine\nMonika\nSheri\nStephany\nTrista\nBelen\nFlor\nJesse\nLina\nLizet\nMarcia\nNoel\nPrecious\nCheyenne\nChristopher\nDevon\nMari\nNathalie\nStevie\nVioleta\nArianna\nCatrina\nDomonique\nFaviola\nJanel\nJenelle\nKacie\nKristyn\nPatrice\nRhonda\nSophie\nYessenia\nAdrian\nCherie\nDavid\nEstela\nJanell\nJazmine\nKarissa\nKeisha\nLynn\nMarianne\nMicaela\nOfelia\nRosio\nTabatha\nVenessa\nAlaina\nAlyse\nBecky\nBrittni\nCassidy\nCherish\nChristen\nDarcy\nElisha\nJean\nJeannie\nJoan\nJustina\nKrystina\nLea\nMarjorie\nMireya\nNicolette\nPearl\nSavanna\nSimone\nTamika\nBritany\nChrystal\nGwendolyn\nHalley\nHanna\nKaylee\nKyla\nMarta\nPaloma\nSheryl\nArielle\nAsia\nGeneva\nGrecia\nJesica\nKerri\nKrysta\nMarian\nRosemarie\nSonja\nTracie\nZoe\nAlysha\nJanessa\nKarin\nKori\nLoren\nLuisa\nMelina\nRene\nRhiannon\nTori\nAlexander\nAndrew\nAnnamarie\nAshely\nCecelia\nCheri\nCierra\nDominque\nHollie\nJanna\nJannette\nKacey\nMalissa\nMarla\nMaura\nRamona\nTerri\nAnjelica\nFallon\nJessika\nJoseph\nLatisha\nLupita\nMagaly\nRichelle\nSadie\nTera\nAlondra\nChandra\nChristal\nDanae\nDelilah\nDoris\nEmerald\nKeshia\nMay\nNicolle\nRosalie\nRosie\nSarai\nShantel\nTami\nTiara\nAida\nAudra\nEvangelina\nFelisha\nGinger\nGretchen\nJeanine\nJoelle\nLacie\nLynda\nMariah\nRena\nSarina\nSheree\nSherri\nAja\nAlanna\nAmalia\nAnthony\nBetsy\nChristi\nDanelle\nDanica\nHelena\nKandice\nKathrine\nLana\nLeann\nLeigh\nMadeleine\nMona\nRacheal\nValarie\nAlycia\nAmbar\nBobbie\nBreana\nCora\nCory\nGlenda\nJami\nJesenia\nKristian\nMarsha\nMirna\nMollie\nMyisha\nNelly\nPa\nSusie\nVannessa\nXochitl\nAlysia\nBrigette\nChantelle\nChristin\nCinthia\nCorinna\nDena\nFrancisca\nHana\nIsela\nJeanne\nJohana\nLakeisha\nLilian\nMaegan\nShante\nTess\nYessica\nYomaira\nYuri\nAlba\nAlia\nBrigitte\nCassondra\nCori\nCorrina\nElaina\nJoshua\nLoretta\nMagali\nMatthew\nNatali\nTamra\nTanesha\nAnais\nBernice\nDalia\nDavina\nDenice\nEleanor\nEmilia\nFiona\nGeorgia\nHazel\nImelda\nIvy\nJanie\nJody\nJohn\nJose\nJosie\nJuliet\nLeeann\nMadelyn\nNikole\nRikki\nSiobhan\nTerry\nTia\nAlessandra\nAngeline\nCorrie\nDalila\nDenisse\nEliza\nFrancis\nGiovanna\nJames\nKrystel\nLiset\nLupe\nMildred\nMyesha\nPorsche\nRhea\nTeri\nYanira\nAbby\nAisha\nAnamaria\nAshli\nBree\nBrian\nCameron\nCari\nChelsie\nEden\nJeniffer\nKirstin\nLatrice\nLeandra\nLizett\nLora\nMalorie\nMariel\nMarquita\nMarylou\nMellissa\nMinerva\nNereida\nPricilla\nRosalina\nRosalyn\nSerina\nShari\nStella\nSuzette\nTierra\nYuliana\nAlexia\nAllie\nBreann\nBritni\nCandis\nChanelle\nCherise\nColette\nDeana\nEloisa\nElva\nGeraldine\nHallie\nJamila\nJessenia\nLyndsay\nMarlyn\nMeghann\nMyrna\nNidia\nPrincess\nRoxann\nSharde\nShasta\nStephani\nAdela\nAmerica\nAngelita\nAnnabel\nAnnalisa\nBrittanie\nCiera\nCoral\nDamaris\nDaphne\nDayna\nElia\nEstella\nEvelin\nIsis\nJonathan\nJune\nKandace\nKasandra\nKatelin\nKia\nKyle\nKyra\nLeila\nMarion\nMartina\nParis\nPortia\nRosalia\nSahar\nShanda\nShea\nStefani\nStephenie\nTianna\nVicki\nYajaira\nYanet\nAda\nAli\nAndria\nDeena\nDenisha\nErinn\nGenna\nGillian\nIleana\nInez\nJaimee\nJaneth\nJeanna\nJulieta\nKaley\nKourtney\nLee\nLucinda\nManuela\nMarguerite\nMaxine\nMirella\nPenny\nPhoebe\nPorsha\nRaven\nRayna\nRosalba\nSavanah\nShanae\nShawn\nTarah\nTasia\nTawni\nTonia\nTyler\nUnique\nYesica\nAaron\nBrynn\nCarley\nCaryn\nCharde\nCharissa\nCody\nCristine\nDanika\nDannielle\nDiamond\nEdna\nEster\nFlora\nIlene\nIvonne\nJenni\nJodie\nJoleen\nKaila\nKenia\nKenya\nLia\nLynsey\nMandi\nMara\nMariam\nMarlen\nMellisa\nPhylicia\nRosamaria\nRosanne\nSteven\nViolet\nAdelina\nAnnemarie\nAstrid\nCathleen\nCharisse\nDayana\nDesire\nEugenia\nFranchesca\nGianna\nHarmony\nJanee\nJuliette\nKelsie\nKiana\nKorina\nLaila\nLinh\nMabel\nMarci\nNallely\nNichelle\nRacquel\nShardae\nThelma\nTyra\nVickie\nArleen\nAubree\nBrandon\nBryana\nCharmaine\nChristiana\nDarla\nDeirdre\nEboni\nIsabella\nJeana\nKenisha\nKristan\nKrysten\nKrystin\nLauryn\nLila\nLuisana\nMaren\nMarianna\nMaryam\nMelodie\nMikaela\nNanci\nPeggy\nPorscha\nRenae\nRosana\nRoseanna\nShameka\nSunny\nUrsula\nYecenia\nAnalisa\nAnnika\nAnnmarie\nAntionette\nAzucena\nBobbi\nBrandee\nBryanna\nCambria\nCasie\nCathryn\nClare\nCyndi\nDarline\nDaysi\nElana\nEric\nEve\nGricelda\nHolli\nJerrica\nJocelyne\nJuan\nKaleigh\nKatheryn\nKay\nKiersten\nKortney\nKyrie\nLatanya\nMalinda\nMallorie\nMonet\nMuriel\nNisha\nPetra\nRaylene\nRobert\nRubi\nSamatha\nSelene\nShanell\nSheng\nStacia\nStephaine\nTristan\nVannesa\nAbbey\nAlena\nAmi\nAnnabelle\nAnya\nAva\nBillie\nBridgett\nBrisa\nBritnee\nCarlie\nCelena\nCorie\nCorrine\nCristian\nDanyelle\nDeidra\nDoreen\nElsie\nGabriel\nGena\nIesha\nIvana\nJackeline\nJacquelin\nJanett\nJesus\nJewel\nJustin\nKady\nKarli\nKatelynn\nKindra\nLani\nLouise\nLuis\nMalia\nMichell\nNichol\nNydia\nPatty\nRyann\nSaira\nScarlett\nSharlene\nSocorro\nSuzanna\nTatianna\nAlex\nAreli\nAshlyn\nAyla\nBrett\nBrittaney\nChante\nCherelle\nDara\nDeisy\nDianne\nElizabet\nErendira\nGisela\nGracie\nGuillermina\nIlana\nJannet\nJaymie\nKalie\nKarena\nKasie\nKati\nKaylie\nKeely\nKylee\nLadonna\nLakesha\nLiberty\nLilliana\nLinsey\nLizzette\nMarysol\nMerissa\nMisti\nMy\nNellie\nNoemy\nPhuong\nReanna\nRosalva\nRosaura\nShanelle\nShanika\nShanta\nSherrie\nStarla\nTamar\nTameka\nTherese\nVania\nVanna\nAlesha\nAlexandrea\nAlisia\nAraseli\nArianne\nAsha\nAshlei\nAura\nBerta\nBonny\nBrook\nCamilla\nCarey\nCassaundra\nChana\nChasity\nCherrelle\nChris\nCristy\nDania\nDebora\nDennise\nElicia\nEryn\nGemma\nGinny\nJovanna\nJuliann\nKali\nKaryn\nKaycee\nKelsi\nKiera\nKristle\nLakisha\nLoni\nLucero\nMarcy\nMariaelena\nMariko\nMassiel\nMina\nNayeli\nNicholas\nPilar\nPriya\nSable\nSarita\nSean\nShanel\nShara\nSherie\nStar\nVera\nVerenice\nXiomara\nYazmin\nYer\nZulema\nAmparo\nArcelia\nBrittnee\nCarlos\nCrista\nDaniell\nDanyell\nDeidre\nDrew\nElyana\nEmely\nEmilie\nErnestina\nGenevie\nGeorgette\nIda\nIndia\nJacquelynn\nJenae\nJoni\nKaci\nKandis\nKassie\nKeren\nLatonya\nLeonela\nLeonor\nLilly\nLucila\nMarielle\nMarika\nMarilu\nMercy\nMimi\nMoriah\nNatosha\nNicki\nOctavia\nRichard\nRonisha\nRoseann\nRosita\nSee\nShani\nShoshana\nSommer\nSue\nSusanne\nTahnee\nTana\nTenisha\nThao\nTisha\nTrinity\nValentina\nWilliam\nAcacia\nAdria\nAfton\nAgnes\nAhsley\nAlejandrina\nAlejandro\nAlise\nAlishia\nAllegra\nAnabell\nAnika\nAntonette\nAshlea\nAundrea\nBritta\nCandelaria\nCaressa\nCarmela\nCeline\nCheyanne\nClaribel\nConcepcion\nCristen\nDaniele\nEleana\nElida\nElisabet\nEnedina\nErlinda\nEstrella\nEvelia\nFlorence\nGladis\nHolland\nIsaura\nJason\nJennafer\nJennefer\nJessi\nJulissa\nKacy\nKailey\nKaleena\nKarly\nKenna\nKenneth\nKevin\nLan\nLianne\nLindsy\nLindy\nLisset\nLorene\nLorna\nLucille\nMaia\nMarcie\nMargo\nMarilynn\nMattie\nMckenzie\nMika\nMirian\nNakita\nNereyda\nNickole\nNiki\nParisa\nPatsy\nRhianna\nRoseanne\nRoslyn\nSaundra\nShera\nTawnya\nTeal\nTeresita\nThea\nThuy\nTyesha\nWanda\nWindy\nXenia\nYuridia\nAide\nAlthea\nAmina\nAmira\nAnh\nAni\nAnissa\nArely\nArica\nAshlynn\nAvery\nBenjamin\nBlaire\nBlythe\nCamila\nCarli\nCarmin\nChanell\nChannel\nDanisha\nDenae\nDeseree\nDesirea\nDolly\nElla\nEvan\nFelecia\nFernanda\nFiorela\nHaydee\nHong\nIsabelle\nIvan\nJamilah\nJaquelyn\nJayne\nJeffrey\nJenessa\nJerica\nJonelle\nJoselyn\nJoslyn\nJulian\nKatlyn\nKaylan\nKaylyn\nKesha\nKristel\nKymberly\nLaci\nLanette\nLarisa\nLatosha\nLayla\nLeia\nLiane\nLigia\nLiz\nLois\nLuciana\nLynnette\nMagen\nMarivel\nMee\nMiesha\nNansi\nNatassia\nNeda\nNia\nNicola\nNuvia\nOtilia\nRae\nRaelene\nRaina\nRiley\nSabina\nSacha\nSalena\nShannan\nSharday\nSharee\nSoledad\nStephine\nTam\nTayler\nTracee\nVilma\nWendi\nXochilt\nYasmine\nYoana\nAlecia\nAlysse\nAnarosa\nAngelia\nAntonio\nAriane\nAustin\nBao\nBeatris\nBrittny\nBryn\nCandra\nCandyce\nCarlyn\nCarole\nCarolynn\nCharise\nCherry\nChina\nCindi\nCinthya\nClarice\nCorine\nCrystle\nCyrstal\nDallas\nDeanne\nDella\nDemetria\nDeysi\nDiandra\nDionna\nDionne\nElba\nElysia\nElyssa\nFalisha\nFarrah\nFaye\nGail\nGregory\nHuong\nItzel\nJeannine\nJenell\nJenica\nJina\nJo\nJohnna\nJulieann\nKa\nKaela\nKami\nKandy\nKellee\nKerrie\nKirby\nLa\nLashawn\nLashawnda\nLashay\nLilibeth\nLinnea\nLissa\nLola\nMargie\nMargot\nMariaguadalupe\nMaricruz\nMeggan\nMelyssa\nMonserrat\nNakia\nNastassia\nNatalee\nNatashia\nNeha\nNelida\nPang\nRachele\nRachell\nRafaela\nRandee\nRosalind\nSamira\nScott\nSeema\nSequoia\nShalonda\nShannel\nShira\nSidney\nSpring\nStevi\nTammie\nTatyana\nThanh\nToya\nTrinh\nVenus\nVy\nZenia\nAbril\nAdriane\nAllyssa\nAlysa\nAnahi\nAndre\nAnneliese\nArika\nArlette\nArmida\nAyesha\nBlake\nCali\nCamelia\nCarlene\nCayla\nCelene\nChanda\nCharleen\nCharlie\nChristianna\nCollette\nDanyel\nDarci\nDarcie\nDaria\nDeandra\nDyana\nEdlyn\nElianna\nEmilee\nErnestine\nEssence\nEvita\nEvonne\nFanny\nGenoveva\nGisselle\nHeidy\nIvon\nIvory\nJaclynn\nJan\nJenniffer\nJordana\nKadie\nKala\nKalyn\nKarine\nKarisa\nKarrie\nKatarina\nKatlin\nKayce\nKendal\nKeyana\nKiley\nKirstie\nLakeshia\nLaticia\nLawanda\nLeeanna\nLeslieann\nLibby\nLiseth\nLisseth\nLizabeth\nLorin\nLorina\nLouisa\nLyna\nMaricella\nMaryanne\nMeryl\nMillicent\nMira\nMyeisha\nNgoc\nNikia\nNoreen\nNou\nPhyllis\nPriscila\nRaeann\nRaeanne\nRaechel\nRebeka\nRina\nRomina\nRowena\nSana\nShamika\nShane\nShanee\nShelli\nShena\nShoua\nSirena\nSondra\nSparkle\nStephen\nSulema\nSully\nSusannah\nSuzana\nSuzy\nTabetha\nTawnie\nThu\nTimothy\nTrang\nWinter\nYasmeen\nYee\nYeni\nZoila\nAime\nAkilah\nAleah\nAmal\nAmberly\nAmbrosia\nAnnamaria\nAria\nAubrie\nAurelia\nBritt\nBritteny\nCarin\nCarmella\nCassey\nCesilia\nChan\nChardae\nChelsi\nCheree\nChiara\nCorissa\nDanette\nDani\nDeann\nDelana\nDelfina\nDelores\nDeserie\nDevonne\nDorian\nEbonee\nEdlin\nEleni\nEmelia\nEvette\nFarah\nFrancisco\nGenesis\nGeorge\nHa\nHali\nJacqulyn\nJammie\nJaneen\nJaney\nJaquelin\nJasmyn\nJenee\nJennelle\nJeri\nJesseca\nJoel\nJovana\nJulienne\nKallie\nKarmen\nKatee\nKaterina\nKatey\nKatharina\nKaylene\nKaylin\nKeila\nKellyn\nKelsea\nKimberlie\nLacee\nLaquisha\nLatrisha\nLeigha\nLesly\nLinette\nLisbeth\nLise\nLivier\nMadonna\nMagan\nMallori\nMao\nMark\nMarkisha\nMarybel\nMarybeth\nMayela\nMckenna\nMegann\nMelaine\nMelony\nMicah\nMisha\nMonisha\nNicky\nOphelia\nOralia\nPorche\nReena\nRisa\nRoberto\nRoya\nSaba\nSamuel\nSandi\nSanjuana\nSergio\nShanay\nSharla\nSharonda\nShavon\nShavonne\nShawnee\nShawnte\nShelia\nShellie\nShiloh\nShyla\nSoraida\nStefany\nTashina\nTeena\nTenaya\nTierney\nTiffiny\nTory\nTram\nTrinidad\nTristen\nValencia\nVanity\nVi\nVienna\nViola\nWhittney\nZachary\nZaida\nAdeline\nAdina\nAislinn\nAlix\nAlyce\nAlyshia\nAmara\nAmaris\nAnalicia\nAngelena\nAnisha\nAnnelise\nAriella\nAysha\nBethanie\nBreeann\nBrie\nBrielle\nCandi\nCarmelita\nCarrissa\nCatlin\nCesar\nChanning\nCharla\nChoua\nChristinia\nClarisse\nClaudette\nCodi\nColby\nCortnie\nCourtnie\nCristin\nDanna\nDebby\nDestinee\nDevan\nDinah\nDixie\nEbonie\nElda\nElliana\nElysse\nErendida\nEstefania\nEvelina\nFelisa\nGema\nGiana\nGilda\nGrisel\nHaleigh\nHelene\nHerlinda\nIlda\nIna\nIvania\nJada\nJamee\nJanay\nJaylene\nJazmyn\nJenette\nJenise\nJennica\nJessy\nJessyca\nJoey\nJorge\nJullian\nKalee\nKalena\nKanisha\nKarie\nKarlee\nKassi\nKathryne\nKatia\nKatty\nKaydee\nKayleen\nKeeley\nKeli\nKellye\nKeosha\nKhristina\nKrystine\nLakia\nLanisha\nLashonda\nLatavia\nLatesha\nLean\nLeana\nLeena\nLisamarie\nLisett\nLorelei\nLoriann\nLynsie\nMae\nMagda\nMaile\nMalisa\nMariella\nMarin\nMaritsa\nMarleen\nMarrissa\nMaryjane\nMele\nMelonie\nMelynda\nMichel\nNathan\nNazia\nNicholle\nNiesha\nNoelia\nPatrina\nPaul\nPeter\nQuiana\nRashida\nRebeccah\nReem\nRegan\nRicci\nRiki\nRonda\nRoni\nRonni\nRoselia\nSadaf\nSaran\nScarlet\nShalane\nShandra\nShantae\nShantelle\nShaquita\nSharina\nShaunna\nShaunte\nShaylene\nSomaly\nSopheap\nSunshine\nSynthia\nTanika\nTaren\nTarra\nTavia\nTerrie\nTiffaney\nTomasa\nTosha\nTristin\nTuyet\nVaneza\nVelvet\nVianey\nWesley\nYomayra\nYoua\nYury\nZakiya\nZenaida\nAdam\nAinsley\nAkira\nAlayna\nAleshia\nAleta\nAllyse\nAlmadelia\nAlona\nAmee\nAnastacia\nAndra\nAndreana\nAndriana\nAnel\nAngeles\nAngella\nAnisa\nAnitra\nAnjuli\nAnnalee\nBanessa\nBeronica\nBessie\nBettina\nBiridiana\nBonita\nBreeanna\nBreonna\nBrieana\nBrieann\nBritani\nBritnie\nBrittan\nBrittnie\nCameo\nCammie\nCarlee\nCassi\nCassy\nCatharine\nCendy\nChantell\nCharli\nChastity\nChau\nChaya\nChrystle\nCruz\nCydney\nDaisey\nDanesha\nDawna\nDee\nDeja\nDesarae\nDestiney\nEmi\nEstephanie\nEstrellita\nFawn\nFelicity\nGarrett\nGia\nGianina\nGiovanni\nGizelle\nHeaven\nHenry\nHiedi\nHolley\nHortencia\nHuyen\nIan\nIvett\nJacquelyne\nJamela\nJaniece\nJanielle\nJanina\nJanira\nJasmina\nJeanelle\nJeni\nJenice\nJeremy\nJessalyn\nJolie\nJoline\nJonna\nJosephina\nJuli\nKacee\nKaelyn\nKaitlynn\nKalani\nKalin\nKalina\nKamilah\nKamille\nKassidy\nKathie\nKatya\nKayley\nKeanna\nKeesha\nKendyl\nKenesha\nKera\nKerstin\nKimber\nKory\nKristiana\nKylene\nLachelle\nLaneisha\nLanesha\nLarae\nLeeanne\nLeona\nLeonora\nLesli\nLien\nLillie\nLissett\nLoan\nLogan\nLorie\nLucrecia\nMalina\nManuel\nMaranda\nMariadelcarmen\nMario\nMarlin\nMarlina\nMarygrace\nMercedez\nMikala\nMilagro\nMindi\nMitchell\nMya\nNalleli\nNathaly\nNieves\nNubia\nPaulette\nRachal\nRandall\nRhyan\nRiana\nRochel\nRona\nRosalee\nRoselyn\nRudi\nSabra\nSamara\nSantana\nSendy\nShandi\nShantal\nShantay\nSharayah\nSharda\nSharisse\nSharmaine\nShatoya\nShaun\nShawnna\nShawntae\nShirin\nSienna\nSilvana\nSindy\nSkye\nSkyler\nStarr\nSteffanie\nSteffany\nStevee\nTaleen\nTamera\nTatum\nTheodora\nTitiana\nTorrey\nTravis\nValery\nVianca\nWinnie\nYael\nYen\nYuko\nZahra\nZainab\nAbbie\nAdelaida\nAleece\nAleena\nAleida\nAlesia\nAlexi\nAliza\nAlyssia\nAmberlee\nAmiee\nAnaalicia\nAnalise\nAndi\nAndrina\nAnnalise\nAnnel\nApollonia\nArgelia\nArin\nAshlin\nAspen\nAviva\nBabygirl\nBliss\nBrady\nBreeana\nBrienne\nBrina\nBrittiany\nBronwyn\nBryan\nBrynne\nCaitlan\nCaren\nCarie\nCarmina\nCathrine\nCecily\nCharday\nChaz\nCherese\nCherice\nCherisse\nCherrish\nChistina\nChrissy\nChristel\nChua\nCiarra\nClarisa\nColeen\nCorrin\nCrysta\nCrystalyn\nDahlia\nDale\nDaneille\nDanitza\nDannette\nDarleen\nDaryl\nDavida\nDeandrea\nDeeanna\nDeisi\nDelaney\nDelicia\nDelila\nDelmy\nDenesha\nDenielle\nDennis\nDenyse\nDeserae\nDevorah\nDeyanira\nDiedra\nDonisha\nEduardo\nEdward\nEdwina\nElodia\nElysa\nErik\nEthel\nEvangeline\nFaustina\nFelice\nFernando\nFiorella\nFrankie\nGardenia\nGayle\nGenie\nGenny\nGer\nGerardo\nGeri\nGisel\nGoldie\nGreta\nGwen\nHadley\nHanh\nHector\nHoney\nIlse\nInes\nIrais\nJacinda\nJackelyn\nJacquelene\nJanai\nJanetta\nJanis\nJannett\nJannie\nJaspreet\nJaymee\nJayna\nJazzmin\nJeanny\nJeffery\nJenay\nJennell\nJennette\nJennfier\nJennyfer\nJessamyn\nJihan\nJoi\nJoie\nJonnie\nJuly\nKaeli\nKaleen\nKalisha\nKalynn\nKandi\nKandra\nKandyce\nKao\nKaree\nKarley\nKarri\nKaryna\nKathlyn\nKathrina\nKatina\nKaylynn\nKelle\nKellyanne\nKendell\nKeyonna\nKiara\nKimberlyann\nKimiko\nKisha\nKristyl\nKrystyna\nLacresha\nLany\nLarina\nLatrina\nLavinia\nLenna\nLeora\nLetisia\nLetticia\nLianna\nLicette\nLilah\nLisandra\nLlesenia\nLolita\nLoreal\nLoree\nLuzmaria\nLyla\nLyndsi\nLynne\nLyric\nMa\nMacy\nMadalyn\nMaddie\nMaha\nMakenna\nMalika\nMalori\nMalory\nManpreet\nMargeaux\nMariade\nMariadejesus\nMariadelourdes\nMariaisabel\nMarialuisa\nMaricarmen\nMariza\nMarizol\nMarlaina\nMarni\nMarquetta\nMarrisa\nMartiza\nMaryrose\nMechelle\nMeisha\nMelissaann\nMichaelle\nMichal\nMiki\nMilissa\nMissy\nMonalisa\nMonic\nMylene\nNai\nNanette\nNary\nNatoya\nNga\nNicollette\nNyssa\nPatrick\nPatrisha\nPatrisia\nPedro\nPhung\nPiper\nPolly\nPooja\nPrescilla\nPrisma\nQueena\nQuinn\nRacine\nRaeanna\nRaelyn\nRana\nRandal\nRashell\nRashelle\nRaul\nRebecka\nRenita\nRia\nRivka\nRomelia\nRonald\nRosangela\nRoshni\nRozanna\nSalvador\nSamaria\nSammantha\nSanta\nSarena\nSarrah\nSavana\nSayra\nScarlette\nSerene\nSerenity\nShade\nShalon\nShanea\nShanette\nShaniqua\nShanisha\nShanon\nShardai\nSharron\nShay\nSheela\nSherelle\nSherrell\nSheyla\nSinead\nSkylar\nStacee\nStephania\nTaline\nTamarra\nTanaya\nTanna\nTannia\nTarina\nTashia\nTegan\nTenesha\nTereza\nTeryn\nTesia\nThomas\nThy\nTiesha\nTran\nTreasure\nTrishia\nTritia\nTyana\nTynisha\nVan\nVannary\nVeronika\nVeronique\nWillie\nYahaira\nYara\nYohana\nZahira\nZandra\nZoraida\nZuri\nZyanya\nAdelita\nAdelle\nAdi\nAdriann\nAerial\nAgueda\nAgustina\nAisling\nAlannah\nAlea\nAlethea\nAlexsandra\nAliana\nAlida\nAline\nAliya\nAllissa\nAlva\nAlyss\nAmbria\nAmethyst\nAmrit\nAmrita\nAnamarie\nAnette\nAngele\nAnjali\nAnnabell\nAnny\nApolonia\nApryl\nAquilla\nAra\nAriadna\nAriela\nArlyn\nArminda\nArturo\nAshtyn\nAsuka\nAugusta\nAya\nAyanna\nAyumi\nBailee\nBarbie\nBenita\nBerenise\nBertina\nBrandyn\nBrieanna\nBrieanne\nBrionna\nBrittnay\nBryanne\nBryce\nBryna\nCady\nCaley\nCallista\nCamellia\nCandance\nCandie\nCaprice\nCarisa\nCarleen\nCarmel\nCarolyne\nCassandre\nCerina\nChantae\nCharis\nCharlette\nChee\nChenin\nChenoa\nChristianne\nChristle\nCicely\nCira\nCleo\nCorena\nCorene\nCorin\nCourtnee\nCristie\nCrystina\nCyndle\nDacia\nDaina\nDaisha\nDaniesha\nDarcel\nDarlin\nDarling\nDava\nDavy\nDeeann\nDeedra\nDelaina\nDelma\nDemi\nDeonna\nDer\nDezirae\nDonielle\nDorothea\nDusty\nDylan\nEbelin\nEboney\nEcho\nEdgar\nEiliana\nEleanore\nElina\nElisse\nEloise\nElsy\nEmilyann\nEnjoli\nErick\nErienne\nErikka\nErma\nErmelinda\nEstefani\nEstelle\nEunique\nFabian\nFahm\nFaren\nFatimah\nGrabiela\nGraviela\nGricel\nHan\nHanan\nHang\nHarriet\nHaylee\nHilaria\nIla\nIman\nIsabell\nIva\nJacklynn\nJacy\nJameelah\nJamelia\nJamesha\nJamey\nJamia\nJamica\nJamisha\nJanica\nJanin\nJanuary\nJaycee\nJazzmine\nJeanetta\nJeanie\nJenea\nJenilee\nJennae\nJennine\nJesika\nJessicca\nJessilyn\nJewell\nJilliann\nJillianne\nJinny\nJoanie\nJohna\nJohnny\nJomayra\nJoscelyn\nJoshlyn\nJourdan\nJovan\nJovita\nJoycelyn\nJudit\nJuliane\nJulieanne\nJulietta\nJulyana\nKai\nKailee\nKaitlan\nKameron\nKanesha\nKaress\nKaressa\nKarlyn\nKashmir\nKasia\nKatrin\nKatryna\nKaylen\nKayli\nKayliegh\nKeana\nKeara\nKeena\nKeiko\nKeira\nKelleen\nKenyatta\nKeriann\nKhadija\nKhadijah\nKiesha\nKimberli\nKimberlyn\nKlarissa\nKourtnee\nKrissy\nKristeen\nKristene\nKristianne\nKristyna\nKrizia\nKrystalyn\nKrystie\nKrystyn\nKyna\nKyndra\nLainey\nLaiza\nLanae\nLaquesha\nLaren\nLark\nLashana\nLashanda\nLatia\nLatoyia\nLavon\nLayne\nLela\nLenore\nLesa\nLin\nLindi\nLizzeth\nLluvia\nLondon\nLonnie\nLorenza\nLouella\nLouis\nLuana\nLucina\nLus\nLysette\nMaddison\nMadelaine\nMadelynn\nMaeghan\nMagnolia\nMahogany\nMaida\nMalarie\nMalena\nMalerie\nManda\nMargarete\nMargaux\nMariadelosangel\nMaribella\nMaribelle\nMaribeth\nMaricel\nMarili\nMarinda\nMarine\nMarisha\nMarkita\nMarlana\nMarleni\nMarley\nMarquisha\nMartin\nMartine\nMaryanna\nMayda\nMayraalejandra\nMccall\nMegha\nMelanieann\nMelany\nMicheal\nMiguel\nMilagros\nMilan\nMilena\nMillie\nMinh\nMiracle\nMishell\nMitra\nMitzi\nMolli\nMonita\nMyla\nMysti\nNada\nNadya\nNaima\nNakisha\nNana\nNatacha\nNathalia\nNathaniel\nNena\nNeomi\nNhung\nNika\nNikkie\nNohemi\nNorah\nNour\nOlimpia\nOmar\nOnica\nOra\nOriana\nPage\nPatience\nPeaches\nPenelope\nPia\nPoonam\nPorschea\nPuja\nQiana\nRachelann\nRaguel\nRania\nRashonda\nRayleen\nReanne\nRebbecca\nRebekka\nRebekkah\nRemy\nRenea\nRheanna\nRickie\nRika\nRobbie\nRolanda\nRonnie\nRory\nRosalynn\nRosibel\nRoxane\nRupa\nRut\nRyane\nSada\nSadia\nSage\nSaida\nSallie\nSandie\nSapna\nSaray\nSascha\nSeana\nShadae\nShadia\nShakia\nShakira\nShaleen\nShalini\nShalyn\nShaneka\nShanique\nShanise\nShannyn\nShantell\nShanti\nSharae\nSharice\nSharrell\nShawana\nShawnta\nShawntel\nShelbie\nSherice\nSherise\nShiree\nShireen\nShivani\nShonna\nShonte\nShyra\nSidra\nSiera\nSilvina\nSima\nSimona\nSinthia\nSoila\nSophea\nStepanie\nStephane\nStephannie\nSuzann\nSybil\nSydnee\nSydni\nTacara\nTahlia\nTai\nTaina\nTalaya\nTalin\nTalisha\nTamia\nTamisha\nTammra\nTaniesha\nTarin\nTawney\nTaya\nTerryn\nThalia\nTiarra\nTiera\nTiffinie\nTinamarie\nTorri\nTorrie\nTova\nTrevor\nTyanna\nValorie\nVelma\nVeridiana\nVerna\nVictor\nVivianna\nWhitnee\nXylina\nYanai\nYaneli\nYaneth\nYing\nYisel\nYumi\nZara\nZarina\nZenobia\nZoua\nJessica\nAshley\nJennifer\nAmanda\nStephanie\nSarah\nNicole\nMelissa\nElizabeth\nChristina\nMichelle\nVanessa\nBrittany\nDanielle\nHeather\nSamantha\nLauren\nMegan\nAmber\nMaria\nLaura\nRachel\nTiffany\nCrystal\nKimberly\nRebecca\nEmily\nErica\nAndrea\nKatherine\nAmy\nSara\nDiana\nNatalie\nMonica\nVeronica\nAngela\nKelly\nChristine\nLisa\nJacqueline\nCynthia\nErika\nMayra\nNancy\nYesenia\nVictoria\nAlicia\nAlexandra\nErin\nCourtney\nJamie\nAllison\nKatie\nChelsea\nKayla\nPatricia\nBrenda\nShannon\nKristina\nSandra\nAlyssa\nKristen\nMary\nAnna\nJasmine\nBrittney\nAngelica\nWhitney\nAna\nLindsay\nClaudia\nLindsey\nCindy\nKathryn\nValerie\nJenna\nJulie\nMonique\nCassandra\nKristin\nKrystal\nApril\nCaitlin\nAdriana\nLinda\nDenise\nDesiree\nGabriela\nCristina\nLeslie\nSabrina\nMarissa\nKelsey\nJulia\nKathleen\nNatasha\nPriscilla\nJoanna\nHannah\nKaren\nCatherine\nWendy\nBrianna\nKatrina\nJanet\nKarina\nTara\nTanya\nEvelyn\nNichole\nGuadalupe\nJenny\nAlexis\nRaquel\nDaisy\nMelanie\nRosa\nJeanette\nHolly\nTeresa\nGina\nCandice\nBriana\nStacy\nLeticia\nFelicia\nMartha\nYvette\nLeah\nDana\nAshlee\nJillian\nMorgan\nBrooke\nAlejandra\nKendra\nLorena\nSusan\nAlexandria\nRenee\nStacey\nGloria\nDominique\nSonia\nSophia\nAlison\nMeghan\nGrace\nJustine\nMargaret\nCasey\nTina\nAlisha\nKarla\nEsmeralda\nMaribel\nCarmen\nTracy\nAngelina\nKrista\nMallory\nOlivia\nHeidi\nRachael\nJaclyn\nMarisol\nTatiana\nIrene\nBreanna\nDeanna\nMolly\nRobin\nBrandi\nTaylor\nMelinda\nTamara\nCandace\nBrandy\nSusana\nCarla\nRoxanne\nJasmin\nBethany\nLiliana\nJohanna\nSasha\nAlma\nKristine\nMarie\nMarlene\nBianca\nCecilia\nYvonne\nCaroline\nPamela\nSandy\nKatelyn\nMarisa\nJanelle\nLacey\nCarolyn\nTheresa\nEmma\nRuth\nKaitlin\nYolanda\nAnne\nAriana\nCarolina\nRebekah\nJacquelyn\nRuby\nRocio\nBritney\nEva\nSylvia\nBlanca\nDiane\nIsabel\nRegina\nNaomi\nJocelyn\nNorma\nVirginia\nAudrey\nKelli\nKrystle\nSierra\nNina\nDeborah\nSharon\nKara\nBarbara\nLydia\nMaricela\nAshleigh\nCarly\nDaniela\nEsther\nHelen\nElisa\nGabrielle\nMelody\nStefanie\nClaire\nCristal\nAbigail\nElise\nMargarita\nAdrienne\nAimee\nRachelle\nPaige\nShawna\nCarrie\nDonna\nMarina\nSilvia\nJazmin\nMaritza\nEbony\nMarisela\nKellie\nMichele\nArlene\nSavannah\nKristy\nPaula\nElaine\nElena\nKari\nAraceli\nColleen\nKaitlyn\nVivian\nRoxana\nMeagan\nEdith\nMarilyn\nFrances\nLucia\nMiriam\nAlexa\nDestiny\nKate\nMiranda\nSummer\nJaime\nKathy\nCassie\nRochelle\nTrisha\nJordan\nJuliana\nCamille\nAmelia\nNoelle\nConnie\nNoemi\nKelley\nBridget\nRobyn\nDarlene\nRandi\nRose\nAngel\nCharlene\nLatoya\nLizette\nMisty\nAlice\nAnnette\nAnnie\nAntoinette\nBonnie\nJeannette\nKirsten\nTammy\nAnn\nElisabeth\nJudith\nAngie\nTania\nBeatriz\nHillary\nKristi\nMaira\nMercedes\nNadia\nAnastasia\nJudy\nLuz\nSheena\nJessie\nAllyson\nAutumn\nElyse\nJanette\nRoxanna\nHaley\nSuzanne\nJane\nAlissa\nCarissa\nChristy\nMadison\nCarol\nMindy\nNatalia\nSerena\nShauna\nShelby\nTabitha\nViviana\nYessenia\nAnita\nCarina\nMadeline\nCorina\nSheila\nReyna\nRita\nGriselda\nBrianne\nEliana\nJanice\nJosephine\nLucy\nYadira\nJade\nTiana\nCheryl\nEileen\nJill\nJoy\nKasey\nHilary\nJoanne\nLorraine\nAubrey\nCara\nCeleste\nCharlotte\nClarissa\nJoyce\nSofia\nChanel\nHayley\nJuanita\nLori\nNora\nRosemary\nChrista\nDawn\nTraci\nGiselle\nIris\nBelinda\nEllen\nEricka\nJanae\nMariana\nAshly\nChelsey\nLillian\nMyra\nToni\nAdrianna\nKatharine\nRyan\nBrittani\nJenifer\nPaola\nShana\nBernadette\nLizbeth\nMariela\nMia\nSydney\nCelia\nGladys\nIrma\nTasha\nAlana\nStephany\nTaryn\nTessa\nChristian\nGenevieve\nMackenzie\nDaniella\nChristie\nDesirae\nShayna\nFabiola\nGraciela\nJaimie\nLily\nPerla\nStacie\nDebra\nJazmine\nMeredith\nAurora\nDenisse\nKendall\nSally\nYasmin\nAileen\nJennie\nChloe\nJacklyn\nKassandra\nLissette\nShaina\nValeria\nAlyson\nBailey\nFrancesca\nKira\nNikki\nSherry\nSonya\nCortney\nLarissa\nVicky\nAlisa\nDebbie\nGabriella\nSimone\nTracey\nTricia\nMandy\nOlga\nHailey\nJaqueline\nLatasha\nLisette\nChantal\nCorinne\nNadine\nShelly\nShirley\nLara\nLena\nRebeca\nStaci\nAriel\nAshely\nBeverly\nCelina\nDolores\nJulianne\nKristie\nMai\nBreanne\nGrecia\nJuana\nMichaela\nAlina\nCaitlyn\nJanine\nKaty\nKrystina\nLourdes\nMaggie\nChantel\nHanna\nLeanne\nMarcella\nVanesa\nEsperanza\nJean\nJolene\nLacy\nLaurel\nNoel\nTalia\nTiffani\nDevin\nDianna\nDoris\nFatima\nIngrid\nLeanna\nPaulina\nRosanna\nShanna\nEunice\nGeorgina\nKeri\nKim\nLesley\nMarcela\nMaya\nPauline\nTawny\nAlysha\nCiara\nDelia\nDorothy\nMelisa\nViridiana\nAntonia\nAshlie\nBertha\nBetty\nBrenna\nCherie\nJackie\nKarissa\nBeth\nDevon\nJulianna\nMagdalena\nNathalie\nSusanna\nClara\nJesica\nLea\nMichael\nSelina\nTanisha\nAlycia\nIvette\nJanay\nJoana\nJustina\nLyndsey\nLynette\nRosalinda\nTonya\nAnabel\nArianna\nDulce\nJoann\nKristal\nLaurie\nAngelique\nBelen\nBridgette\nCathy\nChrystal\nConsuelo\nDina\nElisha\nKerry\nMariah\nMaureen\nAmbar\nChristopher\nLidia\nMaryann\nSalina\nTori\nZoe\nChelsie\nCierra\nDaniel\nFrancine\nJodi\nKimberley\nLeilani\nLizeth\nRhonda\nAmie\nAshton\nAthena\nCharity\nCinthia\nDora\nJayme\nVannessa\nAlyse\nBecky\nCasandra\nElvira\nJana\nLuisa\nRhiannon\nShayla\nAdrian\nBerenice\nElsa\nJena\nJessika\nPatrice\nCassidy\nJosefina\nKaila\nRene\nStevie\nAudra\nBeatrice\nBlair\nFaith\nHilda\nJeannie\nLana\nLina\nMarianne\nMariel\nMeaghan\nReina\nSarai\nTiffanie\nAsia\nCatalina\nCheyenne\nDavid\nFrancisca\nKeisha\nAdrianne\nCandy\nCatrina\nCorinna\nJanessa\nKaylee\nKayleigh\nKyla\nLilia\nMicaela\nMireya\nNataly\nSavanna\nShantel\nSophie\nTamika\nYessica\nAracely\nBreana\nElvia\nEstela\nHope\nJoan\nRosario\nSadie\nAlexander\nAnnamarie\nAyla\nEliza\nJanel\nJesenia\nLynn\nMartina\nMelina\nMollie\nNicolette\nSelena\nShelley\nAngeline\nBrittni\nConstance\nEdna\nJoelle\nKylie\nLakeisha\nLiana\nMadeleine\nMarcia\nSade\nStella\nSusie\nTerra\nVenessa\nChandra\nCorey\nDavina\nEvelin\nJeanne\nJenelle\nLilian\nMonika\nRamona\nAlysia\nBrandie\nCallie\nCheri\nCiera\nDayna\nGiovanna\nIliana\nKacie\nKandice\nLeann\nLeila\nLiza\nMay\nParis\nRosio\nTabatha\nTiara\nTrista\nYuri\nAisha\nAnjelica\nJannette\nKrysta\nLatisha\nPorsha\nDominque\nEvangelina\nGillian\nGinger\nIvonne\nPhylicia\nRosemarie\nSheri\nSonja\nViolet\nAlexia\nArielle\nCecelia\nDalia\nFaviola\nHazel\nPrecious\nTrina\nAnthony\nBetsy\nBrittanie\nCori\nDanica\nFelisha\nFlor\nKali\nKarin\nMagaly\nAlaina\nAlanna\nAlba\nAshli\nBritni\nEden\nEleanor\nJami\nKatelin\nNicolle\nPa\nSarina\nShante\nStefani\nSunny\nVicki\nVioleta\nYanira\nAdilene\nAja\nAlessandra\nAlex\nAndria\nBobbie\nChristal\nDelilah\nDena\nDenice\nDiamond\nDianne\nGeraldine\nIvy\nJanell\nJanna\nKimberlee\nLupita\nMaegan\nMandi\nMarla\nMirna\nRena\nRosalie\nTerri\nDamaris\nDennise\nEstrella\nJuliet\nKristyn\nLacie\nLoretta\nMarta\nNelly\nNikita\nRoberta\nSalena\nAlondra\nBernice\nCherise\nCherish\nDomonique\nElissa\nJeanine\nJessenia\nJohana\nKacey\nKathrine\nLia\nMari\nMarjorie\nMarlena\nMarlyn\nNereida\nPaloma\nRikki\nScarlett\nShari\nShawn\nAshlyn\nBrigitte\nBryanna\nDeidre\nGenesis\nImelda\nKrysten\nKyle\nLouise\nMara\nRosie\nSherri\nSkye\nTerry\nTess\nTierra\nYajaira\nYesica\nAdela\nChristen\nChristin\nElia\nFrancis\nJesse\nJose\nLynda\nMellisa\nMyrna\nNidia\nRobert\nTera\nAzucena\nCarley\nCassondra\nCathleen\nCorrina\nDalila\nDanelle\nDesire\nEmilia\nGeorgia\nGretchen\nGwendolyn\nHana\nJanie\nJonathan\nJovanna\nKaela\nKassie\nMaxine\nNikole\nPearl\nRacheal\nSerina\nTracie\nValentina\nAmalia\nBobbi\nBrian\nCameron\nElva\nEric\nGeneva\nHollie\nJanett\nJune\nKerri\nKeshia\nKia\nKirstin\nKristian\nKrystin\nLeigh\nLizett\nLucero\nLuisana\nMabel\nMellissa\nMinerva\nPorsche\nTamra\nTawnya\nTia\nTianna\nUrsula\nAlexandrea\nAnamaria\nAnnmarie\nBreann\nChanelle\nClare\nColette\nCora\nCorrine\nCory\nDaphne\nDarcy\nGlenda\nJackeline\nJamila\nJannet\nJenae\nJuliette\nJustin\nKelsie\nKindra\nLatrice\nLila\nMarian\nMarylou\nMikaela\nMona\nMonet\nOfelia\nPortia\nRaven\nRichelle\nSocorro\nStephaine\nStephenie\nTherese\nValarie\nAbby\nAida\nAlena\nAnnabel\nBrittaney\nBrittnie\nCambria\nCari\nCasie\nChanning\nDanae\nEstella\nFallon\nKaley\nLeeann\nLoren\nMalorie\nMarianna\nMeghann\nPeggy\nRosalba\nSelene\nAnnalisa\nBritany\nChristiana\nEmilie\nFiona\nGena\nIleana\nInez\nJoseph\nJoshua\nKacy\nKarli\nKasandra\nKatelynn\nLizet\nLucille\nLyndsay\nMarcy\nMarsha\nMaura\nSharlene\nShea\nSheryl\nStormy\nSuzette\nTyler\nAda\nAntionette\nBree\nBrittnee\nChantelle\nCharissa\nCoral\nDannielle\nDarline\nFranchesca\nIlana\nIndia\nKandace\nKatheryn\nKenya\nKimber\nKourtney\nLee\nLinh\nLinsey\nLucila\nMarquita\nMika\nRosana\nRyann\nTarah\nUnique\nVickie\nYecenia\nAli\nAraseli\nBrandee\nCody\nCristy\nFarrah\nHelena\nJames\nJody\nJulissa\nLani\nMalissa\nMarysol\nMatthew\nMimi\nMirella\nMirian\nNatali\nOctavia\nPetra\nPhoebe\nPricilla\nRacquel\nRichard\nShanae\nThuy\nXochitl\nYazmin\nZulema\nAlyce\nAntonette\nCharmaine\nDeidra\nDrew\nEmerald\nFanny\nFlorence\nGabriel\nGianna\nHallie\nIlene\nIsabella\nIsela\nJaymie\nJeniffer\nJocelyne\nJohn\nJosie\nKatlyn\nKori\nKyra\nMagali\nMalia\nMarcie\nMariaelena\nMaryanne\nMckenzie\nNakita\nReanna\nRoseann\nSheree\nStephani\nThao\nTrang\nVilma\nXiomara\nYanet\nAllie\nAlysa\nAndrew\nAriane\nBrittny\nBryana\nCassaundra\nCayla\nCeline\nChante\nChristi\nDaniele\nDarla\nDenisha\nEboni\nEdlin\nElaina\nEmilee\nErendira\nEryn\nEugenia\nFelecia\nGracie\nJacquelin\nJenniffer\nJulieta\nKaylin\nLeonela\nLisamarie\nLiset\nMadelyn\nMallorie\nManuela\nMariam\nMina\nMyesha\nNicholas\nPatsy\nRaylene\nRosalva\nShanell\nSherrie\nSoledad\nTami\nTeri\nVannesa\nYuliana\nAmi\nAngelita\nAni\nAnika\nAubree\nCandi\nCandis\nCarli\nCaryn\nDara\nEster\nGricelda\nHarmony\nJeanna\nJerica\nJerrica\nJesus\nJodie\nJohnna\nKiley\nKylee\nLakisha\nLupe\nMargo\nMariaguadalupe\nMarion\nMichell\nNayeli\nNichelle\nRhea\nRosalyn\nVenus\nWindy\nAide\nAmerica\nAnastacia\nAnnemarie\nBlake\nBrandon\nBridgett\nBrigette\nBritta\nDanna\nDayana\nDeana\nDeirdre\nDoreen\nEleni\nEmely\nHaydee\nIsabelle\nJennefer\nKa\nKala\nKelsea\nKiana\nKorina\nLaquisha\nLauryn\nLeandra\nLeonor\nLesly\nLogan\nMaryam\nMiesha\nNanci\nNatashia\nPatty\nPenny\nPrincess\nRae\nRenae\nRosanne\nRubi\nSaira\nSamatha\nSaundra\nSequoia\nShameka\nSkylar\nStacia\nVan\nVerenice\nWendi\nYuridia\nAlesha\nAlia\nAmparo\nAnnika\nAustin\nBillie\nCarlie\nCarole\nChanell\nCheyanne\nCristine\nDanyelle\nDeserie\nElida\nElla\nElsie\nIsaura\nJacqulyn\nJaimee\nJoslyn\nKaci\nKailey\nKalyn\nKeely\nKirstie\nKymberly\nLilliana\nLindy\nLisset\nLora\nLucinda\nLynnette\nMalinda\nMaren\nMargot\nMarguerite\nMarkie\nMerissa\nMildred\nMoriah\nMy\nNallely\nNeda\nPang\nPhuong\nRaelene\nRosamaria\nSacha\nSamara\nShanelle\nShasta\nStar\nTrinidad\nTyesha\nVera\nYer\nAreli\nAshlei\nBao\nCamellia\nCamilla\nCecily\nConcepcion\nCristin\nCrystle\nDallas\nDanika\nDebora\nElysia\nEve\nGladis\nJewel\nJordyn\nJoselyn\nKati\nKatlin\nKaycee\nKayleen\nKaylie\nKendal\nKenna\nKesha\nKimiko\nKortney\nLynsey\nMagen\nMaranda\nMaricella\nNickole\nRaina\nRina\nRonisha\nRosalia\nRoseanna\nSabina\nShanel\nShanika\nSue\nSuzanna\nTamar\nTawni\nTosha\nAlysse\nAmina\nAnel\nAnh\nAria\nAva\nBritani\nCaprice\nCarmelita\nChanda\nChantell\nDeanne\nDemetria\nDesirea\nEloisa\nFrankie\nGema\nHanh\nIda\nIvory\nJacquelynn\nJaneth\nJeannine\nJenni\nJulian\nJuliann\nKadie\nKady\nKaleigh\nKalie\nKarly\nKaryn\nKatarina\nKellye\nKiersten\nKristan\nLaci\nLigia\nLizabeth\nLizzette\nLois\nLuis\nMarci\nMarivel\nMarlee\nMarleen\nMattie\nMckenna\nNia\nNoemy\nNydia\nPaulette\nPilar\nPriya\nRachell\nRosalind\nShanon\nShaunte\nShyla\nSteffanie\nTammie\nTatianna\nTrinity\nWilliam\nWinnie\nXenia\nZulma\nAaron\nAddie\nAdelina\nAlecia\nAlix\nAnarosa\nAsha\nAspen\nBenita\nBreeann\nBrisa\nBrook\nDeonna\nDionne\nEstephanie\nEvette\nFawn\nFaye\nGisselle\nHolli\nIsis\nJanny\nJeana\nJenee\nJesika\nJoni\nJovita\nJulieann\nJulieanne\nKallie\nKandis\nKarlie\nKasie\nKerrie\nKirby\nLaila\nLakesha\nLatara\nLatonya\nLayla\nLiane\nLilly\nLola\nLoni\nMalisa\nMalory\nMarlen\nMayte\nMelodie\nMicah\nMonserrat\nNicki\nPhyllis\nPiper\nPrisma\nRachele\nRiley\nRomina\nSahar\nShamika\nShanda\nShandi\nShane\nShani\nShantell\nSharleen\nShira\nShoshana\nSkyler\nSommer\nSondra\nStephannie\nSusanne\nTabetha\nTahnee\nTameka\nTenisha\nThelma\nTierney\nTristin\nValencia\nVianey\nYael\nAlesia\nApolonia\nBria\nBritnee\nCarlee\nCarmel\nCelena\nCharisse\nChoua\nCristen\nDani\nDania\nDanisha\nDeena\nDeja\nDestinee\nElana\nGail\nGisela\nGregory\nJasmyn\nJason\nJenessa\nJennica\nJeri\nJessi\nJovana\nKarlee\nKarrie\nKatia\nKelsy\nKenia\nKeren\nKevin\nKrizia\nLacee\nLadonna\nLisbeth\nMagda\nMalika\nMariadelcarmen\nMaritsa\nMeggan\nMeliza\nMercy\nMeryl\nNakia\nNatalee\nNathaly\nNatosha\nNereyda\nNoreen\nOralia\nPorche\nQuinn\nRoxann\nSantana\nSean\nShakira\nShoua\nStarla\nSteven\nSunshine\nTanesha\nTeanna\nTorrey\nTyra\nVivianna\nYahaira\nYasmine\nYoana\nZenia\nAgnes\nAlejandro\nAlise\nAllegra\nAllyssa\nAmaris\nAn\nAnais\nAnalisa\nAndra\nAnnalise\nAnya\nArely\nArianne\nArmida\nAstrid\nBeatris\nBettina\nBritny\nBritteny\nBrynn\nCandie\nCarmela\nCarmina\nCatharine\nCathryn\nCharis\nChasity\nChelsi\nCindi\nCinthya\nClarice\nCodi\nCollette\nCrystina\nCyndy\nDarci\nDaryl\nDeisy\nDenae\nDesarae\nDiandra\nDonisha\nElicia\nEnedina\nEvelia\nFlora\nGenna\nHaleigh\nHali\nHalley\nHeaven\nHector\nIvana\nJacey\nJammie\nJanina\nJeanie\nJenay\nJenica\nJordana\nJuan\nJuliane\nKarena\nKattie\nKellyn\nKelsi\nKenisha\nKiara\nKristle\nKrystyna\nKyrie\nLanisha\nLorie\nLorin\nLuzmaria\nMagan\nMarcelina\nMarielle\nMarika\nMario\nMariza\nMarlin\nMaylene\nMiguel\nMisti\nNelida\nNicholle\nQuiana\nRana\nRayna\nRhianna\nRosalina\nRosita\nSable\nSamira\nSavanah\nSergio\nShanice\nSharde\nSharonda\nShawnee\nSherie\nSindy\nSiobhan\nSoraya\nSuzie\nTasia\nTeena\nThea\nThomas\nTiera\nTonia\nValorie\nVania\nWanda\nWhittney\nYasmeen\nZahra\nZaida\nZuri\nAcacia\nAdrina\nAhsley\nAlejandrina\nAlisia\nAlyssia\nAngelia\nAnisha\nAnnamaria\nArica\nArleen\nAshlea\nAubrie\nAurelia\nBeronica\nBessie\nBonita\nBrett\nBritnie\nBrittnay\nCalli\nCandelaria\nCatlin\nCheree\nChristiane\nClarisa\nCrystel\nDaniell\nDanyell\nDelina\nDevan\nDinah\nElba\nElyssa\nErnestina\nEvonne\nFarah\nFelisa\nFernanda\nGwen\nHortencia\nIesha\nIlse\nItzel\nJacinda\nJackelyn\nJacob\nJamee\nJanee\nJasmina\nJazzmin\nJoi\nJourdan\nJulisa\nJullian\nKarolina\nKassi\nKeli\nKenneth\nKera\nKhadija\nKiera\nLan\nLarisa\nLatanya\nLaticia\nLela\nLeona\nLetisia\nLianna\nLianne\nLiseth\nLiz\nLorina\nLyndsie\nLynne\nMacy\nMaia\nMalerie\nMargaux\nMargie\nMariella\nMariko\nMarilynn\nMyisha\nPatrick\nPriscila\nRandall\nRaymond\nReena\nRowena\nSabra\nShanti\nShara\nShatara\nShavon\nShena\nSherice\nSidney\nSky\nTamera\nTana\nTanika\nTarra\nTawnee\nTegan\nTheodora\nTiffiny\nTimothy\nTory\nTristan\nVi\nYara\nAbbie\nAdeline\nAdina\nAdria\nAlannah\nAline\nAlishia\nAnahi\nAnnabelle\nAntonio\nApryl\nArcelia\nArika\nBaby\nBerta\nBethanie\nBliss\nBreeana\nBreeanna\nCameo\nCamila\nCandyce\nCarmin\nCassey\nCendy\nChannel\nCharline\nCintia\nColby\nCorie\nCorrie\nDanette\nDanyel\nDeandra\nDelmy\nDelores\nDylan\nEdwina\nElisabet\nErikka\nErina\nErinn\nEstefani\nFrancisco\nGenoveva\nGiana\nGreta\nHeidy\nInes\nIsha\nIvan\nJaclynn\nJael\nJanai\nJanea\nJayne\nJenell\nJeni\nJenice\nJennafer\nJeremy\nJessa\nJesseca\nJessyca\nJoleen\nJulienne\nJulietta\nKaelyn\nKameron\nKami\nKandi\nKarisa\nKathie\nKathryne\nKaylynn\nKeanna\nKeesha\nKellee\nKennisha\nKrystie\nKrystine\nKyndra\nLanette\nLaquita\nLatosha\nLeia\nLilibeth\nLindsie\nLinnea\nLisseth\nLlesenia\nLluvia\nLoan\nLonnie\nLorna\nMarin\nMartin\nMaryjane\nMayraalejandra\nMeagen\nMelaine\nMelyssa\nMichel\nMira\nMisha\nNakeisha\nNakisha\nNatassia\nNena\nNerissa\nNga\nNichol\nNisha\nPatience\nPorscha\nRafaela\nRebeka\nReem\nRegan\nRenata\nRonni\nRosalynn\nRosaura\nRossana\nSana\nSarahi\nSarena\nShae\nShalonda\nShannel\nShardae\nShiloh\nShireen\nSirena\nSulema\nSuzy\nTayler\nTeryn\nThu\nTravis\nTyisha\nVida\nVienna\nWesley\nWinter\nZachary\nZoila\nAbbey\nAdelaida\nAdelita\nAdriane\nAlayna\nAleah\nAlexi\nAlida\nAllissa\nAmada\nAmberly\nAmira\nAnamarie\nAngelena\nAnjali\nAnnalee\nAshlynn\nAura\nAvalon\nAvery\nAyesha\nBrea\nBrieanna\nBrienna\nBryn\nCaitlan\nCamelia\nCami\nCaressa\nCarey\nCarlos\nCarlyn\nCarolynn\nCathrine\nCelene\nCharleen\nChastity\nChau\nChee\nChristianne\nClaudette\nCorine\nCortnie\nCrista\nCristian\nCyndi\nDakota\nDany\nDenielle\nDestini\nDionna\nDung\nDustin\nEduardo\nElizabet\nEllesse\nElsy\nEmi\nErnestine\nEstefania\nEvan\nFatimah\nFrank\nGayle\nGeorgette\nGia\nGinny\nHelene\nHong\nJacquline\nJan\nJaquelin\nJayde\nJazmyn\nJeanelle\nJeanett\nJene\nJenette\nJennette\nJensine\nJerry\nJessalyn\nJessicaann\nJina\nJo\nJohnny\nJolie\nJonna\nJovan\nKaitlynn\nKarie\nKarolyn\nKaterina\nKaula\nKaylene\nKayley\nKeila\nKeith\nKhristina\nKinsey\nLachelle\nLakeshia\nLaquesha\nLashanda\nLashawn\nLashonda\nLatia\nLibby\nLiberty\nLilianna\nLinette\nLisett\nLissett\nLondon\nLouisa\nLucerito\nLuciana\nLucrecia\nLyssa\nMadalyn\nMadonna\nMaral\nMarilu\nMaryanna\nMelissaann\nMi\nMikayla\nMilagros\nMonay\nNacole\nNadya\nNanette\nNellie\nNely\nNhi\nNhung\nNiccole\nNiki\nNubia\nPage\nParisa\nPearla\nPenelope\nPorcha\nRachelann\nRaechel\nRemy\nRenita\nRiana\nRisa\nRoselyn\nSahara\nSaida\nSamuel\nSandi\nSarita\nScott\nSera\nShabnam\nShala\nShanay\nShandra\nShantal\nSharell\nSharla\nShelia\nShellie\nShereen\nSherrell\nShiela\nSienna\nSilva\nSoleil\nSoraida\nSusannah\nSylvie\nTalisha\nTashina\nTeresita\nTiona\nTisha\nTomi\nTorie\nVelma\nYelitza\nZaira\nZoua\nAarika\nAbril\nAdele\nAlea\nAlixandra\nAlly\nAllyce\nAllyn\nAllyse\nAmandeep\nAmara\nAnitra\nAnnelise\nAshliegh\nAshten\nAya\nAzalia\nBianka\nBlaire\nBlythe\nBradley\nBrielle\nBritanny\nBrittanee\nCady\nCali\nCarin\nCarmella\nCarolann\nCaterina\nChana\nCharise\nCharles\nCharlie\nChelsee\nChelsy\nCherelle\nCherice\nCherrelle\nCherry\nChina\nChris\nChrystina\nClaribel\nCodie\nCourteney\nCyntia\nCyrstal\nCystal\nDaisey\nDaisha\nDanesha\nDanya\nDarcie\nDeann\nDelena\nDenee\nDesiray\nDevina\nDevonna\nDevyn\nDixie\nDolly\nDomenica\nDominica\nDonald\nDorian\nEbonie\nEdlyn\nElayne\nElda\nElianna\nElisse\nEllie\nEllyse\nElysa\nEmelia\nEmmy\nErlinda\nErma\nEstelle\nFarren\nFernando\nFrancheska\nGuillermina\nHan\nHaylee\nHellen\nHien\nIdalia\nJamilah\nJanella\nJanis\nJeffrey\nJenise\nJennah\nJoanie\nJoelene\nJoey\nJohnisha\nJorge\nKaelin\nKailee\nKalani\nKaleena\nKalia\nKalina\nKamie\nKamilah\nKandyce\nKao\nKarine\nKatey\nKathlyn\nKatina\nKatrice\nKaya\nKayce\nKaylyn\nKeeley\nKerstin\nKianna\nKimberlyann\nKrystel\nLane\nLanita\nLaporsha\nLareina\nLashawna\nLashea\nLatricia\nLavinia\nLeesa\nLenora\nLisandra\nLissa\nLoraine\nLynna\nLysette\nMae\nMaegen\nMallori\nMalori\nManda\nMariade\nMariateresa\nMaricarmen\nMaricruz\nMarkita\nMarlana\nMartine\nMarygrace\nMarylyn\nMehgan\nMelani\nMelany\nMele\nMelynda\nMerry\nMichal\nMilissa\nMonisha\nMuriel\nMyeisha\nNastassia\nNatividad\nNeva\nNicholette\nNiesha\nNoelia\nNohely\nNoor\nOanh\nPhung\nPia\nPolly\nPoonam\nPuja\nRaeann\nRafael\nRanda\nRandee\nReva\nRicardo\nRoma\nRonda\nRonnisha\nRoseanne\nRosetta\nRoya\nRuben\nRyanne\nSadaf\nSamar\nSamia\nSanta\nSaskia\nSayra\nSeanna\nShanee\nShannan\nShannen\nShanta\nSharayah\nShaunna\nShavonne\nShawnta\nShawntay\nShawntel\nSheela\nSheng\nShirin\nShivani\nShley\nShonte\nSilvana\nSparkle\nStacee\nStefany\nStepahnie\nStepanie\nTalisa\nTam\nTatum\nTenaya\nTenesha\nTereza\nTesia\nTonisha\nTorri\nTorrie\nTracee\nTressa\nTrevor\nTristen\nTyla\nValene\nValeri\nVeronika\nVeronique\nVictor\nWinona\nXochilt\nYezenia\nYvett\nZenaida\nAaryn\nAdam\nAfton\nAkira\nAleena\nAleisha\nAleta\nAlfredo\nAlvina\nAmbrosia\nAnabell\nAnalee\nAndraya\nAndriana\nAndrina\nAnissa\nAnnel\nAnneliese\nAntonina\nAri\nArlette\nAsheley\nAshleymarie\nAubri\nAudrina\nAvital\nAviva\nAymee\nAziza\nBenjamin\nBerenise\nBibiana\nBrenae\nBrynne\nCaley\nCandida\nCarisa\nCarl\nCarlene\nCarolyne\nCasara\nCassy\nCecile\nChanna\nCharde\nChavon\nCherisa\nCherisse\nCherrie\nChi\nChiara\nChrissie\nCoreena\nCorissa\nCristi\nDaria\nDarleen\nDelaney\nDelicia\nDella\nDenis\nDeseree\nDestinie\nDeven\nDivya\nDona\nDonielle\nDonnisha\nDori\nDusti\nDyana\nEbelin\nEcho\nEdward\nElidia\nElina\nElysse\nErendida\nEssence\nFalisha\nFelicity\nFlorencia\nGarrett\nGemma\nGinelle\nGiovana\nHa\nHailee\nHarpreet\nHenry\nHermelinda\nHollis\nHollyann\nIdania\nIrina\nIvon\nJacinta\nJacklynn\nJaleesa\nJannelle\nJannett\nJasmyne\nJaymee\nJazmyne\nJemma\nJenine\nJennelle\nJesslyn\nJocelynn\nJohna\nJonelle\nJudit\nJuli\nKailyn\nKaitlan\nKalah\nKamisha\nKanisha\nKarianne\nKaryna\nKassondra\nKaydee\nKc\nKeana\nKeara\nKeiko\nKelcie\nKellen\nKeriann\nKhadijah\nKhalilah\nKimberli\nKimberlie\nKiri\nKirstyn\nKiyana\nKory\nKristena\nKyleigh\nKylene\nLanesha\nLarena\nLashay\nLatrisha\nLaurissa\nLeana\nLeora\nLetticia\nLeyla\nLillie\nLindsy\nLissete\nLita\nLivier\nLoreal\nLyna\nLyndsi\nLynnae\nMacie\nMaciel\nMaddie\nMaddison\nMaha\nMaile\nMaisha\nMakayla\nMallary\nManisha\nMariadejesus\nMarisha\nMarizol\nMarkeisha\nMarlo\nMarrisa\nMartiza\nMarva\nMarybel\nMarybeth\nMaryellen\nMaryjo\nMatilde\nMayela\nMechelle\nMee\nMeilani\nMeranda\nMindi\nMinna\nMisa\nMonae\nMylinda\nNathan\nNathaniel\nNickie\nNicola\nNida\nNoelani\nNohemi\nNorah\nNou\nOliva\nOmar\nPooja\nPorschea\nRaelyn\nRaelynn\nRandy\nRania\nRaylena\nRaynisha\nRebeccah\nRianna\nRobbie\nRonika\nRonnie\nRosella\nRosina\nRosy\nSalvador\nSamanthia\nSami\nSammantha\nSantina\nSaray\nSee\nSerenity\nShaheen\nShahrzad\nShaleen\nShalynn\nShandy\nShanita\nShantelle\nSharae\nSharday\nSharee\nShawanna\nShawnna\nShawnte\nShay\nSheridan\nShina\nSilver\nStarr\nSteffani\nSully\nSulma\nSumer\nSuzana\nTalar\nTalitha\nTameika\nTamisha\nTanaya\nTasheena\nTavia\nTeal\nTempest\nTerese\nTeressa\nTerina\nTessie\nThalia\nThanh\nTiffanyann\nTomiko\nTony\nTranisha\nTreasure\nTyanna\nValery\nVanna\nVincent\nVivien\nVy\nYanett\nYen\nYeni\nYuriana\nZaneta\nZinnia\nZury\nAgueda\nAidee\nAime\nAkilah\nAlberta\nAlbina\nAleasha\nAlegandra\nAleyda\nAliya\nAliza\nAllisha\nAlona\nAmal\nAmaya\nAmberlee\nAmbra\nAmbria\nAmee\nAmiee\nAmrit\nAnaalicia\nAnalise\nAnastassia\nAnessa\nAnisa\nArgelia\nArlena\nArlinda\nArthur\nAryn\nAshlan\nAshle\nAsley\nAudriana\nAundrea\nAyana\nAzalea\nAzure\nBelia\nBilma\nBiridiana\nBo\nBonny\nBreonna\nBricia\nBrieann\nBrionna\nBriseida\nBritne\nBritt\nBryanne\nByanka\nCailin\nCalista\nCalley\nCandra\nCaren\nCarleen\nCarleigh\nCarlin\nCary\nCasaundra\nCassady\nCelenia\nCelestine\nCesilia\nChan\nChanae\nChannell\nChantae\nChara\nCharli\nCharmayne\nChassidy\nChaunte\nChere\nChiquita\nChristel\nChristianna\nChristyna\nClair\nColeen\nCourtnie\nCruz\nCrystall\nCydney\nDacia\nDahlia\nDanee\nDanita\nDanny\nDarby\nDawnielle\nDeeanna\nDelana\nDenia\nDennice\nDenys\nDesaree\nDevorah\nDinora\nDivina\nDomingue\nDominic\nDusty\nEdgar\nEleana\nEmber\nEmilyann\nEmmeline\nErmelinda\nEryka\nEsperansa\nEsthela\nFelice\nGardenia\nGarine\nGary\nGenavieve\nGoldie\nGrabiela\nGresia\nGrisel\nHang\nHeba\nHerlinda\nHerminia\nHester\nHoa\nHolland\nHolley\nIan\nIna\nIndira\nIvanna\nJacqlyn\nJacquelina\nJahaira\nJameka\nJamela\nJamelia\nJamika\nJanaya\nJanaye\nJanene\nJaney\nJaniece\nJanira\nJanisha\nJany\nJaquelyn\nJasmen\nJaya\nJaycie\nJazzmine\nJenefer\nJera\nJewell\nJimena\nJimmy\nJoe\nJohnanna\nJonique\nJonni\nJordanne\nJosselyn\nJulio\nKadi\nKaili\nKaisha\nKalena\nKalin\nKalisha\nKally\nKalynn\nKamille\nKamryn\nKaori\nKaria\nKariann\nKarlyn\nKarol\nKarri\nKasaundra\nKasha\nKasondra\nKassy\nKateri\nKatharyn\nKatherin\nKatheryne\nKatiana\nKavita\nKay\nKaylen\nKeegan\nKeena\nKeira\nKelcey\nKellyanne\nKendria\nKensey\nKersten\nKesia\nKeyla\nKhanh\nKiah\nKierra\nKiesha\nKimberlyanne\nKimberlyn\nKimmy\nKiran\nKirsty\nKitty\nKorinna\nKorrie\nKris\nKrishna\nKrissy\nKristeen\nKristianna\nKrystelle\nLacresha\nLaken\nLakiesha\nLakita\nLaneisha\nLaree\nLasha\nLashawnda\nLatavia\nLatonia\nLauralee\nLaure\nLauri\nLaurin\nLavren\nLeeanna\nLeeanne\nLeigha\nLeighann\nLenae\nLeslee\nLetisha\nLetitia\nLetty\nLezlie\nLien\nLili\nLinna\nLisabeth\nLise\nLorelei\nLyn\nLynae\nLynsie\nMachelle\nMadelaine\nMakenzie\nMalarie\nMalina\nMandeep\nMandie\nManuel\nMarche\nMariaangelica\nMariadel\nMariann\nMarielena\nMarilin\nMarily\nMark\nMarkesha\nMarleni\nMarqui\nMarrissa\nMartinique\nMarvin\nMaryhelen\nMarylu\nMarylynn\nMccall\nMegen\nMelissia\nMelodee\nMelonie\nMercedez\nMichela\nMikki\nMilan\nMillie\nMinnie\nMiracle\nMitzi\nMonette\nMyeshia\nMylinh\nNai\nNansi\nNastassja\nNatacha\nNazia\nNidya\nNikia\nNocole\nNova\nNuvia\nOdette\nOpal\nPassion\nPaul\nPedro\nPerlita\nPhilip\nQiana\nQuanisha\nQuyen\nRamon\nRasheeda\nRaul\nRaychel\nReba\nRebbecca\nRebekkah\nRheanna\nRicci\nRicki\nRivka\nRoberto\nRonald\nRonnesha\nRosaelena\nRosalee\nRoslyn\nRufina\nRuthann\nSabryna\nSalma\nSammy\nSandeep\nSandhya\nSarra\nSavina\nScarlet\nSeema\nSela\nShadae\nShade\nShalene\nShalina\nShalon\nShaneka\nShanette\nShaniece\nShanise\nSharina\nShaundra\nShawnice\nShayda\nShaylyn\nShayne\nShelli\nSherilyn\nSherine\nSheyla\nShonna\nShyann\nSindia\nSkyla\nSoila\nSokhom\nSophana\nSophy\nSpencer\nSteffany\nStephine\nStevi\nSuzan\nTaisha\nTanasha\nTaniesha\nTanna\nTannia\nTashia\nTatjana\nTatyana\nTawana\nTeaira\nTeisha\nTiarra\nTiesha\nTiffney\nTopacio\nTova\nToya\nTran\nTuesday\nTurquoise\nTuyen\nTyresha\nValentine\nVaness\nVaneza\nVanity\nVelvet\nVenita\nVianca\nVivianne\nVivienne\nWilma\nXuan\nYaneli\nYasmina\nYee\nYeng\nYing\nYomaira\nYury\nZara\nZayra\nZenobia\nZoraida\nZuleyma\nJessica\nAshley\nJennifer\nAmanda\nStephanie\nSarah\nElizabeth\nNicole\nMelissa\nBrittany\nVanessa\nMichelle\nChristina\nSamantha\nLauren\nDanielle\nTiffany\nMegan\nHeather\nAmber\nMaria\nCrystal\nRachel\nLaura\nEmily\nRebecca\nKimberly\nKatherine\nAndrea\nErica\nSara\nDiana\nNatalie\nCynthia\nJacqueline\nAmy\nAlexandra\nChelsea\nCourtney\nVictoria\nMonica\nLisa\nAlyssa\nKayla\nChristine\nAngela\nVeronica\nNancy\nKelly\nJasmine\nErika\nBrenda\nAlicia\nMayra\nJamie\nCassandra\nBrittney\nErin\nAllison\nAngelica\nKristen\nCaitlin\nAnna\nMary\nKatie\nPatricia\nKathryn\nKristina\nSandra\nShannon\nDaisy\nCindy\nAna\nMonique\nAdriana\nJulie\nLindsay\nBrianna\nKarina\nDenise\nLindsey\nYesenia\nKristin\nClaudia\nKelsey\nLeslie\nKrystal\nMarissa\nJoanna\nDesiree\nGabriela\nValerie\nKaren\nPriscilla\nJenna\nJulia\nBianca\nCristina\nSabrina\nEvelyn\nHannah\nApril\nKathleen\nCatherine\nLinda\nNatasha\nWendy\nWhitney\nAlexis\nJanet\nKatrina\nGuadalupe\nRosa\nBriana\nHolly\nTara\nMelanie\nTaylor\nJeanette\nTeresa\nAlexandria\nRaquel\nNichole\nAlejandra\nJenny\nBrooke\nYvette\nOlivia\nGina\nMorgan\nFelicia\nSophia\nJustine\nTanya\nMolly\nLeah\nSonia\nMeghan\nKaitlin\nAlison\nStacy\nJillian\nMartha\nKatelyn\nKendra\nJaclyn\nCandice\nGloria\nLeticia\nSusan\nDana\nBreanna\nGrace\nDominique\nStacey\nKrista\nAshlee\nJasmin\nKarla\nCandace\nRoxanne\nTina\nMargaret\nRenee\nKaitlyn\nAngelina\nBrandi\nMarlene\nJanelle\nKara\nLiliana\nMaribel\nGabrielle\nTracy\nIrene\nRachael\nCarla\nCasey\nCaroline\nAriana\nDeanna\nEsmeralda\nKristine\nBrandy\nBlanca\nBritney\nCarmen\nSusana\nMarisol\nEmma\nTheresa\nHeidi\nLorena\nSandy\nTatiana\nBethany\nMarisa\nMelinda\nYvonne\nCecilia\nJazmin\nDonna\nJocelyn\nAlma\nMarie\nJacquelyn\nAlisha\nEsther\nRobin\nSasha\nAbigail\nJohanna\nMallory\nCarolina\nAudrey\nCarolyn\nVirginia\nBeatriz\nSharon\nRocio\nTamara\nSierra\nRebekah\nNorma\nRuth\nMargarita\nClaire\nAraceli\nElaine\nKelli\nMarina\nSilvia\nBarbara\nSylvia\nPaige\nAnne\nEva\nLacey\nRuby\nIsabel\nCarly\nPamela\nDeborah\nYolanda\nRoxana\nHaley\nNina\nKirsten\nRachelle\nHelen\nNadia\nElena\nAlice\nDaniela\nJordan\nLizette\nKathy\nRegina\nAdrienne\nJaime\nMiriam\nCarrie\nAngel\nCamille\nElise\nLydia\nShawna\nDiane\nMeagan\nMelody\nMercedes\nMaricela\nNaomi\nRochelle\nAshleigh\nStefanie\nMichele\nNoemi\nEbony\nEdith\nAlexa\nRose\nChelsey\nMarisela\nAmelia\nAimee\nDarlene\nMaritza\nTania\nElisa\nCarina\nRobyn\nTrisha\nJanette\nKate\nBridget\nLucia\nSavannah\nVivian\nAnita\nCarissa\nCristal\nElyse\nDestiny\nFrances\nViviana\nAnnie\nMiranda\nBonnie\nJeannette\nCorina\nSummer\nAllyson\nArlene\nClarissa\nJudith\nKrystle\nLillian\nMarilyn\nKristy\nSydney\nAutumn\nYadira\nCharlene\nSuzanne\nAlana\nAriel\nJuliana\nGriselda\nHilary\nAdrianna\nAnn\nColleen\nCaitlyn\nIris\nNoelle\nConnie\nJane\nKari\nAnnette\nJade\nJudy\nElisabeth\nMadeline\nRoxanna\nYessenia\nBrittani\nEllen\nTabitha\nAntoinette\nCassie\nCeleste\nKelley\nTasha\nCarol\nEileen\nJazmine\nSerena\nLuz\nMisty\nBrianne\nChanel\nGeraldine\nToni\nCharlotte\nCheryl\nHillary\nJanice\nNatalia\nSimone\nAlissa\nMaira\nMeredith\nChristy\nMadison\nIrma\nJessie\nKellie\nNora\nAngie\nJosephine\nMia\nPaula\nRandi\nSally\nGenevieve\nLatoya\nAubrey\nKylie\nMai\nChrista\nFrancesca\nKarissa\nLucy\nAnastasia\nCelia\nDawn\nJuanita\nPerla\nGabriella\nHayley\nJoanne\nRita\nCara\nKatharine\nSheila\nTaryn\nGladys\nJaqueline\nLily\nReyna\nRosemary\nBailey\nLizbeth\nMariana\nJulianne\nNadine\nShelby\nJoy\nJoyce\nKassandra\nSofia\nStephany\nTammy\nAnabel\nNikki\nShauna\nJill\nOlga\nShirley\nChristian\nJanae\nMariela\nPaola\nTracey\nEunice\nIvette\nTiana\nBreanne\nEricka\nKasey\nGrecia\nAdilene\nAshly\nChloe\nLeanna\nAlisa\nBridgette\nCortney\nKira\nLarissa\nMindy\nMyra\nNathalie\nBelinda\nGenesis\nKristie\nLesley\nValeria\nAlina\nDebbie\nJaimie\nJennie\nRebeca\nTessa\nDaniella\nJoana\nKristi\nLaurel\nMichaela\nShayna\nCelina\nFabiola\nHailey\nMaricruz\nStaci\nStacie\nMackenzie\nAlyson\nDorothy\nGeorgina\nKaylee\nLorraine\nBrenna\nLena\nLizeth\nLori\nShaina\nSherry\nChristie\nJacklyn\nJuana\nKeri\nMaggie\nMarcela\nBeatrice\nFatima\nLara\nPaulina\nSheena\nDebra\nJanine\nLourdes\nNicolette\nArielle\nGraciela\nMandy\nSonya\nAshlie\nBeverly\nLeanne\nMaya\nShanice\nAurora\nBernadette\nChantel\nKaty\nLissette\nMagdalena\nMichael\nAnais\nBelen\nDianna\nFlor\nKendall\nMarcella\nClara\nCorinne\nEliana\nIngrid\nMelisa\nNataly\nPauline\nPrecious\nTiara\nAntonia\nBreana\nLyndsey\nAsia\nDina\nKaila\nRyan\nShana\nAlysha\nAngelique\nChrystal\nCinthia\nElsa\nFaith\nJenifer\nLisette\nShanna\nVicky\nAracely\nAthena\nCasandra\nChelsie\nCiara\nDesirae\nDevon\nKayleigh\nRosanna\nRosario\nSalina\nDevin\nJackie\nJanessa\nBerenice\nBertha\nDelia\nJustina\nTiffani\nTonya\nAlexander\nAlondra\nArianna\nCathy\nLacy\nLea\nDolores\nJulianna\nViridiana\nZoe\nDalia\nEsperanza\nGiselle\nIliana\nJessika\nKimberlee\nKyla\nLynn\nMaryann\nSelina\nTalia\nTiffanie\nTricia\nAileen\nAshely\nHilda\nJosefina\nKim\nLilia\nBecky\nCatalina\nLynette\nSarai\nShelly\nAlanna\nChantal\nElvia\nHanna\nJena\nKourtney\nLuisa\nRosalinda\nShelley\nStevie\nTraci\nJana\nJoann\nJolene\nLatasha\nThalia\nEliza\nFrancine\nJohana\nKristal\nKrysta\nMariel\nPaulette\nSarina\nStella\nTawny\nYasmin\nCandy\nDavid\nDoris\nJulissa\nReina\nBetty\nBlair\nChristopher\nIvonne\nJayme\nJodi\nMaureen\nTanisha\nTori\nVanesa\nCheyenne\nDaniel\nHope\nJean\nKerry\nLeilani\nKacie\nLatisha\nLidia\nSusie\nTerra\nYajaira\nBrittanie\nCatrina\nCorinna\nDanica\nDora\nElisha\nElvira\nLaurie\nMelina\nParis\nAlba\nAlexia\nAlysia\nCharity\nConsuelo\nEmerald\nJami\nKerri\nMabel\nRamona\nShayla\nSophie\nBrittni\nBrittny\nCassidy\nCierra\nDulce\nFrancisca\nJesenia\nMarlena\nMonika\nRosalie\nSade\nStefani\nTia\nAlaina\nAlessandra\nAshton\nBrandie\nEden\nJoan\nKeisha\nLilian\nMarianne\nNoel\nAlyse\nCecelia\nChandra\nDenisse\nJanay\nKimberley\nLeann\nMicaela\nRosemarie\nYessica\nAudra\nBernice\nDayna\nElva\nEvelin\nGillian\nJanel\nJose\nLia\nAdrian\nAdrianne\nAmie\nConstance\nEmilia\nKristyn\nMagaly\nMariah\nMartina\nNelly\nSadie\nSavanna\nAisha\nBetsy\nCherie\nElissa\nKatelynn\nLana\nMona\nRhiannon\nVioleta\nAlycia\nBeth\nBreann\nBryanna\nCiera\nCori\nIvy\nJackeline\nJenelle\nLeila\nLiana\nLupita\nMariam\nMay\nNatali\nSelena\nTianna\nVenessa\nVicki\nAbby\nAmerica\nBritni\nChristen\nDelilah\nJaleesa\nJanell\nJoshua\nKatarina\nKathrine\nLizet\nMadeleine\nMirna\nRene\nRosie\nSonja\nTabatha\nViolet\nAlexandrea\nBrandee\nDeja\nDiamond\nJeannie\nJerrica\nKaley\nLeandra\nMara\nMeaghan\nNikole\nPa\nRena\nRosio\nSerina\nXochitl\nYanira\nAndreina\nAndrew\nChristin\nDamaris\nEstela\nFiona\nFrancis\nGwendolyn\nJesica\nKandace\nKelsi\nKyra\nLee\nLiza\nShantel\nTeri\nTerri\nBrittnee\nGretchen\nKali\nKarly\nKrystina\nMellissa\nNikita\nPaloma\nRikki\nShea\nTierra\nTracie\nValarie\nAlex\nAnnamarie\nBrigitte\nBritany\nChristal\nDavina\nGeorgia\nJannette\nJerica\nJoelle\nKatelin\nKyle\nLyndsay\nMagali\nMarla\nMarta\nRacquel\nRichelle\nSkye\nYuri\nAlena\nAllie\nBrigette\nCassondra\nCorrina\nCory\nEmilie\nHazel\nJanna\nJesse\nKacey\nLoren\nMalissa\nMarjorie\nMireya\nMollie\nRenae\nSheri\nTarah\nTyler\nAda\nAmbar\nAnnabel\nAva\nBrittaney\nCameron\nDanae\nDeisy\nDomonique\nEstrella\nJeanne\nKaitlynn\nRosalba\nTamika\nTrina\nXenia\nAmalia\nAnjelica\nAshli\nCorey\nDeana\nDeandra\nEleanor\nFelisha\nHana\nHollie\nInez\nJeanine\nJody\nKatlyn\nKiersten\nKylee\nLakeisha\nMari\nMarlen\nMaxine\nMyrna\nPatrice\nPearl\nPhylicia\nPortia\nSusanna\nVannessa\nAja\nCallie\nCecily\nChantelle\nCherise\nDenisha\nDominque\nKirstin\nLina\nLucinda\nMaegan\nRosalia\nSharlene\nSiobhan\nSocorro\nTerry\nYesica\nAllyssa\nChristiana\nDaphne\nFarrah\nFaviola\nJessenia\nJulieta\nKaela\nKarin\nKrysten\nMandi\nPorsha\nPricilla\nRhonda\nSuzanna\nAli\nAndria\nAnnika\nAnnmarie\nAnthony\nAsha\nCathryn\nCayla\nCoral\nGianna\nHarmony\nHeidy\nJanie\nJosie\nJune\nKasandra\nKiana\nKirstie\nLatrice\nLeeann\nLesly\nLila\nMalia\nMarlyn\nRaylene\nTawni\nAida\nAnel\nAngelita\nAstrid\nCassaundra\nChanelle\nCheri\nCherish\nDalila\nDanika\nDarla\nDeidre\nDianne\nEdna\nEric\nFanny\nGinger\nGlenda\nHelena\nIda\nJaimee\nJames\nKala\nKarli\nKelsie\nKenia\nKori\nLacie\nMarcia\nMckenzie\nMelyssa\nMimi\nMinerva\nShawn\nSondra\nStephani\nXiomara\nYer\nAlia\nAngeline\nAshlyn\nAzucena\nBree\nDanna\nDarcy\nDiandra\nIleana\nIlene\nImelda\nJannet\nJenae\nJenniffer\nKia\nLauryn\nLayla\nMarian\nMatthew\nMaura\nMirella\nNereida\nRichard\nRosalina\nTahnee\nTamra\nBao\nBobbi\nBritnee\nCarley\nCharmaine\nCristine\nDanelle\nDania\nEdlin\nElaina\nEvangelina\nGiovanna\nIsabelle\nJesus\nJoselyn\nKandice\nLora\nLynda\nMckenna\nNidia\nPrincess\nRaven\nRoberta\nShanae\nShante\nTawnya\nVannesa\nAmparo\nAriane\nAyla\nBobbie\nCari\nCrista\nDesire\nElana\nElia\nElida\nElsie\nErendira\nEster\nGeneva\nIndia\nIsis\nJalisa\nJanett\nJovanna\nKaci\nKassie\nKrystin\nLisset\nLoretta\nLupe\nMargie\nMarilynn\nMarsha\nMellisa\nMirian\nOfelia\nPriscila\nWhitley\nYazmin\nYuliana\nAlesha\nAlix\nAnalisa\nAnastacia\nAnnalisa\nCambria\nCarlie\nCaryn\nClare\nConcepcion\nDenice\nEloisa\nFernanda\nJazzmin\nJohn\nJuliet\nKeila\nKeshia\nKortney\nKristian\nLoni\nMadelyn\nMariadejesus\nMikayla\nMonet\nNicolle\nNubia\nRosamaria\nRosana\nSequoia\nSherri\nStacia\nTayler\nTess\nTrista\nUrsula\nYasmine\nAdela\nAlecia\nAnnemarie\nAntionette\nAubree\nAustin\nBillie\nCarli\nCody\nDarline\nDena\nDenae\nElysia\nEve\nGisela\nGracie\nJacquelin\nJazmyn\nJeniffer\nJonathan\nJuliette\nKalie\nKaryn\nKati\nKenya\nLucille\nLynsey\nMalinda\nMalorie\nMarcy\nMarianna\nMikaela\nNellie\nNoemy\nPatty\nPetra\nPhoebe\nRacheal\nRachele\nRayna\nReanna\nRosalyn\nRoseann\nRoseanne\nSalena\nScarlett\nSue\nSuzette\nUnique\nYanet\nAllegra\nAlysa\nAlyssia\nAvery\nBridgett\nBrittnie\nBrook\nCathleen\nChristi\nColette\nCrystle\nDani\nDestinee\nDolly\nElyssa\nFallon\nFlorence\nFranchesca\nFrankie\nGricelda\nIsela\nJayne\nKailey\nLilly\nLizett\nLizzette\nLouise\nMarilu\nMildred\nMina\nNallely\nPeggy\nRiley\nRina\nRobert\nSheryl\nSunny\nTamar\nTanesha\nTera\nTherese\nWinnie\nAlisia\nAnnelise\nAshlei\nBryana\nCarlos\nCindi\nCorrine\nCristian\nDannielle\nDayana\nDoreen\nEstefania\nIlana\nJanee\nJeannine\nJenee\nJohnna\nJustin\nKalyn\nKatheryn\nKaylyn\nKerrie\nKevin\nKimber\nLilliana\nLisbeth\nLucero\nMargo\nMarquita\nMichell\nMoriah\nSamatha\nSaray\nSean\nSelene\nShira\nStefany\nYecenia\nAllysa\nAmaris\nAnahi\nAni\nAnissa\nAurelia\nAyesha\nCollette\nDaniele\nDara\nDeirdre\nEstella\nGemma\nIlse\nIsaura\nJeanna\nJoleen\nJoni\nJoseph\nKailee\nKarlie\nKatlin\nKay\nKeely\nKrystine\nLianna\nLindy\nLinh\nLucerito\nMaile\nMaryam\nMarylou\nMarysol\nNathaly\nPatsy\nPaul\nRosalva\nRyann\nSaira\nSamara\nSaundra\nShari\nStevi\nTaja\nTatianna\nTory\nZoila\nAlysse\nAnamaria\nAnh\nAreli\nBrieanna\nCora\nCorissa\nDanyelle\nDaryl\nEvangeline\nGema\nHaylee\nItzel\nJackelyn\nJaquelyn\nJasmyn\nJeana\nJessyca\nJulian\nJuliann\nKady\nKayleen\nLadonna\nLarisa\nLeana\nLeonela\nLizabeth\nMariaelena\nMariella\nMarion\nMarleen\nMattie\nMeghann\nMonisha\nNavil\nNayeli\nNisha\nOctavia\nPriya\nRoni\nSheree\nTami\nTasia\nThelma\nVerenice\nZulema\nZulma\nAlise\nAnya\nArely\nBreeann\nBrian\nBrisa\nBrittnay\nBrynn\nCarmela\nCelena\nCinthya\nClaribel\nCorie\nDanette\nDebora\nDeidra\nDelfina\nEmilee\nHallie\nHolli\nJacob\nJacquelynn\nJaneth\nJannie\nJenessa\nJennyfer\nJerika\nJesika\nJuan\nJulieann\nKa\nKarisa\nKaylene\nKaylin\nKenna\nKyrie\nLani\nLeigh\nLeigha\nLeonor\nLilibeth\nLisamarie\nLois\nLuisana\nLynnette\nMagen\nMalisa\nMallorie\nMariko\nMarivel\nMarkie\nMelodie\nMika\nMitzi\nNeyva\nPang\nPhyllis\nPorsche\nRaechel\nRosaura\nRosita\nSaida\nSascha\nShameka\nShanel\nShasta\nSirena\nSusannah\nTashina\nTristan\nValentina\nVickie\nWendi\nAdriane\nAlejandro\nAnika\nAnnabelle\nAntonette\nAshlynn\nBritteny\nCandi\nCandis\nCarmina\nCharissa\nChaya\nChina\nCydney\nDaizy\nDallas\nDennise\nDestinie\nFrancisco\nGreta\nHeaven\nIsabella\nIvana\nJazmyne\nJenni\nJessi\nJovita\nKaitlan\nKathryne\nKaycee\nKellen\nLogan\nLouisa\nMaranda\nMarci\nMarguerite\nMark\nMarrissa\nMayte\nMercy\nMyesha\nNeda\nNicholas\nNicholle\nNohemi\nPilar\nRaeann\nRaina\nRhea\nRomina\nRonni\nRosalind\nRosanne\nRoseanna\nRubi\nShanee\nShani\nShanika\nShavonne\nSoledad\nStarla\nSusanne\nSusy\nTawnee\nTawney\nTenaya\nThea\nVania\nWanda\nYasmeen\nYen\nYeraldin\nYuriko\nAcacia\nAgnes\nAlejandrina\nAlesia\nAmi\nAn\nAnjali\nAnnalise\nAura\nBabygirl\nBerta\nBritny\nCamila\nCandyce\nChelsi\nCintia\nClarice\nCodi\nCorine\nCristy\nCyrstal\nDelmy\nElba\nErnestina\nEryn\nEstephanie\nEugenia\nFawn\nFlora\nGrisel\nJammie\nJaney\nJasmyne\nJolie\nJoslyn\nKaelyn\nKelcie\nKelsea\nKeren\nKiera\nKristan\nKyndra\nLacee\nLaila\nLanette\nLaquisha\nLaquita\nLillie\nLisett\nLissett\nMadalyn\nManuela\nMargot\nMeggan\nMicah\nNakita\nNatassia\nNgoc\nNhi\nNia\nNichelle\nNiki\nPorscha\nRaisa\nRaychel\nSabina\nShaniece\nShay\nSky\nSkylar\nSpencer\nStephenie\nTatum\nTeena\nTeresita\nThuy\nTimothy\nTrang\nVanna\nVianca\nXochilt\nYahaira\nZenia\nAdina\nAide\nAmberly\nAmina\nAmira\nArianne\nAubrie\nAundrea\nBrandon\nBriseida\nBritta\nCameo\nCarey\nCarlee\nCarole\nCarolyne\nChanell\nChannel\nCorrie\nCruz\nDanyel\nDeisi\nDelaney\nDemetria\nDeonna\nDevina\nDevyn\nDeyanira\nEboni\nEdlyn\nElicia\nErinn\nEstefany\nEvette\nGabriel\nGena\nHaydee\nInes\nJacquelyne\nJan\nJanai\nJaniece\nJenica\nJesseca\nJodie\nJorge\nJulienne\nKacy\nKadie\nKaleigh\nKami\nKarie\nKarlee\nKaylen\nKayley\nKiara\nKierra\nKimiko\nKindra\nKymberly\nLakesha\nLeena\nLeona\nLianne\nLinnea\nLondon\nLuis\nMagda\nMarcelina\nMarcie\nMaryanne\nNatalee\nNereyda\nNou\nPenny\nPhuong\nPooja\nPorcha\nQuinn\nRachell\nRaelene\nReena\nRossana\nRoxane\nRoya\nSahar\nSarena\nShanda\nShanelle\nShantell\nShara\nShaunna\nShyla\nSindy\nStarr\nStephaine\nSynthia\nTameka\nThania\nTonia\nTonisha\nTorrey\nTosha\nTravis\nTrinity\nValencia\nVera\nVictor\nVilma\nWesley\nAdeline\nAfton\nAhsley\nAmada\nAnalicia\nAndra\nAndreana\nAnnamaria\nAnnel\nAntonio\nArleen\nAubry\nBenjamin\nBianka\nBlake\nBrittini\nCamilla\nCarolann\nCasie\nCelene\nCeline\nChana\nChanda\nChantell\nCharleen\nCharles\nChastity\nCheyanne\nChiara\nCourtnie\nDanisha\nDeena\nDevan\nDeysi\nDionna\nElina\nElisabet\nEllie\nEstelle\nFelecia\nGia\nJalissa\nJanny\nJavier\nJeanie\nJenell\nJeremy\nJordana\nKalia\nKarena\nKasie\nKaylie\nKeeley\nKenisha\nKisha\nKlarissa\nKorina\nKrystyna\nKyrsten\nLakisha\nLeia\nLinsey\nLisseth\nLiz\nLynne\nMarika\nMarin\nMarlee\nMarycruz\nMerissa\nMidori\nMinna\nMira\nMuriel\nMyeisha\nMyeshia\nMyisha\nNakia\nNeha\nNeiva\nNickole\nNuvia\nPalmira\nRaelyn\nRana\nRashelle\nRhianna\nSacha\nSahara\nSharde\nSharina\nShelli\nSherrie\nShiloh\nSteven\nTeal\nThomas\nTiera\nTisha\nTyra\nVanity\nWilliam\nWindy\nZaira\nAaron\nAbbey\nAdelaida\nAlayna\nAlexi\nAlixandra\nAliza\nAmara\nAndriana\nAngella\nAraseli\nArcelia\nAriella\nArmida\nBaby\nBeatris\nBlythe\nCaitlan\nCaprice\nCarin\nCarmel\nCelestina\nCharlee\nChasity\nCherry\nChoua\nChynna\nCristin\nDaniell\nDanyell\nDaysi\nDelores\nDinora\nDionne\nDorian\nEdwina\nElizabet\nEmmy\nEstefani\nEvan\nGiana\nIman\nJacklynn\nJacque\nJamika\nJazzmine\nJenise\nJocelynn\nKai\nKalina\nKallie\nKaterina\nKathlyn\nKatia\nKatina\nKaylah\nKellee\nKera\nKiley\nKristiana\nKrizia\nLakeshia\nLanae\nLatonya\nLeeanne\nLissa\nLivier\nLuciana\nLucila\nMaia\nMalori\nMaral\nMargaux\nMariaguadalupe\nMaricella\nMarielle\nMarisha\nMaritsa\nMarley\nMele\nMercedez\nMichal\nMiguel\nMy\nNatashia\nNydia\nPenelope\nPolly\nPorche\nRonda\nRonisha\nSamira\nSana\nSarita\nShae\nShala\nShalonda\nShanell\nShaunte\nShawnee\nSommer\nStacee\nSteffanie\nStephine\nSuzan\nTabetha\nTam\nTenisha\nThu\nTierney\nTiffiny\nTristen\nTristin\nVeronique\nYanine\nYuka\nAbril\nAdelina\nAleah\nAline\nAmethyst\nAria\nAshlea\nBaylee\nBerlin\nBrett\nBria\nBrie\nBrigid\nBrittanee\nBrooklyn\nBryn\nCami\nCarmelita\nCatarina\nCatlin\nChanning\nChau\nChelsy\nClarisa\nDaisey\nDakota\nDarci\nDarcie\nDeedee\nDeseree\nDestiney\nDonielle\nEbonie\nEdgar\nElla\nElysa\nElysse\nEmely\nErikka\nFalisha\nFarah\nFaye\nFelicity\nGail\nGilda\nGisel\nGisele\nGuillermina\nHali\nHanh\nHortencia\nIdalia\nIesha\nJacinda\nJamee\nJamesha\nJamila\nJanina\nJannelle\nJasmina\nJaymie\nJessicca\nJina\nJohnisha\nJoi\nJordyn\nJovana\nJuliane\nJulisa\nKaitlen\nKalani\nKameron\nKamille\nKandis\nKanisha\nKarol\nKarrie\nKassondra\nKatherin\nKattie\nKaycie\nKendal\nKenneth\nKeyla\nKristel\nLanisha\nLarae\nLatanya\nLaureen\nLinette\nLinna\nLola\nLorna\nMario\nMarkita\nMaryjane\nMee\nMena\nMisti\nMonserrat\nMontana\nNaima\nNalleli\nNiccole\nNika\nParisa\nPatrick\nPerlita\nRashell\nRayleen\nRebekka\nRenita\nRoberto\nSable\nSage\nSamone\nSee\nShamika\nShannel\nShannen\nSharayah\nShardae\nSharee\nSharla\nSharleen\nShavon\nShawnta\nShoua\nSidney\nSoraya\nSteffany\nStephania\nSterling\nSuzie\nSydnie\nTalisa\nTawnie\nTiffaney\nTran\nVeronika\nVianney\nWhittney\nYoana\nZachary\nZahra\nZuri\nAbbie\nAdam\nAdelaide\nAdele\nAdreana\nAlan\nAlberto\nAlexsandra\nAlyce\nAlyshia\nAmberlee\nAmee\nAnakaren\nAnamarie\nAngelia\nAngelic\nAnhthu\nAnisa\nAnisha\nAryn\nAshanti\nAshle\nAyana\nBailee\nBenita\nBerenise\nBeronica\nBrandice\nBreeanna\nBreonna\nBrieana\nBrielle\nBryan\nCallan\nCandance\nCandida\nCarlene\nCassi\nCesilia\nChampagne\nChante\nCharlena\nCherelle\nChris\nChristianna\nChrystina\nColby\nCrysta\nCyndi\nDafne\nDaryn\nDeserie\nDesiray\nDesirea\nDeziree\nDonisha\nDrew\nEcho\nEilene\nElora\nElysha\nEmber\nEulalia\nGenessis\nGenna\nGeri\nGisselle\nGladis\nHellen\nHolland\nHong\nIlda\nImani\nIndira\nIsabell\nIvanna\nJacklin\nJacquline\nJacqulyn\nJamia\nJanelly\nJannett\nJaquelin\nJason\nJehan\nJenevieve\nJeni\nJenine\nJeri\nJerry\nJo\nJocelyne\nJonelle\nJonna\nKaelin\nKaryna\nKassi\nKavita\nKaya\nKayli\nKaylynn\nKaytlin\nKeandra\nKeanna\nKeli\nKellyn\nKeona\nKerstin\nKeyana\nKeyanna\nKianna\nKirby\nKrysti\nLaci\nLakia\nLaporsha\nLeeanna\nLesli\nLindley\nLindsy\nMacy\nMaddison\nMallori\nMalory\nManuel\nMarbella\nMarkesha\nMarlin\nMartin\nMartine\nMarybel\nMarygrace\nMarylin\nMayraalejandra\nMeilani\nMelia\nMi\nMichela\nMiesha\nMindi\nMiracle\nMonic\nMontserrat\nMychal\nNadya\nNakisha\nNary\nNeiba\nNicki\nNinfa\nNoelia\nNorah\nNoreen\nOliva\nOriana\nOyuki\nPuja\nQueena\nQuiana\nRabecca\nRamon\nRaya\nRebecka\nRemy\nRoxann\nRoxie\nRuthie\nSalome\nSandi\nSarahi\nSarrah\nSavana\nShane\nShaniqua\nShannan\nShaquita\nSharron\nShawnice\nShawntel\nShaylene\nShaylyn\nSheela\nShenelle\nSheng\nShereen\nShoshana\nSienna\nSimona\nSkyler\nSteffi\nStormy\nTaleen\nTannia\nThanh\nThao\nTrinidad\nTyesha\nVaness\nVi\nVianey\nYareli\nYomaira\nYuridia\nZoua\nAbilene\nAkilah\nAmanada\nAmmy\nAnalise\nAndrina\nApryl\nArgelia\nArlette\nArlin\nArmando\nArmine\nAshleyann\nAzalea\nBella\nBlaire\nBlia\nBliss\nBrienna\nBritani\nBritt\nBrittanny\nBrittiany\nByanca\nCaley\nCandelaria\nCarolynn\nCarrissa\nCesia\nCharisse\nCharla\nCharli\nChelsee\nChenoa\nCherrelle\nChrissy\nChristyn\nClair\nClaudine\nCleo\nColeen\nCourtnee\nCyndy\nDaisha\nDanya\nDarcey\nDarleen\nDasha\nDeicy\nDemetra\nDemi\nDenys\nDeondra\nDesarae\nDestini\nDevonna\nDominica\nDung\nDustin\nDusty\nEleni\nElsy\nEmalee\nEriko\nErlinda\nEvelia\nFay\nGenoveva\nGigi\nGizelle\nGregoria\nHaidee\nHailee\nHalie\nHang\nHarpreet\nHelene\nHerlinda\nHerminia\nHollyann\nHoua\nIrais\nJaclynn\nJamela\nJamisha\nJanea\nJaymee\nJeanelle\nJenay\nJenice\nJennelle\nJennica\nJoel\nJoella\nJosette\nJourdan\nJoycelyn\nKalynn\nKandyce\nKao\nKareena\nKarinna\nKarolyn\nKathie\nKatya\nKayci\nKellye\nKelsy\nKhadijah\nKimberlie\nKiran\nKiri\nKitty\nKodi\nKristena\nKristle\nLan\nLanesha\nLaquesha\nLarhonda\nLashay\nLaticia\nLatina\nLawren\nLeela\nLeighann\nLeora\nLeslee\nLetitia\nLibby\nLisandra\nLiset\nLissete\nLizzet\nLizzett\nLolita\nLoraine\nLorene\nLorie\nLorissa\nMaegen\nMalina\nManda\nMandeep\nMaren\nMariadelcarmen\nMarialuisa\nMariann\nMaricarmen\nMarleny\nMarlisa\nMarquisha\nMarrisa\nMarsela\nMarybeth\nMaryellen\nMarylynn\nMechelle\nMelaine\nMelissaann\nMelonie\nMeryl\nMicole\nMilagros\nMitzy\nMya\nMyriam\nNga\nNichol\nNyesha\nNyssa\nOdessa\nOnica\nOralia\nPage\nPatrica\nPrescilla\nPrisma\nRae\nRaeanna\nRaeanne\nRafaela\nRandee\nRanisha\nRaymond\nRenata\nRiana\nRianna\nRoneisha\nRonesha\nRosy\nRylee\nSabra\nSammantha\nSamuel\nSantana\nSavanah\nSeana\nSeema\nSerenity\nShalene\nShanay\nShandi\nShandra\nShanise\nShanta\nSharmaine\nSharonda\nShaundra\nShaunice\nShauntel\nShela\nShelia\nSherelle\nSheridan\nSherie\nSherilyn\nShivani\nSilver\nSinead\nSona\nSotheary\nSoua\nStar\nStephen\nSydnee\nSylvie\nTaisha\nTal\nTamica\nTeagan\nTesia\nTommie\nTorie\nTracee\nTyisha\nTynisha\nVaneza\nVenus\nVivianna\nYael\nZaida\nZandra\nZaneta\nZara\nAarika\nAdena\nAdreanna\nAislinn\nAlberta\nAlea\nAleece\nAlese\nAlexzandria\nAlivia\nAllyse\nAlva\nAlvina\nAlyx\nAmarilis\nAmbria\nAmbur\nAmrita\nAnabell\nAnai\nAnali\nAndee\nAndi\nAndy\nAngelena\nAnnah\nAnny\nAntonina\nAny\nApolonia\nAshante\nAshtin\nAspen\nAsucena\nAsusena\nAudrianna\nAutum\nAya\nAysha\nBarbie\nBessie\nBessy\nBettina\nBiridiana\nBonita\nBonny\nBreeana\nBrieanne\nBrissa\nBritanny\nBritnie\nBrittiney\nByanka\nCalli\nCandie\nCandise\nCandiss\nCarrisa\nCary\nCasara\nCassia\nCathrine\nCaylee\nCendy\nChanae\nChanice\nChardae\nCharise\nCharisma\nChase\nChauntel\nChenelle\nCheree\nCherice\nChristianne\nChrysta\nClorissa\nContessa\nCoreen\nCorin\nCornelia\nCorrin\nCortni\nCortnie\nCourteney\nCriselda\nCristen\nCrystina\nCyntia\nDanita\nDanny\nDaria\nDarnisha\nDavida\nDawna\nDeanne\nDer\nDesaree\nDeserae\nDeva\nDeysy\nDixie\nDonelle\nEdelmira\nEduardo\nElisia\nElle\nEllesse\nEllyn\nEma\nEmelia\nEnedina\nEssica\nEvelyne\nFelicitas\nGayle\nGeorgette\nGianina\nGiavanna\nGinny\nGiovanni\nHaleigh\nHira\nHoa\nIvory\nJackelin\nJackqueline\nJada\nJalessa\nJalyssa\nJanene\nJanielle\nJanira\nJaspreet\nJeanett\nJeanice\nJeffrey\nJenette\nJennah\nJeraldine\nJhoana\nJillianne\nJimena\nJoline\nJonte\nJosephina\nJulee\nJuli\nKacee\nKaily\nKailyn\nKaleen\nKanani\nKandra\nKaressa\nKarley\nKarmen\nKarri\nKasarah\nKasi\nKasia\nKasondra\nKatryna\nKaydee\nKaylan\nKaysha\nKaytie\nKeesha\nKeiana\nKeilah\nKeira\nKelcey\nKelci\nKelle\nKeosha\nKhristina\nKimberely\nKimberlina\nKirra\nKirstyn\nKiyomi\nKrishna\nKrystel\nKyley\nLachelle\nLaneisha\nLashanae\nLashonda\nLatara\nLateisha\nLatesha\nLatosha\nLatricia\nLatrina\nLatrisha\nLetisia\nLeyla\nLezlie\nLili\nLisbet\nLiseth\nLorin\nLoryn\nLuna\nLusia\nLuzmaria\nLyndsie\nMadelaine\nMagan\nMaly\nMargret\nMariaisabel\nMarielena\nMarilee\nMariza\nMarjan\nMarkeisha\nMarnie\nMartiza\nMarya\nMelani\nMelania\nMelany\nMelony\nMelynda\nMilagro\nMissy\nMonae\nMorganne\nMyla\nMyriah\nNabil\nNanci\nNatividad\nNayely\nNelida\nNhung\nNicky\nNicola\nNida\nNitasha\nOsiris\nPassion\nPatrisha\nPia\nPiper\nPolette\nPriscella\nRandy\nRaul\nRawan\nRaynisha\nRebeka\nRenisha\nRheanna\nRia\nRiane\nRianne\nRicardo\nRonnie\nRonnisha\nRoselia\nRoselyn\nRosina\nRoss\nRubie\nRudi\nRyanne\nSachi\nSamia\nScarlet\nSeason\nShabnam\nShalise\nShalynn\nShanese\nShannell\nShanon\nShantal\nShantee\nSharay\nSharday\nSharlyn\nSharnae\nShawnna\nShilo\nShireen\nShonda\nShonna\nShyanne\nSilvana\nSintia\nSneha\nStephanee\nSulema\nSunnie\nSunshine\nTalina\nTamia\nTaneisha\nTannya\nTarin\nTarrah\nTashia\nTawanna\nTereza\nTheodora\nTiarra\nTiffanee\nTiphani\nTommi\nTreasure\nTriana\nValery\nValorie\nVan\nVanisha\nVenice\nVerna\nVienna\nVikki\nVina\nWhitnee\nXia\nXimena\nYee\nYsenia\nYurico\nYury\nZayra\nZena\nZoey\nAddie\nAditi\nAdrea\nAdria\nAdriene\nAdrina\nAidee\nAinsley\nAleecia\nAleen\nAleena\nAleesha\nAlessa\nAlida\nAlita\nAllissa\nAlly\nAllyce\nAllysha\nAlta\nAlthea\nAmal\nAmandeep\nAmando\nAmani\nAmanpreet\nAminah\nAmirah\nAmmie\nAnahit\nAnay\nAndreanna\nAngeli\nAngelika\nAngellica\nAnjanette\nAnneliese\nArica\nArin\nArline\nArti\nAshia\nAshleen\nAshlin\nAudry\nAustyn\nAyumi\nAziza\nBayley\nBethanie\nBetsabe\nBilly\nBlaise\nBranda\nBrea\nBreeanne\nBreona\nBrionna\nBrittania\nBrittiny\nBronwyn\nBrynna\nCailin\nCali\nCameryn\nCaressa\nCaresse\nCarleigh\nCarlota\nCarolanne\nCasarah\nCassara\nCassy\nCatelyn\nCatherina\nCaylin\nCecile\nCelestine\nChalise\nChalon\nChanise\nChanna\nCharlie\nCharlyn\nCharnesha\nChassidy\nChaunte\nCher\nCherisse\nCherrell\nCherrie\nCherrish\nChioma\nChristelle\nChristena\nChristna\nCiarra\nCitlali\nCristie\nDalisa\nDanesha\nDanille\nDarby\nDavia\nDavonna\nDeandrea\nDeann\nDelena\nDelicia\nDelila\nDelina\nDelisa\nDella\nDelmi\nDelora\nDenia\nDenielle\nDevora\nDezarae\nDiasy\nDinorah\nDiona\nDioselina\nDomenica\nDominic\nDominigue\nDona\nDulse\nDylan\nEdwin\nElda\nEli\nElianna\nEllyse\nEloise\nEmmanuelle\nEnid\nEnrique\nErendida\nEri\nErmelinda\nErrin\nEun\nEvamarie\nEvelina\nEveline\nEvon\nEvonne\nFantasia\nFarren\nFatema\nFelicita\nFlorencia\nFreda\nFritzi\nGao\nGiuliana\nGlenn\nGlenna\nGlory\nGregory\nHa\nHanah\nHector\nHenry\nHeydi\nHien\nHolley\nHripsime\nHuong\nIa\nIan\nIleen\nIva\nIvon\nIvone\nJaci\nJack\nJackelyne\nJacquelina\nJadira\nJaimi\nJanaye\nJanella\nJanete\nJanis\nJasdeep\nJasmeen\nJayde\nJaynae\nJeanae\nJelissa\nJenika\nJenita\nJennafer\nJennefer\nJennette\nJennine\nJeralyn\nJerri\nJerusha\nJesscia\nJesslyn\nJewel\nJiselle\nJoceline\nJoelene\nJohnnie\nJoie\nJolynn\nJosefa\nJoseline\nJovan\nJulieanna\nJulieanne\nKaeley\nKalee\nKalin\nKalisha\nKamara\nKamryn\nKang\nKarianne\nKaris\nKarleen\nKasha\nKayle\nKaytlyn\nKc\nKeena\nKeiko\nKeonna\nKeriann\nKiesha\nKieu\nKimi\nKirsti\nKomal\nKorie\nKorin\nKorissa\nKory\nKris\nKrystalyn\nKrystalynn\nKylah\nLaina\nLaney\nLasha\nLashae\nLashanda\nLashawn\nLashawnda\nLauran\nLaurin\nLavina\nLayne\nLeeza\nLeighanna\nLela\nLenna\nLeonora\nLeslye\nLexi\nLiane\nLiberty\nLigia\nLiliane\nLita\nLivia\nLizbet\nLlesenia\nLoan\nLorina\nLorinda\nLucrecia\nLuzelena\nLynae\nLyndi\nLynsie\nLyssa\nMaeve\nMahogany\nMaika\nMaisha\nMalerie\nMallary\nMandie\nMaresa\nMargeaux\nMariateresa\nMaricel\nMariele\nMarkisha\nMarnisha\nMarvin\nMaryn\nMccall\nMeagen\nMeg\nMegumi\nMelessa\nMeliza\nMerari\nMeridith\nMerry\nMichel\nMichella\nMichelleann\nMikala\nMikki\nMilissa\nMillie\nMinnie\nMisha\nMitra\nMoira\nMonalisa\nMonigue\nNacole\nNada\nNailah\nNatalya\nNatasia\nNathali\nNathan\nNatisha\nNatosha\nNena\nNeomi\nNerissa\nNhu\nNicol\nNikkole\nNissa\nNoor\nOlympia\nPaisley\nPatience\nPatrisia\nPebbles\nPegah\nPenina\nPhilippa\nPhoua\nPolett\nPoonam\nPorshay\nRaelynn\nRafael\nRandall\nRathana\nRay\nRayann\nRebekkah\nReilly\nReyanna\nRicci\nRicki\nRobbie\nRobbin\nRoslyn\nRowena\nRoyce\nRuben\nRuthanne\nSaba\nSabah\nSabreena\nSada\nSagan\nSandie\nSanta\nSapphire\nSareen\nSariah\nSayra\nSelma\nSendy\nSeng\nSeptember\nSera\nSergio\nShadae\nShaila\nShalena\nShaneice\nShania\nShanti\nSharice\nShastina\nShatoya\nShaun\nShawnda\nShawniece\nShawnte\nShayda\nShealynn\nShekinah\nSherell\nSherice\nSherita\nSheyla\nShiri\nShontel\nSiedah\nSilva\nSinai\nSindi\nSkyla\nSloane\nSoleil\nSonny\nSophy\nSparkle\nStephane\nStephanieann\nTai\nTalin\nTalya\nTamera\nTamiko\nTamisha\nTammi\nTammie\nTani\nTanika\nTarra\nTatyana\nTavia\nTawana\nTeanna\nTegan\nTerin\nTeryn\nTiffeny\nTimisha\nTiona\nTomi\nTristina\nTuesday\nTurquoise\nTyana\nTyresha\nVanezza\nVenecia\nVerenise\nVernice\nVirgina\nWhitnie\nWillow\nWilma\nXee\nXochil\nYanely\nYanin\nYeni\nYezenia\nYing\nYukari\nYukiko\nYumi\nYuriana\nYvett\nZarah\nZenaida\nZoraida\nZuleika\nZuly\nJessica\nAshley\nAmanda\nJennifer\nStephanie\nElizabeth\nBrittany\nSarah\nSamantha\nNicole\nMelissa\nMichelle\nVanessa\nLauren\nChristina\nMaria\nMegan\nDanielle\nRachel\nEmily\nAmber\nLaura\nTiffany\nRebecca\nHeather\nCrystal\nKimberly\nAlyssa\nKatherine\nAndrea\nAlexandra\nDiana\nNatalie\nCynthia\nJasmine\nSara\nJacqueline\nKayla\nErica\nCourtney\nChelsea\nVeronica\nMonica\nAmy\nErika\nNancy\nVictoria\nAngela\nChristine\nAna\nKelsey\nKelly\nLisa\nBrenda\nCassandra\nBrittney\nAlicia\nAdriana\nAngelica\nMayra\nAnna\nKristen\nAllison\nSandra\nBrianna\nErin\nJamie\nPatricia\nHannah\nMarissa\nKarina\nCaitlin\nDaisy\nMary\nKristina\nKatie\nCindy\nKaren\nYesenia\nMonique\nBianca\nKathryn\nClaudia\nShannon\nLindsey\nGabriela\nDenise\nLindsay\nCristina\nAlexis\nLeslie\nJoanna\nCatherine\nAlexandria\nKrystal\nPriscilla\nJulie\nKristin\nDesiree\nSabrina\nTaylor\nLinda\nBriana\nAlejandra\nWendy\nJulia\nGuadalupe\nMelanie\nValerie\nApril\nJenna\nEvelyn\nKatrina\nJanet\nRosa\nNatasha\nKathleen\nBrooke\nBreanna\nMorgan\nWhitney\nJeanette\nTara\nOlivia\nMartha\nRaquel\nKarla\nTeresa\nHolly\nAbigail\nGina\nGloria\nKatelyn\nJordan\nTanya\nYvette\nLeah\nJenny\nCarolina\nSonia\nAriana\nAlma\nKaitlin\nGrace\nJustine\nFelicia\nJasmin\nMaribel\nEsmeralda\nKaitlyn\nMolly\nCandice\nGabrielle\nMarlene\nMarisol\nSandy\nLiliana\nJillian\nJazmin\nNichole\nLeticia\nLorena\nCaroline\nJocelyn\nAngelina\nBlanca\nCecilia\nMeghan\nBrandi\nSusan\nAshlee\nDana\nAlison\nRenee\nTracy\nAlisha\nStacy\nCarla\nBritney\nLizette\nRachael\nCarmen\nCasey\nSophia\nIrene\nSusana\nMargaret\nIsabel\nJaclyn\nAraceli\nCandace\nKrista\nRoxanne\nMarina\nKristine\nRuth\nBeatriz\nElena\nKendra\nRuby\nKylie\nStacey\nClaire\nHaley\nHeidi\nPaige\nYvonne\nCarolyn\nBrandy\nDominique\nKara\nEmma\nMercedes\nJacquelyn\nMarisa\nJanelle\nTatiana\nTina\nDiane\nSierra\nMaritza\nNorma\nLacey\nDeanna\nKirsten\nAriel\nDaniela\nMiranda\nRobin\nAudrey\nMargarita\nRebekah\nBethany\nRocio\nTamara\nSasha\nAdrianna\nCarly\nEsther\nJuliana\nMelinda\nAlexa\nSylvia\nBarbara\nMaricela\nPamela\nMallory\nSharon\nMarie\nCamille\nTheresa\nAnne\nEva\nNina\nJazmine\nJohanna\nRachelle\nSilvia\nNaomi\nHelen\nMeagan\nArielle\nVirginia\nCarina\nMadison\nChloe\nMichele\nMiriam\nDonna\nTania\nElaine\nJanette\nNadia\nDeborah\nMarisela\nNoemi\nEdith\nJade\nAngel\nColleen\nCristal\nYolanda\nElisa\nMichaela\nMelody\nRegina\nSavannah\nAmelia\nAnnie\nCarissa\nChelsey\nVivian\nElise\nKelli\nMarilyn\nChristian\nMariana\nCarrie\nLucia\nMadeline\nYadira\nBridget\nCharlene\nDarlene\nAlice\nArianna\nDestiny\nAimee\nKristy\nAshleigh\nGriselda\nAngie\nElisabeth\nKarissa\nConnie\nJosephine\nRoxana\nSydney\nArlene\nJudith\nStephany\nKathy\nAdrienne\nLydia\nCarol\nKiara\nCharlotte\nJane\nEileen\nHayley\nTrisha\nJessie\nLizbeth\nBrianne\nJeannette\nRose\nEbony\nTabitha\nMia\nSummer\nFrances\nGabriella\nIrma\nJaime\nMaira\nPaula\nPerla\nTaryn\nAnnette\nFabiola\nLuz\nPaulina\nRochelle\nAllyson\nAnita\nBonnie\nRobyn\nShawna\nCorina\nShelby\nHilary\nCeleste\nIris\nKelley\nLily\nGenesis\nGladys\nKate\nKrystle\nNatalia\nStefanie\nClarissa\nPaola\nKellie\nSally\nElyse\nSuzanne\nAlana\nBrittani\nHillary\nJoyce\nMisty\nAutumn\nKassandra\nLizeth\nAnabel\nAnn\nChantel\nChristy\nEllen\nJaqueline\nJudy\nJulianne\nLillian\nAlissa\nAntoinette\nNathalie\nYessenia\nDaniella\nChanel\nRita\nCaitlyn\nIliana\nVicky\nCara\nNikki\nRosemary\nSofia\nAnastasia\nLorraine\nLucy\nMai\nKasey\nToni\nYajaira\nKari\nAlisa\nCassie\nCatalina\nJoanne\nJuanita\nSheila\nJoana\nKristi\nLissette\nTessa\nIvette\nLaurel\nSimone\nDebbie\nGenevieve\nGraciela\nFrancesca\nJoy\nRebeca\nShirley\nBerenice\nJanae\nJanice\nKaylee\nOlga\nTiana\nAurora\nEricka\nKendall\nTasha\nViviana\nLarissa\nBelinda\nCheryl\nDianna\nMariela\nNora\nRoxanna\nAlina\nAsia\nJacklyn\nAndreina\nSerena\nSheena\nBreanne\nCelia\nKatharine\nMeredith\nTammy\nAdilene\nBailey\nHailey\nNoelle\nBreana\nChelsie\nLeanna\nYasmin\nCortney\nDawn\nReyna\nJulianna\nKaila\nSonya\nCelina\nFatima\nJuana\nMackenzie\nViridiana\nCasandra\nDesirae\nKelsie\nAubrey\nDulce\nGrecia\nIngrid\nGeraldine\nNadine\nRandi\nBrenna\nCorinne\nGeorgina\nLisette\nHanna\nLeanne\nLori\nMaya\nMindy\nShayna\nZoe\nCinthia\nDanica\nLourdes\nValeria\nAlyson\nChrista\nSelina\nBelen\nDolores\nHilda\nJill\nTalia\nAracely\nBrittni\nCecily\nDebra\nMarcela\nBridgette\nDevin\nJennie\nSalina\nTracey\nAshly\nDevon\nNataly\nRyan\nBertha\nKaty\nMagdalena\nSophie\nAshlie\nAthena\nGiselle\nJaimie\nLidia\nRubi\nSherry\nFaith\nLatoya\nLena\nLilia\nMyra\nSarai\nShaina\nBeverly\nCiara\nMichael\nShelly\nTiara\nAlysha\nJessika\nKim\nKira\nPauline\nClara\nJanine\nFlor\nJackie\nJosefina\nMaggie\nBernadette\nDelia\nDenisse\nEunice\nKyla\nLynette\nNicolette\nShauna\nAshely\nMelisa\nReina\nRosario\nStacie\nVanesa\nAlexander\nAngelique\nKatelynn\nShayla\nAileen\nBetty\nLesley\nMelina\nStefani\nCassidy\nChantal\nChristie\nDina\nDorothy\nKerry\nStaci\nAlba\nAlexandrea\nDora\nLuisa\nTawny\nBree\nCheyenne\nEsperanza\nKeri\nLara\nLaurie\nShana\nEdna\nElvia\nFrancine\nHope\nJustina\nKrystina\nLacy\nMariah\nMaricruz\nPaulette\nShanna\nTraci\nAlanna\nElsa\nFaviola\nKristie\nKylee\nShelley\nCathy\nLucero\nMara\nStevie\nTiffani\nBrittnee\nCandy\nChrystal\nEliana\nMikaela\nMireya\nSadie\nYanira\nDamaris\nMadeleine\nMaureen\nPaloma\nPrecious\nRosalinda\nAlexia\nAlysia\nDiamond\nElissa\nElvira\nJean\nJesica\nLatasha\nLeilani\nLizet\nTanisha\nTricia\nBrittanie\nDaniel\nEvelin\nLina\nLiza\nLyndsey\nPearl\nShantel\nTiffanie\nAbby\nIleana\nJena\nKristal\nMarlena\nSade\nBeatrice\nCassondra\nCatrina\nImelda\nJenifer\nJoann\nKatlyn\nLiana\nMalia\nMeaghan\nMicaela\nPatrice\nRhiannon\nRosie\nSusanna\nThalia\nBernice\nBlair\nBryanna\nDalia\nDanika\nEden\nEleanor\nEliza\nFrancisca\nHazel\nIvonne\nIvy\nKeisha\nMarcella\nMaryann\nRene\nTonya\nTori\nAlaina\nAntonia\nBecky\nBritni\nCallie\nCherie\nJolene\nKasandra\nKayleigh\nKelsi\nLea\nSonja\nAdrianne\nAlondra\nAlyse\nCayla\nGianna\nJesenia\nKristyn\nSavanna\nSerina\nVannessa\nAnais\nCierra\nGlenda\nIsela\nJana\nJoan\nKenia\nLoren\nLynn\nMinerva\nNayeli\nOfelia\nRosalie\nTess\nAlycia\nConsuelo\nCoral\nFelisha\nJanie\nJoelle\nJose\nJulissa\nKiersten\nLana\nLupita\nMarta\nRichelle\nTerra\nYazmin\nYessica\nAlessandra\nAnnabel\nAshton\nBrigitte\nBrittny\nChristopher\nIsabella\nLeandra\nMandy\nMariel\nPricilla\nRosemarie\nSarina\nAzucena\nBritany\nDanae\nElisha\nEmilia\nEstela\nFiona\nJohana\nLeann\nLeila\nMagaly\nMonika\nRosio\nSelene\nShanice\nSusie\nTabatha\nXochitl\nAja\nAmerica\nDavid\nJesse\nKenya\nLatisha\nTierra\nZaira\nAmalia\nAshlyn\nBetsy\nBreeanna\nBrittaney\nElaina\nGiovanna\nGwendolyn\nJackeline\nJuliet\nKimberley\nMaxine\nNatali\nAmie\nCecelia\nConstance\nDayna\nGillian\nJanessa\nJayme\nKatelin\nKathrine\nKourtney\nLilian\nMelyssa\nMikayla\nPhoebe\nRamona\nSelena\nVicki\nAngeline\nDeisy\nGretchen\nHana\nKimberlee\nKristian\nMarianne\nMarlen\nPa\nTerry\nTracie\nYuliana\nAdrian\nAllyssa\nAlysa\nAnakaren\nCori\nEmerald\nJaleesa\nJanel\nJannette\nKrysta\nMagali\nMari\nMarlyn\nMartina\nMonet\nNoel\nParis\nRena\nStella\nTrina\nAlex\nAsha\nAudra\nBreann\nChristiana\nDarcy\nJannet\nJoshua\nKaela\nKirstin\nKorina\nLisbeth\nMirna\nTia\nYuri\nBobbie\nCameron\nCora\nDena\nDoris\nEugenia\nFrancis\nHollie\nJessenia\nKacie\nKarin\nKaylyn\nKyra\nLia\nMarian\nPhylicia\nRacheal\nRosanna\nSkye\nAreli\nAstrid\nAudriana\nBeth\nBrandie\nChanelle\nCharmaine\nCiera\nClare\nCorinna\nDenice\nDennise\nDomonique\nEmilie\nGeneva\nGeorgia\nJosie\nKailey\nKandice\nKiana\nMariam\nMaura\nRaven\nStephani\nTyler\nUnique\nYasmine\nYecenia\nAda\nAlyssia\nAmbar\nAnjelica\nBrandee\nBrigette\nDanelle\nDestinee\nEmilee\nEvangelina\nJami\nJanay\nJaneth\nJodi\nKaitlynn\nKali\nKarli\nKirstie\nKortney\nLauryn\nRosalia\nShanae\nSheri\nVioleta\nAdela\nAida\nAisha\nAlena\nAnahi\nAubree\nAyla\nChristin\nCory\nDavina\nDianne\nElva\nJanell\nJeannie\nJodie\nKala\nKeely\nKyle\nMalissa\nMckenzie\nMerissa\nMina\nNelly\nNikole\nRikki\nShanelle\nTianna\nAllie\nAnnalisa\nAnnamarie\nCharity\nCherish\nCorrine\nDayana\nEloisa\nElsie\nEstrella\nJamila\nJanee\nJeanine\nJenelle\nJerica\nJody\nJovanna\nKacey\nKrystin\nLeigh\nMollie\nMona\nMyrna\nRaylene\nSheree\nSiobhan\nValentina\nVenessa\nYahaira\nAva\nBryana\nChantelle\nElia\nEstefany\nJune\nKatlin\nKia\nLila\nLiset\nReanna\nSunny\nVilma\nXiomara\nAmaris\nAshli\nColette\nCorrina\nDalila\nDanyelle\nEric\nGladis\nGricelda\nIlene\nJesus\nKatheryn\nKaycee\nLynda\nMaegan\nMarjorie\nMarla\nMellisa\nMirian\nNereida\nNichelle\nPortia\nPrincess\nRoberta\nRosalba\nSamatha\nShante\nTamika\nViolet\nYanet\nAndria\nAnel\nAudrianna\nDaphne\nEdlin\nErendira\nFallon\nInez\nJenae\nJeniffer\nKarly\nKaylin\nKelsea\nKiley\nKori\nLacie\nLeeann\nLizett\nLoretta\nMarianna\nMirella\nMoriah\nPeggy\nSidney\nValarie\nAlix\nAnalisa\nAnamaria\nAndrew\nAnthony\nAntonette\nBrittnie\nCarli\nCheri\nCorey\nDarline\nElida\nElyssa\nFanny\nGabriel\nHeidy\nHelena\nJacquelin\nJames\nJanna\nJeanne\nKaleigh\nKevin\nLogan\nMadelyn\nNikita\nPriya\nSuzanna\nWinnie\nAcacia\nAlesha\nAli\nAnnemarie\nAnnmarie\nAustin\nBriseida\nBrynn\nCharissa\nDanna\nDenisha\nDominque\nGema\nHallie\nIsis\nJonathan\nKa\nKandace\nKrysten\nLilibeth\nLizzette\nLyndsay\nLynnette\nMakayla\nMatthew\nMckenna\nMichell\nNicholas\nPetra\nRacquel\nRhonda\nRiley\nRobert\nShasta\nSherri\nTawni\nTeri\nTherese\nVerenice\nAllysa\nAnika\nAnnika\nArely\nBreeana\nCassaundra\nCherise\nChristal\nCinthya\nDannielle\nDaysi\nDeja\nEllie\nFranchesca\nHarmony\nIsabelle\nJerrica\nJoselyn\nJoseph\nKaryn\nKeshia\nKiera\nLilly\nLisset\nMarcia\nNeda\nRaelene\nRenae\nRyann\nTamar\nTayler\nTonisha\nTrinity\nUrsula\nBrisa\nCarlee\nCarley\nChandra\nCody\nCorrie\nDeandra\nDelilah\nItzel\nIvana\nJalisa\nJordyn\nJuan\nJuliette\nJustin\nLatrice\nLee\nLizabeth\nLouise\nLucerito\nLucinda\nLuis\nLynsey\nMariaelena\nMisha\nPilar\nPorsche\nRaina\nRosaura\nSammantha\nSuzette\nYoana\nZulema\nAdelina\nAlecia\nAlejandro\nAmina\nAni\nAnnabelle\nAshlynn\nBreeann\nCari\nCarlos\nChelsi\nChristen\nCristian\nDaisey\nDoreen\nEstephanie\nGail\nIda\nJacquelynn\nJanett\nJaquelin\nJazmyn\nJenessa\nJessi\nKaci\nKacy\nLani\nLinh\nLisamarie\nLouisa\nLucille\nMarielle\nMarilu\nMaryam\nMercedez\nMildred\nNellie\nNicolle\nNidia\nRosalva\nRosamaria\nRosana\nScarlett\nShanell\nShea\nSoledad\nStephenie\nTami\nTerri\nVannesa\nVianca\nAllegra\nArianne\nBrieanna\nBritnee\nCamila\nCelene\nDania\nDeana\nDesire\nEstefania\nEstella\nEster\nFrankie\nGeena\nGinger\nGracie\nKaley\nKay\nKayleen\nLili\nMandi\nMarcy\nMariaguadalupe\nMarilynn\nMellissa\nNallely\nNanci\nNicola\nRosalyn\nSaira\nSarahi\nSheryl\nShyla\nStefany\nTarah\nTrang\nTyra\nValencia\nVera\nYaneli\nAdriane\nAlisia\nAnastacia\nAriane\nBrandon\nBridgett\nCarlie\nCathleen\nDeena\nDemetria\nDenae\nElla\nEmely\nEryn\nEve\nJackelyn\nJacquline\nJaymie\nJohn\nKallie\nKayley\nKerri\nLakeisha\nLupe\nMallorie\nMarcie\nMariadejesus\nMarion\nMay\nMimi\nPatty\nPriscila\nRaisa\nRayna\nRebecka\nRhea\nRoseanna\nRoya\nSabina\nShamika\nSherrie\nSteffanie\nSunshine\nThelma\nVania\nWanda\nWilliam\nYer\nAlejandrina\nAlia\nAmi\nAnai\nAndriana\nAnh\nAntionette\nBabygirl\nBrian\nBrittnay\nChantell\nCherelle\nDaniele\nDarci\nDelaney\nDevan\nEboni\nEvelia\nFarah\nGisela\nJaimee\nJewel\nJuliann\nKarlee\nKatarina\nKaterina\nKymberly\nLesly\nLinette\nLinsey\nLiz\nLondon\nLoni\nMagda\nMarquita\nMartika\nMayte\nMonserrat\nMy\nMyisha\nPorsha\nRaechel\nRonisha\nRosalina\nShani\nSharlene\nShawn\nStacia\nSue\nTatianna\nTera\nTrinidad\nVianey\nVictor\nWendi\nXenia\nYasmeen\nYesica\nAlesia\nAlise\nAlora\nAlva\nAmberly\nAngelia\nBianka\nBillie\nBlake\nCambria\nCandyce\nCarmela\nCathryn\nCharleen\nChristi\nConcepcion\nCorissa\nDanisha\nDara\nDarla\nDeseree\nElana\nEvette\nFernanda\nIndia\nIsaura\nJacob\nJasmyn\nJazzmin\nJulisa\nKailee\nKati\nKaylie\nKirby\nKrystyna\nLeona\nLianna\nLilliana\nLindy\nLucila\nLyndsie\nManuel\nMarci\nMarsha\nMaryanne\nPatsy\nRichard\nSalena\nShari\nThao\nTristan\nVan\nVenus\nVeronika\nWinter\nAmira\nAnali\nAshanti\nBria\nBritny\nCami\nCarmina\nCasie\nChante\nChyna\nCintia\nCorie\nDeidra\nDixie\nEleni\nElora\nEstefani\nFlora\nGeorgette\nGuillermina\nIlana\nJasmyne\nJaymee\nJazzmine\nJenica\nJenni\nJulieta\nKalie\nKalyn\nKaylene\nKenisha\nKeren\nKiah\nKierra\nKristan\nLeigha\nLorna\nMabel\nMaia\nMarika\nMario\nMeghann\nMercy\nMichel\nMonisha\nMyesha\nNathaly\nNisha\nPang\nPenny\nPhuong\nPorscha\nRachell\nRashelle\nRoseanne\nRoxann\nSable\nSavanah\nSean\nShantell\nSondra\nSpencer\nSusanne\nTaja\nTatum\nTawnya\nTrista\nVickie\nYuridia\nZena\nAdele\nAdina\nAlayna\nAngelita\nAnjali\nAnnel\nArcelia\nAshlea\nAvery\nBao\nBritnie\nCamilla\nCaryn\nChelsy\nClarice\nCrystle\nDarian\nDeirdre\nDorian\nDrew\nElba\nElle\nEssence\nFarrah\nJenniffer\nJennyfer\nJorge\nKarisa\nKelsy\nKerstin\nKianna\nKimiko\nKrizia\nKrystine\nLarisa\nLashawn\nLashay\nLeonela\nLora\nMacy\nMaddison\nMaile\nMakenzie\nManuela\nMargie\nMargot\nMarkie\nMarlee\nMicah\nNayely\nNia\nNika\nNoemy\nNoor\nRae\nRaeann\nRianna\nRina\nRomina\nSamara\nSamira\nSee\nShannan\nShoshana\nSindy\nSocorro\nSommer\nSydnee\nTanesha\nTenaya\nZahira\nZayra\nAdria\nAfton\nAnisha\nAnnalise\nAnnelise\nAnny\nAraseli\nAundrea\nAyesha\nBeatris\nBenita\nBrielle\nBritani\nBrook\nCaren\nCorrin\nCristine\nDinah\nElicia\nEmmeline\nErlinda\nEvan\nHaleigh\nHaydee\nIlse\nImani\nJaclynn\nJanea\nJannie\nJeanna\nJoleen\nJourdan\nJovana\nKailyn\nKalani\nKaycie\nKaylynn\nKelcey\nKiani\nKindra\nLaci\nLakesha\nLanae\nLaquisha\nLeana\nLeonor\nLisseth\nMarbella\nMarcelina\nMargo\nMark\nMattie\nMelony\nNatashia\nNicholle\nNohely\nNohemi\nNydia\nParisa\nQuinn\nRheanna\nRoseann\nSahar\nSandi\nSarita\nShaniqua\nShawnee\nShira\nShoua\nSirena\nSkyler\nStarla\nStephaine\nTahnee\nThea\nTiera\nYara\nAbril\nAdeline\nAmara\nAndra\nAubrie\nAyana\nBerenise\nBreena\nByanca\nCali\nCandis\nCatharine\nCeline\nChasity\nClaribel\nCourtnie\nCrista\nCristin\nDarnisha\nDebora\nDevyn\nDonisha\nEdgar\nElizabet\nEstelle\nGenessis\nGisselle\nHolli\nIdalia\nJaneen\nJaniece\nJanisha\nJason\nJeremy\nJesseca\nJoslyn\nJulian\nJuliane\nKarlie\nKatia\nKayli\nKeeley\nKeila\nKimberlie\nKirstyn\nKyleigh\nLadonna\nLaila\nLakisha\nLeslee\nLolita\nLuciana\nLuisana\nMakenna\nMalina\nMalisa\nMaranda\nMarguerite\nMarylou\nMika\nMilagros\nMitzi\nNatalee\nNichol\nNuvia\nOralia\nRachele\nRaelynn\nRegan\nSahara\nSarena\nSequoia\nShae\nShanda\nShanika\nShay\nSheng\nSkylar\nStephen\nSteven\nTabetha\nTashina\nTonia\nTorrey\nTran\nWhitley\nAbbie\nAgnes\nAide\nAleah\nAline\nAmada\nAmani\nAnabell\nAnamarie\nAndreana\nAngelic\nAnissa\nAntonio\nAnya\nArleen\nAshtyn\nAurelia\nBailee\nBanesa\nBerenis\nBlythe\nBobbi\nBrett\nBrittini\nBrooklyn\nBryce\nCandida\nCaprice\nCarmelita\nCarole\nCecile\nChanae\nChanell\nChee\nCherrelle\nChina\nChynna\nCindi\nCodi\nColby\nCristy\nDahlia\nDeanne\nDelmy\nDesiray\nDesirea\nDestini\nDiandra\nDinora\nEdlyn\nElisabet\nElysia\nErnestina\nEthel\nFlorence\nFrancisco\nGena\nGenna\nGiana\nGreta\nHeaven\nHortencia\nJacquelyne\nJanina\nJaquelyn\nJayne\nJazmyne\nJenee\nJohnna\nJoseline\nKamille\nKasie\nKaylah\nKristel\nLacee\nLayla\nLiberty\nLiseth\nLois\nLonnie\nLoraine\nLynne\nMagen\nMargaux\nMarine\nMarlin\nMarrissa\nMarycruz\nMee\nMeggan\nMelany\nMiesha\nMilan\nMira\nMiracle\nMiya\nMuriel\nNakita\nNatassia\nNelida\nNicollette\nNubia\nOctavia\nOriana\nPolly\nRana\nReena\nRemy\nRiana\nRonnie\nRosita\nRossana\nShanel\nShaniece\nShara\nSheridan\nSienna\nSimona\nSusy\nTalisa\nTamra\nTanika\nTenisha\nTeresita\nThanh\nTiffiny\nTory\nTyanna\nVanna\nXochilt\nYael\nZoila\nAaron\nAhsley\nAleesha\nAlexzandra\nAlyx\nAnalise\nAndres\nAngelika\nAnnamaria\nArgelia\nAria\nAriella\nArlette\nArmida\nBlaire\nBrittanee\nBryn\nCaitlan\nCarmella\nCasondra\nCathrine\nCelena\nCera\nChana\nCharla\nChelcie\nCheyanne\nChoua\nChristianne\nCourteney\nDakota\nDeidre\nDelfina\nDemi\nDeysi\nDonnisha\nElysse\nEmmy\nFrancia\nGemma\nGisel\nGissel\nGlory\nGregory\nHaylee\nHelene\nHerlinda\nHolley\nIesha\nJacinta\nJackelin\nJacquelina\nJacqulyn\nJahaira\nJamee\nJammie\nJeanie\nJennefer\nJerri\nJessalyn\nJessyca\nJosephina\nJulieann\nKai\nKandis\nKarena\nKasondra\nKellee\nKimber\nKristiana\nKyndra\nLanette\nLatonya\nLatosha\nLatricia\nLetisia\nLiane\nLindsy\nMadalyn\nMalorie\nMarivel\nMarley\nMarysol\nMele\nMelodie\nMiguel\nMitzy\nNatalya\nNeiva\nNerissa\nNhi\nPage\nQuiana\nRebeka\nRonda\nRoni\nRosalind\nRoslyn\nRyanne\nSacha\nSaray\nShanee\nSharee\nShaylee\nSherilyn\nSherrell\nSiera\nStar\nSteffany\nStephine\nStevi\nSusannah\nTameka\nTeal\nTierney\nTorie\nTristin\nTuesday\nZenia\nZuri\nAarika\nAidee\nAisling\nAkilah\nAlishia\nAlysse\nAnarosa\nAnayeli\nAngeles\nAries\nArturo\nAsusena\nAthina\nAura\nAziza\nBiridiana\nBonita\nBritteny\nBrittiny\nBryanne\nCaitlynn\nCamellia\nCameo\nCandie\nCarleen\nCarlene\nCarrisa\nCarrissa\nChannel\nCharis\nCharisse\nChase\nChastity\nChaya\nColeen\nCollette\nCruz\nDanya\nDanyell\nDaryl\nDawna\nDesarae\nDominica\nEcho\nEvonne\nFelicitas\nFrank\nGayle\nGrisel\nHali\nInes\nIvon\nJanis\nJayna\nJeana\nJeanelle\nJeni\nJo\nJocelin\nJolie\nJovita\nKaira\nKaitlan\nKalia\nKameron\nKamilah\nKandyce\nKao\nKarolina\nKarolyn\nKassi\nKassie\nKatheryne\nKathie\nKathryne\nKayci\nKeanna\nKeira\nKelci\nKemberly\nKrishna\nLacresha\nLaureen\nLeeanna\nLeighann\nLillie\nLinnea\nLisandra\nLisett\nLissete\nLizzett\nLluvia\nMalinda\nMallori\nMariadelcarmen\nMaricella\nMariella\nMariko\nMariza\nMarkeisha\nMarrisa\nMatilde\nMelonie\nMerry\nMica\nMichaella\nMidori\nMillie\nMontana\nNada\nNakia\nNatosha\nNoelia\nNou\nRaeanne\nRafaela\nSaida\nSamone\nShanon\nShantal\nShardae\nShaunice\nShavon\nShavonne\nSherice\nShireen\nSigourney\nSona\nSoraya\nStephania\nStephannie\nStormy\nTam\nTawnee\nTawnie\nTeena\nTereza\nTesia\nThomas\nTiffaney\nTorri\nTorrie\nTosha\nTyesha\nVanity\nVi\nYaquelin\nYuriko\nZabrina\nZaida\nZulma\nAdam\nAleksandra\nAlivia\nAliza\nAlthea\nAlyce\nAmal\nAmberlee\nAmethyst\nAmrita\nAn\nAnabelle\nAnalilia\nAnaly\nApolonia\nApryl\nArika\nArlyn\nAshlei\nAspen\nAubriana\nAutum\nBaby\nBaylee\nBella\nBessie\nBetsabe\nBettina\nBrea\nBrettany\nBreyana\nBrissa\nBritanny\nBrynne\nCalli\nCammie\nCandra\nCarolann\nChanda\nChandler\nChanning\nChantalle\nCharlie\nCheree\nCherisse\nChristiane\nChristianna\nCleo\nCorin\nCorine\nCourtenay\nCrystel\nCyndi\nDani\nDanita\nDanyel\nDarcie\nDaria\nDebby\nDeisi\nDeonna\nDeserie\nDevina\nDeyanira\nDionne\nDiva\nEbonie\nEduardo\nElda\nEna\nEricca\nErinn\nEstefanie\nEulalia\nEvelynn\nFalicia\nFalisha\nFelecia\nFelicity\nGeovanna\nGia\nGilberto\nGisele\nGiuliana\nHan\nHanh\nIndira\nIsha\nIvett\nJanaye\nJaney\nJavier\nJeannine\nJenise\nJennah\nJennica\nJesika\nJimena\nJocelyne\nJohnnie\nJoi\nJordanne\nJordin\nJordon\nKalee\nKandi\nKanesha\nKarah\nKassidy\nKassondra\nKathia\nKathrina\nKatina\nKattie\nKatya\nKayle\nKaylen\nKelcie\nKerrie\nKhadijah\nKierstin\nKrystyn\nLaticia\nLeesa\nLeslye\nLicet\nLissa\nLita\nLivier\nLizzeth\nLorin\nLyla\nMadelaine\nMadonna\nMaly\nManal\nMarialuisa\nMaricarmen\nMarin\nMarisha\nMarkisha\nMarlana\nMarleen\nMartin\nMarybeth\nMarysa\nMayraalejandra\nMichal\nMikaila\nMilena\nMirtha\nMisti\nMya\nNadya\nNalani\nNary\nNathan\nNereyda\nNiesha\nNuria\nOmar\nPatience\nPatrick\nPhoenix\nPhyllis\nRafael\nRanisha\nRashida\nRebekka\nReem\nReema\nRonni\nRosanne\nSaba\nSage\nSalma\nSamanta\nSantana\nSari\nSaundra\nScarlet\nSerene\nShalina\nShalisa\nShannel\nShiloh\nShyanne\nSia\nSky\nSloane\nSoleil\nSoraida\nStarr\nSteffi\nStepahnie\nSuzan\nSuzana\nSydni\nSydnie\nTaelor\nTalin\nTalisha\nTalitha\nTalya\nTamera\nTamisha\nTana\nTyisha\nValeri\nValery\nViola\nVy\nXia\nYaneth\nYeraldin\nAdara\nAdelaida\nAdelita\nAdreanna\nAdrina\nAinsley\nAislinn\nAlaura\nAleisha\nAlexi\nAlitza\nAlixandra\nAllisha\nAlvina\nAlyshia\nAmparo\nAnalaura\nAnalicia\nAndrianna\nAngelena\nAnnalee\nAriela\nAryn\nAudrina\nAurielle\nAysha\nAzalia\nBahar\nBeronica\nBranda\nBreonna\nBriceida\nBrieana\nBrienna\nBrittainy\nBrittiney\nBrooklynn\nBryan\nCailin\nCaley\nCarey\nCarin\nCarisa\nCarolanne\nCarolynn\nCassi\nCelestine\nCendy\nCesilia\nChannelle\nCharisma\nCharlee\nChelsa\nCher\nCherice\nChole\nChrissy\nClarisa\nCrissy\nCristen\nCristi\nCyntia\nDacia\nDafne\nDaina\nDallas\nDaniell\nDany\nDarby\nDarleen\nDee\nDelicia\nDelores\nDennis\nDeserae\nDestany\nDezirae\nDeziree\nDionna\nDivya\nDylan\nElina\nEllesse\nEma\nEmelia\nEnedina\nErendida\nEsthela\nEstrellita\nFantasia\nFarm\nFawn\nGao\nGiovanni\nHalie\nHattie\nHenry\nHerminia\nImari\nJacalyn\nJacinda\nJacquiline\nJael\nJanise\nJannelle\nJannett\nJazzmyn\nJeffrey\nJemma\nJene\nJenell\nJensine\nJerika\nJerrika\nJessa\nJoey\nJonelle\nJonna\nJosefa\nJuanisha\nJulio\nKadie\nKalina\nKalynn\nKambria\nKamisha\nKarie\nKarrie\nKatey\nKatryna\nKatty\nKaysha\nKeli\nKellyn\nKenzie\nKera\nKhadija\nKhrystyne\nKimberli\nKiran\nKirsty\nKomal\nKorey\nKory\nKristyne\nKyrie\nKyrstin\nLaine\nLan\nLaneisha\nLanesha\nLanisha\nLaporsha\nLaquita\nLashae\nLashonda\nLauran\nLeeanne\nLeena\nLeia\nLesli\nLetisha\nLianne\nLindsie\nLoan\nLorina\nLuana\nLyna\nMa\nMaegen\nMaeve\nManda\nMaren\nMariaisabel\nMarinna\nMarquisha\nMarybel\nMarygrace\nMaryjane\nMarylyn\nMayela\nMelynda\nMeranda\nMeryl\nMinna\nMishelle\nMistie\nMyranda\nNastasha\nNeha\nNely\nNeomi\nNhia\nNiccole\nNicholette\nNicki\nNoreen\nOsmara\nOtilia\nPhillip\nPrescilla\nPricila\nRaeleen\nRakia\nRaul\nRaychel\nRebekkah\nRian\nRicci\nRicki\nRobbie\nRoselyn\nRowena\nRoxane\nRuben\nRubie\nRylee\nSabreena\nSabrena\nSadaf\nSahra\nSaleena\nSana\nSandeep\nSarha\nSascha\nSeema\nSerenity\nSergio\nShalyn\nShane\nShaneka\nShanese\nShanita\nShanti\nShaquita\nSharina\nShaylene\nShelbi\nShyann\nSiara\nSiena\nSilvana\nSkyla\nSonali\nStormie\nSulema\nSuzy\nSymphony\nTakara\nTal\nTamarah\nTammie\nTatyana\nTawana\nTerah\nTheodora\nTiesha\nTiffney\nTimothy\nTonie\nTopacio\nTorey\nUyen\nValorie\nVienna\nYee\nYenny\nZachary\nAdena\nAdreana\nAhlam\nAissa\nAlanah\nAlexandera\nAlida\nAliya\nAllyn\nAllyse\nAmaya\nAmberlyn\nAmbrosia\nAnaiz\nAndreanna\nAndy\nAngelea\nAngelicia\nAnica\nAnitra\nAnneliese\nAntonina\nAnum\nAriell\nArlen\nArlin\nAryana\nAsley\nAtenas\nAzalea\nAzure\nBerlin\nBibiana\nBobby\nBrandice\nBrandilyn\nBreeanne\nBriahna\nBrie\nBritanie\nBrittan\nCally\nCamryn\nCandi\nCaressa\nCarmel\nCasaundra\nCassey\nCassy\nCathlene\nCecilie\nCesar\nChandni\nCharlena\nCharles\nCharley\nCharline\nCherokee\nCherry\nChiara\nChiquita\nChristel\nChua\nCiarra\nCorena\nCorrinne\nCriselda\nCrystalyn\nCydney\nDamariz\nDaneille\nDanny\nDarlyn\nDasha\nDejanee\nDelene\nDenia\nDenielle\nDeondra\nDerek\nDeshawn\nDestiney\nDevonna\nDinorah\nDolly\nDonielle\nDung\nEdwina\nEleana\nElexis\nElma\nElsi\nEnrique\nErikka\nEryka\nEssica\nFalon\nFannie\nFaye\nFelisa\nFernando\nGardenia\nGennifer\nGenny\nGenoveva\nGilma\nGinny\nGisell\nGreer\nGurpreet\nHailee\nHalley\nHarpreet\nHeba\nHector\nHoa\nHolland\nHoney\nHuyen\nIbeth\nIman\nIrasema\nIrina\nItalia\nJacelyn\nJacklynn\nJamesha\nJamisha\nJan\nJanaya\nJanira\nJanny\nJasdeep\nJaspreet\nJazmen\nJeanett\nJenette\nJennette\nJeri\nJessicamarie\nJhoana\nJimmy\nJoannamarie\nJoellen\nJohnisha\nJolynn\nJoscelyn\nJoselin\nJosette\nJosilyn\nJuly\nKacee\nKaelyn\nKaile\nKaili\nKaleena\nKally\nKareen\nKarely\nKaris\nKarishma\nKatherina\nKathlyn\nKaylan\nKc\nKeara\nKeilani\nKellye\nKendal\nKennesha\nKerissa\nKeyana\nKeyanna\nKeyla\nKhristina\nKiesha\nKilee\nKirsti\nKlarissa\nKoren\nKorie\nKorinne\nKorrie\nKorrina\nKristyna\nKyara\nKylene\nLachelle\nLainey\nLakeshia\nLane\nLaruen\nLaryssa\nLatrina\nLaure\nLavonne\nLawrence\nLeeana\nLeiana\nLeighanne\nLela\nLenora\nLien\nLilianna\nLilyana\nLola\nLorene\nLorenza\nLorissa\nLucie\nLusero\nLy\nLynae\nLyndsi\nMacie\nMadelein\nMaguadalupe\nMalaika\nMalerie\nMalory\nMariade\nMariadelosang\nMarilou\nMarizol\nMarkesha\nMarlo\nMarnie\nMarsela\nMaryssa\nMechelle\nMelaine\nMelani\nMelia\nMerari\nMicheal\nMiki\nMinh\nMitchell\nMonic\nMyeisha\nMyriam\nNabila\nNajla\nNalleli\nNaly\nNansi\nNatascha\nNatasia\nNatividad\nNavjot\nNeelam\nNga\nNickole\nNicol\nNiki\nNikia\nNikkita\nNikkole\nNoelani\nNola\nNorah\nNycole\nOscar\nPaisley\nParris\nPenelope\nPerlita\nPerry\nPhilicia\nPia\nPooja\nPorcha\nPorshia\nPriscella\nPrisilla\nRandall\nRashel\nRayanna\nRayleen\nRaynesha\nRaynisha\nReana\nRenata\nRenea\nRhianna\nRicardo\nRicky\nRomana\nRomelia\nRonica\nRoselia\nRosetta\nRosy\nRudi\nSalome\nSalvador\nSariah\nSaul\nSayra\nScott\nSelma\nSendy\nShabnam\nShadi\nShakira\nShala\nShalini\nShameka\nShanay\nShandra\nShantay\nShantelle\nSharaya\nSharday\nSharell\nSharika\nSharisse\nSharla\nSharleen\nSharmaine\nSharron\nShatoya\nShaunna\nShauntel\nShayleen\nShaylin\nShaylyn\nShelbie\nShelsea\nShereen\nSherie\nSherly\nSheyla\nShilpa\nShirin\nShivani\nShonna\nSiomara\nSiria\nSolange\nSoua\nSparkle\nSpenser\nStephanee\nSuzie\nSylvana\nTaira\nTaleen\nTanja\nTanna\nTannia\nTasia\nTawney\nTeagan\nTeanna\nTegan\nTeisha\nTeryn\nThania\nThi\nThu\nTiare\nTiarra\nTommie\nTova\nTracee\nTram\nTreasure\nTressa\nTyana\nTyresha\nTyrisha\nVerenise\nVina\nVincent\nWesley\nWhittney\nWillow\nYanina\nYareli\nYaritza\nYoanna\nYocelin\nZahara\nZainab\nZakiya\nZenaida\nZina\nZuleyma\nZully\nAbbey\nAddie\nAddison\nAdelaide\nAdreena\nAdriene\nAdrienna\nAiko\nAkila\nAlannah\nAlberta\nAlda\nAlea\nAlegandra\nAlesandra\nAlessa\nAlethea\nAlexandrina\nAlexie\nAlexsandra\nAlexx\nAlexxis\nAlexzandria\nAleyda\nAlica\nAlli\nAlyxandra\nAmanada\nAmberlynn\nAmor\nAmorette\nAnagabriela\nAnahid\nAnahit\nAnaliese\nAndre\nAndree\nAndreya\nAnette\nAngella\nAnjuli\nAnnastasia\nAnndrea\nAracelia\nAri\nAriadna\nAriadne\nArica\nArmando\nArmine\nAshante\nAshten\nAudreanna\nAudrie\nAugustina\nAuriel\nAusten\nAvalon\nAviana\nAviva\nAyanna\nAzaria\nBarbra\nBee\nBenjamin\nBerlyn\nBerta\nBethanie\nBlia\nBrigid\nBrionna\nBryna\nByanka\nCalvin\nCamelia\nCameryn\nCandelaria\nCarinna\nCarolyne\nCarson\nCatarina\nCatelyn\nCatlyn\nCerise\nChai\nChampagne\nChanny\nChantae\nChardae\nCharday\nCharice\nCharisa\nCharise\nCharlisa\nCharly\nCharnae\nChelsee\nCherilyn\nChi\nChong\nChrissie\nChristinamarie\nChyanne\nCindia\nCinnamon\nClarisse\nClarrissa\nCorryn\nCree\nCrystelle\nCyrena\nCyrstal\nDaizy\nDalina\nDallana\nDanesha\nDanitza\nDanyale\nDarling\nDecember\nDeeanna\nDelila\nDenelle\nDenika\nDeniz\nDenys\nDenyse\nDesaray\nDiann\nDiedre\nDominga\nDona\nDustin\nDuyen\nEbonee\nEdelmira\nEgypt\nElinor\nElly\nElysha\nEman\nEmi\nEmmie\nEri\nErick\nErynn\nEvangeline\nEvelina\nEvie\nEvita\nFay\nFlorencia\nFlory\nFolasade\nGaby\nGayla\nGer\nGigi\nGlenisha\nGlenn\nGrabiela\nGrasiela\nGustavo\nHa\nHaidee\nHaily\nHarley\nHarriet\nHasmik\nHaylie\nHollyann\nHunter\nIan\nIdania\nIlda\nIleen\nIlyana\nIrais\nIvanna\nIvet\nIvey\nJacqlyn\nJalessa\nJalissa\nJalyssa\nJamaica\nJamilah\nJanai\nJanica\nJannete\nJanneth\nJaslyn\nJavon\nJawanna\nJay\nJaya\nJaycee\nJayde\nJazmene\nJelisa\nJenika\nJennafer\nJeraldine\nJesselyn\nJessyka\nJewell\nJoni\nJonisha\nJorden\nJori\nJosselyn\nJoycelyn\nJustene\nKady\nKaeli\nKailah\nKailie\nKaiya\nKalena\nKalin\nKami\nKamryn\nKanisha\nKaori\nKareena\nKarem\nKarmen\nKaroline\nKassaundra\nKatalina\nKatee\nKatelynne\nKathyrn\nKatieann\nKatja\nKavita\nKaya\nKayce\nKaylani\nKaylia\nKeandra\nKeegan\nKeiara\nKela\nKellen\nKelliann\nKelsee\nKennisha\nKeturah\nKeyona\nKhrystyna\nKiandra\nKiarra\nKimia\nKiri\nKirra\nKiyana\nKodi\nKortnee\nKourtni\nKris\nKristeen\nKristle\nKristol\nKyana\nKyleen\nKyli\nKymberlee\nLai\nLaina\nLakia\nLanita\nLaquesha\nLarae\nLatanya\nLatesha\nLauri\nLawren\nLeesha\nLetecia\nLetty\nLexie\nLeyla\nLicette\nLindsee\nLisbet\nLissett\nLizbet\nLlesenia\nLoreal\nLucretia\nLynna\nLysa\nLyzeth\nLyzette\nMacey\nMadeley\nMadina\nMadisen\nMae\nMaisha\nMaite\nMalaysia\nMandeep\nMaral\nMarche\nMarco\nMargret\nMariaesther\nMarielena\nMarily\nMarinda\nMarkiesha\nMarleni\nMarlenne\nMarlisa\nMarquis\nMarya\nMaryalice\nMassiel\nMaylin\nMckayla\nMeena\nMehgan\nMei\nMelika\nMendy\nMerisa\nMerle\nMichella\nMigdalia\nMilana\nMindi\nMinnie\nMissy\nMitra\nMiyuki\nMonalisa\nMonigue\nMontoya\nMorgen\nMyeshia\nMyriah\nNaara\nNai\nNailah\nNaima\nNanette\nNassim\nNavil\nNavneet\nNegin\nNeyra\nNgoc\nNgozi\nNguyet\nNichele\nNicky\nNidya\nNinfa\nNoell\nNyesha\nNyla\nNyssa\nPassion\nPatrica\nPatrisia\nPaul\nPayal\nPedro\nPeter\nPiper\nPorche\nPuja\nQueena\nRainey\nRaissa\nRanda\nRania\nRaymond\nRayshawn\nReba\nRebeccah\nRenisha\nRhiana\nRia\nRiane\nRisa\nRoman\nRosaly\nRosella\nRoshelle\nRowan\nRudy\nRuthie\nSahira\nSanam\nSanna\nSantiago\nSapphire\nSarahy\nSarin\nSarra\nSavana\nSebrina\nSelia\nSeng\nSerra\nShada\nShaela\nShalee\nShaleena\nShalena\nShalene\nShamia\nShandi\nShantae\nSharae\nSharayah\nSharde\nSharise\nSharissa\nSharra\nShaunte\nShawne\nShawnta\nShaya\nShaye\nSheida\nShelena\nShelia\nSherlyn\nShianne\nShiree\nShirlee\nSian\nSilva\nSina\nSinai\nSintia\nSomer\nSonam\nSophea\nSteffani\nStepanie\nStephane\nStephanieann\nStepheny\nSterling\nSteve\nStormi\nSully\nSumer\nTalar\nTamia\nTani\nTaren\nTarra\nTarryn\nTashia\nTaya\nTaylar\nTeela\nTeila\nTeressa\nTerina\nTerrisha\nTesla\nThuy\nTiffiany\nTiffini\nTiphani\nTisha\nTobi\nTony\nToya\nTravis\nTrinh\nTristen\nTristyn\nTurquoise\nTyeisha\nTynisha\nVaness\nVaneza\nVerena\nVerna\nVianney\nVivianna\nXimena\nXochil\nYamileth\nYancy\nYen\nYezenia\nYomaira\nYuriana\nZandra\nZara\nZipporah\nZoraida\nZoua\nJessica\nAshley\nStephanie\nAmanda\nJennifer\nElizabeth\nSarah\nBrittany\nSamantha\nMichelle\nMelissa\nNicole\nMaria\nVanessa\nLauren\nMegan\nChristina\nEmily\nDanielle\nAlyssa\nRebecca\nRachel\nLaura\nAmber\nAndrea\nKayla\nKimberly\nCrystal\nKatherine\nJasmine\nTiffany\nAlexandra\nHeather\nDiana\nChelsea\nCynthia\nNatalie\nJacqueline\nVictoria\nCourtney\nErica\nAna\nErika\nBrenda\nVeronica\nSara\nMonica\nNancy\nAmy\nAngela\nBrianna\nYesenia\nKelly\nKelsey\nAlicia\nHannah\nCassandra\nChristine\nAdriana\nTaylor\nSandra\nDaisy\nMayra\nAngelica\nBrittney\nAlexis\nAlejandra\nLisa\nAnna\nKaren\nBianca\nErin\nGabriela\nKarina\nPatricia\nCindy\nMarissa\nJamie\nCaitlin\nAllison\nKristen\nMary\nKristina\nClaudia\nJoanna\nCristina\nMonique\nKathryn\nJulia\nDenise\nLeslie\nWendy\nKatie\nCatherine\nBreanna\nLindsey\nOlivia\nBriana\nEvelyn\nAriel\nDesiree\nMelanie\nShannon\nAlexandria\nPriscilla\nLindsay\nGuadalupe\nJanet\nSabrina\nJulie\nMorgan\nApril\nValerie\nKristin\nKathleen\nJordan\nRosa\nBrooke\nKrystal\nJenna\nKatelyn\nLiliana\nLinda\nAriana\nKatrina\nGabrielle\nKarla\nMartha\nNatasha\nJeanette\nPaige\nJasmin\nJazmin\nGloria\nKaitlyn\nJenny\nSonia\nWhitney\nCarolina\nRaquel\nTeresa\nLeticia\nShelby\nJustine\nMolly\nGrace\nGina\nLeah\nMaribel\nAlma\nEsmeralda\nRuby\nSandy\nTara\nYvette\nMarlene\nLorena\nHolly\nCecilia\nAbigail\nKaitlin\nJocelyn\nBlanca\nMarisol\nCarmen\nAngelina\nFelicia\nIsabel\nJillian\nHaley\nEmma\nMiranda\nDana\nDominique\nIrene\nChloe\nSusan\nAlexa\nSophia\nMeghan\nCarla\nTatiana\nSusana\nMiriam\nBritney\nNichole\nBeatriz\nTanya\nCaroline\nRachael\nMargaret\nYvonne\nCandice\nAlison\nMaritza\nCamille\nMarina\nSierra\nHeidi\nRocio\nJaclyn\nStacy\nSydney\nCandace\nAraceli\nVirginia\nMariana\nStacey\nClaire\nMercedes\nCasey\nRebekah\nAshlee\nDaniela\nAudrey\nBrandi\nRenee\nKrista\nAlisha\nKylie\nJazmine\nKirsten\nTracy\nElena\nDeanna\nLizbeth\nArielle\nBethany\nEsther\nMelinda\nMarisa\nBrandy\nDeborah\nMargarita\nKristine\nKendra\nRoxanne\nKarissa\nSharon\nSilvia\nIsamar\nJanelle\nJuliana\nLizette\nMadison\nCarolyn\nNorma\nChelsey\nHelen\nTania\nCarissa\nCarly\nGabriella\nGladys\nKara\nJacquelyn\nYadira\nAnne\nAmelia\nVivian\nYolanda\nRuth\nNoemi\nSylvia\nTheresa\nPamela\nEdith\nBarbara\nDarlene\nEva\nJohanna\nCristal\nDiane\nMaricela\nMeagan\nMelody\nPaulina\nTina\nLacey\nMadeline\nCarina\nJade\nMarie\nNadia\nAdrianna\nIris\nAngel\nRachelle\nCheyenne\nPerla\nJanette\nSasha\nNina\nSavannah\nNaomi\nPaula\nConnie\nElaine\nJudith\nLucia\nLydia\nPaola\nRoxana\nTamara\nKathy\nArianna\nMarilyn\nCaitlyn\nDestiny\nMarisela\nLuz\nCarol\nElisa\nIrma\nRochelle\nKellie\nViviana\nElise\nGenesis\nHayley\nAimee\nCeleste\nHilary\nStephany\nAshleigh\nColleen\nJosephine\nGriselda\nMallory\nTessa\nAnabel\nChristian\nHillary\nAutumn\nReyna\nAlice\nAnnie\nMia\nRobin\nClarissa\nRegina\nSofia\nDonna\nJaqueline\nMichele\nSummer\nAlissa\nEllen\nJoyce\nJoana\nCarrie\nCorina\nEileen\nCharlotte\nFabiola\nKelli\nKiara\nAllyson\nJane\nMaira\nStefanie\nYessenia\nShawna\nValeria\nAngie\nBridget\nLizeth\nMariah\nBrianne\nNatalia\nRubi\nChanel\nIliana\nKassandra\nJessie\nLucy\nFrances\nArlene\nElisabeth\nMariela\nAlana\nAnn\nJaime\nKate\nKristy\nNathalie\nSerena\nTabitha\nEbony\nAdrienne\nJudy\nTaryn\nCharlene\nMai\nRobyn\nShirley\nAnita\nDevon\nEricka\nIvette\nJeannette\nKaylee\nAnnette\nKendall\nSally\nBreana\nBrittani\nRebeca\nRose\nAurora\nHanna\nMichaela\nTiana\nChristy\nFrancesca\nYasmin\nMaya\nZoe\nAubrey\nDulce\nLillian\nNora\nAdilene\nHailey\nLucero\nGenevieve\nLorraine\nRaven\nDaniella\nJuana\nKelley\nCelia\nRosemary\nAlisa\nAntoinette\nSimone\nAlina\nNataly\nNoelle\nSheila\nBailey\nGraciela\nLourdes\nMelina\nRita\nTrisha\nBonnie\nCorinne\nGiselle\nRoxanna\nCara\nCelina\nFatima\nTammy\nBerenice\nLisette\nOlga\nIngrid\nJanae\nJuanita\nJulianne\nLily\nNicolette\nCheryl\nMaricruz\nCortney\nKasey\nLeanna\nMisty\nToni\nRandi\nThalia\nAnastasia\nAsia\nCinthia\nDevin\nBertha\nKaila\nKristi\nMackenzie\nCassie\nDebbie\nSelene\nVicky\nViridiana\nChantel\nJoanne\nLarissa\nCatalina\nDianna\nKari\nDesirae\nJanice\nLena\nMagdalena\nSuzanne\nAlyson\nBreanne\nChelsie\nElsa\nKrystle\nAlysha\nBrenna\nPauline\nTalia\nBeverly\nDelia\nFaith\nBelen\nEunice\nLori\nNadine\nShayla\nAlanna\nAracely\nBrittni\nJohana\nJulianna\nMeredith\nNikki\nTess\nCasandra\nElvia\nEsperanza\nIvonne\nJustina\nLesley\nMarcela\nBernadette\nClara\nDanica\nGeorgina\nJennie\nMyra\nJoy\nSarai\nCandy\nCiara\nFlor\nKylee\nLeilani\nLuisa\nSophie\nAshly\nDolores\nKatharine\nLea\nBree\nHilda\nMindy\nBelinda\nElvira\nJill\nJulissa\nLidia\nMadeleine\nMaggie\nMichael\nSalina\nAngelique\nAthena\nChantal\nJanine\nKelsie\nMagali\nRosario\nAileen\nBridgette\nElyse\nHope\nKristal\nKristie\nReina\nDalia\nDorothy\nJordyn\nKyla\nLaurel\nAlexander\nAlondra\nBeatrice\nBrianda\nCierra\nDawn\nEstela\nJacklyn\nKirstie\nRosalinda\nSelina\nShauna\nShayna\nSonya\nJessika\nShaina\nShelly\nTasha\nJenifer\nKaty\nMarcella\nNayeli\nRhiannon\nTiara\nTyler\nYessica\nJosefina\nLacy\nLissette\nVanesa\nAzucena\nBryanna\nJose\nStacie\nAlexandrea\nAlycia\nAshlie\nDoris\nJoann\nKatelynn\nLizet\nSherry\nTia\nCathy\nChristiana\nLara\nMelisa\nShana\nAngelia\nCecily\nChrista\nJaimie\nLilian\nLynn\nMaureen\nNatali\nRyan\nSadie\nStefani\nTracey\nAntonia\nGeraldine\nGrecia\nJackie\nLoren\nPrecious\nRosie\nYajaira\nDiamond\nEvelin\nJanessa\nKenia\nSusie\nChristie\nDanika\nEstefania\nKira\nLilia\nLyndsey\nEdna\nEmilia\nKaela\nKiana\nKimberley\nAlexia\nChristopher\nConsuelo\nDamaris\nDaniel\nDina\nEliza\nFaviola\nGiovanna\nIsabella\nIvana\nJaneth\nStevie\nAlaina\nAmalia\nAnais\nDebra\nDenisse\nJessenia\nLatoya\nMicaela\nTiffani\nVioleta\nAbby\nKailey\nKristyn\nMeaghan\nTraci\nYanira\nAnnabel\nBetsy\nBetty\nBreann\nBreeana\nCallie\nEmilie\nJackeline\nKim\nMikaela\nMireya\nParis\nPatrice\nTanisha\nTawny\nBreeanna\nElisha\nIleana\nJannet\nKacie\nKayleigh\nKeri\nKrystina\nMarta\nYazmin\nAshely\nBrittnee\nCelene\nEliana\nFiona\nGianna\nKerry\nKirstin\nLeanne\nPhoebe\nSheena\nTierra\nXochitl\nBlair\nCassidy\nCharity\nFrancis\nHazel\nIzamar\nJesica\nMalia\nMarlen\nPa\nPaloma\nAllyssa\nDianne\nElissa\nLauryn\nMarla\nMirian\nShanna\nTianna\nYuliana\nZaira\nAlba\nAstrid\nBernice\nBrittanie\nConstance\nGwendolyn\nJesenia\nLia\nMara\nNoel\nStaci\nSusanna\nXiomara\nAisha\nBrittaney\nCherie\nCoral\nDayna\nDora\nEstrella\nKali\nKourtney\nLiana\nLina\nLupita\nMagaly\nMariam\nMariel\nMonika\nPricilla\nSavanna\nTiffanie\nTonya\nAlessandra\nAshlyn\nGladis\nIsela\nKatlyn\nMirna\nMollie\nTori\nAlysia\nAshton\nBrandie\nBrigette\nChantelle\nChrystal\nEden\nImelda\nIvy\nJana\nJean\nJoselyn\nKimberlee\nLana\nLynette\nPilar\nTabatha\nBritany\nCayla\nDanae\nElaina\nEleanor\nElia\nJanay\nJayme\nKasandra\nMarian\nNikole\nTerra\nAda\nAlex\nBrittny\nCameron\nFernanda\nFrancine\nFrancisca\nJodi\nKelsi\nLatasha\nMadelyn\nMerissa\nMikayla\nPhylicia\nZulema\nCorey\nDavid\nDeja\nFelisha\nJami\nKiley\nKrysta\nMandy\nMarlyn\nRoberta\nStella\nTricia\nYecenia\nAdrian\nAngeline\nAnjelica\nDarcy\nDayana\nDestinee\nGeorgia\nJalisa\nJeanine\nJoelle\nJosie\nKacey\nKandice\nKelsea\nMaura\nMinerva\nSamatha\nShanae\nTayler\nYesica\nAmerica\nAubree\nChristen\nCorrine\nDalila\nEstefani\nEstephanie\nEvangelina\nGricelda\nItzel\nJamila\nKeely\nKeisha\nNelly\nRene\nAlyse\nAnakaren\nBecky\nBeth\nBobbie\nBritni\nBryana\nElva\nGeneva\nJannette\nJesse\nJuan\nJuliet\nKaley\nKarly\nKatelin\nKenya\nLesly\nLilly\nLiza\nMalissa\nMarlena\nMckenzie\nPatsy\nRiley\nRosio\nSade\nSarina\nSelena\nSkye\nAreli\nCorrina\nDakota\nJeannie\nLisbeth\nMacy\nMari\nMartina\nMaryann\nRichelle\nSerina\nSoledad\nStephani\nTrina\nYuri\nYuridia\nAida\nAmie\nAnissa\nArely\nCecelia\nChristin\nDelaney\nEugenia\nGlenda\nJanell\nJena\nJoan\nJulieta\nKaitlynn\nKyra\nMichell\nNallely\nPearl\nVerenice\nAdela\nAja\nAlysa\nAmbar\nAudra\nCharmaine\nCora\nEloisa\nElyssa\nIsabelle\nJenelle\nKaleigh\nKatarina\nKaylyn\nKyle\nLeann\nMellissa\nNidia\nReanna\nRosalia\nVannesa\nVannessa\nViolet\nAdrianne\nAndrew\nAnnemarie\nBrigitte\nCheyanne\nCinthya\nCorinna\nDomonique\nEmely\nEmerald\nFanny\nJacquelin\nJovanna\nLeandra\nMaegan\nMatthew\nShantel\nYahaira\nYanet\nAnalisa\nAni\nCassondra\nChanelle\nClare\nCristine\nDaphne\nDevan\nEryn\nEstefany\nGillian\nIvanna\nJanie\nJazzmine\nJesus\nKa\nKiersten\nKorina\nMakayla\nMonserrat\nMoriah\nNanci\nNellie\nRikki\nRosalie\nRosemarie\nValarie\nAlena\nAnali\nAndria\nAnel\nBrittnie\nConcepcion\nDaysi\nDeana\nDeisy\nHana\nInez\nKathrine\nKristian\nLeila\nLizett\nLupe\nMarcia\nMarianne\nMay\nNereida\nOfelia\nRobert\nRosalba\nSkylar\nTracie\nTrinity\nCarley\nCory\nDelilah\nGisela\nHeidy\nJolene\nJuliette\nMarysol\nMaxine\nScarlett\nShelley\nSocorro\nSonja\nTarah\nVicki\nAnnmarie\nAyla\nBao\nBritnee\nCody\nDena\nDenice\nHaydee\nHollie\nJaimee\nJoshua\nKatheryn\nLaurie\nLee\nLeigh\nMarjorie\nNathaly\nShea\nTerry\nZuleyma\nAlejandro\nAmaris\nAnaly\nAndreina\nAnnamarie\nBritny\nBrook\nChandra\nCori\nDavina\nEllie\nElsie\nJazzmin\nJeanne\nKortney\nKrysten\nLacie\nLouise\nLuis\nMabel\nMona\nPrincess\nRamona\nSkyler\nTeresita\nTerri\nValentina\nYer\nAcacia\nAnahi\nAnamaria\nAngelita\nAnnalisa\nAriella\nAshli\nAustin\nCatrina\nCiera\nDominque\nFallon\nFranchesca\nIlene\nImani\nJanett\nJanna\nJazmyn\nJeniffer\nKala\nKaylie\nLilliana\nLyndsay\nMonet\nNicolle\nPorsha\nRacheal\nSuzette\nTamika\nVenessa\nAlesha\nAllie\nAnisha\nAnthony\nAva\nBriseida\nCarlie\nDebora\nDennise\nEmilee\nHelena\nJazmyne\nJonathan\nKalyn\nKarli\nLynda\nMartika\nMirella\nRaelene\nRayna\nRebecka\nRena\nSarahi\nSequoia\nShanell\nShari\nStefany\nThania\nTrista\nVianey\nVickie\nAlia\nAlyssia\nArianne\nAudriana\nAvery\nCarmina\nChelsi\nChina\nDannielle\nDara\nDenisha\nDiandra\nElida\nEric\nGisselle\nHallie\nJackelyn\nJanel\nJohn\nKatlin\nKaycee\nKaylin\nKeila\nKenisha\nLaila\nLondon\nLucinda\nMarilu\nMyrna\nPaulette\nShaniqua\nShelbi\nSpencer\nSunny\nTatianna\nUnique\nYasmine\nAlexi\nAli\nBianka\nBrandee\nChanell\nCharisse\nDeandra\nDeidra\nDoreen\nGinger\nGracie\nHeaven\nJames\nKayleen\nKelsy\nKrystin\nMarielle\nNia\nPriscila\nRhea\nSaira\nShanice\nShasta\nTawni\nVania\nCarlee\nCarli\nChantell\nCherise\nChristal\nCristian\nDemi\nJasmyne\nJenessa\nJerrica\nJourdan\nKarin\nKerri\nKevin\nKia\nKiera\nKirstyn\nKori\nLatisha\nLayla\nLianna\nLila\nLizzette\nMarianna\nMarsha\nMildred\nNoemy\nNydia\nRenae\nRhonda\nRosanna\nShanee\nShante\nShawn\nShyla\nSindy\nSinead\nSiobhan\nSteffanie\nSue\nSuzanna\nYoana\nAnnalise\nBrisa\nBritani\nBrynn\nByanka\nCarlos\nChante\nDesire\nDevyn\nElla\nEnedina\nFlora\nGail\nGema\nIlana\nJerica\nKaci\nKendal\nKenna\nKierra\nKymberly\nLadonna\nLogan\nLucille\nManuela\nMariadejesus\nMarkie\nMckenna\nMimi\nNavil\nNikita\nQuinn\nRosana\nRosaura\nRyann\nSalena\nTera\nTeri\nTrinidad\nVianca\nWendi\nAlejandrina\nAmara\nAmira\nAnai\nAnika\nAntionette\nBeatris\nBreeann\nBrieanna\nCarmela\nCathleen\nCheri\nDanyelle\nEboni\nEdgar\nElba\nErinn\nEvette\nFrancisco\nGeena\nIda\nJanee\nJessi\nJovana\nJune\nKaelyn\nKailee\nKarlie\nLarisa\nLiset\nLisset\nLiz\nMarycruz\nMercedez\nMisha\nNohemi\nPriya\nRosalina\nSaray\nShara\nSidney\nStacia\nStephenie\nSulema\nUrsula\nVilma\nYamilet\nYareli\nZoila\nZuleima\nAide\nAlix\nAmparo\nAnh\nAshlynn\nAurelia\nCasie\nDanna\nDeirdre\nDeysi\nElle\nErendira\nJeanna\nJennefer\nJoslyn\nJulieann\nJustin\nKandace\nLakeisha\nLatrice\nLizabeth\nLucerito\nMaryam\nNichelle\nNohely\nPatty\nPetra\nRaeann\nRaina\nRana\nRaylene\nSahar\nSamira\nShanelle\nShawnee\nSheri\nSheridan\nShira\nSuleima\nSydnie\nTalisa\nThao\nThelma\nTierney\nTrang\nXenia\nYasmeen\nZachary\nAbril\nAlannah\nAllegra\nAlora\nAnayeli\nAnnelise\nAnnika\nAntonette\nAntonio\nAsha\nAshlei\nAyesha\nBobbi\nCari\nCarlene\nCathryn\nChannel\nCharissa\nColette\nCristy\nDallas\nDania\nDeena\nElana\nEleni\nEve\nFrankie\nHailee\nHarmony\nInes\nIsis\nJayne\nJenae\nJosselyn\nKalie\nKallie\nKassie\nKayley\nKayli\nKrystyna\nLoretta\nLynnette\nMadalyn\nMaia\nMarlin\nMellisa\nMercy\nMicah\nNereyda\nNisha\nPang\nRacquel\nRina\nSamanta\nSamara\nSee\nShani\nShanika\nShivani\nSky\nStephaine\nSymone\nTanesha\nThea\nTyesha\nXochilt\nYohana\nAbbey\nAdelina\nAlayna\nAliza\nAnastacia\nAndriana\nArcelia\nBillie\nBrea\nBrian\nCady\nCambria\nCaren\nCeline\nCherish\nClaribel\nDani\nDarla\nDelanie\nHaleigh\nIlse\nIndia\nJaymee\nJewel\nKadie\nKarisa\nKelcie\nKianna\nLeana\nLeeann\nLilibeth\nLindy\nLucila\nMarcelina\nMarguerite\nMariadelcarmen\nMariaguadalupe\nMarilynn\nMarion\nMarrissa\nMeghann\nMonae\nNelida\nPage\nRachele\nRhianna\nRosalind\nRosalyn\nSahara\nSana\nShanel\nShantal\nShelbie\nSheree\nSuleyma\nTamar\nTamra\nTiera\nVictor\nWanda\nWhitley\nAgnes\nAline\nAlysse\nAmberly\nAnamarie\nAnnabelle\nAnneliese\nAraseli\nAriane\nBerenise\nBlake\nBrandon\nBrielle\nBritnie\nChasity\nChelsee\nChoua\nChyna\nCintia\nCyndy\nDaniele\nDeanne\nElda\nElicia\nElisabet\nGeorgette\nGretchen\nHaylee\nHerminia\nHolli\nJanina\nJaquelin\nJennyfer\nJoseph\nKalia\nKaterina\nKathryne\nKati\nKaylynn\nKeren\nKeshia\nLacee\nLani\nLeona\nLeonor\nLinsey\nLiseth\nLisett\nLluvia\nLouisa\nLynsey\nMagda\nMalinda\nMallorie\nMaren\nMargo\nMaricella\nMarika\nMarylou\nMiesha\nMiguel\nMitzi\nNicholas\nNicollette\nNika\nNisa\nRachell\nRosamaria\nSayra\nShamika\nSherri\nSherrie\nSondra\nSteffany\nSusy\nTameka\nTorrey\nAlecia\nAleena\nAlishia\nAnya\nAriela\nArleen\nAudrianna\nAura\nAyana\nBerta\nBridgett\nBritteny\nBrooklyn\nByanca\nCamilla\nCarmelita\nCarole\nCelena\nCourtnie\nDahlia\nDelores\nDeziree\nElora\nIman\nIsaura\nJacquelyne\nJenee\nJenniffer\nJessyca\nJimena\nJodie\nJody\nKami\nKarlee\nLauri\nLizbet\nLyndsie\nMacie\nMagen\nMarcy\nMarlee\nMaryanne\nMeggan\nMika\nMina\nMontana\nNeda\nNgoc\nNiki\nOctavia\nPeggy\nPenny\nPhuong\nPiper\nRaisa\nRebekka\nRomina\nSage\nSammantha\nSerenity\nSergio\nShakira\nShanay\nSharlene\nShay\nShiloh\nShireen\nSirena\nSteven\nTasia\nTawnya\nTenaya\nThomas\nVera\nYaneli\nYaneth\nZaida\nZara\nAlaura\nAlexus\nAmada\nAnalicia\nBabygirl\nBria\nBrionna\nBrynne\nCaitlan\nCassaundra\nCera\nChelsa\nChelsy\nCindi\nCorrin\nCourtnee\nCrista\nCruz\nCydney\nDeidre\nDeseree\nDeyanira\nEduardo\nEvan\nFarah\nGabriel\nGuillermina\nJaclynn\nJahaira\nJeana\nJeanie\nJolie\nJordon\nJosephina\nKaeli\nKandis\nKaryn\nKatlynn\nKiah\nKinsey\nKristan\nKristiana\nKrystine\nLakisha\nLeslee\nLissa\nLissett\nLyanne\nMacey\nMaddison\nMandi\nMaranda\nMariaelena\nMario\nMayte\nMele\nMelyssa\nNadya\nNatalee\nNatalya\nNatashia\nNoor\nNou\nNuvia\nPenelope\nPorscha\nRianna\nRisa\nRoxann\nRylee\nSabina\nShantell\nShoshana\nShoua\nSiera\nStarr\nStephine\nStevi\nTimothy\nTory\nValencia\nVaness\nVivianna\nYezenia\nZahra\nAlanah\nAlivia\nAlmarosa\nAlyshia\nAmina\nAngelena\nAngeles\nAriell\nAubrie\nBerlin\nBreeanne\nBreonna\nCali\nCarisa\nClarice\nClarisa\nCodi\nColby\nCollette\nCorie\nCorin\nCorrie\nDanelle\nDanette\nDanya\nDebby\nDenae\nDesiray\nDestiney\nDestini\nEdlin\nElysia\nEmelia\nEthel\nEvelia\nFarrah\nFlorence\nGenna\nGisel\nGrisel\nHolland\nHortencia\nIdalia\nIrais\nJanelly\nJasmyn\nJason\nJaspreet\nJaymie\nJenica\nJesika\nJoni\nJorge\nJoselin\nJulian\nJuliann\nJulieanne\nKacy\nKalena\nKamille\nKarie\nKarley\nKarolina\nKattie\nKayle\nKenneth\nKeyana\nKimber\nKirsti\nLashay\nLeeanna\nLili\nLillie\nLindsy\nLisseth\nLois\nLola\nLorin\nLorna\nMaile\nMakenna\nMalika\nMalina\nMalorie\nMalory\nMargie\nMarialuisa\nMarquita\nMatilde\nMeliza\nMichela\nMillie\nMira\nMyesha\nNakia\nNeyva\nNicola\nNoelia\nNubia\nPhyllis\nPortia\nRebeka\nRemy\nRheanna\nRoberto\nRonnie\nRosalva\nSacha\nSarrah\nShanise\nSheng\nSheryl\nSilva\nSkyla\nSloane\nSommer\nSteffani\nThuy\nTiarra\nTorrie\nVelia\nWindy\nYara\nAaron\nAleah\nAllissa\nAlvina\nAmi\nAnalaura\nAnalise\nAnnalee\nArmida\nAshlea\nAyanna\nBrett\nBrittnay\nCandida\nCandis\nCandyce\nCaressa\nCaryn\nCheree\nCherelle\nChristi\nDanyell\nDarci\nDaria\nDesirea\nDorian\nElizabet\nErlinda\nEvangeline\nFaye\nFelicity\nFernando\nGayle\nGemma\nGena\nGigi\nHalie\nHanh\nHenry\nHerlinda\nIan\nJacob\nJacquelynn\nJacqulyn\nJamee\nJanaye\nJaneen\nJanely\nJaniece\nJessa\nJorden\nJovita\nKalani\nKanisha\nKarrie\nKasie\nKatey\nKatia\nKaylan\nKaylene\nKeanna\nKeeley\nLanae\nLane\nLaquisha\nLatesha\nLaticia\nLisbet\nLivier\nLizzet\nLizzeth\nLora\nLoraine\nLuciana\nLucina\nMakenzie\nMaricel\nMariza\nMarleen\nMartin\nMattie\nMelaine\nMelani\nMelony\nMiya\nMyranda\nNalleli\nNhi\nNoreen\nOriana\nOscar\nPhoenix\nPolly\nRaechel\nRichard\nRio\nRonda\nRonni\nRoseanne\nRosita\nRosy\nRoya\nSandi\nSapphire\nSarita\nSaundra\nSharla\nSoraya\nStefania\nStepanie\nStephane\nStephen\nSusannah\nSuzie\nSydnee\nSynthia\nTami\nTherese\nTonia\nTosha\nVanity\nVeronika\nWinnie\nYael\nZabrina\nZenia\nAdele\nAdeline\nAhsley\nAkilah\nAlexys\nAlexzandra\nAlise\nAllysa\nAn\nAnjali\nAnnel\nApolonia\nArgelia\nAria\nAriadna\nAryn\nAshliegh\nAundrea\nAya\nBaby\nBaylee\nBelem\nBella\nBrigid\nBrittanee\nBrittini\nBryn\nCalli\nCami\nCandi\nCharleen\nCharlie\nCherry\nChristiane\nChristianna\nChrystina\nChynna\nCodie\nCorissa\nDaniell\nDaysy\nDelmy\nDeserie\nEbonee\nEbonie\nElysse\nEmmeline\nErnestina\nEstephany\nEster\nGardenia\nGreta\nHaylie\nHuong\nIndira\nIrina\nJacquline\nJammie\nJaquelyn\nJaylene\nJayna\nJenette\nJenice\nJerika\nJerri\nJessy\nJocelin\nJocelynn\nJoel\nJohnisha\nJoseline\nJulisa\nKarah\nKarena\nKarol\nKaytlin\nKierstyn\nKyara\nLatanya\nLaureen\nLianne\nLinette\nLinh\nLinnea\nLissete\nLoni\nMadai\nMalyssa\nMaricarmen\nMarizol\nMarlina\nMartiza\nMaryssa\nMilan\nMiracle\nMyriam\nNavid\nNayelli\nNayely\nNeelam\nNoelani\nOliva\nPatience\nPeter\nPooja\nPorsche\nRae\nRaeanne\nRegan\nRiana\nRonisha\nSamuel\nSean\nShandra\nShane\nShanita\nShannel\nSharae\nSharayah\nSharina\nShereen\nSong\nSoua\nStormie\nStormy\nSueling\nSully\nSulma\nSydni\nTabetha\nTalin\nTalya\nTatyana\nTegan\nTonisha\nTyra\nVan\nVi\nVivien\nXimena\nXochil\nYee\nYoanna\nYsamar\nZenaida\nAdelaida\nAdelaide\nAdina\nAdrina\nAlesandra\nAlisia\nAlva\nAmberlynn\nAmethyst\nAnabell\nAnabelle\nAnalilia\nAndreana\nAnisa\nAnnamaria\nAnyssa\nArica\nAspen\nBenjamin\nBessie\nBibiana\nBlaire\nBonita\nBreyanna\nBriann\nBrieana\nCaitlynn\nCamila\nCandelaria\nCatharine\nCesar\nChanice\nCharise\nChase\nChee\nChi\nChristianne\nClair\nCristen\nDaina\nDaisey\nDanisha\nDarling\nDarlyn\nDeonna\nDeserae\nDezirae\nDinora\nDolly\nDyana\nEdlyn\nElexis\nEllyn\nEulalia\nGiana\nGilda\nGisell\nGizelle\nHanan\nHelene\nIlliana\nIsamara\nIsha\nIvan\nJacquelene\nJaleesa\nJanai\nJaymi\nJazmen\nJeannine\nJeffrey\nJennette\nJennica\nJeri\nJesslyn\nJonna\nJordana\nJordann\nJordin\nKailyn\nKaitlan\nKalli\nKameron\nKarine\nKassondra\nKathie\nKatty\nKaya\nKc\nKeilah\nKennisha\nKeyanna\nKierstin\nKimberli\nKindra\nKirby\nKirsty\nKrizia\nKyleigh\nLai\nLainey\nLatonya\nLayne\nLeesa\nLeigha\nLenora\nLetty\nLexus\nLiane\nLibby\nLiberty\nLilit\nLisandra\nLizandra\nLorie\nLorina\nMa\nManpreet\nMarci\nMarivel\nMarleni\nMeagen\nMechelle\nMeg\nMelany\nMerry\nMichel\nMikaila\nMilagros\nMilena\nNailea\nNakita\nNeha\nNichol\nNickole\nNiesha\nNikia\nPaul\nPrisma\nRaeanna\nRoni\nRoselyn\nSabreena\nSaida\nSamia\nSarena\nSavana\nSeema\nSendy\nShanequa\nShaniece\nSharita\nShaylene\nSherell\nShyanne\nStar\nTalissa\nTalitha\nTamera\nTatum\nTeagan\nTeena\nTempest\nTisha\nVikki\nWilliam\nWinter\nYoselin\nYoua\nZainab\nZaneta\nZina\nZoraida\nAarika\nAdam\nAdriane\nAfton\nAidee\nAlberto\nAlexsandra\nAllana\nAlthea\nAlyce\nAlyssamarie\nAminah\nAmmy\nAmrit\nAnaid\nAndra\nAnja\nArlette\nArlin\nArlyn\nAsley\nAsusena\nAzaria\nBenita\nBethanie\nBetsabe\nBriauna\nBrogan\nCandie\nCandra\nCaprice\nCarlyn\nCarmel\nCasondra\nCesia\nChana\nChanda\nChaya\nChelcie\nChenoa\nCher\nChrissy\nCiarra\nCleo\nCorine\nCortnie\nCyndi\nDarleen\nDarline\nDeisi\nDejanae\nDelfina\nDemetra\nDezarae\nDinah\nDixie\nDrew\nEda\nEdit\nErikka\nEstefanie\nEstella\nFelecia\nFrieda\nGlenna\nGregory\nIesha\nJamisha\nJanea\nJaney\nJanisha\nJanneth\nJasmina\nJavier\nJelisa\nJenise\nJennae\nJenni\nJesseca\nJocelyne\nJohannah\nJohnny\nJoi\nKady\nKaily\nKaja\nKalin\nKandyce\nKaryna\nKaryssa\nKasha\nKasondra\nKassi\nKatherina\nKathlyn\nKathrin\nKaysha\nKaytlyn\nKelci\nKemberly\nKennedy\nKerrie\nKeyla\nKhadija\nKristel\nKristle\nLan\nLaney\nLaquita\nLashanda\nLashawn\nLashonda\nLatia\nLatricia\nLeia\nLeighann\nLeonela\nLeora\nLesli\nLeyla\nLindsie\nLisamarie\nLucie\nLurdes\nLynne\nMaegen\nMaly\nMarbella\nMariaisabel\nMariko\nMarilou\nMarin\nMarisha\nMarquisha\nMarya\nMarylin\nMeline\nMelonie\nMichaella\nMy\nNailah\nNatividad\nNena\nOralia\nParisa\nPrecilla\nPrescilla\nRabecca\nRaelyn\nRebeckah\nReena\nRenata\nRicardo\nRoseanna\nRoselia\nRosetta\nRoslyn\nSable\nSadaf\nSandie\nSanjuana\nShabnam\nShanea\nShaneka\nShavon\nShavonne\nShaylyn\nSiena\nSienna\nSilvana\nSivan\nSonam\nStephania\nSubrina\nSunshine\nSuzana\nSuzy\nTaelor\nTaira\nTana\nTawnie\nTeal\nTerrie\nTesia\nTesla\nTristan\nValery\nVenus\nVy\nWilma\nYanina\nYarely\nYuriana\nZoey\nAbbie\nAddison\nAdelita\nAdreana\nAdreanna\nAeriel\nAislinn\nAlea\nAleesha\nAlesia\nAlly\nAmairani\nAmani\nAmee\nAmrita\nAnabella\nAnacaren\nAnalee\nAnay\nAndres\nAndrina\nAngelea\nAngelika\nAnnalyse\nAntonisha\nAriadne\nArial\nAriele\nArlet\nAshlin\nAshtyn\nAudrie\nAustyn\nAutum\nAysha\nAzalea\nBanesa\nBanessa\nBiridiana\nBiviana\nBlythe\nBo\nBreona\nBrieann\nBritt\nBritta\nCally\nCamellia\nCarisma\nCarrissa\nCassey\nCatarina\nCatheryn\nCecila\nCelestina\nCendy\nCharis\nCharlee\nCherisse\nCherrell\nCherrelle\nChistina\nChyanne\nCinnamon\nColeen\nCorrinne\nCourteney\nCriselda\nCrystina\nDaissy\nDanny\nDarcie\nDawna\nDee\nDeicy\nDella\nDemetria\nDenis\nDer\nDestany\nDestinie\nDionne\nDona\nDonielle\nDyanna\nEma\nEmi\nEmmalee\nErick\nEryka\nErynn\nEsthela\nFelisa\nFlavia\nFreda\nGabriele\nGenessis\nGenoveva\nGlory\nGrabiela\nHadley\nHali\nHector\nHuda\nIrasema\nIvon\nJacelyn\nJackelin\nJacklynn\nJacy\nJael\nJamesha\nJanis\nJannelle\nJannett\nJasimine\nJasmeen\nJayde\nJeanelle\nJene\nJenesis\nJennah\nJessicaann\nJina\nJo\nJoey\nJohnna\nJohnnie\nJosalyn\nJosette\nJullian\nJustyne\nKaili\nKaira\nKalee\nKaleena\nKalina\nKalisha\nKamesha\nKamilah\nKandy\nKao\nKaori\nKassidy\nKathrina\nKatina\nKatja\nKay\nKeara\nKeli\nKellee\nKendell\nKendyl\nKenzie\nKerstin\nKesha\nKhadijah\nKimberlie\nKimiko\nKirin\nKisha\nKitty\nKorinna\nKortnee\nKristeen\nKristelle\nKristianna\nKristinamarie\nLachelle\nLaci\nLakeshia\nLanisha\nLatosha\nLavina\nLavinia\nLeonora\nLinzy\nLyla\nLyna\nLynnea\nMaci\nMadelaine\nMahogany\nMalisa\nMargot\nMariann\nMariateresa\nMarisabel\nMaritsa\nMarkia\nMarkisha\nMarlenne\nMarley\nMarly\nMarybeth\nMatilda\nMayda\nMegann\nMei\nMelia\nMelodie\nMeranda\nMerari\nMichal\nMicheline\nMidori\nMikala\nMikki\nMiriah\nMiryam\nMitzy\nMontserrat\nMorganne\nMyisha\nNai\nNathalia\nNemesis\nNeyda\nNyisha\nPaisley\nPassion\nPhoua\nPorcha\nPresley\nPricila\nQiana\nQuanisha\nQuiana\nRaena\nRandee\nRashida\nRaynisha\nReanne\nReilly\nRia\nRobbin\nRosenda\nRyanne\nSaige\nSalvador\nSamone\nSandeep\nSantana\nSavanah\nShaela\nShala\nShalisa\nShalonda\nShalyn\nShanda\nShanique\nShantae\nShardae\nSharee\nSheyla\nShonna\nSina\nSindi\nSintia\nSmantha\nSol\nStacee\nSteffi\nStephannie\nSterling\nTaja\nTal\nTamarra\nTanna\nTannaz\nTawnee\nTawney\nTaylar\nTeanna\nTeryn\nThu\nTiffaney\nTitiana\nTreasure\nTriana\nTyresha\nVelvet\nVianna\nVina\nWhittney\nXee\nYancy\nYeng\nYliana\nYuriko\nZakiya\nZeena\nZelene\nZulma\nZuri\nAaryn\nAddie\nAgustina\nAishah\nAlexzandria\nAllyse\nAllysha\nAlmadelia\nAlyxandra\nAmal\nAmberlee\nAnacristina\nAnaluisa\nAnam\nAnarosa\nAngeli\nAnica\nAnneke\nAnnessa\nAnny\nAntonina\nApryl\nAreil\nArlenne\nArmando\nArturo\nAshika\nAshle\nAshtin\nAsucena\nAsya\nAthina\nAudreanna\nAvonlea\nAzalia\nAziza\nAzusena\nBee\nBerlyn\nBeronica\nBettina\nBianey\nBita\nBonny\nBrieanne\nBrigit\nBriona\nBriselda\nBrittiany\nBryan\nBryanne\nBrynna\nCailin\nCapri\nCarleigh\nCarlina\nCarmella\nCathrine\nCatlin\nCaylee\nCesilia\nChampagne\nChan\nChardonnay\nCharline\nChassidy\nChristel\nClaudette\nCleotilde\nCloe\nCortnee\nCortni\nCristin\nDacia\nDafne\nDalisha\nDallana\nDanitza\nDarnisha\nDarrah\nDaysha\nDeedee\nDeepika\nDelma\nDenia\nDevi\nDylan\nEddie\nEman\nEmelyn\nEmilyann\nEnid\nErnestine\nErnesto\nEsli\nEssence\nEvelina\nEvelyne\nEvelynn\nEvie\nFantasia\nFion\nGaia\nGao\nGennesis\nGia\nGiovana\nGracy\nGrissel\nHaily\nHaruka\nHermelinda\nHoua\nIbeth\nIdania\nIlona\nIna\nIsmar\nIvett\nJacquilyn\nJalissa\nJamela\nJamey\nJanica\nJannie\nJanny\nJasleen\nJaycee\nJeannett\nJenay\nJenevie\nJenine\nJennelle\nJessalyn\nJessicamarie\nJessicca\nJessyka\nJimmy\nJissel\nJoanie\nJordanne\nJoscelyn\nJosefa\nJoslynn\nJossie\nKaitlen\nKanesha\nKareena\nKaressa\nKarri\nKarrisa\nKasara\nKassaundra\nKateland\nKatherin\nKatheryne\nKathia\nKatrin\nKatryna\nKaycie\nKaydee\nKaylah\nKeana\nKeionna\nKeira\nKeiry\nKelcey\nKelcy\nKelsee\nKera\nKeyonna\nKhristina\nKiani\nKimberlyn\nKiona\nKiran\nKiya\nKorie\nKorin\nKorri\nKyana\nKyrsten\nKyrstin\nLaken\nLakesha\nLanie\nLaporsha\nLaquinta\nLaraine\nLaronda\nLashane\nLashawna\nLatifah\nLaurin\nLavonne\nLawren\nLela\nLelani\nLenore\nLeonila\nLiandra\nLigia\nLilianna\nLilyana\nLita\nLizzett\nLlesenia\nLoida\nLorelei\nLorraina\nLucky\nLysette\nLyssa\nMadalynn\nMadelin\nMadelyne\nMae\nMagan\nMaha\nMailee\nMakaela\nMalerie\nManal\nMandie\nManuel\nMao\nMarena\nMargaux\nMarili\nMarkeisha\nMarkita\nMarlana\nMarlet\nMarlisa\nMarybel\nMarygrace\nMarytza\nMayela\nMi\nMiki\nMilissa\nMirta\nMisa\nMistie\nMonserrath\nMuriel\nMya\nMykel\nNabil\nNaila\nNanette\nNary\nNazareth\nNeftali\nNeiva\nNicholette\nNicholle\nNinfa\nNyla\nPalmira\nPatrisha\nPatrisia\nPayal\nPebbles\nPerri\nPriscella\nPrisilla\nQuincy\nRafael\nRafaela\nRaine\nRani\nRaquelle\nRaul\nRawan\nRaya\nRayanna\nRaynesha\nReba\nRebbeca\nRebekkah\nReem\nRicki\nRochell\nRonika\nRoshelle\nRossana\nRudy\nSaba\nSabra\nSada\nSalma\nSamanatha\nSamaria\nSamra\nSanam\nSarahann\nSarra\nSayda\nScott\nSeanna\nSelma\nSerene\nShae\nShaelyn\nShalimar\nShameka\nShannan\nShanon\nShareen\nSharice\nSharie\nShatara\nShaterra\nShaun\nShaunna\nShaunte\nShawnie\nShawnna\nShayne\nShera\nSherina\nShirin\nSilver\nSimona\nSneha\nSoleil\nSoraida\nSpecial\nStarla\nSusanne\nTalina\nTam\nTanaya\nTarin\nTarra\nTashia\nTashina\nTawana\nTereza\nThy\nTiesha\nTony\nTorey\nTram\nTran\nTressa\nTyneisha\nVaneza\nVashti\nVerenise\nYanely\nYasaman\nYasamin\nYing\nYuka\nYunuen\nZahira\nZarah\nZena\nZully\nAbelina\nAdara\nAdriene\nAerial\nAine\nAinsley\nAiram\nAlberta\nAlda\nAlegandra\nAleisha\nAlene\nAleshia\nAlethea\nAlexcia\nAlexie\nAlexxis\nAleyda\nAlin\nAlissia\nAlitza\nAliya\nAlizabeth\nAllanah\nAllycia\nAllyn\nAltagracia\nAlyssandra\nAlyxandria\nAmanada\nAmbrosia\nAmirah\nAnacecilia\nAnairis\nAndrena\nAngelie\nAngella\nAnitra\nAnjela\nAnjuli\nAnnais\nAnnaly\nAnthea\nAntonieta\nAnum\nAprille\nArabella\nAries\nArika\nArlen\nArrianna\nArrielle\nAshia\nAshlan\nAshleen\nAudelia\nAvalon\nAviana\nAvigail\nAviva\nAylssa\nBailee\nBarbie\nBarbra\nBelia\nBelkis\nBelle\nBenicia\nBionca\nBlia\nBliss\nBranda\nBrendy\nBriceida\nBrienna\nBrina\nBritanny\nBrittania\nBrittiny\nBrittnei\nCamerina\nCamile\nCarey\nCarin\nCarmin\nCarolann\nCarolin\nCarolyne\nCarrisa\nCary\nCatie\nCecile\nCedrina\nCelestine\nCelida\nCerise\nChanna\nChannell\nChanning\nCharisma\nCharlette\nCharly\nChau\nCherice\nCherokee\nChiara\nChioma\nChris\nChrysta\nClaudio\nColin\nConsepcion\nCordelia\nCoryn\nCosette\nCourney\nCrysta\nCrystle\nCyntia\nDaisha\nDanee\nDanesha\nDanille\nDaryl\nDashanique\nDeandrea\nDeeana\nDeeanna\nDelila\nDenay\nDenee\nDenika\nDennis\nDesarae\nDesaree\nDeshawna\nDestine\nDevina\nDiasy\nDiem\nDimitra\nDinorah\nDiona\nDionna\nDioselina\nDivina\nDivya\nDominic\nDung\nEcho\nEdelmira\nEdie\nElaura\nElectra\nElidia\nElisia\nElizeth\nEllyse\nElysa\nEmelie\nEmeline\nEmery\nErandi\nEri\nErina\nEsmerelda\nEssie\nEstrellita\nEvon\nFarren\nFaustina\nFelicitas\nFelina\nFrank\nGaby\nGenesee\nGenie\nGeovanna\nGianina\nGiannina\nGicela\nGinny\nGiovanni\nGisele\nGiuliana\nGizel\nGracia\nHa\nHaidee\nHalley\nHarleen\nHarley\nHarriet\nHattie\nHayle\nHeba\nHeide\nHellen\nHermila\nHiliana\nHina\nHollee\nHuyen\nIla\nIlda\nIlianna\nIsabela\nIsabell\nItalia\nIveth\nIvory\nJacey\nJaide\nJaimi\nJalena\nJalyssa\nJameka\nJamilah\nJania\nJanira\nJanise\nJared\nJasminne\nJassmine\nJavonna\nJazz\nJelissa\nJenea\nJennafer\nJennell\nJensen\nJensine\nJesscia\nJezabel\nJhoana\nJoceline\nJodee\nJoleen\nJori\nJoycelyn\nJudit\nJulieanna\nJuly\nKacee\nKacia\nKailin\nKaiulani\nKalei\nKamaria\nKandi\nKareen\nKarely\nKarem\nKaris\nKarolyn\nKarrin\nKasaundra\nKatelyne\nKatharyn\nKathlene\nKatrice\nKatryn\nKatya\nKayci\nKaylen\nKeegan\nKellen\nKendahl\nKerianne\nKeyaira\nKhanh\nKiesha\nKimanh\nKimia\nKiri\nKiyana\nKlara\nKlarissa\nKorey\nKourtni\nKoy\nKrisha\nKrishna\nKrislyn\nKristyne\nKrystyne\nKylene\nKymber\nKymberlee\nKyndall\nKyndra\nLacresha\nLaina\nLaine\nLareina\nLaryssa\nLashanae\nLatiera\nLatijera\nLauran\nLawanda\nLeeanne\nLeidy\nLenae\nLenna\nLesa\nLeslieann\nLetisha\nLetitia\nLexi\nLida\nLien\nLilah\nLindsee\nLisabeth\nLolita\nLonnie\nLorisa\nLorrie\nLoryn\nLuana\nLuci\nLuisana\nLuiza\nLyanna\nLynna\nLynsie\nMaayan\nMacrina\nMadelene\nMadina\nMagdalene\nMagnolia\nMaida\nMaisie\nMaiya\nMalaysia\nMana\nManda\nMandisa\nManisha\nMarco\nMaresa\nMariacristina\nMaricsa\nMarietta\nMarilee\nMarinna\nMarkesha\nMarleny\nMarli\nMarlisha\nMarnie\nMarquesha\nMarrisa\nMartine\nMarwa\nMarycarmen\nMaryelizabeth\nMaryellen\nMaryhelen\nMarylu\nMaryrose\nMayuri\nMeilani\nMelanee\nMelinna\nMendy\nMerced\nMerisa\nMerlin\nMeshelle\nMeuy\nMilagro\nMinnie\nMirtha\nMoira\nMorgane\nMyeisha\nMyrissa\nNachelle\nNahal\nNalley\nNatassia\nNawal\nNecole\nNeesha\nNely\nNerissa\nNeva\nNga\nNicki\nNicolina\nNida\nNikka\nNiloofar\nNissa\nNoa\nNoely\nNoheli\nNorah\nNoura\nObdulia\nOdessa\nOlympia\nOsiris\nParissa\nPatrina\nPhung\nPriyanka\nQuyen\nRachal\nRaeleen\nRaelynn\nRainie\nRaiza\nRandy\nRanisha\nRasheeda\nRashel\nReana\nReann\nRebeccah\nRianne\nRima\nRomy\nRonesha\nRonica\nRosalynn\nRosina\nRossy\nRowena\nRoxane\nRuben\nRubie\nSabrena\nSamanth\nSamera\nSantina\nSaori\nSaralyn\nSascha\nScarlet\nSenaida\nSera\nShakiyla\nShalamar\nShaleen\nShalena\nShalene\nShalina\nShalini\nShanece\nShanesha\nShannen\nShantelle\nSharde\nSharleen\nSharnell\nSharonda\nSharrell\nShauni\nShaunice\nShavonna\nShawntell\nShaye\nShaylee\nShaylynn\nShefali\nShelli\nSherie\nSherine\nSherrell\nShiann\nShiree\nShirelle\nShiva\nSigrid\nSloan\nSolina\nSoo\nSpring\nStasha\nStephanee\nStephanieann\nStephnie\nStorm\nStphanie\nSumer\nTahlia\nTalar\nTaleen\nTali\nTalisha\nTamisha\nTanay\nTaneisha\nTannya\nTaren\nTarryn\nTatjana\nTaylour\nTeara\nTenisha\nTerah\nTessie\nThanh\nThi\nTien\nTiffanee\nTiffini\nTiffney\nTila\nTkeyah\nTorie\nTrevor\nTuyen\nTwila\nValeri\nVanessamarie\nVanisha\nVannia\nVelma\nVenecia\nVerena\nVeronique\nVianney\nVienna\nWaynisha\nWendie\nWesley\nWillow\nWitney\nWynter\nXavier\nYamileth\nYaquelin\nYenny\nYoshiko\nYsenia\nYu\nYuridiana\nYuritzy\nYury\nYvanna\nZarina\nZoya\nJessica\nAshley\nStephanie\nJennifer\nAmanda\nElizabeth\nSamantha\nSarah\nMelissa\nMaria\nMichelle\nBrittany\nNicole\nVanessa\nLauren\nMegan\nChristina\nEmily\nRachel\nDanielle\nJasmine\nRebecca\nLaura\nAndrea\nAlyssa\nKimberly\nKayla\nAlexandra\nKatherine\nChelsea\nCrystal\nVictoria\nAmber\nJacqueline\nCynthia\nNatalie\nDiana\nAna\nNancy\nTiffany\nSara\nBrenda\nErica\nMonica\nKelsey\nTaylor\nVeronica\nErika\nCourtney\nHannah\nHeather\nAmy\nAlexis\nBrianna\nShelby\nGabriela\nAdriana\nDaisy\nAlejandra\nAngelica\nAngela\nJulia\nMayra\nYesenia\nCassandra\nKarina\nMarissa\nChristine\nKaren\nKelly\nAlicia\nAriel\nSandra\nCindy\nBianca\nMary\nPatricia\nClaudia\nAnna\nMariah\nAlexandria\nBrittney\nAllison\nLisa\nErin\nLeslie\nJamie\nCaitlin\nCatherine\nCristina\nMonique\nBriana\nOlivia\nKathryn\nSabrina\nBreanna\nKatie\nKristina\nKristen\nWendy\nDenise\nPriscilla\nEvelyn\nBrooke\nLindsey\nJoanna\nDesiree\nGuadalupe\nShannon\nMelanie\nApril\nValerie\nJulie\nMorgan\nKarla\nJanet\nJenna\nJordan\nJazmin\nAriana\nLinda\nLindsay\nHaley\nMolly\nRosa\nPaige\nJeanette\nKatelyn\nGabrielle\nKrystal\nKathleen\nLiliana\nJasmin\nRaquel\nYvette\nSonia\nMarlene\nRuby\nAbigail\nMartha\nJenny\nJocelyn\nAlma\nGloria\nTeresa\nMiranda\nCarolina\nCecilia\nMarisol\nKatrina\nGrace\nDominique\nVivian\nTara\nEsmeralda\nNatasha\nKristin\nKaitlin\nIsabel\nLorena\nKaitlyn\nSophia\nLeah\nDaniela\nCarmen\nMadison\nMaritza\nEmma\nMaribel\nCheyenne\nBlanca\nFelicia\nAlexa\nMeghan\nJustine\nHolly\nSandy\nTanya\nWhitney\nCristal\nLeticia\nSydney\nMiriam\nChloe\nCarla\nSierra\nAshlee\nMarina\nBeatriz\nSusan\nAraceli\nGina\nMargarita\nCaroline\nJazmine\nAngelina\nRachael\nClaire\nIrene\nRocio\nCasey\nDestiny\nMercedes\nTania\nYvonne\nJillian\nStacy\nMargaret\nCamille\nMadeline\nSusana\nBrandi\nDeanna\nAlison\nMarisa\nHayley\nCarina\nKara\nGabriella\nNichole\nCarly\nDana\nJanelle\nMariana\nNoemi\nEva\nKrista\nArielle\nEdith\nKendra\nHeidi\nNorma\nBritney\nRebekah\nEsther\nGenesis\nCandice\nAudrey\nIvette\nRenee\nElena\nMeagan\nRuth\nBethany\nCarolyn\nSilvia\nTina\nLizbeth\nSharon\nTatiana\nAdrianna\nKirsten\nKristine\nLizette\nVirginia\nAngel\nHailey\nJohanna\nYadira\nAlisha\nCandace\nKylie\nPamela\nStacey\nIris\nDulce\nLacey\nAnne\nDiane\nBarbara\nJaclyn\nRoxanne\nJuliana\nSavannah\nViviana\nJacquelyn\nSylvia\nPerla\nArianna\nDarlene\nRoxana\nMarilyn\nChelsey\nMaricela\nElisa\nTheresa\nAshleigh\nCeleste\nAmelia\nMelinda\nCarissa\nJudith\nStephany\nPaulina\nRobin\nTracy\nFabiola\nNaomi\nNina\nAlice\nPaula\nKarissa\nTamara\nHillary\nKathy\nLucia\nYolanda\nDeborah\nGriselda\nJade\nIliana\nLuz\nNadia\nSasha\nSofia\nGladys\nMelody\nLydia\nMariela\nAnnie\nColleen\nJanette\nChristian\nNatalia\nHelen\nChanel\nBrandy\nCaitlyn\nMarie\nMichele\nValeria\nJessie\nKelli\nKiara\nAimee\nArlene\nPaola\nClarissa\nMarisela\nCarol\nKaylee\nRegina\nEllen\nKristy\nMaira\nRachelle\nTessa\nKellie\nRose\nZoe\nDevon\nFrances\nLucero\nReyna\nSerena\nJeannette\nJosephine\nCharlotte\nEstefania\nBerenice\nElaine\nHilary\nDonna\nSummer\nRochelle\nAllyson\nBailey\nCorina\nAubrey\nAutumn\nElisabeth\nConnie\nJuanita\nLillian\nIrma\nTiana\nHanna\nJaqueline\nMallory\nSheila\nBreana\nMackenzie\nDevin\nEliana\nElise\nAlissa\nAnabel\nIsamar\nRebeca\nYessenia\nAnnette\nSally\nAnita\nKassandra\nNoelle\nEricka\nMia\nAngie\nLucy\nYasmin\nAdrienne\nChristy\nNataly\nSarai\nAlana\nBrianne\nCharlene\nMaya\nAlina\nJoana\nJane\nMai\nJuana\nJanice\nNicolette\nClara\nGraciela\nLily\nNora\nRaven\nBridget\nEbony\nKate\nMelina\nRosemary\nIvonne\nLizeth\nNathalie\nKaila\nRita\nSimone\nStefanie\nAurora\nEileen\nRubi\nCelia\nJulianne\nFatima\nJoyce\nKatharine\nShawna\nBrittani\nCelina\nMichaela\nAsia\nFaith\nFrancesca\nGeorgina\nTaryn\nAnn\nAracely\nCara\nJanae\nTalia\nCatalina\nNayeli\nOlga\nJoy\nRobyn\nAdilene\nDaniella\nJaime\nKelsie\nLourdes\nShirley\nCinthia\nDianna\nIesha\nBreanne\nMisty\nJulianna\nLena\nLidia\nVicky\nAntoinette\nCarrie\nElvia\nIngrid\nJudy\nLarissa\nPauline\nAlisa\nKatelynn\nRosario\nViridiana\nCorinne\nGenevieve\nTabitha\nBeverly\nJoanne\nTyler\nChantal\nChantel\nCiara\nMadeleine\nMelisa\nAnastasia\nToni\nMaricruz\nBrenna\nCasandra\nEsperanza\nKasey\nKendall\nSelina\nSuzanne\nTrisha\nAlondra\nAngelique\nBelinda\nDesirae\nYajaira\nBonnie\nCassie\nDebbie\nKira\nShayna\nAileen\nAthena\nBertha\nHope\nKari\nKristi\nRoxanna\nTammy\nDanica\nYessica\nElsa\nGiselle\nIsabella\nJenifer\nLeanna\nMarcela\nNikki\nTori\nGrecia\nLilian\nMagdalena\nAnais\nEunice\nLisette\nSophie\nBryanna\nFlor\nJosefina\nLorraine\nPaloma\nReina\nShaina\nThalia\nCierra\nKyla\nMaggie\nAlyson\nJennie\nMoriah\nSelene\nVanesa\nDalia\nElyse\nFiona\nJaneth\nKelley\nLeanne\nLesley\nRandi\nTasha\nBridgette\nLuisa\nTayler\nBeatrice\nEvelin\nGianna\nJacklyn\nLissette\nRosalinda\nDestinee\nMyra\nSalina\nAlanna\nCheryl\nTess\nAshly\nCortney\nDiamond\nFaviola\nHilda\nLeilani\nMireya\nNadine\nSadie\nAlysha\nAntonia\nKristie\nMarlen\nAlexandrea\nAshlyn\nChrista\nDebra\nJordyn\nKelsi\nLilia\nLina\nShayla\nSonya\nAshlie\nCandy\nCathy\nChelsie\nDawn\nMicaela\nChristie\nDenisse\nEden\nIleana\nJulissa\nMagali\nMeredith\nYesica\nBelen\nBrittanie\nBrittni\nCallie\nEdna\nLaurel\nLizet\nShelbi\nCarley\nJohana\nMindy\nPrecious\nRyan\nTia\nYazmin\nJackeline\nKourtney\nShauna\nBernadette\nBernice\nJustina\nKali\nTiffani\nAstrid\nBetty\nCheyanne\nDoris\nEstefani\nJaimie\nJanine\nKirstie\nLea\nLori\nMagaly\nMichael\nCassidy\nFrancine\nKim\nKylee\nNatali\nSavanna\nShanna\nAlexander\nEmilia\nGiovanna\nJesenia\nJessika\nJill\nKayleigh\nKenia\nLacy\nMarlyn\nAlexia\nAzucena\nCayla\nDamaris\nDaniel\nDelia\nEliza\nEstela\nJanessa\nLara\nShelly\nAnahi\nBree\nBreeanna\nDolores\nKeri\nTanisha\nVioleta\nBetsy\nBrandie\nChanelle\nDanae\nIvy\nJackie\nLoren\nLyanne\nMarta\nMeaghan\nMikayla\nSarina\nSherry\nEvangelina\nGeraldine\nKatlyn\nMadelyn\nRiley\nRosemarie\nRosie\nAmalia\nAnjelica\nCoral\nElvira\nKirstin\nKristal\nKrystle\nMariel\nTiara\nTierra\nYanira\nCameron\nDayana\nEmilie\nFrancisca\nMarcella\nNallely\nNelly\nParis\nSelena\nStacie\nZaira\nAisha\nAlex\nAndreina\nBecky\nElaina\nJoann\nKaela\nKenya\nMikaela\nRosalie\nSheena\nStevie\nAmerica\nAnissa\nConsuelo\nDina\nDorothy\nJannette\nJessenia\nJoselyn\nLesly\nLynn\nMandy\nMarianne\nMckenzie\nPa\nAlycia\nAreli\nDelaney\nKailey\nKrystina\nMarlena\nMirna\nStaci\nTianna\nAnnabel\nBreann\nChrystal\nEstrella\nImelda\nItzel\nJayme\nKristyn\nLiana\nMari\nMaxine\nMonika\nShana\nShelbie\nTricia\nXochitl\nDakota\nDanika\nEleanor\nJuliet\nKyra\nMara\nMaureen\nPricilla\nStefani\nSusanna\nTracey\nAdela\nAja\nBreeana\nBrittnee\nDevyn\nDora\nIsis\nJesse\nJose\nKaylie\nKiana\nLauryn\nLupita\nMinerva\nStella\nTraci\nAlaina\nCelene\nDianne\nElsie\nEstephanie\nGeorgia\nHana\nJannet\nKaty\nLana\nMakayla\nMalia\nNoel\nSusie\nTerra\nYuliana\nAlysia\nArely\nCharity\nCorrina\nDeja\nElisha\nEmerald\nGeneva\nIlse\nKasandra\nMarian\nOfelia\nSkye\nSoledad\nVannessa\nAnel\nAva\nBryana\nChristiana\nDemi\nHazel\nIsela\nJanel\nJolene\nJosie\nKatheryn\nLyndsay\nMarla\nMirian\nMollie\nShanae\nSidney\nAbby\nAubree\nBrianda\nBrittaney\nFrancis\nJacquelin\nJesica\nJulieta\nKelsea\nKimberley\nKrysta\nLaurie\nMacy\nYuri\nAlba\nAmie\nBrigitte\nDarcy\nDayna\nDeana\nHelena\nJoan\nKacey\nKiley\nLiza\nMariam\nMaryann\nMckenna\nNikita\nPrincess\nRichelle\nShantel\nTonya\nAdrian\nAllyssa\nAngeline\nDeisy\nDevan\nElissa\nFanny\nGabriel\nJazmyn\nJean\nKarli\nKarly\nKevin\nLyndsey\nMirella\nMonet\nPhoebe\nRosio\nTiffanie\nZulema\nAda\nAshely\nBlair\nBrittnie\nCarli\nClare\nDomonique\nEstefany\nGwendolyn\nHaylee\nIvana\nJanie\nJenelle\nKiersten\nLatasha\nLeila\nMona\nNanci\nSerina\nXiomara\nAlexus\nAlix\nAni\nCarlie\nCecily\nChantelle\nCharmaine\nDennise\nEmely\nFelisha\nIlene\nJodi\nKaylin\nKeisha\nKerry\nKimberlee\nMaura\nNereida\nNikole\nPatrice\nTabatha\nVerenice\nVianca\nAdrianne\nAnnamarie\nAyla\nChynna\nDavid\nGillian\nJanett\nJena\nJonathan\nKandice\nKarlie\nLeann\nLisbeth\nNayely\nNia\nRene\nSonja\nSymone\nYasmine\nAlessandra\nAmbar\nAudra\nBeth\nBrigette\nBrittny\nCody\nConstance\nCorinna\nCristian\nFernanda\nImani\nJanell\nJeannie\nKaleigh\nKarin\nMaegan\nMarbella\nMay\nPatsy\nPearl\nAngelia\nAnnmarie\nAshton\nBritany\nChristopher\nCinthya\nGladis\nGlenda\nHeaven\nIndia\nJami\nKaitlynn\nKatelin\nKathrine\nKori\nLatoya\nMartina\nMayte\nMyrna\nNidia\nRamona\nSarahi\nShelley\nSkylar\nSocorro\nSuzanna\nXochilt\nAida\nAndrew\nAndria\nChandra\nDelilah\nElia\nHollie\nJenae\nJesus\nKacie\nKaylyn\nKorina\nKristian\nLia\nLilliana\nMalissa\nNicolle\nRaylene\nStefany\nTerri\nAbril\nAlyssia\nAmaris\nAundrea\nAvery\nCintia\nDaysi\nGisela\nHeidy\nJalisa\nJana\nJoshua\nKatarina\nKaterina\nLouise\nMerissa\nMonserrat\nNathaly\nRhiannon\nScarlett\nStephani\nSuzette\nTawny\nViolet\nYanet\nAlena\nAllie\nAlysa\nAnnalisa\nAnthony\nBobbie\nBriseida\nCassondra\nChristal\nElla\nEmilee\nEvan\nIvon\nIzamar\nJamila\nJanna\nJovanna\nJuliette\nMabel\nMarcia\nMarianna\nPriya\nSharlene\nValentina\nVilma\nAlyse\nAnnika\nCarlee\nChelsi\nChina\nDaphne\nDenice\nGricelda\nJoelle\nJoseph\nJovana\nKaley\nLee\nMarjorie\nPriscila\nRena\nRoberta\nShante\nUnique\nVianey\nAlia\nAriella\nAubrie\nBritni\nCatrina\nChristen\nCori\nDalila\nEloisa\nElva\nFlora\nGretchen\nJaquelin\nJeniffer\nKailee\nKaycee\nKia\nLatisha\nLeigh\nLila\nLizbet\nLizett\nLupe\nRosalba\nRosalia\nShanice\nSunny\nThania\nTrina\nAria\nAsha\nBao\nBreeann\nCeline\nCherie\nChristin\nCorrine\nDania\nDesire\nElizabet\nErendira\nEryn\nJasmyne\nJustin\nKalyn\nKandace\nKeila\nLacie\nLeandra\nLiset\nMarysol\nNubia\nPorsha\nRebecka\nRikki\nRosaura\nSienna\nYahaira\nAdelina\nAlayna\nAllegra\nAnamaria\nCorey\nHallie\nIvanna\nJazzmine\nJuan\nKalie\nKaylynn\nKelsy\nKerri\nKiera\nLynda\nManuela\nMarielle\nMatthew\nRegan\nRhonda\nRosalva\nSage\nSaira\nShawn\nTarah\nAlannah\nAlexi\nAnai\nAnalisa\nAngeles\nBrisa\nBrook\nCathleen\nCherish\nCiera\nCora\nDavina\nEstella\nFranchesca\nGema\nGinger\nGisselle\nHalie\nIsaura\nJackelyn\nJanay\nJasmyn\nJazmyne\nJeanne\nKala\nKatia\nLaila\nLatrice\nLeeann\nLuis\nLynette\nMakenzie\nMarsha\nMina\nMitzi\nPhylicia\nPilar\nRebeccah\nRosana\nSahar\nSheyla\nValencia\nVicki\nYecenia\nAlejandrina\nAnika\nAnnelise\nAnnemarie\nAshli\nBlake\nBobbi\nBrandee\nCambria\nChanell\nCherise\nCristy\nDanna\nElyssa\nEric\nIsabelle\nJaimee\nJaquelyn\nJazzmin\nJennyfer\nKatlin\nKeely\nLilly\nLisbet\nLizabeth\nLogan\nMarilu\nMelyssa\nMercedez\nMichell\nMildred\nPang\nRacquel\nRayna\nReanna\nRosalina\nShaniqua\nSindy\nSkyler\nYoana\nZenaida\nAnakaren\nAngelita\nAnisha\nAntonette\nAriane\nCecelia\nCory\nCristine\nDara\nDemetria\nDestiney\nDominque\nElle\nEugenia\nFallon\nFrankie\nGail\nInez\nJames\nJeanine\nJerica\nJessi\nJimena\nJodie\nKaryn\nKati\nKrysten\nLakeisha\nLinnea\nLisset\nMadalyn\nMalinda\nMaranda\nMarlee\nMaryam\nMichel\nNellie\nNoemy\nRaina\nRenae\nSabina\nSamatha\nSamira\nSavanah\nSequoia\nShani\nSiobhan\nSirena\nYuridia\nZuleima\nArianne\nArleen\nBillie\nBrea\nBrieanna\nColette\nConcepcion\nDaniele\nDanyelle\nDeidre\nGeena\nGracie\nHaleigh\nKarlee\nKelcie\nKirstyn\nKristiana\nLinh\nLondon\nMarkie\nMarley\nMarlin\nMeranda\nMyesha\nMyriah\nNichelle\nNicollette\nNoor\nPooja\nRichard\nSade\nSammantha\nSean\nShanelle\nShannen\nStephenie\nTawni\nTeresita\nTerry\nYael\nYaneli\nYareli\nZuleyma\nZulma\nAaron\nAcacia\nAmparo\nAnisa\nAnnalise\nAshlynn\nBianka\nBritnee\nCarlos\nCathryn\nChannel\nElana\nEllie\nEster\nEve\nEvette\nFlorence\nFrancisco\nHailee\nIdalia\nJaymie\nJeanna\nKa\nKacy\nLesli\nLianne\nLilibeth\nLynsey\nMakenna\nMarcy\nMaryssa\nMele\nMellisa\nMercy\nMimi\nMyranda\nNydia\nSamara\nShantell\nShasta\nSheri\nSinead\nTiera\nTrista\nVania\nVickie\nAlesha\nAli\nAustin\nBreonna\nBrielle\nBryn\nCali\nCelena\nCydney\nElida\nElisabet\nEnedina\nEvelia\nHaydee\nIvory\nJaycee\nJewel\nJuliann\nKaylah\nKayley\nKenisha\nKianna\nKyle\nLianna\nLiz\nLois\nMariaguadalupe\nMarion\nMellissa\nMelodie\nMiriah\nNelida\nNereyda\nNoelia\nOriana\nRonisha\nShanel\nShea\nShereen\nStormy\nSydnie\nTamika\nTanesha\nTawnie\nThea\nTracie\nVivianna\nAliza\nAlora\nAmi\nAnastacia\nAyana\nBerlyn\nBrian\nBrittanee\nBrittnay\nCassaundra\nDanelle\nDeandra\nDebora\nDeidra\nDelfina\nDenisha\nDolly\nDylan\nEssence\nFarrah\nHaylie\nIda\nIvett\nJanee\nJanely\nJoseline\nJosette\nJulisa\nJune\nKassie\nKeeley\nKenna\nKlarissa\nKortney\nKrystin\nLeonor\nLexus\nMalina\nMalorie\nMariadejesus\nMarilynn\nMaritsa\nMarylou\nNicholas\nNohemi\nPaulette\nPeggy\nPenelope\nRobert\nSaray\nSee\nShanika\nShannel\nShantal\nStarla\nStephaine\nTatyana\nTera\nTrinity\nTyra\nVannesa\nVera\nWinnie\nXenia\nYanely\nZenia\nAdeline\nAlexsandra\nAn\nAnayeli\nAntionette\nAnya\nAraseli\nArcelia\nAshanti\nBrionna\nCady\nCaprice\nCarmela\nCarmelita\nCarmina\nCarson\nCharissa\nCherelle\nCheri\nDahlia\nDani\nErnestina\nGuillermina\nInes\nJamesha\nJanina\nJeannine\nJenessa\nJocelyne\nJourdan\nJoycelyn\nJulian\nKaci\nKalee\nKatya\nKayleen\nKayli\nKeren\nKierra\nLashawn\nLinette\nLiseth\nLizzette\nLora\nLoretta\nLucila\nMacie\nMallorie\nMaryanne\nMeghann\nMicah\nMyisha\nNatalee\nNeda\nRacheal\nRaelene\nRana\nRebeka\nRhianna\nSacha\nSheng\nSheryl\nShyann\nSoraya\nStar\nStephania\nSydnee\nTamar\nThelma\nTonia\nVenessa\nVenus\nAide\nAline\nAlixandra\nAllysa\nAlysse\nAmberly\nAnali\nAnjanette\nAnnabelle\nArlette\nAshlei\nAudriana\nAudrianna\nAyanna\nAzalea\nBabygirl\nBella\nBlaire\nBrynne\nCari\nCesar\nChyna\nCinnamon\nDestany\nDestinie\nDrew\nDyana\nEboni\nElsy\nEmilce\nEmmy\nFernando\nGardenia\nGemma\nHarmony\nJacquelynn\nJeanie\nJessyca\nJody\nJoel\nJohn\nJoselin\nJoslyn\nKarena\nKarishma\nKarley\nKiah\nKimber\nKyleigh\nLayla\nLeigha\nLinsey\nLisett\nLoni\nLouisa\nLucille\nMagen\nMaile\nMaite\nMandi\nMargo\nMarrisa\nMiesha\nMisha\nNhi\nNicola\nNisa\nPenny\nPrisilla\nRachell\nRaechel\nRaelynn\nRosanna\nRosita\nRyann\nSaba\nSalena\nSarena\nSayra\nShae\nShanell\nShantelle\nShawnee\nShayne\nShyla\nSky\nStacia\nStephannie\nSue\nSuzy\nThuy\nWendi\nYara\nAlishia\nAlisia\nAmada\nAmara\nAmira\nAnaiz\nAnay\nAndie\nAndriana\nAnh\nAriela\nArika\nAsusena\nBiridiana\nBritny\nCamila\nCaren\nCatarina\nChampagne\nChristi\nCindi\nClaribel\nCorrie\nDaniell\nDeisi\nDena\nDestini\nDeysi\nElysia\nEstefanie\nEvie\nGenna\nGreta\nJaymee\nJenee\nJocelin\nKamille\nKeira\nKimiko\nKymberly\nKyndra\nLanisha\nLaquisha\nLeona\nLucerito\nMaia\nMargie\nMario\nMarleen\nMarlenne\nMiguel\nMika\nMilagros\nNika\nNikia\nNou\nOctavia\nOralia\nPetra\nPhuong\nPiper\nRhea\nRina\nRomina\nRosamaria\nRubie\nSonam\nTalin\nTanairi\nTatianna\nTeri\nTherese\nYamilet\nYasmeen\nYer\nZaida\nZoey\nAidee\nAlejandro\nAlesia\nAlyxandra\nAndres\nAnneliese\nAura\nAvalon\nAyesha\nAysha\nAzusena\nBailee\nBridgett\nCaitlynn\nCandi\nCarey\nCesilia\nChante\nCharlie\nChasity\nChaya\nChelsee\nChristianna\nClarice\nCodi\nDanisha\nDelanie\nDelmy\nDenae\nDesiray\nDiandra\nDoreen\nEdlin\nElda\nFarah\nHa\nHolli\nHortencia\nIlana\nJayne\nJeana\nJenniffer\nJessy\nJocelynn\nKailyn\nKallie\nKassondra\nKatherina\nKaylene\nKeyanna\nKeyla\nKrystyna\nLakisha\nLilit\nLillie\nLisamarie\nLissete\nLivier\nLoraine\nLorina\nLuciana\nLucinda\nMaddison\nMadisen\nMalisa\nMariaelena\nMariko\nMarivel\nMariya\nMarquisha\nMarycruz\nMatilde\nMattie\nMelany\nMeliza\nMontana\nMya\nNeha\nNisha\nNoelani\nOscar\nPaisley\nParisa\nPriyanka\nRachele\nRae\nRaeann\nRiana\nRuben\nRyanne\nSalma\nSandi\nSarita\nSavana\nSendy\nShakira\nShay\nShaylee\nShianne\nShireen\nShyanne\nSiera\nSpencer\nSteffanie\nSteven\nStevi\nStormie\nTabetha\nTamra\nTeal\nTenisha\nTierney\nTrinidad\nVeronika\nVianney\nYezenia\nAbbey\nAbbie\nAdreana\nAdria\nAdriane\nAgnes\nAislinn\nAlyssamarie\nAmrita\nAnalicia\nAnalise\nAnneke\nAntonio\nAriadna\nAryn\nAysia\nBaylee\nBenita\nBerlin\nBriann\nBrieana\nBritta\nBritteny\nBronte\nBryan\nBrynn\nCamilla\nCecile\nChantell\nChastity\nCherry\nChia\nCiarra\nCitlali\nCorin\nCorrin\nCruz\nDallas\nDarlyn\nDeserie\nDeyanira\nDinora\nElicia\nEllyn\nEmelia\nErinn\nEstephania\nGenova\nGiana\nGigi\nHerminia\nIman\nJaleesa\nJanelly\nJaylene\nJeremy\nJerrica\nJessalyn\nJosselyn\nKalia\nKandyce\nKanisha\nKarleigh\nKarolina\nKatina\nKay\nKaya\nKaylen\nKaytlyn\nKeilah\nKellee\nKeshia\nKeyana\nKindra\nKinsey\nLacee\nLanae\nLani\nLashanae\nLeeanne\nLela\nLili\nLorna\nMaci\nMadelaine\nMadelyne\nMae\nMalena\nManuel\nMao\nMarcelina\nMarci\nMarcie\nMargot\nMariella\nMarika\nMarin\nMarleny\nMaryjane\nMee\nMichela\nNalleli\nNicol\nNyssa\nPrescilla\nRisa\nRoberto\nRosaisela\nRosalind\nRosalyn\nSahara\nSergio\nShanay\nShanon\nShivani\nSinai\nSusanne\nTanika\nTesia\nTorrie\nUrsula\nValarie\nValery\nVictor\nVy\nWanda\nWhitley\nYamileth\nYaneth\nYanina\nYuriko\nZoila\nZoraida\nAdelaida\nAdrina\nAllana\nAlvina\nAlyx\nAnalilia\nAnnamaria\nAnnel\nArlyn\nArmine\nAurelia\nBeatris\nBerta\nBibiana\nBrigid\nBrittanny\nBrittiny\nCarin\nCarmel\nChanning\nChardonnay\nCharli\nChelsy\nChristiane\nChyanne\nClarisa\nClaudette\nColby\nCree\nCrista\nDaina\nDaisha\nDanitza\nDarla\nDasha\nDeanne\nDeena\nDennis\nDeonna\nDesirea\nDonisha\nEdgar\nEleni\nElexis\nErendida\nErik\nErnestine\nGena\nGeorgette\nGerardo\nGilda\nGisell\nHali\nHarley\nHerlinda\nHuong\nIvone\nJacob\nJacquelyne\nJacquline\nJacy\nJanaye\nJanea\nJaspreet\nJavier\nJesika\nJessa\nJesseca\nJordin\nJudit\nKami\nKaryssa\nKasie\nKatheryne\nKathia\nKathryne\nKattie\nKaylan\nKeli\nKendal\nKierstin\nKimberlyn\nLaryssa\nLatifah\nLeana\nLeeanna\nLeena\nLeonela\nLeslye\nLexi\nLexie\nLiane\nLien\nLilianna\nLindy\nLisseth\nLissett\nLluvia\nLoryn\nLynnette\nMacey\nMalika\nManpreet\nMariyah\nMerari\nMilan\nMyriam\nNickole\nNiesha\nPatty\nPebbles\nPorsche\nQuinn\nRaeanne\nRaymond\nRoseanna\nRoselia\nRosy\nSamaria\nSamone\nSamuel\nShakiyla\nShamika\nShanequa\nShanique\nShari\nShaylene\nSheridan\nSherilyn\nShoua\nSteffany\nSuleyma\nSuzie\nTami\nTana\nTatjana\nTeanna\nThao\nTisha\nTkeyah\nTonisha\nTristan\nTyesha\nValorie\nVan\nVivien\nWilliam\nWinter\nXochil\nYanelly\nYoselin\nAddison\nAdele\nAdreanna\nAiyana\nAkemi\nAlan\nAlea\nAleena\nAleida\nAlexsis\nAlivia\nAliya\nAlyce\nAnahy\nAnaly\nAndrina\nAnette\nAngelika\nApryl\nArial\nArlin\nAutum\nAviva\nAziza\nBenjamin\nBerenis\nBianey\nBrandon\nBreauna\nBreona\nBrett\nBria\nBrissa\nBrooklyn\nCarleen\nCarole\nCarolynn\nCaryn\nCeara\nChantalle\nChong\nCorine\nCornelia\nCristen\nDaisey\nDarcie\nDarline\nDarling\nDeirdre\nDejanae\nDeziree\nDixie\nEbonee\nEduardo\nEleana\nElina\nEman\nEmilse\nEsthela\nEvelynn\nFantasia\nFaye\nGenelle\nGinny\nHaide\nHalley\nIndira\nIvania\nJacinda\nJaclynn\nJael\nJalissa\nJannete\nJannett\nJenise\nJennah\nJennica\nJoey\nJohnisha\nJulieann\nJulieanne\nJusteen\nKaitlan\nKalena\nKandis\nKao\nKarely\nKarisa\nKatey\nKatharina\nKathie\nKathrina\nKatlynn\nKaydee\nKeana\nKelsee\nKennia\nKirsti\nKorin\nLaci\nLan\nLashay\nLayne\nLeesa\nLeslee\nLlesenia\nLorie\nLyna\nMadelynn\nMagda\nMagnolia\nMaleni\nMaren\nMargaux\nMarisabel\nMariza\nMaryelizabeth\nMarygrace\nMegumi\nMelia\nMerry\nMiki\nMilena\nMirta\nMiya\nMonae\nMyla\nNai\nNalani\nNerissa\nNicholle\nNiki\nPatience\nPhyllis\nRaelyn\nRafaela\nRaisa\nRaya\nRianna\nRicky\nRonni\nRoseanne\nSami\nSavina\nScarlet\nSerenity\nShalyn\nShannan\nShara\nSharayah\nSharice\nSherrie\nShiela\nShiloh\nSimona\nSimran\nSondra\nSoraida\nSulema\nSusy\nSuzana\nSydni\nTannia\nTasia\nTravis\nTristin\nWillow\nYanette\nZara\nZuri\nAbilene\nAddie\nAdina\nAhsley\nAlberta\nAleah\nAlecia\nAlixandria\nAmandeep\nAmberlee\nAmina\nAnabella\nAnaluisa\nAnamarie\nAnnastasia\nArgelia\nArica\nArmando\nAryana\nAshia\nAsley\nAsya\nAzia\nBecca\nBerenise\nBonita\nBritnie\nBryanne\nByanka\nCandelaria\nCandyce\nCarrissa\nCasie\nCassey\nCesia\nChanda\nCharlee\nCharline\nChase\nChi\nChiara\nChole\nChoua\nChyenne\nCleo\nCodie\nCollette\nConchita\nCorie\nCortnee\nCosette\nCourtnee\nCrystle\nDanya\nDarci\nDaysy\nDebby\nDerricka\nDeven\nDominica\nDonielle\nDorian\nDusty\nEbone\nElba\nElora\nEma\nEmiko\nEstelle\nEstephany\nFabian\nFelice\nFelicity\nFelisa\nGeovanna\nGisele\nGrisel\nGustavo\nHaidee\nIdania\nIeshia\nIndigo\nIrasema\nIsabela\nIvan\nJacinta\nJamee\nJamisha\nJanai\nJaneen\nJaslyn\nJaya\nJaymi\nJayna\nJeanelle\nJenay\nJenette\nJenica\nJennefer\nJenni\nJerika\nJohnna\nJohnnie\nJorden\nJorge\nJosephina\nJulienne\nJulio\nKailani\nKalani\nKanesha\nKaori\nKarinna\nKarol\nKaroline\nKasondra\nKassidy\nKathya\nKayci\nKaytlin\nKc\nKelci\nKellyn\nKhadija\nKimberli\nKimberlie\nKimia\nKirby\nKodi\nKrystine\nKyrsten\nLachelle\nLaina\nLanie\nLaurin\nLeeza\nLigia\nLizzet\nLizzeth\nLoreal\nLorin\nLucretia\nLyla\nLynne\nLyzette\nMadelin\nMagally\nMaleny\nMarguerite\nMarine\nMarkeisha\nMarquita\nMarybeth\nMarylynn\nMckayla\nMeena\nMeggan\nMelaine\nMeriah\nMidori\nMikala\nMonisha\nNakia\nNatashia\nNatividad\nNavjot\nOlympia\nOmar\nOsiris\nPaul\nPorche\nPorscha\nRashelle\nRashida\nRayanne\nRaychel\nRayleen\nRayven\nReba\nRebekka\nReena\nRemy\nRicki\nRosella\nRowan\nRowena\nRylee\nSanaz\nSarahjane\nSarahy\nShaelyn\nShaila\nShanda\nShane\nShanee\nShaylyn\nShelbey\nShelia\nShelli\nSherri\nShoshana\nSilvana\nSiomara\nSoleil\nSommer\nStepanie\nSuleima\nSulma\nTaleen\nTalisha\nTatum\nTawnya\nTayla\nTaylar\nTeara\nThanya\nTiffiny\nTorey\nTosha\nTran\nTrang\nTrinh\nTynisha\nVelia\nVi\nVivi\nWinona\nXia\nXimena\nYarely\nYeni\nYohana\nZayra\nAdena\nAeriel\nAkilah\nAlanah\nAleen\nAlexiss\nAlexsa\nAlexys\nAlexzandria\nAlise\nAlva\nAmal\nAmani\nAmarilis\nAmberlynn\nAmbrosia\nAmee\nAmethyst\nAnacaren\nAnahid\nAnarosa\nAndre\nAndy\nAnnaliese\nArin\nAshlea\nAshliegh\nAundria\nAzure\nBahar\nBarbie\nBlythe\nBraelyn\nBreyana\nBriauna\nBrina\nBriselda\nBrittini\nBrittnei\nCaitlan\nCalista\nCamellia\nCamile\nCamisha\nCammie\nCaresse\nCarisa\nCarlene\nCarlisha\nCarlyn\nCarmin\nCarolyne\nCatharine\nCatlin\nChandler\nChandni\nCharis\nCharisse\nCharlette\nChelsa\nCiana\nClarrisa\nConsepcion\nCoty\nCourtnie\nCyndy\nDafne\nDaja\nDakotah\nDallana\nDannielle\nDaria\nDarian\nDarnisha\nDeann\nDelicia\nDelina\nDelmi\nDenia\nDenis\nDer\nDevonna\nDorcas\nDyanna\nEdit\nEdlyn\nEdward\nElianna\nElysse\nEmalee\nEmelyn\nEmi\nErick\nErikka\nErynn\nEvangeline\nEvonna\nFelecia\nFelicitas\nFreya\nGabriele\nGao\nGenessis\nGenoveva\nGiavanna\nGwen\nHector\nHillery\nHunter\nIrais\nIrina\nIsabell\nIsrael\nIvet\nJackelin\nJacqueleen\nJahaira\nJaimi\nJanis\nJanneth\nJason\nJazzlyn\nJeanett\nJeffrey\nJelisa\nJenell\nJennelle\nJewell\nJina\nJoi\nJoleen\nJolie\nJordana\nJordann\nJordon\nJori\nJoscelyn\nJosue\nJoua\nJulietta\nJuly\nKady\nKaeli\nKalli\nKarah\nKarlyn\nKassi\nKatalina\nKathlyn\nKeanna\nKeara\nKeiko\nKelcy\nKellsie\nKenneth\nKera\nKerstin\nKeyonna\nKhadijah\nKitty\nKristan\nKristel\nKyana\nLadonna\nLai\nLanette\nLashae\nLashea\nLatonya\nLeia\nLexis\nLusine\nLyndsie\nMaegen\nMaggy\nMalaysia\nMalyssa\nMaricarmen\nMaricella\nMarielena\nMarinna\nMarkisha\nMarlisa\nMarquis\nMarriah\nMartika\nMartin\nMarylin\nMarylu\nMaurissa\nMegann\nMelony\nMerary\nMi\nMilagro\nMira\nMitzy\nMykia\nNadya\nNansi\nNarissa\nNasim\nNastassia\nNatally\nNatalya\nNathalia\nNeftali\nNgoc\nNhung\nNicolasa\nNoely\nNohely\nNuvia\nOdalis\nPachia\nPatrick\nPresley\nPriscella\nRafael\nRanda\nReann\nRebekkah\nReema\nReylene\nRia\nRica\nRicardo\nRio\nRoni\nRoselyn\nSabra\nSalvador\nSamar\nSerene\nShalena\nShardae\nSharee\nShellby\nSheree\nShira\nSolange\nSona\nStarr\nStefania\nSunshine\nTahnee\nTal\nTalar\nTameka\nTamera\nTammie\nTeagan\nTenaya\nTerese\nThu\nTiani\nTiffini\nTracee\nTuesday\nVelma\nVeronique\nWilma\nXee\nYasamin\nYee\nYeng\nYennifer\nYsenia\nYuritzy\nZabrina\nZoua\nZully\nAarika\nAdelia\nAdelita\nAerial\nAgustina\nAiesha\nAkira\nAlda\nAlegandra\nAlexes\nAlexxis\nAllisa\nAllissa\nAlmarosa\nAltagracia\nAlyshia\nAmari\nAmbra\nAmunique\nAnalaura\nAndreana\nAnessa\nAngelena\nAnnalee\nAnnaly\nAntwanette\nArturo\nAshleymarie\nAspen\nAsucena\nAudrie\nAuriel\nAustyn\nAvigail\nAya\nAyaka\nAzalia\nBanesa\nBetsabe\nBettina\nBlossom\nBonny\nBreeanne\nBriceida\nBrie\nBritani\nBrittiney\nBrooklynn\nBrynna\nCailin\nCalifornia\nCami\nCarlye\nCasondra\nCatherin\nCathrine\nCaylee\nCecille\nCharleen\nChelcie\nCherrelle\nChrissy\nChristel\nChristyne\nClair\nCorissa\nCristiana\nCrystel\nCrystina\nDanny\nDanyel\nDariana\nDarleen\nDarlena\nDaryl\nDawna\nDee\nDella\nDesarae\nDeserae\nDeseray\nDeshanae\nDeshawna\nDevina\nDiona\nDionna\nDionne\nDominic\nDulse\nDung\nDunia\nEbonie\nEcho\nEda\nEmilyann\nEmmaline\nErlinda\nEulalia\nEvonne\nFabiana\nFlorentina\nFrancia\nFranki\nGabby\nGarrett\nGenevie\nGennesis\nGiovana\nGiovanni\nGiuliana\nGoldie\nGregory\nHadassah\nHaily\nHalee\nHan\nHang\nHayde\nHelene\nHenna\nHong\nIna\nIveth\nJacelyn\nJacklin\nJacquelene\nJaimy\nJakeline\nJamika\nJammie\nJanaya\nJanika\nJanira\nJannelle\nJasmeen\nJavon\nJayla\nJeneffer\nJennafer\nJennessa\nJeri\nJessicamarie\nJo\nJohannah\nJohnny\nJolynn\nJoni\nJovita\nJulieanna\nKacee\nKaelyn\nKai\nKaili\nKalah\nKaleena\nKalen\nKalina\nKambria\nKameron\nKamryn\nKaris\nKathyrn\nKatrice\nKeiana\nKelcey\nKellye\nKena\nKendyl\nKenzie\nKhrystina\nKiani\nKiely\nKiesha\nKisha\nKiyana\nKiyomi\nKorey\nKorinna\nKorinne\nKorrie\nKristeena\nKristell\nKristianna\nKristianne\nKristopher\nKrizia\nKymberlee\nLaken\nLandy\nLaney\nLaren\nLarisa\nLatanya\nLatiana\nLaticia\nLawanda\nLesa\nLetticia\nLian\nLiberty\nLilyana\nLinzy\nLita\nLorianne\nLucie\nLucina\nLucky\nLusero\nLuzmaria\nMa\nMadaline\nMadalynn\nMakena\nMalka\nMandeep\nMarco\nMareena\nMariaisabel\nMarialuisa\nMariateresa\nMarilin\nMarilou\nMaritssa\nMarjani\nMarkita\nMarlina\nMarshae\nMartiza\nMaryah\nMaryellen\nMayela\nMelani\nMichaella\nMichal\nMikaila\nMillicent\nMillie\nMiracle\nMiryam\nMonee\nMontserrat\nMyeisha\nNada\nNajah\nNakita\nNandi\nNaomy\nNayelly\nNazareth\nNely\nNery\nNeyda\nNichol\nNicki\nNicoletta\nNikkia\nNinfa\nNissa\nOliva\nPage\nParris\nPerlita\nPhoenix\nPorcha\nPorchea\nPricila\nRaeanna\nRaena\nRaissa\nRavyn\nRaynisha\nReem\nRemi\nRenea\nRenita\nRheanna\nRhina\nRonesha\nRosi\nRoxann\nRoya\nRubicela\nRudy\nSaige\nSalome\nSamanta\nSamia\nSana\nSanta\nSapphire\nSaundra\nSeana\nSebastian\nSerra\nShalimar\nShanea\nShaniece\nSharae\nSharaya\nSharell\nSharnae\nSharonda\nShatara\nShaun\nShawnna\nShaye\nShelbee\nShenae\nShiva\nShyan\nSkyla\nSolana\nSong\nSparkle\nStaphany\nStephen\nStephnie\nSunnie\nSvetlana\nSylvana\nTaelor\nTai\nTakara\nTanaya\nTasheena\nTesla\nTessie\nTheodora\nThy\nTien\nTorrey\nTorri\nTram\nTreasure\nTyanna\nTyresha\nValeri\nVianka\nVienna\nViola\nWindy\nYevette\nYisel\nYoua\nYvett\nZachary\nZahra\nZainab\nZaneta\nZuleika\nAdara\nAdrieanna\nAdriene\nAfrica\nAfton\nAhlam\nAinsley\nAissa\nAkiko\nAlaa\nAlaura\nAlberto\nAlec\nAleisha\nAleshia\nAlexanderia\nAlexxa\nAllyn\nAlonna\nAlyna\nAlyxandria\nAmairani\nAmberlyn\nAmena\nAmorette\nAmrit\nAnabell\nAnacristina\nAnallely\nAndi\nAndreanna\nAndreya\nAngelee\nAngelic\nAngelicamaria\nAngella\nAnicia\nAnja\nAnnais\nAnnissa\nAnny\nAntonella\nAnyssa\nApolonia\nAra\nArabella\nAracelia\nAranza\nAriell\nArisbeth\nArlet\nArline\nArmanda\nArmida\nArpi\nArpine\nAryanna\nAryel\nAshante\nAsiah\nAudrina\nAudry\nAvilene\nAvital\nBaby\nBerlynn\nBibi\nBranda\nBrandice\nBrandilyn\nBreahna\nBrendy\nBrennan\nBreyanna\nBriahna\nBriannah\nBrienna\nBrit\nBritanie\nBrittainy\nBronwyn\nByanca\nCailey\nCaludia\nCamelia\nCandida\nCandis\nCapri\nCarleigh\nCarrington\nCatheryn\nCaycee\nCera\nChana\nCharde\nCharise\nChayla\nChelse\nChenay\nChenelle\nCherika\nCherisse\nCherrie\nCheyanna\nChika\nChris\nClaira\nClarie\nClariza\nClaudine\nCloe\nConcetta\nConnor\nConny\nCorryn\nCortnie\nCristin\nCyrstal\nDaisi\nDaizy\nDanette\nDavi\nDavonna\nDayanna\nDeedee\nDejanee\nDenay\nDennice\nDenys\nDerrisha\nDezarae\nDezirae\nDia\nDian\nDillon\nDinah\nDivinity\nDoua\nEdelmira\nEgypt\nEli\nElian\nElidia\nEliset\nEllery\nEllisa\nEllyse\nEloise\nElspeth\nEmelin\nEmilly\nEmmalee\nEmmeline\nEmy\nEsmirna\nEsteban\nEvalyn\nEveline\nEvett\nFalicia\nFlannery\nFlavia\nFlorencia\nForrest\nFrania\nGeorgiana\nGeovana\nGermaine\nGia\nGianina\nGinamarie\nGisel\nGissel\nGiulia\nGlendy\nGloriana\nGrabiela\nGresia\nGuillermo\nHadley\nHae\nHanh\nHattie\nHaven\nHayleigh\nHayli\nHeba\nHenrietta\nHira\nHlee\nIa\nIndiana\nIndra\nIrlanda\nIsaac\nIsadora\nItalia\nJacky\nJacqulyn\nJamaica\nJameelah\nJameisha\nJamey\nJamia\nJamielee\nJamilah\nJanella\nJanelli\nJania\nJanise\nJannel\nJannell\nJasmeet\nJasminne\nJayleen\nJazlyn\nJazz\nJazzmen\nJeena\nJene\nJenea\nJenesis\nJeni\nJennette\nJensine\nJericha\nJessilyn\nJewels\nJilian\nJin\nJoceline\nJoline\nJonathon\nJonelle\nJoselyne\nJossie\nJovan\nJuli\nJullian\nJully\nJulyssa\nJyoti\nKaia\nKaija\nKaily\nKalea\nKameryn\nKamia\nKamilah\nKarmen\nKarri\nKarry\nKaryna\nKasha\nKathlene\nKaycie\nKaysie\nKeandra\nKeilani\nKennedy\nKerissa\nKerrie\nKesha\nKezia\nKhalilah\nKhrystyne\nKierstyn\nKimberlyanne\nKiran\nKiri\nKiya\nKodie\nKorrine\nKortni\nKristeen\nKristyna\nKyanna\nKyara\nKyrie\nKyrstin\nLailani\nLainey\nLainie\nLakendra\nLakeshia\nLane\nLanea\nLanesha\nLashanay\nLashawna\nLashonda\nLatecia\nLaurena\nLavonna\nLe\nLeidy\nLeighann\nLesslie\nLilyann\nLindsi\nLindsy\nLisandra\nLissa\nLivia\nLola\nLorissa\nLucrecia\nLyndsi\nLynna\nLyric\nLysette\nMadelene\nMadilyn\nMagdalene\nMakala\nMaly\nMamie\nMana\nManda\nManisha\nMaral\nMaraya\nMarena\nMargeaux\nMariadelcarmen\nMariha\nMarilee\nMarimar\nMarinda\nMarlaina\nMarleni\nMarly\nMarlyne\nMarrissa\nMarya\nMarylee\nMaryrose\nMeg\nMeganelizabeth\nMelaney\nMeleah\nMelysa\nMerlin\nMeryl\nMica\nMichellee\nMikki\nMilissa\nMiraya\nMirtha\nMishelle\nMitra\nMonzerrat\nMorgann\nMorganne\nMy\nMyeshia\nMylissa\nMysti\nNaila\nNalee\nNarine\nNatacha\nNatosha\nNavy\nNefertiti\nNeli\nNickie\nNida\nNiza\nNuria\nNycole\nOlimpia\nOlyvia\nOtilia\nPahola\nPakou\nPassion\nPatrina\nPatrisia\nPetrina\nPhillip\nPia\nPorshia\nPortia\nPrecilla\nPrisila\nQuanisha\nQuincy\nQuyen\nRabia\nRachal\nRadhika\nRaeleen\nRandee\nRawan\nRayann\nRaylynn\nRaynesha\nReana\nRebbeca\nRegine\nRenata\nRenay\nRenika\nReshma\nRiane\nRika\nRima\nRonda\nRonniesha\nRonnisha\nRory\nRoshni\nRossana\nRossy\nRoxane\nRubina\nRubit\nRuvi\nRyane\nRylie\nSabryna\nSafa\nSakina\nSamanth\nSandie\nSang\nSareen\nSariah\nSchuyler\nSchyler\nSelenia\nShabnam\nShaela\nShaena\nShalisa\nShameka\nShandale\nShandell\nShania\nShanise\nShanley\nSharai\nSharde\nSharika\nShastina\nShauntae\nShavon\nShaylin\nSheela\nShellie\nSherita\nSherrell\nSheyanne\nSheyna\nShiane\nShiree\nSia\nSiena\nSindia\nSintia\nSiria\nSloan\nSonora\nSoua\nSterling\nSteve\nStormi\nSubrina\nSupriya\nSynthia\nTamisha\nTarra\nTashina\nTawana\nTawney\nTaya\nTeana\nTeressa\nTeryn\nThanh\nTiarra\nTiffaney\nTinisha\nTory\nTova\nTreanna\nTria\nTuongvi\nTyla\nTyree\nVanity\nVanna\nVasthi\nVelvet\nVenecia\nVerenise\nVikki\nVirdiana\nWesley\nYakira\nYohanna\nYomaira\nYsabel\nYunuen\nYurico\nZahara\nZaina\nZakiya\nZarina\nZaynab\nZina\nJessica\nAshley\nStephanie\nJennifer\nElizabeth\nAmanda\nSarah\nSamantha\nMichelle\nNicole\nMaria\nMelissa\nVanessa\nEmily\nLauren\nBrittany\nMegan\nDanielle\nAndrea\nChelsea\nChristina\nRachel\nAlexandra\nRebecca\nKatherine\nJasmine\nKimberly\nVictoria\nTaylor\nAlyssa\nMonica\nKayla\nLaura\nBrenda\nJacqueline\nNatalie\nCrystal\nDiana\nCynthia\nAmber\nGabriela\nAlejandra\nSara\nAngelica\nVeronica\nAna\nAlexis\nHannah\nTiffany\nBrianna\nErika\nNancy\nKaren\nKelsey\nDaisy\nErica\nCourtney\nYesenia\nKarina\nMarissa\nAdriana\nAmy\nHeather\nCassandra\nKelly\nMayra\nCindy\nShelby\nAngela\nJulia\nSandra\nBianca\nMary\nChristine\nAlicia\nAlexandria\nClaudia\nKaitlyn\nBriana\nOlivia\nAnna\nAllison\nPatricia\nLeslie\nJocelyn\nErin\nGuadalupe\nShannon\nMonique\nBreanna\nEvelyn\nMariah\nPriscilla\nWendy\nBrittney\nJamie\nSabrina\nMorgan\nCristina\nHaley\nLisa\nCatherine\nValerie\nDenise\nJanet\nMelanie\nKathryn\nBrooke\nDesiree\nKarla\nKatie\nJoanna\nLindsey\nKristen\nAriel\nJulie\nJasmin\nRosa\nJenna\nKatelyn\nKristina\nCaitlin\nLinda\nPaige\nJordan\nJazmin\nAriana\nDominique\nIsabel\nGabrielle\nLindsay\nApril\nLeticia\nLiliana\nCarolina\nRuby\nKathleen\nKrystal\nEmma\nKatrina\nGloria\nCecilia\nAbigail\nMadison\nDaniela\nJenny\nMarlene\nMolly\nGrace\nMiranda\nVivian\nTeresa\nAlma\nLorena\nMartha\nJeanette\nSonia\nMarisol\nYvette\nTania\nMiriam\nRaquel\nCarla\nEsmeralda\nKristin\nTanya\nSophia\nSierra\nHayley\nNatasha\nSydney\nMarina\nMaribel\nHolly\nCarmen\nCheyenne\nBlanca\nAngelina\nAshlee\nChloe\nMeghan\nValeria\nMadeline\nGina\nMaritza\nLeah\nSavannah\nDestiny\nYvonne\nJazmine\nCarly\nKassandra\nTatiana\nJustine\nTara\nDeanna\nBeatriz\nAlexa\nMariela\nRocio\nSusana\nGenesis\nAudrey\nCristal\nMackenzie\nAraceli\nCaroline\nLizbeth\nMargaret\nFelicia\nMercedes\nCamille\nHailey\nPaola\nAdrianna\nSandy\nCarina\nKaitlin\nBrandi\nMargarita\nMarisa\nMarilyn\nIrene\nClaire\nNaomi\nTracy\nGabriella\nDana\nEsther\nKylie\nJanelle\nNoemi\nNorma\nChelsey\nKrista\nRachael\nRebekah\nYadira\nJacquelyn\nWhitney\nJade\nSilvia\nSusan\nViviana\nAlison\nElena\nHeidi\nHillary\nKirsten\nStacey\nKara\nEdith\nJaclyn\nJillian\nStacy\nCasey\nClarissa\nYolanda\nBritney\nNichole\nStephany\nEva\nTheresa\nKendra\nMelody\nHelen\nAmelia\nSharon\nCarissa\nCaitlyn\nCandice\nRenee\nArlene\nCarolyn\nRuth\nIris\nKristine\nMariana\nVirginia\nFabiola\nIvette\nTori\nBethany\nLizette\nChristian\nMarie\nDulce\nPamela\nPaulina\nZoe\nAlisha\nJohanna\nSheila\nTina\nAlice\nDiane\nBrandy\nCandace\nSylvia\nPerla\nAngel\nBerenice\nSofia\nAngelique\nNina\nPaula\nAnne\nElaine\nMaricela\nBarbara\nEstefania\nBrianda\nLucia\nNatalia\nCeleste\nJudith\nAshleigh\nJuliana\nGladys\nTamara\nKaylee\nLuz\nBreana\nJanette\nLydia\nDeborah\nArianna\nMelinda\nAnnie\nKathy\nChanel\nMeagan\nRoxana\nSerena\nTessa\nBridget\nMaya\nReyna\nSummer\nKiara\nBailey\nYessenia\nConnie\nLacey\nMaira\nThalia\nAlissa\nKarissa\nRegina\nArielle\nKelli\nRose\nAutumn\nCarol\nCharlotte\nColleen\nCorina\nElisa\nLizeth\nMallory\nMichaela\nDarlene\nMichele\nShanice\nElise\nRoxanne\nYasmin\nAdrienne\nCelina\nHilary\nKellie\nLourdes\nNicolette\nIngrid\nMarisela\nAimee\nDaniella\nJosephine\nLily\nSally\nSasha\nRobin\nFrances\nIrma\nNadia\nAnnette\nCiara\nEricka\nMia\nAngie\nGriselda\nKristy\nAllyson\nEllen\nLucero\nDevin\nIsabella\nNayeli\nDonna\nJessie\nKiana\nRachelle\nEileen\nKasey\nAubrey\nJaqueline\nAlina\nJoana\nJuana\nKendall\nLillian\nMelina\nStefanie\nClara\nNathalie\nTyler\nIvonne\nRita\nAurora\nCatalina\nFaith\nKristi\nNataly\nRebeca\nRosemary\nCelia\nFrancesca\nJudy\nLucy\nRochelle\nFatima\nTiana\nDesirae\nHanna\nJoyce\nMai\nIliana\nTaryn\nBryanna\nJane\nOlga\nJanice\nNoelle\nBeverly\nDiamond\nGenevieve\nKate\nKenia\nAnn\nBrenna\nNikki\nRaven\nTabitha\nAdilene\nCassidy\nDevon\nEbony\nMckenna\nShirley\nLarissa\nBrianne\nJeannette\nSarai\nSelene\nAnita\nElisabeth\nLisette\nMarcela\nTalia\nAnais\nFlor\nMagdalena\nAlisa\nChristy\nGraciela\nJanae\nRobyn\nSelina\nChelsie\nEliana\nJoy\nRubi\nAlana\nBrittani\nCierra\nJoselyn\nKatelynn\nLeanna\nSimone\nTrisha\nCharlene\nToni\nCassie\nJulianne\nKatarina\nNora\nTammy\nAnastasia\nBelen\nJaime\nJuanita\nMireya\nViridiana\nAsia\nCorinne\nShawna\nSophie\nAlondra\nAnissa\nKaila\nKelsie\nLidia\nBonnie\nMadeleine\nElsa\nPauline\nGeorgina\nKatharine\nMarlen\nAlexandrea\nCarrie\nJoanne\nRiley\nAlanna\nCinthia\nGiselle\nLesley\nTayler\nAshlyn\nGianna\nKailey\nLena\nAileen\nAnabel\nBertha\nKira\nLuisa\nPaloma\nRandi\nVicky\nCathy\nGiovanna\nHope\nJessika\nJordyn\nMaggie\nMoriah\nRosario\nAshlie\nBelinda\nChantel\nIsamar\nMelisa\nTess\nAracely\nCara\nDorothy\nEvelin\nLiana\nLorraine\nYessica\nBernadette\nBreanne\nChantal\nTasha\nArely\nBeatrice\nKari\nKelley\nShayla\nSuzanne\nDestinee\nEunice\nHilda\nJackeline\nJosefina\nMeredith\nNadine\nNelly\nKyla\nLaurel\nMagaly\nAlyson\nDanica\nJacklyn\nJulissa\nLissette\nShaina\nSonya\nAntoinette\nKristie\nKylee\nReina\nSalina\nCasandra\nJohana\nKaitlynn\nMagali\nMikayla\nSavanna\nAntonia\nDakota\nEden\nJennie\nMaricruz\nPrecious\nAlysha\nAreli\nChrista\nDoris\nEliza\nElvia\nEsperanza\nGrecia\nKenya\nLina\nMariel\nShayna\nCortney\nEstefany\nFaviola\nJanine\nLilia\nMicaela\nMyra\nSadie\nTiara\nXochitl\nAlexia\nAthena\nDianna\nJenifer\nJose\nLilian\nMarcella\nMindy\nSelena\nTia\nBreann\nCarley\nJulianna\nLeilani\nLupita\nRoxanna\nRyan\nAshly\nBridgette\nCheryl\nDolores\nElyse\nJanessa\nJessenia\nLeanne\nLoren\nMisty\nYazmin\nIleana\nLesly\nMichael\nZaira\nDaniel\nVanesa\nCheyanne\nDalia\nElvira\nJaimie\nLara\nNallely\nAlexander\nBernice\nBetsy\nEmilia\nHaylee\nIvana\nJustina\nKarly\nKayleigh\nKrysta\nMarlena\nShauna\nDebbie\nImelda\nIsela\nIvy\nMckenzie\nPa\nStevie\nYajaira\nCelene\nCeline\nDamaris\nDawn\nDemi\nDenisse\nEstrella\nFernanda\nFrancisca\nMari\nShelly\nYanira\nAdrian\nChristie\nDelaney\nDelia\nDora\nGeorgia\nHazel\nLori\nMeaghan\nTiffani\nBetty\nBria\nCallie\nCandy\nElsie\nGeraldine\nJackie\nJaneth\nLacy\nLynn\nNatali\nAnjelica\nDanae\nKourtney\nKyra\nMandy\nMarielena\nTracey\nAisha\nAlysia\nAmerica\nAzucena\nDanika\nEstela\nKatlyn\nKaylie\nMikaela\nSherry\nTerra\nTierra\nAda\nAlex\nCoral\nJannet\nKaty\nLea\nMirian\nRamona\nRosalinda\nAlexus\nChristiana\nEstefani\nEvangelina\nGeneva\nJocelin\nKaleigh\nKarli\nMakayla\nMirna\nNathaly\nNoel\nShantel\nStacie\nStella\nTanisha\nTonya\nXiomara\nBecky\nBlair\nBreeanna\nDevyn\nDina\nGlenda\nItzel\nJoan\nJosie\nLizet\nMadelyn\nMirella\nNidia\nParis\nTianna\nVerenice\nAlessandra\nChandler\nCorinna\nDebra\nHeidy\nJill\nKaela\nLyndsey\nYoselin\nBree\nCiera\nDania\nIsabelle\nKelsi\nMaryann\nSerina\nSheena\nShelley\nSusanna\nAndreina\nBrandie\nBrittni\nChanelle\nConstance\nEmilie\nJanel\nJesus\nKaley\nKasandra\nKaylin\nKelsea\nMalia\nPricilla\nRosie\nScarlett\nShelbi\nAdela\nAida\nAnahi\nBrittanie\nCayla\nChantelle\nEdna\nFrancis\nImani\nKali\nKim\nKristal\nLisbeth\nLiza\nMariam\nMarian\nSkye\nYuliana\nAlba\nAni\nBriseida\nDianne\nFiona\nGardenia\nMartina\nMollie\nOfelia\nRosio\nSarina\nSidney\nYesica\nAlejandro\nClare\nJayme\nJesica\nJoselin\nKeila\nKiley\nKirstin\nLauryn\nLynette\nMacy\nMaureen\nMinerva\nNicolle\nStaci\nSusie\nYanet\nAlaina\nAlysa\nAmie\nAstrid\nDarian\nEmely\nFanny\nGwendolyn\nJena\nJesenia\nJesse\nJoann\nMarjorie\nMonet\nTawny\nYasmeen\nAdrianne\nBrigitte\nBryana\nChrystal\nElva\nEmilee\nEstephanie\nHelena\nJacquelin\nJoshua\nKarlee\nMarianne\nNikole\nShanae\nVannessa\nVianey\nViolet\nAllyssa\nAmalia\nAngeline\nAnnamarie\nAnthony\nBritany\nCarlee\nCarli\nChristopher\nDaphne\nDavid\nDeisy\nEleanor\nIesha\nJuliet\nKimberley\nLupe\nMakenna\nMara\nMaxine\nPhoebe\nAndrew\nAndria\nAnika\nAnnmarie\nAvery\nDallas\nDeja\nEloisa\nElyssa\nFrancine\nHeaven\nJoseline\nKaterina\nKerri\nKirstie\nKristyn\nLaurie\nMonika\nMonserrat\nNayely\nNia\nNikita\nPearl\nReanna\nRosalie\nSaira\nStefani\nStefany\nYasmine\nAide\nAlycia\nAshlynn\nAshton\nAustin\nAva\nBrigette\nCori\nElia\nElisha\nJanell\nJannette\nJazzmin\nJoelle\nJovanna\nJuan\nKarlie\nKayley\nLatoya\nLeila\nLilly\nManuela\nMarianna\nMarlyn\nMitzi\nRhiannon\nShanna\nShea\nSkylar\nTerry\nTricia\nVicki\nZulema\nBobbi\nBreeana\nBronte\nCharity\nChristal\nConsuelo\nDarcy\nDayana\nDomonique\nHailee\nHana\nJaquelin\nJean\nKeely\nMakenzie\nMarta\nRaylene\nSage\nShelbie\nSuzanna\nThelma\nYaritza\nAlia\nAllie\nAnakaren\nCatrina\nCinthya\nDevan\nGladis\nKalyn\nKarisa\nKerry\nNoemy\nShana\nTiffanie\nUnique\nAbby\nAnel\nAubree\nAyla\nBrook\nCameron\nCarlie\nChelsi\nCherie\nDavina\nDestiney\nDylan\nElissa\nEmerald\nFrankie\nHaylie\nIndia\nKacie\nKianna\nKiera\nKimberlee\nKristian\nLatasha\nLia\nMarla\nMaura\nMayte\nRosemarie\nSarahi\nShanelle\nSymone\nTeresita\nTrinity\nAngelic\nAnnabel\nCorrina\nDalila\nDesire\nJackelyn\nJustin\nKatia\nKeisha\nKelcey\nKorina\nKrystle\nLana\nLeann\nMaranda\nMarcia\nMariaelena\nPrincess\nRene\nRosalba\nRosalva\nShannen\nStephani\nTraci\nAaron\nAbril\nAnamaria\nAngelita\nAnnalisa\nBrittny\nCelena\nChristin\nChynna\nCorey\nDenice\nFelisha\nFranchesca\nHaleigh\nHallie\nHarley\nHollie\nJodie\nJulieta\nKayleen\nKrystina\nPaulette\nRosalia\nSaray\nSocorro\nSuzette\nTrina\nZuleima\nAlena\nAmbar\nAshely\nBrittnee\nCecelia\nCecily\nDaysi\nDominque\nIman\nIsis\nJaycee\nKacey\nKarin\nKatelin\nKatheryn\nKierra\nLacie\nMabel\nMadalyn\nMarilu\nNohemi\nPatrice\nPooja\nSahar\nSiobhan\nSoledad\nSydnie\nTabatha\nTawni\nThania\nValentina\nVenessa\nAja\nAnnelise\nAshli\nBao\nChristen\nDanyelle\nDennise\nHaydee\nJazmyn\nJovana\nKandice\nKiersten\nKori\nLayla\nLilliana\nLizbet\nLogan\nMaddison\nMisha\nNichelle\nPeyton\nPriscila\nSade\nSamara\nSammantha\nShawnee\nTracie\nVania\nVioleta\nYecenia\nAlejandrina\nAlix\nAmparo\nBeth\nBridgett\nBritni\nBrittnie\nCherish\nChina\nCintia\nCody\nCory\nDayna\nDeana\nFallon\nGisela\nJamila\nJanee\nJanie\nJanna\nJenae\nKailee\nKathrine\nKaylyn\nKaylynn\nKia\nKlarissa\nKrysten\nLatisha\nLeandra\nMimi\nMona\nMyrna\nNanci\nNicholas\nNydia\nRacquel\nSheyla\nSkyler\nTatianna\nVianca\nAllegra\nAnai\nBianka\nBrittaney\nCambria\nCherise\nCora\nDanya\nDeidre\nElda\nGema\nIda\nIsaura\nIvanna\nJeannie\nJeniffer\nJolene\nJuliette\nLeigh\nLeonor\nLisbet\nLyndsay\nMatthew\nMellissa\nMontana\nNereida\nPriya\nRikki\nRoberta\nYareli\nYer\nAlyse\nAnayeli\nAsha\nAundrea\nAyana\nBeatris\nBrandee\nChelsy\nClaribel\nClarisa\nDelilah\nFlora\nGabriel\nGinger\nJami\nJaquelyn\nJenelle\nJody\nKandace\nKevin\nKortney\nMagda\nMarbella\nMercedez\nMiguel\nMildred\nNeda\nRayna\nRichelle\nShaniece\nShawn\nSindy\nStormy\nValarie\nWendi\nYahaira\nYuri\nAlyssia\nAmara\nAmberly\nAnyssa\nAria\nAura\nBrisa\nCathleen\nCharmaine\nChelsee\nCindi\nClarice\nColette\nCristian\nCristy\nDena\nElaina\nElla\nEssence\nGeena\nIlse\nJanett\nJasmyn\nJodi\nKelsy\nKeri\nLani\nLianna\nLiz\nMaegan\nMalissa\nMarilynn\nMarley\nMaryanne\nMarylou\nMicah\nMina\nNisha\nRhonda\nSamatha\nShani\nShari\nSienna\nStephania\nSunny\nYarely\nZoey\nZuleyma\nAcacia\nAdelina\nAleena\nAnisa\nAnnika\nAriella\nAubrie\nAudra\nAudrianna\nBlake\nBrandon\nBreonna\nBrooklyn\nChanell\nCheri\nDara\nElana\nErendira\nEvan\nGillian\nHali\nJana\nJanay\nJazzmine\nJeanine\nJennyfer\nJonathan\nJosselyn\nKalie\nKamille\nKaryn\nKenzie\nKeren\nKyle\nLee\nLeeann\nLinsey\nMarielle\nMarika\nMarkie\nMay\nMichell\nNellie\nNereyda\nNicola\nRobert\nRosanna\nSequoia\nShyanne\nTatyana\nTera\nAlayna\nAlisia\nAmira\nAnalisa\nAnaly\nAnnemarie\nAnya\nAya\nBrieanna\nBrionna\nBrynn\nCandelaria\nCarmela\nCharissa\nCorrine\nCydney\nDalena\nDejanae\nDorian\nEster\nFrancisco\nFrida\nGretchen\nGricelda\nHalie\nHarmony\nInes\nJaclynn\nJazmyne\nJenni\nJoleen\nJorge\nJoslyn\nKelcie\nLeonela\nLexus\nLondon\nLouise\nLynda\nMaritsa\nMerissa\nMyranda\nRaelene\nRhea\nRianna\nSavanah\nSean\nSerenity\nShira\nSonja\nStarr\nSteven\nTesla\nTrang\nValery\nVannesa\nVilma\nWinnie\nAdeline\nAmaris\nAnalise\nAnisha\nAshanti\nAurelia\nBella\nBobbie\nBrielle\nCarlos\nCassondra\nChandra\nConcepcion\nCorrie\nDanisha\nDeyanira\nDrew\nElida\nElle\nEllie\nEstella\nEugenia\nEvette\nIlene\nIzamar\nJaimee\nJalisa\nJeanne\nJeffrey\nJocelyne\nKaelyn\nKailyn\nKasie\nKati\nKaya\nLilibeth\nLisset\nLora\nMandi\nMariza\nMarquisha\nMiracle\nPaisley\nPatsy\nPetra\nRena\nRonisha\nRosana\nRyann\nSahara\nSalena\nSamira\nSayra\nStephenie\nTamar\nTatum\nVera\nVickie\nAlesha\nAnali\nAngeles\nArcelia\nBritnee\nBryn\nCathryn\nCesilia\nChristi\nCrysta\nDanelle\nDanna\nDasha\nDenisha\nDestini\nDixie\nEdlin\nErinn\nEstephania\nEve\nJosette\nJourdan\nJulisa\nJune\nKa\nKala\nKatlin\nKatya\nKaycee\nKaylen\nKeana\nKeyla\nKimberlyn\nKristiana\nKyleigh\nLakeisha\nLinh\nLizzet\nLluvia\nLucila\nLuis\nMarilin\nMarivel\nMelyssa\nMercy\nNicollette\nNiki\nNubia\nPeggy\nRebecka\nRenata\nRio\nRosalyn\nRosamaria\nSabina\nSharlene\nSondra\nTonisha\nTrinidad\nTyra\nVictor\nWilliam\nAbbey\nAlexsandra\nAnastacia\nArlette\nAyesha\nBaby\nBibiana\nBlaire\nCady\nCamila\nCarson\nDani\nDebora\nFarrah\nFaye\nGisselle\nIvon\nJacquelynn\nJavier\nJaymie\nJesika\nJimena\nJoseph\nJulian\nKallie\nKamilah\nKarena\nKathie\nKayli\nKirstyn\nLaci\nLaila\nLili\nLizzette\nMacie\nMadisen\nMalika\nMalina\nMarguerite\nMarion\nMellisa\nMilagros\nMyesha\nNely\nOctavia\nOscar\nPatty\nPayton\nRacheal\nRebeka\nRenae\nRylee\nSamuel\nSavana\nShantell\nStacia\nStar\nStephen\nSydnee\nTaelor\nTarah\nTeri\nTerri\nVianney\nWesley\nZulma\nAidee\nAlea\nAli\nAngelia\nAnnalise\nAntonio\nArianne\nArlyn\nAryana\nAryn\nBaylee\nBerenise\nCaitlan\nCandida\nCari\nDarla\nDeidra\nDelmy\nDivya\nDoreen\nElisabet\nElizabet\nGenna\nGreta\nHolland\nIlana\nIndigo\nInez\nJaleesa\nJames\nJanelly\nJaylene\nJerica\nJohn\nJorden\nKassidy\nKeeley\nKenisha\nKeyana\nKiah\nKiani\nKinsey\nLacee\nLeana\nLiberty\nLila\nLiset\nLucille\nMaile\nMalinda\nMarcy\nMarily\nMaryjane\nMarysol\nMika\nMitzy\nMonae\nOmar\nPang\nPatience\nPortia\nRemy\nRichard\nSapphire\nShaniqua\nSheri\nStefania\nTherese\nTiera\nTorie\nTrista\nVivianna\nXochilt\nAkilah\nAlexys\nAmani\nAnaiz\nAnaiza\nAnalicia\nAnnabelle\nAraseli\nArleen\nAvalon\nBabygirl\nBenita\nBerlyn\nBrea\nBreauna\nBreeann\nCali\nCamilla\nCandis\nCarmina\nChia\nChristianna\nCodi\nConnor\nCrista\nCristine\nDajanae\nDannielle\nDaria\nDarlyn\nDeandra\nDinora\nEboni\nEduardo\nEleni\nFarah\nFernando\nFlorence\nGracie\nHenna\nIsabela\nIsrael\nJacob\nJanis\nJayde\nJaymee\nJeanie\nJenee\nJenessa\nJessi\nJewel\nJocelynn\nJordana\nJoycelyn\nJuliann\nKathlyn\nKaylene\nKeara\nKeiko\nKenna\nKymberly\nLashawn\nLashay\nLatrice\nLindy\nLiseth\nLoretta\nLynsey\nMaia\nMariaguadalupe\nMarlee\nMartika\nMartiza\nMerari\nMilan\nMontserrat\nMyriam\nNalani\nNatalee\nNuvia\nPenelope\nPenny\nPilar\nPresley\nPriyanka\nRachell\nRaechel\nRaisa\nReena\nRiana\nSana\nShanee\nSheree\nSky\nSonam\nSteffany\nSue\nSulema\nSuleyma\nSuzy\nTalisa\nTisha\nTorri\nWillow\nXochil\nYamilet\nYara\nYoseline\nYuridia\nZahra\nZully\nAdina\nAlexi\nAlivia\nAllysa\nAlora\nAmbrosia\nAmethyst\nAmi\nAn\nAnaisa\nAnjali\nAnnalee\nArlena\nAudriana\nBriauna\nBritnie\nBrittanee\nCaitlynn\nCarrissa\nCassaundra\nCera\nCharisse\nChasity\nChaya\nCherry\nChiara\nCiarra\nColby\nCristin\nDarien\nDeanne\nDeysi\nEllyn\nEmmeline\nEric\nEvelia\nFelecia\nHaidee\nHellen\nHolli\nIdalia\nJamesha\nJayne\nJeanelle\nJeannine\nJennefer\nJoceline\nJohnna\nJoi\nJordin\nJordon\nJulienne\nKai\nKalena\nKandy\nKarah\nKatey\nKatheryne\nKathryne\nKatlynn\nKatty\nKayle\nKaytlin\nKhadija\nKimia\nKrystin\nLatifah\nLatonya\nLeeanne\nLillie\nLizabeth\nLizett\nLorin\nLyndsie\nMadelaine\nMallorie\nMaren\nMargie\nMargo\nMargot\nMariadejesus\nMaricarmen\nMarin\nMarrissa\nMaryah\nMeliza\nMelodie\nNakia\nNicholette\nNoelani\nNoor\nPorsha\nRachele\nRaina\nRana\nRebekka\nRegan\nRhianna\nShane\nShanell\nShantal\nShante\nShasta\nSheridan\nSilva\nSpencer\nTalar\nTami\nTiare\nTorey\nUrsula\nVanity\nVeronika\nVivien\nXenia\nXimena\nYael\nYaneli\nZaida\nZoila\nAdreanna\nAislinn\nAndreana\nAndres\nAntionette\nAntonette\nArgelia\nAriane\nAriela\nArmando\nAspen\nAyanna\nBerenis\nBeronica\nCarmelita\nCaterina\nChannel\nChanning\nChastity\nChoua\nChyna\nCinnamon\nCorie\nDanyell\nDarleen\nDelfina\nDemetria\nEdgar\nEdward\nElba\nElysia\nEstephany\nEvelina\nGaby\nGena\nGenessis\nGer\nGisel\nGuillermina\nHermelinda\nHoua\nIndira\nIvett\nJalissa\nJanai\nJaneli\nJaspreet\nJayna\nJennafer\nJoey\nJolie\nKacy\nKameron\nKarishma\nKarolyn\nKassondra\nKatalina\nKaylah\nKeanna\nKeshia\nKirsti\nLai\nLeona\nLianne\nLisandra\nLois\nMackenna\nMarcelina\nMarkeisha\nMarlin\nMaryssa\nMatilde\nMattie\nMee\nMeranda\nMichel\nMiesha\nMiriah\nNelida\nNinfa\nNycole\nPhylicia\nPrisilla\nReem\nRoni\nRosalina\nRosalind\nRosaura\nSandi\nSee\nSelenne\nSergio\nShanel\nShanika\nShanise\nSharee\nShavonne\nSheng\nSherri\nSheryl\nShianne\nShoshana\nShyann\nShyla\nSinead\nSirena\nSloane\nStephaine\nSunshine\nSusy\nSuzie\nSydni\nTalya\nTamika\nTannia\nTawnya\nThao\nTierney\nTorrie\nVenus\nVincent\nWanda\nWhitley\nWinter\nYenifer\nYezenia\nYoana\nZara\nAdam\nAdria\nAhsley\nAlecia\nAliza\nAllana\nAlyx\nAmada\nAnahit\nAndra\nAnette\nAnh\nAnjanette\nAnum\nArlin\nAshlea\nAshlei\nBreyanna\nBrian\nCalli\nCandyce\nCarisa\nCeara\nCharisma\nCharlie\nChee\nChi\nCleo\nCorissa\nDaisey\nDaniele\nDarline\nDeena\nDejanee\nDelores\nDenae\nDestinie\nDionna\nDyanna\nEmi\nEmmy\nEnedina\nEulalia\nFelicity\nGail\nGemma\nGeovana\nGiana\nGinny\nGissel\nHarpreet\nHasmik\nHerminia\nJacelyn\nJackelin\nJacquline\nJada\nJael\nJanea\nJannelle\nJasmyne\nJenice\nJenise\nJerrica\nJessyca\nJordann\nJulieann\nKami\nKaris\nKarley\nKaroline\nKaryssa\nKatherin\nKathia\nKaylea\nKaytlyn\nKiarra\nKimber\nKimberlie\nKindra\nKyrsten\nLaken\nLarisa\nLaurissa\nLesli\nLeslye\nLisett\nLorna\nLouisa\nLucinda\nLyssa\nMaleny\nManuel\nMariko\nMario\nMarleen\nMarsha\nMarycruz\nMeghann\nMelany\nMychelle\nNailah\nNathan\nNavneet\nNicki\nNoelia\nPedro\nRicardo\nRoseanna\nRoslyn\nRosy\nRoya\nSacha\nSalma\nSarahann\nScarlet\nShabnam\nShamika\nShanea\nShanique\nSharice\nShay\nShaylee\nShaylene\nShivani\nSonora\nSoraya\nTanairi\nTaylar\nTeal\nTenaya\nTien\nTory\nTyesha\nVerenise\nWinona\nYee\nYeng\nYoanna\nZenaida\nZuleica\nZuri\nAdelaida\nAdreana\nAgnes\nAisling\nAleah\nAlegandra\nAlexxa\nAlise\nAlyce\nAlysse\nAmmy\nAndriana\nAndrianna\nAndrina\nAngella\nAnnaliese\nArantxa\nArika\nAsusena\nBailee\nBecca\nBiviana\nBreanda\nBriann\nBritny\nBrittini\nBrittnay\nBryan\nCailey\nCaley\nCandie\nCaren\nCarolann\nCasaundra\nCassi\nCelestina\nChante\nChyanne\nCitlali\nCitlalli\nCoreen\nCourtnie\nDafne\nDeirdre\nDenielle\nEdlyn\nEdwin\nElianna\nEmmaline\nErick\nEvangeline\nFannie\nGeovanna\nGigi\nHaily\nHalee\nHalley\nHanan\nHoney\nImari\nIrena\nIvania\nIvone\nIvory\nJacalyn\nJacey\nJacklynn\nJacquelyne\nJanina\nJeana\nJenay\nJenica\nJeri\nJina\nJoselyne\nJosephina\nKalia\nKalina\nKarely\nKaylan\nKeiana\nKelci\nKirra\nKyley\nKyrstin\nLadonna\nLan\nLanesha\nLashanique\nLiane\nLilianna\nLindsy\nLinette\nLinnea\nLola\nLoni\nLoraine\nLysette\nMagen\nMaisie\nMalena\nMalisa\nMao\nMarcie\nMaricella\nMariya\nMarkisha\nMarkita\nMarlina\nMarlo\nMaryam\nMarylin\nMarylu\nMayela\nMelaina\nMelony\nMikala\nMiya\nMyriah\nNayelly\nNicholle\nNisa\nOriana\nParadise\nParisa\nPiper\nPolly\nPorsche\nPrescilla\nQuinn\nRadhika\nRaelyn\nRafael\nRayven\nRheanna\nRina\nRonni\nRoseanne\nRoxane\nRudy\nSaida\nSariah\nSarita\nShaila\nShantelle\nShaunice\nShavon\nShelsea\nSherilyn\nShireen\nSilvana\nSinai\nSuleima\nSynthia\nTanesha\nTasia\nTenisha\nThanya\nThea\nTorrey\nTristen\nTylar\nTyresha\nVan\nVaneza\nVienna\nYamileth\nYaneth\nYaquelin\nYocelyn\nYohana\nYovana\nZoua\nAbriana\nAddie\nAddison\nAdriane\nAissa\nAkira\nAlannah\nAlexsis\nAlexxis\nAlida\nAlishia\nAlli\nAlly\nAlvina\nAlyxandra\nAminah\nAnahy\nAnaluisa\nAnay\nAndy\nAnnissa\nArica\nArisa\nAshia\nAysha\nBailie\nBanesa\nBillie\nBiridiana\nBreena\nBriahna\nBrieana\nBrigid\nBrina\nBriona\nBritini\nBritta\nBryce\nCamellia\nCameo\nCaprice\nCarleen\nCarlina\nCarmella\nCaryn\nCasie\nCesia\nChanice\nChelcie\nChelse\nCherelle\nCherokee\nClarisse\nCleopatra\nCodie\nCorrin\nCourtnee\nCruz\nDahlia\nDaisi\nDarling\nDeeanna\nDeisi\nDennis\nDeserie\nDeziree\nDiandra\nDinah\nElicia\nElina\nElma\nEmelia\nEmmalee\nEmy\nEryn\nEvelynn\nFrancheska\nGao\nGenisis\nGiovanni\nGrisel\nHanah\nHerlinda\nHuong\nIrais\nIvan\nJacinda\nJahaira\nJamilah\nJaniece\nJannel\nJazlyn\nJeanna\nJensen\nJessa\nJessalyn\nJesseca\nJessy\nJo\nJoel\nJosselin\nJulieanne\nKady\nKaisha\nKalee\nKaleen\nKarine\nKarleigh\nKaryna\nKassie\nKatina\nKeaira\nKeira\nKellee\nKendal\nKierstin\nKimberli\nKirby\nKrizia\nKrystyna\nKyana\nLaquisha\nLeena\nLela\nLeonardo\nLetisia\nLexi\nLexis\nLorelei\nLorenza\nLucerito\nLyanne\nLynnette\nMa\nMacey\nMaci\nMaiya\nMalaysia\nMalyssa\nMarci\nMarleny\nMarrisa\nMeisha\nMerlin\nMichela\nMinnie\nMira\nMonisha\nMorganne\nMuriel\nNaomy\nNhi\nNichol\nNickole\nNoreen\nNou\nOliva\nOsiris\nPassion\nPeter\nPhuong\nPhyllis\nPriscella\nRaeann\nRaelynn\nRaquelle\nRaul\nRaychel\nRaymond\nReagan\nReba\nReema\nRemi\nRhiana\nRisa\nRivka\nRonnie\nSaba\nSantana\nShakiyla\nShanese\nShannel\nShanti\nShara\nSharae\nShardae\nShawnice\nShayne\nShellie\nSheyenne\nSivan\nSommer\nSonali\nStarla\nSteffani\nStephannie\nSterling\nSulma\nSusannah\nTabetha\nTal\nTaleen\nTamra\nTeagan\nTerilyn\nTheodora\nThi\nThu\nTonie\nTran\nTreasure\nTristan\nValorie\nYanely\nYanette\nYasaman\nYazmine\nYenny\nYocelin\nZachary\nZakiya\nZayra\nZenia\nAbilene\nAdele\nAerial\nAgustina\nAleida\nAlixandria\nAliya\nAliyah\nAllisa\nAllyse\nAlyssamarie\nAmal\nAnamarie\nAndi\nAnessa\nAngelena\nAnnamaria\nAnnel\nAnnessa\nAnny\nAraya\nAriadna\nArisbeth\nArmida\nAshtyn\nAsma\nAsucena\nAudrina\nAundria\nAveri\nAviana\nAviva\nBenjamin\nBerlin\nBethanie\nBetsabe\nBreona\nBrett\nBriselda\nBronwyn\nBrooklynn\nByanka\nCaila\nCalla\nCami\nCapri\nCarleigh\nCarlota\nCarlyn\nCarrisa\nCassey\nCatarina\nCatharine\nChampagne\nChanae\nCharis\nCharles\nCitlaly\nClair\nCollette\nCortnie\nDanitza\nDarby\nDarnisha\nDaryl\nDayanna\nDella\nDesirea\nDevina\nDevonna\nDevora\nDionne\nDomenica\nDominica\nDunia\nEdwina\nEleana\nElidia\nElsy\nElysa\nEma\nEmelie\nEmery\nEna\nErendida\nErik\nEryka\nEstefanie\nFantasia\nFrancia\nFreya\nFritzi\nGabriele\nGagandeep\nGenevie\nGenova\nGiovana\nGiulia\nGiuliana\nGlendy\nGreer\nHa\nHailie\nHanh\nHarriet\nHien\nHong\nHunter\nItzia\nIvet\nJacinta\nJacky\nJacy\nJadira\nJakeline\nJaneen\nJanely\nJanielle\nJanira\nJannely\nJennica\nJenniffer\nJerry\nJodeci\nJoscelyn\nJudit\nJulio\nJustice\nKadie\nKaeli\nKalin\nKareena\nKarol\nKasi\nKatharina\nKathya\nKatryna\nKayci\nKaydee\nKemberly\nKennisha\nKennya\nKeyanna\nKeyona\nKhadijah\nKierstyn\nKiran\nKirsty\nKiyana\nKodi\nKorinne\nKristan\nKristel\nKristena\nKristyna\nKyanna\nKyara\nKymberlee\nKyrie\nLaney\nLatanya\nLaureen\nLaurin\nLeighann\nLibby\nLigia\nLilit\nLivia\nLivier\nLizzeth\nLolita\nLoreal\nLorie\nLuana\nLucina\nLusero\nLusine\nLynne\nMackenzi\nMadelynn\nMadyson\nMae\nMaeve\nMakena\nMariadelcarmen\nMarialuisa\nMarisabel\nMarita\nMarlayna\nMarlissa\nMarquesha\nMartin\nMarybeth\nMaryelizabeth\nMaryellen\nMaurissa\nMeena\nMeera\nMele\nMeriah\nMichaella\nMilena\nMitchelle\nNai\nNaly\nNarine\nNary\nNatalya\nNeha\nNhu\nNika\nNissa\nOndrea\nOralia\nParris\nPatrisha\nPerlita\nQuanisha\nRaeanne\nRashelle\nRashida\nRia\nRima\nRoselia\nRosi\nRyanne\nSamone\nSanta\nSarahy\nSarena\nSeana\nSedona\nSelenia\nSelma\nShadae\nShae\nShalonda\nShanay\nShandi\nShannan\nSharmaine\nShauni\nShaylyn\nShellby\nShereen\nShoua\nSiena\nSiera\nSilver\nSimona\nSindi\nSinthia\nSolange\nSoua\nSpenser\nSteffanie\nSteffi\nSusanne\nTailor\nTala\nTalin\nTameka\nTanna\nTanzania\nTaralyn\nTawnie\nTayla\nTeanna\nTereza\nTiffiny\nTiyana\nTkeyah\nTrinh\nTristin\nTyana\nTyanna\nTyla\nValencia\nVarsha\nYanett\nYasamin\nYeni\nYuriko\nZarina\nZena\nAdelita\nAdi\nAdrina\nAlan\nAlberto\nAlesandra\nAlessa\nAlexzandra\nAlexzandria\nAlicea\nAline\nAlixandra\nAllen\nAllissa\nAlona\nAlonda\nAlva\nAlyshia\nAmarilis\nAmrit\nAnabell\nAnabelle\nAnalilia\nAnarosa\nAnayely\nAndie\nAndreanna\nAngelika\nAnia\nAnibal\nAnise\nAnjelika\nAnjelina\nApryl\nArlen\nArturo\nAshlen\nAshten\nAshtin\nAsley\nAudrie\nAutum\nAyde\nAzalea\nAzusena\nBaleria\nBayley\nBerta\nBetzaida\nBetzy\nBianey\nBonita\nBriannah\nBrienna\nBritani\nBritteny\nBrynne\nByanca\nCailin\nCaitlen\nCamelia\nCaresse\nCarin\nCarlene\nCarlotta\nCarolynn\nCassandre\nCaylee\nCaylie\nCesar\nChantell\nChelsa\nCheyanna\nChole\nChris\nChristianne\nChyann\nClaudette\nClaudine\nColeen\nCorinthia\nCourtni\nCristela\nCyndi\nCyndy\nCynthya\nCyntia\nDacia\nDale\nDanette\nDannah\nDanny\nDanyel\nDarci\nDarienne\nDarlin\nDejanique\nDelanie\nDemitria\nDesaray\nDeseree\nDesiray\nDestany\nDesteny\nDevynn\nDeysy\nDezirae\nDilia\nDomenique\nDonielle\nDonisha\nDyana\nEbonee\nEddie\nElexis\nEli\nElisabel\nElysha\nEman\nEmber\nEneida\nEugene\nFabian\nFeliza\nFranki\nGianni\nGilda\nGlory\nGoldie\nGracia\nGurpreet\nHalle\nHannan\nHarlee\nHattie\nHelene\nHillarie\nHortencia\nIleen\nIrina\nIzabella\nJalina\nJamaica\nJamilla\nJamisha\nJanaya\nJanaye\nJanneth\nJanny\nJason\nJaylyn\nJazmen\nJelena\nJeni\nJerrika\nJewels\nJezabel\nJohnnie\nJohnny\nJolisa\nJordanne\nJordynn\nJuliane\nKaelin\nKahla\nKaile\nKaili\nKaily\nKaitlan\nKalani\nKamryn\nKanani\nKaneisha\nKao\nKaori\nKarie\nKarlene\nKarrie\nKasia\nKatelynne\nKateri\nKathlene\nKenneth\nKennia\nKeona\nKerianne\nKerrie\nKersten\nKeyonna\nKimiko\nKiri\nKorena\nKory\nKrishna\nKristianna\nKylynn\nLakisha\nLanae\nLane\nLanisha\nLanita\nLaquita\nLashae\nLaticia\nLauran\nLavinia\nLeesa\nLenora\nLeora\nLesslie\nLetitia\nLetty\nLeyla\nLida\nLisamarie\nLisseth\nLissett\nLoryn\nLuciana\nLucretia\nLuisana\nLynna\nMadelin\nMadina\nMahsa\nMaiquel\nMaite\nMakaila\nMalorie\nMalory\nMandeep\nMaral\nMariajose\nMariella\nMariely\nMarili\nMarinna\nMarline\nMarsela\nMarykate\nMaryrose\nMayeli\nMccall\nMeggan\nMelia\nMerly\nMerlyn\nMicayla\nMikela\nMillicent\nMirta\nMyisha\nNa\nNadya\nNana\nNandi\nNaseem\nNatashia\nNathali\nNeelam\nNeiba\nNena\nNerissa\nNgoc\nNiccole\nNikia\nNoriko\nNour\nNuria\nNyssa\nOrly\nOtilia\nPaul\nPhoenix\nPrisma\nQuincy\nRaeana\nRandy\nRavyn\nRayanna\nReanne\nRebeccah\nRebekkah\nRigoberto\nRonesha\nRoselyn\nRossy\nRuben\nRubicela\nRubie\nRyleigh\nSabreena\nSaige\nSamar\nSarra\nSaundra\nScott\nShakila\nShalimar\nShalise\nShalynn\nShanta\nSharina\nShaunte\nShawnte\nShayanne\nSherrie\nShirin\nShreya\nSiara\nSimonne\nSloan\nSoleil\nStaphany\nStephane\nStephanee\nStevi\nStormie\nSully\nSydne\nTai\nTalina\nTana\nTanairy\nTaneisha\nTaniesha\nTarra\nTashina\nTesa\nTesia\nTiarra\nTiauna\nTitiana\nTomasa\nTommi\nTressa\nUyen\nVeronique\nVivienne\nVy\nWhittney\nWilma\nYanelly\nYenia\nYing\nYsabel\nYvett\nZainab\nZoraida\nZuleika\nAbbie\nAdileni\nAfton\nAinsley\nAiram\nAkayla\nAlda\nAleesha\nAleksandra\nAleshia\nAlexes\nAliesha\nAlin\nAlisyn\nAllyn\nAllysha\nAlonna\nAlthea\nAmandeep\nAmberlyn\nAmina\nAmna\nAmorette\nAmrita\nAnacristina\nAnahis\nAnaliese\nAnastassia\nAnastazia\nAndera\nAndre\nAnique\nAnjuli\nAnneke\nAnnisa\nAntonina\nArabella\nArden\nArilene\nArin\nArissa\nArline\nArmanda\nArpine\nArriana\nAryanna\nAshleyann\nAshlin\nAsya\nAthina\nAubry\nAudreanna\nAugusta\nAyah\nAylin\nAziza\nBahar\nBanessa\nBelem\nBelle\nBreiana\nBrenae\nBriane\nBriar\nBriceida\nBritanie\nBrittiny\nBriyana\nBryanne\nBryonna\nCallan\nCally\nCamillia\nCandra\nCaralee\nCaressa\nCarey\nCarine\nCarlin\nCarolyna\nCasondra\nCassy\nCatelyn\nCatherin\nCatherina\nCathrine\nCatlin\nCeaira\nCerise\nChandni\nCharise\nCharleen\nCharnae\nChau\nChelcy\nChelesa\nCheree\nCherrelle\nCheyene\nChristiane\nCiana\nCidney\nCienna\nClarita\nColumba\nConchita\nCorin\nCorri\nCorynn\nCristabel\nCristen\nCristiana\nCrystina\nCydnee\nCymone\nDaisha\nDalilah\nDamali\nDamisha\nDaneisha\nDaniell\nDanita\nDao\nDarcie\nDarrian\nDashawn\nDasia\nDavisha\nDaysha\nDedra\nDeeana\nDeedee\nDelina\nDelmi\nDelphine\nDenia\nDenis\nDeonna\nDesarae\nDestanie\nDezarae\nDezaray\nDian\nDominic\nDoneisha\nDonya\nDustin\nEbonie\nEcho\nEdyth\nEloise\nEnid\nErina\nErlinda\nErnestina\nEsli\nEstrellita\nEthel\nEun\nEvann\nEvie\nEvita\nEvonne\nFabiana\nFelisa\nGenesee\nGennesis\nGeorge\nGeorgette\nGerardo\nGicela\nGlenna\nGregory\nGustavo\nGwen\nHaneen\nHaven\nHayde\nHayden\nHayli\nHector\nHeena\nHira\nHlee\nHuda\nItalia\nJacie\nJaelyn\nJamey\nJamielee\nJanesha\nJaney\nJannine\nJaritza\nJasleen\nJaslyn\nJasmen\nJayla\nJaymi\nJazz\nJelisa\nJene\nJenell\nJenesis\nJennae\nJennette\nJensine\nJeremy\nJerri\nJessia\nJinny\nJohna\nJohnisha\nJolina\nJonell\nJoni\nJoselynn\nJoslynn\nJosue\nKacee\nKaci\nKaia\nKailynn\nKaitlyne\nKaleena\nKalli\nKalynn\nKamaria\nKana\nKandis\nKanisha\nKapri\nKarime\nKarinna\nKarisma\nKarmen\nKarrah\nKassaundra\nKassey\nKaterine\nKathleena\nKathrin\nKattie\nKayce\nKc\nKea\nKeaton\nKebrina\nKeiara\nKeiry\nKela\nKellianne\nKelsee\nKena\nKendyl\nKenny\nKeonna\nKera\nKesha\nKeturah\nKhristina\nKimberlyann\nKimmy\nKionna\nKirandeep\nKiya\nKiyomi\nKodie\nKortni\nKrupa\nKrystine\nKya\nKymberli\nKyndra\nKyrstie\nLabrea\nLachelle\nLaquesha\nLaronda\nLashonda\nLatesha\nLatiana\nLaurita\nLayne\nLeia\nLeigha\nLessly\nLevi\nLibni\nLilybeth\nLing\nLinzy\nLissete\nLlesenia\nLorianne\nLucas\nLuiza\nLurdes\nLus\nLyna\nLynae\nLyndsi\nLyric\nMadelyne\nMadilyn\nMadisyn\nMagan\nMaha\nMahalia\nMakala\nMakeda\nMaleni\nMalikah\nManal\nManjot\nMarah\nMarco\nMarena\nMargaux\nMargret\nMariaisabel\nMariann\nMarietta\nMarilee\nMarimar\nMaritssa\nMariyah\nMarlana\nMarleni\nMarlenne\nMarnee\nMarquita\nMartisha\nMarvella\nMarycarmen\nMarylyn\nMarysa\nMax\nMaygan\nMckayla\nMckinzie\nMeagen\nMechelle\nMedina\nMegann\nMelaine\nMelania\nMerina\nMerisa\nMesha\nMichal\nMilagro\nMiles\nMinh\nMirtha\nMoira\nMolli\nMonee\nMonserat\nMya\nNadeen\nNaira\nNairi\nNajah\nNamrata\nNatividad\nNavil\nNayelli\nNazia\nNeftali\nNeftaly\nNeva\nNiamh\nNicky\nNidhi\nNikkole\nNikolette\nNiya\nNoa\nNury\nOcean\nOyuki\nPage\nPahoua\nPalak\nParissa\nPatrick\nPatrisia\nPeaches\nPhilicia\nPorche\nPorshay\nQiana\nQueenie\nRae\nRaeanna\nRaena\nRahwa\nRaine\nRamandeep\nRamon\nRaveena\nRaya\nRayleen\nRaynisha\nRebeckah\nRianne\nRicki\nRika\nRiki\nRilee\nRileigh\nRomina\nRosalee\nRosalynn\nRosenda\nRuthie\nRylie\nSabine\nSabrena\nSaki\nSalome\nSalvador\nSamanth\nSamaria\nSamina\nSavina\nSayuri\nSelah\nSemaj\nSenaida\nSendi\nSeptember\nSerah\nSerene\nShaela\nShakia\nShameka\nSharai\nShareen\nSharleen\nShatara\nShaunna\nShawnie\nShayda\nShealyn\nSheeva\nShekinah\nShiela\nShiva\nSimran\nSoila\nSol\nSona\nSoraida\nSpecial\nStefanny\nSusi\nSylvie\nTaeler\nTahlia\nTali\nTam\nTammi\nTanea\nTanika\nTaniqua\nTaniya\nTarryn\nTatjana\nTaya\nTeena\nTempest\nTeressa\nThanh\nThuy\nThy\nTijera\nTirzah\nTony\nToree\nTriana\nTrudy\nTuyet\nTyisha\nUriel\nVaness\nVanna\nVernice\nVikki\nViolette\nVivianne\nWhitnee\nXaviera\nXia\nXitlali\nXotchil\nYadria\nYajayra\nYaminah\nYancy\nYennifer\nYoselyn\nYosselin\nYunuen\nZakia\nZenobia\nZina\nZoie\nZoya\nZuly\nJessica\nAshley\nStephanie\nJennifer\nElizabeth\nSarah\nSamantha\nAmanda\nMaria\nVanessa\nNicole\nMichelle\nMelissa\nEmily\nJasmine\nTaylor\nLauren\nBrittany\nRachel\nVictoria\nDanielle\nAlexandra\nAlyssa\nAndrea\nKimberly\nMegan\nAlexis\nRebecca\nDiana\nKatherine\nBrenda\nChristina\nCynthia\nJacqueline\nKayla\nLaura\nCrystal\nAlejandra\nAmber\nNatalie\nBrianna\nHannah\nGabriela\nMonica\nKaren\nAngelica\nAna\nErika\nMarissa\nSara\nCourtney\nChelsea\nVeronica\nTiffany\nKelsey\nKarina\nErica\nDaisy\nNancy\nAdriana\nAmy\nCindy\nYesenia\nGuadalupe\nCassandra\nBriana\nHeather\nKelly\nBianca\nMayra\nAllison\nShelby\nJocelyn\nJulia\nBreanna\nSandra\nMary\nAlexandria\nLeslie\nSabrina\nAngela\nAnna\nKassandra\nShannon\nHaley\nOlivia\nAlicia\nClaudia\nChristine\nEvelyn\nJazmin\nCatherine\nWendy\nMorgan\nPatricia\nKaitlyn\nBrooke\nPriscilla\nJasmin\nErin\nMonique\nKarla\nCristina\nRosa\nAbigail\nValerie\nMariah\nPaige\nCaitlin\nJordan\nDesiree\nMadison\nJamie\nKatie\nLisa\nJoanna\nBrittney\nDenise\nLindsey\nDaniela\nKristen\nKatelyn\nJenna\nJanet\nEmma\nKathryn\nSavannah\nMelanie\nIsabel\nKristina\nLinda\nSierra\nTania\nAriana\nCheyenne\nLiliana\nAlexa\nJulie\nApril\nRuby\nRaquel\nGabrielle\nVivian\nValeria\nJazmine\nKrystal\nCecilia\nGrace\nDestiny\nEsmeralda\nSophia\nKatrina\nLindsay\nCarolina\nKathleen\nJenny\nSydney\nMarisa\nHayley\nSonia\nMarlene\nChloe\nMartha\nMiranda\nTanya\nLeticia\nDominique\nGloria\nTeresa\nMadeline\nMarina\nMarisol\nLorena\nMiriam\nYvette\nAlma\nCarmen\nAriel\nSusana\nMaritza\nHolly\nBlanca\nKaitlin\nCarla\nGabriella\nHailey\nBeatriz\nMolly\nAngelina\nJeanette\nGiselle\nMackenzie\nLeah\nAlison\nGina\nMaribel\nMercedes\nCaroline\nJade\nCamille\nJustine\nViviana\nWhitney\nAudrey\nKristin\nMeghan\nAraceli\nCarina\nDeanna\nMargarita\nNaomi\nAshlee\nMargaret\nSummer\nNatasha\nTatiana\nRachael\nTara\nCarly\nMichaela\nRocio\nYvonne\nRebekah\nThalia\nClaire\nPerla\nYadira\nFelicia\nLizbeth\nMariana\nMarilyn\nSusan\nEdith\nBrandi\nBethany\nTori\nIrene\nHeidi\nCristal\nDana\nAngel\nElena\nSandy\nJillian\nKendra\nRuth\nSharon\nClarissa\nGenesis\nNoemi\nPaulina\nYolanda\nJanelle\nAdrianna\nEsther\nIsabella\nKrista\nStacy\nDulce\nBerenice\nSofia\nCaitlyn\nTina\nYaritza\nNichole\nZoe\nBailey\nHelen\nMaya\nCasey\nJuliana\nKathy\nKendall\nLucia\nMariela\nCeleste\nJaclyn\nJacquelyn\nKylie\nArlene\nFabiola\nGriselda\nRoxana\nEva\nKara\nKaylee\nYasmin\nJudith\nRenee\nTyler\nCelina\nLydia\nNorma\nAllyson\nAnnie\nKirsten\nVirginia\nCarolyn\nMarie\nIris\nPamela\nStacey\nReyna\nSilvia\nTheresa\nAlisha\nStephany\nSerena\nAmelia\nCandice\nElaine\nLizette\nAlissa\nNina\nPaola\nMelody\nAlice\nCharlotte\nDaniella\nJosephine\nLuz\nTamara\nTiana\nYessenia\nAnne\nArianna\nJessie\nMeagan\nKiara\nAutumn\nDiane\nElisa\nAshleigh\nBridget\nCandace\nChelsey\nDevon\nDarlene\nKarissa\nCarissa\nJohanna\nMelinda\nNicolette\nTessa\nBrandy\nCiara\nAimee\nLily\nBarbara\nKiana\nAnissa\nJanette\nDeborah\nSelina\nLizeth\nSylvia\nSheila\nGladys\nHanna\nLucero\nRaven\nFatima\nRose\nConnie\nNatalia\nPaula\nAngie\nCierra\nTracy\nBreana\nBritney\nMaricela\nAngelique\nCassidy\nEllen\nFrancesca\nKristine\nFaith\nMaira\nIrma\nKelli\nColleen\nRoxanne\nSally\nAurora\nJane\nClara\nElise\nKellie\nSasha\nElisabeth\nJaqueline\nRebeca\nAubrey\nChristian\nNadia\nSelena\nViridiana\nGraciela\nHillary\nNayeli\nSelene\nAlana\nMadeleine\nLacey\nMagdalena\nRachelle\nChanel\nCorina\nMichele\nNathalie\nIngrid\nKatelynn\nMarisela\nMelina\nMia\nDiamond\nIvette\nJuana\nTayler\nEricka\nIvonne\nRobin\nSavanna\nTabitha\nAdrienne\nGiovanna\nJoana\nLarissa\nIliana\nBria\nKenia\nLucy\nMallory\nAlina\nBrenna\nBryanna\nMai\nRiley\nShirley\nEileen\nFrances\nMikayla\nChandler\nItzel\nLillian\nAsia\nDonna\nEstefania\nNikki\nJordyn\nSarai\nShawna\nCelia\nGenevieve\nRegina\nShanice\nCoraima\nYazmin\nAshlyn\nKate\nLourdes\nRosario\nAlexia\nCarol\nKelsie\nNoelle\nAlondra\nAnita\nNataly\nRubi\nTaryn\nAnnette\nJanice\nKira\nAileen\nEbony\nFernanda\nJoanne\nTalia\nKristy\nMckenna\nSalina\nAlexus\nBertha\nLorraine\nSimone\nSonya\nDevin\nToni\nAdilene\nCinthia\nJoselyn\nArielle\nJaime\nJuanita\nLidia\nRita\nAlisa\nBeverly\nDesirae\nKyra\nNora\nAnn\nIvy\nJoyce\nJulianne\nKaila\nRobyn\nSophie\nTrisha\nCatalina\nCheyanne\nChristy\nBelinda\nJeannette\nKasey\nBridgette\nMikaela\nPauline\nKatharine\nMckenzie\nMireya\nStefanie\nTammy\nChantal\nDestinee\nGeorgina\nShayla\nAlyson\nAnahi\nBelen\nDanica\nDelia\nEstefani\nLeilani\nRosemary\nVanesa\nBonnie\nCassie\nEsperanza\nReina\nRochelle\nAracely\nBrianne\nChelsie\nCorinne\nDalia\nGrecia\nJanae\nJennie\nMagaly\nRyan\nAnastasia\nCasandra\nChantel\nDolores\nFlor\nOlga\nYajaira\nAnais\nAthena\nHilda\nHope\nCharlene\nJacklyn\nMakayla\nMaricruz\nJudy\nLaurel\nBernadette\nCara\nCarrie\nJulianna\nLayla\nNadine\nParis\nShayna\nBrianda\nDeyanira\nDianna\nJoy\nKenya\nLesly\nVicky\nDelaney\nKailey\nMelisa\nMicaela\nCiera\nEunice\nIsamar\nLisette\nMisty\nPaloma\nSuzanne\nTess\nAreli\nBeatrice\nDebbie\nLuisa\nPrecious\nYessica\nDorothy\nLena\nSherry\nBreanne\nCathy\nDamaris\nDemi\nElsa\nJosefina\nKatarina\nKayleigh\nLeanne\nLupita\nMaggie\nBetsy\nCallie\nCortney\nEliza\nEvelin\nJessenia\nJessika\nKyla\nLilian\nAmerica\nArely\nGianna\nHaylee\nLesley\nMagali\nMyra\nAlanna\nAntoinette\nDakota\nDaniel\nJanine\nLeanna\nMoriah\nRoxanna\nScarlett\nYasmine\nBrittani\nCandy\nIsabelle\nJanessa\nJulissa\nKari\nKristi\nLissette\nMarlena\nSadie\nXiomara\nAlexandrea\nEden\nJaneth\nKarly\nKatlyn\nKelley\nKylee\nLilia\nTiara\nVerenice\nYoselin\nCoral\nKaitlynn\nKasandra\nMarcella\nShaina\nTiffani\nAnabel\nCeline\nDenisse\nMadelyn\nAlexander\nAlysha\nAnjelica\nChrista\nConsuelo\nHaleigh\nImani\nJovanna\nMarcela\nMindy\nRandi\nCelene\nDayana\nEliana\nElvia\nEmilie\nEstefany\nJackie\nMariel\nAzucena\nChristie\nDarian\nElvira\nEmely\nEmilee\nKristie\nNia\nTianna\nXochitl\nEleanor\nElyse\nLynn\nSavanah\nSerina\nDallas\nEstela\nFaviola\nJesenia\nJovana\nKatelin\nKristal\nLea\nMarielena\nMirian\nStefani\nTracey\nBernice\nDina\nDomonique\nHailee\nJaimie\nJesse\nKrysta\nMaxine\nMichael\nRosalinda\nAshlie\nAshly\nFrancine\nHazel\nJocelin\nJosie\nJuliet\nJustina\nKali\nKelsea\nLara\nMacy\nMarlen\nThania\nAntonia\nBetty\nJoselin\nLina\nNelly\nYanira\nYasmeen\nYesica\nAva\nAvery\nBreeanna\nChristiana\nDevyn\nEmilia\nGeraldine\nGlenda\nJackeline\nLiana\nMariam\nSkye\nStella\nTasha\nTawny\nVioleta\nAlex\nAmalia\nAndreina\nBrandie\nIsela\nJazmyn\nJose\nJoseline\nKaylyn\nNallely\nValentina\nBobbie\nCayla\nDaphne\nDeja\nDylan\nFrancisca\nHeidy\nIlse\nJesica\nKim\nKourtney\nLizet\nMirna\nPa\nRhiannon\nStevie\nTia\nAdela\nAmairani\nAshlynn\nBrigitte\nBryana\nCarley\nIleana\nJocelyne\nJohana\nKaley\nKiley\nMakenzie\nSade\nVannessa\nZaira\nZulema\nAbby\nAisha\nCheryl\nDora\nEdna\nFiona\nHallie\nJenifer\nJesus\nKaylie\nLori\nLynette\nMandy\nMara\nRikki\nRosio\nShelly\nAlysia\nGladis\nHana\nIvana\nJill\nKaylin\nKierra\nLoren\nMonika\nNoel\nAlba\nAlysa\nAstrid\nBrook\nCameron\nGisela\nGisselle\nHelena\nHilary\nJonathan\nJoshua\nKaela\nLisbeth\nMaryann\nNayely\nRosie\nTerra\nTricia\nViolet\nAlejandro\nAnthony\nBlair\nBreann\nCelena\nDawn\nDoris\nEstrella\nGeorgia\nKarli\nKelsi\nLeila\nLexus\nMollie\nPhoebe\nPricilla\nReanna\nShyanne\nSidney\nTanisha\nYaneli\nAllie\nAngeline\nCecelia\nCristian\nElsie\nJamila\nJanel\nJena\nJoan\nJoelle\nKiersten\nKimberley\nLacy\nMakenna\nMalia\nMarianna\nMaureen\nMeredith\nPearl\nSkylar\nTiffanie\nChantelle\nCorinna\nDavina\nDebra\nDeisy\nElva\nJannet\nJolene\nLyndsey\nMeaghan\nMonserrat\nNikole\nRaylene\nShauna\nStacie\nAdrian\nAmaris\nAnyssa\nAubree\nBecky\nCharity\nChristopher\nClare\nDayna\nFanny\nFrankie\nJanell\nKaterina\nKaty\nKristyn\nLeann\nOfelia\nPayton\nSage\nShana\nSkyler\nSoledad\nTatyana\nAbril\nAnisa\nCarlie\nDanika\nEvangelina\nJacquelin\nKarlee\nKimberlee\nKrystina\nMirella\nTierra\nUnique\nVianca\nYareli\nAlaina\nAlessandra\nAnakaren\nAni\nAnnamarie\nBrandon\nDania\nDavid\nDestiney\nElia\nFrancis\nJana\nKacey\nKarley\nKarlie\nKianna\nKiera\nMarian\nMitzi\nSarahi\nShelbi\nStaci\nYahaira\nYanet\nAida\nAundrea\nBrea\nBritany\nChante\nChrystal\nCori\nElissa\nEryn\nEstephanie\nHalle\nHollie\nHunter\nJuliette\nKacie\nKrystle\nMarla\nMarlyn\nMarta\nMartina\nRaina\nTrina\nTrinity\nAmbar\nAngeles\nBree\nBreonna\nCinthya\nCorey\nDeana\nDianne\nGeneva\nIndia\nJasmyn\nJoann\nKia\nKorina\nLogan\nNiki\nRosangelica\nSalena\nSaray\nSarina\nShantel\nVianey\nWinnie\nAda\nAnayeli\nAnnabel\nAshton\nBianka\nDarcy\nGabriel\nJean\nJosselyn\nKhadijah\nLana\nMaia\nMarilu\nMaura\nNatali\nVenessa\nBrittanie\nBrittni\nDanae\nDrew\nElaina\nErendira\nGema\nGillian\nGwendolyn\nHali\nKarena\nKendal\nKeri\nKevin\nKirstin\nLauryn\nMarianne\nNathaly\nNicholas\nPriscila\nRayna\nRosalba\nSamara\nScarlet\nShawnee\nSheena\nSusie\nTonya\nAndrew\nAnika\nAnnelise\nBreeana\nBrisa\nBriseida\nChanelle\nConstance\nElla\nIman\nJanie\nJayme\nJenae\nJoseph\nKathrine\nKaylah\nKerry\nKristian\nLilly\nLiza\nManuela\nMichell\nMina\nNou\nRichelle\nTherese\nVicki\nAlena\nAnai\nAnamaria\nAndria\nAyana\nAyla\nBrittnee\nCamila\nCamilla\nCarli\nCatrina\nCherish\nCorrine\nDalila\nDesire\nEllie\nEloisa\nImelda\nInes\nKaycee\nLizabeth\nLuis\nMildred\nMinerva\nMona\nNidia\nRobert\nRosalie\nRosemarie\nShanelle\nShanna\nShea\nSydnee\nTabatha\nTatianna\nAlix\nAlycia\nAnnalisa\nAnnemarie\nAustin\nAyanna\nBrittaney\nChelsi\nCintia\nCorrina\nCrysta\nDevan\nElisha\nElyssa\nEmerald\nFallon\nGemma\nJannette\nJodi\nJodie\nKeila\nLeandra\nLeonor\nLizbet\nMaegan\nMarjorie\nMaryam\nMilan\nNanci\nNikita\nPeyton\nRoberta\nRylee\nShannen\nSienna\nThelma\nValarie\nAja\nAlayna\nAli\nAllegra\nAllyssa\nAmie\nAnalisa\nAnel\nAriella\nAsha\nAudra\nBrooklyn\nCambria\nCarlee\nCherie\nDelilah\nDenice\nDominque\nFrida\nHarmony\nHeaven\nIsis\nIvanna\nJames\nJazzmin\nJessi\nJourdan\nJuan\nKalyn\nKarin\nLia\nLilliana\nMacie\nMaddison\nMay\nMelyssa\nNubia\nSahar\nShelley\nTracie\nXochilt\nYoana\nAaron\nAngelita\nArianne\nBillie\nBrittny\nChristal\nCora\nDaysi\nDesiray\nEvette\nGisell\nJackelyn\nJaycee\nJeannie\nKailyn\nKarolina\nKassidy\nKaylene\nKeisha\nKirstie\nKori\nLatasha\nLaurie\nLisset\nLupe\nMadalyn\nMerissa\nMimi\nNicollette\nNoemy\nShelbie\nSonja\nStephani\nSuzanna\nAleena\nAlejandrina\nBrielle\nBrigette\nBrionna\nColette\nDanna\nDennise\nEve\nFarrah\nHarley\nIesha\nJaquelin\nJazzmine\nJenelle\nKatheryn\nKatia\nKatlin\nKayley\nKaylynn\nLinnea\nLiset\nMari\nMarilynn\nMarkie\nMayte\nMiguel\nMikala\nMonet\nPilar\nRacheal\nRacquel\nRaelene\nShaniece\nSpencer\nSusanna\nSymone\nThea\nTorrey\nTyra\nAlia\nAnastacia\nAnisha\nAnnabelle\nChristen\nCory\nDanya\nDorian\nEleni\nFranchesca\nGeena\nInez\nJaimee\nJanay\nJanett\nJocelynn\nJody\nJustice\nLani\nLatisha\nLee\nMaci\nMadisen\nMaleny\nMarcia\nMariaelena\nMarlee\nMatthew\nMontana\nNohemi\nPatrice\nPatsy\nPrincess\nRebecka\nRena\nRhonda\nSabina\nSaira\nSavana\nSequoia\nStefany\nTerry\nTiera\nTraci\nVivianna\nYanely\nYuliana\nZuleima\nAdelina\nAlyse\nAlyssia\nAmani\nAnaisa\nAnnika\nAnnmarie\nAshely\nBaylee\nBerenise\nBrittnie\nCharmaine\nChristin\nClarisa\nDaniele\nDarlyn\nDeidre\nElida\nFelicity\nGinger\nGissel\nHaylie\nJanely\nJeniffer\nKelcie\nKyle\nLucinda\nLynda\nMalinda\nMalissa\nMaranda\nMarley\nMellisa\nOralia\nPriya\nRenae\nRene\nRosalva\nRosanna\nRyann\nSamira\nShante\nSindy\nSocorro\nSydnie\nTawni\nTera\nTerri\nVania\nAddison\nAide\nAllysa\nAngelic\nAntonio\nArcelia\nBlake\nBobbi\nBronte\nBryan\nBryn\nCarlos\nCathleen\nDani\nDanyelle\nElizabet\nEric\nEssence\nEstella\nFelisha\nGiovana\nGracie\nGricelda\nHalie\nIsaura\nJaquelyn\nJeanine\nJoycelyn\nJulieta\nKailee\nKalene\nKalie\nKarisa\nKaya\nLeeann\nLila\nLinh\nMarika\nMarion\nMarleen\nMeliza\nMercedez\nNicolle\nPetra\nRamona\nRosalia\nRosamaria\nRosaura\nSharlene\nShyann\nVeronika\nWanda\nZuleyma\nAcacia\nAmara\nAntionette\nAudriana\nAudrianna\nAyesha\nBao\nBrieanna\nBryce\nCari\nCesilia\nCharissa\nChiara\nCody\nConcepcion\nCruz\nDeirdre\nFrancisco\nGretchen\nHalley\nHerlinda\nJacquelynn\nJamesha\nJami\nJanna\nJaritza\nJazmyne\nJeanne\nJennyfer\nKayleen\nKeana\nKeely\nKenna\nLaila\nLatrice\nLeigh\nMarbella\nMaricarmen\nMaricella\nMarleny\nMarquisha\nMarylou\nMilagros\nMyranda\nMyriah\nNoor\nPresley\nRheanna\nRhianna\nShani\nSheyla\nSiena\nSirena\nSommer\nStephaine\nSteven\nTeresita\nThao\nValery\nVannesa\nYuridia\nAbbey\nAmethyst\nAmparo\nAnalise\nAnessa\nAubrie\nAurelia\nBritnee\nChandra\nChina\nClaribel\nCydney\nDanelle\nDarby\nDemetria\nEboni\nEmmeline\nEugenia\nFlorence\nGenessis\nGeovanna\nHadley\nHaydee\nIlene\nIvon\nIzamar\nJasmyne\nJayde\nJuliann\nKaci\nKady\nKala\nKaleigh\nKandace\nKeren\nKimberlyn\nKlarissa\nKyleigh\nLarisa\nLisbet\nLizett\nLucille\nLyndsay\nMiracle\nNellie\nOctavia\nOriana\nPooja\nQuinn\nSamatha\nSamuel\nSana\nShae\nShawn\nSunny\nTeri\nTorri\nVilma\nYarely\nYecenia\nZayra\nAmina\nAndres\nAndriana\nAnjali\nAryana\nAspen\nAura\nBeth\nBrian\nBrooklynn\nCassaundra\nCassondra\nCatarina\nChelsee\nDena\nElisabet\nElysia\nEvan\nFlora\nGeorgette\nGisel\nGuillermina\nHolland\nIlana\nIvett\nJayne\nJenessa\nJimena\nJoceline\nJoslyn\nJulian\nKaylen\nKayli\nKaytlin\nKeanna\nKeara\nKennedy\nKrysten\nLesli\nLianne\nLilianna\nLilibeth\nLora\nLoretta\nLouise\nLyanne\nMakena\nMaleni\nMalina\nMarcelina\nMyriam\nNereida\nNhi\nPorsha\nRegan\nRhea\nRio\nSammantha\nSayra\nShari\nSheng\nShianne\nShivani\nSiomara\nSoraya\nStephania\nSynthia\nTaelor\nTatum\nVera\nVickie\nYer\nAgnes\nAlexys\nAmairany\nAmira\nAngelia\nAnh\nAntonette\nAriane\nArika\nArin\nArleen\nAryn\nAshlea\nAvalon\nCathryn\nCherise\nCindi\nDayanna\nDelanie\nDelmy\nDestany\nDestini\nDeysi\nEstephany\nEvangeline\nFarah\nGardenia\nGiana\nHector\nHolli\nJacob\nJalisa\nJamee\nJayla\nJaymee\nJoselyne\nKa\nKalia\nKellee\nKenzie\nKiah\nKindra\nKirby\nKyrsten\nLacie\nLakeisha\nLeeza\nLizzette\nLois\nLondon\nLouisa\nMabel\nMacey\nMagda\nMargo\nMariella\nMarlin\nMarrisa\nMelany\nMellissa\nMicah\nMisha\nNatalee\nNeha\nNichelle\nPenelope\nRaelynn\nRayleen\nRonni\nRosana\nRoselyn\nSean\nShantal\nSheri\nSheridan\nSiobhan\nSulema\nTarah\nValencia\nVy\nWendi\nWinter\nXenia\nYuri\nZoey\nZully\nAdria\nAkilah\nAlesha\nAmberly\nAnnalise\nAraseli\nAria\nAshli\nBabygirl\nBella\nBiridiana\nBreauna\nBreeann\nBridgett\nBritni\nCady\nCarmelita\nCasie\nChannel\nCharlie\nChasity\nChastity\nChaya\nChelsy\nChyna\nColby\nCorrie\nCourtnie\nCrista\nCristine\nCristy\nDalena\nDaria\nDeandra\nDeena\nDeidra\nDenae\nDenisha\nDoreen\nFernando\nHaily\nIsabela\nIvory\nJada\nJanelly\nJavier\nJazmen\nJessalyn\nJessyca\nJohn\nJolie\nJordin\nKai\nKalina\nKandice\nKaryn\nKassie\nKatalina\nKatharina\nKeyana\nKimber\nKirstyn\nKortney\nLexi\nLucila\nMalaysia\nMalena\nMalika\nMargot\nMariaguadalupe\nMarysol\nMaryssa\nMckayla\nMeghann\nMitzy\nMiya\nMorgen\nMyrna\nNelida\nNereyda\nNika\nNisha\nNydia\nPaulette\nRae\nRebeka\nRicardo\nRina\nRomina\nRosalina\nSandi\nSarena\nSerenity\nShane\nSheryl\nShira\nShyla\nStephenie\nSue\nTamika\nThanya\nYara\nYazmine\nYocelin\nZahra\nAislinn\nAlannah\nAlexi\nAlisia\nAliya\nAmari\nAnalicia\nAndie\nAnjanette\nArlette\nBeatris\nBrandee\nCaitlynn\nCamryn\nCarisa\nCelestina\nChoua\nClarisse\nCorrin\nDannielle\nDeisi\nDeziree\nEdgar\nElana\nElexis\nElexus\nElle\nErnestina\nEstrellita\nGreta\nIvan\nJennica\nJenniffer\nJohnnie\nJoleen\nJonelle\nJorge\nJulisa\nJune\nKacy\nKadijah\nKaelyn\nKarely\nKarlene\nKati\nKendyl\nKenisha\nKerri\nKeshia\nKeyla\nKimberlin\nKinsey\nKymberly\nLai\nLiberty\nLiseth\nLissa\nLisseth\nLiz\nLluvia\nLorna\nMarguerite\nMarilin\nMarin\nMarrissa\nMayela\nMonzerrat\nNicola\nRachell\nRaeann\nRaechel\nRayven\nRebekkah\nRemy\nRosalyn\nSamanta\nSee\nShay\nSky\nStacia\nStarr\nSunshine\nSuzette\nTamra\nTanner\nTien\nVianney\nVictor\nWilliam\nYamilet\nYovanna\nZakiya\nZuri\nAbriana\nAdrianne\nAleida\nAlexxis\nAliza\nAlva\nAn\nAnnissa\nAnya\nAshanti\nAsucena\nAutum\nAvigail\nAya\nBriauna\nCarleen\nCarmela\nCarson\nCaylee\nCharisse\nChyanne\nChynna\nClarice\nCollette\nCorayma\nCorine\nCourtnee\nDaisey\nDejanae\nDer\nDinora\nDionne\nElayne\nEmmy\nEnedina\nGenna\nGiuliana\nHalee\nHayleigh\nIda\nImari\nIndira\nJalissa\nJanneth\nJenine\nJerica\nJessa\nJessy\nJewel\nJoey\nJohnisha\nJohnna\nJordon\nJustin\nKaeli\nKalani\nKalena\nKalynn\nKami\nKatelynne\nKatey\nKathryne\nKay\nKelsee\nKrystin\nLachelle\nLaci\nLakisha\nLeeanna\nLeesa\nLeonela\nLianna\nMarci\nMarcy\nMargie\nMariadejesus\nMarielle\nMarlina\nMartin\nMarycruz\nMelodie\nMercy\nMichaella\nMitchell\nMontserrat\nNathalia\nNeida\nNicholle\nNoelia\nOscar\nPhyllis\nQuiana\nRafael\nRicki\nRoseanne\nSahara\nSariah\nShayne\nSolmayra\nSterling\nSuleyma\nTavia\nTaylar\nTrista\nYovana\nZuleika\nZulma\nAbrianna\nAdele\nAiyana\nAleah\nAlexsandra\nAlly\nAlora\nAmada\nAnalilia\nAndreana\nAngelika\nAnnel\nAnneliese\nAshtyn\nBerlin\nBlaire\nBreyana\nBriann\nBrynn\nBrynne\nCarolynn\nCecily\nCesia\nChanning\nChristi\nDanesha\nDarrian\nDebora\nDelores\nDeseree\nDestanie\nDevina\nDionna\nEduardo\nEvelynn\nFrank\nGena\nGeovana\nHellen\nHoua\nIdalia\nJackelin\nJanina\nJaspreet\nJeana\nJenni\nJessyka\nJoandra\nJohannah\nJosephina\nJossie\nKacee\nKandyce\nKarol\nKathlyn\nKattie\nKatya\nKelcey\nKeyanna\nKiarra\nKimiko\nKoraima\nKristiana\nKylene\nKyrie\nLacee\nLashae\nLeana\nLeia\nLeslye\nLexie\nLigia\nLilit\nLindy\nLinsey\nLynsey\nMa\nMaile\nMandi\nMarine\nMarinna\nMarivel\nMeranda\nMerari\nMerlina\nMy\nNicholette\nPaisley\nPenny\nPhoenix\nPortia\nRafaela\nReena\nRegine\nRianna\nRona\nRosita\nRowan\nRyanne\nRylie\nSacha\nSalma\nSapphire\nShaila\nShanae\nShaylee\nSherri\nShoshana\nSinai\nSondra\nStaphany\nStar\nSteffany\nStepanie\nStephannie\nStormy\nTisha\nTonisha\nTony\nTorie\nTreasure\nTyana\nVenus\nVivi\nXochil\nYaneth\nYoseline\nYoselyn\nZandra\nZenaida\nAbilene\nAdelaida\nAdina\nAdreanna\nAime\nAlberto\nAlecia\nAleksandra\nAlexsis\nAlexzandra\nAlivia\nAnabelle\nAnahy\nAnnamaria\nArgelia\nAsma\nAysha\nBerlyn\nBethanie\nBianey\nBreena\nBrissa\nBrittanee\nBryanne\nCailey\nCameo\nCarey\nCarlene\nCatelyn\nCayley\nChanice\nCharles\nChee\nCherry\nChris\nChyenne\nCiana\nCodie\nCorin\nDallana\nDara\nDayanara\nDeanne\nDebby\nDejanee\nDesirea\nDivya\nDixie\nDonisha\nEma\nEmber\nEmili\nErendida\nEster\nEvelia\nGabby\nGiovanni\nGrisel\nGurpreet\nHailie\nHaneen\nHortencia\nItalia\nItzayana\nIzabella\nJacelyn\nJanea\nJanee\nJeannine\nJenay\nJennefer\nJerrica\nJewell\nJoi\nJordynn\nJovita\nJulienne\nKadie\nKalen\nKalin\nKameron\nKamilah\nKamille\nKanisha\nKassaundra\nKathya\nKatlynn\nKaylan\nKeiana\nKeilani\nKelsy\nKeyona\nKimberli\nKimberlie\nKyara\nLashawn\nLeena\nLeona\nLinette\nLisett\nLivier\nLorin\nLorissa\nLynnette\nLynzee\nMadelaine\nMadelin\nMagen\nMakala\nMallorie\nMarialuisa\nMario\nMaritsa\nMariya\nMarshay\nMaryjane\nMattie\nMayan\nMelia\nMicayla\nMika\nMilena\nMyesha\nMyisha\nParisa\nPatrick\nPatty\nPeggy\nPrescilla\nRaeanne\nRaelyn\nRaya\nRayanne\nRebekka\nRichard\nRoberto\nRosangela\nRossy\nSaida\nSaige\nSarafina\nSavina\nSeidy\nSelenia\nShavon\nShavonne\nShireen\nShiva\nSia\nSiera\nSilva\nSteffanie\nSusannah\nTailor\nTana\nTawnie\nTeanna\nTenaya\nTheodora\nThuy\nTiarra\nTierney\nTonia\nTorey\nTory\nTran\nTristan\nTuesday\nTyla\nVivianne\nVivien\nYarelyn\nYisel\nYoandra\nYohana\nZachary\nZeinab\nZenia\nZoila\nZuleyka\nAdeline\nAgustina\nAlixandra\nAllissa\nAlonna\nAlyshia\nAlysse\nAlyx\nAmal\nAmrita\nAnabella\nAnamarie\nAnay\nAnnaliese\nAnny\nArmani\nAshlei\nAzalea\nBailee\nBelle\nBenjamin\nBonita\nBrett\nBrieana\nCaitlan\nCalista\nCandelaria\nCaprice\nCaren\nCarolann\nChantell\nChardonnay\nCharis\nCharleen\nChong\nChristianna\nCoryn\nCosette\nCyndy\nDaniell\nDarci\nDarien\nDarlin\nDawna\nDella\nDemitria\nDesteny\nDyanna\nEbone\nEcho\nEloise\nElora\nEmalee\nEmelyn\nEmi\nEna\nErynn\nEstefanie\nEstephania\nGaby\nGerardo\nGianni\nGigi\nGissell\nGlory\nHenry\nHien\nIkea\nIlda\nIrais\nJacqlyn\nJacquelyne\nJahaira\nJalyn\nJanaye\nJasmen\nJaylene\nJaymie\nJazlyn\nJeanna\nJenise\nJesika\nJoel\nJoline\nJordana\nJorden\nJosette\nKailani\nKailie\nKalee\nKallie\nKarine\nKarmen\nKarrie\nKaryna\nKasie\nKassi\nKathia\nKaycie\nKaytlyn\nKeilah\nKeira\nKelci\nKemberly\nKierstin\nKiran\nKirra\nKyanna\nKyndra\nLashanae\nLeighann\nLiane\nLisamarie\nLissete\nLizzeth\nLoreal\nLucrecia\nLuna\nLusine\nLynsie\nLysandra\nMadelyne\nMadyson\nMaeve\nMagnolia\nMaite\nManpreet\nManuel\nMarcie\nMarily\nMarisabel\nMarkisha\nMarleni\nMarsha\nMaryah\nMaryanne\nMarykate\nMarylin\nMelonie\nMerlyn\nMidori\nMikaila\nMiryam\nMonae\nMonisha\nMonserat\nMyla\nMyrissa\nNakia\nNalani\nNalleli\nNatalya\nNely\nNerissa\nNickole\nNida\nNoelani\nOliva\nPanhia\nPatience\nPiper\nRashelle\nRashida\nRaul\nRawan\nRayann\nReanne\nReba\nReema\nRenata\nRisa\nRonisha\nRoseanna\nRoslyn\nSaba\nSanam\nSanjuana\nSantana\nSarahy\nSarrah\nSergio\nShanda\nShanell\nShanika\nShanise\nShantelle\nShara\nShardae\nSharde\nShasta\nShereen\nSoleil\nSuleima\nSumer\nSydni\nTalya\nTamar\nTarra\nTarryn\nTawnya\nTrang\nTyesha\nUrsula\nVi\nVianka\nViktoria\nWillow\nYael\nYaquelin\nYunuen\nAbbie\nAdelaide\nAditi\nAissa\nAlea\nAlexie\nAllyn\nAlmarosa\nAlvina\nAmayrani\nAmi\nAminah\nAnagabriela\nAnalaura\nAndraya\nAnette\nAngelene\nAnicia\nAnise\nArabella\nArantxa\nAriadna\nAriela\nArriana\nAryanna\nAshia\nAshlan\nAshleynicole\nAshlynne\nAsley\nAsusena\nAsya\nAysia\nAzusena\nBreona\nBritnie\nBrogan\nByanca\nByanka\nCailin\nCailyn\nCaley\nCami\nCandi\nCaressa\nCaryn\nChampagne\nCharise\nCherelle\nCheyann\nCiarra\nCitlaly\nConnor\nCyndi\nDacia\nDahlia\nDaicy\nDarion\nDarla\nDarling\nDarya\nDaryl\nDasia\nDavonna\nDaysy\nDenesha\nDenia\nDeonna\nDestine\nDestinie\nDian\nDiandra\nDillon\nDomenique\nDusty\nEbonee\nEdlin\nEdward\nEdwin\nElda\nElina\nElysha\nEmani\nEmelie\nEmiko\nEmmalee\nErick\nErinn\nFabian\nFantasia\nFatimah\nFelecia\nFelipe\nFiorella\nGail\nGayle\nGessica\nGinny\nGissele\nGizelle\nGrabiela\nGrissel\nHa\nHaili\nHanah\nHarlee\nHarpreet\nHayden\nHong\nIsabell\nJacklynn\nJaclynn\nJacqulyn\nJael\nJaimi\nJakeline\nJaleesa\nJameela\nJanele\nJaniece\nJanis\nJasleen\nJaymi\nJeanie\nJelena\nJenee\nJenice\nJennelle\nJensen\nJessicamae\nJesslyn\nJoscelyn\nJosselin\nJosseline\nJudit\nJulieann\nJullian\nKaia\nKailah\nKaiya\nKamryn\nKandy\nKarem\nKarisma\nKatharyn\nKatherin\nKathlene\nKatilyn\nKatryna\nKayleena\nKellen\nKenneth\nKennya\nKeona\nKorey\nKymberlee\nLakendra\nLane\nLanette\nLanie\nLatoya\nLaurissa\nLela\nLenora\nLeyla\nLibby\nLita\nLivia\nLizzet\nLucerito\nLuciana\nLynae\nLyssa\nMackenna\nMadai\nMalaika\nMalisa\nMalorie\nMarco\nMariadelcarmen\nMariko\nMarixa\nMariza\nMarkia\nMartiza\nMaryelizabeth\nMarylynn\nMaylin\nMckenzi\nMee\nMiki\nMilagro\nMira\nMykaela\nNadya\nNathali\nNatividad\nNavdeep\nNayelly\nNicki\nNicol\nNissa\nNoah\nNoreen\nNuvia\nOmar\nPahola\nPhuong\nPrisma\nPriyanka\nPuneet\nQuincy\nRaquelle\nRaveena\nRayanna\nRaychel\nRaynisha\nRebeccah\nRemington\nRianne\nRiki\nRosalind\nRosaline\nRoshni\nRuben\nSabine\nSabra\nSahra\nSarin\nSarita\nSerafina\nSerene\nShannan\nShannel\nSharleen\nSharonda\nShavonna\nShaylene\nShaylynn\nSheree\nShiela\nShoua\nSilvana\nSimona\nSiria\nSkyla\nSolana\nSteffi\nStorm\nSusanne\nSymphony\nTabbitha\nTajanae\nTalisa\nTameka\nTannya\nTashawna\nTasia\nTatyanna\nTegan\nTerrie\nTeryn\nTesia\nTijera\nTorrie\nTravis\nUyen\nVerenise\nVincent\nWhitley\nXimena\nYang\nYasaman\nYeni\nYocelyn\nYoua\nYsabella\nZaida\nZena\nZhane\nAbagail\nAbbigail\nAbigayle\nAdam\nAdelene\nAdreana\nAdriane\nAidan\nAidee\nAinsley\nAisling\nAjia\nAkila\nAlan\nAlaysia\nAleesa\nAlesandra\nAline\nAlise\nAlthea\nAmanada\nAnacaren\nAnaluisa\nAnaly\nAndreya\nAndy\nAnjelika\nArlen\nArlin\nArline\nArlyn\nArmando\nArrianna\nArtisha\nAubrianna\nAudree\nAustyn\nAyah\nBaleria\nBanesa\nBee\nBenita\nBerniece\nBibiana\nBonny\nBrianah\nBriceida\nBrigit\nBriona\nBritanie\nBritta\nBrittania\nBrittini\nBronwyn\nCaila\nCali\nCalli\nCamisha\nCandyce\nCarin\nCarlina\nCarmel\nCarole\nCatlin\nCaylin\nCelest\nCelestine\nCera\nCesar\nChance\nChandni\nChanna\nCharisma\nChelcie\nCherokee\nCheyanna\nChi\nChristiane\nChrystina\nCitlali\nCorie\nCoty\nCyerra\nDanisha\nDecember\nDenis\nDestani\nDeven\nDevonna\nDezirae\nDiego\nDinah\nDominga\nDominic\nDori\nDorothea\nDyana\nElba\nElianna\nElisheva\nEllesse\nEmmanuel\nEriana\nErik\nErina\nErlinda\nEstelle\nEsthela\nEulalia\nEvelina\nEveline\nEverlyn\nEvie\nEvonne\nFlorencia\nFrancia\nGabriell\nGarrett\nGayane\nGenevie\nGenisis\nGenoveva\nGeorge\nGeorgianna\nGeorgie\nGeselle\nGilda\nGuiselle\nHaidee\nHattie\nHelene\nHenna\nHermelinda\nIndiana\nIndigo\nIrie\nIsa\nIsaac\nIsrael\nIxchel\nJacky\nJacquline\nJadira\nJalynn\nJalyssa\nJameelah\nJamela\nJammie\nJanai\nJanira\nJanisha\nJannelle\nJasmina\nJaya\nJayda\nJayna\nJazzmyn\nJeanelle\nJenell\nJenica\nJennah\nJessamyn\nJesseca\nJhoana\nJohnny\nJonae\nJori\nJosefa\nJulieanne\nKabao\nKaili\nKaily\nKaleen\nKaleena\nKandis\nKarah\nKarie\nKarishma\nKarmina\nKarolyn\nKashmir\nKassondra\nKateri\nKathie\nKatty\nKaytlynn\nKc\nKeeley\nKellyn\nKenny\nKerrie\nKhalilah\nKiani\nKierstyn\nKimberely\nKimia\nKitty\nKiyana\nKrisha\nKristan\nKristel\nKyli\nLaina\nLanae\nLanisha\nLarena\nLashay\nLawren\nLayne\nLeeanne\nLeigha\nLeora\nLiezl\nLili\nLillie\nLissett\nLizzett\nLolita\nLoraine\nLorie\nLorraina\nLory\nLuzmaria\nLynne\nMackenzi\nMadalynn\nMadelene\nMadelynn\nMakaela\nManisha\nMao\nMarena\nMargaux\nMargret\nMariaisabel\nMarisha\nMarkesha\nMarlenne\nMarybel\nMarycarmen\nMarylyn\nMatilde\nMccall\nMeg\nMeggan\nMekayla\nMelony\nMelynda\nMichela\nMikhaila\nMin\nMirka\nMistica\nMoncerrat\nMorganne\nMya\nMyrka\nNadeen\nNai\nNailah\nNaomy\nNayelli\nNegin\nNessa\nNikia\nNisa\nNour\nNyssa\nOdalys\nOphelia\nPage\nPallavi\nPeri\nPerlita\nPerri\nPhylicia\nPorscha\nPorsche\nPuja\nRachelann\nRachele\nReagan\nReilly\nRemi\nRenisha\nRian\nRiane\nRima\nRivka\nRobbie\nRonesha\nRoni\nRonnie\nRosaisela\nRoselia\nRosenda\nRowena\nRoya\nRudi\nRyane\nSabreena\nSaleena\nSareen\nSascha\nSelin\nShai\nShalisa\nShalon\nShalynn\nShandi\nShanee\nShanel\nShania\nShaniqua\nShanique\nShantell\nShaquille\nSharee\nSharron\nShaunice\nShaylyn\nSherice\nSherilyn\nSheyenne\nShian\nShyanna\nSiara\nSindi\nSinead\nSloane\nSol\nSonam\nSpecial\nStefania\nStephen\nStormie\nSubrina\nSunni\nSuzana\nSuzie\nTaira\nTaja\nTakara\nTala\nTaleen\nTalin\nTalor\nTamera\nTammie\nTanesha\nTaniya\nTannia\nTaralyn\nTatiyana\nTeal\nTereza\nTerilyn\nTesla\nTessie\nTiare\nTomi\nTristen\nTyanna\nTylar\nTylyn\nVaness\nVeronique\nVivienne\nWednesday\nWilla\nYanelly\nYanina\nYenifer\nYenny\nYeraldin\nYoanna\nYohanna\nYosselin\nYsabel\nYuritzy\nYury\nAbigael\nAbigale\nAdara\nAdelita\nAdelyn\nAdi\nAdrina\nAgueda\nAhsley\nAkasha\nAlberta\nAlesia\nAlessa\nAlexas\nAlexzandria\nAleyda\nAliah\nAlida\nAlishia\nAlixandria\nAliyah\nAllen\nAlyce\nAlyssamarie\nAlyxandra\nAmandeep\nAmanpreet\nAmaya\nAmrit\nAnabell\nAnaiz\nAnali\nAnarosa\nAndrina\nAngelie\nAngellica\nAngelyn\nAnum\nAny\nApryl\nArian\nArisa\nArlet\nArmida\nArpi\nAshlen\nAshliegh\nAtenas\nAubry\nAudrina\nAugust\nAundria\nAusten\nAvelina\nAveri\nAviana\nAvilene\nAyerim\nAzia\nBahar\nBerenis\nBetsabe\nBliss\nBreahna\nBreiana\nBrendan\nBrennan\nBreyanna\nBriannah\nBrigida\nBrihana\nBrionne\nBritani\nBritny\nBrittanny\nBrittiny\nBryanda\nBrynna\nCallan\nCandida\nCandie\nCaralyn\nCarleigh\nCarlena\nCarlyn\nCarmella\nCarrisa\nCarrissa\nCassey\nCassia\nCaterina\nCaylie\nCecile\nCelinda\nCerena\nCerina\nChabeli\nChana\nChelby\nCheng\nCheri\nCherice\nChevelle\nChristianne\nChrysta\nCianna\nCicely\nClair\nClaudine\nCodi\nCortnee\nCorynn\nCyrena\nDafne\nDajanae\nDanette\nDanitza\nDanny\nDanyell\nDarline\nDarnisha\nDayanira\nDeicy\nDelena\nDelmi\nDenika\nDenys\nDenyse\nDeshonna\nDestanee\nDesteni\nDevonne\nDiamante\nDiem\nDiva\nDonya\nDrucilla\nDulse\nEbonie\nEli\nElika\nElizeth\nEllery\nElly\nEllyn\nElma\nElza\nEmeli\nEmelia\nEmery\nEmilyann\nEmoni\nEnrique\nErikka\nEryka\nEsteban\nEvin\nEvy\nEzra\nFabiana\nFalicia\nFannie\nFarm\nFaustine\nFidelia\nFranki\nGabiela\nGennesis\nGennifer\nGeorgiana\nGerald\nGianina\nGissela\nGraviela\nGudalupe\nGuillermo\nGuinevere\nHaile\nHan\nHang\nHanh\nHannan\nHarleen\nHarper\nHeavenly\nHeba\nHeena\nHena\nHerminia\nHoa\nHolley\nHosanna\nHugo\nHuong\nIan\nIdania\nIlce\nIlyssa\nIna\nIqra\nIrlanda\nIsaiah\nIvania\nIveth\nJacey\nJaci\nJacie\nJacinda\nJackline\nJacquelynne\nJacquiline\nJahna\nJaida\nJalen\nJalessa\nJamia\nJamilah\nJamine\nJamisha\nJanetta\nJanisa\nJanise\nJanita\nJannett\nJarely\nJason\nJassmine\nJaynee\nJazz\nJeaneth\nJelisa\nJenah\nJenevieve\nJennae\nJerika\nJerri\nJerusalem\nJhoanna\nJianna\nJiselle\nJissel\nJoaquina\nJocely\nJodeci\nJohna\nJonna\nJordann\nJorgina\nJoselynn\nJuli\nJulieanna\nJulio\nKabrina\nKaelah\nKaelee\nKaelie\nKaelin\nKailin\nKaira\nKalah\nKaleah\nKally\nKana\nKandie\nKarianne\nKarime\nKaris\nKarleen\nKaroline\nKasaundra\nKasi\nKasia\nKasondra\nKaterin\nKatheryne\nKatrice\nKatrin\nKatryn\nKayce\nKaydee\nKeianna\nKeiara\nKeiko\nKeli\nKendahl\nKhadija\nKhalia\nKhayla\nKhristina\nKiona\nKionna\nKiri\nKirsti\nKisha\nKiya\nKodi\nKolby\nKorin\nKorissa\nKortni\nKortnie\nKory\nKoryn\nKristell\nKristianna\nKristyna\nKrystine\nKyana\nKylah\nLadonna\nLady\nLaine\nLainey\nLan\nLaneisha\nLaney\nLaryssa\nLashell\nLatanya\nLaticia\nLatonya\nLauran\nLavinia\nLeiana\nLeonora\nLesslie\nLetty\nLian\nLindsee\nLisha\nLizvette\nLola\nLorelei\nLorenia\nLorina\nLuiza\nLusero\nLyndsie\nLysette\nMaciel\nMadalena\nMae\nMagally\nMagdalene\nMaha\nMaisie\nMaleah\nMaly\nMalyssa\nMarcos\nMaren\nMariajose\nMarilee\nMarili\nMarita\nMarizol\nMark\nMarlaina\nMarquelle\nMarquita\nMarriah\nMartika\nMarygrace\nMarykatherine\nMarylu\nMaryrose\nMaurissa\nMckinley\nMckinzie\nMecca\nMeera\nMegha\nMei\nMeilani\nMele\nMelena\nMerina\nMerisa\nMica\nMikia\nMila\nMilana\nMillie\nMireille\nMiriah\nMiroslava\nMisa\nMishelle\nMitchelle\nMoana\nMoira\nMyeisha\nNada\nNana\nNandi\nNanette\nNatassia\nNavneet\nNeda\nNeftali\nNeli\nNichele\nNicoleanne\nNikkole\nNikolette\nNirvana\nNita\nNoami\nNohemy\nNona\nNycole\nOdelia\nOlive\nOsiris\nPahoua\nPakou\nParadise\nPaxton\nPayal\nPearla\nPiedad\nPorcha\nPrecilla\nPricila\nQueenie\nRabecca\nRachyl\nRacine\nRadhika\nRaeanna\nRaeven\nRaisa\nRanda\nRandy\nRanisha\nRaylena\nRaynesha\nRebecah\nReem\nRelina\nReylene\nRia\nRickie\nRobynn\nRoger\nRoseann\nRosibel\nRosy\nRoxsana\nRubie\nRudy\nRut\nRyanna\nSabryna\nSafa\nSaima\nSallie\nSalvador\nSamari\nSamia\nSandeep\nSawyer\nSaya\nSeaira\nSedona\nSejal\nSelah\nSelenne\nSera\nShabnam\nShadae\nShakia\nShalene\nShamari\nShanon\nShanti\nShanyn\nSharae\nSharie\nSharmaine\nSharnell\nShealyn\nShela\nSherlyn\nSheyanne\nShreya\nSindia\nSneha\nSomalia\nSomer\nSong\nSonora\nSophy\nSpenser\nStarla\nStephane\nSteve\nStevi\nSulma\nSyeda\nTabita\nTai\nTali\nTaline\nTam\nTami\nTamlyn\nTanika\nTashiana\nTatjana\nTayla\nTaylin\nTaylore\nTaylyn\nTeana\nThi\nThuytien\nTiarah\nTiffaney\nTimothy\nTitianna\nTosha\nTrena\nTrenisha\nTriana\nTrinh\nTristin\nTyresha\nValentine\nValeri\nVan\nVanity\nVanna\nVelma\nVenezia\nVerna\nVianna\nViviane\nWesley\nWindy\nXandria\nXitlali\nYajayra\nYanette\nYarissa\nYarithza\nYarixa\nYasamin\nYasmina\nYennifer\nYevette\nYobana\nYoko\nYosselyn\nYudith\nYuna\nZara\nZina\nZoraida\nZoua\nZoya\nZuleica\nZuly\nJessica\nAshley\nStephanie\nJennifer\nSamantha\nElizabeth\nSarah\nAmanda\nEmily\nNicole\nVanessa\nMaria\nKimberly\nJasmine\nMelissa\nMichelle\nTaylor\nAlexis\nLauren\nDanielle\nRachel\nMegan\nVictoria\nAlyssa\nAndrea\nAlexandra\nDiana\nBrittany\nJacqueline\nBrianna\nKayla\nHannah\nRebecca\nNatalie\nKatherine\nMonica\nGabriela\nBrenda\nAlejandra\nChristina\nLaura\nCrystal\nCynthia\nMarissa\nAmber\nAngelica\nTiffany\nKarina\nSara\nAna\nCourtney\nKaren\nNancy\nVeronica\nDaisy\nAdriana\nErica\nCassandra\nErika\nYesenia\nKelsey\nJocelyn\nGuadalupe\nAmy\nAllison\nMadison\nJulia\nHaley\nAnna\nKelly\nMorgan\nLeslie\nBriana\nOlivia\nAngela\nSabrina\nAlicia\nBianca\nChelsea\nCindy\nBreanna\nHeather\nAlexandria\nAbigail\nMayra\nMariah\nJasmin\nSierra\nJazmin\nPriscilla\nSandra\nMiranda\nEvelyn\nMary\nShelby\nErin\nShannon\nMonique\nDestiny\nSavannah\nClaudia\nJordan\nChristine\nKaitlyn\nEmma\nKarla\nBrooke\nAriana\nPatricia\nJoanna\nSydney\nRosa\nDesiree\nCatherine\nWendy\nKristen\nValerie\nGabrielle\nJamie\nKatelyn\nDenise\nIsabel\nAlexa\nDaniela\nJanet\nJenna\nMadeline\nPaige\nCheyenne\nLiliana\nBrittney\nCaitlin\nKathryn\nLisa\nCarolina\nCristina\nLindsey\nJazmine\nSophia\nMelanie\nKatie\nGrace\nJulie\nKassandra\nMarisa\nCecilia\nVivian\nRuby\nApril\nEsmeralda\nKristina\nGenesis\nGabriella\nKathleen\nPaola\nDominique\nValeria\nKrystal\nKaitlin\nRaquel\nLinda\nCeleste\nMarina\nChloe\nCarmen\nHailey\nLorena\nMarisol\nGloria\nTeresa\nIsabella\nJenny\nLindsay\nAlma\nKatrina\nMarlene\nYvette\nMartha\nAngelina\nCaroline\nNatasha\nSonia\nSummer\nAudrey\nMackenzie\nHolly\nViviana\nClaire\nClarissa\nKylie\nTatiana\nHayley\nSusana\nMichaela\nMiriam\nCassidy\nLeticia\nMaritza\nAriel\nMolly\nItzel\nSelena\nAlison\nJustine\nLizbeth\nJade\nMaribel\nBlanca\nArianna\nEdith\nTania\nIrene\nAraceli\nRocio\nDeanna\nNaomi\nLeah\nCarly\nMariana\nCelina\nBeatriz\nKristin\nElena\nMargarita\nCarina\nDalia\nKendall\nSandy\nAngel\nCamille\nJeanette\nCarla\nMeghan\nPerla\nYvonne\nKendra\nMargaret\nSharon\nAimee\nMikayla\nSelina\nEsther\nTori\nRachael\nNoemi\nKaylee\nRebekah\nZoe\nAshlee\nBailey\nTara\nAdrianna\nWhitney\nAutumn\nEva\nBrandi\nGina\nHeidi\nCristal\nCaitlyn\nCasey\nMercedes\nNorma\nRuth\nDulce\nStacy\nDana\nFelicia\nBethany\nHelen\nSusan\nYadira\nTanya\nKara\nRenee\nSilvia\nKrista\nKathy\nJacquelyn\nJillian\nKiana\nMadeleine\nMelody\nLucia\nMarilyn\nPamela\nNatalia\nAnne\nBridget\nJanelle\nStephany\nAnissa\nCarolyn\nLydia\nSofia\nJuliana\nTyler\nJessie\nLizette\nMaya\nRaven\nTina\nMariela\nPaulina\nReyna\nNina\nTheresa\nAnnie\nAllyson\nFabiola\nElisa\nJudith\nSerena\nAlexia\nJohanna\nRoxana\nKirsten\nNichole\nYolanda\nAlissa\nYasmin\nAmelia\nLucero\nStacey\nAngie\nCarissa\nDayana\nIris\nBerenice\nBrandy\nKristine\nNicolette\nConnie\nLillian\nVirginia\nLily\nJaqueline\nLuz\nArlene\nHanna\nJosephine\nMaricela\nJaclyn\nTamara\nGiselle\nMarie\nBritney\nYazmin\nYessenia\nBarbara\nTiana\nMia\nCierra\nMikaela\nPaula\nJane\nFatima\nGriselda\nKarissa\nDeborah\nEllen\nGladys\nAaliyah\nAlina\nBreana\nCorina\nSylvia\nAlice\nAlisha\nCharlotte\nDaniella\nElaine\nLizeth\nMckenna\nMeagan\nKenia\nNataly\nDiane\nKiara\nDarlene\nAngelique\nLucy\nMaira\nNayeli\nRebeca\nAshleigh\nCiara\nJoselyn\nColleen\nLarissa\nJanette\nTracy\nViridiana\nAshlyn\nAubrey\nNadia\nSavanna\nAlexus\nCharlene\nJoana\nKellie\nMakayla\nRose\nCandice\nFrancesca\nAlana\nLacey\nTayler\nBrenna\nDestinee\nGraciela\nIvette\nSarai\nCasandra\nLourdes\nSalina\nTalia\nElisabeth\nTessa\nJordyn\nThalia\nDonna\nFrances\nMallory\nNohely\nRoxanne\nAsia\nCatalina\nKatelynn\nMelinda\nTabitha\nClarisa\nEileen\nJuana\nKira\nMelina\nRochelle\nCelia\nElise\nImani\nSophie\nAnastasia\nCandace\nClara\nDiamond\nRegina\nCarol\nChristian\nIrma\nJuanita\nAurora\nBryanna\nKristy\nMarisela\nNathalie\nAdilene\nGenevieve\nJulianna\nNikki\nDevin\nHope\nKatarina\nMckenzie\nRachelle\nRobin\nShirley\nAnita\nMai\nSasha\nEbony\nFaith\nIsabelle\nOlga\nRosemary\nChristy\nJanae\nKaila\nMagdalena\nIliana\nIvonne\nIvy\nKelli\nKenya\nSally\nAdrienne\nChanel\nChelsey\nDarian\nGianna\nIngrid\nJoyce\nMichele\nNoelle\nAlisa\nDenisse\nEunice\nSelene\nAliyah\nRiley\nYajaira\nAnnette\nBeverly\nDelaney\nNora\nToni\nBonnie\nDakota\nEricka\nFlor\nLidia\nMaggie\nBreanne\nCeline\nEstefania\nEvelin\nJoanne\nKelsie\nVanesa\nAnn\nEsperanza\nJanice\nKristi\nKhadijah\nMicaela\nSimone\nKasey\nLeilani\nAnahi\nFernanda\nKate\nPaloma\nAileen\nBelen\nSadie\nAlondra\nAracely\nCinthia\nSidney\nBelinda\nDebbie\nKatharine\nMarcela\nCorinne\nKylee\nKyra\nLisette\nTaryn\nDevon\nJacklyn\nLesley\nRosario\nShawna\nLaurel\nMarlen\nArielle\nBrianne\nCheyanne\nJenifer\nJudy\nKasandra\nLena\nLesly\nPrecious\nReina\nRubi\nElsa\nJoy\nJulissa\nMagali\nMireya\nMoriah\nStefanie\nTia\nTiara\nJustice\nVicky\nAlanna\nDesirae\nDianna\nJanessa\nKelley\nKyla\nLilian\nRita\nRobyn\nYessica\nCassie\nGeorgina\nRoxanna\nBernadette\nBridgette\nNia\nSavanah\nTammy\nArely\nBertha\nCiera\nJaime\nXiomara\nYaritza\nDanica\nDorothy\nMelisa\nTess\nAthena\nCara\nCarrie\nCathy\nEstefani\nHilda\nHunter\nLilia\nMadelyn\nMagaly\nSheila\nAshly\nHaylee\nJohana\nJosefina\nLorraine\nLuisa\nTianna\nChantel\nKaitlynn\nKatlyn\nLeanna\nShayla\nBrittani\nCandy\nHelena\nJackeline\nKaylin\nMaricruz\nRyan\nAnabel\nEliza\nKailey\nLea\nMakenna\nPauline\nRandi\nRikki\nSarina\nTierra\nXochitl\nDelia\nElvia\nEmerald\nEstefany\nJocelyne\nShayna\nSkylar\nAmairani\nAntonia\nAstrid\nDamaris\nDolores\nIsela\nJulianne\nKarli\nKarly\nKaylie\nLizet\nLori\nRosalinda\nYasmine\nAnais\nChandler\nGiovanna\nGrecia\nMarlena\nMichael\nRhiannon\nTiffani\nAlyson\nAreli\nBria\nEmilia\nJeannette\nJesenia\nKennedy\nLupita\nMisty\nParis\nShaina\nAzucena\nChrista\nElyse\nFiona\nJosie\nLeanne\nLiana\nSuzanne\nAime\nAlaina\nAvery\nBetty\nCallie\nCheryl\nEden\nEleanor\nMina\nNadine\nAbby\nAntoinette\nAshlie\nDaniel\nDaphne\nJackie\nJessenia\nKaylyn\nLara\nMindy\nMyra\nValentina\nYasmeen\nAshlynn\nBernice\nCelena\nChelsie\nDallas\nEliana\nLissette\nLoren\nMalia\nMeredith\nYoselin\nAdela\nAlysha\nCortney\nHailee\nJanine\nJazmyn\nJennie\nJose\nKarlie\nKatelin\nMarcella\nSerina\nBetsy\nBrandie\nBrianda\nHillary\nJoseline\nLynette\nMakenzie\nMariel\nPricilla\nSonya\nAlexandrea\nBeatrice\nCarley\nChristiana\nEmilee\nEmilie\nFaviola\nHazel\nIsis\nIvana\nJessika\nKatheryn\nNathaly\nNelly\nShelly\nCameron\nDestiney\nFrancisca\nLauryn\nShanice\nSherry\nAlessandra\nDevyn\nHana\nHeidy\nJuliette\nKassidy\nMacy\nMirian\nMontana\nSydnie\nYanira\nAlexander\nAnjelica\nAshton\nChantal\nChristie\nCoral\nDina\nDrew\nHallie\nHeaven\nJesse\nJustina\nKaela\nRosie\nSage\nAllie\nAmalia\nAmerica\nBrittni\nDora\nIsamar\nKaley\nKaty\nKimberley\nLynn\nMara\nMari\nMonika\nPhoebe\nReanna\nTrisha\nZaira\nConsuelo\nCorrina\nIleana\nIlse\nKali\nKelsea\nKierra\nKourtney\nMaegan\nNallely\nNatali\nBobbie\nBrittanie\nCora\nElide\nElsie\nElvira\nEstrella\nHarley\nJuliet\nKari\nKimberlee\nKristie\nLina\nMandy\nMaxine\nVioleta\nAlysa\nAubree\nBreeanna\nBrigitte\nClare\nDawn\nDeisy\nDemi\nDianne\nDomonique\nDoris\nEmely\nJaneth\nJoselin\nMaddison\nMonserrat\nPa\nScarlett\nAja\nAlex\nAllyssa\nBreeana\nCelene\nDanika\nElissa\nEstela\nEvangelina\nGeneva\nGeraldine\nJoelle\nKayleigh\nKelsi\nKiersten\nKiley\nKim\nMitzi\nNoemy\nSkye\nStefany\nSusanna\nTatianna\nTrinity\nAnyssa\nAva\nAyla\nChrystal\nJill\nJovanna\nMarlyn\nMirna\nNayely\nRosalia\nRosio\nSienna\nSoledad\nStella\nTanisha\nYanet\nAlia\nAmbar\nBryana\nCori\nEllie\nEve\nHaleigh\nJaimie\nJesus\nKiera\nMarimar\nMaureen\nMeaghan\nMirella\nRaylene\nVianey\nAngeline\nAnnamarie\nAustin\nCecelia\nCristian\nDevan\nElaina\nFrancis\nHalie\nJasmyn\nKerry\nKristal\nLila\nLisbeth\nLiza\nMaranda\nMarianna\nMarla\nNicolle\nNiki\nNoel\nRene\nShanna\nSonja\nStacie\nStevie\nYareli\nAisha\nAndria\nAngelita\nCarlie\nDavina\nDelilah\nElva\nGisela\nGwendolyn\nJacquelin\nJanel\nJazmyne\nJesica\nJocelin\nKacie\nKailee\nKaylynn\nKori\nLyndsey\nMariam\nRaina\nShea\nTasha\nTracey\nTrina\nXochilt\nYesica\nYuliana\nAdrian\nAlena\nAnthony\nBreann\nCoraima\nDavid\nGeorgia\nJanie\nKaelyn\nKaterina\nKeana\nLayla\nLeandra\nLexus\nMichell\nMinerva\nMyranda\nRamona\nTerra\nZulema\nAda\nAlba\nAleah\nAmaris\nAmie\nAnisa\nAnnalise\nAyana\nItzayana\nJovana\nKianna\nLana\nLeila\nLia\nOfelia\nPayton\nPrincess\nRosalie\nShyanne\nTawny\nUnique\nVerenice\nViolet\nYecenia\nZuleima\nAida\nAnai\nAnnalisa\nCayla\nCinthya\nCorinna\nDebra\nDylan\nEdna\nElia\nEstephanie\nGisselle\nIndia\nJayme\nJena\nJeniffer\nJessi\nJoann\nJulieta\nKaleigh\nKayleen\nKorina\nTatyana\nTiffanie\nAlysia\nAnakaren\nAnel\nBreonna\nBrook\nCarlee\nDanae\nDestini\nDeyanira\nGlenda\nImelda\nJazzmin\nJodi\nKacey\nKeila\nKia\nKrysta\nLizabeth\nMadalyn\nMarian\nMartina\nMay\nPeyton\nPriscila\nRicki\nRosemarie\nRylee\nSalena\nSarahi\nSkyler\nVania\nVannessa\nYahaira\nYoana\nAmara\nAnnabel\nBree\nBrittnee\nBrooklyn\nFrankie\nGeena\nJamila\nJoan\nKarlee\nKaylah\nKayley\nKenna\nLeann\nLogan\nMarley\nMarta\nPatrice\nPearl\nRianna\nSaira\nShana\nSydnee\nTricia\nAlexi\nAnnelise\nBeth\nBlair\nBobbi\nBrittaney\nChristopher\nDarcy\nDaysi\nDeja\nElyssa\nFrancine\nGema\nHarmony\nHaylie\nIsel\nJune\nKristyn\nLacy\nMabel\nMarianne\nMarielle\nNichelle\nSabina\nSade\nTeresita\nYaneli\nAlejandrina\nAudra\nCarli\nCatrina\nChanelle\nCharity\nDanya\nDayna\nDenisha\nElla\nFanny\nFranchesca\nGladis\nIvon\nJanell\nJannet\nJoslyn\nJuan\nKendal\nMaryann\nMayte\nMerissa\nMollie\nNereida\nRosalba\nShauna\nSpencer\nStefani\nSusie\nTraci\nZhane\nAcacia\nAlycia\nAnayeli\nAnnemarie\nBecky\nBriseida\nCarmina\nCecily\nDeana\nDestinie\nElisha\nEssence\nGretchen\nHilary\nJackelyn\nJaimee\nJoshua\nKarley\nKatia\nLaurie\nLilliana\nLiz\nLupe\nMarielena\nMckayla\nNikole\nPetra\nRena\nRyann\nVicki\nAjee\nAlayna\nAlyse\nAnalisa\nAraseli\nAryana\nBibiana\nBrigette\nBrisa\nCamila\nChina\nChristal\nChristin\nColette\nCydney\nEster\nGillian\nJana\nJazzmine\nJean\nJodie\nJonathan\nKaylene\nKrystina\nMadisen\nMarleen\nNanci\nNubia\nPriya\nShelley\nTerri\nAmina\nAnamaria\nAndrew\nAni\nAnnabelle\nAnnika\nAnnmarie\nAnya\nAriella\nAsha\nAshely\nChantelle\nCharmaine\nCherish\nCody\nDahlia\nDominque\nEryn\nFelisha\nFrida\nGardenia\nInez\nJimena\nJocelynn\nKailyn\nLeeann\nMadelaine\nMalissa\nMarjorie\nMikala\nNatalee\nNeha\nNikita\nOctavia\nPilar\nPooja\nRayna\nSahar\nSequoia\nShanelle\nShannen\nShantel\nShari\nSheryl\nTarah\nAddison\nAdelina\nAlexys\nAlyssia\nAmira\nAria\nBritany\nBryce\nCandelaria\nCorrine\nGabriel\nGracie\nHali\nJanna\nJaquelin\nJeanne\nJeannie\nJoseph\nKalani\nKalie\nKeely\nKerri\nKlarissa\nKristian\nKrystle\nLarisa\nLilibeth\nMacie\nMakena\nMarilynn\nMiracle\nNohemi\nNoor\nRacheal\nRegine\nRhianna\nSamara\nSerenity\nShelbi\nShelbie\nShyla\nSirena\nTabatha\nTerry\nTonya\nWinnie\nYarely\nAdrianne\nAleena\nAnika\nAshtyn\nAundrea\nBaylee\nBrieanna\nBrielle\nCambria\nCamilla\nCatarina\nCesilia\nChasity\nChristen\nDalila\nDanyelle\nDarby\nGemma\nIman\nJami\nJanay\nJanett\nJeanine\nJorge\nKarolina\nKaycee\nKeri\nLee\nLesli\nLynda\nMarbella\nMaricarmen\nMaura\nMilan\nPaulette\nRacquel\nSavana\nSean\nShawn\nSuzanna\nSymone\nTatum\nValarie\nVannesa\nZana\nAbbey\nAbril\nAide\nAmani\nAngeles\nAyanna\nBella\nBillie\nBridgett\nBrittnie\nBrynn\nCarson\nClaribel\nCourtnie\nDeena\nDennise\nElana\nElizabet\nEloisa\nFallon\nGricelda\nInes\nJamesha\nJenelle\nJorden\nKalyn\nKandice\nKarin\nKathrine\nKenzie\nKeyla\nKristiana\nLatasha\nLianna\nLilly\nLiset\nLucila\nLuna\nMakaila\nManuela\nMariaelena\nMarilu\nMonet\nNoheli\nRegan\nRenae\nRosanna\nSaray\nSarena\nScarlet\nSharlene\nShianne\nSindy\nSky\nTorri\nAaron\nAlannah\nAlejandro\nAllegra\nAllysa\nAndreina\nAnisha\nAspen\nAubrie\nAvalon\nBianka\nBlake\nBrandee\nBrionna\nCailin\nCaitlynn\nCorey\nDalena\nDeseree\nDesire\nDionna\nEvette\nGissel\nHalle\nIlene\nIsaura\nJames\nJannette\nJaquelyn\nJoceline\nJoycelyn\nKa\nKala\nKatya\nKayli\nKevin\nKinsey\nKortney\nKrysten\nKyle\nLisset\nLizzette\nMaia\nMaryssa\nMatthew\nMercedez\nMimi\nMyriam\nNicollette\nPatsy\nPriyanka\nRaelene\nRosalva\nSamatha\nSiobhan\nSocorro\nStephani\nThao\nTyra\nYarima\nYer\nYuri\nZoila\nAli\nAlix\nAnahit\nArcelia\nBao\nBrittny\nChelsy\nChiara\nChyna\nCindi\nCorie\nDania\nDarrian\nDayanna\nDebora\nDenice\nElexis\nErendira\nFelicity\nFernando\nGisel\nIda\nIvanna\nJanely\nJasmyne\nJayne\nJenessa\nJody\nJohn\nJolene\nJordin\nKarely\nKiarra\nKirstin\nKrystin\nLeena\nLeonor\nLexie\nLuis\nLyndsay\nMaile\nMarcia\nMarlee\nMarycruz\nMaryjane\nMelodie\nMercy\nMicah\nMyrna\nNidia\nPeggy\nQuinn\nRaeann\nRosalina\nRosy\nSamanta\nSammantha\nShayne\nSiena\nSuzette\nThania\nTherese\nTory\nTreasure\nZoey\nZuleyma\nAdeline\nAnali\nAnastacia\nAnnissa\nArika\nArleen\nAurelia\nBreauna\nCassondra\nCathleen\nChante\nConstance\nDoreen\nEleni\nEugenia\nFarrah\nGaby\nGeorgette\nGuillermina\nHolli\nJason\nJaycee\nJaymie\nJeana\nJourdan\nKadijah\nKalia\nKalina\nKalynn\nKamryn\nKandace\nKatherin\nKatlynn\nKaylen\nKimberlyn\nLeeza\nLiseth\nLondon\nLora\nLoretta\nMalika\nMarcelina\nMargo\nMellissa\nMeranda\nMichaella\nNathalia\nPenelope\nPresley\nRhonda\nRisa\nRobert\nRonisha\nRosita\nShae\nShasta\nShawnee\nShiloh\nShyann\nSiera\nTawni\nThelma\nTrinidad\nVera\nVickie\nWilliam\nZayra\nAiyana\nAlexsandra\nAlisia\nAliza\nAmparo\nAnalicia\nAndie\nAngelia\nAngelic\nArianne\nArlette\nAyesha\nBiridiana\nCari\nChole\nCristine\nDallana\nDaniele\nDarien\nDeandra\nDelanie\nDesiray\nEduardo\nElida\nElisabet\nElle\nEstella\nEvelia\nGeovanna\nGiana\nGrisel\nHector\nHerlinda\nHollie\nIesha\nItsel\nIvory\nJacquelynn\nJada\nJoscelyn\nJosselyn\nJulian\nJuliann\nKacy\nKai\nKarine\nKyana\nLinnea\nLinsey\nLouise\nMaci\nManpreet\nMargot\nMarivel\nMarleny\nMaryam\nMarylou\nMelyssa\nMonae\nNellie\nNicholas\nNicholle\nNicola\nNisha\nNoely\nOscar\nRebecka\nRemy\nRicardo\nRosalind\nRosamaria\nRosaura\nSamira\nSerene\nShanell\nSharmaine\nSheena\nSommer\nSteffany\nStormy\nTamar\nTamera\nTracie\nValery\nVianca\nVivianna\nWinter\nYanely\nYaquelin\nYoseline\nZaida\nAidee\nAmi\nAnahy\nAnalise\nArissa\nAshli\nAsusena\nAudriana\nAzalea\nBrea\nBronte\nBryn\nCarlos\nCera\nChoua\nCintia\nCorrie\nDannielle\nDejanae\nDeysi\nElicia\nEstephany\nFarah\nFlorence\nGinger\nIdalia\nJalisa\nJayla\nJessy\nJoey\nJoselyne\nJulisa\nKaelin\nKamille\nKaylan\nKelcie\nKennia\nKierstin\nKimber\nLatisha\nLeigh\nLexi\nLizbet\nLizett\nLucille\nMakaela\nMalina\nMarena\nMarguerite\nMaritsa\nMaryanne\nMele\nMellisa\nMildred\nMiryam\nMona\nNeda\nNhi\nNou\nPang\nQuincy\nRaveena\nRiana\nRichard\nRina\nSalma\nSayra\nShay\nShivani\nStephania\nSuleima\nSuleyma\nTrista\nVenessa\nXenia\nXimena\nYara\nYohana\nYuridia\nAdele\nAlea\nAlyna\nAn\nAngelika\nAntionette\nAntonio\nArlena\nBailee\nBrandon\nBrian\nBriauna\nBritnee\nBritni\nCali\nCarmela\nCaryn\nChandra\nCory\nCristy\nDanna\nDarlyn\nDelmy\nDena\nDestany\nDyana\nEmelia\nEric\nFlora\nFrancisco\nGena\nGrabiela\nHalley\nHayden\nIsabela\nItati\nIzabella\nIzamar\nJanelly\nJaymee\nJessa\nJessyca\nKadie\nKaeli\nKayle\nKaytlyn\nKeyana\nKhadija\nKyleigh\nLaila\nLeona\nLexis\nLillie\nLinh\nMalaysia\nManuel\nMarika\nMario\nMarlin\nMarrisa\nMarsha\nMiguel\nMikaila\nMyriah\nNika\nOmar\nRae\nRaeanna\nRaelyn\nRaelynn\nRafaela\nRoberta\nRonni\nRoselyn\nRylie\nSahara\nSana\nSheridan\nSheyla\nShireen\nShoshana\nSteven\nSue\nSusannah\nTaylar\nTorie\nTorrie\nUrsula\nVenus\nVianney\nWendi\nYocelyn\nZena\nZenia\nZoie\nAgnes\nAlexsis\nAlexxis\nAllana\nAlliyah\nAlora\nAmairany\nAnessa\nAnjali\nAriadna\nAries\nAryanna\nCaley\nChastity\nChelsee\nCheri\nCherie\nCherise\nCheyann\nChyenne\nCitlaly\nColby\nCrysta\nDanyell\nDeanne\nDelfina\nDominic\nEboni\nElexus\nEmani\nEmilly\nEmoni\nFelecia\nGenessis\nHanah\nIbeth\nIlana\nJacob\nJael\nJahaira\nJaney\nJayna\nJeanie\nJenae\nJennyfer\nJewel\nJosephina\nKalee\nKaryn\nKasie\nKatalina\nKatty\nKaya\nKeaira\nKeanna\nKellyn\nKimberlin\nKiran\nKirstie\nLeana\nLivier\nLois\nLucinda\nLuzmaria\nMacey\nMahogany\nMaraya\nMariadejesus\nMariaguadalupe\nMarylin\nMelany\nMelia\nMikela\nMoira\nNisa\nNoelani\nNoreen\nNydia\nOliva\nOralia\nPage\nRayanna\nRichelle\nRosana\nRosangelica\nSee\nShaniece\nStefania\nSulema\nSunny\nSunshine\nSydni\nTaelor\nThea\nTiera\nTkeyah\nTyana\nValencia\nVeronika\nWillow\nWinona\nYaneth\nYoselyn\nZahra\nZinnia\nAbbie\nAbriana\nAdelaida\nAdelaide\nAislinn\nAlberto\nAlesha\nAlexzandra\nAlexzandria\nAlise\nAliya\nAmberly\nAmrita\nAndres\nAnh\nAnnamaria\nAshanti\nAshlei\nAura\nAya\nAysia\nBeatris\nBerta\nBlaire\nBrieana\nBrina\nCady\nCailey\nCamry\nCaren\nCaressa\nCarmelita\nCathryn\nChantell\nChyanne\nCiana\nClarisse\nCodi\nConcepcion\nDaisey\nDalina\nDanesha\nDani\nDarlin\nDeidre\nDelena\nDelores\nDezirae\nDillon\nDominica\nDorian\nElina\nEnedina\nErinn\nGabriele\nGenisis\nGisell\nGreta\nHarlie\nHarper\nHenna\nHerminia\nImari\nIvan\nIzabel\nJanira\nJasmeen\nJazelle\nJeannine\nJenell\nJesseca\nJordana\nKaili\nKassie\nKathryne\nKelci\nKelsy\nKendyl\nKeren\nKeyanna\nKiani\nKirstyn\nKristianna\nKyrie\nLanae\nLanisha\nLiberty\nLili\nLilit\nLinette\nLisbet\nLizzet\nLluvia\nLorna\nLouisa\nLyzette\nMariella\nMariko\nMarin\nMariza\nMarrissa\nMattie\nMeera\nMeg\nMerlin\nMichel\nMika\nMira\nMyesha\nNailah\nNalani\nNalleli\nNatividad\nNayelly\nNuvia\nOdalys\nPaisley\nPeri\nPhoenix\nPhuong\nPiper\nReagan\nRebeka\nReena\nRhea\nRomina\nRossy\nSaba\nSadaf\nSandi\nSarita\nShakira\nSharleen\nSondra\nStar\nSteffanie\nStephaine\nTalar\nTasia\nTeagan\nTerilyn\nTierney\nTonia\nTonisha\nTorrey\nTrang\nVivianne\nVy\nWilla\nYajayra\nYenifer\nZainab\nZulma\nAbrianna\nAddie\nAishah\nAlecia\nAlesia\nAnalaura\nAndrina\nAnnalee\nArden\nAriadne\nArmando\nAryn\nAshlea\nAusten\nAvigail\nAzalia\nBaleria\nBanesa\nBelle\nBerenis\nBeronica\nBethanie\nBetsabe\nBreona\nBritta\nCaitlan\nCarleen\nCaterina\nCaylee\nCesia\nChana\nChanell\nCharissa\nCharli\nChaya\nChelsi\nCiarra\nClarice\nCollette\nConnor\nCorin\nCrista\nDanyel\nDara\nDarla\nDarline\nDennis\nElda\nEmmy\nErendida\nErik\nEstelle\nEstrellita\nEvangeline\nEvelyne\nFabiana\nGenna\nGiulia\nGlory\nHaily\nHarpreet\nHaydee\nIsabell\nIvett\nJaelyn\nJalissa\nJaliyah\nJeanna\nJennica\nJensen\nJerica\nJerrica\nJoel\nJohannah\nJoi\nJolie\nJulieanne\nJustyne\nKailani\nKalene\nKalli\nKanisha\nKarinna\nKaris\nKarishma\nKarolyn\nKatelynne\nKatey\nKathia\nKatlin\nKeara\nKeira\nKeiry\nKeisha\nKelsee\nKemberly\nKendell\nKenisha\nKera\nKeyona\nKiah\nKodie\nKrystel\nKyara\nKyndall\nKyndra\nLane\nLatoya\nLeslye\nLindy\nLynnette\nMadelynn\nMaiya\nMalorie\nMarcy\nMargie\nMaricella\nMarkie\nMarlana\nMartiza\nMarysol\nMeghann\nMegumi\nMekayla\nMeliza\nMichela\nMilena\nMiriah\nMisha\nMitzy\nMiya\nMykala\nNely\nNereyda\nNicki\nNicky\nPahoua\nPenny\nPuja\nRachell\nRaechel\nRana\nRaychelle\nReilly\nRemington\nRian\nRio\nRonnie\nRoselia\nRowan\nRubie\nSaleena\nSeleste\nShaianne\nShane\nShani\nShanon\nShantal\nShante\nShanti\nSharron\nShaylyn\nSilvana\nSimran\nSintia\nStaci\nStormie\nTal\nTawnie\nTera\nTeryn\nTiare\nTisha\nTuesday\nVanity\nVivienne\nWaverly\nXitlali\nYael\nYanel\nYocelin\nYsabel\nZachary\nAbbigail\nAbilene\nAgustina\nAinsley\nAiram\nAkilah\nAlanah\nAlaura\nAleesa\nAlize\nAllissa\nAmandeep\nAmanpreet\nAmayrani\nAnalleli\nAnaly\nAndi\nAnja\nAnnabella\nAnny\nAntonette\nArlin\nArlyn\nArmida\nAsucena\nAudree\nAudrianna\nAvelina\nBerenise\nBessy\nBriahna\nBriona\nBrissa\nBritny\nBritteny\nBryan\nCamellia\nCarleigh\nCarlyn\nCarmella\nCarole\nCassidee\nCaylin\nCelest\nChase\nCitlali\nCorayma\nCorissa\nCosette\nDafne\nDaisha\nDanelle\nDaniell\nDanisha\nDeisi\nDeonna\nDer\nDeziree\nDolly\nEdgar\nEdward\nElodia\nElora\nEma\nEmelie\nEmery\nEmmeline\nEnid\nErina\nErnestine\nGabby\nGalilea\nGiovanni\nGissell\nGiuliana\nHellen\nHolland\nIa\nIna\nIvania\nJacquelyne\nJanea\nJanee\nJaneen\nJanis\nJaslyn\nJasmen\nJayde\nJayleen\nJazlyn\nJenee\nJonna\nJordann\nJosseline\nJovita\nKaci\nKaelynn\nKalena\nKallie\nKameron\nKandy\nKarena\nKarol\nKaroline\nKaterin\nKattie\nKay\nKelcey\nKeshia\nKindra\nKirby\nKlarisa\nKoraima\nKrystine\nKylene\nLacie\nLainey\nLan\nLani\nLayne\nLiane\nLisamarie\nLisett\nLissett\nLivia\nLorin\nLorissa\nLyna\nLysette\nMadina\nMadisyn\nMaisie\nMallorie\nManisha\nMargaux\nMargret\nMariadelcarmen\nMarinna\nMarion\nMarkeisha\nMarquisha\nMartika\nMatilde\nMichala\nMickayla\nMillie\nMontserrat\nMorgen\nNaima\nNelida\nNena\nOksana\nOsiris\nOsmara\nParadise\nPatrisia\nPebbles\nPhylicia\nPorsha\nPortia\nPrisilla\nQuiana\nRandee\nRaquelle\nRaya\nRebekka\nRianne\nRiki\nRosalyn\nRuben\nRyley\nSabreena\nSabryna\nSachi\nSaida\nSaige\nSantana\nSapphire\nSeanna\nSergio\nShantell\nSharee\nShaylee\nSherri\nShoua\nShreya\nSinai\nSona\nStarla\nStephane\nTala\nTalisha\nTamika\nTamiko\nTesla\nTeylor\nThuy\nTristan\nTyesha\nVaness\nVi\nWanda\nYamilet\nYanelly\nYsabella\nYsenia\nZaina\nZenaida\nZuly\nZuri\nAbigayle\nAdina\nAdria\nAlec\nAleksandra\nAlessa\nAliah\nAlli\nAlmarosa\nAlyx\nAmada\nAmaranta\nAmaya\nAnamarie\nAndreana\nAndriana\nAngelena\nAnmol\nAnnel\nAnneliese\nArabella\nArgelia\nAriane\nAriela\nAshia\nAshlin\nAubrianna\nAzusena\nBabygirl\nBenita\nBerlin\nBrett\nBreyana\nBriceida\nBrigid\nBrynna\nCailyn\nCandra\nCandyce\nCarlene\nCarolann\nCarrissa\nCassaundra\nCassey\nCaterin\nCelestina\nCerina\nChampagne\nChannel\nChanning\nCharlie\nChenoa\nCherokee\nCherry\nCheyanna\nChristelle\nChristianne\nClaritza\nCzarina\nDamariz\nDarion\nDarleen\nDarnesha\nDeedee\nDella\nDemetria\nDesarae\nDestanie\nDevina\nDixie\nElayna\nElianna\nElma\nElysa\nEmiley\nEmmalee\nErick\nErnesto\nEstefanie\nEulalia\nEvonne\nFabian\nFrancheska\nGao\nGarrett\nGenevie\nGenoveva\nGizelle\nGlendy\nGrasiela\nGurpreet\nHaidee\nHarleen\nHayli\nHoua\nIndira\nIrina\nIsadora\nIsrael\nJacinda\nJackelin\nJacklynn\nJaclynn\nJacy\nJalyn\nJamilah\nJanai\nJanina\nJazmen\nJazzlyn\nJazzmen\nJenica\nJeremy\nJesika\nJessyka\nJoleen\nJoni\nJordon\nJosue\nJudit\nJustin\nKadi\nKaily\nKalei\nKami\nKarisa\nKarizma\nKarleen\nKarmen\nKaryssa\nKassy\nKatiana\nKaytlin\nKc\nKeirra\nKelia\nKellee\nKennya\nKeya\nKeyonna\nKierstyn\nKiyanna\nKomal\nKymberly\nLacee\nLaine\nLashawna\nLatrice\nLeeanna\nLenora\nLeonela\nLetitia\nLetticia\nLeyla\nLilianna\nLynsey\nMacaela\nMaeghan\nMagda\nMakala\nMalena\nMandi\nMarinda\nMariya\nMarlenne\nMecca\nMerari\nMikeisha\nMiki\nMonay\nMonisha\nMorganne\nMyah\nMyrka\nNada\nNakia\nNalley\nNatalya\nNickole\nNikolette\nNissa\nNoeli\nNykia\nOriana\nPablo\nPakou\nParisa\nPatience\nPatrick\nPerri\nPrecilla\nRainey\nRayleen\nRayne\nRemi\nRenata\nRheanna\nRima\nRoberto\nRosina\nRudy\nSabrena\nSandeep\nSari\nSavina\nSelenne\nShaelyn\nShanae\nShanel\nShannan\nShannel\nShawnie\nShaylene\nShaylynn\nShereen\nSheri\nSheyenne\nShyan\nSindi\nSkyla\nSloan\nSmantha\nSoraya\nStephannie\nStephen\nSusy\nSuzan\nSuzy\nSylvana\nTalitha\nTaralyn\nTarra\nTeanna\nTegan\nTheodora\nTirzah\nTran\nVenezia\nVienna\nVilma\nVina\nVirdiana\nWhitley\nWynter\nXochil\nYazmine\nYen\nYennifer\nYezenia\nYuka\nZeinab\nZoua\nZully\nAbagail\nAbigal\nAbraham\nAdam\nAdrina\nAlani\nAleida\nAleigha\nAlexie\nAlexiss\nAlexius\nAleyah\nAllyn\nAlva\nAlvina\nAmal\nAmari\nAmberlee\nAmethyst\nAmorette\nAnacaren\nAnalilia\nAnarosa\nAndreya\nAnette\nAngelyn\nAnjanette\nAnnastasia\nAntonina\nArionna\nArlen\nArmani\nArturo\nAryssa\nAshlan\nAubriana\nAubry\nAudrina\nAustyn\nAziza\nBaby\nBarbie\nBenjamin\nBreena\nBreyona\nBrienna\nBritani\nBritnie\nBrittini\nBrittnay\nBrooklynn\nCameo\nCamryn\nCandi\nCandie\nCandis\nCarolynn\nCasie\nCassady\nCathrine\nCeara\nCecile\nChai\nChance\nCharisse\nCharlee\nCharnae\nCherelle\nChika\nChris\nChristi\nChristiane\nCienna\nClariza\nClaudine\nCodie\nCristin\nCyntia\nDaria\nDasia\nDayanara\nDeann\nDelicia\nDelina\nDesaree\nDeserae\nDeserie\nDestani\nDesteny\nDeven\nDevynn\nDilcia\nDinora\nDonielle\nDyamond\nDymond\nEbone\nEdit\nEdwin\nElba\nEleana\nElexia\nEli\nElin\nElisia\nElsy\nElysia\nEmber\nEmelyn\nEnjoli\nEnrique\nEnya\nErnestina\nEstephani\nEvelynn\nFaye\nForrest\nGail\nGennesis\nGeorge\nGerardo\nGia\nGianina\nGigi\nGiovana\nHadley\nHaide\nHanh\nHaven\nHelene\nHortencia\nIcel\nIcela\nIdania\nIndigo\nItza\nItzell\nIxel\nJacelyn\nJacquline\nJake\nJakeline\nJamee\nJameelah\nJamika\nJanaye\nJaniece\nJannelle\nJannett\nJanny\nJaspreet\nJassmin\nJavier\nJaylene\nJaylin\nJaylyn\nJaylynn\nJazman\nJazzmyn\nJeanelle\nJenay\nJenea\nJenette\nJenni\nJennipher\nJerika\nJessicaann\nJessicamarie\nJesslyn\nJonnie\nJosette\nKady\nKaitlen\nKaleen\nKambria\nKameryn\nKamila\nKanani\nKao\nKarem\nKarima\nKarisma\nKarlyn\nKaryna\nKassaundra\nKathie\nKathlyn\nKati\nKayce\nKaytlynn\nKeani\nKeaton\nKeilyn\nKenneth\nKennisha\nKerstin\nKimi\nKimiya\nKoral\nKorinna\nKristan\nKya\nKyanna\nKymber\nLaci\nLaken\nLakia\nLanesha\nLanette\nLaney\nLashay\nLatia\nLaurissa\nLeesa\nLeora\nLetty\nLeydi\nLilyanne\nLimayri\nLindsy\nLisandra\nLissete\nLoan\nLoni\nLoraine\nLucina\nLuke\nLyla\nLysa\nMacee\nMadalynn\nMadelin\nMadelyne\nMadilyn\nMadyson\nMae\nMagen\nMaite\nMalak\nMalinda\nMandeep\nMaren\nMaricsa\nMariely\nMarine\nMarisabel\nMark\nMarlaina\nMartin\nMartine\nMaryan\nMarygrace\nMarykate\nMarylyn\nMayraalejandra\nMelaine\nMelannie\nMelisha\nMickaela\nMidori\nMikhaila\nMilagros\nMilca\nMillicent\nMirka\nMoncerrat\nMuna\nMykayla\nMyrissa\nNaja\nNajah\nNana\nNandi\nNaomy\nNarissa\nNatallie\nNatashia\nNathan\nNava\nNayelli\nNeftali\nNerissa\nNgoc\nNikkie\nNinfa\nNirvana\nNour\nNyla\nOcean\nOdalis\nOphelia\nParker\nPedro\nPricila\nPriscella\nPromise\nQueen\nRabecca\nRachele\nRadhika\nRaegan\nRaeven\nRafael\nRainee\nRaisa\nRanda\nRandie\nRandy\nRanisha\nRashell\nRayana\nRaychel\nRaymond\nReanne\nRebeccah\nReem\nReynalda\nRhiana\nRia\nRilee\nRonnisha\nRoseann\nRoseanne\nRoxann\nRudi\nRyanne\nSacha\nSanjana\nSanjuana\nSanta\nSaskia\nSerra\nShabnam\nShakia\nShalynn\nShamika\nShaney\nShara\nShaunna\nShawnna\nShaye\nShaylah\nShaylin\nShira\nSiara\nSilver\nSoleil\nSomer\nSonali\nStacia\nStarr\nStephenie\nStevi\nSumer\nSuzana\nSyndey\nTabetha\nTajanae\nTaleen\nTalin\nTamisha\nTammie\nTamra\nTana\nTanesha\nTanna\nTashawna\nTatyanna\nTeal\nTereza\nTiarra\nTifani\nTiffiny\nTimothy\nTommie\nVada\nVaneza\nVerenise\nVianka\nVictor\nViktoria\nViola\nWilma\nWindy\nYamileth\nYaricza\nYudith\nYunuen\nYuriko\nZara\nZoraida\nAaryn\nAbeer\nAbigael\nAbigale\nAbrielle\nAdelle\nAdreana\nAdrien\nAdryanna\nAimme\nAkela\nAkira\nAlan\nAlberta\nAlda\nAlexandrina\nAlexes\nAliana\nAlizabeth\nAlla\nAlona\nAlyshia\nAlyxandria\nAmee\nAmmy\nAnaissa\nAnaiz\nAnalia\nAnaluisa\nAnam\nAnay\nAndee\nAndra\nAndre\nAndrena\nAndrianna\nAnett\nAngele\nAnhelica\nAnnah\nAnnalicia\nAnnisa\nAolani\nApryl\nAri\nAriauna\nArisa\nArlet\nArmine\nAshlen\nAshlynne\nAsma\nAsuzena\nAtiya\nAtziri\nAudrie\nAudry\nAveri\nAylin\nAysha\nAzalie\nBanessa\nBayley\nBaylie\nBereniz\nBlythe\nBradlee\nBreeann\nBrenae\nBrennan\nBreya\nBreyanna\nBriannah\nBrighton\nBrigit\nBrionne\nBrynne\nByanca\nCameryn\nCarrisa\nCashmere\nCassidi\nCassy\nCatherina\nCatlin\nCayley\nCelyna\nChan\nChandni\nCharis\nCharise\nCharleen\nCharles\nCharline\nChayanne\nChenelle\nChia\nChristinejoy\nChyann\nChynna\nCitlalli\nClarivel\nClaudette\nClementina\nColeen\nCorena\nCorine\nCornelia\nCorrin\nCoua\nCourtnee\nCristen\nCristiana\nCristie\nCruz\nCyndi\nCypress\nDaena\nDaja\nDakotah\nDale\nDanitza\nDanniela\nDanny\nDarci\nDarling\nDavianna\nDavonna\nDayanne\nDebby\nDeidra\nDelaina\nDelma\nDennice\nDesirea\nDestanee\nDestine\nDevine\nDezarae\nDivya\nDomanique\nDonisha\nEbonee\nEdlin\nElisse\nElizeth\nEllena\nEllisa\nElly\nElsi\nEman\nEmmaline\nEmmanuelle\nEsli\nEternity\nEunique\nFalicia\nFaustina\nFelisa\nFlorencia\nFolasade\nFrank\nGenecis\nGeorgie\nGinamarie\nGinny\nGisele\nGisella\nGlenna\nGracelyn\nGracey\nGreer\nHala\nHalee\nHan\nHarlee\nHuyen\nIcsel\nIkea\nIleen\nImalay\nIqra\nIracema\nIrlanda\nIsaac\nIvone\nIzamary\nJacey\nJackelyne\nJacky\nJaden\nJaide\nJammie\nJannel\nJanneth\nJayden\nJaylen\nJenesis\nJenika\nJenine\nJennafer\nJennah\nJennefer\nJesselyn\nJewels\nJezabel\nJezebel\nJimmie\nJisselle\nJo\nJohnathan\nJohnna\nJoie\nJoline\nJonah\nJori\nJosefa\nJubilee\nJuly\nJustus\nJustyce\nKacee\nKadisha\nKailin\nKalen\nKalynne\nKamara\nKamilah\nKanwal\nKarah\nKareli\nKarime\nKarrie\nKarrina\nKasondra\nKaterine\nKatharina\nKathya\nKatina\nKatja\nKaycie\nKaydee\nKaylamarie\nKaylia\nKaytee\nKazzandra\nKeeley\nKeianna\nKeiko\nKeilani\nKela\nKelcee\nKelcy\nKena\nKenesha\nKhadejah\nKiely\nKimberlynn\nKimiko\nKiona\nKirra\nKiyana\nKlaudia\nKodi\nKolleen\nKora\nKorrina\nKris\nKrishna\nKristyna\nKyler\nLailani\nLashae\nLeandrea\nLeanza\nLeighann\nLela\nLenina\nLeslee\nLexy\nLeyda\nLeyna\nLezly\nLianne\nLien\nLiliane\nLilith\nLilybeth\nLimairy\nLissa\nLita\nLizvet\nLizzete\nLoida\nLoreal\nLoryn\nLurdes\nLus\nLusine\nLyly\nLyndsie\nLynna\nMa\nMacayla\nMaciel\nMackenna\nMaeve\nMagnolia\nMakenzy\nMalea\nMaleni\nMallori\nManal\nMandalyn\nMao\nMaral\nMaram\nMarci\nMariafernanda\nMarialuisa\nMariama\nMariann\nMarilin\nMarixa\nMarshae\nMarty\nMarybeth\nMarycarmen\nMatilda\nMayumi\nMechelle\nMee\nMeggan\nMehgan\nMeilani\nMeisha\nMelani\nMelenie\nMeliss\nMelizza\nMerlyn\nMichaila\nMichal\nMichayla\nMiesha\nMirza\nMorghan\nMy\nMychelle\nMyisha\nNairi\nNathali\nNechama\nNeida\nNickie\nNikia\nNoelia\nNorah\nNuria\nNykole\nNyssa\nOdessa\nOlimpia\nOlyvia\nPaolina\nPassion\nPeter\nPhyllis\nPiedad\nPolly\nPorsche\nPrincesa\nQuincey\nQuinci\nRachelanne\nRaeleen\nRaiza\nRania\nRashelle\nRawan\nRayanne\nRaylina\nRayven\nReana\nReann\nReyanna\nRiane\nRickie\nRomy\nRona\nRonda\nRory\nRubina\nSabine\nSafia\nSalem\nSalome\nSamone\nSamuel\nSania\nSaphire\nSarahgrace\nSarahjane\nSareena\nSariah\nSarrah\nSativa\nSchuyler\nSebrina\nSedona\nSeleni\nSelma\nShadae\nShala\nShalyn\nShandra\nShanee\nShanie\nShaniqua\nShardae\nShaun\nShaunice\nShayda\nSheng\nSherrie\nShiann\nShilo\nSilva\nSinead\nSinthia\nSiria\nSneha\nSolange\nSpring\nStaphany\nSteffi\nStephanee\nStephaney\nSterling\nStormi\nSujey\nSukhpreet\nSymphony\nSynthia\nTahirah\nTahlia\nTahnee\nTaja\nTaliah\nTalina\nTalya\nTam\nTameka\nTanairi\nTanika\nTanner\nTashina\nTatiyana\nTaylore\nTeaira\nTerah\nThu\nTien\nTiffini\nTorey\nTriana\nTrini\nTruc\nTyara\nTyrisha\nTytiana\nValeri\nVianna\nVida\nVita\nVivien\nXitlaly\nYanina\nYicel\nYomaira\nYovana\nYu\nYusra\nZabrina\nZahira\nZakiya\nZayna\nZina\nZitlaly\nJessica\nAshley\nStephanie\nJennifer\nSamantha\nEmily\nSarah\nElizabeth\nAmanda\nMaria\nVanessa\nKimberly\nMelissa\nAlexis\nJasmine\nTaylor\nMichelle\nMegan\nRachel\nLauren\nNicole\nAlyssa\nHannah\nAlexandra\nAndrea\nVictoria\nBrianna\nDanielle\nNatalie\nJacqueline\nKayla\nBrittany\nDiana\nKarina\nRebecca\nKatherine\nBrenda\nMonica\nDaisy\nSelena\nMarissa\nChristina\nGabriela\nMadison\nCynthia\nAmber\nAngelica\nAlejandra\nCrystal\nJocelyn\nCourtney\nLaura\nTiffany\nNancy\nSara\nAna\nKaren\nJulia\nErika\nSydney\nVeronica\nOlivia\nAngela\nAdriana\nSierra\nYesenia\nAmy\nKelly\nBriana\nAnna\nSabrina\nMiranda\nBreanna\nLeslie\nGuadalupe\nHaley\nMorgan\nMariah\nAllison\nCassandra\nJazmin\nEvelyn\nDestiny\nKelsey\nCindy\nErica\nAlicia\nChelsea\nAbigail\nShelby\nSavannah\nSandra\nValerie\nBianca\nMary\nErin\nBrooke\nMonique\nCheyenne\nJasmin\nAlexandria\nAlondra\nKaitlyn\nAriana\nClaudia\nJordan\nEmma\nHeather\nDesiree\nMayra\nPatricia\nJamie\nChristine\nMadeline\nGabrielle\nPriscilla\nWendy\nJoanna\nShannon\nIsabel\nCatherine\nKarla\nKatelyn\nKylie\nDenise\nPaige\nMelanie\nCristina\nJenna\nKatie\nPaola\nKristen\nGrace\nSophia\nKassandra\nAlexa\nCecilia\nKathryn\nJanet\nLiliana\nLisa\nCaitlin\nBrittney\nCeleste\nJulie\nRosa\nGabriella\nMarisa\nRuby\nDominique\nValeria\nIsabella\nDaniela\nCassidy\nLinda\nJazmine\nCarolina\nRaquel\nKaitlin\nApril\nEsmeralda\nLindsey\nVivian\nHailey\nChloe\nClarissa\nKathleen\nKristina\nMarina\nClaire\nCarina\nCaroline\nLorena\nMarisol\nHayley\nMarlene\nBailey\nKatrina\nGenesis\nJenny\nLeah\nMartha\nMichaela\nSummer\nSonia\nTatiana\nMackenzie\nIrene\nLeticia\nTeresa\nArianna\nLindsay\nMiriam\nAlma\nCarmen\nViviana\nAngelina\nGloria\nAriel\nCarly\nMariana\nLizbeth\nYvette\nCarla\nMolly\nNatasha\nEdith\nKrystal\nSerena\nElena\nAudrey\nAngel\nDana\nMaritza\nBlanca\nHolly\nSelina\nZoe\nJustine\nKiana\nNaomi\nMeghan\nMia\nJocelyne\nMargaret\nDalia\nKaylee\nTara\nAlison\nNoemi\nRebekah\nCamille\nMikayla\nTania\nAraceli\nCristal\nSusana\nCasey\nTanya\nMaribel\nAutumn\nMaya\nBeatriz\nBrandi\nSharon\nYadira\nCelina\nAdrianna\nYvonne\nPerla\nGina\nNatalia\nJade\nRachael\nSofia\nHeidi\nMargarita\nDeanna\nKendall\nKristin\nBrandy\nKendra\nHelen\nAmelia\nRuth\nBethany\nNorma\nSandy\nCaitlyn\nJeanette\nMercedes\nAimee\nAnnie\nMadeleine\nRocio\nPaulina\nEsther\nJuliana\nLizette\nCierra\nEva\nFaith\nElisa\nJanelle\nLily\nStacy\nBerenice\nItzel\nKathy\nMakayla\nReyna\nSusan\nBridget\nFabiola\nAshlee\nJacquelyn\nStephany\nYasmin\nAlina\nJudith\nCarolyn\nKiara\nMckenna\nMelody\nKrista\nTori\nJillian\nLydia\nHanna\nKirsten\nNina\nSilvia\nWhitney\nCharlotte\nFelicia\nMarilyn\nAlissa\nIris\nStacey\nKara\nLillian\nRaven\nYolanda\nCiara\nMariela\nTyler\nArlene\nJosephine\nAlexia\nLuz\nRenee\nSarai\nAlice\nDeja\nBreana\nDiane\nJaclyn\nVirginia\nLucia\nPamela\nTiana\nAlana\nGraciela\nAnne\nDaniella\nGiselle\nJohanna\nNadia\nNicolette\nRiley\nTina\nAngelique\nAngie\nJessie\nElaine\nHope\nBrenna\nEllen\nFrancesca\nNataly\nAlexus\nSavanna\nViridiana\nAsia\nJulianna\nDulce\nRose\nJaqueline\nTheresa\nBarbara\nCarissa\nJordyn\nKristine\nLizeth\nTessa\nYessenia\nAshlyn\nKarissa\nLucy\nMikaela\nClara\nLacey\nDestinee\nGladys\nNathalie\nRegina\nSylvia\nDarlene\nRebeca\nCandace\nConnie\nDakota\nFatima\nPaula\nRoxana\nSophie\nLucero\nIvette\nDelaney\nFrances\nGianna\nGriselda\nNoelle\nKatelynn\nLarissa\nNichole\nBryanna\nEileen\nMarie\nNayeli\nTabitha\nTracy\nDesirae\nImani\nKellie\nKenia\nSadie\nAllyson\nAshleigh\nDonna\nAubrey\nDevon\nSasha\nSidney\nRosemary\nBritney\nMallory\nMaricela\nNikki\nKelli\nKira\nKylee\nMicaela\nTayler\nIvy\nThalia\nCheyanne\nJane\nKristy\nMeagan\nMelina\nRoxanne\nCorina\nJoyce\nColleen\nDeborah\nElisabeth\nIridian\nJoselyn\nKenya\nMaggie\nMelinda\nAnissa\nElise\nFernanda\nJoana\nKaila\nKasey\nKate\nKennedy\nTamara\nMaira\nSalina\nAlisha\nArielle\nEmely\nMckenzie\nSimone\nCandice\nDiamond\nIngrid\nShirley\nTaryn\nChelsey\nAileen\nJanette\nJustice\nNora\nSavanah\nEunice\nMakenna\nMarisela\nAnnette\nBelen\nChandler\nKyra\nMagdalena\nAliyah\nFlor\nJuana\nLourdes\nSally\nChristian\nEricka\nJoanne\nSelene\nTalia\nAdilene\nAnita\nAurora\nCarol\nEstefani\nIrma\nLesly\nReina\nAaliyah\nCasandra\nGisela\nHelena\nIsabelle\nJoy\nJuanita\nLesley\nToni\nAlisa\nAstrid\nKatarina\nRachelle\nYessica\nCelia\nJudy\nSheila\nDianna\nEbony\nIvonne\nJaime\nJulianne\nJulissa\nLeilani\nRobin\nAdrienne\nAntonia\nEvelin\nGenevieve\nIliana\nAnastasia\nChanel\nChristy\nJanice\nKailey\nKatharine\nPaloma\nTianna\nYazmin\nCatalina\nDamaris\nEsperanza\nLidia\nPrecious\nRita\nRoxanna\nTiara\nTiffani\nVanesa\nDevin\nMadelyn\nBertha\nEliza\nEstefany\nKasandra\nAlanna\nDenisse\nJanae\nMichele\nYajaira\nSarina\nTierra\nGiovanna\nKaitlynn\nKatlyn\nXochitl\nAthena\nEmilee\nHunter\nMireya\nScarlett\nAracely\nBrianne\nCinthia\nDarian\nJada\nJanessa\nBaylee\nJackeline\nKassidy\nMai\nSonya\nCassie\nChantal\nKyla\nRubi\nAnn\nCara\nDanica\nJenifer\nLena\nLilian\nMoriah\nPhoebe\nChristiana\nEmilie\nJacklyn\nJoceline\nKelsie\nLuisa\nYasmine\nAlyson\nBreanne\nCelena\nGeorgina\nHaylee\nIsela\nJosefina\nMarcela\nNadine\nOlga\nRosario\nCallie\nCathy\nCorinne\nEden\nEstefania\nJoseline\nMelisa\nPauline\nShawna\nAntoinette\nCiera\nCortney\nDelia\nLeanna\nStefanie\nAlex\nAlexandrea\nGrecia\nHailee\nMacy\nTia\nCeline\nDebbie\nDolores\nLisette\nLissette\nLorraine\nShayla\nAbby\nAnabel\nAreli\nAvery\nAzucena\nBrandie\nBrittani\nChrista\nDorothy\nFrancis\nHeaven\nMyra\nTrisha\nBelinda\nElissa\nKaylin\nKelley\nLaurel\nLea\nRochelle\nSerina\nYasmeen\nAlessandra\nBridgette\nJessika\nJuliette\nKristal\nMakenzie\nTammy\nYahaira\nAlaina\nAnjelica\nBeverly\nCayla\nJosie\nMarlen\nNia\nSalena\nShayna\nAshly\nAshlynn\nCarrie\nCorrina\nDayana\nElvia\nHilda\nKaela\nKarly\nLilia\nMagaly\nRosalinda\nTess\nXiomara\nAshlie\nBernadette\nChantel\nEleanor\nEstephanie\nHazel\nJessenia\nJustina\nLupita\nRobyn\nRosie\nSienna\nSkylar\nStevie\nTatyana\nYareli\nAva\nCharlene\nElaina\nElvira\nKiley\nLiana\nMaddison\nZulema\nAmerica\nArely\nBria\nElsa\nFiona\nIleana\nJohana\nLeanne\nLina\nMaricruz\nMeredith\nMisty\nReanna\nShyanne\nSkyler\nAmalia\nAnais\nClare\nDaphne\nElsie\nEssence\nImelda\nKarlee\nLilibeth\nRhiannon\nUnique\nCameron\nDemi\nEstela\nHana\nHeidy\nJaneth\nJanine\nKaylie\nLara\nLynette\nRyan\nSage\nTrinity\nVicky\nYoselin\nCarley\nDarby\nEliana\nFaviola\nGema\nGillian\nIsis\nJanel\nKaelyn\nKali\nKianna\nLisbeth\nMarianna\nBernice\nBonnie\nClarisa\nEmilia\nJeannette\nKaley\nKierra\nLeila\nParis\nPearl\nValentina\nAdela\nDestiney\nElyse\nGeorgia\nJennie\nLogan\nMalia\nMarcella\nMindy\nRandi\nSuzanne\nAlena\nAnyssa\nBetsy\nBetty\nCarli\nCheryl\nDora\nJackie\nKatia\nMagali\nNatali\nNathaly\nRaylene\nZaira\nAdrian\nDeisy\nDrew\nEstrella\nFrancisca\nJacquelin\nJesse\nJose\nJuliet\nKacie\nKatelin\nKiera\nKristie\nMadalyn\nMaranda\nMari\nMonika\nRosio\nSirena\nSuzette\nSydnee\nAmairani\nAni\nDaniel\nElla\nIvana\nKari\nMara\nMaxine\nMirian\nMonserrat\nSherry\nSkye\nTatianna\nAubree\nAyana\nBreann\nBrianda\nEllie\nFrida\nHaleigh\nKayleigh\nKeana\nKelsea\nLia\nMariel\nMarlena\nMaureen\nMina\nNallely\nRikki\nSamira\nShelly\nTyra\nYaritza\nYesica\nAida\nAnahi\nAnika\nBobbie\nChelsie\nDevyn\nIrania\nKiersten\nKorina\nLizet\nMaryann\nStella\nTerra\nYanet\nAlia\nBiridiana\nCandy\nCarlie\nConsuelo\nDallas\nDoris\nHarley\nJesenia\nJocelin\nLexus\nLyndsey\nLynn\nMckayla\nMyranda\nNelly\nPriscila\nRosemarie\nShaina\nTasha\nVianey\nVioleta\nAisha\nAyla\nBrisa\nDelilah\nDina\nIndia\nJazmyn\nJesica\nJoan\nKaty\nKristi\nKrysta\nLori\nMarla\nNereida\nNoel\nSusanna\nSydnie\nAime\nAlycia\nAlysia\nAnnabelle\nBella\nBlair\nBrittni\nCharity\nChristie\nDania\nGeraldine\nJayme\nJazzmin\nJoelle\nKailee\nKelsi\nKimberlee\nLayla\nSoledad\nAlysha\nBrigitte\nCamila\nCoral\nCori\nDestini\nGretchen\nIlene\nMarlyn\nMeaghan\nPilar\nRosalba\nSerenity\nStacie\nVannessa\nVerenice\nYanira\nAllie\nAnisa\nAnnika\nAshli\nBeatrice\nBriseida\nChanelle\nCherish\nColette\nDawn\nElia\nEmerald\nGwendolyn\nIman\nIsamar\nJanay\nJannet\nJaquelin\nJazzmine\nJeniffer\nJolene\nJoselin\nKaylah\nKendal\nLana\nLiza\nLoren\nMarta\nQuinn\nRaina\nSarahi\nAlize\nAllegra\nAnakaren\nAnthony\nBecky\nBryana\nDebra\nDennise\nHillary\nJoselyne\nKarli\nKeila\nMandy\nMinerva\nMollie\nPeyton\nRosalia\nRylee\nTatum\nTrina\nViolet\nAdrianne\nAleena\nAlysa\nAmaris\nAnai\nAnalisa\nAnnabel\nAshton\nCarlee\nConcepcion\nCora\nCorinna\nDanae\nDarla\nDavina\nEdna\nElana\nEvangelina\nGeneva\nGlenda\nHalie\nIlse\nMariam\nMarjorie\nMaryam\nMaura\nMontserrat\nNanci\nPayton\nPricilla\nShea\nSydni\nTiffanie\nAda\nAja\nAnamaria\nAngeles\nCinthya\nDaija\nDanika\nDanyelle\nDayna\nElisha\nFrancine\nGisselle\nJennyfer\nJesus\nJoann\nKacey\nKarin\nKayleen\nKourtney\nLaila\nLilly\nMaricarmen\nMartina\nMay\nMerissa\nRamona\nRayna\nShivani\nYaneli\nZuleima\nAide\nAlba\nAleah\nAlexander\nAllyssa\nAndie\nAngeline\nAnnalisa\nAshely\nAyanna\nBailee\nCecelia\nChristopher\nDaysi\nElyssa\nFranchesca\nGemma\nGladis\nIridiana\nJodi\nKatheryn\nKeri\nKevin\nKimberley\nKlarissa\nKristyn\nLauryn\nLouise\nMaegan\nMarian\nMicayla\nMona\nMontana\nShanice\nShelley\nStefany\nAmie\nBerenise\nBrook\nDaisha\nDalila\nDominque\nJasleen\nJazlyn\nJeannie\nJovana\nKaleigh\nKarlie\nKaylyn\nKim\nMakena\nMarianne\nMirna\nMitzi\nNohemi\nPa\nRicki\nSequoia\nShana\nSheridan\nSiena\nStefani\nTawny\nTracey\nValery\nYamilex\nYoana\nAlyse\nAmani\nAmbar\nAriella\nBillie\nBrionna\nBrittnee\nChristen\nDavid\nDevan\nGabriel\nIsabela\nJaimie\nJazmyne\nJena\nKailyn\nKalyn\nKaycee\nKeanna\nKortney\nLeandra\nLeeann\nLianna\nLondon\nLynsey\nMarielena\nNidia\nNoemy\nRoberta\nSade\nShauna\nShelbi\nShelbie\nSommer\nSonja\nSuzanna\nAlayna\nAnayeli\nAnnamarie\nBreonna\nBrooklyn\nBryce\nCelene\nDomonique\nDylan\nHarmony\nJanell\nJaquelyn\nJill\nKarely\nKarolina\nKathrine\nKori\nMarielle\nMelodie\nMika\nPrincess\nShantel\nThelma\nTiera\nTonya\nTricia\nAbbey\nAndria\nAnel\nAnisha\nAnnmarie\nAshanti\nBlake\nBreeanna\nCailin\nCamilla\nCourteney\nDahlia\nDani\nDeana\nDeyanira\nDeysi\nDianne\nHalle\nHallie\nIlana\nIvanna\nJean\nJessi\nJulieta\nKalie\nKatlin\nKeely\nKeren\nLacy\nLizzette\nMadelaine\nMaia\nMarcia\nMariaelena\nMayte\nNayely\nNeha\nOdalis\nRegan\nRena\nRhianna\nRosalie\nShania\nSocorro\nValarie\nVania\nXochilt\nZoey\nAbril\nAdelina\nAlexys\nAmina\nAria\nAsha\nBibiana\nBrittanie\nChantelle\nChelsi\nCristian\nElva\nFrankie\nGeena\nHollie\nInes\nJackelyn\nJanett\nJodie\nKalia\nKatya\nKayley\nKendyl\nKerry\nKeyla\nKristian\nLexie\nMacie\nMicah\nMichael\nNikole\nOfelia\nPetra\nRosalva\nRosamaria\nSaray\nScarlet\nSky\nVicki\nAlexi\nAnnalise\nAnnelise\nArlette\nAryana\nAspen\nAubrie\nBianka\nBrandee\nBridgett\nBrittnie\nCambria\nCatrina\nCintia\nDesire\nElexus\nEryn\nHali\nIdalia\nIsaura\nJana\nJonathan\nKarinna\nKathie\nKristiana\nLila\nLilliana\nLizett\nLyric\nMadelynn\nMarbella\nMikaila\nMirella\nMonet\nNohely\nRosaura\nSaira\nShanelle\nShay\nSindy\nTabatha\nVannesa\nYarely\nYomira\nZhane\nZuleyma\nAnjali\nAnya\nAura\nBritany\nBrynn\nChiara\nChristal\nCitlali\nDenisha\nElida\nFallon\nFelicity\nKaterina\nKrystina\nLaurie\nLizbet\nMadyson\nManuela\nMaryjane\nMichel\nNatalee\nNereyda\nNiki\nNikita\nReagan\nSabina\nSana\nTaelor\nTamera\nTanisha\nTeresita\nYanely\nYer\nZayra\nAcacia\nAdeline\nAlejandro\nAliza\nAmairany\nAmara\nAngelita\nAnnemarie\nAundrea\nAylin\nBobbi\nBrandon\nBreeana\nBrieanna\nBrittny\nChina\nChrystal\nCiarra\nCydney\nDejah\nDelanie\nDestany\nFanny\nFarah\nGisel\nHaylie\nJasmyn\nJasmyne\nKaelin\nKarena\nKassie\nKaylynn\nKelcey\nKerri\nKeyanna\nLeonor\nLynda\nMadisen\nMaile\nMarcelina\nMarlee\nMarrissa\nMercedez\nMimi\nMiracle\nNeida\nPaulette\nPriya\nRaelene\nRosita\nRyann\nSahara\nShannen\nSymone\nThania\nVivianna\nWinter\nAlexxis\nAlivia\nAlix\nAllysa\nArleen\nBeatris\nCali\nCarmelita\nCecily\nCharmaine\nCoraima\nDajah\nDarrian\nDasia\nDeena\nElina\nEve\nGardenia\nIvory\nJacinda\nJannette\nJayla\nJenae\nJenelle\nJocelynn\nJoey\nJosselyn\nJuan\nJune\nKai\nKala\nKaya\nLacie\nLesli\nLexi\nLucila\nLucille\nMarilu\nMarleen\nMarley\nMeghann\nMeranda\nMirka\nNathalia\nNubia\nPatrice\nRacquel\nRayleen\nRenae\nRene\nRichelle\nRylie\nSahar\nSarena\nShasta\nTamar\nTracie\nVianca\nYuri\nZahra\nAidee\nAlannah\nAlejandrina\nAlyssia\nAmira\nAngelic\nAurelia\nBree\nBrian\nBronte\nCandelaria\nCatarina\nChynna\nConstance\nCorey\nCorrine\nDarcy\nDelfina\nDesiray\nDestinie\nEloisa\nEric\nEugenia\nHilary\nIdalis\nIzabella\nJamila\nJanely\nJanna\nJeanine\nJorden\nJoscelyn\nJoshua\nJoslyn\nJovanna\nJustin\nKalani\nKelcie\nKenna\nKinsey\nKirstie\nKyle\nLarisa\nLatasha\nLizabeth\nLizzet\nLluvia\nMaci\nMaren\nMariadejesus\nMarylin\nMatthew\nMeliza\nMelyssa\nMichaella\nMikala\nMilan\nOdalys\nPatty\nPenelope\nRacheal\nRebecka\nRegine\nRenata\nSamara\nShanna\nShantell\nShawnee\nShianne\nSunny\nTristan\nTristen\nValencia\nVickie\nYamilet\nYecenia\nAddison\nAdina\nAidan\nAli\nAmparo\nAudra\nAvalon\nBrea\nBrielle\nBritnee\nCathryn\nChasity\nChastity\nChyanne\nClaribel\nCodi\nCody\nDaijah\nDalena\nDaria\nDena\nDesteny\nDorian\nEboni\nEleni\nElle\nEster\nFlorence\nGisella\nGracie\nGricelda\nIndira\nInez\nItsel\nItzayana\nJami\nJimena\nJulian\nKaeli\nKarah\nKarley\nKatlynn\nKayle\nKayli\nKia\nKimberlyn\nKirstin\nKyleigh\nLashay\nLeeza\nLexis\nLisbet\nLois\nLora\nMadisyn\nMakaela\nMariajose\nMarika\nMariza\nMattie\nMellissa\nMichell\nMiguel\nNatalya\nNisha\nNoor\nOctavia\nOksana\nRaelynn\nRayann\nRisa\nRonnie\nRosanna\nShyla\nSiera\nSoraya\nSpencer\nStar\nStarr\nStormy\nSusie\nTristin\nVenessa\nVilma\nXena\nYara\nAaron\nAlesha\nAlisia\nAnahit\nAnaly\nAndreina\nAngelia\nAngelika\nArcelia\nAyesha\nBao\nBayley\nCesilia\nCharissa\nCherie\nDaja\nDanelle\nDaniele\nDanya\nDarien\nDeisi\nDeonna\nDeserie\nDeziree\nElba\nElexis\nElizabet\nEstephany\nEvangeline\nFelisha\nGenna\nIda\nJaimee\nJaspreet\nJaylene\nJaymee\nJessa\nJordin\nJorge\nJoseph\nJulieanne\nKandace\nKaytlin\nKelsy\nKennia\nKhadijah\nKyanna\nLani\nLeia\nLili\nLuis\nLyndsay\nMalika\nMalina\nMalinda\nMercy\nMiya\nMyriam\nNellie\nNichelle\nNou\nPatsy\nPresley\nRemy\nRhonda\nRianna\nRosalina\nRosana\nSavana\nSheri\nSheyla\nTierney\nTreasure\nYazmine\nZaida\nZainab\nZena\nAdahli\nAdele\nAlea\nAlora\nAmari\nAnali\nAnastacia\nAnnamaria\nArissa\nAryn\nAustin\nAysia\nCelest\nChelsy\nCherokee\nCitlalli\nCitlaly\nCourtnie\nCrysta\nDanyell\nDarlyn\nDeidra\nDenice\nDer\nDeseree\nDezirae\nDionna\nDivya\nEmani\nEmmalee\nEnedina\nErendira\nEstella\nGiana\nGinger\nHalley\nIlliana\nJaniece\nJayna\nJayne\nJazzlyn\nJeannine\nJewel\nJody\nJoi\nKacy\nKandice\nKatherin\nKaylene\nKaytlyn\nKiah\nKrystle\nKymberly\nLeann\nLee\nLinnea\nLouisa\nLuna\nMackenna\nMadelyne\nMaiya\nMalissa\nManpreet\nMariaguadalupe\nMaricella\nMarilynn\nMarion\nMaritsa\nMaryssa\nMellisa\nMileena\nNhi\nNicolle\nPang\nPenny\nRaeann\nRana\nRhea\nRyanne\nSaige\nSeleste\nShani\nShantal\nShireen\nStaci\nStephani\nStorm\nSunshine\nSynthia\nTherese\nTrista\nTyana\nVianney\nVivianne\nWynter\nXenia\nYuliana\nZenaida\nAgnes\nAlaysia\nAliya\nAllissa\nAmi\nAnabelle\nAndee\nAndrew\nAnnastasia\nAnneliese\nAraseli\nAsma\nBanesa\nBeth\nBrigette\nBrigid\nBritni\nBrittaney\nBrynne\nCaitlynn\nCarlos\nCharlie\nChase\nChelsee\nCianna\nClarisse\nCleo\nCorissa\nCory\nDanna\nDarleen\nDeandra\nDebora\nDesarae\nDevynn\nDixie\nDyana\nGaby\nGeovanna\nHanah\nHolli\nImari\nIrais\nJackelin\nJacquelynn\nJaelyn\nJanelly\nJanie\nJasmeen\nJayde\nJessalyn\nJolie\nJoselynn\nJosephina\nKaci\nKady\nKaily\nKalee\nKalli\nKamryn\nKanisha\nKarisa\nKathia\nKati\nKaylan\nKeara\nKeiko\nKeisha\nKemberly\nKenzie\nLanae\nLatrice\nLeana\nLiberty\nLillie\nLisset\nLorna\nMacey\nMadilyn\nMalena\nMargo\nMargot\nMariya\nMaryanne\nMarylou\nMarysol\nMilena\nMyrka\nMyrna\nNatividad\nNeda\nNika\nNoelani\nOriana\nPage\nPatience\nPeggy\nPriyanka\nReba\nRebeka\nRio\nRonni\nSalma\nSandi\nSantana\nSapphire\nShanel\nSharlene\nShawn\nShaye\nShiloh\nShyann\nSinai\nSkyla\nSusannah\nTalin\nTerri\nTerry\nThea\nTraci\nVeronika\nVivienne\nWillow\nYoseline\nYuridia\nZara\nZoila\nAbigale\nAbriana\nAdelaida\nAislinn\nAlexsandra\nAmberly\nAnalise\nAnnabella\nAnnaliese\nAntionette\nAriane\nArianne\nArlyn\nArmani\nArmine\nAryanna\nAshlei\nAsusena\nAubriana\nAudrianna\nBabygirl\nBaylie\nBritny\nCailey\nCarmela\nCarson\nCelestina\nCelestine\nCerina\nChaya\nChristianna\nChyna\nCindi\nCorrie\nCorrin\nCristine\nCruz\nDaisey\nDannielle\nDejanae\nDesree\nElicia\nElide\nElsy\nErnestina\nEvie\nFlora\nFrancisco\nGenessis\nGicela\nGiovana\nGissel\nGreta\nHadley\nHaily\nHaydee\nHayleigh\nHelene\nIrlanda\nIvon\nIzamar\nJamee\nJanee\nJanis\nJenniffer\nJoie\nJuliann\nJulieann\nJulisa\nKa\nKailah\nKarishma\nKaryn\nKatalina\nKathryne\nKathya\nKaylen\nKeeley\nKerstin\nKhaila\nKimberli\nKimiko\nKirby\nKristan\nLeena\nLilyana\nLisamarie\nLiz\nLola\nLupe\nMabel\nMadaline\nMadina\nMaeve\nMallorie\nMarcy\nMarena\nMarguerite\nMarimar\nMarkie\nMarleny\nMarrisa\nMaryah\nMarycruz\nMeg\nMoira\nMorganne\nNicola\nNisa\nOscar\nParker\nPooja\nQuincy\nRae\nRaeanna\nRaechel\nRain\nRebekka\nRiana\nRima\nRosalyn\nSamatha\nSarita\nSarrah\nSergio\nShadi\nShalynn\nShayne\nSheena\nSheng\nShira\nShoshana\nSol\nStarla\nSteffanie\nSulema\nTamra\nTanner\nTarah\nTera\nTorie\nTyanna\nVenus\nVianna\nVictor\nWaverly\nXitlali\nYunuen\nAbbigail\nAbigayle\nAleida\nAlexiss\nAlliyah\nAmethyst\nAn\nAnamarie\nAnay\nAndi\nAnnissa\nArden\nArgelia\nAriela\nAshlin\nAshtyn\nAya\nAzusena\nBrieana\nBrienna\nBryn\nCaitlan\nCaleigh\nCaprice\nCarisa\nCarleen\nCatelyn\nCaterina\nCathleen\nCera\nChampagne\nChandra\nCherise\nCheyanna\nChristin\nCidney\nCristy\nDeija\nDenae\nDevina\nDiandra\nDinah\nEma\nEstefanie\nEvan\nFarrah\nGalilea\nGayane\nGerardo\nGiovanni\nGizelle\nGrisel\nGuillermina\nHayden\nIesha\nIsabell\nIsobel\nIvett\nJacquelyne\nJaden\nJael\nJanai\nJanneth\nJayda\nJaylen\nJeanna\nJeanne\nJennica\nJessy\nJohnna\nJonnie\nJordann\nJordanne\nJovita\nJoycelyn\nJurnee\nKaelynn\nKajal\nKamille\nKanani\nKarine\nKarisma\nKarol\nKarolyn\nKarrie\nKasia\nKay\nKeilani\nKeira\nKelsee\nKeyana\nKeyonna\nKierstin\nKimberlin\nKirra\nKyana\nLatisha\nLilianna\nLilybeth\nLindsy\nLinette\nLinsey\nLiset\nLorissa\nLuciana\nLucina\nLucinda\nMacayla\nMagnolia\nMaha\nMakaila\nMayela\nMccall\nMeriah\nMichal\nMilagro\nMilagros\nMildred\nMitzy\nMonae\nMyisha\nMyriah\nNala\nNayelly\nNoely\nOdessa\nPhoenix\nPhyllis\nPiper\nRaegan\nRaeleen\nRaena\nRafaela\nRaychel\nReem\nRobert\nRossy\nRoya\nSaba\nSariah\nSean\nSee\nSelma\nShabnam\nShae\nShaelyn\nSherri\nSimona\nStephania\nSuleima\nTasia\nTayla\nTeanna\nTesia\nThao\nTisha\nTrinidad\nTristyn\nVanna\nWendi\nWinnie\nXimena\nXitlaly\nYaquelin\nYenifer\nAddie\nAiyana\nAkira\nAlani\nAlyce\nAminah\nAnabell\nAndriana\nAnjela\nArlin\nAsiah\nAudriana\nAysha\nAzalea\nBerlyn\nBlaire\nBrett\nBreyana\nBriann\nBriauna\nBritnie\nBritta\nBritteny\nBronwyn\nBrooklynn\nBrynna\nCady\nCameryn\nCamryn\nCarlyn\nCarmina\nCasie\nCassaundra\nCassondra\nCaylee\nCeara\nCharisse\nCharlee\nCheyene\nChyenne\nCiana\nClair\nClaritza\nCodie\nCollette\nDajanae\nDamariz\nDeanne\nDeirdre\nDelany\nDesirea\nDestanie\nDinora\nDru\nElinor\nEloise\nElysha\nEmelin\nEmeline\nEmelyn\nEmmy\nFernando\nGeorgie\nGissela\nGiuliana\nGrayson\nHanan\nHarpreet\nHosanna\nIcela\nIleen\nIran\nIsel\nIvania\nIyana\nJacey\nJadira\nJahaira\nJalyn\nJamilex\nJaney\nJasmina\nJeanie\nJenessa\nJenica\nJerrica\nJesslyn\nJessyca\nJezebel\nJohn\nJohnnie\nJoleen\nJosselin\nJosseline\nJudit\nKaili\nKailynn\nKaitlan\nKalina\nKaroline\nKaryna\nKasie\nKathlyn\nKatiana\nKatty\nKaycie\nKeiry\nKelci\nKellyn\nKennedi\nKera\nKiani\nKiya\nKrysten\nKyara\nKymberli\nKyndra\nKyrsten\nLaryssa\nLeigh\nLianne\nLisandra\nLissa\nLorie\nLusine\nMae\nMagen\nMaiyer\nMakala\nMaleni\nMalorie\nMariadelcarmen\nMariaisabel\nMariella\nMarivel\nMarlin\nMartin\nMarya\nMarysa\nMekayla\nMelany\nMerari\nMichala\nMillie\nMonzerrat\nMyesha\nMykayla\nNadya\nNailah\nNakia\nNely\nNicholle\nNicki\nOsiris\nPrisilla\nRaelyn\nRaeven\nRaevyn\nReana\nReema\nReena\nRheanna\nRian\nRina\nRobbie\nSabreena\nSamone\nSamuel\nSanam\nSarahy\nSelah\nSeleena\nShakia\nShakira\nShane\nShanell\nShanika\nShayda\nShaylee\nShelbee\nSheryl\nSiobhan\nSteffany\nSuleyma\nSuzana\nSvetlana\nTalisha\nTami\nTarin\nTatiyana\nTawnee\nTenaya\nTesla\nTiare\nTorri\nTory\nTyla\nVerenise\nVivien\nWanda\nWesley\nXochil\nYanelly\nYuritzi\nZaina\nZoie\nZully\nAbagail\nAgustina\nAlecia\nAlexzandria\nAlise\nAlixandra\nAlmadelia\nAlyx\nAmrita\nAnalyssa\nAndreana\nAndreya\nAnessa\nAngelena\nAnny\nAntonio\nAreana\nAries\nArin\nAshia\nAubry\nAugust\nAutum\nAyme\nAzalia\nBenjamin\nBerenis\nBerlin\nBethanie\nBianey\nBrady\nBreauna\nBreena\nBreona\nBreyanna\nBrinda\nCaila\nCaley\nCamelia\nCaren\nCarleigh\nCarlene\nCayley\nCaylie\nCecila\nCesar\nCielo\nCinnamon\nCipriana\nClarita\nCrystina\nDacia\nDarling\nDasha\nDayanara\nDayanna\nDaysia\nDeeanna\nDeidre\nDelina\nDemetria\nDiego\nDolly\nDominica\nEdgar\nElianna\nElijah\nElisabet\nElli\nElysa\nEmelia\nEmery\nEmmeline\nErnestine\nEstelle\nEstephania\nEvelia\nEvelina\nEvelynn\nEvette\nEzra\nFayth\nFrancia\nGenoveva\nGeorgette\nGisele\nGisell\nGiulia\nGlory\nHaide\nHailie\nHalee\nHeba\nHortencia\nIbeth\nIlce\nIndigo\nIrasema\nIrena\nIrina\nIvone\nIxchel\nIzabel\nJaclynn\nJacqualyn\nJalisa\nJamileth\nJanaya\nJannie\nJason\nJaycee\nJaylyn\nJennah\nJennefer\nJerica\nJesika\nJewels\nJezabel\nJosette\nJourdan\nJustene\nJustyce\nJustyne\nKadie\nKaitlen\nKaitlynne\nKalah\nKallie\nKamaria\nKameron\nKamila\nKary\nKaryssa\nKatey\nKeiana\nKelani\nKennya\nKeonna\nKiely\nKierstyn\nKimber\nKiona\nKirstyn\nKyrah\nKyrie\nLaken\nLanisha\nLayne\nLeeanna\nLeighann\nLeilanie\nLeonela\nLeslee\nLeslye\nLissett\nLivia\nLivier\nLuana\nLuzmaria\nMagda\nMaja\nMandi\nMargie\nMariadelaluz\nMarin\nMario\nMarleni\nMarsha\nMarygrace\nMaryn\nMickayla\nMiryam\nMisti\nMonisha\nMychaela\nMykaela\nNajah\nNalleli\nNaomy\nNava\nNena\nNicholas\nNicholette\nNida\nNoreen\nNour\nNydia\nNyla\nOcean\nOsmara\nPahoua\nPaisley\nParisa\nPeri\nPhuong\nPhylicia\nPrisila\nRachele\nRaeanne\nRajanee\nRandie\nRavyn\nRaya\nRayanna\nRayanne\nRayven\nRebekkah\nReilly\nReonna\nRia\nRichard\nRoseanna\nRosina\nRowan\nSabryna\nSalvador\nSamia\nSanjuana\nSawyer\nSayra\nSeanna\nShanon\nShara\nShavon\nShaylynn\nSheree\nSherilyn\nShyenne\nSilvana\nSimran\nSloane\nSofie\nSolana\nSomer\nStacia\nStephane\nStephannie\nSujey\nSusanne\nTahlia\nTala\nTaline\nTamia\nTamika\nTamira\nTanaya\nTatyanna\nTavia\nTereza\nTeri\nTiarra\nToriana\nTram\nUrsula\nVera\nVerenis\nVida\nViktoria\nWilliam\nWinona\nYohana\nYoselyn\nZachary\nZakiya\nZana\nZaria\nZeinab\nZitlali\nZurisadai\nAanchal\nAbrianna\nAdelita\nAdreana\nAdreanna\nAdrina\nAilyn\nAine\nAjanae\nAlesa\nAlessa\nAlexius\nAlida\nAlixandria\nAlliah\nAlyssamarie\nAmada\nAmal\nAmaya\nAnahy\nAnaisabel\nAnaiza\nAnh\nAnia\nAnnais\nAnnalee\nAnnisa\nAntonisha\nAnysa\nArabella\nAriadne\nArian\nArisa\nArlena\nArline\nArmando\nAsucena\nAudrie\nAurea\nAustyn\nAvigail\nAviva\nBailie\nBaily\nBaleria\nBiviana\nBreeann\nBrenae\nBrigitta\nBrina\nBrittanee\nBrittiny\nBriza\nBryan\nCailyn\nCamellia\nCari\nCarmel\nCaryn\nCassi\nCassy\nCesia\nChana\nChanda\nChante\nChantell\nChardonnay\nCharis\nCharlette\nChioma\nChole\nChristiane\nClarice\nClaudine\nColby\nCortnie\nCosette\nCydnee\nCyrena\nDakotah\nDalilah\nDamara\nDanisha\nDarlin\nDarline\nDaysha\nDaysy\nDazhane\nDelana\nDella\nDenia\nDesaree\nDesirey\nDestanee\nDestynee\nDevine\nDeysy\nDominic\nDonisha\nDyanna\nEduardo\nElda\nElideth\nEllyn\nElysia\nEman\nEmelie\nEmiko\nEmmaline\nErendida\nErik\nErinn\nEstrellita\nFabiana\nFalon\nFantasia\nFaye\nFelicitas\nFlorencia\nGabby\nGayle\nGena\nGer\nGia\nGrabiela\nHaileigh\nHan\nHarlee\nHarlie\nHaruna\nHasmik\nHellen\nHenna\nIlda\nIrie\nIsmenia\nIsrael\nItati\nJacklin\nJacquline\nJakeline\nJamaica\nJamesha\nJamey\nJammie\nJarely\nJaritza\nJaslyn\nJasmaine\nJasminne\nJazelle\nJazlynn\nJazmen\nJelena\nJenine\nJennine\nJensen\nJerri\nJina\nJisela\nJo\nJolena\nJordana\nJordon\nJordynn\nJulieanna\nKailie\nKaira\nKaliah\nKally\nKalynn\nKamari\nKana\nKarry\nKasha\nKassaundra\nKateri\nKatharyn\nKatina\nKeaira\nKeeana\nKelcy\nKeyona\nKeziah\nKionna\nKitzia\nKodie\nKoral\nKorey\nKorinne\nKorissa\nKortni\nKylah\nKylene\nLakeisha\nLan\nLanee\nLanie\nLatoya\nLela\nLenora\nLeyla\nLibby\nLiesl\nLindy\nLinh\nLisett\nLizandra\nLolita\nLorelei\nLoretta\nLynnette\nLysette\nMackenzi\nMadai\nMadalynn\nMadelin\nMadisson\nMahogany\nMairani\nMalaysia\nManon\nMareena\nMarelyn\nMariadelosang\nMariafernanda\nMarizol\nMarline\nMarriah\nMartiza\nMarybel\nMattison\nMeera\nMekenna\nMelani\nMelida\nMelony\nMerry\nMicheal\nMichela\nMira\nMisa\nMisha\nMishelle\nMuriel\nMyeisha\nMykala\nNabila\nNai\nNaila\nNavneet\nNechama\nNelida\nNiamh\nNickole\nNicollette\nNissa\nNoeli\nNoelia\nNorah\nNuria\nNuvia\nOtilia\nPerlita\nPerri\nPolly\nPorsha\nPortia\nPrescilla\nPriscella\nRachell\nRania\nRaquelle\nRaveena\nRawan\nReann\nRemi\nRivka\nRoni\nRoselyn\nRoshni\nRoslyn\nRosy\nRyanna\nSabah\nSamaria\nSammantha\nSareen\nSchuyler\nSeana\nSelin\nShalyn\nShaniece\nShaniqua\nShante\nShantelle\nShardae\nSharmaine\nSharron\nShawntel\nShereen\nSherlyn\nSheyanne\nSheyenne\nShiann\nShila\nShyanna\nSierrah\nSilva\nSinclaire\nSiomara\nSoleil\nSonora\nStefania\nSteffani\nStepanie\nStephenie\nSteven\nStormie\nSue\nSuzi\nSuzzette\nTailor\nTaja\nTaliyah\nTana\nTanesha\nTarryn\nTashina\nTaylin\nTerilyn\nThanya\nTheodora\nTiahna\nTichina\nTinamarie\nTirzah\nTonie\nTorrie\nTosha\nTran\nTressa\nTrini\nTyesha\nValentine\nVan\nVanity\nVashti\nVasti\nVienna\nViola\nVy\nWilla\nYael\nYalitza\nYaneth\nYezenia\nYocelin\nYoceline\nYocelyn\nZabrina\nZayna\nZenobia\nZia\nZoya\nZulma\nZuri\nZyanya\nAbbygail\nAbilene\nAbrina\nAdalhi\nAdelle\nAdena\nAditi\nAdora\nAdria\nAfton\nAi\nAiko\nAissa\nAjah\nAjee\nAlanah\nAlaura\nAleesha\nAleeyah\nAleeza\nAleshia\nAlesia\nAlessia\nAlexandrina\nAlexes\nAlexsis\nAlexxa\nAleyah\nAleyda\nAleyna\nAliana\nAliea\nAline\nAlishia\nAlthea\nAlva\nAlvina\nAlyna\nAlyshia\nAmala\nAmbrosia\nAmena\nAmirah\nAmita\nAmna\nAnabelen\nAnahid\nAnalicia\nAnalilia\nAnallely\nAnarosa\nAndraya\nAndy\nAngele\nAniya\nAnjanette\nAnnel\nAnnessa\nAnsley\nAntonella\nAntonette\nAoife\nAranza\nAriadna\nArisbeth\nArlen\nArlet\nArmida\nArnelle\nAshlan\nAshlen\nAshlynne\nAshna\nAubrianna\nAugusta\nAugustina\nAusten\nAyah\nAyaka\nAyumi\nAzhane\nAziza\nBayleigh\nBecca\nBelicia\nBeronica\nBerta\nBetsabe\nBetsaida\nBlossom\nBreaunna\nBrie\nBrieann\nBrissa\nBrookelyn\nByanca\nByanka\nCalli\nCami\nCamile\nCamry\nCandyce\nCarin\nCarmella\nCarrina\nCarrissa\nCarsen\nCashmere\nCecile\nChanell\nChanning\nCharise\nChenoa\nChessa\nChris\nChrissy\nChristel\nChristinejoy\nClaudette\nCorena\nCorie\nCorin\nCourtni\nCree\nCristen\nCristiana\nCristin\nCyndi\nDaeja\nDaesha\nDaizhane\nDaizy\nDajia\nDallana\nDaniell\nDanny\nDara\nDarbie\nDarci\nDarion\nDebby\nDeicy\nDelainey\nDelila\nDestyni\nDeven\nDezaree\nDezhane\nDivina\nDomenique\nDonia\nDonielle\nDonya\nDymond\nEbone\nEbonee\nEdie\nEdlyn\nElan\nElayna\nEllena\nElora\nElsi\nElysse\nEmelina\nEmi\nEmilly\nEmory\nErandi\nEsly\nEsmerelda\nFannie\nFelisa\nFlavia\nForrest\nFranki\nGal\nGenavieve\nGenecis\nGenelle\nGenesee\nGenevie\nGissell\nGreer\nHaidee\nHarli\nHarneet\nHaruka\nHaya\nHector\nHolland\nHolley\nHoney\nIdania\nIlianna\nInari\nIriana\nIsaac\nIsadora\nIvey\nIvonna\nJacinta\nJackqueline\nJacquelene\nJacqulyn\nJadine\nJadyn\nJailene\nJalea\nJalen\nJalynn\nJamielee\nJamilla\nJamisha\nJanaye\nJanina\nJanira\nJavier\nJayden\nJaymie\nJeanett\nJelissa\nJemma\nJenalyn\nJenee\nJenevieve\nJeni\nJensine\nJeri\nJesseca\nJessel\nJesselyn\nJhoanna\nJissel\nJocelynne\nJonae\nJonelle\nJoni\nJonna\nJori\nJossie\nJoya\nJubilee\nJustus\nKabrina\nKadisha\nKahlia\nKailani\nKaile\nKalea\nKaleah\nKaleena\nKalei\nKami\nKamisha\nKamry\nKaris\nKarlene\nKaterine\nKatharina\nKatherina\nKatheryne\nKatrin\nKattie\nKavita\nKayana\nKazandra\nKealani\nKeianna\nKenisha\nKeona\nKerissa\nKerrigan\nKhadija\nKhristina\nKiahna\nKiaira\nKiarra\nKimberlie\nKiyana\nKlara\nKora\nKoraima\nKoryn\nKoryna\nKristel\nKrystin\nKrystine\nKyia\nKyler\nKyli\nKyndall\nLai\nLanessa\nLaney\nLashawn\nLeea\nLeighanna\nLesslie\nLiane\nLilibet\nLindsie\nLinnette\nLirio\nLissete\nLove\nLovely\nLyna\nLyndsie\nLynna\nMadaleine\nMadelynne\nMagdelena\nMahalia\nMaisie\nMalak\nMali\nManda\nMandie\nMao\nMarah\nMarco\nMaresa\nMaressa\nMargaux\nMarialuisa\nMariko\nMarily\nMarine\nMarkeisha\nMarkesha\nMarki\nMarlenne\nMarlina\nMarquisha\nMarshay\nMarylynn\nMaryrose\nMathilda\nMatilde\nMattea\nMckinley\nMckinzie\nMeena\nMegumi\nMei\nMeilani\nMele\nMelena\nMelia\nMeline\nMemory\nMerisa\nMeron\nMiah\nMica\nMichayla\nMickaela\nMidori\nMikelle\nMikyla\nMinna\nMiriah\nMorena\nMuna\nMya\nMyla\nMyrissa\nMystic\nNada\nNadja\nNaima\nNalani\nNanette\nNarine\nNatassja\nNathali\nNatsumi\nNayelie\nNayelli\nNeelam\nNegin\nNeira\nNerissa\nNeyra\nNgoc\nNiara\nNikia\nNycole\nNyesha\nNyssa\nOceana\nOdaliz\nOliva\nOlyvia\nOmar\nOnika\nPanhia\nPayal\nPedro\nPrudence\nQiana\nRafael\nRahel\nRanda\nRaylynn\nRemington\nRickie\nRoberto\nRomelia\nRomina\nRonit\nRosalind\nRoselynn\nRudy\nRyley\nSable\nSabrena\nSahra\nSaleena\nSamanatha\nSandeep\nSaphire\nSarafina\nSarin\nSascha\nSayuri\nScout\nSeidy\nSela\nSerene\nSevana\nShaela\nShai\nShaiann\nShalini\nShameka\nShanae\nShanique\nShanti\nShari\nShawnna\nShaylin\nShaylyn\nShelsea\nShilo\nShirin\nShreya\nSigrid\nSilvina\nSonali\nSondra\nStephanny\nSterling\nSulma\nSumer\nSuzan\nSuzie\nSuzy\nSymantha\nTabytha\nTahnee\nTaleah\nTannya\nTarrah\nTawni\nTawnya\nTaya\nTaylour\nTeagan\nTeaira\nTeera\nTegan\nTeja\nTempestt\nTessie\nThais\nThamara\nTiaira\nTiani\nTiffini\nTiffiny\nTomasa\nTrianna\nTRUE\nTuesday\nTyara\nUma\nUnknown\nVi\nYajayra\nYamileth\nYared\nYarelli\nYasaman\nYeimi\nYen\nYeni\nYissel\nYoanna\nYoung\nYovanna\nYuki\nYvanna\nZeina\nZuleica\nJessica\nAshley\nStephanie\nJennifer\nEmily\nSamantha\nSarah\nVanessa\nElizabeth\nMaria\nAlexis\nJasmine\nKimberly\nMelissa\nAmanda\nAlyssa\nMichelle\nHannah\nRachel\nTaylor\nAndrea\nVictoria\nNatalie\nMegan\nJacqueline\nBrianna\nLauren\nNicole\nAlexandra\nDaisy\nSabrina\nKayla\nCynthia\nMadison\nRebecca\nKarina\nDanielle\nDiana\nKatherine\nBrenda\nMonica\nBrittany\nAngelica\nMarissa\nJocelyn\nAlondra\nChristina\nCrystal\nGabriela\nAlejandra\nJulia\nSavannah\nAmber\nSara\nCourtney\nLeslie\nKaren\nAna\nTiffany\nNancy\nVeronica\nBriana\nLaura\nAdriana\nDestiny\nMariah\nErika\nSierra\nOlivia\nAbigail\nHaley\nYesenia\nSydney\nAmy\nGuadalupe\nCassandra\nEvelyn\nAnna\nAlicia\nAngela\nBianca\nEmma\nJasmin\nKelly\nAllison\nErica\nBrooke\nValerie\nCindy\nSandra\nShelby\nBreanna\nAriana\nMorgan\nKaitlyn\nKelsey\nCheyenne\nKarla\nSophia\nMary\nMadeline\nJordan\nSelena\nMiranda\nJazmin\nClaudia\nErin\nAlexandria\nDesiree\nGabrielle\nChristine\nMelanie\nMarisol\nPaige\nMonique\nIsabel\nChelsea\nWendy\nShannon\nHailey\nKatelyn\nDominique\nKatie\nPriscilla\nMayra\nPatricia\nGrace\nDenise\nCristina\nIsabella\nJamie\nKristen\nAlexa\nCatherine\nJenna\nRosa\nCeleste\nHeather\nJoanna\nClaire\nKathryn\nCarolina\nRuby\nCaitlin\nChloe\nCaroline\nCecilia\nJulie\nLiliana\nVivian\nGabriella\nJanet\nGenesis\nBailey\nEsmeralda\nDaniela\nMackenzie\nValeria\nBrittney\nArianna\nLindsey\nCassidy\nKassandra\nMarisa\nLorena\nKylie\nLisa\nRaquel\nPaola\nJenny\nClarissa\nJazmine\nMichaela\nAngelina\nHayley\nKristina\nMia\nTeresa\nAudrey\nGloria\nKatrina\nKathleen\nJade\nMarina\nLeah\nSummer\nJocelyne\nIrene\nMarlene\nLinda\nViviana\nTatiana\nMaya\nMiriam\nAlma\nKaitlin\nMikayla\nSerena\nCarina\nKaylee\nSofia\nAngel\nApril\nZoe\nMartha\nKiana\nMolly\nNaomi\nYvette\nSharon\nLizbeth\nCarmen\nKrystal\nCarly\nJustine\nSonia\nAriel\nCamille\nAlison\nCarla\nMaritza\nElena\nLindsay\nCristal\nLeticia\nFaith\nSusana\nMariana\nMaribel\nAdrianna\nMargarita\nCaitlyn\nKendra\nMargaret\nCasey\nNatasha\nNoemi\nBlanca\nRebekah\nKristin\nMckenna\nNatalia\nJanelle\nMarilyn\nLesley\nDana\nHeidi\nPaulina\nAutumn\nHolly\nRachael\nYvonne\nBethany\nEdith\nTania\nMadeleine\nNina\nAraceli\nJuliana\nMeghan\nBeatriz\nTanya\nYasmin\nHelen\nJaqueline\nDeanna\nKendall\nRuth\nAnnie\nTara\nStephany\nPerla\nMercedes\nEsther\nJeanette\nLily\nMakayla\nPamela\nBrandy\nElisa\nEva\nCiara\nKathy\nSusan\nJacquelyn\nFabiola\nGina\nItzel\nRiley\nRocio\nIsabelle\nAlexus\nAmelia\nSandy\nStacy\nAlana\nAlexia\nAlina\nAlissa\nSarai\nAngie\nReyna\nCarolyn\nHanna\nVirginia\nBridget\nEstefania\nRenee\nDulce\nJulianna\nBrandi\nKyra\nYadira\nDaniella\nJudith\nArlene\nBerenice\nMikaela\nGiselle\nLesly\nNadia\nElaine\nTiana\nDeja\nLucia\nAimee\nCierra\nJillian\nMelody\nOdalys\nEmely\nKiara\nMeagan\nRoxana\nYessenia\nDalia\nLizette\nNayeli\nSilvia\nJohanna\nAshlee\nAlice\nImani\nNataly\nSophie\nAsia\nLydia\nElise\nSavanna\nNathalie\nTessa\nDelaney\nJosephine\nLuz\nSarahi\nWhitney\nJordyn\nCharlotte\nKate\nKirsten\nLarissa\nLillian\nTyler\nYolanda\nCarissa\nGraciela\nHope\nRegina\nCheyanne\nDarlene\nKennedy\nMakenna\nAnne\nMarie\nTalia\nGladys\nMariela\nTina\nDestinee\nIris\nKyla\nAllyson\nEllen\nKara\nKristine\nRaven\nTabitha\nAileen\nAubrey\nJoselyn\nBrenna\nJessie\nTheresa\nViridiana\nMckenzie\nKrista\nNorma\nSylvia\nEileen\nElisabeth\nFatima\nClara\nKylee\nDeborah\nJane\nKira\nMaricela\nStacey\nAshlyn\nDiane\nPaula\nNoelle\nGianna\nKasey\nLucy\nMelina\nSelina\nBreana\nFelicia\nMireya\nShania\nTori\nAnastasia\nIvy\nMelinda\nFrancesca\nRosemary\nYasmine\nAlisha\nLizeth\nMicaela\nNicolette\nPrecious\nTracy\nAngelique\nBarbara\nIvette\nJaclyn\nLucero\nVanesa\nAthena\nSadie\nBryanna\nDenisse\nEsperanza\nRose\nSasha\nAnnette\nCarol\nKenia\nMadelyn\nRebeca\nKatelynn\nYajaira\nEmilee\nEstefani\nEstefany\nJoana\nTamara\nThalia\nAntonia\nColleen\nDiamond\nFernanda\nJanette\nKarissa\nSheila\nTayler\nAshleigh\nEbony\nIngrid\nNichole\nAnissa\nChanel\nConnie\nDania\nToni\nBritney\nJanice\nJoyce\nShirley\nBelen\nCandice\nGenevieve\nReina\nChelsey\nKaila\nKellie\nKristy\nLeilani\nOdalis\nArielle\nIvonne\nJoy\nKatia\nKenya\nCinthia\nElsa\nLacey\nMallory\nCelina\nFiona\nHaylee\nRachelle\nRobin\nAurora\nCasandra\nGriselda\nAliyah\nCatalina\nChristy\nDakota\nJuana\nJulissa\nMagdalena\nNia\nPaloma\nSimone\nRosario\nSally\nSidney\nYamilex\nAstrid\nDesirae\nIrma\nLisette\nNikki\nPhoebe\nJanessa\nJoanne\nKailey\nAdilene\nCelia\nFrances\nMarisela\nRoxanne\nTaryn\nYazmin\nDamaris\nJackeline\nKelli\nNora\nEricka\nJuanita\nKelsie\nLidia\nMaggie\nMaira\nSarina\nTatyana\nChristian\nDevin\nKaitlynn\nEliza\nLena\nMarcela\nShayla\nStefanie\nTierra\nAracely\nAreli\nCeline\nLourdes\nAlexandrea\nDonna\nJada\nAnita\nAshly\nCorina\nFlor\nKianna\nMoriah\nOlga\nRita\nSkylar\nArely\nCandace\nJacklyn\nPeyton\nSavanah\nXochitl\nAlanna\nBeverly\nConsuelo\nEden\nJanae\nTiara\nAbby\nAnnika\nDayana\nEmilie\nHelena\nRoxanna\nAdrienne\nEvelin\nHunter\nJosefina\nSuzette\nAlisa\nEunice\nJudy\nJulianne\nMarlen\nNadine\nAnn\nAshlynn\nBrianne\nDevon\nJohana\nJosie\nJuliette\nVicky\nAaliyah\nBonnie\nCameron\nDianna\nKasandra\nLeanna\nLina\nLissette\nMarianna\nSienna\nAlyson\nIliana\nJustice\nKatharine\nLilian\nMacy\nSerina\nShayna\nBaylee\nCharlene\nChristiana\nGeorgina\nHazel\nJuliet\nYoselin\nCiera\nJaneth\nJaquelin\nJoceline\nLilibeth\nLuisa\nMara\nRubi\nAnabel\nHana\nHeidy\nJaime\nJenifer\nJoseline\nLea\nMichele\nPauline\nRobyn\nSkyler\nTia\nTiffani\nCassie\nDrew\nEliana\nKatarina\nSelene\nSkye\nTess\nYasmeen\nYessica\nCorinne\nEmilia\nJessika\nKaela\nTianna\nAisha\nAmerica\nAzucena\nIridian\nMagaly\nMalia\nMelisa\nXiomara\nChantel\nIsela\nLexus\nZulema\nBreanne\nBridgette\nCandy\nCarrie\nClare\nDelia\nDolores\nHailee\nHillary\nKaylin\nLilia\nMai\nMyra\nParis\nRyan\nShawna\nSonya\nBelinda\nDebbie\nGeorgia\nKiley\nLara\nMagali\nRochelle\nSage\nAnahi\nAnais\nClarisa\nEstela\nEstephanie\nJackie\nKelley\nMakenzie\nNatali\nNelly\nRosalinda\nTammy\nValentina\nBernice\nBreann\nCallie\nCathy\nEleanor\nGillian\nJocelin\nLiana\nLorraine\nShyanne\nXena\nBeatrice\nBertha\nCara\nChantal\nDestiney\nDina\nJackelyn\nKatlyn\nLaurel\nMeredith\nNathaly\nRayna\nAvery\nChrista\nDanica\nDaphne\nDeisy\nElissa\nElyssa\nFaviola\nFrancisca\nGiovanna\nKari\nKarly\nMadalyn\nMaricruz\nMaryjane\nPayton\nYahaira\nAmairani\nBryana\nDemi\nEssence\nIndia\nJustina\nKiersten\nLynette\nMaddison\nRosie\nShea\nAntoinette\nBrittani\nCarley\nDora\nHalie\nJessenia\nKaylie\nMariam\nPearl\nRaylene\nSusanna\nTrinity\nTyra\nViolet\nYaritza\nZaira\nAlena\nAlize\nBetsy\nBria\nCecelia\nDorothy\nElla\nGisselle\nHilda\nKassidy\nKristal\nMari\nMindy\nReanna\nSuzanne\nAlaina\nChandler\nCortney\nEstrella\nGisela\nIsis\nKaley\nKiera\nMarcella\nMariel\nRandi\nAlessandra\nAspen\nBailee\nBernadette\nElvira\nHaleigh\nIvana\nJeannette\nJesenia\nJoselyne\nKali\nKayleigh\nKelsi\nKristi\nLeanne\nMarlena\nRhiannon\nScarlett\nShelly\nUnique\nVerenice\nAngeline\nCoral\nDevyn\nJacquelin\nJailene\nJazmyn\nJennie\nKacey\nKacie\nKarlie\nKathia\nKatya\nKaylyn\nKeila\nKimberley\nKourtney\nLauryn\nLilly\nLogan\nLyric\nSaira\nStella\nYareli\nAida\nAlysha\nAlysia\nAnnamarie\nAshlie\nBrooklyn\nCarlee\nElvia\nEmerald\nSalina\nTrisha\nAnika\nAnnalise\nDavina\nGema\nKailee\nLeila\nLupita\nMariaguadalupe\nMaxine\nMonika\nMonserrat\nRosio\nRylee\nShaina\nStevie\nSulema\nSydnie\nAbril\nAdela\nAmaris\nAnnabelle\nAva\nBobbie\nDayna\nGrecia\nHarley\nHeaven\nKaelyn\nKierra\nLayla\nLexie\nLoren\nNallely\nNayely\nZoey\nAlex\nAlycia\nAylin\nCamila\nCarlie\nDahlia\nDomonique\nDoris\nJacinda\nJolene\nJose\nLiza\nMeaghan\nMirella\nMisty\nMona\nRamona\nSade\nSamara\nSimran\nSoledad\nTatianna\nVianey\nYesica\nAlia\nAubree\nBrielle\nCayla\nCharity\nChelsie\nDanika\nDarian\nDelilah\nEllie\nElyse\nJoselin\nKarli\nKristyn\nLana\nMarta\nSiena\nSky\nAni\nBecky\nBetty\nCarli\nCheryl\nChristie\nCorrina\nHaylie\nIleana\nJazlyn\nJoann\nKendal\nLia\nLisbeth\nMirian\nMollie\nNoemy\nSydnee\nAllie\nAmalia\nAmie\nAshely\nAshton\nAyla\nBianka\nBreeana\nDianne\nElaina\nElisha\nEvangelina\nFrancis\nGeraldine\nGwendolyn\nHalle\nIman\nJoelle\nKelsea\nLexi\nLilliana\nLori\nMarlyn\nMaureen\nShyann\nTristan\nAdrian\nAide\nAleah\nAllegra\nAmani\nAnjelica\nBlair\nBrigitte\nCora\nDallas\nDylan\nJanel\nJanine\nJesse\nJill\nJodi\nKaterina\nKim\nKirstin\nMackenna\nMiracle\nMirna\nMontana\nMyranda\nOfelia\nPilar\nPriya\nSaray\nShantel\nShauna\nSherry\nStefany\nAlyssia\nAshli\nDarla\nKailyn\nKaty\nKayli\nKeely\nLizet\nLynn\nMaegan\nMichael\nNoel\nRegan\nTamia\nTasha\nTerra\nAnai\nAnayeli\nAnnabel\nAyana\nChase\nEdna\nJanell\nJena\nJennyfer\nJesica\nKarlee\nKatelin\nKatheryn\nMaia\nMandy\nMarley\nMckayla\nNoor\nRaina\nRikki\nRosalie\nSerenity\nSirena\nStefani\nVannessa\nXochilt\nAndreina\nArmani\nBrisa\nChynna\nConcepcion\nCori\nCydney\nDenice\nDestany\nFranchesca\nIsabela\nJaquelyn\nKaleigh\nKeana\nLesli\nMadisen\nMartina\nMicah\nMina\nMitzi\nReagan\nSheridan\nSoraya\nStar\nSusie\nYaneli\nAlba\nAleena\nAlysa\nAnnmarie\nAryana\nAshanti\nAyanna\nCatrina\nChristen\nCristian\nDaija\nDaisha\nDelanie\nHarmony\nIzabella\nJulieta\nKristie\nKyleigh\nLuna\nMarian\nMarysol\nMilan\nMorelia\nQuinn\nRosalia\nZaria\nAli\nAliya\nBrianda\nBritany\nBrook\nCambria\nCamilla\nCinthya\nDaniel\nElsie\nFrancine\nFrida\nHallie\nIlana\nIsamar\nJamila\nJocelynn\nJosselyn\nKaycee\nKrysta\nKrystina\nLeann\nLeeann\nLyndsey\nMadisyn\nMaranda\nMayte\nMonet\nNereyda\nPaulette\nPetra\nRichelle\nRyann\nSequoia\nShana\nTracey\nTrina\nTristin\nYanet\nAbbey\nAcacia\nAdrianne\nAime\nAja\nAliza\nAmira\nAnalisa\nCherish\nChrystal\nCorinna\nDarby\nDawn\nDennise\nDevan\nGladis\nGlenda\nJanely\nJannet\nKarley\nKathya\nKayley\nKaylynn\nKerry\nKimberlee\nKinsey\nKorina\nLaila\nLeana\nMercy\nMerissa\nMimi\nPriscila\nRosemarie\nShivani\nStacie\nSymone\nTatum\nTristen\nValarie\nVianca\nYarely\nYomira\nAda\nAnnalisa\nAnnemarie\nAnthony\nAnyssa\nDalila\nDejah\nElia\nElizabet\nEloisa\nGeneva\nJayme\nJessi\nJimena\nJovanna\nKarena\nMadelynn\nMakaila\nMaryam\nMaryann\nNatalee\nNiki\nNikita\nNohemi\nPa\nPrincess\nRaelene\nRena\nVicki\nZena\nAddison\nAiyana\nAlanis\nAnaly\nAnisa\nBlake\nBobbi\nBrittni\nCelena\nChasity\nChyna\nDajah\nDanae\nEryn\nHollie\nIvanna\nJami\nJeniffer\nKeren\nKia\nKristian\nLeandra\nLondon\nMalaysia\nMarilu\nMarilynn\nMeliza\nMikala\nPiper\nRylie\nSabina\nSahar\nStephani\nTricia\nValery\nAdeline\nAlayna\nAlexxis\nAmari\nAria\nAriella\nAubrie\nAustin\nBibiana\nBrandee\nBreonna\nCaitlynn\nCaren\nChanelle\nCintia\nColette\nDaysi\nElexis\nHilary\nIdalis\nInes\nIrania\nJana\nJasmyn\nJean\nJuan\nKaya\nKlarissa\nLizbet\nLouise\nManuela\nMarbella\nMariaelena\nMay\nMelia\nMira\nRianna\nRosamaria\nSalena\nSariah\nSommer\nStarr\nTawny\nVioleta\nXenia\nYuliana\nAmbar\nAmberly\nAnel\nAnessa\nAnnelise\nAnya\nAryanna\nAvalon\nBerenise\nBiridiana\nBrandie\nBrigette\nBryce\nCassondra\nCiarra\nDaja\nDavid\nDeana\nElva\nFlorence\nGretchen\nIlene\nIlse\nImelda\nJackelin\nJanie\nJasleen\nJasmyne\nJaycie\nJazzmine\nJenelle\nKayleen\nKerri\nKimberlyn\nLacy\nLinnea\nMaritsa\nMarla\nMaura\nMichela\nNaomy\nPooja\nPricilla\nRenae\nRoberta\nShawnee\nSheena\nShelley\nSocorro\nTeresita\nThania\nThelma\nVannesa\nWinter\nYamilet\nYamileth\nAislinn\nAlexi\nAlexys\nAllysa\nAllyssa\nAmara\nAngeles\nAngelita\nAnjali\nAurelia\nBrina\nBrittny\nCecily\nChantelle\nChelsy\nChristopher\nChyenne\nConstance\nDesire\nElana\nEmani\nEstella\nEster\nGabriel\nGiana\nGracie\nJaimie\nJanett\nJanna\nJaycee\nJayde\nJoan\nJovana\nKaina\nKarishma\nKenna\nKori\nLila\nLouisa\nLynda\nMacey\nMarianne\nMarielle\nMarleny\nMelany\nMercedez\nMildred\nMyriam\nNidia\nNubia\nRacquel\nReilly\nRene\nRhianna\nRicki\nRowan\nSalma\nSavana\nSayra\nSera\nShani\nShanice\nSheyla\nShyla\nSindy\nTamar\nVivianna\nWinnie\nYalitza\nYanely\nYenifer\nAlix\nAmairany\nAmina\nAnamaria\nAnisha\nAsha\nAudrianna\nAzalea\nBelle\nBree\nBrieanna\nBrooklynn\nBrynn\nCharmaine\nChristal\nChyanne\nCourteney\nCristy\nDanya\nDarcy\nDejanae\nDestinie\nDeyanira\nElle\nEvan\nEvangeline\nFallon\nGilda\nIreland\nJazmyne\nJewel\nJoslyn\nKalia\nKalie\nKalyn\nKaroline\nKathrine\nKaylah\nKaylene\nKeisha\nKortney\nLaurie\nLexis\nLisset\nLizett\nMaile\nMakena\nMarjorie\nMellisa\nMichel\nMikaila\nMinerva\nNereida\nNisha\nPatrice\nPresley\nRacheal\nRosalva\nSydni\nTamera\nTanisha\nThao\nTiffanie\nTraci\nYanira\nZenaida\nAidee\nAlexander\nAlexsis\nAlisia\nAnalicia\nAndie\nArleen\nBella\nBeth\nBriseida\nCailin\nCandelaria\nCarmela\nCitlali\nDara\nDena\nDestini\nElysia\nEve\nFarrah\nFelicity\nFrankie\nGemma\nGinger\nHaven\nInez\nJamilex\nJayla\nJesus\nJuliann\nJulisa\nKadie\nKalina\nKarely\nKyana\nLiset\nLizzette\nLois\nMabel\nMagda\nMichaella\nMichell\nMonae\nMyrna\nNayelli\nPenelope\nPriyanka\nRosaura\nSaige\nTerri\nVeronika\nYajayra\nYaquelin\nZahra\nZuleyma\nAmethyst\nAnastacia\nAngelia\nAraseli\nCherokee\nChristin\nCoraima\nDebora\nDenisha\nDevina\nEleni\nElianna\nFelisha\nFlora\nGaby\nGissel\nHaily\nHaydee\nHayden\nIdalia\nJayda\nJaymee\nJazzmin\nJeanine\nJeanne\nJeannie\nJodie\nJoycelyn\nKalani\nKalynn\nKamryn\nKarin\nKatlynn\nKeanna\nKeilani\nKelsy\nKennedi\nKeri\nKevin\nKhadija\nKristiana\nLianna\nLiberty\nLili\nLorna\nLupe\nMacie\nMaiya\nMarcia\nMarialuisa\nMiguel\nMika\nMitzy\nNichelle\nNicolle\nNika\nRaeann\nRayanne\nRosalba\nSammantha\nSarena\nScarlet\nShanna\nSharlene\nShelbie\nStacia\nStaphany\nStefania\nStephania\nSusannah\nVania\nWillow\nXochil\nYecenia\nYocelyn\nYoselyn\nAbbie\nAdelina\nAlani\nAlea\nAlejandro\nAnakaren\nAnalise\nAnamarie\nAysia\nBetsabe\nBrittaney\nBrittnee\nCarmina\nCelest\nCheyann\nCleo\nDaijah\nDanyelle\nDasha\nDasia\nDayanara\nDionna\nElicia\nErendira\nEstephania\nGreta\nGricelda\nHanah\nIsabell\nIsaura\nIvon\nJacquelyne\nJael\nJaylene\nJoshua\nKai\nKaili\nKarolina\nKatlin\nKeira\nKelcie\nKeyana\nKirra\nKirstie\nLayne\nLeslye\nLillie\nLindy\nLinsey\nMadyson\nMaha\nMakaela\nMalina\nMariadejesus\nMaricarmen\nMarily\nMarlee\nMarylin\nMellissa\nMelyssa\nMeranda\nMicayla\nNanci\nNydia\nRegine\nRiana\nRosanna\nRosita\nSaida\nSana\nSarahy\nShae\nShaelyn\nShay\nShayne\nSiera\nSinai\nSonja\nSpencer\nStaci\nSunny\nSuzanna\nSynthia\nTasia\nThea\nTory\nVenessa\nVianney\nViktoria\nVivien\nYoana\nYoseline\nAaron\nAdelaide\nAdina\nAgnes\nAkilah\nAliah\nAnahit\nAnali\nAnaya\nAndria\nArcelia\nArianne\nArriana\nAudriana\nAura\nBailie\nBillie\nBrea\nCailey\nCarlos\nCarmelita\nCassaundra\nCathryn\nCristine\nDaisey\nDannielle\nDaysy\nDebra\nDemetria\nDeziree\nEmmalee\nGeena\nGenna\nGisella\nGiuliana\nHali\nIesha\nItzayana\nJacey\nJahaira\nJaida\nJanay\nJanee\nJasmeen\nJayleen\nJaymie\nJenessa\nJonathan\nJordin\nJulian\nKaeli\nKatalina\nKelcey\nKendyl\nKiani\nKiran\nKyle\nLee\nLeia\nLeigh\nLinh\nLola\nLucille\nLusine\nMadaline\nMadilyn\nMaeve\nMaleah\nMalena\nMalinda\nMariajose\nMarin\nMaryssa\nMilagros\nMoesha\nNarda\nNatalya\nNathalia\nNikole\nPhoenix\nRayanna\nRayleen\nRayne\nRhea\nRio\nRosana\nRoselyn\nSelma\nShaniya\nShantal\nShelbi\nShianne\nShira\nSierrah\nSintia\nSiobhan\nTerry\nVeda\nVera\nVilma\nXitlali\nYuridia\nAbagail\nAdele\nAdreana\nAlexsandra\nAlora\nAlyse\nAmal\nAmaya\nAnabelle\nAnahy\nAndi\nAngelika\nAnh\nAnneliese\nAntonette\nAriadna\nAries\nAundrea\nAyesha\nAysha\nBerlin\nBreeanna\nBrigid\nBrittnie\nBryn\nCali\nCamryn\nCari\nCaryn\nCaylee\nChantell\nChelsi\nCielo\nCitlaly\nCorey\nCrisol\nDaria\nDenae\nDesteny\nDeven\nDeysi\nDinah\nDominque\nDyanna\nEmelia\nEmmeline\nEric\nFanny\nGenessis\nGisel\nGisell\nGuillermina\nHortencia\nJaclynn\nJanelly\nJenae\nJenise\nJennica\nJenniffer\nJessyca\nJourdan\nJune\nKaci\nKaelin\nKala\nKandice\nKarisa\nKaryna\nKenzie\nKeyla\nKhadijah\nKierstin\nKirby\nKrystle\nKyrsten\nLarisa\nLeena\nLeonor\nLilianna\nLiz\nLora\nMarcy\nMaryah\nMileena\nMirka\nMisha\nMiya\nMoira\nMykayla\nMyriah\nNajah\nNeha\nNellie\nNicola\nNour\nOctavia\nOriana\nPatience\nPatsy\nRana\nRebekka\nRina\nRomina\nRonnie\nSabreena\nSamira\nSedona\nSelah\nSeleste\nShanelle\nShaye\nShoshana\nSilver\nSunshine\nTabatha\nTaelor\nTarah\nTeanna\nTiera\nTrinidad\nVenus\nWendi\nYulissa\nYuri\nAbbigail\nAbigale\nAbrianna\nAditi\nAilyn\nAlannah\nAlecia\nAlyna\nAndrew\nAngelena\nAnnamaria\nAntionette\nAriane\nArlette\nArlyn\nAryn\nBreeann\nBrissa\nCarson\nCaylin\nCesilia\nChampagne\nCharisse\nCheri\nCherie\nCherry\nCiana\nCienna\nCody\nCorrine\nDanelle\nDanna\nDarien\nDeena\nDesirea\nDevine\nDolly\nElida\nElisabet\nEloise\nEmi\nEnedina\nEugenia\nEvelia\nEvette\nFarah\nGena\nIrina\nIvania\nIvory\nIzabel\nJacquelynn\nJaimee\nJalen\nJalyn\nJamesha\nJanea\nJaneen\nJannette\nJaslyn\nJaspreet\nJayna\nJensen\nJerica\nJoleen\nJosseline\nKacy\nKamaria\nKassie\nKatty\nKeara\nKrysten\nLacie\nLeeanne\nLilybeth\nLisandra\nLizabeth\nLizzet\nLluvia\nLucila\nLuis\nMaci\nMadelin\nMakala\nMalorie\nMaren\nMargot\nMariadelcarmen\nMarion\nMarlin\nMattea\nMelodie\nMichal\nMidori\nMilagro\nMontserrat\nNadya\nNeftali\nNhi\nNoelani\nOdaliz\nOsiris\nParker\nPeggy\nRaelynn\nRaena\nRemington\nRemy\nRenata\nRosalina\nRosalind\nRosalyn\nRosy\nSapphire\nSean\nShane\nShannen\nShante\nShasta\nShawn\nSheyenne\nSuleyma\nTalya\nTami\nTatyanna\nTera\nTereza\nTracie\nTreasure\nTristyn\nVienna\nXimena\nXitlaly\nYuka\nZabrina\nZainab\nZara\nZariah\nZayra\nZoie\nZulma\nAdrina\nAhtziri\nAlanah\nAleesha\nAlexes\nAlexzandra\nAlexzandria\nAleyna\nAlyce\nAmandeep\nAn\nAngelic\nAthziri\nAubriana\nAudra\nAzaria\nBaylie\nBeatris\nBethanie\nBianey\nBreyanna\nBriann\nBridgett\nBrittanie\nCaira\nCatarina\nCelene\nChance\nCharlie\nChaya\nChristianna\nClaudette\nCruz\nCrysta\nDani\nDarlyn\nDayanna\nDeserie\nDyana\nDyani\nEboni\nEduardo\nElba\nElexus\nEmalee\nEmeline\nEvelina\nFrancisco\nGelsey\nGiovanni\nGissell\nHalley\nHenna\nHolland\nHolli\nImari\nIrais\nIran\nIrasema\nIvett\nIvone\nJacob\nJaelyn\nJaniece\nJanneth\nJaylyn\nJazelle\nJazlynn\nJeanelle\nJennefer\nJody\nJorden\nJorge\nJoseph\nKa\nKailah\nKaira\nKaitlan\nKalea\nKandace\nKarol\nKasie\nKathie\nKatina\nKeyanna\nKhalia\nKiarra\nKimberlin\nKomal\nLani\nLatasha\nLeeza\nLela\nLibby\nLilit\nLilyana\nLinette\nLisamarie\nLisbet\nLissa\nLoretta\nMadalynn\nMadelaine\nMadelyne\nMaisie\nMalika\nManpreet\nMariafernanda\nMarielena\nMarili\nMariza\nMarsha\nMaryanne\nMason\nMatilda\nMattie\nMeena\nMeera\nMeg\nMilena\nNailah\nNoa\nNoely\nNohely\nNyla\nOdette\nOksana\nOralia\nOscar\nQuincy\nRae\nRayana\nRebecka\nRebeka\nReema\nReese\nRemi\nRichard\nRonni\nSaba\nSahara\nShanell\nShaniah\nSheryl\nShreya\nSoleil\nSonali\nSterling\nTalin\nTeagan\nTheodora\nTorrey\nTorri\nTriana\nTrista\nTyana\nValencia\nVianna\nYanitza\nYaqueline\nYelena\nYoceline\nYsabel\nYsabella\nZuleima\nAbigayle\nAdreanna\nAitana\nAlaysia\nAlesha\nAlexie\nAliana\nAllissa\nAlpha\nAmada\nAmayrani\nAmbrosia\nAmi\nAminah\nAnalaura\nAnanda\nAnicia\nAnnais\nArantxa\nArlen\nArmida\nAshtyn\nAsma\nAugust\nAziza\nBanesa\nBayleigh\nBreena\nBrian\nBronwyn\nCameryn\nCaprice\nCatelyn\nCathleen\nCera\nCesia\nCharis\nCharissa\nChiara\nCindi\nClaribel\nClaudine\nCodi\nConnor\nCorin\nCorryn\nDajanae\nDalena\nDarya\nDeija\nDeirdre\nDennis\nDivya\nDixie\nElina\nEmelyn\nEmiley\nEmmy\nEsly\nEstefanie\nEstephany\nEvonne\nGail\nGenisis\nGennesis\nGeorgiana\nHailie\nHelene\nIda\nIlianna\nIndigo\nInna\nIrlanda\nIveth\nJacquline\nJaden\nJakeline\nJamilah\nJayden\nJayne\nJesika\nJesslyn\nJestine\nJisela\nJo\nJoely\nJordon\nJosette\nJubilee\nJudit\nJulieann\nKaitlynne\nKaiya\nKalei\nKalin\nKalli\nKanani\nKarinna\nKaryn\nKaytlin\nKeeley\nKennya\nKeonna\nKeyona\nKhyla\nKimberli\nKiyana\nKyndra\nLaina\nLaney\nLexy\nLeyla\nLorina\nLysette\nMadina\nMae\nMagdalene\nMahalia\nMarcelina\nMargaux\nMarika\nMarivel\nMarlaina\nMarrisa\nMarycruz\nMatthew\nMecca\nMerari\nMichala\nMickayla\nMiryam\nNala\nNeda\nNeena\nNicholas\nNiomi\nOphelia\nPeri\nPerry\nRaeanne\nRaegan\nRanya\nRavyn\nRayven\nRian\nRicardo\nRossy\nRoya\nSabryna\nSachi\nSamanta\nSami\nSantana\nSarrah\nSativa\nSavina\nSecilia\nSerene\nShanika\nShari\nSheng\nStorm\nSulma\nSusanne\nSuzy\nTanna\nTawnee\nTayla\nTherese\nTiare\nTien\nTierney\nTonya\nTressa\nVivianne\nWynter\nYara\nYazmine\nYohana\nYosselin\nZaida\nZoila\nZoya\nAdara\nAidan\nAisling\nAleen\nAlesia\nAlexsa\nAline\nAlivia\nAlva\nAlyissa\nAlynna\nAmaranta\nAmparo\nAmrita\nAnacaren\nAnay\nAnecia\nAnja\nAnnalee\nAnnissa\nArden\nAreanna\nArgelia\nArin\nArrianna\nAshante\nAya\nBayley\nBeronica\nBlaire\nBrandon\nBreahna\nBriahna\nBriauna\nBritny\nBronte\nCaila\nCaley\nCarlin\nCaterina\nCelestina\nChanell\nCharisma\nChastity\nCherise\nCheyenna\nChoua\nClarice\nCloe\nClorissa\nColby\nCyrena\nCzarina\nDannia\nDarlin\nDeidra\nDeidre\nDelfina\nDeonna\nDesiray\nDestanie\nDevona\nDevynn\nDezirae\nDinora\nDomenique\nEbonie\nEdit\nElda\nElexia\nElijah\nElliana\nElyssia\nEmelie\nEmilly\nErianna\nFabiana\nFelicitas\nGalilea\nGayle\nGeorge\nGiulia\nGizelle\nGrisel\nHadley\nHarlie\nHellen\nHerlinda\nHiba\nHolley\nHoua\nHydeia\nIdania\nInessa\nIridiana\nIvan\nJacinta\nJacky\nJaela\nJaina\nJalisa\nJanai\nJannel\nJaylin\nJazzlyn\nJeanie\nJeanna\nJenesis\nJenni\nJerrica\nJessalyn\nJessy\nJewell\nJoey\nJolie\nJoscelyn\nJosephina\nKaelie\nKaija\nKailani\nKajal\nKaleah\nKameron\nKami\nKathlyn\nKathryne\nKatilyn\nKatryna\nKaylen\nKeilah\nKelsee\nKemberly\nKennia\nKezia\nKhaila\nKierstyn\nKimi\nKimiko\nKindra\nKodi\nKorey\nKristel\nKyanna\nKylah\nLanae\nLatisha\nLatrice\nLeeanna\nLetticia\nLeyda\nLizzeth\nLorissa\nLoryn\nLucinda\nLuzmaria\nLyndsay\nMadai\nMadysen\nMagnolia\nMaisee\nMallorie\nMareena\nMaribell\nMariella\nMariko\nMariyah\nMarleen\nMarylou\nMccall\nMegha\nMekayla\nMelani\nMelonie\nMi\nMikela\nMillie\nMiraya\nMiriah\nMisa\nMya\nMykaela\nNada\nNanette\nNatally\nNeida\nNickole\nNida\nNoreen\nNou\nNuvia\nOcean\nPahoua\nPakou\nPassion\nPatty\nQuiana\nRaeanna\nRaechel\nRain\nReba\nRhonda\nRianne\nRiki\nRoni\nRonisha\nRoxann\nRyley\nSabrena\nSabrinna\nSahra\nSaleena\nSamar\nSamia\nSanam\nSanjana\nSeana\nSergio\nShaianne\nShalini\nShalyn\nShanti\nSharee\nSharmaine\nShaylyn\nShaylynn\nShellie\nSherri\nShiloh\nSirenia\nSloane\nSpecial\nStarla\nStephaine\nStormy\nSujey\nSurina\nSuzie\nSuzzette\nSymphony\nTala\nTamra\nTatiyana\nTawni\nTerah\nTiarra\nTiona\nTyesha\nUma\nVaneza\nVerenise\nVi\nWanda\nWilla\nYanelly\nYilda\nYocelyne\nYovana\nYvonna\nZarina\nZayna\nAbbigale\nAdahli\nAdelaida\nAdria\nAgustina\nAilene\nAiriana\nAjanae\nAjia\nAkila\nAlaura\nAlberta\nAleesa\nAlessia\nAlexas\nAlexiss\nAlida\nAlli\nAlliyah\nAlthea\nAlyah\nAlyza\nAmbria\nAmeera\nAmirah\nAnalee\nAnaluisa\nAnalysa\nAnalyssa\nAndres\nAndriana\nAnette\nAnny\nAnsley\nAntonella\nApryl\nAriah\nArian\nArica\nArieanna\nArleth\nAsante\nAshia\nAshleen\nAshna\nAsiah\nAsusena\nAsya\nAthina\nAujanae\nAviva\nAyde\nAyleen\nAzul\nAzusena\nBao\nBecca\nBerenis\nBerlyn\nBiviana\nBreauna\nBreona\nBrett\nBrienna\nBrionna\nBritni\nBrookelynn\nCallan\nCamelia\nCandi\nCarisa\nCarlyn\nCarolann\nCassidi\nCeara\nChandra\nChanning\nCharise\nCharlee\nCheyene\nChris\nChristabel\nChristi\nChrysta\nChrystina\nClair\nClarita\nCodie\nCortnie\nCristiana\nCyntia\nCypress\nDacia\nDafne\nDalilah\nDanisha\nDannya\nDarcie\nDavida\nDeanne\nDeasia\nDebby\nDelany\nDelila\nDemitria\nDeserae\nDezarae\nDiamonique\nDionicia\nDomanique\nDonya\nDorian\nEcho\nEdwin\nElodia\nElora\nElsy\nEma\nEmeli\nEmelin\nEmery\nEmili\nEmoni\nErandy\nEsli\nEthel\nEvie\nGabriele\nGeovanna\nGerardo\nGianni\nGigi\nGurleen\nHaide\nHaille\nHalee\nHarleen\nHarper\nHaruka\nHeba\nHerminia\nHira\nHuda\nIlona\nImunique\nIriana\nIrie\nIsaiah\nIsha\nItalia\nItsel\nIxchel\nIyanna\nIzamar\nJacelyn\nJakelin\nJamee\nJames\nJamia\nJanise\nJanisha\nJannely\nJasmina\nJassmin\nJavier\nJaya\nJayline\nJazel\nJeana\nJeannine\nJennah\nJennelle\nJennipher\nJezabel\nJezebel\nJocelynne\nJohnae\nJohnnie\nJoie\nJordann\nJordynn\nJosefa\nJoselynn\nJosey\nJulienne\nJulyssa\nJustin\nKady\nKaia\nKaile\nKalene\nKallie\nKamilla\nKandyce\nKareena\nKarem\nKarima\nKarime\nKarine\nKaris\nKatharina\nKatherin\nKatiana\nKayce\nKaylan\nKayle\nKaytlyn\nKaytlynn\nKeiana\nKeiona\nKeli\nKellyn\nKeona\nKerrigan\nKhanh\nKhayla\nKiah\nKimberlie\nKimia\nKirstyn\nKitty\nKoraima\nKristan\nKristianna\nKyara\nKyrie\nLaine\nLakeisha\nLatanya\nLatoya\nLaurissa\nLeida\nLelani\nLeona\nLeora\nLibni\nLiseth\nLorelei\nLorene\nLynnette\nMacayla\nMackenzy\nMadelene\nMagan\nMairead\nMakaylah\nMalaya\nMalissa\nMalyssa\nManisha\nMao\nMarguerite\nMariateresa\nMaricella\nMarilin\nMarine\nMaris\nMarivi\nMariya\nMarizol\nMarkayla\nMarlenne\nMarrissa\nMarti\nMarykate\nMatilde\nMattison\nMayela\nMckenzi\nMckinley\nMekenna\nMelony\nMiki\nMiroslava\nMoncerrat\nMonesha\nMonisha\nMonzerrat\nMorganne\nNaima\nNalani\nNalleli\nNandi\nNatasia\nNatassja\nNatividad\nNelida\nNicollette\nNoelia\nNohemy\nNyah\nOpal\nPahola\nPaisley\nParris\nPeaches\nPhyllis\nPrisilla\nPrisma\nPromise\nQueen\nRachal\nRadhika\nRaelyn\nRandee\nReem\nReylene\nRilee\nRiva\nRivka\nRosalee\nRoslyn\nRudy\nRyane\nRyanne\nRyleigh\nSabra\nSaki\nSalome\nSaloni\nSamaria\nSantina\nSareena\nSarita\nSawyer\nScout\nSemaj\nShadi\nShady\nShaiann\nShaila\nShakira\nShanae\nShanon\nShantell\nShela\nSheri\nShirin\nSianna\nSilvana\nSindi\nSindia\nSinead\nSiomara\nSiria\nSkyla\nSondra\nSteffany\nStephenie\nStormie\nSuleima\nSvetlana\nSyeda\nTabetha\nTahlia\nTaisha\nTalar\nTanesha\nTanner\nTeal\nTiahna\nTrini\nTyanna\nUrsula\nVan\nVickie\nVictor\nVina\nVivienne\nWinona\nXochilth\nYahayra\nYancy\nYocelin\nZarria\nZhane\nZharia\nZoraida\nZoraya\nZully\nAarin\nAbelina\nAbreanna\nAbriana\nAdair\nAdaline\nAdrien\nAgueda\nAiden\nAinsley\nAiza\nAkayla\nAkia\nAkira\nAleecia\nAlejandrina\nAleksandra\nAlessa\nAlethea\nAlexiz\nAlexxus\nAlica\nAlicea\nAlijah\nAlissia\nAllana\nAllisa\nAlvina\nAlyx\nAmrit\nAnabell\nAnalyse\nAnareli\nAneesah\nAngelee\nAngelie\nAngella\nAngy\nAnise\nAniya\nAnnaliese\nAnneke\nAnnel\nAnnessa\nAntonio\nAnum\nArisa\nArisbeth\nArlena\nArlyne\nAshlei\nAshlen\nAudrie\nAudry\nAugusta\nAugustina\nAurea\nAyah\nAzia\nBabygirl\nBaileigh\nBaleria\nBenita\nBessy\nBethlehem\nBita\nBrienne\nBritt\nBrittanee\nBrynna\nByanka\nCailyn\nCaleigh\nCamellia\nCameo\nCamry\nCandra\nCaressa\nCarleigh\nCarole\nCarolynn\nCarrissa\nCatharine\nCaylie\nCecile\nCerina\nChabeli\nChaise\nChante\nChardonnay\nChassidy\nChelsee\nChristianne\nChyann\nCianna\nCollette\nCorazon\nCorie\nCorinn\nCorrena\nCorrin\nCory\nCrista\nCyndy\nDaeja\nDaina\nDaisia\nDaizy\nDallana\nDamara\nDanelly\nDanitza\nDariana\nDarline\nDarrian\nDayja\nDeandra\nDeise\nDeisi\nDella\nDemetra\nDenia\nDenis\nDesaree\nDeseree\nDestine\nDionne\nDulcinea\nDymond\nEbelin\nEbone\nEdid\nEdlyn\nEilene\nElisheva\nElisia\nEllena\nEllery\nEllis\nEmmaline\nEnid\nErick\nErnestina\nEvalyn\nEveline\nEvelyne\nEvelynn\nFaye\nFrancheska\nFrank\nGardenia\nGenevie\nGeorgianna\nGeorgie\nGiannina\nGiovana\nGiulianna\nGlory\nGracen\nGreer\nGuinevere\nGurpreet\nGustavo\nHan\nHanh\nHarlee\nHarsimran\nHattie\nHayleigh\nHayli\nHonesty\nIcela\nIlliana\nIlsa\nIndira\nIrazema\nItzell\nItzia\nJackelyne\nJadelyn\nJahnae\nJamaica\nJameelah\nJamisha\nJanaya\nJanaye\nJaneli\nJanella\nJanelli\nJanina\nJanira\nJannah\nJanny\nJasmeet\nJazleen\nJazzmyn\nJeanett\nJemma\nJenica\nJeralyn\nJerri\nJessa\nJesseca\nJessel\nJessyka\nJiana\nJianna\nJissel\nJohannah\nJohnesha\nJoi\nJordana\nJosalyn\nJoslynn\nJosselin\nJosue\nJovita\nJoya\nJuliane\nJuly\nJustis\nKaelynn\nKailie\nKalee\nKamilah\nKamille\nKamri\nKanesha\nKarinne\nKarolyn\nKarrah\nKaryssa\nKassaundra\nKatelynne\nKathrina\nKattie\nKavya\nKayci\nKaylani\nKaylea\nKazandra\nKealani\nKendel\nKendyll\nKerrie\nKeyera\nKeyonna\nKiaira\nKiely\nKiona\nKisha\nKiya\nKorie\nKrystin\nKymberly\nKyrstin\nLai\nLailani\nLane\nLanisha\nLashawn\nLatricia\nLavinia\nLeeana\nLeiana\nLenette\nLenora\nLetisia\nLiat\nLilac\nLilyann\nLisett\nLisseth\nLita\nLivier\nLondyn\nLory\nLuana\nLuciana\nLyla\nLynne\nMadalena\nMalaika\nMalea\nMaleena\nMalerie\nMalin\nMaliyah\nMaraya\nMarcie\nMariely\nMarilee\nMarilena\nMarimar\nMarinna\nMarixa\nMarkie\nMarleni\nMarlie\nMarlina\nMarlo\nMarnie\nMarriah\nMartin\nMaryelizabeth\nMaryellen\nMaryrose\nMayan\nMayda\nMeilani\nMelania\nMeriah\nMichayla\nMicheala\nMicole\nMikaella\nMikalah\nMikhaila\nMila\nMilana\nMillicent\nMinnie\nMonik\nMoniqua\nMoranda\nMyla\nMyrka\nNadeen\nNadja\nNahla\nNahomi\nNai\nNairi\nNaja\nNajwa\nNakia\nNathan\nNavneet\nNayla\nNelli\nNely\nNerissa\nNeysa\nNicholle\nNicki\nNicky\nNicolasa\nNicolina\nNikkie\nNinfa\nNoah\nNuria\nNyree\nOceana\nOsmara\nPage\nPang\nPatrisia\nPaxton\nPayal\nPearla\nPenny\nPhoua\nPhylicia\nPortia\nQueena\nRachelann\nRaeleen\nRafaela\nRahel\nRaine\nRamandeep\nRandie\nRandy\nRaul\nRaya\nRayann\nReece\nReed\nReya\nReyanna\nRobert\nRory\nRosanne\nRoselia\nRoshni\nRufina\nRya\nRyanna\nSabah\nSabree\nSadia\nSafia\nSahira\nSamatha\nSandi\nSania\nSanta\nSee\nSelinda\nSendy\nSeraphina\nSerra\nShaela\nShamari\nShanel\nShannel\nShantelle\nShanya\nShara\nShareen\nSharina\nShavon\nShavonne\nShawntel\nShaylee\nShealyn\nShiann\nShilah\nShilo\nShireen\nShruti\nShyanna\nSimona\nSomer\nSpring\nSteffanie\nSteven\nSuhey\nSukhpreet\nSumaya\nSuzana\nTalea\nTamarah\nTana\nTanaya\nTaylar\nTaylour\nTea\nTeena\nTeri\nThanh\nThu\nThuy\nTianah\nTisha\nToby\nTyrah\nTyree\nVanessamarie\nVanna\nVianka\nVibiana\nVida\nVita\nViviane\nYael\nYamile\nYaneth\nYasaman\nYeni\nYer\nYsabelle\nYusra\nZaina\nZaire\nZarah\nZia\nZitlali\nZitlaly\nZuly\nZuri\nZyanya\nJessica\nJennifer\nAshley\nEmily\nSamantha\nSarah\nStephanie\nElizabeth\nVanessa\nAlexis\nMaria\nJasmine\nAlyssa\nMelissa\nHannah\nKimberly\nVictoria\nTaylor\nAmanda\nLauren\nMichelle\nNatalie\nMadison\nMegan\nDiana\nAndrea\nBrianna\nNicole\nJacqueline\nRachel\nSabrina\nKayla\nAlexandra\nDaisy\nKatherine\nRebecca\nJulia\nDanielle\nLeslie\nJocelyn\nMonica\nCrystal\nCynthia\nAlondra\nAngelica\nMarissa\nAlejandra\nGabriela\nBrittany\nKarina\nBrenda\nOlivia\nSara\nDestiny\nChristina\nAmber\nSophia\nAbigail\nEmma\nAna\nBriana\nSydney\nKaren\nAdriana\nGuadalupe\nSierra\nLaura\nCassandra\nSavannah\nVeronica\nAnna\nHaley\nTiffany\nEvelyn\nValerie\nAmy\nAngela\nAlicia\nIsabel\nMariah\nEsmeralda\nBianca\nKelly\nAllison\nYesenia\nMorgan\nAriana\nNancy\nMiranda\nErika\nJordan\nBrooke\nKarla\nCourtney\nBreanna\nIsabella\nJasmin\nErica\nGabrielle\nMadeline\nJazmin\nErin\nCindy\nKaitlyn\nCheyenne\nGrace\nShelby\nJulissa\nDaniela\nDesiree\nMary\nSandra\nAlexandria\nMelanie\nClaudia\nMia\nAlexa\nHailey\nClaire\nMonique\nSelena\nPriscilla\nCeleste\nJoanna\nJamie\nWendy\nGiselle\nPaige\nCatherine\nDominique\nKelsey\nShannon\nChelsea\nKatelyn\nPatricia\nCarolina\nChloe\nJenna\nRuby\nBailey\nMayra\nValeria\nArianna\nDenise\nGabriella\nKylie\nKatie\nHeather\nCaroline\nGenesis\nChristine\nKathryn\nLiliana\nRosa\nSofia\nAngelina\nCaitlin\nKassandra\nJulie\nVivian\nMackenzie\nJade\nKristen\nJazmine\nJanet\nCristina\nMarisol\nCassidy\nAudrey\nCecilia\nRaquel\nBrittney\nLindsey\nMichaela\nSerena\nMikayla\nMaya\nNaomi\nTeresa\nClarissa\nLisa\nLinda\nPaola\nSummer\nZoe\nAriel\nMarina\nApril\nKiana\nLorena\nMartha\nAdrianna\nCarmen\nFaith\nMolly\nCarly\nMarisa\nAngel\nKristina\nIrene\nAutumn\nGloria\nMakayla\nPaulina\nSonia\nTatiana\nJenny\nKatrina\nNatalia\nJocelyne\nKrystal\nLeah\nLeticia\nJustine\nElena\nCamille\nKaylee\nMarlene\nMireya\nMargarita\nViviana\nNatasha\nAlma\nMeghan\nMariana\nJuliana\nKathleen\nHayley\nLesley\nLizbeth\nMaribel\nRebekah\nMiriam\nKaitlin\nMadeleine\nMckenna\nLily\nAlison\nCarla\nCaitlyn\nHanna\nPerla\nYulissa\nNoemi\nRiley\nDana\nEsther\nMaritza\nAileen\nLuz\nRuth\nSharon\nCristal\nYvette\nLindsay\nAlissa\nKendall\nKyra\nMargaret\nYasmin\nAlina\nBethany\nSusana\nDeanna\nHolly\nJillian\nMariela\nSophie\nEva\nEdith\nMarilyn\nNina\nTara\nBrandy\nMelody\nAraceli\nElisa\nCasey\nBlanca\nReyna\nGina\nRenee\nJulianna\nAaliyah\nAnnie\nDulce\nLydia\nKendra\nNadia\nDestinee\nLizette\nYadira\nIsabelle\nMikaela\nRachael\nHelen\nPamela\nAlexia\nCarina\nFatima\nTanya\nJanelle\nJordyn\nLesly\nTania\nAmelia\nKathy\nKennedy\nKristin\nCierra\nJacquelyn\nArlene\nItzel\nLillian\nAngie\nKirsten\nJohanna\nTiana\nYvonne\nAsia\nHeidi\nKara\nRocio\nSarai\nBeatriz\nDaniella\nStephany\nAnahi\nHope\nAlexus\nIris\nMercedes\nSandy\nStacy\nBridget\nDelaney\nElise\nYolanda\nAlana\nJeanette\nJosephine\nJudith\nTessa\nCiara\nAimee\nAshlee\nLucia\nMckenzie\nNataly\nJaqueline\nNayeli\nNorma\nCharlotte\nFabiola\nAlice\nAnastasia\nCeline\nAnne\nDeja\nKate\nSusan\nWhitney\nYasmine\nAllyson\nYessenia\nAliyah\nCarolyn\nGraciela\nMarie\nSavanna\nTheresa\nLeilani\nBerenice\nSilvia\nMadelyn\nEmely\nNathalie\nKiara\nKira\nAshlyn\nDiane\nGisselle\nIvy\nRaven\nSadie\nTabitha\nCarissa\nImani\nLisette\nMakenna\nPaula\nBarbara\nBreana\nKylee\nAngelique\nClara\nDalia\nAylin\nBryanna\nElisabeth\nStacey\nDarlene\nKatelynn\nNoelle\nSasha\nCameron\nCasandra\nEileen\nGillian\nSienna\nTori\nLarissa\nSidney\nTyler\nBrenna\nFrancesca\nVirginia\nBelen\nJessie\nArielle\nLucy\nSalma\nKrista\nTalia\nBrandi\nGianna\nTina\nAnissa\nRebeca\nAubrey\nEsperanza\nAurora\nElaine\nGladys\nAnnette\nMeagan\nEstefania\nJada\nKyla\nSage\nAvery\nDiamond\nJuliet\nRoxana\nSelina\nCheyanne\nDakota\nFelicia\nGriselda\nJailene\nSarahi\nTamara\nJanette\nRose\nVanesa\nCatalina\nDeborah\nAshleigh\nJoana\nJoselyn\nLacey\nRegina\nFrances\nNia\nSally\nSylvia\nTracy\nAnita\nAthena\nBaylee\nDayana\nKasandra\nShirley\nSimone\nThalia\nEstrella\nKenia\nIvette\nJulisa\nMagdalena\nMaricela\nOdalis\nKarissa\nLizeth\nYulisa\nAlisa\nFiona\nKailey\nMarisela\nDenisse\nEstefany\nJuanita\nMelina\nNicolette\nTaryn\nAlanna\nJanice\nNikki\nRosemary\nCelina\nShayla\nKaila\nMalia\nMallory\nMelinda\nMirella\nReina\nEliza\nIliana\nJoyce\nJulianne\nKristy\nYajaira\nAdilene\nChristy\nElla\nEllen\nGiovanna\nMicaela\nTiara\nAntonia\nCinthia\nJaclyn\nJuana\nRosario\nAlisha\nDonna\nGenevieve\nJackeline\nJazlyn\nKenya\nLilian\nPeyton\nPrecious\nTayler\nToni\nTyra\nBrianne\nHaylee\nJanae\nLourdes\nCamila\nColleen\nJuliette\nKassidy\nKristine\nNora\nAdrienne\nAnnika\nAstrid\nCarol\nLeanna\nMacy\nRoxanne\nCandace\nCelia\nIngrid\nKellie\nPayton\nPhoebe\nViridiana\nYasmeen\nBeverly\nDamaris\nDevon\nIrma\nJane\nKiera\nXochitl\nCorina\nDevin\nFernanda\nIvonne\nJanessa\nJoy\nKasey\nKelli\nMoriah\nRobin\nRylee\nTia\nChantal\nDelilah\nEmilee\nHeaven\nLena\nLucero\nMadalyn\nPaloma\nMakenzie\nJudy\nLissette\nMaggie\nPauline\nSkylar\nArely\nCiera\nEbony\nGeorgina\nHazel\nJenifer\nJohana\nMarlen\nMelisa\nShyanne\nTess\nValentina\nAmerica\nCarley\nDaphne\nEliana\nHana\nKatarina\nKaylie\nLina\nNichole\nRita\nRobyn\nSkye\nStefanie\nTatyana\nBritney\nEmilie\nEstefani\nJoanne\nJoseline\nKelsie\nAracely\nChelsey\nDianna\nKayleigh\nMaia\nNadine\nOdalys\nSarina\nTrinity\nAshly\nDelia\nEstela\nEunice\nJoceline\nJosefina\nLauryn\nMckayla\nSonya\nAnn\nCara\nChanel\nGeorgia\nIsis\nJacklyn\nSavanah\nViolet\nYazmin\nAlexandrea\nAlysia\nDesirae\nElissa\nHelena\nKaitlynn\nLaurel\nCandice\nChantel\nCharlene\nConnie\nEleanor\nFlor\nJosie\nMagaly\nTierra\nUnique\nXena\nAreli\nAzucena\nBrooklyn\nCallie\nEvelin\nJustice\nKatia\nKatlyn\nKianna\nLilia\nShania\nShayna\nSkyler\nTianna\nAlyson\nAyleen\nEden\nMaira\nRosie\nAlaina\nAnais\nBertha\nBryana\nElsa\nGrecia\nHunter\nIsela\nKaelyn\nLilly\nMarcela\nMarcella\nMichele\nRachelle\nRosalinda\nTatum\nAbby\nAlessandra\nAnika\nAntoinette\nHillary\nLeila\nLiana\nLupita\nMaddison\nParis\nSimran\nAlena\nAnabel\nChristian\nKaylin\nKaylyn\nLuisa\nTammy\nBailee\nBeatrice\nCarrie\nClare\nConsuelo\nDanica\nKaela\nKatharine\nLidia\nNoel\nRubi\nAshlie\nBonnie\nDania\nIvana\nJaylene\nMakena\nMina\nSelene\nShawna\nSheila\nYessica\nAva\nBernice\nElsie\nEricka\nJessenia\nKali\nMariam\nRyan\nStella\nTamia\nVicky\nYoselin\nGwendolyn\nJaneth\nJessika\nJewel\nKailee\nKierra\nLea\nScarlett\nSerina\nShaina\nZulema\nAshlynn\nChristie\nKiley\nLilibeth\nLynette\nXiomara\nAnnabelle\nCarlie\nChristiana\nDavina\nDebbie\nElyssa\nEmilia\nFrancisca\nHailee\nHeidy\nKelsi\nLeanne\nLorraine\nMaryjane\nNathaly\nYahaira\nAdela\nBetsy\nDolores\nJazmyn\nLoren\nMara\nMeredith\nMonserrat\nRoxanna\nSerenity\nTiffani\nAnnalise\nBridgette\nDarian\nDestiney\nDina\nDomonique\nDora\nMaricruz\nMarlyn\nNallely\nZaira\nBelinda\nEvangelina\nLexus\nOlga\nRayna\nRhiannon\nSusanna\nBecky\nBrittani\nCandy\nIleana\nIndia\nJaime\nJanine\nLeann\nMarianna\nMarlena\nMindy\nMira\nNikita\nPricilla\nRochelle\nZoey\nAlize\nCambria\nChandler\nChrista\nCorinne\nCortney\nHilda\nJackelyn\nJennie\nJoelle\nJustina\nKeely\nKelley\nLynn\nMisty\nMontana\nPearl\nRaylene\nSydnee\nVianey\nAlia\nAmani\nCassie\nChelsie\nCoral\nDrew\nHalle\nHarmony\nIzabella\nKaley\nKarli\nKarlie\nKarly\nKeila\nLara\nLia\nMagali\nMariel\nMyra\nRandi\nSalina\nShea\nShyann\nSiena\nStarr\nSuzette\nAisha\nAlycia\nAlysa\nAmari\nAngeline\nAni\nCarli\nCathy\nDarby\nJeannette\nKristie\nLaila\nLori\nReagan\nSheridan\nYareli\nYaritza\nAleah\nAmaris\nBernadette\nDeisy\nDevyn\nDorothy\nElisha\nElvira\nFrida\nJacquelin\nJesenia\nKelsea\nKiersten\nKourtney\nKristi\nMaxine\nMeaghan\nMyranda\nPriscila\nStefany\nSydnie\nAllie\nAngeles\nBobbie\nCherish\nCheryl\nDallas\nElvia\nElyse\nEstephanie\nJackie\nKacie\nKaty\nMirna\nNatali\nNayely\nReanna\nTrisha\nAlex\nAshton\nAubree\nBrielle\nEmerald\nFaviola\nHaylie\nIvanna\nLana\nLeandra\nLexi\nMarley\nMelany\nMilan\nMonet\nMonika\nReilly\nRosio\nSuzanne\nVerenice\nAmara\nAnnelise\nBella\nChase\nDanika\nDayna\nDestini\nFrancis\nHalie\nJoselin\nKarlee\nLuna\nMadisen\nMaegan\nMaryann\nMiracle\nRosalia\nSalena\nShauna\nSoledad\nValarie\nYaneli\nAndreina\nAnisa\nAnnabel\nAnnamarie\nCorrina\nDahlia\nEssence\nJayme\nJazmyne\nJeniffer\nJoann\nKarely\nKatelin\nLilliana\nLiza\nLyric\nMadyson\nMai\nMarbella\nMari\nPenelope\nRegan\nRyann\nYanet\nAja\nAliza\nAmina\nAnnemarie\nAyanna\nBreann\nBreanne\nBrigitte\nCarlee\nDanae\nDylan\nEryn\nGeneva\nGisell\nHarley\nJenelle\nJoselyne\nKim\nLogan\nMaite\nMalaysia\nMandy\nMercy\nMika\nNikole\nQuinn\nRaina\nRosalie\nRowan\nShivani\nTatianna\nVioleta\nYazmine\nAda\nAlanis\nAliya\nAmbar\nAnalisa\nAnjelica\nAnyssa\nClarisa\nDayanna\nDemi\nEllie\nErykah\nEve\nHaleigh\nIlene\nIman\nIridian\nIsabela\nJolene\nKalyn\nKamryn\nKari\nKarolina\nKaterina\nKaya\nLouisa\nMadisyn\nMaranda\nNoemy\nRylie\nStar\nYuliana\nAime\nAlayna\nAllissa\nAyana\nBianka\nBobbi\nBrisa\nCamryn\nCecelia\nChrystal\nChyna\nDalila\nDarla\nDianne\nFrancine\nGissel\nImelda\nInez\nJocelin\nKailyn\nKayleen\nKeana\nKimberley\nLayla\nMacie\nMariaguadalupe\nMayte\nMeliza\nMicah\nMikala\nNelly\nPrincess\nShelbie\nShelly\nShianne\nTea\nAdeline\nAida\nAlexi\nAllegra\nAllyssa\nAnnalisa\nArlette\nAryanna\nBrooklynn\nCayla\nCharity\nCitlali\nConcepcion\nCora\nDaysi\nDestany\nElaina\nFelicity\nFrankie\nIlse\nJanell\nJayda\nJose\nLila\nLyndsey\nMarjorie\nMarta\nMartina\nMaryam\nMinerva\nSaray\nSavana\nSoraya\nVivianna\nWillow\nYanira\nAbril\nAlba\nAleena\nAlysha\nAnai\nAnnmarie\nAryana\nBetty\nDoris\nEdna\nElia\nGisela\nHallie\nJanay\nJasmyn\nJennyfer\nJesse\nJill\nKai\nKarley\nKathie\nKayley\nKristal\nKristiana\nKyleigh\nMicayla\nMiya\nMyriam\nPriyanka\nRosemarie\nSade\nShakira\nSherry\nSocorro\nSunshine\nValery\nVianca\nXochilt\nAdrianne\nAmalia\nAriella\nAzalea\nBria\nCarmela\nColette\nDaniel\nDesteny\nEmani\nFarrah\nGemma\nGissell\nIlana\nJaimie\nJaquelin\nJena\nKathrine\nKorina\nKyle\nLeeann\nLilianna\nLinnea\nLisset\nMarianne\nMaura\nMollie\nMontserrat\nOfelia\nPiper\nShyla\nSunny\nSusie\nSuzanna\nYesica\nAddison\nAdrian\nAlexxis\nAli\nAmira\nAnamaria\nBlair\nCamilla\nChiara\nCori\nDawn\nDesire\nElexis\nElva\nGema\nGiana\nIvon\nJacinda\nJanelly\nKacey\nKathia\nKatya\nKendal\nKirstin\nLili\nLizet\nMadelynn\nMadilyn\nManuela\nMarilynn\nMichell\nMimi\nPriya\nRena\nRianna\nRosalba\nRosamaria\nSaira\nSamara\nSequoia\nShae\nShantel\nStevie\nTabatha\nTrina\nYuliza\nAcacia\nAidee\nAilyn\nAlexzandra\nAlyse\nAnastacia\nAnayeli\nAriadna\nAspen\nBree\nBreeanna\nBrigette\nChristen\nCienna\nDaija\nDaria\nDevan\nEster\nFlora\nFranchesca\nGracie\nHollie\nJacquelynn\nJana\nJanel\nJaquelyn\nJayla\nJazzmin\nJensen\nJosselyn\nJovanna\nKaleigh\nKlarissa\nLexie\nLianna\nLisbeth\nMariaelena\nMarielle\nMirian\nNeha\nNellie\nOriana\nPooja\nRenae\nRhianna\nSahar\nShelbi\nSheyla\nShreya\nStacie\nStefani\nTamera\nTherese\nVannessa\nVeronika\nWinter\nXimena\nYamilet\nYenifer\nYocelyn\nAide\nAlejandrina\nAlexys\nAlly\nAllysa\nAya\nBillie\nBritni\nCorinna\nDayanara\nDeana\nDestinie\nElle\nGeraldine\nHilary\nIdalia\nIsabell\nJacey\nJael\nJannette\nJaslyn\nJazzmine\nJenae\nJoan\nJulian\nJuliann\nJulieta\nKalani\nKarin\nKaylynn\nKaytlin\nKerry\nKeyla\nMarian\nMarin\nMay\nNeida\nNereida\nPresley\nRaelene\nRayleen\nSirena\nSymone\nTaya\nTeagan\nVannesa\nYamilex\nYaquelin\nZahra\nAbbey\nAmie\nAnel\nAnisha\nAria\nAshely\nAshli\nAyla\nBibiana\nBreeana\nCatrina\nCelena\nChristal\nDarcy\nDeziree\nEloisa\nGladis\nIsamar\nJamila\nJannet\nJesica\nJocelynn\nKalie\nKalina\nKaylah\nLeana\nMacey\nMarla\nMercedez\nMonae\nNatalya\nNathalia\nNeyda\nNicolle\nNiki\nNoor\nPa\nRaegan\nRamona\nRosaura\nSabina\nSaige\nShiloh\nSky\nTristan\nXenia\nYamileth\nZainab\nAbagail\nAbbie\nAbriana\nAiyana\nAnalise\nAngelika\nAngelita\nAnjali\nAries\nAvalon\nAysia\nBrianda\nBrittni\nBryn\nChantelle\nCiarra\nCydney\nDaisha\nDanna\nDominque\nElana\nEstella\nFallon\nGisel\nGrisel\nHailie\nIsaura\nJackelin\nJimena\nJodie\nJune\nKalia\nKimberlee\nKristyn\nKylah\nLola\nLondon\nMaile\nMaryah\nMeranda\nMichela\nMitzi\nMona\nNatalee\nPaulette\nRacquel\nRaelyn\nRhea\nRikki\nSarena\nScarlet\nShana\nShanice\nShanna\nShayne\nSommer\nTasha\nTeresita\nTerra\nTiarra\nTiffanie\nValencia\nYuri\nAbbigail\nAdina\nAdrina\nAlexsandra\nAlyssia\nAnahy\nAnya\nArabella\nArianne\nAsha\nBailie\nBiridiana\nBrittanie\nBrook\nChaya\nChelsy\nCherie\nChynna\nDanya\nDara\nDennise\nEmmalee\nEryka\nEvangeline\nGretchen\nHaven\nIndira\nIvory\nJanely\nJanna\nJaycee\nJeanine\nJennica\nJolie\nJoslyn\nKameron\nKaycee\nKaylen\nKenna\nKeren\nKiah\nKiarra\nLacy\nLizbet\nLizzette\nLucille\nMakaila\nMaliah\nMalissa\nMaricarmen\nMarlee\nMaureen\nMellisa\nMichaella\nMildred\nOcean\nParker\nPatrice\nPilar\nRene\nRicki\nSamanta\nSamira\nSariah\nSelma\nShani\nShawnee\nSiera\nSonja\nThania\nTracey\nVania\nVenus\nVicki\nYanely\nZaria\nZoie\nAbrianna\nAdelina\nAlaysia\nAlejandro\nAlexsis\nAliah\nAlisia\nAlivia\nAlix\nAlora\nAmairani\nAmaya\nAnakaren\nAndie\nAriane\nArleth\nArlyn\nArmani\nAustin\nAyesha\nBaylie\nBelle\nBrea\nBreauna\nBriseida\nCali\nCecily\nCelene\nCharmaine\nChyanne\nConstance\nDaja\nDebra\nDejah\nDelanie\nDenice\nDinora\nEmmy\nEstefanie\nEugenia\nEvette\nJacquelyne\nJanie\nJayde\nJazzlyn\nJean\nJessyca\nJordin\nJovana\nJulieanna\nKatalina\nKatheryn\nKaytlyn\nKeara\nKevin\nKori\nKristian\nKrysten\nLesli\nMargaux\nMariella\nMarleen\nMerissa\nMilagros\nNicola\nNohemi\nPetra\nRemy\nRoberta\nRosalind\nRosalva\nSabine\nSabryna\nSana\nSayra\nShay\nSinai\nSusannah\nTanisha\nTiera\nTricia\nWinnie\nXitlaly\nYecenia\nAdelaida\nAdelaide\nAlani\nAlexander\nAmberly\nAmethyst\nAnnel\nAshanti\nAudrianna\nAyah\nBrandie\nBreonna\nBrittaney\nBryce\nBrynna\nCailin\nChristin\nCiana\nCitlalli\nCorrine\nDanyelle\nDeandra\nDejanae\nDeserie\nElicia\nElida\nElizabet\nEvelia\nGabriel\nGalilea\nGiulia\nGizelle\nGlenda\nGlory\nIdalis\nJami\nJanai\nJaspreet\nJayleen\nJeanne\nJodi\nJoely\nJonathan\nJulieann\nKaelin\nKaryna\nKeanna\nKeeley\nKerri\nKeyana\nKhadijah\nKimberli\nLashay\nLeonor\nLeslye\nLizett\nLluvia\nLois\nLoretta\nLupe\nLynda\nMakaela\nMakala\nMariajose\nMarielena\nMarilu\nMelia\nMichael\nMorelia\nMykaela\nNalleli\nNeda\nNereyda\nNidia\nNydia\nNyla\nOctavia\nOralia\nRacheal\nRaeann\nRayanne\nRina\nSaba\nShawn\nShelley\nShoshana\nSpencer\nStormy\nSulema\nTehya\nTraci\nTreasure\nWynter\nYara\nZena\nAbigale\nAlea\nAnalicia\nAndria\nAnthony\nArissa\nAubrie\nBerlin\nBrionna\nBrittny\nCaitlynn\nCameryn\nCarmelita\nChanelle\nCharissa\nChina\nCinthya\nCorey\nDaijah\nDaisey\nDenae\nDesiray\nDoreen\nEboni\nErendira\nEvan\nFarah\nGianni\nGiovana\nHayden\nJanett\nJasleen\nJaycie\nJayden\nJaylin\nJesus\nJourdan\nKaliyah\nKarena\nKati\nKatlin\nKaylene\nKemberly\nKenzie\nLeena\nLeona\nLibby\nLinette\nLiz\nLysette\nMaeve\nMaleah\nMarcelina\nMariadelcarmen\nMariafernanda\nMarika\nMarily\nMarivel\nMarycruz\nMarylou\nMason\nMattie\nMelyssa\nMickayla\nMyrna\nNoelani\nPatience\nQuincy\nRaeanne\nRayanna\nRemi\nRosalina\nRoselyn\nSarahy\nSharlene\nSharmaine\nShasta\nSkyla\nTasia\nTawny\nTera\nTerri\nTerry\nTrinidad\nTristen\nZayra\nAdreanna\nAjanae\nAlannah\nAlecia\nAlexzandria\nAlliyah\nAnaya\nAnessa\nAnette\nAnnabella\nArcelia\nAriela\nArleen\nAveri\nBianey\nBlythe\nBridgett\nBrieanna\nCarson\nCathleen\nChana\nCharlie\nChasity\nCielo\nCitlaly\nCory\nCrista\nDalena\nDani\nDasia\nDeena\nDelmy\nDevina\nDivina\nDivya\nEleni\nElexus\nElsy\nEmalee\nEmeline\nEnedina\nErinn\nEstephania\nEstrellita\nGeena\nGinger\nGiovanni\nHaily\nHali\nIda\nInes\nIzabel\nJaida\nJaylynn\nJaymee\nJeannie\nJessi\nJonae\nJoshua\nKailynn\nKalee\nKamila\nKayle\nKayli\nKaytlynn\nKennedi\nKia\nKrysta\nLacie\nLaurie\nLeeza\nLeigh\nLessly\nLexis\nLiseth\nLouise\nLucila\nLuzmaria\nLynnette\nMadelaine\nMalena\nMalika\nMaren\nMargo\nMarleny\nMarysol\nMatilda\nMeera\nMirka\nNaila\nNaomy\nNayelli\nNeftali\nNubia\nParisa\nRayann\nRayven\nRheanna\nRosalyn\nRoshni\nSahana\nSanam\nSerene\nShaylee\nStephani\nTanner\nVenessa\nVienna\nVivienne\nYael\nYuridia\nZuleima\nAbigayle\nAdele\nAliana\nAline\nAmi\nAminah\nAnabelle\nAnalaura\nAnneliese\nArgelia\nArlet\nArriana\nAubrianna\nAudriana\nBanesa\nBeatris\nBeth\nBrandee\nBrynn\nCatarina\nCatelyn\nCaylee\nCera\nChastity\nChristianna\nCintia\nClair\nClaribel\nCristian\nDarien\nDebora\nDelfina\nDeseree\nDevynn\nDeyanira\nDeysi\nDezirae\nDyani\nFanny\nGardenia\nGeorgianna\nGeselle\nGigi\nGrayson\nGreta\nHadley\nItalia\nItzayana\nIyanna\nJackelyne\nJaelyn\nJalyn\nJamilex\nJenessa\nJennefer\nJenniffer\nJessalyn\nJosephina\nJoslynn\nKaelynn\nKailah\nKaiya\nKalei\nKandace\nKarishma\nKasie\nKassie\nKathryne\nKaylan\nKelci\nKendyl\nKeri\nKiani\nKinsey\nKyler\nLani\nLeia\nLexy\nLeyla\nLianne\nLinsey\nLora\nLorissa\nMaci\nMackenna\nMalina\nMallorie\nMarena\nMarguerite\nMaricella\nMarlin\nMarrissa\nMarylin\nMaryssa\nMegumi\nMichel\nMiriah\nMitzy\nMya\nNakia\nNerissa\nNika\nNoah\nOksana\nPrachi\nRae\nRaelynn\nRhonda\nRia\nRiana\nRio\nRosanna\nSahara\nSarita\nSera\nSheena\nSheryl\nSheyenne\nSindy\nStarla\nStefania\nSydni\nTajanae\nTamar\nTami\nTayla\nThea\nTyanna\nUrsula\nVianney\nVickie\nVivien\nXitlali\nXochil\nYsabel\nZara\nZuleyma\nZulma\nAkilah\nAlanah\nAlexes\nAlexiss\nAlyx\nAmairany\nAmparo\nAnahit\nAngelic\nAnia\nAnnalee\nAnnaliese\nAnnissa\nAntonette\nAreisy\nAriadne\nArika\nArin\nAshlynne\nAudra\nAundrea\nBaily\nBerenise\nBlake\nBrenae\nBrigit\nBrittnee\nBrittnie\nCaleigh\nCandelaria\nCaren\nCarleigh\nCayley\nCelestina\nCerina\nChandni\nCherokee\nClarice\nCloe\nCollette\nCruz\nDacia\nDaeja\nDajah\nDavid\nDenisha\nDeserae\nDestanie\nElina\nElsi\nEmelia\nEmmaline\nEmoni\nEvelynn\nGenisis\nGisele\nGiuliana\nGricelda\nGwenyth\nHalee\nHan\nHarleen\nHeba\nHonesty\nIleen\nIreland\nIveth\nJaden\nJaelene\nJailine\nJanis\nJasmyne\nJayna\nJessy\nJody\nJoey\nJordann\nJordynn\nJosette\nJovita\nJoycelyn\nJuan\nJudit\nJulieanne\nJulyssa\nKalena\nKarinna\nKaris\nKazandra\nKeilani\nKeira\nKeisha\nKera\nKiely\nKirra\nKortney\nKristel\nKrystina\nKyana\nLaney\nLarisa\nLatasha\nLela\nLilit\nLilyana\nLinh\nLorelei\nLucinda\nMabel\nMacayla\nMadysen\nMariadejesus\nMariadelosang\nMariyah\nMellissa\nMelonie\nMerari\nMiah\nMichala\nMikaila\nMikyla\nMila\nMilena\nMisha\nMyla\nNadya\nNailah\nNhi\nNisha\nNoelia\nNohemy\nOscar\nRadhika\nRaeanna\nRenata\nRomy\nRonni\nRosy\nRyley\nSamaria\nSammantha\nSandi\nSedona\nShaelyn\nShantal\nShaye\nSierrah\nSiobhan\nSloane\nStephania\nSynthia\nTaelor\nTatiyana\nTaylar\nTegan\nTien\nTrista\nUma\nValeri\nVilma\nYanitza\nYarely\nYoanna\nZaida\nZariah\nZenaida\nZhane\nZully\nZuri\nAbbygail\nAdara\nAhtziry\nAislinn\nAleesha\nAlexie\nAlexxa\nAleyah\nAlthea\nAmayrani\nAnayely\nAnh\nAnnamaria\nArantxa\nAraseli\nArly\nAshia\nAurelia\nAysha\nBayley\nBrandon\nBreona\nBrigid\nBrina\nCailey\nCailyn\nCaitlan\nCalli\nCarlyn\nCarmina\nCassaundra\nCatharine\nCaylin\nChandra\nChannel\nCharli\nCherise\nCheyann\nChioma\nCianna\nClariza\nClaudette\nCody\nColby\nCristine\nDanelle\nDaniele\nDeanne\nDeidra\nDeija\nDelainey\nDelila\nDestine\nElisabet\nElora\nElysia\nEman\nEmber\nEmili\nEmmanuelle\nErandy\nEstephany\nEvelina\nEvonne\nFlorence\nFrancisco\nGail\nGenessis\nGennesis\nGeorgiana\nGilda\nGuillermina\nHarlee\nHarpreet\nHaydee\nHayleigh\nHayli\nIlianna\nImari\nIndigo\nIsha\nIsobel\nJamaica\nJanaya\nJazlynn\nJeanelle\nJeannine\nJoi\nJorden\nJoscelyn\nJosseline\nKacy\nKady\nKaily\nKanani\nKandice\nKarah\nKarisa\nKarmen\nKarolyn\nKaryssa\nKaterine\nKatheryne\nKathya\nKelcie\nKiarah\nKyara\nKyrah\nLaine\nLeeanna\nLiberty\nLillie\nLilybeth\nLizabeth\nLucina\nLuis\nMadalynn\nMadelyne\nMadina\nMadisson\nMagda\nMagnolia\nMahogany\nMakaylah\nMalorie\nMariko\nMarion\nMaryn\nMatilde\nMelannie\nMichayla\nMoira\nMyriah\nNavdeep\nNaya\nNichelle\nNicholette\nNicholle\nNiya\nNoa\nNya\nOsiris\nPayal\nRaeven\nRaisa\nRavyn\nRebeka\nReem\nRoma\nRoni\nRonnie\nRosana\nRoya\nRyanne\nSafa\nSafia\nSahra\nSalem\nSamone\nSantana\nSawyer\nSee\nShanel\nShanelle\nShaylyn\nSheng\nShirin\nSianna\nSintia\nSol\nSonali\nSue\nTanna\nTarah\nTonya\nTopanga\nTracie\nTristyn\nVarsha\nVera\nVi\nVida\nViviann\nVivica\nYaneth\nYocelin\nYoselyn\nZaire\nAaron\nAbilene\nAditi\nAiram\nAitana\nAleen\nAlexiz\nAleyda\nAlizabeth\nAlonna\nAmada\nAmbria\nAnabella\nAnalia\nAnanda\nAndi\nAneesah\nAngelena\nAnica\nAniyah\nAnkita\nAnnahi\nAnny\nAnusha\nArden\nArlett\nArline\nAsiana\nAsucena\nAsya\nAudrie\nAverie\nAzusena\nBriahna\nBriann\nBriannah\nBrissa\nBritanny\nByanca\nCarlene\nCassey\nCassondra\nCeara\nCesia\nCesilia\nChanell\nChenoa\nClarisse\nCleo\nConnor\nCorie\nCorrie\nDaelyn\nDajanae\nDaniell\nDannielle\nDaysha\nDazhane\nDeann\nDeidre\nDeonna\nDevorah\nDilpreet\nDominic\nDyana\nEbonie\nElianna\nElisia\nEllis\nEloise\nEmery\nEmi\nEmiley\nEmilyann\nEric\nEricca\nErick\nErnestina\nErynn\nEveline\nGaby\nGena\nGenna\nGeorgie\nGwen\nHellen\nHiba\nHolland\nInfinity\nIrais\nIrania\nIrie\nIshani\nIsla\nIvett\nJacob\nJahaira\nJailyn\nJakelin\nJalissa\nJamesha\nJanee\nJaniece\nJannett\nJarely\nJaya\nJayline\nJazzmyn\nJennah\nJerica\nJesika\nJewell\nJiselle\nJohnae\nJohnna\nJulienne\nJuliza\nKadie\nKaelee\nKaeli\nKailani\nKaili\nKala\nKamari\nKami\nKandy\nKarrie\nKasha\nKatana\nKaterin\nKatherin\nKay\nKaylamarie\nKeala\nKeani\nKeiana\nKeilah\nKelsee\nKimberlyn\nKiran\nKirstie\nKiyana\nKomal\nKyah\nKyli\nKyrie\nLatisha\nLee\nLeesa\nLeslee\nLilah\nLisamarie\nLisbet\nLivia\nLizzeth\nLolita\nLyla\nLyndsay\nMagdalene\nMahalia\nMaiya\nMakinzie\nMalak\nMaleny\nMaliyah\nManpreet\nMarcy\nMarialuisa\nMarilin\nMarivi\nMariya\nMaryanne\nMatthew\nMattison\nMayela\nMeghna\nMelani\nMele\nMelodie\nMykayla\nNalani\nNana\nNanci\nNatassja\nNeira\nNeomi\nNikkie\nNou\nPage\nPahola\nParris\nPhoenix\nPhyllis\nPolly\nPriscella\nPrisilla\nRachell\nRafaela\nRebecka\nRemington\nRian\nRichelle\nRiya\nRomina\nRoselia\nRosita\nSadaf\nSamatha\nSapphire\nSavina\nScout\nSeleste\nShaila\nSharai\nShari\nShayda\nShelsea\nSherri\nShruti\nSimranjit\nSoleil\nSonal\nSpecial\nStephenie\nSylvie\nTajah\nTavia\nTawni\nTeanna\nTeri\nTesia\nTeya\nThao\nTierney\nTonia\nTorrie\nTristin\nTuesday\nTyla\nVerenise\nVianna\nViktoria\nViola\nVittoria\nWynne\nYisel\nYoana\nZarina\nZitlali\nAashna\nAbigael\nAbrielle\nAdalia\nAdelle\nAgustina\nAhtziri\nAkira\nAleisha\nAleksandra\nAlessia\nAlexxus\nAlexyss\nAlfa\nAlijah\nAlizae\nAllana\nAlona\nAlyssah\nAmal\nAmberlee\nAnay\nAndreana\nAndriana\nAneesa\nAniya\nAnnabell\nAnneka\nAnnessa\nAnsley\nAolani\nAreana\nAreanna\nArieana\nAris\nArisa\nArlin\nAryn\nAshlin\nAshna\nAubriana\nAudree\nAugust\nAutum\nAviva\nAzalia\nBaby\nBerenis\nBergen\nBethanie\nBetsabe\nBettina\nBonita\nBrett\nBritany\nBritnee\nBritta\nBritteny\nBronte\nBronwyn\nByanka\nCamry\nCandis\nCapri\nCaressa\nCari\nCarisa\nCarlos\nCarole\nCarolena\nCarolynn\nCarrissa\nCasie\nCatera\nCaterina\nCathryn\nCaylie\nCelest\nCesar\nCharis\nChelsi\nChristopher\nChyenne\nCindi\nCitlalic\nCoco\nCorynn\nCosette\nCrisol\nCristy\nCrysta\nCyan\nDallana\nDarline\nDarling\nDarrian\nDeisi\nDelaina\nDelana\nDesirea\nDestanee\nDestynee\nDevine\nDionne\nDorian\nDynasty\nElayne\nElda\nEleana\nElinor\nEllery\nEllisa\nEmerson\nEmmeline\nEsly\nEulalia\nEunique\nEvita\nFatimah\nFayth\nFernando\nGao\nGenoveva\nGiavanna\nGisella\nGreer\nHanah\nHanako\nHanan\nHarlie\nHarmoni\nHeavenly\nHenna\nHennessy\nHortencia\nIna\nInna\nIsaiah\nItaly\nItsel\nItzia\nIyana\nJacelyn\nJacklynn\nJacqlyn\nJacquline\nJaiden\nJalene\nJalynn\nJammie\nJanaye\nJaneen\nJaneli\nJanina\nJasdeep\nJasmeen\nJasmen\nJassmine\nJerrica\nJesselyn\nJesslyn\nJisela\nJoelene\nJohnnie\nJoleen\nJolissa\nJonelle\nJoseph\nJulietta\nJulizza\nKaci\nKaia\nKaira\nKaitlan\nKalea\nKalli\nKarisma\nKarol\nKaroline\nKatlynn\nKattie\nKeily\nKela\nKellianne\nKelsy\nKenny\nKennya\nKerra\nKierstin\nKimberlie\nKimberlin\nKimia\nKindra\nKora\nKrishna\nKrystle\nKyanna\nKyrsten\nLacee\nLaci\nLanai\nLaryssa\nLatrice\nLayne\nLilyanna\nLindy\nLissete\nLisseth\nLivier\nLorna\nLorrie\nLucie\nLuzelena\nLynna\nLynsey\nLynsie\nMadelin\nMadilynn\nMairin\nMaisie\nMakenzi\nMalea\nMali\nManisha\nMargot\nMariadelaluz\nMariaisabel\nMarilee\nMarisabel\nMaritsa\nMarlina\nMarlo\nMarsha\nMarykate\nMarylyn\nMarysa\nMeg\nMercede\nMeriah\nMicheala\nMiguel\nMikaylah\nMikhaila\nMilla\nMinami\nMiryam\nMisa\nMorena\nMyrka\nNadeen\nNajah\nNatividad\nNavneet\nNhu\nNicki\nNicollette\nNohely\nNour\nNuvia\nOdaliz\nOdette\nOrianna\nPaisley\nPassion\nPatsy\nPatty\nPeggy\nPerlita\nPhuong\nPrecilla\nPrescilla\nPricila\nPrisila\nPromise\nQuiana\nRaevyn\nRaychel\nRayne\nReese\nReylene\nRichard\nRisa\nRivka\nRobert\nRory\nRosaisela\nRoseanne\nSabrena\nSchuyler\nSelah\nShaden\nShamari\nSheetal\nShekinah\nShiann\nShyan\nSiara\nSinthia\nSiomara\nSloan\nSolana\nStaphany\nSteffani\nSteffanie\nSteffi\nSterling\nSteven\nSujey\nSuzy\nTaja\nTala\nTaline\nTallulah\nTalya\nTanaya\nTeodora\nTereza\nTesla\nThelma\nTijera\nTorie\nTory\nTriana\nVanity\nViana\nVina\nVivianne\nWanda\nXitlalic\nYajayra\nYalitza\nYana\nYanelly\nYarelin\nYazmeen\nYnez\nYomira\nZaina\nZakiya\nZehra\nZenab\nZenia\nZina\nAaliya\nAdi\nAdreana\nAgnes\nAhlam\nAidan\nAiko\nAilin\nAinsley\nAireana\nAireanna\nAjia\nAkemi\nAlaya\nAlbany\nAleesa\nAlesandra\nAlesha\nAlexandrya\nAleya\nAlianna\nAlicea\nAlise\nAlisson\nAlitza\nAlli\nAllisa\nAlmadelia\nAlmarosa\nAlpha\nAlyah\nAlyna\nAlynna\nAlyssamarie\nAlyza\nAmanpreet\nAmaryllis\nAmayrany\nAmberlyn\nAmberlynn\nAmeerah\nAmirah\nAmor\nAmorette\nAmrita\nAnabell\nAnaid\nAnaiya\nAnalyssa\nAndrew\nAndreya\nAndy\nAnela\nAngeli\nAngelia\nAnjanae\nAnjelika\nAnnalicia\nAnneke\nAntionette\nAntonio\nAoife\nApolonia\nAramis\nAranza\nArieanna\nAriyana\nArleene\nArlen\nArpi\nArrianna\nAshlea\nAsiah\nAura\nAvital\nAylene\nAyline\nAzita\nAziza\nAzul\nBaillie\nBaleria\nBanessa\nBayleigh\nBelicia\nBetzy\nBiviana\nBreah\nBreyana\nBrezhane\nBrieana\nBrinda\nBriona\nBritani\nBrookelynn\nBryan\nBryonna\nCaeley\nCailee\nCalista\nCallista\nCally\nCalyn\nCandra\nCarleen\nCelestine\nCerena\nChampagne\nChance\nCharisma\nCharisse\nCharley\nChau\nChrissy\nCidney\nCierrah\nClairissa\nClementina\nCodi\nCoraima\nCourtnee\nCourtnie\nCourtny\nCydnee\nCyndy\nCyntia\nDaesha\nDanessa\nDannia\nDarlin\nDarlyn\nDarya\nDaryl\nDaryn\nDavida\nDaylene\nDaysia\nDee\nDeirdre\nDella\nDelphine\nDena\nDeseray\nDestani\nDezire\nDiandra\nDionna\nDomenique\nDulcemaria\nEbelin\nEduardo\nElliana\nEllison\nEllyse\nEma\nEmalie\nEmelyn\nEmiko\nEmme\nEneida\nErandi\nErina\nEsme\nEvon\nFabiana\nFadumo\nFelisha\nFlorencia\nFreya\nGalen\nGayane\nGenesee\nGenessa\nGenevie\nGlenna\nGuinevere\nHafsa\nHaileigh\nHarper\nHarriet\nHaruka\nHattie\nHavana\nHerlinda\nHien\nIlliana\nIlyana\nIona\nIqra\nIrena\nIridiana\nIrina\nIrlanda\nJadelyn\nJaelin\nJakeline\nJakia\nJalisa\nJalyssa\nJameisha\nJamilet\nJannel\nJannelle\nJannely\nJanneth\nJasmeet\nJason\nJaylyn\nJaymie\nJazmen\nJeanie\nJelani\nJemma\nJenefer\nJenipher\nJensine\nJerika\nJessa\nJezebel\nJi\nJianna\nJissel\nJoanie\nJocelynne\nJohannah\nJohn\nJoie\nJorge\nJovonna\nJubilee\nJulee\nJuli\nJulliana\nJustis\nKacee\nKaija\nKailie\nKaitlynne\nKajal\nKamaria\nKambria\nKana\nKarie\nKarlene\nKatharina\nKatherina\nKathlene\nKathlyn\nKathrin\nKatina\nKatryna\nKatty\nKaycie\nKaydee\nKaylea\nKeaira\nKealani\nKeegan\nKeera\nKeianna\nKeirsten\nKeiry\nKelcee\nKellee\nKennedie\nKerstin\nKeyanna\nKeyona\nKiahna\nKimiko\nKiona\nKionna\nKiya\nKorena\nKristianna\nKristyna\nKylene\nKymberly\nLakeisha\nLamia\nLane\nLania\nLatanya\nLaureen\nLeeanne\nLeidy\nLeigha\nLeilany\nLilianne\nLilith\nLisandra\nLissa\nLissett\nLizzet\nLoraine\nLorren\nLoryn\nLove\nLynnae\nLyssa\nMackinzie\nMadelynne\nMae\nMagen\nMaguadalupe\nMaha\nMahnoor\nMaili\nMaisha\nMakeda\nMaleni\nMalisa\nMalory\nManar\nManon\nManvir\nMaraya\nMarelyn\nMargret\nMariaceleste\nMarisha\nMariza\nMarkisha\nMarli\nMarly\nMarsela\nMaryhelen\nMaryrose\nMecca\nMegha\nMeilani\nMelizza\nMellanie\nMerlyn\nMeztli\nMi\nMidori\nMiesha\nMikenna\nMilca\nMillicent\nMillie\nMinnie\nMirta\nMiyah\nMolina\nMonzerrat\nMuna\nMyah\nMykala\nMykel\nMylene\nNaima\nNairi\nNakayla\nNathali\nNatsumi\nNavjot\nNayana\nNayelly\nNeriah\nNevada\nNicholas\nNickole\nNikol\nNisa\nNitya\nNoreen\nOdessa\nOmunique\nOpal\nOphelia\nPayten\nPebbles\nPenny\nPeri\nRaine\nRamandeep\nRandee\nRaquelin\nReana\nRebekka\nReece\nRegine\nRhyan\nRianne\nRilee\nRiver\nRosalee\nRosenda\nRuchi\nRyleigh\nSabreena\nSahian\nSaleena\nSamia\nSarafina\nSaraya\nSareen\nSarra\nSarrah\nSascha\nSativa\nSavonna\nSean\nSeanna\nSecret\nSeneca\nSerrina\nShabnam\nShaiann\nShaianne\nShalom\nShalyn\nShanell\nShanika\nShantelle\nSharay\nSharee\nShaunna\nShaylah\nShaylin\nShelsey\nSheri\nSheyanne\nShira\nShruthi\nShyenne\nSian\nSiarah\nSilvana\nSinead\nSkylynn\nSmita\nSneha\nSofie\nStephannie\nSugey\nSuhey\nSukhmani\nSuzana\nSyrena\nTabetha\nTahlia\nTahnee\nTaia\nTalisa\nTana\nTeara\nTearra\nTeryn\nThais\nTiaira\nTiffaney\nTopacio\nTorrey\nTova\nTran\nTyana\nUnknown\nVelen\nVernice\nWendi\nWesley\nWhisper\nWinona\nYailyn\nYancy\nYanelli\nYasaman\nYeni\nYennifer\nYer\nYissel\nYmani\nYohana\nYoseline\nYsabella\nYudith\nYulianna\nYumi\nYuritza\nYuritzy\nYvanna\nZakiyyah\nZaynah\nZeinab\nZuleika\nZurisadai\nJessica\nAshley\nEmily\nSamantha\nJennifer\nSarah\nAlexis\nVanessa\nAlyssa\nStephanie\nElizabeth\nJasmine\nHannah\nMaria\nNatalie\nMadison\nVictoria\nKimberly\nTaylor\nMelissa\nBrianna\nAmanda\nDiana\nMichelle\nNicole\nAndrea\nLauren\nMegan\nAlexandra\nRachel\nKayla\nJulia\nLeslie\nDaisy\nEmma\nKatherine\nEsmeralda\nDestiny\nJacqueline\nJocelyn\nDanielle\nRebecca\nSabrina\nAbigail\nCynthia\nAngelica\nCrystal\nAlejandra\nKarina\nSophia\nMonica\nOlivia\nBrenda\nGabriela\nBrittany\nSara\nIsabella\nAmber\nAdriana\nMarissa\nIsabel\nBriana\nSavannah\nSierra\nTiffany\nAlondra\nKaren\nMariah\nSydney\nAllison\nEvelyn\nGuadalupe\nValerie\nChristina\nLaura\nAna\nCassandra\nAriana\nVeronica\nKaitlyn\nMadeline\nJordan\nAlicia\nAngela\nHaley\nAmy\nGrace\nErika\nJasmin\nNancy\nMorgan\nAnna\nBrooke\nKarla\nGiselle\nKelly\nBreanna\nClaire\nGabrielle\nChloe\nYesenia\nMiranda\nDaniela\nJenna\nCourtney\nPriscilla\nJazmin\nAlexa\nBianca\nAlexandria\nMaya\nHailey\nMary\nMelanie\nErica\nKatelyn\nMia\nValeria\nDesiree\nSandra\nCindy\nErin\nShelby\nGabriella\nBailey\nCheyenne\nRosa\nRuby\nSelena\nClaudia\nPaige\nCeleste\nMonique\nPatricia\nJamie\nSofia\nWendy\nCatherine\nDenise\nMikayla\nKylie\nArianna\nKaylee\nJoanna\nKatie\nApril\nMayra\nAudrey\nKelsey\nAngelina\nCaitlin\nSerena\nDominique\nLiliana\nMackenzie\nChristine\nChelsea\nHeather\nShannon\nPaola\nTatiana\nJade\nJazmine\nMichaela\nCarolina\nJulissa\nZoe\nMakayla\nCassidy\nCecilia\nFaith\nKassandra\nKathryn\nCaroline\nJulie\nVivian\nNatalia\nGenesis\nMariana\nSummer\nJanet\nAutumn\nNaomi\nKristen\nElena\nMarisol\nLily\nAriel\nLindsey\nMarina\nAngel\nCarmen\nCristina\nViviana\nLeah\nIsabelle\nClarissa\nBrittney\nGloria\nLisa\nLizbeth\nRaquel\nMolly\nLorena\nLesley\nKaitlin\nCaitlyn\nKiana\nAileen\nJenny\nJuliana\nTeresa\nKatrina\nAdrianna\nJillian\nKristina\nCamille\nMadeleine\nLinda\nSonia\nNina\nKrystal\nMarisa\nMarlene\nMiriam\nJulianna\nRiley\nLeticia\nKendall\nRebekah\nCameron\nHayley\nYvette\nHanna\nAlison\nNatasha\nPerla\nKathleen\nMargaret\nAlissa\nAlma\nIrene\nMadelyn\nNathalie\nMartha\nAlexia\nMaritza\nLesly\nNoemi\nSophie\nAlana\nBethany\nCarla\nCarly\nCristal\nMeghan\nAllyson\nMckenna\nPaulina\nLizette\nAnahi\nJordyn\nKyra\nRuth\nLuz\nLillian\nTania\nAlina\nDelaney\nMaribel\nMarilyn\nSharon\nAmelia\nKate\nTara\nHolly\nCasey\nMargarita\nAraceli\nAngie\nLydia\nMelody\nHope\nHelen\nIris\nJada\nArlene\nEsther\nGianna\nLindsay\nMariela\nAnnie\nKendra\nRose\nSusana\nDeanna\nFatima\nKiara\nYasmin\nDana\nGisselle\nBlanca\nEdith\nGraciela\nJustine\nBeatriz\nNadia\nRocio\nCarina\nSarai\nEva\nCeline\nJanelle\nMikaela\nAlexus\nDaniella\nReyna\nNataly\nJocelyne\nMarie\nPamela\nJosephine\nJudith\nBerenice\nCierra\nHeidi\nIvy\nMireya\nSkylar\nElise\nJacquelyn\nSavanna\nAnastasia\nBryanna\nKira\nRenee\nItzel\nKatelynn\nAva\nBrandy\nDulce\nSandy\nEmely\nKylee\nRachael\nSalma\nTiana\nKathy\nAthena\nCharlotte\nGina\nSienna\nEileen\nMercedes\nAshlee\nBridget\nLeilani\nSusan\nTanya\nDestinee\nJeanette\nYasmine\nCarissa\nElisa\nStephany\nKyla\nAlice\nAshlyn\nDeja\nKristin\nMckenzie\nTalia\nYadira\nAsia\nJane\nKirsten\nSidney\nStacy\nTessa\nAaliyah\nAvery\nImani\nNayeli\nPrecious\nFabiola\nDarlene\nGillian\nKailey\nKara\nMakenna\nClara\nElaine\nKennedy\nLarissa\nAimee\nJohanna\nAngelique\nJaqueline\nTatyana\nYessenia\nCarolyn\nRaven\nTheresa\nFrances\nFrancesca\nSkyler\nTyler\nJuliet\nLucia\nAliyah\nEstrella\nKarissa\nNoelle\nYvonne\nCamryn\nSilvia\nRebeca\nAnissa\nRosemary\nKristine\nSasha\nAnnika\nDiane\nBrenna\nSadie\nAmerica\nBreana\nDalia\nFernanda\nHeaven\nLizeth\nSylvia\nGenevieve\nLucy\nMaricela\nAylin\nCiara\nNorma\nFelicia\nSimone\nVirginia\nAubrey\nJessie\nJulianne\nMelina\nCasandra\nCheyanne\nOdalis\nPaula\nDiamond\nElla\nFiona\nJuliette\nLauryn\nMaggie\nMicaela\nMya\nAurora\nBelen\nNikki\nBaylee\nLeila\nLourdes\nJailene\nRegina\nAntonia\nDakota\nElisabeth\nEsperanza\nLacey\nMalia\nYolanda\nJanette\nMeagan\nStacey\nTatum\nTina\nAnnette\nRoxana\nTabitha\nAnita\nAnne\nCelia\nDamaris\nNia\nOdalys\nWhitney\nDeborah\nKrista\nTori\nJaclyn\nMallory\nPeyton\nTamara\nTaryn\nAbril\nArielle\nBritney\nLena\nAdrienne\nCatalina\nEliza\nGeorgia\nHunter\nTayler\nHaylee\nJenifer\nKasey\nBarbara\nDianna\nJoyce\nSavanah\nYajaira\nAdilene\nCamila\nIliana\nIvette\nLucero\nNadine\nVanesa\nXochitl\nAlisha\nDonna\nEllen\nIsela\nJanice\nKaitlynn\nKenia\nLisette\nSheila\nArely\nCelina\nEliana\nEmilee\nJoselyn\nKristy\nGiovanna\nGriselda\nKasandra\nNora\nReina\nAnais\nConnie\nDenisse\nEden\nIrma\nJazlyn\nJewel\nLiana\nViridiana\nAlize\nBrooklyn\nCorina\nGladys\nMaia\nParis\nPayton\nShirley\nAlanna\nAlisa\nBrandi\nEbony\nEricka\nHana\nKassidy\nKaylie\nMagdalena\nNichole\nNicolette\nRoxanne\nSarina\nThalia\nTracy\nCara\nKaila\nKaylin\nRita\nSarahi\nShayla\nAlena\nCiera\nEstefany\nHelena\nMarcela\nMelinda\nAlly\nCarol\nGeorgina\nJoy\nMadalyn\nPhoebe\nRachelle\nRosario\nSerina\nToni\nAlyson\nAshleigh\nEunice\nGrecia\nIngrid\nKellie\nLilian\nSelina\nAshlynn\nChristy\nSkye\nDelilah\nEvelin\nJackeline\nJaylene\nKailee\nKatarina\nKenya\nRyan\nSally\nTrinity\nAracely\nEstefania\nIsis\nJanessa\nLeanna\nMarisela\nRhiannon\nRobyn\nYulissa\nEleanor\nFrida\nHailee\nLaurel\nMacy\nTiara\nYazmin\nFlor\nJanae\nMakenzie\nPaloma\nRylee\nViolet\nAbby\nCassie\nDaphne\nIvana\nJuana\nJuanita\nMaira\nPauline\nTammy\nAnika\nAntoinette\nDevon\nEmilie\nLissette\nTianna\nKatharine\nKatlyn\nMarianna\nRubi\nAllie\nColleen\nJoanne\nLilly\nMeredith\nTia\nAngeles\nChelsey\nEllie\nHazel\nIvonne\nTyra\nYasmeen\nAnabel\nAyanna\nBeatrice\nBonnie\nCharlene\nJoana\nKelsie\nMariam\nMaryjane\nMoriah\nNathaly\nTamia\nUnique\nAnn\nAshly\nCandice\nDestiney\nJackelyn\nKatia\nLilia\nMaddison\nMarcella\nMarlen\nMirella\nNatali\nReanna\nBetsy\nCandace\nDesirae\nHeidy\nJazmyn\nKayleigh\nLea\nPriscila\nScarlett\nValentina\nZoey\nAisha\nBeverly\nBrianne\nBridgette\nCalista\nCarley\nCathy\nClare\nDelia\nDevyn\nElsa\nMadelynn\nRobin\nSimran\nTess\nYareli\nAdela\nAlessandra\nAnnabelle\nAstrid\nDevin\nElissa\nElyssa\nKiley\nLayla\nLuisa\nMichele\nStefanie\nAnya\nChristian\nJulisa\nLina\nMelisa\nStella\nVicky\nBailee\nCallie\nCorinne\nEmilia\nEstefani\nHillary\nJacklyn\nJosefina\nJoseline\nKelli\nLeanne\nLidia\nLupita\nNikita\nShania\nYulisa\nBertha\nDania\nJudy\nKayley\nMara\nMyra\nShayna\nStar\nYessica\nAlysa\nAreli\nCinthia\nJosie\nKianna\nLogan\nMadisyn\nRaylene\nSerenity\nShyanne\nTea\nCarrie\nChristiana\nDanica\nDayana\nJoelle\nKamryn\nLexi\nMckayla\nRosie\nSonya\nZaira\nEstela\nJoceline\nKaela\nMagaly\nMisty\nSelene\nYahaira\nEssence\nIlene\nJustice\nKeila\nKiera\nLilliana\nMakena\nOlga\nSage\nStarr\nTatianna\nAleena\nAzucena\nChanel\nCora\nCorrina\nDemi\nEmerald\nGema\nGissel\nJohana\nKarly\nKaterina\nMadisen\nMicah\nPearl\nRosalinda\nSiena\nStevie\nAlaina\nBernadette\nCarlie\nDarian\nElaina\nJennie\nJessenia\nKeely\nLia\nMaricruz\nMarlena\nMontana\nRochelle\nRylie\nSavana\nSuzanne\nTiffani\nAlayna\nBelinda\nCayla\nCecelia\nChrista\nElvira\nJanely\nKaley\nKristal\nLexie\nLyric\nNeida\nRyann\nTaya\nTierra\nAlexandrea\nAnai\nAyleen\nBrisa\nChantal\nElvia\nIleana\nKacey\nKristi\nMadyson\nMilan\nNoel\nRegan\nReilly\nSydnee\nVivianna\nAmari\nAnnalise\nAnnamarie\nAryana\nCaitlynn\nClarisa\nDaria\nHilda\nIzabella\nJessika\nKaylyn\nLila\nLynette\nRoxanna\nShea\nAleah\nAnnabel\nAubree\nBryana\nGeneva\nHarley\nHaylie\nIsabela\nJanine\nKarli\nKarlie\nKaty\nKierra\nLeann\nLexus\nLisbeth\nMonet\nYoselin\nZaria\nAdrian\nAllyssa\nBernice\nCambria\nChandler\nDanika\nDawn\nFranchesca\nGisel\nGisell\nIlse\nJacquelin\nKacie\nKarlee\nKelsi\nMarley\nMaxine\nMonika\nNaidelyn\nReagan\nSaira\nXiomara\nYaritza\nAddison\nAngeline\nBrooklynn\nCamilla\nCandy\nDahlia\nDavina\nDoris\nEvangelina\nGracie\nHaleigh\nJaime\nJaneth\nJesenia\nKailyn\nKali\nKiersten\nLorraine\nMaegan\nMagali\nMindy\nNallely\nRayna\nShaina\nValery\nAbbey\nAlysia\nAshlie\nAyana\nCitlali\nCitlalli\nDora\nDorothy\nElisha\nElyse\nGeraldine\nGisela\nHallie\nHarmony\nImelda\nJeannette\nKaylah\nMacie\nMartina\nQuinn\nRandi\nSky\nSusanna\nVerenice\nWillow\nAnnalisa\nAryanna\nAyla\nDolores\nGwendolyn\nJesse\nJoann\nKaelyn\nKlarissa\nLizet\nLoren\nNayely\nNelly\nPrincess\nSuzette\nAiyana\nAlia\nAllegra\nAmira\nAnisa\nBella\nChristie\nConsuelo\nDestini\nDianne\nDylan\nJana\nJazmyne\nJocelynn\nKayleen\nLara\nMonserrat\nShreya\nXena\nYesica\nAdeline\nAmina\nBetty\nDejah\nElsie\nIreland\nJaquelyn\nJayda\nJayla\nJesus\nJocelin\nLeeann\nMari\nMariel\nMaryam\nMina\nMira\nMirna\nPilar\nShawna\nShyann\nSkyla\nTrisha\nAdelina\nAlex\nAmani\nCali\nCarli\nChantel\nDrew\nEve\nFaviola\nFelicity\nGalilea\nHalle\nIridian\nJackie\nJanell\nJustina\nKari\nKatya\nKayli\nKaylynn\nKenna\nMai\nMariaguadalupe\nNoemy\nRosaisela\nVianey\nVioleta\nYaneli\nAlexi\nAliya\nAmalia\nAnjelica\nAriella\nAsha\nBria\nBrielle\nChelsie\nChyna\nDina\nFrancine\nIndia\nIvanna\nJulieta\nJune\nKaleigh\nKaya\nKaycee\nKelley\nKristie\nLana\nLori\nMaura\nMichael\nNatalya\nPenelope\nPresley\nRaina\nRowan\nSabina\nSamira\nStefani\nSydnie\nVannesa\nZulema\nAlycia\nAlysha\nAmara\nAnamaria\nAnnelise\nAnyssa\nAriadna\nAshton\nBreann\nBrittani\nBrook\nCoral\nDarby\nDeisy\nDennise\nDomonique\nFrancisca\nGemma\nGinger\nInez\nIsabell\nJena\nJeniffer\nJolene\nJovanna\nKeyla\nKristiana\nLesli\nLilianna\nLondon\nMarlyn\nMilagros\nMiracle\nMirian\nRene\nRhianna\nShivani\nYanet\nYanira\nAida\nAlexys\nAni\nAnnmarie\nAria\nArleen\nAshanti\nBaylie\nBianka\nBibiana\nBobbi\nBrandie\nBrynn\nCydney\nDalila\nDebbie\nGwyneth\nJacinda\nJaelyn\nJasmyn\nJaylin\nJoan\nJoselin\nJuliann\nKarolina\nKathia\nKorina\nKyleigh\nMadilyn\nMariaelena\nMarielena\nMercedez\nMyah\nNeha\nNereida\nOriana\nRosemarie\nSamara\nSheridan\nStefany\nYarely\nAliza\nAlyse\nAnalisa\nAnel\nAnnabella\nBillie\nCailey\nCarlee\nChiara\nCinthya\nDaijah\nDanae\nDarcy\nDayna\nDesire\nElva\nEryn\nFrancis\nIsamar\nJaquelin\nJennyfer\nKaytlin\nLianna\nLuna\nMaiya\nMakaila\nMarielle\nMarta\nMaureen\nMeaghan\nMyranda\nNathalia\nPriya\nSahara\nSalina\nSherry\nShianne\nSoledad\nSusie\nWinnie\nXochilt\nAide\nAilyn\nAmaya\nAnayeli\nAnnemarie\nArlyn\nAspen\nBreonna\nBrianda\nCarson\nCelest\nCharity\nChase\nCherish\nChina\nCitlaly\nDaija\nDestinie\nGissell\nGizelle\nHayden\nJayleen\nJesica\nJose\nKatheryn\nKaylen\nKori\nKourtney\nLaila\nLilibeth\nLisset\nLyndsey\nLynn\nMaeve\nMaricarmen\nMarin\nMariyah\nMikala\nMitzi\nMiya\nMollie\nNoor\nOfelia\nPriyanka\nSana\nShelly\nSulema\nSunny\nTehya\nAja\nAnisha\nAshely\nCameryn\nCheryl\nCori\nDestany\nEmani\nFrankie\nGladis\nGlenda\nHaydee\nHilary\nJaden\nJaiden\nJenelle\nJodi\nJosselyn\nKalyn\nKarin\nKatalina\nKatelin\nKatlynn\nKaylene\nKendal\nKeren\nLeslye\nLiberty\nLinnea\nMacey\nMarianne\nMaricella\nMarla\nMarleen\nMaryann\nMelia\nNyla\nRamona\nRhea\nSahar\nSydni\nYanely\nYazmine\nAda\nAgnes\nAllissa\nAmie\nAnabelle\nAngelic\nAngelita\nBecky\nBreanne\nBreeana\nBrigitte\nBryn\nChrystal\nDajah\nDaniel\nDarla\nDeyanira\nElexis\nEstephanie\nGiana\nJaida\nJanel\nJaycee\nJenae\nJill\nJodie\nJoslyn\nJourney\nJovana\nKai\nKailani\nKalie\nKimberley\nKirstin\nLeonela\nLili\nLouisa\nMaile\nMalina\nMaranda\nMarian\nMarjorie\nMelany\nMinerva\nPricilla\nRaegan\nRayven\nRianna\nRosalyn\nSaray\nShaelyn\nShanna\nShauna\nSheyla\nStephania\nTamera\nTiffanie\nZoie\nAcacia\nAdrianne\nAlexxis\nAlyssia\nAngelika\nArlette\nAya\nBelle\nCecily\nChasity\nChyanne\nCiarra\nCienna\nDeana\nDelanie\nElle\nEloisa\nFarrah\nIlana\nJamila\nJanelly\nJanie\nJean\nJiselle\nKameron\nKeilani\nKim\nLillie\nLiza\nLizbet\nLizett\nMabel\nMadelyne\nMaisie\nMakala\nMonae\nMontserrat\nNeyda\nNicolle\nNoelani\nRaelene\nRosalia\nRyanne\nSammantha\nSarena\nShae\nSirena\nSoraya\nTanisha\nTeagan\nTerry\nValarie\nVenus\nVienna\nWinter\nYelitza\nYuliana\nAislinn\nAlani\nAlexander\nAmairani\nAmaris\nAnahy\nAnthony\nAubrie\nAudra\nBreeanna\nConstance\nCortney\nDallas\nDebra\nDivya\nEdna\nGia\nGianni\nIman\nKayle\nKeana\nKeira\nKinsey\nKristian\nMatilda\nMikaila\nNadya\nNubia\nParker\nRacquel\nRena\nRosaura\nSade\nSayra\nSequoia\nSerene\nShelbi\nShelley\nSocorro\nStacie\nSuzanna\nVannessa\nYenifer\nYisel\nZaida\nAime\nAlexsis\nAli\nAmbar\nAmethyst\nAnaya\nAnjali\nArline\nAvalon\nBlair\nBryce\nChristen\nChristopher\nChynna\nColette\nDebora\nDejanae\nElida\nErykah\nEster\nGeena\nIvory\nJael\nJahaira\nJanett\nJanis\nJanna\nJasmeen\nJayme\nJayna\nJazzmine\nJeanine\nJessi\nJoey\nJolie\nJordin\nKalea\nKenzie\nKyle\nLeandra\nLessly\nLilyana\nMackenna\nMaite\nMarbella\nMerissa\nMona\nNaomy\nNellie\nNydia\nOctavia\nRaelyn\nRayleen\nRebeka\nRosio\nSariah\nSelah\nShana\nShantel\nShaylee\nSiera\nTaliyah\nTerra\nVania\nVenessa\nVera\nVivica\nVivien\nYecenia\nZayra\nAbbie\nAbbigail\nAdina\nAhtziri\nAlannah\nAnalicia\nAnay\nAndie\nAriadne\nArianne\nBianey\nBobbie\nBrieanna\nBrittanie\nCatrina\nCaylin\nChandra\nChanelle\nCiana\nCorrine\nDaisey\nDanna\nDesteny\nEleni\nElexus\nEvette\nFallon\nFaye\nFrancia\nGisele\nIdalis\nInes\nJackelin\nJailyn\nJaimie\nJasleen\nJayline\nJazzmin\nJeannie\nJoselyne\nKaia\nKailah\nKalani\nKarely\nKeeley\nKerry\nKimberlee\nLani\nLeia\nLluvia\nLucille\nMadelaine\nMadelin\nMakaela\nMandy\nMargaux\nMarilin\nMay\nMayte\nMeliza\nMiah\nMika\nNalani\nNanci\nNayelli\nNoa\nPetra\nQuiana\nScarlet\nShelbie\nShira\nSonja\nSpencer\nSymone\nTabatha\nTracey\nTrina\nTristan\nTristin\nTyanna\nViktoria\nAditi\nAlanis\nAlejandro\nAlexyss\nAlisia\nAmi\nAnalise\nAndrew\nAndria\nAnneliese\nAriane\nAryn\nAshli\nAzalea\nBritany\nBrittnee\nBrittni\nCailyn\nCelena\nChelsy\nChristal\nClarice\nDanyelle\nDara\nDayanna\nDevan\nDeysi\nDominque\nDyana\nEboni\nElsy\nEmmalee\nFarah\nGreta\nGretchen\nGrisel\nHanah\nHaven\nIvon\nIzabel\nJanay\nJasmyne\nJayden\nJaylynn\nJaymie\nJeanelle\nJimena\nJulian\nKaiya\nKarisma\nKarley\nKelsy\nKeri\nKimberlyn\nKiran\nKomal\nKrysta\nLacie\nLysette\nMarion\nMicayla\nMichayla\nMickayla\nMildred\nMimi\nNaya\nNereyda\nNiki\nPatience\nPhoenix\nPiper\nRavyn\nRenae\nRenata\nRikki\nRiya\nRomina\nRosalie\nSamar\nShanice\nSierrah\nSommer\nStephani\nSunshine\nTerri\nTreasure\nTyana\nValencia\nXenia\nYaquelin\nYoseline\nYuri\nZahra\nZena\nAbigayle\nAidan\nAkira\nAlea\nAlejandrina\nAlesha\nAlise\nAllysa\nAmrit\nAnamarie\nAndi\nAngelia\nAnnalee\nArcelia\nArriana\nAundrea\nAustin\nAyesha\nBridgett\nBrigette\nBrionna\nBriseida\nBronte\nCallista\nCatarina\nCharisma\nCielo\nCorey\nCorinna\nDeserie\nDestanie\nElianna\nElicia\nEloise\nElora\nEmmeline\nEryka\nEstella\nEugenia\nFanny\nGabriel\nGurleen\nHadley\nHalie\nHennessy\nIlianna\nJaileen\nJalyn\nJaslyn\nJayde\nJoscelyn\nJuan\nKaeli\nKaili\nKatherin\nKathya\nKelcie\nKemberly\nKennedi\nKeyana\nKia\nKimberli\nKristyn\nKyara\nLee\nLeena\nLeigh\nLexis\nLindy\nLiz\nLucie\nLuzmaria\nMarilynn\nMaritsa\nMarlee\nMarrissa\nMele\nMercy\nMichela\nMila\nMilena\nMyla\nNohely\nOralia\nPooja\nPricila\nRaeann\nRayann\nRosalva\nRosita\nSaige\nSedona\nShannen\nShasta\nShaye\nShyla\nSinai\nSol\nSuleima\nTaelor\nTalya\nTasia\nTatiyana\nTeresita\nThania\nThea\nTiarra\nTristen\nVanity\nVicki\nVivienne\nXitlaly\nYamilex\nYuridia\nZainab\nZenaida\nAbrianna\nAlexsandra\nAlora\nAmal\nAnessa\nAnia\nAniyah\nAnnel\nAriah\nAriela\nArmani\nAshleymarie\nAurelia\nBailie\nBerenise\nBerlin\nBethanie\nBiridiana\nBree\nBrittny\nCailin\nCaleigh\nCamden\nCaren\nCaylee\nCelene\nCesia\nCharlie\nClaudine\nDalilah\nDanya\nDaysi\nDenice\nDorian\nElana\nElia\nElijah\nEllis\nElysia\nEmelia\nEmmanuelle\nEmoni\nEstephany\nEvelynn\nFlorence\nGenessis\nHolland\nIdalia\nIrlanda\nJannet\nJazzlyn\nJessa\nJewell\nJosette\nJourdan\nJubilee\nJulieann\nJulieanne\nJuliza\nKaelynn\nKalei\nKalena\nKalia\nKalynn\nKamila\nKarine\nKasie\nKathrine\nKatlin\nKaytlyn\nKendyl\nKiah\nKrysten\nKrystina\nKyndra\nLaurie\nLeana\nLexy\nLibby\nLiseth\nLorissa\nLyla\nLynda\nMae\nMargo\nMariaisabel\nMariajose\nMariella\nMaryanne\nMelyssa\nMichell\nMirka\nMykayla\nMyriam\nNidia\nNika\nNikole\nNoah\nOcean\nPa\nPatsy\nRebecka\nRemi\nRiana\nRileigh\nRosalba\nRosalina\nRoselyn\nRosy\nRyleigh\nSabine\nSafa\nSamaria\nSantana\nShanelle\nShiann\nSofie\nTala\nTatyanna\nTaylar\nThelma\nVeronika\nVianca\nWendi\nXitlali\nYailin\nYamilet\nYara\nYocelin\nYsabel\nZaire\nAbigale\nAddie\nAdelaide\nAlaysia\nAlba\nAlyna\nAmairany\nAnakaren\nAnaly\nAnanya\nAnastacia\nAnmol\nAnnabell\nArlet\nAudrianna\nAysha\nBanesa\nBeth\nBlake\nBrigid\nBriseyda\nBrittaney\nCarmela\nCeara\nChantelle\nCharis\nCharmaine\nCleo\nConcepcion\nCordelia\nDaisha\nDanessa\nDavid\nDenisha\nDesiray\nElliana\nEmerson\nEmery\nEnedina\nEsmerelda\nEvelia\nGianina\nGiavanna\nGricelda\nHeavenly\nHollie\nJacquelynn\nJadyn\nJaelene\nJai\nJaimee\nJalen\nJannette\nJaya\nJeanie\nJenica\nJessalyn\nJody\nJohnna\nJohnnie\nJonathan\nJoselynn\nJoshua\nKacy\nKalina\nKallie\nKameryn\nKarena\nKaryn\nKaryna\nKelsea\nKhadija\nKiani\nKimia\nKindra\nKyanna\nKylah\nLaisha\nLeigha\nLeonor\nLilah\nLilit\nLizzeth\nLizzette\nLois\nLola\nLouise\nLupe\nLyndsay\nMadalynn\nMakenzi\nMalaysia\nMaleah\nManpreet\nManuela\nMarguerite\nMariya\nMarlin\nMarlina\nMarlo\nMarylou\nMarysol\nMattie\nMayela\nMeg\nMekayla\nMellissa\nMeriah\nMichaella\nNicola\nNisha\nRacheal\nRaelynn\nRain\nRana\nRaya\nRayanna\nReem\nReese\nRio\nRoberta\nSaba\nSadaf\nSamanta\nSarahy\nSawyer\nSheena\nShiloh\nShoshana\nSianna\nSindy\nSiobhan\nSonali\nStarla\nStormy\nSujey\nTarah\nTawny\nTeanna\nTherese\nTricia\nUrsula\nYoana\nYocelyn\nYsabella\nYuliza\nZara\nZoila\nAbagail\nAdamari\nAdele\nAidee\nAleida\nAlexiss\nAlexzandra\nAliana\nAlijah\nAmayrani\nAmberly\nAmrita\nAnalaura\nAndreina\nAndreya\nAnnaliese\nAnnamaria\nAriyana\nArleth\nAshtyn\nAudrie\nBetzaida\nBrandee\nBriahna\nBrieana\nCaprice\nCarmina\nCatelyn\nCharley\nChastity\nCherie\nChyenne\nCianna\nClarisse\nCorissa\nCorrie\nCosette\nCruz\nCyan\nDafne\nDaizy\nDakotah\nDamariz\nDaryn\nDasha\nDasia\nDeandra\nDeena\nDeisi\nDemetria\nDena\nDenae\nDestine\nDestyni\nDevina\nDevynn\nDezirae\nDeziree\nDiandra\nDonielle\nElba\nElina\nEmelyn\nEmilyn\nEvangeline\nFlora\nHailie\nHarriet\nHellen\nHolli\nIsaura\nItati\nJailine\nJakelin\nJaymee\nJazelle\nJazlynn\nJeanna\nJenessa\nJosephina\nJudit\nJulieanna\nKaci\nKaeley\nKaily\nKala\nKalin\nKamari\nKamille\nKati\nKay\nKayce\nKaylan\nKeanna\nKeiana\nKendell\nKerri\nKeyanna\nKhadijah\nKirstie\nKora\nKyndall\nLacy\nLarisa\nLaryssa\nLeeanna\nLeyla\nLillianna\nLilyann\nLisbet\nLiset\nLivia\nLorna\nLoryn\nLuis\nMagda\nMalissa\nMarcia\nMarilu\nMarleni\nMaryah\nMattison\nMichal\nMichel\nMorelia\nMorganne\nMyrna\nNaja\nNathali\nNohemi\nPatrice\nPaulette\nQuincy\nReanne\nRemy\nRian\nRonni\nRosalind\nSalena\nSeleste\nSelma\nSerafina\nShai\nShakira\nShanel\nShawn\nSheyenne\nSilver\nSugey\nTamar\nTayla\nTorrey\nTorri\nTory\nTristyn\nVi\nVianna\nYael\nYoselyn\nYunuen\nZulma\nZuri\nAaron\nAbriana\nAdreanna\nAlexes\nAlexzandria\nAlli\nAlthea\nAlvina\nAmariah\nAmelie\nAminah\nAmirah\nAndriana\nAngella\nAniya\nAntonina\nAnusha\nAraya\nAries\nArika\nAshia\nAudree\nAutum\nAverie\nAysia\nAzaria\nBayley\nBrian\nCaleb\nCalli\nCami\nCarlin\nCarlos\nCarmelita\nCassia\nCelestina\nCera\nCerina\nCesilia\nChayanne\nCheyann\nChristin\nColby\nCristen\nCristy\nCrysta\nDaja\nDani\nEmonie\nErendira\nErynn\nEstefanie\nEvan\nEvony\nFayth\nGaia\nGardenia\nGenevie\nGenna\nGuillermina\nGurpreet\nHaidee\nHalee\nHali\nHalley\nImari\nItalia\nIvett\nIvey\nIyana\nIyanna\nJalynn\nJannelle\nJanneth\nJarely\nJaylen\nJemma\nJenevieve\nJennah\nJensen\nJessyca\nJissel\nJonnie\nJordana\nJordynn\nJulienne\nJulyssa\nJustin\nKaelah\nKailynn\nKaitlan\nKaleena\nKaliah\nKami\nKandice\nKarah\nKarinna\nKaris\nKarol\nKashia\nKeisha\nKiarra\nKirstyn\nKiyomi\nKyana\nLaine\nLianne\nLinette\nLizabeth\nLizzet\nLynnette\nMaci\nMagdalene\nMahogany\nMalaya\nMalea\nMalika\nMaren\nMargot\nMariadejesus\nMarialuisa\nMarika\nMarisabel\nMarkie\nMarlaina\nMarycarmen\nMarycruz\nMaryssa\nMelodie\nMerari\nMicheala\nMidori\nMikah\nMilagro\nMillie\nMinna\nMorgen\nMyia\nMyka\nMykala\nMylene\nNaibe\nNatallie\nNeda\nNeftali\nNely\nNichelle\nNour\nOdaliz\nOlympia\nPrisila\nRae\nRaeanna\nRaeanne\nRaquelle\nRayanne\nReema\nRichelle\nRickie\nRina\nRivka\nRosanna\nRosi\nRubie\nSahana\nSanjana\nScarlette\nSelenia\nSelin\nShaila\nShari\nShawnee\nShruti\nShyanna\nSloane\nSteffany\nSymphony\nTahlia\nTaiya\nTaleen\nTaline\nTamra\nTanner\nTanvi\nTasha\nTayah\nTeah\nTopanga\nTrista\nTyla\nVaneza\nVianney\nVivianne\nXimena\nYaneth\nYuka\nZariah\nZayda\nZhane\nZinnia\nAdelaida\nAdia\nAdria\nAiko\nAilin\nAine\nAjanae\nAlanah\nAlandra\nAlecia\nAlix\nAllana\nAlliyah\nAlyissa\nAlyza\nAmparo\nAnahit\nAnaiz\nAnaliese\nAnaluisa\nAndres\nAneesa\nAnette\nAngelena\nAnnalia\nAntonette\nAranza\nAraseli\nArin\nArissa\nArlyne\nArmine\nAshleynicole\nAsusena\nAugust\nAura\nAvigail\nAyah\nBetsabe\nBrina\nBritni\nBritny\nBrookelyn\nBrooklin\nCaley\nCandelaria\nCarleigh\nCaryn\nCassey\nCassondra\nCatera\nCayley\nCaylie\nCerena\nChanell\nChristianna\nCintia\nClair\nCristian\nCyrena\nCzarina\nDaeja\nDaisia\nDanelle\nDaysy\nDeanne\nDeirdre\nDelila\nDelmy\nDeseree\nDesirea\nDestanee\nDevany\nDinah\nDolly\nDonya\nElexa\nElisabet\nElisia\nEmber\nEmiko\nEvelyne\nEvie\nFabiana\nFelisha\nFrancisco\nGabriele\nGaby\nGeorgette\nGeovanna\nGissele\nGiulia\nGlendy\nGraciella\nHarlee\nHarleen\nHarlie\nHarpreet\nHelene\nHenna\nIbeth\nIda\nIesha\nIleen\nIrena\nIsel\nIsobel\nIxchel\nJacey\nJacob\nJacquelyne\nJaidyn\nJalissa\nJami\nJanaya\nJanee\nJaycie\nJaylah\nJeana\nJeanne\nJennafer\nJennica\nJenniffer\nJerica\nJesseca\nJesslyn\nJessy\nJiana\nJoi\nJoleen\nJoseph\nJosseline\nKacee\nKady\nKaelie\nKaelin\nKailie\nKaira\nKalee\nKandace\nKareena\nKarime\nKarishma\nKarizma\nKarleigh\nKaroline\nKathryne\nKatiana\nKaylea\nKaylei\nKealani\nKeara\nKeianna\nKiely\nKilee\nKirra\nKortney\nLinsey\nLora\nLoretta\nLuci\nLynsey\nMadysen\nMagen\nMalena\nMaliyah\nManal\nMarcy\nMarijane\nMarine\nMarleny\nMaryelizabeth\nMatilde\nMckinley\nMeena\nMelida\nMelonie\nMichala\nMileena\nMilla\nMitzy\nMyriah\nNailah\nNakia\nNatalee\nNatassja\nNatividad\nNeftaly\nNicollette\nNidhi\nNisa\nNithya\nNuvia\nNya\nNyssa\nOceana\nPenny\nPeri\nPolly\nPrisma\nPromise\nQuincey\nRaechel\nRavina\nRebekkah\nRheanna\nRicha\nRilee\nRomy\nRoya\nSable\nSalem\nSamatha\nSamia\nSammi\nSandi\nSapphire\nSavina\nScout\nShadi\nShani\nSharlene\nShay\nShelsea\nSheree\nSherrie\nShireen\nSimona\nSintia\nSuhey\nSuzannah\nTaja\nTajah\nTera\nTommi\nTonya\nUma\nVianka\nVickie\nWynter\nYamileth\nYarelly\nYissel\nZakiya\nZully\nAbigael\nAdamaris\nAdelyn\nAdi\nAdrina\nAerin\nAislynn\nAkilah\nAleen\nAleeza\nAleia\nAlessia\nAlexcia\nAlexie\nAlexius\nAline\nAlona\nAlyssah\nAmberlyn\nAn\nAnabell\nAnabella\nAnalilia\nAnalissa\nAnam\nAneesha\nAnicia\nAnja\nAnjelika\nAnnessa\nAnny\nAnsley\nAntionette\nAparna\nArabella\nArieanna\nArisa\nArly\nArmida\nArwa\nAshna\nAvneet\nAyline\nAzariah\nAzusena\nBahar\nBracha\nBrandon\nBreena\nBrookelynn\nBrynne\nCady\nCamellia\nCammie\nCarrington\nCathleen\nCathryn\nCayleigh\nChardonnay\nCharissa\nCharli\nChaya\nChelsee\nCherise\nCherokee\nCherry\nChristianne\nCitlally\nCloe\nCollette\nCourtnee\nCozette\nCrista\nCristiana\nCristin\nCristine\nCyndy\nDanyel\nDarling\nDarya\nDaryl\nDayanara\nDayja\nDeidre\nDeija\nDejia\nDelayna\nDenis\nDeserae\nDestynie\nDevorah\nDezarae\nDeziray\nDoreen\nEbelin\nEli\nElizabet\nEly\nElyssia\nEmelin\nEmi\nEmmaline\nEmmaly\nEmmely\nEmmy\nEnya\nErandy\nEric\nErick\nErlinda\nErnestina\nEsli\nEsme\nEstelle\nEsthela\nEstrellita\nEvelina\nEzra\nGeorgiana\nGisella\nGiuliana\nGrayson\nHan\nHanan\nHarper\nHattie\nHayleigh\nHayli\nHerlinda\nHosanna\nIndiana\nIndira\nIqra\nIran\nIsaac\nIsha\nIsla\nIsrael\nIssabella\nIzamar\nJacklin\nJamaica\nJames\nJanai\nJanea\nJaskiran\nJaspreet\nJassmine\nJelena\nJenesis\nJenise\nJennessa\nJerrica\nJewelia\nJewels\nJezebel\nJianna\nJizelle\nJodee\nJordann\nJorden\nJoslin\nJournee\nJoycelyn\nJuliane\nJurnee\nKadie\nKaely\nKaleah\nKalista\nKamilah\nKana\nKarisa\nKarma\nKatana\nKatheleen\nKathie\nKatina\nKatja\nKatriana\nKavya\nKaylani\nKaysha\nKaytlynn\nKelcey\nKezia\nKhalia\nKimani\nKimberlie\nKimiko\nKirby\nKitana\nKyrah\nLailani\nLatijera\nLetty\nLeyna\nLilyanna\nLisseth\nLorelei\nLyzette\nMadisson\nMaiah\nMakaylah\nMalka\nMallorie\nMana\nManisha\nMarah\nMariafernanda\nMariann\nMarline\nMarwa\nMarybel\nMaryrose\nMathilda\nMayah\nMaylin\nMedha\nMeera\nMeilani\nMelani\nMelannie\nMelanny\nMellany\nMelony\nMeranda\nMiguel\nMiriah\nMishelle\nMone\nMykel\nMyrka\nNala\nNautica\nNayelly\nNayla\nNelida\nNena\nNhi\nNicholas\nNickole\nNoelia\nNyah\nNylah\nOdessa\nParris\nPayal\nPearla\nPerry\nPhyllis\nPuneet\nRadhika\nRaeleen\nRafaela\nRania\nRayne\nReana\nRhiana\nRicardo\nRima\nRisa\nRobbie\nRoisin\nRoseanna\nRoselynn\nRoshni\nRosicela\nRosisela\nRossy\nRyley\nSabryna\nSanam\nSarita\nSativa\nSean\nSera\nSergio\nShabnam\nShanaya\nShanon\nShantal\nSharai\nSharleen\nSharron\nShayne\nSiara\nSiarra\nSidnee\nSilvana\nSima\nSloan\nSterling\nSunnie\nSusanne\nTai\nTaiz\nTalar\nTamika\nTanaya\nTaytum\nTeaira\nTenaya\nTeri\nThao\nTiani\nTiera\nTraci\nTriana\nTroi\nTylor\nVarsha\nVerenise\nVictor\nVictorya\nVida\nVilma\nWaverly\nWilliam\nYalitza\nYanelli\nYanelly\nYareth\nYasaman\nYer\nYohana\nYomira\nYsabelle\nYvonna\nZamantha\nZitlali\nZitlaly\nZoya\nZuleyma\nAbbygail\nAbilene\nAbygail\nAdamary\nAddyson\nAdelita\nAdora\nAilene\nAishwarya\nAisling\nAjah\nAlauna\nAleeah\nAleeya\nAleigha\nAleja\nAleksandra\nAlessa\nAlexiz\nAlexsa\nAlianna\nAlissia\nAlivia\nAlizae\nAloni\nAlonna\nAlysse\nAmada\nAmanpreet\nAmberlee\nAmbria\nAmbrosia\nAmmy\nAmna\nAmor\nAmorette\nAnah\nAnali\nAnalyssa\nAnanda\nAndreana\nAndreanna\nAngelicamarie\nAngelisa\nAngelyna\nAnh\nAnneka\nAnnisa\nAnnissa\nAoife\nArden\nArian\nArion\nAriyan\nAshlan\nAshlei\nAshlin\nAshlynne\nAsma\nAudriana\nAugusta\nAvani\nAylene\nAzalia\nAzia\nBaileigh\nBaily\nBanessa\nBayleigh\nBayli\nBerta\nBetzy\nBlythe\nBreauna\nBrett\nBriceida\nBriget\nBriona\nBritnee\nBrittnie\nBriyana\nBriza\nBronwyn\nByanca\nByanka\nCadence\nCaila\nCalie\nCammi\nCandis\nCaressa\nCarlene\nCarrigan\nCarrissa\nCassady\nCassaundra\nCelestine\nChana\nChance\nCharlee\nChelsi\nChloee\nChole\nChristi\nCilicia\nClaribel\nClaudette\nClementine\nCorrin\nCydnee\nCypress\nDaina\nDallana\nDamara\nDamiana\nDanisha\nDarien\nDarleen\nDaviana\nDayra\nDaysia\nDejanay\nDejane\nDelana\nDelicia\nDenia\nDer\nDesaree\nDesirey\nDestani\nDeven\nDevine\nDezaray\nDia\nDionna\nDionne\nDixie\nDominic\nDominica\nDyani\nDymond\nEcho\nEdgar\nEduardo\nEkaterina\nEllena\nEma\nEmalie\nEmanuel\nEmeli\nEmelie\nEmelly\nEmiley\nEmili\nEmmily\nEnrique\nErikah\nEveline\nEvonne\nFey\nGabby\nGail\nGayle\nGeanna\nGemini\nGenavie\nGenessa\nGenisis\nGennesis\nGiovana\nGlory\nGreer\nGudelia\nGwen\nHadeel\nHafsa\nHafsah\nHaily\nHania\nHarkiran\nHaruka\nHermelinda\nHeydy\nHolley\nHonesty\nIdalys\nIla\nIndica\nIndigo\nIona\nIone\nIrais\nIsaiah\nItsel\nItzayana\nIveth\nIvie\nIzabelle\nJacelyn\nJaci\nJacie\nJacinta\nJacklynn\nJacy\nJadah\nJae\nJaeda\nJakeline\nJalene\nJaliyah\nJamela\nJamilah\nJanani\nJaney\nJannely\nJasminemarie\nJassmin\nJazmen\nJazzlynn\nJeniece\nJennell\nJennika\nJenyfer\nJeri\nJesika\nJohannah\nJolissa\nJonna\nJordon\nJorge\nJoshlyn\nKaetlyn\nKailen\nKajal\nKalen\nKaliana\nKalissa\nKaliyah\nKalli\nKamara\nKambria\nKarsyn\nKassidi\nKassie\nKaycie\nKaydee\nKazandra\nKeaira\nKeegan\nKeilah\nKelani\nKelci\nKendyll\nKennia\nKenzi\nKerstin\nKevin\nKeyara\nKierstin\nKirandeep\nKitty\nKomalpreet\nKrislyn\nKrystin\nKylea\nKyler\nKyli\nKymberly\nKyndal\nLacee\nLaina\nLaken\nLakia\nLanae\nLanette\nLaney\nLashay\nLatiana\nLatrice\nLaurissa\nLavanya\nLayne\nLeeana\nLeeza\nLeilany\nLeona\nLeora\nLian\nLigia\nLillyana\nLillyanna\nLinh\nLissete\nLiv\nLizzete\nLladira\nLolita\nLoraine\nLoreal\nLucinda\nLulu\nLusine\nLuzelena\nLyliana\nLyndsie\nMacayla\nMacee\nMackenzi\nMadai\nMadaline\nMadelynne\nMagnolia\nMaha\nMaliah\nMandi\nManon\nMaral\nMarcelina\nMarena\nMariaceleste\nMariko\nMarlynn\nMarriah\nMarrisa\nMarsela\nMarsha\nMarya\nMaryellen\nMarysa\nMassiel\nMaycee\nMayda\nMecca\nMeggan\nMeghana\nMegumi\nMehgan\nMekenna\nMekenzie\nMelodee\nMemory\nMerina\nMerlyn\nMikaylah\nMikela\nMikhaila\nMilani\nMinnie\nMiryam\nMiyah\nMoira\nMolli\nMonalisa\nMonee\nMontanna\nMyesha\nMykaela\nNada\nNakayla\nNandi\nNanette\nNatasia\nNavneet\nNaydelin\nNazareth\nNeelam\nNeena\nNeomi\nNiah\nNilah\nNoely\nNorah\nNoreen\nNova\nNuri\nOksana\nOrion\nOscar\nOtilia\nPahoua\nPaisley\nParadise\nParisa\nPassion\nPeggy\nPersephone\nPolina\nPrisilla\nQuetzalli\nQuin\nRawan\nRaylena\nRaymond\nRebeckah\nRebekka\nReena\nRemington\nRhonda\nRhyan\nRicki\nRika\nRobbi\nRona\nRoni\nRory\nRosaicela\nRosaysela\nRoslyn\nRubina\nRyanna\nSacha\nSachi\nSahira\nSantina\nSareena\nSela\nSereena\nSerrena\nShaden\nShaela\nShala\nShane\nShaniah\nShaniya\nShannan\nShavon\nShawntel\nSheri\nSherlyn\nSheryl\nShian\nShiori\nSian\nSidra\nSinthia\nSolana\nSoleil\nSona\nSonora\nStacia\nSteffi\nStephanny\nSuleyma\nSupriya\nSusy\nSyann\nSynthia\nTaia\nTais\nTalea\nTalisa\nTami\nTana\nTannia\nTavia\nTegan\nTenia\nTeya\nThais\nTheodora\nTiare\nTionna\nTiyana\nTobi\nTomi\nTram\nVan\nVelvet\nVenecia\nVenezia\nVy\nXochil\nYailyn\nYannely\nYareni\nYoanna\nYovana\nYvanna\nZarahi\nZari\nZariya\nZayna\nZaynab\nZion\nZoee\nZoha\nZohra\nZuleika\nEmily\nSamantha\nJennifer\nAshley\nJessica\nAlyssa\nAlexis\nSarah\nElizabeth\nVanessa\nStephanie\nHannah\nJasmine\nNatalie\nMaria\nVictoria\nLauren\nMadison\nBrianna\nKimberly\nAndrea\nMichelle\nMelissa\nNicole\nTaylor\nAmanda\nLeslie\nJulia\nKayla\nMegan\nAlexandra\nDiana\nDestiny\nJacqueline\nRachel\nEmma\nKatherine\nDaisy\nSophia\nIsabella\nOlivia\nDanielle\nJocelyn\nAbigail\nKarina\nGrace\nIsabel\nAngelica\nSavannah\nRebecca\nGabriela\nSydney\nAlejandra\nAngela\nBrenda\nDaniela\nEsmeralda\nCrystal\nCynthia\nMarissa\nAlondra\nSabrina\nSierra\nSara\nBriana\nKaren\nEvelyn\nAdriana\nBrittany\nAmber\nValerie\nVeronica\nMariah\nChristina\nAriana\nGiselle\nKaitlyn\nAllison\nCassandra\nGuadalupe\nMonica\nMelanie\nAnna\nTiffany\nAna\nAmy\nLaura\nChloe\nKarla\nMorgan\nHaley\nBrooke\nAlexa\nKelly\nClaire\nHailey\nAlicia\nJordan\nYesenia\nBreanna\nMiranda\nJazmin\nJenna\nNancy\nPriscilla\nMia\nJasmin\nMaya\nSofia\nMary\nBianca\nCindy\nFaith\nCatherine\nKatelyn\nErika\nKiara\nMadeline\nGabrielle\nAudrey\nGabriella\nPaola\nCourtney\nErica\nLiliana\nValeria\nKatie\nSandra\nZoe\nAlexandria\nKaylee\nRuby\nDesiree\nArianna\nCheyenne\nAngelina\nSerena\nMikayla\nJoanna\nGenesis\nKylie\nVivian\nErin\nBailey\nCeleste\nWendy\nClaudia\nCassidy\nShelby\nDenise\nMackenzie\nViviana\nCarolina\nMakayla\nCaitlin\nPaige\nJade\nLizbeth\nMonique\nElena\nApril\nJazmine\nKassandra\nBrittney\nSelena\nAngel\nCaroline\nKathryn\nNaomi\nJamie\nNatalia\nRosa\nJulie\nPatricia\nJillian\nLily\nMariana\nTatiana\nChelsea\nSummer\nClarissa\nKelsey\nMayra\nCecilia\nIsabelle\nChristine\nLizette\nMarisol\nJulissa\nLindsey\nJuliana\nCristina\nMarina\nRaquel\nPaulina\nAlexia\nAutumn\nKate\nCamryn\nKristen\nLesly\nHeather\nMolly\nCarmen\nHayley\nTeresa\nRiley\nGisselle\nDominique\nShannon\nLeah\nCameron\nJaqueline\nKiana\nLauryn\nMichaela\nAriel\nJenny\nSophie\nBritney\nLillian\nMckenna\nKatrina\nGloria\nMiriam\nJulianna\nCaitlyn\nRebekah\nFatima\nKathleen\nAileen\nIrene\nAdrianna\nAlma\nJanet\nLesley\nMarlene\nKristina\nMartha\nCamille\nKrystal\nDelaney\nLisa\nBethany\nKaitlin\nHanna\nSkylar\nLinda\nLorena\nNatasha\nTrinity\nEva\nHolly\nNina\nCarla\nEsther\nMargaret\nRose\nCarly\nMadelyn\nAlina\nLizeth\nLuz\nAngie\nNoemi\nPerla\nYasmin\nMadeleine\nLeticia\nAva\nSarai\nArlene\nDaniella\nElise\nGianna\nIris\nLindsay\nNathalie\nRuth\nSonia\nAlison\nAllyson\nEmely\nMeghan\nKendall\nMarisa\nAlissa\nAlana\nCharlotte\nKennedy\nLeilani\nCasey\nCristal\nGina\nJada\nAnahi\nCarina\nHeidi\nKylee\nSavanna\nJordyn\nSusana\nMaritza\nYvette\nJanelle\nAmelia\nMarilyn\nSharon\nAraceli\nDana\nHelen\nHope\nKyra\nMaribel\nTania\nBryanna\nItzel\nBlanca\nEileen\nTara\nAthena\nDeanna\nMikaela\nSalma\nEdith\nLydia\nAnnie\nAvery\nJailene\nLisette\nNayeli\nSkyler\nElisa\nJosephine\nJacquelyn\nMakenna\nCarissa\nJustine\nKendra\nMya\nRachael\nSandy\nGillian\nReyna\nNadia\nBeatriz\nKira\nNataly\nAlice\nPamela\nRenee\nDestinee\nFrancesca\nClara\nFiona\nJudith\nKyla\nMelody\nAshlyn\nCarolyn\nKatelynn\nKathy\nMercedes\nDulce\nLucia\nRocio\nVirginia\nBerenice\nCierra\nBrandy\nEstefania\nAlexus\nMargarita\nYasmine\nAsia\nFernanda\nJocelyne\nLarissa\nCiara\nDeja\nJohanna\nLucy\nSidney\nTiana\nAnastasia\nMalia\nMariela\nRaven\nBrenna\nCeline\nStephany\nSusan\nCitlalli\nMckenzie\nMelina\nAylin\nGraciela\nKarissa\nMarie\nStacy\nFabiola\nAliyah\nOdalys\nAubrey\nTalia\nBridget\nElla\nJessie\nPrecious\nTanya\nYadira\nDiamond\nJanette\nBreana\nGenevieve\nMireya\nNoelia\nAmaya\nAngelique\nElaine\nIvy\nPhoebe\nAmerica\nTessa\nTyler\nFelicity\nGeorgia\nKristin\nPaula\nTori\nAnne\nAurora\nBrooklyn\nJeanette\nJoselyn\nKailey\nShania\nEliana\nKamryn\nKara\nDamaris\nEsperanza\nPeyton\nAaliyah\nAbby\nKirsten\nSylvia\nTabitha\nDarlene\nJoy\nSienna\nSilvia\nTina\nAshlee\nDelilah\nGalilea\nHaylee\nJenifer\nJoyce\nJuliette\nAnnika\nJane\nJuliet\nMaricela\nShayla\nAimee\nDiane\nKassidy\nDalia\nKaila\nKrista\nSadie\nSasha\nEden\nNoelle\nYvonne\nLena\nLourdes\nMaggie\nAnnette\nCasandra\nImani\nOdalis\nRebeca\nRosemary\nTatyana\nViridiana\nAbril\nHeaven\nHelena\nMakenzie\nNorma\nWhitney\nYessenia\nBelen\nElisabeth\nRoxana\nTheresa\nVanesa\nCamila\nCheyanne\nEmilie\nEstrella\nMallory\nMelinda\nArely\nKasandra\nYolanda\nArielle\nCatalina\nNicolette\nStacey\nAnnabelle\nMicaela\nRylee\nAlisa\nEmilia\nIsis\nJewel\nJulianne\nKaitlynn\nSage\nAlyson\nCelia\nChantal\nEliza\nIvette\nLeila\nPayton\nXochitl\nAnissa\nBarbara\nDakota\nKenya\nLilian\nParis\nSavanah\nAdrienne\nBaylee\nJaylene\nMaia\nNora\nRhiannon\nSarahi\nSheila\nTaryn\nHallie\nIngrid\nJaclyn\nKenia\nAlessandra\nDevin\nDonna\nFlor\nKaylie\nReina\nRosario\nSerenity\nStella\nZoey\nDeborah\nFrances\nGladys\nGriselda\nJanice\nKasey\nMagdalena\nPaloma\nTatum\nMarcela\nNadine\nAdilene\nAreli\nElsa\nIsela\nKaylin\nNikki\nTayler\nHunter\nLacey\nMaddison\nAlisha\nBrandi\nDianna\nSimone\nSkye\nTracy\nViolet\nAnita\nFelicia\nHazel\nJoana\nKaela\nLexi\nTia\nAlize\nAntonia\nCallie\nEllen\nEricka\nEvelin\nIrma\nJackeline\nJuana\nLucero\nNia\nRyan\nSarina\nAlena\nAnabel\nAracely\nCandace\nEleanor\nEunice\nJanae\nJoanne\nLilly\nNichole\nYajaira\nDayana\nJosie\nKiley\nKristine\nLidia\nLizet\nSelina\nTiara\nCalista\nDaphne\nLayla\nLuisa\nPriscila\nRoxanne\nThalia\nAnika\nEmilee\nGiovanna\nIvonne\nKellie\nLissette\nMeagan\nRegina\nTamia\nTianna\nBrianne\nChristy\nConnie\nHailee\nJanessa\nKiera\nKristy\nMckayla\nShayna\nAnn\nClare\nEllie\nGeorgina\nGracie\nKianna\nMaryjane\nAnais\nAyanna\nCelina\nGwendolyn\nHalle\nHana\nIliana\nLeanna\nMelisa\nTammy\nTyra\nYazmin\nAlaina\nCora\nCorina\nDesirae\nDevon\nTamara\nAlanna\nCinthia\nGissel\nSally\nScarlett\nSerina\nToni\nXiomara\nYasmeen\nFrida\nJacklyn\nJazlyn\nKailee\nKaley\nKali\nMarianna\nNatali\nAstrid\nBeverly\nCarol\nDrew\nGrecia\nHillary\nMeredith\nRosalinda\nSimran\nChelsey\nGema\nKaelyn\nLilliana\nYahaira\nYulissa\nAzucena\nBernice\nCayla\nCitlali\nDenisse\nKierra\nLupita\nMaira\nRachelle\nRobin\nSelene\nShirley\nAshly\nCiera\nHeidy\nIsabela\nJaden\nKelli\nLisbeth\nMadalyn\nPauline\nRobyn\nSonya\nTess\nUnique\nAnnalise\nCandice\nDavina\nElissa\nJazmyn\nJosefina\nJoseline\nKarly\nKatarina\nKayley\nKelsie\nLaurel\nLea\nLilia\nMariam\nMindy\nAnya\nAshlynn\nBailee\nBreanne\nCara\nDania\nDelia\nDevyn\nEbony\nLeanne\nMakena\nSiena\nTierra\nVicky\nYessica\nBonnie\nBridgette\nCassie\nCoral\nEstefany\nEve\nGemma\nIlene\nIvana\nJaneth\nJuanita\nLina\nMarisela\nMina\nMyra\nNohely\nRaylene\nRegan\nReilly\nRochelle\nAlexandrea\nAnnabel\nAyana\nBella\nBryana\nCarley\nConsuelo\nCorinne\nElyssa\nIndia\nIzabella\nJaquelin\nJulisa\nKatlyn\nKayleigh\nKaylyn\nLexie\nLia\nMonserrat\nNathaly\nOlga\nStar\nStefanie\nValery\nAlly\nAshleigh\nCharlene\nEstefani\nEstela\nJennie\nKailyn\nKatelin\nKatia\nLiana\nLorraine\nMichele\nMoriah\nRylie\nShyanne\nValentina\nYareli\nAisha\nAlia\nAlysa\nAngeles\nBeatrice\nCarlie\nCarrie\nChristiana\nCitlaly\nDahlia\nJaelyn\nJazmyne\nJoceline\nKeely\nMadisen\nMaricruz\nQuinn\nRoxanna\nRyann\nChandler\nColette\nEvangelina\nIleana\nKacey\nKayli\nMacy\nMadyson\nMarcella\nRita\nSydnee\nYoselin\nAdela\nAyleen\nBernadette\nColleen\nElaina\nElvia\nElyse\nGisell\nJacquelin\nJohana\nJudy\nKaty\nMarlen\nNatalee\nPricilla\nReanna\nAmara\nAriella\nAryanna\nAubree\nChanel\nChyna\nDestiney\nDorothy\nHarley\nJackelyn\nJaime\nJayla\nKeila\nKristal\nLynette\nMarley\nMelany\nNathalia\nPearl\nPiper\nRosie\nTrisha\nZaira\nAlexys\nAlysha\nAntoinette\nBertha\nCamilla\nGisel\nHarmony\nJasmyn\nJustice\nKaleigh\nKaylah\nKlarissa\nLara\nLila\nLogan\nLuna\nMaxine\nMollie\nNayely\nRaina\nAddison\nAllie\nAlysia\nAmari\nAria\nAryana\nAsha\nAshlie\nDanica\nJessenia\nJoelle\nKaya\nLeann\nMiracle\nNelly\nSamara\nSavana\nShea\nVerenice\nWillow\nYaritza\nAlex\nAyla\nBelinda\nBetsy\nBrooklynn\nChantel\nCorrina\nDejah\nDina\nHilda\nJayda\nLisset\nLucille\nLyric\nMagaly\nMaryann\nMira\nMona\nMontana\nRubi\nSky\nAbbey\nAliza\nAllyssa\nBianka\nCarli\nChrista\nDestany\nDolores\nElle\nElsie\nFrancis\nHalie\nJayleen\nJesenia\nJesse\nLaila\nLizett\nMadisyn\nMari\nNoel\nNoor\nPrincess\nSheridan\nStarr\nVianey\nXochilt\nAda\nAlexi\nAlycia\nAnai\nAngeline\nBrisa\nCecelia\nChiara\nDalila\nDanika\nDaria\nGia\nKacie\nKarlee\nKarley\nKelley\nMagali\nMarlena\nMaryam\nMisty\nNatalya\nShaina\nTeagan\nAdelina\nAlayna\nAmaris\nAnjali\nAnnemarie\nBobbie\nDebbie\nDesire\nDesteny\nEryn\nEssence\nEstephanie\nGeneva\nHaleigh\nJanine\nJocelynn\nKatharine\nLiset\nLizzette\nMacey\nMandy\nMara\nMirella\nNeha\nShawna\nShivani\nSydnie\nAleah\nAline\nAnaya\nAspen\nCathy\nCatrina\nDanae\nDeisy\nDora\nGiana\nGissell\nIsabell\nJannet\nJayden\nJulieta\nKiersten\nKristi\nLilianna\nLilibeth\nMadelynn\nNikita\nPilar\nSuzanne\nSydni\nAlexsandra\nAliya\nAni\nAnnabella\nAnnalisa\nAnnamarie\nBreann\nBrianda\nCharity\nChristian\nCitlally\nFrancisca\nHaylie\nJackie\nJanelly\nJeniffer\nJustina\nKayleen\nLynn\nMai\nMicah\nSammantha\nVivianna\nAilyn\nAiyana\nAnnmarie\nAnyssa\nBrynn\nCydney\nElvira\nEmerald\nJena\nKalia\nKim\nKristie\nKyara\nMacie\nMika\nMiya\nPriya\nRayna\nRosemarie\nShanice\nSkyla\nVioleta\nXimena\nAcacia\nAnamaria\nAriadna\nBobbi\nCambria\nDestinie\nFrancine\nIreland\nIvanna\nJennyfer\nLana\nMarbella\nMarlyn\nMayte\nMercy\nMontserrat\nNeida\nRosalba\nSayra\nSherry\nShyann\nTiffani\nVerania\nYaneli\nAllegra\nAlyssia\nAnabelle\nAnalisa\nBetty\nBryn\nCali\nCandy\nChasity\nConstance\nFallon\nFranchesca\nGeraldine\nGisela\nGizelle\nJaquelyn\nJoselin\nJovanna\nKatya\nKendal\nKenna\nKyleigh\nLeandra\nMay\nMonet\nNoemy\nParker\nReagan\nRosio\nSabina\nSunshine\nTehya\nTerra\nVannesa\nAndie\nCameryn\nCharisma\nCheryl\nDayna\nDestini\nDoris\nDylan\nFaviola\nHaven\nIzabel\nJailine\nJaimie\nJanel\nJanely\nJolene\nJolie\nKaterina\nKeri\nKimberley\nLesli\nLori\nMalaysia\nMariel\nMartina\nMicayla\nMirian\nNallely\nRiana\nRianna\nRosalie\nSariah\nSequoia\nShauna\nSoledad\nSuzette\nYarely\nYulisa\nAdeline\nAmani\nArleth\nAzalea\nBrielle\nCaleigh\nCallista\nChelsie\nCortney\nDianne\nJana\nJayme\nJeannette\nJesus\nJocelin\nKeana\nKeara\nKeyla\nLiza\nLyndsey\nMadilyn\nMaegan\nMarianne\nMiah\nNicolle\nRandi\nRosalia\nShreya\nStefany\nStevie\nYesica\nYuliana\nAbbie\nAlani\nAleena\nAliah\nAnahy\nAnayeli\nAnisa\nAnisha\nBria\nBriseyda\nChase\nCherish\nCinthya\nDarcy\nGladis\nJaida\nJasmyne\nJaycee\nJazzmin\nJoslyn\nJune\nKalani\nKaylynn\nKeilani\nLexus\nLinnea\nMackenna\nMakaila\nMaranda\nMariafernanda\nMaricarmen\nMyranda\nReese\nSalina\nSamanta\nSheyla\nSusanna\nSymone\nTatianna\nTaya\nXena\nYanet\nZulema\nAja\nAlanis\nAlyse\nAmalia\nAnthony\nCaitlynn\nCielo\nClarisa\nCori\nCorinna\nDaja\nDarby\nDasia\nDayanara\nDivya\nElisha\nElva\nEmmalee\nFlora\nGwyneth\nJessalyn\nJessika\nJose\nKailani\nKameron\nKarli\nKatheryn\nKatlynn\nKennedi\nKenzie\nKirstin\nLeonela\nLexis\nLianna\nLili\nMaile\nMaite\nMariaelena\nMarleen\nMeaghan\nMichael\nMonika\nPenelope\nRhea\nRosalyn\nRosamaria\nSahar\nSaira\nSana\nSonja\nTea\nVianca\nAdamaris\nAidan\nAide\nAlea\nAliana\nAllysa\nAngelita\nAnneliese\nArlyn\nAshanti\nAudra\nBaylie\nBecky\nBlair\nBreeana\nBritany\nCarlee\nChastity\nChristie\nChyanne\nCiarra\nDaija\nDaisha\nDanna\nDelanie\nGretchen\nIman\nJackelin\nJaiden\nJoey\nJourney\nKourtney\nLilyana\nLola\nLoren\nLouise\nLynda\nMaeve\nMaiya\nMarta\nMaureen\nMilan\nMinerva\nMyah\nNubia\nOfelia\nPresley\nPricila\nRyleigh\nSelah\nSinai\nSuzanna\nThania\nTrina\nValarie\nVania\nVannessa\nXitlali\nZainab\nAbigayle\nAdrian\nAida\nAmina\nAmira\nAnessa\nAngelena\nAnjelica\nArleen\nAubrie\nBree\nCarson\nDara\nDariana\nEmani\nInez\nJacey\nJalyn\nJanell\nJanie\nJoan\nJosselyn\nKaia\nKalista\nKerry\nKiarra\nLinette\nLisbet\nLizbet\nLondon\nMariyah\nMimi\nNayelli\nNellie\nNereida\nOriana\nRacquel\nRayleen\nRena\nSarahy\nShana\nTabatha\nYamileth\nYazmine\nZaida\nAdrianne\nAlizae\nAlora\nAnabella\nAnalise\nAniyah\nArlette\nAshton\nBibiana\nBrigitte\nCandelaria\nCathryn\nCharlie\nDallas\nDarian\nDebora\nDenice\nElexis\nElia\nElizabet\nEloisa\nEstelle\nEvangeline\nFarah\nFrankie\nGreta\nHolland\nIridian\nIsha\nJacinda\nJenessa\nJoann\nJuliann\nKaeli\nKai\nKalie\nKalina\nKallie\nKari\nKarin\nKaycee\nKayle\nKeeley\nKelsea\nKimberlee\nKorina\nKylah\nLaney\nLeyla\nLillie\nLiseth\nLyla\nMakaela\nMalina\nMarian\nMarjorie\nMarla\nMelia\nMila\nNautica\nNoelani\nSade\nSahara\nSaray\nShakira\nShyla\nSoraya\nYailin\nYaquelin\nYara\nYisel\nZaria\nAdia\nAlaysia\nAlexander\nAllissa\nAlliyah\nAmbar\nAmie\nAnnelise\nAries\nBeth\nBillie\nBrittani\nBrook\nCailey\nCarolyne\nCelena\nChanelle\nCianna\nDaniel\nDemi\nDennise\nDesiray\nElana\nElicia\nGinger\nGissele\nJadyn\nJayde\nJayline\nJoselyne\nKalea\nKarlie\nKaryna\nKathia\nKaylan\nKaylen\nKinsey\nKristian\nLeonor\nLiberty\nLucinda\nMargot\nMarilu\nMattie\nMercedez\nMichell\nMilagros\nMirna\nNadya\nNalani\nOsiris\nPriyanka\nRowan\nSamira\nShantal\nShay\nShira\nSoleil\nSommer\nStephania\nSunny\nTalya\nTyana\nVianney\nVivien\nVivienne\nWinnie\nWinter\nYecenia\nZahra\nZara\nAbbigail\nAiyanna\nAlannah\nAlba\nAlexxis\nAlise\nAndria\nArabella\nArmani\nAvalon\nBrigette\nCiana\nDanyelle\nDarla\nDeandra\nDeysi\nDomonique\nEdna\nElianna\nEmery\nHailie\nHanah\nHilary\nIsobel\nJamila\nJasleen\nJayne\nJazlynn\nJenelle\nJodie\nJuan\nJulienne\nKailah\nKalei\nKalena\nKalyn\nKarisma\nKeyanna\nMaci\nMakala\nMalissa\nMarcelina\nMarielle\nMaryah\nMitzi\nPooja\nRaelene\nRemy\nRicki\nRiya\nSanjana\nShaelyn\nShani\nShaye\nShelly\nSindy\nSocorro\nSonali\nStarla\nSulema\nSusie\nTatiyana\nTatyanna\nTeresita\nTherese\nTricia\nVienna\nYamilex\nYsabel\nZenaida\nZion\nZoie\nAdina\nAlisia\nAlivia\nAlyna\nAmi\nAnalicia\nAnanya\nAnay\nAndreina\nAniya\nArcelia\nAriah\nBriann\nBrionna\nBriseida\nCailyn\nCathleen\nCecily\nCelest\nDenae\nDorian\nElysia\nEmilly\nErendira\nEvelynn\nEvette\nGaby\nHalley\nHaydee\nHayden\nImelda\nIsamar\nIvon\nJazzmine\nJean\nJeanine\nJenae\nJody\nJosephina\nJoycelyn\nKaci\nKarely\nKarol\nKatlin\nKirstyn\nKori\nLacy\nLeslye\nLitzy\nLivia\nLizzeth\nLluvia\nLois\nLouisa\nMalika\nMarguerite\nMarin\nMarlee\nMelani\nMichela\nMikaila\nMorelia\nMykayla\nMyrka\nNohemi\nNyla\nRamona\nRhianna\nRosaisela\nSaige\nSerene\nShianne\nSirena\nSofie\nTamar\nTayah\nTera\nTristen\nVianna\nVy\nZariah\nAbbygail\nAbrianna\nAdamari\nAditi\nAdreana\nAhtziri\nAislinn\nAlijah\nAlix\nAllana\nAlysse\nAnali\nAnel\nArline\nArrianna\nAshtyn\nAubry\nAurelia\nAya\nBerenise\nBrea\nBryan\nCarmela\nCheyann\nChina\nChristopher\nClarice\nDallana\nDeana\nDeirdre\nDestanie\nEmalee\nEstella\nEstephania\nEster\nGabriel\nGlenda\nHarper\nHayleigh\nIlana\nIsaura\nItalia\nIvory\nJacquelynn\nJahaira\nJanis\nJaylin\nJaylyn\nJayna\nJenniffer\nJimena\nJiselle\nJodi\nJonathan\nJoscelyn\nJulian\nKaelee\nKaelin\nKameryn\nKamille\nKaylene\nKaytlyn\nKendyl\nKeren\nLani\nLee\nLeeann\nLeia\nLuis\nMaliyah\nMatilda\nMaura\nMeg\nMegha\nMeghana\nMelenie\nMichel\nMilena\nMyriam\nNaomy\nNereyda\nNeyda\nPhoenix\nRayanna\nRichelle\nRosalina\nRyley\nSaba\nSable\nSavina\nSaylor\nShae\nShasta\nShiloh\nSiera\nSiobhan\nTawny\nTracey\nVicki\nVivianne\nZena\nZitlali\nZuleyma\nAdreanna\nAisling\nAmairani\nAndreana\nAnnaliese\nAshely\nAvianna\nAyesha\nBiridiana\nBlake\nBreauna\nBreeanna\nBrittaney\nCadence\nCailin\nCelene\nDafne\nDawn\nDeisi\nDevan\nEboni\nEleni\nEllena\nEmi\nEmmy\nGiavanna\nGiuliana\nGricelda\nGwen\nHadley\nHali\nHenna\nHollie\nIlse\nInes\nJailyn\nJanai\nJanay\nJanett\nJaslyn\nJaspreet\nJaymee\nJeanie\nJessy\nJewell\nJosseline\nJuliane\nJulieanna\nKaiya\nKarime\nKaryn\nKatalina\nKatey\nKathrine\nKeanna\nKeiana\nKeira\nKelsi\nKemberly\nKennia\nKimberlyn\nKiran\nKrysta\nKyana\nLeena\nLisseth\nLizabeth\nLizzet\nLucie\nMalaya\nMariya\nMaryanne\nMarysol\nMeena\nMelannie\nMeranda\nMildred\nMirka\nNhi\nNoa\nPetra\nRaeann\nRaegan\nRana\nRania\nReece\nRemington\nRheanna\nRosaura\nRoselyn\nSaida\nSamone\nSelma\nSera\nShanelle\nShaylee\nShelbie\nShelsea\nStacie\nStefani\nTaliah\nTamera\nTasha\nTerri\nTiera\nTonya\nTyanna\nVeronika\nVilma\nXenia\nXochil\nYael\nYamilet\nYanira\nYenifer\nYissel\nYoana\nYocelyn\nYoselyn\nYsabella\nAbygail\nAkira\nAlexsis\nAlianna\nAmada\nAmairany\nAmya\nAnakaren\nAnusha\nAriela\nArriana\nAshli\nAthziri\nAviana\nAvneet\nAyah\nAyline\nAzul\nBailie\nBayleigh\nBayley\nBethanie\nBrandie\nBrittny\nCamden\nCaylee\nCesia\nChantelle\nCharlize\nCherie\nChristen\nCienna\nCintia\nCleopatra\nCruz\nDaijah\nDani\nDanya\nDebra\nDelila\nDevany\nDevina\nDyanna\nElida\nElina\nElora\nEman\nEmerson\nErykah\nEsme\nEugenia\nEvan\nGardenia\nGisele\nIesha\nIrais\nIzabelle\nJaycie\nJeanne\nJennah\nJessa\nJessyca\nJewelia\nJoely\nJoslynn\nKaelynn\nKaili\nKaira\nKalee\nKami\nKarinna\nKarolina\nKaryme\nKatheryne\nKay\nKelsy\nKevin\nKeyana\nKhadija\nKimiko\nKristiana\nKristyn\nKyanna\nLaurie\nLela\nLexy\nLilah\nLilith\nLinsey\nLissete\nLora\nLucina\nMadelin\nMadisson\nMae\nMahogany\nMakaylah\nMalak\nMaleah\nMalena\nMarcia\nMaren\nMargaux\nMariaguadalupe\nMariajose\nMaricella\nMarisabel\nMaryanna\nMecca\nMelena\nMellissa\nMikala\nMiki\nMonae\nNakia\nNavneet\nNaya\nNidia\nNikole\nNoely\nOctavia\nQuiana\nQuincy\nRaelyn\nRaelynn\nReanne\nReem\nRene\nRhyan\nRikki\nRomina\nRoni\nRosalva\nRosy\nSalena\nSarena\nSedona\nShawnee\nShelbi\nShelley\nTala\nTaliyah\nTammie\nTanisha\nTasia\nThais\nTrista\nXitlalli\nZayra\nAbagail\nAbigale\nAgnes\nAilene\nAlanah\nAlayah\nAlecia\nAlejandrina\nAlejandro\nAlexie\nAllisa\nAlona\nAminah\nAmirah\nAnastacia\nAndres\nAndreya\nAngelika\nAnia\nAnnalee\nArden\nArlin\nAshleynicole\nAysia\nBetsaida\nBreonna\nBrynna\nCampbell\nCarleigh\nCarmelita\nCate\nCaylin\nCeara\nCelestina\nCharmaine\nChelsy\nCherokee\nChristal\nChristianna\nChynna\nColby\nCrista\nDajah\nDarien\nDeena\nDejanae\nDestani\nDivine\nDoreen\nDyana\nElayna\nElexus\nElly\nEmelie\nEmelyn\nFatema\nFaye\nFlorence\nGenessis\nGenna\nGeselle\nGianni\nGuillermina\nHeavenly\nHellen\nImari\nItzayana\nJaileen\nJaimee\nJakelin\nJakeline\nJaneen\nJanna\nJeannine\nJennica\nJesica\nJohnna\nJoie\nJosselin\nJovana\nJudit\nJurnee\nKacy\nKalli\nKalysta\nKamari\nKaris\nKatharina\nKaytlin\nKiahna\nKortney\nKyndall\nKyrsten\nLaisha\nLarisa\nLeana\nLindy\nLove\nLuciana\nMabel\nMadysen\nMaisy\nMaliah\nMandi\nManuela\nMarion\nMaritsa\nMarycarmen\nMarylou\nMaryssa\nMattea\nMayela\nMeleny\nMellisa\nMerissa\nMillie\nMoira\nMyla\nMyrna\nNika\nNisha\nPatience\nRachell\nRadhika\nRaeven\nRaya\nRayanne\nRenata\nRia\nRoberta\nRosita\nSadaf\nSamaria\nSarita\nShanna\nSharlene\nShayal\nShruti\nStephani\nSuleyma\nSuzy\nTahlia\nTayla\nTenaya\nTiffanie\nVera\nViktoria\nYanely\nYelitza\nYoseline\nYuliza\nZuleima\nZuri\nAdelaide\nAdele\nAdrina\nAime\nAlaura\nAlexzandria\nAli\nAlixandra\nAlthea\nAmayrani\nAmberly\nAmmy\nAmrit\nAmrita\nAnalia\nAnaliese\nAndrew\nAnette\nAngelic\nAranza\nArian\nAriane\nAubrianna\nAundrea\nAzalia\nBaileigh\nBeatris\nBelem\nBelle\nBianey\nBrieanna\nBriza\nBrookelynn\nCady\nCassia\nCatarina\nCesilia\nCherise\nChevelle\nChristiane\nChrystal\nChyenne\nCloe\nCollette\nConcepcion\nCosette\nDaryn\nDayanna\nDelicia\nDena\nDenisha\nElba\nEloise\nElsy\nEma\nEmelia\nEmmeline\nEmy\nEnya\nErinn\nEstephany\nEvelia\nEzra\nFanny\nGeena\nGenevie\nIrlanda\nIsel\nIxchel\nIyana\nJacquelyne\nJael\nJaelynn\nJahnavi\nJalen\nJalynn\nJannette\nJaylen\nJaylynn\nJeanna\nJeannie\nJenica\nJensen\nJezebel\nJordynn\nJosette\nJourdan\nJulietta\nJustyce\nKaelani\nKailynn\nKana\nKarah\nKarena\nKaroline\nKaryssa\nKasie\nKatherin\nKeaira\nKeziah\nKiely\nKierstin\nKierstyn\nKimora\nKiona\nKrysten\nKyarra\nKylene\nLeyna\nLicet\nLisandra\nLissett\nLiz\nLoretta\nLupe\nMadalynn\nMadelaine\nMadelene\nMadelyne\nMallorie\nManpreet\nMarah\nMariadejesus\nMariaisabel\nMariely\nMarilin\nMarily\nMarilynn\nMarlin\nMarylin\nMason\nMayah\nMaylee\nMellanie\nMelyssa\nMichal\nMilana\nMitzy\nNailah\nNakayla\nNawal\nNayla\nNeftali\nNelida\nNicola\nNoah\nNova\nOksana\nOscar\nPatrice\nPaulette\nPeri\nPortia\nPreciosa\nPrisila\nRacheal\nRaeanna\nRaeanne\nRaena\nRain\nRamya\nRashell\nRavyn\nRian\nRonni\nRosalind\nRosana\nRoya\nRuthie\nRyen\nSalome\nSanam\nSawyer\nScarlet\nSeanna\nSerafina\nSerra\nShalyn\nShannen\nSheri\nShoshana\nSpencer\nStephaine\nSujey\nSuzana\nTaelor\nTavia\nTegan\nTheodora\nTiani\nTiarra\nTory\nTreasure\nTristan\nUrsula\nVenessa\nVickie\nViola\nWanda\nYoanna\nYocelin\nZarah\nZulma\nAaron\nAbriana\nAbrielle\nAdamary\nAiram\nAkela\nAleen\nAlesha\nAlessia\nAlexes\nAlida\nAlyanna\nAlyssamarie\nAlyza\nAmariah\nAmethyst\nAmor\nAmparo\nAn\nAnahit\nAnaid\nAnalyssa\nAnamarie\nAnecia\nAngeli\nAngelisa\nAnh\nAnisah\nAnnissa\nAnny\nArieanna\nArika\nArisa\nArisbeth\nArlet\nArmando\nAshleymarie\nAshlin\nAtziry\nAubriana\nAugust\nAysha\nAzia\nBaily\nBetsabe\nBetzabeth\nBiviana\nBlythe\nBreyanna\nBriannah\nBriauna\nBrienna\nBrigid\nBritny\nBrittni\nBronwyn\nBryanne\nBryce\nBrynne\nCaila\nCalli\nCamellia\nCapri\nCarlin\nCarmina\nCarrington\nCarter\nCasie\nCaterina\nCayley\nCera\nChampagne\nCharley\nChaya\nChenoa\nChristin\nCicely\nCitlalic\nCleo\nCody\nCorrin\nCory\nCristian\nDaisey\nDalilah\nDarya\nDaysi\nDeseree\nDestine\nDeysy\nDivina\nDominque\nEduardo\nElan\nElinor\nElisia\nEllis\nEmili\nEmilyann\nErandy\nEstefanie\nFarrah\nFayth\nGraciella\nGuiselle\nHennessy\nIdania\nIleen\nIndira\nIqra\nIrie\nIveth\nIzel\nJacy\nJaela\nJamee\nJami\nJanea\nJaniece\nJannely\nJannett\nJarely\nJaritza\nJaylah\nJaymie\nJazzlyn\nJemma\nJessi\nJisel\nJizelle\nJohannah\nJoleen\nJordana\nJorden\nJori\nJoseph\nJubilee\nKady\nKaliyah\nKallista\nKalynn\nKanani\nKarishma\nKarizma\nKassie\nKatana\nKateri\nKathlynn\nKeisha\nKenedi\nKera\nKia\nKiaira\nKiani\nKimia\nKirra\nKomal\nKrishna\nKrystina\nKrystle\nKya\nKyle\nKyndra\nLaine\nLanae\nLeeza\nLeighann\nLeilany\nLessly\nLezly\nLianne\nLilit\nLillyana\nLilyanna\nLinh\nLoraine\nLorin\nLoryn\nLuiza\nLuzelena\nLuzmaria\nLynnette\nMackenzi\nMadelynne\nMaha\nMalaika\nMargo\nMarialuisa\nMarielena\nMarine\nMarivel\nMarrissa\nMarycruz\nMaryn\nMegumi\nMelodie\nMelonie\nMickayla\nMiguel\nMikyla\nMilagro\nMilly\nMinna\nMiyah\nMykala\nNada\nNaila\nNaiya\nNaomie\nNatally\nNavpreet\nNerissa\nNichelle\nNiki\nNohelia\nNour\nNya\nNydia\nOphelia\nPaisley\nPatsy\nPatty\nPolina\nRashel\nRayana\nRayven\nRebeka\nReyanna\nReylene\nRhonda\nRicardo\nRoslyn\nRuben\nRubie\nRyanne\nSabine\nSabreena\nSamia\nSantana\nSeleste\nShaila\nShanel\nShaniah\nShelsy\nSianna\nSierrah\nSloan\nSol\nSonora\nSteffany\nStephenie\nStormy\nSusannah\nSusanne\nSylvie\nTajanae\nTana\nTaniya\nTanner\nThao\nThea\nTionne\nTorrey\nTraci\nTrinidad\nTristin\nValorie\nVanity\nVivi\nWindy\nXitlaly\nYakelin\nYanelly\nYuritzi\nZia\nZitlaly\nZoya\nAdalia\nAdaly\nAdara\nAidee\nAilani\nAishwarya\nAjah\nAlandra\nAlessa\nAlexcia\nAlexiss\nAlexzandra\nAlizabeth\nAlla\nAllia\nAllyn\nAlyssandra\nAmal\nAmayah\nAnabell\nAndraya\nAndriana\nAnely\nAngelia\nAngelie\nAnja\nAnkita\nAnnabell\nAnnalyse\nAnnamaria\nAnneke\nAnnel\nAntonette\nAolani\nAraseli\nAreanna\nArin\nArissa\nAriyanna\nArlenne\nAshia\nAshlen\nAsiah\nAsma\nAsusena\nAthziry\nAtziri\nAudriana\nAudrianna\nAura\nAustin\nAvigail\nAzariah\nAziza\nAzure\nBaleria\nBecca\nBerlin\nBetzaira\nBrandee\nBrennah\nBreyana\nBriceyda\nBrigit\nBritnee\nBrittanie\nBrittnee\nCaley\nCalissa\nCami\nCandyce\nCaprice\nCarlos\nCarole\nCaryn\nCassaundra\nCassidie\nCerina\nCharleen\nCharli\nChayanne\nCheri\nCindi\nClarisse\nClaudette\nClementine\nCordelia\nCorey\nCorrine\nCyndy\nCyrena\nDaelyn\nDaisie\nDaizy\nDakotah\nDalana\nDaniele\nDanni\nDarcie\nDarrian\nDasha\nDavianna\nDaysha\nDelaina\nDelainey\nDelany\nDelmy\nDelyla\nDesarae\nDeseray\nDesirea\nDestenie\nDestynee\nDeyanira\nDeziray\nDezire\nDeziree\nDiandra\nDimond\nDixie\nDonya\nDymond\nEkaterina\nEli\nEllery\nElliana\nElysa\nEmeli\nEmelly\nEmiko\nEmmaline\nEmmanuelle\nEmoni\nEnedina\nFernando\nFrancheska\nFrancisco\nGail\nGeorgette\nGetsemani\nGisella\nGiulia\nGrisel\nGwendalyn\nHan\nHarleen\nHarlie\nHarneet\nHarpreet\nHarriet\nHeydi\nHolley\nIda\nImunique\nIna\nIndiana\nIridiana\nIsa\nIsrael\nIssabella\nItzell\nIva\nIvett\nIvie\nIxel\nJacklin\nJadah\nJaelin\nJaide\nJaidyn\nJailenne\nJailyne\nJalisa\nJalissa\nJannel\nJassmine\nJaylee\nJazelle\nJazzmyn\nJeanelle\nJelena\nJenaya\nJianna\nJill\nJissell\nJo\nJohnisha\nJolina\nJordin\nJoshua\nJournee\nJulieann\nJulyssa\nKadie\nKaile\nKaleah\nKalyssa\nKamya\nKandace\nKarisa\nKarrington\nKarsyn\nKasia\nKati\nKayce\nKaycie\nKaylani\nKaytlynn\nKeala\nKealani\nKeiara\nKeilah\nKeily\nKennya\nKeyera\nKezia\nKhalia\nKiah\nKiarah\nKieran\nKilee\nKirandeep\nKitana\nKiyomi\nKloe\nKoren\nKyrah\nLaci\nLanette\nLashae\nLatavia\nLayne\nLeela\nLeigh\nLeona\nLiane\nLibby\nLiliann\nLilianne\nLiora\nLisamarie\nLisett\nLucrecia\nLyndsay\nLyzette\nMadilynn\nMagnolia\nMaiah\nMakenzi\nMalea\nMaleny\nMarcie\nMarena\nMariadelcarmen\nMariella\nMarifer\nMarleny\nMarsha\nMaryelizabeth\nMaryrose\nMatilde\nMatisse\nMele\nMeliza\nMelony\nMerari\nMichaella\nMicheala\nMidori\nMikhaela\nMilca\nMilla\nMonserat\nMonzerrat\nMuna\nMyka\nMyriah\nNadeen\nNaima\nNanci\nNatividad\nNayelly\nNeli\nNely\nNeva\nNickole\nNicoletta\nNiya\nNona\nNuvia\nNycole\nNyomi\nOcean\nOlyvia\nOralia\nPa\nPage\nParisa\nPassion\nPia\nQuynh\nRaechel\nRafaela\nRaveena\nRavin\nRay\nRayne\nRebecka\nRebeckah\nRio\nRisa\nRoma\nRonnie\nRyanna\nSabrena\nSabryna\nSachi\nSamatha\nSandi\nSapphire\nSaria\nSarin\nSascha\nScout\nSebastian\nShanti\nShavon\nShayne\nSheccid\nShefali\nShiann\nShilpa\nSiana\nSiara\nSicily\nSidra\nSimona\nSintia\nSloane\nSneha\nSoumya\nStaci\nStacia\nStefania\nStormie\nSunnie\nSusy\nSyeda\nSynthia\nTaiz\nTajah\nTakara\nTali\nTalisa\nTalitha\nTallulah\nTanzania\nTeressa\nThelma\nTiahna\nTopanga\nTorri\nTuesday\nTyla\nUma\nVaneza\nVeda\nVerenise\nVi\nVivica\nWilla\nYalitza\nYazmeen\nYoceline\nYsenia\nYuri\nYvanna\nZahira\nZaire\nZamantha\nZarina\nZayda\nZola\nZurisadai\nAbbigale\nAddie\nAddyson\nAdi\nAdira\nAine\nAishah\nAislynn\nAjia\nAlasia\nAlayjah\nAlaysha\nAlayza\nAlberto\nAleesa\nAleeza\nAleisha\nAleksandra\nAlexsa\nAlexxa\nAleyda\nAleyna\nAlisandra\nAlissia\nAlisson\nAlizay\nAllysen\nAly\nAlyah\nAlyana\nAmanpreet\nAmauri\nAmberlyn\nAmbria\nAmiyah\nAmna\nAmunique\nAnalee\nAnalleli\nAnaly\nAnela\nAngelli\nAnmol\nAntonio\nApryl\nAreej\nAriannah\nArianne\nAris\nAriyana\nArmida\nArmine\nAryonna\nAshlynne\nAshna\nAveri\nAyano\nAyden\nAylene\nBethsaida\nBetzaida\nBlessing\nBonny\nBrady\nBraelyn\nBridgett\nBrieana\nBrissa\nBritani\nBritni\nBrittnie\nCaileigh\nCamry\nCaressa\nCarey\nCarlyn\nCarmella\nCarolin\nCarsen\nCatriona\nChana\nChance\nCharissa\nCherilyn\nChristianne\nClair\nClarke\nClaryssa\nClaudine\nCloey\nCodi\nCoraima\nCorie\nCorrie\nCourtnie\nCyan\nDajanae\nDalena\nDamiana\nDanette\nDanyel\nDaphney\nDarlin\nDarline\nDavid\nDayja\nDeeanna\nDeija\nDejanee\nDelaine\nDelani\nDelena\nDelfina\nDelmi\nDemetria\nDennis\nDeonna\nDeserae\nDesirey\nDezaray\nDharma\nDinah\nDionna\nDior\nEdwin\nElani\nEliane\nEliyah\nEmelin\nEmiliana\nEmilyanne\nEmmely\nEmmie\nEmpress\nErianna\nErick\nErnestina\nEsli\nEsly\nEsthela\nEulalia\nEvalina\nFantasia\nFatimah\nFelisa\nFelisha\nFlorencia\nGaia\nGelsey\nGenavieve\nGenelle\nGennifer\nGeovanna\nGiovana\nGizel\nGrayce\nGretta\nGwenyth\nHaile\nHaily\nHalee\nHaruka\nHaya\nHayli\nHerlinda\nHiba\nHosanna\nHuda\nIanna\nIdalis\nIlyssa\nIndya\nInfinity\nIona\nIriana\nIrina\nIsadora\nIsaiah\nItzia\nIvan\nIyanna\nJackelyne\nJaclynn\nJacquline\nJadie\nJadine\nJai\nJalene\nJalyssa\nJamara\nJamilah\nJaneli\nJanina\nJannessa\nJavier\nJaydin\nJenavie\nJenesis\nJeni\nJennefer\nJennipher\nJerica\nJezabel\nJina\nJissel\nJoi\nJonna\nJosslyn\nJovani\nJulieanne\nJulya\nJustin\nKaelah\nKaileigh\nKailie\nKaily\nKaitlen\nKally\nKamaria\nKamrie\nKareena\nKarie\nKarmen\nKatelynne\nKaterine\nKatryna\nKattie\nKatty\nKaydee\nKaysha\nKaysie\nKeegan\nKeelin\nKeianna\nKeiko\nKelcey\nKeli\nKellsie\nKendell\nKendyll\nKerri\nKhanh\nKhayla\nKimberli\nKimi\nKirby\nKirsty\nKitty\nKiyana\nKlaire\nKora\nKoral\nKortni\nKyli\nKyrstin\nLacie\nLakeisha\nLaken\nLan\nLane\nLatanya\nLatisha\nLatrice\nLavender\nLavina\nLavinia\nLeeana\nLeeanna\nLeeanne\nLenore\nLeslieann\nLesslie\nLetticia\nLetty\nLiah\nLian\nLillia\nLillianna\nLissa\nLorna\nLottie\nLovely\nLusine\nLylah\nLyliana\nLynne\nLynsey\nLysette\nMadaline\nMagdalene\nMaggy\nMaija\nMailyn\nMalinda\nMandeep\nManjot\nMariadelosang\nMariann\nMaribella\nMariha\nMarleena\nMarli\nMarline\nMarriah\nMarygrace\nMarykate\nMarylee\nMarylyn\nMatthew\nMaycee\nMaylene\nMaylin\nMeadow\nMeera\nMeggan\nMeilani\nMelanny\nMerina\nMerisa\nMessiah\nMica\nMicaiah\nMikaylah\nMiraya\nMirca\nMiryam\nMonserrath\nMorgana\nMorgen\nMuriel\nMykaila\nMykenzie\nMystica\nNajae\nNajah\nNaseem\nNatasia\nNattalie\nNautika\nNayana\nNaylea\nNazareth\nNeda\nNeena\nNena\nNeomi\nNessa\nNicky\nNicol\nNicolemarie\nNidhi\nNikolette\nNirvana\nNiyah\nNoella\nNoreen\nOdaliz\nOlive\nOpal\nOrianna\nOsmara\nPatzy\nPaxton\nPeggy\nPerry\nPhyllis\nPrincesa\nPrisilla\nPuneet\nQueen\nRahma\nRaissa\nRaizel\nRama\nRayan\nRaychel\nReiko\nRemi\nRenae\nRhiana\nRiann\nRicha\nRiver\nRory\nRosanna\nRoseanna\nRoselani\nRosenda\nRyane\nSafa\nSahana\nSaki\nSalem\nSamiya\nSammie\nSean\nSelin\nSequoyah\nShalini\nShamya\nShanaya\nShaniya\nShannan\nShantelle\nShari\nShauntel\nShawn\nShaylyn\nShealyn\nShellsea\nShelsey\nSheree\nSheyanne\nShriya\nShyan\nShyanna\nSolana\nSomer\nSona\nStephine\nSugey\nSymphony\nTaeya\nTai\nTaija\nTaja\nTalar\nTaleen\nTamika\nTamira\nTarryn\nTatem\nTesia\nTeya\nThuy\nTiare\nTierney\nTionna\nTommi\nTonia\nToree\nTristyn\nTyrah\nVanna\nVarsha\nVelia\nVictorya\nVida\nViolette\nVittoria\nViviann\nWaverly\nWendi\nYana\nYasemin\nYaxeni\nYennifer\nYezenia\nYohana\nYudith\nYuka\nYulianna\nYuritzy\nZaina\nZakiya\nZalma\nZareen\nZeinab\nZhane\nZoha\nZoila\nEmily\nAshley\nSamantha\nJessica\nJennifer\nAlyssa\nAlexis\nSarah\nHannah\nElizabeth\nVanessa\nJasmine\nStephanie\nNatalie\nJacqueline\nMaria\nBrianna\nMadison\nAndrea\nKimberly\nLauren\nMichelle\nVictoria\nDestiny\nNicole\nMelissa\nLeslie\nKayla\nAmanda\nSophia\nTaylor\nMegan\nAlexandra\nIsabella\nEmma\nRachel\nGrace\nJulia\nAbigail\nKatherine\nDiana\nOlivia\nJocelyn\nAngela\nSydney\nHailey\nDaisy\nChloe\nRebecca\nIsabel\nSavannah\nGabriela\nBriana\nDanielle\nKaitlyn\nEvelyn\nAlejandra\nAnna\nKarina\nSara\nAlondra\nAdriana\nHaley\nAriana\nDaniela\nAngelica\nValerie\nMelanie\nAmy\nBrenda\nCrystal\nSabrina\nEsmeralda\nSierra\nCynthia\nMarissa\nAna\nKaren\nErika\nGiselle\nChristina\nMia\nAmber\nGuadalupe\nMaya\nTiffany\nAllison\nCatherine\nMariah\nMonica\nKelly\nMadeline\nJasmin\nMorgan\nSofia\nCassandra\nLaura\nAlexa\nValeria\nVeronica\nKarla\nTrinity\nJenna\nClaire\nFaith\nAngelina\nKatelyn\nZoe\nAlicia\nJordan\nYesenia\nBrooke\nNancy\nAudrey\nBianca\nFatima\nArianna\nMary\nBreanna\nPriscilla\nGabriella\nErica\nJazmin\nGabrielle\nBritney\nWendy\nMiranda\nCindy\nJaqueline\nVivian\nRuby\nCaroline\nKylie\nErin\nMackenzie\nSerena\nBrittany\nBailey\nKatie\nAlexandria\nCaitlin\nCeleste\nLily\nPaola\nLiliana\nDesiree\nGisselle\nSandra\nKaylee\nMakayla\nCarolina\nIsabelle\nNatalia\nJade\nShelby\nJoanna\nMikayla\nAngel\nNaomi\nPaige\nDenise\nCourtney\nClaudia\nGenesis\nChristine\nLizbeth\nRosa\nViviana\nKassandra\nJillian\nJazmine\nKathryn\nCecilia\nMariana\nJuliana\nCheyenne\nJamie\nApril\nCassidy\nBrittney\nMonique\nSophie\nKiara\nCristina\nAlexia\nLeah\nAnahi\nJulissa\nChelsea\nKelsey\nElena\nPatricia\nLindsey\nClarissa\nMadelyn\nMayra\nJulie\nHeather\nKate\nSummer\nRiley\nMarisol\nCaitlyn\nMiriam\nRaquel\nIrene\nTatiana\nJanet\nCamille\nCarmen\nMarina\nAileen\nMolly\nMarlene\nPaulina\nAriel\nJenny\nLesley\nLesly\nKiana\nShannon\nEmely\nLillian\nGloria\nMckenna\nSelena\nJada\nAmaya\nMargaret\nMartha\nAva\nKaitlin\nEva\nBrisa\nJulianna\nKatrina\nSkylar\nAlissa\nKathleen\nLitzy\nDominique\nLinda\nAutumn\nMichaela\nYasmin\nAnnie\nHayley\nTeresa\nBethany\nHope\nAngie\nDaniella\nLisa\nNina\nLeilani\nKristen\nMaritza\nAlma\nItzel\nJordyn\nKristina\nAdrianna\nKrystal\nEdith\nHanna\nKendall\nMadeleine\nKyra\nHelen\nAlison\nLindsay\nLizette\nPerla\nCameron\nFernanda\nRebekah\nYvette\nAlina\nCarla\nDelaney\nNadia\nCarly\nHeidi\nJosephine\nIris\nMarisa\nNayeli\nLauryn\nMeghan\nAshlyn\nLorena\nAmelia\nElise\nKira\nMelody\nMya\nSandy\nNoemi\nJacquelyn\nKennedy\nKylee\nReyna\nAlana\nCamryn\nRuth\nSarai\nHolly\nRose\nSonia\nCharlotte\nCristal\nSavanna\nAraceli\nNatasha\nElla\nSharon\nMalia\nNathalie\nBryanna\nDulce\nLizeth\nLucia\nLucy\nPeyton\nSusana\nAliyah\nAmerica\nGianna\nJanelle\nEsther\nLuz\nMakenna\nAylin\nKyla\nMaribel\nMarilyn\nAlice\nAthena\nCarina\nSidney\nJohanna\nTanya\nDeanna\nTania\nArlene\nMarie\nNataly\nCitlalli\nEsperanza\nMargarita\nGillian\nLeticia\nAaliyah\nAllyson\nJustine\nAngelique\nAvery\nDana\nHaylee\nMelina\nCasey\nKendra\nSienna\nAubrey\nBlanca\nEileen\nKatelynn\nPayton\nSkyler\nAsia\nLydia\nCarissa\nFiona\nMonserrat\nBerenice\nClara\nMikaela\nElisa\nRenee\nRocio\nAurora\nCarolyn\nGenevieve\nIvy\nRachael\nGeorgia\nGina\nKristin\nPhoebe\nDarlene\nKara\nMckenzie\nTara\nDestinee\nKathy\nStephany\nTalia\nRebeca\nKailey\nAnastasia\nAnnika\nBeatriz\nDiamond\nJackeline\nDelilah\nFrancesca\nJane\nPamela\nPrecious\nSusan\nTiana\nElaine\nJudith\nSasha\nYadira\nBridget\nCeline\nAlexus\nNoelle\nBrandy\nAshlee\nGraciela\nYvonne\nBelen\nCiara\nCierra\nTessa\nMacy\nAimee\nIsis\nKassidy\nLayla\nMaggie\nJoselyn\nKaila\nSalma\nStacy\nArely\nSerenity\nTina\nYasmine\nCielo\nDiane\nFabiola\nPaula\nRegina\nDariana\nDeja\nJessie\nDakota\nJeanette\nKamryn\nLisette\nRosemary\nJoy\nJoyce\nRosalinda\nSadie\nSage\nTheresa\nEliana\nHailee\nJoana\nJuliet\nJuliette\nMercedes\nShayla\nAnne\nBrenna\nCelia\nEstrella\nLarissa\nMariela\nNikki\nVirginia\nCamila\nDamaris\nIliana\nMallory\nRaven\nCatalina\nEmilia\nJanessa\nEliza\nJaquelin\nNia\nHeaven\nKarissa\nDaphne\nJocelyne\nEstefania\nSilvia\nAnissa\nElisabeth\nJaclyn\nLeila\nRylee\nAbby\nAlisha\nAnika\nImani\nStacey\nBrooklyn\nHallie\nKenya\nNoelia\nMireya\nPaloma\nAshlynn\nCheyanne\nDayana\nKirsten\nNicolette\nAlisa\nEleanor\nHana\nKaylie\nLilian\nSarahi\nViolet\nAbril\nBreana\nEden\nKaitlynn\nYamilet\nAlessandra\nAnnabelle\nCasandra\nKaylin\nMakenzie\nTracy\nYessenia\nAnnette\nTyler\nAracely\nBarbara\nDalia\nIvette\nJenifer\nKasandra\nParis\nYolanda\nAdilene\nJanae\nKristine\nLilly\nRoxana\nXochitl\nAnya\nCitlali\nDesirae\nJoanne\nJohana\nJulianne\nNorma\nSarina\nSkye\nBella\nEmilie\nFelicity\nJackelyn\nJacquelin\nJanette\nJazlyn\nLacey\nThalia\nZoey\nCarol\nEricka\nLena\nOdalis\nTamara\nYajaira\nFrida\nKiley\nSimone\nStella\nTori\nViridiana\nDianna\nHelena\nSylvia\nTaryn\nHazel\nShania\nSheila\nYareli\nAntonia\nChristy\nJanice\nKasey\nLeanna\nMariam\nSimran\nTabitha\nArielle\nCandice\nGracie\nKenia\nLaisha\nLourdes\nSavanah\nAlize\nAshleigh\nDeborah\nElaina\nEve\nFlor\nFrances\nLuisa\nMadisyn\nMicaela\nReina\nRhiannon\nSiena\nTatyana\nEllen\nEvelin\nGladys\nRoxanne\nTatum\nAlanna\nEmilee\nGriselda\nIsela\nIzabella\nLucero\nMaia\nRita\nCelina\nDevon\nKatia\nMarian\nIvana\nLea\nMarisela\nMeagan\nMelinda\nMontserrat\nNathaly\nNichole\nAlena\nGrecia\nJosie\nKrista\nMakena\nToni\nBryana\nDenisse\nEllie\nIvonne\nJayda\nJewel\nKatarina\nLaila\nMarlen\nMelisa\nOdalys\nPiper\nShirley\nXiomara\nYazmin\nAdrienne\nAlaina\nAlyson\nAreli\nAyanna\nGalilea\nGeorgina\nHunter\nKayleigh\nKianna\nAnais\nCharlene\nChelsey\nDevin\nEstefani\nFelicia\nGiovanna\nHillary\nIsabela\nJaden\nKatlyn\nKaylyn\nMagaly\nMelany\nNora\nReanna\nSydnee\nValentina\nWhitney\nDonna\nEstefany\nIndia\nIngrid\nJaylene\nKailee\nKaya\nMagdalena\nNeha\nSelina\nShyanne\nBaylee\nCara\nClare\nCorina\nEunice\nJulieta\nKayley\nLizet\nMadelynn\nMarcela\nMaricela\nRubi\nSally\nAnita\nColleen\nJaelyn\nJayla\nLilia\nMaryjane\nNadine\nPriscila\nTammy\nAni\nAryanna\nElyssa\nIrma\nJuana\nJustice\nKaylah\nMaddison\nMagali\nPauline\nRosario\nStefanie\nYahaira\nYamile\nAlia\nAngeles\nBrynn\nElissa\nGissel\nJacklyn\nJuanita\nKristy\nLexi\nLilliana\nLissette\nMarianna\nSayra\nAnai\nAshly\nBeatrice\nCallie\nCandace\nJayden\nJolie\nLiana\nMacie\nMarley\nNelly\nTayler\nTess\nTianna\nTiara\nYoselin\nAddison\nAnabel\nAnjali\nBrandi\nCiera\nCitlaly\nEbony\nElyse\nGissell\nHeidy\nLara\nPearl\nRochelle\nRyan\nSerina\nTia\nYasmeen\nAnn\nDelia\nDestiney\nIvanna\nKelley\nLuna\nRaylene\nUnique\nVicky\nHarmony\nJulisa\nLidia\nLisbeth\nLogan\nMarcella\nPricilla\nShayna\nTamia\nValery\nVanesa\nAliya\nAnalisa\nAnyssa\nAstrid\nJeniffer\nKailyn\nKali\nKatelin\nMadalyn\nSelene\nVerania\nAllie\nBailee\nCalista\nChristian\nColette\nConnie\nJailene\nJasmyn\nJoseline\nKeila\nLaurel\nLina\nNayely\nPresley\nReagan\nRobin\nCayla\nDanica\nDevyn\nJazmyn\nKelli\nLupita\nMira\nMiracle\nNyah\nSaray\nXimena\nYulissa\nAleena\nAzucena\nBeverly\nBriza\nCarrie\nCinthia\nElsa\nHalle\nJoelle\nJudy\nKaela\nKaryme\nKiera\nLeanne\nNatali\nNathalia\nRosemarie\nScarlett\nTyra\nYulisa\nAmalia\nBrissa\nCassie\nChantal\nCora\nGwendolyn\nJaquelyn\nJoceline\nKellie\nLynn\nMadisen\nMaryam\nMckayla\nNoor\nOlga\nRobyn\nYaritza\nAdela\nAdeline\nAlexandrea\nAlly\nAlysa\nAnaya\nAyla\nAyleen\nBetsy\nCandy\nCorinne\nDania\nFrancis\nHaylie\nJaneth\nKacie\nKaia\nKatya\nLia\nMaira\nMiya\nRegan\nAdamaris\nAlayna\nAleah\nAngeline\nAnnabella\nCarley\nCharisma\nCoral\nDahlia\nDalila\nDesteny\nEstela\nGisell\nKenna\nLynette\nMariel\nMoriah\nPrincess\nRylie\nZaira\nAbbey\nAnnalise\nBonnie\nJosefina\nKaelyn\nKatharine\nLeann\nLexie\nMicah\nMirian\nNallely\nPenelope\nSheyla\nSonya\nAliza\nAnabelle\nAniya\nAnnalisa\nAntoinette\nAria\nAubree\nBrianne\nCathy\nChanel\nChiara\nHailie\nJocelynn\nKaterina\nMandy\nMaricruz\nMaxine\nMeredith\nRaina\nWillow\nYarely\nAisha\nAllyssa\nBernice\nCarli\nCharity\nChyna\nGreta\nHayden\nJolene\nKarime\nKiersten\nKim\nKlarissa\nLorraine\nMara\nRachelle\nRyann\nSavana\nShyann\nTierra\nZaria\nAnnamarie\nBrooklynn\nCarlie\nGema\nGisel\nJocelin\nKacey\nKarlie\nKatheryn\nKaylynn\nKierra\nLila\nMadilyn\nMadyson\nMarlena\nMartina\nMina\nRosie\nSaira\nShaina\nShreya\nYaneli\nYuliana\nAnnabel\nBridgette\nCali\nCecelia\nCitlally\nConsuelo\nDanika\nElsie\nEvangelina\nHalie\nJannet\nJesse\nKaley\nMaiya\nMindy\nMisty\nMollie\nRhea\nStar\nSydnie\nYamileth\nAlycia\nAmara\nAnayeli\nCarlee\nDayanara\nDorothy\nDrew\nEssence\nGizelle\nIleana\nIlene\nJaiden\nJaime\nJana\nKaleigh\nKarly\nKeely\nKristal\nMichele\nNikita\nQuinn\nRoxanna\nSamira\nSuzanne\nSydni\nVerenice\nVioleta\nYessica\nAlex\nAliah\nAmari\nAriella\nAspen\nCameryn\nDallas\nDawn\nFrancisca\nJessika\nJoselin\nLoren\nLyndsey\nMacey\nMilena\nPricila\nReese\nSamanta\nSamara\nSariah\nSherry\nSkyla\nStefany\nWinnie\nAline\nAlysia\nAmaris\nAnamaria\nAnisa\nArleth\nBreanne\nBrielle\nChandler\nChrista\nDejah\nDestany\nGwyneth\nHilary\nJackie\nJamilet\nJanine\nJayleen\nKarli\nKeyla\nKyleigh\nMonika\nMontana\nParker\nPriya\nRiana\nSabina\nSelah\nTatianna\nAilyn\nAiyana\nAlexys\nArlette\nArriana\nBertha\nCambria\nDaria\nDestini\nDianne\nElvira\nEmerald\nFlora\nGemma\nHaleigh\nIman\nJadyn\nJennie\nJuliann\nKayleen\nKelsie\nKendal\nKyara\nLana\nLola\nMaile\nMaryann\nMyra\nNatalee\nPilar\nShea\nTrisha\nVivianna\nXochilt\nYanira\nAbbigail\nAda\nAryana\nAvalon\nBrianda\nChantel\nCheryl\nCorrina\nDina\nEryn\nFranchesca\nHarley\nJanel\nJoan\nKarolina\nKatalina\nKayli\nLianna\nLillie\nLondon\nMari\nMaureen\nMercy\nMitzy\nMonserrath\nNoel\nShawna\nSoleil\nSuzette\nYaquelin\nAdrian\nAja\nAlora\nAmira\nAshlie\nCaitlynn\nClarisa\nDarla\nDayna\nDaysi\nDeana\nEstephanie\nFallon\nJaycee\nJazmyne\nJennyfer\nJesenia\nLyla\nMalaysia\nMalina\nMonet\nPhoenix\nRianna\nRosalie\nSade\nShaylee\nStarr\nSunshine\nTrina\nXitlaly\nZoie\nAditi\nAlexsandra\nAmina\nAmya\nAnisha\nAriadna\nArleen\nAshely\nAshton\nBelinda\nBrigitte\nCamilla\nChristiana\nCienna\nCinthya\nDenice\nGeraldine\nInes\nIsabell\nJaida\nJalyn\nJanelly\nJaylin\nJose\nKai\nKalyn\nKaylen\nKristi\nLisset\nMaegan\nMarlyn\nMika\nNadya\nNatalya\nNoemy\nRaegan\nReilly\nRhianna\nSaige\nSanjana\nShauna\nShivani\nStevie\nVannessa\nXitlali\nAlani\nAyana\nBernadette\nBriseida\nCharlize\nCherish\nDavina\nDeisy\nDemi\nDivya\nDolores\nElisha\nGabriel\nGinger\nHaily\nIsha\nJanell\nJayde\nJoann\nKarely\nKarlee\nKeana\nKourtney\nLilibeth\nLori\nLucille\nLyric\nMaci\nMaeve\nMarbella\nMaricarmen\nMarin\nMichell\nNyla\nRemy\nSahar\nSunny\nTabatha\nVenus\nYisel\nZayra\nAdelina\nAlexi\nAlivia\nAmani\nAnanya\nAsha\nAzalea\nBetty\nBreann\nChelsie\nCydney\nDanna\nDestinie\nEster\nFrankie\nGeneva\nHilda\nJena\nJessenia\nJimena\nKalea\nKaty\nKaylene\nKeira\nKeren\nKimberley\nKrysten\nLexus\nLeyla\nLilianna\nMadalynn\nMakaila\nMariyah\nMelia\nMirna\nOfelia\nRenae\nRowan\nSequoia\nSinai\nSoraya\nTaya\nTerra\nVianey\nAnjelica\nAnnemarie\nArabella\nAranza\nAudra\nBecky\nBianka\nBreeana\nBreeanna\nBriseyda\nDanae\nDarian\nDayanna\nDebbie\nDylan\nEdna\nElle\nGia\nGiana\nIreland\nJazlynn\nJoslyn\nJovanna\nKailani\nKaili\nLaney\nLeslye\nLitzi\nLizett\nLluvia\nMackenna\nMalaya\nMarianne\nMarielena\nMarla\nMeaghan\nMitzi\nNanci\nNautica\nNeida\nNubia\nSky\nSofie\nStephania\nSusie\nYazmine\nZahra\nAbigayle\nAcacia\nAdrianne\nAlanis\nAllysa\nAngelika\nAnthony\nAya\nCarlene\nCharlie\nCosette\nDafne\nDelanie\nDennise\nDora\nElina\nElva\nGretchen\nIzabelle\nJacey\nJayme\nJazzmin\nJonathan\nKalia\nKeilani\nKori\nLesli\nLiza\nMadelyne\nMai\nMakaylah\nMilan\nMildred\nNoa\nPetra\nRayna\nRiya\nRosalia\nScarlet\nShakira\nSheridan\nSol\nSusanna\nYanely\nYatzari\nYoana\nAida\nAllissa\nAlyse\nAnahy\nAnalise\nAndie\nAngelita\nAshanti\nCecily\nCelest\nChanelle\nDaisey\nDanyelle\nDeysi\nDoris\nElianna\nElysia\nEmelyn\nEugenia\nGisela\nGissele\nInez\nIyanna\nJackelin\nJania\nJasmyne\nJazzlyn\nJeannette\nJenessa\nJesica\nJill\nJustina\nKameron\nKaycee\nKeeley\nKinsey\nLili\nMakaela\nMichael\nMilagros\nMirella\nMona\nMyranda\nNaomy\nNoelani\nRachell\nRaelene\nRandi\nSana\nSarahy\nSarena\nShae\nShay\nShira\nSonali\nTais\nTamar\nValarie\nYanet\nYara\nYsabel\nZulema\nAbrianna\nAide\nAiram\nAlaysia\nAli\nAllegra\nAnnmarie\nArmani\nBobbi\nBria\nCathryn\nChelsy\nDalilah\nDara\nDebora\nDesire\nEloisa\nGlenda\nHaydee\nHolland\nImelda\nJacinda\nJailine\nJamileth\nJodie\nJulian\nKimiko\nLacy\nLaiza\nLeana\nLeia\nLeyna\nLillianna\nMabel\nMariaguadalupe\nMarlee\nMarylou\nMaura\nMoira\nNellie\nReece\nRina\nRory\nSalina\nSapphire\nShianne\nTherese\nTriniti\nXiana\nYesica\nAliana\nAlix\nAmairani\nAmie\nAminah\nBobbie\nBryn\nCarson\nChristal\nCiana\nCiarra\nCortney\nDaniel\nDarby\nDesiray\nDeziree\nEleni\nEmery\nEstella\nHarleen\nHarper\nHaven\nIlana\nIlse\nJaimie\nJalen\nJamila\nJasleen\nJean\nJiselle\nJordin\nJoshua\nJosselyn\nJuan\nJulyssa\nKaeli\nKaiya\nKarley\nKathya\nKeri\nKylah\nLilah\nLiz\nLizzette\nMaite\nMaleah\nMarleen\nMelani\nMerissa\nMiah\nMichaella\nNaila\nRashel\nRaya\nRene\nRosita\nSahara\nShana\nSonja\nTea\nTeagan\nZara\nAislinn\nAiyanna\nAlba\nAlea\nAlejandrina\nAmberly\nAnastacia\nAniyah\nAnnaliese\nArianne\nAriela\nAshli\nAubrie\nBrook\nCaren\nCaylin\nChasity\nChristie\nChynna\nConstance\nDarcy\nElana\nEman\nEvelynn\nFaye\nIyana\nJazlin\nJessalyn\nJesus\nJoey\nJourney\nJune\nKaci\nKalie\nKallie\nKarena\nKari\nKeara\nKennedi\nKiarra\nKortney\nKristian\nKrysta\nLiberty\nLuciana\nLuis\nMarcelina\nMaren\nMariajose\nMariella\nMarysol\nMinerva\nMonae\nNikole\nRena\nRosalina\nRosaura\nSamaria\nSela\nShelly\nSirena\nSoledad\nTerri\nTiffani\nVenessa\nVianca\nViktoria\nVivica\nYamilex\nYocelin\nYoseline\nZion\nAbigale\nAdelaide\nAhtziri\nAishwarya\nAlisia\nAlliyah\nAlysha\nAlyza\nAmairany\nAriyana\nAubriana\nBlair\nBlake\nCailin\nCailyn\nCharlee\nChastity\nChyanne\nCori\nDaija\nDaijah\nDanya\nDarya\nDebra\nDomonique\nElexis\nElia\nEmalee\nEmani\nEmelia\nErick\nHalley\nHennessy\nIvon\nIvory\nJaya\nJaylen\nJazzmine\nJorden\nKalina\nKarol\nKathia\nKeanna\nKelis\nKelsea\nKelsi\nKiani\nKirstin\nKristie\nLeandra\nLela\nLinette\nLisbet\nLouise\nLucie\nMaisie\nMalena\nMariaelena\nMattie\nMelannie\nMikaila\nMillie\nMorelia\nNaya\nNicolle\nNohemi\nNya\nPaulette\nPortia\nRadhika\nRamona\nRichelle\nRosalyn\nRosamaria\nSammantha\nShantal\nShasta\nShyla\nSindy\nStefani\nSuzanna\nTaniya\nThania\nTiffanie\nTyanna\nVania\nVera\nXenia\nXitlalli\nYenifer\nYsabella\nAdina\nAgnes\nAidan\nAlannah\nAmiyah\nAnalicia\nAnessa\nAngelic\nAnkita\nAnmol\nAnneliese\nArcelia\nAriadne\nAriah\nArlin\nAshtyn\nAveri\nBerenise\nBeyonce\nBree\nBrieanna\nCaleigh\nCapri\nCatrina\nCesia\nChase\nChina\nChrystal\nCleo\nCloe\nCollette\nDarianna\nDeandra\nDejanae\nElayna\nElida\nEmerson\nEmmalee\nFayth\nGardenia\nGisele\nGiuliana\nHenna\nIleen\nIndira\nIrie\nIxchel\nIzabel\nJaclynn\nJacy\nJahaira\nJakeline\nJayne\nJeanne\nJoie\nJoscelyn\nJosette\nJulietta\nKaelin\nKailah\nKalani\nKalena\nKaliyah\nKalysta\nKaroline\nKassie\nKelsy\nKenzie\nLaurie\nLilyanna\nLinnea\nLiset\nLivia\nLizbet\nLucinda\nMadilynn\nMaranda\nMarcia\nMargaux\nMarguerite\nMariafernanda\nMaryanne\nMelony\nMelyssa\nMicayla\nMichel\nMickayla\nMikala\nMila\nMyah\nNidia\nOriana\nRayleen\nReem\nRia\nRosio\nRyley\nSeanna\nSelma\nShaelyn\nShanna\nSharlene\nShawn\nSierrah\nTanvi\nTehya\nTreasure\nTristan\nXochil\nYocelyn\nZaida\nZariah\nAbbie\nAilene\nAine\nAlyna\nAlyssia\nAmethyst\nAmi\nAnahit\nAnakaren\nAnali\nAndreina\nAnel\nAngelena\nAnisah\nAnja\nAnnalee\nAnnelise\nAudry\nAyah\nAysia\nAzul\nBayley\nBibiana\nBriceida\nBryce\nCailey\nCallista\nCarisma\nCarrington\nCaylee\nChaya\nClarisse\nCleopatra\nDaisha\nDarlyn\nDasia\nDevina\nDezirae\nDyanna\nEloise\nElvia\nEmeline\nEmi\nEmmaline\nEmme\nEsli\nEstefanie\nEstelle\nEvangeline\nEvelia\nFatimah\nFlorence\nGiulia\nHalee\nIdania\nIran\nIsamar\nItalia\nIvett\nJailyn\nJanely\nJanis\nJaslyn\nJaylah\nJaymie\nJeannie\nJenelle\nJissel\nJodi\nJovana\nKalei\nKatherin\nKaylan\nKayle\nKimberlee\nKirra\nKorina\nKrystle\nKyana\nLeeann\nLeilany\nLexy\nLisseth\nLizzet\nLouisa\nLynda\nLyndsay\nMadelaine\nMadelin\nMagnolia\nMakyla\nMaliyah\nMargot\nMarion\nMarjorie\nMason\nMay\nMeera\nMei\nMelodie\nMercedez\nMilly\nMonzerrat\nMyriam\nMyrka\nNailah\nNevaeh\nNika\nNiki\nOdessa\nPrisila\nQueenie\nRebeka\nRenata\nRio\nRosaisela\nRosy\nRubie\nRyanne\nRyleigh\nSalena\nSavina\nSawyer\nSeleste\nShantel\nSheena\nShelbi\nSiobhan\nSylvie\nSymone\nTahlia\nTala\nTalya\nTracey\nVeronika\nVienna\nVivien\nVivienne\nWinter\nXena\nYailin\nYoselyn\nYuliza\nYuri\nAdamari\nAdara\nAdia\nAidee\nAlejandro\nAlexie\nAlijah\nAmbria\nAmparo\nAmrita\nAnabella\nAndria\nAnette\nAnia\nArlen\nArlyn\nAthina\nAubrianna\nAyesha\nAysha\nBayleigh\nBrigette\nBrionna\nCamelia\nCassondra\nCharis\nCianna\nConcepcion\nCorrine\nCristian\nCristine\nCyan\nCyndi\nDaizy\nDaja\nDanelle\nDavid\nDelila\nDeyanira\nDivina\nDonya\nEboni\nElicia\nElisabet\nElizabet\nEstephany\nEvie\nFrancheska\nGaby\nGeena\nGladis\nGurleen\nGwenyth\nHadley\nHelene\nIlona\nIrais\nIsaura\nJacob\nJaeda\nJael\nJaidyn\nJalynn\nJamilah\nJanett\nJasmeen\nJaylyn\nJaylynn\nJayna\nJenae\nJenica\nJessy\nJianna\nJoycelyn\nKaelynn\nKaira\nKala\nKamille\nKarah\nKarenna\nKarin\nKarisa\nKarishma\nKarisma\nKarsyn\nKathie\nKatlin\nKatty\nKaylani\nKaytlin\nKealani\nKeiana\nKeilah\nKeiry\nKeona\nKerry\nKeyana\nKiran\nKomal\nKristyn\nKya\nKyanna\nLani\nLeena\nLeilah\nLeonela\nLeonor\nLessly\nLilyana\nLilyann\nLinsey\nMaddie\nMagda\nMaha\nMahima\nMaliah\nMalika\nMariza\nMeg\nMeleny\nMelonie\nMilla\nMoncerrat\nMykayla\nNalani\nNalleli\nNereida\nNereyda\nNisha\nNiya\nNoeli\nNoely\nOcean\nRaelynn\nRebecka\nRilee\nSabine\nSantana\nSedona\nSerene\nSiera\nSole\nSommer\nTasha\nTasia\nTeresita\nThea\nThelma\nTorrey\nTristen\nVida\nYanelli\nZitlaly\nZuleima\nAbagail\nAbriana\nAbygail\nAdele\nAerin\nAkira\nAlanah\nAlexcia\nAlexsis\nAlexzandra\nAleyah\nAlli\nAlthea\nAlyah\nAmiah\nAmit\nAmiya\nAnay\nAnh\nAnicia\nAnnabell\nAraya\nArika\nArissa\nAriyanna\nAudriana\nAura\nAurelia\nAvani\nBianey\nBiridiana\nBrea\nBridgett\nBritany\nBrookelynn\nBrooklin\nBryan\nBrynna\nCadence\nCalysta\nCerina\nCherie\nChyenne\nCiena\nCrista\nDajah\nDani\nDanitza\nDarleen\nDasani\nDaysha\nDelicia\nDena\nDesarae\nDivine\nDominque\nDyani\nDymond\nEgypt\nElora\nEmmanuelle\nEmmeline\nErandy\nEryka\nErynn\nEsha\nEvan\nFarah\nFaviola\nFrancine\nGianella\nGrayson\nHeavenly\nHollie\nIla\nJacquelynn\nJaelynn\nJaimee\nJakelin\nJami\nJanay\nJaniece\nJanina\nJanna\nJannette\nJaquelinne\nJaymee\nJennah\nJezebel\nJoely\nJonae\nJordynn\nJoselyne\nJubilee\nJulieanna\nJurnee\nKailynn\nKalee\nKaliah\nKalista\nKalynn\nKamila\nKathrine\nKaylamarie\nKaytlyn\nKevin\nKristiana\nKymberly\nKyrah\nLainey\nLarisa\nLeela\nLeona\nLibby\nLorissa\nLucina\nLynsey\nLysette\nMackenzee\nMadaline\nMae\nMakenzi\nMalaika\nMaleia\nMalissa\nMallorie\nManpreet\nMarielle\nMarika\nMarleny\nMarwa\nMarybeth\nMaryssa\nMatilda\nMelania\nMichal\nMiguel\nMilca\nMyla\nNailea\nNana\nNelida\nOctavia\nPa\nPallavi\nPeighton\nPrisilla\nQuiana\nRaeanna\nRania\nRikki\nRosalba\nRosalva\nRosana\nRut\nSabryna\nSahana\nSammi\nSemaj\nShaila\nShalyn\nSheccid\nShelsea\nShriya\nSimona\nSloane\nSocorro\nStacie\nStarla\nSterling\nSymantha\nSymphony\nTalin\nTaliyah\nTamera\nTamya\nTanisha\nTanner\nTiera\nTonya\nVicki\nVickie\nWendi\nZulma\nAddie\nAdelaida\nAdria\nAime\nAislynn\nAlaya\nAlecia\nAlexxis\nAlianna\nAlona\nAlya\nAmayah\nAmia\nAn\nAnaiya\nAnalia\nAnaliese\nAndi\nAndrina\nAneesa\nAngelyna\nAnnamaria\nAnushka\nAolani\nArlet\nAsiah\nAssata\nAsya\nAudree\nAudrie\nAurianna\nAvigail\nBaylie\nBeatris\nBelle\nBreonna\nBrian\nBrynne\nCady\nCamden\nCarleen\nCarlos\nCarlyn\nCarmela\nCarsyn\nCatarina\nCate\nCatelyn\nCathleen\nCelena\nCelestina\nChana\nChantelle\nCharissa\nCharli\nChristopher\nCintia\nClarice\nCloie\nCoraima\nDakotah\nDaniele\nDasha\nDenae\nDestani\nDestanie\nDevan\nDharma\nDonia\nEcho\nEdie\nElliana\nElsy\nEmber\nEmelie\nEmiko\nEmili\nEnedina\nErandi\nErykah\nEulalia\nEvette\nFanny\nGena\nGenessis\nGenisis\nGeorgette\nGeselle\nGiavanna\nGiovana\nGwen\nHali\nHanah\nHayleigh\nIdalia\nIrlanda\nIshani\nItati\nItzayana\nIvania\nJackelyne\nJacquelyne\nJaela\nJaelen\nJalene\nJanie\nJanneth\nJaquelyne\nJarely\nJaspreet\nJazelle\nJeanine\nJennefer\nJenniffer\nJensen\nJessa\nJessi\nJessyca\nJhoana\nJohannah\nJoi\nJoleen\nJordon\nJosephina\nJosselin\nJude\nJulieann\nKacy\nKami\nKamilah\nKandy\nKarizma\nKarmen\nKatlynn\nKay\nKaycie\nKeala\nKennya\nKenzi\nKiarah\nKierstin\nKimberlyn\nKimia\nKiyana\nKrystina\nLaisa\nLatavia\nLeeanna\nLilli\nLillyana\nLizzeth\nLove\nMacayla\nMackenzi\nMahnoor\nMaizie\nManisha\nManon\nMariadejesus\nMariaisabel\nMariann\nMarisleysis\nMariya\nMarlin\nMarycruz\nMattea\nMayah\nMckinley\nMeadow\nMeena\nMegha\nMeilani\nMelenie\nMeliza\nMellanie\nMerari\nMeriah\nMichayla\nMidori\nMirka\nMykala\nNayelli\nNeyda\nNitya\nNoah\nNour\nNydia\nOlive\nOsiris\nPatience\nRacheal\nRae\nRaeann\nRaevyn\nRaveena\nReena\nRegine\nRheanna\nRian\nRosalind\nRoshni\nSanam\nSandi\nShanell\nShanelle\nSharai\nSheryl\nShiann\nSianna\nSkylynn\nSneha\nStormy\nSusannah\nSuzie\nTaiz\nTaleah\nTaliah\nTawny\nTeah\nTeanna\nTory\nTristin\nUma\nUrsula\nVannesa\nVarsha\nVenecia\nVictor\nVy\nXitlalic\nYael\nYelitza\nYoanna\nYulianna\nYunuen\nZaina\nZainab\nZamantha\nZoee\nZuleyma\nZully\nAarushi\nAdi\nAdreanna\nAiko\nAinsley\nAjah\nAjanae\nAlaysha\nAleen\nAlegra\nAlessia\nAlexzandria\nAleya\nAleyda\nAlida\nAlizabeth\nAlonna\nAlva\nAlyana\nAmaiya\nAmal\nAmbar\nAmberlynn\nAmelie\nAmirah\nAmmy\nAnabell\nAnallely\nAnaly\nAnapatricia\nAndra\nAngelisa\nAnsley\nAntonette\nAnusha\nApryl\nAraseli\nArden\nAriane\nAries\nArrianna\nAtziri\nAviana\nAvni\nAzalia\nBaily\nBelem\nBerania\nBetania\nBrandie\nBriar\nBriauna\nBrina\nBrizeida\nBronwyn\nCalla\nCarmella\nCasie\nCassidi\nCerena\nChassidy\nCherry\nChristen\nChristi\nClarise\nClaryssa\nCloey\nCoco\nCordelia\nCristy\nDajanae\nDaryn\nDeena\nDeija\nDeserae\nDevany\nDevynn\nDezarae\nDixie\nElexus\nElinor\nElisia\nEllyse\nEmmily\nEmmy\nEstrellita\nFreya\nGeorgiana\nGetsemani\nGigi\nHanan\nHayle\nHayli\nHellen\nHerlinda\nHonesty\nHuda\nIanna\nIda\nIriana\nIridian\nItaly\nIveth\nJackqueline\nJadah\nJaedyn\nJaila\nJailynn\nJamile\nJanaya\nJaritza\nJasmina\nJazzmyn\nJeannine\nJenesis\nJeri\nJeselle\nJezabel\nJizelle\nJohnna\nJordann\nJoselynn\nJulienne\nKailin\nKallista\nKameryn\nKanani\nKaralyn\nKarinna\nKaris\nKarrie\nKarsen\nKasie\nKathlyn\nKavya\nKayana\nKayce\nKaylea\nKaylei\nKeegan\nKeiara\nKela\nKemberly\nKeziah\nKhalia\nKhloe\nKieran\nKitzia\nKiya\nKobe\nKolby\nKyndall\nLane\nLatrice\nLayne\nLaysha\nLeigh\nLezly\nLilit\nLilith\nLilyan\nLinh\nLiv\nLoretta\nLorna\nLuzmaria\nMalea\nMargo\nMariadelcarmen\nMarijane\nMarilin\nMarisabel\nMarlenne\nMarsha\nMarta\nMaryah\nMaryellen\nMarylin\nMatea\nMckinzie\nMedha\nMegumi\nMele\nMichala\nMimi\nMitsy\nMonserat\nMonserratt\nMorgen\nMykaela\nNajah\nNatallie\nNayelly\nNeda\nNiara\nNicola\nNidhi\nNiyah\nNohely\nNorah\nNuvia\nOdaliz\nOralia\nOrianna\nPooja\nRaeleen\nRain\nRaine\nRayanna\nRayven\nReanne\nRebekka\nReva\nRhonda\nRomina\nSalome\nSamatha\nSamaya\nSanika\nSean\nSera\nSerrina\nShalom\nShani\nShanice\nShanya\nShawnee\nShaye\nShaylyn\nShealyn\nSherlyn\nShyan\nSiomara\nSolana\nSpencer\nSulema\nTalar\nTanaya\nTate\nTegan\nTenaya\nThais\nValencia\nVallerie\nVeda\nViana\nVianna\nVilma\nVivianne\nWinona\nWynter\nXitlally\nYajayra\nYamila\nYazmeen\nYliana\nYovana\nYuritza\nZalma\nZyanya\nAbbigayle\nAbbygail\nAbrielle\nAdali\nAdamarys\nAdora\nAishah\nAisling\nAkilah\nAlaa\nAlajah\nAlayah\nAleia\nAleksandra\nAlene\nAlesha\nAlexsia\nAlexza\nAleyna\nAlise\nAlisson\nAlyce\nAlysse\nAmena\nAmrit\nAmulya\nAnaiah\nAnalissa\nAnayely\nAndreana\nAndromeda\nAneth\nAngeli\nAngelia\nAngella\nAngelmarie\nAngely\nAnica\nAnjelina\nAnnahi\nAnnai\nAnnalicia\nAnnalyn\nAnnastasia\nAnnay\nAnny\nAntionette\nAra\nAreanna\nArianah\nArieanna\nArin\nArline\nAsucena\nAubry\nAudrianna\nAugust\nAverie\nAvianna\nAvneet\nAyline\nAylinn\nAzia\nBanesa\nBeatrix\nBerenize\nBerlin\nBerlyn\nBeth\nBethanie\nBetzaida\nBlaire\nBrandon\nBreahna\nBreannah\nBreauna\nBreeze\nBriann\nBrieana\nBrigid\nBritny\nBrittnee\nCaila\nCailee\nCari\nCarmina\nCaryn\nCayley\nCelene\nChanning\nCharmaine\nCherokee\nClaribel\nColby\nCorin\nCorinna\nCozette\nCruz\nDamarys\nDarline\nDaysy\nDeisi\nDelana\nDelina\nDenia\nDeonna\nDeseray\nDeseree\nDeserie\nDesirea\nDomenique\nElba\nEleana\nElijah\nElyana\nElysse\nEmalie\nEmeli\nEmelly\nEmilly\nEmoni\nErendira\nEvany\nEvelina\nEvelyne\nFalyn\nFarrah\nFionna\nGabriele\nGenevie\nGenna\nGracyn\nGuinevere\nHan\nHania\nHarnoor\nHarsimran\nHaya\nHelaina\nHermelinda\nHeydi\nIlleana\nIna\nIndya\nInna\nIsa\nIsobel\nIsrael\nIvet\nIzabell\nJacklin\nJadelyn\nJaileen\nJala\nJanai\nJanea\nJanee\nJaniya\nJannelle\nJannie\nJasline\nJason\nJayline\nJazel\nJeana\nJemima\nJemma\nJennipher\nJisel\nJodee\nJody\nJolee\nJolynn\nJonah\nJosalyn\nJosseline\nJournee\nJovita\nJulieanne\nJuliza\nKady\nKalissa\nKalyssa\nKamaria\nKambria\nKandyce\nKareen\nKarine\nKaryn\nKaryna\nKati\nKatryna\nKaylina\nKenadee\nKendell\nKendyl\nKennady\nKennia\nKeyara\nKeyera\nKhadijah\nKia\nKimberli\nKlara\nKoraima\nKyley\nKyli\nKylia\nKyndra\nKyrsten\nLacie\nLailah\nLailani\nLeilanie\nLeslee\nLesslie\nLexia\nLexis\nLezlie\nLillyanna\nLindy\nLiora\nLiseth\nLisha\nLupe\nLusine\nLuzelena\nMable\nMacee\nMackenzy\nMadai\nMadelene\nMadina\nMaelani\nMagdalene\nMahogany\nMahum\nMakala\nMakiya\nMaliya\nManaal\nMarcy\nMareli\nMarely\nMariali\nMaricella\nMarieli\nMariko\nMarilynn\nMaritsa\nMarlo\nMaryelizabeth\nMatilde\nMaylene\nMekenzie\nMerina\nMikaylah\nMikenzie\nMilenia\nMillenia\nMiyah\nMiyu\nMoncerrath\nMonzerrath\nMuskaan\nMyka\nNada\nNaima\nNariah\nNatally\nNatania\nNaudia\nNavdeep\nNavya\nNayla\nNazareth\nNeena\nNeomi\nNiamh\nNova\nNylah\nPaisley\nPaolina\nPearla\nPeri\nPolina\nPriyanka\nPromise\nPuneet\nQueen\nQuincy\nRaeanne\nRaelyn\nRaena\nRaisa\nRani\nRanya\nRavyn\nRayne\nRazan\nRemington\nRianne\nRica\nRicha\nRoberta\nRomy\nRosanna\nRoselyn\nRoxy\nSaleena\nSamari\nSamia\nSamya\nSania\nSaskia\nSaya\nSayaka\nSayla\nSebastian\nSeneca\nSenna\nSerafina\nSereena\nSergio\nShaela\nShanaya\nShayne\nShefali\nShelbie\nShelley\nShelsy\nSheri\nSherly\nSherrie\nSilvana\nSinead\nSintia\nSissi\nSkie\nStefania\nSteffany\nSteffi\nStephani\nStephannie\nSuleyma\nSvetlana\nTatyanna\nTavia\nTayah\nTera\nTereza\nTionna\nTopanga\nTraci\nTracie\nTrinidy\nTrynity\nTuesday\nVerena\nVianney\nYakelin\nYamilett\nYaneth\nYecenia\nYelena\nYennifer\nYosselin\nYsabelle\nYuna\nZakiya\nZayda\nZenaida\nZitlali\nZurisadai\nAbbigale\nAbegail\nAdryanna\nAilani\nAilin\nAiriana\nAixa\nAjane\nAlahna\nAlan\nAleeah\nAleigha\nAlessa\nAlexiss\nAlexsa\nAlexsys\nAlexxa\nAlexya\nAlitzel\nAlizae\nAllana\nAlliana\nAlmendra\nAly\nAlyiah\nAlyn\nAlynna\nAlyssah\nAmada\nAman\nAmayrani\nAmbika\nAmor\nAmyah\nAnagha\nAnahita\nAnalilia\nAnanda\nAnasofia\nAndriana\nAnela\nAneliz\nAngeleah\nAngelene\nAniah\nAnnaly\nAnysa\nAparna\nArantxa\nArian\nArica\nAris\nArisbeth\nArleene\nArmida\nArmoni\nArpi\nAryan\nAshleynicole\nAshlin\nAshna\nAundrea\nAyaka\nAyannah\nAzaria\nAziza\nAzusena\nBailie\nBaleria\nBetsabe\nBetzy\nBillie\nBlythe\nBrandee\nBreeann\nBriceyda\nBrisamar\nBrittni\nBrittnie\nBushra\nCaeley\nCaitlan\nCalli\nCarey\nCarolyne\nCarrissa\nCassia\nCaterina\nCayleigh\nCaylie\nCera\nCesilia\nChance\nCharlyne\nChau\nChayanne\nCher\nCherise\nCheyene\nChinyere\nChloie\nChristabel\nChristianna\nCidney\nCierrah\nCindi\nCinnamon\nClementine\nCole\nCorie\nCorrin\nCoryn\nCrimson\nCristiana\nCyann\nCyanne\nCydnee\nCyrena\nDaejah\nDaisie\nDallana\nDamara\nDanah\nDannia\nDarlin\nDarling\nDaylene\nDaysia\nDejanique\nDelaina\nDelaine\nDelainey\nDelfina\nDella\nDelmy\nDenali\nDestynee\nDestyni\nDeven\nDevine\nDeysy\nDezire\nDhamar\nDinah\nDinora\nDiva\nDolly\nDomenica\nDulse\nDunia\nDyana\nDynasty\nEduardo\nElda\nEliya\nEllena\nElyza\nEmiliana\nEmmaly\nEmonie\nEmylee\nEric\nErnestina\nEsperansa\nEstephania\nEvalina\nFaiza\nFathima\nFaythe\nFelicitas\nFiorella\nFlorencia\nFrancessca\nGelsey\nGeovanna\nGilda\nGisella\nGracelyn\nGricelda\nGrisel\nGuillermina\nHadassah\nHafsa\nHaile\nHaili\nHallee\nHalli\nHannia\nHasmik\nHavana\nHera\nIlena\nImaan\nImara\nImari\nIqra\nIsla\nItsel\nItzanami\nItzell\nIvori\nIyari\nJacalyn\nJaci\nJacie\nJacklynn\nJadelynn\nJaeden\nJahayra\nJakelyn\nJalisa\nJalissa\nJaliyah\nJalyssa\nJan\nJaniah\nJanise\nJannel\nJazleen\nJazmen\nJema\nJenevieve\nJenise\nJennalyn\nJennelle\nJennessa\nJerica\nJesseca\nJesselyn\nJesslyn\nJillianne\nJisselle\nJocelynne\nJoei\nJonelle\nJorge\nJoselinne\nJudit\nJustyne\nKaely\nKahlan\nKaile\nKailea\nKaily\nKaitlan\nKaleah\nKamara\nKamiah\nKamya\nKandace\nKandice\nKareena\nKarolyn\nKarrington\nKaryssa\nKassey\nKassy\nKatheryne\nKathryne\nKatiana\nKaysee\nKearra\nKeeli\nKeianna\nKeily\nKelcie\nKelsee\nKennedie\nKenzy\nKera\nKerri\nKeyanna\nKeyona\nKhadija\nKhristina\nKiah\nKiaya\nKieara\nKiely\nKierstyn\nKimmy\nKiora\nKirsty\nKitana\nKitty\nKla\nKlaire\nKobi\nKoryn\nKrislyn\nKristel\nKrystin\nLael\nLaine\nLanay\nLanie\nLee\nLeeah\nLeeana\nLeiah\nLeiana\nLeigha\nLenora\nLeydi\nLiat\nLida\nLilianne\nLillyan\nLilybeth\nLissett\nLiyah\nLizabeth\nLizandra\nLizel\nLizzett\nLolita\nLondyn\nLorenza\nLorin\nLovely\nLuci\nLucine\nLulu\nLylah\nLynnette\nMaddisen\nMadysen\nMagdalen\nMagen\nMaiah\nMaili\nMajesty\nMalana\nMali\nMallika\nMalorie\nManasi\nManuel\nManuela\nMaraya\nMarelyn\nMarena\nMariadelosang\nMarilu\nMarlaina\nMarlowe\nMarlyne\nMarriah\nMarycarmen\nMaryjo\nMarykate\nMaryn\nMataya\nMattison\nMayela\nMayte\nMazie\nMeara\nMecca\nMelaney\nMelea\nMeranda\nMickaela\nMikela\nMilagro\nMilana\nMili\nMinami\nMinnie\nMirabella\nMisha\nMixtli\nMohini\nMonalisa\nMone\nMontanna\nMontzerrat\nMorganne\nMykaila\nMylene\nNaja\nNalah\nNandi\nNandini\nNasia\nNeeka\nNeftali\nNerissa\nNhu\nNichelle\nNiomi\nNissa\nNithya\nNuria\nNycole\nNyjah\nNyssa\nOceana\nOksana\nOliva\nOona\nOscar\nOsmara\nPandora\nPassion\nPatsy\nPayten\nPenny\nPerri\nPerris\nPhyllis\nPia\nPorsha\nPyper\nRashell\nRavneet\nRaychel\nReiko\nReya\nRheana\nRhyan\nRicki\nRima\nRisa\nRiver\nRoma\nRoni\nRoslyn\nRoxann\nRoya\nRufina\nRyane\nSaba\nSabreen\nSabrinna\nSadia\nSaida\nSaidy\nSaja\nSaleen\nSalvador\nSama\nSamone\nSamuel\nSanya\nSaraya\nSareena\nSaria\nSaylor\nSeraiah\nSeryna\nSevanna\nShaianne\nShanae\nShaniya\nShannel\nShaylin\nShereen\nShirin\nShyanna\nSiana\nSkyy\nSloan\nSolei\nSora\nSoumya\nSpring\nSreya\nSteffanie\nStephane\nStephenie\nSteven\nStorm\nStory\nSugey\nSumaya\nSumayyah\nSuraya\nSusy\nSuzy\nSyeda\nTali\nTalisa\nTallulah\nTamaya\nTayla\nTeressa\nTeri\nTerry\nTiarra\nTirzah\nTommi\nTorri\nTova\nTrianna\nTricia\nTrish\nTristyn\nTyana\nTyla\nUlyssa\nUriah\nVaneza\nVanity\nVenice\nVi\nVianka\nVibha\nVina\nViola\nVivi\nWanda\nWaverly\nWynne\nXcaret\nXianna\nYadhira\nYanelly\nYaqueline\nYaquelyn\nYareth\nYasamin\nYen\nYomara\nYudith\nYuma\nYuridia\nYuritzi\nYvanna\nZandra\nZarina\nZelda\nZhane\nZinnia\nZipporah\nZoya\nEmily\nAshley\nSamantha\nJessica\nAlyssa\nJennifer\nNatalie\nElizabeth\nAlexis\nJasmine\nSarah\nHannah\nMadison\nAndrea\nStephanie\nIsabella\nVanessa\nBrianna\nKimberly\nMaria\nKayla\nDestiny\nMichelle\nVictoria\nJacqueline\nLauren\nSophia\nMelissa\nLeslie\nAbigail\nNicole\nEmma\nGrace\nOlivia\nJulia\nAlexandra\nKatherine\nTaylor\nDiana\nMegan\nAmanda\nChloe\nRachel\nJocelyn\nAngela\nDaisy\nEvelyn\nIsabel\nSydney\nHailey\nAngelina\nAlondra\nMia\nAnna\nAriana\nSavannah\nKaitlyn\nKarina\nGabriela\nCrystal\nAngelica\nAlejandra\nMelanie\nEsmeralda\nValerie\nSara\nRebecca\nAdriana\nSofia\nHaley\nBriana\nKaren\nAlexa\nDaniela\nAna\nAmy\nValeria\nFaith\nNayeli\nCynthia\nSierra\nBrenda\nGuadalupe\nAllison\nMarissa\nZoe\nAmber\nDanielle\nMaya\nChristina\nJordan\nSabrina\nMadeline\nMariah\nMorgan\nJasmin\nKarla\nKatelyn\nGiselle\nJuliana\nCatherine\nJenna\nArianna\nLaura\nNatalia\nTrinity\nCassandra\nTiffany\nJazmin\nNancy\nMonica\nBrooke\nErika\nWendy\nVeronica\nClaire\nKelly\nAudrey\nBianca\nFatima\nAlicia\nGabriella\nJoanna\nIsabelle\nJade\nPriscilla\nCindy\nRuby\nYesenia\nKaylee\nMary\nMackenzie\nMiranda\nKatie\nMakayla\nGabrielle\nLiliana\nAlexandria\nErin\nJazmine\nAlexia\nBreanna\nLily\nAva\nKylie\nPaola\nAnahi\nAngel\nDesiree\nAaliyah\nCaroline\nPaige\nGenesis\nDenise\nMariana\nCarolina\nCaitlin\nGisselle\nVivian\nErica\nKassandra\nBailey\nSandra\nMikayla\nSerena\nNaomi\nShelby\nJulianna\nCecilia\nCeleste\nJillian\nRiley\nLizbeth\nLesly\nBritney\nClarissa\nKathryn\nCassidy\nChristine\nApril\nCourtney\nJulissa\nKate\nKiara\nLeah\nElena\nRosa\nEmely\nChelsea\nClaudia\nViviana\nJamie\nCheyenne\nJulie\nJada\nMarina\nLindsey\nSophie\nAileen\nMelody\nPaulina\nAutumn\nBrittany\nMonique\nElla\nLeilani\nSummer\nCristina\nJaqueline\nLillian\nAngie\nJenny\nCarmen\nRaquel\nAriel\nMarisol\nPatricia\nKatrina\nIrene\nItzel\nJanet\nGianna\nCamille\nHeather\nNadia\nShannon\nKaitlin\nKelsey\nCharlotte\nDulce\nMarlene\nMadelyn\nMayra\nCaitlyn\nEva\nSelena\nMolly\nTatiana\nIris\nKristen\nJordyn\nYasmin\nKendall\nAdrianna\nMiriam\nAlina\nLesley\nKristina\nMargaret\nMaritza\nMya\nAmerica\nPerla\nHanna\nNathalie\nDelaney\nKiana\nMarilyn\nMckenna\nAliyah\nKennedy\nKrystal\nMartha\nTeresa\nCitlalli\nHelen\nJosephine\nNoemi\nHayley\nNina\nMalia\nLinda\nMichaela\nAraceli\nRebekah\nRuth\nSkylar\nYvette\nHope\nCarly\nNataly\nAlma\nBethany\nDaphne\nGloria\nBrisa\nBrittney\nLizette\nNatasha\nCristal\nKylee\nAmelia\nAlissa\nKathleen\nElisa\nMadeleine\nMonserrat\nDaniella\nDominique\nHeidi\nSarai\nAvery\nJohanna\nCarla\nEsther\nLuz\nAlison\nElise\nJanelle\nLorena\nAnnika\nArlene\nBryanna\nJacquelyn\nKira\nMarisa\nAnnie\nFernanda\nRose\nHolly\nLisa\nAmaya\nSavanna\nKyra\nBlanca\nPhoebe\nSonia\nAthena\nHeaven\nIvy\nPayton\nLucy\nCamryn\nLindsay\nMakenna\nTara\nYuliana\nAshlyn\nEdith\nEstefania\nLucia\nStephany\nAurora\nLeila\nKailey\nKyla\nLayla\nNevaeh\nSadie\nAubrey\nDiamond\nMelina\nSusana\nCameron\nLauryn\nReyna\nSasha\nAlana\nHaylee\nPeyton\nFiona\nMargarita\nBridget\nPrecious\nTania\nClara\nLydia\nMeghan\nRenee\nTanya\nAlice\nDana\nJoana\nCasey\nMckenzie\nCarina\nFrancesca\nLizeth\nGillian\nJoselyn\nJuliet\nKatelynn\nMaribel\nMariela\nSharon\nKendra\nLeticia\nRylee\nBeatriz\nCarissa\nLitzy\nMaggie\nStacy\nElisabeth\nMikaela\nSusan\nAngelique\nCierra\nEsperanza\nPamela\nYasmine\nDelilah\nEileen\nGiovanna\nJane\nYadira\nAnastasia\nAnnabelle\nGracie\nKathy\nNayely\nAnne\nEliana\nTiana\nAnnette\nAsia\nTalia\nAracely\nBrooklyn\nJudith\nRachael\nSidney\nAllyson\nAnika\nArely\nBella\nMercedes\nCitlali\nEliza\nMarie\nTessa\nDalia\nFabiola\nDarlene\nJaden\nEden\nGenevieve\nBerenice\nDamaris\nDeja\nNoelle\nSerenity\nSkyler\nAlexus\nAshlee\nCielo\nRaven\nRebeca\nSalma\nAbby\nDeanna\nIzabella\nNallely\nNoelia\nDestinee\nIvette\nRoxana\nSandy\nSilvia\nXimena\nCamila\nGina\nImani\nJuliette\nKamryn\nTyler\nJustine\nKasandra\nLisette\nHazel\nJessie\nSheila\nYazmin\nCiara\nKara\nAimee\nJeanette\nLarissa\nVirginia\nAlize\nElaine\nJoy\nPaula\nRosemary\nHana\nKaila\nAylin\nKenia\nEstrella\nKassidy\nCeline\nGraciela\nHailee\nTina\nYajaira\nZoey\nLourdes\nRocio\nSage\nTabitha\nTori\nBrenna\nCarolyn\nEmilie\nIsis\nJanette\nJazlyn\nJovanna\nLilian\nSarahi\nBelen\nFrida\nJackeline\nLaila\nLena\nLilly\nNathaly\nPaloma\nSienna\nDafne\nDayana\nJohana\nKarissa\nParis\nSkye\nFelicity\nJimena\nKirsten\nMakenzie\nNia\nCatalina\nJoyce\nMelany\nViolet\nAdilene\nKenya\nKristin\nSimone\nAbril\nAlessandra\nCasandra\nEmilia\nStella\nBarbara\nDiane\nJayden\nKaylie\nMireya\nPiper\nReina\nRhiannon\nShayla\nXochitl\nAngeline\nAnissa\nEleanor\nMelinda\nNorma\nYvonne\nAreli\nCitlaly\nAlisa\nEmilee\nGeorgia\nKristine\nMadisyn\nMarlen\nNicolette\nPriscila\nStacey\nAshlynn\nAzucena\nDianna\nHallie\nIngrid\nLea\nMakena\nMontserrat\nRita\nAnayeli\nAshleigh\nEve\nJaclyn\nJanessa\nJewel\nJulianne\nKaya\nRegina\nSylvia\nBrandy\nBreana\nDakota\nHunter\nJayla\nJosie\nLacey\nMagdalena\nMicaela\nNikki\nNyah\nRyan\nTatum\nThalia\nAnya\nAshly\nEllie\nGladys\nHelena\nJoseline\nLeanna\nSheyla\nYessenia\nYulissa\nDeborah\nIsabela\nJaylene\nLiana\nMacy\nMariam\nTamara\nEvelin\nKaitlynn\nKiley\nMaricela\nNichole\nNora\nOdalis\nReagan\nShirley\nGrecia\nLila\nViridiana\nWhitney\nMarcela\nRosalinda\nSavanah\nVanesa\nAlanna\nAlisha\nAyanna\nCheyanne\nFelicia\nLucero\nTamia\nYoselin\nAnn\nDonna\nEllen\nFrances\nJaquelin\nJenifer\nLuisa\nOdalys\nTheresa\nYolanda\nAlyson\nDestiney\nElsa\nGalilea\nMarley\nStefanie\nYahaira\nYareli\nArielle\nConnie\nDesirae\nHillary\nIliana\nLogan\nRoxanna\nCharlize\nElissa\nJacquelin\nJulieta\nKeila\nRoxanne\nSelina\nAlena\nCallie\nEunice\nJadyn\nLilliana\nNelly\nJaneth\nJayda\nJoanne\nJuana\nMagaly\nTaryn\nYamilet\nAnais\nAstrid\nCambria\nDenisse\nDevyn\nEstefani\nKatarina\nKelli\nKianna\nMaryjane\nRaylene\nSarina\nTammy\nTracy\nAntonia\nChristy\nEstefany\nKasey\nKatia\nLexi\nLexie\nLina\nNathalia\nValentina\nAnjali\nEricka\nJackelyn\nJaelyn\nJovana\nJustice\nKayleigh\nKaylin\nLuna\nMallory\nNadine\nSally\nSerina\nTayler\nAddison\nAlaina\nAnaya\nAyana\nCalista\nCandice\nCelia\nHalle\nIndia\nIsela\nJanae\nJanice\nLara\nLidia\nLynette\nMaia\nMiracle\nBrandi\nDevin\nGwendolyn\nHarmony\nKailee\nKatelin\nMadilyn\nMina\nShyanne\nSiena\nSimran\nXitlaly\nAmari\nAnabel\nAryana\nAryanna\nBryana\nGeorgina\nGriselda\nJayleen\nJulisa\nLilia\nMaxine\nShreya\nYaritza\nDelia\nGia\nKayley\nLaisha\nLia\nLola\nMaddison\nMarisela\nMckayla\nMeredith\nScarlett\nTatyana\nAinsley\nAliza\nBrianne\nCara\nCiera\nFlor\nGissel\nJolie\nKrista\nLana\nXiomara\nXitlali\nAiyana\nAlia\nAliya\nAnai\nCharlene\nColleen\nElaina\nElyssa\nMaile\nNatali\nShania\nValery\nVianey\nAmalia\nAmara\nAngeles\nBaylee\nBeverly\nBrissa\nCamilla\nCitlally\nDanna\nJacklyn\nJoelle\nKeyla\nLupita\nMarianna\nMeagan\nPenelope\nQuinn\nAleah\nArlette\nChanel\nDayanara\nIsha\nJessenia\nJuanita\nKarly\nKatlyn\nKiera\nMadyson\nMyra\nPrincess\nRosario\nRubi\nTia\nYessica\nAisha\nAlayna\nAllie\nBridgette\nConsuelo\nCorina\nHeidy\nIreland\nIrma\nKaelyn\nMelisa\nNeha\nNikita\nOlga\nRachelle\nRegan\nRylie\nToni\nWillow\nYaire\nYasmeen\nAdamari\nAdela\nAnita\nAniya\nAnnabel\nAnnalise\nCandace\nCora\nHaylie\nJaiden\nKristy\nLaurel\nLilianna\nMarian\nMichele\nNeida\nRobin\nRyann\nSelene\nShayna\nTianna\nUnique\nZoie\nAnnabella\nBeatrice\nBonnie\nCelina\nCorinne\nEbony\nElyse\nJocelyne\nKristal\nLeanne\nMadalyn\nMalena\nMarcella\nPriya\nSaira\nTess\nYaneli\nAria\nAyla\nJailene\nJocelin\nKatharine\nKiersten\nMelia\nMilagros\nMonet\nPauline\nReese\nSade\nShea\nAda\nAlani\nAleena\nBeyonce\nCali\nCayla\nDanica\nDanika\nDavina\nGissell\nJaime\nKali\nMacie\nMagali\nMara\nPearl\nSky\nSydnee\nTais\nAdamaris\nAlexandrea\nAubree\nBertha\nCarley\nCarol\nCathy\nCharisma\nDevon\nDylan\nEstela\nGisel\nHailie\nIvana\nJazmyn\nJocelynn\nKaleigh\nKarime\nKatya\nLesli\nLissette\nMandy\nMindy\nNayelli\nRhea\nSamara\nSonya\nTiara\nVerenice\nYarely\nZaira\nAditi\nAdrienne\nAlysa\nAnabelle\nBernice\nBrooklynn\nDahlia\nDanae\nDeisy\nDolores\nEvangelina\nGemma\nHarley\nIvonne\nKaiya\nMadelynn\nMadisen\nMaira\nMicah\nMilena\nMiya\nRayna\nRosalie\nSydnie\nYulisa\nAni\nAzul\nBailee\nBrielle\nCharity\nChiara\nEmerald\nGeraldine\nJasmyn\nKaela\nKaley\nKaterina\nKellie\nLisbeth\nMariel\nPricilla\nRosie\nStar\nTrisha\nVivianna\nAbbey\nAnahy\nArleth\nClare\nClarisa\nDania\nDivya\nDorothy\nGisell\nJoselin\nKacie\nKaia\nKailyn\nKaylah\nKeely\nKierra\nNoor\nSanjana\nSaray\nTeagan\nAlly\nAmaris\nCarrie\nChelsey\nJesenia\nKayleen\nKaylynn\nKelsie\nLluvia\nMaryann\nNatalya\nSariah\nSayra\nTierra\nAdeline\nAliah\nAmani\nAnamaria\nAnisa\nBrook\nCarlie\nCecelia\nDayna\nDina\nDrew\nElsie\nEmerson\nJustina\nLeia\nLorraine\nMaci\nMaricruz\nMira\nMyla\nPresley\nRia\nSelah\nShivani\nStefany\nVicky\nYamileth\nYesica\nAlex\nAlexys\nAlycia\nAnalisa\nBelinda\nBritany\nCandy\nChristiana\nColette\nDennise\nDestini\nElvira\nHilda\nJackie\nJena\nKacey\nKalea\nKarely\nKaryme\nKyleigh\nLeyla\nLondon\nMacey\nMaleah\nSheridan\nAbbie\nAniyah\nAriadna\nAsha\nAshton\nAsusena\nBetsy\nBetty\nChantal\nCinthia\nGeneva\nIvanna\nJessalyn\nJoan\nJosefina\nKaliyah\nKarlee\nKaylyn\nKenna\nMaliyah\nMarianne\nNatalee\nNoemy\nReilly\nRochelle\nSabina\nThania\nTyra\nAmira\nAnnalisa\nAnnamarie\nAshlie\nAyleen\nBernadette\nBrynn\nFarrah\nFranchesca\nGinger\nGiuliana\nIlene\nJolene\nKalani\nKarlie\nKaty\nKlarissa\nLoren\nMalaysia\nMeadow\nMilan\nMirna\nMonika\nParker\nReanna\nRobyn\nSana\nScarlet\nShyann\nSoraya\nSusanna\nSuzanne\nSydni\nWinter\nAilyn\nAislinn\nAngelita\nAntoinette\nAspen\nCoral\nDalila\nElle\nGizelle\nJanelly\nJudy\nKaylene\nKayli\nKyara\nLyndsey\nMarin\nMarlena\nMaryam\nMikaila\nMyrka\nNoel\nNya\nPricila\nSkyla\nStevie\nTatianna\nYaquelin\nZara\nAlysha\nAmie\nAmya\nAnanya\nAnisha\nAnyssa\nAvalon\nCassie\nChrista\nChristian\nChyna\nDaria\nFlora\nGiana\nJaida\nJana\nJanine\nJaquelyn\nJayde\nKeana\nLiberty\nLizet\nLucille\nMari\nMarlyn\nMarta\nMyah\nSalina\nSavana\nVioleta\nYanet\nYoana\nAdelina\nAmina\nAnnemarie\nAriella\nBriseida\nCaitlynn\nChantel\nChasity\nCherish\nDarla\nDesteny\nEmani\nEryn\nGema\nGisela\nGisele\nGwyneth\nHalie\nIsabell\nJackelin\nJaylynn\nJenelle\nJesse\nJoceline\nJourney\nKailani\nKamila\nKaylen\nKeilani\nKendal\nLacy\nLeyna\nLinnea\nMakaila\nMariadelcarmen\nMattie\nMercy\nMila\nMirella\nMirian\nMontana\nNyla\nPilar\nRianna\nShauna\nTaya\nValarie\nYamile\nYanira\nAlanis\nAline\nAnjelica\nArleen\nArmani\nBrigitte\nChase\nDaisha\nDalilah\nElianna\nFaviola\nIleana\nJanie\nJarely\nJazzlyn\nJennie\nKari\nLilah\nLynn\nMichell\nMimi\nMisty\nMorelia\nNaya\nPrisila\nRayleen\nRena\nRosemarie\nZulema\nAlexi\nAllyssa\nAlyna\nAnnelise\nBrianda\nCarson\nCatrina\nCienna\nCortney\nDaija\nDianne\nDora\nElia\nEmmalee\nEster\nEvangeline\nHaily\nHaleigh\nHaven\nHayden\nInez\nJaidyn\nJailyn\nJenessa\nJoleen\nJuliann\nKalia\nKarli\nKeeley\nKennedi\nKimberley\nLillie\nLucinda\nMaura\nMoriah\nNikole\nOfelia\nRaegan\nRaelene\nRaina\nRandi\nRiya\nShaylee\nShira\nSinai\nSirena\nSoleil\nSunny\nSuzette\nYara\nYsabel\nZainab\nZariah\nAbbigail\nAidan\nAja\nAlanah\nArabella\nAya\nBriza\nChelsie\nCinthya\nDarby\nDejah\nDestanie\nEvette\nFrankie\nGissele\nGlenda\nGreta\nIman\nIzabelle\nJanell\nJanely\nJannet\nJaya\nJazlynn\nJessika\nJoann\nJose\nKalyn\nKarisma\nKatalina\nKeren\nKim\nLiza\nLyric\nMadelyne\nMaiya\nMarielle\nMiah\nNalleli\nRamona\nRhianna\nSamanta\nShelly\nStarr\nTiffani\nXochilt\nZaria\nZitlaly\nAlaysia\nAlea\nAlysia\nAlyssia\nAminah\nAnabella\nAnessa\nAnusha\nBryn\nCarli\nClarice\nDasia\nDenice\nDesire\nDeysi\nEdna\nElvia\nEstephanie\nFrancisca\nGretchen\nImelda\nIyana\nJanel\nJaycee\nJayme\nJazmyne\nJeniffer\nJosselyn\nKarin\nKarizma\nKathia\nLianna\nMaren\nMika\nMona\nNayelie\nPriyanka\nRosalia\nSahar\nSanaa\nShaina\nShantal\nSunshine\nVerania\nVianna\nYanely\nYazmine\nZahra\nAhtziri\nAlexsandra\nAlivia\nAnastacia\nAnel\nAriyana\nArlyn\nAshely\nBelle\nCelest\nCloe\nDarcy\nDayanna\nDelanie\nDixie\nEstella\nFrancis\nHennessy\nHilary\nIda\nItalia\nIzabel\nJaedyn\nJaelynn\nJaylin\nJennah\nJesus\nJoslyn\nKai\nKameron\nKatheryn\nKeara\nKya\nLeann\nLeeann\nLeslye\nLiset\nLizett\nLouise\nMaegan\nMaranda\nMarbella\nMargot\nMatilda\nMikala\nMitzi\nMollie\nNailea\nNoa\nNoelani\nNydia\nPetra\nRosalba\nShani\nShawna\nSherlyn\nShyla\nSusie\nVenus\nVianca\nWinnie\nYulianna\nZitlali\nAida\nAlannah\nAllysa\nAlyse\nAnette\nAnnmarie\nAyah\nBobbi\nBreanne\nBria\nChanelle\nDaniel\nDarian\nDezirae\nDoris\nElexis\nEloisa\nElysia\nHeavenly\nIzel\nJalissa\nJanna\nJeanine\nJeannette\nJoey\nKaily\nKathya\nKeira\nKelsy\nLailah\nLaney\nLeilany\nLeona\nLexus\nLilyana\nLizzeth\nLupe\nLynda\nMaeve\nMalaya\nMariaisabel\nMay\nMelodie\nMonserrath\nNadya\nRyleigh\nSamira\nShakira\nShay\nSherry\nShiann\nSoledad\nSonali\nSuzanna\nTea\nTristen\nVania\nVianney\nVivien\nYael\nYoselyn\nYovana\nZaida\nZayra\nAdamary\nAdia\nAdina\nAdrian\nAkira\nAliana\nAlijah\nAmbar\nAnay\nAnushka\nAriadne\nAzalea\nBianka\nBryan\nBrynna\nCailey\nCailin\nChandler\nChristal\nCianna\nCorrine\nDanya\nDara\nDemi\nElicia\nEmelyn\nEsme\nEssence\nFrancine\nHaydee\nIran\nIxchel\nIyanna\nJacquelyne\nJael\nJasleen\nJasmyne\nJesica\nJill\nJoi\nKalista\nKeanna\nKenzie\nKiarra\nKyah\nKyana\nLeena\nLisbet\nLizbet\nLori\nLuciana\nLyla\nMabel\nMarcelina\nMarla\nMaureen\nMeaghan\nMillie\nMyranda\nNautica\nOsiris\nRachell\nRory\nSahara\nSaige\nStefani\nSulema\nTaina\nTamar\nTanvi\nTeresita\nThais\nTiffanie\nWendi\nXitlalic\nAbigayle\nAbriana\nAbrianna\nAide\nAlix\nAmberly\nAubrie\nAudra\nAzusena\nBrieanna\nCatarina\nCaylin\nChelsy\nCheryl\nChrystal\nCydney\nDallas\nDanyelle\nDaysi\nDebra\nDestinie\nDeziree\nDomonique\nElana\nElva\nErendira\nEsha\nEvelynn\nHadley\nHenna\nJaeda\nJalen\nJalynn\nJodie\nJordin\nJulieanna\nJune\nKaylani\nKayle\nKerry\nKiah\nKristi\nKylah\nLani\nLessly\nLexy\nLillyanna\nLiz\nLois\nLorelei\nLouisa\nMalina\nMargo\nMariaelena\nMariafernanda\nMaricarmen\nMariella\nMayte\nMegha\nMelani\nMinerva\nMonserat\nNaomy\nNayelly\nNidhi\nPhoenix\nRashel\nReece\nSela\nShae\nShaila\nSommer\nStacie\nStephania\nTahlia\nTallulah\nTherese\nYelitza\nYsabella\nAbigale\nAcacia\nAilene\nAime\nAiyanna\nAli\nAllegra\nAmethyst\nAmiya\nAnnaliese\nArriana\nAustin\nAysha\nBerenise\nBiridiana\nBrigette\nCarlee\nCecily\nCelestina\nChana\nChristie\nChyanne\nCiarra\nCorinna\nCosette\nCristy\nDawn\nDeana\nDivine\nElida\nElisha\nEloise\nElsy\nEmalee\nEmery\nEmili\nEugenia\nEvan\nEvie\nGiulia\nHarleen\nHolland\nIshika\nIvon\nIvory\nJacey\nJalyn\nJaslyn\nJaylen\nJean\nJeannie\nJhoana\nJiselle\nJulian\nJulieann\nJulyssa\nKailah\nKailynn\nKalei\nKarley\nKaycee\nKelley\nKelsi\nKirra\nKiya\nKourtney\nKristiana\nKrysta\nKrystina\nLisset\nLizzette\nLucie\nMariyah\nMarlee\nMitzy\nNicola\nNicolle\nNidia\nNiya\nNohemi\nNubia\nNylah\nRayven\nRiana\nSahana\nSalena\nSapphire\nSequoia\nShantel\nSocorro\nStarla\nTrina\nVannesa\nVivienne\nZenaida\nZuri\nAdara\nAdelaide\nAiden\nAlexzandria\nAlliah\nAlora\nAmia\nAmirah\nAmisha\nAnalicia\nAnalise\nAnanda\nAnneliese\nArden\nAshanti\nAubrianna\nAudriana\nAudrie\nAvani\nBayleigh\nBaylie\nBecky\nBianey\nBrandie\nBreann\nBreeana\nBrionna\nCarmel\nCelena\nCharlie\nChaya\nCorrina\nDajah\nDaphney\nDasha\nDebora\nEmme\nFayth\nFiorella\nGianni\nGiavanna\nGladis\nHalee\nHonesty\nIndya\nInes\nIrlanda\nIsaura\nJacinda\nJacquelynn\nJanay\nJanett\nJaylyn\nJennyfer\nJewell\nJodi\nJonathan\nJoselyne\nKaili\nKala\nKaroline\nKatlynn\nKaytlin\nKevin\nKhalia\nKortney\nKyrah\nLaysha\nLeana\nLexis\nLezly\nLili\nLilibeth\nLilli\nLillianna\nLizabeth\nMalika\nMansi\nManuela\nMarielena\nMarleen\nMeera\nMeghna\nMelannie\nMelony\nMerari\nMerissa\nMichael\nMoncerrat\nNalani\nNanci\nNellie\nNiki\nOriana\nPatience\nPooja\nPrisilla\nQuincy\nRaelynn\nRavyn\nReem\nRemy\nRenata\nRina\nRowan\nSabine\nSakura\nSarahy\nSaylor\nShana\nSharlene\nShayne\nSindy\nSonja\nStefania\nTaliyah\nXitlalli\nYamilex\nYocelin\nYuriana\nZuleyma\nAdele\nAjah\nAlba\nAlecia\nAlesia\nAlliyah\nAmairany\nAnahit\nAnali\nAnaliese\nAnela\nAnh\nAnnabell\nAranza\nArlett\nAutum\nAyesha\nBibiana\nBillie\nBriseyda\nCaleigh\nCandelaria\nCesilia\nCharis\nCitlalic\nClarisse\nCloey\nColby\nConstance\nCori\nDaysha\nDeandra\nDebbie\nDesiray\nDestany\nDeyanira\nElina\nEllery\nElly\nEmi\nEmiko\nEvelina\nFarah\nFaye\nFlorence\nGeena\nGracelyn\nHarper\nIlana\nIsamar\nJacy\nJahaira\nJaila\nJannelle\nJayna\nJazzmin\nJolina\nJoscelyn\nKaci\nKalina\nKamille\nKareena\nKarol\nKarolina\nKatherin\nKathrine\nKealani\nKelsea\nKorina\nKristie\nLacie\nLeandra\nLela\nLilith\nLilyanna\nLinette\nLiseth\nLita\nLynnette\nMacayla\nMaite\nMaliah\nMariadejesus\nMariajose\nMarjorie\nMaryanne\nMarykate\nMarylin\nMelyssa\nMidori\nMonzerrat\nMylee\nNeveah\nNisha\nNour\nRana\nRemi\nRenae\nRio\nRomina\nRosalina\nRosalyn\nSaba\nSachi\nSanam\nSeanna\nSerene\nShaye\nShruti\nSierrah\nSiobhan\nSol\nSteffany\nStephani\nStormy\nTalya\nTaniya\nTayla\nThea\nTricia\nVenessa\nVera\nVeronika\nXitlally\nXochil\nYenifer\nYoseline\nYuliza\nYuri\nYusra\nAarushi\nAdelaida\nAiram\nAleksandra\nAlessia\nAlexie\nAlexxis\nAlianna\nAlin\nAmal\nAmelie\nAneesa\nAngelika\nAnia\nAnnamaria\nAnthony\nArianne\nArisbeth\nAsiah\nAsucena\nAtiana\nAyumi\nBobbie\nBreeanna\nCailyn\nCallista\nCameryn\nCaren\nCathryn\nCaylee\nCelene\nCharlee\nChristianna\nChynna\nCleo\nCristian\nCyan\nDariana\nDarya\nDeena\nDenae\nDiya\nDulcemaria\nElisia\nEman\nEmelia\nEmelie\nEmiley\nEmmie\nEmmily\nFreya\nGenevie\nHollie\nIdalia\nIdania\nIrie\nIrina\nJadah\nJalyssa\nJanis\nJaymee\nJazelle\nJazlin\nJezebel\nJianna\nJisselle\nJordana\nJosette\nKaelynn\nKaleah\nKalena\nKandyce\nKareli\nKarena\nKarmen\nKarsyn\nKaryn\nKeona\nKeyara\nKhushi\nKiely\nKinsey\nKiran\nKlara\nLeigh\nLisseth\nLuzmaria\nMadysen\nMagda\nMagnolia\nMaisie\nMakaela\nMakala\nMalak\nMalea\nMandi\nMarguerite\nMariaguadalupe\nMarlenne\nMarlin\nMaryah\nMarylou\nMarysol\nMele\nMelenie\nMicayla\nMikaylah\nMildred\nMiyah\nMoira\nMonae\nMyriam\nNaia\nNailah\nNathali\nNereida\nNiah\nNiamh\nNichelle\nPatty\nRania\nRayanna\nRikki\nRosaura\nRoselyn\nRoxy\nSascha\nSavina\nSelma\nSheccid\nShianne\nShriya\nSujey\nTabatha\nTaelor\nTasha\nTeah\nThelma\nTrista\nVannessa\nVenecia\nVivianne\nVivica\nXiana\nYadhira\nYocelyn\nYuridia\nZaina\nZion\nZoya\nAilin\nAleida\nAlesha\nAllissa\nAlona\nAlyssah\nAnakaren\nAndrew\nAngelic\nAnneke\nAnoushka\nApryl\nArlin\nArmine\nArya\nAveri\nAzaria\nBeth\nBetsaida\nBlake\nBrandee\nBreonna\nCady\nCarmella\nCesia\nChantelle\nChastity\nChloee\nChristopher\nCindi\nCollette\nCristiana\nDamariz\nDavid\nDeija\nDeseree\nDorian\nEgypt\nElliana\nEllis\nEmmy\nEriana\nEstelle\nEvelyne\nFabiana\nGala\nGenessis\nGeorgiana\nGeovanna\nGiovana\nGiulianna\nGricelda\nGuillermina\nGurleen\nGwenyth\nHalley\nHuda\nIdaly\nIlse\nImari\nIvett\nJaileen\nJamila\nJannette\nJaslynn\nJasmeen\nJazzmine\nJeana\nJenae\nJenica\nJenniffer\nJezelle\nJiana\nJoely\nJoshua\nJosselin\nJules\nKaelin\nKalie\nKallie\nKambria\nKarma\nKatlin\nKayden\nKaylan\nKaytlyn\nKeyana\nKia\nKitzia\nKiyah\nKristyn\nKyrsten\nLainey\nLanie\nLaurie\nLilit\nLivia\nLora\nLorna\nLusine\nMadai\nMadalynn\nMadelin\nMae\nMaha\nMai\nMarion\nMaryssa\nMatthew\nMaycee\nMeghana\nMehak\nMekayla\nMeliza\nMercedez\nNaila\nNaylea\nNely\nNeomi\nNova\nNovalee\nOceana\nPaisley\nPatrice\nPortia\nPromise\nQueenie\nRaeanna\nRaya\nRayanne\nRene\nRheanna\nRileigh\nRoberta\nRomy\nRoni\nRosamaria\nSalem\nSamia\nSammantha\nSedona\nShanell\nShanna\nShanya\nSheena\nSheily\nSneha\nSolana\nSusannah\nSymone\nSymphony\nTala\nTaliah\nTeri\nTerra\nTerri\nTorri\nTracey\nTreasure\nTristan\nVicki\nVy\nXenia\nYakelin\nYatzari\nZoila\nZulma\nAbagail\nAbbygail\nAddie\nAdria\nAdrianne\nAishwarya\nAislin\nAlaura\nAleeza\nAlessa\nAlizea\nAllena\nAmairani\nAmiyah\nAmmy\nAnaiah\nAnallely\nAnaly\nAnalyssa\nAnayely\nAndie\nAndriana\nAngelene\nAngelia\nAngelie\nAnkita\nAnnalee\nAreanna\nAriah\nAshleen\nAshli\nAubry\nAundrea\nAura\nAurelia\nAylene\nAysia\nAzariah\nBiviana\nBraelyn\nBrea\nBree\nBriann\nBrigid\nCaira\nCallan\nCambrie\nCampbell\nCaprice\nCarlin\nCasie\nCatelyn\nCaterina\nCerena\nChannel\nCharmaine\nChristen\nChristin\nCordelia\nDaeja\nDani\nDarlin\nDelmy\nDymond\nDynasty\nEboni\nEduardo\nEesha\nElizabet\nEmber\nEmeli\nEmeline\nEmelly\nEmilly\nEmmaline\nEnya\nErykah\nEvelia\nEzra\nFallon\nFanny\nFatimah\nFionna\nGabriel\nGigi\nGisella\nGrisel\nHadassah\nHanah\nHaya\nHayli\nHelene\nIbeth\nIndigo\nIndira\nItati\nJacklin\nJaeden\nJakeline\nJamison\nJanai\nJaylah\nJaylee\nJazmen\nJeannine\nJenesis\nJenevieve\nJessa\nJessi\nJissel\nJoie\nJorden\nJordynn\nJulieana\nJulyana\nJurnee\nKaile\nKalaya\nKarinna\nKaris\nKaryna\nKatey\nKathlyn\nKeily\nKeri\nKeziah\nKilee\nKirstin\nKora\nKrislyn\nKyndall\nLaiza\nLeilah\nLeonor\nLitzi\nLucila\nLuis\nLulu\nMackenna\nMaisy\nMakaylah\nMalaika\nMalissa\nMarcy\nMargaux\nMariely\nMaritsa\nMarycarmen\nMatilde\nMckinley\nMea\nMeg\nMeilani\nMellanie\nMilca\nMonserratt\nMoorea\nNayla\nNereyda\nNerissa\nNeyda\nNika\nNitya\nOdette\nOrianna\nPeri\nRain\nRayann\nReema\nRhyan\nRicha\nRichelle\nRilee\nRonni\nRosy\nRyley\nSamaria\nSanai\nSarena\nSarrah\nSawyer\nShaelyn\nShane\nShaylin\nShelbie\nShelley\nShelsea\nSheryl\nSheyenne\nShireen\nShruthi\nSianna\nSicily\nSkylah\nSvetlana\nSylvie\nTai\nTaiz\nTalisa\nTanisha\nTanner\nTawny\nTayah\nTheodora\nTierney\nTonya\nTriniti\nTristin\nUma\nVanity\nWynter\nYanelly\nYaneth\nYisel\nYoanna\nYsabelle\nZayda\nZhane\nZoee\nAaliah\nAaliya\nAbbigale\nAdriane\nAkilah\nAleigha\nAlejandrina\nAlejandro\nAlexes\nAlexsis\nAleyda\nAlise\nAlisia\nAlitzel\nAlizabeth\nAlizah\nAllanah\nAlysse\nAlyza\nAmaia\nAmayrani\nAmi\nAmity\nAmrit\nAmrita\nAnabell\nAnaid\nAnaiya\nAndi\nAndreana\nAngelena\nAngeli\nAngelyna\nAnja\nAnjolie\nAnnalyse\nAolani\nAraseli\nArgelia\nAriela\nArissa\nArizbeth\nArlen\nArlet\nArline\nAshlin\nAshna\nAsya\nAudrianna\nAustyn\nAyden\nAyiana\nAzure\nBeatris\nBethanie\nBlair\nBriannah\nBriceida\nBryce\nCamelia\nCarisa\nCarisma\nCarolyne\nCharissa\nCherie\nCiana\nCiclali\nDaelyn\nDaijah\nDamiana\nDarleen\nDasani\nDaysy\nDelana\nDelany\nDenver\nDeserie\nDevan\nDevynn\nDinah\nDionna\nDonya\nDoreen\nElayna\nEleni\nElexus\nEmmalyn\nEstephania\nEternity\nEulalia\nFrancia\nFrancisco\nGena\nGeorgette\nGiovanni\nGissela\nGlory\nGracee\nGrayson\nHaidee\nHaileigh\nHali\nHanan\nHannia\nHayle\nIdalis\nIleen\nImogen\nIshani\nIsobel\nItzell\nIveth\nIyari\nIzabela\nJacquelene\nJadelynn\nJaide\nJailah\nJailine\nJaimie\nJakelin\nJalene\nJames\nJami\nJaniece\nJanina\nJannely\nJasmen\nJason\nJaspreet\nJassmin\nJaycie\nJaydy\nJayline\nJeanne\nJessy\nJessyca\nJewels\nJisel\nJoelene\nJosalyn\nJoshlyn\nJuan\nJullianna\nKaden\nKady\nKaileigh\nKailie\nKamari\nKarenna\nKarishma\nKarolyn\nKassie\nKatharina\nKavya\nKazandra\nKemberly\nKeyanna\nKezia\nKhadija\nKhloe\nKiani\nKimberlyn\nKori\nLailani\nLania\nLaniya\nLayne\nLeeah\nLeela\nLeonela\nLeslee\nLibby\nLilianne\nLillyana\nLinsey\nLoretta\nMadilynn\nMaiah\nMalorie\nMana\nManasi\nMartina\nMarycruz\nMarygrace\nMarylu\nMason\nMattison\nMeranda\nMilly\nMirka\nMiyu\nMoncerat\nMonserath\nMuskaan\nMyka\nNahomi\nNaja\nNikhita\nNirvana\nNoella\nNohely\nNola\nNuvia\nOlyvia\nPaulette\nPhyllis\nPreciosa\nQueen\nRacquel\nRae\nRaeanne\nRaelyn\nRaena\nRashell\nRayne\nReana\nRebeka\nRicki\nRosalind\nRoseanna\nRoselia\nRoshni\nRosita\nRoya\nSamaya\nSamone\nSamya\nSanaya\nSaraya\nSaskia\nSecilia\nSeema\nSeleste\nSemaj\nShara\nShelsy\nSherly\nSiera\nSitlaly\nSurena\nSyann\nSyeda\nTajanae\nTalitha\nTarah\nTatyanna\nTegan\nTehya\nTeya\nThanya\nTiani\nTiare\nTiarra\nTorrey\nTrinidad\nTyana\nVeda\nVienna\nWinifred\nXena\nYailin\nYaqueline\nYasamin\nYazmeen\nYnez\nYohana\nZena\nZia\nZina\nZinnia\nAalyah\nAdalia\nAdreanna\nAgnes\nAidee\nAilani\nAine\nAisling\nAkemi\nAlaya\nAlayah\nAleea\nAleia\nAlesandra\nAlethea\nAlexcia\nAlexx\nAleyah\nAlida\nAlissandra\nAllisa\nAlyanna\nAlyce\nAlynna\nAlyssamarie\nAlyvia\nAmandeep\nAmbria\nAmeera\nAmiah\nAmparo\nAnaiyah\nAnalaura\nAndreina\nAngelmarie\nAnjelina\nAnny\nAnyah\nAparna\nArin\nArionna\nArshia\nArushi\nAshleynicole\nAshtyn\nAsma\nAsuzena\nAthina\nAverie\nAzalia\nBaby\nBetzabeth\nBetzy\nBita\nBliss\nBlossom\nBlythe\nBrandon\nBritania\nBrithany\nBronte\nBrookelynn\nBrynne\nCaley\nCalli\nCami\nCarey\nCarlos\nCarlyn\nCarmelita\nCarolynn\nCeanna\nChandra\nChante\nChantell\nChristabelle\nClair\nConcepcion\nCydnee\nDafney\nDalena\nDallana\nDaniele\nDanitza\nDarien\nDarline\nDeirdre\nDelaina\nDelainey\nDelani\nDenyse\nDesarae\nDesirea\nDevina\nDevine\nDinora\nDomenica\nDominic\nDulse\nDyamond\nDyani\nDyanna\nDyanne\nEli\nElijah\nElinor\nEllena\nElyza\nEma\nEmelin\nEnedina\nErandi\nErynn\nEsly\nEstefanie\nEsthefany\nFaythe\nFelisha\nFiorela\nFiza\nGaby\nGianella\nGiavonna\nGimena\nGlendy\nGwen\nHaile\nHala\nHallee\nHarlee\nHarlie\nHarneet\nHasina\nHattie\nHayleigh\nIlianna\nIlliana\nIona\nIsadora\nItaly\nIyonna\nIzabell\nJacalyn\nJacquline\nJadelyn\nJaela\nJala\nJalena\nJamia\nJamilet\nJanaya\nJaniya\nJarelly\nJayne\nJensen\nJenyfer\nJewelia\nJohannah\nJohnna\nJolin\nJordann\nJosephina\nJosseline\nJuliza\nJuly\nJulyanna\nKaetlyn\nKaiah\nKaleena\nKalli\nKallista\nKally\nKalyssa\nKamaria\nKamilah\nKamya\nKarisa\nKaryssa\nKatelynne\nKateri\nKatty\nKay\nKaytlynn\nKearra\nKeelin\nKeiry\nKellee\nKendyl\nKendyll\nKennia\nKiarah\nKimberli\nKimora\nKiona\nKloe\nKrishna\nKrysten\nKrystin\nKylea\nKyli\nKylia\nKyndra\nKyrie\nLaci\nLanae\nLaritza\nLaryssa\nLeeanna\nLiane\nLianne\nLibni\nLior\nLivier\nLolita\nMadalin\nMadelynne\nMadylin\nMahek\nMakenzi\nMalerie\nManpreet\nMaraya\nMarelyn\nMarialuisa\nMarifer\nMariko\nMarkie\nMarleni\nMarleny\nMarline\nMaryanna\nMaryn\nMayah\nMaycie\nMayela\nMayeli\nMaylene\nMaylin\nMegumi\nMichel\nMichela\nMiguel\nMikenna\nMikyla\nMilagro\nMilla\nMillicent\nMirabelle\nMixtli\nMorgen\nMykaela\nMykaila\nNahomy\nNaomie\nNariah\nNasia\nNena\nNhi\nNiurka\nNoely\nOliva\nOona\nOsmara\nPayten\nPerri\nQuiana\nRacheal\nRadhika\nRaeann\nRaisa\nRayana\nRebekkah\nRian\nRiver\nRosio\nRoslyn\nRuhi\nSafia\nSafiya\nSaleen\nSalome\nSaloni\nSamyuktha\nSayda\nSean\nSecret\nSeidy\nSerafina\nShaelynn\nShai\nShanelle\nShannen\nShasta\nShawn\nShaya\nShealyn\nShekinah\nShiloh\nShyan\nShylah\nSinahi\nSiomara\nSissi\nSkyelar\nSkylee\nSkylynn\nSofie\nSolange\nSona\nSpencer\nStephenie\nTaja\nTali\nTalin\nTam\nTamera\nTami\nTasia\nTeanna\nTereza\nTionna\nTommie\nTory\nTuesday\nTyanna\nTyla\nUna\nVaishnavi\nValentine\nViviane\nVivika\nYaira\nYanelli\nYaslin\nYeimi\nYennifer\nYezenia\nYissel\nYobana\nYovanna\nYuna\nYunuen\nYuritzy\nZahira\nZamantha\nZarina\nZayla\nZayna\nZowie\nAanya\nAashna\nAbilene\nAbygail\nAddy\nAdelene\nAdora\nAdrina\nAerial\nAfrica\nAishani\nAislyn\nAixa\nAkayla\nAkhila\nAlandra\nAlaysha\nAleeya\nAlenna\nAlexander\nAlexiss\nAlexy\nAlexzandra\nAleya\nAleyna\nAlique\nAlisandra\nAlizae\nAlizay\nAllura\nAllyn\nAlyah\nAlyssamae\nAlyssandra\nAlysson\nAlyzza\nAmada\nAmanpreet\nAmaria\nAmariah\nAmarilis\nAmeena\nAmna\nAmyah\nAn\nAndraya\nAndres\nAndreya\nAndria\nAndromeda\nAngella\nAngelle\nAngellina\nAngely\nAnisah\nAnise\nAnkitha\nAnnalea\nAnnalia\nAnnastasia\nAnneth\nAnnica\nApoorva\nAreana\nArianah\nAriane\nArieanna\nAris\nArleene\nArrianna\nArsema\nAshira\nAshleymarie\nAshlynne\nAthziry\nAugust\nAunna\nAvelina\nAviana\nAvigail\nAviva\nAvonlea\nAyannah\nAylen\nAyline\nAyushi\nAzriel\nBayley\nBelanna\nBenita\nBetsabe\nBetzaira\nBonita\nBreauna\nBreena\nBriahna\nBricia\nBridgett\nBrithney\nBritni\nBrittani\nBrittnee\nBrookelyn\nBryna\nCaelyn\nCaila\nCailee\nCaitlen\nCalissa\nCalla\nCarmela\nCarmina\nCassia\nCecile\nCelestial\nCelestine\nCerenity\nCerina\nCharley\nCharly\nChenoa\nCherise\nCheyanna\nCheyene\nChiana\nCiclaly\nClaribel\nClarise\nCoco\nCorin\nCorrinne\nCorryn\nCourteney\nCruz\nDaena\nDaina\nDaissy\nDaja\nDanaya\nDanni\nDannielle\nDavianna\nDayja\nDaysia\nDeanne\nDeasia\nDeema\nDeisi\nDelila\nDemetria\nDena\nDenia\nDestani\nDestenie\nDestyni\nDiamonique\nDisha\nDivina\nDonia\nDream\nEda\nEilleen\nEkaterina\nElani\nElba\nElexia\nEllison\nElona\nElora\nEly\nElysa\nEmiliana\nEmillie\nEmmely\nErandy\nErianna\nErick\nErina\nErinn\nEris\nErnestina\nEsli\nEsmerelda\nEsteffany\nEstephany\nEvalyn\nEvany\nEveny\nEvin\nFaizah\nFathima\nFatma\nFion\nFrancheska\nFrieda\nGabriele\nGardenia\nGelsey\nGenisis\nGenna\nGennifer\nGesselle\nGizell\nGracen\nGracia\nGraciella\nGreer\nGuiselle\nGwendalyn\nHailei\nHaili\nHaillie\nHalia\nHalli\nHan\nHarnoor\nHarpreet\nHeavyn\nHenry\nHiba\nHoney\nIla\nIlda\nIna\nInaya\nIndiana\nInga\nIsa\nIsla\nItzayana\nIvone\nJackelyne\nJadin\nJaelene\nJaidah\nJaina\nJaliyah\nJamaica\nJamee\nJamilah\nJamileth\nJanee\nJania\nJaniah\nJannah\nJannie\nJaselle\nJasminerose\nJazlene\nJazz\nJazzlynn\nJazzmyn\nJelissa\nJennafer\nJennalyn\nJerilyn\nJeslyn\nJestine\nJesyka\nJhoanna\nJhovana\nJina\nJisell\nJizelle\nJocelynne\nJoclyn\nJolynn\nJonna\nJoselinne\nJoselynn\nJovita\nJoycelyn\nJudah\nJulliana\nKacy\nKadie\nKaeley\nKaira\nKaitlynne\nKalynn\nKamea\nKandace\nKandice\nKarah\nKarine\nKarrington\nKary\nKasia\nKaterin\nKaterine\nKatherinne\nKatheryne\nKathie\nKathrina\nKatiana\nKaycie\nKaylea\nKeaira\nKeerthana\nKeilah\nKeisha\nKennedie\nKennya\nKieran\nKimber\nKimi\nKirstie\nKirstyn\nKoral\nKory\nKris\nKrissy\nKristianna\nKyler\nKyley\nKymberly\nLaela\nLailoni\nLaine\nLanette\nLariza\nLavinia\nLeeanne\nLeen\nLeeza\nLelani\nLenora\nLesslie\nLexine\nLeydi\nLezlie\nLillia\nLillyann\nLissete\nLiyah\nLizzet\nLorely\nLorie\nLoryn\nLuana\nLuca\nLuzelena\nLya\nLynsey\nLysette\nLytzy\nMadalyne\nMaddie\nMadelaine\nMadisson\nMagally\nMahalia\nMahi\nMahlia\nMahogany\nMaja\nMallika\nMallorie\nManasa\nMaram\nMariadelosang\nMaricel\nMarika\nMarilin\nMarilu\nMario\nMarixa\nMariza\nMarlie\nMarnie\nMarrissa\nMarvella\nMarwa\nMaryelizabeth\nMaylee\nMayson\nMazzy\nMckenzi\nMei\nMelanny\nMeleah\nMeleny\nMellisa\nMena\nMerelyn\nMeron\nMetzli\nMickayla\nMilani\nMinna\nMirabella\nMiroslava\nMisaki\nMisha\nMuriel\nMursal\nMuskan\nMykayla\nMylene\nNada\nNadeen\nNadiah\nNadiya\nNairi\nNaiya\nNandi\nNandita\nNatalina\nNatallie\nNathalya\nNathania\nNattalie\nNava\nNavpreet\nNayah\nNayomi\nNeda\nNessa\nNeve\nNicholas\nNickie\nNickole\nNico\nNila\nNiomi\nNiyah\nNoeli\nNohemy\nNoreen\nOctavia\nOdaliz\nOdyssey\nOksana\nOralia\nPage\nPaiton\nPaityn\nParadise\nParris\nPassion\nPatsy\nPolina\nPolly\nPorsche\nPrachi\nPrisma\nRaechel\nRaveena\nRaylynn\nRebecka\nReena\nReya\nReyanna\nRhys\nRichard\nRitika\nRivka\nRoma\nRonnie\nRosaelena\nRosalva\nRosana\nRosanna\nRoxane\nRubie\nRyanne\nSabreena\nSadey\nSadira\nSakina\nSamatha\nSamiya\nSanae\nSandhya\nSandi\nSaniya\nSaoirse\nSariya\nSaydee\nSayuri\nSena\nSendy\nSera\nSerenah\nShamara\nShamari\nShamila\nShantelle\nSharanya\nShawnee\nShelbi\nShereen\nShyanna\nSiara\nSiclali\nSidnee\nSitlali\nSivan\nSkyllar\nSkylyn\nSloan\nSloane\nSonora\nSreya\nStaci\nStephannie\nSumayyah\nSurabhi\nSuraya\nSusy\nSuzy\nSuzzette\nSwetha\nSynthia\nTaeya\nTasneem\nTatiyana\nTesla\nThao\nThuy\nTova\nTraci\nTrish\nUrsula\nValencia\nValorie\nVan\nVanya\nVelen\nVianka\nVictor\nVida\nViolette\nVita\nXotchil\nYahayra\nYairis\nYamila\nYamilette\nYana\nYareth\nYaretzi\nYecenia\nYenny\nYuritzi\nYuvia\nZabdi\nZabrina\nZaire\nZakiya\nZamira\nZanaya\nZelda\nZella\nZenia\nZenobia\nZianna\nZitlalli\nZully\nZurisadai\nEmily\nAshley\nSamantha\nJessica\nJennifer\nIsabella\nAlyssa\nElizabeth\nJasmine\nNatalie\nAlexis\nSarah\nMadison\nHannah\nStephanie\nBrianna\nAndrea\nSophia\nMaria\nEmma\nMichelle\nVanessa\nVictoria\nKimberly\nLauren\nLeslie\nKayla\nAbigail\nOlivia\nMia\nJacqueline\nMelissa\nNicole\nGrace\nAlexandra\nDestiny\nJocelyn\nMegan\nKatherine\nJulia\nEvelyn\nChloe\nRachel\nTaylor\nDaniela\nAmanda\nHailey\nDaisy\nLizbeth\nAngela\nDiana\nAngelina\nMelanie\nIsabel\nSydney\nSofia\nAriana\nKaitlyn\nAlondra\nGabriela\nAlexa\nSavannah\nAnna\nValerie\nMaya\nCrystal\nAngelica\nKaren\nBriana\nHaley\nRebecca\nEsmeralda\nSierra\nAlejandra\nKarina\nCassandra\nZoe\nAmy\nAllison\nSara\nDanielle\nFaith\nKarla\nKatelyn\nCynthia\nAudrey\nJordan\nGiselle\nMarissa\nValeria\nAna\nKelly\nKylie\nAmber\nAdriana\nGuadalupe\nAaliyah\nAlicia\nNatalia\nMadeline\nJade\nJenna\nBrenda\nKaylee\nJasmin\nArianna\nChristina\nRuby\nJazmin\nBrooke\nMorgan\nSabrina\nLaura\nWendy\nGabriella\nMonica\nTrinity\nBianca\nLily\nCatherine\nAva\nTiffany\nNancy\nPaige\nJuliana\nMariah\nMakayla\nFatima\nPriscilla\nErika\nIsabelle\nCindy\nMackenzie\nClaire\nYesenia\nAlexia\nKatie\nKassandra\nVeronica\nLiliana\nBreanna\nElla\nMary\nAlexandria\nMariana\nJoanna\nRiley\nDenise\nDesiree\nNaomi\nAngel\nPaola\nVivian\nNayeli\nSandra\nJazmine\nMiranda\nBritney\nLeah\nCaroline\nErin\nCeleste\nGabrielle\nSerena\nGenesis\nErica\nJamie\nJillian\nAnahi\nCaitlin\nKate\nMelody\nMikayla\nSophie\nCecilia\nShelby\nLillian\nCarolina\nCheyenne\nApril\nPaulina\nBailey\nJulianna\nGisselle\nElena\nEmely\nCharlotte\nLeilani\nJordyn\nAmelia\nNadia\nJulie\nClarissa\nMonique\nViviana\nAmerica\nCristina\nJulissa\nClaudia\nMarisol\nLindsey\nSummer\nItzel\nKiara\nAutumn\nLesly\nChristine\nChelsea\nCassidy\nJenny\nKathryn\nAngie\nJada\nEva\nAileen\nFernanda\nIris\nJanet\nRosa\nAvery\nGianna\nAlina\nPerla\nMayra\nCamille\nAriel\nMarlene\nCaitlyn\nDelaney\nAliyah\nDulce\nMya\nRaquel\nCourtney\nAraceli\nDaniella\nPatricia\nKiana\nKylee\nMadelyn\nMalia\nMiriam\nMolly\nNevaeh\nTeresa\nCarmen\nHeather\nIrene\nJaqueline\nSasha\nNataly\nSkylar\nMargaret\nAlana\nAlissa\nSelena\nCarla\nHelen\nTatiana\nGloria\nKelsey\nShannon\nLinda\nLitzy\nMarina\nYasmin\nKennedy\nAmaya\nSonia\nHeidi\nKristen\nMakenna\nMaritza\nNina\nBethany\nLorena\nAshlyn\nKristina\nSarai\nJimena\nNoemi\nTania\nNatasha\nBryanna\nKrystal\nElise\nEsther\nHayley\nKatrina\nLizeth\nAnnie\nKira\nLucy\nMckenna\nAthena\nFiona\nAllyson\nCarly\nJosephine\nMichaela\nKyla\nMadeleine\nAdrianna\nLesley\nBrittany\nLeila\nLydia\nYvette\nEliana\nKaitlin\nMarilyn\nSerenity\nKathleen\nMonserrat\nMartha\nTanya\nJanelle\nKendall\nAlison\nNathalie\nAngelique\nArlene\nAnastasia\nRebekah\nAlma\nDana\nCamila\nGenevieve\nHolly\nHope\nLisa\nXimena\nKyra\nTamara\nClara\nSavanna\nAshanti\nEdith\nCameron\nMarisa\nAnnika\nAurora\nIzabella\nReyna\nRose\nRuth\nZoey\nHanna\nKatelynn\nBella\nEllie\nJaden\nStephany\nBelen\nSadie\nArely\nBrooklyn\nKathy\nLizette\nAnnette\nJacquelyn\nKailey\nDominique\nBridget\nMargarita\nSusana\nBrisa\nElisa\nFrancesca\nMaribel\nEstefania\nHeaven\nKasandra\nMarie\nCristal\nGracie\nLayla\nPeyton\nSharon\nAnika\nJoselyn\nAubrey\nRylee\nYadira\nNia\nCierra\nEliza\nJohanna\nTalia\nAlice\nLuz\nTara\nCarissa\nLauryn\nLeticia\nLucia\nIvy\nPrecious\nSkyler\nDaphne\nFrida\nKendra\nSarahi\nBlanca\nPayton\nCamryn\nJudith\nNoelle\nAnnabelle\nJayden\nParis\nTessa\nAsia\nHazel\nLaila\nMelina\nEvelin\nJane\nJuliette\nMckenzie\nMikaela\nStacy\nTiana\nDarlene\nJustine\nLindsay\nMariela\nMercedes\nLarissa\nMeghan\nStella\nPhoebe\nFabiola\nHaylee\nPaula\nRoxana\nBerenice\nMaggie\nAbby\nAracely\nAlize\nEileen\nAshlee\nBrenna\nCarina\nDamaris\nEden\nMelany\nAimee\nDeanna\nHailee\nJuliet\nRocio\nBeatriz\nDelilah\nGina\nLisbeth\nRenee\nRosemary\nCasandra\nCasey\nJanessa\nKarissa\nKaylie\nPaloma\nElaine\nEmilia\nEmilie\nKenya\nIliana\nAlexus\nEsperanza\nHana\nSusan\nYareli\nAnne\nCitlali\nEstrella\nMacy\nPamela\nYasmine\nBrittney\nDiamond\nGalilea\nGeorgia\nLilly\nSage\nSandy\nYvonne\nAshleigh\nIngrid\nJazlyn\nKaya\nSidney\nTatum\nJoana\nRachael\nAlessandra\nImani\nKara\nCeline\nJoy\nLena\nCarolyn\nDayana\nDiane\nJadyn\nJessie\nKenia\nKristin\nMaia\nAzucena\nJaylene\nJoyce\nPriscila\nSienna\nSkye\nVirginia\nYuliana\nAbril\nGiovanna\nAshly\nCatalina\nIsis\nAnissa\nDeja\nKiley\nLiana\nLisette\nNikki\nReagan\nSalma\nShayla\nTheresa\nAlisa\nAreli\nAshlynn\nDakota\nEstefany\nKassidy\nKirsten\nMakenzie\nStacey\nAlyson\nCiara\nGladys\nJulianne\nMaryjane\nDestinee\nGraciela\nJanice\nJosie\nKaila\nTabitha\nAlanna\nDalia\nGeorgina\nGwendolyn\nIsabela\nJackeline\nJeanette\nNathaly\nPenelope\nRaven\nSimone\nTina\nYessenia\nCitlaly\nDenisse\nEleanor\nTori\nAlisha\nAnya\nBrandy\nElisabeth\nJenifer\nNorma\nSavanah\nVanesa\nXochitl\nYazmin\nAdilene\nIvette\nJayla\nLourdes\nDania\nEmilee\nGillian\nHeidy\nKaylin\nLana\nLea\nRyan\nTyler\nViolet\nAnnabella\nLilian\nMireya\nRebeca\nRylie\nSheyla\nAniya\nDanna\nLina\nMakena\nSylvia\nValentina\nAmelie\nAnabel\nArielle\nBarbara\nKailee\nLilliana\nThalia\nYajaira\nEve\nHalle\nHelena\nJayda\nOdalys\nAryanna\nLucero\nNicolette\nNora\nReese\nRegina\nAntonia\nCheyanne\nDonna\nElle\nRoxanne\nDeborah\nHallie\nLuisa\nSheila\nShirley\nYolanda\nAddison\nAnais\nBreana\nFelicia\nGriselda\nIndia\nMarley\nPiper\nTracy\nXiomara\nJohana\nKrista\nKristine\nLara\nRachelle\nShreya\nTaryn\nViridiana\nXitlali\nAiyana\nAylin\nJaquelin\nKaiya\nReina\nRosalinda\nAdrienne\nHaylie\nJazmyn\nLacey\nLeanna\nLola\nMina\nNoelia\nNyla\nValery\nAisha\nAngeline\nAstrid\nFelicity\nFlor\nGissel\nJaiden\nKaitlynn\nKamryn\nKasey\nKeyla\nMaddison\nRoxanna\nTayler\nEbony\nElsa\nFrances\nHarmony\nJaclyn\nJaneth\nJolie\nKaia\nKaley\nLaisha\nLilia\nLuna\nMadisyn\nMariam\nMarlen\nRaylene\nSarina\nWillow\nYahaira\nAinsley\nJulieta\nLogan\nMadalyn\nRita\nAniyah\nCelia\nCitlalli\nHailie\nJanette\nJoseline\nKristy\nLluvia\nNadine\nNichole\nScarlett\nTia\nAlaina\nAmari\nDylan\nJuana\nKatia\nLexi\nMilagros\nNathalia\nRhiannon\nRosario\nSelina\nWhitney\nAleena\nAlysa\nAnnabel\nCamilla\nCelina\nEstefani\nJaelyn\nJanae\nJayleen\nKeila\nMagali\nMaricela\nMckayla\nNyah\nSonya\nArlette\nDesirae\nHayden\nJustice\nKiera\nLia\nMagdalena\nRubi\nTammy\nAdamari\nAni\nAnita\nAnnalise\nCara\nCharlize\nDevin\nDianna\nEunice\nJewel\nJocelynn\nKali\nKatelin\nKianna\nSamira\nSaray\nAlia\nAnn\nAria\nCarol\nCharlene\nGia\nHunter\nJuanita\nKaela\nKatlyn\nMadelynn\nMallory\nMara\nMarianna\nMeagan\nSilvia\nSimran\nSky\nAnette\nAnjali\nChristy\nConnie\nJaylin\nJoelle\nKarely\nMarisela\nMelinda\nMiah\nNelly\nUnique\nAlena\nAllie\nChantal\nCorinne\nElissa\nEricka\nEsha\nIrma\nJoanne\nKellie\nLexie\nLidia\nLupita\nMandy\nMarcela\nMicaela\nRiya\nSerina\nStefanie\nTess\nBryana\nCali\nCielo\nCinthia\nCora\nEllen\nJulisa\nKelli\nLeyla\nLiberty\nLizbet\nPauline\nPricilla\nShayna\nTatyana\nYoselin\nAda\nAmara\nArleth\nBetsy\nGrecia\nMadyson\nMarcella\nMaxine\nNailea\nSally\nSiena\nStefany\nYaritza\nYasmeen\nAliya\nAlly\nAmani\nAyanna\nBeverly\nCalista\nCorina\nDayanara\nDevyn\nGwyneth\nJovanna\nKatarina\nLynette\nNayely\nOlga\nVicky\nVioleta\nXitlaly\nChanel\nDelia\nGemma\nGisel\nHillary\nKaelyn\nKayleigh\nLesli\nLila\nMacie\nPrincess\nQuinn\nScarlet\nShania\nZaira\nAnaya\nBrooklynn\nDestiney\nIsha\nJackelyn\nKarli\nMadilyn\nMelisa\nMeredith\nMontserrat\nRhea\nRyann\nSelene\nToni\nTrisha\nYaire\nAdeline\nAlayna\nAnabelle\nAnisa\nBaylee\nCharity\nClare\nElaina\nElyse\nEvangelina\nGiana\nJacquelin\nJaime\nJeniffer\nJocelin\nJocelyne\nKayli\nKenna\nRosie\nTiara\nXochilt\nZoie\nAmira\nAngeles\nBrissa\nDanica\nDevon\nIvanna\nIvonne\nKatya\nKayley\nMagaly\nNikita\nTianna\nYsabella\nAnyssa\nBrigitte\nCallie\nChelsey\nColette\nDalila\nGema\nGiuliana\nHalie\nIsabell\nIvana\nKailyn\nKaliyah\nNeha\nTamia\nYazmine\nAbbey\nAdamaris\nAdelina\nAlani\nAyana\nBailee\nBeatrice\nBertha\nBrandi\nCandace\nCandice\nCandy\nCathy\nElyssa\nHarley\nIzabel\nJaimie\nJasmyn\nJoceline\nKacie\nKeely\nLisbet\nLissette\nLorraine\nLyric\nMaliyah\nMira\nNatali\nPresley\nRianna\nSanjana\nSavana\nAleah\nAliza\nBridgette\nCiera\nEmerald\nKatharine\nKayleen\nKaylyn\nLaurel\nMonet\nOdalis\nParker\nPilar\nPriya\nSayra\nSheridan\nVivianna\nAlexi\nAnabella\nAnai\nBria\nBrynn\nCecelia\nChristiana\nDafne\nDahlia\nDesteny\nElvira\nEmerson\nGisell\nJazlynn\nKarime\nKarly\nKaylah\nMaile\nMirian\nMyra\nRegan\nRobyn\nSaira\nSariah\nTeagan\nVianey\nYessica\nAditi\nAnahy\nAriadna\nBelinda\nBrianne\nJolene\nLilyana\nLorelei\nMadisen\nMaleah\nMarian\nMaryam\nMicah\nMindy\nNeida\nRaina\nShakira\nAmalia\nAnessa\nAnnalisa\nAyleen\nBriseida\nCassie\nCharisma\nColleen\nConsuelo\nDanika\nHilda\nJacklyn\nJaidyn\nKalea\nLeyna\nLucille\nMaira\nMakaila\nMaricruz\nMelia\nNallely\nPearl\nSabina\nSade\nShaina\nSusanna\nSydnee\nTyra\nYamilet\nYulissa\nAislinn\nAlysha\nAnanya\nAubree\nAvalon\nAzalea\nBriza\nCambria\nChiara\nChrista\nDayna\nDolores\nDora\nHaleigh\nJaida\nJaylynn\nJosefina\nJoselin\nKaterina\nKaty\nKlarissa\nLizet\nLynn\nMariel\nMichele\nMila\nNoor\nSaige\nShea\nShyanne\nSoleil\nTatianna\nAidan\nAlanis\nAmaris\nAsha\nBritany\nChandler\nCoral\nDanae\nDrew\nGizelle\nIreland\nJaquelyn\nJayde\nJessenia\nKaleigh\nLondon\nMalena\nMaryann\nMiracle\nNatalya\nNoa\nReanna\nSelah\nShyann\nStefani\nYulianna\nAlexandrea\nAliah\nAlivia\nAneesa\nAryana\nAya\nBeyonce\nBrielle\nCarli\nCarlie\nCayla\nDianne\nGeneva\nJana\nJessika\nKarlee\nKiersten\nKyleigh\nLeann\nLilianna\nLyla\nMyah\nNoel\nRayna\nSamanta\nSherlyn\nShivani\nValarie\nAlex\nAlycia\nAnisha\nAyla\nBernice\nCadence\nCarley\nCinthya\nDoris\nElliana\nElsie\nEvangeline\nGreta\nHaydee\nJackie\nJailene\nJennie\nJesse\nJoslyn\nJune\nKarlie\nKaylene\nKelsie\nLilah\nMay\nMikaila\nNayelli\nNoemy\nRosemarie\nRowan\nSana\nStarr\nStevie\nTaliyah\nTierra\nZayra\nAbbie\nAdela\nAilyn\nAja\nAlexsandra\nAlyna\nAmya\nAnalisa\nBonnie\nBrianda\nCailin\nCorrina\nDarla\nDina\nEleni\nEmmalee\nEryn\nEstephanie\nFrankie\nIlene\nIsela\nIyanna\nJacey\nJailyn\nJena\nKacey\nKailani\nKaili\nKalia\nKatalina\nKatheryn\nKaylani\nKaylen\nKristal\nLaney\nLani\nLianna\nLori\nLyndsey\nMadalynn\nMelannie\nMika\nMilan\nMonika\nRosalie\nRyleigh\nSherry\nSoraya\nTaya\nTea\nVerenice\nZulema\nAbbigail\nAlexys\nAmina\nAnalise\nAnnamarie\nAnnelise\nArmani\nAshlie\nCarlee\nCherish\nDalilah\nDeisy\nDorothy\nEvelynn\nFranchesca\nGretchen\nJennah\nJennyfer\nJesus\nKaylynn\nKendal\nKierra\nMarianne\nMarla\nMarlyn\nMelani\nMillie\nMisty\nMiya\nMoriah\nNatalee\nReilly\nRochelle\nSequoia\nSkyla\nSydnie\nVianney\nZara\nAdrian\nAlannah\nAmie\nAngelie\nBrook\nCelest\nClarice\nDavina\nDawn\nDayanna\nDennise\nElianna\nEstela\nGinger\nGissell\nIman\nJaylyn\nJazmyne\nJeannette\nKai\nKim\nLeanne\nLeslye\nMalaya\nMari\nMerari\nMercy\nMona\nNadya\nNubia\nNya\nOfelia\nRia\nRobin\nRory\nRosalia\nSamara\nThaily\nWinnie\nYanet\nZaria\nAbigale\nAliana\nAlliyah\nAllyssa\nAngelita\nAshely\nAubrie\nCaitlynn\nChasity\nChristian\nDallas\nInez\nIvory\nJackelin\nJanine\nJannet\nJenessa\nJesenia\nKalani\nKalina\nKeilani\nKenzie\nKya\nLitzi\nLoren\nMacey\nMalaysia\nMariyah\nMeadow\nPrisila\nRena\nSneha\nStar\nYamileth\nYarely\nAnastacia\nAnushka\nAspen\nAzul\nBernadette\nBrea\nCharlie\nClarisa\nElia\nElisha\nFarah\nGeraldine\nHaily\nIyana\nJaelynn\nJalyn\nJanell\nJanely\nJayme\nJoey\nKamille\nKaytlin\nKelley\nKorina\nLeena\nLili\nLivia\nLiza\nMarbella\nMaricarmen\nMarlena\nMyranda\nMyriam\nNalani\nNereida\nPricila\nRandi\nRayleen\nSoledad\nSunshine\nTreasure\nVania\nYulisa\nAida\nAlora\nAnamaria\nAnnaliese\nAnnemarie\nAshton\nAyesha\nBelle\nBibiana\nCaleigh\nChyna\nCienna\nDarby\nDaria\nDesire\nDestini\nEdna\nEssence\nFaviola\nFaye\nHilary\nJacinda\nJasleen\nJaycee\nJaylen\nJeannie\nJudy\nJustina\nKalyn\nKari\nKaycee\nKayden\nKeana\nLeia\nMadelyne\nMadilynn\nMaiya\nMarin\nMaura\nMilana\nMinerva\nNikole\nRosalyn\nSakura\nSela\nShaylee\nShelly\nShyla\nSloane\nSydni\nThania\nTiffani\nVeronika\nAiyanna\nAlaura\nAline\nAlysia\nAminah\nAnaly\nArabella\nAriella\nArly\nArlyn\nBetty\nCampbell\nCarrie\nChaya\nChyanne\nCianna\nDaijah\nDiya\nElvia\nElysia\nEmmy\nEstella\nEster\nGisele\nHarleen\nInes\nJalissa\nJazzlyn\nJorden\nJovana\nKaileigh\nKamila\nKourtney\nKristie\nKylah\nLillie\nLouise\nMai\nMeera\nMirna\nMyla\nNautica\nOsiris\nSirena\nSuzanne\nTristan\nYara\nAdelaide\nAnnmarie\nArissa\nAurelia\nAyah\nCailey\nCailyn\nCatarina\nCecily\nChristie\nDanya\nDebbie\nDonya\nDyanna\nEmelie\nEmery\nFarrah\nFlora\nFrancis\nFrancisca\nGwenyth\nHaven\nIdaly\nIzabelle\nJanna\nJoan\nJose\nKaily\nKarolina\nKeira\nKeren\nLisset\nMaegan\nMaeve\nMakaela\nMarlee\nMitzy\nMontana\nMonzerrat\nMyrka\nNaila\nRosaura\nSahara\nSerene\nShae\nSinai\nSonja\nSunny\nTamar\nTerra\nYaneli\nYanira\nYenifer\nAcacia\nAdrianne\nAkira\nAlyah\nAmiya\nAngelic\nAnjelica\nAnneliese\nArleen\nArlin\nBreanne\nCameryn\nChanelle\nChase\nDariana\nDeana\nDebora\nDejah\nDivya\nEmelia\nEmmeline\nEsme\nFrancine\nIleana\nImelda\nItalia\nJadah\nJael\nJanel\nJean\nJosselyn\nKaris\nKelsy\nKennedi\nKirra\nKyara\nLeandra\nLeeann\nLeilany\nLexy\nLoretta\nLucinda\nMabel\nMayeli\nMelodie\nMicayla\nMichel\nMonserrath\nNellie\nNidia\nNoelani\nNylah\nPaulette\nPhoenix\nQuincy\nRaelynn\nRain\nRamona\nRemy\nRosalba\nRoselyn\nRosio\nRoxy\nShriya\nSianna\nSusie\nTabatha\nTracey\nVianca\nYadhira\nYael\nYanely\nYaquelin\nYesica\nYisel\nYoselyn\nZainab\nZuri\nAbigayle\nAbrianna\nAdelle\nAdina\nAixa\nAlanah\nAmethyst\nAnali\nAngelika\nAngely\nAntoinette\nAzusena\nBryn\nCaprice\nCatrina\nCaylee\nCelene\nChrystal\nCydney\nDaija\nDavid\nDelanie\nEmeline\nEmelyn\nEmmaline\nEnya\nGeena\nGwen\nHarper\nHeavenly\nJaedyn\nJahaira\nJaliyah\nJamila\nJanelly\nJanie\nJanis\nJesica\nJessalyn\nJianna\nJoann\nJoselyne\nJourney\nKareena\nKarmen\nKaylan\nKelsea\nKeona\nKiran\nKiya\nKristiana\nLaine\nLarisa\nLexus\nLiz\nLucie\nMackenna\nMadysen\nMaliah\nManuela\nMargot\nMarielena\nMattie\nMaureen\nMikala\nMirka\nMoira\nMoncerrat\nNailah\nNandini\nNaomy\nNicola\nPortia\nPrisilla\nRaegan\nRaelene\nRebeka\nRiana\nSabine\nShaelyn\nShanna\nShelsy\nSuzette\nTanvi\nThais\nThea\nTrina\nTrish\nVenus\nVianna\nViktoria\nYamile\nZariah\nAdamary\nAdia\nAhtziri\nAide\nAlaysia\nAlessia\nAllysa\nAmirah\nAnakaren\nAnel\nAngelena\nAnica\nAnnissa\nAolani\nArcelia\nAriadne\nArianne\nAudriana\nBecky\nBianka\nBriseyda\nCallista\nCarmela\nChantel\nCloe\nCyan\nDani\nDara\nDarian\nDarlyn\nDarya\nDenice\nDestany\nDestinie\nDivine\nDorian\nElayna\nElexis\nElina\nEloise\nFiorella\nGisela\nGlenda\nGracey\nHennessy\nHollie\nIlse\nIrais\nJannette\nJarely\nJaymee\nJenelle\nJiselle\nJodie\nKacy\nKailah\nKalie\nKathrine\nKathya\nKayle\nKeanna\nKeara\nKeeley\nKemberly\nKendyl\nLacy\nLailani\nLaysha\nLilith\nLizzeth\nLouisa\nLuis\nMadelaine\nMagnolia\nMalina\nMariafernanda\nMarilu\nMarjorie\nMartina\nMarylin\nMatilda\nMayerli\nMelonie\nMelony\nMildred\nMilena\nMilla\nMirella\nMitzi\nMollie\nNaya\nNiki\nNiya\nNour\nPatience\nPenny\nPetra\nReem\nRhianna\nSarena\nShani\nShawna\nShay\nSiobhan\nSofie\nSymone\nTehya\nTristin\nVivienne\nWynter\nYoana\nYuri\nYuvia\nZahra\nZitlaly\nAbriana\nAlba\nAlea\nAmayrani\nAmberly\nAnahit\nAnamarie\nAnayeli\nAnoushka\nAnusha\nAriah\nAriela\nArushi\nArya\nAsusena\nAudrie\nBobbie\nBrynna\nCatelyn\nCitlally\nCruz\nDeena\nDeyanira\nEmber\nEvelina\nGeorgette\nHafsa\nHali\nIleen\nIrie\nIvon\nJalen\nJaylah\nJaylee\nJazzmin\nJessi\nJizelle\nJordynn\nJourdan\nKalista\nKallie\nKalysta\nKambria\nKarisma\nKealani\nKeilah\nKelsi\nKeri\nKimberlyn\nKinsey\nKora\nKyah\nLainey\nLeana\nLeela\nLela\nLinnea\nLiyah\nLuciana\nMadelynne\nMaliya\nMaren\nMarielle\nMarleen\nMarta\nMercedez\nMichell\nNicolle\nNika\nNohemi\nNuvia\nPatrice\nRayanna\nRitika\nRomina\nSafa\nSeanna\nSeleste\nShantel\nShayne\nShira\nShruti\nSonali\nTyana\nVera\nVienna\nVivianne\nXitlalli\nYocelyn\nYuliza\nZena\nZoee\nAddie\nAlayah\nAlexxis\nAlexyss\nAli\nAlianna\nAlizah\nAlyanna\nAlyse\nAlyssia\nAmbar\nAmiyah\nAnaiya\nAngelyn\nAnnalee\nArden\nAries\nArlett\nAshlin\nAsucena\nAubriana\nAudra\nAutum\nBreonna\nCandelaria\nCaterina\nCesia\nCharli\nCheryl\nCiana\nCleo\nCloey\nCorrine\nCosette\nDanitza\nDarleen\nDasha\nDaysi\nDeysi\nElicia\nElora\nEmani\nEmi\nEmillee\nEvan\nEvelia\nEveline\nFanny\nFayth\nGiavanna\nGladis\nHadley\nHaile\nHalley\nHiba\nIdalia\nIlana\nIrina\nJanneth\nJayne\nJeanine\nJezebel\nJill\nJolina\nJoscelyn\nJuan\nJulian\nKaeli\nKaelin\nKalena\nKareli\nKatherin\nKati\nKiarra\nKimberley\nKirstin\nKrysta\nLaina\nLane\nLeilah\nLezly\nLilibeth\nLilyanna\nLiv\nLizzette\nLois\nMaci\nMariaelena\nMariella\nMarilynn\nMarleny\nMaryah\nMikaylah\nMimi\nMorelia\nNanci\nNaylea\nNeyda\nOcean\nPriyanka\nRania\nRenata\nRhyan\nRicki\nRosalina\nRosamaria\nRosanna\nRosy\nRyley\nSahar\nSania\nSera\nShauna\nShianne\nSiera\nSindy\nSuzanna\nTayah\nTayla\nTeya\nTriniti\nTrista\nTristyn\nVicki\nViolette\nVivien\nWendi\nWilla\nWinter\nXitlalic\nYaneth\nAbbygail\nAgnes\nAilani\nAiram\nAkasha\nAkilah\nAleida\nAlexie\nAlisia\nAlizae\nAllana\nAlyssah\nAndie\nAniah\nAriyana\nArriana\nAysia\nBillie\nBree\nBrigid\nCaelan\nCalli\nCarson\nChelsie\nClarisse\nConstance\nCordelia\nCristy\nDaisha\nDallana\nDaniele\nDarcy\nDasia\nDebra\nDejanae\nDesiray\nDezirae\nDyani\nElizabet\nEmeli\nEmiko\nEstelle\nEvalyn\nGenessis\nGenevie\nGissele\nHannia\nHarlee\nHelene\nHonesty\nIsaura\nIshika\nIxchel\nIzabela\nJackelyne\nJadelyn\nJamileth\nJanai\nJanett\nJaspreet\nJayna\nJenesis\nJisselle\nJodi\nJoleen\nJosseline\nJuliann\nKady\nKaelynn\nKamari\nKarley\nKaryme\nKeiana\nKeiry\nKennia\nKerry\nKhloe\nKimberlee\nKimora\nKristi\nKyanna\nKyndall\nLailah\nLaryssa\nLaurie\nLexis\nLibby\nLillyana\nLuzmaria\nMaha\nMakyla\nMarguerite\nMariaguadalupe\nMariajose\nMariya\nMarleni\nMaryanne\nMarycruz\nMayte\nMeaghan\nMichael\nMichela\nMonserat\nNiamh\nNisha\nNyomi\nOscar\nRana\nRemi\nRheanna\nRina\nRisa\nRoberta\nRubie\nRyanna\nRyanne\nSahana\nSanaa\nSarahy\nScout\nShana\nShaye\nShelbie\nSilvana\nSkylee\nTamera\nTanisha\nTaniya\nTiffanie\nVannesa\nVeda\nXenia\nYamilex\nYana\nYuritzi\nZaida\nZion\nAiden\nAilene\nAishwarya\nAleksandra\nAlexander\nAmia\nAnalee\nAnalia\nAnaliese\nAngeli\nAngelia\nAnjelina\nAnyah\nArline\nAtalie\nAubrianna\nAudree\nAudrianna\nAustin\nAustyn\nAvani\nAysha\nAzaria\nBaby\nBlair\nBreann\nBrigette\nBrionna\nBryan\nCaren\nCarlos\nCharis\nCharissa\nCheyann\nChloee\nCollette\nConcepcion\nCorey\nDemi\nDenae\nDeseray\nDeserie\nDestanie\nDeziree\nDivina\nDixie\nDynasty\nElana\nEloisa\nElsy\nElva\nEma\nEmalie\nEmmie\nEmoni\nEvette\nFabiana\nFernando\nFreya\nGardenia\nGenavieve\nGianni\nGracyn\nHarriet\nHerlinda\nHolland\nIdalis\nIveth\nIvett\nIvie\nJacquelynn\nJacy\nJaeda\nJalynn\nJalyssa\nJamison\nJanaya\nJaniya\nJaslyn\nJaydin\nJeanne\nJisela\nJoely\nJoi\nJoie\nJosette\nJoslynn\nJosselin\nJude\nJulieanna\nKaci\nKaira\nKameron\nKandace\nKarena\nKarin\nKarsyn\nKathia\nKathlyn\nKatlynn\nKavya\nKaylei\nKeziah\nKhushi\nKimberli\nKimi\nKloe\nKristyn\nKrysten\nKyana\nKyrah\nLanaya\nLanie\nLeeanna\nLeona\nLessly\nLilli\nLilyan\nLinette\nLorna\nLuzelena\nMae\nMaisie\nMaite\nMakaylah\nMargaux\nMariadejesus\nMariaisabel\nMarion\nMarwa\nMarycarmen\nMaryssa\nMeleny\nMerissa\nMisha\nMuskan\nMykayla\nNaia\nNalleli\nNayelie\nNayla\nNereyda\nNeveah\nNiyah\nNoah\nNydia\nNyssa\nPooja\nQueenie\nRaelyn\nRene\nRian\nRiver\nRoma\nRosalind\nRoya\nSachi\nSahira\nSalena\nSalina\nSammantha\nSamya\nSanya\nSavina\nSejal\nSelma\nShaylin\nShelsea\nSimona\nStarla\nStephania\nSujey\nSusannah\nTalisa\nTallulah\nTera\nTherese\nTristen\nValencia\nVanity\nVannessa\nViola\nVivica\nZully\nAarushi\nAbagail\nAbygail\nAdele\nAilin\nAime\nAine\nAislyn\nAlasia\nAleen\nAlessa\nAlexcia\nAlexy\nAlyssamarie\nAlyza\nAmada\nAmairani\nAmairany\nAmarah\nAmariah\nAmmy\nAmrit\nAnayah\nAngelee\nAnnabell\nAnouk\nAntonette\nAranza\nAriyah\nArmoni\nAshante\nAubry\nAudrina\nAudry\nAugust\nAura\nAvigail\nAvneet\nAzalia\nBaleria\nBeatrix\nBerlin\nBetsaida\nBrienna\nCaley\nCamden\nCassia\nCathleen\nChantelle\nClementine\nCristiana\nCristine\nDaja\nDayra\nDelany\nDeseree\nDevine\nDomonique\nDulcemaria\nElinor\nEllena\nEllison\nEmaan\nEman\nEmelin\nEmmily\nErandy\nEstefanie\nEstephania\nFay\nFiza\nGelsey\nGetsemani\nGiulia\nGuillermina\nGurleen\nHalee\nHanah\nHanan\nHarini\nIran\nIrlanda\nIsamar\nJaileen\nJakeline\nJalene\nJanani\nJaney\nJasmeen\nJaya\nJenica\nJenin\nJenni\nJessa\nJezabel\nJissel\nJody\nJonathan\nJordin\nJosalyn\nJosephina\nJoycelyn\nJules\nJulieana\nJuliett\nJulietta\nKaelah\nKaely\nKailie\nKalee\nKalei\nKalen\nKarizma\nKatelynne\nKaterine\nKatherina\nKathryne\nKaylana\nKevin\nKhalia\nKiah\nKiele\nKyndal\nLeeah\nLeonela\nLesslie\nLexia\nLilit\nLillianna\nLizett\nLorelai\nLotus\nLyanna\nLynsey\nMaja\nMalaika\nMalanie\nMalea\nMariadelcarmen\nMarine\nMarisabel\nMarlin\nMarly\nMarysol\nMayerly\nMaylene\nMele\nMinna\nMonae\nNavneet\nNawal\nNaydelin\nNayelly\nNena\nNidhi\nOdette\nPeri\nPrescilla\nQuetzali\nQuetzalli\nRaeann\nRayne\nReece\nReign\nRikki\nRilee\nRoxann\nSaba\nSadia\nSamaria\nSamiya\nSaniyah\nSapphire\nSariyah\nSascha\nScarlette\nSerafina\nSeraphina\nShaila\nShane\nShanelle\nShanice\nShantal\nSharai\nShaylene\nShelbi\nShelley\nShoshana\nSkyy\nSol\nSolana\nSole\nSommer\nSona\nSpencer\nSruthi\nStacie\nStefania\nSteffany\nTaina\nTeresita\nTierney\nTuesday\nTyanna\nUriah\nVida\nXandria\nXiana\nYamila\nYanelly\nYelena\nYelitza\nYoseline\nYovana\nYsabel\nYuridia\nZenaida\nZulma\nAalyah\nAdara\nAdi\nAdria\nAi\nAiko\nAlaya\nAleesha\nAleeza\nAlesha\nAlethea\nAlexsis\nAlexxa\nAlexzandria\nAlix\nAlizay\nAlona\nAlonna\nAlyce\nAmena\nAmi\nAmisha\nAmrita\nAnagha\nAnaid\nAnalicia\nAnanda\nAnay\nAndrew\nAndreya\nAndria\nAngelisa\nAnia\nAnja\nAnjolie\nAnkita\nAnnamaria\nAnthony\nAnysa\nAraya\nAriane\nAriatna\nArieana\nArizbeth\nArlet\nAshleen\nAshlei\nAshna\nAshtyn\nAsma\nAtiya\nAundrea\nAverie\nAvianna\nAvni\nAzariah\nAzia\nBasia\nBethanie\nBetsabe\nBianey\nBobbi\nBriauna\nBrieanna\nBritani\nBrittny\nBrookelynn\nBrooklin\nBryanne\nCate\nCathryn\nCesar\nChelsy\nCherry\nChristal\nChyenne\nCitlalic\nClaritza\nColby\nCorie\nCorinna\nCortney\nCrista\nCrysta\nDacia\nDaira\nDanyelle\nDarlin\nDaysha\nDeisi\nDelainey\nDena\nDenis\nDevan\nDevina\nEilene\nElida\nElijah\nElisabet\nElisheva\nEllery\nElli\nEllianna\nEllis\nElyza\nEmile\nEmilly\nEmonie\nEmy\nEna\nErandi\nErendira\nEternity\nEvie\nEzra\nFatimah\nGenoveva\nGeorgiana\nGigi\nGiovana\nGuinevere\nHan\nHasmik\nHeavenlee\nHeba\nHeily\nHuda\nIlianna\nImogen\nInaya\nIsobel\nIssabella\nIsyss\nItaly\nJacquelyne\nJadin\nJaeden\nJaina\nJamiah\nJamilah\nJanay\nJanene\nJaycie\nJenevieve\nJenniffer\nJesslyn\nJorja\nJulitza\nJulyssa\nKaiah\nKaile\nKailynn\nKaliana\nKalli\nKamara\nKameryn\nKami\nKamia\nKandice\nKathie\nKay\nKayanna\nKaycie\nKaytlyn\nKeerthana\nKeili\nKhadija\nKiely\nKimiko\nKiyah\nKiyomi\nKrisha\nKrishna\nKyley\nKylia\nLacie\nLaniya\nLaylah\nLayne\nLexington\nLillyanna\nLinsey\nLissa\nLissete\nLizabeth\nLovely\nLyna\nLyndsay\nLynna\nLysette\nMadai\nMadaline\nMagally\nMakala\nMalayah\nMalika\nMalinda\nMansi\nMaranda\nMaraya\nMarcia\nMarena\nMaricella\nMaritere\nMaritsa\nMarlenne\nMarlina\nMarykate\nMason\nMayleen\nMaylin\nMeena\nMeghna\nMei\nMekayla\nMekenna\nMeliza\nMiguel\nMilca\nMiyah\nNahomy\nNaraly\nNatallie\nNatally\nNayomi\nNely\nNiah\nNikka\nNiurka\nNova\nOctavia\nOdessa\nOriana\nPage\nRachana\nRachele\nRacquel\nRadhika\nRaeleen\nRavneet\nRavyn\nRayann\nRichelle\nRio\nRiva\nRoslyn\nRuthie\nSafiya\nSaida\nSakina\nSalome\nSamaya\nSamiah\nSamiyah\nSandhya\nSantana\nSawyer\nSedona\nShaelynn\nSharlene\nSheily\nShiloh\nSinead\nSissy\nSitlali\nSivan\nSkylah\nStephenie\nSynthia\nTala\nTaleen\nTali\nTasha\nTatiyana\nTerese\nTeressa\nTerri\nTiera\nTiona\nTricia\nUma\nVioletta\nViviane\nVy\nYaira\nYazmeen\nYecenia\nYocelin\nYuna\nYunuen\nYuritza\nZaina\nZakiya\nZarina\nZenia\nZinnia\nZitlali\nZora\nAaliya\nAanya\nAaron\nAayushi\nAdalia\nAdanna\nAdison\nAidee\nAiled\nAisling\nAkina\nAlaysha\nAlazay\nAleesa\nAlejandrina\nAleli\nAlesandra\nAlesia\nAlexsa\nAlexzandra\nAleyah\nAleyda\nAlida\nAlisson\nAlitzel\nAlli\nAllissa\nAlthea\nAlynna\nAmal\nAmberlee\nAmbria\nAmeerah\nAnaiyah\nAnaleah\nAnalyssa\nAndi\nAndreina\nAnela\nAngelyna\nAnjana\nAnneke\nAnnel\nAntonella\nArantxa\nArianah\nArin\nAriya\nArlena\nAshlynne\nAsya\nAunika\nAyden\nAyiana\nBelicia\nBerenise\nBerlyn\nBetzy\nBlake\nBrandon\nBreeana\nBriahna\nBrian\nBridgett\nBrina\nBrinley\nBrittani\nBryce\nBrynne\nCady\nCailee\nCalla\nCami\nCaricia\nCarisma\nCarmella\nCasie\nCassey\nCassondra\nCedar\nCelena\nCharlee\nChenoa\nCherokee\nChristopher\nCody\nCori\nCory\nCristin\nDaesha\nDanessa\nDannielle\nDeasia\nDelfina\nDelila\nDenali\nDennis\nDeonna\nDevynn\nDharma\nDominic\nDoreen\nEkaterina\nEleana\nElliot\nElodie\nEmalee\nEmiley\nEmilyann\nEryka\nEstephany\nEsthela\nFallon\nFionna\nFrancia\nGabby\nGabriel\nGaby\nGayane\nGenna\nGiovanni\nGisella\nGraciella\nGrayson\nHadassah\nHaileigh\nHarman\nHayde\nHellen\nHolley\nHoney\nIdania\nIla\nIlliana\nIlona\nImari\nIndigo\nIndira\nInessa\nIsadora\nIthzel\nItzayana\nIvania\nJacalyn\nJacinta\nJacob\nJai\nJaila\nJaimee\nJamilet\nJanea\nJanee\nJania\nJaniah\nJanina\nJanissa\nJaritza\nJassmine\nJaymie\nJazel\nJazelle\nJenae\nJenine\nJenise\nJensen\nJersey\nJustyce\nKaeley\nKailei\nKaiyah\nKaleah\nKaleena\nKamilah\nKanani\nKarah\nKarisa\nKarma\nKaroline\nKaryna\nKatharina\nKatja\nKaydence\nKeala\nKeegan\nKeelin\nKeilyn\nKeisha\nKerstin\nKeyanna\nKeylee\nKia\nKierstin\nKilee\nKiona\nKloey\nKristian\nKyle\nKyliegh\nLariza\nLashanti\nLeigha\nLeilanie\nLeiloni\nLeonor\nLeslieann\nLibni\nLillith\nLilyann\nLilybeth\nLindy\nLisandra\nLiseth\nLisseth\nLissett\nLizzet\nLondyn\nLuca\nLuci\nLucienne\nLucila\nLuiza\nLulu\nLyndsie\nLynne\nMacayla\nMahalia\nMahnoor\nMahogany\nMaiah\nMakailah\nMakana\nMakenah\nMalak\nMalayna\nMallorie\nMalorie\nManal\nManon\nMarco\nMarcy\nMarelyn\nMargie\nMariabelen\nMarifer\nMarilin\nMarlie\nMarylou\nMatthew\nMedha\nMeghana\nMegumi\nMeilani\nMelanny\nMelenie\nMellanie\nMelodee\nMeranda\nMetzli\nMeztli\nMicaiah\nMichal\nMickayla\nMidori\nMiki\nMilani\nMillicent\nMilly\nMinnie\nMirabella\nMonzerrath\nMylene\nMyrna\nNada\nNadeen\nNaima\nNaiya\nNaliyah\nNathan\nNattaly\nNayzeth\nNeda\nNeena\nNeftali\nNetanya\nNhi\nNikayla\nNirvana\nNisa\nOdaliz\nOlive\nOlyvia\nOona\nOpal\nPaisley\nPatsy\nPeggy\nRacheal\nRaya\nReana\nReena\nReva\nRhonda\nRiddhi\nRileigh\nRishika\nRochel\nRomi\nRomy\nRoni\nRoshni\nRosina\nRosita\nSabreena\nSacha\nSadaf\nSadee\nSamari\nSanai\nSandi\nSaniya\nSaya\nSayaka\nSaylor\nSeidy\nSeven\nShanel\nShante\nShasta\nSheccid\nSherlin\nSherly\nShruthi\nSinahi\nSloan\nSonora\nSrija\nSriya\nStaci\nStarlene\nStephane\nSterling\nSumaiya\nSupriya\nSuzana\nTaelor\nTaliah\nTam\nTanner\nTasia\nTawni\nTaylin\nTeanna\nTegan\nTeja\nTesla\nThanya\nTorri\nTrinh\nTrinidad\nTya\nVenecia\nVenice\nVianne\nVilma\nWynne\nYailin\nYajahira\nYanelli\nYaretzy\nYasamin\nYosselin\nYuritzy\nZoha\nZoya\nZuleyma\nAaryn\nAashna\nAbbigale\nAbbygayle\nAbigayl\nAdali\nAdelia\nAdelyn\nAdithi\nAdrina\nAdryanna\nAishah\nAislynn\nAizza\nAlaiza\nAlayjah\nAlecia\nAleeya\nAleina\nAlejandro\nAlene\nAlexiss\nAlexius\nAlexiz\nAlijah\nAlinna\nAlisandra\nAlise\nAlizabeth\nAlizey\nAllegra\nAllisa\nAlva\nAlvina\nAlyana\nAlyiah\nAlysah\nAlysse\nAmaiya\nAmayah\nAmbrosia\nAmeera\nAmeyalli\nAmilia\nAmna\nAmparo\nAmyah\nAn\nAnabela\nAnaiah\nAnasofia\nAnevay\nAngeleena\nAngy\nAnh\nAnisah\nAnise\nAnjalee\nAnjela\nAnnaliza\nAnnalyse\nAnnastasia\nAnny\nAnsley\nAntara\nAoife\nAparna\nApoorva\nApryl\nAraseli\nAreen\nArelly\nAri\nAriannah\nArionna\nArisa\nArisbeth\nArista\nArlen\nArlyne\nArwen\nAryan\nAryn\nAshanty\nAshia\nAshlen\nAsiya\nAslyn\nAtziri\nAvelina\nAveri\nAviana\nAvina\nAyaka\nAylene\nAyushi\nBabygirl\nBahar\nBethel\nBetzaida\nBiridiana\nBlessing\nBreena\nBriannah\nBricia\nBrieana\nBriley\nBriona\nBritain\nBrittaney\nBrizza\nBryonna\nCaelyn\nCalissa\nCalysta\nCamrynn\nCandyce\nCarmel\nCarmelita\nCarter\nCaylie\nCelestia\nCelestine\nCerenity\nCerina\nChanell\nCharisse\nCharmaine\nChelsee\nCheyenna\nChioma\nChole\nChris\nChristen\nChyann\nCiarra\nCierrah\nClair\nCoco\nCoraima\nCrisol\nCyerra\nDaisie\nDaissy\nDajah\nDalyla\nDamariz\nDamarys\nDanni\nDarianna\nDarline\nDarling\nDaylene\nDeandra\nDeija\nDelayna\nDelicia\nDelina\nDella\nDelmy\nDemetria\nDesarae\nDestyni\nDinah\nDior\nDisha\nDreanna\nDulse\nDunia\nEboni\nElectra\nElen\nElexia\nElizah\nElly\nElysha\nEmari\nEmerie\nEmili\nEmmalyn\nEmme\nEmmerson\nEmylee\nErick\nErykah\nEsbeidy\nEstephani\nEvelyne\nFaythe\nFelisha\nFlorence\nFreda\nGena\nGenisis\nGianella\nGiulianna\nGizel\nGrayce\nGretel\nGricelda\nGurpreet\nHabiba\nHaili\nHania\nHarlie\nHayat\nHayle\nHaylei\nHeavyn\nHenna\nHera\nIda\nIleene\nIlyana\nImaan\nIndiana\nIndya\nIqra\nIsabellamarie\nIshani\nItati\nIzamar\nJacquline\nJadeyn\nJaela\nJaelen\nJahayra\nJaide\nJaidy\nJailine\nJailynn\nJaiya\nJaleah\nJamee\nJammie\nJaniyah\nJannel\nJaquelyne\nJaslin\nJasmyne\nJason\nJayana\nJaynee\nJazlin\nJeanie\nJenika\nJennefer\nJennessa\nJennica\nJennine\nJewelia\nJewell\nJewels\nJillianne\nJohnae\nJohnnie\nJoline\nJosalynn\nJosefa\nJoselynn\nJosephyne\nJoslin\nJournee\nJoya\nJubilee\nJulieann\nJulina\nJumana\nKaaliyah\nKadee\nKaden\nKaelee\nKaetlyn\nKaiden\nKailene\nKaithlyn\nKaitlan\nKalaya\nKalin\nKaloni\nKalynn\nKamea\nKamya\nKana\nKansas\nKaralyn\nKaricia\nKarishma\nKarsen\nKaryn\nKasia\nKaterin\nKatheryne\nKatina\nKatlin\nKaye\nKaylamarie\nKaytlynn\nKazandra\nKeaira\nKeily\nKekoa\nKelcie\nKelis\nKennadi\nKeyana\nKeyara\nKiani\nKiannah\nKiarah\nKimani\nKimia\nKimiya\nKiyana\nKlaire\nKlara\nKlaryssa\nKodi\nKodie\nKori\nKyli\nKymberly\nKyrstin\nLaela\nLaiba\nLaken\nLamiya\nLanai\nLarkin\nLaya\nLeeanne\nLeianna\nLeigh\nLeiya\nLetzy\nLexa\nLezlie\nLiah\nLiliann\nLilie\nLilliann\nLillianne\nLillyan\nLillyann\nLiset\nLisett\nLitsy\nLizbett\nLizveth\nLora\nLoreli\nLuana\nLupe\nLylah\nMackenzy\nMaddie\nMaddisen\nMadelin\nMadina\nMagda\nMagdalene\nMahika\nMaisha\nMaisy\nMakenzi\nMalani\nMaleeha\nMaleia\nMaleny\nManaia\nManasvi\nMariadelosang\nMarialuisa\nMaribell\nMaribelle\nMariely\nMarkayla\nMarline\nMarti\nMarwah\nMarylyn\nMatea\nMathilde\nMatilde\nMayah\nMaycie\nMayela\nMaylee\nMayrin\nMckinzie\nMegha\nMeilan\nMekenzie\nMel\nMelaney\nMelea\nMellissa\nMelyssa\nMerary\nMerly\nMeya\nMichaella\nMichayla\nMihika\nMikah\nMikenna\nMilagro\nMileena\nMiliani\nMinami\nMireille\nMiroslava\nMitali\nMitchell\nMitra\nMoana\nMonalisa\nMorgen\nMuriel\nMuskaan\nMykaila\nMykala\nNadiya\nNaidelyn\nNaimah\nNaja\nNala\nNana\nNanette\nNaomie\nNathali\nNiara\nNinel\nNitya\nNoely\nNola\nNoora\nOasis\nPahola\nPreethi\nPriscella\nRae\nRaeanna\nRani\nRashel\nRawan\nRayana\nRebecka\nReghan\nReyanna\nRheana\nRida\nRonnie\nRori\nRosaelena\nRosalee\nRosalva\nRosana\nRoselynn\nRossy\nRuchi\nRuhi\nRyane\nSahra\nSamia\nSamina\nSammi\nSammie\nSamone\nSamuel\nSaraih\nSarita\nSarrah\nSaskia\nSativa\nSaumya\nSchuyler\nSeana\nSebastian\nSelin\nSemaj\nSeren\nSerinity\nSerra\nSevanna\nShalini\nShanell\nShaniah\nShantell\nShanti\nSharanya\nShawn\nShayda\nShaylynn\nSheena\nShereen\nShireen\nShylah\nSiah\nSiara\nSidnie\nSierah\nSierrah\nSimrat\nSincere\nSindi\nSkylynn\nSofija\nSora\nStacia\nStefanny\nSteven\nSulema\nSumaya\nSunnie\nSurabhi\nSuzie\nSylvana\nSymantha\nTais\nTaiya\nTaiz\nTajanae\nTalya\nTamanna\nTami\nTamyra\nTasnim\nTate\nTeah\nTehani\nTehila\nTeri\nTerrie\nTerry\nThelma\nThu\nTiare\nTionne\nTorrance\nTrinitee\nVani\nVarsha\nVenessa\nVi\nVianka\nVickie\nVincent\nVita\nWren\nXena\nXitllali\nXuan\nYajayra\nYareth\nYeni\nYliana\nYmani\nYohana\nYsabelle\nYulitza\nYuriana\nYusra\nYvanna\nZahira\nZahrah\nZayda\nZayna\nZenobia\nZina\nZipporah\nZitlalic\nZofia\nZoraya\nZowie\nZurisadai\nEmily\nAshley\nSamantha\nIsabella\nAlyssa\nEmma\nNatalie\nJessica\nJennifer\nElizabeth\nJasmine\nAlexis\nSophia\nMadison\nSarah\nKimberly\nHannah\nVanessa\nStephanie\nAndrea\nBrianna\nAbigail\nMichelle\nMaria\nMia\nOlivia\nVictoria\nKayla\nLeslie\nGrace\nLauren\nEvelyn\nNicole\nMelissa\nKatherine\nJocelyn\nJacqueline\nDiana\nDestiny\nAlexandra\nChloe\nDaniela\nHailey\nAngelina\nSydney\nJulia\nTaylor\nIsabel\nGabriela\nAmanda\nMelanie\nRachel\nSofia\nAlexa\nDaisy\nAlondra\nLizbeth\nAngela\nAriana\nMaya\nMegan\nGiselle\nSavannah\nKaitlyn\nAva\nValerie\nFaith\nAudrey\nKaren\nAmy\nKylie\nKarina\nNatalia\nAngelica\nValeria\nArianna\nAnna\nZoe\nEsmeralda\nHaley\nBriana\nAdriana\nJordan\nSara\nAllison\nBrooke\nAlejandra\nCrystal\nRebecca\nElla\nKatelyn\nGuadalupe\nKaylee\nKarla\nAna\nKelly\nJade\nMarissa\nTrinity\nSierra\nDanielle\nMariah\nJenna\nMadeline\nRuby\nAaliyah\nBianca\nBrenda\nJazmin\nAmber\nJuliana\nAlicia\nJasmin\nCynthia\nGabriella\nLily\nPaige\nClaire\nMorgan\nMakayla\nTiffany\nFatima\nCassandra\nPriscilla\nChristina\nCatherine\nMonica\nSabrina\nWendy\nKatie\nVeronica\nLiliana\nRiley\nAlexia\nMariana\nGenesis\nNancy\nIsabelle\nDesiree\nBreanna\nVivian\nCindy\nKate\nErika\nLaura\nNaomi\nMackenzie\nPerla\nYesenia\nErin\nDenise\nLeah\nMary\nAmelia\nPaola\nGabrielle\nCeleste\nJoanna\nJulianna\nLillian\nCarolina\nLeilani\nSandra\nJamie\nKassandra\nMikayla\nAngel\nCaroline\nEmely\nJazmine\nAlexandria\nAvery\nMiranda\nSerena\nBailey\nViviana\nMya\nElena\nItzel\nNadia\nShelby\nCaitlin\nPaulina\nErica\nNevaeh\nJada\nJulissa\nJulie\nCharlotte\nApril\nSummer\nMelody\nCamila\nCecilia\nMadelyn\nLindsey\nMarisol\nAlina\nNayeli\nJillian\nClaudia\nKathryn\nAnahi\nGianna\nCassidy\nClarissa\nSophie\nChelsea\nLesly\nMolly\nMonique\nKylee\nAngie\nAutumn\nEva\nKiana\nAlana\nAmaya\nMarlene\nRaquel\nCarmen\nChristine\nKendall\nKiara\nKatrina\nCheyenne\nLeila\nLucy\nAileen\nJordyn\nCourtney\nHeidi\nCamille\nCristina\nKyla\nMarina\nDulce\nAliyah\nAriel\nPatricia\nBella\nBrooklyn\nDaniella\nLayla\nAnnika\nGisselle\nIris\nNataly\nTatiana\nRosa\nTeresa\nMalia\nAmerica\nDelaney\nFernanda\nXimena\nNathalie\nAshlyn\nBritney\nSadie\nHayley\nMayra\nCaitlyn\nKennedy\nNoemi\nYasmin\nJenny\nHeather\nMckenna\nSarai\nBethany\nJimena\nTania\nIrene\nJanet\nCarly\nJaqueline\nSerenity\nElise\nKelsey\nCarla\nAraceli\nMiriam\nAlison\nParis\nSkylar\nYadira\nJosephine\nLaila\nMargaret\nAlissa\nAllyson\nSelena\nNina\nEliana\nEllie\nAubrey\nBrittany\nEsther\nKrystal\nAnnie\nMadeleine\nEstrella\nLuz\nFiona\nGloria\nMartha\nBryanna\nSasha\nJaden\nElisa\nArely\nAthena\nKristen\nMaritza\nLydia\nGenevieve\nLinda\nMakenna\nRylee\nGracie\nAdrianna\nAnastasia\nJoselyn\nMichaela\nNatasha\nShannon\nKira\nAurora\nHanna\nHeaven\nHelen\nLucia\nFrida\nMarilyn\nIzabella\nJanelle\nLizeth\nRebekah\nSonia\nStella\nLorena\nAlma\nHope\nKailey\nKaylie\nKathleen\nMarisa\nArlene\nMelina\nPamela\nLesley\nMariela\nTalia\nMelany\nReyna\nRose\nSavanna\nEliza\nDana\nHolly\nIsabela\nKristina\nKyra\nBlanca\nGalilea\nLisa\nRuth\nStephany\nJayden\nKaitlin\nSkyler\nAlice\nAracely\nBridget\nEdith\nIvy\nYvette\nCarissa\nDominique\nEden\nAlessandra\nBelen\nCristal\nEileen\nKatelynn\nLindsay\nDelilah\nJacquelyn\nLilly\nPayton\nClara\nReese\nAnnabelle\nPeyton\nAngelique\nMonserrat\nZoey\nLana\nPhoebe\nLizette\nTanya\nDaphne\nJadyn\nCasey\nYazmin\nAnika\nBerenice\nHaylee\nJohanna\nRebeca\nTessa\nAbby\nBrisa\nKendra\nMaggie\nMeghan\nValentina\nEmilie\nJustine\nCameron\nEmilia\nJoana\nYuliana\nAimee\nLeticia\nYahaira\nDayanara\nHazel\nMaribel\nStacy\nJuliet\nSusana\nFrancesca\nLola\nTara\nHelena\nDalia\nKenia\nLarissa\nSarahi\nSidney\nAnnette\nAshlee\nJanessa\nMercedes\nNoelle\nRyan\nSharon\nCatalina\nKathy\nAreli\nDayana\nGina\nVirginia\nCarina\nGeorgia\nLauryn\nRenee\nCitlali\nDeanna\nEsperanza\nJane\nJazlyn\nKenya\nCasandra\nEstefania\nEvelin\nJuliette\nRosemary\nSage\nViolet\nXochitl\nYareli\nYasmine\nGraciela\nLisbeth\nPaloma\nRocio\nAsia\nDarlene\nMikaela\nNia\nRaven\nSimone\nJudith\nRachael\nAnissa\nAyanna\nDiamond\nKarissa\nKaya\nMaryjane\nHailee\nJulianne\nKailee\nLilian\nRylie\nMargarita\nCamryn\nJessie\nKaia\nLena\nMakena\nMakenzie\nMarlen\nMireya\nShayla\nSkye\nTiana\nAlize\nDylan\nEleanor\nAbril\nCarolyn\nCeline\nDanna\nHana\nJenifer\nBrenna\nKaila\nKirsten\nMaia\nMckenzie\nPriscila\nSamara\nSienna\nSusan\nYoselin\nAshly\nElisabeth\nEmilee\nKara\nKasandra\nNora\nPenelope\nPrecious\nCitlaly\nElaine\nIsis\nLuna\nMarie\nSalma\nEstefani\nIliana\nIngrid\nDakota\nJackeline\nJohana\nLexi\nReagan\nSandy\nAnne\nAshlynn\nCiara\nKiley\nLiana\nLitzy\nMacy\nNoelia\nRoselyn\nYvonne\nCierra\nGiovanna\nHeidy\nPiper\nTabitha\nTamara\nAdilene\nJaylene\nNikki\nReina\nShirley\nYessenia\nAnya\nDeja\nImani\nKaylin\nKristin\nLilliana\nBeatriz\nBrittney\nDenisse\nDiane\nRegina\nSilvia\nJayla\nJoyce\nShreya\nStacey\nGillian\nLaisha\nTina\nAlanna\nAlisa\nFabiola\nHailie\nJanette\nJoy\nKaelyn\nMallory\nMarley\nNathaly\nTheresa\nAmara\nBarbara\nDamaris\nAlyson\nElsa\nGwendolyn\nJaelyn\nLea\nLina\nSavanah\nAmelie\nAngeline\nAzucena\nCharlize\nDestinee\nFrances\nJosie\nLucero\nMariam\nAlaina\nAniya\nArly\nGia\nKaryme\nKasey\nKrista\nTracy\nValery\nAniyah\nCadence\nEve\nLacey\nPaula\nSheila\nAleena\nArlette\nBrynn\nEunice\nHarmony\nJayda\nJeanette\nJoseline\nKiera\nLogan\nLourdes\nMadalyn\nPrincess\nRoxana\nRoxanne\nSylvia\nTatum\nAddison\nAylin\nBrooklynn\nKassidy\nScarlett\nAinsley\nAngeles\nCheyanne\nEllen\nJanice\nKaitlynn\nKaley\nSherlyn\nYajaira\nAlani\nAlisha\nAmari\nAryanna\nBrandy\nDonna\nElissa\nJaclyn\nLilianna\nLuisa\nThalia\nAlexus\nAnais\nAnnabella\nEricka\nKamryn\nKayleigh\nLeanna\nNaydelin\nWillow\nAshanti\nAshleigh\nCielo\nDeborah\nJazmyn\nKailyn\nKianna\nMicaela\nTyler\nYulissa\nAnn\nAnnalise\nCora\nMarianna\nRiya\nTess\nVanesa\nVicky\nXitlali\nBreana\nCharlene\nEstefany\nGladys\nHaylie\nJaneth\nJayleen\nMarcela\nRachelle\nAnaya\nArielle\nGrecia\nHillary\nJaquelin\nLexie\nLia\nMandy\nNyla\nSarina\nTrista\nAlena\nAria\nChristy\nEbony\nElle\nFlor\nIvette\nJacquelin\nLila\nMagdalena\nSamira\nSydnee\nTaryn\nXitlaly\nAiyana\nCarol\nGriselda\nJocelynn\nJustice\nMillie\nRoxanna\nTayler\nYaritza\nAnabel\nCali\nGeorgina\nHarley\nJolie\nKatarina\nLaci\nLiberty\nLynette\nMadelynn\nMadilyn\nQuinn\nYolanda\nAliza\nAnabelle\nDevin\nElyse\nGissel\nHalle\nIndia\nKatharine\nKeira\nLilia\nMagaly\nMelisa\nMiracle\nNeha\nSerina\nSiena\nTori\nTrisha\nViridiana\nAlia\nArissa\nBaylee\nBrielle\nCamilla\nDania\nFelicia\nIsela\nJuanita\nKaiya\nKristine\nLara\nLisette\nMontserrat\nShania\nShea\nTammy\nTia\nVianey\nXiomara\nAliya\nAlysa\nAmya\nAni\nAntonia\nAyana\nCelia\nIvonne\nJaida\nJaiden\nJocelin\nJulisa\nNichole\nRhiannon\nRosalinda\nSheyla\nAisha\nElaina\nFelicity\nIrma\nJanae\nJuana\nKaylynn\nMaddison\nMaricela\nMaxine\nMeagan\nNathalia\nNicolette\nOdalys\nRubi\nSelina\nSimran\nSky\nAllie\nAnette\nCayla\nCorina\nDevyn\nJacklyn\nJewel\nKarly\nMaile\nNadine\nNelly\nPauline\nRaylene\nSonya\nStefanie\nTianna\nAmani\nAnita\nAryana\nConnie\nDalila\nElianna\nJoselin\nSariah\nAzeneth\nBryana\nCara\nDahlia\nDelia\nJoanne\nKayleen\nKayley\nKristy\nKyleigh\nLeanne\nLupita\nRory\nStar\nAbbey\nArleth\nBridgette\nCallie\nDianna\nElyssa\nGisela\nIlene\nJackelyn\nJanine\nJoelle\nJolene\nKayli\nMadisyn\nNatalya\nSally\nShyann\nVivianna\nYasmeen\nBrandi\nChelsey\nCoral\nDesteny\nDevon\nKaili\nKali\nKarime\nKaylah\nMacie\nMaliyah\nMeredith\nRia\nRita\nRosario\nSanjana\nSavana\nTamia\nYarely\nCinthia\nCitlalli\nClare\nDora\nIsabell\nJaylin\nKalani\nKeila\nLissette\nMckayla\nMilagros\nMyra\nNatalee\nPresley\nRegan\nRhea\nSkyla\nWhitney\nAdeline\nAlayna\nAnalise\nAnjali\nAnyssa\nBelinda\nCalista\nCandice\nChantal\nEvangelina\nKaela\nKatlyn\nKaylyn\nKenna\nMina\nNorma\nPearl\nAdrienne\nAnisa\nCarlie\nDanica\nDesirae\nGemma\nGisel\nIsha\nKarely\nLaurel\nLidia\nLondon\nLyric\nMarisela\nMaryam\nMelia\nNatali\nNayely\nSaira\nTatyana\nToni\nVioleta\nYulisa\nAnabella\nAnastacia\nAnnabel\nBonnie\nChrista\nDestiney\nGeraldine\nHallie\nHayden\nJosefina\nKaliyah\nKelli\nMakaila\nMaricruz\nNeida\nRyann\nSelene\nYsabella\nZaira\nAmaris\nAmina\nAriadna\nBrissa\nCandy\nCelina\nDanae\nGizelle\nJulieta\nLluvia\nMarcella\nNoa\nReanna\nSaray\nShyanne\nAbbigail\nAlex\nAlysia\nAmira\nAubrie\nBeverly\nCambria\nEmerald\nEmmalee\nGema\nJoslyn\nKalia\nKeyla\nLizet\nMicah\nMirian\nNalani\nNorah\nNyah\nPilar\nRosie\nShaina\nShayna\nAdela\nAditi\nAnai\nAnanya\nAyla\nBeatrice\nBeyonce\nEstela\nJaime\nJocelyne\nJudy\nKatia\nLeyna\nLilyana\nLorraine\nMadyson\nMarlyn\nMelinda\nMindy\nMira\nSelah\nTiara\nYamilet\nYessica\nAleah\nAstrid\nBetsy\nColleen\nJackie\nJaidyn\nKarolina\nKeely\nKeilani\nKristal\nLilah\nLizbet\nMaci\nMaryann\nMilan\nPriya\nRosalie\nRowan\nStevie\nTatianna\nTaya\nUnique\nZoie\nAlexi\nAlexys\nAlly\nAmalia\nAnalisa\nAnisha\nAspen\nAzul\nBrook\nCharlie\nColette\nDavina\nDiya\nEsha\nJovanna\nKeren\nLeyla\nMacey\nMaleah\nMiah\nNaidelyn\nNoelani\nOlga\nParker\nRianna\nSydnie\nAbbie\nAdamaris\nAnayeli\nAnessa\nArlyn\nCharity\nCherish\nCordelia\nDafne\nDorothy\nEstella\nGreta\nGwen\nHalie\nIvanna\nJasleen\nJazmyne\nJiselle\nKaterina\nKaty\nKellie\nKendal\nLeann\nLisbet\nLucille\nLyla\nNoor\nOriana\nShaylee\nTeagan\nYaneli\nYazmine\nZara\nAnahy\nAshlie\nAyleen\nBrigitte\nCandace\nCarlee\nCarli\nChanel\nChristian\nDayna\nDeisy\nEdna\nEma\nEssence\nEstephanie\nGiana\nGisell\nGissell\nJaelynn\nJaylynn\nJennyfer\nJosselyn\nKacey\nKalea\nLacy\nLorelei\nMadisen\nMeadow\nMila\nMiya\nMyla\nNallely\nNikita\nNya\nScarlet\nVerenice\nYanira\nAllyssa\nAnamaria\nAsha\nBriseida\nCathy\nChiara\nCorinne\nDanika\nDarla\nElvira\nEmerson\nGisele\nGiuliana\nGwenyth\nHaven\nIman\nIreland\nJaquelyn\nJustina\nLacie\nLillie\nLoren\nLynn\nMelani\nNaidelin\nPhoenix\nRayna\nSabina\nSequoia\nSoleil\nSusanna\nYaire\nYamileth\nZayra\nAbigayle\nAdelina\nAlannah\nAliana\nAlyna\nAnnalisa\nAnnmarie\nAvalon\nBrianne\nCassie\nChristiana\nDrew\nHilary\nIleana\nJasmyn\nJazlynn\nKailani\nKarlie\nKatheryn\nKhushi\nLillianna\nMagali\nMalaya\nMalaysia\nMalena\nMara\nMonserrath\nNayzeth\nReilly\nRhianna\nSoledad\nSoraya\nTierra\nVianney\nVivien\nXochilt\nAbigale\nAda\nAdamari\nAnnaliese\nBritany\nCarrie\nCharisma\nClarice\nDaija\nDawn\nEmmy\nGeneva\nGinger\nGwyneth\nJahaira\nJana\nJeniffer\nJennie\nKaris\nKarlee\nKatelin\nKaylen\nKeily\nKennedi\nKlarissa\nLexus\nLinnea\nMarian\nMarin\nNubia\nPricilla\nRaina\nShakira\nStefany\nZahra\nAidan\nAmirah\nArabella\nBernice\nCinthya\nDennise\nDina\nElia\nElliana\nEvelynn\nFrancine\nHaleigh\nIdaly\nJaya\nJaycee\nJesse\nJessenia\nJoceline\nKacie\nKatya\nLori\nMadalynn\nMaeve\nMarbella\nMarlee\nMaura\nMichele\nMildred\nMollie\nPricila\nRaegan\nRosaura\nSaige\nTyra\nAislinn\nAlexsandra\nAlycia\nAnh\nArianne\nAubree\nAya\nCatrina\nChelsie\nCiera\nCloe\nDalilah\nDallas\nDivya\nElsie\nHunter\nIlse\nIzabelle\nKalena\nKaycee\nKierra\nLaine\nLeia\nLisset\nLiza\nMargot\nMariafernanda\nMariel\nMariyah\nNoel\nOdalis\nRobin\nSana\nSirena\nTaliyah\nTristen\nYanely\nAhtziri\nAlexandrea\nAngelita\nArleen\nBianka\nBriza\nClarisa\nDayanna\nDolores\nElisha\nEmeli\nEmelie\nEmery\nFrankie\nHarleen\nItalia\nIyanna\nJacey\nJanie\nJena\nJoey\nJoleen\nKailah\nKarli\nKavya\nKayden\nKeanna\nKelley\nKiersten\nLaney\nLaysha\nLeslye\nLucie\nMalina\nMayah\nMika\nMilana\nMilena\nMisty\nMonet\nMoriah\nMyah\nPrincesa\nRochelle\nRomina\nRyleigh\nSarahy\nShyla\nStefani\nTanvi\nTristan\nZitlaly\nAilyn\nAliah\nAneesa\nAnushka\nBelle\nBetty\nCarley\nDasha\nDelanie\nEmi\nFrancisca\nGladis\nGlenda\nHaily\nIvana\nJayde\nJaylyn\nJenessa\nJesenia\nJessalyn\nJoann\nKai\nKaleigh\nKalina\nKamille\nKaydence\nKimberley\nKristiana\nKya\nKyara\nLili\nLilyanna\nLyndsey\nMadelyne\nMaiya\nMarianne\nMercy\nNeyda\nPatience\nRobyn\nSamanta\nSuzette\nVera\nVivienne\nWinnie\nYanet\nYoana\nZaria\nZulema\nAbrianna\nAida\nAlyssia\nAnnabell\nAnnelise\nAnusha\nAvril\nAzalea\nBernadette\nCienna\nDarya\nDianne\nEloise\nIvory\nJailyn\nJaylen\nJeslyn\nJessi\nJovana\nKamila\nKeara\nKeeley\nKenzie\nLailah\nLeilany\nMarta\nMason\nNaya\nRandi\nRosemarie\nShanti\nSofie\nSydni\nThea\nVeronika\nVianca\nYara\nYelena\nYoselyn\nAbbygail\nAbygail\nAcacia\nAdrina\nAkira\nAlaysia\nAlivia\nAmbar\nArwen\nAshtyn\nBailee\nBillie\nCailin\nChelsy\nDariana\nEmalee\nEmelyn\nFarah\nFarrah\nFaviola\nGiavanna\nHadley\nHennessy\nInes\nJaedyn\nJasmeen\nJayna\nJeannie\nJourney\nKaelin\nKatalina\nKaylani\nKayle\nKim\nKimberlee\nKristi\nKylah\nLeena\nLesli\nLianna\nMarla\nMay\nMeera\nNellie\nNeveah\nPaulette\nPriyanka\nSabine\nSade\nSalina\nShauna\nSheridan\nSherry\nSunny\nValarie\nYaquelin\nAdia\nAja\nAlyza\nAnel\nAnneliese\nAriah\nAshton\nBreanne\nBrigette\nCampbell\nCheryl\nDara\nDaria\nDivine\nElana\nEmelia\nEmili\nFaye\nFlora\nHelene\nIsyss\nIzabel\nJaliyah\nJanell\nJanelly\nJayme\nJazzlyn\nJessika\nJesus\nJissel\nJoan\nJune\nKirra\nKourtney\nLailani\nLouise\nLucinda\nMari\nMarysol\nMinerva\nMirella\nMona\nMyriam\nNailea\nPaisley\nRaelene\nRayleen\nSanai\nSayra\nShawna\nShira\nSinai\nSonja\nStarr\nSuzanna\nYadhira\nYulianna\nZainab\nAdelaide\nAdrianne\nAide\nAlanis\nAli\nAline\nAlora\nAlysha\nAnakaren\nAnela\nAnnamarie\nAriella\nArlet\nArmani\nAverie\nChandler\nChase\nCiarra\nCitlally\nConsuelo\nDarcy\nDaysi\nDoris\nEryn\nEvalyn\nEvette\nFanny\nFranchesca\nHaydee\nHolland\nJalynn\nJanely\nJannet\nJenelle\nJenesis\nJesica\nJodie\nKalyn\nKarisma\nKarley\nKathia\nKelsie\nKristie\nLaylah\nLeilah\nLela\nMaegan\nMaira\nMarielle\nMarjorie\nMichell\nMirna\nNadya\nNoemy\nOfelia\nPrisila\nRamona\nRayne\nReece\nRina\nRosalyn\nSaniya\nSiobhan\nSunshine\nTamar\nTehya\nThania\nVenus\nVienna\nXitlalic\nYesica\nYoseline\nAdele\nAlessia\nAlexie\nAlisson\nAlliyah\nAmairani\nAmerie\nAndria\nAngeli\nAngelika\nAnjelica\nAnnemarie\nAnoushka\nAriela\nAyden\nBaylie\nBertha\nBreann\nBriseyda\nCailyn\nCaitlynn\nCameryn\nCarmela\nCarson\nCecelia\nChantel\nClarisse\nCleo\nDaja\nDanya\nDarby\nDebbie\nDejah\nElayna\nElvia\nEmme\nEvelina\nGisella\nIsaura\nJalissa\nJarely\nJaslyn\nJianna\nJordin\nJosephina\nKaelynn\nKailynn\nKairi\nKalista\nKameron\nKari\nKaylene\nKeana\nKhloe\nLani\nLeela\nLeona\nLexy\nLinette\nLiyah\nLizzie\nMabel\nMai\nMaren\nMariaelena\nMelannie\nMichel\nMilca\nMilla\nNika\nNiya\nNola\nNyomi\nPetra\nPromise\nRebeka\nRena\nRosalind\nRyley\nSahar\nSanaa\nSelma\nShani\nShivani\nShriya\nStephani\nSulema\nSuzanne\nTea\nTrish\nViktoria\nZaina\nZariah\nAmberly\nAnahit\nAngelie\nAnjolie\nAolani\nArden\nAriadne\nArisbeth\nAshely\nAtziri\nAudry\nBree\nBreonna\nBryn\nCate\nChana\nCharlee\nChristal\nConcepcion\nDani\nDesire\nDestini\nDestinie\nDixie\nElva\nElysia\nEmani\nEmeline\nEster\nGiulia\nHarper\nHeily\nHermione\nIxchel\nJaila\nJalen\nJalyn\nJanel\nJaylee\nJeanelle\nJennah\nJizelle\nJoely\nKaleah\nKalie\nKamilah\nKhadija\nKimora\nKiran\nLayne\nLeana\nLeonor\nLibby\nLilli\nLitzi\nLorelai\nLynda\nMahogany\nMakaela\nMariaguadalupe\nMaricarmen\nMarlin\nMartina\nMitzy\nMontana\nMyrka\nNahomi\nNaia\nNaomy\nNayla\nNereida\nNidia\nNikole\nNylah\nNyssa\nOsiris\nRichelle\nRosalia\nRosamaria\nSahara\nSakura\nSamia\nSanya\nShana\nShantel\nSharlene\nShay\nShelly\nSheryl\nSindy\nSkyy\nSol\nSusie\nTala\nTeresita\nTerra\nTiffani\nUma\nVannessa\nVianna\nWinter\nYuridia\nZitlali\nAbriana\nAdelyn\nAdina\nAdora\nAdrian\nAlyah\nAmia\nAnaiya\nAngelena\nAniah\nArline\nArriana\nArya\nAshanty\nAshna\nAudra\nAurelia\nAveri\nAyah\nAzaria\nBethanie\nBibiana\nBrionna\nCailey\nCarys\nDaniel\nDanyelle\nDesiray\nDestany\nDevan\nDeysi\nDyanna\nElexis\nElora\nElsy\nEmber\nEmelin\nErlinda\nEvan\nEvelia\nFrancis\nGaby\nGissele\nGretchen\nHannia\nHilda\nIyana\nJakelin\nJalyssa\nJamilet\nJamileth\nJanna\nJayne\nJazlin\nJeannette\nJenae\nJisel\nJoselyne\nJulieanna\nKaeli\nKarin\nKay\nKiya\nKorina\nLessly\nLexis\nLilith\nLillyana\nLivia\nLizett\nMadelynne\nMadilynn\nMaisie\nMaliah\nMalika\nManuela\nMariajose\nMarleen\nMarlena\nMaylin\nMayte\nMelodie\nMelony\nMercedez\nMetzli\nMikala\nMikenna\nMiroslava\nMiyah\nMonae\nMonzerrat\nMorelia\nMylee\nNandini\nNautica\nNayelli\nQuetzalli\nQuincy\nRachell\nRaelynn\nRaya\nRio\nRoxy\nSafa\nSamiah\nSamya\nSascha\nSela\nShae\nShianne\nShoshana\nShruthi\nSianna\nSiya\nSolana\nSonali\nTabatha\nTahlia\nTawny\nTrina\nVannesa\nYamilex\nYsabel\nZion\nAilene\nAiyanna\nAlanah\nAlessa\nAmarie\nAmethyst\nAmie\nAmiya\nAnaiah\nAnali\nAnaliese\nAngelic\nAranza\nAraya\nAudree\nAysha\nAzalia\nBecky\nBetsabe\nBreeanna\nBryce\nCallista\nCesia\nCharli\nChasity\nChaya\nChristie\nCianna\nCorrina\nCorrine\nDarian\nDebora\nDelila\nDemi\nDeziree\nDivina\nEllery\nElly\nEloisa\nEmmeline\nEnya\nEsme\nEvangeline\nFallon\nGenevie\nGurleen\nIsadora\nJacinda\nJacquelynn\nJaimie\nJakeline\nJalene\nJasmyne\nJaycie\nJaymee\nJean\nJenevieve\nJill\nJorja\nJoscelyn\nJose\nJoslynn\nJuliann\nKadence\nKailie\nKambria\nKaterin\nKathrine\nKelis\nKhadijah\nKiani\nKiarra\nKyanna\nLainey\nLanie\nLeonela\nLilit\nLisandra\nLizabeth\nLizzet\nLouisa\nMahalia\nMakala\nMarelyn\nMariella\nMatilda\nMattie\nMilly\nMoira\nMonika\nMyrna\nNailah\nNariah\nNaydelyn\nNicola\nNisha\nPooja\nRaelyn\nRain\nRania\nRemy\nRilee\nRosalba\nRosalina\nSachi\nSamarah\nSamaria\nSaylor\nSilvana\nSloane\nSriya\nStephania\nTarah\nTreasure\nTyla\nVi\nVy\nYamila\nYamile\nZaida\nAanya\nAidee\nAilani\nAkasha\nAkemi\nAlaya\nAlexsis\nAlexzandria\nAlix\nAllana\nAlyssamarie\nAmalie\nAmiyah\nAmrita\nAndie\nAndra\nAngelia\nAnnalee\nAnthony\nAntoinette\nArlett\nArushi\nAshlin\nAshlynne\nAustin\nAyiana\nBaleria\nBlythe\nBrookelyn\nCaleigh\nCandelaria\nCaren\nCatarina\nCathryn\nChanelle\nCharley\nChyanne\nCiana\nCortney\nCristy\nDaijah\nDarleen\nDelina\nDevina\nDezirae\nElani\nElicia\nEllyse\nEmilly\nErendira\nEstefanie\nEugenia\nFatimah\nFayth\nFrancia\nFreya\nGigi\nHanah\nHeavenly\nHenna\nHuda\nIndigo\nIndira\nInez\nItzayana\nIzabela\nJackelin\nJacquelyne\nJamya\nJanai\nJania\nJaylah\nJelena\nJenni\nJersey\nJisela\nJodi\nJoi\nJulieann\nJulyssa\nKacy\nKaileigh\nKaily\nKaira\nKalei\nKalissa\nKamari\nKaycie\nKeilah\nKhalia\nKinsey\nKloe\nKristyn\nKyle\nKyndal\nLaniya\nLeandra\nLillyanna\nLiz\nLora\nMackenna\nMakaylee\nMaranda\nMarielena\nMariya\nMaureen\nMeg\nMegha\nMeilani\nMelanny\nMicayla\nMirka\nNaila\nNicolle\nNova\nOphelia\nRaeann\nRashel\nRayann\nReanne\nRenata\nRubie\nRut\nSahana\nSaleen\nSantana\nSedona\nSheccid\nShelbie\nSherlin\nSherly\nSimona\nStacie\nSuhani\nSujey\nSymphony\nTaliah\nTamera\nTanisha\nTayla\nTeah\nTenaya\nTherese\nTrinidad\nVarsha\nVenessa\nYaneth\nYatziri\nZenia\nZowie\nAdena\nAdi\nAiko\nAilin\nAime\nAiram\nAishwarya\nAlejandro\nAlexes\nAlianna\nAlona\nAlyce\nAlyse\nAlysse\nAmal\nAmi\nAminah\nAmparo\nAnabell\nAnalicia\nAnia\nAnisah\nAnnamaria\nArianah\nAryssa\nAshleen\nAshlei\nAsucena\nAsusena\nAudrie\nAyesha\nBianey\nBrea\nBria\nBridgett\nBrynna\nCaley\nCalla\nCamelia\nCassia\nCatelyn\nCaylee\nChance\nCharis\nCintia\nColby\nConstance\nDaiana\nDaisey\nDaisha\nDanitza\nDarlyn\nDaysha\nDeana\nDelyla\nDestine\nDulcemaria\nDyani\nElina\nElizabet\nEmiley\nEmmaline\nErykah\nEvelyne\nFlorence\nGabby\nGardenia\nGianni\nHaruka\nHayle\nHellen\nHonesty\nIlana\nIleen\nIlianna\nIlliana\nImaan\nImari\nIran\nItzia\nJael\nJailynn\nJayline\nJaymie\nJazelle\nJazzmine\nJeanine\nJina\nJolee\nJolina\nJoselynn\nJoya\nJuliett\nKaci\nKady\nKamea\nKarah\nKarmen\nKaryn\nKaryssa\nKatherin\nKathlyn\nKaytlin\nKelsi\nKeona\nKeya\nKirstin\nKori\nKyli\nKyrah\nLane\nLeeann\nLilianne\nLilyan\nLilyann\nLiseth\nLois\nLuciana\nLucila\nLyndsay\nMacayla\nMadelin\nMakaylah\nMalaika\nMansi\nMarcelina\nMaricella\nMaritsa\nMarleni\nMaryrose\nMei\nMelyssa\nMichael\nMoncerrat\nMyranda\nNichelle\nNiki\nNour\nOdette\nParisa\nPenny\nPortia\nPriscella\nPrisilla\nQuetzaly\nReem\nReena\nRheanna\nRishika\nRosio\nSaloni\nSaniah\nSavina\nShanna\nShantal\nShayne\nShelley\nSiana\nSpencer\nSterling\nTallulah\nTegan\nTenley\nTiarra\nTristin\nYenifer\nYisel\nYocelyn\nYsabelle\nZayla\nZenaida\nZulma\nAaliya\nAalyah\nAbbigale\nAbigael\nAdalyn\nAgnes\nAlba\nAlea\nAlexcia\nAlexxis\nAleyda\nAlin\nAlizah\nAlvina\nAlyanna\nAmaiya\nAmarah\nAmariah\nAmmy\nAmrit\nAnacristina\nAndreina\nAngelle\nAngely\nAngelyna\nAnneke\nArcelia\nAriane\nAriyana\nAriyanna\nArizbeth\nAsma\nAvani\nAviana\nAziza\nBebe\nBerlin\nBeth\nBobbi\nBrandie\nBrieanna\nBryan\nCaelan\nCaris\nCecily\nCelest\nChantelle\nCherry\nChevelle\nChristopher\nClementine\nCorissa\nCydney\nDaisie\nDajah\nDasia\nDavid\nDayanira\nDayra\nDeisi\nDevynn\nDeyanira\nDinah\nDomonique\nDonya\nDyana\nElijah\nElli\nElliott\nEmelly\nEmmely\nEriana\nEstephany\nEternity\nEvie\nFlorencia\nGabriel\nGenessis\nGracelyn\nGricelda\nHafsa\nHali\nHarlee\nHarlie\nHeydi\nHina\nIdalia\nIrais\nIrina\nIsmerai\nItaly\nItzell\nJacinta\nJailene\nJamila\nJanaya\nJanett\nJanis\nJaniyah\nJanneth\nJazzlynn\nJeanie\nJeanne\nJordana\nJoshlyn\nJoycelyn\nJubilee\nJulian\nKalee\nKaleena\nKareli\nKarena\nKarol\nKarsyn\nKathya\nKattie\nKaylea\nKaytlyn\nKeala\nKeiana\nKennia\nKeyana\nKeziah\nKiah\nKimberli\nKimia\nKitana\nKiyah\nKora\nKyah\nKylei\nKyrstin\nLamya\nLarisa\nLelani\nLesslie\nLezly\nLondyn\nLorna\nMalak\nMargaux\nMariadelosang\nMariaisabel\nMaribella\nMarilynn\nMarion\nMarleny\nMarlo\nMarwa\nMaryah\nMaryanne\nMattison\nMayerli\nMaylene\nMayrin\nMea\nMeaghan\nMeena\nMeliza\nMerissa\nMichaella\nMidori\nMikyla\nMiryam\nNahomy\nNaidely\nNajah\nNavaeh\nNavya\nNayana\nNayelly\nNiamh\nNicki\nNikhita\nNitya\nNiyah\nOceana\nOlive\nPallavi\nPia\nPolina\nRavyn\nRian\nRiana\nRileigh\nRisa\nRomy\nRonnie\nRoslyn\nRoxie\nSaida\nSailor\nSalem\nSania\nShanya\nShirin\nSiera\nSitlaly\nSkylee\nSneha\nSocorro\nSteffany\nSusannah\nSylvie\nTasneem\nTate\nTayah\nTeri\nTerry\nThais\nTheodora\nTopanga\nTricia\nTrinidy\nTriniti\nVallery\nVania\nVeda\nViviann\nVivianne\nWaverly\nWynter\nYahayra\nYailin\nYaira\nYennifer\nYissel\nYohana\nYuri\nYuritzi\nZia\nZinnia\nZoee\nZuri\nAaliah\nAbagail\nAdalia\nAdreanna\nAgustina\nAiden\nAilish\nAine\nAislynn\nAkanksha\nAkayla\nAlahna\nAlayah\nAleana\nAleen\nAleigha\nAleksa\nAlexander\nAlexya\nAleyah\nAllegra\nAllysa\nAlyana\nAmaia\nAmairany\nAmaria\nAmayah\nAmna\nAmyah\nAn\nAnaid\nAnalia\nAnaly\nAndreana\nAndrew\nAngelly\nAnjelina\nAnjolina\nAnmol\nAnnel\nArelis\nArelys\nAri\nArlin\nArpi\nAtziry\nAubry\nAustyn\nAvianna\nAvigail\nAvneet\nAylene\nAyline\nAysia\nBahar\nBerenize\nBerlyn\nBlake\nBobbie\nBrandon\nBriann\nCaden\nCaila\nCaitlan\nCalli\nCalliope\nCamden\nCapri\nCarmina\nCarolyne\nCarolynn\nCarter\nCathleen\nCaylin\nCelestina\nCharisse\nCharmaine\nCherokee\nChina\nChloee\nChyna\nCollette\nConstanza\nCooper\nCorinna\nCorrin\nDajanae\nDayrin\nDebra\nDena\nDenia\nDenice\nDeserie\nDesirey\nDestanie\nDior\nElan\nElida\nElisia\nElizah\nEllianna\nEllis\nElysa\nElyza\nEman\nEmmily\nEmoni\nErandi\nEstephania\nEsthela\nEvonne\nFabiana\nFaythe\nFernando\nFiorella\nFiza\nGaia\nGeena\nGenna\nGetsemani\nGianina\nGimena\nGissela\nGiulianna\nGlory\nGwenivere\nHaili\nHalia\nHalley\nHarjot\nHaylei\nHayleigh\nHeba\nHollie\nIda\nIleanna\nImelda\nIrelynn\nIrie\nIrlanda\nIshani\nIsobel\nIvon\nJadelyn\nJaeda\nJaela\nJahnavi\nJaileen\nJamilette\nJaniya\nJaydin\nJazleen\nJazz\nJazzmin\nJeanna\nJonathan\nJorden\nJordynn\nJosalyn\nJosette\nJules\nJulieana\nJustyce\nKaile\nKailea\nKallie\nKameryn\nKareena\nKarine\nKaryna\nKassie\nKatharina\nKathie\nKaydee\nKaylana\nKaytlynn\nKazandra\nKeiko\nKelsy\nKendyl\nKennya\nKera\nKerri\nKerry\nKierstin\nKlara\nKrishna\nKrysten\nKyler\nLacee\nLael\nLaisa\nLaya\nLeeanne\nLeilanie\nLeiloni\nLeslee\nLillyan\nLiv\nLuci\nMadai\nMadelaine\nMagnolia\nMaha\nMailani\nMaite\nMakenzi\nMakyla\nMalana\nMalayah\nMalin\nMalorie\nManasa\nMarely\nMariadelcarmen\nMarilin\nMarily\nMaritere\nMarrissa\nMarygrace\nMarylin\nMattea\nMatthew\nMayela\nMazie\nMeghana\nMekayla\nMellanie\nMerlin\nMeya\nMicaiah\nMichela\nMikaila\nMiley\nMiliani\nMonserat\nMonserratt\nMykayla\nNala\nNanci\nNaydeline\nNayelie\nNaylea\nNazareth\nNiah\nNidhi\nNohemi\nNovalee\nOctavia\nOlyvia\nPersephone\nPreslie\nPyper\nRacheal\nRadhika\nRana\nRaylynn\nRebecka\nRene\nRhyan\nRida\nRivers\nRoberta\nRoni\nRosaisela\nRosalva\nRosy\nRoxann\nRuhi\nRyanne\nSaba\nSakshi\nSalome\nSamiyah\nSammantha\nSammi\nSamone\nSaniyah\nSarena\nScout\nSemaj\nSerafina\nShaelyn\nShaila\nShanell\nShanelle\nShaniya\nShannel\nShaya\nShaye\nShiann\nShiloh\nSloan\nSolei\nSommer\nStarla\nStormy\nSumaya\nSutton\nSymone\nTalisa\nTalitha\nTanaya\nTaniya\nTeanna\nTera\nTeya\nTiffanie\nTisha\nTrinitee\nUrsula\nVaishnavi\nVani\nWendi\nXiana\nXochil\nYael\nYahira\nYocelin\nYui\nYuki\nYzabella\nZahira\nZamira\nZarah\nZarina\nZayda\nZipporah\nZora\nZoya\nZurisadai\nAashna\nAastha\nAdaly\nAdamary\nAeryn\nAkilah\nAlasia\nAlayjah\nAleesa\nAlejandrina\nAleksandra\nAlexxa\nAlexyss\nAlinah\nAlitzel\nAllissa\nAlthea\nAlynna\nAmayrani\nAmena\nAmiah\nAnamarie\nAnanda\nAnasofia\nAnay\nAngeleah\nAngelee\nAngelene\nAngella\nAnica\nAnkita\nAnnet\nAnneth\nAnnissa\nAntonella\nAnvi\nAoife\nAra\nArantxa\nAreana\nAreanna\nAries\nAris\nArlen\nAsiah\nAsuzena\nAtalia\nAthina\nAutum\nBayleigh\nBrandee\nBreauna\nBrianda\nBrooklin\nCamile\nCamily\nCarlyn\nCarmella\nChandra\nCharlette\nChenoa\nChloie\nChole\nChristianna\nCiena\nClaudette\nCloey\nCrista\nCytlaly\nCzarina\nDaizy\nDanette\nDaphney\nDasani\nDayan\nDeirdre\nDelicia\nDella\nDenae\nDenali\nDulse\nDyamond\nDylann\nEcho\nElda\nEleana\nEleni\nElinor\nEllee\nElliot\nEllison\nEmiliana\nEmmalie\nEmmaly\nEmmi\nErandy\nEric\nErick\nEryka\nErynn\nEveline\nEvony\nFionna\nFranceska\nGena\nGeorgette\nGeorgiana\nGiovana\nGracey\nGracy\nGrisel\nGweneth\nHadassah\nHaide\nHaidyn\nHalina\nHan\nHarmonie\nHarneet\nHerlinda\nHermelinda\nHosanna\nIla\nIlyssa\nIshita\nIsla\nIssis\nIva\nIvania\nIveth\nJacie\nJacklynn\nJadah\nJadelynn\nJahzara\nJaidin\nJalena\nJamia\nJanea\nJaritza\nJatziri\nJazel\nJenica\nJennica\nJensen\nJeralyn\nJessy\nJezabel\nJezebel\nJoei\nJohnna\nJoie\nJossie\nJourdan\nJozlyn\nJuniper\nKadyn\nKaelee\nKailen\nKala\nKalen\nKaliah\nKalin\nKallista\nKalynn\nKalyssa\nKalysta\nKamora\nKamya\nKana\nKandace\nKaori\nKarleigh\nKaroline\nKatheryne\nKatilyn\nKaylamarie\nKaylei\nKaylia\nKealani\nKeaton\nKeiry\nKelci\nKenadie\nKerrigan\nKeyli\nKilee\nKimberlin\nKimi\nKimiko\nKomal\nKylea\nKyrsten\nLakshmi\nLaureen\nLeigh\nLeora\nLexia\nLeylani\nLibni\nLida\nLillia\nLillianne\nLilyanne\nLindy\nLinsey\nLiora\nLiset\nLisseth\nLizzette\nLolita\nLucine\nLuis\nLuzmaria\nLyna\nLynna\nLysette\nMadina\nMadisson\nMadysen\nMae\nMagen\nMailey\nMalanie\nMalea\nManar\nMandi\nMarcia\nMargo\nMarguerite\nMariadejesus\nMarilu\nMariposa\nMaris\nMaryana\nMarycarmen\nMaryn\nMaryssa\nMatea\nMathilda\nMatilde\nMaylee\nMayleen\nMel\nMelodee\nMena\nMerina\nMetztli\nMikaylah\nMinh\nMuskaan\nMylie\nNada\nNaiya\nNaja\nNanette\nNaomie\nNarissa\nNavneet\nNeda\nNereyda\nNeriah\nNeva\nNevada\nNhi\nNicky\nNijah\nNinel\nNiobe\nNiurka\nNivia\nNuria\nNuvia\nOcean\nOpal\nOscar\nParris\nPreeti\nRae\nRamandeep\nRamya\nRaniyah\nRayanna\nRayven\nRazan\nRhiana\nRiddhi\nRivka\nRoselin\nRosita\nRylan\nSaanvi\nSabreena\nSahian\nSahira\nSahiti\nSakina\nSamhita\nSamuel\nSanaya\nSaryah\nSeanna\nSera\nShabnam\nShaden\nShaelynn\nShalini\nShamya\nShealyn\nShefali\nShelbi\nShelsey\nShruti\nSierrah\nSincere\nSiomara\nSiri\nSonora\nSreya\nSrinidhi\nSruthi\nStaci\nTaja\nTamya\nTatyanna\nThelma\nTimia\nTobi\nTorrey\nTorri\nTyana\nUnknown\nValeri\nVeena\nVenice\nVerena\nViana\nVianka\nVickie\nVina\nVittoria\nWilla\nXenia\nXitlalli\nYamilette\nYana\nYasmina\nYazmeen\nYenny\nYoanna\nYohanna\nYunuen\nZaniya\nZianna\nZoila\nZuleima\nZuly\nAaron\nAarushi\nAdara\nAddie\nAdelaida\nAdelle\nAdithi\nAdylene\nAgatha\nAila\nAira\nAislin\nAisling\nAkane\nAkansha\nAkina\nAlan\nAleeza\nAlesandra\nAlesia\nAlexiz\nAleyna\nAlicea\nAliciana\nAlisia\nAlizae\nAlizay\nAllexa\nAllysia\nAlmadelia\nAlonna\nAlya\nAlyissa\nAmberlyn\nAmeena\nAmeerah\nAmera\nAmerika\nAmilia\nAmisha\nAnagha\nAnahita\nAnalee\nAnalilia\nAnalyn\nAnalyse\nAndreah\nAnelise\nAngele\nAngeleena\nAngeni\nAnicia\nAnja\nAnnaka\nAnnalia\nAnnalina\nAnnaly\nAnnete\nAnny\nAnushree\nAnyah\nAqsa\nArelly\nArieana\nArisa\nArlyne\nArrianna\nAshby\nAshia\nAshlen\nAshleynicole\nAthziry\nAubriana\nAubrianna\nAubrielle\nAudrianna\nAvantika\nAydan\nAyme\nAyva\nAzariah\nAzia\nAzusena\nBaily\nBanesa\nBayley\nBeau\nBetzabeth\nBibianna\nBlair\nBreeana\nBreena\nBrennan\nBrian\nBrigit\nBritni\nBritny\nBriyana\nBronwyn\nBrookelynn\nBryannah\nBrynne\nBryonna\nCady\nCaeli\nCalie\nCalysta\nCarleen\nCarlotta\nCasie\nChantell\nChastity\nChayse\nChristabel\nChristi\nClaryssa\nCoco\nCori\nCorin\nCristian\nCristiana\nCyana\nCyndi\nDaelynn\nDagny\nDailyn\nDakotah\nDalena\nDalya\nDamariz\nDaniya\nDarlin\nDarling\nDaylene\nDeanne\nDeeana\nDelany\nDeniz\nDesaray\nDeseree\nDesteni\nDestenie\nDevany\nDevorah\nDezaray\nDiego\nDillan\nDoreen\nDymond\nEbelin\nEdie\nElanor\nElba\nElleanna\nElma\nElodie\nEmiko\nEmmalynn\nEmmie\nEmonie\nEmy\nErianna\nErnestina\nEstelle\nEvalynn\nEvy\nEzra\nFiorela\nFlorentina\nFlynn\nGalina\nGeanna\nGenavieve\nGenessa\nGizzelle\nGrabiela\nGracelynn\nGracen\nGraciella\nGrayce\nGuillermina\nGuinevere\nGwendalyn\nHaiden\nHaileigh\nHala\nHanan\nHayde\nHayli\nHeidie\nHonor\nIlani\nIleene\nIlyana\nIna\nIriana\nIsaiah\nIsamar\nIssabella\nItsel\nItxel\nItza\nIvan\nIvett\nJacelyn\nJacy\nJaeden\nJaelene\nJahayra\nJaide\nJailah\nJailine\nJalani\nJami\nJamiah\nJamilah\nJanay\nJaneli\nJaniah\nJannett\nJannette\nJaquelyne\nJared\nJareli\nJaslin\nJason\nJayah\nJayani\nJaydn\nJazlyne\nJeannine\nJenavie\nJennessa\nJeraldine\nJerica\nJessa\nJeweliana\nJewelissa\nJewels\nJiana\nJilian\nJisselle\nJocelynne\nJoshua\nJoslin\nJosseline\nJosselyne\nJude\nJudit\nJuliane\nJulietta\nJulliana\nJulyana\nKadie\nKaelah\nKaiah\nKaithlyn\nKalayah\nKaliya\nKalli\nKanani\nKarelly\nKaricia\nKarizma\nKarma\nKatelynne\nKaterine\nKatey\nKati\nKatiana\nKatlin\nKayanna\nKaylan\nKeilana\nKeili\nKelia\nKemberly\nKendel\nKeri\nKevin\nKeyara\nKhushpreet\nKiele\nKierah\nKimani\nKindra\nKiyomi\nKobi\nKodi\nKoral\nKorinne\nKoryn\nKrysta\nKrystina\nKrystle\nKyleen\nKyley\nKymberly\nKyndall\nLailany\nLaina\nLainie\nLaiza\nLanae\nLatrice\nLaurie\nLavanya\nLelia\nLenore\nLeonna\nLeyah\nLiah\nLian\nLianne\nLiliann\nLilibeth\nLiliya\nLivier\nLorie\nLorien\nLorissa\nLove\nLuana\nLucienne\nLulu\nLux\nLylah\nLynne\nLynnette\nMackayla\nMaelyn\nMagdalene\nMahala\nMaiah\nMaija\nMaily\nMaisy\nMakaya\nMakenzy\nMalani\nMali\nMalissa\nManal\nManpreet\nManvir\nMar\nMaraya\nMarcy\nMariadelaluz\nMarialuisa\nMariann\nMarifer\nMariko\nMarilee\nMarisabel\nMarly\nMaryan\nMarycruz\nMayeli\nMayson\nMeah\nMeghna\nMehek\nMekenzie\nMelaney\nMele\nMelenie\nMeleny\nMelonie\nMerary\nMickayla\nMimi\nMinna\nMirely\nMisha\nMitra\nMitzi\nMoncerat\nMuskan\nMykaela\nMylene\nNadeen\nNairi\nNaizeth\nNajae\nNanami\nNaraly\nNataley\nNatally\nNaydeli\nNeena\nNelida\nNely\nNemesis\nNeomi\nNetanya\nNicholle\nNila\nNiomi\nNirvana\nNisa\nNitza\nNivea\nNoah\nNohely\nNoreen\nOksana\nPatrice\nPatsy\nPatty\nPayal\nPerris\nPrerana\nPrescilla\nPrisma\nPuneet\nQueenie\nQuetzali\nRacquel\nRaeanna\nRaeleen\nRaena\nRaevyn\nRafaela\nRaisa\nRani\nRanya\nReign\nRemi\nRenae\nReylene\nRiver\nRohini\nRori\nRosalee\nRosella\nRoya\nRyanna\nSaffron\nSalena\nSamar\nSamarra\nSamatha\nSamaya\nSamirah\nSamyra\nSanah\nSandhya\nSanika\nSapphire\nSawyer\nSayla\nSayuri\nScarleth\nSecilia\nSeidy\nSelia\nSelin\nSenna\nSerene\nSerinity\nSetareh\nSeven\nShaliyah\nShalynn\nShamira\nShaniah\nShanice\nShantall\nShantelle\nSharai\nSharleen\nShasta\nShaylin\nShelsy\nShir\nShyan\nSiara\nSierah\nSimrat\nSindhu\nSitlali\nSivan\nSofiya\nSolange\nSole\nSona\nSoriah\nSrishti\nStephenie\nSumedha\nSwati\nSyra\nTaelor\nTaeya\nTaiz\nTalina\nTaline\nTamaya\nTaniah\nTasha\nTesla\nTiera\nTierney\nTifanny\nTillie\nTiya\nTonya\nTorie\nTova\nTracey\nTraci\nTracie\nTrang\nTriana\nTristyn\nTrixie\nUna\nUriah\nVallerie\nVannia\nVerenise\nVianne\nVicki\nViola\nVivica\nWanda\nWesley\nXochilth\nYahir\nYajayra\nYakelin\nYanelli\nYanitza\nYarissa\nYecenia\nYerania\nYuka\nYumi\nYuna\nYuvia\nZamantha\nZaniyah\nZariyah\nZaynab\nZola\nZoraya\nEmily\nAshley\nSamantha\nIsabella\nNatalie\nAlyssa\nEmma\nSophia\nJessica\nJasmine\nElizabeth\nMadison\nJennifer\nAlexis\nKimberly\nAndrea\nAbigail\nHannah\nSarah\nVanessa\nMia\nStephanie\nBrianna\nOlivia\nMichelle\nKayla\nGrace\nLeslie\nMaria\nVictoria\nJocelyn\nDiana\nLauren\nSofia\nAlexandra\nAngelina\nHailey\nKatherine\nNicole\nDestiny\nMelissa\nEvelyn\nChloe\nAva\nMelanie\nJacqueline\nAriana\nJulia\nAlondra\nTaylor\nDaniela\nAlexa\nSydney\nIsabel\nKaitlyn\nRachel\nDaisy\nElla\nAmanda\nAngela\nMegan\nGabriela\nValerie\nMaya\nGiselle\nSavannah\nKylie\nAmy\nValeria\nAudrey\nBriana\nAllison\nAnna\nFaith\nEsmeralda\nMarissa\nArianna\nLily\nNatalia\nAdriana\nCrystal\nRuby\nKarla\nKaren\nMariana\nKatelyn\nZoe\nAlejandra\nCeleste\nAngelica\nJasmin\nBrenda\nKaylee\nBrooke\nJazmin\nSara\nHaley\nTrinity\nDanielle\nJade\nRebecca\nGuadalupe\nMiranda\nKarina\nMadeline\nAna\nGabriella\nGenesis\nPaige\nCatherine\nLeah\nMakayla\nJenna\nLizbeth\nKelly\nJordan\nAaliyah\nMariah\nMorgan\nSierra\nLiliana\nJuliana\nNaomi\nCynthia\nRiley\nTiffany\nCassandra\nAmber\nAlexia\nBianca\nSabrina\nClaire\nChristina\nIsabelle\nKatie\nAlicia\nMonica\nWendy\nJoanna\nKate\nVivian\nErika\nLaura\nPriscilla\nVeronica\nCarolina\nEmely\nSandra\nNancy\nDesiree\nLillian\nFatima\nNevaeh\nAmelia\nCamila\nYesenia\nMackenzie\nJulianna\nBreanna\nCindy\nMary\nLeilani\nJazmine\nJulissa\nCharlotte\nGianna\nKassandra\nApril\nDenise\nErin\nGabrielle\nItzel\nAvery\nElena\nParis\nPerla\nCaroline\nJamie\nNadia\nPaola\nAlexandria\nMya\nSophie\nAngie\nMaritza\nNayeli\nAlana\nSummer\nAngel\nEva\nViviana\nBrooklyn\nShelby\nAnahi\nChelsea\nMarlene\nAutumn\nMarisol\nJada\nClarissa\nMelody\nMonique\nBailey\nPaulina\nXimena\nAriel\nCecilia\nSerena\nMikayla\nCassidy\nAliyah\nKiara\nBella\nKathryn\nClaudia\nJanet\nAlina\nDaniella\nDulce\nErica\nMiriam\nNataly\nTatiana\nJimena\nYasmin\nAileen\nAmerica\nCamille\nLeila\nCaitlin\nKylee\nMadelyn\nMarina\nCarmen\nJulie\nLindsey\nCheyenne\nMolly\nIris\nLesly\nKeira\nAshlyn\nDelaney\nJordyn\nLayla\nEliana\nKennedy\nKatrina\nElise\nJillian\nCaitlyn\nGisselle\nKendall\nSerenity\nDayanara\nIrene\nIsabela\nKyla\nNatasha\nSadie\nAlison\nCristina\nFiona\nPatricia\nLucy\nNoemi\nPeyton\nRaquel\nRylee\nRosa\nBethany\nFernanda\nHeidi\nJenny\nMalia\nSarai\nAraceli\nKiana\nStella\nBritney\nCourtney\nTeresa\nZoey\nCarly\nAshlee\nHelen\nMargaret\nAmaya\nAurora\nChristine\nJosephine\nLucia\nKrystal\nYadira\nAubrey\nMadeleine\nSkylar\nHanna\nAthena\nKira\nJoselyn\nArely\nPayton\nYvette\nKailey\nLindsay\nRuth\nSelena\nGracie\nEllie\nLizeth\nKelsey\nMonserrat\nLaila\nAllyson\nEsther\nSasha\nNina\nReese\nBrittany\nGloria\nKaylie\nKyra\nRubi\nElisa\nCristal\nEden\nHope\nJaqueline\nKaitlin\nTania\nLitzy\nJayden\nLinda\nEstrella\nShannon\nAnnie\nLydia\nMayra\nSavanna\nHeaven\nAlma\nAnnika\nJanelle\nMarilyn\nMelany\nRoselyn\nSamara\nAbby\nBryanna\nClara\nIzabella\nJudith\nNathalie\nSonia\nAdrianna\nAlessandra\nCarla\nReagan\nAlissa\nHayley\nMakenna\nLilly\nLizette\nRebekah\nMariela\nMarisa\nIvy\nReyna\nAnika\nAlice\nHeather\nTara\nBrisa\nHaylee\nBridget\nDelilah\nStacy\nYareli\nLarissa\nLuz\nCamryn\nEliza\nJaylene\nAnnabelle\nGenevieve\nKristina\nLorena\nJanessa\nKatelynn\nKristen\nLuna\nMartha\nMckenna\nDaphne\nKathleen\nLesley\nDana\nTalia\nDanna\nFrida\nJadyn\nJohanna\nMaribel\nSherlyn\nDayana\nCameron\nLana\nRose\nArlene\nHazel\nJaden\nTessa\nEileen\nJessie\nAnnette\nAsia\nDakota\nLisa\nStephany\nViolet\nAnastasia\nEdith\nFrancesca\nGalilea\nSage\nScarlett\nCharlize\nJacquelyn\nKaya\nSharon\nCitlali\nHolly\nIsis\nSimone\nCarissa\nCeline\nLola\nNora\nBelen\nCadence\nPiper\nRylie\nSienna\nAngelique\nPamela\nSusana\nDarlene\nEleanor\nEmilie\nGeorgia\nGraciela\nLeticia\nPhoebe\nYuliana\nHelena\nJane\nNoelle\nSarahi\nHana\nMikaela\nRenee\nEmilia\nJuliet\nNia\nRebeca\nRocio\nValentina\nMallory\nMaryjane\nMercedes\nMichaela\nAmelie\nCasey\nMelina\nPaula\nRyan\nDominique\nJoy\nTanya\nAddison\nAimee\nDiamond\nJoana\nMeghan\nMarie\nYasmine\nDalia\nRosemary\nAracely\nCatalina\nElle\nFabiola\nKaylin\nDylan\nJuliette\nLila\nPaloma\nSandy\nSkyler\nTiana\nEvelin\nIngrid\nSkye\nAlize\nAreli\nDamaris\nDiane\nHailee\nJustine\nKirsten\nMacy\nMckenzie\nAniya\nEsperanza\nMaggie\nMakena\nPenelope\nHeidy\nKarissa\nKenia\nRoxana\nJayla\nKaia\nKenya\nLena\nLisette\nMakenzie\nXochitl\nAlaina\nCiara\nGiovanna\nKendra\nYvonne\nBerenice\nCarina\nJazlyn\nLilliana\nPrecious\nThalia\nGina\nJulianne\nKiera\nSalma\nYazmin\nKara\nRoxanne\nTatum\nXiomara\nYajaira\nYoselin\nAbril\nBlanca\nDeanna\nElaine\nEmilee\nKaila\nKasandra\nLexi\nAnya\nBrenna\nCarolyn\nKathy\nAshlynn\nElisabeth\nIliana\nJanice\nKiley\nLauryn\nLea\nRaven\nShayla\nAngeles\nBeatriz\nDestinee\nSidney\nSusan\nYahaira\nLiana\nMaia\nSelene\nAlisha\nAnabel\nAnissa\nEllen\nJolie\nKamryn\nMarley\nNikki\nSheila\nYessenia\nAylin\nJoyce\nKailyn\nLaisha\nLilian\nMicaela\nRachael\nTabitha\nTaryn\nAlayna\nCierra\nKassidy\nNathaly\nVirginia\nAisha\nBrittney\nCasandra\nJenifer\nMargarita\nReina\nXitlali\nAlyson\nAniyah\nCitlaly\nEstefania\nEunice\nJackeline\nJayleen\nJohana\nLina\nDonna\nJaiden\nLuisa\nTamara\nTheresa\nTina\nAdilene\nBrooklynn\nFlor\nHaylie\nJeanette\nLilia\nXitlaly\nHarmony\nHillary\nKaitlynn\nKarime\nPrincess\nAshly\nGwendolyn\nJayda\nJoseline\nSilvia\nAinsley\nAleena\nAmara\nAnne\nAstrid\nBrandy\nBriseyda\nElyse\nEstefani\nFrances\nGladys\nKayleigh\nMagdalena\nMarianna\nSavanah\nShreya\nAlanna\nAlena\nAnaya\nAnnabella\nBelinda\nGrecia\nLia\nShirley\nAlisa\nAria\nCali\nDania\nGeraldine\nKailee\nKali\nLara\nLiberty\nMarlen\nSiena\nYolanda\nAllie\nAngeline\nNadine\nRiya\nStacey\nIvette\nJosie\nLexie\nMadelynn\nNelly\nValery\nCelia\nKaley\nMireya\nNathalia\nRyann\nAlexus\nArielle\nAshleigh\nDeborah\nGeorgina\nMarcela\nMina\nNicolette\nPriscila\nYaritza\nAlani\nArlette\nAyanna\nBarbara\nCarol\nDenisse\nDianna\nElsa\nImani\nJulisa\nKaelyn\nKristine\nLourdes\nMariam\nMontserrat\nPearl\nTyler\nYarely\nAdeline\nAliza\nAnnabel\nAzucena\nBrielle\nBrynn\nKaydence\nNorma\nAmani\nAmari\nGia\nLucille\nMaddison\nRosalinda\nSylvia\nTeagan\nCallie\nDiya\nJulieta\nKadence\nKeila\nTess\nAlysa\nAmira\nAmya\nBreana\nDeja\nGillian\nJaneth\nJoanne\nKayley\nKianna\nMadalyn\nMelisa\nMiracle\nSally\nSimran\nAnabella\nAryanna\nCoral\nDalila\nDevyn\nHalle\nJanette\nJazmyn\nJocelynn\nLaci\nLisbeth\nMaricela\nNyla\nTracy\nVanesa\nViridiana\nYulissa\nBryana\nIndia\nJanae\nKalea\nKendal\nKristin\nPresley\nTori\nTrisha\nAlia\nAni\nAnnalise\nCharlene\nCora\nEve\nHilary\nJolene\nKaylynn\nMadisyn\nMaile\nRhea\nSelina\nAnita\nLupita\nMelinda\nNoelia\nQuinn\nRegan\nRegina\nSamira\nAliya\nAmaris\nArleth\nEstefany\nGizelle\nJaelyn\nJaquelin\nJewel\nKasey\nMadilyn\nNichole\nCalista\nChanel\nChantal\nCheyanne\nFelicity\nJaclyn\nJacquelin\nKrista\nNatalya\nRosario\nTia\nZoie\nBriseida\nDrew\nElyssa\nJaylin\nKatharine\nKayli\nKyleigh\nLeanna\nLilianna\nLluvia\nMagaly\nNoelani\nRia\nYamilet\nAnabelle\nCamilla\nChiara\nConnie\nCorina\nDanica\nJasmyn\nKayleen\nKiersten\nLidia\nLucero\nMelia\nNayely\nParker\nRachelle\nRhiannon\nShania\nSheyla\nWillow\nAmalia\nAyla\nCassie\nCielo\nElaina\nGissel\nJustice\nKalani\nKarly\nKaryme\nMacie\nMilan\nMira\nRita\nRoxanna\nVivianna\nYulisa\nAiyana\nBetzaida\nCambria\nCharlie\nElianna\nIsela\nKaiya\nKeyla\nLilyana\nMarisela\nNeha\nRaylene\nRowan\nUnique\nZaira\nAlexsandra\nCandace\nCitlalli\nDevin\nDevon\nDorothy\nElissa\nIrma\nJacklyn\nJoelle\nKamila\nKatarina\nKatia\nLynette\nMara\nMckayla\nMeredith\nMiah\nNoor\nSariah\nSarina\nSydnee\nAlly\nAryana\nCarlie\nChristy\nClare\nDesteny\nHallie\nHayden\nIsabell\nJuana\nLogan\nMarian\nTammy\nToni\nVianey\nWhitney\nYaretzi\nAdamaris\nAlivia\nAnisa\nAntonia\nAyana\nBeverly\nCinthia\nDahlia\nDelia\nEvangelina\nJoselin\nKarlee\nKaty\nKaylah\nKaylyn\nLacey\nLillie\nMadyson\nMila\nTayler\nYadhira\nAbbey\nAida\nAnneliese\nAsha\nBetsy\nCayla\nCiera\nEbony\nGisela\nGriselda\nJocelyne\nKaela\nKailani\nLeanne\nLizet\nMandy\nMarcella\nPilar\nSaray\nAdelina\nAlexys\nAnjali\nAnyssa\nCarley\nDalilah\nDestiney\nGisel\nJuanita\nKristy\nLuciana\nMilagros\nNalani\nNallely\nRaina\nSaniya\nShyanne\nSoleil\nSonya\nTaliyah\nTiara\nAleah\nAliah\nBaylee\nBeatrice\nBridgette\nCelina\nDarla\nDesirae\nEricka\nIvanna\nKacey\nKalia\nKaliyah\nKatlyn\nLilah\nLondon\nRyleigh\nSoraya\nTatyana\nVioleta\nYaneli\nAnahy\nAshely\nBrissa\nColleen\nCorinne\nDanika\nDayanna\nEstella\nHarley\nJazlynn\nKaili\nKarlie\nLesli\nLeyla\nMaci\nMiya\nNatali\nNorah\nOlga\nPauline\nPricilla\nRayna\nRosie\nSerina\nShea\nYessica\nAllyssa\nAnalise\nAshanti\nBeyonce\nCara\nColette\nFelicia\nHailie\nIlene\nIvana\nJoslyn\nKatya\nKellie\nKenna\nLorelei\nLyla\nMaliyah\nMoriah\nMyra\nPhoenix\nSaira\nShayna\nSkyla\nStar\nTianna\nVicky\nAnanya\nAnette\nArabella\nAyleen\nAzalea\nCandice\nCecelia\nCherish\nDafne\nGiana\nHarper\nIreland\nKatelin\nKaylene\nKeilani\nKelsie\nLeia\nLisset\nMarjorie\nMarlee\nMaryam\nNya\nSabina\nStefanie\nTrista\nAdrienne\nAlex\nAlexi\nAspen\nBelle\nCandy\nCathy\nChristiana\nEloise\nElsie\nFrankie\nGreta\nGwyneth\nKarely\nLaysha\nLexy\nMarlyn\nMelani\nMichele\nMillie\nMindy\nMyla\nNatalee\nNeida\nRaegan\nSavana\nShyann\nStefany\nSuzette\nAda\nAliana\nAnn\nArissa\nBetsabe\nElisha\nEmerson\nJackie\nKayden\nKaylen\nKimora\nLaney\nLissette\nMaleah\nMyah\nReanna\nRochelle\nRosalyn\nSamanta\nSelah\nShaylee\nTamia\nVianca\nZariah\nAnais\nAnnaliese\nAnnalisa\nAnnelise\nAubree\nAvril\nBrianne\nChelsey\nDeisy\nElia\nEmery\nHannia\nJaylynn\nJazmyne\nJiselle\nKierra\nKlarissa\nMadisen\nMagali\nMakaila\nMeagan\nMirian\nSky\nTaya\nYamileth\nYoselyn\nZayra\nZulema\nAdela\nAnalisa\nAnayeli\nArya\nBailee\nChantel\nChase\nDanya\nEmmy\nFranchesca\nGisele\nHilda\nJaida\nJanine\nJocelin\nKarli\nKelli\nKya\nLaurel\nLiyah\nLoren\nMariyah\nNikole\nSanjana\nShyla\nTyra\nVianney\nYasmeen\nYazmine\nAmie\nAmina\nAminah\nAriadna\nArleen\nBonnie\nBrandi\nCampbell\nDayna\nEdna\nEmmalee\nGinger\nGissell\nIvonne\nIzabel\nJasleen\nKaterina\nLailah\nLeann\nMaira\nMalena\nMalina\nMika\nMonet\nOdalys\nPatience\nRemy\nSayra\nScarlet\nSol\nThea\nTrina\nValarie\nYanira\nYsabella\nZara\nAbbie\nAbbigail\nAhtziri\nAlyna\nAnai\nAnessa\nClarisa\nDolores\nDoris\nEleni\nEmeli\nEstela\nGemma\nHaily\nHaven\nJaidyn\nJanell\nJaniya\nJeslyn\nJoceline\nJoey\nKai\nKaris\nLainey\nLilith\nLyndsey\nMarielle\nMaxine\nMaylin\nMirella\nRandi\nRosalie\nSana\nShaina\nShay\nSinai\nTatianna\nTreasure\nYesica\nAdamari\nAilani\nAilyn\nAislinn\nAlyza\nAshlie\nBernice\nBrook\nCarlee\nCharlee\nChristian\nDariana\nDina\nDora\nElvia\nFrancisca\nGwen\nJalissa\nJayde\nJenessa\nJudy\nKailah\nKristal\nLeena\nLizbet\nLynn\nLyric\nMadalynn\nMai\nMorelia\nNaomy\nNoa\nPriya\nRobin\nStevie\nSusanna\nSuzanne\nTanvi\nYael\nZitlaly\nAlexandrea\nAngelena\nAnnemarie\nArlyn\nAubrie\nAya\nCarrie\nDestany\nElysia\nEmelyn\nGisell\nGissele\nGiuliana\nHalie\nInez\nItalia\nIyana\nJaslyn\nJaylyn\nJessenia\nJoann\nJovanna\nKarolina\nKeely\nKeona\nKylah\nLeyna\nMacey\nMarin\nMinerva\nNikita\nRomina\nRoxy\nSade\nSaige\nTierra\nTristan\nTristen\nVivien\nAbigayle\nAditi\nAlanis\nAlannah\nAline\nAmiya\nAnia\nAnisha\nAnnamarie\nBria\nCelest\nCharity\nChrista\nDavina\nEssence\nFlora\nFrancine\nGaby\nHunter\nJackelyn\nJaime\nJaquelyn\nJarely\nJennyfer\nKaleigh\nKalyn\nKhushi\nKimberley\nKyara\nLacy\nLeilany\nLezly\nLori\nLorraine\nMabel\nMarbella\nMaren\nMeadow\nMilena\nMyriam\nPrincesa\nRayleen\nTaniya\nXochilt\nYanet\nYocelin\nZahra\nAcacia\nAdamary\nAnahit\nAudra\nBillie\nCaitlynn\nDanae\nDelanie\nDennise\nElina\nElvira\nEmelia\nIleana\nIyanna\nIzabelle\nJaedyn\nJana\nJianna\nJosefina\nJosselyn\nKacie\nKatheryn\nLeeann\nLeslye\nLianna\nLillianna\nLivia\nMalaya\nMarianne\nMaricruz\nMaryann\nMelannie\nMercy\nMilana\nOdalis\nPaisley\nRamona\nRenata\nRory\nSalina\nSequoia\nShira\nSofie\nSydnie\nVerenice\nYara\nAbbygail\nAbigale\nAdelaide\nAmiyah\nAnaly\nAnnmarie\nAntoinette\nAnushka\nAriah\nArwen\nAzul\nBerlin\nBetty\nBriza\nBryn\nCailey\nCarmela\nCarys\nCate\nCaylee\nCienna\nDemi\nEma\nEryn\nEstephanie\nEvelynn\nGetsemani\nGiavanna\nGisella\nHadley\nHeavenly\nIsha\nJaelynn\nJanely\nJaylah\nJayme\nJazzlyn\nJesse\nJoie\nJune\nKalena\nKeily\nKeren\nKirra\nMalaysia\nMay\nMicah\nMisty\nMollie\nNaidelyn\nNailah\nNaydelin\nNellie\nNinel\nNoel\nNubia\nRaya\nRobyn\nRosalia\nSahara\nSanaa\nShriya\nSunny\nThania\nVera\nYaquelin\nAidan\nAja\nAlanah\nAlysha\nAmia\nAn\nAnnalee\nAvalon\nAverie\nBernadette\nBryce\nCailyn\nCameryn\nCharisma\nCharli\nCheryl\nChristie\nConstance\nDelila\nElliana\nEmelie\nEmerald\nFinley\nGeneva\nHoney\nIman\nInes\nJacey\nJalyn\nJanel\nJannet\nJaylee\nJesenia\nKaelin\nKaily\nKalista\nKamille\nKatalina\nKenzie\nKourtney\nKrysta\nLeilah\nLili\nLiz\nLorelai\nMariajose\nMariel\nMerari\nMirna\nNicola\nNyah\nNyssa\nOsiris\nPetra\nPricila\nRianna\nSharlene\nShivani\nSoledad\nVannessa\nVeronika\nZaria\nAkira\nAnaiya\nAngelie\nAnusha\nArlet\nAshlin\nAzaria\nBrigitte\nChanelle\nChaya\nChelsy\nCianna\nCinthya\nCloe\nEmalee\nEmani\nFaviola\nHollie\nJackelin\nJanie\nJaniyah\nJeniffer\nJennie\nJordynn\nKaci\nKalei\nKarisma\nKeanna\nKeara\nLeona\nLiza\nMari\nMariella\nMartina\nMayrin\nMelodie\nMercedez\nMichell\nMildred\nMimi\nMona\nMonika\nMyranda\nNaya\nNeveah\nNova\nOfelia\nRosemarie\nRyley\nSanai\nSania\nSarahy\nShantal\nSunshine\nVienna\nXenia\nYoana\nZoya\nAdele\nAllysa\nAlycia\nAlyse\nAmalie\nAmethyst\nAnamaria\nAnela\nAngelyna\nAriadne\nAriela\nAriella\nAriyana\nArmani\nAyah\nAysha\nBreann\nCarli\nCatrina\nCharis\nCharley\nChelsie\nChristal\nCloey\nCosette\nDarby\nDarian\nDesiray\nDivya\nElayna\nElicia\nElora\nElva\nEster\nFallon\nGwenyth\nHermione\nIlana\nIleen\nImelda\nIvon\nIvory\nIzel\nJaimie\nJasmyne\nJean\nJena\nJesica\nJessika\nJourney\nKarmen\nKaylani\nKiarra\nKim\nKinsey\nKori\nLailani\nLaniya\nLinnea\nLitzi\nLizett\nMakaela\nMakaylah\nMaliah\nMarla\nMarlin\nMeera\nMikala\nMonserrath\nMykayla\nPriyanka\nQuincy\nRaelynn\nSelma\nShanna\nSherry\nTerra\nVania\nWinter\nYuna\nZainab\nAdrina\nAiyanna\nAlayah\nAlianna\nAlliyah\nAlysia\nAmberly\nAnalicia\nAnastacia\nAneesa\nAngelic\nAngelika\nArden\nArly\nAshli\nAyesha\nBertha\nBethel\nBrynna\nCailin\nCiarra\nDallas\nDestini\nDestinie\nEmber\nFarah\nFaye\nHennessy\nIdalia\nIxchel\nJailene\nJalen\nJanelly\nJanna\nJaycee\nJayna\nJeannette\nJessi\nJoscelyn\nJoselyne\nKailynn\nKairi\nKarma\nKatherin\nKeeley\nKelis\nLani\nLaylah\nLeandra\nLillyana\nLisbet\nMadysen\nMariafernanda\nMarleen\nMarlena\nMarysol\nMilla\nNadya\nNayla\nNereida\nNuvia\nOriana\nRena\nRoselin\nRosio\nSabine\nSarena\nShae\nShaila\nSindy\nSonja\nSymone\nTanisha\nUma\nYana\nYulianna\nYuri\nZaida\nAbygail\nAime\nAlaysia\nAmrita\nAnaiah\nAnali\nAndie\nAnel\nAngelita\nAnjelica\nAnoushka\nAries\nAudrie\nAvani\nAveri\nBlessing\nBritany\nCatelyn\nCordelia\nDaija\nDaisha\nDara\nDarlyn\nDawn\nDeana\nDebbie\nDeyanira\nDeysi\nDyana\nElana\nElly\nEmi\nEmiko\nEmilly\nEsha\nEvan\nEvette\nFiorella\nFrancis\nGema\nGlory\nGracelyn\nGretchen\nHarleen\nHayleigh\nIlse\nIrlanda\nJalynn\nJaylen\nJenesis\nJizelle\nJustina\nKalina\nKarol\nKathrine\nKaycee\nKendyl\nKimberlee\nLilyan\nLouisa\nMackenna\nMaegan\nMargot\nMarilu\nMattie\nMaura\nMaureen\nMayte\nMeah\nMisha\nNidia\nOcean\nOdette\nPrisila\nRaelyn\nRebeka\nReilly\nRiver\nSahana\nSaniyah\nSanya\nSera\nShanti\nSherlin\nSilvana\nSloane\nStefani\nSuhani\nTallulah\nVida\nYanely\nYocelyn\nYsabel\nYuliza\nAdelynn\nAlexie\nAleyda\nAli\nAmbar\nAngelia\nAngely\nAranza\nAraya\nArionna\nArizbeth\nArriana\nAshtyn\nAyden\nBerlyn\nBianey\nBianka\nBobbie\nBreanne\nBrianda\nBriceida\nBrigette\nCameran\nCapri\nChasity\nChyanne\nClarice\nConsuelo\nDaria\nDaysi\nDebra\nDenali\nDenice\nDesire\nDior\nDivina\nEmiley\nEvalyn\nFatimah\nFlorence\nHaleigh\nHarlee\nIdaly\nJahaira\nJailyn\nJakelin\nJaliyah\nJaymie\nJenelle\nJessalyn\nJoan\nJolina\nJoshua\nJoslynn\nJovana\nKaeli\nKamilah\nKari\nKavya\nKaytlin\nKelley\nKimberli\nKiya\nKomal\nKristi\nLela\nLessly\nLilli\nLilyanna\nLizzette\nLucila\nLynda\nMadilynn\nMae\nMalak\nManuela\nMaranda\nMarcy\nMaryah\nMatilda\nMayah\nMayline\nMeghana\nMeleny\nMirka\nMoncerrat\nNaila\nNala\nNashaly\nNatania\nNayelli\nNika\nNylah\nOpal\nRenae\nRyen\nSamarah\nSeleste\nShakira\nShelly\nSheridan\nShiloh\nSirena\nSiri\nSriya\nStacie\nTehya\nTherese\nTrish\nTyanna\nVannesa\nVivienne\nVy\nWilla\nWynter\nXitlalic\nYaire\nZaina\nAarushi\nAgnes\nAishwarya\nAlaya\nAlba\nAleeza\nAmairany\nAmayah\nAmeera\nAmeerah\nAmiah\nAmirah\nAnabell\nAnalia\nAnaliese\nAnjelina\nAriane\nAthziri\nAura\nAviana\nBaylie\nBetsaida\nBrea\nBree\nBreeanna\nBreonna\nBrinley\nCamden\nCandelaria\nCathryn\nChana\nDaira\nDani\nDasia\nDayrin\nDenae\nElli\nEmili\nEmmi\nEsme\nEvangeline\nFreya\nGianni\nGimena\nGlenda\nHarlie\nHolland\nIsadora\nJael\nJamila\nJanai\nJaya\nJayline\nJazlin\nJersey\nJoleen\nJose\nJubilee\nJudit\nJuliza\nKacy\nKalie\nKareena\nKarley\nKaylei\nKeiry\nKelsea\nKennedi\nKhloe\nKiani\nKiran\nKyley\nLacie\nLarisa\nLeela\nLibby\nLillyanna\nLinette\nLizzet\nMacayla\nMadelin\nMaiya\nMakala\nMandi\nMaricarmen\nMarta\nMaryanne\nMarylin\nMaryssa\nMedha\nMeilani\nMel\nMelenie\nMerissa\nMitzy\nMiyah\nMuskaan\nNaiya\nNavya\nNidhi\nNiya\nNiyah\nNoemy\nNour\nOctavia\nPaulette\nRian\nRio\nRisa\nRyanne\nSaanvi\nSakura\nSamya\nSamyra\nSandi\nSapphire\nSerene\nShaelyn\nShanelle\nShaniya\nShoshana\nStarla\nTayla\nTea\nTriniti\nTru\nVenus\nYelitza\nZion\nAaliah\nAbagail\nAbriana\nAdalia\nAdelyn\nAdrian\nAide\nAilene\nAlexcia\nAlexzandra\nAleyna\nAlisson\nAllissa\nAlora\nAlyah\nAlyana\nAlynna\nAlyssia\nAmaiya\nAmal\nAmariah\nAmmy\nAmyah\nAnalyssa\nAniah\nAnjolie\nAnmol\nAnnabell\nAnny\nArianne\nArlett\nArrianna\nAurelia\nAzeneth\nBetzabeth\nBobbi\nBriceyda\nBrithany\nCaleigh\nCarmella\nCecily\nCesia\nChantelle\nCitlally\nCristine\nCruz\nCydney\nDaizy\nDanitza\nDasha\nDharma\nDianne\nElisabet\nEvie\nGabriel\nGenessis\nGigi\nGracee\nGracelynn\nGraciella\nHeily\nIdalis\nIlyssa\nIndigo\nIsamar\nJadelyn\nJaeda\nJalene\nJamilet\nJatziri\nJaycie\nJazzmin\nJennah\nJesus\nJulieanna\nJulietta\nKailea\nKaleah\nKamora\nKarsyn\nKaryssa\nKathia\nKaylan\nKayle\nKeziah\nKristiana\nKyah\nLaine\nLelani\nLiah\nLiv\nLoretta\nLuca\nLyanna\nMadelynne\nMakiah\nMalaika\nMaraya\nMargaux\nMarguerite\nMariaelena\nMaritsa\nMariya\nMariza\nMarlenne\nMaryn\nMason\nMele\nMeleah\nMelony\nMichael\nMichel\nMikaylah\nMilani\nMonserath\nMontana\nMonzerrat\nNaima\nNaylea\nNeela\nPortia\nPrincessa\nRadhika\nRain\nReece\nRemi\nRina\nSamaria\nSaniah\nScout\nSedona\nSela\nShani\nShantel\nSharlyn\nSheryl\nShianne\nStephani\nTahlia\nTalya\nTatiyana\nTatyanna\nTeanna\nTeresita\nVanity\nWendi\nWinnie\nXitlalli\nYaretzy\nYohana\nYuritzi\nZahira\nZamantha\nAbrianna\nAbrielle\nAdara\nAddyson\nAdina\nAdria\nAdrianne\nAine\nAjah\nAlea\nAleida\nAlizah\nAmairani\nAnaiyah\nAnamarie\nAndria\nAnh\nAnnalie\nArcelia\nAreana\nArushi\nAryssa\nAsiah\nAyiana\nBethanie\nBibiana\nBraelyn\nBrigid\nBrookelynn\nCaley\nCaydence\nChevelle\nCorinna\nCorrina\nDaijah\nDarcy\nDejah\nDelany\nDenia\nDenis\nDevina\nEdlyn\nElexis\nElida\nElinor\nElodie\nEloisa\nEmelin\nEmerie\nErandy\nEstelle\nEstephany\nFabiana\nFayth\nFernando\nGenevie\nHalley\nHanah\nHaydee\nHelene\nHonesty\nHuda\nIda\nIlianna\nImogen\nIriana\nIrie\nItzia\nIvett\nJalisa\nJanay\nJannah\nJannette\nJazelle\nJeanine\nJeanne\nJeannine\nJezebel\nJiya\nJocelynne\nJolee\nJosephina\nJulieana\nKadie\nKallie\nKamea\nKameron\nKameryn\nKamrin\nKarena\nKarisa\nKathie\nKathya\nKaydee\nKazandra\nKeana\nKemberly\nKiah\nKora\nKylene\nLanaya\nLeana\nLeonela\nLeslee\nLexis\nLilibeth\nLillyann\nLouise\nLucinda\nLucine\nMackayla\nMadelyne\nMaeve\nMailee\nMailyn\nMaisie\nMaliya\nMariaguadalupe\nMarygrace\nMattea\nMegha\nMeghna\nMelyssa\nMetzli\nMicayla\nMidori\nMikaila\nMilly\nMischa\nMonae\nNahomy\nNaia\nNaliyah\nNanci\nNandini\nNashali\nNautica\nNeda\nNereyda\nNhi\nNicolle\nNisha\nNitya\nNohemi\nNoura\nParris\nPearla\nPenny\nPrisha\nPromise\nQuetzalli\nRachell\nRaelene\nRana\nRichelle\nRomy\nRosaura\nRoselynn\nRosy\nRubie\nSahar\nSalena\nSamiyah\nScarlette\nShauna\nShawna\nShelbi\nSiobhan\nSiomara\nSiya\nSneha\nSolana\nSonali\nSusie\nSuzy\nSydni\nTala\nTaliah\nTamar\nTasneem\nTera\nTracey\nTristin\nVarsha\nVenezia\nVenice\nVivica\nYamile\nYaneth\nYenifer\nYoseline\nYuki\nZia\nAalyah\nAdelaida\nAeris\nAishah\nAislynn\nAleina\nAlessia\nAlexsis\nAlijah\nAmerie\nAmi\nAmisha\nAnay\nAnely\nAngeli\nAngella\nAnjolina\nAnnali\nAnnissa\nAolani\nArieana\nAriya\nArlen\nArlin\nAtziry\nAugust\nAylen\nAysia\nAzalia\nBeth\nBiridiana\nBlythe\nBreeana\nCaren\nCarisma\nCassady\nCatarina\nCayden\nChandler\nCharlise\nChristen\nChrystal\nChyna\nClarisse\nClaudette\nCleo\nCoco\nCori\nDaniel\nDayra\nDebora\nDeisi\nDelylah\nDonya\nEcho\nEleana\nEllianna\nEmiliana\nEmmely\nEmory\nErandi\nEvany\nGardenia\nGenoveva\nGiovana\nGiulia\nGladis\nGreer\nGuinevere\nGurleen\nHellen\nIlliana\nImari\nInaya\nIndira\nJaileen\nJailynn\nJamileth\nJanaya\nJanett\nJania\nJanis\nJassmin\nJazel\nJezelle\nJill\nJisela\nJodi\nJoselynn\nJosseline\nJurnee\nKadyn\nKaelani\nKaile\nKaileen\nKailie\nKaira\nKalaya\nKalissa\nKamara\nKandace\nKandice\nKarizma\nKateleen\nKeala\nKealani\nKeegan\nKerry\nKeyanna\nKimber\nKimberlie\nKimberlyn\nKimia\nKloe\nKrystina\nKyana\nKyle\nLaiba\nLanna\nLeeanna\nLeigh\nLeigha\nLeora\nLexus\nLiliane\nLilit\nLillyan\nLillyanne\nLilyann\nLisamarie\nLiset\nLiya\nLizzie\nLulu\nMaha\nMaite\nMalanie\nMarielena\nMarifer\nMarisabel\nMarwa\nMarykate\nMatilde\nMayela\nMazzy\nMckinley\nMeena\nMehak\nMei\nMerary\nMeztli\nMikyla\nMiryam\nMizuki\nMoira\nMonserat\nMonserratt\nMorgen\nMyrna\nNadiya\nNahomi\nNailea\nNaina\nNayelie\nNely\nNena\nNiamh\nNiki\nOceana\nOlive\nRacquel\nRamya\nReem\nRhianna\nRicha\nRileigh\nRosamaria\nRoxane\nRylan\nSaachi\nSabreen\nSachi\nSadaf\nSafa\nSaleen\nSamia\nSariyah\nSavina\nSawyer\nShalini\nShaylah\nShreeya\nSia\nSiana\nSicily\nSimona\nSkylee\nSpencer\nStarr\nStephania\nSterling\nSujey\nSusannah\nSylvie\nSymphony\nTabatha\nTais\nTanaya\nTasha\nTegan\nTiare\nTiffanie\nTyla\nVianna\nVicki\nVivianne\nXiana\nYamila\nYanitza\nYeraldin\nYisel\nYoanna\nYuritza\nYzabella\nZora\nAastha\nAdalina\nAdelle\nAiden\nAiko\nAiram\nAlaura\nAlesandra\nAllena\nAlyn\nAlysse\nAmada\nAmaia\nAmbria\nAmely\nAmulya\nAnalaura\nAnalissa\nAnaliyah\nAnayah\nAndrew\nAngelee\nAngelene\nAngelyn\nAnja\nAnnahi\nAnnaka\nAnnalyse\nAnnel\nAnneth\nAntonella\nAnyia\nArelly\nArisbeth\nAriyah\nAshanty\nAshleymarie\nAshna\nAshton\nAsma\nAutum\nAvary\nAvelina\nAvigail\nAyelen\nAyva\nBethzaida\nBetzabe\nBetzayda\nBetzy\nBriannah\nBrooklin\nCaelan\nCaelyn\nCarson\nCaterina\nCaylin\nCera\nCerina\nCharissa\nCharmaine\nChayse\nCheyann\nCiana\nClair\nClover\nCody\nConcepcion\nCooper\nCortney\nDaiana\nDaliyah\nDallana\nDarci\nDarya\nDeandra\nDelainey\nDena\nDorian\nDulcemaria\nDunia\nDyanna\nDymond\nEesha\nEkaterina\nElan\nEli\nElin\nEllia\nElsy\nEly\nElyana\nElysa\nEmme\nEmmily\nEowyn\nEryka\nEsly\nEvalynn\nEvelina\nEvelyne\nEveny\nFarrah\nFreedom\nGeovanna\nGianina\nGracyn\nGrayson\nHadassah\nHalena\nHanan\nHarmonie\nHaruka\nHayli\nHeavyn\nHenessy\nHenna\nHerlinda\nHiromi\nIla\nIlona\nIsa\nIsobel\nIssabella\nIsyss\nItzayana\nIveth\nIzabela\nIzabell\nJacie\nJacinda\nJacinta\nJaila\nJaimee\nJaina\nJamey\nJami\nJamison\nJaniah\nJareli\nJaselle\nJasmeen\nJatziry\nJaylie\nJayne\nJazzlynn\nJazzmine\nJeanna\nJenay\nJenise\nJodie\nJoely\nJorja\nJosalyn\nJosslyn\nJuli\nJulyssa\nKaeley\nKaelynn\nKaiden\nKaileigh\nKailin\nKaleena\nKaliya\nKalynn\nKamari\nKamya\nKarin\nKaryna\nKatana\nKatey\nKatlynn\nKaydance\nKaydin\nKaytlyn\nKeilah\nKeisha\nKenedi\nKeyana\nKhadija\nKhalia\nKiaya\nKierstin\nKimberlin\nKimi\nKimiya\nKiona\nKirstin\nKortney\nKristie\nKristyn\nKymberly\nKymora\nKyndall\nKyrah\nLaniyah\nLanya\nLaryssa\nLeiana\nLeianna\nLeiloni\nLeina\nLesslie\nLeylani\nLillia\nLilyanne\nLinsey\nLisandra\nLissete\nLita\nLizabeth\nLizzeth\nLora\nLuana\nLucie\nLupe\nLynnette\nLynsey\nMadaline\nMaddisyn\nMadisson\nMaelani\nMagnolia\nMairin\nMallorie\nMana\nMariadelcarmen\nMariely\nMarika\nMarilynn\nMarleny\nMarycruz\nMarylou\nMaycie\nMayleen\nMeaghan\nMeliza\nMelonie\nMeranda\nMetztli\nMicaiah\nMichayla\nMiki\nMilagro\nMillicent\nMirabella\nMylie\nMyrka\nNamrata\nNareh\nNatividad\nNayah\nNerissa\nNeyda\nNila\nNithya\nNoely\nNola\nNoora\nOlyvia\nOphelia\nPeri\nPhilomena\nPyper\nRania\nRashel\nRayanna\nRayven\nReign\nRhyan\nRiana\nRoma\nRosalba\nRosalina\nRosalind\nRosita\nRoslyn\nRosselyn\nRya\nSalome\nSammie\nSariya\nSejal\nShana\nShanya\nShaye\nSheccid\nSheily\nShelley\nShiann\nShirel\nShirin\nShruti\nSiera\nSinead\nSivan\nSrinidhi\nStaci\nSuzanna\nTaina\nTakara\nTaliya\nTaniyah\nTenaya\nTiffani\nTommie\nTyana\nUna\nVeda\nViviann\nWren\nYamna\nYanelly\nYareni\nYovana\nYunuen\nYuriana\nYuridia\nYuritzy\nZaynab\nZenaida\nZuleyka\nAaliya\nAanya\nAariana\nAashna\nAbegail\nAddie\nAddisyn\nAdia\nAdreanna\nAhtziry\nAi\nAila\nAinslee\nAisling\nAkari\nAkayla\nAleana\nAlejandrina\nAlesia\nAlexander\nAlexiss\nAlexxia\nAlexza\nAlin\nAlinna\nAlis\nAlise\nAlix\nAllura\nAlona\nAlyanna\nAlyssamarie\nAmarah\nAnaid\nAnakaren\nAnalucia\nAnanda\nAnasofia\nAneth\nAnett\nAngelyne\nAnicia\nAnisah\nAnise\nAnnete\nAnthony\nArayah\nAriannah\nAriba\nArieanna\nArline\nArpita\nAryah\nAshleen\nAsiya\nAsmaa\nAsya\nAthyna\nAtziri\nAubrianna\nAubry\nAudrianna\nAustin\nAustyn\nAvi\nAviva\nAvneet\nAzra\nBeatrix\nBlair\nBrandon\nBrizeida\nBrizeyda\nBronte\nBronwyn\nBrooklynne\nBryan\nCadance\nCady\nCaidence\nCailee\nCalie\nCalissa\nCalla\nCallista\nCamile\nCaprice\nCarmel\nCarrington\nCathleen\nCaylah\nCayleigh\nCaylie\nChiamaka\nChloee\nCiclaly\nCitlalic\nCoraima\nCyndi\nDailyn\nDanelle\nDanni\nDanyelle\nDarina\nDarleen\nDelaina\nDelina\nDelyla\nDeserae\nDeseray\nDeserie\nDesirea\nDestyni\nDevan\nDezarae\nDezirae\nDisha\nDivine\nDomonique\nDynasty\nEgypt\nElani\nElijah\nElisheva\nElizabet\nEllena\nEllery\nElliot\nEmalie\nEman\nEmillie\nEmilyn\nEmmaline\nEmmamarie\nEmmeline\nEnid\nEnvy\nEnya\nErianna\nEstrellita\nEugenia\nEveline\nEver\nEvita\nFantasia\nGabby\nGauri\nGayatri\nGenavieve\nGenna\nGianella\nGuillermina\nHailley\nHalina\nHarini\nHattie\nHavana\nHavanna\nHayle\nHaylei\nHennesy\nHeydi\nImaan\nIna\nIona\nIrelyn\nIrina\nIshika\nIsla\nItaly\nItzell\nIvania\nJacalyn\nJacklynn\nJaeden\nJaela\nJaelin\nJailin\nJalina\nJaniece\nJannelle\nJanya\nJaslin\nJaslynn\nJaspreet\nJaydyn\nJaylean\nJeanelle\nJeanie\nJeannie\nJenae\nJenevieve\nJenica\nJennessa\nJessel\nJesslyn\nJewell\nJezreel\nJhoana\nJireh\nJisel\nJissel\nJohnnie\nJonathan\nJorden\nJosalynn\nJosette\nJuan\nJuliann\nJulieanne\nKalin\nKamaya\nKami\nKamia\nKamyla\nKarah\nKareli\nKarishma\nKaroline\nKarolyn\nKaterin\nKaterine\nKathelyn\nKatheryne\nKati\nKatja\nKattie\nKayra\nKaytlynn\nKeiko\nKeilly\nKendell\nKennia\nKennya\nKeturah\nKiele\nKiely\nKilee\nKimiko\nKirstyn\nKitzia\nKiyomi\nKlaire\nKlara\nKlarisa\nKorina\nKristian\nKyanna\nLane\nLariza\nLaylani\nLayloni\nLayna\nLexia\nLilie\nLindsy\nLizzett\nLois\nLolita\nLondyn\nLorely\nLove\nLuiza\nLunna\nLuzelena\nLuzmaria\nLylah\nLyndsay\nLyra\nLysandra\nLyzette\nMahima\nMahlia\nMaili\nMaja\nMakyla\nMalayah\nMalea\nMalika\nMarah\nMarcelina\nMarcia\nMargie\nMaribelle\nMarivel\nMarixa\nMarkayla\nMarlina\nMaryfer\nMarylynn\nMathilda\nMaylene\nMelaina\nMelana\nMelaney\nMessiah\nMeya\nMichaella\nMihika\nMikah\nMinna\nMitzi\nMyia\nMylee\nMylene\nNabiha\nNada\nNairi\nNajah\nNanette\nNaomie\nNariah\nNataley\nNatally\nNaudia\nNeftaly\nNeidy\nNemesis\nNevaeha\nNiara\nNickole\nNiobe\nNivea\nNoeli\nNuria\nNyanza\nNyomi\nOdessa\nPaityn\nPari\nPayten\nPhaedra\nPia\nPolina\nPreslie\nQueen\nQuinlan\nRafaela\nRaine\nRanya\nRayne\nRene\nReva\nRheanna\nRhian\nRikki\nRilee\nRisha\nRoisin\nRoni\nRosalva\nRossy\nRozlyn\nSammantha\nSammi\nSanaya\nSandhya\nSarita\nSaskia\nSeanna\nSenna\nSerafina\nShamari\nShanell\nShanice\nShantelle\nSharleen\nShaya\nSherly\nSherrie\nSheyenne\nSian\nSianna\nSierrah\nSiona\nSkylynn\nSommer\nSona\nStefania\nSteffi\nSuleyma\nSunnie\nSuraya\nSuzie\nTaleah\nTaline\nTalisa\nTamya\nTasia\nTaylar\nTehila\nTerri\nThais\nTheodora\nTisha\nTRUE\nValencia\nVallery\nVanna\nVenecia\nVerania\nVi\nViana\nVickie\nVilma\nViviane\nXiadani\nYailin\nYajayra\nYakelin\nYalitza\nYamilett\nYamilex\nYasmina\nYazlin\nYazmeen\nYecenia\nYeimi\nYelena\nYsabelle\nZaire\nZarahi\nZarina\nZinnia\nZiona\nZitlali\nZuleika\nZully\nZulma\nAaminah\nAarya\nAaryn\nAdali\nAdalie\nAdaline\nAddis\nAdelyne\nAdi\nAdison\nAdora\nAdyson\nAeryn\nAgustina\nAhmari\nAhna\nAilee\nAilin\nAjanae\nAkemi\nAlaa\nAlessa\nAlethea\nAlexah\nAlexas\nAlexes\nAlexsa\nAlexsia\nAlexyss\nAlexzandria\nAlisia\nAlizee\nAllana\nAlmira\nAlonna\nAlthea\nAlvina\nAlys\nAlyzza\nAmaiyah\nAmor\nAmora\nAnaiz\nAnalee\nAnalilia\nAnapaula\nAnastazia\nAndi\nAndrina\nAngy\nAnnai\nAnnalea\nAnnalyn\nAnnamaria\nAnnastasia\nAnthea\nAntonina\nAnvita\nAnyah\nAoife\nAparna\nAreanna\nArgelia\nAriday\nAriona\nArista\nAriyanna\nArmida\nArmine\nAry\nAshby\nAsiyah\nAsusena\nAthziry\nAubriana\nAudree\nAudriana\nAvalina\nAvamarie\nAvarie\nAvia\nAvianna\nAyushi\nAzia\nBaby\nBaleria\nBayleigh\nBeautiful\nBecca\nBecky\nBela\nBerlynn\nBetzaira\nBiviana\nBraeden\nBreeze\nBreona\nBridgett\nBriley\nBrionna\nBriselda\nCaden\nCaila\nCari\nCarleigh\nCarlene\nCarmelita\nCarmina\nCarolyne\nCarsyn\nCelestina\nCesilia\nChance\nCharleen\nCharly\nCherie\nCherokee\nChloie\nChristianna\nCidney\nCintia\nClaira\nCloie\nCodi\nCollette\nCory\nCrista\nCristy\nCyan\nDaeja\nDaina\nDajanae\nDamara\nDamariz\nDanely\nDannae\nDannia\nDarianna\nDarling\nDarlyne\nDaryn\nDavianna\nDavid\nDayan\nDaylin\nDeeya\nDefne\nDeirdre\nDelaila\nDelana\nDelani\nDelara\nDelfina\nDella\nDemetra\nDeonna\nDeseree\nDestanie\nDeviny\nDevora\nDeysy\nDia\nDinah\nDixie\nDoreen\nDream\nEbonie\nElane\nElany\nElenoa\nElisia\nEliya\nElley\nElliott\nEllis\nEllyse\nEllyssa\nElysse\nEmelly\nEmmalie\nEmmarose\nEna\nEriana\nErinn\nEsli\nEstefanie\nEstephani\nEternity\nEulalia\nEvanie\nEzra\nFaustina\nFiorela\nFrancia\nGail\nGeanna\nGeetika\nGenecis\nGenisis\nGeorgie\nGraceann\nGracen\nGracey\nGrayce\nGrettel\nGricelda\nGweneth\nHaidee\nHailei\nHalee\nHali\nHalia\nHan\nHania\nHannya\nHarshini\nHarumi\nHasmik\nHoliday\nHollis\nIanna\nIbeth\nIdania\nIlda\nIleanna\nImunique\nIrania\nIrena\nIreri\nIsaac\nIshani\nIsmerai\nIthzel\nIva\nIvan\nJacelyn\nJaci\nJackelyne\nJacquelyne\nJadah\nJadalyn\nJadelynn\nJaelene\nJahayra\nJala\nJaleah\nJalyssa\nJamia\nJaneli\nJaney\nJanina\nJanissa\nJaretzy\nJasline\nJasminerose\nJaydee\nJaymee\nJazline\nJazmynn\nJemima\nJemma\nJenavie\nJenin\nJennalyn\nJenni\nJennica\nJesselle\nJhoanna\nJiana\nJinny\nJisselle\nJocilyn\nJody\nJohn\nJoi\nJoscelin\nJoseph\nJoycelin\nJoycelyn\nJuliane\nJulieann\nJuliett\nKady\nKaelee\nKahlia\nKaidence\nKala\nKaliah\nKalila\nKalyssa\nKambria\nKariana\nKarima\nKarine\nKatharina\nKathlyn\nKay\nKayce\nKaycie\nKaylea\nKaysha\nKeerthana\nKeili\nKelani\nKevin\nKeya\nKeyara\nKeylee\nKhalea\nKia\nKiarah\nKieran\nKimani\nKinsley\nKirti\nKloey\nKodi\nKoral\nKorrina\nKortni\nKrishna\nKylea\nLacee\nLaela\nLailoni\nLarae\nLaurie\nLavinia\nLaya\nLeelee\nLeidi\nLeonor\nLexani\nLexine\nLeylanie\nLianne\nLibertad\nLibni\nLinh\nLiseth\nLisseth\nLizandra\nLizvet\nLorenza\nLorna\nLovely\nLucca\nLucienne\nLucky\nLya\nLyna\nMaayan\nMaddie\nMadelaine\nMadylin\nMahnoor\nMaille\nMairyn\nMaison\nMakailah\nMakaiya\nMakenzi\nMalani\nMallika\nManiyah\nManjot\nManpreet\nMansi\nMaral\nMargo\nMariaceleste\nMariaisabel\nMariangel\nMarjan\nMarleni\nMarlie\nMarlo\nMarylee\nMarylu\nMattison\nMayerly\nMaysa\nMckenzi\nMea\nMeg\nMekayla\nMelanny\nMelanye\nMelayna\nMelena\nMeleni\nMelida\nMellany\nMerlyn\nMisaki\nMuskan\nMylah\nMystique\nNadeen\nNakia\nNalleli\nNara\nNare\nNathali\nNathalya\nNatsumi\nNavneet\nNayzeth\nNeri\nNeva\nNisa\nNoe\nNydia\nOna\nOona\nOscar\nOsmara\nOyuki\nPallavi\nPassion\nPatrice\nPersephone\nPooja\nQuetzali\nQuiana\nRadha\nRae\nRamiyah\nRashell\nRavneet\nRayana\nRaylynn\nReiley\nReya\nRhonda\nRichard\nRicki\nRoberta\nRori\nRosalee\nRosaline\nRoseanna\nRoshni\nRoslynn\nRoxie\nRudi\nSaba\nSadye\nSafiyah\nSaida\nSalem\nSamaya\nSamera\nSamirah\nSanaiya\nSanika\nSantos\nSarika\nSarine\nSativa\nSayda\nSaydie\nSayuri\nSean\nSeleen\nSemaj\nSeneca\nSeraphina\nSeriah\nSerra\nSeven\nShadae\nShaelynn\nShai\nShailyn\nShalom\nShalynn\nShandi\nShaniah\nShannen\nShantell\nSharai\nShariah\nSharlize\nShasta\nShayleen\nShaylyn\nShekinah\nSherilyn\nSheyanne\nShine\nShylah\nSiara\nSindhu\nSkarlett\nStarlyn\nStephenie\nStevi\nStormy\nSukhmani\nSulema\nSumer\nSwetha\nSylvana\nSymantha\nSyria\nTai\nTamra\nTana\nTanna\nTavia\nTawny\nTaylin\nTaytum\nTenzin\nTerren\nTeya\nThaily\nThelma\nTien\nTimia\nTonya\nTorie\nTorrey\nTricia\nTrinidad\nTrinitee\nTristyn\nTuesday\nTylar\nUnity\nUrsula\nVallerie\nVana\nVenessa\nViktoria\nWendolyn\nXochilth\nYarelli\nYaslin\nYasmen\nYatziri\nYatziry\nYeira\nYezenia\nYomara\nYukari\nYvett\nZamara\nZamyra\nZaniya\nZaniyah\nZariyah\nZayda\nZayna\nZeina\nZelda\nZhane\nZita\nZola\nZuleima\nZuleyma\nZuly\nZuri\nEmily\nAshley\nSamantha\nIsabella\nMia\nNatalie\nSophia\nEmma\nAlyssa\nMadison\nJasmine\nElizabeth\nJessica\nKimberly\nAbigail\nBrianna\nJennifer\nAva\nSarah\nAlexis\nHannah\nAndrea\nAngelina\nStephanie\nVanessa\nSofia\nOlivia\nVictoria\nGrace\nKayla\nMichelle\nMaria\nEvelyn\nDestiny\nChloe\nHailey\nLeslie\nAlexandra\nJocelyn\nLauren\nAlondra\nNicole\nDiana\nKatherine\nAlexa\nMelissa\nMelanie\nValeria\nElla\nAriana\nJacqueline\nJulia\nDaisy\nSavannah\nGiselle\nMaya\nDaniela\nSydney\nIsabel\nTaylor\nValerie\nNatalia\nMariah\nKaitlyn\nAmy\nRachel\nRuby\nAngela\nAmanda\nFaith\nAudrey\nLily\nGenesis\nGabriela\nKatelyn\nAllison\nEsmeralda\nZoe\nArianna\nKaylee\nKylie\nMegan\nMarissa\nAnna\nAlejandra\nBrooke\nCrystal\nBrenda\nJazmin\nMariana\nKaren\nAdriana\nBriana\nTrinity\nKarina\nKarla\nAna\nJade\nMakayla\nGabriella\nJasmin\nSara\nMadeline\nRebecca\nCamila\nGuadalupe\nLiliana\nJenna\nRiley\nNaomi\nAngelica\nFatima\nLeah\nCynthia\nBianca\nAlicia\nDanielle\nSierra\nAaliyah\nNevaeh\nTiffany\nKatie\nLizbeth\nHaley\nCatherine\nMiranda\nKelly\nJuliana\nAmelia\nMorgan\nIsabelle\nCeleste\nVivian\nCassandra\nJordan\nAvery\nPaige\nMonica\nAmber\nGianna\nLillian\nPriscilla\nCharlotte\nEva\nBrooklyn\nKate\nClaire\nChristina\nSabrina\nJulissa\nEstrella\nItzel\nGabrielle\nSophie\nLaura\nAlexia\nBella\nLeilani\nMya\nJazmine\nMackenzie\nErika\nEmely\nJada\nVeronica\nNancy\nMary\nNadia\nElena\nCindy\nPerla\nPaola\nPaulina\nAnahi\nWendy\nDayanara\nDenise\nMikayla\nSummer\nDulce\nErin\nJulianna\nLayla\nAlana\nBreanna\nKassandra\nXimena\nDesiree\nMelody\nKiara\nJamie\nJoanna\nCarolina\nJimena\nNayeli\nCaroline\nViviana\nAlexandria\nYesenia\nAmerica\nMarisol\nFernanda\nMaritza\nAileen\nAlina\nSandra\nLitzy\nCiara\nApril\nLesly\nAriel\nNataly\nRubi\nIris\nLucy\nJulie\nAngel\nRylee\nMadelyn\nSienna\nShelby\nKira\nMolly\nChelsea\nKathryn\nRosa\nStella\nClarissa\nKatrina\nSadie\nZoey\nHeidi\nJillian\nAshlyn\nGracie\nLeila\nSerenity\nCassidy\nMarlene\nTatiana\nKeira\nSelena\nBailey\nAmaya\nLindsay\nParis\nClaudia\nMonique\nPeyton\nCarmen\nDaniella\nLindsey\nNatasha\nYasmin\nAngie\nErica\nCecilia\nKendall\nKennedy\nMalia\nAutumn\nMiriam\nJordyn\nJosephine\nKylee\nYadira\nKiana\nSerena\nAlison\nAliyah\nCaitlin\nLucia\nEliana\nElise\nLilly\nCaitlyn\nAthena\nDelaney\nKyra\nRaquel\nJanelle\nViolet\nIvy\nLaila\nSarai\nCamille\nNina\nKyla\nHope\nJoselyn\nLydia\nEllie\nSasha\nMonserrat\nChristine\nCristina\nEsther\nIrene\nMarina\nAubrey\nHanna\nHelen\nKrystal\nMadeleine\nSkylar\nCheyenne\nDanna\nLinda\nNathalie\nJayden\nMaribel\nAshlee\nJenny\nKaylie\nPayton\nDakota\nHeaven\nPatricia\nScarlett\nGloria\nBethany\nElisa\nEden\nJanet\nJohanna\nDayana\nLuna\nAurora\nCarly\nKelsey\nTeresa\nAnnika\nAraceli\nMayra\nNoemi\nAlma\nArlene\nIzabella\nLola\nMakenna\nSavanna\nAlessandra\nCourtney\nDelilah\nJaqueline\nLuz\nMartha\nAnnabelle\nMckenna\nAllyson\nHayley\nKailey\nMargaret\nReyna\nTania\nYvette\nHaylee\nMelina\nDana\nHazel\nSonia\nGenevieve\nGisselle\nMarilyn\nMelany\nTalia\nLizeth\nAdrianna\nEliza\nFiona\nCadence\nCarla\nClara\nCristal\nJudith\nJadyn\nReese\nTessa\nAlissa\nBrisa\nReagan\nRuth\nValentina\nFrancesca\nMichaela\nAnnie\nBrittany\nDaphne\nKristina\nRebekah\nAnika\nIsis\nKendra\nBritney\nTara\nLorena\nRose\nGeorgia\nJaden\nJanessa\nLesley\nStephany\nAbby\nAlice\nArely\nCameron\nShannon\nBryanna\nDarlene\nKaitlin\nKathleen\nDamaris\nEmilia\nLana\nLizette\nYareli\nHeather\nJayla\nPhoebe\nMarisa\nCamryn\nJaylene\nSharon\nSherlyn\nEdith\nJuliet\nJuliette\nStacy\nAniyah\nBridget\nCitlali\nAddison\nEileen\nHolly\nSusana\nTanya\nAnastasia\nIsabela\nMakenzie\nYazmin\nAylin\nPaula\nGalilea\nIngrid\nSarahi\nKatelynn\nMckenzie\nPaloma\nSage\nBelen\nEvelin\nKristen\nMaggie\nRoselyn\nDalia\nJacquelyn\nJayleen\nRyan\nAngelique\nBerenice\nFrida\nLisa\nSiena\nKaylin\nNathaly\nAbril\nBelinda\nElaine\nLia\nTatum\nAlize\nCatalina\nDominique\nJayda\nJoy\nLila\nMakena\nPamela\nSamara\nSkyler\nGraciela\nCarina\nFabiola\nMikaela\nNora\nPenelope\nXiomara\nAimee\nAlyson\nAnnette\nKarol\nLilian\nMercedes\nMontserrat\nBrooklynn\nDeanna\nEleanor\nJane\nLauryn\nRosemary\nYahaira\nBlanca\nEmilie\nEstefania\nKara\nSimone\nCarissa\nKiera\nLeticia\nLilliana\nPiper\nTiana\nAdilene\nAsia\nMargarita\nMariela\nMaryjane\nPrecious\nEstefani\nHelena\nMaia\nNoelle\nAshly\nCasey\nCeline\nGizelle\nIliana\nSkye\nValery\nAnaya\nDanica\nAleena\nHana\nKaya\nLarissa\nRylie\nEmilee\nLena\nMeghan\nNia\nRachael\nYuliana\nCarol\nMallory\nRebeca\nKenia\nAshlynn\nCitlaly\nGiovanna\nHailee\nJazlyn\nKirsten\nLiana\nRegina\nTabitha\nBeatriz\nElle\nJustine\nKamryn\nLucero\nMarie\nMarley\nRoxanne\nGina\nGrecia\nHaylie\nJoyce\nMacy\nRoxana\nSandy\nAllie\nDenisse\nHarmony\nJolie\nJosie\nKaia\nKarissa\nKasandra\nRocio\nSusan\nHeidy\nLea\nMarianna\nShirley\nSidney\nJessie\nJohana\nKathy\nTina\nVirginia\nAngeline\nAniya\nJoana\nKassidy\nPresley\nXochitl\nYasmine\nAnabel\nArielle\nBrielle\nCarolyn\nCasandra\nEsperanza\nNatalee\nNyla\nAnya\nDylan\nJulieta\nYoselin\nAnnabella\nAracely\nAreli\nDestinee\nKenya\nYajaira\nAmelie\nArleth\nBrittney\nDiane\nFlor\nPriscila\nAlanna\nAnne\nCali\nKeila\nMina\nSalma\nSavanah\nShayla\nYamilet\nYaritza\nAria\nCallie\nCierra\nDiamond\nElisabeth\nJolette\nKiley\nMireya\nNoelia\nAnnabel\nArabella\nBriseyda\nDonna\nEllen\nKaila\nKailee\nStacey\nSylvia\nAlena\nMagdalena\nLaisha\nMarlen\nMiah\nNathalia\nReina\nSilvia\nYuridia\nYvonne\nAlisha\nAstrid\nDeborah\nElsa\nJazmyn\nLexi\nMariam\nTheresa\nAlani\nBriseida\nCharlize\nDesirae\nGemma\nHayden\nImani\nLogan\nPrincess\nBrandy\nBrenna\nGia\nJackeline\nJaiden\nJoseline\nJulianne\nKali\nKayleigh\nMadisyn\nRenee\nYolanda\nAlaina\nAmara\nBarbara\nDianna\nEve\nIsela\nJenifer\nKayley\nLilyana\nLisette\nMadyson\nRoxanna\nShreya\nThalia\nVanesa\nYessenia\nAinsley\nAlisa\nAnissa\nBetzaida\nEstefany\nKailyn\nKaitlynn\nTamara\nTeagan\nJaelyn\nJaquelin\nLondon\nMaddison\nMadelynn\nMarcela\nMilan\nNatali\nViridiana\nChanel\nCharlene\nEmerson\nGladys\nGwendolyn\nIvette\nJeanette\nKaelyn\nAnabelle\nAyanna\nJuana\nKristin\nLeanna\nLuisa\nLupita\nNikki\nTaryn\nAnjali\nArlette\nHarley\nJanae\nJanice\nKaydence\nKayleen\nLilianna\nMadalyn\nNatalya\nSariah\nYarely\nAdeline\nCelia\nDanika\nHillary\nKatarina\nMaile\nRhiannon\nSheila\nTracy\nXitlali\nAliza\nAzucena\nChristy\nCoral\nJaclyn\nKatharine\nLexie\nMacie\nSelina\nAida\nAiyana\nAryanna\nCelina\nGiana\nJanette\nKadence\nKaley\nKamila\nLourdes\nMelia\nRaven\nSelene\nAisha\nAnnalise\nAyla\nGeraldine\nIndia\nJulisa\nKeyla\nMelisa\nRiya\nRosario\nAmaris\nAmya\nAni\nDahlia\nElissa\nHalle\nJoanne\nKailani\nKayden\nKaylyn\nLiberty\nLynette\nMaricela\nNicolette\nRachelle\nTiara\nYaneli\nAngeles\nAnneliese\nBrynn\nCamilla\nChiara\nEvangelina\nFrances\nKaylah\nKrista\nLilia\nLina\nMandy\nMarisela\nMicaela\nMila\nNadine\nNorma\nRowan\nRyleigh\nTia\nTori\nWillow\nZaira\nAlexus\nAlysa\nJacquelin\nJewel\nKaiya\nLeyla\nMadilyn\nQuinn\nSamira\nSkyla\nYamileth\nAdamaris\nAlayna\nCharlie\nConnie\nDelia\nDrew\nKaylen\nNaima\nRegan\nAliya\nAnais\nAnisa\nDalila\nDalilah\nGisele\nJaida\nJaneth\nKatia\nKristine\nLacey\nLidia\nMaliyah\nNoelani\nRosalinda\nTyler\nXitlaly\nAdela\nCandice\nCora\nDiya\nEbony\nIvanna\nJaylin\nKasey\nLara\nPearl\nRaylene\nRita\nSarina\nSky\nAnai\nAyleen\nCielo\nCorina\nDania\nElyse\nElyssa\nGeorgina\nHaven\nMakaila\nMiracle\nNelly\nParker\nRyann\nSaray\nScarlet\nTess\nUnique\nVianey\nWhitney\nYadhira\nYessica\nAnanya\nAntonia\nAzalea\nBaylee\nElsie\nEmery\nGinger\nGisela\nGisell\nGissel\nIsabell\nKianna\nLluvia\nLuciana\nMelinda\nMira\nSimran\nYulissa\nAmalia\nAmani\nBryana\nCitlalli\nDeja\nDesteny\nDevin\nFelicity\nHilary\nIreland\nJustice\nKalia\nKayli\nMaxine\nRia\nShania\nShayna\nShea\nAnette\nAshleigh\nGillian\nGreta\nKyleigh\nMckayla\nPilar\nAlia\nAlivia\nAryana\nAubree\nCalista\nChantal\nElaina\nJaidyn\nJiselle\nJocelynn\nJolene\nLisbeth\nMarian\nMilagros\nMyla\nNichole\nRaina\nZoie\nAilyn\nAnita\nAnn\nCambria\nDayanna\nDevyn\nIrma\nJoselin\nJuanita\nKalea\nKiersten\nLaney\nLeanne\nLeyna\nLilah\nMalaya\nSaira\nTayler\nZara\nAmira\nAriadna\nBreana\nChelsey\nClare\nCorinne\nIvana\nIzabel\nJackelyn\nJocelyne\nKalani\nKatelin\nKaylynn\nLaurel\nMagaly\nMaleah\nMiya\nNaydelin\nRenata\nSheyla\nStefanie\nTatyana\nVianney\nVicky\nVioleta\nAnabella\nCandy\nDestiney\nKaili\nKarime\nLeilany\nLyric\nMeredith\nSamanta\nSelah\nStar\nZahra\nAdamari\nAliah\nAlyna\nAnalise\nAnnaliese\nAnnalisa\nArleen\nCinthia\nColette\nGissell\nJourney\nKarly\nKaryme\nKaty\nKristy\nLaci\nLianna\nLillie\nLorelei\nLyla\nMaci\nMika\nMyah\nNoa\nNoor\nSally\nSoraya\nSydnie\nToni\nTrisha\nYaretzi\nAbbey\nAleah\nAnahy\nAubrie\nBeatrice\nEmmalee\nGwyneth\nIlene\nKaliyah\nKarma\nKeely\nKeilani\nLailah\nLeia\nNayely\nNeha\nNeveah\nPauline\nPhoenix\nSuzette\nTammy\nTrina\nYsabella\nYulisa\nAbigayle\nAdelina\nAdrienne\nArissa\nAvalon\nBailee\nBritany\nDafne\nDevon\nElina\nEricka\nEunice\nHarper\nJaylee\nJaylynn\nJazlynn\nJocelin\nJoey\nKarely\nKenna\nLesli\nMara\nMari\nMyra\nPricilla\nSaniya\nShyanne\nSonya\nSunny\nAda\nAditi\nAlex\nAnalisa\nAriella\nAvril\nAyana\nCarlee\nCathy\nCheyanne\nGriselda\nJoelle\nJoslyn\nJosselyn\nKaela\nKatheryn\nKirra\nLissette\nLizet\nMaiya\nMercy\nMirian\nMonserrath\nNorah\nOfelia\nRhea\nSanjana\nSayra\nSinai\nStevie\nTamia\nTyra\nXochilt\nAdelaide\nAlly\nAnnelise\nBernice\nCienna\nDayna\nDennise\nEloise\nEstephanie\nHunter\nIzabelle\nJanely\nJasmyn\nLivia\nLucille\nMariel\nMariyah\nMorelia\nNallely\nRosie\nRoxy\nSabina\nSofie\nSydnee\nYasmeen\nAlexsandra\nAmari\nAshlie\nAzul\nBeverly\nBridgette\nBrissa\nCara\nCassie\nChristiana\nDallas\nDora\nElianna\nEmmy\nFelicia\nFrankie\nHallie\nIleana\nIsha\nJacklyn\nJanine\nJasleen\nKacie\nKarlee\nKarli\nKaylani\nKimora\nLeann\nMacey\nMalina\nMelani\nMelania\nMindy\nMoriah\nRomina\nSavana\nTaliyah\nAlycia\nAmerie\nAmina\nAndie\nAnnamarie\nAshanti\nCharity\nCiera\nDanae\nDarla\nElvia\nEmerald\nHaily\nJaquelyn\nJessenia\nJessika\nJosefina\nKai\nMaryann\nNylah\nPatience\nRayna\nSerina\nTatianna\nTianna\nVera\nVienna\nAliana\nAnisha\nAspen\nBelle\nBrandi\nBrianne\nCarley\nDorothy\nEstela\nHeavenly\nJackelin\nJackie\nJaelynn\nJudy\nKendal\nLaysha\nLeilah\nMarlee\nMarlena\nMatilda\nMeagan\nNyah\nOdalys\nRochelle\nRosalie\nShaylee\nShyla\nTea\nVivienne\nAilani\nAlannah\nAlexandrea\nAmiya\nCherish\nClarisa\nDeisy\nEvangeline\nFarrah\nHadley\nHailie\nHarleen\nHoney\nIman\nIvonne\nJanie\nJayna\nJenessa\nJessalyn\nJizelle\nKaleigh\nLoren\nLori\nMadalynn\nMicah\nReanna\nRianna\nStefany\nVivianna\nZulema\nAbygail\nAmiyah\nAnaly\nAnayeli\nBonnie\nBrigitte\nCarlie\nChase\nCinthya\nDestany\nDonya\nElliana\nEryn\nEstella\nGema\nGiuliana\nJesenia\nKarolina\nLaylah\nLeena\nLynn\nMagali\nMakaylah\nMarcella\nMarin\nMarlyn\nMelannie\nMelony\nMilana\nMonika\nNika\nOlga\nPriya\nRaegan\nReilly\nShelly\nSheridan\nShyann\nSoledad\nSonja\nVianca\nYaquelin\nAbbigail\nAlanah\nAlexi\nAlisson\nAlysha\nBriseis\nCandace\nCecelia\nCharlee\nChrista\nConsuelo\nDina\nElvira\nEsha\nGisel\nHilda\nJaime\nJannet\nJenelle\nJoann\nJoleen\nKalie\nKalina\nKaterina\nKatlyn\nKeily\nKelli\nKristal\nLillianna\nLilyanna\nMalena\nMaren\nMaryam\nMayah\nMillie\nNadya\nNalani\nNaomy\nNoel\nNya\nSabine\nSahara\nSaige\nStefani\nTaya\nThania\nTreasure\nYara\nYazmine\nAbbie\nAhtziri\nAidan\nAislinn\nAlanis\nAlexys\nAllyssa\nAniah\nAnnmarie\nAriah\nAsha\nBertha\nBetsy\nBeyonce\nBree\nCailyn\nCayla\nDavina\nEleni\nEmeli\nEmi\nEvelynn\nFinley\nGiavanna\nGiulia\nImelda\nJaedyn\nJahaira\nJailyn\nJennie\nJovana\nKarlie\nKatalina\nKenzie\nKya\nKylah\nLiv\nMae\nMaira\nMarbella\nMarleen\nMikaila\nMisha\nMollie\nNellie\nSusanna\nTierra\nVerenice\nVivien\nZariah\nAnamaria\nAntoinette\nAshely\nAya\nBerlin\nBianka\nBrook\nCampbell\nCharley\nChristian\nCianna\nColleen\nCorrina\nElana\nElia\nFrancine\nGwen\nHennessy\nIyana\nIzel\nJalyn\nJanelly\nJayde\nJeniffer\nJesse\nJustina\nKaeli\nKaelynn\nKamilah\nKiarra\nKlarissa\nKyndall\nMadilynn\nMariafernanda\nMeadow\nNeida\nOcean\nPetra\nRory\nSade\nSequoia\nSuzanne\nTrista\nValarie\nYanet\nYesica\nAbbygail\nAdrianne\nAixa\nAnabell\nAnastacia\nAudrie\nAverie\nBernadette\nDelanie\nDestini\nDeysi\nDoris\nEma\nEster\nFranchesca\nGeneva\nGretchen\nHalie\nItalia\nJaniya\nJaniyah\nJaylen\nJazelle\nJennyfer\nJoceline\nKallie\nKamille\nKaris\nKatya\nKaycee\nKierra\nKyara\nLacy\nLili\nLilyann\nLitzi\nLiyah\nMariajose\nMarjorie\nMay\nMaylin\nMikaylah\nMilla\nMirella\nMona\nNikita\nNubia\nPriyanka\nQuetzalli\nRandi\nRosalia\nRosalyn\nVeda\nVenus\nYanira\nAaliah\nAide\nAlaysia\nAlessia\nAlyah\nAlyssia\nAmarie\nAnessa\nAnyssa\nAtiana\nAura\nBetty\nBryn\nCailin\nCaitlynn\nCarys\nCaylee\nCharisma\nDariana\nDemi\nElisha\nEmber\nEmelyn\nEssence\nFaye\nFlora\nGracelyn\nHaleigh\nInes\nInez\nJana\nJena\nJianna\nJune\nKacey\nKaily\nKayle\nKeara\nKinsey\nLacie\nLizbet\nLizett\nLynda\nMakaela\nMaricruz\nMartina\nMichel\nMildred\nMonet\nNayelie\nRayleen\nRayne\nRobyn\nSaanvi\nSahana\nSamarah\nSanaa\nSanai\nSoleil\nUma\nVania\nWinter\nYoseline\nYoselyn\nZitlaly\nAbigale\nAddyson\nAlora\nAmie\nAmirah\nAndria\nAngelie\nAnia\nArmani\nArwen\nAviana\nCarmella\nChanelle\nCheryl\nElora\nEmalee\nEmelie\nEvan\nHannia\nHaydee\nHellen\nHolland\nIrlanda\nJaliyah\nJaylyn\nJayme\nJovanna\nJulieanna\nKaci\nKailie\nKarisma\nKennedi\nKeren\nKhushi\nLeslye\nLexy\nLillyana\nMaeve\nMariaguadalupe\nMarianne\nMaura\nMichele\nMirna\nMisty\nNautica\nRilee\nRosemarie\nSamia\nShantal\nShawna\nSolana\nStephania\nSunshine\nThea\nTiare\nViolette\nZaria\nZayra\nAbagail\nAlaya\nAlayah\nAlianna\nAnaliese\nAngelia\nAngelika\nAriyah\nArlyn\nArushi\nBrookelyn\nCarrie\nChantel\nCiarra\nDeana\nDestinie\nDivine\nEdna\nElly\nEnya\nEstelle\nEvalyn\nEvie\nGenessis\nGissele\nGlenda\nGurleen\nGwenyth\nIdaly\nIlse\nIsadora\nIvory\nIyanna\nJadah\nJalyssa\nJanay\nJarely\nJaylah\nJazmyne\nJeslyn\nJiya\nJodie\nKaelin\nKarmen\nKathya\nKavya\nKeala\nKeanna\nLeona\nLinnea\nLorelai\nLorraine\nMabel\nMadysen\nMalani\nMariella\nMarleny\nMarylin\nMikalah\nMinerva\nMischa\nMontana\nNaidelyn\nOdalis\nPaisley\nPortia\nPricila\nPrisila\nRemy\nSaniyah\nSarahy\nSeanna\nShaelyn\nStarr\nTanisha\nTaniya\nTanvi\nYuna\nZion\nAdamary\nAkayla\nAlba\nAmaia\nAmia\nAnaiya\nAneesa\nAnel\nAngelita\nAnjolie\nAnusha\nAnushka\nArden\nAriela\nArlin\nAurelia\nAvani\nAyah\nAzalia\nBetsaida\nBria\nBriceida\nCailey\nCaleigh\nCarli\nCarmela\nCate\nCelene\nChelsie\nChristie\nCloe\nCordelia\nDaira\nDani\nDarcy\nDaria\nDawn\nDebora\nDivya\nElayna\nEmelia\nEmiley\nEvelina\nFarah\nGaby\nIla\nIlianna\nItzayana\nJacey\nJazzlyn\nJordynn\nJulieann\nJulyssa\nKailynn\nKaleah\nKamaya\nKamilla\nKathia\nKelsie\nKhloe\nLainey\nLilith\nLoretta\nLouisa\nMadisen\nMalea\nMariza\nMayte\nMea\nMeghana\nMeilani\nMikala\nMilena\nNahomi\nNayelli\nNyomi\nRaelyn\nReece\nSania\nSelma\nSerafina\nShauna\nShay\nSherry\nTerra\nTriniti\nTristan\nVenice\nVeronika\nXenia\nYamile\nAaralyn\nAcacia\nAdrina\nAiram\nAleksandra\nAlyanna\nAlyse\nAmairani\nAmi\nAnalia\nAngelena\nArlett\nArya\nAshlin\nAubriana\nAveri\nAyesha\nBetsabe\nBrea\nCelest\nCiana\nClarice\nClementine\nConstance\nDanya\nDara\nDebra\nEla\nElektra\nEllery\nEloisa\nEstephany\nEvany\nEvelia\nFaviola\nFrancis\nHarlee\nIleen\nIrie\nIsla\nJamileth\nJamison\nKacy\nKassie\nKellie\nKimberley\nKimiko\nLani\nLeilanie\nLibby\nLyndsey\nMalak\nMalaysia\nMarilu\nMattea\nMayela\nMedha\nMelyssa\nMerissa\nMykayla\nNaiya\nNidhi\nNoemy\nNohemi\nNova\nRamona\nRaya\nRhianna\nRina\nRiver\nRosalba\nRosalina\nSachi\nSalome\nSamaya\nSana\nShana\nTaliah\nTayla\nTegan\nTenaya\nTiffanie\nVy\nWilla\nXitlalic\nYana\nYanely\nYenifer\nYuliza\nZahara\nZaida\nZaina\nZainab\nAdrian\nAiden\nAja\nAkira\nAlea\nAleeza\nAleida\nAli\nAlliyah\nAlysia\nAmberly\nAmilia\nAnalyssa\nAnkita\nAnnamaria\nAnoushka\nApple\nAriadne\nArlet\nAshli\nAudriana\nBecky\nBethanie\nBriley\nCaprice\nCatrina\nCecily\nCharis\nChaya\nCristy\nCydney\nDayami\nDenice\nDeziree\nDianne\nDyanna\nEgypt\nEllis\nEmelin\nEmerie\nEmmi\nEris\nFallon\nFiorella\nGiada\nGizel\nGlory\nGuinevere\nHermione\nIlana\nIsa\nJaeda\nJaila\nJalissa\nJanel\nJanna\nJaya\nJaycee\nJayline\nJeannette\nJenesis\nJersey\nJia\nJorden\nJubilee\nKaden\nKaira\nKameron\nKari\nKatlynn\nKaytlin\nKeeley\nKeilah\nKelis\nKim\nKloe\nKorina\nLeeann\nLeiah\nLela\nLeonor\nLexus\nLilli\nLillia\nLillyanna\nLisset\nLucie\nMackenna\nMaegan\nMai\nMaliah\nMaliya\nMarcia\nMariaelena\nMarielena\nMarielle\nMarta\nMaryah\nMarysol\nMeleny\nMelodie\nMerari\nMonzerrat\nMylah\nNanci\nNisha\nNuvia\nOlyvia\nPassion\nPayten\nRemi\nRobin\nRosy\nRyley\nSamaria\nShani\nShaniya\nShivani\nSia\nSindy\nSiya\nTamera\nTatiyana\nTatyanna\nTehya\nTherese\nTristen\nVarsha\nVenecia\nYamila\nYanelly\nYsabel\nZaara\nAaniyah\nAdelyn\nAiyanna\nAlessa\nAlida\nAline\nAmeera\nAminah\nAnalee\nAnali\nAnalicia\nAngelyna\nAnnabell\nAntonella\nArianne\nAriatna\nAriya\nAthziri\nAudra\nAvelina\nAzaria\nBibiana\nBreeana\nBrieanna\nBryce\nCaelyn\nCesia\nCosette\nDarby\nDarleen\nDarya\nDasha\nDesire\nDeyanira\nElsy\nElysia\nEmalie\nEmili\nEmilly\nEmme\nEvette\nFrancisca\nGardenia\nGetsemani\nGisella\nHarlie\nHarmonie\nHayleigh\nHenna\nItzia\nJael\nJaimie\nJanai\nJanell\nJemma\nJoan\nJodi\nJosalyn\nJoscelyn\nJoselyne\nKalena\nKalista\nKamea\nKaniya\nKareena\nKarizma\nKay\nKaylene\nKeana\nKeiry\nKelsea\nKelsy\nKiani\nKimberlyn\nKiran\nLaurie\nLilibeth\nLinette\nLisseth\nLiz\nLovely\nLuca\nLucinda\nMadelaine\nMaite\nMarcelina\nMargaux\nMaricarmen\nMarifer\nMarlie\nMaryanne\nMeena\nMelonie\nMichell\nMimi\nMoira\nMoncerrat\nNaya\nNeela\nNidia\nNiki\nNiya\nNola\nNyssa\nOlive\nParris\nPolina\nPoppy\nPrisha\nRayven\nRhiana\nRubie\nSakura\nSalem\nSalina\nSammantha\nSanya\nShae\nShakira\nShanna\nSherlin\nShriya\nSimona\nSloane\nSneha\nSol\nSpencer\nSusie\nSydni\nTallulah\nTalya\nTaytum\nTristin\nViktoria\nWinnie\nYaretzy\nYeimi\nYulianna\nYuvia\nAarushi\nAbriana\nAddie\nAilin\nAlexxis\nAleyda\nAllana\nAmayrani\nAnay\nAnyah\nAranza\nArin\nAshlynne\nAshton\nAtianna\nAtziry\nAylene\nAzariah\nBetzy\nBianey\nBreann\nBrooklynne\nCameryn\nCaydence\nChantelle\nCharlise\nChristianna\nCloey\nCorinna\nDaizy\nDelany\nDelila\nDesirey\nDivina\nDolores\nElida\nEmiko\nEmiliana\nErendira\nEsme\nEvalynn\nEvelyne\nGenisis\nGennesis\nGimena\nGracelynn\nGricelda\nHenessy\nIrais\nIvett\nIzabela\nJamilet\nJanaya\nJaniah\nJaslyn\nJenae\nJennah\nJhoanna\nJill\nJoie\nJolee\nJordana\nJosseline\nKailah\nKairi\nKalee\nKaleena\nKarley\nKaylan\nKelsi\nKendyl\nKeyanna\nKhadija\nKhalia\nKiya\nKori\nKyli\nLeana\nLeandra\nLessly\nLizzette\nLynnette\nMakala\nMalayna\nMarilynn\nMariya\nMarylu\nMason\nMatilde\nMelanny\nMeliza\nMilani\nMiliani\nMonserat\nMyriam\nNaidelin\nNelida\nNikayla\nNinel\nPenny\nQueen\nRaelene\nRain\nRayanna\nRian\nRihanna\nRio\nRylan\nSaloni\nSaniah\nSawyer\nScarlette\nSela\nSeleste\nShanelle\nShantel\nShaylynn\nShayne\nShiloh\nShira\nShruti\nSiara\nSicily\nSirena\nStacie\nStefania\nSuzanna\nSylvie\nSymphony\nTanner\nTrinidad\nTyla\nVaishnavi\nVicki\nVivica\nYajayra\nYelena\nYoana\nYocelin\nYuri\nZamira\nAanika\nAbrianna\nAdelle\nAdia\nAdison\nAlexie\nAlexzandra\nAleya\nAlinna\nAlonna\nAlynna\nAlysse\nAmal\nAmariah\nAmbar\nAmeena\nAmyah\nAnahit\nAnakaren\nAnalyse\nAnapaula\nAngellina\nAnnemarie\nAraya\nAri\nAriyanna\nAudrianna\nAvigail\nAyden\nAyiana\nAyva\nAziza\nBlessing\nBobbi\nBobbie\nBreeanna\nBrinley\nBriza\nBrizeida\nCallista\nCamden\nCaris\nCarson\nCaterina\nCaylie\nCharli\nChasity\nChelsy\nChevelle\nChristal\nChristopher\nChrystal\nCitlally\nClover\nDaijah\nDaisha\nDarian\nDeena\nDenia\nEdie\nEliyah\nEmani\nEzra\nFlorence\nGaia\nGladis\nHiromi\nHonesty\nIlliana\nIssabella\nItati\nIxchel\nIzabell\nJacinda\nJadelyn\nJadelynn\nJaela\nJaelene\nJahzara\nJaidan\nJalynn\nJaydyn\nJaymie\nJazira\nJazzlynn\nJeanine\nJeannie\nJenavieve\nJenaya\nJenica\nJennalyn\nJenni\nJessi\nJesslyn\nJezebel\nJocelynne\nJolina\nJoycelyn\nJuan\nKala\nKalissa\nKamara\nKaroline\nKatana\nKatharina\nKathrine\nKaylei\nKelani\nKeziah\nKiarah\nKimani\nKimberli\nKrishna\nKristi\nKristiana\nKrystina\nKyah\nLanaya\nLaniya\nLeidy\nLeslee\nLesslie\nLeylani\nLiah\nLilit\nLilyan\nLindsy\nLinsey\nLiset\nLiza\nLizzeth\nLorna\nMadai\nMagdalene\nMagnolia\nMaiah\nMalayah\nMariko\nMarla\nMarlin\nMarwa\nMaryn\nMaryssa\nMattie\nMedina\nMena\nMercedez\nMeya\nMilly\nMiyah\nMyrna\nNandini\nNayla\nNazareth\nNeftaly\nNeyda\nNickole\nNikole\nNirvana\nOdette\nOriana\nParadise\nPaulette\nPayge\nQuincy\nRafaela\nRania\nRashel\nReana\nRebeka\nReem\nRemington\nRida\nRileigh\nRoberta\nRosaura\nRoselin\nRoya\nSaba\nSaraya\nSarita\nSascha\nSaydee\nSedona\nShaina\nSharleen\nSharlene\nSheccid\nShianne\nSiera\nSiobhan\nSkyy\nStarla\nSuhani\nSymone\nTala\nTaniyah\nTristyn\nTru\nVannesa\nVerena\nXochil\nYanelli\nYanitza\nYarisbel\nYocelyn\nYunuen\nYuriana\nZurisadai\nAdalie\nAddisyn\nAdina\nAdria\nAdriane\nAeris\nAgnes\nAiko\nAila\nAilene\nAine\nAislyn\nAlexiah\nAlise\nAlizay\nAlyn\nAmairany\nAmayah\nAmayrany\nAmiah\nAmrit\nAmrita\nAnalucia\nAnamarie\nAnasofia\nAngelee\nAngelene\nAngelic\nAngelyn\nAnnalee\nAnnel\nAolani\nAralyn\nArieana\nAries\nAriyana\nArizbeth\nAryssa\nAubrielle\nAudree\nAugust\nAvianna\nAvneet\nBeatrix\nBlair\nBraelyn\nBrianda\nBriar\nBridgett\nBrigette\nBritny\nBrookelynn\nBrooklin\nCady\nCalla\nCalliope\nCandelaria\nCarter\nCatarina\nCathryn\nCaylin\nCelena\nCharly\nChyanne\nCoco\nConcepcion\nCortney\nDaiana\nDaniel\nDavid\nDayra\nDeandra\nDebbie\nDesiray\nDharma\nDrea\nDulcemaria\nEesha\nEkaterina\nElexis\nElisia\nElliot\nElliott\nElyana\nEmmalyn\nEmmily\nErandi\nFayth\nFrancheska\nGabriel\nGagandeep\nGiovana\nGrayson\nHania\nHavana\nHelene\nHeydi\nIanna\nIdalia\nInaya\nIsamar\nItaly\nIveth\nIvon\nJacy\nJadynn\nJalia\nJalisa\nJania\nJannah\nJasmeen\nJasmeet\nJasmyne\nJatziry\nJaydin\nJaymee\nJean\nJeanne\nJessa\nJohnnie\nJoi\nJordin\nJorja\nJosette\nJules\nJustyce\nKailea\nKalei\nKaliah\nKamari\nKamora\nKamya\nKarine\nKasia\nKatey\nKatherin\nKathlyn\nKaytlyn\nKeaton\nKeilyn\nKeyana\nKiely\nKieran\nKimberlee\nKirah\nKora\nKristyn\nKrysta\nKyrsten\nLaela\nLamya\nLanie\nLaryssa\nLezly\nLiel\nLisbet\nLondyn\nLouise\nLove\nLyna\nMadelyne\nMahek\nMaili\nMaisie\nMakyla\nMalaika\nMarayah\nMargot\nMariadejesus\nMarialuisa\nMariann\nMarilin\nMayrin\nMeera\nMegha\nMelenie\nMelodee\nMetzli\nMiabella\nMinnie\nMitzy\nMuskan\nMylee\nNaila\nNakayla\nNaraly\nNavya\nNeftali\nNereida\nNiyah\nNoely\nNour\nNydia\nOdessa\nOphelia\nParisa\nPersephone\nPromise\nRachell\nRaelynn\nRaena\nRebecka\nReena\nRena\nRene\nReya\nRiana\nRikki\nRitika\nRosalynn\nRosamaria\nRuthie\nSafiya\nSakina\nSaleen\nSamari\nSamiah\nSamika\nSamiyah\nSanam\nSapphire\nSariya\nScout\nSemaj\nShanell\nSharlyn\nShelbi\nShelsy\nSiana\nSianna\nSilvana\nStephani\nSulema\nSynthia\nTaliya\nTamar\nTasneem\nTeresita\nTiffani\nTricia\nTyanna\nVi\nVida\nYahira\nYoanna\nYuritzi\nZada\nZamara\nZayda\nZayna\nAalyah\nAbbygale\nAbigael\nAbrielle\nAdali\nAdalyn\nAdele\nAdithi\nAdylene\nAfton\nAishwarya\nAkasha\nAlany\nAlara\nAlaura\nAleen\nAlexxa\nAlexzandria\nAllysa\nAlthea\nAly\nAlyana\nAlyssandra\nAlyvia\nAlyza\nAmarissa\nAmethyst\nAmeya\nAmor\nAn\nAnaiah\nAnaiyah\nAnanda\nAndra\nAngelle\nAngy\nAniela\nAnisah\nAnishka\nAnjelica\nAnneka\nAoife\nAparna\nArian\nArianah\nArisbeth\nArwyn\nAshanty\nAshleen\nAshna\nAtziri\nAudri\nAustyn\nAysia\nBaleria\nBaylie\nBerlynn\nBetzayra\nBillie\nBrandie\nBreanne\nBriceyda\nBritanny\nBrithany\nCalissa\nCalli\nCallia\nCapri\nCatelyn\nCayden\nChayse\nChiamaka\nChyna\nCorrine\nCorryn\nDanay\nDanni\nDasia\nDaysha\nDaysi\nDejah\nDelani\nDelicia\nDella\nDelyla\nDenae\nDeserie\nDevika\nDevina\nDoreen\nEbelin\nElani\nElda\nEleana\nElicia\nElinor\nElisabet\nEllianna\nEllison\nElva\nElysa\nEmmely\nEmy\nEnid\nEowyn\nEryka\nEsli\nEugenia\nEzmeralda\nFabiana\nFanny\nFreya\nFreyja\nGabby\nGenevie\nGenna\nGeorgiana\nGianni\nGiulianna\nGretel\nGretta\nGuillermina\nHadassah\nHaidee\nHalia\nHattie\nHavanna\nHerlinda\nHuda\nIda\nIlleana\nIlona\nImari\nIndigo\nIndira\nIvania\nIvie\nIzela\nJaci\nJacklynn\nJadeyn\nJailah\nJailene\nJailynn\nJaimee\nJakelin\nJaleen\nJamaica\nJamila\nJanea\nJaneen\nJanett\nJaney\nJannette\nJanya\nJayleene\nJayne\nJaynie\nJazlin\nJazzmin\nJazzmyn\nJesus\nJewels\nJiana\nJolynn\nJonathan\nJosefine\nJosslyn\nJournee\nJude\nJudit\nJulieanne\nJulietta\nJuniper\nJurnee\nKadance\nKady\nKadyn\nKadynce\nKaiden\nKaleia\nKalin\nKalyn\nKambria\nKameryn\nKana\nKandy\nKareli\nKarin\nKarolyn\nKaryssa\nKatelynne\nKaylea\nKeilana\nKeisha\nKendy\nKeona\nKeya\nKiah\nKierstin\nKimberlie\nKirstyn\nKiyomi\nKlara\nKourtney\nKrysten\nKylene\nKyrah\nLailoni\nLaniyah\nLanna\nLavinia\nLaylani\nLayne\nLeeah\nLeigha\nLeya\nLeylah\nLilyanne\nLisandra\nLiseth\nLissa\nLoryn\nLotus\nLucila\nLula\nLuzmaria\nLyndsay\nMahika\nMailee\nMakalah\nMakiah\nMalika\nManya\nMarely\nMarijane\nMarily\nMarion\nMaritsa\nMarlenne\nMaryanna\nMaureen\nMaycee\nMaylee\nMeah\nMeghna\nMelanee\nMelaney\nMichal\nMickayla\nMiku\nMilca\nMileena\nMireille\nMomoka\nMonroe\nNadiya\nNahomy\nNailah\nNaina\nNaliyah\nNalleli\nNatania\nNavaeh\nNayelly\nNaylea\nNayomi\nNevaeha\nNicolle\nNicollette\nNila\nNisa\nNitya\nOctavia\nOdyssey\nOsiris\nPatty\nPersia\nPooja\nRamya\nRanya\nRayann\nRaylynn\nRoni\nSafa\nSamirah\nSamiya\nSariyah\nSaylor\nSejal\nShalini\nShane\nShanya\nSherly\nShoshana\nShylah\nSiomara\nSivan\nSkylee\nSruthi\nSuraya\nTabatha\nTahlia\nTamana\nTamyra\nTawny\nTaylin\nTeah\nTera\nTerri\nTeryn\nTyana\nUna\nVannia\nVanya\nVianna\nViola\nWendi\nYaire\nYatziry\nYliana\nYui\nYuki\nYuritza\nYzabella\nZahira\nZamantha\nZaniyah\nZarina\nZenia\nZofia\nZora\nZoraya\nZyanya\nAaliya\nAashna\nAastha\nAbilene\nAcelyn\nAdaly\nAdelaida\nAdelene\nAdelia\nAdelynn\nAdreana\nAeryn\nAhtziry\nAkari\nAlaysha\nAlexcia\nAlexsa\nAliciana\nAlix\nAlizah\nAllena\nAlli\nAlona\nAlyissa\nAlyssah\nAlyssamarie\nAmeerah\nAmparo\nAnaleah\nAnayah\nAnela\nAngely\nAnicia\nAnja\nAnnali\nAnnalicia\nAnnalie\nAnnalyse\nAntonette\nArabelle\nArgelia\nArline\nArrianna\nAryan\nAsucena\nAubrianna\nAundrea\nAvah\nAviva\nAylen\nAysha\nAzure\nBelicia\nBethel\nBlythe\nBo\nBriannah\nBrighton\nBrylee\nBrynna\nCadance\nCaden\nCally\nCaren\nCarmina\nCatharine\nChana\nChance\nChastity\nChesney\nChloee\nClair\nClarisse\nClaryssa\nCollette\nCori\nDaija\nDailyn\nDakotah\nDanely\nDanyelle\nDaphnie\nDayan\nDeisi\nDejanae\nDelaina\nDelainey\nDelfina\nDelina\nDemarie\nDesaree\nDestanie\nDevan\nDevynn\nDezirae\nDixie\nDyana\nDynasty\nElizah\nElodie\nEmarie\nEmeline\nEmmaline\nEmmerson\nEmylee\nErynn\nFantasia\nFaythe\nGauri\nGeorgie\nGeovanna\nGigi\nGizell\nGracia\nGraciella\nGracyn\nGwendalyn\nHadeel\nHafsa\nHali\nHalley\nHarini\nHavyn\nHaylei\nHazell\nHeavenlee\nHeavyn\nHollie\nIdalis\nIdania\nIleanna\nImogen\nIndya\nInessa\nIshani\nIshita\nIsobel\nItzela\nItzell\nItzy\nIva\nIzamar\nJacelyn\nJacie\nJackelyne\nJaclynn\nJadin\nJaeden\nJakeline\nJalene\nJami\nJamilette\nJanis\nJanneth\nJaslin\nJasminemarie\nJaycie\nJazmen\nJeanna\nJeannine\nJeimy\nJelani\nJelena\nJenavie\nJenevie\nJenevieve\nJesica\nJhoana\nJody\nJohnna\nJoshua\nJosilyn\nJoslynn\nJozlyn\nJulian\nJuliann\nJulieana\nJuliza\nKadie\nKahlen\nKaiah\nKaileigh\nKaithlyn\nKalli\nKamaria\nKamiya\nKandace\nKandice\nKaori\nKarena\nKarisa\nKaterin\nKathryne\nKayra\nKeani\nKeeli\nKeiley\nKeilly\nKellyn\nKemberly\nKennady\nKennia\nKeyli\nKiele\nKimberlin\nKirstin\nKristie\nKyana\nKyanna\nKymberly\nLael\nLailani\nLaina\nLaine\nLakshmi\nLanea\nLavender\nLayna\nLeela\nLeiana\nLelah\nLeora\nLexa\nLexis\nLilianne\nLiliya\nLillyan\nLizzet\nLizzie\nLucianna\nLucienne\nLupe\nLylah\nLyra\nLysette\nMacayla\nMaddox\nMadelin\nMadelynne\nMahima\nMaisy\nMakailah\nMalana\nMali\nMalissa\nMallika\nMallorie\nMalorie\nMandi\nManpreet\nMaranda\nMarelyn\nMargie\nMarly\nMaryan\nMaryana\nMatea\nMatisse\nMaycie\nMaylene\nMayumi\nMckenzi\nMeaghan\nMele\nMerilyn\nMetztli\nMicaiah\nMicayla\nMidori\nMikyla\nMiliana\nMiroslava\nMitzi\nMorgyn\nMuskaan\nMyia\nMyka\nMykaela\nMykala\nMykenzie\nMyracle\nNadira\nNaia\nNaomie\nNarali\nNariah\nNashaly\nNataliya\nNatally\nNathan\nNaudia\nNaydelyn\nNena\nNerissa\nNiah\nNiamh\nNichelle\nNicola\nNijah\nNoah\nNoe\nPaityn\nParneet\nPranavi\nPreslee\nQuetzali\nRamsey\nRaquelle\nRashelle\nRavyn\nRhyan\nRiona\nRisha\nRomy\nRori\nRosanna\nRosely\nRoselynn\nRoslyn\nRosselyn\nRozlynn\nRut\nRya\nRyanne\nRylei\nRylin\nSaachi\nSadia\nSamah\nSammy\nSandi\nSeraphina\nShadia\nShamya\nShaniah\nShannen\nShasta\nShaya\nShaylin\nSheily\nShelbie\nSiri\nSloan\nSocorro\nSofiya\nSommer\nSophya\nSujey\nSukhman\nSunnie\nSurabhi\nSuzan\nSuzie\nTais\nTali\nTalisa\nTarah\nTasia\nTeairra\nTeanna\nTeya\nThy\nTiani\nTionna\nTonantzin\nTriana\nTrish\nTuesday\nTylee\nValencia\nVerenise\nVeronique\nVianne\nVidhi\nVielka\nVilma\nVivianne\nWaverly\nWren\nXiana\nYael\nYaira\nYamilett\nYamilex\nYaribeth\nYazmeen\nYeni\nYohana\nYovana\nYulia\nYuritzy\nYusra\nZelda\nZitlali\nZitlalli\nZoya\nZuleima\nZuleyka\nAasha\nAashi\nAbbigale\nAbegail\nAbra\nAdalia\nAdara\nAdelayda\nAdelin\nAdi\nAdora\nAdreena\nAdvika\nAhniah\nAidee\nAika\nAilany\nAili\nAime\nAisling\nAiza\nAkaylah\nAkemi\nAkshara\nAlaia\nAleeya\nAleeyah\nAleisha\nAlexsia\nAlexsis\nAlexy\nAlexya\nAleyah\nAleyna\nAlicen\nAlisia\nAliyana\nAlizabeth\nAlizae\nAllegra\nAllisyn\nAmaiyah\nAmarachi\nAmberlyn\nAminata\nAmora\nAnadalay\nAnagha\nAnahita\nAnaid\nAnaisa\nAndreina\nAndy\nAnely\nAnett\nAngeleena\nAngeli\nAngelin\nAngella\nAnh\nAnjelina\nAnmarie\nAnmol\nAnnete\nAnnica\nAnny\nAnyiah\nAnyla\nAnysia\nApoorva\nArayah\nArcelia\nArial\nAriane\nArieanna\nArika\nArisa\nArriana\nArshdeep\nAsa\nAseel\nAshby\nAshlan\nAshlen\nAshtyn\nAstha\nAudry\nAugusta\nAustin\nAvalee\nAven\nAvni\nAyumi\nAyushi\nAzeneth\nBailie\nBayley\nBeatris\nBentley\nBerlyn\nBetzaira\nBetzayda\nBijou\nBiridiana\nBlake\nBracha\nBrady\nBrayden\nBriauna\nBricia\nBrie\nBrienna\nBrina\nBrionna\nBrooklyne\nBryanah\nBrynne\nCailynn\nCaley\nCalysta\nCamdyn\nCamelia\nCarisa\nCarmelita\nCarolyna\nCarsyn\nCassia\nCecile\nCecy\nCerina\nChandra\nChannel\nChanning\nCharisse\nCharmaine\nChelsi\nCherokee\nCherry\nChloey\nClaribel\nClaudette\nCleo\nCoraima\nCorey\nCorrie\nCristiana\nCruz\nDagny\nDaisey\nDaisie\nDaliah\nDarianna\nDarling\nDarlyn\nDasani\nDavia\nDayani\nDayannara\nDayla\nDaylin\nDayrin\nDeeya\nDeija\nDeirdre\nDelmy\nDelylah\nDenali\nDeserae\nDeseree\nDestani\nDestine\nDestyni\nDevanie\nDia\nDisha\nDivinity\nDomonique\nDream\nDylann\nEliah\nElidia\nElizabet\nElizaveta\nEly\nEmari\nEmelly\nEmmah\nEmmaly\nEmmeline\nEniyah\nErandy\nErnestina\nEsly\nEstephania\nEstrellita\nEulalia\nEveleen\nEvelen\nEvy\nFelisha\nFrancia\nGalia\nGeena\nGenavieve\nGenesee\nGenesys\nGenevy\nGeorgette\nGeselle\nGianina\nGiavana\nGissela\nGraceann\nGracen\nGracy\nGweneth\nHaeley\nHaillie\nHala\nHalee\nHanah\nHarlow\nHarmoni\nHarshini\nHayle\nHayli\nHeily\nHiba\nHikari\nHila\nHosanna\nIlaria\nIleene\nIlyanna\nImunique\nInari\nIndiana\nIrena\nIriana\nIrina\nIshika\nIsra\nItcel\nItxel\nItza\nJacquline\nJadzia\nJahnavi\nJala\nJamaya\nJanee\nJaneli\nJaniece\nJanina\nJannie\nJareli\nJaslynn\nJasmen\nJasmina\nJasminne\nJazalyn\nJazmynn\nJazzmine\nJeanelle\nJenay\nJenise\nJennavie\nJennessa\nJennica\nJenniffer\nJesika\nJessy\nJestine\nJewell\nJezel\nJilian\nJinelle\nJisel\nJisselle\nJoely\nJohannah\nJohn\nJoleena\nJolin\nJoline\nJonelle\nJoselynn\nJosephina\nJosselin\nJulliana\nJulyana\nJulyanna\nJusteen\nKaavya\nKaelani\nKaeley\nKaelie\nKaely\nKaidence\nKaidyn\nKaija\nKalaya\nKalila\nKalise\nKalynn\nKalyssa\nKamden\nKami\nKanisha\nKarah\nKarsyn\nKatheryne\nKati\nKatlin\nKattie\nKatty\nKaycie\nKaydee\nKaysie\nKaytlynn\nKazandra\nKelley\nKemora\nKenadee\nKenisha\nKennedie\nKerri\nKerry\nKeylin\nKeyra\nKezia\nKimia\nKitana\nKloey\nKomal\nKrystel\nKyaira\nKylea\nKyleen\nKyndra\nLaelani\nLaiba\nLainee\nLaiza\nLanae\nLarisa\nLaritza\nLeeanna\nLeeanne\nLelani\nLeonora\nLeyah\nLeyda\nLeylanie\nLillith\nLinsy\nLinzy\nLizabeth\nLois\nLonnie\nLorien\nLucca\nLunna\nLuzelena\nLya\nLynae\nLynna\nLynzie\nMaayan\nMaddie\nMaddyn\nMahogany\nMairany\nMakiya\nMalaina\nMaleena\nMalini\nManaia\nManasvi\nManiyah\nManmeet\nManuela\nMaraya\nMariadelcarmen\nMariaisabel\nMaricella\nMarilena\nMarivel\nMarleni\nMarli\nMarriah\nMarsha\nMarycruz\nMarylou\nMataya\nMathilde\nMayeli\nMayla\nMaylen\nMecca\nMei\nMeliah\nMelinna\nMelodi\nMerlyn\nMeztli\nMichaella\nMilagro\nMilania\nMilenka\nMirabel\nMixtli\nMonae\nMoncerat\nMoncerrath\nMontserrath\nMorgen\nMylene\nMyranda\nMyrka\nNadiyah\nNailea\nNaiomi\nNairi\nNakia\nNana\nNashley\nNasia\nNataley\nNathalee\nNatividad\nNautika\nNaydeline\nNayleen\nNaysa\nNeeka\nNelia\nNereyda\nNevada\nNeve\nNicholette\nNikka\nNirel\nNoemie\nNyana\nOceana\nOceanna\nOralia\nOrianna\nPallavi\nPolly\nPrecilla\nPreciosa\nPrescilla\nPresleigh\nPriseis\nPrisilla\nRacquel\nRadha\nRaeann\nRaechel\nRafaella\nRaine\nRaisa\nRamiyah\nRana\nRaneem\nRaychel\nRenae\nRheanna\nRilyn\nRishika\nRoma\nRonnie\nRoxane\nRyanna\nSabreen\nSachiko\nSafia\nSahar\nSaiya\nSalena\nSamaira\nSamaiya\nSammi\nSamya\nSandie\nSanika\nSarena\nSatya\nSelin\nSena\nSera\nSerene\nShai\nShaira\nShanaya\nShanice\nShannel\nShante\nShantell\nShanti\nShawn\nShaylah\nShelley\nShiann\nShree\nShreeya\nShylee\nSiddhi\nSimranjit\nSinahi\nSinead\nSitlali\nSkylynn\nSmriti\nSofi\nSolange\nSoriah\nSpring\nSriya\nStarlyn\nSteffany\nSwetha\nSylvana\nSyncere\nTabetha\nTalula\nTalulah\nTamya\nTate\nTayah\nTaylar\nTeagen\nTeia\nTenley\nTereza\nTiera\nTommie\nTopacio\nTorrance\nTraci\nTroi\nTRUE\nTulsi\nVada\nValentine\nValeri\nVallerie\nVenessa\nVenezia\nVioletta\nViviann\nWynter\nXiclaly\nYalitza\nYaneth\nYanette\nYanina\nYareni\nYareth\nYatana\nYatziri\nYelitza\nYennifer\nYohanna\nYoltzin\nYtzel\nYulitza\nYumi\nYuridiana\nZakiya\nZariya\nZariyah\nZaylee\nZenaida\nZuleyma\nEmily\nIsabella\nAshley\nMia\nSamantha\nNatalie\nSophia\nEmma\nAbigail\nAva\nMadison\nElizabeth\nAlyssa\nKimberly\nBrianna\nJasmine\nAndrea\nJessica\nAlexa\nOlivia\nHannah\nValeria\nSarah\nAngelina\nJocelyn\nJennifer\nAlexis\nChloe\nVictoria\nVanessa\nStephanie\nSofia\nMichelle\nEvelyn\nMaria\nKayla\nMelanie\nGrace\nDestiny\nAlexandra\nHailey\nValerie\nLeslie\nNatalia\nMaya\nLauren\nAriana\nKatherine\nJulia\nSavannah\nMelissa\nIsabel\nElla\nDiana\nGiselle\nNicole\nJacqueline\nAudrey\nDaniela\nAlondra\nTaylor\nDaisy\nAngela\nMariah\nKaitlyn\nGabriela\nRuby\nSydney\nArianna\nLily\nJazmin\nAllison\nKatelyn\nZoe\nRachel\nAmy\nKaylee\nLiliana\nAdriana\nAmanda\nNevaeh\nBriana\nEsmeralda\nKaren\nGabriella\nBrooke\nFaith\nCamila\nSara\nJasmin\nMegan\nCrystal\nGenesis\nJade\nGianna\nKylie\nGuadalupe\nMariana\nFatima\nKarla\nAlejandra\nMadeline\nRebecca\nMarissa\nNaomi\nAnna\nAna\nAngelica\nKatie\nAaliyah\nSienna\nBrenda\nMakayla\nKarina\nMiranda\nClaire\nRiley\nAvery\nCynthia\nBianca\nJuliana\nTrinity\nIsabelle\nKeira\nLeah\nJenna\nAlicia\nLillian\nJulissa\nDanielle\nBrooklyn\nCharlotte\nAmelia\nAnahi\nCatherine\nHaley\nAlexia\nJazmine\nEva\nKate\nLeilani\nLayla\nMorgan\nSierra\nDulce\nJordan\nTiffany\nBella\nBreanna\nMonica\nSophie\nAubrey\nAddison\nMackenzie\nPaige\nEmely\nPaola\nAmber\nLizbeth\nCassandra\nPriscilla\nElena\nWendy\nMya\nChristina\nMelody\nCarolina\nJoanna\nVivian\nSabrina\nEstrella\nVeronica\nJulianna\nNataly\nAlana\nItzel\nCeleste\nNancy\nDesiree\nMary\nErika\nMarisol\nMikayla\nKelly\nSerenity\nKiara\nLaura\nAlina\nGabrielle\nCindy\nSadie\nZoey\nViviana\nPerla\nXimena\nDenise\nApril\nNayeli\nFernanda\nLesly\nJamie\nNadia\nAriel\nLeila\nMadelyn\nAutumn\nCaroline\nBailey\nLucy\nYesenia\nMarlene\nAmerica\nDayanara\nKassandra\nSummer\nAlexandria\nViolet\nChelsea\nJada\nJoselyn\nSherlyn\nAshlyn\nErin\nHeidi\nIris\nAileen\nAngel\nJanelle\nYasmin\nAngie\nLilly\nTatiana\nScarlett\nJordyn\nStella\nIzabella\nMolly\nJayla\nElise\nJimena\nMaritza\nDaniella\nKennedy\nKaylie\nAliyah\nJosephine\nAmaya\nCecilia\nReese\nRylee\nLucia\nMalia\nAlessandra\nHelen\nSerena\nCarmen\nKylee\nSasha\nLindsey\nRosa\nJayden\nSarai\nClarissa\nEliana\nLola\nMarina\nAnnabelle\nJenny\nSandra\nJohanna\nKathryn\nCassidy\nLaila\nCamille\nPaulina\nSavanna\nPeyton\nCaitlin\nErica\nNoemi\nMelany\nGracie\nJulie\nEllie\nJillian\nCheyenne\nDana\nGisselle\nKiana\nCristina\nIrene\nAurora\nJaqueline\nLuna\nMonique\nAshlee\nShelby\nFiona\nHazel\nKyra\nAlison\nMadeleine\nAdrianna\nKira\nLindsay\nRuth\nDakota\nMiriam\nArely\nNathalie\nSelena\nCaitlyn\nMargaret\nRaquel\nClaudia\nAnnika\nKyla\nMarilyn\nAthena\nPayton\nJanet\nDelilah\nKailey\nAlice\nCiara\nNatasha\nNina\nAraceli\nDelaney\nHeaven\nKendall\nMonserrat\nBethany\nIvy\nRubi\nYadira\nAllyson\nAlma\nGloria\nSkylar\nTania\nAlissa\nChristine\nLinda\nPhoebe\nBrisa\nCarla\nHope\nTessa\nClara\nDanna\nHayley\nLizeth\nDanica\nIsabela\nLuz\nSiena\nKelsey\nHanna\nPenelope\nCristal\nKrystal\nMelina\nPiper\nValentina\nLydia\nKatelynn\nMaggie\nRose\nYareli\nAnika\nElisa\nMakenna\nMayra\nParis\nAnnie\nEdith\nValery\nBryanna\nDayana\nBrittany\nReagan\nAbby\nEden\nGenevieve\nJudith\nJuliet\nBritney\nJaden\nYaretzi\nYvette\nBelen\nJuliette\nKendra\nPatricia\nEileen\nSamara\nCitlali\nLila\nTatum\nArlene\nJadyn\nKaitlin\nKathleen\nMartha\nTeresa\nCameron\nLana\nSarahi\nStacy\nTalia\nEleanor\nEsther\nKatrina\nMaribel\nMckenna\nReyna\nJanessa\nLisa\nPamela\nIsis\nShayla\nCarly\nDalia\nTara\nAyla\nBrooklynn\nFrancesca\nEvelin\nAnastasia\nAngelique\nGeorgia\nHolly\nRocio\nMichaela\nRoselyn\nAniyah\nRebekah\nCamryn\nHaylee\nIngrid\nLilian\nNathalia\nNathaly\nSonia\nAdilene\nEmilia\nHeather\nIliana\nJayleen\nAmelie\nLorena\nCourtney\nJaylene\nAimee\nBetsy\nCadence\nDaphne\nEsperanza\nHelena\nNia\nPaloma\nTanya\nYazmin\nAbril\nDamaris\nDarlene\nBarbara\nGalilea\nKiera\nMarley\nSusana\nAnya\nAracely\nBridget\nHarmony\nKaelyn\nMercedes\nPresley\nYoselin\nLilliana\nMakenzie\nStephany\nElaine\nEliza\nLesley\nAnnabella\nJacquelyn\nJayda\nKristina\nMckenzie\nRylie\nBlanca\nHaylie\nJazlyn\nMargarita\nPaula\nShannon\nEmilie\nJane\nNoelle\nAlize\nAshlynn\nKaya\nKaylin\nKristen\nBelinda\nKamryn\nLia\nNora\nSage\nTiana\nBerenice\nMaryjane\nDiamond\nMariela\nMikaela\nBethzy\nEmilee\nFabiola\nGia\nCitlaly\nFrida\nLarissa\nRosemary\nSharon\nSimone\nXiomara\nAnaya\nAnnette\nLauryn\nLizette\nMakena\nRoxana\nKamila\nKenia\nJessie\nKara\nKathy\nLeticia\nRebeca\nRegina\nSkyler\nAylin\nJoy\nKarissa\nSalma\nAshly\nEvangeline\nKenya\nLexi\nMaddison\nMayte\nRenee\nSidney\nYahaira\nCatalina\nGiovanna\nLondon\nAllie\nDonna\nFlor\nMila\nYuliana\nAniya\nCarissa\nCasey\nHailee\nSusan\nXochitl\nLea\nLilyana\nLitzy\nAinsley\nAreli\nCarina\nEmerson\nGrecia\nHana\nHayden\nAdamaris\nKaia\nLena\nLiana\nLilianna\nMarisa\nMireya\nAlaina\nJoana\nJosie\nRoxanne\nSelene\nDahlia\nKiley\nMaia\nNoelia\nPrecious\nSkye\nYolanda\nAngeline\nCeline\nCharlize\nJolie\nLexie\nLucero\nLuisa\nLyla\nMacy\nNatalee\nRihanna\nThalia\nDanika\nDenisse\nElisabeth\nJaelyn\nJanice\nMallory\nMeghan\nTeagan\nAnabelle\nArleth\nHeidy\nJohana\nKassidy\nRachael\nSandy\nSheyla\nYuridia\nAnabel\nAria\nAsia\nJulieta\nMarie\nYadhira\nYamilet\nYaretzy\nAleena\nAlena\nAmara\nAubree\nBetzy\nDominique\nMadyson\nScarlet\nTaryn\nVirginia\nAlanna\nElle\nGraciela\nIsabell\nJackeline\nMagdalena\nYasmine\nCali\nKailyn\nSavanah\nAlyson\nBeatriz\nCarol\nDylan\nEstefani\nEstefania\nGina\nJustine\nYaritza\nAdeline\nArielle\nDeanna\nJoyce\nKayleen\nNatalya\nStacey\nSylvia\nYajaira\nAlisha\nEllen\nKeyla\nKristin\nMarianna\nMarlen\nRyan\nVioleta\nCelia\nEstefany\nKasey\nMontserrat\nSilvia\nAisha\nAnne\nCamilla\nEve\nGladys\nMiah\nSariah\nYarely\nYulissa\nArabella\nImani\nJaiden\nJoselin\nKeila\nLina\nAnais\nCarolyn\nGiana\nKaila\nKatia\nLuciana\nMelinda\nRiya\nTabitha\nTheresa\nTyler\nBrielle\nCharlene\nHarper\nLeyla\nMadalyn\nMariam\nReina\nAlani\nAlayna\nBrittney\nChanel\nDania\nGizelle\nIvanna\nJaquelin\nJazmyn\nJenifer\nKaitlynn\nKianna\nMandy\nNatali\nNikki\nRyleigh\nTiara\nXitlali\nAiyana\nAlisa\nAnnalise\nAryanna\nAzucena\nBrenna\nCallie\nDianna\nElyse\nFelicity\nKaydence\nMadisyn\nPriscila\nSoraya\nBaylee\nCelina\nDesteny\nGissel\nIvette\nKailee\nLeanna\nLilia\nLogan\nNyla\nSuri\nElaina\nGwendolyn\nJaidyn\nJocelynn\nKasandra\nMaricela\nPrincess\nRosalinda\nYvonne\nAngeles\nBriseida\nCara\nCienna\nDalila\nDiane\nEricka\nMicaela\nSelina\nShirley\nZara\nCherish\nDestinee\nGisele\nHilary\nKayleigh\nKayley\nMaryam\nRyann\nShreya\nVanesa\nXitlaly\nZaira\nArlette\nDeborah\nHillary\nIsela\nJoseline\nKaiya\nKimora\nKirsten\nLara\nMadilyn\nParker\nRoxanna\nAnabella\nAnissa\nAryana\nJaylin\nJolene\nJulianne\nLidia\nMina\nAdamari\nAdelina\nAlexsandra\nAyanna\nElissa\nGriselda\nJaneth\nKali\nKrista\nMeredith\nOdalis\nQuinn\nAlia\nAlivia\nAmaris\nAubrie\nBeatrice\nBrandy\nDeja\nElsa\nEunice\nEvangelina\nJackelyn\nKarol\nLeia\nLupita\nMaile\nMelisa\nNelly\nRaylene\nSheila\nUnique\nAnjali\nCora\nCoral\nFrances\nIlene\nIvonne\nKailani\nTori\nViridiana\nAnneliese\nBryana\nElianna\nGillian\nJanette\nKristine\nLourdes\nMadelynn\nMaite\nShyanne\nYessenia\nAyleen\nBreana\nBrigitte\nCierra\nJiselle\nKaylyn\nKaylynn\nMariyah\nNaima\nNoelani\nNorma\nVianey\nWillow\nYamileth\nAliya\nBrynn\nCasandra\nDevyn\nGeorgina\nJeanette\nJocelin\nJuana\nKalia\nKayden\nKaylah\nLiberty\nLluvia\nLucille\nMacie\nMalaya\nMaliyah\nMelia\nNadine\nRenata\nSelah\nAmira\nAnanya\nAni\nDalilah\nDesirae\nJacklyn\nKaylen\nMira\nNallely\nNichole\nSaray\nTess\nVivianna\nAliza\nAnnabel\nBridgette\nBriseyda\nCecelia\nColette\nHarley\nJaelynn\nKadence\nKalea\nKaryme\nLeilany\nLillie\nMarcela\nShayna\nSkyla\nTamara\nVianney\nAda\nAliana\nAnita\nAstrid\nCielo\nDiya\nHallie\nJosselyn\nKaley\nKristy\nKyleigh\nLacey\nMyah\nRaven\nRita\nRosario\nSky\nTianna\nYaneli\nAmalia\nAriadna\nCandice\nCharlie\nCheyanne\nLeyna\nLizet\nMilan\nNorah\nPearl\nRianna\nSahara\nSaniya\nTatyana\nTina\nTrisha\nAspen\nClare\nHailie\nJaylynn\nKaili\nKarime\nKeilani\nKeren\nLilah\nMarcella\nMckayla\nMelani\nMiracle\nNicolette\nRachelle\nRosie\nRowan\nSoleil\nTracy\nAlexus\nAmani\nElsie\nGemma\nIzabelle\nJessenia\nKatarina\nLisette\nLorelei\nMarisela\nMika\nRegan\nRhea\nRhiannon\nSally\nSamira\nToni\nWhitney\nAbbie\nAmya\nAntonia\nDeisy\nElina\nEstella\nGiuliana\nHennessy\nJaclyn\nJanae\nMaleah\nMarian\nNoa\nStar\nStevie\nVianca\nYessica\nZoie\nAliah\nAnn\nBeverly\nDestiney\nElyssa\nFranchesca\nJaida\nJaylyn\nJazlynn\nJewel\nJoelle\nKirra\nLaurel\nLeilah\nLillianna\nLillyana\nLyric\nMacey\nMagaly\nMarbella\nMyla\nPhoenix\nPriya\nRaegan\nSaira\nStefanie\nTatianna\nAdela\nAdrienne\nAnalisa\nAshleigh\nAyana\nCandy\nCassie\nChantal\nCianna\nGisel\nGwen\nHaven\nJacquelin\nKaela\nKalani\nKaris\nKarly\nLaisha\nLianna\nLiz\nMalina\nMeadow\nNoor\nRhianna\nSerina\nShania\nShyla\nVicky\nAhtziri\nAmari\nAmia\nAnalise\nAnisa\nAnnalisa\nCarley\nChiara\nDarla\nDayanna\nDevon\nDrew\nItalia\nJoanne\nJocelyne\nJulisa\nJune\nKacey\nKeely\nLesli\nLilyanna\nMakaila\nMara\nMilagros\nMilena\nMillie\nMiya\nMyra\nNayely\nOlga\nPatience\nSanaa\nSarina\nShea\nSonya\nZuleyka\nAlexi\nAundrea\nCayla\nChristy\nDelia\nEma\nGeraldine\nGreta\nGwyneth\nIrma\nJaylah\nJustice\nKlarissa\nLaney\nMarlee\nMatilda\nMicah\nNeha\nNola\nRoxy\nYoselyn\nZainab\nAbbigail\nAilyn\nAleah\nAlyna\nAmiyah\nAnai\nAriella\nArleen\nAvalon\nAverie\nAzul\nBritany\nCalista\nCitlalli\nDayna\nDevin\nEbony\nElliana\nHilda\nJaquelyn\nJasleen\nJasmyn\nJenelle\nJoslyn\nKaty\nLynette\nMari\nPricilla\nRia\nTaliyah\nTyra\nAlly\nAlysa\nAmina\nAnessa\nAsha\nCinthia\nCorina\nDafne\nEloise\nEmery\nFelicia\nIsla\nJazelle\nJoceline\nKaliyah\nKarolina\nKaylani\nKenzie\nKiersten\nLeanne\nLoren\nMagali\nMaiya\nMariel\nMirian\nShaylee\nTamia\nYara\nYoseline\nAbbey\nAbigayle\nAbygail\nAida\nAnahy\nBonnie\nCailyn\nCharity\nEvelynn\nGiada\nHalle\nIreland\nJaretzy\nJennyfer\nJianna\nKalina\nKatharine\nKayli\nKeily\nLaci\nMalena\nMeagan\nMiley\nMisty\nNadya\nNya\nRayna\nSydnie\nTayler\nYocelin\nYsabella\nAlannah\nAlex\nAlexys\nAllyssa\nAmerie\nAnushka\nAya\nCambria\nCharley\nCorinne\nEmmy\nGisela\nIvana\nJailyn\nLainey\nLorelai\nMadalynn\nMaryann\nMichell\nMilana\nMischa\nNalani\nNaomy\nNeveah\nRaina\nSabina\nSanjana\nSimran\nYasmeen\nYulisa\nZahara\nAbbygail\nAdelaide\nAlianna\nAniah\nAnnmarie\nAshely\nBailee\nBelle\nBertha\nBryce\nCarlee\nCharlee\nCharli\nCinthya\nDayra\nDennise\nElana\nEmmalee\nEvie\nJaime\nJaycee\nJosefina\nKaelynn\nLeann\nMarin\nMilla\nPauline\nPilar\nRomina\nSabine\nSaige\nSanai\nShaila\nSherlin\nSunny\nSydnee\nTammy\nZayra\nZion\nAbigale\nAddyson\nAilani\nAlanis\nAlisson\nAmarie\nAnisha\nAnnelise\nAtiana\nBeyonce\nBrandi\nCailin\nCloe\nDariana\nDavina\nDolores\nDulcemaria\nHadley\nHaily\nHaydee\nIyana\nIzabel\nJalissa\nJana\nJaylen\nKamora\nKaterina\nLisbeth\nMaylin\nMindy\nNyah\nPaisley\nReece\nRobyn\nRosalyn\nSana\nScarlette\nShiloh\nTia\nWinter\nAmie\nAnnamarie\nBernice\nBianka\nBree\nBrissa\nChristiana\nCiana\nConstance\nDorothy\nEllery\nEmi\nGinger\nIndia\nIzel\nJaeda\nKarely\nKatheryn\nKhloe\nLaylah\nLeena\nLillyanna\nLynn\nMadisen\nMaren\nMonserrath\nNayelli\nOdalys\nRena\nRiver\nRosalie\nSaanvi\nSahana\nSavana\nTanvi\nVivienne\nXochilt\nAbagail\nAbrianna\nAlyza\nAmirah\nAmiya\nAnnaliese\nArden\nArmani\nArya\nBerlin\nCandace\nCathy\nColleen\nDebbie\nEdna\nEssence\nFarrah\nFrankie\nGeneva\nGisell\nIrie\nIsha\nJaedyn\nJaya\nJazzlyn\nJenessa\nJennie\nJeslyn\nKai\nKaleigh\nKalena\nKamari\nKarlee\nKarlie\nKaycee\nKierra\nKyara\nLondyn\nMarleen\nMarlyn\nMaryah\nMichele\nRory\nSania\nSaniyah\nShaina\nSharlene\nSoledad\nSuzette\nTrina\nVida\nYazmine\nYulianna\nYuri\nZuri\nAanya\nAlba\nAshanti\nAurelia\nBriseis\nCiera\nDallas\nDanae\nDelanie\nElva\nEmerald\nHeavenly\nInez\nJackie\nJanell\nJanelly\nJaymie\nJazmyne\nJourney\nKairi\nKarma\nKatalina\nKatya\nKayle\nKelsie\nLinnea\nLissette\nLizbet\nLois\nLorraine\nMabel\nMaci\nMaliah\nMargot\nMarlena\nMartina\nMelannie\nMilani\nMona\nMoriah\nNailea\nNaya\nNikita\nNylah\nOsiris\nRamona\nRian\nRobin\nRosemarie\nRylan\nSamanta\nSayuri\nSinai\nValarie\nVania\nVivien\nZariah\nAddisyn\nAditi\nAlexandrea\nAnamaria\nAnnabell\nAnusha\nAranza\nAzalea\nBrianne\nCarrie\nChanelle\nChantel\nConnie\nConsuelo\nDaira\nDeysi\nDora\nElia\nFallon\nIleana\nIman\nIvory\nJaimie\nJeanelle\nJessalyn\nJizelle\nJuanita\nKalie\nKamilah\nKenna\nKristal\nLela\nLeslye\nLessly\nLiyah\nLori\nMakaylah\nMonika\nNala\nNohemi\nOfelia\nSaleen\nSarahy\nSequoia\nShyann\nVerenice\nYana\nZahra\nAdison\nAiden\nAlora\nAmaiya\nAnayeli\nAnette\nAnia\nCarlie\nChase\nChelsey\nDarcy\nDemi\nDivya\nElly\nElvia\nElvira\nEmelyn\nEstela\nHalie\nJaela\nJaniyah\nJaylee\nJayna\nJoey\nJoselyne\nJovanna\nJoycelyn\nKarli\nKatelin\nKeara\nKellie\nKendal\nKeona\nKim\nLili\nLinette\nMadelyne\nMae\nMalaysia\nMelania\nMeleny\nMichel\nMiyah\nNailah\nNeida\nPetra\nRebeka\nSamaria\nSayra\nShelly\nSherry\nSianna\nTahlia\nTaya\nTea\nAcacia\nAdrianne\nAdrina\nAnaliese\nAriah\nArianne\nAriela\nAris\nArlyn\nAudrina\nAviana\nBraelyn\nBreanne\nBriza\nBrook\nCarmela\nCarys\nChaya\nClarisa\nCoco\nDina\nDior\nEleni\nEmber\nEmelia\nEvalyn\nHellen\nHolland\nHonesty\nHoney\nHunter\nJaniah\nJaniya\nJarely\nJasmyne\nJayme\nJesse\nJudy\nJulyssa\nKacie\nKeala\nKiarra\nKimberli\nLilith\nLiv\nMadilynn\nMalaika\nMariafernanda\nMarianne\nMarlie\nMaxine\nMercy\nMylee\nNika\nNuvia\nOlive\nRosalia\nSelma\nShivani\nShriya\nSofie\nSunshine\nTallulah\nTegan\nVienna\nYanet\nYaquelin\nZaniyah\nZaria\nAixa\nAja\nAli\nAlyse\nAmairani\nAnali\nAnaly\nAnastacia\nAngelie\nAnja\nAnnemarie\nArwen\nCampbell\nCaydence\nChristian\nDelila\nDesire\nDianne\nElisha\nFarah\nFinley\nFlora\nHaleigh\nIla\nIxchel\nJalynn\nJamila\nJayde\nJodie\nJoie\nKarisma\nKeana\nKeilah\nKinsey\nKylah\nLaylani\nLeela\nLeilanie\nLisset\nLouisa\nLucinda\nMakaela\nMaricarmen\nMaricruz\nMayah\nMelony\nMikaila\nMollie\nMorelia\nMylie\nNoel\nPricila\nPrisha\nQuincy\nRaya\nRilee\nRomy\nSamya\nSeanna\nShakira\nSirena\nSiya\nStefany\nThea\nTrista\nTristan\nYesica\nYocelyn\nZulema\nAiyanna\nAkira\nAlanah\nAline\nAllegra\nAlona\nAlyah\nAmeerah\nAmethyst\nAnaiya\nAnalicia\nAneesa\nAngelika\nAnyssa\nArushi\nAubrianna\nAura\nAyah\nBernadette\nBetsabe\nBetzaida\nBryn\nCatelyn\nCharis\nChelsie\nChrista\nChristal\nDani\nDaria\nEesha\nElliot\nEmalee\nEmani\nEmelin\nGenessis\nGracelyn\nHarleen\nIdaly\nImelda\nImogen\nInes\nJacey\nJalyn\nJorja\nJosslyn\nJustina\nKalyn\nKameron\nKaylei\nKennedi\nKimberley\nKristie\nLacie\nLani\nLeandra\nLexy\nLucie\nLylah\nMai\nMariajose\nMarlin\nMarta\nMildred\nMisha\nNidhi\nNoemy\nPrisila\nRio\nSawyer\nShae\nSol\nSuzanna\nTayla\nTeresita\nTierra\nTiffani\nVera\nVeronika\nYael\nYamile\nYelena\nYoana\nAaralyn\nAarushi\nAdina\nAidan\nAislinn\nAlessa\nAlycia\nAmberly\nAnahit\nAnaiyah\nAngelita\nAnnalyse\nAntoinette\nAriya\nArlin\nAyesha\nAyva\nBibiana\nBrianda\nBrigette\nCailey\nCaren\nCayden\nCaylee\nCitlally\nCordelia\nDejah\nEla\nElayna\nElora\nEsha\nEster\nEvalynn\nEvette\nFaviola\nGissell\nHelene\nIrlanda\nIsamar\nJahaira\nJaliyah\nJanel\nJanie\nJaymee\nJeniffer\nJill\nJolette\nKaden\nKailah\nKaily\nKaira\nKareena\nKelis\nKimberlyn\nLailah\nLeeann\nLexus\nLivia\nMaeve\nMalak\nMariaguadalupe\nMarielle\nMiabella\nMirna\nMoira\nMonet\nMontana\nNaia\nNaiya\nNellie\nNereida\nNova\nPayten\nRain\nRayven\nReilly\nRhiana\nRochelle\nRyley\nSamarah\nSamaya\nSamia\nSamiyah\nSariyah\nShantal\nShianne\nSia\nSiara\nStarr\nStefani\nSusanna\nSydni\nTanisha\nTerra\nUma\nVianna\nViola\nViolette\nWilla\nYeimi\nZora\nAdrian\nAlexzandra\nAlysha\nAlysia\nAlyssia\nAmmy\nAnaid\nAnel\nArissa\nAriyah\nArriana\nAshlie\nAudra\nAveri\nAvril\nCaleigh\nCameryn\nCharisma\nCheryl\nChrystal\nClementine\nDara\nDarlyn\nDasia\nDestany\nDestini\nDezirae\nEloisa\nEmelie\nEsme\nEvany\nFaye\nFiorella\nFlorence\nFrancis\nFreya\nGema\nGlenda\nGuinevere\nHarmonie\nIlana\nIzabell\nJackelin\nJadah\nJadelyn\nJamileth\nJanna\nJaslyn\nJazlin\nJennah\nJersey\nJhoana\nJoann\nJoscelyn\nJovana\nKalista\nKallie\nKarley\nKaterin\nKathrine\nKavya\nKaydee\nKloe\nLeonor\nMaira\nMaliya\nMarjorie\nMason\nMaura\nMeah\nMelodie\nMelonie\nMerari\nMerissa\nMinerva\nNadiya\nNaila\nNautica\nNaydelin\nNereyda\nNitya\nOriana\nPriyanka\nRaelyn\nRayleen\nRayne\nReanna\nRemi\nSalina\nSamiya\nShana\nShawna\nSusie\nSymone\nTaniya\nTeya\nTherese\nTreasure\nVarsha\nYanira\nYaretsi\nYatziri\nYisel\nYuna\nYuritzi\nAdamary\nAdyson\nAidee\nAkayla\nAlaya\nAlayah\nAlaysia\nAlyanna\nAmiah\nAmyah\nAndie\nAngelia\nAngely\nAtianna\nAudrianna\nAudrie\nAvah\nBecky\nBetsaida\nBetty\nBlythe\nCaden\nCaelyn\nCaitlynn\nCamden\nCecily\nCiarra\nCorrina\nDanitza\nDanya\nDarby\nDarleen\nDarya\nDebra\nDyana\nElda\nElexa\nElysia\nEmmie\nFrancine\nGenevie\nGladis\nGracey\nGretchen\nGwenyth\nHayleigh\nHermione\nIlliana\nIsadora\nItaly\nJaydin\nJena\nJenesis\nJenica\nJesica\nJezebel\nJohannah\nJordynn\nJose\nJosselin\nKaileen\nKambria\nKarena\nKatherin\nKathia\nKaylan\nKelley\nKelli\nKiya\nKori\nKyndra\nLaniya\nLeona\nLeylani\nLiza\nLouise\nLovely\nLuzmaria\nLyndsey\nMaegan\nMariella\nMarwa\nMay\nMeghana\nMei\nMelanny\nMikaylah\nMiliani\nNeela\nNyomi\nOcean\nPearla\nPreslee\nRachell\nRaelynn\nRania\nRemy\nRhyan\nRosalba\nSachi\nSakura\nSalem\nShaniya\nShanna\nShira\nSloane\nSonja\nStarla\nSuraya\nTalya\nTamar\nTaniyah\nVanity\nYenifer\nYsabel\nZariyah\nZoya\nAbriana\nAdamariz\nAdelynn\nAdylene\nAilin\nAiram\nAleesha\nAleyda\nAleyna\nAlijah\nAlyssamarie\nAmaia\nAmi\nAnayah\nAnela\nAniela\nAnkita\nAnnalie\nAnoushka\nAolani\nAraya\nArieanna\nArlet\nAsma\nAubry\nAudree\nAugust\nAylen\nAzariah\nBillie\nBria\nBrookelyn\nCelene\nChevelle\nClarice\nDaiana\nDarlin\nDasha\nDestinie\nDonya\nEmalie\nEmeli\nEmiko\nEmiliana\nEmmely\nEriana\nEsbeidy\nEstrellita\nEvelina\nFrancheska\nFrancisca\nGenavieve\nGiavanna\nGisella\nGissele\nGrayson\nGurleen\nIleen\nIlianna\nIshika\nItzia\nJamya\nJanett\nJanine\nJayline\nJeannette\nJennessa\nJenni\nJubilee\nJulian\nJulietta\nKaelin\nKalissa\nKaterine\nKathya\nKattie\nKaylene\nKemberly\nKeyra\nKiyomi\nLacy\nLeana\nLeidy\nLilibeth\nLilit\nLynda\nMaisie\nMakyla\nMarcia\nMariaelena\nMatilde\nMattea\nMattie\nMercedez\nMidori\nMilly\nMirella\nMyriam\nNaidelyn\nNicolle\nNidia\nNinel\nNubia\nOpal\nPaulette\nPenny\nPersephone\nPia\nRiana\nRoberta\nRoshni\nRosselyn\nSaba\nSade\nSanya\nSaraya\nSavina\nSaylor\nScout\nShanti\nSharlyn\nShylah\nSkylee\nSneha\nStacie\nTatiyana\nThania\nTrinidad\nTristen\nWendi\nYahira\nYamila\nZadie\nZaida\nZitlaly\nZofia\nZury\nAaliah\nAbbigale\nAbrielle\nAdria\nAlea\nAleksandra\nAlessia\nAlexcia\nAlitzel\nAlliyah\nAllysa\nAlyana\nAlyvia\nAmariah\nAmayah\nAmayrani\nAmbar\nAnalia\nAndria\nAngelyn\nAnjelica\nAnnalicia\nApple\nArisbeth\nArlett\nAshanty\nAudriana\nAvianna\nAvneet\nAyden\nBeth\nBethanie\nBobbi\nBriannah\nBrigit\nBrinley\nBronwyn\nBrooklynne\nCallia\nCaprice\nCarli\nCarter\nChantelle\nCharlise\nChasity\nChelsy\nCiena\nCleo\nDailyn\nDawn\nDeena\nDesiray\nDevan\nDevine\nDeyanira\nDeziree\nDiego\nDivine\nDomonique\nElektra\nElinor\nElizabet\nElsy\nEmaly\nEmili\nEmme\nEmmily\nEnya\nEstelle\nEstephanie\nEternity\nEveny\nEvony\nGabby\nIlse\nIndira\nIrais\nIsaura\nIyanna\nJael\nJakelyn\nJareli\nJaretzi\nJeanna\nJesenia\nJessa\nJessi\nJulieana\nJulieanna\nJulliana\nKaida\nKailin\nKailynn\nKamilla\nKamille\nKamya\nKari\nKaroline\nKeiry\nKelsy\nKhalia\nKirstin\nKourtney\nKya\nKyley\nLanae\nLarkin\nLayan\nLezly\nLibby\nLizzet\nLoretta\nMagnolia\nMariya\nMarla\nMarylin\nMarylou\nMaylene\nMckinley\nMeztli\nMihika\nMinna\nMylah\nNanami\nNayla\nNiki\nNikole\nNour\nPromise\nQuetzalli\nRori\nRosy\nRoxie\nSalome\nSammantha\nSela\nSeneca\nSera\nSerene\nShani\nShaya\nShelsy\nShruti\nSicily\nSolana\nStephania\nTaleah\nTaliah\nTalyn\nTristyn\nVaishnavi\nValencia\nVallerie\nViktoria\nWinnie\nXenia\nXitlalic\nYosselin\nYuriana\nZahira\nZelda\nZuleyma\nAalyah\nAdalyn\nAdelaida\nAdele\nAdelle\nAeris\nAgnes\nAila\nAkeelah\nAkemi\nAlexie\nAlise\nAlix\nAlizabeth\nAly\nAlyce\nAmeena\nAnabell\nAnaiah\nAnalee\nAnaliz\nAnay\nAngelena\nAnnalee\nAshton\nAubriana\nAyari\nAyiana\nAylene\nAzaria\nBaleria\nBeautiful\nBetzabeth\nBianey\nBreeana\nBriceida\nBriley\nBrithany\nBrylee\nCady\nCaidence\nCarleigh\nCarson\nCaterina\nCelest\nChayse\nCosette\nDarianna\nDasani\nDayan\nDelylah\nDena\nElicia\nEllianna\nEllison\nElyanna\nEmerie\nEmmalyn\nEvalina\nFanny\nFlorencia\nGlory\nGracelynn\nGracy\nHadassah\nHarnoor\nHavana\nHollie\nIanna\nIdalia\nItzayana\nJacinda\nJahzara\nJailynn\nJannet\nJannette\nJaydah\nJemma\nJia\nJiya\nJodi\nJoleen\nJolina\nJordana\nJosefine\nJulieann\nKalee\nKaniya\nKarah\nKatheryne\nKatlyn\nKatlynn\nKaytlin\nKendyl\nKennya\nKhushi\nKiela\nKiely\nKilee\nKiyah\nKlara\nKyah\nKyndall\nLaina\nLaniyah\nLarisa\nLaryssa\nLavender\nLeonela\nLinsey\nLisseth\nLizzette\nLucianna\nLyanna\nLyna\nMackenna\nMadysen\nMakenzi\nMakiah\nManuela\nMaraya\nMarilin\nMarilu\nMarleni\nMarysol\nMaureen\nMeena\nMeilani\nMelinna\nMetzli\nMichael\nMikala\nMitzi\nMonserat\nNatally\nNavya\nNayomi\nNeva\nNhi\nNiah\nNisha\nNiya\nNoah\nNohelia\nNyssa\nOceana\nPersia\nPolina\nRacheal\nRaelene\nRandi\nRaniyah\nRayann\nRilynn\nRina\nRyanne\nRylin\nSafa\nSahasra\nSailor\nSanaiya\nSapphire\nSarena\nSeleste\nSerafina\nSerinity\nShaelyn\nShanice\nShantel\nShay\nShayne\nSheccid\nSilvana\nSindy\nSofiya\nSruthi\nSujey\nSury\nSuzanne\nSymphony\nSyriana\nTiare\nVannesa\nVanya\nVivianne\nYanely\nYarethzy\nYunuen\nZarela\nZayda\nZenaida\nZinnia\nZitlali\nZoee\nZyanya\nAanika\nAaniyah\nAbella\nAbilene\nAdah\nAdia\nAdora\nAeryn\nAgatha\nAidyn\nAiko\nAileth\nAishwarya\nAkasha\nAkilah\nAleeza\nAlexxa\nAlin\nAllana\nAlynna\nAmeera\nAminah\nAmrita\nAnalyssa\nAndi\nAndra\nAnh\nAnicia\nAnnaly\nAntonella\nAnvi\nAralyn\nArgelia\nAri\nArial\nAshlin\nAshna\nAtalia\nAthalia\nAthziri\nAthziry\nAtziry\nAvani\nAvary\nAvigail\nAviva\nAysia\nBethsy\nBetzi\nBrea\nBriceyda\nBridgett\nBrookelynn\nCaelan\nCaliana\nCalifornia\nCalla\nCalli\nCayley\nCaylin\nChance\nCharly\nCintia\nClaira\nClarisse\nCloey\nClover\nCorinna\nDahlila\nDaisha\nDalyla\nDamariz\nDamiana\nDaysi\nDelany\nDenice\nDivina\nDixie\nDream\nDymond\nDynasty\nElida\nEliyah\nEllis\nEmeline\nEmersyn\nEmmeline\nEmoni\nErandi\nEryn\nEsabella\nEvanie\nFatimah\nFayth\nGianni\nGimena\nGiulia\nHafsa\nHanah\nHanan\nHannia\nHarini\nHayli\nHeydi\nHimani\nIda\nIlona\nIndigo\nIsa\nJackelyne\nJacklynn\nJaila\nJailene\nJalyssa\nJanai\nJanay\nJanaya\nJanely\nJaniece\nJanya\nJayce\nJaydyn\nJayne\nJeanne\nJesslyn\nJesus\nJordin\nJosephina\nKaci\nKadance\nKadynce\nKaeli\nKaleah\nKaleia\nKalli\nKamara\nKamea\nKaori\nKarizma\nKaylea\nKeanna\nKeeley\nKeilana\nKelsea\nKendell\nKhadija\nKiah\nKitzia\nKrystina\nKyrah\nKyrie\nLaine\nLamya\nLanie\nLesslie\nLevi\nLillyann\nLillyanne\nLindsy\nLindy\nLiset\nLizzeth\nLizzie\nLoraine\nLuella\nMadden\nMadisson\nMakailah\nMakala\nMalana\nMalani\nMannat\nMaranda\nMarayah\nMargo\nMarializ\nMarlenne\nMatea\nMaycie\nMelane\nMelenie\nMelyssa\nMemphis\nMerary\nMicayla\nMuskaan\nMykah\nMykayla\nNahomy\nNakayla\nNanci\nNandini\nNelida\nNeyda\nNicollette\nNoely\nOdaliz\nOdette\nPassion\nPoppy\nPortia\nPrisilla\nRayana\nRayanna\nRenae\nReya\nRikki\nRileigh\nRishika\nRoni\nRosalina\nRosamaria\nRoselin\nRylynn\nSaniah\nSanika\nSanyah\nSedona\nSeidy\nSeraphina\nShannen\nSiomara\nSloan\nSonali\nStefania\nTalitha\nTanaya\nTaytum\nTenaya\nTiffanie\nTracey\nTriana\nTriniti\nTristin\nTru\nTyla\nVannessa\nVenessa\nVenezia\nVenice\nVenus\nVina\nWren\nYareni\nYaretsy\nYelitza\nYeraldin\nYsabelle\nYuliza\nZamara\nZaniya\nZarah\nZaryah\nAadya\nAaliya\nAdalia\nAdella\nAdisyn\nAfrica\nAfton\nAiled\nAlasia\nAlaura\nAleesa\nAleeya\nAleksa\nAlexsa\nAlexzandria\nAleyah\nAliyana\nAlli\nAllissa\nAlonna\nAlyiah\nAlyn\nAlyne\nAlysse\nAmisha\nAmora\nAnalucia\nAnamarie\nAngelyna\nAnneka\nAnnissa\nAnny\nAntonette\nAnyah\nAnyla\nArayah\nAries\nAriyana\nAryssa\nAshlei\nAtziri\nAudry\nAusten\nAvalyn\nAvamarie\nAvelina\nAyelen\nAzari\nBaylie\nBeatrix\nBennett\nBerlyn\nBethzi\nBetzabe\nBlake\nBriauna\nBrooklin\nBryan\nByanca\nCallista\nCarmella\nCaylie\nCelestina\nCesia\nChana\nChandler\nChannel\nCharleen\nChayla\nChristie\nConcepcion\nCristy\nCruz\nCzarina\nDaizy\nDaylin\nDaysha\nDeana\nDeandra\nDebora\nDella\nDorian\nDoris\nDyani\nDyanna\nEbelin\nEdie\nElin\nElizah\nElliott\nEmireth\nEmmalynn\nEmmanuelle\nEmmerson\nEmonie\nErandy\nEugenia\nGardenia\nGelsey\nGena\nGenisis\nGracen\nGricelda\nHaidy\nHalley\nHaruka\nHayle\nHeavyn\nImari\nInara\nInaya\nIndiana\nIona\nIrina\nIsobel\nIssabella\nItati\nIvie\nIvon\nJacquelyne\nJaide\nJakayla\nJami\nJamilet\nJania\nJannah\nJanneth\nJasmen\nJaylean\nJazel\nJazzelle\nJean\nJeanine\nJeannie\nJeimy\nJissel\nJisselle\nJoan\nJocelynne\nJolee\nJolin\nJonathan\nJosilyn\nJude\nJules\nKaiden\nKaithlyn\nKalaya\nKaliya\nKameryn\nKamiah\nKarin\nKarishma\nKarmen\nKassie\nKatlin\nKatty\nKay\nKayci\nKaydance\nKaylana\nKayra\nKaytlyn\nKeilly\nKelsi\nKeri\nKeyanna\nKiarah\nKimberlee\nKimberlin\nKinley\nKiran\nKitana\nKloie\nKomal\nKora\nKoral\nKrisha\nKristi\nKyana\nLael\nLailani\nLaniah\nLaylonie\nLaysha\nLeiah\nLeigha\nLiah\nLilee\nLinh\nLiora\nLiya\nLorna\nLuana\nLuci\nLulu\nLynna\nLyra\nMackenzy\nMadai\nMadelaine\nMahalia\nMaja\nMalayah\nMalea\nMaleena\nMaleia\nMalinda\nMargaux\nMarialuisa\nMarielena\nMarion\nMaritsa\nMarleigh\nMarlowe\nMaryana\nMaryn\nMayrin\nMazzy\nMckinzie\nMea\nMeaghan\nMedha\nMeera\nMegha\nMegumi\nMeher\nMelanye\nMeya\nMicaiah\nMickayla\nMiki\nMilagro\nMileena\nMimi\nMoana\nMyka\nMyranda\nMyrna\nNaibe\nNariah\nNathali\nNava\nNaylea\nNaylene\nNeve\nNiharika\nNila\nNirvana\nNuria\nOdessa\nPatrice\nPooja\nQuinlan\nRana\nRashelle\nReema\nRheanna\nRichelle\nRida\nRitika\nRoselynn\nRubie\nSadaf\nSafia\nSahar\nSamirah\nSareena\nSari\nSariya\nSaydee\nShanelle\nShanya\nShauna\nShaye\nShealyn\nSheily\nSheridan\nSheryl\nShruthi\nSkyy\nSolei\nSonora\nSophya\nSriya\nSteffany\nSterling\nStormy\nSuhey\nSylvie\nSynthia\nTabatha\nTala\nTasia\nTasneem\nTehya\nTesla\nTula\nTyrah\nVada\nVanna\nVerena\nVilma\nVioletta\nVivica\nYajayra\nYamilett\nYarethzi\nYarexi\nYecenia\nYuritzy\nYusra\nZaniah\nZaynab\nZena\nZia\nZipporah\nZola\nZurisadai\nAarya\nAashna\nAdara\nAgustina\nAide\nAilene\nAisling\nAislyn\nAjah\nAlahna\nAlanie\nAleen\nAleida\nAleiyah\nAlexah\nAlinah\nAlisi\nAlisia\nAlissandra\nAlizae\nAllyn\nAlysson\nAmeya\nAmrit\nAnakaren\nAnalyse\nAnanda\nAnasophia\nAndreya\nAngelee\nAngelene\nAngelisa\nAnjani\nAnnalynn\nAnnastasia\nAnyia\nAparna\nAraseli\nAriadne\nArin\nArionna\nAriyanna\nArizbeth\nArshia\nAryam\nAshli\nAshlynne\nAshtyn\nAsiya\nAthina\nAubreyana\nAustin\nAyline\nAzalia\nBela\nBelicia\nBerenize\nBerkley\nBhavya\nBiridiana\nBlair\nBlossom\nBobbie\nBreann\nBriahna\nBrieanna\nBrizeida\nCailee\nCalia\nCalissa\nCalliope\nCamdyn\nCameran\nCami\nCandelaria\nCarmina\nCate\nCathryn\nCatrina\nCayleigh\nCelena\nCharisse\nCharmaine\nChastity\nCherry\nChisom\nChloee\nChristin\nChristopher\nChyanne\nClair\nClaribel\nCloie\nConstanza\nCori\nCorynn\nCyan\nDagny\nDajah\nDallana\nDannia\nDannika\nDanyelle\nDarian\nDarina\nDaviana\nDaysy\nDejanae\nDelainey\nDelmy\nDelyla\nDenali\nDenia\nDenisha\nDeserie\nDevina\nDezerae\nDhalia\nDisha\nElani\nEleana\nEli\nElie\nEly\nElyana\nElysa\nEman\nEmillie\nEmilly\nEmilyn\nEmmaly\nEmmi\nEna\nEnvy\nEsli\nEstephani\nEulalia\nEvelia\nEverly\nEvy\nFabiana\nFrancia\nGabryella\nGaby\nGayathri\nGeena\nGenoveva\nGeovanna\nGetsemani\nGigi\nGizel\nGyselle\nHaidyn\nHaile\nHala\nHali\nHalia\nHaneen\nHarshita\nHattie\nHavanna\nHawa\nHermelinda\nIdania\nIlette\nIna\nIvania\nIveth\nIvey\nIzellah\nJacie\nJackson\nJaclynn\nJacquline\nJadalyn\nJaeden\nJaelah\nJaelene\nJaelin\nJai\nJaileen\nJaimee\nJakeline\nJaleah\nJalen\nJalene\nJalina\nJameson\nJaneli\nJanis\nJaritza\nJaslin\nJaslynn\nJatziri\nJatziry\nJaydee\nJazzmyn\nJeannine\nJenavieve\nJenise\nJennalyn\nJerika\nJessika\nJett\nJewell\nJezabel\nJiana\nJina\nJisel\nJisela\nJohnna\nJohnnie\nJorden\nJosalyn\nJoselynn\nJosette\nJozlyn\nJuniper\nKaavya\nKadie\nKady\nKadyn\nKaeleigh\nKaeley\nKaely\nKaileigh\nKala\nKalei\nKaliah\nKalynn\nKalyssa\nKamaya\nKamiyah\nKana\nKandice\nKarleigh\nKarolyn\nKaryn\nKatelynne\nKatja\nKaytee\nKazandra\nKeili\nKeirra\nKeisha\nKemora\nKerry\nKevin\nKeya\nKeyana\nKezia\nKierstin\nKimiko\nKinberly\nKinsley\nKloey\nKorina\nKristiana\nKriti\nKrysta\nLanna\nLauna\nLaurie\nLayne\nLeeana\nLeeanna\nLeen\nLeiana\nLeonora\nLiani\nLilie\nLilli\nLillith\nLilyann\nLisandra\nLisbet\nLivier\nLove\nLucienne\nLupe\nLuzelena\nLya\nMadaline\nMahala\nMahealani\nMahek\nMahogany\nMailee\nMakiya\nMakya\nMalayna\nMalibu\nMaliha\nMana\nManaia\nManasi\nManon\nMaram\nMarely\nMarguerite\nMaribella\nMarlo\nMaryanne\nMarygrace\nMaryssa\nMatisse\nMattison\nMayela\nMayleen\nMayson\nMeili\nMekayla\nMelanee\nMele\nMellany\nMemory\nMerlyn\nMiana\nMichaella\nMichela\nMikaella\nMikenzie\nMili\nMirabella\nMirabelle\nMirka\nMiroslava\nMonserath\nMonserratt\nMonzerrat\nNadeen\nNaidelin\nNakiya\nNaliyah\nNandi\nNaomie\nNaraly\nNareh\nNashla\nNayah\nNayana\nNayelie\nNaysa\nNely\nNeriah\nNerissa\nNiamh\nNicola\nNikitha\nNiyah\nNoreen\nNoya\nNyima\nNysa\nOctavia\nOdelia\nOona\nOphelia\nOsmara\nPaislee\nPaiton\nPaityn\nPalak\nPhebe\nPreslie\nRacquel\nRaylee\nReanne\nRene\nReva\nRiannah\nRika\nRoma\nRosalind\nRosalva\nRosio\nRoslyn\nRya\nSamari\nSamina\nSanam\nSascha\nSayde\nSeren\nShantell\nSharleen\nShaylin\nShiann\nShirin\nSieanna\nSimar\nSiobhan\nSiona\nSitara\nSora\nSteffani\nSuhani\nSulema\nSumaya\nSumayah\nSusannah\nSvetlana\nSylvana\nTasha\nTeairra\nTeryn\nTierney\nTorrie\nTrinidy\nTrinitee\nTrish\nUrsula\nValeri\nVedika\nVianka\nVielka\nVy\nWynter\nXena\nYamilette\nYamilex\nYanelly\nYaneth\nYaris\nYennifer\nYoanna\nYohana\nZaina\nZania\nZayna\nZenobia\nZina\nZuly\nAalia\nAbbygale\nAbegail\nAdalay\nAdaly\nAdanna\nAdelyn\nAdelyne\nAdreanna\nAdryana\nAhana\nAhriana\nAhtziry\nAilany\nAiri\nAkela\nAkirah\nAkshara\nAkshaya\nAkyra\nAlbina\nAleli\nAlesha\nAlexander\nAlexsis\nAlexza\nAliena\nAlizah\nAlizay\nAllena\nAllisyn\nAllysen\nAlthea\nAlya\nAlyssah\nAlyssandra\nAmada\nAmairany\nAmaiyah\nAmarachi\nAmarah\nAmberlyn\nAmberlynn\nAmery\nAmilia\nAn\nAnagabriela\nAnagha\nAnaiz\nAnaleah\nAnarosa\nAnely\nAngeleen\nAngeliah\nAngelic\nAngelynn\nAniyha\nAnjela\nAnjelina\nAnnaka\nAnnaliz\nAnneke\nAnnel\nAnnica\nAnureet\nAnysa\nAoife\nApryl\nArantza\nArcelia\nArianah\nAriane\nAriani\nArihanna\nArika\nAriona\nArlynn\nArpi\nArrianna\nAryah\nAshland\nAshleen\nAshmita\nAsya\nAubrielle\nAustyn\nAvni\nAyumi\nAzeneth\nAziza\nAzra\nBellarose\nBethani\nBethel\nBetzayda\nBliss\nBo\nBrady\nBrayden\nBrazil\nBreeanna\nBreonna\nBreyana\nBrianny\nBrie\nBrigida\nBrihanna\nBrionna\nBrissia\nBrizeyda\nCadance\nCammie\nCandie\nCarely\nCarlene\nCarlos\nCarmel\nCarolynn\nCayenne\nCera\nChantell\nCheyann\nChidera\nChristen\nChristianna\nCiarah\nCiel\nClaritza\nClariza\nCorrine\nCortney\nCristiana\nCristine\nCydney\nDaija\nDaijah\nDakoda\nDakotah\nDallanara\nDamara\nDamya\nDanah\nDanaly\nDanelle\nDarline\nDayani\nDayannara\nDayjah\nDelayna\nDelina\nDemetria\nDenae\nDenis\nDenyse\nDeserae\nDestenie\nDevika\nDevorah\nDeysy\nDezaray\nDezeray\nDivinity\nDominika\nDorismar\nDrea\nDulcinea\nDyanara\nEimy\nElanie\nElen\nElidia\nElijah\nEllena\nEllia\nEllyana\nElodie\nElonna\nEmelly\nEnedina\nEstefanie\nEstephany\nEstreya\nEtta\nEvan\nEveline\nEvelynne\nEvenny\nEver\nEviana\nFlavia\nGabriel\nGenna\nGiannah\nGiulianna\nGracee\nGraciella\nGracyn\nGuillermina\nGypsy\nHadar\nHaiden\nHalee\nHalina\nHalo\nHan\nHanalei\nHarmoni\nHaya\nHaylen\nHeily\nHelaina\nIlaria\nIleene\nInaaya\nIndra\nIran\nIshani\nIshita\nIssa\nIsyss\nItzelle\nIvett\nIzabela\nJacky\nJacquelynn\nJacy\nJadalynn\nJadin\nJae\nJaidy\nJaina\nJaira\nJaiya\nJakelin\nJalena\nJalia\nJalisa\nJames\nJamia\nJanee\nJanelli\nJannelle\nJannely\nJanvi\nJanyah\nJarethzy\nJaselle\nJasmina\nJaspreet\nJaydenn\nJazleen\nJazmynn\nJazzmin\nJazzmine\nJeidy\nJemimah\nJenice\nJenine\nJennessy\nJenyfer\nJessilyn\nJewels\nJilliana\nJody\nJoline\nJonae\nJordann\nJordanna\nJosalynn\nJoslin\nJoslynn\nJosseline\nJournee\nJovita\nJoya\nJuliann\nJulieanne\nJulieth\nKahlia\nKaidence\nKaidyn\nKailie\nKalayah\nKaliana\nKalin\nKallista\nKamani\nKami\nKandace\nKaryna\nKaryssa\nKatalyna\nKatana\nKathie\nKathrynn\nKatriel\nKaylina\nKealani\nKeiana\nKeiko\nKeilee\nKelani\nKenadie\nKenyah\nKenzy\nKeyli\nKeylin\nKeyonna\nKeysha\nKeziah\nKhaliyah\nKieran\nKiki\nKimani\nKindra\nKiona\nKrishna\nKylei\nKyli\nKymberly\nLaia\nLailoni\nLakshmi\nLanai\nLanaya\nLatoya\nLeala\nLeelah\nLeilana\nLeina\nLelia\nLeni\nLenore\nLeslee\nLexine\nLexis\nLezlie\nLida\nLiliann\nLillia\nLilyanne\nLiseth\nLissa\nLizbett\nLizett\nLorely\nLorin\nLoryn\nLotus\nLucila\nLuiza\nLux\nLynelle\nLynsey\nLysette\nMaayan\nMadalena\nMaddalena\nMaddox\nMadeira\nMadelin\nMadelynne\nMagda\nMagdalene\nMahika\nMaily\nMailyn\nMairyn\nMalissa\nMalorie\nManal\nManasa\nMar\nMarcelina\nMarcy\nMarelyn\nMariadejesus\nMariaisabel\nMarifer\nMarli\nMarrissa\nMaryanna\nMathilda\nMayla\nMaylee\nMayumi\nMckenzi\nMeeya\nMelayna\nMeliza\nMelyna\nMena\nMerlin\nMetztli\nMikah\nMikalah\nMikela\nMiko\nMikyla\nMiraya\nMireille\nMiriah\nMitzy\nMizuki\nMonae\nMoncerrat\nMonzerrath\nMoorea\nMuriel\nMylene\nMyriah\nNada\nNahomi\nNalleli\nNare\nNarissa\nNasya\nNataliah\nNataliya\nNatania\nNathalya\nNayra\nNeftali\nNeli\nNelli\nNena\nNevada\nNevaeha\nNicholette\nNiomi\nNisa\nNishika\nNissi\nNithya\nNoe\nNoeli\nNuha\nNyasia\nNydia\nOlyvia\nPage\nParisa\nParneet\nPercilla\nPhaedra\nPolly\nPranathi\nPreciosa\nPriscella\nQuetzali\nRae\nRaeanna\nRailey\nRaine\nRajdeep\nRamya\nRayanne\nRazan\nRebekka\nReem\nReyanna\nRianne\nRiddhi\nRima\nRona\nRonnie\nRosaline\nRosanna\nRosaura\nRosita\nRossy\nRozlynn\nRuthie\nRyder\nRyland\nSabah\nSacha\nSaida\nSaja\nSamarra\nSamayah\nSammie\nSanah\nSanaia\nSandhya\nSantana\nSaoirse\nSaskia\nSatya\nSebastian\nSecilia\nSelin\nSensi\nSeraphine\nSeriah\nSevilla\nShawnee\nShaylyn\nShellsea\nShelsea\nSherlyne\nSheylin\nShilah\nShilo\nShirel\nSiana\nSierrah\nSimona\nSina\nSiri\nSivan\nSkylynn\nSocorro\nSoha\nSolange\nSolimar\nSonoma\nSophiamarie\nSoren\nSrishti\nStephani\nStephenie\nSuleyma\nSumedha\nSuzan\nSyra\nTabytha\nTaegan\nTaliya\nTalyah\nTaniah\nTatyanna\nTaylin\nTeah\nTeri\nTerri\nThais\nTiera\nTorrey\nTraci\nTracie\nTvisha\nTyanna\nUna\nUriah\nValerya\nValorie\nVeronique\nVicki\nVickie\nYakelin\nYanitza\nYarelly\nYareth\nYarisbel\nYatziry\nYazmeen\nYoali\nYohanna\nYosselyn\nYudith\nYuki\nYuli\nYzabel\nZaara\nZakiah\nZarina\nZeenat\nZeina\nZienna\nZoila\nZuleika\nZuleima\nEmily\nIsabella\nSophia\nAshley\nSamantha\nMia\nNatalie\nEmma\nAlyssa\nElizabeth\nJocelyn\nAva\nAbigail\nKimberly\nMadison\nOlivia\nBrianna\nSofia\nJasmine\nAndrea\nVanessa\nHannah\nChloe\nAlexa\nVictoria\nValeria\nMelanie\nEvelyn\nHailey\nJennifer\nSarah\nAlexis\nJessica\nAngelina\nKayla\nMaria\nStephanie\nGrace\nMichelle\nAlexandra\nGiselle\nValerie\nDestiny\nAudrey\nDiana\nDaniela\nElla\nAriana\nLeslie\nSavannah\nMaya\nNatalia\nLily\nKatherine\nLauren\nRuby\nCamila\nJacqueline\nIsabel\nMelissa\nNevaeh\nTaylor\nAllison\nNicole\nArianna\nJulia\nDaisy\nAmy\nAddison\nZoe\nKaylee\nGenesis\nGabriela\nAlondra\nAngela\nBriana\nSydney\nKaitlyn\nEsmeralda\nGabriella\nBrooke\nMariah\nAlina\nAmanda\nKaren\nJade\nSophie\nMadeline\nKatelyn\nJazmin\nAnna\nLiliana\nNaomi\nFaith\nRiley\nAaliyah\nSara\nAdriana\nKylie\nRachel\nGianna\nGuadalupe\nCharlotte\nMariana\nJulissa\nMiranda\nSienna\nIsabelle\nFatima\nMakayla\nAna\nAlejandra\nClaire\nJasmin\nLeah\nKarla\nMegan\nCrystal\nKatie\nLayla\nJuliana\nAubrey\nEva\nBianca\nBrooklyn\nKarina\nMarissa\nAvery\nBella\nLillian\nHaley\nDanielle\nLeilani\nJordan\nAngelica\nAmber\nKate\nTiffany\nAmelia\nDulce\nAlexia\nLizbeth\nBrenda\nSadie\nAlicia\nRebecca\nTrinity\nJazmine\nPaige\nAnahi\nBailey\nMorgan\nMelody\nKeira\nItzel\nBreanna\nJoselyn\nDelilah\nEmely\nAriel\nMackenzie\nAlana\nElena\nSabrina\nScarlett\nJoanna\nPriscilla\nVivian\nMya\nCatherine\nKelly\nJenna\nChristina\nDenise\nSierra\nWendy\nCynthia\nSerenity\nApril\nCassandra\nLeila\nGabrielle\nMonica\nJulianna\nNataly\nViolet\nXimena\nAileen\nPaola\nAmerica\nIzabella\nCeleste\nZoey\nLucy\nVeronica\nJordyn\nDaniella\nAliyah\nEstrella\nLaila\nJamie\nMary\nStella\nDesiree\nNadia\nNayeli\nPerla\nLuna\nLilly\nIris\nCarolina\nMadelyn\nLaura\nChelsea\nCindy\nAlexandria\nAmaya\nDayanara\nNancy\nMarisol\nAutumn\nErika\nEliana\nMikayla\nMolly\nPaulina\nViviana\nKiara\nAngie\nSummer\nJanelle\nKassandra\nAngel\nMarlene\nCaroline\nJada\nPeyton\nLesly\nRylee\nReese\nFernanda\nGracie\nAngelique\nErin\nJimena\nAlessandra\nMelany\nTatiana\nHeidi\nSerena\nJulie\nYesenia\nJayden\nYasmin\nHazel\nJosephine\nAlison\nTessa\nCecilia\nLola\nSarai\nAshlyn\nLucia\nAbril\nEllie\nCarmen\nSandra\nEden\nKennedy\nKathryn\nAdrianna\nJayla\nMadeleine\nMarina\nAnnabelle\nKiana\nMaritza\nNathalie\nValentina\nCheyenne\nYoselin\nCassidy\nGisselle\nHelen\nIrene\nSasha\nRosa\nArely\nDanica\nIvy\nKyra\nAurora\nKylee\nMiriam\nElise\nLindsey\nYareli\nCaitlyn\nDelaney\nClarissa\nErica\nJaqueline\nClara\nRaquel\nAthena\nNina\nJenny\nLinda\nMalia\nMarilyn\nCaitlin\nGenevieve\nPenelope\nShelby\nKaylie\nEsther\nHayden\nKailey\nLila\nCamille\nKendall\nNatasha\nPayton\nPhoebe\nSkylar\nCarla\nDakota\nKira\nDayana\nKendra\nKrystal\nLindsay\nYadira\nGloria\nMelina\nAbby\nAlice\nMiley\nAleena\nClaudia\nFiona\nMonique\nCristina\nJanet\nJillian\nRuth\nAlissa\nAnnika\nSiena\nJayleen\nJaylene\nJazlyn\nAllyson\nAniyah\nJaslene\nMakenna\nEileen\nHeaven\nNoemi\nSavanna\nAraceli\nDanna\nHanna\nHayley\nIsabela\nJohanna\nJuliette\nBrooklynn\nBrittany\nCadence\nEmilia\nAudrina\nChristine\nElisa\nTania\nHaylee\nLana\nPatricia\nSherlyn\nDana\nKatelynn\nKyla\nMaribel\nReyna\nSelena\nBrisa\nLydia\nShayla\nAngeline\nHope\nMayra\nReagan\nBelen\nBelinda\nCristal\nLondon\nNathaly\nMonserrat\nStephany\nBethany\nMarley\nArlene\nMckenna\nAylin\nBryanna\nEleanor\nJanessa\nKiera\nLuz\nRubi\nValery\nJane\nMargaret\nRose\nTalia\nIsis\nJuliet\nSonia\nAnastasia\nKelsey\nTeresa\nCourtney\nJudith\nMaryjane\nAnnie\nSarahi\nDamaris\nPresley\nYuliana\nAshlee\nAnya\nDalia\nMartha\nDaphne\nKaelyn\nLizeth\nPiper\nAzul\nLilliana\nNora\nCali\nCameron\nEvelin\nHarmony\nMckenzie\nCamryn\nMaggie\nRebekah\nYaretzi\nAlma\nFrancesca\nIngrid\nJaelyn\nStacy\nCarly\nFrida\nGeorgia\nJadyn\nDarlene\nLilian\nMarisa\nAshly\nAshlynn\nCitlali\nEliza\nKaylin\nSage\nAnika\nEvangeline\nAmelie\nBritney\nDahlia\nEdith\nKaia\nKenya\nLesley\nAdeline\nPaloma\nAllie\nCiara\nDanika\nMarely\nBridget\nHolly\nIliana\nJacquelyn\nKamila\nLexi\nRegina\nYvette\nCatalina\nCeline\nJayda\nNoelle\nRihanna\nShannon\nSimone\nYazmin\nAnnette\nRyan\nBlanca\nGalilea\nHaylie\nKarissa\nKathleen\nLarissa\nLyla\nPaula\nAyla\nCallie\nHeather\nJaden\nLena\nMakenzie\nNia\nPamela\nTanya\nEsperanza\nAubree\nKristina\nLorena\nSkyler\nEmerson\nHana\nHeidy\nAlanna\nAlyson\nElaine\nSamara\nJosie\nLisa\nXiomara\nGia\nAracely\nAyleen\nGraciela\nMariela\nXochitl\nElle\nFabiola\nJessie\nKenia\nKristen\nRylie\nAniya\nAnnabella\nHailee\nHelena\nJackeline\nKaydence\nKeyla\nLexie\nLia\nMarie\nTatum\nCharlize\nEmilie\nJolie\nKaitlin\nLilyana\nMaddison\nAnaya\nChanel\nLucero\nRebeca\nScarlet\nTiana\nAnabelle\nAreli\nDenisse\nKaila\nAlaina\nJohana\nKara\nLuciana\nSkye\nAlize\nCamilla\nCitlaly\nDylan\nKassidy\nMargarita\nMarlen\nRachael\nTeagan\nDalilah\nFlor\nJoana\nJoy\nSharon\nAdamaris\nKali\nKathy\nLea\nLeyla\nLitzy\nMadyson\nParis\nRoselyn\nSandy\nYamilet\nZara\nAria\nBerenice\nGrecia\nJoyce\nKamryn\nMaia\nSusana\nYasmine\nBrynn\nCarina\nDania\nJustine\nKatrina\nKiley\nMadelynn\nMercedes\nPrecious\nSidney\nAimee\nBarbara\nBeatriz\nDominique\nJoselin\nLiana\nLilia\nMakena\nSheila\nYahaira\nAryanna\nJanice\nJoseline\nKailee\nMikaela\nSariah\nYuridia\nYvonne\nAlani\nAnabel\nAsia\nLuisa\nNelly\nReina\nAddyson\nBrielle\nImani\nKailyn\nKaya\nKayleen\nAlayna\nAlena\nAmira\nDeanna\nEmilee\nGiovanna\nJocelynn\nLacey\nLauryn\nLizette\nMichaela\nRosemary\nSalma\nSelene\nSilvia\nSylvia\nAisha\nAlisha\nAryana\nCarissa\nCora\nGemma\nKaitlynn\nMagdalena\nMarianna\nMiah\nMireya\nNathalia\nRoxana\nSheyla\nYarely\nCasey\nElisabeth\nEstefani\nJulianne\nKimora\nMadilyn\nRoxanne\nAnais\nArabella\nAubrie\nBrissia\nDiamond\nElsa\nGiana\nJaylynn\nJulieta\nMariam\nNikki\nShirley\nVioleta\nVirginia\nAdilene\nEmery\nGizelle\nLilianna\nMontserrat\nNatali\nRenata\nRenee\nIvana\nLupita\nMallory\nPriscila\nRhianna\nTaryn\nYara\nAmara\nBrenna\nKasandra\nLeanna\nNadine\nNoelia\nShyla\nTara\nYaritza\nCharlie\nGwendolyn\nLina\nMina\nSally\nStacey\nThalia\nVianey\nBeatrice\nCalista\nClare\nGiada\nGina\nHillary\nKalia\nKirsten\nLeticia\nLilah\nMacy\nMaile\nMila\nVanesa\nVania\nWillow\nAlivia\nJaquelin\nJosselyn\nLeia\nLeilany\nMilan\nSusan\nAnnabel\nAnne\nDeborah\nFelicity\nJacklyn\nKaylah\nMaite\nMayte\nPearl\nQuinn\nYulissa\nBetsy\nDiya\nEllen\nElyse\nHarper\nJordin\nLluvia\nMacie\nMarleen\nRocio\nSelina\nTabitha\nAiyana\nIsabell\nJazlene\nKaiya\nMaricela\nMelinda\nMiracle\nPrincess\nSavanah\nSoraya\nAnissa\nBeyonce\nEstefania\nNyla\nOlive\nViridiana\nBrissa\nCelia\nCharlene\nEstefany\nGisele\nJaiden\nJocelin\nKhloe\nMicaela\nRiya\nYessenia\nAditi\nAilyn\nAliana\nAlisa\nAnabella\nBriseida\nDiane\nDonna\nElaina\nEve\nHilary\nKeila\nPhoenix\nSelah\nXitlali\nAdelina\nArielle\nJazelle\nKayleigh\nLogan\nMadisyn\nNeveah\nParker\nSarina\nTamara\nYajaira\nCheyanne\nDalila\nDesirae\nJaelynn\nJewel\nKadence\nKailani\nLorelei\nRyann\nSaray\nShaila\nShreya\nXitlaly\nZariah\nAmani\nBrittney\nDianna\nGiuliana\nJaylin\nJazlynn\nJenifer\nKayley\nKristine\nMaleah\nYolanda\nYoselyn\nAdela\nAnnalise\nCambria\nCherish\nEvangelina\nGissel\nIvanna\nJaneth\nJazmyn\nJocelyne\nKarol\nKaylyn\nLyric\nMaryam\nNatalee\nNatalya\nRosalinda\nTori\nTracy\nTyler\nYamileth\nAlia\nAmaris\nAni\nAyanna\nCarolyn\nDestinee\nElyssa\nEunice\nFinley\nFrances\nIreland\nIsela\nJanae\nJanette\nNaima\nRita\nRowan\nRoxanna\nTess\nAliya\nAlyna\nAzucena\nDayanna\nDesteny\nGeraldine\nGladys\nJackelyn\nKasey\nKayden\nKristin\nLourdes\nMadalyn\nMalaya\nMeghan\nMelani\nMeredith\nMyah\nNicolette\nRegan\nRyleigh\nSkyla\nAmya\nBryana\nCoral\nJoelle\nJolene\nKeilani\nLeilah\nLisette\nMckayla\nNorah\nSimran\nTianna\nAliah\nAlly\nCandy\nCasandra\nCienna\nCorinne\nDeja\nEvie\nKaylani\nKianna\nMarlyn\nMelia\nMelisa\nYsabella\nZoie\nAdelaide\nAdrienne\nAliza\nAmari\nAnjali\nBailee\nBaylee\nBrandy\nBreana\nCarol\nCielo\nDevyn\nGillian\nHalle\nJaidyn\nJoanne\nKarime\nKenzie\nKlarissa\nNoa\nAda\nAinsley\nAmina\nAnanya\nArlette\nEmmy\nItalia\nJackie\nJacquelin\nJazzlyn\nJustice\nKarely\nKatia\nLorraine\nMiya\nMylie\nNayely\nRhea\nRianna\nShiloh\nStar\nTheresa\nTina\nZaira\nDelia\nDrew\nIvette\nIzabel\nJoslyn\nKaela\nLidia\nLucille\nMandy\nNorma\nRosario\nRosie\nShyanne\nAanya\nCandice\nDavina\nHarley\nJasleen\nJaslyn\nJaylah\nJourney\nKarly\nKayli\nKirra\nMagaly\nMareli\nMika\nMilagros\nShania\nSoleil\nAleah\nAngeles\nAntonia\nElissa\nEvelynn\nJune\nKalea\nKaley\nKaylen\nKaylynn\nKeily\nKrista\nLaisha\nLiberty\nMaliyah\nMira\nNaomy\nRaven\nRomina\nRoxy\nSamira\nSonya\nTamia\nTrisha\nZahra\nAmerie\nCassie\nCelina\nEbony\nElianna\nEstella\nHailie\nJuana\nKaris\nLara\nLilyanna\nMariyah\nRachelle\nRaegan\nSaniya\nSayuri\nTatianna\nTayler\nAbygail\nAlannah\nAlysa\nAnalise\nAnisa\nAriadna\nArleth\nChiara\nElina\nEmi\nJaida\nJasmyn\nJoceline\nJulisa\nKatarina\nKylah\nKyleigh\nLeyna\nLillie\nLillyanna\nMarcela\nMarisela\nMaxine\nMelony\nReanna\nRia\nShayna\nSky\nTia\nVianney\nYulianna\nAbbey\nAbbigail\nAmalia\nAstrid\nDariana\nDarla\nElliana\nGisel\nIxchel\nJaclyn\nJoey\nKalani\nKaryme\nKristy\nLeena\nLynette\nMaeve\nNoor\nPaisley\nSaniyah\nVivianna\nYocelin\nYoseline\nAbbygail\nAilani\nArya\nAvalon\nBelle\nBriseyda\nCara\nCarley\nChelsey\nEricka\nHadley\nHaven\nJaniyah\nJizelle\nKaliyah\nLaney\nLaylah\nLondyn\nMatilda\nMylee\nRhiannon\nSuri\nUnique\nYaneli\nZion\nAnalisa\nAyana\nCandace\nCorina\nGeorgina\nGriselda\nJana\nJaniya\nJaylen\nJiselle\nJoselyne\nLianna\nLisbeth\nMakaylah\nMariel\nMyla\nPauline\nShyann\nTammy\nToni\nVivienne\nYessica\nZuleyka\nAlanah\nAllyssa\nAnn\nAya\nBridgette\nCarlie\nCecelia\nChantal\nCierra\nDeisy\nDorothy\nEstela\nHaily\nIlene\nJaeda\nJaquelyn\nJaya\nKarolina\nKyara\nLeilene\nLillianna\nMilena\nNeha\nRaylene\nSahara\nSavana\nStefany\nAniah\nAnita\nAnnelise\nAvril\nBetzy\nBeverly\nBree\nCinthia\nDafne\nEstephanie\nGisell\nGwyneth\nIrma\nJayde\nKalina\nLeann\nLeanne\nMakaila\nMilana\nMilla\nNallely\nNichole\nNyah\nSabina\nAbbie\nAdison\nAixa\nAlex\nAmiyah\nAnessa\nBetzaida\nColette\nDina\nDora\nElia\nGreta\nHallie\nJudy\nKatharine\nKenna\nKiersten\nKim\nKristal\nLillyana\nLiz\nLorelai\nMaliah\nMeadow\nMindy\nMonserrath\nMoriah\nNoemy\nScarlette\nSinai\nStefanie\nSusanna\nVida\nAdamari\nAddisyn\nAiyanna\nAlexsandra\nAlexys\nAnai\nAnastacia\nAsha\nElisha\nElvira\nEmerald\nGema\nGinger\nHoney\nIndia\nIvonne\nIzabelle\nIzel\nJalissa\nJanell\nMariajose\nMaryann\nMeagan\nMichell\nMischa\nPatience\nPricilla\nShaylee\nSol\nStevie\nVicky\nWhitney\nZulema\nAbigale\nAmberly\nAshely\nAubriana\nAvani\nCianna\nDaira\nDayna\nDestiney\nDevin\nDevon\nIsla\nJailyn\nJazmyne\nJeanette\nKaelynn\nKarlie\nKaycee\nKeren\nKierra\nLaci\nLailah\nLaurel\nLesli\nLivia\nLizet\nMacey\nMaci\nMara\nMarbella\nNalani\nNola\nRiver\nRosalie\nSaige\nSaira\nSanjana\nShea\nShriya\nSofie\nYadhira\nAlexus\nAnayeli\nAngely\nAntoinette\nAriah\nArissa\nBerlin\nBianka\nCathy\nCitlalli\nCloe\nDallas\nDasha\nDelila\nDoris\nElsie\nEma\nGisela\nHadassah\nIsadora\nJaycee\nKamilah\nKaylene\nKeely\nLainey\nLori\nMaiya\nMalina\nMicah\nNoelani\nOlga\nRayna\nRobyn\nSaanvi\nSamaya\nSloane\nYocelyn\nAdalyn\nAdelyn\nAlexi\nAmairany\nAmirah\nAngelie\nAnisha\nAnneliese\nBaylie\nBonnie\nCharlee\nCiana\nConnie\nElysia\nGracelyn\nHaydee\nIleana\nIyana\nJaedyn\nJanely\nJenessa\nJoleen\nKallie\nKayle\nKennedi\nLynn\nMadalynn\nMaylin\nMelania\nMildred\nMillie\nNaya\nReece\nRosalyn\nSahana\nSamarah\nSamaria\nSerene\nSunny\nTanvi\nVera\nVienna\nZuri\nAbigayle\nAbrianna\nAdyson\nAlisson\nAnnalisa\nAnnmarie\nAntonella\nAshleigh\nAspen\nAzalea\nBrook\nCayla\nCheryl\nDulcemaria\nEdna\nEmeli\nFlora\nIyanna\nJanine\nJennyfer\nJianna\nJoscelyn\nJosefina\nJuanita\nKacie\nKarma\nKaterina\nKendal\nLexy\nLinnea\nMagali\nMari\nMarianne\nMariella\nMarielle\nMarlee\nMercy\nMilani\nMona\nNellie\nPriya\nRaina\nSabine\nSanai\nSydnee\nYamile\nYulisa\nZayra\nAida\nAkira\nAmiya\nAriyana\nArleen\nAshlie\nAundrea\nCailyn\nCarlee\nCarrie\nDanae\nDani\nDennise\nDeysi\nFarah\nFrankie\nGretchen\nHennessy\nHilda\nIsha\nJanelly\nJazleen\nKatalina\nKaty\nKatya\nMadisen\nMalena\nMyra\nOfelia\nOsiris\nPilar\nRayne\nRemy\nSamanta\nSana\nSanaa\nTatyana\nTaya\nThania\nTiara\nTyra\nVivien\nYana\nYasmeen\nYazmine\nAdrina\nAlaya\nAlessia\nAnnabell\nAriella\nAverie\nBria\nBrianne\nBriseis\nCharity\nCharli\nChristiana\nDayra\nElsy\nEmelia\nFelicia\nFranchesca\nFrancisca\nGissell\nImelda\nInes\nJahaira\nJovanna\nKaili\nKairi\nKatelin\nKelis\nKimberley\nLilli\nMarcella\nMarian\nNahomy\nNailah\nNubia\nNylah\nPaulette\nRaya\nStefani\nSunshine\nThea\nTreasure\nVianca\nXochilt\nYesica\nZaida\nAdrian\nAhtziri\nAmariah\nAngelyn\nAnnamarie\nArwen\nBernadette\nBetty\nCaelyn\nCharley\nChristy\nCiera\nEloise\nEsha\nEster\nGwen\nHunter\nJackelin\nJael\nJaliyah\nJaylyn\nJayme\nJessenia\nJodie\nKaleah\nKalie\nKalli\nKarley\nLani\nMadelin\nMaren\nMaricarmen\nMarjorie\nMiabella\nMikaylah\nMinerva\nMirian\nMonet\nNayelli\nNova\nPricila\nPrisila\nRayleen\nRory\nSade\nSapphire\nSayra\nSharlene\nTallulah\nTaniya\nValarie\nViolette\nYaquelin\nZoya\nAislinn\nAlayah\nAlessa\nAlexandrea\nAmbar\nAmiah\nAnahy\nAnaiah\nAnaly\nAnel\nAnette\nAngelic\nAnushka\nAshanti\nAtiana\nAviana\nAyesha\nBillie\nBritany\nClementine\nDaysi\nDior\nElvia\nEmelie\nEsme\nEvalyn\nEvette\nHaleigh\nHellen\nHenna\nIsaura\nJailene\nJanaya\nJannet\nJayna\nJesenia\nJessalyn\nJordynn\nKaelin\nKaily\nKamille\nKeilah\nKeiry\nLacy\nLaysha\nLeona\nLilith\nLucie\nMadysen\nMai\nMay\nMikaila\nMollie\nMoncerrat\nMonika\nNavya\nNikita\nNya\nOcean\nQuincy\nRaelynn\nRania\nSaphira\nSerina\nShaelyn\nSoledad\nSymphony\nTayla\nTrista\nUma\nVeronika\nYaretzy\nYuritzi\nZaniyah\nAdelynn\nAlba\nAlexie\nAlyssia\nAlyvia\nAmayah\nAnabell\nAnalia\nAnayah\nAneesa\nAngelita\nAriela\nBrandi\nBrianda\nCailin\nCate\nChantel\nChaya\nCinthya\nDanya\nDolores\nEssence\nEvelina\nFallon\nFreya\nGenessis\nGlenda\nHalie\nHarleen\nIman\nInez\nJaydin\nJolette\nJosslyn\nKaleigh\nKalista\nKarlee\nKimberli\nKloe\nLeela\nLeilanie\nLeslye\nLisset\nMadilynn\nMalaysia\nMarla\nMattea\nMelannie\nMeleny\nMorelia\nNeida\nNika\nPaityn\nRobin\nShira\nSydnie\nTaliyah\nTrina\nVenus\nZahira\nZainab\nZariyah\nAaliah\nAlysha\nAmie\nAnaiya\nAnnalyse\nAnusha\nArden\nArlet\nAshlin\nAubrianna\nAubrielle\nAudrianna\nAveri\nAyah\nAyden\nBernice\nBrigitte\nBrookelyn\nBrooklin\nCarmela\nCaylee\nChyanne\nDarlyn\nDejah\nDesire\nEllison\nElly\nEmelyn\nEmili\nEmme\nFarrah\nFaviola\nFaye\nGaby\nGladis\nGurleen\nHeavenly\nIleen\nInaya\nIvory\nJacey\nJaela\nJanie\nJarely\nJaslynn\nJasmyne\nJaymie\nJennie\nJesslyn\nJosette\nKamari\nKathrine\nKatlyn\nKatlynn\nKelsie\nKya\nKyndra\nLibby\nLiv\nLucinda\nMae\nMaira\nMargot\nMariafernanda\nMattie\nMelodie\nMichel\nMichele\nMontana\nNicolle\nPersia\nPetra\nPrisha\nRebeka\nRosalina\nSakura\nSamiya\nSamiyah\nSania\nSawyer\nSheccid\nSirena\nSuzette\nTaniyah\nTea\nTegan\nTierra\nYanely\nYuna\nYuri\nZia\nZuleima\nZury\nAbagail\nAddisen\nAide\nAiden\nAilin\nAkeelah\nAlianna\nAlin\nAline\nAlora\nAlynna\nAlyza\nAmarie\nAnali\nAnalicia\nAnaliese\nAnela\nAnia\nAnnalee\nAranza\nAraya\nArlyn\nAvah\nAvigail\nAzalia\nBertha\nBraelyn\nBriley\nBrookelynn\nBrylee\nCallista\nChasity\nChrista\nCitlally\nConsuelo\nCorrine\nDeana\nElana\nEleni\nEmber\nEmiko\nEmmalee\nEryn\nEzra\nGiavanna\nJaila\nJalynn\nJalyssa\nJanai\nJaniah\nJanna\nJayline\nJean\nJenelle\nJordana\nJosselin\nJustina\nKacey\nKai\nKailah\nKailynn\nKamya\nKeanna\nKeyli\nKinsey\nKori\nLailani\nLanae\nLeana\nLexus\nLilyan\nLissette\nLizbet\nLouisa\nLylah\nLyra\nMabel\nMadelyne\nMarin\nMarlie\nMarwa\nMayah\nMayeli\nMayrin\nMelyssa\nMisty\nMiyah\nMyriam\nNaila\nNaiya\nNiya\nOceana\nRain\nRamona\nRosalia\nRosita\nRylan\nSahar\nSariyah\nSelma\nShani\nShelly\nSherry\nStarr\nSuhani\nSusie\nTahlia\nTanisha\nTrish\nWilla\nWinter\nZahara\nAaniyah\nAlanie\nAlaysia\nAllegra\nAmi\nAnamaria\nAngelly\nAnnaliese\nAolani\nArisbeth\nAudree\nAyva\nBianey\nBibiana\nBriza\nCaleigh\nCleo\nColleen\nDara\nDebra\nDelylah\nDemi\nDivine\nDivya\nEllery\nEmani\nEvelyne\nGeneva\nHayleigh\nHermione\nIlianna\nIlliana\nIrie\nItaly\nIzzabella\nJalyn\nJaylee\nJeannie\nJeniffer\nJeslyn\nJuniper\nKaeli\nKalena\nKamilla\nKavya\nKeara\nKristyn\nKyndall\nLacie\nLaniyah\nLillyann\nLoren\nLove\nLuella\nMaegan\nMakaela\nMaricruz\nMei\nMisha\nNeela\nNereida\nNereyda\nNidhi\nNour\nPreslee\nRihana\nRosemarie\nSaleen\nSalina\nSamya\nSanvi\nSarahy\nShaina\nShana\nShay\nShruti\nShylah\nSuzanne\nTerra\nTristan\nVenice\nVina\nYanira\nYatziri\nZaria\nAbriana\nAcacia\nAdamary\nAdia\nAilene\nAja\nAlea\nAlinah\nAlise\nAmia\nAnanda\nAngeli\nAnja\nAnjelica\nArianah\nAries\nArlin\nAudrie\nAura\nAzariah\nBobbie\nBrea\nBreanne\nBrooklynne\nCaren\nCelest\nCharisma\nChelsy\nChevelle\nDanely\nDarby\nDaylin\nDestany\nDeyanira\nDianne\nDivina\nEllianna\nElliot\nElodie\nEmmi\nEvan\nFrancis\nGiulia\nGracelynn\nIdalia\nImogen\nIrlanda\nItzayana\nJamila\nJaretzy\nJazlyne\nJesse\nJessi\nJewell\nJezebel\nJoann\nJolina\nJournee\nJubilee\nJulyssa\nKaci\nKaira\nKameron\nKameryn\nKamora\nKarisma\nKaroline\nKaylei\nKeilana\nKellie\nKendyl\nKhushi\nKiarra\nKimberlyn\nKimiko\nKorina\nKourtney\nKyrie\nLanie\nLela\nLessly\nLuzmaria\nLyanna\nMackenna\nMagnolia\nMahi\nMaisie\nMalayah\nMalea\nMaleena\nMannat\nMarion\nMarlena\nMarli\nMarysol\nMeghna\nMonzerrat\nNadya\nNeva\nNevaeha\nNirvana\nNyomi\nPayten\nPia\nRachell\nRiana\nRosamaria\nRyanna\nRyley\nSamia\nSariya\nShae\nSherlin\nSherly\nShivani\nSkylee\nStarla\nSumaya\nSuzanna\nSylvie\nVerenice\nViktoria\nViola\nYanet\nYoana\nZaniya\nZuleika\nAiram\nAlanis\nAleyah\nAli\nAlinna\nAmeerah\nAmmy\nAmrita\nAndi\nAriadne\nArriana\nAshton\nBayley\nBetsaida\nBobbi\nBrihanna\nBryce\nCailey\nCalli\nCarli\nChanelle\nChantelle\nChase\nClarisse\nCoco\nConstance\nCosette\nDallana\nDanyelle\nDeena\nDelanie\nDyana\nEimy\nEla\nElayna\nElinor\nElli\nEllis\nElora\nEmelin\nEmilly\nEternity\nGenevie\nHasini\nHavana\nIlse\nIsa\nIzabela\nJacinda\nJahzara\nJaime\nJaina\nJanel\nJelena\nJemma\nJenni\nJiya\nJoan\nJocelynne\nJody\nJoely\nJoslynn\nJoycelyn\nJude\nJulieana\nJulienne\nKatherin\nKaylina\nKeana\nKeegan\nKeeley\nKeilly\nKeona\nKiran\nKiya\nLaela\nLaylani\nLeylani\nLiani\nLillyan\nLinette\nLisseth\nLizania\nLois\nMalani\nMaliya\nMargaux\nMariaelena\nMariaguadalupe\nMariya\nMarleny\nMarta\nMaryah\nMayleen\nMckinley\nMeah\nMelonie\nMerari\nMercedez\nMimi\nNailea\nQuetzalli\nRaelyn\nRaine\nReilly\nRena\nRomy\nRosalind\nSamari\nSanah\nSanya\nSavina\nSequoia\nShakira\nShaniya\nShantal\nShelley\nSiomara\nSonja\nSusannah\nTamar\nTrinidad\nTristen\nVarsha\nXenia\nYakelin\nYelena\nYsabel\nYudith\nYumalay\nZadie\nZoee\nZyanya\nAaralyn\nAarna\nAashna\nAdina\nAeris\nAidan\nAila\nAime\nAkasha\nAkayla\nAleida\nAleyda\nAllisson\nAlyah\nAlyana\nAlycia\nAmalie\nAmberlyn\nAmilia\nAnaiyah\nAnakaren\nAnalee\nAnalucia\nAnay\nAndie\nAndria\nAnnemarie\nAnyah\nAnyssa\nAri\nAris\nAriyah\nArmani\nAtziry\nAubri\nAudra\nAurelia\nAvianna\nAzaria\nBrisia\nBryn\nCalia\nCamden\nCampbell\nCapri\nCarmel\nCarmella\nCatarina\nCesia\nCharly\nChloee\nChristal\nChristen\nClarisa\nCloey\nClover\nCorinna\nDaisha\nDarcy\nDaria\nDarian\nDarleen\nDebbie\nDesiray\nDestinie\nDisha\nElin\nElisabet\nEmersyn\nEstelle\nEvany\nFatimah\nGissele\nGraciella\nGwendalyn\nGwenyth\nHaidyn\nHanah\nHelene\nHolland\nHonesty\nIdaly\nIla\nIsobel\nJacy\nJaeden\nJaelene\nJailynn\nJaydah\nJaydyn\nJeanelle\nJena\nJersey\nJorja\nJovana\nJudit\nKadyn\nKaeley\nKalaya\nKambria\nKandice\nKari\nKatana\nKaydee\nKelsy\nKenadie\nKiarah\nKinsley\nKitzia\nKora\nLeeann\nLeigha\nLezly\nLilyann\nLiset\nLiya\nLiyah\nLiza\nLizett\nLotus\nLynda\nMailey\nMakiah\nMalak\nMariangela\nMarilu\nMaryn\nMelenie\nMetzli\nMykaela\nMykayla\nMylah\nMylene\nNavaeh\nNayelly\nNayla\nNhi\nNikole\nNisha\nNoah\nNoel\nOdalys\nOdessa\nPoppy\nPrisilla\nPriyanka\nRian\nRochelle\nRoxane\nRubie\nSalome\nSamhita\nSamiah\nSaya\nSela\nSerafina\nSevana\nShreeya\nSia\nSiana\nSianna\nSiri\nSolana\nSonora\nStacie\nStephani\nTalya\nTatyanna\nTeya\nVianna\nXochil\nYael\nYanelly\nYelitza\nYenifer\nYsabelle\nYuriana\nYzabella\nZayna\nZitlaly\nAalyah\nAarya\nAdele\nAdora\nAdylene\nAidsa\nAlexsa\nAleya\nAlizay\nAllena\nAlliyah\nAlona\nAlyanna\nAlyse\nAlysia\nAlyssandra\nAmal\nAmeena\nAminah\nAmyah\nAnahit\nAnaliyah\nAneth\nAngelena\nAnishka\nAnny\nAriane\nAriya\nAryam\nAshleen\nAshlynne\nAthziri\nAubriella\nAudry\nAvary\nAylen\nBaleria\nBerenise\nBerlyn\nBlessing\nBrigette\nCalla\nCalleigh\nCayden\nCaylin\nCecily\nChandler\nChelsie\nClarice\nConstanza\nCyan\nDailyn\nDaizy\nDamariz\nDasia\nDeasia\nDena\nDenae\nDenice\nDevany\nDevine\nDixie\nEbelin\nEesha\nEleana\nElicia\nEllena\nEllia\nElva\nEmaan\nEmeline\nEmiley\nEmmely\nErandy\nEveline\nEvey\nFabiana\nFanny\nFrancheska\nFreyja\nGianni\nGiulianna\nGuinevere\nHarlie\nHiba\nHollie\nIlana\nInara\nIveth\nIvett\nIzabell\nJadelyn\nJadelynn\nJamya\nJayci\nJaylinn\nJazzelle\nJazzlynn\nJazzmine\nJesica\nJessa\nJessika\nJhoana\nJolee\nJoline\nJovie\nJuliann\nJulieann\nJulieanna\nKacy\nKailie\nKalyssa\nKareena\nKarsyn\nKatheryn\nKathia\nKathya\nKayly\nKaytlin\nKelani\nKelley\nKeyana\nKimberlin\nKimia\nKiyomi\nKloey\nKyana\nLakshmi\nLarisa\nLeandra\nLelani\nLeonor\nLeya\nLiah\nLilibeth\nLilla\nLinsey\nLoretta\nLouise\nLupe\nLyndsey\nMaelynn\nMagda\nMakyla\nMalana\nMalika\nMallorie\nMarielena\nMarlin\nMartina\nMaura\nMaylene\nMeera\nMele\nMicayla\nMonserat\nMyranda\nNadeen\nNaia\nNanami\nNaomie\nNayelie\nNazareth\nNely\nNiah\nNohemi\nNuvia\nOdette\nOlyvia\nParneet\nPolina\nPortia\nQuetzali\nRacheal\nRacquel\nRemi\nRhiana\nRhyan\nRichelle\nRikki\nRileigh\nRio\nRoberta\nRoselynn\nRosy\nSachi\nSaffron\nSamaiya\nSaraya\nSaskia\nSaylor\nScout\nShanti\nShawna\nShelsy\nSheridan\nSicily\nSilvana\nSimona\nSivan\nSneha\nSymone\nTate\nTatiyana\nTaylin\nTeresita\nTherese\nVaishnavi\nVannesa\nVannessa\nVianka\nVivianne\nWednesday\nXitlalic\nYamila\nYatziry\nYoceline\nZaina\nZenaida\nAdalynn\nAdelaida\nAdelia\nAhtziry\nAiko\nAilany\nAishwarya\nAisling\nAlany\nAleigha\nAleksa\nAlexxa\nAlexxis\nAlix\nAlynah\nAmairani\nAmayrani\nAngelee\nAngeleen\nAngelise\nAngella\nAnjelina\nAnnica\nAnniyah\nAreanna\nAriatna\nAriyanna\nArushi\nAugust\nAustyn\nAvneet\nAvni\nAyari\nAylene\nAzure\nBeautiful\nBerlynn\nBethzy\nBetzabeth\nBindi\nBiridiana\nBlythe\nBrady\nBreeanna\nBritani\nCarson\nCatelyn\nChristie\nChrystal\nClair\nCody\nColby\nCori\nCydney\nDaffne\nDahlila\nDaliah\nDanitza\nDaphnie\nDarlin\nDawn\nDebora\nDejanae\nDestini\nEcho\nEdie\nEgypt\nElani\nElexis\nElisia\nElyana\nElyanna\nElyza\nEmerie\nEmiliana\nEmmery\nEmy\nEstephany\nFayth\nFrancine\nGabriel\nGetsemani\nGigi\nGimena\nGiovana\nGizel\nGlory\nGrisel\nHalia\nHarini\nHarlee\nHarriet\nHayle\nHeydi\nIda\nIndigo\nIvon\nJackelyne\nJaidan\nJaimie\nJalene\nJamilet\nJamileth\nJamiyah\nJanett\nJaycie\nJaydy\nJaymee\nJazlin\nJeannette\nJenevieve\nJennah\nJezabel\nJia\nJodi\nJoscelin\nJosefine\nJoselynn\nJosephina\nJoshlyn\nJozelyn\nJozlyn\nKaely\nKahlia\nKalei\nKalissa\nKalyn\nKamea\nKaniya\nKarin\nKarisa\nKarli\nKaryna\nKaydance\nKeala\nKeili\nKeisha\nKemberly\nKennadi\nKennia\nKilee\nKlara\nKloie\nKrishna\nKrysta\nKyah\nKyrah\nLanya\nLashay\nLeiah\nLeidy\nLeyah\nLili\nLiliane\nLinzy\nLisania\nLovely\nLuca\nLucila\nLulu\nLynnette\nMakailah\nMaranda\nMarcelina\nMarelin\nMarlenne\nMarycarmen\nMatea\nMayumi\nMea\nMeena\nMelanee\nMelaney\nMerissa\nMeztli\nMichela\nMikyla\nMiliani\nMilly\nMirella\nMiroslava\nNanci\nNatania\nNaveah\nNayleen\nNicky\nNicol\nNila\nNinel\nNovalee\nOdalis\nOona\nOphelia\nOriana\nParadise\nPatty\nPromise\nRaeanna\nRandi\nRheanna\nRoma\nRosaisela\nRosio\nRoxie\nRyah\nSadee\nSafa\nSahasra\nSamah\nSaniah\nSari\nShanelle\nShianne\nShilah\nShylee\nSinead\nSiobhan\nSkyy\nSocorro\nSonali\nSophya\nSora\nSuzy\nSvetlana\nSydni\nTaleah\nTalitha\nTalula\nThelma\nTiffani\nValentine\nVannia\nVanya\nVenecia\nVenessa\nVy\nWendi\nYahira\nYarelli\nYuliza\nZada\nZohar\nAaliya\nAdalee\nAdara\nAddie\nAdi\nAdisyn\nAdrianne\nAgatha\nAgnes\nAiled\nAine\nAkemi\nAlaia\nAleen\nAleenah\nAleeyah\nAleeza\nAlthea\nAly\nAlyn\nAmaia\nAmberlee\nAmore\nAn\nAnalaura\nAnalie\nAnalyssa\nAndy\nAngelin\nAngelyna\nAnh\nAnkita\nAnnalie\nAnshika\nAnvita\nApple\nArelie\nArlen\nArlett\nAryah\nAshanty\nAshli\nAshtyn\nAubry\nAudriana\nAustin\nAvamarie\nAvelina\nAyanah\nAyda\nAyumi\nBelicia\nBetsabe\nBetzayda\nBo\nBreann\nBrennan\nBreonna\nBriannah\nBridgett\nBrinley\nBritanny\nCaitlynn\nCalliope\nCameryn\nCamile\nCarmelita\nCarter\nCassia\nCaydence\nCayley\nCelena\nChana\nCherry\nCiarra\nCollette\nCooper\nCordelia\nDalyla\nDalylah\nDarya\nDelina\nDelyla\nDenia\nDestanie\nDevan\nDevina\nDezirae\nDonya\nDream\nEleyna\nElliott\nEmalee\nEmaly\nEman\nEmmah\nEmmalynn\nEmmie\nEmmily\nEmoni\nEsthela\nEstrellita\nEugenia\nEvelia\nEvonne\nFallyn\nFiorella\nGabby\nGalia\nGauri\nGisella\nGracey\nGracyn\nGyzelle\nHala\nHali\nHannia\nHarneet\nHarshita\nHawa\nHeily\nHolley\nIdania\nIlona\nIly\nIlyssa\nIndie\nIndira\nInessa\nIona\nIrelyn\nIsamar\nIshani\nIssabella\nItzia\nJacelyn\nJahayra\nJakayla\nJamison\nJanina\nJanis\nJannelle\nJatziry\nJaydee\nJaylie\nJayne\nJeana\nJeanie\nJeanine\nJenavie\nJenesis\nJisselle\nJoie\nJorden\nJori\nJosalyn\nJose\nJulian\nKadie\nKadynce\nKaedyn\nKailei\nKaliah\nKalynn\nKamara\nKamiya\nKareli\nKarena\nKarolyn\nKayliana\nKeani\nKeidy\nKensington\nKeya\nKeyara\nKhadija\nKiely\nKimberlee\nKinzie\nKiyana\nLamiyah\nLamya\nLaylanie\nLindsy\nLizzet\nLoraine\nLuana\nLya\nMacee\nMadaline\nMadelaine\nMadelene\nMahalia\nMahika\nMalaika\nMane\nManpreet\nMargo\nMarguerite\nMariska\nMaryanne\nMarycruz\nMarylin\nMaryssa\nMaylee\nMckinzie\nMeaghan\nMeghana\nMeher\nMeilani\nMelena\nMerelyn\nMetztli\nMichael\nMichaella\nMikaella\nMikala\nMirna\nMishelle\nMitzy\nMoira\nMonae\nMonroe\nMonserath\nNakayla\nNalanie\nNalleli\nNariyah\nNatally\nNathali\nNaydelin\nNidia\nNiki\nNyasia\nNydia\nNyema\nOctavia\nOliviah\nOpal\nParisa\nPrachi\nPranavi\nPrecilla\nPresleigh\nPyper\nRae\nRana\nRayanna\nReem\nRhian\nRianne\nRicha\nRosalba\nRosaura\nRoslyn\nRossy\nRowen\nRuhi\nRuthie\nRyanne\nSabella\nSahira\nSaja\nSamar\nSaphire\nSareena\nSaydee\nSedona\nSeleste\nSemaj\nSemira\nSereniti\nShaianne\nShanell\nShanna\nSharai\nSharlyn\nShasta\nShauna\nSiara\nSiria\nSkylie\nSolimar\nSriya\nStefania\nSury\nTala\nTeaghan\nTeah\nTera\nTerry\nThao\nTheodora\nTorrey\nTrinidy\nTristyn\nVallerie\nVallery\nVanity\nViana\nVickie\nWinnie\nWisdom\nXitlally\nYamilette\nYareni\nYareth\nYeimi\nYoanna\nYosselin\nYtzel\nZamara\nZarina\nZipporah\nZitlali\nZofia\nZora\nAahana\nAarushi\nAashi\nAbbigale\nAbbigayle\nAbella\nAdalia\nAdalie\nAdaline\nAdaly\nAdamariz\nAdamarys\nAddy\nAdelene\nAden\nAhlam\nAidyn\nAiriana\nAishani\nAislin\nAislyn\nAitana\nAkshara\nAlajah\nAlaura\nAlegria\nAlesha\nAlexiah\nAleyna\nAlisia\nAlizabeth\nAlizae\nAlizee\nAllana\nAlley\nAllina\nAllysa\nAlya\nAlysson\nAmaiah\nAmaiya\nAmarissa\nAmeera\nAmely\nAmeya\nAmparo\nAmreen\nAmrit\nAnagha\nAnaliz\nAnalyse\nAnamarie\nAndreya\nAndriana\nAngelene\nAngelia\nAnnaly\nAnnasophia\nAnneke\nAnnel\nAnoushka\nAnsley\nAnthony\nAnvi\nAnyeli\nAralyn\nAriannah\nArie\nArin\nArlyne\nAryel\nAshna\nAsma\nAtziri\nAvalynn\nAvila\nAvital\nAyde\nAyline\nAyram\nAyushi\nBanesa\nBecky\nBettie\nBlair\nBlake\nBraelynn\nBreeana\nBrennen\nBreyanna\nBriahna\nBriceyda\nBricia\nBrieanna\nBrithany\nBrizeyda\nBrylie\nBrynna\nCady\nCaley\nCalie\nCamelia\nCami\nCandelaria\nCaris\nCarys\nCaterina\nCathleen\nCatrina\nCelene\nCharis\nChihiro\nChole\nChristian\nCiena\nCindi\nClaudette\nCristy\nCruz\nDaija\nDaisie\nDamarys\nDanelle\nDaniya\nDannielle\nDasani\nDavianna\nDayani\nDayannara\nDaylene\nDeisi\nDelani\nDelany\nDella\nDenis\nDennis\nDesirey\nDestanee\nDhalia\nDiara\nDiego\nDominic\nDoreen\nDymond\nElektra\nElianah\nEliyah\nElizabet\nElizah\nEllamae\nEmilyn\nEmireth\nEmmanuelle\nEmmerson\nEmory\nEna\nErandi\nEvana\nEvee\nEvy\nEzri\nFlorencia\nGaia\nGenavieve\nGenesys\nGenevive\nGenisis\nGenna\nGenoveva\nGianella\nGiannah\nGionna\nGiorgia\nGracee\nGurnoor\nHalena\nHan\nHanan\nHania\nHarmonie\nHavyn\nHusna\nIanna\nIna\nIran\nIrelynn\nIsolde\nIsra\nItza\nItzell\nIvet\nJacquelynn\nJadah\nJadie\nJaileen\nJakeline\nJakelyn\nJaleah\nJameson\nJamilah\nJanesa\nJania\nJannah\nJannette\nJaritza\nJaselle\nJasmeen\nJaspreet\nJatziri\nJayah\nJayanna\nJaydn\nJazzmin\nJeimy\nJenavieve\nJenice\nJenise\nJessel\nJiana\nJill\nJohannah\nJolin\nJoselinne\nJulina\nJustyce\nKaavya\nKaelani\nKaelly\nKaiah\nKaidence\nKaliana\nKami\nKamrynn\nKaori\nKarah\nKarine\nKarishma\nKarizma\nKaryssa\nKasie\nKassie\nKaterin\nKaterine\nKatharina\nKathlyn\nKaycie\nKaylan\nKaylana\nKaylia\nKelsi\nKemora\nKennya\nKeylee\nKeylen\nKeziah\nKhaliah\nKiani\nKiele\nKieran\nKirin\nKitana\nKristi\nKristianna\nKristie\nKyler\nKymani\nLaina\nLaine\nLaniah\nLawren\nLeilanni\nLeileen\nLennon\nLeylanie\nLiesel\nLillee\nLinden\nLisbet\nLizabeth\nLorna\nLuci\nLucianna\nMaila\nMakala\nMali\nMaliha\nManeh\nManiah\nManjot\nMaram\nMarializ\nMarialuisa\nMariangel\nMaribelle\nMariely\nMarily\nMarilynn\nMariza\nMarleni\nMarlo\nMarly\nMaryana\nMayrani\nMedha\nMehak\nMerlina\nMiarose\nMidori\nMikah\nMirabel\nMirabelle\nMitzi\nMykah\nMyriah\nMyrna\nNaibe\nNakia\nNalia\nNatalye\nNaudia\nNeena\nNeftali\nNeomi\nNiamh\nNichelle\nNicola\nNisa\nNissi\nNithya\nNivea\nNiyah\nNoe\nNoely\nOctober\nOrianna\nPenny\nPeri\nPrincessa\nQuinlan\nRadha\nRamya\nRaniyah\nRashel\nRayann\nRhema\nRida\nRilee\nRina\nRisha\nRonni\nRosalin\nRosanna\nRoselin\nRosella\nRoya\nRut\nRylin\nSaliha\nSamayah\nSaori\nSascha\nSeanna\nSelin\nSenna\nSephora\nShai\nShaniyah\nShantell\nShara\nShaya\nShaylin\nShayne\nSheena\nShelsea\nShia\nSierrah\nSinthia\nSiona\nSiya\nSmriti\nSteffany\nStephania\nSterling\nStorm\nStory\nSujey\nSumayah\nSuraya\nSuzan\nSyriah\nTamyra\nTanaya\nTehya\nTesla\nThais\nUna\nUriah\nValerya\nVeda\nVerity\nVibha\nWren\nWynter\nXcaret\nYaqueline\nYazmeen\nYeneisy\nYoltzin\nYulia\nYumalai\nYumi\nYunuen\nZaire\nZarah\nZella\nZiana\nZully\nAadhya\nAaleyah\nAaliyha\nAalyiah\nAarohi\nAbeer\nAbegail\nAbrielle\nAdah\nAdalynne\nAdelin\nAdelle\nAdelyne\nAdilyn\nAdithi\nAdysen\nAhana\nAhlana\nAinara\nAireanna\nAislynn\nAjanae\nAkilah\nAkina\nAkshaya\nAkshita\nAlahna\nAlayjah\nAleana\nAlecia\nAleiyah\nAlejah\nAlesandra\nAlesia\nAlethea\nAlexcia\nAlexiss\nAlexiz\nAlexsis\nAlexzandra\nAlijah\nAliyana\nAllanah\nAlliana\nAllura\nAllyna\nAlyce\nAlyiah\nAlyzza\nAmaiyah\nAmayrany\nAmethyst\nAmna\nAmor\nAnacristina\nAnadalay\nAnaleah\nAnalis\nAnalissa\nAnaliza\nAnapaula\nAnasofia\nAndee\nAndrina\nAngelik\nAngelinah\nAngelynn\nAngy\nAnica\nAnicia\nAniela\nAnijah\nAnina\nAnnalyn\nAnnamaria\nAnnaya\nAnnya\nAnouk\nAntonieta\nAoife\nAolanis\nAraseli\nArelis\nArelly\nArial\nArianne\nAribella\nAriele\nArihana\nArisa\nArisha\nArista\nArlynn\nArrianna\nAryn\nAryona\nAshby\nAshleynicole\nAshwika\nAsusena\nAthziry\nAudri\nAulani\nAurea\nAuria\nAvarie\nAveline\nAviv\nAvrie\nAyala\nAyane\nAyiana\nAylet\nAyleth\nAzelia\nAziyah\nAziza\nAzusena\nBeatrix\nBela\nBowie\nBradie\nBreanah\nBreena\nBriar\nBriella\nBrienna\nBrigid\nBritny\nBrittanny\nBrizeida\nCaden\nCaelin\nCandise\nCarleigh\nCaterin\nCathryn\nCaylie\nCeanna\nCecile\nCerenity\nChannel\nCharissa\nCharlyn\nCherlyn\nChiamaka\nChristabel\nChristabella\nChristin\nCidney\nCiella\nClarise\nClaritza\nCloie\nCorie\nCristine\nDacia\nDaelyn\nDaiana\nDaijah\nDaila\nDakotah\nDamary\nDaphney\nDaviana\nDavid\nDayanne\nDayleen\nDaysha\nDeirdre\nDelfina\nDelicia\nDelmy\nDesarae\nDeseray\nDestynee\nDezarae\nDeziree\nDinah\nDivinity\nDolly\nDyllan\nEdyn\nEffie\nEila\nElah\nElanie\nElexa\nElida\nEliora\nEliya\nEllyana\nEloisa\nEly\nElysse\nEmberly\nEmmaleigh\nEmmaline\nEmry\nEnya\nEriana\nErmelinda\nErynn\nEshal\nEvalina\nEvalynn\nEvamarie\nEvanie\nEvanna\nEverly\nFergie\nFianna\nFrancia\nGabryella\nGala\nGayane\nGena\nGenevy\nGennesis\nGeorgette\nGeorgiana\nGeorgie\nGoretti\nGraysen\nGrayson\nGreer\nGwynneth\nGyanna\nHaasini\nHaiden\nHaidi\nHalima\nHalley\nHalyn\nHaruka\nHattie\nHaya\nHayli\nHeydy\nHina\nIlani\nIleanna\nIlyana\nIriana\nIrina\nIsabellah\nIshita\nIsmerai\nIsrael\nIvania\nIvanka\nIvannia\nIyannah\nJacklin\nJadin\nJadzia\nJakelin\nJalisa\nJami\nJamiya\nJanea\nJanise\nJannely\nJanvi\nJaquelinne\nJarelly\nJaslyne\nJassmin\nJayana\nJaylean\nJaylenne\nJazel\nJazell\nJazmeen\nJazmynn\nJazz\nJeidy\nJemima\nJenae\nJenaveve\nJennessy\nJennica\nJeraldin\nJewelisa\nJezel\nJezelle\nJissel\nJizel\nJoelie\nJolyn\nJoni\nJoseph\nJosilyn\nJossalyn\nJosselyne\nJulieanne\nJulietta\nJuliza\nJulyana\nJuno\nJustyne\nKaden\nKaiden\nKaidyn\nKaile\nKaithlyn\nKamaria\nKamaya\nKamyla\nKaralynn\nKarmen\nKatelen\nKatlin\nKattie\nKatty\nKaylanie\nKayra\nKaytlyn\nKeaton\nKeirra\nKelli\nKellyn\nKenadee\nKennady\nKera\nKeri\nKerry\nKeyly\nKimara\nKinley\nKona\nKristiana\nKrystina\nKyanna\nKyle\nKyleen\nKylin\nKymberly\nKyndal\nLanai\nLanaya\nLandyn\nLaniya\nLariyah\nLarkin\nLauna\nLavinia\nLayal\nLayna\nLeeanna\nLeidi\nLeighann\nLeighla\nLeiloni\nLeina\nLeonela\nLexis\nLezlie\nLianne\nLilya\nLinh\nLizzeth\nLolita\nLovette\nLuiza\nLundyn\nLuzelena\nLyliana\nLynelle\nLynnea\nLysette\nMacayla\nMackayla\nMackenzi\nMadai\nMadden\nMadelynne\nMadilynne\nMadina\nMagdalene\nMaha\nMahati\nMahealani\nMaiah\nMailee\nMailyn\nMairin\nMaisy\nMajestic\nMajesty\nMakalah\nMakenzy\nMakiya\nMalaia\nMalaina\nMana\nManiya\nMaraya\nMarcia\nMarelyn\nMariaisabel\nMariateresa\nMarieli\nMarilin\nMaris\nMaritsa\nMarixa\nMarlaina\nMarlina\nMaryanna\nMarylou\nMason\nMatilde\nMaybelline\nMayla\nMaylea\nMecca\nMegha\nMeiling\nMekenzie\nMelanny\nMeleah\nMeleena\nMeliza\nMerlyn\nMeyah\nMicaiah\nMicel\nMikalah\nMikeyla\nMilania\nMileena\nMiliana\nMily\nMiryam\nMisa\nMisel\nMuskaan\nNadiah\nNahomi\nNaidelyn\nNaiema\nNaina\nNaira\nNairi\nNaisha\nNala\nNaliyah\nNara\nNaraly\nNarely\nNariah\nNataley\nNatividad\nNawal\nNayana\nNaydeen\nNelia\nNerissa\nNeyda\nNiara\nNico\nNishka\nNissa\nNita\nNitya\nNoella\nNoora\nNoya\nNuria\nNyree\nNyssa\nOralia\nOsmara\nPadma\nPari\nPersephone\nPressley\nQueenie\nRaengel\nRafaela\nRaisa\nRanya\nRavneet\nRayana\nRaylynn\nRayonna\nRayven\nRebekkah\nReema\nReena\nRehanna\nRilynn\nRisa\nRosalva\nRosalynn\nRosi\nRosselyn\nRyen\nSadey\nSafiyah\nSailor\nSalem\nSameera\nSami\nSamirah\nSammantha\nSammi\nSamyra\nSanae\nSanaiya\nSanam\nSanaya\nSanyah\nSarena\nSaria\nSativa\nSayda\nSayler\nSeneca\nSeriah\nSeriyah\nSeven\nShaela\nShaira\nShantelle\nShellsea\nSheyenne\nShireen\nShivali\nShoshana\nShyanna\nSibylla\nSimrat\nSincere\nSindy\nSloan\nSolange\nSona\nSonal\nSophi\nStarlene\nStormy\nStuti\nSua\nSugey\nSuhana\nSuheidy\nSukhpreet\nSulema\nSurina\nSusy\nSutton\nSuzie\nSvea\nSyanna\nSyncere\nSyniah\nSyra\nTaegan\nTais\nTalaya\nTaliah\nTalise\nTamera\nTanner\nTatevik\nTawny\nTayde\nTaytum\nTeagen\nTeanna\nTereza\nThy\nTiani\nTiffanie\nTova\nTriniti\nTru\nTvisha\nTyla\nTylee\nUlani\nVaneza\nVianet\nVilma\nWaverly\nXandria\nXitlalli\nYaira\nYamilett\nYamilex\nYanell\nYaretsi\nYaris\nYaritzi\nYashvi\nYaslin\nYasmen\nYeimy\nYohanna\nYolette\nYudany\nYuki\nYuritza\nYuritzy\nYzabel\nZakiya\nZamantha\nZamiah\nZaraya\nZaylee\nZelda\nZinnia\nZiva\nZoila\nZola\nZuleyma\nZuly\nIsabella\nEmily\nSophia\nSamantha\nAshley\nNatalie\nMia\nEmma\nAbigail\nAva\nOlivia\nElizabeth\nMadison\nValeria\nAlyssa\nChloe\nSofia\nKimberly\nBrianna\nVictoria\nAndrea\nCamila\nJocelyn\nJasmine\nVanessa\nAlexa\nEvelyn\nKayla\nHailey\nAlexis\nValerie\nSarah\nMelanie\nAudrey\nGenesis\nGiselle\nJessica\nHannah\nAllison\nAngelina\nGrace\nMaria\nLily\nDestiny\nJennifer\nStephanie\nMichelle\nElla\nMaya\nNatalia\nAriana\nSavannah\nAlexandra\nKatherine\nDaniela\nLeslie\nKaylee\nLauren\nRuby\nMelissa\nZoe\nIsabel\nArianna\nTaylor\nJacqueline\nMariah\nDiana\nLeah\nDaisy\nJulia\nNicole\nGabriella\nNevaeh\nAddison\nAmy\nKaitlyn\nSophie\nGabriela\nGianna\nAngela\nLayla\nAlondra\nKylie\nMadeline\nMakayla\nBrooke\nAubrey\nBriana\nSydney\nDelilah\nRiley\nAaliyah\nLiliana\nNaomi\nCharlotte\nClaire\nKatelyn\nBrooklyn\nJazmin\nKaren\nBella\nEsmeralda\nAdriana\nJade\nAnna\nRachel\nAlina\nFaith\nSara\nLeilani\nAvery\nAmanda\nEva\nFatima\nAmelia\nGuadalupe\nMiranda\nLillian\nMariana\nJasmin\nAlejandra\nKarina\nJuliana\nMadelyn\nIsabelle\nKarla\nMegan\nMiley\nCrystal\nAna\nBailey\nSienna\nMarley\nSadie\nKatie\nRebecca\nSabrina\nTrinity\nHaley\nKate\nPeyton\nEmely\nViolet\nJazmine\nPaige\nMarissa\nXimena\nAmber\nKeira\nDanielle\nZoey\nMorgan\nTiffany\nAngelica\nLeila\nLucy\nAlicia\nBianca\nDulce\nItzel\nMackenzie\nMelody\nScarlett\nAlexia\nPaola\nSerenity\nAudrina\nJenna\nCynthia\nElena\nJulianna\nJulissa\nMya\nVivian\nDenise\nJoanna\nApril\nCatherine\nValentina\nBrenda\nJimena\nAileen\nIzabella\nGabrielle\nAriel\nEliana\nLizbeth\nMonica\nPriscilla\nSierra\nJaslene\nNayeli\nChristina\nHayden\nCeleste\nNataly\nPayton\nKelly\nJordan\nMikayla\nAliyah\nBreanna\nAutumn\nWendy\nCassandra\nLaila\nNancy\nRylee\nStella\nLilly\nMarely\nAngie\nVeronica\nDaniella\nAlana\nJordyn\nMary\nHazel\nJayden\nLuna\nFernanda\nJoselyn\nJayla\nAmaya\nChelsea\nViviana\nNadia\nAshlyn\nAllyson\nJanelle\nMolly\nAnahi\nJamie\nLondon\nPerla\nAllisson\nCarolina\nDesiree\nAmerica\nLucia\nCaroline\nAlexandria\nEstrella\nMalia\nLaura\nYaretzi\nLila\nDayana\nGracie\nLesly\nAlison\nIris\nAlessandra\nKhloe\nSarai\nCindy\nMadeleine\nMarlene\nTatiana\nErika\nJayleen\nKennedy\nDanna\nMarisol\nKassandra\nSerena\nCecilia\nEllie\nJosephine\nReese\nJada\nKylee\nErin\nKiara\nSasha\nEden\nSummer\nNoemi\nAngel\nJulie\nKira\nJillian\nGisselle\nLola\nCarmen\nNathalie\nAnnabelle\nHeidi\nJaylene\nCaitlin\nIrene\nAurora\nRosa\nDayanara\nShelby\nElise\nKendall\nHelen\nCamille\nJazlyn\nKaylie\nGenevieve\nLyla\nYesenia\nClara\nMaritza\nClarissa\nMelany\nCassidy\nMonserrat\nTessa\nAthena\nGloria\nPenelope\nAdrianna\nDelaney\nPaulina\nCarly\nYasmin\nAbril\nKamila\nMarilyn\nAzul\nNina\nRubi\nSandra\nKailey\nReagan\nRose\nJaqueline\nMiriam\nLinda\nYareli\nAlice\nDanica\nKiana\nHeaven\nCaitlyn\nBrooklynn\nCheyenne\nDana\nKrystal\nLindsey\nMelina\nPiper\nFiona\nHope\nJuliet\nJohanna\nBelinda\nErica\nKathryn\nEsther\nJaelyn\nKendra\nKatelynn\nLydia\nRihanna\nEmilia\nMckenzie\nAniyah\nBelen\nBrisa\nKara\nTania\nMarina\nRaquel\nAleena\nLizeth\nSiena\nYadira\nIvy\nJenny\nArely\nJanessa\nMaggie\nSelena\nShayla\nAnnika\nChristine\nMareli\nCadence\nKelsey\nLindsay\nPaloma\nPhoebe\nAylin\nMakenna\nRuth\nClaudia\nDahlia\nEileen\nSavanna\nMckenna\nYoselin\nHaylee\nHayley\nLuz\nPresley\nAbby\nAreli\nElisa\nMilagros\nAlissa\nAnnie\nEleanor\nIngrid\nMadilyn\nMakenzie\nJane\nSkylar\nCali\nDarlene\nKyra\nPaula\nValery\nYaritza\nCamryn\nCristina\nDanika\nJayda\nJuliette\nKyla\nMonique\nNatasha\nAnaya\nArlene\nStacy\nBrittany\nMikaela\nTeresa\nGeorgia\nHarmony\nLia\nMargaret\nMaribel\nAubree\nCarla\nDaphne\nHanna\nLilian\nLilliana\nTalia\nAdeline\nCameron\nJanet\nNoelle\nPatricia\nAnya\nBethany\nLexi\nMayra\nSimone\nAngelique\nCamilla\nEliza\nSonia\nXiomara\nBryanna\nJazlene\nKaylin\nSarahi\nElaine\nNathaly\nReyna\nSherlyn\nYuliana\nHolly\nNora\nAlisson\nAshlee\nEmerson\nFrancesca\nJudith\nLiana\nRosemary\nElle\nEvangeline\nIsis\nLilah\nAlma\nAshlynn\nDalilah\nHaylie\nKaelyn\nMaryjane\nAngeline\nCatalina\nCristal\nDakota\nDalia\nEdith\nHarper\nLexie\nMartha\nYazmin\nCiara\nDenisse\nKathleen\nMarie\nMichaela\nAraceli\nBridget\nFrida\nIsabela\nKaya\nPamela\nAnika\nCitlali\nLorena\nMaddison\nMila\nTeagan\nBrielle\nDylan\nHillary\nJoy\nTanya\nRylie\nYvette\nLea\nLena\nSusana\nKaia\nLana\nAllie\nAria\nAyla\nCallie\nKenya\nScarlet\nTatum\nCasey\nIliana\nKaitlin\nLizette\nSamara\nAnabelle\nKiley\nStephany\nAimee\nAmelie\nAyleen\nBritney\nJacquelyn\nJolie\nKristina\nRebekah\nDayami\nLeyla\nAnastasia\nCourtney\nDamaris\nIsla\nKeyla\nLuciana\nKimora\nNathalia\nRegina\nAlyson\nAshly\nJessie\nMadalyn\nKaydence\nKayleen\nKristen\nAlaina\nCeline\nHailee\nHelena\nKayden\nLisa\nLucero\nRoselyn\nCarina\nEmery\nHeidy\nJaden\nLeticia\nMadelynn\nRoxana\nSage\nSharon\nAdilene\nBrynn\nElsa\nJadyn\nLarissa\nMakena\nMariela\nCarissa\nGizelle\nKeila\nMargarita\nSkye\nAlanna\nDominique\nGalilea\nHeather\nKathy\nMacy\nQuinn\nRoxanne\nAryanna\nEmilee\nKailyn\nKenia\nSandy\nArielle\nElisabeth\nLeanna\nRachael\nSavanah\nYamilet\nAnnabella\nBarbara\nEvelin\nGraciela\nAlize\nAracely\nChanel\nCharlize\nImani\nKiera\nLesley\nLyric\nMarlee\nRowan\nCora\nJustine\nKaiya\nGia\nLilyana\nMaite\nMercedes\nShannon\nYahaira\nAddyson\nAlena\nJackeline\nLina\nLitzy\nMontserrat\nNyla\nSalma\nSylvia\nYasmine\nAniya\nEstefania\nJulianne\nMadisyn\nMireya\nNia\nParis\nSariah\nAnabella\nAryana\nEllen\nEmilie\nMarisa\nRocio\nShaila\nSkyler\nWillow\nXochitl\nAnabel\nAnnette\nJasleen\nLluvia\nMaliyah\nNoelia\nOlive\nYuridia\nZara\nAlayna\nAubrie\nBerenice\nEstefany\nJosie\nKayleigh\nMina\nRebeca\nTara\nAlisa\nAliya\nAmira\nDestiney\nGiovanna\nJaelynn\nJaidyn\nKalia\nKamryn\nLeilah\nMaia\nNelly\nParker\nElyse\nGwendolyn\nKali\nLidia\nMiah\nRyan\nSusan\nYarely\nYvonne\nAilyn\nAzucena\nCelia\nCharlie\nGisele\nJoana\nKailee\nKayley\nLogan\nMallory\nRenata\nSheyla\nAlani\nAmara\nBaylee\nFabiola\nJohana\nJoseline\nKailani\nLucille\nAnita\nAnne\nDania\nEsperanza\nGina\nKaila\nLeia\nMadyson\nShirley\nTaryn\nAdelaide\nBeatriz\nBlanca\nDalila\nDiane\nDonna\nFlor\nFrances\nGemma\nHarley\nJoyce\nJulieta\nJune\nMarlen\nMatilda\nNatalee\nPrecious\nSelina\nTabitha\nVirginia\nAiyana\nAmari\nAyanna\nDiamond\nIsabell\nIvanna\nJaylin\nKaitlynn\nKarissa\nLilia\nMacie\nMelinda\nShiloh\nSidney\nAsia\nCaylee\nJaiden\nJanice\nJazleen\nKadence\nNatali\nRyleigh\nSarina\nTiana\nZaira\nAlia\nCara\nElina\nEloise\nFinley\nGeraldine\nJazlynn\nJordin\nJosselyn\nKaliyah\nKassidy\nKaylyn\nLauryn\nMalaya\nMariam\nMarianna\nPaisley\nRoxanna\nSelene\nXitlali\nAliana\nAlivia\nAnanya\nCielo\nDeanna\nDestinee\nElaina\nKaylani\nLupita\nMaile\nRenee\nSaanvi\nThalia\nVanesa\nAnnalise\nCitlaly\nElianna\nGiana\nHana\nJocelynn\nKaylah\nLacey\nMckayla\nMicaela\nMilan\nNicolette\nSoleil\nStacey\nTina\nYamileth\nAmina\nBetsy\nBrandy\nBrissia\nGissel\nIvette\nKarly\nKatrina\nLailah\nLeilany\nMagdalena\nMariyah\nMylee\nRiya\nSheila\nShyla\nYessenia\nAmani\nAmaris\nBriseida\nDiya\nEunice\nEve\nGiuliana\nGrecia\nJacquelin\nJaneth\nKalea\nKaris\nKasey\nNoa\nSilvia\nSuri\nAditi\nAinsley\nAisha\nAlisha\nBailee\nCarol\nCharlene\nCheyanne\nJackelyn\nJizelle\nLianna\nLilianna\nMillie\nMyla\nPrincess\nArabella\nCarolyn\nJaylynn\nJocelyne\nKasandra\nKaylen\nKenzie\nMarcela\nMeghan\nNaima\nNoelani\nPearl\nRaegan\nRhianna\nVioleta\nAdamaris\nAdelina\nAleah\nAnnabel\nCelina\nClare\nCoral\nDesirae\nElissa\nFelicity\nGiada\nJaslyn\nJaylah\nJazmyn\nKyleigh\nMiya\nReina\nRosalinda\nSelah\nVivienne\nAda\nBeatrice\nCailyn\nCambria\nDarla\nElsie\nEstefani\nKaryme\nKaylynn\nLara\nLorelei\nMayte\nShreya\nVivianna\nAnjali\nAstrid\nBrenna\nIreland\nLondyn\nLorelai\nLourdes\nMika\nMyah\nPhoenix\nTamara\nAliah\nAnalia\nDayanna\nDeborah\nElliana\nJenifer\nJewel\nKirsten\nMaleah\nMelani\nMylie\nNadine\nPriscila\nXitlaly\nYaretzy\nAliza\nAmiyah\nAni\nAriadna\nCalista\nHaven\nIvana\nJanae\nJaniyah\nJaylen\nJoelle\nKrista\nNeveah\nNorah\nSanai\nTori\nAlannah\nBryana\nCandy\nCarlie\nColette\nDavina\nDesteny\nDianna\nEmmy\nJaida\nJeanette\nJolene\nKallie\nKristin\nKristine\nNatalya\nNola\nRaylene\nRosario\nRyann\nSahara\nTyler\nZariah\nZoie\nAanya\nAbbigail\nAmya\nAnais\nAnissa\nAriella\nAya\nCherish\nDafne\nEstella\nGisel\nGriselda\nJanette\nJaylyn\nJiselle\nKeilani\nKeily\nLiberty\nLivia\nMadalynn\nMeredith\nNaomy\nSky\nSkyla\nSofie\nVicky\nAbbey\nDevyn\nEvangelina\nHalle\nIsela\nItalia\nJaquelin\nJourney\nJustice\nKarime\nKatia\nMelia\nMira\nRosie\nShayna\nTaliyah\nTrisha\nYajaira\nBreana\nBriseyda\nChiara\nEricka\nGillian\nIrma\nIzabel\nJoselin\nLilyanna\nLuisa\nMagaly\nMaryam\nMaxine\nNikki\nRhea\nShea\nSloane\nSoraya\nTatyana\nViridiana\nYulissa\nAlyna\nAmiya\nArleth\nAsha\nBonnie\nCandice\nCasandra\nChantal\nCitlalli\nDani\nEvelynn\nEvie\nJackie\nJoanne\nJuanita\nKianna\nLaylah\nLillie\nMaeve\nMarlie\nMilly\nSaniya\nVania\nVenus\nVera\nAmalia\nAngeles\nAntonia\nArlette\nArya\nAyana\nDeja\nDelia\nIzabelle\nKamilah\nKarely\nKirra\nMadilynn\nMara\nMilla\nNichole\nRianna\nSamira\nSaniyah\nStar\nYaneli\nAideliz\nAkira\nAnalise\nAvani\nBrissa\nElia\nEmme\nGisell\nIlene\nJazelle\nJocelin\nLesli\nLisette\nMaricela\nMiracle\nNyah\nRoxy\nSahana\nSaira\nTatianna\nVianney\nAnn\nBeverly\nCecelia\nCienna\nGeorgina\nGinger\nHilary\nKayli\nLynette\nMeadow\nNalani\nRachelle\nSabina\nUnique\nVianey\nAdela\nAdelyn\nAlanah\nAnnelise\nAvril\nBrittney\nCorinne\nDayanira\nGreta\nHennessy\nIndia\nJaliyah\nJana\nJaycee\nJayde\nJaylee\nJoslyn\nKlarissa\nLyra\nMandy\nNorma\nScarlette\nTiara\nYolanda\nAdrienne\nArleen\nCharlee\nDelila\nEmelia\nGeneva\nGladys\nHadley\nHarlow\nJanely\nJaniya\nJuana\nKaela\nKarlee\nLeanne\nLeena\nMariajose\nMayah\nMischa\nMoriah\nNeha\nRayna\nShaylee\nShyanne\nStefanie\nTheresa\nTianna\nTracy\nTrina\nVienna\nAdison\nAmie\nAnai\nAnisa\nAnnabell\nAnnmarie\nAntonella\nAudriana\nAundrea\nCharley\nChristiana\nDeisy\nDevon\nJianna\nKaty\nKeren\nMagnolia\nMona\nRaina\nRia\nRosalie\nSayra\nTamia\nYoselyn\nZion\nAdalyn\nAida\nAilani\nAlaya\nAlly\nAnnaliese\nAubry\nAudree\nAurelia\nAverie\nCassie\nCayla\nChelsey\nDallas\nElyssa\nEster\nGwen\nHaydee\nIvory\nIzel\nJasmyn\nKalani\nKatarina\nKristy\nLaurel\nLori\nMarlyn\nMaylin\nMayrin\nMelisa\nNylah\nOlga\nSaige\nSavana\nShriya\nSonya\nSunny\nWhitney\nZahra\nAbbie\nAddisyn\nAlayah\nAlexi\nAlexus\nAudrie\nAvalon\nConnie\nDariana\nDorothy\nEmmalee\nFrankie\nHallie\nJackelin\nJacklyn\nJaedyn\nKai\nLeela\nLeona\nMalina\nMercy\nMonika\nMyra\nRaven\nRhiannon\nSamanta\nShania\nTess\nYadhira\nZoya\nAbygail\nAdamari\nAiyanna\nAmberly\nAmia\nAmirah\nAnabell\nAnalisa\nAnamaria\nAngely\nBernice\nBrisia\nChristy\nCinthia\nDelylah\nDevin\nGema\nHailie\nJanell\nJenesis\nJordynn\nJulisa\nKarma\nKatalina\nKaylene\nKeely\nLaney\nLillianna\nMaiya\nMarbella\nMelannie\nMelony\nMilana\nMilena\nMindy\nNayely\nNoor\nRegan\nRylan\nSally\nSerina\nYsabella\nYuri\nAcacia\nAnette\nAniah\nAvah\nCarrie\nDanae\nDina\nEbony\nEmi\nFarah\nFaye\nIsha\nJanelly\nJaquelyn\nJazzlyn\nJudy\nKaili\nKalina\nKarlie\nKloe\nLillyana\nLinnea\nLucinda\nMakaylah\nMaliah\nMariel\nMarisela\nMeagan\nPilar\nPricilla\nRayleen\nRita\nSana\nSinai\nTegan\nWinter\nYanely\nYara\nYocelin\nYuna\nAhtziri\nAmerie\nAnaly\nAnayah\nAnisha\nAnneliese\nAspen\nAzalea\nBerlin\nCampbell\nCate\nCoco\nDanya\nElliot\nEmber\nGwenyth\nHoney\nInes\nIsadora\nJosefina\nKailynn\nKairi\nKaleah\nKaley\nKamora\nKaterina\nKelsie\nKyara\nLexy\nLizzet\nLylah\nMarian\nMisha\nNova\nPriya\nSaray\nSayuri\nSerene\nShaina\nSimran\nZahara\nZuri\nAbbygail\nAllysson\nAlynna\nAnnamarie\nAriah\nAyden\nBeatrix\nBetty\nBianka\nBraelyn\nBree\nCailin\nCandace\nCapri\nChanelle\nCloe\nEleni\nEmerald\nFlora\nFreya\nGisela\nGissell\nHaily\nJennie\nKacey\nKarol\nKaycee\nKendyl\nKenna\nKourtney\nKylah\nMaci\nMadisen\nMakaila\nMarcella\nMaryann\nMirella\nPetra\nPrisha\nShivani\nStefany\nToni\nVerenice\nYessica\nAdyson\nAlysa\nAlysson\nAmiah\nAnaiya\nAngelie\nAnnalisa\nArmani\nBriseis\nCalleigh\nCaydence\nCharity\nClover\nDarby\nDayna\nDoris\nElora\nEma\nHadassah\nIlana\nJaeda\nJaslynn\nJoey\nJovanna\nKaily\nKatharine\nKatya\nKierra\nLeslye\nLillyanna\nMagali\nMariella\nPaityn\nRaelynn\nRomina\nRory\nSariyah\nSolana\nStevie\nSusanna\nYazmine\nZaria\nAbigale\nAllyssa\nAnahy\nBetzy\nBlake\nCharli\nDarleen\nDemi\nDolores\nElayna\nElisha\nEloisa\nEmani\nGwyneth\nHaleigh\nIleana\nIrie\nIvonne\nIyana\nJaclyn\nJailyn\nJaya\nJayme\nJiya\nJoceline\nJuniper\nKaelynn\nKarli\nKeeley\nKendal\nLilith\nLissette\nMildred\nPayten\nQuincy\nSanaa\nShyann\nStarr\nSusie\nTaliah\nValarie\nVianca\nVida\nYamile\nZaina\nZayra\nAdelynn\nAleksandra\nAlessia\nAli\nAllegra\nAnali\nAnayeli\nArwen\nAshleen\nAyesha\nBelle\nBeyonce\nCaitlynn\nCarys\nCorina\nDarlyn\nDianne\nDivina\nElin\nEmalee\nEmelyn\nEmmie\nFelicia\nGenevie\nJacey\nJadelyn\nJael\nJalissa\nJazmyne\nJoscelyn\nJubilee\nKaleigh\nKameron\nKennedi\nKim\nLili\nLiv\nLiz\nLucie\nMaren\nMarin\nMarjorie\nMarleen\nMarli\nMelania\nNoel\nNya\nPatience\nPromise\nQuetzalli\nRamona\nRobin\nRobyn\nSabine\nSamaria\nSaya\nSoledad\nSuzanne\nTallulah\nTea\nWinnie\nZainab\nAbigayle\nAbrianna\nAdrina\nAmariah\nAmeera\nAnaiah\nAnessa\nAnyssa\nAranza\nAshely\nBrianne\nBridgette\nBrook\nCathy\nConsuelo\nDanitza\nDennise\nDesire\nDulcemaria\nEmmalyn\nEryn\nEsme\nEstela\nEstephany\nHilda\nHunter\nIxchel\nJaimie\nJalyssa\nJaniah\nJanie\nJayline\nKarolina\nKatelin\nKayle\nKristal\nLaci\nLeighton\nLibby\nLilyann\nLisbeth\nLizet\nLorraine\nMacey\nMackenna\nMari\nMaricarmen\nMeena\nMerari\nMicah\nMonserat\nNikita\nNour\nOdalis\nPauline\nRaya\nRosemarie\nSamaya\nSanjana\nSharlene\nTaniyah\nTanvi\nTayler\nTrista\nXochilt\nYulianna\nZaniyah\nAbagail\nAdalynn\nAdele\nAiden\nAilene\nAlex\nAlexsandra\nAlexys\nAlora\nAriyah\nAshanti\nAshleigh\nAshlie\nAubriana\nAvianna\nAyva\nAzaria\nBria\nBriza\nBrookelyn\nCaleigh\nCarley\nChase\nChelsy\nCierra\nDanni\nEdna\nEmelie\nEmmeline\nEstephanie\nGenessis\nGurleen\nIyanna\nJenelle\nJolina\nKailah\nKimberley\nKimberli\nKinsey\nLailani\nLainey\nLaniya\nLeana\nLeann\nLeilanie\nLela\nLeyna\nLilli\nLilyan\nLynda\nMalak\nMaricruz\nMarielle\nMaryah\nNadya\nNaila\nNaraly\nNaya\nNeela\nNellie\nNoemy\nNuvia\nOdalys\nOfelia\nPricila\nRaelyn\nRemi\nRosalyn\nSarahy\nSawyer\nSelma\nTia\nAaniyah\nAislinn\nAlaysia\nAlexie\nAleyah\nAlianna\nAline\nAlona\nAlyse\nAmyah\nAnaiyah\nAndie\nAngeli\nAngelika\nAntoinette\nAriyana\nAzariah\nBillie\nCarmela\nChaya\nChrista\nCianna\nClarisa\nDaira\nDaria\nDawn\nEmiko\nEmili\nEvalyn\nFallon\nFanny\nGracelyn\nHeavenly\nHermione\nHolland\nIla\nJalyn\nJamila\nJaydin\nJenessa\nJennah\nJesse\nKaira\nKalista\nKambria\nKamille\nKatheryn\nKathrine\nKeiry\nLaniyah\nLaylani\nLilit\nLouisa\nLulu\nMabel\nMadelin\nMadelyne\nMakaela\nMariafernanda\nMarlo\nMaylee\nMeleny\nMichele\nMichell\nNahomi\nNailah\nNubia\nRemy\nRhyan\nRilee\nRiver\nSade\nSaleen\nScout\nShira\nSiya\nSydnee\nTiffani\nViola\nVivianne\nYelena\nYoseline\nYulisa\nZariyah\nAdina\nAlexandrea\nAlix\nAlyanna\nAmayah\nAmmy\nAngelena\nAngelia\nAnnalee\nAraya\nArden\nArianne\nArissa\nArlyn\nAubrianna\nAubrielle\nBaylie\nBernadette\nBibiana\nBritany\nBryce\nCamden\nCarlee\nCarli\nChantel\nCheryl\nCiana\nCinthya\nClementine\nColbie\nDarcy\nDasha\nDaysi\nDestany\nDeziree\nDivine\nDivya\nDrew\nElliott\nElsy\nEvette\nEvolet\nEzra\nFarrah\nFrancine\nGennesis\nGiulia\nGretchen\nHayleigh\nHonesty\nIdaly\nIman\nJailynn\nJanel\nJarely\nJaretzy\nJaymee\nJeanine\nJenavieve\nJenni\nJessalyn\nJoleen\nJoslynn\nJosslyn\nJulyssa\nKamyla\nKarley\nKeilah\nKelsea\nKhushi\nLyanna\nLynn\nMae\nMalayah\nMalaysia\nMannat\nMarianne\nMarlena\nMarta\nMartina\nMattea\nMckinley\nMelanny\nMimi\nMinerva\nNaia\nNaina\nNallely\nNika\nReanna\nReece\nRio\nSamiyah\nSol\nSuzette\nSydnie\nTamar\nTammy\nTehya\nThea\nTyra\nViktoria\nYasmeen\nYuvia\nZulema\nZully\nAarya\nAdrian\nAidan\nAislynn\nAlessa\nAlizee\nAlliyah\nAlyana\nAmaia\nAmarah\nAmarie\nAmbar\nAnastacia\nAnnemarie\nAnushka\nArieanna\nAriela\nAriya\nArriana\nAshtyn\nAyah\nBetsabe\nBlair\nBrigitte\nCallista\nConstance\nDayani\nDelaila\nDelanie\nDior\nEesha\nElvia\nEmeli\nEvalynn\nEvelina\nFatimah\nFaviola\nFranchesca\nFrancisca\nGracelynn\nHellen\nIleen\nImelda\nJamilet\nJanaya\nJanea\nJanine\nJayna\nJeniffer\nJessa\nJessy\nJezebel\nJoann\nJoie\nJoselyne\nJosephina\nJovana\nJurnee\nJustina\nKacie\nKadyn\nKaelin\nKaiden\nKatlyn\nKaylan\nKelis\nKeziah\nKinsley\nKori\nKristie\nKya\nLacy\nLaisha\nLouise\nLuca\nLyndsey\nMaira\nMaisie\nMalena\nMaliha\nMarlin\nMeilani\nMilani\nMollie\nMonserrath\nNavya\nNayla\nNevaeha\nNiyah\nRana\nRiana\nRina\nRochelle\nRoselynn\nRyley\nSafa\nSahar\nSania\nSanvi\nSaoirse\nShruti\nSindy\nSloan\nSophya\nSuzanna\nSylvie\nTanisha\nUma\nVeronika\nViolette\nWilla\nXochil\nYael\nYocelyn\nZia\nAalyah\nAbriana\nAdia\nAleyna\nAlizah\nAlyza\nAmairany\nAminah\nAnaleah\nAnalee\nAnaliese\nAnoushka\nAolani\nAriadne\nAubri\nAudrianna\nAveri\nAviana\nBetsaida\nBrandi\nChasity\nDara\nDora\nEllianna\nEllis\nEmelin\nEmmaline\nEssence\nEvan\nFrancis\nGabby\nGrayson\nHarlee\nHasini\nHeily\nIlse\nInaya\nInez\nIrelynn\nIsobel\nJaela\nJaelene\nJaime\nJaleah\nJamileth\nJannet\nJazlin\nJazlyne\nJennyfer\nJesenia\nJessi\nJolee\nKalena\nKalli\nKamiah\nKarisma\nKatherin\nKathia\nKathya\nKenley\nKiersten\nKrishna\nLacie\nLaurie\nLindy\nLinette\nLiyah\nLoren\nMai\nMakenzi\nMalaika\nMedha\nMelodie\nMily\nMirian\nMoncerrat\nMonet\nMylah\nMyranda\nNahomy\nNathali\nNayelli\nNeida\nNohemi\nPenny\nRaine\nRashel\nRebeka\nRian\nRoxie\nSailor\nSakura\nSamiah\nSaniah\nSaylor\nSequoia\nSerafina\nSeraphina\nShaelyn\nShantal\nShay\nShayne\nSherlin\nSilvana\nSonja\nStarla\nStory\nSuhani\nThania\nTherese\nTriniti\nVaishnavi\nVenice\nVianna\nVy\nYanira\nYarel\nYuritzi\nZayna\nZurisadai\nAila\nAilin\nAlba\nAlinah\nAlyvia\nAmi\nAmilia\nAmrita\nAnahit\nAnaliz\nAngelene\nAngelli\nAnia\nAnja\nAri\nArionna\nAthziri\nAudra\nBerlyn\nBertha\nBetzaida\nBobbi\nBryn\nCaelyn\nCamdyn\nCayden\nCecily\nCelest\nChelsie\nChristie\nCiera\nColleen\nCordelia\nDalyla\nDasia\nDebbie\nDeena\nDelany\nDella\nElana\nEllery\nElly\nElodie\nElva\nEmeraude\nEmerie\nEmmalina\nEmory\nEstelle\nEvy\nGetsemani\nGisella\nHarmoni\nHolley\nHollie\nHuda\nIlliana\nImogen\nInara\nIsaura\nIshika\nIvanka\nIzabell\nIzzabella\nJacquelyne\nJahaira\nJahzara\nJailah\nJannah\nJaselle\nJaslyne\nJasmyne\nJaycie\nJazzlynn\nJersey\nJessenia\nJia\nJoi\nJorden\nJorja\nJules\nKamilla\nKamya\nKaori\nKarmen\nKarsyn\nKeanna\nKelsy\nKenadi\nKiya\nKyndal\nLani\nLiah\nLizett\nMaddie\nMahika\nMalea\nMariaguadalupe\nMaribella\nMarilynn\nMarion\nMaryanne\nMaryn\nMeliza\nMelonie\nMiabella\nMikaila\nMinnie\nMonzerrat\nNakayla\nNariah\nNatally\nNila\nNyomi\nPaulette\nRae\nRain\nRayann\nRayne\nRichelle\nRosalina\nRoslyn\nSavina\nSeanna\nSedona\nShanna\nShaylynn\nSiri\nSneha\nSunshine\nSuraya\nSymphony\nTahlia\nTalya\nTaya\nTreasure\nVeda\nYenifer\nYoanna\nAarna\nAashna\nAbrielle\nAdrianne\nAlanie\nAleen\nAlijah\nAlizae\nAlyssia\nAmeena\nAmeerah\nAmora\nAndreya\nAngelic\nAngelyn\nAnjelica\nAtiana\nAtziry\nAudry\nAugust\nAvila\nAvni\nAymar\nBeautiful\nBrookelynn\nCaden\nCalie\nCarsyn\nCathryn\nCelena\nCharisma\nChristal\nCorrina\nCosette\nCruz\nDarya\nDaylin\nDelyla\nDenis\nDixie\nElvira\nEman\nEmiley\nEmilly\nEtta\nEvelyne\nGeovanna\nGiavanna\nGissele\nGiulianna\nGraciella\nGweneth\nHalia\nHarmonie\nIrlanda\nIssabella\nItzayana\nIvett\nJadeyn\nJaila\nJalynn\nJanna\nJaymie\nJazzmin\nJeanelle\nJeannie\nJemma\nJena\nJennavecia\nJeslyn\nJolette\nJoline\nJoselynn\nJulieana\nJulieanna\nKaliah\nKamari\nKamea\nKameryn\nKareena\nKavya\nKeana\nKeilly\nKeyra\nKyndall\nKyrah\nKyrie\nLaya\nLeiah\nLilyanne\nLiya\nLove\nLuella\nMakailah\nMalorie\nMarelyn\nMargo\nMargot\nMarguerite\nMarly\nMarylin\nMatea\nMattie\nMay\nMeera\nMena\nMihika\nMillicent\nMinna\nMisty\nMoira\nMyriam\nNailea\nNala\nNaliyah\nNandini\nNaydelin\nNereyda\nNico\nNicola\nNidhi\nNiki\nOctavia\nOdette\nOsiris\nParisa\nPoppy\nRaelene\nRafaela\nRhiana\nRileigh\nRosalia\nRosalva\nRoya\nSabella\nSahasra\nSapphire\nShae\nShaniya\nSherry\nSheryl\nShylah\nStacie\nStephania\nSymone\nTayla\nTenaya\nVenecia\nWren\nYailin\nYaquelin\nYesica\nZaida\nZayda\nZitlaly\nZora\nZyanya\nAbigael\nAdamary\nAddysen\nAdria\nAeris\nAhana\nAide\nAiram\nAkemi\nAlany\nAlea\nAleida\nAlexzandria\nAlli\nAly\nAmarissa\nAnalicia\nAnel\nAngelee\nAngella\nAnyah\nArlet\nAryssa\nAshlynne\nAsiah\nAthziry\nAvelina\nAyelen\nAyvah\nBayley\nBiridiana\nBliss\nBreann\nBreanne\nBriahna\nBriannah\nBrooklin\nBrylie\nCailey\nCameryn\nCaprice\nChanell\nCharis\nCherie\nChristian\nChyanne\nClarice\nClio\nColby\nCori\nDahlila\nDaisha\nDayamy\nDebora\nDesiray\nDevina\nDevynn\nDeysi\nDinah\nDoreen\nDyana\nDyanna\nEdie\nEllia\nElyana\nElysse\nEmmaly\nEmoni\nEnya\nEsha\nEugenia\nEvalina\nEver\nEzmeralda\nFayth\nGaia\nGiovana\nGyselle\nHalie\nHalima\nHalo\nHarleen\nIrelyn\nIsa\nItzell\nIvon\nIzabela\nJacinda\nJacquelynn\nJadelynn\nJakelin\nJanay\nJaney\nJasmeen\nJaydee\nJazel\nJazzlene\nJean\nJennavie\nJessika\nJewell\nJosette\nJude\nKaeli\nKaely\nKaleia\nKalie\nKari\nKaylei\nKenzi\nKeona\nKiani\nKiarra\nKodi\nKyah\nLaela\nLayne\nLeeann\nLeilene\nLeya\nLeylani\nLillyanne\nLitzi\nLizbet\nLuana\nLya\nMaddilyn\nMadisson\nMaleena\nManya\nMarelly\nMarielena\nMarleny\nMarwa\nMayumi\nMazzy\nMeah\nMercedez\nMichel\nMoana\nMykayla\nNariyah\nNavaeh\nNeriah\nNidia\nNiya\nNiyati\nOriana\nPeighton\nPia\nRamya\nRaniyah\nRayanna\nRebecka\nReem\nReilly\nRosita\nRyanna\nSachi\nSafia\nSafiya\nSamarah\nSamiya\nSammantha\nSaphira\nSela\nSemaj\nSharlyn\nShelly\nShia\nShianne\nShruthi\nSiara\nSoha\nSora\nStefani\nTaylin\nTerra\nTierra\nVanity\nXitlalic\nXitlalli\nYana\nYanitza\nYarelly\nYatziry\nYena\nYuritzy\nZadie\nZitlali\nZuleika\nZuleyka\nAbbigale\nAdalia\nAddie\nAdisyn\nAfton\nAixa\nAiyanah\nAkayla\nAkshara\nAkshita\nAleenah\nAleeza\nAleya\nAleyda\nAlise\nAliyana\nAlizon\nAlya\nAlycia\nAnaleigh\nAnamarie\nAndi\nAndria\nAngelin\nAngelly\nAnnalyn\nArelly\nAriday\nArisbeth\nArrianna\nAsiya\nAustin\nAustyn\nAvary\nAvneet\nAyline\nBecky\nBela\nBetzabeth\nBhavya\nBrea\nBreeana\nBreena\nBreyanna\nBrighton\nBriley\nBrizeida\nBrooklynne\nBrylee\nCalli\nCamelia\nCarmel\nCarmella\nCassia\nCatrina\nChana\nCharmaine\nChevelle\nChloee\nChrystal\nCitlally\nConstanza\nCristine\nCydney\nDaelynn\nDaliah\nDarian\nDaviana\nDeana\nDeandra\nDejah\nDestini\nDevan\nDevani\nEleanore\nEleny\nEllison\nElysia\nEmaan\nEmiliana\nEmmah\nEmmely\nEmmerson\nEmmily\nEmonie\nEris\nEternity\nEvanie\nEvyn\nGlenda\nGracy\nGuinevere\nHarlie\nHavana\nHaya\nHayli\nIda\nIleanna\nIleene\nIndira\nIsra\nItaly\nJaclynn\nJaeleen\nJamia\nJaslin\nJasline\nJaylinn\nJazzmine\nJeanna\nJenevieve\nJesselle\nJesslyn\nJiana\nJoan\nJodi\nJovie\nJulietta\nJuno\nKacy\nKady\nKaedyn\nKaidence\nKaidyn\nKailea\nKailie\nKalaya\nKalila\nKally\nKalyn\nKaroline\nKaryna\nKaytlyn\nKeala\nKealani\nKeegan\nKeilyn\nKelsi\nKensington\nKeylee\nKiran\nKiyana\nKiyomi\nKlara\nKloie\nKorina\nKrisha\nLeandra\nLeianna\nLexus\nLeylanie\nLezly\nLillyan\nLillyann\nLiza\nLoretta\nLucianna\nLula\nLyriq\nMadden\nMahi\nMaili\nMalika\nMaranda\nMaraya\nMarcia\nMariaelena\nMarijane\nMaura\nMayeli\nMerary\nMidori\nMirabelle\nMirna\nMiroslava\nMiryam\nMiyah\nMykaela\nNaidelyn\nNaylea\nNayomi\nNazareth\nNiamh\nNickole\nNinel\nNisha\nNishka\nOdessa\nOpal\nPaiton\nPersia\nQueenie\nRania\nRena\nRisa\nRoberta\nRowen\nRyanne\nSalina\nSalome\nSamirah\nSamya\nSaydee\nSephora\nSeptember\nSeren\nSeriah\nShana\nShaylah\nSheccid\nSia\nStormy\nSumaya\nTala\nTanner\nTaytum\nTera\nTeresita\nTyanna\nVallery\nVarsha\nVivica\nVivien\nWynter\nYakelin\nYanet\nYtzel\nYudith\nYumi\nZahira\nZarah\nZena\nZuleyma\nAarushi\nAdalee\nAdalina\nAddisen\nAdelaida\nAerin\nAiko\nAiled\nAiley\nAime\nAkasha\nAkeelah\nAlinna\nAlyce\nAmada\nAmairani\nAmeya\nAnagha\nAnakaren\nAnalyssa\nAnarosa\nAnay\nAneesa\nAnh\nAnica\nAnnalie\nAnneke\nAnnel\nAnnet\nAnyelin\nAoife\nApple\nArella\nArianah\nArushi\nAryn\nAshlan\nAsma\nAudryna\nAura\nAutum\nAvamarie\nAvarie\nAylen\nAysha\nAzalia\nBethanie\nBrianah\nBrianda\nBriar\nBriceida\nBrihanna\nBrinley\nBrynne\nCady\nCarleigh\nCarter\nCatarina\nCharvi\nChole\nCiena\nCleo\nCristy\nCyan\nDaijah\nDakoda\nDannika\nDarianna\nDarlin\nDayra\nDeasia\nDestanie\nDeyanira\nDezirae\nDisha\nDynasty\nEgypt\nEla\nElizah\nElli\nEmmi\nErandi\nEriana\nEstrellita\nFlorence\nGalia\nGenevive\nGlory\nGracey\nGracyn\nHafsa\nHalley\nHenna\nHiba\nIdalia\nIlona\nImari\nIsmerai\nItzia\nJacy\nJadine\nJadynn\nJaeden\nJaelah\nJaelle\nJaileen\nJaina\nJameson\nJaniece\nJaydah\nJaydyn\nJaylenne\nJazell\nJeanne\nJelena\nJenell\nJennalyn\nJennica\nJesus\nJewels\nJezabel\nJolena\nJourdyn\nJuliza\nKaci\nKahlia\nKalee\nKaleena\nKalei\nKalin\nKaliya\nKalynn\nKamiya\nKamiyah\nKanon\nKarah\nKarin\nKarizma\nKaryn\nKatty\nKaytlin\nKeili\nKelli\nKellie\nKemberly\nKenadie\nKeya\nKeyara\nKeyli\nKhadija\nKhalia\nKhianna\nKilee\nKimber\nKimberlee\nKimberlyn\nKimiko\nKinley\nKiona\nKloey\nKoral\nKristyn\nKylin\nKyrsten\nLakshmi\nLanae\nLaniah\nLaryssa\nLayleen\nLeeah\nLeiloni\nLian\nLiani\nLilianne\nLillia\nLilliann\nLinden\nLisset\nLotus\nLovely\nLuci\nLunden\nMacayla\nMadaline\nMadelynne\nMadysen\nMadysin\nMaegan\nMaika\nMailee\nMaily\nMakala\nMakaylee\nMalana\nMalissa\nMaliya\nManon\nMaram\nMargaux\nMariadelcarmen\nMaribelle\nMarilu\nMarla\nMarleigh\nMaureen\nMaycee\nMaylyn\nMazie\nMelanee\nMelenie\nMerlyn\nMikala\nMilee\nMyleen\nMyrna\nNahla\nNaiya\nNare\nNarely\nNatania\nNautica\nNayana\nNayelly\nNayleen\nNelli\nNely\nNicolle\nNydia\nOcean\nOceana\nOlyvia\nPrisilla\nPriyanka\nPuneet\nRacheal\nRandi\nRaylynn\nReena\nRheanna\nRiyana\nRomi\nRosaura\nRosy\nRozlynn\nRubie\nRyland\nSamhita\nSariya\nSascha\nSatya\nSeneca\nShai\nShanelle\nShani\nShanice\nShantel\nShanti\nShaylin\nShelley\nSherilyn\nSherly\nShirel\nSianna\nSimar\nSimona\nSiomara\nSirena\nSkylee\nSocorro\nSofiya\nSolei\nSonali\nSravya\nSterling\nSujey\nSusannah\nSydni\nTaelyn\nTatiyana\nTeya\nTheodora\nTiarra\nTristan\nTristyn\nValentine\nXitllali\nYahira\nYakira\nYaneth\nYaslin\nYazlin\nYazmeen\nYelitza\nYoana\nYsabelle\nYuriana\nYuritza\nYusra\nZarina\nZiya\nZofia\nZulma\nAahana\nAalayah\nAaliah\nAalyiah\nAaralyn\nAastha\nAdaly\nAdara\nAdayah\nAdelia\nAdi\nAeva\nAgatha\nAgnes\nAgustina\nAidee\nAishwarya\nAislin\nAisling\nAiva\nAja\nAlaa\nAlanis\nAleina\nAlesandra\nAlexsia\nAlexya\nAlisia\nAllysen\nAlthea\nAlva\nAlyah\nAlysha\nAmberlyn\nAmbria\nAmreen\nAmrit\nAnaia\nAnalilia\nAnalyse\nAnanda\nAnela\nAngy\nAnicia\nAniela\nAnnalynn\nAnnia\nAnshika\nAnthony\nAnvi\nAnvita\nArcelia\nAriannah\nAries\nArin\nAris\nAriyanna\nArizbeth\nArlen\nAryam\nAryannah\nAshlin\nAtziri\nAubriella\nAubryana\nAulani\nAvalyn\nAveline\nAyari\nAyde\nAylene\nAzusena\nBaleria\nBayleigh\nBelicia\nBellarose\nBlaire\nBobbie\nBrailyn\nBraylin\nBreeanna\nBreelyn\nBrigette\nBritani\nBritanny\nBrithany\nCandelaria\nCaren\nCecile\nCharleigh\nCharlise\nChastity\nCherry\nChloey\nClarisse\nClaritza\nCorey\nCorinna\nCorrine\nCristiana\nDaija\nDalylah\nDamarys\nDanay\nDanelly\nDaniah\nDaniyah\nDaphnie\nDasani\nDayla\nDayrin\nDebra\nDelayla\nDelina\nDestinie\nDevany\nDhara\nDiara\nDillon\nDivinity\nDyani\nEdeline\nEdlyn\nElen\nElicia\nElijah\nElinor\nElis\nElizabet\nEllena\nEmarie\nEmersyn\nEmilyn\nErandy\nErendira\nErianna\nEsly\nEsthela\nEvany\nEveline\nFay\nFinnley\nFreyja\nGaby\nGizell\nGladis\nGlendy\nGrayce\nGretel\nGricelda\nHaasini\nHaiden\nHaidyn\nHanan\nHania\nHarini\nHarnoor\nHattie\nHayle\nHazelle\nHeydi\nIdania\nIndiana\nIndigo\nIona\nIrena\nIsamar\nIshani\nItxel\nIveth\nIyanah\nJacee\nJacelyn\nJackelyne\nJacklynn\nJacky\nJadah\nJaidynn\nJailene\nJakeline\nJalena\nJalene\nJalia\nJalisa\nJamiyah\nJanis\nJannelle\nJaslynne\nJasmen\nJaylani\nJayne\nJazline\nJazzelle\nJeidy\nJenavee\nJenaya\nJenise\nJhoana\nJizel\nJlynn\nJoely\nJosefine\nJosilyn\nJosselin\nJoycelyn\nJozelyn\nJulieann\nJulliana\nKaelani\nKaelee\nKaiah\nKaileigh\nKailin\nKaithlyn\nKalissa\nKamara\nKamaria\nKami\nKana\nKandice\nKareli\nKarine\nKashvi\nKasia\nKaterine\nKatherinne\nKatiana\nKaydee\nKaydin\nKaylanie\nKeara\nKeiara\nKeilany\nKeilee\nKeri\nKerry\nKeyarah\nKeyri\nKhloee\nKieran\nKimani\nKora\nKrystina\nKyanna\nKyleah\nKymani\nKyndra\nLael\nLaiba\nLanaya\nLandyn\nLane\nLarisa\nLavender\nLayah\nLaylonie\nLeeanna\nLeighla\nLexine\nLeyda\nLilee\nLilybeth\nLizabeth\nLizzette\nLois\nLora\nLynnette\nMackayla\nMadalyne\nMaddy\nMadelaine\nMahathi\nMahima\nMailey\nMaisy\nMaja\nMakiah\nMakyla\nMaleyah\nManuela\nMarelie\nMarelin\nMariadejesus\nMaribell\nMariely\nMarily\nMaritsa\nMarjan\nMarline\nMarry\nMaryan\nMarylou\nMarysol\nMason\nMathilda\nMaycie\nMayleen\nMaylynn\nMeaghan\nMei\nMelaney\nMeleah\nMeliah\nMerlin\nMerlina\nMetztli\nMica\nMicayla\nMikenzie\nMileena\nMiliani\nMirabel\nMirabella\nMishel\nMonae\nMuriel\nMyli\nMyriah\nNadeen\nNaira\nNairi\nNaleah\nNalleli\nNanami\nNanci\nNaomie\nNatalyn\nNeena\nNeomi\nNereida\nNessa\nNeva\nNeve\nNikole\nNirvana\nNoura\nNyssa\nOlivea\nPersephone\nPortia\nPragya\nPreslee\nPresleigh\nPriseis\nPrisila\nQuetzaly\nRachell\nRaeanna\nRahel\nRayah\nRenae\nRene\nRhiley\nRhylee\nRicha\nRikki\nRomy\nRosamaria\nRosio\nRuthie\nRylin\nRylyn\nSadee\nSaffron\nSaida\nSaidee\nSakina\nSalem\nSam\nSamaira\nSanaya\nSareen\nSari\nSarita\nSaryah\nSejal\nSenna\nSera\nSerah\nSevana\nSeven\nShakira\nShaniyah\nShawna\nShaya\nSheena\nSheily\nSheridan\nSiera\nSkylynn\nSkyy\nSona\nSteffany\nSuhana\nSunnie\nSuriya\nSusy\nSuzie\nSvetlana\nSynthia\nTabatha\nTaina\nTali\nTanaya\nTatyanna\nTeah\nTierney\nTiffanie\nTova\nTriana\nTrinidad\nTrish\nTylee\nUriah\nVallerie\nVannesa\nVannessa\nVianka\nVioletta\nYaindhi\nYamilett\nYamilette\nYamilex\nYanelly\nYennifer\nYsabel\nYuki\nYumalay\nZabrina\nZaya\nZayla\nZaylee\nZaynab\nZeina\nZoee\nZoha\nZury\nAaliya\nAdali\nAdalie\nAdelene\nAdelle\nAdora\nAilanie\nAilany\nAileene\nAili\nAilish\nAilynn\nAimar\nAine\nAisley\nAislyn\nAiza\nAkshaya\nAlahna\nAlaiyah\nAlaura\nAlaysha\nAlegra\nAleia\nAletheia\nAlexiah\nAlexsis\nAlexssa\nAlexza\nAlizay\nAllana\nAllysa\nAlonna\nAlyn\nAlynah\nAlysia\nAlyssamarie\nAmaiah\nAmal\nAmaree\nAmayrani\nAmbrielle\nAmely\nAmethyst\nAmiee\nAmor\nAmore\nAnabela\nAnacamila\nAnahis\nAnalaura\nAnaliah\nAnalis\nAnapaola\nAnareli\nAnasofia\nAndreah\nAndrina\nAneli\nAngelita\nAngelyna\nAngelynn\nAnijah\nAnnaleigh\nAnnaly\nAnnastasia\nAnneth\nAnny\nAnyla\nAra\nAreanna\nArgelia\nAriane\nAriatna\nArihanna\nArina\nArisa\nAshanty\nAshli\nAshna\nAsucena\nAtianna\nAudreena\nAudri\nAudrinna\nAvalina\nAvari\nAvi\nAviva\nAyani\nAyda\nAyiana\nAyushi\nBea\nBentley\nBerlynn\nBlessing\nBradie\nBrady\nBraelynn\nBreeze\nBriann\nBrina\nBrizia\nBrooklyne\nBrynlee\nBrynley\nBrynna\nCalia\nCami\nCamren\nCarisma\nCarlin\nCarmelita\nCarmina\nCarolyne\nCaterina\nCatie\nCayenne\nCeara\nCelene\nCera\nCesia\nChantelle\nCharlette\nChassidy\nChisom\nChristianna\nCiarra\nCicely\nClaribel\nClaudette\nCloey\nClowie\nCollette\nContessa\nCooper\nCorynn\nCozette\nCrista\nCyanne\nDailyn\nDalina\nDaniel\nDannah\nDannia\nDanyela\nDanyelle\nDarline\nDayannara\nDeepika\nDeisi\nDejanae\nDelaina\nDelani\nDena\nDestyni\nDevine\nDevora\nDillan\nDonya\nDorian\nDrea\nDulse\nDyanne\nEcho\nEda\nEiliyah\nEkaterina\nEknoor\nEleana\nEleena\nElexa\nElexis\nElida\nElisabet\nEliyah\nEllah\nEllaina\nElyanna\nElysa\nEmmajean\nEmmalie\nEmmalynn\nEmmanuelle\nEmylee\nEna\nEniyah\nErykah\nErynn\nEsabella\nEshal\nEsli\nEvelynne\nEzabella\nFiorella\nFrancella\nFrancheska\nFrancia\nFrankee\nGabryella\nGardenia\nGauri\nGenavie\nGenecis\nGenelle\nGenisis\nGeorgianna\nGimena\nGizel\nGizzelle\nGohar\nGraci\nGuillermina\nGwendalyn\nGwenevere\nGyzelle\nHadasa\nHaidee\nHaileigh\nHailyn\nHanah\nHansika\nHarlan\nHeba\nHeiley\nHennessey\nHiliana\nHudson\nIbeth\nIly\nInessa\nIngris\nIniya\nIsel\nIsys\nIsyss\nIyonna\nJaci\nJacie\nJadey\nJaelynne\nJaimy\nJamaya\nJami\nJamiah\nJamilett\nJamiya\nJammie\nJamya\nJanai\nJannell\nJanya\nJaritza\nJasia\nJayah\nJayanna\nJayce\nJaydan\nJaydeen\nJaylan\nJaylenn\nJazzmyn\nJeannette\nJenalee\nJenavie\nJeraldine\nJeri\nJesica\nJessilyn\nJeylin\nJezelle\nJill\nJisel\nJissel\nJisselle\nJosalyn\nJoshua\nJosslynn\nJournee\nJudit\nJulian\nJulieth\nKadie\nKaeley\nKaelynne\nKailan\nKailana\nKaileen\nKala\nKalanie\nKamori\nKaniya\nKaralyn\nKarenna\nKaterin\nKatey\nKatlynn\nKattie\nKaydance\nKaydince\nKaylena\nKayliana\nKayloni\nKayra\nKeelie\nKeelin\nKeiko\nKeiley\nKeisha\nKelani\nKellyn\nKenadee\nKennia\nKensley\nKenzy\nKeyana\nKeyanna\nKeyly\nKhali\nKhaliyah\nKhloie\nKhyla\nKiah\nKimari\nKimberlie\nKimberlin\nKimia\nKinberly\nKitty\nKitzia\nKloee\nKomal\nKortney\nKristi\nKrysta\nKyler\nKyli\nLaina\nLakayla\nLamar\nLamaya\nLamees\nLan\nLanai\nLanessa\nLanie\nLariah\nLarkin\nLashay\nLauna\nLavinia\nLaylene\nLaysha\nLeidy\nLeigh\nLeilaney\nLennon\nLeonor\nLesslie\nLessly\nLeyah\nLeylah\nLezli\nLiane\nLianne\nLielle\nLiesl\nLilie\nLilyrose\nLiora\nLiseth\nLithzy\nLizandra\nLondynn\nLoraine\nLoralei\nLoryn\nLucca\nLuiza\nLupe\nLuzelena\nLuzmaria\nLynna\nLyrik\nMaayan\nMackenzee\nMacyn\nMadalena\nMadalynne\nMaddyson\nMadelene\nMaelyn\nMahalia\nMahlia\nMahogany\nMaiah\nMairyn\nMakalah\nMalani\nMalanie\nMalayna\nMaleya\nMalinda\nMana\nManaia\nMarayah\nMariaisabel\nMariann\nMariko\nMarilin\nMariya\nMarleni\nMarlina\nMarlow\nMarlowe\nMarlyne\nMaryana\nMaryelizabeth\nMatilde\nMeara\nMeily\nMelaina\nMelena\nMelinna\nMellanie\nMelodee\nMelyna\nMerissa\nMeryem\nMeztli\nMialani\nMichayla\nMiguel\nMikeila\nMikhaela\nMilagro\nMio\nMitzy\nMiu\nMiyu\nMonroe\nMonserath\nMontana\nMuskan\nNada\nNaeemah\nNaimah\nNaisha\nNalia\nNami\nNani\nNathania\nNaveen\nNavreet\nNayelie\nNaylani\nNaylene\nNeftali\nNelida\nNeveen\nNeviah\nNeyda\nNiah\nNikitha\nNitya\nNiveah\nNivia\nNneka\nNoah\nNoemie\nNohemy\nNyema\nNyemah\nNyree\nOctober\nOlympia\nOona\nOphelia\nOrion\nPandora\nParadise\nParneet\nPatrice\nPatrisha\nPixie\nPolina\nPranavi\nPreet\nPrudence\nRadhika\nRaeanne\nRakel\nRaleigh\nRamiyah\nRaniya\nRayana\nReanne\nRebekka\nRehanna\nReign\nReyanna\nReylene\nRhian\nRianne\nRiddhi\nRisha\nRishika\nRoma\nRoni\nRonni\nRori\nRosalba\nRoselin\nRossy\nRoxane\nRuthann\nRyder\nRylynn\nSadaf\nSady\nSahily\nSama\nSamanthamarie\nSanya\nSaraya\nSarena\nSayde\nSeleste\nSenia\nShane\nSharleen\nShavon\nShaylene\nShelsea\nShilah\nShilo\nShreeya\nShylee\nSian\nSimra\nSkarlette\nSofi\nSparrow\nSrinidhi\nSukhmani\nSuki\nSulema\nSuriah\nSyria\nTaja\nTakara\nTalea\nTaleah\nTaniah\nTaniya\nTasnim\nTawny\nTayanna\nTeegan\nTeri\nTiani\nTimia\nTressa\nTrixie\nTRUE\nTula\nTyla\nUna\nValeri\nVanya\nVenezia\nVibha\nVickie\nVidhi\nVilma\nViviane\nWaverly\nWednesday\nWilhelmina\nXena\nXenia\nXiana\nYakeline\nYamila\nYamna\nYarelli\nYareni\nYarethzy\nYaritzi\nYashica\nYashika\nYatziri\nYen\nYeni\nYenna\nYeraldin\nYesmin\nYexalen\nYisel\nYissel\nYuridiana\nZaire\nZamaya\nZamora\nZanaya\nZaniya\nZenia\nZephaniah\nZina\nZinnia\nZyla\nZylah\nIsabella\nSophia\nEmily\nMia\nSamantha\nNatalie\nEmma\nAshley\nAbigail\nOlivia\nAva\nElizabeth\nChloe\nValeria\nSofia\nMadison\nAlyssa\nBrianna\nKimberly\nAndrea\nCamila\nAlexa\nVictoria\nAlexis\nEvelyn\nAllison\nJocelyn\nJasmine\nHailey\nKayla\nMelanie\nGrace\nGenesis\nKaylee\nVanessa\nValerie\nSarah\nAngelina\nAudrey\nGiselle\nElla\nDestiny\nLily\nMichelle\nLeah\nMaya\nMaria\nJessica\nZoe\nStephanie\nBella\nHannah\nArianna\nRuby\nSavannah\nMelissa\nNatalia\nJennifer\nAriana\nDaniela\nAlexandra\nKatherine\nGabriella\nTaylor\nIsabel\nLayla\nLeslie\nNevaeh\nDaisy\nAaliyah\nLiliana\nJulia\nAddison\nSophie\nAmy\nGianna\nJacqueline\nCharlotte\nSydney\nAngela\nMakayla\nDiana\nRiley\nAubrey\nDelilah\nLauren\nClaire\nAvery\nBrooklyn\nNicole\nKaitlyn\nNaomi\nMariah\nKylie\nKatelyn\nMadeline\nEva\nBriana\nKhloe\nAlondra\nGabriela\nFaith\nLillian\nBrooke\nAdriana\nAlina\nJazmin\nAnna\nMelody\nGuadalupe\nFernanda\nMegan\nAmelia\nZoey\nJade\nRachel\nPeyton\nLeilani\nScarlett\nMadelyn\nAlejandra\nMiranda\nSara\nEsmeralda\nJuliana\nStella\nValentina\nIsabelle\nViolet\nAna\nKaren\nLucy\nSienna\nSadie\nMariana\nKatie\nCrystal\nSerenity\nAngelica\nAliyah\nFatima\nXimena\nRebecca\nPaige\nTrinity\nAlicia\nElena\nMya\nBailey\nVivian\nAmanda\nJazmine\nJulianna\nLuna\nJasmin\nKeira\nMarley\nEmely\nKarla\nAriel\nIzabella\nItzel\nTiffany\nAudrina\nPriscilla\nMiley\nKarina\nAlison\nJulissa\nEliana\nMackenzie\nDulce\nLeila\nKate\nMarissa\nAutumn\nJimena\nMalia\nAileen\nSabrina\nLaila\nLizbeth\nMorgan\nIris\nAmber\nAlexia\nDanielle\nMolly\nViviana\nHaley\nSierra\nHayden\nPaola\nAmaya\nJenna\nKelly\nLilly\nNataly\nAngie\nCatherine\nJayleen\nBianca\nJoanna\nLondon\nNayeli\nAlana\nAllyson\nEllie\nMikayla\nPenelope\nJordyn\nApril\nChelsea\nPayton\nLyla\nHazel\nRylee\nEstrella\nJordan\nBrenda\nCassandra\nCynthia\nDaniella\nDenise\nCaroline\nDanna\nEden\nLucia\nMary\nBreanna\nAurora\nJaylene\nJuliet\nMelany\nMonica\nJanelle\nSasha\nYaretzi\nAlice\nKennedy\nLila\nCecilia\nVeronica\nLola\nAnnabelle\nElise\nGabrielle\nSarai\nGenevieve\nAlexandria\nAnahi\nCarmen\nJoselyn\nSummer\nErika\nNadia\nAnalia\nJayla\nCamille\nMelina\nKassandra\nMarisol\nNathalie\nCeleste\nNancy\nAshlyn\nCarolina\nJulie\nKendall\nAngel\nLaura\nReese\nChristina\nHeidi\nJosephine\nBrooklynn\nJayden\nKylee\nDayana\nDesiree\nPerla\nJada\nJillian\nKamila\nWendy\nYesenia\nErin\nJamie\nAthena\nMadeleine\nLesly\nGracie\nReagan\nIrene\nKira\nYareli\nMarilyn\nRosa\nSerena\nNina\nFiona\nKiara\nLydia\nHaylee\nIvy\nShelby\nLia\nSherlyn\nAlessandra\nSelena\nKailey\nAmerica\nNatasha\nIsla\nAdrianna\nBrisa\nGisselle\nHelen\nCassidy\nTessa\nAniyah\nTatiana\nJazlyn\nKaylie\nMarlene\nPiper\nPresley\nClarissa\nHarper\nPhoebe\nHeaven\nNoemi\nKendra\nAylin\nCarly\nClara\nMaritza\nPaulina\nRuth\nMila\nCindy\nDahlia\nCheyenne\nJohanna\nRose\nKiana\nAllisson\nAnnie\nJaslene\nKelsey\nCadence\nCaitlin\nMaliyah\nAbby\nGloria\nJaelyn\nDanica\nLexi\nArely\nCali\nEleanor\nEmilia\nLilah\nSandra\nMaddison\nTalia\nEsther\nHarmony\nJuliette\nAlisson\nCristina\nPaloma\nAnnika\nBelen\nAbril\nDana\nDelaney\nEliza\nKara\nKathryn\nMargaret\nBethany\nIsabela\nJanessa\nAnya\nDaphne\nLana\nAnika\nBrielle\nCamilla\nClaudia\nEvangeline\nHope\nSavanna\nSkylar\nYasmin\nAubree\nCatalina\nMakenna\nSiena\nCaitlyn\nMarina\nMonserrat\nBrittany\nElisa\nHolly\nJaqueline\nKrystal\nEileen\nKaelyn\nMikaela\nTeagan\nKatelynn\nNora\nAshlynn\nJayda\nKaylin\nAleena\nAmelie\nAnabelle\nEmery\nFrida\nMckenzie\nMiriam\nNoelle\nAlyson\nDanika\nLilian\nMaryjane\nMckenna\nPatricia\nShayla\nTeresa\nAdeline\nLilliana\nScarlet\nCarla\nMakenzie\nSage\nSonia\nCaylee\nElle\nLuz\nReyna\nBryanna\nDayanara\nErica\nKyla\nMichaela\nAnastasia\nLena\nLinda\nYuliana\nIliana\nJanet\nLiana\nRubi\nSarahi\nVivienne\nAlma\nKaia\nMaggie\nRihanna\nAlissa\nAzul\nBelinda\nFrancesca\nGeorgia\nGia\nJanice\nJenny\nDalilah\nDarlene\nLilyana\nAreli\nChristine\nCora\nNathaly\nTania\nKyra\nAllie\nGemma\nMadilyn\nMonique\nRoxanne\nRylie\nHanna\nMaribel\nAlivia\nAyla\nLizeth\nCallie\nCamryn\nDakota\nRosemary\nAngeline\nBarbara\nJane\nRaquel\nValery\nWillow\nAraceli\nJudith\nKiera\nKristina\nAimee\nAiyana\nAnaya\nKali\nMiah\nMilagros\nArlene\nBridget\nKaydence\nYoselin\nCameron\nCitlali\nHeidy\nKayleen\nYadira\nArabella\nCristal\nIsis\nMarely\nAngelique\nDylan\nHelena\nJessie\nLindsey\nMadelynn\nMarie\nMayra\nTatum\nAyleen\nJoy\nQuinn\nYaritza\nAlani\nAryanna\nXiomara\nCourtney\nDalia\nEsperanza\nHayley\nJulieta\nLilianna\nOlive\nDamaris\nPaula\nIvanna\nJulianne\nKathleen\nKiley\nParis\nStacy\nBerenice\nKaya\nLexie\nLindsay\nRebekah\nSamara\nAlaina\nArleth\nKaitlin\nKristen\nPaisley\nTiana\nYvette\nAracely\nCeline\nElaine\nJadyn\nJune\nSharon\nAleah\nBlanca\nGisele\nIngrid\nJacquelyn\nKayleigh\nLarissa\nLeyla\nMaia\nMakena\nXitlali\nZara\nCharlie\nEmilee\nJackeline\nKeyla\nLizette\nMartha\nSusana\nAniya\nBritney\nKayden\nKenya\nLeanna\nLucero\nRebeca\nAlanna\nCambria\nCiara\nJazlene\nJolie\nNyla\nYazmin\nAnnabella\nAshly\nJaylynn\nNorah\nStephany\nTanya\nXochitl\nAddyson\nAdilene\nBrynn\nCharlize\nGalilea\nGiana\nGiuliana\nGraciela\nJosie\nKassidy\nLisa\nLuciana\nMadisyn\nMaite\nMargarita\nNathalia\nRyleigh\nSimone\nArielle\nGizelle\nKailyn\nLondyn\nLyric\nMarisa\nNatalya\nPamela\nAmira\nEvelin\nHaylie\nKailee\nLacey\nMallory\nMireya\nPriscila\nRocio\nYarely\nAlia\nAria\nCasey\nDeanna\nEmerson\nEmilie\nHeather\nJaelynn\nJaylin\nKamryn\nLauryn\nMina\nSariah\nYamilet\nAlena\nAshlee\nChanel\nDestinee\nEdith\nEstefania\nJocelynn\nKamilah\nLorelei\nNia\nVioleta\nZaira\nAliana\nAnnalise\nAubrie\nCara\nDeborah\nDonna\nGeraldine\nJazlynn\nKarissa\nKeila\nLeia\nMadalyn\nMilan\nAliya\nCarissa\nDiya\nElliana\nHana\nKaiya\nMacy\nMarlee\nPearl\nAnabel\nAryana\nDalila\nDarla\nGwendolyn\nKathy\nKatrina\nLesley\nLilia\nRoselyn\nSkye\nAda\nDayanna\nDenisse\nFabiola\nGiovanna\nImani\nKaliyah\nKimora\nLeilah\nLogan\nMariam\nRomina\nSelah\nTara\nAmiyah\nAnabella\nElyse\nFinley\nLea\nMaliah\nSalma\nShiloh\nSkyla\nAnne\nAnnette\nBrissa\nCandy\nJaylah\nKaylani\nMaleah\nMariela\nMarlen\nMercedes\nNelly\nParker\nRoxana\nRyan\nSandy\nSilvia\nAlize\nAnnabel\nCarina\nLuisa\nRenee\nAdelyn\nElianna\nEve\nJazleen\nJolene\nKaylyn\nLupita\nMira\nMiracle\nNatalee\nRowan\nRoxanna\nSkyler\nAbbigail\nAlayna\nAlisha\nEllen\nHailee\nJaden\nJasleen\nKenzie\nLina\nLorena\nMadilynn\nSavanah\nSelene\nYamileth\nAdrienne\nAilyn\nColette\nElsa\nJoyce\nKalia\nMalaya\nMyla\nNatali\nPhoenix\nRegina\nSidney\nAisha\nAmara\nAsia\nIsabell\nJaniyah\nJohana\nLeticia\nNadine\nRosalie\nShaila\nShirley\nSoleil\nSylvia\nVirginia\nYuridia\nAdamaris\nAliah\nBrenna\nDania\nEvangelina\nEvie\nHarley\nJaiden\nJayde\nJazmyn\nKadence\nKaitlynn\nLucille\nLylah\nRachael\nRenata\nSaniyah\nSloane\nTabitha\nThalia\nXitlaly\nAddisyn\nBaylee\nCitlaly\nDominique\nElisabeth\nIreland\nJosselyn\nKalani\nLailah\nMacie\nMatilda\nMayte\nNova\nRiya\nSelina\nShreya\nVivianna\nYahaira\nZariah\nZoie\nAdalyn\nAmalia\nElyssa\nEstefany\nFlor\nGrecia\nIvette\nJackelyn\nLitzy\nMadyson\nMareli\nMariyah\nMicaela\nMillie\nRhea\nAdelaide\nAnais\nElaina\nJaslyn\nJoselin\nKaylen\nLilyanna\nMadalynn\nMagdalena\nMckayla\nMyah\nNaima\nPrincess\nRosario\nStacey\nYolanda\nAinsley\nAmani\nAnanya\nAyana\nDiamond\nEloise\nElsie\nIvana\nJustice\nKenia\nLeilany\nMariajose\nMarianna\nMeghan\nMelinda\nPrecious\nShannon\nShyla\nSoraya\nWhitney\nAlisa\nAliza\nCarolyn\nHarlow\nJustine\nKaylynn\nKeilani\nLiberty\nLillie\nNoa\nRosie\nSusan\nVianney\nAbbie\nBeatriz\nCelia\nGriselda\nHillary\nJazzlyn\nKailani\nKyleigh\nLaylah\nLeona\nLianna\nMaryam\nMontserrat\nReina\nAdela\nBetsy\nDavina\nElissa\nEsme\nJoana\nKaila\nKirsten\nNylah\nSheyla\nSuri\nTina\nVianey\nAmaris\nAstrid\nChiara\nClare\nEstefani\nJoslyn\nJourney\nKaris\nKatia\nKeily\nLluvia\nRaylene\nSaanvi\nAnaly\nAnissa\nAnjali\nAyanna\nCielo\nFrances\nGiada\nGreidys\nJaliyah\nJaniya\nKaylah\nLourdes\nMaxine\nMilana\nNicolette\nSaniya\nUnique\nAdelina\nAlyna\nDevyn\nElina\nJaylen\nJazelle\nJoelle\nKaily\nMaricela\nMilena\nSky\nStevie\nTamara\nTrisha\nYessenia\nAhtziri\nAida\nAnalise\nBrandy\nCharlene\nDafne\nEmmalee\nEmmy\nIsela\nJaylee\nJiselle\nKarely\nKatarina\nKayley\nMiya\nSarina\nSimran\nAbbey\nAnali\nAnita\nCherish\nDestiney\nFarrah\nFelicity\nIzabel\nJaneth\nJoseline\nLara\nMika\nNeveah\nRoxy\nSaray\nTheresa\nVanesa\nWinter\nYaneli\nYaretzy\nAriella\nAvani\nCorinne\nEunice\nEvolet\nJaida\nKasandra\nKianna\nKrista\nLeighton\nLynette\nMarlie\nMeredith\nMylee\nMyra\nNeha\nNoor\nRaegan\nRhianna\nShriya\nTaryn\nZahra\nAanya\nAmari\nArya\nAudriana\nBerlin\nBridgette\nCelina\nCheyanne\nCoral\nDelia\nDemi\nEmber\nGwen\nHaven\nJeanette\nKalea\nLidia\nMoriah\nNikki\nNoelia\nRyann\nSahana\nAbbygail\nAiyanna\nBryana\nCapri\nChastelyn\nDianna\nEricka\nEvalyn\nEvelynn\nGina\nGinger\nIzel\nJacquelin\nKallie\nKasey\nKlarissa\nLillyana\nLorelai\nMeadow\nNalani\nRita\nScarlette\nSofie\nTanvi\nTyler\nViridiana\nYasmine\nAkira\nAmerie\nAmirah\nAni\nAriadna\nAverie\nBeatrice\nBonnie\nCailyn\nCandice\nCarlie\nCharlee\nCitlalli\nDesteny\nGenessis\nHailie\nJacklyn\nJanae\nKarime\nKarly\nKayli\nKinsley\nLeanne\nRaina\nSamira\nTamia\nTatianna\nAbygail\nAya\nBailee\nBrittney\nCienna\nDasha\nGeorgina\nHalle\nHarleen\nIsha\nJacey\nJaylyn\nJizelle\nJocelyne\nJuana\nKirra\nKristin\nMarcela\nMaylin\nNola\nOdalys\nStefany\nTess\nTianna\nYsabella\nYuna\nYvonne\nZuri\nAlanah\nAlannah\nAnneliese\nArlette\nCalista\nCandace\nGladys\nGwyneth\nJaquelin\nJewel\nKai\nKatalina\nKristine\nLisbeth\nMaeve\nMayrin\nRayne\nRegan\nRiver\nRosalinda\nSaira\nAilani\nAilin\nAlessia\nAmiah\nAvah\nDani\nDeisy\nDiane\nEbony\nElia\nGillian\nGissel\nJaclyn\nJaidyn\nKairi\nKaley\nKylah\nLaney\nLisette\nMacey\nMakaylah\nMalina\nMarlyn\nMayah\nMelani\nMelia\nNoelani\nRayna\nShayna\nYajaira\nAditi\nAlysson\nAmya\nAnai\nAnaiah\nAngeles\nAriah\nAurelia\nAviana\nBritany\nCarol\nCassie\nDelila\nDesirae\nEmerald\nFrankie\nHadley\nJanie\nJanine\nJuniper\nKarol\nKarolina\nKaryme\nKeren\nLeena\nLyra\nNorma\nRaya\nSabine\nSaige\nTatyana\nTegan\nTori\nVienna\nYara\nAlaya\nAlly\nAubrianna\nAzucena\nCasandra\nChantal\nDanae\nEleni\nEstela\nJackie\nJanette\nKennedi\nLeela\nLucinda\nMaile\nMelisa\nMicah\nNellie\nNyah\nRaven\nSally\nSanjana\nShea\nSinai\nStarr\nSunny\nYoselyn\nYulianna\nAmina\nAniah\nAntonia\nAudrie\nBetty\nClementine\nDeja\nEmme\nGracelyn\nGreta\nHolland\nJaya\nJoanne\nJocelin\nJordin\nKarlee\nKarma\nKaylene\nLillianna\nMakaila\nMara\nMariella\nMeagan\nPatience\nPetra\nRia\nSahara\nSydnee\nTia\nTracy\nVera\nAbrielle\nAdalynn\nAline\nAmayah\nAmberly\nAnessa\nAnn\nAnnalee\nArissa\nAspen\nAvianna\nBlair\nBree\nBrylee\nCorina\nDevin\nGreydis\nGwenyth\nHaily\nHennessy\nItalia\nIzabelle\nJanell\nJenifer\nKacey\nKatya\nKenley\nKourtney\nLorraine\nMandy\nMindy\nPaityn\nPricilla\nRaelynn\nRayleen\nRobin\nSahasra\nSana\nShania\nShyanne\nToni\nViolette\nAngelie\nArlyn\nBreana\nBriza\nCaydence\nCayla\nChanelle\nCoco\nConstance\nDallas\nEmelia\nEmi\nEmmalyn\nFelicia\nInes\nJaedyn\nJana\nJessenia\nKaelynn\nKalina\nKaty\nNallely\nOlga\nRianna\nRory\nRylan\nSariyah\nSheila\nVida\nYazmine\nYulisa\nYulissa\nZulema\nAlianna\nAnayeli\nAriadne\nAudree\nBeatrix\nBernice\nBraelyn\nBriseida\nBriseyda\nCecelia\nChelsey\nCierra\nDariana\nDesire\nDior\nGeneva\nGisel\nGisell\nHonesty\nJaquelyn\nJaslynn\nJaycee\nJemma\nJenesis\nKailah\nKamora\nLeann\nLexy\nLiv\nLivia\nLucie\nMalak\nMari\nMarisela\nMiabella\nMisha\nNaomy\nNika\nNya\nRemy\nRosalyn\nSakura\nSanai\nSonya\nStefanie\nTallulah\nThea\nAdyson\nAlayah\nAnabell\nAnaleigh\nAnayah\nAnisha\nAntoinette\nAntonella\nAundrea\nAvalon\nAzalea\nBelle\nBlake\nChristiana\nCianna\nCinthia\nElliot\nGema\nIndia\nIrma\nJuanita\nJulisa\nKailynn\nKarlie\nKaterina\nKatharine\nKierra\nLaniyah\nLaurel\nLillyanna\nLovely\nMagaly\nMaiya\nMarian\nMaricruz\nPayten\nRamona\nSamanta\nSanaa\nSaylor\nSol\nTahlia\nTiara\nVicky\nWilla\nYadhira\nZainab\nZariyah\nZoya\nAdele\nAdelynn\nAleida\nAlexus\nAlyah\nAmiya\nAnisa\nAnnabell\nAnnalia\nAnnamarie\nAnnelise\nAsha\nBria\nBriseis\nCaleigh\nCloe\nConnie\nCosette\nDaira\nDara\nDayami\nDelylah\nElisha\nEma\nEmelie\nEssence\nGiavanna\nHilary\nJosefina\nKaela\nKaili\nKaleigh\nKarli\nKenna\nKloe\nKristy\nMagnolia\nMalaysia\nMalena\nMaryann\nMelony\nMisty\nMonserrath\nNaila\nNariah\nNariyah\nNayely\nNichole\nPricila\nRachelle\nRemi\nRosemarie\nSamiyah\nSerafina\nTaliyah\nYarel\nYessica\nYuri\nZaniyah\nAaliah\nAlexsandra\nAli\nAlliyah\nAlynna\nAmariah\nAmia\nAnnalisa\nAnnaly\nAriela\nArriana\nAudra\nCaitlynn\nCampbell\nCarley\nCarrie\nChristy\nDaria\nDorothy\nEdna\nEstella\nHaleigh\nHallie\nHalo\nHilda\nIleen\nItzayana\nJailyn\nJazzlynn\nJessa\nJianna\nJoscelyn\nKacie\nKaleah\nKatheryn\nKimberley\nLailani\nLesli\nLeylani\nMaira\nMalayah\nMarcella\nMaren\nMarlena\nMarwa\nMilani\nNadya\nNailah\nPrisha\nPromise\nSamya\nSavana\nSerina\nShira\nStar\nWinnie\nYanira\nAbigale\nAdrina\nAlexandrea\nAlizah\nAlyvia\nAmmy\nAnaiya\nAndie\nAriyah\nAudrianna\nBetzy\nBraelynn\nBreanne\nCaelyn\nCarlee\nCarys\nCathy\nCharley\nCharli\nDevon\nDixie\nDrew\nElvia\nEmeli\nEmerie\nEvalynn\nEvelina\nEverly\nFranchesca\nGurleen\nHadassah\nHarlee\nHoney\nHunter\nIman\nIrie\nJackelin\nJaelene\nJanelly\nJia\nJordynn\nKaelin\nKaira\nKatlyn\nKaycee\nLori\nLynn\nMakaela\nMarin\nMercy\nMollie\nNaya\nNico\nNoemy\nOdalis\nRain\nSabina\nSamaya\nSharlene\nSymphony\nTaniyah\nTaya\nVeda\nVenice\nVivien\nYael\nYaquelin\nYocelyn\nZaria\nAlexi\nAlexie\nAlexys\nAleyda\nAmeera\nAmie\nAnushka\nAranza\nArleen\nAshlie\nAubry\nAyesha\nAzaria\nAzariah\nBeverly\nBianka\nBrihanna\nCalleigh\nClover\nCordelia\nDarby\nDina\nElvira\nEmelyn\nEstelle\nFallon\nFarah\nFlora\nFrancine\nFreya\nGissell\nGiulia\nHeavenly\nIla\nIlene\nImelda\nIrelyn\nIvory\nJael\nJaela\nJalissa\nJanely\nJazmyne\nJudy\nKamari\nKamya\nKaroline\nKatherin\nKayle\nKelsie\nKendal\nKiersten\nKimberlyn\nKristal\nLaci\nLayne\nLilith\nLinnea\nLizet\nMaci\nMadaline\nMadelin\nMaliya\nMarbella\nMariafernanda\nMarlowe\nMartina\nMaylene\nMckinley\nMelannie\nMylah\nNailea\nNayelli\nRilee\nRyley\nSanaya\nShaelyn\nSiri\nTammy\nTayla\nTea\nVivianne\nWren\nYamile\nZaina\nAbagail\nAdina\nAislinn\nAlea\nAlysia\nAmaia\nAmairany\nAnalisa\nAngelyn\nAnoushka\nArden\nAshleen\nAshleigh\nBaylie\nBeyonce\nBibiana\nCarmela\nCate\nChelsy\nCinthya\nCorrina\nDivine\nDora\nElana\nElly\nElora\nEryn\nEternity\nGissele\nGladis\nGretchen\nHayleigh\nIleana\nIsadora\nIyana\nJaeda\nJalyssa\nJanel\nJenessa\nJennie\nJennyfer\nJessalyn\nJesslyn\nJiya\nJulieanna\nKalie\nKavya\nLeilanie\nLeyna\nLibby\nLilyann\nLove\nMabel\nMadisen\nMagali\nMariaelena\nMarielle\nMayleen\nMeah\nMei\nMeilani\nMichell\nMilla\nNyomi\nPilar\nRania\nReanna\nReece\nReilly\nRosalia\nScout\nSelma\nSerene\nSoledad\nSunshine\nSydnie\nYanely\nYoana\nZayra\nAbrianna\nAlessa\nAlex\nAnaiyah\nAnaliyah\nAnel\nAnyssa\nAri\nAriyana\nAshtyn\nAudry\nAvigail\nAyelen\nBecky\nBerlyn\nBrigitte\nCailey\nCharity\nCleo\nDarleen\nDivina\nEllery\nEmmeline\nGisela\nGisella\nGracelynn\nHafsa\nHaydee\nIlana\nIssabella\nIvonne\nJailynn\nJaime\nJamileth\nJaniah\nJenelle\nJersey\nJulyssa\nKalyn\nKamille\nKaycie\nKeely\nKelis\nKeyra\nKinsey\nKya\nLeana\nLeeann\nLillyann\nLilyan\nLiyah\nLizzet\nMaegan\nMarylin\nNahomi\nNaia\nNikita\nOfelia\nPaulette\nPenny\nPoppy\nRandi\nRio\nRobyn\nRochelle\nSade\nSamaria\nSaya\nSayra\nShay\nShaylee\nSiya\nTalya\nXochilt\nYoseline\nAdamari\nAdelaida\nAiko\nAlizon\nAllegra\nAmaiya\nAmi\nAmilia\nAminah\nAnette\nAnnaliese\nAnnmarie\nArianny\nAriya\nArmani\nAtiana\nAubriana\nAubrielle\nAveri\nAvni\nAvril\nAyva\nBrea\nBrianne\nBriley\nBrookelynn\nCamden\nCecily\nChana\nChelsie\nChristian\nChristie\nColby\nDanya\nDawn\nDebora\nDoris\nDulcemaria\nEla\nElexis\nEmmi\nEster\nEvan\nFaye\nFrancisca\nGaia\nHaya\nImogen\nInez\nIsaura\nIzzabella\nJahzara\nJasline\nJayme\nJaymie\nJeanine\nJenevieve\nJoann\nJoceline\nJoslynn\nJovana\nJovanna\nJude\nKamea\nKaori\nKarah\nKarisma\nKatelin\nKeeley\nKeylee\nKyndall\nLainey\nLaya\nLiya\nLouisa\nLuella\nLuzmaria\nMadelyne\nMae\nMargot\nMeera\nMeghna\nMichel\nMoira\nMylie\nNatally\nNavya\nNeela\nNubia\nPauline\nPia\nPreslee\nPreslie\nPrisila\nPriya\nQuetzalli\nQuincy\nRhiannon\nRhyan\nRichelle\nRubie\nSabella\nSafa\nSawyer\nSayuri\nSequoia\nSeraphina\nShylah\nSonja\nStefani\nSusanna\nSylvie\nTala\nTeya\nTreasure\nTrista\nUma\nValarie\nVenus\nVianca\nYasmeen\nZofia\nAalyah\nAashi\nAdelle\nAhtziry\nAja\nAlanie\nAlora\nAlyse\nAlyssandra\nAmairani\nAnahy\nAnaleah\nAnaliah\nAnalicia\nAnamaria\nAnela\nAngely\nAnnalie\nAnusha\nAura\nBetsabe\nBristol\nBrookelyn\nCailin\nCaylin\nCesia\nChevelle\nCloey\nConsuelo\nCoraline\nDarlyn\nDaylin\nDayra\nDelany\nDevynn\nDianne\nEdie\nElin\nEllianna\nElsy\nEmmalina\nEsha\nEver\nFanny\nGianni\nHadasa\nIdaly\nIlianna\nIveth\nIxchel\nJailene\nJarely\nJaymee\nJazel\nJenavieve\nJoleen\nJulieana\nKaliah\nKalissa\nKamilla\nKarleigh\nKeanna\nKeiry\nKhushi\nKimani\nKinley\nKiyomi\nKyara\nLacy\nLani\nLeeanna\nLeiana\nLeylah\nLilit\nLiz\nLouise\nLuca\nMadelynne\nMalea\nMaliha\nMariel\nMarleen\nMaryah\nMattie\nMaura\nMeena\nMelania\nMelenie\nMeleny\nMercedez\nMikaylah\nMiliani\nMilly\nMiyah\nMonet\nNaiya\nNeriah\nNitya\nNohemi\nOcean\nOphelia\nRena\nRomy\nRosy\nSamiah\nSanvi\nSaphira\nSaydee\nShae\nShaina\nShilah\nShivani\nShyann\nSia\nSicily\nSloan\nTamar\nTaylee\nTierra\nTyra\nViola\nZahara\nZion\nZitlali\nAaralyn\nAdaline\nAilene\nAkshara\nAlanis\nAlba\nAllysson\nAlona\nAlysa\nAmeerah\nAmyah\nAnahit\nAnalee\nAnastacia\nAndi\nAngelena\nAnnasophia\nArianne\nAshlin\nAubri\nAugust\nAustyn\nAvalyn\nAyumi\nBernadette\nBertha\nBillie\nBlessing\nBrissia\nBrittanya\nCalliope\nCamdyn\nCarli\nCayden\nChyna\nCiana\nCiera\nDayla\nEesha\nEmmerson\nEmmie\nEmmily\nEnya\nEvalina\nEvette\nFatimah\nFayth\nGaby\nGetsemani\nIlse\nIlyana\nIrelynn\nIsa\nIsobel\nJadelyn\nJalynn\nJamila\nJamya\nJaretzy\nJayleene\nJeannette\nJennah\nJessika\nJoey\nJoselyne\nJustina\nKadyn\nKalei\nKalista\nKameryn\nKatheryne\nKaydee\nKeilah\nKellie\nKelsi\nKendyl\nKhadija\nKhalia\nKlara\nLaylani\nLeigha\nLela\nLili\nLois\nLulu\nLyndsey\nMai\nMaisy\nMalinda\nMaribelle\nMarjorie\nMarli\nMazzy\nMelodie\nMichele\nMonika\nNala\nNayelly\nNeida\nNikole\nNishka\nNoel\nNour\nNuvia\nRaelyn\nRaine\nRina\nSailor\nSavina\nSedona\nSeleste\nShianne\nSianna\nStacie\nStarla\nSymone\nTanisha\nTaraji\nTayler\nTemperance\nTerra\nVallerie\nYocelin\nZaara\nZadie\nZahira\nZaniah\nZarah\nAarya\nAcacia\nAdamary\nAdaya\nAeris\nAide\nAiden\nAlaysia\nAleeza\nAlexah\nAlizee\nAllyssa\nAlycia\nAmbar\nAmery\nAnalie\nAngelika\nAngella\nAnh\nAnia\nAnja\nAnnaleah\nAnnalyse\nArabelle\nAraya\nAries\nAryah\nAviva\nAyah\nAyden\nBentley\nBrandi\nBriannah\nBriceida\nBrook\nCarmella\nCarolynn\nCaylie\nCerenity\nCharis\nCharleigh\nChrystal\nClarisa\nColbie\nDanni\nDarianna\nDebbie\nDeziree\nElli\nEllison\nElyana\nEmelin\nEmelina\nEmersyn\nEmiko\nEmmaline\nEmmely\nEmory\nEmry\nErandy\nEvelynne\nEvony\nFlorence\nGardenia\nGenevie\nHarmoni\nIsamar\nJaimie\nJakelin\nJariah\nJasmyn\nJaydin\nJayna\nJayne\nJazlin\nJazline\nJazlyne\nJean\nJelena\nJezelle\nJubilee\nJulieann\nJulienne\nKaci\nKamara\nKambria\nKamyla\nKareena\nKarena\nKarsyn\nKaydance\nKloey\nKora\nKrisha\nKristie\nLacie\nLaisha\nLamya\nLarkin\nLeeah\nLexus\nLiah\nLian\nLillyan\nLilyanne\nLyanna\nLynda\nMadysen\nMaisie\nMaja\nMaleny\nMargaux\nMariadejesus\nMarleny\nMarlo\nMattea\nMedha\nMelanny\nMelonie\nMinerva\nMirella\nMirna\nNahomy\nNavaeh\nNeala\nNyssa\nOdessa\nOriana\nOsiris\nRachell\nRihana\nRosalba\nRosio\nRoslyn\nSamirah\nSammantha\nSaniah\nSapphire\nSerinity\nShaela\nShanti\nShelly\nSirena\nSkylah\nSonali\nSuriya\nTaelyn\nTaleah\nTehya\nTru\nVanity\nVannessa\nVerenice\nVictory\nViviane\nVy\nXitlalli\nYanet\nZia\nZola\nZuleyka\nAarna\nAbilene\nAddelyn\nAdison\nAdisyn\nAila\nAiram\nAleenah\nAlesandra\nAlexxa\nAlizae\nAlli\nAllizon\nAlthea\nAlysha\nAlyssia\nAmarie\nAmely\nAn\nAnay\nAndria\nAngeli\nAnsley\nAnvi\nArianah\nAthziry\nAven\nAzaleah\nBetzaida\nBreonna\nBrianda\nBriella\nBrithany\nBryce\nCailee\nCaliana\nCalla\nCallista\nCarleigh\nCarrington\nCelena\nChaya\nCherry\nChloee\nChrista\nColleen\nDaiana\nDanitza\nDasia\nDaysi\nDelanie\nDenice\nDevan\nDevany\nDezirae\nDyana\nEgypt\nElicia\nEllis\nElva\nElysia\nEmani\nEmiliana\nEmilly\nEmmalynn\nEris\nFiorella\nGenavieve\nGennesis\nGianella\nGiannah\nGimena\nHaiden\nHarlie\nHarmonie\nHavana\nHaylen\nHellen\nHermione\nHollie\nIlliana\nInaya\nIndira\nIvanka\nIvon\nIyla\nIzabela\nJaimee\nJanai\nJanay\nJannelle\nJannet\nJanya\nJaslin\nJaycie\nJaydah\nJaydee\nJayline\nJeimy\nJemima\nJena\nJessi\nJisselle\nJosalyn\nJosslyn\nKamaria\nKamiyah\nKandice\nKarley\nKaterin\nKatty\nKealani\nKeara\nKelli\nKelsy\nKenadee\nKeziah\nKhloey\nKimber\nKitana\nKrysta\nKyli\nLaasya\nLaniya\nLaysha\nLeilanni\nLeilene\nLeya\nLilli\nLinette\nLizbet\nLizett\nLizzette\nLya\nLynnette\nMahi\nMailyn\nMarcia\nMariaguadalupe\nMariely\nMarilu\nMason\nMaylee\nMegha\nMemphis\nMikaila\nMilah\nMily\nMimi\nMirabelle\nMirian\nMisaki\nMonzerrat\nMyriam\nNandini\nNayla\nNaylene\nNayomi\nPari\nPersephone\nQuetzali\nRebeka\nReem\nReya\nRipley\nRowen\nRoxie\nSachi\nSafiya\nSahar\nSaleen\nSania\nSarita\nSera\nShaniya\nShantal\nShayne\nSherry\nSindy\nSoha\nStory\nSuhana\nSuraya\nSvetlana\nTalitha\nThania\nTherese\nTrina\nVannesa\nVanya\nYailin\nYeraldin\nYesica\nYtzel\nYuritzy\nZaniya\nZayda\nZayna\nZitlaly\nZuleyma\nAaniyah\nAbigael\nAdah\nAdalia\nAdelia\nAdelin\nAdrian\nAgnes\nAiled\nAine\nAislin\nAlaia\nAleksandra\nAleyna\nAlisia\nAlizay\nAly\nAlyana\nAlyiah\nAlyza\nAmalie\nAmarah\nAmrit\nAnanda\nAneesa\nAngelia\nAngelic\nAnvita\nAnyah\nArie\nArieanna\nAriyanna\nArlet\nArlett\nArline\nArshia\nAshanti\nAsiah\nAtziry\nAvamarie\nAvleen\nAyari\nAylene\nAysia\nAzusena\nBethanie\nBreann\nBrinley\nBrisia\nBrooklynne\nBrylie\nBrynlee\nCailynn\nCaliah\nCalissa\nCalli\nCameryn\nCaren\nCarson\nCarter\nCatelyn\nChanning\nChantelle\nChase\nCiena\nCooper\nDagny\nDahlila\nDailyn\nDaizy\nDamya\nDarcy\nDasani\nDayleen\nDelailah\nDelainey\nDesiray\nDevora\nDeysi\nDia\nDinah\nDolores\nDoreen\nDream\nElayna\nEleana\nElinor\nEllena\nElliott\nEmalee\nEmili\nEmy\nEstephanie\nEtta\nEvelyne\nFathima\nFaviola\nGracey\nGraciella\nGracy\nGuinevere\nHaidyn\nHansika\nHasini\nHenessy\nInara\nIshanvi\nIva\nJacelyn\nJacinda\nJadeyn\nJadore\nJaeden\nJaia\nJasmeen\nJasmyne\nJeanne\nJeniffer\nJesse\nJodi\nJolina\nJolynn\nJournee\nJourni\nJovie\nJoycelyn\nKaelah\nKaiden\nKaileigh\nKaleia\nKalli\nKameron\nKandy\nKarin\nKarisa\nKassidi\nKatelynne\nKattie\nKaylana\nKaylei\nKenadie\nKeyli\nKloie\nKyrie\nLaela\nLaiba\nLakshmi\nLavinia\nLeeana\nLeianna\nLeonor\nLeonora\nLeslye\nLessly\nLiani\nLissette\nLoren\nLuana\nLuiza\nLula\nLyrik\nMackenna\nMackenzi\nMadai\nMarelyn\nMarianne\nMarla\nMarly\nMarta\nMaryanne\nMarysol\nMathilda\nMaureen\nMaycee\nMazie\nMeliza\nMelodee\nMerari\nMihika\nMili\nMykah\nNahla\nNaimah\nNatania\nNaydelin\nNeila\nNeve\nNiah\nNila\nNisha\nNiya\nNoah\nNoe\nNoella\nOctavia\nOona\nPeighton\nQueenie\nRadhika\nRayanna\nReva\nRiana\nRikki\nRoya\nRozlyn\nRyah\nSaidy\nSalina\nSamarah\nSamone\nSanya\nSarahy\nSaydie\nScarleth\nSherlene\nSherlin\nSofi\nSuhani\nSuzanna\nSuzette\nTaniya\nTesla\nTristan\nTrixie\nValencia\nVallery\nVania\nYalitza\nYamila\nYareni\nYsabel\nYusra\nZoee\nZoila\nZooey\nZulay\nZully\nAadya\nAahana\nAaleyah\nAarohi\nAarushi\nAashna\nAbella\nAdalee\nAdalina\nAdara\nAddie\nAddysen\nAdella\nAdria\nAdvika\nAilany\nAiley\nAime\nAislynn\nAitana\nAixa\nAlany\nAleeya\nAleina\nAletheia\nAlexsa\nAleyah\nAlinah\nAllana\nAlya\nAlyanna\nAlynah\nAlyssah\nAmayrani\nAmberlee\nAmberlyn\nAmbrielle\nAmiee\nAmor\nAmrita\nAnagha\nAnakaren\nAnaliese\nAnalucia\nAnalyn\nAnamarie\nAnapaula\nAndrina\nAnely\nAngelee\nAngelene\nAnjolie\nAnnali\nAnnemarie\nAnyla\nAolani\nAriane\nArlen\nArushi\nAryam\nAryan\nAshlan\nAsiya\nAsma\nAvelina\nAymar\nBeautiful\nBellarose\nBerkeley\nBetsaida\nBlythe\nBrieana\nBrighton\nBritanny\nBrooklin\nBrynna\nCalia\nCarmelita\nCatarina\nCayleigh\nCharisse\nCharmaine\nChasity\nChloie\nChristal\nCori\nDaelyn\nDaliyah\nDaniyah\nDarya\nDaylene\nDayna\nDeana\nDebra\nDeena\nDejah\nDelaila\nDelayla\nDenae\nDennise\nDeseray\nDestany\nDestini\nDevine\nDhalia\nDilynn\nDivya\nDyanna\nElektra\nEliyah\nElizabet\nElodie\nEmaly\nEmilyn\nEmmanuelle\nEowyn\nEstephany\nEvamarie\nEvany\nEveny\nEvoleth\nEzri\nFlorencia\nFrancheska\nGenevy\nGenisis\nGrisel\nGweneth\nHali\nHalie\nHarini\nHarshita\nHawa\nHayle\nHayven\nHennessey\nHiba\nHiliana\nHolley\nHonor\nHudson\nIly\nIna\nInika\nIrina\nItza\nJaeleen\nJaide\nJaina\nJalayah\nJaleah\nJamison\nJamiyah\nJanaya\nJaney\nJanis\nJannah\nJannat\nJasmeet\nJazell\nJazlynne\nJeanelle\nJennavieve\nJenni\nJesenia\nJezebel\nJhoana\nJhoanna\nJiana\nJill\nJohannah\nJolee\nJordana\nJosette\nJuliett\nJulietta\nKaelee\nKaely\nKaidence\nKaithlyn\nKalaya\nKalayah\nKalena\nKamani\nKamia\nKari\nKaryssa\nKashvi\nKatana\nKaytlin\nKeilana\nKeilly\nKeilyn\nKensington\nKeyara\nKhadijah\nKhloee\nKiah\nKiarah\nKim\nKimberlee\nKlaire\nKristiana\nKyana\nKylin\nKymani\nLaine\nLandry\nLariah\nLaurie\nLayal\nLeiah\nLezly\nLilybeth\nLindsy\nLindy\nLondynn\nLoretta\nLotus\nLucca\nLucina\nMaddie\nMaddisyn\nMaddyson\nMahlia\nMakenzi\nMakyla\nMalayna\nMaleia\nMannat\nMarcelina\nMarguerite\nMariadelcarmen\nMatilde\nMay\nMaylen\nMckenzee\nMekayla\nMelanee\nMelaney\nMelyssa\nMidori\nMiki\nMinnie\nMireille\nMischa\nMonserat\nMontana\nMyleah\nMyleen\nMyranda\nNadiah\nNaiomi\nNaliyah\nNaraly\nNarissa\nNataliya\nNayelie\nNaylea\nNeomi\nNerissa\nNeva\nNickole\nNicolle\nNidhi\nNidia\nNithya\nNoely\nPepper\nPixie\nPolina\nPortia\nPrudence\nRacquel\nRae\nRaelene\nRaleigh\nReegan\nReign\nRhiley\nRhylee\nRoberta\nRoma\nRosalina\nRylynn\nSadhana\nSamai\nSamiya\nSaoirse\nSariya\nSaron\nSela\nSeraphine\nSereen\nShaelynn\nShanelle\nShantel\nSharanya\nSharlyn\nShaya\nShaylin\nSheridan\nSherly\nShilo\nSimar\nSincere\nSiomara\nSora\nStefania\nStephani\nSunday\nSury\nSuzanne\nSuzy\nTamya\nTenzin\nThais\nTiffanie\nUna\nUriah\nVaishnavi\nVarsha\nVayda\nVerena\nVeronika\nVianna\nViktoria\nVita\nWynter\nXitlalic\nYana\nYanelly\nYelena\nYohana\nYuriana\nYuritzi\nZamora\nZayla\nZaynah\nZyanya\nAadhya\nAariyah\nAbriana\nAbriella\nAdali\nAdalie\nAdaly\nAddisen\nAdilynn\nAdrianne\nAeva\nAfton\nAhana\nAidan\nAidee\nAili\nAilish\nAislyn\nAjah\nAkasha\nAkayla\nAlara\nAleesha\nAleksa\nAlexzandria\nAllissa\nAmada\nAmaiah\nAmaiyah\nAmaryllis\nAmeena\nAmeya\nAmisadai\nAmparo\nAnaid\nAnaira\nAnalea\nAnalyssa\nAngelin\nAngelita\nAngelynn\nAnijah\nAnnaleigh\nAnnamaria\nAnnel\nAoife\nAolanis\nAra\nAralyn\nArayah\nArelie\nArihanna\nArin\nArmoni\nArrianna\nArwen\nAryanah\nAryssa\nAshby\nAshely\nAshlynne\nAthziri\nAtianna\nAudri\nAudrinna\nAvalynn\nAyaka\nAyane\nAysha\nAzalia\nAziza\nBea\nBela\nBennett\nBethel\nBibi\nBijou\nBreauna\nBriceyda\nBrigette\nBrihana\nBronwyn\nCadance\nCady\nCaeli\nCalifornia\nCallia\nCamellia\nCarlene\nCarsyn\nCassidee\nCathleen\nCayley\nCesilia\nChandler\nCharlette\nChastelin\nChastity\nChioma\nChristianna\nChyanne\nCiarra\nClaribel\nConstanza\nDaisey\nDalina\nDalylah\nDanely\nDanity\nDarlin\nDaysha\nDeepika\nDelina\nDenis\nDestanee\nDestanie\nDevika\nDezire\nDhanya\nDynasty\nEcho\nEdyn\nElisabet\nEllah\nEllee\nEllia\nEllyana\nEloisa\nElyanna\nElysse\nElyza\nEmaan\nEmalie\nEmelly\nEmersen\nEmmery\nEnna\nEnvy\nEviana\nFrancis\nGabby\nGenavie\nGenesiss\nGigi\nGiorgia\nGizel\nGrayson\nGricelda\nGrier\nGurnoor\nGwendalyn\nHadia\nHaifa\nHalia\nHanan\nHennesy\nHuda\nHusna\nIana\nImaan\nIndie\nIndigo\nIone\nIra\nIrais\nItaly\nItxel\nJaelin\nJalyn\nJamilet\nJaneli\nJaniece\nJapleen\nJaslyne\nJaylean\nJazzel\nJazzlin\nJazzmine\nJazzmyn\nJeannie\nJeslyn\nJewels\nJodie\nJohnnie\nJoie\nJorden\nJoselynn\nJosephina\nJulieanne\nJuno\nJurnee\nKailie\nKalynn\nKami\nKamillah\nKanani\nKapri\nKarmen\nKarrington\nKaryna\nKassie\nKaterine\nKathrine\nKaylan\nKaylanie\nKaylynne\nKeana\nKelley\nKendyll\nKennia\nKennya\nKensley\nKenzi\nKeona\nKeya\nKeyanna\nKeylin\nKhylee\nKiarra\nKierstyn\nKilee\nKingsley\nKiya\nKori\nKorina\nKsenia\nKyah\nKymber\nLaina\nLane\nLanette\nLaniah\nLayan\nLayna\nLeora\nLexine\nLeyah\nLeydi\nLiel\nLilee\nLilibeth\nLillia\nLilliann\nLisbet\nLiza\nLizzeth\nLolah\nLolita\nLoreli\nLucianna\nLylia\nMacayla\nMaddyn\nMadilynne\nMadisson\nMadylin\nMaelynn\nMahathi\nMaily\nMakaylee\nMakaylin\nMakenzee\nMalana\nMalani\nMaleena\nMalika\nMandi\nMarielena\nMarion\nMarlenne\nMaryn\nMatea\nMckenzi\nMckynzie\nMeghana\nMelanye\nMele\nMeleah\nMerlyn\nMetzli\nMeztli\nMikaella\nMilagro\nMildred\nMilee\nMillicent\nMirabel\nMiroslava\nMitzi\nMonroe\nMykayla\nNadeen\nNaisha\nNalia\nNanami\nNathalee\nNathali\nNaveah\nNayleen\nNereida\nNereyda\nNeri\nNetra\nNeyda\nNiamh\nNicky\nNiki\nNikitha\nNimrat\nNirvana\nNiyah\nNovalee\nOceana\nOlyvia\nPaetyn\nPressley\nPriyanka\nRaeanna\nRana\nRayann\nRayven\nRhian\nRilynn\nRomi\nRosalynn\nRoselin\nRoselynn\nRoshni\nRosita\nRoyal\nRut\nRyanna\nRylin\nSaachi\nSafia\nSaisha\nSalome\nSam\nSamhita\nSamia\nSamyah\nSamyra\nSaori\nSaraih\nSarena\nSemaj\nSeneca\nShalini\nShanell\nShani\nShastelyn\nShawna\nSheccid\nSheily\nShelsy\nSherlyne\nShia\nShir\nShreeya\nSiana\nSiara\nSimona\nSiobhan\nSocorro\nSofiya\nSolei\nStephania\nSterling\nStormy\nSuki\nSunnie\nSurya\nSusie\nSutton\nSuzana\nSyriana\nTaliah\nTalula\nTasha\nTatiyana\nTatyanna\nTaylin\nTaytum\nTheodora\nTierney\nTrinidad\nTriniti\nTrish\nTristen\nTristyn\nTyla\nUnity\nValentine\nVi\nViana\nVilma\nWaverly\nXiclaly\nYaneth\nYaslin\nYeimi\nYeira\nYisel\nYudith\nYzabella\nZada\nZailyn\nZamara\nZaylee\nZella\nZiva\nZora\nZuleima\nAalyiah\nAaryn\nAashritha\nAastha\nAbi\nAddilyn\nAdia\nAdora\nAdylene\nAgam\nAi\nAilen\nAimar\nAishani\nAlabama\nAlayla\nAleen\nAleeyah\nAleigha\nAleiyah\nAlekhya\nAlexiana\nAlexy\nAlexza\nAlexzandra\nAlicen\nAlijah\nAlisandra\nAlitza\nAlitzel\nAliyana\nAllanah\nAllena\nAllysa\nAloni\nAlyn\nAlyzah\nAmal\nAmena\nAmethyst\nAmillia\nAminata\nAmoni\nAmora\nAmyiah\nAnalya\nAnasofia\nAndreah\nAndreya\nAneth\nAnevay\nAneya\nAngy\nAniela\nAnishka\nAnjelica\nAnnalicia\nAnniyah\nAnny\nAnouk\nAnshika\nAntonela\nAreanna\nAriahna\nArina\nArionna\nAris\nArisa\nArista\nArlin\nArlynn\nArsema\nArwa\nAsa\nAtalia\nAthina\nAtzi\nAtziri\nAuden\nAudreena\nAudrena\nAuriana\nAvalina\nAvantika\nAvarie\nAvelyn\nAvia\nAvila\nAyani\nAyda\nAylen\nAyline\nBaileigh\nBaleria\nBaya\nBecca\nBellah\nBerenise\nBerkley\nBetzabe\nBlaire\nBobbi\nBobbie\nBraylee\nBreeanna\nBreezy\nBrelynn\nBridgett\nBrinlee\nBrithanny\nBrooklyne\nBryn\nByanca\nCaden\nCaia\nCaiden\nCaidence\nCaley\nCalie\nCaliyah\nCaralyn\nCaris\nCasie\nCassia\nCaterina\nCatherin\nChaniya\nCharissa\nCharly\nCherie\nChiamaka\nChristabelle\nClair\nClarice\nCody\nCollette\nCorrine\nCristel\nCristine\nCristy\nDaelynn\nDaija\nDalya\nDalyla\nDanah\nDannia\nDannielle\nDannika\nDanyelle\nDella\nDelphine\nDelyla\nDemiana\nDena\nDevanie\nDolly\nDorsa\nDrea\nEila\nEkam\nElani\nElanna\nEleena\nElen\nEleny\nElexa\nEliannah\nElysa\nEmarie\nEmiley\nEmoni\nEna\nEniyah\nErianna\nErilyn\nEsly\nEsmee\nEulalia\nEuna\nEvanna\nEvelia\nEzabella\nEzmeralda\nFabiana\nFallyn\nFiza\nGala\nGalilee\nGauri\nGianelle\nGwendolynn\nHalyn\nHan\nHarriet\nHavanna\nHaylin\nHelayna\nHermelinda\nHeydi\nHila\nIanna\nIlani\nIleene\nIndiana\nIrlanda\nIshani\nIshika\nIshita\nIssa\nIvania\nIvett\nIyanna\nIyonna\nIzabell\nJackelyne\nJacklynn\nJaclynn\nJadelynn\nJadynn\nJai\nJaila\nJaiyana\nJakayla\nJakeline\nJalene\nJalia\nJaliah\nJamiya\nJania\nJanise\nJanna\nJannely\nJareli\nJasira\nJaydeen\nJaydyn\nJaye\nJaylenne\nJaylynne\nJaynee\nJazzelle\nJazzmin\nJeannine\nJenessy\nJenice\nJenise\nJennalyn\nJesica\nJessy\nJett\nJezabel\nJezebelle\nJireh\nJocabed\nJoely\nJoi\nJolin\nJolissa\nJosalynn\nJosey\nJoslin\nJosselin\nJoya\nJules\nJulian\nJuna\nKaavya\nKadie\nKady\nKaelani\nKaeli\nKaileen\nKailei\nKailen\nKalee\nKallista\nKandace\nKaniya\nKareli\nKarishma\nKarizma\nKarmina\nKashmere\nKathia\nKathya\nKayliana\nKayly\nKaytlyn\nKeaira\nKeani\nKeegan\nKeisha\nKenadi\nKenzy\nKera\nKeri\nKevin\nKeyana\nKeylen\nKhaliyah\nKhamani\nKherington\nKhylie\nKiari\nKimaya\nKimberli\nKimberlie\nKimi\nKimia\nKirstin\nKodi\nKohana\nKrishna\nKristi\nKriti\nKyleen\nKylei\nKyndal\nKyrah\nLandyn\nLania\nLanya\nLaryssa\nLavender\nLaynie\nLeahna\nLee\nLeeya\nLeilanee\nLeiloni\nLeily\nLeina\nLelani\nLeni\nLenna\nLeonie\nLexington\nLexis\nLillith\nLiora\nLisandra\nLiset\nLogann\nLorenza\nLouella\nLovette\nLucienne\nLupe\nLyana\nLynsey\nMackinzie\nMadden\nMadelaine\nMaela\nMaelani\nMahealani\nMaheen\nMahnoor\nMaiah\nMaila\nMaizy\nMakala\nMakennah\nMakenzy\nMakeyla\nMakiah\nMalaak\nMalai\nMaleiah\nMaleya\nMaleyah\nMana\nManeh\nManya\nMaraya\nMarcy\nMargo\nMariapaula\nMaricarmen\nMarilin\nMarilynn\nMarleigh\nMarlin\nMarylu\nMasha\nMaylani\nMayli\nMeher\nMeira\nMelea\nMeliyah\nMellanie\nMena\nMicayla\nMichaella\nMiette\nMikenna\nMiku\nMilca\nMinna\nMolli\nMomoka\nMona\nMonalisa\nMyka\nMyley\nMyrah\nNadiya\nNaina\nNairi\nNakayla\nNalah\nNalayah\nNathalye\nNaudia\nNava\nNaveen\nNazareth\nNazyia\nNeema\nNeftali\nNeko\nNella\nNery\nNevaeha\nNeveen\nNicol\nNicola\nNicoletta\nNicollette\nNikayla\nNilah\nNimrit\nNinel\nNivia\nNoga\nNoreen\nOdette\nOliva\nOrly\nPaislee\nParadise\nParnika\nPatty\nPaz\nPersia\nPolly\nQueena\nQuinlan\nRaeleen\nRafaela\nRaniya\nRaniyah\nRashel\nRayana\nRaylynn\nRebecka\nReena\nRemie\nRhiana\nRiddhi\nRileigh\nRithika\nRitika\nRivka\nRiyana\nRogue\nRoisin\nRoni\nRosabella\nRosamaria\nRowyn\nRuhi\nRuthie\nRyanne\nRyen\nRyhanna\nSadaf\nSaiya\nSamaira\nSanna\nSanta\nSantana\nSaory\nSaphire\nSaraya\nSarayu\nSaskia\nSeidy\nSelin\nSena\nSeniyah\nSeri\nSeryna\nShakira\nShana\nShane\nShanice\nShaye\nShaylynn\nShealyn\nSheena\nShelsea\nShree\nSilvana\nSima\nSivan\nSiyona\nSkylee\nSkylynn\nSolana\nSonnet\nSophea\nSophiarose\nSophya\nSrinidhi\nStormie\nSucely\nSulema\nSuriah\nSuzie\nSyniah\nSyriah\nTalaya\nTaliya\nTallula\nTariah\nTasneem\nTayah\nTayana\nTeah\nTenaya\nTeresita\nThanya\nThelma\nThy\nTiare\nTilly\nTonia\nTuesday\nTylee\nValerye\nVanna\nVerity\nVibha\nVivi\nViviann\nVivyana\nWinifred\nXela\nXenia\nXoe\nXuan\nYannis\nYarelli\nYarethzy\nYarisbeth\nYatziri\nYazlin\nYehudis\nYexalen\nYosselin\nYsabelle\nYumiko\nYuritza\nYuvia\nZamaya\nZamya\nZarai\nZayana\nZaynab\nZelda\nZelia\nZena\nZenaida\nZinnia\nZohal\nZuly\nIsabella\nSophia\nEmily\nMia\nEmma\nSamantha\nOlivia\nAbigail\nNatalie\nAva\nSofia\nChloe\nAshley\nCamila\nElizabeth\nVictoria\nAlyssa\nBrianna\nMadison\nKimberly\nAlexa\nEvelyn\nValeria\nHailey\nZoe\nJocelyn\nBella\nElla\nKayla\nAndrea\nMelanie\nAlexis\nAllison\nGrace\nLily\nAudrey\nGenesis\nJasmine\nLeah\nValerie\nNatalia\nKaylee\nMaya\nSarah\nVanessa\nCharlotte\nHannah\nDestiny\nGiselle\nSavannah\nJessica\nStephanie\nAngelina\nAddison\nMichelle\nNevaeh\nBrooklyn\nKhloe\nMakayla\nAlexandra\nMaria\nRuby\nArianna\nLayla\nAaliyah\nDaisy\nZoey\nGianna\nAriana\nRiley\nKatherine\nMelissa\nAvery\nScarlett\nSophie\nJennifer\nTaylor\nLiliana\nAmy\nGabriella\nDaniela\nKylie\nAubrey\nDelilah\nValentina\nJulia\nJade\nIsabel\nJacqueline\nAmelia\nNaomi\nClaire\nNicole\nLauren\nLeslie\nFaith\nStella\nEva\nMadeline\nLillian\nMariah\nAdriana\nSydney\nViolet\nDiana\nEsmeralda\nAngela\nGabriela\nMelody\nAlondra\nKaitlyn\nKatelyn\nAlina\nAnna\nXimena\nBrooke\nJuliana\nGuadalupe\nYaretzi\nFatima\nLeilani\nLucy\nBriana\nMiranda\nJazmin\nPeyton\nIsabelle\nIzabella\nAliyah\nEllie\nSara\nDanna\nAlejandra\nBailey\nKaren\nSadie\nElena\nJayleen\nVivian\nRachel\nAlicia\nAudrina\nEliana\nMadelyn\nFernanda\nSerenity\nKarina\nMegan\nTrinity\nItzel\nAmanda\nJulianna\nLeila\nCrystal\nSienna\nMariana\nChelsea\nPaige\nJimena\nAriel\nEmely\nKeira\nAileen\nPenelope\nAlice\nMiley\nAnnabelle\nKarla\nMya\nAna\nRebecca\nMackenzie\nMarissa\nTiffany\nLuna\nPayton\nAmber\nJasmin\nJazmine\nJoanna\nKatie\nMorgan\nNataly\nAutumn\nJulissa\nSabrina\nAmaya\nIris\nLilly\nSierra\nBianca\nCaroline\nJuliet\nLaila\nLondon\nAlexia\nDanielle\nHazel\nLyla\nLucia\nAlana\nAllyson\nMolly\nAlessandra\nAngelica\nDaniella\nJaylene\nRylee\nJayla\nPriscilla\nDulce\nSummer\nBrenda\nDenise\nJenna\nMelany\nAurora\nBrooklynn\nJordyn\nCassandra\nKate\nAlison\nCynthia\nJanelle\nCatherine\nEden\nKamila\nKylee\nPaola\nCeleste\nKennedy\nLizbeth\nLola\nNayeli\nReese\nHaley\nKelly\nMikayla\nMila\nMonica\nAthena\nBrisa\nEstrella\nApril\nEleanor\nMalia\nReagan\nElise\nMary\nJuliette\nJosephine\nKassandra\nLila\nCarolina\nChristina\nCassidy\nViviana\nSarai\nYareli\nGabrielle\nJordan\nKendra\nIsla\nKiara\nCamille\nWendy\nBreanna\nHarper\nAnahi\nGracie\nHeidi\nPiper\nAshlyn\nGenevieve\nMarley\nVeronica\nAngie\nDesiree\nKaylie\nSelena\nKendall\nClarissa\nHayden\nJayden\nTatiana\nCecilia\nDayana\nGia\nClara\nCali\nFiona\nJoselyn\nDana\nSasha\nCindy\nMakenna\nMelina\nTessa\nBrielle\nElisa\nErika\nJohanna\nLesly\nLydia\nMarilyn\nLaura\nEvangeline\nJamie\nPresley\nVivienne\nHelen\nJazlyn\nMarisol\nSandra\nMadeleine\nNadia\nJillian\nAria\nEmilia\nGiuliana\nAnabelle\nLilah\nNancy\nQuinn\nCarmen\nJulie\nNoemi\nAbby\nEsther\nPhoebe\nSerena\nArely\nCarly\nNathalie\nScarlet\nAniyah\nIvy\nLilliana\nMiriam\nPerla\nGisselle\nJaelyn\nAimee\nDelaney\nErin\nJada\nMckenzie\nAdrianna\nAlexandria\nIrene\nKira\nAmerica\nKailey\nKatelynn\nPaulina\nRaquel\nAylin\nLia\nRosa\nNatasha\nSiena\nAngelique\nCamilla\nHope\nKaia\nMaliyah\nBrittany\nSherlyn\nAubree\nGloria\nNora\nAleena\nAnnie\nMikaela\nPaloma\nMakenzie\nAdeline\nShelby\nNina\nRose\nEliza\nCaitlyn\nCheyenne\nHelena\nJaqueline\nAngel\nHeaven\nLexi\nAmelie\nAnya\nKathryn\nKeyla\nNoelle\nRuth\nTatum\nBelen\nHarmony\nKaelyn\nAnabella\nAshlynn\nDahlia\nElle\nSkylar\nAnnabella\nBethany\nDarlene\nKara\nMargaret\nTalia\nDanica\nYasmin\nYesenia\nAnnika\nDaphne\nHaylee\nMarlene\nAlisson\nJayda\nCharlie\nJanessa\nKyla\nRegina\nRylie\nTeagan\nIvanna\nMckenna\nAnaya\nKelsey\nAlyson\nDalilah\nHayley\nMaggie\nMarina\nMaritza\nHolly\nKrystal\nSavanna\nAnika\nAyleen\nCadence\nGemma\nHeidy\nLea\nOlive\nAlissa\nLilian\nElliana\nCaitlin\nAllisson\nCamryn\nJane\nKaydence\nLinda\nReyna\nAbril\nAllie\nLizeth\nLuz\nAleah\nGeorgia\nIliana\nKiana\nRyleigh\nTiana\nAnastasia\nArlene\nCatalina\nEmery\nLiana\nLilyana\nSarahi\nWillow\nDanika\nMaddison\nParis\nRubi\nDakota\nKiley\nLondyn\nLana\nLexie\nAyla\nIsabela\nMadelynn\nClaudia\nFrida\nJazlynn\nMadilyn\nNathalia\nPaisley\nAlani\nBrynn\nIsis\nJaslene\nJulieta\nKathleen\nStacy\nBelinda\nChanel\nNathaly\nShayla\nValery\nYvette\nAdalyn\nAlma\nAraceli\nDayanara\nKaylin\nLindsey\nRosemary\nEloise\nJoy\nLyric\nMayra\nSonia\nCallie\nCora\nKyra\nTeresa\nArielle\nBryanna\nEileen\nFrancesca\nMonserrat\nPatricia\nShaila\nStephany\nAryanna\nAzul\nCourtney\nCristina\nJosie\nSkye\nYaritza\nYuliana\nAlivia\nArabella\nLilianna\nLizette\nKamryn\nLeia\nMartha\nMilagros\nSusana\nCarla\nKailee\nKayleen\nNia\nRosalie\nAddyson\nAlaina\nEmerson\nErica\nJanet\nJessie\nKayleigh\nLindsay\nMiah\nHana\nKali\nKiera\nMichaela\nNorah\nSariah\nSimone\nYadira\nAlayna\nKailyn\nLeilah\nMaia\nMakena\nMaryjane\nAlanna\nDalia\nFarrah\nGiana\nGizelle\nJaelynn\nJenny\nKenzie\nKristen\nLisa\nVioleta\nJacquelyn\nJayde\nMyla\nAiyana\nDamaris\nDylan\nJoyce\nMarie\nMelinda\nRebekah\nTanya\nXitlali\nZara\nAnalia\nBridget\nCitlali\nJaylin\nLarissa\nMaci\nMonique\nSage\nAlia\nAngeline\nAubrie\nCameron\nDania\nLena\nAnabel\nAniya\nAracely\nBritney\nJune\nKaya\nYoselin\nEdith\nEmilee\nHanna\nMariam\nMaribel\nAlisa\nAnnalise\nBrissa\nDonna\nEvelin\nJocelynn\nKristina\nMadisyn\nMallory\nRomina\nShiloh\nSkyler\nSloane\nTabitha\nXochitl\nYamileth\nAdelina\nCeline\nElaine\nEsperanza\nHailee\nHarlow\nImani\nJaylah\nKassidy\nKenya\nRoxanne\nTania\nAliya\nAmira\nAnnette\nChristine\nCristal\nDenisse\nGeraldine\nLilia\nNatalya\nPaula\nSamara\nBarbara\nKarissa\nRihanna\nAdelaide\nAlena\nAliah\nElsa\nGalilea\nGiovanna\nIngrid\nJanice\nLacey\nRoselyn\nXiomara\nYazmin\nAilyn\nAryana\nEve\nKathy\nLina\nLylah\nRowan\nRoxana\nSelah\nSidney\nElianna\nJaylynn\nLauryn\nLesley\nLeyla\nLuciana\nMariela\nVivianna\nYamilet\nAdelyn\nAlize\nAreli\nEmilie\nFinley\nJackeline\nJasleen\nLeticia\nLorena\nMadalyn\nMercedes\nNyla\nRenata\nRyan\nAinsley\nAmara\nBeatrice\nElyse\nJolie\nJourney\nKailani\nLucero\nMacy\nMadyson\nRoxanna\nAnnabel\nGraciela\nKaiya\nLaylah\nLeanna\nMina\nPearl\nSalma\nZaira\nAisha\nCasey\nEvangelina\nHarley\nJanae\nLorelei\nNatalee\nSharon\nVirginia\nZariah\nDalila\nDestinee\nHadley\nKinley\nLiberty\nLucille\nMarely\nMariajose\nMilan\nSandy\nAriella\nAshlee\nBerenice\nCarina\nDarla\nDavina\nIvana\nJudith\nKamilah\nKaylynn\nMacie\nMaleah\nMatilda\nParker\nPriscila\nTara\nAdilene\nAdrienne\nAlly\nCambria\nElissa\nJaylee\nLilyanna\nMargarita\nNalani\nRiya\nRocio\nVienna\nAverie\nCharlize\nEllen\nFrances\nGwendolyn\nJohana\nKaylah\nKenia\nLluvia\nMarisa\nPaulette\nWhitney\nAda\nAmari\nCiara\nElina\nElisabeth\nEstefania\nJaniyah\nJulianne\nKaliyah\nKayden\nLailah\nLara\nLilith\nLupita\nMarlee\nMicaela\nMireya\nPamela\nRebeca\nSuri\nThalia\nYaretzy\nAnaly\nAnne\nBaylee\nCaylee\nDominique\nEvie\nGisele\nKaitlin\nKarly\nKianna\nMckayla\nMika\nNatali\nPhoenix\nSoraya\nSylvia\nYarely\nAbbigail\nAmaris\nAmina\nAnissa\nBlanca\nDeanna\nDemi\nEsme\nEstefani\nJaslyn\nJazlene\nJazmyn\nKaitlynn\nKalea\nLillie\nMayte\nSaniyah\nShannon\nSofie\nVida\nAdalynn\nAliana\nArlette\nCara\nCitlaly\nGiada\nJoana\nKaila\nKaylani\nKaylen\nKimora\nMira\nMiracle\nNadine\nNelly\nFelicity\nHaylie\nJadyn\nJaiden\nKasey\nKatia\nKinsley\nKyleigh\nLogan\nMarlen\nRenee\nSaanvi\nSoleil\nTaliyah\nAdamaris\nDayanna\nDianna\nDiya\nHeather\nJolene\nJustice\nKadence\nKourtney\nLeilany\nLitzy\nMaite\nMeghan\nMontserrat\nRachael\nScarlette\nYahaira\nAditi\nAmani\nAshly\nAyanna\nCalista\nColette\nEunice\nIsabell\nKaylyn\nLeona\nLuisa\nMarianna\nMillie\nRhea\nSally\nSarina\nSheila\nShreya\nSusan\nTina\nAiyanna\nArya\nAzucena\nDeborah\nElaina\nEmmy\nJaycee\nLiv\nAmya\nAnali\nCoral\nIzabel\nJackelyn\nJaden\nJustine\nKalia\nKeily\nLyra\nMadalynn\nMaryam\nMilana\nNaima\nNoa\nNoelia\nReina\nRosie\nSheyla\nShyla\nSkyla\nYaneli\nAanya\nAliza\nAmiyah\nAnushka\nArleth\nAsia\nAudriana\nCarissa\nCielo\nIvette\nJaidyn\nJaylen\nJordynn\nJoseline\nKayley\nLillyana\nMalaya\nMyah\nNeveah\nSelene\nSelina\nTaryn\nVera\nVianey\nZoie\nAddisyn\nAlayah\nAnais\nBritany\nDelia\nElsie\nEvelynn\nFabiola\nGrecia\nHailie\nHalle\nJacklyn\nKasandra\nKatrina\nLianna\nLidia\nMoriah\nPrincess\nRaegan\nRaylene\nSavanah\nAbbie\nAmalia\nAnalise\nAnanya\nAvalon\nAvani\nAyana\nBrenna\nCharley\nFlor\nHaven\nHennessy\nIrie\nJaliyah\nJazleen\nJemma\nJewel\nKai\nKarolina\nMagdalena\nNikki\nPrecious\nRegan\nRita\nSawyer\nShirley\nSunny\nYulissa\nCelina\nCharlene\nCoraline\nEmelia\nGwen\nKristine\nMaxine\nMilena\nNoor\nRylan\nSilvia\nSky\nXitlaly\nYuna\nZuri\nAlyna\nAmayah\nBailee\nCharlee\nClare\nDaira\nEmber\nGladys\nIreland\nIvonne\nJazzlyn\nLeighton\nNicolette\nNylah\nVianney\nAdelynn\nAni\nAnjali\nAnneliese\nAriadne\nAstrid\nAviana\nBonnie\nCelia\nCherish\nDiane\nElin\nElyssa\nFrankie\nHillary\nJacquelin\nJoelle\nKaily\nKeila\nMelia\nNova\nRyann\nYolanda\nYsabella\nZaniyah\nAbbygail\nBelle\nBriseida\nDallas\nEvalyn\nGracelyn\nKaty\nKeilani\nLeanne\nMiya\nMylee\nPaityn\nRaven\nSamira\nShyanne\nStacey\nStevie\nTenley\nTianna\nYvonne\nAbbey\nAlisha\nAmiya\nAspen\nAurelia\nAya\nBeatriz\nEmmalee\nGinger\nJaylyn\nJiselle\nJoanne\nJocelyne\nJoslyn\nJosselyn\nKarely\nKayli\nKirra\nLillianna\nLisette\nLorelai\nMadilynn\nMarcela\nMariyah\nRayna\nRosario\nTamara\nUnique\nVianna\nYoselyn\nAime\nAkira\nBetsy\nBlake\nCandy\nCapri\nChelsey\nDafne\nDelylah\nDiamond\nEricka\nEstefany\nJaida\nJaquelin\nKamille\nKarlie\nKenley\nLeena\nNikita\nPayten\nSahana\nSana\nTegan\nViolette\nYessenia\nYuridia\nZahra\nAbygail\nAlannah\nAvah\nBristol\nCailyn\nDani\nDevin\nEvelina\nFaye\nGina\nIsha\nJailyn\nJaneth\nKaelynn\nKaris\nKaryme\nKloe\nLourdes\nLynette\nMalina\nNichole\nRiver\nSloan\nVanesa\nYajaira\nAdamari\nAlysson\nAmie\nAnita\nAriah\nAvril\nCarolyn\nCienna\nDanae\nDevyn\nEmi\nJaedyn\nJanette\nJaniya\nJosefina\nJuanita\nKlarissa\nLeilanie\nMaiya\nMakaela\nMarlyn\nMicah\nRaina\nSaira\nTracy\nTyler\nVicky\nYara\nZainab\nZoya\nAkshara\nAlex\nAmerie\nAnabell\nAngeles\nAnnabell\nAnnalee\nAnnelise\nAntonella\nArleen\nAubrianna\nBryana\nCayla\nChristiana\nCinthia\nDasha\nDesirae\nEma\nEverly\nGema\nGissel\nGiulianna\nGwyneth\nIlene\nIzel\nJackie\nJeanette\nJulisa\nKacey\nKairi\nKaleigh\nKaley\nKallie\nLucinda\nMarbella\nMayrin\nMckinley\nNeha\nNya\nPoppy\nRamona\nRaya\nRoxy\nSanvi\nStar\nYasmine\nAriyana\nBerlin\nBrandy\nBridgette\nBriza\nChiara\nDorothy\nElia\nEstella\nGeneva\nGillian\nHaily\nItalia\nItzayana\nIzabelle\nJazelle\nJianna\nJoselin\nJuana\nKalani\nKaleah\nKenna\nLainey\nMabel\nMalak\nMaliah\nMelisa\nNaya\nRosalinda\nSerene\nTori\nAdela\nAdele\nAlexi\nAllegra\nAmiah\nAnalisa\nArden\nAubrielle\nAudrianna\nAzalea\nBeatrix\nBetty\nBriella\nBrittney\nCoco\nCorinne\nDeisy\nElly\nEmiko\nEvolet\nFlora\nGisell\nGracelynn\nHalo\nIsadora\nIssabella\nJanelly\nJaslynn\nKarma\nKatheryn\nKaylene\nLillyanna\nLivia\nMakaylah\nMaricela\nMayah\nMelodie\nMercy\nMeredith\nMyra\nNola\nShea\nTess\nTheresa\nVenus\nZayra\nAhtziri\nAida\nAlba\nAnalee\nAnn\nBrinley\nCaelyn\nCaydence\nConstance\nElisha\nHadassah\nIsela\nJanell\nJizelle\nKaili\nKrista\nKylah\nLaney\nMaeve\nMagaly\nMandy\nMara\nMariel\nMarlie\nMaylin\nRia\nSahara\nSahasra\nSanai\nShayna\nStefany\nTallulah\nViridiana\nAli\nAllyssa\nArianny\nAubriana\nAudree\nCasandra\nDesteny\nEmmalyn\nEstela\nEvalynn\nGreidys\nHallie\nHilary\nJamileth\nJasmyn\nKalena\nKarime\nKelsie\nLaniyah\nLaurel\nLeyna\nMelani\nMelony\nMona\nNahla\nNellie\nNyah\nOdalys\nPenny\nRayne\nRemi\nSabina\nSaige\nSinai\nSol\nSylvie\nWilla\nZaria\nAbigale\nAilani\nAlessia\nAline\nAzariah\nCampbell\nCleo\nCorina\nEla\nEmme\nGreta\nHaydee\nHolland\nHunter\nIndia\nIxchel\nKatalina\nKristal\nLisandra\nLucie\nMae\nMakaila\nMeadow\nMilla\nMiyah\nNika\nNorma\nQuetzalli\nRaelynn\nRobin\nSaniya\nSariyah\nSerafina\nTaya\nTia\nToni\nWinter\nZooey\nAbrianna\nAbrielle\nAdrianne\nAdrina\nAlyvia\nAmirah\nAnaliah\nAndie\nAnisa\nAnnaliese\nAriadna\nAriya\nAsha\nAymar\nBraelyn\nBreana\nBriseyda\nCheyanne\nClementine\nConnie\nDrew\nElliot\nEmalee\nEmerie\nEver\nFarah\nFreya\nGeorgina\nIrma\nJocelin\nKaterina\nKristin\nLesli\nMai\nMargot\nMariella\nMindy\nMylah\nNailah\nPriya\nPromise\nRosalyn\nSabine\nSaray\nSayuri\nSequoia\nStefanie\nTatianna\nTrisha\nValarie\nAlianna\nAmia\nAnaiah\nAngelie\nAntonia\nAriela\nAyva\nBree\nBrylee\nCarley\nDestiney\nDina\nDior\nEllery\nElli\nFallon\nFelicia\nGisela\nGurleen\nHayleigh\nHoney\nIsobel\nIyana\nJaniah\nJanie\nJayme\nJenesis\nJenifer\nJersey\nJessa\nJesse\nJoey\nJovanna\nKailynn\nKaira\nKarol\nKatharine\nKatya\nKaycee\nKayle\nKhloee\nKyndall\nLexy\nLilyan\nMari\nMarisela\nMarjorie\nMeera\nMelannie\nMollie\nNaia\nNariah\nNayelli\nNoelani\nRhianna\nRio\nSerina\nSonya\nSuzette\nSydnee\nSymphony\nTatyana\nUma\nYulianna\nZion\nAaleyah\nAdelle\nAilin\nAlaya\nAlizay\nAlora\nAmberly\nAmeera\nAmyah\nAnaleah\nAnayah\nAnnmarie\nAriyah\nArwen\nAyah\nAyesha\nBernadette\nCailin\nCarlee\nCarlie\nCarol\nCassie\nCecelia\nCharity\nCianna\nColbie\nDayra\nDennise\nEmeli\nEster\nGisel\nGiulia\nGriselda\nImogen\nIvory\nJacey\nJael\nJaquelyn\nJenelle\nJiya\nJosslyn\nJules\nJuniper\nKhadija\nKimberley\nKiyomi\nKristy\nLibby\nLili\nMaile\nMalena\nMarian\nMarla\nMay\nMilania\nNaiya\nNaomy\nPatience\nPricilla\nQuincy\nRain\nRayleen\nReece\nRemy\nRory\nSakura\nSarahy\nSimran\nTayla\nVania\nVivien\nYarel\nAarna\nAbigayle\nAmi\nAminah\nAnaliyah\nAniah\nAnisha\nAri\nAshleigh\nAvianna\nCaitlynn\nCarli\nCarmella\nCecily\nChelsy\nChristy\nCiana\nCierra\nClover\nCordelia\nDaizy\nDarlyn\nDaysi\nDeja\nEssence\nInes\nJaclyn\nJana\nJanely\nJaya\nJenavieve\nJennie\nJoselyne\nKaliah\nKamilla\nKarlee\nKarli\nKavya\nKeren\nKimber\nKirsten\nLeylani\nLilyann\nLilyanne\nLiya\nLori\nMargaux\nMarianne\nMaycee\nMelania\nNahomi\nNavya\nPilar\nSamiyah\nSanaa\nTanvi\nTehya\nTemperance\nVenice\nWren\nYana\nYasmeen\nYessica\nZariyah\nZulema\nAbagail\nAbella\nAdison\nAimar\nAlanah\nAlanis\nAnette\nAolani\nAustyn\nAveri\nBraelynn\nBrianne\nBrookelynn\nBrynlee\nCaleigh\nCandice\nCharli\nDanya\nDelila\nDora\nDoris\nEbony\nEleni\nEllis\nEmerald\nEmmalina\nEmmaline\nEmmie\nEstelle\nEverleigh\nGenessis\nGwenyth\nHaleigh\nIda\nIyanna\nJaymee\nJolee\nJordin\nJournee\nKaylan\nLacy\nLaylani\nLoren\nLouise\nLynn\nMackenna\nMadelyne\nMaegan\nMagnolia\nMareli\nMiabella\nMilani\nMilly\nNayla\nNeve\nNoel\nPepper\nRachelle\nRaelyn\nRianna\nRobyn\nSamaria\nSaylor\nShaelyn\nSherlin\nSolange\nSoledad\nSunshine\nTala\nTreasure\nYanely\nAaliah\nAarushi\nAila\nAlaysia\nAlea\nAlexandrea\nAlexus\nAlexys\nAlyah\nAmairany\nAnaiya\nAnastacia\nAnayeli\nAnessa\nAngely\nAngelyn\nAnia\nAnnamarie\nBernice\nBrigitte\nCandace\nChana\nCitlalli\nClarisa\nDara\nDaria\nDaylin\nDebora\nElexis\nElva\nEmani\nEmelie\nGiavanna\nGissele\nGissell\nHonesty\nIsa\nJanis\nJaymie\nJennah\nJessi\nJoan\nJudy\nJulietta\nKalista\nKamea\nKaroline\nKatarina\nKeanna\nKya\nKyara\nLailani\nLariah\nLeana\nLiah\nLilit\nLillyann\nLinnea\nLorraine\nLove\nMacey\nMadaline\nMaira\nMalayah\nMalaysia\nMarcella\nMarin\nMaryann\nMayleen\nMeagan\nMerari\nMichele\nNadya\nPauline\nPetra\nPrisha\nRilynn\nRosalina\nRoxie\nRylin\nSahar\nSaydee\nShae\nShania\nShaylee\nTaraji\nThea\nTrina\nViola\nXochilt\nYoana\nYocelyn\nYoseline\nZahara\nZora\nAdaline\nAddilyn\nAide\nAisling\nAislinn\nAlayla\nAmarah\nAmilia\nArlett\nArlyn\nAshlie\nAudrie\nAyari\nBerlyn\nBeverly\nBianka\nBria\nBrithany\nBryce\nCharis\nCharleigh\nDayna\nDelanie\nDella\nDivina\nDivya\nElinor\nEllianna\nEmmerson\nEsha\nEvan\nFranchesca\nGaby\nGigi\nHafsa\nHarleen\nHeavenly\nIla\nIlana\nIleen\nIlliana\nIsamar\nJalissa\nJamila\nJazmyne\nJoceline\nJosephina\nJoslynn\nKaci\nKahlan\nKamyla\nKareena\nKarsyn\nKathya\nKennedi\nKyrie\nLaci\nLani\nLeela\nLillyan\nLisbeth\nLovely\nLucca\nMagali\nMalani\nMariafernanda\nMarlowe\nMartina\nMarwa\nMihika\nMischa\nMoira\nMyriam\nNaila\nNeela\nNevaeha\nNyomi\nPersephone\nRaine\nReilly\nRosemarie\nSaleen\nSamanta\nSamiah\nSanaya\nSaniah\nSayra\nShaniya\nShay\nSuhani\nSydnie\nTamia\nTiara\nVy\nYael\nYailin\nYazmine\nYocelin\nYulisa\nYzabella\nZahira\nZiva\nZofia\nAahana\nAashi\nAhana\nAleida\nAleksandra\nAleyna\nAlysa\nAlyse\nAlysha\nAmora\nAn\nAnahy\nAnai\nAnaiyah\nAnamaria\nAnela\nAnnalisa\nAntoinette\nArmani\nAvelina\nAzaria\nBentley\nBillie\nCalleigh\nCarys\nCathy\nCharisma\nChaya\nChelsie\nDarleen\nDayami\nDebbie\nDesire\nDolores\nEkam\nEllison\nElyana\nElysia\nFatimah\nFlorence\nGetsemani\nGrayson\nGretchen\nHarlee\nJaimie\nJalynn\nJanine\nJenessa\nJovana\nJubilee\nKailea\nKalina\nKalynn\nKamari\nKambria\nKarisma\nKarley\nKeely\nKeilah\nKendal\nKensington\nKora\nKorina\nLacie\nLaisha\nLeandra\nLeeah\nLeiah\nLela\nLissette\nLoretta\nLuella\nMaliya\nMallorie\nMaren\nMaribella\nMarielle\nMarleen\nMikaylah\nMinerva\nNallely\nNariyah\nNava\nNayely\nNiyah\nOfelia\nOlga\nPreslee\nRania\nRena\nRosalia\nRubie\nSavana\nSedona\nSelma\nSharlene\nShira\nShivani\nShriya\nShyann\nSunday\nSurina\nSuzanne\nTaelyn\nTaleah\nTammy\nTaniyah\nVanya\nVivianne\nYamile\nYanet\nYusra\nZadie\nZulay\nAcacia\nAdina\nAdyson\nAiley\nAleeah\nAlexie\nAlexsandra\nAlycia\nAlynna\nAmaia\nAmariah\nAnay\nAnnalie\nAnyssa\nArianah\nAries\nArisbeth\nArissa\nAshanti\nAshely\nAshleen\nAtziri\nAubry\nAudra\nAyda\nAyelen\nBibiana\nBobbie\nBrandi\nBreanne\nBrianda\nBriceida\nBrihanna\nBriley\nBrissia\nBrooklynne\nBryn\nCailey\nCalliope\nCamdyn\nCameryn\nCarson\nCayden\nCelena\nChanelle\nChristal\nChyna\nCloe\nDarby\nDariana\nDezirae\nDonya\nElodie\nEloisa\nElvia\nElvira\nEmersyn\nEmiliana\nEmmeline\nEvany\nFrancheska\nGenavieve\nGeorgiana\nGraciella\nGuiliana\nHartley\nHellen\nHilda\nHonor\nIlianna\nInara\nIrelynn\nIsabellamarie\nIzzabella\nJackelin\nJadelyn\nJaila\nJalaya\nJanna\nJarely\nJaydee\nJayne\nJazzlynn\nJeannette\nJessalyn\nJoleen\nJolina\nJozlyn\nJustina\nKacie\nKaeli\nKalie\nKamiyah\nKatelin\nKelsi\nKhloie\nKiersten\nKimberlee\nLaniya\nLaylanie\nLeeanna\nLeen\nLeiana\nLeigha\nLeora\nLeyah\nLiyah\nLyanna\nMaily\nMaliha\nMarion\nMarlena\nMaryanne\nMattie\nMaura\nMaylee\nMelanee\nMelanny\nMeleny\nMelonie\nMirabelle\nMirella\nMonserrath\nNala\nNaomie\nNaveah\nNeriah\nNiah\nNico\nNishka\nNovalee\nOcean\nOphelia\nPolina\nRayanna\nReem\nRhiannon\nRilee\nRishika\nRosabella\nRoselynn\nRoslyn\nRoya\nRyley\nSabella\nSailor\nSamia\nSamya\nSanjana\nSaraya\nShelly\nSherry\nSia\nSincere\nSkylah\nTahlia\nTayler\nVanity\nVeronika\nYamila\nYelitza\nYunuen\nZarah\nZariya\nAaniyah\nAarya\nAbbygale\nAdali\nAiden\nAilene\nAiram\nAislynn\nAja\nAleenah\nAlessa\nAleyda\nAlinah\nAlisia\nAlyssah\nAlyza\nAmarie\nAmbar\nAnaid\nAnaliz\nAnanda\nAneesa\nAnevay\nAngelia\nAngelita\nAnnalia\nAralyn\nAranza\nArianni\nAshlan\nAudry\nAugust\nAvalyn\nAvni\nAvonlea\nBayleigh\nBecky\nBellah\nBethel\nBlair\nBriseis\nCalia\nCalla\nCarmela\nCarrie\nCatelyn\nChloie\nColleen\nDarcy\nDeysi\nDianne\nDulcemaria\nEiza\nElana\nElani\nEllah\nEllena\nElora\nEmeline\nEmelyn\nEmmaleigh\nEmmalynn\nEmmanuelle\nEmmely\nEryn\nEsmee\nEstephanie\nEternity\nEzra\nFayth\nFrancine\nGenevie\nGianni\nGurnoor\nGweneth\nHania\nIleana\nIman\nItaly\nIvanka\nJahzara\nJaleah\nJalyssa\nJanay\nJaylean\nJayline\nJeanine\nJenevieve\nJessenia\nJill\nJoann\nJovie\nJuliett\nJulyssa\nKaela\nKailah\nKalaya\nKamiya\nKareli\nKatherin\nKatheryne\nKathia\nKaydance\nKeiry\nKenadie\nKeziah\nKhushi\nKim\nKinsey\nLeann\nLeslye\nLisset\nLuca\nMaanya\nMahika\nMailyn\nMaisie\nMakeyla\nMalaika\nMalea\nMannat\nMaricarmen\nMaricruz\nMarilynn\nMarlo\nMedha\nMeena\nMeilani\nMichell\nMikaila\nMirna\nMonet\nMykayla\nNaisha\nNaliyah\nNuvia\nPaislee\nPreslie\nPricila\nRandi\nRhyan\nRileigh\nRomy\nRosalba\nSama\nSanya\nSarayu\nSariya\nSaya\nShantal\nShantel\nShayne\nSianna\nSilvana\nSiri\nSkylee\nSoriya\nSusanna\nSuzanna\nTamar\nTanisha\nTea\nTeegan\nTinsley\nTrish\nWinnie\nXyla\nYuri\nZaara\nZurisadai\nAalyah\nAashna\nAdalia\nAddelyn\nAddysen\nAdelaida\nAdelia\nAdi\nAleina\nAlesandra\nAllizon\nAllysson\nAlyiah\nAlyssandra\nAnaleigh\nAnalicia\nAnalie\nAngeli\nAnnaleah\nAriannah\nAthziry\nAudrinna\nAundrea\nAylen\nAzalia\nBertha\nBetsabe\nBetzy\nBlythe\nBritanny\nBrookelyn\nCalie\nCamden\nCamellia\nCarleigh\nCesia\nChevelle\nCinthya\nDaiana\nDarya\nDawn\nDeana\nDenali\nDevon\nDeziree\nDivine\nEdie\nEkaterina\nElliott\nElsy\nElysse\nEmaan\nEmelina\nEmory\nErandi\nEris\nEvalina\nEvana\nFabiana\nGennesis\nGeorgette\nGimena\nGreydis\nHalia\nHiba\nHollie\nIdaly\nIlyana\nInaya\nIshita\nJaide\nJamilet\nJanyah\nJaselle\nJasmeen\nJaycie\nJaydin\nJean\nJenavie\nJennyfer\nJessika\nJesslyn\nJezabel\nJezebel\nJiana\nJoie\nJordana\nJosalyn\nJuno\nKaelani\nKami\nKari\nKeeley\nKeilana\nKendyl\nKeyli\nKhalia\nKimiko\nKiya\nKloey\nKyrah\nLaniah\nLaurie\nLaya\nLegacy\nLeonor\nLexus\nLinette\nLizet\nLizett\nLuana\nLuci\nLucianna\nLucila\nLulu\nLux\nMaddie\nMadelin\nMakyla\nMaleia\nMarelyn\nMariadejesus\nMariya\nMarta\nMarysol\nMaylene\nMelenie\nMelyssa\nMetzli\nMikaella\nMilah\nMillicent\nMirian\nMonika\nNahomy\nNairi\nNicol\nNicola\nNidhi\nNila\nNisha\nNiya\nNoah\nNoeli\nNoemy\nNour\nPeighton\nPia\nPrisila\nRaylynn\nReya\nRhiley\nRhylee\nRina\nRitika\nRosy\nSachi\nSamirah\nSanika\nSaoirse\nSaphira\nSeraphina\nSerinity\nShakira\nShani\nShelsea\nShoshana\nSicily\nSiya\nSofiya\nSolash\nSophya\nStacie\nStarla\nStarr\nStephania\nStory\nSuhana\nSusie\nTaliya\nTanner\nTaytum\nYareni\nYuritzi\nZaida\nZaina\nZaniah\nZaylee\nZaynab\nZella\nZia\nZoee\nZyanya\nAbriella\nAdalie\nAddisen\nAdilyn\nAdrielle\nAdvika\nAeryn\nAeva\nAiko\nAilish\nAiza\nAlanie\nAlanni\nAlasia\nAleeyah\nAleiah\nAlexzandria\nAliannah\nAlise\nAlizabeth\nAlizon\nAlli\nAllysa\nAlona\nAlyanna\nAlyssia\nAmaiya\nAmethyst\nAnagha\nAndi\nAnely\nAngelika\nAnnali\nAnnet\nAnoushka\nAnusha\nAnvi\nArina\nArriana\nAryah\nAshlin\nAshton\nAudri\nAudryna\nAvalynn\nAvamarie\nAven\nAvika\nAyden\nAylene\nBaily\nBeautiful\nBellarose\nBethanie\nBlessing\nBowie\nBrigette\nBrigid\nBronwyn\nBrook\nBushra\nCatarina\nCaylie\nCaylin\nCelene\nCharly\nChrista\nChristie\nCiera\nCitlally\nClaira\nCorrine\nCydney\nDakotah\nDasia\nDelany\nDesi\nDhalia\nDyana\nDylann\nElayna\nElijah\nElika\nElisheva\nElisia\nEllyana\nEman\nEmiley\nEmilyn\nEmmily\nEriana\nErianna\nEstephany\nEvette\nGeorgianna\nGisella\nGlory\nHarlie\nHarmonie\nHattie\nHeiley\nHenna\nIly\nImelda\nIsaura\nIvania\nIzabell\nJackelyne\nJacklynn\nJacquelynn\nJaeda\nJaela\nJaime\nJaina\nJalayah\nJameson\nJanett\nJannelle\nJaylani\nJazlyne\nJazzelle\nJeslyn\nJia\nJisselle\nJoscelyn\nJurnee\nKahlia\nKailana\nKailie\nKalei\nKamora\nKaniyah\nKay\nKayana\nKelley\nKelsy\nKenadee\nKenzi\nKeyra\nKhadijah\nKierra\nKitana\nLaine\nLamya\nLayah\nLayne\nLaysha\nLeianna\nLevi\nLexis\nLilianne\nLizzet\nMahi\nMalanie\nMaleena\nMalika\nMarcelina\nMaribelle\nMarleny\nMarylin\nMatea\nMathilda\nMemphis\nMetztli\nMichel\nMilca\nMiliana\nMimi\nMyranda\nNailea\nNaimah\nNavaeh\nNaylea\nNeida\nNeva\nNeyda\nNikole\nOpal\nOriana\nOsiris\nParisa\nPrisilla\nQueenie\nQuetzali\nRayven\nRichelle\nRihana\nRilyn\nRozlyn\nRozlynn\nRuhi\nSaachi\nSade\nSafiya\nSaisha\nSamiya\nSaranya\nSarita\nScout\nSeerat\nSemaj\nShanaya\nShanelle\nSheena\nShelsy\nSherline\nSolana\nSonja\nSruthi\nStefani\nStefania\nTanishka\nTatyanna\nTaylee\nTera\nTeyla\nThania\nTiffanie\nTrista\nTristyn\nVannessa\nVianca\nVictory\nVioletta\nVita\nViviann\nVivica\nXenia\nXitlalli\nYanira\nYatzil\nYatziri\nYesica\nYuki\nYvanna\nZamira\nZayda\nZayla\nZeina\nZelda\nZinnia\nZuleika\nZuleyka\nAadya\nAaliya\nAbbigale\nAbriana\nAdalina\nAdaya\nAgnes\nAilany\nAiled\nAishwarya\nAislyn\nAkshita\nAlahna\nAleesa\nAleeya\nAleeza\nAlesha\nAliyana\nAlthea\nAly\nAlyce\nAmairani\nAmaiyah\nAmalie\nAmayrani\nAmeya\nAmna\nAmor\nAnaliese\nAnam\nAnamarie\nAndreya\nAngelena\nAngelic\nAngelin\nAniela\nAnnaly\nAnnalynn\nAnny\nAnsley\nAolanis\nAra\nArabelle\nAris\nArlin\nArushi\nAryn\nAshlynne\nAsiya\nAthalia\nAubri\nAubriella\nAustin\nAvi\nAvigail\nAyanah\nAyme\nAzaleah\nAziza\nAzure\nBaylie\nBeyonce\nBrea\nBreeana\nBrennan\nBrighton\nBrylie\nBrynne\nBrystol\nCadance\nCaden\nCarsyn\nCassia\nChantal\nCharlette\nChiamaka\nChrisette\nClarisse\nCollette\nConsuelo\nDaliah\nDanitza\nDanni\nDannia\nDaphnee\nDeena\nDelainey\nDesiray\nDevina\nDevynn\nDixie\nDoreen\nEcho\nEdna\nEesha\nEgypt\nEisley\nEleana\nEli\nEliyah\nEllia\nEmelly\nEmeri\nEmmalie\nEmylee\nEna\nEowyn\nEulalia\nEvelia\nEverley\nEvy\nGaia\nGayane\nGladis\nGlenda\nGracey\nGurneet\nHadassa\nHaidyn\nHalima\nHarmonee\nHarmoni\nHavana\nHeily\nHermione\nHolley\nHosanna\nHudson\nIlona\nIndiana\nIra\nIssa\nIzabela\nJacy\nJahaira\nJaidah\nJailynn\nJamiyah\nJanai\nJaney\nJaretzy\nJayna\nJaynie\nJazel\nJeanna\nJelissa\nJena\nJenavee\nJennalyn\nJewels\nJodie\nJoelene\nJoely\nJohannah\nJorden\nJourni\nJulieth\nKaiden\nKaileah\nKaileigh\nKaiyah\nKalee\nKaliana\nKalli\nKameron\nKarah\nKarmen\nKarter\nKaylanie\nKaysie\nKeala\nKeiana\nKeyonna\nKiani\nKiarah\nKimberli\nKingsley\nKinslee\nKristiana\nKriti\nKrystina\nKyndal\nLaiba\nLanaya\nLariyah\nLasya\nLeeann\nLexington\nLeylah\nLezlie\nLilee\nLillee\nLondynn\nLoralei\nLotus\nLynnette\nMaddisyn\nMaddyn\nMadina\nMagdalene\nMaja\nMali\nMalin\nMalorie\nMarcia\nMargo\nMariaguadalupe\nMayeli\nMayla\nMayrani\nMayumi\nMazzy\nMeaghan\nMeher\nMeliah\nMeliyah\nMercedez\nMerlina\nMikala\nMildred\nMio\nMireille\nMisha\nMitzi\nMonroe\nMorelia\nMylie\nNaina\nNare\nNatally\nNaydelin\nNayomi\nNeila\nNickole\nNicolle\nNilah\nNirvana\nOctober\nOdette\nOliviah\nOlyvia\nPassion\nQuinlan\nRachell\nRadhika\nRaelene\nRaena\nRaniyah\nRebeka\nReena\nRenesmee\nRiona\nRivka\nRosalind\nRosalynn\nRoshni\nRyder\nSafa\nSaiya\nSamaira\nSamaya\nSania\nSena\nShaina\nShanell\nShanti\nShaya\nShaylah\nSheily\nSheridan\nSheryl\nShia\nShruti\nSilver\nSiobhan\nSirena\nSomaya\nSora\nSravya\nSumaya\nSuraya\nTalya\nTaniya\nTasneem\nTayah\nTerra\nTesla\nTierney\nTyana\nVaishnavi\nValeska\nVallery\nVeda\nViana\nVibha\nViktoria\nWaverly\nWilhelmina\nWynter\nXitllali\nYanelly\nYaquelin\nYazlin\nYeira\nYoanna\nZabrina\nZarai\nZarina\nZitlali\nAaryn\nAbigael\nAbilene\nAdalee\nAdamary\nAddalyn\nAddalynn\nAdella\nAdhya\nAdora\nAdria\nAdrian\nAdya\nAeris\nAidee\nAixa\nAkayla\nAlaia\nAlegra\nAlenna\nAlexiah\nAlexiz\nAlexxa\nAlexya\nAleya\nAlitzel\nAlizee\nAlizey\nAlliana\nAlliyah\nAlya\nAlyana\nAlysia\nAmal\nAmarissa\nAmariyah\nAmberlynn\nAmeerah\nAmreen\nAnakaren\nAnalyssa\nAneli\nAnelise\nAngelisa\nAnh\nAnicia\nAnja\nAnnalyn\nAnnalyse\nAnnemarie\nAnylah\nAoife\nArelly\nAriani\nArianne\nArlet\nArlynn\nArshia\nAshli\nAshtyn\nAudria\nAuri\nAvangeline\nBelina\nBliss\nBridgett\nBritton\nBrodie\nBrooklin\nBryleigh\nCaidence\nCailee\nCalifornia\nCalli\nCaren\nCarter\nCatelynn\nCeana\nChasity\nChloee\nChole\nChristian\nClarity\nConstanza\nCoralee\nCosette\nCristy\nCruz\nDailyn\nDalyla\nDanett\nDanyelle\nDaphnie\nDarianna\nDelailah\nDelina\nDelphine\nDena\nDenae\nDevany\nDevi\nDhriti\nDisha\nElianah\nElida\nEliot\nElizabet\nElyanna\nEmili\nEmilly\nEmmalin\nEmmarie\nEmmersyn\nEnedina\nEnya\nEsbeidy\nEshal\nEvangelyn\nEvanna\nEvelyne\nEveny\nFanny\nFinnley\nFiorella\nFrancisca\nGenesee\nGenesys\nGianelle\nGiovana\nGizel\nGracee\nGracyn\nGreidy\nGrettel\nGypsy\nHadasa\nHala\nHaleema\nHalley\nHarlynn\nHayle\nHenley\nIleene\nImari\nIndigo\nInez\nIniya\nIona\nIrelyn\nIsella\nIshani\nIshika\nIsys\nItati\nItza\nItzia\nIvey\nIvie\nIvon\nJacinda\nJadah\nJaelah\nJaeleen\nJailene\nJakayla\nJaliah\nJalyn\nJanayah\nJania\nJaritza\nJaslyne\nJayah\nJaydah\nJaydyn\nJayleene\nJaylie\nJazzmin\nJeimy\nJenni\nJeyla\nJocelynne\nJolette\nJonah\nJorja\nJosey\nJoycelyn\nJuliann\nJulieanna\nKaaliyah\nKaelin\nKaely\nKaileen\nKalyn\nKalyssa\nKamaya\nKamdyn\nKamia\nKandace\nKandice\nKatana\nKatty\nKealani\nKelis\nKelli\nKennedie\nKeylee\nKherington\nKhylee\nKiah\nKimani\nKiran\nKiyah\nKloie\nKrislynn\nKrystel\nKyleah\nKyli\nLaasya\nLarisa\nLavina\nLaycee\nLayna\nLeilana\nLeonna\nLeonora\nLezly\nLiahna\nLilibeth\nLindy\nLing\nLissandra\nLisseth\nLiz\nLois\nLora\nLucciana\nLucine\nLula\nLya\nLyndsey\nMacayla\nMackenzy\nMadden\nMadisen\nMahayla\nMahlia\nMailin\nMaiyah\nMaleiah\nManal\nMaram\nMariely\nMarly\nMaryah\nMaryelizabeth\nMarylou\nMattea\nMattison\nMayela\nMegha\nMei\nMeira\nMelaney\nMeliza\nMellanie\nMeztli\nMiette\nMikah\nMilagro\nMili\nMiryam\nMyleen\nNadeen\nNailani\nNalia\nNataley\nNathalee\nNaydeen\nNayelie\nNayleen\nNelli\nNereida\nNerissa\nNethra\nNhi\nNiara\nNidia\nNiki\nNivea\nNohemi\nNoora\nNoya\nOdessa\nPerri\nPersia\nPortia\nPranavi\nRadha\nRama\nRanya\nRaychel\nReema\nReeya\nReign\nReva\nRipley\nRisha\nRosita\nRowen\nRoyalty\nRyah\nRyanne\nSadee\nSakina\nSaloni\nSapphire\nSaryah\nSatya\nScarleth\nSeren\nShana\nShaniyah\nShantelle\nSharleen\nShasta\nShauna\nShaylin\nShirel\nShravya\nShreeya\nShylah\nSimona\nSimrat\nSiona\nSkylynn\nSneha\nStormy\nSukhmani\nSuley\nSusannah\nSymone\nTabatha\nTaleen\nTam\nTaylin\nTeanna\nTierra\nTRUE\nTyanna\nTyra\nValencia\nValorie\nVannesa\nVannia\nVela\nVittoria\nWisdom\nXena\nXitlalic\nYaneth\nYarelie\nYeva\nYtzel\nYulia\nYuritzy\nZamora\nZaniya\nZaya\nZayna\nZaynah\nZenaida\nZoha\nZuleyma\nZuly\nZylah\nAalayah\nAaleah\nAalyiah\nAaniya\nAarohi\nAdah\nAdalena\nAdylene\nAidan\nAilynn\nAirianna\nAislin\nAkane\nAkemi\nAlayjah\nAlaynna\nAlaysha\nAleigha\nAlexah\nAlexxis\nAlexy\nAlexza\nAleyah\nAlinna\nAliyanna\nAlizae\nAlonna\nAmana\nAmariz\nAmberlyn\nAmeyalli\nAmirrah\nAmmi\nAmyra\nAnaia\nAnaisha\nAnalucia\nAnasofia\nAndromeda\nAngelee\nAngelene\nAngelyne\nAngelynn\nAnica\nAnjelica\nAnnalea\nAnnasofia\nAnnasophia\nAnvita\nAnyah\nAraya\nArayah\nArcelia\nArchita\nArial\nArianie\nArie\nArieanna\nArihanna\nArionna\nArisa\nArisha\nArtemis\nAryan\nAshanty\nAtiana\nAubreanna\nAubryanna\nAudreena\nAunika\nAuria\nAvarie\nAviyah\nAvneet\nAyako\nAylah\nAylani\nAylee\nAyline\nAymee\nAyvah\nAzelia\nAzlynn\nBarrett\nBayla\nBea\nBecca\nBela\nBellina\nBennett\nBetsaida\nBijou\nBlaire\nBlakely\nBlayke\nBrailyn\nBreah\nBriah\nBriannah\nBrihana\nBrinlee\nBrixton\nBrynna\nBryssa\nCate\nCaterina\nCathryn\nCatrina\nChandler\nChanning\nCharleen\nChase\nChassidy\nClarabelle\nConcepcion\nDaelyn\nDafnee\nDaina\nDaisey\nDajah\nDallana\nDamariz\nDamya\nDanity\nDaniyah\nDannica\nDannielle\nDarline\nDarling\nDayani\nDayla\nDayleen\nDeandra\nDejah\nDelani\nDelyla\nDenia\nDeonna\nDeseray\nDestinie\nDevika\nDevine\nDolly\nDorsa\nEdyn\nElah\nElectra\nEleny\nEleyna\nElizah\nElynn\nElysa\nElyza\nEmanuela\nEmarie\nEmbry\nEmmah\nEmy\nEnalina\nEniyah\nEvangaline\nEvangelia\nEvanie\nEvelett\nEvely\nEvelynne\nEverlee\nEvita\nEvolette\nEzri\nFarida\nFlorencia\nFlynn\nFrancis\nFreyja\nGala\nGhazal\nGianella\nGracy\nGreer\nGretta\nGrissel\nGuinevere\nGwenivere\nHadlee\nHaide\nHaidy\nHaileigh\nHanan\nHarini\nHarlem\nHarriet\nHazelle\nHelene\nHermelinda\nHeydi\nIlaria\nIlse\nInaaya\nIndra\nInessa\nInika\nIrena\nIrina\nIshana\nItzelle\nIva\nJadelynn\nJadeyn\nJaeden\nJaelene\nJahira\nJahnavi\nJahniya\nJai\nJaidy\nJaimee\nJalene\nJalina\nJamilah\nJamya\nJanaya\nJanel\nJanella\nJannet\nJasline\nJayanna\nJaylanie\nJaylinn\nJazline\nJazlynne\nJazzmine\nJeanelle\nJeannie\nJenica\nJennavecia\nJensen\nJeraldine\nJesica\nJessy\nJezelle\nJhoana\nJhoselyn\nJireh\nJisel\nJodi\nJosilyn\nJuliane\nJulieana\nKaedence\nKaelee\nKaelie\nKaidence\nKalayah\nKaleena\nKalleigh\nKallista\nKalliyan\nKamara\nKameryn\nKana\nKandy\nKaori\nKaralyn\nKarelly\nKarlyn\nKarolyn\nKasia\nKassia\nKassidi\nKaterine\nKatiana\nKatlyn\nKayah\nKaycie\nKaydee\nKayly\nKeaira\nKeaton\nKeerthana\nKeisha\nKeisy\nKelani\nKellie\nKellyn\nKeniya\nKennadi\nKenzy\nKera\nKezia\nKhayla\nKhloey\nKhyla\nKierstyn\nKilee\nKinzie\nKirstin\nKlara\nKolbie\nKori\nKristel\nKrysta\nKyanna\nKyley\nKylia\nKyliee\nKymberly\nLake\nLanai\nLanyah\nLarkin\nLatrice\nLayal\nLeasia\nLeidy\nLeilene\nLeina\nLeiya\nLelani\nLenora\nLessly\nLexxie\nLeydi\nLeylanie\nLeylany\nLian\nLiat\nLielle\nLiesl\nLilie\nLillianne\nLillith\nLillyanne\nLilu\nLiora\nLoraine\nLouisa\nLua\nLunna\nLuzmaria\nLyrik\nMaaliyah\nMaayan\nMadalyne\nMadelynne\nMadisson\nMaelie\nMaelle\nMaelynn\nMaheen\nMaisy\nMakala\nMakiah\nMakinzie\nMalerie\nMalillany\nManasvi\nManuela\nMaple\nMaral\nMarelin\nMariaelena\nMaricella\nMarifer\nMarriah\nMaryana\nMarycruz\nMaryn\nMaylea\nMazie\nMea\nMeah\nMeg\nMeghana\nMeghna\nMelodee\nMerlin\nMery\nMeyah\nMeylin\nMianna\nMicayla\nMiia\nMilee\nMileena\nMiliani\nMily\nMirabella\nMisty\nMitzy\nMoana\nMontana\nMonzeratt\nMorrigan\nMuskan\nMyka\nMykaela\nMyleah\nMylene\nMyriah\nNada\nNaleah\nNareh\nNari\nNataliya\nNatania\nNathania\nNaveyah\nNaylani\nNeah\nNeala\nNeda\nNehemiah\nNella\nNeya\nNiharika\nNiko\nNitika\nNitya\nNoriah\nNubia\nNydia\nOona\nOrly\nPaetyn\nParadise\nPaytyn\nPerry\nPolette\nPrudence\nRacheal\nRae\nRaeann\nRaelin\nRafaella\nRaha\nRahma\nRaleigh\nRana\nRaneem\nRayann\nRaylee\nRaylena\nReegan\nRemedy\nRemington\nRenae\nRhema\nRhys\nRian\nRida\nRikki\nRithika\nRoberta\nRochel\nRoma\nRori\nRosalee\nRosaura\nRosi\nRosio\nRoxann\nRoxi\nRuthie\nRya\nRyanna\nRylinn\nRylynn\nSaba\nSafia\nSaida\nSaina\nSalome\nSamar\nSamarah\nSameera\nSammie\nSaori\nSaraiah\nSarena\nSascha\nSela\nSharlyn\nSharvi\nShawna\nShaye\nShayleen\nShaylynn\nSherly\nSherlyne\nSherlynn\nShya\nSiddhi\nSimra\nSina\nSindy\nSitara\nSiyona\nSkarlett\nSkylyn\nSofi\nSoha\nSolay\nSommer\nSophiamarie\nSrinika\nStevi\nSurya\nSwara\nSylvana\nSyrah\nTalise\nTalula\nTarynn\nTasha\nTasia\nTatiyana\nTavia\nTerry\nTeya\nTeyanna\nThais\nTianah\nTilda\nTilly\nTimia\nTirzah\nTorrey\nTracey\nTracie\nTrinitee\nTriniti\nTruly\nTwyla\nTylee\nUrsula\nVada\nVana\nVarsha\nVerena\nXcaret\nXochil\nXymena\nYaira\nYakelin\nYamilex\nYaremi\nYari\nYaritzi\nYaslin\nYasmina\nYatziry\nYen\nYenifer\nYennifer\nYeraldin\nYeslin\nYizel\nYosselin\nYsabel\nYui\nYulie\nZaire\nZaryah\nZeba\nZeynep\nZophia\nZyanna\nSophia\nIsabella\nEmily\nMia\nEmma\nOlivia\nSofia\nAbigail\nSamantha\nNatalie\nCamila\nAva\nVictoria\nChloe\nElizabeth\nAshley\nMadison\nEvelyn\nKimberly\nAlyssa\nAndrea\nHailey\nElla\nAlexa\nZoe\nAudrey\nGenesis\nJocelyn\nAllison\nBrianna\nLily\nKaylee\nMelanie\nLeah\nValeria\nBella\nCharlotte\nGrace\nKayla\nMaya\nBrooklyn\nAubrey\nValerie\nAaliyah\nAlexis\nScarlett\nGiselle\nArianna\nKatherine\nZoey\nAriana\nJasmine\nNatalia\nAvery\nAngelina\nSavannah\nVanessa\nNevaeh\nDestiny\nLayla\nSarah\nKhloe\nHannah\nSophie\nAddison\nAmelia\nGianna\nStephanie\nAlexandra\nDelilah\nJade\nJessica\nGabriella\nRuby\nNicole\nMaria\nLiliana\nMichelle\nRiley\nValentina\nDaisy\nJennifer\nTaylor\nAmy\nMelissa\nStella\nEva\nMakayla\nNaomi\nJulia\nDaniela\nKylie\nXimena\nJacqueline\nViolet\nFaith\nIsabel\nClaire\nLillian\nAngela\nKatelyn\nSydney\nLauren\nMariah\nMelody\nAlondra\nLeilani\nJuliana\nMadeline\nDiana\nJayleen\nKaitlyn\nGabriela\nAnna\nLeslie\nIzabella\nMila\nAlina\nAliyah\nEllie\nPeyton\nLucy\nPenelope\nEsmeralda\nElena\nSadie\nSerenity\nBrooke\nYaretzi\nLuna\nMiranda\nAlice\nIsabelle\nEliana\nAdriana\nHarper\nGuadalupe\nBailey\nAudrina\nFatima\nMadelyn\nVivian\nSara\nMackenzie\nFernanda\nAria\nItzel\nAriel\nAutumn\nTrinity\nAlejandra\nMya\nHazel\nJulianna\nAnnabelle\nAubree\nJazmin\nRachel\nCrystal\nJulissa\nRebecca\nLucia\nRylee\nBriana\nKaren\nAllyson\nPaige\nAurora\nLilly\nSienna\nKeira\nBrielle\nJuliet\nLondon\nKatie\nAmanda\nCatherine\nKarla\nLeila\nAna\nEmely\nAileen\nMegan\nJazmine\nAlicia\nKennedy\nIris\nTiffany\nAmaya\nChelsea\nMolly\nAngelique\nJaylene\nKate\nAlexia\nLyla\nAthena\nPayton\nAlison\nMorgan\nElise\nJimena\nMariana\nJanelle\nDulce\nBrooklynn\nDanielle\nDaniella\nMarissa\nBianca\nReese\nDanna\nMary\nAlana\nNayeli\nPriscilla\nSummer\nApril\nCamille\nKarina\nCaroline\nKamila\nLola\nJordyn\nMikayla\nAlessandra\nJayla\nAmber\nGia\nJuliette\nMonica\nLaila\nGenevieve\nSabrina\nHaley\nAngelica\nJoanna\nKendall\nQuinn\nSierra\nAlexandria\nClara\nJenna\nScarlet\nKailey\nEstrella\nMalia\nReagan\nVeronica\nViviana\nCeleste\nEden\nChristina\nJosephine\nPaola\nEleanor\nGracie\nLila\nLizbeth\nMelany\nPiper\nCynthia\nGabrielle\nCali\nHayden\nAshlyn\nCarolina\nKylee\nPresley\nNataly\nEmilia\nGiuliana\nKelly\nKiara\nCecilia\nSelena\nMadeleine\nSasha\nAnahi\nIsla\nJasmin\nJordan\nJoselyn\nDenise\nKassandra\nMarilyn\nCassandra\nSarai\nIvy\nNathalie\nFiona\nBrenda\nDayana\nJazlyn\nArely\nEvangeline\nLilah\nSkylar\nVivienne\nAngie\nLexi\nBreanna\nCassidy\nDahlia\nErin\nHaylee\nLydia\nNancy\nRose\nAleena\nBethany\nHeidi\nLaura\nMarisol\nNoemi\nTatiana\nClarissa\nElisa\nPhoebe\nSerena\nSiena\nMiley\nCarmen\nMckenzie\nTessa\nGemma\nNadia\nPerla\nCora\nMakenzie\nMarley\nYareli\nAbby\nAniyah\nCamilla\nCarly\nEileen\nHope\nAylin\nWendy\nKaylie\nMikaela\nBrynn\nKira\nAngel\nAdrianna\nAyleen\nDaphne\nNina\nAnabelle\nTeresa\nJamie\nNora\nIrene\nJillian\nJulie\nDelaney\nElle\nJaylah\nSavanna\nEmery\nJane\nKatelynn\nGisselle\nHarmony\nNatasha\nAnabella\nAnnie\nEsther\nIvanna\nLesly\nAyla\nDesiree\nLilliana\nMakenna\nNoelle\nBrittany\nLiana\nMelina\nRuth\nEliza\nTeagan\nHelen\nJanessa\nMiah\nAimee\nAlyson\nErika\nJohanna\nOlive\nBelen\nAdeline\nAmelie\nSandra\nKali\nPaulina\nArabella\nJayden\nReyna\nElliana\nJada\nCharlie\nHayley\nMarina\nMiriam\nWillow\nAshlynn\nDakota\nBrisa\nGloria\nJessie\nAnaya\nCheyenne\nLilyana\nLinda\nAnnabella\nHolly\nKendra\nMarlene\nAbril\nAlaina\nArielle\nCindy\nCadence\nDanica\nDylan\nFrancesca\nKara\nPaisley\nTalia\nLia\nTatum\nAdalyn\nAleah\nKathryn\nKaydence\nCaitlin\nCallie\nJaqueline\nKenzie\nLea\nRaquel\nCamryn\nIsis\nNathaly\nRosa\nCatalina\nJulieta\nMargaret\nHeaven\nLondyn\nMaggie\nMaliyah\nShelby\nAnya\nHanna\nIliana\nJosie\nLexie\nMaddison\nAlissa\nDana\nDarlene\nIsabela\nKelsey\nMaritza\nRegina\nShayla\nKaia\nKyla\nKiana\nMichaela\nAlani\nCaitlyn\nDalilah\nGalilea\nHarlow\nJazlynn\nMonserrat\nPaloma\nAmerica\nAubrie\nJenny\nLilian\nRylie\nSarahi\nAlisson\nJaelyn\nLindsey\nAllie\nAngeline\nCristina\nHeidy\nKaelyn\nLana\nHadley\nKeyla\nLena\nLuz\nMacie\nMadilyn\nRosalie\nYasmin\nAryanna\nKailyn\nMckenna\nRenata\nSherlyn\nKaylin\nLyric\nMaryjane\nValery\nGeorgia\nJanet\nJune\nRosemary\nSelah\nSkye\nAnnika\nCameron\nErica\nJoy\nAlayna\nCharlee\nEsperanza\nJayda\nLucille\nNathalia\nYuliana\nBelinda\nGiana\nKrystal\nMaci\nAlivia\nAraceli\nArlene\nBryanna\nLeyla\nLuciana\nMilagros\nRubi\nAddyson\nChristine\nJudith\nKaya\nMadelynn\nMarie\nRoselyn\nCarla\nDarla\nGeraldine\nKayleen\nKyra\nMaite\nMayra\nParker\nAdelina\nAisha\nAnastasia\nAnika\nAracely\nElaina\nEloise\nMallory\nParis\nYaritza\nAlma\nAzul\nFinley\nHana\nJocelynn\nLilianna\nYamilet\nAmara\nClaudia\nEve\nImani\nNorah\nRebekah\nSaanvi\nSage\nTiana\nXiomara\nYazmin\nZara\nEmerson\nKiley\nLeia\nMaribel\nMina\nNyla\nPaula\nVioleta\nBridget\nDalia\nEmilee\nKamryn\nKiera\nLaylah\nPatricia\nSonia\nVera\nYesenia\nArya\nElsa\nEvelynn\nHelena\nKristina\nRoxanne\nSimone\nSusana\nVienna\nYamileth\nAdalynn\nAdele\nAinsley\nAlanna\nCaylee\nDamaris\nElianna\nLizeth\nNia\nSloane\nYvette\nChanel\nCourtney\nHailee\nJayde\nKailee\nKayleigh\nLeilah\nYoselin\nAdelyn\nAmira\nAnnalise\nEdith\nElsie\nGwendolyn\nLindsay\nMaia\nCristal\nKathleen\nLina\nSharon\nSoraya\nAdilene\nAmani\nDonna\nElaine\nEmilie\nEmmy\nKayden\nKinley\nLilia\nLisa\nLucero\nSamara\nZariah\nAnabel\nBriella\nCara\nDanika\nLeanna\nPamela\nStacy\nYarely\nAmiyah\nCeline\nCharlize\nKamilah\nKassidy\nNoa\nZoie\nAiyana\nAliana\nAnalia\nDania\nDayanna\nElissa\nFrida\nJackeline\nJourney\nKaylani\nKeily\nMariam\nRyleigh\nAnnette\nEvangelina\nFarrah\nJulianne\nKeila\nLarissa\nLylah\nAda\nAliya\nAverie\nCitlali\nElina\nElyse\nIngrid\nIzel\nJaelynn\nJolie\nMadalyn\nMakena\nNylah\nPearl\nScarlette\nYadira\nAreli\nBarbara\nCambria\nIvana\nKristen\nLizette\nMadisyn\nRihanna\nRiya\nAviana\nJaslene\nMilana\nMontserrat\nMyah\nNatalee\nStephany\nAbbigail\nAriella\nBeatrice\nKailani\nKaris\nMonique\nRoxanna\nSkyler\nAdelaide\nAlia\nAlize\nAnnabel\nCasey\nDavina\nKenia\nMaleah\nRebeca\nRenee\nRowan\nRyan\nSalma\nSariah\nShiloh\nSylvia\nTania\nAdelynn\nAmalia\nCarol\nCharley\nJasleen\nJazleen\nJolene\nJoyce\nLacey\nLeilany\nMacy\nRoxana\nSkyla\nTabitha\nVivianna\nYahaira\nAlisa\nDayanara\nHaylie\nHeather\nKenya\nKourtney\nMadilynn\nMartha\nAddisyn\nAniya\nColette\nDiya\nJewel\nKaila\nLianna\nLorelei\nMaliah\nRaina\nSidney\nVida\nXochitl\nYaretzy\nBaylee\nEvelin\nGiovanna\nJaylynn\nKaiya\nKalea\nLiv\nMargarita\nMira\nMireya\nMyla\nNalani\nNeveah\nReina\nSelene\nShaila\nTanya\nZuri\nAilyn\nAlena\nAliah\nCarissa\nDeborah\nGiada\nGizelle\nJaylin\nKarissa\nKaylah\nKinsley\nMariela\nMilania\nSaniyah\nShreya\nSoleil\nSuri\nSusan\nVirginia\nAmari\nBritney\nCiara\nIsabell\nKaitlynn\nKathy\nMadalynn\nMatilda\nMelinda\nMercedes\nMilan\nYolanda\nAdrienne\nAlannah\nAriadne\nAudriana\nElia\nEllen\nHarley\nIvette\nJacquelyn\nJaslyn\nJaylee\nLeona\nMadyson\nMarisa\nMayte\nSilvia\nThalia\nXitlali\nAryana\nCelia\nElisabeth\nKadence\nLara\nLilyanna\nMagdalena\nMaxine\nMika\nMiracle\nNadine\nNoor\nPhoenix\nRylan\nWhitney\nAlayah\nBraelyn\nFrances\nJackie\nJanice\nJazzlyn\nLeela\nLiberty\nLorena\nMicaela\nNaya\nRaelynn\nRosie\nAanya\nAbbey\nAlianna\nAvianna\nAzalea\nBonnie\nDestinee\nDianna\nEstefania\nJanae\nJazmyn\nKaliyah\nKyleigh\nLeighton\nLesley\nNelly\nRaegan\nSelina\nSheila\nStacey\nAurelia\nAyanna\nBailee\nBlanca\nEmber\nEmmalyn\nFelicity\nJackelyn\nJaneth\nJaycee\nJemma\nKairi\nKaitlin\nKaylyn\nKristel\nLogan\nLupita\nMckayla\nNikki\nPaulette\nShannon\nSheyla\nShyla\nSky\nAbbie\nAbbygail\nAnne\nArianny\nCherish\nElin\nElyssa\nJazlene\nMalaya\nNicolette\nPriscila\nRosario\nSariyah\nAdamaris\nAshlee\nCarina\nEmi\nEsme\nKai\nLailah\nLeticia\nMarlee\nMiya\nMyra\nNatalya\nRhea\nRomina\nSana\nAnais\nArlette\nAyana\nCitlaly\nGwen\nItzayana\nJaylen\nJenesis\nJoana\nJordynn\nKalia\nKaylen\nLillianna\nLuisa\nLyra\nMariyah\nMaryam\nPrincess\nSavanah\nAlyna\nAmina\nAspen\nAstrid\nCalista\nCandice\nDenisse\nJaliyah\nJoelle\nJuniper\nKayley\nLidia\nLillie\nNaima\nNoelia\nNova\nSally\nStar\nYara\nZaira\nZoya\nAditi\nAmerie\nAnanya\nBeatriz\nDemi\nDiamond\nEvalyn\nFrankie\nGisele\nGrecia\nHaven\nJoslyn\nKaty\nKeilani\nLorelai\nMilani\nMilena\nNichole\nRocio\nSahana\nSamira\nShayna\nAmayah\nAnaly\nArleth\nBlake\nCapri\nCoral\nDeanna\nFabiola\nIzabelle\nJadyn\nJohana\nJustice\nKasey\nSarina\nSawyer\nShirley\nSofie\nTegan\nVianney\nAlly\nAnita\nChiara\nClare\nEmelia\nEverly\nJenelle\nJiselle\nJustine\nKarly\nKenley\nLeanne\nMabel\nMelia\nNikita\nRita\nRiver\nViolette\nAlanah\nAliza\nAlora\nAmaris\nAsha\nAubriana\nAubrianna\nAvalon\nAya\nBerenice\nBetsy\nBrenna\nCandy\nCarolyn\nEstefani\nFelicia\nHillary\nJocelin\nJoselin\nKaily\nKaylynn\nKianna\nLauryn\nLivia\nMaylin\nNoelani\nRaelyn\nRory\nRosalinda\nRyann\nSamaya\nStevie\nSunny\nTori\nAarna\nAngelie\nAnjali\nAnnalisa\nAntonella\nAvani\nBrylee\nCelina\nCoraline\nDalila\nEmmalee\nFreya\nGissel\nGracelyn\nGwyneth\nIreland\nIrie\nIzabel\nKarol\nKaycee\nKayle\nLilith\nMagaly\nMarely\nMariajose\nMarlen\nMelannie\nTara\nTaryn\nVianey\nYasmine\nAilani\nAlisha\nAmiah\nAnisa\nAnissa\nAnnalee\nAntonia\nAubrielle\nCharlene\nDiane\nDominique\nDorothy\nEmme\nEunice\nEvie\nFarah\nFlor\nGraciela\nGreta\nJaiden\nJaylyn\nJazelle\nJianna\nJulisa\nKalani\nKenna\nLaurel\nLillyana\nLourdes\nMarianna\nNahla\nRemy\nSloan\nTemperance\nTina\nXitlaly\nYessenia\nYuna\nAlysson\nAmiya\nBridgette\nChelsey\nChristy\nDallas\nDevyn\nEricka\nJacklyn\nJaidyn\nJanelly\nJanely\nJaniyah\nJeanette\nJosslyn\nKaelynn\nKarely\nLitzy\nLynette\nMae\nMagnolia\nMarcela\nMeadow\nMylah\nRaylene\nRayne\nSamiyah\nSimran\nTheresa\nYaneli\nZahra\nZaniyah\nAdela\nAiyanna\nAmya\nAni\nAnn\nAnnabell\nAudrianna\nAveri\nBristol\nBrynlee\nCielo\nEllery\nElliot\nEmmie\nHennessy\nKamille\nKatrina\nKirra\nKristine\nLeena\nLouisa\nMaeve\nMaren\nMeghan\nRachael\nRaya\nShyanne\nSinai\nTamara\nVania\nWinter\nYulissa\nYvonne\nZion\nZooey\nAbrianna\nAhtziri\nAlaya\nAleeah\nAmirah\nAnalise\nAnnelise\nAshly\nAvah\nBetty\nBrissa\nBryn\nCandace\nCarlie\nCharity\nCorinne\nDelia\nDesirae\nGenessis\nHadassah\nHailie\nJacquelin\nJiya\nJizelle\nKarlee\nKayli\nLaney\nMandy\nMarian\nMaricela\nMckinley\nMiabella\nNatali\nNola\nPoppy\nSaige\nSanaa\nSaniya\nTaliyah\nViridiana\nYoselyn\nAbrielle\nAdamari\nAmie\nAudrie\nBelle\nBerlin\nBeverly\nBreana\nBria\nBryana\nChantal\nDariana\nEstela\nFaye\nGeneva\nGinger\nHalle\nHalo\nIsha\nJenessa\nJoanne\nJocelyne\nJoseline\nKarolina\nKennedi\nLaylani\nLillyanna\nLisette\nMelani\nMicah\nMilla\nMollie\nNayely\nPaityn\nRemi\nRia\nSandy\nSavana\nShriya\nTess\nUnique\nVeda\nYuridia\nAkira\nAlexus\nAli\nAnnmarie\nAriah\nAsia\nBeatrix\nCecelia\nCheyanne\nClementine\nCristel\nDevin\nEstefany\nGina\nIvonne\nJaden\nJaya\nJournee\nJuana\nKailynn\nKaley\nKallie\nKatia\nKierra\nKimora\nLaniyah\nMakaylah\nMayah\nNika\nNya\nQuetzalli\nVivien\nYanely\nAbigale\nAila\nAlyanna\nAnaiah\nAnayeli\nAriyah\nArleen\nArmani\nAvril\nAzucena\nBrandy\nBriseida\nCampbell\nCasandra\nCharli\nEmeli\nEmersyn\nFlora\nGema\nIrma\nIsadora\nIsela\nIssabella\nJaquelin\nJosselyn\nKasandra\nKatalina\nKinsey\nKrista\nKristin\nLainey\nLeilanie\nLorraine\nLucie\nMakaila\nMalaysia\nMalina\nMillie\nPrecious\nRamona\nSabina\nScout\nTenley\nTianna\nYajaira\nYasmeen\nAdelle\nAlaysia\nAlysa\nAmairany\nAnaleah\nAubriella\nCailyn\nCayla\nCienna\nDaliah\nDani\nDelylah\nDestiney\nEleni\nElisha\nElly\nEmmeline\nEstella\nEvalina\nEvalynn\nGiavanna\nGisela\nHolland\nIlene\nJaclyn\nJaida\nKarma\nKaterina\nKatya\nKeren\nKlarissa\nKora\nLillyann\nMalani\nMara\nMeredith\nMylee\nNailah\nNallely\nOfelia\nRachelle\nRayna\nRosalyn\nRoslyn\nSerene\nShaylee\nSolange\nSomaya\nSonya\nTrisha\nTyler\nWilla\nZainab\nAdrina\nAlessia\nAnisha\nBrigitte\nBriseis\nBrittney\nCoco\nColbie\nDesteny\nDior\nDulcemaria\nEma\nEstelle\nEvelina\nEver\nGriselda\nGuinevere\nGwenyth\nHallie\nInara\nIvory\nJanell\nJoey\nKalina\nKristal\nLexy\nLilyann\nLluvia\nMacey\nMaiya\nMaliya\nMarbella\nMelania\nMercy\nNadya\nNorma\nOdalys\nPriya\nPromise\nRilynn\nRosalia\nSaira\nSaray\nShivani\nSusanna\nSymphony\nThaily\nYessica\nZariyah\nZayra\nAbriana\nAida\nAliyana\nAllisson\nAmariah\nAmeera\nAnabell\nAniah\nCarys\nCassie\nCathy\nCinthia\nCitlalli\nCleo\nConstance\nDafne\nDasha\nDina\nEllison\nEmiko\nGladys\nHarleen\nInaya\nJanette\nJaymee\nJuanita\nKarime\nKatarina\nLili\nLilyanne\nLinnea\nLovely\nMakaela\nMarianne\nMarlowe\nMelodie\nMonroe\nNellie\nPayten\nPenny\nQuincy\nRania\nRegan\nRhiannon\nRoxy\nSamiya\nSerina\nSusie\nSylvie\nTheodora\nVanesa\nYazmine\nYsabella\nZaida\nZia\nZiva\nAbagail\nAbygail\nAislinn\nAkemi\nAleyna\nAllyssa\nAnali\nAshtyn\nAyva\nBrinley\nBriseyda\nCarrie\nCharleigh\nConnie\nDebora\nDora\nDoris\nEbony\nElora\nEmerald\nGenevie\nHellen\nHunter\nInes\nItalia\nJana\nJenavieve\nJessalyn\nJoleen\nJulieanna\nKamari\nKarlie\nKarsyn\nKaylene\nKelsie\nKenadie\nKirsten\nKya\nLynn\nMaile\nMalak\nMalayah\nMareli\nMaryann\nMayleen\nMoriah\nNeha\nNikole\nRina\nRobin\nSahara\nSakura\nSanai\nShania\nShylah\nTia\nTiara\nTracy\nVicky\nYarel\nAleeyah\nAlexsandra\nAlinah\nAmia\nAnayah\nAnnamarie\nAnushka\nArden\nAriadna\nAriela\nAudree\nAyesha\nBentley\nBerlyn\nBernice\nBillie\nBree\nCierra\nDaira\nDanya\nDaria\nDayra\nDrew\nEmani\nEmelie\nEmmalynn\nEster\nEverleigh\nFallon\nFranchesca\nGeorgina\nGillian\nGisel\nGiulianna\nIleana\nInez\nJailyn\nJaniya\nKacie\nKahlan\nKailah\nKaleah\nKaleigh\nKaliah\nKamea\nKamilla\nKarley\nKeiry\nKendyl\nLeeah\nLiah\nLiya\nLouise\nMargot\nMarjorie\nMarlie\nMarlyn\nNaia\nNayla\nPauline\nRhyan\nRobyn\nRosalynn\nSanvi\nSaylor\nSelma\nSequoia\nSeraphina\nSol\nTallulah\nTamia\nTatianna\nVenus\nYatziri\nZadie\nZahara\nZaina\nZuleyka\nAlba\nAlexandrea\nAmaia\nAminah\nAmora\nAnaiya\nAnalee\nAnnaliese\nAugust\nAvni\nBellarose\nBlair\nBrookelynn\nBryce\nCailin\nCaydence\nDaiana\nDelanie\nDevon\nDolores\nEmmaline\nEsabella\nGenavieve\nGracelynn\nHaydee\nIlliana\nJacey\nJaslynn\nJayme\nJean\nJia\nJordin\nJoslynn\nKlara\nKylah\nLailani\nLaisha\nLeyna\nMagali\nMarcella\nMariella\nMaryanne\nMayrin\nMeera\nMelisa\nMilah\nMileidy\nMisha\nMiyah\nMonika\nNaimah\nNala\nNoah\nNyomi\nPepper\nRaven\nReece\nShea\nShira\nSolana\nSolara\nTaya\nXochilt\nYamila\nYanet\nYulianna\nZarah\nAdalina\nAhana\nAkshara\nAleksandra\nAlex\nAlexi\nAlyse\nAlyvia\nAmberly\nAngeles\nAraya\nAriya\nAviva\nBianka\nBraelynn\nBritany\nCailey\nCalliope\nCarter\nChantelle\nCharis\nClover\nDarleen\nDarlyn\nDarya\nElayna\nEllianna\nEmerie\nEstephanie\nEvan\nEvolet\nGretchen\nIxchel\nJaedyn\nJaniah\nJanie\nJaquelyn\nJazzlynn\nJoceline\nJosefina\nKaili\nKeeley\nKendal\nKloe\nKyndall\nKyrie\nLennon\nLesli\nLori\nLucinda\nMalena\nMari\nMarisela\nMinerva\nNaomy\nNayomi\nNila\nNohemi\nNyah\nPatience\nPersephone\nPetra\nPricilla\nPrisha\nRyley\nSahasra\nSanjana\nSaoirse\nSapphire\nSayuri\nSeerat\nShay\nSherry\nSiri\nStarla\nStefanie\nSunshine\nTamar\nViktoria\nVioletta\nYocelin\nYorley\nAaleyah\nAarya\nAcacia\nAdaline\nAdrian\nAline\nAllegra\nAlyah\nAlycia\nAmairani\nAmilia\nAnamaria\nAnette\nAnneliese\nAolani\nAriyana\nAshleigh\nAubri\nAudry\nAven\nAzaria\nBayleigh\nBetsabe\nBreanne\nCalli\nCarlee\nCate\nChristiana\nCorina\nDanae\nDelila\nDezirae\nDivya\nEmelyn\nEmiliana\nEmmalina\nEsha\nEvette\nFrancine\nGissell\nHaily\nHarlie\nHarnoor\nHilary\nIman\nIra\nIyanna\nJannah\nJayna\nJenifer\nJesse\nJezebel\nJordana\nJovanna\nJudy\nKacey\nKaleia\nKalli\nKamiyah\nKamora\nKatelin\nKatheryn\nKaylan\nKeyli\nKim\nKyara\nKyrah\nLasya\nLillyan\nMalea\nMariel\nMeah\nMellanie\nMildred\nMirabella\nMona\nNaila\nNariah\nNaveah\nNeela\nNoel\nRafaela\nRosemarie\nRoxie\nRyder\nSade\nSailor\nSamanta\nSayra\nSeren\nStefany\nSuzanna\nTanvi\nTaraji\nToni\nViola\nWynter\nYael\nYana\nYocelyn\nYuri\nYuritzi\nZaynab\nAaniyah\nAaralyn\nAdaya\nAddie\nAddilyn\nAdyson\nAide\nAilin\nAime\nAleida\nAlessa\nAlexie\nAlliyah\nAlyana\nAmalie\nAmi\nAmor\nAnaliah\nAnalicia\nAnalisa\nAndie\nAngelyn\nAnnalie\nAntoinette\nAnusha\nArissa\nAyelen\nAzariah\nBecky\nBibiana\nBrianne\nBrihanna\nBriza\nCaelyn\nCaleigh\nCarley\nCarmela\nChevelle\nCiera\nCordelia\nDaelyn\nDawn\nDayna\nDeisy\nDeja\nDivina\nEdie\nElinor\nFinnley\nGretel\nGrettel\nGurleen\nHollie\nHonesty\nIleen\nIndia\nIyana\nIyla\nIzabell\nIzzabella\nJael\nJaela\nJaymie\nJeanelle\nJennyfer\nJersey\nJessa\nKaely\nKarisma\nKaryme\nKavya\nKaylanie\nKeziah\nKristy\nLael\nLani\nLaya\nLeann\nLeeann\nLeylani\nLinette\nLisbeth\nLiyah\nMaisie\nMannat\nMariafernanda\nMaribelle\nMarielle\nMarion\nMay\nMaylee\nMelanny\nMili\nMisty\nMonet\nNahomi\nNailea\nNavya\nNeriah\nNeva\nOlga\nRafaella\nRio\nRosalina\nRyanne\nSabine\nSalina\nSamiah\nSaniah\nSaydee\nSera\nSerafina\nShanti\nSiya\nSkarlett\nSukhmani\nTali\nTatyana\nTehya\nVada\nWren\nYadhira\nYaneth\nZoee\nZyanya\nAadya\nAbbigale\nAbigayle\nAdalia\nAdara\nAdina\nAgnes\nAilene\nAliannah\nAlynna\nAlysha\nAmarie\nAmbar\nAnai\nAnaleigh\nAnaliyah\nAnela\nAngelia\nAnja\nAnnaleah\nAnnalia\nAolanis\nArianne\nArisbeth\nArwen\nAudra\nAustyn\nAvarie\nAyari\nBerkeley\nBernadette\nBrandi\nBrighton\nBrithany\nCamden\nCayden\nCaylie\nChana\nCharlette\nChelsy\nCheryl\nCloe\nConsuelo\nDivine\nEla\nEllia\nElodie\nEmeline\nEmmerson\nHarmonie\nHayleigh\nHeavenly\nIanna\nIda\nIlse\nIndiana\nIrelynn\nJackelin\nJailynn\nJaimie\nJaina\nJalynn\nJaycie\nJaylinn\nJazmyne\nJenevieve\nJennie\nJesslyn\nJoann\nJoselynn\nJubilee\nJulyssa\nKaira\nKamyla\nKareena\nKatlyn\nKaydee\nKeely\nKeilana\nKelsi\nKhalia\nKhloee\nKiersten\nKimber\nKiyomi\nKrystel\nLaniya\nLeana\nLibby\nLilli\nLois\nMackenna\nMadelyne\nMargaux\nMarguerite\nMarilynn\nMarlo\nMarwa\nMaryah\nMaycee\nMelony\nMelyssa\nMetzli\nMikaella\nMileena\nMileydi\nMindy\nMonzerrat\nNaiya\nOpal\nOphelia\nPeighton\nPortia\nRaylynn\nReilly\nReya\nRilyn\nRosalind\nRyah\nSamya\nSanaya\nSania\nSarahy\nSeanna\nShanelle\nShyann\nSia\nSiara\nSkylee\nSonja\nSophya\nStarr\nTahlia\nTala\nTalya\nTammy\nTaniyah\nTea\nTerra\nThea\nVivianne\nYelena\nZaara\nZulema\nAbilene\nAdalie\nAdi\nAgatha\nAilany\nAiram\nAlanie\nAlexys\nAleyah\nAlyza\nAmberlynn\nAmeerah\nAmyah\nAn\nAnaiyah\nAnamarie\nAnnalyse\nAnnemarie\nAri\nAriannah\nArina\nAriyanna\nArlet\nAshleen\nAtziri\nAubry\nAvelina\nAveline\nAvigail\nAvneet\nAyah\nBaylie\nBriar\nBrook\nBrynley\nCarleigh\nCarson\nCecily\nChandler\nChanelle\nChelsie\nCianna\nClarisa\nColleen\nDaphney\nDarina\nDestini\nDeysi\nDylann\nEdna\nEesha\nEllena\nElvia\nEmory\nEshal\nEzra\nFrancisca\nGisella\nGuiliana\nGurnoor\nHermione\nHilda\nHoney\nInaaya\nIrelyn\nIsa\nIshani\nItzia\nIveth\nJadelyn\nJalayah\nJalissa\nJannat\nJannelle\nJarely\nJasmyn\nJayne\nJelena\nJena\nJessenia\nJessy\nJosette\nKaileen\nKalyn\nKatharine\nKaytlin\nKensie\nKhushi\nKori\nKyndal\nLakshmi\nLilianne\nLilibeth\nLillith\nLiora\nLiz\nLoretta\nLucianna\nLuella\nLulu\nMadelin\nMai\nMarin\nMarleigh\nMattie\nMaura\nMeagan\nMehar\nMeilani\nMihika\nMilly\nMirabelle\nMykah\nNeila\nNitya\nPricila\nRandi\nRayleen\nRena\nRianna\nRosalba\nSahar\nSamarah\nSaya\nScarleth\nShae\nShayne\nSofi\nSofiya\nSoledad\nSuzie\nSydnee\nTayla\nTaytum\nTinsley\nTreasure\nTrina\nTristan\nVaishnavi\nVanya\nVeronika\nVianna\nYzabella\nAashna\nAbella\nAdamary\nAdelaida\nAdelia\nAdella\nAdrianne\nAeris\nAhtziry\nAlizay\nAlizon\nAllana\nAlli\nAnaliese\nAnastacia\nAngelika\nAngely\nAnvi\nAnyssa\nAranza\nAriani\nAshanti\nAshely\nAudryna\nAura\nAvila\nAyden\nAyline\nAzalia\nBellah\nBethel\nBianey\nBridgett\nBriley\nBrookelyn\nBrynna\nCaitlynn\nCallia\nCatelyn\nCaylin\nCelest\nChrista\nChristian\nClaira\nCollette\nCruz\nDagny\nDanette\nDanitza\nDara\nDarcy\nDarling\nDelany\nDia\nDillon\nDonya\nDrea\nEkam\nElana\nElliette\nEllis\nElvira\nEmelin\nEmiley\nEmmi\nEverlee\nFatimah\nFreyja\nGalilee\nGennesis\nGigi\nGiulia\nGladis\nGlenda\nHalia\nHarmoni\nHeily\nHonor\nHosanna\nIlianna\nIone\nIsamar\nItaly\nJaileen\nJalyn\nJamila\nJamilah\nJanai\nJaydah\nJazel\nJessika\nJoie\nJolina\nJorja\nJoselyne\nJulietta\nJurnee\nKaela\nKaelin\nKaiyah\nKalaya\nKameron\nKamiah\nKamya\nKarli\nKarmen\nKatherin\nKeanna\nKiya\nLaasya\nLanae\nLeiah\nLeighla\nLela\nLexington\nLilyan\nLissette\nLiza\nLizet\nLondynn\nMaddie\nMadisson\nMagaby\nMakyla\nMalaika\nMarelyn\nMargo\nMarla\nMarleen\nMaryn\nMercedez\nMily\nMischa\nMyka\nMyriam\nNahomy\nNayelli\nNazareth\nNiamh\nNiya\nNovalee\nOdalis\nOona\nOrianna\nPhilippa\nPia\nPrisila\nQuetzali\nRae\nRaine\nReet\nRivka\nRomi\nRoya\nRubie\nRut\nSaleen\nSamaria\nSammantha\nSandhya\nSantana\nSephora\nShantel\nSharlene\nShelly\nSiana\nStefani\nStormy\nSury\nSuzanne\nTaliah\nTanisha\nTristyn\nVibha\nWednesday\nXenia\nYamile\nYareni\nYsabel\nZayda\nZofia\nAadhya\nAbriella\nAddisen\nAdison\nAdvika\nAiko\nAishani\nAixa\nAiza\nAlanis\nAlany\nAlasia\nAleeya\nAlegria\nAleina\nAleyda\nAlliana\nAlya\nAmayrani\nAnagha\nAnahy\nAnh\nAnia\nAniston\nAnjelica\nAnnalea\nAnnalicia\nAnnasophia\nAnniyah\nAnsley\nAoife\nArianah\nArianni\nAribella\nAries\nArriana\nArrianna\nAshton\nAtziry\nAulani\nAundrea\nAvelyn\nAvonlea\nAylen\nBethanie\nBethanny\nBlaire\nBobbie\nBrea\nBrianda\nBritton\nCameryn\nCarli\nCarmel\nCataleya\nCatarina\nCelene\nCharly\nChristie\nDalyla\nDanelly\nDaniyah\nDanyelle\nDarby\nDaylin\nDebbie\nDeena\nDella\nDelphine\nDesiray\nDevina\nDyana\nEisley\nElani\nEleana\nElisabet\nElli\nEmalee\nErynn\nEssence\nFanny\nFrancheska\nGaby\nGaia\nGisell\nGweneth\nHarlee\nHarlowe\nHarriet\nHasini\nHudson\nIla\nImogen\nIndie\nIndigo\nIona\nIsra\nJaelene\nJaila\nJailene\nJaimee\nJakayla\nJaleah\nJaleyah\nJalyssa\nJanel\nJannet\nJaritza\nJazlyne\nJazlynne\nJazzlin\nJeanine\nJeannette\nJessi\nJoan\nJodie\nJody\nJolee\nJolette\nJules\nJustina\nJustyce\nKaci\nKaeli\nKailan\nKailie\nKaiulani\nKalena\nKambria\nKarah\nKaroline\nKashvi\nKatana\nKatheryne\nKathia\nKattie\nKaydance\nKaylana\nKeilah\nKeilly\nKeilyn\nKelis\nKelsy\nKensley\nKimberlyn\nKinzie\nKitana\nKlaire\nKloey\nKyah\nLarisa\nLayah\nLezly\nLiel\nLilit\nLinh\nLoralei\nLoren\nLotus\nLuzmaria\nMadai\nMaiah\nMaily\nMaira\nMakinley\nMalayna\nMalorie\nManreet\nMaribella\nMaricruz\nMarlin\nMarlow\nMartina\nMattea\nMaylene\nMedha\nMei\nMimi\nMirian\nMitzi\nNaisha\nNishka\nOdette\nOriana\nPreslee\nPrudence\nQueenie\nQuorra\nRaelene\nRebeka\nReem\nReign\nRhianna\nRhylee\nRitika\nRosaline\nRoselynn\nRosy\nRya\nRylin\nSafa\nSalem\nSalome\nSamaira\nSavina\nShaina\nShaylah\nSianna\nSilvana\nSirena\nSkylah\nSonali\nSonora\nSpencer\nSterling\nStory\nSuhana\nSumaya\nSuzette\nTalayah\nTayler\nTaylin\nTeresita\nThania\nValencia\nVerenice\nVesper\nViana\nXimenna\nYanira\nYatzil\nYeimi\nYeraldin\nYoseline\nYui\nYulisa\nZaria\nZariya\nZaylee\nZinnia\nZoha\nZophia\nZuleika\nAahana\nAalayah\nAaliah\nAbbagail\nAdalee\nAddelyn\nAddysen\nAdelyne\nAdilynn\nAiden\nAislyn\nAja\nAlaia\nAlisia\nAlizae\nAlizah\nAly\nAlysia\nAmada\nAmeya\nAmisha\nAndi\nAndria\nAngelyna\nAnnabeth\nAnnaleigh\nAnnalyn\nAralyn\nArlyn\nAsiya\nAudrinna\nAvalyn\nAvalynn\nAyannah\nAysha\nAyvah\nBellamy\nBennett\nBerkley\nBertha\nBeyonce\nBrennan\nBrienna\nBrilynn\nBrionna\nBrooklin\nBrooklynne\nCaliana\nCalie\nCamellia\nCamyla\nCarmella\nCarrington\nCecile\nCesia\nCharisma\nChase\nChaya\nChloee\nChloey\nChristal\nClarisse\nCooper\nCrystel\nCydney\nDalya\nDalylah\nDanett\nDasia\nDayami\nDeetya\nDelani\nDilynn\nDinah\nDunya\nElayne\nEllah\nElliotte\nEllyana\nElsy\nElva\nElyza\nEmelly\nEmersen\nEmili\nEmmanuelle\nEmmery\nEstrellita\nEternity\nEvelynne\nEvoleth\nFay\nFern\nGardenia\nGeorgiana\nGetsemani\nGianni\nGiovana\nHadasa\nHafsa\nHala\nHaleigh\nHelene\nIdalia\nIlana\nIly\nImaan\nImelda\nIndira\nInessa\nIsobel\nIvee\nJaclynn\nJadie\nJaelah\nJahzara\nJalen\nJanay\nJanaya\nJaneli\nJanine\nJannette\nJayline\nJazell\nJazlin\nJazzmin\nJeanne\nJesenia\nJiana\nJodi\nJosephina\nJosselin\nJovie\nJulieth\nKailea\nKalie\nKalynn\nKandy\nKarizma\nKathrine\nKeala\nKeana\nKeaton\nKeegan\nKendyll\nKensi\nKenzy\nKeona\nKeylin\nKhadija\nKimani\nKitzia\nKyleah\nKymani\nLaelani\nLaniah\nLavinia\nLayan\nLaylanie\nLeonor\nLeora\nLilyrose\nLizzet\nLove\nLua\nLuana\nLuca\nLucienne\nLula\nLynda\nLyndsey\nMacee\nMadina\nMaeva\nMaisy\nMaja\nMakeyla\nMakiyah\nMaleena\nMaleia\nMana\nManha\nMaram\nMariaelena\nMarika\nMarleny\nMavis\nMaybelline\nMaylen\nMeghana\nMeleny\nMicayla\nMichele\nMichell\nMikala\nMileah\nMiliani\nMinna\nMirella\nMiyuki\nMonserrath\nMontana\nNadiya\nNaiomi\nNalanie\nNaliyah\nNara\nNare\nNareh\nNastassja\nNava\nNayelie\nNixie\nNiyah\nOceana\nOctavia\nOsiris\nOviya\nParisa\nParneet\nPilar\nPippa\nPriyanka\nPyper\nRacquel\nRaeanna\nRaniyah\nRashel\nRayanna\nRene\nRiana\nRilee\nRipley\nRisha\nRoberta\nRomy\nRori\nRosalee\nRoselia\nRowen\nRyanna\nRylinn\nSaffron\nSama\nSamia\nSammie\nSaori\nSaraya\nSarita\nSaron\nSedona\nShaelyn\nShakira\nSheridan\nSiona\nSiyona\nSkarlet\nSunnie\nSusannah\nSydnie\nSymone\nSyra\nTanner\nTeegan\nTenzin\nTonantzin\nTricia\nTristen\nTruly\nTvisha\nUma\nVedika\nVerena\nVerona\nVianca\nVianka\nViolett\nVita\nWinnie\nXena\nXiclaly\nXyla\nYanelly\nYaquelin\nYetzali\nZaniah\nZaryah\nZayna\nZola\nZulay\nZully\nZuria\nZurisadai\nAaliya\nAalyah\nAdabella\nAddalyn\nAdisyn\nAdora\nAdria\nAgam\nAine\nAishwarya\nAislin\nAisling\nAislynn\nAkayla\nAkshita\nAlea\nAleeza\nAleya\nAlise\nAlishba\nAlitzel\nAliyanah\nAlizee\nAllyana\nAllyna\nAllysson\nAlona\nAlyssandra\nAmarah\nAmarissa\nAmberlyn\nAmeena\nAmeenah\nAmera\nAmmy\nAnalea\nAnalena\nAnaliz\nAnasofia\nAnavictoria\nAnely\nAnessa\nAngelic\nAnjana\nAnnaly\nAnneka\nAnvita\nArabelle\nArelly\nArie\nAris\nArlen\nArlin\nAryah\nAshlin\nAshlynne\nAshna\nAthziry\nAvika\nAvrie\nAyda\nAymee\nAyumi\nAziza\nAzlyn\nBea\nBecca\nBerlynn\nBetsaida\nBetsey\nBetzy\nBlessing\nBlythe\nBobbi\nBodhi\nBrigette\nBrynne\nCaliyah\nCamdyn\nCamilah\nCaris\nCarmina\nCarsyn\nCassia\nCatelynn\nChanning\nChantel\nChayse\nCherie\nChristen\nCiana\nClair\nClarity\nClaritza\nCorrine\nCosette\nDaila\nDaliyah\nDannah\nDarianna\nDayleen\nDeasia\nDeeksha\nDelainey\nDesire\nDianne\nDisha\nDixie\nDream\nEcho\nEknoor\nElexia\nElienai\nEliora\nElliott\nElyn\nElysa\nEmaan\nEmalyn\nEman\nEmberly\nEmeri\nEmilyn\nEmmylou\nEnedina\nErinn\nEris\nEstefanie\nEtta\nEvah\nEvangelyn\nEvelyne\nEvy\nEzmeralda\nFrancis\nGauri\nGenisis\nGeorgette\nGeraldy\nGioia\nGissele\nGracen\nGracy\nGredmarie\nGrethel\nHaidee\nHaidy\nHanalei\nHarlyn\nHarneet\nHattie\nHavana\nHeba\nHiba\nHollis\nIrlanda\nIsrael\nIssabela\nIzabellah\nJacquelyne\nJadelynn\nJaime\nJalina\nJameson\nJamison\nJaney\nJanna\nJanyah\nJareli\nJaretzy\nJasline\nJasnoor\nJayana\nJayleene\nJaylenn\nJayli\nJaylie\nJazzelle\nJenae\nJennessa\nJeraldine\nJezabel\nJocell\nJoely\nJosalyn\nJoycelyn\nJude\nJulina\nJuna\nKacy\nKady\nKaelani\nKaidence\nKaidyn\nKailana\nKalei\nKalista\nKalyssa\nKamara\nKarin\nKatalyna\nKatty\nKaylei\nKayloni\nKellie\nKensington\nKenzi\nKhloey\nKhylee\nKimberley\nKingsley\nKinslee\nKinzley\nKrisha\nKsenia\nKynlee\nLacie\nLacy\nLaelah\nLailany\nLaina\nLandry\nLariah\nLayna\nLeeana\nLeeanna\nLeiana\nLeidy\nLeiloni\nLeyah\nLeylah\nLiani\nLielle\nLior\nLucca\nLucky\nLundyn\nLux\nLuxe\nMaddelyn\nMadelaine\nMaelee\nMahika\nMaika\nMaizie\nMaizy\nMakaylee\nMakiah\nMakiya\nMaliha\nManeh\nManiyah\nMao\nMariadejesus\nMariaguadalupe\nMaricarmen\nMaricella\nMarifer\nMariya\nMarlena\nMarta\nMaryan\nMarylin\nMaycie\nMayson\nMazie\nMegyn\nMerari\nMeyah\nMeztli\nMikaila\nMikaylah\nMillicent\nMinnie\nMio\nMiryam\nMisa\nMoira\nMuskaan\nNaileah\nNaina\nNaiyah\nNalia\nNaudia\nNavaeh\nNavina\nNayana\nNaydelin\nNevada\nNevaeha\nNeve\nNhi\nNidhi\nNidia\nNoemy\nNoora\nNubia\nOcean\nOdessa\nOlyvia\nPayson\nPeyten\nPolina\nPranavi\nPrisilla\nQuetzaly\nRain\nRaylin\nRayven\nReanna\nReegan\nRenae\nReva\nRian\nRicki\nRiddhi\nRidhi\nRisa\nRishika\nRochelle\nRoma\nRosio\nRoyal\nRylynn\nSabella\nSafiyah\nSaina\nSaiya\nSammi\nSaphire\nSareena\nSatya\nSerinity\nShana\nSheena\nShelsy\nShia\nShoshana\nSicily\nSimona\nSimrat\nSkylynn\nSolei\nSora\nSorayah\nSuhani\nSuzy\nSyrena\nTabatha\nTaelyn\nTalar\nTaliya\nTesla\nThelma\nTiffani\nTiffanie\nTinley\nTrish\nValorie\nVenice\nVittoria\nWilhelmina\nYarelli\nYissel\nYohana\nYtzel\nYuki\nYumi\nYusra\nZaliyah\nZaniya\nZarina\nZayla\nZeena\nZelda\nZella\nZenaida\nZenia\nZipporah\nAalia\nAamina\nAariyah\nAbigael\nAdah\nAdaleen\nAdelie\nAdena\nAdhya\nAdithi\nAdyline\nAiley\nAilynn\nAira\nAlahna\nAleana\nAlecia\nAleenah\nAleigha\nAlesha\nAlexsa\nAlexxa\nAliviah\nAlley\nAlonna\nAlyce\nAlyiah\nAlyssah\nAmaiya\nAmal\nAmauri\nAmberlee\nAmethyst\nAmore\nAmrit\nAmyiah\nAnaleigha\nAnalie\nAnalucia\nAnara\nAnastasiya\nAneesa\nAneth\nAngelene\nAngeli\nAngelin\nAngelita\nAngella\nAnica\nAniela\nAnisah\nAnishka\nAnjela\nAnoushka\nAnyeli\nAnyelin\nAnylah\nAra\nAralynn\nArgelia\nArisha\nArlenne\nArlett\nArlyne\nArtemis\nArushi\nAryssa\nAshby\nAshira\nAshli\nAsma\nAubreigh\nAubreyana\nAudri\nAvaleigh\nAvamarie\nAvantika\nAvary\nAylene\nAymar\nAzari\nAzriel\nBaileigh\nBaily\nBayley\nBelicia\nBeth\nBetzaida\nBless\nBliss\nBrazil\nBriannah\nBrie\nBryleigh\nCalifornia\nCalla\nCaraline\nCayleigh\nChasity\nChesney\nChina\nChristelle\nChyna\nCiena\nCintia\nColby\nCollins\nConstanza\nCoralyn\nCyrene\nDaizy\nDaksha\nDannia\nDanniela\nDarlin\nDasani\nDavinah\nDayla\nDecember\nDelayna\nDelina\nDemetria\nDenali\nDesirea\nDestyni\nDhwani\nDominica\nDyani\nDyanna\nEdyn\nEilene\nEleina\nEleny\nEleora\nEliah\nElida\nElika\nEliyah\nEloisa\nElvina\nElyana\nElyanna\nElysia\nElyzabeth\nEmaly\nEmberlynn\nEmmah\nEmmalie\nEmmarie\nEmmarose\nEmmelyn\nEmmersyn\nEmmily\nEmorie\nEmpress\nEmry\nEnalina\nEniyah\nErandy\nEryn\nEstephany\nEulalia\nEvanie\nEvanna\nEveline\nEveny\nEverlyn\nEvolette\nEzri\nFancy\nFarida\nFatema\nGabby\nGabryella\nGiannah\nGimena\nGizel\nGlory\nGohar\nGraciella\nGracyn\nGrayson\nGulianna\nHadassa\nHaddie\nHadia\nHalie\nHalima\nHanah\nHarmoney\nHaruka\nHarveen\nHayven\nHenessy\nHenna\nHeydi\nIana\nIdaly\nIlani\nIleanna\nIlyana\nImari\nInna\nIrina\nIsabellamarie\nIsaura\nItzayanna\nIva\nIyanah\nIzabela\nIzamar\nIzumi\nJadynn\nJaelin\nJahaira\nJakelyn\nJalaya\nJaliah\nJalisa\nJamilet\nJamya\nJanayah\nJanelli\nJania\nJanuary\nJasmyne\nJayah\nJaydee\nJaydy\nJaylani\nJaylean\nJaynie\nJeilyn\nJemima\nJennalyn\nJill\nJniyah\nJoella\nJohnnie\nJood\nJorley\nJoscelyn\nJoselle\nJourni\nJournie\nJozlyn\nJudah\nJuliann\nJuliett\nKaelah\nKaeley\nKaiah\nKaiden\nKalayah\nKalleigh\nKamiya\nKandace\nKaralyn\nKashish\nKay\nKaycie\nKaylina\nKayly\nKealani\nKeiana\nKeilany\nKennadie\nKennady\nKera\nKerrington\nKetzaly\nKeyanna\nKhaleesi\nKhloie\nKiarra\nKierstyn\nKimaya\nKimberlee\nKimia\nKimiya\nKiyah\nKlaryssa\nKloee\nKristell\nKristelle\nKristie\nKritika\nKyle\nKylia\nKymberly\nKymora\nKynslee\nLaela\nLaine\nLainie\nLaksmi\nLalani\nLamya\nLanai\nLariyah\nLavina\nLaylonie\nLaynie\nLaysha\nLee\nLeea\nLeianna\nLeigha\nLeighann\nLelani\nLenna\nLenora\nLeonie\nLeslee\nLexa\nLexii\nLeylanie\nLezlie\nLibni\nLinsey\nLizbet\nLizett\nLucila\nLucina\nLuka\nLya\nLynae\nMacayla\nMackayla\nMadden\nMaddyson\nMadysen\nMaelyn\nMagdalene\nMahi\nMailey\nMali\nMalika\nManisha\nManuela\nMaranda\nMaraya\nMariaisabel\nMariely\nMarilu\nMarleni\nMarli\nMaryellen\nMarylou\nMarysol\nMaryssa\nMason\nMatea\nMaureen\nMaylani\nMayumi\nMckinzie\nMeela\nMeili\nMeilyn\nMele\nMelena\nMeliah\nMichaella\nMikah\nMiliana\nMinka\nMiroslava\nMitzy\nMoana\nMomoka\nMursal\nMykayla\nMyleah\nMyleen\nMylie\nMysha\nNaiara\nNairi\nNalah\nNaomie\nNataliya\nNatally\nNatalynn\nNavah\nNavi\nNaylani\nNayleen\nNeda\nNehemiah\nNeida\nNelli\nNeomi\nNevah\nNiah\nNicki\nNicol\nNiharika\nNikayla\nNisha\nNizhoni\nNoe\nNoella\nNoga\nNoura\nNydia\nOctober\nOrla\nPaetyn\nPage\nPaislee\nPalmer\nParadise\nPatty\nPolly\nPrabhleen\nPraise\nQuinley\nRachell\nRailey\nRaquelle\nRavleen\nRawan\nRaygan\nRebekkah\nReed\nReema\nReena\nRei\nRemedy\nRemington\nRidhima\nRikki\nRileigh\nRima\nRinoa\nRonnie\nRosabella\nRoselin\nRoseline\nRosita\nRosslyn\nRyla\nRyleeann\nRylei\nRyli\nSafiya\nSahori\nSaida\nSakari\nSam\nSamari\nSanaii\nSehaj\nSemaj\nSevana\nShabnam\nShaelynn\nShalini\nShalyn\nShanell\nShani\nShaniya\nShauna\nShavon\nShawna\nShaya\nShaylin\nShealynn\nShekinah\nShianne\nShloka\nShraddha\nSidra\nSierrah\nSima\nSimar\nSimarpreet\nSimra\nSindy\nSissi\nSkyy\nSmrithi\nSofiah\nSolash\nSonakshi\nSophea\nStephania\nSunday\nSurya\nSydni\nTaelynn\nTaj\nTaleah\nTasha\nTasneem\nTatyanna\nTaylynn\nTeagen\nTeya\nTherese\nThu\nTierra\nTigerlily\nTommie\nTory\nTova\nTyanna\nTyla\nTyra\nUrsula\nValarie\nVanity\nVannesa\nVannessa\nVela\nVina\nYahira\nYailin\nYamilett\nYanessa\nYarelie\nYarelly\nYaretzie\nYaritzel\nYatziry\nYeslin\nYsabelle\nYuli\nYuriana\nYuritza\nZahira\nZahraa\nZakiya\nZamira\nZamora\nZamya\nZari\nZaylie\nZeltzin\nZitlali\nZora\nZowie\nZuleidy\nZury\nZyanna\nZyla\nZyrah\nSophia\nIsabella\nEmma\nEmily\nMia\nOlivia\nSofia\nAbigail\nSamantha\nAva\nCamila\nVictoria\nNatalie\nElizabeth\nChloe\nEvelyn\nGenesis\nAshley\nMadison\nZoe\nCharlotte\nHailey\nMelanie\nAudrey\nKimberly\nAlexa\nAlyssa\nAllison\nAubrey\nZoey\nElla\nGrace\nLily\nKaylee\nBella\nLeah\nAndrea\nAaliyah\nBrianna\nHannah\nScarlett\nMaya\nAvery\nJocelyn\nBrooklyn\nValeria\nKayla\nArianna\nJasmine\nAriana\nDelilah\nAmelia\nLayla\nKatherine\nVanessa\nAlexis\nSavannah\nValerie\nSophie\nNatalia\nSarah\nGianna\nRuby\nAmy\nGiselle\nViolet\nNicole\nAlexandra\nAddison\nAngelina\nNevaeh\nMila\nNaomi\nClaire\nStella\nMelissa\nJade\nEva\nMaria\nRiley\nKylie\nJessica\nKhloe\nLiliana\nDestiny\nIsabel\nFaith\nDaisy\nMichelle\nGabriella\nAria\nXimena\nStephanie\nHarper\nMelody\nJulia\nJennifer\nLillian\nValentina\nAngela\nTaylor\nMakayla\nEllie\nLeilani\nDaniela\nAlice\nSerenity\nMadeline\nSydney\nAnna\nPenelope\nJuliana\nLauren\nJacqueline\nYaretzi\nElena\nAubree\nKaitlyn\nLuna\nAliyah\nAriel\nKatelyn\nAlondra\nLucy\nAlina\nMadelyn\nJayleen\nBailey\nLeslie\nMariah\nPeyton\nEliana\nDiana\nAnnabelle\nEsmeralda\nIsabelle\nMackenzie\nBrooke\nAthena\nPaige\nAdriana\nGuadalupe\nKennedy\nIzabella\nJulianna\nVivian\nGabriela\nAlexia\nAutumn\nSadie\nSara\nHazel\nMiranda\nAlicia\nLeila\nSienna\nBrielle\nRachel\nAurora\nElise\nLilly\nIris\nRebecca\nAllyson\nMya\nElisa\nLondon\nTrinity\nJuliet\nReagan\nAmber\nLucia\nMolly\nItzel\nFatima\nJazmin\nAna\nMegan\nAileen\nCatherine\nFernanda\nJulissa\nAmaya\nKamila\nMarilyn\nRylee\nAmanda\nLyla\nNayeli\nChelsea\nKeira\nKatie\nAlejandra\nIvy\nMorgan\nAngelique\nJordyn\nLaila\nAlessandra\nMariana\nKate\nAlana\nBrooklynn\nCaroline\nBriana\nEleanor\nSummer\nAudrina\nKarina\nReese\nJuliette\nSkylar\nTiffany\nDaniella\nEden\nCali\nPerla\nPriscilla\nSierra\nPaisley\nBianca\nCrystal\nJosephine\nKarla\nJaylene\nAlison\nAngelica\nFiona\nGenevieve\nQuinn\nCynthia\nPayton\nRose\nCamille\nClara\nJimena\nKendall\nApril\nKaren\nJoanna\nJazmine\nJanelle\nJaylah\nMikayla\nSarai\nDanielle\nJayla\nSabrina\nPiper\nEvangeline\nEmely\nEmilia\nIsla\nCeleste\nKylee\nKelly\nSelena\nHayden\nLydia\nChristina\nMary\nViviana\nMadeleine\nCamilla\nGia\nJazlyn\nMarley\nPhoebe\nPresley\nVivienne\nAdeline\nJulie\nLola\nHaley\nKailey\nMelany\nCora\nAngel\nDanna\nGiuliana\nCassandra\nMarissa\nAylin\nCecilia\nMalia\nJenna\nHeidi\nDahlia\nGemma\nAngie\nBrenda\nAnahi\nLila\nArabella\nKiara\nDayana\nAlexandria\nCassidy\nAnnabella\nLizbeth\nNina\nGabrielle\nJordan\nOlive\nSiena\nBrittany\nEsther\nKira\nNora\nAbby\nAshlyn\nCarolina\nClarissa\nEliza\nJasmin\nVeronica\nLilah\nNathalie\nShelby\nHelen\nAleena\nEmery\nMonica\nPaola\nKassandra\nLexi\nLia\nCarmen\nDulce\nKenia\nSerena\nDenise\nGracie\nHarmony\nNoemi\nAnnie\nMiley\nNadia\nLilliana\nYareli\nAnabelle\nDaphne\nHanna\nHope\nDesiree\nArielle\nCataleya\nLaura\nMckenzie\nCatalina\nIrene\nNataly\nWillow\nArely\nAyleen\nEloise\nEstrella\nMakenzie\nBethany\nBreanna\nJane\nAniyah\nAyla\nKaylie\nTatiana\nJamie\nSasha\nAdrianna\nCarly\nDelaney\nGalilea\nMarisol\nMiah\nNoelle\nMelina\nScarlet\nCharlie\nJessie\nErin\nKenya\nAlaina\nJoselyn\nSherlyn\nKali\nMargaret\nKara\nRuth\nAllie\nAlyson\nElle\nLitzy\nBelen\nErika\nNatasha\nTeresa\nTessa\nArya\nCaitlyn\nAdelyn\nAnabella\nDakota\nElliana\nIsis\nJohanna\nMiriam\nAnaya\nAnya\nDanica\nMaliyah\nAmelie\nJanessa\nHeaven\nJayden\nKenzie\nLana\nMadilyn\nRegina\nRosalie\nHadley\nLinda\nLondyn\nNancy\nWendy\nAmerica\nEmerson\nTalia\nAimee\nAngeline\nBrynn\nGeorgia\nGloria\nHayley\nJune\nKyla\nMckenna\nMikaela\nTeagan\nDana\nJulieta\nCadence\nMarina\nRenata\nAdele\nAshlynn\nEileen\nLilian\nCallie\nCindy\nDylan\nGisselle\nIvanna\nLesly\nColette\nDarlene\nKaydence\nNorah\nAbril\nAdalynn\nAnastasia\nChristine\nJada\nKendra\nCaitlin\nKatelynn\nLeia\nPaloma\nParker\nRaquel\nRylie\nAdalyn\nAubrie\nDalilah\nHelena\nMyla\nReyna\nSandra\nAlani\nBrisa\nHaylee\nKaia\nPaula\nPaulina\nAdelaide\nAleah\nHolly\nMakenna\nRosa\nSage\nTatum\nKathryn\nMaritza\nParis\nBridget\nJosie\nKelsey\nLexie\nNia\nAnika\nCarla\nIliana\nIsabela\nJillian\nJoy\nAnnika\nHarlow\nLiana\nYasmin\nBriella\nLuz\nSamara\nYesenia\nZara\nAlayna\nAnnabel\nLea\nLilianna\nMaddison\nMarlene\nMonserrat\nSavanna\nElsie\nJaelyn\nKaylin\nLucille\nMaggie\nNathaly\nNyla\nRosemary\nAryanna\nCharlize\nFrancesca\nJenny\nSarahi\nChanel\nJaqueline\nRebekah\nAddyson\nElaine\nGiana\nKaelyn\nKayleen\nKiana\nRaegan\nErica\nLena\nMichaela\nSelah\nTiana\nAdelina\nCamryn\nElyse\nJazlynn\nKyra\nLeanna\nLilyana\nLuciana\nSkye\nBryanna\nFinley\nHaven\nPatricia\nAliana\nAlivia\nCheyenne\nDarla\nJudith\nKassidy\nKristina\nMadelynn\nMaryjane\nSloane\nAdelynn\nCeline\nKeyla\nKristen\nPearl\nRaelynn\nSkyler\nSonia\nStacy\nYamileth\nDalia\nGeraldine\nGwendolyn\nJanet\nMontserrat\nRoselyn\nVioleta\nAlisson\nAmiyah\nBaylee\nElissa\nNylah\nSharon\nGrecia\nHana\nMakena\nSimone\nCambria\nCristina\nJayda\nLeyla\nClaudia\nLisa\nLyric\nSariah\nElaina\nElsa\nMaia\nShiloh\nAlma\nBelinda\nElianna\nEmilee\nEve\nFrida\nKeily\nLina\nLylah\nMarie\nThalia\nXochitl\nAverie\nEvie\nFarrah\nJayde\nKinsley\nMaite\nRyan\nShayla\nYaretzy\nJourney\nKiley\nMadalyn\nMartha\nValery\nYuliana\nAlanna\nAliya\nAlly\nCarissa\nEmilie\nHarley\nJaelynn\nKamilah\nKamryn\nMaci\nRyleigh\nYaritza\nAdilene\nAzul\nCoraline\nEdith\nKailani\nLaylah\nMacie\nMina\nSylvia\nEvelynn\nJaylin\nKinley\nLarissa\nLindsey\nMacy\nPhoenix\nAda\nAilyn\nAiyana\nAlissa\nAmara\nBritney\nEsperanza\nItzayana\nKaliyah\nKathleen\nMilagros\nRoxanne\nVera\nAisha\nAraceli\nEllen\nJaslene\nJoyce\nKailyn\nKaya\nKayden\nLizeth\nScarlette\nVienna\nAbbie\nAlia\nAliah\nArlene\nCharlee\nDanika\nJacquelyn\nJazzlyn\nLindsay\nMariela\nRubi\nXiomara\nAnabel\nAryana\nCourtney\nEmmalyn\nEvangelina\nKrystal\nMatilda\nNathalia\nTania\nAlena\nAriella\nAzalea\nImani\nJocelynn\nJolie\nLorelei\nRebeca\nShaila\nYazmin\nAreli\nKailee\nMariam\nMaryam\nNova\nSoleil\nYarely\nYvette\nAnais\nAnnalise\nBeatrice\nHeidy\nKayleigh\nLeilah\nLilia\nLucero\nMayra\nMicaela\nSelene\nAinsley\nAnalia\nBraelyn\nCameron\nCristal\nDania\nDonna\nJolene\nLogan\nLupita\nMilena\nRosie\nAnnette\nCitlali\nClementine\nDamaris\nGizelle\nIzel\nMilania\nTara\nYamilet\nZariah\nAmira\nHailee\nIngrid\nJaylynn\nKarissa\nLauryn\nLillyana\nMaleah\nReina\nRiver\nRiya\nRowan\nAstrid\nCaylee\nKaila\nKaitlin\nKaitlynn\nKathy\nKeila\nLara\nMaribel\nMaxine\nMayte\nMilana\nMira\nNoa\nSalma\nSkyla\nWhitney\nXitlali\nAbbey\nAniya\nAviana\nEmber\nEstefania\nJulianne\nKadence\nKaylani\nKeilani\nLianna\nMelinda\nNatalya\nPamela\nSunny\nYadira\nYoselin\nAdela\nBlake\nCharley\nEstella\nEvelin\nFrances\nJanice\nKaiya\nKalea\nKiera\nMyah\nSaanvi\nSky\nAbbygail\nAmina\nAnne\nCarina\nFabiola\nGiovanna\nJemma\nKataleya\nMallory\nMckayla\nMonique\nRenee\nSusana\nAanya\nArianny\nAudriana\nDayanna\nElina\nElisabeth\nLivia\nMadisyn\nMalaya\nMercedes\nMika\nRihanna\nVida\nAlannah\nAnanya\nIvana\nJewel\nMilan\nSelina\nShannon\nAdrienne\nAmalia\nArlette\nBailee\nBerenice\nCarolyn\nCoral\nElin\nEmi\nEunice\nJustice\nKaris\nKarol\nKaylah\nMiracle\nSoraya\nTanya\nAditi\nAlayah\nAracely\nCara\nDariana\nFrankie\nIvory\nKalani\nKalia\nKayley\nMadilynn\nRomina\nSawyer\nStephany\nTabitha\nTina\nBarbara\nDeborah\nEmelia\nEmmy\nGiada\nJaylee\nKallie\nLillie\nMarianna\nMillie\nRoxanna\nSilvia\nSofie\nVivianna\nZooey\nAmirah\nBonnie\nDalila\nDestinee\nDiya\nEvalyn\nFelicity\nGraciela\nHaylie\nJackeline\nKai\nKourtney\nLilyanna\nLizette\nMaylin\nRaylene\nStacey\nVianney\nWilla\nZoie\nAbbigail\nAddisyn\nAlisa\nAmari\nAshlee\nAya\nCasey\nDenisse\nJaslyn\nJaylyn\nKairi\nLeilany\nMyra\nNatalee\nYahaira\nYolanda\nYvonne\nZariyah\nAmani\nCalista\nCelina\nCiara\nDavina\nFaye\nHadassah\nHillary\nJuniper\nLesley\nLeticia\nLiberty\nLiv\nLorena\nMiya\nNaya\nRaina\nRocio\nAmerie\nBlanca\nCherish\nDorothy\nHeather\nJaniyah\nJordynn\nKarly\nKaylen\nLacey\nLeanne\nLeona\nMadalynn\nMarisa\nPaulette\nRaelyn\nRaven\nSarina\nSuri\nYaneli\nZuri\nAkira\nAlisha\nAspen\nBridgette\nConnie\nGwen\nHailie\nIrie\nJasleen\nKaley\nKatalina\nLailah\nLeela\nLeighton\nLilith\nLluvia\nMargot\nMireya\nRhea\nZahra\nAlanah\nAlianna\nCharlene\nDasha\nDemi\nDevyn\nEmmalee\nJaylen\nJoelle\nJosselyn\nKaylynn\nLuisa\nMaeve\nMeredith\nMonroe\nPenny\nSahana\nSally\nSandy\nShreya\nSidney\nSinai\nVanesa\nVianey\nVirginia\nAbrielle\nAdrina\nAnita\nAnnabell\nAyana\nBetsy\nBristol\nCandy\nCarol\nCelia\nCienna\nFlor\nGisele\nJiselle\nKalina\nKatrina\nLorelai\nMagaly\nRita\nRyann\nWren\nYara\nAmya\nAnissa\nAsha\nAubriella\nAudrianna\nCielo\nDayanara\nEstela\nHarlee\nIsabell\nJaycee\nKaelynn\nKhaleesi\nLaurel\nLynette\nLyra\nMaliah\nMiabella\nNelly\nNoelani\nNyah\nRachael\nSamira\nAliyana\nBrynlee\nClare\nDeanna\nDiane\nElyssa\nEsme\nHalle\nJazleen\nJazmyn\nJenesis\nJoslyn\nKasey\nKyleigh\nLidia\nMariajose\nMariyah\nMarlee\nMilah\nMoriah\nNadine\nNala\nNalani\nNeveah\nNola\nNoor\nRegan\nRosalinda\nTori\nZainab\nAlize\nAnn\nAnnelise\nArleth\nAudree\nAvianna\nBeatriz\nBlair\nBrissa\nCoco\nCorinne\nElia\nEverly\nGracelyn\nGreta\nJana\nJustine\nKianna\nMalaysia\nPaityn\nSamiyah\nStevie\nSusan\nTracy\nUnique\nZaniyah\nAilani\nAlyna\nAmia\nAmiah\nAmiya\nAnaleah\nAnayeli\nAntonella\nAriyah\nBria\nElliot\nEstelle\nFlora\nItalia\nIzabelle\nJanae\nJanelly\nLeena\nLexy\nMagali\nMargarita\nMarlyn\nNaima\nPrincess\nPriscila\nRosario\nRoxana\nSaige\nSloan\nVivien\nWinter\nZelda\nAiyanna\nAmaris\nAnnalee\nAriah\nBeverly\nCailyn\nCapri\nCitlalli\nDianna\nDominique\nDrew\nEleni\nHalo\nIreland\nIsadora\nIsela\nJaliyah\nJazelle\nJoanne\nKatia\nKora\nKristy\nLillianna\nMara\nMarcela\nMarlowe\nMayah\nRayna\nSheila\nShirley\nTenley\nAbrianna\nAlaya\nAmberly\nAnaiah\nAnayah\nAubrielle\nAurelia\nAvah\nAyanna\nAyva\nBrigitte\nBryana\nCassie\nCitlaly\nElly\nElodie\nEma\nEmmaline\nFarah\nFreya\nJenelle\nMarbella\nMarely\nMay\nNoelia\nPepper\nRoxy\nSheyla\nTaryn\nTia\nZaira\nAdamari\nAida\nAnjali\nAriadne\nAriya\nAvani\nBree\nCharli\nEllis\nEmmalynn\nEmmie\nGwyneth\nJazlene\nKaty\nKaycee\nKaylene\nKaylyn\nKeren\nLucinda\nMalina\nMckinley\nMeghan\nMercy\nNailah\nNatali\nNicolette\nNikki\nSaniya\nSonya\nTamara\nViola\nViolette\nYulissa\nAarya\nAdamaris\nAliza\nAlysson\nAmayah\nAnalise\nAnnamarie\nAubriana\nAudrie\nBerlin\nBetty\nBryn\nCecelia\nCleo\nDallas\nDelia\nEmmeline\nEstefany\nFelicia\nGema\nGeneva\nGeorgina\nJacquelin\nJoana\nKailynn\nKamilla\nKenley\nKirra\nLillyanna\nLinnea\nLove\nLovely\nMadyson\nMalani\nMeadow\nMelisa\nMilla\nMiyah\nNaomy\nPilar\nRemy\nSabine\nSamaya\nSana\nSylvie\nTaliyah\nTegan\nVicky\nYuna\nAadhya\nAarna\nAlaysia\nAli\nAngeles\nAni\nAntonia\nAshly\nAulani\nAvalon\nBrinley\nBrittney\nCayla\nChiara\nDesirae\nDoris\nEmme\nIvette\nIxchel\nIzabel\nJackelyn\nJael\nJailyn\nJohana\nJulisa\nKaleah\nKamille\nKarely\nKarlee\nKayle\nKenna\nLainey\nLaniyah\nMagdalena\nMarian\nMelani\nMicah\nNaia\nOlga\nPoppy\nPriya\nQuetzalli\nRory\nTess\nXitlaly\nYsabella\nAbygail\nAleeah\nAmarie\nAnnalisa\nAnneliese\nAnushka\nAzariah\nAzucena\nBillie\nBrenna\nCaelyn\nCarlee\nChanelle\nCosette\nDiamond\nGillian\nIsha\nJackie\nJaneth\nJaya\nJeanette\nJessa\nJoslynn\nKaily\nKasandra\nKendal\nKinsey\nMandy\nMaricela\nMelia\nNeriah\nPrecious\nRamona\nRia\nSabina\nSanvi\nSavanah\nSaylor\nShriya\nYasmine\nAaralyn\nAilin\nAnali\nAri\nAriela\nArlet\nAsia\nCandice\nCattleya\nCheyanne\nDafne\nDani\nElisha\nElora\nEmerald\nEmersyn\nGladys\nGracelynn\nHallie\nHarleen\nHattie\nHonesty\nImogen\nIrma\nJacklyn\nJadyn\nJaymie\nJazlin\nKaterina\nKayli\nKim\nKrista\nLisette\nLouisa\nLouise\nLourdes\nMae\nMaisie\nMakaylah\nMalayah\nMari\nMarlen\nMylah\nMylee\nNallely\nNavya\nNya\nOphelia\nRaya\nRomy\nRosalyn\nRosemarie\nRylan\nSariyah\nSerene\nShania\nShyla\nViridiana\nYuridia\nZahara\nAbigale\nAlyanna\nAnabell\nAniah\nArden\nArleen\nArlyn\nAubri\nAubrianna\nBeatrix\nBelle\nBriseida\nBrylee\nCalliope\nCarlie\nChelsey\nChristy\nCordelia\nDelylah\nDevon\nDora\nEvolet\nGiavanna\nGriselda\nHolland\nIlene\nInez\nJaidyn\nJaslynn\nJenessa\nJianna\nJoseline\nJosslyn\nJournee\nJubilee\nKarime\nKarma\nKennedi\nLaylani\nLilyann\nLiya\nLiyah\nMabel\nMagnolia\nMaliya\nMarjorie\nMarlie\nPia\nSamarah\nSaniyah\nSerina\nShea\nSol\nStar\nThea\nVania\nViktoria\nYatziri\nZaria\nAaleyah\nAdalie\nAddilyn\nAlba\nAlex\nAlexi\nAllisson\nAlyah\nAlynna\nAvalyn\nBlakely\nCarley\nCarrie\nCathy\nChaya\nDevin\nEla\nEmani\nEvalynn\nGissel\nGiulianna\nJaida\nJessenia\nJiya\nJocelyne\nJosefina\nKensington\nKristin\nKristine\nKylah\nLaisha\nLeyna\nLucie\nLuella\nMacey\nMalika\nMaren\nMaylen\nMilani\nMindy\nMisha\nNayely\nNayla\nNichole\nRemi\nSymphony\nToni\nYocelin\nAahana\nAbella\nAdelle\nAlexus\nAleyah\nAnaly\nAnisa\nArmani\nAvril\nBriseyda\nCailey\nCarter\nCecily\nChristiana\nCianna\nClover\nDaiana\nDebora\nEllianna\nEstefani\nEvan\nEvelina\nGisela\nHollie\nHonor\nJaclyn\nJanette\nJessalyn\nJoselin\nKaleigh\nKaliah\nKirsten\nKiyomi\nLaney\nMaiya\nMarcella\nMariella\nMelania\nNellie\nPauline\nPersephone\nPreslee\nPromise\nRobin\nRosalind\nSanaa\nShayna\nShyanne\nSia\nSusanna\nSydnee\nTallulah\nTemperance\nTerra\nTrisha\nVenus\nYael\nZia\nZoya\nAbigayle\nAdella\nAiram\nAlessia\nAlyvia\nAmariah\nAmbar\nAngely\nAnnaleah\nAnnaliese\nAolanis\nAveri\nAzaria\nBerlyn\nBriseis\nCampbell\nCarmella\nChantal\nCharity\nChevelle\nConstance\nDelanie\nElliott\nElvira\nFranchesca\nGenessis\nGina\nHilda\nHunter\nJalayah\nJamilet\nJanely\nJaniya\nJenifer\nJude\nKacey\nKacie\nKarsyn\nKavya\nKeziah\nKhushi\nKiersten\nKya\nLeylani\nLibby\nLili\nMaisy\nMarianne\nMayleen\nMollie\nNadya\nNahla\nNayelli\nNeha\nNikita\nPrisha\nRain\nRayleen\nReilly\nRena\nRobyn\nRoslyn\nRyder\nSafa\nSamya\nSanai\nSerafina\nSeraphina\nTanvi\nTheresa\nVy\nYatziry\nYessenia\nYoselyn\nAbilene\nAdaline\nAdley\nAiza\nAllyssa\nAmi\nAnalee\nAnela\nAnnemarie\nArissa\nAvalynn\nAven\nAyelen\nBlythe\nBreanne\nCayden\nCheryl\nDarleen\nDesteny\nEllery\nEmeli\nEmeline\nEvalina\nGinger\nGrayson\nGwenyth\nHellen\nHennessy\nHilary\nIla\nInara\nIyanna\nJenevieve\nJesslyn\nJizelle\nJustina\nKatya\nKyara\nKyndall\nLela\nLilyanne\nLisbeth\nMaile\nMaira\nMalak\nMaycee\nMayrin\nMelannie\nMelodie\nMelony\nMona\nNaveah\nPatience\nRio\nRoselynn\nSailor\nSamanta\nSamiya\nSaoirse\nSaray\nSeven\nSiri\nStefany\nTheodora\nTianna\nTyler\nYarel\nZion\nAgnes\nAhana\nAila\nAleenah\nAleyna\nAlinah\nAmrit\nAnaliyah\nAngelyn\nAnia\nAnnmarie\nAraya\nAudra\nBriley\nBrookelynn\nCalla\nCamden\nCarmela\nCattaleya\nCaydence\nColbie\nDelany\nDella\nDivya\nEisley\nEmiliana\nEmmanuelle\nEricka\nEtta\nEzra\nGaby\nGala\nIly\nIrlanda\nIsa\nIvonne\nIzabell\nJacey\nJadelyn\nJaniah\nJanie\nJazzlynn\nJoan\nJoceline\nJudy\nKaida\nKaryme\nKatarina\nKensley\nLeann\nLeeann\nLiah\nLillia\nLoren\nLorraine\nLotus\nLynn\nMagaby\nMarilynn\nMarwa\nMattie\nMilly\nMonserrath\nNalah\nPetra\nRayne\nReya\nRosalee\nRosalina\nSaira\nSakura\nSantana\nSavina\nSequoia\nShanelle\nShanik\nSkylee\nSoledad\nSomaya\nTala\nTalya\nTaya\nTaytum\nTreasure\nVeda\nVianna\nYajaira\nYulianna\nZarah\nZoee\nZulema\nAadya\nAcacia\nAdalina\nAeris\nAkemi\nAlaia\nAlanis\nAleyda\nAlya\nAlyana\nAlysa\nAlyse\nAmairany\nAngelia\nAngelie\nAriannah\nAshtyn\nBellarose\nBlessing\nBrandy\nCailin\nCamellia\nCierra\nCinthia\nCollins\nDarcy\nDior\nDivine\nElayna\nEmerie\nEmiko\nEmmarie\nEssence\nFallon\nHaily\nHoney\nJaden\nJaela\nJahzara\nJaquelyn\nJatziry\nJayna\nJovie\nJuana\nKailea\nKaili\nKamari\nKamea\nKamiyah\nKarolina\nKelsie\nKeyli\nKori\nLeilanie\nLori\nLulu\nMaricruz\nMarisela\nMarleen\nMarlo\nMaryah\nMavis\nMaylee\nMaylene\nMedha\nMeena\nNahomi\nNava\nNidhi\nNika\nOpal\nRania\nRylynn\nSahara\nSapphire\nSavana\nSharlyn\nSkarlett\nSunshine\nWinnie\nYana\nYasmeen\nYorley\nYuritzi\nZola\nAbriana\nAdalia\nAdara\nAdilyn\nAdyson\nAhtziri\nAislinn\nAkshara\nAline\nAmeera\nAmethyst\nAmie\nAminah\nAneesa\nAubry\nAyvah\nBraelynn\nBreana\nBriza\nCaitlynn\nCarys\nCatelyn\nCiana\nDaira\nDanya\nDarby\nDaria\nDarlyn\nDayra\nDestiney\nEbony\nEkam\nElana\nElianah\nEllena\nEllison\nElvia\nElyana\nElyanna\nEmelyn\nEmmarose\nEster\nEver\nGisel\nHenley\nIndia\nInes\nIshani\nIyana\nJaiden\nJaime\nJazmyne\nJia\nJoann\nJoey\nJordin\nJuno\nKalena\nKarli\nKatharine\nKeeley\nKeely\nKeiry\nKelis\nKhloee\nKierra\nKimber\nKimberley\nKimora\nKlarissa\nLailani\nLaniya\nLayah\nMailyn\nMaylani\nMeilani\nMisty\nMyka\nNahomy\nNyomi\nPaislee\nQuincy\nRachelle\nRhiannon\nRina\nSahasra\nSayra\nScout\nShanti\nShira\nShivani\nSiyona\nSophya\nTamia\nTaraji\nTristyn\nUma\nWynter\nYanely\nYanilen\nYzabella\nAbriella\nAdalee\nAdrian\nAkari\nAlessa\nAlexsandra\nAlora\nAmeerah\nAmilia\nAmora\nAnaliese\nAnamaria\nAnevay\nAnisha\nAnja\nAnnalie\nAranza\nAshanti\nAshleigh\nAtziri\nAyah\nAyesha\nBeautiful\nBetzy\nBeyonce\nBridgett\nBritany\nCalie\nCallista\nCandace\nCharis\nChrista\nCollette\nDaliah\nDara\nDarina\nDayna\nDeisy\nDelila\nDina\nElva\nElysia\nEmalee\nEmmerson\nEowyn\nEverleigh\nFlorence\nGianella\nGigi\nGisell\nGretchen\nHarnoor\nHaydee\nHeavenly\nIlana\nIleen\nIman\nIra\nIyla\nJalissa\nJanine\nJanney\nJocelynne\nJohannah\nJoselynn\nJuanita\nJuliett\nJulietta\nJulyssa\nKaela\nKaiah\nKalista\nKamyla\nKarizma\nKarmen\nKatheryn\nKay\nKeilly\nKitzia\nKyrie\nLacy\nLeiah\nLesli\nLeslye\nLuca\nLynda\nMagdalene\nMaily\nMakaela\nMargaux\nMarin\nMarla\nMihika\nMillicent\nNailea\nNikole\nNiya\nNoel\nNuvia\nOfelia\nOlyvia\nPricila\nQueenie\nRae\nReece\nRemington\nRochelle\nRosalia\nRyley\nRylin\nSade\nSama\nSanjana\nSaydee\nShaina\nShana\nSherry\nShyann\nSimran\nTaelynn\nTatianna\nTatyana\nTaylin\nTiara\nUrsula\nVaishnavi\nVanya\nVittoria\nYumi\nYuri\nZaniya\nZella\nZiva\nAdamary\nAddelyn\nAddie\nAddysen\nAdina\nAdylene\nAide\nAislynn\nAleen\nAleeya\nAlinna\nAlizay\nAlona\nAlonna\nAmal\nAmberlynn\nAmmy\nAnaiya\nAnaiyah\nAnalicia\nAndi\nAnnaleigh\nAnoushka\nArianne\nAugust\nAura\nAvneet\nAylah\nAylene\nBayleigh\nBaylie\nBellamarie\nBernadette\nBetsabe\nBliss\nBobbi\nBraylee\nBrianne\nBrihanna\nBrynley\nCamdyn\nCate\nCaylin\nCherry\nChloee\nConsuelo\nDianne\nDivina\nDream\nElli\nElsy\nEmalyn\nEmilyn\nEnvy\nEsha\nEternity\nEverlee\nFatimah\nFinnley\nGabby\nGiulia\nGuinevere\nIleana\nInaya\nIndiana\nItzell\nItzia\nJailene\nJaimie\nJalynn\nJalyssa\nJanell\nJanna\nJaquelin\nJasmyne\nJaymee\nJean\nJocelin\nJoie\nJolette\nJordana\nJovanna\nKaelani\nKailana\nKalei\nKalynn\nKarley\nKarlie\nKatlyn\nKeilana\nKhadija\nKhalia\nKristal\nKyndal\nLilyan\nLizet\nLondynn\nMadelaine\nMadina\nMahi\nMakaila\nMalena\nMarion\nMarysol\nMaybelline\nMeagan\nMei\nMileena\nMinerva\nMirella\nMoira\nMykayla\nNashly\nNayomi\nNila\nNorma\nOdalys\nPeighton\nPyper\nRenesmee\nRhyan\nRian\nRianna\nRya\nSaleen\nSamaira\nSanaya\nSarahy\nSariya\nSetareh\nShay\nShaylee\nShylah\nSicily\nStefanie\nSusie\nSydnie\nTahlia\nTaleah\nTayler\nTesla\nTinsley\nTonantzin\nVada\nValencia\nVanity\nVarsha\nVenice\nVeronika\nVilma\nVioletta\nVivianne\nYatzil\nZaya\nZayla\nZayra\nZena\nZora\nZury\nAashna\nAdel\nAdelia\nAdilynn\nAdrielle\nAiko\nAiley\nAleia\nAleida\nAlyce\nAlycia\nAmairani\nAmyah\nAnahy\nAnai\nAnaliah\nAnastacia\nAndie\nAnette\nAngelli\nAnnabeth\nAnnalia\nAntoinette\nAnusha\nAnvi\nArabelle\nAriadna\nAriyana\nAriyanna\nArwen\nAryam\nAsa\nAvamarie\nAyden\nBentley\nBerkeley\nBethel\nBianka\nBrigette\nBrooklynne\nBryce\nCalia\nCalli\nCaylie\nChantelle\nCharleigh\nChasity\nChyna\nClaira\nDaleyza\nDanae\nDanni\nDayami\nDayla\nDaysi\nDelani\nDelphine\nDeysi\nDezirae\nDia\nDixie\nEaston\nEknoor\nElif\nEliyah\nEllee\nEllia\nElysse\nEmmily\nEsmee\nEvette\nFayth\nFrancine\nGaia\nGennesis\nGissell\nGoldie\nGurnoor\nHeydi\nHudson\nIlianna\nIlyana\nImelda\nIndigo\nIsamar\nIshika\nIssabella\nItaly\nIzzabella\nJadore\nJanaya\nJannah\nJarely\nJaylean\nJayleene\nJayline\nJazlyne\nJeannette\nJesse\nJewels\nJezebel\nJolee\nJoscelyn\nJosephina\nJosette\nJurnee\nKadyn\nKahlan\nKalayah\nKalliope\nKalyn\nKamya\nKaroline\nKendyl\nKennia\nKingsley\nKlaire\nKloe\nKorra\nKristel\nLanaya\nLaya\nLeeah\nLeyah\nLillyann\nLula\nLux\nMackenna\nMadden\nMaddie\nMadisen\nMaegan\nMaiah\nMaja\nManeh\nMareli\nMarlena\nMaryanne\nMattea\nMayumi\nMeah\nMeara\nMelanny\nMerari\nMonet\nMylie\nNaimah\nNaisha\nNaiya\nNariah\nNataliya\nNaylah\nNilah\nNiyah\nNubia\nOdette\nPricilla\nQueena\nRayah\nReena\nReign\nRhianna\nRilee\nRileigh\nRilynn\nRivka\nRosalynn\nSalome\nSamirah\nSammie\nSaniah\nSaori\nSarayah\nSaya\nSedona\nSeerat\nShae\nShayne\nSilvana\nSivan\nSiya\nSkylynn\nSkyy\nSolange\nSutton\nSuzette\nTammy\nTaniyah\nTea\nTristan\nTuesday\nVerenice\nVita\nXenia\nYessica\nYoana\nYohana\nYui\nYulisa\nZadie\nZaina\nZinnia\nZofia\nZuria\nZyanya\nAaliah\nAaliya\nAalyah\nAaradhya\nAashi\nAbagail\nAbbigale\nAdanely\nAdelaida\nAdison\nAkshaya\nAlaiyah\nAleeyah\nAleiyah\nAlexys\nAleya\nAlitzel\nAllegra\nAlliyah\nAllyana\nAlyza\nAmaia\nAmaiya\nAn\nAnaia\nAnalisa\nAnamarie\nAngeli\nAngelika\nAngelynn\nAnnalyn\nAnniyah\nAnvita\nAra\nArihanna\nAshleen\nAsiya\nAudrinna\nAundrea\nAvonlea\nAyane\nAyme\nAyumi\nAzaleah\nBelladonna\nBernice\nBobbie\nBrinkley\nBrissia\nBrook\nBrynna\nCarleigh\nCarmelita\nCatalaya\nChanning\nCharlette\nCharlise\nChelsie\nConstanza\nCorina\nCorrina\nDarlah\nDawn\nDeana\nDelaila\nDhalia\nDianelly\nDulcemaria\nEdie\nEdna\nElika\nElliette\nEllyana\nEmaan\nEmoni\nEmory\nEris\nEsli\nEvany\nFern\nFrancisca\nGenevie\nGenisis\nGeorgette\nGeorgiana\nGetsemani\nGlory\nGracey\nGracyn\nGurleen\nGyselle\nHadleigh\nHarriet\nHavana\nHaya\nHeily\nHermione\nIanna\nIlliana\nIna\nIva\nJaide\nJaina\nJannat\nJatziri\nJayme\nJazlynne\nJeanelle\nJenavieve\nJennah\nJessi\nJessika\nJodi\nJody\nJohnnie\nJournie\nJules\nJulieth\nKahlia\nKaira\nKalie\nKalli\nKarah\nKareena\nKari\nKarisma\nKatelin\nKatherin\nKaydee\nKealani\nKelli\nKensie\nKenzi\nKhloie\nKimani\nKimiko\nKrisha\nKristie\nLacie\nLavender\nLavinia\nLeana\nLegacy\nLennon\nLeylah\nLilit\nLinden\nLinette\nLissette\nLiyana\nLois\nLucca\nLynnette\nMackenzee\nMadelyne\nMakyla\nMalaika\nMaliha\nManha\nMaribella\nMariel\nMarielle\nMartina\nMaryann\nMason\nMattison\nMea\nMeera\nMeher\nMelodee\nMelonie\nMikaella\nMildred\nMimi\nMinnie\nMischa\nMonzerrat\nMyriam\nNataley\nNatania\nNavaeh\nNayelie\nNazli\nNeila\nNeve\nNeyla\nNithya\nNoya\nOdalis\nPalmer\nPandora\nParisa\nPayten\nPolina\nPranavi\nPreslie\nRaeann\nRaine\nRana\nRaniyah\nRhylee\nRichelle\nRoberta\nRubie\nSaffron\nSaisha\nSaiya\nSalem\nSalina\nSamaria\nSamiah\nSareen\nSaskia\nSatya\nSemaj\nShanaya\nShanell\nSharlene\nSianna\nSilver\nSirena\nSofi\nSonja\nSora\nSrinidhi\nStarla\nStarr\nStefania\nStory\nSumaya\nSwara\nTaelyn\nTanisha\nTierra\nTinley\nTrina\nValentine\nVibha\nXena\nXitlalli\nXochilt\nYetzali\nYuki\nYulia\nYuritzy\nYuvia\nYvanna\nZamora\nZaynab\nZendaya\nZully\nAdabella\nAdalena\nAdi\nAdvika\nAilen\nAilynn\nAina\nAira\nAishwarya\nAislyn\nAlahna\nAlanie\nAlayla\nAleana\nAleeza\nAleksandra\nAlexandrea\nAlexxa\nAlisia\nAlitza\nAliyanna\nAlizah\nAlizee\nAlyiah\nAlysia\nAlyssah\nAmayrani\nAmberlyn\nAmisha\nAnahit\nAnahita\nAnaleigh\nAnasofia\nAndria\nAnella\nAngelee\nAngelin\nAnnalicia\nAnnamaria\nAnyssa\nAribella\nAries\nArina\nArriana\nAshton\nAsma\nAthziry\nAudri\nAustyn\nAutum\nAvrie\nAylen\nAysha\nBecky\nBela\nBellamy\nBennett\nBertha\nBeth\nBlayke\nBlossom\nBowie\nBrandi\nBrea\nBriar\nBrighton\nBrithany\nBrixton\nCamelia\nCaris\nCarsyn\nCesia\nChandler\nChelsy\nChloie\nChristie\nClarisa\nCyan\nDagny\nDaijah\nDailyn\nDaizy\nDakotah\nDalylah\nDamara\nDannia\nDayani\nDeja\nDesire\nDinah\nDolores\nDraya\nDylann\nEdyn\nElani\nElanie\nEleana\nElexis\nElisabet\nElisia\nElizabella\nEmelina\nEmiyah\nEmmah\nEmmely\nEmmi\nEmonie\nEna\nErandi\nEstrellita\nEvanie\nEvianna\nFrancheska\nFrancis\nFrankee\nFreyja\nGalilee\nGardenia\nGladis\nGrettel\nHadassa\nHaddie\nHaleigh\nHalia\nHanah\nHaneen\nHarleigh\nHarlyn\nHarmonie\nHayleigh\nHenrietta\nHiba\nHosanna\nIda\nIleene\nInessa\nIrina\nIvanka\nJackelin\nJaclynn\nJaelene\nJalisa\nJanett\nJaretzy\nJasmyn\nJayah\nJayana\nJaycie\nJaydah\nJaydee\nJaylinn\nJeanne\nJeimy\nJena\nJenni\nJeselle\nJesenia\nJolina\nJoselyne\nJuliann\nJuliza\nKaavya\nKaedyn\nKaely\nKailah\nKailie\nKaiulani\nKalee\nKaleia\nKamara\nKambria\nKandy\nKatalia\nKatheryne\nKaydance\nKaylei\nKayloni\nKeerat\nKeeva\nKenadee\nKennya\nKenzy\nKeylin\nKhali\nKhloey\nKimberlin\nKimi\nKiya\nKlara\nKristiana\nKrystel\nKrystina\nKyah\nKyle\nLaci\nLaela\nLailany\nLakshmi\nLamya\nLani\nLayna\nLeeana\nLeeanna\nLeina\nLeonie\nLeonor\nLeya\nLian\nLilibeth\nLillyan\nLindy\nLiora\nLupe\nMaha\nMailani\nMalea\nMaleia\nMalin\nMana\nManreet\nMarceline\nMargo\nMariya\nMarlow\nMarylin\nMathilde\nMayla\nMazie\nMazzy\nMelinna\nMercedez\nMeryl\nMetztli\nMeztli\nMili\nMishka\nNaevia\nNaliyah\nNareh\nNariyah\nNashley\nNathania\nNaydelin\nNazareth\nNeva\nNimrat\nNishka\nNoah\nNoella\nNohely\nNohemi\nNyari\nOceana\nOona\nOsiris\nPari\nPrisila\nPrudence\nQueen\nRadha\nRaeanna\nRaelene\nRashel\nRaylee\nReanna\nRebeka\nReema\nReginae\nRithika\nRoisin\nRosita\nRylei\nSabella\nSachi\nSaphira\nSaraya\nSayuri\nSejal\nSelma\nSera\nShelly\nShoshana\nShreeya\nShylee\nSimona\nSimrat\nSkylah\nSofiya\nSolara\nSpencer\nStacie\nSunday\nSylvana\nTalitha\nTeaghan\nTiffani\nTory\nTyanna\nVerena\nVerity\nWaverly\nWednesday\nWilhelmina\nYanira\nYareth\nYashvi\nYeimi\nYocelyn\nZaida\nZamira\nZaniah\nZaylee\nZoraya\nZuleima\nAamiyah\nAbigael\nAdah\nAdaliz\nAddisen\nAdiana\nAdora\nAhtziry\nAilany\nAilee\nAily\nAime\nAisling\nAiva\nAja\nAlania\nAlara\nAlea\nAleigha\nAlenna\nAlexah\nAliannah\nAlise\nAlizabeth\nAlthea\nAlynah\nAlysen\nAlysha\nAlyssandra\nAmada\nAmaiah\nAmaira\nAmaiyah\nAmaryllis\nAmeena\nAmiliana\nAmna\nAmor\nAnagha\nAneliz\nAnessa\nAngella\nAngelyne\nAnistyn\nAnnasophia\nAnneke\nAnshika\nAnsley\nAnvitha\nArantxa\nArantza\nArfa\nArianah\nArie\nArika\nArin\nArisa\nArisha\nArlett\nArlin\nArtemis\nAthziri\nAtziry\nAudreyana\nAuria\nAvalina\nAvari\nAvarie\nAvary\nAvia\nAvika\nAviva\nAvni\nAvyanna\nAyari\nAylani\nAzalia\nAziza\nAzra\nBaran\nBatsheva\nBeau\nBenita\nBetzabeth\nBibiana\nBrianda\nBritanny\nBritton\nBriyana\nBronwyn\nBryleigh\nBrylie\nBrynnley\nCaeli\nCaley\nCalissa\nCamilia\nCarli\nCatarina\nCaterina\nChantel\nCharisma\nCharly\nChase\nChloey\nChrissy\nChrystal\nCiera\nCloe\nCloey\nCoralyn\nCorinna\nCrimson\nCydney\nDalyla\nDamya\nDanitza\nDaphnie\nDarya\nDasia\nDaylin\nDeeksha\nDenia\nDonya\nDorian\nDrea\nEgypt\nEila\nEleanore\nEleyna\nElinor\nEliya\nEllington\nElysa\nElyzabeth\nEmalie\nEmarie\nEmberlynn\nEmeri\nEmilly\nEmmaleigh\nEmmelyn\nEmrie\nEmry\nEnsley\nEshal\nEvanna\nEzmeralda\nFanny\nGalia\nGauri\nGenesee\nGenesys\nGiannah\nGisella\nGretel\nHafsa\nHaile\nHalen\nHarini\nHarlie\nHartley\nHaruka\nIdania\nIndie\nIndira\nIqra\nIrelyn\nIrelynn\nIrena\nIsaura\nIsobel\nIsra\nIssa\nIvett\nIzabela\nJacelyn\nJadah\nJadalyn\nJaeda\nJaedyn\nJaileen\nJaimee\nJaleah\nJalyn\nJamila\nJamilah\nJamileth\nJamison\nJanai\nJaney\nJayce\nJaylanie\nJaylenn\nJaylie\nJazel\nJeannie\nJelena\nJennavie\nJennica\nJennie\nJeslyn\nJezabel\nJiayi\nJimin\nJoi\nJoleen\nJolyn\nJovana\nKacy\nKaiden\nKailia\nKaleesi\nKaliya\nKallista\nKally\nKamaya\nKamdyn\nKamora\nKanna\nKatana\nKatara\nKatharina\nKathya\nKattleya\nKatty\nKaycie\nKeegan\nKeiko\nKeilah\nKeilyn\nKeisy\nKeona\nKhaliyah\nKiani\nKiannah\nKimberlee\nKimberli\nKimberlyn\nKimia\nKinslee\nKloie\nKristyn\nKrysten\nKymani\nKynlee\nKynzie\nLaasya\nLamiyah\nLanae\nLanie\nLaurie\nLayloni\nLee\nLeigha\nLeni\nLeora\nLexington\nLexus\nLeylanie\nLiannah\nLilli\nLilyanah\nLilybeth\nLissa\nLisset\nLiz\nLizzette\nLoretta\nLottie\nLovette\nLuana\nLya\nLyriq\nMackayla\nMadaline\nMaddisyn\nMadelynne\nMadisson\nMahnoor\nMai\nMaika\nMallorie\nManar\nMannat\nMarelyn\nMariafernanda\nMariaguadalupe\nMariaisabel\nMaribelle\nMaricarmen\nMaripaz\nMarlin\nMarly\nMatea\nMathilda\nMaura\nMayar\nMckenzee\nMeili\nMetzli\nMialani\nMikaylah\nMiko\nMilagro\nMirabelle\nMyiah\nMykah\nNaila\nNaomie\nNatallie\nNathali\nNavi\nNayah\nNayleah\nNayleen\nNaysa\nNazly\nNeda\nNeena\nNella\nNethra\nNiah\nNicolle\nNimrit\nNirvana\nNisha\nNour\nNovalee\nOcean\nOdessa\nPaizley\nPaxton\nPayden\nPippa\nPortia\nPriseis\nQuincey\nQuinlan\nRamiyah\nRandi\nRayan\nRayana\nRayanna\nRaylynn\nRayven\nReem\nReet\nRenae\nReva\nRhema\nRikki\nRilyn\nRiyan\nRosabella\nRosetta\nRosy\nRowen\nRozlynn\nRuhi\nSaachi\nSamayah\nSamia\nSamone\nSapphira\nSaryah\nSaydie\nScarleth\nSeanna\nSela\nSephora\nSeren\nShaelyn\nShaelynn\nShalom\nShanel\nSharleen\nSiobhan\nSkyelar\nSkylie\nSolana\nSona\nSophiah\nStefani\nStephania\nSugey\nSuzanna\nSuzy\nTabatha\nTaleen\nTasneem\nTayla\nTaylee\nTaylen\nTeah\nTehya\nThaily\nThora\nTova\nTristen\nUna\nVallerie\nVayda\nViolett\nYaiza\nYanelli\nYanelly\nYanet\nYarelie\nYareni\nYaritzi\nYasmina\nYelitza\nYisel\nYoseline\nYuhan\nYuritza\nYusra\nZabrina\nZahraa\nZaliyah\nZari\nZarina\nZayda\nZayna\nZenaida\nZiyah\nZurisadai\nZyla\nZyra\nAalayah\nAalyiah\nAamira\nAarika\nAayla\nAcelynn\nAdaly\nAddalyn\nAdelaine\nAdelin\nAdelyne\nAdia\nAdreena\nAdrianne\nAilene\nAine\nAivy\nAkayla\nAlany\nAlaura\nAlecia\nAlegra\nAleiah\nAlesia\nAletheia\nAlexcia\nAlida\nAliviah\nAlizon\nAlli\nAllina\nAllisyn\nAllysen\nAllysson\nAly\nAmeliya\nAmeya\nAmore\nAmulya\nAnabela\nAnaid\nAnalea\nAnalie\nAnalis\nAnalucia\nAnalyse\nAnapaula\nAndraya\nAnel\nAnely\nAneya\nAngelene\nAngelic\nAngelinne\nAngelise\nAngelita\nAngelly\nAnilah\nAniston\nAnnali\nAnnalyse\nAnnastasia\nAnni\nAnora\nAnyiah\nAnylah\nAoife\nAolani\nApollonia\nAralyn\nArianni\nAriannie\nAriany\nAris\nArisbeth\nArrianna\nAryah\nAshely\nAshlynne\nAsiyah\nAsmaa\nAtalie\nAubreyana\nAuriana\nAvalee\nAvelina\nAvigail\nAvree\nAyat\nAzelia\nBea\nBelicia\nBellah\nBentlee\nBerlynn\nBeryl\nBethanny\nBethlehem\nBetsaida\nBetzabe\nBracha\nBraylyn\nBreann\nBrennan\nBrilyn\nCaila\nCailee\nCaliana\nCalina\nCalise\nCaliyah\nCamiyah\nCarmel\nCarmina\nCarrington\nCateleya\nCatelynn\nCayleigh\nCelene\nChance\nChanell\nCharisse\nChassidy\nCherrish\nChole\nChristabel\nCiel\nClaribel\nClarice\nClarisse\nClarity\nColby\nColleen\nCoralie\nCorrine\nCristel\nCristy\nDaelyn\nDaelynn\nDahlila\nDaliyah\nDamariz\nDarling\nDebra\nDeena\nDelaynie\nDesaray\nDestinie\nDevan\nDevany\nDevina\nDevine\nDevorah\nDevynn\nDeyanira\nDezi\nDezire\nDivinity\nDua\nDyani\nDyanna\nEcho\nEdeline\nElayne\nEldana\nEleanna\nEleena\nEleny\nEleonora\nElicia\nElida\nElisheva\nElize\nEllah\nElleana\nElliotte\nEllora\nElsi\nEmberly\nEmelie\nEmmersyn\nEmmery\nEniyah\nEsabella\nEshaal\nEvalette\nEvaline\nEvangelyn\nEvelyne\nEvelynne\nEzabella\nGalileah\nGalina\nGalya\nGentry\nGianni\nGimena\nGlenda\nGraysen\nHadiya\nHaiden\nHaidyn\nHala\nHaleema\nHalley\nHansika\nHareem\nHarlem\nHarlowe\nHarmonee\nHasini\nHayzel\nHazelle\nHeiley\nHiromi\nHiya\nHolley\nHollyn\nIdalia\nIlani\nIlany\nIllyana\nIlona\nIlse\nImari\nIone\nIssabela\nIsyss\nItzae\nIvey\nIyanah\nIzzy\nJadelynn\nJadzia\nJaelah\nJaidah\nJailynn\nJamiya\nJanay\nJaneli\nJannely\nJannet\nJanneth\nJarelly\nJaselle\nJasmarie\nJaydin\nJazmeen\nJazzelle\nJazzy\nJeanine\nJeannine\nJenica\nJennyfer\nJeraldin\nJeraldine\nJessalynn\nJesselle\nJesslynn\nJett\nJezabelle\nJocabed\nJoelene\nJoella\nJolynn\nJovi\nKady\nKaidyn\nKailan\nKaileigh\nKalaya\nKalissa\nKaloni\nKamani\nKameron\nKamiah\nKandice\nKaniyah\nKapri\nKarima\nKarine\nKarolyn\nKashvi\nKassie\nKataleah\nKathia\nKathlyn\nKaylanie\nKayliana\nKayly\nKeani\nKeanna\nKeianna\nKeilany\nKenleigh\nKensi\nKenzington\nKeylee\nKeyly\nKezia\nKhadijah\nKiah\nKiki\nKindle\nKiran\nKitana\nKiyah\nKodi\nKrysta\nKyleah\nKylei\nKylen\nKyli\nKyliee\nLaiah\nLaiba\nLaine\nLareina\nLashae\nLasya\nLayan\nLaylanie\nLaylonie\nLeandra\nLeelah\nLeeya\nLeeyah\nLeidy\nLeilanni\nLelani\nLenna\nLennox\nLeonora\nLevi\nLeydi\nLezlie\nLianne\nLielle\nLiesl\nLilee\nLiliane\nLilla\nLillyanne\nLilyrose\nLincoln\nLior\nLisandra\nLisseth\nLiza\nLizabeth\nLizbet\nLucianna\nLuzmaria\nLyana\nLyndsey\nMaahi\nMaayan\nMacee\nMackensie\nMaddox\nMadelin\nMaelyn\nMaelynn\nMahogany\nMailey\nMakana\nMakaylee\nMakenzi\nMaleigha\nMali\nMalillany\nManaia\nMane\nMaram\nMarcelina\nMarkayla\nMarleigh\nMarleny\nMarli\nMaryan\nMaryana\nMaryn\nMatilde\nMaureen\nMehar\nMelanee\nMeleny\nMeliah\nMerida\nMerry\nMiaisabella\nMiangel\nMicaiah\nMichal\nMichele\nMichell\nMikaila\nMikenzie\nMinka\nMirai\nMoksha\nMontana\nMuskaan\nMylin\nMyrna\nNada\nNadiah\nNadiya\nNalayah\nNami\nNandini\nNarely\nNatally\nNatalynn\nNavreet\nNayana\nNazeli\nNhi\nNickole\nNicola\nNiharika\nNikayla\nNilani\nNinel\nNisa\nNitya\nNomi\nOctavia\nOlina\nOliviah\nOralia\nPaiton\nPaitynn\nPatty\nPersia\nPeytin\nQuetzali\nRachell\nRadhika\nRaeleen\nRafaela\nRainie\nRawan\nRayanne\nRaylin\nRenatta\nRhylin\nRiana\nRida\nRiona\nRisa\nRisha\nRogue\nRonnie\nRori\nRosaly\nRosamaria\nRosanna\nRosella\nRosselyn\nRowyn\nRoxie\nRoyce\nRozlyn\nRubee\nRut\nRyanne\nRyenn\nRyland\nSaba\nSadiee\nSafia\nSafiya\nSahar\nSamar\nSamhita\nSamika\nSammy\nSania\nSarena\nSarenity\nSaria\nSayana\nSayler\nSeleste\nSena\nSevana\nShai\nShani\nShanna\nShannen\nSheena\nSheily\nShilah\nSiennah\nSincere\nSiona\nSofiah\nSolei\nSonali\nSophiamarie\nSorayah\nStephani\nStuti\nSujey\nSunnie\nSusannah\nSusy\nSuzanne\nSvetlana\nSyriah\nTaitum\nTali\nTaliah\nTanner\nTeegan\nTeresita\nTherese\nTigerlily\nTilly\nTirzah\nTiya\nTricia\nTrish\nTula\nTyana\nUmaiza\nUnity\nUriah\nUriyah\nValarie\nVannessa\nVicktoria\nVictory\nVidushi\nXiana\nXimenna\nYamilett\nYaneth\nYaretzie\nYazmine\nYelena\nYena\nYeraldin\nYu\nYuli\nYuliet\nYunuen\nYuriana\nYuval\nZahira\nZamantha\nZamiyah\nZariya\nZarya\nZaryah\nZeriah\nZiona\nZitlali\nZoha\nZuleika\nZuley\nZuleyka\nZuly\nZyana\nSophia\nIsabella\nMia\nEmma\nEmily\nOlivia\nSofia\nAbigail\nCamila\nSamantha\nVictoria\nAva\nNatalie\nElizabeth\nCharlotte\nChloe\nGenesis\nAudrey\nMadison\nEvelyn\nZoe\nMelanie\nGrace\nAlexa\nScarlett\nElla\nAvery\nZoey\nAllison\nBella\nAshley\nAubrey\nNicole\nHannah\nLeah\nLily\nAriana\nKimberly\nArianna\nPenelope\nHailey\nAaliyah\nAmelia\nLayla\nAndrea\nKaylee\nBrooklyn\nAlyssa\nAria\nDelilah\nMila\nMaya\nJocelyn\nKayla\nSavannah\nBrianna\nJasmine\nValerie\nValentina\nRuby\nViolet\nXimena\nNatalia\nHarper\nAlexis\nValeria\nAmy\nSarah\nKatherine\nSophie\nAlexandra\nGianna\nJade\nAddison\nNevaeh\nClaire\nRiley\nStella\nEva\nNaomi\nIsabel\nMaria\nGiselle\nKylie\nAngela\nEllie\nJaylah\nLillian\nAngelina\nMelissa\nLiliana\nJessica\nVanessa\nDestiny\nMadeline\nSadie\nMelody\nGabriella\nLuna\nMichelle\nStephanie\nFaith\nDaisy\nAlice\nLucy\nAubree\nAlexia\nAriel\nLeilani\nElena\nAnnabelle\nEliana\nAnna\nJulia\nMakayla\nJennifer\nKhloe\nAlina\nJayleen\nMadelyn\nTaylor\nPeyton\nMackenzie\nJuliana\nSerenity\nIsabelle\nAliyah\nKatelyn\nLauren\nYaretzi\nJacqueline\nSydney\nDaniela\nKaitlyn\nVivian\nAthena\nEleanor\nKendra\nMariah\nKennedy\nAutumn\nIvy\nAlondra\nBailey\nAurora\nHazel\nJulianna\nLeslie\nDiana\nMiranda\nLeila\nElise\nPaige\nQuinn\nIsla\nBrielle\nCali\nEsmeralda\nReagan\nLondon\nMarilyn\nLucia\nAdriana\nRebecca\nCatherine\nIris\nMya\nFatima\nJuliet\nCaroline\nAlessandra\nIzabella\nBrooke\nLilly\nJayla\nJulissa\nKamila\nSara\nSkylar\nSienna\nLyla\nRachel\nKate\nKeira\nEmilia\nAna\nNora\nItzel\nGabriela\nRose\nJuliette\nPaisley\nMorgan\nAmaya\nTrinity\nEden\nCora\nMadeleine\nFiona\nGuadalupe\nAlicia\nAudrina\nClara\nAlana\nAmber\nGenevieve\nJosephine\nKendall\nRylee\nMolly\nMary\nKatie\nAllyson\nJanelle\nChelsea\nJazmin\nLola\nDaniella\nPiper\nSabrina\nJaylene\nAlison\nAlejandra\nArabella\nAylin\nPayton\nSummer\nSierra\nMikayla\nAmanda\nLaila\nApril\nJoanna\nMelany\nTiffany\nJazmine\nKiara\nMariana\nViviana\nAileen\nJordyn\nOlive\nBrooklynn\nKelly\nKarla\nCeleste\nJimena\nPresley\nCamille\nElisa\nKarina\nReese\nBianca\nCamilla\nLila\nNayeli\nCatalina\nCharlie\nGiuliana\nKaren\nLydia\nMarley\nDahlia\nEmely\nEmery\nVivienne\nAdeline\nAlexandria\nDulce\nBriana\nPriscilla\nAngelica\nArya\nCecilia\nCrystal\nDanna\nMalia\nMegan\nAnnabella\nKylee\nLexi\nChristina\nFernanda\nCassidy\nDanielle\nJulie\nCassandra\nEliza\nHaley\nCataleya\nSelena\nAngelique\nAyla\nEsther\nEvangeline\nMakenzie\nLilliana\nMckenzie\nSerena\nPhoebe\nAnnie\nMarissa\nIrene\nKaylie\nLilah\nAbby\nJessie\nVeronica\nWillow\nGracie\nKira\nNoemi\nGabrielle\nGia\nHelen\nHope\nKali\nAnastasia\nHanna\nSarai\nAdelyn\nJazlyn\nSasha\nScarlet\nArielle\nKenzie\nAngie\nKassandra\nNoelle\nRuth\nAnabelle\nAshlyn\nJenna\nJordan\nNathalie\nDelaney\nDesiree\nCarolina\nCynthia\nAngel\nMonica\nAmelie\nNina\nTalia\nHarmony\nHeidi\nLana\nMelina\nMiley\nAniyah\nEmerson\nErin\nPerla\nRosalie\nAnika\nCarmen\nYareli\nAnahi\nDaphne\nGeorgia\nLeia\nLia\nBelen\nDaleyza\nJoselyn\nMarina\nBrittany\nEloise\nEstrella\nBrenda\nJasmin\nArely\nFrancesca\nGemma\nGloria\nTessa\nClarissa\nDayana\nNorah\nTatiana\nAnaya\nKailey\nMiriam\nNataly\nPaloma\nAdalynn\nCindy\nLexie\nWendy\nDylan\nKelsey\nLizbeth\nPaola\nMargaret\nRosemary\nAnabella\nEverly\nHeaven\nKyla\nParker\nBrynn\nCarly\nAimee\nAleena\nAllie\nBethany\nBriella\nEileen\nHayden\nJoy\nJune\nPaulina\nZara\nAlani\nMiah\nMikaela\nRegina\nSage\nShelby\nFinley\nGalilea\nLaura\nSiena\nAyleen\nLondyn\nAleah\nElle\nElliana\nHadley\nHarlow\nMaddison\nMakenna\nMarisol\nNadia\nSherlyn\nAnya\nNatasha\nJamie\nKara\nAdelina\nHaylee\nJane\nMaggie\nAdrianna\nAlayna\nLena\nTatum\nAlaina\nHelena\nKathryn\nTeagan\nCeline\nDanica\nMckenna\nSavanna\nTeresa\nCadence\nCallie\nDenise\nLeyla\nAlyson\nCaitlyn\nElianna\nErika\nJenny\nJillian\nMaliyah\nAmerica\nKaia\nReyna\nSkyler\nAdalyn\nBreanna\nDarlene\nJohanna\nKaydence\nKenya\nMina\nAdelaide\nBelinda\nLea\nMyla\nNancy\nAnnabel\nLuciana\nRylie\nAlma\nDakota\nIvanna\nLucille\nKiana\nNathaly\nNyla\nParis\nPhoenix\nRaquel\nRosa\nSarahi\nAnnalise\nCharlee\nHolly\nJada\nJanessa\nKinsley\nLilyana\nSelah\nElsie\nEmilie\nJosie\nMichaela\nPearl\nAshlynn\nAzalea\nChanel\nKaya\nLilian\nLinda\nMadelynn\nMaia\nVera\nColette\nDalilah\nRosie\nYamileth\nHarley\nHayley\nCheyenne\nGwendolyn\nIsis\nKaelyn\nLuz\nAlivia\nBrisa\nElaine\nGisselle\nKenia\nNia\nSandra\nAiyana\nAlissa\nBryanna\nHana\nLyric\nSloane\nChristine\nHaven\nKayleen\nMadilyn\nRoselyn\nAlanna\nAnne\nAnnika\nCaitlin\nDarla\nKatelynn\nLiana\nElyse\nIliana\nIsabela\nSkye\nAmiyah\nAriella\nCristina\nJayden\nJoyce\nJulieta\nLaylah\nRenata\nSamara\nYaretzy\nAdele\nBeatrice\nLylah\nMakena\nMarlene\nMonserrat\nSawyer\nSonia\nYesenia\nAda\nDana\nEmmy\nJaelyn\nKeyla\nRebekah\nRoxanne\nAliana\nCharlize\nEve\nKinley\nLilianna\nMarie\nMilana\nNylah\nPaula\nRaegan\nSimone\nYasmin\nAdilene\nEsperanza\nFrida\nAbril\nElaina\nJourney\nKamilah\nLacey\nMallory\nMontserrat\nNathalia\nSharon\nAubrie\nAverie\nJayda\nKrystal\nLesly\nMaryjane\nPatricia\nAdelynn\nAmara\nAngeline\nAryanna\nElsa\nDanika\nEvelynn\nJanney\nNova\nYaritza\nAinsley\nAlisson\nDalia\nJuniper\nKailani\nKassidy\nLeanna\nRaelynn\nAlia\nAmira\nArlene\nJaelynn\nLindsay\nMaribel\nNoa\nRyan\nSariah\nEmber\nKamryn\nLisa\nMaritza\nScarlette\nShayla\nValery\nAddyson\nJolene\nKatalina\nKathleen\nKayleigh\nKiera\nMaite\nMilagros\nStacy\nThalia\nAnabel\nAraceli\nBaylee\nCara\nElissa\nJudith\nKaylin\nKeila\nMatilda\nBridget\nCharley\nEmilee\nErica\nItzayana\nKailee\nKyra\nLara\nMira\nVioleta\nYuliana\nCamryn\nElisabeth\nEvie\nGiana\nJustice\nMaci\nAilyn\nAisha\nAryana\nAurelia\nBlake\nBritney\nEdith\nHeidy\nRebeca\nRowan\nTara\nVienna\nYoselin\nCasey\nEmmalyn\nKailyn\nKarissa\nKataleya\nKyleigh\nMacie\nSelene\nSky\nClaudia\nJaylynn\nJulianne\nKeily\nLailah\nMayra\nMilena\nNatalee\nRiya\nSofie\nTiana\nAzul\nCambria\nElina\nJacquelyn\nCarla\nGwen\nIvana\nJaylin\nKristen\nLina\nMarianna\nNaya\nRyleigh\nSelina\nVida\nAdela\nAreli\nCarolyn\nCitlali\nDeborah\nFelicity\nJazlynn\nJolie\nKaliyah\nKaylah\nKristina\nMacy\nMariam\nMarjorie\nXiomara\nAlena\nAnalia\nCiara\nImani\nLeilah\nLindsey\nMabel\nMilania\nMyra\nAanya\nAliya\nAmari\nAriah\nArianny\nDalila\nJanet\nKairi\nMaleah\nRaelyn\nRubi\nSaanvi\nSalma\nShiloh\nSkyla\nSuri\nWhitney\nCarina\nDallas\nFrances\nGeraldine\nKalia\nLiberty\nMarlee\nMonroe\nPenny\nSusan\nYadira\nBarbara\nBonnie\nEllen\nEvolet\nGracelyn\nJaqueline\nLeilany\nLizeth\nLogan\nLucero\nLupita\nMartha\nMckayla\nMiracle\nRomina\nSoraya\nZariah\nAmina\nAudriana\nCoraline\nGrecia\nHailee\nJayde\nLiv\nMargarita\nMiabella\nRenee\nShaila\nVirginia\nAbbey\nAliah\nAmani\nAnanya\nAriadne\nClementine\nCourtney\nLorelei\nMercy\nSarina\nWinter\nYamilet\nZoie\nZuri\nAlayah\nAlly\nCaylee\nDamaris\nDania\nElin\nEstefania\nEstella\nIvory\nIzel\nKadence\nKiley\nMaxine\nSilvia\nStevie\nSusana\nSylvia\nViolette\nYvette\nZoya\nAlisa\nAnnette\nAstrid\nCorinne\nEvangelina\nFarrah\nLarissa\nLuisa\nLynette\nMadalynn\nMadisyn\nMaliah\nMaryam\nPamela\nReina\nSaige\nXochitl\nAlanis\nArlette\nCapri\nDariana\nDenisse\nEiza\nEmi\nFaye\nGwyneth\nIngrid\nJaliyah\nKai\nKalea\nKaylani\nKhaleesi\nMarlowe\nMika\nRaven\nYarely\nZaira\nAniya\nAracely\nDemi\nDiya\nFlora\nJackeline\nJordynn\nKaila\nKayden\nLeona\nLillie\nLillyana\nLilyanna\nMadilynn\nMiya\nNadine\nNoor\nRiver\nTania\nVivianna\nZahra\nAbbygail\nAlisha\nAmayah\nAnais\nBeatriz\nCarol\nCoral\nDorothy\nGiada\nHeather\nJaycee\nJazzlyn\nKayley\nKourtney\nMalaya\nMckinley\nMilan\nMyah\nSunny\nTabitha\nThea\nWilla\nAddisyn\nAni\nAvalon\nAyana\nCristal\nDonna\nElia\nGreta\nJanice\nKaitlin\nLeela\nLilith\nMaeve\nMariajose\nSoleil\nTenley\nVianney\nWren\nAubriella\nAubrielle\nDavina\nJaneth\nJaylyn\nJeanette\nJocelynn\nKaleah\nLorena\nMagdalena\nMariela\nMillie\nMireya\nStephany\nTanya\nZuleyka\nAbbie\nAlize\nCameron\nCelina\nClare\nDayanna\nEsme\nGraciela\nHallie\nJemma\nKaitlynn\nKathy\nKatrina\nKeilani\nLeighton\nLilia\nMae\nNeveah\nRhea\nTaryn\nYaneli\nAadhya\nAdrienne\nAmalia\nAnjali\nBlanca\nCandice\nCarissa\nChiara\nDiamond\nJana\nJanae\nJenni\nJewel\nKalani\nKora\nLauryn\nMadalyn\nMavis\nMercedes\nMylah\nNalani\nPaulette\nRylan\nShannon\nSheila\nAllisson\nAveri\nAyanna\nBailee\nBrynlee\nCalista\nCielo\nDestinee\nEvalyn\nEverleigh\nFreya\nInes\nJazelle\nJazleen\nJoelle\nJudy\nKaley\nLivia\nMara\nMayte\nMelinda\nMicaela\nNeriah\nNichole\nPoppy\nRayna\nRegan\nSandy\nYulissa\nYvonne\nAlianna\nAnita\nAsha\nAya\nBerenice\nBristol\nCoco\nEleni\nGiovanna\nIreland\nJaclyn\nJazlene\nJenesis\nKatarina\nKaylynn\nLesley\nLidia\nLitzy\nMadyson\nMeera\nNatalya\nSally\nXitlali\nYara\nYolanda\nAbbigail\nAbrianna\nAditi\nAspen\nAyva\nCienna\nDasha\nElly\nElodie\nHadassah\nIzabel\nKaiya\nKalina\nKaylen\nLillianna\nMargot\nMarisa\nMonique\nPepper\nRemy\nRita\nRosalinda\nRosario\nVianey\nAlannah\nAnnabell\nAviana\nBeatrix\nBria\nBrissa\nDani\nDeanna\nEmerie\nJaniyah\nJasleen\nJaslene\nJohana\nJuana\nKarly\nKenley\nKianna\nLeticia\nLorelai\nMalina\nMarcela\nMaylin\nNicolette\nNikki\nRamona\nSaniyah\nShreya\nTina\nZaniyah\nAbrielle\nAdamaris\nAmaris\nAvianna\nBryn\nCassie\nCelia\nDelanie\nDelia\nElyssa\nEmersyn\nEmmeline\nEstelle\nFabiola\nIrie\nJenicka\nKaris\nKensington\nLourdes\nMalaysia\nMarely\nMisha\nNavya\nNelly\nNola\nRoxana\nRoxanna\nSamira\nShirley\nTaliyah\nTallulah\nVenus\nVicky\nZia\nAmia\nAnabell\nAriela\nAriya\nAriyah\nAubriana\nAubrianna\nAvani\nBelle\nBraelynn\nCattleya\nCitlalli\nDominique\nEunice\nFarah\nGisele\nGizelle\nHennessy\nHunter\nJanely\nJaslyn\nJazmyn\nJiselle\nJoslyn\nKallie\nLouisa\nLouise\nMagnolia\nMeadow\nMilah\nNaima\nSonya\nTamara\nYuna\nZariyah\nZelda\nZooey\nAmerie\nAnissa\nAntonia\nAnushka\nAudree\nAvah\nBetty\nBeverly\nBrenna\nEstefany\nGracelynn\nHailie\nHaylie\nIsabell\nJaylee\nJaylen\nJenelle\nJournee\nKaylyn\nKennedi\nLennon\nLinnea\nMalayah\nMarlen\nMollie\nNatali\nNayla\nNoelia\nRaina\nRihanna\nRocio\nSahara\nSaira\nSariyah\nShriya\nTess\nWinnie\nYahaira\nAdalina\nAkira\nAlanah\nAlyna\nArleth\nAubri\nBlair\nBrinley\nCalliope\nCharlene\nCherish\nDelila\nEisley\nEmelia\nIndia\nJanette\nJiya\nJustine\nKarlee\nKarolina\nKasey\nKatia\nKaty\nKaycee\nLaurel\nLeena\nLeilanie\nPrecious\nRobin\nRosalyn\nSahana\nSeraphina\nShea\nShyla\nSidney\nSiya\nSloan\nTegan\nTheresa\nTracy\nUnique\nVeda\nViola\nYasmine\nZainab\nAaralyn\nAlaya\nAleyna\nAnnalisa\nAnneliese\nAsia\nBerlin\nBrylee\nCarter\nCecelia\nEllery\nEvelina\nHillary\nItalia\nIzabelle\nJoana\nJoanne\nJubilee\nKaterina\nLianna\nLillyanna\nLluvia\nMagaly\nMelia\nNahla\nNoelani\nOphelia\nPaityn\nQuincy\nRia\nRory\nRoxy\nSaylor\nStacey\nZion\nAarya\nAlba\nAlessia\nAmirah\nAnaliyah\nAnnelise\nAudrianna\nDoris\nDrew\nEllianna\nEma\nEmmalee\nEmme\nFrankie\nGeorgina\nHeavenly\nHellen\nJackelyn\nJanelly\nJianna\nJoselin\nJosselyn\nMaisie\nMarin\nMayah\nMicah\nMona\nNikita\nNikole\nNorma\nPriscila\nPriya\nRosemarie\nSymphony\nTianna\nYazmin\nAislinn\nAleeah\nAlysson\nAmiah\nAmie\nAnaiah\nAnn\nAnnalee\nAriyana\nAudrie\nAvril\nAzucena\nCailyn\nCathy\nCharli\nChelsey\nDafne\nDelylah\nDevyn\nDina\nEzra\nGina\nGwenyth\nImogen\nIsha\nJenevieve\nKamilla\nKristine\nLeanne\nLizette\nLorraine\nMarlyn\nMilla\nPetra\nPrincess\nRemi\nShanaya\nVanesa\nVivien\nAarna\nAliza\nAnali\nAnalise\nAntonella\nAshlee\nBraelyn\nBrandy\nBriseis\nCarrie\nCitlaly\nCordelia\nDayanara\nEmerald\nEvalina\nGenessis\nGiavanna\nGurnoor\nHattie\nJurnee\nKamille\nKarely\nLainey\nLiah\nLiya\nLovely\nLyra\nMelodie\nMilani\nNaomy\nNika\nNyah\nPersephone\nRobyn\nRyann\nTamia\nTanvi\nVania\nXitlaly\nAddilyn\nAlessa\nAlyanna\nAnayeli\nAndie\nArleen\nBlakely\nBlythe\nCharis\nDior\nEmiliana\nEmmie\nHenley\nHolland\nIvonne\nJacklyn\nJocelyne\nKailynn\nKlarissa\nLexy\nLeyna\nLilyann\nMaiya\nMandy\nMariyah\nMeredith\nNala\nNya\nPrisha\nRaya\nRaylene\nRyder\nSamaya\nSinai\nSpencer\nTia\nTyler\nYsabella\nYuri\nAbigale\nAbygail\nAdaline\nAdrina\nAida\nAiyanna\nAmarie\nAmberly\nAmiya\nAmya\nAnaleah\nAnaly\nArabelle\nAvalyn\nAyvah\nBree\nBriseida\nCailey\nCameryn\nCarlee\nChristiana\nClover\nDebora\nDeisy\nDiane\nDora\nElisha\nEllison\nEstela\nEster\nEtta\nEvalynn\nFlor\nGeneva\nGladys\nGretchen\nGriselda\nIleana\nJackie\nJanine\nJosslyn\nJuanita\nKaidence\nKarsyn\nKlara\nKristin\nKyara\nLili\nMargaux\nMaryann\nMelania\nMelanny\nMerida\nMoriah\nNailah\nRachael\nRain\nRemington\nRosalee\nSana\nSaniya\nSerene\nShayna\nTheodora\nTrisha\nVanellope\nAdamari\nAgnes\nAleeyah\nAlex\nAlthea\nAlyvia\nAnisa\nAnisha\nArden\nBellarose\nBillie\nBowie\nBrittney\nCarmela\nCleo\nCosette\nDaleysa\nEgypt\nElora\nEmeli\nEmory\nHalle\nJadyn\nJaida\nJenessa\nKaelynn\nKarlie\nKimora\nLotus\nLucinda\nMacey\nMai\nMakaila\nMakaylah\nMoira\nPatience\nRoselynn\nSahasra\nSakura\nSanai\nSequoia\nSerafina\nSherry\nSheyla\nShira\nShyanne\nSutton\nYasmeen\nYatziri\nZiva\nAila\nAkshara\nAlaysia\nAlitzel\nAliyana\nAlora\nAmora\nAnaiyah\nAngelie\nAnnmarie\nAraya\nArissa\nAubry\nAzariah\nBrigitte\nBryana\nCarmella\nCierra\nColbie\nDaiana\nDanae\nDivina\nDolores\nElliott\nEllis\nEvelin\nEver\nFallon\nHalo\nHarlee\nHartley\nHonesty\nHosanna\nIman\nInara\nInez\nIvette\nJael\nJaya\nKarma\nKelsie\nKiyomi\nKristy\nLailani\nLondynn\nLove\nMariel\nMaylee\nMelannie\nNaila\nNaiya\nNeha\nNishka\nPaislee\nRosy\nRubie\nRylynn\nSafa\nSanvi\nSaray\nSimran\nSkylee\nTaytum\nTori\nVeronika\nXenia\nYessenia\nZayra\nAaradhya\nAlexxa\nAmaia\nAmairani\nAmilia\nAngelia\nAri\nArianne\nArwen\nAura\nAyah\nCandy\nCharity\nDanya\nDesirae\nDianna\nEbony\nEstefani\nFrancisca\nFreyja\nGaia\nGema\nGiulianna\nIsela\nIshani\nIssabella\nJaedyn\nJaileen\nJaylani\nJoey\nJulietta\nKaela\nKaily\nKarime\nKendyl\nKeren\nKimber\nKirra\nKya\nKylah\nLaney\nLaniyah\nLaylani\nLilyanne\nLiyah\nLiz\nLuella\nMaile\nMarceline\nMarilynn\nMayrin\nMeghan\nMelani\nMelisa\nNiyah\nNyomi\nReem\nRosalia\nSabina\nSamaira\nSamiyah\nSanaa\nSantana\nSirena\nSkarlett\nStar\nTala\nTesla\nTreasure\nViktoria\nWilhelmina\nYajaira\nYana\nZahara\nZaria\nAaliya\nAbella\nAdalia\nAddelyn\nAeris\nAilani\nAilin\nAislynn\nAkemi\nAleenah\nAleksandra\nAlinah\nAline\nAmbar\nAmberlyn\nAnalee\nAnayah\nAngely\nBetsy\nBriseyda\nCarlie\nCheyanne\nChristy\nColleen\nDagny\nDeja\nDixie\nElliot\nElvira\nElyana\nEmani\nEmmaline\nEssence\nEvan\nFelicia\nFlorence\nGala\nGillian\nGinger\nHavana\nHayleigh\nHoney\nIlana\nIlene\nIndigo\nJalissa\nJanell\nJaniah\nJaslynn\nJulisa\nKarol\nKatharine\nKayli\nKenna\nKensley\nKim\nKimberley\nLeana\nLeylah\nLeylani\nLibby\nLucca\nLucianna\nLula\nLux\nLyanna\nMagali\nMaisy\nMaren\nMarianne\nMayleen\nMindy\nPauline\nPilar\nRenesmee\nSailor\nSanjana\nSaya\nScout\nShae\nSusie\nTatianna\nTinsley\nZyanya\nAdalie\nAddilynn\nAislin\nAiza\nAlysa\nAminah\nAnalisa\nAngelyn\nAnnaliese\nAnnamarie\nAnvita\nAriane\nArlyn\nArmani\nAshanti\nAshly\nAulani\nAvarie\nAyesha\nBridgette\nCampbell\nCandace\nCarys\nCattaleya\nCecily\nChanelle\nCharleigh\nDestiney\nElinor\nElli\nElvia\nEmalee\nEmmi\nEshal\nEternity\nGabby\nGeorgiana\nGiulia\nGoldie\nHaya\nHilary\nIlianna\nIra\nIsadora\nJacey\nJaidyn\nJaquelyn\nJaydah\nJayme\nJoleen\nJoseline\nJustyce\nKaleigh\nKalista\nKamya\nKamyla\nKasandra\nKatheryn\nKaylene\nLeann\nLeiah\nLisette\nLynn\nMaddie\nMailen\nMailyn\nMalena\nMaliya\nMannat\nMari\nMaricela\nMarleigh\nMarlena\nMartina\nMay\nMylee\nNahomi\nNayomi\nNellie\nNiah\nNila\nNoel\nPari\nQueenie\nRayne\nReece\nRhylee\nRina\nRipley\nRomy\nRosalind\nSabella\nSabine\nSama\nSanya\nSol\nStefany\nSunshine\nSusanna\nSylvie\nTahlia\nTalya\nTemperance\nTiara\nToni\nYael\nYanet\nYarel\nYsabelle\nYulianna\nZendaya\nAarohi\nAbriella\nAdalee\nAdelle\nAilee\nAishani\nAlexi\nAmairany\nAmeera\nAmeerah\nAngeles\nAnoushka\nAnsley\nAustyn\nAviva\nBayleigh\nBernadette\nCaydence\nCayla\nChaya\nCheryl\nCianna\nCollette\nConnie\nCorina\nDanitza\nDarcy\nDawn\nDia\nElayna\nEllena\nElysia\nEmelie\nEmelyn\nGenevie\nGennesis\nGrayson\nGrettel\nGuinevere\nHarriet\nIla\nIrelynn\nIrma\nIsa\nIxchel\nJaina\nJaniya\nJanna\nJean\nJosefina\nJoselyne\nJude\nJuno\nKacey\nKaili\nKavya\nKenzi\nKhadija\nKiersten\nKloe\nKrista\nLavinia\nLucie\nMadelin\nMahi\nMaliha\nMalillany\nMarcella\nMarion\nMarlie\nMelony\nMerari\nMeztli\nMihika\nMiliana\nNariah\nNavaeh\nNicky\nOpal\nPromise\nQuetzalli\nReya\nRosalina\nSahar\nSamia\nShaylee\nSolana\nSonja\nStefanie\nSwara\nTaliah\nTanisha\nTaylin\nTeegan\nVianna\nYoselyn\nZaida\nZaina\nZaniya\nZayna\nAaleyah\nAaniyah\nAbriana\nAddalyn\nAddie\nAdyson\nAleigha\nAlexus\nAlizay\nAlyana\nAlyse\nAmor\nAra\nAriadna\nArina\nAriyanna\nAshleen\nAsiya\nAtziri\nAudra\nAveline\nAven\nAvigail\nAyden\nAzaleah\nBriley\nBrook\nBryleigh\nCaelyn\nCalla\nCamdyn\nCarson\nCarsyn\nCasandra\nCatarina\nChana\nChandler\nChanning\nChantal\nCiana\nDaliah\nDarby\nDarina\nDarlyn\nDevon\nEliyah\nElva\nEmaan\nEmmah\nEmmalynn\nEverlee\nEverley\nGracyn\nHaily\nHollie\nHonor\nIda\nIly\nInaya\nIndiana\nIrlanda\nItaly\nIyana\nIyanna\nJailyn\nJaime\nJaleah\nJannat\nJapji\nJaquelin\nJeannie\nJocelin\nJoceline\nJosephina\nKacie\nKaleia\nKalie\nKennia\nKensie\nKeziah\nKhadijah\nKhloee\nKimberlee\nKinsey\nKrisha\nLacie\nLamar\nLilyan\nLulu\nMackenna\nMakaela\nMalak\nMalani\nMarbella\nMarian\nMariella\nMarisela\nMarlo\nMarylin\nMattie\nMildred\nMillicent\nMinerva\nNaia\nNicolle\nNidhi\nNirvana\nNoella\nOcean\nOdette\nOrianna\nRachelle\nRayah\nReet\nRosabella\nRosalynn\nRoyal\nSapphire\nSavana\nSavina\nSharlyn\nShyann\nSiyona\nSofi\nSolange\nSuzette\nTaniya\nVioletta\nYohana\nZayla\nZoee\nAadya\nAashi\nAashna\nAbagail\nAbigayle\nAdilyn\nAdina\nAhana\nAilene\nAiram\nAleeya\nAleia\nAleida\nAlexie\nAlya\nAlysha\nAmethyst\nAnaiya\nAnalicia\nAnastacia\nAnela\nAngeli\nAnnalia\nAnnemarie\nAralyn\nAriani\nAudrinna\nAustin\nAvalynn\nAvelina\nAvia\nAzaria\nBecky\nBennett\nBentley\nBernice\nBrianne\nBriar\nCailin\nCaleigh\nCarley\nCathleen\nChevelle\nChristal\nClaira\nCloe\nConstanza\nDaria\nDayami\nDelany\nDevin\nDevina\nDivya\nEla\nEliora\nEloisa\nEmeline\nEowyn\nEricka\nFranchesca\nGaby\nGisell\nGissel\nHarleen\nIndie\nIsley\nJaeda\nJaimie\nJalayah\nJayna\nJenifer\nJessa\nJessi\nKaidyn\nKalena\nKaliah\nKamari\nKarin\nKarter\nKatya\nKaylan\nKayle\nKeely\nKendal\nKeya\nKeyli\nKierra\nKori\nKyndall\nKyrie\nLela\nLeyah\nLian\nLillyann\nLissette\nLoren\nLyrik\nMadden\nMadelyne\nManeh\nMarguerite\nMaribella\nMaycee\nMaylani\nMedha\nMeena\nMeher\nMichele\nMichell\nMileena\nMilly\nMirabelle\nMiyah\nMonserrath\nNaydelin\nNhi\nNoura\nNovalee\nOctavia\nOfelia\nPreslee\nPreslie\nQueena\nRae\nRayanna\nRayleen\nRhiannon\nRian\nRoslyn\nRowyn\nSade\nSafia\nSamiya\nSaori\nSavanah\nSeanna\nShaelyn\nShaina\nShayne\nShivani\nSparrow\nSydnee\nTrina\nVaishnavi\nValarie\nValencia\nVenice\nVesper\nViridiana\nVivianne\nXena\nYeimi\nYessica\nYuridia\nZarah\nZaya\nZayda\nZaylee\nZenia\nAahana\nAdhya\nAdora\nAdylene\nAhtziri\nAide\nAime\nAkari\nAlaia\nAlayla\nAlea\nAleeza\nAleyah\nAliannah\nAlinna\nAlyce\nAmaiyah\nAmayrani\nAmery\nAmyah\nAn\nAnahit\nAnaliah\nAnnaly\nAnyssa\nAralynn\nAranza\nArriana\nArtemis\nAugust\nAyelen\nAylah\nAylen\nAzalia\nBeau\nBerkeley\nBetsabe\nBreanne\nBritanny\nBritany\nBriza\nCaitlynn\nCaliana\nCalirose\nCallia\nCarolynn\nCayden\nCinthia\nConstance\nCorrine\nDaysha\nDejah\nDella\nDesteny\nEcho\nEdna\nEesha\nElanie\nElianah\nEmberlynn\nEmiko\nEmmarose\nFatimah\nFinnley\nGisel\nGurleen\nHafsa\nHenrietta\nHermione\nHiba\nIleen\nIlyana\nInaaya\nIrina\nIsamar\nItzabella\nIvanka\nIyla\nJackelin\nJamileth\nJanis\nJayleene\nJayline\nJaymie\nJazlin\nJessalyn\nJoan\nJohannah\nJovie\nKaelani\nKaira\nKaliana\nKari\nKathya\nKeeley\nKeiry\nKeylen\nKeylin\nKhalia\nKinslee\nKitana\nKitty\nKorra\nLael\nLavender\nLayna\nLeeanna\nLeylanie\nLiyana\nLoretta\nLuzmaria\nMagdalene\nMarlow\nMarylou\nMaylen\nMei\nMikaylah\nMonika\nNalah\nNalia\nNaliyah\nNandini\nNariyah\nNaveen\nNayelli\nNazareth\nNiamh\nNicol\nNitya\nNoemy\nNour\nOdalis\nOdalys\nOlga\nOlyvia\nPortia\nQuetzaly\nRaelene\nRania\nReanna\nRio\nRozlynn\nSamirah\nSarahy\nSerina\nShanice\nShay\nSkarlet\nSnow\nSoledad\nSomaya\nSophiarose\nSophya\nSora\nSterling\nSybil\nTaya\nTerra\nWaverly\nYazmine\nYelitza\nYusra\nZoha\nZola\nZora\nZulema\nZuria\nZurisadai\nAalia\nAaliah\nAarushi\nAcacia\nAdah\nAdalena\nAdara\nAdelia\nAdya\nAiko\nAisling\nAitana\nAiva\nAlethea\nAlexandrea\nAli\nAliviah\nAlliyah\nAlycia\nAmaiya\nAmariah\nAnaleigh\nAnalucia\nAnamaria\nAndi\nAnessa\nAngelee\nAnia\nAnishka\nAnnabeth\nAnnaleigh\nAnnalynn\nAnuhea\nAolani\nAolanis\nArella\nArianni\nAries\nArlet\nAshtyn\nAudri\nAudris\nAuria\nAvantika\nAylani\nAzeneth\nBatsheva\nBay\nBeautiful\nBertha\nBethel\nBeya\nBlaire\nCalissa\nCambrie\nCamden\nCamellia\nCamilah\nCandelaria\nCarli\nCaterina\nCelena\nCesia\nCharly\nChelsy\nCherry\nChyna\nCiena\nClarisa\nDaizy\nDarleen\nDarya\nDaylin\nDayna\nDaysi\nDebra\nDeena\nDelina\nDevynn\nDianne\nDottie\nDulcemaria\nElana\nElani\nEleanora\nElicia\nElisheva\nEliyana\nElliette\nEmalie\nEmeri\nEmmanuelle\nEmmarie\nEmmerson\nEmonie\nEryn\nEsha\nEstephanie\nEvelyne\nEvy\nFiorella\nFrancine\nGayane\nGiannah\nGretel\nHaddie\nHarnoor\nHera\nHudson\nImelda\nIndira\nIshika\nIsobel\nIzzabella\nJacelyn\nJacquelin\nJaden\nJaela\nJamila\nJanie\nJannah\nJarely\nJatziri\nJayani\nJazzlynn\nJeimy\nJelena\nJennah\nJennica\nJeslyn\nJessika\nJesslyn\nJia\nJoscelyn\nJourni\nJulieth\nKaede\nKahlan\nKailea\nKarisma\nKarley\nKaroline\nKashvi\nKassie\nKaydee\nKeilah\nKeilyn\nKenadee\nKensi\nKhloey\nKimberlyn\nKimi\nKyrah\nLakshmi\nLani\nLark\nLaurie\nLaya\nLayan\nLaylonie\nLeeann\nLeigha\nLenna\nLenora\nLeonie\nLeora\nLilli\nLincoln\nLiora\nLiza\nLizzeth\nLois\nLori\nLynda\nMackayla\nMaily\nMaira\nMana\nMaple\nMarly\nMarysol\nMason\nMeghna\nMehar\nMellany\nMilagro\nMinnie\nMyranda\nNahomy\nNallely\nNara\nNaveah\nNereida\nNeva\nNickole\nNisha\nNithya\nNiya\nOrly\nParadise\nPhoenyx\nPolina\nPricilla\nPyper\nRaylynn\nReign\nRhianna\nRianna\nRileigh\nRivka\nRoma\nRuhi\nRylin\nSaiya\nSamarah\nSanaya\nSaoirse\nSaphira\nSayler\nSayuri\nSeerat\nSelma\nShania\nSicily\nSiobhan\nSolara\nStacie\nSunnie\nSymone\nTaelyn\nTali\nTamar\nTaraji\nTea\nUma\nVanity\nWynter\nXimenna\nXochilt\nYanelli\nYanelly\nYanely\nYazlin\nYuki\nZaniah\nZaynab\nAbilene\nAcelynn\nAdabelle\nAdalene\nAdalynne\nAdelene\nAdella\nAdelyne\nAdi\nAdrian\nAdvika\nAerabella\nAiden\nAilany\nAili\nAkilah\nAleen\nAlishba\nAlitza\nAliyanna\nAllegra\nAllysson\nAly\nAlyah\nAlynna\nAmi\nAmiee\nAmmy\nAmna\nAnasofia\nAngelynn\nAnnaleah\nAnnalyn\nAnniston\nAnshika\nAntoinette\nAriannah\nAriany\nAris\nAsa\nAudryna\nAvary\nAvaya\nAvry\nAzelia\nBerlyn\nBlessing\nBlossom\nBlue\nBobbi\nBrea\nBritton\nBrixton\nCaidence\nCallista\nChanell\nChizaram\nCici\nClarisse\nDaelyn\nDaleyssa\nDanely\nDarling\nDayleen\nDesire\nDeysi\nDivine\nDivinity\nDominika\nDream\nEdie\nEdyn\nEleonora\nElisia\nElizaveta\nElliotte\nEllyana\nElyza\nEmalyn\nEmarie\nEmberlyn\nEmelin\nEmiley\nEmmalina\nEmmaly\nEna\nEnya\nEsmee\nEvah\nEvey\nFay\nGisella\nGizzelle\nGrayce\nHadleigh\nHarlem\nHarlie\nHarmonie\nHeydi\nInessa\nIva\nIzabela\nJacky\nJadelyn\nJahzara\nJailynn\nJanaya\nJannet\nJaretzi\nJaretzy\nJaydyn\nJaylinn\nJayne\nJaynee\nJeannette\nJenavieve\nJennie\nJeyla\nJill\nJireh\nJizelle\nJodie\nJoely\nJoie\nJordana\nJustina\nKaci\nKaeli\nKaiden\nKailah\nKaileigh\nKaiyah\nKambria\nKamea\nKamiya\nKamora\nKandice\nKarolyn\nKatalea\nKaydance\nKealani\nKendyll\nKennedie\nKeyra\nKhali\nKhamila\nKhushi\nKimiko\nKingsley\nKiya\nKlaire\nKristal\nKyler\nKynlee\nLacy\nLamaya\nLareina\nLevi\nLexa\nLexington\nLiel\nLilit\nLillee\nLilliann\nLisbeth\nLisset\nLucila\nLuiza\nMacyn\nMadisen\nMaelynn\nMaiah\nMaila\nMaizy\nMaleena\nMaleia\nMalika\nManreet\nMarcy\nMargo\nMariafernanda\nMariely\nMarilu\nMarta\nMarwa\nMaryah\nMattea\nMattison\nMaura\nMaylene\nMayumi\nMeagan\nMeleah\nMena\nMialani\nMica\nMimi\nMinka\nMiraya\nMirella\nMischa\nMonae\nMonet\nMyka\nMylie\nNaisha\nNayely\nNaysa\nNella\nNessa\nNiki\nNimrit\nNovah\nNovalie\nOona\nOriana\nPhilippa\nPriyanka\nQueen\nRadha\nRafaela\nRaquelle\nRayann\nRhyan\nRori\nRosio\nRozalyn\nRuhani\nRyah\nRyley\nRylinn\nSachi\nSaleen\nSamanta\nSammi\nSamya\nSanika\nSarayu\nSatya\nSayra\nScotland\nSejal\nSera\nSeven\nSharlene\nShaya\nSheccid\nSimona\nSincere\nSissi\nSitara\nSkylah\nSoliana\nStarla\nStefani\nStory\nSuhana\nSujey\nSukhmani\nSunday\nSuzie\nTanishka\nTanner\nTatyana\nTayla\nTherese\nTristyn\nTyra\nVibha\nWednesday\nYaneth\nYanilen\nYanira\nYaritzi\nYatziry\nYocelin\nYocelyn\nYui\nYulisa\nYuritzi\nZaara\nZadie\nZamira\nZaylah\nZenaida\nZinnia\nAbigael\nAdaliz\nAdalyne\nAdelie\nAdison\nAdrianne\nAiley\nAilynn\nAislyn\nAixa\nAizah\nAlabama\nAlexiah\nAleya\nAlix\nAlizae\nAllyssa\nAlynah\nAlysia\nAmarah\nAnagha\nAnalie\nAnamarie\nAneya\nAngelic\nAniah\nAniylah\nAnnaliyah\nAnnasophia\nAnni\nAnvi\nAnvika\nAoife\nApollonia\nApple\nArayah\nArianah\nAribella\nArieanna\nAriely\nArpi\nArsema\nAshton\nAsma\nAuburn\nAvalee\nAviella\nAvneet\nAvni\nAvory\nAvrie\nAyaka\nAyame\nAysha\nAyumi\nBani\nBea\nBecca\nBellamy\nBerkley\nBerlynn\nBetzy\nBianka\nBlakeley\nBrandi\nBraylin\nBrithany\nBryce\nBrynley\nBrynna\nCaeli\nCailee\nCalia\nCalisi\nCaliyah\nCalli\nCarleigh\nCatalaya\nCataleah\nCedar\nChantel\nCharisma\nChyanne\nCiel\nConsuelo\nCoralie\nDaila\nDalylah\nDaniyah\nDannika\nDaphney\nDara\nDefne\nDelainey\nDelsa\nDemetria\nDemiyah\nDennise\nDevany\nDillon\nDisha\nDorian\nDunya\nDyani\nDylann\nEila\nEldana\nEleanore\nElexa\nElisabet\nElizabella\nEllah\nEllee\nElsy\nEmelina\nEmilyn\nEmmely\nEmmery\nEmry\nEriana\nEris\nEsabella\nEvany\nEvoleth\nEvony\nEzrah\nEzri\nFlynn\nFrieda\nGalia\nGianella\nGlory\nHadassa\nHadlee\nHaleema\nHargun\nHarini\nHarlan\nHarmoni\nHasini\nHelene\nIdalie\nIona\nIshana\nIsra\nJailene\nJaimee\nJalaya\nJalisa\nJalyn\nJalynn\nJamilet\nJanai\nJanuary\nJasnoor\nJatziry\nJayah\nJaylean\nJayliana\nJazmyne\nJazzmine\nJeanine\nJenavee\nJenica\nJenika\nJessenia\nJezabel\nJiana\nJocelynne\nJolin\nJoline\nJordin\nJosette\nJoslynn\nJoya\nJules\nJulieann\nJuliett\nJulina\nJulyssa\nJuna\nKaely\nKahlia\nKalaya\nKalayah\nKaleena\nKalei\nKalyn\nKalynn\nKamiyah\nKandy\nKarah\nKarizma\nKarleigh\nKaryme\nKatalaya\nKataleyah\nKatherin\nKayra\nKeagan\nKeara\nKeeva\nKeiko\nKeisha\nKellie\nKerry\nKeylee\nKhole\nKiarra\nKimbella\nKinzie\nKyle\nKyliee\nKynslee\nLaela\nLaisha\nLanae\nLaniah\nLaylanie\nLayne\nLee\nLeianna\nLeidy\nLennox\nLeonor\nLillith\nLillyanne\nLinden\nLindy\nLora\nLorenza\nLouella\nLuana\nLuca\nLynnette\nLyriq\nMaahi\nMadysen\nMakenzi\nMakiah\nMakinley\nMalana\nMaleny\nMalerie\nMali\nManha\nMaribelle\nMaricarmen\nMaricruz\nMaris\nMariya\nMarla\nMarlin\nMarybelle\nMarygrace\nMaybelline\nMayeli\nMayla\nMea\nMeah\nMele\nMellanie\nMelrose\nMemphis\nMetztli\nMicaiah\nMiliani\nMirabella\nMolli\nMontana\nMoxie\nMyleah\nNadya\nNailea\nNaiyah\nNalini\nNami\nNanami\nNatalyn\nNatania\nNava\nNavy\nNayelie\nNayleen\nNeela\nNena\nNilah\nNimrat\nNisa\nNoah\nNohemi\nNoora\nOceana\nOctober\nOdessa\nOlina\nOliviah\nPaizlee\nParneet\nPhilomena\nPixie\nPolly\nQuetzali\nRael\nRaine\nRaniyah\nRayven\nRemedy\nRena\nReva\nRilynn\nRoberta\nRomi\nRooney\nRoya\nRuthie\nRya\nRyanne\nSaachi\nSaba\nSaina\nSaisha\nSalena\nSalina\nSamaria\nSamreen\nSaranya\nSaydee\nSayla\nSehaj\nSelin\nSemaj\nSephora\nSeylah\nShai\nShanelle\nSharanya\nShaylene\nShelly\nSherlin\nShruthi\nShruti\nSia\nSimrit\nSona\nSonora\nStarlett\nStellarose\nSuhani\nSumaya\nSusannah\nSuzanne\nSvetlana\nTalula\nTaniyah\nTinley\nTirzah\nTory\nTru\nTRUE\nTruly\nVaida\nVaughn\nVeronique\nVianca\nVina\nWesley\nYasmina\nYatzil\nYeila\nYelena\nYena\nYulia\nYumi\nZarina\nZaryah\nZaynah\nZella\nZena\nZephyr\nZoelle\nZofia\nZoila\nZylah\nAalayah\nAamiyah\nAayla\nAberdeen\nAdelin\nAdelynne\nAdilynn\nAdira\nAdria\nAerilyn\nAeva\nAfrica\nAfton\nAgatha\nAilish\nAine\nAlahni\nAlanie\nAlaska\nAlaysha\nAleksia\nAlesana\nAlida\nAlin\nAlizah\nAlizea\nAlizon\nAllena\nAlli\nAllina\nAllisyn\nAlona\nAlyssandra\nAmal\nAmberrose\nAmeena\nAmen\nAmera\nAmour\nAmyiah\nAnaeli\nAnahy\nAnai\nAnalayah\nAnalyssa\nAndraya\nAndromeda\nAnevay\nAngeleah\nAngelene\nAngelika\nAngelita\nAniela\nAniston\nAnja\nAnjana\nAnjolie\nAnnalea\nAnnalyse\nAnnamaria\nAnnarose\nAnneke\nAnniyah\nAnthea\nAoi\nAradhya\nAriam\nArie\nAriell\nArihanna\nArin\nArisa\nArlett\nArlin\nArwyn\nAryiah\nAshira\nAshleigh\nAshlie\nAshna\nAster\nAthalia\nAtiana\nAubreanna\nAubriee\nAvalina\nAvaline\nAvamarie\nAveree\nAveyah\nAvila\nAvy\nAvyanna\nAyat\nAyda\nAyline\nAyra\nAzara\nBaileigh\nBasil\nBeckett\nBelem\nBelladonna\nBettina\nBeyonce\nBirdie\nBliss\nBo\nBraedyn\nBriahna\nBridgett\nBrighton\nBrigid\nBrilynn\nBrina\nBrizeyda\nBrookelyn\nBrooklynne\nBrynleigh\nCalie\nCalifornia\nCalleigh\nCami\nCaprice\nCari\nCaris\nCarlota\nCataleyah\nCateleya\nCayleigh\nCaylie\nChaitra\nChantelle\nCharlette\nChasity\nCherie\nChidera\nChizara\nChristian\nClarabelle\nCollins\nCoralyn\nCorynn\nCozette\nCristel\nDaelynn\nDaena\nDahlila\nDaira\nDaisey\nDakotah\nDaleah\nDalexa\nDalyla\nDanelly\nDannia\nDannie\nDannielle\nDarianna\nDarlin\nDelara\nDelayza\nDelphine\nDempsey\nDenali\nDestini\nDevine\nDevorah\nDeziree\nDonatella\nDoreen\nDraya\nDrea\nDyanna\nEira\nEkaterina\nElah\nEleena\nEleina\nElektra\nElen\nElene\nEleny\nEli\nEliah\nEliannah\nElida\nElienai\nElize\nEllanore\nEllora\nElouise\nElyanna\nEmalynn\nEman\nEmari\nEmilly\nEmmalia\nEmmamarie\nEmmily\nEmoni\nEniya\nEnvy\nEssie\nEugenia\nEvelynne\nEverlynn\nEvyn\nEztli\nFeather\nFrancheska\nFrancis\nGali\nGardenia\nGracen\nGracey\nGraciella\nGreer\nGretta\nGuiliana\nHabiba\nHade\nHafsah\nHaiden\nHaleigh\nHalia\nHalina\nHanah\nHaniya\nHannahgrace\nHarleigh\nHaruka\nHavanna\nHaydee\nHayle\nHeily\nHenna\nHilda\nIlah\nIlaria\nIlyanna\nImaan\nInayah\nInga\nIniya\nInna\nIo\nIone\nIrais\nIsrael\nIssa\nIvey\nIvie\nIzabell\nIzelle\nJacie\nJacklynn\nJadore\nJaelah\nJaeliana\nJahaira\nJaiden\nJailia\nJameela\nJamilah\nJamiyah\nJanett\nJaney\nJanissa\nJannette\nJaritza\nJaselle\nJaslin\nJasmyn\nJasper\nJaycie\nJaydin\nJaylenne\nJazlyne\nJeanne\nJena\nJennavieve\nJennika\nJesenia\nJesse\nJeylah\nJezebel\nJiaqi\nJoann\nJoella\nJohnnie\nJolee\nJoselynn\nJosilyn\nJozlyn\nJuli\nJulian\nJulieanna\nJulliana\nKaelin\nKaileah\nKailin\nKaiulani\nKalee\nKallista\nKamaya\nKambree\nKameron\nKatelin\nKathia\nKatlyn\nKattaleya\nKattleya\nKatty\nKaycie\nKayleah\nKayleeann\nKaylei\nKaytlin\nKeelin\nKelis\nKelli\nKemily\nKenleigh\nKenzy\nKeri\nKetzaly\nKeylani\nKhaliyah\nKimberli\nKimberlie\nKimia\nKiran\nKirsten\nKlaudia\nKloey\nKorina\nKyah\nKymberly\nLaina\nLandyn\nLaniya\nLarisa\nLaritza\nLavina\nLayah\nLayal\nLeandra\nLeelah\nLeiana\nLenya\nLesli\nLidya\nLielle\nLillianne\nLillyan\nLillybeth\nLilou\nLilyrose\nLisamarie\nLissandra\nLisseth\nLivie\nLizzie\nLucciana\nLuci\nLucile\nLumen\nLyah\nLyndsey\nLynnea\nMaddy\nMadisson\nMaegan\nMaha\nMaika\nMailee\nMakenzy\nMakiya\nMakyla\nMallorie\nMalorie\nManasvi\nManon\nManuela\nManya\nMarcelina\nMariadejesus\nMariaguadalupe\nMariann\nMaricella\nMarleen\nMarlenne\nMaryanne\nMaryn\nMathea\nMayzie\nMazie\nMazzy\nMckinzie\nMeenakshi\nMelaney\nMelanye\nMelinna\nMelyna\nMelyssa\nMercedez\nMetzli\nMiarose\nMikenzie\nMilka\nMilliana\nMily\nMitzy\nMoana\nMonzerrat\nMorelia\nMorgen\nMulan\nMykah\nNabila\nNada\nNaevia\nNaimah\nNataley\nNayah\nNayana\nNayara\nNayelly\nNaylea\nNaylene\nNicki\nNirvi\nNiyati\nNizhoni\nNoemie\nNubia\nOlympia\nOndine\nOrla\nPalmer\nPayson\nPayten\nPerry\nPersia\nPhyllis\nPia\nPricila\nQuetzally\nQuorra\nRacquel\nRaena\nRainie\nRama\nRandi\nRazan\nReilly\nRenatta\nRene\nRenesmae\nRhema\nRiana\nRichelle\nRiddhima\nRidhima\nRoisin\nRonni\nRosanna\nRosselyn\nRosslyn\nRoxie\nRozlyn\nRumi\nSafiya\nSaidee\nSakina\nSalem\nSamhita\nSamiah\nSammie\nSammy\nSaory\nSaraya\nSareen\nSaskia\nSeren\nSerinity\nShaily\nShaniah\nShaniya\nShantel\nShanzay\nSharvi\nShaylah\nShaylin\nSheryl\nShoshana\nShyloh\nSianna\nSilvana\nSilver\nSiri\nSivan\nSkylie\nSkyy\nSolstice\nSonam\nSoriah\nSoriya\nSrinika\nSrishti\nStephani\nSumayya\nSylvana\nTaegan\nTaelynn\nTaleah\nTammy\nTatyanna\nTeia\nTonantzin\nTristan\nTuesday\nUna\nVada\nValkyrie\nVana\nVanya\nVarnika\nVarsha\nVayda\nVenezia\nVerona\nViana\nVittoria\nViva\nVivi\nWiley\nXaria\nXylina\nYamile\nYareni\nYareth\nYaritzy\nYeimy\nYeraldin\nYizel\nYohanna\nYuli\nYunuen\nYzabella\nZahira\nZaidee\nZailey\nZariya\nZenobia\nZiah\nZophia\nZoriah\nZuley\nZury\nZyla\nZyra\nSophia\nIsabella\nEmma\nMia\nOlivia\nEmily\nSofia\nVictoria\nAbigail\nCamila\nAva\nSamantha\nCharlotte\nEvelyn\nElizabeth\nNatalie\nChloe\nMadison\nGenesis\nScarlett\nGrace\nZoe\nMelanie\nAllison\nAudrey\nAriana\nAvery\nPenelope\nAlexa\nZoey\nAria\nElla\nAubrey\nAmelia\nLeah\nLily\nKimberly\nArianna\nBella\nMaya\nAaliyah\nMila\nAlyssa\nLayla\nDelilah\nHannah\nHailey\nBrooklyn\nValentina\nXimena\nNatalia\nSavannah\nAshley\nHarper\nAndrea\nJasmine\nSarah\nKayla\nViolet\nNicole\nLuna\nBrianna\nEva\nValeria\nAmy\nEllie\nStella\nKatherine\nJocelyn\nKaylee\nValerie\nRuby\nClaire\nAriel\nNaomi\nAlice\nAngela\nAnnabelle\nAddison\nGianna\nRiley\nSophie\nAlexandra\nJade\nAnna\nFaith\nKylie\nLiliana\nMaria\nMelody\nAlina\nIsabel\nGiselle\nMadeline\nLillian\nLucy\nNevaeh\nMichelle\nMelissa\nAngelina\nElena\nEliana\nAlexis\nDaisy\nJulia\nVanessa\nMadelyn\nDaleyza\nSadie\nStephanie\nHazel\nMackenzie\nAubree\nGabriella\nAthena\nJessica\nLeilani\nVivian\nKhloe\nIsabelle\nKennedy\nTaylor\nDaniela\nAurora\nJuliana\nPeyton\nAutumn\nDestiny\nSerenity\nLauren\nEleanor\nJayleen\nJacqueline\nJulianna\nIsla\nAliyah\nIvy\nKatelyn\nJaylah\nKaitlyn\nSydney\nJennifer\nBailey\nSkylar\nYaretzi\nIris\nCali\nMiranda\nLeila\nMariah\nEmilia\nPaisley\nAlexia\nEsmeralda\nLondon\nMakayla\nNora\nDiana\nItzel\nIzabella\nQuinn\nAlondra\nLyla\nCatherine\nLucia\nAlessandra\nArabella\nElise\nMarilyn\nSara\nPaige\nEverly\nEden\nLeslie\nCaroline\nPiper\nRylee\nRebecca\nSienna\nAdriana\nAlison\nAna\nBrielle\nJayla\nJosephine\nJuliette\nReagan\nKeira\nCora\nRose\nFiona\nGabriela\nJuliet\nSummer\nVivienne\nBrooke\nRachel\nClara\nPresley\nFatima\nKendra\nAdeline\nArya\nElsa\nKate\nAmaya\nKamila\nAlana\nAmanda\nGenevieve\nLilly\nGuadalupe\nApril\nJimena\nMya\nKendall\nTrinity\nAileen\nDaniella\nCamilla\nAllyson\nAmber\nTiffany\nNayeli\nAlexandria\nMariana\nJoanna\nChelsea\nPriscilla\nAngelique\nEmery\nMorgan\nJazmin\nLaila\nAlicia\nLydia\nAnnabella\nBianca\nDahlia\nJordyn\nReese\nCamille\nOlive\nMary\nMontserrat\nJulissa\nNina\nMolly\nAnnie\nAylin\nBrooklynn\nDanielle\nAdalynn\nCrystal\nKiara\nLexi\nAngelica\nGracie\nJaylene\nMarley\nAlejandra\nMadeleine\nHope\nChristina\nCatalina\nCynthia\nKali\nSierra\nKatie\nLola\nViviana\nEvangeline\nNadia\nNoelle\nEmely\nKira\nMckenzie\nPhoebe\nCassidy\nMelany\nCeleste\nJazmine\nCecilia\nSabrina\nAdelyn\nElisa\nFernanda\nAdalyn\nKarina\nJordan\nAnabelle\nCharlie\nSelena\nWillow\nMonserrat\nPayton\nAleena\nAudrina\nKelly\nLila\nCataleya\nJune\nLilah\nEliza\nJanelle\nKarla\nLia\nEsther\nRosalie\nSarai\nDaphne\nGemma\nHaley\nMikayla\nArielle\nHayden\nLana\nMegan\nHeidi\nKassandra\nJulie\nLeia\nAnastasia\nRegina\nJessie\nKylee\nAniyah\nCarolina\nJane\nGia\nAdelynn\nAngie\nRenata\nAyla\nCallie\nCindy\nTessa\nDanna\nGeorgia\nHelen\nIrene\nMalia\nAbby\nEmerson\nErin\nMakenzie\nEloise\nNorah\nTalia\nJazlyn\nMarissa\nSerena\nColette\nKaylie\nGiuliana\nKaren\nKenzie\nLilliana\nBriana\nNoemi\nAngel\nAimee\nAnahi\nAnaya\nScarlet\nAranza\nCassandra\nElle\nGalilea\nMelina\nZara\nAlaina\nKaia\nAnika\nBrittany\nDulce\nMargaret\nRuth\nVeronica\nAnabella\nGloria\nBethany\nGabrielle\nJenna\nKailey\nWendy\nMaddison\nParker\nDelaney\nCarmen\nLaura\nAmelie\nCeline\nFinley\nHarmony\nLucille\nMarina\nYareli\nDylan\nJasmin\nMonica\nAlani\nArely\nFrancesca\nHelena\nLizbeth\nMaggie\nNova\nElliana\nPerla\nSage\nDenise\nLinda\nAverie\nJoy\nNathalie\nPaola\nAlayna\nAzalea\nSkye\nAnnabel\nHadley\nParis\nBrynn\nJoyce\nKinsley\nLondyn\nSiena\nAdelina\nAyleen\nShelby\nEileen\nHarlow\nJamie\nTatiana\nAdilene\nAshlyn\nClarissa\nDakota\nDanica\nDayana\nMadilyn\nAmerica\nElaine\nAriella\nHayley\nIvanna\nJillian\nSloane\nAnya\nBrenda\nHaylee\nKenia\nLilian\nMikaela\nTeagan\nAdrianna\nElsie\nLena\nLexie\nMckenna\nRosemary\nSasha\nTeresa\nAlyson\nHarley\nHolly\nKelsey\nMiah\nNaya\nVera\nAlivia\nAllie\nChanel\nFrida\nReyna\nJohanna\nKara\nKyla\nLiana\nLuciana\nMina\nMiriam\nPaloma\nRylie\nDesiree\nKeyla\nRiver\nAdelaide\nCarly\nJulieta\nHaven\nMarisol\nNataly\nAryanna\nElaina\nNyla\nRosie\nSkyler\nAshlynn\nErika\nEstrella\nJenny\nLea\nMyla\nYamileth\nAda\nBelen\nChristine\nHanna\nIsabela\nMakenna\nAleah\nBriella\nCadence\nCheyenne\nLeyla\nMatilda\nRaquel\nAmira\nGwendolyn\nLindsay\nMichaela\nAmina\nAmiyah\nAnne\nDalilah\nGisselle\nHana\nHeaven\nLilyana\nLyric\nNia\nPhoenix\nRosa\nAmara\nCaitlyn\nElianna\nItzayana\nJanessa\nMarjorie\nNancy\nNathaly\nAlma\nBelinda\nCaitlin\nLaylah\nRoselyn\nSarahi\nTatum\nDalia\nEdith\nEvelynn\nJoselyn\nLesly\nMadelynn\nAbril\nJosie\nKassidy\nLeanna\nNatasha\nPearl\nSawyer\nAlena\nBreanna\nBryanna\nIsis\nJuniper\nKiera\nRyan\nSamara\nBrisa\nEmmy\nKailyn\nKaylin\nMiley\nAlisson\nKatalina\nKaydence\nLisa\nPaulina\nSimone\nAnnika\nAriadne\nBaylee\nJada\nKathryn\nMariam\nDana\nEve\nKenya\nRomina\nThalia\nWinter\nAliana\nAnabel\nAngeline\nFelicity\nJayden\nJolene\nMaia\nRyleigh\nSandra\nSherlyn\nKinley\nLylah\nMarie\nMilania\nRaelynn\nSelina\nCara\nElyse\nEmmalyn\nJourney\nKailani\nKamilah\nMaritza\nMilana\nMira\nAnnalise\nCamryn\nJazlynn\nSavanna\nBeatrice\nCharlee\nDarlene\nDeborah\nJaelyn\nLilianna\nLina\nMaci\nNylah\nRowan\nYaritza\nAinsley\nAlisa\nBonnie\nCharlize\nDanika\nEsperanza\nJayda\nKaelyn\nKayleigh\nLindsey\nMacy\nMilena\nPatricia\nVienna\nAreli\nCarla\nKiana\nLara\nMaliyah\nMaryjane\nMiracle\nSonia\nAlanna\nAnnette\nFreya\nKayleen\nKeila\nLiv\nMarlene\nNathalia\nPaula\nShiloh\nCoral\nFrances\nIliana\nIvory\nJaylin\nJustice\nRaegan\nYuliana\nAisha\nEmilie\nEvie\nJudith\nLogan\nMacie\nMaisie\nRubi\nSharon\nSky\nXiomara\nAiyana\nAmalia\nAmia\nBrynlee\nCameron\nCarina\nEmilee\nHeather\nJaelynn\nKatelynn\nKhaleesi\nLeilah\nLilia\nMaryam\nReina\nSelah\nAanya\nDarla\nImani\nKaylani\nLacey\nLeilany\nLuz\nMaribel\nPenny\nRebekah\nYasmin\nAubrie\nBarbara\nBridget\nEmber\nFarrah\nKristina\nMakena\nScarlette\nTiana\nAdele\nAlia\nAviana\nBlake\nEmelia\nErica\nKamryn\nKeily\nMabel\nMiya\nAspen\nDania\nElin\nElisabeth\nElissa\nEmi\nIrie\nKataleya\nMaite\nShanaya\nZahra\nZuri\nAleyda\nArantza\nAurelia\nCambria\nCiara\nClaudia\nEsme\nJaylynn\nLilith\nMadilynn\nRemi\nRoxanne\nAilyn\nAudriana\nDalary\nKaya\nMillie\nMonroe\nStevie\nSunny\nAlayah\nAryana\nCasey\nCelina\nCharley\nDamaris\nEllen\nHeidy\nJacquelyn\nJemma\nKadence\nKaliyah\nMalaya\nMalaysia\nSelene\nTara\nTina\nBelle\nEvalyn\nJaqueline\nKyra\nLailah\nPaislee\nPoppy\nSaanvi\nSkyla\nVioleta\nYoselin\nCitlali\nClementine\nEstella\nFrankie\nGiovanna\nJolie\nKaiya\nKaty\nMaxine\nRiya\nYaretzy\nZariah\nAlianna\nAlissa\nAstrid\nDallas\nDavina\nFaye\nKayden\nLarissa\nLupita\nMilagros\nNoa\nRenee\nSalma\nSylvia\nXochitl\nYesenia\nAmaris\nAniya\nDemi\nGeraldine\nJanet\nJulianne\nLiberty\nLuisa\nMagdalena\nMallory\nMylah\nShayla\nStacy\nVida\nViolette\nWilla\nAliah\nAlisha\nAvianna\nCharlene\nCoraline\nCristina\nGiana\nJanice\nLorelei\nMadalyn\nMaeve\nMaleah\nMarlowe\nMilah\nMilani\nNatalya\nVirginia\nYvette\nZaniyah\nAbbie\nAriah\nAubrielle\nAya\nDelia\nEvangelina\nJaylee\nKristen\nLivia\nLizeth\nMargot\nMarlee\nMartha\nMckinley\nMicaela\nNelly\nRaven\nSaige\nSally\nTegan\nAliya\nAzeneth\nCapri\nCharli\nCourtney\nDalila\nGrecia\nIngrid\nJanney\nKailee\nKaley\nKallie\nKathleen\nKathy\nKrystal\nLauryn\nLorelai\nMelinda\nMilan\nSidney\nSilvia\nTania\nThea\nValery\nYamilet\nYaneli\nYolanda\nAlly\nAmari\nAmirah\nAnanya\nAzul\nDenisse\nDiya\nHolland\nIzel\nKaitlin\nLeona\nMercedes\nRebeca\nYvonne\nZoya\nAddyson\nAdela\nAnais\nCandice\nDafne\nDorothy\nElina\nEunice\nGiada\nHailee\nJoelle\nKairi\nLillie\nLucero\nMavis\nMayra\nRamona\nRosalyn\nShirley\nSoleil\nZainab\nAadhya\nAdrienne\nBria\nBristol\nElodie\nGwen\nGwyneth\nIreland\nJayde\nJewel\nJocelynn\nKora\nLitzy\nMagnolia\nMarianna\nMeera\nMyra\nNoor\nRhea\nSariah\nSloan\nAarna\nAilani\nAmerie\nAnalia\nArlene\nElliott\nElly\nJasleen\nKasey\nLeighton\nMariela\nMckayla\nMyah\nNikki\nNola\nStephany\nWhitney\nWren\nAarya\nBlakely\nCaylee\nDayanna\nDoris\nEmerie\nEverleigh\nEvolet\nFlorence\nGracelynn\nKalia\nKatrina\nMaliah\nMandy\nNadine\nRemy\nRosalinda\nSoraya\nVivien\nYazmin\nAlannah\nAlyna\nAmani\nAraceli\nAriya\nBraelyn\nDaleysa\nDariana\nJordynn\nKalea\nLilyanna\nLyra\nMadyson\nMargarita\nMeadow\nSandy\nVicky\nZoie\nAnnabell\nAracely\nBeatriz\nCarolyn\nCielo\nCorinne\nDestinee\nElia\nEllery\nEstefania\nGeorgina\nGizelle\nHillary\nHunter\nJazmyn\nJazzlyn\nJosselyn\nKalani\nKaylen\nKenley\nMadisyn\nMarbella\nNaima\nSheila\nTanvi\nTanya\nZelda\nAddisyn\nAni\nAnita\nBeverly\nCelia\nChiara\nClare\nJiselle\nKaterina\nKaycee\nKeilani\nLidia\nMeredith\nRylan\nVivianna\nYarely\nAmayah\nAnn\nAyana\nBailee\nBree\nBrinley\nBrylee\nCandy\nEstefany\nEstelle\nGracelyn\nHadassah\nHailie\nHaylie\nIvana\nJaylyn\nJudy\nKiley\nLeela\nLianna\nMae\nMariajose\nMercy\nMiabella\nMika\nMireya\nNeriah\nNeveah\nRoxana\nRyann\nSarina\nShreya\nTabitha\nYulissa\nAida\nAliyana\nArianny\nAvalon\nBetty\nBritney\nCalista\nCarrie\nDevyn\nDianna\nElora\nEmmeline\nFlora\nGisele\nGreta\nJackie\nJaylen\nKaelynn\nKayley\nLaurel\nLaylani\nMara\nMarisa\nNala\nNalani\nPamela\nRobyn\nSaylor\nSusana\nAddilyn\nAlba\nAriyah\nArleen\nAyva\nCathy\nCristal\nEiza\nEmiliana\nEvelina\nGina\nGraciela\nIsha\nJackeline\nJianna\nKai\nKaylynn\nLeticia\nMadalynn\nRachael\nRaylene\nRayna\nRory\nRosemarie\nSheyla\nTess\nXitlali\nYuna\nAlanis\nAliza\nAlize\nAnayah\nAnjali\nAntonella\nAvah\nAzariah\nBraelynn\nBrigitte\nDonna\nEmerald\nIsadora\nIzabelle\nJaslene\nJaycee\nLorena\nLouisa\nPaityn\nRita\nShaila\nSofie\nSonya\nVianney\nAbbigail\nAlessia\nAnaiah\nArlette\nAvalyn\nAvani\nBerlin\nBlanca\nCarissa\nCordelia\nDiamond\nDora\nEleni\nEmmalee\nFlor\nJaliyah\nJanae\nJubilee\nKaitlynn\nKamille\nLainey\nLouise\nLucie\nMay\nPersephone\nPetra\nRaelyn\nSuri\nTori\nVeda\nAlaya\nAndi\nAsha\nAubriana\nAulani\nCassie\nCherish\nDani\nEmersyn\nKamilla\nKarissa\nKaylah\nLennon\nMalina\nMarceline\nMonique\nOphelia\nRobin\nRoxanna\nSailor\nSusan\nTaliyah\nVioletta\nYadira\nAbbey\nAbrianna\nAiyanna\nAnneliese\nAntonia\nArleth\nArmani\nAyanna\nBeatrix\nBlair\nCarol\nDrew\nElliot\nEstela\nEvalina\nHenley\nInes\nJaslyn\nJenesis\nKatarina\nKirra\nKyleigh\nLillyana\nLluvia\nMayah\nNicolette\nNika\nQueena\nRoyal\nSahana\nSinai\nTallulah\nVianey\nWinnie\nYatziri\nZaira\nZuleyka\nAadya\nAbrielle\nAgnes\nAlessa\nAmiya\nAvni\nConnie\nDominique\nEmmaline\nInez\nIsa\nJaneth\nJazleen\nJoanne\nJoey\nJournee\nKalina\nKaris\nKarlie\nKenna\nLaney\nLillianna\nLillyanna\nMayleen\nNailah\nNichole\nNovalee\nPrincess\nRenesmee\nRihanna\nRocio\nSana\nSerafina\nSol\nSylvie\nTenley\nAkshara\nAleeah\nAnnalisa\nAriadna\nAubriella\nAugust\nBridgette\nCalliope\nCecelia\nCitlalli\nDayanara\nDiane\nEma\nEmani\nImogen\nIsela\nItalia\nIzabel\nJanelly\nJaniyah\nJazlene\nKaila\nKaily\nKelsie\nKristin\nLeanne\nLeena\nLourdes\nMarcela\nNaia\nNaomy\nNoelani\nPaulette\nRaya\nRosario\nShea\nTracy\nVanellope\nXitlaly\nYasmine\nZaria\nAditi\nAhana\nAnalise\nAnnalee\nAshly\nAveri\nBerenice\nBetsy\nBillie\nBrenna\nBryn\nDasha\nEvelin\nGema\nHallie\nJohana\nJustine\nKarlee\nKarolina\nKarsyn\nKennedi\nLesley\nMariyah\nMelisa\nMerida\nNellie\nNila\nNoelia\nNyah\nSaira\nScout\nSeraphina\nStacey\nStar\nTala\nTamara\nTheresa\nTreasure\nVivianne\nAarohi\nAleyna\nAmberly\nAminah\nAndie\nAriane\nAudree\nAudrianna\nBernadette\nCarter\nCattleya\nChristiana\nCoco\nDeisy\nEmelyn\nHonesty\nIndigo\nIra\nIvette\nJael\nJeanette\nKaleah\nKarol\nKatia\nLori\nLorraine\nLux\nMelia\nMoriah\nNatalee\nNya\nNyomi\nRoxy\nSahasra\nShira\nVania\nZariyah\nZendaya\nAbbygail\nAlora\nAlynna\nAmiah\nAmilia\nAnabell\nAnaiya\nAri\nAudra\nAvary\nAvril\nCarlie\nCecily\nChristy\nCitlaly\nDevon\nEmmalynn\nEmmie\nEvalynn\nFabiola\nHeavenly\nIlene\nJaclyn\nJana\nJanie\nJazelle\nKarely\nKimora\nLailani\nLaniyah\nLayan\nLeylani\nLeyna\nLinnea\nLucinda\nLynette\nMagaly\nMannat\nMarlyn\nMaryann\nMeilani\nMelani\nMilla\nMilly\nNayla\nNoel\nOpal\nPriya\nRaina\nReece\nRemington\nReya\nRia\nSamira\nSeerat\nShannon\nToni\nTyler\nViola\nYahaira\nAbygail\nAitana\nAkira\nAlexi\nAmya\nAnaleah\nAnali\nAniah\nAudrie\nAyah\nAzucena\nCassia\nCaydence\nCharleigh\nDaiana\nDeanna\nDelylah\nDolores\nElayna\nFallon\nHarlee\nInaya\nIsabell\nJackelyn\nJaya\nJessa\nKacey\nKailynn\nKensington\nKinsey\nKristy\nLeilanie\nLiah\nLoretta\nLucianna\nLynn\nMacey\nMalak\nMarcella\nMarian\nMonserrath\nOdalys\nPepper\nPrisha\nRilynn\nSamaira\nSamiyah\nSaniyah\nSariyah\nSutton\nTia\nZooey\nAdaline\nAiza\nAlinna\nAnayeli\nAnisha\nAnissa\nAnnelise\nArden\nAsia\nAvalynn\nAvneet\nAyesha\nBlaire\nCayla\nCheyanne\nClover\nEstefani\nEzra\nHalle\nHarleen\nIndiana\nJannah\nJocelyne\nKarly\nKaroline\nKatya\nKori\nKourtney\nLilyann\nLondynn\nLotus\nMalayah\nMalena\nMarely\nMaren\nMarianne\nNavya\nNayelli\nOlga\nPrecious\nQueenie\nRain\nRegan\nRylynn\nSabina\nSerene\nShyanne\nTesla\nTrisha\nUma\nVenus\nVianna\nWaverly\nYanely\nYara\nZahara\nZion\nZuria\nAaleyah\nAmora\nAnnabeth\nAnnaleah\nAnnaliese\nAnnamarie\nAnvi\nAriela\nAubrianna\nAustin\nBriar\nBriseida\nBriseis\nBrissa\nCarlee\nCleo\nDella\nDina\nElli\nEllison\nElyssa\nEmmarie\nEnya\nEver\nGurnoor\nHalo\nHaya\nHonor\nIndia\nIndie\nIrma\nIsobel\nJaida\nJosefina\nJosslyn\nJude\nKaylyn\nKianna\nKim\nKloe\nKyara\nLeen\nLexy\nLiya\nMaddie\nMargo\nMarilynn\nMarion\nMarlie\nMaycee\nMaylee\nMayte\nMelannie\nMollie\nNahla\nNiya\nPreslee\nRosalind\nRoya\nSakura\nSanvi\nSapphire\nSavanah\nTamia\nTemperance\nUnique\nWynter\nAaradhya\nAaralyn\nAdalie\nAdella\nAdina\nAeris\nAlysson\nAmie\nAmor\nAnaly\nAngelia\nAnisa\nAntoinette\nAnushka\nArtemis\nAustyn\nAvamarie\nAven\nBrittney\nCailyn\nCarys\nChaya\nCherry\nDarya\nDevin\nDixie\nEisley\nElani\nEllia\nEllianna\nEmme\nEster\nFinnley\nGaia\nGeneva\nGiavanna\nGisel\nGoldie\nGriselda\nHaydee\nInara\nJaylani\nJenicka\nJizelle\nKaleigh\nKatheryn\nKavya\nKayli\nKeren\nKhali\nKhalia\nKrisha\nLeann\nLibby\nMaile\nMaisy\nMaliya\nMaricela\nMarlena\nMaylene\nMaylin\nMicah\nNaiya\nNatali\nNikita\nPatience\nPromise\nRania\nRoslyn\nSabine\nSahara\nSequoia\nShay\nShayna\nYael\nZayla\nZia\nAdalina\nAdamaris\nAdelle\nAdilynn\nAhtziri\nAila\nAislinn\nAlanah\nAlex\nAllisson\nAlyanna\nAlysa\nAlyse\nAmairani\nAmarie\nAmeerah\nAmethyst\nAngelie\nArabelle\nAraya\nArina\nArissa\nArlet\nArwen\nAysha\nBrea\nCailey\nCandace\nCiana\nCienna\nConstance\nCoralie\nCosette\nDaliah\nDawn\nDivina\nDivine\nDivya\nEila\nEleanora\nElinor\nEllyana\nEmiko\nEmmarose\nEmmerson\nEmy\nFarah\nGwenyth\nHarini\nHennessy\nIla\nJanette\nJayna\nJenessa\nJoann\nJoselin\nJoslyn\nJuana\nJulisa\nKaili\nKiyomi\nKlara\nKlarissa\nKorie\nLennox\nLeylah\nLove\nMagali\nMalika\nMayrin\nNariah\nNiyah\nOcean\nPriscila\nQuincy\nRaelene\nRipley\nSama\nSaray\nSaydee\nSirena\nSpencer\nSymphony\nTaryn\nTerra\nYasmeen\nZora\nAddie\nAiley\nAleyza\nAnaiyah\nAnaliyah\nAnia\nArisbeth\nAyvah\nAzalia\nBay\nBritany\nBriza\nCamellia\nChanelle\nChantal\nChevelle\nCianna\nColleen\nDarcy\nDaria\nDayami\nDelanie\nDesirae\nEgypt\nEllis\nElyana\nEmory\nEricka\nEsha\nEverley\nFrancisca\nGenessis\nGladys\nGuinevere\nHattie\nHavana\nHudson\nIleana\nIrina\nIrlanda\nItaly\nIvanka\nJannat\nJaquelin\nJaslynn\nJesslyn\nJiya\nJocelin\nJoie\nJoseline\nJoslynn\nJovie\nJules\nJurnee\nKaira\nKarma\nKasandra\nKiersten\nKimber\nKirsten\nKitana\nKristal\nKylah\nKyndall\nLissette\nLoren\nMai\nMareli\nMargaux\nMarlen\nMarlo\nMaylen\nMeghan\nMelanny\nNahomi\nNahomy\nNavy\nNaydelin\nNayomi\nNiki\nNoah\nReign\nRhiannon\nRian\nRosalynn\nRoselynn\nSamaya\nSanaa\nSanaya\nSherry\nShriya\nSia\nStefany\nSusie\nTaliah\nTammy\nTianna\nVenice\nYana\nYessenia\nZaina\nZarina\nAbella\nAbriana\nAdalee\nAddalyn\nAlya\nAlysia\nAngeli\nAnnmarie\nAnuhea\nAoife\nAshlee\nAubri\nAura\nAvia\nAvigail\nBennett\nBlossom\nBlythe\nBowie\nCattaleya\nCollette\nCorina\nDanae\nDarby\nDoreen\nElisha\nEmmalina\nEmmanuelle\nEmry\nEryn\nEtta\nGala\nGeorgiana\nGiulia\nGretel\nHalima\nHarlie\nHilary\nIda\nIxchel\nIyla\nJacey\nJanely\nJanna\nJaquelyn\nJean\nJenavieve\nJoan\nJordin\nJulieth\nKaliah\nKatharine\nKeziah\nKorra\nKristine\nLincoln\nLisette\nLovely\nMari\nMariella\nMarin\nMaven\nMilagro\nMiraya\nMiyah\nMoira\nMona\nNada\nNiah\nNour\nOdette\nOfelia\nOrion\nRafaela\nRayne\nReem\nRyder\nRylin\nSaleen\nSalem\nSantana\nSaoirse\nShylah\nSimona\nSimran\nSkarlett\nSolange\nStefanie\nStory\nSusanna\nTahlia\nTalya\nTeegan\nValencia\nValentine\nVanesa\nViktoria\nXenia\nYareni\nYulianna\nZadie\nZaida\nZaya\nZola\nAahana\nAaliya\nAbriella\nAdalia\nAddelyn\nAime\nAinara\nAleksandra\nAleyah\nAlinah\nAlyah\nAmarah\nAmariah\nAmi\nAmmy\nAngelic\nAngely\nAolanis\nArianne\nAshton\nAveline\nAzaria\nBeau\nBerlyn\nBernice\nBethel\nBianka\nBrie\nBrithany\nCaleigh\nCalissa\nCaliyah\nCarmela\nCarmella\nCharity\nColbie\nDaenerys\nDaila\nDanya\nDara\nDarlyn\nDebora\nDeja\nDelila\nEcho\nEdie\nElvira\nElysia\nEmalee\nEris\nEssence\nEvany\nFreyja\nGenavieve\nGenevie\nGillian\nGiulianna\nGrettel\nHafsa\nIlliana\nIlse\nInessa\nIona\nIshani\nJackelin\nJacklyn\nJacquelin\nJadelyn\nJanell\nJaylinn\nJennah\nJenni\nJill\nJuanita\nKaci\nKacie\nKarli\nKaylene\nKensie\nKensley\nKenzi\nKyrie\nLacy\nLani\nLavinia\nLeana\nLela\nLiyah\nMakaylah\nMalani\nMaribelle\nMaricruz\nMarisela\nMartina\nMaureen\nMedha\nMisha\nNava\nNeve\nNirvana\nNorma\nOona\nPauline\nPilar\nPortia\nQuetzalli\nRena\nRomi\nRosalee\nRosy\nSedona\nSerina\nShae\nShania\nSiya\nSydnee\nTatyana\nTheodora\nTinley\nVada\nVaishnavi\nViolett\nViridiana\nYsabella\nZaylah\nAaryn\nAbigale\nAdamari\nAdley\nAilany\nAilin\nAislin\nAkemi\nAlaysia\nAlea\nAleida\nAlitzel\nAllana\nAllegra\nAlyza\nAmeena\nAnaleigh\nAnaliah\nAnalicia\nAnalisa\nAndromeda\nAnsley\nAolani\nArantxa\nAthziri\nAurielle\nAvaya\nAvila\nBaylie\nBecky\nBellarose\nBentley\nBrandy\nBraylee\nBriley\nBriseyda\nBrynley\nCaliana\nCalla\nCamdyn\nCaterina\nCelest\nCharis\nCheryl\nCiel\nCooper\nDarling\nDia\nEliyah\nEloisa\nElouise\nEmmi\nEternity\nEugenia\nFatimah\nFayth\nGennesis\nGlory\nHaily\nHartley\nHermione\nHilda\nHollie\nHoney\nIlana\nIly\nIsamar\nIvonne\nIyanna\nJaiden\nJaina\nJaleah\nJanis\nJaylenne\nJayne\nJenevieve\nJessalyn\nJoana\nJoya\nJulieanna\nKaela\nKaidence\nKaidyn\nKaleia\nKalli\nKambria\nKarley\nKarmen\nKaryme\nKay\nKeilah\nKendal\nKennady\nKensi\nKhadija\nKhylee\nKinslee\nLacie\nLael\nLaya\nLili\nLilyrose\nLinh\nLiz\nLizette\nLois\nLuca\nLucca\nLynda\nMadelyne\nMarla\nMarleny\nMarta\nMei\nMelodie\nMelony\nMillicent\nMindy\nMinerva\nMisty\nNadya\nNaila\nNalayah\nNallely\nNaveah\nNayely\nNico\nNicolle\nOriana\nPreslie\nPricilla\nRachelle\nRae\nRomy\nRosaline\nSaachi\nSamarah\nSaniya\nSehaj\nSena\nShyla\nSicily\nSilvana\nSiobhan\nSkylynn\nSonja\nSparrow\nStarla\nSuhani\nSwara\nVanity\nVayda\nYatzil\nYazaira\nYuridia\nZayra\nZenaida\nZinnia\nZiva\nZulema\nZuleyma\nZyanya\nAashi\nAcacia\nAdalind\nAdaliz\nAdaly\nAdara\nAddilynn\nAdelaida\nAdelia\nAdilyn\nAdylene\nAgatha\nAiko\nAilynn\nAiri\nAlany\nAlayla\nAleen\nAleeyah\nAlexie\nAliannah\nAlise\nAlliyah\nAlycia\nAlyvia\nAmyah\nAn\nAnalee\nAnalie\nAnela\nAnessa\nAngelee\nAnja\nAra\nArianah\nAribella\nArie\nAriyana\nAshanti\nAsma\nAubry\nAvika\nAviva\nAvleen\nAylen\nAylene\nAzaleah\nBetzy\nBoston\nBrighton\nCaelyn\nCarmel\nCatarina\nCesia\nChana\nChandler\nCharisma\nCinthia\nConstanza\nDebbie\nDenali\nDestiney\nDior\nEla\nElianah\nElienai\nEllah\nEmeline\nEshal\nEveline\nEverlee\nEvette\nFanny\nFern\nGaby\nGianella\nGinger\nGisela\nGisella\nGissel\nGretchen\nHarnoor\nIlianna\nIlyana\nIrelynn\nIshika\nIzabellah\nIzzabella\nJailyn\nJaime\nJasneet\nJatziri\nJaymee\nJenelle\nJennie\nJessi\nJodie\nJoleen\nJuno\nKailah\nKalaya\nKalayah\nKalena\nKalie\nKateri\nKeeley\nKeely\nKeyli\nKhloee\nKimberley\nKlaire\nKya\nKyrah\nLaylanie\nLeeah\nLeoni\nLeonora\nLillith\nLisbeth\nLuella\nMahi\nMailen\nMailyn\nMaiya\nMakaila\nManuela\nMaribella\nMarleen\nMason\nMeagan\nMeah\nMildred\nMileena\nMiliani\nNaveen\nNazareth\nNeela\nNeha\nNikole\nOceana\nOlyvia\nPayten\nPhilippa\nPia\nQueen\nRayanna\nRayleen\nRaylynn\nRayven\nReet\nRhylee\nRosalia\nRosalina\nRowen\nSaisha\nSamia\nSanai\nSanya\nSavvy\nSayuri\nShoshana\nSkylee\nSkyy\nTaya\nTigerlily\nTinsley\nUna\nVeronika\nVesper\nYazmine\nYessica\nYetzali\nYocelyn\nYumi\nYuri\nZaylee\nZayna\nZoee\nZosia\nZuleika\nZyana\nZylah\nAalyiah\nAcelynn\nAdelynne\nAiram\nAisley\nAiva\nAlaia\nAleeya\nAlenna\nAli\nAlitza\nAliyanna\nAlona\nAlyana\nAlyssah\nAlyssia\nAmairany\nAmaiya\nAmbar\nAmeera\nAnabeth\nAnamarie\nAnavictoria\nAngelika\nAngelyn\nAnnaleigh\nAnnaly\nAnnemarie\nAnniston\nAnoushka\nArlett\nArlyn\nAtziri\nAudri\nAvarie\nAvelina\nAverey\nAvonlea\nAyelen\nAyumi\nBellah\nBerlynn\nBetsaida\nBliss\nBostyn\nBreanne\nBritanny\nBritton\nBrylie\nCalia\nCalleigh\nCampbell\nCamrynn\nCatelyn\nChrista\nClair\nClarice\nCorrina\nDaelynn\nDanni\nDaphnie\nDasia\nDesire\nDulcemaria\nEkam\nElicia\nEllena\nElliette\nElvia\nEman\nEmili\nEshaal\nEvan\nEzri\nFabiana\nFelicia\nGetsemani\nGisell\nGrayson\nHarlowe\nHarmonie\nHarriet\nHenrietta\nIdalie\nIleen\nIman\nImelda\nIna\nIssabella\nJaden\nJaimie\nJalynn\nJamila\nJamileth\nJaniah\nJaniya\nJazmyne\nJenifer\nJessika\nJezabel\nJiana\nJoi\nJovi\nJoycelyn\nJulietta\nJustina\nKaileen\nKalissa\nKamdyn\nKamea\nKameron\nKaori\nKaralyn\nKari\nKarime\nKarisma\nKataleah\nKatty\nKaycie\nKaylana\nKeegan\nKelis\nKendyl\nKeya\nKierra\nKimiko\nKiran\nKitty\nKrista\nKristiana\nKyndal\nLanna\nLavina\nLayne\nLeilanni\nLenora\nLeya\nLilianne\nLiora\nLua\nLya\nMaddilynn\nMadina\nMaeva\nMakenzi\nMalillany\nMaram\nMariel\nMarilu\nMattie\nMaura\nMaytte\nMeena\nMele\nMemphis\nMiliana\nMilliana\nMily\nMirabelle\nMischa\nNaisha\nNavaeh\nNiamh\nNilah\nNimrat\nNimrit\nNubia\nQuetzaly\nRadha\nRiana\nRileigh\nRio\nRoisin\nRosabella\nRoselin\nRozlyn\nRuhi\nRya\nSabella\nSafa\nSaja\nSalina\nSamanta\nSaphira\nSaya\nSelma\nSenna\nShaina\nSilver\nSkylah\nSnow\nSofiya\nSolana\nSomaya\nSonora\nStefani\nSterling\nSunnie\nSurveen\nSusannah\nSuzanna\nSuzette\nTaelynn\nTaleen\nTali\nTaraji\nTaytum\nTherese\nTristyn\nVanya\nVeera\nVictory\nWilhelmina\nXena\nYanelli\nYelena\nYoselyn\nYuki\nYulia\nYuritzi\nZanna\nZarah\nZayah\nZyla\nAahna\nAalia\nAariyah\nAashvi\nAbigayle\nAdalene\nAddalynn\nAdison\nAdrian\nAdyson\nAerin\nAilene\nAira\nAislyn\nAixa\nAkari\nAlaska\nAleana\nAleenah\nAleeza\nAletheia\nAlexus\nAlexxa\nAleya\nAlizay\nAly\nAlysha\nAlyssandra\nAlyzah\nAmila\nAmour\nAnapaula\nAnastacia\nAnel\nAnette\nAngeles\nAnica\nAnishka\nAnnalia\nAnnalie\nAnnaliyah\nAnnalynn\nAnnalyse\nAnny\nAnvita\nAradhya\nAralyn\nAriannah\nArianni\nAriany\nArohi\nAsenath\nAseneth\nAshleen\nAshtyn\nAsiya\nAubreigh\nAvarose\nAveree\nAyden\nAylah\nAyline\nBela\nBelicia\nBetsabe\nBettie\nBeya\nBlayke\nBrianne\nBrigette\nBrookelynn\nBryana\nCaia\nCailin\nCamelia\nCandelaria\nCarley\nCarson\nCarsyn\nCate\nCharlette\nChase\nChelsey\nChioma\nChristal\nClarity\nCollins\nConsuelo\nCyrine\nDalylah\nDanelly\nDanitza\nDaniya\nDarina\nDayani\nDaysha\nDelayza\nDennise\nDinah\nEaston\nElana\nEleana\nEleonor\nEleyna\nElif\nElika\nElva\nElyza\nEmeli\nEmmah\nEmmely\nEmmelyn\nEmmery\nEmmily\nEsmae\nEvah\nEvianna\nEzmeralda\nFlorencia\nFrancis\nGalileah\nGeorgette\nGolden\nGrey\nGurleen\nHadasa\nHaddie\nHaidyn\nHollis\nHosanna\nHuda\nInaaya\nInayah\nIndira\nIsaura\nItzae\nIva\nIyana\nJailene\nJailynn\nJalayah\nJamee\nJameson\nJamilet\nJasmeet\nJaydah\nJaylanie\nJayleene\nJaylie\nJayme\nJaymie\nJazlin\nJazzlynn\nJazzmine\nJeanelle\nJesse\nJhene\nJolee\nJoselynn\nJustyce\nKaeley\nKaely\nKahlan\nKahlia\nKaiden\nKaleena\nKalynn\nKandace\nKarah\nKarter\nKatalaya\nKatalia\nKatana\nKatelin\nKatherin\nKathia\nKaydee\nKayle\nKaylinn\nKealani\nKeiry\nKenzington\nKhadijah\nKimberlee\nKyliee\nLaci\nLarisa\nLaurie\nLayna\nLeandra\nLeigha\nLeora\nLexington\nLeyah\nLiesel\nLilit\nLiza\nLula\nMackayla\nMadisen\nMagdalene\nMailani\nMaira\nMalea\nMallorie\nManreet\nMaple\nMarguerite\nMariafernanda\nMarielle\nMarigold\nMarijose\nMarwa\nMaryanne\nMaryn\nMayar\nMaycie\nMayzie\nMelania\nMelyssa\nMena\nMeztli\nMireille\nMirella\nMizuki\nMonika\nMontana\nMyka\nNailea\nNara\nNare\nNareh\nNeva\nNidhi\nNohemi\nNovah\nOakley\nOctober\nOnyx\nPrimrose\nRana\nRawan\nRayah\nRayanne\nRianna\nRiona\nRoberta\nRoma\nRoni\nRooney\nRosanna\nRowyn\nRoyalty\nRyanne\nSalome\nSamaria\nSamirah\nSammantha\nSanjana\nSapphira\nSavina\nScotland\nSeleste\nSephora\nSerah\nSeren\nSevyn\nShanelle\nShantal\nShaya\nShaylee\nShayne\nShyann\nSianna\nSkarlet\nSona\nSrinika\nSyeda\nSyriah\nTanisha\nTanishka\nTatianna\nTheia\nTiara\nTilly\nTonantzin\nTrina\nVarsha\nVella\nVerenice\nYatziry\nYoana\nYuritza\nZaara\nZahira\nZariya\nZayda\nZaynab\nZofia\nZoha\nZophia\nZurisadai\nAaliah\nAarini\nAayla\nAbagail\nAbbigale\nAbilene\nAbrar\nAdalyne\nAdora\nAdrielle\nAdrina\nAiden\nAine\nAkshaya\nAlahni\nAlanie\nAlexsandra\nAliviah\nAlizae\nAlizah\nAllysson\nAlyannah\nAmaia\nAmaira\nAmalya\nAmayrani\nAmberlynn\nAmore\nAmri\nAnai\nAnalaya\nAngelita\nAngelli\nAnnahi\nAnouk\nAnshika\nAralynn\nArisha\nAriyanna\nArizona\nArliz\nArrow\nAsa\nAsenet\nAshely\nAshleigh\nAshlynne\nAuria\nAvaree\nAvry\nAvy\nAyra\nBayla\nBerkeley\nBertha\nBethenny\nBobbie\nBrinlee\nBrookelyn\nBrooklin\nBrooklynne\nBryce\nBrynlie\nBrynne\nCallista\nCambrie\nCamden\nCameryn\nCaris\nCatalaya\nCayden\nChelsie\nChloey\nChristianna\nCiela\nCiena\nCiera\nCierra\nClaira\nClarisa\nClio\nCoralee\nCyan\nCyra\nDagny\nDailyn\nDaleyssa\nDaphnee\nDaphney\nDarianna\nDarleen\nDayna\nDeema\nDefne\nDelaila\nDelani\nDelfina\nDelphine\nDemetria\nDeniz\nDenver\nDesteny\nDezirae\nDharma\nDolly\nDonya\nEimy\nElanie\nEleanore\nElisabetta\nElizabella\nElizaveta\nEllieana\nEllington\nElsy\nElysa\nEmalyn\nEmberlynn\nEmelie\nEmeri\nEmilyn\nEmmalin\nEmree\nEmsley\nEnsley\nEsbeidy\nEvalena\nEviana\nEvyn\nFaustina\nFiora\nFrancine\nGauri\nGiannah\nGigi\nGraysen\nGreenlee\nHala\nHanan\nHaneen\nHania\nHannaley\nHargun\nHayven\nHeily\nHelene\nHellen\nIlaria\nIndy\nIrais\nIsella\nIsley\nIsrael\nJacie\nJaeliana\nJaidyn\nJakayla\nJalissa\nJanai\nJanay\nJaney\nJannet\nJapji\nJaselle\nJasmyn\nJasnoor\nJelena\nJenevie\nJenika\nJennyfer\nJeslyn\nJessy\nJewell\nJoely\nJohnnie\nJolin\nJosephina\nJourni\nJudah\nJulyssa\nKacy\nKaelah\nKaelani\nKailea\nKaliana\nKalyssa\nKamari\nKarolyn\nKassie\nKathrine\nKatniss\nKattaleya\nKaylanie\nKeaton\nKeerat\nKeeva\nKeiko\nKeisha\nKelani\nKellie\nKenadee\nKennya\nKeri\nKerrigan\nKimaya\nKimberlyn\nKingsley\nKiya\nKloey\nKolbie\nKristie\nKyah\nLaasya\nLanah\nLanaya\nLanie\nLareen\nLariyah\nLaveah\nLayah\nLeigh\nLeni\nLeonor\nLetty\nLian\nLiara\nLiliann\nLilibeth\nLillianne\nLillyan\nLillyann\nLilyan\nLilyanne\nLuci\nLucile\nLyah\nLyanna\nMaddilyn\nMaddy\nMaddyson\nMadelin\nMadysen\nMaelynn\nMahika\nMaiah\nMaisey\nMaizie\nMandi\nMane\nManeh\nMariaelena\nMariko\nMarleigh\nMarlow\nMarybella\nMarylou\nMarysol\nMayeli\nMayla\nMaylani\nMaysa\nMayumi\nMazie\nMehar\nMehr\nMelrose\nMerary\nMercedez\nMichele\nMilynn\nMinka\nMirna\nMishika\nMithra\nMonet\nMonserat\nMyriam\nNaina\nNaliyah\nNami\nNavi\nNaylah\nNaylani\nNeda\nNethra\nNhi\nNicky\nNihira\nNishka\nNoemy\nNoora\nNura\nOdessa\nOliana\nOliviah\nOlympia\nPalmer\nPearla\nPolina\nPosey\nPyper\nRaine\nRani\nRaniyah\nReegan\nReema\nRene\nRheya\nRhyan\nRilee\nRina\nRishika\nRosalba\nRosella\nRosha\nRoshni\nRosibel\nRozlynn\nRumi\nRyen\nSahar\nSaidee\nSamanvi\nSammi\nSaori\nSariya\nScotlyn\nSeven\nShaela\nShaylynn\nShelly\nSheryl\nShivani\nShylee\nSincere\nSoliana\nSophy\nSophya\nSora\nSpirit\nSrishti\nSumaya\nSuraya\nSuzanne\nSydnie\nTaelyn\nTamar\nTayler\nTehya\nTierney\nTova\nTrinidad\nTristan\nTula\nUnknown\nUrsula\nVanna\nVanshika\nVarnika\nVerena\nVeyda\nVibha\nVicki\nVittoria\nViviane\nWesley\nWeslyn\nWinifred\nXyla\nYailin\nYaiza\nYajaira\nYamila\nYanet\nYaslin\nYasmina\nYohana\nYoyo\nYsabelle\nYui\nYzabella\nZaila\nZamaya\nZaniah\nZaniya\nZeina\nZella\nZemira\nZixuan\nZoei\nZoejane\nZuley\nAalaya\nAaleah\nAalyah\nAaria\nAashna\nAby\nAdalynne\nAdeena\nAdelaine\nAdhara\nAdria\nAdriel\nAishani\nAleiyah\nAlekhya\nAlexah\nAlexandrea\nAlicen\nAlik\nAlika\nAlix\nAlizee\nAlliana\nAllyana\nAlvina\nAlyce\nAlydia\nAmada\nAmal\nAmbrielle\nAmeliah\nAmilya\nAmorette\nAmorie\nAmreen\nAmrita\nAmyra\nAnahit\nAnahita\nAnahy\nAnalayah\nAnalucia\nAnasofia\nAndreah\nAndrina\nAnely\nAnett\nAngeleen\nAngelin\nAngelmarie\nAnh\nAniston\nAniyla\nAnjelica\nAnora\nAnvika\nAnwita\nAnyla\nArayah\nArgelia\nAries\nArisa\nArizbeth\nArlin\nArna\nArpi\nArriana\nAryah\nAryannah\nAryel\nAryn\nAseel\nAsher\nAshna\nAsmi\nAtalia\nAtiana\nAtziry\nAubreyana\nAudry\nAugusta\nAusten\nAvaline\nAvina\nAyala\nAylani\nAysia\nAzaliah\nAzayla\nBaileigh\nBayleigh\nBea\nBellamarie\nBellamy\nBenita\nBerkley\nBeryl\nBetzaida\nBibiana\nBobbi\nBraylynn\nBreana\nBreann\nBreeanna\nBrelynn\nBrigid\nBrilee\nBronwyn\nBrook\nBryleigh\nCaidence\nCailynn\nCalina\nCalli\nCamilah\nCasandra\nCassadee\nCatelynn\nCathaleya\nCelestina\nCelestine\nChantel\nChantelle\nCharm\nCharmaine\nChelsy\nChrissy\nCloe\nCori\nCorinna\nCorra\nCorrine\nCristiana\nCrosby\nCruz\nCyrene\nDaelyn\nDailynn\nDaira\nDakoda\nDalina\nDalyla\nDamiyah\nDanay\nDanely\nDanilynn\nDarely\nDarlah\nDayleen\nDaylin\nDayra\nDaysi\nDecklyn\nDeeksha\nDeena\nDeleyza\nDelina\nDelta\nDelyla\nDemiana\nDempsey\nDesi\nDestinie\nDevany\nDevynn\nDilynn\nDream\nDunya\nDyanna\nEbony\nEdelyn\nEdna\nEesha\nEevee\nEira\nElara\nEldana\nEleena\nElisabet\nEllaina\nEllamae\nEllarose\nEly\nElza\nEmaan\nEmalie\nEmalynn\nEmarie\nEmberly\nEmiley\nEmmagrace\nEmmaly\nEmmersyn\nEmmylou\nEmoni\nErabella\nErianna\nEsmee\nEudora\nEvalin\nEvamarie\nEvana\nEvanie\nEvanna\nEveleen\nEvelynne\nFay\nFia\nFranchesca\nFreedom\nGalia\nGalina\nGenavie\nGenesys\nGenevy\nGladis\nGohar\nGracy\nGray\nGraycen\nGurjot\nGursirat\nHadassa\nHadlee\nHadleigh\nHalley\nHareem\nHarleyquinn\nHarmoni\nHarveen\nHasini\nHayleigh\nHedy\nHendrix\nHenna\nHera\nHiyab\nHusna\nIanna\nIcey\nIllyana\nImaan\nIqra\nIrena\nIsidora\nIsolde\nIsra\nItzia\nIyanah\nIza\nIzabela\nIzzy\nJaanvi\nJaclynn\nJadyn\nJaela\nJaelene\nJailah\nJalaya\nJalyssa\nJamiah\nJanaya\nJannely\nJarely\nJaretzy\nJasmeen\nJasper\nJatziry\nJayce\nJaycie\nJaydalynn\nJaylean\nJaylynne\nJazel\nJazlynne\nJazzlene\nJeimy\nJena\nJennavie\nJerusalem\nJewels\nJeylin\nJireh\nJodi\nJody\nJohannah\nJoline\nJolynn\nJordana\nJosette\nJovanna\nJoyanna\nJulian\nJulienne\nJuliett\nKaelin\nKaiah\nKailin\nKaiulani\nKaiyah\nKalila\nKalista\nKaliyanei\nKalliope\nKamora\nKamrynn\nKamya\nKana\nKareena\nKarolynn\nKassidi\nKattleya\nKayana\nKayleena\nKaylonnie\nKeagan\nKeana\nKeanna\nKeilly\nKeilyn\nKeniyah\nKennadie\nKetzaly\nKeyra\nKezia\nKhalessi\nKhiara\nKhylie\nKiani\nKimi\nKinzley\nKitzia\nKiyah\nKodi\nKrishna\nKrysten\nKyli\nKynlee\nLaina\nLaine\nLaiyah\nLakshmi\nLandry\nLandyn\nLaniah\nLeeann\nLeelah\nLeiana\nLeonna\nLiliya\nLindsy\nLinette\nLisseth\nLiyana\nLizzie\nLoreal\nLorely\nLovella\nLuana\nLunabella\nLuzmaria\nMackenna\nMadai\nMaddalyn\nMaddyn\nMadelynne\nMadisson\nMaelyn\nMaha\nMahalia\nMahathi\nMahnoor\nMaila\nMajesty\nMalaika\nMalaina\nMalana\nMalayna\nMali\nManvi\nMarelyn\nMariaguadalupe\nMaribell\nMaricarmen\nMarielena\nMaris\nMariya\nMarvel\nMasyn\nMathilda\nMattea\nMeara\nMerritt\nMeryl\nMeyah\nMiaa\nMiarose\nMichell\nMihika\nMiia\nMikah\nMiki\nMinna\nMiral\nMiroslava\nMishka\nMonzerrat\nMoxie\nMuriel\nMykayla\nNabila\nNahlia\nNaleah\nNandini\nNaomie\nNaraly\nNataliya\nNatalyn\nNathali\nNavreet\nNayah\nNevaeha\nNickole\nNisa\nNitya\nNoella\nNoely\nNori\nNuvia\nNyree\nNyssa\nOctavia\nOdalis\nOdyssey\nOlina\nOra\nOsiris\nPaisleigh\nParisa\nPaxton\nPrajna\nPreet\nPuneet\nQuetzal\nQuetzali\nRaeann\nRainbow\nRaniya\nRavneet\nRayan\nRaylee\nRebel\nRenae\nRenatta\nReva\nRhiley\nRhylie\nRidhi\nRidley\nRielle\nRithika\nRitika\nRiva\nRochelle\nRogue\nRonnie\nRori\nRoselie\nRoslynn\nRowena\nRoxie\nRoyale\nRuthie\nRylei\nRyley\nSade\nSafiya\nSaina\nSamhitha\nSamiya\nSammie\nSamone\nSaniah\nSarahy\nSarayah\nSarena\nSaria\nSavreen\nSayla\nSayler\nSeanna\nSemira\nSetayesh\nShaniya\nShannel\nSharanya\nSharlene\nShruti\nSiah\nSiana\nSimrat\nSiri\nSloka\nSoledad\nSolei\nSophiagrace\nSophiamarie\nSrinidhi\nStarr\nStephania\nStevi\nSunday\nSurina\nSuzie\nSvetlana\nSwayze\nTahiry\nTaleah\nTaliya\nTaylen\nTaylin\nTaylynn\nTeddy\nTenaya\nTenzin\nTeresita\nThania\nThelma\nTierra\nTirzah\nTora\nTracey\nTru\nTRUE\nTylee\nTylie\nUlyana\nVaani\nVasilisa\nVenecia\nVidel\nVita\nViviann\nVy\nWinona\nWisdom\nWynn\nXia\nXitlalli\nXylia\nYalitza\nYancy\nYaritzi\nYeilin\nYeimi\nYelitza\nYeva\nYihan\nYilia\nYoanna\nYohanna\nYuriana\nYuritzy\nYusra\nZamira\nZamora\nZanayah\nZareena\nZena\nZenobia\nZuly\nZuriel\nZyra\nJohn\nWilliam\nJames\nRobert\nGeorge\nFrank\nJoseph\nCharles\nEdward\nJack\nRichard\nRaymond\nAlbert\nHarold\nHenry\nLouis\nWalter\nArthur\nThomas\nHarry\nJoe\nPaul\nErnest\nFred\nDonald\nClarence\nManuel\nFrancis\nAlfred\nRalph\nCarl\nRoy\nLawrence\nAnthony\nEugene\nHoward\nKenneth\nElmer\nAndrew\nTony\nDavid\nEarl\nLeonard\nMelvin\nVictor\nRay\nAntonio\nEdwin\nJose\nSamuel\nGlenn\nStanley\nClifford\nFrederick\nNorman\nEverett\nHerbert\nLee\nLloyd\nMichael\nClyde\nPatrick\nPeter\nPhilip\nDaniel\nJesus\nLeon\nLewis\nMilton\nSam\nTheodore\nBernard\nBert\nCecil\nChester\nGene\nHerman\nLeo\nLeroy\nPhillip\nVernon\nWilbur\nBill\nGilbert\nGordon\nMike\nAllen\nBen\nGerald\nHarvey\nJuan\nLester\nRonald\nTed\nCarlos\nJerry\nLeslie\nMartin\nMaurice\nVincent\nAlvin\nAngelo\nAugust\nBob\nDon\nElwood\nLaurence\nMatthew\nMorris\nNick\nPedro\nSteve\nWayne\nAlex\nBenjamin\nEddie\nFloyd\nFranklin\nGuadalupe\nLeland\nMario\nMarion\nMarshall\nNathan\nOliver\nPete\nRussell\nStephen\nTom\nVirgil\nJohn\nWilliam\nRobert\nGeorge\nJames\nCharles\nFrank\nJoseph\nJack\nEdward\nHarry\nThomas\nArthur\nRaymond\nPaul\nAlbert\nRichard\nFred\nLouis\nHarold\nHenry\nJoe\nWalter\nRalph\nAlfred\nLawrence\nCarl\nDonald\nKenneth\nRoy\nStanley\nClarence\nErnest\nManuel\nFrancis\nLeo\nEarl\nEdwin\nDavid\nEugene\nVictor\nAndrew\nDaniel\nElmer\nHoward\nLloyd\nPeter\nRay\nHerbert\nJose\nLeonard\nPhilip\nSam\nAlvin\nFrederick\nNorman\nSamuel\nVernon\nAnthony\nFloyd\nJuan\nLewis\nMilton\nTony\nGerald\nHerman\nLeslie\nMelvin\nTheodore\nEverett\nMarshall\nClifford\nClyde\nGilbert\nMartin\nMichael\nNick\nAntonio\nChester\nGene\nGordon\nLee\nTom\nArnold\nBen\nBernard\nEddie\nGlenn\nLeroy\nMike\nPatrick\nPete\nStephen\nWarren\nWesley\nAlex\nAllen\nBenjamin\nCharlie\nDon\nEdgar\nLaurence\nLeland\nMarion\nNicholas\nRussell\nSteve\nVincent\nWilbur\nAlexander\nDouglas\nEmil\nEmmett\nHugh\nIrvin\nJesus\nLeon\nLester\nMario\nMaurice\nMorris\nOtto\nPedro\nWayne\nAl\nAlan\nAlfonso\nBennie\nBruce\nEmilio\nFelix\nHomer\nJerry\nLouie\nMarvin\nMerle\nOliver\nPhillip\nRoger\nRonald\nRudolph\nWillis\nJohn\nWilliam\nRobert\nGeorge\nJames\nFrank\nCharles\nJoseph\nEdward\nJack\nRichard\nAlbert\nHarold\nWalter\nThomas\nDonald\nRaymond\nHenry\nFred\nPaul\nHarry\nJoe\nArthur\nKenneth\nAlfred\nLouis\nErnest\nHoward\nRalph\nCarl\nClarence\nDavid\nEdwin\nLawrence\nManuel\nHerbert\nStanley\nEarl\nFrancis\nEugene\nPeter\nRoy\nPhilip\nLeonard\nRay\nTheodore\nNorman\nAnthony\nFrederick\nDaniel\nGlenn\nLeo\nFloyd\nLloyd\nVernon\nVictor\nWilbur\nElmer\nLeslie\nMelvin\nTony\nAndrew\nClyde\nGordon\nRussell\nLester\nSamuel\nHerman\nJose\nMartin\nMichael\nClifford\nGilbert\nLewis\nMaurice\nChester\nLaurence\nMilton\nTom\nVincent\nLeroy\nSam\nWillard\nBenjamin\nBernard\nAlvin\nEverett\nGerald\nMarion\nMike\nPhillip\nRudolph\nSidney\nWarren\nAntonio\nClaude\nLee\nLeon\nPete\nWesley\nAlfonso\nEdgar\nJuan\nWoodrow\nAlexander\nNick\nWallace\nWayne\nCecil\nFranklin\nJesus\nMax\nWilfred\nAlex\nHomer\nHugh\nJimmie\nRoland\nStephen\nAdolph\nAllen\nBill\nByron\nEddie\nJesse\nMarvin\nMasao\nMorris\nOscar\nReginald\nRoger\nSteve\nAngelo\nAugust\nBen\nBruce\nDan\nDouglas\nHubert\nLoren\nOliver\nPedro\nTed\nWillie\nAllan\nArchie\nBert\nDon\nDudley\nEdmond\nElwood\nGlen\nHarvey\nHorace\nKarl\nKeith\nLouie\nLowell\nMario\nMark\nMiguel\nNicholas\nArnold\nDale\nDelbert\nEdmund\nElbert\nFernando\nIvan\nJay\nJerome\nJess\nMarshall\nMervin\nRolland\nSteven\nWilbert\nBurton\nCarroll\nClayton\nDave\nEarle\nElmo\nElvin\nFelix\nFrancisco\nIrving\nJacob\nJerry\nJulius\nLeland\nMalcolm\nOrville\nRoss\nWard\nWillis\nAlan\nAubrey\nAustin\nCharlie\nChris\nDean\nDwight\nEllis\nEllsworth\nEmile\nForrest\nFredrick\nGene\nGuy\nHarley\nLarry\nLyle\nMelville\nMerle\nNathan\nOrval\nPercy\nRandolph\nRoscoe\nRuben\nSydney\nVirgil\nWilson\nAlden\nArmand\nBeverly\nBob\nCarlos\nClifton\nClinton\nCurtis\nDarrell\nDelmar\nDominic\nEldon\nEmerson\nErwin\nFrederic\nGuido\nIrwin\nJim\nJulian\nLuis\nLynn\nMatthew\nMorton\nMyron\nNeil\nNoel\nOwen\nPatrick\nRicardo\nSalvatore\nVerne\nJohn\nWilliam\nRobert\nGeorge\nFrank\nJames\nCharles\nEdward\nJoseph\nJack\nRichard\nArthur\nThomas\nWalter\nAlbert\nHarry\nHarold\nFred\nRaymond\nHenry\nPaul\nDonald\nRalph\nCarl\nJoe\nLouis\nHoward\nAlfred\nKenneth\nLawrence\nRoy\nFrancis\nEarl\nErnest\nEugene\nClarence\nDavid\nHerbert\nManuel\nAnthony\nLloyd\nEdwin\nNorman\nStanley\nDaniel\nRay\nVincent\nPeter\nElmer\nFrederick\nLeonard\nTheodore\nSamuel\nAlvin\nGordon\nGlenn\nLeo\nPhilip\nTony\nLester\nVernon\nAndrew\nChester\nClifford\nMilton\nRussell\nMelvin\nGerald\nLeslie\nVictor\nWarren\nSam\nFloyd\nLeland\nMarvin\nHerman\nArnold\nEverett\nLee\nMaurice\nMichael\nWesley\nAngelo\nBen\nEdgar\nMartin\nMike\nPete\nRudolph\nBert\nJose\nLeroy\nCecil\nClyde\nBernard\nBruce\nHarvey\nLewis\nPatrick\nMarion\nRoland\nWilbur\nAlexander\nHugh\nJesse\nMorris\nDouglas\nKarl\nLaurence\nSidney\nAllen\nBenjamin\nIrving\nNick\nWallace\nAntonio\nClaude\nDon\nEddie\nFranklin\nLeon\nWoodrow\nArchie\nFelix\nMax\nVirgil\nAugust\nGilbert\nGlen\nJerry\nKazuo\nMarshall\nOscar\nRoger\nSteve\nTom\nAdolph\nDan\nHorace\nJulius\nLouie\nNathan\nRonald\nToshio\nWillard\nDale\nEmil\nJacob\nJesus\nJuan\nLowell\nMario\nMark\nNicholas\nOliver\nRex\nWayne\nWilfred\nAlex\nByron\nClifton\nCyril\nForrest\nGus\nHiroshi\nHomer\nHubert\nIrvin\nJean\nJerome\nOtto\nPhillip\nRoss\nStuart\nWillie\nWillis\nWilson\nAllan\nBill\nClinton\nDominic\nDudley\nEarle\nEdmund\nGene\nGuy\nJay\nJimmie\nJohnnie\nJulian\nYoshio\nAlfonso\nCharlie\nChris\nEllis\nElwood\nHideo\nIsamu\nMasao\nMerle\nNoel\nReginald\nSalvatore\nStephen\nTakeo\nTed\nAldo\nAntone\nAugustine\nBruno\nBurton\nCalvin\nCarlos\nDave\nDick\nElbert\nEmery\nFerdinand\nFrancisco\nIvan\nJim\nJoel\nLarry\nLuis\nLyle\nMyron\nPedro\nRamon\nWilbert\nAlan\nAngel\nArmand\nClair\nCurtis\nDean\nDennis\nEllsworth\nElmo\nFrederic\nFredrick\nGeoffrey\nJess\nJoaquin\nJohnny\nLynn\nMasami\nMervin\nAdrian\nAlton\nAubrey\nAurelio\nAustin\nBob\nCarlton\nConrad\nDarrell\nDonn\nEldon\nElton\nElvin\nEmile\nEmmett\nForest\nLoren\nMalcolm\nMasaji\nMatthew\nMerrill\nMervyn\nNelson\nNoboru\nOrville\nRafael\nRoderick\nRodney\nSalvador\nTakashi\nWard\nWendell\nWinston\nJohn\nWilliam\nRobert\nGeorge\nJames\nFrank\nCharles\nEdward\nJoseph\nJack\nRichard\nAlbert\nWalter\nHenry\nThomas\nDonald\nFred\nHarold\nRaymond\nPaul\nHarry\nArthur\nLouis\nJoe\nKenneth\nDavid\nAlfred\nRalph\nErnest\nLawrence\nRoy\nManuel\nHoward\nStanley\nCarl\nFrancis\nEugene\nClarence\nEarl\nElmer\nAnthony\nEdwin\nFrederick\nAndrew\nHerbert\nTony\nNorman\nRussell\nLeonard\nRay\nLloyd\nPeter\nVictor\nGordon\nLeo\nPhilip\nMartin\nMelvin\nMilton\nVincent\nDaniel\nFloyd\nTheodore\nEverett\nLester\nLeroy\nClifford\nLeslie\nSamuel\nWillard\nGlenn\nWarren\nBernard\nMichael\nHerman\nChester\nGerald\nJose\nGilbert\nVernon\nAlvin\nPete\nBenjamin\nSam\nAngelo\nClaude\nClyde\nDon\nWallace\nTom\nWilbur\nHarvey\nLee\nMike\nArnold\nLeland\nLewis\nOliver\nAlexander\nMarion\nWesley\nEdgar\nHomer\nAllen\nAntonio\nEmil\nLouie\nMarvin\nNick\nBen\nMario\nOscar\nTed\nArchie\nBert\nHugh\nJulius\nLaurence\nPhillip\nSidney\nStephen\nDouglas\nEddie\nEdmund\nJerome\nMasao\nNicholas\nAlan\nAlex\nCecil\nJohnnie\nLeon\nRudolph\nBill\nJesse\nMyron\nRamon\nByron\nClinton\nDelbert\nGene\nLarry\nMorris\nPatrick\nPedro\nRonald\nWayne\nWillie\nBob\nBruce\nHorace\nJuan\nLuis\nMalcolm\nMax\nRoger\nVirgil\nBertram\nCalvin\nFranklin\nGlen\nIrving\nMaurice\nNathan\nToshio\nChris\nCurtis\nDominic\nEmmett\nJulian\nKarl\nMark\nBruno\nDan\nHubert\nJesus\nRoland\nSalvador\nWillis\nWoodrow\nYoshio\nAdolph\nAllan\nCarroll\nClifton\nDale\nEllis\nEllsworth\nErwin\nFrancisco\nHideo\nJimmie\nKazuo\nLowell\nSteve\nAustin\nCarlos\nDick\nElden\nEldon\nElvin\nElwood\nGuadalupe\nGus\nGuy\nHiroshi\nIrvin\nJackson\nJess\nMervin\nOtto\nStuart\nVerne\nWendell\nAlton\nAntone\nAugustine\nBeverly\nClayton\nCornelius\nDave\nEarle\nFerdinand\nFrederic\nGuido\nHugo\nIvan\nJerry\nLyle\nOrville\nReginald\nSydney\nTadashi\nWard\nWilfred\nAlva\nAugust\nBennie\nBurton\nCarlton\nDarrell\nDuane\nElbert\nElmo\nEric\nErvin\nFernando\nGino\nHarrison\nIrwin\nJulio\nLionel\nLuther\nMarshall\nMasaru\nNelson\nPerry\nRomeo\nRoss\nSalvatore\nSteven\nTakeo\nAaron\nAkira\nAlden\nAlphonse\nBasil\nCharlie\nClark\nClement\nDean\nEmery\nEmile\nFredrick\nHarlan\nJacob\nJean\nJimmy\nJoaquin\nJustin\nKermit\nKirk\nKiyoshi\nLincoln\nMasami\nMerle\nMerrill\nMiguel\nMonroe\nOwen\nReno\nRinaldo\nStewart\nTommy\nTsutomu\nWilson\nAbraham\nAdrian\nAl\nAldo\nAlfonso\nAmos\nArden\nBoyd\nChas\nConrad\nDante\nDomingo\nEdmond\nElton\nFelix\nGregory\nGrover\nHarley\nIsamu\nJay\nJim\nJohnny\nKeith\nKenji\nLaverne\nLorenzo\nLupe\nLyman\nLynn\nMarcus\nMasato\nMasayoshi\nMatthew\nMervyn\nMillard\nMinoru\nMitchell\nNeil\nReuben\nRex\nSherman\nShozo\nTorao\nVan\nWaldo\nWilbert\nJohn\nWilliam\nRobert\nGeorge\nJames\nFrank\nCharles\nJoseph\nEdward\nJack\nAlbert\nRichard\nHarold\nArthur\nWalter\nThomas\nDonald\nHenry\nJoe\nPaul\nFred\nHarry\nRaymond\nLouis\nRalph\nErnest\nManuel\nKenneth\nDavid\nAlfred\nRoy\nCarl\nLawrence\nHoward\nFrancis\nPeter\nEugene\nStanley\nHerbert\nEdwin\nMelvin\nClarence\nElmer\nTony\nEarl\nNorman\nAnthony\nLloyd\nLeo\nLeonard\nVictor\nAndrew\nPhilip\nDaniel\nFrederick\nTheodore\nVernon\nRay\nWillard\nVincent\nChester\nRussell\nAlvin\nSamuel\nBernard\nClifford\nMartin\nGordon\nSam\nEverett\nLeroy\nLester\nMilton\nWarren\nGilbert\nGlenn\nLewis\nTom\nMichael\nBenjamin\nHerman\nJose\nLeslie\nCecil\nGerald\nFloyd\nMarvin\nBen\nDouglas\nMarion\nAllen\nWayne\nAntonio\nLeland\nMike\nArnold\nHarvey\nLee\nLeon\nWilbur\nClyde\nEdgar\nMaurice\nWallace\nAlexander\nAngelo\nAugust\nDon\nMario\nSidney\nLaurence\nPete\nWesley\nLouie\nNick\nOliver\nRoger\nBill\nHiroshi\nHomer\nJulius\nGene\nHorace\nHugh\nKarl\nMorris\nNicholas\nPatrick\nBert\nBruce\nJesse\nAlex\nIrving\nRoland\nStephen\nGlen\nGuido\nMax\nPhillip\nWilfred\nWillis\nBruno\nClinton\nEmil\nIvan\nLoren\nAllan\nDan\nElbert\nEllis\nFranklin\nHubert\nWillie\nYoshio\nDale\nJohnnie\nMinoru\nAdolph\nArchie\nByron\nJohnny\nMasao\nWoodrow\nAlan\nBob\nCarlos\nEddie\nFrancisco\nKazuo\nKeith\nMark\nMerle\nRonald\nSalvador\nTed\nCharlie\nDelbert\nIrvin\nJulian\nLowell\nMalcolm\nPedro\nKiyoshi\nLarry\nMarshall\nMiguel\nMyron\nPerry\nRamon\nWendell\nAntone\nClaude\nClayton\nConrad\nCurtis\nDarrell\nEarle\nEdmund\nElmo\nFelix\nIra\nIrwin\nJerry\nJess\nJim\nLyle\nNeil\nOscar\nOtto\nRoss\nSteve\nTadashi\nBertram\nCarroll\nHugo\nJean\nJerome\nTommy\nToshio\nVirgil\nAlden\nAldo\nDuane\nEdmond\nElvin\nElwood\nJacob\nJesus\nMervyn\nNathan\nOrville\nRudolph\nBurton\nCalvin\nCarlton\nDave\nDean\nDominic\nElton\nEmmett\nEric\nEvan\nForrest\nGabriel\nGuy\nJimmy\nJoaquin\nLuis\nMatthew\nMervin\nPercy\nReginald\nShigeru\nBarney\nBeverly\nClark\nClifton\nElwin\nEmilio\nErvin\nGrant\nGus\nHarley\nIchiro\nJackson\nJuan\nJules\nLuther\nMitchell\nMitsuo\nNed\nOwen\nRex\nSalvatore\nSherman\nSilvio\nSterling\nSteven\nTakashi\nWilbert\nArmand\nArmando\nAustin\nChris\nCornelius\nDante\nFrederic\nGino\nHideo\nJay\nLino\nMerrill\nOrval\nPhil\nRafael\nRoderick\nRowland\nRudy\nShirley\nSimon\nTakeshi\nWilson\nYukio\nAaron\nAdrian\nAlfonso\nAlfredo\nAugustine\nBennie\nBenny\nBilly\nBud\nChristopher\nCyril\nDee\nDelmar\nDennis\nDick\nEldon\nEmile\nEnrique\nFerdinand\nFredric\nFredrick\nGuadalupe\nHaig\nHal\nMathew\nMatt\nMiles\nNoboru\nNobuo\nNoel\nOtis\nReno\nTimothy\nVern\nWaldo\nWalton\nWard\nAkira\nAl\nAmerico\nAnton\nCharley\nClement\nDwight\nEd\nElio\nEllsworth\nElwyn\nEmerson\nEmery\nErwin\nGregory\nHarrison\nIsamu\nIsao\nJasper\nJessie\nJoel\nKermit\nMary\nMasaru\nMilo\nMorgan\nRene\nRuben\nShigeo\nSpencer\nStanton\nStewart\nSusumu\nVerne\nWright\nJohn\nRobert\nWilliam\nGeorge\nJames\nCharles\nFrank\nJoseph\nJack\nEdward\nRichard\nDonald\nAlbert\nArthur\nWalter\nHenry\nPaul\nHarold\nRaymond\nThomas\nJoe\nHarry\nFred\nRalph\nErnest\nLouis\nManuel\nDavid\nKenneth\nAlfred\nCarl\nRoy\nLawrence\nFrancis\nClarence\nHoward\nEugene\nNorman\nEarl\nStanley\nEdwin\nElmer\nLloyd\nHerbert\nPeter\nDaniel\nLeonard\nPhilip\nTony\nLeo\nVernon\nFrederick\nVictor\nMelvin\nAndrew\nChester\nTheodore\nSam\nRussell\nAnthony\nGerald\nClifford\nSamuel\nWarren\nGlenn\nRay\nJose\nBernard\nMilton\nAlvin\nMartin\nPete\nLester\nClyde\nGordon\nLeslie\nLewis\nMarvin\nMike\nVincent\nEdgar\nBen\nBill\nWilbur\nFloyd\nLeroy\nWillard\nAllen\nHugh\nDon\nNicholas\nTom\nArnold\nEverett\nHerman\nMichael\nWoodrow\nAlexander\nEddie\nPhillip\nAugust\nBenjamin\nClaude\nDouglas\nLouie\nAngelo\nAntonio\nForrest\nOscar\nSalvador\nCecil\nEdmund\nHarvey\nLee\nLeon\nOliver\nWesley\nDan\nHiroshi\nNick\nBruce\nGlen\nJim\nLeland\nMaurice\nWallace\nAllan\nMario\nPatrick\nStephen\nWayne\nYoshio\nGilbert\nJesse\nMarion\nRudolph\nJerry\nMalcolm\nAlan\nBert\nAdolph\nAlfonso\nBob\nGene\nIrving\nJesus\nLaurence\nMasao\nAlex\nFranklin\nHubert\nJohnnie\nJuan\nKarl\nRoger\nWillis\nElwood\nRonald\nVirgil\nCalvin\nCyril\nDelbert\nFelix\nHomer\nJess\nJulian\nMax\nTed\nClinton\nDale\nEllis\nKiyoshi\nMarshall\nShigeo\nSidney\nSteve\nByron\nElbert\nErwin\nGuy\nJay\nRamon\nWilfred\nBurton\nEmil\nIvan\nJulius\nMerle\nOtto\nRoland\nAldo\nAngel\nArchie\nCarlos\nClayton\nDave\nGus\nMatthew\nWillie\nCharlie\nDante\nDean\nDick\nFredrick\nHorace\nHugo\nIrvin\nJulio\nKeith\nLowell\nLuis\nMorris\nMyron\nSydney\nTatsuo\nWilbert\nWilson\nAntone\nBruno\nCarroll\nClark\nDominic\nEarle\nHideo\nJimmie\nMasaru\nRex\nWendell\nAdrian\nAttilio\nBennie\nConrad\nDario\nDarrell\nGuido\nHarley\nJerome\nLoren\nLorin\nLyman\nNeil\nNoel\nPerry\nRoss\nShigeru\nAlden\nAlfredo\nAustin\nChris\nDudley\nElmo\nElvin\nEmery\nEmmett\nFrancisco\nJacob\nLarry\nMark\nMerton\nMinoru\nMurray\nNoboru\nOwen\nReginald\nTimothy\nVerne\nAkira\nAl\nBilly\nElden\nEli\nEmilio\nEvan\nFerdinand\nFrederic\nGabriel\nGrant\nGrover\nIsamu\nJean\nJoaquin\nJules\nKatsumi\nLupe\nLuther\nMarcus\nMervyn\nNathan\nNeal\nNorris\nPedro\nRoscoe\nToshio\nAlton\nAnton\nArmando\nAugustine\nDana\nEldon\nJohnny\nLincoln\nPercy\nRefugio\nRodney\nRolland\nRollin\nRuben\nShirley\nSilvio\nSterling\nTakashi\nVern\nYutaka\nAmerico\nBertram\nBoyd\nCarlton\nChristopher\nClement\nClifton\nCurtis\nDwight\nEldred\nEllsworth\nElton\nEmerson\nEric\nFernando\nGail\nGregory\nGustave\nHaig\nHarrison\nJake\nJimmy\nJustin\nKazuo\nMargarito\nMathew\nMervin\nMiguel\nNathaniel\nNelson\nOrville\nOtis\nPhil\nRaul\nRufus\nSalvatore\nSheldon\nSherman\nStewart\nTadao\nTommy\nTrinidad\nAaron\nAbraham\nAdolfo\nAmos\nBernardo\nBeverly\nCarleton\nClaud\nDarwin\nDennis\nDesmond\nDino\nEarnest\nEnrique\nFredric\nGaylord\nGuadalupe\nHal\nIchiro\nIrwin\nIsaac\nJackson\nJoel\nKenichi\nKenji\nLou\nLyle\nLynn\nMack\nMiles\nNello\nNorbert\nNorton\nOrval\nPat\nPreston\nRene\nReno\nReuben\nRomeo\nSantos\nSpencer\nSteven\nThornton\nTsutomu\nVaughn\nWard\nWinfield\nJohn\nRobert\nWilliam\nGeorge\nJames\nFrank\nCharles\nRichard\nEdward\nJoseph\nJack\nDonald\nWalter\nAlbert\nJoe\nThomas\nArthur\nHarold\nPaul\nRaymond\nHenry\nHarry\nErnest\nFred\nLouis\nDavid\nKenneth\nManuel\nRalph\nRoy\nAlfred\nLawrence\nHoward\nFrancis\nClarence\nNorman\nEarl\nCarl\nEdwin\nHerbert\nStanley\nEugene\nPeter\nLloyd\nTony\nAnthony\nDaniel\nFrederick\nElmer\nClifford\nPhilip\nRay\nLeonard\nLeo\nMelvin\nAndrew\nVictor\nGordon\nLester\nMilton\nRussell\nChester\nSam\nVernon\nVincent\nGerald\nPete\nGlenn\nWarren\nLeroy\nTheodore\nDouglas\nEverett\nLeslie\nMartin\nJose\nLeland\nClyde\nWillard\nTom\nAlvin\nBill\nBernard\nLee\nWesley\nBenjamin\nMike\nFloyd\nBen\nGilbert\nHarvey\nMarvin\nWilbur\nDon\nAllen\nHomer\nJesse\nPhillip\nAntonio\nHerman\nLeon\nMichael\nWayne\nHugh\nMaurice\nNick\nSamuel\nAlexander\nEdgar\nBruce\nEmil\nLewis\nRoger\nSalvador\nAngelo\nBob\nEddie\nGene\nJesus\nLouie\nRudolph\nMax\nOscar\nStephen\nAllan\nJay\nJerry\nJim\nTed\nHiroshi\nSteve\nWallace\nWoodrow\nAlan\nDan\nGlen\nIrving\nArnold\nBert\nCecil\nElwood\nFranklin\nJulian\nMario\nMorris\nPatrick\nJohnnie\nJohnny\nMark\nPedro\nRoland\nCarlos\nClaude\nKarl\nMarion\nAlfonso\nHorace\nJess\nMasao\nMinoru\nOliver\nWilfred\nAlex\nEdmund\nFelix\nForrest\nJuan\nLuis\nMarshall\nRonald\nShigeru\nAldo\nEldon\nGus\nHubert\nLaurence\nOtto\nVirgil\nWillis\nAdolph\nDudley\nFredrick\nHideo\nKazuo\nKiyoshi\nMerle\nNicholas\nYoshio\nArchie\nBruno\nClinton\nDelbert\nJerome\nSydney\nCalvin\nCarroll\nDomingo\nDominic\nElmo\nFernando\nFrancisco\nIgnacio\nIvan\nLarry\nMyron\nOwen\nClayton\nClifton\nDean\nDick\nElbert\nGrant\nGuy\nIsamu\nLoren\nMasami\nSidney\nStuart\nTakashi\nBertram\nCharlie\nEnrique\nErwin\nHarley\nIra\nIrvin\nMalcolm\nMatthew\nTimothy\nToshio\nWendell\nWillie\nAntone\nCurtis\nEdmond\nJean\nJimmie\nJulius\nLionel\nLowell\nMasaru\nOrville\nRamon\nRodney\nRoss\nSherman\nTadashi\nAaron\nBud\nBurton\nByron\nCarlo\nDale\nIchiro\nIrwin\nJimmy\nJoaquin\nJulio\nLaverne\nMiguel\nMitsuo\nAugust\nAustin\nCarlton\nClement\nEarle\nElton\nElvin\nEmmett\nGabriel\nLorenzo\nLyle\nLynn\nMasato\nNelson\nPorfirio\nRudy\nAlonzo\nAngel\nBenny\nBilly\nConrad\nDante\nDave\nEllsworth\nGrover\nGuido\nHarrison\nLuther\nMiles\nNoboru\nOtis\nRafael\nReginald\nRoyal\nSatoru\nShigeo\nSteven\nTadao\nVerne\nYutaka\nAbraham\nAdrian\nAgustin\nAkira\nAlden\nAugustine\nBarney\nDwight\nEric\nJacob\nKaoru\nKeith\nMerrill\nMervin\nNathan\nPablo\nRoderick\nRodolfo\nRufus\nSalvatore\nSebastian\nSilvio\nSpencer\nTakao\nTomas\nToru\nVance\nWilbert\nWilson\nAndy\nBennie\nEd\nEldred\nElias\nEmilio\nForest\nFrederic\nGail\nJackson\nJoesph\nKatsumi\nKazumi\nLyman\nMarcel\nMaynard\nMervyn\nMilford\nMilo\nNeal\nNeil\nOrrin\nPerry\nRaul\nReno\nRex\nReynold\nScott\nStanford\nTakeo\nToshiyuki\nTrinidad\nTsutomu\nVerner\nYukio\nAbel\nAl\nAlberto\nAlfredo\nAlphonse\nAubrey\nBernhard\nBradford\nCarmen\nCharley\nChauncey\nChris\nChristian\nCornelius\nDewey\nEllis\nElmore\nEmile\nEvan\nFederico\nGino\nGuadalupe\nHajime\nHal\nHarlan\nHarris\nHaruo\nHerschel\nJasper\nLincoln\nMarcus\nMary\nMasayuki\nMathew\nMerritt\nMillard\nNello\nNicolas\nNoel\nOrlando\nOrval\nPat\nRenato\nRene\nRoberto\nRoscoe\nRupert\nSaburo\nSantos\nShiro\nSusumu\nTruman\nWaldo\nWard\nRobert\nJohn\nWilliam\nGeorge\nJames\nFrank\nCharles\nEdward\nJack\nRichard\nJoseph\nDonald\nAlbert\nRaymond\nHarold\nHarry\nArthur\nWalter\nJoe\nThomas\nHenry\nPaul\nFred\nDavid\nManuel\nLouis\nErnest\nRalph\nKenneth\nHoward\nAlfred\nRoy\nEugene\nCarl\nStanley\nEarl\nFrancis\nVictor\nLawrence\nTony\nHerbert\nClarence\nNorman\nLloyd\nEdwin\nPeter\nAnthony\nDaniel\nElmer\nLeonard\nJose\nMelvin\nFrederick\nAndrew\nRussell\nPhilip\nClifford\nGerald\nRay\nWarren\nGlenn\nGordon\nLester\nChester\nLeo\nLeroy\nVernon\nMilton\nTom\nBernard\nTheodore\nVincent\nSamuel\nLeslie\nMartin\nSam\nClyde\nFloyd\nDouglas\nLewis\nAlvin\nDon\nPete\nBill\nBob\nJesus\nBruce\nPhillip\nWayne\nWilbur\nHarvey\nMike\nSidney\nHugh\nWesley\nWillard\nBen\nBenjamin\nNick\nWallace\nAlexander\nHerman\nAntonio\nMichael\nEverett\nJuan\nLeon\nMaurice\nOliver\nFranklin\nLeland\nMarvin\nSalvador\nWoodrow\nArnold\nBert\nEdgar\nAllen\nGilbert\nIrving\nLee\nCarlos\nEddie\nLouie\nGlen\nJim\nMasao\nClaude\nMarion\nRoger\nAllan\nAngelo\nCecil\nFelix\nJesse\nMario\nMorris\nWillis\nLaurence\nRamon\nAlan\nArchie\nEmil\nGene\nRudolph\nYoshio\nEdmund\nJimmie\nRoland\nVirgil\nCurtis\nHomer\nKazuo\nMax\nOscar\nTed\nCharlie\nDan\nDelbert\nJerry\nJess\nPedro\nDale\nLoren\nMerle\nNicholas\nRoss\nClinton\nFrancisco\nFredrick\nRonald\nSteve\nWillie\nMark\nWilson\nJohnny\nKiyoshi\nMervin\nMinoru\nPatrick\nWendell\nAkira\nAlex\nAugust\nAustin\nDave\nDick\nForrest\nJean\nStephen\nToshio\nAldo\nAntone\nEldon\nEmmett\nGuido\nHideo\nJerome\nJimmy\nMalcolm\nRafael\nCalvin\nClayton\nDomingo\nHiroshi\nIvan\nJohnnie\nJulius\nKarl\nLarry\nMiguel\nOrville\nPerry\nReginald\nShigeru\nAdolph\nBurton\nChris\nDennis\nDominic\nGuy\nHubert\nLyle\nMarshall\nSalvatore\nAlfonso\nArmando\nBertram\nBruno\nDean\nEdmond\nErwin\nIgnacio\nIrvin\nJulian\nLuis\nNeil\nAlfredo\nBennie\nCruz\nDarrell\nEarnest\nElbert\nHarrison\nHorace\nIsamu\nJay\nRodney\nBenny\nByron\nClifton\nDuane\nDudley\nEllis\nGus\nJulio\nKeith\nLorenzo\nMervyn\nOwen\nSherman\nStuart\nTrinidad\nAngel\nAugustine\nBilly\nClair\nClark\nEllsworth\nElwood\nFelipe\nGabriel\nIwao\nJiro\nLowell\nLupe\nMary\nMatthew\nMitchell\nMyron\nNathan\nNoboru\nOrval\nOtto\nRex\nTadashi\nVerne\nAlberto\nCarlo\nCyril\nEarle\nEric\nEvan\nGrover\nJoaquin\nLynn\nMoses\nNathaniel\nNeal\nPhil\nRodolfo\nRolland\nShigeo\nStewart\nWaldo\nWilfred\nYukio\nAaron\nAbe\nAbraham\nAl\nAnton\nAttilio\nAubrey\nBud\nCarlton\nCarroll\nCharley\nCraig\nDwight\nElmo\nElvin\nErnesto\nFernando\nFletcher\nFrederic\nGino\nGrant\nGregory\nHal\nIra\nJacob\nJake\nKenichi\nKenji\nLuther\nMarcus\nMasashi\nMasato\nMillard\nMitsuo\nNewton\nPershing\nRaul\nRoberto\nRomeo\nRudy\nSilvio\nSimon\nSusumu\nTakashi\nTakeshi\nValentine\nVern\nWilbert\nYasuo\nAbel\nAdolfo\nAlton\nAmerico\nArmand\nBasilio\nBenito\nChristopher\nDino\nEd\nEmile\nEmilio\nFidel\nFrankie\nGardner\nGary\nGregorio\nHarlan\nHarley\nItalo\nJackson\nKen\nLincoln\nLyman\nMack\nMasaharu\nMasami\nMasaru\nMerrill\nPablo\nPreston\nRefugio\nRene\nSaul\nShirley\nSydney\nTakeo\nTerry\nTomas\nTommy\nWard\nWilber\nWinston\nYoshiharu\nAndres\nAndy\nArden\nBarney\nBeverly\nBradford\nCaesar\nConrad\nDante\nDelmar\nElroy\nElton\nElwyn\nEnrique\nErvin\nGerard\nGiles\nHenri\nHugo\nIchiro\nIrwin\nIsao\nJules\nKaoru\nKent\nLaverne\nLino\nLionel\nLoyd\nMarcel\nMarcelino\nMarne\nMathew\nMelbourne\nNelson\nNicolas\nNobuo\nNoel\nOrrin\nPat\nReuben\nRoscoe\nRuben\nSantos\nSpencer\nSterling\nTimothy\nVance\nWeldon\nRobert\nJohn\nWilliam\nGeorge\nJames\nFrank\nCharles\nRichard\nJack\nEdward\nJoseph\nDonald\nRaymond\nJoe\nAlbert\nArthur\nHarold\nThomas\nWalter\nHarry\nPaul\nHenry\nFred\nDavid\nKenneth\nManuel\nRalph\nEugene\nRoy\nErnest\nAlfred\nLawrence\nLouis\nCarl\nStanley\nHoward\nNorman\nTony\nEarl\nElmer\nClarence\nEdwin\nFrancis\nHerbert\nMelvin\nLeonard\nPeter\nDaniel\nAnthony\nLloyd\nClifford\nJose\nRay\nVernon\nVictor\nLeo\nAndrew\nLeroy\nFrederick\nTheodore\nDouglas\nGlenn\nVincent\nGordon\nJesus\nMilton\nBenjamin\nRussell\nGilbert\nPhilip\nTom\nWarren\nFloyd\nLester\nBill\nDon\nClyde\nHarvey\nLee\nMartin\nMarvin\nMike\nSam\nChester\nGerald\nLeslie\nBernard\nMichael\nAntonio\nPete\nWallace\nWayne\nMaurice\nSalvador\nAlvin\nSamuel\nBruce\nJuan\nLeland\nPhillip\nHerman\nLouie\nNick\nBen\nLewis\nWillard\nLuis\nDick\nEverett\nWesley\nAngelo\nJohnny\nEddie\nOscar\nBob\nHugh\nOliver\nWilbur\nAlex\nDan\nAlan\nRoger\nSidney\nAllan\nFranklin\nMario\nRoland\nCecil\nEdgar\nJesse\nJim\nJimmie\nPedro\nAlexander\nBert\nGlen\nMax\nStephen\nArnold\nDale\nIrving\nLarry\nMarion\nTed\nAugust\nClaude\nLaurence\nLeon\nCarlos\nForrest\nJohnnie\nMarshall\nMiguel\nWillis\nAllen\nEmil\nFelix\nFrancisco\nHorace\nJulius\nMark\nPatrick\nHiroshi\nJerry\nJulian\nKeith\nKiyoshi\nCalvin\nGene\nHomer\nJess\nMasao\nMorris\nTommy\nVirgil\nArchie\nBilly\nElwood\nGuido\nKazuo\nMinoru\nMyron\nRamon\nYoshio\nClinton\nGuadalupe\nNathan\nRudolph\nWilfred\nDave\nGuy\nKarl\nLoren\nMalcolm\nRonald\nSteve\nWard\nWoodrow\nAugustine\nCurtis\nDean\nEdmund\nOwen\nToshio\nWilson\nAdolph\nClayton\nHideo\nJay\nJimmy\nLupe\nLyle\nMerle\nSteven\nWillie\nBennie\nCarroll\nCharlie\nClifton\nDominic\nEdmond\nJacob\nJerome\nLynn\nTakashi\nBurton\nClark\nCruz\nCyril\nDelbert\nIvan\nJulio\nLowell\nOtto\nPerry\nRafael\nRodney\nRuben\nTakeo\nAkira\nAlberto\nDomingo\nEldon\nEmmett\nFredrick\nGino\nMerrill\nNeil\nRefugio\nRoss\nTrinidad\nDudley\nEllis\nEric\nMervin\nNoboru\nOrville\nRoberto\nShigeru\nTadao\nAlfonso\nArmand\nArmando\nCarmen\nConrad\nElton\nEnrique\nHaruo\nHubert\nKenji\nNicholas\nSantos\nTakeshi\nVerne\nAdrian\nAlfredo\nBoyd\nFidel\nGus\nJean\nLuther\nNeal\nNelson\nSusumu\nSylvester\nTeruo\nYukio\nAntone\nBenny\nBertram\nBillie\nByron\nChristian\nClement\nDarrell\nEd\nElliott\nFelipe\nFreddie\nFrederic\nGabriel\nGrant\nIgnacio\nIrvin\nIsao\nMac\nMiles\nMitchell\nRene\nRex\nRoscoe\nSalvatore\nStuart\nAgustin\nAl\nAldo\nAlton\nAndres\nCelestino\nChris\nClaud\nEarle\nElbert\nElmo\nFernando\nGonzalo\nHarlan\nHarley\nHarrison\nIchiro\nIra\nIsamu\nJackson\nJoesph\nLaverne\nLyman\nMasato\nMervyn\nMurray\nNicolas\nNoel\nPablo\nPascual\nRaul\nRicardo\nSammy\nSheldon\nSimon\nSydney\nTadashi\nTsutomu\nVern\nYasuo\nAlden\nAlonzo\nAmerico\nAnastacio\nAngel\nAurelio\nBud\nBurt\nCharley\nCornelius\nDino\nElias\nEmilio\nEnrico\nFermin\nGregory\nGrover\nHugo\nIsaac\nJoaquin\nLeopoldo\nLionel\nLorenzo\nLorin\nMarcus\nMary\nMasaru\nMathew\nMatthew\nMelville\nMillard\nNewton\nOtis\nPat\nSaburo\nSantiago\nSebastian\nSherman\nTakao\nTaro\nTimothy\nWendell\nWilbert\nYutaka\nAndy\nAustin\nBasil\nBenito\nBruno\nCarlton\nCarrol\nCedric\nClare\nCristobal\nDelmer\nDennis\nDouglass\nDuane\nElvin\nElwyn\nEmery\nEmile\nErnie\nErvin\nErwin\nForest\nGenaro\nGerard\nGuillermo\nHector\nHilario\nIwao\nJon\nKay\nKazuto\nKen\nKermit\nLucio\nMamoru\nMarcel\nMarcelino\nMargarito\nMasaji\nMasami\nMaynard\nMilan\nMitsuo\nNickolas\nNorris\nOrlando\nPalmer\nPercy\nPreston\nReuben\nRoyce\nRudolf\nSadao\nSanford\nSatoshi\nSeiichi\nShigeki\nShigeo\nStewart\nTeddy\nTetsuo\nWalton\nWilber\nRobert\nJohn\nWilliam\nGeorge\nJames\nCharles\nFrank\nRichard\nJack\nEdward\nJoseph\nDonald\nRaymond\nHarold\nAlbert\nJoe\nThomas\nWalter\nHenry\nArthur\nPaul\nHarry\nKenneth\nDavid\nManuel\nRalph\nFred\nLouis\nErnest\nEugene\nAlfred\nRoy\nHoward\nEarl\nLawrence\nJose\nStanley\nHerbert\nCarl\nClarence\nNorman\nWarren\nLeonard\nPeter\nAnthony\nFrancis\nTony\nVernon\nEdwin\nMelvin\nBill\nJesus\nDaniel\nRussell\nGordon\nLeo\nLloyd\nRay\nTheodore\nVictor\nElmer\nGerald\nFrederick\nPhilip\nAndrew\nGlenn\nClifford\nAntonio\nLeroy\nDouglas\nLeslie\nVincent\nClyde\nAlvin\nMilton\nBob\nMartin\nChester\nSam\nTom\nWallace\nGilbert\nMarvin\nMike\nWilbur\nLeland\nPete\nSalvador\nFloyd\nLewis\nEverett\nLester\nFrancisco\nBenjamin\nBruce\nMichael\nCarlos\nSamuel\nHarvey\nJuan\nWesley\nAngelo\nBen\nBernard\nLee\nDon\nJesse\nJim\nRoger\nEddie\nWayne\nEdgar\nHerman\nPhillip\nAllen\nClaude\nAlan\nMaurice\nAlexander\nWillard\nDale\nGene\nHugh\nRamon\nHomer\nOscar\nRoland\nLouie\nMorris\nNick\nOliver\nArnold\nBert\nCecil\nJerry\nLeon\nAllan\nMario\nDan\nJess\nJohnny\nLuis\nMarshall\nMax\nEdmund\nForrest\nFranklin\nAlex\nAugust\nKiyoshi\nPedro\nDick\nIrving\nRex\nTed\nJohnnie\nMasao\nMinoru\nStephen\nFelix\nJulius\nRuben\nAlfonso\nBilly\nByron\nElmo\nIgnacio\nJimmie\nKeith\nLaurence\nCharlie\nDave\nFredrick\nHubert\nJimmy\nSidney\nAngel\nClayton\nFernando\nGuy\nKarl\nLarry\nRudolph\nWillis\nYoshio\nDelbert\nKenji\nMalcolm\nOrville\nRaul\nRonald\nWilfred\nAlberto\nClinton\nEmil\nEmmett\nGlen\nJay\nLowell\nMerle\nNicholas\nRafael\nSteve\nAdolph\nBurton\nDean\nElwood\nHiroshi\nJulian\nOwen\nPatrick\nVirgil\nWendell\nArchie\nArmando\nBenny\nGuadalupe\nHideo\nIrvin\nJerome\nLynn\nMervin\nCurtis\nDarrell\nElbert\nErwin\nGus\nKazuo\nLoren\nMatthew\nCalvin\nDomingo\nEdmond\nEnrique\nJean\nJoaquin\nMarion\nMasaru\nMiguel\nTommy\nArmand\nCarlton\nChris\nDante\nHarley\nJackson\nLorenzo\nLyle\nMark\nMitsuo\nNeil\nRodney\nRoss\nTadashi\nToshio\nTrinidad\nWillie\nBennie\nBertram\nCruz\nDominic\nEarle\nEmilio\nFrederic\nGabriel\nHorace\nIra\nMervyn\nOtto\nPablo\nReginald\nRoberto\nAdrian\nGregory\nJulio\nKay\nLupe\nMyron\nNorbert\nRene\nSherman\nShigeru\nSteven\nStuart\nTakeo\nCarlo\nDuane\nDwight\nEarnest\nFelipe\nGino\nJacob\nMerrill\nNeal\nRefugio\nSimon\nYukio\nAugustine\nBillie\nBruno\nBud\nCarroll\nClare\nDennis\nElden\nEldon\nElliott\nEllsworth\nElton\nErnie\nGregorio\nIsamu\nIvan\nLaverne\nLuther\nMarcus\nMelville\nMurray\nNed\nNoboru\nRudy\nSaburo\nShigeo\nTakeshi\nTerry\nYutaka\nAldo\nArturo\nAustin\nBarney\nBernardo\nDelmar\nDexter\nElias\nElvin\nGrant\nHal\nHugo\nKatsumi\nMilo\nNelson\nNickolas\nNobuo\nOtis\nPascual\nPat\nPercy\nPreston\nRicardo\nSammy\nSantos\nTruman\nWilbert\nWinston\nAgustin\nAl\nAndres\nAurelio\nBobby\nChristopher\nCornelius\nDanny\nDarwin\nDaryl\nDuncan\nEllis\nElwin\nEric\nErnesto\nHaig\nHarrison\nHaruo\nJessie\nJiro\nJorge\nLino\nReuben\nRoderick\nRodger\nRolland\nRosendo\nRupert\nScott\nStewart\nTetsuo\nVicente\nWaldo\nWard\nWilson\nAbraham\nAkira\nAlfredo\nAlton\nAndy\nAntone\nBrian\nCarleton\nClair\nClark\nClement\nClifton\nConrad\nDarrel\nDudley\nEd\nEldred\nElwyn\nForest\nFreddie\nFumio\nGarth\nGraham\nGrover\nHans\nHisao\nIrwin\nJohnie\nJunior\nKei\nKenichi\nLyman\nMarcelino\nMarcos\nMasayuki\nMerritt\nMillard\nMitchell\nMitsuru\nNathan\nNathaniel\nNewton\nNicolas\nNoel\nRandolph\nSantiago\nSusumu\nSydney\nSylvester\nTadao\nTakao\nTim\nTomio\nTsugio\nAdam\nAdolfo\nAlva\nAubrey\nBertrand\nBoyd\nBradley\nBurt\nBuster\nCarmen\nCharley\nClaud\nCraig\nDallas\nDelfino\nDewey\nDino\nEmanuel\nEmile\nEnrico\nErvin\nEusebio\nFidel\nFredric\nGail\nGerard\nGilberto\nGonzalo\nGuillermo\nHector\nIchiro\nIsaac\nIwao\nJasper\nJoel\nJonathan\nJudson\nKaoru\nKermit\nLeonardo\nMack\nMary\nMasato\nMasayoshi\nMateo\nMaynard\nMorgan\nNolan\nOrlando\nOrval\nPhil\nPorfirio\nReno\nReyes\nRodolfo\nRoscoe\nRussel\nSal\nSalvatore\nSeymour\nShigeto\nShirley\nShizuo\nSilvio\nStanford\nTakashi\nTeddy\nTerence\nTokio\nToshiro\nVan\nVernal\nVerne\nWillian\nYgnacio\nRobert\nJohn\nWilliam\nGeorge\nJames\nFrank\nJack\nRichard\nCharles\nDonald\nEdward\nJoseph\nRaymond\nAlbert\nHarold\nJoe\nPaul\nThomas\nHenry\nWalter\nArthur\nHarry\nKenneth\nDavid\nManuel\nFred\nRalph\nEugene\nWarren\nErnest\nHoward\nLouis\nAlfred\nRoy\nTony\nFrancis\nLawrence\nStanley\nEarl\nClarence\nCarl\nDaniel\nLeonard\nPeter\nLloyd\nHerbert\nJose\nNorman\nTheodore\nMelvin\nAnthony\nRay\nVictor\nGordon\nElmer\nPhilip\nEdwin\nBill\nClifford\nVernon\nBob\nGerald\nRussell\nAntonio\nJesus\nVincent\nMilton\nSam\nAndrew\nTom\nFrederick\nGilbert\nLeo\nChester\nGlenn\nBenjamin\nLeroy\nDouglas\nLester\nSamuel\nWallace\nEverett\nMartin\nAlvin\nBernard\nDon\nMike\nLeslie\nLeland\nClyde\nWesley\nMarvin\nWayne\nBen\nHarvey\nJuan\nMichael\nWilbur\nFloyd\nJesse\nNick\nPete\nSalvador\nArnold\nLewis\nBruce\nJimmie\nJohnny\nLeon\nLouie\nRoger\nMario\nHerman\nAlexander\nCarlos\nCecil\nTed\nEddie\nJim\nPedro\nGene\nLaurence\nAlfonso\nAllen\nAngelo\nEdgar\nLee\nMorris\nGlen\nStephen\nWillard\nDelbert\nFrancisco\nPhillip\nRoland\nVirgil\nBert\nFranklin\nHugh\nLuis\nMaurice\nDale\nIrving\nKeith\nMarion\nRaul\nRonald\nClaude\nRamon\nAlan\nLarry\nOscar\nBilly\nFelix\nJerry\nJess\nMax\nNeil\nRuben\nFredrick\nSidney\nOliver\nAllan\nCalvin\nForrest\nHomer\nHubert\nKazuo\nPatrick\nRudolph\nToshio\nEdmund\nEmil\nHiroshi\nJerome\nJohnnie\nJulian\nLowell\nMark\nMerle\nSteve\nDean\nFernando\nMarshall\nMasao\nMinoru\nYoshio\nArmando\nBurton\nDick\nGuadalupe\nRafael\nWilfred\nAldo\nDan\nKiyoshi\nMiguel\nNicholas\nRoberto\nShigeru\nTommy\nAlex\nAugust\nGuy\nHideo\nIrvin\nIvan\nWillie\nCharlie\nClinton\nCurtis\nDave\nDominic\nElwood\nJulio\nJulius\nKarl\nWendell\nWillis\nClayton\nDuane\nIgnacio\nJean\nLoren\nRoss\nSteven\nAdolph\nAkira\nAngel\nByron\nCarroll\nDwight\nFelipe\nMalcolm\nMyron\nOrville\nTrinidad\nAlfredo\nJay\nLyle\nOtto\nOwen\nPerry\nRex\nStuart\nArchie\nAugustine\nElbert\nEmilio\nEnrique\nFrederic\nGrant\nHarlan\nLorenzo\nPat\nRodney\nAdrian\nDarrell\nEarle\nGabriel\nGregory\nIra\nJimmy\nPablo\nRene\nRolland\nSalvatore\nTakashi\nAlden\nAntone\nArturo\nClark\nDennis\nEdmond\nEldon\nElliott\nEllis\nElwyn\nErwin\nGuido\nGus\nHal\nHarley\nHarrison\nHector\nHugo\nJunior\nLupe\nMervin\nNathan\nNoboru\nSherman\nAlberto\nBarton\nClifton\nDante\nDomingo\nElvin\nIrwin\nLyman\nMasaru\nMatthew\nMervyn\nNelson\nWard\nYutaka\nAbe\nAmos\nBertram\nClement\nCruz\nDudley\nEmmett\nIsamu\nKen\nLynn\nMerrill\nNeal\nOtis\nRicardo\nRodolfo\nSantos\nStewart\nTetsuo\nAlton\nBarney\nBennie\nBillie\nBruno\nBud\nEd\nEnrico\nGrover\nHorace\nJessie\nJoaquin\nJoel\nLorin\nMargarito\nReginald\nSimon\nSusumu\nTakeo\nVerne\nWilbert\nAdolfo\nCarlton\nChris\nCraig\nCyril\nElias\nEllsworth\nEric\nErnie\nGail\nGino\nIsao\nKenji\nLuther\nMarcos\nMarcus\nMerlin\nMitsuo\nMurray\nNobuo\nNoel\nPercy\nSheldon\nShigeo\nStanford\nTadashi\nTimothy\nVito\nAgustin\nAlejandro\nArmand\nAurelio\nAustin\nBeverly\nBoyd\nChristian\nChristopher\nConrad\nCornelius\nDelmer\nDewey\nEarnest\nEduardo\nElmo\nEmile\nErnesto\nGregorio\nHarris\nIwao\nKevin\nLino\nMarcelino\nMasashi\nMiles\nMillard\nMilo\nMitchell\nNeno\nRandall\nReno\nReuben\nSammy\nShirley\nTsutomu\nVicente\nWilson\nAaron\nAbel\nAbraham\nAl\nAndy\nBenito\nBuddy\nCarmen\nCedric\nClair\nDanny\nElio\nEmanuel\nEmerson\nErvin\nFerdinand\nFidel\nFlorentino\nFrances\nHajime\nIchiro\nJacob\nJerald\nJustin\nLoyd\nLucio\nMack\nMauro\nMickey\nNathaniel\nNatividad\nOrval\nPascual\nPhil\nPorfirio\nRefugio\nRomeo\nSaburo\nSanford\nSaul\nShiro\nSydney\nTerence\nTerry\nTeruo\nTim\nVern\nWeldon\nAlonzo\nAlphonso\nAmado\nAnastacio\nAram\nAttilio\nAubrey\nBart\nBradford\nDarrel\nDaryl\nDorothy\nEdwardo\nEli\nElton\nEmmet\nEzequiel\nFrankie\nFranklyn\nGustavo\nHarding\nHaruo\nIsaac\nJake\nJoesph\nJorge\nJules\nJunichi\nKatsumi\nKay\nLauren\nLaverne\nLincoln\nLonnie\nMarco\nMariano\nMerton\nMonroe\nMorgan\nNolan\nNorbert\nNorberto\nNorris\nPatricio\nRamond\nRoderick\nRudy\nSalvadore\nSatoru\nScott\nSebastian\nSterling\nTad\nTakeshi\nTatsuo\nTomas\nValentino\nWeston\nWinston\nYasuo\nYsidro\nYukio\nRobert\nJohn\nWilliam\nGeorge\nJames\nRichard\nCharles\nFrank\nJack\nDonald\nEdward\nJoseph\nHarold\nThomas\nAlbert\nRaymond\nArthur\nDavid\nWalter\nHenry\nJoe\nPaul\nHarry\nKenneth\nRalph\nManuel\nEugene\nFred\nHoward\nErnest\nLouis\nRoy\nAlfred\nStanley\nLawrence\nHerbert\nCarl\nTony\nWarren\nJose\nClarence\nDaniel\nEarl\nFrancis\nGerald\nNorman\nEdwin\nLeonard\nPeter\nBill\nMelvin\nAnthony\nGordon\nVictor\nLeo\nJesus\nTheodore\nVernon\nElmer\nRay\nLloyd\nPhilip\nAndrew\nMilton\nGlenn\nRussell\nLeroy\nClifford\nDon\nFrederick\nBob\nGilbert\nVincent\nAntonio\nWallace\nFloyd\nSam\nMartin\nTom\nMarvin\nBruce\nChester\nJuan\nClyde\nDouglas\nPete\nWesley\nLester\nSamuel\nBenjamin\nMike\nBernard\nLee\nSalvador\nCarlos\nHarvey\nMichael\nWayne\nAllen\nAlvin\nLeslie\nJesse\nOscar\nLeland\nFrancisco\nWillard\nEddie\nLouie\nPedro\nPhillip\nLeon\nTed\nWilbur\nArnold\nJerry\nJim\nJimmie\nRudolph\nStephen\nBen\nEdgar\nGene\nRoger\nAngelo\nLewis\nMario\nRamon\nAlex\nNick\nClinton\nDick\nHugh\nDale\nBilly\nEverett\nKeith\nLuis\nAlfonso\nHerman\nJohnny\nMaurice\nRafael\nRaul\nWillis\nAlexander\nAllan\nFranklin\nJohnnie\nPatrick\nAlan\nClaude\nFelix\nIrving\nLarry\nMax\nRoberto\nOliver\nVirgil\nDan\nRuben\nBert\nRoss\nSteve\nCecil\nEdmund\nJulian\nKazuo\nLowell\nMarion\nSidney\nCharlie\nGlen\nHomer\nLaurence\nMorris\nTommy\nCalvin\nHiroshi\nJoaquin\nMerle\nRoland\nGrant\nJess\nKiyoshi\nLyle\nMiguel\nForrest\nJimmy\nMark\nMarshall\nRodney\nYoshio\nBurton\nWillie\nByron\nDelbert\nGuadalupe\nMalcolm\nMinoru\nPablo\nTrinidad\nDean\nHubert\nMasao\nNeil\nNicholas\nAngel\nJay\nJulio\nMyron\nOrville\nAkira\nClayton\nFelipe\nFernando\nLoren\nAdolph\nArmando\nBennie\nBruno\nHector\nIgnacio\nMervin\nArchie\nEllis\nFredrick\nGus\nGuy\nIrvin\nJean\nLorenzo\nNeal\nRex\nRonald\nStuart\nDwight\nEmil\nEric\nGabriel\nGino\nGuido\nJerome\nCurtis\nElwood\nHideo\nIvan\nJulius\nMitchell\nOtto\nWendell\nAlfredo\nDuane\nEarle\nHarley\nIrwin\nTakashi\nToshio\nWard\nYukio\nAugust\nAugustine\nDomingo\nDominic\nElbert\nEmmett\nIsamu\nKarl\nLupe\nRene\nRudy\nSalvatore\nTimothy\nAldo\nClark\nElias\nEmilio\nGregory\nHal\nJacob\nSantos\nSteven\nVerne\nWilbert\nWilfred\nBillie\nBobby\nDaryl\nDave\nElmo\nElton\nErvin\nEvan\nHarlan\nHorace\nIra\nJackson\nKenji\nLaverne\nLincoln\nMatthew\nNathan\nOwen\nPhil\nSterling\nTadashi\nTerry\nWilford\nAlton\nBenny\nConrad\nCornelius\nCyril\nDarrell\nDino\nEmery\nHugo\nKay\nLynn\nMarcus\nMargarito\nMiles\nMitsuo\nNoboru\nNoel\nPascual\nPat\nRefugio\nSammy\nShigeru\nSimon\nTakeshi\nAaron\nAl\nCarlo\nDanny\nDudley\nEd\nEdmond\nEldon\nErwin\nGail\nGuillermo\nLionel\nMasami\nNed\nRicardo\nRolland\nWilson\nAdolfo\nAgustin\nArturo\nBertram\nDennis\nEarnest\nEmile\nEnrique\nJessie\nJunior\nKen\nMariano\nMerlin\nPerry\nRandall\nReginald\nShigeo\nShirley\nShiro\nShizuo\nTetsuo\nTomas\nAmos\nAntone\nArmand\nArt\nAurelio\nBryan\nBud\nCarroll\nChris\nDana\nDario\nDelmar\nDewey\nElvin\nErnesto\nFidel\nGilberto\nGregorio\nHobart\nIchiro\nIsao\nJoel\nLuther\nMakoto\nMasayuki\nMerrill\nMurray\nNelson\nNicolas\nNorbert\nOrval\nPorfirio\nReno\nRodolfo\nRollin\nRoman\nRoscoe\nSaburo\nSheldon\nSilvio\nStewart\nSydney\nTadao\nTakao\nVicente\nYasuo\nYutaka\nAdrian\nAlberto\nAustin\nBenito\nChristopher\nClement\nClifton\nCosme\nCraig\nCruz\nDeane\nEnrico\nFederico\nForest\nGalen\nGustavo\nHaig\nHarrison\nIsadore\nLeopoldo\nLonnie\nLorin\nLuciano\nLyman\nMarcelino\nMarcello\nMarco\nMary\nMasaru\nMeredith\nMerton\nMilo\nMorgan\nMorton\nReuben\nReynaldo\nRussel\nSadao\nSantiago\nSol\nStanton\nSylvester\nTeddy\nTheadore\nVito\nWalton\nWill\nWinston\nYoshiaki\nAbel\nAlejandro\nAlonzo\nAmbrose\nAndres\nAubrey\nBasil\nBeverly\nBoyd\nCarleton\nCarrol\nCarter\nCasper\nChristian\nClay\nDante\nDarrel\nDenis\nDonal\nEduardo\nElliott\nEllsworth\nFreddie\nGonzalo\nHilario\nHisao\nJosef\nJustin\nKenichi\nKent\nLoyd\nLucien\nMarcos\nMathew\nMaxwell\nMelford\nMervyn\nMichio\nMikio\nMilford\nMoses\nNorton\nOtis\nRobin\nRoderick\nRudolf\nSalvadore\nSatoru\nScott\nSeymour\nSusumu\nTheron\nTsugio\nWellington\nWeston\nWing\nYoneo\nYoshiro\nRobert\nJohn\nWilliam\nJames\nGeorge\nRichard\nDonald\nFrank\nCharles\nJack\nEdward\nJoseph\nHarold\nThomas\nRaymond\nPaul\nJoe\nAlbert\nDavid\nWalter\nKenneth\nHenry\nArthur\nHarry\nManuel\nRalph\nFred\nEugene\nRoy\nErnest\nLouis\nAlfred\nHoward\nJose\nStanley\nCarl\nLawrence\nNorman\nTony\nEarl\nBill\nPeter\nClarence\nWarren\nHerbert\nLeonard\nDaniel\nGordon\nAnthony\nJesus\nRay\nEdwin\nFrancis\nRussell\nLeo\nTheodore\nClifford\nWallace\nLloyd\nBob\nFrederick\nMelvin\nPhilip\nDon\nGerald\nAntonio\nElmer\nVictor\nVernon\nSamuel\nJuan\nAndrew\nTom\nGlenn\nBernard\nMartin\nGilbert\nDouglas\nMarvin\nVincent\nLeroy\nSalvador\nMike\nBruce\nSam\nAlvin\nFrancisco\nBenjamin\nLeslie\nHarvey\nMilton\nChester\nWayne\nPete\nWesley\nFloyd\nLester\nLeland\nCarlos\nJim\nLee\nClyde\nRudolph\nAllen\nCalvin\nMichael\nGene\nLewis\nLuis\nLouie\nTed\nAlfonso\nClaude\nEverett\nAlexander\nJerry\nLeon\nMario\nRoger\nWilbur\nBen\nEddie\nHugh\nJesse\nGlen\nHerman\nPedro\nSteve\nNick\nArnold\nBilly\nAlan\nOscar\nEdmund\nJohnny\nKeith\nPhillip\nWillard\nEdgar\nFranklin\nRonald\nJimmie\nLaurence\nDick\nRaul\nRuben\nDan\nWillis\nCecil\nHomer\nJohnnie\nMorris\nOliver\nAlex\nDale\nRoberto\nFelix\nGuy\nPatrick\nRoland\nSidney\nStephen\nJess\nMaurice\nRoss\nAldo\nMalcolm\nRamon\nBert\nJimmy\nTommy\nHiroshi\nJay\nLarry\nFredrick\nIrving\nAllan\nAngelo\nByron\nIrvin\nJerome\nMax\nMiguel\nJulian\nDelbert\nHubert\nMarion\nNeil\nRafael\nVirgil\nAngel\nArmando\nFernando\nLowell\nNicholas\nDean\nMerle\nAdolph\nCharlie\nIgnacio\nLoren\nDarrell\nForrest\nLorenzo\nMinoru\nSteven\nGuadalupe\nIvan\nJulio\nKiyoshi\nPablo\nWillie\nAkira\nArchie\nHorace\nJoaquin\nMervin\nRex\nRodney\nRodolfo\nDuane\nGuillermo\nHector\nLupe\nLyle\nAugustine\nBennie\nBruno\nCurtis\nElwood\nNeal\nOrville\nPerry\nRudy\nAlfredo\nBenny\nClinton\nDave\nDominic\nEmilio\nJean\nMark\nMasao\nMyron\nOtto\nShigeo\nAlberto\nBurton\nCarroll\nEarle\nElbert\nFidel\nGrant\nMarshall\nWendell\nAugust\nDennis\nEmil\nGilberto\nHarlan\nHideo\nJulius\nRefugio\nRene\nToshio\nTrinidad\nAndres\nBertram\nEnrique\nFelipe\nGabriel\nGregory\nKay\nWilfred\nYoshio\nArturo\nCruz\nGuido\nJunior\nKarl\nNicolas\nDwight\nElias\nEmmett\nEvan\nFrankie\nGino\nIra\nIrwin\nKazuo\nMargarito\nNoboru\nPascual\nPhil\nReginald\nSantos\nTadashi\nAbraham\nAdrian\nDudley\nEdmond\nEduardo\nErnesto\nErnie\nGail\nIsamu\nJacob\nLionel\nMiles\nRicardo\nAurelio\nBeverly\nChris\nChristopher\nDaryl\nDomingo\nGus\nKatsumi\nLincoln\nLyman\nNed\nOwen\nRoyal\nShigeru\nStuart\nTadao\nTomas\nWilbert\nAaron\nAlden\nAlejandro\nCarlo\nClayton\nClement\nClifton\nDewey\nEldon\nElwin\nErwin\nGregorio\nHarland\nHarley\nJasper\nLuther\nLynn\nMarcus\nMerrill\nMervyn\nMurray\nOtis\nReuben\nRolland\nSaul\nSimon\nStewart\nTakashi\nTakeshi\nArmand\nBobby\nCharley\nCraig\nCyril\nDanny\nDarwin\nElliott\nErvin\nHal\nIchiro\nKenji\nMerritt\nMorton\nNathan\nNelson\nNobuo\nRamiro\nSalvatore\nSammy\nSebastian\nSherman\nVerne\nVicente\nAdolfo\nAl\nAmador\nAmos\nBud\nClark\nConrad\nCornelius\nDexter\nElmo\nFlorencio\nFreddie\nGonzalo\nGustavo\nJorge\nLavern\nLeonardo\nMakoto\nMasami\nMasaru\nMelville\nNathaniel\nReyes\nRoderick\nRupert\nSantiago\nSheldon\nStanford\nSusumu\nSylvester\nTerry\nTsutomu\nVal\nVentura\nYukio\nYutaka\nAbel\nAdam\nAlva\nBernardo\nBradford\nChauncey\nColin\nElton\nEmile\nEnrico\nGale\nGerard\nGodfrey\nGrover\nHollis\nIsaac\nJackson\nJacques\nJoel\nKen\nMack\nMarcel\nMary\nMatthew\nNoel\nNorbert\nOrrin\nOrval\nOsamu\nSaburo\nScott\nShirley\nSydney\nTamotsu\nTeddy\nTimothy\nValentine\nWard\nWilson\nAlec\nAnastacio\nAubrey\nAustin\nBlaine\nBlas\nCarlton\nCarmen\nClaud\nClaudio\nDallas\nDelfino\nDesmond\nEllis\nEllsworth\nElvin\nEric\nEsteban\nFranklyn\nHiram\nJackie\nJessie\nJiro\nJun\nLane\nLuciano\nMasayuki\nMathew\nMerton\nMickey\nMitchell\nMoses\nOmar\nPat\nPreston\nReno\nReynaldo\nSanford\nTeruo\nVan\nWeldon\nYoneo\nYoshito\nAlonzo\nAndy\nAsa\nBoris\nBoyd\nBurt\nBuster\nCameron\nCarrol\nChristian\nCliff\nDario\nDelmer\nDino\nDonal\nDonn\nDoyle\nEarnest\nEdwardo\nEldred\nElgin\nEliseo\nElwyn\nEpifanio\nFilbert\nFrederic\nFumio\nGenaro\nHerschel\nHiro\nIan\nIgnatius\nJoesph\nJonathan\nLino\nLonnie\nMarcos\nMaria\nMerlin\nMiller\nNewell\nNorris\nOakley\nPercy\nRandolph\nRemo\nRey\nRobin\nRolf\nRoman\nRosalio\nRosendo\nRowland\nRufus\nRussel\nSal\nSatoshi\nShig\nShizuo\nSho\nSilverio\nSilvestre\nSol\nStan\nTetsuo\nToshiyuki\nValente\nVaughn\nVern\nVictoriano\nWade\nWataru\nRobert\nJohn\nWilliam\nJames\nGeorge\nRichard\nFrank\nDonald\nCharles\nJack\nEdward\nJoseph\nJoe\nRaymond\nHarold\nDavid\nAlbert\nThomas\nKenneth\nArthur\nPaul\nManuel\nHenry\nWalter\nRalph\nHarry\nFred\nErnest\nEugene\nLouis\nRoy\nLawrence\nJose\nAlfred\nHoward\nStanley\nEarl\nClarence\nNorman\nCarl\nJesus\nWarren\nDaniel\nTony\nLeonard\nBill\nGordon\nRay\nEdwin\nPeter\nMelvin\nLloyd\nGlenn\nBob\nGerald\nHerbert\nAnthony\nRussell\nAndrew\nClifford\nDon\nLeo\nFrancis\nGilbert\nMarvin\nTheodore\nElmer\nVictor\nPhilip\nLeroy\nVernon\nAlvin\nFrederick\nJuan\nDouglas\nAntonio\nTom\nCalvin\nSalvador\nWayne\nMilton\nSamuel\nBenjamin\nJim\nMartin\nMike\nVincent\nFloyd\nLee\nWallace\nLeslie\nCarlos\nBruce\nClyde\nBernard\nLester\nLewis\nFrancisco\nJerry\nLouie\nPete\nPedro\nRaul\nAllen\nDale\nJohnny\nRuben\nAlfonso\nRoger\nWesley\nLuis\nJesse\nJohnnie\nBilly\nLeland\nPatrick\nLeon\nSam\nEddie\nNick\nChester\nEverett\nGene\nArnold\nHarvey\nRamon\nMaurice\nRudolph\nEdgar\nHugh\nJimmie\nOscar\nWilbur\nAlexander\nDick\nRonald\nPhillip\nAllan\nOliver\nRoland\nBen\nMichael\nLarry\nRoberto\nAlan\nCecil\nDean\nGlen\nMiguel\nTed\nWillard\nKeith\nBert\nFranklin\nHerman\nSidney\nLowell\nAngelo\nStephen\nAlex\nFernando\nTommy\nClaude\nJay\nJimmy\nRoss\nEdmund\nRudy\nMark\nRafael\nSteve\nIrving\nJulian\nVirgil\nArmando\nClayton\nFelix\nJess\nWillis\nDan\nDelbert\nDuane\nEnrique\nHiroshi\nHubert\nLaurence\nMario\nMax\nWillie\nDave\nDarrell\nDomingo\nHomer\nJulio\nAldo\nAngel\nAugustine\nIgnacio\nMorris\nNeil\nNicholas\nByron\nClinton\nHarlan\nHorace\nLoren\nRodolfo\nAdolph\nBenny\nKarl\nLupe\nAlberto\nCurtis\nEmilio\nForrest\nWilfred\nFidel\nLyle\nMyron\nCharlie\nGabriel\nGuy\nJulius\nMarion\nNeal\nRodney\nBennie\nElias\nEmil\nFredrick\nWendell\nAgustin\nAlfredo\nArturo\nAurelio\nBurton\nIvan\nMarshall\nMasao\nOrville\nPablo\nReginald\nRex\nChris\nIra\nJerome\nMerle\nStuart\nTrinidad\nVerne\nEldon\nElwood\nErwin\nFelipe\nLorenzo\nOwen\nYoshio\nArchie\nAugust\nElbert\nHector\nIrwin\nMalcolm\nMorton\nRicardo\nBillie\nBobby\nBruno\nDwight\nEarle\nErnesto\nGrant\nGregory\nGuillermo\nHarley\nIrvin\nOtis\nSherman\nSimon\nWilbert\nCarroll\nEdmond\nGonzalo\nJunior\nMatthew\nMiles\nMinoru\nTomas\nAbel\nAndres\nDominic\nElmo\nEric\nGregorio\nGuadalupe\nHideo\nKiyoshi\nPerry\nTakeshi\nAdrian\nArmand\nClifton\nDennis\nEllis\nElton\nEmmett\nFreddie\nGilberto\nGus\nJoel\nMarcelino\nPat\nRollin\nSteven\nStewart\nBud\nClement\nConrad\nDewey\nDonal\nIsamu\nJean\nJessie\nJoaquin\nLyman\nLynn\nMilo\nOtto\nRefugio\nSalvatore\nVern\nWard\nAdolfo\nAkira\nAmado\nBertram\nCarlton\nDanny\nEd\nErnie\nGuido\nHugo\nKazuo\nLaverne\nMariano\nMitchell\nNicolas\nRoderick\nRoman\nToshio\nBeverly\nClair\nCornelius\nCruz\nCyril\nEduardo\nHal\nIsaac\nJackie\nJackson\nKen\nLeopoldo\nLuther\nMarcus\nMargarito\nMasaru\nMasato\nMervin\nMonroe\nMurray\nNorbert\nPhil\nSilvio\nTadashi\nTerry\nTetsuo\nVicente\nAntone\nBenito\nClark\nDarrel\nElvin\nErvin\nFrankie\nHarris\nHarrison\nJacob\nJorge\nKay\nLincoln\nMary\nMerrill\nMervyn\nMitsuru\nNelson\nReynaldo\nSammy\nSantiago\nSterling\nTakashi\nTsutomu\nWaldo\nAbraham\nAdam\nAlton\nArt\nAustin\nBarney\nCarter\nChristopher\nFlorencio\nFrederic\nHilario\nIsabel\nKenji\nLeonardo\nLonnie\nLoyd\nMacario\nNathan\nNobuo\nOrval\nPreston\nScott\nSheldon\nShigeru\nSylvester\nTimothy\nWill\nWilson\nYgnacio\nYutaka\nAl\nAllison\nAmos\nCarleton\nCarmen\nCharley\nDino\nDonn\nDudley\nDuncan\nEarnest\nElliott\nElwin\nFaustino\nGail\nGenaro\nGino\nGustavo\nHaruo\nIchiro\nJustin\nLeandro\nLionel\nLorin\nMorgan\nNoboru\nNorris\nOrrin\nPasqual\nReuben\nReyes\nRoscoe\nSaburo\nSanford\nSaul\nSebastian\nVance\nWilmer\nWinston\nAaron\nAlejandro\nAugie\nBobbie\nBoyd\nBuddy\nCandelario\nCarlo\nChristian\nColin\nCyrus\nDaryl\nDelmar\nDesmond\nEmerson\nEnrico\nEsteban\nFederico\nFlorentino\nForest\nFranklyn\nFumio\nHans\nHisashi\nHollis\nJasper\nLauren\nMarcos\nMason\nMelville\nMerton\nMillard\nMoses\nNathaniel\nNoel\nPascual\nPrimo\nRaphael\nRaymundo\nReno\nRoyal\nRoyce\nSantos\nStanford\nTakeo\nVentura\nVito\nWilford\nYoneo\nYoshiharu\nYoshiyuki\nYsidro\nAbe\nAlbin\nAlden\nAlwin\nArlie\nAubrey\nBarry\nBasil\nBasilio\nBertrand\nBetty\nBradley\nBuster\nCarmelo\nCelestino\nClaire\nConrado\nCornelio\nDallas\nDana\nDarwin\nDelmer\nDolores\nDoyle\nEfrain\nEllsworth\nEmanuel\nEmery\nEmile\nEverette\nGale\nGeno\nHiram\nIsadore\nIsmael\nJake\nJefferson\nJiro\nJordan\nJules\nLauro\nLavern\nLino\nLuke\nMateo\nMaynard\nMerlin\nMerlyn\nMicheal\nMitsuo\nNewell\nOctavio\nPierre\nQuentin\nRamiro\nRandall\nRaoul\nRenato\nRogelio\nRolland\nRosario\nRosendo\nRowland\nSatoshi\nSeiji\nSharon\nShirley\nSolomon\nStanton\nSusumu\nTheron\nTiburcio\nTomio\nWade\nWerner\nYsabel\nRobert\nJohn\nWilliam\nJames\nRichard\nGeorge\nDonald\nCharles\nFrank\nJack\nEdward\nJoseph\nThomas\nDavid\nRaymond\nHarold\nJoe\nArthur\nKenneth\nPaul\nManuel\nAlbert\nHenry\nWalter\nRalph\nHarry\nEugene\nFred\nErnest\nRoy\nAlfred\nBill\nLouis\nStanley\nHoward\nNorman\nDaniel\nJose\nLawrence\nEarl\nTony\nCarl\nGerald\nBob\nJesus\nPeter\nHerbert\nRay\nLeonard\nClarence\nMelvin\nAnthony\nEdwin\nGordon\nLloyd\nDon\nGilbert\nWarren\nTheodore\nFrancis\nVictor\nGlenn\nLeo\nVernon\nWallace\nLeroy\nPhilip\nTom\nJuan\nElmer\nRussell\nAlvin\nAndrew\nClifford\nAntonio\nSalvador\nGene\nDouglas\nMartin\nCalvin\nMarvin\nJim\nSamuel\nMike\nMilton\nVincent\nWayne\nLeslie\nFrederick\nSam\nCarlos\nFloyd\nLeland\nLee\nRonald\nWesley\nBenjamin\nDale\nDick\nFrancisco\nJesse\nMichael\nRamon\nBernard\nLester\nRaul\nJohnny\nEddie\nJimmie\nJerry\nLewis\nLuis\nBilly\nBruce\nJimmy\nLeon\nAlan\nClyde\nLouie\nPhillip\nRuben\nAllen\nOscar\nPatrick\nHugh\nAlfonso\nAlexander\nHarvey\nRoger\nRudolph\nPedro\nBen\nEverett\nJohnnie\nRoberto\nDean\nTed\nPete\nArnold\nCecil\nTommy\nStephen\nAlex\nEdgar\nChester\nJess\nKeith\nWilbur\nWillard\nAllan\nRoland\nSteve\nGlen\nMario\nMaurice\nDan\nHerman\nRodney\nAngelo\nFernando\nMiguel\nAngel\nLarry\nRafael\nRodolfo\nClaude\nArmando\nFelix\nBert\nFranklin\nIrving\nJay\nLoren\nHector\nJulian\nJulio\nLaurence\nNick\nEnrique\nHiroshi\nIgnacio\nLowell\nRudy\nJerome\nMark\nSidney\nWillis\nAlfredo\nDuane\nStuart\nWillie\nByron\nMax\nNicholas\nMarion\nForrest\nMerle\nSteven\nDelbert\nHubert\nBobby\nCharlie\nClinton\nCurtis\nGuy\nWendell\nElias\nFredrick\nGuadalupe\nHideo\nKiyoshi\nLorenzo\nLupe\nOtto\nRicardo\nAugustine\nBennie\nCarroll\nDave\nMorris\nPablo\nClayton\nHomer\nMatthew\nMinoru\nMyron\nOliver\nOwen\nWilfred\nIvan\nJoaquin\nNeal\nConrad\nErvin\nFelipe\nFidel\nJean\nKarl\nKazuo\nVirgil\nAlberto\nAlejandro\nBenny\nBurton\nDennis\nEdmond\nLyle\nNeil\nRoss\nSherman\nAdolph\nAkira\nEdmund\nEldon\nEmilio\nGrant\nGus\nHarley\nMarshall\nToshio\nVicente\nArchie\nBruno\nCruz\nDarrell\nElmo\nErnesto\nGabriel\nHarlan\nIsamu\nJacob\nMalcolm\nSantiago\nYoshio\nAgustin\nArturo\nDanny\nDwight\nEarle\nIrwin\nJoel\nJulius\nLynn\nMervin\nRex\nTrinidad\nAldo\nArmand\nBud\nChris\nElvin\nEric\nGregory\nHarrison\nHorace\nJackson\nKatsumi\nSimon\nTakashi\nTomas\nAugust\nCarmen\nClifton\nDewey\nDomingo\nDominic\nElwood\nErwin\nHugo\nIrvin\nJunior\nMitchell\nNicolas\nOrville\nPerry\nRollin\nSammy\nAdolfo\nAlton\nCarlo\nChristopher\nJackie\nJessie\nMasao\nMerrill\nPhil\nReynaldo\nSantos\nTerry\nVern\nVerne\nWilbert\nAurelio\nAustin\nBillie\nDudley\nEllis\nEllsworth\nEmil\nEmmett\nFlorentino\nFrankie\nGino\nGuido\nHal\nLuther\nPat\nSalvatore\nWilson\nAaron\nAbel\nBernardo\nClement\nCyril\nEliseo\nGregorio\nGuillermo\nIra\nIsao\nKenji\nLaverne\nMarcos\nMarcus\nMariano\nMonte\nNelson\nPorfirio\nRefugio\nReginald\nRogelio\nTeddy\nTruman\nYsidro\nYukio\nAmado\nAndres\nAndy\nBarry\nBetty\nBoyd\nClair\nEusebio\nGale\nGonzalo\nMervyn\nNathan\nRandolph\nRoderick\nSheldon\nShigeru\nSydney\nTimothy\nAl\nBuddy\nClark\nCraig\nDonal\nEd\nElbert\nForest\nFreddie\nFrederic\nHarland\nKay\nKenichi\nKent\nLoyd\nLyman\nMarcelino\nMary\nMasaru\nMillard\nMilo\nMitsuo\nNoel\nRolland\nRoman\nRosendo\nRudolfo\nScott\nTadashi\nWinston\nAlden\nAlice\nAllison\nAmador\nAntone\nBertram\nBeverly\nBrian\nDario\nDewitt\nEduardo\nEsteban\nFederico\nFlorencio\nFritz\nGaylord\nGilberto\nIsaac\nJake\nJiro\nJon\nJorge\nLionel\nMerton\nMoses\nMurray\nOrrin\nOtis\nPercy\nPreston\nRene\nRobin\nRoyal\nRupert\nSaul\nSpencer\nSusumu\nSylvester\nTakeo\nVito\nWade\nYgnacio\nYoshiaki\nYutaka\nAbraham\nAdrian\nAnselmo\nBarney\nBasil\nBenito\nBurt\nDonn\nDoyle\nElden\nEmory\nEvan\nFay\nGenaro\nGrover\nIsadore\nIsmael\nJavier\nJordan\nKei\nLauro\nLew\nLonnie\nLorin\nLucien\nMarco\nMasato\nMelville\nMoises\nMorgan\nNickolas\nNoboru\nOsamu\nReno\nReuben\nRubin\nRussel\nSaburo\nSeymour\nShigeo\nStanford\nStewart\nTakeshi\nTeodoro\nTeruo\nTheron\nValentino\nVaughn\nWilber\nAbe\nArland\nArnulfo\nArt\nAubrey\nAugustin\nBaldomero\nBlas\nBobbie\nBradford\nCarol\nCharley\nCipriano\nDalton\nDarwin\nDeane\nDel\nDino\nDolores\nDonovan\nEddy\nEfren\nElliott\nElwyn\nErnie\nEulalio\nEulogio\nFrances\nGail\nGreg\nGustavo\nHajime\nHans\nHaruo\nIsabel\nJacinto\nJules\nJustin\nKen\nLeopoldo\nLino\nLoran\nLuciano\nLucio\nMacario\nMarcel\nMasayuki\nMiles\nMonroe\nNatividad\nOrlando\nOrval\nPalmer\nPascual\nPaulino\nRamiro\nRaymon\nReyes\nRollie\nRosalio\nRosario\nSalvadore\nSanford\nSeferino\nSeth\nShiro\nSilvio\nSterling\nTatsuo\nTerrence\nTheadore\nTim\nToru\nTsutomu\nWard\nWiley\nRobert\nJohn\nWilliam\nRichard\nJames\nDonald\nGeorge\nCharles\nFrank\nJack\nEdward\nRaymond\nJoe\nDavid\nPaul\nAlbert\nJoseph\nThomas\nArthur\nKenneth\nWalter\nHarold\nHenry\nManuel\nRalph\nEugene\nFred\nHarry\nErnest\nLouis\nBill\nStanley\nRoy\nJose\nAlfred\nBob\nNorman\nHoward\nPeter\nLawrence\nDaniel\nGerald\nCarl\nDon\nJesus\nEarl\nTony\nRonald\nGordon\nLeonard\nRay\nClarence\nHerbert\nEdwin\nAntonio\nMelvin\nAnthony\nGilbert\nJim\nLloyd\nRussell\nLeroy\nFrancis\nGene\nVictor\nTheodore\nClifford\nGlenn\nVernon\nMartin\nPhilip\nWayne\nAndrew\nJerry\nSamuel\nMarvin\nWarren\nJuan\nTom\nWallace\nJohnny\nLeo\nMike\nDouglas\nElmer\nFloyd\nFrederick\nBilly\nBruce\nSalvador\nBenjamin\nCarlos\nRamon\nMilton\nRudolph\nRuben\nLee\nDick\nLeland\nVincent\nLuis\nRudy\nAllen\nRaul\nAlvin\nLeslie\nTed\nArnold\nClyde\nEddie\nFrancisco\nRoland\nMichael\nJimmie\nPedro\nBernard\nAlfonso\nJesse\nLester\nPete\nHugh\nKeith\nLarry\nWesley\nSam\nAlan\nDale\nAlexander\nJimmy\nLewis\nRoger\nHarvey\nOscar\nLouie\nCalvin\nGlen\nPatrick\nChester\nClaude\nLeon\nEverett\nMario\nPhillip\nCecil\nAlex\nAllan\nBen\nDelbert\nRoberto\nDean\nFelix\nHerman\nJohnnie\nMaurice\nTommy\nEdmund\nWillard\nArmando\nDan\nGuadalupe\nStephen\nWilbur\nAngel\nEnrique\nFernando\nMiguel\nDuane\nJulian\nMax\nNick\nRodolfo\nAngelo\nBert\nHector\nIgnacio\nLaurence\nSidney\nAlfredo\nArturo\nSteve\nBobby\nByron\nIrving\nMarshall\nWillie\nEdgar\nRafael\nCharlie\nAlberto\nErnesto\nJess\nJulio\nPablo\nCurtis\nGabriel\nGregory\nGuillermo\nGus\nGuy\nJerome\nLowell\nRodney\nDanny\nFranklin\nFredrick\nOliver\nElias\nHubert\nJay\nJean\nNeil\nBenny\nElwood\nHomer\nKarl\nMyron\nVirgil\nDarrell\nKiyoshi\nMalcolm\nMark\nAugustine\nClayton\nConrad\nJoaquin\nMarion\nRex\nWillis\nAdolfo\nLoren\nLupe\nLuther\nMerle\nRoss\nChris\nDave\nFelipe\nIvan\nJunior\nLorenzo\nLyle\nOrville\nRicardo\nAbel\nCruz\nDomingo\nHiroshi\nMervin\nMorris\nTrinidad\nVerne\nYoshio\nAdolph\nBurton\nEmil\nHideo\nLionel\nMinoru\nNicholas\nTerry\nDewey\nEllis\nForrest\nGregorio\nIrvin\nMerrill\nPat\nWendell\nDennis\nDominic\nEarle\nErwin\nFrederic\nGilberto\nNeal\nOtto\nWilfred\nAldo\nBarney\nBennie\nClifton\nClinton\nEduardo\nFreddie\nHarlan\nHorace\nJacob\nKen\nMurray\nSalvatore\nSantiago\nSantos\nSherman\nStuart\nTomas\nAgustin\nArchie\nAugust\nBud\nBuddy\nCarlo\nDwight\nEdmond\nEmmett\nGonzalo\nHal\nJackson\nJessie\nKazuo\nMary\nMitchell\nNathan\nRefugio\nReginald\nWilbert\nDaryl\nEldon\nErnie\nJorge\nLynn\nPhil\nRosalio\nScott\nSteven\nStewart\nTeddy\nVicente\nAkira\nAlejandro\nAurelio\nCarroll\nEliseo\nEmery\nEric\nGrant\nHarley\nJulius\nMariano\nMorton\nRaymundo\nReuben\nShigeru\nTimothy\nToshio\nAaron\nBenito\nEd\nElbert\nFaustino\nFidel\nGuido\nKay\nMaynard\nOrval\nOwen\nPorfirio\nRene\nRoderick\nRosendo\nRudolfo\nRussel\nSammy\nSaul\nSheldon\nSylvester\nWard\nAl\nAndres\nAustin\nBillie\nCarlton\nClark\nDudley\nElwyn\nGary\nHumberto\nIrwin\nJackie\nLaverne\nLeonardo\nMasaru\nMoses\nOtis\nReynaldo\nRobin\nTakeshi\nWilford\nAbraham\nAdrian\nAlden\nAntone\nBennett\nBobbie\nBoyd\nDelmar\nDiego\nDino\nElliott\nEmilio\nEusebio\nJiro\nKenji\nMateo\nMilo\nNelson\nRolland\nSebastian\nTadashi\nVern\nAlton\nAlva\nAmado\nAmador\nBarbara\nBarton\nBasil\nBruno\nCamilo\nCharley\nChristopher\nEli\nElmo\nElton\nElvin\nFlorencio\nFlorentino\nGale\nGenaro\nGino\nJavier\nJoel\nKevin\nLonnie\nLoyd\nLyman\nMargarito\nMasao\nMervyn\nMitsuo\nNoboru\nPascual\nPerry\nRamiro\nRandall\nRodrigo\nRudolf\nSaburo\nSydney\nTadao\nTakashi\nWade\nYutaka\nAgapito\nAmbrose\nAmos\nAndy\nAnton\nArt\nBarry\nBeverly\nBuster\nChuck\nDarrel\nDemetrio\nDonn\nDoyle\nEdmundo\nEfren\nEllsworth\nElwin\nFermin\nGraham\nGrover\nHitoshi\nHugo\nJerald\nJerrold\nJon\nJoy\nLeopoldo\nMakoto\nMarcelino\nMarcos\nMasami\nMasato\nMatthew\nMickey\nMillard\nMonte\nNewton\nNickolas\nNicolas\nOren\nRandolph\nRodger\nRoyal\nSadao\nSilvio\nSimon\nSterling\nSusumu\nTerrence\nTim\nTorao\nToshiaki\nTroy\nTsutomu\nVance\nWally\nAbelardo\nAllison\nAlonzo\nAnastacio\nArmand\nArnulfo\nAubrey\nBenton\nBernie\nBonifacio\nBoris\nBradley\nBrian\nCasimiro\nChauncey\nChristian\nClair\nClive\nCornelius\nCraig\nCyril\nDallas\nDana\nDarwin\nDeane\nEleuterio\nEmile\nEsteban\nEugenio\nEvan\nFederico\nFerdinand\nFrankie\nGalen\nGavino\nGerard\nHarrison\nHaruo\nIra\nIsabel\nIsamu\nIsmael\nJasper\nJonathan\nJordan\nKent\nKoji\nLaurance\nLeandro\nLeno\nLincoln\nLino\nLucas\nMamoru\nMarie\nMathew\nMatt\nMerritt\nMonroe\nNathaniel\nNed\nOrin\nOrlando\nOrrin\nPasqual\nPreston\nPrimo\nRefujio\nReymundo\nRogelio\nRogers\nRoman\nRowland\nRubin\nSanford\nSherwood\nShigeo\nSol\nSpencer\nStanford\nTeruo\nVaughn\nWerner\nYasuo\nYoshiaki\nYukio\nRobert\nJohn\nWilliam\nRichard\nJames\nDonald\nGeorge\nCharles\nFrank\nJack\nEdward\nRaymond\nDavid\nJoe\nJoseph\nPaul\nKenneth\nThomas\nHarold\nArthur\nHenry\nAlbert\nManuel\nWalter\nHarry\nRalph\nEugene\nJose\nFred\nLouis\nBill\nStanley\nErnest\nNorman\nBob\nDaniel\nRoy\nGerald\nHoward\nTony\nAlfred\nLawrence\nRonald\nDon\nEarl\nJesus\nPeter\nCarl\nGilbert\nLeonard\nHerbert\nRay\nLloyd\nMelvin\nGordon\nClarence\nVictor\nJerry\nTom\nAnthony\nFrancisco\nJuan\nJim\nFrancis\nWarren\nAntonio\nLeroy\nWayne\nMarvin\nGene\nGlenn\nPhilip\nEdwin\nTheodore\nClifford\nDick\nLeo\nAndrew\nVernon\nWallace\nAlvin\nRussell\nRuben\nSalvador\nJimmie\nFloyd\nFrederick\nVincent\nMike\nJohnny\nRaul\nRamon\nSamuel\nCarlos\nBilly\nMilton\nMartin\nBruce\nDale\nDouglas\nElmer\nMichael\nEddie\nJesse\nRudolph\nLester\nBernard\nPedro\nLee\nLuis\nPhillip\nRudy\nRoger\nBen\nBenjamin\nSam\nAlan\nAllen\nTed\nJimmy\nLeland\nLeslie\nTommy\nLarry\nPete\nWesley\nHarvey\nCalvin\nEverett\nKeith\nHugh\nChester\nClyde\nHerman\nJohnnie\nLewis\nLouie\nRodolfo\nPatrick\nRoberto\nAllan\nDean\nEdgar\nWillard\nAlfonso\nArnold\nFernando\nGlen\nOscar\nMario\nMiguel\nAlex\nAngel\nAngelo\nArmando\nHector\nWilbur\nLaurence\nEnrique\nNick\nLeon\nCharlie\nFelix\nSteve\nAlfredo\nByron\nDan\nDelbert\nMerle\nMorris\nStephen\nArturo\nMaurice\nRoland\nClaude\nRodney\nAlexander\nBobby\nCecil\nJerome\nJulian\nShoji\nRafael\nDuane\nFranklin\nWillie\nBert\nEdmund\nRicardo\nAkira\nNeil\nVirgil\nGuillermo\nIgnacio\nIrving\nLyle\nMax\nArchie\nLupe\nMark\nFelipe\nGuadalupe\nJess\nErnesto\nGrant\nHomer\nNicholas\nAdolfo\nBurton\nClayton\nSidney\nAlberto\nDennis\nFredrick\nGabriel\nGuy\nJulio\nLoren\nSteven\nTomas\nWillis\nAugustine\nClinton\nForrest\nMarshall\nPablo\nDarrell\nEldon\nElias\nHiroshi\nJay\nLowell\nOtto\nReginald\nDanny\nIvan\nNathan\nRefugio\nBenny\nCurtis\nElwood\nHarlan\nHubert\nJulius\nMalcolm\nMyron\nSammy\nKarl\nOliver\nOwen\nRoss\nDave\nDwight\nLynn\nMarion\nSantiago\nStuart\nAlejandro\nAndres\nBud\nEmil\nGilberto\nJessie\nLorenzo\nPerry\nWilbert\nWilfred\nAbel\nCarroll\nConrad\nCruz\nDomingo\nEarle\nEdmond\nFidel\nFreddie\nGale\nGregorio\nGregory\nGus\nJoaquin\nOrville\nPat\nWendell\nAdolph\nBennie\nChris\nClark\nEduardo\nElton\nEmilio\nJean\nLionel\nTeruo\nYoshio\nAdrian\nAndy\nAurelio\nBruno\nClifton\nEllis\nEric\nHarley\nHorace\nMervin\nSalvatore\nStewart\nTakashi\nTerry\nTrinidad\nAbraham\nAugust\nErnie\nErwin\nHideo\nIsabel\nJackie\nKen\nMerrill\nMonte\nRex\nReynaldo\nSherman\nSterling\nVicente\nAaron\nBillie\nDewey\nDominic\nDudley\nFlorencio\nIra\nJorge\nMarcos\nMary\nNicolas\nReuben\nRobin\nSusumu\nTimothy\nValentino\nAlton\nCarlton\nDarrel\nEmmett\nKazuo\nLeonardo\nMargarito\nMoses\nNoel\nOtis\nPhil\nRamiro\nRoman\nRosendo\nSantos\nShigeru\nTeddy\nVern\nYgnacio\nAgustin\nBarry\nBeverly\nBuddy\nErvin\nFederico\nGarth\nHal\nIsamu\nJoel\nJustin\nKiyoshi\nLyman\nMariano\nMinoru\nNelson\nRene\nRolland\nRudolf\nSimon\nToshio\nWard\nAkio\nAlden\nAndre\nArmand\nBernardo\nCarmen\nCyril\nDelmer\nDoyle\nEarnest\nElbert\nEvan\nGino\nGonzalo\nIrvin\nIrwin\nIsmael\nJacob\nJavier\nLindy\nLonnie\nLorin\nMatthew\nMaynard\nMickey\nMorgan\nMurray\nNeal\nOrval\nPercy\nRoderick\nScott\nSylvester\nTetsuo\nTsutomu\nWaldo\nAlbin\nArt\nBernie\nBoyd\nClaud\nClement\nCraig\nEd\nForest\nGaylord\nHugo\nIsaac\nJasper\nJonathan\nJunior\nKenji\nLaverne\nLincoln\nMarcelino\nMerton\nMillard\nMitchell\nMitsuo\nSebastian\nSerafin\nSherwood\nShirley\nSilvio\nSydney\nTadashi\nWade\nAl\nAlbino\nAldo\nAlonzo\nAmador\nArmen\nAugustin\nAustin\nBenton\nBertram\nBradley\nCarol\nCipriano\nClemente\nDario\nDexter\nDominick\nDonal\nDonn\nEfren\nElliott\nElvin\nEmile\nFaustino\nFrankie\nGail\nGloria\nGuido\nHans\nJackson\nKatsumi\nKay\nKenny\nLeopoldo\nLino\nLoyd\nLuther\nMarcus\nMargaret\nMaria\nMasao\nMauro\nMervyn\nMiles\nMorton\nParker\nPasqual\nRaymon\nRodger\nRonnie\nRussel\nSpencer\nStanton\nValentin\nVerne\nVito\nWinston\nAmado\nAmbrose\nAntone\nAristeo\nBarney\nBarton\nBasilio\nBenito\nBobbie\nBradford\nBrian\nCandelario\nCarlo\nCarmelo\nCarrol\nCedric\nCharley\nChauncey\nChristopher\nCirilo\nClair\nClarke\nCornelius\nDallas\nDana\nDaryl\nDel\nDolores\nDonovan\nDuke\nEdwardo\nEliseo\nEllsworth\nElmo\nElwin\nElwyn\nEvaristo\nFeliciano\nFortino\nFransisco\nFrederic\nGary\nGenaro\nHarland\nHarris\nHerschel\nHilario\nIsao\nIsidoro\nJoesph\nJun\nKent\nKevin\nLauren\nLlewellyn\nLuciano\nMac\nMarcel\nMarco\nMasaru\nMerlin\nMerwin\nMichio\nModesto\nNed\nNickolas\nNoboru\nOctavio\nPascual\nPatricia\nPorfirio\nRandolph\nRey\nReyes\nRocco\nRodman\nRodrigo\nRogelio\nRosalio\nRoyce\nRudolfo\nRufino\nSaul\nSheldon\nShiro\nStan\nStanford\nTakeshi\nTamotsu\nTruman\nVaughn\nVictoriano\nVirginia\nWally\nWarner\nWilmer\nWilson\nYutaka\nRobert\nJohn\nRichard\nWilliam\nDonald\nJames\nGeorge\nCharles\nFrank\nJack\nDavid\nJoe\nEdward\nRaymond\nPaul\nThomas\nKenneth\nJoseph\nManuel\nAlbert\nArthur\nHarold\nHenry\nJose\nWalter\nBill\nEugene\nRalph\nDon\nFred\nBob\nHarry\nRoy\nRonald\nStanley\nNorman\nAlfred\nErnest\nLouis\nHerbert\nDaniel\nHoward\nGilbert\nGerald\nJesus\nTony\nJerry\nLawrence\nRay\nEarl\nLeonard\nCarl\nPeter\nAntonio\nMelvin\nJuan\nRuben\nBilly\nClarence\nJim\nLloyd\nGene\nLeroy\nVictor\nClifford\nDouglas\nGordon\nDick\nGlenn\nMike\nTom\nMarvin\nPhilip\nWarren\nWayne\nAnthony\nRaul\nBruce\nFrancis\nEdwin\nMartin\nTheodore\nLeo\nJohnny\nRussell\nSalvador\nFrancisco\nVernon\nCarlos\nPedro\nFloyd\nRamon\nMichael\nMilton\nAndrew\nAlvin\nSamuel\nDale\nLee\nBenjamin\nWallace\nJimmy\nEddie\nFrederick\nRoger\nRudy\nJesse\nPete\nAllen\nBernard\nElmer\nLuis\nVincent\nPhillip\nLarry\nLeslie\nClyde\nJimmie\nLewis\nLouie\nRudolph\nTommy\nAlan\nWesley\nLeon\nAlfredo\nHugh\nKeith\nLeland\nTed\nAlfonso\nBobby\nWillard\nAlex\nBen\nEnrique\nRoland\nSam\nDean\nHector\nRafael\nRoberto\nHarvey\nOscar\nRodolfo\nDan\nArnold\nEverett\nGlen\nAngel\nLester\nJohnnie\nMiguel\nPatrick\nAllan\nDelbert\nMaurice\nHerman\nJulian\nLaurence\nWilbur\nArmando\nChester\nClaude\nRodney\nBert\nLoren\nEdgar\nNick\nAlberto\nDuane\nJerome\nCalvin\nEdmund\nGilberto\nIrving\nAlexander\nArturo\nFelix\nNeil\nSidney\nStephen\nBenny\nFernando\nFranklin\nJay\nJess\nMario\nIgnacio\nRicardo\nCurtis\nEduardo\nEmilio\nMarion\nPablo\nGabriel\nMax\nSteve\nAkira\nCecil\nLorenzo\nMark\nVirgil\nAbraham\nBurton\nMorris\nAngelo\nByron\nDarrell\nEdmond\nIvan\nLowell\nMalcolm\nMarshall\nRoss\nAdolfo\nElias\nGuy\nJulio\nClinton\nConrad\nGuadalupe\nOliver\nCharlie\nDanny\nMerle\nDave\nErnie\nHubert\nLupe\nLynn\nMerrill\nMyron\nRefugio\nSimon\nStuart\nTomas\nAndres\nArmand\nForrest\nNathan\nNicholas\nSammy\nVicente\nAugustine\nEric\nGary\nHarlan\nJoaquin\nKarl\nSheldon\nTeddy\nWillis\nBuddy\nCarlton\nClayton\nDwight\nEmil\nFelipe\nJean\nLyle\nOrville\nWendell\nWillie\nAdolph\nAurelio\nBennie\nChris\nDennis\nEarle\nErnesto\nGregory\nMatthew\nOwen\nSantiago\nSantos\nSteven\nTrinidad\nAlejandro\nDominic\nFredrick\nGregorio\nGuillermo\nIsaac\nNoel\nPat\nPerry\nAgustin\nAldo\nAlton\nAndy\nCarmen\nCruz\nDomingo\nErwin\nFreddie\nGail\nHideo\nHiroshi\nHomer\nHorace\nJackie\nJackson\nReginald\nReyes\nTatsuo\nAugust\nBud\nCarroll\nEliseo\nElwood\nKazuo\nRex\nRoderick\nTerry\nAl\nBenito\nBobbie\nEd\nElbert\nEldon\nElvin\nGus\nLionel\nMargarito\nMary\nNeal\nPhil\nReuben\nArchie\nArnulfo\nBarry\nBoyd\nCyril\nEllis\nFidel\nFlorentino\nGrant\nHarley\nHugo\nIra\nIrvin\nJoel\nMickey\nMorton\nMurray\nNelson\nNicolas\nRene\nRolland\nSherman\nTsutomu\nWilfred\nBrian\nBryce\nClement\nDonn\nDudley\nElton\nEmmett\nErvin\nGonzalo\nGrover\nIrwin\nIsmael\nJessie\nJorge\nJulius\nJunior\nLucio\nMasao\nRoman\nRudolfo\nSalvatore\nStewart\nToshio\nAbel\nAdrian\nArt\nBarney\nBertram\nCornelius\nDewey\nDuncan\nEdwardo\nHilario\nHoover\nIsabel\nKen\nKent\nLaverne\nMarcelino\nMaynard\nMiles\nMinoru\nOtto\nPorfirio\nRamiro\nRandolph\nRaymundo\nRogelio\nRudolf\nStanford\nValentine\nAustin\nBurt\nClark\nEsteban\nFermin\nFlorencio\nFreddy\nGale\nHumberto\nIsamu\nJiro\nKay\nKenji\nKiyoshi\nLavern\nMervin\nMervyn\nNatividad\nNorval\nRonnie\nRosalio\nRosario\nRoyal\nRufino\nTeruo\nTimothy\nVentura\nVern\nVerne\nWilson\nYukio\nAbelardo\nAlden\nAmador\nAnton\nBernardo\nBillie\nCelso\nChristopher\nCraig\nDallas\nDana\nDarold\nDarrel\nDaryl\nDenny\nDolores\nEdmundo\nEfren\nEmanuel\nEmery\nFederico\nFrankie\nHal\nIsadore\nLeonardo\nLeopoldo\nMariano\nMerlin\nNobuo\nPascual\nReynaldo\nRosendo\nSanford\nShigeru\nShirley\nSocorro\nWaldo\nWally\nWard\nWilmer\nWinston\nAaron\nAgapito\nAlvaro\nAmado\nAsa\nBeverly\nBryan\nCarol\nCharley\nChuck\nClifton\nDarwin\nDonovan\nElliott\nFaustino\nFranklyn\nGalen\nGayle\nGil\nGustavo\nHans\nIan\nIgnatius\nJacinto\nJacob\nJaime\nJohnie\nKatsumi\nKenny\nLoyd\nLyman\nMack\nMasami\nMerton\nMillard\nMitchell\nMoises\nNed\nRaoul\nRaymon\nRodrigo\nRupert\nScott\nSusumu\nTadashi\nTakashi\nVal\nValentin\nVan\nVirginia\nWilbert\nYutaka\nAdam\nAndre\nAscencion\nBart\nBarton\nBradley\nClemente\nCleo\nConrado\nDelmar\nDelmer\nDemetrio\nDoyle\nEarnest\nEddy\nEllsworth\nEmory\nEpifanio\nEsequiel\nEulalio\nEvan\nEzequiel\nFausto\nForest\nFortunato\nFransisco\nFrederic\nGarry\nGaylord\nGerard\nGeronimo\nGuido\nHarrison\nHenri\nHisao\nInez\nIsidro\nJon\nJudson\nKeiji\nKendall\nLauren\nLesley\nLino\nLuther\nMacario\nMarcus\nMasaru\nMerritt\nMicheal\nMorgan\nMoses\nNello\nNewton\nNicky\nNorbert\nOctavio\nOtis\nPasqual\nPercy\nRobin\nRollin\nSal\nSatoshi\nSherwood\nShiro\nStan\nSydney\nSylvester\nTeodoro\nTruman\nWarner\nWerner\nWiley\nYoshiaki\nYoshio\nYsidro\nRobert\nJohn\nRichard\nWilliam\nDonald\nJames\nGeorge\nCharles\nJack\nFrank\nDavid\nEdward\nJoe\nRaymond\nJoseph\nManuel\nThomas\nPaul\nKenneth\nAlbert\nHarold\nHenry\nArthur\nRalph\nWalter\nEugene\nBill\nHarry\nRonald\nJose\nFred\nBob\nGerald\nStanley\nDon\nRoy\nLouis\nHerbert\nDaniel\nNorman\nGilbert\nAlfred\nLawrence\nErnest\nCarl\nJerry\nTony\nPeter\nHoward\nJesus\nLeonard\nRay\nEarl\nGordon\nJuan\nVictor\nJim\nBilly\nLloyd\nAntonio\nClarence\nMelvin\nClifford\nEdwin\nFrancisco\nGene\nAnthony\nGlenn\nRaul\nDouglas\nMarvin\nPhilip\nDick\nTheodore\nLeroy\nSalvador\nTom\nJimmy\nMartin\nMichael\nAndrew\nJohnny\nWayne\nCarlos\nVernon\nBruce\nLeo\nLarry\nEddie\nRamon\nLeland\nRoger\nRudy\nLuis\nMike\nRussell\nVincent\nAlvin\nJimmie\nRuben\nElmer\nFrancis\nPedro\nLee\nFloyd\nSamuel\nWallace\nAlan\nJesse\nPhillip\nSam\nWarren\nAllen\nTommy\nFrederick\nAlfredo\nBenjamin\nDale\nLeslie\nAlfonso\nPete\nBobby\nKeith\nTed\nGary\nRoberto\nWesley\nHarvey\nRoland\nLewis\nMilton\nArnold\nLester\nArmando\nBernard\nRodolfo\nWillard\nHerman\nLeon\nLouie\nRicardo\nRudolph\nMiguel\nWilbur\nClyde\nAlex\nGlen\nHugh\nRafael\nAllan\nDan\nPatrick\nNick\nBen\nCecil\nDuane\nEverett\nOscar\nArturo\nLaurence\nMario\nChester\nHector\nMaurice\nStephen\nRodney\nAngel\nClaude\nDean\nIgnacio\nEnrique\nSteve\nDennis\nEdgar\nFelix\nJohnnie\nJulian\nLowell\nJay\nJerome\nAngelo\nBenny\nByron\nGuadalupe\nPat\nJess\nDelbert\nBert\nFernando\nNeil\nVirgil\nAlexander\nDanny\nDarrell\nEdmund\nGabriel\nCalvin\nEmilio\nMarion\nMark\nAlberto\nJulio\nOliver\nConrad\nErnesto\nFranklin\nIrving\nLyle\nMalcolm\nMorris\nDomingo\nKarl\nWillie\nClayton\nJackie\nSidney\nAdolfo\nBurton\nCharlie\nFrankie\nGregory\nGuillermo\nHomer\nRex\nDave\nElias\nFidel\nFreddie\nGilberto\nGuy\nLoren\nAugustine\nBoyd\nEmil\nMax\nMerle\nSammy\nErnie\nGrant\nHubert\nMarshall\nMyron\nOrville\nPablo\nStuart\nAugust\nBennie\nBuddy\nCurtis\nFredrick\nGonzalo\nGregorio\nGus\nIsaac\nJean\nPerry\nPhil\nTomas\nEd\nKen\nLupe\nNicolas\nReynaldo\nAndres\nArmand\nClinton\nCruz\nDarrel\nDonn\nEarle\nMervin\nRoman\nSherman\nSimon\nTeddy\nTerry\nTrinidad\nVicente\nWendell\nWilfred\nAdolph\nAkira\nAmador\nArchie\nCarroll\nEric\nJoaquin\nLorenzo\nLynn\nMary\nNathan\nNeal\nNoel\nOtto\nYoshio\nAldo\nBud\nDwight\nEduardo\nHarlan\nJoel\nLeopoldo\nRaymundo\nRoderick\nRoss\nBarry\nCornelius\nElwood\nFaustino\nFelipe\nHiroshi\nHorace\nJavier\nJerald\nJorge\nMargarito\nMerrill\nNicholas\nRolland\nSantiago\nTimothy\nWillis\nAlton\nBillie\nBruno\nElbert\nErvin\nForrest\nGustavo\nIsmael\nJessie\nLuther\nNed\nNelson\nOwen\nPorfirio\nRamiro\nRefugio\nRudolfo\nAbel\nArnulfo\nArt\nBarney\nCraig\nDaryl\nDoyle\nDuncan\nEldon\nErwin\nHal\nIra\nJulius\nKenji\nLeonardo\nLionel\nLorin\nMickey\nMorton\nMoses\nRene\nReyes\nSalvatore\nSteven\nWard\nYukio\nAdrian\nAl\nAlden\nAlejandro\nBernardo\nCandelario\nDallas\nDominic\nDudley\nEdmond\nEllsworth\nFederico\nFermin\nFlorentino\nHans\nHarley\nHilario\nHumberto\nIrvin\nJacob\nMarcos\nMillard\nMitchell\nReginald\nRogelio\nRonnie\nSanford\nSantos\nStewart\nVern\nWilson\nAbraham\nAlva\nAndre\nAndy\nArlen\nBarbara\nBasil\nCarlo\nClement\nEddy\nEdmundo\nEllis\nElton\nElvin\nEsteban\nEusebio\nFredric\nGalen\nHugo\nIrwin\nIsabel\nIvan\nJackson\nJaime\nJasper\nLucio\nMarcus\nMatthew\nMaynard\nMervyn\nMinoru\nNoboru\nVaughn\nVentura\nYgnacio\nAgustin\nAmado\nAnastacio\nAurelio\nBenito\nBernabe\nBrian\nClark\nCleo\nDexter\nDolores\nEfren\nElmo\nFreddy\nGaylord\nGerard\nGerardo\nGrover\nKay\nKiyoshi\nLenard\nMasao\nMasaru\nNorbert\nNorris\nOrrin\nPreston\nReed\nRosendo\nRudolf\nSal\nShirley\nStanford\nSydney\nTadashi\nToshio\nWally\nWilmer\nWinston\nYsidro\nAkio\nArvid\nAubrey\nAustin\nBeverly\nCharley\nChris\nClifton\nCyril\nDenny\nDewey\nDonato\nEli\nEvan\nFerdinand\nFlorencio\nForest\nFrederic\nGarry\nGenaro\nGino\nHeriberto\nHideo\nJacinto\nJerrold\nKenney\nKent\nKevin\nLaverne\nMarcelino\nMarcelo\nMiller\nMilo\nMorgan\nNorton\nOtis\nPasqual\nRaleigh\nRandall\nRobin\nRolf\nRosalio\nRosario\nRoscoe\nRowland\nSpencer\nStan\nSylvester\nTeruo\nTroy\nVance\nVerne\nVito\nWillian\nAugustin\nBlaine\nBradley\nBuster\nCarlton\nCarol\nClair\nClay\nDarryl\nDavis\nDerald\nDonal\nDonovan\nEarnest\nEliseo\nElwin\nEpitacio\nEulalio\nFletcher\nFoster\nGail\nGarland\nGerry\nHarrison\nHeraldo\nHoover\nIsamu\nIsidoro\nJere\nJon\nJunior\nKenny\nLane\nLauren\nLoyd\nLuciano\nLucien\nMacario\nMariano\nMarilyn\nMarino\nMas\nMathew\nMauro\nMaxwell\nMerlin\nMichio\nMiles\nMurray\nNarciso\nNatividad\nOctavio\nPierre\nRito\nRodrigo\nRoyce\nSammie\nScott\nSheldon\nShigeru\nSocorro\nSterling\nTakashi\nTeodoro\nTheron\nTim\nTsutomu\nValentine\nWilburn\nWiley\nWilford\nRobert\nRichard\nJohn\nWilliam\nDonald\nJames\nCharles\nGeorge\nFrank\nJack\nDavid\nEdward\nJoe\nRaymond\nThomas\nJoseph\nPaul\nKenneth\nRonald\nHarold\nAlbert\nArthur\nManuel\nHenry\nRalph\nWalter\nDon\nFred\nJose\nEugene\nBill\nLouis\nBob\nGerald\nNorman\nErnest\nHarry\nDaniel\nGilbert\nRoy\nAlfred\nStanley\nJerry\nHoward\nLawrence\nTony\nPeter\nLeonard\nRay\nJuan\nHerbert\nEarl\nBilly\nJim\nGordon\nCarl\nJesus\nDouglas\nVictor\nLloyd\nPhilip\nDick\nAntonio\nWayne\nGene\nLeo\nMichael\nTom\nWarren\nEdwin\nLeroy\nBruce\nLarry\nClarence\nDale\nEddie\nRoger\nAnthony\nRuben\nJohnny\nClifford\nJimmy\nMelvin\nBobby\nSalvador\nMarvin\nRussell\nCarlos\nJimmie\nFrancis\nTommy\nMike\nTheodore\nRamon\nRoberto\nFrancisco\nGlenn\nMartin\nFloyd\nRaul\nVernon\nVincent\nLeslie\nAndrew\nAllen\nBernard\nSamuel\nAlan\nLee\nLuis\nRudy\nPete\nElmer\nPedro\nPhillip\nTed\nWallace\nRoland\nAlvin\nJesse\nAllan\nPatrick\nAlex\nWesley\nClyde\nBenjamin\nFrederick\nGary\nOscar\nRudolph\nSam\nArmando\nHarvey\nKeith\nMilton\nArnold\nLeland\nLewis\nLouie\nAlfonso\nBen\nAngel\nNick\nGlen\nLeon\nDan\nNeil\nFernando\nMaurice\nDuane\nMiguel\nAlfredo\nDanny\nHugh\nDennis\nJay\nLester\nMario\nEdgar\nRafael\nChester\nDean\nEdmund\nEnrique\nEverett\nHerman\nHector\nJohnnie\nRicardo\nStephen\nAlexander\nClaude\nWillard\nBenny\nFranklin\nJulian\nBuddy\nGabriel\nPablo\nSidney\nDarrell\nDelbert\nFelix\nFredrick\nRodney\nRodolfo\nWillie\nSteve\nBert\nCecil\nWilbur\nJerome\nLoren\nAngelo\nAurelio\nCharlie\nJulio\nLaurence\nLupe\nMalcolm\nTeddy\nTerry\nAlberto\nArturo\nByron\nFreddie\nGuadalupe\nMark\nCurtis\nErnesto\nLyle\nMorris\nStuart\nVirgil\nBarry\nDave\nPat\nAndres\nAugustine\nBennie\nEduardo\nGuy\nOliver\nCalvin\nConrad\nIgnacio\nIrving\nJoaquin\nSammy\nTomas\nClayton\nClinton\nFelipe\nJackie\nSteven\nBurton\nLorenzo\nLowell\nMax\nEdmond\nElias\nHomer\nJean\nKarl\nMonte\nMyron\nRex\nAdolph\nGregory\nJess\nMerle\nVicente\nWilfred\nSantiago\nWillis\nAdolfo\nBoyd\nDwight\nGuillermo\nOwen\nPerry\nSimon\nAgustin\nEldon\nErnie\nFidel\nJessie\nLynn\nMarcelino\nOrville\nRamiro\nWilbert\nCarlton\nChris\nChristopher\nElbert\nEmilio\nGilberto\nHarlan\nHarley\nHorace\nMary\nNicholas\nRoss\nArchie\nClark\nDominic\nEmil\nForrest\nFrankie\nGino\nGrant\nMurray\nNicolas\nRefugio\nSanford\nStewart\nAlejandro\nAugust\nBruno\nCarroll\nCornelius\nEllis\nHideo\nIra\nIvan\nJaime\nKen\nLaverne\nLionel\nLuther\nMervyn\nNelson\nPhil\nRonnie\nAdrian\nBud\nClifton\nDomingo\nEd\nFlorentino\nGus\nHugo\nJoel\nJorge\nJunior\nMarcus\nMargarito\nMarion\nMarshall\nMerrill\nNeal\nReynaldo\nAbel\nAl\nDudley\nElwood\nErwin\nGustavo\nHilario\nJavier\nKent\nLonnie\nSherman\nTimothy\nTrinidad\nWard\nWendell\nYoshio\nAbraham\nBernardo\nCarmen\nCraig\nCruz\nDelmar\nDonn\nEmmett\nEric\nGuido\nHarrison\nKazuo\nMatthew\nMerlin\nNoboru\nNoel\nReginald\nRolland\nRosendo\nSheldon\nWally\nAkira\nAldo\nAlton\nBarney\nBillie\nDana\nEarle\nFrederic\nGale\nGonzalo\nGregorio\nHal\nIrvin\nJulius\nLenard\nMariano\nMillard\nRandall\nRaoul\nRollin\nRowland\nRoyal\nSalvatore\nSantos\nStanford\nVerne\nAaron\nArt\nBernie\nClive\nDario\nDenny\nElton\nGenaro\nHumberto\nIrwin\nIsaac\nKay\nKevin\nLeonardo\nLeopoldo\nMilo\nMoses\nNathan\nOtis\nOtto\nRandolph\nReno\nReuben\nReymundo\nRoman\nRudolfo\nShirley\nTeodoro\nVan\nYgnacio\nAdam\nAnastacio\nAndy\nAnselmo\nArlen\nBasil\nBenito\nBertram\nBlaine\nBrian\nConrado\nCyril\nDarrel\nEarnest\nEddy\nEllsworth\nEmile\nErvin\nGail\nGrover\nHans\nHiroshi\nHoover\nHubert\nIsamu\nJackson\nJoan\nJon\nLavern\nMarcos\nMervin\nMicheal\nMickey\nPercy\nRoderick\nRudolf\nSaul\nWilber\nAlden\nAlphonso\nAntone\nApolinar\nArmand\nAubrey\nBernabe\nBradford\nCandelario\nCarlo\nCarol\nCatarino\nDelfino\nDino\nDoyle\nDuke\nElliott\nElvin\nEsteban\nEvan\nFidencio\nFlorencio\nGaylord\nGraham\nHerb\nIan\nIsmael\nJohnie\nKenji\nLoyd\nMagdaleno\nMarcel\nMaria\nMathew\nMilan\nMinoru\nMitchell\nMitsuo\nNatividad\nNorbert\nPascual\nPasqual\nPorfirio\nRito\nRobin\nRubin\nRussel\nStanton\nSylvester\nTerence\nTeruo\nToshio\nVal\nVern\nVirginia\nWaldo\nWeldon\nWilford\nWinston\nYukio\nAlvaro\nAmos\nAndre\nAnton\nAustin\nBarbara\nBlas\nBonifacio\nBradley\nCarrol\nCipriano\nDante\nDarold\nDarwin\nDaryl\nDenis\nDenton\nDewey\nDonnie\nElden\nEmery\nEulalio\nFederico\nFermin\nFranklyn\nFreddy\nGarth\nGerard\nGerardo\nHarris\nHelen\nHoyt\nJeff\nJerald\nJere\nJerrold\nJoesph\nJosephine\nKiyoshi\nLamar\nLauren\nLino\nLuciano\nLucio\nMac\nMacario\nMarco\nMasao\nMaynard\nMerritt\nMerton\nMitsuru\nMoises\nMorton\nNed\nNoble\nNorris\nOmar\nOran\nOrval\nPatricio\nRene\nReyes\nRodrigo\nRojelio\nRoyce\nRupert\nShigeru\nSterling\nSydney\nTadashi\nTakeshi\nTim\nTommie\nValentine\nWillam\nWinfield\nYsidro\nRobert\nRichard\nJohn\nWilliam\nDonald\nJames\nCharles\nGeorge\nJack\nDavid\nFrank\nEdward\nRonald\nThomas\nRaymond\nJoe\nJoseph\nKenneth\nPaul\nAlbert\nManuel\nHenry\nArthur\nDon\nHarold\nRalph\nFred\nBill\nWalter\nNorman\nGerald\nEugene\nBob\nJerry\nHarry\nJose\nLawrence\nStanley\nDaniel\nLouis\nErnest\nPeter\nAlfred\nHoward\nRoy\nGilbert\nRay\nCarl\nTony\nDouglas\nMarvin\nJim\nLeonard\nGordon\nHerbert\nEarl\nBilly\nDick\nJuan\nJesus\nLloyd\nGlenn\nAnthony\nMelvin\nLarry\nRoger\nMichael\nBruce\nJimmy\nLeroy\nPhilip\nEddie\nTheodore\nVictor\nWayne\nClarence\nLeo\nJohnny\nRussell\nTom\nEdwin\nRuben\nBobby\nSalvador\nRudy\nDale\nTommy\nAntonio\nRaul\nAlan\nClifford\nVincent\nCarlos\nVernon\nGene\nAndrew\nPete\nMilton\nAllen\nMartin\nMike\nKeith\nJimmie\nWarren\nRamon\nLee\nGary\nFrancis\nAlvin\nJesse\nGuadalupe\nTed\nArnold\nBenjamin\nFrederick\nSamuel\nFrancisco\nPatrick\nWallace\nElmer\nFloyd\nAlex\nDan\nLuis\nMiguel\nDuane\nGlen\nLeland\nRoland\nPhillip\nRoberto\nClyde\nHugh\nRudolph\nAllan\nHarvey\nBernard\nPedro\nStephen\nLester\nNeil\nWesley\nLeslie\nLewis\nArmando\nMaurice\nMario\nAlfonso\nChester\nDean\nOscar\nJerome\nLouie\nBenny\nEnrique\nRafael\nAlfredo\nHerman\nJohnnie\nSam\nAngelo\nCharlie\nEverett\nLeon\nRodney\nBen\nDanny\nJay\nFelix\nEdgar\nHector\nClaude\nLowell\nMark\nSteve\nDelbert\nDennis\nWillard\nAlexander\nConrad\nDarrell\nNick\nWilbur\nBert\nJulian\nLupe\nLyle\nRodolfo\nAngel\nFranklin\nLaurence\nLoren\nVirgil\nCecil\nJackie\nWillis\nJess\nSammy\nCurtis\nWillie\nBuddy\nEdmund\nTerry\nAugustine\nDave\nFelipe\nFernando\nHubert\nJean\nMalcolm\nAlberto\nBarry\nJulio\nMarion\nRonnie\nSidney\nTeddy\nDwight\nHomer\nPablo\nRicardo\nClinton\nMorris\nOliver\nRoss\nByron\nCalvin\nElias\nFrankie\nIrving\nKen\nLynn\nMyron\nArchie\nBud\nBurton\nGabriel\nGuillermo\nIgnacio\nJoel\nEmil\nGregorio\nMarshall\nMax\nMerle\nNeal\nReginald\nAl\nAurelio\nChris\nClayton\nEd\nIvan\nJessie\nKarl\nKay\nPat\nArturo\nForrest\nFreddie\nGregory\nIsmael\nRamiro\nSteven\nStuart\nWendell\nAlejandro\nEmilio\nEric\nErnesto\nGrant\nKent\nLonnie\nMervin\nNoel\nReynaldo\nTimothy\nAdolph\nAgustin\nDonn\nEarle\nFredrick\nGuy\nJoaquin\nLorenzo\nPerry\nPhil\nSantos\nSheldon\nTomas\nCruz\nEldon\nGilberto\nHorace\nJorge\nMary\nNicholas\nAdolfo\nAlton\nAugust\nBruno\nCarroll\nEdmond\nEduardo\nGus\nHarlan\nMickey\nMonte\nMorton\nRex\nSherman\nStanford\nTrinidad\nAbel\nAndy\nBillie\nChristopher\nDarrel\nElbert\nElvin\nFaustino\nIrwin\nJulius\nKevin\nLionel\nMariano\nMerlin\nOrville\nOwen\nRefugio\nRene\nSalvatore\nValentine\nVan\nVerne\nWard\nAkira\nBarney\nBennie\nBobbie\nBrian\nCraig\nDallas\nDewey\nDudley\nErvin\nHarley\nJaime\nJavier\nNed\nReyes\nStewart\nWarner\nYukio\nAlden\nArlen\nArmand\nBarbara\nDaryl\nElden\nEllis\nErnie\nFidel\nGonzalo\nGustavo\nHal\nHollis\nIrvin\nJackson\nJudson\nMarcos\nMargarito\nMitchell\nNicolas\nRoman\nSimon\nTakashi\nWally\nWilfred\nAndres\nBertram\nBoyd\nDino\nElwood\nEmmett\nErwin\nFrederic\nGail\nGale\nHans\nHideo\nHiroshi\nJunior\nKazuo\nMervyn\nMurray\nNathan\nNelson\nRaoul\nVicente\nWilson\nAldo\nAllyn\nAndre\nArt\nAustin\nBenito\nBeverly\nCarlton\nClay\nClifton\nCornelius\nDelmar\nDenny\nDominic\nEdmundo\nElwyn\nGaylord\nHarrison\nHugo\nHumberto\nIra\nJerrold\nMaynard\nMerrill\nMiles\nOtto\nRogelio\nRoscoe\nRosendo\nSanford\nSaul\nShirley\nSylvester\nTim\nWilbert\nAlva\nAmado\nBarton\nBasil\nBernardo\nBernie\nBrooks\nCharley\nClark\nClement\nCliff\nDario\nDenis\nDomingo\nFay\nFermin\nFlorentino\nForest\nGenaro\nGerry\nGino\nIsabel\nJasper\nJerald\nJerold\nJordan\nKenny\nKiyoshi\nLeopoldo\nLincoln\nLoyd\nLuciano\nLucio\nLuther\nMargaret\nMasami\nMatthew\nMinoru\nMonty\nPascual\nRandolph\nRemo\nRodger\nRolland\nRollin\nRoyal\nRudolfo\nScott\nSeferino\nStanton\nTheadore\nValente\nVern\nWade\nWilford\nYoshio\nYsmael\nAdelbert\nAdrian\nBetty\nBlaine\nBlas\nCarlo\nCarmen\nCarrol\nChuck\nClair\nCyril\nDarryl\nDell\nDolores\nDonnie\nEddy\nElroy\nEmery\nEmile\nEvan\nFarrell\nFausto\nFransisco\nGarland\nGarry\nGarth\nGayle\nGuido\nHank\nIan\nIsaac\nJacob\nJoey\nJon\nJules\nKenji\nLino\nLyman\nMarcello\nMarcelo\nMathew\nMicheal\nMillard\nNathaniel\nNatividad\nNels\nNorbert\nOsamu\nPreston\nRaymundo\nReuben\nRobin\nRoderick\nRudolf\nRussel\nSantiago\nSatoru\nShigeru\nShiro\nSpencer\nTakeshi\nTerrence\nUrban\nVirginia\nWerner\nWilmer\nYsidro\nYutaka\nRobert\nJohn\nRichard\nWilliam\nJames\nDonald\nCharles\nGeorge\nRonald\nDavid\nFrank\nJack\nEdward\nKenneth\nJoe\nRaymond\nThomas\nPaul\nJoseph\nAlbert\nDon\nArthur\nManuel\nRalph\nHenry\nHarold\nGerald\nBill\nBob\nJerry\nWalter\nEugene\nFred\nNorman\nGilbert\nDaniel\nErnest\nHarry\nLouis\nStanley\nLawrence\nCarl\nRoy\nJose\nAlfred\nRay\nPeter\nLeonard\nDick\nJim\nHoward\nMichael\nLarry\nTony\nTom\nGordon\nRoger\nPhilip\nAnthony\nHerbert\nBilly\nEddie\nJimmy\nMarvin\nEarl\nBruce\nLeroy\nVictor\nDouglas\nWayne\nClarence\nGary\nLloyd\nMelvin\nGene\nJesus\nJohnny\nGlenn\nEdwin\nRuben\nLee\nRussell\nDale\nRudy\nTommy\nJimmie\nBobby\nClifford\nWarren\nPhillip\nTed\nVernon\nRaul\nTheodore\nMike\nWallace\nLeo\nMilton\nStephen\nCarlos\nLuis\nAllen\nSalvador\nAlan\nAntonio\nArnold\nFloyd\nJuan\nFrederick\nMartin\nAlvin\nFrancis\nKeith\nLouie\nPete\nSamuel\nAndrew\nBernard\nVincent\nWesley\nRamon\nClyde\nElmer\nLeon\nJesse\nAlfonso\nDennis\nAllan\nBenjamin\nHugh\nLewis\nHarvey\nPatrick\nAlex\nDuane\nFranklin\nHerman\nLester\nPedro\nRodney\nBen\nRoland\nGlen\nWilbur\nBarry\nDanny\nLeland\nDan\nJay\nLeslie\nRoberto\nDean\nFrancisco\nNeil\nSteve\nSam\nDarrell\nMaurice\nNick\nAlexander\nArmando\nCecil\nDelbert\nRafael\nRonnie\nRudolph\nJerome\nJess\nKarl\nEdmund\nFernando\nMiguel\nOscar\nRicardo\nEverett\nMario\nAngelo\nMark\nSteven\nTerry\nAlfredo\nAngel\nBenny\nChester\nLowell\nBert\nDave\nCharlie\nFreddie\nGuadalupe\nLaurence\nRodolfo\nDwight\nMax\nSidney\nByron\nClaude\nFelix\nIgnacio\nJoel\nJohnnie\nClayton\nEnrique\nJackie\nJulian\nWillard\nArturo\nBurton\nEdgar\nLoren\nCalvin\nKen\nMalcolm\nNoel\nTeddy\nAlberto\nBuddy\nForrest\nHomer\nStuart\nFredrick\nHarlan\nHector\nLyle\nRex\nRoss\nCurtis\nJulio\nVirgil\nWillie\nAndy\nClinton\nErnie\nOrville\nPhil\nTimothy\nClark\nConrad\nElton\nGale\nLionel\nLorenzo\nMarshall\nMorris\nMyron\nNicholas\nRefugio\nErnesto\nGregory\nLupe\nPat\nReynaldo\nWillis\nClifton\nEduardo\nEmmett\nEric\nGrant\nHal\nHarley\nHubert\nIrvin\nIrving\nIvan\nLynn\nAl\nAldo\nAugustine\nCarroll\nChris\nChuck\nEd\nEmil\nEmilio\nGabriel\nGilberto\nGuillermo\nJean\nMarion\nNeal\nSammy\nAdrian\nEarle\nEdmond\nJoaquin\nMerle\nPablo\nRene\nRoderick\nWilfred\nAgustin\nAlejandro\nAugust\nBennie\nBrian\nDaryl\nDominic\nErwin\nGarry\nGuy\nJessie\nMickey\nMorton\nOliver\nOtis\nOtto\nPorfirio\nReginald\nStewart\nTrinidad\nAdolph\nArchie\nAurelio\nBud\nCruz\nDenny\nDonn\nErvin\nFidel\nGregorio\nJerald\nJulius\nKent\nLucio\nMerrill\nMicheal\nMonte\nSantiago\nSylvester\nTomas\nWendell\nArlen\nHideo\nIrwin\nJacob\nJorge\nJunior\nLaverne\nMary\nMervin\nNelson\nOwen\nPerry\nRollin\nSalvatore\nSheldon\nVicente\nAlden\nAmado\nArmand\nArt\nCarlton\nDoyle\nEddy\nElias\nHarrison\nIan\nJan\nKazuo\nKenny\nLeopoldo\nLonnie\nMarcus\nMeliton\nMelvyn\nMerlin\nMervyn\nMillard\nMitchell\nNathan\nPascual\nRufus\nSanford\nSterling\nVerne\nWarner\nBertram\nBillie\nCharley\nCraig\nDarrel\nDelmar\nDewey\nDomingo\nDudley\nEldon\nFrederic\nGustavo\nIra\nJavier\nJon\nKevin\nMarcelino\nMasao\nMiles\nMurray\nPercy\nRobin\nRolland\nRoman\nRoyce\nSherman\nStanford\nTerence\nWilbert\nYoshio\nAkira\nAndres\nAubrey\nBruno\nBurt\nCyril\nEarnest\nEliseo\nFrankie\nFredric\nGenaro\nGus\nHans\nHorace\nIsmael\nJustin\nLincoln\nLuther\nMorgan\nRandall\nReuben\nRodger\nRosalio\nSimon\nTad\nTakashi\nTakeshi\nVern\nAbelardo\nAdolfo\nAustin\nBarney\nBoyd\nBradford\nCarlo\nConrado\nCourtney\nDallas\nFrances\nGail\nGalen\nGaylord\nHumberto\nJaime\nJere\nKiyoshi\nMack\nMarcelo\nMarcos\nMargaret\nMatthew\nMerlyn\nNed\nNolan\nNorbert\nOrval\nRaymon\nRolf\nRoyal\nRudolf\nSantos\nShirley\nStan\nTroy\nWally\nWilford\nAbel\nAdam\nAlphonso\nAlvaro\nBarton\nBenito\nBlaine\nBradley\nCarleton\nCarmen\nClement\nColin\nDario\nDarryl\nDarwin\nDee\nDickie\nDino\nDion\nDoug\nDwain\nEfren\nElbert\nEllis\nElwood\nEmanuel\nFelipe\nFidencio\nFranklyn\nGerry\nGloria\nHarland\nHarris\nHaruo\nHiroshi\nHugo\nIsaac\nJason\nJerold\nKay\nKermit\nMargarito\nMariano\nMelville\nMonroe\nNatividad\nPatricia\nRamiro\nRandolph\nRemo\nRosendo\nRowland\nScott\nSeymour\nSpencer\nSydney\nTheron\nValentin\nWade\nWard\nYukio\nRobert\nRichard\nJohn\nJames\nWilliam\nDonald\nCharles\nGeorge\nRonald\nDavid\nFrank\nJack\nEdward\nThomas\nJoe\nKenneth\nPaul\nRaymond\nJoseph\nDon\nArthur\nGerald\nAlbert\nFred\nHenry\nBill\nJerry\nNorman\nRalph\nHarold\nManuel\nWalter\nBob\nLawrence\nHarry\nGary\nLouis\nErnest\nEugene\nRoy\nLarry\nDaniel\nPeter\nGilbert\nAlfred\nMichael\nJim\nRay\nCarl\nStanley\nGordon\nHoward\nRoger\nTony\nJose\nDouglas\nDick\nLeonard\nLeroy\nVictor\nPhilip\nWayne\nMelvin\nEarl\nTom\nAnthony\nEdwin\nEddie\nMarvin\nLee\nBruce\nBilly\nDale\nJimmy\nJohnny\nHerbert\nGene\nClifford\nPhillip\nFranklin\nCarlos\nTommy\nClarence\nWarren\nJimmie\nJesus\nGlenn\nLloyd\nAlan\nLeo\nRaul\nMartin\nRudy\nAllen\nTheodore\nRuben\nRussell\nMike\nVincent\nBen\nFrancis\nDennis\nJesse\nVernon\nAlvin\nTed\nArnold\nRodney\nClyde\nLeslie\nWallace\nBernard\nBobby\nPatrick\nKeith\nRoland\nAndrew\nAntonio\nFloyd\nPete\nAlex\nRamon\nDanny\nLewis\nFrederick\nRonnie\nSalvador\nSamuel\nAlfonso\nDuane\nJuan\nLuis\nWesley\nDean\nHarvey\nRudolph\nDarrell\nLeland\nBenjamin\nDan\nStephen\nJay\nLester\nMilton\nLeon\nAllan\nLouie\nPedro\nSam\nFelix\nFrancisco\nClaude\nHugh\nNeil\nTerry\nJess\nNick\nBarry\nBenny\nElmer\nEverett\nMiguel\nArmando\nMark\nDelbert\nKarl\nMaurice\nOscar\nChester\nJerome\nLaurence\nLoren\nWilbur\nAngel\nCharlie\nFernando\nWillard\nGabriel\nHerman\nStuart\nGlen\nHector\nJohnnie\nLyle\nMario\nFreddie\nLowell\nMax\nSteve\nCalvin\nDave\nDwight\nJulian\nRafael\nBert\nBuddy\nIgnacio\nJoel\nLupe\nEdgar\nNoel\nRoberto\nAlfredo\nGregory\nHomer\nJackie\nJon\nPat\nBud\nRodolfo\nEd\nGrant\nMarshall\nMerle\nMorris\nAl\nCecil\nConrad\nFredrick\nOrville\nPhil\nSidney\nSteven\nTeddy\nEdmund\nEmilio\nForrest\nGuy\nLynn\nMalcolm\nNicholas\nRex\nRicardo\nVirgil\nAlexander\nAngelo\nCurtis\nEldon\nEnrique\nEric\nErnie\nGuadalupe\nHubert\nKen\nOliver\nRoss\nSammy\nWillie\nAbraham\nAlberto\nBrian\nClayton\nElias\nElton\nEmil\nFelipe\nWillis\nAdolph\nAugustine\nBennie\nIrwin\nJoaquin\nJulio\nKent\nLorenzo\nOwen\nCarroll\nMyron\nPablo\nAlton\nArt\nArturo\nBurton\nDaryl\nDenis\nElvin\nGus\nHarlan\nMarion\nAdolfo\nClark\nErnesto\nGarry\nGilberto\nJacob\nJerrold\nJessie\nMarcus\nMonte\nSherman\nStewart\nTimothy\nAbel\nDominic\nDonn\nGonzalo\nHal\nHarley\nJean\nJerald\nJulius\nKay\nNeal\nRefugio\nRoderick\nSalvatore\nWard\nWendell\nWilbert\nAndy\nAugust\nAurelio\nBoyd\nByron\nDelano\nDoyle\nEarnest\nFaustino\nGale\nIsmael\nJaime\nKiyoshi\nLionel\nMary\nMervin\nMurray\nReginald\nReuben\nSheldon\nTrinidad\nVern\nWilfred\nArmand\nCarol\nChristopher\nClement\nDarwin\nEduardo\nFranklyn\nGalen\nHiroshi\nIvan\nMervyn\nMickey\nOtis\nRobin\nRodger\nRolland\nScott\nSimon\nVicente\nWally\nAlejandro\nAndres\nBruno\nCarlo\nCarlton\nCarmen\nChuck\nClinton\nDenny\nDudley\nFidel\nFrankie\nFredric\nGail\nHumberto\nIsaac\nKevin\nLeonardo\nMarcos\nMitchell\nMorton\nNelson\nPerry\nRandall\nRandolph\nRon\nRudolfo\nSal\nSantos\nSebastian\nSylvester\nTroy\nYoshio\nAgustin\nBernie\nClifton\nCruz\nDarryl\nDelmer\nEdmond\nElbert\nErwin\nFreddy\nGarth\nGenaro\nGustavo\nHans\nIrving\nJerold\nKenny\nLaverne\nLonnie\nMarcelino\nMariano\nMathew\nMatthew\nMerrill\nMoses\nNathan\nNorbert\nOtto\nRene\nVerne\nArnulfo\nAustin\nBarbara\nBertram\nBobbie\nBuster\nDarrel\nDee\nDelmar\nDewey\nDwain\nEliseo\nElwood\nEsteban\nEvan\nFrederic\nGerard\nGuillermo\nHaruo\nHorace\nIrvin\nJavier\nJorge\nJunior\nKermit\nMac\nMarcelo\nMaximo\nNickolas\nPierre\nRamiro\nRaoul\nReynaldo\nRogelio\nRollin\nRonny\nRosario\nRoyce\nSanford\nStanton\nTomas\nVan\nXavier\nAdam\nAdrian\nAlden\nAmado\nAnselmo\nAnton\nBernardo\nBetty\nBillie\nBurt\nCaesar\nChauncey\nChris\nClarke\nCraig\nDallas\nDino\nDuke\nDuncan\nDwaine\nElliott\nEllsworth\nElpidio\nErvin\nGaylord\nGustav\nHarris\nJackson\nJan\nJeffrey\nJordan\nKenji\nKenton\nLeighton\nLeopold\nLucien\nLucio\nLyman\nMasaru\nMatt\nMaynard\nMicheal\nMichel\nMiles\nMilo\nNewton\nNicolas\nRaymundo\nRod\nRussel\nShigeru\nStan\nTad\nTakashi\nVance\nWarner\nWiley\nRobert\nRichard\nJohn\nJames\nWilliam\nDonald\nCharles\nRonald\nGeorge\nDavid\nFrank\nJack\nEdward\nPaul\nJoe\nThomas\nRaymond\nKenneth\nDon\nJoseph\nGary\nFred\nJerry\nArthur\nBill\nAlbert\nGerald\nManuel\nRalph\nBob\nNorman\nWalter\nHenry\nHarold\nDaniel\nLarry\nMichael\nRoger\nJim\nCarl\nLawrence\nPeter\nLouis\nHarry\nEugene\nErnest\nGilbert\nRay\nAlfred\nDouglas\nStanley\nGordon\nRoy\nBruce\nTony\nHoward\nTom\nJohnny\nLeonard\nWayne\nPhilip\nJose\nEarl\nDick\nLeroy\nMarvin\nDale\nGene\nAnthony\nEddie\nMelvin\nWarren\nClifford\nBilly\nJimmy\nDennis\nPatrick\nVictor\nCarlos\nMike\nEdwin\nTed\nTommy\nRudy\nLloyd\nGlenn\nHerbert\nMartin\nTheodore\nJesus\nAlan\nPhillip\nLee\nAndrew\nRaul\nRussell\nVincent\nFranklin\nPete\nRonnie\nAllen\nLeo\nRuben\nClarence\nAlvin\nFrederick\nSamuel\nLeslie\nFrancis\nLeon\nVernon\nJimmie\nDuane\nSteve\nDan\nHarvey\nAllan\nJesse\nRamon\nBenjamin\nClyde\nFloyd\nGlen\nTerry\nBernard\nLewis\nNeil\nRodney\nStephen\nHugh\nLeland\nSam\nDanny\nJuan\nLouie\nAntonio\nJay\nLester\nMilton\nArnold\nKeith\nWesley\nSalvador\nAlfonso\nBen\nBobby\nFrancisco\nMaurice\nPedro\nBarry\nDarrell\nDean\nEverett\nHerman\nLuis\nRoland\nWallace\nBenny\nNick\nLaurence\nMario\nArmando\nJerome\nOscar\nCalvin\nDave\nElmer\nHector\nJess\nAlex\nBert\nGregory\nRicardo\nWillard\nAngel\nDelbert\nFelix\nJoel\nMiguel\nSidney\nAlexander\nJohnnie\nKen\nRafael\nAngelo\nMark\nSteven\nClark\nClaude\nEdgar\nRoberto\nStuart\nJulian\nKarl\nRudolph\nPat\nPhil\nAugustine\nFernando\nFredrick\nLyle\nMalcolm\nMyron\nNeal\nRodolfo\nByron\nCecil\nEdmund\nJon\nMarshall\nVirgil\nBennie\nCharlie\nChester\nCurtis\nFreddie\nIgnacio\nJackie\nLynn\nAlfredo\nGail\nLionel\nMax\nTeddy\nBuddy\nClinton\nConrad\nDwight\nEnrique\nErnie\nGabriel\nGuy\nLupe\nMorris\nTimothy\nAl\nCarroll\nRodger\nWilbur\nEdmond\nKent\nLoren\nLowell\nWillie\nWillis\nClayton\nDarryl\nFelipe\nForrest\nGrant\nHarlan\nRex\nRoss\nSheldon\nBurton\nEd\nFrankie\nHomer\nHubert\nPablo\nAdrian\nCraig\nEric\nIrving\nMonte\nNicholas\nRobin\nSammy\nSherman\nArchie\nDenny\nElias\nEmilio\nJoaquin\nMarion\nMerle\nMickey\nNoel\nReginald\nStewart\nVicente\nAdolfo\nArlen\nArt\nAustin\nBud\nCornelius\nDaryl\nEmil\nGregorio\nJan\nJulio\nLorenzo\nMel\nMorton\nOliver\nOrval\nScott\nBrian\nChristopher\nEllis\nErnesto\nGilberto\nGuillermo\nGustavo\nPerry\nRamiro\nRoderick\nSpencer\nWilfred\nAdolph\nAlberto\nAurelio\nBillie\nChuck\nDominic\nDudley\nEduardo\nEldon\nFidel\nIvan\nJean\nJorge\nMervin\nOrville\nRoman\nTim\nWarner\nAaron\nAkira\nArmand\nAugust\nBernie\nDenis\nElbert\nElwood\nFrederic\nHal\nHiroshi\nHorace\nJacob\nKenny\nMarcelino\nMarcus\nNathan\nOwen\nRolland\nRon\nSergio\nStan\nVance\nAbraham\nAlejandro\nAlton\nAndy\nArturo\nBetty\nBradford\nCarlton\nClifton\nDana\nDarrel\nDelmar\nDomingo\nDonn\nEmmett\nErwin\nGarry\nHarrison\nIsmael\nJerald\nJerold\nJulius\nJunior\nLauren\nLeonardo\nMariano\nMervyn\nMinoru\nMitchell\nReynaldo\nRollin\nRonny\nSantiago\nSherwood\nTerrence\nTomas\nTrinidad\nWendell\nAbel\nAgustin\nAndres\nBart\nBenito\nCarol\nChris\nDallas\nDewey\nDwayne\nGale\nHarley\nHeriberto\nHilario\nIrwin\nLanny\nMarco\nMitsuru\nNathaniel\nNickolas\nNorberto\nPatricia\nRandolph\nRefugio\nTetsuo\nTruman\nVern\nWilbert\nWilson\nYgnacio\nAmado\nAnastacio\nArlin\nAugustin\nBoyd\nCarlyle\nCruz\nDino\nDonnie\nElliott\nElton\nFredric\nGarrett\nGerard\nGerry\nGonzalo\nGuadalupe\nGus\nHans\nHarmon\nHerb\nHugo\nIrvin\nIsaac\nJackson\nJavier\nJerrold\nJessie\nKay\nKelly\nKenji\nKevin\nKirk\nKiyoshi\nLonnie\nLorin\nMarcos\nMary\nMerced\nMorgan\nNed\nNicolas\nNorbert\nPascual\nPorfirio\nRandy\nRod\nSandy\nStanford\nSydney\nTravis\nTroy\nYoshio\nAlonzo\nAlvaro\nBarton\nBernerd\nBertram\nCary\nCliff\nDelano\nDouglass\nDoyle\nEarnest\nEdmundo\nEvan\nFederico\nFreddy\nFritz\nGrover\nIsamu\nIsao\nJanet\nJeff\nJo\nJohnie\nKurt\nLawrance\nLeopoldo\nLincoln\nLoran\nLuther\nMargarito\nMarlin\nMarty\nMasaaki\nMatthew\nMerlin\nMilo\nMonty\nMurray\nNils\nNorris\nOtto\nPierre\nRaymundo\nRene\nRoque\nSalvatore\nSanford\nSantos\nShirley\nShiro\nSimon\nSterling\nTadashi\nTerence\nTommie\nWiley\nWinston\nYsidro\nRobert\nRichard\nJohn\nJames\nWilliam\nDonald\nCharles\nRonald\nDavid\nGeorge\nFrank\nJack\nJoe\nThomas\nEdward\nRaymond\nGary\nPaul\nKenneth\nJoseph\nJerry\nDon\nGerald\nFred\nAlbert\nMichael\nBill\nBob\nArthur\nHenry\nWalter\nRalph\nLarry\nNorman\nManuel\nHarold\nRoger\nLawrence\nDaniel\nStanley\nErnest\nEugene\nRoy\nJim\nLouis\nPeter\nCarl\nGilbert\nAlfred\nHarry\nTony\nDouglas\nHoward\nDennis\nTom\nRay\nWayne\nLeonard\nPhilip\nLeroy\nBruce\nVictor\nAnthony\nDale\nGene\nJohnny\nWarren\nMarvin\nGordon\nJimmy\nJose\nDick\nGlenn\nEddie\nPhillip\nMike\nMelvin\nRussell\nTed\nEarl\nRuben\nClifford\nAlan\nLee\nRudy\nMartin\nAllen\nBilly\nLloyd\nStephen\nTommy\nCarlos\nClarence\nFloyd\nEdwin\nPatrick\nHerbert\nRonnie\nAndrew\nPete\nJesus\nFrederick\nVernon\nFrancis\nTheodore\nClyde\nRamon\nAlvin\nJesse\nRaul\nSamuel\nJimmie\nLeo\nTerry\nDanny\nArnold\nDan\nKeith\nAntonio\nBobby\nVincent\nFranklin\nLeland\nLewis\nSalvador\nBen\nLeon\nGlen\nAlex\nAlfonso\nDuane\nJay\nLeslie\nBarry\nKarl\nWesley\nHarvey\nNick\nSteve\nAllan\nChester\nRoland\nSam\nDave\nDean\nNeil\nJohnnie\nMilton\nRodney\nBenjamin\nJon\nLuis\nHugh\nBenny\nDarrell\nLester\nWallace\nLouie\nBert\nJuan\nRudolph\nBernard\nPat\nElmer\nEverett\nJerome\nMark\nHerman\nAlexander\nLaurence\nRoberto\nClaude\nCharlie\nLowell\nPedro\nWillard\nMyron\nWilbur\nDelbert\nFernando\nLoren\nPhil\nSteven\nCecil\nFrancisco\nAngelo\nByron\nCalvin\nErnie\nGregory\nJackie\nJulian\nOscar\nSammy\nHector\nJess\nMalcolm\nTimothy\nMaurice\nNoel\nAngel\nCurtis\nKen\nLyle\nMario\nRex\nBrian\nJulio\nSidney\nEdgar\nFredrick\nGrant\nAdolph\nBuddy\nEric\nGabriel\nKent\nLynn\nMax\nWillie\nAlfredo\nArmando\nConrad\nEd\nEdmund\nFelix\nFreddie\nGuy\nMonte\nNicholas\nRoss\nChris\nClark\nFrankie\nFredric\nMarshall\nWilfred\nDarryl\nEdmond\nElias\nGarry\nHomer\nLionel\nLupe\nMerle\nMorris\nRafael\nRobin\nAbraham\nBennie\nClayton\nDwight\nIgnacio\nJoel\nRodolfo\nWillis\nAugustine\nEnrique\nMarion\nStuart\nBurton\nCraig\nAbel\nClinton\nDarrel\nElbert\nHal\nHarlan\nJerrold\nKevin\nMiguel\nNeal\nSherman\nVirgil\nErnesto\nIrving\nIvan\nLuther\nRicardo\nSheldon\nAaron\nAndy\nArt\nArturo\nBoyd\nChuck\nEmmett\nFelipe\nForrest\nGuadalupe\nIrvin\nJan\nJessie\nJoaquin\nLeonardo\nLorenzo\nMickey\nNathan\nPablo\nRandolph\nRoderick\nSanford\nStan\nTomas\nAugust\nBud\nDickie\nDudley\nEldon\nElwood\nEmilio\nErwin\nGonzalo\nGuillermo\nMary\nMervyn\nOliver\nOrville\nOtto\nPerry\nRodger\nWendell\nAdolfo\nAgustin\nAl\nAlejandro\nAlonzo\nCarroll\nChristopher\nDaryl\nDonn\nFidel\nGustavo\nHarley\nHerb\nIrwin\nJorge\nKenny\nLonnie\nMicheal\nMurray\nOtis\nRon\nTerrence\nWilbert\nAlberto\nAlton\nBarton\nDallas\nDenis\nDomingo\nDominic\nElliott\nGus\nJacob\nJerald\nJerold\nJonathan\nMarcos\nMervin\nRoyal\nSantos\nSimon\nStewart\nAdrian\nArchie\nBart\nBryan\nCharley\nCruz\nFaustino\nFrederic\nGail\nGale\nGerry\nHorace\nIsmael\nJean\nMelvyn\nMerrill\nOrval\nRandall\nRaoul\nReynaldo\nSantiago\nVern\nWade\nBarbara\nBurt\nCliff\nClifton\nDarwin\nDenny\nDewey\nEarle\nEllis\nElton\nGerard\nHiroshi\nHubert\nHugo\nIsaac\nJasper\nLyman\nMitchell\nMorton\nNelson\nNorbert\nPierre\nRefugio\nRonny\nRudolf\nRudolfo\nSalvatore\nScott\nShirley\nSterling\nTeddy\nTravis\nTrinidad\nVerne\nVince\nWally\nWard\nWill\nWilson\nWinston\nAdam\nAkira\nArnulfo\nBasil\nBradley\nBuster\nCarlo\nClement\nCornelius\nCyril\nDino\nDolores\nDoyle\nDuncan\nDwayne\nEduardo\nErvin\nGalen\nGraham\nGregorio\nHarland\nHideo\nHollis\nIan\nJavier\nJere\nKirk\nMargarito\nMarlin\nMatthew\nMoses\nNathaniel\nOctavio\nOwen\nRollie\nStanford\nSydney\nTadashi\nTerence\nTroy\nWarner\nYgnacio\nAmos\nArlen\nArmand\nBarney\nBernardo\nBruno\nBryce\nCarol\nDalton\nDana\nDario\nDoug\nEddy\nEfren\nElden\nEliseo\nElmo\nElvin\nEmil\nEsteban\nEvert\nFoster\nFranklyn\nFreddy\nGerold\nGilberto\nHenri\nJaime\nJeff\nJohnie\nKay\nKenton\nKerry\nKiyoshi\nLaverne\nLorin\nLoyd\nMack\nMasao\nMaynard\nMerlin\nMiles\nMinoru\nNewton\nNicolas\nNorris\nOrlando\nRamiro\nRaymundo\nReuben\nRiley\nRogelio\nRosendo\nRowland\nRupert\nSal\nSeymour\nTetsuo\nTim\nVal\nVan\nVaughn\nWaldo\nRobert\nRichard\nJohn\nJames\nWilliam\nDonald\nDavid\nCharles\nRonald\nGeorge\nFrank\nEdward\nThomas\nKenneth\nJack\nGary\nPaul\nRaymond\nJerry\nMichael\nJoe\nJoseph\nLarry\nDon\nBill\nBob\nGerald\nHenry\nAlbert\nWalter\nArthur\nRalph\nFred\nManuel\nCarl\nDaniel\nLawrence\nRoger\nJim\nNorman\nPeter\nHarold\nHarry\nGilbert\nErnest\nEugene\nStanley\nLouis\nAlfred\nRoy\nWayne\nTony\nAnthony\nGordon\nPhilip\nRay\nBruce\nDale\nEddie\nHoward\nDouglas\nDennis\nTom\nJohnny\nLeonard\nLeroy\nMarvin\nJimmy\nJose\nClifford\nMike\nPhillip\nLee\nAlan\nBilly\nVictor\nEarl\nTommy\nGene\nMelvin\nStephen\nDick\nRussell\nWarren\nPatrick\nMartin\nRonnie\nTed\nBobby\nRuben\nRudy\nEdwin\nGlenn\nAllen\nFrederick\nLloyd\nJesse\nFloyd\nTheodore\nFrancis\nVernon\nHerbert\nTerry\nJesus\nDanny\nPete\nAlvin\nDan\nRaul\nArnold\nCarlos\nVincent\nAndrew\nJay\nKeith\nLeo\nLeslie\nAllan\nFranklin\nClarence\nLester\nSamuel\nBernard\nJuan\nSalvador\nWesley\nDuane\nAntonio\nMilton\nBarry\nDarrell\nRodney\nHarvey\nLouie\nBen\nClyde\nNeil\nBenjamin\nBrian\nGlen\nLeland\nWallace\nChester\nDave\nJimmie\nJon\nRamon\nRoland\nSteve\nJoel\nDean\nLeon\nLuis\nSteven\nAlfonso\nNick\nSam\nFrancisco\nAlexander\nKarl\nJohnnie\nLewis\nMario\nCalvin\nClaude\nPhil\nAlex\nArmando\nElmer\nGregory\nJerome\nKen\nLoren\nDarryl\nHugh\nFelix\nLaurence\nMaurice\nEverett\nFreddie\nHerman\nMark\nStuart\nAl\nFredrick\nLowell\nBenny\nCharlie\nDelbert\nHector\nKent\nLynn\nMarshall\nPedro\nRoss\nRudolph\nErnie\nByron\nGuy\nRicardo\nSidney\nCurtis\nJess\nRex\nEd\nEric\nFernando\nJackie\nMax\nMonte\nPat\nScott\nClark\nGabriel\nJulian\nNicholas\nLyle\nWillis\nClayton\nEdmund\nTeddy\nVirgil\nWillard\nEdgar\nIvan\nOscar\nAlfredo\nAngelo\nBert\nBuddy\nBurton\nCecil\nForrest\nKenny\nMalcolm\nNeal\nDarrel\nGarry\nGuillermo\nJerald\nMorris\nNoel\nRamiro\nSheldon\nAugustine\nCarroll\nConrad\nEldon\nGrant\nHomer\nMerle\nRoberto\nRoderick\nSammy\nTimothy\nArchie\nChris\nChuck\nCraig\nIrving\nPerry\nRafael\nWillie\nAngel\nAugust\nClifton\nDwight\nEdmond\nHubert\nIgnacio\nJan\nJessie\nMickey\nMiguel\nNelson\nAndy\nArt\nDaryl\nDenny\nEmil\nGilberto\nJoaquin\nOliver\nOrville\nRodolfo\nWilbert\nWilbur\nClinton\nElias\nGerry\nKevin\nMarion\nMary\nPreston\nRon\nSherman\nArlen\nDenis\nEduardo\nEmilio\nEnrique\nFrankie\nHarley\nLorenzo\nMyron\nSalvatore\nAbraham\nAdrian\nBernie\nCliff\nGail\nGus\nJerrold\nKurt\nLupe\nMicheal\nMurray\nNed\nStewart\nTim\nWarner\nWendell\nAdolph\nBarney\nBarton\nBennie\nBud\nChristopher\nCruz\nDwayne\nEllis\nElwood\nEmmett\nErnesto\nHal\nHarlan\nHiroshi\nJavier\nJean\nJulius\nKirk\nKiyoshi\nMaynard\nMelvyn\nMervyn\nOwen\nRandolph\nRaoul\nRobin\nTerrence\nTroy\nBillie\nDarwin\nDickie\nErwin\nFrederic\nFredric\nGustavo\nIrwin\nJonathan\nKim\nLonnie\nReginald\nReynold\nSergio\nSpencer\nTomas\nVerne\nWard\nWilfred\nWilson\nAlberto\nArmand\nBrent\nCarol\nCyril\nDominic\nDoyle\nErvin\nFreddy\nGuadalupe\nHerb\nHilario\nIra\nIsaac\nJacob\nJulio\nLionel\nMel\nMervin\nOtis\nRandall\nReggie\nRodger\nRonny\nRupert\nStan\nTrinidad\nWally\nAbel\nAlejandro\nBoyd\nBrad\nBradley\nDel\nDomingo\nDonn\nDoug\nDuke\nFelipe\nGale\nGeoffrey\nGreg\nIrvin\nKerry\nMarcos\nMarcus\nMarilyn\nMonty\nMorley\nMoses\nOtto\nPasqual\nRaymon\nReynaldo\nRod\nRoyal\nSantiago\nTruman\nVan\nAaron\nAmos\nArvin\nBobbie\nBuck\nCarrol\nClarke\nClay\nConrado\nCornelius\nDana\nDewey\nDudley\nEddy\nElbert\nGerard\nGregorio\nHans\nHarland\nHideo\nJake\nJorge\nJunior\nKay\nMacario\nMatthew\nMerlin\nMorton\nNicolas\nRogelio\nRosalio\nRussel\nShirley\nSterling\nTakashi\nTerence\nTerrance\nTracy\nVal\nVicente\nVirginia\nWade\nWalt\nWinston\nAgustin\nAlden\nAntone\nAurelio\nBenito\nBradford\nBruno\nBryan\nCharley\nClaudio\nCleo\nColin\nDayton\nDelmar\nDino\nDonnie\nElmo\nElton\nElwyn\nGarrett\nGil\nGonzalo\nGrover\nHank\nHorace\nIsmael\nJaime\nJerold\nJun\nKazuo\nKennith\nLoran\nLoyd\nLuciano\nLuther\nMasaru\nMillard\nMilo\nMinoru\nNathaniel\nNorberto\nNorris\nPablo\nPatricia\nPierre\nPorfirio\nRefugio\nRemo\nRick\nRicky\nRodrigo\nRojelio\nRolland\nSherwood\nSimon\nSydney\nTakeshi\nTommie\nVance\nVern\nRobert\nRichard\nJohn\nJames\nWilliam\nDavid\nDonald\nRonald\nCharles\nGeorge\nGary\nEdward\nFrank\nKenneth\nThomas\nMichael\nJack\nPaul\nLarry\nJerry\nRaymond\nGerald\nJoe\nJoseph\nDon\nFred\nBob\nBill\nArthur\nJim\nAlbert\nDaniel\nHarold\nHenry\nRalph\nNorman\nRoger\nManuel\nWalter\nLawrence\nCarl\nPeter\nEugene\nDennis\nRoy\nBruce\nAlfred\nRay\nGilbert\nWayne\nAnthony\nErnest\nStanley\nHarry\nHoward\nDouglas\nLouis\nTom\nPhilip\nTony\nGene\nGordon\nLeroy\nDale\nJohnny\nMelvin\nLeonard\nEddie\nMarvin\nWarren\nEarl\nPhillip\nBilly\nMike\nStephen\nJimmy\nAlan\nClifford\nTommy\nLee\nPatrick\nGlenn\nMartin\nRussell\nTerry\nAllen\nLloyd\nDick\nJose\nVictor\nTed\nDanny\nEdwin\nBobby\nRonnie\nTheodore\nAllan\nRuben\nJesse\nAndrew\nClarence\nLeon\nJesus\nVernon\nHarvey\nRudy\nFrederick\nPete\nCarlos\nLeo\nSteve\nVincent\nDan\nHerbert\nJon\nFloyd\nDave\nJimmie\nJay\nDean\nAlvin\nDarrell\nRaul\nKeith\nLeslie\nLewis\nRoland\nSam\nClyde\nSamuel\nBarry\nNeil\nBrian\nFrancis\nMark\nFranklin\nLouie\nWesley\nAntonio\nArnold\nLester\nMilton\nBen\nJoel\nRodney\nHerman\nSteven\nTimothy\nBenjamin\nBernard\nLeland\nSalvador\nDelbert\nGlen\nJuan\nJohnnie\nMarshall\nRamon\nBenny\nJerome\nKarl\nAlex\nKent\nMax\nDuane\nNick\nArmando\nEdgar\nEdmund\nKen\nLaurence\nWallace\nCraig\nFreddie\nGregory\nLyle\nRudolph\nCecil\nRoberto\nAlexander\nLynn\nPedro\nStuart\nAngel\nByron\nPhil\nEverett\nHugh\nLuis\nMario\nCalvin\nElmer\nFernando\nCurtis\nAlfonso\nFrancisco\nJackie\nRoss\nChester\nMaurice\nMiguel\nSidney\nWillard\nNeal\nPat\nRex\nClark\nClayton\nConrad\nJess\nRon\nVirgil\nBert\nClaude\nEric\nLoren\nErnie\nGuy\nNicholas\nNoel\nTeddy\nAngelo\nBuddy\nDarryl\nFredrick\nLonnie\nLowell\nMalcolm\nMelvyn\nMonte\nWilbur\nClinton\nGabriel\nGarry\nIgnacio\nIvan\nJulian\nJulio\nSammy\nAl\nCharlie\nEnrique\nMerle\nWendell\nWillie\nFelix\nGerry\nHector\nKenny\nEldon\nForrest\nNathan\nRicardo\nClifton\nDarrel\nGale\nNelson\nBennie\nBoyd\nBurton\nEd\nJerald\nMarion\nOrville\nOscar\nAlfredo\nAndy\nArt\nAugustine\nBarney\nBud\nDaryl\nDwight\nHubert\nJan\nLupe\nMyron\nTim\nChristopher\nDoyle\nEdmond\nMickey\nRafael\nReginald\nAlton\nErnesto\nFrankie\nGail\nGuillermo\nHal\nHarley\nIrving\nJerrold\nMervyn\nOliver\nAdolph\nBrent\nChris\nEddy\nElias\nGarland\nMervin\nMicheal\nMorris\nOwen\nStan\nWillis\nChuck\nDallas\nDenis\nFidel\nJacob\nJeffrey\nKim\nLanny\nNed\nRandall\nRodger\nScott\nAlberto\nAugust\nCarlton\nElbert\nEllis\nElvin\nEmmett\nGrant\nHomer\nHorace\nJaime\nKevin\nKirk\nMatthew\nRoderick\nRodolfo\nSheldon\nStewart\nTerrence\nTrinidad\nWilfred\nAbel\nAdolfo\nAdrian\nBarton\nCarroll\nDarwin\nDonn\nDonnie\nEarnest\nHiroshi\nIrvin\nJean\nLoyd\nMary\nMiles\nPablo\nRamiro\nRefugio\nReynaldo\nSherman\nSimon\nTerence\nTroy\nVern\nAaron\nArchie\nBernie\nCarter\nDudley\nEarle\nEduardo\nElliott\nEmil\nErrol\nGayle\nGuadalupe\nJoaquin\nLance\nMonty\nOtis\nRolland\nSpencer\nTomas\nVerne\nWilbert\nWinston\nArmand\nBernardo\nBillie\nBryan\nCarlo\nDenny\nEllsworth\nEmilio\nGerard\nIrwin\nJere\nJerold\nJessie\nJonathan\nKermit\nLionel\nLorenzo\nMack\nMarcus\nMargaret\nMargarito\nMitchell\nMurray\nPatricia\nPerry\nRobin\nRoscoe\nRoyal\nWaldo\nWally\nAgustin\nArlen\nArturo\nAurelio\nAustin\nBradley\nCarrol\nChristian\nClay\nDel\nDelfino\nDelwin\nElton\nFelipe\nForest\nFreddy\nFrederic\nGeoffrey\nGilberto\nGreg\nIra\nJavier\nJoan\nJorge\nJulius\nKerry\nKurt\nLane\nMariano\nMarty\nMerritt\nPierre\nRaoul\nRod\nSandy\nSanford\nSantiago\nShirley\nStanford\nSterling\nTakeshi\nTerrance\nTommie\nVal\nVicente\nWard\nWiley\nAbraham\nAndre\nAndres\nBobbie\nBradford\nCarmen\nCarol\nCliff\nColin\nDana\nDewey\nDomingo\nDwain\nDwayne\nEdwardo\nElden\nErwin\nEvan\nGalen\nGaylord\nGil\nGino\nHugo\nIsaac\nJunior\nKennith\nLeopoldo\nMasao\nMaynard\nMel\nMillard\nNathaniel\nNorbert\nOtto\nRandolph\nRaymon\nRene\nRonny\nRoyce\nSaul\nSylvester\nTruman\nWarner\nWilson\nWoodrow\nAlec\nAlejandro\nAlonzo\nAmos\nAngus\nBarbara\nBart\nBruno\nBryant\nCourtney\nCoy\nCruz\nDelmar\nDewayne\nDiego\nDino\nDominic\nDoug\nDouglass\nDuke\nDuncan\nElmo\nElwood\nErvin\nFlorencio\nFredric\nFritz\nGarold\nGarth\nGlendon\nGrady\nGustavo\nJoanne\nKay\nKazuo\nKenji\nKenton\nKiyoshi\nLavern\nLaverne\nLawrance\nLon\nMerton\nMilo\nMorton\nNicolas\nReynold\nRolf\nSalvatore\nSantos\nStanton\nTakashi\nTheron\nThurman\nWalt\nWerner\nWilburn\nWilford\nYgnacio\nYsidro\nRobert\nJohn\nRichard\nJames\nWilliam\nRonald\nDavid\nDonald\nCharles\nGary\nGeorge\nMichael\nFrank\nThomas\nKenneth\nLarry\nEdward\nJerry\nPaul\nJack\nRaymond\nJoe\nJoseph\nGerald\nBill\nDon\nFred\nDennis\nArthur\nAlbert\nNorman\nDaniel\nRalph\nBob\nLawrence\nDouglas\nJim\nRoger\nWalter\nWayne\nHenry\nCarl\nManuel\nHarold\nPeter\nAnthony\nGilbert\nLouis\nRoy\nTom\nErnest\nBruce\nStanley\nDale\nEugene\nHoward\nRay\nMike\nHarry\nAlfred\nStephen\nTony\nAlan\nJohnny\nLeonard\nPhilip\nVictor\nGordon\nEddie\nJimmy\nPhillip\nBilly\nMelvin\nAllen\nPatrick\nEarl\nTerry\nGene\nWarren\nRonnie\nLeroy\nBobby\nRussell\nJose\nLee\nMarvin\nFrederick\nClifford\nRudy\nTommy\nGlenn\nMartin\nJesse\nDick\nJon\nSteve\nEdwin\nVernon\nLloyd\nDanny\nAllan\nDarrell\nRodney\nKeith\nLeslie\nCarlos\nTheodore\nClyde\nTed\nRuben\nArnold\nDave\nJay\nSteven\nHerbert\nJimmie\nLeo\nSamuel\nAndrew\nLeon\nMilton\nDan\nWesley\nClarence\nAlvin\nJesus\nVincent\nDuane\nHarvey\nPete\nFrancis\nAntonio\nRaul\nLeland\nFloyd\nDean\nTimothy\nBrian\nGregory\nLouie\nBernard\nJerome\nBarry\nNeil\nSalvador\nBen\nGlen\nJoel\nBenjamin\nDarryl\nBenny\nClaude\nJackie\nChester\nEverett\nMark\nSam\nFredrick\nLester\nNick\nRoland\nRoss\nAlex\nHugh\nDelbert\nFranklin\nLuis\nMario\nAlexander\nCraig\nCurtis\nLaurence\nJuan\nKarl\nKen\nLynn\nWillard\nJess\nVirgil\nAlfonso\nByron\nCecil\nEric\nLewis\nRamon\nArmando\nFreddie\nPat\nNicholas\nNoel\nPedro\nRudolph\nCalvin\nKent\nLonnie\nMonte\nDaryl\nErnie\nFelix\nFrancisco\nHerman\nJohnnie\nLoren\nMarshall\nPhil\nEd\nHector\nBert\nElmer\nLyle\nTim\nWallace\nEldon\nLupe\nOscar\nRicardo\nCharlie\nClinton\nLowell\nBennie\nChris\nClark\nClayton\nDarrel\nEdgar\nGarry\nJan\nMax\nSidney\nMarion\nAl\nIvan\nJulian\nMaurice\nNeal\nRoberto\nSammy\nFernando\nGuy\nHarley\nMelvyn\nRex\nWillie\nEdmund\nGabriel\nRon\nStuart\nBuddy\nConrad\nErrol\nJerald\nMickey\nMyron\nRobin\nWilbur\nChristopher\nForrest\nKenny\nNelson\nOliver\nAngel\nDoyle\nMiguel\nPerry\nStan\nDenis\nGrant\nNathan\nArturo\nBurton\nDwight\nFrankie\nHomer\nMerle\nRodger\nWillis\nKevin\nLance\nMalcolm\nRodolfo\nSheldon\nStewart\nWard\nWendell\nAdolph\nArt\nBarney\nCruz\nFredric\nGuadalupe\nJeffrey\nLionel\nMorris\nRandolph\nAlfredo\nAngelo\nBoyd\nCarroll\nElias\nIgnacio\nJean\nRoderick\nAndy\nAnton\nArlen\nAugustine\nBryan\nDonnie\nElbert\nGus\nHubert\nLauren\nMicheal\nNed\nRafael\nReginald\nRene\nTerrence\nWally\nAbraham\nAlberto\nArchie\nAugust\nBud\nChuck\nDonn\nFidel\nHans\nHarlan\nJoaquin\nLanny\nLuther\nMarcus\nOwen\nScott\nBarton\nBernie\nDallas\nDominic\nElwood\nEmilio\nFrederic\nGale\nGonzalo\nIrvin\nLorenzo\nMatthew\nNorbert\nRandall\nSalvatore\nTeddy\nWilfred\nAdolfo\nBrent\nCarlton\nDenny\nDewey\nEllis\nEmmett\nEnrique\nErnesto\nGail\nGarth\nGerry\nGrover\nIra\nJavier\nJonathan\nJorge\nJulio\nJulius\nKay\nKerry\nLaverne\nLorin\nLoyd\nNolan\nPierre\nRick\nRonny\nSherman\nTerence\nTomas\nTravis\nWill\nAdrian\nArmand\nBarbara\nCary\nDelmar\nDickie\nDudley\nDwayne\nErwin\nHal\nIrving\nIsmael\nJacob\nJessie\nKendall\nKurt\nMervin\nPablo\nRolland\nVern\nAbel\nAndre\nBillie\nBradley\nClifton\nDana\nDoug\nDouglass\nEarnest\nEdmond\nEduardo\nElton\nEmil\nFelipe\nGalen\nGustavo\nJerold\nJerrold\nLane\nMarlin\nMitchell\nMurray\nNathaniel\nOrville\nOtis\nPreston\nReuben\nReynaldo\nReynold\nRod\nSanford\nSpencer\nTrinidad\nTroy\nVal\nWilbert\nWilson\nAgustin\nAmador\nAmos\nAurelio\nBobbie\nCarleton\nCarol\nCliff\nCornelius\nDel\nDuncan\nElliott\nEmery\nErvin\nEvan\nFreddy\nGarland\nGearld\nGilberto\nGreg\nIrwin\nKim\nKirk\nLenard\nLyman\nMariano\nMel\nMerlin\nMilo\nMonty\nMorton\nOtto\nReed\nRefugio\nReyes\nRoyal\nRoyce\nSantos\nSergio\nSimon\nSydney\nTerrance\nVan\nVentura\nVicente\nWade\nWarner\nAbelardo\nAndres\nBetty\nCarmen\nCarrol\nCharley\nClair\nDee\nDexter\nDomingo\nEddy\nEdmundo\nElvin\nElwin\nGarrett\nGeoffrey\nGregorio\nGuillermo\nHugo\nHumberto\nIsao\nJaime\nJared\nJules\nKenji\nKing\nLindsay\nLon\nLonny\nMack\nMarc\nMarcelo\nMarty\nMary\nMasao\nMervyn\nNicky\nOllie\nPatricia\nRicky\nRolando\nRowland\nRuss\nRussel\nSandra\nSandy\nSantiago\nSherwood\nSonny\nStanford\nSterling\nTruman\nTyrone\nVance\nVerne\nWoodrow\nAaron\nAlden\nAlton\nAlva\nBenito\nBlake\nBrooks\nBurl\nBurt\nCarlo\nCesar\nDarwin\nDerrell\nDewayne\nDuke\nEarle\nElmo\nEmanuel\nFritz\nGaylord\nGraham\nHerb\nHerschel\nHilario\nHiroshi\nHorace\nIsaac\nJason\nJeff\nKermit\nKirby\nKiyoshi\nLeeroy\nLes\nLincoln\nLoran\nMahlon\nMerrill\nMiles\nMillard\nModesto\nNicolas\nNorm\nOrin\nOrlando\nOrval\nPorfirio\nRamiro\nRaoul\nRaymundo\nRufino\nRufus\nRupert\nSal\nShirley\nSusumu\nToby\nTommie\nVaughn\nVince\nWiley\nRobert\nRichard\nJohn\nJames\nWilliam\nDavid\nRonald\nDonald\nCharles\nGary\nMichael\nGeorge\nThomas\nLarry\nKenneth\nFrank\nJerry\nPaul\nEdward\nDennis\nJack\nJoseph\nRaymond\nGerald\nJoe\nBill\nRoger\nArthur\nBob\nFred\nNorman\nDon\nDaniel\nWayne\nRalph\nDouglas\nJim\nWalter\nAlbert\nHenry\nPeter\nHarold\nLawrence\nCarl\nManuel\nStephen\nBruce\nPhilip\nStanley\nEugene\nMike\nTom\nRoy\nErnest\nAnthony\nGilbert\nAlfred\nLeonard\nRay\nTony\nMelvin\nHoward\nAlan\nDale\nHarry\nLouis\nGordon\nRonnie\nJohnny\nPatrick\nAllen\nSteven\nEddie\nEarl\nClifford\nLeroy\nMarvin\nPhillip\nDanny\nLee\nRussell\nJimmy\nJose\nVictor\nGene\nBilly\nTerry\nGlenn\nSteve\nLloyd\nJesse\nJon\nTommy\nMartin\nTed\nBobby\nEdwin\nHerbert\nFrederick\nRudy\nBarry\nKeith\nRodney\nWarren\nTheodore\nVernon\nDan\nDave\nAndrew\nCarlos\nDick\nTimothy\nArnold\nAllan\nHarvey\nLeo\nBrian\nDarrell\nFloyd\nAlvin\nClarence\nPete\nJesus\nRuben\nVincent\nFrancis\nGlen\nJay\nLeslie\nClyde\nJimmie\nWesley\nLeland\nLeon\nKen\nLewis\nRaul\nAntonio\nNeil\nLaurence\nDean\nDuane\nSamuel\nAlex\nCurtis\nKarl\nLester\nRoland\nBenjamin\nFranklin\nJoel\nLynn\nDarryl\nJerome\nLouie\nSalvador\nAlfonso\nBernard\nMarshall\nRamon\nJohnnie\nMilton\nHerman\nKent\nBenny\nCalvin\nEverett\nGregory\nJess\nMark\nNicholas\nPat\nSam\nCraig\nLuis\nLyle\nRudolph\nChester\nElmer\nLonnie\nMaurice\nFrancisco\nJuan\nLoren\nEric\nOscar\nPhil\nByron\nRoss\nVirgil\nArmando\nCecil\nJeffrey\nRon\nWillard\nEd\nErnie\nMax\nDelbert\nRoberto\nBert\nGabriel\nMorris\nAndy\nClaude\nDarrel\nFelix\nFreddie\nJackie\nNick\nStuart\nWallace\nHugh\nKenny\nNeal\nNoel\nPedro\nClayton\nLowell\nSammy\nTim\nAlexander\nChris\nDaryl\nEdgar\nJerald\nCharlie\nFredrick\nGarry\nMario\nMelvyn\nRicardo\nRobin\nBen\nClark\nClinton\nDenny\nForrest\nMerle\nChristopher\nDenis\nPerry\nBennie\nEldon\nGrant\nHomer\nMalcolm\nMiguel\nWillie\nAl\nBuddy\nDwight\nEdmund\nFrankie\nGuy\nJoaquin\nLupe\nOrville\nRandall\nRex\nSheldon\nWendell\nAngel\nDonnie\nDoug\nMicheal\nMonte\nScott\nAlfredo\nAngelo\nJulian\nMarion\nMyron\nNelson\nSidney\nTroy\nArturo\nErnesto\nHector\nJessie\nJulio\nLance\nMickey\nRafael\nRoderick\nWillis\nChuck\nFernando\nHarlan\nJerrold\nRene\nConrad\nGail\nIgnacio\nIvan\nLionel\nNathan\nOliver\nSherman\nSpencer\nTeddy\nAdrian\nAlberto\nArchie\nBrent\nBryan\nCarol\nCliff\nDallas\nErrol\nFrederic\nGus\nHal\nJan\nTerrence\nWilbur\nArmand\nArt\nBarton\nBradley\nDoyle\nFredric\nGerry\nHubert\nJeff\nMiles\nMitchell\nOtto\nRandolph\nRandy\nRodger\nAbel\nCruz\nDewey\nEdmond\nEduardo\nEnrique\nJonathan\nLorenzo\nLuther\nMatthew\nReginald\nRod\nStan\nAdolfo\nCarlton\nDelmar\nDominic\nDudley\nDwayne\nErvin\nFreddy\nGarrett\nGerard\nGuadalupe\nHarley\nKay\nRodolfo\nAdam\nBoyd\nElias\nEvan\nGeoffrey\nJackson\nJean\nLanny\nMarty\nMerlin\nOwen\nStewart\nToshio\nVan\nVern\nAbraham\nAdolph\nAubrey\nAugust\nAugustine\nBenito\nDomingo\nElbert\nEmmett\nFidel\nGuillermo\nIan\nIrvin\nIrving\nJorge\nLyman\nMarlin\nRefugio\nRonny\nSalvatore\nSanford\nSharon\nTheron\nVal\nAlden\nBarbara\nBart\nBennett\nBernie\nBrad\nCarroll\nDarwin\nDewayne\nEllis\nEmilio\nFelipe\nGale\nGearld\nGilberto\nGreg\nJavier\nJerold\nKenji\nKevin\nLauren\nMargarito\nMariano\nMel\nMerrill\nNicolas\nPreston\nReynaldo\nRick\nRolland\nSandy\nTerence\nTruman\nWade\nWarner\nWiley\nAlton\nAurelio\nBradford\nBud\nBurton\nClifton\nCurt\nDana\nDel\nDuncan\nDwain\nEarle\nElden\nEmil\nErwin\nFermin\nGarold\nGenaro\nGrady\nGustavo\nHorace\nIsaac\nIsmael\nJere\nKirk\nLeighton\nMarcelino\nMary\nMaynard\nMurray\nRamiro\nReggie\nRollin\nStanford\nSylvester\nTerrance\nTodd\nTyrone\nAaron\nArlen\nBarney\nBillie\nBobbie\nBooker\nBoris\nBrooks\nCary\nClement\nDannie\nDee\nDerek\nDonn\nEddy\nEdmundo\nElliott\nElwood\nErik\nHumberto\nJared\nJoey\nJudith\nKennith\nKerry\nLon\nLoyd\nMarcos\nMervin\nMervyn\nMinoru\nMonty\nNed\nRaymon\nRickey\nRonal\nSandra\nSantiago\nSergio\nSimon\nTravis\nVaughn\nWally\nWard\nWeldon\nWilbert\nWilfred\nWilson\nWoodrow\nAkira\nAldo\nAndre\nArden\nAustin\nBruno\nBurl\nBurt\nCalvert\nCarrol\nCesar\nClair\nColin\nCornelius\nDarell\nDelmer\nDennie\nDenver\nDuke\nElvin\nEsteban\nGarland\nGarth\nGonzalo\nGrover\nHarrison\nJacob\nKing\nLincoln\nMarcus\nMerritt\nMorgan\nNolan\nNorbert\nNorris\nPablo\nPatricia\nPorfirio\nRocky\nRogelio\nRoscoe\nRoyce\nSantos\nSebastian\nShirley\nSydney\nTakashi\nTerrell\nTomas\nTracy\nVance\nVicente\nVince\nXavier\nRobert\nJohn\nRichard\nJames\nWilliam\nDavid\nGary\nRonald\nMichael\nCharles\nDonald\nThomas\nLarry\nGeorge\nFrank\nDennis\nKenneth\nJerry\nEdward\nPaul\nRaymond\nGerald\nJoe\nJack\nJoseph\nBill\nRoger\nStephen\nDaniel\nFred\nArthur\nJim\nLawrence\nDon\nHenry\nBob\nPeter\nDouglas\nCarl\nRalph\nWayne\nWalter\nAlbert\nBruce\nNorman\nMike\nHarold\nManuel\nRoy\nTom\nEugene\nPhilip\nStanley\nSteven\nAlfred\nLeonard\nAnthony\nTerry\nPhillip\nTony\nDale\nErnest\nPatrick\nHarry\nLouis\nAlan\nHoward\nGilbert\nRay\nSteve\nMelvin\nJohnny\nAllen\nLeroy\nRonnie\nBilly\nVictor\nJimmy\nGordon\nRussell\nEarl\nEddie\nBarry\nLee\nDanny\nClifford\nTommy\nJose\nMarvin\nBobby\nEdwin\nGene\nWarren\nJon\nTimothy\nFrederick\nLloyd\nDick\nAllan\nMartin\nBrian\nCarlos\nGlenn\nJesse\nDan\nKeith\nTed\nAndrew\nHerbert\nRudy\nSamuel\nVincent\nVernon\nDarrell\nLeo\nRodney\nHarvey\nJay\nTheodore\nDave\nGlen\nMark\nRuben\nPete\nArnold\nClarence\nLeslie\nLouie\nLeon\nLester\nDuane\nFloyd\nJesus\nBenjamin\nGregory\nAlvin\nJuan\nRaul\nAntonio\nCurtis\nJoel\nBernard\nClyde\nLynn\nMilton\nAlex\nJimmie\nLewis\nSalvador\nNeil\nBen\nJeffrey\nLaurence\nRoberto\nWesley\nChester\nDarryl\nDean\nFrancisco\nEric\nFranklin\nRamon\nRoland\nRoss\nFrancis\nKen\nPat\nSam\nKarl\nLuis\nPhil\nCraig\nJohnnie\nTim\nHerman\nMax\nJerome\nJess\nRudolph\nCalvin\nRicardo\nEverett\nKent\nLowell\nBenny\nChris\nFreddie\nLeland\nAlfonso\nClaude\nGabriel\nLonnie\nLoren\nMario\nNick\nRon\nWallace\nAlexander\nByron\nCecil\nChristopher\nDelbert\nStuart\nFredrick\nGarry\nHugh\nMarshall\nNicholas\nJackie\nKenny\nScott\nDaryl\nFelix\nFernando\nHector\nClinton\nLyle\nBert\nBrent\nElmer\nSidney\nJan\nMorris\nNoel\nOscar\nMalcolm\nDarrel\nErnie\nReginald\nRobin\nVirgil\nArmando\nJulian\nLance\nRandall\nRex\nAndy\nClayton\nDwight\nSammy\nWendell\nWillard\nBurton\nCharlie\nEdgar\nAngelo\nClark\nDoyle\nMaurice\nArturo\nConrad\nGrant\nMarion\nMerle\nMicheal\nMickey\nMyron\nNeal\nPedro\nTroy\nAlfredo\nAngel\nBradley\nEdmund\nNelson\nEd\nGuy\nJerald\nMelvyn\nMonte\nRafael\nWilbur\nBennie\nEnrique\nHubert\nJessie\nMiguel\nOwen\nEllis\nFrankie\nGuadalupe\nIvan\nJeff\nOliver\nSherman\nArt\nBuddy\nGerry\nJulio\nOrville\nRodger\nStewart\nWillie\nAurelio\nDonnie\nDoug\nDwayne\nErrol\nFreddy\nPerry\nRandy\nTeddy\nAl\nAugustine\nBoyd\nChuck\nEldon\nGreg\nHarley\nLanny\nLorenzo\nLupe\nStan\nWard\nAbel\nAlejandro\nCary\nClifton\nDuncan\nGail\nIgnacio\nKirk\nMarcus\nReynaldo\nSpencer\nTerrence\nAdrian\nCarroll\nDallas\nElwood\nHal\nIrving\nJeffery\nMonty\nNathan\nNed\nRamiro\nRandolph\nSheldon\nAlberto\nArchie\nBarney\nCarlton\nDarwin\nElias\nEmil\nJerrold\nJonathan\nKevin\nRoderick\nAugust\nAustin\nCarmen\nDewayne\nEdmond\nForrest\nFredric\nGonzalo\nIrvin\nJavier\nJerold\nKay\nKurt\nPreston\nRick\nRodolfo\nSimon\nAdolph\nAlonzo\nBart\nBarton\nBernie\nBryan\nCliff\nCruz\nDenis\nDenny\nDewey\nElbert\nEmilio\nErnesto\nFidel\nFrederic\nGalen\nGaylord\nIra\nJoaquin\nJorge\nMack\nMatthew\nOtto\nRene\nRoyce\nSergio\nTerrance\nVern\nWilson\nAdolfo\nArmand\nBradford\nDana\nDel\nDominic\nDudley\nErwin\nEvan\nGale\nGarland\nGilberto\nGuillermo\nHarlan\nHerb\nJulius\nLionel\nMary\nMerrill\nMervin\nMitchell\nNathaniel\nPablo\nRod\nSalvatore\nTravis\nWade\nWinston\nAlva\nBenito\nBernardo\nBurt\nCleo\nDario\nDwain\nElliott\nElvin\nFelipe\nGayle\nGearld\nGregg\nGus\nGustavo\nHomer\nJackson\nJacob\nKenji\nKerry\nLane\nLuke\nMarty\nMervyn\nNicky\nRicky\nRollin\nSydney\nSylvester\nTruman\nTyrone\nVaughn\nWeldon\nWoodrow\nAlton\nBillie\nColin\nDell\nDickie\nDomingo\nEarnest\nElton\nEmmett\nErvin\nGeoffrey\nGerard\nHarris\nJaime\nLoran\nMel\nMichel\nMiles\nMilo\nMurray\nNicolas\nNolan\nOtis\nPatricia\nRonny\nSal\nSanford\nTerence\nTerrell\nTrinidad\nVance\nWalt\nAaron\nAgustin\nAlden\nArtie\nClaud\nClay\nCyril\nDee\nErik\nFlorentino\nGregorio\nGrover\nHans\nHorace\nHumberto\nIrwin\nIsaac\nIsmael\nJean\nJoey\nJohnie\nJunior\nLaurance\nLayton\nLenard\nLon\nLoyd\nLuther\nMarco\nMathew\nMelville\nMerritt\nMoises\nMorgan\nNorbert\nPorfirio\nRandal\nRefugio\nRiley\nRolland\nRussel\nSantos\nStanton\nStephan\nToby\nTommie\nVerne\nVicente\nWilfred\nWillis\nAbraham\nAdam\nAndre\nAnton\nArlie\nAvery\nBennett\nBrad\nBrett\nBrooks\nBryce\nBud\nCarlo\nCarol\nCedric\nChristian\nCurt\nDeane\nDelano\nDelmar\nDiego\nDonn\nElden\nEmery\nFederico\nGarrett\nGerold\nHideo\nHiroshi\nJason\nJudy\nJustin\nKelly\nKim\nKirby\nKyle\nLamont\nLayne\nLes\nLonny\nMahlon\nMarcos\nMariano\nMatt\nMaynard\nMerlin\nMoses\nNeill\nNickolas\nNorton\nOdell\nOrval\nParker\nRaoul\nReggie\nSean\nSid\nTad\nTakashi\nTheadore\nVic\nVince\nVito\nWally\nWarner\nWilbert\nWilburn\nXavier\nRobert\nJohn\nRichard\nJames\nWilliam\nDavid\nGary\nRonald\nMichael\nCharles\nDonald\nLarry\nThomas\nGeorge\nDennis\nKenneth\nFrank\nJerry\nPaul\nEdward\nRaymond\nJoseph\nStephen\nGerald\nJack\nBill\nJoe\nRoger\nDaniel\nArthur\nFred\nDon\nDouglas\nLawrence\nPeter\nJim\nWayne\nSteven\nBob\nMike\nCarl\nAlbert\nHenry\nWalter\nHarold\nRalph\nTom\nAnthony\nNorman\nBruce\nPhilip\nRoy\nStanley\nPatrick\nManuel\nRonnie\nTerry\nEugene\nGilbert\nDale\nSteve\nHoward\nLeonard\nErnest\nMelvin\nRay\nPhillip\nLouis\nHarry\nVictor\nAlfred\nGordon\nAlan\nJimmy\nBarry\nTimothy\nBilly\nTony\nClifford\nJohnny\nLee\nGene\nAllen\nMartin\nLeroy\nEarl\nJeffrey\nDanny\nEddie\nRussell\nTommy\nJon\nMarvin\nLloyd\nGlenn\nAndrew\nBrian\nJose\nMark\nBobby\nEdwin\nVernon\nFrederick\nDarrell\nWarren\nAllan\nDick\nLynn\nTed\nRodney\nDave\nAlvin\nDan\nRuben\nRudy\nJesse\nSamuel\nClarence\nKeith\nLeslie\nHerbert\nJimmie\nGregory\nTheodore\nVincent\nWesley\nJay\nPete\nBenjamin\nFloyd\nCarlos\nDean\nHarvey\nLewis\nArnold\nLeo\nAlex\nFrancis\nGlen\nCalvin\nDarryl\nEric\nJesus\nFranklin\nMilton\nClyde\nDuane\nLeon\nJuan\nLeland\nLester\nRaul\nCurtis\nKent\nNeil\nJoel\nAntonio\nBernard\nCraig\nKen\nSalvador\nMarshall\nLoren\nLonnie\nLouie\nRon\nBenny\nPat\nRamon\nChester\nKarl\nMario\nRoland\nStuart\nSam\nChristopher\nTim\nWallace\nFreddie\nMaurice\nAlexander\nPhil\nRoss\nByron\nChris\nEverett\nJerome\nLowell\nNicholas\nRoberto\nCecil\nNick\nVirgil\nDelbert\nJackie\nAlfonso\nJeff\nJess\nKenny\nScott\nHugh\nLaurence\nNoel\nSidney\nArmando\nBen\nClinton\nFredrick\nHerman\nJan\nWillard\nWillie\nMicheal\nLuis\nMax\nGarry\nLyle\nOscar\nRudolph\nConrad\nJohnnie\nBradley\nClark\nFrancisco\nGrant\nPedro\nRex\nBrent\nClaude\nGuy\nDaryl\nElmer\nJerald\nMonte\nNeal\nRandall\nRandolph\nSammy\nWendell\nBert\nEdgar\nGabriel\nRicardo\nRobin\nTerrence\nAndy\nCharlie\nClayton\nErnie\nJessie\nMickey\nDarrel\nFelix\nGeoffrey\nHector\nMalcolm\nMyron\nStan\nDoyle\nEd\nFernando\nLance\nMelvyn\nPerry\nRodger\nBurton\nChuck\nDenis\nIgnacio\nMarc\nReginald\nAngel\nEdmund\nAl\nBennie\nBuddy\nForrest\nFrankie\nJulian\nMatthew\nMiguel\nStewart\nWillis\nWinston\nClifton\nErrol\nKevin\nMarion\nNelson\nSherman\nSpencer\nHarley\nIvan\nKirk\nOliver\nTeddy\nAngelo\nBarton\nBoyd\nGerry\nMerle\nMorris\nRodolfo\nSheldon\nAaron\nDenny\nEldon\nHubert\nMonty\nOwen\nRandy\nAdolph\nArt\nDoug\nEnrique\nJeffery\nJulio\nMurray\nEduardo\nEmmett\nJerrold\nLorenzo\nLoyd\nMary\nRene\nSanford\nWoodrow\nAugustine\nBarney\nCary\nDwayne\nDwight\nElias\nHal\nHarlan\nJonathan\nJorge\nLuther\nNathan\nAlfredo\nBernie\nCarroll\nDonnie\nEddy\nElwood\nEmil\nHomer\nIrving\nJoaquin\nLanny\nNed\nRicky\nVance\nVern\nAbel\nArlen\nArturo\nBryan\nCruz\nDexter\nGreg\nGuillermo\nJacob\nJean\nMitchell\nPreston\nTomas\nVerne\nAdrian\nAlberto\nAurelio\nCarlton\nDonn\nElbert\nGalen\nGerard\nIra\nMilo\nRick\nRonny\nSalvatore\nTravis\nWilbur\nAdolfo\nArmand\nBart\nEllis\nElton\nErnesto\nFreddy\nGail\nGregg\nGuadalupe\nJere\nKurt\nLauren\nLionel\nMervin\nNorris\nOrville\nPatricia\nReuben\nTerence\nTheron\nTodd\nTracy\nVan\nArchie\nDuncan\nFrederic\nFredric\nHorace\nJavier\nJulius\nKay\nKelly\nLincoln\nLinda\nLupe\nMerrill\nOtis\nRod\nSandy\nSharon\nStanford\nTroy\nVaughn\nWade\nAndres\nAntone\nAubrey\nBarbara\nBud\nDallas\nDelmar\nDewayne\nDuke\nEarle\nEdmond\nEmery\nEmilio\nEvan\nGale\nGaylord\nGilberto\nIrvin\nJared\nJerold\nKim\nLon\nLorin\nMarcus\nMarty\nMel\nPierre\nRafael\nReyes\nRoyce\nSantiago\nSimon\nStephan\nTakeshi\nWally\nWill\nAlonzo\nAndre\nBobbie\nBradford\nClay\nDarold\nDudley\nGarrett\nGus\nHerb\nIrwin\nIsmael\nJackson\nKirby\nKit\nLen\nLyman\nMarcos\nMarlin\nMorgan\nNolan\nOrin\nReggie\nRiley\nSheridan\nSocorro\nSylvester\nTruman\nVal\nWard\nWilson\nAlejandro\nAlton\nArden\nArlan\nArvin\nBasil\nBenito\nBrooke\nChad\nCliff\nDana\nDarwin\nDewey\nEarnest\nElden\nElliot\nElliott\nElvin\nErik\nFidel\nForest\nFreeman\nGarland\nGustavo\nIsaac\nJake\nJoey\nKyle\nLes\nMarcelino\nMeredith\nMichel\nMoses\nPablo\nReed\nRefugio\nReynaldo\nRichie\nRoderick\nRolland\nRollin\nRufus\nRuss\nSantos\nSergio\nSydney\nTerrance\nThurman\nTrinidad\nVito\nXavier\nAdam\nAlden\nAnton\nAugust\nBillie\nBlaine\nBryant\nBryce\nBurt\nCarmen\nCarol\nCarter\nCharley\nChristian\nClement\nClive\nColin\nCornelius\nCurt\nDalton\nDannie\nDee\nDickie\nDrew\nEldred\nElwin\nErvin\nFlorencio\nGrover\nHarrison\nHilario\nIan\nJaime\nJeffry\nJoan\nJudson\nKenney\nKennith\nKermit\nLane\nLaverne\nLeandro\nLeigh\nLoran\nLyn\nMarco\nMargaret\nMasao\nMaynard\nMerlyn\nNathaniel\nNickolas\nNicolas\nNorm\nOren\nOrlando\nOrrin\nOrval\nPeggy\nPorfirio\nRaleigh\nRandal\nRaoul\nRaymundo\nReid\nRoman\nRussel\nShirley\nSusumu\nTod\nTyrone\nVidal\nWillam\nRobert\nJohn\nJames\nRichard\nWilliam\nDavid\nMichael\nGary\nRonald\nCharles\nThomas\nDonald\nLarry\nDennis\nKenneth\nGeorge\nJerry\nFrank\nPaul\nEdward\nDouglas\nStephen\nRaymond\nJoseph\nJack\nDaniel\nGerald\nJoe\nJim\nRoger\nBill\nFred\nLawrence\nArthur\nBruce\nPeter\nSteven\nMike\nWalter\nBob\nWayne\nHarold\nDon\nTom\nCarl\nRalph\nTerry\nAnthony\nAlbert\nStanley\nHenry\nSteve\nManuel\nPatrick\nNorman\nPhilip\nRoy\nEugene\nRay\nPhillip\nRonnie\nDale\nHarry\nErnest\nAlan\nLouis\nLeonard\nHoward\nVictor\nBarry\nJohnny\nRussell\nTony\nDanny\nJimmy\nMelvin\nAlfred\nAllen\nGordon\nGilbert\nTommy\nLee\nClifford\nTimothy\nMartin\nEddie\nGene\nGlenn\nBilly\nLeroy\nMark\nMarvin\nJeffrey\nDan\nBrian\nJon\nLloyd\nEarl\nAndrew\nJose\nBobby\nFrederick\nRodney\nJesse\nSamuel\nDave\nWarren\nKeith\nDarrell\nRudy\nDick\nEdwin\nTed\nTheodore\nCraig\nJay\nGregory\nAllan\nJimmie\nDean\nDuane\nVernon\nFloyd\nHerbert\nClyde\nCarlos\nHarvey\nVincent\nCurtis\nLeslie\nRon\nChristopher\nRuben\nLeon\nLynn\nWesley\nEric\nGlen\nLeo\nKen\nAlvin\nLewis\nArnold\nBernard\nClarence\nLeland\nRaul\nJoel\nPete\nChester\nFrancis\nLaurence\nLester\nAlex\nJesus\nTim\nMilton\nByron\nFranklin\nNeil\nRoland\nBenjamin\nBenny\nCalvin\nDarryl\nSam\nAntonio\nLouie\nKent\nWallace\nGuy\nNicholas\nCecil\nHugh\nGarry\nMax\nMicheal\nChris\nBen\nLonnie\nNick\nRandall\nRoss\nRudolph\nJackie\nPat\nSalvador\nEdgar\nFreddie\nKarl\nLoren\nStuart\nFredrick\nEverett\nMarshall\nRandy\nDarrel\nDelbert\nJeff\nJerald\nRamon\nJuan\nJerome\nMario\nFrancisco\nVirgil\nDwight\nGrant\nKenny\nArmando\nJess\nLyle\nWillie\nClark\nSammy\nSidney\nAlexander\nAlfonso\nAngel\nGerry\nLuis\nMaurice\nRex\nWillard\nCharlie\nDaryl\nErnie\nLance\nLowell\nNeal\nRoberto\nScott\nAl\nClayton\nDenis\nPerry\nFernando\nDoug\nJohnnie\nPhil\nRandolph\nClaude\nRodger\nClinton\nHerman\nKevin\nNoel\nOscar\nAndy\nJonathan\nMalcolm\nMickey\nBert\nChuck\nElmer\nForrest\nJan\nRobin\nStan\nHector\nFelix\nGabriel\nMorris\nPedro\nArt\nBrent\nConrad\nIvan\nNathan\nDonnie\nMarc\nNelson\nReginald\nWendell\nJessie\nJulian\nOliver\nSherman\nAdrian\nDoyle\nFrankie\nFreddy\nJeffery\nMiguel\nOrville\nRicardo\nTerrance\nTroy\nArturo\nBradley\nEd\nEdmund\nLorenzo\nRicky\nDenny\nRafael\nSpencer\nTerrence\nBuddy\nColin\nEldon\nKelly\nMatthew\nMerle\nOwen\nRick\nTeddy\nTerence\nWillis\nArchie\nGale\nGeoffrey\nMyron\nRene\nRodolfo\nRonny\nAaron\nBryan\nClifton\nHubert\nKurt\nLoyd\nLupe\nMonte\nRod\nSheldon\nTomas\nWilbur\nAlton\nAngelo\nEnrique\nErrol\nGreg\nHarlan\nKirk\nSterling\nTrinidad\nBarney\nEmil\nGerard\nMarion\nStewart\nVal\nAlberto\nBennie\nCarlton\nCarroll\nCliff\nDewey\nDuncan\nEdmond\nGail\nGaylord\nGregg\nHal\nHarley\nHumberto\nIgnacio\nIrving\nJavier\nMel\nMelvyn\nPreston\nTodd\nBarton\nBoyd\nDickie\nElliott\nEmmett\nFrederic\nGalen\nIrvin\nJorge\nKerry\nLionel\nMiles\nMonty\nBud\nEllis\nGarland\nHomer\nLinda\nMerrill\nSalvatore\nStephan\nVern\nWard\nBrad\nCharley\nCruz\nDomingo\nDwayne\nErvin\nErwin\nGrady\nHerb\nIra\nJacob\nJerold\nJoaquin\nMary\nMichel\nNolan\nPatricia\nReed\nTommie\nVance\nWally\nWoodrow\nAbraham\nAlden\nAlfredo\nAndres\nAugustine\nCary\nDominic\nEarnest\nEddy\nElias\nElton\nErnesto\nFidel\nKay\nKendall\nKim\nLanny\nLuther\nMarcus\nMervin\nMitchell\nMurray\nNed\nRoderick\nSimon\nVan\nWalt\nArmand\nAustin\nBart\nBernie\nBobbie\nBrooks\nBurton\nCameron\nCarol\nDallas\nDarold\nDee\nDonn\nDudley\nElvin\nElwin\nEmilio\nEvan\nFredric\nHarrison\nJerrold\nJulius\nKirby\nMac\nNorris\nOtis\nPablo\nRaoul\nRocky\nRoyce\nSal\nSandy\nToby\nTracy\nWilfred\nWinston\nAugust\nClay\nCornelius\nDana\nDarwin\nEarle\nFelipe\nFermin\nGarth\nGil\nGrover\nHorace\nJaime\nJean\nJoey\nJulio\nMack\nMason\nMatt\nNathaniel\nNorbert\nOrval\nReggie\nReuben\nReynaldo\nRolland\nVaughn\nWade\nWill\nAdolph\nBenito\nGuillermo\nGus\nHans\nIsaac\nJefferson\nJudson\nKermit\nMarco\nMarlin\nMarty\nMerlin\nOlin\nOtto\nPorfirio\nRich\nSanford\nSantos\nTravis\nVerne\nWiley\nXavier\nAbel\nBlaine\nBlair\nBradford\nBurt\nDonovan\nEdmundo\nElden\nEmanuel\nGilberto\nGregorio\nGuadalupe\nIan\nIrwin\nJere\nKennith\nKenton\nLamont\nLeigh\nLenard\nLes\nLon\nLonny\nMillard\nMonroe\nMorgan\nNewton\nNickolas\nOrlando\nTrent\nVicente\nWilson\nAdolfo\nAlonzo\nAugie\nAurelio\nBillie\nCarlo\nCedric\nCesar\nCole\nCourtland\nCyril\nDamon\nDannie\nDell\nDerek\nDewayne\nDexter\nDouglass\nElbert\nElroy\nElwood\nEmmitt\nErik\nForest\nFoster\nFritz\nGarey\nGearld\nGustavo\nHelen\nHugo\nIsmael\nJackson\nJohnie\nLane\nLauren\nLorin\nMaynard\nMerced\nMervyn\nMorley\nNicky\nNicolas\nNoah\nNoble\nOran\nRand\nRaymon\nReynold\nRickey\nRiley\nRollin\nRoman\nRufus\nRussel\nValentine\nVince\nAgustin\nAlec\nAlejandro\nAndre\nArnulfo\nAshley\nAubrey\nBasil\nBetty\nBlake\nBonifacio\nBrooke\nBryant\nBuster\nCarleton\nCecilio\nChad\nChristian\nClair\nClarke\nDarell\nDaryll\nDennie\nDenton\nDolores\nEllsworth\nElmo\nElwyn\nEmory\nFarrell\nFaustino\nFederico\nFidencio\nFranklyn\nGarrett\nGayle\nGenaro\nHarris\nJason\nJoan\nJoshua\nKaren\nKit\nLaird\nLars\nLavern\nLoran\nLynne\nMathew\nMilo\nMorton\nOllie\nPatric\nRowland\nRufino\nSherwood\nSydney\nTad\nTadashi\nTheron\nTod\nTyrone\nValentino\nWaldo\nWeldon\nWilmer\nRobert\nJohn\nJames\nRichard\nWilliam\nDavid\nMichael\nRonald\nGary\nCharles\nThomas\nLarry\nDonald\nDennis\nGeorge\nKenneth\nJerry\nPaul\nFrank\nEdward\nJoseph\nStephen\nRaymond\nJack\nDaniel\nRoger\nDouglas\nGerald\nJoe\nSteven\nJim\nBill\nArthur\nMike\nFred\nDon\nPeter\nTerry\nLawrence\nBruce\nWayne\nHarold\nWalter\nRalph\nBob\nTom\nSteve\nAlbert\nRoy\nCarl\nHenry\nManuel\nPatrick\nAnthony\nAlan\nStanley\nDanny\nEugene\nJohnny\nPhillip\nPhilip\nNorman\nRonnie\nJimmy\nErnest\nLouis\nDale\nHarry\nRay\nVictor\nLeonard\nTimothy\nHoward\nMartin\nTony\nGilbert\nMelvin\nRussell\nBarry\nBilly\nGlenn\nMarvin\nAlfred\nJeffrey\nMark\nTommy\nGene\nAllen\nClifford\nEarl\nBobby\nGordon\nFrederick\nLee\nEddie\nKeith\nBrian\nDan\nJose\nJon\nWarren\nLloyd\nLeroy\nAndrew\nSamuel\nTheodore\nDave\nCraig\nTed\nRodney\nVernon\nEdwin\nJesse\nJimmie\nAllan\nJay\nDarrell\nVincent\nEric\nHerbert\nRuben\nLeon\nChristopher\nDean\nGlen\nClarence\nCurtis\nFloyd\nGregory\nCarlos\nRon\nPete\nLeslie\nLewis\nLynn\nKent\nRudy\nTim\nDick\nDuane\nRandy\nAntonio\nLeland\nHarvey\nClyde\nJoel\nLeo\nAlvin\nDwight\nKen\nNick\nArnold\nBenjamin\nFrancis\nLester\nCalvin\nSam\nFranklin\nJesus\nChester\nRandall\nLonnie\nWallace\nLoren\nRaul\nJuan\nChris\nAlex\nLuis\nNeil\nRoland\nJohnnie\nJerome\nLaurence\nWesley\nBenny\nLouie\nMicheal\nMilton\nKarl\nOscar\nBernard\nDelbert\nMarshall\nMaurice\nScott\nRoss\nArmando\nBen\nByron\nCecil\nJeff\nClark\nRudolph\nStuart\nHugh\nRamon\nNicholas\nDarryl\nJess\nPat\nSalvador\nFredrick\nGarry\nLyle\nClaude\nEd\nSidney\nWillie\nErnie\nFrankie\nRick\nRoberto\nVirgil\nAlexander\nGuy\nJackie\nJerald\nMax\nWillard\nFreddie\nKenny\nMario\nRandolph\nGrant\nCharlie\nDarrel\nDoug\nRex\nDaryl\nFrancisco\nJan\nPhil\nClayton\nClinton\nDenis\nEdgar\nEverett\nJonathan\nBrent\nConrad\nJulian\nRodger\nTerrence\nHerman\nLowell\nMalcolm\nAlfonso\nAngel\nFernando\nGeoffrey\nHector\nLance\nPerry\nAndy\nSammy\nMiguel\nChuck\nDoyle\nForrest\nMarion\nIvan\nMonte\nNoel\nBradley\nWendell\nBert\nEdmund\nKevin\nMorris\nOwen\nPedro\nReginald\nRicardo\nTerence\nBuddy\nCary\nJessie\nKurt\nNeal\nSpencer\nStan\nClifton\nElmer\nGreg\nHomer\nJulio\nSherman\nWilbur\nFelix\nLupe\nRobin\nAl\nMickey\nNathan\nWillis\nArt\nDonnie\nGabriel\nMyron\nOrville\nRicky\nTeddy\nAaron\nEldon\nHarley\nKirk\nMarc\nDenny\nDewey\nLorenzo\nMonty\nOliver\nRafael\nRodolfo\nArturo\nFrederic\nNelson\nRene\nRoderick\nRonny\nTroy\nCarroll\nDerek\nDwayne\nJeffery\nJorge\nMatthew\nMelvyn\nRod\nSheldon\nStewart\nArchie\nBarton\nBryan\nEdmond\nJean\nJerold\nMerle\nAdrian\nAlfredo\nBennie\nBoyd\nCarlton\nElton\nHarlan\nMel\nPreston\nReynaldo\nAlberto\nBurton\nColin\nIgnacio\nKelly\nLionel\nMack\nWade\nWally\nAlton\nAngelo\nAugustine\nDana\nDarwin\nEnrique\nGarland\nGerry\nGilberto\nJacob\nJoaquin\nMarcus\nMerrill\nMitchell\nVern\nWoodrow\nBarbara\nDallas\nEarle\nElvin\nErrol\nGuadalupe\nGuillermo\nGus\nIrving\nLanny\nLuther\nMarty\nMurray\nOtis\nSimon\nVan\nWilson\nWinston\nBradford\nCarol\nCharley\nDuncan\nElbert\nElliott\nErnesto\nFelipe\nFredric\nGale\nGregg\nHal\nHubert\nNed\nRollin\nSalvatore\nSandy\nTerrance\nTodd\nVaughn\nAustin\nBlaine\nBrad\nCruz\nDonn\nEddy\nElias\nGail\nIsaac\nJavier\nJeffry\nJerrold\nJoey\nKerry\nLoyd\nMiles\nRoyce\nTyrone\nAubrey\nBarney\nDudley\nEmmett\nGerard\nHorace\nKim\nMoses\nRich\nRickey\nRuss\nSterling\nThurman\nTomas\nTracy\nTrinidad\nVince\nWeldon\nAlden\nBud\nCliff\nElden\nEllis\nElwood\nEmilio\nGarrett\nGarth\nIra\nKendall\nLauren\nLinda\nMervin\nNicolas\nRoman\nSanford\nTommie\nWard\nAbel\nBenito\nBernardo\nDexter\nEarnest\nFidel\nFlorencio\nFreddy\nGaylord\nGregorio\nJulius\nKermit\nMary\nRefugio\nSantiago\nSantos\nShelby\nStanton\nTerrill\nVance\nWilbert\nAndre\nBobbie\nBurt\nChristian\nDannie\nDee\nEmil\nErik\nErvin\nGearld\nIrvin\nLon\nLoyal\nMac\nMervyn\nMonroe\nNicky\nNolan\nOrlando\nOrrin\nRandal\nSal\nSergio\nStephan\nTruman\nVal\nAbraham\nAlonzo\nAmador\nAugust\nAurelio\nDamon\nDelmar\nDewayne\nDirk\nDomingo\nEduardo\nElliot\nEmory\nGalen\nGrady\nJason\nJules\nLane\nLeopoldo\nLincoln\nLonny\nLoran\nMarco\nNorris\nRiley\nSydney\nVerne\nWill\nWoody\nAdam\nAdolfo\nAdolph\nBart\nBillie\nBlair\nBlake\nBryce\nBurl\nCameron\nClaud\nDanial\nDickie\nDixon\nEmile\nEvan\nGrover\nIrwin\nJasper\nJudson\nKirby\nLenard\nLes\nLorin\nMilo\nMorgan\nMorton\nNathaniel\nNickolas\nNorbert\nOdell\nOrval\nPablo\nPatricia\nRamiro\nReggie\nReuben\nReynold\nRocky\nRudolfo\nSharon\nSheridan\nValente\nVicente\nWalt\nWarner\nWiley\nWilfred\nXavier\nAlejandro\nAndres\nArmand\nBennett\nBernie\nBetty\nCarlyle\nCasey\nClarke\nClay\nCornelius\nCoy\nCyril\nDominic\nDwaine\nErwin\nFederico\nForest\nGeary\nGerold\nGonzalo\nGustavo\nHerb\nHiram\nHollis\nHugo\nIsmael\nJake\nJerrel\nJudith\nJustin\nKelley\nKenney\nKenton\nLeonardo\nLorne\nLucien\nMathew\nMillard\nNewell\nRaleigh\nRaymon\nReed\nRey\nRolland\nRussel\nStevan\nTerrell\nTheadore\nTito\nToby\nTravis\nWalton\nYgnacio\nAmado\nAmbrose\nAnton\nArne\nArvid\nBarrett\nBasil\nBenson\nBlas\nBonifacio\nBret\nBrooke\nCal\nCarmen\nCarter\nCesar\nChet\nClair\nCleo\nCollin\nDarel\nDarell\nDaryle\nDelano\nDerrel\nDewain\nDewitt\nDuke\nElijah\nElmo\nEsteban\nFaustino\nGino\nGodfrey\nHershel\nHilton\nIan\nIsrael\nJackson\nJaime\nJeremy\nJerrell\nJohnie\nJosef\nKaren\nKay\nKit\nLadd\nLaird\nLaurance\nLaverne\nLawernce\nLeigh\nLyn\nMarcos\nMarlin\nMatt\nMichel\nPatricio\nPercy\nQuentin\nRaoul\nRollie\nRoscoe\nRoyal\nSandra\nSaul\nSean\nShawn\nSonny\nTad\nTerryl\nVito\nWerner\nZane\nRobert\nJohn\nJames\nRichard\nWilliam\nMichael\nDavid\nRonald\nGary\nCharles\nThomas\nDonald\nLarry\nDennis\nGeorge\nKenneth\nJerry\nPaul\nFrank\nEdward\nStephen\nJoseph\nDaniel\nRaymond\nSteven\nJack\nJim\nJoe\nRoger\nMike\nGerald\nBill\nDouglas\nArthur\nFred\nTerry\nLawrence\nBruce\nDon\nRalph\nWayne\nPeter\nSteve\nTom\nWalter\nAlan\nAlbert\nHarold\nRoy\nPatrick\nCarl\nDanny\nAnthony\nHenry\nBob\nJohnny\nManuel\nStanley\nEugene\nRonnie\nNorman\nDale\nPhilip\nRay\nTimothy\nLouis\nJimmy\nHoward\nPhillip\nErnest\nMark\nLeonard\nHarry\nRussell\nBilly\nJeffrey\nEddie\nVictor\nGlenn\nMelvin\nTony\nGilbert\nMarvin\nAlfred\nLee\nGene\nBarry\nCraig\nAllen\nTommy\nJose\nJon\nGordon\nClifford\nMartin\nDan\nKeith\nBrian\nFrederick\nEarl\nAndrew\nGregory\nLeroy\nBobby\nWarren\nLloyd\nSamuel\nRodney\nTed\nDave\nJesse\nLeslie\nTim\nEdwin\nGlen\nRudy\nChristopher\nVernon\nRon\nDarrell\nEric\nDean\nTheodore\nAllan\nJoel\nJay\nClarence\nJimmie\nRandall\nHerbert\nCurtis\nCarlos\nVincent\nDick\nRandy\nFloyd\nAlvin\nDuane\nFrancis\nPete\nRuben\nHarvey\nWesley\nChris\nJesus\nKen\nLeon\nClyde\nLeo\nLewis\nDwight\nKent\nBernard\nLester\nNicholas\nGarry\nLynn\nRick\nScott\nRoland\nArnold\nNick\nAlex\nLonnie\nRaul\nCalvin\nBenjamin\nMicheal\nFreddie\nSalvador\nCecil\nKarl\nGuy\nHugh\nJeff\nDarryl\nMarshall\nNeil\nClaude\nJan\nJohnnie\nMilton\nPat\nWallace\nAlfonso\nFrancisco\nJuan\nSam\nAlexander\nFredrick\nLaurence\nLeland\nLoren\nAntonio\nFranklin\nJerome\nBenny\nLouie\nJackie\nVirgil\nWillie\nArmando\nErnie\nRudolph\nJonathan\nRoss\nLyle\nPhil\nMaurice\nRamon\nRandolph\nBen\nDelbert\nMax\nStuart\nEverett\nKirk\nLuis\nPerry\nEd\nSammy\nCharlie\nJess\nChuck\nHerman\nRex\nRobin\nChester\nElmer\nLowell\nPedro\nRicky\nWillard\nClark\nGreg\nBert\nClayton\nDoug\nFernando\nHector\nOscar\nClinton\nFrankie\nLance\nMalcolm\nSidney\nFelix\nMario\nRicardo\nDaryl\nGeoffrey\nEdmund\nKenny\nAndy\nDarrel\nDonnie\nGabriel\nJeffery\nMarc\nGrant\nMorris\nMyron\nRodger\nWillis\nAl\nBradley\nForrest\nReginald\nTroy\nByron\nEldon\nKurt\nMiguel\nNoel\nRoberto\nStan\nConrad\nEdgar\nKevin\nSheldon\nBennie\nCary\nTerrence\nAlfredo\nIvan\nTerrance\nBuddy\nDenny\nNathan\nRoderick\nVan\nAdrian\nArchie\nHomer\nJulian\nMarion\nMickey\nNelson\nSherman\nBrent\nClifton\nDoyle\nHubert\nJerald\nJorge\nPreston\nIgnacio\nKim\nMitchell\nNeal\nSpencer\nTerence\nWard\nWendell\nArturo\nDenis\nGerry\nMatthew\nRafael\nStewart\nEmilio\nGale\nMonte\nRene\nRickey\nTeddy\nAngel\nArt\nBillie\nBryan\nBud\nGregg\nOliver\nBarney\nBurton\nEarnest\nEnrique\nIsaac\nNed\nRodolfo\nTodd\nWilbert\nWilbur\nCarlton\nDwayne\nHal\nKelly\nKit\nLon\nLorenzo\nMerle\nMonty\nOrville\nReynaldo\nRonny\nRoyce\nVal\nAlton\nAndre\nAngelo\nAustin\nBradford\nDomingo\nErvin\nGalen\nJoey\nKerry\nLes\nLionel\nMack\nMarcus\nOtis\nReuben\nWade\nArmand\nBrad\nCliff\nDewey\nFreddy\nGus\nIrving\nLuther\nOwen\nAlberto\nAugustine\nCarroll\nColin\nDexter\nDominic\nFrederic\nJerrold\nMiles\nNathaniel\nRod\nWiley\nWinston\nWoodrow\nAdolph\nCharley\nEdmond\nEllis\nEmil\nGarland\nGerard\nHarlan\nIra\nJessie\nLupe\nToby\nVaughn\nAbel\nAndres\nBoyd\nDana\nDuncan\nElliott\nGuadalupe\nHarrison\nJackson\nJaime\nJavier\nJulius\nMerlin\nRamiro\nRuss\nSalvatore\nStephan\nThurman\nTyrone\nVern\nWoody\nCarter\nDudley\nElias\nEmmett\nErwin\nGuillermo\nHarley\nJerold\nJoaquin\nJulio\nLanny\nLoyd\nLyman\nMaynard\nMorgan\nMurray\nNolan\nPablo\nRandal\nRickie\nRussel\nSanford\nTomas\nVic\nAmos\nBernardo\nDannie\nDee\nDelmar\nErnesto\nErrol\nGarth\nIrvin\nJason\nJean\nKennith\nLane\nReed\nRich\nRoyal\nRufus\nSherwood\nTommie\nTravis\nWeldon\nAaron\nAdam\nAugust\nBarbara\nCarmen\nChristian\nDarwin\nDelmer\nEddy\nElbert\nFidel\nForest\nGrady\nGrover\nIan\nJeffry\nLonny\nMarco\nMerrill\nOtto\nReggie\nSandy\nTracy\nTruman\nVance\nWilson\nAbraham\nAnton\nBart\nBarton\nCarol\nDallas\nDerrell\nDiego\nDonn\nDrew\nDwain\nErik\nFredric\nGail\nGarrett\nHorace\nHumberto\nKendall\nMary\nNorris\nRefugio\nRoscoe\nRosendo\nRusty\nSergio\nSharon\nSimon\nSkip\nTyler\nYsidro\nAgustin\nAlejandro\nAlonzo\nArvid\nAurelio\nBarrett\nBernie\nBlair\nBruno\nCarey\nChad\nCruz\nDanial\nDarell\nDel\nDerek\nElwood\nEvan\nFelipe\nGonzalo\nHiram\nHollis\nJefferson\nJeremy\nJunior\nKenton\nKermit\nLamont\nLaverne\nLeigh\nLincoln\nMac\nMarty\nMelton\nMelvyn\nMonroe\nNickolas\nNicolas\nPercy\nPierre\nQuentin\nRocky\nTerrell\nVerne\nWally\nWalt\nAlden\nArlen\nArlie\nAubrey\nBobbie\nBrooks\nBryant\nBurl\nBurt\nCameron\nCarleton\nChet\nClaud\nClement\nCourtney\nCurt\nCyril\nDavis\nDennie\nDonna\nDouglass\nEsteban\nFreeman\nFritz\nGayle\nGaylord\nGeary\nHilario\nIrwin\nJacob\nKaren\nKip\nLamar\nLawerence\nLeighton\nLeopoldo\nLyn\nMel\nMerritt\nMervin\nMilo\nMoses\nMurphy\nNorbert\nOrin\nPatricia\nRiley\nRob\nRobbie\nRodrick\nRolland\nRosario\nSammie\nSantos\nShelby\nSonny\nSterling\nStevan\nSydney\nTheron\nTod\nValentino\nVince\nVito\nWarner\nWilford\nWilfred\nWill\nXavier\nAllyn\nBasil\nBertram\nBrice\nCal\nCarlyle\nCasey\nClarke\nClay\nCleo\nCornelius\nCornell\nCourtland\nCurtiss\nDamon\nDarold\nDenton\nDewayne\nDickie\nDion\nDominick\nDonovan\nEduardo\nElmo\nEmanuel\nErick\nFaustino\nGraham\nHayward\nHerb\nIsmael\nJake\nJere\nJoesph\nJohnie\nJudd\nJustin\nKay\nKirby\nLauren\nLenard\nLenny\nLeonardo\nLinda\nLorin\nMariano\nMichel\nNancy\nNorm\nOdell\nOren\nOrval\nRaoul\nRaymundo\nReid\nReyes\nRigoberto\nSal\nSalvadore\nSean\nStanford\nStanton\nSylvester\nThad\nTino\nTrent\nTrinidad\nVirginia\nRobert\nJohn\nJames\nRichard\nMichael\nWilliam\nDavid\nGary\nRonald\nCharles\nThomas\nDennis\nLarry\nDonald\nKenneth\nGeorge\nPaul\nStephen\nEdward\nJerry\nFrank\nJoseph\nSteven\nDaniel\nMike\nJack\nRaymond\nJoe\nJim\nRoger\nBill\nTerry\nDouglas\nSteve\nGerald\nBruce\nPeter\nArthur\nWayne\nLawrence\nDon\nAlan\nTom\nBob\nFred\nDanny\nRalph\nAnthony\nPatrick\nHarold\nHenry\nTimothy\nRoy\nCarl\nWalter\nAlbert\nMark\nPhilip\nGregory\nStanley\nDale\nManuel\nRussell\nJohnny\nLouis\nVictor\nPhillip\nHarry\nEugene\nJimmy\nNorman\nRonnie\nErnest\nLeonard\nCraig\nJeffrey\nTony\nDan\nGilbert\nJon\nBarry\nHoward\nRay\nAlfred\nAllen\nRodney\nTommy\nJose\nMartin\nBrian\nGordon\nKeith\nBilly\nEddie\nLee\nClifford\nMelvin\nGlenn\nGene\nAndrew\nFrederick\nDave\nChristopher\nEarl\nLloyd\nMarvin\nEric\nSamuel\nWarren\nJesse\nBobby\nJay\nRon\nLeslie\nCurtis\nHerbert\nDarrell\nTim\nVernon\nGlen\nLeroy\nTheodore\nVincent\nEdwin\nRandy\nDean\nJimmie\nAllan\nMicheal\nCarlos\nClyde\nDuane\nTed\nChris\nRick\nClarence\nHarvey\nRandall\nKen\nScott\nAntonio\nRuben\nJoel\nRudy\nPete\nDwight\nBernard\nLeon\nAlvin\nFrancis\nJeff\nLynn\nFloyd\nWillie\nAlex\nKent\nRaul\nBenjamin\nJesus\nLouie\nJuan\nNeil\nDick\nDarryl\nFranklin\nWesley\nLeland\nLance\nLeo\nNicholas\nSam\nBen\nLonnie\nArnold\nSalvador\nCalvin\nLester\nNick\nGarry\nGreg\nLuis\nMarshall\nRamon\nChester\nRicky\nLaurence\nCecil\nLewis\nMarc\nMilton\nPat\nRoberto\nRoss\nFreddie\nJohnnie\nAlexander\nFredrick\nWallace\nAlfonso\nByron\nEverett\nFrancisco\nArmando\nJonathan\nBenny\nDaryl\nEd\nGuy\nKenny\nErnie\nHerman\nKarl\nLoren\nLyle\nMario\nClaude\nDelbert\nDoug\nMiguel\nRoland\nChuck\nJerome\nRudolph\nSammy\nFernando\nJeffery\nRodger\nKevin\nClark\nJackie\nJan\nRandolph\nDonnie\nHugh\nPhil\nRicardo\nOscar\nRobin\nWillard\nMaurice\nRene\nStuart\nFelix\nJess\nJerald\nPerry\nTroy\nVan\nRex\nSherman\nDarrel\nSidney\nBradley\nBrent\nClinton\nElmer\nHector\nMax\nAndy\nCharlie\nForrest\nFrankie\nGeoffrey\nIvan\nLowell\nArturo\nBert\nGrant\nTeddy\nTerrence\nVirgil\nEdmund\nMitchell\nPedro\nCary\nClifton\nConrad\nDana\nEdgar\nMalcolm\nMorris\nNeal\nClayton\nErnesto\nNoel\nAlfredo\nDenis\nReginald\nKirk\nOtis\nTerrance\nJulian\nLupe\nAngel\nArchie\nArt\nBryan\nDwayne\nIgnacio\nJorge\nStan\nWendell\nBennie\nDenny\nDoyle\nIra\nJessie\nJoaquin\nMarty\nMyron\nBarney\nGerry\nHomer\nKerry\nMickey\nRickey\nAl\nBradford\nKim\nNathan\nOrville\nSheldon\nTerence\nJulio\nLoyd\nMarion\nMatthew\nOliver\nTodd\nWillis\nAaron\nAdrian\nCliff\nEnrique\nHarley\nHubert\nLuther\nMerle\nMonte\nDewey\nGabriel\nGregg\nHarlan\nLanny\nPreston\nRafael\nTracy\nVern\nBuddy\nEldon\nKurt\nMonty\nNelson\nOwen\nRod\nRodolfo\nStewart\nBurton\nGuadalupe\nHal\nJaime\nRocky\nRoderick\nTruman\nAlberto\nSpencer\nWilbur\nDannie\nEdmond\nElliott\nFreddy\nGil\nGuillermo\nIsaac\nKelly\nMarcus\nTommie\nTyrone\nWade\nWard\nWoodrow\nAndre\nAngelo\nBarton\nBillie\nBoyd\nBrad\nDudley\nEarnest\nFelipe\nFredric\nGale\nGus\nIrving\nJoey\nLinda\nLionel\nSal\nTomas\nAubrey\nDewayne\nEddy\nElias\nFrederic\nJavier\nKendall\nNathaniel\nRonny\nSandy\nSantos\nTheron\nVance\nWilson\nAbel\nAlton\nAndres\nAugustine\nBart\nEduardo\nEmmett\nErik\nGalen\nHumberto\nJean\nJulius\nMack\nMary\nRamiro\nReggie\nRoyal\nSylvester\nTrinidad\nVaughn\nArmand\nCruz\nCurt\nDonn\nEllis\nGerard\nIan\nJacob\nJeffry\nJerold\nLon\nMilo\nRussel\nToby\nWilfred\nAdolph\nAlejandro\nCarroll\nDexter\nDickie\nDuncan\nEmilio\nGail\nJason\nMarlin\nMatt\nNed\nReynaldo\nRiley\nSimon\nStephan\nSydney\nWeldon\nBernie\nBud\nCarlton\nCory\nDomingo\nEmil\nGaylord\nGeary\nGilberto\nHorace\nJackson\nJerrold\nJoesph\nKermit\nLorenzo\nMathew\nMaynard\nMerrill\nMorton\nNicolas\nNorris\nSterling\nAurelio\nBernardo\nBobbie\nCarol\nChristian\nColin\nCourtney\nDonny\nGonzalo\nGrover\nHershel\nKip\nKris\nLauren\nLyman\nMel\nMillard\nMurray\nNicky\nNolan\nOrval\nOtto\nPercy\nReed\nRefugio\nRich\nRollin\nRoosevelt\nSalvatore\nStanton\nTravis\nVal\nWill\nXavier\nBarrett\nButch\nCaesar\nCharley\nClarke\nDario\nDouglass\nEdmundo\nElmo\nElwin\nEmery\nEvan\nFidel\nGarrett\nGrady\nGustavo\nHarrison\nHugo\nLeopoldo\nLes\nMarcel\nMarco\nRandal\nReuben\nReyes\nReynold\nSantiago\nVicente\nWally\nWalt\nWilbert\nAdam\nArtie\nAugust\nBertram\nBlair\nCameron\nCarey\nCarrol\nCasey\nCesar\nClaud\nConnie\nDallas\nDamon\nDanial\nDarold\nDenton\nDonovan\nDustin\nEarle\nEmanuel\nErick\nErrol\nErvin\nFermin\nGarth\nGerardo\nIrvin\nJunior\nJustin\nLucky\nMelvyn\nMervin\nMikel\nMiles\nPablo\nPierre\nRoyce\nRuss\nSergio\nSharon\nSonny\nTad\nTerrell\nTod\nVerne\nVic\nWinston\nWoody\nAbelardo\nAbraham\nAgustin\nAmos\nAntony\nAugustus\nCleveland\nCornelius\nCyril\nDarwin\nDee\nDennie\nDominic\nDwain\nEdwardo\nElbert\nElwood\nEmile\nEverardo\nFlorencio\nHerschel\nIsmael\nJere\nKennith\nKit\nLane\nLawerence\nLonny\nMarcos\nMarshal\nMason\nMaximo\nMerl\nMerlin\nMichel\nMyles\nOrlando\nRand\nRickie\nRoscoe\nSaul\nSean\nShelby\nThaddeus\nThurman\nTimmy\nTyler\nWhitney\nWilburn\nWiley\nWilmer\nWinfred\nAlonzo\nAlva\nAlvaro\nAmador\nAnselmo\nArlen\nArvin\nAustin\nBetty\nBlake\nBrooks\nBruno\nBurnell\nBurt\nBuster\nCarlo\nCedric\nCelestino\nClay\nCordell\nCoy\nDel\nDuke\nDwaine\nEliseo\nElton\nEverette\nFerdinand\nForest\nGarland\nGay\nGerold\nGino\nHans\nHarland\nHarris\nIke\nIsidro\nJudd\nJudy\nJule\nKenney\nKirby\nLamar\nLeigh\nLenard\nLenny\nLincoln\nLorin\nMarcelino\nMervyn\nMilford\nMurphy\nNestor\nNickey\nNickolas\nNorval\nPamela\nPascual\nPorfirio\nQuentin\nRaymundo\nRichmond\nRickard\nRobbie\nRolf\nRoman\nRory\nSandra\nSanford\nSebastian\nStanford\nTerrill\nThurston\nTrevor\nUlysses\nVito\nWaldo\nRobert\nJohn\nRichard\nJames\nMichael\nWilliam\nDavid\nGary\nRonald\nDennis\nThomas\nCharles\nLarry\nDonald\nKenneth\nPaul\nGeorge\nSteven\nStephen\nFrank\nDaniel\nJerry\nEdward\nJoseph\nMike\nTerry\nBruce\nRaymond\nSteve\nJack\nJoe\nJim\nGregory\nDouglas\nRoger\nBill\nGerald\nLawrence\nDanny\nPatrick\nWayne\nArthur\nTimothy\nMark\nFred\nPeter\nAlan\nTom\nDon\nRalph\nBob\nHarold\nAnthony\nRoy\nWalter\nAlbert\nPhilip\nCarl\nDale\nJeffrey\nHenry\nStanley\nCraig\nJohnny\nRussell\nManuel\nDan\nHoward\nRonnie\nPhillip\nLouis\nRay\nErnest\nLeonard\nHarry\nBarry\nGlenn\nGilbert\nNorman\nEugene\nJimmy\nTony\nAllen\nMartin\nRodney\nLee\nAlfred\nAndrew\nKeith\nVictor\nBrian\nJon\nEddie\nTommy\nChristopher\nBilly\nMelvin\nTim\nEric\nJose\nGene\nDave\nClifford\nScott\nRon\nRandy\nGordon\nJay\nFrederick\nGreg\nLloyd\nMarvin\nBobby\nDean\nCarlos\nSamuel\nRandall\nEarl\nChris\nJesse\nRick\nLeroy\nWarren\nAllan\nTheodore\nKen\nLeslie\nDarrell\nTed\nEdwin\nGlen\nRuben\nJoel\nCurtis\nVincent\nJeff\nVernon\nClarence\nMicheal\nJimmie\nFloyd\nKent\nNicholas\nLeon\nLynn\nFrancis\nRudy\nDwight\nHerbert\nBernard\nHarvey\nWesley\nDick\nNeil\nWillie\nPete\nRaul\nDuane\nSam\nJesus\nSalvador\nAlvin\nClyde\nArnold\nJuan\nLewis\nBenjamin\nAntonio\nMarc\nArmando\nCalvin\nJerome\nLeo\nDarryl\nJonathan\nLoren\nStuart\nPhil\nLaurence\nPat\nAlexander\nFrancisco\nGarry\nLonnie\nJohnnie\nLester\nLeland\nRoss\nAlex\nKarl\nBenny\nBrent\nLouie\nNick\nRicky\nChester\nChuck\nLuis\nRandolph\nMilton\nGuy\nMario\nRoberto\nRobin\nClaude\nWallace\nBryan\nHugh\nKim\nByron\nDaryl\nMiguel\nMarshall\nDoug\nJeffery\nAlfonso\nBen\nKenny\nPerry\nAndy\nKevin\nLance\nOscar\nFreddie\nJan\nNeal\nRoland\nFranklin\nHector\nTerrence\nRamon\nDana\nDarrel\nJackie\nEdmund\nJerald\nRex\nRodger\nRudolph\nGregg\nHerman\nEd\nErnie\nLyle\nPedro\nSammy\nJess\nMaurice\nMax\nSidney\nEverett\nFredrick\nReginald\nCecil\nClinton\nFernando\nAl\nVirgil\nWillard\nForrest\nLowell\nMorris\nRickey\nRod\nCharlie\nDelbert\nDenis\nGeoffrey\nStan\nBradley\nGabriel\nAngel\nClark\nEdgar\nRicardo\nAdrian\nArturo\nFelix\nJessie\nDenny\nFrankie\nKirk\nPreston\nRene\nGrant\nMatthew\nRafael\nTeddy\nTerrance\nBennie\nBert\nCary\nEnrique\nGerry\nMitchell\nRoderick\nVan\nBuddy\nDoyle\nMarty\nMickey\nMyron\nAlfredo\nClayton\nKerry\nKurt\nMalcolm\nArt\nClifton\nOliver\nRodolfo\nLionel\nWendell\nBrad\nHal\nJulian\nTroy\nArchie\nElmer\nJorge\nLuther\nMonte\nNathan\nAngelo\nNoel\nRandal\nDonnie\nLoyd\nLupe\nMarcus\nSherman\nTerence\nWade\nConrad\nEdmond\nLanny\nNelson\nRonny\nVern\nAaron\nCarroll\nEmmett\nFrederic\nGuadalupe\nIvan\nMonty\nOrville\nDrew\nDuncan\nEldon\nErnesto\nEvan\nGale\nHubert\nIra\nJulio\nSpencer\nTyrone\nDwayne\nEduardo\nFreddy\nIgnacio\nJavier\nLorenzo\nMerle\nTomas\nAlberto\nAlonzo\nBarney\nBoyd\nBud\nEddy\nHomer\nOwen\nSandy\nSimon\nStewart\nVance\nWillis\nBurton\nDewey\nGrover\nHorace\nJacob\nJean\nRamiro\nRuss\nTodd\nAbel\nBillie\nBradford\nCurt\nElliott\nHarlan\nNathaniel\nSergio\nTommie\nTravis\nWilbert\nWilbur\nAlton\nAndre\nAugustine\nBobbie\nBurt\nErik\nFredric\nGalen\nGerard\nGuillermo\nHumberto\nJoaquin\nJulius\nKelly\nLen\nLes\nLon\nMack\nSheldon\nVaughn\nWilson\nAubrey\nBart\nBlair\nDonn\nDudley\nEarnest\nElias\nErwin\nFelipe\nGarrett\nIrvin\nJaime\nJerrold\nKendall\nLorin\nOtis\nRickie\nStephan\nAustin\nCliff\nColin\nDannie\nDewayne\nDominic\nHerb\nJackson\nJason\nKennith\nKirby\nMiles\nRoyce\nSalvatore\nSanford\nWard\nAlejandro\nAndres\nBarton\nClint\nDamon\nDel\nDomingo\nDouglass\nElton\nGail\nGarland\nGrady\nHarley\nIan\nIsaac\nJerold\nLenny\nMarion\nMarlin\nMel\nMurray\nPercy\nRocky\nTerrell\nVal\nWally\nWilfred\nBernardo\nBryce\nCarol\nCarter\nChristian\nDallas\nDane\nElbert\nEllis\nElwood\nEmil\nErvin\nHollis\nIrving\nKermit\nKip\nLamont\nLary\nLeigh\nMatt\nMerrill\nNed\nNicolas\nRand\nReynaldo\nRich\nTruman\nWeldon\nWinston\nAdolph\nAgustin\nArlen\nCarlton\nCarson\nElvin\nFidel\nGaylord\nGus\nJefferson\nJustin\nKris\nLinda\nLonny\nMac\nPablo\nReed\nReynold\nRolando\nRussel\nRyan\nStevan\nTracy\nTrinidad\nVerne\nVince\nWalt\nBlaine\nCameron\nDanial\nDarwin\nDell\nDickie\nDoran\nEmery\nErrol\nGilberto\nGregorio\nJake\nJeffry\nJoey\nMarco\nMary\nMervin\nReuben\nRoman\nSal\nSterling\nSydney\nAdam\nAugust\nBennett\nBernie\nBrett\nCedric\nClay\nCruz\nDelmer\nDexter\nDino\nDonnell\nDwain\nEmilio\nGerold\nGraham\nIrwin\nJeremy\nKenton\nMarcos\nMorgan\nNicky\nNorbert\nRiley\nRolland\nRory\nRosendo\nShannon\nSharon\nStanford\nStanton\nSylvester\nTaylor\nThurman\nWill\nWoodrow\nWoody\nAntone\nBasil\nDavis\nDee\nFederico\nFermin\nGarth\nGil\nGustavo\nHank\nHarmon\nHerschel\nHugo\nJonathon\nJonnie\nKit\nLamar\nLane\nLaverne\nLyn\nMariano\nMaynard\nMelvyn\nMilo\nNolan\nNorris\nOdis\nOrrin\nRaoul\nRobbin\nRusty\nSantos\nSheridan\nSkip\nSusan\nTimmy\nToby\nTyler\nWiley\nXavier\nAdan\nAlphonso\nAnton\nAurelio\nBarrett\nBarrie\nBlas\nBurl\nCarey\nChesley\nClair\nClaud\nCleo\nCory\nDayton\nDerrell\nDonna\nDrake\nDustin\nDwane\nEarle\nEliseo\nElliot\nEllsworth\nErick\nEzequiel\nFaustino\nFoster\nFreeman\nGarold\nGayle\nGearld\nGeary\nGlynn\nHarrison\nIsidro\nJamie\nJared\nJere\nJody\nJohnie\nJudson\nJules\nJunior\nLauren\nLino\nMargarito\nMerlin\nNancy\nNels\nOllie\nOrval\nRandell\nReggie\nRogelio\nRollin\nRonnald\nRoscoe\nRudolpho\nSantiago\nSaul\nScot\nSean\nSebastian\nShirley\nSonny\nTerrill\nTheadore\nTheron\nVic\nVicente\nAbraham\nAllyn\nAlva\nAlvaro\nArnulfo\nAron\nArvid\nBarbara\nBaron\nBenson\nButch\nCarmen\nCesar\nColeman\nDerald\nDominick\nDuke\nDusty\nEusebio\nGarey\nGavin\nGaylon\nGino\nGodfrey\nHayden\nHayward\nHenri\nHershel\nHiram\nHouston\nIsmael\nIsrael\nJhon\nJohney\nJudith\nLawerence\nLoran\nLou\nLyman\nMacario\nMahlon\nMarshal\nMerritt\nMichel\nMikel\nNoble\nOtto\nPamela\nPatric\nPatricia\nQuentin\nRaymon\nRaynaldo\nRey\nRickard\nRoderic\nRogers\nRoyal\nRufus\nRuth\nSammie\nThad\nThom\nTod\nValentin\nVirginia\nVito\nWilford\nYsidro\nRobert\nJohn\nMichael\nJames\nRichard\nDavid\nWilliam\nRonald\nGary\nLarry\nThomas\nDennis\nCharles\nDonald\nSteven\nKenneth\nPaul\nStephen\nGeorge\nDaniel\nFrank\nEdward\nGregory\nJoseph\nJerry\nMike\nBruce\nSteve\nTerry\nRaymond\nMark\nJack\nDouglas\nJoe\nJim\nTimothy\nPatrick\nBill\nLawrence\nRoger\nDanny\nGerald\nWayne\nPeter\nAlan\nAnthony\nArthur\nTom\nFred\nRalph\nCraig\nJeffrey\nPhilip\nCarl\nAlbert\nDon\nWalter\nStanley\nDale\nHenry\nHarold\nJohnny\nBob\nDan\nPhillip\nManuel\nGlenn\nRussell\nRoy\nBarry\nBrian\nHoward\nRonnie\nErnest\nLouis\nHarry\nJimmy\nChristopher\nNorman\nLeonard\nAllen\nEugene\nRay\nJose\nTony\nRandy\nTommy\nGreg\nLee\nRodney\nKeith\nMartin\nEddie\nAndrew\nGilbert\nAlfred\nDave\nClifford\nJon\nScott\nGordon\nFrederick\nRandall\nEric\nTim\nEarl\nVictor\nGene\nBilly\nChris\nMelvin\nJay\nJesse\nRon\nMarvin\nBobby\nTed\nSamuel\nDean\nWarren\nCurtis\nRick\nDarrell\nLloyd\nCarlos\nRuben\nEdwin\nVincent\nGlen\nJoel\nLeslie\nTheodore\nKen\nLeroy\nRudy\nJeff\nMicheal\nAllan\nVernon\nClarence\nDuane\nKent\nLeon\nNicholas\nJuan\nClyde\nHerbert\nPete\nLonnie\nWesley\nLewis\nJimmie\nRicky\nMarc\nFloyd\nJesus\nLester\nAlex\nCalvin\nRaul\nBenjamin\nFrancisco\nMario\nWillie\nNeil\nLynn\nSam\nAlvin\nArnold\nDarryl\nArmando\nDana\nNick\nAntonio\nBernard\nJerome\nLeo\nFrancis\nChester\nFranklin\nGuy\nKarl\nKevin\nPat\nRoss\nHarvey\nDick\nJonathan\nRandolph\nStuart\nLaurence\nLoren\nErnie\nJohnnie\nMarshall\nDwight\nJeffery\nRobin\nSalvador\nBen\nClaude\nGregg\nAlexander\nLouie\nRickey\nPhil\nSammy\nLuis\nSidney\nJess\nKim\nLance\nMilton\nRoland\nTerrence\nDaryl\nFernando\nFredrick\nRoberto\nBradley\nAlfonso\nJackie\nLeland\nByron\nClinton\nBrent\nHugh\nRodger\nRamon\nChuck\nJan\nAndy\nBenny\nKenny\nRex\nBryan\nNeal\nOscar\nDoug\nEverett\nGarry\nPerry\nCecil\nHerman\nMiguel\nRudolph\nClark\nHector\nKirk\nMaurice\nWallace\nGeoffrey\nKerry\nPedro\nRicardo\nRafael\nEd\nGrant\nLyle\nMax\nVirgil\nFreddie\nRod\nEdgar\nKurt\nMitchell\nRene\nDarrel\nForrest\nJulian\nReginald\nTroy\nDonnie\nDoyle\nFelix\nGabriel\nStan\nDelbert\nMorris\nWillard\nBrad\nMatthew\nCary\nDenis\nLowell\nMickey\nRoderick\nSherman\nAl\nBert\nCharlie\nClayton\nElmer\nFrankie\nJorge\nTeddy\nAlberto\nMalcolm\nAlfredo\nConrad\nEdmund\nHal\nMonte\nRonny\nAngel\nAugustine\nDwayne\nLon\nMyron\nNathan\nNelson\nArturo\nEnrique\nGerry\nJessie\nNoel\nRandal\nTerrance\nTyrone\nJerald\nPreston\nTodd\nBradford\nDenny\nLupe\nRodolfo\nVance\nClifton\nGuadalupe\nMonty\nAaron\nAdrian\nBennie\nCliff\nDane\nEldon\nJoey\nMarty\nMel\nEvan\nFrederic\nHarlan\nIgnacio\nJerrold\nKelly\nLorenzo\nMarcus\nSheldon\nVan\nVaughn\nCarlton\nGuillermo\nJulio\nOwen\nRickie\nRocky\nRuss\nSterling\nArt\nBarney\nCurt\nEdmond\nIra\nJaime\nLuther\nMarion\nNathaniel\nSpencer\nStewart\nLionel\nLoyd\nOtis\nTommie\nWendell\nWilbur\nAngelo\nDewey\nEmilio\nErik\nHarley\nHubert\nLes\nMiles\nOliver\nTerence\nTravis\nWard\nAdam\nArchie\nBart\nDewayne\nIvan\nJavier\nMerle\nMichel\nPablo\nRyan\nVern\nWillis\nGerard\nLane\nReynaldo\nStephan\nAgustin\nAlejandro\nBobbie\nBoyd\nDallas\nDuncan\nMarco\nSandy\nToby\nTomas\nVal\nAndres\nClay\nDomingo\nEarnest\nEduardo\nEmmett\nFelipe\nGilberto\nIrvin\nJacob\nOrville\nRory\nSergio\nTracy\nAbel\nAlton\nAndre\nBarton\nBernie\nClint\nDonn\nElbert\nEllis\nElvin\nErnesto\nGale\nGalen\nGarland\nIrving\nIsaac\nJoesph\nKermit\nLanny\nNed\nPorfirio\nBrett\nBuddy\nBurton\nCarey\nChristian\nColin\nDirk\nDrew\nFreddy\nFredric\nGail\nGus\nJerold\nLinda\nSanford\nSantos\nTrinidad\nWade\nWilson\nBlake\nCesar\nDarwin\nDexter\nElias\nElliott\nErvin\nJeffry\nJoaquin\nJody\nKendall\nMorgan\nRobbie\nSean\nVerne\nWally\nAugust\nBillie\nBlaine\nCharley\nDudley\nGeary\nHorace\nHumberto\nIan\nLeigh\nLeopoldo\nLonny\nMack\nMary\nMerrill\nOtto\nPercy\nRaymundo\nRich\nRoyce\nRussel\nSalvatore\nStevan\nWilbert\nWill\nWinston\nBryce\nBurt\nDee\nDell\nDickie\nEddy\nGil\nGrover\nGustavo\nHomer\nJean\nKennith\nKenton\nLorin\nLyn\nMaynard\nOrlando\nReggie\nRolland\nRusty\nWoodrow\nXavier\nAdolph\nBasil\nChad\nCleo\nCornelius\nCoy\nDanial\nErrol\nGarth\nGaylord\nHarrison\nHerb\nJake\nJason\nJere\nJulius\nJunior\nKirby\nKit\nKris\nLen\nMarcelino\nMarlin\nMelvyn\nMurray\nNicky\nNicolas\nReed\nReuben\nRoman\nRoosevelt\nSimon\nStanford\nWoody\nZane\nAdolfo\nAlonzo\nAlphonso\nAustin\nBenito\nBooker\nBud\nCameron\nCarol\nCarroll\nCarter\nCasey\nCornel\nDannie\nDel\nDerek\nDominic\nDouglass\nDwain\nEarle\nGrady\nHans\nHiram\nIrwin\nIsmael\nJackson\nJamie\nKip\nOdell\nOrval\nReyes\nRoyal\nSantiago\nShannon\nSylvester\nVince\nWalt\nAlden\nAubrey\nBernardo\nBret\nBrock\nBrooks\nBuck\nCarlo\nDamon\nDarell\nDarnell\nDarold\nDavis\nDayton\nElwood\nEmil\nFederico\nGayle\nGenaro\nGonzalo\nGraig\nHarland\nHarmon\nJordan\nLogan\nLou\nLuke\nMarcel\nMariano\nMathew\nMerlin\nOrin\nPatricia\nPierre\nRamiro\nRandell\nRaymon\nRollin\nSal\nSkip\nSonny\nSusan\nTerrell\nTrent\nVic\nVicente\nWeldon\nWes\nWyatt\nAbraham\nAlec\nAlva\nAmos\nBarbara\nBruno\nClaud\nCruz\nEdwardo\nElton\nEmerson\nErick\nFidel\nFlorencio\nFord\nGearld\nGraham\nHank\nHoyt\nJacques\nJock\nKelley\nLeonardo\nLew\nMauro\nMaxie\nMaxwell\nMillard\nNolan\nQuentin\nRaleigh\nReid\nRigoberto\nRogelio\nRollie\nRosalio\nSammie\nTod\nTy\nVito\nWilfred\nZachary\nAlvaro\nAnton\nArmand\nBard\nBlair\nBrant\nButch\nChristophe\nClemente\nCornell\nCourtney\nCreighton\nCris\nCurtiss\nCynthia\nDalton\nDario\nDino\nDonny\nDuke\nElden\nElliot\nEmile\nErwin\nEsequiel\nFaustino\nFermin\nForest\nGarold\nGavin\nHilario\nJonnie\nKay\nLamont\nLawerence\nLincoln\nLinn\nLoran\nMargarito\nMarshal\nMatt\nMontie\nMoses\nNapoleon\nRand\nRaphael\nReese\nRito\nRob\nRoddy\nSeth\nShelby\nSid\nSilas\nSolomon\nStanton\nThurman\nTyler\nWarner\nWilmer\nWinfield\nYsidro\nAlvis\nAmador\nArden\nArtemio\nArther\nArtie\nArvid\nBernhard\nBertram\nBuster\nCal\nCarrol\nCedric\nChristine\nCleveland\nDeane\nDelmer\nDenton\nDeryl\nDesmond\nDiane\nDion\nDolores\nDonnell\nElroy\nEmanuel\nEmery\nEmmet\nEthan\nEverette\nFarrell\nFelton\nGarrett\nHampton\nHarris\nHenri\nHerschel\nHolly\nHugo\nJared\nJed\nJohnie\nJoshua\nJustin\nKieth\nKimball\nKing\nKyle\nLaron\nLauren\nLaurie\nLayton\nLeandro\nLenard\nLenny\nLorne\nLyman\nLynwood\nMalvin\nMerritt\nMervin\nMikel\nMitchel\nNels\nNorris\nNorton\nOctavio\nOllie\nOrvil\nPatric\nRefugio\nReynold\nRiley\nRobb\nRodrick\nRudolfo\nRufus\nSchuyler\nShawn\nSydney\nTimmy\nValentino\nVerlin\nWilburn\nWiley\nWilford\nRobert\nJohn\nMichael\nJames\nDavid\nRichard\nWilliam\nRonald\nThomas\nGary\nSteven\nLarry\nCharles\nDennis\nStephen\nDonald\nKenneth\nDaniel\nPaul\nGeorge\nJoseph\nGregory\nFrank\nMark\nEdward\nBruce\nJerry\nSteve\nTimothy\nMike\nRaymond\nDouglas\nTerry\nPatrick\nLawrence\nDanny\nJack\nJoe\nJim\nRoger\nArthur\nPeter\nAlan\nGerald\nCraig\nWayne\nJeffrey\nBill\nAnthony\nTom\nRalph\nChristopher\nPhilip\nStanley\nCarl\nDale\nHenry\nFred\nHarold\nRoy\nAlbert\nPhillip\nWalter\nRussell\nDon\nJohnny\nManuel\nBrian\nGlenn\nRandy\nErnest\nBob\nBarry\nLouis\nJose\nMartin\nDan\nHarry\nHoward\nRonnie\nScott\nAlfred\nAllen\nEric\nRodney\nVictor\nGilbert\nTony\nAndrew\nRandall\nJimmy\nLeonard\nKeith\nEugene\nRay\nFrederick\nSamuel\nNorman\nLee\nChris\nEddie\nRuben\nTommy\nDave\nJon\nMelvin\nJesse\nGreg\nTim\nVincent\nRick\nEarl\nGene\nGordon\nMarvin\nClifford\nDarrell\nTheodore\nBilly\nGlen\nJay\nJoel\nCurtis\nTed\nBobby\nLloyd\nWarren\nCarlos\nRon\nAllan\nRudy\nDean\nMicheal\nLeslie\nKevin\nDuane\nBenjamin\nKen\nMarc\nJesus\nEdwin\nWillie\nVernon\nClarence\nAntonio\nJeff\nFloyd\nLynn\nRaul\nArnold\nCalvin\nJonathan\nSam\nAlex\nFrancis\nHerbert\nClyde\nJimmie\nLeroy\nKent\nNicholas\nMario\nRandolph\nHarvey\nJuan\nDana\nLonnie\nRicky\nPete\nWesley\nAlexander\nLeon\nDarryl\nNeil\nAlvin\nJerome\nKarl\nLewis\nFrancisco\nLance\nJeffery\nArmando\nLester\nLuis\nBradley\nFredrick\nLoren\nRex\nSalvador\nDwight\nLaurence\nDaryl\nBernard\nFreddie\nLeo\nGuy\nJohnnie\nRickey\nNick\nChester\nPhil\nLouie\nStuart\nFernando\nRobin\nRudolph\nBenny\nTerrence\nRamon\nAndy\nFranklin\nGarry\nRoss\nClaude\nJackie\nPat\nErnie\nMiguel\nRoberto\nRoland\nAlfonso\nLeland\nMarshall\nRicardo\nJess\nMitchell\nBen\nKurt\nOscar\nSammy\nBryan\nByron\nGregg\nHector\nBrent\nDick\nMilton\nWallace\nMatthew\nReginald\nKim\nCecil\nGeoffrey\nGrant\nKirk\nPerry\nPedro\nDoug\nKenny\nTerrance\nChuck\nLyle\nClark\nJan\nCary\nMaurice\nClinton\nDelbert\nHugh\nNeal\nRodger\nElmer\nBrad\nDarrel\nEd\nEverett\nHerman\nJessie\nSidney\nVirgil\nAl\nAlfredo\nCharlie\nJerald\nRene\nRoderick\nEdmund\nRafael\nConrad\nGabriel\nMax\nNelson\nTroy\nAngel\nArturo\nClifton\nDenis\nEdgar\nJorge\nJulian\nWillard\nKerry\nClayton\nStan\nGerry\nMalcolm\nMickey\nTeddy\nTyrone\nAaron\nBert\nMorris\nStephan\nTodd\nAdrian\nKelly\nRandal\nFrankie\nSherman\nBradford\nDonnie\nLowell\nArchie\nForrest\nMonte\nRocky\nWade\nEdmond\nEnrique\nRonny\nWendell\nDwayne\nFelix\nHal\nIvan\nRod\nGuadalupe\nLupe\nMarcus\nMyron\nRodolfo\nSheldon\nVan\nBarton\nBrett\nDoyle\nJulio\nNathan\nNoel\nTravis\nWillis\nAngelo\nEddy\nGuillermo\nJaime\nJavier\nMarty\nSean\nVance\nAlejandro\nArt\nCarlton\nDenny\nDewey\nErnesto\nIgnacio\nIra\nVaughn\nAlberto\nAndre\nElliott\nGalen\nLoyd\nOliver\nOwen\nPreston\nBoyd\nBuddy\nChristian\nEldon\nEllis\nFreddy\nGale\nGerard\nHarlan\nLanny\nLorenzo\nMerle\nBarney\nBennie\nClay\nCliff\nRory\nSimon\nStewart\nTommie\nEduardo\nIsmael\nJeffry\nJoey\nLon\nLuther\nMarion\nNathaniel\nOtis\nPablo\nReed\nTerence\nVern\nAugustine\nDane\nDominic\nGustavo\nHarley\nHorace\nLawerence\nRickie\nXavier\nAbel\nAugust\nHomer\nHubert\nIsaac\nJacob\nLinda\nLionel\nMichel\nMiles\nMonty\nMoses\nReynaldo\nRoyce\nSergio\nSpencer\nTracy\nArmand\nCleveland\nDonn\nEmilio\nFelipe\nMarcos\nSanford\nTomas\nVince\nWilbert\nAdolph\nAlton\nBernie\nBud\nDewayne\nFrederic\nJason\nJerrold\nLane\nRamiro\nRand\nRuss\nRussel\nSalvatore\nSantos\nWilfred\nDel\nDrew\nElias\nGarrett\nIrving\nJoaquin\nJulius\nMarco\nNed\nPierre\nReuben\nShawn\nVal\nBenito\nBrock\nCarroll\nDouglass\nEvan\nFredric\nGus\nJackson\nLes\nLonny\nMack\nMatt\nNolan\nRich\nSterling\nTrinidad\nWard\nWilson\nAdam\nAgustin\nAlonzo\nCarey\nCasey\nCesar\nColin\nDallas\nEarnest\nGrover\nHumberto\nJustin\nLamont\nReid\nRufus\nRusty\nSandy\nTimmy\nWally\nWilbur\nAubrey\nBlake\nBryce\nDanial\nDuncan\nElbert\nErick\nErik\nErvin\nGaylord\nGilberto\nJerold\nKennith\nLenard\nMarlin\nSammie\nStanford\nStanton\nSylvester\nVerne\nWill\nWoodrow\nZachary\nAbraham\nAndres\nAurelio\nBillie\nBobbie\nBurton\nCharley\nChristophe\nCornelius\nDannie\nDomingo\nEmmett\nGerardo\nGil\nIan\nIrvin\nJean\nJere\nJody\nJohnie\nJunior\nKendall\nKenton\nLorin\nLuke\nMillard\nMurray\nOrville\nRandell\nRaymundo\nRobbie\nRoosevelt\nStevan\nTerrill\nAdolfo\nAlva\nAustin\nBart\nBryant\nCameron\nCris\nCurt\nDirk\nDonal\nDudley\nDwain\nEarle\nElton\nErwin\nFaustino\nGrady\nIrwin\nJacques\nJake\nJamie\nJasper\nJoesph\nJonathon\nLawrance\nMarcelino\nMathew\nMitchel\nOdell\nOrlando\nReggie\nRiley\nRolland\nShannon\nSusan\nTerrell\nVicente\nWalt\nWeldon\nWinston\nZane\nBaron\nBrooke\nBrooks\nBurl\nBurt\nCarter\nDamon\nDarwin\nDelmar\nDenver\nDerek\nDonnell\nEliseo\nEmery\nFritz\nGarland\nGarth\nGayle\nGeary\nGenaro\nHarrison\nHerschel\nHershel\nIsidro\nKip\nKit\nKris\nLucio\nLyn\nMargarito\nMel\nMelvyn\nMerlin\nMyles\nPercy\nQuentin\nRayford\nRefugio\nRosendo\nRoyal\nSal\nSantiago\nTyler\nWiley\nAmbrose\nAugustin\nBartley\nBasilio\nBernardo\nBooker\nBuck\nCarlo\nCarol\nCarson\nCipriano\nClement\nCleo\nCody\nCollin\nDelmer\nDexter\nDonny\nDorian\nDuke\nDwane\nElijah\nElliot\nEmile\nGaylon\nGraham\nHank\nJeremy\nKermit\nKirby\nLeigh\nLoran\nLyman\nMariano\nMervin\nMilo\nMitch\nMorgan\nNoble\nNorris\nOrval\nPatricia\nRicki\nRoddy\nRogelio\nRubin\nRyan\nSebastian\nSkip\nTruman\nVic\nAlec\nAllyn\nAnton\nArmond\nArvin\nBennett\nBenson\nBertrand\nBlair\nBrady\nBuford\nChad\nCorey\nDee\nDelfino\nDeryl\nDonna\nElmo\nElwood\nEmil\nErrol\nEsteban\nFederico\nForest\nGregorio\nHans\nHarland\nHerbie\nHollis\nJefferson\nLaurance\nLazaro\nLen\nLevi\nLinden\nMaynard\nMelton\nMikel\nNels\nNewton\nNickolas\nNicolas\nOren\nPorfirio\nRandel\nReymundo\nRichmond\nRob\nRobb\nRodrigo\nRolando\nRolf\nRollin\nRoscoe\nRudolfo\nSid\nStefan\nThom\nToby\nTod\nUnknown\nWeston\nAlden\nAlford\nAllison\nAlvaro\nAmador\nAntone\nArlen\nArtis\nBlaine\nBrandon\nBritt\nBurke\nCarleton\nChauncey\nClem\nCole\nCornell\nCory\nCourtney\nCruz\nCyrus\nDarell\nDarnell\nDarol\nDarold\nDavis\nDesmond\nDonovan\nDurward\nDustin\nFelis\nFelton\nFidel\nFreeman\nGail\nGearld\nGonzalo\nGraydon\nHilario\nHiram\nHoracio\nHoyt\nHugo\nIsaiah\nIsrael\nJones\nJordan\nJules\nKathleen\nKenyon\nKing\nLauren\nLeandro\nLincoln\nLogan\nLoy\nLynden\nMac\nMajor\nMargaret\nMarlo\nMary\nMaury\nMaxwell\nMichal\nMiller\nNorbert\nOrin\nOtto\nPasqual\nRaymon\nReyes\nRicci\nRoman\nRonnald\nSalvadore\nSandra\nScot\nSeth\nShelby\nTad\nValentino\nWarner\nWes\nWoody\nRobert\nMichael\nJohn\nJames\nDavid\nRichard\nWilliam\nSteven\nThomas\nGary\nRonald\nCharles\nStephen\nLarry\nDennis\nDonald\nKenneth\nDaniel\nMark\nPaul\nGeorge\nEdward\nJoseph\nGregory\nBruce\nFrank\nTimothy\nDouglas\nJerry\nPatrick\nRaymond\nLawrence\nSteve\nTerry\nJeffrey\nJack\nRoger\nDanny\nCraig\nAnthony\nArthur\nPeter\nChristopher\nMike\nJoe\nGerald\nWayne\nAlan\nRalph\nPhilip\nBrian\nHenry\nStanley\nGlenn\nDale\nPhillip\nAlbert\nManuel\nCarl\nJim\nRoy\nHarold\nWalter\nBill\nRandy\nLouis\nFred\nErnest\nDon\nJohnny\nRandall\nMartin\nRussell\nEric\nScott\nTom\nAllen\nRodney\nDan\nJose\nKeith\nVictor\nAndrew\nEugene\nLeonard\nHarry\nHoward\nRay\nBarry\nGilbert\nFrederick\nTony\nNorman\nRonnie\nAlfred\nJimmy\nChris\nClifford\nLee\nKevin\nBob\nRuben\nSamuel\nRick\nGordon\nJon\nJay\nGlen\nJesse\nCarlos\nMelvin\nBilly\nDarrell\nMarvin\nTheodore\nDean\nEddie\nMicheal\nVincent\nTommy\nEarl\nDave\nLloyd\nGene\nRudy\nMarc\nLeslie\nGreg\nCurtis\nRandolph\nBobby\nRaul\nBenjamin\nJuan\nTim\nKirk\nAllan\nEdwin\nDuane\nLuis\nBradley\nKent\nJesus\nTed\nWarren\nHerbert\nLynn\nJonathan\nWillie\nJeff\nJoel\nFrancis\nKarl\nCalvin\nDana\nVernon\nDarryl\nAntonio\nClarence\nJeffery\nBernard\nLeroy\nSalvador\nLeo\nNeil\nRon\nAlex\nLonnie\nRicky\nWesley\nMario\nLouie\nAlvin\nArmando\nLeon\nFloyd\nLester\nRex\nAlexander\nClyde\nNicholas\nMarshall\nRobin\nFrancisco\nRoberto\nDwight\nFredrick\nGuy\nJerome\nKen\nRoland\nArnold\nHarvey\nLeland\nRoss\nBrent\nPete\nStuart\nGrant\nRickey\nFranklin\nKurt\nRudolph\nTerrence\nJohnnie\nRicardo\nOscar\nDaryl\nJimmie\nLewis\nNick\nLaurence\nLoren\nMatthew\nMilton\nKerry\nSam\nAlfonso\nJess\nBenny\nGarry\nGregg\nLyle\nGeoffrey\nHector\nMiguel\nRamon\nMitchell\nReginald\nRodger\nLance\nClifton\nFreddie\nPat\nClark\nJan\nKim\nFelix\nKelly\nCecil\nClaude\nPedro\nBradford\nHugh\nMax\nWallace\nCharlie\nClinton\nAndy\nBrad\nPhil\nTodd\nBryan\nByron\nHerman\nJackie\nDoyle\nFernando\nGabriel\nMaurice\nArturo\nErnie\nErnesto\nRandal\nRocky\nSammy\nChester\nDarrel\nDoug\nNeal\nBen\nEdgar\nPerry\nCary\nClayton\nDelbert\nEdmund\nRafael\nAngel\nMonty\nAlfredo\nHal\nJulian\nMonte\nRene\nTerence\nAlberto\nChuck\nDick\nForrest\nEd\nKenny\nSidney\nJorge\nLowell\nMalcolm\nRoderick\nAdrian\nEverett\nTyrone\nRodolfo\nTeddy\nTerrance\nBert\nEnrique\nIsaac\nNathan\nChristophe\nJavier\nMickey\nMyron\nRory\nStephan\nWillard\nAaron\nDonnie\nDwayne\nJessie\nJulio\nNelson\nStan\nStewart\nBoyd\nGerard\nJerald\nTroy\nVirgil\nDenis\nIgnacio\nNoel\nPreston\nVan\nVance\nAbel\nConrad\nMarcus\nMiles\nSheldon\nVaughn\nWendell\nEdmond\nIvan\nJaime\nJeffry\nAl\nFelipe\nFrankie\nGerry\nGuadalupe\nLorenzo\nMarty\nMorris\nRonny\nSean\nTravis\nChristian\nDenny\nDonn\nElmer\nErik\nHomer\nIra\nSergio\nGuillermo\nLanny\nNathaniel\nSherman\nTracy\nAngelo\nBennie\nElias\nHarley\nJacob\nLupe\nMarcos\nOliver\nOwen\nArchie\nAugustine\nDuncan\nMarion\nMichel\nMurray\nNicolas\nReynaldo\nShawn\nVal\nWade\nWilbert\nBuddy\nDannie\nEarnest\nEduardo\nElliott\nJerold\nNolan\nAlejandro\nArt\nCarey\nColin\nDanial\nDewey\nDominic\nFrederic\nGilberto\nHarlan\nJoaquin\nOtis\nSpencer\nBarney\nBrett\nClay\nCornelius\nCruz\nDee\nDomingo\nDrew\nFredric\nGale\nGalen\nHubert\nLionel\nLon\nMerle\nPablo\nReed\nReid\nSalvatore\nSterling\nAlton\nAndres\nBart\nCasey\nCurt\nEldon\nFidel\nGail\nGus\nGustavo\nJerrold\nMarco\nOrville\nRamiro\nSanford\nTomas\nWard\nWilfred\nAbraham\nAdam\nBobbie\nBud\nIan\nKris\nLorin\nMack\nRand\nRod\nSantos\nSylvester\nWillis\nWoodrow\nArmand\nCameron\nCarter\nCliff\nDallas\nDane\nDarwin\nDerek\nEmilio\nFermin\nGarland\nHorace\nLenard\nLes\nMel\nReggie\nReuben\nRickie\nRogelio\nRuss\nRusty\nCarlton\nCharley\nDouglass\nElbert\nEmmett\nEvan\nHumberto\nIrving\nJustin\nKirby\nLane\nRobbie\nRoyce\nTrinidad\nWilbur\nWilson\nAndre\nBernardo\nBurt\nCoy\nDel\nDirk\nFreddy\nHans\nIrvin\nJamie\nJean\nJoey\nJonathon\nJulius\nLinda\nLuther\nMathew\nMelvyn\nMilo\nNed\nRoscoe\nRyan\nSal\nStevan\nTaylor\nTerrill\nWally\nWiley\nAgustin\nBarton\nBillie\nBlaine\nBlair\nBrooks\nCarroll\nCesar\nDante\nEddy\nFritz\nGenaro\nGil\nGraham\nIsmael\nJason\nJoesph\nKip\nMary\nNorbert\nRandell\nSammie\nSimon\nSkip\nToby\nTommie\nVern\nWinston\nXavier\nAdolph\nAugust\nBenito\nBernie\nBrant\nBurton\nClement\nDelmar\nDewayne\nDino\nEllis\nErick\nErvin\nGarrett\nGerardo\nHarrison\nHugo\nJeremy\nLamont\nLauren\nLeigh\nLeonardo\nLincoln\nLoyd\nMitchel\nNickolas\nNorris\nRoman\nRoyal\nRussel\nStanton\nVerne\nAlec\nAlvaro\nBenton\nCornell\nDamon\nDudley\nDuke\nDwaine\nEdmundo\nElton\nEmery\nEmil\nFransisco\nGarth\nGaylord\nGearld\nGrady\nGregorio\nGrover\nKendall\nKennith\nKenton\nKermit\nLawrance\nLeopoldo\nLonny\nMonroe\nMoses\nRob\nSantiago\nScot\nShelby\nStacy\nZachary\nAdolfo\nAntone\nArlen\nArtie\nAubrey\nBret\nBryant\nCarlo\nCorey\nDexter\nDonal\nDonny\nDwain\nEarle\nElvin\nElwood\nGeary\nJackson\nJefferson\nJody\nJordan\nJunior\nLaird\nLaurance\nLeif\nLuciano\nMarcelino\nMillard\nOrlando\nPierre\nRegan\nRiley\nRufus\nShannon\nSydney\nTod\nTyler\nWill\nAlonzo\nAlphonso\nArland\nAustin\nBasil\nBennett\nBrock\nCarmen\nClarke\nCourtney\nCris\nCurtiss\nCyril\nDonovan\nDorian\nDustin\nEfren\nEliseo\nEmanuel\nEmory\nErrol\nErwin\nFederico\nIrwin\nIsaiah\nJacques\nJared\nKathleen\nKimball\nLary\nLawerence\nLindsey\nMariano\nMatt\nMerrill\nMorgan\nOtto\nReyes\nRolando\nSandy\nSaul\nStanford\nStefan\nTrent\nVito\nWebster\nAbe\nAbram\nAlden\nAntony\nBlake\nBritt\nBuck\nCaesar\nChad\nConrado\nCory\nCyrus\nDalton\nDamian\nDarnell\nDavis\nDenton\nElliot\nEmerson\nEverardo\nFaustino\nFletcher\nForest\nFranklyn\nHerb\nHershel\nJerel\nJudson\nKit\nKyle\nLayne\nMac\nMargarito\nMervin\nNicky\nOdell\nPatricia\nRandolf\nRaoul\nRaymundo\nRefugio\nRey\nRich\nRigoberto\nRollin\nRonney\nRosendo\nRubin\nRudolfo\nRueben\nSolomon\nTerrell\nThurman\nValentin\nVicente\nWilburn\nBrandon\nBryce\nBuford\nCarleton\nChet\nChristine\nClancy\nCleveland\nClint\nColeman\nCollin\nConnie\nCornel\nCourtland\nDanniel\nDarell\nDario\nDarold\nDavey\nDenver\nDeryl\nDickie\nDusty\nElden\nEloy\nEmmanuel\nEmmitt\nEsteban\nFiliberto\nFlorencio\nGlendon\nGray\nHank\nHarland\nHarmon\nHerschel\nIsrael\nJake\nJere\nJeremiah\nJock\nKelley\nKenney\nKimberly\nLeighton\nLen\nLex\nLindsay\nLindy\nLory\nLoy\nLuke\nMahlon\nMarcel\nMarshal\nMerlin\nMikel\nMoises\nMontgomery\nNewton\nNoah\nNorberto\nOlen\nOllie\nPatric\nPercy\nRobby\nRocco\nRockey\nRonal\nRoosevelt\nRosario\nRudolf\nSharon\nSheridan\nSusan\nTimmy\nTito\nTruman\nTy\nUnknown\nVince\nWayman\nWeldon\nWilford\nWinford\nWoody\nYsidro\nZane\nRobert\nMichael\nJohn\nDavid\nJames\nRichard\nWilliam\nSteven\nThomas\nGary\nRonald\nCharles\nStephen\nDonald\nDennis\nDaniel\nLarry\nMark\nKenneth\nPaul\nGregory\nJoseph\nGeorge\nEdward\nTimothy\nBruce\nFrank\nDouglas\nRaymond\nPatrick\nLawrence\nJeffrey\nJerry\nChristopher\nAnthony\nGerald\nTerry\nCraig\nPeter\nArthur\nAlan\nJack\nRoger\nDanny\nScott\nWayne\nSteve\nJoe\nRalph\nDale\nPhilip\nAlbert\nHenry\nGlenn\nBrian\nCarl\nJose\nStanley\nRandall\nPhillip\nHarold\nRandy\nWalter\nManuel\nRoy\nKeith\nMartin\nErnest\nMike\nAndrew\nRussell\nRodney\nEric\nLeonard\nFred\nGilbert\nBarry\nVictor\nKevin\nLouis\nJohnny\nAllen\nHoward\nDon\nEugene\nLee\nFrederick\nHarry\nBill\nClifford\nJim\nGordon\nNorman\nAlfred\nRuben\nJay\nJimmy\nRay\nMicheal\nChris\nSamuel\nTom\nDan\nCarlos\nDarrell\nVincent\nRonnie\nRick\nGlen\nJon\nJesse\nMelvin\nTony\nDean\nTheodore\nMarc\nKirk\nBilly\nCurtis\nMarvin\nBenjamin\nTommy\nWarren\nNicholas\nEarl\nEddie\nMario\nBob\nBradley\nJuan\nLeslie\nKent\nBobby\nJoel\nRandolph\nRicky\nLloyd\nBrent\nGene\nGreg\nJonathan\nVernon\nAllan\nAntonio\nCalvin\nDuane\nDarryl\nDave\nJeffery\nNeil\nJerome\nRudy\nEdwin\nHerbert\nJesus\nLeo\nRaul\nFrancisco\nTed\nAlvin\nLynn\nSalvador\nBernard\nArnold\nLonnie\nDana\nWesley\nDwight\nTim\nLance\nClyde\nLester\nAlex\nHarvey\nRobin\nDaryl\nKarl\nArmando\nAlexander\nGuy\nMatthew\nFrancis\nFredrick\nLouie\nRoberto\nGarry\nKurt\nFloyd\nLeroy\nWillie\nLeon\nLuis\nRamon\nKim\nLaurence\nFranklin\nJimmie\nMiguel\nRicardo\nClarence\nKerry\nOscar\nLewis\nRudolph\nReginald\nTerrence\nRoss\nBradford\nBryan\nGregg\nRickey\nNeal\nTodd\nRex\nStuart\nGeoffrey\nLoren\nFernando\nPete\nMitchell\nPedro\nHector\nMilton\nChester\nNick\nFreddie\nGrant\nPerry\nByron\nChristophe\nJeff\nLeland\nRoland\nAlfonso\nGabriel\nRon\nTerrance\nJess\nMax\nBenny\nRene\nKen\nArturo\nMarshall\nBen\nHugh\nJohnnie\nEdmund\nMaurice\nRodger\nClark\nDelbert\nHerman\nSidney\nWallace\nDarrel\nEdgar\nTerence\nAngel\nClifton\nBrad\nForrest\nJackie\nJan\nJorge\nCecil\nLowell\nClaude\nAlfredo\nCary\nClinton\nSam\nLyle\nRoderick\nTroy\nErnesto\nJulian\nKelly\nSammy\nGuadalupe\nIgnacio\nRafael\nAndy\nBert\nConrad\nLorenzo\nClayton\nEnrique\nFelix\nRocky\nStephan\nWendell\nAlberto\nJavier\nRandal\nRory\nBrett\nMonte\nNelson\nPat\nEverett\nJerald\nErnie\nFrankie\nMonty\nNathan\nVirgil\nAaron\nDenis\nDoug\nJessie\nRodolfo\nArchie\nChristian\nNoel\nTyrone\nAdrian\nChuck\nDoyle\nDwayne\nEduardo\nMorris\nPhil\nDonnie\nSheldon\nSherman\nWillard\nCharlie\nFreddy\nIsaac\nMarcus\nMyron\nSpencer\nClay\nJoey\nMarcos\nStewart\nDarwin\nDick\nKenny\nMalcolm\nMerle\nNathaniel\nPreston\nEdmond\nIvan\nJeffry\nMickey\nTeddy\nVan\nAl\nAugustine\nCarey\nJaime\nJerrold\nJoaquin\nJulio\nMarco\nOtis\nRickie\nSean\nWade\nAbel\nAlejandro\nBarton\nBennie\nBuddy\nBurton\nCasey\nEldon\nGerry\nGuillermo\nMichel\nMiles\nVance\nWinston\nAngelo\nDominic\nErik\nFelipe\nHal\nHarlan\nMarty\nAdam\nBarney\nDenny\nEd\nElias\nGustavo\nJason\nLionel\nPierre\nShawn\nTracy\nCurt\nGeary\nLane\nLon\nReynaldo\nSalvatore\nSimon\nTommie\nDane\nDuncan\nElmer\nGalen\nIra\nKris\nRod\nStan\nStanton\nAndre\nDamon\nDanial\nGale\nGerard\nHubert\nJacob\nLanny\nNed\nRamiro\nReed\nSergio\nVaughn\nAlonzo\nDexter\nDomingo\nIan\nIrving\nLuther\nOwen\nVern\nBart\nBoyd\nCarlton\nEmmett\nEvan\nFredric\nGarrett\nHarley\nHomer\nHumberto\nOliver\nOrville\nRussel\nToby\nTomas\nWard\nWilson\nXavier\nArmand\nAugust\nBlake\nBurt\nColin\nCruz\nDerek\nDonn\nGarth\nJoshua\nKennith\nKermit\nLupe\nNicolas\nPablo\nRogelio\nTyler\nWilbert\nWilfred\nWillis\nArt\nEarnest\nEddy\nEllis\nEmil\nHans\nJulius\nMorgan\nMurray\nRiley\nVicente\nAlton\nAndres\nDel\nDrew\nGonzalo\nGrover\nGus\nJean\nLamont\nMack\nNolan\nStevan\nTimmy\nUnknown\nAdolph\nAubrey\nBud\nCarroll\nCarter\nCesar\nCharley\nEmilio\nIrvin\nJerold\nKip\nKyle\nLenard\nLinda\nMathew\nMerrill\nRandell\nRoyce\nRudolfo\nSandy\nSantiago\nShannon\nAustin\nCarson\nCliff\nDallas\nDirk\nElliott\nFidel\nGerardo\nGrady\nIsmael\nJonathon\nKirby\nKit\nRand\nReuben\nRigoberto\nRonny\nRoosevelt\nRosendo\nRyan\nSanford\nSaul\nStacy\nSterling\nBenito\nBlaine\nCedric\nDewayne\nDonnell\nDwain\nFrederic\nGarland\nGraham\nJoesph\nJohnie\nLindsay\nLuke\nMac\nMarion\nMarlin\nMel\nReid\nRobbie\nSantos\nStanford\nVal\nWilbur\nWoodrow\nAgustin\nAurelio\nBernardo\nBret\nCleveland\nCornell\nDewey\nElbert\nEmery\nFermin\nGil\nGilberto\nJackson\nJake\nJunior\nKendall\nLawerance\nLawerence\nLeandro\nLorin\nMitchel\nReyes\nReynold\nRolando\nRoyal\nRusty\nScot\nSylvester\nTravis\nTrinidad\nAlvaro\nAnton\nBennett\nBenson\nBillie\nBlair\nBrady\nBruno\nBryant\nCarmen\nCorey\nCornelius\nDudley\nEdwardo\nElliot\nEsteban\nGail\nIrwin\nLeopoldo\nLex\nLoyd\nLuciano\nLyn\nMauricio\nMoses\nNickolas\nNicky\nOrlando\nPercy\nRegan\nReggie\nRenaldo\nRich\nRolland\nRoman\nShelby\nSonny\nSusan\nSydney\nTerrell\nThurman\nTod\nVerne\nVince\nZachary\nAbraham\nAdolfo\nAntone\nAntony\nBasil\nBonifacio\nBooker\nBrock\nBryce\nButch\nCameron\nCarol\nCory\nCyril\nDannie\nDanniel\nDerrick\nDickie\nDonovan\nDouglass\nDwaine\nEarle\nEfren\nErrol\nEugenio\nFritz\nGaylord\nGearld\nHenri\nHerschel\nHorace\nHugo\nJame\nJamie\nJared\nJefferson\nKenton\nKing\nLaird\nLary\nLauren\nLawrance\nLonny\nMargarito\nMckinley\nMerlin\nMichiel\nMikel\nMillard\nNewton\nOtto\nRaoul\nRosalio\nRufus\nShelton\nTaylor\nTheron\nTrent\nTruman\nWally\nWiley\nWill\nZane\nAlonso\nBertram\nBrandon\nBrice\nBrooks\nCamilo\nClement\nColeman\nCourtney\nDario\nDarold\nDeane\nDell\nDenton\nDewitt\nDusty\nEliseo\nElton\nEmanuel\nErick\nEsequiel\nFederico\nFord\nForest\nFransisco\nGarey\nHayden\nJacques\nJere\nJody\nKelvin\nLaurance\nLes\nLucio\nMarcelino\nMargaret\nMariano\nMatt\nMaynard\nMerritt\nMichale\nMonroe\nMontgomery\nMyles\nNorbert\nNorm\nRandle\nRaymundo\nReno\nRitchie\nRobbin\nRoddy\nRodrick\nRolf\nRoscoe\nRowland\nSammie\nScotty\nShaun\nStefan\nTad\nTerrill\nThad\nThaddeus\nUlysses\nValentino\nVon\nWarner\nWoody\nAdan\nAddison\nAlec\nAmos\nArtie\nArvid\nBrant\nBuck\nCaesar\nCarrol\nChauncey\nClarke\nCornel\nCoy\nCris\nCrispin\nCurtiss\nDarell\nDelfino\nDelmar\nDelmer\nDiana\nEfrain\nElizabeth\nErvin\nErwin\nFidencio\nFletcher\nFreeman\nGeoffry\nGerold\nGeronimo\nGino\nGlynn\nGreggory\nHank\nHarris\nHiram\nHouston\nIsrael\nIvory\nJasper\nJefferey\nJeremy\nJohnathan\nJules\nJustin\nKimberly\nLannie\nLars\nLavern\nLeif\nLeonardo\nLeonel\nLinden\nLoran\nLucky\nLyman\nMelton\nMervin\nMichial\nMikael\nModesto\nNils\nNorris\nNorton\nOmar\nPatricia\nPorfirio\nQuentin\nRance\nRandel\nRayford\nRexford\nRob\nRobb\nRockwell\nRollin\nRudolf\nRueben\nSabino\nSandra\nSebastian\nSherwood\nSilas\nTimmothy\nTino\nValentin\nVidal\nWeldon\nWhitney\nMichael\nRobert\nJohn\nDavid\nJames\nRichard\nWilliam\nSteven\nGary\nThomas\nMark\nRonald\nCharles\nStephen\nDaniel\nDonald\nDennis\nKenneth\nLarry\nPaul\nGregory\nJoseph\nEdward\nTimothy\nBruce\nGeorge\nDouglas\nFrank\nJeffrey\nPatrick\nChristopher\nAnthony\nRaymond\nLawrence\nJerry\nCraig\nPeter\nAlan\nTerry\nRoger\nJack\nScott\nArthur\nGerald\nBrian\nRandy\nWayne\nDanny\nJoe\nDale\nStanley\nRandall\nSteve\nRalph\nHenry\nPhilip\nGlenn\nPhillip\nEric\nKeith\nAlbert\nMartin\nKevin\nRussell\nRodney\nManuel\nWalter\nJose\nCarl\nRoy\nLeonard\nAndrew\nHarold\nFred\nGilbert\nMike\nBarry\nAllen\nErnest\nLouis\nVictor\nEugene\nHoward\nFrederick\nNorman\nJohnny\nAlfred\nLee\nSamuel\nDon\nHarry\nDean\nClifford\nGordon\nRick\nRuben\nJesse\nMicheal\nCarlos\nJimmy\nDan\nJim\nJay\nChris\nCurtis\nJon\nDarrell\nMarc\nRay\nTheodore\nGlen\nVincent\nMelvin\nRonnie\nRudy\nTommy\nRandolph\nMario\nTom\nLeslie\nRicky\nTony\nBilly\nLloyd\nJuan\nKirk\nBenjamin\nJeffery\nBill\nKim\nBradley\nEdwin\nJonathan\nNicholas\nAllan\nDarryl\nMarvin\nEarl\nDana\nEddie\nGene\nJesus\nWarren\nBobby\nRaul\nTed\nNeil\nDuane\nKent\nAntonio\nJoel\nMatthew\nFrancisco\nGuy\nLuis\nWillie\nGreg\nSalvador\nKarl\nLaurence\nWesley\nFrancis\nBernard\nClyde\nJerome\nCalvin\nClarence\nRickey\nRudolph\nRex\nAlexander\nAlvin\nArmando\nMitchell\nDave\nFredrick\nKurt\nDwight\nLeroy\nLester\nLonnie\nVernon\nStuart\nBob\nFernando\nLewis\nRoberto\nAlex\nArnold\nRobin\nBrent\nHerbert\nMiguel\nDaryl\nLance\nLeo\nLynn\nBryan\nFloyd\nHector\nRoss\nBrad\nFranklin\nLouie\nJimmie\nRicardo\nTim\nChristophe\nKerry\nRamon\nLoren\nLeon\nPete\nNeal\nReginald\nBradford\nKelly\nPedro\nTodd\nGarry\nHarvey\nJeff\nOscar\nGeoffrey\nSam\nClaude\nJess\nTerrence\nClark\nRandal\nTerrance\nClinton\nGregg\nLeland\nByron\nNick\nJohnnie\nRoland\nMilton\nNathan\nMarshall\nArturo\nLyle\nPerry\nDarrel\nMax\nRene\nAlfonso\nBenny\nEdmund\nGrant\nSammy\nGabriel\nJorge\nRodger\nJulian\nChester\nHugh\nRon\nAndy\nSidney\nAndre\nFreddie\nHerman\nMaurice\nVirgil\nAlfredo\nBen\nCecil\nCharlie\nEdgar\nEverett\nAdrian\nCary\nClayton\nFelix\nJan\nJavier\nWallace\nStephan\nAngel\nDonnie\nNelson\nBrett\nJackie\nLorenzo\nRocky\nTerence\nDelbert\nMorris\nConrad\nKen\nMalcolm\nMyron\nRoderick\nRodolfo\nChristian\nDwayne\nErnie\nMarcus\nVance\nDerek\nEnrique\nKenny\nLowell\nBert\nErnesto\nForrest\nFrankie\nSheldon\nClifton\nNathaniel\nPat\nTracy\nWillard\nAaron\nJaime\nJessie\nMonte\nRickie\nSherman\nTeddy\nEdmond\nEduardo\nRafael\nWendell\nCarlton\nCasey\nDenis\nIgnacio\nJeffry\nKyle\nMonty\nAbel\nGerard\nJerald\nMickey\nRory\nSergio\nStewart\nArchie\nIra\nOliver\nJoey\nJulio\nNoel\nAlberto\nClay\nDoyle\nLionel\nMarco\nPhil\nPreston\nWade\nAl\nBennie\nHal\nJerrold\nMichel\nSean\nTroy\nPablo\nAlejandro\nChuck\nDick\nGuillermo\nElmer\nFelipe\nGuadalupe\nGustavo\nIvan\nJoaquin\nKris\nReuben\nShawn\nTyrone\nDominic\nDonn\nDoug\nEldon\nHarley\nIan\nLuther\nMarty\nNicolas\nOwen\nVal\nBarney\nCruz\nEmmett\nGalen\nIsmael\nJason\nMarcos\nMarion\nSalvatore\nStan\nSterling\nVaughn\nXavier\nBarton\nBlake\nEvan\nIsaac\nJackson\nJulius\nReynaldo\nSpencer\nVan\nAndres\nCarey\nCornelius\nCurt\nDenny\nEddy\nErik\nErvin\nJerold\nLane\nLindsay\nNed\nTravis\nAgustin\nAngelo\nArmand\nBurt\nCory\nDane\nEarnest\nGale\nHorace\nMiles\nMurray\nRod\nRussel\nSimon\nVern\nWard\nBlair\nDexter\nGarland\nGerry\nHomer\nHubert\nJacob\nLanny\nRogelio\nBoyd\nBuddy\nBurton\nCesar\nCorey\nDerrick\nDirk\nElias\nEllis\nFreddy\nGeary\nHumberto\nKit\nLon\nMorgan\nRand\nRoyce\nTomas\nWillis\nAbraham\nAdam\nAlonzo\nAugust\nBart\nBruno\nDamon\nDee\nElton\nFrederic\nGarrett\nGregorio\nJean\nKip\nLauren\nMathew\nOtis\nRandell\nReed\nSantiago\nTerrell\nWilfred\nAlton\nAustin\nBlaine\nCleveland\nDanial\nDewayne\nDrew\nEmil\nGrady\nJake\nJeremy\nLawerence\nLuke\nMack\nMatt\nNolan\nRandolf\nShannon\nTommie\nAlphonso\nAubrey\nBryant\nCarter\nDarnell\nDarwin\nDel\nDuncan\nEmilio\nFredric\nGus\nHarrison\nHugo\nJefferson\nJody\nJustin\nKenton\nKurtis\nNickolas\nOrlando\nPatricia\nReid\nSantos\nStanton\nSylvester\nTrinidad\nVicente\nWilson\nBud\nCedric\nColin\nDewey\nDonovan\nFidel\nGilberto\nGrover\nLoyd\nMel\nNicky\nPierre\nRandel\nRaoul\nRefugio\nRigoberto\nRoman\nSaul\nStacy\nStevan\nTheron\nToby\nWinston\nAnton\nDallas\nDannie\nEd\nEdwardo\nErrol\nGarth\nGenaro\nHollis\nJoesph\nKirby\nLonny\nLupe\nMarcel\nMervin\nPercy\nRamiro\nRaymundo\nRudolfo\nRyan\nSandy\nSanford\nZachary\nAmos\nArtie\nAugustine\nBrant\nCameron\nCarroll\nChad\nCris\nDarell\nDomingo\nDouglass\nErwin\nGil\nIrving\nJamie\nJoshua\nKendall\nKermit\nKimball\nLamont\nLeonardo\nLevi\nMerle\nRollin\nTimmy\nVerne\nWoodrow\nAlden\nArnulfo\nArt\nBennett\nBillie\nBobbie\nBrandon\nBrock\nCarol\nCliff\nCornell\nDudley\nDuke\nDwain\nDwaine\nElbert\nElliot\nElliott\nEmery\nErick\nGonzalo\nHarlan\nHerschel\nJonathon\nJunior\nKelley\nKelvin\nLaurance\nLeigh\nLen\nLex\nLincoln\nLindsey\nLyman\nMariano\nMarlin\nMitchel\nNorris\nOrville\nOtto\nRexford\nRicki\nRolf\nRudolf\nRufus\nScot\nSkip\nStanford\nTod\nTruman\nVon\nWilbert\nAntone\nBenito\nBenson\nBernardo\nBernie\nBryce\nButch\nCarlo\nChet\nClarke\nCody\nCole\nCoy\nDarold\nDelmar\nDenver\nDickie\nGerardo\nHans\nIsrael\nJere\nKennith\nKristopher\nLinda\nLorin\nMargarito\nMarlon\nMaynard\nMitch\nMontgomery\nMoses\nNewton\nNorbert\nOctavio\nOrin\nQuentin\nRiley\nRito\nRobbie\nRodrigo\nRolland\nSammie\nStefan\nWeldon\nWes\nWilbur\nAdolfo\nAdolph\nAurelio\nBenedict\nBooker\nBret\nBritt\nBryon\nBuster\nClement\nCourtney\nCurtiss\nDalton\nDaryle\nDavis\nDino\nDixon\nDonnell\nDonny\nEarle\nEfrain\nEli\nElmo\nEsteban\nFaustino\nFederico\nGarey\nJudd\nKimberly\nKing\nLenard\nLes\nMerlin\nMickael\nMilo\nMyles\nPatric\nRegan\nReggie\nRichardo\nRitchie\nRob\nRocco\nRolando\nRonny\nRosalio\nRosario\nRubin\nRusty\nSusan\nSydney\nTerrill\nUnknown\nVince\nZane\nAlford\nAllyn\nAlvino\nAmador\nAnthoney\nAron\nBarbara\nBarre\nBarrett\nBertram\nBertrand\nBlain\nBlane\nBrady\nBrendan\nBrenton\nCaesar\nCarmen\nCarson\nCatherine\nClemente\nCleve\nConnie\nDann\nDante\nDario\nDeborah\nDelvin\nDomenic\nDuffy\nDustin\nEfren\nEliseo\nEloy\nElvin\nElwood\nEmanuel\nEmile\nForest\nFransisco\nFritz\nGaylen\nGaylord\nGiles\nGloria\nHank\nHayward\nHershel\nHiram\nHouston\nIke\nIrwin\nJacky\nJared\nJed\nJerel\nJohnie\nJordan\nKathleen\nLayne\nLoran\nLyn\nLyndon\nMahlon\nMajor\nMauricio\nMelvyn\nMichale\nMikel\nMillard\nMoises\nNels\nNiles\nNoah\nNoble\nOdis\nPascual\nRaymon\nReyes\nRic\nRobbin\nRoosevelt\nRosendo\nRoyal\nRudolpho\nShane\nSolomon\nStevie\nTaylor\nTrevor\nWill\nWoody\nMichael\nRobert\nJohn\nDavid\nJames\nRichard\nWilliam\nSteven\nGary\nThomas\nMark\nCharles\nDaniel\nRonald\nStephen\nDennis\nDonald\nKenneth\nPaul\nLarry\nGregory\nTimothy\nJoseph\nBruce\nEdward\nGeorge\nJeffrey\nDouglas\nFrank\nPatrick\nAnthony\nChristopher\nLawrence\nRaymond\nCraig\nRandy\nPeter\nJerry\nScott\nAlan\nTerry\nRoger\nArthur\nJack\nDanny\nGerald\nWayne\nBrian\nKevin\nDale\nRandall\nKeith\nJoe\nRalph\nStanley\nEric\nAlbert\nMartin\nPhilip\nSteve\nHenry\nPhillip\nGlenn\nRussell\nAndrew\nCarl\nVictor\nManuel\nJose\nRoy\nJohnny\nWalter\nRodney\nLeonard\nHarold\nAllen\nErnest\nMicheal\nLouis\nRick\nFred\nGilbert\nFrederick\nHoward\nBarry\nEugene\nSamuel\nClifford\nJay\nMike\nNorman\nLee\nDan\nRicky\nJon\nAlfred\nDon\nRuben\nGlen\nChris\nCurtis\nDean\nDarrell\nGordon\nJimmy\nTheodore\nHarry\nRay\nKim\nJesse\nJeffery\nCarlos\nVincent\nRonnie\nLeslie\nRandolph\nMario\nBradley\nJim\nBenjamin\nMarc\nMarvin\nTommy\nTony\nBill\nMatthew\nMelvin\nEarl\nRudy\nAntonio\nKent\nBilly\nGuy\nTom\nJuan\nKurt\nNicholas\nRaul\nJonathan\nJoel\nLloyd\nDuane\nKirk\nBobby\nDana\nEddie\nRickey\nEdwin\nFrancisco\nWesley\nWarren\nBrad\nGene\nKarl\nWillie\nCalvin\nAlexander\nJesus\nMitchell\nAlvin\nNeil\nFredrick\nVernon\nAllan\nRobin\nArmando\nBrent\nHerbert\nAlex\nBernard\nTed\nArnold\nLuis\nRicardo\nRoss\nRudolph\nDarryl\nLaurence\nFrancis\nDwight\nLeroy\nRamon\nLance\nRex\nSalvador\nFranklin\nGreg\nLeo\nDaryl\nChristophe\nJerome\nClyde\nLester\nOscar\nGregg\nMiguel\nBryan\nKelly\nBob\nNeal\nRoberto\nLewis\nTodd\nTerrence\nKerry\nLeon\nGarry\nHarvey\nLynn\nDave\nClarence\nPete\nStuart\nLoren\nFloyd\nMarshall\nLonnie\nFernando\nJeff\nRocky\nJess\nLouie\nByron\nChester\nMilton\nPerry\nNick\nArturo\nJimmie\nReginald\nRandal\nLyle\nHector\nJohnnie\nRoland\nClaude\nGeoffrey\nLeland\nGrant\nHugh\nMaurice\nJavier\nClayton\nAaron\nAlfredo\nBenny\nDarrel\nFelix\nBen\nBert\nBradford\nEdmund\nGabriel\nNathan\nAngel\nEnrique\nJackie\nRoderick\nSam\nTim\nJulian\nRodger\nRon\nErnesto\nHerman\nJorge\nSidney\nStewart\nFreddie\nMarcus\nMax\nRafael\nEverett\nJessie\nPedro\nRene\nDelbert\nDwayne\nMonte\nAlfonso\nClark\nRodolfo\nVirgil\nWillard\nDerek\nEdgar\nKen\nCary\nClifton\nTracy\nCasey\nClinton\nDenis\nForrest\nMyron\nWallace\nTerence\nTerrance\nAlberto\nCecil\nDonnie\nNelson\nStephan\nCharlie\nBrett\nJaime\nErik\nJan\nJoey\nSean\nSergio\nFrankie\nNoel\nSpencer\nWendell\nChristian\nDoyle\nGuadalupe\nMickey\nSheldon\nTroy\nWade\nAdrian\nConrad\nErnie\nMorris\nAndre\nAndy\nHal\nJerald\nSherman\nTyrone\nAbel\nBlake\nEdmond\nKenny\nMarco\nEduardo\nGerard\nIvan\nKris\nKyle\nLionel\nMalcolm\nMichel\nOwen\nVal\nIra\nLowell\nPat\nRickie\nVance\nClay\nFelipe\nFreddy\nJeffry\nJulio\nMonty\nRory\nSandy\nIsaac\nJacob\nSammy\nMarty\nVan\nAugustine\nBarney\nBoyd\nDane\nDonn\nElmer\nEvan\nIgnacio\nJerrold\nLorenzo\nOtis\nReuben\nAl\nJoaquin\nKit\nLane\nMarion\nMerle\nPreston\nAngelo\nArchie\nCurt\nDirk\nFrederic\nIsmael\nTeddy\nWillis\nCarlton\nDanial\nLon\nPhil\nSalvatore\nShawn\nEldon\nEmilio\nGarrett\nKendall\nLupe\nMurray\nNathaniel\nReed\nTommie\nUnknown\nXavier\nCarey\nChuck\nDewayne\nDexter\nDick\nElias\nHarlan\nHorace\nPablo\nRandell\nSanford\nToby\nWilbert\nAndres\nBart\nBuddy\nDewey\nFidel\nGeary\nJackson\nMarcos\nMiles\nOliver\nRonny\nRoyce\nRyan\nTomas\nAdam\nAdolph\nBennie\nBlaine\nDel\nJoesph\nLuther\nMorgan\nRogelio\nSimon\nTrinidad\nAlejandro\nAlton\nBarton\nCruz\nGerry\nIrving\nKelvin\nLoyd\nMathew\nMatt\nMitchel\nRamiro\nRand\nRod\nRoman\nTerrell\nBlair\nBrock\nColin\nDominic\nDoug\nGuillermo\nGus\nIan\nReynaldo\nRobbie\nStan\nTod\nVaughn\nBennett\nDenny\nFredric\nGarland\nGarth\nGilberto\nGustavo\nHarley\nHubert\nJean\nLeopoldo\nNed\nReid\nStevan\nAlonzo\nArmand\nAustin\nBernardo\nBret\nCameron\nDarwin\nDrew\nEdwardo\nElliott\nLeonardo\nNolan\nScot\nWard\nAgustin\nAnton\nBryce\nCorey\nEarnest\nEd\nEllis\nEmil\nEmmett\nErrol\nGale\nGalen\nGregorio\nHumberto\nJason\nJeremy\nNicolas\nSantiago\nSylvester\nVern\nWilfred\nWoodrow\nAbraham\nBernie\nCarson\nCornelius\nCory\nCris\nDomingo\nDudley\nElvin\nJake\nJefferson\nKennith\nKip\nLauren\nLawerence\nOrlando\nRodrigo\nRusty\nSeth\nStanford\nWilbur\nWill\nBenito\nBrady\nBud\nCarter\nCharley\nCliff\nDallas\nDerrick\nDickie\nDouglass\nEmery\nErich\nGonzalo\nGrady\nGrover\nHugo\nIrvin\nIsrael\nJustin\nLonny\nMoises\nRigoberto\nSterling\nTravis\nVince\nVon\nWilson\nZachary\nAdolfo\nAlphonso\nArt\nAubrey\nAugust\nBurt\nCesar\nDannie\nDarnell\nElwood\nFederico\nFritz\nGenaro\nGerardo\nGil\nHank\nHans\nHomer\nIsidro\nKimberly\nKirby\nKurtis\nLanny\nLindsay\nMarlon\nMikel\nPierre\nRolando\nRoscoe\nRudolfo\nRufus\nRussel\nStanton\nAlec\nBurton\nCarroll\nDee\nDonal\nDonovan\nDuke\nElbert\nElton\nErvin\nFlorencio\nGarey\nKermit\nLaurance\nLawrance\nMichale\nNorris\nOrville\nOtto\nRito\nRolf\nRosendo\nSaul\nTheadore\nTimmy\nTyler\nVicente\nArne\nAurelio\nBrant\nBrice\nBrion\nButch\nChip\nCleveland\nDamon\nEddy\nEdmundo\nForest\nFransisco\nHouston\nJeremiah\nJerold\nJody\nJohnie\nJonathon\nKirt\nLamar\nLesley\nLuke\nMel\nMilo\nNicky\nNoah\nPatricia\nReese\nRiley\nRoosevelt\nRudolf\nSal\nSantos\nShannon\nTerrill\nWally\nWinston\nYsidro\nAbelardo\nAlden\nAlvino\nAntone\nAntony\nArden\nArtie\nBradly\nBrandon\nBryant\nCarleton\nCarlo\nChad\nClarke\nCornell\nCourtney\nDarcy\nDennie\nDoran\nDuncan\nDwain\nEarle\nElliot\nEmanuel\nErick\nFarrell\nGearld\nGino\nHarrison\nHerb\nIrwin\nJamie\nJefferey\nJoshua\nJulius\nKathy\nKelley\nKenton\nKraig\nLeigh\nLen\nLindsey\nLino\nLorin\nNewell\nNoe\nOmar\nPercy\nPrince\nRandi\nRandolf\nRefugio\nReyes\nRobbin\nRodrick\nRonaldo\nRoyal\nRueben\nShelton\nStacey\nTaylor\nTeodoro\nThaddeus\nVernell\nWiley\nAlonso\nAlvaro\nAmador\nArtis\nAugustin\nBasil\nBobbie\nBrooks\nCarmelo\nCedric\nCody\nCordell\nCort\nCoy\nCristobal\nDarren\nDeryl\nDominick\nDorian\nDwane\nElden\nErwin\nFlorentino\nFreeman\nGail\nGayle\nGaylord\nGorge\nGreig\nJordan\nJudson\nLamont\nLars\nLayne\nLazaro\nLeif\nLevi\nLinda\nLoy\nLuciano\nMariano\nMauricio\nMaximino\nMerlin\nMichele\nMontgomery\nNapoleon\nNickolas\nNorbert\nPatric\nQuentin\nRaoul\nRaymon\nReymundo\nRic\nRupert\nScotty\nSebastian\nShane\nShelby\nSkip\nSolomon\nSonny\nStefan\nStevie\nTheron\nTruman\nVincente\nAddison\nAlexandro\nAnson\nArlen\nArnulfo\nAudie\nBarrett\nBenedict\nBlane\nBritt\nBruno\nBuck\nCaesar\nCarmen\nCarol\nClaudio\nClint\nCole\nConnie\nConrado\nDalton\nDamian\nDarel\nDarell\nDario\nDavie\nDelfino\nDelmer\nDevin\nDino\nDrake\nDwaine\nEfren\nEldridge\nEmile\nEzequiel\nFabian\nFarrel\nFeliciano\nFiliberto\nGerman\nGodfrey\nHilario\nHowell\nHunter\nIvory\nJayme\nJere\nJerrell\nJosh\nKathleen\nKennard\nKimball\nKristopher\nLannie\nLansing\nLenard\nLex\nLinn\nLlewellyn\nLucio\nLyman\nMarcelino\nMarcelo\nMarlin\nMatias\nMerrill\nMerritt\nMichal\nMontie\nMoses\nNash\nNeill\nOren\nOrval\nParker\nPhilippe\nPrimo\nRamond\nRandle\nRenee\nRichardo\nRicki\nRob\nRobyn\nRocco\nRuss\nStacy\nSusan\nTad\nThad\nThurman\nTimmothy\nTino\nTito\nTrevor\nVerne\nWendel\nWilford\nWillam\nWilmer\nMichael\nRobert\nDavid\nJohn\nJames\nRichard\nSteven\nWilliam\nGary\nThomas\nMark\nDaniel\nRonald\nCharles\nDonald\nKenneth\nPaul\nStephen\nDennis\nGregory\nJoseph\nLarry\nJeffrey\nTimothy\nEdward\nGeorge\nBruce\nDouglas\nFrank\nAnthony\nRaymond\nPatrick\nScott\nRandy\nCraig\nLawrence\nChristopher\nPeter\nTerry\nJerry\nBrian\nRoger\nKevin\nArthur\nAlan\nJack\nGerald\nDale\nDanny\nWayne\nJoe\nPhilip\nMartin\nRodney\nRalph\nKeith\nCarl\nRandall\nSteve\nStanley\nJose\nPhillip\nEric\nHenry\nRussell\nGlenn\nAndrew\nAlbert\nRoy\nRick\nManuel\nVictor\nWalter\nLouis\nErnest\nRicky\nAllen\nJohnny\nHarold\nMicheal\nFred\nGilbert\nJon\nLeonard\nMike\nCurtis\nBarry\nClifford\nJay\nVincent\nJeffery\nRuben\nBrad\nBradley\nDean\nFrederick\nSamuel\nHoward\nDon\nEugene\nAlfred\nNorman\nJesse\nLee\nDan\nTony\nMarc\nGordon\nJimmy\nCarlos\nDarrell\nTheodore\nRay\nLeslie\nRonnie\nJim\nMario\nChris\nHarry\nGlen\nRickey\nJonathan\nBenjamin\nBilly\nMelvin\nMatthew\nKim\nKirk\nDana\nEarl\nNicholas\nGuy\nKent\nMarvin\nRandolph\nRobin\nBobby\nAntonio\nMitchell\nTommy\nJuan\nDuane\nEddie\nKurt\nTom\nEdwin\nRaul\nFrancisco\nLloyd\nBill\nJesus\nVernon\nRudy\nGene\nJoel\nRicardo\nKarl\nLuis\nBrent\nJerome\nCalvin\nDarryl\nWarren\nFrancis\nArmando\nRoss\nTed\nWesley\nAlexander\nDwight\nNeil\nWillie\nAllan\nBryan\nSalvador\nGreg\nJeff\nLonnie\nBernard\nDaryl\nFernando\nLeroy\nLeo\nLester\nLance\nClarence\nKelly\nStuart\nFranklin\nTodd\nRex\nAlvin\nRamon\nBob\nFredrick\nLaurence\nFloyd\nHerbert\nClyde\nLouie\nChristophe\nRudolph\nMiguel\nBradford\nGarry\nRoberto\nRoland\nArnold\nDave\nPete\nRandal\nLeon\nAlex\nByron\nGregg\nHector\nReginald\nFelix\nHarvey\nKerry\nRocky\nLynn\nEdmund\nNeal\nOscar\nArturo\nMarshall\nPerry\nPedro\nRodger\nTerrence\nLoren\nGabriel\nGeoffrey\nJimmie\nMaurice\nTerrance\nGrant\nSam\nTim\nNick\nBenny\nHerman\nLyle\nJavier\nJess\nJorge\nLeland\nMarcus\nFreddie\nJackie\nMilton\nShawn\nRon\nAlfonso\nBen\nClaude\nEnrique\nRoderick\nAlfredo\nJohnnie\nLewis\nAndre\nDwayne\nNathan\nDerek\nHugh\nMax\nRene\nTyrone\nAaron\nCecil\nDarrel\nChester\nEverett\nSean\nRafael\nVirgil\nAdrian\nAngel\nClark\nErnie\nJeffry\nRickie\nTerence\nClinton\nGuadalupe\nStephan\nTroy\nJaime\nJulian\nSidney\nWallace\nDenis\nDonnie\nVance\nWade\nCary\nJessie\nMyron\nEdgar\nRodolfo\nSammy\nClayton\nForrest\nWendell\nChristian\nDelbert\nErnesto\nKen\nAbel\nAlberto\nMonte\nRory\nTracy\nAndy\nClifton\nFrankie\nJan\nStewart\nBrett\nCharlie\nLorenzo\nConrad\nMorris\nPreston\nGerry\nJerald\nJerrold\nMalcolm\nDoyle\nErik\nIvan\nJoey\nJacob\nMickey\nTeddy\nEdmond\nIgnacio\nLowell\nNelson\nBlaine\nLionel\nCasey\nJamie\nKenny\nBoyd\nClay\nEduardo\nGerard\nHal\nMichel\nPat\nVan\nWillard\nAndres\nAngelo\nBennie\nCarey\nFelipe\nFreddy\nGustavo\nMarco\nWilbert\nArchie\nColin\nCurt\nJason\nLane\nLon\nMarty\nTravis\nVal\nDexter\nDonn\nKyle\nNathaniel\nSergio\nSherman\nDirk\nEarnest\nEllis\nGerardo\nGuillermo\nIan\nMonty\nNoel\nOtis\nReed\nSheldon\nXavier\nDerrick\nEvan\nMiles\nAugustine\nBert\nBlake\nDane\nDenny\nKirby\nLuther\nMathew\nRusty\nWard\nAl\nBlair\nChuck\nElias\nFrederic\nFredric\nIra\nIsaac\nJoaquin\nOliver\nSalvatore\nStan\nSylvester\nTomas\nBarney\nBuddy\nDario\nDewayne\nDominic\nDoug\nFidel\nHumberto\nKris\nMarcos\nMoses\nRamiro\nRoosevelt\nSpencer\nAlejandro\nBryce\nCarlton\nDamon\nElliott\nEmilio\nEmmett\nGarth\nKurtis\nMerle\nNicolas\nRand\nReynaldo\nAbraham\nAdolph\nBurton\nDick\nElmer\nJulio\nLoyd\nLupe\nMarion\nMikel\nPablo\nSimon\nToby\nBarton\nCameron\nDannie\nGus\nHarley\nIsmael\nJeremy\nKit\nPhil\nSterling\nVince\nAdam\nAlton\nBrandon\nCesar\nDell\nHans\nHomer\nIrving\nJerold\nLindsay\nLonny\nOrlando\nOwen\nRod\nRyan\nVern\nZachary\nAlonzo\nBart\nDanial\nDel\nDuncan\nEldon\nGrover\nHubert\nMurray\nRandell\nReid\nRudolfo\nShane\nStevie\nVaughn\nWillis\nWilson\nBrooks\nBurt\nCedric\nChad\nCliff\nDrew\nEmery\nFederico\nGeary\nGil\nJean\nJoesph\nJordan\nJustin\nKelvin\nKimberly\nMatt\nOtto\nRogelio\nWilbur\nWill\nBernardo\nBud\nDallas\nDarwin\nEmil\nGarland\nGilberto\nJulius\nKip\nKraig\nLenard\nMyles\nRandel\nReuben\nRiley\nRoyce\nSandy\nTod\nWilfred\nArmand\nArt\nBryant\nCornell\nCory\nDino\nFritz\nHorace\nLanny\nLorin\nMel\nNolan\nRobbie\nRussel\nSanford\nScot\nShannon\nSkip\nStanton\nTimmy\nWinston\nAdolfo\nAgustin\nAurelio\nBenito\nBillie\nCarter\nCorey\nDarnell\nDewey\nEd\nEddy\nElton\nErick\nHarlan\nJacques\nJody\nMitchel\nNickolas\nPierre\nRonny\nRufus\nSantiago\nStevan\nUnknown\nVicente\nAnton\nArlen\nBret\nCal\nCleveland\nClint\nDee\nDelmar\nDouglass\nDudley\nDuke\nGalen\nHarmon\nJefferson\nJonathon\nJoshua\nKermit\nMarcelino\nMarlin\nNed\nPatricia\nRuss\nSeth\nTrinidad\nAlphonso\nAubrey\nDesmond\nDonny\nElvin\nEmile\nErrol\nErvin\nErwin\nGaylord\nGenaro\nGino\nHank\nJackson\nJohnie\nKelley\nKendall\nKennith\nLeopoldo\nLucio\nMack\nNicky\nOrville\nPercy\nRob\nRobbin\nRoman\nSammie\nSantos\nShaun\nSonny\nTommie\nTrent\nTyler\nValentino\nVito\nWiley\nAlden\nAntony\nCarroll\nCordell\nCornelius\nCruz\nDominick\nEfren\nElbert\nEsteban\nGale\nGarrett\nGrady\nGreggory\nGregorio\nHarrison\nHiram\nHugo\nLawrance\nMorgan\nNorris\nOctavio\nRandolf\nReyes\nRocco\nRodrick\nRolando\nRoscoe\nRoyal\nSolomon\nStacy\nTerrill\nUlysses\nVernell\nAugust\nBennett\nBobbie\nBradly\nBrock\nBruno\nCourtney\nCurtiss\nDonnell\nDrake\nEliseo\nElliot\nGail\nGlynn\nGonzalo\nHilario\nIrvin\nJacky\nJake\nJed\nJefferey\nLeif\nLeigh\nLincoln\nMaria\nMariano\nMaynard\nMervin\nMichale\nNels\nRefugio\nRegan\nReggie\nSherwood\nSydney\nWeldon\nWynn\nZane\nAmado\nAntone\nArnulfo\nAudie\nAugustin\nBrendan\nClaudio\nClemente\nDann\nDarold\nDomingo\nDwain\nDwaine\nFermin\nForest\nGeoff\nGerold\nJeremiah\nKirt\nLarwence\nLevi\nLinda\nLinden\nLindsey\nLuke\nLyman\nMerlin\nMerritt\nMoises\nNorberto\nOllie\nOrin\nPatric\nRandle\nRaoul\nRaphael\nRaymon\nRicci\nRicki\nRigoberto\nRobby\nRock\nRoderic\nRollin\nRubin\nSandra\nShelby\nThaddeus\nTheadore\nTracey\nVerne\nWerner\nWoodrow\nWoody\nWyatt\nAmbrose\nAmos\nArden\nArlin\nBlaise\nBrant\nBrien\nBritt\nBryon\nBuck\nCaesar\nCarlo\nCecilio\nChauncey\nClair\nClancy\nCleve\nCollin\nDante\nDeborah\nDelfino\nDerrell\nDerwin\nDonovan\nDusty\nEdwardo\nElden\nFelton\nFletcher\nFransisco\nHollis\nJere\nJules\nKimball\nLamont\nLamonte\nLauren\nLawerence\nLayne\nLen\nLeonardo\nLes\nLucas\nMarciano\nMarlon\nMaxwell\nMillard\nNapoleon\nNorbert\nOmar\nParker\nRaymundo\nReynold\nRichardo\nRockey\nRogers\nRolf\nRolland\nRosalio\nRosendo\nRudolf\nRueben\nSal\nScotty\nSebastian\nStefan\nSusan\nTerrell\nThor\nTruman\nTy\nUbaldo\nVon\nWarner\nWelton\nWilford\nWinfred\nYsidro\nAlvaro\nAmador\nAnthoney\nArlie\nArne\nArtie\nArtis\nAustin\nBarbara\nBasil\nBasilio\nBenedict\nBenton\nBlane\nBrenton\nBroderick\nCarleton\nCarmen\nCarson\nCharley\nChip\nCipriano\nClement\nCleo\nClete\nCody\nCornelio\nDarell\nDarryle\nDebra\nDevin\nDion\nDixon\nDonell\nDorian\nDuff\nEctor\nEdison\nEmmitt\nEmory\nErich\nEzequiel\nFord\nFreeman\nGearld\nGerman\nGodfrey\nGorge\nGraham\nHarris\nHilton\nHoyt\nHunter\nIsrael\nIvory\nJasper\nJock\nJunior\nKaren\nKenton\nKing\nKristopher\nLaine\nLaird\nLamar\nLaurance\nLaurie\nLaverne\nLemuel\nLex\nLogan\nLoran\nLucius\nLyn\nMac\nMacario\nMajor\nMargarito\nMauricio\nMauro\nMaximo\nMckinley\nMilo\nMitch\nMorton\nNat\nNevin\nNoble\nOdis\nOlin\nOrrin\nQuentin\nRaynaldo\nReese\nRhett\nRic\nRichie\nRitchie\nRodrigo\nRonaldo\nRoque\nRosario\nRowland\nSamual\nStanford\nTad\nThad\nThom\nTimmothy\nValente\nVic\nWayman\nWes\nWhitney\nMichael\nRobert\nDavid\nJohn\nJames\nRichard\nSteven\nWilliam\nMark\nThomas\nGary\nDaniel\nRonald\nCharles\nPaul\nDonald\nKenneth\nStephen\nJeffrey\nGregory\nDennis\nJoseph\nTimothy\nLarry\nEdward\nGeorge\nBruce\nDouglas\nScott\nAnthony\nKevin\nFrank\nPatrick\nRaymond\nRandy\nCraig\nTerry\nBrian\nLawrence\nPeter\nChristopher\nJerry\nAlan\nArthur\nWayne\nDanny\nRoger\nJack\nKeith\nGerald\nDale\nJoe\nStanley\nCarl\nRalph\nSteve\nJose\nRussell\nGlenn\nPhilip\nAndrew\nEric\nRodney\nRandall\nRick\nMartin\nHenry\nAlbert\nPhillip\nJon\nWalter\nRicky\nManuel\nJeffery\nRoy\nVictor\nErnest\nBarry\nMike\nJohnny\nFred\nMicheal\nGilbert\nBradley\nHarold\nCurtis\nLeonard\nAllen\nRuben\nLouis\nFrederick\nEugene\nSamuel\nVincent\nBrad\nHoward\nJay\nDan\nMatthew\nDon\nDarrell\nTony\nGlen\nJesse\nMarc\nGordon\nJimmy\nAlfred\nCarlos\nClifford\nDean\nNorman\nRay\nJonathan\nLee\nRonnie\nBilly\nMario\nJim\nDana\nTheodore\nRickey\nGuy\nHarry\nBill\nKirk\nBobby\nChris\nMitchell\nNicholas\nKim\nRandolph\nTom\nEarl\nKurt\nAntonio\nJuan\nRobin\nMelvin\nBenjamin\nRudy\nKent\nEdwin\nWesley\nTommy\nEddie\nDuane\nLeslie\nWarren\nBryan\nFrancisco\nMarvin\nJoel\nRicardo\nRaul\nGene\nCalvin\nTed\nNeil\nDarryl\nJesus\nKarl\nDaryl\nLloyd\nArmando\nTodd\nLuis\nBernard\nRamon\nBrent\nJerome\nAllan\nVernon\nLance\nFranklin\nAlvin\nLeo\nStuart\nFernando\nAlexander\nRoberto\nWillie\nJeff\nRoss\nGarry\nOscar\nFrancis\nSalvador\nDwight\nNeal\nGreg\nAlex\nRex\nClarence\nKerry\nLonnie\nGregg\nHerbert\nLoren\nLeon\nMiguel\nLeroy\nMarcus\nGeoffrey\nHarvey\nBob\nFredrick\nKelly\nLester\nTerrence\nArnold\nReginald\nRandal\nChristophe\nLewis\nTim\nByron\nLynn\nRon\nLouie\nJimmie\nGrant\nPerry\nRocky\nLaurence\nMarshall\nDave\nGabriel\nChester\nFloyd\nRoland\nHector\nRudolph\nBradford\nAlfonso\nRene\nTerrance\nClyde\nMilton\nPete\nJohnnie\nMaurice\nPedro\nBrett\nJorge\nRafael\nJess\nLeland\nNick\nSean\nDwayne\nNathan\nBen\nDirk\nArturo\nLyle\nJeffry\nShawn\nRoderick\nRodger\nClayton\nHerman\nSam\nAndre\nJackie\nJan\nStephan\nClark\nFelix\nWallace\nAngel\nDarrel\nFreddie\nHugh\nBenny\nCecil\nAaron\nEverett\nDelbert\nEnrique\nGarth\nSidney\nEdgar\nForrest\nJaime\nMax\nSergio\nWade\nCasey\nJessie\nAlfredo\nEdmund\nFrankie\nKen\nRory\nTerence\nAndy\nCary\nJulian\nLorenzo\nAlberto\nClinton\nDonnie\nErnesto\nJavier\nTroy\nTyrone\nWendell\nRodolfo\nMarty\nVirgil\nClaude\nMyron\nRickie\nCharlie\nDenis\nDerek\nGuillermo\nMonte\nStewart\nWillard\nAbel\nJerald\nJoey\nMalcolm\nMarco\nClifton\nCurt\nGerard\nNathaniel\nChristian\nGuadalupe\nTracy\nClay\nJason\nSheldon\nAdrian\nConrad\nMickey\nNelson\nVan\nEdmond\nMorris\nErnie\nKris\nVance\nErik\nIsaac\nJerrold\nJulio\nShane\nIvan\nMiles\nSammy\nBennie\nDoyle\nKenny\nBarney\nDerrick\nEd\nJacob\nOliver\nPreston\nVern\nAl\nCameron\nMarcos\nMonty\nAlejandro\nAngelo\nBert\nBlaine\nDexter\nHal\nIra\nMarion\nNoel\nOtis\nReynaldo\nTeddy\nBuddy\nFelipe\nGalen\nIan\nMichel\nOwen\nRonny\nAbraham\nCarlton\nDewayne\nPat\nPhil\nSherman\nBlair\nDane\nDanial\nEvan\nGilberto\nKelvin\nKyle\nLionel\nLon\nMathew\nRod\nStan\nSylvester\nColin\nCorey\nCornelius\nDamon\nMarlon\nNicolas\nRamiro\nStevan\nAdam\nAdolph\nArchie\nBrandon\nCarey\nCory\nDoug\nElmer\nEmilio\nHarlan\nIgnacio\nIsmael\nRobbie\nScot\nTommie\nTravis\nBlake\nDel\nDonn\nGustavo\nKip\nMatt\nMitchel\nReed\nSalvatore\nAlton\nBarton\nBennett\nChad\nFederico\nGerry\nHarley\nLowell\nRand\nRoman\nSandy\nTomas\nBret\nCesar\nEduardo\nFredric\nGeary\nGus\nLane\nMerle\nReuben\nRoyce\nVince\nBoyd\nDarwin\nElias\nFreddy\nGarrett\nGerardo\nHomer\nHumberto\nJoaquin\nKelley\nLonny\nLuther\nNed\nRaymundo\nRudolfo\nRusty\nUnknown\nArmand\nChuck\nDewey\nDomingo\nEddy\nFrederic\nHorace\nJefferson\nJoesph\nJulius\nKendall\nKenton\nMorgan\nReid\nRyan\nShannon\nSpencer\nSterling\nTrinidad\nWilbert\nWill\nZachary\nAdolfo\nEldon\nHans\nJody\nMarlin\nMurray\nNicky\nPierre\nRandell\nRigoberto\nRob\nVaughn\nWard\nXavier\nAlonzo\nAugustine\nBenito\nCole\nDenny\nDominic\nDuncan\nDwain\nEarnest\nErvin\nLenny\nLeonardo\nLupe\nOrlando\nPercy\nRogelio\nToby\nAndres\nAubrey\nBart\nBryant\nBurt\nBurton\nCarter\nDick\nDrew\nDuke\nElliott\nEllis\nGrady\nGregorio\nHubert\nJamie\nJonathon\nJordan\nJoshua\nJustin\nKirby\nLoyd\nOrville\nSimon\nBritt\nGil\nHugo\nLanny\nLawerence\nMel\nMikel\nMoses\nNolan\nOtto\nPablo\nRiley\nSanford\nSantiago\nSonny\nWilbur\nWillis\nWilson\nWinston\nWoodrow\nAlvaro\nAntony\nBrady\nCris\nDallas\nDarell\nDonny\nEfrain\nEfren\nFaustino\nFidel\nIrvin\nJacques\nKimberly\nKurtis\nLenard\nLex\nPatricia\nRolando\nShaun\nStanton\nTimmy\nAustin\nBernie\nBryon\nCedric\nCliff\nClint\nCody\nEmil\nErick\nGarland\nHank\nJake\nJerold\nLeopoldo\nLindsay\nLorin\nRefugio\nRicci\nRufus\nSkip\nStacy\nTimmothy\nVal\nVicente\nArlen\nAudie\nBarrett\nBradly\nBryce\nCaesar\nDann\nDino\nElbert\nElton\nGale\nGonzalo\nGreggory\nIrving\nIrwin\nJean\nJeremy\nKermit\nKimball\nKit\nLamont\nLindsey\nMack\nMarcelino\nMichale\nMilo\nPatric\nRandel\nRoosevelt\nRoyal\nRueben\nRuss\nRussel\nSantos\nSeth\nStefan\nTod\nTrent\nWally\nWiley\nWilfred\nAgustin\nAlphonso\nAurelio\nBernardo\nBrock\nCleve\nDarnell\nDavis\nDusty\nElwood\nErwin\nForest\nHollis\nIsrael\nJed\nLayne\nLincoln\nLou\nMichal\nRaphael\nReyes\nRobbin\nRobby\nRock\nRosendo\nSaul\nStanford\nThaddeus\nVon\nWeldon\nAllyn\nAntone\nArnulfo\nArt\nAugust\nBrant\nBrendan\nBrooks\nBuck\nCal\nCarroll\nCharley\nCornell\nCourtney\nCruz\nDiego\nDonnell\nDonovan\nDudley\nDwaine\nEliseo\nEmanuel\nEmery\nEmmett\nEmory\nErrol\nEsteban\nFranklyn\nFransisco\nGarold\nHeriberto\nHunter\nJared\nJefferey\nJunior\nKennith\nKraig\nLeif\nMerrill\nMitch\nNorbert\nNorris\nOctavio\nRahn\nRocco\nThurman\nTyler\nVic\nAlden\nAldo\nAlec\nBasil\nBillie\nBlane\nBobbie\nBurl\nChet\nClarke\nClemente\nCoy\nDaren\nDelmar\nDemetrio\nDemetrius\nDonal\nDouglass\nEdwardo\nElvin\nEmerson\nFarrell\nFlorencio\nFlorentino\nFritz\nGarrick\nGavin\nGerman\nGraham\nHershel\nIsidro\nJackson\nJasper\nJohnie\nLawrance\nLes\nLesley\nLorne\nMarcel\nMary\nMerritt\nMichele\nNatividad\nNils\nOlen\nRaoul\nReese\nRodrick\nRodrigo\nRolf\nSammie\nSolomon\nSusan\nWarner\nAmador\nAnderson\nAnton\nArmondo\nBrandt\nBud\nButch\nCarmen\nCarson\nCecilio\nChauncey\nDanniel\nDante\nDario\nDee\nDerwin\nDrake\nDustin\nEarle\nEdmundo\nEli\nGayle\nGearld\nHuey\nIvory\nJeremiah\nKaren\nLamar\nLarwence\nLaurance\nLinda\nMauro\nMontgomery\nNapoleon\nNewton\nNickolas\nOdell\nPaige\nQuentin\nRaymon\nRenard\nRey\nReynold\nRicki\nRitchie\nRoddy\nRoscoe\nSalvadore\nScotty\nTad\nTerrell\nTerrill\nTheadore\nTy\nValentin\nValentino\nAmado\nAngus\nArlan\nArmond\nArtie\nBenedict\nBertrand\nBlaise\nBoyce\nBrien\nBrooke\nBruno\nBurke\nCandelario\nCelestino\nCharlton\nChristen\nClement\nDannie\nDarcy\nDarrol\nDelton\nDesmond\nDixon\nDolores\nDwane\nEldridge\nElliot\nEloy\nElwin\nEthan\nEzra\nFermin\nFredrik\nGail\nGarret\nGenaro\nGerhard\nGerold\nGifford\nGino\nGlendon\nHarmon\nHayward\nHenri\nHilario\nHoracio\nHoyt\nIsidoro\nJacque\nJennifer\nJere\nJoan\nJohnathan\nJules\nKai\nKenney\nKenyon\nLaird\nLars\nLary\nLaverne\nLenord\nLevi\nLucien\nLucky\nLyn\nManny\nMariano\nMarlo\nMason\nMerlin\nMoises\nMontie\nMorton\nNels\nNiel\nNoble\nNorberto\nOctaviano\nOllie\nOmar\nRandle\nRandolf\nRaynaldo\nRegan\nReggie\nRennie\nRito\nRobb\nRohn\nRolland\nRosario\nRowland\nRudolf\nRudolpho\nSebastian\nStevie\nSydney\nTerrel\nThad\nTor\nVidal\nVito\nWinfred\nWynn\nZane\nMichael\nDavid\nRobert\nJohn\nJames\nRichard\nSteven\nMark\nWilliam\nThomas\nDaniel\nGary\nRonald\nPaul\nKenneth\nDonald\nCharles\nGregory\nJeffrey\nStephen\nTimothy\nJoseph\nDennis\nLarry\nEdward\nGeorge\nBruce\nDouglas\nKevin\nScott\nAnthony\nRandy\nFrank\nCraig\nPatrick\nBrian\nChristopher\nRaymond\nTerry\nPeter\nLawrence\nAlan\nKeith\nJerry\nArthur\nDanny\nRoger\nEric\nDale\nRussell\nSteve\nJack\nJoe\nMartin\nGerald\nWayne\nRodney\nAndrew\nJeffery\nRandall\nRalph\nCarl\nJose\nRick\nHenry\nGlenn\nPhillip\nAlbert\nPhilip\nVictor\nStanley\nRoy\nRicky\nMicheal\nManuel\nWalter\nMike\nJon\nMatthew\nCurtis\nJohnny\nBarry\nErnest\nGilbert\nHoward\nVincent\nBradley\nHarold\nLeonard\nLouis\nSamuel\nDarrell\nJay\nRuben\nEugene\nAllen\nJesse\nTony\nMarc\nFred\nFrederick\nRonnie\nAlfred\nDan\nClifford\nJonathan\nNorman\nDon\nDean\nLee\nBrad\nJimmy\nChris\nJim\nKim\nRay\nCarlos\nMario\nBilly\nKirk\nGlen\nMarvin\nMitchell\nTom\nKurt\nBill\nGordon\nTheodore\nBenjamin\nDana\nBobby\nJeff\nRaul\nGuy\nEddie\nHarry\nMelvin\nRandolph\nBryan\nKent\nAntonio\nJoel\nDuane\nEarl\nLeslie\nWesley\nKarl\nRicardo\nGreg\nLloyd\nRickey\nJesus\nRudy\nTommy\nRobin\nTed\nWarren\nLuis\nJuan\nBrent\nGene\nCalvin\nNicholas\nLance\nVernon\nEdwin\nTodd\nKelly\nDarryl\nAllan\nDave\nGregg\nArmando\nTim\nFrancisco\nDaryl\nRoss\nNeil\nAlex\nAlexander\nLeo\nFernando\nSalvador\nJerome\nOscar\nFrancis\nMiguel\nHerbert\nBernard\nAlvin\nReginald\nWillie\nBob\nClarence\nFredrick\nRandal\nLeon\nLeroy\nStuart\nRoberto\nFranklin\nLonnie\nArnold\nRoland\nChristophe\nDwight\nRex\nTerrence\nByron\nRudolph\nGarry\nRene\nRon\nFloyd\nPerry\nClyde\nLester\nNeal\nHector\nKerry\nMarshall\nGeoffrey\nRocky\nLewis\nJorge\nRamon\nHarvey\nJohnnie\nLouie\nMarcus\nGabriel\nJaime\nLaurence\nBradford\nTerrance\nGrant\nSean\nJess\nLynn\nArturo\nClifton\nDelbert\nMaurice\nWade\nPete\nAlfonso\nBrett\nLoren\nSam\nLyle\nPedro\nAaron\nJoey\nDarrel\nDwayne\nJackie\nAndre\nAndy\nGerard\nHerman\nKen\nClark\nMarty\nNick\nSidney\nAlfredo\nClaude\nDerek\nEdgar\nRafael\nStephan\nTracy\nCary\nCasey\nCorey\nKenny\nWillard\nBen\nEverett\nHugh\nJulian\nMax\nRoderick\nChester\nClay\nDerrick\nFelix\nFreddie\nLeland\nMilton\nTerence\nEnrique\nErnie\nDonnie\nErik\nJessie\nShawn\nWendell\nAngel\nClayton\nTroy\nClinton\nDirk\nEdmund\nJeffry\nJimmie\nRodger\nBenny\nCecil\nJavier\nJerald\nNathan\nScot\nAdrian\nJan\nIvan\nRory\nStewart\nAbel\nWallace\nAlberto\nKris\nRodolfo\nTyrone\nDenis\nDoyle\nFrankie\nMarco\nBert\nForrest\nNathaniel\nSammy\nSergio\nCarlton\nEduardo\nMyron\nBart\nJulio\nMonte\nVirgil\nConrad\nErnesto\nJason\nHal\nPhil\nRickie\nRod\nSherman\nBlake\nBuddy\nChristian\nGuadalupe\nIan\nLuther\nMalcolm\nLorenzo\nPat\nSheldon\nXavier\nMarlon\nBennie\nElmer\nKyle\nAngelo\nCameron\nCory\nEdmond\nGuillermo\nIgnacio\nKelvin\nPreston\nCharlie\nFreddy\nGarth\nLowell\nMichel\nMickey\nDonn\nDoug\nEddy\nJacob\nMatt\nReed\nShane\nAlejandro\nDarnell\nDominic\nHubert\nIsaac\nNelson\nBarney\nBlaine\nCurt\nDewayne\nJody\nMarion\nMonty\nNoel\nStan\nVance\nAl\nFrederic\nGustavo\nKirby\nMarcos\nRusty\nVan\nArmand\nDuncan\nJoesph\nCarey\nChad\nDexter\nEarnest\nElias\nFelipe\nIsmael\nLon\nOrlando\nRamiro\nRobbie\nRyan\nTomas\nVince\nZachary\nAugustine\nKurtis\nMorris\nOliver\nOwen\nAbraham\nAdam\nAlton\nCedric\nGerry\nHumberto\nIra\nJoshua\nReynaldo\nSimon\nTravis\nWillis\nAlonzo\nDane\nDewey\nDomingo\nElliott\nEmilio\nGalen\nKimberly\nKip\nLane\nRonny\nAndres\nArchie\nDino\nDuke\nJean\nMathew\nOtis\nSpencer\nStacy\nWinston\nBret\nBurt\nBurton\nDamon\nDarwin\nHarley\nJeremy\nRoyce\nRussel\nSalvatore\nSanford\nSeth\nShannon\nVern\nBud\nDrew\nEmmett\nErvin\nEvan\nFidel\nGarrett\nHans\nMerle\nMorgan\nMurray\nReuben\nSylvester\nTeddy\nBarton\nBoyd\nChuck\nColin\nDanial\nDonovan\nEllis\nFederico\nJamie\nLamont\nLionel\nMarlin\nMilo\nMoises\nNicolas\nRandolf\nToby\nVal\nAustin\nBlair\nCesar\nDenny\nEd\nEdwardo\nElwood\nGeary\nJoaquin\nLindsey\nMikel\nNed\nRob\nRock\nSantiago\nTad\nTommie\nUnknown\nVicente\nWilson\nAdolph\nDavy\nDel\nGerardo\nGil\nGilberto\nGregorio\nHarlan\nJonathon\nKendall\nKennith\nLindsay\nMitch\nOrville\nRandell\nRaymundo\nRudolfo\nSterling\nTod\nTy\nWard\nAdolfo\nBernardo\nBrady\nBrant\nButch\nCliff\nDell\nDick\nElbert\nGino\nGus\nHomer\nJerold\nJerrold\nKelley\nMiles\nRand\nRuss\nSandy\nWilbur\nWyatt\nZane\nArt\nAurelio\nBryon\nDamian\nEldon\nGearld\nIrvin\nJed\nKit\nLanny\nMitchel\nPablo\nRoscoe\nAgustin\nAlphonso\nArlen\nBenito\nBennett\nBrandon\nChip\nCornell\nCruz\nDallas\nEdmundo\nEfrain\nEliseo\nForest\nGrady\nHorace\nHugo\nJake\nJordan\nJulius\nLeigh\nMichale\nNickolas\nOtto\nReid\nRogelio\nSaul\nShaun\nThad\nVerne\nBrendan\nDebra\nDominick\nEmil\nFletcher\nFredric\nGarland\nJefferson\nJohnie\nJustin\nKevan\nLes\nLoyd\nMack\nNolan\nPierre\nRandel\nRoosevelt\nRosendo\nSantos\nShelton\nTimmy\nTrent\nTrinidad\nTyler\nWeldon\nAlden\nBryant\nBryce\nCleveland\nCole\nDonnell\nDonny\nDrake\nDwain\nEmanuel\nFritz\nHarris\nIrving\nIrwin\nJackson\nJacques\nJared\nKenton\nLawerence\nLenard\nLonny\nLyndon\nMerrill\nNoah\nReggie\nRicki\nRitchie\nRolando\nRoman\nSammie\nStacey\nStevan\nVaughn\nWally\nAmos\nAntone\nCris\nDann\nDario\nDavis\nDonal\nEli\nElvin\nErwin\nFaustino\nGenaro\nGonzalo\nGreggory\nHiram\nJere\nLawrance\nLayne\nLincoln\nLogan\nMoses\nMyles\nNicky\nNorbert\nRaymon\nRaynaldo\nRicci\nRolf\nSkip\nStanford\nThor\nThurman\nValentino\nWilbert\nWoodrow\nAbelardo\nAllyn\nAugust\nBarrett\nBertram\nBobbie\nBrock\nCarlo\nCarter\nCharley\nColeman\nCornelius\nDeborah\nDenver\nDustin\nDwaine\nFermin\nGale\nGavin\nIsrael\nKermit\nKieth\nKimball\nLamar\nLavern\nLeighton\nLex\nLino\nMariano\nNewton\nOmar\nPercy\nRey\nRigoberto\nRobb\nRoc\nRocco\nRoque\nRueben\nSal\nStefan\nTerrell\nThaddeus\nWiley\nAldo\nAlvaro\nAnton\nAntony\nArne\nAudie\nBernie\nBlane\nBradly\nBrice\nBritt\nBrooks\nBuck\nBurl\nCal\nCarmen\nCatarino\nChet\nClancy\nCordell\nCoy\nCurtiss\nDaryll\nDee\nDerald\nDorian\nDouglass\nElton\nGerold\nIsidro\nLauren\nLemuel\nLeonardo\nLindon\nLorin\nLuciano\nLuke\nMac\nManny\nMargarito\nMaynard\nMillard\nNels\nNils\nNino\nOctavio\nOdell\nPorfirio\nPrentice\nRaphael\nRefugio\nReyes\nRhett\nRic\nRodrigo\nRomeo\nRufus\nTab\nTrevor\nTye\nVon\nWilford\nWilfred\nWillam\nAdan\nAlec\nAubrey\nBarron\nBlas\nCaesar\nCandelario\nCarroll\nClement\nClint\nCody\nCrispin\nCurley\nCynthia\nDarell\nDaren\nDarold\nDarren\nDavey\nDelmar\nDerwin\nDeryl\nDesmond\nDevon\nDoran\nDwyane\nEarle\nEnrico\nErich\nErick\nErrol\nEsteban\nFlorentino\nFranklyn\nGarold\nGarrick\nGaylord\nGorge\nGraham\nGrover\nHank\nHollis\nJasper\nJeffory\nKeven\nKraig\nLavelle\nLesley\nLucas\nLucio\nLupe\nLyman\nMarcel\nMarcelo\nMauricio\nMerlin\nMervin\nMickeal\nMonroe\nNorris\nOdis\nOllie\nPascual\nPorter\nPrince\nReno\nReymundo\nRichie\nRico\nRiley\nRobbin\nRoderic\nRodrick\nRosario\nRubin\nScotty\nSerafin\nSerge\nStanton\nStevie\nTeresa\nThane\nTimmothy\nTino\nTito\nValentine\nVito\nWardell\nWes\nWinfred\nWoody\nAlford\nAmado\nAmbrose\nAnastacio\nArnoldo\nBenton\nBillie\nBooker\nBroderick\nBuford\nCam\nCandido\nCarson\nCipriano\nClair\nClarke\nClaud\nCleve\nCorky\nCornelio\nCorwin\nDannie\nDanniel\nDante\nDelmer\nDennie\nDerrell\nDudley\nDusty\nDwane\nElliot\nEloy\nElvis\nEmerson\nEmmanuel\nEnnis\nEthan\nFelton\nFransisco\nHardy\nHarmon\nHerb\nHerschel\nHobart\nIsaias\nJacky\nJayme\nJefferey\nJens\nJohnathan\nJudd\nJunior\nKai\nKeenan\nKenney\nKirt\nLafayette\nLars\nLary\nLeandro\nLen\nLevi\nLew\nLinden\nLou\nLoyal\nMarcellus\nMary\nMason\nMaury\nMel\nMerritt\nMontgomery\nNapoleon\nNarciso\nNash\nNiels\nNoble\nNoe\nPatricia\nQuentin\nRandi\nRandle\nReese\nRenee\nRobby\nRobinson\nRockey\nRollin\nSandra\nSevero\nSilverio\nSilvestre\nSonny\nSusan\nTheron\nTobin\nTruman\nVic\nWalker\nWalt\nWarner\nWilburn\nWill\nMichael\nDavid\nRobert\nJohn\nJames\nRichard\nMark\nSteven\nWilliam\nThomas\nDaniel\nGary\nRonald\nPaul\nDonald\nKenneth\nCharles\nTimothy\nJeffrey\nGregory\nJoseph\nStephen\nKevin\nScott\nLarry\nEdward\nBrian\nDennis\nDouglas\nAnthony\nBruce\nGeorge\nRandy\nFrank\nRaymond\nPatrick\nPeter\nCraig\nChristopher\nKeith\nJerry\nTerry\nAlan\nLawrence\nRussell\nSteve\nDanny\nEric\nArthur\nDale\nJack\nGerald\nJoe\nMartin\nMike\nWayne\nJeffery\nAndrew\nRalph\nRoger\nRodney\nRick\nMatthew\nPhillip\nRandall\nCarl\nGlenn\nJose\nVictor\nAlbert\nPhilip\nStanley\nHenry\nRicky\nJon\nRoy\nWalter\nTony\nManuel\nCurtis\nMicheal\nDarrell\nGilbert\nBarry\nLouis\nJay\nJim\nLeonard\nSamuel\nVincent\nJohnny\nDean\nHarold\nErnest\nBradley\nBrad\nRuben\nRay\nFred\nAllen\nChris\nDon\nCarlos\nJeff\nJimmy\nKirk\nJesse\nMarc\nEugene\nHoward\nDan\nGlen\nMario\nFrederick\nBilly\nNorman\nRonnie\nGuy\nAlfred\nLee\nClifford\nBryan\nKurt\nTom\nBill\nJonathan\nJoel\nMitchell\nEddie\nGreg\nBenjamin\nDuane\nBobby\nGordon\nTim\nMarvin\nRickey\nRobin\nTheodore\nDana\nKent\nKim\nLance\nTommy\nDave\nMelvin\nKelly\nKarl\nTodd\nWesley\nRicardo\nRudy\nAntonio\nWarren\nHarry\nEarl\nCalvin\nRaul\nArmando\nLeslie\nEdwin\nNicholas\nLonnie\nStuart\nFrancisco\nRon\nGene\nVernon\nLloyd\nBob\nJuan\nJesus\nBrent\nDarryl\nRandolph\nGregg\nTed\nDwight\nAlexander\nDaryl\nAllan\nLuis\nAlex\nNeil\nPerry\nAlvin\nHerbert\nWillie\nSalvador\nFernando\nJerome\nReginald\nRoss\nByron\nClarence\nLeroy\nFredrick\nRandal\nRex\nClyde\nMiguel\nLester\nFrancis\nKen\nFreddie\nHector\nKerry\nLeo\nOscar\nMarcus\nLeon\nMaurice\nRoberto\nGeoffrey\nBernard\nGarry\nRocky\nAaron\nFloyd\nRene\nWade\nDwayne\nFranklin\nGrant\nJoey\nArnold\nMarty\nSam\nNeal\nRoland\nTerrence\nNathan\nSean\nRamon\nChristophe\nPedro\nDerek\nLewis\nJimmie\nNick\nTerrance\nJess\nPete\nRory\nArturo\nErnesto\nGabriel\nHarvey\nAndre\nAndy\nRudolph\nBradford\nRoderick\nShawn\nLoren\nTracy\nMarshall\nAlfonso\nMatt\nMilton\nAlfredo\nBrett\nClinton\nJorge\nHugh\nJavier\nJohnnie\nLaurence\nLouie\nAngel\nBenny\nDirk\nJaime\nLynn\nCharlie\nHerman\nRafael\nTerence\nClark\nJeffry\nLeland\nLyle\nCary\nDonnie\nGerard\nDrew\nFelix\nKenny\nChester\nDoug\nTroy\nCasey\nClaude\nClayton\nFrankie\nJackie\nSammy\nBen\nErnie\nJason\nSheldon\nDelbert\nEdgar\nVance\nCecil\nCorey\nEdmund\nMax\nStewart\nSidney\nChuck\nClay\nJerald\nTyrone\nVirgil\nWallace\nWendell\nAlberto\nCameron\nDarrel\nErik\nAbel\nChristian\nEverett\nMyron\nPhil\nRodolfo\nMonte\nRodger\nStephan\nAdrian\nDerrick\nEnrique\nGuadalupe\nRickie\nDenis\nJessie\nLorenzo\nMickey\nJulian\nMarco\nRod\nTomas\nNathaniel\nAngelo\nBennie\nDoyle\nForrest\nJulio\nMichel\nMorris\nRusty\nSergio\nClifton\nAl\nCarlton\nGuillermo\nIvan\nKelvin\nKris\nReed\nConrad\nEduardo\nWillard\nBlaine\nCurt\nGustavo\nKyle\nOrlando\nAlejandro\nBlake\nDane\nEvan\nPat\nZachary\nCory\nJacob\nLionel\nLowell\nMarlon\nMonty\nRob\nShane\nFreddy\nKendall\nMathew\nReynaldo\nRonny\nDuncan\nGerry\nIgnacio\nJan\nPreston\nBart\nBert\nBuddy\nMorgan\nScot\nCliff\nEd\nFelipe\nJamie\nLane\nMalcolm\nRobbie\nDamon\nDexter\nElmer\nJody\nMarion\nNelson\nSylvester\nDino\nDonn\nHal\nHans\nIan\nIra\nNoel\nRyan\nSterling\nAdam\nAndres\nBarton\nEllis\nIsaac\nKip\nMiles\nOliver\nReid\nReuben\nRuss\nSantiago\nDominic\nEdmond\nJerrold\nJonathon\nJoshua\nLuther\nMarcos\nMitchel\nSherman\nToby\nArchie\nArt\nBoyd\nColin\nDewayne\nElias\nIsmael\nJoaquin\nLon\nStan\nTeddy\nAdolfo\nAudie\nClint\nFrederic\nHarley\nKirby\nMerle\nMurray\nRamiro\nRandell\nSimon\nWyatt\nBrandon\nBryce\nCedric\nDallas\nEddy\nKurtis\nMikel\nPablo\nTimmy\nTod\nVan\nDanial\nEmilio\nFredric\nGarrett\nJustin\nNicolas\nSandy\nSpencer\nVince\nAbraham\nAlonzo\nAugustine\nBernie\nBlair\nBryant\nCarter\nDenny\nDick\nEarnest\nGus\nHubert\nJean\nLuke\nMack\nOwen\nRoman\nRoyce\nShannon\nTravis\nArmand\nAustin\nBenito\nBret\nChad\nDarnell\nDarwin\nLes\nLindsay\nRogelio\nSaul\nVicente\nAubrey\nCarey\nEmmett\nGarth\nGil\nKennith\nMitch\nRoosevelt\nShaun\nStevan\nTyler\nVern\nAlton\nBarney\nBroderick\nBurton\nCris\nDwain\nGenaro\nHarlan\nJulius\nKeven\nLonny\nNickolas\nRussel\nSalvatore\nWard\nXavier\nBrady\nCornell\nCruz\nDannie\nDel\nEfren\nFidel\nGarland\nGilberto\nGino\nGrady\nHomer\nReggie\nSeth\nStacy\nSydney\nTommie\nUnknown\nWilson\nBurt\nDomingo\nEdwardo\nGreggory\nHumberto\nIrvin\nJoesph\nMarlin\nOmar\nRandel\nRich\nTad\nWally\nAnton\nBrooks\nBryon\nDuke\nElliott\nErick\nFaron\nGerardo\nLen\nOrville\nRodrick\nSantos\nTrent\nWill\nWillis\nZane\nAlphonso\nBillie\nBobbie\nBritt\nBud\nCesar\nCharley\nDonnell\nDorian\nElbert\nEliseo\nElvis\nEmanuel\nFederico\nGregorio\nHorace\nIrving\nJared\nKenton\nKirt\nLamont\nLars\nLoyd\nLupe\nMerrill\nNed\nNolan\nNorbert\nOtis\nOtto\nPierre\nRaoul\nRic\nWilbur\nWinston\nWoodrow\nAmos\nCal\nCornelius\nDebra\nDouglass\nEdmundo\nElton\nErrol\nErwin\nFritz\nGail\nGale\nJohnie\nLeigh\nLindsey\nLyndon\nMaxwell\nRand\nRaymundo\nReyes\nRobb\nRobby\nRock\nRolando\nSanford\nSonny\nStanton\nTimmothy\nVaughn\nVito\nWeldon\nAdolph\nBennett\nBrock\nCarroll\nClement\nCole\nDewey\nDudley\nDusty\nEldon\nEli\nElliot\nEmmanuel\nErvin\nFreeman\nGalen\nJefferey\nJerold\nJohnathan\nJordan\nKimball\nKit\nKraig\nLenny\nLeopoldo\nLorin\nMauricio\nMoses\nNels\nNicky\nRefugio\nRhett\nRufus\nTy\nVal\nWilbert\nAgustin\nAldo\nAntony\nAugust\nAurelio\nBernardo\nButch\nCyril\nDamian\nDell\nDevin\nDrake\nDwaine\nEfrain\nEloy\nElvin\nEmery\nEthan\nFermin\nGavin\nGeary\nGerman\nGonzalo\nHugo\nJed\nJefferson\nJeremy\nKelley\nKevan\nKristopher\nLeonardo\nLesley\nLinda\nMarcelino\nMary\nOctavio\nParis\nRenaldo\nRey\nRiley\nRolf\nRoyal\nTerrill\nTrevor\nAlec\nBasil\nBenson\nBrion\nChip\nCleve\nCleveland\nCoy\nCurtiss\nDante\nDarel\nDavis\nDonny\nDonovan\nElmo\nEmil\nErich\nEsteban\nFaustino\nForest\nGarrick\nGraham\nHank\nHarrison\nJere\nLanny\nLevi\nMaynard\nMurphy\nMyles\nOllie\nRobbin\nRudolfo\nSal\nSammie\nScotty\nStefan\nStevie\nSusan\nWoody\nAmado\nAmador\nAndrea\nAugie\nBaron\nBooker\nBradly\nBrant\nBruno\nCarleton\nCarlo\nDarell\nDarold\nDarren\nDelvin\nDesmond\nDevon\nDiane\nDonaciano\nDoran\nEnrico\nEverardo\nEzequiel\nGaylord\nGrover\nHuey\nIrwin\nIvory\nJackson\nJacques\nJake\nJock\nJosef\nKenney\nKimberly\nLamar\nLawrance\nLenard\nLoran\nLyman\nMacario\nMel\nMillard\nMonroe\nPatric\nPatricia\nPercy\nQuinn\nRaphael\nRenard\nReno\nRico\nRitchie\nRodrigo\nRolland\nRosalio\nSkip\nThad\nThaddeus\nThor\nTito\nVic\nAlbino\nAlden\nAlexis\nAllyn\nAlonso\nAndree\nAnthoney\nAntone\nArlan\nArlen\nArtie\nBarron\nBerry\nBlane\nBrien\nBuck\nChet\nColeman\nCollin\nCynthia\nDayton\nDominick\nDuff\nDuwayne\nEldridge\nEmory\nGarey\nGerrit\nGunnar\nHerschel\nHilario\nIsrael\nJanet\nJohnathon\nJunior\nKerwin\nKory\nLary\nLeif\nLino\nLucio\nMac\nMarcel\nMerl\nMichal\nMichale\nMilo\nNils\nNoah\nNoe\nOlin\nOran\nOrin\nOrrin\nPorfirio\nQuintin\nRaynaldo\nRicki\nRito\nRocco\nRudolpho\nRueben\nShelby\nShelton\nSolomon\nTab\nTheron\nTino\nTracey\nValentin\nVerne\nVincente\nWilford\nWillam\nAbe\nAdan\nAlvaro\nAnastacio\nArden\nArnulfo\nBarrett\nBuster\nCarmelo\nCarol\nCarson\nCasimiro\nChristen\nClaudio\nCleo\nCordell\nCornel\nCourtney\nCyrus\nDaneil\nDann\nDanniel\nDario\nDavy\nDeborah\nDelmar\nDelwin\nDionicio\nDwane\nEarle\nEdgardo\nEduard\nElden\nEmerson\nEugenio\nFarley\nFarrell\nFelton\nFernie\nFoster\nFransisco\nGerold\nGill\nGodfrey\nGorden\nGranville\nHeriberto\nHiram\nHobart\nHollis\nJacky\nJanice\nKennard\nKern\nKing\nLavern\nLawerence\nLayne\nLeander\nLemuel\nLennie\nLex\nLogan\nLou\nMalcom\nMargarito\nMariano\nMason\nMauro\nMaxie\nMerlin\nMerlyn\nMervin\nMickel\nMoises\nNiel\nOren\nPalmer\nParris\nPascual\nPrince\nRaleigh\nRance\nRandolf\nReese\nRigoberto\nRiki\nRodell\nRondy\nRonn\nRoscoe\nSalbador\nSebastian\nStacey\nStanford\nTaylor\nTerrel\nTerrell\nTimmie\nTrinidad\nUlysses\nVernell\nWarner\nWendel\nWerner\nWilfred\nWilton\nWinfred\nYsidro\nMichael\nDavid\nRobert\nJohn\nJames\nMark\nRichard\nSteven\nWilliam\nThomas\nDaniel\nRonald\nGary\nPaul\nKenneth\nDonald\nCharles\nGregory\nTimothy\nKevin\nJoseph\nJeffrey\nScott\nBrian\nAnthony\nStephen\nEdward\nLarry\nDouglas\nDennis\nRandy\nGeorge\nFrank\nSteve\nBruce\nChristopher\nMike\nPatrick\nRaymond\nPeter\nCraig\nJerry\nKeith\nEric\nTerry\nDanny\nLawrence\nJoe\nAlan\nRussell\nDale\nRick\nArthur\nJeffery\nMartin\nAndrew\nGerald\nMatthew\nJack\nJose\nRicky\nRoger\nJim\nVictor\nWayne\nPhillip\nRalph\nRodney\nCarl\nRandall\nJeff\nGlenn\nJon\nTony\nPhilip\nRoy\nAlbert\nTom\nHenry\nBill\nDan\nManuel\nGreg\nJohnny\nCurtis\nMicheal\nDon\nGilbert\nVincent\nChris\nWalter\nDean\nStanley\nErnest\nDarrell\nLouis\nLeonard\nTim\nJay\nBradley\nAllen\nRuben\nHarold\nSamuel\nCarlos\nRay\nMitchell\nBryan\nRonnie\nFred\nBarry\nKirk\nFrederick\nNorman\nMarc\nEugene\nHoward\nJimmy\nBrad\nJesse\nAlfred\nJoel\nRon\nBob\nGlen\nMario\nEddie\nDave\nBilly\nBobby\nKurt\nGuy\nClifford\nLee\nTheodore\nGordon\nJonathan\nTommy\nJuan\nKent\nDana\nKelly\nRudy\nHarry\nBrent\nRaul\nRickey\nLance\nAntonio\nMarvin\nDuane\nKarl\nKen\nRicardo\nBenjamin\nDarryl\nTed\nEarl\nTodd\nRobin\nLuis\nJesus\nEdwin\nVernon\nFrancisco\nWarren\nArmando\nCalvin\nGregg\nMelvin\nPerry\nAlexander\nRandolph\nGene\nWesley\nAlex\nDaryl\nLeslie\nNicholas\nLonnie\nWillie\nLloyd\nNeil\nSalvador\nTracy\nMiguel\nHector\nKim\nAaron\nAllan\nFernando\nMarty\nArnold\nRandal\nAndy\nJerome\nRoss\nReginald\nAlvin\nOscar\nDoug\nLeo\nBernard\nStuart\nLeroy\nRoberto\nHerbert\nRex\nFloyd\nSean\nClyde\nDwayne\nFranklin\nBrett\nNeal\nRamon\nChuck\nFrancis\nFredrick\nGabriel\nPedro\nNick\nByron\nDwight\nKerry\nTerrence\nMatt\nGarry\nCary\nMarcus\nBen\nLyle\nRoderick\nWade\nClarence\nDerek\nJimmie\nAndre\nJavier\nRoland\nShawn\nGrant\nLouie\nTroy\nLester\nPete\nSam\nKyle\nRocky\nJaime\nClinton\nKenny\nGeoffrey\nLewis\nAlfonso\nLeon\nArturo\nClayton\nBenny\nNathan\nErnesto\nJohnnie\nMaurice\nFreddie\nHarvey\nEdmund\nErnie\nRene\nMarshall\nAlfredo\nFelix\nJorge\nPhil\nLaurence\nMax\nClay\nJoey\nLynn\nPat\nDerrick\nLeland\nMickey\nTerrance\nAngel\nChristophe\nAlberto\nEnrique\nHerman\nHugh\nCurt\nDarrel\nErik\nJess\nLoren\nRafael\nMonte\nClifton\nRudolph\nAdrian\nBradford\nChester\nCory\nJessie\nScot\nCasey\nMilton\nCameron\nClark\nWendell\nCecil\nJerald\nDirk\nRod\nRory\nDelbert\nEd\nSergio\nClaude\nTerence\nClint\nKris\nMyron\nRodolfo\nCharlie\nEverett\nSidney\nVance\nDonnie\nEdgar\nRob\nRusty\nTyrone\nRyan\nCorey\nEduardo\nJackie\nMitch\nRodger\nSheldon\nStephan\nStewart\nAbel\nHal\nJulian\nSammy\nJulio\nMonty\nRobbie\nTeddy\nWallace\nAdam\nCarey\nChristian\nDane\nDrew\nJamie\nMorris\nNathaniel\nJason\nStan\nAngelo\nEdmond\nGerry\nIan\nMarco\nMathew\nVince\nAl\nConrad\nDino\nGerard\nPreston\nBret\nEvan\nForrest\nKelvin\nLorenzo\nShane\nFrankie\nVirgil\nAlejandro\nDewayne\nDoyle\nIvan\nJeffry\nReuben\nRickie\nCarlton\nCliff\nElmer\nArt\nElias\nFelipe\nGuillermo\nDanial\nDuncan\nKendall\nMichel\nNoel\nOrlando\nRamiro\nReed\nReynaldo\nBlake\nGuadalupe\nGustavo\nMalcolm\nOwen\nRuss\nBart\nBert\nCesar\nFreddy\nJan\nAugustine\nBarney\nBennie\nGarrett\nIra\nJody\nLuther\nMitchel\nTomas\nBuddy\nCedric\nIsaac\nMarcos\nNelson\nRonny\nSpencer\nBoyd\nDexter\nDick\nKip\nPablo\nWyatt\nXavier\nArchie\nDamon\nJordan\nLes\nLoyd\nSherman\nTad\nBlaine\nDarwin\nDominic\nFidel\nIgnacio\nReid\nTravis\nVern\nWillard\nAlton\nDenny\nDonn\nMarlon\nRussel\nStacy\nSterling\nZachary\nBud\nDenis\nLane\nLionel\nLowell\nMiles\nTod\nAndres\nBlair\nDarnell\nHugo\nJean\nJoshua\nJulius\nKurtis\nRoyce\nShaun\nWilfred\nAnton\nBennett\nBillie\nColin\nDel\nEddy\nGerardo\nGil\nHumberto\nJacob\nJoaquin\nJustin\nPierre\nToby\nAdolfo\nAubrey\nChad\nDallas\nDario\nEmilio\nGarth\nJoesph\nLamont\nLenny\nLonny\nMorgan\nNicolas\nNorris\nOrville\nRich\nSantos\nTimmy\nVan\nAbraham\nBarton\nBrady\nEllis\nFederico\nJonathon\nLon\nLuke\nMurray\nShannon\nSimon\nTrent\nVaughn\nBrandon\nErick\nGilberto\nHarlan\nKeven\nKirby\nRigoberto\nRock\nSanford\nSaul\nWinston\nZane\nAlonzo\nBurton\nErwin\nKirt\nLindsey\nMarlin\nMel\nRandell\nRobby\nRogelio\nRoman\nRudolfo\nSylvester\nAgustin\nBryon\nCornell\nDwain\nEdwardo\nElton\nErrol\nFredric\nGino\nGonzalo\nGus\nIsmael\nMarion\nMerrill\nNickolas\nSalvatore\nUnknown\nWilbur\nBenito\nBernie\nBryce\nCruz\nDomingo\nEdmundo\nEfrain\nFrederic\nHans\nHarley\nMerle\nNicky\nOliver\nRand\nReggie\nSantiago\nTommie\nAugust\nDion\nEmmett\nEsteban\nGalen\nGenaro\nHorace\nHubert\nJefferey\nJerold\nJerrold\nLawerence\nOtis\nRodrick\nSandy\nSeth\nTrinidad\nVal\nWes\nWilbert\nWillis\nCal\nCornelius\nDewey\nDuke\nGreggory\nHank\nIrving\nKenton\nKit\nMack\nMikel\nMoses\nOctavio\nRandel\nStacey\nTyler\nWard\nAdolph\nArmand\nBrooks\nCris\nEldon\nElliott\nJefferson\nLincoln\nNoah\nRaymundo\nSkip\nStevie\nVicente\nVon\nWally\nWill\nBryant\nCarroll\nDarell\nDarren\nDee\nDerick\nDonny\nDusty\nElbert\nEmery\nEmil\nErvin\nGrady\nHomer\nJeremy\nKennith\nLamar\nLars\nLen\nLeopoldo\nLesley\nLyndon\nMary\nNolan\nOtto\nRoderic\nRoosevelt\nRoscoe\nStefan\nTheron\nTy\nWeldon\nAlvaro\nAudie\nAustin\nBradly\nBrien\nBritt\nBruno\nCarmen\nChip\nCleveland\nColeman\nDalton\nDarcy\nDerwin\nDonovan\nDouglass\nElvis\nGarland\nGraham\nIrvin\nIsidro\nJacques\nJere\nKraig\nKristopher\nLayne\nLeigh\nLeonardo\nLindsay\nMarcelino\nMariano\nMauricio\nMichale\nRodrigo\nRolf\nRolland\nTab\nWilson\nAntony\nArlen\nArnulfo\nAurelio\nCarter\nCharley\nCurtiss\nDannie\nDevin\nDonnell\nEfren\nEli\nElvin\nErich\nGregorio\nHarrison\nHiram\nHollis\nJacinto\nJake\nKimberly\nLorin\nLou\nLucio\nLupe\nMarcel\nMaria\nMarshal\nNed\nOdell\nPercy\nRaphael\nRicki\nRobb\nRueben\nSilas\nSolomon\nSonny\nStevan\nThad\nTino\nAbelardo\nBasil\nBobbie\nBroderick\nBurt\nClaudio\nDamian\nDell\nDelmar\nDwaine\nEarle\nEarnest\nEliseo\nElliot\nElwood\nEmanuel\nErin\nFabian\nGearld\nGray\nJackson\nJared\nKermit\nMerlin\nMilo\nMoises\nOrrin\nRiley\nRocco\nRolando\nRufus\nStanford\nTerrell\nThaddeus\nVerne\nWhitney\nWiley\nWillam\nWoodrow\nAlain\nAldo\nAlec\nAlphonso\nBaron\nBenson\nBernardo\nBerry\nBlane\nBrice\nBrion\nBurl\nChet\nCourtney\nCoy\nCynthia\nDante\nDarold\nDerald\nDudley\nEmory\nFermin\nForest\nFrederico\nFritz\nGale\nGuido\nHeriberto\nJosh\nKaren\nKelley\nKennth\nKimball\nKory\nLafayette\nLanny\nLawrance\nLeif\nLenard\nLevi\nLoran\nLyman\nMarcelo\nMikeal\nNels\nNiels\nOmar\nParis\nPatricia\nQuinn\nRefugio\nRicci\nRonnald\nSammie\nShelby\nSid\nStanton\nTrevor\nVic\nVito\nWarner\nAlphonse\nAmado\nAmos\nAntone\nArne\nBarrett\nBenedict\nBooker\nBrant\nButch\nCam\nCandelario\nCardell\nChandler\nClement\nCole\nConstantine\nCort\nCrispin\nCyril\nDelfino\nDerrell\nDevon\nDewitt\nDominick\nEdgardo\nEleazar\nEnos\nEpifanio\nFaron\nFreeman\nGaylord\nGeoff\nGrover\nHilario\nIrwin\nIsaias\nIsrael\nJace\nJeremiah\nJock\nJohnathan\nJohnie\nJudson\nJunior\nKai\nLennie\nLinda\nLindy\nLory\nLyn\nManny\nMargarito\nMaxwell\nMelton\nMervin\nMichiel\nMyles\nNoe\nPascual\nPorfirio\nQuentin\nRaoul\nRennie\nReno\nReyes\nRic\nRichmond\nRobbin\nRoc\nRojelio\nRudolf\nSal\nSalvadore\nScotty\nSusan\nSydney\nTerril\nTerrill\nTimmothy\nValentin\nWerner\nWeston\nWilly\nWoody\nAdan\nAlvino\nAmador\nAntoine\nArcadio\nArmond\nArtie\nAshley\nAugustin\nBaltazar\nBreck\nBrendan\nBrenton\nBriant\nBuster\nCarleton\nCarlo\nCarol\nCheryl\nCheyenne\nCindy\nClem\nCleo\nCody\nCorky\nCornelio\nCrawford\nCreighton\nCuauhtemoc\nDann\nDanniel\nDarel\nDarin\nDarius\nDavey\nDavis\nDebbie\nDebra\nDenzel\nDerryl\nDesiderio\nDesmond\nDiane\nDonal\nDonell\nDonna\nDorian\nDrake\nEloy\nEmerson\nEugenio\nEverardo\nFarrell\nGabe\nGaetano\nGavin\nGayland\nGaylen\nGeary\nGerman\nGerold\nHarris\nHerminio\nHunter\nIvory\nJacque\nJarvis\nJeffrie\nJewell\nJhon\nJodie\nJudd\nKendal\nLaird\nLambert\nLamonte\nLary\nLauren\nLeighton\nLemuel\nLeonel\nLex\nLinden\nLlewellyn\nLoy\nLuciano\nMarkus\nMaynard\nMick\nMickel\nMigel\nMontie\nNicola\nNigel\nNils\nNoble\nNormand\nOren\nOtilio\nPrimitivo\nQuintin\nRandol\nRaynaldo\nRenaldo\nRenard\nRey\nRico\nRollie\nRosendo\nRowland\nRoyal\nRudolpho\nSalomon\nSamual\nSerge\nShelton\nTaylor\nTobin\nUlysses\nVincente\nWalt\nWelton\nMichael\nDavid\nRobert\nJohn\nJames\nMark\nRichard\nSteven\nWilliam\nThomas\nDaniel\nRonald\nPaul\nGary\nKenneth\nDonald\nTimothy\nCharles\nScott\nKevin\nJeffrey\nGregory\nBrian\nJoseph\nAnthony\nLarry\nMike\nStephen\nSteve\nDennis\nEdward\nDouglas\nRandy\nGeorge\nFrank\nChristopher\nPatrick\nEric\nBruce\nRaymond\nCraig\nKeith\nJerry\nPeter\nRick\nJoe\nDanny\nTerry\nMatthew\nRicky\nJeff\nRussell\nAlan\nDale\nJim\nArthur\nMartin\nAndrew\nLawrence\nJose\nBill\nTom\nChris\nWayne\nTim\nTony\nJack\nJon\nRalph\nRodney\nRoger\nPhillip\nGreg\nGerald\nRandall\nPhilip\nJeffery\nManuel\nVictor\nDan\nCarl\nRoy\nGlenn\nAlbert\nDon\nVincent\nHenry\nJay\nDean\nDave\nCurtis\nJohnny\nDarrell\nCarlos\nGilbert\nLeonard\nBradley\nBryan\nRon\nMicheal\nWalter\nRuben\nBob\nFred\nLouis\nTodd\nStanley\nAllen\nMitchell\nKirk\nErnest\nBarry\nKurt\nRonnie\nBrad\nAlfred\nMario\nSamuel\nJimmy\nMarc\nRay\nHoward\nHarold\nBilly\nJesse\nGlen\nEddie\nNorman\nBobby\nBrett\nEugene\nClifford\nKen\nKelly\nLee\nJonathan\nJoel\nJuan\nFrederick\nGuy\nKent\nBret\nGordon\nBenjamin\nDuane\nTed\nTheodore\nKarl\nRicardo\nRickey\nTommy\nBrent\nRaul\nPerry\nAntonio\nDarryl\nDana\nLance\nDaryl\nEarl\nMarvin\nJesus\nRudy\nSean\nNicholas\nWarren\nDoug\nGene\nMatt\nHarry\nGregg\nLuis\nAlex\nWillie\nArmando\nEdwin\nCalvin\nLloyd\nFrancisco\nReginald\nVernon\nMelvin\nWesley\nRobin\nHector\nMiguel\nNeil\nRamon\nJerome\nRoberto\nLeslie\nMarty\nAndre\nAaron\nAllan\nNick\nArturo\nFernando\nRandolph\nDerek\nDwayne\nAlexander\nAlvin\nAndy\nSalvador\nStuart\nTracy\nRandal\nOscar\nLeon\nBernard\nLeo\nRoss\nShawn\nClarence\nLewis\nLonnie\nPete\nFrancis\nJaime\nFloyd\nChuck\nKim\nSam\nHerbert\nLouie\nArnold\nErnie\nLester\nPat\nCary\nKenny\nEd\nJohnnie\nClayton\nGabriel\nGarry\nJavier\nRoland\nBen\nRafael\nByron\nKerry\nLeroy\nMarcus\nPedro\nFredrick\nGrant\nJoey\nAlfonso\nDwight\nGeoffrey\nNeal\nRene\nWade\nCurt\nMaurice\nRocky\nTroy\nFranklin\nRex\nCasey\nNathan\nBradford\nJorge\nBenny\nHugh\nJimmie\nBart\nKris\nClark\nJamie\nTerrence\nClay\nClinton\nMarshall\nAlfredo\nFreddie\nPhil\nRudolph\nClyde\nEdmund\nJess\nTerrance\nLynn\nErnesto\nRod\nRoderick\nRory\nAngel\nChester\nJessie\nVirgil\nCharlie\nClifton\nEduardo\nHerman\nChristian\nKyle\nMathew\nSergio\nAlberto\nClaude\nEnrique\nJason\nMonte\nWendell\nAbel\nCory\nLaurence\nLoren\nLyle\nTyrone\nFelix\nMax\nDarrel\nJody\nLeland\nDarren\nTerence\nHarvey\nIvan\nMarco\nMilton\nScot\nDerrick\nJerald\nLorenzo\nRickie\nArt\nClint\nErik\nGuillermo\nJulian\nAdrian\nEdgar\nEverett\nRob\nDrew\nMitch\nRodolfo\nSammy\nStan\nTimmy\nDonnie\nJeffry\nRuss\nCameron\nCorey\nMickey\nSidney\nVance\nChristophe\nGerard\nCecil\nIgnacio\nJackie\nAlejandro\nBlake\nConrad\nDino\nBert\nGerry\nSheldon\nVince\nFrankie\nStewart\nAdam\nDominic\nJulio\nKelvin\nNelson\nAndres\nColin\nDenis\nNoel\nRusty\nWallace\nGuadalupe\nGustavo\nRobbie\nCarlton\nReynaldo\nDelbert\nDirk\nShane\nFelipe\nMarcos\nMorris\nMyron\nElias\nEvan\nIan\nLionel\nMalcolm\nRyan\nStephan\nAl\nAngelo\nIra\nOrlando\nRamiro\nRandell\nRonny\nWard\nHal\nJacob\nKendall\nSherman\nTeddy\nWillard\nDamon\nJoaquin\nLuke\nRodger\nBarney\nForrest\nGarth\nTomas\nBuddy\nDenny\nDewayne\nDoyle\nIsaac\nIsmael\nMarion\nMiles\nPierre\nShaun\nVan\nAlton\nDane\nGerardo\nMitchel\nPreston\nToby\nBlaine\nDarnell\nNicolas\nPablo\nReed\nRich\nSantiago\nBoyd\nCesar\nDion\nJoshua\nMonty\nNathaniel\nOwen\nTravis\nAdolfo\nBlair\nBryon\nCedric\nDexter\nFreddy\nGarrett\nGilberto\nJan\nLane\nLes\nLuther\nMarlon\nMurray\nNicky\nAugustine\nCarey\nDanial\nDick\nDuncan\nGil\nHumberto\nLon\nMarlin\nMel\nSal\nSalvatore\nCliff\nEmmett\nGus\nHarlan\nKip\nOliver\nSaul\nTod\nAlonzo\nBennie\nDarwin\nEddy\nErick\nJonathon\nLowell\nSkip\nWillis\nArchie\nBarton\nBenito\nKenton\nSeth\nSpencer\nSterling\nBryant\nDonn\nErich\nHans\nHarley\nIrving\nKennith\nMichel\nAbraham\nEdmond\nGino\nJordan\nJustin\nKeven\nLeonardo\nLonny\nMoses\nOtto\nSylvester\nAgustin\nBernie\nChad\nCruz\nDonnell\nElliott\nFidel\nGonzalo\nLenny\nOtis\nReggie\nRoosevelt\nTy\nWinston\nZachary\nAustin\nErwin\nHugo\nRand\nRobby\nRoyce\nRussel\nSimon\nThaddeus\nTrinidad\nAdolph\nBrandon\nBurt\nDel\nDevin\nDuke\nDwain\nEarnest\nElbert\nEldon\nElmer\nElton\nErvin\nGarland\nGrady\nHank\nKory\nKraig\nLanny\nMikel\nReuben\nTommie\nTyler\nArmand\nBurton\nEmilio\nFrederic\nGavin\nJefferson\nJeremy\nJerold\nKurtis\nModesto\nNed\nNorbert\nRey\nRogelio\nShannon\nStacey\nStacy\nTad\nUnknown\nVon\nWill\nAubrey\nBrady\nBud\nDallas\nEdwardo\nEfren\nEllis\nGalen\nGeoff\nHubert\nJacques\nJean\nJoesph\nJulius\nKelley\nMack\nMerle\nMoises\nReid\nRolando\nRoman\nSanford\nSantos\nVern\nVic\nXavier\nAugust\nAurelio\nBernardo\nBillie\nCourtney\nDiego\nDonny\nEmanuel\nEmile\nFederico\nJosh\nKermit\nKirby\nLars\nPatricia\nReyes\nVal\nVicente\nWalt\nBennett\nBlane\nBritt\nCarson\nCarter\nCody\nCornell\nDell\nEdmundo\nElvin\nGenaro\nGregorio\nHorace\nIrvin\nJefferey\nKristopher\nLauren\nMarcel\nMariano\nRigoberto\nRocco\nRosendo\nSandy\nTerrell\nVaughn\nWes\nWilbert\nWilbur\nWilson\nArlen\nBrendan\nBryce\nDamian\nDomingo\nGreggory\nHerb\nHollis\nKevan\nKit\nLindsay\nLupe\nLyndon\nMerrill\nNickolas\nOmar\nRandel\nSonny\nStevie\nAron\nBrooks\nCornelius\nDante\nDarell\nDelmer\nErrol\nHomer\nJace\nJared\nJerrold\nLamont\nLawerence\nLinda\nLorin\nLoyd\nLuciano\nMauricio\nPercy\nRueben\nTheron\nWayde\nWilfred\nAlvaro\nAntoine\nArnie\nBruno\nCharley\nChet\nClemente\nDanniel\nDarold\nDenton\nDerick\nDrake\nDudley\nDwaine\nEmery\nFaron\nForest\nGraham\nJackson\nJunior\nLevi\nLincoln\nLindsey\nManny\nMarkus\nMerlin\nNels\nNorris\nQuintin\nRaphael\nRaymundo\nRock\nRodrigo\nRolf\nSammie\nSolomon\nStevan\nSusan\nTimmie\nTobin\nTrent\nValentino\nWally\nWillam\nWyatt\nAldo\nAlec\nAmado\nAmos\nAntony\nAvery\nBrien\nCheryl\nCleveland\nCris\nDannie\nDarius\nDarrin\nDenver\nDiane\nEliseo\nElliot\nEloy\nEmil\nFlorencio\nFredric\nGale\nGorge\nGrover\nHarrison\nHeriberto\nHilario\nJake\nJere\nJohnathan\nJosef\nKipp\nLamar\nLayne\nLeif\nLenard\nLeopoldo\nLinden\nMichale\nMilo\nMorgan\nMyles\nNoe\nReese\nRic\nRoark\nRoddy\nRoderic\nRolland\nRosario\nRufus\nScotty\nSherwood\nStanton\nTaylor\nThad\nVito\nWayland\nWhitney\nWilly\nZane\nAlphonso\nAram\nArne\nBasil\nBenson\nBobbie\nBradly\nBrice\nBurl\nCaesar\nCourtland\nCoy\nDaren\nDemetrius\nDerald\nDereck\nDevon\nDewey\nDomenic\nDominick\nDorian\nDouglass\nEarle\nEfrain\nElden\nEliot\nErin\nEusebio\nEverardo\nFarley\nFaustino\nFermin\nFiliberto\nFranklyn\nIsidro\nIsrael\nJamey\nJudd\nKathleen\nKirt\nLennie\nMarcelino\nMauro\nMervin\nNarciso\nNolan\nOdis\nOrville\nPhilippe\nQuentin\nRandolf\nRaoul\nRaymon\nRefugio\nRhett\nRicci\nRobb\nRudolfo\nSebastian\nSerge\nSerjio\nStanford\nStefan\nTimmothy\nTrevor\nTruman\nWerner\nWiley\nAlden\nAlphonse\nBenedict\nBoris\nCarlo\nCarmen\nCarol\nChauncey\nChip\nCole\nCordell\nCorry\nCynthia\nDann\nDarcy\nDarrold\nDavis\nDelwin\nDerwin\nDesmond\nDusty\nElizabeth\nElvis\nEsteban\nEthan\nEzequiel\nFarrell\nFritz\nGaylord\nGillermo\nGlynn\nHerschel\nJacky\nJed\nJohnie\nJules\nKary\nKerwin\nKimberly\nLaura\nLavell\nLindy\nLoran\nLori\nLyn\nMarcelo\nMargarito\nMart\nMaynard\nMikeal\nNorm\nOctavio\nOdell\nOllie\nOren\nQuincy\nQuinn\nRande\nRenard\nRenee\nRichardo\nRicki\nRiley\nRodrick\nSalvadore\nSandra\nShelby\nShelton\nSiegfried\nThurman\nThurston\nTino\nUriel\nVernell\nWalton\nWeldon\nWilford\nWoodrow\nAbelardo\nAdalberto\nAllyn\nAlva\nAmador\nAmbrose\nAndreas\nAnthoney\nAnton\nArden\nArlin\nArnulfo\nAudie\nAugustin\nBarrett\nBarron\nBasilio\nBrant\nBrenton\nBrook\nBuck\nButch\nCal\nCaleb\nCalixto\nCamilo\nCarroll\nCindy\nCleve\nConrado\nCornelio\nCurtiss\nDamien\nDario\nDarryll\nDarwyn\nDawn\nDelvin\nDerrell\nDonell\nDonovan\nDwane\nDylan\nEleazar\nEmmanuel\nEpifanio\nErie\nEzekiel\nFlint\nFranz\nGeary\nHilary\nHoby\nIsaias\nJame\nJayme\nJohnathon\nJude\nJudson\nKeenan\nKem\nKennedy\nKennth\nKing\nLaurent\nLeigh\nLeighton\nLen\nLew\nLisa\nLorne\nLovell\nMac\nMarlo\nMary\nMason\nMaxwell\nMelvyn\nMichal\nMichiel\nNapoleon\nNiles\nNils\nNoah\nNoble\nNorberto\nOsvaldo\nOzzie\nParis\nParker\nParris\nParry\nPieter\nRandle\nReinaldo\nRojelio\nSally\nSamson\nSevero\nSid\nSimeon\nSkipper\nSydney\nTab\nTheadore\nTimm\nToney\nUlysses\nVentura\nWardell\nWarner\nWinfred\nYsidro\nDavid\nMichael\nRobert\nJohn\nMark\nJames\nRichard\nSteven\nWilliam\nThomas\nDaniel\nPaul\nKevin\nRonald\nTimothy\nJeffrey\nKenneth\nScott\nGary\nCharles\nDonald\nBrian\nGregory\nMike\nJoseph\nAnthony\nSteve\nEdward\nDennis\nLarry\nChristopher\nEric\nStephen\nCraig\nDouglas\nFrank\nRandy\nGeorge\nPatrick\nPeter\nJeff\nRaymond\nKeith\nJim\nBruce\nJerry\nJoe\nTerry\nDanny\nMatthew\nDale\nRick\nChris\nTim\nRicky\nAlan\nRussell\nTony\nJose\nTom\nGreg\nJon\nBill\nArthur\nMartin\nRoger\nAndrew\nPhillip\nJeffery\nVictor\nLawrence\nWayne\nRandall\nJack\nGerald\nDave\nVincent\nCarl\nManuel\nDan\nRodney\nDon\nHenry\nRalph\nCurtis\nPhilip\nAlbert\nDean\nJohnny\nGlenn\nBryan\nBob\nWalter\nJay\nGilbert\nRuben\nRon\nLeonard\nBradley\nRoy\nFred\nJimmy\nKirk\nCarlos\nTodd\nDarrell\nErnest\nMicheal\nMitchell\nSamuel\nBarry\nLouis\nRay\nMarc\nRonnie\nBrett\nAllen\nJesse\nKen\nKurt\nStanley\nKelly\nBilly\nEddie\nMario\nBrad\nHarold\nDarryl\nBret\nJuan\nJoel\nEugene\nJonathan\nHoward\nGlen\nLee\nBrent\nDuane\nLance\nNorman\nRicardo\nPerry\nFrederick\nBobby\nShawn\nTed\nAlfred\nClifford\nJesus\nKent\nKarl\nGuy\nDoug\nLuis\nGordon\nTommy\nRaul\nAlex\nAntonio\nBenjamin\nTheodore\nDarren\nMatt\nStuart\nRudy\nDana\nWesley\nNicholas\nMarvin\nSean\nGene\nDaryl\nHarry\nEdwin\nRickey\nDwayne\nFrancisco\nArmando\nEarl\nLloyd\nNick\nAaron\nChuck\nHector\nWarren\nJaime\nMelvin\nMiguel\nRobin\nGregg\nWillie\nAndre\nLonnie\nDerek\nRamon\nReginald\nOscar\nSam\nCalvin\nKenny\nTracy\nAndy\nClarence\nMarty\nSalvador\nJerome\nMarcus\nRoberto\nLeo\nNeil\nRoss\nLeslie\nVernon\nByron\nFernando\nRene\nTroy\nBernard\nPat\nAllan\nAlvin\nEd\nGabriel\nKerry\nRandolph\nAlexander\nPedro\nTyrone\nArnold\nCary\nHerbert\nRandal\nJavier\nClinton\nClayton\nLewis\nBen\nErnie\nNathan\nFloyd\nWade\nFranklin\nFrancis\nChristian\nJimmie\nJoey\nPete\nBart\nLeon\nNeal\nArturo\nClay\nMaurice\nRoland\nAlfredo\nLeroy\nDwight\nErik\nSergio\nGeoffrey\nJorge\nRex\nClyde\nRod\nAngel\nPhil\nRafael\nAlfonso\nRory\nGarry\nKim\nLouie\nGrant\nKyle\nDerrick\nMathew\nRoderick\nMarco\nWendell\nHugh\nLeland\nLester\nRocky\nHerman\nJason\nJody\nCasey\nKris\nLoren\nAlberto\nEdmund\nFreddie\nJohnnie\nFelix\nFredrick\nJamie\nRudolph\nRuss\nStewart\nBenny\nMilton\nJess\nLyle\nAbel\nEnrique\nTerrence\nChester\nClaude\nErnesto\nScot\nAdam\nBlake\nCurt\nLaurence\nAdrian\nBradford\nCharlie\nDino\nHarvey\nVince\nClark\nDarrel\nJessie\nClifton\nCory\nDirk\nEduardo\nEverett\nFrankie\nMax\nRodger\nGustavo\nJulian\nMarshall\nVance\nDrew\nJackie\nMitch\nJeffry\nLorenzo\nStan\nGerard\nTerence\nGerardo\nKelvin\nSammy\nVirgil\nDane\nCameron\nCorey\nNelson\nRodolfo\nShane\nTerrance\nIvan\nRob\nRyan\nDonnie\nMonty\nSidney\nWallace\nForrest\nJoshua\nFelipe\nJerald\nLynn\nTimmy\nCecil\nDelbert\nMickey\nNathaniel\nDamon\nDoyle\nLane\nMyron\nAngelo\nBert\nCedric\nColin\nEvan\nArt\nGuadalupe\nJulio\nMonte\nRickie\nAlejandro\nCarlton\nClint\nEdgar\nGerry\nMarcos\nOrlando\nAl\nRusty\nBrandon\nCarey\nIgnacio\nKendall\nRamiro\nFidel\nIan\nMitchel\nStephan\nTy\nWard\nCliff\nDominic\nGuillermo\nLowell\nMorgan\nToby\nDarwin\nGino\nMalcolm\nAbraham\nAlonzo\nChristophe\nGilberto\nIra\nJacob\nJoaquin\nPierre\nAndres\nBoyd\nHans\nMichel\nNoel\nRich\nShannon\nTeddy\nTravis\nXavier\nIsmael\nLionel\nNicolas\nStacy\nAugustine\nDenis\nLon\nRandell\nRobbie\nTod\nConrad\nLayne\nMiles\nReuben\nSheldon\nVan\nBud\nJustin\nOtis\nSalvatore\nArchie\nBennie\nBlaine\nBryon\nDonn\nElmer\nHumberto\nIsaac\nNicky\nPablo\nSantos\nVicente\nWes\nBuddy\nCesar\nDexter\nElias\nKirby\nRobby\nSherman\nBarney\nFreddy\nKurtis\nOwen\nPreston\nRoman\nRoyce\nTrent\nWayde\nWillis\nAlton\nBarton\nDenny\nEllis\nGarth\nLonny\nLuke\nLupe\nMorris\nMoses\nReed\nTomas\nWillard\nDarnell\nDewayne\nDick\nDion\nDwain\nEdmond\nEfrain\nEmilio\nGus\nKip\nLes\nLoyd\nMarlon\nMikel\nReynaldo\nSal\nSaul\nTrinidad\nVal\nDarin\nDewey\nDomingo\nDuncan\nHomer\nMarion\nMurray\nOliver\nRonny\nShaun\nSylvester\nAugust\nChad\nCruz\nDallas\nDaren\nEddy\nElliott\nErick\nFederico\nGalen\nKennith\nLeonardo\nRogelio\nRolando\nRussel\nTommie\nTyler\nZachary\nArmand\nBlair\nBurton\nDel\nHal\nJerrold\nReggie\nSantiago\nSimon\nSpencer\nWally\nBernie\nDanial\nDevin\nEarnest\nFabian\nGil\nJonathon\nJordan\nLars\nLuther\nSterling\nAdolfo\nBennett\nBernardo\nBrooks\nCornelius\nDario\nEfren\nErich\nHugo\nJan\nKraig\nLamont\nVern\nWilbert\nZane\nBryant\nChip\nDarrin\nDonnell\nDuke\nEdwardo\nEmmett\nHank\nJoesph\nLyndon\nMel\nReid\nSanford\nSeth\nWill\nDonny\nJefferey\nLenny\nMerle\nRigoberto\nSandy\nSkip\nStacey\nTad\nTrevor\nVaughn\nWyatt\nAdolph\nAlec\nBrady\nBrendan\nBryce\nBurt\nErvin\nFrederic\nGregorio\nHarlan\nHubert\nIsidro\nJean\nJefferson\nMarlin\nMoises\nNoah\nOmar\nOtto\nRic\nTerrell\nBillie\nBradly\nBritt\nBuck\nCarter\nDiego\nElbert\nErrol\nFlint\nGarrett\nGavin\nGrady\nGraham\nJeremy\nKeven\nLennie\nMauricio\nNed\nRandel\nRoscoe\nStefan\nVic\nWoodrow\nAgustin\nAntoine\nAurelio\nAustin\nBenito\nCornell\nDamian\nDwaine\nEfrem\nElton\nEmil\nEsteban\nFelton\nFredric\nGarland\nGonzalo\nJulius\nLamar\nLanny\nLawerence\nLindsay\nLorin\nMerlin\nNoe\nRaoul\nRock\nRufus\nTracey\nWiley\nWinston\nArlen\nAron\nBrock\nButch\nCourtney\nDarell\nEmanuel\nErwin\nGreggory\nKit\nKristian\nLeopoldo\nLucio\nMack\nMarcel\nRey\nThad\nVon\nWilfred\nWilson\nAnton\nAubrey\nBobbie\nDanniel\nDevon\nDomenic\nEdmundo\nEldon\nGenaro\nHarley\nHerb\nIrvin\nIsrael\nJake\nKaren\nKelley\nKenton\nKermit\nKirt\nLinda\nLino\nMarcelino\nMariano\nMerrill\nMilo\nMyles\nNolan\nNorris\nPatricia\nPercy\nPorfirio\nRand\nRicci\nRicki\nTimmie\nAlphonso\nAlvaro\nBartley\nCandelario\nCarmen\nCharley\nCleveland\nCody\nCoy\nDannie\nDerwin\nDesmond\nDonell\nEli\nElvin\nEthan\nFermin\nFlorentino\nFritz\nGerold\nHarrison\nHorace\nIrving\nJacque\nJacques\nJared\nKevan\nKimberly\nKory\nLawrance\nLeif\nLucas\nMarcial\nMargarito\nMaynard\nQuentin\nReyes\nReymundo\nRodrigo\nRoosevelt\nSolomon\nSonny\nThaddeus\nWilbur\nWinfred\nYancy\nAdalberto\nAlden\nBerry\nBlane\nBrion\nBroderick\nCal\nChet\nClaudio\nClemente\nCollin\nCris\nDamien\nDavis\nDelano\nDerrell\nDonal\nFarrell\nGale\nGeoff\nJed\nJerold\nJosh\nKeenan\nLazaro\nLen\nLenard\nLesley\nLevi\nLincoln\nLisa\nLou\nLyn\nMacario\nManny\nMason\nModesto\nNickolas\nOctavio\nOrville\nRaymon\nRaymundo\nRefugio\nReynold\nRiley\nRitchie\nRocco\nRodrick\nRolf\nSid\nSilas\nTheron\nTimmothy\nWalt\nWaymon\nWerner\nAbelardo\nAldo\nAmador\nAmos\nAnthoney\nAntony\nArnulfo\nAshley\nAudie\nAugie\nBarron\nBenedict\nBonifacio\nBrant\nBruno\nCarlo\nCleve\nCole\nConrado\nCorwin\nDante\nDarby\nDarcy\nDarrick\nDustin\nDusty\nEarle\nEliseo\nEugenio\nEverardo\nForest\nIsaias\nJerrel\nJohnathan\nJohnie\nJunior\nKennth\nLaine\nLeandro\nMaria\nMarlo\nMauro\nMicah\nMichale\nMiller\nOllie\nParker\nRico\nRonaldo\nRonn\nRueben\nSalvadore\nStanford\nStanton\nStevie\nSydney\nTab\nThurman\nTobin\nVernell\nVidal\nVito\nWarner\nWilford\nAdan\nAlexis\nArlie\nArne\nAugustin\nAvery\nBenton\nBoris\nBrien\nCaleb\nCarol\nCelestino\nChauncey\nCipriano\nCristobal\nCristopher\nDarryle\nDaryle\nDee\nDenton\nDerick\nDonovan\nDorian\nDrake\nEldred\nElizabeth\nEloy\nEmmanuel\nErin\nEverette\nFaron\nFiliberto\nFransisco\nFreeman\nGeno\nGerhard\nGeronimo\nHarris\nHeriberto\nHiram\nHoracio\nJamey\nJere\nKendal\nKerwin\nKristopher\nKym\nLauren\nLeigh\nLemuel\nLiam\nLovell\nMarcelo\nMarkham\nMaury\nMichal\nMonroe\nNatividad\nNels\nNickey\nNino\nPatricio\nPrimo\nRaphael\nRichardo\nRobb\nRolland\nRollin\nRubin\nRudolfo\nSalomon\nSammie\nSharon\nShelby\nSherwood\nStevan\nSusan\nSven\nTerri\nTheadore\nTino\nTitus\nTobias\nToney\nTrenton\nUnknown\nValentin\nWendall\nWendel\nWest\nAlexandro\nAlfonzo\nAmado\nAntone\nArlan\nArmondo\nArtemio\nArtie\nBeau\nBenson\nBertram\nBlaise\nBlas\nBrenton\nBrice\nBurl\nCaesar\nCamilo\nCarroll\nCasper\nCeasar\nClancy\nCordell\nCorky\nDagoberto\nDarold\nDavey\nDebbie\nDebra\nDelmar\nDelmer\nDelton\nDelwin\nDemetrio\nDenise\nDennie\nDeric\nDerrel\nDewitt\nDouglass\nElden\nEliot\nElliot\nElvis\nErie\nFaustino\nFeliciano\nFord\nFransico\nFranz\nGabe\nGarold\nGarvin\nGaston\nGeary\nGentry\nGranville\nGregrey\nHayden\nHilario\nHollis\nHunter\nIsadore\nIvory\nJacinto\nJackson\nJacky\nJenaro\nJock\nKipp\nKonrad\nKreg\nLaird\nLaurie\nLorne\nLyndell\nMarciano\nMarius\nMarven\nMat\nMickel\nMontgomery\nNapoleon\nNarciso\nOdell\nOlen\nPhilippe\nRance\nRenaldo\nRhett\nRito\nRobbin\nRoddy\nRojelio\nRomeo\nScotty\nSheridan\nSilverio\nTaylor\nUlysses\nVerne\nVincente\nVint\nWeldon\nWhitney\nWilly\nWynn\nDavid\nMichael\nJohn\nRobert\nMark\nJames\nRichard\nSteven\nWilliam\nDaniel\nThomas\nKevin\nPaul\nKenneth\nJeffrey\nScott\nRonald\nBrian\nTimothy\nCharles\nGary\nDonald\nJoseph\nGregory\nAnthony\nMike\nChristopher\nEric\nSteve\nEdward\nCraig\nLarry\nDennis\nStephen\nFrank\nRandy\nDouglas\nGeorge\nJeff\nPatrick\nRaymond\nKeith\nJerry\nPeter\nJim\nJoe\nBruce\nMatthew\nChris\nDanny\nJose\nTim\nAndrew\nTony\nAlan\nRussell\nTerry\nGreg\nMartin\nRoger\nJon\nRick\nDale\nBill\nTom\nPhillip\nVictor\nRicky\nRandall\nArthur\nCarl\nLawrence\nJeffery\nBryan\nAlbert\nDan\nGlenn\nWayne\nJack\nTodd\nDon\nGerald\nRodney\nBradley\nJohnny\nVincent\nCurtis\nManuel\nRalph\nDave\nBob\nDarryl\nDean\nRoy\nPhilip\nHenry\nJay\nRon\nCarlos\nGilbert\nRuben\nBrad\nJonathan\nKurt\nLeonard\nKelly\nKirk\nBarry\nWalter\nMarc\nSamuel\nEddie\nFred\nErnest\nLance\nJimmy\nBilly\nDarrell\nStanley\nLouis\nMicheal\nRay\nMario\nJuan\nKen\nBrett\nHoward\nJoel\nRonnie\nMitchell\nDarren\nHarold\nAllen\nBobby\nLee\nJesse\nTroy\nEugene\nKarl\nTracy\nAlfred\nShawn\nClifford\nAlex\nRicardo\nJesus\nGlen\nNorman\nBrent\nDwayne\nGuy\nTommy\nFrancisco\nKent\nSean\nBenjamin\nDana\nRaul\nDuane\nTheodore\nStuart\nFrederick\nAntonio\nGordon\nMarvin\nRudy\nBret\nAaron\nLuis\nAndy\nDerek\nArmando\nRobin\nTed\nDoug\nNicholas\nGregg\nMarty\nPerry\nChuck\nMiguel\nNick\nWillie\nKerry\nHarry\nWarren\nDaryl\nRoberto\nAlexander\nMatt\nKenny\nWesley\nEarl\nEdwin\nAndre\nGene\nAdam\nSalvador\nJavier\nCalvin\nOscar\nRamon\nFernando\nAllan\nLloyd\nReginald\nVernon\nJerome\nMelvin\nJaime\nHector\nSam\nRene\nMarcus\nRickey\nAlvin\nByron\nLonnie\nNeil\nGabriel\nJimmie\nLeslie\nRoss\nArnold\nRandolph\nPat\nArturo\nBernard\nRandal\nAlfredo\nBen\nJorge\nLeroy\nNathan\nRoland\nGrant\nPedro\nSergio\nClarence\nEd\nPete\nCary\nNeal\nJason\nRex\nClayton\nMaurice\nKyle\nChristian\nBart\nCurt\nLeon\nAngel\nFrancis\nWade\nFloyd\nAlberto\nHerbert\nJoey\nFranklin\nCharlie\nErnie\nFredrick\nGeoffrey\nKim\nLeo\nAdrian\nEnrique\nErik\nLouie\nJess\nLewis\nPhil\nJamie\nRoderick\nRafael\nRory\nClay\nAlfonso\nBenny\nLyle\nLorenzo\nVince\nDerrick\nRod\nClinton\nDino\nGarry\nErnesto\nKelvin\nClyde\nDarin\nDwight\nLoren\nJohnnie\nBlake\nCameron\nFelix\nDarrel\nFreddie\nRob\nCasey\nLester\nRudolph\nJody\nJulian\nRocky\nStan\nTerrence\nLaurence\nLeland\nBradford\nDrew\nEduardo\nHugh\nMax\nTyrone\nEverett\nKris\nMarco\nMitch\nOrlando\nShane\nFrankie\nChester\nHerman\nJessie\nClark\nBert\nMilton\nCory\nDominic\nAbel\nJerald\nRodolfo\nEdmund\nMathew\nTerence\nClint\nDamon\nJackie\nMarshall\nClaude\nStewart\nTimmy\nWendell\nAlejandro\nNelson\nDonnie\nIan\nJulio\nScot\nEvan\nIvan\nLynn\nSammy\nWallace\nRuss\nCorey\nVance\nArt\nCecil\nClifton\nEdgar\nGarth\nGuadalupe\nRusty\nVirgil\nDane\nGerard\nGerardo\nFelipe\nGuillermo\nMarcos\nNoel\nRamiro\nRobbie\nTod\nAbraham\nForrest\nGustavo\nHarvey\nLionel\nPablo\nRodger\nSidney\nTerrance\nAl\nBryon\nMickey\nMyron\nTeddy\nRyan\nDirk\nMonte\nNathaniel\nCedric\nDewayne\nMonty\nTravis\nZachary\nIgnacio\nMiles\nPierre\nRandell\nSheldon\nBennie\nCesar\nDelbert\nGilberto\nJoaquin\nKendall\nNicolas\nStacey\nAngelo\nBlaine\nCarlton\nColin\nHal\nReynaldo\nBernie\nCliff\nConrad\nJoshua\nMichel\nMoses\nDarrin\nIra\nIsaac\nRich\nRogelio\nStephan\nToby\nJacob\nJeffry\nRickie\nSherman\nJustin\nMalcolm\nMorris\nOtis\nOwen\nRoyce\nBarton\nDenny\nVan\nWillard\nDexter\nDion\nOliver\nReuben\nShaun\nSpencer\nTrent\nWill\nAdolph\nDenis\nFreddy\nGerry\nHans\nHumberto\nLowell\nLuke\nMarion\nMorgan\nPreston\nShannon\nTy\nXavier\nAdolfo\nCornelius\nGino\nHugo\nRonny\nSeth\nTomas\nTyler\nAgustin\nAndres\nBryant\nCarey\nEddy\nEdmond\nKurtis\nRolando\nStacy\nBoyd\nBrandon\nChristophe\nEarnest\nElliott\nElmer\nEmilio\nIsmael\nLes\nMarlon\nTommie\nWes\nBarney\nChad\nDanial\nDarwin\nFidel\nKip\nKraig\nLane\nReggie\nAlonzo\nBlair\nBuddy\nDaren\nDoyle\nKirby\nSantiago\nSimon\nVaughn\nBenito\nBrendan\nBurton\nElias\nErich\nGarrett\nJan\nLamont\nLuther\nMitchel\nStevie\nTad\nTheron\nBritt\nEllis\nErick\nGregorio\nGus\nHarlan\nJosh\nLon\nMurray\nRussel\nSal\nWilfred\nDevin\nDomingo\nEfrain\nEldon\nFederico\nJeremy\nJulius\nRandel\nRobby\nSkip\nArnulfo\nBryce\nDonn\nDuke\nDuncan\nEfren\nFabian\nJean\nJonathon\nKelley\nKeven\nLindsay\nLupe\nSaul\nThaddeus\nVal\nVito\nAlvaro\nBennett\nBurt\nChip\nDallas\nHank\nJefferson\nJordan\nMarcelino\nReed\nRigoberto\nWard\nWilbert\nAlton\nArchie\nAugustine\nBud\nCruz\nDannie\nDario\nDarnell\nErvin\nGalen\nJacques\nKennith\nMikel\nRodrigo\nSalvatore\nSterling\nVicente\nAnton\nAubrey\nAurelio\nDel\nDonny\nErrol\nGenaro\nHarley\nJerrold\nKory\nLamar\nLars\nLayne\nLenard\nLenny\nLeopoldo\nButch\nChet\nDamian\nDewey\nDick\nDiego\nEthan\nGil\nGonzalo\nHubert\nJed\nLyndon\nMarcel\nReid\nTrinidad\nAshley\nDwain\nEdmundo\nFrederic\nGeoff\nGrady\nIrwin\nJake\nJerold\nJunior\nLonny\nMarlin\nMoises\nNickolas\nNoe\nNorbert\nOctavio\nRosendo\nSebastian\nVern\nWinston\nAlphonso\nAntoine\nAntony\nArmand\nAustin\nCourtney\nElliot\nEmil\nErwin\nHeriberto\nHorace\nHoracio\nIsidro\nJoesph\nKenton\nLen\nLeonel\nOtto\nRaymon\nRaymundo\nRey\nRolf\nSanford\nSantos\nSylvester\nTerrell\nTracey\nVic\nWilbur\nWillis\nZane\nAlec\nAmos\nBernardo\nBillie\nBrady\nBruno\nCal\nCris\nDarrick\nForest\nGarland\nGavin\nGrover\nIsrael\nLanny\nLoyd\nMauricio\nMel\nNicky\nNolan\nSandy\nScotty\nTaylor\nTino\nVon\nWally\nWayde\nDavis\nDesmond\nElbert\nEzequiel\nGraham\nHomer\nIrving\nJohnathan\nKermit\nKirt\nLauren\nLorin\nMack\nMerle\nMerritt\nMontgomery\nMyles\nOmar\nRocco\nShelby\nStefan\nStevan\nTobin\nTrevor\nUnknown\nAbelardo\nBrien\nCarroll\nCarter\nColeman\nCornell\nDamien\nDaron\nDell\nDrake\nEdwardo\nEli\nEmmett\nFlint\nGarret\nGraig\nJefferey\nKimberly\nLeif\nLennie\nLeonardo\nLino\nMichal\nNoah\nNorris\nRueben\nSonny\nStanford\nStanton\nSusan\nWarner\nAnselmo\nArne\nAvery\nBobbie\nBradly\nCleveland\nCody\nCoy\nCurtiss\nDerick\nDerwin\nDonnell\nEloy\nFritz\nGale\nGorge\nGreggory\nHarris\nKennth\nKirkland\nLorne\nLou\nLuciano\nMervin\nOrville\nRaoul\nRaphael\nRic\nRoman\nRoosevelt\nRoque\nRoscoe\nRudolfo\nRufus\nSherwood\nThor\nTimmothy\nWilson\nWoodrow\nWyatt\nArnie\nBarrett\nBlane\nBrant\nBrice\nBrock\nBrooks\nCaesar\nCarlo\nCipriano\nDalton\nDann\nDarell\nDeryl\nDwaine\nEliseo\nErin\nEsteban\nEzekiel\nFaustino\nFermin\nFlorentino\nFranz\nFredric\nHardy\nIrvin\nJeremiah\nKai\nLeigh\nLinda\nLindsey\nMaria\nMary\nModesto\nParis\nQuentin\nRegan\nRenaldo\nReynold\nRichardo\nRico\nRobb\nRock\nRosario\nSammie\nShon\nSid\nTab\nTobias\nTruman\nValentin\nAbe\nAlfonzo\nAlonso\nAlvino\nAmado\nAudie\nBarron\nBasil\nBenedict\nBentley\nBenton\nBertram\nBoris\nBrenda\nClemente\nCole\nDarby\nDarron\nDarryle\nDaryll\nDaryn\nDelfino\nDevon\nDuwayne\nEliot\nElvin\nEmanuel\nEmery\nEverardo\nFletcher\nFranco\nFreeman\nGearld\nHarrison\nHilario\nIvory\nJamey\nJared\nJayson\nJudson\nKennedy\nKit\nKristopher\nLeander\nLevi\nLincoln\nLucas\nMariano\nMauro\nMaury\nMerrill\nMilo\nNestor\nPorfirio\nRand\nRemi\nReyes\nRichie\nRito\nRosalio\nThad\nThurman\nTito\nUlysses\nUriel\nVerne\nVittorio\nWayland\nWerner\nWilly\nYancy\nAdalberto\nAdan\nAlden\nAllyn\nArnoldo\nAugust\nBrain\nCarmelo\nCharley\nChauncey\nCollin\nCornelio\nDante\nDarryll\nDeborah\nDebra\nDelvin\nDeon\nDerrell\nDieter\nDomenic\nDouglass\nDylan\nEarle\nEleazar\nEllery\nEmile\nEvert\nFaron\nGeary\nGlendon\nHerb\nHiram\nHollis\nJacky\nJens\nJonas\nJules\nJulie\nKeenan\nKerwin\nKevan\nLamarr\nLawrance\nLemuel\nLesley\nLlewellyn\nLucio\nMacario\nMagdaleno\nMalcom\nMarcelo\nMargarito\nMarkus\nMason\nMaximo\nMicah\nNed\nPascual\nReese\nRefugio\nReno\nRhett\nRian\nRiley\nRomeo\nSamual\nSolomon\nTrace\nTrenton\nWalt\nWiley\nWilton\nAbram\nAgapito\nAldo\nAlexandro\nAloysius\nAlvis\nAntone\nAra\nArlie\nArmondo\nAron\nAsa\nAugustin\nBaltazar\nBaron\nBartley\nBenigno\nBernardino\nBerry\nBlain\nBlaise\nBrion\nBrook\nBuck\nBurke\nCandido\nCarson\nCass\nCecilio\nCelso\nClarke\nClem\nClement\nCletus\nDanilo\nDarcy\nDarien\nDarius\nDarold\nDaryle\nDemetrius\nDenzil\nDominick\nDonal\nDonato\nDonovan\nDorian\nDusty\nDwane\nEduard\nElroy\nEmmanuel\nErasmo\nFelton\nFlavio\nFrederico\nGareth\nGarold\nGarvin\nGaston\nGaylen\nGeronimo\nGuido\nHerbie\nIke\nJackson\nJef\nJonny\nJosef\nKaren\nKendal\nKimball\nKristen\nKristian\nLamonte\nLandon\nLaurent\nLawerence\nLazaro\nLeighton\nLennis\nLex\nLisa\nLoy\nLucian\nLucky\nLyman\nManfred\nMarko\nMarlo\nMichelle\nMonroe\nNate\nNewton\nNorberto\nOrin\nOrrin\nPage\nPatric\nPatricio\nPaulino\nPercy\nPrimitivo\nRandi\nRandle\nRaynard\nReg\nRobbin\nRodrick\nRojelio\nRolland\nRoyal\nShelton\nStafford\nTammy\nTate\nTimmie\nToney\nTyron\nVinton\nWeldon\nWilford\nWillam\nWinfred\nWyman\nZoltan\nDavid\nMichael\nJohn\nRobert\nMark\nJames\nRichard\nSteven\nWilliam\nDaniel\nKevin\nThomas\nScott\nJeffrey\nPaul\nKenneth\nRonald\nBrian\nCharles\nGary\nTimothy\nGregory\nDonald\nJoseph\nMike\nAnthony\nChristopher\nEric\nSteve\nEdward\nDouglas\nCraig\nStephen\nFrank\nLarry\nJeff\nPatrick\nGeorge\nDennis\nRaymond\nRandy\nChris\nKeith\nPeter\nJerry\nBruce\nJim\nMatthew\nJoe\nTodd\nDanny\nTony\nAndrew\nRoger\nAlan\nTerry\nRussell\nMartin\nGreg\nTim\nJose\nTom\nJon\nJeffery\nPhillip\nLawrence\nDale\nVictor\nRick\nRicky\nDean\nRandall\nGerald\nArthur\nBill\nDan\nGlenn\nBryan\nTroy\nWayne\nCarl\nDarryl\nJack\nVincent\nManuel\nRodney\nCurtis\nAlbert\nRalph\nJay\nBradley\nDon\nRon\nRoy\nPhilip\nHenry\nJohnny\nDave\nJimmy\nMarc\nGilbert\nBarry\nBob\nRuben\nCarlos\nEddie\nMario\nKirk\nJesse\nJuan\nDarrell\nAllen\nWalter\nLeonard\nBrett\nLouis\nKen\nRay\nFred\nTracy\nKurt\nErnest\nSamuel\nJonathan\nJoel\nRonnie\nShawn\nMitchell\nBilly\nKelly\nMicheal\nBobby\nBrent\nLance\nBrad\nBenjamin\nSean\nNorman\nAlfred\nGlen\nHarold\nStanley\nLee\nJesus\nLuis\nDwayne\nEugene\nKarl\nRaul\nRicardo\nGuy\nDoug\nAaron\nAlex\nAntonio\nHoward\nDuane\nKent\nRudy\nGordon\nFrederick\nTed\nClifford\nDana\nDarren\nMarvin\nStuart\nDerek\nTheodore\nAdam\nEarl\nDaryl\nPerry\nMatt\nAndy\nAndre\nTommy\nFrancisco\nArmando\nAlexander\nFernando\nGabriel\nGregg\nMiguel\nRobin\nWesley\nWillie\nMelvin\nChuck\nJaime\nGene\nHector\nCalvin\nNick\nWarren\nHarry\nJavier\nMarcus\nReginald\nSalvador\nEdwin\nLloyd\nRene\nBret\nGrant\nJerome\nMarty\nOscar\nRoberto\nVernon\nPat\nNicholas\nRamon\nJoey\nKenny\nLeslie\nNeil\nDerrick\nJason\nRoss\nSam\nBernard\nKerry\nRandolph\nPete\nAllan\nBen\nClayton\nAlvin\nByron\nArturo\nChristian\nArnold\nClay\nLonnie\nErik\nRoland\nAdrian\nAngel\nClarence\nDwight\nRafael\nErnie\nJorge\nGeoffrey\nKyle\nLouie\nFranklin\nLeo\nLeroy\nNathan\nRex\nHerbert\nLeon\nPedro\nRoderick\nAlfredo\nRandal\nTyrone\nRickey\nMaurice\nAlfonso\nFloyd\nSergio\nRocky\nWade\nWendell\nNeal\nAlberto\nEd\nPhil\nClark\nCary\nKelvin\nKim\nLoren\nRod\nFreddie\nFredrick\nMarco\nClyde\nJess\nDarin\nDarrel\nDrew\nEnrique\nCharlie\nLewis\nRodolfo\nLester\nFrancis\nRory\nVince\nBradford\nEduardo\nFrankie\nRob\nErnesto\nDamon\nJimmie\nMax\nHugh\nJulian\nMarshall\nJamie\nTerrence\nBenny\nCurt\nGarry\nBart\nClinton\nEverett\nOrlando\nAbel\nHarvey\nCory\nEvan\nTod\nJessie\nLaurence\nDino\nFelipe\nGustavo\nLorenzo\nBlake\nDonnie\nGerard\nHerman\nCasey\nCorey\nVance\nMathew\nRobbie\nRyan\nAlejandro\nArt\nCameron\nFelix\nKris\nLyle\nMitch\nColin\nEdgar\nEdmund\nMilton\nMonty\nJohnnie\nJustin\nStewart\nClifton\nGuillermo\nBlaine\nIvan\nCecil\nStan\nRodger\nRudolph\nSammy\nLeland\nMonte\nShane\nTimmy\nTravis\nCesar\nMyron\nTerence\nJerald\nRusty\nScot\nSheldon\nGerardo\nJody\nJulio\nLynn\nShaun\nStephan\nTerrance\nVan\nDewayne\nVirgil\nBert\nCarlton\nJackie\nMarcos\nPablo\nGuadalupe\nNelson\nNoel\nXavier\nChester\nDarrin\nJoshua\nShannon\nSidney\nAl\nNathaniel\nAngelo\nJeffry\nBryon\nCedric\nDominic\nStacey\nDelbert\nDirk\nMiles\nRuss\nToby\nAlonzo\nForrest\nGerry\nSaul\nSpencer\nTeddy\nWard\nZachary\nAbraham\nClaude\nConrad\nElias\nGilberto\nHugo\nJacob\nLionel\nSimon\nTy\nWillard\nClint\nIgnacio\nEddy\nGarth\nIan\nIra\nKendall\nLane\nWallace\nCliff\nFreddy\nIsaac\nLuke\nPreston\nBernie\nDane\nRich\nDenny\nRamiro\nReynaldo\nBlair\nBuddy\nDonny\nElliott\nGus\nJeremy\nMalcolm\nMarion\nMorris\nBarney\nBrandon\nDaren\nHal\nHans\nKirby\nLars\nLonny\nMarlon\nMickey\nOtis\nRolando\nStacy\nChad\nDenis\nDion\nFabian\nKraig\nKurtis\nMichel\nMoses\nReuben\nRogelio\nArchie\nAugustine\nBarton\nBennie\nBoyd\nElmer\nErick\nGino\nHumberto\nJoaquin\nJonathon\nLeonardo\nPierre\nRonny\nSterling\nTrent\nAndres\nDoyle\nJosh\nLamont\nLuther\nOliver\nRobby\nSherman\nTomas\nBryant\nEmilio\nErich\nFidel\nGil\nGregorio\nLowell\nOwen\nRoman\nTyler\nAdolfo\nCarey\nDamian\nDick\nGeoff\nLon\nSalvatore\nSantiago\nBrendan\nDerick\nJordan\nLes\nReed\nWally\nAugust\nChet\nDante\nDarwin\nDevin\nEdmond\nEsteban\nGarland\nGrady\nJoesph\nKennith\nLenny\nNicolas\nReggie\nSal\nVern\nWes\nEfren\nRickie\nArmand\nBenito\nBennett\nCourtney\nCris\nCurtiss\nDel\nDexter\nGalen\nHarley\nKip\nLupe\nMerle\nMurray\nVal\nWillis\nAlton\nBryce\nBurton\nChristophe\nDewey\nDonn\nEdwardo\nFederico\nGarrett\nIsmael\nJake\nJulius\nMorgan\nOmar\nRandell\nReid\nRoosevelt\nSantos\nVicente\nAntony\nBernardo\nBrook\nDallas\nEliseo\nEthan\nGavin\nGonzalo\nJan\nJefferey\nMack\nMarcel\nMariano\nMitchel\nThaddeus\nVaughn\nWilfred\nWill\nAgustin\nAntoine\nCruz\nDanial\nDrake\nDuke\nEfrain\nHarlan\nIsrael\nJerold\nKeven\nMarcelino\nRaymundo\nSandy\nSeth\nTad\nThor\nTommie\nZane\nAurelio\nCornell\nEarnest\nEllis\nElvin\nEmmanuel\nHank\nJean\nLoyd\nLyndon\nRolf\nRussel\nTerrell\nTracey\nAlvaro\nArnulfo\nChip\nCornelius\nDuncan\nElbert\nLeif\nLen\nNed\nNickolas\nOctavio\nRodrigo\nRoyce\nRudolfo\nScotty\nToney\nVidal\nAbelardo\nBradly\nBrien\nDario\nEmil\nEmmett\nFrederic\nHubert\nIrvin\nJefferson\nJerrold\nKenton\nLamar\nMarlin\nMel\nNicky\nOtto\nRigoberto\nRodrick\nSebastian\nStefan\nWilbert\nAlec\nBrock\nBud\nCaesar\nCarlo\nCarter\nCleveland\nCole\nCoy\nDelmar\nDomingo\nElton\nGraham\nJacques\nKelley\nKristopher\nLincoln\nLindsay\nLorne\nMauricio\nQuentin\nRey\nRhett\nRico\nWilbur\nWilly\nWilson\nWinston\nAdolph\nAlden\nAlphonso\nAubrey\nAustin\nAvery\nBarrett\nBritt\nBrooks\nClaudio\nDarnell\nDemetrius\nDevon\nDonnell\nDouglass\nEldon\nElvis\nEverardo\nHollis\nJohnathan\nKirt\nLeopoldo\nNolan\nNorbert\nNorris\nRoyal\nStanton\nStevie\nSusan\nSylvester\nThurman\nTory\nValentin\nVito\nWoodrow\nArne\nBobbie\nBruno\nButch\nClement\nClemente\nDavis\nDeric\nDeron\nDwain\nEli\nElliot\nEmery\nFlorencio\nGarret\nGeronimo\nIrving\nJackson\nJed\nKerwin\nKevan\nKory\nLayne\nMarkus\nMaury\nMoises\nMyles\nOrville\nRandel\nRaymie\nRefugio\nReno\nRic\nRichie\nRosario\nSid\nSkip\nTrinidad\nUlysses\nAnton\nAntone\nBaron\nBerry\nBillie\nBrady\nBrice\nCody\nDarius\nDerwin\nDiego\nDudley\nDwaine\nEdmundo\nEfrem\nErvin\nErwin\nFausto\nGreggory\nHeriberto\nHomer\nJasper\nJudson\nKermit\nLawrance\nLeandro\nLeigh\nLenard\nLew\nLinda\nMason\nMauro\nMontgomery\nNoah\nOllie\nParis\nPercy\nRaphael\nRaymon\nReynold\nRueben\nSonny\nTaylor\nThad\nTrenton\nTrevor\nUnknown\nAlonso\nAndreas\nAnthoney\nApolinar\nAri\nArmondo\nBasil\nBertram\nBlane\nBrant\nBurt\nCam\nCarroll\nCarson\nDarryle\nDell\nDesmond\nDonovan\nDoran\nDustin\nEmile\nErin\nErrol\nEugenio\nFermin\nFredric\nGabe\nGail\nGale\nGenaro\nGrover\nHiram\nIsaias\nIsidro\nJacque\nJared\nJennifer\nJunior\nKit\nKorey\nLeonel\nLindsey\nLisa\nLou\nLuciano\nMargarito\nMaria\nMary\nMichale\nMichelle\nNigel\nNoe\nOdell\nPascual\nRand\nRaoul\nRegan\nReymundo\nRowland\nSanford\nShon\nSydney\nTimmothy\nVic\nVon\nAmos\nAnastacio\nArlen\nBenjie\nBernabe\nBoyce\nBreck\nBrion\nBurl\nCaleb\nCarmelo\nCharley\nChauncey\nDarell\nDarrick\nDarron\nDarryll\nDaryle\nDaryll\nDeborah\nDeon\nDominick\nDonal\nDusty\nEmiliano\nErasmo\nEzequiel\nFaron\nFarrell\nFaustino\nFeliciano\nFritz\nHarrison\nHerschel\nHorace\nHunter\nJacky\nJosef\nJules\nKalvin\nKennedy\nKieran\nKimball\nKonrad\nLaird\nLauren\nLennie\nLevi\nLoran\nLorin\nManny\nNestor\nParrish\nPatricia\nPorfirio\nQuintin\nRayford\nReyes\nRiley\nRobb\nRocco\nRock\nRojelio\nRolland\nRoque\nSammie\nSerge\nShelby\nSolomon\nStevan\nTheron\nWalt\nWarner\nWeston\nWhitney\nYsidro\nAdalberto\nAldo\nAmador\nArlan\nAron\nArtie\nAudie\nAugusto\nBeau\nBenedict\nBrenda\nBuck\nCal\nCarleton\nCipriano\nCleo\nColby\nCollin\nConcepcion\nCordell\nCorwin\nCynthia\nDarcy\nDavey\nDavin\nDenver\nDerryl\nDeryl\nDieter\nDimitri\nDondi\nDonell\nDru\nDwane\nDwyane\nEdgardo\nEleazar\nElijah\nEloy\nEmanuel\nEvaristo\nFlint\nForest\nFransisco\nGaylord\nGerman\nGerrit\nGlynn\nGrey\nHardy\nJere\nJohnie\nKaren\nKenney\nKennth\nLanny\nLauro\nLeobardo\nLibrado\nLino\nLogan\nLori\nLucas\nLucky\nMerlin\nMerrill\nMervin\nMicky\nMilo\nOren\nPaulino\nPrimo\nQuincy\nRaynard\nRenard\nRitchie\nRoddy\nRonney\nRosendo\nRufus\nSalvadore\nSharon\nStanford\nTalmadge\nTeresa\nTheodor\nValentino\nWeldon\nWerner\nWoody\nAlexis\nAli\nAllison\nAmado\nAnselmo\nArno\nBentley\nBernhard\nBooker\nBrenton\nBriant\nBrooke\nBryn\nCandelario\nCarmen\nCarol\nChistopher\nChristoper\nClarke\nConnie\nConrado\nConway\nCort\nCristobal\nCyril\nCyrus\nDain\nDamien\nDaneil\nDarold\nDavie\nDayle\nDebra\nDee\nDelano\nDelvin\nDelwin\nDiana\nDonavon\nDorian\nDorsey\nDuwayne\nDylan\nEdson\nElizabeth\nElwood\nEmerson\nErnst\nFlorentino\nFoster\nGarrick\nGearld\nGerold\nGiles\nGiovanni\nGorge\nHerminio\nHosea\nIsabel\nJacinto\nJef\nJeffory\nJeronimo\nJodie\nJuvenal\nKary\nKathy\nKristian\nLadd\nLaurance\nLazaro\nLeighton\nLiam\nLinden\nLoy\nLucio\nLucius\nMacario\nManley\nMarcellus\nMaximino\nMaxwell\nMaynard\nMicah\nMichal\nNash\nNiles\nNino\nNorm\nOral\nOswaldo\nPaolo\nParker\nPerrin\nQuinn\nRance\nRandi\nReinaldo\nRenaldo\nRito\nRobbin\nRoderic\nRollin\nRudolf\nSandor\nSandra\nSilvano\nSilvio\nSven\nTab\nTedd\nTeodoro\nTerri\nThom\nTimmie\nTino\nTitus\nTorrey\nWilfredo\nWyatt\nYvonne\nDavid\nMichael\nJohn\nRobert\nJames\nMark\nRichard\nSteven\nWilliam\nScott\nJeffrey\nDaniel\nKevin\nThomas\nPaul\nKenneth\nBrian\nRonald\nGregory\nJoseph\nGary\nCharles\nAnthony\nTimothy\nChristopher\nEric\nDonald\nMike\nEdward\nSteve\nDouglas\nStephen\nJeff\nFrank\nTodd\nCraig\nPatrick\nLarry\nGeorge\nRaymond\nRandy\nKeith\nDennis\nPeter\nChris\nMatthew\nAndrew\nJerry\nJoe\nBruce\nDanny\nJim\nJose\nGreg\nJon\nMartin\nTony\nTerry\nRoger\nAlan\nVincent\nJeffery\nGlenn\nPhillip\nRussell\nDale\nTim\nTom\nVictor\nTroy\nLawrence\nRicky\nRick\nBill\nDean\nArthur\nCarl\nWayne\nGerald\nDarryl\nBryan\nJack\nRodney\nJay\nJohnny\nRalph\nRandall\nCurtis\nDan\nAlbert\nHenry\nManuel\nBradley\nPhilip\nCarlos\nRon\nRuben\nMarc\nWalter\nRoy\nJonathan\nGilbert\nDave\nDon\nBarry\nJimmy\nAllen\nBrett\nKurt\nShawn\nJuan\nLance\nKirk\nBob\nSamuel\nBobby\nBilly\nRay\nSean\nMario\nBrent\nEddie\nDarrell\nGlen\nHarold\nKen\nJesse\nLeonard\nFred\nMicheal\nLouis\nMitchell\nRonnie\nKelly\nAdam\nErnest\nBrad\nLee\nJoel\nLuis\nAntonio\nEugene\nStanley\nTracy\nAaron\nDarren\nDwayne\nDerek\nKent\nHoward\nAlfred\nBenjamin\nGuy\nDoug\nJesus\nFrancisco\nNorman\nFrederick\nKarl\nTommy\nAlex\nTed\nRaul\nDana\nRicardo\nTheodore\nClifford\nAndy\nMarvin\nDuane\nRudy\nMiguel\nStuart\nArmando\nGabriel\nGregg\nRoberto\nHector\nNicholas\nGordon\nMatt\nWillie\nFernando\nJavier\nWesley\nDaryl\nJaime\nEdwin\nPerry\nAlexander\nEarl\nWarren\nAndre\nNick\nJason\nRobin\nRene\nRamon\nMarty\nOscar\nRoss\nLloyd\nArturo\nVernon\nChuck\nLeslie\nMarcus\nJerome\nKenny\nBret\nSalvador\nAllan\nReginald\nLonnie\nHarry\nMelvin\nSam\nByron\nLeo\nDerrick\nGene\nKerry\nArnold\nRandolph\nBen\nGeoffrey\nGrant\nNathan\nPete\nAdrian\nAlvin\nAngel\nCalvin\nPedro\nJoey\nRafael\nChristian\nNeil\nMarco\nKyle\nRoland\nMaurice\nPat\nDarin\nErik\nFloyd\nJorge\nVince\nCary\nCameron\nHerbert\nLeroy\nCasey\nClayton\nEduardo\nRickey\nDwight\nRex\nWade\nClarence\nErnesto\nLeon\nLoren\nSergio\nClark\nCurt\nNeal\nPhil\nFrancis\nAlberto\nBernard\nCory\nEd\nRod\nRoderick\nAlfredo\nFranklin\nLewis\nOrlando\nCharlie\nRandal\nTyrone\nEnrique\nRory\nDamon\nDino\nRob\nBenny\nClay\nJulian\nAlfonso\nClyde\nEvan\nJamie\nKelvin\nLester\nTod\nClinton\nErnie\nCorey\nMarshall\nEverett\nBart\nBlake\nHerman\nFelipe\nJimmie\nRocky\nTerrence\nWendell\nFreddie\nGuillermo\nGustavo\nJess\nJohnnie\nAlejandro\nFredrick\nLeland\nMitch\nShannon\nDonnie\nIan\nJessie\nKim\nBradford\nClaude\nLorenzo\nRodolfo\nStewart\nAbel\nDarrel\nHarvey\nHugh\nRuss\nScot\nShane\nTimmy\nAngelo\nLaurence\nMathew\nMax\nMiles\nTy\nEdgar\nFelix\nGarry\nLouie\nRudolph\nSidney\nDominic\nMarcos\nDrew\nGerardo\nJackie\nPablo\nTerence\nCedric\nCesar\nGerard\nIvan\nMonte\nNelson\nRyan\nEdmund\nJulio\nKris\nTerrance\nWallace\nDewayne\nNathaniel\nNoel\nStephan\nVirgil\nDelbert\nLyle\nMilton\nRobbie\nVance\nJacob\nMonty\nClifton\nFrankie\nHugo\nJustin\nStan\nZachary\nDarrin\nCecil\nGuadalupe\nTravis\nChad\nChester\nDenny\nDirk\nSammy\nBert\nIgnacio\nLynn\nMalcolm\nRodger\nGilberto\nRich\nVan\nBuddy\nForrest\nGarrett\nSheldon\nAl\nJerald\nMyron\nRamiro\nRusty\nAndres\nArt\nHans\nJoshua\nRobby\nRogelio\nConrad\nShaun\nColin\nDenis\nRoman\nBrandon\nDane\nIsmael\nStacey\nToby\nTyler\nAlonzo\nGerry\nJoaquin\nJody\nMickey\nBlaine\nErick\nFreddy\nLionel\nReynaldo\nSaul\nXavier\nCarlton\nErich\nIsaac\nKennith\nMarlon\nTrent\nBryant\nDevin\nDonny\nJonathon\nLane\nLuke\nMoses\nWillard\nCarey\nStacy\nTomas\nEddy\nGarth\nKendall\nNicolas\nRickie\nRonny\nSimon\nSpencer\nClint\nDion\nElias\nIra\nJeffry\nLamont\nMichel\nMorris\nReuben\nSherman\nWard\nAbraham\nBennett\nBlair\nBryon\nCliff\nDaren\nEarnest\nEdmond\nFidel\nGino\nJean\nMorgan\nBarton\nBernie\nBoyd\nDoyle\nJeremy\nLuther\nSantiago\nTeddy\nBurton\nDexter\nElmer\nGavin\nKurtis\nPreston\nBrendan\nDanial\nEfrain\nEmilio\nLeonardo\nLorne\nOwen\nRandell\nRigoberto\nVaughn\nAlton\nEdwardo\nHumberto\nJordan\nKraig\nMauricio\nOliver\nSal\nSterling\nVicente\nBarney\nGil\nGrady\nJan\nKip\nKirby\nLes\nNorris\nPierre\nElliott\nEthan\nJoesph\nKory\nLenny\nLowell\nLupe\nReggie\nRodrigo\nSalvatore\nSantos\nSebastian\nSeth\nWes\nArchie\nBryce\nDarnell\nErwin\nGarland\nHal\nKirt\nRaymundo\nTad\nWilbur\nWill\nWillis\nWinston\nAlphonso\nBennie\nDallas\nDarwin\nMurray\nOtis\nRolando\nRoyce\nStefan\nAlvaro\nAvery\nCruz\nDamian\nDomingo\nFabian\nGalen\nHank\nJerold\nMarcel\nMerle\nMoises\nOctavio\nRichie\nTrevor\nWally\nWilbert\nBrady\nBrook\nChristophe\nDel\nFederico\nHarlan\nIrvin\nJefferson\nKenton\nLars\nLonny\nMarlin\nMel\nNoah\nSonny\nAdolph\nAugustine\nAustin\nCarter\nCornelius\nCornell\nDerick\nDewey\nEldon\nEliseo\nEmmett\nEsteban\nGus\nJake\nJosh\nLamar\nMitchel\nNicky\nRosendo\nRussel\nSandy\nStevie\nSylvester\nTerrell\nTheron\nZane\nAdolfo\nBrooks\nButch\nChip\nCourtney\nDeon\nDesmond\nDonovan\nDuke\nEmanuel\nErvin\nFrederic\nGreggory\nGregorio\nHarley\nIsrael\nJerrold\nJohnathan\nKelley\nLincoln\nLorin\nNed\nReed\nReid\nReyes\nRhett\nRueben\nTrinidad\nVon\nWilson\nArmand\nAubrey\nBenito\nClaudio\nDonn\nDuncan\nEfren\nEmil\nErin\nHomer\nJulius\nKeven\nLeif\nMary\nNoe\nNolan\nParrish\nRobb\nRodrick\nVal\nAgustin\nAlec\nBrock\nBurt\nCarlo\nCris\nDante\nDick\nDiego\nDouglass\nDudley\nGeoff\nGonzalo\nHerb\nHubert\nJefferey\nKristopher\nLen\nLenard\nLeopoldo\nLoyd\nNickolas\nRenaldo\nTommie\nWarner\nWilfred\nAldo\nAnton\nAurelio\nBrant\nCharley\nChet\nCole\nDonnell\nDwain\nElliot\nEllis\nElton\nFredric\nGraham\nHarrison\nJacques\nJed\nLanny\nLayne\nLindsay\nMack\nMarion\nMaury\nRandel\nRonn\nScotty\nShon\nStanford\nTaylor\nVic\nWoodrow\nAdan\nAmado\nArnulfo\nAugust\nBenedict\nBernardo\nBillie\nBobbie\nBruno\nCody\nCoy\nCurtiss\nDarrick\nDell\nDemetrius\nDeron\nDrake\nEmmanuel\nErrol\nFlint\nGenaro\nJamey\nKimberly\nLisa\nLon\nMontgomery\nOrville\nReno\nRey\nRoosevelt\nSandra\nSanford\nTimmothy\nTracey\nVern\nWayland\nAbelardo\nAdalberto\nAndreas\nAntony\nBarrett\nBerry\nDonal\nDusty\nElbert\nElvis\nFritz\nHoyt\nJosef\nJunior\nKeenan\nKieth\nLeonel\nLindsey\nMarcelino\nMerrill\nMicah\nMichale\nMilo\nNestor\nOtto\nParker\nPercy\nRand\nRaoul\nRaynard\nRenee\nRock\nRoscoe\nRudolfo\nRufus\nShelby\nThad\nVito\nAntoine\nBradly\nBreck\nBritt\nCal\nCort\nCynthia\nDaryle\nDemetrio\nDustin\nDwaine\nEdmundo\nEloy\nEmery\nEpifanio\nEugenio\nGarret\nGerhard\nGiovanni\nJared\nJayme\nJere\nLeighton\nLinda\nLucas\nMariano\nMikel\nModesto\nMyles\nOmar\nPernell\nQuintin\nReese\nRefugio\nRoyal\nThaddeus\nThor\nUlysses\nValentine\nValentino\nWaymon\nWhitney\nWiley\nWilly\nWinfred\nAhmad\nAlfonzo\nAlonso\nAric\nAron\nAshley\nBarron\nBasil\nBenton\nBertram\nBlaise\nBlane\nChristen\nCleo\nColeman\nCornel\nCyrus\nDalton\nDarcy\nDarian\nDario\nDarius\nDarold\nDavis\nDee\nDelton\nDeric\nDerrell\nDerwin\nDevon\nDiana\nDwane\nEdison\nEmile\nFausto\nFermin\nForest\nFoster\nFranz\nFreeman\nGabe\nGarrick\nGeary\nGlendon\nHollis\nIrving\nJonny\nLandon\nLeigh\nLuciano\nMaria\nMaximo\nMerlin\nMervin\nNorbert\nRance\nRojelio\nRollin\nRosalio\nShelton\nStanton\nThane\nTrenton\nTyson\nWalt\nWeldon\nWillian\nAlden\nAllyn\nAlva\nAmador\nAmbrose\nAmos\nAnderson\nAndrea\nAnthoney\nArron\nArtie\nAvelino\nBaudelio\nBjorn\nBlain\nBrennan\nBrenton\nBrice\nCaesar\nCarson\nCelso\nClemente\nCorby\nDaneil\nDanilo\nDann\nDannie\nDanniel\nDarron\nDarryll\nDarvin\nDeborah\nDennie\nDerrel\nDieter\nDominick\nEarle\nEfrem\nElgin\nEli\nEverardo\nEzequiel\nFaustino\nFlorentino\nFranklyn\nGarold\nGerold\nGlyn\nGregor\nHeriberto\nHerschel\nHilario\nHorace\nIsaias\nIsidro\nJarvis\nJeffory\nJeremiah\nJude\nJules\nKasey\nKendrick\nKenney\nKermit\nKerwin\nKonrad\nLawrance\nLemuel\nLevi\nLonnell\nLuiz\nMacario\nMarcelo\nMarkus\nMason\nMauro\nNels\nNorm\nOrrin\nPascual\nQuentin\nRic\nRicki\nRico\nRiley\nRobbin\nRolf\nRomney\nRoque\nRosario\nSamson\nSamual\nSharon\nShayne\nSherry\nSilvestre\nSkip\nSusan\nSven\nTheo\nThurman\nTino\nTito\nTobias\nTobin\nTristan\nTye\nVincente\nVinson\nWyatt\nAlexandro\nAnastacio\nAndra\nArmin\nArnie\nAsa\nAscencion\nAugustin\nBaltazar\nBaron\nBasilio\nBeau\nBentley\nBrandt\nBroderick\nBryn\nBuck\nBud\nCarmen\nCarnell\nCarroll\nChance\nChauncey\nCleveland\nConrado\nCrawford\nDamien\nDaron\nDarryle\nDavy\nDelfino\nDelmar\nDenton\nDenver\nDerryl\nDeryl\nDionicio\nDodd\nDomenic\nDonell\nDonna\nEdgardo\nElden\nElijah\nElvin\nEmory\nEnoch\nEnrico\nErasmo\nFarrell\nFerdinand\nFletcher\nFrederico\nGaspar\nGaylord\nGeronimo\nGrover\nHardy\nHayward\nHershel\nHiram\nHomero\nIvory\nJeb\nJefrey\nJohnathon\nJohnie\nJudd\nJuventino\nKalvin\nKaren\nKeary\nKennth\nKevan\nLafayette\nLauren\nLaurie\nLauro\nLavell\nLeandro\nLex\nLogan\nLucio\nMalcom\nMarcial\nMarshal\nMaxwell\nMickel\nMilan\nMiquel\nMorton\nNate\nNiles\nNorberto\nOlin\nOnesimo\nOrin\nOsvaldo\nPatricia\nPepe\nPrentice\nPrice\nQuinn\nRaleigh\nRandolf\nRaymon\nRian\nRito\nRocco\nRoderic\nRomulo\nRowland\nRubin\nRufino\nSammie\nSerjio\nSid\nSiegfried\nSilverio\nSolomon\nTab\nTedd\nTerrill\nThom\nTimmie\nTory\nTrace\nTruman\nTyron\nValentin\nVictoria\nWayde\nWilfredo\nWoody\nMichael\nDavid\nJohn\nRobert\nJames\nMark\nRichard\nWilliam\nSteven\nScott\nKevin\nDaniel\nJeffrey\nThomas\nPaul\nBrian\nKenneth\nRonald\nGregory\nJoseph\nCharles\nAnthony\nTimothy\nGary\nChristopher\nEric\nDonald\nMike\nEdward\nTodd\nSteve\nStephen\nDouglas\nPatrick\nFrank\nCraig\nGeorge\nLarry\nKeith\nRaymond\nJeff\nMatthew\nPeter\nAndrew\nRandy\nDennis\nJerry\nMartin\nChris\nJose\nJoe\nDanny\nVincent\nTony\nBruce\nTerry\nGreg\nJim\nJon\nAlan\nRussell\nRoger\nVictor\nJeffery\nPhillip\nTroy\nGlenn\nTom\nRick\nTim\nLawrence\nBryan\nDean\nArthur\nCarl\nManuel\nDale\nGerald\nRandall\nCurtis\nBill\nRicky\nAlbert\nDarryl\nCarlos\nShawn\nBradley\nJack\nJohnny\nWayne\nJonathan\nRodney\nPhilip\nRalph\nDan\nJay\nSean\nHenry\nBrett\nGilbert\nRoy\nMario\nDon\nMarc\nWalter\nJuan\nJimmy\nRon\nAllen\nEddie\nRuben\nBrent\nBarry\nLance\nKurt\nSamuel\nAdam\nDave\nKen\nAaron\nLouis\nKirk\nKelly\nRay\nDarrell\nJesse\nBilly\nBobby\nMicheal\nRicardo\nBob\nErnest\nFred\nJoel\nMitchell\nLeonard\nDarren\nJesus\nDerek\nAntonio\nTracy\nLee\nBenjamin\nLuis\nRaul\nRonnie\nAlex\nHarold\nStanley\nClifford\nEugene\nGlen\nDwayne\nKarl\nBrad\nFrederick\nTheodore\nTommy\nAlfred\nHoward\nDuane\nGuy\nNorman\nRudy\nAndy\nHector\nKent\nWesley\nGordon\nFrancisco\nMarvin\nJaime\nJason\nDana\nMiguel\nTed\nAlexander\nRoberto\nArmando\nDoug\nGabriel\nStuart\nMarcus\nRene\nAndre\nFernando\nRamon\nWarren\nHarry\nMatt\nJorge\nNicholas\nOscar\nJavier\nMelvin\nGregg\nJerome\nDerrick\nGene\nNathan\nNick\nLloyd\nArturo\nBret\nDamon\nDaryl\nEarl\nEdwin\nMarty\nRoss\nRobin\nSalvador\nWillie\nErik\nPerry\nDarin\nKenny\nReginald\nLonnie\nLeroy\nArnold\nKyle\nMarco\nGrant\nVernon\nByron\nAllan\nJoey\nMaurice\nSam\nAlfredo\nSergio\nKerry\nChristian\nLeo\nGeoffrey\nPat\nAdrian\nChuck\nClarence\nEnrique\nLeslie\nPedro\nPete\nRafael\nWade\nBen\nLeon\nAngel\nHerbert\nRandolph\nErnesto\nNeil\nTyrone\nRoland\nVince\nShane\nBernard\nCalvin\nErnie\nLoren\nRandal\nCary\nEduardo\nAlfonso\nRob\nEd\nRex\nOrlando\nClayton\nFranklin\nFrancis\nJamie\nRyan\nJessie\nJimmie\nNeal\nBlake\nCameron\nDwight\nKelvin\nAlvin\nDominic\nLorenzo\nDino\nFloyd\nGerardo\nJess\nLouie\nRickey\nRoderick\nRod\nAbel\nAlberto\nAlejandro\nCurt\nLewis\nClark\nClinton\nGustavo\nTerence\nCorey\nShaun\nTerrence\nRobbie\nBenny\nGarry\nMathew\nTimmy\nCharlie\nKim\nRudolph\nTod\nCasey\nJulian\nPhil\nLester\nFredrick\nHarvey\nMax\nBart\nTravis\nFreddie\nLyle\nBradford\nChad\nClay\nFelix\nIvan\nMarcos\nFrankie\nNathaniel\nShannon\nWendell\nMonte\nRodolfo\nTerrance\nGuillermo\nIan\nMarshall\nRodger\nClyde\nJulio\nLaurence\nLeland\nPablo\nVance\nHerman\nKris\nRory\nDonnie\nEdmund\nScot\nGarrett\nGerard\nAngelo\nDirk\nEdgar\nEvan\nEverett\nJohnnie\nCedric\nFelipe\nTy\nCory\nDarrel\nJoshua\nJustin\nRich\nRuss\nTrent\nClaude\nClifton\nColin\nMyron\nRamiro\nStephan\nBrandon\nHugh\nJackie\nRocky\nCesar\nForrest\nJerald\nDarrin\nDrew\nMiles\nNelson\nReynaldo\nCarlton\nMilton\nMitch\nReuben\nRobby\nArt\nGilberto\nHans\nJody\nRusty\nSammy\nStewart\nCecil\nDion\nGuadalupe\nKendall\nIsaac\nSheldon\nTyler\nBert\nDewayne\nSpencer\nStan\nWard\nZachary\nBryant\nClint\nDevin\nHugo\nJacob\nJoaquin\nSherman\nStacey\nChester\nGarth\nTomas\nBlair\nDenny\nIgnacio\nLionel\nMarlon\nVirgil\nDaren\nMickey\nPreston\nSaul\nTeddy\nToby\nAndres\nCliff\nErick\nJeffry\nMonty\nMorgan\nSidney\nBlaine\nConrad\nDelbert\nLynn\nWallace\nElias\nKurtis\nNicolas\nNoel\nStacy\nBarton\nBuddy\nRolando\nVan\nAlonzo\nBoyd\nBrendan\nBryon\nDane\nErich\nFreddy\nLuke\nMoises\nDonny\nEdmond\nSeth\nHal\nRogelio\nXavier\nAbraham\nAdolfo\nAl\nBenito\nBennie\nElliott\nGerry\nMitchel\nRandell\nAgustin\nArchie\nAugustine\nEddy\nEmilio\nGus\nKip\nDallas\nDoyle\nElmer\nGonzalo\nLamont\nLenny\nLowell\nMichel\nWill\nBernie\nDarwin\nIra\nMalcolm\nMorris\nPierre\nRaymundo\nSimon\nAlton\nDarnell\nDomingo\nEarnest\nIsmael\nJulius\nLane\nLonny\nRoyce\nSantiago\nWes\nBennett\nFidel\nHank\nJerold\nKeven\nKristopher\nOmar\nRigoberto\nRodrigo\nRoman\nStefan\nBryce\nDanial\nDuke\nEfrain\nEfren\nEmanuel\nGarland\nJake\nJean\nLeonardo\nLuther\nRonny\nSterling\nWillis\nAntoine\nAnton\nCruz\nEldon\nErvin\nGil\nHubert\nHumberto\nJeremy\nJerrold\nJoesph\nKennith\nKenton\nKirt\nOliver\nOwen\nReggie\nReid\nStoney\nWillard\nZane\nCarey\nDenis\nDonnell\nFederico\nGarret\nGino\nIsrael\nJan\nJordan\nLes\nMarion\nMurray\nNicky\nNorbert\nRichie\nSantos\nTad\nVal\nWinston\nAlvaro\nAustin\nGavin\nIsidro\nJefferey\nJefferson\nKory\nLorne\nOtis\nRickie\nRolf\nSal\nTommie\nWally\nBarney\nBrant\nBurton\nChet\nChip\nDamian\nGraham\nHomer\nJosh\nKirby\nLars\nMarcel\nMoses\nVaughn\nVicente\nAntony\nArmand\nAurelio\nAvery\nBernardo\nBrady\nBrook\nChristophe\nDante\nDario\nDerick\nEdwardo\nElbert\nFrederic\nGrady\nHorace\nLon\nLupe\nMariano\nQuintin\nReyes\nRussel\nWilbert\nAlphonso\nBrock\nBurt\nCarlo\nDick\nDuncan\nEliseo\nEllis\nEmmett\nErwin\nGreggory\nJonathon\nKraig\nLincoln\nMerle\nNed\nOctavio\nRobb\nScotty\nTrevor\nCody\nDarius\nDel\nEmil\nFabian\nGalen\nHarlan\nJacques\nLamar\nMauricio\nOtto\nSalvatore\nVern\nAldo\nBasil\nBrooks\nButch\nCharley\nDarrick\nDwain\nEthan\nFaustino\nGregorio\nJohnathan\nJohnie\nLuciano\nMarcelino\nNickolas\nNolan\nRey\nRoosevelt\nRueben\nTrinidad\nWilbur\nWilfred\nAron\nBrandt\nBruno\nCal\nCleveland\nDarryle\nDeon\nDexter\nDonn\nEdmundo\nElliot\nEmery\nErin\nFritz\nGiovanni\nHiram\nKelley\nLorin\nNoe\nRaynard\nTerrell\nTracey\nVic\nAbelardo\nAlden\nAlec\nArne\nAubrey\nAugust\nBillie\nCarroll\nCarter\nClemente\nCourtney\nDannie\nDemetrio\nDesmond\nDewey\nDouglass\nDwane\nEmmanuel\nEsteban\nFlorencio\nGerman\nKeenan\nKennedy\nKristian\nLeif\nLucio\nMaria\nMarlin\nMaury\nMervin\nSolomon\nStevie\nTheron\nAndreas\nArnulfo\nBaron\nBlane\nBrien\nClaudio\nCornell\nDaron\nDavis\nDelmar\nDemetrius\nDonovan\nGenaro\nIrvin\nLaura\nLauren\nLiam\nLindsey\nLino\nMary\nMaynard\nNorris\nParis\nQuinn\nRand\nReed\nRoderic\nRodrick\nShelton\nSkip\nSonny\nTerrill\nThor\nTyson\nWilson\nWoody\nAdan\nBasilio\nBrice\nCaesar\nDalton\nDamien\nDerwin\nDiego\nDustin\nEloy\nEzequiel\nForest\nHeriberto\nHerschel\nHoracio\nIrwin\nKai\nKendal\nKermit\nLennie\nLeonel\nLevi\nLisa\nLoyd\nMack\nMargarito\nMason\nMauro\nMicah\nMilo\nNoah\nPieter\nPorfirio\nRance\nRefugio\nRegan\nRenee\nRoque\nRosendo\nRufus\nSamual\nSandra\nSandy\nSebastian\nSydney\nTal\nThaddeus\nTimmie\nTobias\nTrenton\nWeston\nAli\nArnoldo\nArron\nBarrett\nBrain\nBritt\nChance\nCole\nCorbin\nCornelius\nCris\nCurtiss\nDarron\nDeborah\nDelano\nDelfino\nDevon\nDominick\nDonell\nEarle\nEli\nFelton\nFlavio\nGeoff\nGuido\nKaren\nKit\nKonrad\nLanny\nLayne\nLenard\nLeopoldo\nLesley\nLyndon\nMarkus\nMel\nMontgomery\nOren\nOrville\nQuentin\nRaphael\nRhett\nRic\nRolland\nShelby\nStanford\nSusan\nSylvester\nTaylor\nThurman\nTimmothy\nTrace\nVerne\nVincente\nVon\nWinfred\nAlexis\nAnastacio\nAntone\nAugie\nBenton\nBobbie\nBradly\nBrion\nChristoper\nCollin\nCoy\nCyrus\nDarel\nDarell\nDee\nDieter\nDorian\nDrake\nDylan\nElvin\nEmory\nEnrico\nErrol\nEstevan\nFaron\nFranz\nGabe\nGabino\nGarrick\nGearld\nGorge\nGrover\nHenri\nIsaias\nJackson\nJaimie\nJeremiah\nJonny\nJude\nJudson\nJulie\nKevan\nKieth\nLandon\nLeigh\nLinda\nLindsay\nMac\nManny\nMarcello\nMaxwell\nMichele\nMichelle\nModesto\nMyles\nNewton\nOllie\nPatricia\nPhilippe\nRamsey\nRaoul\nReno\nRico\nRocco\nRock\nSalomon\nSanford\nShayne\nShon\nTab\nThad\nTobin\nTyron\nWalker\nWalt\nWarner\nWhitney\nAdolph\nAlain\nAmos\nApolinar\nAram\nAshley\nAttila\nBaltazar\nBartholomew\nBernabe\nBrooke\nBud\nBurke\nCandido\nCarnell\nCarson\nCipriano\nClement\nConrado\nCordell\nCynthia\nCyril\nDanniel\nDarryll\nDavey\nDell\nDenton\nDerik\nDerrell\nDomenic\nDwaine\nEliot\nFermin\nFlorentino\nFranklyn\nFransisco\nGale\nGerhard\nGerold\nHarley\nHilton\nHollis\nHuey\nHunter\nJared\nJayson\nJed\nJens\nJerrell\nJunior\nKary\nKennard\nKenyatta\nLen\nLex\nMarcellino\nMarko\nMarshal\nMaximo\nMerlin\nMikel\nMilan\nNels\nNorberto\nOlen\nOrrin\nOsvaldo\nPamela\nRandel\nRayford\nRebecca\nReymundo\nRichardo\nRitchie\nRojelio\nRomeo\nRonn\nRudolfo\nSabino\nSid\nSilas\nSocorro\nStevan\nTate\nTeodoro\nTino\nTito\nVinson\nWilly\nWoodrow\nYale\nAce\nAlbino\nAlfonzo\nAmado\nAmador\nAnthoney\nAriel\nArlen\nArnie\nArtis\nAudie\nAugustin\nBaldwin\nBarbara\nBenigno\nBenson\nBernardino\nBlas\nBoris\nBrenton\nBuck\nCandelario\nCarol\nCass\nChauncey\nClarke\nClaud\nConstantino\nDamone\nDarryn\nDaryll\nDeandre\nDenise\nDonal\nDonavan\nDonna\nEleazar\nElizabeth\nElmo\nElpidio\nElton\nEmerson\nEmile\nEugenio\nEverette\nFausto\nFletcher\nFrederico\nGardner\nGildardo\nGraydon\nHarrison\nHilbert\nHipolito\nHosea\nIrving\nIsadore\nJeanpierre\nJere\nJerone\nJeronimo\nJoby\nJorje\nJosue\nJules\nJuventino\nKeneth\nLamonte\nLazaro\nLoran\nLyn\nManfred\nMarcell\nMarcelo\nMichal\nMillard\nMonroe\nMorton\nNancy\nNestor\nNiels\nNigel\nNils\nPercy\nPernell\nPrice\nQuincy\nRande\nRandolf\nReagan\nRefujio\nRicci\nRiley\nRoddy\nRoscoe\nRowland\nSerge\nServando\nShirley\nStanton\nStephon\nTedd\nTerri\nThane\nTristan\nTye\nValentin\nValentine\nValentino\nVidal\nVito\nWebster\nWeldon\nWendall\nWestley\nWiley\nWilfredo\nWilhelm\nWillian\nWinford\nZack\nZoltan\nMichael\nDavid\nJohn\nRobert\nJames\nRichard\nMark\nWilliam\nSteven\nKevin\nScott\nDaniel\nPaul\nJeffrey\nThomas\nKenneth\nBrian\nJoseph\nEric\nRonald\nChristopher\nGregory\nAnthony\nTimothy\nCharles\nGary\nDonald\nPatrick\nEdward\nTodd\nStephen\nMike\nDouglas\nFrank\nMatthew\nSteve\nGeorge\nAndrew\nRaymond\nKeith\nCraig\nPeter\nLarry\nJose\nJeff\nDennis\nRandy\nJerry\nMartin\nDanny\nChris\nTony\nJoe\nJon\nVictor\nAlan\nVincent\nTerry\nJeffery\nRussell\nBryan\nLawrence\nRoger\nPhillip\nGreg\nTim\nJim\nBruce\nSean\nTroy\nShawn\nArthur\nDean\nCarl\nRodney\nGerald\nTom\nManuel\nWayne\nCurtis\nRandall\nJack\nPhilip\nRick\nAlbert\nBill\nGlenn\nJuan\nBradley\nMarc\nCarlos\nDale\nAdam\nJonathan\nHenry\nJohnny\nJay\nRicky\nRuben\nDarren\nBrett\nSamuel\nDarryl\nRalph\nGilbert\nMario\nLance\nRoy\nJimmy\nAaron\nDan\nKurt\nLouis\nDarrell\nAllen\nWalter\nBobby\nLeonard\nErnest\nBilly\nJesse\nBrent\nJesus\nKirk\nRon\nEddie\nJason\nJoel\nEugene\nDon\nLuis\nHarold\nErik\nAntonio\nRicardo\nBarry\nMitchell\nRay\nDerek\nKen\nBenjamin\nFrederick\nLee\nMicheal\nKelly\nAlex\nRonnie\nTracy\nFrancisco\nFred\nKarl\nDave\nDuane\nGlen\nBrad\nDwayne\nTommy\nTheodore\nBob\nAlfred\nKent\nHoward\nMiguel\nAndre\nRaul\nGuy\nHector\nJaime\nNicholas\nClifford\nMarvin\nAlexander\nGordon\nNorman\nAndy\nStanley\nFernando\nRoberto\nWesley\nRudy\nStuart\nTed\nArmando\nDarin\nGabriel\nRamon\nDerrick\nJavier\nHarry\nRene\nDana\nEarl\nWarren\nDamon\nDoug\nReginald\nMatt\nOscar\nMarcus\nNathan\nGene\nArturo\nSalvador\nBret\nMaurice\nNick\nEdwin\nMelvin\nKenny\nPedro\nWillie\nPerry\nWade\nJorge\nByron\nGregg\nLloyd\nGeoffrey\nCalvin\nDaryl\nAlfredo\nRoss\nVernon\nJerome\nNeil\nJoey\nEnrique\nLeon\nLeslie\nLonnie\nRobin\nShane\nBen\nKyle\nPat\nAdrian\nLoren\nRafael\nLeo\nAllan\nChristian\nDarrin\nMarco\nGrant\nHerbert\nSergio\nErnesto\nSam\nEduardo\nAlejandro\nAlfonso\nArnold\nRoland\nTyrone\nPete\nRoderick\nNeal\nShaun\nKerry\nLewis\nMarty\nJimmie\nAngel\nChuck\nFloyd\nAbel\nAlberto\nCary\nChad\nMathew\nRandolph\nClinton\nFranklin\nJamie\nIan\nRodolfo\nBernard\nFrancis\nLouie\nFredrick\nJulian\nLeroy\nRandal\nDominic\nRex\nRob\nShannon\nCasey\nTerence\nJulio\nClarence\nRobbie\nBradford\nRickey\nTravis\nJessie\nLester\nDwight\nEvan\nTod\nBenny\nVince\nDarrel\nErnie\nGuillermo\nTimmy\nAlvin\nAngelo\nCesar\nCorey\nKelvin\nCurt\nJohnnie\nTerrence\nClay\nFrankie\nLorenzo\nRod\nEd\nMax\nKim\nClark\nFelix\nMarshall\nOrlando\nBrandon\nCharlie\nEdmund\nGuadalupe\nScot\nFelipe\nHerman\nLaurence\nLeland\nClayton\nEdgar\nMonty\nTerrance\nCory\nFreddie\nGustavo\nIvan\nRyan\nCedric\nGerardo\nJess\nGarrett\nHarvey\nMonte\nSidney\nBart\nEverett\nStewart\nTrent\nBlake\nColin\nGarry\nMarcos\nRudolph\nCameron\nClifton\nClyde\nDino\nJustin\nKris\nNathaniel\nDevin\nJerald\nJoaquin\nPhil\nTeddy\nGerard\nHans\nJody\nRory\nSammy\nTy\nClaude\nDaren\nDonnie\nJackie\nJoshua\nMilton\nRich\nErick\nVance\nDane\nDirk\nHugo\nMyron\nRuss\nDewayne\nCecil\nMiles\nSpencer\nAlonzo\nHugh\nLyle\nMorgan\nPablo\nAndres\nBert\nIgnacio\nNelson\nStephan\nWendell\nReynaldo\nRodger\nBryon\nClint\nDrew\nIsaac\nJacob\nKendall\nLionel\nStacy\nWallace\nChester\nKurtis\nMarlon\nGarth\nGilberto\nConrad\nElias\nForrest\nIsmael\nNoel\nRamiro\nRobby\nSheldon\nSimon\nTomas\nVirgil\nArt\nHumberto\nLuke\nPreston\nRolando\nRusty\nTyler\nXavier\nBennie\nBrendan\nBuddy\nEthan\nLamont\nLynn\nRocky\nZachary\nBlaine\nDamian\nDenis\nDion\nGerry\nGino\nLonny\nMickey\nAdolfo\nAl\nCarey\nIra\nLane\nToby\nArchie\nBryant\nDenny\nEmilio\nReuben\nRoman\nRonny\nSalvatore\nAugustine\nDanial\nDarnell\nFabian\nKip\nMauricio\nMitch\nOliver\nPierre\nDexter\nDonny\nLyndon\nOmar\nReed\nSherman\nTad\nVan\nAlton\nBarney\nBenito\nDelbert\nDoyle\nJosh\nLon\nNicolas\nSantiago\nCarlton\nErwin\nEsteban\nJan\nJeremy\nJordan\nMitchel\nMoises\nSterling\nWard\nAbraham\nErich\nFreddy\nHank\nJulius\nLincoln\nLowell\nWillard\nBlair\nElmer\nJean\nJeffry\nKenton\nLamar\nRogelio\nRoyce\nSeth\nBennett\nBoyd\nBryce\nDante\nEdmond\nEfrain\nJoesph\nLorne\nMarcel\nRodrigo\nThad\nTrevor\nAgustin\nBarton\nCliff\nEdwardo\nFidel\nKennith\nKeven\nOtis\nRichie\nSantos\nTommie\nVaughn\nVicente\nAlvaro\nAntoine\nBernardo\nDonovan\nEarnest\nGavin\nGregorio\nHal\nHarlan\nLeonardo\nMorris\nRigoberto\nSaul\nStacey\nStan\nTheron\nChip\nDemetrius\nGarret\nGonzalo\nLuther\nMack\nMel\nOwen\nRaymundo\nAubrey\nBernie\nBillie\nDallas\nDarwin\nGus\nKory\nRandell\nSonny\nTerrell\nAldo\nCruz\nDick\nDiego\nDomingo\nElliot\nGalen\nGil\nMalcolm\nMauro\nRodrick\nSandy\nSanford\nBradly\nCourtney\nDaron\nDeron\nDerwin\nDonn\nEfren\nHomer\nIsidro\nJefferson\nJonathon\nKraig\nKristopher\nLars\nLenny\nLeopoldo\nLorin\nMarion\nMichel\nQuinn\nScotty\nTracey\nVito\nWes\nWilbert\nAnton\nAntony\nBrock\nCody\nDarius\nDrake\nDuke\nEldon\nEliseo\nElliott\nErin\nJerold\nKennedy\nLes\nLisa\nMyles\nParis\nQuentin\nVic\nWillis\nAlec\nAlphonso\nAndreas\nArnoldo\nBrady\nBrooks\nCornell\nDuncan\nFederico\nFritz\nJohnathan\nLayne\nLindsey\nMarlin\nMerle\nOtto\nRosendo\nShon\nTobin\nAustin\nCharley\nChet\nClaudio\nDannie\nDel\nDerick\nDominick\nElbert\nElton\nEmil\nFletcher\nFrederic\nGrady\nHeriberto\nHubert\nJake\nJerrold\nNed\nNickolas\nNoe\nNorbert\nQuintin\nRegan\nRickie\nRoosevelt\nSebastian\nSolomon\nVal\nAvery\nBurton\nCarlo\nDario\nDarold\nDeon\nDeric\nDevon\nDonnell\nEddy\nEli\nEllis\nEmmett\nEverardo\nGenaro\nGraham\nHarrison\nManny\nMontgomery\nNicky\nRaphael\nReid\nRey\nRhett\nRussel\nShayne\nStefan\nTrinidad\nVon\nWill\nWinston\nAdolph\nAlfonzo\nArnulfo\nAugustin\nBrien\nClemente\nCris\nDenver\nDesmond\nDestry\nDewey\nHarley\nIsrael\nJeremiah\nLogan\nLoyd\nMichale\nMikel\nMillard\nNolan\nOctavio\nRobb\nRojelio\nRueben\nRufus\nShelby\nStevie\nValentino\nWhitney\nAlden\nAron\nBrook\nBud\nBurt\nCynthia\nDee\nDelano\nEnrico\nErrol\nFiliberto\nGiovanni\nGorge\nGreggory\nHilario\nHorace\nJacques\nJaimie\nJamey\nJefferey\nJosef\nJude\nJunior\nKirt\nLeonel\nLevi\nLou\nMarcelino\nMilo\nMurray\nNoah\nNorberto\nRaymon\nReggie\nSandra\nSkip\nSydney\nTimmothy\nWiley\nWilly\nAmado\nAnthoney\nArron\nAurelio\nBlane\nBlas\nBobbie\nBrant\nBritt\nCaesar\nCal\nChristophe\nCollin\nCornelius\nDamien\nDanniel\nDarron\nDouglass\nDwain\nEmery\nEzequiel\nFlorencio\nGabe\nGarland\nHerb\nHiram\nJared\nKaren\nKeenan\nKelley\nKermit\nLen\nLenard\nLennie\nLucio\nLupe\nMarcellus\nMarcelo\nMaury\nMaxwell\nMicah\nNestor\nNils\nOrville\nParrish\nQuint\nRandel\nRaoul\nRaynard\nRefugio\nReyes\nRudolfo\nSal\nThaddeus\nTino\nValentin\nVidal\nWalt\nWilbur\nAlain\nAlexandro\nAlonso\nArne\nAugust\nBeau\nBenedict\nCarter\nChance\nChauncey\nDarrick\nDemetrio\nEmile\nEstevan\nFaustino\nFausto\nFermin\nFranz\nJackson\nJere\nLaron\nLaura\nLeobardo\nLoran\nLuciano\nManfred\nMarcial\nMary\nOren\nPercy\nPernell\nReno\nRitchie\nRolf\nRolland\nRoyal\nTate\nThor\nTye\nUriel\nVern\nWally\nWilfred\nWilson\nAbelardo\nAdrain\nAndrea\nArmand\nBarrett\nBarron\nBartley\nBerry\nBrice\nBrooke\nBurl\nButch\nCelso\nCleveland\nCristobal\nDalton\nDavin\nDeandre\nDenise\nDereck\nDonnel\nDorian\nDudley\nDusty\nEarle\nEdmundo\nEloy\nEmanuel\nEmmanuel\nEriberto\nEverette\nFidencio\nFitzgerald\nGerman\nHoracio\nIrving\nIrwin\nJacinto\nKenyon\nKieth\nKirby\nKonrad\nKristian\nLawrance\nLex\nLinda\nLino\nMilan\nMoses\nNino\nOdis\nPhilippe\nPorfirio\nRegis\nRichardo\nRico\nRosalio\nRoscoe\nShelton\nStoney\nSusan\nSven\nTadd\nTaylor\nThurman\nWyatt\nYork\nZoltan\nAdan\nAlexis\nAllyn\nAlphonse\nAndra\nAngus\nAnson\nAntone\nAram\nArtemio\nAsa\nAudie\nBasilio\nBertrand\nBooker\nBoris\nBrennan\nBruno\nBuck\nCaleb\nCarmelo\nCarmen\nCarroll\nCavin\nCleo\nCordell\nDarell\nDaryn\nDeborah\nDebra\nDelmar\nDomenic\nDominique\nDurrell\nDustin\nDuwayne\nDwane\nDylan\nEfrem\nElgin\nElroy\nElvin\nEmerson\nEsequiel\nEugenio\nFelton\nFlorentino\nFlynn\nFredric\nGarrick\nGeno\nGeoff\nGiles\nGrover\nHilton\nIrvin\nJacque\nJuventino\nKai\nKasey\nKimberly\nKorey\nLaird\nLanny\nLeif\nLeigh\nLindsay\nLucas\nLucky\nLyman\nMace\nMargarito\nMason\nMateo\nMerrill\nMervin\nMichiel\nNorris\nOdell\nOlin\nParris\nPatrice\nPatricio\nRamsey\nRand\nRandle\nReymundo\nRiley\nSabino\nSammie\nShan\nSilvio\nThane\nTrace\nTrenton\nTruman\nValente\nVincente\nWaldo\nWilford\nWilfredo\nAce\nAli\nAmador\nAmos\nAnderson\nArden\nAri\nArlie\nArlin\nArmond\nArnie\nBaltazar\nBenton\nBertram\nBlain\nBonifacio\nBraden\nBrandt\nBrenton\nCandelario\nCatarino\nCecilio\nClarke\nClement\nCleve\nCole\nCort\nCreighton\nCyril\nCyrus\nDanilo\nDarian\nDemetrios\nDerik\nDerrell\nDevlin\nDieter\nDodd\nDomonic\nDoran\nEamon\nEdison\nEleazar\nElston\nElvis\nEphraim\nErasmo\nErvin\nEusebio\nFeliciano\nForest\nFrancois\nFranklyn\nFredy\nGale\nGarren\nGillermo\nHenri\nHollis\nIldefonso\nIssac\nJacqueline\nJame\nJohan\nJonas\nJonny\nJoseluis\nJulie\nJusto\nKathy\nKendrick\nKeneth\nKit\nKristofer\nLamonte\nLandon\nLauren\nLazaro\nLennard\nLesley\nLink\nLovell\nManual\nMaria\nMariano\nMarlan\nMerlin\nMichele\nMonroe\nOlen\nOllie\nParker\nPascual\nPatricia\nPerfecto\nPrince\nQuinton\nRayford\nRaymondo\nRenato\nRenee\nRobinson\nRoby\nRocco\nRoddy\nRoderic\nRoel\nRonaldo\nRoque\nRosario\nRowan\nSalvadore\nScottie\nShelley\nShelly\nSilvano\nStanford\nStevan\nSylvester\nTal\nTammy\nTitus\nTyron\nValentine\nWarner\nWerner\nWestley\nWoodrow\nYul\nZane\nZeke\nMichael\nDavid\nJohn\nRobert\nJames\nRichard\nMark\nSteven\nWilliam\nDaniel\nKevin\nPaul\nChristopher\nScott\nJeffrey\nEric\nBrian\nThomas\nTimothy\nJoseph\nKenneth\nAnthony\nRonald\nGregory\nCharles\nGary\nDonald\nEdward\nPatrick\nStephen\nTodd\nMatthew\nDouglas\nMike\nAndrew\nFrank\nGeorge\nRaymond\nJose\nSean\nCraig\nPeter\nRodney\nKeith\nSteve\nLarry\nDennis\nJerry\nDarren\nJeff\nRandy\nMartin\nVincent\nDanny\nChris\nJon\nVictor\nTony\nShawn\nJoe\nBryan\nTroy\nJeffery\nRussell\nTerry\nPhillip\nLawrence\nBruce\nArthur\nErik\nRoger\nManuel\nGerald\nAlan\nJuan\nDean\nJonathan\nJim\nTim\nJohnny\nCarl\nDarryl\nGreg\nMarc\nCarlos\nBradley\nDarrin\nAlbert\nCurtis\nPhilip\nWayne\nJason\nRalph\nSamuel\nRicky\nAaron\nRoy\nGlenn\nJack\nRick\nAdam\nTom\nHenry\nRandall\nMario\nJimmy\nDale\nDarin\nRuben\nDarrell\nBrett\nGilbert\nBill\nDerek\nDan\nLouis\nJesse\nWalter\nLance\nKurt\nLuis\nRicardo\nErnest\nJay\nLeonard\nBobby\nBilly\nAllen\nAntonio\nBrent\nBenjamin\nEddie\nJesus\nRon\nJoel\nKirk\nAlex\nDon\nHarold\nFred\nRay\nFrederick\nMicheal\nTracy\nBarry\nAndre\nGlen\nRonnie\nNorman\nHector\nRoberto\nJaime\nKelly\nFrancisco\nGabriel\nAlfred\nEugene\nNicholas\nKarl\nRaul\nMitchell\nDwayne\nTheodore\nArmando\nAlexander\nMiguel\nGuy\nDuane\nBrad\nRudy\nStanley\nJavier\nDerrick\nLee\nTommy\nHoward\nKen\nMarcus\nOscar\nDave\nMarvin\nKent\nRamon\nRene\nRyan\nClifford\nJorge\nWesley\nAndy\nTed\nNathan\nSalvador\nWarren\nBob\nDoug\nEarl\nGordon\nJerome\nReginald\nArturo\nEdwin\nAlfredo\nDamon\nEduardo\nMelvin\nDaryl\nFernando\nLonnie\nMatt\nNick\nHarry\nChristian\nPedro\nGeoffrey\nLloyd\nRafael\nAdrian\nAllan\nSergio\nPerry\nDana\nLeslie\nMarco\nKenny\nRoss\nStuart\nWillie\nArnold\nChad\nIan\nByron\nTyrone\nAlberto\nAngel\nJoey\nShane\nGregg\nAlejandro\nShannon\nBret\nGene\nKerry\nNeil\nAlfonso\nErnesto\nLoren\nGrant\nVernon\nCalvin\nDaren\nMaurice\nBernard\nEnrique\nPete\nRandolph\nFranklin\nKyle\nDwight\nJimmie\nLeroy\nTravis\nWade\nGerardo\nHerbert\nRobin\nRoderick\nJamie\nLeo\nErick\nRod\nRodolfo\nAbel\nCary\nLeon\nMarty\nMathew\nRoland\nBen\nLouie\nPat\nFredrick\nVince\nCesar\nOrlando\nShaun\nRex\nSam\nBrandon\nClayton\nGustavo\nClarence\nClinton\nRandal\nFloyd\nFrankie\nJulio\nAlvin\nLewis\nFrancis\nRob\nScot\nToby\nBradford\nGuillermo\nLorenzo\nIvan\nLester\nChuck\nEvan\nMarcos\nMarshall\nTerrence\nCasey\nDominic\nHerman\nJulian\nClark\nClyde\nFelix\nNeal\nStacy\nCurt\nEdgar\nNathaniel\nCameron\nDonnie\nJoshua\nFelipe\nGuadalupe\nJessie\nColin\nKelvin\nPablo\nTerrance\nWendell\nCorey\nErnie\nMiles\nCharlie\nHarvey\nHugh\nJess\nMax\nVance\nFreddie\nRickey\nIgnacio\nMonte\nRobbie\nRudolph\nAlonzo\nAndres\nBenny\nDevin\nJody\nPhil\nSidney\nDino\nStewart\nAngelo\nEdmund\nJeremy\nJustin\nTerence\nTimmy\nMilton\nNoel\nCory\nDewayne\nSammy\nStacey\nTrent\nDion\nJohnnie\nTrevor\nBart\nGarrett\nLeland\nTomas\nChester\nGino\nHugo\nIsaac\nKim\nNelson\nRolando\nRory\nSpencer\nBlake\nDarrel\nMyron\nStephan\nTy\nTyler\nCedric\nGilberto\nIsmael\nJerald\nLyle\nMonty\nPierre\nKendall\nConrad\nDirk\nEverett\nJacob\nLaurence\nSheldon\nAbraham\nClifton\nDrew\nElias\nHans\nLamont\nReuben\nEd\nErich\nRobby\nRamiro\nTod\nArt\nBryon\nReynaldo\nRocky\nTeddy\nWallace\nJean\nWard\nAugustine\nCecil\nForrest\nGavin\nHumberto\nJackie\nKip\nNicolas\nRich\nRoman\nRusty\nSaul\nBryant\nDane\nDemetrius\nDenny\nEdmond\nJoaquin\nLionel\nMarcel\nMarlon\nMickey\nRogelio\nAdolfo\nBert\nFreddy\nGerard\nKurtis\nAgustin\nBrendan\nDerick\nEthan\nGarth\nJeffry\nLeonardo\nPreston\nTad\nXavier\nBlaine\nCarey\nClaude\nEdwardo\nGarry\nGonzalo\nOwen\nSimon\nStefan\nVan\nWillard\nBoyd\nBryce\nEmilio\nKris\nBrock\nDamian\nDarnell\nDomingo\nDonnell\nMorgan\nMorris\nRonny\nSantiago\nVicente\nZachary\nBenito\nClint\nEddy\nOtis\nRodger\nRuss\nSalvatore\nVirgil\nAntoine\nDarron\nFidel\nGerry\nIra\nIsrael\nKristopher\nMoises\nOmar\nFabian\nGalen\nJan\nJordan\nMauricio\nBennie\nDeron\nJohnathan\nLon\nMalcolm\nOliver\nRaymundo\nSantos\nSeth\nSherman\nCarlton\nClay\nDaron\nDenis\nDoyle\nElliott\nLane\nLuke\nRodrigo\nAlvaro\nBlair\nBuddy\nDanial\nDelbert\nDonovan\nEfrain\nJefferson\nLowell\nRussel\nVaughn\nArchie\nDel\nGregorio\nHarlan\nJulius\nKory\nMichel\nMitch\nStan\nTommie\nWes\nWill\nWinston\nAntony\nAvery\nBernardo\nCliff\nCornelius\nDexter\nGil\nHal\nJonathon\nLynn\nSandy\nWilfred\nWillis\nBarton\nBennett\nDante\nDesmond\nEllis\nElmer\nFederico\nKraig\nLorne\nLuther\nMoses\nReed\nRickie\nRigoberto\nScotty\nShon\nTrinidad\nAlec\nBaron\nBud\nDiego\nDuncan\nEmmett\nErin\nEsteban\nJacques\nJayson\nJerrold\nNoe\nSonny\nSterling\nBillie\nBurton\nCarter\nCourtney\nDevon\nDonny\nEmanuel\nJefferey\nKeven\nLorin\nNicky\nOctavio\nReyes\nSal\nTracey\nZane\nAustin\nBernie\nBrady\nBurt\nChristophe\nCody\nDallas\nDewey\nEfren\nEldon\nGarland\nHarley\nHorace\nLamar\nLeif\nReggie\nRichie\nRodrick\nRoyce\nTerrell\nWilbert\nAl\nAldo\nAlton\nArnoldo\nDaryn\nEmil\nFranz\nGarret\nGus\nHank\nHubert\nJackson\nJake\nJared\nKennith\nLenny\nMarlin\nRandell\nShayne\nTheo\nVern\nArnulfo\nCornell\nDario\nGorge\nGraham\nGreggory\nHeriberto\nIsidro\nKimberly\nKirt\nLars\nLawrance\nLonny\nMarcelo\nMurray\nNorbert\nQuinn\nRudolfo\nTino\nWally\nAlphonso\nAndreas\nAnton\nAugust\nBarney\nBobbie\nBruno\nCruz\nDarwin\nDonn\nElbert\nJoesph\nJosh\nKelley\nLen\nLisa\nMarion\nMarkus\nMerle\nMicah\nMikel\nMitchel\nNed\nParrish\nPercy\nRegan\nSammie\nTimmothy\nVal\nWilson\nAndrea\nAubrey\nBradly\nCordell\nCurtiss\nDarius\nDeandre\nDeric\nDimitri\nDrake\nDustin\nEloy\nErie\nErrol\nErvin\nFrederic\nFredric\nGenaro\nJerold\nJonas\nLayne\nLogan\nLuciano\nMarcello\nNoah\nParker\nPernell\nRaphael\nRoosevelt\nSebastian\nStevie\nThor\nTobias\nAmador\nArmand\nAron\nButch\nCarlo\nCole\nCollin\nCyrus\nDarryn\nDeon\nDwain\nEarnest\nEdmundo\nEfrem\nEli\nEugenio\nFarrell\nFermin\nForest\nGeoff\nGerman\nGrady\nHilario\nJunior\nKary\nKirby\nLes\nLupe\nMariano\nMason\nMyles\nNels\nParis\nRobb\nRoderic\nSanford\nSolomon\nStanford\nSven\nThad\nTrace\nAdan\nAdolph\nAlden\nAlexis\nAlonso\nAmos\nArtie\nBenton\nBrant\nBrien\nBrooks\nBuck\nChet\nCris\nDamien\nDanniel\nDarrick\nDeborah\nDelmar\nDominick\nElizabeth\nElton\nEsequiel\nGiovanni\nJohan\nJohnie\nLenard\nLeonel\nMel\nMervin\nMilan\nPatricio\nRandel\nReymundo\nRosendo\nSylvester\nTaylor\nTory\nVincente\nAbelardo\nAmado\nAnselmo\nAri\nArne\nBarrett\nBasil\nBeau\nDarold\nDavin\nDerwin\nDonal\nDudley\nEmery\nEmmanuel\nEnrico\nFlorencio\nFransisco\nIrvin\nJamey\nJeremiah\nJules\nKaren\nKendrick\nKevan\nKieth\nKit\nKristian\nLeandro\nLemuel\nMarcelino\nMargarito\nMaury\nNewton\nPatric\nPhilippe\nQuinton\nRaynard\nRefugio\nReid\nRollin\nRupert\nStanton\nTheron\nThurman\nTrenton\nValentine\nVic\nVon\nAli\nArron\nAugie\nAurelio\nBrain\nBrennan\nCharley\nChip\nClement\nCynthia\nDarcy\nDarell\nDee\nDerald\nDereck\nDerik\nDerrell\nDestry\nDieter\nDondi\nDorian\nDouglass\nDwaine\nEdgardo\nEliseo\nElvin\nErwin\nFelton\nFlorentino\nGarett\nGarrick\nHarrison\nHuey\nIrving\nJohnathon\nJude\nKai\nLanny\nLeigh\nLincoln\nLindsay\nLino\nLucas\nLucio\nMaria\nMary\nMauro\nMckinley\nMerritt\nMillard\nMilo\nModesto\nMontgomery\nNestor\nNolan\nOtto\nPorfirio\nQuintin\nReece\nRolland\nRomeo\nRonaldo\nRosalio\nRueben\nSabino\nShelby\nShelton\nSkip\nStevan\nTeodoro\nThaddeus\nTruman\nTyson\nUriel\nVito\nWhitney\nWoodrow\nWoody\nWyatt\nYsidro\nAbram\nAdalberto\nAlain\nAric\nArmon\nAsa\nAugustin\nBarron\nBernabe\nBernardino\nBlaise\nBooker\nBraden\nBrandt\nBrendon\nBroderick\nBurke\nCal\nCarroll\nClaudio\nCristobal\nDagoberto\nDamion\nDannie\nDarian\nDarien\nDavis\nDenise\nDerric\nDerron\nDeven\nDewitt\nDick\nDominique\nDonna\nDorsey\nDylan\nEctor\nEldridge\nElgin\nElvis\nEriberto\nFabio\nFerman\nFritz\nGaston\nGerhard\nGranville\nHernan\nHunter\nJosef\nKay\nKeenan\nKennedy\nKenyon\nKieran\nLamarr\nLavell\nLazaro\nLeeroy\nLeopoldo\nLex\nLindsey\nLoyd\nLyman\nLyndon\nMart\nNickolas\nNikolas\nOdell\nQuincy\nRand\nRic\nRichardo\nRitchie\nRocco\nRodd\nRoddy\nRoel\nRoscoe\nRowland\nSandra\nShanon\nSydney\nTedd\nTeresa\nTrey\nValentin\nValentino\nVidal\nWarner\nWilbur\nWiley\nWilliams\nAlbino\nAlexandro\nAlfonzo\nAlford\nAlicia\nAlvino\nAmerico\nAmir\nAnderson\nAnson\nAntione\nAntonino\nAriel\nArnie\nBlane\nBonifacio\nBrice\nBrook\nCaesar\nCamilo\nCandelario\nCarmelo\nChauncey\nChristoph\nCindy\nCipriano\nClarke\nClemente\nConstantine\nConstantino\nCort\nCourtland\nCoy\nCyril\nDalton\nDanilo\nDaryle\nDavie\nDawayne\nDelano\nDemetrio\nDerrik\nDerryl\nDmitri\nDonavan\nDonell\nDuke\nDusty\nDwane\nEarle\nEliasar\nElliot\nEmory\nEvaristo\nEzekiel\nEzra\nFaron\nFaustino\nFeliciano\nFletcher\nFortino\nFranklyn\nFranky\nGarfield\nGian\nGraig\nGrover\nGunnar\nGunther\nHelmut\nHomer\nHoracio\nIsaias\nIssac\nIvory\nJennifer\nJens\nJodie\nJohannes\nJohnson\nJosue\nKathleen\nKennth\nKenton\nKipp\nKonrad\nKorey\nKurk\nLadd\nLandon\nLaron\nLaura\nLennie\nLeobardo\nLesley\nLiam\nLinda\nLlewellyn\nLonnell\nLori\nLucky\nLyn\nMacario\nMack\nManny\nMarcellus\nMarque\nMatias\nMaximiliano\nMaximino\nMelton\nMerrill\nMichale\nMichele\nMicky\nMorton\nNapoleon\nNate\nNatividad\nNevin\nNorberto\nOren\nParnell\nPaulo\nPrince\nQuentin\nRainer\nRandle\nRandolf\nRaoul\nRaymon\nRaynaldo\nReese\nReginal\nRenard\nRenato\nRenee\nReno\nRhett\nRolf\nRosario\nRoyal\nRufus\nSalomon\nSamual\nSteffon\nTeofilo\nTimothey\nTitus\nTor\nTye\nUlysses\nVerne\nVernell\nVladimir\nWeston\nWilfredo\nWillam\nMichael\nDavid\nRobert\nJohn\nJames\nRichard\nMark\nSteven\nWilliam\nChristopher\nDaniel\nBrian\nJeffrey\nPaul\nScott\nEric\nKevin\nTimothy\nAnthony\nThomas\nJoseph\nKenneth\nRonald\nCharles\nGregory\nGary\nStephen\nMatthew\nEdward\nSean\nDonald\nTodd\nPatrick\nAndrew\nJose\nDouglas\nFrank\nKeith\nGeorge\nRaymond\nCraig\nMike\nRodney\nPeter\nShawn\nDennis\nSteve\nLarry\nJerry\nMartin\nBryan\nTroy\nChris\nJeff\nJason\nRandy\nVincent\nJoe\nTony\nJeffery\nDarren\nJon\nVictor\nJuan\nDanny\nPhillip\nManuel\nRoger\nDean\nJonathan\nBruce\nCarlos\nLawrence\nArthur\nRussell\nErik\nTerry\nGerald\nAaron\nJohnny\nJim\nAlbert\nMarc\nAlan\nSamuel\nCurtis\nTim\nCarl\nRuben\nMario\nWayne\nBrett\nBradley\nHenry\nGlenn\nDale\nGreg\nJesse\nPhilip\nAdam\nRandall\nJack\nDerek\nJesus\nRicky\nDarin\nJimmy\nLuis\nGilbert\nRalph\nWalter\nBrent\nRoy\nDarryl\nLouis\nDarrin\nJoel\nBenjamin\nAntonio\nLance\nErnest\nRicardo\nJay\nRick\nRaul\nFrancisco\nAllen\nTom\nKelly\nKurt\nTracy\nDarrell\nHarold\nEugene\nJaime\nLeonard\nBobby\nKirk\nEddie\nMiguel\nDon\nHector\nJavier\nRay\nRoberto\nNorman\nFred\nLee\nAlexander\nBill\nDerrick\nBilly\nTommy\nAlex\nMicheal\nAndre\nNicholas\nRon\nGabriel\nFrederick\nOscar\nBarry\nJorge\nRonnie\nDan\nArmando\nGlen\nTheodore\nDwayne\nRyan\nDuane\nChad\nRamon\nKyle\nChristian\nAlfred\nMarvin\nDamon\nArturo\nKarl\nSalvador\nFernando\nBrad\nHoward\nWesley\nMitchell\nEarl\nGuy\nStanley\nRudy\nRene\nKen\nGordon\nMarcus\nEduardo\nClifford\nKent\nDave\nMarco\nShane\nMatt\nBret\nWarren\nNathan\nAlfredo\nEdwin\nPedro\nSergio\nShannon\nAlberto\nByron\nDaryl\nIan\nJerome\nEnrique\nLonnie\nWillie\nHarry\nMelvin\nNick\nReginald\nRoss\nTed\nAndy\nRafael\nGeoffrey\nAngel\nLloyd\nTyrone\nAlfonso\nStuart\nBob\nAdrian\nDana\nTrevor\nCary\nMaurice\nLoren\nAllan\nMathew\nAlejandro\nTravis\nGene\nGregg\nNeil\nFranklin\nCalvin\nBernard\nWade\nErnesto\nLeo\nLeon\nBen\nJimmie\nLeslie\nDoug\nPerry\nKenny\nGerardo\nJamie\nKerry\nJoey\nArnold\nCasey\nErnie\nGrant\nRandolph\nFredrick\nGustavo\nSam\nShaun\nVernon\nLeroy\nLorenzo\nPete\nClarence\nLewis\nFloyd\nFrankie\nCesar\nDino\nRoland\nErick\nRobin\nDominic\nFelix\nJoshua\nDaren\nFrancis\nJulian\nRandal\nAndres\nRoderick\nGuillermo\nMarty\nJulio\nMax\nOrlando\nRodolfo\nTerrence\nAlvin\nCorey\nRod\nBrandon\nClayton\nIvan\nRudolph\nEvan\nNathaniel\nNeal\nAbel\nBrendan\nDevin\nHerbert\nJessie\nPablo\nClinton\nRex\nTerrance\nJess\nMarshall\nFreddie\nGarrett\nLouie\nRamiro\nStephan\nDwight\nIgnacio\nJeremy\nKelvin\nLester\nRob\nPat\nTerence\nTimmy\nBradford\nEdgar\nJerald\nChuck\nClark\nJody\nReynaldo\nCameron\nFelipe\nIsaac\nLeland\nCharlie\nDion\nRobbie\nHarvey\nJustin\nTrent\nAngelo\nIsmael\nMarcos\nEverett\nLyle\nSammy\nColin\nHerman\nJohnnie\nAlonzo\nCedric\nCory\nGuadalupe\nPhil\nSidney\nTyler\nVance\nVince\nWallace\nGilberto\nBenny\nDarrel\nDirk\nErich\nJacob\nMorgan\nRickey\nTomas\nXavier\nAbraham\nBart\nDrew\nHugo\nScot\nCurt\nDeron\nEdmund\nForrest\nGarry\nRogelio\nZachary\nKim\nMonte\nMonty\nClaude\nClifton\nDenny\nJackie\nJoaquin\nLaurence\nMilton\nSheldon\nStewart\nBryant\nCecil\nDewayne\nPreston\nStacy\nAgustin\nDonnie\nElias\nEsteban\nJared\nRodger\nTod\nTy\nClyde\nDaron\nDelbert\nHans\nHugh\nKurtis\nMyron\nNelson\nNoel\nRoman\nSimon\nBlake\nBryon\nClint\nConrad\nEd\nHeath\nJonathon\nMarlon\nSantiago\nVirgil\nDarnell\nFidel\nGerard\nKris\nSpencer\nToby\nOmar\nRory\nStacey\nWendell\nBlaine\nEdwardo\nHumberto\nJordan\nLamont\nSherman\nDane\nFabian\nJarrod\nJeffry\nOliver\nPierre\nTeddy\nBert\nCarlton\nGavin\nKendall\nLorne\nLynn\nRobby\nVan\nVicente\nAdolfo\nBarton\nElliott\nKristopher\nLeonardo\nMauricio\nMiles\nReuben\nRocky\nRolando\nBlair\nCliff\nDante\nDerick\nDonovan\nGarth\nJohnathan\nLowell\nMickey\nOwen\nBuddy\nChester\nElmer\nJean\nSantos\nScotty\nArchie\nDarius\nNicolas\nReed\nSalvatore\nBennie\nDenis\nDeon\nEthan\nIra\nJan\nLeopoldo\nLionel\nMarcel\nMoises\nMorris\nRonny\nSeth\nStefan\nVaughn\nArt\nCarey\nDamian\nEddy\nEdmond\nEfrain\nGino\nJoesph\nKip\nLuke\nRich\nTracey\nWilson\nAlvaro\nDanial\nDarwin\nDemetrius\nEfren\nEmilio\nGonzalo\nLane\nNoah\nBernardo\nDoyle\nErin\nFederico\nGregorio\nMarlin\nOctavio\nRoyce\nRusty\nSaul\nSterling\nWillard\nBrock\nBryce\nFreddy\nJefferson\nMitchel\nOtis\nStan\nTad\nAlec\nBeau\nJulius\nRodrigo\nAlphonso\nAndreas\nAntoine\nAugustine\nAurelio\nCornell\nDonnell\nEliseo\nHeriberto\nJosh\nLamar\nMalcolm\nRoosevelt\nTommie\nTrinidad\nArnulfo\nDarron\nDiego\nDonny\nDuncan\nDwain\nEarnest\nGalen\nGerry\nHal\nHubert\nIsrael\nKeven\nLon\nLonny\nLuther\nMichel\nNickolas\nOtto\nRandell\nRigoberto\nRuss\nAron\nBarney\nBenito\nBoyd\nBrooks\nCody\nCourtney\nDario\nDexter\nDuke\nGil\nGraham\nGus\nHomer\nLars\nMoses\nRaymundo\nSandy\nSonny\nTerrell\nThad\nAdan\nBradly\nCarlo\nClay\nDomingo\nKennith\nMarion\nRickie\nShon\nTimmothy\nWilfred\nWill\nArmand\nAustin\nBillie\nBrant\nClaudio\nCruz\nDominick\nJerold\nKirt\nMack\nMarcelino\nMarcelo\nNicky\nReggie\nReid\nSebastian\nShelby\nStevie\nTheron\nWilbert\nAl\nAnton\nAntony\nAubrey\nAugust\nCarter\nEli\nEloy\nGerman\nJacques\nJake\nJefferey\nKimberly\nKirby\nKraig\nLenny\nLino\nMaria\nNorbert\nPercy\nQuinn\nReese\nRefugio\nRudolfo\nSylvester\nUlysses\nWard\nWes\nAlexandro\nAlexis\nArron\nBennett\nCaesar\nChance\nChristophe\nCollin\nDesmond\nDonn\nDorian\nErwin\nFlorentino\nFrederic\nGrady\nHank\nHarley\nIsidro\nKai\nKristian\nLazaro\nLupe\nMauro\nMaxwell\nMicah\nNed\nPatricio\nQuintin\nRaphael\nRichie\nRussel\nSal\nTaylor\nTobin\nAbelardo\nAdolph\nAric\nAvery\nBerry\nBobbie\nBrain\nBrenden\nCornelius\nDamien\nDarrick\nDaryle\nDell\nDerwin\nDouglass\nDrake\nDylan\nEldon\nEmmett\nErvin\nGarret\nGreggory\nJens\nJeremiah\nJerrold\nLafayette\nLeif\nLes\nLorin\nLucio\nMarcell\nMason\nMel\nNestor\nPorfirio\nQuentin\nRiley\nRodrick\nRufus\nSanford\nThaddeus\nVal\nValentin\nVern\nWilbur\nWinston\nAldo\nAlvino\nArnoldo\nAugustin\nBernie\nBrien\nBrook\nBurt\nCharley\nChet\nClemente\nCris\nDallas\nDavis\nDeandre\nDestry\nDevon\nDimitri\nElbert\nEliot\nElliot\nEllis\nEmil\nEugenio\nEzequiel\nFermin\nGeoff\nGiovanni\nGorge\nHilario\nHiram\nJacinto\nJackson\nJayson\nJohnathon\nJorje\nLayne\nLeonel\nLyndon\nMariano\nMitch\nMyles\nOrville\nReyes\nRolf\nRueben\nSkip\nTrace\nVon\nWally\nWeston\nAlden\nAli\nAlton\nAntone\nAudie\nBaron\nBertram\nBruno\nCelestino\nConstantine\nDamone\nDannie\nDelmar\nEdgardo\nElvin\nEmanuel\nErrol\nEusebio\nEverardo\nFransisco\nFranz\nGarett\nGarland\nGenaro\nGeno\nHarlan\nHenri\nHorace\nKennedy\nKenton\nKit\nLavell\nLincoln\nMary\nMerle\nMichele\nMichelle\nMikel\nMontgomery\nMurray\nRandel\nRegan\nRhett\nRojelio\nRosendo\nSandor\nTitus\nTrenton\nVictoria\nWillis\nYancy\nZane\nAdalberto\nAlfonzo\nBlas\nBoris\nBrady\nBrandt\nBrice\nCedrick\nCordell\nCyrus\nDarryn\nDel\nDenise\nDeric\nDerrell\nDewey\nDick\nElizabeth\nElvis\nEnrico\nErie\nGuido\nHoracio\nIvory\nJules\nKelley\nKieth\nKory\nLanny\nLemuel\nLen\nLucas\nMargarito\nMarkus\nMerrill\nMichale\nMilo\nNels\nNils\nNoe\nNolan\nNorris\nParis\nPatricia\nRaymon\nRaynard\nReece\nReymundo\nRitchie\nRobie\nRomeo\nRoque\nSamual\nSusan\nTito\nTyson\nWalt\nWoodrow\nAbe\nAnselmo\nAnthoney\nAri\nArne\nArnie\nAugustus\nBarrett\nBlaise\nBrenton\nBritton\nBuck\nBurke\nButch\nCaleb\nCandelario\nCandido\nCleon\nConrado\nCoy\nDamion\nDanilo\nDarcy\nDelano\nDereck\nDerik\nDerric\nDominique\nDonell\nEfrem\nElgin\nEmery\nEmiliano\nEstevan\nFaustino\nFletcher\nFlorencio\nFredric\nGaylen\nGiuseppe\nIrwin\nJarrett\nJarvis\nJosef\nJudson\nKendrick\nKevan\nKipp\nLaroy\nLevi\nLiam\nLindsay\nManny\nMarko\nMick\nMonroe\nNapoleon\nNarciso\nOran\nOrin\nParrish\nRand\nRandle\nRaoul\nRobb\nRocco\nRoddy\nRoderic\nShad\nSid\nSocorro\nSolomon\nStevan\nTeresa\nThor\nTristan\nValentino\nVincente\nVinson\nVito\nVittorio\nWarner\nWhitney\nAbram\nAgustine\nAmir\nAmos\nAnnette\nAram\nArmen\nArmondo\nArthuro\nBasilio\nBenedict\nBenton\nBrennan\nBrooke\nCal\nCam\nCarmelo\nCarroll\nCarson\nChadwick\nChauncey\nChip\nChristofer\nCipriano\nCleve\nCole\nColeman\nCort\nDarryll\nDaryn\nDavy\nDeane\nDemetrious\nDionicio\nDonal\nDusty\nDuwayne\nEarle\nEdd\nEligio\nElroy\nEmile\nEsequiel\nFrancois\nFranklyn\nGale\nGarrick\nGeary\nGergory\nGideon\nGillermo\nGregor\nHarris\nHoyt\nIrving\nIssac\nJade\nJamil\nJasper\nJeanpierre\nJerardo\nJohnie\nJoseluis\nJusto\nJuvenal\nKeenan\nKenji\nKermit\nKieran\nKristofer\nLandon\nLaron\nLaverne\nLawerence\nLawrance\nLeeroy\nLeigh\nLesley\nLinda\nLindsey\nLuciano\nMacario\nMarcello\nMarin\nMarshal\nMartine\nMaury\nMerlin\nMerritt\nMickel\nNigel\nNorberto\nPaulo\nPhilbert\nQuinton\nRaleigh\nRamin\nRandolf\nReagan\nRenato\nReynold\nRichardo\nRito\nRolland\nRomero\nRosalio\nRosario\nRoyal\nRubin\nSammie\nSandra\nSeferino\nShayne\nShelley\nShelton\nSilvestre\nSimeon\nStanford\nTerrill\nTheadore\nThurman\nTory\nTrey\nUnknown\nVaughan\nVerlin\nVictoriano\nWeldon\nWellington\nWess\nWiley\nWillam\nWilly\nWoody\nYsidro\nMichael\nDavid\nJohn\nRobert\nJames\nRichard\nMark\nSteven\nWilliam\nChristopher\nEric\nBrian\nDaniel\nScott\nJeffrey\nPaul\nAnthony\nKevin\nTimothy\nThomas\nJoseph\nKenneth\nRonald\nCharles\nMatthew\nGregory\nSean\nStephen\nDonald\nPatrick\nGary\nEdward\nTodd\nJose\nAndrew\nDouglas\nFrank\nJason\nGeorge\nPeter\nRaymond\nCraig\nDennis\nKeith\nLarry\nShawn\nTroy\nMike\nJerry\nBryan\nMartin\nSteve\nRodney\nVincent\nJeffery\nChris\nVictor\nJon\nManuel\nTony\nDanny\nDarren\nErik\nJuan\nRandy\nJoe\nJonathan\nAaron\nJeff\nLawrence\nCarlos\nRoger\nPhillip\nArthur\nRussell\nDerek\nTerry\nAlbert\nDean\nGerald\nMarc\nAlan\nBruce\nMario\nJesse\nCarl\nBrett\nSamuel\nJohnny\nPhilip\nGlenn\nWayne\nRuben\nJesus\nJoel\nCurtis\nBradley\nHenry\nTim\nLuis\nAdam\nGilbert\nRicardo\nJack\nRandall\nBrent\nKelly\nJim\nLance\nJimmy\nBenjamin\nGreg\nKirk\nFrancisco\nRoy\nJay\nDale\nAntonio\nRaul\nWalter\nKurt\nLouis\nDarin\nDarrell\nRick\nErnest\nRalph\nMiguel\nRicky\nRyan\nAlexander\nChad\nMicheal\nAllen\nBilly\nAndre\nRoberto\nJaime\nLee\nDarryl\nLeonard\nBobby\nDarrin\nGabriel\nJavier\nJorge\nHector\nEugene\nAlex\nChristian\nShane\nTom\nNicholas\nDuane\nDon\nRonnie\nFrederick\nAlfred\nDamon\nHarold\nArmando\nDerrick\nTracy\nEddie\nNorman\nTheodore\nDan\nIan\nKyle\nMarcus\nOscar\nRay\nGlen\nRon\nFred\nFernando\nRene\nBarry\nSalvador\nMitchell\nHoward\nRudy\nTommy\nWesley\nBill\nDwayne\nKarl\nArturo\nMarvin\nBrad\nRamon\nGuy\nClifford\nAlfredo\nRafael\nAdrian\nMaurice\nWarren\nStanley\nAlberto\nGeoffrey\nPedro\nNathan\nAndy\nMatt\nEnrique\nShannon\nReginald\nSergio\nEduardo\nKent\nAlfonso\nEarl\nWillie\nTed\nByron\nMarco\nMelvin\nNick\nDaryl\nBret\nStacy\nAngel\nAlejandro\nDave\nHarry\nTrevor\nDana\nGordon\nTravis\nJoey\nKen\nTyrone\nDominic\nJerome\nLonnie\nNeil\nGene\nRoland\nErnesto\nShaun\nPerry\nJoshua\nBrandon\nLloyd\nCesar\nLeo\nMathew\nVernon\nRodolfo\nAllan\nBernard\nFranklin\nRoderick\nBob\nCalvin\nEdwin\nLeroy\nStuart\nWade\nGerardo\nGuillermo\nGustavo\nJustin\nLoren\nAlvin\nArnold\nDoug\nFredrick\nJamie\nGrant\nRoss\nFrancis\nJulian\nLeslie\nErick\nJulio\nTerrance\nCary\nGregg\nJessie\nJimmie\nKenny\nLeon\nRandolph\nTerrence\nAbel\nBradford\nDion\nLorenzo\nClinton\nDino\nPete\nScot\nMarcos\nCasey\nFreddie\nMarty\nToby\nTrent\nClarence\nMorgan\nPablo\nCorey\nFelipe\nMax\nStacey\nAndres\nColin\nLewis\nOrlando\nRod\nJess\nEvan\nFrankie\nDevin\nFloyd\nKerry\nNoel\nSam\nCameron\nErnie\nLouie\nJody\nNathaniel\nHerbert\nRobbie\nSammy\nBen\nDaren\nNeal\nAngelo\nDwight\nEdgar\nLeland\nRickey\nGilberto\nIvan\nTerence\nRogelio\nBlake\nRandal\nReynaldo\nTimmy\nFelix\nGarrett\nLaurence\nRudolph\nCharlie\nCurt\nGuadalupe\nIgnacio\nLester\nZachary\nChuck\nClayton\nClifton\nJonathon\nOmar\nTy\nBryant\nClark\nCory\nMarshall\nBenny\nNelson\nRex\nTomas\nHerman\nIsmael\nJared\nPat\nRamiro\nSidney\nStephan\nVince\nDarrel\nEverett\nHeath\nIsaac\nKris\nClyde\nJohnnie\nMonte\nRobin\nRodger\nSimon\nVirgil\nGarry\nJacob\nJean\nRob\nBart\nDewayne\nHans\nHugo\nJeremy\nNicolas\nPhil\nTod\nTyler\nBrendan\nConrad\nDrew\nJeffry\nElias\nHugh\nJoaquin\nMiles\nSaul\nWendell\nCedric\nDirk\nDonovan\nHarvey\nLyle\nMarlon\nWallace\nChester\nDonnie\nKelvin\nSheldon\nSpencer\nTeddy\nCecil\nEdwardo\nJerald\nMilton\nStewart\nVicente\nAbraham\nAlonzo\nDarnell\nDemetrius\nDerick\nXavier\nGino\nLionel\nRory\nAdolfo\nBryon\nEmilio\nDevon\nGerard\nJordan\nKim\nLynn\nDaron\nEdmund\nHumberto\nIsrael\nLamont\nOctavio\nRolando\nCarey\nClaude\nDante\nErin\nMarcel\nOliver\nRocky\nSantiago\nVaughn\nClay\nClint\nErich\nGarth\nGavin\nLuke\nMickey\nRich\nSeth\nTad\nVance\nBuddy\nDane\nEd\nLeonardo\nMauricio\nStefan\nAgustin\nAntoine\nBert\nCarlton\nDoyle\nEthan\nFabian\nFederico\nForrest\nJackie\nMyron\nOtis\nRobby\nSherman\nDamian\nEddy\nEsteban\nMoses\nRoman\nShon\nDeon\nLeonel\nLeopoldo\nPierre\nRusty\nSebastian\nThad\nAl\nBlair\nDesmond\nElmer\nJarrod\nKirt\nKurtis\nNoah\nTracey\nWillard\nAnton\nEarnest\nEfrain\nGonzalo\nJulius\nKendall\nMalcolm\nMonty\nPreston\nBryce\nEdmond\nFidel\nHarlan\nLars\nRaymundo\nReuben\nBoyd\nDarius\nDenny\nDeron\nDomingo\nDonnell\nFrederic\nJohnathan\nMorris\nRodrigo\nSalvatore\nTerrell\nTommie\nVan\nAlec\nAlexis\nAlvaro\nBlaine\nBrady\nFreddy\nJefferey\nJefferson\nJosh\nRichie\nAldo\nAntony\nAugustine\nBenito\nBennie\nDanial\nDonny\nEfren\nGerry\nGil\nHeriberto\nIra\nKraig\nLon\nNoe\nRoosevelt\nWill\nEli\nGregorio\nJerrold\nLamar\nLowell\nMariano\nMichel\nNickolas\nOwen\nRonny\nSantos\nStan\nWard\nAlphonso\nBernardo\nCliff\nErwin\nJan\nLane\nLuther\nMarcelino\nMoises\nReed\nRosendo\nSanford\nScotty\nSonny\nTrinidad\nAdalberto\nAlton\nBarton\nBritt\nChance\nDarwin\nDelbert\nDexter\nGarret\nIsidro\nJayson\nKennith\nKeven\nLeif\nLorne\nMack\nMary\nNicky\nRigoberto\nRodrick\nRoyce\nRussel\nThaddeus\nTimmothy\nWilbert\nAdan\nArchie\nArmand\nAurelio\nAustin\nBradly\nBrennan\nBrenton\nBrock\nBurton\nCornelius\nCornell\nDerik\nDiego\nEldon\nElliott\nEmmett\nFlorencio\nGraham\nHubert\nIrving\nLen\nNestor\nRojelio\nShayne\nAlain\nArron\nArt\nBarney\nCarter\nCourtney\nDario\nEmil\nGus\nJerold\nJoesph\nKip\nLincoln\nLucio\nMarkus\nMarlin\nMyles\nPercy\nTheron\nUlysses\nWillis\nArnulfo\nAubrey\nBaron\nBernie\nBrant\nBrice\nBrooks\nBruno\nCaesar\nCruz\nDarrick\nDarron\nDenis\nDewey\nEliseo\nFaustino\nGalen\nJacques\nJamey\nKelley\nKimberly\nKristopher\nLisa\nMikel\nMurray\nPorfirio\nQuinn\nReid\nRitchie\nRufus\nSal\nSandy\nWinston\nAlexandro\nAmado\nAndreas\nAron\nAugustus\nBrien\nCarlo\nCarmen\nClaudio\nDallas\nDick\nDonn\nDwain\nDylan\nEllis\nErrol\nEugenio\nGarland\nHoracio\nJake\nJosef\nLenny\nLes\nLupe\nMerrill\nNolan\nQuentin\nRandell\nRickie\nRuss\nSolomon\nStanford\nSterling\nSven\nSylvester\nTino\nVito\nAdolph\nArnoldo\nBrendon\nBurt\nCharlton\nChristophe\nCody\nDalton\nDaryn\nDel\nDominick\nDuke\nEmanuel\nEverardo\nFredric\nGarett\nGeno\nGeoff\nGrady\nHilario\nKai\nLucas\nMargarito\nMichale\nMichelle\nNorberto\nOsvaldo\nReggie\nRey\nRobb\nTyson\nWilbur\nWiley\nWilson\nZane\nAntone\nAric\nAriel\nAvery\nBennett\nBillie\nChet\nChip\nCollin\nCyrus\nDamien\nDelvin\nDeric\nDieter\nDuncan\nElbert\nGorge\nGreggory\nHarris\nHarrison\nHerschel\nJere\nJerrod\nJude\nJunior\nKermit\nKory\nLafayette\nLaron\nMerlin\nMicah\nMitch\nRaphael\nReyes\nRhett\nRudolfo\nRueben\nShelby\nStevie\nSusan\nTaylor\nVon\nWally\nWes\nAbelardo\nAlfie\nAlonso\nAndrei\nAugust\nCelestino\nCleveland\nCole\nCordell\nCristobal\nCristopher\nDarell\nDereck\nDerreck\nDerwin\nEloy\nEnrico\nEsequiel\nEstevan\nFlorentino\nForest\nFritz\nGabe\nGarrick\nGenaro\nHal\nHank\nHarley\nIssac\nJackson\nKennth\nKenton\nKlaus\nKristian\nKristofer\nLino\nLonny\nMarcellus\nMaxwell\nMel\nMerle\nMichele\nMitchel\nMontgomery\nNigel\nPrince\nQuintin\nRaymon\nRichardo\nRoque\nSandra\nShelton\nTobias\nTobin\nTrenton\nTrever\nTyron\nVal\nVidal\nWeston\nAndrea\nAntione\nAri\nBaltazar\nBenson\nBenton\nBrain\nBrenda\nCynthia\nDamion\nDarel\nDawn\nDell\nDemetri\nDemetrick\nDerk\nDeryl\nDimitri\nDonavan\nDouglass\nDrake\nEdmundo\nElizabeth\nElton\nElvis\nEzequiel\nFidencio\nHiram\nHomer\nHorace\nHouston\nIllya\nJade\nJasper\nJefrey\nJohnathon\nKeenan\nKirby\nKorey\nLeandro\nLorin\nLoyd\nLyman\nMarcelo\nMaria\nMarion\nMilo\nNed\nNorbert\nOtto\nPasquale\nRamsey\nRefugio\nRico\nRocco\nRoderic\nRolf\nStanton\nTadd\nTate\nTito\nTory\nTyree\nUriel\nWhitney\nWoodrow\nYsidro\nZoltan\nAmos\nAnderson\nAngus\nAra\nArtis\nAshley\nBarrett\nBarron\nBjorn\nBlas\nBranden\nBrook\nBrooke\nButch\nCedrick\nClemente\nCortland\nCyril\nDain\nDanniel\nDarek\nDavis\nDeandre\nDerrell\nDomonic\nDonato\nDondi\nDorian\nDustin\nDusty\nEdgardo\nEfrem\nElgin\nElliot\nElvin\nEmerson\nErie\nErvin\nEzra\nFausto\nFransico\nGareth\nGarey\nGarin\nGaylord\nGeorgie\nGerman\nIsaias\nJacinto\nJarvis\nJens\nJeremiah\nJohnpaul\nJonny\nJosue\nJudson\nKendrick\nKevan\nLamonte\nLauren\nLauro\nLayne\nLazaro\nLenard\nLevi\nLuciano\nLuigi\nMarcell\nMauro\nMaximino\nMaximo\nMichal\nMigel\nMilan\nMiller\nNels\nNorris\nOlaf\nOren\nOrville\nParis\nParrish\nPatrice\nPatricia\nPhilippe\nPieter\nRenato\nReymundo\nReynold\nRiley\nRodd\nRomeo\nRosario\nSalomon\nSammie\nScottie\nSevero\nSharon\nSkip\nStace\nThane\nTheo\nTorin\nTrini\nUbaldo\nUmberto\nVern\nVictoriano\nWilfredo\nWolfgang\nYusef\nAlden\nAli\nAmador\nAnders\nAngela\nAniceto\nAnn\nApolonio\nArcadio\nArmen\nArmondo\nArtemio\nAudie\nBernardino\nBertram\nBobbie\nBoris\nBrandt\nBrandy\nBreck\nBrenden\nCaleb\nCamilo\nCarson\nCeasar\nChauncey\nChristina\nChristoper\nColby\nCris\nDarryn\nDaryle\nDee\nDelton\nDenise\nDerric\nDomenic\nDominique\nDonaciano\nDudley\nDwaine\nDwane\nEleazar\nEliot\nEmmanuel\nEulalio\nFaron\nFarrell\nFelton\nFermin\nFlavio\nFletcher\nGarrison\nGaspar\nGearld\nGina\nGiovanni\nGodfrey\nHerb\nHernan\nHershel\nHipolito\nInocencio\nIrvin\nIvory\nJame\nJeb\nJennifer\nJohny\nKarlton\nKelton\nKendell\nKennon\nKenyatta\nKipp\nLeeroy\nLemuel\nLiam\nLindsey\nMac\nMacario\nMallory\nManny\nMartha\nMontrell\nMurphy\nNickey\nOllie\nOswaldo\nPaulo\nPhilbert\nQuincy\nRafe\nRegan\nReginal\nReinaldo\nRobbin\nRoddy\nRolland\nRonaldo\nRonnell\nRoscoe\nRoyal\nRudolf\nRufino\nSeamus\nSerjio\nShad\nSkipper\nTammy\nTerrill\nTimmie\nTrace\nTristan\nTucker\nTye\nValentin\nVerne\nVincente\nWeldon\nWellington\nWilliams\nMichael\nDavid\nRobert\nJohn\nJames\nRichard\nMark\nSteven\nChristopher\nBrian\nWilliam\nDaniel\nEric\nScott\nJeffrey\nPaul\nTimothy\nKevin\nAnthony\nThomas\nJoseph\nMatthew\nKenneth\nSean\nCharles\nGregory\nRonald\nStephen\nTodd\nGary\nEdward\nJose\nPatrick\nDonald\nJason\nAndrew\nDouglas\nGeorge\nFrank\nCraig\nPeter\nShawn\nDennis\nKeith\nRaymond\nLarry\nBryan\nJerry\nTroy\nMartin\nAaron\nMike\nJuan\nChris\nJonathan\nTony\nJeffery\nCarlos\nSteve\nVictor\nJon\nJeff\nManuel\nRodney\nDanny\nDarren\nErik\nRandy\nMarc\nJoe\nRussell\nVincent\nPhillip\nRoger\nDean\nJohnny\nAlan\nLawrence\nBrett\nDerek\nTerry\nGerald\nJoel\nArthur\nJesus\nAlbert\nMario\nPhilip\nRuben\nBruce\nSamuel\nLuis\nBenjamin\nBradley\nChristian\nWayne\nCarl\nRicardo\nJesse\nFrancisco\nGlenn\nJack\nAntonio\nCurtis\nAdam\nRoberto\nMiguel\nBrent\nRandall\nHenry\nAlexander\nJimmy\nLance\nRaul\nKelly\nShane\nJim\nRalph\nRyan\nWalter\nGilbert\nRoy\nLouis\nJay\nNicholas\nErnest\nGreg\nTim\nDale\nHector\nJaime\nJorge\nAllen\nDarin\nKirk\nGabriel\nRicky\nDarrell\nJavier\nMicheal\nDamon\nRonnie\nAlex\nArmando\nDarrin\nBobby\nRick\nKurt\nEddie\nLeonard\nChad\nAndre\nRay\nTom\nEugene\nLee\nBilly\nDon\nAlfred\nAdrian\nTravis\nSergio\nGlen\nArturo\nRafael\nTheodore\nHarold\nRamon\nStanley\nFernando\nEduardo\nDerrick\nFrederick\nRene\nBill\nNorman\nSalvador\nDan\nHoward\nKyle\nShannon\nMitchell\nOscar\nNathan\nTracy\nTommy\nJustin\nRon\nAlejandro\nMarcus\nFred\nGuy\nAlfredo\nRudy\nAlberto\nGeoffrey\nPedro\nClifford\nDuane\nDarryl\nDaryl\nDwayne\nKarl\nWarren\nEnrique\nBarry\nJoey\nMatt\nIan\nMarco\nWesley\nBrad\nReginald\nMarvin\nWillie\nJoshua\nCorey\nEdwin\nMaurice\nBret\nEarl\nAlfonso\nKen\nGene\nTrevor\nDana\nGerardo\nGuillermo\nLeon\nLonnie\nClinton\nHarry\nKent\nAngel\nJerome\nShaun\nAndy\nBrandon\nTed\nDave\nNick\nErnesto\nGordon\nErick\nGustavo\nStacy\nJeremy\nGrant\nRodolfo\nByron\nMathew\nLloyd\nMelvin\nCalvin\nFranklin\nVernon\nStuart\nWade\nNeil\nTyrone\nRoderick\nDion\nGregg\nClarence\nAllan\nFelipe\nJamie\nCameron\nFrancis\nCesar\nLouie\nEdgar\nJulian\nBernard\nHerbert\nRandolph\nRoland\nBob\nJody\nAbel\nAlvin\nArnold\nFrankie\nIvan\nAndres\nBen\nLeo\nNoel\nDoug\nLewis\nLoren\nLorenzo\nColin\nLeslie\nRoss\nDominic\nJimmie\nPete\nTerrence\nDustin\nFloyd\nLeroy\nTy\nCory\nKenny\nCary\nFelix\nJulio\nCasey\nDevin\nMarshall\nMax\nSpencer\nJessie\nMarcos\nPerry\nToby\nGarrett\nMarty\nTerrance\nJared\nOrlando\nFredrick\nJacob\nTerence\nEvan\nZachary\nDino\nRamiro\nRobbie\nSammy\nSeth\nDwight\nGuadalupe\nNathaniel\nLester\nPablo\nRogelio\nBryant\nTod\nTyler\nBrendan\nClayton\nBradford\nDonovan\nFreddie\nGilberto\nRobin\nSam\nBenny\nHumberto\nKerry\nMorgan\nTimmy\nTomas\nDaren\nIsmael\nAngelo\nHeath\nHugo\nIgnacio\nJohnnie\nRickey\nScot\nSheldon\nStacey\nTeddy\nJohnathan\nDirk\nIsaac\nJerald\nMonte\nSimon\nBlake\nCedric\nLaurence\nNeal\nOmar\nReynaldo\nClifton\nCurt\nErich\nHarvey\nJonathon\nRudolph\nStephan\nTrent\nNelson\nClint\nDemetrius\nRandal\nAlonzo\nCharlie\nDane\nDrew\nEdmund\nHerman\nJess\nLeland\nNicolas\nXavier\nOliver\nClyde\nErnie\nJoaquin\nLuke\nLyle\nMilton\nSidney\nBart\nDarrel\nHans\nIsrael\nRob\nChester\nChuck\nDylan\nErin\nKelvin\nRoman\nAntoine\nDevon\nEdwardo\nFabian\nJarrod\nLamont\nRex\nSaul\nClark\nClaude\nEd\nEverett\nSantiago\nVirgil\nDamian\nDonnie\nLionel\nMarcel\nMyron\nVicente\nBlaine\nBryon\nRolando\nVance\nAdolfo\nAgustin\nBert\nClay\nDewayne\nForrest\nJeffry\nLamar\nPhil\nWendell\nBlair\nDeon\nElias\nGarry\nGavin\nGerard\nGonzalo\nMalcolm\nScotty\nCarlton\nEfrain\nGino\nMiles\nRod\nBenito\nCecil\nEmilio\nHugh\nJosh\nShon\nAbraham\nBrenton\nConrad\nDante\nDarnell\nEsteban\nJackie\nMauricio\nMorris\nOtis\nPreston\nRodger\nSterling\nThad\nAntony\nDomingo\nKendall\nKim\nLeonardo\nMickey\nPat\nReed\nStewart\nNoe\nRocky\nDanial\nElliott\nEthan\nFidel\nLonny\nLowell\nRobby\nRonny\nRory\nSherman\nTad\nVince\nAlton\nBrock\nFreddy\nMarlon\nRaymundo\nReuben\nRigoberto\nLeopoldo\nLorne\nMoises\nNickolas\nOctavio\nRobb\nSalvatore\nSebastian\nStefan\nVaughn\nCourtney\nDexter\nEddy\nGarth\nGregorio\nJake\nJoesph\nKris\nLane\nLars\nLeif\nMonty\nVan\nAnton\nBennie\nBryce\nCarey\nDaron\nDelbert\nDeron\nDonny\nDoyle\nJordan\nKeven\nMicah\nWallace\nAldo\nBoyd\nCruz\nDamion\nDesmond\nEfren\nGerry\nJean\nJefferson\nLenny\nRusty\nShayne\nTerrell\nTrenton\nAlec\nArt\nDallas\nDamien\nDenny\nDiego\nGalen\nGarret\nJulius\nKurtis\nMarion\nNoah\nOwen\nRussel\nTommie\nAdan\nAl\nAlvaro\nBernardo\nDerick\nHeriberto\nJan\nLynn\nMichel\nPierre\nTracey\nArchie\nDenis\nDonnell\nElliot\nFederico\nJudd\nMason\nQuinn\nRodrigo\nSantos\nWill\nWillard\nAriel\nAron\nBrendon\nBuddy\nCliff\nEarnest\nFrederic\nIra\nJefferey\nLeonel\nMariano\nRich\nSal\nShelby\nThor\nAlphonso\nAugustine\nAurelio\nBradly\nDarwin\nDewey\nDuke\nEmil\nGiovanni\nKennith\nLisa\nLon\nMitchel\nRichie\nRickie\nSolomon\nStan\nTaylor\nTyson\nArmand\nAshley\nAubrey\nAustin\nBeau\nBrain\nClaudio\nColby\nCornell\nDarrick\nDuncan\nGrady\nGraham\nHomer\nJacques\nJamal\nKimberly\nKip\nKirt\nKraig\nKristopher\nLucio\nLupe\nRandell\nRaphael\nReggie\nRosendo\nRoyce\nSanford\nThaddeus\nTobin\nTrinidad\nWard\nWoodrow\nArnulfo\nBarney\nBarton\nBennett\nBobbie\nCarter\nDorian\nErvin\nKirby\nMaria\nMikel\nNolan\nRuss\nSandy\nSonny\nWes\nAlfie\nArnoldo\nAugust\nAvery\nBrady\nBrennan\nBritt\nBruno\nCarlo\nDarby\nDarius\nDarron\nDonn\nDrake\nEdmond\nEliseo\nGeoff\nHarlan\nHarley\nJayson\nJemal\nJerold\nJosef\nKenton\nLuther\nMack\nMarcelino\nMoses\nMyles\nReid\nRhett\nTheron\nTimmothy\nTristan\nVal\nValentin\nArron\nBarrett\nBernie\nBillie\nBrook\nCeasar\nCody\nCole\nDeandre\nDel\nDenver\nDeshawn\nDouglass\nElbert\nEli\nFermin\nFranz\nHank\nHubert\nJude\nJunior\nKristian\nLafayette\nMarcello\nMarkus\nMarlin\nMichelle\nPatricia\nRomeo\nShad\nShea\nStevie\nSylvester\nTino\nTobias\nWeston\nWillis\nAlexandro\nAndrea\nBaron\nBritton\nChet\nCleveland\nCristobal\nDavin\nDominick\nEdgardo\nEllis\nElmer\nEmmett\nErrol\nFredric\nGenaro\nGorge\nGus\nHorace\nHoracio\nHunter\nJade\nJeremiah\nJonah\nKendrick\nKenji\nLanny\nLevi\nLoyd\nLuciano\nMargarito\nMel\nMitch\nNicky\nOren\nParrish\nPatricio\nPaulo\nRocco\nRueben\nTrever\nWhitney\nAlfonzo\nAnderson\nAnthoney\nBranden\nBrant\nBud\nBurt\nButch\nChe\nCornelius\nDamone\nDanilo\nDeric\nEdmundo\nEldon\nFelton\nGabino\nGerman\nHilario\nJackson\nJacque\nJerrod\nJonny\nJorje\nJosue\nKelley\nLesley\nLincoln\nLorin\nMalik\nMarcell\nMauro\nMichale\nNestor\nNorberto\nOtto\nParker\nQuentin\nQuincy\nRaymon\nRefugio\nRico\nRodrick\nRonaldo\nRoosevelt\nRufus\nShanon\nTye\nWilbert\nWinston\nAlvino\nAndreas\nBrooks\nBurton\nCaesar\nCaleb\nCarnell\nCarroll\nCollin\nCordell\nCynthia\nCyrus\nDee\nDemian\nDerrek\nDieter\nEloy\nEmanuel\nErwin\nEzequiel\nForest\nFransisco\nIsaias\nIsidro\nJasen\nJed\nJudson\nKlaus\nKory\nKristofer\nLes\nLino\nLogan\nLyn\nMarcelo\nMaxwell\nModesto\nNorris\nRand\nReymundo\nRoel\nSalomon\nSerjio\nToney\nTyron\nValentine\nVidal\nWestley\nWilbur\nWiley\nWilfred\nYancy\nZane\nAdalberto\nAlexis\nAli\nAlonso\nAmado\nAmador\nAnastacio\nAndra\nAugustin\nBrenden\nBrien\nBuck\nCal\nCatarino\nChanning\nChristoph\nChristophe\nClemente\nConrado\nDagoberto\nDalton\nDarryn\nDell\nDru\nEduard\nElton\nElvin\nEmiliano\nEron\nEverardo\nEzra\nFausto\nFlavio\nFrancois\nGarrick\nGeorgie\nGreggory\nHal\nHamilton\nHipolito\nHiram\nJamey\nJerardo\nJerod\nJerrold\nKai\nKenney\nKorey\nLamarr\nLandon\nLauro\nLeandro\nLeigh\nLenard\nMary\nMigel\nMilo\nNigel\nRey\nReyes\nRicci\nRolf\nRubin\nRudolfo\nScottie\nSilverio\nSimeon\nStanton\nTory\nTyree\nUlysses\nUriel\nWally\nWyatt\nYsidro\nAce\nAhmed\nAlexandre\nAmos\nAnselmo\nAnson\nAntone\nAri\nArmond\nArtie\nAsa\nBarron\nBartholomew\nBenson\nBo\nBraden\nBrandt\nCarmen\nCarson\nCecilio\nChance\nCharley\nCharlton\nChase\nChauncey\nChip\nClaud\nColeman\nCoy\nCris\nCristopher\nCullen\nDaniele\nDarcy\nDarold\nDaryle\nDaryn\nDelon\nDevan\nDmitri\nDonte\nDwaine\nElijah\nEliot\nEmery\nEsequiel\nEstevan\nEusebio\nFletcher\nFlorencio\nFlorentino\nFranklyn\nGarland\nGeno\nGiuseppe\nHarrison\nHouston\nIsreal\nJamison\nJarrett\nJohnathon\nJonas\nJoseluis\nLaron\nLauren\nLawrance\nLayne\nLeander\nLiam\nLonnell\nLucas\nMarlo\nMatthias\nMaximilian\nMckinley\nMelecio\nMikeal\nMonroe\nNate\nNed\nNels\nOsvaldo\nOswaldo\nPercy\nPetar\nPhilippe\nQuinton\nRamsey\nRaoul\nReese\nRic\nRichardo\nRiley\nRoderic\nRonn\nRudolf\nSabino\nShann\nSlade\nStanford\nTeresa\nTyrell\nValentino\nVincenzo\nVon\nWillaim\nWilson\nYolanda\nAbelardo\nAbram\nAhmad\nAlain\nAlden\nAna\nApolonio\nAra\nArcadio\nArmen\nArno\nAugusto\nBaltazar\nBasilio\nBenedict\nBenjamen\nBerry\nBrandy\nBrannon\nBron\nCarleton\nChristiaan\nColton\nConan\nConstantine\nCurtiss\nDain\nDaivd\nDanniel\nDarick\nDaryll\nDax\nDelmar\nDemarcus\nDereck\nDerik\nDerwin\nDewitt\nDondi\nDonell\nDusty\nDwain\nEben\nEleazar\nEmory\nEnrico\nErie\nEugenio\nEverette\nFeliciano\nFerdinand\nFidencio\nFranco\nGasper\nGeraldo\nGeronimo\nGil\nGildardo\nGrabiel\nGrover\nGustav\nHassan\nHayden\nHilton\nIsaiah\nJabier\nJace\nJacinto\nJai\nJens\nJohnie\nJuventino\nKasey\nKenyatta\nKermit\nKevan\nKhalid\nKing\nKjell\nLamonte\nLavern\nLeonides\nLondon\nLou\nLucien\nLuiz\nMarcellus\nMaynard\nMerle\nMicahel\nMichele\nMichial\nMikael\nMontgomery\nMonti\nNapoleon\nNarciso\nNils\nOlaf\nOrville\nPaco\nPaolo\nParis\nParris\nPascual\nPasquale\nPernell\nPieter\nQuintin\nRaynard\nRegina\nRigo\nRollin\nRoque\nRosalio\nSamson\nSanders\nSerafin\nServando\nSkip\nSven\nTeodoro\nTerance\nTerrill\nTheadore\nThornton\nTibor\nTimmie\nToni\nTrace\nTrevin\nVerdell\nWeldon\nWest\nWilford\nWilfredo\nWilhelm\nYoung\nMichael\nDavid\nRobert\nJohn\nJames\nRichard\nChristopher\nMark\nBrian\nSteven\nJason\nEric\nWilliam\nDaniel\nScott\nJeffrey\nPaul\nAnthony\nThomas\nJoseph\nKevin\nMatthew\nTimothy\nCharles\nGregory\nSean\nKenneth\nRonald\nStephen\nEdward\nJose\nTodd\nPatrick\nGary\nAndrew\nDonald\nDouglas\nShawn\nFrank\nAaron\nRaymond\nCraig\nGeorge\nKeith\nPeter\nDennis\nJuan\nBryan\nLarry\nJonathan\nTroy\nCarlos\nMarc\nErik\nJeffery\nJerry\nVictor\nMartin\nManuel\nDarren\nJon\nJoe\nMike\nChris\nTony\nMario\nSteve\nVincent\nRussell\nDanny\nRodney\nJeff\nJesus\nLawrence\nSamuel\nBradley\nPhillip\nAlbert\nRandy\nBenjamin\nRicardo\nDean\nLance\nDerek\nAlan\nCorey\nLuis\nArthur\nRuben\nAdam\nRoger\nGerald\nJohnny\nPhilip\nJesse\nBrent\nJoel\nBrett\nFrancisco\nMiguel\nChristian\nAntonio\nHenry\nCarl\nTerry\nJeremy\nAlexander\nShane\nGlenn\nBruce\nRoberto\nCurtis\nErnest\nJack\nWayne\nKelly\nRandall\nGilbert\nGabriel\nRyan\nTravis\nJimmy\nJaime\nChad\nJoshua\nHector\nRaul\nRoy\nGreg\nDamon\nJorge\nKirk\nRalph\nArmando\nMicheal\nOscar\nLouis\nAlex\nJustin\nJay\nBilly\nJavier\nWalter\nDale\nEugene\nNicholas\nDerrick\nJim\nShannon\nAllen\nRicky\nMarcus\nAndre\nDarin\nBobby\nRay\nGlen\nLee\nTim\nNathan\nDarrell\nEduardo\nRick\nEddie\nFernando\nEnrique\nRafael\nFrederick\nRamon\nSergio\nKurt\nLeonard\nSalvador\nAlfred\nHarold\nRene\nKyle\nRonnie\nTheodore\nArturo\nAdrian\nCory\nTom\nDarrin\nTommy\nWesley\nBrad\nAlejandro\nPedro\nAlberto\nBrandon\nIan\nMarco\nNorman\nDon\nRudy\nBarry\nGeoffrey\nNeil\nFred\nClifford\nBill\nAlfredo\nMarvin\nMitchell\nDwayne\nRon\nDan\nCesar\nWarren\nStanley\nTyrone\nHoward\nKarl\nMaurice\nTed\nEdwin\nWillie\nMathew\nAndy\nTrevor\nClinton\nDaryl\nMatt\nDarryl\nGuy\nReginald\nAngel\nDuane\nErick\nJerome\nEarl\nGustavo\nErnesto\nGordon\nJamie\nKent\nByron\nMelvin\nGene\nTracy\nJoey\nNick\nAlfonso\nDana\nDustin\nRoss\nShaun\nDave\nGerardo\nLoren\nZachary\nGrant\nHarry\nDominic\nJulio\nLeroy\nCameron\nColin\nWade\nBret\nCasey\nDion\nLeo\nSam\nFrancis\nJulian\nDonovan\nGarrett\nJacob\nAllan\nJody\nLeon\nLonnie\nGuillermo\nMorgan\nRodolfo\nCalvin\nAndres\nStuart\nLloyd\nBen\nFelipe\nAlvin\nKen\nFranklin\nJimmie\nRoland\nGilberto\nMarcos\nRoderick\nStacy\nBernard\nDwight\nJared\nToby\nNathaniel\nOmar\nVernon\nGregg\nBob\nClarence\nDevin\nLeslie\nLorenzo\nRandolph\nArnold\nPablo\nCary\nClayton\nEdgar\nPete\nSpencer\nIvan\nPerry\nFelix\nLewis\nScot\nGuadalupe\nJessie\nRoman\nEvan\nRogelio\nNoel\nTyler\nFrankie\nIsaac\nMarshall\nTerrence\nDylan\nHerbert\nRamiro\nFredrick\nHugo\nIgnacio\nVance\nJohnnie\nLouie\nOrlando\nSheldon\nTerrance\nKenny\nLamont\nNeal\nFreddie\nJess\nSaul\nBlake\nClint\nMarty\nRob\nMauricio\nRandal\nAbel\nAngelo\nEverett\nFloyd\nNicolas\nTrent\nBrendan\nJamal\nTy\nErnie\nNelson\nErin\nJosh\nStephan\nAlonzo\nIsmael\nTerence\nClark\nDoug\nJeffry\nKerry\nRickey\nAbraham\nBradford\nBryant\nSidney\nErich\nHeath\nJoaquin\nMax\nSeth\nElias\nGavin\nHerman\nNoah\nShon\nAntoine\nChuck\nDonnie\nJerald\nJohnathan\nLester\nLuke\nMalcolm\nRobbie\nRobin\nRudolph\nStacey\nCedric\nClifton\nFabian\nIsrael\nJordan\nSammy\nCurt\nDirk\nEdwardo\nHumberto\nLaurence\nMilton\nBryon\nChester\nHans\nJean\nJonathon\nBart\nBenny\nDino\nGino\nMonte\nCharlie\nDamian\nEdmund\nEsteban\nForrest\nLeland\nLionel\nOliver\nSimon\nVicente\nXavier\nAdolfo\nJemal\nTomas\nVince\nDewayne\nGarry\nMyron\nRocky\nDaren\nDemetrius\nReynaldo\nTimmy\nTod\nWallace\nWendell\nEmilio\nEthan\nHarvey\nMarcel\nMiles\nRex\nRory\nSantiago\nAgustin\nCecil\nJayson\nJefferson\nLyle\nConrad\nDante\nDarrel\nDrew\nHugh\nKristopher\nSonny\nStewart\nTeddy\nBlaine\nClyde\nGarth\nKris\nMarlon\nNoe\nRaymundo\nScotty\nAlvaro\nDane\nDarnell\nDevon\nGerard\nGraham\nMoses\nPat\nBernardo\nEfrain\nJackie\nKendall\nLamar\nPhil\nRoyce\nTerrell\nVirgil\nClay\nEfren\nGerry\nKelvin\nKim\nPreston\nRodrigo\nBenito\nBryce\nCourtney\nDarwin\nDonnell\nLeonardo\nSebastian\nShayne\nAldo\nAron\nBert\nBrady\nDenny\nGonzalo\nGregorio\nIra\nJarrod\nJulius\nLeif\nPierre\nRigoberto\nDeon\nDiego\nDoyle\nFreddy\nMason\nMoises\nRobby\nRod\nSherman\nStefan\nSterling\nThad\nDarius\nEd\nEmmett\nGarret\nKory\nKraig\nLowell\nMickey\nMonty\nOctavio\nOwen\nRaphael\nRodger\nTommie\nAurelio\nDarrick\nDerick\nFidel\nJefferey\nJoesph\nLeopoldo\nOtis\nReggie\nReuben\nRobb\nRodrick\nRussel\nAlphonso\nAubrey\nAugust\nBennie\nCaesar\nCarlton\nDamien\nFederico\nGeoff\nGrady\nKristian\nKurtis\nLars\nLynn\nMorris\nQuentin\nTracey\nArchie\nArnulfo\nAugustine\nAustin\nBradly\nBuddy\nCollin\nCruz\nDeron\nDuncan\nElliott\nErrol\nJerrold\nJude\nMarcelino\nReed\nTobias\nAlexis\nCarey\nCarlo\nDelbert\nDenis\nEmanuel\nEmmanuel\nGalen\nJan\nLane\nLuther\nMichel\nRolando\nVaughn\nAl\nDanial\nDaron\nDeandre\nDonny\nEdmond\nElijah\nEloy\nGenaro\nJarrett\nLisa\nLucas\nTheron\nTrinidad\nTyson\nWill\nWillard\nAndreas\nAntony\nArt\nBeau\nClaudio\nDemian\nHeriberto\nJamison\nKelley\nKip\nLonny\nLorne\nMikel\nRenato\nRichie\nSantos\nShan\nStevan\nThaddeus\nAbelardo\nAri\nBarrett\nBrant\nChance\nClaude\nCliff\nDominick\nEverardo\nFrederic\nJacques\nLupe\nMilo\nReyes\nRonny\nRusty\nSalvatore\nTrenton\nWillis\nWilson\nAdan\nAlton\nAnton\nArron\nBernie\nBoyd\nCody\nCornelius\nDallas\nDario\nDaryle\nDerik\nDexter\nDonavan\nEddy\nElbert\nEli\nHubert\nJake\nJosue\nMicah\nNolan\nQuinn\nSal\nTobin\nUlysses\nValentin\nWilbert\nWilfred\nAriel\nBarton\nBrock\nChe\nDouglass\nDusty\nEarnest\nElmer\nErwin\nGorge\nLincoln\nLorin\nMarcelo\nMarkus\nPercy\nRefugio\nRich\nRocco\nRosendo\nShad\nShelby\nSolomon\nThor\nBurt\nColby\nDarron\nDwain\nEmiliano\nEugenio\nGerman\nGus\nHarlan\nJackson\nJed\nKennith\nKeven\nLenny\nMarcello\nMichale\nMichelle\nMurray\nOtto\nParis\nRhett\nRojelio\nStan\nVal\nWinston\nAlexandro\nAric\nArnoldo\nBlair\nBurton\nCarter\nCharley\nClemente\nCole\nCornell\nCristian\nCyrus\nDimitri\nDorian\nDuke\nElliot\nEzequiel\nEzra\nGiovanni\nHoracio\nIsidro\nJeremiah\nJonas\nJudd\nLucio\nNicky\nParker\nPorfirio\nReid\nRey\nRico\nRiley\nRomeo\nRoosevelt\nRuss\nSandy\nScottie\nTad\nTory\nVan\nWeston\nZane\nAdalberto\nAntone\nBillie\nBrendon\nBrennan\nCarson\nCristobal\nDarby\nDavin\nDel\nDeshawn\nDomingo\nDominique\nEdgardo\nEdmundo\nEmil\nEstevan\nGarrick\nHorace\nJasen\nJunior\nKenji\nKimberly\nKirby\nLamonte\nLandon\nMaria\nNickolas\nRickie\nRufus\nSanford\nSylvester\nAlec\nAshley\nBarney\nBenson\nBrain\nBruno\nCaleb\nChadwick\nDemetrio\nEliseo\nEllis\nEnrico\nErvin\nHomer\nJamey\nJeromy\nJerrod\nKendrick\nLaron\nLavell\nLazaro\nLon\nMargarito\nMary\nMaxwell\nMitchel\nMyles\nOsvaldo\nRoyal\nShelton\nTaylor\nTimmothy\nTorrey\nWilbur\nWyatt\nAlain\nAram\nBritt\nBuck\nCandelario\nCeasar\nChristoper\nChristophe\nCris\nDarian\nDax\nDee\nDeric\nDonte\nDrake\nDwane\nFlorencio\nGarland\nGeno\nGil\nHiram\nIsaias\nJennifer\nJerold\nJonah\nJonny\nJosef\nKennth\nKenton\nKirt\nKorey\nLayne\nLeonel\nMarcellus\nMauro\nMichele\nRandell\nRenee\nRonaldo\nSammie\nSandra\nSerafin\nStevie\nVincente\nWeldon\nWes\nAmador\nArmand\nBartholomew\nBobbie\nBrandt\nBrice\nBrook\nBrooks\nChet\nChristine\nCleveland\nCoby\nDannie\nDewey\nErie\nEulalio\nFausto\nFeliciano\nFermin\nFletcher\nFranco\nGeoffery\nGeraldo\nGideon\nHarley\nHomero\nIrvin\nIsaiah\nJacinto\nJameson\nJudson\nJuventino\nKai\nKeenan\nLamarr\nLeandro\nLeigh\nLiam\nLino\nLogan\nMarion\nMel\nMilan\nNikolas\nNorberto\nOrion\nPascual\nPatricia\nPatricio\nRichardo\nSerjio\nStephanie\nTammy\nTeodoro\nTino\nTito\nTruman\nTyree\nUbaldo\nValentino\nVidal\nVito\nVon\nWalker\nWard\nWilfredo\nAlbino\nAudie\nAvery\nBaron\nBoris\nBrenton\nBrien\nChristina\nClement\nColeman\nCorbin\nCorwin\nDamion\nDelano\nDemarco\nDemetri\nDerrek\nDonavon\nDonn\nElizabeth\nElton\nElvin\nEriberto\nEverette\nFaustino\nFilemon\nForest\nGarett\nGildardo\nHank\nHayden\nHuey\nJasper\nJeffory\nJimi\nJulie\nKavin\nKermit\nKevan\nLambert\nLauro\nLemuel\nLeobardo\nLes\nLevi\nMacario\nMack\nManny\nMarcell\nMarlo\nMarquis\nMarshal\nMatias\nMaury\nMaximiliano\nMerrill\nMikeal\nModesto\nNed\nNestor\nNorris\nOrrin\nPaolo\nParrish\nPaulo\nPhilemon\nRandel\nRito\nRoddy\nRudolfo\nSamson\nShea\nSimeon\nTerrill\nThurman\nTimmie\nTristan\nTyron\nWally\nAdolph\nAhmad\nAlfie\nAlfonzo\nAli\nAllyn\nAlvino\nAmado\nAmos\nAnthoney\nAntwine\nAntwon\nApolonio\nArmen\nAugustin\nBennett\nButch\nByran\nCale\nClarke\nConan\nCoy\nCyril\nDanilo\nDanniel\nDarick\nDaryn\nDemetric\nDemetrios\nDeondre\nDereck\nDerrik\nDesmond\nDick\nDonell\nEldridge\nEsequiel\nEzekiel\nFarrell\nFiliberto\nFlavio\nFritz\nGamaliel\nGareth\nGeary\nHal\nHarrison\nHassan\nJai\nJamel\nJeramy\nJerardo\nJohnathon\nJomo\nJustino\nJuvenal\nKasey\nKenya\nKlaus\nKonrad\nKristen\nLanny\nLashawn\nLauren\nLavon\nLen\nLenard\nLindsey\nLuciano\nLuigi\nLyndon\nMalik\nMerle\nMerlin\nNewton\nNigel\nNils\nNino\nNorbert\nOrville\nPaulino\nRance\nRaoul\nRavi\nRaymon\nRaymund\nReinaldo\nReymundo\nReynold\nRic\nRitchie\nRobbin\nRolf\nRonnell\nRosalio\nSanjay\nShanon\nShay\nSheridan\nShonn\nSkipper\nStanton\nSven\nTaras\nTheo\nTorrance\nUriel\nValentine\nVern\nVictoriano\nWiley\nWoodrow\nYancy\nYsidro\nAdrain\nAlonso\nAndra\nAndrea\nArley\nArmondo\nArnie\nAsa\nAxel\nBaltazar\nBarron\nBasilio\nBo\nBonnie\nBrannon\nBrenden\nCarmen\nCarnell\nCatarino\nCedrick\nChip\nChistopher\nCirilo\nCorbett\nCordell\nCrispin\nCristopher\nCuauhtemoc\nDal\nDalton\nDamond\nDeane\nDelfino\nDemitrius\nDemon\nDenise\nDennie\nDerric\nDerwin\nDeshon\nDeven\nDieter\nDionicio\nDondi\nDudley\nDwaine\nEarle\nEduard\nEfrem\nEldon\nEleazar\nElgin\nEliazar\nEliot\nEmile\nEnoch\nEusebio\nFidencio\nFrancesco\nFransisco\nGabe\nGale\nGarvin\nGaston\nGentry\nGeronimo\nGreggory\nHamilton\nHarris\nHernan\nHerschel\nHilton\nHunter\nIke\nIllya\nJacque\nJade\nJayme\nJeanpaul\nJens\nJohannes\nJohnie\nJory\nJoseluis\nJubal\nJules\nJunius\nKary\nKenyon\nKieth\nKit\nKristofer\nLadell\nLafayette\nLawrance\nLeron\nLindsay\nLucien\nLyn\nMarlin\nMarques\nMateo\nMckinley\nMelissa\nMichal\nMickael\nMitch\nMontgomery\nNels\nOdell\nOlen\nOlin\nOtha\nPage\nPaige\nPatric\nPhilippe\nPilar\nRamsey\nRand\nRolland\nRomel\nSalvadore\nSandor\nShawnee\nSilvestre\nSydney\nTavis\nTige\nTitus\nTor\nUlises\nVicent\nVladimir\nWarner\nWayland\nWhitney\nWilliams\nWilly\nZack\nMichael\nDavid\nRobert\nJohn\nJames\nJason\nChristopher\nRichard\nEric\nMark\nSteven\nBrian\nWilliam\nDaniel\nJeffrey\nScott\nKevin\nJoseph\nAnthony\nMatthew\nPaul\nThomas\nTimothy\nCharles\nGregory\nSean\nKenneth\nJose\nEdward\nRonald\nStephen\nAndrew\nAaron\nDonald\nShawn\nPatrick\nTodd\nGary\nGeorge\nFrank\nCraig\nDouglas\nRaymond\nPeter\nJuan\nJonathan\nCarlos\nBryan\nDennis\nErik\nTroy\nKeith\nJeremy\nVictor\nLarry\nMarc\nJerry\nAdam\nChris\nManuel\nJeffery\nJoe\nJon\nMartin\nJoshua\nTony\nDerek\nMario\nVincent\nDarren\nLance\nJesus\nRicardo\nBenjamin\nLuis\nPhillip\nJesse\nAntonio\nBrandon\nRuben\nGabriel\nSteve\nJohnny\nRandy\nChad\nAlbert\nDanny\nSamuel\nBradley\nChristian\nMarcus\nBrent\nMike\nTravis\nJoel\nLawrence\nJeff\nRussell\nBrett\nRodney\nArthur\nAlexander\nShane\nFrancisco\nRaul\nGerald\nRoberto\nRyan\nAlan\nJustin\nRoger\nHenry\nMiguel\nCarl\nPhilip\nJorge\nWayne\nDamon\nDean\nTerry\nNathan\nCurtis\nJack\nRoy\nJaime\nArmando\nRalph\nJavier\nBruce\nGlenn\nErnest\nHector\nNicholas\nJimmy\nOscar\nJay\nGilbert\nGreg\nBilly\nFernando\nAlex\nBobby\nWalter\nLouis\nRandall\nAllen\nCorey\nDerrick\nAndre\nDarrell\nEddie\nLee\nKyle\nKelly\nEduardo\nArturo\nEugene\nRamon\nAdrian\nKirk\nLeonard\nSergio\nShannon\nRafael\nDale\nIan\nGeoffrey\nMicheal\nRene\nRonnie\nJim\nSalvador\nFrederick\nRicky\nAlejandro\nGlen\nEnrique\nAlfred\nTheodore\nHarold\nMarco\nKurt\nAlberto\nPedro\nTommy\nDustin\nDarrin\nRay\nCesar\nJamie\nAlfredo\nClifford\nBrad\nRick\nCory\nDon\nRudy\nMaurice\nTim\nBarry\nBill\nFred\nGerardo\nTom\nAngel\nDarin\nWesley\nClinton\nErnesto\nJacob\nDaryl\nDwayne\nTyrone\nEdwin\nDuane\nKarl\nMathew\nJerome\nWillie\nDan\nGustavo\nNeil\nAndy\nStanley\nAlfonso\nGuy\nMarvin\nMitchell\nNorman\nDarryl\nJulio\nWarren\nMarcos\nTrevor\nEarl\nGrant\nTed\nByron\nHoward\nMatt\nMelvin\nReginald\nGarrett\nBret\nJoey\nWade\nDominic\nEdgar\nOmar\nLeon\nRodolfo\nZachary\nErick\nHarry\nIsaac\nCasey\nRon\nShaun\nDana\nGuillermo\nJulian\nAllan\nAndres\nColin\nKent\nLloyd\nRoman\nBen\nCalvin\nDion\nGene\nToby\nSeth\nJody\nPablo\nSam\nMorgan\nNathaniel\nDonovan\nIsmael\nRoss\nGordon\nIvan\nLoren\nLeo\nJared\nNick\nTerrence\nClint\nFelipe\nTracy\nKen\nNoel\nDave\nNoah\nAbel\nRoland\nDevin\nLeroy\nLonnie\nLorenzo\nPete\nClarence\nLeslie\nSaul\nDamian\nVernon\nTrent\nEvan\nMax\nAlvin\nArnold\nGregg\nIgnacio\nOrlando\nFrancis\nFrankie\nGilberto\nFelix\nHeath\nRoderick\nCameron\nDylan\nJimmie\nJoaquin\nKerry\nMarshall\nBernard\nClayton\nTyler\nBlake\nFranklin\nHugo\nStuart\nFloyd\nJohnathan\nStacy\nHerbert\nPerry\nAbraham\nBob\nLouie\nDoug\nJonathon\nRogelio\nFreddie\nFredrick\nLewis\nJosh\nKenny\nNeal\nSammy\nTy\nDwight\nJessie\nLuke\nRobin\nTerrance\nAngelo\nJohnnie\nKelvin\nRamiro\nRandolph\nSpencer\nErnie\nIsrael\nJess\nRandal\nNicolas\nBradford\nEmilio\nLamont\nMarlon\nJamal\nScot\nBrady\nBryant\nBryon\nDeon\nFabian\nGuadalupe\nNelson\nRolando\nStephan\nTerence\nDante\nElias\nJayson\nRex\nRudolph\nDino\nEthan\nJarrod\nShon\nSidney\nTomas\nCary\nCurt\nLester\nSantiago\nBrendan\nClifton\nHarvey\nChester\nDarnell\nErin\nJordan\nMilton\nRobbie\nAntoine\nCharlie\nHerman\nLamar\nMalcolm\nRodrigo\nCedric\nClark\nDemetrius\nEli\nSimon\nBenny\nErich\nEsteban\nGavin\nLyle\nMarty\nDaren\nDevon\nEverett\nReuben\nRigoberto\nXavier\nBart\nDonnie\nGarry\nGino\nMonte\nRob\nTyson\nDewayne\nDirk\nHugh\nHumberto\nKristopher\nLaurence\nPreston\nRickey\nStefan\nChuck\nHans\nJean\nReynaldo\nRod\nVicente\nAdolfo\nClay\nGarth\nGregorio\nJerald\nTeddy\nAgustin\nAlvaro\nAron\nBryce\nClyde\nFidel\nJermaine\nMicah\nJackie\nLeland\nMiles\nConrad\nEdmund\nEdwardo\nFederico\nGerard\nGonzalo\nMauricio\nOctavio\nSheldon\nVince\nAlonzo\nCarlo\nCarlton\nEfren\nMarcel\nMoises\nRory\nSantos\nAldo\nBenito\nDarrel\nJake\nJefferson\nJeffry\nLeonardo\nOliver\nBeau\nBlair\nDrew\nEfrain\nFreddy\nIra\nLeif\nNoe\nOwen\nRocky\nShayne\nStacey\nTimmy\nVance\nVirgil\nForrest\nKory\nShad\nSherman\nElliott\nJeremiah\nJonas\nKim\nMyron\nStewart\nChe\nClaude\nDiego\nDomingo\nGeoff\nJude\nLionel\nMason\nRaymundo\nSebastian\nWallace\nAdan\nArchie\nBert\nDamien\nDemian\nGraham\nKendall\nKeven\nKris\nKurtis\nQuentin\nQuinn\nSonny\nTobias\nTod\nZane\nBernardo\nColby\nDane\nDaryle\nEarnest\nKristian\nNickolas\nRonny\nRusty\nAl\nAurelio\nCarey\nCecil\nDamion\nDarrick\nDeandre\nDenny\nEdmond\nLucas\nRobby\nAnton\nAriel\nBennie\nBlaine\nBrant\nCody\nDanial\nGorge\nJasen\nLynn\nNolan\nOtis\nPat\nRodger\nScotty\nTerrell\nAric\nArnulfo\nAugustine\nAustin\nCornelius\nDerick\nJerrod\nLane\nLuther\nMichel\nMorris\nRaphael\nTrinidad\nVan\nAndreas\nBrendon\nDonnell\nEd\nEmanuel\nFrederic\nGiovanni\nIsidro\nJacques\nJoesph\nJulius\nLonny\nMonty\nMoses\nPierre\nReid\nRhett\nTommie\nAugust\nCollin\nDarius\nDax\nDelbert\nDuncan\nEddy\nEmil\nHeriberto\nJudson\nLars\nMack\nRobb\nTad\nTrenton\nAlec\nBoyd\nBrenton\nCaesar\nCeasar\nCole\nCruz\nDallas\nEdmundo\nEmmanuel\nLeopoldo\nRussel\nSal\nTobin\nUriel\nAlton\nArron\nBillie\nBrice\nBrook\nCliff\nDarwin\nDerik\nDonavan\nGarrick\nJamey\nJeromy\nLon\nMalik\nMarcelo\nMickey\nSalvatore\nThad\nThaddeus\nVaughn\nWill\nWyatt\nAdolph\nAubrey\nBrain\nBrandt\nCristopher\nCyrus\nDaron\nDenis\nDeron\nDominick\nEstevan\nGenaro\nGerman\nGerry\nGreggory\nHarley\nJefferey\nJosef\nKelley\nLorne\nLowell\nMarcelino\nNicky\nQuinton\nRodrick\nThor\nUlysses\nWendell\nWilbert\nWilfred\nWillard\nWillis\nAlphonso\nAri\nArt\nBarrett\nBrien\nBrock\nBruno\nBurton\nCaleb\nChadwick\nChance\nDario\nDarron\nDavin\nDavis\nDewey\nDouglass\nEdgardo\nElmer\nErwin\nFaustino\nGarret\nHubert\nIrving\nJackson\nJan\nJed\nKendrick\nKennith\nKenyatta\nLeonel\nLino\nMariano\nMichelle\nRosendo\nRuss\nTheron\nTracey\nWinston\nAbelardo\nAdalberto\nAntony\nArmand\nBarton\nChristophe\nCorbin\nCornell\nDonny\nDorian\nEliseo\nFransisco\nGalen\nHoracio\nJamison\nJerrold\nJorje\nLuciano\nMarion\nMurray\nNestor\nNils\nNorberto\nParis\nPhil\nRoosevelt\nRoyce\nSanford\nShan\nSterling\nToriano\nTristan\nVito\nWard\nWes\nWilson\nAlexandro\nArnoldo\nClaudio\nDarian\nDesmond\nDexter\nDonte\nDoyle\nElbert\nElizabeth\nErvin\nEverardo\nEzequiel\nFausto\nHal\nJarrett\nKraig\nLandon\nLincoln\nLupe\nMaxwell\nMikel\nRefugio\nRey\nSandy\nScottie\nShanon\nTravon\nWeston\nAndrea\nAntione\nArtemio\nAshley\nBaron\nBennett\nBernie\nBoris\nBraden\nBranden\nBritt\nBuck\nCarter\nCatarino\nCris\nDawn\nDereck\nEldon\nEleazar\nElgin\nElijah\nEllis\nErie\nErrol\nGrady\nHilario\nHorace\nJade\nJayme\nJennifer\nJudd\nKorey\nLazaro\nLen\nLucio\nMarcellus\nMaria\nMarlin\nMitch\nMitchel\nNed\nOtto\nPascual\nPercy\nQuincy\nReyes\nRico\nSandra\nShay\nShea\nAdrain\nAlexis\nBradly\nBrooks\nCourtney\nDarby\nDonn\nDuke\nDwain\nEliot\nEloy\nFlorencio\nFlorentino\nForest\nGarett\nHarlan\nHomer\nJeanpaul\nJerardo\nJerold\nJohnathon\nJonah\nKeenan\nLamonte\nLaron\nMarcello\nMarquis\nMauro\nMerle\nMonroe\nNapoleon\nOdell\nReed\nReggie\nRojelio\nShelton\nSylvester\nTaylor\nTimmothy\nTory\nValentin\nAlain\nAntone\nArmondo\nArtie\nAugustin\nBartholomew\nBenson\nBrennan\nCarson\nChet\nClemente\nConrado\nDel\nDenver\nDimitri\nDomenic\nDonavon\nDrake\nEnrico\nEugenio\nFerdinand\nFermin\nGaret\nGarland\nGus\nHank\nIsaiah\nKavin\nKeir\nKenton\nKimberly\nLamarr\nLeigh\nLevi\nLindsey\nLogan\nManny\nMarkus\nMontgomery\nNathanael\nNorbert\nPaulo\nQuintin\nRenee\nRich\nRoderic\nRosalio\nRoyal\nRubin\nSalomon\nShiloh\nSilas\nSolomon\nStan\nYancy\nAli\nAlonso\nAvery\nBarney\nBrooke\nCandelario\nCarleton\nDannie\nDarien\nDavey\nDemetrio\nDieter\nDominique\nDwane\nEfrem\nElliot\nElvin\nEmmett\nEriberto\nFeliciano\nFiliberto\nFletcher\nGale\nGentry\nGraig\nHiram\nJomo\nJoseluis\nJunior\nKai\nKasey\nKenyon\nKieth\nLauren\nLisa\nLonnell\nMarcial\nMateo\nMel\nMilo\nMonica\nMyles\nOren\nParker\nParrish\nPatricio\nPrince\nRolf\nRudolfo\nRueben\nRufus\nSamson\nSanjay\nShelby\nSky\nSven\nTino\nToney\nTorrance\nTrever\nTye\nYuri\nAhmad\nAlicia\nApolonio\nAram\nArmond\nBobbie\nCarnell\nCassidy\nCharley\nChase\nChristiaan\nCipriano\nCorwin\nCourtland\nCristobal\nDameon\nDaryll\nDaryn\nDemarco\nDudley\nDusty\nEmile\nEmiliano\nEulalio\nEzra\nFranz\nGareth\nGiancarlo\nGildardo\nHernan\nIrvin\nIsaias\nJeramy\nJimi\nJosue\nKenji\nKenya\nKiley\nKip\nKirt\nKristen\nKristofer\nLauro\nLawrance\nLeander\nLeandro\nLenard\nLenny\nLuigi\nMarcell\nMarquette\nMary\nMaximiliano\nMikael\nModesto\nNiels\nNigel\nNorris\nOlaf\nPatric\nRandell\nRaoul\nRaynaldo\nRegis\nRenato\nReymundo\nRichardo\nRito\nRonaldo\nRosario\nRoscoe\nSabino\nSamir\nSammie\nSeann\nStevie\nSydney\nTito\nUbaldo\nWilly\nZak\nAlvis\nAmir\nAmon\nAngela\nAnthoney\nArlo\nArtis\nBarron\nBerry\nBowen\nBraulio\nBrion\nBrodie\nBryn\nBud\nBurke\nCamilo\nCarmelo\nCash\nCedrick\nChico\nChistopher\nChristoper\nChristoph\nCleveland\nCorbett\nCornelio\nCuauhtemoc\nDarcy\nDelano\nDell\nDenton\nDesi\nDiana\nDionicio\nElton\nEpifanio\nErasmo\nEvaristo\nFidencio\nFlavio\nFritz\nGabe\nGabino\nGaspar\nGeno\nGermaine\nGeronimo\nGil\nHarris\nHarrison\nHassan\nHeather\nIssac\nJarvis\nJasper\nJaysen\nJemal\nJeremey\nJhon\nJosiah\nKarsten\nKendal\nKermit\nKirby\nLadell\nLavell\nLemuel\nLoyd\nLydell\nMace\nMajor\nMarie\nMarko\nMaximo\nMerlin\nMervin\nMigel\nNate\nOrville\nOsvaldo\nPorfirio\nRand\nRavi\nReese\nReginal\nRenard\nRichie\nRickie\nRitchie\nRocco\nRomeo\nRonell\nRonnell\nSamual\nSerjio\nTaj\nTammy\nTeodoro\nTitus\nTorrey\nTrace\nVal\nValentino\nVincente\nVon\nWarner\nWayland\nWilbur\nWiley\nWilliams\nWoody\nAlden\nAlegandro\nAmador\nAnastacio\nAnders\nAnselmo\nAnson\nAugustus\nAxel\nBasilio\nBenedict\nBernabe\nBjorn\nBlain\nBlaise\nBrandan\nBrannon\nBrenden\nBritton\nBuddy\nBurt\nCarmen\nCarroll\nCecilio\nChaka\nChandler\nChanning\nCheyenne\nChip\nChristofer\nClarke\nClement\nCliffton\nColeman\nCreighton\nCurtiss\nDaman\nDann\nDanniel\nDarold\nDavy\nDelmar\nDeric\nDerrell\nDerric\nDeshon\nDione\nDoran\nEladio\nElisha\nEmery\nEngelbert\nErinn\nErnst\nEron\nErron\nEverette\nFransico\nGeraldo\nGideon\nGlendon\nGrayson\nGrover\nHayden\nHilary\nHomero\nHuey\nHunter\nIain\nIrwin\nIsreal\nJacinto\nJamas\nJame\nJami\nJamil\nJarred\nJeanpierre\nJereme\nJerod\nJohathan\nJohnie\nJonny\nJonpaul\nJubal\nJud\nJulie\nKane\nKennth\nKenric\nKevan\nKonrad\nLayne\nLeighton\nLeobardo\nLorin\nLucky\nMacario\nMargarito\nMarius\nMarlo\nMatias\nMelissa\nMichaelangelo\nMichale\nMichele\nMiquel\nMuhammad\nNicole\nOtoniel\nPaolo\nParish\nPatrice\nPhilippe\nRaj\nRamsey\nRandel\nReno\nRichmond\nRomel\nRosa\nRudolf\nSerge\nSilverio\nSimeon\nSixto\nSkip\nSpence\nStanton\nStevan\nTarek\nTeofilo\nTerrill\nTheadore\nTheresa\nTyree\nTyron\nVern\nVictoria\nVinson\nWally\nWaylon\nWeldon\nWestley\nWilfredo\nWillian\nWilmer\nWm\nWoodrow\nZeke\nMichael\nDavid\nRobert\nJohn\nJason\nJames\nChristopher\nRichard\nBrian\nDaniel\nEric\nScott\nSteven\nWilliam\nMatthew\nJeffrey\nMark\nKevin\nJoseph\nAnthony\nPaul\nThomas\nJose\nTimothy\nSean\nCharles\nAaron\nGregory\nKenneth\nEdward\nStephen\nShawn\nChad\nAndrew\nRonald\nTodd\nPatrick\nDonald\nJeremy\nRyan\nJuan\nGary\nFrank\nJonathan\nRaymond\nGeorge\nJoshua\nPeter\nCarlos\nBryan\nCraig\nAdam\nDouglas\nDennis\nKeith\nErik\nLarry\nJesus\nManuel\nVictor\nTroy\nMario\nJesse\nLuis\nGabriel\nBenjamin\nMarc\nJeffery\nShane\nRicardo\nBrandon\nChris\nJustin\nDerek\nJerry\nMartin\nChristian\nJoe\nSamuel\nRuben\nTravis\nBrent\nPhillip\nDanny\nFrancisco\nAlbert\nTony\nAntonio\nJorge\nMiguel\nJon\nArthur\nRoberto\nMarcus\nAlexander\nVincent\nJoel\nArmando\nLawrence\nLance\nRandy\nRaul\nJohnny\nNathan\nBradley\nSteve\nBrett\nHenry\nCarl\nJaime\nDarren\nRussell\nRoger\nMike\nPhilip\nJavier\nRodney\nFernando\nGilbert\nAlan\nCurtis\nHector\nGerald\nJack\nOscar\nLouis\nMicheal\nNicholas\nTerry\nJeff\nDamon\nBilly\nCorey\nAdrian\nSergio\nSalvador\nAlejandro\nWayne\nEduardo\nErnest\nRamon\nAndre\nDean\nJimmy\nAlex\nRoy\nDerrick\nJay\nBobby\nKyle\nWalter\nGlenn\nShannon\nEugene\nArturo\nRalph\nBruce\nLee\nRafael\nAlfred\nGerardo\nKelly\nIan\nEddie\nAllen\nMarco\nAlberto\nGreg\nGeoffrey\nPedro\nRandall\nAlfredo\nJacob\nDale\nCesar\nDarrell\nJamie\nEnrique\nRay\nKurt\nFrederick\nRene\nRicky\nLeonard\nKirk\nDustin\nGlen\nRonnie\nBrad\nTheodore\nTommy\nCasey\nRudy\nClifford\nDon\nAngel\nMaurice\nWesley\nHarold\nErnesto\nCory\nDuane\nMathew\nDarrin\nErick\nDaryl\nHoward\nNeil\nTim\nClinton\nGustavo\nWillie\nDarin\nTrevor\nStanley\nJim\nJulian\nZachary\nAlfonso\nGuillermo\nIsaac\nTyrone\nJerome\nBill\nTom\nEdwin\nFred\nKarl\nMitchell\nReginald\nNorman\nShaun\nBret\nMatt\nDan\nMarvin\nEarl\nMelvin\nJared\nWade\nWarren\nDana\nJulio\nRick\nRodolfo\nTed\nPablo\nJoey\nSeth\nGarrett\nRoman\nAndres\nBarry\nColin\nDominic\nDwayne\nNathaniel\nEdgar\nNoah\nCalvin\nGuy\nMarcos\nRon\nGene\nLeon\nPete\nAndy\nJermaine\nNoel\nGordon\nNick\nTyler\nClarence\nGrant\nDarryl\nByron\nTracy\nClayton\nHarry\nOmar\nToby\nFelipe\nLouie\nFelix\nAbel\nAllan\nDevin\nJessie\nJoaquin\nLloyd\nLorenzo\nJimmie\nLeo\nBrendan\nIvan\nDamian\nLonnie\nFrancis\nFranklin\nIsmael\nHugo\nJarrod\nSimon\nDonovan\nEvan\nStuart\nAbraham\nIsrael\nJody\nLoren\nRogelio\nVernon\nDave\nClint\nIgnacio\nLeroy\nSam\nTerrance\nArnold\nEthan\nFloyd\nGilberto\nMarlon\nCameron\nGuadalupe\nJohnnie\nShad\nAlvin\nBen\nBernard\nDylan\nJonathon\nJosh\nRoss\nDion\nRamiro\nRoland\nBenny\nRoderick\nTrent\nFrankie\nMorgan\nJohnathan\nLuke\nRobin\nVicente\nHeath\nHerbert\nOliver\nSpencer\nGregg\nOrlando\nBryant\nElias\nJess\nLeslie\nPerry\nEsteban\nFredrick\nNelson\nSaul\nKent\nLewis\nStacy\nAlonzo\nErin\nJamal\nNicolas\nTy\nDwight\nHerman\nJeremiah\nMax\nMarcel\nRolando\nTerrence\nBob\nCary\nDemetrius\nEli\nMarshall\nMonte\nEverett\nFreddie\nJean\nRandolph\nXavier\nBrady\nLeonardo\nPreston\nReynaldo\nRudolph\nTomas\nAgustin\nAngelo\nCharlie\nScotty\nAdolfo\nHumberto\nJayson\nKenny\nMoises\nRex\nSantiago\nBenito\nCecil\nDino\nDoug\nLamont\nRobbie\nBeau\nDarrick\nErich\nKristopher\nLamar\nShon\nAugustine\nBlake\nBryon\nEmilio\nErnie\nKen\nNoe\nSammy\nEfren\nGavin\nMauricio\nRandal\nReuben\nAron\nDonnie\nEdwardo\nHans\nMicah\nRigoberto\nEdmund\nForrest\nJordan\nMalcolm\nMilton\nCarlton\nChester\nElliott\nFabian\nFidel\nHugh\nRob\nSantos\nStefan\nVirgil\nAlvaro\nEfrain\nHarvey\nJackie\nKerry\nLaurence\nLeland\nLester\nMyron\nBryce\nClay\nDarnell\nDewayne\nDirk\nGraham\nMoses\nScot\nBradford\nJulius\nKelvin\nKris\nMiles\nStephan\nCedric\nGerard\nKendall\nMason\nNeal\nRoyce\nSebastian\nSidney\nChe\nConrad\nDante\nGino\nJeffry\nKurtis\nLionel\nRaymundo\nSheldon\nTerence\nTyson\nVance\nWendell\nWill\nAdan\nAri\nClyde\nDamien\nGarry\nGonzalo\nIra\nLyle\nMickey\nQuincy\nRodrigo\nTod\nAustin\nDaren\nDeon\nDevon\nMarty\nSonny\nTimmy\nAldo\nAntoine\nCarey\nCody\nDomingo\nLeonel\nTeddy\nAl\nCarlo\nClark\nDorian\nFederico\nJonas\nStewart\nArron\nBart\nBert\nBrant\nChadwick\nCurt\nJasen\nMariano\nRocky\nAric\nDarius\nDarrel\nDenny\nGalen\nJake\nMarcelo\nMonty\nOctavio\nQuentin\nRickey\nRobby\nVince\nBernardo\nClifton\nCollin\nDane\nDesmond\nGarth\nJed\nJoesph\nRaphael\nRodger\nRusty\nWyatt\nBrenton\nDamion\nDiego\nEliseo\nEmmanuel\nFreddy\nGerry\nGregorio\nJefferson\nKendrick\nQuinn\nSherman\nSolomon\nThor\nAndreas\nAntony\nChuck\nColby\nEldon\nErwin\nJennifer\nKim\nLeopoldo\nNolan\nOwen\nSalvatore\nTerrell\nThaddeus\nTristan\nVaughn\nWallace\nAlec\nAnton\nBennie\nBlaine\nDonny\nEarnest\nElijah\nEmiliano\nJerald\nLincoln\nLucas\nLynn\nMorris\nStacey\nTrinidad\nVan\nAlexandro\nAlton\nArchie\nBruno\nClaude\nCruz\nDelbert\nDerick\nDrew\nEdgardo\nKristian\nLane\nLevi\nNickolas\nOtis\nRosendo\nRussel\nTobias\nTobin\nWilson\nArnulfo\nBrendon\nBrock\nBrook\nBuddy\nCaesar\nCaleb\nCourtney\nEzra\nHeriberto\nLeif\nLonny\nMalik\nMarkus\nMichel\nOsvaldo\nOswaldo\nRico\nRod\nTaylor\nTommie\nUlysses\nAugust\nBarrett\nCarter\nDario\nDemian\nElmer\nEloy\nGenaro\nGeoff\nHubert\nJamey\nJonah\nMarlin\nPierre\nReggie\nRory\nShayne\nSterling\nSylvester\nAdalberto\nBrannon\nCole\nCristobal\nDallas\nDeric\nDexter\nDonavon\nDonnell\nEdmond\nGiovanni\nHal\nIssac\nJacques\nJerrod\nKelley\nRefugio\nRhett\nRickie\nRojelio\nSal\nSandy\nTheron\nTrenton\nZachariah\nAlexis\nAli\nAlphonso\nAnthoney\nArmand\nAvery\nBarney\nBlair\nClaudio\nCliff\nDanial\nEddy\nElbert\nElliot\nEverardo\nGus\nHarley\nJackson\nJamison\nJan\nJohnathon\nJude\nLuther\nMikel\nPhil\nReid\nRobb\nWilfred\nWillard\nWinston\nAhmad\nAmos\nArnoldo\nArt\nAshley\nBoyd\nBraden\nChance\nCornelius\nDominick\nDonte\nDoyle\nEd\nEmil\nEstevan\nEugenio\nGrady\nIsidro\nJeromy\nJerrold\nJosue\nKennith\nKeven\nKory\nLandon\nLoyd\nPaulo\nRich\nRuss\nSanford\nSerjio\nShelby\nTracey\nValentin\nWillis\nAriel\nBernie\nBlas\nBrooks\nChet\nCoby\nCristopher\nDewey\nDonavan\nEdmundo\nElizabeth\nGorge\nJarrett\nJefferey\nJeremey\nJohann\nLars\nLowell\nMarcellus\nNathanial\nPat\nPatricio\nAubrey\nAurelio\nBradly\nBrien\nClemente\nCristian\nCyrus\nDaryle\nDaryn\nDax\nDenis\nDonn\nEmmett\nForest\nHilario\nIsaias\nJerardo\nKasey\nKirby\nLamarr\nLenny\nLuciano\nMack\nMarcelino\nMaria\nMaximo\nMichale\nParis\nRomeo\nRoosevelt\nSky\nThad\nValentino\nWilbur\nWiley\nAmado\nAmador\nAmy\nBarton\nBrain\nBranden\nBrody\nBurton\nCeasar\nCleveland\nDarwin\nDavin\nDeshawn\nDuke\nDuncan\nDusty\nEllis\nEmanuel\nEnrigue\nErrol\nFausto\nFermin\nFrancesco\nFransisco\nGil\nHarrison\nHorace\nHoracio\nIrving\nJameson\nJeanpaul\nJeramy\nJerod\nJudson\nKorey\nKraig\nLeandro\nLiam\nLisa\nMarcell\nMarion\nMaximiliano\nMitch\nMyles\nNigel\nPorfirio\nRaoul\nReymundo\nRichie\nSandra\nShanon\nTimmothy\nTory\nTravon\nAbe\nAlicia\nAlonso\nAram\nBennett\nBrice\nChristofer\nConrado\nCornell\nDaron\nElgin\nElton\nFrederic\nGarret\nGreggory\nHassan\nHernan\nJeremie\nJonpaul\nJosef\nJoseluis\nJunior\nJuventino\nKai\nKip\nLamonte\nLaron\nLon\nMaceo\nMarcello\nMauro\nMigel\nMilo\nNed\nNicky\nOrion\nOtto\nRamsey\nRandell\nReyes\nRueben\nRufus\nScottie\nShay\nStevie\nTad\nToriano\nWes\nYsidro\nAbram\nAdolph\nAmbrose\nAntone\nArlo\nBaron\nBasilio\nBrennan\nBrodie\nBuck\nCamilo\nCarson\nCecilio\nCharley\nChase\nChip\nChristina\nChristoper\nChristophe\nCipriano\nCordell\nCullen\nDalton\nDarron\nDedrick\nDerik\nDeron\nDeshon\nDevlin\nDick\nEzekiel\nFelton\nFerdinand\nFiliberto\nFlavio\nGermaine\nHiram\nHomer\nIsaiah\nIsreal\nJarod\nJorje\nKane\nKeenan\nKenji\nKenton\nLavell\nLogan\nLorne\nLucio\nMacario\nMaxwell\nMichelle\nMitchel\nMonica\nMurray\nNathanael\nNestor\nNorbert\nNorberto\nOrville\nRitchie\nRito\nRodrick\nRubin\nTeodoro\nTerrill\nTitus\nUlises\nUriel\nVal\nWilfredo\nZane\nAlain\nArlen\nArmen\nArtemio\nBerry\nBobbie\nBritt\nCarmelo\nCassidy\nCatarino\nChandler\nChristiaan\nCorbett\nCornelio\nDarek\nDavis\nDeandre\nDenver\nDevan\nEnnis\nEvaristo\nEzequiel\nFabio\nFlorencio\nFredric\nGabe\nGarland\nGarrick\nHayden\nHunter\nIshmael\nJacinto\nJacque\nJarred\nJeramie\nJimi\nJohnie\nKareem\nKelsey\nKenya\nKenyatta\nKirt\nKristofer\nKristoffer\nKwame\nLazaro\nLejon\nLuiz\nMarquis\nMerle\nModesto\nOren\nParrish\nPascual\nPercy\nRenato\nRenee\nRey\nRodd\nRosalio\nRosario\nSammie\nSamson\nSekou\nShelton\nShiloh\nSimeon\nSusan\nTarik\nTate\nTeofilo\nTye\nTyree\nTyron\nVernell\nVladimir\nVon\nWhitney\nWoodrow\nAbelardo\nAhmed\nAlvino\nAmir\nAnastacio\nArmondo\nAtiba\nAudie\nAugustus\nBartholomew\nBenedict\nBenson\nBillie\nBonifacio\nBurt\nButch\nCain\nCandelario\nCharlton\nChristen\nClement\nConan\nCord\nCris\nCurtiss\nCynthia\nDaivd\nDamond\nDanniel\nDarick\nDeanna\nDedric\nDemetrio\nDenise\nDerrell\nDesean\nDestry\nDiallo\nDillon\nDominique\nDrake\nDwyane\nEben\nEctor\nEleazar\nEmerson\nErasmo\nEriberto\nErie\nErvin\nEulalio\nEusebio\nGaetano\nGaylord\nGeronimo\nGrover\nHollis\nIrvin\nJakob\nJarret\nJayme\nJaysen\nJereme\nJerold\nJomo\nJuaquin\nJudd\nJules\nKarsten\nKennard\nKermit\nKevan\nKhalid\nKieth\nKit\nKrishna\nLauro\nLayne\nLeigh\nLen\nLes\nLino\nMarciano\nMarlo\nMary\nMaynard\nMick\nMonroe\nNicole\nNorma\nOsbaldo\nPatricia\nPhilippe\nPrince\nRaymon\nReed\nRichardo\nRommel\nRonnell\nRudolpho\nSamual\nShanti\nSherwin\nStan\nStanford\nStanton\nStephanie\nSven\nTaj\nToney\nTucker\nWilbert\nWylie\nYuri\nZackary\nZackery\nAdrien\nAlfie\nAlfonzo\nAmani\nAnders\nAndrea\nAnibal\nAntione\nAntwan\nAntwon\nArcadio\nArik\nArmond\nArvin\nAugustin\nBaltazar\nBenjiman\nBernardino\nBooker\nBrandy\nBrooke\nBryn\nCarroll\nCedrick\nCezar\nChanning\nChistopher\nChristropher\nClarke\nClaudia\nCrispin\nDain\nDameon\nDarcy\nDarian\nDaric\nDavy\nDaymon\nDee\nDel\nDelaney\nDelano\nDelfino\nDenton\nDereck\nDerrek\nDesi\nDietrich\nDimas\nDiondre\nDjango\nDomenico\nDouglass\nDov\nDwane\nEdvardo\nEhren\nEligio\nEliot\nEnrico\nEsequiel\nFlorentino\nFrances\nFranco\nFranklyn\nFransico\nGabino\nGannon\nGarett\nGarey\nGeno\nGeoffery\nGerman\nGideon\nGina\nGrayson\nGunnar\nHarlan\nHarmon\nHarris\nHeather\nHenri\nJacky\nJahmal\nJamel\nJasson\nJeronimo\nJhon\nJoachim\nJodie\nJohnney\nJulie\nJun\nKarim\nKelton\nKenyon\nKerwin\nKimani\nKimberly\nKing\nKonrad\nLamon\nLanny\nLashawn\nLavelle\nLibrado\nLindsey\nLondon\nLucius\nLupe\nMarin\nMarkell\nMarko\nMateo\nMatias\nMattew\nMaximino\nMel\nMerlin\nMicky\nMiquel\nMisael\nNapoleon\nNarciso\nNash\nNasser\nNat\nNate\nNatividad\nNicholaus\nNicola\nNils\nNino\nOdell\nOlin\nOtha\nPorter\nRahsaan\nRaymund\nReese\nRenaldo\nRiley\nRocco\nRoel\nRogers\nRolland\nRomel\nRomulo\nRonell\nRonny\nRudolfo\nRyder\nSabino\nSage\nSamir\nSanjay\nSerge\nShain\nShea\nShonn\nShonte\nSilas\nSilverio\nSol\nTait\nTino\nTito\nTramel\nValdemar\nValentine\nVincente\nVirgilio\nVito\nWard\nWayland\nWeldon\nWestley\nWilliams\nWinfred\nWoody\nZak\nZeke\nMichael\nDavid\nJason\nChristopher\nRobert\nJohn\nJames\nBrian\nDaniel\nRichard\nEric\nMatthew\nWilliam\nSteven\nJeffrey\nScott\nMark\nJoseph\nAnthony\nKevin\nJose\nPaul\nThomas\nTimothy\nRyan\nAaron\nGregory\nSean\nCharles\nEdward\nAndrew\nKenneth\nChad\nJoshua\nJuan\nShawn\nJeremy\nPatrick\nStephen\nJonathan\nRonald\nTodd\nDonald\nCarlos\nJustin\nBryan\nPeter\nRaymond\nGeorge\nFrank\nAdam\nBrandon\nGary\nKeith\nManuel\nErik\nDouglas\nJesus\nJesse\nCraig\nGabriel\nBenjamin\nMario\nLuis\nVictor\nRicardo\nFrancisco\nDennis\nLarry\nRuben\nMiguel\nJerry\nChristian\nShane\nAntonio\nNathan\nSamuel\nJoel\nTroy\nDerek\nJorge\nPhillip\nRoberto\nJeffery\nJoe\nAlbert\nMarc\nTravis\nMartin\nRaul\nBrett\nJaime\nDanny\nBrent\nChris\nAlexander\nTony\nJohnny\nJon\nVincent\nHector\nJavier\nJacob\nArthur\nArmando\nMarcus\nLawrence\nNicholas\nHenry\nBradley\nOscar\nDarren\nAdrian\nSergio\nRandy\nCarl\nRoger\nAlejandro\nRussell\nSteve\nDamon\nEduardo\nFernando\nLance\nJimmy\nSalvador\nAlan\nMike\nGilbert\nPhilip\nRamon\nJeff\nLouis\nRafael\nArturo\nIan\nRodney\nWalter\nAlex\nCurtis\nJack\nTerry\nMicheal\nWayne\nKyle\nErnest\nCorey\nEnrique\nAlfredo\nBilly\nRalph\nDustin\nJamie\nCesar\nAndre\nRicky\nRoy\nMarco\nPedro\nRene\nBobby\nGerardo\nDean\nGerald\nLee\nShannon\nJay\nLeonard\nAllen\nAlfred\nEddie\nRandall\nGlenn\nAlberto\nEugene\nDerrick\nGeoffrey\nCasey\nDale\nDarrell\nZachary\nErnesto\nIsaac\nGreg\nRudy\nTrevor\nMaurice\nAngel\nFrederick\nKelly\nMathew\nTommy\nDuane\nRay\nTheodore\nClinton\nCory\nJared\nJulio\nGlen\nDarin\nJerome\nTracy\nRonnie\nGuillermo\nNeil\nBruce\nKirk\nKurt\nMarcos\nDamian\nErick\nRodolfo\nIvan\nWillie\nJulian\nWarren\nWesley\nAlfonso\nBrad\nDon\nGustavo\nOmar\nHarold\nStanley\nEdwin\nNorman\nTyler\nKarl\nMitchell\nNathaniel\nPablo\nRick\nAbel\nJermaine\nSeth\nClifford\nTyrone\nDaryl\nEdgar\nFred\nHoward\nJessie\nJim\nDominic\nAndres\nNoah\nAndy\nMarlon\nReginald\nRogelio\nHarry\nLamont\nShaun\nGarrett\nEthan\nFelipe\nLeon\nLorenzo\nLouie\nRoman\nTim\nAllan\nMarvin\nBill\nEvan\nMelvin\nTed\nLonnie\nJoey\nToby\nDwayne\nBernard\nCameron\nDana\nEarl\nGilberto\nGuy\nJoaquin\nNick\nSaul\nColin\nAbraham\nBarry\nIsmael\nGrant\nHugo\nNoel\nCalvin\nDan\nDarrin\nIsrael\nLoren\nAlvin\nFelix\nIgnacio\nMatt\nClint\nBret\nElias\nFredrick\nGene\nKent\nWade\nBen\nBryce\nByron\nDarryl\nHeath\nVernon\nClayton\nTom\nLloyd\nRoss\nFrankie\nJimmie\nJosh\nSpencer\nLuke\nDevin\nDylan\nRoland\nAdolfo\nGordon\nNicolas\nClarence\nEsteban\nLeslie\nTerrence\nAngelo\nDion\nEmilio\nKristopher\nMorgan\nJayson\nFranklin\nLeo\nMoises\nRamiro\nSonny\nBenny\nEli\nSam\nShad\nSimon\nBryant\nDamien\nDonovan\nFabian\nHumberto\nJamal\nJonathon\nPete\nGregg\nJody\nMicah\nDave\nFrancis\nGuadalupe\nRodrigo\nTy\nKerry\nOrlando\nStephan\nBrendan\nFreddie\nHerbert\nJess\nSammy\nTerrance\nMauricio\nMax\nRon\nRudolph\nJeremiah\nRolando\nArnold\nBryon\nJake\nRoderick\nErin\nHerman\nJohnnie\nTomas\nBradford\nDarnell\nEfrain\nJasen\nJohnathan\nLeroy\nOliver\nStacy\nTrent\nCharlie\nClifton\nDemetrius\nKenny\nLewis\nNelson\nRandolph\nSantiago\nAlvaro\nCedric\nDarrel\nFloyd\nNeal\nVicente\nDwight\nErnie\nJarrod\nKen\nLeonardo\nNoe\nPreston\nReuben\nTyson\nJackie\nJordan\nLester\nMarcel\nReynaldo\nCary\nLamar\nMarshall\nQuincy\nXavier\nFederico\nMalcolm\nAdan\nAntoine\nBlake\nConrad\nDamion\nGonzalo\nGregorio\nOctavio\nRickey\nCody\nDeon\nEdmund\nEdwardo\nGenaro\nLeland\nLucas\nMilton\nStuart\nDante\nDemond\nDonnie\nErich\nForrest\nKris\nPerry\nRigoberto\nRobin\nTerence\nDarius\nAgustin\nBernardo\nBob\nBrady\nDane\nHans\nHugh\nMarty\nRaymundo\nAron\nCarey\nDarrick\nFreddy\nScot\nStacey\nAurelio\nClaude\nGavin\nGino\nGraham\nJean\nJoesph\nJonas\nLaurence\nLionel\nRobby\nRocky\nShon\nStefan\nBeau\nDenny\nEfren\nHeriberto\nLeonel\nRex\nRusty\nThaddeus\nClyde\nColby\nDerick\nDorian\nEverett\nFidel\nHarvey\nKareem\nMiles\nScotty\nWendell\nAustin\nBenito\nDaren\nDrew\nGarry\nIssac\nJerald\nJerrod\nJonah\nRandal\nSebastian\nSidney\nTimmy\nBert\nCurt\nJefferson\nLeopoldo\nMariano\nMonte\nMyron\nOtis\nSheldon\nTobias\nAl\nArnulfo\nDallas\nDino\nGarth\nJacques\nJamey\nJeffry\nLeif\nLyle\nAlonzo\nAriel\nBlaine\nBrenton\nChance\nClark\nCruz\nDesmond\nDevon\nElijah\nEverardo\nGerard\nMarcelino\nMarlin\nOwen\nRobbie\nSolomon\nStewart\nVirgil\nZachariah\nArron\nAugustine\nCecil\nCole\nCourtney\nForest\nKim\nKristian\nMason\nMoses\nRob\nTad\nTerrell\nAlexandro\nCarlton\nChuck\nDelbert\nDominick\nDoug\nElton\nGalen\nJan\nLincoln\nMarcelo\nRosendo\nSantos\nSterling\nTrenton\nAli\nAlton\nBrock\nCarlo\nClay\nCornelius\nDenis\nEdmond\nElliott\nEmmett\nGarrick\nIra\nKelvin\nShayne\nTod\nTrinidad\nArchie\nBarrett\nBranden\nBrant\nCaleb\nChadwick\nChester\nDaron\nDiego\nGrady\nJefferey\nKendall\nLevi\nLonny\nLuther\nOsvaldo\nOswaldo\nShelby\nTommie\nVince\nWilson\nWyatt\nAlonso\nBrain\nBurton\nCristian\nDameon\nDeshawn\nDirk\nEdmundo\nElmer\nGermaine\nGorge\nJennifer\nJeromy\nKory\nKurtis\nLars\nMickey\nRonny\nSalvatore\nShea\nSherman\nTaylor\nWallace\nWill\nBarton\nBlair\nChe\nCollin\nDonnell\nEloy\nFransisco\nJerardo\nJeremie\nJosue\nKelley\nKraig\nLino\nMonty\nNolan\nNorberto\nQuinn\nRahsaan\nRaphael\nRefugio\nVance\nWinston\nAbelardo\nAldo\nAntony\nAri\nBart\nBennie\nBuddy\nCaesar\nCarson\nDomingo\nDonavan\nDonte\nEmiliano\nEstevan\nEzra\nFiliberto\nGus\nJamison\nJarrett\nJulius\nKeven\nLon\nLowell\nMikel\nNigel\nStevan\nTobin\nUlysses\nAdalberto\nAlec\nAnton\nAric\nArt\nCornell\nDanial\nDewey\nDuke\nEarnest\nEmanuel\nFausto\nFermin\nGarret\nGerry\nGiovanni\nIsaias\nJayme\nJed\nKenyon\nKwame\nLane\nLuciano\nMarcell\nMaria\nMarquis\nMichelle\nNathanael\nNestor\nPierre\nReed\nRey\nRhett\nRodger\nRoyce\nRueben\nSantino\nTracey\nTristan\nUlises\nWillard\nZane\nAmador\nBrennan\nBrice\nClemente\nCristopher\nDanniel\nDeandre\nDiallo\nDonny\nEdgardo\nEliseo\nElliot\nEzekiel\nEzequiel\nHoracio\nJerod\nJohnathon\nJosef\nJude\nKendrick\nKristin\nKristofer\nMaxwell\nNarciso\nNickolas\nPaulo\nRomeo\nRosario\nRussel\nSal\nShelton\nTeddy\nTheron\nThor\nTorrey\nValentin\nVidal\nApolonio\nArlo\nArmondo\nAubrey\nAugustin\nBrook\nBrooks\nBruno\nCamilo\nCeasar\nChase\nChristen\nClaudio\nCliff\nDarian\nDario\nDax\nDimitri\nEddy\nErrol\nEusebio\nGeoff\nGeronimo\nIsidro\nKip\nLafayette\nLaron\nLiam\nLorne\nLucio\nMauro\nMichale\nMilo\nNicky\nParis\nPorfirio\nReid\nRodrick\nSky\nSylvester\nToney\nVaughn\nWilbert\nAbram\nArmand\nAsa\nAvery\nBradly\nBuck\nChristoper\nDemian\nDewayne\nDominique\nDonell\nDonn\nDouglass\nDuncan\nEd\nEleazar\nEmmanuel\nEnrigue\nFaustino\nFlavio\nGarett\nGil\nGreggory\nHiram\nJeramy\nJosiah\nKennith\nKenya\nKirby\nLenard\nLenny\nMack\nMargarito\nMilan\nMitchel\nModesto\nNed\nOdell\nOrion\nOsbaldo\nQuentin\nRebecca\nReyes\nRichie\nRobb\nRod\nRoosevelt\nRudolfo\nSerjio\nTaj\nThad\nWard\nWilbur\nWillis\nAbdul\nAhmad\nAlphonso\nAmado\nAndreas\nAnthoney\nAntione\nAshley\nAugust\nBartholomew\nBoyd\nChristophe\nCleveland\nCoy\nCristobal\nCyrus\nDarron\nDelton\nDemetrios\nDeric\nDoyle\nDusty\nErwin\nHarlan\nHunter\nJacinto\nJackson\nJade\nJaysen\nJereme\nJeremey\nJerold\nKirt\nLeobardo\nLisa\nMateo\nMichel\nMigel\nNapoleon\nPatricia\nReggie\nRenato\nReymundo\nRickie\nRory\nSandy\nSeamus\nStanton\nStephon\nTino\nVan\nWes\nYancy\nAlain\nAmos\nAnselmo\nArnoldo\nArtemio\nBernie\nBrien\nCandelario\nCarter\nCecilio\nCipriano\nDavin\nDerric\nDontay\nElbert\nEllis\nEnrico\nErasmo\nErvin\nEsequiel\nFlorentino\nGarland\nGerman\nGillermo\nGonsalo\nHal\nHarley\nHubert\nIsaiah\nJarred\nJeanpaul\nJeramie\nJorje\nJoseluis\nKenji\nKevan\nKorey\nLamarr\nLandon\nLazaro\nLupe\nLynn\nMarcellus\nMarlo\nMel\nMichal\nNathanial\nNatividad\nNorbert\nOdis\nPatricio\nRandel\nRaoul\nRenee\nReno\nRojelio\nRonaldo\nSage\nShan\nStephanie\nTito\nTitus\nTory\nTyrell\nTyron\nVal\nValentine\nVito\nAbe\nAkil\nAlexis\nAnderson\nAnson\nAntwan\nArtis\nBennett\nBobbie\nBraden\nBrandan\nBrandt\nBrannon\nBritt\nBrodie\nCade\nCandido\nCarroll\nChadd\nChauncey\nClement\nCrispin\nCuauhtemoc\nDamond\nDaryle\nDereck\nDeron\nDexter\nDonavon\nDonta\nDwaine\nElgin\nEmile\nFeliciano\nFrederic\nGiuseppe\nHilario\nHollis\nJarod\nJerrold\nJevon\nJonpaul\nJudah\nJudd\nKeenan\nKiley\nLamonte\nLavelle\nLogan\nLoyd\nMarcello\nMarcial\nMarion\nMerle\nMerlin\nOrville\nOtto\nPat\nPhil\nRandell\nRaymon\nRito\nRufus\nSabino\nSamual\nScottie\nSekou\nShiloh\nStan\nTeodoro\nTrever\nTruman\nWeston\nWilfred\nWilfredo\nWilly\nZoltan\nAddison\nAdrain\nAdrien\nAhmed\nAmando\nAmir\nAra\nAram\nArmen\nArmon\nAudie\nBaron\nBernardino\nBo\nBoris\nBrendon\nCarmen\nCatarino\nCedrick\nChaka\nChandler\nCharley\nChristiaan\nChristina\nChristofer\nCleve\nConrado\nCorbett\nDamen\nDanielle\nDanilo\nDarby\nDedrick\nDenton\nDerik\nDerrek\nDeshaun\nDionicio\nEhren\nEldon\nElisha\nEmerson\nEmil\nEron\nEugenio\nEulalio\nFaron\nFredric\nFredy\nGabino\nGail\nGaston\nGavino\nGeary\nGildardo\nHarris\nHernan\nHilton\nHomer\nHorace\nIran\nIrvin\nIvory\nJai\nJamar\nJedediah\nJered\nJohan\nJohnie\nJudson\nJulie\nJusto\nJuston\nKai\nKenton\nKieth\nKimberly\nKimo\nKristen\nLaura\nLejon\nLondon\nMajor\nMalo\nMarcoantonio\nMiquel\nMorris\nMyles\nNicole\nNiels\nNorris\nOlin\nOren\nPaolo\nParker\nParrish\nPercy\nPhilippe\nReese\nRichardo\nRiley\nRommel\nRomulo\nRoque\nSalomon\nSandra\nSanford\nShamon\nShay\nSimeon\nSunny\nTait\nTammy\nTerrill\nToriano\nToussaint\nTremayne\nTrevis\nTrevon\nTrey\nTye\nUriel\nValente\nValentino\nVeronica\nVladimir\nYoung\nYsidro\nYuri\nAdolph\nAlfonzo\nAmbrose\nAnastacio\nAndrea\nAntonino\nArlen\nAsher\nAugustus\nAvelino\nBaldomero\nBarney\nBenson\nBertram\nBonifacio\nBrandy\nBreck\nBrody\nBronson\nBrooke\nBurt\nCain\nCanyon\nCesario\nChanning\nCharlton\nChet\nCheyenne\nChristapher\nChristin\nChristoher\nColeman\nConan\nCorbin\nCordell\nDamone\nDarel\nDaryn\nDavey\nDavinder\nDavis\nDawn\nDemarco\nDemetri\nDemetrio\nDerk\nDeshun\nDick\nDietrich\nDimas\nDionisio\nDomenic\nDrake\nDru\nDwain\nEliazar\nElmo\nElvin\nEnoch\nErie\nErrick\nEtienne\nFavio\nFeliz\nFidencio\nFilimon\nFletcher\nFranciso\nGabor\nGaldino\nGamaliel\nGareth\nGaylord\nGeoffery\nGideon\nGina\nGloria\nGuido\nHank\nHerminio\nHeshimu\nIbn\nIrene\nJabbar\nJabier\nJacque\nJami\nJamin\nJasper\nJassen\nJeb\nJens\nJerami\nJerel\nJermain\nJermon\nJeronimo\nJessy\nJhon\nJimi\nJohannes\nJules\nJunior\nJuvenal\nJuventino\nKahlil\nKameron\nKasey\nKavin\nKeefe\nKeri\nKermit\nKhari\nKristofor\nLanny\nLashawn\nLauren\nLavell\nLemuel\nLevon\nLorin\nLucien\nLyman\nMacario\nMaceo\nMalcom\nManual\nMarkus\nMartha\nMatias\nMaximiano\nMaximiliano\nMelecio\nMeredith\nMervin\nMichele\nMisael\nMonica\nMoshe\nNazario\nNevin\nNino\nOtha\nPatric\nRamsey\nRasheed\nRic\nRich\nRitchie\nRobet\nRocco\nRonell\nRosa\nRoscoe\nRubin\nRuss\nSamson\nSandro\nSelso\nServando\nSilas\nSilvio\nSocrates\nSol\nStevie\nTarik\nTate\nTeresa\nThurman\nTige\nTina\nTyree\nVernell\nVic\nVictorino\nVincente\nWilmer\nYusef\nZack\nZackary\nMichael\nJason\nDavid\nChristopher\nRobert\nJohn\nJames\nBrian\nDaniel\nMatthew\nRichard\nEric\nMark\nWilliam\nJoseph\nJose\nJeffrey\nSteven\nAnthony\nScott\nKevin\nPaul\nRyan\nJoshua\nThomas\nAaron\nTimothy\nGregory\nJuan\nSean\nCharles\nAndrew\nJeremy\nKenneth\nJonathan\nEdward\nShawn\nJustin\nStephen\nChad\nAdam\nBryan\nTodd\nCarlos\nPatrick\nRonald\nDonald\nBrandon\nJesus\nRaymond\nFrank\nGeorge\nGary\nManuel\nLuis\nGabriel\nPeter\nNathan\nJesse\nBenjamin\nKeith\nMario\nVictor\nErik\nFrancisco\nRicardo\nCraig\nDouglas\nDennis\nShane\nRuben\nMiguel\nTravis\nAntonio\nLarry\nJorge\nRoberto\nJoel\nSamuel\nMartin\nJerry\nJoe\nChristian\nDerek\nPhillip\nJaime\nJavier\nHector\nEduardo\nMarc\nDanny\nArmando\nJeffery\nJacob\nNicholas\nAlexander\nRaul\nOscar\nTony\nVincent\nAlbert\nAlejandro\nTroy\nBrent\nSergio\nPhilip\nJohnny\nRussell\nDamon\nFernando\nArthur\nRafael\nRandy\nMarcus\nAdrian\nBrett\nRamon\nDarren\nBradley\nLawrence\nRodney\nHenry\nChris\nJon\nSalvador\nPedro\nGilbert\nCesar\nJack\nIan\nSteve\nAlan\nArturo\nEnrique\nLouis\nMarco\nAlex\nRoger\nAlberto\nCurtis\nJimmy\nAlfredo\nMicheal\nGerardo\nCarl\nKyle\nBilly\nAngel\nBobby\nJamie\nGerald\nTerry\nCorey\nLance\nErnest\nRalph\nWayne\nAllen\nRene\nShannon\nWalter\nDerrick\nErnesto\nDustin\nEddie\nZachary\nJared\nRoy\nRudy\nAndre\nEugene\nNathaniel\nJay\nCasey\nRandall\nJeff\nJulio\nMathew\nLee\nGeoffrey\nIsaac\nLeonard\nMike\nRonnie\nAlfonso\nGustavo\nTheodore\nTommy\nGuillermo\nGlenn\nTrevor\nCory\nJulian\nMarcos\nOmar\nAlfred\nClinton\nJeremiah\nFrederick\nRay\nAndres\nKelly\nRicky\nEdgar\nSeth\nDale\nDarrell\nRodolfo\nTyrone\nDamian\nNeil\nDean\nBrad\nAbel\nDominic\nWesley\nBruce\nGreg\nGilberto\nTracy\nDarin\nKurt\nStanley\nKirk\nJermaine\nTyler\nErick\nFred\nHoward\nClifford\nPablo\nEdwin\nFelipe\nMaurice\nMelvin\nAndy\nWillie\nIgnacio\nMitchell\nClayton\nHarold\nJerome\nDevin\nEarl\nMarvin\nByron\nIsmael\nRamiro\nDuane\nJoey\nRick\nJim\nWarren\nCameron\nNoah\nDon\nFelix\nLeo\nEthan\nJoaquin\nKarl\nKristopher\nNorman\nDwayne\nIsrael\nIvan\nRoman\nGarrett\nMarlon\nSaul\nClint\nColin\nNoel\nGlen\nJessie\nLeon\nWade\nHugo\nSimon\nToby\nDaryl\nEvan\nGrant\nTim\nAbraham\nDana\nNick\nLuke\nMicah\nDonovan\nLorenzo\nShaun\nBarry\nFranklin\nRogelio\nHarry\nLouie\nMax\nTom\nDan\nLonnie\nBen\nJonathon\nHumberto\nAllan\nCalvin\nDarryl\nDylan\nElias\nEsteban\nMatt\nReginald\nTyson\nGuadalupe\nGuy\nBret\nJohnathan\nJosh\nClarence\nRodrigo\nRoss\nBernard\nEli\nJayson\nLamont\nNicolas\nOrlando\nSam\nFrancis\nGene\nKent\nAngelo\nDevon\nFabian\nFloyd\nJake\nOctavio\nOliver\nRolando\nGordon\nHerman\nLloyd\nSantiago\nSpencer\nAlvaro\nDion\nHerbert\nPete\nTomas\nMoises\nNeal\nStuart\nAdan\nBlake\nDamien\nJimmie\nMorgan\nRoland\nTerrence\nBill\nDarrin\nGavin\nJody\nLeslie\nLoren\nReynaldo\nVernon\nArnold\nHeath\nJess\nRandolph\nAgustin\nAlvin\nBrady\nEfrain\nFredrick\nRudolph\nSonny\nJohnnie\nRigoberto\nTerence\nBryant\nErin\nLeonardo\nMarcel\nTed\nTerrance\nPerry\nRon\nBryce\nDwight\nEverett\nMarshall\nNoe\nAdolfo\nCary\nGonzalo\nLeroy\nShad\nVicente\nCody\nDonnie\nErnie\nFreddie\nJamal\nJordan\nDamion\nDarnell\nFreddy\nGregg\nMoses\nRobin\nStephan\nTrent\nBenny\nBernardo\nBrendan\nKen\nKenny\nStacy\nXavier\nAntoine\nAron\nEdwardo\nJackie\nJefferson\nLewis\nRoderick\nTy\nClyde\nDewayne\nEmilio\nErich\nFidel\nJasen\nBeau\nBenito\nDiego\nLester\nMarty\nMiles\nSammy\nSidney\nAustin\nBob\nDemetrius\nDeon\nNelson\nRaymundo\nSantos\nArron\nBradford\nFrankie\nLucas\nRandal\nRex\nRickey\nBryon\nDemond\nEfren\nHeriberto\nJosue\nReuben\nStefan\nCedric\nDeandre\nLionel\nCaleb\nDarrel\nEloy\nGenaro\nJarrod\nJulius\nOsvaldo\nOwen\nAlonzo\nAugustine\nCecil\nJonas\nLaurence\nLeopoldo\nSebastian\nBrenton\nClifton\nColby\nDesmond\nGerard\nKristian\nLamar\nLeonel\nMyron\nPreston\nThaddeus\nDrew\nGerman\nGregorio\nHarvey\nIssac\nJean\nJoesph\nMauricio\nDaren\nDarius\nDarrick\nElliot\nJeromy\nJonah\nLeif\nStacey\nTobin\nVirgil\nCarlo\nCollin\nDomingo\nEverardo\nFederico\nForrest\nFransisco\nJarrett\nKerry\nMilton\nRobbie\nScot\nAldo\nBranden\nChester\nClay\nConrad\nDane\nDave\nEmmanuel\nEstevan\nHans\nHoracio\nKurtis\nLyle\nMonte\nRaphael\nShayne\nArnulfo\nAurelio\nDante\nDonny\nEzra\nHugh\nJeffry\nMarcelo\nNolan\nOtis\nRusty\nSherman\nTeddy\nTerrell\nVance\nAric\nDorian\nEdgardo\nElijah\nElvis\nGarth\nGorge\nHarley\nIra\nLeland\nRocky\nTrenton\nZachariah\nAlonso\nDerick\nDeron\nEzequiel\nJamison\nJennifer\nJorje\nKris\nScotty\nStewart\nUlysses\nAbram\nBrain\nChe\nDino\nDonnell\nGarry\nGiovanni\nHilario\nIsidro\nJerald\nJerrod\nKelvin\nKendall\nKip\nMalcolm\nMarcell\nMason\nNathanael\nPierre\nQuentin\nQuincy\nRenato\nRosendo\nTobias\nVan\nWendell\nWyatt\nAnton\nArchie\nBennie\nCarlton\nDanial\nDenny\nEarnest\nEddy\nEdmund\nEliseo\nElmer\nEmiliano\nFlavio\nGarrick\nGino\nHernan\nKenyatta\nMariano\nMyles\nNickolas\nNorberto\nShon\nSolomon\nValentin\nAlexis\nAri\nCarter\nCharlie\nClark\nCruz\nDominick\nEdmond\nElliott\nElton\nFermin\nHubert\nJade\nKim\nKory\nLevi\nMaria\nMichel\nReed\nReggie\nRenee\nReyes\nRomeo\nRommel\nRory\nTheron\nTod\nTrinidad\nWallace\nAlton\nBillie\nBlaine\nBuddy\nCaesar\nClaude\nCole\nCourtney\nCurt\nDaron\nEmil\nEnrico\nFiliberto\nGus\nJan\nKareem\nKasey\nLuther\nMarion\nMauro\nSantino\nSylvester\nTyree\nWilbert\nWill\nAvery\nBert\nCarey\nClaudio\nCornelius\nDamond\nDario\nDax\nDenis\nDereck\nDerik\nDuncan\nJed\nJedediah\nJeramy\nKristoffer\nLucio\nLynn\nMack\nMonty\nRefugio\nRickie\nRiley\nRojelio\nRoosevelt\nTristan\nUlises\nWilfredo\nAdalberto\nAdolph\nArt\nBernie\nBrant\nBrice\nBrock\nBrooks\nChadwick\nCristobal\nDameon\nDavin\nDeshawn\nDexter\nDoyle\nEllis\nGarret\nIsaias\nJabari\nJackson\nJosef\nLars\nLonny\nMarcelino\nMarquis\nOsbaldo\nRahsaan\nRamsey\nRico\nRobby\nSandy\nShea\nShelby\nTad\nThad\nTimmy\nTyron\nVidal\nWilson\nWinston\nAlfonzo\nAmos\nAndreas\nArnoldo\nBart\nBrennan\nCain\nChuck\nCornelio\nCristian\nCristopher\nCuauhtemoc\nCyrus\nElbert\nEsequiel\nForest\nIsaiah\nJamey\nJeremie\nKraig\nMickey\nMikel\nRob\nStevie\nTeodoro\nTory\nAl\nAlexandro\nAntony\nAra\nBlair\nBoyd\nBurt\nChase\nCleveland\nDallas\nDonte\nDoug\nErasmo\nErwin\nFaustino\nGeoff\nGraham\nHal\nHiram\nJohnathon\nKendrick\nKenyon\nKwame\nLafayette\nLeandro\nLemuel\nLino\nLorin\nLowell\nReid\nSalvatore\nSilas\nSterling\nTino\nVince\nAbelardo\nAlec\nAmador\nAriel\nArmand\nAshley\nAubrey\nBrien\nBruno\nBurton\nCaine\nChance\nChauncey\nCoby\nDarian\nDelbert\nDeric\nDirk\nDominique\nDwain\nEd\nEmanuel\nEzekiel\nIsreal\nJoseluis\nJude\nKenji\nKeven\nKirt\nLogan\nLupe\nMargarito\nMarkus\nMarlin\nMaximillian\nMilo\nMorris\nNestor\nNicky\nOrion\nPatricia\nPaulo\nRey\nRodger\nRodrick\nRussel\nSalomon\nSerjio\nTaj\nTaylor\nTommie\nUbaldo\nUriah\nVincente\nZachery\nZane\nAntione\nBarrett\nBenigno\nBlas\nBrendon\nBritt\nChristina\nChristoper\nCliff\nCornell\nDarron\nDemetrio\nDenver\nDewey\nDonn\nEdmundo\nEmmett\nErrol\nFranco\nGideon\nGil\nGrady\nJacques\nJerardo\nJered\nJeremey\nJevon\nJunior\nKahlil\nLiam\nMac\nMalik\nMarcello\nMaxwell\nMichale\nMichelle\nNino\nNorris\nOdell\nOswaldo\nRod\nRoel\nRueben\nRufus\nSage\nShay\nSheldon\nSky\nStan\nThor\nTorrey\nWillis\nYohance\nAhmed\nAlphonso\nAmy\nAntwan\nAram\nArcadio\nAugustin\nBarney\nBobbie\nBradly\nBrion\nCedrick\nCord\nDedrick\nEben\nEctor\nEugenio\nEulalio\nGale\nGalen\nGarett\nGarland\nGeronimo\nGerry\nGreggory\nHarris\nHomer\nJamar\nJaron\nJerod\nJerrold\nJosiah\nJudd\nKane\nKarim\nKennith\nLamonte\nLaron\nLauren\nLenard\nMarcellus\nMonica\nQuinton\nReno\nRichardo\nRichie\nRoyce\nRudolfo\nRuss\nSandro\nShan\nShiloh\nTarik\nTremayne\nTye\nVito\nWes\nAlden\nAli\nAndrea\nAnselmo\nArmondo\nAugust\nBaron\nBo\nBrandt\nBrenden\nBuck\nCandelario\nCatarino\nCharley\nChet\nClemente\nCoy\nCyril\nDelmar\nDimitri\nDonavan\nDonta\nDuke\nFerdinand\nFrancesco\nFredric\nGildardo\nGiuseppe\nHakim\nHarrison\nJacinto\nJamil\nJammie\nJarod\nJarvis\nJasson\nJeanpaul\nJefferey\nJudson\nJuventino\nKenya\nKhalid\nKorey\nLashon\nMateo\nMaximiliano\nMaynard\nNate\nNathanial\nPrince\nRajesh\nRandell\nRaoul\nReymundo\nRoque\nRubin\nSal\nSammie\nSanford\nShanon\nSimeon\nSunny\nThurman\nUriel\nVaughn\nWillard\nWilly\nZackery\nAbe\nAhmad\nAlain\nAlbaro\nAlegandro\nAlvino\nAnders\nAndrei\nAnson\nAnthoney\nApolonio\nBasilio\nBenedict\nCamilo\nCarleton\nCarson\nCheyenne\nCortney\nCrispin\nCullen\nDanilo\nDarby\nDavis\nDemian\nDeshaun\nDeshon\nDick\nDwaine\nEldon\nEliot\nEmerson\nEmmitt\nEnrigue\nEriberto\nErubey\nErvin\nGabe\nGaston\nGeno\nGillermo\nHank\nHarlan\nJamin\nJasper\nJelani\nJeramie\nJeremi\nJerold\nJethro\nJonpaul\nKamau\nKieth\nKimberly\nKristin\nLavell\nLazaro\nLen\nLorne\nLuciano\nLuiz\nLyndon\nMatthias\nMaximilian\nMerle\nMerlin\nMervin\nMigel\nMikael\nMitchel\nNarciso\nNash\nNathen\nNed\nNils\nNoble\nOren\nOrville\nPaolo\nPascual\nPatricio\nQuinn\nRhett\nRicco\nRocco\nRonny\nRosalio\nRoscoe\nRoverto\nRufino\nSalvadore\nSamson\nSasha\nSerafin\nSilverio\nSonia\nTai\nTrever\nTrevon\nVal\nValentine\nValentino\nVeronica\nVladimir\nWalker\nWally\nWayland\nWilfred\nWoodrow\nAbran\nAdrien\nAkim\nAlva\nAmilcar\nAngela\nAntone\nAntonino\nArik\nArmond\nArtemio\nBaltazar\nBennett\nBenson\nBernardino\nBrandi\nBurke\nCandido\nCarnell\nCeasar\nChadd\nChistopher\nChristofer\nCipriano\nCirilo\nCisco\nClaudia\nConstantine\nCynthia\nDagoberto\nDaivd\nDalton\nDarell\nDarick\nDaryn\nDathan\nDayne\nDejuan\nDel\nDenton\nDevan\nDiallo\nDiane\nDillon\nDomenic\nDrake\nDupree\nEdgard\nEdilberto\nEfrem\nElden\nEleazar\nElvin\nEly\nEmery\nEmile\nErrick\nEsau\nFausto\nFidencio\nFlorencio\nFlorentino\nFortunato\nFranky\nFritz\nGeary\nGermaine\nGill\nGraig\nGrover\nHeather\nHenery\nHodari\nHomero\nHorace\nIshmael\nJacobo\nJaysen\nJeb\nJerame\nJermain\nJuaquin\nJuston\nJustus\nKarsten\nKeenan\nKennard\nKevan\nKimani\nKimo\nKonrad\nKristofer\nLandon\nLawrance\nLejon\nLesley\nLevon\nLibrado\nLon\nLorena\nLovell\nMagdaleno\nMakoto\nMalachi\nMelchor\nMerced\nMicahel\nMiguelangel\nMiquel\nMisael\nModesto\nMontgomery\nNiels\nNigel\nNikolas\nNorbert\nOrin\nPernell\nPorfirio\nRaffi\nRahman\nRakesh\nRavi\nRaymon\nRian\nRichmond\nRoderic\nRolf\nRolland\nRosario\nRoyal\nSandra\nSanjay\nScottie\nSharif\nShem\nSlade\nSol\nSydney\nTait\nTerance\nTerrill\nTimmothy\nTitus\nTorey\nTracey\nTyran\nValente\nVicent\nVictoriano\nWestley\nWhitney\nWilbur\nWilmer\nWyman\nYoung\nYsidro\nMichael\nJason\nDavid\nChristopher\nRobert\nJohn\nBrian\nDaniel\nJames\nMatthew\nEric\nRichard\nJose\nJoseph\nJeffrey\nSteven\nWilliam\nJoshua\nAnthony\nMark\nScott\nRyan\nKevin\nAaron\nPaul\nJeremy\nThomas\nJuan\nTimothy\nAndrew\nSean\nCharles\nJustin\nGregory\nShawn\nAdam\nKenneth\nJonathan\nCarlos\nEdward\nStephen\nBryan\nBenjamin\nJesus\nChad\nPatrick\nBrandon\nManuel\nRonald\nLuis\nGeorge\nJesse\nRaymond\nGabriel\nPeter\nVictor\nDonald\nNathan\nRicardo\nTodd\nFrancisco\nGary\nFrank\nMario\nKeith\nJorge\nMiguel\nSamuel\nRuben\nErik\nAntonio\nDouglas\nRoberto\nShane\nJoel\nJacob\nOscar\nTravis\nJavier\nDennis\nPhillip\nAlexander\nJaime\nHector\nAlejandro\nCraig\nLarry\nArmando\nRaul\nMartin\nJoe\nChristian\nMarcus\nSalvador\nSergio\nNicholas\nJerry\nAdrian\nMarc\nDerek\nCesar\nDanny\nFernando\nJohnny\nEduardo\nJeffery\nVincent\nArthur\nRandy\nRamon\nTroy\nBradley\nTony\nPhilip\nDamon\nHenry\nBrent\nAlbert\nLawrence\nPedro\nRafael\nAngel\nIan\nJon\nSteve\nJared\nAlfredo\nRussell\nBrett\nCarl\nDarren\nArturo\nMarco\nLouis\nAlberto\nAlex\nDustin\nGerardo\nJimmy\nJamie\nAlan\nKyle\nChris\nJeremiah\nEnrique\nCasey\nRene\nGilbert\nErnesto\nJay\nErnest\nRoy\nWalter\nJulio\nCurtis\nTerry\nCory\nGerald\nCorey\nAllen\nRodney\nMicheal\nRoger\nBobby\nAndres\nEdgar\nNathaniel\nSeth\nIsaac\nZachary\nJack\nWayne\nBilly\nGeoffrey\nRandall\nRicky\nAndre\nEugene\nDerrick\nEddie\nGlenn\nRalph\nGustavo\nRudy\nLeonard\nDamian\nKelly\nClinton\nTrevor\nMathew\nAlfonso\nLee\nShannon\nAlfred\nLance\nMarcos\nMike\nWillie\nGuillermo\nJeff\nRay\nOmar\nPablo\nRodolfo\nDean\nFrederick\nKristopher\nIvan\nRonnie\nTyler\nBruce\nDale\nKirk\nDarrell\nDamien\nGilberto\nJulian\nTommy\nAbel\nMaurice\nNeil\nBrad\nHarold\nClifford\nRamiro\nIsmael\nMarvin\nDarin\nJessie\nTyrone\nDominic\nEthan\nRogelio\nSaul\nClint\nTheodore\nGreg\nIgnacio\nWesley\nClayton\nEdwin\nFelipe\nHugo\nJerome\nMicah\nIsrael\nErick\nKarl\nNorman\nDevin\nMelvin\nKurt\nAndy\nDylan\nEvan\nNoah\nGuadalupe\nEarl\nHarry\nLeon\nByron\nElias\nJoaquin\nJoey\nEsteban\nToby\nDuane\nFred\nJarrod\nCameron\nRoman\nWarren\nColin\nNoel\nReginald\nRick\nGarrett\nFranklin\nHoward\nJayson\nDon\nShaun\nTracy\nFelix\nGrant\nLeonardo\nJermaine\nMitchell\nStanley\nAngelo\nLouie\nGlen\nLonnie\nDonovan\nDwayne\nLorenzo\nOrlando\nBret\nLeo\nMorgan\nBarry\nTyson\nAbraham\nEli\nHeath\nJohnathan\nMarlon\nNick\nStuart\nWade\nDan\nHumberto\nJim\nJonathon\nMax\nOctavio\nRoss\nSimon\nDevon\nFrankie\nBill\nNicolas\nSantiago\nAlvin\nCody\nEfrain\nPete\nClarence\nDaryl\nGuy\nJosh\nVernon\nBrendan\nGene\nMoises\nReynaldo\nTomas\nEmilio\nRigoberto\nTerrence\nAllan\nBen\nCalvin\nLamont\nRolando\nDana\nDarrin\nGordon\nHerbert\nMarshall\nMauricio\nNelson\nXavier\nDarryl\nDion\nLucas\nVicente\nFabian\nLuke\nTom\nAlvaro\nEfren\nJamal\nRoland\nDamion\nFreddie\nJess\nJody\nJordan\nLoren\nSonny\nStacy\nBernard\nMatt\nNakia\nAdolfo\nBenny\nBryant\nBryce\nErin\nFrancis\nHerman\nRandolph\nAgustin\nCaleb\nJohnnie\nSpencer\nTrent\nDwight\nLloyd\nRobin\nRon\nTim\nAlonzo\nDemetrius\nFloyd\nRaymundo\nBenito\nGavin\nGonzalo\nLewis\nOliver\nTed\nTerrance\nJake\nMoses\nNeal\nRoderick\nRodrigo\nRudolph\nSam\nBlake\nForrest\nOwen\nTy\nBradford\nBrady\nClay\nDarnell\nGregorio\nHarvey\nLeslie\nCharlie\nHeriberto\nJimmie\nLeroy\nArnold\nDante\nEdmund\nFredrick\nKent\nKris\nStephan\nFreddy\nGenaro\nMason\nAustin\nEdwardo\nGino\nHans\nLionel\nShad\nAron\nNoe\nReuben\nAugustine\nColby\nDiego\nGerard\nLeopoldo\nLester\nShon\nTerence\nBryon\nJosue\nKristoffer\nAntoine\nDeon\nGarry\nKristofer\nQuincy\nSammy\nTobias\nBernardo\nDesmond\nDewayne\nEverett\nGregg\nMyron\nRickey\nRusty\nSantos\nScot\nSheldon\nDave\nElliott\nErich\nFederico\nGarth\nOsvaldo\nPerry\nStefan\nCary\nJed\nJeffry\nJoesph\nPreston\nSidney\nArnulfo\nAurelio\nBob\nCecil\nCedric\nClyde\nDeshawn\nErnie\nFermin\nFidel\nGorge\nJasen\nKen\nKenny\nZachariah\nAlonso\nChance\nCole\nDonnie\nElliot\nFransisco\nGraham\nJackie\nLaurence\nLeland\nLevi\nMonte\nRex\nTaylor\nAdan\nAriel\nCarlton\nDemond\nElijah\nIsidro\nJean\nKelvin\nKerry\nKurtis\nMarcel\nRobbie\nVirgil\nArron\nBeau\nBrock\nClifton\nCourtney\nDino\nDomingo\nDonny\nDrew\nEdgardo\nElton\nGerman\nJamison\nJefferson\nJonah\nLamar\nLeonel\nLyle\nMilton\nRandal\nRocky\nBranden\nCarlo\nChester\nKristian\nMarcelo\nOswaldo\nSolomon\nAri\nCarey\nDarius\nEstevan\nForest\nGiovanni\nJeramy\nOtis\nRosendo\nTerrell\nConrad\nDane\nIra\nMarcelino\nMauro\nMickey\nNolan\nQuinn\nReed\nReid\nTimmy\nVance\nAldo\nAndreas\nArnoldo\nBlaine\nBrain\nBrennan\nDaren\nDario\nDarrel\nDenny\nEmiliano\nHarley\nJarrett\nJerod\nKareem\nMarlin\nMiles\nRodger\nSky\nWallace\nAdalberto\nAric\nBrook\nCristian\nDarrick\nDeandre\nEliseo\nEsequiel\nEverardo\nMalcolm\nMarty\nOrion\nRefugio\nValentin\nVidal\nWyatt\nBrendon\nChe\nCornelius\nCristobal\nDorian\nIsaiah\nIssac\nJeb\nJerardo\nJorje\nKendall\nNathanael\nPaulo\nSebastian\nSherman\nVince\nWill\nWilson\nAlexandro\nBrooks\nChet\nClaude\nCruz\nCurt\nDameon\nDavin\nDerick\nErwin\nHoracio\nJennifer\nJonas\nJosef\nJulius\nKory\nLucio\nMarquis\nMichel\nPierre\nRory\nScotty\nShayne\nSterling\nStewart\nTeddy\nAlton\nAnton\nAshley\nBart\nBrant\nCaesar\nCarter\nChadwick\nDaron\nDemian\nDominick\nDonnell\nHilario\nIsaias\nJade\nJeromy\nJerrod\nMariano\nMarkus\nNorberto\nOsbaldo\nReggie\nRojelio\nRoyce\nSandro\nThaddeus\nWinston\nAlexis\nAntione\nArchie\nBarrett\nBlas\nClark\nDamond\nDirk\nDonte\nEarnest\nEddy\nEloy\nEmanuel\nEzekiel\nHernan\nKenyon\nLazaro\nLuciano\nLupe\nMikel\nNickolas\nRenato\nRenee\nRomeo\nShea\nSilverio\nTheron\nTito\nTrenton\nUlysses\nUriel\nAdolph\nAhmad\nBennie\nBernardino\nChase\nCollin\nDeron\nEdmundo\nEmmanuel\nEmmett\nEzra\nGeronimo\nHugh\nJackson\nJeremie\nJosiah\nKenya\nLandon\nLogan\nMack\nMalik\nRaphael\nRichie\nRobby\nStevie\nTrinidad\nWilbert\nWillard\nZane\nAbram\nAl\nAli\nAmir\nAndrea\nAntony\nAvery\nBlair\nBrenton\nChuck\nDanial\nDoug\nElmer\nEmil\nErrol\nGarland\nJabari\nJamin\nJeremey\nJudd\nJudson\nLincoln\nMaria\nNathanial\nParis\nPascual\nRey\nReyes\nRico\nRod\nRodrick\nSalvatore\nSerjio\nStacey\nTad\nThad\nUbaldo\nVaughn\nWillis\nAbelardo\nAlain\nAlphonso\nAmado\nAugust\nBarney\nBrice\nBruno\nCristopher\nDallas\nDenis\nDusty\nEleazar\nEllis\nElvis\nErvin\nEzequiel\nFlorentino\nGalen\nGarrick\nGerry\nGil\nGildardo\nJefferey\nJerald\nJeramie\nJered\nJereme\nKennith\nLisa\nLon\nMarko\nPatricia\nPercy\nQuentin\nRobb\nRoosevelt\nTobin\nTorrey\nTristan\nTye\nTyree\nAmos\nAnibal\nAnson\nCarson\nChristina\nClemente\nDavis\nDelbert\nDuncan\nEdmond\nElbert\nElizabeth\nGeoff\nGrady\nHomer\nJamey\nJevon\nJob\nKelley\nKim\nLamonte\nLane\nLaron\nLeif\nLeobardo\nLowell\nMac\nMarion\nMichale\nMichelle\nMonty\nPatricio\nRaudel\nRob\nRonny\nSilvestre\nTino\nTory\nUlises\nVito\nAmador\nArmen\nArmondo\nBarton\nBillie\nButch\nCamilo\nCedrick\nCheyenne\nCyrus\nDavon\nDelano\nDenver\nDereck\nDillon\nDimitri\nDonavan\nDoyle\nEriberto\nEugenio\nFaustino\nFausto\nFlorencio\nGarret\nGaspar\nGeoffery\nIrwin\nIshmael\nJacinto\nJan\nJarod\nJaysen\nJedediah\nJohann\nJohnathon\nJunior\nKane\nKeenan\nLars\nLashawn\nLino\nLonny\nLynn\nMarcell\nMargarito\nMaximo\nMervin\nMick\nMyles\nNed\nNestor\nNicanor\nOmari\nRahsaan\nRandell\nRashad\nReymundo\nRhett\nRoel\nRosalio\nSal\nSalomon\nServando\nSilas\nSunny\nTracey\nVan\nWeston\nWilfred\nWilfredo\nZachery\nAntone\nApolinar\nAra\nAsa\nBaltazar\nBert\nBoris\nBraulio\nBuck\nCandelario\nCassidy\nChristine\nChristoper\nClaudio\nCoby\nCordell\nCuauhtemoc\nDamone\nDanniel\nDarick\nDax\nDeric\nDesi\nDewey\nDonta\nEnrico\nFabio\nFeliciano\nFransico\nFrederic\nGale\nGarett\nGus\nHeather\nHipolito\nIrvin\nJacque\nJasson\nJayme\nJerrold\nJulie\nJuventino\nKasey\nKendrick\nKenton\nKeven\nKristin\nKwame\nLeticia\nManny\nMisael\nMitchel\nNicky\nNigel\nRiley\nRonnell\nRoscoe\nRueben\nSamir\nSandy\nSantino\nScottie\nShay\nSylvester\nTeodoro\nToney\nWendell\nWes\nZack\nAlbaro\nAnand\nAngelica\nAnselmo\nArmand\nAubrey\nAugustin\nBaron\nBaudelio\nBoyd\nBraden\nBradly\nBrandt\nBronson\nCatarino\nChandler\nChauncey\nCornell\nCourtland\nDanilo\nDannie\nDarwin\nDerik\nDexter\nDomenic\nEd\nFiliberto\nFreedom\nGabino\nGeraldo\nHorace\nJacques\nJamar\nJamil\nJerad\nJerold\nJoan\nJude\nJustine\nKai\nKale\nKhary\nKit\nKristen\nLafayette\nLamarr\nLenny\nLorne\nLuther\nMacario\nMaceo\nMarcello\nMelchor\nMichal\nMichele\nMiller\nMiquel\nMonica\nMorris\nRamsey\nReinaldo\nRichardo\nRickie\nRito\nRosario\nRubin\nRussel\nRustin\nSabino\nStan\nTelly\nTimmothy\nTommie\nTremayne\nZackary\nAdrain\nAdrien\nAhmed\nAlexandre\nAlfonzo\nArden\nArt\nArtemio\nBartholomew\nBenedict\nBenigno\nBertrand\nBrannon\nBrien\nBryson\nBurt\nCain\nCandido\nCarmelo\nCarmen\nCecilio\nCleveland\nCliff\nCornelio\nCrispin\nCy\nDarian\nDarron\nDeangelo\nDejuan\nDel\nDelfino\nDemetrios\nDerwin\nDeven\nDick\nDominique\nDrake\nDwain\nEberardo\nEden\nEldon\nEliot\nElroy\nEnoch\nEphraim\nErasmo\nGermaine\nGideon\nGrover\nHank\nHarris\nHassan\nHiram\nHomero\nIke\nJacobo\nJamel\nJasper\nJenaro\nJerone\nJerrett\nJessy\nJoby\nJosemanuel\nJusten\nJusto\nJustus\nKenji\nKhalid\nLavon\nLevert\nLindsey\nLondell\nLorin\nLuiz\nMalachi\nManual\nMarcellus\nMaxwell\nMelissa\nMerlin\nMigel\nMilo\nMohamed\nMurray\nNarciso\nNathen\nNathon\nNino\nOlin\nOracio\nOswald\nOtto\nPadraic\nRaoul\nRomel\nRoyal\nRudolfo\nRufus\nSammie\nSamson\nSamual\nSesar\nShaka\nShan\nSherwin\nShiloh\nStevan\nTarik\nTavis\nTerrill\nThurman\nTitus\nTremaine\nTrever\nTrevon\nTruman\nTyron\nTyrus\nValentine\nValentino\nVashon\nVladimir\nWhitney\nWilliams\nYoung\nZion\nAlden\nAlessandro\nAnastacio\nArtis\nBardo\nBasilio\nBenjamen\nBenson\nBlue\nBobbie\nBonifacio\nBrenden\nBrion\nBritton\nBud\nBuddy\nBurton\nBuster\nCade\nCale\nCarlson\nCeasar\nCelestino\nChristohper\nChristos\nClaudia\nCullen\nDagoberto\nDajuan\nDamen\nDarby\nDaryle\nDavion\nDedric\nDemetrio\nDemon\nDesean\nDuke\nEdilberto\nEduard\nEhren\nElan\nEligio\nEly\nEmery\nEpifanio\nErie\nFlavio\nFranciso\nFranz\nGabe\nGaylord\nGerold\nGianni\nGillermo\nGiuseppe\nGonsalo\nGorje\nGraig\nHal\nHarlan\nHarrison\nHunter\nIrving\nJakob\nJame\nJarred\nJarret\nJarvis\nJeanpaul\nJelani\nJens\nJermain\nJerrell\nJessica\nJimi\nJoao\nJohnie\nJosedejesus\nJoseluis\nJovan\nJuancarlos\nJules\nKareen\nKaren\nKarim\nKathleen\nKenyatta\nKermit\nKhari\nKimberly\nKimo\nKip\nKlaus\nKraig\nLamon\nLanier\nLaszlo\nLaura\nLavell\nLeandro\nLenard\nLeocadio\nLeovardo\nLevon\nLibrado\nLindsay\nLoreto\nMarcelle\nMarcial\nMarcoantonio\nMarie\nMartel\nMatthias\nMaximiliano\nMichell\nModesto\nMonico\nOlegario\nPaolo\nPascal\nPorfirio\nQuinten\nQuinton\nRaffi\nRaleigh\nRamond\nRandel\nRashid\nRian\nRitchie\nRocco\nRommel\nRonaldo\nRonell\nRufino\nRyon\nSabas\nSage\nSandra\nSasha\nSerafin\nShant\nSharif\nSharon\nShelby\nShelton\nShilo\nSilvano\nSimeon\nSoren\nStanford\nStephanie\nSunil\nSusan\nSven\nTammy\nTao\nTeofilo\nTheo\nTod\nUriah\nVeronica\nVijay\nVincente\nWeldon\nWelton\nWilbur\nWillaim\nWilly\nWilmer\nWoodrow\nYvan\nZeke\nMichael\nJason\nDavid\nChristopher\nRobert\nDaniel\nJohn\nJames\nMatthew\nBrian\nJose\nRichard\nRyan\nJoshua\nEric\nJoseph\nJeffrey\nSteven\nWilliam\nAnthony\nScott\nMark\nJuan\nPaul\nKevin\nJeremy\nAaron\nThomas\nTimothy\nAndrew\nJustin\nSean\nCharles\nCarlos\nJonathan\nGregory\nAdam\nBenjamin\nBrandon\nKenneth\nStephen\nEdward\nBryan\nJesus\nNathan\nShawn\nPatrick\nJesse\nManuel\nChad\nLuis\nFrancisco\nGabriel\nPeter\nRonald\nVictor\nDonald\nGeorge\nRaymond\nMiguel\nFrank\nJorge\nMario\nRicardo\nTodd\nJacob\nJoel\nRuben\nRoberto\nAntonio\nGary\nJaime\nSamuel\nOscar\nKeith\nTravis\nErik\nDennis\nLarry\nArmando\nJavier\nHector\nPhillip\nDouglas\nShane\nAlexander\nGerardo\nRaul\nFernando\nSergio\nAlejandro\nCraig\nAdrian\nChristian\nMartin\nJerry\nNicholas\nSalvador\nEduardo\nDanny\nMarcus\nJohnny\nBrent\nRamon\nMarc\nCesar\nPhilip\nVincent\nArthur\nRafael\nRandy\nArturo\nBradley\nJared\nJeffery\nAlbert\nPedro\nTony\nJoe\nRussell\nDustin\nTroy\nIan\nHenry\nDerek\nDamon\nBrett\nGilbert\nLawrence\nMarco\nAngel\nMicheal\nAlan\nEnrique\nAlfredo\nAlberto\nKyle\nZachary\nAlex\nDarren\nJamie\nJon\nCasey\nCorey\nSteve\nErnesto\nRene\nCarl\nJeremiah\nEdgar\nAndre\nGerald\nCory\nLouis\nJack\nTerry\nGeoffrey\nWalter\nBilly\nIsaac\nRoy\nJimmy\nJulio\nChris\nBobby\nErnest\nMarcos\nRodney\nNathaniel\nTrevor\nWayne\nCurtis\nOmar\nRoger\nSeth\nLance\nJay\nRandall\nAlfred\nLee\nEugene\nMathew\nRudy\nAndres\nRodolfo\nDerrick\nRalph\nGustavo\nEddie\nAlfonso\nDamian\nRicky\nAllen\nLeonard\nGlenn\nCameron\nGuillermo\nMike\nRonnie\nTheodore\nTommy\nWillie\nIvan\nTyler\nBrad\nDarrell\nShannon\nFelipe\nBruce\nFrederick\nMaurice\nKelly\nNeil\nOrlando\nPablo\nErick\nJulian\nWesley\nJerome\nJoaquin\nMicah\nAbel\nDean\nClinton\nEdwin\nDale\nKristopher\nGilberto\nJarrod\nLucas\nRogelio\nDominic\nIsrael\nRamiro\nTyrone\nGarrett\nGuadalupe\nHugo\nAndy\nDamien\nKirk\nHarold\nMarvin\nEsteban\nFred\nStanley\nEthan\nHoward\nJeff\nJessie\nNoah\nRay\nSaul\nEvan\nFelix\nColin\nDwayne\nNoel\nByron\nDylan\nJoey\nKarl\nRoman\nClayton\nClifford\nGrant\nIgnacio\nMitchell\nDevin\nReginald\nIsmael\nToby\nGreg\nHeath\nLeo\nDarin\nLorenzo\nOctavio\nRigoberto\nVicente\nWade\nBen\nDarryl\nDon\nMax\nElias\nAbraham\nLeonardo\nLouie\nSonny\nEarl\nMoises\nDana\nNicolas\nRodrigo\nEfrain\nKurt\nNoe\nTomas\nCalvin\nNorman\nLeon\nTyson\nWarren\nAlvin\nBret\nLonnie\nNelson\nNick\nShaun\nHumberto\nLloyd\nAngelo\nFrankie\nCaleb\nGlen\nMelvin\nMorgan\nSantiago\nEli\nHarry\nRick\nSpencer\nDion\nClifton\nJake\nClint\nGavin\nMauricio\nRoland\nTerrance\nAdolfo\nDan\nJimmie\nPete\nAlvaro\nDamion\nTracy\nCody\nFredrick\nBryce\nDuane\nFreddie\nJohnathan\nLuke\nRoss\nBernard\nDwight\nFrancis\nFranklin\nHerbert\nMarshall\nNeal\nVernon\nAllan\nAron\nDaryl\nJamal\nJonathon\nJordan\nLeroy\nRolando\nBlake\nBrendan\nHerman\nJayson\nSam\nAgustin\nEmilio\nGuy\nHeriberto\nJim\nSantos\nAustin\nBill\nDante\nOsvaldo\nSimon\nMoses\nOliver\nGene\nLewis\nTed\nXavier\nClarence\nRobin\nErin\nFabian\nFidel\nGordon\nJess\nRickey\nRocky\nAdan\nDonovan\nJermaine\nLamont\nLoren\nTim\nReuben\nArnold\nBarry\nDarrin\nKent\nMarlon\nRandolph\nAriel\nBryant\nColby\nDemetrius\nFreddy\nLevi\nReynaldo\nStuart\nDarnell\nEfren\nGorge\nJosh\nMason\nRoderick\nLeslie\nErnie\nLamar\nMatt\nOwen\nBenny\nDiego\nJosue\nMiles\nMilton\nPerry\nSammy\nBenito\nEliseo\nGenaro\nGerman\nMalcolm\nStacy\nStephan\nCary\nDewayne\nForrest\nJohnnie\nLeopoldo\nArnulfo\nBrady\nCruz\nDevon\nGonzalo\nGregg\nMyron\nTy\nAlonzo\nBeau\nBradford\nBranden\nFederico\nRaymundo\nRon\nTobias\nTom\nZachariah\nAntoine\nArron\nBernardo\nCedric\nFloyd\nGregorio\nJackie\nRudolph\nScot\nChester\nDeon\nDonnie\nGraham\nJerrod\nLester\nMaria\nNakia\nQuincy\nTerrence\nTrent\nCharlie\nHarvey\nJody\nJonah\nTerence\nCarlo\nElton\nEverett\nJeromy\nLeonel\nTerrell\nBryon\nClyde\nDave\nDomingo\nDorian\nEverardo\nLucio\nOsbaldo\nRaphael\nAlexandro\nBrock\nCole\nDeandre\nDonny\nElijah\nElliot\nElliott\nEmmanuel\nKerry\nKris\nKristian\nLionel\nPreston\nRefugio\nSalvatore\nSebastian\nChuck\nGerard\nGiovanni\nIsaiah\nIsidro\nMarcel\nSky\nTaylor\nCourtney\nDrew\nEdgardo\nErwin\nFransisco\nHans\nJasen\nKory\nRory\nSheldon\nStefan\nTeddy\nAldo\nAugustine\nAurelio\nCecil\nCollin\nEdmond\nGarry\nJean\nKen\nLaurence\nMariano\nMonte\nReggie\nAlonso\nBob\nCristian\nDarrel\nDonte\nEdmund\nEdwardo\nGalen\nIra\nJerod\nJoesph\nLandon\nLeland\nMarcelino\nMauro\nRosendo\nVirgil\nWendell\nWilson\nAli\nBennie\nJamison\nJarrett\nJed\nJorje\nKenny\nLyle\nMarquis\nOswaldo\nShad\nSherman\nAdalberto\nAlexis\nClay\nDane\nDarrick\nDenny\nEloy\nErich\nEstevan\nJennifer\nJeramie\nJerardo\nJevon\nJulius\nMarcelo\nMarty\nOtis\nQuentin\nQuinn\nRandal\nRodger\nRusty\nSolomon\nAbelardo\nAnton\nAshley\nBert\nCarson\nDemond\nEmanuel\nEzequiel\nFermin\nIssac\nJonas\nKareem\nKristofer\nNathanael\nNolan\nRex\nShiloh\nShon\nStewart\nTobin\nTrenton\nTrinidad\nValentin\nWill\nWyatt\nAhmad\nAmador\nBrennan\nCaesar\nCarey\nChance\nClaudio\nConrad\nCristobal\nDameon\nDominick\nMarques\nMichel\nPaulo\nReed\nRonny\nSantino\nTyron\nUriel\nVance\nWilbert\nAbram\nAntony\nArmand\nBart\nBlair\nChadwick\nDallas\nDelbert\nDonnell\nElmer\nEsequiel\nEzra\nGarth\nHoracio\nJarod\nJerald\nKenyon\nKim\nKurtis\nLeif\nRobbie\nRomeo\nSandro\nWinston\nAlec\nAnibal\nAntwan\nBrendon\nBuddy\nClemente\nDaren\nDario\nDarius\nDax\nEarnest\nEmiliano\nForest\nGarrick\nGino\nHiram\nHugh\nJeffry\nJeramy\nJoseluis\nJosiah\nKelvin\nMarion\nRico\nRobby\nRojelio\nRoyce\nUbaldo\nUlysses\nVaughn\nWilfredo\nZane\nAndreas\nArnoldo\nCarlton\nChe\nClark\nCornelius\nCurt\nDesmond\nDino\nGus\nHarley\nJeremie\nKasey\nKenyatta\nKristoffer\nLonny\nMateo\nMichelle\nNigel\nReid\nScotty\nSidney\nSilvestre\nSterling\nAmos\nArchie\nAric\nBrooks\nCarter\nChet\nClaude\nDanial\nDerick\nDeshawn\nEldon\nFlorencio\nFranco\nGeronimo\nJabari\nJamar\nJayme\nJelani\nLuciano\nMonty\nMyles\nParis\nRickie\nRod\nRufus\nRussel\nShayne\nSylvester\nTimmy\nTorrey\nTyree\nWallace\nWillard\nAmado\nArtemio\nBarrett\nBlaine\nBrain\nBrant\nBrook\nCordell\nDemian\nDenis\nDeron\nDirk\nDominique\nEdmundo\nFlavio\nGabino\nGildardo\nGrady\nHomero\nIsaias\nJefferson\nJunior\nKennith\nKhalid\nLupe\nLynn\nMalik\nMickey\nMorris\nNestor\nNorberto\nRashad\nSimeon\nStacey\nTommie\nTory\nVan\nWillis\nAbdul\nAdolph\nAl\nAubrey\nAugust\nCeasar\nCleveland\nCornell\nCyrus\nDewey\nDexter\nDonavan\nDonta\nDoug\nDoyle\nDuncan\nEmmett\nEriberto\nErvin\nEzekiel\nFiliberto\nFlorentino\nGil\nGlendon\nHilario\nHubert\nJefferey\nJosef\nJuvenal\nKeenan\nKendrick\nLenny\nLiam\nMac\nMargarito\nMaxwell\nMichale\nMigel\nPierre\nReyes\nRosalio\nRueben\nSage\nShay\nTad\nTeodoro\nTitus\nTremayne\nTristan\nTyrell\nAlphonso\nAmir\nAnselmo\nAntione\nAra\nAri\nArt\nBernie\nBrandy\nBrenden\nBurt\nConrado\nDamen\nDarwin\nDavis\nDenver\nElbert\nEmil\nFidencio\nHernan\nJacques\nJade\nJessica\nJohnathon\nKarim\nKelley\nKendall\nKirby\nKorey\nLemuel\nLincoln\nLogan\nLuther\nMalachi\nMarcello\nMaximiliano\nMohammed\nNickolas\nRamsey\nRaudel\nRey\nReymundo\nRichardo\nSalomon\nShea\nThaddeus\nTheo\nTheron\nTito\nTravon\nUlises\nUriah\nValentino\nVeronica\nVidal\nVince\nAdrain\nAlton\nAntone\nArmondo\nAureliano\nAvery\nBaltazar\nBarney\nBenigno\nBenjiman\nBoyd\nBradly\nBrenton\nCarnell\nCheyenne\nCoby\nCuahutemoc\nCuauhtemoc\nDaron\nDavin\nElisha\nEmery\nEpifanio\nEvaristo\nFausto\nHipolito\nJacobo\nJamey\nJereme\nJeremey\nJerrad\nJerrold\nJob\nKai\nKenya\nLenard\nMaximino\nMilo\nOrion\nOtto\nPascual\nRaymon\nRenee\nRommel\nSammie\nSerjio\nShelby\nTavis\nWilbur\nWoodrow\nAlain\nAmbrose\nAnastacio\nBrice\nBrion\nBurke\nCarmelo\nCassidy\nCelso\nCleo\nConan\nCrispin\nDanilo\nDannie\nDavon\nDejuan\nDelvon\nDeric\nDeshon\nDeven\nEddy\nEnrico\nErica\nEugenio\nFaustino\nFerdinand\nFransico\nFredy\nGail\nGaston\nGeoff\nGeoffery\nHarrison\nHomer\nJamin\nJarred\nJedediah\nJedidiah\nJudd\nJude\nKameron\nKieth\nLars\nLeobardo\nLino\nLowell\nMaceo\nMarcell\nMarlin\nMathias\nMatias\nMaximilian\nMaximillian\nMaximo\nMel\nMelissa\nMiquel\nMitchel\nNicole\nNikolai\nPatricio\nPhilippe\nRahsaan\nRandell\nRhett\nRichie\nRito\nRufino\nSamual\nSandra\nShanon\nSharif\nShomari\nSilas\nTarik\nTavares\nTerrill\nTorrance\nTracey\nTrever\nVito\nWeston\nAkili\nAlden\nAlfonzo\nAndrae\nAndrea\nAnson\nArnel\nAsa\nBarton\nBasil\nBaudelio\nBenton\nBerry\nBlas\nBraden\nBrandt\nBuck\nBud\nBulmaro\nBurton\nCale\nCarmen\nChase\nChristophor\nCourtland\nDalton\nDarian\nDarron\nDavey\nDemetrio\nDemon\nDerrell\nDerron\nDesi\nDimitrios\nDouglass\nDuke\nEbony\nEdgard\nEduard\nEllis\nEnoch\nErasmo\nErie\nEusebio\nFletcher\nFrederic\nGarett\nGerry\nHank\nHarlan\nHerminio\nHunter\nIsabel\nIsreal\nJacinto\nJackson\nJamaal\nJarett\nJerad\nJered\nJerimiah\nJonny\nJulie\nKenji\nKiley\nKristen\nLane\nLaron\nLisa\nLorin\nLorne\nLoy\nLucky\nMack\nMarko\nMatthias\nMichele\nMikel\nMonica\nOswald\nPorfirio\nQuinton\nRaffi\nRajesh\nRand\nRenato\nRiley\nRoel\nRoque\nRosario\nRoyal\nRubin\nRyon\nSarah\nSerafin\nSixto\nSkye\nStanford\nThad\nTimmothy\nVictoriano\nWilly\nYusef\nZachery\nZackary\nZackery\nAlexandre\nAmit\nAna\nAnderson\nAnival\nAnthoney\nAram\nArlen\nArmon\nArmond\nArvin\nBarret\nBenson\nBobbie\nCade\nCamilo\nCamron\nCharley\nChristiaan\nCliffton\nColton\nCullen\nDameion\nDamone\nDanniel\nDemetric\nDerik\nDevlin\nDietrich\nDillon\nEden\nElvin\nElvis\nEmerson\nEphraim\nFranky\nGermain\nGerrit\nGillermo\nGonsalo\nGrayson\nHamilton\nHassan\nIbrahim\nIrving\nIrwin\nIsidoro\nJacque\nJameson\nJamieson\nJamil\nJamon\nJarret\nJarvis\nJasper\nJasson\nJordon\nJovan\nJustus\nKamal\nKelsey\nKraig\nKristin\nKristofor\nLamarr\nLawerence\nLazaro\nLorena\nLoyd\nLuz\nMacario\nMarcial\nMaurilio\nMikael\nMisael\nMohammad\nNarciso\nNicky\nNino\nNorris\nOmari\nOren\nOrin\nPieter\nPlacido\nPrescott\nRaj\nRebecca\nRian\nRob\nRodrick\nRomel\nRoosevelt\nSal\nSalbador\nSami\nSamir\nSamson\nSaturnino\nTaj\nTelly\nThor\nUnknown\nValente\nVictorio\nVirgilio\nWilfred\nYancy\nYsidro\nZack\nAbdon\nAbelino\nAlvino\nAmanda\nAmar\nAntwon\nAran\nArlo\nAsher\nAsim\nAttila\nAudie\nBaron\nBenjamen\nBenji\nBennett\nBjorn\nBodie\nBoris\nBraulio\nBrien\nBritt\nBrody\nBruno\nBryn\nCandelario\nCass\nChadd\nChandler\nChristen\nChristina\nChristine\nChristoper\nCirilo\nCiro\nClaudia\nClement\nColeman\nCorbin\nCornelio\nCoy\nCristopher\nDagoberto\nDaryle\nDawn\nDelano\nDerrek\nDimitri\nDionisio\nDontay\nEladio\nEldridge\nEliot\nElizabeth\nElroy\nEngelbert\nErika\nEulalio\nFilemon\nFrancesco\nFranz\nFreeman\nGareth\nGarret\nGaspar\nGeary\nGeoffry\nGeraldo\nGeremy\nGian\nGianni\nGideon\nGiuseppe\nGloria\nGlynn\nGrabiel\nGreggory\nGustave\nHal\nHeather\nHerschel\nHezekiah\nHiroshi\nIsacc\nIvory\nJai\nJairo\nJamel\nJan\nJarad\nJarrid\nJavon\nJaysen\nJericho\nJermain\nJeromey\nJeromie\nJohan\nJohann\nJohnson\nJomo\nJory\nJuancarlos\nJudah\nJules\nKaleb\nKane\nKeegan\nKenton\nKenyatte\nKeon\nKimani\nLamonte\nLaura\nLavelle\nLondon\nLucien\nLucius\nLuiz\nManny\nMarcoantonio\nMarkus\nMicha\nMichaelangelo\nModesto\nNader\nNapoleon\nNathanial\nNile\nNorbert\nOrville\nParker\nPatricia\nPrimitivo\nRahul\nRamone\nRamses\nRaoul\nRashid\nReese\nReno\nRich\nRobb\nRodman\nRoldan\nRolland\nRonaldo\nRonnell\nRoverto\nRudolfo\nSandy\nSanford\nSeamus\nSedrick\nSemaj\nShain\nShan\nSheridan\nShilo\nSilvio\nSkip\nStevan\nSultan\nSunny\nTanner\nTate\nTino\nTorin\nTrinity\nTruman\nTuan\nTucker\nTye\nVahe\nVern\nVincente\nVinson\nVon\nWayland\nWebster\nWendy\nWilber\nWoody\nYolanda\nYusuf\nZaire\nZeke\nMichael\nDavid\nJason\nChristopher\nRobert\nDaniel\nJames\nJohn\nMatthew\nBrian\nJose\nJoseph\nEric\nJoshua\nRyan\nRichard\nAnthony\nSteven\nWilliam\nJuan\nJeffrey\nJeremy\nKevin\nMark\nScott\nAaron\nPaul\nTimothy\nThomas\nAndrew\nJustin\nBenjamin\nSean\nAdam\nJonathan\nCharles\nGregory\nCarlos\nBrandon\nGabriel\nNathan\nEdward\nStephen\nKenneth\nBryan\nJesus\nJesse\nShawn\nLuis\nManuel\nJorge\nPatrick\nFrancisco\nMiguel\nChad\nJacob\nRonald\nVictor\nRicardo\nRaymond\nPeter\nMario\nSamuel\nGeorge\nAntonio\nDonald\nRoberto\nFrank\nKeith\nRuben\nAlejandro\nTravis\nGary\nTodd\nJaime\nJoel\nErik\nOscar\nDouglas\nArmando\nEduardo\nJeremiah\nShane\nHector\nRaul\nAlexander\nSergio\nJavier\nLarry\nPhillip\nNicholas\nSalvador\nCraig\nCesar\nDustin\nMartin\nGerardo\nAdrian\nDennis\nFernando\nChristian\nJohnny\nJerry\nJoe\nVincent\nJared\nArthur\nZachary\nArturo\nRafael\nRamon\nRandy\nEnrique\nIan\nDerek\nBrent\nHenry\nBradley\nPhilip\nMarc\nDamon\nAlbert\nKyle\nDanny\nTony\nJeffery\nPedro\nOmar\nAlfredo\nSteve\nAngel\nAlex\nMarco\nAlberto\nTroy\nMarcus\nCasey\nCory\nJimmy\nLawrence\nAlan\nBrett\nCorey\nGilbert\nErnesto\nRene\nDarren\nEdgar\nRussell\nJon\nAndre\nJulio\nJamie\nNathaniel\nTerry\nCarl\nSeth\nIsaac\nCurtis\nLouis\nAllen\nBobby\nJack\nRodolfo\nRoy\nWayne\nEugene\nWalter\nMicheal\nRoger\nEddie\nGerald\nJay\nBilly\nGeoffrey\nErnest\nTrevor\nTyler\nKristopher\nRodney\nRudy\nAlfonso\nLee\nLeonard\nWesley\nGuillermo\nMarcos\nAndres\nClinton\nDamian\nRandall\nMathew\nFelipe\nRicky\nCameron\nLance\nRalph\nAlfred\nGustavo\nPablo\nGlenn\nNeil\nChris\nIsrael\nAbel\nDominic\nRonnie\nJulian\nIvan\nTyrone\nKelly\nGilberto\nEvan\nRamiro\nRogelio\nDale\nErick\nDean\nDerrick\nEdwin\nFrederick\nNoah\nShannon\nTommy\nColin\nDarrell\nJerome\nMaurice\nSaul\nBruce\nIsmael\nBrad\nMicah\nRay\nJoaquin\nLeon\nHugo\nTheodore\nAbraham\nJoey\nFred\nStanley\nWillie\nDamien\nIgnacio\nEsteban\nGarrett\nReginald\nLucas\nElias\nNelson\nGuadalupe\nJessie\nRick\nAndy\nJarrod\nRodrigo\nSpencer\nClifford\nMike\nByron\nTomas\nCalvin\nClayton\nDarin\nHarold\nMelvin\nHumberto\nMitchell\nTyson\nBrendan\nBret\nDylan\nEarl\nLorenzo\nMoises\nOrlando\nJeff\nKirk\nFelix\nAgustin\nEthan\nMarvin\nVicente\nJamal\nJermaine\nJordan\nGrant\nFabian\nRoman\nDuane\nNicolas\nNoel\nOctavio\nShaun\nDevin\nDon\nGreg\nLonnie\nHoward\nMorgan\nNoe\nNorman\nKurt\nSimon\nToby\nDamion\nDwayne\nGlen\nHarry\nWarren\nAustin\nJohnathan\nRigoberto\nSantiago\nAllan\nAngelo\nEfren\nGavin\nLuke\nCody\nDaryl\nKarl\nLeo\nEfrain\nPreston\nAlvaro\nAlvin\nClarence\nFreddie\nHeath\nMauricio\nFranklin\nBen\nCaleb\nLoren\nNick\nClint\nJayson\nLeonardo\nGuy\nMax\nOsvaldo\nRolando\nSonny\nBernard\nDana\nFrankie\nMarlon\nDonovan\nJonathon\nLouie\nXavier\nAdan\nJake\nJim\nRoland\nAdolfo\nFidel\nPete\nBarry\nClifton\nEli\nJimmie\nRoss\nTim\nWade\nGonzalo\nLloyd\nMarshall\nMoses\nDarryl\nLewis\nTed\nDonny\nDwight\nFreddy\nBlake\nDarrin\nFederico\nOliver\nReynaldo\nBeau\nBill\nEdwardo\nHerbert\nJody\nJosue\nLevi\nRobin\nTerrence\nBenito\nJess\nNeal\nSantos\nTerrance\nGordon\nLeroy\nDemetrius\nFrancis\nHeriberto\nJohnnie\nRandolph\nRaymundo\nAntoine\nEmilio\nGene\nReuben\nArnold\nBryce\nDion\nErnie\nQuincy\nRocky\nBryant\nDante\nGregorio\nSam\nTerrell\nBradford\nHerman\nLester\nOsbaldo\nBrock\nIsidro\nLionel\nCedric\nIsaiah\nJosh\nKent\nLamar\nMarcel\nCharlie\nDevon\nForrest\nKenny\nAron\nColby\nDan\nMiles\nRoderick\nSheldon\nTom\nZachariah\nBenny\nBernardo\nDarnell\nGraham\nAli\nArnoldo\nBryon\nDiego\nDrew\nElijah\nSammy\nTerence\nVernon\nAriel\nErin\nFredrick\nKareem\nLamont\nLeonel\nLeopoldo\nRon\nTracy\nClay\nDomingo\nJulius\nMatt\nStephan\nAlonzo\nBranden\nEmiliano\nGenaro\nHarvey\nIssac\nJoesph\nLeslie\nMilton\nRickey\nRudolph\nSidney\nSolomon\nStuart\nTaylor\nValentin\nArron\nAurelio\nCarlo\nDeon\nDewayne\nEdmund\nEverett\nFransisco\nGerman\nGorge\nGregg\nStacy\nStewart\nTobias\nTy\nCary\nErich\nJackie\nKristian\nArnulfo\nBrady\nCristian\nDonte\nEliseo\nJarrett\nJasen\nConrad\nDeandre\nEdgardo\nEzequiel\nFloyd\nJosiah\nKerry\nNickolas\nWyatt\nAugustine\nChester\nDarius\nEverardo\nGerard\nKory\nKristofer\nRory\nStefan\nBob\nCourtney\nCruz\nEmmanuel\nIsaias\nKris\nLeland\nRico\nTrinidad\nAlonso\nClyde\nDominick\nDonnie\nElliott\nEstevan\nFermin\nGiovanni\nHoracio\nJabari\nKurtis\nLaurence\nMarty\nMason\nNathanael\nRandal\nRex\nRobbie\nRojelio\nSandro\nSebastian\nAric\nClark\nDenny\nDesmond\nEzra\nGino\nJeffry\nJohnathon\nJovan\nLandon\nMarcelo\nMarkus\nMyles\nOswaldo\nTravon\nWilson\nAldo\nAlexis\nDario\nDerick\nJerrod\nMalcolm\nRaphael\nRoyce\nSalvatore\nTrent\nTyree\nWendell\nAlexandro\nBrain\nBraulio\nCarey\nCarlton\nCarter\nClaudio\nCollin\nDane\nDino\nHarley\nJean\nJerald\nJeramy\nJerardo\nJeromy\nMarcelino\nReyes\nSterling\nAbram\nBrendon\nChuck\nCristobal\nDarrick\nElliot\nEmanuel\nGarry\nHans\nJamaal\nJamison\nJed\nJefferson\nJonah\nKen\nLaron\nLeif\nMaria\nMonte\nQuentin\nRusty\nVirgil\nDavin\nEloy\nIra\nKasey\nKendall\nMariano\nMarquis\nMauro\nOwen\nPaulo\nSage\nScot\nShad\nVance\nWinston\nZane\nAnton\nBennie\nClemente\nCole\nDallas\nDameon\nDonnell\nEarnest\nElton\nEriberto\nJackson\nJamey\nJan\nJeramie\nJerod\nJorje\nLogan\nLucio\nMarques\nMigel\nMyron\nNolan\nScotty\nSherman\nTyron\nUlysses\nVince\nAdalberto\nAntony\nBlair\nChe\nEdmundo\nJayme\nKelley\nKim\nLincoln\nLino\nMack\nOrion\nRenato\nRoosevelt\nSal\nTimmy\nAhmad\nAntwan\nArmondo\nAshley\nBobbie\nBrook\nBrooks\nCaesar\nCecil\nChance\nDarrel\nDorian\nElbert\nGarth\nJarod\nJeremie\nLeandro\nOtis\nQuinn\nRefugio\nRodger\nShayne\nTobin\nTremayne\nTristan\nUriah\nValentino\nAlec\nAmador\nAndreas\nAnibal\nBart\nBlaine\nBlas\nBrant\nCamilo\nCarson\nCeasar\nDanial\nDax\nDominique\nEdmond\nErwin\nFiliberto\nGarrick\nHugh\nJamar\nJarred\nJude\nKelvin\nLuciano\nLyle\nMichel\nNigel\nPorfirio\nRahsaan\nReggie\nRey\nRommel\nRosendo\nTeddy\nWilfred\nAbdul\nAl\nAlfonzo\nAmir\nArtemio\nAubrey\nBert\nBuddy\nChadwick\nCurt\nDagoberto\nDanilo\nDaren\nDaron\nDave\nDelbert\nDemond\nDeshawn\nErrol\nEugenio\nEzekiel\nFlorencio\nFlorentino\nGalen\nGamaliel\nHilario\nJamil\nJennifer\nJonas\nJoseluis\nLazaro\nLeobardo\nLong\nLowell\nNestor\nPerry\nReed\nRobby\nServando\nShon\nSky\nStacey\nTai\nTaj\nTrenton\nUlises\nUriel\nWeston\nAdolph\nAnson\nArchie\nBarney\nBarrett\nBrice\nCelso\nChristoper\nClaude\nCornelius\nEhren\nElmer\nEmmett\nFeliciano\nFranco\nGabino\nGarret\nHiram\nHubert\nJamin\nJedediah\nJeremey\nKarim\nKeenan\nKristoffer\nLenny\nLupe\nLuther\nPascual\nRamsey\nSerjio\nThaddeus\nTheron\nTory\nVan\nVincente\nAntone\nAugustin\nBrennan\nCleveland\nCornelio\nDarian\nDavis\nDemian\nDenis\nDenver\nEleazar\nEsequiel\nForest\nHeather\nJacques\nJered\nJereme\nJeromie\nJohann\nMargarito\nMaxwell\nNorberto\nRaudel\nRussel\nShay\nShea\nSilvestre\nSylvester\nWallace\nWilbert\nZachery\nZackary\nAlain\nAmit\nAntione\nAri\nArmond\nAvery\nBaron\nBasilio\nBillie\nBrenden\nBrenton\nCliff\nConrado\nDexter\nDoyle\nDusty\nEdgard\nErvin\nFaustino\nGiancarlo\nGideon\nGillermo\nHernan\nJade\nJameel\nJefferey\nJelani\nJermey\nJeronimo\nJuancarlos\nJudd\nKaleb\nKendrick\nKeyon\nKhalid\nKhristopher\nLane\nLars\nLauro\nMalik\nMikel\nMilo\nMonty\nNathanial\nQuinton\nRito\nRomeo\nRosalio\nRudolfo\nSamson\nSilverio\nTad\nTremaine\nVaughn\nWill\nWillard\nAlvino\nAmos\nAram\nAugust\nBaltazar\nBernardino\nBruno\nChet\nChristina\nConan\nCristopher\nCullen\nDamond\nDelfino\nDemetrio\nDerik\nDeron\nDionicio\nDomenic\nDonavan\nDontae\nElizabeth\nElvin\nEnoch\nFausto\nFrancesco\nFranciso\nGildardo\nGorje\nGus\nHank\nHarlan\nHayden\nHomero\nJacinto\nJerrold\nJonpaul\nJunior\nJuvenal\nKenan\nKorey\nLafayette\nLisa\nMalachi\nMarcell\nMarlin\nMichelle\nNicky\nOracio\nOtto\nPierre\nReymundo\nRob\nSabino\nSimeon\nTito\nTommie\nVeronica\nVidal\nYuri\nAdriel\nAdrien\nAgapito\nAlphonso\nAlton\nAndrea\nAra\nArt\nBernie\nBrandt\nCain\nChase\nCheyenne\nChistopher\nCordell\nDashawn\nDewey\nDillon\nDionisio\nDonato\nDonta\nDoug\nEddy\nEfrem\nEldon\nElisha\nEly\nFavian\nFranz\nFrederic\nFredy\nGabe\nGerry\nGil\nHomar\nIsreal\nJamall\nJarad\nJarett\nJevon\nJusto\nKai\nKelsey\nKermit\nKonrad\nKwame\nMagdaleno\nMarion\nMarlo\nMickey\nNed\nNino\nPatricio\nPhil\nRhett\nRian\nRocco\nRonnell\nRoque\nRosario\nRueben\nRufus\nSandra\nSasha\nSesar\nSigifredo\nSilas\nSunny\nTarik\nTheo\nTod\nTorrey\nTracey\nViet\nVito\nWestley\nWhitney\nWilliams\nWoodrow\nYusef\nAidan\nAlbaro\nAmerico\nAmy\nAndrei\nAnthoney\nBasil\nBjorn\nBoris\nBoyd\nBraden\nBrandan\nBrien\nBrody\nCandelario\nCirilo\nCornell\nCy\nDanielle\nDannie\nDaryll\nDavey\nDavon\nDejuan\nDevan\nDimitri\nDomonic\nDouglass\nEladio\nElio\nEllis\nEnrico\nErasmo\nErie\nFidencio\nFlavio\nFortino\nGabrial\nGarett\nGeremy\nGeronimo\nGiuseppe\nGrady\nGualberto\nHassan\nHipolito\nHomer\nIrving\nJacobo\nJahmal\nJairo\nJamon\nJasper\nJeanpaul\nJedidiah\nJenner\nJensen\nJeramiah\nJerimy\nJob\nJohnpaul\nJudson\nJustino\nJustus\nKennith\nKenyatta\nKevan\nKip\nKirby\nLamarr\nLavell\nLiam\nLukas\nMarcello\nMateo\nMaximilian\nMaximillian\nMiguelangel\nMorris\nNate\nNicole\nOrin\nPaulino\nRaoul\nRashad\nReid\nRenaldo\nRenee\nReno\nRichie\nRickie\nRubin\nSandy\nSarah\nScottie\nSeneca\nTamir\nTarek\nTerance\nTerrill\nTrever\nTrevon\nUbaldo\nWes\nWilfredo\nWoody\nYsidro\nAbelardo\nAhmed\nAlbino\nAlejo\nAlicia\nAlverto\nAmar\nAnastacio\nAnderson\nAntwon\nApolonio\nArmand\nAsher\nAxel\nBenjamen\nBernabe\nBerry\nBrando\nBryson\nBuck\nBurke\nCecilio\nCedrick\nCharlton\nChristofer\nCipriano\nCuauhtemoc\nCynthia\nCyrus\nDaman\nDameion\nDandre\nDanniel\nDarien\nDarwin\nDerrek\nDeven\nDru\nDuncan\nDupree\nEliasar\nElvis\nEmerson\nEmery\nEphraim\nEtienne\nEvaristo\nFernie\nFilemon\nFletcher\nGavino\nGian\nGlendon\nGreggory\nGuido\nIran\nIsacc\nJaimie\nJamarr\nJamel\nJaysen\nJerad\nJeramey\nJermain\nJosef\nJulien\nJun\nKenya\nKeven\nKristen\nLamonte\nLavon\nLeeroy\nLonny\nLoyd\nLuiz\nMac\nMaher\nMahmoud\nMarlow\nMaximino\nMaximo\nMaynard\nMerrill\nMichele\nModesto\nNakia\nNathen\nNiles\nNolberto\nNorma\nOlin\nRama\nRashaan\nRasheed\nRebecca\nReginal\nRodrick\nRolland\nRonaldo\nRonell\nRonny\nRoyal\nSammie\nSandeep\nSantino\nSara\nSeamus\nShanon\nShant\nSharif\nShelby\nSherwin\nShiloh\nSixto\nSkye\nTeodoro\nTerrel\nThad\nThor\nTitus\nTrenell\nTyrell\nValdemar\nVern\nVicent\nWard\nWeldon\nWiley\nZakary\nZoltan\nAbran\nAdonis\nAdriano\nAlexandre\nAmado\nAmando\nAmmon\nAnand\nAndrae\nApolinar\nArlen\nArmen\nArsenio\nArtie\nArtis\nAsa\nAustreberto\nBaldemar\nBarron\nBaudelio\nBenedict\nBonifacio\nBradly\nBrannon\nBrodie\nBulmaro\nBurt\nCassidy\nCedar\nClaudia\nCortney\nCris\nCyril\nDani\nDaryle\nDeangelo\nDemetrios\nDereck\nDerrell\nDeshon\nDjango\nDonavon\nDonell\nDoroteo\nDrake\nDwaine\nEan\nEctor\nEliot\nEllery\nElmo\nEmil\nEnrrique\nEpifanio\nErickson\nFabio\nFroylan\nGeary\nGeno\nGeoff\nGeoffery\nGerad\nGerrit\nGianni\nGrover\nHabib\nHal\nHasani\nHeliodoro\nHoang\nHorace\nHunter\nIain\nIsabel\nIsiah\nJai\nJameson\nJaron\nJarret\nJasson\nJeanpierre\nJebediah\nJerrell\nJerrick\nJessy\nJimi\nJimmey\nJobe\nJohan\nJohnie\nJovon\nJuaquin\nJusten\nJustice\nJuventino\nKalani\nKamau\nKane\nKareen\nKhary\nKieth\nKito\nKoby\nLateef\nLaura\nLawrance\nLeighton\nLejon\nLemuel\nLennard\nLevell\nLibrado\nLon\nLoreto\nLucian\nLuigi\nLyndon\nMacario\nMarisol\nMarius\nMarko\nMaximiliano\nMel\nMelchor\nMeliton\nMerrick\nMichale\nMicky\nMinh\nMiquel\nMisael\nMitch\nMohammed\nMonica\nNahum\nNewton\nOdis\nOllie\nOren\nOsualdo\nParis\nPrimitivo\nPrince\nQuang\nQuintin\nQuoc\nRahim\nRahman\nRakesh\nRashan\nRaymon\nRaynell\nRayshawn\nRicco\nRobb\nRod\nRolf\nRoshawn\nSalome\nSalomon\nSandor\nSantana\nSchuyler\nSeferino\nSevag\nShaka\nShanti\nShawnn\nShomari\nSione\nSoren\nStephane\nStevie\nSyed\nTait\nTanner\nTaron\nTate\nTavares\nTeresa\nToriano\nTravion\nTrayvon\nTri\nTye\nValentine\nVittorio\nVon\nWaleed\nWilbur\nWillian\nWillis\nYancey\nYancy\nYolanda\nZackery\nZak\nZeke\nMichael\nDavid\nJason\nChristopher\nRobert\nDaniel\nBrian\nJames\nMatthew\nJohn\nRyan\nJoshua\nJose\nJoseph\nRichard\nEric\nAnthony\nKevin\nSteven\nJeremy\nWilliam\nJeffrey\nJuan\nScott\nAndrew\nMark\nAaron\nTimothy\nPaul\nJustin\nThomas\nJonathan\nBenjamin\nSean\nCharles\nCarlos\nAdam\nBrandon\nBryan\nGregory\nNathan\nJesse\nGabriel\nKenneth\nJesus\nStephen\nEdward\nShawn\nLuis\nJacob\nManuel\nNicholas\nPatrick\nJorge\nVictor\nMiguel\nRaymond\nFrancisco\nMario\nPeter\nRicardo\nGeorge\nSamuel\nRonald\nDonald\nRoberto\nAntonio\nChad\nFrank\nTravis\nJaime\nOscar\nAlejandro\nJoel\nRuben\nTodd\nFernando\nGary\nKeith\nJeremiah\nErik\nPhillip\nAlexander\nJared\nShane\nAdrian\nEduardo\nDouglas\nDustin\nRaul\nJavier\nHector\nArmando\nCesar\nLarry\nDennis\nArthur\nSalvador\nVincent\nSergio\nIan\nChristian\nBradley\nWesley\nZachary\nRafael\nMartin\nJoe\nCorey\nAlbert\nJerry\nRandy\nCraig\nGerardo\nJohnny\nRamon\nKyle\nCasey\nDanny\nCory\nBrent\nAlex\nPhilip\nShaun\nMarc\nRussell\nAngel\nArturo\nOmar\nJimmy\nMarcus\nJeffery\nHenry\nAlfredo\nPedro\nTony\nAlan\nDerek\nSteve\nTrevor\nGilbert\nBrett\nLawrence\nEdgar\nRene\nNathaniel\nMarco\nErnesto\nKristopher\nSeth\nIsaac\nTroy\nJon\nJulio\nAlberto\nEnrique\nDamon\nJack\nTyler\nMicheal\nLouis\nRudy\nAndres\nCurtis\nWalter\nAndre\nErnest\nBobby\nDarren\nRoger\nRoy\nCarl\nDominic\nAllen\nClinton\nDerrick\nEugene\nGerald\nRandall\nDamian\nAlfonso\nBilly\nMarcos\nEddie\nLee\nMathew\nRodolfo\nGeoffrey\nIvan\nNeil\nTerry\nGustavo\nCameron\nRicky\nLance\nWayne\nRalph\nGuillermo\nJamie\nRodney\nAlfred\nBruce\nGarrett\nAbel\nAbraham\nDarrell\nJay\nDamien\nNoah\nPablo\nEvan\nLeonard\nFrederick\nIsrael\nMicah\nEdwin\nGlenn\nFelipe\nGilberto\nMaurice\nJulian\nRonnie\nSaul\nChris\nRogelio\nNicolas\nBrad\nKelly\nIgnacio\nErick\nHugo\nRamiro\nEsteban\nMitchell\nWillie\nElias\nClayton\nJerome\nDevin\nDale\nJessie\nMike\nEthan\nShannon\nTyrone\nIsmael\nColin\nStanley\nCaleb\nJoey\nNelson\nJoaquin\nLeon\nDean\nHumberto\nTommy\nFred\nJordan\nAndy\nTheodore\nCody\nDylan\nReginald\nFelix\nOrlando\nRay\nJarrod\nDuane\nBrendan\nJermaine\nLuke\nMarvin\nMoises\nByron\nJohnathan\nLucas\nMelvin\nKirk\nDaryl\nDon\nEfrain\nFabian\nGuadalupe\nAgustin\nRoman\nTomas\nClifford\nDwayne\nNoe\nGrant\nVicente\nDamion\nEli\nHarold\nKurt\nSantiago\nAustin\nTyson\nDarin\nJeff\nNoel\nSpencer\nAlvaro\nHoward\nKarl\nLeonardo\nMorgan\nJonathon\nMarlon\nRolando\nSimon\nToby\nBen\nBryce\nCalvin\nGreg\nBarry\nFranklin\nGlen\nNorman\nRodrigo\nBeau\nClint\nEarl\nJayson\nNick\nRigoberto\nEmilio\nGene\nLeo\nRocky\nFrancis\nJess\nRory\nMax\nAlvin\nBret\nLonnie\nMauricio\nRoss\nWarren\nAntoine\nElijah\nHarry\nJamal\nNeal\nOctavio\nAdan\nBlake\nHeath\nLorenzo\nLouie\nTerrence\nAngelo\nZachariah\nClarence\nDante\nLamar\nRick\nTed\nXavier\nDarryl\nFrankie\nMoses\nTerrance\nGordon\nLoren\nRoland\nQuincy\nAllan\nBernard\nDevon\nOliver\nReynaldo\nForrest\nAdolfo\nBenny\nJake\nOsvaldo\nDiego\nFreddy\nGonzalo\nLevi\nDonny\nGuy\nBryant\nCharlie\nFreddie\nKristofer\nStuart\nClifton\nErnie\nJim\nJimmie\nJosue\nLeslie\nFederico\nGavin\nMarshall\nRandolph\nHeriberto\nTy\nBradford\nDana\nHerman\nIsaiah\nPete\nRaymundo\nRobin\nSam\nAron\nRickey\nVernon\nDonovan\nKristian\nTobias\nEfren\nJohnnie\nLloyd\nRon\nWade\nAlexis\nDarrin\nFidel\nFloyd\nHerbert\nJoesph\nLeroy\nRudolph\nCedric\nDion\nDonte\nDwight\nEdmund\nLamont\nRashad\nBranden\nDan\nDomingo\nEdwardo\nHoracio\nLewis\nMarques\nNickolas\nOwen\nBrock\nClyde\nCourtney\nDonnie\nLogan\nSantos\nTerrell\nEmmanuel\nGregg\nKent\nLester\nMyron\nPreston\nSammy\nArnold\nBill\nDarnell\nFredrick\nIsidro\nKristoffer\nLeonel\nMiles\nTim\nCristobal\nEliseo\nElvis\nErich\nGerman\nGregorio\nLeland\nLeopoldo\nLevar\nMarcel\nReuben\nRoderick\nSonny\nStefan\nTom\nBryon\nDemetrius\nErin\nGenaro\nJosh\nAldo\nBenito\nBernardo\nCristian\nDeandre\nKory\nMason\nStephan\nTracy\nCarlo\nCary\nEverardo\nHans\nJulius\nMilton\nAhmad\nAric\nEstevan\nLaurence\nMalcolm\nNathanael\nPerry\nQuentin\nSheldon\nWyatt\nBrady\nColby\nDallas\nDrew\nEzequiel\nGraham\nJody\nKenny\nKris\nMariano\nOswaldo\nRex\nArnulfo\nBlair\nClay\nElliott\nFransisco\nJedediah\nKelvin\nLionel\nMarcelino\nRusty\nScot\nTaylor\nUriel\nVirgil\nAurelio\nDarius\nJamar\nJarred\nJorje\nMatt\nTerence\nTrinidad\nAli\nAlonzo\nAugustine\nBlaine\nCruz\nGorge\nIsaias\nJamaal\nJovan\nLyle\nMarty\nNolan\nQuinn\nRojelio\nTrent\nAriel\nChester\nDave\nDerick\nDorian\nEmiliano\nJosiah\nOsbaldo\nSalvatore\nStewart\nCarlton\nDameon\nErwin\nGino\nGiovanni\nJasen\nMarcelo\nMarquis\nTeddy\nTravon\nValentin\nDario\nDesmond\nEverett\nFermin\nGarry\nGerard\nHarley\nJackson\nJeramy\nJerrod\nKurtis\nReggie\nWinston\nAri\nBert\nBrendon\nClark\nConrad\nCristopher\nDewayne\nDominick\nEdgardo\nEdmond\nElmer\nHarvey\nJeffry\nJeremey\nJohnathon\nJonah\nJonas\nKerry\nLavar\nMickey\nRandal\nRaphael\nSebastian\nAdalberto\nAnson\nCecil\nChance\nDeshawn\nFiliberto\nForest\nIra\nJackie\nJan\nJefferson\nJeramie\nJeremie\nJeromy\nKai\nKareem\nKasey\nLandon\nMaria\nBrennan\nBrenton\nDemond\nIssac\nJarrett\nKen\nNestor\nOtis\nReyes\nRhett\nRomeo\nRosendo\nRoyce\nShayne\nShon\nSidney\nSolomon\nStacy\nTimmy\nWilson\nAlexandro\nAlton\nAmador\nAshley\nBob\nBrain\nBraulio\nCaesar\nClaudio\nCole\nDominique\nJarod\nJean\nJerald\nKunta\nLucio\nLuther\nMarkus\nMonte\nRefugio\nRobbie\nSandro\nSherman\nThaddeus\nTrenton\nUlysses\nZachery\nAlonso\nAnton\nArnoldo\nCamilo\nCarson\nEloy\nElton\nEzra\nGabino\nGalen\nJed\nJedidiah\nJosef\nMargarito\nMauro\nSterling\nVan\nVaughn\nWallace\nAbelardo\nAlfonzo\nArron\nChe\nDenny\nDeon\nElisha\nEmanuel\nHernan\nJayme\nJelani\nJennifer\nJerardo\nJereme\nKarim\nLiam\nNathanial\nPaulo\nRico\nSamson\nShad\nUlises\nValentino\nWaylon\nZane\nAbram\nAmado\nAmir\nBennie\nBradly\nBrant\nCollin\nCornell\nCyrus\nDane\nDavis\nDusty\nEdmundo\nFausto\nJamil\nLenny\nLonny\nPorfirio\nReed\nRenato\nSerjio\nSilas\nSky\nTyree\nVidal\nWill\nWillis\nAmos\nAntione\nArchie\nArmand\nChadwick\nCheyenne\nClaude\nDanial\nDaren\nDarrel\nDarrick\nDax\nDelbert\nDino\nDirk\nEllis\nErvin\nEzekiel\nGeronimo\nHasani\nHassan\nJoseluis\nJunior\nLeobardo\nLincoln\nLino\nLuiz\nMaxwell\nMichel\nMohammed\nMorris\nNorberto\nPatricio\nReymundo\nRobby\nRodrick\nSage\nSylvester\nTariq\nTeodoro\nTory\nUriah\nWestley\nWeston\nWilfredo\nAlain\nAmit\nAnibal\nAnselmo\nArtemio\nAvery\nBarrett\nBenedict\nBrice\nBrooks\nBuddy\nConor\nDemetrio\nDonavan\nDonnell\nEddy\nEleazar\nErrol\nEugenio\nFlorentino\nGarth\nJacques\nJefferey\nJeramiah\nJerimiah\nJuancarlos\nJuston\nLane\nMateo\nMilo\nNikolas\nOtto\nPierre\nRonny\nRoosevelt\nRussel\nScotty\nTanner\nTobin\nTrever\nTristan\nWendell\nAbdul\nAdrain\nAl\nAntwan\nAugust\nCarey\nCeasar\nCipriano\nClemente\nCleveland\nDavon\nDenis\nDerik\nDexter\nDimitrios\nDonta\nDuncan\nEldon\nElliot\nGildardo\nHilario\nHubert\nJabari\nJacobo\nJamin\nJamison\nJasper\nJered\nJohnpaul\nJude\nKhalid\nKorey\nLavell\nLon\nMarcell\nMyles\nNigel\nOren\nOrion\nRoque\nSerafin\nTitus\nVeronica\nWilbert\nWilfred\nZackery\nAlec\nAndrea\nAndreas\nArmen\nBernie\nBlas\nBonifacio\nBoyd\nBraden\nBuck\nCandelario\nCelestino\nChase\nClement\nCurt\nDaron\nDelvin\nEarnest\nElan\nEphraim\nFlavio\nFrederic\nGreggory\nHarlan\nHunter\nJade\nJameel\nJevon\nKenji\nKenya\nLisandro\nMarion\nMarlin\nOmari\nQuinton\nRandell\nRickie\nRosario\nRoyal\nRudolfo\nRufus\nSalomon\nSantino\nShay\nSunny\nTheron\nTommie\nZackary\nAnastacio\nBobbie\nBrenden\nBruno\nBurton\nCade\nCarter\nChauncey\nCoby\nConan\nCornelius\nDalton\nDamen\nDamond\nDanilo\nDarian\nDenver\nDeshon\nDoyle\nEliot\nEnoch\nEriberto\nFredy\nGarett\nGarret\nGermain\nHugh\nJameson\nJamey\nJeanpaul\nJermain\nJermiah\nJerod\nJerold\nJonpaul\nKeenan\nKeven\nKwame\nLars\nLeif\nLisa\nLuciano\nMack\nMarcial\nMaximo\nMerrill\nMigel\nMikel\nMonty\nNicholaus\nNicole\nParis\nPascual\nRamsey\nRaudel\nReid\nRey\nRito\nRommel\nRosalio\nRubin\nRyon\nSameer\nSarah\nSimeon\nTarik\nTerrill\nTye\nTyron\nViet\nYsidro\nAbran\nAdrien\nAnthoney\nAntony\nAsa\nAshish\nAubrey\nBaltazar\nBart\nBartholomew\nBrannon\nBrook\nBryson\nCecilio\nChuck\nCornelio\nCrispin\nDagoberto\nDarwin\nDedrick\nDemian\nDeshaun\nDontae\nElizabeth\nElvin\nEmil\nEnrigue\nEsequiel\nGeoffery\nGil\nGlendon\nGorje\nHeather\nHiram\nHomar\nIvory\nJarvis\nJavon\nJerad\nJeronimo\nJudah\nJudson\nJusten\nJuvenal\nKendall\nKendrick\nKinte\nKristen\nLamarr\nMacario\nMalachi\nMalik\nPrince\nRachel\nRaffi\nRahsaan\nRavi\nRemigio\nRian\nRiley\nRobb\nRod\nSamir\nSandy\nSanjay\nShea\nSherwin\nShiloh\nStevie\nTavis\nTino\nUbaldo\nVernell\nVince\nWes\nAdolph\nAlbaro\nAmin\nAndrez\nArik\nAudie\nBarney\nBenigno\nBenson\nBo\nBrandt\nBurt\nCandido\nChet\nChristoper\nColeman\nConstantino\nCorbin\nCorry\nCortney\nDavin\nDejuan\nDelfino\nDeven\nDewey\nDimitri\nDoug\nDouglass\nElbert\nEly\nEmery\nEnrrique\nFaustino\nFerdinand\nFranco\nGabe\nGarland\nGarrick\nGermaine\nHasan\nHipolito\nHomer\nHomero\nHorace\nIain\nJacinto\nJahmal\nJakob\nJamel\nJerame\nJessica\nJimi\nJuaquin\nKalani\nKaleb\nKalen\nKamau\nKenyatta\nKhalil\nKhristopher\nKim\nKonstantinos\nLaron\nLazaro\nLevon\nLong\nLupe\nLynn\nMac\nMisael\nModesto\nMonica\nMuhammad\nOracio\nPercy\nQuintin\nRenee\nRodger\nRoscoe\nSalbador\nSandra\nSesar\nShan\nShant\nShelton\nSilverio\nSkyler\nStacey\nStephanie\nSven\nTerance\nThor\nTimmothy\nTito\nTorrey\nTracey\nVito\nWhitney\nAbe\nAgustine\nAhmed\nAjay\nAlegandro\nAlexandre\nAlphonso\nAmon\nAmy\nAra\nAraceli\nArcadio\nArian\nAsher\nBaron\nBarton\nBasil\nBerry\nBillie\nBrody\nCain\nCamron\nCedar\nChristofer\nChristoher\nClaudia\nCliff\nCullen\nCyril\nDarron\nDashawn\nDeangelo\nDelon\nDesi\nDillon\nDonell\nDontay\nDrake\nDung\nDwane\nEberardo\nElpidio\nEmerson\nEmmett\nEnrico\nEusebio\nFavian\nFeliciano\nFletcher\nFrancois\nGareth\nGavino\nGerrit\nGibran\nGrady\nGraig\nGriffin\nHakim\nHank\nIke\nIrving\nIsabel\nIshmael\nJamall\nJarom\nJaron\nJaysen\nJens\nJericho\nJoao\nJuanito\nJules\nJulie\nJustus\nJuventino\nKacy\nKc\nKenton\nKenyon\nKevan\nKieth\nKip\nKristin\nKwesi\nLauro\nLavelle\nLeigh\nLowell\nManolo\nMarcello\nMarcellus\nMarshawn\nMaximiliano\nMaynard\nMelissa\nMerced\nMicahel\nMichale\nMichelle\nMikael\nMilan\nMohamed\nMoshe\nNam\nNancy\nNed\nNicholos\nNikola\nOctaviano\nPhilippe\nRashaad\nRashid\nReese\nReginaldo\nRichardo\nRob\nRocco\nRocio\nRonnell\nRudolpho\nRueben\nRufino\nSalim\nScottie\nSeneca\nServando\nShaka\nShamus\nShanon\nShelby\nSunil\nTad\nTal\nThad\nVal\nValentine\nVashon\nVincente\nVirgilio\nVladimir\nWeldon\nWillard\nWoodrow\nYancy\nZaire\nAkira\nAlejo\nAlessandro\nAlexandros\nAllyn\nAlma\nAlon\nAmadeo\nAmando\nAmeer\nAmerico\nAnders\nAnh\nApolonio\nAram\nArmondo\nArt\nArvin\nAugustin\nBabak\nBaldomero\nBasilio\nBenjie\nBennett\nBenton\nBooker\nBrandan\nBrien\nCale\nCassidy\nCatarino\nChirstopher\nChristain\nChristin\nCisco\nCooper\nCord\nCordell\nCoy\nDameion\nDandre\nDaneil\nDarby\nDarek\nDaven\nDavey\nDaymon\nDejon\nDemar\nDemarcus\nDeondre\nDeron\nDerrek\nDerrik\nDevan\nDietrich\nDonavon\nEben\nEladio\nElgin\nEligio\nEmile\nErica\nEtienne\nFidencio\nFlorencio\nFrancesco\nFransico\nFranz\nFroilan\nGaron\nGaspar\nGerry\nGiancarlo\nGus\nGustabo\nHannibal\nHarrison\nImani\nIsidoro\nJabbar\nJace\nJairo\nJamaine\nJaret\nJarid\nJeremi\nJerman\nJerrad\nJubal\nJun\nJustice\nKamal\nKane\nKarlos\nKennith\nKirby\nKito\nLaura\nLaurent\nLeandro\nLesley\nLibrado\nLindsay\nLizandro\nMarius\nMarkanthony\nMarkeith\nMarko\nMarque\nMathieu\nMatias\nMaximino\nMicaiah\nMinh\nMonico\nMonroe\nNader\nNapoleon\nNate\nNathen\nNels\nNickolaus\nNicky\nNico\nNicola\nOmero\nOran\nOswald\nOtoniel\nPaolo\nPascal\nPatric\nPhil\nQuinten\nRahim\nRaj\nRajesh\nRakesh\nRami\nRamin\nRamy\nRaymund\nRefujio\nReza\nRichie\nRio\nRishi\nRobinson\nRogerio\nRomulo\nRuss\nSabin\nSalome\nSammie\nShaheed\nShanti\nSilvestre\nSkye\nStevan\nSusan\nTai\nTaj\nTanya\nTaron\nTelly\nTeofilo\nTerron\nTheadore\nTheo\nTod\nTrinity\nTruman\nTucker\nUri\nVance\nVictoriano\nWally\nWayland\nWilmer\nYuri\nZechariah\nZeferino\nMichael\nDavid\nJason\nChristopher\nDaniel\nRobert\nJames\nMatthew\nJohn\nBrian\nJoshua\nJose\nJoseph\nRyan\nAnthony\nEric\nRichard\nSteven\nNicholas\nKevin\nWilliam\nJeffrey\nJuan\nAndrew\nJeremy\nJustin\nTimothy\nMark\nAaron\nThomas\nScott\nPaul\nAdam\nJonathan\nBenjamin\nCharles\nSean\nGregory\nBrandon\nCarlos\nJesse\nNathan\nKenneth\nJesus\nStephen\nBryan\nEdward\nGabriel\nPatrick\nJacob\nManuel\nVictor\nMiguel\nJorge\nMario\nShawn\nLuis\nRicardo\nFrancisco\nPeter\nShaun\nErik\nRaymond\nDonald\nChad\nAntonio\nRoberto\nTravis\nSamuel\nRuben\nGeorge\nOscar\nFrank\nRonald\nAlejandro\nJaime\nPhillip\nJoel\nAlexander\nFernando\nJavier\nGary\nSergio\nAdrian\nEduardo\nKeith\nTodd\nDustin\nJeremiah\nHector\nDouglas\nKyle\nCesar\nShane\nJared\nVincent\nSalvador\nLarry\nRaul\nArmando\nChristian\nAngel\nDennis\nRafael\nOmar\nJohnny\nCasey\nMartin\nPhilip\nMarcus\nZachary\nArturo\nJoe\nRandy\nJerry\nRamon\nBrent\nDanny\nIan\nJeffery\nNathaniel\nBradley\nAlfredo\nCraig\nArthur\nMarc\nPedro\nTony\nWesley\nAlberto\nAlex\nAlbert\nHenry\nDerek\nEnrique\nKristopher\nRussell\nCory\nGerardo\nErnesto\nJimmy\nSteve\nCorey\nEdgar\nIsaac\nGilbert\nBrett\nRene\nAlan\nJon\nAndre\nLawrence\nTyler\nJulio\nMarco\nCurtis\nTroy\nTrevor\nDamien\nRoy\nRudy\nNeil\nSeth\nJack\nDamon\nLouis\nErnest\nCarl\nEddie\nMarcos\nLee\nMicheal\nAndres\nDarren\nRodolfo\nLuke\nRoger\nAllen\nLucas\nMathew\nGeoffrey\nRandall\nAlfonso\nEugene\nNicolas\nBilly\nGerald\nRicky\nLance\nJay\nTerry\nWalter\nBobby\nCameron\nDerrick\nWayne\nDominic\nRodney\nLeonard\nIvan\nPablo\nErick\nGustavo\nEvan\nGuillermo\nMicah\nRalph\nFelipe\nGarrett\nJordan\nAbraham\nBruce\nJulian\nJamie\nAlfred\nJerome\nChris\nCody\nTheodore\nDamian\nGilberto\nColin\nClinton\nDevin\nAndy\nJessie\nMaurice\nAbel\nIsrael\nKelly\nRamiro\nWillie\nEdwin\nMitchell\nRonnie\nDale\nHugo\nJarrod\nSaul\nDarrell\nGrant\nTommy\nClifford\nGlenn\nBrad\nRogelio\nTyrone\nEsteban\nMarvin\nIgnacio\nNoah\nRay\nOrlando\nRodrigo\nTyson\nFrederick\nReginald\nIsmael\nMike\nRoss\nRigoberto\nRolando\nElias\nJoey\nFabian\nHarold\nHumberto\nMoises\nEthan\nKurt\nSpencer\nFelix\nLeon\nMorgan\nBrendan\nJoaquin\nDaryl\nLorenzo\nStanley\nDarryl\nKarl\nKirk\nMelvin\nBarry\nVicente\nAllan\nShannon\nJonathon\nOliver\nLeo\nNorman\nDylan\nClayton\nNelson\nNoel\nDean\nEfrain\nWarren\nAustin\nDwayne\nJayson\nJermaine\nJohnathan\nLeonardo\nNoe\nGlen\nJosue\nAlvin\nFred\nGuadalupe\nCaleb\nCalvin\nDon\nFrancis\nGavin\nHarry\nHoward\nAlvaro\nOctavio\nFranklin\nBret\nRoman\nTomas\nBlake\nEarl\nAdolfo\nBernard\nSimon\nElijah\nLewis\nXavier\nEmilio\nJess\nNickolas\nDante\nLouie\nSonny\nByron\nCharlie\nClint\nGreg\nLonnie\nRick\nDuane\nEfren\nFrankie\nJamal\nHeath\nMoses\nRobin\nAngelo\nBeau\nDamion\nDana\nLoren\nMarlon\nRocky\nSantiago\nAgustin\nBryce\nEmmanuel\nGonzalo\nJeff\nBen\nEli\nFreddie\nRoland\nGregorio\nStephan\nAdan\nElvis\nJake\nLamar\nLeslie\nMauricio\nToby\nWade\nDarnell\nDion\nReynaldo\nAntoine\nBryant\nClifton\nGordon\nHerman\nNeal\nRashad\nClarence\nErnie\nIsaiah\nReuben\nSam\nBradford\nBranden\nDarin\nDonovan\nFredrick\nTerrance\nVernon\nDan\nDrew\nEstevan\nGene\nJim\nKristoffer\nLeonel\nLevi\nLloyd\nOsvaldo\nRandolph\nRory\nStuart\nTerrence\nDonte\nFreddy\nJimmie\nJohnnie\nNick\nAriel\nBernardo\nDevon\nLeroy\nCedric\nDallas\nEdmund\nKristofer\nLogan\nBenny\nMarshall\nMax\nCourtney\nPerry\nQuincy\nAlonzo\nAron\nFederico\nJody\nJulius\nMilton\nRickey\nAli\nArnold\nCruz\nDeandre\nFidel\nFloyd\nGerman\nLester\nNolan\nTim\nTobias\nHerbert\nHeriberto\nTaylor\nBryon\nDesmond\nDiego\nDonny\nKenny\nKent\nLamont\nMarcelo\nRaymundo\nTerrell\nDeon\nDwight\nGuy\nLeopoldo\nMiles\nTed\nTrinidad\nTy\nAldo\nEmiliano\nForrest\nGraham\nJovan\nLeland\nPete\nArnulfo\nChester\nDemetrius\nDominick\nGiovanni\nJackson\nJedediah\nKristian\nSebastian\nZachariah\nAlexis\nCarlo\nErin\nMason\nNathanael\nTom\nAurelio\nEdwardo\nElliott\nHarvey\nJerrod\nJoesph\nJosh\nKelvin\nPreston\nSammy\nBrock\nErich\nGenaro\nLandon\nRandal\nRudolph\nBenito\nDomingo\nGregg\nHoracio\nIsidro\nJarrett\nMariano\nNestor\nRon\nAlexandro\nAlonso\nCollin\nDane\nKory\nKris\nMyron\nRenato\nSolomon\nTrenton\nVirgil\nArron\nBill\nBlaine\nBrendon\nEloy\nEverardo\nFransisco\nGino\nIra\nMarquis\nUriel\nAdalberto\nEmanuel\nEverett\nJamaal\nJohnathon\nMarques\nNicholaus\nTeddy\nUlysses\nWill\nAbram\nAmir\nBlair\nClay\nCyrus\nDarrel\nDarrin\nGorge\nJennifer\nJeromy\nJosiah\nOwen\nRobbie\nRoderick\nSantos\nStefan\nTerence\nWyatt\nAhmad\nConrad\nIssac\nJeremie\nJonah\nPaulo\nReggie\nTracy\nTrent\nCornelius\nDave\nEliseo\nGarry\nHarley\nIsaias\nJorje\nKasey\nMarcello\nPierre\nQuinn\nReyes\nAri\nBrady\nClaude\nConor\nCristian\nCristobal\nDarius\nDonnie\nEdmond\nHans\nJamar\nJamil\nJarod\nJarred\nLeif\nMalcolm\nOsbaldo\nSheldon\nAshley\nClaudio\nClyde\nColby\nCurt\nDanial\nDarrick\nDewayne\nEdmundo\nEzekiel\nEzra\nFaustino\nJan\nJed\nJeffry\nJonas\nKerry\nLionel\nMarcel\nOtis\nScot\nWendell\nWilson\nBob\nBrennan\nBrenton\nChance\nDameon\nDerick\nFiliberto\nGalen\nJean\nJedidiah\nJerald\nJerod\nMarcelino\nQuentin\nRaphael\nRex\nRonny\nRusty\nSky\nAric\nBrant\nClark\nEdgardo\nJeramie\nLaurence\nLyle\nMauro\nNathanial\nOracio\nOswaldo\nRosendo\nStewart\nValentin\nAnton\nAntony\nArash\nCaesar\nCary\nCecil\nDaren\nEzequiel\nJacques\nJeramy\nJosef\nKareem\nKeven\nKurtis\nLuciano\nMohammad\nNorberto\nRico\nRojelio\nSherman\nSterling\nTanner\nTobin\nTyree\nAlton\nCole\nDario\nDino\nDuncan\nElmer\nEriberto\nErrol\nGiancarlo\nHernan\nHilario\nHugh\nJabari\nJasen\nJevon\nJoseluis\nJunior\nKen\nMaria\nMatt\nNikolas\nRahsaan\nReed\nSantino\nScotty\nSidney\nSylvester\nThaddeus\nBert\nBraden\nBrain\nChase\nDorian\nEmerson\nErwin\nGil\nLaron\nMalik\nMateo\nRhett\nSunny\nVidal\nAbelardo\nAmador\nArchie\nArnoldo\nBrice\nCarlton\nCipriano\nDeshawn\nDominique\nDusty\nEddy\nElizabeth\nEmil\nFermin\nFlorencio\nGarth\nGerry\nHubert\nJackie\nJefferey\nKenji\nKhalid\nLars\nLucio\nMack\nMarlin\nRomeo\nRoyce\nShad\nShea\nSilas\nStevie\nVance\nZackary\nAl\nAra\nAubrey\nAugust\nAugustine\nBoyd\nBruno\nBuddy\nConrado\nCristopher\nDavin\nDavon\nDenny\nDoyle\nElliot\nGarret\nGriffin\nHassan\nJefferson\nJohnpaul\nKai\nLukas\nMichel\nMickey\nMigel\nMonte\nOrion\nRandell\nRaudel\nRobby\nSalvatore\nShayne\nTad\nTristan\nUriah\nVan\nVince\nWestley\nWeston\nWilfredo\nAlec\nAntwan\nAvery\nBrook\nCarey\nClemente\nCornell\nDavis\nDenis\nDexter\nFeliciano\nFidencio\nForest\nGarett\nGildardo\nJade\nJamel\nJereme\nJuancarlos\nLane\nMarlo\nMarquise\nMaximino\nMelissa\nMikel\nMyles\nOtto\nRasheed\nReid\nRocco\nRodger\nSandro\nTorrey\nTravon\nValentino\nWinston\nAhmed\nArmondo\nBarrett\nBillie\nBlas\nCarson\nCecilio\nChe\nCynthia\nDamen\nDarwin\nDeven\nDillon\nDonnell\nEarnest\nEllis\nEmmett\nErvin\nGerard\nHiram\nIrvin\nJerardo\nJered\nJerrad\nKendrick\nKhristopher\nKorey\nLazaro\nLeandro\nLeobardo\nLuther\nMacario\nMarty\nMaximiliano\nMichale\nMichelle\nPorfirio\nRamsey\nRenee\nReno\nRiley\nRoosevelt\nRosalio\nRosario\nRueben\nShon\nStacy\nTeodoro\nTimmothy\nTremaine\nUlises\nVito\nWallace\nWillard\nZackery\nZane\nAbdul\nAlbaro\nAmado\nAmos\nAntione\nArt\nBernardino\nBurton\nChristofer\nDarian\nDerrell\nElbert\nElvin\nEpifanio\nEugenio\nFlavio\nFlorentino\nFrancesco\nFransico\nFredric\nGeronimo\nHayden\nIshmael\nJacoby\nJamin\nJaron\nJarvis\nJerrold\nJuventino\nKaleb\nKenyatta\nKenyon\nLisandro\nLong\nMilo\nMisael\nNicole\nOren\nParker\nQuintin\nReza\nRickie\nRob\nRodrick\nSage\nSamson\nSamual\nShiloh\nSkye\nStanton\nTerrill\nTheron\nTuan\nWaylon\nWilbert\nWillis\nAugustin\nBaron\nBart\nBjorn\nBradly\nBrandt\nBraulio\nCandelario\nChauncey\nChristina\nConnor\nDain\nDaivd\nDajuan\nDandre\nDanilo\nDaron\nDelbert\nDionicio\nElan\nEleazar\nElton\nEvaristo\nFausto\nFranco\nHarlan\nIke\nIrving\nIvory\nJamey\nJeremey\nJusten\nKim\nLeighton\nLevar\nLiam\nLonny\nMarion\nMaxwell\nMerlin\nMilan\nOmari\nPatricio\nRashaad\nRefugio\nRegan\nReymundo\nRoyal\nRufus\nRussel\nSalomon\nSarah\nSchuyler\nSeamus\nSerjio\nSesar\nTariq\nTory\nTracey\nTrever\nTyrell\nTyron\nVern\nWilfred\nWilly\nAbran\nAdolph\nAdriel\nAlden\nAndrea\nAnibal\nApolinar\nAram\nAsa\nBasilio\nBenson\nBernie\nBrandy\nBrion\nCale\nCamilo\nCarter\nCassidy\nChet\nChistopher\nChristoper\nChuck\nCorbin\nCornelio\nDameion\nDax\nDeangelo\nDelvin\nDemetrio\nDerik\nDeshaun\nDesi\nDewey\nDontae\nElisha\nEnrico\nEsequiel\nGarrick\nGerrit\nHomer\nHomero\nJamison\nJarrad\nJarret\nJensen\nJerad\nJonpaul\nKane\nKarim\nKeenan\nKelley\nKenya\nLamarr\nLamonte\nLavar\nLino\nLisa\nLynn\nMargarito\nMarkus\nNarciso\nNicklaus\nPatricia\nPhil\nRaffi\nRomel\nRoque\nSanjay\nSeferino\nShain\nSimeon\nSkyler\nTai\nTarik\nTito\nTrayvon\nUbaldo\nVaughn\nVeronica\nViet\nVincente\nAbner\nAdrain\nAlfonzo\nAlon\nAmin\nAnastacio\nAndreas\nAngela\nAntone\nApolonio\nArmond\nBennie\nBrannon\nBryson\nCamron\nCarleton\nCliff\nCoy\nCuauhtemoc\nDagoberto\nDamond\nDavey\nDemarco\nDemian\nDemond\nDeron\nDonal\nDonta\nEmigdio\nFlint\nFredy\nGabe\nGareth\nGermaine\nGiovanny\nHipolito\nHomar\nHunter\nHuy\nIsiah\nJacinto\nJacobo\nJahmal\nJaimie\nJamon\nJarom\nJavon\nJeanpaul\nJelani\nJeramiah\nJeremia\nJeronimo\nJessy\nJoao\nJudah\nJustine\nKeegan\nKendall\nKennith\nKenton\nKevan\nKit\nLenny\nLorne\nLupe\nLydell\nMagdaleno\nMarcell\nMaximilian\nMiguelangel\nMohammed\nMonty\nNigel\nParis\nPercy\nRami\nRaoul\nRishi\nRito\nRonaldo\nRubin\nSabino\nSal\nSandy\nSeneca\nServando\nShelby\nSilvestre\nSoren\nStanford\nStevan\nTimmy\nValentine\nVirgilio\nWilliams\nZachery\nZechariah\nAdrien\nAgustine\nAhren\nAkil\nAlain\nAlphonso\nAmy\nAndrae\nAndrei\nAnson\nAnwar\nAren\nArian\nAristeo\nArmand\nArmen\nArtemio\nAsher\nBaudelio\nBenedict\nBenjamen\nBobbie\nBoris\nBrien\nBrodie\nBrooks\nCandido\nCatarino\nCeasar\nCedrick\nCelso\nChadwick\nCheyenne\nCoby\nCyril\nDedrick\nDejon\nDelano\nDelfino\nDemario\nDenver\nDonavan\nEdson\nEldridge\nElgin\nEliazar\nEligio\nErasmo\nErika\nGabino\nGamaliel\nGavino\nGeraldo\nGiuseppe\nGreggory\nHamilton\nHaven\nHeather\nHerminio\nIlan\nIrineo\nJairo\nJameel\nJayme\nJeb\nJermain\nJerrid\nJessica\nJude\nJules\nJustice\nKamal\nKameron\nKc\nKelsey\nKenan\nLafayette\nLavell\nLeander\nLeigh\nLejon\nLucus\nMackenzie\nMalachi\nMandy\nMarko\nMary\nMaximo\nMelchor\nMerrill\nMichele\nMikael\nMonica\nMoshe\nNader\nNancy\nNicky\nNimesh\nOllie\nOrin\nPrince\nQuinten\nRashawn\nRashid\nRaymon\nRey\nRichardo\nRobb\nRobyn\nRommel\nRudolfo\nRufino\nRustin\nSalbador\nSerafin\nShadi\nShaunte\nSherwin\nSilverio\nStephanie\nTate\nTavis\nTeofilo\nThai\nTitus\nTommie\nTrey\nVentura\nVerne\nVijay\nWes\nWilbur\nWiley\nZeb\nZebulon\nAdonis\nAlbino\nAlessandro\nAlireza\nAlvino\nAmanda\nAnastasios\nAnil\nAraceli\nArlo\nArmon\nAshanti\nAshraf\nAugusto\nAugustus\nBaltasar\nBarney\nBernabe\nBerry\nBo\nBrannan\nBrenda\nBrenden\nBrooke\nBurke\nBurt\nByran\nChadd\nChristiaan\nChristoher\nChristophe\nCortney\nCrispin\nDakota\nDalen\nDalton\nDanielle\nDanniel\nDarell\nDarien\nDashawn\nDaymon\nDemon\nDereck\nDesiderio\nDevan\nDiana\nDimitri\nDonavon\nDonell\nDontay\nDoug\nDouglass\nDuke\nDwain\nEamon\nEan\nEladio\nEliah\nEliot\nEmery\nEmile\nEnoc\nEnrigue\nErica\nFareed\nFavian\nFerdinand\nFletcher\nFrancois\nFredi\nGage\nGarland\nGenesis\nGeoffery\nGian\nGrady\nGus\nHasan\nHorace\nInes\nIran\nIsabel\nJajuan\nJaret\nJeromie\nJerone\nJohann\nJohannes\nJohnson\nJonte\nJoseantonio\nJoshuah\nJudson\nJustino\nJuston\nKermit\nKhari\nKimani\nKip\nKirby\nKofi\nKristofor\nLanny\nLashawn\nLateef\nLauren\nLeeroy\nLeron\nLincoln\nLindsay\nLizandro\nLon\nLorin\nLou\nLowell\nLuca\nLuiz\nMac\nManny\nMarcial\nMarciano\nMarisol\nMartell\nMica\nMikal\nMinh\nMischa\nMitchel\nModesto\nMy\nNapoleon\nNathen\nNeftali\nNicholes\nNicholis\nNiles\nNoble\nNorris\nPaige\nPascual\nPaulino\nPrimitivo\nRachel\nRahman\nRaj\nRajesh\nRamzy\nRandel\nRashaun\nRaynard\nReginal\nRemo\nRigo\nRod\nRonnell\nRoscoe\nSaleem\nSelso\nShan\nShareef\nShelton\nShin\nSierra\nSione\nSon\nStacey\nStefano\nTarek\nThor\nTizoc\nTod\nTremayne\nTruong\nTucker\nTye\nTylor\nVal\nValente\nVladimir\nVu\nWeldon\nWendy\nYong\nYoung\nZack\nZeke\nMichael\nDavid\nChristopher\nJason\nDaniel\nRobert\nJohn\nMatthew\nJames\nJoshua\nRyan\nJose\nBrian\nJoseph\nNicholas\nEric\nAnthony\nRichard\nSteven\nWilliam\nKevin\nJeffrey\nJuan\nJustin\nAndrew\nAdam\nJeremy\nAaron\nTimothy\nScott\nJonathan\nMark\nPaul\nThomas\nBrandon\nBenjamin\nCarlos\nCharles\nSean\nJesus\nNathan\nJesse\nJorge\nPatrick\nGregory\nKenneth\nGabriel\nEdward\nStephen\nLuis\nJacob\nErik\nBryan\nManuel\nVictor\nMiguel\nFrancisco\nRicardo\nMario\nPeter\nRaymond\nTravis\nSamuel\nAntonio\nAlejandro\nShawn\nChad\nRoberto\nGeorge\nFrank\nJaime\nOscar\nRuben\nRonald\nDonald\nHector\nJoel\nAlexander\nFernando\nDustin\nPhillip\nShaun\nJared\nKyle\nAdrian\nKeith\nJavier\nGary\nRaul\nArmando\nEduardo\nZachary\nJeremiah\nDouglas\nVincent\nSergio\nCesar\nShane\nDennis\nBradley\nIan\nLarry\nChristian\nOmar\nTodd\nAngel\nSalvador\nMartin\nArturo\nRafael\nRamon\nPedro\nGerardo\nPhilip\nDerek\nNathaniel\nMarcus\nAlbert\nAlex\nRandy\nCasey\nEdgar\nBrent\nAlfredo\nIsaac\nDanny\nJohnny\nBrett\nJerry\nJoe\nRussell\nAlan\nEnrique\nAlberto\nArthur\nHenry\nTony\nWesley\nCraig\nJeffery\nJulio\nSteve\nJimmy\nLawrence\nRene\nCurtis\nCorey\nMarco\nKristopher\nSeth\nErnesto\nMarc\nCory\nGarrett\nJon\nTyler\nAndres\nGilbert\nTrevor\nRudy\nJordan\nCarl\nAndre\nEvan\nWalter\nTroy\nLuke\nDarren\nRoy\nErick\nLouis\nMicheal\nLucas\nRicky\nJay\nMarcos\nAlfonso\nGerald\nAllen\nJack\nGeoffrey\nRoger\nCameron\nErnest\nEugene\nEddie\nGuillermo\nIsrael\nDamien\nRodney\nGustavo\nBilly\nNicolas\nBobby\nRandall\nRodolfo\nDerrick\nHugo\nMathew\nAbel\nIvan\nColin\nNeil\nLee\nPablo\nWayne\nAbraham\nTerry\nAlfred\nJarrod\nMaurice\nRolando\nRonnie\nNoah\nIsmael\nFrederick\nTheodore\nCody\nDominic\nLeonard\nBruce\nMicah\nMoises\nLance\nFelipe\nJamie\nDevin\nSaul\nTommy\nBrad\nEsteban\nClinton\nRogelio\nRalph\nDamon\nGilberto\nWillie\nAndy\nMarvin\nDylan\nJessie\nDarrell\nGrant\nElias\nJulian\nRamiro\nRay\nFelix\nJerome\nOrlando\nClayton\nEdwin\nGlenn\nChris\nMorgan\nNoe\nJoaquin\nGuadalupe\nReginald\nDamian\nKelly\nEfrain\nHumberto\nAustin\nDean\nVicente\nMitchell\nStanley\nDale\nJohnathan\nElijah\nJoey\nCalvin\nJermaine\nMike\nBrendan\nEthan\nNoel\nShannon\nTyson\nByron\nIgnacio\nLevi\nSimon\nCaleb\nTyrone\nRoss\nSantiago\nSpencer\nNelson\nOliver\nKirk\nMelvin\nDon\nJonathon\nKurt\nNorman\nAgustin\nRigoberto\nRodrigo\nHarold\nLeonardo\nLorenzo\nJayson\nLeo\nWarren\nFrancis\nKarl\nFabian\nAlvin\nFrankie\nLogan\nLouie\nBeau\nLonnie\nBarry\nEli\nClifford\nNickolas\nGlen\nAllan\nHoward\nRobin\nAlvaro\nDarryl\nDwayne\nTomas\nLeon\nDaryl\nFidel\nLamar\nAdan\nAdolfo\nBret\nBryce\nEarl\nJamal\nMarlon\nRocky\nClarence\nOctavio\nRoman\nAngelo\nAntoine\nDuane\nEmmanuel\nFred\nJosue\nTaylor\nTerrance\nBlake\nMauricio\nDiego\nMarshall\nRick\nDante\nJim\nMax\nMiles\nClint\nHarry\nMoses\nBenny\nEmilio\nFreddie\nLoren\nNeal\nFranklin\nFreddy\nGonzalo\nStuart\nTerrence\nAli\nBen\nDana\nRoland\nKenny\nWade\nAldo\nHerbert\nPreston\nRaymundo\nDrew\nGerman\nTerrell\nDevon\nGavin\nGregorio\nLeroy\nLewis\nRandolph\nReynaldo\nDarin\nEfren\nJamar\nJeff\nLloyd\nNick\nPete\nVernon\nZachariah\nFredrick\nGene\nRory\nAriel\nBenito\nBradford\nCharlie\nDonovan\nHerman\nOsvaldo\nToby\nBryant\nGraham\nGuy\nJorje\nLeslie\nArnold\nBernardo\nForrest\nJake\nJarod\nJess\nDeandre\nDwight\nFederico\nRickey\nSonny\nXavier\nEverett\nGreg\nIsaiah\nLeonel\nTerence\nAurelio\nGordon\nMarcel\nDarnell\nEliseo\nElvis\nHeriberto\nJohnnie\nOwen\nAlexis\nBernard\nBill\nDonte\nEdmund\nQuincy\nBranden\nClifton\nAron\nCollin\nDane\nDemetrius\nIsaias\nJonah\nRashad\nRoderick\nStephan\nAlonso\nCedric\nDallas\nHeath\nKurtis\nLandon\nBlair\nEmanuel\nErin\nIssac\nJosh\nLionel\nRudolph\nRusty\nTed\nTobias\nAlonzo\nErnie\nEverardo\nGiovanni\nGorge\nJeramy\nLamont\nMilton\nReuben\nTrenton\nBryon\nDamion\nDarrin\nFloyd\nIsidro\nLeland\nPierre\nTy\nAri\nDion\nDonny\nHoracio\nMason\nNolan\nSebastian\nWill\nWilson\nAmir\nBrock\nDan\nDonnie\nGregg\nJody\nJoesph\nJulius\nKent\nKory\nLester\nTrent\nTristan\nUriel\nConrad\nDesmond\nGenaro\nJarrett\nJerod\nKristofer\nLeopoldo\nRex\nSammy\nSantos\nAlexandro\nColby\nDario\nLucio\nRon\nValentin\nArnulfo\nBrady\nBrendon\nClark\nEdwardo\nFransisco\nJerrod\nJimmie\nLeif\nMaxwell\nSam\nSterling\nTom\nTrinidad\nChester\nCourtney\nCristobal\nCruz\nDeon\nEdmond\nEstevan\nEzra\nGarry\nGerard\nJabari\nJamaal\nJarred\nJohnpaul\nKristian\nMariano\nNestor\nSheldon\nCristian\nElliot\nEriberto\nIra\nJovan\nMarcelino\nOsbaldo\nRosendo\nStewart\nUlysses\nAshley\nDavin\nDerick\nDominick\nEzequiel\nHans\nJeromy\nMarquis\nMatt\nNathanael\nNikolas\nUlises\nWyatt\nAhmad\nBennie\nClaudio\nEdgardo\nHugh\nJackson\nJerardo\nJosef\nJosiah\nKelvin\nKris\nKristoffer\nLeobardo\nSolomon\nTanner\nTracy\nAnton\nBarrett\nConor\nDusty\nElmer\nEloy\nFermin\nHarley\nJasen\nJunior\nKasey\nLaurence\nLuciano\nMyron\nNicholaus\nReggie\nWilfredo\nAdalberto\nAugustine\nCarlo\nDarius\nJean\nJedediah\nRefugio\nRoyce\nTeddy\nThaddeus\nTyree\nWaylon\nWinston\nAric\nArnoldo\nBob\nCary\nChance\nDaren\nDarrel\nDeshawn\nElliott\nEmiliano\nGino\nHarvey\nJan\nJeffry\nJered\nJeremie\nJoseluis\nKareem\nPerry\nRandal\nReid\nReyes\nSantino\nArtemio\nClemente\nDave\nDewayne\nEdmundo\nEzekiel\nFaustino\nFausto\nFiliberto\nFlorentino\nGarret\nHilario\nJed\nJedidiah\nJeramie\nKen\nKendall\nMohammad\nQuentin\nRobbie\nStefan\nVirgil\nAbelardo\nAmos\nAndreas\nCarlton\nCarson\nClay\nClyde\nCole\nDillon\nDino\nDorian\nJonas\nKerry\nMack\nMalcolm\nMaria\nMyles\nOtis\nPaulo\nRico\nRomeo\nSherman\nSidney\nTimmy\nVince\nAubrey\nDarrick\nDomingo\nDonnell\nErich\nForest\nHernan\nJaron\nJerimiah\nJohnathon\nKorey\nMelissa\nSalvatore\nScotty\nVan\nVidal\nAlton\nArmen\nArron\nBennett\nBrennan\nCelestino\nDominique\nEarnest\nEdgard\nGalen\nJade\nKai\nLiam\nLyle\nMarcelo\nMargarito\nMarques\nMilan\nNigel\nOrion\nQuinn\nRodger\nRoosevelt\nRoque\nScot\nVance\nWeston\nAmador\nAnselmo\nAvery\nBrant\nBrenton\nBuddy\nChase\nEddy\nEugenio\nFeliciano\nFranco\nGarth\nMichel\nRhett\nSky\nStacy\nSylvester\nTuan\nTyrell\nAbram\nAlfonzo\nCecil\nDaron\nDavon\nHiram\nHunter\nJerald\nJohann\nKeenan\nKenji\nLenny\nLuther\nMarty\nMateo\nMatias\nMauro\nMonty\nNathanial\nOren\nParker\nPercy\nRaphael\nRojelio\nRosario\nRussel\nSerjio\nShea\nSilvestre\nViet\nWilbert\nZachery\nZackary\nAntwan\nArmand\nAugust\nBrain\nBraulio\nCaesar\nCandelario\nCornelius\nCyrus\nDarwin\nDenis\nDuncan\nEleazar\nGabino\nGarett\nGrady\nJace\nJackie\nJeramiah\nJusten\nLars\nLong\nLuiz\nMerle\nMickey\nMonte\nMorris\nNorberto\nQuinton\nRamsey\nRenato\nRobby\nRonny\nSarah\nSkye\nTad\nThanh\nWillard\nZane\nAl\nAmado\nAntony\nAsher\nBlaine\nBrannon\nBrody\nBryson\nChristina\nDameon\nDanilo\nDavis\nDelfino\nDenny\nDonavan\nDontae\nEliot\nEmil\nErvin\nErwin\nFlavio\nGerrit\nJacques\nJameel\nJamil\nJamin\nJarad\nJasper\nJefferson\nJereme\nJonpaul\nJude\nKendrick\nKhalid\nLane\nLazaro\nLowell\nMalachi\nMarcello\nMikel\nNicky\nOracio\nPhilippe\nPorfirio\nRey\nStevie\nTim\nTommie\nTravon\nVaughn\nWilfred\nAbran\nAdriel\nArchie\nAsa\nBernabe\nBradly\nBrooks\nCale\nChadwick\nChe\nClaude\nCliff\nDirk\nElbert\nEmmett\nEnrico\nEpifanio\nEsequiel\nFavian\nFredy\nGeronimo\nGiancarlo\nHassan\nHomero\nHung\nJessica\nJessy\nJevon\nJudd\nJuvenal\nKeegan\nKenyon\nMarkus\nMichelle\nMigel\nMilo\nMonica\nOswaldo\nPascual\nRaudel\nRenee\nSalomon\nSamir\nShad\nShayne\nTobin\nTyrel\nVeronica\nWendell\nAlden\nAlec\nAndrea\nBenigno\nBjorn\nBlas\nCecilio\nCharley\nChistopher\nCornell\nDelvin\nDerrell\nDeshaun\nDexter\nDonta\nDoug\nElisha\nElvin\nGamaliel\nGil\nGillermo\nGreggory\nIrving\nIshmael\nIsidoro\nJeanpaul\nJeremey\nJordon\nKennith\nKhalil\nKim\nMarquise\nMinh\nMohammed\nNima\nOtto\nPrince\nRickie\nRiley\nRommel\nRueben\nSage\nSilas\nSkyler\nTitus\nTorrey\nUbaldo\nValentine\nAdolph\nApollo\nAugustin\nBart\nBobbie\nBraden\nBrenden\nCarey\nCoby\nConnor\nConrado\nCornelio\nCurt\nDamen\nDereck\nDesi\nDimitri\nEladio\nEmile\nEusebio\nFidencio\nFlorencio\nFrederic\nGarrick\nGideon\nGildardo\nJakob\nJamel\nJamison\nJelani\nJennifer\nJens\nJuancarlos\nJules\nJuston\nKelley\nKenyatta\nKeven\nKristen\nLaura\nLevon\nLukas\nLupe\nMarcell\nMathias\nMaurilio\nMicahel\nParis\nRamy\nRandell\nReed\nReymundo\nRian\nSamson\nSandro\nSerafin\nSilverio\nTai\nTeodoro\nThad\nTheron\nThor\nTrever\nValente\nValentino\nVincente\nWallace\nWillis\nAbdul\nAdrien\nAhmed\nAjay\nAlexandre\nAmar\nAmin\nAntwon\nApolinar\nBaltazar\nBillie\nBoris\nBrenda\nBrice\nBrien\nBuck\nCassidy\nCeasar\nChauncey\nChristoper\nCipriano\nDagoberto\nDarell\nDarian\nDeron\nDewey\nDimas\nDrake\nEden\nEllis\nElton\nEmerson\nErrol\nGarland\nGermaine\nGiuseppe\nGus\nHamilton\nHank\nHorace\nImmanuel\nJacobo\nJamey\nJarret\nJayme\nJefferey\nJermey\nJerrad\nJerrold\nJerron\nKermit\nLaron\nLashawn\nLevar\nMac\nMacario\nMalik\nMarion\nMaximiliano\nMehdi\nMitchel\nModesto\nNewton\nRajan\nRaymon\nReza\nRocco\nRodrick\nSandra\nSarkis\nSesar\nShanon\nShant\nShay\nShelton\nSimeon\nSir\nTyron\nVito\nWes\nZeke\nAngela\nAnibal\nAnil\nAnson\nAntone\nArash\nArcadio\nArian\nArmin\nArmond\nArmondo\nArt\nBernie\nBo\nBoyd\nBrandt\nBritton\nCamilo\nCesario\nChristofer\nChristophe\nClaudia\nCourtland\nCoy\nCristopher\nDamond\nDaneil\nDathan\nDaunte\nDelbert\nDemond\nDenver\nDeric\nDuke\nDung\nEdson\nEhren\nElan\nErica\nEsau\nGabrial\nGaspar\nGeno\nGerry\nGrayson\nHuy\nIvory\nJacoby\nJamon\nJasson\nJeanpierre\nJerad\nJerold\nJerrell\nJimi\nJohathan\nJuaquin\nJustyn\nJuventino\nKarim\nKeon\nKeyon\nKieran\nLavar\nLavell\nLenard\nLenin\nLon\nLonnell\nLou\nLucus\nLynn\nMaceo\nMarin\nMarkanthony\nMichale\nMisael\nMohamed\nMuhammad\nNancy\nNed\nNicklaus\nNikolaus\nOmero\nOrin\nRavi\nReinaldo\nRichardo\nRichie\nRigo\nRito\nRosalio\nSal\nSameer\nSamer\nShon\nStacey\nTaj\nTarik\nTavis\nTerrill\nTory\nTrung\nTye\nWhitney\nWilbur\nWiley\nWilliams\nWoodrow\nZackery\nAbner\nAlbaro\nAlegandro\nAlessandro\nAlicia\nAmit\nAnte\nAram\nArik\nAristeo\nArnel\nArtis\nAshton\nAziz\nBaron\nBasil\nBenson\nBert\nBronson\nCain\nCaine\nCarter\nChadrick\nCooper\nCord\nCresencio\nCuauhtemoc\nCuong\nCyril\nDaivd\nDajuan\nDandre\nDanial\nDarien\nDavey\nDavion\nDelano\nDemario\nDemetrio\nDeonte\nDerik\nDeshon\nDonell\nDouglass\nDov\nDoyle\nEbon\nEligio\nEmery\nEnoch\nEran\nErasmo\nEron\nEsteven\nFletcher\nFrancesco\nFransico\nFredric\nGabriela\nGareth\nGriffin\nHan\nHarrison\nHeraclio\nHubert\nIrvin\nIsai\nIsaul\nJai\nJarrad\nJarron\nJarvis\nJenaro\nJeromey\nJerred\nJoao\nJohnie\nJomar\nJonmichael\nJovany\nJuanpablo\nJulie\nJulien\nKameron\nKevan\nKirby\nKristin\nLamond\nLauren\nLayne\nLeandro\nLeigh\nLino\nLisa\nLisandro\nLonny\nLovell\nLucky\nMarius\nMarlin\nMarlo\nMary\nMelchor\nMikal\nNicholes\nNicholus\nObed\nPaolo\nPatricio\nPhil\nPhuc\nQuan\nRaheem\nRahsaan\nRajesh\nRand\nRaoul\nRashaad\nRashid\nRegan\nRemy\nReno\nReynold\nRich\nRod\nRyon\nSalome\nSami\nSamual\nSanford\nSara\nScottie\nSeneca\nServando\nSevero\nShamar\nShilo\nShiloh\nSione\nSoren\nStanton\nStefano\nStevan\nSunny\nTara\nTariq\nTito\nTri\nUriah\nVijay\nVirgilio\nVladimir\nVu\nWilfrido\nYoung\nYsidro\nYvonne\nZebulon\nAbdullah\nAdonis\nAidan\nAkili\nAlain\nAlexi\nAlireza\nAlphonse\nAlvino\nAmeer\nAmmon\nAmy\nAnastacio\nAndrae\nAndrei\nAnkur\nAntione\nAra\nAscencion\nAugusto\nAureliano\nAusten\nAvi\nAxel\nBabak\nBaldemar\nBarret\nBarton\nBasilio\nBernardino\nBilal\nBlaise\nBoone\nBranson\nBrennen\nBroderick\nBrodie\nBrook\nCandido\nCardell\nCavan\nCedrick\nChadd\nChandler\nChaz\nCheyenne\nChristine\nChristoffer\nChristpher\nChuck\nClement\nConan\nCordell\nCorwin\nDamaso\nDamein\nDaryn\nDashaun\nDashawn\nDavy\nDemarco\nDeondre\nDerrek\nDesiderio\nDick\nDietrich\nDomenico\nDomonic\nDonato\nDonavon\nEarle\nEdison\nEdric\nElgin\nEliazar\nElizabeth\nElpidio\nEly\nEnrrique\nErika\nEsgar\nFroilan\nGaetano\nGarrison\nGermain\nGolden\nGorje\nHagop\nHamed\nHarlan\nHasan\nHayden\nHeliodoro\nHerschel\nHoang\nHodari\nIbrahim\nIke\nIsabel\nIsiah\nJacinto\nJaimie\nJairo\nJameson\nJanson\nJapheth\nJaren\nJarett\nJarom\nJaun\nJensen\nJeremias\nJericho\nJeron\nJeronimo\nJovon\nJun\nJustine\nKacey\nKaleb\nKam\nKane\nKarla\nKarlo\nKennedy\nKimberly\nKimo\nKiyoshi\nKrishna\nLauro\nLawrance\nLeighton\nLemar\nLincoln\nLorne\nLoyd\nLucien\nLuigi\nLyndon\nMahmoud\nManny\nMarcial\nMarciano\nMarko\nMarquez\nMarshawn\nMaximino\nMaximo\nMckinley\nMedardo\nMerrill\nMikael\nMikhail\nMondo\nMurphy\nNabil\nNader\nNam\nNarciso\nNathaneal\nNathen\nNatividad\nNeftali\nNehemiah\nNery\nNevin\nNickie\nNicole\nNikolai\nNino\nNoble\nOlaf\nOllie\nOswald\nPayam\nPhuong\nQuintin\nRaffi\nRamses\nRashawn\nRashon\nRavinder\nRaynaldo\nRemberto\nRishi\nRobb\nRodel\nRomel\nRonnell\nRoscoe\nRoyal\nRubin\nRyland\nSalem\nSandeep\nSandy\nSanjay\nSasha\nSeferino\nSeveriano\nShaheed\nShain\nShaka\nShamus\nSharif\nSherwin\nSilvano\nSilviano\nSixto\nStan\nStevens\nTadd\nTam\nTate\nTeron\nThunder\nTimmothy\nTino\nTremayne\nTrevis\nTrevon\nTruman\nUri\nUvaldo\nVentura\nVictorio\nWaldo\nWestley\nYale\nZeb\nZev\nMichael\nDavid\nChristopher\nDaniel\nJason\nRobert\nMatthew\nJoshua\nJohn\nJames\nRyan\nJose\nJoseph\nBrian\nJustin\nEric\nRichard\nAnthony\nNicholas\nSteven\nJuan\nAndrew\nJonathan\nWilliam\nKevin\nJeffrey\nAdam\nTimothy\nJeremy\nAaron\nMark\nBrandon\nScott\nPaul\nThomas\nBenjamin\nCarlos\nCharles\nSean\nLuis\nJesus\nJesse\nJacob\nPatrick\nGabriel\nNathan\nKenneth\nGregory\nJorge\nStephen\nBryan\nErik\nMiguel\nEdward\nRicardo\nManuel\nVictor\nFrancisco\nMario\nRaymond\nDustin\nPeter\nTravis\nAntonio\nSamuel\nRoberto\nGeorge\nShawn\nAlejandro\nDerek\nJaime\nFrank\nAlexander\nRonald\nRuben\nJoel\nChad\nDonald\nJared\nOscar\nFernando\nHector\nRaul\nPhillip\nJavier\nArmando\nKeith\nAdrian\nEduardo\nSergio\nKyle\nVincent\nCesar\nGary\nIan\nSalvador\nDouglas\nOmar\nJeremiah\nRafael\nZachary\nMartin\nAngel\nChristian\nDanny\nDennis\nShaun\nRamon\nCasey\nRandy\nShane\nEdgar\nJohnny\nAlbert\nBradley\nArturo\nJoe\nNathaniel\nAlfredo\nAlex\nEnrique\nAlberto\nMarcus\nPhilip\nBrent\nLarry\nTyler\nGerardo\nSteve\nPedro\nTodd\nHenry\nTony\nBrett\nCory\nIsaac\nJerry\nMarco\nRussell\nArthur\nAndres\nAlan\nErnesto\nCraig\nMarc\nGilbert\nDerrick\nJimmy\nJeffery\nJulio\nWesley\nTrevor\nLuke\nRene\nLawrence\nAndre\nLucas\nEvan\nDarren\nCorey\nCurtis\nSeth\nTroy\nMarcos\nIvan\nJordan\nGarrett\nLouis\nCarl\nJon\nRudy\nKristopher\nNicolas\nRodolfo\nBobby\nCameron\nEddie\nAllen\nErick\nMicheal\nRicky\nWalter\nGuillermo\nAbraham\nGustavo\nJack\nRoger\nHugo\nAlfonso\nBilly\nRandall\nRodney\nMathew\nCody\nDominic\nJay\nAbel\nGerald\nTerry\nClinton\nColin\nRoy\nAlfred\nPablo\nIsrael\nNoah\nEugene\nRolando\nFelipe\nLee\nWayne\nRogelio\nErnest\nNeil\nGrant\nGeoffrey\nLeonard\nLance\nRonnie\nWillie\nSaul\nDylan\nTheodore\nJulian\nBeau\nGilberto\nDevin\nDamien\nEsteban\nJamie\nIgnacio\nIsmael\nBrendan\nEdwin\nMorgan\nAndy\nDarrell\nJessie\nJarrod\nMarvin\nJonathon\nClifford\nLeonardo\nMaurice\nBrad\nOrlando\nMitchell\nTyson\nBruce\nKelly\nHumberto\nMicah\nRalph\nJerome\nClayton\nMoises\nGlenn\nJermaine\nRay\nJoaquin\nJoey\nAustin\nCaleb\nChris\nRigoberto\nRamiro\nFabian\nLevi\nNoe\nDale\nGuadalupe\nSpencer\nFrederick\nEthan\nKurt\nReginald\nKarl\nTyrone\nElias\nJohnathan\nMike\nNoel\nRodrigo\nEfrain\nEmmanuel\nStanley\nVicente\nAlvaro\nDamon\nRoss\nByron\nFelix\nJosue\nNelson\nDarryl\nLorenzo\nSantiago\nTommy\nDamian\nDiego\nHoward\nLogan\nAdan\nDaryl\nHarold\nBryce\nLeon\nCalvin\nElijah\nKirk\nBarry\nOctavio\nAlvin\nDean\nMax\nBlake\nClint\nMauricio\nTomas\nAngelo\nLeo\nMelvin\nNickolas\nFrancis\nLouie\nTaylor\nWarren\nRick\nTerrance\nMarshall\nRocky\nAgustin\nLoren\nDon\nFreddy\nFranklin\nJayson\nOliver\nEmilio\nEli\nMarlon\nMoses\nGonzalo\nFred\nGlen\nKenny\nReynaldo\nShannon\nSimon\nDuane\nNorman\nAdolfo\nAldo\nAllan\nEarl\nDante\nEfren\nLeonel\nRobin\nSantos\nBernard\nClarence\nDwayne\nJamal\nLonnie\nEmanuel\nFreddie\nRickey\nRoman\nBret\nDevon\nHeath\nSam\nBen\nDario\nDarnell\nErnie\nFrankie\nBernardo\nDrew\nHerman\nLeroy\nStuart\nBranden\nBryant\nDane\nGraham\nIsaiah\nLewis\nLloyd\nForrest\nNathanael\nOsvaldo\nPreston\nDana\nDonte\nFredrick\nHarry\nJamaal\nAlonzo\nHerbert\nJake\nRoland\nStephan\nBradford\nGavin\nJamar\nPete\nRaymundo\nTerrence\nElvis\nLamar\nNeal\nNolan\nArnulfo\nDan\nGordon\nHeriberto\nLester\nNick\nTerrell\nVernon\nBenny\nDonovan\nFidel\nGene\nJeff\nKurtis\nMarcel\nMiles\nReuben\nRory\nXavier\nAriel\nGerman\nGiovanni\nAli\nGregorio\nJess\nSammy\nAntoine\nCedric\nCruz\nDallas\nDeandre\nJim\nJonah\nJulius\nValentin\nArnold\nBill\nEstevan\nFederico\nHoracio\nIsidro\nRandolph\nWade\nAshley\nCharlie\nClifton\nGreg\nToby\nAlexis\nDarin\nDemetrius\nDerick\nEdmund\nGenaro\nGuy\nRudolph\nZachariah\nAlexandro\nBenito\nBrady\nEdwardo\nJohnnie\nLeopoldo\nSonny\nTy\nJimmie\nKent\nCristian\nJosiah\nCourtney\nErin\nIsaias\nRon\nConor\nEliseo\nGino\nJarred\nJohnathon\nMason\nMaxwell\nNestor\nPerry\nRashad\nTrent\nAdalberto\nAron\nBrock\nCollin\nDwight\nJackson\nJarrett\nKristofer\nLeslie\nTed\nTobias\nDesmond\nDion\nIssac\nLionel\nMarquis\nSebastian\nTom\nErich\nJarod\nPierre\nAugustine\nConrad\nCristobal\nDonnie\nElliott\nHans\nKareem\nMariano\nQuincy\nTerence\nTrinidad\nDarrin\nDominick\nEzequiel\nFloyd\nJoesph\nMarcelino\nMarcelo\nRoderick\nRosendo\nUriel\nAbram\nBryon\nDave\nDeon\nEriberto\nGarry\nJed\nJonas\nJosh\nLeif\nMarques\nMilton\nSheldon\nAnton\nCarlo\nDillon\nFransisco\nJedediah\nJeramy\nKristoffer\nScotty\nTristan\nAmador\nClyde\nDarius\nElliot\nEverardo\nIra\nJerrod\nJody\nKen\nLandon\nMyron\nNorberto\nTracy\nAmir\nAurelio\nBlaine\nBlair\nBo\nChester\nClark\nClaudio\nCole\nDewayne\nEdmundo\nEmiliano\nEzra\nGerard\nJackie\nJennifer\nKory\nLong\nRex\nSidney\nTanner\nWaylon\nWilson\nAlec\nAri\nArron\nClay\nColby\nEdgardo\nGregg\nHarley\nHarvey\nJovan\nKeenan\nLuciano\nOwen\nRaphael\nCurt\nDaren\nDeshawn\nEdmond\nEverett\nFermin\nGorge\nJered\nReyes\nRobbie\nAlonso\nBarrett\nBrendon\nCyrus\nDarrel\nJan\nJerod\nJorje\nJoseluis\nKendall\nKris\nLamont\nLaurence\nMaria\nNicholaus\nOswaldo\nOtis\nRenato\nRoyce\nRusty\nSolomon\nVidal\nAhmad\nClemente\nDamion\nDomingo\nDonny\nGarret\nHilario\nJasen\nJean\nLyle\nQuinn\nRefugio\nRico\nRonny\nStefan\nStewart\nUlysses\nVirgil\nBob\nBrennan\nBrice\nBrooks\nCarlton\nCary\nDavin\nDorian\nDusty\nEleazar\nGarth\nJerald\nJerardo\nJessy\nJohnpaul\nKerry\nLazaro\nLucio\nMarty\nNigel\nPaulo\nShea\nSylvester\nZane\nAntony\nAric\nBert\nDino\nErwin\nEugenio\nGarett\nHung\nJairo\nJamil\nJefferson\nJerad\nJosef\nKelvin\nLuiz\nMalcolm\nSterling\nTeddy\nUlises\nVance\nVaughn\nWendell\nAbelardo\nBrain\nEddy\nFausto\nGildardo\nJasper\nJeffry\nKasey\nLeland\nMichel\nNikolas\nTim\nTuan\nWestley\nWyatt\nArnoldo\nAvery\nBraden\nBrenton\nBruno\nCarson\nChase\nDarrick\nElisha\nHuy\nJacques\nJedidiah\nJeromy\nKristian\nMatt\nMigel\nMohammed\nOmari\nReed\nRichardo\nRomeo\nShayne\nWeston\nWilbert\nWilfredo\nAndreas\nBaltazar\nClaude\nCuauhtemoc\nDelfino\nDominique\nDonnell\nElmer\nErasmo\nJuancarlos\nLeobardo\nMarkus\nNam\nOsbaldo\nPorfirio\nReggie\nReymundo\nRussel\nSkyler\nVince\nWinston\nAntwan\nCaesar\nCarey\nChance\nCliff\nCornelius\nCristopher\nDanial\nDenny\nDeric\nElizabeth\nEmil\nEzekiel\nFlavio\nFredy\nGarland\nHassan\nJabari\nLars\nLisandro\nMaximilian\nMickey\nMorris\nMyles\nNathanial\nNicole\nPascual\nQuentin\nSalomon\nSalvatore\nTyree\nVan\nCecil\nChaz\nConrado\nDavon\nDelbert\nDereck\nErrol\nEsequiel\nFaustino\nGil\nKai\nKaleb\nKim\nMohammad\nMonte\nNarciso\nOrion\nQuinton\nRamsey\nRandal\nRiley\nRobby\nRodger\nSamson\nSantino\nSerjio\nTeodoro\nTimmy\nTravon\nTrenton\nVinh\nZachery\nAlton\nAmado\nBrenden\nBuck\nCamilo\nChe\nDavis\nDemond\nDexter\nDuncan\nEloy\nErika\nFiliberto\nFranco\nGalen\nGerrit\nGideon\nHomero\nHubert\nIrving\nJaron\nJelani\nJunior\nKhalid\nLenny\nLino\nMalachi\nMauro\nMaximiliano\nMelissa\nMichelle\nMonty\nRosalio\nRueben\nSarah\nShant\nShon\nTarik\nTommie\nUbaldo\nValentino\nWallace\nZackary\nAlphonso\nAnselmo\nAram\nArchie\nArmen\nArt\nAugustin\nBennett\nBrien\nCornell\nDaron\nDeshaun\nDontae\nEsau\nFlorentino\nGiancarlo\nJade\nJamin\nJeramie\nJessica\nJuvenal\nKelsey\nKenyon\nNicky\nPrince\nRahul\nRandell\nRhett\nRodrick\nRojelio\nSherman\nThanh\nZackery\nAdonis\nAlain\nAmit\nAngela\nAsa\nBennie\nBjorn\nBradly\nBrant\nCarmelo\nCassidy\nCeasar\nChadwick\nCullen\nCuong\nDanniel\nDejuan\nDimitri\nDonavan\nEllis\nErvin\nFeliciano\nFidencio\nHarrison\nHayden\nHomer\nIvory\nJevon\nJudson\nJuston\nKeegan\nKendrick\nLavell\nLiam\nLukas\nMarcell\nMinh\nNehemiah\nNikolaus\nOracio\nPatricio\nQuang\nRaudel\nReid\nRenee\nRey\nRocco\nRommel\nRonaldo\nSanjay\nScot\nShelby\nSilverio\nSimeon\nTyrell\nViet\nVincente\nWillis\nAdriana\nAlfonzo\nAra\nAubrey\nAugust\nBart\nBenson\nBernardino\nBrook\nCatarino\nCecilio\nCharlton\nCheyne\nCipriano\nConan\nConnor\nDarwin\nDemetrio\nDirk\nEctor\nEladio\nElvin\nFlorencio\nGreggory\nHai\nHal\nHamilton\nJacobo\nJarett\nJefferey\nJereme\nJeremie\nJerrad\nKenji\nLaron\nLauro\nLon\nMalik\nMarcial\nMikel\nModesto\nMohamed\nParis\nPercy\nPhong\nRoosevelt\nRudolfo\nRufino\nSamual\nSandro\nSandy\nSharif\nShelton\nSherwin\nSilvestre\nSky\nStacy\nStevan\nStevie\nTai\nTerron\nTrever\nTye\nTyron\nUriah\nValentine\nVeronica\nVito\nWill\nZebulon\nAgustine\nAhmed\nAl\nAmin\nAmos\nAnh\nAnkur\nApolinar\nArtemio\nAugusto\nBarney\nBenigno\nBrandan\nBrandt\nBraulio\nBurton\nCamron\nChristina\nChristoper\nCornelio\nDameon\nDanielle\nDarian\nDerik\nDerrell\nDonell\nDonta\nDouglass\nDoyle\nElio\nEmmett\nForest\nFranz\nFroilan\nGabino\nGrady\nHernan\nHiram\nImran\nIsacc\nIshmael\nIsreal\nJamison\nJavon\nJeremey\nJerred\nJohan\nJohann\nJory\nJustus\nJuventino\nKao\nKelley\nKenya\nKeon\nKevan\nKirby\nLauren\nLemuel\nLynn\nMacario\nMarcello\nMarcoantonio\nMarquise\nMonica\nNathen\nNickolaus\nParker\nQuoc\nRavi\nRishi\nRoque\nSandra\nSerafin\nShay\nShiloh\nTarek\nThaddeus\nTri\nTrung\nTucker\nValente\nWilly\nYusuf\nAbner\nAdolph\nAlejo\nAmeer\nAnderson\nAndrea\nAnibal\nAnson\nAntwon\nArmand\nArthuro\nAusten\nBaldomero\nBarton\nBenedict\nBuddy\nCade\nCandelario\nCharley\nChauncey\nChet\nCheyenne\nChristos\nConstantino\nDajuan\nDelvin\nDeven\nDuy\nEarnest\nEdgard\nEdson\nEduard\nEmerson\nEnrico\nFabio\nFrederic\nGaspar\nGeraldo\nGerry\nGerson\nHoang\nIrwin\nJameel\nJayme\nJeanpaul\nJeramiah\nJeremias\nJerimiah\nJerman\nJermey\nJude\nKennith\nKeven\nKing\nLaura\nLavar\nLenin\nLevon\nLisa\nLorne\nLupe\nLuther\nMagdaleno\nMandeep\nMargarito\nMarion\nMarkanthony\nMaximillian\nMisael\nMitchel\nNancy\nNapoleon\nPhil\nRasheed\nRenaldo\nRickie\nRomulo\nRonnell\nRosario\nSeneca\nServando\nShad\nShanon\nShomari\nSilas\nSon\nTaj\nTito\nTrevon\nVincenzo\nVirgilio\nVu\nWillard\nAbran\nAdrain\nAlden\nAlegandro\nAlejandra\nAmar\nAmber\nAnwar\nApollo\nApolonio\nArmondo\nAsher\nBaldemar\nBaron\nBillie\nBlas\nBoris\nBrandyn\nBrannon\nBroderick\nBrodie\nBryson\nCain\nCale\nChadd\nChuck\nCirilo\nColeman\nCooper\nCristina\nDandre\nDelvon\nDemetrios\nDenis\nDenver\nDomenic\nDonavon\nDupree\nDuran\nEd\nElton\nEly\nEnoc\nEnoch\nEphraim\nFavian\nGermain\nGermaine\nGian\nHarlan\nHeather\nHermes\nHipolito\nHoa\nHolland\nHugh\nHunter\nIman\nIsiah\nIsidoro\nJakob\nJamel\nJarom\nJarrad\nJeb\nJenny\nJensen\nJerid\nJerrett\nJessee\nJohathan\nJonpaul\nJordon\nJudd\nJusten\nKahlil\nKalen\nKip\nKristin\nLateef\nLeandro\nLenard\nLincoln\nLonny\nLou\nLucky\nLuisalberto\nMarko\nMerlin\nMichale\nMikael\nMiquel\nMuhammad\nNolberto\nPaolo\nPatricia\nRaoul\nRashaad\nReza\nRigo\nRito\nRob\nRobyn\nRoel\nRomel\nSage\nSalbador\nSameer\nSamir\nSandeep\nSeferino\nSilvano\nStacey\nStephanie\nTheron\nTimmothy\nVanessa\nVijay\nWes\nWhitney\nYsidro\nYusef\nAbdul\nAbelino\nAgapito\nAlessandro\nAlverto\nAnand\nAnastacio\nAndrae\nAndrei\nAraceli\nArlen\nAxel\nBasil\nBasilio\nBee\nBenjamen\nBilal\nBobbie\nBoyd\nBritt\nBud\nBurt\nCarmen\nCedrick\nChandler\nChistopher\nConstantine\nCordell\nCortney\nCuahutemoc\nDagoberto\nDakota\nDanilo\nDarek\nDarick\nDartagnan\nDax\nDeangelo\nDelano\nDeonte\nDeron\nDerrek\nDerrik\nDesi\nDimitrios\nDionicio\nDomonic\nDontay\nDov\nEden\nElan\nElie\nEliezer\nElijio\nEnrigue\nEpifanio\nErica\nFletcher\nFrancois\nGabrial\nGavino\nGiuseppe\nGonsalo\nGus\nGustabo\nHyrum\nInes\nJace\nJacoby\nJai\nJamon\nJarret\nJarvis\nJashua\nJohannes\nJohnie\nJohnson\nJonmichael\nJonny\nJosemanuel\nJoshuah\nJovany\nJovon\nJulien\nKabir\nKalani\nKellen\nKenton\nKeyon\nKimberly\nKoby\nKolby\nKraig\nKristen\nLaurent\nLeigh\nLemar\nLiborio\nLizandro\nLucien\nLydell\nMack\nMackenzie\nMajor\nMaribel\nMarisol\nMarlin\nMaximo\nMayra\nMegan\nMel\nMicahel\nMikhail\nMitch\nNasario\nNatividad\nNed\nNikolai\nNile\nNima\nNorbert\nOlaf\nOtoniel\nPaulino\nPhilippe\nPrentice\nPrimitivo\nQuintin\nRaj\nReese\nRian\nRitchie\nRocio\nSal\nSalim\nSasha\nSesar\nShan\nTam\nTan\nTerrill\nThien\nThurman\nTino\nToan\nTobin\nTorrey\nTrinity\nTruong\nTu\nVi\nVictorio\nVinay\nWenceslao\nWilbur\nWiley\nWilfred\nYgnacio\nZechariah\nZeferino\nAble\nAdriano\nAdrien\nAidan\nAlbaro\nAlen\nAlexandre\nAlvino\nAmanda\nAmandeep\nAmbrose\nAmeet\nAmerico\nAmmon\nAn\nAna\nAngelica\nAnna\nAnthoney\nArcadio\nAren\nAshish\nAvelino\nBassel\nBernie\nBinh\nBooker\nBulmaro\nBurl\nCandido\nCarter\nCesario\nChi\nChristine\nClaudia\nCleveland\nConcepcion\nCosme\nCris\nCrisanto\nCurtiss\nDani\nDashawn\nDavey\nDavie\nDawud\nDeondre\nDeshon\nDiondre\nDionisio\nDoug\nDuke\nDwain\nEamonn\nEbony\nEdilberto\nEliel\nEliot\nEliu\nEllery\nEmery\nEmile\nEmory\nEran\nEron\nFilemon\nFlynn\nFoster\nGaren\nGaret\nGareth\nGaron\nGarren\nGarrick\nGaylord\nGerad\nGeronimo\nGillermo\nGustav\nHagop\nHank\nHilda\nHollis\nHorace\nIbn\nIke\nIsac\nJabier\nJahmal\nJaison\nJamarr\nJameson\nJamey\nJasson\nJenaro\nJeremi\nJericho\nJermain\nJerone\nJeronimo\nJerrold\nJosemaria\nJulie\nJusto\nKale\nKamran\nKarim\nKatherine\nKatrina\nKentaro\nKerwin\nKhalil\nKhanh\nKody\nKristina\nLalo\nLashawn\nLavon\nLinda\nLowell\nLoyd\nLucian\nLucius\nLyndon\nMakoto\nMarcellus\nMarkell\nMarquez\nMarshal\nMateo\nMatias\nMatteo\nMatthias\nMaximino\nMerle\nMerrill\nMilo\nMister\nMohamad\nMoshe\nMurray\nNabil\nNazario\nNeftali\nNguyen\nNicholos\nNicklaus\nNino\nOdell\nOlen\nOlin\nOlivier\nOmid\nOrasio\nOren\nPatric\nRaffi\nRaheem\nRahim\nRaja\nRami\nRandel\nRashid\nRaymon\nReginaldo\nRemy\nRenard\nRenne\nReuel\nReynold\nRichie\nRobb\nRock\nRowan\nRoyal\nRufus\nRustin\nSabas\nSachin\nSaeed\nSaleem\nSalvadore\nSammie\nSan\nSang\nSaro\nSaulo\nSevero\nShamar\nShanti\nSigifredo\nSione\nSol\nStan\nTakashi\nTeofilo\nTiffany\nTizoc\nTou\nTremaine\nUlisses\nVernell\nVictoriano\nVikram\nVishal\nWaldo\nWeldon\nWillian\nZeke\nZeth\nMichael\nChristopher\nDavid\nDaniel\nMatthew\nRobert\nJason\nJoshua\nJohn\nJose\nRyan\nJoseph\nJames\nBrian\nJustin\nAnthony\nJonathan\nRichard\nEric\nNicholas\nSteven\nBrandon\nAndrew\nJuan\nWilliam\nJeffrey\nKevin\nAdam\nAaron\nJeremy\nTimothy\nPaul\nThomas\nMark\nSean\nScott\nJesse\nBenjamin\nCarlos\nCharles\nJesus\nLuis\nKenneth\nPatrick\nJacob\nNathan\nMiguel\nGregory\nJorge\nFrancisco\nRicardo\nGabriel\nEdward\nBryan\nStephen\nDustin\nManuel\nVictor\nMario\nAlexander\nRaymond\nAlejandro\nSamuel\nTravis\nPeter\nAntonio\nErik\nRoberto\nRonald\nShawn\nFrank\nJoel\nGeorge\nKyle\nJared\nAdrian\nOscar\nRuben\nSergio\nDerek\nJaime\nChad\nRaul\nDonald\nJavier\nFernando\nHector\nArmando\nChristian\nKeith\nVincent\nCesar\nPhillip\nGary\nArturo\nEduardo\nMartin\nZachary\nSalvador\nIan\nRafael\nDouglas\nPedro\nBradley\nJeremiah\nRamon\nBrett\nEdgar\nCasey\nPhilip\nAngel\nShaun\nDanny\nAlberto\nJohnny\nOmar\nShane\nMarcus\nRandy\nDennis\nHenry\nNathaniel\nTyler\nIvan\nLarry\nAlex\nJordan\nAlbert\nGerardo\nArthur\nJoe\nJimmy\nAlfredo\nTony\nErnesto\nEnrique\nTodd\nRussell\nBrent\nIsaac\nAlan\nEvan\nSteve\nCraig\nJulio\nJerry\nWesley\nGarrett\nMarco\nGustavo\nCory\nTrevor\nAndres\nCurtis\nJeffery\nMarc\nRodolfo\nDerrick\nKristopher\nCorey\nRene\nLuke\nLawrence\nAndre\nGilbert\nSeth\nLucas\nCameron\nCarl\nRudy\nHugo\nMarcos\nMathew\nRoger\nDarren\nRoy\nTroy\nNoah\nWalter\nErick\nMicheal\nAbraham\nAllen\nJulian\nNicolas\nJack\nPablo\nDominic\nLouis\nAlfonso\nRicky\nAbel\nBobby\nJon\nEddie\nLee\nNeil\nSaul\nEmmanuel\nGuillermo\nClinton\nCody\nFelipe\nGilberto\nBilly\nColin\nRandall\nBlake\nErnest\nEdwin\nGeoffrey\nWayne\nIsmael\nTerry\nJessie\nJohnathan\nIsrael\nMaurice\nGerald\nRodney\nMoises\nLeonard\nAlfred\nAustin\nEsteban\nEugene\nJonathon\nRogelio\nAndy\nMicah\nRamiro\nRonnie\nGrant\nMitchell\nMorgan\nJay\nTommy\nCaleb\nDevin\nBruce\nFrederick\nMarvin\nRalph\nLance\nBeau\nBrendan\nTheodore\nFabian\nClayton\nJamie\nJarrod\nRay\nIgnacio\nClifford\nEfrain\nWillie\nLeonardo\nRigoberto\nTaylor\nCalvin\nRolando\nJermaine\nKelly\nTyrone\nOrlando\nReginald\nBrad\nDarrell\nDamien\nSantiago\nAdan\nByron\nJerome\nJosue\nRoss\nGlenn\nSpencer\nDylan\nJoey\nOctavio\nElias\nLorenzo\nAlvaro\nVicente\nHumberto\nBranden\nFelix\nLevi\nRodrigo\nEthan\nJoaquin\nNoel\nTomas\nDamian\nDario\nNoe\nGuadalupe\nStanley\nDean\nTyson\nDarryl\nLogan\nMike\nBarry\nLeo\nChris\nMelvin\nClint\nHarold\nDale\nDiego\nDon\nKenny\nAlvin\nMax\nElijah\nKurt\nWarren\nAngelo\nEmilio\nEmanuel\nLeon\nMauricio\nBryce\nKarl\nRick\nAdolfo\nMarlon\nAllan\nKirk\nSimon\nFrancis\nDante\nHoward\nNorman\nRoman\nDaryl\nNelson\nOliver\nDamon\nDwayne\nAgustin\nLeonel\nLouie\nJeff\nBret\nDrew\nEli\nGlen\nHeriberto\nEarl\nFreddie\nJayson\nMoses\nRoland\nGavin\nMarshall\nNolan\nRaymundo\nBryant\nJake\nJamal\nRickey\nShannon\nGonzalo\nGraham\nClarence\nFred\nLamar\nCristian\nFranklin\nLonnie\nLoren\nNeal\nNickolas\nSantos\nRobin\nTerrance\nTerrence\nClifton\nFidel\nGiovanni\nLloyd\nReynaldo\nFrankie\nGene\nGerman\nHarry\nMiles\nVernon\nAlexis\nBernardo\nGordon\nIsidro\nOsvaldo\nWade\nBen\nCharlie\nJohnathon\nPete\nJim\nRocky\nBenny\nDana\nXavier\nBernard\nFederico\nDevon\nFredrick\nIsaiah\nTerrell\nAntoine\nEfren\nHerman\nJairo\nTom\nAldo\nDonte\nFreddy\nJulius\nKent\nStuart\nTristan\nDallas\nJarrett\nLewis\nPreston\nRandolph\nGregorio\nNick\nStephan\nDarin\nDerick\nJosiah\nBenito\nDan\nOwen\nAlexandro\nCedric\nEliseo\nErnie\nGuy\nHoracio\nJess\nJohnnie\nLandon\nReuben\nAdalberto\nDane\nMarcel\nRory\nSonny\nTed\nZachariah\nAshley\nBradford\nDonovan\nLester\nMarques\nMilton\nPerry\nSam\nTy\nDarnell\nDeandre\nHeath\nAlonzo\nAriel\nArnold\nAron\nDomingo\nDuane\nGreg\nHerbert\nJamar\nKurtis\nLeroy\nRon\nSkyler\nTrent\nAli\nDwight\nElliot\nHans\nJackson\nLionel\nAurelio\nIsaias\nMarquis\nPierre\nSammy\nSterling\nBryon\nCarlo\nErin\nEstevan\nEverett\nKristoffer\nStefan\nBill\nElvis\nKellen\nKelvin\nRudolph\nSebastian\nBrendon\nConrad\nEdmund\nJonah\nLeslie\nRashad\nRoderick\nUlysses\nBrady\nCollin\nDion\nNestor\nValentin\nArnulfo\nBlair\nCourtney\nCruz\nDominick\nDonny\nEzequiel\nForrest\nFransisco\nGenaro\nJarod\nJimmie\nKristian\nKristofer\nLeopoldo\nMaria\nToby\nArron\nHuy\nJamaal\nMarcelo\nAmir\nCristobal\nDemetrius\nDorian\nErwin\nGarry\nGerard\nJovan\nTerence\nWeston\nBrooks\nCarson\nChester\nDonnie\nElliott\nEverardo\nIssac\nLamont\nMason\nMaxwell\nNikolas\nNorberto\nWilson\nClyde\nDarius\nDave\nKasey\nAhmad\nCyrus\nDesmond\nFiliberto\nJoesph\nKen\nMariano\nNathanael\nRex\nUriel\nAugustine\nCole\nConor\nDarrin\nDeshawn\nEdwardo\nFermin\nGarret\nGorge\nHarvey\nJeremie\nMarcelino\nNicholaus\nRojelio\nRoyce\nTobias\nTracy\nTuan\nVirgil\nAnton\nDonnell\nDusty\nEdmond\nGino\nJorje\nLeif\nLyle\nMigel\nRosendo\nTanner\nWyatt\nAlonso\nBryson\nCary\nClark\nClaudio\nFloyd\nJasen\nJerald\nKeenan\nLuciano\nRey\nReyes\nClay\nDenny\nDeon\nJoseluis\nKerry\nKory\nLaurence\nLeland\nMarkus\nRandal\nSalvatore\nSheldon\nSolomon\nTrenton\nTrinidad\nUlises\nBlaine\nCecil\nDillon\nElmer\nGalen\nHilario\nJan\nJonas\nKim\nLong\nMinh\nMyron\nQuincy\nReggie\nReid\nRobbie\nWaylon\nAbram\nAlton\nClaude\nCristopher\nEmiliano\nIra\nJosef\nJosh\nMarty\nSerjio\nTravon\nVan\nVinh\nWendell\nAri\nBraden\nBradly\nChristoper\nDarrick\nEdgardo\nEmil\nHarley\nJackie\nJarred\nJerad\nJeromy\nKeegan\nKris\nLucio\nRefugio\nShea\nVidal\nAlec\nArnoldo\nAvery\nBarrett\nClemente\nDaren\nDarrel\nDexter\nDontae\nEleazar\nEriberto\nEzekiel\nFaustino\nFlavio\nJasper\nJed\nJedidiah\nJennifer\nJohnpaul\nKendall\nLino\nLuiz\nQuentin\nQuinn\nRenato\nSantino\nTeddy\nThaddeus\nVance\nWilfredo\nColby\nDominique\nEloy\nEzra\nFausto\nGarett\nHung\nJefferey\nJerrod\nJohnson\nMargarito\nMyles\nPascual\nPaulo\nQuang\nRaphael\nRhett\nRocco\nRusty\nSidney\nStewart\nThanh\nTim\nTyrell\nWillis\nWinston\nAlegandro\nAmador\nBrain\nBrock\nCaesar\nDamion\nDavon\nDenis\nDerik\nDewayne\nDino\nErich\nEsequiel\nGabino\nHunter\nJabari\nJacinto\nJefferson\nJeramy\nJered\nJerod\nJessica\nJody\nKao\nKareem\nKendrick\nKorey\nMarcello\nOrion\nOsbaldo\nOswaldo\nRaymon\nSalomon\nSherman\nSilas\nTommie\nTrever\nUbaldo\nViet\nWill\nAmit\nAndreas\nBart\nBennie\nBuddy\nCarlton\nCharley\nCornelius\nDuy\nFranco\nGildardo\nGregg\nHernan\nHubert\nJacques\nJamison\nJean\nJedediah\nJessy\nLazaro\nLowell\nMalik\nMauro\nNathanial\nOtis\nPatricio\nRiley\nRufus\nSasha\nScotty\nSkylar\nVince\nWilbert\nZachery\nZane\nArchie\nArtemio\nAsa\nBrenton\nBritton\nCecilio\nConrado\nDagoberto\nDavin\nDemetrio\nEarnest\nFlorentino\nIrving\nJelani\nJunior\nKai\nKenji\nKeven\nLeobardo\nLuther\nMack\nMalcolm\nMatt\nMichel\nMickey\nMiguelangel\nMohammad\nMohammed\nMonty\nNathen\nNigel\nParker\nPhong\nReed\nRickie\nRico\nSamson\nSarah\nServando\nSimeon\nSylvester\nVeronica\nVito\nAntony\nBert\nBrandan\nBruno\nCeasar\nDanial\nDanilo\nDat\nDavis\nDereck\nDonta\nDuncan\nEllis\nEmerson\nEnrigue\nHugh\nKhalil\nLars\nLauren\nMaximiliano\nMorris\nNam\nOmari\nParis\nPrince\nRami\nReymundo\nRomeo\nRudolfo\nScot\nStevie\nTrung\nWallace\nAhmed\nAmado\nArmand\nAsher\nAugust\nBjorn\nBo\nBrant\nBrenden\nBrennan\nBrook\nBuck\nChase\nChistopher\nDarwin\nDeric\nDrake\nEddy\nEdmundo\nElizabeth\nElvin\nErvin\nFeliciano\nFlorencio\nFredy\nGiancarlo\nJacobo\nJakob\nJaron\nJeramiah\nJeramie\nJerardo\nJerimiah\nJuston\nLane\nLindsey\nLukas\nMarcell\nNehemiah\nOtto\nRamsey\nRodger\nRoosevelt\nRosario\nSarkis\nSon\nTimmy\nVu\nAndrea\nApolinar\nApollo\nAram\nBaltazar\nBernabe\nBoris\nCamilo\nCandelario\nChadwick\nChance\nChauncey\nConnor\nDalton\nDelbert\nDirk\nDonell\nDung\nElbert\nEugenio\nGarth\nGeronimo\nHank\nHarlan\nHassan\nHipolito\nHoang\nIsai\nJamil\nJeffry\nJereme\nJeremey\nJonpaul\nJordon\nJusten\nJuvenal\nKenyon\nLaron\nLynn\nMarion\nMichelle\nMisael\nMonte\nOren\nPercy\nPhuong\nPorfirio\nRichardo\nRobby\nRonny\nRoque\nRosalio\nSandra\nTeodoro\nVincente\nZackary\nAdrien\nAkil\nAl\nAnson\nAntione\nArash\nArlen\nArmen\nBabak\nBenedict\nBob\nBraulio\nChaz\nCurt\nDaneil\nDashawn\nDionicio\nEdgard\nEladio\nEnoch\nErasmo\nFavian\nGarrick\nGaspar\nGerson\nIsreal\nJade\nJameel\nJarret\nJayme\nJericho\nJohathan\nJustino\nKamal\nKennith\nKeyon\nLenard\nLinh\nMarcial\nMichale\nMikel\nMilo\nMuhammad\nNima\nQuan\nQuinton\nRishi\nRomel\nRueben\nSan\nSanjay\nSharif\nShayne\nSky\nStephanie\nTitus\nValentino\nVishal\nWhitney\nWillard\nYoung\nAlain\nAlphonso\nAmos\nAnwar\nAric\nArt\nAxel\nBernie\nBrenda\nBurt\nCamron\nChet\nCheyenne\nCheyne\nChuck\nClaudia\nCliff\nCullen\nCuong\nDameon\nDarian\nDejuan\nDeshaun\nElan\nEliazar\nEliezer\nEmmett\nEvaristo\nFrancesco\nGil\nGrady\nHai\nHarrison\nHomer\nJamin\nJarad\nJeanpaul\nJerman\nJob\nJohan\nJovon\nJuancarlos\nJulien\nJun\nKaleb\nKelley\nKelsey\nKirby\nKristin\nLam\nLisandro\nLorne\nManny\nMarlin\nMarquise\nMatias\nMerlin\nMohamed\nMonica\nNai\nNancy\nNapoleon\nNarciso\nNels\nNicole\nNils\nPaolo\nQuintin\nRodrick\nRussel\nSandy\nSesar\nShad\nShant\nSilverio\nSixto\nThien\nThong\nTiffany\nTremaine\nTung\nVaughn\nWestley\nAdriel\nAmber\nAnibal\nAntone\nArian\nAugustin\nBennett\nBinh\nBoyd\nBrice\nBurton\nCal\nCarmelo\nCarter\nCatarino\nChristofer\nChristophe\nCipriano\nCooper\nCorry\nCresencio\nCrispin\nCyril\nDavey\nDenise\nDenver\nEldon\nEusebio\nForest\nGiuseppe\nHomero\nImran\nIsiah\nIsidoro\nJameson\nJarrad\nJavon\nJeb\nJermel\nJermey\nJeronimo\nJessi\nJevon\nJoao\nJosedejesus\nJudah\nKalen\nKameron\nKhalid\nLavell\nLeandro\nLenny\nLupe\nMalachi\nMarkanthony\nMaximino\nMaximo\nMelissa\nMervin\nMiquel\nNader\nNikolaus\nNolberto\nOlegario\nPhil\nPhilippe\nPhu\nRajesh\nRasheed\nRigo\nRoel\nRommel\nRosa\nRustin\nSamir\nSerafin\nShelby\nSkye\nStevan\nTam\nTamir\nThai\nTino\nTorrey\nTri\nTye\nTyrel\nValentine\nWilly\nYuri\nAbe\nAbelardo\nAjay\nAlireza\nAmar\nArnel\nAubrey\nAugustus\nAusten\nBao\nBasil\nBaudelio\nBee\nBenigno\nBenjamen\nBlanca\nBrannon\nBrien\nCarmen\nCarnell\nCassidy\nCedrick\nCelso\nChristina\nCindy\nClarke\nClement\nConan\nCornell\nDandre\nDaron\nDavion\nDayton\nDeonte\nDerrek\nDerrell\nDoyle\nEdson\nEhren\nElisha\nEnrico\nEphraim\nErrol\nFidencio\nFransico\nGerry\nGreggory\nGustabo\nHorace\nIain\nIsabel\nJabier\nJanet\nJarvis\nJaysen\nJerel\nJerell\nJermain\nJerold\nJerrad\nJerrell\nJohnmichael\nJovani\nJustine\nJustus\nKahlil\nKane\nKarim\nKevan\nKhang\nKong\nKou\nLaura\nLeigh\nLennon\nLiliana\nLuigi\nMarcellus\nMarlo\nMateo\nMaximilian\nMy\nNatividad\nNicky\nObed\nPatricia\nPaulino\nPheng\nRaffi\nRaheem\nRavi\nRenee\nRowland\nRuperto\nSal\nSamual\nSang\nShelton\nShomari\nShon\nSilvestre\nSkip\nStacy\nTarek\nTito\nTory\nTucker\nTyron\nValente\nVincenzo\nWilliams\nAbrahan\nAdolph\nAdrain\nAkira\nAlejandra\nAlfonzo\nAlicia\nAllyn\nAmy\nAna\nAnastacio\nAndrae\nAngelica\nAnh\nAnselmo\nAntwan\nArmondo\nArthuro\nArtis\nAscencion\nAudel\nAugusto\nBakari\nBarney\nBaron\nBasilio\nBlas\nBrandin\nBrody\nCade\nCain\nCavan\nCeferino\nCezar\nChadd\nChe\nChi\nChirstopher\nCiro\nConstantino\nCorbin\nCuauhtemoc\nDajuan\nDannie\nDarron\nDejon\nDelfino\nDemond\nDeondre\nDeron\nDewey\nDiana\nDomenic\nDonato\nDuc\nDuke\nDuriel\nEberardo\nEdan\nEden\nEdison\nElton\nEly\nEmery\nEmile\nEpifanio\nFaisal\nFortino\nFrancois\nFranklyn\nGamaliel\nGaren\nGarland\nGaro\nGavino\nGillermo\nGodfrey\nGonsalo\nGus\nHabib\nHarmon\nHiram\nIrineo\nIshmael\nJai\nJamel\nJeron\nJerrold\nJestin\nJohannes\nJohnie\nJuanmanuel\nJude\nJudson\nJulie\nKalin\nKeon\nKieran\nKimberly\nKing\nKip\nLemar\nLeovardo\nLiam\nLincoln\nLorena\nMandeep\nMarcoantonio\nMarko\nMaximillian\nMichaelangelo\nMikael\nModesto\nMustafa\nNevin\nNicolaus\nNikhil\nNiles\nNino\nOllie\nOmid\nOracio\nPao\nQuoc\nRanulfo\nRaoul\nRashaad\nRaudel\nRefujio\nReinaldo\nReno\nRian\nSalim\nSeneca\nSevag\nShay\nSherwin\nShiloh\nSilvio\nStan\nSunny\nSydney\nTai\nTaj\nTate\nThang\nTheron\nTien\nTimmothy\nTj\nTrayvon\nTrevon\nTyree\nUnknown\nVladimir\nWalker\nWally\nWest\nWilfred\nYgnacio\nZackery\nAce\nAidan\nAlbaro\nAlbino\nAlexandre\nAlexi\nAlon\nAmanda\nAmbrose\nAmeer\nAmilcar\nAn\nAnders\nAnderson\nAndrey\nAnival\nAnkur\nAnthoney\nAntwon\nApolonio\nAra\nAraceli\nArcadio\nArik\nAris\nArlo\nArnaldo\nArvin\nAshraf\nAshton\nAsim\nAundre\nBarbara\nBarron\nBejamin\nBenton\nBijan\nBobak\nBobbie\nBodie\nBrando\nBrandyn\nBritt\nBroderick\nBrooke\nBud\nCarey\nCha\nChristen\nChung\nCleveland\nCoby\nColeman\nConstantine\nCosme\nDamone\nDani\nDanniel\nDarcy\nDarien\nDavy\nDawayne\nDelvon\nDerwin\nDeven\nDietrich\nDimitri\nDonavan\nDontay\nDru\nDujuan\nDusten\nEctor\nEdilberto\nEduard\nEfrem\nElgin\nElie\nEliot\nElpidio\nEmigdio\nErika\nEron\nEsau\nFavio\nFelton\nFong\nFrederic\nGareth\nGarren\nGeno\nGerad\nGeraldo\nGermain\nGerrod\nGideon\nGilverto\nGiovani\nGumaro\nHamed\nHao\nHarris\nHasan\nHayden\nHeber\nHerminio\nHerschel\nHieu\nHoa\nHollis\nHouston\nIban\nIbrahim\nJacoby\nJacque\nJame\nJamey\nJamon\nJashua\nJaspreet\nJasun\nJaun\nJeanpierre\nJerame\nJerimy\nJerrid\nJessey\nJonthan\nJorel\nJorell\nJoshuah\nJovanni\nJovany\nJuanito\nJuanjose\nJulia\nJustice\nJuventino\nKale\nKalvin\nKamron\nKarina\nKatherine\nKavin\nKayvon\nKenton\nKhai\nKhanh\nKhoa\nKhoi\nKody\nKristofor\nLafayette\nLavar\nLavelle\nLayne\nLayton\nLibrado\nLoc\nLon\nLorin\nLucien\nLucky\nLue\nLuz\nMacario\nMan\nMarisol\nMathias\nMayra\nMelchor\nMicahel\nMichele\nMikhail\nMitch\nMitchel\nMonroe\nMoshe\nMurray\nNareg\nNavid\nNed\nNereida\nNguyen\nNickolaus\nNile\nOmero\nOnofre\nParrish\nPayam\nPeyton\nPhi\nPhillipe\nRahsaan\nRainier\nRajiv\nRaleigh\nRandell\nReagan\nReese\nReza\nRhyan\nRichie\nRitchie\nRito\nRocio\nRod\nRolland\nRonnell\nRoyal\nRyann\nRyo\nSage\nSameer\nSandro\nSanto\nSara\nSchuyler\nScottie\nSeamus\nSeanpaul\nSeferino\nSevero\nSierra\nSigifredo\nSione\nSonia\nSoren\nSten\nSusana\nTad\nTariq\nTerell\nTerrill\nTevita\nTheadore\nToan\nTobin\nTod\nTosh\nTravion\nTristen\nTyrome\nUlices\nUlyses\nUrbano\nVal\nVanessa\nVenancio\nVentura\nVirgilio\nWayland\nWendy\nWiley\nYousef\nZebulon\nZechariah\nZenon\nMichael\nChristopher\nDavid\nDaniel\nMatthew\nRobert\nJason\nJoshua\nJames\nJohn\nRyan\nJose\nJoseph\nBrian\nJustin\nAnthony\nJonathan\nAndrew\nRichard\nNicholas\nEric\nSteven\nWilliam\nBrandon\nKevin\nJuan\nAdam\nJeffrey\nAaron\nThomas\nTimothy\nSean\nMark\nPaul\nScott\nJesse\nCarlos\nJeremy\nBenjamin\nLuis\nMiguel\nJesus\nCharles\nJacob\nPatrick\nGregory\nBryan\nKenneth\nNathan\nStephen\nJorge\nGabriel\nTravis\nVictor\nRicardo\nKyle\nEdward\nAlexander\nManuel\nSamuel\nMario\nDustin\nFrancisco\nAlejandro\nPeter\nRaymond\nRoberto\nAntonio\nErik\nChristian\nFrank\nGeorge\nShawn\nRonald\nJared\nAdrian\nDerek\nJoel\nOscar\nFernando\nRuben\nVincent\nChad\nSergio\nHector\nIan\nJaime\nDonald\nJavier\nPhillip\nKeith\nRaul\nEduardo\nTyler\nMartin\nArmando\nZachary\nCesar\nSalvador\nJordan\nBrett\nAlex\nMarcus\nRafael\nGary\nEvan\nBradley\nPedro\nDouglas\nAngel\nPhilip\nAlberto\nShaun\nDanny\nJohnny\nCasey\nNathaniel\nArturo\nRamon\nOmar\nShane\nLarry\nRandy\nDennis\nHenry\nAlbert\nJeremiah\nGerardo\nTony\nEdgar\nRussell\nArthur\nIvan\nBrent\nAlan\nAlfredo\nAndres\nEnrique\nErnesto\nMarco\nJimmy\nJoe\nIsaac\nTrevor\nAndre\nSteve\nJeffery\nCraig\nJerry\nTodd\nJulio\nCory\nWesley\nBlake\nKristopher\nGarrett\nCameron\nCody\nMarc\nCurtis\nLawrence\nNoah\nRene\nDerrick\nGilbert\nGustavo\nMarcos\nRodolfo\nMathew\nColin\nCarl\nSeth\nCorey\nRoger\nRudy\nNicolas\nAllen\nErick\nBobby\nLouis\nRicky\nTroy\nLucas\nJack\nJulian\nDarren\nAlfonso\nAbraham\nDominic\nEddie\nAustin\nJon\nRoy\nGuillermo\nHugo\nLuke\nEdwin\nAbel\nPablo\nErnest\nWalter\nJonathon\nJessie\nJohnathan\nLance\nRodney\nGerald\nIsrael\nEmmanuel\nDevin\nLee\nMitchell\nGeoffrey\nIsmael\nBrendan\nClinton\nLeonard\nAndy\nMaurice\nRogelio\nSaul\nAlfred\nBilly\nFelipe\nGilberto\nEugene\nGrant\nRandall\nEsteban\nJay\nMicheal\nRalph\nBruce\nWayne\nMoises\nBret\nTerry\nTommy\nCaleb\nJerome\nSpencer\nRay\nClayton\nRigoberto\nJamie\nNeil\nWillie\nGlenn\nRonnie\nMorgan\nCalvin\nMarvin\nTaylor\nMicah\nTheodore\nRamiro\nDamien\nNoe\nDarrell\nFrederick\nLorenzo\nOrlando\nTyrone\nRodrigo\nNoel\nBranden\nClifford\nFelix\nKelly\nElias\nFabian\nJarrod\nJermaine\nJosue\nLeonardo\nDiego\nRoss\nKurt\nDale\nJoey\nStanley\nEthan\nAlvaro\nReginald\nAlvin\nDean\nLevi\nVicente\nAlexis\nDarryl\nDrew\nDylan\nIgnacio\nRolando\nLogan\nRory\nSantiago\nBrad\nJoaquin\nMelvin\nBryce\nCristian\nAgustin\nHumberto\nMauricio\nAdan\nNelson\nGuadalupe\nJake\nKarl\nRoman\nElijah\nHarold\nTristan\nAngelo\nBeau\nFranklin\nMike\nTomas\nDamian\nRick\nMax\nTyson\nDon\nLeo\nMarshall\nSimon\nByron\nOliver\nBarry\nDaryl\nKirk\nMarlon\nWarren\nEfrain\nFrancis\nFreddy\nJayson\nChase\nCole\nDante\nKellen\nNickolas\nTerrence\nAdolfo\nEmilio\nLouie\nNolan\nOctavio\nRocky\nIsaiah\nDamon\nDwayne\nLeon\nPreston\nAllan\nMiles\nJamal\nBryant\nDevon\nEmanuel\nHoward\nKenny\nLoren\nRobin\nFreddie\nAldo\nClint\nMoses\nNorman\nEli\nGavin\nGordon\nJeff\nLeonel\nDuane\nGlen\nJamaal\nChris\nElliott\nGregorio\nXavier\nAntoine\nJim\nKent\nLloyd\nDana\nEfren\nFred\nGonzalo\nTerrance\nDario\nEarl\nOsvaldo\nBradford\nFrankie\nGraham\nReynaldo\nStuart\nVernon\nForrest\nCharlie\nDeandre\nHeriberto\nLeroy\nRickey\nSebastian\nCedric\nClifton\nCollin\nFidel\nGiovanni\nJohnnie\nKristofer\nMaria\nShannon\nTerrell\nArnold\nBernard\nElliot\nJess\nLamar\nBen\nErnie\nGerman\nIsidro\nJamar\nJohnathon\nRoland\nHerman\nLonnie\nNathanael\nNeal\nSantos\nAli\nAriel\nPierre\nStephan\nAlonzo\nBenny\nBernardo\nJackson\nJimmie\nJosiah\nNick\nBenito\nDan\nJarod\nLeslie\nMilton\nAron\nAshley\nBill\nDarnell\nEzequiel\nRandolph\nDwight\nHans\nHarry\nPete\nRaymundo\nTed\nClarence\nFredrick\nGreg\nTom\nColby\nEverett\nGenaro\nGene\nHerbert\nKelvin\nLandon\nLewis\nRoderick\nRon\nSonny\nTy\nUriel\nEstevan\nGuy\nHuy\nKristian\nSam\nWilson\nCristobal\nDemetrius\nDonovan\nJoseluis\nLester\nWade\nZachariah\nAlonso\nAmir\nClark\nFederico\nJarrett\nMarcelino\nMarquis\nTrenton\nAurelio\nDallas\nHeath\nJasen\nMarques\nMaxwell\nNestor\nCruz\nEliseo\nErich\nKurtis\nLong\nSolomon\nCarlo\nDarin\nEverardo\nJovan\nJulius\nCourtney\nDeon\nEdmund\nErin\nHung\nJairo\nTracy\nTuan\nBrady\nBrenton\nChester\nDane\nEdwardo\nFloyd\nGerard\nJan\nMason\nReuben\nRudolph\nSammy\nStefan\nStewart\nAnton\nBrain\nBrenden\nDerick\nDesmond\nEder\nGino\nKory\nLamont\nLeopoldo\nOswaldo\nReed\nTerence\nToby\nBryon\nConor\nConrad\nDomingo\nDonte\nDorian\nKristoffer\nLionel\nMarcel\nMariano\nOwen\nPerry\nRex\nGorge\nMigel\nQuincy\nRobbie\nVirgil\nBradly\nDavis\nDominick\nJerad\nJonah\nKeenan\nKerry\nMauro\nValentin\nAlec\nDenny\nDonnie\nElvis\nIsaias\nJackie\nJohnson\nMinh\nQuinn\nRoyce\nViet\nAri\nBrendon\nDarius\nGarret\nHilario\nHoracio\nJessica\nLeif\nNicholaus\nPaulo\nSterling\nTrent\nZane\nAlexandro\nArnulfo\nBlaine\nDarrin\nLeland\nNikolas\nNorberto\nParker\nRaphael\nReyes\nRusty\nSkyler\nTim\nUlysses\nWyatt\nAbram\nAhmad\nArnoldo\nBrooks\nCecil\nClay\nDewayne\nDion\nGarry\nJarred\nJerrod\nJohnpaul\nJuancarlos\nMohammad\nMyles\nOsbaldo\nOtis\nRosendo\nTrinidad\nWeston\nAhmed\nAugustine\nCary\nDave\nDonny\nEloy\nErwin\nFausto\nFlavio\nFransisco\nHarrison\nHunter\nIssac\nJerardo\nJorje\nKen\nMalcolm\nMarcelo\nRashad\nReymundo\nUlises\nWilfredo\nAmado\nBarrett\nClyde\nDanilo\nDillon\nEddy\nEdgardo\nElmer\nEzra\nHarley\nJunior\nLuciano\nScotty\nTanner\nVidal\nVincente\nAntwan\nArchie\nBlair\nBraden\nCarson\nDaren\nJean\nJerod\nJosef\nMargarito\nNathanial\nQuentin\nReggie\nRey\nRojelio\nRussel\nSidney\nThanh\nVanessa\nZackary\nAnibal\nCarlton\nChaz\nDanial\nDuncan\nEmiliano\nEzekiel\nJerald\nJody\nLazaro\nLiam\nLyle\nMarkus\nMyron\nRamsey\nRandal\nRobby\nSandra\nSylvester\nAmit\nArash\nCuong\nDominique\nDonnell\nDusty\nEdmond\nEriberto\nFiliberto\nGalen\nJennifer\nJonas\nKasey\nKeegan\nKeven\nMohammed\nReid\nRommel\nSamir\nTobias\nAlton\nAvery\nCeasar\nColt\nCyrus\nDamion\nDarrel\nDexter\nEarnest\nEdmundo\nEugenio\nJamison\nJedidiah\nJeramy\nLaura\nLaurence\nLenny\nMarty\nNam\nRico\nSalvatore\nSheldon\nTeddy\nTory\nVito\nAndreas\nAntony\nArmand\nArmen\nArron\nBennett\nBrandan\nCristopher\nDarwin\nDavon\nDemetrio\nDung\nFermin\nFlorencio\nHubert\nIra\nKareem\nKenji\nKim\nKris\nLauren\nMarion\nMichelle\nMiguelangel\nSarah\nShant\nVu\nWendell\nAdalberto\nAnselmo\nAsa\nBaltazar\nBrice\nBrock\nChance\nCliff\nColton\nDuy\nEdson\nElisha\nElizabeth\nEsequiel\nFaustino\nGarett\nGregg\nHarvey\nHugh\nJaron\nJered\nJosh\nKai\nKendall\nKiel\nLincoln\nLucio\nMelissa\nMikel\nOrion\nPhong\nQuoc\nRefugio\nRomeo\nScot\nShayne\nShea\nSkylar\nTou\nTravon\nTyrell\nValentino\nAbran\nBrennan\nBruno\nBuck\nCecilio\nCheyne\nChristoper\nDavin\nDereck\nDontae\nGarrick\nGarth\nHoang\nJabari\nJameson\nJamin\nJefferey\nJoesph\nJohathan\nKendrick\nLeobardo\nLindsey\nLino\nLuther\nMarcial\nMichel\nMitchel\nParis\nPorfirio\nQuang\nRenee\nRhett\nRiley\nSamson\nSkye\nVeronica\nWallace\nWilbert\nAbelardo\nAdrien\nAmanda\nAram\nAric\nAugust\nBee\nClaudio\nConnor\nCornelius\nDandre\nDaron\nDiana\nElvin\nErvin\nEvelyn\nForest\nFredy\nIshmael\nJacques\nJamil\nJarad\nJed\nJeremey\nJeromy\nJessy\nJusten\nMarkanthony\nMartel\nMartell\nMicahel\nMohamed\nMonica\nMorris\nNancy\nNigel\nNima\nOtto\nPascual\nPatricio\nRoque\nShelby\nSherman\nSky\nSon\nTaurean\nUriah\nVance\nVaughn\nVince\nWhitney\nWillis\nWinston\nAnderson\nAnthoney\nAshton\nBrannon\nBuddy\nChristina\nClaude\nClaudia\nColeman\nCurt\nDerik\nDeshawn\nDino\nEmmett\nFeliciano\nGareth\nGian\nGiancarlo\nHassan\nJasper\nJefferson\nJordon\nJovany\nJuvenal\nKaleb\nKalen\nKao\nLuiz\nMonte\nPrince\nQuintin\nQuinton\nRodger\nSandro\nSantino\nSilvestre\nTam\nTeodoro\nThaddeus\nThang\nTimmy\nTrever\nVinh\nWill\nAdonis\nAl\nAlain\nApollo\nBennie\nBrandyn\nBritton\nBryson\nCarter\nChadwick\nCooper\nDajuan\nDang\nDarron\nDat\nEleazar\nEmerson\nErrol\nFlorentino\nFranco\nGarland\nGerry\nGil\nHernan\nHoa\nIvory\nJacobo\nJeanpaul\nJensen\nJeramie\nKennith\nKenton\nKhalid\nLindsay\nMarcell\nMichale\nMickey\nPatricia\nRaffi\nRenato\nRian\nRonny\nRosa\nRosario\nTan\nTitus\nTyron\nAdriana\nAlejandra\nAmador\nAmos\nAntwon\nArt\nArtemio\nBart\nBernabe\nBjorn\nBo\nBob\nBrandt\nCain\nCedrick\nClemente\nDalton\nDejuan\nDelbert\nDevan\nDimitri\nDirk\nEliot\nEmil\nErasmo\nGerson\nHayden\nIbrahim\nImran\nJavon\nJedediah\nJerimiah\nJessi\nJudson\nJuventino\nKelsey\nKenyon\nKeyon\nLamarr\nLars\nLavelle\nLeigh\nLupe\nMack\nMarcello\nMarko\nMatt\nMegan\nMilan\nMonty\nMuhammad\nNapoleon\nNehemiah\nNikolaus\nNiles\nPhilippe\nPhu\nRaudel\nRichardo\nRosalio\nRueben\nSabino\nSameer\nSanjay\nSeng\nStevie\nTien\nTino\nTito\nToan\nTyree\nTyrel\nVan\nWestley\nZackery\nAbdul\nAdriel\nAn\nAngela\nAngelica\nAnh\nAntone\nAnwar\nAubrey\nBaldemar\nBinh\nCaesar\nCale\nCarey\nChadd\nChauncey\nCornell\nDagoberto\nDelfino\nDeron\nDerrell\nDionicio\nDonavan\nDuc\nEdgard\nElbert\nElson\nEnrigue\nErica\nFavian\nFidencio\nGamaliel\nGeronimo\nGrayson\nHarlan\nHomero\nIrvin\nIrving\nJakob\nJayme\nJeffry\nJelani\nJeremie\nJerrold\nJohan\nJohann\nJohannes\nJoseantonio\nJosemanuel\nJules\nKatherine\nKc\nKevan\nKristofor\nLauro\nLemar\nLemuel\nLevon\nLoc\nLuisalberto\nMarin\nMisael\nMohamad\nNed\nNicky\nNicole\nOmid\nPhuc\nRachel\nRandell\nRasheed\nRavi\nRaymon\nRegino\nRemy\nRudolfo\nSalomon\nSasha\nSchuyler\nSerjio\nSharif\nSilas\nTai\nTommie\nWes\nWilfred\nAbrahan\nAlden\nAsher\nAvi\nAxel\nBasilio\nBaudelio\nBlas\nBrant\nBraulio\nBrook\nCamilo\nCandelario\nCandido\nCarmelo\nChasen\nChristofer\nChung\nCirilo\nCrystal\nDarrick\nDaryn\nDemarcus\nDenis\nDeric\nDeshon\nEan\nEliazar\nEllis\nElton\nEly\nEmile\nEmily\nEnrico\nEphraim\nEran\nFletcher\nFortino\nGerrit\nGideon\nGildardo\nGreggory\nHagop\nHai\nHasan\nHieu\nJace\nJarvis\nJeramiah\nJevon\nJob\nJohnmichael\nJoshuah\nJospeh\nJusto\nJustyn\nKane\nKaren\nKhalil\nKhanh\nKieran\nKip\nLaron\nLavell\nLeandro\nLenard\nLonny\nLorin\nMacario\nMalik\nMarquise\nMartha\nMatias\nMaximino\nNathen\nNatividad\nNicanor\nNickolaus\nNorbert\nOmari\nOren\nPheng\nRamin\nRaoul\nRebecca\nRocco\nRoosevelt\nSerafin\nSilvano\nStacy\nStephanie\nTrung\nTye\nValentine\nVijay\nWilbur\nWillard\nYsidro\nAbdullah\nAjay\nAlegandro\nAlessandro\nAlicia\nAlphonso\nAndrae\nAndree\nAndrei\nApolinar\nArik\nArmondo\nAugustin\nBao\nBarney\nBarret\nBarton\nBasil\nBenedict\nBijan\nBillie\nBj\nBlanca\nBoris\nBoyd\nCarmen\nChandler\nChet\nChristophe\nCorbin\nCortney\nCristina\nDameon\nDaneil\nDashawn\nDaven\nDelvon\nDemetri\nDomenic\nDominik\nDoyle\nEden\nEladio\nEliezer\nEmery\nEnedino\nErika\nEsau\nGavino\nGerad\nGermain\nGianni\nGrady\nHarout\nHarris\nHerminio\nHipolito\nHong\nHouston\nIsacc\nIsreal\nJacinto\nJame\nJamieson\nJarett\nJerel\nJereme\nJerrad\nJorel\nJory\nJuanluis\nJude\nJustine\nKarina\nKelley\nKeon\nKong\nKorey\nKristin\nLafayette\nLam\nLane\nLucien\nLukas\nLuz\nMalachi\nMateo\nMayra\nMilo\nMin\nMing\nModesto\nMychal\nNabil\nNguyen\nObed\nOtoniel\nPaolo\nPascal\nPercy\nPhuong\nRafeal\nRakesh\nRami\nRashaad\nRashid\nReza\nRickie\nRito\nRodrick\nRolland\nRomel\nRoscoe\nRuss\nRyann\nRyon\nSaman\nSandy\nSarkis\nScottie\nServando\nShad\nShay\nSherwin\nSigifredo\nSione\nStephon\nSunil\nThai\nToney\nTucker\nUbaldo\nValente\nVartan\nVicent\nVictoriano\nVishal\nWesly\nYancy\nYesenia\nZachery\nAbner\nAlbaro\nAlexandre\nAllyn\nAmeer\nAna\nAnand\nAnil\nAnson\nAntonia\nAntonie\nArman\nAusten\nBelen\nBenigno\nBenson\nBenton\nBernardino\nBrenda\nBronson\nByran\nCamron\nCarla\nCassidy\nChistopher\nChong\nChristoher\nChuck\nClement\nCosme\nCoy\nCrispin\nCynthia\nDabid\nDarian\nDawayne\nDeanthony\nDenver\nDeonte\nDerrek\nDerrik\nDeshaun\nDominque\nDong\nDoron\nDuke\nDuong\nDwain\nElan\nEldridge\nEliasar\nEnoch\nEusebio\nFarid\nFerdinand\nFranklyn\nFranky\nFransico\nFredi\nGabriela\nGaro\nGiuseppe\nGriffin\nGualberto\nHan\nHarpreet\nHomar\nHorace\nIsiah\nJacque\nJade\nJameel\nJamel\nJanet\nJaret\nJarrad\nJarrell\nJarret\nJasson\nJaysen\nJeanpierre\nJermiah\nJerrell\nJin\nJoan\nJonatha\nJonmichael\nJonpaul\nJuanmanuel\nJudah\nJuston\nKalvin\nKameron\nKarim\nKarlos\nKellan\nKennth\nKenyatta\nKerwin\nKhaled\nKhoi\nKhristopher\nKimberly\nKou\nKraig\nLeighton\nLeonidas\nLeticia\nLisandro\nLorena\nLyndon\nMaribel\nMarkel\nMarlo\nMaurilio\nMerlin\nMichele\nMikael\nMitch\nNader\nNarciso\nNghia\nNikolai\nNorma\nNorris\nOdell\nOmero\nOrville\nPhil\nPilar\nQuy\nRaheem\nRaman\nRamil\nRaynard\nReece\nReinaldo\nRishi\nRoel\nRohit\nSal\nSamer\nSami\nSanford\nSatoshi\nSeamus\nSemaj\nSesar\nShandon\nShelton\nShiloh\nShon\nSmith\nSundeep\nSyed\nTaj\nTaran\nTariq\nTeresa\nThong\nTimmothy\nTin\nTorey\nTorrey\nTrayvon\nTremayne\nTrevon\nTu\nVa\nVang\nWalker\nWaylon\nWilmer\nWm\nYoshio\nYoung\nYuji\nAdrain\nAgustine\nAidan\nAlexei\nAlma\nAlverto\nAmbrose\nAndrey\nAngus\nAntione\nAntonino\nAraceli\nArian\nArie\nAristeo\nArlen\nArmond\nArnie\nArthuro\nArun\nArya\nAureliano\nAvraham\nBabak\nBaby\nBaldomero\nBaron\nBarron\nBenjamen\nBernie\nBradlee\nBrien\nBroderick\nBud\nBulmaro\nCalixto\nCarlin\nCelso\nCharley\nCharlton\nChe\nChristos\nCleveland\nConan\nConnie\nConrado\nConstantine\nCuauhtemoc\nCullen\nCustodio\nCyril\nDakota\nDamen\nDani\nDanielle\nDarell\nDashiell\nDax\nDeangelo\nDelano\nDemario\nDijon\nDimitrios\nDomonic\nDonell\nDonta\nDoran\nDouglass\nDuran\nEctor\nEdilberto\nEdison\nEfrem\nEhren\nElio\nEllery\nElon\nEsmeralda\nEstanislao\nEver\nFong\nFoster\nGabino\nGardner\nGarren\nGaspar\nGaston\nGeary\nGeoffery\nGeraldo\nGermaine\nGerrad\nGloria\nGriselda\nGustabo\nHabib\nHakim\nHamed\nHerberth\nHermes\nHiram\nHisham\nIain\nIran\nIsac\nJacory\nJacqueline\nJahi\nJajuan\nJamall\nJamarr\nJanson\nJenaro\nJeoffrey\nJerame\nJermel\nJeronimo\nJerred\nJerrid\nJerron\nJomar\nJonathen\nJosha\nJourdan\nJovon\nJoy\nJr\nJulia\nKahlil\nKamran\nKha\nKhoa\nKin\nKipp\nKristen\nLaquan\nLayne\nLayton\nLeandre\nLinh\nLowell\nLoyd\nLucky\nMahmoud\nMan\nManny\nManpreet\nMarcoantonio\nMarlin\nMarshal\nMarta\nMary\nMaximo\nMeng\nMervin\nMichal\nMikal\nMillard\nMiquel\nMontgomery\nMoshe\nMurray\nMustafa\nMy\nNash\nNathaneal\nNeftali\nNhan\nNicholos\nNikola\nNils\nNino\nNolberto\nOnesimo\nOracio\nOsualdo\nOtilio\nOzzie\nPaulmichael\nPedram\nPhi\nQuan\nRamses\nRamy\nRashawn\nRaymund\nRegan\nRicard\nRichie\nRj\nRob\nRodel\nRufus\nRustin\nRyen\nRylan\nSage\nSammuel\nSan\nSandeep\nSantana\nSara\nShamar\nSharon\nSher\nSimeon\nSixto\nSkip\nSol\nStevan\nSun\nSunny\nSusana\nTamer\nTarek\nTarik\nTerance\nTerrill\nThao\nTheron\nThor\nThuan\nTobin\nTorin\nTraveon\nTremaine\nTri\nTriston\nTylor\nTynan\nVladimir\nWayland\nWilhelm\nYair\nZion\nMichael\nChristopher\nDavid\nDaniel\nMatthew\nRobert\nJason\nRyan\nJoshua\nJoseph\nJames\nJohn\nJose\nBrian\nAndrew\nAnthony\nJonathan\nJustin\nEric\nNicholas\nSteven\nRichard\nBrandon\nWilliam\nAdam\nKevin\nJeffrey\nJuan\nAaron\nSean\nThomas\nTimothy\nMark\nPaul\nKyle\nBenjamin\nScott\nJeremy\nJesse\nCarlos\nTravis\nJacob\nPatrick\nLuis\nStephen\nCharles\nJesus\nGregory\nBryan\nKenneth\nMiguel\nNathan\nGabriel\nVictor\nAlexander\nManuel\nRicardo\nEdward\nJorge\nDustin\nFrancisco\nPeter\nSamuel\nAlejandro\nMario\nRaymond\nErik\nDerek\nAntonio\nAdrian\nJoel\nRuben\nChristian\nRoberto\nTyler\nOscar\nFrank\nIan\nZachary\nJared\nJavier\nGeorge\nRonald\nSergio\nFernando\nVincent\nDonald\nMarcus\nJaime\nHector\nShawn\nPhillip\nRaul\nChad\nMartin\nJordan\nEvan\nKeith\nArmando\nEduardo\nBradley\nGary\nCesar\nEdgar\nBrett\nAngel\nAlberto\nDanny\nDouglas\nJohnny\nPhilip\nSalvador\nGerardo\nAlex\nHenry\nArturo\nRafael\nNathaniel\nTony\nDennis\nOmar\nPedro\nRene\nRamon\nAlbert\nCasey\nAndres\nAlan\nShane\nRandy\nArthur\nEnrique\nErnesto\nIvan\nJimmy\nTrevor\nJeremiah\nTodd\nSteve\nCraig\nAlfredo\nCory\nJoe\nJeffery\nShaun\nMarco\nGarrett\nIsaac\nRussell\nJerry\nLarry\nCody\nBrent\nBlake\nAndre\nCameron\nWesley\nJulio\nDevin\nMarc\nLuke\nAustin\nGilbert\nBobby\nLawrence\nMathew\nCurtis\nCorey\nKristopher\nJack\nDerrick\nAllen\nErick\nLouis\nTroy\nDarren\nCarl\nMarcos\nGustavo\nRicky\nNicolas\nRoger\nSeth\nEddie\nEdwin\nGrant\nRodolfo\nNoah\nGuillermo\nJulian\nAlfonso\nRudy\nAbraham\nWalter\nJohnathan\nAbel\nRandall\nDominic\nFelipe\nIsrael\nJessie\nMicheal\nLance\nJon\nColin\nEmmanuel\nLee\nLucas\nNeil\nAndy\nSaul\nIsmael\nPablo\nErnest\nHugo\nRoy\nBrendan\nBilly\nChase\nGeoffrey\nTerry\nDrew\nLeonard\nMitchell\nSpencer\nJonathon\nWayne\nMoises\nRolando\nGilberto\nJay\nMarvin\nEugene\nGerald\nTaylor\nClayton\nOrlando\nRogelio\nMaurice\nAlfred\nClinton\nRamiro\nRodney\nEsteban\nFrederick\nTheodore\nCaleb\nDiego\nRalph\nJosue\nLorenzo\nRigoberto\nDylan\nMicah\nIgnacio\nBruce\nDarrell\nJerome\nWillie\nCole\nBranden\nElias\nGlenn\nBryce\nJamie\nNelson\nMorgan\nTommy\nCalvin\nRonnie\nKelly\nTyrone\nFabian\nRodrigo\nDamian\nDamien\nEfrain\nJermaine\nByron\nJarrod\nTristan\nDane\nVicente\nHumberto\nJoaquin\nAlvaro\nKarl\nReginald\nRoman\nDean\nLogan\nAngelo\nClifford\nDarryl\nKenny\nWarren\nAlexis\nJake\nRay\nAdan\nDale\nFelix\nCristian\nElliott\nGuadalupe\nMax\nNoel\nOliver\nStanley\nKurt\nTomas\nEthan\nFrancis\nNickolas\nRoss\nAllan\nBrad\nElijah\nNoe\nSantiago\nAgustin\nIsaiah\nMoses\nMarshall\nElliot\nFred\nSimon\nLeonardo\nRory\nEmanuel\nHoward\nChris\nDaryl\nJoey\nRobin\nDamon\nLevi\nMauricio\nMike\nOsvaldo\nAlvin\nBarry\nCollin\nFreddy\nTyson\nGavin\nHarold\nKirk\nAshley\nDevon\nLoren\nDon\nDwayne\nEarl\nBryant\nLeon\nMelvin\nRick\nEli\nRoland\nKellen\nMarlon\nJim\nStephan\nBeau\nGiovanni\nNorman\nPreston\nStuart\nNolan\nTerrance\nBret\nDan\nGerman\nRocky\nClarence\nEmilio\nOctavio\nTerrence\nXavier\nAdolfo\nJamaal\nSam\nGlen\nLamar\nLeonel\nEfren\nNeal\nVernon\nDeandre\nHerbert\nJosiah\nMiles\nFranklin\nKent\nLouie\nTerrell\nClint\nColby\nGonzalo\nHarry\nJayson\nJeff\nPierre\nSantos\nBernard\nCharlie\nDana\nDante\nDarnell\nRaymundo\nReynaldo\nAli\nDerick\nFreddie\nJackson\nJamal\nLeo\nAlonzo\nFrankie\nGordon\nGraham\nJohnathon\nJulius\nAmir\nLandon\nRickey\nErnie\nLloyd\nShannon\nAurelio\nFidel\nGene\nKristofer\nAntoine\nBill\nHerman\nAriel\nCarlo\nKelvin\nLewis\nMarcel\nBernardo\nDario\nDonte\nIsidro\nJess\nKurtis\nTom\nWilson\nAron\nFederico\nGuy\nAldo\nAlexandro\nBen\nBenito\nClifton\nDemetrius\nDwight\nEstevan\nGreg\nHeath\nPete\nZachariah\nDonovan\nDuane\nJameson\nLonnie\nMarquis\nPerry\nRandolph\nWade\nArnold\nBenny\nBradford\nDarrin\nGregorio\nHeriberto\nJarred\nReuben\nRudolph\nSonny\nUriel\nMarques\nRoderick\nValentin\nBarrett\nConrad\nIsaias\nLionel\nMariano\nSammy\nBrady\nDallas\nDorian\nEverett\nForrest\nGarret\nGenaro\nLeopoldo\nMaria\nMaxwell\nMilton\nSebastian\nCourtney\nFredrick\nKory\nLester\nOwen\nDominique\nJoseluis\nKiel\nLeslie\nLong\nWeston\nBrendon\nCedric\nCristobal\nEdwardo\nEzequiel\nHuy\nNathanael\nBlair\nCristopher\nDarin\nEliseo\nJohnson\nJonah\nLyle\nSheldon\nTed\nBryon\nCarson\nConor\nCruz\nEriberto\nErin\nEverardo\nGerard\nMohammad\nNick\nTracy\nTrent\nDenny\nIssac\nJairo\nJamar\nJennifer\nJohnnie\nLeroy\nLuciano\nLucio\nMinh\nOsbaldo\nQuincy\nRashad\nSolomon\nUlysses\nVan\nAnton\nBrain\nClark\nDion\nElmer\nElvis\nHarrison\nJarrett\nJuancarlos\nNestor\nSkyler\nTerence\nTou\nAlonso\nAnibal\nDillon\nEdmund\nJean\nJerrod\nJimmie\nKristian\nArron\nBrenton\nConnor\nDavis\nDesmond\nDonnie\nElizabeth\nFermin\nJan\nMarcelino\nNikolas\nParker\nReed\nTanner\nTuan\nVinh\nArnulfo\nBrock\nCarey\nDarius\nDave\nDominick\nHoracio\nJarod\nJerardo\nJessica\nJonas\nJovan\nMason\nMigel\nMohammed\nMyron\nRefugio\nSterling\nToby\nWilfredo\nAbram\nEder\nEdgardo\nErich\nJamil\nKen\nRex\nRiley\nTravon\nTy\nUlises\nZachery\nCecil\nClay\nDaren\nDomingo\nEzekiel\nHans\nJasper\nJeffry\nJerad\nJody\nLeland\nTobias\nTrenton\nVirgil\nAri\nBrenden\nBrennan\nErwin\nGino\nGorge\nHarley\nHunter\nKristoffer\nLaurence\nOswaldo\nQuentin\nRoyce\nAmit\nArnoldo\nBrice\nCary\nCassidy\nCheyne\nClyde\nDavon\nDino\nHugh\nHung\nJusten\nKareem\nPascual\nRenato\nRon\nRusty\nWill\nAdalberto\nAhmad\nChester\nDeshawn\nEliot\nKao\nKeenan\nLiam\nMyles\nStewart\nTrinidad\nWyatt\nZackary\nAlec\nAntony\nAugustine\nChadwick\nColt\nCyrus\nDewayne\nFausto\nFloyd\nGarry\nHarvey\nJeramy\nJorje\nJosh\nKasey\nNicholaus\nPhong\nRaphael\nRemington\nRojelio\nRosendo\nSalomon\nSidney\nThanh\nTrung\nVanessa\nAbdul\nAlejandra\nArmand\nBrooks\nCornelius\nDeon\nDonny\nErasmo\nGalen\nIra\nKai\nKerry\nLamont\nLars\nMelissa\nRandal\nStefan\nTeddy\nVidal\nAhmed\nChance\nChasen\nChaz\nDonnell\nFiliberto\nJasen\nJedediah\nJoesph\nJunior\nKim\nLino\nMarcelo\nMargarito\nMonte\nNathanial\nNigel\nPaulo\nReid\nReyes\nRueben\nStacy\nToan\nVance\nViet\nWinston\nAl\nBradly\nCuong\nHilario\nJamin\nJarret\nJefferey\nJerald\nJerod\nJohathan\nKendall\nMaximilian\nMichel\nOtis\nQuinn\nRonny\nSerjio\nShelby\nSherman\nSky\nTremaine\nWallace\nZackery\nAbran\nAubrey\nBrant\nCliff\nDagoberto\nDeven\nDirk\nDuncan\nFong\nGiancarlo\nHoang\nJabari\nJacinto\nJamel\nJamison\nJashua\nJed\nLuiz\nMack\nMarkus\nMiguelangel\nMorris\nNam\nNorberto\nOrion\nPaolo\nRasheed\nReggie\nRico\nRodger\nSon\nThai\nTyree\nTyron\nWilbert\nWillis\nAlfonzo\nAmos\nAntwan\nBaby\nBlaine\nDanilo\nDarrel\nDelbert\nDevan\nDonato\nEddy\nEdmond\nEdmundo\nEmiliano\nFransisco\nFredy\nHassan\nJackie\nJohnpaul\nJordon\nJosef\nKaleb\nKong\nMarty\nMayra\nNikolaus\nPorfirio\nPrince\nRey\nRichardo\nRobbie\nRosalio\nSarah\nStephanie\nTaurean\nTim\nWhitney\nAjay\nBob\nBraden\nBrandan\nBritton\nBruno\nChristina\nChristoper\nDanial\nDejon\nDejuan\nDemetrio\nDexter\nDrake\nEllis\nEloy\nEmil\nEzra\nGil\nGregg\nGriffin\nIbrahim\nIrving\nJedidiah\nJeramie\nJuventino\nKeegan\nKorey\nKris\nLaron\nLeif\nMalcolm\nMalik\nMartell\nMeng\nRommel\nTai\nThaddeus\nWendell\nAbdullah\nAlton\nAmado\nAmeer\nAna\nAndreas\nAric\nArmen\nBao\nBuddy\nCaesar\nCedrick\nChristoher\nClemente\nDavin\nDerik\nDimitri\nDonta\nDontae\nDung\nDusty\nElisha\nEmmett\nEugenio\nForest\nHai\nIrvin\nJaron\nJensen\nJeremie\nJevon\nJonpaul\nKenton\nKevan\nKeven\nLazaro\nLincoln\nLukas\nLuther\nMarcello\nMarkanthony\nMarlo\nMikel\nMonica\nPatricio\nRenee\nReymundo\nRickie\nRosa\nSami\nSamson\nScotty\nShant\nSkylar\nValentino\nVince\nVincente\nVito\nVu\nAbelardo\nAbner\nAdriel\nAgustine\nAmador\nAn\nArtemio\nBee\nBryson\nCamilo\nCandelario\nCarlton\nCeasar\nCharley\nClaudio\nColeman\nDamion\nDandre\nDarrick\nDelfino\nEdgard\nEly\nEmerson\nEnrigue\nGabino\nGarrick\nGildardo\nGreggory\nHank\nHiram\nJacques\nJeremey\nJerred\nKameron\nLamarr\nLauren\nLowell\nMalachi\nMatt\nMichelle\nMisael\nMuhammad\nNancy\nOren\nPao\nParis\nRamsey\nRhett\nRobby\nRomeo\nSalvatore\nSantino\nServando\nShea\nTommie\nTyrel\nTyrell\nUbaldo\nVicent\nWestley\nAnand\nAnastacio\nAntione\nArash\nAsher\nAvery\nBenedict\nBennie\nBoris\nBrandin\nBuck\nCale\nCarter\nChe\nCheng\nColton\nCornelio\nCynthia\nDalton\nDenis\nDevlin\nEarnest\nElan\nErika\nEsequiel\nFlavio\nFranco\nGabriela\nGiovani\nHeather\nJameel\nJarvis\nJered\nJessy\nJohann\nKhoa\nKirby\nLevon\nLindsay\nLupe\nMarcell\nMickey\nMohamed\nMonty\nOrrin\nPhilippe\nQuang\nRandell\nRaudel\nRigo\nRocio\nSameer\nSandra\nShayne\nSherwin\nSunny\nSylvester\nTitus\nVaughn\nVeronica\nWaylon\nYeng\nZane\nAdriana\nAkeem\nAlbaro\nAlphonso\nAmanda\nAndrea\nAnh\nAra\nArlen\nArt\nAsa\nBaltazar\nBarney\nBaron\nBenson\nBijan\nBo\nBrannon\nBraulio\nBud\nChauncey\nChuck\nClaude\nCooper\nCrystal\nDajuan\nDaron\nDemarcus\nDereck\nDerreck\nDerrell\nDiana\nDonavan\nDontay\nDuke\nEleazar\nElvin\nErica\nErrol\nEvelyn\nFrancesco\nGarett\nGeovanni\nGillermo\nHernan\nIlan\nIsacc\nIsai\nJacqueline\nJarad\nJefferson\nJerel\nJerrad\nJovani\nJovany\nJustine\nKalen\nKelley\nKeon\nKody\nKou\nKunal\nLam\nLaura\nLavelle\nLindsey\nMarcellus\nMarisol\nMateo\nMauro\nMaximo\nMegan\nMelchor\nMitchel\nMoshe\nMy\nNickolaus\nNicolaus\nNicole\nNorma\nOmari\nQuoc\nReinaldo\nRodrick\nRoel\nRosario\nSampson\nSandy\nSang\nScot\nSilas\nSimeon\nSione\nStevan\nTan\nThien\nTory\nTrever\nVang\nWalker\nWilfred\nZechariah\nAdolph\nBenigno\nBenjamen\nBurton\nCarmelo\nCarnell\nCecilio\nChandler\nCheyenne\nChristen\nChue\nCindy\nCortney\nDaisy\nDao\nDarwin\nDat\nDeangelo\nDemond\nDeshaun\nDuc\nDuy\nEberardo\nElton\nEusebio\nFaisal\nFeliciano\nFidencio\nFransico\nFrederic\nGarth\nGeronimo\nGerson\nGrady\nHamilton\nHayden\nHoa\nIshmael\nJade\nJakob\nJasson\nJayme\nJeromy\nJohnmichael\nJohny\nJory\nJuston\nKamal\nKarina\nKaveh\nKenji\nKristen\nLane\nLiliana\nLinda\nLon\nLusiano\nManolo\nMaribel\nMilo\nMing\nNarciso\nNatan\nNeftali\nNicholes\nOmid\nOswald\nOtto\nPhu\nRamses\nRishi\nRobinson\nRoque\nSara\nSchuyler\nSeng\nSigifredo\nSilverio\nSkye\nStevie\nTam\nTeodoro\nTheron\nTien\nTong\nTrevon\nTruong\nTucker\nTung\nYing\nYousef\nAdrain\nAdrien\nAlain\nAlden\nAlvino\nAmar\nAndrez\nAnival\nAntone\nAntonino\nAntwon\nApolinar\nAram\nArchie\nArik\nArmondo\nAugust\nAureliano\nBjorn\nBlas\nBoyd\nBradlee\nBrandyn\nCandido\nCher\nChristophe\nCirilo\nClaudia\nConrado\nCris\nCurt\nCy\nDameon\nDarell\nDarris\nDayne\nDenver\nDeric\nDesean\nDewey\nDomenic\nDoran\nDwain\nEctor\nEladio\nErvin\nEsteven\nFaustino\nFavian\nFlorentino\nGeovanny\nGerad\nHakop\nHenri\nHieu\nIvory\nJanet\nJaren\nJeramiah\nJerimiah\nJob\nJohan\nJossue\nJuanmiguel\nKalvin\nKamran\nKennith\nKhaled\nKing\nKlayton\nKraig\nLazarus\nLeobardo\nLorne\nMacario\nMarquise\nMartha\nMary\nMathieu\nMattew\nMicahel\nNader\nNai\nNguyen\nNicky\nOdell\nPatricia\nQuinton\nRajesh\nRashawn\nRashid\nRemy\nRic\nRio\nRonell\nRufus\nSabino\nSai\nSal\nSalbador\nSamer\nSamir\nSarkis\nSerafin\nShamar\nShay\nStan\nSyed\nTariq\nTeng\nThao\nTj\nToua\nTri\nUlisses\nValente\nWes\nAbdon\nAbrahan\nAdel\nAdonis\nAlexandre\nAmandeep\nAmber\nAndrae\nAngela\nAnselmo\nAnson\nAntwone\nAnwar\nAraceli\nArnel\nAvraham\nAxel\nBarret\nBart\nBasil\nBennett\nBernabe\nBernardino\nBernie\nBert\nBlong\nBrandt\nBrien\nBrook\nBurke\nCanaan\nCarmen\nCesario\nChace\nChao\nChi\nChong\nChristofer\nChristpher\nCleveland\nColter\nCorbin\nCornell\nCorry\nCosme\nCuauhtemoc\nDaivd\nDaneil\nDanielle\nDanniel\nDaryn\nDashiell\nDe\nDenise\nDeshon\nDick\nDonell\nDoug\nDuong\nEamonn\nEd\nEdison\nEhren\nEitan\nElbert\nEldon\nEphraim\nEver\nFabio\nFletcher\nFlorencio\nFrancois\nFredric\nFritz\nGamaliel\nGareth\nGarland\nGarren\nGavino\nGeraldo\nGideon\nGloria\nGrayson\nGumaro\nHakim\nHamid\nHasani\nHeber\nHong\nHubert\nIain\nIsabel\nIsauro\nIsiah\nJai\nJarid\nJavan\nJavon\nJaysen\nJd\nJeanpierre\nJenaro\nJermy\nJeron\nJestin\nJimi\nJin\nJorel\nJosemanuel\nJoshue\nJuanmanuel\nJudson\nJules\nJulia\nJulie\nJun\nJustus\nKamron\nKane\nKc\nKellan\nKelsey\nKhristopher\nKieran\nKimo\nKrikor\nKristofor\nLaurent\nLavell\nLemar\nLenard\nLeng\nLisandro\nLondon\nLorin\nLuz\nLyndon\nLynn\nMandeep\nManny\nMarcial\nMarciano\nMarko\nMarlin\nMarshawn\nMatias\nMaximino\nMichale\nMustafa\nNathen\nNicholai\nNiles\nNima\nNino\nObed\nOracio\nOzzie\nPaulino\nPhil\nPrimitivo\nPrinceton\nRachel\nRaffi\nRahim\nRainier\nRaj\nRashaad\nRaymon\nReece\nRian\nRocco\nRonaldo\nRussel\nSan\nSandro\nSanjay\nShanon\nSoloman\nSonia\nSteffan\nTarik\nTimmothy\nTito\nTobin\nTod\nTremayne\nTrey\nTrino\nTristen\nTye\nVern\nVictoria\nWarner\nWilbur\nWoodrow\nYannick\nYesenia\nYusuf\nZebulon\nAlegandro\nAlen\nAlexandra\nAmin\nAnderson\nAngelito\nAngus\nAnil\nAntuan\nAramis\nArcadio\nAren\nArian\nArjun\nArvin\nAsad\nAshton\nAtthew\nAugustin\nAugustus\nAusten\nAvi\nBailey\nBaldomero\nBasilio\nBillie\nBrandy\nBrenda\nBrennon\nBrion\nBroc\nBrodie\nBulmaro\nCal\nCarroll\nCelestino\nChaim\nChang\nChau\nChristohper\nCiro\nConstantino\nCrispin\nCullen\nDakota\nDamone\nDani\nDarron\nDashawn\nDashon\nDaveon\nDax\nDeonte\nDerrik\nDesi\nDestin\nDevaughn\nDietrich\nDijon\nDimas\nDimitrios\nDimitrius\nDionisio\nDionte\nDominque\nDomonic\nDomonick\nDru\nDustyn\nDwan\nEamon\nEaston\nEdder\nEdvardo\nElgin\nEliazar\nEmery\nEmory\nEpifanio\nEvaristo\nEverado\nFadi\nFaheem\nFerdinand\nFortino\nFrances\nFranz\nFue\nGaston\nGaurav\nGeovani\nGermain\nGerrad\nGerry\nGiovanny\nGrabiel\nGraeme\nGus\nGustabo\nHagop\nHaig\nHart\nHasan\nHerminio\nHien\nHomer\nHouston\nHussein\nImmanuel\nImran\nIsac\nIsmail\nJace\nJacobo\nJacque\nJamall\nJarett\nJarrad\nJeanpaul\nJelani\nJens\nJereme\nJeronimo\nJessi\nJoao\nJohnathen\nJohnie\nJonatan\nJonmichael\nJoshuah\nJospeh\nJovanny\nJuanito\nJuanpablo\nJuaquin\nJudd\nJude\nJuvenal\nKale\nKarim\nKatherine\nKavon\nKeaton\nKee\nKendrick\nKenrick\nKenyon\nKhalid\nKhalil\nKian\nKimberly\nKip\nKofi\nKoji\nKonrad\nKwame\nKy\nLamonte\nLanden\nLaszlo\nLauro\nLeandro\nLeighton\nLemuel\nLeticia\nLinh\nLisa\nLuigi\nLy\nMagdaleno\nMaher\nMarcoantonio\nMarie\nMaritza\nMarius\nMatthias\nMaurilio\nMaximiliano\nMerrill\nMichal\nMicharl\nMichele\nMiller\nMischa\nModesto\nMychal\nMynor\nNazario\nNehemiah\nNhan\nNikolai\nObryan\nOmero\nOsualdo\nOthon\nPeng\nPercival\nPheng\nPhi\nRaheem\nRahul\nRami\nRamone\nRaynard\nReagan\nRenaldo\nRenan\nReno\nReza\nRichar\nRobbert\nRonnel\nRoshan\nRosio\nRoyal\nRufino\nRuss\nRylan\nSachin\nSammie\nSeneca\nShad\nShadi\nShon\nSilvestre\nSixto\nSkip\nSoren\nSou\nStacey\nStanford\nSue\nSydney\nTad\nTaj\nTal\nTavis\nTerron\nThad\nThong\nThor\nThuan\nTimmy\nTin\nToni\nTorrey\nTramell\nTrayvon\nTu\nVictoriano\nVijay\nVinson\nVladimir\nWaldo\nWestin\nWilfrido\nWilliams\nWilly\nYang\nYer\nYosef\nYoung\nYovani\nYuri\nYvan\nZaid\nZubin\nMichael\nChristopher\nDavid\nDaniel\nMatthew\nRobert\nJoshua\nRyan\nJames\nJohn\nJoseph\nJason\nJose\nAnthony\nAndrew\nBrian\nJonathan\nNicholas\nJustin\nBrandon\nEric\nSteven\nRichard\nAdam\nKevin\nWilliam\nJeffrey\nJuan\nTimothy\nThomas\nAaron\nSean\nMark\nKyle\nPaul\nCarlos\nPatrick\nScott\nJacob\nBenjamin\nLuis\nStephen\nJesus\nJesse\nAlexander\nGregory\nTravis\nMiguel\nJeremy\nBryan\nKenneth\nCharles\nVictor\nNathan\nGabriel\nTyler\nJorge\nEdward\nRicardo\nRaymond\nDustin\nSamuel\nPeter\nFrancisco\nZachary\nManuel\nAdrian\nJoel\nErik\nChristian\nAntonio\nDerek\nMario\nOscar\nRoberto\nFrank\nAlejandro\nSergio\nFernando\nJavier\nVincent\nJared\nIan\nRuben\nKeith\nRonald\nShawn\nMarcus\nChad\nGeorge\nHector\nPhillip\nMartin\nDonald\nBradley\nAlex\nCesar\nJordan\nRaul\nEduardo\nBrett\nJaime\nArmando\nGary\nEvan\nAngel\nAlbert\nJohnny\nTrevor\nDouglas\nCody\nCasey\nPedro\nAlan\nDanny\nHenry\nAlberto\nSalvador\nTony\nArturo\nRafael\nJimmy\nRandy\nOmar\nPhilip\nEdgar\nRamon\nDennis\nIvan\nNathaniel\nAndres\nJulio\nBlake\nShane\nRene\nCory\nArthur\nCraig\nSteve\nGarrett\nIsaac\nBrent\nEnrique\nRussell\nLarry\nJeremiah\nTodd\nGerardo\nJoe\nMarco\nErnesto\nAlfredo\nCameron\nJerry\nDevin\nAndre\nWesley\nCurtis\nShaun\nLawrence\nMathew\nCorey\nDerrick\nErick\nMarc\nMarcos\nLouis\nKristopher\nEdwin\nGilbert\nNicolas\nJeffery\nEmmanuel\nAbraham\nAustin\nColin\nAllen\nTroy\nDominic\nJack\nJohnathan\nMitchell\nRudy\nTaylor\nJulian\nRicky\nEddie\nChase\nSeth\nDarren\nCarl\nLuke\nWalter\nRodolfo\nJon\nGustavo\nGuillermo\nRoger\nErnest\nBobby\nJonathon\nRandall\nGrant\nHugo\nIsmael\nTerry\nDrew\nLance\nAlfonso\nGerald\nLee\nIsrael\nSaul\nMaurice\nRoy\nEugene\nJessie\nRoss\nFelipe\nNoah\nPablo\nMarvin\nSpencer\nJosue\nDylan\nGeoffrey\nLucas\nMicheal\nAndy\nAlfred\nAbel\nDiego\nBrendan\nClinton\nEsteban\nBilly\nLeonard\nTheodore\nMicah\nOrlando\nRamiro\nFabian\nNoe\nWayne\nMoises\nMorgan\nNeil\nLorenzo\nClayton\nGlenn\nJay\nRogelio\nRolando\nNelson\nRodney\nBruce\nCalvin\nTommy\nBryce\nNoel\nCole\nDarrell\nGilberto\nFrederick\nTristan\nFelix\nJerome\nDarryl\nRay\nSimon\nCaleb\nKelly\nBranden\nRonnie\nJamie\nLogan\nWillie\nIgnacio\nJoey\nAdan\nDevon\nVicente\nClifford\nLeonardo\nMax\nRalph\nRigoberto\nKurt\nSantiago\nJoaquin\nAllan\nElias\nTomas\nByron\nEmanuel\nFreddy\nHumberto\nAlvaro\nDamien\nKarl\nReginald\nRoman\nDean\nEfrain\nTyrone\nGiovanni\nBeau\nStanley\nWarren\nJarrod\nJermaine\nOctavio\nRodrigo\nAgustin\nEthan\nMoses\nNolan\nMike\nAlexis\nDamian\nFrancis\nGuadalupe\nLeo\nMelvin\nAlvin\nChris\nDwayne\nIsaiah\nJake\nMarlon\nAngelo\nKenny\nNorman\nDale\nDane\nGavin\nMauricio\nXavier\nCristian\nElliott\nMarshall\nCharlie\nTyson\nDante\nPreston\nFranklin\nNickolas\nSam\nLevi\nMiles\nReynaldo\nRory\nBrenton\nEmilio\nGraham\nHoward\nLeonel\nLoren\nRick\nAmir\nBarry\nCollin\nElijah\nHarold\nTerrance\nFrankie\nJayson\nRoland\nStuart\nAdolfo\nDeandre\nOliver\nRobin\nDarnell\nDaryl\nGonzalo\nKirk\nBrad\nJosiah\nLeon\nEli\nFreddie\nGlen\nLewis\nGordon\nHarry\nBryant\nDamon\nDana\nKent\nTerrell\nAntoine\nGerman\nNeal\nSebastian\nTerrence\nAshley\nFred\nClarence\nDan\nHeriberto\nKurtis\nBrady\nBret\nJim\nJohnathon\nKelvin\nEfren\nNathanael\nRaymundo\nDon\nEarl\nKellen\nLionel\nOsvaldo\nDuane\nDwight\nJackson\nJeff\nMaxwell\nNick\nBen\nBenny\nForrest\nBernard\nBernardo\nColby\nElliot\nLandon\nAron\nJulius\nLamar\nPierre\nRandolph\nTom\nAldo\nAli\nAriel\nClint\nDonovan\nIsidro\nShannon\nCedric\nJamaal\nJamal\nOwen\nSantos\nFederico\nLeroy\nLonnie\nLouie\nVernon\nZachariah\nLloyd\nMarques\nMarquis\nWilson\nBryon\nFidel\nFredrick\nRocky\nTrent\nTrenton\nAlonso\nBill\nCourtney\nDonte\nErnie\nGene\nJarrett\nJess\nStephan\nTerence\nWeston\nCarlo\nDemetrius\nIsaias\nJarred\nArnulfo\nClark\nClifton\nDarin\nDario\nGuy\nMilton\nTed\nJimmie\nMaria\nMason\nMyles\nSammy\nTanner\nChance\nErich\nGarret\nGenaro\nKristofer\nNestor\nRickey\nRon\nSkyler\nStefan\nAlec\nBenito\nCruz\nDillon\nEstevan\nHerbert\nLeslie\nParker\nShea\nTravon\nDallas\nMarcel\nRoderick\nSterling\nAlonzo\nAugustine\nDarrin\nEverardo\nGerard\nKristian\nMarkus\nToby\nAurelio\nBradford\nCristobal\nCristopher\nDavis\nElvis\nGreg\nGregorio\nHerman\nJameson\nLester\nConrad\nLeopoldo\nPerry\nPete\nSidney\nSolomon\nSonny\nTyrell\nUlysses\nValentin\nWade\nAdalberto\nArnold\nDeshawn\nDesmond\nDominique\nEliseo\nHarley\nJean\nKiel\nRex\nRoyce\nAlexandro\nBrendon\nEverett\nHeath\nHuy\nJovan\nKasey\nLyle\nRaphael\nReid\nTy\nUriel\nBrock\nCarson\nDomingo\nEzequiel\nGarry\nHoracio\nJamison\nJohnnie\nReuben\nUlises\nZackary\nDerick\nElmer\nErwin\nJamar\nJennifer\nJerrod\nJosef\nMohammad\nPhong\nRudolph\nWyatt\nDominick\nEzekiel\nHung\nHunter\nJessica\nNam\nQuinn\nRandal\nTuan\nBrennan\nClay\nDarius\nDorian\nEdmund\nErin\nFloyd\nGorge\nJairo\nJohnson\nKerry\nMariano\nMinh\nPaulo\nStewart\nTou\nTracy\nAhmad\nAmit\nBaby\nBrain\nCaesar\nCyrus\nDuy\nFredy\nGino\nJoseluis\nNathanial\nQuentin\nRefugio\nRojelio\nTrinidad\nZachery\nChester\nDave\nHarrison\nIssac\nKory\nLong\nLuiz\nMatt\nMichel\nNorberto\nScotty\nCheyne\nConor\nDarrel\nDeon\nDewayne\nEddy\nHans\nJan\nJefferson\nKim\nMarcelo\nOrion\nRashad\nRenato\nRosendo\nVan\nWilfredo\nAric\nBlaine\nChaz\nClyde\nDonnie\nDuncan\nEdgardo\nFermin\nJohnpaul\nKeegan\nKen\nQuincy\nRiley\nSamson\nSheldon\nTobias\nVirgil\nZackery\nZane\nAsa\nAshton\nBrenden\nCecil\nDaren\nDion\nDonnell\nEdwardo\nElizabeth\nGalen\nJarod\nJosh\nLaurence\nMarcelino\nMarty\nMyron\nReyes\nSherman\nSkylar\nStephanie\nThanh\nVinh\nWinston\nAhmed\nBradly\nBroc\nBryson\nCamilo\nCassidy\nEmil\nEriberto\nEzra\nFausto\nHernan\nIra\nKai\nKris\nLuciano\nLuther\nMohammed\nOtis\nAntony\nCale\nCary\nDavon\nDenny\nEder\nEdmond\nFransisco\nJered\nJonah\nJuancarlos\nKeenan\nKong\nMalcolm\nMateo\nMauro\nMickey\nNicholaus\nReed\nTam\nTim\nTimmy\nVu\nWendell\nBarrett\nBo\nBrandan\nBrooks\nBruno\nChristina\nCuong\nDanilo\nDerik\nEloy\nHugh\nJefferey\nKody\nKristoffer\nLauren\nLucio\nMarquise\nMisael\nReggie\nRobby\nRusty\nSantino\nVance\nWilbert\nAkeem\nChristoper\nColt\nDarwin\nDexter\nDonny\nEdgard\nEmerson\nEsequiel\nFiliberto\nGregg\nHarvey\nHoang\nJerardo\nJovany\nJunior\nKendall\nKou\nLamont\nLeland\nMichelle\nMiguelangel\nMorris\nNehemiah\nOsbaldo\nRomeo\nSalvatore\nScot\nSylvester\nViet\nAram\nAri\nArmand\nArmen\nArnoldo\nAvery\nBennie\nBinh\nBlair\nBrice\nCarey\nChadwick\nCheng\nColton\nConnor\nDavin\nDejuan\nDino\nEleazar\nErvin\nIshmael\nJacobo\nJamel\nJaron\nJerad\nJonas\nJusten\nKendrick\nKorey\nLazaro\nLeobardo\nLiam\nMarcial\nMelissa\nNigel\nNikolas\nQuoc\nRavi\nTeddy\nToan\nWill\nAbram\nAlphonso\nAnh\nAnton\nArron\nBrant\nCarmelo\nCeasar\nChandler\nClemente\nCornelius\nDaisy\nDarrick\nEmiliano\nFabio\nGarett\nGil\nJordon\nKeon\nLane\nMikel\nNancy\nRaudel\nRemington\nRey\nRigo\nRussel\nTrever\nVanessa\nVidal\nWallace\nWilfred\nAlton\nAmos\nAn\nAndreas\nAntwan\nBennett\nCarlton\nCrystal\nDanial\nDeangelo\nDiana\nDontae\nDung\nErika\nFranco\nGrayson\nJackie\nJody\nJoesph\nKareem\nKatherine\nKenji\nLeif\nLincoln\nMarcell\nMargarito\nOren\nOswaldo\nPorfirio\nQuang\nRamsey\nRhett\nRommel\nSamir\nSarah\nSarkis\nShayne\nSilas\nSon\nValentino\nWaylon\nWhitney\nWillis\nAdriel\nAlain\nAlbaro\nAmy\nAndrea\nArtemio\nAubrey\nBernabe\nCarter\nClaudio\nColeman\nCornell\nDeven\nElan\nElvin\nFlavio\nFlorentino\nGarrick\nGarth\nHieu\nHilario\nIrvin\nJasper\nJeffry\nJeremey\nJerod\nJohathan\nJorje\nKaleb\nKeven\nLino\nMarkanthony\nMaximilian\nMigel\nMilo\nMitchel\nPatricio\nPheng\nRocio\nRueben\nSalomon\nStevie\nSunny\nTimmothy\nTito\nTitus\nTyree\nVaughn\nAdrain\nAlden\nApolonio\nAugust\nAugustin\nAusten\nBaltazar\nBee\nBillie\nBrandin\nChas\nDamion\nDandre\nDelfino\nDeonte\nDonta\nEdmundo\nEliot\nFavio\nGeronimo\nGrady\nHarlan\nHubert\nIbrahim\nJabari\nJacinto\nJamil\nJedediah\nJedidiah\nJerald\nJeramiah\nJeramie\nJevon\nJoshuah\nJustine\nKao\nLaura\nLeandro\nLukas\nMarcello\nMathieu\nMaximino\nNader\nNathen\nOmari\nOtto\nPaolo\nPrince\nRichardo\nRichie\nRico\nRobbie\nRodrick\nRoosevelt\nSandra\nTheron\nTory\nAjay\nAmador\nAnibal\nAnson\nAntione\nBaldomero\nBenson\nBlas\nBobbie\nBraden\nBurton\nCamron\nChai\nChao\nCharley\nChuong\nCorbin\nDelbert\nDimitri\nEdson\nElio\nEllis\nErrol\nFaustino\nFrancesco\nGareth\nGarland\nGiuseppe\nHagop\nHouston\nIrwin\nJakob\nJarad\nJarrell\nJasen\nJeromy\nJessy\nJonmichael\nKalen\nKamal\nKc\nLevon\nLinh\nMathias\nMeng\nMohamed\nMuhammad\nNapoleon\nNikolai\nParis\nQuinton\nRandell\nRasheed\nRenee\nReymundo\nRod\nRonny\nRyne\nSerafin\nStacy\nTri\nTrung\nUbaldo\nVeronica\nVishal\nYoung\nYusuf\nZechariah\nAbner\nAl\nAna\nAnwar\nAra\nArash\nArchie\nArgenis\nArlen\nAsher\nBao\nBenedict\nBert\nBob\nBrandt\nBrannon\nBraulio\nBuddy\nCelso\nChasen\nCynthia\nDannie\nDarell\nDenis\nDereck\nDeric\nDerrell\nDirk\nDusty\nElisha\nEmery\nEugenio\nFeliciano\nFletcher\nFong\nForest\nFroilan\nGabino\nGerson\nGiancarlo\nHai\nHank\nHassan\nHiram\nIrving\nJacques\nJarrad\nJeanpaul\nJelani\nJensen\nJeramy\nJeremie\nJerrad\nJohannes\nJovon\nJules\nJuvenal\nJuventino\nKennedy\nKenton\nKieran\nLam\nLars\nLauro\nMarion\nMarko\nMartell\nMary\nMattew\nMayra\nMegan\nMelchor\nMicahel\nModesto\nMonte\nMustafa\nMychal\nPao\nPercy\nPhuong\nPierce\nRaffi\nRaymon\nReece\nReese\nRomel\nRoque\nRyon\nSantana\nSchuyler\nShelton\nSilvestre\nSione\nThaddeus\nVahe\nVang\nVicent\nWilbur\nWillard\nYer\nAbran\nAdrien\nAlessandro\nAlexandra\nAndrae\nAngela\nArmond\nArnel\nArt\nAugusto\nBenjamen\nBijan\nBronson\nBuck\nChee\nChristoher\nChue\nCooper\nCristina\nCuauhtemoc\nDajuan\nDanielle\nDeante\nDel\nDemario\nDeshon\nDevan\nDionicio\nDomonic\nDontay\nDuran\nEvelyn\nFidencio\nFlorencio\nFrederic\nGaret\nGarrison\nGillermo\nGreggory\nHamilton\nImran\nIsacc\nJace\nJamin\nJarett\nJed\nJereme\nJerimiah\nJermain\nJerron\nJohann\nJuaquin\nKashif\nKelsey\nKenyon\nKeoni\nKristen\nLenny\nLindsey\nLupe\nMacario\nMagdaleno\nMaribel\nMaximiliano\nMerle\nMichal\nMikael\nMohamad\nNewton\nNickolaus\nNicky\nNicole\nNikhil\nNima\nPascual\nPhi\nRamin\nRaynard\nReinaldo\nRian\nRickie\nRodger\nRoel\nRosa\nRylan\nSabino\nSandeep\nSara\nSharif\nShelby\nShon\nSir\nSky\nTarik\nTeng\nTevita\nThai\nThao\nThien\nTiffany\nTino\nTommie\nTrevon\nTu\nTucker\nUriah\nVeasna\nVikram\nVince\nVue\nWestley\nWilly\nAbdul\nAbdullah\nAdonis\nAlicia\nAnderson\nAngelica\nAnival\nArman\nArmondo\nAugustus\nAvraham\nBarton\nBenton\nBlaise\nBoyd\nCain\nCalen\nCamden\nCarleton\nCarmen\nCindy\nClaudia\nCyril\nDarcy\nDavion\nDejon\nDemetrio\nDeron\nDerrek\nDevyn\nDonavan\nDonell\nDoyle\nDrake\nDurell\nEliezer\nEnrigue\nEphraim\nErasmo\nErica\nErron\nEsgar\nEver\nFadi\nFavian\nFranz\nGerry\nGildardo\nGiovani\nGonsalo\nGraeme\nHarout\nHayden\nIlan\nIsidoro\nIsreal\nIvory\nJacqueline\nJade\nJaren\nJarret\nJarvis\nJefrey\nJeronimo\nJerred\nJohan\nJonpaul\nJospeh\nJovani\nJr\nJuston\nKevan\nKeyon\nKhalid\nKhalil\nKhang\nKimberly\nKirby\nKoji\nKraig\nKristofor\nKunal\nLayne\nLeigh\nLoc\nLondon\nLorena\nLorin\nLou\nLowell\nMack\nMarkeith\nMarlin\nMarquez\nMatias\nMaurilio\nMilan\nMynor\nNolberto\nOmer\nOsama\nOswald\nParris\nPatricia\nPhil\nQuintin\nRajan\nRamses\nRayvon\nRemy\nRishi\nRonaldo\nRosario\nRufus\nSandy\nScottie\nSeamus\nSerjio\nServando\nSilverio\nSimeon\nStacey\nSung\nTad\nTai\nTan\nTarek\nTeodoro\nThang\nTobin\nTristin\nTylor\nTyrel\nVincente\nWaldo\nWalker\nWayland\nWilfrido\nWilliams\nYancy\nYeng\nZack\nAbelardo\nAj\nAlegandro\nAlejandra\nAlfonzo\nAlma\nAmadeo\nAmar\nAmeer\nAmilcar\nAmin\nAnders\nAnsel\nAntwon\nAris\nArsenio\nAureliano\nBailey\nBarron\nBart\nBernardino\nBernie\nBoris\nBradlee\nBradon\nBrandy\nBrenda\nBritton\nBulmaro\nCarlin\nCecilia\nChace\nChet\nChristen\nChristofer\nCipriano\nCliff\nConrado\nCornelio\nCoy\nCullen\nDagoberto\nDalton\nDaron\nDarron\nDax\nDemarcus\nDemitrius\nDenise\nDeontae\nDionte\nDomonique\nDouglass\nDusten\nEarnest\nEden\nElbert\nEliott\nEmile\nEmmett\nEnoch\nEnrrique\nEusebio\nFabien\nGable\nGage\nGamaliel\nGeovanni\nGer\nGeraldo\nGideon\nGriffin\nGrisel\nGus\nHakim\nHanh\nHerminio\nHollis\nHomar\nHong\nIain\nIsai\nIsiah\nJahaziel\nJarell\nJens\nJessi\nJhon\nJimmylee\nJoanna\nJoeseph\nJoh\nJohnmichael\nJonatan\nJudith\nJulien\nKale\nKarim\nKarla\nKarlo\nKellan\nKelley\nKenan\nKenney\nKhanh\nKip\nKonrad\nKristin\nKue\nKyler\nLancelot\nLaron\nLavell\nLenard\nLeng\nLevar\nLindsay\nLionell\nLon\nLuigi\nLuisangel\nLyndon\nMalik\nMarcellus\nMarkell\nMartha\nMichale\nMicky\nMikkel\nMonty\nMoua\nMusa\nNichols\nNikolaus\nNiles\nOsualdo\nPatric\nPernell\nPhilippe\nRachel\nRahul\nRashid\nRayn\nRion\nRondell\nRosalio\nRyland\nSami\nSandro\nSeanmichael\nSebastien\nSeng\nSesar\nShaheed\nShakir\nStephane\nSundeep\nTaurean\nTerrel\nTong\nTremaine\nTrey\nTung\nVictorino\nVivek\nWard\nWes\nWiley\nWilmer\nWm\nYee\nYesenia\nYousef\nAce\nAdolph\nAgustine\nAidan\nAlexandre\nAmado\nAmanda\nAmber\nAmer\nAndrei\nAndrey\nAngus\nAnselmo\nApolinar\nAraceli\nAran\nAshish\nAuston\nAvedis\nAvelino\nAxel\nBaron\nBartolo\nBlain\nBlong\nBrennen\nBrien\nCandelario\nCandido\nCase\nCedrick\nCesario\nCezar\nChadd\nChang\nCharleston\nChong\nChristan\nChristine\nChristophe\nChristpher\nChuck\nClement\nCleo\nCori\nCosme\nCristofer\nCuitlahuac\nCurt\nDakota\nDarien\nDarion\nDarryn\nDashawn\nDavy\nDeandra\nDelano\nDell\nDelvin\nDemond\nDemonte\nDenton\nDeondre\nDiamond\nDonato\nDuc\nEaston\nEdric\nEdvardo\nEhren\nEladio\nElgin\nEligio\nEllery\nElton\nEvans\nEvelio\nEvin\nFarhan\nFelton\nFranklyn\nFue\nGaldino\nGeary\nGeovany\nGermain\nGermaine\nGerren\nGian\nGloria\nGreyson\nGrigor\nGriselda\nGustabo\nHal\nHani\nHeather\nHipolito\nHoa\nHussein\nHyrum\nIdris\nIkenna\nJabbar\nJacoby\nJai\nJamall\nJameel\nJamey\nJanet\nJanmichael\nJarel\nJaret\nJerman\nJerrell\nJerret\nJoao\nJohnpatrick\nJohny\nJonny\nJoseantonio\nJosedejesus\nJoshue\nJovanny\nJuanita\nJuanluis\nJuanmanuel\nJuanpablo\nJudah\nJulia\nJustino\nJusto\nKalin\nKalvin\nKameron\nKaren\nKawika\nKeaton\nKennith\nKevyn\nKhoa\nKhoi\nKhristopher\nKiley\nKing\nLajuan\nLamonte\nLang\nLavon\nLayton\nLemar\nLenin\nLesley\nLibrado\nLisa\nLorne\nLucky\nLuisalberto\nLuz\nLydell\nLynn\nMackenzie\nMahmoud\nMalachi\nMandeep\nMarcanthony\nMarino\nMarque\nMarquies\nMaximo\nMehdi\nMichele\nMick\nMina\nMiquel\nMonica\nNatalie\nNavin\nNeema\nNeeraj\nNery\nNguyen\nNicanor\nNicklas\nNicklaus\nNicolai\nNiko\nNnamdi\nNorris\nOmid\nOtoniel\nPaola\nPayam\nPeng\nRainer\nRami\nRaymund\nRen\nReno\nRito\nRob\nRobinson\nRocco\nRonell\nRonnell\nRony\nRudi\nRuperto\nSage\nSal\nSalbador\nSalim\nSalman\nSameer\nSan\nSang\nSedrick\nShad\nShadi\nShant\nShay\nSilvino\nSkye\nSoren\nSpenser\nStefano\nStephon\nStevan\nSumeet\nSusan\nSydney\nTalon\nTerance\nTerell\nTeron\nTerrill\nTin\nTorrey\nTracey\nTraveon\nTravone\nTrino\nTristen\nTrumaine\nTye\nTyron\nUlices\nVictoria\nVijay\nVinson\nVito\nWilber\nWilton\nYair\nYan\nYao\nYasir\nYoni\nYuri\nYusef\nZakary\nMichael\nChristopher\nDaniel\nDavid\nMatthew\nRobert\nJoshua\nRyan\nAndrew\nJames\nAnthony\nJose\nJoseph\nJohn\nJonathan\nJason\nBrandon\nNicholas\nBrian\nEric\nSteven\nJustin\nKevin\nRichard\nWilliam\nAdam\nKyle\nJuan\nJeffrey\nSean\nThomas\nTimothy\nAaron\nAlexander\nMark\nCarlos\nPaul\nLuis\nBenjamin\nPatrick\nJesus\nScott\nJacob\nJesse\nJeremy\nCharles\nStephen\nBryan\nGregory\nMiguel\nVictor\nTyler\nKenneth\nNathan\nJorge\nTravis\nFrancisco\nSamuel\nZachary\nGabriel\nEdward\nManuel\nRicardo\nPeter\nAdrian\nDustin\nAntonio\nOscar\nMario\nRaymond\nChristian\nAlejandro\nJoel\nAlex\nShawn\nErik\nHector\nRoberto\nDerek\nSergio\nCody\nJared\nFrank\nRuben\nIan\nJordan\nFernando\nMarcus\nJavier\nGeorge\nVincent\nPhillip\nChad\nBradley\nKeith\nRonald\nCesar\nEduardo\nMartin\nRaul\nArmando\nJaime\nShane\nBrett\nEvan\nDonald\nTrevor\nAngel\nTony\nDanny\nPedro\nRafael\nAlberto\nArturo\nNathaniel\nCasey\nGary\nHenry\nAlan\nJohnny\nCory\nPhilip\nGarrett\nAndres\nCorey\nAlbert\nSalvador\nEdgar\nIvan\nRandy\nJimmy\nDouglas\nDennis\nAlfredo\nJulian\nGerardo\nCameron\nMarco\nBrent\nWesley\nJulio\nOmar\nArthur\nBlake\nRamon\nCraig\nErnesto\nDerrick\nAndre\nSteve\nEmmanuel\nLarry\nEnrique\nIsaac\nRussell\nJeremiah\nJerry\nJoe\nRene\nJohnathan\nAustin\nTodd\nShaun\nKristopher\nTaylor\nCurtis\nMarc\nAllen\nEdwin\nDarren\nNicolas\nMathew\nGustavo\nTroy\nAbraham\nDylan\nJeffery\nMitchell\nLawrence\nMarcos\nDevin\nErick\nLuke\nGrant\nLouis\nWalter\nJack\nCarl\nRicky\nEddie\nSeth\nGuillermo\nChase\nDrew\nGilbert\nDominic\nLance\nBobby\nColin\nJon\nJonathon\nRudy\nRoger\nAlfonso\nAndy\nRandall\nHugo\nRodolfo\nJessie\nAlvaro\nLucas\nAbel\nNoah\nRoy\nIsrael\nDiego\nSpencer\nJosue\nErnest\nBilly\nFelipe\nIsmael\nEsteban\nBryce\nJay\nLee\nMarvin\nPablo\nGeoffrey\nGerald\nCaleb\nMax\nClinton\nSaul\nBrendan\nMicheal\nTommy\nMoises\nClayton\nRogelio\nTerry\nNeil\nAlfred\nNelson\nBruce\nTheodore\nElias\nRigoberto\nRodney\nMaurice\nCole\nFabian\nRonnie\nCalvin\nLeonard\nDevon\nRoss\nOrlando\nGilberto\nTristan\nEugene\nDarrell\nGlenn\nLorenzo\nDean\nWayne\nLogan\nWillie\nFreddy\nJairo\nHumberto\nMorgan\nJake\nReginald\nRamiro\nDarryl\nAlexis\nDale\nJerome\nJoey\nRalph\nNoe\nRay\nIgnacio\nMike\nTyrone\nLeonardo\nMicah\nFrederick\nJoaquin\nDane\nMauricio\nEmanuel\nRolando\nSantiago\nTomas\nByron\nCristian\nKarl\nIsaiah\nFrancis\nGiovanni\nAdan\nClifford\nSimon\nAngelo\nBranden\nRodrigo\nTyson\nXavier\nNoel\nVicente\nKenny\nKelly\nAgustin\nFranklin\nMarlon\nDamian\nLeo\nDeandre\nMelvin\nMiles\nDamien\nKurt\nWarren\nElliot\nFelix\nJamie\nJayson\nBeau\nBrad\nChris\nEfrain\nGavin\nMaxwell\nRoman\nElijah\nPreston\nGuadalupe\nJohnathon\nNickolas\nNolan\nRory\nDaryl\nLoren\nSebastian\nStanley\nTerrence\nAllan\nEmilio\nGlen\nLeon\nAlvin\nDon\nDwayne\nEthan\nHarold\nStuart\nCollin\nRick\nGraham\nKent\nEli\nLeonel\nOctavio\nCharlie\nFrankie\nGerman\nHoward\nJarrod\nJeff\nLevi\nMoses\nBrady\nBret\nEarl\nHarry\nKirk\nMarshall\nAntoine\nDante\nAdolfo\nBryant\nNestor\nSam\nUlises\nWade\nJermaine\nKurtis\nRoland\nBarry\nDamon\nHarrison\nStephan\nDarin\nLouie\nOliver\nIsidro\nJameson\nMason\nPierre\nRobin\nTerrell\nHerman\nAli\nClarence\nElliott\nTerrance\nDana\nHerbert\nJosiah\nOsvaldo\nRocky\nSkyler\nCedric\nDarnell\nJim\nLamar\nNeal\nWilson\nDallas\nFreddie\nGarret\nKory\nRaymundo\nUriel\nGonzalo\nRoderick\nClint\nDan\nDonovan\nDuane\nEfren\nEstevan\nTom\nTrent\nDesmond\nFred\nHeriberto\nNick\nAlonzo\nAriel\nBen\nClifton\nDillon\nDwight\nFidel\nJarred\nNorman\nReynaldo\nAlec\nBernardo\nColby\nCourtney\nTerence\nDerick\nFredrick\nGene\nKelvin\nArnold\nKerry\nLewis\nLloyd\nSantos\nTrenton\nAshley\nBernard\nBrock\nErich\nHunter\nKellen\nMaria\nBenito\nJamal\nJess\nMarquis\nBrendon\nBrenton\nGreg\nJackson\nJessica\nMarcel\nMarques\nAmir\nDorian\nForrest\nOwen\nRandolph\nSonny\nBrennan\nBryon\nDemetrius\nGordon\nIsaias\nJamaal\nKristofer\nRudolph\nStefan\nUlysses\nZachariah\nDominick\nElvis\nEverardo\nFederico\nGuy\nNathanael\nTed\nVernon\nConrad\nDonte\nMilton\nWyatt\nZachery\nClark\nDarius\nErin\nEverett\nJulius\nKristian\nPerry\nBenny\nCruz\nLandon\nLionel\nPete\nSolomon\nTanner\nValentin\nWeston\nWilfredo\nBill\nDarrin\nJarrett\nJerrod\nJohnnie\nLeroy\nLonnie\nMisael\nParker\nReuben\nShannon\nTou\nAurelio\nCarlo\nChance\nConor\nJoseluis\nArnulfo\nArron\nBlaine\nCary\nCristopher\nErnie\nKasey\nLeland\nMalcolm\nNikolas\nRiley\nAldo\nBraden\nDominique\nEliseo\nErwin\nGregorio\nKiel\nLong\nLyle\nMohammad\nMyles\nSammy\nSidney\nBradford\nDario\nDion\nElizabeth\nEriberto\nHuy\nJuancarlos\nMarcelino\nRex\nRoyce\nSalvatore\nAbram\nAron\nBrooks\nElmer\nJan\nJimmie\nRickey\nTracy\nTravon\nZackary\nAlexandro\nClay\nDavis\nDeon\nHans\nJosef\nJovan\nKendall\nCaesar\nConnor\nDonnie\nDuncan\nGino\nGorge\nHeath\nJarod\nJohnson\nLeslie\nShea\nSterling\nStewart\nTobias\nZane\nBryson\nClaudio\nCristobal\nDeshawn\nDomingo\nEder\nHarley\nJamar\nJamison\nJean\nKristoffer\nRon\nBrice\nDenny\nIssac\nJoesph\nKen\nLamont\nLaurence\nLucio\nMarcelo\nSkylar\nTy\nFloyd\nGerard\nKeenan\nKorey\nLeopoldo\nMarkus\nMauro\nReid\nRusty\nTuan\nWendell\nAlbaro\nBradly\nCarlton\nChaz\nChester\nEleazar\nGarry\nGenaro\nMiguelangel\nNigel\nRhett\nRobbie\nTyrell\nAhmad\nAvery\nBarrett\nBrain\nBrenden\nCarson\nDarrel\nDavon\nDexter\nFransisco\nFredy\nGrayson\nHarvey\nJonah\nLester\nLuciano\nQuentin\nQuinn\nRandal\nRaphael\nRefugio\nRosendo\nSamson\nVance\nWinston\nArmen\nAugustine\nClyde\nDamion\nDewayne\nEmil\nHoracio\nJasper\nJulien\nLeif\nMariano\nMohammed\nMyron\nShayne\nAdalberto\nAlonso\nAmit\nAshton\nChristina\nCooper\nEsequiel\nFausto\nGerson\nHernan\nMigel\nSalomon\nAmador\nBlair\nBruno\nCarter\nDuy\nEddy\nEdgard\nEdgardo\nEzequiel\nJerrad\nJunior\nKai\nKody\nMarkanthony\nOswaldo\nPaolo\nQuinton\nReed\nReyes\nReymundo\nSheldon\nVidal\nZackery\nAram\nArtemio\nBrandyn\nCassidy\nCheyne\nClemente\nColt\nCyrus\nDave\nDavin\nDino\nDonnell\nEdmund\nEdwardo\nEzekiel\nJaymes\nJeffry\nJennifer\nLaura\nQuintin\nRocio\nRomeo\nToby\nTrung\nVeronica\nAnton\nBrandin\nChadwick\nCheng\nCuong\nDevan\nEdmundo\nEmerson\nEzra\nFavian\nFiliberto\nGarett\nGarrick\nGriffin\nIra\nJackie\nJonas\nLino\nLuiz\nMargarito\nMartell\nMickey\nNam\nNorberto\nOsbaldo\nOtto\nQuincy\nSchuyler\nVinh\nBob\nCeasar\nDalton\nDonny\nDontae\nEmiliano\nGregg\nHilario\nJerald\nJered\nJody\nJosh\nJuanmanuel\nKareem\nKendrick\nKim\nLauren\nLiam\nLukas\nMaximilian\nMichale\nMichel\nMitchel\nNathanial\nOrion\nParis\nPorfirio\nPrince\nSamir\nTory\nTrinidad\nValentino\nVirgil\nAlexandre\nAmado\nAndreas\nArnoldo\nAsher\nAubrey\nCamilo\nCarey\nColton\nDagoberto\nDeangelo\nDurrell\nEdmond\nEliot\nEloy\nErasmo\nFaustino\nHai\nHamilton\nJamel\nJaron\nJedidiah\nJeremie\nJessy\nJohnpaul\nJonerik\nKalen\nKennith\nKeven\nLaron\nLazaro\nMalik\nMarcoantonio\nMarty\nMikel\nMinh\nOtis\nTeng\nTommie\nVince\nVincente\nWillis\nWilly\nAnson\nAric\nBaby\nBoris\nBraulio\nBrenda\nChristoper\nCullen\nDerik\nElvin\nErrol\nFermin\nFlavio\nFletcher\nFranco\nGalen\nHugh\nIrving\nJacques\nKaleb\nKeaton\nKhoa\nKou\nLeobardo\nMarquise\nMohamed\nNima\nRenato\nRobby\nSarkis\nSherwin\nSylvester\nTeddy\nTylor\nVito\nWestley\nAhmed\nAidan\nAn\nAnh\nAnibal\nAntony\nAntwan\nBrant\nCecil\nCliff\nColeman\nDaisy\nDanilo\nDonavan\nDusty\nFlorentino\nGiancarlo\nGil\nHayden\nHubert\nImmanuel\nJarrell\nJed\nJedediah\nJefferson\nJerimiah\nJeromy\nJerrell\nJohann\nJonmichael\nJustine\nKenton\nLuther\nMateo\nMaximo\nMelissa\nMorris\nMuhammad\nNicholaus\nPascual\nPhong\nRavi\nRebecca\nRojelio\nSarah\nScot\nShant\nTyron\nVan\nVaughn\nWhitney\nWill\nAdrien\nAjay\nAugust\nBennett\nBijan\nBrandan\nBroc\nCecilio\nCelso\nCharley\nChistopher\nConrado\nDanial\nDaren\nDejon\nDelbert\nDereck\nDerrell\nDiana\nDrake\nEugenio\nFlorencio\nIsai\nJace\nJacinto\nJasen\nJayme\nJerad\nJordon\nJorje\nJosemanuel\nJovani\nKeegan\nLowell\nMarion\nMartha\nMichelle\nMychal\nNader\nNehemiah\nPaulo\nPheng\nRashad\nReggie\nRhys\nRonny\nRoosevelt\nRoque\nRosario\nRufino\nScotty\nSherman\nSon\nStevie\nSunny\nTam\nTarek\nTim\nTrever\nVanessa\nVang\nVu\nWallace\nWaylon\nAbelardo\nAce\nAdrain\nAdriel\nAkeem\nAlain\nAlejandra\nAlessandro\nAlfonzo\nAlton\nAmanda\nAnderson\nAris\nBaltazar\nBuck\nChristofer\nChristoher\nDandre\nDaron\nDarwin\nDavion\nDemario\nDeron\nDurell\nEamon\nEdson\nElio\nElisha\nEllis\nEphraim\nFeliciano\nGabino\nGeovanni\nHagop\nHarlan\nHung\nIrwin\nJerod\nJohathan\nJorden\nJovany\nJuanjose\nJusten\nJuventino\nKris\nLars\nLauro\nLincoln\nMadison\nMarcell\nMarkeith\nMarquez\nMatt\nMayra\nMikael\nMilo\nMonica\nMoshe\nMustafa\nNancy\nNathen\nPierce\nRayshawn\nReese\nRichardo\nRodger\nRomel\nRyne\nSandy\nSilvestre\nStephanie\nThanh\nTri\nTristen\nTyree\nWilbert\nWilfred\nWillard\nWilmer\nYesenia\nAbran\nAmin\nAmos\nAna\nArash\nArlen\nArmand\nArmond\nArya\nBao\nBaron\nBee\nBinh\nBrien\nCale\nChasen\nChristen\nCornelius\nCurt\nCyle\nDangelo\nDara\nDarell\nDarrick\nDemarcus\nDeonte\nDesean\nDionicio\nEarnest\nEver\nFrancesco\nGerry\nIshmael\nJarrad\nJeramy\nJerardo\nJeremey\nJerold\nKarlo\nKimberly\nMarisol\nMaximiliano\nNickolaus\nOren\nPatricia\nPhuc\nQuoc\nRemington\nRodrick\nSang\nSara\nServando\nShelton\nStevan\nTaurean\nThaddeus\nTrey\nAbner\nAlden\nAlegandro\nAlphonso\nAndrea\nAngelica\nArchie\nAri\nAsa\nAugustin\nAusten\nBabak\nBlas\nBrando\nBronson\nBrook\nChan\nChi\nConner\nCornell\nCoy\nCynthia\nDanielle\nDarron\nDayton\nDenver\nDeric\nDerrek\nDonta\nEly\nErica\nFong\nFrancois\nGer\nGreggory\nHassan\nHieu\nHiram\nHouston\nImran\nJabari\nJacqueline\nJade\nJamil\nJeron\nJoanna\nJohnmichael\nJonpaul\nJoshuah\nKameron\nKennedy\nKevan\nKristen\nLane\nLindsey\nMacario\nMarcello\nMatias\nMaximino\nMeng\nMikhail\nNavid\nNicolaus\nObed\nPaulino\nRajiv\nRayvon\nReece\nRey\nRigo\nSage\nSeamus\nShelby\nShon\nSilas\nSky\nTimmothy\nToan\nTrevon\nTriston\nTucker\nTyrel\nWiley\nYee\nYer\nZechariah\nAmeer\nAnil\nAnthoney\nAntione\nAntone\nAra\nArgenis\nArman\nArmondo\nArt\nAxel\nBarret\nBenedict\nBenson\nBert\nBlaise\nBo\nBobbie\nBoyd\nBrandt\nBrannon\nBrittany\nBritton\nBroderick\nCain\nCamden\nCatlin\nChandler\nChas\nChuck\nCirilo\nClaudia\nDaivd\nDeepak\nDenis\nDeven\nDimas\nDimitri\nDonavon\nEctor\nEden\nEdison\nElbert\nEliazar\nErvin\nEsau\nFavio\nGareth\nGarland\nGeovanny\nGeronimo\nGrady\nHank\nHoang\nHomar\nHomero\nIvory\nJacobo\nJair\nJamin\nJanmichael\nJarett\nJarryd\nJashua\nJaysen\nJefferey\nJelani\nJensen\nJermain\nJerred\nJevon\nJoao\nJohnathen\nJosedejesus\nJustino\nKamran\nKaren\nKarim\nKenji\nKhristopher\nKing\nKong\nKunal\nLafayette\nLan\nLeandre\nLeandro\nLeng\nLevon\nLonny\nLyndon\nMack\nMarcial\nMontana\nMynor\nNasir\nNicky\nOsiel\nPao\nQuan\nQuang\nRachel\nRaffi\nRami\nRandel\nRandell\nRaymon\nReza\nRickie\nRocco\nRommel\nRosalio\nRueben\nRussel\nSamnang\nSan\nSimeon\nStephon\nTan\nTeodoro\nTerron\nThai\nTheo\nTito\nTong\nUlisses\nValente\nXue\nAj\nAl\nAldrich\nAmber\nAndrae\nAndrez\nAnsel\nAren\nAryan\nAscencion\nBart\nBarton\nBennie\nBernardino\nBladimir\nBrayan\nBren\nByran\nCalen\nCarmelo\nCavin\nChia\nCindy\nCoby\nCoty\nDakota\nDamar\nDaryn\nDashawn\nDe\nDejuan\nDelano\nDemetrio\nDemond\nDenise\nDerrik\nDomonic\nDuc\nDung\nEnoc\nEnoch\nErika\nEulalio\nEvelyn\nEvert\nFabio\nGaston\nGiorgio\nGiovani\nHal\nIdris\nJahaziel\nJarvis\nJavon\nJessi\nJoan\nJob\nJoseantonio\nJuston\nKale\nKalin\nKao\nKarina\nKelley\nKelsey\nKolby\nKonrad\nKraig\nLamarr\nLemuel\nLeron\nLibrado\nLisandro\nLou\nLucky\nLue\nMahmoud\nMarcellus\nMaribel\nMathhew\nMegan\nMichaelanthony\nMikal\nMiquel\nMonte\nNabil\nNarciso\nNatividad\nNicholis\nNicole\nNikola\nNiles\nNils\nOmari\nOmero\nOswald\nPhilippe\nRahim\nRahul\nRashaad\nReinaldo\nRenee\nRico\nRudolfo\nRufus\nRyland\nRyon\nSal\nSami\nSamual\nSandra\nSantino\nSesar\nShay\nSheridan\nShiloh\nSilverio\nSilvia\nSol\nSopheak\nStacy\nSue\nTadd\nThang\nTheron\nTien\nTimmy\nTino\nTorrey\nTremaine\nTu\nTung\nVahe\nVartan\nVictoria\nViet\nVinay\nVinson\nWilliams\nWing\nYaniv\nAbdul\nAdams\nAdriana\nAkira\nAlicia\nAlma\nAmmon\nAngela\nAnselmo\nAntwon\nArnaldo\nBenigno\nBernie\nBjorn\nBlane\nBlong\nBonifacio\nBrion\nBrody\nBuddy\nBurton\nCha\nChao\nChauncey\nClement\nCorbin\nCristhian\nDameon\nDarian\nDarien\nDarion\nDashiell\nDaveon\nDax\nDeandrea\nDelmar\nDelvon\nDemar\nDemetri\nDemitri\nDerwin\nDeshaun\nDezmond\nDomenic\nDoua\nDuran\nEarvin\nEd\nEladio\nEligio\nEmile\nEmily\nEmmett\nEnrigue\nEnrrique\nFerdinand\nFidencio\nForest\nFranky\nGarin\nGarrison\nGerad\nGian\nGideon\nGrabiel\nGraeme\nGrey\nGreyson\nHarris\nHasan\nHeber\nHenri\nIban\nIsacc\nIsidoro\nJairus\nJarad\nJarret\nJasdeep\nJayce\nJd\nJermel\nJermey\nJeronimo\nJerrett\nJerrid\nJhonny\nJihad\nJoeseph\nJohan\nJonny\nJonte\nJorel\nJospeh\nJovanni\nJuanantonio\nJuaquin\nJudd\nJudson\nJulia\nJuliana\nJulie\nJustyn\nJuvenal\nKamron\nKane\nKarla\nKaveh\nKevyn\nKieran\nLam\nLenard\nLenny\nLeoncio\nLindsay\nLuz\nMalachi\nMarin\nMarino\nMarkell\nMarshal\nMartel\nMary\nMaxfield\nMaynard\nMaynor\nMerrick\nMicahel\nMitch\nModesto\nNery\nNicanor\nNikhil\nNikolaus\nNino\nOmer\nOtoniel\nPhuong\nRamone\nRamsey\nRaquel\nRasheed\nRaudel\nRaven\nReilly\nRichie\nRoscoe\nRyen\nSachin\nSai\nSalbador\nScottie\nShaheen\nShaine\nShan\nShervin\nSigifredo\nSilvio\nSoren\nStanton\nSyed\nTerrel\nTevita\nThong\nTitus\nTobin\nTristian\nTruong\nUbaldo\nUlices\nUriah\nVa\nVeasna\nVikas\nWilbur\nWillian\nYannick\nYosef\nYu\nAdel\nAkram\nAlexsander\nAman\nAmilcar\nAnjel\nAntwain\nAntwaine\nApollo\nAraceli\nArcadio\nArian\nArick\nArvin\nAshkan\nAugustus\nBaldemar\nBarclay\nBarney\nBenjamen\nBerry\nBrennen\nBrodie\nCal\nCalixto\nCamron\nCandelario\nCarleton\nCarroll\nCasimiro\nChace\nChadd\nChanning\nChirstopher\nChong\nChristipher\nChristoffer\nChriston\nChristophe\nCipriano\nClaude\nCleo\nCleveland\nColter\nCortney\nCristina\nCrystal\nCuauhtemoc\nDain\nDajuan\nDakotah\nDamone\nDannie\nDao\nDayne\nDelorean\nDeondre\nDewey\nDionisio\nDirk\nDjuan\nDomenico\nDonell\nDong\nDoron\nDouglass\nDustyn\nDwan\nDwane\nEberardo\nEdurdo\nEldon\nEliceo\nEliel\nEliezer\nElton\nErrik\nEsteven\nEva\nEvans\nEvaristo\nFrances\nFredi\nFreeman\nFroilan\nFue\nGaelan\nGage\nGaro\nGarth\nGavriel\nGeoffry\nGeraldo\nGeremy\nGildardo\nGillermo\nGilverto\nGiovanny\nGray\nGus\nHardy\nHarout\nHayward\nHeather\nHien\nHoa\nHollis\nHomer\nHosea\nHovsep\nHudson\nIain\nIbrahim\nIrvin\nIsac\nJacoby\nJaison\nJamarr\nJanet\nJc\nJeanpierre\nJeramey\nJeramiah\nJeramie\nJerell\nJereme\nJerid\nJermiah\nJeromie\nJestin\nJo\nJoanthan\nJohannes\nJohnell\nJory\nJossue\nJovanny\nJovon\nJudah\nJude\nJules\nJuliocesar\nJustice\nJustus\nKacy\nKellan\nKenan\nKennard\nKermit\nKhalid\nKhalil\nKhang\nKimo\nKip\nKue\nKye\nKyler\nLavell\nLavon\nLayton\nLe\nLemar\nLeor\nLes\nLeticia\nLiliana\nLoyd\nLynn\nMai\nMajor\nMalcom\nManolo\nMarek\nMarko\nMathias\nMatthias\nMaury\nMelanie\nMerle\nMerlin\nMervin\nMichaelangelo\nMilan\nMontgomery\nMonty\nMychael\nMykel\nNapoleon\nNathanel\nNed\nNeel\nNeftali\nNhia\nNikki\nNikolai\nNikolaos\nNorma\nOmid\nOracio\nOsualdo\nOvidio\nPaula\nPercy\nPrinceton\nPriscilla\nRakesh\nRamin\nRandon\nRashawn\nRaynaldo\nRemy\nRian\nRicci\nRich\nRio\nRishi\nRitchie\nRithy\nRomero\nRosa\nRowan\nRoyal\nSalim\nSammie\nSarath\nSasan\nSeng\nShad\nShahin\nShain\nSina\nSocorro\nSou\nStefano\nStefen\nSteffan\nSusana\nSven\nTamer\nTarik\nTariq\nTerance\nThao\nTj\nTorey\nTorin\nTorrance\nTrace\nTramaine\nTravion\nTyjuan\nTyrus\nUlyses\nUvaldo\nValentine\nVern\nVictoriano\nVikram\nVishal\nVue\nWaldo\nWest\nWilfrido\nWm\nYancy\nYeng\nYing\nYonathan\nYoni\nYoshio\nYoung\nYsidro\nYuri\nYusef\nYusuf\nZack\nMichael\nChristopher\nDaniel\nDavid\nMatthew\nAndrew\nRobert\nRyan\nJoshua\nAnthony\nJose\nJames\nJoseph\nJonathan\nJohn\nNicholas\nJason\nBrandon\nEric\nSteven\nKevin\nJustin\nBrian\nRichard\nKyle\nWilliam\nJuan\nJeffrey\nSean\nAlexander\nThomas\nAdam\nTimothy\nAaron\nLuis\nJeremy\nJacob\nMark\nBenjamin\nCarlos\nPaul\nJesse\nPatrick\nScott\nStephen\nBryan\nCharles\nMiguel\nTyler\nJesus\nGregory\nVictor\nJorge\nKenneth\nSamuel\nTravis\nNathan\nZachary\nFrancisco\nEdward\nAlejandro\nManuel\nChristian\nRicardo\nAdrian\nGabriel\nPeter\nMario\nAntonio\nRaymond\nOscar\nAlex\nDustin\nJordan\nRoberto\nJoel\nDerek\nShawn\nErik\nGeorge\nFernando\nRuben\nJavier\nJared\nMartin\nHector\nFrank\nPhillip\nSergio\nCody\nEvan\nBradley\nChad\nAngel\nBrett\nIan\nMarcus\nShane\nVincent\nJaime\nEduardo\nRonald\nArmando\nEdgar\nCory\nDonald\nRaul\nTrevor\nCesar\nCasey\nKeith\nIvan\nAlberto\nNathaniel\nRafael\nDanny\nAlan\nHenry\nAndres\nGarrett\nAlbert\nPhilip\nCorey\nGary\nJohnny\nSalvador\nPedro\nTony\nCameron\nRandy\nOmar\nAlfredo\nArturo\nDouglas\nJulian\nJulio\nGerardo\nCraig\nEnrique\nRamon\nRene\nMarco\nIsaac\nErnesto\nSteve\nEmmanuel\nJimmy\nAustin\nBlake\nMitchell\nBrent\nAbraham\nJerry\nArthur\nDerrick\nJohnathan\nRussell\nAndre\nMarc\nTaylor\nDevin\nCurtis\nDennis\nJoe\nMathew\nEdwin\nWesley\nLarry\nGilbert\nJeremiah\nJeffery\nGustavo\nRodolfo\nRudy\nMarcos\nAllen\nTroy\nDylan\nErick\nNicolas\nSpencer\nWalter\nAlfonso\nTodd\nShaun\nChase\nLouis\nLawrence\nKristopher\nDominic\nGuillermo\nJonathon\nDarren\nHugo\nRicky\nLuke\nJack\nJake\nBobby\nRoger\nLance\nAbel\nCarl\nPablo\nDiego\nDrew\nSeth\nIsmael\nAndy\nFelipe\nEddie\nIsrael\nGrant\nSaul\nColin\nRandall\nLee\nLucas\nJessie\nBryce\nMaurice\nOrlando\nRoy\nRoss\nMicheal\nJay\nCaleb\nJosue\nGeoffrey\nBilly\nGerald\nFabian\nMoises\nJon\nRogelio\nTheodore\nMarvin\nMax\nAdan\nCalvin\nEugene\nNoah\nNeil\nEsteban\nMiles\nRodney\nAlvaro\nTerry\nElias\nErnest\nDane\nLogan\nBrendan\nClayton\nWayne\nBryant\nNoe\nBruce\nCristian\nGilberto\nNelson\nTristan\nIgnacio\nLorenzo\nDevon\nDean\nRigoberto\nAlfred\nEfrain\nSimon\nMorgan\nGiovanni\nTommy\nWillie\nJerome\nRamiro\nCole\nFrederick\nRay\nClinton\nKelly\nHumberto\nLeonard\nLeonardo\nBranden\nNickolas\nRonnie\nNoel\nClifford\nDarrell\nMicah\nReginald\nGlenn\nByron\nFreddy\nMauricio\nMike\nRodrigo\nTyrone\nDarryl\nRalph\nMaxwell\nDeandre\nJoaquin\nAllan\nKenny\nKurt\nLevi\nPreston\nFelix\nRoman\nWarren\nRolando\nFrancis\nTomas\nBeau\nGuadalupe\nIsaiah\nDamian\nJamie\nKarl\nAlvin\nFranklin\nJoey\nDale\nDaryl\nMarlon\nSantiago\nAdolfo\nXavier\nEmanuel\nAngelo\nDamien\nElijah\nNolan\nAldo\nDon\nTerrance\nTyson\nAlexis\nEmilio\nJairo\nRory\nEli\nAgustin\nCharlie\nDante\nElliott\nLeonel\nLoren\nOliver\nStuart\nChris\nGraham\nLeo\nVicente\nRick\nBrad\nBrady\nGavin\nWade\nGonzalo\nJamal\nStephan\nBrenton\nBret\nGregorio\nKurtis\nSam\nSonny\nAntoine\nCollin\nDwayne\nFidel\nKirk\nTerrell\nBernardo\nDamon\nJayson\nMason\nColby\nMoses\nOctavio\nHarold\nHarrison\nReynaldo\nStanley\nEfren\nEthan\nMarshall\nSkyler\nBrock\nKent\nNestor\nRobin\nDonovan\nHeriberto\nJarrod\nLamar\nMelvin\nAlec\nDillon\nHunter\nKelvin\nLouie\nDana\nJermaine\nLeon\nAlonzo\nDarnell\nMarcel\nMyles\nBrendon\nFred\nSebastian\nArnold\nJim\nJohnathon\nAli\nCedric\nFrankie\nIsidro\nJosiah\nBernard\nClarence\nDan\nTerrence\nTrenton\nGordon\nHarry\nLandon\nSantos\nAmir\nFreddie\nKory\nBarry\nDemetrius\nDominique\nGlen\nJarrett\nNeal\nNorman\nPierre\nTrent\nAlexandro\nAriel\nDallas\nDarin\nDominick\nKellen\nMilton\nOsvaldo\nRocky\nEarl\nReuben\nTanner\nUriel\nWilson\nAlonso\nHoward\nMarquis\nDario\nErnie\nFredrick\nLloyd\nParker\nPete\nRickey\nVernon\nZachariah\nForrest\nLeroy\nLewis\nNick\nBenito\nEstevan\nJeff\nJoseluis\nKristofer\nMaria\nClifton\nHerman\nJackson\nJameson\nMarques\nRaymundo\nRiley\nRoland\nShannon\nTom\nUlysses\nBlaine\nBrennan\nDwight\nElliot\nGene\nLionel\nLonnie\nPerry\nDavis\nDuane\nGuy\nHerbert\nIsaias\nKristian\nWyatt\nZachery\nBryon\nRashad\nWeston\nGino\nNathanael\nRoderick\nCarlo\nDonte\nEverett\nJamar\nJovan\nShea\nStefan\nAddison\nBenny\nClark\nDerick\nElvis\nGarret\nGerman\nLyle\nNikolas\nBen\nBradford\nClint\nConrad\nCourtney\nCruz\nDarius\nJessica\nSammy\nAbram\nBrenden\nCristopher\nEddy\nEverardo\nEzequiel\nJarred\nJuancarlos\nOswaldo\nSolomon\nAron\nCarson\nConnor\nFederico\nIssac\nEdmund\nEliseo\nGreg\nJess\nRudolph\nSterling\nTerence\nBraden\nHans\nOwen\nRoyce\nUlises\nDarrin\nDesmond\nDion\nEdwardo\nGenaro\nJamison\nJimmie\nKendall\nLeslie\nQuincy\nRaphael\nStewart\nTed\nTravon\nZackary\nDorian\nKeenan\nKorey\nLeopoldo\nMarkus\nMisael\nReid\nSheldon\nEdgardo\nErin\nGerard\nJohnnie\nJulius\nLamont\nMalcolm\nReed\nArron\nAshton\nAurelio\nConor\nDexter\nEriberto\nErich\nFredy\nGalen\nKen\nKerry\nReyes\nSkylar\nAdalberto\nBrice\nDuncan\nErwin\nGorge\nMaximilian\nMayra\nRex\nSidney\nBarrett\nDeshawn\nFloyd\nJohnpaul\nJosef\nKasey\nKody\nLester\nMohammad\nRon\nTy\nWilfredo\nZane\nAshley\nCary\nDeon\nElmer\nHoracio\nJace\nJayce\nJefferson\nLeland\nQuentin\nRandolph\nTracy\nTuan\nTyrell\nArnulfo\nAvery\nJarod\nJaron\nJerald\nMarcelo\nMariano\nNorberto\nRico\nSunny\nSylvester\nTou\nAugustine\nBrandan\nCarter\nClay\nDavon\nDenny\nEder\nJeramy\nJohnson\nJunior\nLucio\nMiguelangel\nWinston\nZackery\nAntony\nArmand\nChance\nChaz\nCornelius\nDarrel\nDrake\nEzekiel\nFransisco\nGiancarlo\nJasper\nJaymes\nJean\nLaurence\nLazaro\nLuiz\nMyron\nNathanial\nNicholaus\nNigel\nVince\nAhmad\nAndreas\nArtemio\nBill\nBrandyn\nCarlton\nChadwick\nDaren\nGarry\nJamaal\nJeremie\nJovani\nKai\nLong\nMikel\nOsbaldo\nQuinn\nRosendo\nShayne\nTobias\nVance\nAmit\nAnibal\nAri\nBryson\nCeasar\nClaudio\nCristobal\nCyrus\nDomingo\nEllis\nShant\nTeddy\nToby\nValentin\nVan\nAndrea\nAnton\nAntwan\nArnoldo\nBlair\nEdson\nEleazar\nElizabeth\nEmiliano\nFavian\nFermin\nFletcher\nHugh\nJackie\nJakob\nJeffry\nJennifer\nKareem\nKou\nKristoffer\nMauro\nRandal\nRueben\nAdrien\nAlexandre\nBo\nChristina\nClyde\nDanilo\nDavion\nDonnie\nFranco\nHuy\nIrving\nJasen\nJerod\nKeegan\nKim\nMohammed\nRefugio\nTrayvon\nVeronica\nAlden\nBrandin\nBrenda\nCassidy\nCheyne\nColton\nCrystal\nDakota\nDino\nDonny\nEzra\nHarley\nJan\nJered\nJonah\nJordon\nKiel\nKris\nLane\nLino\nLisandro\nMorris\nOtis\nRobbie\nRomeo\nRonny\nSalomon\nSarah\nSilvestre\nTory\nTrinidad\nAubrey\nAusten\nBroc\nBrooks\nCecil\nChester\nCornell\nCuong\nDarwin\nDenis\nEloy\nEugenio\nGriffin\nHernan\nJamil\nJerad\nJerardo\nJerrod\nJoesph\nJonas\nJosh\nJovany\nJustine\nJuvenal\nKendrick\nMarcelino\nMarkanthony\nMitchel\nNam\nNima\nPhong\nQuinton\nRaffi\nRandell\nRey\nRusty\nSalvatore\nSamson\nThai\nTrever\nTyron\nVincente\nAkeem\nArnaldo\nAugust\nCaesar\nCamilo\nColt\nCooper\nDagoberto\nDandre\nDave\nDerik\nEmerson\nFaustino\nHarvey\nIra\nJacques\nJanet\nJedidiah\nJessy\nJosedejesus\nKelsey\nKenji\nKristen\nLuciano\nMarty\nMichel\nMichelle\nMickey\nMuhammad\nPaulo\nPheng\nPrince\nRhett\nScotty\nTommie\nWendell\nWilbert\nWill\nAdrain\nAlejandra\nAmado\nAmador\nAmanda\nAram\nArmen\nBee\nBrain\nCale\nChasen\nChristoper\nCordell\nDaron\nDesean\nDevan\nDeven\nDewayne\nDurrell\nFlorentino\nHank\nHeath\nJeramie\nJeremey\nKaleb\nKalen\nKalvin\nKameron\nKao\nKevan\nKeven\nKong\nLevon\nLuther\nMargarito\nRussel\nSione\nSky\nThanh\nTrung\nUbaldo\nUlisses\nVidal\nViet\nWhitney\nAhmed\nAlain\nAnderson\nAntwon\nAxel\nBao\nBenson\nCindy\nCordero\nDemario\nDeshaun\nDonnell\nEdmundo\nErvin\nFabio\nGarrison\nGrayson\nHassan\nIrvin\nJade\nJonpaul\nJorje\nKeaton\nKenton\nLamarr\nLars\nMarcell\nMartel\nMatt\nMinh\nOtto\nPao\nPascual\nRayshawn\nReggie\nRenee\nRichardo\nRobby\nRocio\nRoque\nSherman\nSimeon\nSon\nTucker\nTylor\nVanessa\nVinh\nVu\nZechariah\nAmos\nArt\nBernardino\nBijan\nBradly\nBritton\nBrody\nBronson\nCain\nCamron\nClaude\nClemente\nDavin\nDirk\nDusty\nEarnest\nEdmond\nErika\nFausto\nFiliberto\nFlorencio\nForest\nGarett\nGerson\nGreggory\nHilario\nHung\nIbrahim\nJabari\nJed\nJerrell\nJody\nJonnathan\nJusten\nLauren\nLeif\nLowell\nMalachi\nMarquise\nNancy\nNehemiah\nNery\nOrion\nPaolo\nPatricia\nPierce\nRojelio\nRommel\nSandeep\nSherwin\nSilas\nTorrey\nVaughn\nWestley\nWillis\nWilly\nAl\nAndrez\nAric\nAsher\nBennett\nBernabe\nBlas\nBob\nBrandt\nBraulio\nBruno\nCelestino\nChistopher\nChristofer\nCristina\nCullen\nDajuan\nDanial\nDanielle\nDereck\nDerrek\nDerrik\nDiana\nDonavan\nDontae\nEliot\nEmmett\nEnoch\nErasmo\nEsequiel\nGabriela\nGil\nGrady\nGregg\nGus\nHubert\nIsai\nJacobo\nJamel\nJamin\nJerel\nJereme\nJermey\nJeronimo\nJovanny\nJulien\nKalin\nLauro\nLuisalfredo\nMackenzie\nMarcio\nMartell\nMatias\nMaximillian\nMeng\nMichale\nNavid\nNikhil\nNikolaus\nPhilippe\nQuang\nRigo\nRony\nRosario\nRyne\nSandy\nScot\nShelby\nStephanie\nSven\nTeodoro\nThaddeus\nTitus\nUriah\nWallace\nAbelardo\nApolonio\nBaby\nBaltazar\nBarney\nBenedict\nBenigno\nBennie\nBlane\nBoris\nBrannon\nBrennen\nBuck\nCarmelo\nChauncey\nCheng\nColeman\nDalton\nDara\nDarrick\nDelbert\nDemetri\nDenver\nDerrell\nDonta\nElisha\nEmil\nEsau\nEusebio\nFlavio\nFong\nFranky\nGareth\nGer\nHai\nHarris\nHoang\nIsiah\nIsreal\nJensen\nJeromy\nJerrad\nJhon\nJory\nJoseantonio\nKhoa\nKraig\nLaron\nLavell\nLeobardo\nLiam\nLindsey\nLyndon\nMarcoantonio\nNabil\nNathen\nNicole\nNiles\nPhi\nPorfirio\nRaudel\nReece\nReese\nReymundo\nRickie\nRonell\nRoosevelt\nRosa\nRyon\nSamer\nSamual\nSerjio\nShon\nStacy\nStephon\nTalon\nTerell\nTim\nVirgil\nVladimir\nYeng\nAbner\nAdnan\nAdriana\nAdriel\nAlton\nAmar\nAn\nAna\nAnders\nAngelica\nAnh\nAntione\nAntone\nAra\nArian\nArya\nAugustin\nBert\nBrien\nBryn\nBurton\nCecilio\nCharley\nChet\nChristoher\nChristophe\nCliff\nCoty\nDang\nDangelo\nDejuan\nDemetrio\nDeonte\nDiamond\nDimitri\nDionicio\nEdgard\nEliezer\nElvin\nEphraim\nEver\nFrancesco\nGarin\nGenesis\nGian\nHarlan\nHarout\nHarpreet\nIsidoro\nJacinto\nJavon\nJeanpierre\nJermain\nJoanna\nJob\nJorgeluis\nKarim\nKarina\nKc\nKennedy\nKimberly\nKimo\nMadison\nMalik\nManny\nMarcello\nMarlin\nMarshal\nMaximiliano\nMegan\nMelissa\nMichaelanthony\nMilan\nModesto\nMonica\nMonty\nNader\nNarciso\nNiall\nParis\nPrinceton\nQuintin\nRahul\nRajiv\nRamsey\nRasheed\nRashid\nRenato\nRishi\nSai\nSamir\nSantino\nSevag\nShelton\nSpenser\nStevan\nSunil\nSydney\nTaurean\nTevita\nTheo\nTimmothy\nTimmy\nTurner\nVicent\nVijay\nVishal\nWaylon\nWillard\nZack\nAdolph\nAjay\nAlessandro\nAlphonso\nAngela\nAnson\nArash\nArin\nArmon\nArnel\nAsa\nBernie\nBinh\nBjorn\nBuddy\nCandido\nCarey\nChandler\nChao\nChong\nClaudia\nCoby\nCoy\nCuauhtemoc\nCynthia\nDaisy\nDaneil\nDanniel\nDao\nDarcy\nDarron\nDemarcus\nDimas\nDonell\nDurell\nDuy\nElbert\nElton\nEnrico\nErrick\nFavio\nGarrick\nGeronimo\nGianni\nGideon\nGiorgio\nGiovani\nImmanuel\nJacqueline\nJamelle\nJarrell\nJarryd\nJarvis\nJayme\nJenaro\nJerell\nJessi\nJoan\nJohathan\nJohnmichael\nJonatan\nJorden\nJoshuah\nJuventino\nKellan\nKhang\nKunal\nLavelle\nLeandre\nLeng\nLorena\nLue\nLukas\nLy\nMarcial\nMarino\nMarkell\nMicahel\nMichal\nMigel\nMilo\nMohamad\nMohamed\nMonte\nNevin\nNolberto\nNorbert\nPercy\nRavi\nRaymon\nRebecca\nRodger\nRohit\nRosalio\nRoscoe\nSameer\nSandra\nSang\nSeng\nSerafin\nServando\nSesar\nShan\nShay\nSilvano\nStevie\nSyed\nTai\nTeng\nTheron\nTrey\nTye\nTyree\nUlices\nValentino\nVikram\nVirgilio\nVue\nWalker\nWendy\nWilfred\nWilliams\nYer\nYonatan\nYousef\nAidan\nAlbaro\nAlfonzo\nAmer\nAndrae\nAngeldejesus\nAntwone\nArchie\nAristeo\nArlen\nArman\nArmondo\nArvin\nAuston\nAvraham\nBart\nBenton\nBobak\nBrant\nBritt\nBrittan\nBrook\nByran\nCarmen\nCha\nChistian\nChristen\nChue\nCorbin\nCord\nCornelio\nCortney\nCurt\nCyle\nDaivd\nDamion\nDayne\nDayton\nDeangelo\nDenise\nDeondre\nDeron\nDestin\nDevlin\nDomenic\nDomonique\nDuc\nDuran\nEaston\nEd\nElan\nElio\nEmery\nFrederic\nFue\nGeovanni\nGildardo\nHasan\nHeather\nHenri\nHiram\nHouston\nIban\nIchael\nIsabel\nJabier\nJair\nJarell\nJarret\nJashua\nJeanette\nJefferey\nJerred\nJethro\nJimi\nJohan\nJohann\nJonny\nJonthan\nJosede\nJovon\nJuaquin\nJuston\nKahlil\nKane\nKenyon\nKeoni\nKhalid\nKing\nKori\nKy\nKyler\nLaura\nLavon\nLeandro\nLemuel\nLeron\nLeticia\nLincoln\nLisa\nLuc\nLynn\nMack\nMarko\nMaxim\nMichaelangelo\nMikael\nMychael\nMychal\nNapoleon\nNguyen\nNhan\nOri\nPeng\nQuan\nRamone\nRaquel\nRemington\nReno\nRichie\nRufus\nRyder\nRylan\nSabino\nSal\nSarkis\nSaulo\nSchuyler\nSeamus\nShahin\nShaunt\nSundeep\nTam\nTarik\nTariq\nTerron\nThien\nThor\nTien\nTiffany\nTito\nToni\nTrevin\nTrevon\nTyrel\nYosef\nYoung\nAbdul\nAkira\nAlegandro\nAlek\nAlicia\nAlison\nAlphonse\nAmandeep\nAmilcar\nAmin\nAmy\nAnand\nAnastacio\nAnselmo\nArmond\nArnie\nAugusto\nBasil\nBladimir\nBlain\nBlanca\nBlayne\nBlong\nBonifacio\nBravlio\nBrennon\nBrion\nBrittany\nCal\nCarnell\nCelso\nChan\nChrystian\nCiro\nCodey\nConstantino\nCrispin\nCristhian\nDain\nDallin\nDarell\nDarian\nDaryll\nDat\nDaveon\nDax\nDeante\nDeanthony\nDelano\nDelvin\nDeric\nDerric\nDeshon\nDionte\nDmitri\nDominque\nDung\nDupree\nEdison\nEhren\nEldon\nEliazar\nElihu\nEllison\nEmmitt\nErica\nErrol\nEvaristo\nEvin\nFortino\nFransico\nGabino\nGarland\nGaspar\nGaston\nGloria\nGumaro\nGurpreet\nHaig\nHal\nHan\nHansel\nHayden\nHipolito\nHomero\nHong\nHorace\nImran\nIsac\nIshmael\nJafet\nJai\nJamarr\nJamon\nJanmichael\nJarel\nJarom\nJarrad\nJaryd\nJedediah\nJenna\nJens\nJerick\nJoeseph\nJohannes\nJonmichael\nJosemanuel\nJuanito\nJude\nJulia\nJuliocesar\nJustino\nKamron\nKarla\nKendal\nKhanh\nKieran\nLemar\nLiliana\nLinda\nLinh\nMacario\nMagdaleno\nMarcellus\nMaribel\nMarion\nMathieu\nMaverick\nMaximino\nMckinley\nMichaeljohn\nMikal\nMikhail\nMitch\nMustafa\nMykel\nMynor\nNicholes\nNicholos\nNicklas\nNicklaus\nObed\nOdell\nOmid\nOrry\nPatricio\nPaulino\nPeyton\nPhilipe\nPhu\nQuinten\nRachel\nRainier\nRaj\nRamzi\nRand\nRandel\nRandon\nRashaad\nRashawn\nReza\nRhys\nRod\nRodrick\nRohan\nRomel\nRondell\nRonnell\nRudi\nRufino\nSaeed\nSage\nSalbador\nSami\nSan\nSawyer\nSevero\nShad\nSomnang\nTal\nTerrel\nTimoteo\nToua\nTramaine\nTravell\nTraveon\nTravion\nTristen\nTristian\nTriston\nTruman\nValentine\nVang\nVictoria\nVito\nVivek\nWiliam\nYancy\nYee\nZakary\nAbdiel\nAbelino\nAble\nAbrahan\nAbran\nAcie\nAdeel\nAdison\nAdriano\nAj\nAkash\nAlberta\nAlejando\nAlexzander\nAllison\nAlverto\nAmbrose\nAndrey\nAntuan\nAntwain\nApollo\nAren\nAria\nAriana\nArie\nArmin\nArtin\nAsad\nAudel\nBabak\nBarak\nBarton\nBasilio\nBayron\nBilal\nBlaze\nBobbie\nBradlee\nBradon\nBrayan\nBrayden\nBrodie\nCade\nCamden\nCandelario\nCarlin\nCervando\nChace\nCharlton\nChay\nChristan\nChristapher\nChristiaan\nChristin\nChristine\nChristoffer\nCj\nClive\nCosme\nCuahutemoc\nDai\nDameon\nDarien\nDarion\nDarris\nDaunte\nDelfino\nDemar\nDemond\nDerron\nDerwin\nDevonte\nDewey\nDomonic\nDoyle\nDru\nEctor\nEgan\nEladio\nEliana\nEliceo\nEmir\nEricson\nEsgar\nEsmond\nFabiola\nFarid\nFelton\nFlint\nFrisco\nFroylan\nGaetano\nGaro\nGarth\nGavino\nGeovanny\nGermaine\nGerrit\nGerry\nGiovanny\nGlendon\nGonsalo\nGray\nGustabo\nHa\nHagop\nHakop\nHalley\nHamilton\nHerminio\nHerschel\nHien\nHiep\nHieu\nHomer\nHovsep\nIain\nIlan\nJacky\nJacoby\nJaison\nJamall\nJamey\nJanathan\nJane\nJaret\nJarett\nJasmin\nJasson\nJavan\nJayro\nJc\nJeancarlo\nJelani\nJeron\nJhonatan\nJimmylee\nJjesus\nJoao\nJocob\nJoell\nJomar\nJonatha\nJonerik\nJorel\nJoseangel\nJoselito\nJospeh\nJossue\nJosua\nJourdan\nJovanie\nJuanmanuel\nJules\nJun\nJushua\nKayvon\nKellin\nKeon\nKeone\nKerwin\nKhristopher\nKlaus\nKonrad\nKourosh\nKu\nKwame\nKye\nLamberto\nLamonte\nLan\nLanden\nLanny\nLeighton\nLennon\nLenny\nLesley\nLindsay\nLizette\nLoran\nLourdes\nLuca\nLucky\nLuigi\nLuisalberto\nMac\nMalcom\nMandeep\nMarek\nMarie\nMarin\nMarkeith\nMarqus\nMarshawn\nMateo\nMattew\nMaximo\nMelchor\nMick\nMong\nMoshe\nMostafa\nNatividad\nNaveen\nNeftali\nNhia\nNicky\nNicolaus\nNorris\nOmero\nOren\nOsiel\nOsmin\nPascal\nPatric\nPaula\nPayton\nPhuong\nPrice\nQuoc\nRajan\nRaleigh\nRami\nRandolf\nRatana\nRaymund\nRefujio\nRenard\nRicard\nRich\nRichmond\nRio\nRito\nRobb\nRobinson\nRoel\nSantana\nSarith\nShaine\nSharon\nShaughn\nSheridan\nShiloh\nSiaosi\nSilvino\nSina\nSixto\nSkye\nSmith\nSophal\nSophana\nStacey\nSteffan\nSteffen\nStepan\nTakashi\nTavis\nTerrill\nThad\nThao\nThong\nThuan\nToan\nTomer\nTorian\nToribio\nTorin\nTorrance\nTramel\nTristin\nTu\nTung\nTyrus\nVernell\nVi\nVic\nVincenzo\nVinson\nVittorio\nWaldo\nWard\nWes\nWilfrido\nWillian\nYesenia\nYovany\nYusef\nYusuf\nMichael\nChristopher\nDaniel\nDavid\nMatthew\nAndrew\nJoshua\nRobert\nAnthony\nRyan\nJose\nJoseph\nJonathan\nJohn\nJustin\nJames\nKevin\nEric\nNicholas\nJason\nBrian\nSteven\nBrandon\nKyle\nRichard\nWilliam\nAlexander\nJuan\nJeffrey\nSean\nThomas\nTimothy\nAdam\nAaron\nLuis\nJacob\nBenjamin\nMark\nJeremy\nCarlos\nScott\nPaul\nJesse\nBryan\nJesus\nSamuel\nTyler\nTravis\nPatrick\nMiguel\nStephen\nZachary\nCharles\nGregory\nKenneth\nVictor\nFrancisco\nNathan\nJorge\nEdward\nJordan\nManuel\nGabriel\nAdrian\nDerek\nChristian\nAlex\nAntonio\nEdgar\nRicardo\nMario\nPeter\nRaymond\nDustin\nAlejandro\nCody\nOscar\nErik\nSergio\nJoel\nHector\nMartin\nVincent\nRuben\nFrank\nIan\nRoberto\nJavier\nJared\nGeorge\nShane\nBradley\nAngel\nChad\nFernando\nCameron\nShawn\nCory\nPhillip\nBrett\nTrevor\nEduardo\nCorey\nRonald\nEvan\nRaul\nArmando\nCasey\nMarcus\nAlan\nHenry\nGarrett\nJaime\nDanny\nJohnny\nAustin\nKeith\nRafael\nNathaniel\nPedro\nOmar\nCesar\nDonald\nArturo\nSalvador\nIvan\nAlbert\nAlberto\nPhilip\nDevin\nTony\nAndres\nJulio\nRandy\nJulian\nDouglas\nGary\nEmmanuel\nRamon\nSpencer\nDennis\nGustavo\nAlfredo\nSteve\nTaylor\nIsaac\nJimmy\nRene\nGerardo\nEnrique\nMarco\nWesley\nErnesto\nEdwin\nDerrick\nBlake\nDylan\nJohnathan\nRussell\nMitchell\nAndre\nArthur\nErick\nAllen\nBrent\nCurtis\nMax\nMathew\nAbraham\nMarc\nCraig\nJoe\nColin\nLarry\nKristopher\nMarcos\nNicolas\nShaun\nDominic\nJeremiah\nDiego\nTroy\nJerry\nTodd\nGilbert\nLouis\nRicky\nJonathon\nLawrence\nRudy\nJake\nJack\nAndy\nChase\nBryant\nJosue\nBryce\nDarren\nWalter\nLucas\nRoger\nJeffery\nEddie\nGrant\nRodolfo\nSeth\nLuke\nSaul\nJessie\nRandall\nGuillermo\nLance\nBrendan\nPablo\nBobby\nIsrael\nMaxwell\nClayton\nAlfonso\nCalvin\nCarl\nHugo\nMicheal\nRogelio\nIsmael\nCaleb\nGeoffrey\nAbel\nMarvin\nLogan\nRoy\nMoises\nFelipe\nFabian\nErnest\nOrlando\nElias\nLorenzo\nGerald\nRoss\nEsteban\nJon\nBilly\nDrew\nTheodore\nJay\nMorgan\nRodney\nLee\nDevon\nMiles\nNeil\nLeonard\nAlvaro\nByron\nRamiro\nTerry\nAlfred\nFelix\nHumberto\nFreddy\nTommy\nGilberto\nNelson\nGiovanni\nDean\nMaurice\nRonnie\nXavier\nEugene\nRay\nLeonardo\nReginald\nSimon\nClinton\nNickolas\nTristan\nBranden\nCole\nNoah\nAdan\nDarrell\nFrederick\nJoey\nNoe\nEmanuel\nGlenn\nWayne\nDale\nJamie\nJerome\nJoaquin\nRalph\nWillie\nAlvin\nBruce\nNoel\nDeandre\nEfrain\nIgnacio\nAllan\nRigoberto\nFranklin\nIsaiah\nOliver\nRodrigo\nCristian\nAlexis\nVicente\nJamal\nLevi\nMicah\nElijah\nDarryl\nKelly\nPreston\nRolando\nDillon\nEmilio\nFrancis\nGavin\nClifford\nMauricio\nTyson\nAgustin\nCollin\nSantiago\nAngelo\nDane\nNestor\nRoman\nStanley\nCharlie\nLeo\nDamian\nMike\nSam\nLeonel\nNolan\nHunter\nKenny\nMason\nStephan\nFrankie\nOctavio\nTyrone\nDaryl\nRick\nAdolfo\nAntoine\nSebastian\nWade\nWarren\nBrad\nEthan\nKurt\nTerrence\nConnor\nDon\nStuart\nTomas\nKirk\nLeon\nLouie\nKurtis\nAlec\nHarold\nKelvin\nMelvin\nChris\nDamien\nDonovan\nElliott\nGonzalo\nJairo\nKarl\nLamar\nRoland\nEli\nJohnathon\nGuadalupe\nMoses\nMyles\nRory\nBret\nLandon\nMarlon\nBrennan\nDamon\nDante\nHoward\nMarshall\nUlysses\nAldo\nBernardo\nReuben\nHarrison\nHarry\nArnold\nColby\nBeau\nBrady\nJosiah\nKent\nLoren\nSkyler\nTerrance\nFidel\nRaymundo\nTerrell\nLewis\nSantos\nStefan\nAlonzo\nCristopher\nFreddie\nKory\nNorman\nAmir\nDominique\nElliot\nMalcolm\nPierre\nWyatt\nJayson\nJoseluis\nNick\nRiley\nTrenton\nZachariah\nBrenton\nBrock\nDallas\nHeriberto\nReynaldo\nUriel\nBlaine\nDarnell\nJermaine\nOsvaldo\nPerry\nWeston\nDwayne\nEfren\nFred\nLionel\nWilson\nAli\nBrenden\nClarence\nDario\nGerman\nGraham\nGregorio\nJeff\nJulius\nMarcel\nMarquis\nNathanael\nDeshawn\nDexter\nForrest\nKellen\nDan\nEarl\nElvis\nJackson\nDana\nDarin\nIsidro\nRashad\nTanner\nZackary\nBernard\nDominick\nDwight\nGlen\nLloyd\nTrent\nBarry\nCedric\nDesmond\nJessica\nJohnson\nTerence\nUlises\nVernon\nAriel\nDorian\nErnie\nFederico\nGordon\nIsaias\nJarred\nJim\nMohammad\nDakota\nDarius\nGuy\nJohnnie\nRoderick\nTed\nTom\nEstevan\nRobin\nSammy\nBrendon\nDavis\nDerick\nDuane\nKorey\nMilton\nRocky\nSonny\nAshley\nBenny\nBrice\nClark\nJohnpaul\nKody\nOwen\nBryon\nChance\nDemetrius\nDonte\nGene\nJuancarlos\nAlexandro\nClint\nConrad\nJarrett\nJovan\nKen\nParker\nRickey\nSterling\nBen\nElmer\nGarret\nHerman\nQuinn\nSkylar\nJamar\nJess\nPete\nTyrell\nZachery\nAlonso\nGenaro\nJimmie\nKasey\nKristian\nMiguelangel\nWilfredo\nCarson\nEdwardo\nJarrod\nLonnie\nMaximilian\nBradford\nClay\nConor\nEliseo\nErwin\nJarod\nKristofer\nMychal\nNikolas\nAhmad\nAvery\nCarlton\nDarrin\nLyle\nMarcelino\nNeal\nTy\nCarlo\nFloyd\nJean\nKeven\nLeopoldo\nRandolph\nStewart\nValentin\nAddison\nBenito\nCourtney\nCristobal\nCruz\nGino\nHans\nJamaal\nJaron\nMaria\nRandal\nReid\nShea\nTou\nZane\nChadwick\nDion\nEverardo\nEverett\nEzequiel\nFredrick\nGerard\nLester\nRon\nTracy\nAntony\nErich\nHernan\nMarcelo\nMariano\nMarkus\nShayne\nArnulfo\nAron\nArron\nChaz\nDave\nEdgardo\nFranco\nFredy\nRex\nShannon\nSolomon\nAndreas\nClifton\nCyrus\nDenny\nDeon\nDevan\nElizabeth\nGalen\nHarvey\nHerbert\nIrvin\nIssac\nJameson\nJasper\nJordon\nKaleb\nKeenan\nLeslie\nMackenzie\nRaphael\nTuan\nVance\nAmit\nAnton\nAshton\nBryson\nColton\nGrayson\nIrving\nKendrick\nKristoffer\nOswaldo\nReed\nRosendo\nSheldon\nSpenser\nTeddy\nTobias\nTory\nTravon\nWill\nBrain\nBraulio\nChester\nColt\nDarrel\nDomingo\nDusty\nGarry\nGriffin\nJunior\nKerry\nLeroy\nLuiz\nNigel\nRudolph\nToby\nWestley\nZackery\nCaesar\nGiancarlo\nIsiah\nJamison\nJeromy\nJessy\nJosef\nLamont\nLeland\nNima\nOsbaldo\nRoyce\nAdalberto\nBrandan\nCorbin\nDavon\nDewayne\nEddy\nEriberto\nHoracio\nJackie\nJennifer\nKendall\nLazaro\nLuciano\nLucio\nMarques\nMauro\nMaximillian\nMohammed\nQuentin\nQuincy\nRhett\nRico\nSidney\nAnibal\nAurelio\nClaudio\nDeven\nEdmund\nFiliberto\nGorge\nGrady\nHeath\nJeramy\nJerrod\nJoesph\nKeegan\nLane\nLeobardo\nLong\nRobby\nTrinidad\nAlain\nArnoldo\nBlair\nBradly\nBrenda\nCooper\nCornelius\nEder\nJamil\nJefferson\nJeffry\nJuanmanuel\nMarquise\nMyron\nNorberto\nParis\nRamsey\nReyes\nSalvatore\nTitus\nVirgil\nClemente\nEzra\nGreg\nJamel\nJerald\nJessi\nJonah\nLaurence\nRomeo\nWinston\nAdriel\nAlden\nAlton\nAugustine\nBarrett\nBill\nBraden\nBrooks\nCary\nDalton\nDanilo\nDarwin\nDemario\nDonnie\nDuncan\nEmiliano\nErin\nFermin\nGiovanny\nHugh\nKameron\nMaximiliano\nMayra\nMitchel\nPhong\nStephanie\nTrever\nVidal\nAlphonso\nArash\nArman\nBaltazar\nBennett\nCheyne\nChristina\nColeman\nDandre\nDeonte\nDonavan\nErasmo\nHilario\nJered\nJosh\nKareem\nLino\nMelissa\nMohamed\nPascual\nScotty\nTommie\nTorrey\nVince\nYesenia\nArmen\nBrandyn\nCamilo\nCarter\nDamion\nDaren\nDejuan\nDerik\nDonnell\nErvin\nFaustino\nJefferey\nJerardo\nJerrell\nKalen\nKao\nKenton\nMarty\nMichel\nMichelle\nMikel\nNam\nPaulo\nPierce\nRey\nRonny\nShant\nSylvester\nTimmy\nUbaldo\nValentino\nVaughn\nAnderson\nCassidy\nCeasar\nChandler\nConner\nDiana\nEdmond\nEdson\nEmerson\nFausto\nGarett\nGil\nJerad\nKai\nKamran\nKou\nLauren\nMadison\nMarcial\nMarkanthony\nNancy\nNehemiah\nNery\nNicholaus\nQuintin\nRueben\nSamir\nSamson\nThaddeus\nThanh\nTrayvon\nVan\nWilly\nAhmed\nAl\nAmos\nAri\nArmand\nCheng\nChristoper\nCordero\nCornell\nDerrek\nDontae\nEdmundo\nEzekiel\nFavian\nFransisco\nGerry\nGregg\nHarley\nHassan\nJace\nJayce\nJayme\nJedidiah\nJerod\nJohathan\nJulien\nKyler\nMalachi\nMigel\nMinh\nMonte\nRaymon\nRusty\nScot\nShelby\nSherman\nSunny\nTim\nTucker\nTylor\nWilmer\nArtemio\nAubrey\nAusten\nBee\nBernabe\nBronson\nCale\nDaron\nDeric\nDrake\nEdgard\nEloy\nHuy\nJarell\nJeramie\nJonas\nJovani\nJovanny\nKeaton\nKelsey\nKevan\nKiel\nLaron\nLeif\nLukas\nMarcell\nMateo\nMickey\nMychael\nOtto\nRenato\nRussel\nSalomon\nSarkis\nSerjio\nStephon\nTrey\nTyree\nUriah\nVu\nAbram\nAmador\nAndrea\nAntione\nArnaldo\nBijan\nCamron\nChasen\nClyde\nCyle\nDashawn\nDenver\nEliot\nEllis\nElton\nFlorencio\nFrancesco\nGabino\nGabriela\nGarth\nGiovani\nHayden\nJacques\nJavon\nJaymes\nJohny\nJuliocesar\nJusten\nKaren\nKennith\nKris\nManny\nMartel\nMisael\nNathanial\nNicole\nOmid\nOtis\nRefugio\nRenee\nRichardo\nRojelio\nSang\nSilas\nTad\nTong\nTrung\nVanessa\nVincente\nAjay\nAlexandre\nAnders\nArian\nAric\nAxel\nBao\nBo\nBrandin\nBrennen\nBuddy\nCecil\nCedrick\nCelso\nCordell\nDagoberto\nDenis\nDino\nDuke\nEmmett\nFabio\nFlavio\nGreggory\nHagop\nHeather\nHung\nIsabel\nJan\nJarvis\nJasen\nJeremie\nJerimiah\nJody\nJonatan\nJonnathan\nJustine\nJustyn\nJuvenal\nKim\nKraig\nMarcellus\nMarcoantonio\nMikael\nMitch\nMuhammad\nNikhil\nPheng\nPrince\nRamin\nReggie\nRichie\nRodger\nRyland\nTito\nUlisses\nViet\nVito\nWendell\nWillis\nAbelardo\nAidan\nAlbaro\nAmanda\nAmar\nAnson\nAram\nArchie\nBaron\nBenedict\nBennie\nBoris\nCalen\nCarey\nChan\nChistopher\nChong\nChristen\nClaudia\nCristina\nCuong\nCurt\nDarrick\nDeandra\nDelbert\nDenise\nDonny\nEnoch\nEnrico\nErrol\nEsequiel\nFong\nGeraldo\nHank\nHoang\nImmanuel\nJakob\nJamelle\nJerel\nJereme\nJeremey\nKane\nKellan\nLeandro\nLevon\nLiam\nLowell\nLuther\nMargarito\nMartell\nMeng\nMonica\nMoshe\nNader\nOrion\nPao\nPhilippe\nQuang\nRachel\nRickie\nRigo\nRitchie\nRobbie\nRohan\nRony\nRosalio\nSal\nSandra\nSarah\nSchuyler\nStacy\nTalon\nTarek\nTimmothy\nWilliams\nZechariah\nAce\nAdriana\nAlejandra\nAnselmo\nArmond\nArvin\nBillie\nBrittany\nBuck\nCarlin\nDaisy\nDaneil\nDavin\nDavion\nDejon\nDerrell\nDerrik\nDesean\nDevyn\nDimitri\nDirk\nDouglass\nEldon\nErika\nForest\nFrederic\nGaren\nGeovanni\nGerson\nGian\nHamilton\nIra\nJabari\nJashua\nJed\nJeremias\nJosedejesus\nJovany\nJovon\nJuanjose\nJuanpablo\nKong\nLars\nLauro\nLindsey\nLyndon\nMacario\nMarcello\nMarquez\nMary\nMatt\nMikhail\nMorris\nNathen\nNorris\nPatricia\nPeng\nPercy\nReno\nReymundo\nRian\nRommel\nSamer\nSamual\nSasha\nServando\nShay\nShiloh\nShon\nSon\nSteffan\nThai\nTravion\nTrevin\nTrevon\nTu\nWhitney\nWilbert\nWillard\nAbrahan\nAlfonzo\nAmado\nAntwan\nApollo\nAris\nArya\nAugust\nBaby\nBert\nBlayne\nBob\nCamden\nCandelario\nCandido\nCarmen\nCecilio\nCharley\nCheyenne\nClaude\nConrado\nCord\nCorwin\nDanniel\nDarian\nDelfino\nDionte\nEdison\nEleazar\nEly\nEmil\nEsau\nEvelyn\nFeliciano\nFranklyn\nGarrick\nGarrison\nGaspar\nGaston\nGer\nGerrit\nGray\nHieu\nHolden\nIsrrael\nJarret\nJeanpaul\nJoan\nJoanthan\nJohannes\nJorje\nJory\nJoseangel\nJosede\nJosemanuel\nJourdan\nJudah\nKimberly\nKirby\nKristen\nLuismiguel\nLynn\nMalik\nMatthias\nMoua\nNeema\nNikolaus\nNiles\nObed\nOren\nPaolo\nPorfirio\nQuinton\nRahul\nRamses\nReece\nRemington\nRemy\nReza\nRob\nRocio\nRoosevelt\nSalman\nSantino\nSara\nShan\nSkye\nStefano\nSteffen\nTai\nTam\nTheo\nTino\nTorin\nTristen\nTye\nTyron\nVang\nVeronica\nVikram\nVishal\nAbner\nAdil\nAdrain\nAkeem\nAlessandro\nAna\nAngelica\nAnil\nBarron\nBenton\nBobbie\nBritton\nBroc\nBruno\nChristoher\nCoby\nCoty\nCourtland\nCrystal\nCuauhtemoc\nCynthia\nDaivd\nDara\nDeangelo\nDemetri\nDereck\nDeron\nDeshaun\nDeshon\nDimas\nDionicio\nDomenic\nDonell\nDurrell\nDwain\nEarnest\nEden\nElan\nElbert\nEliazar\nEmily\nEver\nFerdinand\nFletcher\nFortino\nGeno\nGianni\nGideon\nGiorgio\nHomero\nHouston\nHubert\nIain\nIlan\nJacobo\nJacqueline\nJarrell\nJaysen\nJazmin\nJeanette\nJedediah\nJerrad\nJerred\nJohnmichael\nJonny\nJovanni\nJules\nJuston\nKale\nKevon\nKhang\nKhristopher\nKunal\nLamonte\nLaura\nLincoln\nLuisangel\nMaritza\nMatias\nMaximino\nMichaelanthony\nMichale\nMikal\nMilo\nMustafa\nMynor\nNajee\nNapoleon\nNatalie\nPaulino\nPhillipe\nPhuc\nQuoc\nRaj\nRavi\nRayshawn\nReese\nRenzo\nRhys\nRicahrd\nRocco\nRod\nRoyal\nRufino\nRyne\nRyon\nSamantha\nSameer\nSan\nSerafin\nSharif\nSherwin\nSione\nSky\nStacey\nStanford\nSundeep\nTobin\nTyrel\nValente\nVicent\nVinh\nXiong\nYeng\nZack\nAbdullah\nAbran\nAdnan\nAdonis\nAkira\nAleksander\nAlexsander\nAlicia\nAnastacio\nAndrae\nAndranik\nAngela\nAngus\nAnh\nAnthoney\nAntone\nAramis\nArmondo\nArsenio\nArt\nAsa\nBailey\nBarney\nBarret\nBenjamen\nBernie\nBlas\nBrandy\nBrant\nBraxton\nBretton\nBrody\nBrook\nCash\nChadd\nChauncey\nChe\nChristine\nChristofer\nChue\nCindy\nCorry\nCortney\nDain\nDameon\nDanial\nDaveon\nDavy\nDelton\nDomonic\nDuran\nEliezer\nElisha\nElvin\nErica\nEsgar\nEtienne\nEugenio\nEusebio\nFlorentino\nFranz\nGerado\nGildardo\nGraeme\nGumaro\nGurpreet\nHarlan\nHasan\nHerschel\nHipolito\nHoua\nHue\nIbrahim\nImran\nIsac\nIsai\nIsreal\nIvory\nJacinto\nJade\nJaimie\nJair\nJameel\nJaspreet\nJensen\nJerin\nJeshua\nJestin\nJob\nJonthan\nJorel\nJoseantonio\nJoshuah\nJuanito\nKalani\nKamal\nKarim\nKarlton\nKc\nKelley\nKenji\nKeon\nKhalid\nKy\nLamberto\nLeandre\nLindsay\nLondon\nLorne\nMarcanthony\nMarko\nMarlin\nMarlo\nMattew\nMckinley\nMelchor\nMicahel\nMichaeljames\nMohamad\nMontana\nMontrell\nNabil\nNguyen\nNicklas\nNicklaus\nNicolaus\nNorbert\nOracio\nOsiel\nPatricio\nPeyton\nQuan\nRaffi\nRaleigh\nRaymund\nRito\nRobbin\nRonnell\nRoque\nRudolfo\nSandro\nSeamus\nShadi\nShaka\nSilvestre\nSimeon\nStanton\nStevie\nSydney\nTan\nTariq\nTeng\nThor\nTramaine\nTristian\nTruman\nVinson\nVladimir\nWaylon\nWendy\nWestin\nYing\nAdel\nAdrien\nAlbino\nAlexandra\nAmandeep\nAmbrose\nAmeer\nAmin\nAmy\nAn\nAnand\nAndrei\nAnsel\nAntonia\nAntuan\nArick\nArlen\nAsher\nAugusto\nAundre\nBasil\nBejamin\nBenson\nBernardino\nBinh\nBjorn\nBlaze\nBooker\nBrandt\nBreck\nBrennon\nBrien\nBroderick\nCatarino\nCha\nChandara\nChantha\nCharly\nChas\nChristoffer\nChristophe\nCiro\nConan\nConstantine\nConstantino\nCullen\nDajuan\nDamen\nDao\nDarryll\nDavione\nDedrick\nDemarcus\nDeondre\nDevion\nDevonte\nDewitt\nDimitrios\nDonato\nDonta\nDoug\nDuc\nDuy\nEdsel\nEladio\nElgin\nElio\nEmery\nEphraim\nEstuardo\nEvaristo\nFarid\nFidencio\nFranky\nGamaliel\nGareth\nGarin\nGarren\nGeoffery\nGeovani\nGeroge\nGeronimo\nGiovannie\nGrigor\nGunnar\nGustabo\nHabib\nHai\nHakim\nHansel\nHenri\nHiram\nHolland\nHomar\nIrwin\nJame\nJamin\nJanet\nJanmichael\nJarad\nJaren\nJarrad\nJarryd\nJasmin\nJayro\nJenaro\nJermey\nJerrick\nJessee\nJevon\nJhon\nJhonathan\nJhonny\nJohann\nJonahtan\nJonatha\nJorden\nJorgeluis\nJosemiguel\nJossue\nJoy\nJr\nJuanluis\nJusto\nKacey\nKaveh\nKeane\nKegan\nKelton\nKenan\nKendell\nKenney\nKenyon\nKeoni\nKieran\nKip\nKolby\nLafayette\nLamarr\nLeigh\nLemar\nLisandro\nLo\nLon\nLoreto\nLorin\nLovell\nLuigi\nMahdi\nMalek\nMarciano\nMarkeith\nMarshawn\nMaxfield\nModesto\nNahum\nNash\nNatividad\nNeftali\nNicky\nNikolai\nNorma\nObrian\nOdell\nPatric\nPayton\nPhi\nPhil\nRami\nRamzi\nRamzy\nRandel\nRandell\nRandon\nRashaad\nRebecca\nRegan\nReinaldo\nRicki\nRishi\nRiver\nRomulo\nRosa\nRustin\nSabino\nSahil\nSai\nSampson\nSandy\nShain\nShelton\nStevan\nSue\nTakashi\nTaron\nTeodoro\nTerrel\nThang\nThien\nTiffany\nTj\nToni\nTracey\nTremayne\nVirgilio\nWaldo\nWaleed\nWallace\nWilber\nWilfred\nWinfred\nYousef\nYusuf\nZach\nAbdul\nAbelino\nAbisai\nAdams\nAditya\nAj\nAlen\nAllyn\nAlvino\nAlwin\nAmadeo\nAmbrosio\nAmilcar\nAndrez\nAnjel\nAnna\nArek\nAren\nArie\nAries\nArin\nAristides\nArjun\nArley\nArmon\nArtis\nAshwin\nAudel\nAugustin\nAugustus\nAziz\nBabak\nBaldomero\nBart\nBayron\nBlaise\nBlane\nBlong\nBobak\nBrannon\nBravlio\nBrayan\nBurton\nByran\nCardell\nCarmelo\nCarnell\nCasimiro\nCesario\nChang\nChanning\nChet\nChirag\nChirstopher\nChrisopher\nChristipher\nChristos\nChrystopher\nColter\nCortez\nCosme\nCy\nDang\nDarion\nDarriel\nDashaun\nDeante\nDeanthony\nDeaundre\nDelano\nDelvin\nDemarco\nDemetris\nDerwin\nDevaughn\nDidier\nDijon\nDjuan\nDomonique\nEdder\nEdlin\nEduard\nEleno\nElie\nEligio\nElpidio\nEmigdio\nEmile\nEnrigue\nEnrrique\nErie\nErrick\nEvin\nFarhan\nFrancisca\nFranciscojavier\nFrancois\nGarland\nGenesis\nGeorgio\nGeovanny\nGeremy\nGermain\nGibran\nGiovany\nGloria\nGlynn\nGraig\nGyasi\nHaig\nHamed\nHamid\nHao\nHarout\nHarpreet\nHawk\nHien\nHollis\nIsacc\nIshmael\nJamari\nJamell\nJazz\nJd\nJelani\nJeramiah\nJerell\nJermiah\nJeron\nJerrel\nJerren\nJerrin\nJoanna\nJocob\nJoeseph\nJohan\nJohnanthony\nJonmichael\nJosemaria\nJosje\nJospeh\nJuaquin\nJudd\nJude\nJulie\nKalvin\nKamron\nKarlos\nKatherine\nKelson\nKennan\nKennedy\nKevyn\nKeyon\nKieth\nKile\nKingsley\nLam\nLaszlo\nLavelle\nLawson\nLeng\nLenin\nLenny\nLiliana\nLisa\nLoc\nLois\nLonny\nLou\nLucky\nLuisalberto\nLupe\nLydia\nMack\nMajid\nManual\nMarion\nMarisol\nMarque\nMarquel\nMarten\nMaurilio\nMaverick\nMaxim\nMerced\nMerritt\nMiklos\nMiquel\nMontgomery\nMykel\nNatanael\nNed\nNghia\nNicholes\nNicholis\nNichols\nNickolaus\nOlin\nOmari\nOmeed\nOsman\nPadraic\nPascal\nPaulmichael\nPhu\nRaheem\nRainier\nRaja\nRajiv\nRandeep\nRashid\nRaudel\nRayn\nRen\nRich\nRiki\nRio\nRj\nRobinson\nRodrick\nRoel\nRomero\nRonaldo\nRondale\nRosario\nRoshan\nRothana\nRudi\nRudolf\nRupert\nRyder\nRylan\nRyle\nSaad\nSage\nSami\nSaulo\nSayed\nSevag\nShae\nShahin\nShaw\nShomari\nSid\nSilvano\nSilvino\nSilvio\nSixto\nSmith\nSocorro\nSonia\nSung\nSyed\nTakuya\nTaurean\nTeofilo\nTheron\nThinh\nToan\nTonny\nToua\nTraveon\nTremaine\nTri\nTriston\nVahe\nValentine\nVannak\nVernell\nVinay\nWatson\nWes\nWilbur\nWoodrow\nYan\nYancy\nYee\nYonatan\nYonathan\nYosef\nZebulon\nZenas\nZiad\nMichael\nChristopher\nDaniel\nDavid\nMatthew\nAndrew\nJoshua\nRobert\nAnthony\nJose\nJonathan\nRyan\nJustin\nJoseph\nJames\nNicholas\nJohn\nKevin\nEric\nBrian\nSteven\nBrandon\nAlexander\nKyle\nRichard\nWilliam\nJason\nJuan\nThomas\nAaron\nSean\nTimothy\nJeffrey\nAdam\nLuis\nJacob\nMark\nCarlos\nJesse\nTyler\nBenjamin\nJesus\nPaul\nJeremy\nZachary\nSamuel\nScott\nPatrick\nBryan\nTravis\nMiguel\nVictor\nCharles\nStephen\nJorge\nFrancisco\nKenneth\nRicardo\nNathan\nChristian\nEdward\nGregory\nAdrian\nGabriel\nAlex\nCody\nJordan\nMario\nManuel\nAntonio\nEdgar\nDerek\nCameron\nRaymond\nErik\nVincent\nPeter\nAlejandro\nOscar\nMartin\nGeorge\nSergio\nEduardo\nDustin\nHector\nJared\nAustin\nIan\nRuben\nJavier\nJoel\nShane\nAngel\nTrevor\nFernando\nFrank\nRoberto\nEvan\nCory\nChad\nPhillip\nShawn\nBradley\nIvan\nRaul\nCorey\nMarcus\nCesar\nTaylor\nJohnny\nDanny\nRonald\nBrett\nJaime\nGarrett\nKeith\nCasey\nOmar\nArmando\nAlberto\nPedro\nRafael\nAlan\nHenry\nAndres\nMarco\nSalvador\nArturo\nNathaniel\nGerardo\nJulian\nDonald\nAlbert\nTony\nSpencer\nGary\nPhilip\nEdwin\nDouglas\nRandy\nDevin\nErnesto\nMitchell\nIsaac\nJimmy\nAlfredo\nJulio\nWesley\nDennis\nBlake\nSteve\nJohnathan\nAbraham\nJoe\nEnrique\nDylan\nCurtis\nRamon\nNicolas\nAndre\nTroy\nEmmanuel\nErick\nGustavo\nMathew\nRene\nBrent\nJerry\nAllen\nCraig\nDerrick\nDiego\nMarcos\nArthur\nRicky\nBryce\nRoger\nLawrence\nRussell\nBryant\nAndy\nJonathon\nLouis\nRudy\nJeremiah\nKristopher\nWalter\nChase\nColin\nMarc\nMax\nLogan\nGuillermo\nJosue\nSeth\nEddie\nLarry\nGilbert\nJack\nJake\nLucas\nDominic\nHugo\nMaxwell\nAlfonso\nGrant\nAbel\nLuke\nTodd\nJeffery\nIsrael\nDarren\nSaul\nMarvin\nCaleb\nCarl\nCalvin\nIsmael\nBrendan\nShaun\nJessie\nPablo\nRandall\nFelipe\nFabian\nRodolfo\nLance\nMoises\nDevon\nGiovanni\nGeoffrey\nLee\nBobby\nEsteban\nGilberto\nGerald\nOrlando\nNoah\nRogelio\nXavier\nJay\nDrew\nElias\nBilly\nMicheal\nRoss\nMiles\nNelson\nJon\nRoy\nTerry\nClayton\nRamiro\nRodney\nBruce\nByron\nRonnie\nIrvin\nCristian\nFreddy\nIsaiah\nMaurice\nNoe\nDean\nErnest\nLeonardo\nTheodore\nTommy\nSimon\nMason\nNestor\nEugene\nAlfred\nRigoberto\nLeonard\nEfrain\nMorgan\nRoman\nMike\nNeil\nRay\nAlvaro\nLorenzo\nAllan\nBranden\nLevi\nMauricio\nAdan\nJoey\nKurt\nDillon\nElijah\nHumberto\nIgnacio\nNickolas\nClinton\nFrancis\nReginald\nWayne\nConnor\nDane\nFranklin\nFelix\nAngelo\nDarryl\nRodrigo\nEthan\nIrving\nJohnathon\nKirk\nJerome\nPreston\nStanley\nNoel\nDeandre\nAlexis\nAlvin\nDominique\nEmilio\nTerrance\nWillie\nCole\nKenny\nRolando\nDamian\nKelly\nDarrell\nSam\nVicente\nFrederick\nGlenn\nMicah\nCollin\nDonovan\nHarrison\nLeonel\nGerman\nTerrence\nJamie\nOctavio\nAgustin\nRalph\nSebastian\nBeau\nJoaquin\nDale\nElliot\nEmanuel\nMelvin\nTomas\nJairo\nClifford\nJackson\nMarlon\nNolan\nOliver\nRick\nTristan\nCharlie\nHarold\nLeo\nSonny\nTrent\nTyrone\nDon\nJamal\nKarl\nSantiago\nKelvin\nTanner\nTyson\nBrennan\nDante\nGonzalo\nMarshall\nMarquis\nMoses\nUlysses\nGuadalupe\nWade\nWilson\nEarl\nEstevan\nChris\nDaryl\nEli\nElliott\nHeriberto\nHunter\nStuart\nHarry\nReynaldo\nAdolfo\nDarnell\nAriel\nFrankie\nJim\nLouie\nNikolas\nTerrell\nZachariah\nArnold\nColton\nGavin\nRory\nBernardo\nDamien\nKurtis\nLandon\nSpenser\nUriel\nOsvaldo\nAlec\nBrady\nBret\nFred\nJayson\nStefan\nChaz\nJarrod\nRiley\nWarren\nDamon\nDonte\nFidel\nFreddie\nJosiah\nPierre\nRoland\nStephan\nTrenton\nAmir\nAntoine\nBlaine\nClarence\nDemetrius\nEfren\nGordon\nLamar\nSkyler\nAlonzo\nKody\nDwayne\nKristofer\nLeon\nLewis\nMalcolm\nMyles\nWeston\nDallas\nErnie\nKory\nTerence\nAli\nForrest\nJoseluis\nKent\nMarcel\nMaria\nNorman\nUlises\nHoward\nLong\nParker\nBen\nDeshawn\nHerman\nNick\nBrad\nBrendon\nSterling\nBrenton\nDan\nEverett\nIsidro\nLoren\nPerry\nDorian\nGlen\nIsaias\nRobin\nBarry\nCorbin\nJeff\nKeenan\nNeal\nAldo\nAlonso\nDominick\nMariano\nRocky\nWestley\nZackary\nBernard\nClark\nConor\nConrad\nDerick\nDwight\nGraham\nJarrett\nJulius\nSantos\nWyatt\nColby\nDarin\nDarius\nDexter\nElvis\nGuy\nKellen\nKendall\nMychal\nRoderick\nAlexandro\nDakota\nGarret\nJarred\nMohammad\nBrenden\nHerbert\nKameron\nRashad\nCedric\nCristopher\nDana\nElmer\nJermaine\nOwen\nRaymundo\nClifton\nGene\nKasey\nMilton\nNathanael\nRickey\nSammy\nTom\nAddison\nBrock\nChance\nEzequiel\nJovan\nLeland\nLloyd\nTy\nAurelio\nCarlo\nDario\nDesmond\nEddy\nEliseo\nJohnnie\nMarquise\nReuben\nVance\nVernon\nIssac\nKristian\nLionel\nZackery\nBrice\nCaesar\nDavis\nEdgardo\nJessica\nKorey\nLeopoldo\nQuinn\nShayne\nSheldon\nArnulfo\nAron\nBryon\nEverardo\nLester\nShea\nFredy\nGregorio\nGriffin\nLeroy\nLeslie\nMiguelangel\nValentin\nDuane\nGenaro\nJaron\nKendrick\nPete\nSamson\nSkylar\nTed\nZachery\nDevan\nDion\nErwin\nFredrick\nHarvey\nHoracio\nJamar\nJimmie\nLonnie\nMarkus\nMitchel\nNigel\nBenito\nBill\nConner\nCruz\nErich\nErvin\nQuentin\nShannon\nSidney\nTracy\nWinston\nZane\nBryson\nClay\nClint\nCourtney\nEzekiel\nGino\nJuancarlos\nOswaldo\nParis\nRandal\nAshton\nBennett\nBenny\nBradford\nChandler\nCyrus\nDomingo\nDrake\nEriberto\nFederico\nHernan\nJasper\nJunior\nKerry\nMarcelo\nSolomon\nAhmed\nAnton\nBradly\nBrain\nBraulio\nCarter\nDarrin\nDavion\nEdmund\nEdwardo\nGerard\nGiancarlo\nJohnson\nJonah\nDavon\nGeraldo\nJamaal\nJessy\nKen\nReid\nTravon\nAntony\nArron\nAshley\nBarrett\nCarson\nCristobal\nDenny\nEder\nErin\nJess\nJovani\nKai\nLamont\nMackenzie\nMisael\nQuincy\nRon\nRoyce\nStewart\nVidal\nAdalberto\nAvery\nCary\nDalton\nDanilo\nDave\nDeon\nIsai\nKeven\nRosendo\nVanessa\nCarlton\nChristina\nGalen\nHarley\nJameson\nJean\nJordon\nJosh\nLuiz\nMohammed\nRyon\nTyrell\nAhmad\nAugustine\nBraden\nBronson\nCooper\nDarrel\nDarwin\nEdmond\nFloyd\nFranco\nJohnpaul\nLukas\nNorberto\nRandolph\nRhett\nRudolph\nTou\nTrinidad\nWilfredo\nChasen\nHeath\nJonatan\nJovanny\nKaleb\nKim\nLuciano\nMarkanthony\nMauro\nMaximilian\nNathanial\nReed\nRex\nReyes\nToby\nTrever\nValentino\nAnibal\nClaudio\nCoty\nDemario\nDuncan\nEmerson\nEzra\nGarry\nGreg\nJennifer\nJoesph\nJosef\nKeegan\nKong\nMarques\nOsbaldo\nRaphael\nRichie\nTobias\nArmand\nArmen\nArnoldo\nBruno\nDandre\nDavin\nDonnie\nFausto\nGrady\nHugh\nJohan\nJohathan\nJovany\nKareem\nLyle\nMyron\nReggie\nRitchie\nRomeo\nSalomon\nWendell\nWill\nAbram\nAdrien\nBlair\nBrennen\nCheyne\nEloy\nHayden\nJamel\nJamison\nJed\nJerald\nKelsey\nKristoffer\nQuinton\nTuan\nTucker\nAlexandre\nAlton\nChadwick\nChristoper\nDaisy\nDesean\nDonnell\nErasmo\nFermin\nGiovanny\nHans\nIsiah\nJeffry\nLeobardo\nMaximillian\nMigel\nSalvatore\nSunny\nWallace\nWilmer\nAndreas\nArsenio\nBaltazar\nBijan\nCassidy\nDeante\nDeonte\nDeven\nDontae\nElizabeth\nEllis\nEsequiel\nGerson\nGorge\nHassan\nHuy\nJakob\nJarod\nJeramy\nJeremie\nJusten\nLaurence\nLazaro\nLiam\nMarcelino\nMatt\nPierce\nRichardo\nRico\nRonny\nRusty\nSchuyler\nShant\nSherman\nTeddy\nTrey\nAlain\nArman\nBrandyn\nChester\nDamion\nDino\nDonta\nEdison\nEleazar\nForest\nGarrison\nGeovanni\nGildardo\nGiovani\nGrayson\nIra\nJavon\nJefferson\nJulien\nKenton\nLucio\nMack\nNicholaus\nNikolaus\nOren\nSami\nSamir\nSione\nSylvester\nTimmy\nTrevon\nVince\nVincenzo\nVirgil\nYesenia\nAbelardo\nAl\nAmanda\nAmit\nAri\nAric\nArley\nAusten\nBenedict\nBennie\nClyde\nCordero\nDangelo\nDaron\nEdgard\nEdson\nEmil\nFaustino\nFlavio\nFranky\nGeovanny\nJackie\nJerrell\nJovanni\nJuvenal\nKarim\nKris\nLino\nMadison\nMarty\nMeng\nMikhail\nMonte\nNico\nOtto\nPaolo\nPorfirio\nRaffi\nRenato\nRito\nRobbie\nRobby\nStephanie\nTai\nTory\nVan\nWalker\nAmado\nArt\nAsa\nBrandan\nBrannon\nBrant\nBrenda\nBrooks\nCarey\nCecil\nDereck\nDiamond\nElvin\nEmiliano\nEsai\nFavian\nFiliberto\nFransisco\nGabino\nGarett\nJacobo\nJody\nJustyn\nKyler\nLane\nLauren\nLeif\nMarcial\nMichelle\nMoshe\nOtis\nPaulo\nRussel\nSarkis\nScotty\nShelby\nTitus\nTrayvon\nTyree\nUbaldo\nVincente\nWilbert\nAbran\nAlphonso\nAnders\nAntwan\nArash\nBenson\nBlas\nCamron\nCordell\nCornelius\nDaren\nDeangelo\nDerrek\nEliot\nGer\nHieu\nIrwin\nJace\nJamil\nJedidiah\nJefferey\nJeramie\nJerrod\nJonas\nJosedejesus\nKou\nMalachi\nMargarito\nMelissa\nMichel\nMickey\nMikael\nMikel\nPascual\nPheng\nPrince\nQuintin\nRami\nRojelio\nRonnell\nSandra\nSarah\nThaddeus\nTim\nTong\nTrevin\nUlisses\nVicent\nVu\nAdriel\nAlden\nArtemio\nBrandin\nCeasar\nCharley\nClaude\nClaudia\nCorwin\nCullen\nDagoberto\nDarrick\nDerik\nDeshaun\nDuke\nElbert\nElisha\nGil\nGregg\nHarout\nHilario\nJessi\nJoan\nJules\nKevan\nLevon\nMarcoantonio\nMarion\nMatias\nMayra\nMychael\nNiles\nOmid\nRefugio\nRey\nRickie\nRoosevelt\nSampson\nSantino\nSilvestre\nTheo\nTravion\nUriah\nVito\nVladimir\nAbner\nAmador\nArya\nAubrey\nAugust\nBlaze\nCheng\nChuck\nChue\nCurt\nCynthia\nDejon\nDejuan\nDimas\nDonny\nDusty\nEdmundo\nEnoch\nEsau\nFong\nHolden\nJasen\nJerardo\nJered\nJerel\nJeremey\nKamron\nKeaton\nKenji\nKirby\nLars\nLeng\nLindsay\nLuigi\nMarcell\nMinh\nModesto\nMohamed\nMorris\nNicklaus\nNickolaus\nNikko\nNima\nPayton\nPhilippe\nRamsey\nRaudel\nReece\nRueben\nSandy\nSherwin\nStacy\nSydney\nTeodoro\nThai\nThanh\nTorey\nVang\nVinson\nWilly\nAidan\nAj\nAlejandra\nAlessandro\nAlfonzo\nAntione\nAntwon\nAra\nAram\nArchie\nArian\nArjun\nBrandt\nCelso\nChristen\nColeman\nCornell\nDajuan\nDeanthony\nDenis\nDenver\nDiana\nDimitri\nDirk\nDomenic\nDonavan\nEarnest\nElan\nErica\nFabio\nFidencio\nGabriela\nGamaliel\nGideon\nJabari\nJacinto\nJacqueline\nJade\nJan\nJarvis\nJaymes\nJerad\nJeromy\nJeronimo\nJoanthan\nJohann\nJorden\nJorgeluis\nJoseantonio\nJosemanuel\nJuanmanuel\nJustine\nJuventino\nKalen\nKalvin\nKane\nKao\nKimberly\nLamarr\nLincoln\nLisa\nLowell\nMandeep\nMarcello\nMarisol\nMarlin\nMateo\nMilan\nMonica\nMuhammad\nMustafa\nNam\nNancy\nQuang\nReese\nRigo\nRod\nRoque\nRosario\nRyne\nSabino\nSamantha\nScot\nTalon\nTorrey\nTylor\nYang\nAdriana\nAlexandra\nAmber\nAnderson\nAnh\nBailey\nBaron\nBernabe\nBo\nCandelario\nClement\nCrystal\nDallin\nDamone\nDara\nDarell\nDax\nDelbert\nDeron\nDewayne\nDonavon\nEden\nEliezer\nEmmett\nFranciscojavier\nFrederic\nGareth\nGiorgio\nHarlan\nHarris\nHouston\nHung\nJensen\nJerod\nJohny\nJoshuah\nJospeh\nKashif\nKristen\nLauro\nMalcom\nMarkell\nMartel\nMaverick\nMaximo\nMicahel\nMynor\nNathen\nNery\nNevin\nNhan\nNiko\nOrion\nPatricio\nPeng\nPhong\nQuan\nRavi\nRic\nRocio\nRodrick\nRohit\nRosa\nRoyal\nSerjio\nShelton\nSven\nTam\nThor\nTrung\nTyron\nValente\nVaughn\nVinh\nWilliams\nZakary\nAdnan\nAlbaro\nAmar\nAn\nAndrea\nAngus\nAnthoney\nAristeo\nArnaldo\nArvin\nBabyboy\nBee\nBernardino\nBlaise\nBroc\nBuddy\nCamilo\nCarmen\nChadd\nChan\nChas\nCliff\nCodi\nColt\nDashawn\nDeric\nDerrik\nDiondre\nEladio\nErrol\nEsteven\nEugenio\nEvaristo\nFaris\nGage\nGaret\nGeovani\nGeronimo\nGreggory\nGurpreet\nHank\nHao\nHollis\nIbrahim\nJarett\nJelani\nJericho\nJerimiah\nJohnmichael\nJonmichael\nJonnathan\nJonthan\nJory\nJoseangel\nJoshue\nJullian\nJun\nJuston\nKacey\nKalin\nKamran\nKaren\nKc\nLaron\nLeovardo\nLondon\nMacario\nMartell\nMaurilio\nMegan\nMichale\nMiquel\nNapoleon\nNavid\nNicole\nNorris\nObed\nOmari\nPatric\nPayam\nPhil\nRachel\nRamses\nRaymon\nRayshawn\nRemington\nRenee\nReymundo\nRishi\nRodger\nRony\nRubin\nRylan\nSage\nSaid\nSasha\nSeng\nShon\nSimeon\nSky\nStacey\nSteffen\nStephon\nTito\nToan\nTobin\nTorin\nTorrance\nViet\nWaylon\nWhitney\nWilbur\nWilfred\nWillis\nAmilcar\nAren\nAsher\nBob\nBradlee\nBrando\nBrayan\nCale\nCamden\nCornelio\nCuong\nDanielle\nDavy\nDawayne\nDayne\nDemitrius\nDeontae\nDevyn\nDominik\nDuy\nEdder\nEphraim\nEusebio\nFarid\nFlorencio\nFrancesco\nFredi\nGarland\nGarrick\nGerrit\nGerry\nGiuliano\nHai\nHansel\nHomar\nImmanuel\nJacques\nJae\nJamelle\nJarad\nJarell\nJarret\nJayme\nJedediah\nJerrett\nJonathen\nJonpaul\nJorje\nJudah\nJulia\nKeon\nKhalid\nKhang\nKodi\nKolby\nKunal\nLaura\nLavelle\nLenny\nLonny\nLuca\nLuismiguel\nLuther\nLyndon\nLynn\nMac\nMagdaleno\nManny\nMatthias\nMaxim\nMichaelangelo\nMichaelanthony\nMichal\nMina\nMohamad\nNader\nNasser\nNehemiah\nNhia\nNikhil\nOmer\nOsualdo\nPao\nPaulino\nPercy\nPhuc\nRahul\nRaleigh\nRamin\nRamy\nRashaad\nRaziel\nRebecca\nReinaldo\nRian\nRicahrd\nRobinson\nRohan\nRomel\nRyo\nSagar\nSal\nSameer\nSang\nSilas\nSkye\nSyed\nTad\nTayler\nTeng\nTheron\nThien\nTien\nTiffany\nTj\nTracey\nTraveon\nTri\nUlices\nVeronica\nWaldo\nWilber\nYoung\nYusef\nYusuf\nZack\nZechariah\nAdolph\nAjay\nAlvino\nAmadeo\nAngelica\nAnna\nAntwone\nAria\nAris\nArtin\nAureliano\nAvelino\nBaldemar\nBarron\nBenjamen\nBert\nBilal\nBlong\nBonifacio\nBraxton\nBrittany\nBritton\nBrook\nBuck\nBud\nCarmelo\nChao\nChee\nChistian\nChistopher\nChong\nChristin\nChristofer\nCipriano\nConrado\nCosme\nDarby\nDarek\nDarion\nDarrius\nDarron\nDaryn\nDelfino\nDelvon\nDemetrio\nDennys\nDeondre\nDeshon\nDewey\nDonell\nDurrell\nDustan\nEllery\nElton\nErika\nEstuardo\nEulises\nEver\nFaisal\nFranklyn\nGaston\nGaurav\nGenesis\nGeovany\nGibran\nHagop\nHakim\nHeather\nHeber\nHenri\nHoang\nIsreal\nJacky\nJamin\nJarid\nJarrel\nJase\nJashua\nJeanpaul\nJeanpierre\nJerrad\nJimi\nJob\nJonte\nJosejesus\nJovon\nJuliocesar\nJustus\nKale\nKelley\nKendell\nKiel\nKraig\nLanden\nLeandre\nLeandro\nLuc\nLue\nLuisalberto\nLuisangel\nMalik\nMarcanthony\nMarcellus\nMarlo\nMary\nMathias\nMattew\nMaximiliano\nMaynard\nMercedes\nMilo\nMitch\nNabil\nNeel\nNeftali\nNghia\nOsiel\nPaige\nPatricia\nRandell\nRemy\nRidge\nRio\nRommel\nRosalio\nSandeep\nSantana\nShahin\nShan\nShay\nSilverio\nSony\nStevie\nTerance\nTristin\nTye\nVivek\nWiley\nWillian\nYeng\nYovani\nZeke\nAbrahan\nAce\nAdams\nAddam\nAdonis\nAdrain\nAlek\nAlyssa\nAman\nAmer\nAmin\nAmos\nAmy\nAna\nAnand\nAndrei\nAnil\nAnson\nAnthonyjames\nApolinar\nApril\nArcadio\nArgenis\nArie\nArik\nArmani\nArmon\nArmond\nAshkan\nAshlee\nAshraf\nAugustin\nAuston\nBaby\nBao\nBartholomew\nBasil\nBejan\nBenigno\nBernie\nBerry\nBlain\nBlane\nBoris\nBrien\nCandido\nCarnell\nCelestino\nCesario\nChauncey\nChet\nChirag\nClemente\nCoby\nCori\nCorin\nCorrey\nCorry\nCortney\nCrispin\nCristoval\nCurtiss\nCyle\nDain\nDaivd\nDaneil\nDanial\nDarian\nDarryn\nDashaun\nDashiell\nDat\nDaunte\nDaveon\nDavey\nDemarco\nDemetri\nDenzel\nDerrell\nDevaughn\nDezmond\nDijon\nDionicio\nDionte\nDominque\nDonato\nDoron\nDoyle\nDru\nDung\nDwain\nEber\nElder\nElie\nEly\nEnzo\nEvin\nFaraz\nFeliciano\nFelton\nFlorentino\nFue\nGevork\nGian\nGillermo\nGiuseppe\nGrigor\nGunnar\nGus\nHasan\nHorace\nHubert\nIsaul\nJairus\nJamall\nJamarr\nJanathan\nJaren\nJarrad\nJarrell\nJarryd\nJasmine\nJavan\nJayce\nJaziel\nJeovany\nJeremi\nJerid\nJermain\nJeron\nJerred\nJerrid\nJett\nJoanna\nJoeseph\nJohannes\nJonatha\nJorel\nJorell\nJosejuan\nJosua\nJuanantonio\nJuanpablo\nJudson\nJusto\nKelby\nKendal\nKeng\nKentrell\nKenyon\nKhalil\nKieth\nKingsley\nKip\nKonrad\nLafayette\nLavell\nLeighton\nLeticia\nLiliana\nLisandro\nLonnell\nLucian\nLucky\nLupe\nMarino\nMarkeith\nMarko\nMarquese\nMarquice\nMarshal\nMartha\nMaxx\nMick\nMikeal\nMilagro\nMoua\nMurphy\nMykel\nNabeel\nNajee\nNatanael\nNdrew\nNguyen\nNiall\nNicola\nNikki\nNyle\nOmero\nOsman\nPedram\nPrinceton\nRandel\nRandon\nRashaun\nRaymund\nRenaldo\nReynold\nRhys\nRichar\nRob\nRoel\nRoscoe\nRufino\nRufus\nRustin\nRyanjoseph\nSaeed\nSamy\nServando\nShain\nSher\nShun\nSilvino\nSina\nSon\nSue\nTaj\nTerran\nThinh\nTommie\nToney\nToua\nTramell\nTristen\nTristian\nUziel\nVahe\nVandy\nVartan\nVentura\nVernell\nVi\nVictorhugo\nVictoriano\nVishal\nWesly\nWestin\nXiong\nYonatan\nYousef\nYu\nYuji\nYvette\nZachari\nZain\nAbisai\nAdil\nAkeem\nAlegandro\nAlen\nAly\nAmbrose\nAmeer\nAmmar\nAmmon\nAnastacio\nAndranik\nAndrewjames\nAndrez\nAngela\nAnish\nAnkit\nAnkur\nAnsel\nAntoni\nApollo\nApolonio\nArin\nArlen\nArren\nArun\nAryeh\nAsad\nAvinash\nBaldomero\nBarney\nBart\nBasilio\nBeatriz\nBenjiman\nBenton\nBlanca\nBlayne\nBora\nBrennon\nBrenten\nBrianna\nBriant\nBrittan\nBroderick\nBrody\nCalen\nCash\nCatarino\nCeaser\nCecilio\nChadrick\nChantra\nCharly\nChristipher\nChristoffer\nChristoher\nChristpher\nCindy\nCirilo\nCisco\nCj\nCleveland\nCord\nCorderro\nCort\nCristal\nCristofer\nDamario\nDameon\nDamonte\nDaniele\nDarien\nDaven\nDeepak\nDelano\nDelon\nDelvin\nDemarcus\nDemond\nDenise\nDerrel\nDerron\nDerwin\nDevion\nDevonte\nDillion\nDinh\nDomenick\nDomonic\nDomonique\nDoroteo\nDouglass\nDragon\nDshawn\nDuran\nDusten\nDustyn\nEamon\nEarvin\nEctor\nEitan\nEldon\nEliazar\nElpidio\nEmily\nEnrico\nEpifanio\nEsdras\nEsgar\nEtienne\nEvelyn\nFabricio\nFadi\nFerdinand\nFletcher\nFroylan\nFuad\nGaren\nGavino\nGeorgio\nGeraldine\nGeroge\nGreyson\nHamilton\nHaroon\nHarpreet\nHiram\nHoa\nHomero\nHong\nHovannes\nIain\nIke\nImran\nIran\nIsac\nIsrrael\nJabril\nJacque\nJaimie\nJamaul\nJamon\nJarel\nJareth\nJarren\nJarron\nJaun\nJeanluc\nJefrey\nJefte\nJerell\nJereme\nJermey\nJerold\nJerone\nJerrick\nJerron\nJesusantonio\nJethro\nJhon\nJocelyn\nJonny\nJony\nJoseramon\nJourdan\nJuanjose\nJudith\nJuliano\nJustinray\nKabir\nKamal\nKarina\nKatherine\nKayvon\nKegan\nKeivon\nKellan\nKennith\nKevon\nKhaled\nKhanh\nKhristopher\nKia\nKiefer\nKieran\nKiernan\nKillian\nKing\nKourosh\nKristofor\nLavon\nLawson\nLeander\nLemar\nLemuel\nLenin\nLon\nLorena\nLucius\nLuisantonio\nMaher\nMajor\nManolo\nManpreet\nMarquel\nMatteo\nMaximino\nMaynor\nMelchor\nMena\nMerlin\nMichele\nMilad\nMing\nMister\nMolly\nMonty\nMuhammed\nNasir\nNatalie\nNatividad\nNeng\nNicholis\nNichols\nNicklas\nNicolaus\nNidal\nNils\nNoble\nObrian\nOdell\nOmeed\nOracio\nOrson\nOrville\nOsmin\nOzzie\nPaden\nPhat\nPierson\nPritesh\nRaheem\nRajiv\nRakesh\nRamzi\nRandolf\nRayvon\nReagan\nRegis\nReilly\nRemi\nRemigio\nReno\nRicco\nRich\nRikki\nRomero\nRoni\nRonnel\nRosio\nRudolpho\nRyananthony\nRyanjames\nRyland\nSaad\nSacha\nSai\nSamer\nSammie\nSamual\nSandro\nSara\nSarath\nSayed\nSeaver\nSebastien\nSerafin\nSesar\nSevag\nSharif\nShayan\nShervin\nShoua\nSilvester\nStanford\nStefon\nStepan\nSundeep\nTakuya\nTarek\nTarik\nTariq\nTate\nTerrill\nThompson\nThong\nThurman\nTorrence\nTrace\nTramaine\nTremaine\nTremayne\nTyan\nTyreece\nUmar\nValentine\nVatche\nVinay\nWenceslao\nWeslee\nWillaim\nWoodrow\nWylie\nYamil\nYobani\nYong\nYoni\nYosef\nZaid\nZev\nZion\nMichael\nChristopher\nDaniel\nDavid\nMatthew\nAndrew\nJoshua\nJose\nAnthony\nRobert\nJonathan\nRyan\nJoseph\nNicholas\nKevin\nJames\nJustin\nJohn\nEric\nSteven\nKyle\nAlexander\nBrian\nRichard\nBrandon\nWilliam\nJuan\nAaron\nThomas\nLuis\nJacob\nJason\nSean\nAdam\nTimothy\nJeffrey\nCarlos\nTyler\nJesus\nBenjamin\nZachary\nJesse\nMark\nMiguel\nSamuel\nJeremy\nVictor\nPaul\nTravis\nChristian\nFrancisco\nPatrick\nJorge\nBryan\nScott\nJordan\nEdgar\nCharles\nStephen\nRicardo\nNathan\nAlejandro\nKenneth\nAdrian\nEduardo\nEdward\nAlex\nAntonio\nCameron\nGregory\nOscar\nCody\nManuel\nGabriel\nMario\nErik\nVincent\nDerek\nRoberto\nSergio\nMartin\nPeter\nFernando\nHector\nRaymond\nJavier\nAngel\nIan\nAustin\nGeorge\nCesar\nTaylor\nDustin\nTrevor\nEvan\nJared\nJoel\nIvan\nRuben\nCorey\nShane\nFrank\nRaul\nCory\nOmar\nGarrett\nJaime\nDanny\nPedro\nBradley\nMarcus\nShawn\nEdwin\nJohnny\nPhillip\nAlberto\nArmando\nAndres\nJulian\nBrett\nSpencer\nChad\nSalvador\nRafael\nRonald\nNathaniel\nAlan\nJulio\nCasey\nKeith\nDonald\nGerardo\nAlfredo\nArturo\nHenry\nDylan\nMitchell\nTony\nDevin\nMarco\nGustavo\nErnesto\nIsaac\nDiego\nAlbert\nRandy\nRamon\nBlake\nEnrique\nNicolas\nGary\nJimmy\nDennis\nDouglas\nErick\nWesley\nJohnathan\nPhilip\nJoe\nCurtis\nTroy\nEmmanuel\nMarcos\nSteve\nBrent\nAndre\nAbraham\nChase\nEthan\nJake\nAllen\nRicky\nAndy\nArthur\nHugo\nEddie\nRene\nDerrick\nColin\nMax\nLouis\nMathew\nRussell\nJerry\nLogan\nKristopher\nBryce\nJosue\nMarc\nIsrael\nJeremiah\nWalter\nRodolfo\nBryant\nGuillermo\nPablo\nRudy\nCraig\nDominic\nGilbert\nJonathon\nMarvin\nJack\nLucas\nLarry\nSeth\nLuke\nRoger\nSaul\nAbel\nJeffery\nLawrence\nMoises\nMaxwell\nGiovanni\nCaleb\nAlfonso\nEsteban\nFabian\nCalvin\nCristian\nDarren\nGilberto\nIsmael\nTodd\nBrendan\nFelipe\nJessie\nDevon\nRogelio\nRandall\nGrant\nRodney\nRoy\nElias\nDrew\nLance\nMiles\nErnest\nByron\nClayton\nMicheal\nNelson\nCarl\nRamiro\nXavier\nAlvaro\nFreddy\nLeonardo\nTheodore\nGerald\nBilly\nBobby\nGeoffrey\nJay\nNoe\nShaun\nAlexis\nEmilio\nIsaiah\nEfrain\nOrlando\nJon\nColton\nMaurice\nEugene\nFelix\nIgnacio\nNoah\nNickolas\nNoel\nRigoberto\nMauricio\nDean\nMorgan\nRoss\nAlvin\nMike\nNeil\nRodrigo\nDeandre\nLorenzo\nAlfred\nDarryl\nHumberto\nTerry\nAgustin\nLee\nSimon\nTommy\nKirk\nLeonard\nBranden\nDamian\nGerman\nNestor\nSebastian\nDillon\nRonnie\nVicente\nAdan\nDarrell\nFrederick\nRay\nRoman\nMason\nKenny\nConnor\nJoey\nElijah\nBruce\nAllan\nSantiago\nAngelo\nCollin\nTrenton\nWillie\nTomas\nWayne\nJoaquin\nJohnathon\nHarrison\nFranklin\nTanner\nDane\nDonovan\nElliot\nIrving\nKarl\nLevi\nClinton\nOliver\nTerrance\nTristan\nTrent\nDominique\nGlenn\nLeonel\nPreston\nReginald\nRalph\nAdolfo\nJerome\nNolan\nIrvin\nRolando\nCole\nElliott\nRiley\nHunter\nAldo\nJamie\nRick\nDamien\nEli\nGuadalupe\nSam\nStanley\nCharlie\nKurt\nMicah\nChris\nFrancis\nLeo\nOsvaldo\nUriel\nWarren\nAlec\nDale\nJairo\nMarlon\nOctavio\nTerrence\nTyrone\nHarry\nKelly\nAriel\nClifford\nGavin\nBeau\nFrankie\nJosiah\nUlises\nAli\nArnold\nKurtis\nMelvin\nMoses\nStuart\nDante\nEmanuel\nFidel\nKelvin\nBernardo\nSkyler\nStefan\nZackary\nKory\nElvis\nHarold\nJarrod\nDaryl\nFred\nHoward\nDarnell\nAntoine\nDwayne\nGonzalo\nHeriberto\nMarquis\nMalcolm\nJamal\nMarshall\nNikolas\nAlonzo\nEstevan\nStephan\nBernard\nFreddie\nParker\nReynaldo\nWade\nWyatt\nSonny\nWilson\nBret\nGraham\nJayson\nZachery\nHerman\nUlysses\nDamon\nDan\nJackson\nJoseluis\nKody\nAmir\nEfren\nRobin\nCristopher\nForrest\nJim\nCedric\nChance\nDemetrius\nDominick\nIsaias\nKameron\nNeal\nZachariah\nConrad\nDon\nJulius\nKeenan\nKristofer\nLouie\nBlaine\nBrock\nDallas\nMyles\nPerry\nWeston\nBrady\nGordon\nLeon\nTyson\nAshton\nLandon\nLewis\nNick\nTerrell\nBrad\nColby\nRory\nSterling\nBarry\nDorian\nBrendon\nDakota\nDana\nMychal\nRashad\nBen\nClarence\nCorbin\nDarius\nGregorio\nIsidro\nJovan\nMaximilian\nRoland\nBrenton\nDerick\nGarret\nNorman\nValentin\nAlonso\nBenny\nBrennan\nDavis\nDonte\nErwin\nEzequiel\nGlen\nMarcel\nReuben\nSantos\nChaz\nEliseo\nFederico\nGuy\nJeff\nLamar\nLloyd\nMaria\nNathanael\nRaymundo\nCristobal\nKristian\nRickey\nAron\nDario\nDesmond\nJarred\nKent\nRocky\nAlexandro\nFredy\nJohnnie\nOwen\nBenito\nClark\nDarrin\nDexter\nElmer\nErnie\nEverardo\nHerbert\nLoren\nOswaldo\nQuinn\nRoderick\nTom\nCruz\nDeon\nDion\nEarl\nMohammad\nNico\nPierre\nSammy\nAddison\nBradford\nBraulio\nConor\nFredrick\nIssac\nJovanny\nKorey\nMilton\nTerence\nTracy\nDrake\nDwight\nLionel\nTed\nBrenden\nDalton\nEverett\nHoracio\nJarrett\nJermaine\nJessica\nMarquise\nShannon\nAvery\nCarson\nDeshawn\nBennett\nBryon\nClifton\nJordon\nMarkus\nPete\nSpenser\nArmen\nDevan\nEdgardo\nJohnson\nKaleb\nLester\nRoyce\nTucker\nVance\nZackery\nAhmad\nArnulfo\nCourtney\nDarin\nDavon\nIsai\nJunior\nKellen\nKendall\nLonnie\nLuiz\nLukas\nMitchel\nSolomon\nArron\nBrice\nKai\nMauro\nMisael\nNigel\nRex\nTy\nArmand\nBlair\nDenny\nGarrick\nJasper\nJean\nJuancarlos\nKerry\nLeland\nTravon\nWestley\nAdalberto\nAurelio\nDavion\nDuane\nGenaro\nGene\nGriffin\nHarley\nLeopoldo\nLeroy\nLeslie\nNiko\nRaphael\nTou\nWinston\nAshley\nCeasar\nErin\nGerard\nHernan\nIsiah\nMarcelo\nRosendo\nEddy\nEzra\nFermin\nGreg\nKen\nLucio\nReed\nReid\nSheldon\nSkylar\nAnibal\nAntony\nArnoldo\nBryson\nDandre\nEdwardo\nEriberto\nGiancarlo\nHans\nJaron\nJennifer\nJovany\nKasey\nMackenzie\nRomeo\nSidney\nWill\nAndreas\nBraden\nCooper\nHayden\nJace\nJusten\nLino\nRico\nRobbie\nAhmed\nBrandyn\nBrennen\nCaesar\nChandler\nEdmund\nGerson\nJimmie\nKareem\nMariano\nRudolph\nSamson\nShea\nTuan\nAric\nArnaldo\nCarlton\nChristina\nClint\nErich\nGino\nHuy\nJovani\nKeegan\nKelsey\nNicholaus\nTyrell\nVidal\nAlessandro\nAri\nArley\nArsenio\nAusten\nBill\nCary\nClay\nDarrel\nDerik\nDomingo\nFaustino\nJameson\nJovanni\nMarcoantonio\nMiguelangel\nMychael\nQuentin\nQuinton\nVernon\nAnton\nCarlo\nConner\nElizabeth\nErvin\nJamar\nJess\nKeaton\nKendrick\nLyle\nMyron\nRandal\nRandolph\nReyes\nTylor\nZane\nAbram\nBarrett\nBijan\nBruno\nChadwick\nClyde\nDeven\nEder\nFloyd\nHakeem\nJessy\nKeven\nLuciano\nMohammed\nQuincy\nAkeem\nChester\nCyrus\nDanilo\nDave\nEmiliano\nJerald\nJohathan\nLamont\nLaurence\nLazaro\nMarcelino\nMichel\nRey\nSandy\nShant\nShayne\nStephanie\nTeddy\nTobias\nTrinidad\nVaughn\nVladimir\nAugustine\nAxel\nBrandan\nChristoper\nDarwin\nDeonte\nEdgard\nEleazar\nErika\nEzekiel\nFiliberto\nFranco\nHilario\nHugh\nJarod\nJonah\nJosef\nMichelle\nNikko\nOsbaldo\nRichie\nRon\nSalomon\nScotty\nStewart\nTory\nVan\nWilfredo\nBo\nBroc\nCarter\nChadd\nChasen\nCynthia\nDamion\nDejon\nDereck\nDuncan\nEdmond\nGenesis\nGeovanni\nGiovanny\nHarvey\nJakob\nJan\nJavon\nJefferson\nJered\nJosh\nJustyn\nLiam\nMarques\nPaolo\nRhett\nShelby\nSherman\nStacy\nSunny\nSylvester\nTyree\nAbner\nAlton\nAntione\nArtemio\nAugust\nBradly\nBrooks\nClaudio\nColten\nCorwin\nFavian\nGeraldo\nGorge\nJamaal\nJamel\nJamison\nJerrell\nJohnpaul\nJustine\nKou\nNorberto\nParis\nReymundo\nRichardo\nTimmy\nTrevon\nTrey\nVirgil\nAbelardo\nAdrien\nBob\nChue\nClemente\nCrystal\nDanniel\nDaren\nDonavan\nEloy\nEver\nFransisco\nGage\nGarrison\nGrady\nGrayson\nJackie\nJerad\nJerrod\nJulien\nLeobardo\nLuther\nMarcell\nMarquez\nMaximiliano\nMeng\nMicahel\nMigel\nMorris\nNam\nNathen\nOtto\nPaulo\nPierce\nReece\nRemington\nRonny\nRyne\nThaddeus\nToby\nUbaldo\nVince\nVincente\nArt\nBrain\nCheng\nCullen\nDarian\nDarrick\nDusty\nEllis\nEmmett\nGalen\nHubert\nIrwin\nJeramy\nJerel\nJosedejesus\nKim\nKong\nKyler\nMarkanthony\nMateo\nMayra\nMinh\nNathanial\nOrion\nRamsey\nShon\nVanessa\nAlain\nAnderson\nAntwan\nAram\nBenson\nBlayne\nBrayan\nCecilio\nCornelius\nDaron\nDeante\nDiamond\nDiana\nElan\nEmerson\nGeovani\nGil\nHassan\nIra\nJarret\nJeffry\nJonas\nKristoffer\nLong\nMaximillian\nMikel\nNapoleon\nNikhil\nNima\nRenato\nRoque\nRussel\nRusty\nSami\nTommie\nTrever\nVeronica\nAidan\nAlexandre\nAlfonzo\nAra\nArash\nAsa\nBabyboy\nBaltazar\nBernie\nBrandin\nBrant\nCecil\nDemario\nDewayne\nDimitri\nEdson\nEphraim\nFlorentino\nGarett\nJacinto\nJamil\nJerardo\nJessi\nJody\nJonatan\nJorden\nJuvenal\nKalvin\nKane\nKao\nKelley\nLaron\nMarko\nMickey\nMikael\nMilan\nMohamad\nPatricio\nQuintin\nRaffi\nRaudel\nRavi\nRitchie\nRobby\nRueben\nSalvatore\nSarkis\nSione\nTito\nTrayvon\nUriah\nValentino\nZechariah\nAdriana\nAlden\nAlma\nAlphonso\nAmado\nAmos\nAngelica\nArya\nBinh\nBrannon\nBrenda\nBronson\nCamilo\nCassidy\nCheyne\nDavin\nDeangelo\nDonnell\nFabio\nFausto\nGabino\nGerry\nGreggory\nHarout\nJabari\nJasen\nJasmine\nJed\nJedidiah\nJorgeluis\nJuanmanuel\nKennedy\nKris\nLane\nLaura\nLeandre\nLenny\nMarty\nPao\nPascual\nPatricia\nRefugio\nReggie\nRonaldo\nSeamus\nSilvestre\nSyed\nTeng\nTim\nWilber\nWilly\nYesenia\nAdrain\nAlexandra\nAmit\nAna\nAndrea\nAubrey\nBee\nBernardino\nDejuan\nDemarco\nDenis\nDerrell\nDonny\nDontae\nEdmundo\nEliot\nElton\nEsau\nEugenio\nFlorencio\nFranky\nGarry\nGiovani\nJacobo\nJade\nJefferey\nJeremie\nJoanthan\nJohan\nJory\nJoseantonio\nJosemanuel\nKarim\nKenyon\nLavell\nLeandro\nLisandro\nMarcanthony\nMartel\nMatias\nMelissa\nMohamed\nNikolai\nOren\nPercy\nPorfirio\nRickie\nRyon\nSamir\nSandeep\nSimeon\nStacey\nStephon\nStevan\nStevie\nTorrey\nVang\nViet\nVincenzo\nVinh\nWilbert\nWilliams\nAbdul\nAbrahan\nAl\nAmanda\nArian\nArman\nBobbie\nBraxton\nCedrick\nCordero\nDaveon\nDayne\nDeric\nDerrik\nEarnest\nElbert\nEliazar\nElvin\nEmil\nErasmo\nFernie\nFong\nForest\nGamaliel\nGeovanny\nGeronimo\nHolden\nIbrahim\nIsacc\nJacky\nJerod\nJeromy\nJoesph\nJohnmichael\nJules\nKenji\nKevan\nKevyn\nKhristopher\nKieran\nLiliana\nMack\nMalachi\nMartell\nMatthias\nMikhail\nNancy\nNehemiah\nNicole\nNikolaus\nOmid\nOtis\nPheng\nRodrick\nRojelio\nSantino\nTarek\nTitus\nTravion\nUlisses\nWendell\nWilfred\nYoung\nZakary\nAbran\nAmador\nAmilcar\nAnastacio\nArmani\nBaby\nBaldemar\nBilal\nCamron\nCarey\nChristine\nChristophe\nColeman\nCornell\nCorry\nDajuan\nDangelo\nDanial\nDanielle\nDashawn\nDemetrio\nDerrek\nDonnie\nFue\nGavino\nGildardo\nHeber\nHenri\nHiram\nHouston\nHung\nJasson\nJeanpaul\nJereme\nJeronimo\nJoshuah\nJourdan\nJuanantonio\nJulia\nJustice\nKc\nKegan\nKennith\nKenton\nKeon\nKeoni\nKhiry\nLauro\nMacario\nMarshawn\nMatt\nMaverick\nMaxx\nMegan\nMichale\nMustafa\nNader\nNajee\nNolberto\nOsmin\nRahul\nRami\nRian\nRiver\nRocio\nSage\nSal\nSandra\nSchuyler\nShahin\nShay\nTheron\nThien\nTino\nTong\nTristen\nUlyses\nVu\nYusef\nYusuf\nZacharia\nAdriel\nAmmar\nAndrei\nAnil\nAntwon\nAris\nArlen\nArvin\nAugustin\nAvi\nBaxter\nBennie\nBlaise\nBoris\nBrando\nBrandt\nBrittany\nBuddy\nChan\nCharley\nCharly\nChong\nChristofer\nCindy\nColt\nCord\nCornelio\nCuauhtemoc\nDarion\nDeion\nDelon\nDeshaun\nDeshon\nDimas\nDino\nDionte\nDominque\nDonta\nDuke\nElisha\nEly\nEmery\nFlavio\nFroilan\nGaret\nGaspar\nGeovany\nGianni\nHarris\nHeath\nJaren\nJayro\nJeremey\nJessee\nJestin\nJoan\nJob\nJonmichael\nJonnathan\nJoshue\nJuliocesar\nJuventino\nKaren\nLevon\nMadison\nMalik\nMattew\nMilo\nMoua\nMykel\nMynor\nNash\nNeel\nPatric\nPaulino\nPhong\nRaynard\nRemy\nRoosevelt\nRosario\nSai\nSara\nSarah\nSeanmichael\nSerafin\nSherwin\nSilas\nSydney\nThai\nTrung\nVictoriano\nWallace\nWilmer\nAnders\nAraceli\nAramis\nArtis\nBailey\nBlas\nBrody\nBrook\nCamden\nCarlin\nCarmen\nCelso\nCheyenne\nChistopher\nClement\nCoby\nConstantino\nCourtland\nCyle\nDaisy\nDavonte\nDelano\nDemarcus\nDesean\nDevyn\nDijon\nDirk\nDontay\nDouglass\nElio\nEmigdio\nEnzo\nEsai\nEvin\nFranklyn\nFrederic\nGabriela\nGarland\nGer\nGerrit\nGian\nGray\nGregg\nGreyson\nHagop\nImmanuel\nJair\nJarvis\nJensen\nJeramie\nJerman\nJerred\nJin\nJoseguadalupe\nJude\nKale\nKalen\nKatherine\nKendal\nKiefer\nKwame\nLamarr\nLuigi\nLuisangel\nLyndon\nMarcello\nMarcial\nMargarito\nMarioalberto\nMarlin\nMarqus\nMathias\nMelchor\nMontana\nMuhammad\nNavid\nNeftali\nNery\nNicholes\nNickolaus\nNicolaus\nObed\nRamses\nRaymon\nRayshawn\nReese\nRen\nRenee\nRocco\nRodger\nRohan\nSalbador\nScot\nServando\nShayan\nShelton\nSky\nTalon\nTam\nTayler\nTevita\nTheo\nTye\nValente\nVicent\nVishal\nWillis\nYeng\nAdnan\nAlbaro\nAlejandra\nAmer\nAnh\nAntone\nArchie\nArmondo\nArtin\nAugustus\nBaron\nBenedict\nBernabe\nBillie\nBladimir\nBlain\nBrittney\nCalen\nCandelario\nCha\nChanning\nChristan\nCleveland\nCordell\nCoty\nCuong\nDagoberto\nDajon\nDarien\nDarrion\nDayton\nDeanthony\nDemond\nDevaughn\nDillan\nDomenic\nDurrell\nDuy\nEan\nEdilberto\nEligio\nErica\nEsequiel\nFeliciano\nFerdinand\nFletcher\nFranz\nGarren\nGaston\nGeremy\nGeroge\nGevork\nGraeme\nGurpreet\nHakop\nHal\nHank\nHue\nIsac\nIsidoro\nJayme\nJedediah\nJelani\nJerell\nJermey\nJeron\nJevon\nJoanna\nJonathen\nJonny\nJorje\nJovon\nJuanjose\nJuanluis\nJudah\nJusto\nJuston\nKamron\nKarla\nKenyatta\nKevon\nKeyon\nKhalid\nKhalil\nKhoa\nKillian\nKimberly\nKolby\nLafayette\nLamberto\nLars\nLauren\nLavelle\nLeif\nLemar\nLeoncio\nLincoln\nLondon\nLonny\nLowell\nLucero\nLue\nLuisalberto\nMarcellus\nMarino\nMatteo\nMaurilio\nMaxim\nMaximino\nMaximo\nMenachem\nMichaelangelo\nMichal\nMoshe\nNabil\nNaveed\nNevin\nNicklaus\nNicola\nNikki\nNorris\nOracio\nOsman\nPaola\nPayam\nPrince\nQuoc\nRaheem\nRishi\nRoel\nRosalio\nRoscoe\nRudolfo\nRylan\nSahil\nSamantha\nSameer\nSamer\nSammuel\nSamual\nSeng\nShaheen\nSharif\nSkye\nTarik\nThanh\nToan\nTobin\nTorin\nTrace\nTu\nTyron\nVarun\nVito\nWaldo\nWendy\nWillard\nXiong\nXue\nYosef\nZeke\nAbdiel\nAce\nAdel\nAdolph\nAkira\nAman\nAmando\nAmbrose\nAngus\nAnna\nAnson\nAnwar\nArik\nArjun\nArun\nBao\nBarron\nBjorn\nBradlee\nBrien\nBritton\nBulmaro\nCale\nCarmelo\nCarolina\nCash\nChai\nChas\nChauncey\nChayanne\nChistian\nChristpher\nCiro\nClaudia\nColter\nConrado\nCrispin\nCristhian\nCy\nDallin\nDamone\nDashiell\nDeclan\nDeepak\nDelfino\nDelvon\nDemar\nDenise\nDeron\nDiante\nDjuan\nDmitri\nDominik\nDontrell\nEamon\nEber\nEmile\nEnrico\nEsgar\nFarid\nFrancesco\nFranciso\nGarth\nGeoffery\nGideon\nGualberto\nHansel\nHanson\nHieu\nHosea\nIrvine\nIsreal\nIvory\nJacqueline\nJameel\nJanet\nJarad\nJarett\nJarrell\nJashua\nJaun\nJaysen\nJens\nJerrick\nJerson\nJoeseph\nJohann\nJohnathen\nJoseangel\nJosecarlos\nJospeh\nJustus\nKalani\nKarina\nKayvon\nKellan\nKhaled\nKiel\nKirby\nKourosh\nKraig\nLamonte\nMajor\nManolo\nMarlo\nMarquel\nMary\nMckay\nMick\nMina\nMitch\nModesto\nMonica\nNareg\nNicko\nNicolo\nPayton\nRandell\nRashid\nReno\nRigo\nRomel\nRoverto\nRuby\nRyland\nRyo\nSabino\nSammie\nSang\nSedrick\nSesar\nShadi\nShan\nSho\nSilverio\nSopheak\nTai\nTaj\nTal\nTeodoro\nTerance\nThor\nTimmothy\nTj\nToney\nTorey\nTruman\nVahe\nValentine\nVictorhugo\nVinson\nWalker\nYing\nAbelino\nAdonis\nAj\nAleksander\nAlen\nAlexzander\nAlphonse\nAmber\nAmeer\nAmy\nAn\nAndree\nAndrez\nAniel\nAnish\nAnselmo\nAntuan\nAquiles\nArgenis\nAria\nArick\nArie\nArin\nAsher\nAshkan\nAshraf\nAugusto\nAuston\nAvedis\nBartholomew\nBenjamen\nBenton\nBlanca\nBlaze\nBrandy\nBrayden\nBryn\nBuck\nCain\nCaitlin\nCandido\nCezar\nChang\nChet\nChrist\nChuck\nCipriano\nCirilo\nCj\nClaude\nCliff\nCodey\nCodie\nCollins\nCorrey\nCosme\nCristofer\nDain\nDaivd\nDamarcus\nDany\nDara\nDaunte\nDaven\nDelbert\nDemetri\nDenver\nDeondre\nDevion\nDevone\nDionicio\nDonavon\nDupree\nDuran\nDuston\nDylon\nEden\nEdison\nEdvardo\nElie\nEliott\nEnoc\nEron\nErving\nEsaul\nEstuardo\nEvander\nEvaristo\nEvelyn\nFadi\nFranciscojavier\nFrancois\nGerrell\nGiorgio\nGloria\nGus\nHai\nHarpal\nHasan\nHomero\nHoua\nHudson\nImran\nIran\nIsauro\nJacoby\nJacques\nJad\nJamari\nJame\nJamey\nJarek\nJasmin\nJaspreet\nJatinder\nJayce\nJaycob\nJazmin\nJeancarlo\nJeanette\nJerold\nJerrad\nJerrett\nJeshua\nJhonathan\nJoao\nJohny\nJosejuan\nJr\nJuana\nJuaquin\nJullian\nKalin\nKamran\nKashif\nKeller\nKeng\nKenney\nKhang\nKhanh\nKhoi\nKingsley\nKip\nKristina\nKy\nKye\nKyron\nLang\nLeng\nLenin\nLevar\nLinda\nLorne\nLuismanuel\nMahmoud\nMandeep\nManny\nMarquice\nMartha\nMaxfield\nMichaelanthony\nMichaelvincent\nMong\nMonte\nNarciso\nNatanael\nNeng\nNeri\nNeville\nNhan\nNichols\nNoble\nOmeed\nOrel\nOsiel\nOsualdo\nPat\nPeng\nPhil\nPhilippe\nPrentice\nPrescott\nPrinceton\nQuinten\nRahim\nRajan\nRajiv\nRamin\nRamond\nRamzi\nRandolf\nRasheed\nReilly\nRemigio\nRich\nRichar\nRikki\nRohit\nRony\nRosa\nRoshan\nRubin\nRuddy\nRudolf\nRupert\nRyann\nSaid\nSalim\nSan\nSanjay\nSasha\nSaulo\nSaxon\nSayed\nScottie\nSerjio\nSevag\nShiloh\nShmuel\nSon\nStanton\nSteele\nStefano\nSven\nSylvestre\nTad\nTan\nTariq\nTate\nTeague\nTerren\nThompson\nTiffany\nTreavor\nTrevion\nTurner\nTyquan\nTyrus\nUrbano\nVue\nWaylon\nWestin\nWiley\nWoodrow\nYee\nYer\nYousef\nYovani\nYuri\nZack\nAbdullah\nAbe\nAbisai\nAble\nAlejo\nAlesandro\nAlison\nAlon\nAloysius\nAlvino\nAlyssa\nAmadeo\nAnand\nAndrews\nAngela\nAnival\nAnkit\nAnte\nAnthonie\nAntjuan\nAntoni\nAntwain\nAntwone\nAnuj\nAriana\nAristeo\nArmin\nArtur\nAryan\nAsad\nAshneel\nBacilio\nBarnaby\nBarrington\nBasil\nBayardo\nBelal\nBenjamine\nBlade\nBlane\nBlong\nBrayant\nBrion\nBritt\nBroderick\nCade\nCarols\nCavin\nChace\nChadrick\nCharle\nChauncy\nChe\nChee\nChi\nChrisopher\nChristain\nChristepher\nChristohper\nClarke\nCorbett\nCoy\nCristal\nCristina\nCurran\nCurt\nDakotah\nDamen\nDameon\nDaneil\nDang\nDanie\nDarcy\nDarell\nDarrius\nDaryll\nDavionne\nDayvon\nDeandra\nDeigo\nDelvin\nDemetris\nDemitrius\nDeonta\nDeontae\nDesi\nDevonte\nDick\nDiondre\nDomonic\nDomonique\nDonaciano\nDonell\nDoyle\nDuc\nDudley\nDung\nDusten\nDustyn\nEaston\nEberardo\nEctor\nEd\nEdsel\nEduardoluis\nEdvin\nElder\nEldon\nEliezer\nElwin\nEricberto\nEriverto\nErrick\nEsdras\nEverado\nFahad\nFaisal\nFarbod\nFarhad\nFidencio\nFlorian\nFransico\nFredi\nFroylan\nGaren\nGerado\nGermain\nGibran\nGiovany\nGrabiel\nGrey\nGuido\nGumaro\nGyasi\nHaris\nHarlan\nHerberth\nHermilo\nHipolito\nHoang\nHollis\nHorace\nHovannes\nHuriel\nIain\nIke\nIssa\nJairon\nJarell\nJasdeep\nJavan\nJaymes\nJayvon\nJazz\nJeanluc\nJeramiah\nJeremi\nJeren\nJerico\nJerid\nJermain\nJermiah\nJerrel\nJessey\nJimi\nJohnie\nJohnnathan\nJonpaul\nJordyn\nJorel\nJosephmichael\nJossue\nJovanie\nJulie\nJun\nJuvencio\nKacey\nKaden\nKarlos\nKathleen\nKavon\nKennard\nKeshawn\nKia\nKile\nKiyoshi\nKoby\nKodi\nKodie\nKonrad\nKrishna\nKristen\nKue\nLamon\nLancelot\nLaquan\nLaurent\nLeeroy\nLes\nLibrado\nLinden\nLindsey\nLisa\nLorenz\nLou\nLoyd\nLuc\nLucky\nLuisenrique\nLynn\nMac\nMagdaleno\nMagdiel\nMalcom\nMarcelle\nMarcua\nMaribel\nMarion\nMarisela\nMarisol\nMarissa\nMarkandrew\nMarkell\nMarlene\nMarshal\nMartine\nMatan\nMckenzie\nMelecio\nMervin\nMichaeljoseph\nMicky\nMilad\nMontrell\nMurphy\nMurray\nNabeel\nNahum\nNathanel\nNeiko\nNewton\nNhia\nNicco\nNiccolo\nNicholis\nNicky\nNikola\nNiles\nNorbert\nOlegario\nOmer\nOri\nOswald\nPaco\nPalmer\nPernell\nPeterson\nPhi\nQuan\nRachel\nRaj\nRaleigh\nRandon\nRashaad\nRaymund\nRaziel\nRedmond\nRegan\nReginal\nReginaldo\nRegis\nRichy\nRidge\nRio\nRob\nRobinson\nRod\nRonnell\nRufino\nRyder\nSagar\nSalesi\nSaman\nSaro\nSemaj\nSerge\nSevero\nShaan\nShamus\nSher\nSheridan\nShimon\nShoua\nSilvano\nSou\nStan\nSteffan\nSteffen\nStefon\nStetson\nSusana\nTadeo\nTahj\nTaurean\nTerrel\nTerron\nThao\nTien\nTimoteo\nTosh\nTracey\nTravell\nTraveon\nTremaine\nTremayne\nTri\nUlices\nUrian\nUstin\nUziel\nVahan\nVi\nVictoria\nVictormanuel\nVirgilio\nVon\nWaleed\nWally\nWang\nWilbur\nWilfrido\nWillem\nWinson\nXeng\nYaniv\nYobani\nYoni\nYuuki\nZach\nZacharias\nZackariah\nZaid\nZain\nZiad\nMichael\nChristopher\nDaniel\nDavid\nJose\nMatthew\nAndrew\nJoshua\nJonathan\nAnthony\nRyan\nRobert\nJoseph\nNicholas\nKevin\nJames\nJustin\nEric\nJohn\nJuan\nSteven\nKyle\nAlexander\nBrian\nLuis\nWilliam\nBrandon\nJacob\nRichard\nTyler\nCarlos\nJesus\nChristian\nThomas\nAaron\nSean\nJordan\nZachary\nMiguel\nVictor\nJason\nAdam\nTimothy\nCody\nJesse\nJeffrey\nFrancisco\nBenjamin\nSamuel\nJorge\nAlejandro\nMark\nBryan\nEdgar\nPatrick\nTravis\nEduardo\nPaul\nOscar\nRicardo\nAdrian\nJeremy\nGabriel\nStephen\nNathan\nCharles\nManuel\nEdward\nAntonio\nCameron\nMartin\nScott\nKenneth\nAlex\nMario\nSergio\nAngel\nGregory\nErik\nVincent\nHector\nTaylor\nFernando\nAustin\nTrevor\nOmar\nJavier\nRaymond\nCesar\nRoberto\nRuben\nDerek\nIan\nJoel\nIvan\nGeorge\nPeter\nEvan\nJulio\nRaul\nJared\nPedro\nJohnny\nRafael\nGarrett\nJaime\nShane\nAlberto\nFrank\nEdwin\nArmando\nMarcus\nDustin\nAndres\nMarco\nSalvador\nJulian\nDylan\nPhillip\nDanny\nErick\nGerardo\nArturo\nCory\nSpencer\nCorey\nAlan\nHenry\nBrett\nNathaniel\nBradley\nRonald\nAlfredo\nShawn\nCasey\nMitchell\nChad\nEthan\nKeith\nBlake\nIsaac\nEnrique\nAlbert\nDevin\nAbraham\nErnesto\nDonald\nTony\nRamon\nRandy\nNicolas\nJohnathan\nDiego\nJosue\nMarcos\nJimmy\nGary\nEmmanuel\nDouglas\nGustavo\nDennis\nSteve\nWesley\nPhilip\nRene\nAndy\nMax\nColin\nChase\nAndre\nBrent\nJake\nJoe\nArthur\nMathew\nCurtis\nHugo\nGuillermo\nEddie\nTroy\nMaxwell\nDominic\nRudy\nJack\nLouis\nBryce\nRussell\nJerry\nCristian\nDerrick\nJonathon\nIsrael\nLucas\nFabian\nFelipe\nRodolfo\nAllen\nWalter\nKristopher\nMarc\nMarvin\nGilbert\nSaul\nLogan\nGiovanni\nEsteban\nAbel\nCraig\nPablo\nIsmael\nAlfonso\nCaleb\nRicky\nLuke\nXavier\nJeremiah\nLawrence\nGilberto\nLeonardo\nJessie\nMason\nAlexis\nLarry\nMoises\nRogelio\nNelson\nSeth\nDevon\nDillon\nGrant\nBryant\nIsaiah\nRoger\nRodrigo\nBrendan\nDarren\nBobby\nConnor\nElias\nRoy\nLance\nCalvin\nJeffery\nRamiro\nMicheal\nDrew\nHumberto\nTodd\nSebastian\nColton\nMaurice\nRoman\nAlvaro\nByron\nNoel\nCarl\nLorenzo\nIgnacio\nJay\nTheodore\nClayton\nMiles\nShaun\nEmanuel\nNoah\nRodney\nAdan\nOrlando\nRandall\nGerald\nMauricio\nGeoffrey\nNoe\nRoss\nJoey\nTommy\nFreddy\nFelix\nDean\nNestor\nJon\nAlfred\nNeil\nAllan\nRay\nRonnie\nDamian\nErnest\nEfrain\nEmilio\nNolan\nRigoberto\nElijah\nLee\nAngelo\nBilly\nMorgan\nSimon\nAlec\nGerman\nCollin\nJairo\nPreston\nTanner\nTerry\nJoaquin\nMike\nAlvin\nEugene\nKenny\nOctavio\nOliver\nHarrison\nCole\nAgustin\nRiley\nSantiago\nTomas\nBranden\nVicente\nNickolas\nFrederick\nOsvaldo\nUriel\nDalton\nKurt\nDeandre\nDominique\nLevi\nDante\nIrvin\nGavin\nHunter\nDakota\nLeonard\nLeonel\nAdolfo\nEli\nMicah\nReginald\nJackson\nJamie\nClinton\nMarquis\nSkyler\nUlises\nDale\nDonovan\nEfren\nJohnathon\nSam\nBeau\nCharlie\nDamon\nElliott\nGonzalo\nArnold\nElliot\nGuadalupe\nTristan\nWillie\nWyatt\nBruce\nDarrell\nFranklin\nMarshall\nChris\nDane\nMelvin\nParker\nFrankie\nKelly\nKelvin\nKirk\nKarl\nTerrance\nIrving\nNikolas\nRalph\nRolando\nJerome\nWayne\nAli\nDarryl\nJosiah\nWarren\nHeriberto\nTrent\nForrest\nGlenn\nStanley\nDamien\nMarlon\nRick\nWilson\nBernardo\nAriel\nFrancis\nKody\nMalcolm\nUlysses\nBrendon\nMarcel\nTrenton\nKurtis\nReynaldo\nDarius\nEstevan\nGraham\nLouie\nKristian\nAldo\nAntoine\nBrock\nEdgardo\nZachariah\nLeo\nMoses\nMyles\nDonte\nFidel\nRaymundo\nWade\nZackary\nElmer\nKameron\nStuart\nTerrence\nClifford\nDwayne\nHayden\nIsaias\nJoseluis\nZachery\nAlonso\nBlaine\nBret\nColby\nDominick\nJamal\nBrennan\nTerrell\nWeston\nEzequiel\nGlen\nEliseo\nHarry\nStefan\nKory\nLewis\nPerry\nRory\nTyrone\nDaryl\nAlexandro\nChance\nGage\nHernan\nKristofer\nRaphael\nFred\nJordon\nStephan\nAshton\nHarold\nAlonzo\nDemetrius\nGordon\nHoward\nMilton\nSonny\nDerick\nDon\nJeff\nJim\nKeenan\nLeon\nSantos\nJarred\nKent\nLamar\nBrenden\nElvis\nFredy\nGarret\nIsidro\nIssac\nJayson\nSterling\nBarry\nMohammad\nChaz\nCristobal\nErnie\nEverardo\nEzekiel\nJean\nJovan\nNorman\nRobin\nTom\nClarence\nDarnell\nDorian\nReuben\nAmir\nBen\nDesmond\nEverett\nJarrett\nRoland\nJermaine\nKendall\nMaria\nMiguelangel\nDan\nDavis\nDavon\nGino\nGregorio\nJovany\nNeal\nBenny\nDeshawn\nGenaro\nJarrod\nTy\nDario\nEarl\nFavian\nJessy\nKeegan\nLloyd\nMarquise\nMychal\nRashad\nRickey\nZane\nCruz\nEddy\nJuancarlos\nKasey\nLoren\nNathanael\nShayne\nValentin\nBenito\nConrad\nDrake\nLiam\nQuinn\nSammy\nBernard\nBrad\nCristopher\nEdwardo\nHerman\nJasper\nMarkus\nRex\nAhmad\nDallas\nDarin\nJovanny\nMisael\nClark\nConor\nFredrick\nGiovanny\nGuy\nJess\nNico\nRoderick\nTucker\nBrady\nCedric\nConner\nJulius\nNick\nPierre\nZackery\nAdalberto\nArnulfo\nAron\nBrice\nCarson\nDarrin\nHerbert\nLuiz\nLukas\nQuincy\nQuinton\nSidney\nTed\nGreg\nLandon\nQuentin\nBruno\nCarlo\nDion\nFreddie\nKorey\nMauro\nTou\nVance\nAurelio\nBrenton\nCorbin\nDwight\nErwin\nJefferson\nOwen\nTyson\nVernon\nBraulio\nDuane\nEder\nHans\nHoracio\nIsiah\nJakob\nJamar\nJohnnie\nKellen\nLonnie\nMarcelino\nMarcelo\nNigel\nRocky\nRosendo\nSheldon\nClifton\nFederico\nGriffin\nIsai\nJaron\nJessica\nMariano\nOsbaldo\nPete\nReyes\nAddison\nAntony\nAvery\nEriberto\nGene\nHarley\nLionel\nMaximilian\nMitchel\nOswaldo\nSkylar\nCarter\nCooper\nDevan\nJimmie\nLeopoldo\nLeslie\nMackenzie\nReid\nRey\nRoyce\nSolomon\nStewart\nTerence\nTylor\nTyrell\nAnton\nDenzel\nDeon\nErin\nFermin\nJonah\nRandolph\nWilfredo\nAshley\nCamilo\nClay\nCourtney\nFranco\nJovanni\nKen\nShannon\nTracy\nAlexandre\nArgenis\nCary\nDana\nDavion\nErich\nErvin\nGiancarlo\nJunior\nLeroy\nQuintin\nTrey\nWill\nArnoldo\nAusten\nBraden\nBradford\nCaesar\nDexter\nDomingo\nGerard\nJovani\nJulien\nKaleb\nKerry\nMarcoantonio\nMaximiliano\nNorberto\nStephanie\nSunny\nCoty\nDave\nElizabeth\nFiliberto\nGeovanni\nHarvey\nLane\nNikko\nNiko\nRon\nWestley\nWinston\nAdriel\nArman\nAxel\nBryon\nBryson\nGarrick\nLeobardo\nLuciano\nLucio\nLyle\nTravon\nTrever\nBlair\nBo\nBrayan\nCarlton\nClint\nJennifer\nMilo\nSamson\nShea\nTeddy\nVidal\nAdrien\nAric\nGerson\nJace\nJohnson\nJosh\nJusten\nKareem\nKendrick\nKeven\nKristoffer\nMohamed\nNathanial\nReed\nSilvestre\nThaddeus\nTobias\nTrevon\nVince\nChandler\nEdmund\nGiovani\nJavon\nKyler\nLamont\nMarques\nMohammed\nAhmed\nAkeem\nBarrett\nChasen\nEmerson\nFausto\nKai\nLaron\nMaximillian\nRico\nRigo\nRobbie\nRomeo\nShelby\nSpenser\nVan\nBill\nJameson\nJamil\nJorden\nKeaton\nNima\nOtis\nRandal\nRojelio\nTrinidad\nAlden\nAlejandra\nAndreas\nArtemio\nAugust\nBradly\nDanilo\nDarian\nDarrel\nDejon\nDino\nEzra\nGorge\nLeland\nLester\nLino\nMarkanthony\nMikhail\nMychael\nParis\nPaulo\nPorfirio\nRonny\nSylvester\nTyree\nVincente\nAbelardo\nAbner\nAidan\nAmador\nArmand\nBrooks\nChester\nChristina\nChristoper\nClyde\nDandre\nDeangelo\nDonnie\nFloyd\nFransisco\nGarett\nGrayson\nHassan\nHugh\nIbrahim\nJohny\nJonatan\nMalik\nMarcell\nMelissa\nMickey\nRichardo\nSamir\nSantino\nVaughn\nArnaldo\nArron\nBaltazar\nBrain\nBrennen\nBronson\nDenny\nDeven\nDonavan\nEdson\nEloy\nHarris\nJarod\nJeffry\nJerald\nJohnpaul\nJonny\nJosef\nJuvenal\nKelsey\nLazaro\nMargarito\nMinh\nPaolo\nReese\nSarkis\nStevie\nStorm\nAbram\nAlphonso\nAmit\nAnibal\nArian\nBennett\nBrandyn\nCamron\nCassidy\nCheng\nClaudio\nCyrus\nDarwin\nDeonte\nDerik\nEllis\nElton\nFeliciano\nGamaliel\nGeovanny\nJamaal\nJered\nJerrell\nJonas\nJustine\nKong\nLong\nMichaelangelo\nMustafa\nMykel\nRudolph\nSyed\nTevin\nTimmy\nToby\nTory\nValente\nValentino\nAna\nAnselmo\nArt\nBee\nBrandan\nCheyne\nClemente\nDarrick\nDimitri\nDonny\nFlavio\nGalen\nHasan\nJacques\nJan\nJustyn\nKarim\nKiefer\nKou\nLauro\nMichel\nMichelle\nMyron\nPierce\nRenato\nWilly\nAri\nArya\nCecil\nColeman\nColt\nDamion\nDewayne\nDominque\nDuncan\nEsequiel\nFaustino\nFidencio\nFlorentino\nGildardo\nHouston\nJackie\nJessi\nJuanjose\nKwame\nLuigi\nMarty\nMayra\nMeng\nNader\nNancy\nNathen\nNikolaus\nOtto\nRamses\nRefugio\nReggie\nRemington\nRitchie\nSalomon\nSami\nStephon\nVang\nWilber\nAntwon\nArley\nArmen\nBaron\nBenson\nBrandin\nChadd\nDaren\nDaron\nDayne\nEliot\nElvin\nEver\nGabino\nGarry\nGeraldo\nHeath\nJacinto\nJourdan\nJuanmanuel\nKalvin\nKhalil\nLaura\nLevon\nMarcial\nMarlin\nMatt\nMorris\nNicholaus\nPatricio\nRaj\nRandell\nShon\nSkye\nThanh\nTyron\nUlisses\nVanessa\nVirgil\nWillis\nAlain\nAlessandro\nAlfonzo\nAmado\nAmilcar\nAnders\nArash\nBernabe\nBoris\nBrant\nCeasar\nChadwick\nChue\nDejuan\nDereck\nDonnell\nDontae\nEleazar\nEnoch\nJabari\nJerardo\nJeremey\nJohathan\nJoseantonio\nJosedejesus\nJullian\nKalen\nLeif\nMalachi\nMateo\nMatias\nMohamad\nReece\nRodrick\nRoque\nShant\nSilverio\nTuan\nUbaldo\nArchie\nArik\nAsher\nAugustine\nBijan\nBrannon\nCarmelo\nCelso\nChristophe\nDagoberto\nDallin\nDenis\nDuke\nElio\nFranky\nGeovany\nGeronimo\nHilario\nHuy\nIrwin\nJerad\nJeromy\nJoan\nJustino\nKennedy\nKeon\nLaurence\nLincoln\nLondon\nMicahel\nMigel\nNeftali\nNikolai\nPascual\nPhong\nRaudel\nRaziel\nRhett\nRony\nSage\nSydney\nTeodoro\nVladimir\nVu\nYesenia\nZechariah\nAbrahan\nAbran\nAdonis\nAmanda\nAndrea\nAntwan\nArsenio\nBroc\nCodi\nCrystal\nDaisy\nDangelo\nDarion\nDashawn\nDerrell\nEdmundo\nErasmo\nErica\nErika\nEsgar\nGabriela\nGareth\nGer\nGreggory\nHakeem\nHiram\nHolden\nHomero\nIsamar\nJacky\nJacobo\nJacqueline\nJade\nJamel\nJayme\nJeramy\nJereme\nKamron\nLuther\nMikel\nMynor\nNam\nNickolaus\nObed\nOmari\nRami\nRaymon\nReymundo\nRichie\nRohit\nRoosevelt\nSalvatore\nSerafin\nSerjio\nShay\nTim\nTommie\nTrayvon\nUlices\nUziel\nValentine\nVincenzo\nWendell\nWilliams\nZakary\nAarron\nAn\nAnderson\nAnson\nAram\nArin\nArlen\nAubrey\nBailey\nBlaze\nBob\nBrenda\nClement\nCordell\nCornelio\nCornelius\nDajuan\nDayton\nDelfino\nDesean\nDeshon\nDusty\nEdmond\nEdsel\nEliezer\nEly\nEmil\nEsau\nEugenio\nForest\nFroylan\nGianni\nGrady\nHank\nHubert\nJamison\nJarret\nJashua\nJedidiah\nJerrod\nJuanantonio\nJules\nJuliocesar\nKadeem\nKao\nKavon\nKenton\nKevan\nKhalid\nKhoa\nKian\nKiel\nKim\nKraig\nLauren\nLeandro\nLenny\nLon\nLuisalberto\nMadison\nManny\nModesto\nMurphy\nNarciso\nNehemiah\nNicolai\nNolberto\nRahul\nRod\nRosalio\nRusty\nSamantha\nSamual\nSchuyler\nSheridan\nStacy\nStevan\nTimmothy\nTito\nTorey\nTravion\nTrung\nVikram\nWalker\nYeng\nYousef\nAdrain\nAdriana\nAkash\nAmin\nAnh\nAntione\nArjun\nBlas\nCandelario\nCarey\nCedrick\nChanning\nCharley\nCynthia\nDajon\nDashiell\nDennys\nDeondre\nDeric\nDiana\nDijon\nDimas\nDionte\nEarnest\nEdgard\nElisha\nEmiliano\nEvaristo\nFerdinand\nFue\nGarland\nGeovani\nGerry\nGrigor\nHakop\nIra\nJarren\nJaymes\nJeremie\nJerod\nJhonny\nJoshue\nJun\nKhaled\nKieran\nLars\nLeng\nMalcom\nMarcellus\nMarko\nMaximino\nMichal\nMichale\nMuhammad\nNajee\nNery\nNevin\nNicco\nPaulino\nRamsey\nRavi\nRobby\nRodger\nRommel\nRufino\nRyne\nSaid\nSal\nSasha\nSemaj\nSilas\nSimeon\nSione\nTalon\nTam\nTeng\nTino\nUlyses\nWilmer\nZaid\nAbdul\nAbdullah\nAl\nAlma\nAngela\nAnna\nAuston\nBennie\nBladimir\nBrando\nBraxton\nClaudia\nColten\nCyril\nDanniel\nDavin\nDeshaun\nDevaughn\nEden\nEdilberto\nElbert\nElder\nEstuardo\nEusebio\nFadi\nFletcher\nFrancesco\nGarrison\nGarth\nGaspar\nGian\nGraeme\nHansel\nHarlan\nHung\nIshmael\nJair\nJasen\nJasmine\nJelani\nJericho\nJeronimo\nJessee\nJevon\nJoanthan\nJob\nJonmichael\nJosemanuel\nJuston\nKelley\nKhiry\nKillian\nKyron\nLeandre\nLuc\nLucky\nLue\nLuisangel\nLyndon\nMacario\nMarquez\nMatthias\nMelchor\nMichaelanthony\nMitch\nMonte\nNavid\nNicklaus\nOmid\nOren\nOrion\nRayvon\nRenee\nRhys\nRocio\nRohan\nSabino\nSai\nSaman\nSandra\nScot\nShaheen\nSherman\nTai\nTheron\nTien\nTobin\nTrevin\nTruman\nTye\nVicent\nVinson\nWallace\nWestin\nWilbert\nWilfred\nAdiel\nAjay\nAlexandra\nAlton\nAngelica\nAnival\nAntoniodejesus\nAra\nAramis\nArmani\nArnel\nAryan\nBabyboy\nBelal\nBilal\nBobbie\nBrandt\nBrayden\nBritton\nBryn\nCale\nCarmen\nCha\nChan\nChoua\nCipriano\nCodey\nCornell\nCristina\nCullen\nDanial\nDarron\nDashon\nDaveon\nDeante\nDelano\nDemarcus\nDemarea\nDemetrio\nDenver\nDeontae\nDerrek\nDevonte\nDevyn\nDiamond\nDionicio\nDirk\nDomenico\nDomonic\nDoyle\nDustyn\nDuy\nEdison\nEliazar\nEmmett\nEnrico\nEvelyn\nFaisal\nFarhad\nFranklyn\nFransico\nFrederic\nFredi\nGerrit\nGibran\nGiovannie\nHagop\nHarpreet\nHomar\nIsabel\nIsac\nJameel\nJarek\nJody\nJoeseph\nJoesph\nJohnmichael\nJonnathan\nJorgeluis\nJoshuah\nJude\nJusto\nKamran\nKane\nKeng\nKenji\nKenyon\nKeoni\nKris\nLamonte\nLavell\nLindsey\nLisandro\nLowell\nMarcello\nMarisol\nMarkell\nMarlo\nMarshawn\nMartell\nMary\nMaxfield\nMaxx\nMaynor\nMckenzie\nMichele\nMonica\nMoshe\nNahum\nNatalie\nNorris\nOsiel\nOsualdo\nPheng\nPrince\nQuinten\nRahim\nRashaad\nRayshawn\nRian\nRio\nRobinson\nRosario\nRuby\nRueben\nRussel\nRyon\nSagar\nStefano\nTan\nTariq\nTerell\nTheo\nTyre\nWaldo\nWendy\nXiong\nYehuda\nYonathan\nYosef\nYoung\nYovani\nAbimael\nAbisai\nAgustine\nAlegandro\nAlix\nAlon\nAmar\nAmos\nAnkur\nAntone\nApolonio\nAria\nAris\nArmin\nArmondo\nArun\nArvin\nAsa\nAugustin\nAvi\nBaldemar\nBao\nBasil\nBasilio\nBejamin\nBenigno\nBenton\nBernardino\nBernie\nBillie\nBrandy\nBroderick\nCain\nCameren\nCandido\nCatarino\nCecilio\nChauncey\nChet\nChristapher\nChristofer\nClaude\nCord\nCorwin\nCosme\nCuauhtemoc\nDameon\nDannie\nDarrius\nDemarco\nDeron\nDerrik\nDevlin\nDillan\nDiondre\nDomonique\nDontay\nDung\nEber\nElan\nEmily\nFahad\nFarid\nFranz\nFroilan\nGaston\nGavino\nGeoff\nGermain\nGevork\nGil\nGregg\nHai\nHermilo\nHipolito\nHoa\nImran\nIsacc\nIsreal\nJalal\nJareth\nJarett\nJase\nJaspreet\nJasson\nJed\nJehu\nJeramie\nJerred\nJohan\nJohnathen\nJonathen\nJory\nJuaquin\nKalin\nKaran\nKc\nKeenen\nKento\nKhang\nKhristopher\nKiet\nKimberly\nKing\nKirby\nKlayton\nKristen\nKrystopher\nLynn\nMaribel\nMarissa\nMarkeith\nMaurilio\nMaverick\nMick\nMikal\nNapoleon\nNarek\nNash\nNathon\nNicky\nNicolaus\nNikola\nNiles\nOsmar\nOswald\nPao\nPatricia\nPhilippe\nRamin\nRemy\nReza\nRickie\nRishi\nRocco\nRomel\nRylan\nRyland\nSameer\nSandy\nShaine\nShan\nShayan\nSigifredo\nSixto\nStanford\nTania\nThang\nTong\nTorin\nTrace\nTramell\nTremaine\nTriston\nVictoralfonso\nVinh\nVirgilio\nVishal\nWiley\nYang\nYonatan\nYoni\nAharon\nAlek\nAlexzander\nAlicia\nAmber\nAmeer\nAmer\nAmmon\nAmrit\nAmy\nAndranik\nAndrez\nAnil\nAnwar\nAshwin\nAsif\nAugustus\nBaby\nBenedict\nBenjamen\nBert\nBlaise\nBlanca\nBlayne\nBlong\nBrayant\nBrennon\nBrittany\nBrody\nBuddy\nBurton\nCamden\nCamryn\nCelestino\nChang\nCharly\nChistian\nChistopher\nChong\nCliff\nCliffton\nCodie\nCrisanto\nCurt\nDaivd\nDat\nDayvon\nDeanthony\nDedrick\nDeonta\nDerron\nDietrich\nDomenic\nDonavon\nDouglass\nDutch\nEan\nEarvin\nEdder\nEduard\nEdy\nEladio\nEligio\nElpidio\nEnrigue\nEphraim\nErrol\nEulises\nFilemon\nFong\nFortino\nGeno\nGideon\nGiorgio\nGiovany\nGiuseppe\nGrey\nHaig\nHarout\nHollis\nHue\nIlan\nImani\nIsidoro\nJahaziel\nJai\nJamon\nJaren\nJarrid\nJarvis\nJeanpierre\nJedediah\nJefferey\nJensen\nJerimiah\nJerman\nJerron\nJese\nJessey\nJhovany\nJohann\nJonpaul\nJorje\nJoseangel\nJospeh\nJr\nJuanito\nJuventino\nKacey\nKale\nKayvon\nKellan\nKendal\nKevion\nKevon\nKip\nKolby\nKunal\nLaquan\nLiliana\nLorne\nLuisenrique\nLupe\nMalek\nMarcanthony\nMarin\nMarquese\nMatthieu\nMckinley\nMikey\nMoua\nNatividad\nNazareth\nNazario\nNeema\nNhia\nNicklas\nNicole\nNikki\nNiklas\nOmeed\nOracio\nOsama\nOsmin\nPaden\nPeng\nPhi\nQuoc\nRaffi\nRakeem\nRanferi\nRasheed\nRaven\nRaynard\nReilly\nRicard\nRicco\nRonak\nRosa\nRoyal\nRyley\nSamer\nSandeep\nSeamus\nSeanmichael\nSelvin\nShae\nShayn\nSho\nSky\nTad\nTarek\nTarin\nTate\nTayler\nThai\nThong\nTitus\nToni\nTorrance\nTyrus\nViet\nVijay\nViliami\nWhitney\nWoodrow\nYair\nYama\nYia\nZack\nZain\nAbdiel\nAbelino\nAdams\nAdolph\nAkil\nAkira\nAlbaro\nAmadeo\nAman\nAnthoney\nAnthoni\nAntoni\nAntwone\nAren\nArick\nAristeo\nArnie\nAsael\nAshkan\nAugusto\nAvetis\nBarron\nBartholomew\nBravlio\nBreon\nBritt\nCamren\nCarolina\nCase\nChai\nChao\nChristen\nChristipher\nChristoffer\nChristos\nCindy\nCirilo\nCiro\nCisco\nCleveland\nConrado\nCorrey\nCortland\nCosmo\nCoy\nCrispin\nCristofer\nCurran\nCyle\nDang\nDaniela\nDara\nDarell\nDarien\nDarrian\nDarrion\nDavie\nDavonte\nDavy\nDelbert\nDemario\nDemetri\nDemetrious\nDemonte\nDenzell\nDesi\nDevion\nDewey\nDionisio\nDmitri\nDonato\nDru\nDuc\nEberardo\nEd\nEdan\nEdvin\nElgin\nEliel\nEnoc\nEnrrique\nErron\nEsai\nEssa\nFabio\nFavio\nFrancois\nFritz\nGalo\nGarren\nGenesis\nGhassan\nGillermo\nGloria\nGonsalo\nGreyson\nGunnar\nGurpreet\nHaik\nHakim\nHeber\nHenri\nHomer\nHorace\nHovig\nIban\nIsaak\nIsmail\nIssa\nJamall\nJamell\nJarrad\nJavan\nJazmin\nJeanpaul\nJeramiah\nJermey\nJerrick\nJerson\nJett\nJimi\nJoselito\nJossue\nJosua\nJovon\nJuanpablo\nJulie\nJune\nKaren\nKavin\nKevork\nKevyn\nKhanh\nKimo\nKirt\nKongmeng\nKrikor\nLamarr\nLamon\nLeighton\nLeticia\nLonnell\nMac\nMahmoud\nMajor\nMandeep\nMarciano\nMargarita\nMarion\nMarkel\nMarquell\nMartel\nMarwin\nMaxim\nMedardo\nMervin\nMichelangelo\nMikael\nMikeal\nMilan\nMina\nMonico\nMonique\nNeftaly\nNicholai\nNicholis\nNicolo\nNikhil\nNikolaos\nOlegario\nOrel\nOsiris\nOsman\nOtoniel\nPatric\nPercy\nPhil\nQuan\nQuincey\nRace\nRamond\nRamy\nRance\nRandel\nRayan\nReinaldo\nReno\nReymond\nRhyan\nRowan\nRustin\nSaddam\nSammuel\nSampson\nSantana\nSchyler\nScotty\nSebastien\nShahan\nShahin\nSharif\nShelton\nShiloh\nSilvano\nSon\nStacey\nSukhdeep\nSultan\nSumeet\nTakayuki\nTarik\nThompson\nTigran\nTorrey\nTosh\nToua\nTracey\nTremell\nTrenten\nTrino\nVernell\nVeronica\nVictoriano\nVito\nVivek\nWaleed\nWaylon\nWes\nYobani\nYusef\nZacarias\nAdnan\nAiden\nAkshay\nAlaric\nAldrin\nAlen\nAlexi\nAljandro\nAmeen\nAnastacio\nAndrei\nAndru\nAndrue\nAntwoine\nArie\nArmond\nAureliano\nAvelino\nBacilio\nBarret\nBelen\nBelisario\nBinh\nBjorn\nBlane\nBobak\nBrion\nBuck\nBulmaro\nByran\nCalen\nCannon\nCarina\nCarlin\nCarnell\nCarrington\nCash\nCatherine\nCervando\nCesario\nCezar\nChayanne\nChe\nCher\nChirstopher\nChristan\nChristine\nChristpher\nChritian\nCj\nColter\nConcepcion\nConstantino\nCorry\nCort\nCristino\nCristo\nDakoda\nDamonte\nDaniele\nDanielle\nDany\nDanzel\nDaryn\nDashaun\nDawson\nDax\nDeclan\nDelmar\nDelon\nDelvin\nDelvon\nDemetric\nDemetris\nDemitri\nDemond\nDenise\nDestin\nDevron\nDhruv\nDiante\nDillion\nDjavan\nDonell\nDonta\nDontrell\nDurrell\nDwain\nEaston\nEfrem\nEldon\nEliodoro\nEmigdio\nEmillio\nEndy\nEnzo\nEoin\nEvelio\nFabricio\nFabrizio\nFaraz\nFlorencio\nFlynn\nFortunato\nFredis\nFredrik\nFreeman\nFrisco\nGaren\nGarin\nGarreth\nGaudencio\nGaurav\nGentry\nGerado\nGeroge\nGiuliano\nGraciela\nGumaro\nHamilton\nHerminio\nHien\nHoang\nHudson\nIran\nIvory\nJaciel\nJae\nJalil\nJamari\nJanet\nJarell\nJarrell\nJarryd\nJaryd\nJasmin\nJaswinder\nJavonte\nJawan\nJayro\nJaysen\nJc\nJedd\nJenny\nJeovanni\nJerame\nJeremi\nJerid\nJeron\nJerrad\nJerret\nJerrid\nJeshua\nJiovanni\nJiovanny\nJoanna\nJoao\nJobany\nJocob\nJohanna\nJohncarlo\nJomar\nJonthan\nJordin\nJosecarlos\nJosedaniel\nJosemiguel\nJoshus\nJovante\nJuanangel\nJudson\nJulia\nJustus\nKabir\nKalani\nKamal\nKarina\nKarlo\nKaro\nKatherine\nKayle\nKeandre\nKee\nKeefe\nKeisuke\nKendell\nKennan\nKenrick\nKiernan\nKollin\nKonrad\nKrishna\nKristin\nKy\nKylen\nLangston\nLavon\nLenin\nLennon\nLevy\nLinda\nLizeth\nLonny\nLucia\nMack\nMandela\nManolo\nMarcio\nMaricela\nMarkie\nMarquel\nMarshal\nMathieu\nMatteo\nMatthews\nMaximo\nMenachem\nMerlin\nMichell\nMihir\nMiller\nMontana\nMontgomery\nMykal\nNabil\nNabor\nNadeem\nNaim\nNeel\nNeng\nNeri\nNiall\nNicholes\nNiels\nNile\nNils\nNino\nOlaf\nOmero\nOrrin\nOzzie\nPardeep\nParris\nParth\nPascal\nPayam\nPayden\nPayton\nPeyton\nPhu\nPorter\nPrentice\nPrescott\nPrimitivo\nPrimo\nRaheem\nRain\nRajan\nRajiv\nRakim\nRandon\nRaquel\nRashawn\nRaymondo\nRazmig\nReginaldo\nRemi\nRenaldo\nRenne\nRexford\nRichmond\nRobb\nRomero\nRonaldo\nRoshan\nRowland\nRumaldo\nRutger\nRyen\nRyo\nSaad\nSalome\nSalvadore\nSan\nSang\nSanjay\nSarah\nSeng\nSevag\nSeveriano\nShalom\nSina\nSmith\nSonia\nSou\nStan\nSteffan\nSue\nSullivan\nSung\nSusan\nSusana\nTajh\nTakahiro\nTal\nTamer\nTaurean\nTerrace\nTerron\nThao\nThinh\nThor\nTiffany\nTimoteo\nTraveon\nTristin\nTurner\nTyrie\nUvaldo\nVahe\nVartan\nVicken\nVinay\nWard\nWerner\nWestly\nWilberto\nWilbur\nWillaim\nWillard\nWillem\nWilton\nYan\nYee\nYehoshua\nYen\nYessenia\nYing\nYony\nYovanni\nYovany\nYu\nYusuf\nYusuke\nYuta\nZacharia\nZavier\nZohaib\nZubin\nMichael\nChristopher\nDaniel\nJose\nDavid\nMatthew\nAndrew\nJoshua\nAnthony\nJonathan\nKevin\nJoseph\nRyan\nRobert\nNicholas\nJames\nJuan\nBrandon\nEric\nAlexander\nJohn\nJustin\nKyle\nLuis\nSteven\nJacob\nTyler\nChristian\nJesus\nBrian\nWilliam\nRichard\nCarlos\nAaron\nMiguel\nZachary\nCody\nJordan\nThomas\nSean\nVictor\nSamuel\nJorge\nJason\nAlejandro\nJesse\nTimothy\nEduardo\nFrancisco\nJeffrey\nDylan\nBryan\nGabriel\nAdrian\nBenjamin\nAdam\nEdgar\nPatrick\nOscar\nMark\nRicardo\nManuel\nNathan\nPaul\nJeremy\nAngel\nAntonio\nErik\nEdward\nAlex\nCameron\nMario\nScott\nSergio\nTaylor\nTravis\nStephen\nMartin\nCharles\nAustin\nOmar\nFernando\nJavier\nKenneth\nGregory\nTrevor\nVincent\nRoberto\nIvan\nCesar\nHector\nRaymond\nRuben\nPeter\nJoel\nIan\nDerek\nAlberto\nGeorge\nRaul\nEdwin\nJulian\nJulio\nPedro\nArmando\nRafael\nAndres\nMarco\nJaime\nJared\nEvan\nErick\nJohnny\nGarrett\nGerardo\nSalvador\nDanny\nShane\nFrank\nSpencer\nAlan\nMarcus\nNathaniel\nEnrique\nHenry\nDillon\nDevin\nDustin\nArturo\nBlake\nGustavo\nPhillip\nJosue\nAlfredo\nAlbert\nCorey\nMarcos\nRamon\nDiego\nErnesto\nIsaac\nShawn\nCory\nJake\nBrett\nRonald\nBradley\nMitchell\nChad\nJohnathan\nAbraham\nAndy\nTony\nCasey\nEmmanuel\nJimmy\nKeith\nEthan\nNicolas\nChase\nDonald\nDominic\nWesley\nRene\nRandy\nDennis\nSteve\nAndre\nDouglas\nGary\nHugo\nJoe\nLucas\nCristian\nGuillermo\nEddie\nPhilip\nIsrael\nJerry\nLuke\nPablo\nMax\nJack\nMaxwell\nSaul\nDerrick\nIsmael\nMathew\nAllen\nConnor\nGiovanni\nCurtis\nWalter\nAbel\nAlfonso\nArthur\nCole\nLogan\nMoises\nAlexis\nRudy\nFabian\nFelipe\nLawrence\nRodolfo\nTroy\nMason\nCaleb\nDevon\nLeonardo\nLouis\nMarvin\nEsteban\nSeth\nGilbert\nBryce\nBrendan\nJessie\nKristopher\nColin\nRicky\nGilberto\nJonathon\nJeremiah\nXavier\nTanner\nLarry\nBrent\nGrant\nElias\nAlec\nMarc\nRamiro\nRussell\nSebastian\nRoger\nCalvin\nNelson\nRodrigo\nRogelio\nClayton\nDakota\nEfrain\nCraig\nIsaiah\nAlvaro\nNoah\nRoy\nCarl\nIrvin\nNoe\nNestor\nDominique\nBryant\nHumberto\nDarren\nEmilio\nAdan\nFreddy\nDrew\nRandall\nJeffery\nSimon\nTodd\nElijah\nIrving\nJackson\nMiles\nLorenzo\nDamian\nNolan\nAngelo\nBobby\nColton\nIgnacio\nGerman\nJoey\nLance\nCollin\nBranden\nShaun\nDonovan\nNoel\nOliver\nRoman\nRigoberto\nDalton\nJay\nOrlando\nTheodore\nByron\nHarrison\nMauricio\nMorgan\nBilly\nGerald\nHunter\nMicheal\nClinton\nRodney\nFelix\nLeonel\nEmanuel\nMaurice\nTomas\nJairo\nAllan\nParker\nRay\nAriel\nSantiago\nChris\nDarryl\nRoss\nNeil\nNickolas\nFrederick\nMalcolm\nOctavio\nTommy\nFranklin\nLeonard\nUriel\nAlfred\nVicente\nDean\nRonnie\nAgustin\nAlvin\nLevi\nMike\nColby\nGeoffrey\nOsvaldo\nArnold\nErnest\nAdolfo\nJoaquin\nRiley\nSam\nJon\nMarlon\nBruce\nDeandre\nKelvin\nTristan\nHayden\nPreston\nStefan\nEdgardo\nGonzalo\nMicah\nBeau\nReginald\nCharlie\nEfren\nHeriberto\nJamie\nTerry\nKenny\nUlises\nWayne\nGuadalupe\nMyles\nReynaldo\nDarius\nLee\nAli\nDante\nEugene\nMelvin\nTerrance\nWillie\nElliot\nRolando\nDarrell\nWeston\nJosiah\nTrenton\nZachariah\nFrankie\nJohnathon\nGlenn\nJerome\nKody\nRick\nSkyler\nTyrone\nGavin\nKarl\nDallas\nIsaias\nMarquis\nRalph\nDamien\nForrest\nGage\nNikolas\nConor\nDane\nJamal\nKameron\nKurtis\nMarshall\nDamon\nFrancis\nLeo\nLouie\nBernardo\nKurt\nStanley\nWilson\nJoseluis\nKory\nMoses\nWyatt\nBrennan\nClifford\nAlonzo\nEli\nKirk\nRobin\nZachery\nBrendon\nDemetrius\nDominick\nDale\nKelly\nNorman\nWarren\nEstevan\nRaymundo\nZackary\nAshton\nHarold\nIsidro\nMohammad\nDarnell\nDeshawn\nFidel\nHerman\nTrent\nAlexandro\nKeenan\nAldo\nElliott\nElmer\nSonny\nAlonso\nConrad\nHernan\nHoward\nJordon\nKendall\nQuinn\nStuart\nWade\nEzequiel\nJeff\nLandon\nDwayne\nGraham\nMarcel\nValentin\nFred\nHarry\nLeon\nLewis\nTerrence\nChance\nGregorio\nMilton\nBrenden\nJarrett\nBret\nBrock\nSammy\nUlysses\nAmir\nBlaine\nCorbin\nDario\nJovan\nBen\nBraulio\nKent\nNico\nTerrell\nArnulfo\nAurelio\nCarson\nDaryl\nDevan\nDon\nDrake\nElvis\nEverardo\nJayson\nRoland\nAntoine\nCarlo\nClarence\nDavion\nDavis\nDenzel\nGlen\nCristopher\nEddy\nTevin\nTy\nCristobal\nIssac\nMaria\nStephan\nDonte\nJakob\nPerry\nSantos\nBenito\nCruz\nDorian\nGarret\nJulius\nOswaldo\nBenny\nBernard\nCarter\nEarl\nGiovanny\nJuancarlos\nKristian\nLamar\nLoren\nNathanael\nSterling\nBraden\nEdwardo\nFederico\nGino\nJessy\nKeegan\nNeal\nClint\nConner\nDan\nErwin\nLloyd\nRaphael\nEverett\nFredy\nJessica\nJovani\nJunior\nMariano\nMarkus\nOwen\nQuincy\nSheldon\nAhmad\nDavon\nFreddie\nGordon\nJean\nJim\nKristofer\nMiguelangel\nReuben\nRoderick\nRory\nJermaine\nKai\nLukas\nTom\nTucker\nAron\nAxel\nBarry\nEliseo\nGenaro\nIsai\nKendrick\nMarquise\nMisael\nMitchel\nShelby\nZane\nChandler\nChaz\nDesmond\nGene\nJovany\nKaleb\nAdalberto\nEriberto\nEzekiel\nGuy\nIsiah\nJovanny\nMauro\nShayne\nCedric\nFermin\nJarred\nJohnnie\nLester\nLuiz\nMohammed\nNick\nGriffin\nJarrod\nKen\nLeslie\nNorberto\nPete\nTou\nBryson\nCooper\nDana\nDerick\nElizabeth\nGeovanni\nJefferson\nKyler\nLeland\nLeopoldo\nBrady\nBrice\nClay\nDarin\nDion\nHerbert\nPierre\nSkylar\nSolomon\nWilfredo\nArnoldo\nBrad\nBrenton\nEder\nHarley\nJonatan\nLeobardo\nLonnie\nNiko\nRex\nRico\nStewart\nSunny\nTrevon\nVidal\nZackery\nAntony\nBlair\nClark\nDarrin\nDenny\nDeon\nFredrick\nKellen\nKorey\nLamont\nLionel\nQuinton\nRickey\nRosendo\nShannon\nSidney\nTylor\nTyree\nBrayan\nDarwin\nDuane\nErnie\nJavon\nJess\nKasey\nKeven\nMarcelo\nQuentin\nSage\nTimmy\nVernon\nArron\nGrayson\nLiam\nRashad\nTerence\nVance\nAddison\nBrandyn\nCyrus\nGianni\nKong\nMohamed\nQuintin\nReed\nRocky\nRudolph\nStephanie\nTravon\nWill\nCaesar\nDejon\nDeonte\nDexter\nGalen\nJennifer\nJimmie\nJovanni\nNigel\nNikko\nOsbaldo\nReid\nTracy\nTrey\nTyson\nAusten\nAvery\nFaustino\nIrwin\nJameson\nPierce\nRoyce\nDomingo\nDwight\nErvin\nGerson\nGiancarlo\nHoracio\nJulien\nLucio\nSherman\nVince\nAidan\nBill\nBradford\nBrennen\nBruno\nCarlton\nEdmund\nGarett\nGeovanny\nJasper\nJonas\nMackenzie\nMichelle\nPaulo\nRandolph\nSamson\nTrever\nTyrell\nClaudio\nErich\nFranco\nGerard\nGreg\nJaron\nLane\nMalik\nMarcelino\nMaximilian\nPaolo\nShant\nWilly\nAlexandre\nBijan\nBrandan\nChester\nClifton\nDave\nEmiliano\nMychal\nRichie\nRonny\nTed\nTrinidad\nAhmed\nAugustine\nBennett\nDijon\nEleazar\nEloy\nForest\nGiovani\nHarvey\nJamaal\nJonah\nJuvenal\nKareem\nKeaton\nKerry\nLyle\nMarkanthony\nMyron\nTeddy\nAmit\nAnderson\nAnton\nBryon\nDamion\nDandre\nDesean\nDeven\nDillan\nDimitri\nErin\nHilario\nJamar\nLeroy\nMarcoantonio\nMikel\nNikolaus\nRey\nSalvatore\nSpenser\nStevie\nUbaldo\nUlisses\nWalker\nWinston\nAbran\nAric\nBrenda\nDaron\nDashawn\nDevante\nDewayne\nDonavan\nEdson\nFiliberto\nGeovany\nHans\nJohnson\nJorden\nJosh\nJusten\nKhalid\nLaurence\nLazaro\nOtis\nRandal\nReyes\nSamir\nSilvestre\nVaughn\nAbram\nArgenis\nArman\nAshley\nBronson\nCamron\nCoty\nDevonte\nDontae\nDuncan\nEdmond\nEver\nGunnar\nJacobo\nJamil\nJosedejesus\nKevon\nLuciano\nMadison\nMarques\nMatias\nMaximillian\nObed\nOrion\nRocio\nVincente\nAbelardo\nAdriel\nAlejandra\nAlessandro\nAlfonzo\nAndrea\nAri\nArtemio\nBaltazar\nBarrett\nBee\nBrain\nChadwick\nChasen\nCheyne\nDarian\nEarvin\nEdmundo\nEmerson\nFausto\nJackie\nJair\nJerald\nJohnpaul\nJohny\nJoshue\nKou\nKristoffer\nNicholaus\nNikolai\nReece\nReese\nRon\nSantino\nAdrien\nAndreas\nAnibal\nAntwan\nArnaldo\nBo\nCeasar\nColeman\nCourtney\nDino\nDonnell\nDonny\nElton\nEmmett\nFavian\nGarrick\nGil\nHolden\nHubert\nJerrell\nJosef\nJuanjose\nJustyn\nKiefer\nLino\nMargarito\nMeng\nMikael\nNima\nParis\nRigo\nRobbie\nShea\nWestley\nWilbert\nZakary\nAnders\nArian\nArmand\nArya\nAugustus\nBoris\nBrooks\nCecil\nCheng\nChristoper\nClyde\nDanilo\nDarrel\nDarrick\nDeangelo\nDemario\nEdgard\nEllis\nFlavio\nFloyd\nGenesis\nHugh\nIbrahim\nJace\nJamel\nJered\nJerrod\nMickey\nMikhail\nNathanial\nPao\nRefugio\nRojelio\nRomeo\nSalomon\nToby\nTorrey\nVanessa\nVeronica\nAram\nBrody\nCelso\nDeanthony\nDiana\nElisha\nErica\nGarrison\nGarry\nHarris\nHassan\nJade\nJamison\nKelsey\nKennedy\nLong\nMaximiliano\nNicky\nPatric\nPhong\nRamsey\nRomel\nRyne\nStephon\nTalon\nTobias\nVan\nWilfred\nYovani\nAmador\nBernabe\nBilal\nCamden\nCamilo\nChristina\nDagoberto\nDaren\nDerik\nElvin\nEmil\nFranky\nFredi\nGabriela\nGarth\nHuy\nJefferey\nJustice\nJustine\nKalvin\nKunal\nLeif\nMateo\nMaximino\nMigel\nNickolaus\nRami\nRobby\nRoque\nSarkis\nSione\nStefano\nTim\nViet\nVinh\nWillis\nWilmer\nYeng\nZechariah\nAbner\nAlek\nArchie\nArjun\nArmen\nArt\nAsher\nCodie\nCynthia\nDenis\nDerrik\nDeshaun\nDonnie\nDylon\nErasmo\nEsequiel\nEsgar\nEugenio\nEzra\nFlorentino\nJedidiah\nJeffry\nJerardo\nJerod\nJosemanuel\nKamran\nLucky\nMarcell\nMarko\nMaxx\nMonica\nNader\nNancy\nNery\nNikhil\nOmid\nOsman\nRayshawn\nRenato\nRhys\nSami\nShayan\nUlyses\nValente\nVirgil\nAdriana\nAlain\nAlton\nAmos\nArash\nArmani\nBaby\nChristain\nDarion\nDayne\nDevaughn\nDomenic\nDomonique\nDyllan\nEdison\nErrol\nEsau\nFletcher\nGabino\nGeovani\nGerry\nHakeem\nHansel\nIra\nJohathan\nJohnmichael\nKhalil\nKian\nKieran\nLauren\nLeandro\nLuther\nMalachi\nMarcial\nMicahel\nMichel\nMohamad\nMorris\nMynor\nNarciso\nOtto\nPorfirio\nRamses\nReggie\nRhett\nRian\nRosalio\nRosario\nRueben\nRussel\nSal\nShay\nSilas\nTito\nTorin\nTravion\nTrung\nValentino\nYee\nZack\nAdrain\nAkash\nAmado\nAubrey\nBrayden\nCassidy\nChan\nChristofer\nClemente\nCornelius\nDenzell\nDerrek\nDevyn\nEliazar\nElio\nFlorencio\nFrancesco\nGer\nGian\nGorge\nHamilton\nHieu\nJacques\nJeanluc\nJeramy\nJeronimo\nJoesph\nJonny\nKalin\nLaura\nLauro\nLincoln\nMaverick\nMayra\nMilo\nModesto\nMustafa\nNathen\nPascual\nRaj\nRichardo\nRony\nRusty\nRylan\nSawyer\nShon\nStacey\nStacy\nStevan\nSylvester\nTaj\nTuan\nVincenzo\nVinson\nWendell\nWestin\nAbdul\nAkeem\nAlbaro\nAmilcar\nAnselmo\nAugust\nBabyboy\nBennie\nBenson\nBrandt\nCary\nCheyenne\nChong\nColt\nCorwin\nDarrion\nDayton\nDeshon\nErika\nEusebio\nEvaristo\nFabio\nFransisco\nFue\nGamaliel\nGevork\nGrady\nHarpreet\nHung\nIsreal\nJacky\nJessi\nJorgeluis\nJossue\nJuventino\nKalen\nKarim\nKenton\nKeshawn\nLaron\nLowell\nLuigi\nMarquice\nMatthias\nMychael\nNam\nNicklaus\nNolberto\nPheng\nPhi\nRahul\nRenee\nRoyal\nSahil\nSandeep\nSchuyler\nSerafin\nServando\nStorm\nSyed\nTorrance\nUriah\nVahe\nVictoria\nVladimir\nWilber\nWilliams\nAnson\nArin\nAugustin\nBlong\nBob\nBradly\nBrando\nCarmelo\nCelestino\nChee\nChistopher\nChristen\nChue\nClaude\nCuauhtemoc\nDanial\nDarien\nDemarcus\nDemetri\nDemetrio\nDiamond\nDominque\nElbert\nEliott\nEly\nEmile\nEnoc\nFeliciano\nGermain\nHenri\nHouston\nIlan\nIrbin\nIsamar\nIshmael\nJamari\nJaquan\nJeremey\nJeremie\nJonnathan\nJoseantonio\nJules\nJuliocesar\nKadeem\nKaren\nKc\nKegan\nKirby\nLaquan\nLeng\nLenin\nLevon\nMaynor\nMiller\nMinh\nMonte\nPrince\nRaffi\nSabastian\nSameer\nSasha\nThaddeus\nTobin\nTory\nTyron\nWendy\nYoung\nAlexandra\nAmanda\nAna\nAnand\nAntwon\nAra\nAsa\nAuston\nBernie\nBinh\nBlas\nBrant\nBroderick\nCandelario\nCezar\nChistian\nCipriano\nCodi\nColten\nCristhian\nCristina\nCullen\nCurt\nDallin\nDarron\nDelbert\nDeondre\nDillion\nDuke\nDuy\nDyllon\nEulises\nFroylan\nGaston\nGideon\nGiuseppe\nHamza\nHorace\nHudson\nJacinto\nJan\nJaren\nJasmine\nJasson\nJaymes\nJelani\nJerad\nJerel\nJoan\nJob\nJohan\nJorje\nJoshuah\nKeanu\nKeenen\nKeng\nKenji\nKevyn\nKhang\nLafayette\nLucero\nMacario\nMagdaleno\nMaribel\nMarion\nMarlo\nMarshal\nMartel\nMartell\nMaxfield\nMichale\nMoshe\nMykel\nNatanael\nNavid\nNicolaus\nNorris\nPatricio\nRishi\nRodger\nRodrick\nRohan\nRohit\nRommel\nSandra\nSandro\nSarah\nScotty\nSerjio\nShaquille\nSilverio\nSon\nTad\nTai\nTam\nTarek\nTariq\nTayler\nTeodoro\nTitus\nToni\nTrae\nVikram\nYobani\nYosef\nZain\nAbdullah\nAbrahan\nAdonis\nAman\nAn\nArtin\nArvin\nAryan\nAshwin\nAvi\nBailey\nBenedict\nBert\nBlaise\nBlayne\nBuddy\nCain\nCha\nChace\nChazz\nCirilo\nClaudia\nCliff\nCodey\nColter\nCordell\nCordero\nCornell\nCourtland\nCristo\nCuong\nDaisy\nDamonte\nDavonte\nDemarco\nDeontae\nDereck\nDeric\nDirk\nDominik\nDomonic\nDuc\nEarnest\nEber\nEd\nEden\nEnoch\nEsteven\nFrancois\nGeroge\nGerrit\nGildardo\nGregg\nGreggory\nGurpreet\nHagop\nHeath\nHipolito\nHiram\nHue\nIban\nIrvine\nIsaak\nIsmail\nJacqueline\nJanet\nJarett\nJarod\nJayce\nJayme\nJazmin\nJed\nJericho\nJeron\nJhonny\nJihad\nJohnathen\nJonthan\nJuanmanuel\nJude\nKao\nKhristopher\nKillian\nKing\nKolby\nLamarr\nLanden\nLisandro\nLondon\nLuisangel\nMalcom\nMarcellus\nMarkell\nMarquese\nMarshawn\nMarty\nMary\nMaximo\nMiriam\nMuhammad\nNarek\nPaulino\nPayton\nPerris\nPhil\nRashaad\nRaudel\nRaziel\nRemington\nRitchie\nRocco\nRowan\nRubin\nSabino\nSeamus\nSteffan\nTal\nTeng\nTrayvon\nTrevin\nTruman\nTylar\nUlices\nUziel\nWaldo\nWallace\nWayland\nWilbur\nWillian\nYair\nZaid\nZeke\nAdriane\nAjay\nAlen\nAlexzander\nAmando\nAndranik\nAngus\nAntione\nApolonio\nBasil\nBaudelio\nBlaze\nBradlee\nBrandin\nBrennon\nCale\nCalen\nCarey\nChai\nChang\nChauncey\nCher\nChristan\nChristiaan\nChristoher\nConstantino\nCristofer\nCrystal\nCyle\nDawson\nDejuan\nDenver\nDeron\nDesi\nDimas\nDionte\nDonavin\nEctor\nEdrick\nElan\nEliezer\nEligio\nEliot\nEnrrique\nEphraim\nEstuardo\nEulalio\nFidencio\nGareth\nGeronimo\nGiovany\nGustabo\nHarlan\nHarout\nHerminio\nHomar\nImmanuel\nIrineo\nIvory\nJabari\nJaleel\nJameel\nJareth\nJarid\nJarvis\nJasen\nJavan\nJaycob\nJeanette\nJeanpaul\nJeremi\nJeromy\nJerrad\nJonathen\nJoseangel\nJosua\nJovon\nKalani\nKavin\nKeane\nKeelan\nKeifer\nKelby\nKelley\nKenyon\nKiel\nKim\nLibrado\nLuc\nLuisalberto\nMack\nMahmoud\nMarcello\nMarquez\nMelchor\nMelissa\nNajee\nNhia\nNicola\nNicole\nNiles\nOsama\nOsmar\nOzzie\nParris\nPeyton\nPriscilla\nQuan\nRaheem\nRandell\nRasheed\nRavi\nRemy\nReymundo\nRobinson\nSaad\nSamantha\nSammie\nSan\nSelvin\nShelton\nSheridan\nShiloh\nSho\nSky\nSou\nSumeet\nSuraj\nSydney\nTerrill\nTevita\nThai\nThanh\nTj\nTri\nTristen\nValentine\nVang\nVartan\nVito\nWiley\nWolfgang\nXeng\nYancy\nYusef\nZacary\nZacharia\nAbimael\nAce\nAdel\nAgustine\nAlbino\nAlden\nAldrin\nAlegandro\nAlexsander\nAlicia\nAlistair\nAmadeo\nAmer\nAmin\nAndrey\nAngelica\nAnish\nArtur\nAugusto\nBao\nBayron\nBernardino\nBillie\nBjorn\nBlain\nBrandy\nBrannon\nBrittany\nBritton\nCade\nCarolina\nCatarino\nCharley\nChristine\nCiro\nClement\nCoby\nConrado\nCorin\nDajon\nDamar\nDangelo\nDanniel\nDanzel\nDao\nDara\nDashiell\nDeante\nDenise\nDerrell\nDiante\nDilan\nDillin\nDiondre\nDomenico\nDonavon\nDru\nDung\nDusty\nDustyn\nEan\nEladio\nElder\nEmily\nEnrico\nEricberto\nEvin\nFadi\nFerdinand\nFortino\nGarland\nGaro\nGaspar\nGeraldo\nGrey\nGreyson\nHal\nHank\nHasan\nHien\nHussein\nImani\nIsac\nJabril\nJahaziel\nJasdeep\nJashua\nJasmin\nJaspreet\nJensen\nJeovanny\nJerid\nJesusalberto\nJohnatan\nJonmichael\nJonte\nJordin\nJorel\nJory\nJourdan\nJuanmiguel\nJudah\nJulia\nKaden\nKamal\nKamron\nKane\nKatherine\nKennith\nKenya\nKevan\nKhanh\nKhoa\nKris\nLars\nLeandre\nLindsey\nLue\nMaher\nMajor\nManolo\nMarcanthony\nMarioalberto\nMarisol\nMatt\nMichaelangelo\nMichaeljames\nMikal\nMikey\nMontgomery\nMurphy\nNabil\nNatalie\nNeema\nNevin\nNewton\nNiall\nNicco\nNichols\nNicolai\nOlaf\nOlegario\nOmari\nPaola\nPercy\nRaleigh\nRamin\nRaquel\nRayan\nRaymon\nRayvon\nReilly\nRemigio\nReno\nRenzo\nRolland\nRonnell\nRudolfo\nRyanchristopher\nRyder\nSaid\nSalman\nSamual\nSang\nScot\nSemaj\nShae\nShan\nSonia\nSoren\nStanford\nStetson\nSue\nTarik\nTate\nTavon\nThien\nThong\nTin\nToua\nTracey\nTrevion\nTristin\nTurner\nTyrus\nVicent\nVictoriano\nVirgilio\nWaleed\nXiong\nYesenia\nYusuf\nZamir\nZeferino\nAdnan\nAdolph\nAdrean\nAiden\nAj\nAleksander\nAlexi\nAlvino\nAmar\nAmeer\nAmmar\nAndrez\nAnthoney\nAntone\nAren\nArie\nArik\nArmon\nArmond\nArun\nAureliano\nAustyn\nAvelino\nAzael\nBasilio\nBenigno\nBlane\nBond\nBoyd\nBriant\nBriar\nBrien\nBroc\nBulmaro\nByran\nCampbell\nCarlin\nCatalina\nCedrick\nChancellor\nChanning\nCharly\nChelsea\nChristophe\nCindy\nCord\nCornelio\nCy\nCyril\nDain\nDakoda\nDamen\nDanh\nDarrius\nDarvin\nDaryn\nDaveon\nDavin\nDeclan\nDelfino\nDemetris\nDestin\nDetrick\nDevlin\nDimitrios\nDionicio\nDonell\nDonta\nDontay\nDwain\nEamon\nEdan\nEdilberto\nEduard\nEdvin\nEitan\nEllison\nEmad\nEpifanio\nEsai\nEsdras\nEsmeralda\nEstefan\nEvander\nFaisal\nFrances\nFranciscojavier\nFranklyn\nFroilan\nGaige\nGaren\nGarren\nGavino\nGeno\nGibran\nGillermo\nGraeme\nGrigor\nHakop\nHannah\nHerber\nHoa\nHomer\nImran\nIsabel\nIsael\nJae\nJafet\nJai\nJairus\nJarad\nJarrell\nJazz\nJc\nJeancarlo\nJeramey\nJeramiah\nJerimiah\nJerman\nJessey\nJevon\nJilberto\nJjesus\nJoab\nJoeseph\nJohnie\nJomar\nJosias\nJr\nJuanpablo\nJudith\nJune\nJusto\nJuston\nKabir\nKale\nKarina\nKayvon\nKei\nKendell\nKeon\nKevork\nKeyon\nKhiry\nKimberly\nKlye\nKoji\nKourosh\nKristin\nKrystian\nKue\nKylan\nLeighton\nLenny\nLiliana\nLucian\nLuisalfredo\nLyndon\nMac\nMacaulay\nMagdiel\nMainor\nMarino\nMarkel\nMarkese\nMarkis\nMarley\nMarlin\nMarqus\nMckinley\nMegan\nMerlin\nMichaelanthony\nMichal\nMichelangelo\nMichell\nMick\nMilan\nMontana\nMontel\nMostafa\nNabeel\nNahum\nNapoleon\nNash\nNathon\nNazareth\nNils\nNou\nOracio\nOren\nOskar\nParsa\nPatricia\nPayam\nPeng\nPerla\nPetros\nPlacido\nPrescott\nQuang\nQuinlan\nRachel\nRajan\nRamzi\nRashawn\nRiccardo\nRichmond\nRickie\nRikki\nRio\nRoosevelt\nRosa\nRoscoe\nRufino\nRyley\nRyo\nSaam\nSaeed\nSalim\nSamy\nSandy\nSanjay\nSara\nSher\nShervin\nSherwin\nSlade\nStan\nTakashi\nTan\nTaurean\nTavis\nTerell\nTerran\nTerrel\nTiffany\nTimmothy\nTonny\nTorrence\nTrace\nUmberto\nVahan\nVernell\nVinay\nWerner\nWil\nWilfrido\nWoodrow\nYannick\nZoe\nAakash\nAamir\nAbanoub\nAbdiel\nAbelino\nAbisai\nAgapito\nAkram\nAlam\nAleczander\nAlejo\nAleksandar\nAlexx\nAlphonso\nAmber\nAndree\nAndrei\nAnival\nAnkur\nAnsel\nAntjuan\nAntwain\nApolinar\nAraceli\nArcenio\nAris\nAristeo\nArley\nArlo\nArnie\nAroldo\nArsenio\nAviel\nAvinash\nAviv\nAvraham\nAwet\nAxcel\nBairon\nBakari\nBaldemar\nBarrington\nBartolo\nBarton\nBenjamen\nBenton\nBertin\nBianca\nBijon\nBillal\nBladimir\nBobbie\nBoston\nBradon\nBrallan\nBravlio\nBrayton\nBriana\nBrittan\nBrodie\nBrook\nBryn\nCanaan\nCandido\nCass\nCassius\nCeaser\nCecilio\nCesario\nChadd\nChao\nChe\nCheenou\nChet\nChia\nChima\nChristipher\nChristpher\nCj\nCortez\nDakotah\nDamarcus\nDameon\nDamond\nDang\nDanielle\nDanthony\nDarby\nDarrian\nDaven\nDax\nDeion\nDeleon\nDemar\nDemetric\nDemetrice\nDeonta\nDerrion\nDevion\nDonato\nDonaven\nDontrell\nDorion\nEdder\nEdin\nEdy\nEhren\nElber\nEldon\nElgin\nElihu\nEliu\nEmeka\nEmery\nEndy\nEnrigue\nEsaul\nEtienne\nEunice\nEvelyn\nEverado\nFarhad\nFelipedejesus\nFelton\nFernie\nFilip\nFranciso\nFrederic\nGe\nGeoffery\nGianfranco\nGiovannie\nGiuliano\nGumaro\nGunner\nGus\nHaden\nHaik\nHansen\nHeber\nHernando\nHerson\nHiroki\nHisham\nHonorio\nHovanes\nHuriel\nIke\nIsrrael\nIzaiah\nJahmal\nJaimie\nJaiver\nJajuan\nJamon\nJanathan\nJanmichael\nJarel\nJarin\nJase\nJaskaran\nJayshawn\nJeanpierre\nJeovanni\nJerick\nJermey\nJerrett\nJerson\nJessejames\nJett\nJhon\nJhonathan\nJin\nJoanna\nJody\nJohann\nJohndavid\nJonothan\nJonpaul\nJoseguadalupe\nJospeh\nJuanramon\nJullian\nJustus\nKaran\nKarla\nKarlo\nKarlos\nKawika\nKayla\nKeefe\nKeita\nKellan\nKelton\nKendal\nKenrick\nKenta\nKhaled\nKhan\nKhari\nKimo\nKirkland\nKole\nKolton\nKongmeng\nKonrad\nKrystal\nKyrie\nLam\nLandis\nLang\nLavell\nLavelle\nLemuel\nLeondre\nLevy\nLinda\nLinh\nLorena\nLorenso\nLuan\nLuca\nLuisenrique\nLuismiguel\nLuka\nLupe\nLuz\nLynn\nMaira\nMarcelus\nMarkeith\nMarlene\nMarquan\nMarque\nMartine\nMatteo\nMatthews\nMaurilio\nMenachem\nMichele\nMina\nMurray\nMurtaza\nMy\nNai\nNataniel\nNathaneal\nNefi\nNeftali\nNikola\nNino\nOri\nOsiel\nOsmin\nOtoniel\nParth\nPasha\nPatrik\nPaxton\nPhu\nRaciel\nRakim\nRanferi\nRatha\nRaymund\nRaynard\nReginaldo\nRenne\nRich\nRiki\nRithy\nRoel\nRomaldo\nRomulo\nRonaldo\nRuby\nRustin\nRyanjames\nSabas\nSachin\nSai\nSamer\nSampson\nSaulo\nSayed\nSeanmichael\nSebastiano\nSebastien\nSesar\nSevak\nShad\nShamar\nShannen\nShaya\nShlomo\nShue\nSia\nSilviano\nSinjin\nSkylor\nSosaia\nSundeep\nTait\nTaran\nTaron\nThang\nTheron\nThor\nTomer\nTommie\nTomy\nTong\nTramell\nTre\nTremayne\nTrevis\nTristian\nTyce\nTyre\nTyrel\nVanna\nVarun\nVentura\nVictoralfonso\nVijay\nVishal\nVue\nXao\nYonathan\nYousef\nYovanni\nYovany\nYvan\nZacharie\nZackariah\nZareh\nZavier\nMichael\nDaniel\nChristopher\nJose\nDavid\nAndrew\nMatthew\nAnthony\nJonathan\nJoshua\nKevin\nJoseph\nRyan\nBrandon\nNicholas\nRobert\nJuan\nChristian\nAlexander\nJames\nJohn\nEric\nJacob\nTyler\nLuis\nJustin\nKyle\nJesus\nSteven\nBrian\nWilliam\nCarlos\nZachary\nMiguel\nRichard\nAaron\nCody\nDylan\nAlejandro\nVictor\nJorge\nJesse\nSamuel\nBryan\nSean\nJason\nJordan\nThomas\nFrancisco\nBenjamin\nAdam\nEduardo\nAngel\nAdrian\nTimothy\nRicardo\nGabriel\nOscar\nPatrick\nManuel\nAustin\nEdgar\nAlex\nMark\nJeffrey\nNathan\nSergio\nPaul\nCameron\nMario\nIvan\nOmar\nMartin\nErik\nEdward\nAntonio\nTrevor\nJavier\nFernando\nJeremy\nRoberto\nCharles\nTaylor\nTravis\nStephen\nHector\nCesar\nRuben\nScott\nVincent\nIan\nKenneth\nRaymond\nAndres\nPedro\nAlan\nJoel\nGregory\nRaul\nEvan\nGerardo\nDerek\nPeter\nEdwin\nMarco\nJulio\nAlberto\nJared\nGeorge\nGarrett\nRafael\nArmando\nJaime\nErick\nJulian\nShane\nSalvador\nDillon\nArturo\nSpencer\nFrank\nHenry\nConnor\nCristian\nIsaac\nJohnny\nJake\nMarcus\nDanny\nAlfredo\nEnrique\nNathaniel\nAndy\nGustavo\nDevin\nDominic\nDustin\nMarcos\nShawn\nCorey\nRamon\nMitchell\nBlake\nPhillip\nErnesto\nDiego\nNicolas\nRonald\nJosue\nBradley\nJimmy\nChad\nCory\nAbraham\nTanner\nAlbert\nAndre\nBrett\nLucas\nEmmanuel\nSteve\nWesley\nLuke\nTony\nCasey\nKeith\nHugo\nEthan\nPablo\nMax\nJohnathan\nIsrael\nRandy\nGuillermo\nDonald\nRene\nDennis\nAlexis\nChase\nGary\nDouglas\nRoger\nSaul\nJoe\nGiovanni\nEddie\nCole\nLogan\nCaleb\nMoises\nAlec\nJack\nRicky\nDerrick\nAllen\nXavier\nPhilip\nRudy\nSebastian\nAbel\nJerry\nIsmael\nMaxwell\nEsteban\nMathew\nColin\nDevon\nLouis\nMarvin\nJonathon\nArthur\nSeth\nAlfonso\nBrendan\nBryce\nFelipe\nRodolfo\nBryant\nFabian\nLeonardo\nRodrigo\nTroy\nGilberto\nJeremiah\nMason\nWalter\nDakota\nIsaiah\nRogelio\nElias\nLawrence\nRamiro\nRussell\nCurtis\nBrent\nGrant\nMauricio\nJessie\nMarc\nColton\nLarry\nElijah\nNolan\nGilbert\nKristopher\nNoah\nHumberto\nDarren\nAlvaro\nCalvin\nJackson\nClayton\nDamian\nNestor\nDalton\nCraig\nAdan\nEmilio\nHunter\nNelson\nRoman\nEmanuel\nFreddy\nIrvin\nBobby\nFelix\nSimon\nMorgan\nNoe\nCarl\nAlvin\nNoel\nDominique\nIgnacio\nMiles\nNickolas\nRiley\nRigoberto\nBranden\nJay\nTommy\nLorenzo\nUriel\nDonovan\nJoey\nParker\nAngelo\nTheodore\nEfrain\nRoy\nOliver\nAllan\nJoaquin\nSantiago\nVicente\nHarrison\nLeonel\nRodney\nAgustin\nByron\nDrew\nLevi\nPreston\nBilly\nLance\nTodd\nCollin\nGavin\nGerman\nHayden\nAlfred\nDean\nMicah\nOrlando\nJon\nKenny\nMalcolm\nGeoffrey\nOsvaldo\nMike\nSkyler\nTomas\nArnold\nGerald\nRandall\nTerry\nColby\nEugene\nJeffery\nMaurice\nTrenton\nWyatt\nRoss\nShaun\nUlises\nConner\nForrest\nRonnie\nLeonard\nZachery\nOctavio\nClinton\nConor\nKelvin\nDamon\nEdgardo\nAdolfo\nDamien\nErnest\nFranklin\nGonzalo\nRay\nSam\nCharlie\nChris\nMarlon\nMicheal\nEfren\nFrederick\nKody\nDarryl\nIrving\nTrent\nReginald\nRolando\nMyles\nWillie\nNeil\nMelvin\nElmer\nNikolas\nWilson\nLeo\nDante\nElliot\nFrancis\nLee\nZackary\nDominick\nHeriberto\nJairo\nJamie\nKristian\nRalph\nZachariah\nBruce\nDevante\nMarshall\nDarius\nTristan\nJamal\nDarrell\nHernan\nBrennan\nRaymundo\nJerome\nLandon\nMarquis\nMoses\nWeston\nDeandre\nEstevan\nJohnathon\nAli\nAriel\nDevonte\nElliott\nIsaias\nTerrance\nTyrone\nFrankie\nDane\nFidel\nKameron\nMisael\nEli\nUlysses\nWarren\nAlonso\nJosiah\nRick\nGlenn\nTevin\nWayne\nBrenden\nDallas\nDavis\nDesmond\nKarl\nKurt\nBeau\nDale\nLewis\nTerrence\nBernardo\nGregorio\nLeon\nEzequiel\nKurtis\nBrendon\nGage\nJovany\nReynaldo\nStephan\nStuart\nAldo\nGarret\nStanley\nCooper\nDrake\nJim\nKeenan\nNico\nRobin\nGuadalupe\nHarry\nCarson\nFredy\nArnulfo\nChance\nJordon\nMarkus\nMilton\nBrady\nJulius\nMarcel\nCristopher\nDario\nDeshawn\nKendall\nKristofer\nNathanael\nTrevon\nGraham\nHarold\nJayson\nKelly\nKirk\nMaximilian\nZane\nEddy\nSheldon\nTy\nWade\nBenito\nDorian\nFreddie\nKyler\nLouie\nMackenzie\nSantos\nAntoine\nBenny\nChandler\nClifford\nElvis\nIsidro\nJeff\nStefan\nAlexandro\nBret\nMohammad\nZackery\nAlonzo\nGenaro\nHarley\nJakob\nJarred\nJermaine\nJovanny\nKaleb\nRoland\nSammy\nSterling\nAmir\nDaryl\nEliseo\nFederico\nGino\nKent\nQuinn\nTerrell\nTylor\nDarnell\nGriffin\nHoward\nJovan\nRaphael\nSkylar\nAxel\nDan\nDerick\nDion\nEverardo\nIssac\nJunior\nBrock\nCarter\nCristobal\nErnie\nErvin\nJean\nBraulio\nClint\nCorbin\nDemetrius\nDevan\nErwin\nKeegan\nRory\nTom\nTrey\nTucker\nAron\nBrenton\nDarian\nDavion\nFred\nLukas\nNigel\nShayne\nBlaine\nClarence\nCruz\nDwayne\nEverett\nJasper\nJoseluis\nJovani\nKory\nNick\nNorman\nOwen\nDavon\nJessica\nJuancarlos\nLoren\nLuiz\nQuentin\nBernard\nConrad\nLeopoldo\nMalik\nPerry\nValentin\nDon\nJarrett\nReuben\nTyrell\nAidan\nDimitri\nHoracio\nLamar\nMarquise\nPierce\nSonny\nTravon\nAdalberto\nClark\nDonte\nEriberto\nIsiah\nLeland\nLloyd\nMarcelo\nMaximiliano\nAntony\nAurelio\nGiancarlo\nGordon\nKasey\nKeaton\nMariano\nMohammed\nSolomon\nDenzel\nDillan\nEarl\nGlen\nHerman\nJaron\nJarrod\nJessy\nLester\nLonnie\nMauro\nReed\nEder\nEdwardo\nGerson\nNeal\nReid\nTerence\nTyree\nAusten\nAvery\nBill\nDejon\nEzekiel\nIsai\nJonatan\nLionel\nMaria\nOswaldo\nQuincy\nRocky\nBen\nBryson\nDeon\nDwight\nGeovanny\nGiovanny\nKeven\nLiam\nRoyce\nSidney\nStephanie\nVance\nClaudio\nCyrus\nFermin\nArnoldo\nBrennen\nCedric\nDavonte\nHerbert\nJamison\nLuciano\nNikko\nRashad\nRex\nRudolph\nSawyer\nWilfredo\nZechariah\nAhmad\nAric\nArmand\nBrayan\nChaz\nGene\nGeovanni\nGeovany\nJimmie\nKellen\nQuinton\nRosendo\nTou\nVladimir\nAnton\nAshton\nBraden\nDenny\nDeven\nErich\nFausto\nFredrick\nGiovani\nHans\nJohnnie\nJovanni\nKai\nKen\nMarcelino\nMiguelangel\nBrandyn\nCeasar\nEmerson\nJonah\nKendrick\nLong\nLucio\nMarkanthony\nOsbaldo\nPierre\nAri\nBryon\nDamion\nDarin\nFavian\nGrayson\nJefferson\nLamont\nLazaro\nLeroy\nMohamed\nNiko\nRico\nRoderick\nShelby\nAbelardo\nAddison\nArmen\nBo\nBrad\nCaesar\nCarlo\nClay\nClifton\nDana\nDarien\nDarrin\nEloy\nForest\nGuy\nKareem\nMitchel\nSamson\nVidal\nVince\nAhmed\nAshley\nBradford\nChester\nDexter\nEdmund\nHilario\nHolden\nIrwin\nJalen\nJulien\nKou\nLeslie\nPete\nRandolph\nSage\nTimmy\nAbram\nAmador\nBarry\nDarion\nDomingo\nDonavan\nEmil\nGarrick\nGreg\nJackie\nJavon\nKong\nLeobardo\nMuhammad\nNorberto\nRonny\nShannon\nArron\nAugustine\nBijan\nBlair\nBrice\nDewayne\nEmmett\nEsequiel\nFlorentino\nFranco\nJennifer\nJohnson\nRey\nReyes\nRon\nSamir\nShea\nSilvestre\nSunny\nTed\nTre\nTyson\nValentino\nAlexandre\nBrandan\nCary\nCullen\nDeonte\nDuane\nDyllan\nDylon\nErin\nFiliberto\nGarrison\nHarvey\nJerald\nJess\nKorey\nLino\nMelissa\nMichelle\nSarkis\nTrever\nVincente\nWilbert\nWinston\nAbrahan\nAlden\nAlejandra\nAugust\nBrooks\nCarlton\nColeman\nDave\nDeion\nDiamond\nDuncan\nElizabeth\nEzra\nFaustino\nGalen\nGianni\nGunnar\nJustice\nJustyn\nKennedy\nRami\nSalomon\nSantino\nShaquille\nShayan\nVernon\nVinh\nWalker\nWill\nAdrien\nAnibal\nArman\nBennett\nChristina\nDanilo\nDonnell\nFransisco\nGenesis\nHuy\nJamar\nJameson\nLaurence\nMadison\nMaximillian\nNathanial\nParis\nPaulo\nPayton\nRichie\nRickey\nStewart\nTayler\nTeng\nTracy\nUbaldo\nBronson\nBruno\nClemente\nDarwin\nDashawn\nDillion\nDominque\nEden\nEdson\nFloyd\nGarett\nGerard\nGil\nJuvenal\nKao\nKerry\nMichel\nMyron\nRigo\nTrinidad\nVaughn\nWestley\nAndreas\nBoris\nDavante\nDeangelo\nEdmundo\nEleazar\nElio\nFlavio\nGabino\nJeffry\nJohny\nReece\nRyne\nSpenser\nStevie\nToby\nTory\nTrayvon\nWilliams\nWilmer\nAbner\nAmado\nBaltazar\nBenson\nCamilo\nCourtney\nDaisy\nDavin\nDenis\nDonnie\nEarvin\nGarry\nIshmael\nJabari\nJamil\nJarod\nJerardo\nKeanu\nKevon\nKieran\nRefugio\nRommel\nSilas\nTalon\nTim\nWendell\nAlain\nAnderson\nAram\nAsher\nAubrey\nBrenda\nCelso\nChristofer\nChristoper\nClyde\nDaren\nElvin\nEmiliano\nEver\nGerry\nIbrahim\nJair\nJeanluc\nJered\nJosef\nKelsey\nLane\nLuigi\nLyle\nMickey\nMinh\nNicholaus\nOtto\nQuintin\nReese\nRobbie\nTitus\nValente\nVanessa\nWilly\nZakary\nAdriel\nAndrea\nArvin\nBee\nBrannon\nCheyne\nCodie\nDerik\nDevyn\nElisha\nEllis\nEugenio\nFredi\nGorge\nHassan\nJacky\nJoesph\nJohan\nJohathan\nJohnpaul\nJorden\nJuanmanuel\nJustus\nKenji\nKiefer\nKris\nLevon\nMalachi\nMarques\nMaximo\nMigel\nObed\nPorfirio\nRandal\nRocio\nSherman\nSyed\nTeddy\nThaddeus\nVikram\nWilber\nYeng\nAbdul\nAlton\nAmit\nAna\nAntwan\nArmani\nBarrett\nBernie\nBradly\nBrando\nBrody\nCassidy\nCecil\nChadwick\nChistian\nCodey\nColt\nCornelius\nDarrel\nDaveon\nEdmond\nEsgar\nFabio\nGeronimo\nHakop\nHarris\nJace\nJensen\nJeremias\nJeronimo\nJosh\nJustine\nJuventino\nKian\nLuc\nMarcial\nMargarito\nMateo\nMaxfield\nMaximino\nMeng\nMikhail\nNarciso\nOrion\nPascual\nPatricio\nRaheem\nSalman\nTarik\nTravion\nAdrain\nAkeem\nAlphonso\nArjun\nArnaldo\nArtemio\nArya\nAsa\nBrandin\nBraxton\nChasen\nCoty\nCynthia\nDandre\nDayton\nDelfino\nDemetri\nDereck\nDeshaun\nDyllon\nElan\nEliazar\nEnoch\nEnrico\nGabriela\nGarth\nGer\nGreggory\nHagop\nHieu\nIsabel\nJade\nJavonte\nJonas\nJonnathan\nJosedejesus\nJusten\nKarim\nKeng\nKhalil\nKirby\nLaron\nLaura\nMaxx\nMonica\nNima\nPhong\nPrince\nRaffi\nRahul\nRaudel\nSagar\nSalvatore\nSamantha\nSami\nStacey\nTuan\nVan\nVito\nWillis\nAn\nAntone\nAntwon\nArgenis\nBabyboy\nBilal\nCain\nDanniel\nDaron\nDemetrio\nDeshon\nDiana\nDomenic\nDonny\nDontae\nEarnest\nElbert\nElton\nEvelyn\nFeliciano\nGamaliel\nGevork\nGrady\nHenri\nHugh\nJamaal\nJefferey\nJeramy\nJerrod\nJessi\nKamran\nKane\nKevan\nKevyn\nKimberly\nKolton\nKristoffer\nKyron\nLuisangel\nMarcoantonio\nMelchor\nMikel\nNevin\nNicklaus\nNicole\nNikhil\nOsman\nPheng\nRaziel\nRhett\nRobby\nRojelio\nRony\nRoque\nRueben\nSandra\nScot\nStephon\nThai\nTobias\nUlisses\nWolfgang\nAarron\nAlexzander\nAshwin\nAugustus\nBenigno\nBennie\nCarey\nCosme\nCourtland\nDagoberto\nDajon\nDallin\nDanielle\nDeondre\nDerrek\nDevontae\nDijon\nElder\nErasmo\nFrancesco\nGildardo\nGrigor\nHamilton\nHamza\nHank\nHarout\nJaleel\nJan\nJasmine\nJedidiah\nJerrad\nJiovanni\nJonny\nJossue\nJovon\nKalvin\nKarina\nKenton\nKeyon\nKim\nKing\nLavell\nLeng\nLondon\nMack\nMalcom\nMayra\nMichaelangelo\nMorris\nNancy\nNarek\nNolberto\nOmid\nPaolo\nRamses\nRaymon\nRayvon\nReggie\nReymundo\nRichardo\nRusty\nScotty\nShant\nStevan\nTai\nVarun\nAbdiel\nAdriana\nAlek\nAlfonzo\nAman\nAmeer\nAndranik\nBaby\nBernardino\nBob\nCamron\nCheng\nCindy\nClement\nCoby\nColeton\nCristofer\nDany\nDara\nDarrick\nDeante\nDenzell\nDeric\nDino\nDominik\nDusty\nEdgard\nEdison\nFroylan\nHansel\nHarlan\nHasan\nHeath\nIsrrael\nJacques\nJamari\nJamel\nJarett\nJarret\nJasmin\nJayro\nJeremie\nJerod\nJoan\nJob\nJuanantonio\nKamal\nKamron\nKolby\nLeandro\nLeif\nLenny\nLisandro\nLuisenrique\nMarcell\nMenachem\nMychal\nNader\nNatalie\nNeftali\nNino\nPaulino\nRaj\nRasheed\nReilly\nRemy\nRoyer\nRylan\nSahil\nSameer\nSamer\nSchuyler\nSione\nStacy\nSteffan\nTeodoro\nTien\nTj\nUlices\nVahe\nWilfred\nYovani\nAbimael\nAbran\nAkash\nAleksander\nAlessandro\nAmanda\nAmilcar\nAndrei\nArash\nArik\nArt\nBernabe\nCamden\nChristen\nCliff\nCyle\nDanial\nDarrius\nDemonte\nDevonta\nDilan\nDimas\nDionte\nDondre\nEliezer\nEly\nEmery\nEsau\nEsteven\nEulises\nEusebio\nFrederic\nGareth\nGeraldo\nGian\nHakeem\nHakim\nHiram\nHomero\nHouston\nHubert\nIban\nIsaak\nIsac\nIsreal\nJacinto\nJacobo\nJayce\nJeanpaul\nJed\nJelani\nJerad\nJevon\nJonte\nJorje\nJoseantonio\nJoshuah\nJudah\nJuliocesar\nKaren\nKellan\nKendal\nKhalid\nKiel\nKwame\nLincoln\nMacario\nMarcellus\nMarion\nMarty\nMaxim\nMaynor\nMikael\nMontana\nMoua\nMychael\nNajee\nNapoleon\nNathen\nNavid\nNicky\nNicolaus\nOtoniel\nPatric\nRandell\nRenee\nRickie\nRio\nRishi\nRitchie\nRiver\nRohan\nRomeo\nRonell\nRuby\nSabastian\nSandeep\nSarah\nSeamus\nSeanpatrick\nServando\nShelton\nSherwin\nSkye\nTino\nToney\nTorin\nTorrey\nTyron\nUziel\nViet\nVinnie\nVirgil\nYang\nYesenia\nYoung\nYusuke\nAakash\nAbigail\nAdil\nAdonis\nAl\nAlexandra\nAmos\nAnders\nAnthoney\nArian\nArlen\nArsenio\nAugustin\nAvedis\nBarron\nBlayne\nBrain\nBrennon\nBroderick\nCarlin\nCarmen\nCezar\nChang\nChristain\nCristhian\nCristo\nDamario\nDarell\nDeontae\nDuy\nEduard\nEphraim\nErica\nFerdinand\nFranky\nGeovani\nGeremy\nGiuseppe\nHoang\nHung\nIain\nIra\nIsacc\nIsael\nJacqueline\nJameel\nJashua\nJaycob\nJericho\nJerico\nJerman\nJerrell\nJessee\nJessey\nJoanthan\nJocelyn\nJody\nJohann\nJohannes\nJordyn\nJorgeluis\nJules\nJustino\nKalani\nKatherine\nKavin\nKegan\nKelley\nKenta\nKhristian\nKillian\nKimani\nKramer\nLars\nLuca\nLucky\nLyndon\nManny\nMarcello\nMaribel\nMarlin\nMartel\nMathias\nMatias\nMatt\nMatthias\nMervin\nMilad\nMilan\nMissael\nMurphy\nMustafa\nMynor\nNehemiah\nNickolaus\nNicola\nNikkolas\nNikolaus\nPao\nPeyton\nPhi\nQuinten\nRamsey\nRavi\nRenato\nRian\nRodger\nRomel\nRosa\nRosario\nRoshan\nRufino\nSal\nScottie\nSeanmichael\nSerafin\nShan\nShay\nSky\nSydney\nTaj\nTariq\nTigran\nTong\nTrevin\nTurner\nUriah\nVentura\nVincenzo\nVinson\nWallace\nYair\nZack\nZain\nAiden\nAlbaro\nAlegandro\nAlon\nApolinar\nAryan\nAsael\nAuston\nBailey\nBert\nBladimir\nBlong\nBrant\nBrayden\nBuddy\nCaden\nCale\nCecilia\nChace\nChan\nCheyenne\nCiro\nColten\nCornelio\nDakoda\nDarron\nDaunte\nDavonta\nDavontae\nDelvon\nDemario\nDeonta\nDerrell\nDesean\nDevaughn\nDimitrios\nDirk\nDuke\nEladio\nEliott\nEnoc\nEricberto\nErrol\nEsmeralda\nFadi\nFletcher\nFlorencio\nFong\nFranklyn\nGaston\nGermain\nGerrit\nGreyson\nGunner\nGurpreet\nImmanuel\nIsidoro\nJaden\nJai\nJaquan\nJaren\nJarvis\nJasson\nJayme\nJaymes\nJedediah\nJerel\nJerred\nJhonatan\nJoanna\nJohnrobert\nJoshue\nKadeem\nKc\nKeifer\nKelton\nKeshawn\nKhang\nKodi\nKonner\nLauro\nLiliana\nLuther\nMarko\nMarquel\nMarwan\nMicahel\nModesto\nNabeel\nNam\nNash\nNatanael\nNhia\nNicklas\nNikolai\nOmari\nOren\nOsmin\nOtis\nPhil\nPhoenix\nPresley\nRaven\nReinaldo\nRichmond\nRoel\nRoosevelt\nRosalio\nRussel\nRyder\nRyon\nSampson\nSasha\nSebastien\nSemaj\nSeng\nSerjio\nShae\nShlomo\nShon\nSilvano\nSixto\nStanton\nStefano\nStetson\nStorm\nTam\nTevita\nTheron\nThor\nToan\nTraveon\nTruman\nTye\nVang\nVicent\nVinay\nWestin\nWilton\nYovanni\nYsidro\nZeus\nAamir\nAce\nAdel\nAjay\nAkshay\nAlaa\nAlexandria\nAmando\nAmar\nAmer\nAnand\nAngus\nAnselmo\nAra\nAramis\nArchie\nAria\nAries\nAris\nArley\nArtur\nAshraf\nAustyn\nBaldemar\nBasil\nBasilio\nBenedict\nBjorn\nBlas\nBradon\nBrandy\nBrittany\nBrodie\nBuck\nByran\nCade\nCampbell\nCandelario\nCandido\nCedrick\nChadd\nCharley\nChauncey\nChe\nCher\nChristoffer\nChrystian\nChue\nCirilo\nClaudia\nConrado\nCornell\nCorwin\nCrispin\nCuauhtemoc\nDalvin\nDamonte\nDarrian\nDat\nDawson\nDax\nDejuan\nDemarcus\nDemitrius\nDemond\nDenise\nDenver\nDevonn\nDezmond\nDiante\nDiondre\nDolan\nDonta\nEber\nEctor\nEd\nEdilberto\nEdith\nEdric\nEdvin\nEleuterio\nErnan\nEverado\nFahad\nFrancois\nGaven\nGeno\nHamed\nHan\nHao\nHoa\nHomar\nHovhannes\nHudson\nHussein\nImran\nIran\nIrvine\nJahaziel\nJasen\nJayvon\nJeanette\nJeovany\nJereme\nJeremey\nJeric\nJeromy\nJerson\nJeshua\nJimi\nJoeseph\nJohnmichael\nJonathen\nJory\nJosias\nJosua\nJourdan\nJuanjose\nJullian\nKaden\nKarapet\nKarlo\nKavon\nKayla\nKhaled\nKy\nLamarr\nLamberto\nLavonte\nLayne\nLucero\nLudwig\nMarcanthony\nMaurilio\nMaury\nMegan\nMick\nMilo\nMiriam\nMizael\nMontrell\nMurad\nNadeem\nNahum\nNain\nNeng\nNiccolo\nNikita\nOsama\nOskar\nOswald\nPaige\nParth\nPeng\nPietro\nPrentice\nPrimitivo\nRakeem\nRaleigh\nRamy\nRaquel\nRaynard\nRodrick\nRohit\nRonnell\nRowan\nRudi\nSandro\nSandy\nSang\nSanjay\nShiloh\nSigifredo\nSimeon\nSina\nSon\nTad\nTaran\nTarek\nTate\nTerell\nTerran\nTerrill\nTerron\nThao\nTheo\nThien\nTimmothy\nTin\nTito\nTommie\nTorrance\nTrevell\nUlyses\nVartan\nVeronica\nVirgilio\nVivek\nWillem\nWoodrow\nYobani\nYonatan\nYoni\nYosef\nZacharia\nZaid\nZeke\nAaronmichael\nAbdullah\nAdolph\nAj\nAkil\nAkira\nAlen\nAlexei\nAlexi\nAlphonse\nAmin\nAmy\nAngela\nAnjel\nAnthoni\nAnthonyjames\nAntione\nAntoni\nAntonia\nAntonie\nAnwar\nArtin\nAshkan\nAvetis\nAvi\nBertram\nBoaz\nBrianna\nBritton\nBroc\nBryton\nCaelan\nCal\nCalen\nCameren\nCamren\nCarmelo\nCassandra\nCelestino\nChai\nChas\nChet\nChristos\nCian\nColter\nCordell\nCorry\nCort\nCristina\nCy\nCyril\nDabid\nDaisuke\nDalon\nDamen\nDamone\nDang\nDangelo\nDarious\nDarrien\nDashon\nDawit\nDayne\nDeclan\nDelbert\nDemetrios\nDeron\nDerric\nDerrik\nDietrich\nDionicio\nDiontae\nDomonique\nDonato\nDontrell\nDoyle\nDuc\nEan\nEdder\nEdsel\nElden\nEliel\nEligio\nEliodoro\nEliot\nEmigdio\nEstaban\nEsther\nEvaristo\nFabricio\nFaisal\nFaris\nFidencio\nFortino\nFroilan\nGael\nGarland\nGeddy\nGideon\nGiuliano\nGraeme\nGregg\nGregor\nGustabo\nHaden\nIrbin\nIshan\nJacoby\nJamey\nJarel\nJarell\nJarid\nJarrid\nJaryd\nJaspreet\nJavante\nJaycee\nJaylen\nJerell\nJermey\nJermy\nJerrick\nJerrid\nJhonny\nJihad\nJobani\nJohnpatrick\nJosemanuel\nJr\nJuanpablo\nJuaquin\nJun\nJuston\nKade\nKaran\nKarla\nKawika\nKayvon\nKenia\nKenyon\nKeoni\nKeshaun\nKilian\nKingsley\nKodie\nKole\nKonnor\nKunal\nLaquan\nLayton\nLeighton\nLenin\nLeticia\nLindsey\nLoc\nLowell\nMarino\nMarisol\nMarshal\nMarvel\nMassimo\nMathieu\nMazen\nMerlin\nMichaelvincent\nMichelangelo\nMihran\nMikey\nMikhael\nMina\nMitch\nMohamad\nMong\nMonte\nMonty\nMoshe\nMykel\nNatan\nNeel\nNguyen\nNicodemus\nNiels\nNikki\nOciel\nOlegario\nOmeed\nOshae\nOsualdo\nOzzie\nPaden\nParris\nPatricia\nPhuc\nQuaid\nRachel\nRainier\nRashawn\nRashid\nReno\nRicki\nRidge\nRocco\nRod\nRubin\nRush\nSabino\nSai\nSaid\nSaman\nSammuel\nSamual\nSaxon\nSchyler\nShaka\nSheridan\nSho\nShu\nSinjin\nSkylor\nSoren\nSultan\nSven\nTal\nTan\nTeofilo\nTerance\nTerrel\nThang\nThanh\nTheophilus\nThong\nTorey\nTrace\nTrevion\nTrino\nTristen\nVictoria\nVijay\nWilder\nYannick\nYehuda\nYoseph\nYovany\nYusuf\nZacary\nZakery\nZong\nAbdulrahman\nAbrham\nAdalid\nAddam\nAditya\nAharon\nAksel\nAlaric\nAlbino\nAldric\nAlexandros\nAlexsander\nAlicia\nAlireza\nAlison\nAllante\nAmber\nAmmon\nAmritpal\nAnastacio\nAndree\nAndrez\nAngeldejesus\nAngelica\nAnh\nAnson\nAren\nArie\nArin\nAristeo\nArjan\nArjuna\nArmin\nArun\nAsad\nAshish\nAugusto\nAvante\nAvelino\nAxl\nAzim\nBaldomero\nBarney\nBaron\nBarret\nBaudelio\nBayron\nBeatriz\nBelal\nBenedicto\nBianca\nBillie\nBodie\nBrandt\nBraydon\nBretton\nBrien\nBrigham\nBrook\nBrooke\nCase\nCavan\nCharly\nChirag\nChistopher\nChong\nChristipher\nChristoher\nCipriano\nCisco\nConstantino\nCordero\nCorin\nCoy\nCristal\nCristoval\nCrystian\nCuitlahuac\nDajuan\nDakotah\nDamani\nDamaris\nDaniela\nDanzel\nDarith\nDarrion\nDarryll\nDavey\nDawayne\nDaylan\nDayon\nDayvon\nDelton\nDemetre\nDemetrious\nDemetris\nDemitri\nDenton\nDerrion\nDevion\nDilpreet\nDmitri\nDomenico\nDomonic\nDonavon\nDong\nDoran\nDoron\nEaston\nEberardo\nEdvardo\nEdy\nEleno\nElie\nEllery\nEmily\nEnrrique\nEpifanio\nErika\nEsai\nEsdras\nEstuardo\nFaraz\nFelton\nFoster\nFrances\nGannon\nGaspar\nGe\nGeorgio\nGerad\nGevorg\nGibran\nGillermo\nGiorgio\nGiovannie\nGraydon\nGunther\nHasani\nHashim\nHeather\nHeber\nHernando\nHezekiah\nHiroshi\nHollis\nHomer\nHonorio\nHorace\nHuriel\nIke\nIlan\nImari\nIrineo\nIsaih\nIsamar\nIsauro\nIssa\nIssiah\nIvon\nIvory\nIzaac\nIzaak\nJahlil\nJairus\nJalil\nJareth\nJarome\nJarrad\nJarren\nJaspal\nJavan\nJaziel\nJazmin\nJeancarlo\nJerimiah\nJerrel\nJerrold\nJett\nJevin\nJguadalupe\nJhon\nJiovanny\nJoao\nJohnatan\nJohndavid\nJonpaul\nJonthan\nJordi\nJorel\nJovante\nJudson\nJuliano\nJulie\nJupiter\nJusto\nKacey\nKain\nKalan\nKale\nKalen\nKalin\nKarlos\nKarsten\nKeenen\nKei\nKelby\nKenan\nKennith\nKeon\nKhoa\nKhoi\nKhristopher\nKiran\nKishan\nKodiak\nKohl\nKongmeng\nKrishan\nKristen\nKylan\nKyrie\nLambert\nLanden\nLandry\nLashawn\nLeandre\nLevonte\nLexus\nLibrado\nLinda\nLindsay\nLinh\nLorena\nLudwin\nLuisantonio\nLuisfelipe\nMac\nMahmoud\nMaison\nMakoto\nMalek\nManpreet\nMariela\nMarin\nMarkel\nMarque\nMarquese\nMarquez\nMartell\nMartha\nMaverick\nMckenzie\nMehdi\nMelecio\nMerrick\nMicaiah\nMichaelanthony\nMickel\nMikal\nMikeal\nNabil\nNadim\nNasser\nNatividad\nNehemias\nNeill\nNeko\nNeri\nNicco\nNicolai\nNiklas\nNikola\nNiles\nNils\nNorris\nOlivier\nOmer\nOrin\nOrrin\nOsiris\nOsmar\nPalmer\nPatrik\nPaulmichael\nPaxton\nPerrin\nPhilippe\nPhuong\nPonciano\nPrescott\nRajan\nRandeep\nRandel\nRandon\nRashaad\nRedmond\nRegino\nRen\nRiki\nRion\nRob\nRobel\nRonak\nRonaldo\nRondell\nRoyal\nRudolfo\nRuperto\nRustin\nRyker\nRyland\nRyley\nSammie\nSantana\nSargon\nSayed\nSebastain\nSevag\nShad\nShadi\nShaheen\nShahin\nSher\nShimon\nShota\nSlade\nSlater\nSou\nSullivan\nSuraj\nSutton\nSylvester\nTadeh\nTaha\nTarun\nTavis\nTerrion\nTimoteo\nTlaloc\nTobin\nToni\nTracey\nTravell\nTreavor\nTrong\nTu\nTynan\nTyrel\nValentine\nVeasna\nVenancio\nVi\nVivian\nVue\nWa\nWalid\nWaylon\nWerner\nWilfrido\nWillard\nXai\nXiong\nYadira\nYama\nYonathan\nYousef\nYuki\nZareh\nZev\nMichael\nDaniel\nJose\nChristopher\nDavid\nAndrew\nAnthony\nMatthew\nJoshua\nKevin\nJonathan\nRyan\nJoseph\nNicholas\nBrandon\nAlexander\nChristian\nJacob\nJuan\nRobert\nLuis\nTyler\nJohn\nJames\nEric\nJustin\nJesus\nBrian\nKyle\nCarlos\nSteven\nWilliam\nZachary\nMiguel\nAlejandro\nAaron\nRichard\nAustin\nCody\nVictor\nJorge\nJordan\nJesse\nSamuel\nEduardo\nOscar\nJason\nThomas\nSean\nFrancisco\nBryan\nGabriel\nAngel\nDylan\nAdrian\nBenjamin\nRicardo\nAdam\nTimothy\nEdgar\nAlex\nMark\nManuel\nNathan\nJeffrey\nOmar\nPatrick\nJeremy\nAntonio\nMario\nCesar\nJavier\nErik\nSergio\nMartin\nIvan\nPaul\nAndres\nCameron\nFernando\nHector\nEdward\nCharles\nCristian\nRoberto\nRuben\nStephen\nTaylor\nTrevor\nKenneth\nConnor\nTravis\nRaymond\nPedro\nVincent\nIan\nGerardo\nAlan\nScott\nEvan\nAlberto\nJoel\nRaul\nArmando\nJaime\nMarco\nGarrett\nIsaac\nEdwin\nPeter\nErick\nJulian\nMarcus\nGregory\nDerek\nHenry\nJared\nJulio\nGeorge\nSalvador\nRafael\nGustavo\nAlfredo\nSpencer\nShane\nArturo\nJohnny\nFrank\nNathaniel\nJake\nBlake\nDevin\nMarcos\nAlexis\nDominic\nJosue\nNicolas\nAndy\nEnrique\nDanny\nMitchell\nLuke\nAbraham\nErnesto\nRamon\nDiego\nLucas\nShawn\nDustin\nDillon\nJimmy\nBradley\nAlbert\nPhillip\nEmmanuel\nWesley\nTanner\nCorey\nRonald\nCasey\nCaleb\nChad\nGiovanni\nJack\nTony\nLogan\nIsrael\nMax\nGuillermo\nFabian\nKeith\nSteve\nJohnathan\nAndre\nBrett\nAlec\nCory\nChase\nMoises\nEthan\nPablo\nCole\nSebastian\nHugo\nEsteban\nAllen\nRene\nTroy\nLeonardo\nRandy\nDakota\nJoe\nEddie\nRicky\nMason\nDennis\nDevon\nBryce\nGrant\nFelipe\nXavier\nPhilip\nColin\nGilberto\nHunter\nIsmael\nDouglas\nDonald\nGary\nMarvin\nArthur\nSaul\nLouis\nAlfonso\nMaxwell\nAbel\nRudy\nElijah\nRodolfo\nSeth\nElias\nJerry\nJessie\nMathew\nRogelio\nJonathon\nLawrence\nBrendan\nJeremiah\nCurtis\nDerrick\nRoger\nWalter\nIsaiah\nCalvin\nDalton\nGilbert\nRodrigo\nBrent\nColton\nRoman\nNoah\nBryant\nMarc\nRamiro\nClayton\nKristopher\nLarry\nJackson\nMiles\nHumberto\nDarren\nLorenzo\nVicente\nEmilio\nRussell\nCollin\nRiley\nAdan\nNestor\nMauricio\nIgnacio\nFreddy\nRigoberto\nDamian\nNolan\nEfrain\nFelix\nConner\nAlvaro\nBilly\nBobby\nCraig\nNoe\nConor\nSimon\nOsvaldo\nJoaquin\nJoey\nKenny\nDrew\nEmanuel\nCarl\nDonovan\nSantiago\nRoy\nNelson\nUriel\nAgustin\nNoel\nAlvin\nAngelo\nParker\nAllan\nLeonel\nNickolas\nTommy\nTheodore\nByron\nJay\nMyles\nHayden\nOliver\nBranden\nTomas\nOrlando\nGerman\nForrest\nDominique\nGuadalupe\nJeffery\nHarrison\nJairo\nDominick\nColby\nGerald\nLance\nLevi\nAlfred\nArnold\nPreston\nShaun\nUlises\nAdolfo\nZachery\nDean\nMorgan\nDante\nGonzalo\nRandall\nMaurice\nSam\nTrenton\nEli\nIrvin\nErnest\nMicah\nMicheal\nOctavio\nTrent\nDeandre\nJon\nSkyler\nTerry\nMike\nReginald\nTodd\nDarius\nHeriberto\nZachariah\nDallas\nWyatt\nRay\nRodney\nZackary\nFrancis\nBernardo\nDamien\nJosiah\nChris\nFranklin\nLeo\nEdgardo\nGavin\nKody\nMarlon\nDamon\nKelvin\nKristian\nLeonard\nNeil\nIsaias\nJohnathon\nBrennan\nFrederick\nGeoffrey\nMelvin\nRonnie\nBrady\nGage\nMarquis\nBruce\nCharlie\nElliot\nEugene\nNikolas\nFidel\nMoses\nRoss\nAlonso\nEstevan\nDarrell\nFrankie\nLee\nWillie\nMalcolm\nMarshall\nAldo\nBrendon\nElvis\nKameron\nDrake\nStanley\nAli\nDavis\nRolando\nLandon\nShaquille\nTrey\nChance\nElmer\nEzequiel\nRalph\nWayne\nAriel\nWilson\nBrenden\nGregorio\nIssac\nJamal\nTerrance\nZane\nEfren\nJamie\nReynaldo\nDane\nDarryl\nGlenn\nCarson\nDevante\nElliott\nSantos\nStefan\nAlonzo\nGriffin\nRaymundo\nGraham\nRick\nRobin\nAvery\nFredy\nKelly\nTrevon\nJean\nJerome\nKendall\nZackery\nHernan\nIrving\nMilton\nMohammad\nQuinn\nTristan\nJayson\nKurtis\nNorman\nTerrence\nWeston\nChandler\nClinton\nEddy\nDemetrius\nDenzel\nErwin\nGarret\nGino\nKurt\nNick\nUlysses\nLouie\nMaximiliano\nTyrone\nFred\nIsidro\nJovani\nMalik\nBenito\nDarian\nDevonte\nAhmad\nCooper\nGordon\nJakob\nMisael\nSonny\nWarren\nBeau\nDan\nHarry\nJalen\nNathanael\nBryson\nHarley\nJarrett\nJuancarlos\nKirk\nLeon\nEzekiel\nJarred\nJefferson\nJoseluis\nJulius\nMariano\nTevin\nAshton\nBenny\nBrock\nCristopher\nEliseo\nKarl\nQuincy\nReed\nAidan\nAurelio\nBernard\nDerick\nDesmond\nDion\nHerman\nJonah\nJordy\nSterling\nTerrell\nDale\nDeshawn\nDon\nDwayne\nGiovanny\nJovanny\nKent\nLukas\nCristobal\nEarl\nEverardo\nKristofer\nNigel\nCarter\nGenaro\nHarold\nKeenan\nLionel\nOwen\nTou\nTy\nWade\nAron\nCruz\nJeff\nAlexandro\nClint\nConrad\nJessy\nJim\nAxel\nCedric\nDarien\nHoracio\nMackenzie\nMarcel\nSkylar\nArnulfo\nDario\nDorian\nGlen\nJessica\nKai\nKyler\nMiguelangel\nOswaldo\nSolomon\nEriberto\nJordon\nMarkus\nMarquise\nNico\nOsbaldo\nValentin\nAmir\nBen\nClarence\nDavon\nDeon\nErnie\nFederico\nKaleb\nLewis\nRoderick\nSammy\nStephan\nAdalberto\nBarry\nBret\nIsai\nJasper\nDaryl\nHoward\nJermaine\nLiam\nSidney\nAhmed\nAusten\nBraulio\nDevan\nJarrod\nJunior\nNeal\nRoland\nTucker\nAntoine\nBrayan\nGeovanni\nJovany\nKory\nMaria\nNorberto\nReuben\nClifford\nDarnell\nDimitri\nMarcelo\nNiko\nStuart\nTerence\nClaudio\nCorbin\nEverett\nFermin\nFreddie\nGerson\nJovan\nLoren\nRocky\nTom\nCaesar\nDavion\nDevyn\nDonte\nJavon\nKasey\nKeaton\nLazaro\nLester\nLucio\nSage\nAddison\nBruno\nForest\nGiancarlo\nKendrick\nKong\nLuiz\nMauro\nMaximillian\nMitchel\nSheldon\nZechariah\nAnton\nBill\nBlaine\nBrody\nGeovanny\nJacky\nLonnie\nMohammed\nPerry\nReid\nTre\nTylor\nArman\nClay\nDarwin\nDejon\nDonavan\nEllis\nHerbert\nJohnson\nKellen\nKeven\nPete\nRex\nRickey\nSunny\nWilfredo\nBraden\nDenny\nEleazar\nGiovani\nGuy\nLuc\nMaximilian\nQuentin\nRaphael\nRosendo\nStewart\nValentino\nAbelardo\nCyrus\nElizabeth\nEmiliano\nErvin\nAndreas\nCarlo\nClark\nEloy\nJameson\nKieran\nMadison\nMarcelino\nRory\nThaddeus\nVance\nAri\nBrandyn\nBrennen\nDomingo\nEder\nEdson\nFavian\nKareem\nLeopoldo\nTyrell\nVidal\nWalker\nAdrien\nBrad\nBrayden\nBrice\nDarin\nDarrin\nFiliberto\nIsiah\nKeegan\nMarkanthony\nPierce\nAnibal\nAntony\nArron\nBrandan\nColeman\nDamion\nEdmond\nFredrick\nGalen\nGreg\nJeffry\nJohnnie\nJustice\nLeroy\nLloyd\nLuciano\nQuinton\nRashad\nRey\nShant\nTobias\nTravon\nWinston\nAlexandre\nBradford\nChaz\nDavonte\nDexter\nGarrison\nJimmie\nJonas\nJosef\nKen\nLamar\nLamont\nLeobardo\nLeslie\nNikko\nRico\nRoyce\nShayne\nAbram\nArmen\nAugustine\nDana\nDave\nDillan\nDuke\nDuncan\nGene\nJennifer\nJonatan\nMalachi\nRoque\nStephanie\nToby\nUbaldo\nWill\nArmand\nBijan\nDandre\nDarion\nDijon\nEdmund\nFausto\nFranco\nGabino\nGrayson\nJorden\nJovanni\nJulien\nPascual\nPierre\nTyson\nVaughn\nWilly\nAsher\nAugust\nChristina\nDagoberto\nDeonte\nDeven\nEmerson\nFaustino\nGarett\nIrwin\nJace\nJaron\nKristoffer\nNathanial\nNikhil\nRon\nSilvestre\nTimmy\nVincente\nAshley\nBaltazar\nBee\nCeasar\nDillion\nErin\nFeliciano\nGildardo\nGorge\nHassan\nIbrahim\nJamaal\nKalvin\nKou\nLeland\nMaximo\nMickey\nPaolo\nQuintin\nRonny\nSamir\nSamson\nShannon\nShea\nTate\nValente\nAric\nArik\nBrenton\nClemente\nDominik\nDonnell\nErich\nHans\nJacobo\nJan\nJerardo\nJess\nJessi\nLane\nLong\nMargarito\nMarques\nMatias\nMeng\nMinh\nMohamad\nMohamed\nRandal\nRandolph\nReece\nSawyer\nTed\nTory\nTracy\nVernon\nVladimir\nWilber\nYeng\nAlejandra\nAnderson\nAndrea\nArley\nBlair\nCamilo\nCecilio\nDarrion\nDashawn\nDeric\nDevaughn\nDomenic\nEugenio\nGerard\nJabari\nJackie\nJuventino\nKennedy\nKerry\nKhalil\nLino\nMateo\nMichelle\nMorris\nParis\nRaheem\nRaymon\nRomeo\nSerafin\nShayan\nTorrey\nTrinidad\nAlton\nAram\nBronson\nChadwick\nCoty\nDarrel\nDayton\nDino\nEdwardo\nEmmett\nGeovany\nGian\nHarvey\nHolden\nKane\nKorey\nNehemiah\nNima\nOrion\nPaulo\nPayton\nReese\nRojelio\nSarkis\nTrever\nWilbert\nWilmer\nZakary\nAdriel\nAkeem\nAmos\nBrandin\nBrenda\nBrooks\nBryon\nChester\nCourtney\nDiana\nDonnie\nElton\nEzra\nFlavio\nFransisco\nGabriela\nGerry\nGrady\nHilario\nHouston\nJamel\nJaylen\nJerald\nJerrell\nMarcell\nMigel\nMuhammad\nReyes\nRhett\nRobby\nSantino\nTrayvon\nVanessa\nVishal\nWestley\nWilliams\nAbner\nAdonis\nAlek\nAlessandro\nAna\nBo\nCarlton\nCassidy\nChasen\nClyde\nCornelius\nCullen\nElisha\nElvin\nGunnar\nHarris\nJamar\nJamison\nJedidiah\nJeremie\nJeromy\nKelsey\nKendal\nKian\nLyle\nMichel\nNathen\nPatricio\nPheng\nRefugio\nSemaj\nStevie\nSyed\nTayler\nTito\nTyree\nVince\nArnoldo\nBarrett\nBenson\nBradly\nBrando\nBrodie\nCamron\nCary\nCodey\nCodi\nColten\nDesean\nDiante\nDuane\nDwight\nElio\nEmil\nFloyd\nFranky\nFredi\nGer\nGil\nJade\nJair\nJarrell\nJasmin\nJered\nJerrod\nJoan\nJuliocesar\nJustyn\nKeanu\nKillian\nLaron\nLaurence\nLevon\nLincoln\nLondon\nMarcoantonio\nNajee\nObed\nOtto\nReggie\nRenato\nReno\nRobbie\nRocco\nTitus\nTorin\nVinh\nYosef\nYovani\nAlexandra\nAnselmo\nArian\nAsa\nBrandt\nColt\nDeangelo\nDeante\nDelfino\nDemetrio\nDerik\nDonny\nEsau\nFabio\nGaspar\nGeovani\nGianni\nHeath\nImran\nJamil\nJohathan\nJohnpaul\nJonnathan\nJosh\nKalen\nKalin\nKamran\nKaren\nKevyn\nKhalid\nKonnor\nMarcial\nMaxx\nMonica\nMonte\nNam\nNicholaus\nNicklaus\nRaffi\nRemington\nRichie\nSalomon\nSalvatore\nSami\nStefano\nTravion\nVan\nViet\nAbdullah\nAlden\nAlfonzo\nAndrez\nAntione\nAren\nBennett\nBroc\nClaude\nClifton\nCynthia\nDeion\nDenis\nDeshon\nDustyn\nEden\nFaisal\nFlorentino\nGarrick\nGenesis\nHieu\nJacques\nJaquan\nJasmine\nJavonte\nJelani\nJossue\nJustus\nKao\nKenyon\nLars\nManny\nMarkell\nMikael\nMikal\nMyron\nNeftali\nNevin\nNikolai\nPaulino\nPorfirio\nRodrick\nRohan\nRony\nRoosevelt\nRosario\nRyley\nShelby\nSherman\nSilas\nSilverio\nSpenser\nStacy\nThai\nThanh\nToua\nTrae\nTuan\nVinson\nVirgil\nVito\nWendell\nWillis\nZakkary\nAbimael\nAjay\nAkshay\nAmado\nAmador\nAmit\nAntwan\nArgenis\nArt\nArtemio\nArvin\nArya\nAubrey\nAustyn\nBenedict\nBernabe\nBraxton\nCamden\nCandido\nCheng\nChristofer\nChue\nClaudia\nCuauhtemoc\nDakotah\nDallin\nDanielle\nDaren\nDaron\nDarrian\nDarrien\nDavante\nDaveon\nDemarco\nDomonic\nEdgard\nEnoch\nHarout\nHasan\nHung\nIsrrael\nJaren\nJarvis\nJocelyn\nJuanmanuel\nJun\nJuvenal\nKenton\nKhari\nKirby\nKris\nLeng\nLucero\nLuigi\nMarcello\nMarcellus\nMarty\nMichaelanthony\nMikel\nMontana\nNancy\nReymundo\nRigo\nRitchie\nRiver\nRudolph\nRyne\nSantana\nScotty\nSydney\nSylvester\nTeng\nTeodoro\nTorey\nTrace\nUlisses\nVincenzo\nYesenia\nYovany\nAbrahan\nAbran\nArjun\nArmani\nBailey\nBennie\nBladimir\nBoris\nBroderick\nCecil\nChristoper\nCosme\nDaisy\nDangelo\nDanilo\nDarrius\nDemetris\nDenver\nDeshaun\nDionicio\nDonta\nDontae\nEdilberto\nEdmundo\nEliazar\nEsequiel\nEusebio\nEvaristo\nEver\nGeraldo\nHamilton\nHank\nHenri\nHudson\nIsacc\nIsamar\nIsidoro\nJacqueline\nJarod\nJazmin\nJed\nJeronimo\nJett\nJonny\nJosedejesus\nJovon\nJuanjose\nKalan\nKarina\nKegan\nKeng\nKeon\nKunal\nLaura\nLeandro\nLucky\nMustafa\nNash\nNicky\nNikolaus\nOsman\nPatric\nPhong\nRahul\nRashawn\nRichardo\nRishi\nRoyal\nRussel\nRusty\nRyder\nStevan\nTaran\nTarik\nTeddy\nTim\nTommie\nTrevion\nTreyvon\nYusuf\nAbdul\nAl\nAlexi\nAmeer\nAmilcar\nAndrei\nArtin\nBaby\nBasil\nBrain\nCaden\nCelestino\nChee\nCleveland\nConrado\nCourtland\nDaryn\nDavin\nDeanthony\nDemetri\nDeondre\nDeontae\nDevone\nDionte\nDmitri\nDyllan\nDyllon\nDylon\nEarvin\nErika\nFrancesco\nFrederic\nGareth\nGarth\nGray\nGreggory\nHiram\nHubert\nImani\nImmanuel\nJagger\nJameel\nJashua\nJerad\nJerel\nJerson\nJessee\nJevon\nJhonatan\nJohan\nJordi\nJosealberto\nJoseantonio\nJulia\nJustine\nKimberly\nLavonte\nLuca\nMack\nMalek\nMarcanthony\nMarino\nMarion\nMarley\nMartell\nMayra\nMelissa\nNicolaus\nNicole\nOsualdo\nPhilippe\nQuang\nQuinten\nRamsey\nRaudel\nRayshawn\nReagan\nRichmond\nRuby\nSagar\nSchuyler\nShakeel\nSimeon\nSoren\nStephon\nTalon\nUlyses\nVang\nVicent\nWaylon\nYousef\nAdnan\nAlbaro\nAlen\nAlyssa\nAugustin\nAuston\nAzael\nBabyboy\nBilal\nBinh\nBodie\nBrandy\nBrennon\nBrien\nBrook\nCale\nCamren\nCelso\nCheyenne\nCheyne\nCodie\nCrystal\nCy\nDamarea\nDaquan\nDara\nDarrick\nDarron\nDashaun\nDat\nDavontae\nDeclan\nDemarcus\nDemonte\nDeonta\nDevion\nDevontae\nDirk\nDominque\nDonavon\nEaston\nEdder\nEdy\nEliezer\nEliot\nEnzo\nErasmo\nErickson\nEstuardo\nEverado\nFletcher\nFroilan\nGamaliel\nGevork\nGibran\nGiuseppe\nHagop\nHakeem\nHaley\nHuy\nIban\nIsael\nIshmael\nIsreal\nJacinto\nJalil\nJasen\nJavan\nJayro\nJeanluc\nJeanpaul\nJob\nJoesph\nJorje\nJosafat\nJusten\nJustino\nJuwan\nKahlil\nKarim\nKc\nKeenen\nKelton\nKeshawn\nKiernan\nKodi\nKongmeng\nLauren\nLeif\nLuther\nLyndon\nMahmoud\nManraj\nMarlin\nMarquez\nMaxfield\nMaxim\nMaynor\nMckenzie\nMerrick\nMychael\nMynor\nNabeel\nNery\nNicco\nNickolaus\nNikki\nOtoniel\nPhoenix\nPrince\nRashaad\nRaven\nRebecca\nRhys\nRickie\nRocio\nRosalio\nRyland\nSabino\nSahil\nSal\nSamantha\nSameer\nSandy\nSarah\nShay\nShon\nSione\nTai\nTarek\nTariq\nTevita\nThompson\nTimoteo\nTino\nTirso\nTruman\nTrung\nUlices\nYonathan\nYoni\nZong\nAbisai\nAdel\nAlegandro\nAman\nAmanda\nAn\nAnders\nAngus\nAnjel\nAntwon\nArchie\nArin\nBob\nBryton\nCade\nCarey\nCha\nChadd\nChang\nChanning\nCharley\nChet\nChistian\nChistopher\nChristien\nClement\nCornell\nCrystian\nDaniela\nDany\nDarious\nDaulton\nDaven\nDawson\nDemond\nDenton\nDereck\nDerrell\nDerrik\nDesi\nDevlin\nDewayne\nDilan\nDomenick\nDonavin\nDusty\nDuy\nElder\nEly\nEmery\nEmily\nEmir\nEnoc\nEulises\nEvin\nFavio\nFidencio\nGael\nGannon\nGaston\nGentry\nGiovany\nHansel\nHoang\nHomero\nHoua\nHugh\nHuriel\nIsac\nJaden\nJeanpierre\nJeramy\nJerman\nJesu\nJhon\nJihad\nJiovanni\nJohann\nJohnmichael\nJonte\nJordyn\nJoshue\nJuaquin\nJusto\nKabir\nKaden\nKamron\nKeane\nKenji\nKento\nKervin\nKevon\nKevork\nKia\nKiefer\nKiel\nLam\nLamonte\nLeandre\nLindsey\nLuisenrique\nLynn\nMalcom\nMassimo\nMathias\nMathieu\nMatteo\nMaverick\nMaximino\nMichaelangelo\nMisha\nMister\nNavid\nNicholis\nNicklas\nOmari\nOmero\nOmid\nOskar\nOsmar\nPao\nPatricia\nQuran\nRajan\nRami\nRavi\nRio\nRohit\nRonnell\nRowan\nRufino\nRylan\nRyo\nSai\nSamer\nSandra\nSandro\nSanjay\nSelvin\nShaan\nShai\nSherwin\nSilvino\nSky\nSou\nTimmothy\nToan\nTristen\nUmar\nUziel\nVeronica\nVivek\nWendy\nYobani\nYoel\nYonatan\nZaid\nAamir\nAbigail\nAce\nAdiel\nAdriana\nAkash\nAlain\nAlicia\nAlma\nAlphonso\nAlvino\nAmandeep\nAmando\nAmar\nAmritpal\nAnand\nAntone\nAnwar\nArash\nAries\nArmon\nArnaldo\nArnel\nArun\nAryan\nAshanti\nAshwin\nAugustus\nAxl\nBao\nBarney\nBaron\nBlas\nBlaze\nBlong\nBraeden\nBrannon\nBrant\nBulmaro\nCain\nCalder\nCalen\nCandelario\nCedrick\nChaim\nChancellor\nChrist\nChristain\nChrystian\nChuck\nCiro\nCornelio\nCristofer\nCurran\nCyle\nDajon\nDamond\nDanniel\nDashon\nDavian\nDavy\nDelano\nDelbert\nDemario\nDemitri\nDequan\nDiquan\nDondre\nDupree\nEamon\nEctor\nElan\nElbert\nEleno\nEphraim\nErica\nEstaban\nFarid\nFaris\nFernie\nFlorencio\nFong\nFroylan\nFue\nGarry\nGavino\nGeno\nGraeme\nGregg\nGus\nHakim\nHamza\nHerminio\nHipolito\nIsabel\nIzaac\nJaycob\nJayden\nJens\nJeramie\nJericho\nJerrad\nJin\nJonpaul\nJosemanuel\nJoshuah\nJosias\nJosua\nJuanantonio\nJudah\nJude\nKalani\nKale\nKamal\nKaran\nKavon\nKellan\nKendell\nKennith\nKeoni\nKhang\nKhanh\nKhristian\nKhristopher\nKodie\nKonner\nKrystian\nLaith\nLeonides\nLuka\nMacario\nMacklin\nMartel\nMelecio\nMerlin\nMikhael\nMikhail\nMilan\nMontel\nMontgomery\nMoshe\nNader\nNarek\nNed\nNicolai\nNiles\nNino\nOmer\nOracio\nOren\nOsiel\nOsmin\nOswald\nPaige\nParrish\nRachel\nRamin\nRamses\nReilly\nRemy\nRenee\nRito\nRod\nRomel\nRommel\nRyon\nSabastian\nSalem\nSandeep\nSheridan\nShervin\nSixto\nSoloman\nSon\nStone\nStorm\nSue\nSullivan\nTaj\nTam\nTerrel\nTonatiuh\nTong\nTray\nTreshawn\nTyquan\nVictoria\nViliami\nVinay\nVon\nVong\nWallace\nWestin\nWiley\nWilton\nWoodrow\nXiong\nYair\nZack\nZev\nAdin\nAdrain\nAiden\nAldrin\nAleksander\nAlexio\nAlverto\nAndree\nAngelica\nAnival\nAnthoney\nAnthoni\nApolinar\nAra\nAria\nAristeo\nAsante\nAurash\nAviel\nAvraham\nAyman\nBart\nBelal\nBenigno\nBlayne\nBonifacio\nBradlee\nBrianna\nBuddy\nCampbell\nCarmelo\nCarmen\nCasimiro\nCatarino\nCesario\nChace\nChai\nChauncey\nChe\nChristen\nChristoph\nCiaran\nCindy\nCirilo\nCoby\nColeton\nConstantino\nCort\nCristhian\nCristoval\nCuong\nCurt\nCurtiss\nDamonte\nDaneil\nDanial\nDashiell\nDedrick\nDemondre\nDenzell\nDerron\nDesiderio\nDestin\nDiamond\nDonaven\nDurrell\nDusten\nEan\nEber\nEligio\nElpidio\nEnrigue\nErrol\nEsai\nEsdras\nEsteven\nEulalio\nFabiola\nFiras\nFransico\nFredis\nGeronimo\nGuthrie\nHai\nHakop\nHarlan\nHarman\nHeather\nHeber\nHenrry\nHeraclio\nHorace\nIke\nIndalecio\nIra\nIsaak\nJacoby\nJad\nJaelen\nJai\nJamari\nJamin\nJamon\nJarek\nJarren\nJarrid\nJasdeep\nJaspreet\nJaun\nJavin\nJaylin\nJaysen\nJazz\nJeancarlo\nJedediah\nJensen\nJeremey\nJerick\nJerimiah\nJerrick\nJoab\nJohnjoseph\nJohnluke\nJohny\nJory\nJoseangel\nJosejuan\nJospeh\nJourdan\nJovante\nKarla\nKarlo\nKatherine\nKavin\nKayvon\nKeelan\nKeifer\nKevan\nKhaled\nKhoa\nKimani\nKiran\nKohl\nKolby\nKole\nKraig\nKwame\nKwesi\nLafayette\nLalo\nLaquan\nLavell\nLejon\nLenin\nLeovardo\nLex\nLibrado\nLisandro\nLucien\nLuisangel\nMarkel\nMarko\nMaurilio\nMaximilliano\nMegan\nMelchor\nMicahel\nMichale\nMichele\nMihir\nMiller\nModesto\nMychal\nMykel\nNabil\nNapoleon\nNatanael\nNazario\nNeng\nNephi\nNguyen\nNicholai\nNicholes\nNicko\nNile\nNolberto\nNorris\nOnesimo\nOtis\nPatrik\nPaula\nPavan\nPaxton\nPhil\nPietro\nPlacido\nPratik\nPrescott\nQuan\nQuoc\nRamzi\nRandon\nRasheed\nRayvon\nRaziel\nRichy\nRiki\nRobinson\nRodger\nRuss\nRuvim\nSabrina\nSaman\nSaxon\nScottie\nSerjio\nServando\nShan\nShaunt\nSina\nSundeep\nSuraj\nTadeh\nTal\nTania\nTerell\nTerrin\nTheo\nTheron\nThien\nThong\nThor\nTiffany\nTigran\nTin\nTj\nTrevin\nTri\nTylar\nTyron\nUriah\nUvaldo\nVahe\nVarun\nWaleed\nWenceslao\nWilberto\nWilford\nWolfgang\nYadira\nYao\nYaseen\nYong\nZain\nZak\nZakariah\nZuriel\nAarron\nAbdiel\nAden\nAditya\nAerick\nAharon\nAladdin\nAlejo\nAlexx\nAlexzander\nAlistair\nAmaury\nAmrit\nAmy\nAndranik\nAnish\nAntoni\nAntonino\nApril\nArick\nAris\nArlen\nArmin\nAroldo\nAsad\nAshish\nAvi\nAvinash\nAziz\nBakari\nBasilio\nBelen\nBenjamen\nBenton\nBerenice\nBernie\nBijon\nBillal\nBobbie\nBodhi\nBradon\nBram\nBranndon\nBranson\nBreon\nBriana\nBrycen\nBud\nByran\nCarolina\nCase\nCash\nCatalino\nCecilia\nCharlton\nChirstopher\nChong\nChristipher\nCipriano\nConstantine\nCordell\nCorrey\nCrispin\nDajuan\nDakoda\nDamen\nDameon\nDamone\nDang\nDanish\nDanthony\nDaylan\nDeepak\nDejuan\nDelvon\nDemarea\nDemitrius\nDenise\nDevonta\nDidier\nDietrich\nDimitrius\nDj\nDonnovan\nEdsel\nEduard\nEian\nElad\nEladio\nEleuterio\nElgin\nElija\nEliud\nEliyahu\nEmad\nEmile\nEndy\nEnrico\nEricson\nErie\nErnan\nEsther\nEsvin\nFadi\nFortino\nFouad\nFranklyn\nFranz\nGaetano\nGaren\nGarland\nGaro\nGarren\nGeoffery\nGeovannie\nGerber\nGibson\nGideon\nGillermo\nGiorgio\nGiovannie\nGlendon\nGonsalo\nGrabiel\nGreyson\nGunner\nGurpreet\nGustabo\nHamzah\nHannah\nHansen\nHardy\nHaroon\nHaroutun\nHarutun\nHarutyun\nHien\nHiroki\nHoa\nHollis\nHovanes\nHovhannes\nHrag\nHue\nIain\nIlan\nIman\nIsaih\nIsauro\nIsmail\nIzaak\nJaccob\nJahaziel\nJalin\nJareth\nJarett\nJarret\nJase\nJayce\nJaylan\nJazmine\nJc\nJd\nJehu\nJeovany\nJerid\nJermey\nJerod\nJerred\nJerrid\nJerron\nJhonny\nJhovani\nJhovany\nJjesus\nJobanny\nJobany\nJocob\nJody\nJohannes\nJohnchristopher\nJomar\nJonh\nJonothan\nJonthan\nJosealfredo\nJosemaria\nJuana\nJuanmiguel\nJules\nJuliano\nJune\nKain\nKashif\nKassandra\nKaylen\nKeandre\nKee\nKejuan\nKelby\nKenan\nKevonte\nKeyon\nKhai\nKim\nKiven\nKoby\nKori\nKrishan\nKriss\nKush\nKyleanthony\nKyron\nLake\nLang\nLangston\nLauro\nLavelle\nLayton\nLenard\nLenny\nLeron\nLiliana\nLorena\nLorne\nLovell\nLuismiguel\nLuz\nMaclovio\nMariana\nMarilyn\nMarin\nMarisol\nMaritza\nMarquell\nMarquice\nMatthias\nMaury\nMckay\nMichaela\nMichaeljohn\nMickel\nMong\nMontre\nMonty\nMorgen\nNahum\nNareg\nNasser\nNaveed\nNeftaly\nNeko\nNhan\nNicanor\nNicola\nNieves\nNikkolas\nNikola\nNiraj\nNishant\nOrin\nOsama\nOshay\nParth\nPascal\nPastor\nPayne\nPeyton\nPhi\nPrinceton\nQuade\nRahim\nRahsaan\nRaj\nRandel\nRanjit\nRaoul\nRaymar\nRaymund\nRedmond\nRegino\nRenard\nRich\nRoel\nRogan\nRonaldo\nRonell\nRoshan\nRueben\nRuperto\nRyanchristopher\nRyann\nRyker\nSabas\nSaid\nSalman\nSan\nSandor\nSang\nSara\nScot\nSeamus\nSevag\nShadi\nShahin\nShain\nShakir\nSharif\nShelton\nSiaosi\nSilvano\nSkye\nSonia\nStacey\nStanton\nStavros\nStevens\nTad\nTamer\nTaron\nThao\nTobin\nTod\nToren\nTori\nTorrance\nTracey\nTramell\nTremaine\nTye\nTyrel\nTyshawn\nUmberto\nUri\nUsman\nValentine\nVentura\nVikram\nVinnie\nVinny\nVu\nVue\nWaldemar\nWells\nWest\nWilbur\nWilfrido\nXai\nXang\nXue\nYordi\nYoshio\nYousif\nYousuf\nYusef\nYuta\nZachry\nZoe\nDaniel\nMichael\nJose\nChristopher\nDavid\nAnthony\nAndrew\nMatthew\nJoshua\nKevin\nJonathan\nBrandon\nJoseph\nJacob\nRyan\nNicholas\nJuan\nChristian\nAlexander\nRobert\nTyler\nLuis\nJohn\nJames\nJustin\nJesus\nEric\nAustin\nCarlos\nKyle\nZachary\nBrian\nSteven\nWilliam\nAaron\nMiguel\nAlejandro\nEduardo\nRichard\nAngel\nJason\nJesse\nJordan\nVictor\nJorge\nGabriel\nSamuel\nThomas\nCody\nOscar\nFrancisco\nBenjamin\nBryan\nRicardo\nAdrian\nAdam\nSean\nNathan\nCristian\nEdgar\nDylan\nTimothy\nManuel\nAlex\nMark\nAntonio\nErik\nJeremy\nPatrick\nOmar\nSergio\nJavier\nCesar\nMario\nJeffrey\nCameron\nMartin\nAndres\nEdward\nHector\nFernando\nRoberto\nPaul\nIvan\nCharles\nRuben\nErick\nConnor\nTrevor\nVincent\nRaymond\nPedro\nKenneth\nIan\nMarcus\nStephen\nMarco\nIsaac\nRaul\nTaylor\nGerardo\nJoel\nTravis\nJulian\nEvan\nPeter\nGarrett\nEdwin\nAlberto\nAlan\nRafael\nDerek\nArmando\nDiego\nJaime\nJared\nNathaniel\nScott\nGregory\nSalvador\nDevin\nGeorge\nAlexis\nFrank\nJake\nArturo\nHenry\nSpencer\nBlake\nJohnny\nJulio\nShane\nMitchell\nGustavo\nAlfredo\nEnrique\nDominic\nNicolas\nAndy\nAlec\nJosue\nAbraham\nMarcos\nErnesto\nLucas\nDanny\nDustin\nLuke\nJack\nTanner\nRamon\nJimmy\nBradley\nCaleb\nCorey\nElijah\nHunter\nLogan\nShawn\nPhillip\nCole\nAndre\nAlbert\nEmmanuel\nGiovanni\nDakota\nDillon\nChad\nGuillermo\nPablo\nIsrael\nChase\nEthan\nBrett\nTony\nMoises\nXavier\nRene\nBryce\nCasey\nMason\nRonald\nIsaiah\nCory\nWesley\nNoah\nTroy\nFabian\nIsmael\nJerry\nRicky\nMax\nRandy\nEsteban\nHugo\nJohnathan\nSaul\nSebastian\nDevon\nGrant\nRodolfo\nDennis\nElias\nJoe\nDonald\nLeonardo\nAllen\nSteve\nAlfonso\nSeth\nBrendan\nJeremiah\nMathew\nEddie\nWyatt\nArthur\nRudy\nMaxwell\nDerrick\nColin\nKeith\nPhilip\nDouglas\nDalton\nGary\nFelipe\nGilberto\nJackson\nDarren\nAbel\nMarvin\nCalvin\nLouis\nRogelio\nCurtis\nRoger\nColton\nRodrigo\nJessie\nHayden\nLawrence\nDamian\nJonathon\nGilbert\nMiles\nNoe\nClayton\nLorenzo\nRamiro\nMauricio\nRiley\nEmanuel\nMarc\nDrew\nHarrison\nVicente\nBrent\nRoman\nEmilio\nBryant\nHumberto\nCollin\nKenny\nNolan\nAlvaro\nForrest\nKristopher\nLarry\nTommy\nAdan\nWalter\nEfrain\nBilly\nOliver\nOsvaldo\nDonovan\nBranden\nSantiago\nFreddy\nBobby\nJonah\nUriel\nConner\nNestor\nSkyler\nRussell\nJay\nLevi\nUlises\nMorgan\nOrlando\nIgnacio\nNoel\nRolando\nTomas\nSimon\nGavin\nNelson\nAdolfo\nAgustin\nLeonel\nRigoberto\nDean\nJoey\nJoaquin\nNickolas\nRoy\nPreston\nFelix\nDarius\nGerman\nAngelo\nMyles\nParker\nCarl\nJairo\nMicah\nRay\nDominique\nGuadalupe\nTheodore\nAllan\nCraig\nJeffery\nZackary\nDallas\nDominick\nEugene\nByron\nColby\nEli\nLance\nRandall\nAlvin\nDante\nTrenton\nLeonard\nAlfred\nKristian\nMaurice\nGerald\nZachariah\nDeandre\nIrvin\nMarlon\nOctavio\nGage\nBernardo\nDamien\nDamon\nJosiah\nKelvin\nLandon\nGonzalo\nGriffin\nKody\nHeriberto\nIsaias\nJalen\nMarshall\nRaymundo\nZachery\nEzequiel\nMelvin\nSam\nAli\nAidan\nFrederick\nLiam\nMicheal\nNikolas\nRodney\nAriel\nBrennan\nDavis\nErnest\nRonnie\nShaun\nBrady\nBruce\nCharlie\nMike\nTrent\nCarson\nJohnathon\nFranklin\nLee\nMarquis\nMoses\nChris\nFidel\nJon\nLeo\nConor\nGeoffrey\nNeil\nTerrance\nAvery\nEstevan\nJamal\nTodd\nChance\nReynaldo\nWeston\nWillie\nIssac\nJamie\nMalcolm\nMalik\nDarrell\nIrving\nShaquille\nStefan\nTerry\nAlonzo\nDrake\nEfren\nStanley\nFrankie\nGlenn\nRoss\nAlexandro\nArnold\nHarley\nLeon\nRalph\nTevin\nWayne\nZane\nJayson\nFrancis\nTerrence\nDane\nElliot\nKameron\nElliott\nGregorio\nKendall\nWilson\nBrenden\nBrock\nDarryl\nMisael\nAldo\nEdgardo\nTy\nIsai\nBeau\nBrendon\nCooper\nElmer\nHarry\nHernan\nJerome\nKaleb\nQuinn\nZackery\nChandler\nIsidro\nJim\nReginald\nAshton\nCristobal\nJakob\nTrevon\nTrey\nDeshawn\nGenaro\nKeenan\nSterling\nCruz\nKyler\nLukas\nRick\nDevonte\nMarkus\nMaximiliano\nDarian\nDarien\nKurtis\nWade\nAmir\nMaximilian\nRobin\nValentin\nAlonso\nCedric\nDion\nEliseo\nJarred\nJuancarlos\nMiguelangel\nNathanael\nSantos\nTucker\nAhmad\nFredy\nGiovanny\nJoseluis\nKendrick\nMilton\nMohammad\nStuart\nBenito\nElvis\nRoland\nTristan\nTyrone\nUlysses\nCarter\nDario\nJarrett\nKeegan\nKurt\nBraden\nClarence\nDemetrius\nJessy\nJunior\nNorman\nStephan\nBenny\nDerick\nGarret\nGino\nKarl\nLeopoldo\nNigel\nConrad\nDevante\nEverett\nOswaldo\nSkylar\nAron\nEverardo\nGordon\nMarcel\nMohammed\nReid\nArnulfo\nDale\nDuncan\nJovani\nJovanny\nKai\nKelly\nMarcelino\nAusten\nDeon\nErwin\nEzekiel\nHarold\nKeaton\nMitchel\nTerrell\nTylor\nBraulio\nBret\nClay\nCristopher\nDarnell\nDenzel\nDesmond\nHerman\nJordon\nNico\nDaryl\nDavon\nEddy\nGraham\nLouie\nQuentin\nBrayan\nDwayne\nMarquise\nReed\nSammy\nAhmed\nGrayson\nIbrahim\nJasper\nJovany\nJulius\nMariano\nDavion\nFederico\nFermin\nJean\nJustice\nKeven\nNiko\nReuben\nReyes\nClinton\nDon\nForest\nFred\nHoward\nJonatan\nKhalil\nLewis\nPerry\nRaphael\nShayne\nWarren\nAbram\nBernard\nClifford\nCyrus\nDan\nGeovanni\nKent\nLane\nMarcelo\nQuincy\nRoderick\nSidney\nTyree\nCarlo\nDarin\nEarl\nHerbert\nHoracio\nKeanu\nKory\nLucio\nMackenzie\nTerence\nAntony\nAurelio\nDorian\nKristofer\nAddison\nAnton\nAxel\nBryson\nFreddie\nJermaine\nJessica\nJovan\nKirk\nLamar\nPete\nRory\nShannon\nWalker\nDevan\nJeff\nJulien\nJustyn\nLeroy\nPierce\nQuinton\nSage\nSonny\nBlaine\nBrenton\nChaz\nClaudio\nClint\nDimitri\nKen\nMadison\nRoyce\nZechariah\nDeonte\nDonte\nGeovanny\nLeobardo\nLionel\nLoren\nRashad\nSolomon\nArron\nBill\nBrice\nDavonte\nEleazar\nGiancarlo\nIsiah\nJefferson\nKasey\nLamont\nLeland\nLuciano\nMaria\nNick\nRey\nSilvestre\nWinston\nAdalberto\nAndreas\nAntoine\nAri\nDejon\nDevyn\nDiana\nDonavan\nEdmund\nEriberto\nErnie\nHolden\nJace\nJarrod\nJohnpaul\nJovanni\nNikko\nSawyer\nVidal\nArnoldo\nBen\nCorbin\nGabino\nGene\nJaylen\nJimmie\nJohnnie\nKane\nMauro\nMaximillian\nOwen\nSheldon\nStephanie\nTom\nTyrell\nVance\nDexter\nEder\nEzra\nGlen\nJameson\nJavon\nJessi\nJonas\nLonnie\nNeal\nOsbaldo\nRickey\nRiver\nRocky\nRosendo\nBrad\nBrandyn\nDarrin\nDarrion\nDeven\nJaron\nJohnson\nJosef\nKhalid\nKong\nLeslie\nOrion\nStewart\nToby\nVince\nAnderson\nBennett\nCeasar\nDamion\nDenny\nDomingo\nEloy\nEmiliano\nErvin\nFaustino\nFranco\nGerson\nGreg\nKennedy\nLuiz\nMateo\nRomario\nStephon\nAlejandra\nArman\nAugust\nAugustine\nBrody\nDarion\nDillan\nDomenic\nGianni\nGrady\nJabari\nJade\nMohamed\nNathanial\nSamir\nSamson\nShayan\nTobias\nTou\nWill\nArmen\nAsher\nBrennen\nBrooks\nBruno\nDarwin\nDeion\nErin\nEver\nFlavio\nGiovani\nKieran\nMarcoantonio\nMarkanthony\nPierre\nSarkis\nShelby\nSunny\nUbaldo\nWilfredo\nWilly\nAlessandro\nAlexandre\nArjun\nArtemio\nBrayden\nClark\nDarrien\nEdson\nFredrick\nGunnar\nJacky\nJelani\nJorden\nKorey\nLester\nLino\nMuhammad\nPayton\nRahul\nRex\nTimmy\nTravon\nAbelardo\nAlek\nAric\nBaltazar\nBarry\nBradford\nCarlton\nDandre\nElvin\nGalen\nGuy\nLloyd\nQuintin\nRico\nRyder\nShea\nTed\nTrever\nAiden\nAlden\nArmand\nArmani\nCamden\nDwight\nEdwardo\nEugenio\nFausto\nFavian\nHuy\nJair\nJamil\nJerald\nJosedejesus\nLyle\nMalachi\nMarques\nNorberto\nObed\nPhoenix\nRandolph\nRosalio\nSyed\nTrayvon\nValentino\nVernon\nAbner\nAldair\nArvin\nBijan\nBlair\nBraxton\nCamron\nCourtney\nCullen\nDillion\nDuane\nErich\nFiliberto\nFlorentino\nFredi\nGerard\nHamza\nHans\nHarvey\nJacobo\nJaquan\nJordy\nJuvenal\nKareem\nLazaro\nMickey\nNikhil\nPaolo\nReece\nReese\nRyland\nYoung\nAdrien\nAram\nAubrey\nBoris\nBrandan\nCade\nCaesar\nCheyenne\nColeman\nColten\nDarrian\nDavin\nDeclan\nDeondre\nDominque\nDuke\nEmerson\nEmil\nGarett\nHilario\nIshmael\nJackie\nJan\nJayden\nJerrod\nKellen\nMarty\nMaverick\nOsmar\nParis\nPorfirio\nReno\nReymundo\nRichie\nRigo\nSantino\nSylvester\nTyson\nVaughn\nZakary\nAdriel\nAshley\nBrannon\nCamilo\nCecil\nCynthia\nDana\nDanilo\nDara\nDashawn\nDeangelo\nElizabeth\nEllis\nGarrison\nGenesis\nGeovany\nHassan\nJamar\nJennifer\nJess\nJosemanuel\nJosh\nJusten\nJustus\nKenton\nKimberly\nLong\nMichel\nOmari\nRamsey\nRefugio\nRhett\nRon\nSalvatore\nThaddeus\nTrace\nTyrin\nUlisses\nVladimir\nAmador\nAndrea\nAnibal\nBrando\nBronson\nCain\nChristina\nChristoper\nDaron\nDenis\nDevaughn\nDiamond\nDijon\nElton\nEmmett\nEnoch\nGabriela\nIrwin\nJohan\nLincoln\nMichelle\nMigel\nNery\nPaulo\nRomeo\nStorm\nTate\nTrinidad\nVinh\nAbrahan\nAdonis\nAmit\nBlaise\nChasen\nCheng\nCodey\nDagoberto\nDaren\nDave\nDayne\nDonny\nEdmond\nElisha\nFlorencio\nFrancesco\nGer\nHakeem\nHomero\nIsac\nJaleel\nJasmine\nJazmin\nJuwan\nKevyn\nLaura\nLaurence\nMarcellus\nMarkel\nMelissa\nMonte\nMynor\nMyron\nRaudel\nReggie\nRudolph\nSalomon\nTracy\nVincente\nWilmer\nYonatan\nAdriana\nAkshay\nAngus\nAustyn\nBennie\nCassidy\nChadwick\nCoby\nColt\nDallin\nDayton\nDominik\nEsgar\nEvaristo\nFroylan\nGarry\nGeronimo\nGerry\nGildardo\nIsaak\nJoan\nJoseantonio\nJuanmanuel\nKaran\nKerry\nKevon\nKhari\nKristoffer\nLondon\nMargarito\nMilo\nMonica\nMontana\nMustafa\nNajee\nNicklaus\nNikolai\nRami\nRandal\nRemington\nRenee\nSagar\nSameer\nSchuyler\nSemaj\nServando\nShant\nSky\nTevita\nTre\nValente\nWestley\nYovani\nAbran\nAnders\nArian\nArin\nAugustus\nBailey\nBarrett\nBilal\nBroderick\nCelso\nChester\nCheyne\nClyde\nCodie\nCornelius\nDemetrio\nDerrek\nDiondre\nDonnell\nDonnie\nEliazar\nEsequiel\nEusebio\nFabio\nFloyd\nFortino\nFranky\nGideon\nGil\nHeath\nHouston\nIsreal\nJamel\nJasen\nJavonte\nJerardo\nKade\nKalvin\nKeshawn\nKou\nKris\nLuca\nLuigi\nMarkell\nMeng\nMinh\nMohamad\nMorris\nMychal\nNeftali\nNikolaus\nPatric\nPeyton\nPheng\nRayshawn\nRohit\nRomel\nRonny\nRosario\nSami\nSantana\nShay\nSherman\nTai\nTaj\nTariq\nTeddy\nTory\nTyron\nUziel\nVan\nVincenzo\nWilber\nAkash\nAlton\nBlas\nBrain\nBrodie\nBryon\nCary\nCristofer\nCrystian\nDarrel\nDarrick\nDashiell\nDeanthony\nDequan\nDerik\nDeshon\nDino\nDustyn\nEdilberto\nEliezer\nGaspar\nGavino\nGevork\nHugh\nImran\nJagger\nJamison\nJude\nJustine\nKaden\nKale\nKamran\nKao\nKelsey\nKeng\nKian\nKim\nKirby\nKolby\nLafayette\nLauren\nLeighton\nLuc\nLucky\nMarcell\nMarcial\nMatthias\nMayra\nMikal\nNader\nNehemiah\nOsman\nOtis\nOtto\nPascual\nRowan\nRyne\nSlater\nSpenser\nSteffan\nTarik\nTuan\nUlices\nUriah\nVahe\nVishal\nVivek\nWolfgang\nAbimael\nAkeem\nAlexandra\nAlexi\nAn\nAsad\nBaby\nBee\nBo\nBrandin\nBranson\nBrenda\nBryton\nCaden\nCale\nCarmelo\nCharley\nChristofer\nCiro\nClemente\nClifton\nCornell\nCristo\nCyle\nDajon\nDakoda\nDakotah\nDaquan\nDaveon\nDawson\nDelfino\nDeric\nDesean\nDestin\nDionicio\nDirk\nDomonic\nDyllan\nElan\nElder\nEvin\nGamaliel\nGarrick\nImmanuel\nJacques\nJaden\nJamaal\nJeramiah\nJeramy\nJericho\nJin\nJosias\nJun\nKamron\nKiefer\nKodi\nKunal\nLars\nMatt\nMaximino\nMikael\nMykel\nNahum\nNancy\nOcean\nOren\nQuinten\nRaffi\nRaven\nRickie\nRocio\nRoel\nRojelio\nRonaldo\nRusty\nRylan\nSal\nSandeep\nSarah\nSebastien\nStacy\nTayler\nThien\nTitus\nTravion\nTruman\nVirgilio\nZacharia\nAakash\nAbdiel\nAbdul\nAden\nAjay\nAl\nAlphonso\nAmado\nAmanda\nAmin\nAndrei\nAndru\nApolinar\nArgenis\nArlen\nAsa\nAshwin\nAugustin\nBenson\nBernabe\nCandido\nCedrick\nCuauhtemoc\nDangelo\nDaulton\nDemetri\nDeontae\nDereck\nDeshaun\nDionte\nDylon\nEamon\nEarnest\nEmmet\nErasmo\nGeraldo\nGorge\nHamilton\nHarlan\nHarris\nHasan\nHieu\nHubert\nJacinto\nJamari\nJasson\nJaycob\nJed\nJedidiah\nJered\nJeromy\nJerson\nJohathan\nJohny\nJourdan\nJuventino\nKc\nKelby\nKendal\nKenji\nKenyon\nKeon\nKeyon\nKing\nLamonte\nLangston\nLeandre\nLeng\nLucero\nLuisenrique\nMack\nMarlin\nMatias\nMaximo\nMaxx\nMilan\nMitch\nModesto\nNabil\nNam\nNathen\nNevin\nNicholaus\nOshea\nPatricio\nRemy\nRenato\nReymond\nRichardo\nRohan\nRony\nRoyal\nRueben\nRyley\nSabino\nSahil\nSandro\nSione\nStevan\nStevie\nStone\nTheron\nTim\nTito\nVanessa\nViet\nWilbert\nWilliams\nYeng\nYesenia\nYobani\nYsidro\nZack\nAlexzander\nAlfonzo\nAmilcar\nAmos\nAnselmo\nAra\nArash\nArcadio\nAristeo\nBishop\nBrandt\nBrennon\nCandelario\nCharly\nChee\nChue\nCodi\nColeton\nCristina\nDanniel\nDarell\nDarrius\nDavante\nDax\nDemitri\nDerrik\nDilan\nDimas\nDomonique\nDuy\nEan\nEber\nEdgard\nEdmundo\nEladio\nEmery\nEsteven\nEstuardo\nFadi\nFeliciano\nFransisco\nGaige\nGarth\nGaston\nGiorgio\nGregg\nGrigor\nGunner\nHagop\nHarman\nHenri\nHipolito\nIsacc\nJalil\nJarod\nJayme\nJaysen\nJeanluc\nJefferey\nJeronimo\nJessey\nJett\nJoao\nJoeseph\nJohnmichael\nJonny\nJorgeluis\nJorje\nJuanjose\nJustis\nKaelin\nKahlil\nKalen\nKillian\nKorbin\nKrishan\nLeif\nLeron\nLorne\nLuisangel\nLyndon\nMalcom\nMarcanthony\nMarcello\nMarshawn\nMathias\nMaynor\nMckay\nMenachem\nMissael\nNicolo\nNiles\nOllie\nOsiris\nOtoniel\nPhil\nPhong\nRayan\nRaymon\nRishi\nRoque\nSaif\nSamantha\nSaturnino\nSeamus\nSerafin\nSilas\nSina\nSydney\nYosef\nYousef\nZain\nAgustine\nAj\nAkil\nAlain\nAlbaro\nAldrin\nAlexsander\nAmmon\nArchie\nArmond\nArmondo\nArya\nAshkan\nAuston\nBaron\nBasil\nBelal\nBlayne\nBlaze\nBrant\nCaelan\nCallum\nCarmen\nCash\nCisco\nCj\nClaude\nClement\nCordell\nCoty\nCrystal\nDasean\nDelvon\nDemarco\nDemarea\nDenzell\nDerrell\nDevonta\nDmitri\nDonavon\nDontae\nDontay\nEden\nEdison\nEduard\nEnrico\nEnzo\nEphraim\nErnan\nErrol\nEsdras\nFletcher\nGagandeep\nGarren\nGeno\nGerrit\nGian\nGibran\nGiuseppe\nGreyson\nHakop\nHansel\nHudson\nIban\nIlan\nIsidoro\nIzaac\nJaccob\nJagdeep\nJaren\nJarret\nJarvis\nJasdeep\nJaspreet\nJeanpaul\nJeanpierre\nJereme\nJeremias\nJerrick\nJeshua\nJessee\nJesu\nJevon\nJihad\nJocelyn\nJohann\nJonnathan\nJoshuah\nJospeh\nJuanantonio\nJurgen\nKalin\nKaren\nKarina\nKeane\nKeoni\nKhachik\nKhaled\nKishan\nKohl\nKyree\nLeandro\nLenny\nMaher\nMarin\nMarino\nMarisol\nMarquez\nMarquice\nMarshal\nMartell\nMatteo\nMichaelangelo\nMichaelanthony\nMikhail\nMoshe\nMuhammed\nNicolai\nNiklas\nNikola\nOciel\nOsiel\nRaheem\nRamses\nRamzi\nRaziel\nRio\nRitchie\nRobbie\nRomero\nRommel\nRonan\nRufino\nRyo\nSamer\nSandra\nSanjay\nScotty\nShiloh\nSilvano\nSilvino\nStacey\nStefano\nTad\nTalon\nThanh\nTobin\nTorin\nTraveon\nTrevion\nTye\nTyquan\nUlyses\nValdemar\nVictoria\nVictoriano\nWaleed\nWestin\nYoussef\nYusuf\nAbdullah\nAdnan\nAkhil\nAlexandros\nAlistair\nAlma\nAman\nAmar\nAmeen\nAmeer\nAna\nAndrey\nAndrez\nAndrue\nAntone\nAntwan\nAntwon\nArie\nArley\nArmon\nArno\nAtanacio\nAureliano\nAvetis\nAvi\nBaldomero\nBernie\nBladimir\nBodie\nBowen\nBrianna\nCamren\nCarrington\nChace\nChai\nChan\nChe\nCiaran\nCliff\nConrado\nCourtland\nCoy\nDaisy\nDanial\nDany\nDarron\nDarvin\nDeante\nDelon\nDevontae\nDezmond\nDiante\nDuc\nDusty\nEaston\nEdric\nElbert\nElio\nEly\nEmile\nEros\nEsai\nEulalio\nEulises\nEvelyn\nFaisal\nFernie\nFidencio\nFoster\nFrederic\nFroilan\nGannon\nGareth\nGeovani\nGianluca\nGiovany\nGiuliano\nGreggory\nGurpreet\nHank\nHarjot\nHarutyun\nHomar\nJacobe\nJacqueline\nJarett\nJarrell\nJaskaran\nJasmin\nJaymes\nJayvon\nJeremi\nJerick\nJermey\nJeron\nJob\nJody\nJoesph\nJonte\nJossue\nJr\nJuaquin\nJudah\nJustino\nKainoa\nKarim\nKeandre\nKelton\nKenyatta\nKhalif\nKhang\nKhoa\nKhristian\nKhristopher\nKiel\nKodiak\nKole\nKonrad\nKristen\nKylan\nKyron\nLam\nLang\nLaron\nLashawn\nLatrell\nLenin\nLeondre\nLevon\nLibrado\nLorena\nLou\nLuisantonio\nMacario\nMalek\nMarko\nMarlo\nMartel\nMaurilio\nMelchor\nMick\nMiko\nMizael\nNash\nNaveed\nNavid\nNicklas\nNicole\nNile\nNils\nOskar\nPaola\nParrish\nParth\nPascal\nPaulino\nPeng\nPresley\nQuin\nRashawn\nRavi\nReilly\nRodrick\nRosa\nRyker\nSabastian\nSaeed\nSalim\nSampson\nSang\nSatchel\nSerjio\nShaheed\nSharif\nSherwin\nShon\nShyam\nSigifredo\nSimeon\nSkye\nSol\nSon\nSteffen\nSundeep\nSutton\nTakumi\nTanya\nTavis\nTeng\nThai\nTheo\nTimmothy\nTimoteo\nTong\nTorrey\nTravell\nTreyvon\nTrung\nTynan\nUrbano\nUsman\nVictormanuel\nVijay\nVito\nWalid\nWenceslao\nWendell\nWillem\nXiong\nYazan\nYusef\nZaid\nAbigail\nAce\nAddam\nAdil\nAdrain\nAkili\nAlegandro\nAleksandr\nAlen\nAlexa\nAlexei\nAlvino\nAmari\nAnish\nAnson\nAntonino\nAntoniodejesus\nAraceli\nArik\nArnaldo\nAyrton\nBarron\nBayron\nBernardino\nBob\nBradly\nBraedon\nBrendyn\nBrittany\nBritton\nByran\nCalen\nCameren\nCannon\nCarey\nCecilio\nCelestino\nChadd\nChanse\nCharlton\nChong\nChristain\nChristen\nChristine\nChristobal\nCirilo\nCobi\nConstantino\nCosme\nDaivd\nDakarai\nDamond\nDannie\nDarick\nDavey\nDaylon\nDejuan\nDelaney\nDelbert\nDelvin\nDemarcus\nDemario\nDemitrius\nDemond\nDennys\nDerrius\nDeryk\nDewayne\nDonaldo\nDonta\nDontrell\nDyllon\nEarvin\nEdin\nEliab\nEligio\nElpidio\nEnoc\nEnrrique\nEoin\nEpifanio\nEri\nErica\nEsau\nFaraz\nFarhad\nFlynn\nFranz\nGaren\nGaret\nGus\nHaig\nHan\nHarpreet\nHarutun\nHiram\nHoang\nHonorio\nHovanes\nHrag\nHussein\nIdris\nIra\nIsamar\nIsmail\nIssa\nItzel\nIvann\nIzaak\nIzaiah\nJaelen\nJakeb\nJameel\nJaryd\nJavan\nJavion\nJaziel\nJerod\nJhonny\nJiovanni\nJobany\nJohnatan\nJohnathen\nJohnpatrick\nJordin\nJordyn\nJory\nJoselito\nJovante\nJuandaniel\nJuanfrancisco\nJuanpablo\nJulie\nJuliocesar\nKacey\nKaelan\nKaine\nKalani\nKarlo\nKarlos\nKarsten\nKayvan\nKeano\nKeifer\nKeion\nKellan\nKenan\nKevork\nKhanh\nKhiry\nKimani\nKingston\nKonner\nKori\nKrystian\nLaith\nLake\nLamarr\nLanden\nLauro\nLavell\nLavonte\nLejon\nLemuel\nLennard\nLinda\nLupe\nMaceo\nMagdaleno\nMakoto\nManpreet\nMarek\nMarion\nMarley\nMarquan\nMateen\nMattew\nMckinley\nMegan\nMervin\nMontel\nMontgomery\nMykal\nNapoleon\nNareg\nNatan\nNhan\nNhia\nNicco\nNiccolo\nNicolaus\nNino\nOmero\nOri\nPatricia\nPercy\nPranav\nQuang\nRajan\nRandell\nRhyan\nRichmond\nRidge\nRito\nRobby\nRodger\nRoldan\nRomello\nRoshan\nRuby\nRudolfo\nSaad\nSabas\nSasha\nSavon\nScot\nSelvin\nShae\nShai\nShaquan\nShelton\nSinjin\nSou\nStanton\nStetson\nSullivan\nSumner\nSunil\nTerance\nTerell\nTerron\nTevon\nThong\nTin\nTonny\nTorey\nTracey\nTrenten\nTreshawn\nTristen\nTu\nTyren\nVarun\nVikram\nVirgil\nWallace\nWaylon\nWilfrido\nWilton\nWoodrow\nXai\nYair\nYanni\nYer\nYoni\nYuta\nZacary\nZackariah\nZaire\nZakkary\nZavier\nZion\nAaronjames\nAdarius\nAdin\nAdonnis\nAdrean\nAdriano\nAlbino\nAlecsander\nAlejo\nAleksandar\nAleksander\nAlexsis\nAlexx\nAmani\nAnastacio\nAndie\nAndoni\nAndranik\nAneesh\nAngela\nAnirudh\nAnkit\nAnkush\nAnmol\nAnna\nAntione\nAntoni\nAntuan\nAntwain\nApolonio\nAquil\nAren\nAria\nAries\nArmaan\nArnel\nArt\nArtur\nArun\nAsante\nAthen\nAugusto\nAvinash\nBaldwin\nBaudelio\nBejamin\nBenedict\nBenigno\nBenjamen\nBenton\nBertin\nBillie\nBlade\nBriana\nBridger\nBrien\nBrion\nBurton\nCaine\nCameran\nCamrin\nCardell\nCarlin\nCase\nCassius\nCavan\nCayden\nCeaser\nCezar\nCha\nChancellor\nChang\nCher\nChoua\nChristien\nChristin\nChristoher\nChristpher\nChrystian\nChukwuemeka\nCindy\nClancy\nConstantine\nCortez\nCorwin\nCosmo\nCurren\nCutberto\nDallen\nDalvin\nDamario\nDamen\nDamonte\nDaneil\nDaniela\nDarryn\nDarshan\nDaven\nDavidmichael\nDavit\nDavontae\nDavy\nDawayne\nDayshawn\nDayvon\nDedrick\nDeepak\nDejaun\nDejohn\nDemonte\nDenver\nDeonta\nDeontay\nDeron\nDerron\nDeshone\nDevlin\nDiamante\nDilpreet\nDomenico\nDonavin\nDondre\nDong\nDoron\nDoyle\nEdan\nEdvin\nEdwing\nElena\nEliott\nEliu\nEmad\nEmir\nEmmitt\nEran\nEryk\nEzell\nFabiola\nFaris\nFue\nGerado\nGevorg\nGraciano\nGunther\nHaik\nHairo\nHansen\nHaroon\nHarut\nHasani\nHeber\nHerson\nHomer\nHosea\nHoua\nHuriel\nIman\nImani\nIran\nIsabel\nIsael\nIsaih\nIsrrael\nJabril\nJacoby\nJahaziel\nJalon\nJamall\nJamesryan\nJansen\nJarell\nJaret\nJarren\nJarron\nJaven\nJaxon\nJaylan\nJaylin\nJaylon\nJayro\nJayshawn\nJeancarlos\nJedediah\nJeffry\nJensen\nJeovanny\nJeramie\nJeremie\nJeric\nJerrel\nJese\nJezreel\nJhon\nJhonathan\nJoanna\nJohnell\nJonathen\nJordi\nJosafat\nJosealberto\nJoseguadalupe\nJosemiguel\nJosephmichael\nJoshue\nJovanie\nJovonte\nJulia\nJusto\nJuston\nKabir\nKaelen\nKain\nKalan\nKalyn\nKamari\nKamren\nKaron\nKason\nKavin\nKayden\nKayon\nKayvon\nKeelan\nKegan\nKeilan\nKeir\nKendell\nKennith\nKevan\nKevion\nKeyan\nKijana\nKile\nKimball\nKlayton\nKoby\nKodey\nKodie\nKolten\nKoua\nKraig\nLathan\nLennon\nLeopold\nLex\nLiliana\nLior\nLisandro\nLovell\nLowell\nLuz\nMaalik\nMalique\nMandeep\nManolo\nMarissa\nMarkeith\nMarkjoseph\nMarquel\nMarquell\nMarquese\nMarqus\nMassimo\nMathieu\nMaxmillian\nMckenzie\nMerced\nMicahel\nMicky\nMikel\nMoua\nMurphy\nNabeel\nNarciso\nNatanael\nNavdeep\nNazario\nNeel\nNeema\nNehemias\nNiall\nNicandro\nNicholes\nNoble\nNolberto\nNoor\nNorris\nOmid\nOran\nOshay\nOswald\nOthoniel\nOzzie\nPao\nPayam\nPhilippe\nPierson\nPolo\nPrabhjot\nPrince\nRachel\nRajdeep\nRajiv\nRamces\nRashaad\nRashaan\nRashid\nRaymund\nRaynard\nRebecca\nRegan\nRian\nRod\nRoosevelt\nRudolf\nRufus\nRussel\nRyen\nRyon\nSaid\nSaleem\nSalem\nSamual\nSamvel\nSandy\nSaxon\nSedrick\nSeng\nSergey\nShaan\nShad\nShaine\nShan\nShaw\nSher\nSheridan\nShiv\nSiddharth\nSierra\nSilvester\nSilvia\nSilviano\nSixto\nSloan\nSocrates\nSoua\nSteffon\nSven\nTadeh\nTaha\nTam\nTan\nTaran\nTarek\nTavon\nThao\nThor\nTino\nTj\nToan\nTremaine\nTremayne\nTrevin\nTri\nTulio\nTurner\nTylar\nTyreese\nUmar\nVartan\nVentura\nVictorio\nVong\nWayde\nWayland\nWes\nWilbur\nWiley\nWilver\nYael\nYing\nYoel\nZahir\nZev\nZubair\nDaniel\nMichael\nJose\nChristopher\nDavid\nAnthony\nAndrew\nMatthew\nJoshua\nJonathan\nJacob\nJoseph\nKevin\nNicholas\nChristian\nBrandon\nRyan\nJuan\nAlexander\nJustin\nTyler\nRobert\nLuis\nAustin\nJohn\nJesus\nEric\nJames\nCarlos\nBrian\nKyle\nWilliam\nZachary\nSteven\nAaron\nAngel\nEduardo\nMiguel\nAlejandro\nRichard\nGabriel\nVictor\nSamuel\nJason\nJordan\nJorge\nBryan\nAdrian\nThomas\nJesse\nFrancisco\nBenjamin\nOscar\nRicardo\nAdam\nNathan\nCody\nCristian\nAlex\nDylan\nEdgar\nSean\nAntonio\nSergio\nManuel\nMark\nTimothy\nErik\nOmar\nMario\nPatrick\nFernando\nCesar\nMartin\nJavier\nCameron\nJeremy\nIsaac\nAndres\nIvan\nHector\nRoberto\nEdward\nAlexis\nCharles\nJeffrey\nPaul\nRuben\nTrevor\nIan\nJulian\nConnor\nErick\nRaymond\nArmando\nVincent\nKenneth\nPedro\nEvan\nMarco\nRaul\nIsaiah\nNathaniel\nGerardo\nGarrett\nStephen\nPeter\nJared\nRafael\nJoel\nElijah\nAlberto\nAlan\nMarcus\nGeorge\nJaime\nDiego\nEdwin\nJake\nTravis\nDevin\nNoah\nTaylor\nSalvador\nDerek\nHenry\nScott\nBlake\nNicolas\nSpencer\nAlfredo\nGregory\nJulio\nArturo\nEnrique\nFrank\nJosue\nAbraham\nJack\nGustavo\nJohnny\nMitchell\nAlec\nLogan\nShane\nDominic\nGrant\nEthan\nHunter\nWyatt\nCaleb\nBradley\nLucas\nMarcos\nAndy\nDustin\nTristan\nTanner\nChase\nRamon\nLuke\nDakota\nDanny\nErnesto\nGiovanni\nCorey\nShawn\nAlbert\nAndre\nJimmy\nCole\nEmmanuel\nJohnathan\nMason\nRodrigo\nIsrael\nSaul\nBrett\nSebastian\nEsteban\nChad\nGuillermo\nIsmael\nMoises\nPablo\nTony\nAbel\nDevon\nPhillip\nJeremiah\nBryce\nCalvin\nDillon\nTroy\nRandy\nSteve\nJerry\nElias\nXavier\nMax\nCasey\nColin\nWesley\nCory\nSeth\nRicky\nRonald\nDennis\nFabian\nAllen\nRene\nMathew\nMaxwell\nEddie\nArthur\nBrendan\nJackson\nHugo\nKeith\nLorenzo\nJoe\nRiley\nFelipe\nDamian\nLeonardo\nJonathon\nRudy\nLouis\nClayton\nMalik\nMauricio\nAlfonso\nRodolfo\nDalton\nGilbert\nDerrick\nColton\nDonald\nEmilio\nCurtis\nGilberto\nPhilip\nRoger\nDrew\nJessie\nDouglas\nGary\nRogelio\nRamiro\nRoman\nHumberto\nMarc\nMarvin\nNoe\nJonah\nAdan\nChandler\nHayden\nDarren\nBrent\nUriel\nTommy\nParker\nLarry\nLawrence\nEmanuel\nEfrain\nBryant\nKenny\nHarrison\nSantiago\nConner\nFelix\nGavin\nAlvaro\nJoaquin\nLiam\nNoel\nOsvaldo\nCollin\nJoey\nAidan\nKristopher\nMorgan\nRussell\nSkyler\nNickolas\nAlvin\nDonovan\nNestor\nJay\nOliver\nSimon\nVicente\nWalter\nChris\nNolan\nTomas\nBilly\nAllan\nFreddy\nMiles\nRigoberto\nChance\nLevi\nAgustin\nCharlie\nAngelo\nGerman\nBranden\nGage\nIgnacio\nDominick\nLance\nBernardo\nNelson\nTrenton\nMicah\nRay\nOrlando\nRolando\nDante\nRoy\nByron\nDallas\nEzequiel\nZackary\nPreston\nDeandre\nDean\nMaurice\nTheodore\nAldo\nBobby\nZachariah\nAlfred\nCarl\nIrvin\nJairo\nKristian\nAdolfo\nOctavio\nDamien\nRoss\nBailey\nCraig\nMike\nAvery\nDarius\nJosiah\nTrent\nColby\nAli\nDamon\nUlises\nJalen\nKelvin\nMarlon\nForrest\nGonzalo\nRaymundo\nSam\nGriffin\nIsaias\nKody\nEli\nAlonso\nBrennan\nLeonel\nTodd\nBrenden\nMicheal\nStanley\nEstevan\nJeffery\nDominique\nDrake\nGerald\nMyles\nNikolas\nZachery\nEfren\nJon\nMelvin\nRandall\nRonnie\nWillie\nTerry\nFrederick\nLeonard\nAriel\nAshton\nAlonzo\nJamal\nMoses\nRodney\nLeo\nSantos\nConor\nCooper\nTy\nArnold\nFrankie\nGuadalupe\nHeriberto\nCruz\nWarren\nDavis\nFidel\nLandon\nLeon\nMalcolm\nShaun\nCarson\nFrancis\nKhalil\nBrady\nBruce\nFranklin\nIssac\nMarquis\nNeil\nRalph\nAusten\nBrendon\nElmer\nKyler\nOwen\nCarter\nDane\nKai\nKameron\nAlexandro\nEugene\nHarley\nMisael\nTrevon\nCristopher\nErnest\nJakob\nJamie\nJerome\nJohnathon\nWeston\nElliot\nKeanu\nZackery\nQuentin\nBryson\nCedric\nElvis\nJayson\nTerrance\nWilson\nZane\nDeshawn\nJustice\nLee\nHernan\nKeenan\nUlysses\nGraham\nKaleb\nMarshall\nReynaldo\nTristen\nTyrone\nJulius\nLane\nBraden\nBraulio\nGarret\nGeoffrey\nQuinn\nRick\nWayne\nBeau\nBrock\nEdgardo\nGiovanny\nGlenn\nMarquise\nJunior\nKurtis\nLukas\nMarkus\nStefan\nDan\nDario\nEzekiel\nJasper\nStephan\nDevonte\nEliseo\nFredy\nGenaro\nIsai\nMaximilian\nMilton\nReginald\nReid\nTucker\nGregorio\nJovany\nNathanael\nNick\nSkylar\nDarrell\nDarryl\nKelly\nQuinton\nBenito\nCristobal\nDeon\nDon\nEverardo\nIsiah\nJovanny\nKurt\nMaximiliano\nReed\nSidney\nJordon\nJoseluis\nKeegan\nMiguelangel\nSage\nDarian\nDeion\nDemetrius\nElliott\nEverett\nGino\nKendall\nLouie\nAnton\nDesmond\nDevante\nHarry\nIrving\nKarl\nDale\nMalachi\nSonny\nStuart\nTevin\nTrey\nBenny\nBrad\nBrayan\nBrody\nFlavio\nGordon\nIsidro\nRaphael\nRobin\nTerrence\nAddison\nCarlo\nEmiliano\nJarred\nJuancarlos\nKory\nMarcelo\nAmir\nClarence\nDeven\nDwayne\nEddy\nJim\nJonatan\nJovani\nMackenzie\nSterling\nAntony\nAron\nAxel\nBrenton\nConrad\nDarien\nDonte\nKirk\nMarcel\nReuben\nBen\nBernard\nClay\nDarnell\nDorian\nGiovani\nJefferson\nLucio\nNeal\nOswaldo\nRocky\nSheldon\nTerrell\nValentin\nWade\nHarold\nJohnson\nKendrick\nKieran\nMohammad\nOsbaldo\nPerry\nRoland\nTom\nTylor\nAdalberto\nCorbin\nCyrus\nFreddie\nJovan\nKent\nKeven\nRomario\nDerick\nFavian\nFred\nHerman\nJermaine\nLewis\nMateo\nMohammed\nNico\nRoyce\nTristin\nAdonis\nArman\nArnulfo\nClifford\nDavion\nDavon\nDimitri\nJohnnie\nNigel\nNorman\nRiver\nZechariah\nBret\nDenzel\nDevan\nGeovanny\nJessy\nJulien\nKeaton\nMohamed\nEleazar\nErwin\nEzra\nFederico\nHoward\nLeopoldo\nMariano\nNiko\nAugust\nBlaine\nClark\nClint\nDejon\nJarrett\nJeff\nKellen\nMaximillian\nQuintin\nRoderick\nTyson\nAhmad\nDaryl\nDion\nGiancarlo\nGlen\nGrayson\nLamont\nLeobardo\nQuincy\nRashad\nWinston\nAntoine\nAurelio\nCade\nClinton\nDillan\nErnie\nGunnar\nHerbert\nJavon\nJean\nKen\nLamar\nMarcoantonio\nSammy\nShannon\nWalker\nAndreas\nBill\nBrandyn\nCaesar\nDevyn\nDuncan\nEmerson\nHoracio\nLeroy\nSolomon\nTyrell\nDamion\nGene\nGeovanni\nGeovany\nJonas\nLester\nPierce\nVidal\nVince\nAlexandre\nAugustine\nBrayden\nForest\nJaylen\nJosh\nLionel\nLuciano\nRey\nShayne\nTimmy\nTriston\nTyree\nVladimir\nAdrien\nAric\nBrennen\nDarrin\nEdson\nEloy\nEsai\nHilario\nJaden\nJarrod\nJovanni\nKasey\nNikko\nSawyer\nShea\nTobias\nBennett\nBruno\nEarl\nEdwardo\nFermin\nGerson\nJace\nKane\nKhalid\nLuiz\nMarcelino\nMauro\nNathanial\nPaulo\nPete\nRohan\nRory\nShant\nStewart\nTrayvon\nAri\nArtemio\nBrooks\nDarion\nDenny\nDerian\nFredrick\nHans\nIbrahim\nJamison\nJohnpaul\nKahlil\nKennedy\nKristofer\nLayne\nMarques\nMitchel\nNorberto\nOrion\nReece\nReyes\nToby\nTracy\nTravon\nWill\nAhmed\nBronson\nDandre\nEriberto\nFranky\nGuy\nJennifer\nKeon\nLuc\nPierre\nRony\nShaquille\nShelby\nSpenser\nTerence\nTou\nAbelardo\nAnibal\nArjun\nClaudio\nDexter\nDominik\nEder\nEsequiel\nHarvey\nHugh\nJamil\nJaron\nKorey\nLaurence\nLeland\nMaria\nMarkanthony\nRamsey\nReese\nRico\nRosendo\nSamir\nAbran\nArmand\nArron\nBradly\nDarwin\nDeonte\nDewayne\nDwight\nEmmett\nErin\nJess\nJessica\nJosef\nKalvin\nKillian\nLazaro\nLeslie\nLong\nRandal\nRandolph\nRickey\nRudolph\nStephon\nAbner\nArmen\nBradford\nChaz\nDarin\nElisha\nGreg\nHassan\nJacky\nJameson\nJustus\nKenji\nLloyd\nLoren\nPaolo\nPheng\nReymundo\nRhett\nRigo\nRomeo\nSamson\nSyed\nTre\nVance\nAlden\nAnderson\nArmani\nArnoldo\nArya\nAustyn\nBoris\nBrando\nCamilo\nCeasar\nChasen\nDarrion\nDavonte\nDijon\nDomingo\nEdmund\nFabio\nHolden\nIsaak\nJan\nJerardo\nJimmie\nJohan\nJustyn\nKian\nKong\nMarcello\nMarkell\nMuhammad\nNathen\nNima\nRahul\nRenato\nRon\nSalomon\nShayan\nTrever\nAbdul\nAbram\nAdriel\nAram\nBrice\nEden\nEmil\nGabino\nGenesis\nGianni\nIsac\nIsacc\nJade\nJamar\nJasen\nJaycob\nJuvenal\nKareem\nLuca\nLyle\nPatricio\nReno\nRyder\nSalvatore\nSarkis\nValentino\nWilfredo\nAiden\nAjay\nAlessandro\nAubrey\nAuston\nCodey\nColten\nDeric\nEver\nGrady\nHarris\nJasson\nJelani\nJericho\nJosedejesus\nKade\nKerry\nMickey\nMohamad\nOmid\nPhoenix\nReggie\nRex\nSemaj\nSydney\nBarry\nBijan\nBrandan\nClemente\nDomenic\nEdgard\nEmery\nErasmo\nFiliberto\nGarett\nGarrison\nJasmine\nKhari\nLuigi\nMarcell\nMigel\nMynor\nNehemiah\nNikolaus\nPascual\nSchuyler\nTed\nTito\nTurner\nUbaldo\nValente\nWilly\nAsa\nAsher\nAshley\nBlair\nCornelio\nDangelo\nDarrian\nDave\nDavin\nDeondre\nDylon\nElvin\nEsau\nEsgar\nEugenio\nFausto\nFranco\nFransisco\nGalen\nGerard\nGeronimo\nGideon\nImmanuel\nJacobo\nJeffry\nLincoln\nLondon\nLonnie\nMaverick\nMontana\nNicklaus\nNicky\nRichie\nSantino\nServando\nSilvestre\nSione\nStephanie\nTim\nTrevin\nWilmer\nYovani\nAldair\nAlton\nBaltazar\nBarrett\nBlas\nCamden\nChristofer\nClifton\nClyde\nDana\nDaquan\nDaveon\nDeangelo\nDereck\nDonavan\nDuke\nErvin\nFaustino\nGeovani\nGiovany\nGreyson\nGunner\nIrwin\nJackie\nJacques\nJayden\nJerald\nJohann\nJorden\nJoseantonio\nJusten\nKenton\nKris\nLeif\nLino\nMadison\nMilan\nMilo\nMinh\nMyron\nPorfirio\nRaymon\nRayshawn\nRefugio\nRemington\nSky\nStone\nTate\nTeddy\nTristian\nUlisses\nVaughn\nVincente\nWestley\nAlfonzo\nAmado\nAnders\nArgenis\nArvin\nAugustus\nBrenda\nBrennon\nBroderick\nBryon\nCaden\nCassidy\nCharley\nChue\nCristofer\nCuauhtemoc\nDakoda\nDarrien\nDashawn\nDelfino\nDeshaun\nDuane\nDusty\nElbert\nElizabeth\nEmily\nGarrick\nHakeem\nHamza\nHank\nJabari\nJai\nJedidiah\nJeronimo\nJohnmichael\nJordy\nJourdan\nKaden\nKaelin\nKamal\nKeshawn\nLatrell\nLeandro\nMacario\nMatthias\nMustafa\nNajee\nObed\nParis\nQuinten\nRoque\nRyland\nSilas\nTayler\nThaddeus\nThai\nTheo\nVan\nZack\nAkash\nAlejandra\nAlexzander\nAmador\nAmit\nAntwon\nArchie\nBee\nBrannon\nBrodie\nCain\nCamron\nCheng\nChester\nCornelius\nCullen\nDakotah\nDallin\nDanilo\nDayton\nDeclan\nDelvon\nDemetri\nDenis\nDionte\nEaston\nEdmond\nEllis\nElton\nGil\nGildardo\nGorge\nHouston\nIshmael\nIsreal\nJamaal\nJamari\nJamel\nJasmin\nJeramiah\nJessi\nJob\nJorgeluis\nJosemanuel\nJuanjose\nKalen\nKamron\nKaran\nKelsey\nKeoni\nKevon\nKolby\nLevon\nMarquel\nMarquez\nMeng\nMikal\nMontel\nNicholaus\nNikhil\nOtoniel\nPayton\nPeyton\nPhong\nRio\nRohit\nSal\nSherman\nSunny\nTalon\nTheron\nTitus\nTrace\nTrae\nUriah\nVarun\nVernon\nWaleed\nYonatan\nYousef\nAbdiel\nAlexi\nAmin\nAndrea\nAnfernee\nAren\nArian\nBao\nBenton\nBlaise\nBraxton\nCarmelo\nCelso\nChazz\nCheyenne\nColeman\nCoty\nDayne\nDemitri\nDeshon\nDestin\nDino\nDomonic\nDonnell\nDonnie\nDonny\nDontae\nDraven\nDyllan\nEdison\nEladio\nEsteven\nEvaristo\nGer\nGian\nHakop\nHomar\nIsmail\nIssa\nJaquan\nJaylin\nJett\nJevon\nJoan\nJohny\nJory\nKenyon\nKolton\nKristoffer\nLanden\nLars\nMahmoud\nMarshawn\nMelissa\nMissael\nNader\nNatanael\nNathon\nNicolo\nNikolai\nOsiel\nPaulino\nRashaan\nRaudel\nReilly\nRishi\nRomello\nRonny\nSahil\nSamer\nSherwin\nStorm\nTrenten\nTrinidad\nTyron\nViet\nWilbert\nYesenia\nYosef\nZakary\nAbrahan\nAkshay\nAnthoney\nAris\nArlen\nArt\nAugustin\nBernabe\nCaelan\nCedrick\nChadwick\nCoby\nCodi\nConstantino\nCourtney\nDajon\nDajuan\nDaren\nDarrel\nDavontae\nDaylon\nDeanthony\nDemetrio\nDerik\nEctor\nEdmundo\nEligio\nEliot\nEly\nEusebio\nFong\nFortino\nFrancesco\nHagop\nHarman\nHeath\nHomero\nHudson\nHuy\nIain\nJad\nJair\nJarvis\nJavan\nJavonte\nJered\nJerrad\nJoesph\nJonny\nJorje\nJosealberto\nJoseangel\nJoshuah\nJuanmanuel\nJudah\nKenyatta\nKevan\nKonner\nKunal\nKylan\nLaron\nLucky\nMalek\nMarcanthony\nMarcial\nMargarito\nMarko\nMatias\nMaurilio\nMckay\nMichaelangelo\nMikel\nNahum\nNeftali\nPeng\nPrince\nRaheem\nRami\nRamses\nRhys\nRian\nRickie\nRobbie\nRojelio\nRoosevelt\nRosalio\nRyen\nSalim\nSamantha\nSantana\nSeamus\nShay\nSilvano\nSilverio\nSkye\nSon\nStevan\nStevie\nSullivan\nTaran\nTariq\nTobin\nTruman\nTyus\nVikram\nVincenzo\nVinh\nVirgil\nVishal\nWestin\nWilber\nWillard\nZaid\nAdnan\nAlek\nAlijah\nAman\nAna\nApolinar\nAria\nBabyboy\nBaron\nBenigno\nBishop\nBraeden\nBulmaro\nCandelario\nCecilio\nCelestino\nChristoper\nCordell\nCosme\nCurt\nDagoberto\nDamonte\nDara\nDarrius\nDashiell\nDemarcus\nDemonte\nDenver\nDerrek\nDiamond\nDillion\nDonaldo\nDonavon\nEarnest\nEdsel\nEnzo\nErrol\nEsdras\nFloyd\nGeno\nGeraldo\nGiuseppe\nHubert\nIzaak\nIzaiah\nJalon\nJasdeep\nJashua\nJensen\nJeramy\nJerel\nJhovany\nJocelyn\nJohathan\nJohnathen\nJoshue\nJustis\nKale\nKalin\nKamran\nKarim\nKarina\nKegan\nKenan\nKendell\nKeyon\nKyree\nLeighton\nLyndon\nMarshal\nMaxx\nMelchor\nMichel\nMichelle\nMikael\nModesto\nMonte\nMorris\nMoshe\nMykel\nNam\nNash\nNavid\nNicolai\nNicolaus\nOsmar\nPatric\nQuang\nRashawn\nRocio\nRowan\nRusty\nRylan\nShiloh\nShon\nSimeon\nStacy\nSuraj\nSylvester\nTai\nTeng\nThanh\nThor\nTino\nTorin\nTrystan\nTye\nUlices\nVanessa\nViktor\nVinson\nVito\nWilfrido\nWillis\nYeng\nYobani\nAditya\nAdriano\nAlain\nAmar\nAmeer\nAmer\nAmos\nAndru\nAngus\nArash\nArik\nArnel\nAryan\nAvraham\nBaby\nBenedict\nBenjamen\nBenson\nBilal\nBradon\nBranson\nBrook\nCal\nCale\nCarlton\nCecil\nCha\nCodie\nColt\nCurran\nCyle\nDanthony\nDaron\nDelvin\nDemario\nDequan\nDesean\nDevaughn\nDevontae\nDirk\nDmitri\nDonavin\nDontay\nDoran\nEan\nElder\nEliezer\nEnoc\nErica\nErich\nEriq\nEstuardo\nFerdinand\nFletcher\nFlorentino\nFoster\nGamaliel\nGareth\nGerrit\nGevork\nGraeme\nGreggory\nGurpreet\nHarjot\nHarlan\nHarout\nHarpreet\nHiram\nIra\nJaleel\nJaren\nJarret\nJc\nJeanpaul\nJed\nJeovany\nJerad\nJeremi\nJeremias\nJerod\nJerrod\nJerson\nJessey\nJordyn\nJovon\nJuanpablo\nJustine\nKaelan\nKayvon\nKc\nKeane\nKeion\nKeng\nKevyn\nKhristian\nKiante\nKijana\nKirby\nKodie\nKole\nKonrad\nKou\nKrishna\nKwame\nLauren\nLuisangel\nLuther\nMalique\nMarino\nMarkel\nMaxfield\nMaxim\nMaximo\nMenachem\nMitch\nNabil\nNatividad\nNikola\nOmari\nOmer\nOskar\nOtis\nParth\nRaffi\nRainier\nRandell\nRemy\nRenzo\nRich\nRitchie\nRocco\nRod\nRomel\nRueben\nRyo\nSabastian\nSaid\nSaif\nSameer\nSami\nSandro\nSebastien\nSelena\nSevag\nShivam\nSlater\nStacey\nTeodoro\nTigran\nTommie\nTreyvon\nUziel\nVivek\nWaylon\nWilliams\nYair\nYash\nYusuf\nZain\nZaire\nZion\nAbdirahman\nAbisai\nAkeem\nAleczander\nAleksander\nAlondra\nAmanda\nAmilcar\nAndrei\nAnsel\nAnselmo\nArden\nAristotle\nArun\nAugusto\nBasilio\nBlade\nBlaze\nBo\nBodie\nBradlee\nBrandin\nBrandt\nBrant\nBretton\nBryton\nChadd\nCharly\nChauncey\nChong\nChristoph\nCipriano\nCisco\nClaude\nConrado\nCristo\nDanial\nDarby\nDeante\nDemitrius\nDiana\nDionicio\nDusten\nEber\nEliceo\nEmile\nEvin\nFue\nGaren\nGaret\nGarry\nGaspar\nGrigor\nHeber\nHosea\nHussein\nImran\nIsabel\nIsidoro\nJacinto\nJahaziel\nJalil\nJaspreet\nJeanluc\nJerell\nJereme\nJerico\nJerrell\nJessee\nJhonny\nJihad\nJimi\nJin\nJiovanni\nJody\nJomar\nJonnathan\nJonte\nJordin\nJr\nJuanmiguel\nJulia\nJuliocesar\nJullian\nKain\nKaren\nKawika\nKeagan\nKelby\nKhoa\nKiefer\nKimani\nKimberly\nKing\nKirkland\nKishan\nKoby\nKohl\nKyron\nLake\nLamonte\nLaura\nLenny\nLinus\nLowell\nLuisalberto\nLuisenrique\nMarcellus\nMartel\nMatteo\nMaximino\nMaynor\nMckinley\nMegan\nMelecio\nMerlin\nMichaelanthony\nMikhail\nMonica\nMontgomery\nNancy\nNapoleon\nNery\nNiklas\nNile\nNolberto\nOren\nPranav\nRajan\nRashaad\nRees\nRemi\nRemigio\nRenee\nRito\nRobby\nRoemello\nRonnell\nRosario\nRyker\nRyley\nSabino\nSagar\nSalman\nSandra\nSanjay\nSeanmichael\nSerjio\nShaan\nShae\nSoren\nStefano\nTaj\nTarek\nTarik\nTevita\nThien\nThong\nTorrey\nTory\nTrevion\nTuan\nUsman\nVahe\nValdemar\nVang\nVictormanuel\nVinay\nXzavier\nYuma\nAakash\nAce\nAdel\nAkil\nAkira\nAldrin\nAmandeep\nAmari\nAmmar\nAmrit\nAndrey\nAndrez\nAndrue\nAngello\nAnjel\nAnmol\nAnson\nAramis\nArie\nArmin\nArmon\nArmondo\nAshraf\nAshwin\nAtticus\nAvelardo\nAyrton\nAzeem\nBakari\nBarak\nBarrington\nBarron\nBaudelio\nBaxter\nBayron\nBennie\nBert\nBillie\nBlue\nBobbie\nBram\nBrandy\nBritton\nBrycen\nCaelin\nCalen\nCandido\nCarey\nCatherine\nChace\nCharlton\nCheyne\nChrist\nChristain\nChristiaan\nChristophe\nCj\nClarke\nCorwin\nCrescencio\nCrystian\nCyril\nDaisy\nDalvin\nDavaughn\nDawson\nDedrick\nDeepak\nDejuan\nDelbert\nDemetrious\nDeron\nDevlin\nDevonta\nDominque\nDupree\nEitan\nElan\nElio\nEliott\nElyjah\nEmmet\nEnrico\nEros\nEsaul\nEstefani\nEvelyn\nEverado\nFeliciano\nFeras\nFredi\nFroilan\nGabrielle\nGannon\nGaston\nGaven\nGavino\nGeordan\nGerry\nGevorg\nGianluca\nGibran\nGillermo\nGrabiel\nGray\nGregg\nGurtej\nHamilton\nHoang\nHovhannes\nHue\nHung\nIban\nIran\nIsaiha\nIssiah\nJacobb\nJacqueline\nJadon\nJael\nJagger\nJamin\nJarett\nJarid\nJarod\nJarren\nJayce\nJazmin\nJeancarlo\nJeanclaude\nJeanpierre\nJeremie\nJeric\nJerid\nJerrick\nJerron\nJian\nJobany\nJohnatan\nJohncarlo\nJonathen\nJonpaul\nJosejuan\nJosias\nJossue\nJozef\nJudd\nJules\nJuston\nKabir\nKalani\nKao\nKarapet\nKarlo\nKavin\nKenrick\nKeyshawn\nKhai\nKhyree\nKingston\nKodi\nKodiak\nKonnor\nKrishan\nKristen\nKush\nLavell\nLazarus\nLegend\nLemuel\nLenin\nLennon\nLibrado\nLucero\nLuisfernando\nMaalik\nMack\nMalcom\nMaleek\nMandeep\nManny\nMarion\nMarley\nMartine\nMarvyn\nMathias\nMckenzie\nMohit\nNadeem\nNarciso\nNatan\nNazario\nNewton\nNicco\nNicholes\nNickolaus\nOri\nOswald\nOtto\nOziel\nPaola\nPayam\nPaymon\nPetros\nRachel\nRegino\nRegis\nRhyan\nRichmond\nRobinson\nRondell\nRoshawn\nRoyer\nRubin\nRudolfo\nRussel\nRyon\nSandeep\nSandy\nSaxon\nScotty\nSerafin\nSharif\nSheridan\nSkylor\nStirling\nTam\nTaron\nTerell\nTin\nTong\nToua\nTravion\nTrayveon\nTylar\nTyquan\nTyrelle\nTyren\nTyshawn\nVahan\nValentine\nVentura\nVictoria\nVinny\nVivian\nWanya\nWillem\nXai\nYanni\nYehuda\nYoni\nZacary\nZacharia\nAamir\nAaren\nAaryn\nAbdullah\nAdonay\nAdrain\nAdriana\nAl\nAldrich\nAleksandar\nAlen\nAlexandar\nAlexys\nAlicia\nAlika\nAlix\nAlize\nAlphonso\nAmadeo\nAn\nAndranik\nAngelica\nAnirudh\nAnish\nAntonino\nArin\nAristeo\nAristides\nArmond\nAsad\nAsael\nAsim\nAskari\nAxl\nBaldemar\nBasil\nBernardino\nBinh\nBladimir\nBreon\nBrittany\nBroc\nBrogan\nBrysen\nBuddy\nCallum\nCanyon\nCary\nCayman\nCezar\nChang\nChas\nChet\nChistian\nChristan\nChristien\nCian\nCirilo\nCiro\nClancy\nCobi\nColeton\nCollen\nCordero\nCourtland\nCrispin\nCrystal\nCy\nCynthia\nDallen\nDamani\nDamaria\nDamen\nDanniel\nDarris\nDarron\nDarvin\nDaulton\nDaven\nDavide\nDavonta\nDavontay\nDawayne\nDaylan\nDayvon\nDejohn\nDemetris\nDeontae\nDerrell\nDeshun\nDimas\nDionisio\nDomenick\nDomonick\nDomonique\nDonato\nDonaven\nDonta\nDoyle\nDreshawn\nDuc\nDuran\nDustyn\nEamon\nEd\nEdin\nEdvin\nEian\nEleno\nEmigdio\nEmmitt\nEndy\nEneas\nEnoch\nEphraim\nEricson\nEris\nErnan\nEulalio\nFadi\nFaisal\nFernie\nFidencio\nFord\nFranz\nFrederic\nFroylan\nGabrial\nGaetano\nGagandeep\nGarth\nGelacio\nGeremy\nGiuliano\nGloria\nGriffen\nGus\nHarutun\nHasan\nHashim\nHenri\nHerminio\nHonorio\nHovanes\nHovsep\nHowie\nHuan\nIlan\nIman\nIrineo\nIsael\nIvory\nIzaac\nJabriel\nJacoby\nJacque\nJaedon\nJaelin\nJairus\nJameel\nJanet\nJarom\nJarrell\nJaspal\nJavion\nJaxon\nJaydon\nJaymes\nJayvon\nJaziel\nJazz\nJedediah\nJeramie\nJermiah\nJeromy\nJeron\nJerred\nJhonatan\nJhonathan\nJilberto\nJoeseph\nJohannes\nJohnpatrick\nJonmichael\nJonnie\nJosearmando\nJuanantonio\nJuanito\nJude\nJun\nJusto\nJuwan\nKainoa\nKamren\nKamryn\nKarla\nKaron\nKarsten\nKatherine\nKaylen\nKayne\nKean\nKeifer\nKeishawn\nKelton\nKendal\nKenta\nKeshav\nKiel\nKilian\nKion\nKraig\nLadarius\nLamberto\nLandin\nLauro\nLavelle\nLeng\nLinh\nLucus\nLuisfelipe\nLuka\nLupe\nMac\nManpreet\nManvir\nMarcellous\nMarciano\nMaritza\nMarkos\nMarlo\nMarquese\nMarsalis\nMartinjr\nMassimo\nMateen\nMathieu\nMaury\nMayra\nMccoy\nMehran\nMerrick\nMicahel\nMiller\nMina\nMizael\nMonroe\nMychal\nNadav\nNareg\nNarek\nNazar\nNethaniel\nNiall\nNikita\nNils\nNino\nNiraj\nNitin\nOdilon\nOmeed\nOseas\nOshea\nOsiris\nOvidio\nOzzy\nPadraic\nPayne\nPearce\nPeni\nPhu\nPierson\nPolo\nPrabhjot\nQuan\nQuenton\nRashaun\nRasheed\nRaven\nRavi\nRavneet\nRayshaun\nReymond\nRiccardo\nRicki\nRidge\nRodrick\nRoel\nRufino\nRufus\nRyne\nSaad\nSaeed\nSamvel\nSasha\nSatchel\nSaulo\nSedrick\nShad\nShadi\nShiv\nShmuel\nSiddharth\nSigifredo\nSilvio\nSimran\nSohrab\nSou\nStanton\nSteffen\nTadeh\nTal\nTalal\nTeagan\nTerin\nThatcher\nTien\nTj\nToney\nToni\nTracey\nTremaine\nTrentin\nTresean\nTRUE\nTrung\nTrustin\nTung\nTyran\nTyre\nTyrel\nUlyses\nVijay\nVinnie\nVong\nWallace\nWayde\nWei\nWendell\nWerner\nWesly\nWilbur\nWolfgang\nWoodrow\nXeng\nYannick\nYazan\nYing\nYobany\nYonah\nYonathan\nYoshio\nYusef\nZach\nZakariah\nZavier\nZayd\nZeferino\nDaniel\nJose\nMichael\nDavid\nChristopher\nAnthony\nAndrew\nJoshua\nMatthew\nJonathan\nJoseph\nChristian\nJacob\nNicholas\nBrandon\nKevin\nJuan\nRyan\nAlexander\nJustin\nLuis\nAustin\nTyler\nRobert\nJesus\nJohn\nEric\nBrian\nJames\nCarlos\nAngel\nWilliam\nMiguel\nAlejandro\nKyle\nSamuel\nAaron\nZachary\nSteven\nGabriel\nEduardo\nRichard\nJorge\nBenjamin\nAdrian\nJason\nJordan\nVictor\nOscar\nBryan\nJesse\nThomas\nFrancisco\nNathan\nRicardo\nCristian\nAntonio\nAdam\nSean\nEdgar\nAlex\nMark\nManuel\nDylan\nSergio\nCody\nCameron\nIsaac\nNoah\nOmar\nAndres\nTimothy\nIsaiah\nCesar\nMario\nFernando\nJavier\nIvan\nPatrick\nErik\nHector\nRoberto\nAlexis\nJeremy\nGerardo\nMartin\nEdward\nJeffrey\nJulian\nErick\nRaymond\nVincent\nRuben\nIan\nConnor\nCharles\nElijah\nMarco\nTrevor\nNathaniel\nAlan\nKenneth\nEvan\nPaul\nPedro\nRaul\nTristan\nJared\nJoel\nArmando\nJack\nEnrique\nJake\nRafael\nDiego\nAlberto\nPeter\nMarcus\nStephen\nLogan\nGeorge\nJulio\nJaime\nGarrett\nNicolas\nEthan\nMarcos\nArturo\nBlake\nSalvador\nEdwin\nAndy\nAlfredo\nJosue\nGiovanni\nHenry\nCaleb\nTravis\nAbraham\nDevin\nDerek\nGustavo\nChase\nFrank\nCole\nHunter\nDominic\nGregory\nSpencer\nJohnny\nScott\nAlec\nTaylor\nShane\nBradley\nLuke\nLucas\nGrant\nRamon\nEmmanuel\nBryce\nDanny\nMitchell\nTanner\nSaul\nJimmy\nWyatt\nErnesto\nIsrael\nIsmael\nAlbert\nMason\nSebastian\nDakota\nGuillermo\nAndre\nPablo\nJerry\nEsteban\nBrett\nDustin\nXavier\nMoises\nJohnathan\nShawn\nMalik\nPhillip\nRonald\nElias\nRiley\nFabian\nRodrigo\nDillon\nSteve\nCalvin\nRandy\nSeth\nJackson\nMax\nColin\nAlfonso\nTroy\nWesley\nDamian\nChad\nCorey\nJeremiah\nCasey\nHugo\nOsvaldo\nRene\nTony\nMaxwell\nColton\nArthur\nBrendan\nCollin\nLeonardo\nDevon\nRodolfo\nAllen\nLorenzo\nEddie\nMathew\nAbel\nDennis\nEmilio\nRicky\nKeith\nParker\nJoe\nRudy\nFelipe\nLiam\nBryant\nJonah\nCory\nHarrison\nLouis\nHayden\nDerrick\nPhilip\nGary\nMarc\nDonald\nJessie\nMarvin\nChandler\nJonathon\nGilberto\nRoman\nDrew\nMauricio\nGilbert\nNoe\nClayton\nRamiro\nAdan\nChance\nDouglas\nRogelio\nRoger\nSkyler\nGavin\nUriel\nConner\nDonovan\nEmanuel\nAidan\nJosiah\nCurtis\nDarren\nBailey\nEfrain\nLarry\nAlvaro\nKenny\nDalton\nTommy\nBrent\nAngelo\nHumberto\nLawrence\nFelix\nMiles\nTomas\nChris\nDante\nIgnacio\nMorgan\nLevi\nNolan\nOliver\nUlises\nBilly\nOctavio\nPreston\nJoaquin\nSantiago\nBranden\nKristopher\nSimon\nNickolas\nRussell\nNelson\nTrenton\nVicente\nZackary\nAgustin\nDominick\nMicah\nNoel\nWalter\nDean\nGriffin\nLeonel\nGage\nRigoberto\nGerman\nIsaias\nTristen\nDarius\nRoy\nAlvin\nJoey\nLance\nAllan\nAriel\nEzequiel\nJay\nNestor\nOwen\nEli\nOrlando\nBrenden\nJairo\nTheodore\nByron\nBobby\nMarlon\nDallas\nFreddy\nMike\nAdolfo\nKelvin\nFrederick\nTrent\nCharlie\nQuinn\nBernardo\nAli\nIssac\nKristian\nCarl\nMoses\nEstevan\nGonzalo\nRaymundo\nTy\nMyles\nTerry\nGuadalupe\nDamien\nIrvin\nBrady\nDrake\nEfren\nMalcolm\nAlfred\nCooper\nCraig\nFranklin\nJon\nRolando\nAvery\nBruce\nCarson\nDamon\nDeandre\nJalen\nKody\nTodd\nErnest\nKaleb\nNeil\nConor\nJakob\nQuentin\nRodney\nAldo\nCarter\nJohnathon\nLeonard\nNikolas\nAlonso\nJeffery\nMaurice\nMicheal\nRonnie\nSam\nBrennan\nCruz\nDane\nMarshall\nFidel\nLeo\nTristin\nZachery\nArnold\nRandall\nKameron\nLandon\nRoss\nAlonzo\nFrankie\nIsai\nJustice\nRay\nEzekiel\nSantos\nCristopher\nZachariah\nColby\nHeriberto\nMisael\nDavis\nJayson\nZane\nAlexandro\nElliot\nMarquis\nElmer\nNathanael\nUlysses\nZackery\nGregorio\nMelvin\nAmir\nDominique\nGerald\nJamal\nKai\nTyrone\nWilson\nBryson\nIsiah\nJerome\nTrey\nWeston\nJamie\nBrock\nEugene\nMaximilian\nMohammad\nGarret\nMarcel\nShaun\nHarold\nReginald\nWillie\nFrancis\nGeoffrey\nKent\nKyler\nLee\nRalph\nStanley\nEdgardo\nHernan\nJoseluis\nReynaldo\nWarren\nJunior\nOswaldo\nBeau\nBrayan\nCedric\nEmiliano\nIrving\nKeenan\nMateo\nQuinton\nBraulio\nDarryl\nEliseo\nElvis\nKeanu\nLouie\nTerrance\nDangelo\nJonatan\nKurtis\nLane\nCristobal\nDarrell\nLukas\nBenny\nForrest\nGraham\nJasper\nLeon\nMarcelo\nMaximiliano\nTrevon\nDerick\nDuncan\nFred\nJarrett\nSkylar\nStefan\nTucker\nAusten\nBraden\nBrendon\nDion\nElliott\nMiguelangel\nQuincy\nRoland\nSage\nArnulfo\nBenito\nCade\nCyrus\nDesmond\nGenaro\nGeovanni\nHarley\nJulius\nKarl\nMalachi\nMilton\nRick\nAntony\nDemetrius\nJovanny\nKurt\nBen\nDeshawn\nJim\nReid\nValentin\nWade\nAron\nCarlo\nDorian\nGiovanny\nIsidro\nJonas\nKeegan\nKendall\nClaudio\nDarian\nGino\nMarcelino\nSheldon\nTerrence\nBrody\nClay\nEverardo\nFredy\nJovani\nJuancarlos\nKelly\nKhalil\nKieran\nSonny\nWalker\nAshton\nDevante\nEddy\nGlenn\nJovany\nOsbaldo\nReed\nDan\nDarnell\nDon\nGordon\nKen\nLeopoldo\nMarkanthony\nNick\nNorman\nReuben\nRobin\nRory\nTerrell\nTriston\nClarence\nConrad\nDario\nWayne\nAhmad\nBernard\nBrad\nBrayden\nClifford\nDeangelo\nDonte\nGiovani\nJarred\nMohamed\nSawyer\nSterling\nStuart\nWinston\nDeion\nFederico\nFlavio\nHarry\nJohnson\nKellen\nKeven\nKory\nRaphael\nAxel\nDavion\nDevan\nEzra\nJefferson\nKendrick\nLamar\nLuiz\nMackenzie\nDale\nDeon\nJessy\nKeaton\nKennedy\nQuintin\nAdalberto\nAhmed\nAri\nBrandan\nDeven\nFredrick\nJovanni\nMaximillian\nSolomon\nStephan\nBruno\nJacky\nLewis\nTylor\nTyree\nTyson\nAbelardo\nArman\nAurelio\nBrennen\nDevonte\nEleazar\nErnie\nGlen\nGuy\nJavon\nJeff\nJohnpaul\nLucio\nMarcoantonio\nMarquise\nRoyce\nSidney\nHoracio\nMarques\nPierce\nTobias\nToby\nZechariah\nBret\nChaz\nDamion\nDarin\nEverett\nGeovanny\nHoward\nJulien\nKian\nLamont\nMarkus\nNigel\nRashad\nSammy\nAbram\nAntoine\nCorbin\nDarwin\nDevyn\nEarl\nEdson\nEloy\nGerson\nJaden\nJordon\nMohammed\nNiko\nOrion\nRiver\nShayne\nAdonis\nCeasar\nDavon\nDenzel\nFavian\nFreddie\nHerman\nJovan\nKasey\nLazaro\nLeobardo\nMariano\nNico\nParis\nRey\nRohan\nSemaj\nAddison\nAdrien\nAnton\nDaryl\nDeshaun\nEriberto\nGiancarlo\nGrayson\nHilario\nHudson\nJosef\nKirk\nMauro\nNeal\nNikhil\nQuinten\nReyes\nRickey\nRoderick\nRosendo\nSamson\nTerence\nTravon\nTyrell\nAndreas\nArmen\nBill\nBrandyn\nClark\nClinton\nErwin\nGarrison\nJackie\nJaron\nJaylen\nPierre\nReymundo\nRichie\nRomeo\nSunny\nTate\nTevin\nTristian\nVance\nVidal\nAiden\nAlden\nArgenis\nArmand\nArnoldo\nArron\nAustyn\nBrenton\nCaden\nChasen\nClemente\nDandre\nDarion\nDayton\nDerian\nErin\nHans\nIbrahim\nJean\nJermaine\nJimmie\nJohnnie\nLionel\nLuciano\nPerry\nReese\nRocky\nVladimir\nAbner\nArmani\nAsher\nBennett\nBlaine\nEmerson\nFermin\nGreyson\nJarrod\nLuca\nMarcello\nMitchel\nNathanial\nPeyton\nRon\nRudolph\nSami\nSantino\nStone\nTom\nAdriel\nAugustine\nBarry\nDashawn\nDejon\nDillan\nEmmett\nFausto\nGene\nHolden\nJamar\nJustus\nKaden\nKolby\nReece\nShannon\nTou\nAlexandre\nAmador\nAnderson\nAugust\nBraxton\nCamden\nCoby\nColeman\nDana\nDarien\nDwayne\nElisha\nErvin\nEsau\nEsequiel\nForest\nFranco\nGarett\nGaspar\nGrady\nGreg\nJace\nJair\nJarod\nJayden\nJelani\nMaverick\nReilly\nRemy\nRonny\nTed\nTimmy\nTrinidad\nWill\nYonatan\nAric\nArjun\nBradford\nCaesar\nClint\nColt\nDeonte\nEdwardo\nEllis\nGunnar\nHakeem\nHugh\nJameson\nJerald\nKahlil\nKeshawn\nKristofer\nObed\nPhoenix\nRex\nShayan\nAjay\nBlair\nDanilo\nDexter\nDominik\nEdmund\nEsai\nGalen\nGiovany\nHerbert\nIsaak\nJess\nJustyn\nJuvenal\nLaurence\nLeroy\nLeslie\nLino\nMickey\nPayton\nSamir\nShelby\nSilvestre\nThaddeus\nAlessandro\nAngus\nAram\nBrice\nClyde\nCullen\nDarrin\nDenny\nDwight\nIsac\nJamil\nJennifer\nJerardo\nJusten\nJuwan\nKade\nKalvin\nKane\nLloyd\nMarcell\nMuhammad\nNery\nNikko\nReno\nRhett\nSeamus\nShea\nSky\nSyed\nWilfredo\nAris\nArtemio\nBronson\nBrooks\nCheyenne\nDawson\nDimitri\nDomingo\nGabino\nGerard\nGildardo\nHassan\nIrwin\nJamison\nJayce\nJaylin\nJorden\nJoshue\nKareem\nKorey\nLonnie\nMaria\nMatias\nPete\nSilas\nSimeon\nStephon\nTalon\nTitus\nYusuf\nAbdul\nAditya\nAkshay\nAria\nArian\nAsa\nColten\nDallin\nDavonte\nFranky\nGeovany\nGil\nJasen\nJaylon\nKelsey\nKhalid\nKimberly\nLeland\nLester\nLuc\nMarquez\nNeftali\nNehemiah\nNorberto\nOtto\nPaulo\nRomario\nSpenser\nTre\nAbrahan\nAlek\nAnders\nAnibal\nBaron\nBrycen\nCamron\nCuauhtemoc\nDave\nDavin\nDomenic\nFaustino\nGenesis\nGeovani\nGianni\nHakop\nHomero\nJabari\nJade\nJan\nJered\nJosemanuel\nJuanmanuel\nKaran\nLayne\nLoren\nLucky\nMadison\nMahmoud\nMaximo\nMilan\nMinh\nMissael\nMyron\nNatanael\nNathen\nOmari\nOtis\nPaolo\nRefugio\nRyley\nStefano\nTim\nVaughn\nVince\nVishal\nWilmer\nYobani\nAlain\nAldair\nAmeer\nBaltazar\nBarrett\nBilal\nBoris\nBradly\nCandelario\nCanyon\nCassidy\nChristofer\nCristofer\nDaquan\nDarrion\nDaylon\nDeric\nDino\nDonavan\nDraven\nElton\nEver\nFiliberto\nFredi\nJeffry\nJob\nJosemaria\nJosias\nKamron\nKeoni\nKeyshawn\nKordell\nLaron\nLars\nMargarito\nMikel\nMilo\nNikolai\nParth\nRahul\nRaymon\nReggie\nRico\nStephanie\nStewart\nTai\nTarik\nTrever\nTyus\nValentino\nVernon\nVikram\nWestley\nWilly\nYonathan\nYousef\nAkash\nAleksander\nAmado\nAmin\nArchie\nArt\nArya\nAshley\nBraeden\nBrando\nBrant\nCamilo\nCampbell\nDajon\nDanniel\nDarrien\nDeclan\nDonnie\nDontae\nDuane\nEden\nEder\nGeronimo\nGunner\nHiram\nHubert\nIain\nIsacc\nIshmael\nIsreal\nJamaal\nJaskaran\nJessi\nJoseangel\nJosedejesus\nJustis\nKevyn\nLanden\nLondon\nMack\nMarshawn\nMaximino\nMckenzie\nMikael\nMontana\nNahum\nNicky\nPascual\nRian\nRonaldo\nRyder\nSalvatore\nSantana\nSarkis\nSasha\nShant\nSherman\nTariq\nTheo\nTracy\nTreyvon\nTruman\nTyrus\nZakary\nAndrei\nAren\nAuston\nBenson\nBlaise\nBowen\nBroderick\nCandido\nCodey\nDagoberto\nDaveon\nDereck\nDonavon\nEan\nElvin\nEmil\nEsdras\nHagop\nImani\nJamel\nJaren\nJaycob\nJohan\nJohannes\nJordi\nJordy\nJoseantonio\nJosh\nJuventino\nKaelan\nKainoa\nKeon\nKhristian\nKoby\nKolton\nKong\nKou\nKristoffer\nLincoln\nMarcanthony\nMarkell\nMarty\nMenachem\nMustafa\nNash\nNikolaus\nPorfirio\nRaudel\nRhys\nRobbie\nRoyal\nSalomon\nShaquille\nThien\nTrace\nTrayvon\nTrystan\nUlyses\nVincente\nWilber\nWilliams\nYovani\nZack\nAbdullah\nAbimael\nAlfonzo\nAlphonso\nAlton\nAntwan\nArmon\nBladimir\nBrandin\nBraydon\nCain\nCale\nCallum\nCedrick\nCharley\nChauncey\nCobi\nCourtney\nDakotah\nDeante\nDemetrio\nDenis\nDerrek\nDestin\nDijon\nDylon\nEdmond\nEliot\nEnoch\nEnrico\nErasmo\nErnan\nEugenio\nEusebio\nFrancesco\nGer\nHarvey\nHeath\nIzaiah\nJavonte\nJedidiah\nJerad\nJerrod\nJessica\nJiovanni\nJoan\nJohann\nJuanjose\nKarim\nKevon\nKeyon\nKillian\nKole\nKris\nKyree\nLake\nLenin\nLong\nLyle\nManny\nMichaelanthony\nMichel\nMohamad\nNajee\nOsama\nRaheem\nRasheed\nRigo\nRodrick\nRueben\nSaad\nSabino\nSachin\nSahil\nSebastien\nShae\nShiloh\nShivam\nSilverio\nSoren\nStevie\nTayler\nTeddy\nUlisses\nVan\nWaleed\nAbisai\nAbran\nAmar\nAmilcar\nAndrea\nArmaan\nAshwin\nAugustus\nBo\nCecil\nCheng\nChet\nDaron\nDarrian\nDavante\nDemarcus\nDewayne\nDiamond\nDomonic\nDonnell\nDusty\nEdison\nEdvin\nElan\nEriq\nFabio\nFlorencio\nFlorentino\nFloyd\nFroylan\nGannon\nGaret\nHamza\nHouston\nHuy\nJadon\nJaleel\nJamari\nJaquan\nJasmine\nJaxon\nJerred\nJett\nJosafat\nJuanpablo\nJullian\nKalen\nKamal\nKhang\nKim\nLeandre\nManjot\nMarko\nMarlo\nMaxim\nMaxx\nMaynor\nMelissa\nMigel\nMikey\nModesto\nMoshe\nNader\nOmer\nOsiris\nPheng\nQuinlan\nRajan\nRamses\nRamsey\nReagan\nRohit\nRosalio\nRowan\nRylan\nSal\nScottie\nServando\nShay\nShon\nSilvano\nSkye\nSydney\nSylvester\nTheron\nTravion\nTrung\nTryston\nTyron\nVanessa\nVinh\nYovany\nZaire\nAbdiel\nAlen\nAlexi\nAlijah\nAlondra\nAmari\nAmit\nAmmon\nAnastacio\nAnthoney\nAristeo\nArnel\nArvin\nAsante\nBenigno\nBijan\nBradlee\nBrandt\nCecilio\nCelso\nChazz\nCordell\nCormac\nCornelius\nCorwin\nDaisy\nDaren\nDarrick\nDemitri\nDesean\nDominque\nEdgard\nEdmundo\nEliezer\nEnzo\nEsgar\nFinn\nFransisco\nGareth\nGaven\nGerry\nGian\nGibran\nGiuseppe\nGorge\nHamilton\nHarout\nHarris\nIban\nImmanuel\nIsael\nJakari\nJamon\nJarvis\nJeanpaul\nJeramiah\nJericho\nJoeseph\nJosejuan\nJudah\nJude\nKao\nKeane\nKeelan\nKenji\nKenyon\nKevan\nKhoa\nLauro\nLuisenrique\nMarcial\nMarkel\nMaxfield\nMichelle\nNabil\nNeema\nNicklaus\nOren\nRaj\nRami\nRaven\nRemington\nRenee\nRomel\nRomello\nRony\nRylee\nSagar\nSaxon\nSina\nTarek\nTito\nTory\nTrevin\nUlices\nVinson\nWylie\nYash\nYuki\nZayne\nZion\nAden\nAdriano\nAlexzander\nAlon\nAman\nAmos\nAmrit\nAnjel\nAnkit\nAnselmo\nApolonio\nArash\nArlen\nAsael\nAtticus\nBenedict\nBernabe\nBoston\nBriant\nBryon\nChace\nCris\nCrispin\nCristhian\nDakoda\nDameon\nDarrel\nDashiell\nDayne\nDayvon\nDelfino\nDemario\nDemetri\nDerik\nDillion\nDuke\nDustyn\nDyllan\nEaston\nEladio\nElder\nEnrrique\nErich\nEron\nEvaristo\nFaisal\nFletcher\nFranciscojavier\nGarry\nGeraldo\nGiorgio\nGrey\nGrigor\nGustabo\nHank\nHarjot\nHarpreet\nHasan\nHeber\nIman\nIran\nIvory\nJai\nJalil\nJarek\nJaspreet\nJawan\nJayro\nJazmin\nJeanluc\nJeanpierre\nJed\nJerrick\nJoshuah\nJuanantonio\nJuliocesar\nKaelen\nKaelin\nKamran\nKavon\nKazuki\nKeion\nKirby\nKonnor\nKonrad\nLavell\nLeandro\nLemuel\nLeng\nLevon\nLisandro\nLucien\nLuigi\nLuisangel\nMalique\nMeng\nMerrick\nMichaelangelo\nMichal\nMontel\nMykel\nMynor\nNabeel\nNavid\nNevin\nNicolai\nNima\nOcean\nOmid\nOskar\nParsa\nPavel\nPolo\nRaffi\nRandolph\nRashid\nRayan\nRio\nRitchie\nRoosevelt\nRoque\nRosario\nSchuyler\nSelvin\nShahin\nShai\nShelton\nSherwin\nStorm\nSuraj\nTaj\nThai\nThanh\nTino\nTurner\nUbaldo\nVahe\nValente\nValentine\nVarun\nWaylon\nWiley\nYair\nAbe\nAbelino\nAce\nAdin\nAmer\nAnfernee\nAnirudh\nAntoni\nAntonino\nArik\nAryan\nAryeh\nAubrey\nAugustin\nAyden\nAyrton\nAzael\nBasil\nBee\nBernie\nBob\nBrannon\nBranson\nBrodie\nCannon\nCarlton\nCary\nCha\nCheyne\nChistopher\nChristina\nCian\nCodi\nColeton\nCyle\nDemarco\nDeontae\nDequan\nDesi\nDevaughn\nDimas\nDionte\nDonaven\nDontay\nDupree\nEarnest\nEliel\nElizabeth\nEly\nEmile\nEmily\nEros\nEsteven\nFrederic\nFue\nGagandeep\nGamaliel\nGarrick\nGavino\nGevork\nGiacomo\nGibson\nGreggory\nGriffen\nGurpreet\nHasani\nHenri\nHipolito\nHovanes\nHussein\nIlan\nIndiana\nIra\nIsaih\nJacqueline\nJacques\nJayvon\nJerson\nJevon\nJhonathan\nJhonny\nJoesph\nJohnatan\nJohnjoseph\nJohnmichael\nJonnathan\nJordin\nJorgeluis\nJory\nJourdan\nJovon\nJoy\nJson\nJuanluis\nJuaquin\nJustine\nKain\nKaine\nKalani\nKanan\nKaren\nKarlo\nKelton\nKenyatta\nKerry\nKesean\nKhari\nKiante\nKiefer\nKiran\nKishan\nKollin\nKush\nLatrell\nLex\nLuisalberto\nLuther\nLyndon\nMagdaleno\nMaleek\nMaliek\nMarck\nMarquel\nMarsalis\nMathias\nMatthias\nMaurilio\nMaurisio\nMayra\nMel\nMichale\nMihir\nMikal\nMiller\nMitch\nNatalie\nNavjot\nNazario\nNicholaus\nNicolaas\nNicolaus\nOsmar\nOtoniel\nPhil\nPhong\nPorter\nQuin\nRaekwon\nRakan\nRaleigh\nRandal\nRandell\nRashaad\nRavi\nRayshawn\nReinaldo\nRenato\nRenzo\nRishi\nRito\nRobby\nRoel\nRufino\nSai\nSalman\nSamantha\nSamer\nScotty\nSerjio\nSilvino\nStanton\nTaha\nTam\nTavion\nTeo\nTerren\nThong\nTristyn\nTustin\nTyren\nUriah\nUvaldo\nVictormanuel\nVincenzo\nVinny\nWillem\nYoel\nYoseph\nZakery\nAamir\nAdnan\nAj\nAkeem\nAkira\nAl\nAleksandr\nAlexei\nAmen\nAndranik\nAndrey\nAnkur\nAnthonie\nAnwar\nApolinar\nArcadio\nAries\nArin\nArlo\nAsad\nAshish\nAsim\nBasilio\nBaudelio\nBaylee\nBernardino\nBrandy\nBrayton\nCameren\nCanaan\nCarey\nCash\nCayden\nCesareo\nChadwick\nChancellor\nChe\nChristiaan\nChristianjames\nChriston\nChristoper\nChristophe\nChrystian\nCiaran\nClement\nClifton\nCodie\nConstantino\nCorin\nCortez\nCourtland\nCoy\nCristo\nCristoval\nCuahutemoc\nCyril\nDaijon\nDajohn\nDajuan\nDalvin\nDamani\nDanielle\nDarrius\nDarryn\nDeanthony\nDeepak\nDejuan\nDemetrious\nDemitrius\nDenver\nDeondre\nDerrell\nDevonta\nDionicio\nDonaldo\nDonny\nEdric\nEligio\nElihu\nEmery\nEmmet\nEvin\nFranz\nFroilan\nGarren\nGaston\nGaurav\nGideon\nGiovannie\nGray\nGregor\nGurtej\nHaig\nHaik\nHaley\nHan\nHansel\nHerson\nHosea\nHovsep\nIsmail\nIsrrael\nIssa\nIzaac\nJabril\nJacinto\nJacobo\nJacoby\nJameel\nJamir\nJarid\nJarret\nJarron\nJase\nJashua\nJasmin\nJasson\nJaycee\nJayke\nJayme\nJaysen\nJedediah\nJensen\nJeramy\nJeremias\nJeronimo\nJessee\nJhovany\nJihad\nJimi\nJjesus\nJohny\nJomar\nJomari\nJordyn\nJorje\nJosede\nJusto\nKacey\nKalan\nKaranveer\nKarson\nKc\nKeandre\nKee\nKendal\nKeng\nKenrick\nKenton\nKhaled\nKimani\nKing\nKobe\nKonner\nKrishan\nKunal\nKyrie\nLaquan\nLuisantonio\nLuisfernando\nMacario\nMalek\nManolo\nMarisol\nMarley\nMarquan\nMarquese\nMarqus\nMartel\nMathieu\nMckinley\nMicaiah\nMikhail\nMisha\nMister\nMong\nMontgomery\nNabor\nNam\nNapoleon\nNarciso\nNasser\nNeel\nNewton\nNickolaus\nNikita\nNiklas\nNixon\nNoa\nNolberto\nOshea\nOsiel\nPalmer\nPao\nPhilippe\nPranav\nPrince\nQuang\nQuest\nRashawn\nReymond\nRich\nRickie\nRobinson\nRocco\nRojelio\nRommel\nRondell\nRudolfo\nRussel\nRyne\nSabas\nSaige\nSameer\nSammuel\nSandro\nSaulo\nSeng\nShadi\nShemar\nSinjin\nSotero\nStacy\nTal\nTaran\nTaryn\nTevita\nTevon\nTien\nTigran\nTimmothy\nTimoteo\nTommie\nTorin\nTrae\nTrenten\nTye\nTyquan\nTyre\nTyrik\nTyrique\nUmar\nVentura\nViet\nVijay\nVivek\nWanya\nWestin\nWilbert\nYee\nYobany\nYonah\nYosef\nYoung\nYoussef\nYuta\nZain\nZaul\nZavier\nZeferino\nAbdulrahman\nAdham\nAdryan\nAkil\nAleck\nAleczander\nAlejandra\nAmeen\nAnand\nAndrez\nAndru\nAnh\nAnish\nAnson\nAntone\nAntwon\nArie\nAristotle\nArsenio\nAtilano\nAugusto\nAundre\nAureliano\nAydan\nAyinde\nBaby\nBabyboy\nBarak\nBayley\nBayron\nBelal\nBenjamen\nBennie\nBlade\nBlayne\nBradon\nBrain\nBrenda\nBrendyn\nBrennon\nCaelan\nCairo\nCal\nCarlin\nCarmelo\nCase\nCesario\nChistian\nChrist\nChristain\nChristan\nChristen\nChristien\nChristin\nChristoph\nCipriano\nCisco\nCj\nCorban\nCornelio\nCortland\nCosme\nCoty\nCrisanto\nCrystal\nCurt\nCy\nCynthia\nDaevon\nDaichi\nDain\nDamar\nDamen\nDanial\nDanyal\nDarek\nDarell\nDarron\nDavit\nDavontae\nDelano\nDelbert\nDelon\nDemian\nDemond\nDemonte\nDeron\nDerrik\nDeshon\nDezmond\nDiondre\nDirk\nDomonick\nDomonique\nDonavin\nDondre\nDonta\nDyllon\nEdan\nEdrick\nEdsel\nEdwing\nElbert\nEliott\nEliud\nElpidio\nEmad\nEmigdio\nEmin\nEmmanuelle\nEmmitt\nEnoc\nErrick\nErrol\nEryk\nEstuardo\nEswin\nEtienne\nEulalio\nFavio\nFerdinand\nFernie\nFisher\nFlabio\nFong\nFord\nFox\nFrancois\nGabriela\nGautam\nGeary\nGeno\nGeorges\nGerrit\nGianfranco\nGraeme\nGriffith\nGumaro\nHai\nHamid\nHamzah\nHaris\nHarman\nHazael\nHeliodoro\nHendrik\nHenrry\nHerminio\nHezekiah\nHiginio\nHovhannes\nHumza\nHung\nIdris\nJaccob\nJaciel\nJad\nJagger\nJahaziel\nJahlil\nJairus\nJajuan\nJalin\nJamarr\nJansen\nJarad\nJarrell\nJarren\nJarrid\nJasiel\nJavin\nJavion\nJawad\nJaylan\nJaymes\nJeancarlo\nJehu\nJens\nJeovanny\nJerel\nJereme\nJeremey\nJeric\nJerico\nJerimiah\nJerman\nJerold\nJeromy\nJeshua\nJessey\nJhonatan\nJhovanny\nJin\nJoab\nJobani\nJobany\nJohathan\nJonathen\nJonny\nJoon\nJoseandres\nJosecarlos\nJossue\nJourney\nJozef\nJuandaniel\nJules\nJulia\nJun\nJustinmichael\nJuston\nKaiden\nKale\nKalob\nKanyon\nKaranvir\nKarsten\nKaylon\nKayvon\nKean\nKenan\nKennith\nKento\nKeonte\nKeshon\nKeyan\nKhanh\nKhristopher\nKia\nKiernan\nKijana\nKoa\nKobie\nKodi\nKrikor\nKrystian\nKwame\nKyan\nKye\nKyron\nLaine\nLaith\nLeif\nLennon\nLenny\nLinus\nLuka\nMaceo\nMahad\nMakai\nMandeep\nManpreet\nManraj\nMarcellus\nMarcelus\nMarek\nMariana\nMarin\nMarino\nMarlin\nMarshal\nMayson\nMelik\nMerlin\nMonica\nMontrell\nMusa\nNaim\nNareg\nNarek\nNate\nNathaneal\nNeiman\nNels\nNhia\nNicklas\nNicodemus\nNile\nNoble\nObadiah\nOmero\nOsmin\nPatric\nPatricio\nPaulino\nPerris\nPresley\nPrithvi\nQuan\nRace\nRahim\nRashaun\nRayce\nRaymund\nRaynard\nRees\nRegan\nRegino\nRiku\nRishabh\nRocio\nRodger\nRomar\nRomero\nRomulo\nRyker\nRyland\nRyon\nSaeed\nSaid\nSalim\nSalome\nSandeep\nSarah\nSerafin\nSerge\nSevag\nSevan\nShad\nShahab\nShain\nShakur\nShamon\nShaquan\nSharif\nSheridan\nShervin\nSilvio\nSimran\nSixto\nSlater\nStefen\nStetson\nSue\nSullivan\nSumeet\nSylas\nTad\nTaron\nTeng\nTerell\nTorrance\nTorrey\nToua\nTracey\nTravonte\nTreshawn\nTri\nTrystin\nTuan\nTyrin\nTyrrell\nTyshawn\nUsman\nUziel\nValerio\nVartan\nVasilios\nVicent\nVictoriano\nVictorio\nVinay\nVinnie\nVirgil\nVito\nWalid\nWendell\nWendy\nWesly\nWilfred\nWolfgang\nYael\nYoni\nYousif\nYovanny\nYuji\nYusef\nZak\nZayd\nZeus\nZev\nZiad\nDaniel\nMichael\nJose\nAnthony\nDavid\nChristopher\nAndrew\nMatthew\nJonathan\nJacob\nJoshua\nJoseph\nBrandon\nNicholas\nChristian\nKevin\nLuis\nRyan\nJuan\nAlexander\nJustin\nJesus\nAustin\nTyler\nJohn\nAngel\nJames\nRobert\nCarlos\nBrian\nEric\nKyle\nWilliam\nSamuel\nAlejandro\nMiguel\nZachary\nGabriel\nAaron\nJordan\nJason\nSteven\nAlexis\nAdrian\nBenjamin\nBryan\nFrancisco\nRichard\nOscar\nJorge\nJesse\nEduardo\nNathan\nVictor\nRicardo\nThomas\nDylan\nAdam\nNoah\nAntonio\nIsaac\nFernando\nAlex\nCameron\nSean\nIsaiah\nMark\nManuel\nAndres\nEdgar\nCristian\nIvan\nSergio\nJavier\nTimothy\nCesar\nEthan\nJulian\nMario\nDiego\nOmar\nHector\nJeremy\nEdward\nRoberto\nErik\nJared\nConnor\nMartin\nElijah\nNathaniel\nPatrick\nEvan\nCody\nMarco\nJeffrey\nRuben\nCharles\nErick\nRaymond\nJack\nArmando\nTrevor\nVincent\nIan\nPaul\nGerardo\nJake\nRaul\nJoel\nCole\nAlberto\nPedro\nLogan\nEnrique\nKenneth\nNicolas\nAlan\nDominic\nGeorge\nGarrett\nHenry\nRafael\nPeter\nAndy\nMarcos\nDevin\nCaleb\nTravis\nMarcus\nSalvador\nArturo\nBlake\nAbraham\nSpencer\nJaime\nStephen\nEdwin\nJosue\nSaul\nHunter\nJulio\nScott\nChase\nGregory\nGiovanni\nDerek\nAlfredo\nTristan\nFrank\nGustavo\nTanner\nLuke\nGrant\nEmmanuel\nJeremiah\nErnesto\nMason\nShane\nIsrael\nLucas\nSebastian\nJohnny\nTaylor\nBryce\nMitchell\nAlec\nPablo\nBradley\nRiley\nWyatt\nRamon\nElias\nDanny\nXavier\nJimmy\nJackson\nAlbert\nFabian\nAbel\nGavin\nGuillermo\nMoises\nBrendan\nMaxwell\nDakota\nAndre\nSeth\nCalvin\nJohnathan\nShawn\nIsmael\nMax\nBrett\nDustin\nJerry\nEsteban\nColin\nMalik\nRandy\nDamian\nPhillip\nChad\nDillon\nRonald\nDevon\nWesley\nLeonardo\nRodrigo\nLiam\nHugo\nEmilio\nAlfonso\nArthur\nCollin\nHarrison\nRene\nSteve\nMathew\nJoe\nParker\nTony\nJonah\nLorenzo\nCasey\nMarc\nTroy\nAidan\nDennis\nLouis\nBailey\nEddie\nAllen\nBryant\nNoe\nRicky\nColton\nFelipe\nOsvaldo\nCorey\nTommy\nJonathon\nMauricio\nMarvin\nDonovan\nRoman\nRudy\nPhilip\nMiles\nAngelo\nClayton\nRogelio\nEmanuel\nFelix\nGriffin\nKeith\nDante\nDrew\nRodolfo\nDonald\nJosiah\nCory\nConner\nGilbert\nGilberto\nNolan\nSantiago\nHayden\nJessie\nVicente\nDalton\nDouglas\nOliver\nChance\nJakob\nPreston\nRamiro\nCurtis\nSkyler\nAdan\nDarren\nLevi\nChris\nHumberto\nLawrence\nDerrick\nUriel\nNoel\nSimon\nFreddy\nBrent\nDominick\nMicah\nTomas\nEfrain\nGary\nKenny\nRoger\nOwen\nAllan\nAlvaro\nChandler\nTrenton\nLarry\nTheodore\nAgustin\nBranden\nQuinn\nCarter\nIssac\nMorgan\nRussell\nAlvin\nUlises\nRoy\nJoaquin\nWalter\nDean\nNickolas\nJay\nGage\nNikolas\nRigoberto\nTrent\nKristopher\nDarius\nMarlon\nIgnacio\nBrenden\nEzequiel\nJoey\nOrlando\nAldo\nBilly\nGerman\nZackary\nAdolfo\nNelson\nBrady\nBrennan\nEli\nEstevan\nMike\nLeonel\nByron\nCharlie\nGonzalo\nMyles\nQuentin\nTy\nDamien\nOctavio\nDrake\nKristian\nLance\nAli\nTristen\nAvery\nCarson\nCooper\nIrvin\nMisael\nIsaias\nJairo\nNestor\nKaleb\nMicheal\nBobby\nLeo\nMoses\nAlonzo\nDallas\nJayson\nRolando\nColby\nAlonso\nAriel\nBernardo\nCraig\nKameron\nConor\nCruz\nEzekiel\nKai\nLandon\nMateo\nSam\nZachariah\nBraden\nDominique\nJustice\nDamon\nDavis\nIsiah\nJeffery\nEfren\nJovanny\nKody\nRay\nRonaldo\nCarl\nNeil\nUlysses\nEugene\nGerald\nJarod\nJon\nKelvin\nMaurice\nAlexandro\nJohnathon\nZane\nAlfred\nDeandre\nDuncan\nFrankie\nCristopher\nDesmond\nSage\nTerry\nBrendon\nFranklin\nGiovanny\nMelvin\nRodney\nBruce\nFidel\nLukas\nRaymundo\nZachery\nMarshall\nCedric\nErnest\nGuadalupe\nMalcolm\nDane\nElmer\nFrancis\nRandall\nRonnie\nStanley\nBryson\nKeenan\nWeston\nKyler\nGlenn\nHeriberto\nRomeo\nShaun\nEdgardo\nEliseo\nEmiliano\nLeon\nMaximilian\nMaximiliano\nOswaldo\nTodd\nValentin\nAmir\nAron\nElliot\nEzra\nJamal\nMarquis\nSantos\nSolomon\nBrayan\nBrock\nIsai\nJalen\nJulius\nRalph\nSkylar\nCyrus\nDarian\nIsidro\nTrevon\nWarren\nAshton\nBenito\nKeven\nLeonard\nMiguelangel\nMohammad\nReed\nStephan\nZackery\nArnold\nElvis\nFrederick\nGenaro\nGregorio\nKeaton\nMohammed\nSammy\nCristobal\nDario\nGarret\nGrayson\nJarred\nJarrett\nJonas\nMalachi\nMarkanthony\nNathanael\nReginald\nRiver\nTrey\nWillie\nAusten\nHarry\nJoseluis\nLouie\nArman\nDeven\nKendrick\nStefan\nWilson\nAntony\nJamie\nKurt\nLane\nGianni\nJunior\nPeyton\nDeshawn\nDorian\nEverett\nKobe\nLee\nReynaldo\nTristin\nDemetrius\nForrest\nGeovanni\nJefferson\nKhalil\nQuincy\nRoss\nSterling\nTerrance\nAxel\nFred\nHarley\nKarl\nDarrell\nFredy\nGino\nJasper\nOsbaldo\nTerrell\nAhmad\nBraulio\nBrody\nMarcoantonio\nMilton\nQuinton\nTucker\nWayne\nAntoine\nBen\nBenny\nDarryl\nHoward\nIrving\nJace\nJovany\nTriston\nCarlo\nClay\nDan\nHarold\nJerome\nMarcelo\nMarkus\nRohan\nTyrone\nBeau\nDevan\nGeoffrey\nJacky\nJovani\nKeegan\nKendall\nKirk\nNorman\nQuintin\nTyson\nBennett\nBruno\nDevante\nElliott\nEverardo\nFreddie\nGraham\nHernan\nJovan\nKent\nMarcel\nMariano\nMarquise\nRaphael\nRick\nRory\nTerrence\nTyree\nWalker\nCade\nDion\nGiovani\nJordon\nKen\nArnulfo\nBrayden\nClifford\nDeon\nGordon\nJovanni\nJuancarlos\nKurtis\nMaximillian\nPierce\nReid\nCorbin\nErnie\nJarrod\nJayden\nRoland\nAhmed\nDale\nDangelo\nEdson\nFederico\nJulien\nRobin\nTylor\nBrad\nEriberto\nJaron\nNigel\nSidney\nAdrien\nArmand\nClaudio\nColeman\nConrad\nDarin\nDevonte\nKelly\nNico\nReece\nReuben\nShea\nStuart\nSunny\nWade\nDejon\nDonte\nDwayne\nEddy\nHolden\nKennedy\nKian\nLisandro\nLuisangel\nMohamed\nSheldon\nAugustine\nBill\nCaden\nDavion\nDenzel\nFavian\nJackie\nJessy\nKeanu\nMarcelino\nOrion\nSamir\nSawyer\nSonny\nWill\nWinston\nAbram\nAugust\nBernard\nBrennen\nClinton\nDevyn\nDon\nFermin\nFlavio\nJeff\nJonatan\nKristofer\nLewis\nRashad\nRey\nShannon\nAlexandre\nAndreas\nDarnell\nDavon\nHarvey\nJim\nJohnnie\nMitchel\nNick\nRickey\nRoderick\nBarry\nClarence\nDaryl\nEarl\nElisha\nEllis\nErwin\nGunnar\nIsaak\nJaylen\nJohan\nKareem\nKieran\nMackenzie\nMarques\nReyes\nSantino\nToby\nVladimir\nBret\nDarwin\nDavin\nDeangelo\nGuy\nHassan\nHerman\nKaden\nKasey\nLuciano\nMauro\nNathen\nNikhil\nRahul\nTobias\nTom\nAiden\nAlessandro\nArmani\nClark\nDamion\nDenny\nDerick\nEdmund\nGerson\nHoracio\nJosh\nJuwan\nKellen\nLeopoldo\nLuiz\nMatteo\nSahil\nZechariah\nBlaine\nBrice\nCeasar\nDomingo\nDominik\nFausto\nGarett\nGene\nKory\nLucio\nNeal\nPayton\nRocky\nSamson\nTate\nTevin\nTristian\nVidal\nAbelardo\nAdalberto\nAddison\nAnton\nArjun\nAsher\nAurelio\nCoby\nDashawn\nDeion\nDeonte\nDwight\nFranco\nGeovanny\nGeovany\nGlen\nIbrahim\nIsac\nJaden\nJermaine\nJorden\nJordi\nJuvenal\nKade\nKorey\nLoren\nStone\nTalon\nTyrell\nUlices\nWilfredo\nAri\nAric\nBraxton\nBrooks\nCaesar\nCamilo\nErin\nGiancarlo\nHans\nHerbert\nImmanuel\nIzaiah\nJavon\nJosef\nJustyn\nKhalid\nKoby\nLeobardo\nLeroy\nMilan\nNiko\nPaolo\nRex\nReymundo\nTre\nUbaldo\nAbdul\nAditya\nAmari\nArnoldo\nArron\nBrando\nChaz\nDarien\nDimitri\nDonavan\nDuane\nEleazar\nFiliberto\nGalen\nGreyson\nJean\nJerrod\nJustus\nKane\nKillian\nLamar\nLionel\nLuc\nMohamad\nMustafa\nNikko\nPaulo\nPerry\nPete\nPierre\nReilly\nShayan\nStephon\nTerence\nTrever\nAdonis\nAkash\nArmon\nBraeden\nCuauhtemoc\nCullen\nDarrius\nElton\nEmmett\nJair\nJelani\nJoan\nJohnson\nJoseantonio\nLloyd\nReese\nRon\nSami\nSilvestre\nTrinidad\nTrystan\nValentino\nWilmer\nAbner\nAbran\nAdriel\nAjay\nAlek\nAlexi\nAnderson\nAram\nAustyn\nBaltazar\nBrandyn\nBryon\nClemente\nDarion\nDarrin\nEden\nEloy\nEnzo\nErvin\nEsai\nGeovani\nJabari\nJaycob\nJimmie\nKeshawn\nLayne\nLester\nLonnie\nMarcello\nMaverick\nNathanial\nParis\nPhoenix\nRico\nRomario\nSalomon\nTariq\nUlisses\nVance\nAldair\nAren\nBijan\nBrenton\nCordell\nDana\nDarrion\nEliot\nEugenio\nGreg\nHilario\nIsacc\nJadon\nJerod\nJessica\nJordy\nJoseangel\nKalvin\nKenji\nLaurence\nMikel\nMilo\nMuhammad\nQuinten\nRamses\nRenato\nRhett\nTravon\nVan\nVarun\nAbdiel\nArmen\nBilal\nClifton\nCristofer\nDaquan\nDestin\nDexter\nEder\nEdmundo\nElan\nEliezer\nEmerson\nGarrison\nHudson\nJamison\nJaylon\nJess\nJohnpaul\nJosemanuel\nLeslie\nNehemiah\nNicklaus\nObed\nOmid\nRami\nRosendo\nSchuyler\nSemaj\nSilas\nTed\nTrace\nVincente\nYovani\nAbrahan\nAlden\nAlexzander\nArik\nBarrett\nCarlton\nDillan\nDomenic\nDonnie\nDuke\nDylon\nEdmond\nEnoch\nErich\nEsequiel\nEver\nFlorentino\nGrady\nHamza\nHasan\nHugh\nHuy\nJade\nJaquan\nJennifer\nJerardo\nJudah\nKahlil\nKolby\nKong\nLincoln\nLyle\nManny\nMarcanthony\nMatias\nMaxim\nMichel\nMickey\nNeel\nOsman\nRandolph\nReagan\nRowan\nRyder\nRylan\nSantana\nSeamus\nShayne\nShelby\nSimeon\nSky\nSoren\nStephanie\nTitus\nTrayvon\nVernon\nVince\nVincenzo\nZakary\nBlair\nBroderick\nBronson\nCallum\nCamden\nCamron\nClint\nColten\nDajon\nDanniel\nDave\nDaylen\nDemetri\nEdwardo\nFabio\nFranky\nHieu\nIshmael\nJamar\nJameson\nJarett\nJaylin\nJensen\nJeromy\nJosedejesus\nKarim\nKole\nLeland\nLevon\nMarquez\nMichaelangelo\nNash\nNikolai\nNima\nNorberto\nPrince\nRamsey\nRichie\nRony\nServando\nSpenser\nTim\nTracy\nTyus\nYonatan\nAbdullah\nAkshay\nAnson\nAntwan\nArvin\nArya\nAsa\nBrandan\nCelso\nCisco\nCourtney\nDandre\nDaren\nDarrian\nDayton\nEdgard\nForest\nFredrick\nGabino\nGareth\nGevork\nGian\nGil\nHank\nHiram\nIsael\nJamari\nJamil\nJeronimo\nJerrick\nLamont\nLuca\nLucky\nMadison\nMatt\nOmari\nRaffi\nRoque\nShiloh\nTimmy\nWillem\nWilly\nYoung\nAlain\nAmador\nAngus\nArtemio\nAugustus\nAuston\nBo\nChasen\nClyde\nColt\nDarrel\nDerik\nDillion\nDyllan\nElvin\nEvander\nFaustino\nFloyd\nFransisco\nFredi\nGriffen\nHagop\nHakeem\nJacobo\nJamel\nJered\nJob\nJuanjose\nKamran\nKenan\nKenton\nKerry\nKhari\nKris\nKristoffer\nLars\nLondon\nMaria\nMckay\nMikael\nMinh\nNatanael\nNeftali\nNicholaus\nNikolaus\nOtto\nPranav\nRaven\nRaymon\nRefugio\nRemington\nRohit\nRudolph\nRueben\nSarkis\nSebastien\nShivam\nStevie\nTarik\nThaddeus\nUriah\nWestin\nWestley\nYousef\nZack\nAleksander\nAlijah\nAlton\nAmado\nAman\nAnders\nAryan\nAshwin\nBaylee\nBishop\nBladimir\nBradly\nCanaan\nChauncey\nChester\nChristofer\nClement\nColeton\nCyle\nDajuan\nDanilo\nDarrien\nDavonte\nDawson\nDeclan\nDeondre\nDino\nDomenico\nEamon\nEmil\nEriq\nGamaliel\nGer\nGerard\nGiovany\nGunner\nGus\nHarris\nIrwin\nJan\nJaret\nJavan\nJavin\nJerimiah\nJerson\nJihad\nJonathen\nJordyn\nJossue\nKalani\nKamron\nKelton\nKeoni\nKevyn\nKiefer\nKolton\nLanden\nLino\nMarius\nMarkel\nMaxx\nMorris\nMoshe\nNevin\nParth\nPatric\nRavi\nRayshawn\nRemy\nRigo\nRobby\nRommel\nRoyce\nRyley\nSamer\nSherman\nSione\nSyed\nTayler\nTobin\nTorin\nValentine\nVanessa\nVaughn\nVishal\nWiley\nYash\nYobani\nZaid\nAlejandra\nAmar\nAmer\nAmit\nAndrei\nAra\nAshley\nAvi\nBee\nBowen\nBradford\nBrandin\nBrandt\nBroc\nBuddy\nCain\nCanyon\nConrado\nCristo\nDallin\nDaron\nDemetrio\nDereck\nDerian\nDeric\nDeshaun\nDonaven\nDonavon\nDru\nEduard\nEly\nFabricio\nFaris\nFrancesco\nGeronimo\nHarjot\nHeber\nHenri\nIndiana\nIsreal\nJaspreet\nJaycee\nJerad\nJerald\nJeremias\nJessi\nJoesph\nJohnmichael\nJusten\nKaelin\nKale\nKayvon\nKeandre\nKeelan\nKenyon\nKhang\nKishan\nKylan\nLazaro\nLeandro\nLemuel\nLivan\nMalcom\nMaleek\nMarcell\nMarko\nMarshawn\nMaximo\nMonte\nMontgomery\nMyron\nNarek\nNavid\nNoam\nOren\nOskar\nPorfirio\nQuinlan\nRashaad\nReggie\nReno\nRobbie\nRomello\nRonan\nRoosevelt\nRosalio\nRoyal\nRylee\nSalvatore\nSandeep\nShay\nSkye\nTaj\nThai\nTreyvon\nTruman\nTyrin\nUlyses\nUziel\nValente\nVikram\nVinay\nWilfrido\nZain\nZion\nAdel\nAdin\nAkhil\nAlfonzo\nAmani\nAmilcar\nAn\nAnibal\nArgenis\nAria\nArin\nArmond\nAsael\nAsante\nAtticus\nAubrey\nBenson\nBlaise\nBlas\nBlaze\nBoris\nBoston\nBradlee\nBrannon\nBrennon\nBritton\nCamren\nCannon\nCary\nCase\nCecilio\nCelestino\nDakoda\nDakotah\nDeante\nDeron\nDesi\nDewayne\nDiamond\nDijon\nDionicio\nDraven\nEaston\nEdan\nElder\nEliazar\nEsau\nEsteven\nGarrick\nGiorgio\nHakop\nHarman\nHussein\nIain\nIlan\nIra\nIsmail\nIssa\nIzaak\nJacques\nJasen\nJavonte\nJericho\nJessee\nJhonatan\nJhonny\nJhovany\nJohnatan\nJonnathan\nJude\nJuventino\nKacey\nKaelan\nKeyshawn\nKodi\nKonnor\nKrishna\nLatrell\nLavell\nMac\nMarcellus\nMarquel\nMarshal\nMathieu\nMaximino\nMichaelanthony\nMitch\nMynor\nNery\nNicolaus\nNiklas\nNiles\nNino\nOcean\nOsiel\nPascual\nPaulino\nRaudel\nRayce\nRhys\nRickie\nRocio\nRojelio\nRonny\nRyne\nSameer\nSamual\nSasha\nShaan\nShant\nSharif\nShiv\nStewart\nSydney\nSylvester\nTeddy\nTheo\nTou\nUnknown\nVinh\nWilbert\nYosef\nYusuf\nZacary\nZaire\nAbhinav\nAbhishek\nAlecsander\nAlen\nAlexys\nAlphonso\nAmadeus\nAmeer\nAndrey\nAndru\nAnfernee\nAsad\nAugustin\nAydin\nBaby\nBaron\nBenedict\nBennie\nBernabe\nBodie\nBrant\nBrycen\nCaelan\nCandelario\nCarmelo\nCarnell\nCash\nCecil\nCedrick\nChadwick\nChancellor\nChazz\nChe\nCheyne\nClaude\nConan\nCornelius\nDagoberto\nDaven\nDaveon\nDax\nDaylan\nDaylon\nDayne\nDemarcus\nDemitri\nDeshon\nDimas\nDmitri\nDomonic\nDonnell\nDustyn\nEdison\nEitan\nElio\nElizabeth\nEnrico\nEros\nEsdras\nFeliciano\nFord\nGaspar\nGerry\nGildardo\nHeath\nIssiah\nJacqueline\nJajuan\nJameel\nJamir\nJaxon\nJayvon\nJed\nJefferey\nJeramiah\nJiovanni\nJohann\nJohnanthony\nJohny\nJonny\nJoshue\nJuandaniel\nKalen\nKamal\nKaran\nKeenen\nKelby\nKeshav\nKhristian\nKirby\nKobi\nKohl\nLeighton\nLejon\nLenin\nLong\nMalique\nMarcial\nMathias\nMatthias\nMaxfield\nMaynor\nMichelle\nMigel\nModesto\nMontana\nMykal\nNickolaus\nNicky\nNikola\nNoble\nOsmar\nPaxton\nRajan\nRashawn\nRosario\nRufus\nSabino\nSandro\nSanjay\nSayed\nSerafin\nSherwin\nStevan\nTai\nTaran\nTejas\nThor\nTimmothy\nTorrey\nTory\nTrevin\nTurner\nVivek\nWilliams\nYael\nYair\nYuri\nZuriel\nAdarsh\nAlejo\nAmin\nAmos\nAna\nAnand\nAnastacio\nAndruw\nAnish\nAnselmo\nAntone\nArcadio\nArian\nAries\nArmin\nArun\nAyden\nBaily\nBlayne\nBob\nBraedon\nBranson\nCrystian\nDaijon\nDajour\nDaman\nDamonte\nDarrick\nDarron\nDashiell\nDavey\nDavy\nDelfino\nDemarco\nDerrik\nDesean\nDevaughn\nDevion\nDiana\nDionisio\nDmitriy\nDonato\nDonny\nDontae\nDrue\nDusty\nEmani\nEmory\nEphraim\nErasmo\nEusebio\nEvaristo\nEvin\nFavio\nFlorencio\nFong\nFroylan\nGannon\nGaret\nGavino\nGenesis\nGianfranco\nGideon\nGiuseppe\nGriffith\nGrigor\nGurpreet\nHamilton\nHasani\nHouston\nJad\nJaelin\nJafet\nJayce\nJeanpierre\nJeovany\nJermiah\nJett\nJjesus\nJoeseph\nJohannes\nJohnathen\nJordin\nJoshuah\nJuanantonio\nJuandedios\nJuanluis\nJuliocesar\nKadin\nKarson\nKarsten\nKedar\nKennith\nKentaro\nKeon\nKevan\nKeyon\nKhaled\nKiran\nKunal\nLafayette\nLangston\nLauren\nLeopold\nLuan\nLuigi\nLuisalberto\nLuisenrique\nMakai\nManpreet\nMarion\nMarley\nMaurisio\nMenachem\nMeng\nMikal\nNabeel\nNader\nNicholes\nNicklas\nNils\nOtis\nPatricio\nPresley\nRaj\nRaleigh\nRio\nRitchie\nRod\nRodrick\nRyon\nSai\nSalim\nSaxon\nShai\nShakur\nShmuel\nSina\nStefano\nSven\nTakumi\nTal\nTarek\nTeodoro\nTevita\nTheron\nThien\nTien\nTiger\nTommie\nTrae\nTye\nUmar\nVal\nVirgil\nWilbur\nXzavier\nZacarias\nZayd\nAamir\nAayush\nAbdulrahman\nAbiel\nAbisai\nAkira\nAlexsander\nAlon\nAmando\nAmmon\nAndranik\nAnsel\nAntoni\nAntwon\nAris\nArmondo\nArnel\nArsen\nArt\nArtur\nAvelardo\nBayley\nBennet\nBenton\nBjorn\nBlade\nBodhi\nBraydon\nBrenner\nBrevin\nBrien\nBrockton\nBrodie\nBurton\nCampbell\nCarey\nCarlito\nCassius\nCayden\nChantz\nChayton\nCheng\nCheyenne\nChidi\nChristan\nChristiaan\nChristoper\nCirilo\nCormac\nCornelio\nCortland\nCoy\nCristhian\nCurran\nDakari\nDamani\nDameon\nDanial\nDeanthony\nDejohn\nDejuan\nDemetrios\nDemian\nDemond\nDemonte\nDequan\nDevlin\nDezmond\nDilan\nDomenick\nDominque\nDonovin\nDontay\nDyllon\nEarnest\nElden\nEldon\nEliasar\nEmile\nEmmet\nEnmanuel\nEstefan\nEulalio\nExavier\nFaisal\nFarid\nFinn\nFletcher\nFortino\nGagandeep\nGaren\nGarland\nGarry\nGaston\nGeraldo\nGianluca\nGiovannie\nGiovonni\nGorge\nGurjot\nHakim\nHanson\nHarout\nHayes\nHenderson\nHezekiah\nHiroki\nHoang\nIldefonso\nIlya\nImran\nIsaih\nIshan\nIzaac\nJacinto\nJamaal\nJansen\nJaren\nJarvis\nJashawn\nJasmine\nJayro\nJeanclaude\nJeovanny\nJerel\nJestin\nJonte\nJoon\nJosealberto\nJosemaria\nJosias\nJovon\nJozef\nJr\nJuanito\nJuanmanuel\nJullian\nJun\nJusto\nKalil\nKalob\nKamari\nKamren\nKanoa\nKarla\nKarlo\nKarthik\nKeagan\nKegan\nKelley\nKelsey\nKenta\nKerwin\nKiel\nKiernan\nKing\nKingston\nKodiak\nKou\nKye\nLamonte\nLavonte\nLazarus\nLeif\nLizandro\nLucero\nLucien\nLuisfernando\nLuka\nLyndon\nMacario\nMagnus\nMaison\nMajid\nMargarito\nMarkell\nMarque\nMaurilio\nMichal\nMika\nMilad\nMissael\nMykel\nNajee\nNam\nNarciso\nNeftaly\nNihar\nNixon\nNolberto\nNyle\nOmer\nOracio\nOswald\nOtoniel\nPage\nPascal\nPorter\nRahsaan\nRandal\nRayjon\nRayvon\nRaziel\nRegino\nRian\nRichmond\nRishi\nRocco\nRubin\nRufino\nRusty\nSaad\nSabastian\nSachin\nSaid\nSaleem\nSaleh\nSalem\nSamantha\nSedrick\nSevag\nShakir\nShamar\nShelton\nShomari\nShon\nSimran\nSocrates\nStorm\nSuraj\nTaha\nTahj\nTalha\nTallon\nTaron\nTerrel\nTin\nTonatiuh\nTravion\nTrevaughn\nTrysten\nTyren\nTyron\nTyrus\nViet\nVittorio\nWaldo\nWilber\nYeng\nYisroel\nZacharia\nZackariah\nZarek\nZayne\nAakash\nAble\nAce\nAdil\nAdnan\nAdriano\nAedan\nAjani\nAkil\nAl\nAlante\nAlanzo\nAlbino\nAleksandr\nAlessio\nAlexey\nAlexsis\nAlias\nAlize\nAlverto\nAlyssa\nAmadeo\nAmmar\nAndersen\nAndrea\nAndrez\nAndrue\nAngelica\nAnh\nAnil\nAnirudh\nAnjel\nAnkur\nAnthoni\nAntwoine\nAramis\nArash\nArie\nArnie\nAshkan\nAvetis\nAvinash\nAvrohom\nAyman\nAyrton\nBarrington\nBeck\nBernardino\nBernie\nBonifacio\nBradon\nBrandy\nBrenten\nBrigham\nBurke\nBuster\nCalen\nCallan\nCalum\nCarmen\nCasper\nCassidy\nCayman\nChace\nChai\nCharly\nChistian\nChristion\nCian\nCiaran\nCobi\nCodie\nConstantino\nCornell\nCosmo\nCourtland\nCrispin\nCutler\nCy\nCynthia\nDaejon\nDaisy\nDalvin\nDanthony\nDara\nDarran\nDarryn\nDavian\nDavit\nDaymon\nDelano\nDempsey\nDenis\nDerion\nDerrek\nDerron\nDevonta\nDietrich\nDiondre\nDmorea\nDomonique\nDonavin\nEber\nEdilberto\nEdmar\nEdric\nEian\nElbert\nElijiah\nElisandro\nElpidio\nElyjah\nEman\nEmmitt\nEnnis\nEnoc\nEoin\nErnan\nEsmeralda\nEstuardo\nEtienne\nFahad\nFahim\nFarris\nFerdinand\nFidencio\nFox\nFranciscojavier\nFranz\nFrederic\nGabrial\nGabriela\nGaige\nGarth\nGavyn\nGiacomo\nGregg\nGreggory\nHardeep\nHarpreet\nHeladio\nHenrik\nHernesto\nHogan\nHomero\nHovannes\nHung\nIlias\nIran\nIrvine\nIsa\nIsidoro\nIsrrael\nIvory\nIzak\nJacari\nJae\nJaelen\nJahaziel\nJahi\nJai\nJamon\nJarek\nJarom\nJasdeep\nJase\nJaskaran\nJasmin\nJasson\nJax\nJaxson\nJaydon\nJayme\nJaymes\nJayshawn\nJaziel\nJazz\nJc\nJedd\nJeffry\nJerell\nJeric\nJerrell\nJerron\nJesusantonio\nJezreel\nJguadalupe\nJoao\nJomar\nJosealfredo\nJoseeduardo\nJuanpablo\nJustino\nKabir\nKain\nKaine\nKaito\nKalin\nKaren\nKarina\nKaveh\nKavin\nKawika\nKayden\nKc\nKeane\nKeion\nKeishawn\nKekoa\nKeron\nKeshon\nKhaleel\nKhristopher\nKhyle\nKimani\nKimo\nKlayton\nKobie\nKollin\nKongmeng\nKonner\nKonrad\nKyan\nKyree\nLakota\nLauro\nLegend\nLennon\nLeoncio\nLinus\nLuisantonio\nLynn\nMaclean\nMahlon\nMahmoud\nManolo\nManveer\nManvir\nMarkos\nMarlo\nMarquice\nMartel\nMassimo\nMatthewjoseph\nMatthieu\nMaximillan\nMckenzie\nMehdi\nMelchor\nMelissa\nMervin\nMessiah\nMichelangelo\nMikey\nMikie\nMikkel\nMiko\nMizael\nMohit\nMontel\nMychael\nNahum\nNakia\nNapoleon\nNathon\nNaveen\nNazaret\nNicanor\nNicco\nNicolaas\nNicolai\nNikita\nNile\nNorris\nOctavian\nOdin\nOdis\nOmeed\nOsiris\nOzzy\nParsa\nPheng\nPhil\nPieter\nPrashant\nQuan\nQuenton\nRachel\nRaghav\nRandon\nRashaun\nRasheed\nRashid\nRenee\nRenzo\nRidge\nRito\nRoel\nRomelo\nRonell\nRoshan\nRussel\nRyanchristopher\nRyland\nRyo\nSadiq\nSaeed\nSalman\nSaulo\nScottie\nSeanmichael\nSergey\nSesar\nSevan\nShad\nShadi\nShaheen\nShan\nShemar\nSheridan\nShilo\nShimon\nSid\nSilverio\nSlade\nSlater\nSou\nStacey\nSteele\nSteffen\nTannor\nTeo\nTheophilus\nTimoteo\nTino\nTito\nTreshawn\nTreven\nTristain\nTryston\nTuan\nTylar\nTyrek\nTyrique\nTyshawn\nVictormanuel\nVineet\nVinson\nViraj\nVito\nWaleed\nWallace\nWarner\nWilfred\nWilton\nXander\nYahya\nYared\nYoel\nYonathan\nYovany\nYusef\nYvan\nZahid\nZakery\nZeferino\nZeke\nZong\nDaniel\nJose\nMichael\nAnthony\nJacob\nDavid\nMatthew\nAndrew\nChristopher\nJoshua\nJonathan\nJoseph\nNicholas\nBrandon\nRyan\nJuan\nChristian\nLuis\nKevin\nAlexander\nJustin\nAngel\nJesus\nTyler\nRobert\nJohn\nCarlos\nAdrian\nJames\nKyle\nWilliam\nGabriel\nEric\nAustin\nBrian\nSamuel\nAlejandro\nJason\nMiguel\nZachary\nAaron\nJordan\nNoah\nNathan\nBryan\nDylan\nSteven\nJorge\nBenjamin\nOscar\nRichard\nVictor\nRicardo\nCameron\nIsaac\nThomas\nFrancisco\nEduardo\nIsaiah\nAdam\nJesse\nEthan\nAntonio\nSean\nManuel\nAlex\nAlexis\nCristian\nMark\nFernando\nAndres\nCesar\nSergio\nIvan\nNathaniel\nEdgar\nElijah\nJack\nJavier\nJared\nJulian\nOmar\nDiego\nTimothy\nConnor\nMario\nHector\nTrevor\nRoberto\nJeremy\nCharles\nRaymond\nHunter\nErik\nRuben\nEvan\nVincent\nIan\nEdward\nGerardo\nCody\nMartin\nPatrick\nNicolas\nSpencer\nJoel\nPedro\nArmando\nErick\nPaul\nMarco\nCole\nCaleb\nKenneth\nAlan\nHenry\nJake\nAndy\nDevin\nJeffrey\nRaul\nEnrique\nAlberto\nDominic\nJaime\nPeter\nGeorge\nGarrett\nChase\nRafael\nAbraham\nMarcus\nLogan\nEdwin\nGiovanni\nBlake\nLuke\nDerek\nLeonardo\nMarcos\nSalvador\nMason\nStephen\nJosue\nArturo\nJulio\nJeremiah\nLucas\nIsrael\nTristan\nAlec\nFrank\nBryce\nEmmanuel\nGustavo\nAlfredo\nTanner\nTravis\nJackson\nXavier\nSebastian\nSaul\nGregory\nErnesto\nRamon\nWyatt\nMaxwell\nMoises\nSeth\nShane\nJohnny\nRiley\nBradley\nScott\nGavin\nElias\nPablo\nGrant\nMax\nMitchell\nBrendan\nGuillermo\nTaylor\nEsteban\nDanny\nShawn\nJohnathan\nAlbert\nDamian\nIsmael\nDakota\nFabian\nAidan\nLiam\nAndre\nDevon\nJakob\nPhillip\nAbel\nJimmy\nColin\nDillon\nDustin\nMathew\nHugo\nHarrison\nSteve\nEmilio\nParker\nJerry\nBrett\nRene\nArthur\nMarc\nMiles\nRoman\nAlfonso\nRandy\nWesley\nCasey\nLorenzo\nCorey\nMalik\nCalvin\nColton\nRodolfo\nJosiah\nAngelo\nOwen\nBryant\nEddie\nRodrigo\nCollin\nChad\nJoe\nDante\nTroy\nGilberto\nJonah\nLouis\nFelipe\nGilbert\nRonald\nDonovan\nJonathon\nBailey\nOsvaldo\nTony\nKeith\nHayden\nAllen\nMauricio\nRogelio\nUlises\nClayton\nSantiago\nCory\nDalton\nConner\nTommy\nEmanuel\nGriffin\nDennis\nNolan\nNoe\nRudy\nEfrain\nFelix\nPhilip\nSimon\nChris\nLawrence\nRamiro\nRicky\nMarvin\nMicah\nDrew\nUriel\nOliver\nAlvaro\nNikolas\nDerrick\nChandler\nDonald\nGary\nCarson\nDarius\nRoger\nBrenden\nChance\nIssac\nJessie\nNickolas\nJoaquin\nMoses\nCurtis\nSkyler\nGage\nKristopher\nHumberto\nLevi\nAdan\nRonaldo\nAgustin\nDarren\nDouglas\nMyles\nVicente\nDamien\nKobe\nLeonel\nTrent\nBrent\nDawson\nIsaias\nKaleb\nEli\nPreston\nJarod\nDominick\nIgnacio\nRigoberto\nAdolfo\nCharlie\nCooper\nCarter\nTomas\nBranden\nDean\nTheodore\nAlvin\nJoey\nKenny\nTrenton\nWalter\nZackary\nLarry\nMike\nNoel\nAllan\nAriel\nJayson\nConor\nFreddy\nMorgan\nLeo\nMateo\nTristen\nAldo\nCarl\nRoy\nBrennan\nOrlando\nKameron\nKristian\nRolando\nRussell\nBobby\nColby\nUlysses\nZachariah\nBilly\nEstevan\nZane\nBrady\nBruce\nCade\nGerman\nJalen\nQuinn\nMarlon\nQuentin\nAlonso\nEzekiel\nEzequiel\nJay\nNelson\nMaurice\nZachery\nKelvin\nDamon\nNestor\nAlonzo\nAvery\nKai\nBrendon\nDrake\nLance\nAli\nIrvin\nCyrus\nDavis\nJon\nLukas\nByron\nDallas\nSam\nAlfred\nKyler\nMiguelangel\nBernardo\nOctavio\nRay\nLeonard\nFranklin\nGonzalo\nMicheal\nTy\nCruz\nJairo\nDarian\nEzra\nLeon\nMalcolm\nMisael\nFidel\nFrederick\nJeffery\nLandon\nDane\nRaymundo\nShaun\nJustice\nAhmad\nArnold\nGiovanny\nMaximilian\nTerrell\nTrey\nBrock\nLouie\nNeil\nAmir\nElliot\nJaylen\nKeegan\nKody\nBrayan\nCraig\nCristopher\nEfren\nFrankie\nRandall\nRodney\nRomeo\nBryson\nCorbin\nIsiah\nJaden\nNathanael\nRonnie\nSantos\nBeau\nDeandre\nElvis\nLee\nBraden\nGianni\nOrion\nDesmond\nGuadalupe\nJarrod\nSkylar\nBenny\nBraulio\nGlenn\nJoseluis\nTerry\nWeston\nAiden\nBrayden\nElmer\nJerome\nJohnathon\nMohamed\nSolomon\nAlexandro\nGerald\nJasper\nJayden\nReed\nTristin\nAxel\nGregorio\nMarshall\nOswaldo\nStanley\nTucker\nWilson\nAshton\nGraham\nGrayson\nJovany\nJuancarlos\nMohammad\nSage\nTodd\nEmiliano\nIsai\nRalph\nTyson\nWade\nCristobal\nDuncan\nMaximillian\nSawyer\nAntony\nBrody\nClay\nConrad\nEugene\nJarrett\nKeaton\nKent\nKeven\nMalachi\nMarquis\nMohammed\nOsbaldo\nTyree\nAlessandro\nErnest\nEverett\nHeriberto\nJamie\nZackery\nAron\nFrancis\nJulius\nMarcel\nRiver\nDan\nDario\nDeshawn\nDevan\nEliseo\nGenaro\nIsidro\nJovanny\nKarl\nSterling\nCaden\nElliott\nHarry\nJunior\nKhalil\nMelvin\nQuinton\nReginald\nSonny\nStefan\nTobias\nAldair\nArman\nGarret\nHernan\nJarred\nJovani\nMaximiliano\nReece\nReynaldo\nTrevon\nTyrone\nValentin\nDamion\nDerick\nGiovani\nJohan\nBennett\nDemetrius\nEdgardo\nForrest\nJamal\nKelly\nRoss\nTerrance\nWayne\nDangelo\nDarryl\nJulien\nLeopoldo\nMarcelo\nPayton\nPeyton\nRaphael\nWarren\nDorian\nGiancarlo\nGordon\nHolden\nKellen\nLane\nLuiz\nQuincy\nWillie\nDominique\nJace\nJermaine\nJordi\nJovan\nLeobardo\nLewis\nMarkus\nRobin\nRory\nWill\nBen\nBenito\nHarold\nJonas\nLuisangel\nNorman\nRohan\nArmani\nCedric\nDarrell\nDavion\nDimitri\nDion\nJovanni\nMariano\nNick\nRick\nCamden\nEverardo\nHarley\nJim\nJordon\nKendall\nKieran\nLisandro\nMarquise\nQuintin\nReid\nTerrence\nVladimir\nAugust\nCamron\nDeven\nIzaiah\nNikhil\nSammy\nStephan\nAntoine\nDavon\nDeclan\nFederico\nGeovanni\nJosef\nKen\nKurt\nPierce\nRey\nAmari\nBrennen\nCeasar\nDale\nEarl\nGeoffrey\nGeovanny\nGino\nHoward\nJackie\nJavon\nKoby\nNathanial\nReese\nRoland\nTriston\nWalker\nAndreas\nAurelio\nDarien\nFredy\nHoracio\nJacky\nKaden\nKurtis\nNiko\nRoyce\nToby\nWinston\nAddison\nAnton\nAri\nArjun\nAusten\nClarence\nEleazar\nFavian\nJefferson\nKade\nMarkanthony\nShayne\nCarlo\nCoby\nDonte\nGunnar\nIrving\nJordy\nKendrick\nKory\nLuca\nMilton\nSahil\nStone\nClaudio\nEdson\nElisha\nFred\nJaron\nKane\nKeanu\nKian\nLionel\nLucio\nMarcoantonio\nNigel\nPete\nRyder\nSemaj\nTom\nTylor\nZion\nAbelardo\nAsher\nAustyn\nBrando\nBrice\nClark\nClinton\nColeman\nFreddie\nGarett\nGuy\nHassan\nJonatan\nKennedy\nRahul\nRashad\nSheldon\nSidney\nAhmed\nArmand\nAugustine\nBlaine\nBrad\nDarion\nDarwin\nDon\nFlavio\nHudson\nIbrahim\nJosh\nJustyn\nKirk\nLuciano\nMuhammad\nRosendo\nTerence\nAdonis\nBill\nBraxton\nDarnell\nDaryl\nDejon\nDeondre\nEloy\nFredrick\nHugh\nJaret\nKareem\nKeenan\nNico\nPierre\nReuben\nRocky\nShant\nStuart\nTaj\nTristian\nBernard\nDenzel\nDevyn\nDonavan\nEnzo\nErnie\nIsac\nJaycob\nJeff\nLamar\nMarcelino\nMatteo\nMauro\nNeal\nRylan\nTiger\nValentino\nZain\nAbram\nBradly\nBrandyn\nDexter\nDomenic\nEmerson\nErwin\nFiliberto\nGarrison\nGerard\nGerson\nGil\nGlen\nJelani\nJorden\nMarcanthony\nMilo\nQuinten\nSamir\nSantino\nTate\nTrever\nVince\nAbdullah\nAlexandre\nBaltazar\nBladimir\nBraeden\nBrenton\nBruno\nDavonte\nDeon\nElvin\nHerbert\nHerman\nIsaak\nIsacc\nJustus\nKenji\nKristofer\nMarquez\nMilan\nRex\nTurner\nVance\nAdalberto\nAdriel\nAngus\nClemente\nClifford\nCordell\nCullen\nDereck\nDevonte\nDwayne\nEllis\nEriberto\nGene\nGreg\nHans\nJair\nJean\nJerod\nJohann\nKhalid\nNash\nNathen\nNicklaus\nRamsey\nRaven\nSarkis\nTariq\nTitus\nTrinidad\nWilfredo\nAbner\nAditya\nAdrien\nAric\nArnoldo\nArnulfo\nBoris\nColten\nCristofer\nDarin\nDillan\nDominik\nFausto\nFermin\nHamza\nJadon\nJarett\nJohnson\nKalvin\nKenyon\nLazaro\nLeland\nMaverick\nParis\nRemy\nSamson\nShannon\nShea\nShivam\nUlyses\nYusuf\nAlden\nAlek\nBret\nChasen\nDwight\nEddy\nEdmundo\nEdwardo\nEsai\nFranco\nJaylin\nJessi\nJohnpaul\nJuwan\nKamron\nKorey\nLino\nMarcell\nMathias\nMekhi\nMitchel\nNatanael\nNehemiah\nOmari\nPerry\nReyes\nRichie\nSalomon\nShay\nThaddeus\nTyrell\nVaughn\nVernon\nZakary\nAnderson\nAsa\nCaesar\nDallin\nDarrin\nDenilson\nDeonte\nEdmond\nEdmund\nErin\nGeronimo\nJamil\nJaylon\nJeramiah\nJett\nJohnnie\nJosedejesus\nJosemanuel\nJuanjose\nJuanpablo\nLonnie\nLuc\nMatias\nMustafa\nPaulo\nRamses\nRhett\nRigo\nRon\nSilas\nSione\nSunny\nTimmy\nVidal\nYonatan\nYousef\nArian\nBarry\nBradford\nDaron\nDenny\nEugenio\nEver\nFrancesco\nGeovany\nHarvey\nHilario\nJameson\nLamont\nLars\nLaurence\nMackenzie\nNicolaus\nNikko\nNorberto\nPhoenix\nRico\nRoderick\nRowan\nSavion\nSilvestre\nXander\nZechariah\nAmit\nBronson\nCassidy\nChristofer\nDandre\nDaren\nDarrion\nDashawn\nDavin\nDerian\nDevante\nDomingo\nDuane\nDylon\nEden\nErvin\nJamar\nJayce\nKalen\nKarim\nKasey\nKenton\nKyree\nLevon\nLoren\nMadison\nMarty\nNima\nRandolph\nRickey\nShayan\nStewart\nSyed\nTracy\nVarun\nWilbert\nYovani\nAjay\nAlain\nAmador\nAman\nArmen\nArron\nCary\nCelso\nChristion\nCuauhtemoc\nDeangelo\nDenis\nDerik\nElton\nEsau\nFransisco\nGabino\nGannon\nGildardo\nGunner\nIshmael\nJade\nJamison\nJaren\nJarret\nJerald\nJeronimo\nJerrod\nJessy\nKeon\nKobie\nKolby\nKole\nKong\nLeroy\nMarcellus\nMarkell\nMorris\nNajee\nNikola\nPaolo\nReggie\nReilly\nRenato\nRian\nRohit\nRomario\nSami\nSammuel\nSky\nTevin\nTheo\nUlices\nZander\nAbdul\nAkira\nAkshay\nAnders\nAra\nAren\nArmon\nArya\nBijan\nBishop\nBrandan\nBranson\nCampbell\nChe\nClifton\nClint\nDarrius\nDemitrius\nDestin\nDiamond\nDino\nDmitri\nEan\nEder\nEmmett\nEnoch\nEsequiel\nFabio\nFaustino\nFranky\nGalen\nGrady\nJaiden\nJedidiah\nJerardo\nJimmie\nJoan\nJohnmichael\nJosias\nJuventino\nKaelan\nKalani\nKeyshawn\nKonnor\nLivan\nMaxim\nMichaelangelo\nMigel\nMohamad\nMontana\nNabil\nNeftali\nNikolaus\nNiles\nRandal\nReagan\nRio\nRudolph\nRyley\nSkye\nTeodoro\nTrace\nUbaldo\nWilmer\nZaid\nAbdiel\nAbran\nAkash\nAlexzander\nAlijah\nAmado\nAmeer\nAndrea\nAnibal\nAnson\nAntoni\nAram\nAshwin\nAyden\nBenson\nBrannon\nCaelan\nCamilo\nCamren\nCayden\nDemetri\nDevlin\nDonnie\nEmil\nErich\nFinn\nGarrick\nGeno\nGeovani\nGreyson\nHakeem\nHarris\nHuy\nIrwin\nIsreal\nJaylan\nJensen\nJess\nJob\nJonny\nJordyn\nJoseantonio\nKamren\nKelton\nKeoni\nKevon\nKylan\nMarcello\nMarques\nMikel\nNevin\nNicholaus\nNikolai\nOmid\nPatricio\nPorfirio\nPrince\nRobbie\nRomel\nRonny\nSagar\nSebastien\nSpenser\nTarik\nTim\nTruman\nTrystan\nTyrese\nVincente\nVincenzo\nYash\nYoussef\nAbdulrahman\nAbrahan\nAlexei\nAlexi\nAlton\nAmar\nAmos\nArmondo\nAuston\nBabyboy\nBo\nBraydon\nCanaan\nChester\nCisco\nClyde\nDajuan\nDarrian\nDave\nDeante\nDeanthony\nDeion\nDeshaun\nDilan\nDyllan\nEaston\nFidencio\nFletcher\nFloyd\nForest\nGenesis\nGianluca\nGideon\nGiovany\nIsael\nIsmail\nJafet\nJaquan\nJasen\nJerimiah\nKarthik\nKhari\nKillian\nKonner\nKris\nLanden\nLeif\nLeslie\nLincoln\nLucky\nMatt\nMatthias\nMaximo\nMickey\nMikael\nModesto\nNicolo\nNikita\nOmer\nOskar\nOtis\nRayshawn\nRemington\nRishi\nRonan\nSeamus\nServando\nSherman\nSiddharth\nSlater\nTalon\nTed\nTou\nUlisses\nYael\nAbisai\nAden\nArvin\nAtticus\nBaron\nBilal\nBlair\nBrandin\nBroderick\nCamryn\nCedrick\nChaz\nCian\nCortez\nDamani\nDana\nDarell\nDarrick\nDarrien\nDeron\nDillion\nDonaven\nDonavon\nDustyn\nEarnest\nElan\nEly\nEnrico\nHasan\nHiram\nIain\nJacques\nJai\nJaysen\nJennifer\nJeovany\nJerad\nJericho\nJoesph\nJuandaniel\nJudah\nJuliocesar\nJusten\nJuvenal\nKaelin\nKahlil\nKaran\nKeshawn\nKevyn\nKunal\nLong\nLyndon\nMagnus\nMichaelanthony\nMikhail\nNino\nObed\nOtto\nPascual\nRami\nRavi\nRaymon\nRenzo\nReymundo\nRoshan\nSabastian\nSantana\nShiloh\nStephon\nTavian\nTrevin\nTye\nTyshawn\nUziel\nWestley\nWillis\nWilly\nZuriel\nAdnan\nAmin\nAn\nAnand\nAndrei\nAndru\nAnirudh\nAnthonie\nArash\nAria\nAries\nArmaan\nArt\nAsante\nAugustin\nBlaze\nBowen\nBraedon\nBrodie\nBryon\nCale\nCallum\nCarlton\nCharley\nCharly\nCristhian\nCristo\nDamond\nDanial\nDanilo\nDarron\nDayton\nDemarco\nDenver\nDewayne\nDimas\nEladio\nEligio\nErasmo\nErnan\nFredi\nGaspar\nGaven\nGerry\nGiovannie\nGiovonni\nHarlan\nImmanuel\nIshan\nIzak\nJabari\nJacoby\nJagger\nJaleel\nJan\nJarid\nJaskaran\nJasson\nJaxon\nJaydon\nJevon\nJiovanni\nJosemaria\nJuanantonio\nJustis\nKadin\nKaiden\nKain\nKeifer\nKekoa\nKhyree\nKiran\nKishan\nKobi\nKrishna\nKristoffer\nLenin\nLester\nLizandro\nLloyd\nLondon\nLuisfernando\nMalique\nMarko\nMathieu\nMissael\nMonte\nMoshe\nNareg\nNiklas\nNoa\nOsman\nOsmar\nOsmin\nPatric\nPranav\nRaffi\nRaj\nRasheed\nRaudel\nReno\nRickie\nRojelio\nRyland\nSandeep\nShan\nShelby\nShemar\nSimeon\nStacy\nTai\nTal\nTeddy\nTre\nTrenten\nTreyvon\nVikram\nVishal\nWallace\nYobani\nAakash\nAbhinav\nAkil\nAl\nAleksander\nAlexys\nAmer\nAmmar\nAmrit\nAndrey\nAnselmo\nAris\nArlen\nArmin\nArtur\nBabak\nBarrett\nBayley\nBernardino\nBlas\nBroc\nBrooks\nCain\nCallan\nCheng\nColt\nConrado\nCy\nDagoberto\nDajon\nDakoda\nDarby\nDaveon\nDaylan\nDaylon\nDejuan\nDemetrio\nDeontae\nDeric\nDesean\nDomenick\nDonnell\nDru\nDupree\nDyllon\nEdgard\nEdison\nEliot\nEmon\nEnrrique\nEros\nEusebio\nEvaristo\nFabricio\nFabrizio\nFaisal\nFaris\nFeliciano\nFinnegan\nFlorencio\nFlorentino\nFortino\nFoster\nGaige\nGaret\nGarry\nGaurav\nGiorgio\nGiuseppe\nGriffen\nGrigor\nGurpreet\nHaden\nHaik\nHank\nJacobo\nJakeb\nJarren\nJavan\nJax\nJeanpaul\nJeric\nJhovanny\nJohny\nJonnathan\nJoshuah\nJovon\nJun\nJustine\nKenan\nKenta\nKerry\nKiefer\nKirby\nKou\nLake\nLemuel\nLenny\nLuigi\nMacario\nManpreet\nMargarito\nMarion\nMarkel\nMarley\nMarquel\nMarshal\nMartell\nMynor\nMyron\nNahum\nNathon\nOri\nOsiris\nParsa\nParth\nPasha\nPaulino\nRhys\nRitchie\nRony\nRoque\nRueben\nRyo\nSameer\nSayed\nShamar\nSilverio\nSoren\nStephanie\nStorm\nTahj\nTayler\nTejas\nTheron\nThor\nTonatiuh\nTorin\nTrae\nTyriq\nTyrique\nVan\nVivek\nWaylon\nWendell\nWilber\nAbimael\nAkhil\nAleksandr\nAlphonso\nAndrez\nAnkit\nAnuj\nApolinar\nArgenis\nAristeo\nArvind\nAryan\nAzael\nAziz\nBasil\nBennie\nBlaise\nBodhi\nBradlee\nBrandt\nBrayant\nBrycen\nCal\nCalum\nCarmelo\nCassius\nCedar\nCelestino\nChristoper\nClement\nCodey\nDakotah\nDamaria\nDara\nDarious\nDat\nDax\nDayshawn\nDelano\nDelfino\nDelvon\nDemitri\nDerwin\nDeshon\nDezmond\nDijon\nDionicio\nDontae\nDraven\nEber\nEctor\nEliazar\nElon\nEmery\nEmile\nEmmet\nEsdras\nEsgar\nEthen\nEtienne\nEvin\nFavio\nGagandeep\nGamaliel\nGavino\nGerrit\nGian\nGorge\nGraeme\nHagop\nHazael\nHenri\nHenrik\nHerminio\nHomar\nImani\nImran\nIram\nIsaih\nIzaak\nJacinto\nJad\nJahaziel\nJalani\nJamaal\nJamari\nJamon\nJase\nJered\nJerick\nJerson\nJessica\nJihad\nJoab\nJocelyn\nJohnanthony\nJohnatan\nJonte\nJordin\nJorgeluis\nJoseangel\nJosecarlos\nJossue\nJr\nJuanmanuel\nJules\nKacey\nKainoa\nKanoa\nKasra\nKeyon\nKiernan\nKimberly\nKimo\nKodi\nKohl\nKollin\nKordell\nKush\nLaith\nLauro\nLavelle\nLayne\nLowell\nLuisenrique\nMaksim\nMalakai\nMaliek\nMarlin\nMarlo\nMaurisio\nMelissa\nMichelangelo\nMikhael\nMina\nMinh\nMontel\nMychael\nNam\nOcean\nOzzy\nPascal\nPhilippe\nRajan\nRandell\nRishabh\nRito\nRodrick\nRosalio\nRoyal\nRussel\nRyker\nSamer\nSampson\nSanjay\nSchuyler\nShaan\nSol\nStefano\nStevan\nStevie\nSultan\nSurya\nSydney\nTarek\nTerrill\nTino\nTravon\nTrayvon\nTyquan\nTyrus\nTyus\nUmar\nUsman\nValentine\nVanessa\nVictormanuel\nVirgil\nVito\nWes\nWiley\nXzavier\nYovanni\nYuki\nZaire\nZakaria\nZen\nAbiel\nAble\nAdair\nAdil\nAdin\nAjani\nAkaash\nAlejandra\nAleksandar\nAleksei\nAly\nAmadeo\nAmandeep\nAmeen\nAmritpal\nAndree\nAndrue\nAndruw\nAngelino\nAntwan\nAramis\nArie\nArlo\nArtemio\nAsad\nAsael\nAshkan\nAubrey\nAugusto\nAugustus\nAviv\nAzariah\nBenjamen\nBenton\nBernabe\nBillie\nBjorn\nBodie\nBrant\nBrennon\nBrigham\nCanyon\nCecilio\nCezar\nChadwick\nChristan\nChristophe\nCiaran\nCinque\nCobi\nCodie\nColeton\nColson\nConan\nCorban\nCormac\nCourtland\nCourtney\nCyle\nDaijon\nDalen\nDamarco\nDanniel\nDanyael\nDarrel\nDashiell\nDeaven\nDelbert\nDelon\nDemetre\nDevaughn\nDewey\nDillen\nDiondre\nDomonic\nDonnovan\nDonny\nDuke\nEathan\nEberardo\nEdan\nEdric\nEdrick\nElder\nElie\nEliezer\nEmily\nEulises\nEverest\nFahad\nFarhan\nFranciscojavier\nFroylan\nGabrial\nGarland\nGavriel\nGavyn\nGevork\nGiacomo\nGibran\nGumaro\nHamilton\nHansen\nHanson\nHarman\nHasani\nHayk\nHeath\nHeber\nHipolito\nHoang\nHomero\nHouston\nHumza\nIlias\nIlya\nIrineo\nIssa\nIssiah\nIzaac\nJaeden\nJajuan\nJakari\nJalon\nJamel\nJarron\nJeovani\nJeremias\nJerin\nJerrick\nJet\nJin\nJohannes\nJonathanjoseph\nJonpaul\nJosearmando\nJourdan\nJovannie\nJuanluis\nJude\nJusto\nJuston\nKamari\nKarson\nKeelan\nKeenen\nKegan\nKelson\nKeng\nKennan\nKimani\nKingsley\nKingston\nKolton\nKongmeng\nLamberto\nLauren\nLorenz\nLuka\nLyle\nMack\nMagdaleno\nMahdi\nManolo\nMarck\nMarkos\nMaxfield\nMaxime\nMaxx\nMckinley\nMerlin\nMichel\nMihir\nMikail\nMilad\nMiller\nMizael\nMonica\nMontrell\nNarciso\nNarek\nNaseem\nNatan\nNavid\nNeel\nNickolaus\nNicky\nNicola\nNile\nNolen\nOlin\nOtoniel\nPalmer\nPaxton\nPetros\nPresley\nQuang\nRahsaan\nReymond\nReza\nRich\nRidge\nRommel\nRonak\nRusty\nRyne\nSaad\nSahib\nSamantha\nSatchel\nScot\nScotty\nSerjio\nShae\nShon\nSigifredo\nSimran\nStetson\nSuraj\nSylvester\nTevita\nThien\nTiernan\nTimoteo\nTito\nTyre\nTyren\nTyrin\nUriah\nVal\nValente\nViet\nVinay\nVinson\nVirgilio\nWaleed\nWalid\nWestin\nWillem\nWilliams\nWolfgang\nWylie\nYair\nYancy\nYonathan\nYosef\nYoung\nZakkary\nAaren\nAayush\nAdhemar\nAdrean\nAdryan\nAj\nAkili\nAldrin\nAlen\nAlfonzo\nAlma\nAlston\nAnakin\nAndhy\nAnfernee\nAngeles\nAngello\nAnish\nAnkur\nAnmol\nAnthonyjohn\nAntione\nArin\nAydin\nAyush\nBaily\nBarron\nBaruch\nBenigno\nBenyamin\nBert\nBlade\nBlong\nBrain\nBrandy\nBrenan\nBrenner\nBriant\nBrogan\nBurke\nCairo\nCalder\nCandelario\nCarsen\nCash\nCayman\nCeaser\nCesario\nChace\nChrist\nChristien\nCirilo\nCobey\nColter\nConstantine\nCornelio\nCorry\nCris\nCross\nDamaris\nDang\nDani\nDanthony\nDaquan\nDartagnan\nDashon\nDavante\nDavian\nDaymon\nDaymond\nDedrick\nDeepak\nDelvin\nDemario\nDemonte\nDerrek\nDerrion\nDezhon\nDhruv\nDimitrios\nDionte\nDomonique\nDonato\nDuy\nEamon\nEben\nEdilberto\nEduard\nEitan\nEldon\nElija\nEliott\nEliud\nEmari\nEmelio\nEmory\nEnoc\nErrol\nEsteven\nEsvin\nEulices\nEvert\nExavier\nFerdinand\nFernie\nFischer\nFox\nFrederic\nFroilan\nGaldino\nGautam\nGeordan\nGer\nGillermo\nGrey\nGurjot\nHakop\nHan\nHarjot\nHarout\nHarut\nHarutyun\nHezekiah\nHiroshi\nHovanes\nHrag\nHubert\nIlan\nIndiana\nIra\nIsaia\nIsrrael\nItai\nIvory\nJabril\nJacquez\nJae\nJael\nJaelin\nJailen\nJairus\nJaison\nJameel\nJaryd\nJashawn\nJashon\nJaspreet\nJavin\nJavonte\nJayvon\nJaziel\nJazmin\nJc\nJeanluc\nJed\nJeovanni\nJerel\nJereme\nJerico\nJerred\nJerrett\nJeyson\nJoao\nJobany\nJody\nJoeseph\nJohnathen\nJohndavid\nJohnjoseph\nJonathen\nJosede\nJoshuaray\nJuanito\nKabir\nKadeem\nKaeden\nKaito\nKalin\nKamal\nKamran\nKamrin\nKarsten\nKaya\nKayden\nKayvon\nKeilan\nKeller\nKelsey\nKendell\nKendric\nKennith\nKenrick\nKento\nKenyatta\nKesean\nKeshaun\nKevan\nKhaled\nKhaleel\nKhristian\nKirkland\nKlayton\nKraig\nKrystian\nKwame\nKyre\nLaron\nLazarus\nLeander\nLeandro\nLegend\nLeovardo\nLuisdavid\nMahmoud\nMalcom\nManny\nMarcial\nMaria\nMarlow\nMarquese\nMarquies\nMarqus\nMarshawn\nMasen\nMassimo\nMatan\nMaurilio\nMaury\nMaximillion\nMaynor\nMckay\nMckenzie\nMerrick\nMicahel\nMichelle\nMika\nMister\nMitch\nMonty\nMusa\nMykel\nNabeel\nNabor\nNadav\nNahom\nNapoleon\nNaveen\nNery\nNiall\nNiccolo\nNicolai\nNils\nNolberto\nNoor\nNorris\nNyles\nOlivier\nOmeed\nOren\nOsama\nPavel\nPercy\nPiero\nPieter\nPlacido\nQuinlan\nRajiv\nRamzi\nRashaun\nRavinder\nRayan\nRayvon\nRefugio\nRemi\nRic\nRichmond\nRion\nRod\nRomello\nRomero\nRondell\nRuvim\nRyen\nRyon\nSachin\nSaeed\nSaid\nSal\nSaleh\nSalman\nSalvatore\nSander\nSaxon\nSchyler\nSelvin\nSerafin\nSerge\nShad\nShadi\nSherwin\nSho\nSilvano\nSina\nSkylor\nSlade\nSloan\nSteele\nSteffon\nSumeet\nTakoda\nTam\nTamir\nTavion\nTeofilo\nTerell\nTerran\nTerrel\nThai\nTorrey\nTory\nTray\nTrejon\nTremaine\nTrysten\nTyrek\nTyrel\nTyrice\nTyrik\nTyron\nVadim\nVicent\nWilfred\nWillian\nXaiver\nYanni\nYaseen\nYehuda\nYeison\nYeng\nYusuke\nYvan\nZacharias\nZack\nZackariah\nZak\nZakery\nZamir\nZeke\nZephaniah\nDaniel\nJose\nAnthony\nMichael\nAndrew\nDavid\nJacob\nMatthew\nChristopher\nJoshua\nJonathan\nJoseph\nNicholas\nRyan\nBrandon\nJuan\nChristian\nKevin\nLuis\nAlexander\nJustin\nAngel\nJesus\nCarlos\nJohn\nTyler\nWilliam\nRobert\nGabriel\nBrian\nAdrian\nEric\nNathan\nJames\nSamuel\nAlejandro\nKyle\nJason\nNoah\nZachary\nDylan\nAustin\nMiguel\nBenjamin\nBryan\nAaron\nJordan\nSteven\nIsaiah\nIsaac\nEthan\nJorge\nVictor\nOscar\nCameron\nThomas\nRicardo\nRichard\nEduardo\nFrancisco\nAntonio\nAdam\nJesse\nSean\nAndres\nAlex\nFernando\nJack\nIvan\nMark\nDiego\nElijah\nManuel\nAlexis\nCesar\nJulian\nOmar\nJavier\nSergio\nJared\nNathaniel\nMario\nEvan\nTrevor\nCristian\nEdgar\nTimothy\nConnor\nErik\nRoberto\nHector\nHunter\nRaymond\nEdward\nGerardo\nRuben\nIan\nErick\nNicolas\nVincent\nPatrick\nJeremy\nJoel\nMartin\nCharles\nLuke\nCaleb\nJake\nCole\nAlan\nArmando\nPedro\nCody\nSebastian\nHenry\nGarrett\nGiovanni\nRaul\nAbraham\nAndy\nMarco\nRafael\nPaul\nSeth\nJeffrey\nKenneth\nDevin\nBlake\nEnrique\nDominic\nLogan\nGeorge\nMason\nSpencer\nMarcos\nJaime\nEdwin\nLeonardo\nJosue\nChase\nPeter\nMarcus\nDerek\nJulio\nLucas\nArturo\nBryce\nAlberto\nEmmanuel\nSalvador\nBrendan\nJeremiah\nJackson\nErnesto\nXavier\nStephen\nIsrael\nTristan\nAlfredo\nTanner\nFrank\nJohnny\nGustavo\nMoises\nScott\nShane\nTravis\nMaxwell\nBradley\nFabian\nGavin\nWyatt\nElias\nGregory\nSaul\nMax\nPablo\nAidan\nAndre\nAlbert\nAlec\nRamon\nGrant\nLiam\nRiley\nEsteban\nDamian\nJohnathan\nGuillermo\nJimmy\nShawn\nIsmael\nDillon\nTaylor\nMitchell\nPhillip\nParker\nRodrigo\nAbel\nDanny\nHugo\nColin\nHarrison\nEmilio\nDakota\nJosiah\nSteve\nMathew\nMarc\nCasey\nCalvin\nDevon\nJerry\nHayden\nRene\nJakob\nCarson\nDustin\nRodolfo\nDonovan\nOwen\nNolan\nRandy\nTroy\nLorenzo\nBrett\nJoe\nRicky\nJonah\nUlises\nMauricio\nChad\nMiles\nRoman\nAlfonso\nTommy\nWesley\nCollin\nSantiago\nAdan\nGilberto\nRonald\nSimon\nTony\nColton\nAngelo\nEddie\nBryant\nArthur\nFelipe\nCorey\nMarvin\nLarry\nDennis\nUriel\nEmanuel\nNoe\nDrew\nChandler\nChris\nDante\nLouis\nAllen\nConner\nMicah\nPreston\nBrenden\nJaden\nDarren\nOsvaldo\nRogelio\nMalik\nNikolas\nIssac\nFelix\nClayton\nVicente\nEfrain\nRudy\nJoaquin\nBailey\nOliver\nPhilip\nSkyler\nCade\nAlvaro\nCarter\nDamien\nCory\nNoel\nLevi\nZackary\nBranden\nRamiro\nAdolfo\nHumberto\nJalen\nJonathon\nLeonel\nGriffin\nMateo\nDerrick\nKenny\nQuinn\nDarius\nGary\nIgnacio\nKai\nKeith\nCharlie\nGage\nGilbert\nAllan\nDominick\nDonald\nDawson\nTrenton\nUlysses\nMoses\nJessie\nMyles\nOctavio\nDean\nTrent\nCooper\nNickolas\nDalton\nKobe\nLawrence\nZane\nJoey\nKelvin\nOrlando\nCurtis\nWalter\nAgustin\nAlvin\nEzekiel\nIsaias\nMorgan\nTomas\nLance\nAli\nEli\nRoger\nDouglas\nEzequiel\nChance\nKaleb\nJayden\nNestor\nJarod\nKameron\nAvery\nBraden\nFreddy\nNelson\nCaden\nColby\nRigoberto\nRoy\nGerman\nBrayden\nBrennan\nDamon\nTheodore\nBrady\nBrent\nKristopher\nLeo\nRussell\nJayson\nDane\nJairo\nMaximilian\nDrake\nAldo\nAlonzo\nEugene\nAlonso\nMarlon\nMicheal\nZion\nByron\nEfren\nKyler\nRodney\nRolando\nShaun\nBrayan\nEstevan\nJay\nLandon\nRay\nTy\nGuadalupe\nIsiah\nJohnathon\nNathanael\nTrey\nAlfred\nAmir\nAiden\nConor\nDavis\nMike\nNeil\nQuentin\nTyrese\nLeon\nMisael\nLukas\nTristen\nAriel\nBrendon\nElvis\nGonzalo\nIsai\nHeriberto\nBobby\nKristian\nRonaldo\nStanley\nCarl\nCraig\nMalachi\nZachariah\nCruz\nJaylen\nMohammad\nSolomon\nAlexandro\nBruce\nFrankie\nSam\nBernardo\nRaymundo\nSage\nBrock\nDallas\nDarian\nEzra\nJon\nZachery\nArman\nDesmond\nFidel\nFrederick\nGerald\nJustice\nWilson\nAshton\nCristopher\nJovanny\nMiguelangel\nTerry\nGiovanny\nGrayson\nMelvin\nOrion\nDuncan\nEmiliano\nJulius\nKaden\nSantos\nJace\nFrancis\nIrvin\nMaurice\nOswaldo\nSkylar\nAxel\nBilly\nBryson\nCorbin\nElliott\nJoseluis\nRandall\nDario\nKeven\nRalph\nReginald\nAhmad\nDorian\nElliot\nFranklin\nJeffery\nLeonard\nMaximiliano\nWillie\nJamal\nJohan\nKody\nAron\nBennett\nConrad\nHernan\nJonas\nMariano\nRaphael\nReece\nWeston\nZackery\nDamion\nDeandre\nDemetrius\nEverardo\nPayton\nRonnie\nValentin\nArnold\nJasper\nPeyton\nRomeo\nBraulio\nCristobal\nDerick\nGraham\nIsidro\nJarrett\nJovany\nKeaton\nKeegan\nReed\nAhmed\nCamden\nGarret\nGregorio\nJordi\nQuincy\nReynaldo\nTodd\nCedric\nHarley\nHarold\nHarry\nJarrod\nJordon\nJunior\nMarcelo\nMaximillian\nAlessandro\nErnest\nKurt\nLuciano\nNick\nRory\nTrevon\nTyson\nDevan\nGenaro\nJefferson\nJordy\nMarshall\nTucker\nBeau\nDimitri\nGiancarlo\nIrving\nKarl\nLouie\nReese\nRoss\nBen\nCarlo\nDeven\nEverett\nHolden\nJovani\nKhalil\nRohan\nSonny\nTerrance\nBrody\nCyrus\nDarrell\nFavian\nFredy\nJamie\nMalcolm\nWarren\nBenito\nClay\nDavion\nMilton\nNikhil\nTerrell\nTyree\nAnton\nEliseo\nGiovani\nJarred\nKeenan\nKian\nMarcel\nMohammed\nRoland\nSterling\nTobias\nWayne\nWill\nAntony\nElmer\nGianni\nJerome\nJovanni\nLewis\nMarkus\nMauro\nNico\nPierce\nQuinton\nSawyer\nDarien\nGino\nJean\nJessy\nJuancarlos\nKendrick\nKieran\nMohamed\nRick\nTristin\nAdrien\nArnulfo\nDale\nElisha\nGlenn\nKeanu\nKellen\nKen\nMarcoantonio\nSahil\nStefan\nWalker\nBenny\nBrennen\nCamron\nDarryl\nRey\nAldair\nAugust\nBruno\nDan\nDangelo\nDeclan\nHerman\nHoward\nIzaiah\nJadon\nKent\nNathanial\nNathen\nRobin\nTerrence\nTom\nWinston\nAndreas\nArjun\nAurelio\nErnie\nGordon\nJovan\nJulien\nKade\nLee\nMarkanthony\nMarquise\nNigel\nSammy\nSidney\nAnderson\nDavon\nDevyn\nGeovanni\nJair\nJavon\nKoby\nRiver\nTylor\nTyrone\nValentino\nCoby\nDarion\nEmerson\nFermin\nGarrison\nLuiz\nMarcelino\nNorman\nQuintin\nRahul\nTariq\nAdalberto\nBraeden\nDejon\nGabino\nGeovanny\nGerson\nGunnar\nJacky\nJaiden\nKareem\nLuca\nMuhammad\nOsbaldo\nSantino\nTate\nUlisses\nAbram\nAddison\nAditya\nAntoine\nDarin\nDion\nEddy\nForrest\nFred\nGeoffrey\nJermaine\nLane\nPranav\nReid\nSheldon\nStephan\nWade\nArmand\nClinton\nDarnell\nDeshawn\nFederico\nGene\nJaylin\nJohnpaul\nJustus\nLamar\nReuben\nZechariah\nAsher\nAugustine\nAusten\nColeman\nDayton\nDeangelo\nDominik\nDominique\nElvin\nJosef\nKeoni\nLeandro\nLuisangel\nNiko\nSemaj\nVance\nAri\nBraxton\nDarwin\nDillan\nDonavan\nDwight\nEdgardo\nEleazar\nEriberto\nHamza\nJosh\nLeopoldo\nLuc\nMatteo\nMaverick\nReyes\nRonan\nAdonis\nAric\nBlaine\nBrice\nGeovany\nJaxon\nMarquis\nPaolo\nPerry\nPierre\nRosendo\nRoyce\nSamir\nSamson\nStone\nStuart\nAbner\nAjay\nAsa\nAustyn\nBret\nClaudio\nDexter\nFinn\nFlavio\nFreddie\nGrady\nHoracio\nJaren\nKane\nKurtis\nLucio\nNeal\nRocky\nShant\nSilas\nUlices\nAmari\nBernard\nCeasar\nDemetrio\nDeon\nEdmund\nEmmett\nHans\nIbrahim\nJaron\nJonatan\nKaran\nKenji\nLeroy\nMonte\nNehemiah\nOmari\nRamses\nRhys\nSami\nShayan\nSunny\nVarun\nAdriel\nAlijah\nArmani\nBrad\nBrandyn\nBraydon\nCaesar\nCayden\nDaryl\nDeion\nDon\nGideon\nIsaak\nJackie\nJeff\nJelani\nKasey\nKelly\nKirk\nKristofer\nLeland\nMitchel\nMohamad\nRylan\nTravon\nTriston\nYusuf\nAbdullah\nAnakin\nAndrei\nArnoldo\nAyden\nBill\nClarence\nCristofer\nCuauhtemoc\nDenver\nDonte\nEdson\nEmil\nErwin\nFiliberto\nFranco\nHarvey\nIsac\nJudah\nJude\nKendall\nLamont\nLionel\nLoren\nMarcanthony\nMarcello\nMatias\nMekhi\nMustafa\nNorberto\nPete\nReilly\nRichie\nSeamus\nSilvestre\nTyrell\nVaughn\nVidal\nWolfgang\nAnish\nArmon\nClark\nDave\nDavin\nDevonte\nFausto\nHarman\nJamar\nJaycob\nJensen\nJim\nJoan\nJosemanuel\nJustyn\nKolby\nKole\nLazaro\nLeslie\nLevon\nMackenzie\nMikel\nParis\nRyder\nTerence\nTitus\nTrinidad\nAlden\nAlek\nAman\nArvin\nCamilo\nClifford\nGlen\nGuy\nHudson\nIsacc\nIsreal\nJamil\nJett\nJohnnie\nKarim\nKennedy\nMilo\nNikko\nRashad\nRex\nRowan\nShea\nSione\nTaj\nToby\nTrever\nWilly\nYousef\nZuriel\nAram\nArron\nBishop\nBradford\nChasen\nClemente\nClint\nDallin\nDarrius\nEaston\nEder\nEdmundo\nEloy\nFransisco\nFredrick\nGreg\nHarris\nHassan\nJacinto\nJaydon\nJimmie\nJohnson\nJonnathan\nJorden\nJusten\nKalen\nKeshawn\nKhalid\nLeobardo\nMarques\nMaxim\nMikael\nNikolai\nPrince\nRamsey\nRickey\nRon\nShamar\nSky\nSoren\nTheo\nWilfredo\nXander\nAlain\nAnders\nAndru\nAndrue\nArian\nBarry\nBlaze\nBroderick\nCamren\nCarlton\nCullen\nDyllan\nDylon\nEliot\nErich\nGildardo\nGiovany\nHerbert\nImanol\nJacobo\nJade\nJafet\nJohnmichael\nKahlil\nKalvin\nKeyshawn\nKory\nKunal\nLeif\nLisandro\nLonnie\nMarquez\nMikhail\nNiklas\nNima\nParth\nPhoenix\nQuinten\nReymundo\nRonny\nSuraj\nTalon\nTed\nTre\nVincente\nVladimir\nWilmer\nZain\nZakary\nAkshay\nArmen\nBenson\nBrycen\nBryon\nColten\nDajon\nDanilo\nDemitri\nDeshaun\nDevante\nDomenic\nDru\nEamon\nEarl\nEllis\nEnoch\nEnzo\nFaisal\nGriffen\nHuy\nJameson\nJordyn\nJuanmanuel\nKainoa\nKalani\nKamron\nKonnor\nLars\nLaurence\nNeel\nNikita\nNoa\nOsman\nPorter\nRaven\nRemington\nRico\nRishi\nRoderick\nRyley\nSameer\nSarkis\nSimeon\nStephon\nTaha\nVernon\nVince\nWilber\nYonatan\nZaid\nAleksander\nAlexandre\nAlexzander\nAmado\nAnson\nAntwan\nAramis\nArmaan\nArtemio\nBaltazar\nBernabe\nBoris\nBradly\nBrandan\nBrenton\nBrooks\nCain\nCallum\nCannon\nDandre\nDashiell\nDeondre\nDonnie\nEan\nEdmond\nErasmo\nErin\nEsai\nFrancesco\nFranky\nGamaliel\nImmanuel\nIshmael\nJamel\nJamison\nJedidiah\nJerson\nJess\nJohann\nJoseangel\nJoseantonio\nJosedejesus\nJuanpablo\nJuvenal\nKenton\nKeon\nKevyn\nLatrell\nLino\nLloyd\nLondon\nMarcellus\nMaximino\nMaximo\nObed\nPaulo\nRhett\nSkye\nStefano\nStewart\nSyed\nTai\nTim\nTyrique\nUbaldo\nWillis\nZack\nAndrey\nAndrez\nAries\nAshley\nBrando\nBrennon\nChristofer\nCisco\nDaron\nDarrien\nDavian\nDenny\nDeonte\nDerian\nDillion\nDomingo\nDonny\nDuke\nDwayne\nEliezer\nFeliciano\nGiuseppe\nHugh\nIain\nIsaih\nJad\nJaelen\nJennifer\nJered\nJerod\nJerrod\nJuanjose\nKevon\nKorey\nKylan\nLanden\nLincoln\nLinus\nLucky\nMarkel\nMatt\nMatthias\nMichaelangelo\nMilan\nMoshe\nNader\nPaxton\nQuinlan\nRami\nRaymon\nReggie\nRenato\nRudolph\nRuvim\nSantana\nSavion\nServando\nSeven\nShelby\nSiddharth\nTevin\nTrace\nTruman\nTyreke\nUriah\nUziel\nVincenzo\nYael\nAbran\nAden\nAlfonzo\nAmador\nAshwin\nAugustin\nAuston\nAvi\nBo\nBraedon\nBrant\nClifton\nClyde\nCordell\nCristo\nDajuan\nDamani\nDarrel\nDaylon\nDemarco\nDenilson\nDilan\nDontae\nEdwardo\nErvin\nEugenio\nEver\nEvin\nFaustino\nFlorencio\nForest\nGareth\nGaspar\nGaven\nGenesis\nGeronimo\nGianluca\nHakeem\nHilario\nHomero\nImran\nIrwin\nIsael\nIzaac\nIzayah\nJagger\nJarren\nJeromy\nJevon\nJihad\nJob\nJuaquin\nKaelan\nKaiden\nKain\nKamari\nKarthik\nKenyon\nKerry\nKris\nLangston\nLayne\nLester\nMadison\nMarcell\nMaria\nMerrick\nMigel\nMykel\nNahum\nNajee\nNash\nOtto\nParsa\nPatricio\nRajan\nReagan\nRemy\nRohit\nSalomon\nSerafin\nShayne\nShiloh\nSylvester\nTahj\nThaddeus\nTimmy\nTrayvon\nTrystan\nAbdulrahman\nAbhishek\nAdair\nAj\nAkhil\nAlexsander\nAmar\nAren\nArya\nBarrett\nBasil\nBilal\nBronson\nCamryn\nCandido\nCassidy\nCedrick\nChaz\nChester\nChristion\nConrado\nCurren\nDameon\nDaren\nDarrian\nDartagnan\nDavonte\nDemetri\nDonavon\nEden\nEdison\nEitan\nElan\nEligio\nEly\nEsau\nEsequiel\nFaris\nFloyd\nGalen\nGannon\nGarett\nGerard\nGevorg\nHenrry\nHiram\nJabari\nJaleel\nJasen\nJaskaran\nJasson\nJayvon\nJeronimo\nJjesus\nJordin\nJosias\nKadin\nKale\nKamren\nKayden\nKekoa\nKyree\nLong\nLyle\nMaceo\nMahmoud\nMalek\nManny\nMarley\nMihir\nMinh\nNeftali\nNicholaus\nOtis\nPavel\nReno\nRonin\nSaif\nSebastien\nShivam\nStevan\nSullivan\nTavion\nTino\nTristian\nUlyses\nVahe\nVinh\nVivek\nWestin\nYash\nYosef\nYoung\nYovani\nAbelardo\nAbisai\nAkira\nAmani\nAmeer\nAmit\nAndranik\nAndrea\nAngus\nAnirudh\nAntwon\nAria\nAryan\nAsad\nAtticus\nAzael\nBenedict\nBenton\nBijan\nBladimir\nBowen\nCarmelo\nChancellor\nClaude\nCorwin\nDamari\nDarrin\nDarrion\nDashawn\nDemond\nDenzel\nDereck\nDeric\nDerrik\nDesean\nDesi\nDestin\nDewayne\nDino\nDuane\nElder\nElian\nEliel\nElton\nEmery\nEwan\nGarren\nGarrick\nGeno\nGian\nGreyson\nGrigor\nGus\nHeber\nIman\nIra\nIsmail\nIzaak\nJahaziel\nJamari\nJaylan\nJaylon\nJerald\nJerardo\nJiovanni\nJohnatan\nJossue\nJr\nKarson\nKhoi\nKhristian\nKiran\nKolton\nKonner\nKorbin\nKrishna\nKyron\nLenny\nLuisenrique\nMack\nMarcial\nMarino\nMarshawn\nMathias\nMckay\nMichelangelo\nNatanael\nNikolaus\nNiles\nNorris\nOmid\nOsmar\nOzzy\nRace\nRandolph\nRasheed\nRefugio\nRenzo\nRich\nRigo\nRio\nRitchie\nRobbie\nRojelio\nRoque\nRosalio\nRyland\nRylee\nSabian\nSal\nSalvatore\nSamantha\nSanjay\nShan\nShannon\nSilvano\nSpenser\nStephanie\nTal\nTarik\nTevita\nTobin\nTou\nTrevin\nTreyvon\nTyriq\nVishal\nVito\nWaleed\nWilbert\nWilliams\nYoussef\nYovany\nYusef\nAkash\nAlexei\nAlon\nAmando\nAn\nAndree\nAntoni\nArash\nAristotle\nAubrey\nAugustus\nAzriel\nBeck\nBlair\nBlaise\nBodie\nBrannon\nBrevin\nBritton\nCandelario\nCecilio\nCelso\nCharly\nChazz\nCian\nCobi\nColeton\nCornelius\nCristhian\nCy\nDakotah\nDaveon\nDenis\nDequan\nDiana\nDomonic\nDonavin\nEdgard\nEdiberto\nFidencio\nFinnegan\nGaston\nGaurav\nGerry\nGevork\nGil\nHakop\nHieu\nIshan\nIssiah\nJaciel\nJacques\nJajuan\nJalil\nJan\nJaquan\nJavonte\nJax\nJayce\nJaysen\nJeramiah\nJeron\nJerrell\nJessi\nJezreel\nJorje\nJuanantonio\nJules\nJuventino\nJuwan\nKalin\nKamal\nKc\nKenan\nKeshav\nKhaled\nKhang\nKimani\nKodi\nKohl\nLaith\nLavell\nLazarus\nLemuel\nMaison\nMakai\nMargarito\nMarion\nMarkjoseph\nMarty\nMateen\nMaxime\nMckinley\nMenachem\nNam\nNeema\nNevin\nNikola\nNile\nOsama\nOsiel\nPascual\nPorfirio\nRajiv\nRomario\nRomel\nRony\nRosario\nSaad\nSachin\nSasha\nSelvin\nShay\nShon\nSilverio\nSixto\nSydney\nTito\nTorrey\nVan\nVinny\nWestley\nWillem\nYair\nYoel\nYousuf\nAbdiel\nAbrahan\nAdiel\nAdnan\nAdrain\nAlbaro\nAlejo\nAlexi\nAlistair\nAmilcar\nAmrit\nAmritpal\nAnibal\nAnjel\nAnselmo\nArin\nArnav\nArsalan\nArt\nArtin\nAsael\nAsante\nAskari\nAviel\nAyman\nAyush\nBaylor\nBlas\nBodhi\nBraiden\nCaelan\nCallan\nCalum\nCarey\nCarlosdaniel\nCary\nCassius\nCharley\nCiaran\nDanial\nDax\nDeanthony\nDemario\nDevlin\nDiamond\nDimitrius\nDonnell\nDuy\nEian\nElio\nElyjah\nEmory\nEnrrique\nEsdras\nEthen\nEusebio\nFinnian\nFlorentino\nFredi\nGaret\nGavan\nGermain\nGerrit\nGibran\nGillermo\nGorge\nHamilton\nHarout\nHarpreet\nHasan\nHenrik\nHeron\nHiroki\nIshaan\nJaedon\nJai\nJalyn\nJarek\nJarell\nJarett\nJavan\nJaxson\nJayro\nJeffry\nJeovany\nJeremias\nJericho\nJerimiah\nJoesph\nJomar\nJuliocesar\nJullian\nJun\nKabir\nKacey\nKaleo\nKamran\nKavon\nKellan\nKenta\nKhari\nKiernan\nKillian\nKishan\nKoa\nKonrad\nKush\nKwame\nLachlan\nLauren\nLeandre\nLucian\nLuigi\nLyndon\nMacario\nMagnus\nMalakai\nMalique\nMarko\nMarlo\nMasen\nMatin\nMattias\nMaxx\nMelissa\nMessiah\nMissael\nMontgomery\nMyron\nNabeel\nNabil\nNarciso\nNarek\nNasir\nNeo\nNicky\nNicolai\nOswald\nPierson\nQuan\nRandal\nRaudel\nRavi\nRayan\nReymond\nRickie\nRyen\nRyker\nSalim\nSampson\nSamual\nSandro\nSaulo\nSchuyler\nSequoia\nSerjio\nSherman\nShiv\nSteele\nStevie\nTadeo\nTakumi\nTam\nTeodoro\nTerell\nThai\nThompson\nTorin\nTracy\nTrae\nTyrece\nTyreek\nTyus\nVahan\nValente\nWest\nXzavier\nYanni\nZaire\nZakaria\nZamir\nZeth\nZeus\nZev\nAb\nAbdul\nAbiel\nAbimael\nAble\nAbrahm\nAdel\nAdryan\nAharon\nAjani\nAkil\nAlen\nAlexes\nAlexiz\nAmbrose\nAmer\nAmin\nAmos\nAndi\nAndrik\nAndruw\nAnkur\nAnthoney\nApolinar\nArion\nArmond\nArsh\nBaily\nBaron\nBernardino\nBlane\nBlayne\nBrain\nBrandin\nBrandt\nBrighton\nBroc\nCameren\nCampbell\nChace\nChadwick\nChauncey\nChet\nChristophe\nCj\nCodey\nCodie\nCorban\nCordel\nCornelio\nCornell\nCortez\nCosme\nCourtney\nCoy\nDade\nDaijon\nDalen\nDamarea\nDamone\nDamonte\nDany\nDaquan\nDarrick\nDasan\nDaylen\nDeante\nDedrick\nDeepak\nDelaney\nDelvin\nDelvon\nDerik\nDevonta\nDezmond\nDhruv\nDillen\nDonaldo\nDonovin\nDuran\nEarnest\nEd\nElijiah\nElyas\nEmad\nEmari\nEmmanuelle\nEnrico\nEriq\nEtienne\nFahad\nFischer\nFlynn\nFoster\nFranklyn\nGabriela\nGarin\nGeovani\nGibson\nGray\nGrey\nGunner\nHarutyun\nHasani\nHermilo\nHezekiah\nHubert\nHumza\nHuriel\nHussein\nHyrum\nIkenna\nIndiana\nIran\nIsaia\nIsrrael\nIssa\nIssak\nJacorey\nJadin\nJaeden\nJahred\nJakub\nJalon\nJamin\nJaret\nJarron\nJasiah\nJasmeet\nJasmin\nJeancarlo\nJeanpaul\nJerad\nJeric\nJerman\nJerrick\nJeshua\nJhovany\nJoao\nJohannes\nJohnathen\nJohnpatrick\nJohny\nJonny\nJosealberto\nJosejuan\nJoshuah\nJoshue\nJovanie\nJozef\nJuanalberto\nJuanito\nJuanluis\nKaelen\nKaito\nKarsten\nKavi\nKazuki\nKeandre\nKeelan\nKelley\nKelsey\nKelton\nKendell\nKesean\nKevan\nKevion\nKeyon\nKhristopher\nKiefer\nKile\nKordell\nKristoffer\nLamberto\nLarenz\nLaron\nLizandro\nLowell\nLuisfernando\nLydell\nMagdaleno\nMalcom\nMaleek\nManpreet\nManraj\nManveer\nMarciano\nMarwan\nMatan\nMaxfield\nMaximillion\nMaynor\nMelquiades\nMicaiah\nMickey\nMikah\nMikey\nMiller\nMin\nMohit\nMontana\nNapoleon\nNavid\nNerses\nNery\nNicklaus\nNicolaus\nNils\nNoam\nOmero\nOsiris\nOtoniel\nOziel\nPavan\nPerris\nPhilippe\nPrateek\nRaj\nRandell\nRashawn\nRenan\nRenee\nRian\nRichmond\nRishab\nRodger\nRomello\nRommel\nRueben\nRusty\nRyne\nSabastian\nSabino\nSaeed\nSagar\nSahib\nSai\nSalman\nSatchel\nScot\nShae\nShmuel\nSlater\nStetson\nTakashi\nTakoda\nTalha\nTan\nTaron\nTavian\nTeo\nThang\nThanh\nThor\nTrentin\nTye\nTylar\nTyon\nTyreese\nTyrek\nTyrelle\nTyron\nTyshawn\nUmar\nVaibhav\nVijay\nVikram\nViraj\nVirgil\nVitaliy\nWayde\nWaylon\nWilbur\nWilder\nYaakov\nYehuda\nYordi\nZabdiel\nZach\nZaki\nZander\nZyon\nAbbas\nAdin\nAdrean\nAedan\nAkili\nAleczander\nAleksei\nAlexandros\nAlireza\nAlton\nAmadeo\nAnand\nAnfernee\nAngela\nAnmol\nAra\nArcadio\nArden\nArik\nAristeo\nArjan\nArmin\nArmondo\nArsen\nArshdeep\nAthan\nAudel\nAydan\nAydin\nAyrton\nBarron\nBennie\nBentley\nBonifacio\nBrandy\nBranson\nBrigham\nBrodie\nBryton\nCaiden\nCanyon\nCase\nCasper\nCelestino\nCha\nChadd\nChanning\nChristen\nCiro\nClement\nColt\nConstantino\nCosmo\nCoty\nCurtiss\nCyle\nDagoberto\nDakarai\nDamond\nDani\nDanieljohn\nDannie\nDanniel\nDara\nDarious\nDariush\nDarron\nDashon\nDaveion\nDayne\nDelano\nDelfino\nDemarea\nDerrek\nDeshon\nDevaughn\nDiangelo\nDidier\nDimas\nDirk\nDmitri\nDomenico\nDonaven\nDonavyn\nDontay\nDonyae\nDraven\nDuc\nDustyn\nDutch\nEdan\nEdilberto\nEdvin\nEdwardjames\nEladio\nElbert\nElie\nEnoc\nErnan\nEros\nEryk\nEsteven\nEstuardo\nEvaristo\nExavier\nFabricio\nFabrizio\nFarhan\nFavio\nFletcher\nFord\nFox\nFrederic\nGaberiel\nGabrial\nGagandeep\nGaren\nGavyn\nGer\nGiovan\nGiovannie\nGovanni\nGraeme\nGrayden\nGurpreet\nHabib\nHagop\nHamzah\nHansen\nHari\nHaris\nHarjot\nHenri\nHien\nHowie\nHussain\nIban\nIlan\nIsais\nIsauro\nIven\nIvory\nIzac\nJabril\nJacari\nJaelin\nJailen\nJalani\nJamir\nJanson\nJarel\nJarret\nJaskarn\nJasmine\nJaspreet\nJaylyn\nJayme\nJaymes\nJaziel\nJeanpierre\nJens\nJestin\nJet\nJhovanny\nJin\nJiovani\nJoab\nJobani\nJohnanthony\nJohnie\nJomari\nJonathen\nJory\nJosealfredo\nJoshuajames\nJovon\nJuandaniel\nJurgen\nJustino\nJustis\nJusto\nKaelin\nKalan\nKalob\nKamryn\nKannon\nKarapet\nKaren\nKarlo\nKaron\nKavan\nKaven\nKaya\nKaylen\nKayvon\nKeilan\nKejuan\nKento\nKenyatta\nKeshaun\nKhai\nKhalif\nKhoa\nKhyree\nKiel\nKim\nKimo\nKing\nKingsley\nKingston\nKirby\nKong\nKrystian\nKye\nKylin\nLamarr\nLeighton\nLucca\nLuisalberto\nMakhi\nMarck\nMarkell\nMarkos\nMathieu\nMaximilliano\nMichaelanthony\nMichel\nMikeal\nMilad\nMitch\nMizael\nMoisses\nMorris\nMurphy\nNaji\nNancy\nNasser\nNathanel\nNathon\nNaveed\nNaveen\nNavjot\nNayib\nNevan\nNewton\nNiccolo\nNoble\nObinna\nOcean\nOlivier\nOmeed\nOri\nOskar\nOsmin\nPalmer\nPatric\nPearson\nPheng\nPlacido\nPresley\nQuaid\nRaleigh\nReyhan\nReza\nRichardo\nRidge\nRocco\nRoel\nRoosevelt\nRubin\nRustin\nRyo\nSaketh\nSalem\nSaxon\nSeena\nSesar\nShareef\nShelton\nShreyas\nShyam\nSiddarth\nSon\nSukhman\nSultan\nSumit\nTaariq\nTahir\nTaiki\nTarek\nTejas\nTerran\nTheron\nTien\nTiger\nTj\nTommie\nTravell\nTrenten\nTreshawn\nTrinity\nTyrus\nUsman\nUzziel\nVicent\nVictormanuel\nViktor\nViliami\nVinay\nVon\nWallace\nWatson\nWayland\nWendell\nYasin\nYasser\nYonathan\nYuuki\nZakariya\nZavier\nZayn\nZayne\nZen\nDaniel\nAnthony\nJose\nAndrew\nMichael\nJacob\nJoshua\nChristopher\nDavid\nMatthew\nJonathan\nJoseph\nBrandon\nNicholas\nRyan\nChristian\nKevin\nAngel\nLuis\nJuan\nAlexander\nJustin\nJesus\nCarlos\nBrian\nNathan\nWilliam\nGabriel\nJohn\nTyler\nAdrian\nJason\nBryan\nEthan\nRobert\nMiguel\nJames\nAlejandro\nEric\nZachary\nBenjamin\nDylan\nSamuel\nNoah\nAaron\nIsaac\nIsaiah\nSebastian\nJordan\nKyle\nSteven\nEduardo\nVictor\nJorge\nJulian\nOscar\nThomas\nCameron\nAustin\nRichard\nRicardo\nFrancisco\nAlex\nDiego\nFernando\nAdam\nJack\nAlexis\nAntonio\nElijah\nJesse\nSean\nManuel\nAndres\nJared\nCesar\nIvan\nNathaniel\nEvan\nOmar\nMark\nSergio\nJavier\nCristian\nHunter\nEdgar\nConnor\nIan\nTimothy\nGerardo\nMario\nHector\nRoberto\nCole\nErick\nLogan\nErik\nVincent\nRuben\nLuke\nAlan\nEdward\nAndy\nCaleb\nJeremy\nCharles\nMarco\nJoel\nSeth\nPatrick\nMartin\nTrevor\nJake\nCody\nRaymond\nDevin\nNicolas\nArmando\nMason\nAbraham\nGarrett\nPedro\nHenry\nEnrique\nRaul\nGeorge\nGustavo\nGiovanni\nJeffrey\nLucas\nRafael\nBlake\nKenneth\nEdwin\nDominic\nJackson\nSpencer\nPaul\nAlberto\nJeremiah\nLeonardo\nMarcus\nAidan\nMarcos\nChase\nSalvador\nEmmanuel\nXavier\nJosue\nDerek\nGavin\nPeter\nJaime\nJulio\nIsrael\nSaul\nMoises\nShane\nBryce\nElias\nArturo\nFabian\nMaxwell\nAlfredo\nMax\nStephen\nEsteban\nJohnny\nRiley\nWyatt\nFrank\nTanner\nPablo\nDamian\nGrant\nTristan\nBrendan\nScott\nErnesto\nCarson\nAlbert\nLiam\nTravis\nAndre\nOwen\nRamon\nDanny\nJakob\nJimmy\nJohnathan\nColin\nParker\nBradley\nGregory\nAbel\nJosiah\nJalen\nAlec\nMarc\nShawn\nHugo\nMitchell\nGuillermo\nIsmael\nBryant\nTaylor\nHayden\nJaden\nJerry\nEmilio\nRodrigo\nMathew\nSteve\nJonah\nHarrison\nNolan\nPreston\nAxel\nDevon\nMiles\nRene\nCalvin\nDillon\nDustin\nLorenzo\nPhillip\nSantiago\nRodolfo\nColton\nRoman\nDonovan\nAngelo\nOliver\nArthur\nCollin\nTommy\nMauricio\nRandy\nAllen\nRonald\nEddie\nUriel\nBrett\nAlvaro\nAlfonso\nCasey\nUlises\nKobe\nClayton\nEmanuel\nMicah\nWesley\nKai\nSimon\nRicky\nDakota\nFelipe\nLouis\nRogelio\nTony\nTroy\nJoe\nChad\nRudy\nJayden\nAdan\nDennis\nCade\nConner\nGilberto\nDominick\nNoe\nGilbert\nTrent\nKeith\nDarren\nLance\nOsvaldo\nBrenden\nCarter\nCorey\nDrake\nEli\nFelix\nMarvin\nEfrain\nKaleb\nDamien\nGage\nJoaquin\nLeonel\nAllan\nChris\nDante\nJonathon\nBailey\nGriffin\nMalik\nSkyler\nCooper\nCory\nDrew\nRamiro\nMateo\nTrenton\nAgustin\nIsaias\nLeo\nPhilip\nIssac\nMoses\nAdolfo\nLawrence\nLevi\nChance\nDonald\nZane\nGary\nNoel\nJoey\nKenny\nMyles\nCaden\nOrlando\nElian\nLarry\nNickolas\nTomas\nIgnacio\nRoger\nVicente\nZackary\nDerrick\nHumberto\nAlvin\nDalton\nOctavio\nDarius\nAiden\nBrayan\nDouglas\nJessie\nKristopher\nCharlie\nEmiliano\nRoy\nEzekiel\nChandler\nJaylen\nTheodore\nKameron\nAli\nFreddy\nQuinn\nRigoberto\nNelson\nNikolas\nDean\nCurtis\nMaximilian\nWalter\nAlonso\nAvery\nBranden\nEzequiel\nColby\nRussell\nCristopher\nGerman\nKaden\nMorgan\nKelvin\nBrayden\nEugene\nMike\nZion\nAshton\nGonzalo\nTy\nAldo\nBrennan\nDawson\nEstevan\nLandon\nEzra\nBraden\nPeyton\nBrent\nDamon\nIsiah\nMisael\nByron\nGiovanny\nLukas\nNathanael\nRay\nAmir\nJairo\nRaymundo\nAlonzo\nAriel\nBrock\nCruz\nMarlon\nPayton\nRolando\nBrady\nGuadalupe\nShaun\nTristen\nZachariah\nAlfred\nDavis\nElvis\nMalcolm\nUlysses\nCyrus\nNestor\nDarian\nJayson\nSolomon\nDane\nDorian\nEfren\nJohnathon\nLeonard\nTrey\nSam\nBryson\nElliot\nJace\nJay\nJustice\nKristian\nConor\nIsidro\nAlexandro\nDeandre\nKeven\nTucker\nBruce\nFidel\nLeon\nMaurice\nMicheal\nQuentin\nSage\nBobby\nIrvin\nJeffery\nJon\nZachery\nBrendon\nJoseluis\nLuca\nMelvin\nNeil\nBilly\nCarl\nKieran\nKody\nOswaldo\nCraig\nDario\nFranklin\nGarret\nJarrett\nRohan\nValentin\nErnest\nFrankie\nBraulio\nMohammad\nCorbin\nCristobal\nGerald\nJulius\nStanley\nEverett\nGenaro\nHarry\nRodney\nSantos\nTyson\nAron\nDeven\nJonas\nKyler\nOrion\nRomeo\nRonaldo\nDesmond\nHeriberto\nJarod\nJasper\nJovanny\nMarcelo\nBernardo\nGiancarlo\nGianni\nJovany\nMalachi\nAhmad\nAhmed\nIsai\nJunior\nKendrick\nMaximillian\nNick\nSonny\nArnold\nBeau\nCarlo\nDallas\nGraham\nIzaiah\nJovani\nKeanu\nLouie\nMaximiliano\nMiguelangel\nWillie\nCamden\nDavion\nGregorio\nJarred\nRandall\nReginald\nRonnie\nAugust\nEliseo\nEverardo\nFrederick\nGrayson\nRahul\nRaphael\nStefan\nAddison\nDerick\nIsaak\nWade\nWill\nBen\nFrancis\nJadon\nJuancarlos\nKeegan\nMarshall\nMauro\nTobias\nDamion\nDominique\nGiovani\nMarkus\nTyrone\nWeston\nBrody\nConrad\nDimitri\nHolden\nLee\nMilo\nReece\nSkylar\nDuncan\nGordon\nJulien\nKeenan\nKent\nKhalil\nMohamed\nTylor\nWilson\nBenito\nBenny\nDarrell\nHoward\nJohan\nMohammed\nPierce\nQuinton\nStuart\nTodd\nArman\nDangelo\nDeclan\nDemetrius\nElmer\nReed\nReese\nRory\nTerry\nTyrese\nAri\nCedric\nClay\nDarin\nGeoffrey\nHarold\nJair\nKellen\nMariano\nReid\nRick\nDevyn\nIrving\nJovanni\nKendall\nMarquis\nAnton\nBlaine\nElliott\nFavian\nJordy\nKian\nMaximus\nReynaldo\nSahil\nWarren\nZackery\nAntony\nAsher\nJordon\nKade\nKeaton\nKoby\nRalph\nTitus\nAdalberto\nBennett\nErnie\nGeovanni\nGlenn\nJoan\nJovan\nLuc\nMilton\nMuhammad\nNorman\nTerrell\nAlessandro\nBill\nCristofer\nDale\nDarryl\nEmerson\nJaron\nJerome\nJosh\nMarcanthony\nMatteo\nOsbaldo\nRey\nRylan\nTerrence\nTyree\nWalker\nAdrien\nBraeden\nJan\nNigel\nNikhil\nRamses\nRoland\nCoby\nForrest\nJamie\nLucio\nMarcelino\nNico\nRonan\nRoss\nRyder\nSammy\nTate\nWinston\nArjun\nAyden\nEdson\nErwin\nFlavio\nGeovanny\nHudson\nIsac\nJamal\nJarrod\nJim\nLong\nMarcel\nNehemiah\nQuincy\nSawyer\nTerrance\nToby\nTristin\nAldair\nDarien\nDon\nFredy\nGerson\nHarley\nHernan\nJavon\nJefferson\nKareem\nKen\nQuintin\nTriston\nBruno\nCamron\nDavon\nDejon\nElisha\nEnzo\nEriberto\nFederico\nHamza\nIbrahim\nJaylin\nJosef\nKane\nKarl\nLuciano\nNiko\nRobin\nUlices\nAdriel\nAndreas\nBrennen\nBrice\nDillan\nDion\nDwayne\nGino\nJackie\nJaiden\nJaxon\nMarcoantonio\nMaxim\nNathanial\nPhoenix\nSamson\nTariq\nAlek\nDan\nDarion\nDevan\nDominik\nEsau\nFreddie\nIsacc\nLane\nLeobardo\nLewis\nPerry\nReyes\nRiver\nStephan\nTalon\nAbner\nAbram\nAnderson\nAntoine\nCayden\nDeangelo\nDonte\nEddy\nGunnar\nJean\nJermaine\nJude\nJustyn\nVarun\nVladimir\nZaid\nAdonis\nAman\nAmari\nAram\nArmen\nClark\nEloy\nFinn\nJeff\nJordi\nKristofer\nKurtis\nNathen\nNorberto\nObed\nReuben\nRocky\nTheo\nTom\nUlisses\nClaudio\nDarnell\nGlen\nJameson\nJaren\nJaycob\nJett\nKelly\nKurt\nLionel\nLuiz\nMarcello\nNeo\nOsmar\nPaolo\nPranav\nRoyce\nSantino\nSidney\nAditya\nAsa\nBernard\nBrenton\nCuauhtemoc\nDarwin\nDavin\nDeshawn\nDomingo\nDonavan\nFermin\nGeronimo\nJacky\nJamison\nJohnson\nJorden\nKalvin\nLazaro\nMikel\nParis\nPrince\nRex\nShannon\nSterling\nZechariah\nAbdullah\nAlden\nAnish\nArian\nArmani\nArnulfo\nDaryl\nEdgardo\nEdmond\nFranky\nGreyson\nHassan\nKeoni\nKhalid\nKole\nLondon\nMitchel\nNeal\nShayan\nSilas\nStone\nTim\nTimmy\nTrevon\nVaughn\nAlexzander\nBaltazar\nBraxton\nEleazar\nEllis\nFredrick\nGarett\nGarrison\nHoracio\nJabari\nJacobo\nJohnpaul\nJonatan\nKarson\nKolby\nLamar\nLeif\nMarko\nMustafa\nPete\nPierre\nRhys\nRickey\nSemaj\nShamar\nTruman\nVidal\nVikram\nVince\nAlexandre\nAmador\nArmand\nBladimir\nBrycen\nCullen\nDomenic\nEdmund\nFranco\nGrady\nGuy\nImanol\nJaeden\nJohnmichael\nKeshawn\nLeopoldo\nLeroy\nLuisangel\nMarkanthony\nMikael\nRami\nRowan\nSamir\nShayne\nShea\nSoren\nSunny\nTai\nUriah\nWayne\nAmeer\nAngus\nBarry\nBrad\nBret\nBronson\nCaesar\nClifton\nDallin\nDeon\nDevonte\nIshmael\nJayce\nJedidiah\nJet\nJohann\nJustus\nKalani\nLonnie\nLoren\nNash\nNima\nPaulo\nRamsey\nReymundo\nRishi\nRoderick\nSalomon\nSarkis\nUbaldo\nValentino\nXander\nYair\nAurelio\nBilal\nBlaise\nBradly\nBrandan\nBryon\nDandre\nEden\nElvin\nEnoch\nFred\nGerard\nHarvey\nHerbert\nIsreal\nJessy\nJob\nJoseangel\nKamron\nKasey\nKenji\nKeon\nKevon\nKeyshawn\nLaurence\nLeandro\nLeland\nMadison\nMatias\nNeftali\nReilly\nRenzo\nRosendo\nSheldon\nSyed\nTrinidad\nWilfredo\nAden\nAjay\nAlijah\nArnoldo\nArtemio\nAustyn\nAvi\nBlair\nBlaze\nCeasar\nChaz\nClemente\nCordell\nDenis\nDereck\nDexter\nEaston\nEliezer\nErvin\nGil\nIshan\nIzaac\nIzaak\nJamar\nJaydon\nJaylon\nJericho\nJevon\nJohnnie\nKennedy\nKirk\nLamont\nLloyd\nLuka\nMilan\nNicklaus\nNikko\nNiklas\nNikolai\nQuinten\nSantana\nShant\nSione\nTerence\nTye\nYousef\nZaire\nZander\nAbdul\nAkhil\nAmin\nAnders\nAris\nBrodie\nCain\nClarence\nClyde\nDarrien\nDarrion\nDave\nDeonte\nDestin\nEarl\nEsequiel\nFinnegan\nGabino\nGeovany\nGideon\nHarris\nHerman\nImmanuel\nJelani\nJerardo\nJordin\nKainoa\nKory\nKylan\nLyle\nMarques\nMarquise\nMoshe\nNarek\nNicholaus\nOmari\nRavi\nRyley\nSabastian\nSalvatore\nSebastien\nShivam\nSiddharth\nSilvestre\nSydney\nValente\nVan\nVance\nVincenzo\nVishnu\nYovani\nZack\nZain\nZakary\nAkshay\nAmar\nAmit\nAndru\nArmon\nArron\nAugustin\nAugustine\nAusten\nBradford\nChasen\nColeman\nDanilo\nDavonte\nDayne\nDayton\nDraven\nDyllan\nElton\nGreg\nKamren\nKevyn\nKorey\nLars\nLeslie\nMaverick\nMaximo\nNeel\nPorter\nRemy\nRichie\nRony\nSeamus\nTrystan\nUziel\nWilmer\nYash\nYonatan\nYonathan\nYusuf\nAbhishek\nAbran\nAdin\nAmos\nAnson\nAric\nArvin\nArya\nBenson\nBoris\nBraydon\nCaelan\nDaren\nDashawn\nDeondre\nDino\nDonnie\nEly\nErasmo\nFiliberto\nGildardo\nHasan\nHilario\nIain\nIrwin\nJaylan\nJeramiah\nJiovanni\nJosemanuel\nJullian\nKadin\nKenyon\nKeyon\nKiran\nLester\nManav\nMarcell\nParth\nPresley\nQuinlan\nRaven\nRian\nRio\nRohit\nRoshan\nSami\nSimeon\nSkye\nStephon\nTobin\nTre\nVinh\nWillem\nAbdiel\nArath\nArmin\nAubrey\nAydin\nBlas\nBo\nBrandyn\nCaiden\nCarlton\nChester\nCian\nClifford\nColten\nDaron\nDarrick\nDax\nDemetri\nDhruv\nEan\nEder\nEdison\nEdwardo\nEliazar\nEmil\nEmmett\nErich\nErin\nEsdras\nEver\nFletcher\nFloyd\nForest\nHaden\nHans\nHanson\nIzayah\nJaedon\nJamari\nJasson\nJerod\nJessi\nJuanpablo\nKahlil\nKaiden\nKain\nKarim\nLanden\nLucca\nLucian\nMackenzie\nMarley\nMassimo\nMohamad\nNatan\nNicklas\nOskar\nOtto\nPavel\nPaxton\nRasheed\nRigo\nRudolph\nRyland\nRyu\nSameer\nShemar\nSilverio\nSpenser\nTheron\nTrace\nTrevion\nWilber\nXzavier\nYosef\nAbelardo\nAbhinav\nAce\nAdal\nAkash\nAkira\nAmado\nAndrey\nAnirudh\nAramis\nAshwin\nAugustus\nBaron\nBjorn\nBrando\nCamilo\nCamren\nCanaan\nCash\nChace\nChristofer\nCristo\nCristoval\nDashiell\nDeion\nDelfino\nDenzel\nDeron\nDonny\nDorien\nDuane\nDuke\nEliot\nEthen\nGareth\nGarry\nGeovani\nGian\nHumza\nIlan\nIshaan\nJafet\nJarett\nJayro\nJered\nJonathen\nJoshue\nJusten\nKayden\nKeshaun\nKobi\nLayne\nLenin\nManny\nMatt\nMaxime\nMaxx\nMickey\nMykel\nMyron\nNikola\nNikolaus\nOsman\nOtoniel\nPatricio\nRashad\nReagan\nReggie\nRico\nRomario\nRoque\nRylee\nServando\nShaan\nShreyas\nStefano\nTed\nThai\nTigran\nTrayvon\nTrever\nTristian\nTyrell\nYuki\nAlton\nAmani\nAmmon\nAndrez\nAndrue\nArik\nArmaan\nArnav\nAshley\nAtticus\nAviv\nBenedict\nBijan\nBishop\nBrooks\nCampbell\nCannon\nCharley\nCiro\nCisco\nDarrian\nDarrin\nDemitrius\nDilan\nDionicio\nEdgard\nEladio\nFausto\nFlynn\nFransisco\nGamaliel\nGannon\nGene\nGiorgio\nGiuseppe\nHeath\nHiram\nIra\nIzak\nJeancarlo\nJennifer\nJensen\nJerrick\nJess\nJhonatan\nJimmie\nJonnathan\nJudah\nKeagan\nKeandre\nKris\nKyree\nLauro\nLevon\nLino\nLuther\nMakai\nMalek\nMarino\nMarquez\nMarshawn\nMathieu\nMatthias\nMekhi\nMerrick\nMigel\nMontgomery\nNicolo\nOsmin\nRayan\nReno\nRhett\nRivaldo\nSavion\nSherman\nShiloh\nSilvano\nTayler\nThaddeus\nTravon\nTurner\nVernon\nVivek\nZavier\nZephaniah\nAbdallah\nAbdulrahman\nAleksander\nAlen\nAmbrose\nAnibal\nAristeo\nArmondo\nAryan\nAydan\nAyush\nBraiden\nBranson\nBroc\nCanyon\nClinton\nDajon\nDarrel\nDavian\nDemetrio\nDenny\nDylon\nEdan\nEphraim\nEsai\nEsgar\nEsteven\nFabricio\nFarhan\nGaige\nGaurav\nGeno\nGiovany\nGunner\nHadi\nHakim\nHarout\nHouston\nHussein\nImran\nIsael\nIzac\nJacques\nJai\nJajuan\nJamel\nJamil\nJasen\nJaskarn\nJayvon\nJeric\nJohnatan\nJonny\nJorgeluis\nJuanmanuel\nKalen\nKamran\nKaran\nKekoa\nKelsey\nKelton\nKeshav\nLenny\nLinus\nMajor\nMarcellus\nMarkell\nMaximillion\nMenachem\nMichaelangelo\nMihir\nMiller\nMissael\nMynor\nNam\nNavid\nNikita\nNikolaos\nNomar\nOdin\nOmid\nParsa\nRajan\nRayshawn\nRenato\nRojelio\nRon\nRonin\nRonny\nRufino\nSachin\nSaif\nSamer\nScotty\nShay\nSky\nSoham\nStevan\nSurya\nSyrus\nTaj\nTakoda\nTeddy\nTracy\nTrae\nVinay\nVincente\nVishal\nVito\nWestin\nWestley\nWilbert\nWillis\nYoussef\nZeus\nAbisai\nAdithya\nAlain\nAlfonzo\nAnakin\nAndrei\nAndruw\nAnsel\nAnuj\nArchie\nArden\nAria\nArun\nAsad\nBrallan\nBrandt\nBrennon\nBroderick\nCal\nCale\nCallum\nCanon\nCarmelo\nCecil\nCelso\nCharly\nChauncey\nChayton\nChazz\nChe\nChrystian\nCobi\nColt\nDagoberto\nDajuan\nDalen\nDamani\nDanniel\nDarrius\nDasani\nDaveon\nDaylan\nDelano\nDemarco\nDemonte\nDenilson\nDeshon\nDevlin\nDewayne\nDezmond\nEdrick\nElder\nEliel\nEliu\nElyjah\nEmmet\nEnoc\nEugenio\nEusebio\nFaisal\nFaraz\nFrancesco\nGalen\nGautam\nGaven\nGevork\nHakeem\nHakop\nHaris\nHarjot\nHarlan\nHezekiah\nHubert\nIman\nIsaih\nIsidoro\nIssiah\nJaelen\nJailen\nJameel\nJarret\nJavan\nJaydin\nJerrod\nJeshua\nJoesph\nJoseantonio\nJoshuah\nJossue\nJovon\nJules\nJun\nJuvenal\nKacey\nKale\nKalob\nKamryn\nKarlo\nKarlos\nKarsten\nKhari\nKingston\nKodie\nKristoffer\nLangston\nLemuel\nLuigi\nLyndon\nMagnus\nMalakai\nManpreet\nMargarito\nMarlin\nMarlo\nMaximino\nMerlin\nMichel\nMikey\nMohan\nMonte\nNabil\nNahum\nNatanael\nNazario\nOcean\nQuin\nRandolph\nReymond\nRobbie\nRocco\nSal\nSalman\nSanjay\nSaxon\nSchuyler\nShaquille\nShareef\nShelton\nSincere\nSlater\nSteele\nStewart\nSullivan\nSylvester\nTaha\nTahj\nTenzin\nTeodoro\nTevita\nThanh\nThor\nTimoteo\nTitan\nTylar\nUlyses\nVentura\nVictormanuel\nWilliams\nYobani\nZacarias\nZeke\nAbimael\nAdair\nAdnan\nAdryan\nAl\nAlecsander\nAmmar\nAnand\nAndrea\nAnthoney\nAnthoni\nArmond\nArt\nAshish\nAthan\nAzriel\nBaldemar\nBashar\nBernardino\nBodie\nBowen\nBrain\nBrandin\nBrigham\nCalder\nCedrick\nChristion\nChristos\nCj\nCobey\nConan\nConrado\nCornelius\nCorwin\nCreed\nCristhian\nCyle\nDaevon\nDain\nDameon\nDara\nDartagnan\nDaven\nDavit\nDaylen\nDemitri\nDenver\nDeontae\nDerik\nDevaughn\nDevion\nDimas\nDmitri\nDomenico\nDomonique\nDonaven\nDonnell\nDontae\nDru\nDwight\nDyllon\nEarnest\nEd\nEdric\nEhsan\nElan\nEliud\nEoin\nEros\nEzekial\nFaustino\nFlint\nFredi\nGarrick\nGavyn\nGenesis\nGianluca\nGraeme\nHakob\nHamilton\nHank\nHansel\nHaroon\nHasani\nHeber\nHenri\nHieu\nHomero\nIban\nImani\nIverson\nJacoby\nJadin\nJaedan\nJagger\nJakari\nJalani\nJaleel\nJalin\nJarell\nJarren\nJarvis\nJaven\nJaxson\nJayme\nJaysen\nJeanluc\nJeanpaul\nJeovanny\nJerimiah\nJessica\nJhonathan\nJoeseph\nJohny\nJordyn\nJosedejesus\nJosias\nJr\nJuandiego\nJuanjose\nJuaquin\nJuwan\nKaito\nKarthik\nKeion\nKellan\nKenan\nKennith\nKenton\nKerry\nKhaled\nKhristian\nKobie\nKodi\nKoji\nKrishna\nKunal\nKyron\nLatrell\nLazarus\nLincoln\nLizandro\nLuisenrique\nMaceo\nMahmoud\nMarciano\nMarck\nMaria\nMarty\nMateen\nMaynor\nMicaiah\nMichelle\nMilad\nMinh\nMister\nNapoleon\nNaythan\nNicolaus\nNishant\nNoa\nObadiah\nOlivier\nOmri\nOziel\nOzzy\nPalmer\nPayne\nPercy\nPerrion\nQuan\nRaffi\nRajiv\nRashid\nRemington\nRickie\nRishab\nRobby\nRoel\nRommel\nRosalio\nRoyal\nRudolfo\nRyo\nRyon\nSagar\nSandro\nSelvin\nSerafin\nSergey\nSevastian\nSriram\nSuraj\nTejas\nTommie\nTyriq\nTyron\nTyshawn\nUmar\nVijay\nVirgil\nWaylon\nWiley\nWolfgang\nYsidro\nZacary\nZakaria\nZayne\nAakash\nAayush\nAbbas\nAbrahan\nAdarsh\nAdiel\nAedan\nAj\nAjani\nAkeem\nAksel\nAlecxis\nAlexi\nAlexsis\nAnas\nAnastacio\nAnmol\nAnthonie\nAntoni\nAntonino\nAntwan\nArash\nAren\nArsen\nArsh\nArtin\nArtur\nAsael\nAshkon\nAsim\nAvinash\nAxell\nAyman\nBarrett\nBasil\nBasilio\nBayron\nBernabe\nBoaz\nBradlee\nBradon\nBradyn\nBraedon\nBrannon\nBrayam\nBrendyn\nBryton\nCandido\nCarlitos\nCary\nChadwick\nChancellor\nCiaran\nClint\nCodi\nColeton\nColter\nColtrane\nCortez\nCosme\nCrispin\nCutter\nCy\nDamari\nDana\nDeacon\nDelvin\nDelvon\nDeric\nDeshaun\nDragon\nDutch\nEathan\nEdmundo\nElbert\nElio\nEliott\nEnrrique\nEriq\nEvander\nEven\nEwan\nFeliciano\nFelipedejesus\nFranciscojavier\nFrederic\nFroylan\nGaren\nGaspar\nGray\nGriffen\nHaiden\nHugh\nIgor\nIsaiha\nIsmail\nJacinto\nJacquez\nJade\nJakeb\nJamiel\nJaquan\nJaret\nJavin\nJaxen\nJeffry\nJehu\nJerell\nJeremias\nJeremyah\nJerick\nJerico\nJeronimo\nJerson\nJesiah\nJezreel\nJhovany\nJin\nJjesus\nJoao\nJorje\nJosemaria\nKabir\nKaelan\nKaelen\nKaren\nKaro\nKasra\nKaveh\nKavon\nKayne\nKeller\nKeng\nKhoa\nKhoi\nKiel\nKillian\nKingsley\nKirby\nKohl\nKolton\nKonner\nKonnor\nKonrad\nKrishan\nKush\nLakota\nLaron\nLauren\nLavelle\nLawson\nLeandre\nLejon\nLorenso\nLowell\nMaleek\nMarkel\nMartell\nMathias\nMaurisio\nMavrick\nMaximilien\nMeelad\nMerced\nMichaelanthony\nMika\nMikah\nMikhail\nModesto\nMorris\nMuhammed\nMychael\nNaman\nNasir\nNaveen\nNevin\nNicky\nNiles\nNolen\nOctavian\nOracio\nOsiris\nPaige\nPorfirio\nRain\nRajvir\nRamy\nRayvon\nRaziel\nRemi\nRenan\nRiku\nRomel\nRomello\nRomero\nRonnell\nRueben\nRussel\nSabino\nSaige\nSammuel\nSandeep\nSander\nSaulo\nScot\nScottie\nShadi\nShon\nSixto\nSlade\nSocrates\nTallon\nTanay\nTaran\nTarek\nTavian\nTejon\nTevin\nTj\nTor\nTou\nTrevin\nTreyvon\nTrystin\nTuan\nTyran\nTyreese\nTyrique\nTyus\nUsiel\nVal\nViet\nViktor\nWalid\nWendell\nWyland\nYael\nYahya\nYaseen\nYordi\nYuma\nYusef\nZacharias\nZaki\nZayd\nZeth\nZev\nZiad\nAamir\nAbigail\nAdi\nAdriano\nAhmir\nAkili\nAlbino\nAldahir\nAlejandra\nAlejo\nAleksei\nAlesandro\nAlexandra\nAlexei\nAlexes\nAlexsandro\nAlexys\nAlphonso\nAly\nAmaan\nAmadeus\nAmilcar\nAmogh\nAndi\nAndree\nAneesh\nAngello\nAnjel\nAnselmo\nAnwar\nAres\nArgenis\nArie\nAries\nArin\nArjan\nArlo\nAshkan\nAssael\nAstin\nAugusto\nAuston\nAvraham\nAyrton\nAzad\nAzael\nAzrael\nBabyboy\nBakari\nBaxter\nBeck\nBenigno\nBenjamen\nBlaize\nBogdan\nBoyd\nBrydon\nCaeden\nCallahan\nCamryn\nCassidy\nCassius\nCesario\nCezar\nChirag\nChristan\nChristianpaul\nChristo\nChristoper\nCipriano\nColson\nCorban\nCormac\nCris\nDade\nDaemon\nDakotah\nDaquan\nDarek\nDarnel\nDaylin\nDayveon\nDeepak\nDejohn\nDemarcus\nDemond\nDennys\nDequan\nDerian\nDevante\nDiamond\nDijon\nDillion\nDonell\nDonnovan\nDuy\nEben\nEber\nEdder\nEdgerrin\nEdrees\nEduard\nEdvin\nEian\nEithan\nEldon\nEliab\nEligio\nElihu\nElija\nElizabeth\nElyas\nEmery\nEmir\nEnnis\nEnrico\nErron\nErubey\nEstephan\nEthyn\nEtienne\nEvaristo\nEyan\nFabrizio\nFavio\nFilemon\nFinley\nFlorentino\nFlorian\nFord\nFoster\nFreeman\nGagandeep\nGaldino\nGarren\nGarrin\nGavino\nGibran\nGibson\nGurpreet\nHaig\nHaley\nHamzah\nHarutyun\nHayes\nHenrry\nHilton\nHipolito\nHisham\nHovanes\nIndigo\nIsa\nIvann\nJacari\nJacqueline\nJad\nJaedyn\nJaeger\nJaelin\nJaelyn\nJahari\nJahaziel\nJahir\nJairon\nJalon\nJamaal\nJamin\nJamir\nJasiah\nJaskaran\nJasmine\nJavonte\nJax\nJaylyn\nJayven\nJaziah\nJaziel\nJedediah\nJens\nJeovanni\nJeovany\nJerad\nJeramy\nJerred\nJesusjr\nJhoan\nJihad\nJilberto\nJiovani\nJohnathen\nJosealberto\nJovannie\nJuandaniel\nJuandedios\nJuanluis\nJustine\nJusto\nJuventino\nKailer\nKaine\nKalin\nKamari\nKartik\nKasen\nKayvon\nKc\nKeelan\nKeilan\nKendric\nKentaro\nKeondre\nKesean\nKevork\nKeyshaun\nKhang\nKiet\nKilian\nKing\nKishan\nKlaus\nKoa\nKolin\nKorbin\nKordell\nKrisna\nKye\nKylin\nKyrese\nLaurent\nLawton\nLeighton\nLeonides\nLeron\nLevy\nLisandro\nLorenz\nLucky\nLuisfernando\nMalcom\nMaliq\nManjot\nManvir\nMarkos\nMarquel\nMartel\nMatan\nMattias\nMaurilio\nMaxfield\nMaxton\nMckay\nMichal\nMichelangelo\nMikal\nMillen\nMitch\nMoyses\nMurad\nNabeel\nNahun\nNaseem\nNery\nNiall\nNihal\nNile\nNolberto\nNyle\nOmer\nOren\nOswald\nOtis\nOzzie\nPaden\nPatric\nPaulino\nPavan\nPieter\nPonciano\nPrescott\nQuran\nRansom\nRashawn\nRees\nRefugio\nRegino\nRenee\nRich\nRiki\nRion\nRishabh\nRithvik\nRito\nRitvik\nRobinson\nRock\nRodger\nRohith\nRolan\nRushil\nRyen\nRyker\nSabian\nSabin\nSaeed\nSasha\nSemaje\nSevag\nSeveriano\nSeverin\nShae\nShaine\nShelby\nShiv\nShyam\nSina\nSmith\nSohan\nSohrob\nSrikar\nSylas\nTam\nTarik\nTerrel\nThien\nToribio\nTorin\nTreyton\nTyre\nTyrek\nTyreke\nUsman\nVaibhav\nValentine\nVineet\nVinnie\nVladislav\nWallace\nWilfrido\nWilly\nYahir\nYamil\nYarden\nYasser\nYeng\nYoel\nYoni\nZach\nZarek\nZen\nZenon\nZuriel\nZyon\nDaniel\nAnthony\nAndrew\nJose\nJacob\nDavid\nMichael\nJoshua\nMatthew\nChristopher\nJonathan\nJoseph\nAngel\nKevin\nChristian\nNicholas\nRyan\nBrandon\nLuis\nAlexander\nJesus\nJustin\nJuan\nCarlos\nEthan\nGabriel\nNathan\nJason\nDylan\nWilliam\nSamuel\nTyler\nAdrian\nJohn\nBrian\nBryan\nAlejandro\nIsaac\nRobert\nBenjamin\nMiguel\nJames\nAaron\nIsaiah\nEric\nNoah\nZachary\nEduardo\nKyle\nJulian\nJordan\nJorge\nSebastian\nSteven\nThomas\nVictor\nOscar\nElijah\nAlex\nAustin\nDiego\nFrancisco\nFernando\nRicardo\nCameron\nIvan\nLogan\nAndres\nSean\nAdam\nJack\nRichard\nAlexis\nCesar\nJesse\nJared\nAntonio\nEdgar\nCristian\nOmar\nJavier\nCaleb\nManuel\nNathaniel\nLuke\nIan\nConnor\nEvan\nMark\nSergio\nAlan\nMason\nHector\nVincent\nErik\nRuben\nEdward\nHunter\nCole\nJoel\nMarco\nRoberto\nErick\nAidan\nDevin\nAndy\nMario\nTimothy\nCharles\nJake\nNicolas\nTrevor\nGiovanni\nAbraham\nGerardo\nJackson\nPedro\nRaymond\nPatrick\nLucas\nArmando\nSeth\nMartin\nDominic\nJeremy\nKenneth\nBlake\nPaul\nJosue\nCody\nEdwin\nGavin\nGeorge\nRaul\nXavier\nJeremiah\nEnrique\nHenry\nAlberto\nLeonardo\nMarcos\nRafael\nJaime\nDamian\nGarrett\nMarcus\nSpencer\nJeffrey\nGustavo\nSaul\nChase\nEmmanuel\nArturo\nDerek\nSalvador\nMoises\nRiley\nBryce\nJulio\nMaxwell\nElias\nJohnny\nPeter\nMax\nShane\nAxel\nIsrael\nLiam\nWyatt\nAlfredo\nFabian\nPablo\nTristan\nErnesto\nJosiah\nOwen\nColby\nJaden\nCarson\nEsteban\nJakob\nFrank\nStephen\nTravis\nAndre\nScott\nRamon\nGrant\nJonah\nTanner\nBrendan\nAlbert\nAlec\nMiles\nJayden\nBradley\nIsmael\nJimmy\nGregory\nJohnathan\nParker\nColin\nRodrigo\nNolan\nDanny\nBryant\nHayden\nHugo\nJalen\nAbel\nShawn\nRoman\nAllen\nMauricio\nAngelo\nSantiago\nEmilio\nPhillip\nMarc\nDonovan\nDillon\nDevon\nTaylor\nPreston\nMathew\nGuillermo\nSteve\nCarter\nCalvin\nMitchell\nJerry\nSimon\nMicah\nRandy\nAiden\nKai\nAdan\nHarrison\nDustin\nOliver\nKaleb\nJoe\nAlfonso\nRene\nEmanuel\nKobe\nMateo\nLorenzo\nArthur\nCooper\nRodolfo\nCollin\nRonald\nCaden\nUriel\nDamien\nDante\nCasey\nEli\nNoe\nGage\nCade\nChris\nGilberto\nOsvaldo\nMaximus\nUlises\nWesley\nClayton\nRamiro\nRogelio\nDarren\nFelix\nJessie\nColton\nEddie\nFelipe\nMarvin\nTommy\nBrett\nLevi\nIssac\nTroy\nConner\nDerrick\nJonathon\nLouis\nRudy\nSkyler\nVicente\nTony\nDennis\nEmiliano\nMalik\nRicky\nEfrain\nHumberto\nLeonel\nDakota\nTrent\nMoses\nLance\nAlvaro\nGilbert\nBrayan\nIsaias\nDominick\nJoaquin\nLeo\nTheodore\nAgustin\nNoel\nNikolas\nBrayden\nMalachi\nTrenton\nBraden\nBrenden\nCorey\nRigoberto\nGary\nKeith\nEzekiel\nPhilip\nDean\nDrew\nGriffin\nRussell\nKenny\nNelson\nRoger\nIgnacio\nAdolfo\nKaden\nZackary\nAllan\nChad\nCory\nKameron\nAlvin\nCharlie\nDarius\nDrake\nJayson\nAli\nCurtis\nMaximilian\nLarry\nOrlando\nFreddy\nJohan\nJaylen\nAldo\nTomas\nMyles\nNickolas\nJairo\nLawrence\nDonald\nDouglas\nDalton\nBrady\nMaximiliano\nWalter\nPeyton\nIsiah\nJoey\nOctavio\nQuinn\nRoy\nAmir\nEzequiel\nJay\nUlysses\nAlonso\nChandler\nJair\nBrent\nChance\nKristopher\nOswaldo\nZane\nZion\nEzra\nTy\nBryson\nDamon\nBailey\nBranden\nLukas\nBrennan\nMike\nAshton\nMarlon\nEstevan\nDawson\nCristopher\nMorgan\nNestor\nRomeo\nAvery\nCruz\nGiovanny\nRolando\nCarl\nDavis\nCristobal\nTristen\nLandon\nZachariah\nCyrus\nDane\nEfren\nGerman\nGonzalo\nLuca\nAlfred\nBruce\nEugene\nFidel\nKelvin\nLeon\nAhmad\nAlonzo\nDorian\nJulius\nMisael\nTyson\nAlexandro\nDeandre\nGuadalupe\nElian\nKristian\nNeil\nRonnie\nShaun\nMelvin\nAriel\nBilly\nDarian\nJace\nReese\nTucker\nArnold\nBernardo\nElvis\nSkylar\nBrock\nDario\nFrederick\nJordy\nSage\nIsai\nJasper\nNathanael\nReece\nPayton\nElliot\nElmer\nFrancis\nJovani\nKieran\nConor\nJarod\nJonas\nKyler\nLeonard\nRohan\nTobias\nCorbin\nHudson\nMohammad\nJon\nJovanny\nSolomon\nTrey\nBrody\nCamden\nFrankie\nKody\nMaurice\nOrion\nQuincy\nSam\nWeston\nDallas\nDeclan\nFranklin\nGiancarlo\nCraig\nDevan\nJamal\nJett\nJohnathon\nKeanu\nKian\nQuentin\nRay\nSantos\nValentin\nZackery\nDamion\nGenaro\nHeriberto\nIrvin\nJunior\nLouie\nMarcelo\nMarshall\nMicheal\nReed\nWilson\nAhmed\nDesmond\nErnest\nJarrett\nJerome\nJovanni\nJovany\nMiguelangel\nBen\nBraulio\nEliseo\nJustice\nTerry\nTristin\nWarren\nAntony\nBenny\nByron\nNikhil\nPranav\nRaymundo\nStanley\nBobby\nCoby\nDuncan\nEverett\nGordon\nIzaiah\nJadon\nJuancarlos\nJulien\nKade\nHarry\nJoseluis\nKeven\nKhalil\nArman\nBrendon\nDemetrius\nElliott\nGarret\nGerald\nHolden\nMuhammad\nRalph\nRonaldo\nDeven\nJaiden\nJaron\nJeffery\nJoan\nLuciano\nMilton\nSterling\nAyden\nImanol\nMarcelino\nRodney\nAron\nBenito\nBennett\nDale\nMariano\nMohammed\nNico\nSonny\nAsher\nBeau\nEverardo\nIsaak\nJosh\nKeaton\nSemaj\nKarl\nKolby\nMaximillian\nMilo\nRylan\nWillie\nAri\nCarlo\nCedric\nDerick\nFinn\nHarold\nJude\nMarcel\nRahul\nYusuf\nZachery\nDeshawn\nGino\nHernan\nKeegan\nMalcolm\nMarcoantonio\nMarquis\nReginald\nReynaldo\nStefan\nTodd\nArjun\nGeoffrey\nGianni\nGiovani\nKoby\nNick\nQuintin\nSebastien\nSilas\nTyrone\nAdrien\nHoracio\nJermaine\nKendrick\nMauro\nNathen\nOsbaldo\nRandall\nTate\nBraeden\nDominik\nFavian\nGraham\nGrayson\nHassan\nJamie\nMaximo\nRoland\nRoss\nSammy\nSantino\nTom\nAditya\nBlaine\nDominique\nForrest\nFredy\nGeovanni\nJonatan\nJordi\nLee\nMarkus\nPhoenix\nQuinton\nRaphael\nRey\nAddison\nAdriel\nAlessandro\nAnton\nBruno\nDarwin\nDimitri\nElisha\nIsidro\nJagger\nJan\nKen\nLewis\nReid\nSahil\nToby\nTyrese\nZechariah\nDan\nErwin\nGregorio\nJarred\nJessy\nKane\nKellen\nLucio\nPierce\nRiver\nSidney\nStuart\nAndreas\nAugust\nBernard\nClay\nConrad\nDangelo\nDevyn\nEdson\nEmerson\nIrving\nJosef\nJovan\nKareem\nLuiz\nNiko\nReuben\nSamir\nStephan\nTerrance\nTitus\nWalker\nWill\nXander\nAntoine\nAryan\nBrennen\nDion\nIsac\nJamar\nJarrod\nJaxon\nJefferson\nJim\nKendall\nLionel\nMarcanthony\nMohamed\nStone\nTriston\nTyree\nValentino\nAbram\nAden\nDarin\nDavion\nDayton\nJavon\nJudah\nKurtis\nLeopoldo\nPaolo\nRobin\nTimmy\nAbner\nCayden\nDarien\nEddy\nEdgardo\nJayce\nJaycob\nJean\nLuisangel\nLuka\nMaverick\nSameer\nAbelardo\nArian\nColeman\nFlavio\nGuy\nJaylin\nJeff\nKole\nLeobardo\nMaxim\nNehemiah\nNeo\nRick\nRory\nTerrell\nWayne\nAjay\nAnderson\nArnulfo\nBill\nBret\nDarrell\nDavin\nHamza\nHoward\nJaren\nJaydon\nJordon\nKristofer\nLino\nLuc\nMatteo\nMekhi\nObed\nRichie\nRohit\nSabastian\nSawyer\nSheldon\nZain\nAnson\nBrad\nCamron\nCristofer\nDon\nGunnar\nIbrahim\nJackie\nKennedy\nKent\nLincoln\nRamses\nRocky\nTrevon\nVance\nYash\nAldair\nAlexandre\nAmari\nAugustine\nDallin\nDillan\nFreddie\nHarley\nIshaan\nJerald\nKris\nLane\nMarcello\nMarkanthony\nNigel\nPierre\nReyes\nSky\nTerrence\nTylor\nAnish\nAurelio\nCeasar\nClarence\nDarion\nDarryl\nDavon\nEdmund\nEriberto\nFiliberto\nFred\nGeovanny\nGlen\nKeoni\nKory\nKurt\nLamar\nMatias\nMilan\nMustafa\nRhys\nRishi\nSami\nShayne\nSunny\nTalon\nUlisses\nZander\nAlek\nArmen\nClark\nDonte\nEleazar\nEllis\nEmmett\nFermin\nGene\nGeovany\nGlenn\nJaeden\nJaylon\nJericho\nKhalid\nLeandro\nLondon\nNikolai\nNorberto\nPerry\nSalvatore\nSamson\nSeamus\nTariq\nAbdullah\nAman\nArmani\nAshwin\nClifford\nErnie\nFederico\nFranco\nFransisco\nGaven\nGerson\nJabari\nJai\nJameson\nJelani\nJohnson\nJorden\nKeenan\nKorey\nNathanial\nRonan\nRyder\nSalomon\nShayan\nTyrell\nVarun\nVince\nVladimir\nWade\nWinston\nAdalberto\nAdonis\nAlijah\nAmit\nArmand\nArmon\nBlaise\nBoris\nBrice\nClaudio\nDemetrio\nEder\nEmil\nEver\nGabino\nHilario\nIsael\nJaheim\nJohnpaul\nKalvin\nKeon\nMohamad\nNeel\nNorman\nPaulo\nRandolph\nRashad\nRocco\nUlices\nVincenzo\nYovani\nAlexzander\nAngus\nAria\nBilal\nCamren\nDajon\nDarnell\nDarrius\nDylon\nEden\nEnzo\nGamaliel\nGannon\nIshmael\nJess\nKaiden\nKalani\nKayden\nLazaro\nLeif\nLeroy\nMalakai\nParis\nRowan\nSoren\nTravon\nAbhinav\nAlden\nAnirudh\nAric\nArnav\nBrando\nBronson\nCaesar\nCian\nDarrin\nDestin\nDwayne\nGiovany\nGunner\nHiram\nImmanuel\nJafet\nJet\nJohann\nJohnnie\nJordyn\nJustus\nKenji\nKeyshawn\nLars\nMargarito\nMarko\nMihir\nNikko\nOmari\nRemington\nRyley\nTai\nTed\nTejas\nTre\nVincente\nZakary\nAnders\nAndrey\nAram\nAries\nArmaan\nArnoldo\nAsa\nAvi\nBarry\nBraxton\nDarrion\nDenzel\nDereck\nDexter\nEan\nEarl\nGideon\nHarvey\nIzaac\nJevon\nJoseangel\nKasey\nKelly\nKevyn\nKirby\nKirk\nMaxx\nNarek\nNeal\nOsiel\nOsman\nQuinten\nReagan\nReilly\nRemy\nRex\nRico\nRivaldo\nRosendo\nShea\nSimeon\nTerence\nTim\nTrace\nWilmer\nYair\nYonatan\nYousef\nZaid\nAbrahan\nAkhil\nAndrik\nArath\nAtticus\nBarrett\nBlaze\nCamilo\nDavian\nDejon\nDenilson\nDeon\nDhruv\nDonnell\nDyllan\nEdmond\nEdmundo\nEloy\nElvin\nFaustino\nFausto\nGreg\nIshan\nJacobo\nJaret\nJaxson\nJoahan\nJosedejesus\nJosemanuel\nJullian\nKainoa\nKarim\nKarson\nMarcellus\nMathias\nMitchel\nMyron\nPrince\nRenato\nRishab\nRoyce\nSantana\nServando\nShaan\nShamar\nSiddharth\nTaj\nTrinidad\nTyron\nWilfredo\nXzavier\nYosef\nAmmon\nAnjel\nArron\nArya\nAugustin\nBaltazar\nBishop\nBrandyn\nBrenton\nBrycen\nCaelan\nCaiden\nCallum\nCarsen\nClemente\nColten\nCuauhtemoc\nDandre\nDave\nDemetri\nDenis\nDeshaun\nDevante\nDevonte\nDomingo\nDonavan\nDraven\nEdwardo\nEnoch\nGarrison\nGrady\nHarout\nHarris\nIsacc\nIzak\nJacky\nJade\nJaylan\nJensen\nJerimiah\nJimmie\nJob\nKadin\nKamron\nKaran\nKarthik\nKeshawn\nKillian\nKolton\nKrishna\nKylan\nKyree\nLamont\nMarcell\nMarley\nNatanael\nNima\nPete\nRefugio\nRickey\nRoderick\nRyland\nThaddeus\nTheo\nTorin\nUlyses\nUziel\nVidal\nVikram\nZack\nZuriel\nAkshay\nAlton\nBenson\nBladimir\nBo\nBraedon\nBrooks\nCannon\nCelso\nChaz\nClinton\nDaren\nDaryl\nDeanthony\nDenny\nDeonte\nDev\nDonavon\nEaston\nEdison\nElton\nErich\nFletcher\nFranky\nFredrick\nGeovani\nGus\nHezekiah\nJaelen\nJamari\nJamison\nJedidiah\nJohny\nJordin\nKamren\nKorbin\nLanden\nLeslie\nLisandro\nLuigi\nMarcial\nNevin\nNoa\nOtto\nRami\nRaven\nRhett\nSandro\nShannon\nShant\nShreyas\nSilvestre\nTobin\nTrever\nTrystan\nVaughn\nWilly\nZeus\nAdin\nAndrei\nAren\nArt\nAugustus\nAyush\nBjorn\nBlair\nBradly\nCelestino\nChristofer\nClyde\nCullen\nDaylen\nDelfino\nDuane\nDwight\nErasmo\nEsdras\nEthen\nGael\nGildardo\nHeath\nHerman\nHomero\nIverson\nJaedon\nJancarlo\nJaquan\nJaykob\nJonny\nJosias\nJourdan\nJuanmanuel\nJustyn\nKabir\nKahlil\nKaleo\nKevon\nLeland\nLester\nMagnus\nMarck\nMarkell\nMarquise\nMathieu\nMatthias\nMenachem\nMikel\nNicholaus\nNile\nPorter\nPresley\nReymundo\nRomario\nRomel\nSavion\nSkye\nTeddy\nVernon\nWestin\nZeke\nAmador\nAmeer\nAmmar\nAmos\nAramis\nAsael\nAustyn\nBijan\nBrennon\nCain\nCassius\nDanniel\nDevlin\nDonnie\nEamon\nElan\nEmery\nEsau\nFabio\nGarett\nGavyn\nGeronimo\nGian\nGianluca\nHans\nHanson\nIsreal\nIzaak\nJacques\nJakub\nJerardo\nJoseantonio\nJuvenal\nKeonte\nKeyon\nKonnor\nKylen\nLangston\nLayne\nLucian\nLuisfernando\nMakai\nMaxime\nMichaelangelo\nMikael\nNader\nNery\nNikola\nPaulino\nRaudel\nRaymon\nRio\nRithik\nRommel\nRon\nRonin\nRony\nRudolph\nShemar\nShivam\nSincere\nSione\nSlater\nSriram\nSyed\nSylvester\nTeodoro\nThai\nTommie\nTruman\nTurner\nValente\nVinh\nVishal\nWilbert\nWiley\nYonathan\nAbdul\nAbdulrahman\nAkash\nAkira\nAlexei\nAmar\nAnkit\nAntoni\nAris\nArtemio\nArvin\nAydin\nBeck\nBenedict\nBraiden\nBrannon\nBriant\nBrodie\nCaeden\nCalum\nCampbell\nCamryn\nCarlosmanuel\nCharly\nChester\nColeton\nColt\nCorwin\nCristo\nCurran\nDashawn\nDashiell\nDerik\nDilan\nDomenic\nDonny\nDonovin\nDuke\nEdvin\nEly\nEnrrique\nEugenio\nFabricio\nFrancesco\nGaspar\nGevork\nHadi\nHeber\nHugh\nJadyn\nJasen\nJasson\nJayvon\nJeramiah\nJered\nJiovanni\nJules\nKalen\nKenan\nKenton\nKenyon\nKunal\nLloyd\nLoren\nMackenzie\nMahmoud\nManav\nMarkel\nMarlo\nMickey\nMigel\nMykel\nNate\nNikita\nNiklas\nNiles\nQuinlan\nSahib\nSidharth\nTheron\nTino\nTrenten\nTristian\nVishnu\nWilliams\nZacharias\nAayush\nAbran\nAdriano\nAkili\nAleksei\nAlekzander\nAlen\nAmani\nAmin\nAmogh\nAndranik\nAndru\nAnsh\nAntwan\nArchie\nAshley\nAzariah\nBeckett\nBenicio\nBernabe\nBodhi\nBraydon\nCaillou\nCanyon\nCarsten\nCezar\nChet\nChristain\nCiaran\nCiro\nDajuan\nDarrian\nDartagnan\nDayne\nDemarco\nDemitri\nDino\nDonavin\nEdgard\nElyjah\nEoin\nEsai\nEvaristo\nFabrizio\nFidencio\nFinnegan\nFlorencio\nFloyd\nFlynn\nFord\nGaige\nGarrick\nGaurav\nGerard\nGil\nGiorgio\nHarlan\nHasan\nHuy\nIain\nImran\nIran\nIziah\nJad\nJamil\nJarren\nJaycee\nJayro\nJaysen\nJihad\nJovon\nJuanjose\nJuanpablo\nKalob\nKiran\nKonner\nLenny\nLizandro\nLucca\nMassimo\nMatt\nMattias\nMicaiah\nMikhail\nMonte\nNaim\nNils\nNoam\nOmid\nOskar\nOsmar\nPorfirio\nQuan\nRaj\nRayshawn\nRian\nRitvik\nRonny\nRoque\nRueben\nRyker\nRylee\nSaad\nSarkis\nSchuyler\nSelvin\nSerafin\nShashank\nSilvano\nStefano\nStevan\nStevie\nSullivan\nSuraj\nTahj\nThanh\nTiger\nTracy\nTylan\nYuta\nAbbas\nAbhishek\nAdil\nAj\nAjani\nAlain\nAlexys\nAmadeo\nAmadeus\nAna\nAnakin\nAnand\nAndree\nAndrick\nAnwar\nArash\nAravind\nAristeo\nAristotle\nArlo\nAugusto\nAusten\nBrandin\nBranson\nCale\nCameren\nCarlton\nCase\nCharley\nChristianjames\nCisco\nCorban\nCristhian\nDamani\nDanial\nDarrick\nDasani\nDaven\nDaveon\nDavonte\nDeacon\nDeangelo\nDemario\nDenver\nDezmond\nDijon\nDillion\nDomenico\nDonaven\nEdan\nEliezer\nElio\nEliot\nErvin\nEsteven\nFadi\nFeliciano\nForest\nGentry\nGibson\nHagop\nHamilton\nHamzah\nHerbert\nHubert\nHumza\nHyrum\nIram\nIrwin\nIsmail\nIssiah\nJalon\nJarek\nJarett\nJashua\nJax\nJeffry\nJennifer\nJeron\nJerrod\nJohannes\nJohnatan\nJossue\nJusten\nJuston\nJuventino\nJuwan\nKadyn\nKalib\nKavin\nKeion\nKekoa\nKelton\nKhang\nLaurence\nLayton\nLong\nLucien\nMacario\nMagdiel\nManny\nMarquez\nMaximos\nMckinley\nMichel\nMikal\nMizael\nModesto\nNajee\nNaveed\nNaveen\nNeftali\nNicklaus\nNikolaus\nOmer\nOzzy\nPascual\nPatricio\nPaxton\nRajvir\nRayan\nRitchie\nRithvik\nRoyal\nSai\nSander\nSevastian\nShaheen\nShiv\nStephon\nSydney\nTevin\nThor\nTrevion\nVan\nViktor\nVinay\nVirgil\nWestley\nWilber\nYahya\nYaseen\nYazan\nYoussef\nZavier\nAakash\nAbdiel\nAksel\nAmaan\nAmado\nAmandeep\nAndrez\nAniket\nAnselmo\nArmond\nArun\nArvind\nAydan\nBlas\nBrandan\nBroderick\nCecil\nCedrick\nChasen\nChayton\nClifton\nColson\nConan\nCoy\nCristoval\nCuahutemoc\nDamen\nDana\nDanilo\nDany\nDax\nDeegan\nDelano\nDemonte\nDesean\nDmitri\nDomonic\nDontae\nDupree\nDustyn\nElbert\nElder\nEliel\nEnoc\nErin\nErubiel\nEtienne\nEulises\nEvin\nFaisal\nFaraz\nFaris\nFredi\nGauge\nGautam\nGavino\nGehrig\nGenesis\nGiovan\nGiuseppe\nGorge\nHaden\nHaider\nHakeem\nHakop\nHarjot\nHarman\nHaydn\nHazael\nHenri\nIlias\nIsaih\nIzac\nJaedyn\nJaelin\nJahmal\nJamel\nJareth\nJarin\nJarom\nJarret\nJavan\nJaven\nJavion\nJaymes\nJayshawn\nJed\nJeovany\nJerad\nJerson\nJeshua\nJessi\nJoeseph\nJohnmichael\nJomar\nJonathen\nJonnathan\nJoshue\nJustine\nKaelan\nKaileb\nKale\nKamari\nKaro\nKavon\nKeandre\nKevion\nKimo\nKohl\nKristoffer\nKwame\nLenin\nLennon\nLevy\nLinus\nLonnie\nMack\nMaher\nMarek\nMarion\nMarius\nMarshal\nMarshawn\nMasen\nMateen\nMaurilio\nMaxfield\nMaximillion\nMaynor\nMemphis\nMinh\nNabil\nNahum\nNapoleon\nNathon\nNaythan\nNehemias\nNolberto\nNorris\nOlegario\nOlin\nOren\nParth\nPercy\nRaiden\nRamsey\nRashaad\nRasheed\nRayvon\nRegan\nReggie\nRenee\nRobby\nRoshan\nRyon\nSagar\nSal\nSalim\nSammuel\nSaulo\nScout\nShadi\nSherman\nSherwin\nSilverio\nSina\nSol\nStewart\nStorm\nTallon\nTaran\nTarun\nTavian\nTeagan\nTevita\nToribio\nUvaldo\nVitaliy\nVivek\nWaylon\nWillem\nYael\nYovany\nYuvraj\nZahir\nZaire\nZayd\nAbimael\nAbisai\nAce\nAdryan\nAkshat\nAleksander\nAlfonzo\nAmilcar\nAndruw\nAneesh\nAnibal\nAnshul\nAnthoni\nArin\nArmin\nArshia\nAskari\nAtharva\nAubrey\nAvraham\nAxell\nAyaan\nBaron\nBennet\nBentley\nBernardino\nBoston\nBradford\nBryen\nCallan\nCarlosdaniel\nCary\nChauncey\nChazz\nChrist\nChristobal\nChristos\nCobe\nCobi\nCodey\nConstantino\nCordell\nCornelius\nCreighton\nDagoberto\nDaichi\nDain\nDamari\nDanthony\nDara\nDariush\nDaron\nDarrel\nDarrien\nDathan\nDaylan\nDaylon\nDedrick\nDeion\nDejohn\nDejuan\nDemarcus\nDeontae\nDerric\nDevion\nDimitrios\nDionicio\nDomenick\nDorien\nEber\nEberardo\nEdilberto\nEladio\nEliaz\nEmmet\nEphraim\nEsequiel\nFavio\nFinlay\nFinnian\nFisher\nFortino\nFroilan\nFroylan\nGagandeep\nGalen\nGaston\nGerry\nGiacomo\nGianmarco\nGregor\nGreyson\nGriffen\nHank\nHaven\nHenrik\nHenrry\nHoang\nHovanes\nHuriel\nIkaika\nIlan\nIra\nIsaah\nJaccob\nJacinto\nJacoby\nJae\nJaeger\nJahleel\nJailen\nJaison\nJakeb\nJalin\nJamaal\nJashawn\nJasiah\nJasmine\nJaylyn\nJeremie\nJerrick\nJesiah\nJessica\nJeyson\nJhonatan\nJoesph\nJohncarlo\nJoon\nJorell\nJosafat\nJosearmando\nJosecarlos\nJoshuah\nJoziah\nJr\nJuanluis\nJuliano\nJustinkyle\nJustino\nKain\nKalin\nKamal\nKamran\nKarandeep\nKarsten\nKasen\nKason\nKaya\nKc\nKeagan\nKellan\nKendric\nKerry\nKhaled\nKhari\nKimani\nKingsley\nKobi\nKonrad\nLachlan\nLaith\nLamberto\nLatrell\nLauren\nLavonte\nLuisalberto\nLuisantonio\nMagdaleno\nMahdi\nMakoa\nMalek\nManraj\nMarino\nMarquel\nMarques\nMatthieu\nMaury\nMazen\nMerlin\nMerrick\nMilad\nMisha\nMorris\nMoshe\nMoyses\nNam\nNasser\nNataniel\nNavid\nNiccolo\nNicklas\nNiels\nObadiah\nOciel\nOdin\nOri\nOseas\nOswald\nPalmer\nPascal\nPavan\nPavel\nPheng\nPhilippe\nPolo\nPrabhjot\nQuin\nRaffi\nRajveer\nRaziel\nRen\nRickie\nRigo\nRoel\nRonit\nRudolfo\nRusty\nRuvim\nSabino\nSacha\nSaid\nSamy\nSanjay\nSayed\nSeiji\nShalom\nShan\nShaunt\nShelby\nSiraj\nSixto\nSrikar\nStacy\nStephanie\nSulaiman\nSultan\nSyrus\nTal\nTarek\nTarik\nTerance\nTiernan\nTrevin\nTrinity\nTye\nTyren\nUriah\nVadim\nVito\nWaleed\nWes\nWilder\nYafet\nYahir\nYobani\nYordi\nYovanni\nYusef\nZach\nZakery\nZyan\nAamir\nAaronjoshua\nAaryan\nAbdallah\nAbdurrahman\nAdiel\nAdrean\nAedan\nAkil\nAkram\nAl\nAleck\nAleksandar\nAleksandr\nAlexi\nAlias\nAlondra\nAlphonso\nAmer\nAndrea\nAnmol\nAnoop\nAnsel\nAnthonie\nAntwon\nApolinar\nAra\nArmoni\nArnel\nArtin\nAsim\nAtom\nAudie\nAundre\nAuston\nAvelino\nAven\nAvishek\nAxcel\nAxl\nAyman\nAziz\nAzriel\nBaldomero\nBaruch\nBasil\nBaylor\nBennie\nBillal\nBoaz\nBowen\nBradlee\nBrain\nBrallan\nBrandt\nBrayant\nBroc\nBroden\nBrogan\nBryon\nBryton\nBuddy\nCaedmon\nCal\nCalder\nCanaan\nCandelario\nCandido\nCarey\nCarlitos\nCarmelo\nCash\nCassidy\nCecilio\nCedar\nCeejay\nChristoph\nCirilo\nClement\nClint\nCodie\nConrado\nConstantine\nCormac\nCornelio\nCornell\nCort\nCortez\nCosme\nCrisanto\nCross\nCurren\nCyle\nDabin\nDaejon\nDaemon\nDagan\nDakoda\nDakotah\nDalon\nDamarea\nDaniela\nDavontae\nDayvon\nDeante\nDeaven\nDemitrius\nDemond\nDerian\nDewayne\nDezmon\nDhillon\nDimas\nDimitry\nDionte\nDirk\nDonyae\nDrevon\nDuy\nDyson\nEathan\nEd\nEdin\nEdwing\nEitan\nEliazar\nEligio\nElijha\nElijiah\nEliott\nEliu\nElon\nEmily\nEmir\nEnrico\nErek\nEros\nEryk\nEsgar\nEthyn\nFaizan\nFionn\nFlorentino\nFox\nGalvin\nGaret\nGibran\nGiovannie\nHansen\nHasani\nHouston\nHussein\nImad\nIman\nImani\nIsahi\nIssa\nIssaiah\nIzayah\nJaciel\nJahaziel\nJahir\nJaidyn\nJairus\nJaleel\nJalil\nJapheth\nJarell\nJarron\nJavonte\nJaxen\nJazz\nJazziel\nJeancarlo\nJerrell\nJerron\nJessee\nJestin\nJhonathan\nJhonny\nJiovanny\nJoao\nJorje\nJosede\nJosemaria\nJosemiguel\nJovian\nJuanantonio\nJuandiego\nJustinmichael\nKaelin\nKaito\nKali\nKalub\nKamar\nKamden\nKamryn\nKannon\nKarapet\nKarlo\nKarlos\nKaron\nKarter\nKartik\nKaushik\nKavi\nKayleb\nKeller\nKelley\nKendal\nKendale\nKennan\nKento\nKerwin\nKeshav\nKhoa\nKhristopher\nKhyree\nKilian\nKing\nKion\nKoa\nKobey\nKodie\nKong\nKyran\nKyren\nLamonte\nLaron\nLarson\nLazarus\nLenard\nLennin\nLeor\nLogen\nLogun\nMaceo\nMadison\nMaison\nMakoto\nMaksim\nMalaki\nMalique\nManu\nMarquan\nMarquell\nMartel\nMarwan\nMatan\nMathis\nMaximino\nMaxon\nMika\nMikhael\nMissael\nMizraim\nMontana\nMosiah\nMuhammed\nMuneeb\nMynor\nNarciso\nNash\nNatan\nNeri\nNhan\nNicco\nNicolaus\nNicolo\nNikolaos\nNino\nNishant\nNomar\nOmeed\nOsama\nOsmin\nOtis\nOz\nPatric\nPayden\nPhineas\nPierson\nRace\nRafe\nRaheem\nRaheim\nRahman\nRalphie\nRashid\nRavi\nReinaldo\nRenzo\nRishabh\nRoan\nRobbie\nRobertanthony\nRodrick\nRojelio\nRomen\nRomero\nRonak\nRoscoe\nRufino\nRury\nRustin\nRyen\nSachin\nSaeed\nSalem\nSartaj\nSaxon\nSeanpatrick\nSebastion\nSeferino\nSequoia\nSevak\nSeven\nSharif\nSho\nShon\nShravan\nShrey\nShubham\nSohail\nSurya\nTalib\nTavin\nTavion\nTaylon\nTayvion\nTeo\nTerrion\nTito\nTomoki\nTonny\nTor\nTou\nTrae\nTrayvon\nTreyton\nTreyvon\nTRUE\nTyon\nTyreek\nTyshaun\nTyshawn\nUbaldo\nUrian\nUzziel\nViet\nVinayak\nVinnie\nWest\nWilberth\nWilbur\nWilfrido\nXaiver\nXavior\nYasser\nZacharia\nZahid\nZamir\nZamuel\nZephaniah\nZeth\nZev\nZiad\nDaniel\nAnthony\nAndrew\nJose\nJacob\nJoshua\nMichael\nDavid\nMatthew\nChristopher\nAngel\nJonathan\nJoseph\nAlexander\nKevin\nRyan\nBrandon\nEthan\nChristian\nNicholas\nJuan\nLuis\nJesus\nNathan\nJustin\nGabriel\nCarlos\nAdrian\nBryan\nJason\nWilliam\nSamuel\nTyler\nBrian\nDylan\nJames\nIsaac\nJohn\nDiego\nMiguel\nIsaiah\nBenjamin\nAaron\nAlejandro\nRobert\nEric\nJulian\nZachary\nElijah\nNoah\nJordan\nSebastian\nKyle\nEduardo\nVictor\nJorge\nAlex\nOscar\nSteven\nAustin\nJack\nThomas\nAdam\nJesse\nRichard\nFrancisco\nAidan\nIvan\nLogan\nNathaniel\nRicardo\nAndres\nCesar\nSean\nAntonio\nFernando\nLuke\nIan\nCameron\nManuel\nConnor\nCaleb\nDominic\nAlexis\nEvan\nCristian\nJavier\nOmar\nEdgar\nJackson\nSergio\nJared\nAlan\nVincent\nErick\nMario\nCole\nMason\nGavin\nLucas\nJoel\nHunter\nRoberto\nMarco\nJeremy\nHector\nEdward\nMark\nCharles\nAndy\nJeremiah\nDevin\nErik\nNicolas\nRuben\nGerardo\nTimothy\nAbraham\nHenry\nSeth\nRaymond\nGiovanni\nTrevor\nMartin\nDamian\nJake\nEdwin\nXavier\nLeonardo\nPatrick\nJaden\nJosue\nCody\nGeorge\nArmando\nEmmanuel\nRafael\nPaul\nBlake\nKenneth\nRaul\nJeffrey\nAlberto\nDerek\nPedro\nOwen\nJaime\nChase\nElias\nEnrique\nGustavo\nLiam\nPeter\nMarcus\nSaul\nMarcos\nTristan\nJulio\nMax\nShane\nSalvador\nGarrett\nArturo\nIsrael\nBryce\nRiley\nSpencer\nFabian\nJosiah\nJayden\nErnesto\nMaxwell\nMoises\nJohnny\nEsteban\nAiden\nHayden\nWyatt\nAlfredo\nPablo\nCarson\nRamon\nDanny\nTravis\nAndre\nGrant\nJohnathan\nKai\nStephen\nJimmy\nBradley\nIsmael\nAllen\nAlbert\nFrank\nNolan\nTanner\nRoman\nGregory\nMiles\nBrendan\nColin\nShawn\nAxel\nDonovan\nEmilio\nScott\nAngelo\nHugo\nJonah\nJakob\nBryant\nAlec\nColby\nLorenzo\nMauricio\nPhillip\nAbel\nParker\nGuillermo\nEmanuel\nRodrigo\nOliver\nCaden\nSantiago\nSimon\nEmiliano\nDamien\nOsvaldo\nJalen\nHarrison\nCalvin\nMateo\nKaleb\nCarter\nAldo\nMelvin\nRandy\nDevon\nMicah\nAdan\nMathew\nCooper\nMitchell\nSteve\nMarc\nEddie\nChris\nGage\nLeo\nDillon\nJessie\nJoe\nNoe\nRene\nAlfonso\nDarren\nEli\nCasey\nCollin\nDominick\nWesley\nDustin\nColton\nJerry\nCade\nLouis\nRogelio\nRonald\nPreston\nTony\nArthur\nUlises\nLandon\nKobe\nGriffin\nJoaquin\nKaden\nTaylor\nBrayden\nIssac\nMaximus\nSkyler\nBrett\nYahir\nBrayan\nClayton\nUriel\nLevi\nRicky\nDakota\nDante\nConner\nFelix\nAllan\nAlvaro\nTommy\nMarvin\nNoel\nRodolfo\nTy\nZane\nDennis\nDerrick\nFelipe\nGilberto\nJohan\nLance\nMalik\nRamiro\nRudy\nTrent\nTroy\nAlvin\nEzekiel\nBrady\nBraden\nMalachi\nAdolfo\nMaximiliano\nAshton\nJaylen\nPhilip\nRussell\nFreddy\nCharlie\nLukas\nAgustin\nIgnacio\nCorey\nCory\nGilbert\nZackary\nBrenden\nDonald\nKenny\nIsaias\nOrlando\nRoger\nTheodore\nEfrain\nJonathon\nLawrence\nTomas\nDean\nVicente\nDrew\nGary\nJoey\nDarius\nHumberto\nLarry\nOctavio\nRoy\nAlonso\nKeith\nLeonel\nRigoberto\nQuinn\nCristopher\nCyrus\nMoses\nNelson\nNikolas\nTrenton\nMyles\nAli\nChance\nDouglas\nJayson\nNickolas\nBranden\nDrake\nKameron\nLuca\nJay\nEzequiel\nJair\nJairo\nKristopher\nRolando\nRohan\nDalton\nKyler\nAlonzo\nAyden\nMarlon\nMaximilian\nTrey\nGonzalo\nAmir\nCurtis\nJulius\nByron\nMike\nOswaldo\nBrennan\nBrody\nChad\nNathanael\nDamon\nJasper\nLeon\nMorgan\nBryson\nDavis\nAlexandro\nGiovanny\nWalter\nGael\nIsiah\nJoseluis\nBrock\nGerman\nIsai\nTyson\nUlysses\nDawson\nEugene\nChandler\nEzra\nKelvin\nWilson\nAriel\nAvery\nBrent\nElliot\nJustice\nReese\nTristen\nBilly\nHarry\nHeriberto\nIzaiah\nKeven\nQuentin\nCruz\nJace\nJonas\nNestor\nEfren\nMalcolm\nZion\nNeil\nAlfred\nBruce\nConor\nPeyton\nRay\nRomeo\nAlessandro\nJunior\nZachariah\nDeclan\nJadon\nJohnathon\nJovanny\nMisael\nTobias\nBailey\nHudson\nMiguelangel\nOrion\nRonnie\nBraulio\nCorbin\nFidel\nJulien\nKody\nMaximillian\nMohammad\nDorian\nGuadalupe\nJovanni\nStanley\nBrendon\nCraig\nDeven\nElvis\nJaiden\nLeonard\nPayton\nRonaldo\nSam\nZachery\nBernardo\nDane\nEstevan\nJeffery\nKristian\nShaun\nBeau\nDarian\nDeandre\nHolden\nJovani\nWarren\nAsher\nKade\nKeegan\nSolomon\nAhmad\nBen\nCamden\nEliseo\nFrankie\nJuancarlos\nMarshall\nMaurice\nMicheal\nQuincy\nSonny\nBennett\nBobby\nCristobal\nIrvin\nReynaldo\nSantos\nAron\nBenny\nGiancarlo\nRahul\nZackery\nBruno\nDamion\nEverett\nGerald\nJaxon\nJoan\nJon\nJosh\nReece\nSage\nSilas\nAden\nArjun\nArman\nCamron\nElmer\nEnzo\nJude\nAditya\nBraeden\nDerick\nElliott\nErnest\nIsaak\nLisandro\nRaymundo\nFrederick\nHarold\nIsidro\nKian\nRaphael\nSemaj\nSkylar\nCayden\nDallas\nFrancis\nJarod\nMilo\nNico\nAri\nDario\nGianni\nJamal\nJordy\nKieran\nMarkus\nRandall\nTerry\nWillie\nAmari\nCarlo\nDominik\nEverardo\nGarret\nGrayson\nIrving\nJaydon\nJermaine\nLee\nNehemiah\nNikhil\nPranav\nSantino\nStefan\nDavion\nElian\nFavian\nGraham\nGregorio\nHarley\nHernan\nJerome\nNick\nOsbaldo\nReid\nRodney\nRylan\nSahil\nXander\nAdriel\nAdrien\nDevan\nDominique\nGino\nJovany\nKent\nKhalil\nLeobardo\nLuc\nMaximo\nRalph\nRey\nRyder\nSammy\nTitus\nValentin\nWalker\nCarl\nDesmond\nKeanu\nKellen\nMilton\nPierce\nReginald\nAnton\nAntony\nArnold\nEmerson\nGenaro\nJaylin\nKen\nMariano\nMekhi\nSterling\nAbram\nCoby\nFranklin\nGeovanni\nGordon\nMatteo\nWeston\nArnav\nDarwin\nEddy\nElisha\nJeff\nMarcelo\nTerrance\nTerrell\nToby\nTodd\nTom\nTristin\nDarien\nGlenn\nJett\nJovan\nJudah\nMohammed\nPhoenix\nReed\nRoland\nRonan\nAryan\nBrennen\nCristofer\nDexter\nFreddie\nKarl\nLuciano\nRory\nAddison\nColeman\nDarin\nDeshawn\nNathanial\nNathen\nQuinton\nTucker\nCedric\nConrad\nDuncan\nEdgardo\nFred\nJaheim\nJaron\nJaycob\nKendrick\nLewis\nLouie\nWill\nAntoine\nArath\nAugust\nGunnar\nIbrahim\nJonatan\nKadin\nKennedy\nMalakai\nMarcel\nMohamed\nNiko\nSaid\nWinston\nAhmed\nAkash\nAnish\nBrodie\nDangelo\nDemetrius\nErwin\nEsai\nGiovani\nHoracio\nJefferson\nKaiden\nKeaton\nKeoni\nKoby\nMarquis\nOmarion\nRamses\nRishi\nRowan\nYash\nZander\nAjay\nDale\nEdison\nFederico\nFranco\nKane\nLane\nMarcoantonio\nMaverick\nReilly\nRick\nVance\nAbelardo\nAbner\nAlexandre\nCamren\nClay\nCuauhtemoc\nDavin\nFinn\nFredy\nJaeden\nKayden\nKeenan\nLeopoldo\nMarcelino\nMarcello\nMauro\nPaolo\nSamir\nTate\nTerrence\nWade\nDarrell\nDashawn\nDevyn\nDonavan\nErnie\nGeovanny\nHamza\nImanol\nJan\nJarrett\nJean\nJericho\nJordi\nJordon\nKurt\nPaulo\nRobin\nSebastien\nStephan\nTrace\nVladimir\nCeasar\nDillan\nHerman\nHoward\nJohann\nKalvin\nKareem\nLanden\nNigel\nRiver\nRoss\nSarkis\nSiddharth\nVince\nWayne\nAlexzander\nAnderson\nBill\nClarence\nClark\nDion\nFlavio\nJagger\nJohnnie\nJorden\nKole\nLincoln\nMakai\nMatias\nMuhammad\nNorman\nOdin\nSawyer\nTyrese\nUlisses\nYair\nZechariah\nArnulfo\nBodie\nBrad\nBronson\nDarnell\nDarryl\nDavon\nDimitri\nErvin\nLazaro\nLizandro\nMathias\nObed\nOmari\nTim\nTyree\nValentino\nXzavier\nArian\nBenicio\nBenito\nCamilo\nDarion\nDarrin\nDenzel\nDonte\nEdson\nEllis\nEmmett\nEver\nGannon\nGarrison\nHassan\nIshan\nJarred\nJosef\nJustus\nKarson\nKorey\nKristofer\nMassimo\nMitchel\nMustafa\nNevin\nPierre\nRocky\nSamson\nStuart\nTariq\nVidal\nZaid\nBlaine\nFausto\nForrest\nGeoffrey\nGeovani\nGerson\nGrady\nIsac\nJavon\nJohnson\nJuanpablo\nKalani\nKurtis\nMaxim\nNikolai\nNorberto\nReuben\nShea\nTyrone\nAbdullah\nAldair\nAlijah\nAndreas\nAram\nAsa\nCaiden\nDallin\nEden\nElvin\nGideon\nGuy\nJahir\nJamil\nJamison\nJayce\nJelani\nKamron\nKasey\nKeon\nKolby\nLeandro\nMarcanthony\nOsmar\nRami\nRhys\nRickey\nSeamus\nShayne\nTalon\nAdalberto\nAurelio\nAvi\nBradly\nCain\nDan\nDandre\nDanilo\nEaston\nEdmond\nFermin\nIzayah\nJaedon\nJai\nJameson\nJaxson\nJeremias\nJim\nJustyn\nLionel\nLucio\nLuisangel\nMarques\nMihir\nNikko\nOzzy\nPete\nPrince\nRashad\nRemy\nRex\nRigo\nRocco\nRoderick\nSky\nSoren\nSunny\nTrevon\nTrinidad\nUbaldo\nZack\nZain\nZakary\nAlden\nAman\nAndrik\nAnirudh\nBlaze\nDeon\nDonnie\nEarl\nEder\nEriberto\nFiliberto\nGian\nImmanuel\nJamie\nJaret\nJerimiah\nJessy\nJob\nJoseangel\nKendall\nLondon\nLucca\nLuka\nMarley\nNeal\nQuintin\nRaiden\nRohit\nSameer\nSami\nSantana\nShreyas\nTheo\nTrever\nUlices\nVarun\nYosef\nAdonis\nAlek\nAnson\nBernard\nBraydon\nDamani\nDave\nDevean\nDomenic\nDon\nDwayne\nDylon\nEleazar\nEloy\nEthen\nFinnegan\nIain\nIzaac\nJaren\nJarrod\nJoahan\nJosemanuel\nKenji\nKeyon\nLester\nLino\nLoren\nLuiz\nMarquise\nQuinten\nRaven\nReyes\nRosendo\nRoyce\nShaan\nShamar\nStone\nTaj\nTimmy\nVaughn\nWestley\nYousef\nAkhil\nAlexsander\nAmeer\nArmand\nAshwin\nBarrett\nBarry\nBilal\nBrando\nBraxton\nCaesar\nChaz\nClaudio\nCullen\nDemetrio\nEmil\nFaris\nFredrick\nGeovany\nGiovany\nGreg\nHeber\nHerbert\nHezekiah\nIsacc\nIshaan\nIshmael\nJacky\nJafet\nJedidiah\nJevon\nJiovanni\nJosias\nJullian\nKarim\nKylan\nLamar\nLenny\nLyle\nMarion\nMikael\nMyron\nNeel\nPorter\nRaymon\nRichie\nRoque\nRyland\nSavion\nShayan\nSidney\nSyed\nTylor\nTyrell\nYonatan\nYusuf\nZaire\nAbhinav\nAbrahan\nAdin\nAjani\nAndrei\nArmani\nBraedon\nBraiden\nBrice\nBrycen\nDarrius\nDejon\nDenis\nElan\nEugenio\nFrancesco\nGianluca\nGlen\nHarris\nHarvey\nHeath\nIsael\nJabari\nJadin\nJareth\nJaylon\nJess\nKamari\nKevyn\nKeyshawn\nKhalid\nLeland\nLonnie\nMikel\nNasir\nPerry\nReagan\nRhett\nThaddeus\nTriston\nVan\nVivek\nZuriel\nAayush\nAkshay\nAmaan\nAmar\nAmit\nAngus\nBradford\nCassius\nClifford\nDaren\nDeangelo\nDeshaun\nDilan\nDuane\nDwight\nEnoch\nFranky\nGabino\nGene\nHans\nJackie\nJamar\nJamari\nJaskaran\nJeramiah\nJonny\nKekoa\nKellan\nKenyon\nKeshawn\nKirk\nKris\nKye\nKyree\nLamont\nLucien\nMarkanthony\nMatthias\nNima\nNoa\nOsiel\nParis\nPresley\nRasheed\nReymundo\nRio\nServando\nShant\nShay\nSilvestre\nTejas\nTerence\nWolfgang\nAlton\nAren\nArmen\nArmond\nAugustine\nCaelan\nCale\nCallum\nCelso\nClemente\nDaron\nDayton\nDemetri\nDenny\nDhruv\nDonavin\nDuke\nEdmund\nEliot\nEly\nFletcher\nGalen\nGerard\nHasan\nHilario\nHugh\nJaven\nJohnpaul\nJoseantonio\nKainoa\nKamren\nKaya\nKoa\nKory\nLaurence\nLex\nMarko\nMattias\nMaxx\nMynor\nNash\nNeftali\nOtto\nRaghav\nRayan\nRishabh\nRomel\nRonit\nSalvatore\nSheldon\nSlater\nSurya\nTai\nTristian\nUziel\nVincente\nWillem\nAlexys\nAmarion\nAmin\nAnders\nAnsel\nArvin\nArya\nAsael\nAtticus\nAyush\nAziel\nBaltazar\nBlas\nBrandyn\nBranson\nCampbell\nClint\nColten\nDaryl\nDavian\nDemitri\nDiogo\nDomingo\nDyllan\nEdmundo\nErin\nEsau\nFeliciano\nGarett\nGavyn\nGil\nGiuseppe\nHomero\nIverson\nIzaak\nJabez\nJacobo\nJacoby\nJaheem\nJaydin\nJerardo\nJordin\nJuandiego\nKahlil\nKarthik\nKelly\nKonner\nLars\nLucky\nMarcial\nMaximos\nNiklas\nOskar\nOsman\nParth\nRaffi\nRamsey\nRico\nRonny\nRylee\nRyley\nSaad\nTorin\nValente\nVincenzo\nWilbert\nWilly\nYael\nZavier\nAdithya\nAkira\nAlexi\nAlfonzo\nAmos\nAndrey\nApollo\nAramis\nAries\nArun\nAydan\nBenson\nBodhi\nBoris\nBret\nBriant\nCaeden\nCael\nCanaan\nCash\nCharly\nChester\nChristofer\nClyde\nDashiell\nDeion\nDenilson\nDestin\nDevlin\nDonnell\nEan\nEdwardo\nEliezer\nEros\nEvin\nFabio\nFaustino\nFransisco\nGamaliel\nGarry\nGenesis\nGildardo\nHaris\nHouston\nIsreal\nIzak\nJadyn\nJamir\nJasson\nJensen\nJesiah\nJordyn\nKaran\nKarsten\nKeandre\nKelton\nKeyan\nKunal\nLawson\nLeopold\nLeroy\nMacario\nManav\nMarcellus\nMargarito\nMarshal\nMichelangelo\nMilan\nMinh\nMohamad\nMychal\nNarek\nNicolo\nPatricio\nRandolph\nRony\nSalomon\nShannon\nSimeon\nStephon\nTarun\nTeddy\nThien\nTrevin\nTrevion\nTrystan\nUriah\nViktor\nYovani\nAbran\nAdnan\nAleksander\nAndru\nArden\nArnoldo\nAusten\nAustyn\nBenedict\nBishop\nBrandan\nBryon\nCal\nClifton\nColt\nDax\nDevante\nDevonte\nDino\nDomonic\nDonny\nDraven\nEladio\nElton\nEsdras\nFidencio\nGaven\nGeronimo\nGreyson\nHiram\nImran\nIrwin\nIsaih\nIssak\nJamel\nJasiah\nJax\nJaysen\nJeanpaul\nJessi\nJimmie\nJonathen\nJoshuah\nJoziah\nKaeden\nKael\nKamal\nKamran\nKolton\nKrish\nMahmoud\nMalcom\nMatt\nMikah\nMonte\nMorris\nNavid\nOcean\nRace\nRaj\nRajan\nRomario\nRoshan\nSabastian\nShae\nShivam\nSincere\nStefano\nTanay\nTed\nTurner\nUlyses\nVinh\nVishnu\nWilber\nWilfredo\nAakash\nAbdul\nAdair\nAdiel\nAdryan\nAedan\nAlain\nAlekzander\nAmador\nAnakin\nAnand\nAnjel\nAnthonie\nAric\nArmon\nArron\nAugustus\nBoden\nBrannon\nCarlton\nChasen\nCian\nColter\nCristo\nDamari\nDarrian\nDarron\nDeegan\nDemarco\nDereck\nDeric\nDiamond\nElder\nElie\nElijiah\nFabrizio\nFlynn\nFord\nFox\nGaige\nGibson\nGriffen\nHakop\nHank\nHari\nHarman\nHuy\nIssiah\nIzac\nJalon\nJarett\nJarren\nJaymes\nJeshua\nJosejulian\nJosemaria\nJuanangel\nJuanjose\nJusten\nJuvenal\nKabir\nKasra\nKaushik\nKeisuke\nKevon\nKillian\nKiran\nLaron\nLayton\nLazarus\nLeif\nLeighton\nLevon\nLloyd\nLucian\nMalaki\nMarcell\nMarck\nMathieu\nMaximino\nNahum\nNikita\nNoble\nOmid\nOmri\nOtis\nPascual\nRaudel\nRenato\nRenzo\nRon\nRoosevelt\nRudolph\nRussel\nRyon\nSabino\nSandro\nSherwin\nShiloh\nSione\nSol\nStewart\nSyrus\nTavion\nTigran\nTreyvon\nTruman\nVikram\nVishal\nWilliams\nYoel\nYoussef\nYusef\nZeus\nAbdiel\nAbisai\nAdal\nAmmon\nAngello\nAnibal\nArik\nArion\nAris\nAristotle\nArmaan\nArtemio\nAshley\nAubrey\nAzariah\nBeck\nBernie\nBladimir\nBlair\nBode\nBoston\nCandido\nCarsen\nCecil\nCezar\nChazz\nClinton\nConan\nCormac\nDameon\nDaniela\nDaquan\nDaven\nDavonte\nDaylen\nDeacon\nDemarcus\nDenver\nDev\nDmitri\nDonaven\nDonovin\nDoran\nEamon\nEben\nEdrick\nErasmo\nErich\nEtienne\nFloyd\nGareth\nHaden\nHanson\nHayk\nHumza\nIsrrael\nIzack\nIzaya\nJacinto\nJacques\nJade\nJaelen\nJaelin\nJahiem\nJamaal\nJaquan\nJasen\nJasmine\nJavan\nJavion\nJeffry\nJet\nJomar\nJonnathan\nJossue\nJun\nKaelan\nKailen\nKanan\nKarlos\nKayvon\nKhang\nKing\nKirby\nKonrad\nKrishna\nKristoffer\nKwame\nLenin\nLuisantonio\nMahdi\nMalek\nMarquice\nMaximilliano\nMehki\nMicaiah\nMichel\nMikhail\nMoshe\nNaim\nNatanael\nNeo\nOmer\nOsiris\nOsmin\nOtoniel\nOzzie\nPercy\nRayvon\nRaziel\nReggie\nRishab\nRivaldo\nRobbie\nRobby\nRonin\nRushil\nSachin\nSahib\nSalman\nSanjay\nSaulo\nShai\nShelby\nSherman\nSullivan\nTal\nTeodoro\nTerell\nTevin\nTevita\nTheron\nTobin\nTrung\nTyron\nVernon\nVinson\nWaylon\nWiley\nWilmer\nZahid\nZeth\nAamir\nAb\nAbimael\nAdarsh\nAdham\nAj\nAksel\nAlexei\nAlexsandro\nAlphonso\nAmadeus\nAmado\nAmeen\nAmogh\nAmr\nAn\nAndree\nAndrez\nAndruw\nAneesh\nAngelgabriel\nAnsh\nArchie\nArlo\nArshia\nArtur\nAugusto\nAvraham\nAydin\nBasil\nBeckett\nBennie\nBentley\nBlayne\nBowen\nBrendyn\nBrenton\nBrooks\nChauncey\nCiro\nClement\nColeton\nCornelius\nCort\nCurren\nDajuan\nDamarion\nDanial\nDanthony\nDarrien\nDarrion\nDaryn\nDeontae\nDerian\nDerik\nDesi\nDewayne\nEliel\nEligh\nEligio\nElio\nEmery\nEnoc\nEphraim\nEwan\nFlorentino\nGautam\nGeorgio\nGeraldo\nGermaine\nGerry\nGiacomo\nGiorgio\nGorge\nGrigor\nGunner\nGus\nHagop\nHaik\nHamid\nHarout\nHussein\nIssa\nJacen\nJad\nJahlil\nJalani\nJarvis\nJase\nJashawn\nJassiel\nJavin\nJaylan\nJayvon\nJc\nJed\nJennifer\nJeovanny\nJerod\nJessejames\nJeyson\nJhonatan\nJhonny\nJin\nJoao\nJohny\nJorgeluis\nJoshue\nJuanmanuel\nJules\nJuliano\nJustine\nJustis\nKacey\nKaelin\nKale\nKamden\nKamryn\nKavon\nKaydon\nKeagan\nKegan\nKenzo\nKesean\nKeshav\nKingsley\nKobi\nKobie\nKodi\nKohl\nLaith\nLegend\nLennon\nLeslie\nLinus\nLuigi\nMagnus\nMaison\nManny\nMarino\nMckay\nMelvyn\nMenachem\nMerrick\nMikey\nMiller\nMin\nNareg\nNiccolo\nNicklas\nOren\nOz\nPascal\nRamces\nRansom\nRavi\nRayden\nRayshawn\nRich\nRoan\nRoel\nRohin\nRosario\nSai\nSal\nSammuel\nSamual\nSasha\nSeiji\nShalom\nShiva\nSiddarth\nSidharth\nSkye\nSoham\nSteele\nStevie\nTaha\nTeagan\nTracy\nTravon\nVedant\nViet\nVijay\nVinay\nWarner\nWes\nYaakov\nYasir\nYobani\nZayn\nAaryan\nAbdallah\nAbhishek\nAce\nAdel\nAmando\nAmbrose\nAmiri\nAmmar\nAmritpal\nAnkit\nAnselmo\nAnthonyjr\nAntwon\nAnuj\nArmondo\nAshish\nAvinash\nAyan\nAzael\nAzriel\nBijan\nBlue\nBrandin\nBrayant\nBrennon\nBroden\nBroderick\nBryton\nCairo\nCalum\nCameren\nCarey\nCary\nCasen\nCason\nCasper\nCavan\nCeaser\nCecilio\nChe\nChristan\nChristos\nCipriano\nColson\nColtin\nCordell\nCornell\nCrispin\nCristiano\nCyle\nDajon\nDakari\nDalen\nDamen\nDanniel\nDarby\nDartagnan\nDaunte\nDavey\nDaylin\nDaylon\nDayne\nDejuan\nDelbert\nDelfino\nDenim\nDiesel\nDimas\nDirk\nDomenick\nDustyn\nDylen\nEber\nEliazar\nElija\nEmir\nEmmet\nEmory\nEthaniel\nEulises\nEvaristo\nFadi\nFaisal\nFavio\nFisher\nFlorencio\nGadiel\nGarrick\nGavino\nGiovonni\nGraeme\nGurshan\nHaiden\nHakim\nHarpreet\nHaven\nHazael\nHenri\nHerson\nHomer\nHubert\nIker\nIman\nImani\nIndiana\nIsmail\nIziah\nIzik\nJael\nJalan\nJameel\nJarell\nJathan\nJatin\nJaydan\nJayro\nJayshawn\nJeanluc\nJeovany\nJerico\nJeronimo\nJerrod\nJoeseph\nJoesph\nJohnmichael\nJosaiah\nJosmar\nJuanluis\nKain\nKalen\nKaleo\nKalil\nKalob\nKamar\nKasen\nKelby\nKenan\nKeneth\nKerry\nKhristian\nKiefer\nKiernan\nKimani\nKishan\nKorben\nKrishan\nLachlan\nLamonte\nLangston\nLatrell\nLayth\nLong\nLuiseduardo\nMack\nMackenzie\nMaddox\nMalachai\nManraj\nMarciano\nMarkell\nMaxfield\nMaximillion\nMaynor\nMemphis\nMessiah\nMichaelangelo\nMilad\nMina\nMister\nMoroni\nNader\nNate\nNaythan\nNiall\nNils\nNino\nOleg\nOlin\nOm\nOri\nOziel\nPierson\nPorfirio\nPrateek\nQuan\nQuinlan\nRainer\nRaleigh\nRameses\nRandal\nRashaad\nRefugio\nRegan\nRemington\nRenee\nRian\nRickie\nRidge\nRojelio\nRolan\nRommel\nRosalio\nRufino\nRustin\nRyker\nRyo\nSabian\nSahid\nSalem\nSamantha\nSevastian\nShamir\nSharif\nShaunak\nSlade\nSohail\nStevan\nSumeet\nSuraj\nSylvester\nTakumi\nTam\nTaran\nTeo\nTevan\nThanh\nTiernan\nTitan\nTobey\nTrae\nTravion\nTrenten\nValentine\nVictormanuel\nVladislav\nWallace\nWilfred\nYasin\nYohan\nYonathan\nYoni\nYovany\nYuto\nYuvraj\nZach\nZacharia\nZayd\nZayne\nZeke\nZen\nZev\nAbdurrahman\nAdil\nAdon\nAhmir\nAhren\nAkshat\nAl\nAldrin\nAlen\nAlistair\nAlston\nAlvino\nAmani\nAmer\nAmrit\nAnas\nAnastasios\nAndranik\nAndrea\nAndrick\nAndrue\nAngad\nAnmol\nAnshul\nAntoni\nAntwan\nAnurag\nApolinar\nArash\nArav\nArham\nArie\nArsen\nArt\nArtin\nAshraf\nAshvin\nAthan\nAtharva\nAttila\nAugustin\nAuston\nAvant\nAyaan\nBaron\nBasilio\nBerkeley\nBlaise\nBo\nBob\nBonifacio\nBoyd\nBradyn\nBrant\nBrogan\nBuddy\nCalder\nCamrin\nCannon\nCanon\nCanyon\nCarmelo\nCase\nCassidy\nChaitanya\nCharley\nChristain\nChristoper\nChrystian\nCiaran\nCisco\nClarke\nCobe\nCobey\nCodi\nColbey\nConnell\nCortez\nCristhian\nCyrille\nDaemon\nDaevon\nDana\nDany\nDarshan\nDaveon\nDeante\nDeaven\nDelaney\nDelvin\nDemitrius\nDeondre\nDeonte\nDeron\nDevion\nDezmond\nDiondre\nDionicio\nDionte\nDonavon\nDontae\nDontay\nDorien\nDovid\nDurrell\nEbenezer\nEdin\nEdric\nEhren\nEian\nEitan\nElad\nEllison\nElver\nEmile\nEmre\nErrol\nEryk\nEthyn\nEusebio\nEven\nEverette\nEvyn\nExavier\nFaizan\nFarid\nFinlay\nFrancois\nFrederic\nFredi\nFroilan\nFroylan\nGaston\nGauge\nGaurav\nGerardojr\nGevorg\nGevork\nGianfranco\nGiovannie\nGor\nGurjot\nGurman\nHaile\nHakeem\nHamilton\nHamzah\nHarlan\nHaroon\nHaseeb\nHashim\nHenok\nHenrik\nHenrry\nHerberth\nHosea\nHyrum\nIban\nIbraheem\nIlan\nIlias\nImer\nIra\nIsa\nIsak\nIssaiah\nIzaiha\nJadan\nJaedyn\nJaeger\nJahan\nJahari\nJaidyn\nJakeb\nJalil\nJalin\nJalyn\nJamell\nJamin\nJarek\nJaylyn\nJaziel\nJeancarlo\nJeovanni\nJerald\nJeramie\nJermiah\nJeromy\nJessiah\nJhonathan\nJimi\nJiovani\nJjesus\nJobe\nJosedejesus\nJosemiguel\nJosephanthony\nJourney\nJovon\nJr\nJuanantonio\nJustino\nJuventino\nJuwan\nKaan\nKadon\nKaito\nKalib\nKalin\nKamrin\nKanoa\nKarlo\nKaushal\nKavi\nKavin\nKawika\nKeelan\nKeion\nKeiran\nKeller\nKenta\nKentaro\nKento\nKeshaun\nKhaled\nKhari\nKhoi\nKhristopher\nKong\nKorbin\nKota\nKy\nKyre\nLake\nLandin\nLathan\nLauro\nLeander\nLeonidas\nLevy\nLudwin\nLuisenrique\nLyndon\nMac\nMahir\nMajor\nMakaio\nMakhi\nMakoa\nMaksim\nMalikai\nMalique\nMaria\nMarius\nMarquez\nMarshawn\nMatthieu\nMaven\nMaxamillion\nMckinley\nMika\nModesto\nMosiah\nMusa\nNabil\nNam\nNaman\nNazario\nNeri\nNeven\nNicanor\nNiccolas\nNicholaus\nNicklaus\nNicky\nNicodemus\nNicola\nNoam\nNolen\nParsa\nPhilippe\nPiero\nPieter\nPraveen\nPrinceton\nRajveer\nRajvir\nReef\nReno\nReymond\nReza\nRishav\nRitchie\nRito\nRitvik\nRobel\nRobinson\nRodrick\nRome\nRoscoe\nRubin\nSaahil\nSaeed\nSafwan\nSaketh\nSaleh\nSalim\nSatchel\nSayed\nSchuyler\nScout\nSerafin\nShelton\nShemar\nShiv\nSho\nSilvino\nSilvio\nSohum\nSrikar\nSriram\nStanford\nSydney\nTadeo\nTahj\nTakeo\nTarek\nTavis\nTayler\nTayvion\nTenoch\nTenzin\nTerrel\nThai\nThatcher\nTimoteo\nTommie\nTonatiuh\nToni\nTory\nTrayvon\nTreston\nTreven\nTreyton\nTye\nTylar\nTyreese\nTyrus\nTyus\nUmar\nUsman\nVal\nViliami\nVirgil\nVito\nWaleed\nWestin\nWillard\nXaiver\nXavian\nYahya\nYazan\nYobany\nZabdiel\nZacary\nZakery\nDaniel\nAnthony\nAndrew\nJose\nJacob\nDavid\nJoshua\nAngel\nMichael\nMatthew\nChristopher\nJoseph\nJonathan\nRyan\nBrandon\nAlexander\nKevin\nEthan\nNathan\nJuan\nLuis\nChristian\nNicholas\nGabriel\nJesus\nJustin\nDiego\nAdrian\nDylan\nBryan\nIsaac\nCarlos\nJason\nTyler\nWilliam\nJames\nBenjamin\nSamuel\nJohn\nBrian\nJulian\nAaron\nRobert\nMiguel\nIsaiah\nAlejandro\nNoah\nZachary\nEric\nElijah\nAidan\nVictor\nJordan\nJorge\nSebastian\nKyle\nEduardo\nJack\nAlex\nAdam\nSteven\nOscar\nEvan\nIvan\nLogan\nThomas\nFrancisco\nJesse\nLuke\nSean\nNathaniel\nFernando\nRicardo\nAustin\nAntonio\nRichard\nCesar\nConnor\nGavin\nAlexis\nAlan\nIan\nCaleb\nDominic\nAndres\nEdgar\nOmar\nManuel\nCameron\nCristian\nVincent\nJackson\nLucas\nSergio\nJavier\nAiden\nMario\nHector\nJake\nErick\nCharles\nNicolas\nErik\nXavier\nCole\nDevin\nMason\nGiovanni\nRuben\nJoel\nMark\nRoberto\nDamian\nTimothy\nAbraham\nJeremy\nJared\nLeonardo\nEdward\nMarco\nHenry\nOwen\nJaden\nHunter\nJeremiah\nJayden\nEdwin\nKenneth\nColin\nJosue\nMartin\nAndy\nEmmanuel\nSeth\nMarcus\nGerardo\nGeorge\nRaymond\nYahir\nTrevor\nCody\nDerek\nElias\nPatrick\nRafael\nMarcos\nArmando\nPedro\nGustavo\nPaul\nRaul\nLiam\nJaime\nJeffrey\nTristan\nCarson\nEnrique\nPeter\nAlberto\nHayden\nSaul\nWyatt\nBlake\nChase\nSalvador\nJosiah\nFabian\nMax\nIsrael\nRiley\nBryce\nGarrett\nArturo\nJohnny\nMaxwell\nAlfredo\nShane\nJulio\nMoises\nErnesto\nSpencer\nPablo\nCaden\nKai\nEsteban\nDonovan\nAndre\nFrank\nTravis\nJimmy\nJohnathan\nIsmael\nTanner\nAlbert\nStephen\nAshton\nNolan\nJonah\nBradley\nMiles\nGrant\nDanny\nBryant\nEmilio\nOliver\nKaden\nMicah\nParker\nRoman\nLandon\nRamon\nMateo\nHugo\nAngelo\nSantiago\nEmanuel\nShawn\nRodrigo\nConner\nDamien\nAllen\nCarter\nAbel\nDillon\nBrendan\nEmiliano\nAxel\nGregory\nKaleb\nScott\nAdan\nGuillermo\nCollin\nMathew\nDevon\nCooper\nPreston\nAlec\nJalen\nChris\nLeo\nJakob\nSimon\nCalvin\nLorenzo\nBrayan\nUriel\nBrayden\nDominick\nJoaquin\nTroy\nAllan\nSteve\nEddie\nPhillip\nMauricio\nAlfonso\nDante\nDarren\nDustin\nRene\nJessie\nFelix\nOsvaldo\nWesley\nMarvin\nRandy\nGage\nJoe\nNoe\nIssac\nOctavio\nTony\nGilberto\nTaylor\nAyden\nBraden\nEli\nJerry\nArthur\nDerrick\nLouis\nRicky\nEzekiel\nRodolfo\nLevi\nMitchell\nGriffin\nKobe\nMarc\nRogelio\nHarrison\nColby\nFelipe\nZane\nColton\nDennis\nMalachi\nRonald\nJaylen\nRudy\nTy\nAlvaro\nJair\nKeith\nLeonel\nMoses\nMaximus\nEfrain\nCasey\nLawrence\nSkyler\nCharlie\nMyles\nNickolas\nAdolfo\nCorey\nMaximiliano\nTrent\nNikolas\nRamiro\nClayton\nKenny\nQuinn\nVicente\nCade\nGael\nIsaias\nJoey\nOrlando\nJayson\nLarry\nTommy\nDarius\nTrenton\nBrady\nLance\nLukas\nZackary\nAldo\nDakota\nFreddy\nDrake\nGilbert\nHumberto\nDrew\nMelvin\nTheodore\nRoger\nAgustin\nBrenden\nBrett\nDean\nJay\nJohan\nAlonzo\nIgnacio\nOswaldo\nPhilip\nTomas\nUlises\nDonald\nEstevan\nEzra\nRussell\nCristopher\nJaiden\nJonathon\nAli\nBrody\nAlonso\nJairo\nNoel\nXander\nRohan\nDouglas\nAvery\nMarlon\nZion\nGary\nNelson\nRoy\nAmir\nLuca\nWalter\nYair\nChad\nGonzalo\nMalik\nBranden\nEzequiel\nIrvin\nJasper\nRigoberto\nChance\nDamon\nMorgan\nBryson\nGerman\nHudson\nCurtis\nAden\nCruz\nJulius\nAlvin\nAlessandro\nByron\nDorian\nJace\nMisael\nSam\nCyrus\nElliot\nKameron\nLeon\nBrennan\nDane\nIsiah\nOrion\nRay\nBen\nIzaiah\nKristopher\nMaximilian\nJahir\nAlexandro\nCamden\nCory\nFrederick\nGiancarlo\nGiovanny\nKyler\nRolando\nShaun\nTyson\nKristian\nTristen\nAsher\nJon\nKeegan\nCorbin\nDavis\nFrankie\nJadon\nJustice\nMaurice\nMike\nNathanael\nPayton\nRomeo\nSantos\nAriel\nBrent\nElvis\nJulien\nJunior\nKelvin\nRaymundo\nAditya\nChandler\nFranklin\nHeriberto\nIsai\nPeyton\nTobias\nBobby\nDalton\nElmer\nNestor\nRonaldo\nWilson\nZander\nBeau\nCayden\nDevan\nEfren\nKeven\nZachariah\nArnold\nBruce\nHarry\nJonas\nKieran\nGuadalupe\nMarshall\nDeven\nEugene\nMiguelangel\nAlfred\nJaxon\nJude\nKody\nLeonard\nMatteo\nStanley\nArjun\nDavin\nEverett\nJovanny\nKaiden\nToby\nAmari\nBailey\nSage\nValentin\nBraeden\nFidel\nJovani\nQuentin\nTrey\nAryan\nBennett\nGianni\nJuancarlos\nPhoenix\nQuincy\nBernardo\nBilly\nCristobal\nMalcolm\nNeil\nBraulio\nBrock\nFinn\nJosh\nSonny\nTucker\nDawson\nDesmond\nHarley\nJeffery\nKellen\nReese\nTerrell\nAdrien\nFrancis\nJovany\nOsbaldo\nCarlo\nDamion\nEnzo\nIrving\nIsidro\nJovanni\nNick\nRyder\nAdriel\nAri\nDemetrius\nElliott\nGerald\nGino\nGrayson\nHolden\nJoseluis\nMarcelo\nMohammad\nRylan\nSkylar\nWarren\nAntony\nDeclan\nErnest\nKian\nMaximillian\nReece\nSilas\nTerry\nConor\nDeandre\nDominik\nDuncan\nEmerson\nIsac\nMicheal\nRonnie\nAlexandre\nCarl\nPierce\nPranav\nBrendon\nBruno\nDerick\nGiovani\nHarold\nJaylin\nKeaton\nSantino\nSolomon\nUlysses\nZackery\nAron\nAugust\nDarian\nEverardo\nGregorio\nJaydon\nJohnathon\nLanden\nMekhi\nNikhil\nRey\nJamal\nMariano\nMarkus\nNathen\nNico\nReed\nRodney\nRowan\nVince\nAlijah\nBenito\nCraig\nHamza\nMilo\nMuhammad\nNiko\nRahul\nSawyer\nAhmad\nArman\nCamron\nCedric\nConrad\nEliseo\nFederico\nKade\nRalph\nReid\nVance\nBenny\nBrennen\nJermaine\nKendrick\nKhalil\nMaximo\nPaolo\nRonan\nSammy\nAnton\nFlavio\nFredy\nJordy\nKayden\nKent\nRory\nWayne\nZechariah\nArnav\nGannon\nGlenn\nGraham\nIsaak\nReynaldo\nRoland\nSahil\nStefan\nTyree\nAddison\nAhmed\nCristofer\nDallas\nDexter\nFreddie\nGenaro\nGeovanny\nJohann\nKeanu\nLewis\nLuc\nMohammed\nRaphael\nDarien\nDarin\nFavian\nGunnar\nJeff\nKareem\nLouie\nRick\nRiver\nSemaj\nSiddharth\nWillie\nZachery\nArya\nDario\nGordon\nJessy\nKadin\nMarcel\nMaverick\nRandall\nWeston\nArian\nCaiden\nDarwin\nDavion\nDonavan\nIbrahim\nJaycob\nKole\nLane\nLee\nLeobardo\nMauro\nMilton\nNehemiah\nReginald\nRex\nRocco\nWade\nAbram\nAndreas\nArmaan\nArnulfo\nCoby\nDan\nDeshawn\nDevyn\nGarret\nJean\nJerome\nJett\nJohnpaul\nKainoa\nMarquis\nRocky\nSterling\nTate\nVaughn\nWill\nZaid\nAntoine\nArath\nDominique\nEthen\nHernan\nJaron\nJarrett\nJayce\nJustus\nMalakai\nMohamed\nYovani\nAnish\nDimitri\nElian\nJaeden\nJaren\nKeenan\nLincoln\nNorman\nSebastien\nTerrance\nTitus\nTristin\nTyrone\nWalker\nXzavier\nAbner\nAugustine\nAydan\nEddy\nEdson\nElisha\nErwin\nFranco\nHoward\nJameson\nJan\nJaxson\nJovan\nKen\nKeoni\nLuciano\nMarcelino\nNathanial\nZakary\nAdonis\nAkash\nBernard\nBilal\nBlaine\nCeasar\nClark\nClay\nDayton\nDillan\nErnie\nGeoffrey\nIlan\nJamari\nJavon\nJonatan\nKeon\nKory\nLeopoldo\nMaddox\nReuben\nRishi\nTerrence\nAmarion\nDarryl\nDwayne\nJefferson\nJorden\nKurt\nMakai\nMarkanthony\nQuinton\nRamses\nTriston\nTylor\nAjay\nAlexzander\nArmen\nDangelo\nDavian\nDeon\nEdgardo\nEllis\nJaheim\nJamie\nJordi\nJosef\nKarl\nKrish\nKurtis\nLamar\nRobin\nShea\nWinston\nYael\nYash\nArmani\nBrad\nCash\nClaudio\nDarrell\nDilan\nDon\nFinnegan\nHarvey\nJagger\nJoan\nJordon\nJudah\nKoby\nOsmar\nRemy\nSoren\nTerence\nTim\nTodd\nTrace\nZain\nAbdullah\nBrodie\nCallum\nCamilo\nClarence\nColeman\nDevean\nDhruv\nEden\nFred\nGeovanni\nGerson\nGiovany\nJamison\nJohnson\nKane\nKenji\nLondon\nMaxim\nNorberto\nPorter\nRami\nRichie\nRoyce\nShayan\nStephan\nTai\nUlices\nAlden\nAtticus\nAyush\nBenicio\nCuauhtemoc\nDamarion\nDarion\nEdison\nErvin\nGeovany\nHassan\nIzaac\nJacky\nJericho\nLeif\nLino\nLionel\nLucio\nMarcanthony\nNikita\nOmari\nPierre\nQuinten\nRayan\nSaid\nSamson\nSimeon\nTristian\nValentino\nVan\nVladimir\nAngus\nArvin\nAurelio\nAydin\nDallin\nDavon\nEaston\nGavyn\nGideon\nGlen\nHiram\nHugh\nIsacc\nJabari\nJosemanuel\nKelly\nKeyon\nLeroy\nMarcoantonio\nMikel\nNeal\nNigel\nQuintin\nRashad\nRhys\nRigo\nSamir\nSky\nSkye\nSunny\nTheo\nTyrese\nAdin\nAldair\nAmar\nAnjel\nAzael\nDarnell\nDenis\nDomingo\nElan\nEnoch\nEsai\nFausto\nForrest\nGaven\nHans\nHoracio\nJarod\nJim\nJordin\nMarko\nMathias\nMatias\nMihir\nMohamad\nMustafa\nNash\nNikolai\nOmarion\nPerry\nSabastian\nSeamus\nSidney\nTyrell\nUbaldo\nUlisses\nYusuf\nAkhil\nAndrei\nAsa\nBaltazar\nBeck\nBlaise\nChristofer\nDale\nDarrion\nDev\nDion\nDonte\nEarl\nEleazar\nEliot\nEmmett\nEros\nFiliberto\nGrady\nGuy\nIain\nJacobo\nJai\nJamar\nJarrod\nJaylon\nJelani\nKaran\nKasey\nKiran\nKirk\nKolby\nLuisangel\nMarquise\nOsiel\nPaulo\nShreyas\nSyed\nTrevon\nVidal\nVishal\nZahid\nAbran\nAdalberto\nAedan\nAman\nArron\nClyde\nDaryl\nDave\nDereck\nEder\nEver\nEvin\nFabio\nFaustino\nGabino\nGreyson\nGunner\nImanol\nIsael\nJadyn\nJamil\nJet\nJullian\nKellan\nLisandro\nNeo\nOzzy\nPete\nReilly\nRhett\nRosendo\nSheldon\nVarun\nVikram\nAnderson\nAndrey\nAnson\nAugustus\nBarrett\nBill\nBlaze\nBrandyn\nBraydon\nBrycen\nCaesar\nChaz\nClinton\nDemarco\nDenzel\nDomenic\nEloy\nElvin\nHeath\nHilario\nIzaak\nJackie\nJael\nJoseangel\nJosias\nKamari\nKamron\nKendall\nKennedy\nKeshawn\nLaron\nLayne\nLeandro\nLeland\nMarcello\nMatthias\nNeel\nNikko\nOdin\nOtto\nPatricio\nRoss\nSalomon\nSantana\nShayne\nTaj\nTom\nTruman\nZack\nAbdul\nAndrik\nArtemio\nAshley\nBradly\nBraxton\nCanyon\nDanilo\nDeangelo\nDejon\nDeonte\nDestin\nDwight\nElio\nFletcher\nFranky\nGenesis\nHasan\nHuy\nIshan\nJafet\nJarett\nJedidiah\nJeremias\nKale\nKalvin\nKarim\nKarson\nKristofer\nKyan\nLazaro\nMakhi\nNahum\nNeftali\nObed\nParsa\nRickey\nRon\nSameer\nSione\nStone\nTariq\nTrinidad\nViet\nVincente\nWaylon\nYoussef\nAdair\nAlek\nAmaan\nAmeer\nAramis\nAren\nBenson\nBodhi\nBoris\nBroderick\nCain\nCamren\nClement\nClifford\nDarrin\nDarrius\nDaven\nDeion\nDevlin\nEan\nEdmund\nEly\nEriberto\nEsau\nFlynn\nGreg\nHerbert\nHerman\nIsreal\nJin\nJuandiego\nKain\nKaleo\nKavin\nKillian\nLamont\nLars\nLennon\nLloyd\nLucca\nLuka\nMassimo\nNarek\nParth\nPresley\nRaj\nReyes\nRian\nRoderick\nRyker\nShant\nSlater\nStevan\nStuart\nTaha\nTalon\nTobey\nTravon\nValente\nWillem\nYonatan\nYousef\nAbelardo\nAj\nAkshay\nAldahir\nAmare\nAnders\nAnirudh\nAram\nAric\nAshwin\nAvi\nBarry\nBronson\nCristo\nDandre\nDaron\nDashiell\nDemarion\nDemian\nDerik\nEamon\nEugenio\nForest\nGareth\nGeovani\nHarris\nHezekiah\nIshaan\nJade\nJarred\nJed\nJeramiah\nJerardo\nJessejames\nJob\nJohnmichael\nJosedejesus\nJuanpablo\nJun\nKamren\nKenton\nKenyon\nKeyshawn\nKingston\nLaurence\nLex\nLyle\nMack\nMarques\nMikhail\nMinh\nNatanael\nNiklas\nOm\nRaiden\nRohit\nRonny\nRoque\nRyland\nRylee\nSullivan\nTobin\nUziel\nVernon\nZaire\nZeus\nAakash\nAarush\nAce\nAlain\nAmador\nAniket\nAres\nAries\nBenton\nBishop\nBrandan\nBrando\nBrenton\nCelso\nCharley\nCian\nDajon\nDaren\nDemetrio\nDenny\nDonnell\nDonnie\nEdmond\nEliazar\nEnoc\nErin\nFermin\nGerard\nGianluca\nHank\nImmanuel\nIshmael\nIzayah\nJadin\nJamel\nJareth\nJaskaran\nJerald\nJoahan\nJohnnie\nKael\nKalani\nKamran\nKevyn\nKohl\nLevon\nLucien\nLuiz\nMarion\nMarius\nMarley\nMikael\nNery\nOcean\nPavel\nPrince\nRamsey\nReagan\nRonin\nSami\nServando\nSilvestre\nTeodoro\nTrever\nTye\nWestley\nYuvraj\nAaryan\nAbdiel\nAbrahan\nAjani\nAlexsander\nAlton\nArmand\nArtur\nAsael\nBowen\nBrice\nCassius\nClint\nColten\nDarrian\nDaylen\nDelvin\nDillion\nDino\nDionicio\nDomenico\nDylon\nEliezer\nEmmitt\nFlorentino\nFrancesco\nGarett\nGarrison\nGene\nGian\nGibran\nHadi\nIsmail\nIzak\nJabez\nJacoby\nJacques\nJasiah\nJeancarlo\nJeffry\nJohnathen\nJules\nKalen\nKamden\nKasen\nKeagan\nKoa\nKolton\nLeslie\nLester\nLuigi\nMagnus\nMalaki\nMarcial\nMarquez\nMaurisio\nMerrick\nMorris\nMykel\nNaythan\nNicolai\nNima\nNitin\nNoa\nOsman\nOswald\nParis\nRaudel\nRaven\nRayshawn\nRenato\nReymundo\nRowen\nShaan\nSrikar\nStefano\nStephon\nStewart\nSuraj\nTarik\nTeo\nTorin\nVincenzo\nVinh\nWilfredo\nAbhinav\nAbhishek\nAlexavier\nAmeen\nAmogh\nAmos\nAmrit\nAntoni\nArden\nAuston\nAustyn\nAvinash\nBlas\nBranson\nBret\nBrooks\nCanaan\nCarsen\nChauncey\nChester\nCiaran\nCortez\nCorwin\nCullen\nDanial\nDaveon\nDelano\nDenver\nDeondre\nDmitri\nDomanic\nDomonic\nDorien\nDraven\nDuke\nEdmundo\nEliel\nEmil\nFaris\nFinley\nFransisco\nFredi\nGalen\nGamaliel\nGibson\nGiorgio\nHanson\nHieu\nIman\nIrwin\nIverson\nJaelin\nJahiem\nJalil\nJarren\nJase\nJaydin\nJensen\nJess\nJonny\nJoseantonio\nJustyn\nKannon\nKarlos\nKarthik\nKeelan\nKeion\nKekoa\nKeller\nKerry\nKeshav\nKhai\nKhalid\nKonner\nLachlan\nLong\nLoren\nMaksim\nMarcellus\nMarlin\nMatt\nMattias\nMessiah\nMichaelangelo\nMilan\nMyron\nNasir\nPaulino\nReggie\nRenzo\nRio\nRivaldo\nSammuel\nShannon\nShiv\nShivam\nSyrus\nTavion\nTejas\nTigran\nTimmy\nTre\nTrevin\nUriah\nVinay\nYaseen\nYovany\nZayd\nZuriel\nAbhiram\nAleksander\nAlfonzo\nAmadeo\nAmado\nAmaury\nAmit\nAndru\nAngelgabriel\nAnibal\nAntwan\nArchie\nArnoldo\nAudric\nBeckett\nBodie\nBradyn\nCampbell\nCannon\nCarmelo\nCelestino\nConstantine\nDara\nDarrel\nDeaven\nDelfino\nDemitri\nDeric\nDerrek\nDesi\nDevante\nDevonte\nDonavin\nDontae\nDyllan\nEben\nEitan\nElder\nEmmet\nEwan\nFavio\nFinnley\nFloyd\nFord\nGauge\nGevork\nGianmarco\nGil\nGiovonni\nGiuseppe\nHakop\nHamzah\nHasani\nHenri\nHubert\nHyrum\nIsak\nIssa\nJacen\nJaret\nJasen\nJavan\nJax\nJaylan\nJaylyn\nJayvon\nJeronimo\nJerson\nJevon\nJimmie\nJoab\nJobany\nJordyn\nJossue\nJuanluis\nJuanmanuel\nKaito\nKarlo\nKavon\nKhang\nKorey\nLawson\nLeighton\nLemuel\nLev\nLucian\nLuismario\nMarck\nMarvyn\nMathieu\nMenachem\nMichel\nMickey\nMilad\nNiall\nNikola\nNoam\nOskar\nRaffi\nRajveer\nRandolph\nRashaad\nRayyan\nRaziel\nRemi\nRommel\nRony\nRoshan\nRueben\nRushil\nSpenser\nTed\nTenoch\nTevita\nTheron\nTracy\nTrentin\nTreyton\nTyron\nWilber\nWilliams\nWilly\nYosef\nYousuf\nZach\nAdithya\nAdonai\nAlessio\nAmilcar\nAmin\nAmmar\nAndrea\nAndruw\nAneesh\nArcher\nArik\nArun\nArvind\nAudel\nAugustin\nAvraham\nAyman\nBasilio\nBradford\nBraedon\nBriant\nBrogan\nCaeden\nCanon\nCisco\nClifton\nCodey\nColson\nDamani\nDameon\nDamond\nDaylon\nDeacon\nDedrick\nDuane\nDylen\nElia\nElijha\nEsdras\nEtienne\nGadiel\nGarren\nGaurav\nGautam\nGautham\nGavino\nGerrit\nHaiden\nHarish\nHarjot\nHarlan\nHayk\nHaziel\nHouston\nHussein\nIssak\nIzik\nJahaziel\nJavonte\nJaziel\nJesiah\nJiovanni\nJosemiguel\nKabir\nKaeden\nKonnor\nKorbin\nKrishna\nKunal\nKye\nKyree\nLangston\nLinus\nLucky\nMalek\nManjot\nManny\nMarcell\nMarquel\nMarshawn\nMarwan\nMaximilliano\nMaxx\nMemphis\nMicaiah\nMikah\nMizael\nNabil\nNaim\nNate\nNaveen\nNevin\nNicco\nNiccolo\nNicklaus\nNoble\nOsiris\nPaxton\nRace\nRaheem\nRavi\nRaymon\nRemington\nRich\nRico\nRishab\nRishabh\nRoan\nRobbie\nRojelio\nRomel\nRoyal\nRussel\nRyley\nSaeed\nSaleh\nSalvatore\nSanjay\nSarkis\nSeven\nShamar\nShashank\nShay\nSherman\nShiloh\nSilverio\nSriram\nTadeo\nTarun\nTevin\nTrenten\nTrystan\nVito\nVivek\nWaleed\nWilmer\nYovanni\nAbdulrahman\nAbelino\nAbiel\nAbisai\nAeden\nAkira\nAlexandros\nAlexei\nAlexsandro\nAmani\nAnakin\nAnas\nAndon\nAndrez\nAngelus\nAnthoni\nAris\nArmin\nArmon\nAshvin\nAthan\nAusten\nBao\nBaron\nBennie\nBlaize\nBlane\nBo\nBoden\nBraiden\nBrain\nBrendin\nBrighton\nBroden\nBurke\nCameren\nCezar\nChancellor\nCharly\nChristianjames\nCohen\nConstantino\nCornelius\nCris\nCurt\nDamari\nDana\nDanniel\nDaquan\nDeanthony\nDemitrius\nDemond\nDenilson\nDeshaun\nDevontae\nDiana\nDiogo\nEdan\nEdvin\nEladio\nElton\nElver\nElyas\nEmile\nErasmo\nErich\nErubiel\nEryk\nEsteven\nFox\nGaige\nGarrick\nGaspar\nGianfranco\nGildardo\nGovanni\nHaden\nHarman\nHeber\nHenderson\nHendrick\nHomero\nIker\nIram\nIsaih\nIssiah\nIzac\nJaedon\nJaelen\nJailen\nJairus\nJakub\nJaleel\nJamaal\nJamarion\nJarell\nJarvis\nJaymes\nJaysen\nJered\nJeremie\nJerimiah\nJerrick\nJonnathan\nJovon\nKalib\nKalob\nKamryn\nKaranvir\nKason\nKeilan\nKenshin\nKhari\nKiefer\nKing\nKodi\nKoen\nKonrad\nKristoffer\nLandin\nLatrell\nLeyton\nLizandro\nLonnie\nLuisantonio\nLuther\nMalakhi\nManolo\nMargarito\nMarkel\nMarkell\nMatisse\nMaxime\nMaynor\nMayson\nMiko\nMontgomery\nMoshe\nMynor\nNader\nNajee\nNathon\nNatividad\nNicholaus\nNishant\nNixon\nNomar\nOlin\nOtis\nOziel\nPietro\nPrinceton\nRasheed\nRefugio\nRider\nRomario\nRudolph\nSabino\nSachin\nSaketh\nSal\nSavion\nShaya\nSteele\nSylas\nTavin\nTeagan\nTeddy\nThaddeus\nThor\nTiger\nTrayvon\nUnknown\nUsman\nUzziel\nVictormanuel\nViktor\nWilbert\nWiley\nWillis\nWolfgang\nYehuda\nYoni\nYovanny\nZavier\nZayne\nZephyr\nZev\nAadi\nAarav\nAaren\nAbdelrahman\nAbimael\nAdarsh\nAdiel\nAdnan\nAdrean\nAdrik\nAharon\nAkil\nAldrin\nAlekzander\nAlen\nAlexsis\nAlias\nAmaree\nAmiel\nAndranik\nAndrue\nAnselmo\nAnthonie\nAntione\nAntone\nApollo\nArlo\nArsen\nArt\nAsad\nAskari\nAtom\nAven\nAyan\nBakari\nBartholomew\nBasil\nBelal\nBernabe\nBoston\nBoyd\nBrallan\nBrandin\nBrandt\nBrayn\nBritton\nCale\nCalum\nCamrin\nCamryn\nCase\nCason\nCecilio\nChace\nChan\nCobe\nColeton\nColter\nConrado\nCorban\nCorben\nCormac\nCornell\nCuahutemoc\nCurran\nDain\nDajuan\nDakoda\nDariel\nDarrien\nDartagnan\nDashawn\nDat\nDax\nDeagan\nDeegan\nDemetri\nDewayne\nDezmond\nDonovin\nDustyn\nDyllon\nEamonn\nEdwar\nEdwardo\nEdwyn\nEliab\nElijiah\nEmir\nEmory\nEnrico\nEoin\nEphraim\nEsgar\nExavier\nEzekial\nFabrizio\nFarid\nFeliciano\nFinlay\nFinnian\nFisher\nFoster\nFredrick\nGermaine\nGerry\nGiacomo\nGio\nGiovannie\nGraden\nHakeem\nHaris\nHarutyun\nHaven\nHikaru\nHiroki\nIbraheem\nImran\nIsaah\nIsayah\nIzaya\nJadan\nJahi\nJalal\nJalon\nJamir\nJasiel\nJathan\nJaven\nJaythan\nJayvion\nJeevan\nJerico\nJessiah\nJhonathan\nJhonny\nJhovany\nJoeseph\nJohannes\nJohnmark\nJohny\nJosealberto\nJosemaria\nJoshuah\nJovannie\nJoziah\nJuaquin\nJuliocesar\nJuvenal\nKahlil\nKailen\nKaine\nKalel\nKamal\nKanoa\nKarter\nKayvon\nKelton\nKevon\nKhoa\nKien\nKobi\nKoji\nKrystian\nKush\nKylematthew\nLaith\nLamberto\nLandyn\nLazarus\nLeander\nLenny\nLuisfernando\nMadden\nMahmoud\nMaison\nMalachai\nManveer\nMaria\nMateen\nMathis\nMatthewjames\nMaximino\nMaximos\nMazin\nMckay\nMigel\nMikey\nMitchel\nMunir\nMurphy\nNapoleon\nNathaneal\nNavid\nNicolo\nNils\nOciel\nOmer\nOren\nOri\nPalmer\nPorfirio\nQuinlan\nRashaun\nRegino\nReinaldo\nReuven\nRhyan\nRitchie\nRodrick\nRonak\nRosalio\nRuby\nRuslan\nRylie\nRyu\nSaad\nSahir\nSaif\nSampson\nSander\nSaulo\nScotty\nSerafin\nShai\nShayden\nShelton\nSherwin\nSidharth\nSincere\nSylvester\nTamir\nTaran\nTino\nTory\nTreyvon\nTrysten\nTylar\nTyrin\nValen\nVartan\nVinicio\nVishnu\nVladislav\nWendell\nWilder\nWilfrido\nYahel\nYanni\nYasir\nYonathan\nYuri\nYuto\nZacary\nZacharias\nZak\nZeke\nAamir\nAbe\nAdal\nAdel\nAdi\nAdian\nAdryan\nAidin\nAidyn\nAksel\nAlaric\nAlbaro\nAlistair\nAlphonso\nAmauri\nAmine\nAmon\nAnand\nAndi\nAndree\nAndrewjames\nAnsel\nAnsh\nAnshul\nAntonino\nAntwon\nAran\nArash\nArek\nAria\nArie\nAristotle\nArjan\nArjay\nArlen\nAryaman\nAssael\nAviel\nAviv\nAyaan\nAyrton\nAyub\nAziel\nAziz\nBenjaminjoseph\nBentley\nBenyamin\nBernie\nBlain\nBodey\nBrayant\nBrennon\nBrigham\nBrooklyn\nBryon\nBryton\nCadence\nCael\nCaelan\nCaillou\nCairo\nCal\nCalin\nCarlton\nCarver\nCasen\nCasper\nCeaser\nCecil\nCedrick\nChadwick\nChasen\nChayton\nChe\nChirag\nChrist\nChukwuemeka\nCj\nClemente\nCordell\nCosmo\nCoty\nCourtney\nCristhian\nCurren\nCy\nCyril\nDagan\nDagoberto\nDalen\nDamarcus\nDamarea\nDany\nDanyel\nDarryn\nDarvin\nDaryn\nDashaun\nDavonte\nDaylan\nDaylin\nDayvon\nDejuan\nDelvon\nDemarea\nDemari\nDemario\nDempsey\nDesean\nDeshon\nDiante\nDillen\nDilpreet\nDimas\nDionte\nDolan\nDomenick\nDonavon\nDonavyn\nDonny\nDru\nDylin\nEathan\nEbin\nEdder\nEdric\nEkin\nEligh\nElija\nEmily\nEri\nErrol\nEstefano\nEvander\nEverest\nFarhan\nFidencio\nFranklyn\nFroylan\nFynn\nGarry\nGeno\nGeraldo\nGermain\nGorge\nGraydon\nGrey\nGrover\nGurjot\nGurvir\nGus\nHagan\nHagop\nHaig\nHaik\nHamid\nHamilton\nHatim\nHerson\nHisham\nHollis\nHovanes\nIkaika\nIlyas\nImari\nIra\nIran\nIvory\nJacinto\nJacory\nJad\nJaedyn\nJaheem\nJaison\nJakobe\nJamin\nJancarlo\nJasdeep\nJasson\nJavion\nJeovany\nJermiah\nJeromy\nJese\nJoaquim\nJobe\nJoesiah\nJoesph\nJohnatan\nJohncarlo\nJohncarlos\nJonpaul\nJorel\nJorgeluis\nJosaiah\nJoshue\nJr\nJuanangel\nJuanjose\nJusten\nKacey\nKadyn\nKartik\nKash\nKavi\nKawika\nKayleb\nKeandre\nKeiran\nKenan\nKendal\nKenzo\nKesean\nKeshaun\nKevan\nKhaled\nKhristian\nKiel\nKilian\nKimberly\nKimo\nKincaid\nKion\nKleber\nKobie\nKourosh\nKris\nKrishan\nKushal\nKyran\nKyrin\nKyron\nLaine\nLathan\nLayth\nLian\nLunden\nLyndon\nMackenzie\nMakaio\nMalachy\nMaliq\nManraj\nManu\nManvir\nMasaki\nMasato\nMel\nMerlin\nMher\nMichelle\nMikail\nMiqueas\nModesto\nMonte\nMonty\nMykah\nMylo\nNadir\nNain\nNam\nNaman\nNarciso\nNathanel\nNaveed\nNazar\nNeftaly\nNeri\nNevan\nNicholai\nNicklas\nNicola\nNicolaus\nNolberto\nNoor\nNour\nOliverio\nOmero\nOmid\nOnyx\nOryan\nOtoniel\nPharrell\nPhi\nPratham\nPrithvi\nQasim\nRafe\nRaghav\nRamy\nRayhan\nReef\nRei\nRidge\nRito\nRobinson\nRodger\nRonal\nRonit\nRoscoe\nRyne\nSaahil\nSahib\nSahid\nSahith\nSai\nSalam\nSamarth\nSamual\nSaxon\nSeanpaul\nSelvin\nSergey\nShae\nShan\nShubham\nSir\nSlade\nStevie\nStorm\nSulayman\nSurya\nTahj\nTaiki\nTakai\nTakoda\nTakumi\nTalha\nTallon\nTamer\nTarek\nTavian\nTaylen\nTayo\nThanh\nTiago\nTiernan\nTj\nTobiah\nToren\nTorrin\nTrae\nTremayne\nTrung\nTrustin\nTryston\nTurner\nTushar\nTyee\nTyrique\nVahe\nValerie\nValor\nVann\nVansh\nVed\nVedant\nVegas\nVenancio\nVeniamin\nWylie\nXavian\nYaakov\nYancy\nYared\nYeshua\nYoan\nYobani\nYordi\nYulian\nZabdiel\nZacharia\nZayn\nZen\nDaniel\nAnthony\nAndrew\nJose\nJacob\nJoshua\nDavid\nAngel\nMichael\nMatthew\nChristopher\nJonathan\nRyan\nAlexander\nJoseph\nEthan\nNathan\nBrandon\nKevin\nJuan\nChristian\nNicholas\nDiego\nJesus\nLuis\nAdrian\nDylan\nGabriel\nIsaac\nCarlos\nWilliam\nBryan\nTyler\nJames\nBenjamin\nJustin\nSamuel\nJohn\nIsaiah\nJason\nJulian\nBrian\nElijah\nMiguel\nAlejandro\nAaron\nAlexis\nRobert\nNoah\nEric\nAidan\nZachary\nVictor\nEvan\nJack\nEduardo\nAlex\nIvan\nAdam\nJordan\nLogan\nJorge\nOscar\nJesse\nKyle\nSebastian\nLuke\nSteven\nCesar\nThomas\nFrancisco\nSean\nNathaniel\nRicardo\nFernando\nAntonio\nRichard\nAustin\nEdgar\nIan\nAndres\nGavin\nCaleb\nAiden\nCristian\nManuel\nOmar\nAlan\nLucas\nConnor\nDominic\nJackson\nMason\nVincent\nErick\nJavier\nOwen\nJake\nSergio\nJayden\nLeonardo\nCameron\nJoel\nDamian\nCharles\nEmmanuel\nXavier\nHector\nErik\nNicolas\nAbraham\nEdwin\nMark\nMario\nJaden\nJeremiah\nRuben\nJeremy\nAndy\nGiovanni\nRoberto\nHenry\nMarco\nDevin\nCole\nJosue\nSeth\nWyatt\nRafael\nTimothy\nCody\nJared\nArmando\nEdward\nHunter\nRaul\nKenneth\nColin\nGerardo\nMartin\nMarcus\nMarcos\nRaymond\nAdan\nPaul\nPedro\nGeorge\nPatrick\nIsrael\nChase\nEnrique\nDerek\nElias\nLiam\nGustavo\nJosiah\nTrevor\nSaul\nAlberto\nSalvador\nJaime\nRiley\nArturo\nPeter\nHayden\nTristan\nFabian\nMax\nJulio\nKai\nAshton\nMaxwell\nBlake\nAlfredo\nGarrett\nCarson\nCaden\nJeffrey\nJohnny\nErnesto\nShane\nBryce\nKaden\nYahir\nEmilio\nPablo\nRoman\nMoises\nSpencer\nAndre\nEmiliano\nIsmael\nDamien\nNolan\nEsteban\nSantiago\nJonah\nRamon\nCooper\nAngelo\nCarter\nMicah\nJimmy\nLandon\nDonovan\nMateo\nBrayden\nHugo\nAbel\nJohnathan\nOliver\nFrank\nAxel\nJoaquin\nStephen\nGregory\nMiles\nTanner\nBryant\nEmanuel\nAllen\nTravis\nDanny\nParker\nBrendan\nLeo\nBradley\nAlbert\nCollin\nLorenzo\nOsvaldo\nDevon\nGrant\nEli\nGuillermo\nMauricio\nMathew\nKaleb\nShawn\nDominick\nRodrigo\nTroy\nGael\nScott\nArthur\nBrayan\nCalvin\nNoe\nEzekiel\nAyden\nConner\nJerry\nTy\nEddie\nWesley\nIssac\nDillon\nLevi\nJakob\nDante\nFelix\nUriel\nMalachi\nMarc\nDustin\nPreston\nAlec\nBrady\nRonald\nSimon\nRodolfo\nTony\nAlfonso\nFelipe\nLeonel\nChris\nGilbert\nOrlando\nHarrison\nPhillip\nLouis\nNikolas\nRene\nCasey\nVicente\nDarren\nLukas\nMarvin\nNickolas\nBraden\nRamiro\nIsaias\nJoe\nSteve\nUlises\nAllan\nDakota\nDerrick\nRandy\nColton\nRudy\nJalen\nNoel\nGage\nZane\nGilberto\nJaylen\nJessie\nMaximiliano\nDean\nCharlie\nRogelio\nBrett\nLuca\nRyder\nMitchell\nSkyler\nLance\nRicky\nAdolfo\nEfrain\nKeith\nPhilip\nBrody\nGriffin\nCristopher\nJayson\nAsher\nMyles\nTheodore\nDrew\nEzra\nClayton\nColby\nDrake\nJoey\nPeyton\nTrent\nTaylor\nFreddy\nMoses\nAlvaro\nQuinn\nIgnacio\nDennis\nOswaldo\nZackary\nXander\nAgustin\nJairo\nHudson\nDarius\nKenny\nMorgan\nGary\nAden\nAldo\nCade\nJace\nJaiden\nJay\nJohan\nJude\nLawrence\nRoger\nBrenden\nEzequiel\nAli\nMaximus\nTommy\nAlexandro\nDouglas\nBranden\nLarry\nOctavio\nRigoberto\nRohan\nBrennan\nTrenton\nAlonso\nAmir\nBryson\nChad\nCorey\nHumberto\nAlessandro\nKobe\nMarlon\nElliot\nKristopher\nZion\nAlonzo\nCurtis\nRussell\nJair\nMike\nQuentin\nDonald\nGiovanny\nJunior\nZander\nAlvin\nTomas\nJonas\nMalik\nMelvin\nAvery\nCruz\nCyrus\nIzaiah\nBrock\nJulius\nMaximilian\nWalter\nMisael\nRolando\nDamon\nJonathon\nNathanael\nOrion\nPayton\nRoy\nSam\nTyson\nAriel\nIsiah\nRylan\nBraulio\nEstevan\nRomeo\nDorian\nEugene\nIrvin\nChance\nRay\nKian\nKristian\nTristen\nBrent\nDeven\nJoseluis\nKameron\nArjun\nBernardo\nDane\nGianni\nKyler\nNelson\nTobias\nUlysses\nWilson\nBruce\nCayden\nGonzalo\nJasper\nJaxon\nLeon\nYair\nByron\nFrankie\nGiancarlo\nJadon\nRowan\nAryan\nCorbin\nDawson\nDeclan\nBraeden\nCamden\nCory\nFinn\nEfren\nJovany\nKayden\nMaddox\nNeil\nShaun\nBobby\nHolden\nJosh\nKeegan\nLanden\nEnzo\nEverett\nGerman\nJulien\nMaurice\nArman\nIsai\nMatteo\nReynaldo\nBen\nDarian\nDavis\nKieran\nStanley\nCaiden\nCarl\nJuancarlos\nKelvin\nNico\nPranav\nRocco\nRonnie\nSantino\nSantos\nTrey\nArnav\nBennett\nJovanny\nKody\nLeonard\nBilly\nDerick\nHeriberto\nJeffery\nNestor\nQuincy\nDalton\nJovani\nKaiden\nToby\nAditya\nAlfred\nDavin\nDesmond\nElvis\nKhalil\nNikhil\nRaphael\nRonaldo\nZachariah\nAbram\nAri\nDeandre\nAron\nErnest\nKeven\nReece\nRonan\nSonny\nAhmad\nDamion\nDario\nFrancis\nAdriel\nAmari\nAntony\nConrad\nDallas\nElian\nFidel\nFrederick\nGrayson\nJeshua\nMekhi\nNathen\nPierce\nBrendon\nElliott\nGino\nNiko\nSolomon\nYael\nHarry\nJett\nMaximillian\nMaximo\nChandler\nCristobal\nDevan\nHarley\nMarshall\nMicheal\nMilo\nTucker\nAugust\nConor\nCraig\nFranklin\nJovanni\nJustice\nKeanu\nKellen\nMiguelangel\nReed\nValentin\nWeston\nZaid\nAndreas\nArnold\nElmer\nIbrahim\nJan\nRey\nBeau\nCarlo\nEmerson\nIsaak\nJon\nKeaton\nMarcelo\nRaymundo\nReese\nRiver\nBailey\nBenny\nEliseo\nIrving\nKyan\nLewis\nTate\nAdrien\nAlden\nBruno\nCamilo\nDemetrius\nDenzel\nEverardo\nFranco\nGeovanny\nGregorio\nGuadalupe\nJordy\nLane\nLuciano\nRodney\nSawyer\nSilas\nWarren\nWill\nArmaan\nGerald\nJaydon\nJefferson\nJermaine\nJudah\nLuc\nNehemiah\nWade\nBraxton\nGordon\nJamal\nMilton\nPhoenix\nVance\nZackery\nAlexandre\nAlijah\nAurelio\nDavion\nDevyn\nDuncan\nGlenn\nGraham\nHamza\nJahir\nJohnathon\nKurt\nMarcel\nMarkus\nMaxim\nTerry\nWalker\nAddison\nMariano\nMathias\nMohammad\nSahil\nSkylar\nStefan\nTitus\nZachery\nAbner\nAnton\nCash\nEddy\nFredy\nJaylin\nJerome\nJessy\nKen\nReid\nRoland\nZechariah\nGarret\nGenaro\nGeovanni\nGiovani\nIsac\nJoan\nMarcelino\nMatthias\nMohammed\nMuhammad\nNick\nSemaj\nValentino\nAkash\nAnish\nDarwin\nFavian\nJovan\nKade\nKadin\nKeenan\nLeandro\nMarquis\nRahul\nRhys\nRishi\nSage\nSammy\nZain\nAdonis\nBenito\nDominique\nFederico\nGunnar\nLeobardo\nLuka\nMalakai\nMohamed\nNeo\nOmari\nReuben\nRick\nTaj\nWinston\nAlexzander\nArya\nDominik\nHernan\nJameson\nJarrett\nLincoln\nPaolo\nRalph\nRory\nSaid\nTheo\nTriston\nCamron\nDeshawn\nDevean\nEnoch\nGeovany\nHassan\nIsidro\nJaeden\nJosemanuel\nKareem\nLeopoldo\nMakai\nMatias\nNorman\nObed\nQuintin\nReginald\nYash\nAmarion\nAnderson\nAntoine\nClark\nDavian\nDhruv\nEdgardo\nEdison\nEdson\nEmmett\nJai\nKent\nLee\nQuinton\nRandall\nTerrell\nTrevon\nVince\nAhmed\nAydan\nCristofer\nEleazar\nFranky\nJamari\nJaycob\nJean\nJonatan\nJustus\nLouie\nMarcello\nMauro\nOsbaldo\nSebastien\nTristin\nAlek\nAydin\nDraven\nGuy\nJohnpaul\nKainoa\nKarim\nLucca\nLucio\nRaiden\nRamses\nReagan\nSamson\nSky\nSoren\nAjay\nBrad\nCarmelo\nCohen\nDavon\nDilan\nEaston\nJamie\nJamison\nJavon\nJaylon\nJohnson\nKendrick\nKolby\nMalcolm\nNathanial\nRyland\nTodd\nTyree\nTyrone\nAren\nArnulfo\nAugustine\nBill\nBraydon\nCedric\nDan\nDangelo\nDarrell\nDomenic\nErwin\nEver\nHarold\nHoward\nJaron\nJayce\nJohann\nKeoni\nMaverick\nRemy\nSiddharth\nTerrance\nTom\nTruman\nWayne\nWillie\nYousef\nAbdullah\nAdalberto\nAnson\nAram\nAtticus\nAyush\nCannon\nDarrin\nEder\nElisha\nFletcher\nGerson\nGunner\nIshaan\nJeff\nJohnnie\nJosef\nKylan\nMarques\nMikel\nMustafa\nOmarion\nRobin\nAldair\nAman\nArmani\nBilal\nBrennen\nBrice\nBronson\nCallum\nClaudio\nDillan\nDion\nEliot\nElvin\nFlavio\nGeoffrey\nImmanuel\nIsael\nIshmael\nJabari\nJagger\nJeramiah\nJim\nJordon\nKanye\nPrince\nRex\nRico\nSamir\nShea\nTai\nTalon\nVarun\nVaughn\nArvin\nAshwin\nBlaine\nBrycen\nCeasar\nDayton\nDon\nDyllan\nEllis\nGian\nGrady\nHank\nHoracio\nJacky\nJaret\nJaydin\nJorden\nKasey\nLazaro\nLondon\nLuisangel\nLuiz\nMarcoantonio\nSameer\nShaan\nStephan\nSunny\nAngus\nArian\nAvi\nBrodie\nClarence\nCuauhtemoc\nDarnell\nDeon\nDimitri\nErnie\nFausto\nFinley\nGianluca\nGlen\nGreg\nHugh\nIsacc\nKamron\nKarl\nKeon\nNigel\nRoan\nSami\nSeamus\nSterling\nStone\nTrever\nVincenzo\nVladimir\nXzavier\nZakary\nAndrey\nAnirudh\nBenson\nBoston\nChristofer\nClinton\nCristo\nDashawn\nEden\nEsai\nGamaliel\nGarett\nGavyn\nHerman\nJaxson\nJedidiah\nMarley\nMohamad\nOskar\nPaulo\nReggie\nRio\nRoyce\nTariq\nYusuf\nZack\nAndon\nArath\nBenicio\nDale\nDallin\nDanilo\nDaryl\nDeangelo\nDejon\nDevlin\nDexter\nEdmund\nEloy\nErvin\nFred\nIain\nJaren\nJarred\nJelani\nJoseangel\nJuanpablo\nKale\nKarson\nKole\nKrish\nKurtis\nLamont\nLeroy\nLisandro\nLucky\nMarko\nNorberto\nPorter\nReyes\nRichie\nRickey\nRoss\nShayne\nSidney\nTerrence\nTobin\nAbhinav\nAbran\nAlton\nAsa\nBaron\nBrandan\nBrenton\nBroderick\nCamren\nCian\nClay\nCoby\nColeman\nCristhian\nDandre\nDaren\nDarien\nDashiell\nDomingo\nEliazar\nEmil\nEriberto\nEsau\nGadiel\nGannon\nGene\nGideon\nHarvey\nIker\nIshan\nJess\nKelly\nKenji\nKerry\nKory\nMarquez\nNikita\nNoa\nOdin\nPete\nPierre\nPresley\nRohit\nRosendo\nSandro\nShant\nStuart\nTerence\nTyrese\nVan\nWaylon\nAbdiel\nAkshay\nAnders\nAndrei\nBarry\nBeckett\nBodhi\nBrooks\nCharly\nDarion\nDarryl\nDemetrio\nDonavan\nDwayne\nEdmond\nEthen\nFinnegan\nFredrick\nGeovani\nHeath\nJaedon\nJaidyn\nJensen\nKaeden\nKalani\nKamari\nKamran\nKaran\nKendall\nKennedy\nKiran\nKonner\nMarquise\nMaximino\nPavel\nRayan\nRocky\nRoderick\nSalomon\nShayan\nUriah\nVivek\nWilber\nYosef\nYovani\nAce\nAdair\nAedan\nBeck\nBoris\nBrando\nCaesar\nDaron\nDereck\nDerik\nDiogo\nElton\nEly\nEvin\nFabrizio\nFreddie\nGil\nHezekiah\nHilario\nIzaac\nJackie\nJacques\nJamar\nJareth\nJaven\nJet\nJordyn\nKane\nKekoa\nKeyon\nKoda\nKoen\nLester\nLino\nMerrick\nOsiel\nOtto\nQuinlan\nRhett\nRider\nRigo\nRonin\nSerafin\nSilvestre\nSimeon\nStephon\nUlisses\nVidal\nVincente\nWillem\nYonatan\nYousuf\nAbimael\nAjani\nArmand\nBernard\nDarin\nDomonic\nDonte\nDuke\nEan\nEdmundo\nElyjah\nEugenio\nEwan\nFlynn\nForrest\nGreyson\nHasan\nHerbert\nHiram\nIzaya\nJafet\nJamil\nJericho\nJonny\nJoseantonio\nKalvin\nKamren\nKenyon\nKevyn\nKonnor\nKorbin\nKrishna\nKyree\nLars\nLenny\nLionel\nMarkanthony\nMihir\nMikael\nMilan\nNikko\nNikolai\nOcean\nPatricio\nRaj\nRenzo\nRoque\nSabastian\nSarkis\nSione\nTigran\nTim\nTobey\nTorin\nTrinidad\nVikram\nVinson\nAkira\nAnsel\nAnsh\nArron\nAsael\nAugustus\nBeckham\nBrandyn\nBret\nCanyon\nClemente\nColt\nDamarion\nDemian\nDestin\nElan\nFermin\nFrancesco\nGarrison\nGaven\nGus\nHans\nHarris\nImanol\nIssiah\nJacoby\nJamin\nJax\nJayvon\nJiovanni\nKadyn\nKalen\nKirk\nKris\nLamar\nLennon\nLevon\nLinus\nLloyd\nMalaki\nMarcellus\nMichaelangelo\nMoshe\nMykel\nNarek\nNevan\nPaxton\nRashad\nRasheed\nReilly\nRoshan\nRyley\nSantana\nShiloh\nShreyas\nSyed\nTravon\nTre\nTristian\nTrystan\nTurner\nZayd\nAbisai\nAlen\nAmani\nArav\nAric\nArnoldo\nAzael\nBarrett\nBo\nBraedon\nBrooklyn\nCelso\nChauncey\nClifford\nDeonte\nErin\nFaris\nFaustino\nGabino\nGalen\nGevork\nGiuseppe\nHaiden\nHouston\nIzaak\nJad\nJael\nJaheim\nJamarion\nJamir\nJavin\nJaylan\nJaziel\nJevon\nJordi\nJordin\nJoshue\nJullian\nJuvenal\nKael\nKarlo\nKhang\nKillian\nKingston\nLeland\nLeslie\nLex\nMassimo\nMessiah\nMikah\nMyron\nNash\nNasir\nNaythan\nNeel\nNery\nOm\nOsmar\nPerry\nRishabh\nRonny\nSaif\nSelvin\nSyrus\nTevin\nTimmy\nTrace\nTye\nTyrell\nUlyses\nUziel\nViktor\nWilmer\nAb\nAbhay\nAdriano\nAdryan\nAmado\nAmare\nAnmol\nArion\nArmen\nAthan\nAyaan\nBishop\nBradford\nBradly\nBryon\nCain\nCecil\nCharley\nChaz\nCy\nDarrion\nDax\nDenis\nDino\nDylon\nEarl\nElder\nEliel\nElio\nErasmo\nFroylan\nGerard\nHarman\nHaydn\nHenri\nIlan\nIsreal\nIssa\nIzayah\nJadyn\nJarod\nJaydan\nJaysen\nJeanpierre\nJerardo\nJeremias\nJerimiah\nJuliocesar\nJustyn\nJuventino\nKeshawn\nKeyshawn\nKing\nKoby\nKristofer\nKush\nLachlan\nLandyn\nLawson\nLuigi\nMakaio\nMaksim\nMarcanthony\nMateen\nMaximilliano\nMichel\nMontgomery\nNaim\nNatan\nNatanael\nNate\nNeftali\nOsiris\nParth\nRami\nRemi\nRemington\nRony\nRowen\nRyker\nRylee\nSalem\nSalvatore\nSasha\nShiv\nSohan\nTed\nTino\nTyce\nUbaldo\nUlices\nVishal\nVishnu\nZahid\nZaire\nAaryan\nAbdul\nAbelardo\nAbrahan\nAeneas\nAlexi\nAmar\nAmeen\nAmogh\nAmrit\nAubrey\nAzriel\nBernie\nBlaise\nBodie\nBradyn\nBraiden\nBranson\nBrevin\nCaeden\nCezar\nClifton\nConan\nDavonte\nDaylon\nDeegan\nDemario\nDev\nDomenico\nDonnie\nEdwardo\nEian\nEmery\nEmir\nEnoc\nEsdras\nFloyd\nGeno\nHakop\nIra\nIrwin\nIssak\nIzael\nJase\nJc\nJessi\nJoahan\nJob\nJohny\nJuandiego\nKabir\nKamryn\nKarlos\nKellan\nKenai\nKenton\nKeshav\nKonrad\nKristoffer\nKyran\nLaurence\nLayne\nLoren\nLucian\nLucien\nLuther\nLyle\nManny\nMarcell\nMarion\nMarshawn\nMatt\nMaxx\nMenachem\nMikhail\nMissael\nMonte\nMurphy\nNahum\nNam\nNicklas\nNicolo\nNihal\nNikolaus\nNixon\nNomar\nOzzy\nPorfirio\nReef\nRon\nServando\nShannon\nShay\nSincere\nSlater\nSullivan\nTeagan\nTeddy\nTej\nTejas\nThaddeus\nThien\nTylor\nViggo\nVinh\nVinny\nWilfredo\nYaseen\nYoel\nYordi\nZavier\nAarav\nAkhil\nAleksander\nAmbrose\nAmin\nAmit\nAmmar\nAmmon\nAnand\nAndranik\nAndrez\nAndru\nAries\nArin\nArmin\nArsen\nArun\nAustyn\nBaltazar\nBijan\nBlaze\nBradlee\nCaelan\nCampbell\nCassius\nCisco\nClement\nClyde\nColten\nCorban\nDakoda\nDave\nDeacon\nDemitrius\nDenilson\nDeondre\nDeshaun\nDevonte\nDomenick\nDru\nDwight\nDylen\nElie\nEligh\nEros\nEsequiel\nFiliberto\nFredi\nGibson\nGiovany\nHaden\nHayk\nHazael\nIsrrael\nIzak\nJacobo\nJahaziel\nJaison\nJaleel\nJarrod\nJeronimo\nJessejames\nJhonathan\nJin\nJomar\nJuandavid\nJuaquin\nKaelan\nKalil\nKanoa\nKarsten\nKarthik\nKegan\nKhalid\nKiernan\nKoa\nKorey\nKushal\nLatrell\nLeif\nLibrado\nLuisenrique\nMaceo\nMarck\nMarek\nMargarito\nMatan\nMicaiah\nMickey\nMinh\nMitchel\nNaveen\nNazareth\nNeal\nNiccolo\nNikola\nParis\nPranay\nRaghav\nRaudel\nRenato\nReymundo\nRishab\nRomario\nRushil\nSheldon\nSina\nStevan\nTytus\nValente\nVed\nVernon\nVirgil\nWallace\nWest\nWestin\nYeshua\nYoussef\nYovany\nZayden\nZeth\nZuriel\nAadi\nAakash\nAayush\nAbhiram\nAdi\nAdithya\nAlexiz\nAlexys\nAmaan\nAmeer\nAndi\nAndrea\nAntoni\nAntwan\nAntwone\nApollo\nArcher\nArmondo\nArtemio\nAshten\nAusten\nAzariah\nBoaz\nBowen\nBriant\nBrogan\nCarsten\nCoen\nColeton\nCurren\nDamari\nDameon\nDanniel\nDarrick\nDemetri\nDemitri\nDenny\nDenver\nDewayne\nDezmond\nDonavon\nDonnovan\nDonny\nEamon\nEber\nEdan\nEliezer\nElija\nElyas\nEphraim\nEyan\nFabricio\nFlorentino\nGauge\nGenesis\nGiancarlos\nGregor\nGrigor\nHamilton\nHenrik\nHomero\nHubert\nHyrum\nIsahi\nIzel\nIzrael\nJadan\nJadin\nJalil\nJamaal\nJarren\nJasiah\nJasiel\nJavan\nJeancarlo\nJesiah\nJhonny\nJohnmichael\nJorgeluis\nJosedejesus\nJosias\nJossue\nJovon\nJoziah\nJusten\nJustis\nKahlil\nKaimana\nKaleo\nKasen\nKhristian\nKiefer\nKodey\nKylen\nLaron\nMacario\nMaddux\nMakhi\nMarkel\nMarkell\nMattias\nMika\nNikos\nOswald\nOtoniel\nPalmer\nParsa\nPaulino\nPierson\nQuinten\nRaven\nRayhan\nRaymon\nRome\nRommel\nSaeed\nSamarth\nSamvel\nSaulo\nSevag\nStewart\nTayshaun\nTrenten\nUmar\nWendell\nWilliams\nWilly\nWolfgang\nWylie\nYusef\nZayne\nZephaniah\nZev\nAbhishek\nAdiel\nAdrean\nAdyn\nAilton\nAj\nAkshat\nAldrin\nAlexavier\nAmador\nAmos\nAnakin\nAnden\nAndruw\nAneesh\nAnshul\nAntwon\nAramis\nArden\nAris\nArshdeep\nAtharva\nAvraham\nBenedict\nBennie\nBernabe\nBlair\nBrallan\nCallahan\nCallan\nCanaan\nCarlton\nCary\nCason\nCassidy\nCeaser\nChace\nChasen\nCordell\nCosmo\nCullen\nDaemon\nDagoberto\nDajuan\nDakarai\nDakari\nDakotah\nDamani\nDarrien\nDat\nDaylen\nDegan\nDemarco\nDerian\nDesi\nDonato\nDuane\nEctor\nEdder\nEdu\nEdvin\nEitan\nEshaan\nEshan\nEsteven\nEtienne\nEzrah\nFinlay\nFisher\nFord\nGarren\nGaurav\nGerry\nGiacomo\nGildardo\nGiovannie\nGor\nHamzah\nHasani\nHaven\nHeber\nHuy\nIban\nIbraheem\nIgor\nIsaih\nIsak\nIseah\nIsmail\nItai\nJade\nJaelen\nJailen\nJarrell\nJashua\nJaskaran\nJaykob\nJayr\nJayven\nJed\nJeffry\nJezreel\nJimmie\nJosmar\nJourdan\nJuanjose\nJules\nKailash\nKailer\nKalin\nKavi\nKaya\nKayin\nKelton\nKenan\nKeonte\nKevon\nKhai\nKhamani\nKolton\nKunal\nLauro\nLenin\nLeyton\nLior\nLonnie\nLyndon\nMagnus\nMalikai\nManolo\nMarius\nMateus\nMathieu\nMayson\nMervin\nMick\nMikal\nMiller\nMorris\nMuhammed\nMusa\nNadav\nNarciso\nNareg\nNasser\nNevin\nNicklaus\nNicola\nNiklas\nNithin\nOziel\nPascual\nPiero\nRajan\nRamsey\nRandolph\nRayshawn\nRayyan\nRaziel\nRichmond\nRickie\nRomero\nRosario\nRueben\nRussel\nRylie\nSachin\nSal\nSanjay\nSaxon\nSayed\nSchuyler\nSeanmichael\nSeven\nShan\nSkye\nSuraj\nSven\nTadeo\nTal\nTaran\nTarun\nTaye\nTenoch\nTeodoro\nTheron\nThor\nTito\nTrayvon\nTrustin\nViraj\nWaleed\nWilbert\nWilfrido\nXaiver\nXavior\nYahya\nYamil\nYasir\nYonathan\nYoni\nYovanni\nYuvraj\nZac\nZach\nZade\nZakariya\nZeke\nZen\nZephyr\nAbdulrahman\nAdal\nAdarsh\nAdil\nAdin\nAdrik\nAksel\nAkul\nAlaric\nAleksandr\nAlexsander\nAlphonso\nAmadeo\nAndrik\nAngelgabriel\nAnjel\nAnuar\nAnuj\nAres\nAria\nAristeo\nArmon\nArshia\nArvind\nAshley\nAshtin\nAudel\nAvant\nAvian\nAvin\nAziz\nBaden\nBayron\nBernardino\nBladimir\nBlaize\nBlas\nBob\nBoden\nBraedyn\nBrandin\nBrandt\nBrennon\nBroc\nBrodi\nBuddy\nCage\nCale\nCalum\nCecilio\nCedrick\nChet\nClint\nCortez\nCyril\nDaelin\nDanial\nDanthony\nDany\nDarrian\nDarrius\nDartagnan\nDaunte\nDaven\nDaylan\nDayne\nDeion\nDemarion\nDerin\nDevante\nDevaughn\nDevion\nDevontae\nDiallo\nDillion\nDmitri\nDonavin\nDyllon\nDyson\nEathan\nEd\nEdgard\nEladio\nEligio\nElijiah\nEliodoro\nEmory\nEnrico\nEren\nErich\nErickson\nEricson\nEthyn\nEven\nEvyn\nFaisal\nFinnian\nForest\nFox\nFrederic\nGaige\nGaro\nGavan\nGeovannie\nGianmarco\nGibran\nGiordano\nGiuliano\nGraeme\nGray\nGurpreet\nHaik\nHanson\nHaris\nHarish\nHarjot\nHarlan\nHarnoor\nHaroon\nHovanes\nHuber\nImran\nIndiana\nIven\nIzik\nJaciel\nJacinto\nJahmari\nJaidon\nJairus\nJakobe\nJakub\nJameer\nJancarlos\nJaquan\nJashawn\nJasson\nJeevan\nJens\nJerald\nJeron\nJerrick\nJese\nJessee\nJessiah\nJireh\nJody\nJohnathen\nJohncarlos\nJohnpatrick\nJoncarlo\nJorel\nJosealberto\nJr\nJustino\nKailen\nKamau\nKamden\nKannon\nKasper\nKayleb\nKean\nKeane\nKeller\nKelsey\nKentrell\nKimberly\nKimo\nKona\nLeopold\nLevy\nLizandro\nLoic\nLucius\nLucus\nMac\nMahdi\nMaison\nMajor\nMalek\nMaria\nMatthieu\nMaurisio\nMemphis\nMichelle\nMigel\nMilad\nMynor\nNabil\nNakai\nNeri\nNicholaus\nNickolaus\nNima\nNishant\nOjani\nOmid\nOren\nOryan\nOzzie\nRaffi\nRahim\nRahman\nRajveer\nRam\nRandell\nRashaun\nRavi\nRayden\nRithik\nRobbie\nRobby\nRojelio\nRonit\nRoyal\nRyo\nRyon\nRyu\nSabino\nSahid\nSamari\nSandeep\nSander\nSerjio\nShalom\nShamar\nShamus\nShaw\nSheridan\nShivam\nSidharth\nSilverio\nSlade\nSoham\nSol\nSriram\nStefano\nStevie\nSukhman\nSukhraj\nSurya\nSy\nSydney\nTad\nTaiki\nTajon\nTeo\nTerren\nTevita\nTiago\nTrae\nTrevin\nTyshawn\nUzziel\nValentine\nVansh\nVentura\nViet\nVijay\nVirgilio\nWinson\nWyland\nYaakov\nYan\nYasin\nYobani\nZacharias\nZahir\nZak\nZakariah\nZavion\nZayvion\nZeus\nAarnav\nAble\nAchilles\nAdeeb\nAdian\nAdnan\nAdonai\nAhmari\nAidin\nAidyn\nAlain\nAldahir\nAleks\nAlexei\nAn\nAniket\nAniketh\nAran\nArchit\nArlo\nArtin\nArul\nAryeh\nAsad\nAsim\nAspen\nAugusto\nAvetis\nAvo\nAxl\nAyman\nBarron\nBenton\nBjorn\nBowie\nBoyd\nBradon\nBrayant\nBraylon\nBrayton\nBrigham\nBurton\nCael\nCaillou\nCaine\nCamryn\nCandelario\nCarnell\nCavin\nCayleb\nChaim\nChester\nChrist\nCj\nClaude\nCleveland\nCoda\nCodey\nConlan\nConrado\nConstantine\nCornelio\nCornelius\nCorwin\nCoy\nCris\nCrispin\nDaivon\nDajon\nDamarcus\nDamario\nDamen\nDara\nDarrel\nDaveon\nDayron\nDeanthony\nDedrick\nDelvin\nDemar\nDemarcus\nDequan\nDerrek\nDerrik\nDhillon\nDillen\nDillinger\nDjango\nDonaven\nDonoven\nDontae\nDovid\nEbin\nEdel\nEdilberto\nEdin\nEdrei\nEduard\nEithan\nEldon\nElek\nEleuterio\nElgin\nEliab\nEliah\nEliud\nElizandro\nEllison\nElpidio\nElson\nEmile\nEmin\nEmmet\nEnrrique\nEoin\nEthaniel\nEulalio\nEvander\nEvans\nFabio\nFahad\nFaiz\nFaizan\nFarhan\nFarid\nFilip\nFionn\nFortino\nFrancois\nGaret\nGaspar\nGeorgio\nGeremy\nGeronimo\nHaig\nHamlet\nHarout\nHayes\nHermes\nHomar\nHumza\nIman\nIndigo\nIrfan\nIssaiah\nJabril\nJacen\nJaedan\nJaelin\nJahiem\nJalani\nJalin\nJancarlo\nJarek\nJarett\nJarin\nJasen\nJashon\nJaspreet\nJaymes\nJeanluc\nJenner\nJeovanny\nJeramie\nJeric\nJerrod\nJerson\nJesusjr\nJesusmanuel\nJhovany\nJiovani\nJjesus\nJoab\nJoell\nJoeseph\nJohncarlo\nJonnathan\nJoon\nJoseguadalupe\nJosemaria\nJoshuajohn\nJuanantonio\nJuanluis\nJuanmanuel\nJudson\nKaelin\nKailan\nKaito\nKalel\nKalob\nKamal\nKamar\nKamarion\nKanan\nKash\nKason\nKaveh\nKaven\nKavin\nKeagan\nKeandre\nKeshaun\nKeshon\nKethan\nKhamari\nKimani\nKiyan\nKorbyn\nKou\nKrishan\nLadainian\nLaith\nLandin\nLangston\nLavell\nLegend\nLeighton\nLemuel\nLeonidas\nLeovardo\nLev\nLinden\nLuisantonio\nLupe\nMack\nMadden\nMahad\nMaika\nMalacai\nManu\nMarkos\nMarty\nMasen\nMathis\nMaurilio\nMaurion\nMaxfield\nMckinley\nMekai\nMichelangelo\nMizael\nMontana\nMykah\nNadeem\nNadim\nNapoleon\nNason\nNathin\nNazar\nNeftaly\nNicco\nNicolai\nNihar\nNikolaos\nNitin\nNoam\nNoble\nNolen\nNova\nObadiah\nObie\nOllin\nOmeed\nOmer\nOri\nOsman\nOtis\nPasha\nPercy\nPhineas\nPuneet\nQuang\nRaheem\nRashawn\nRashid\nRian\nRidge\nRiki\nRitchie\nRitvik\nRodrick\nRonak\nRondell\nRonen\nRoni\nRonnell\nRoosevelt\nRowdy\nRubin\nRusty\nRuvim\nRyen\nSaad\nSaahil\nSaleem\nSamar\nSamay\nSatvik\nSaurav\nSavion\nScout\nSeanpatrick\nSebastion\nShai\nShalim\nShaunak\nShayden\nSherman\nShiven\nShrey\nSid\nSir\nSixto\nSohil\nStanton\nStrider\nTaha\nTakumi\nTanay\nTanish\nTarek\nTarik\nTaryn\nTavin\nTavis\nTayler\nTayvion\nTennyson\nThai\nTidus\nTimmothy\nTin\nTj\nTlaloc\nTonatiuh\nTou\nTreyton\nTreyvon\nVahe\nVaibhav\nValerie\nVedant\nVeer\nVinay\nVito\nVlad\nWalid\nWes\nWilder\nWiley\nXaviar\nYehuda\nYisrael\nYohann\nYuki\nZacary\nZaden\nZaiden\nZakery\nZaven\nDaniel\nAnthony\nAngel\nDavid\nJoshua\nJose\nAndrew\nJacob\nMatthew\nMichael\nJonathan\nChristopher\nJoseph\nAlexander\nNathan\nEthan\nRyan\nDiego\nJuan\nKevin\nBrandon\nChristian\nLuis\nGabriel\nJesus\nAdrian\nIsaac\nNicholas\nCarlos\nDylan\nNoah\nTyler\nSamuel\nBryan\nJames\nIsaiah\nJulian\nBenjamin\nWilliam\nJohn\nAaron\nJustin\nAlejandro\nMiguel\nJason\nBrian\nElijah\nJack\nRobert\nEric\nAidan\nSebastian\nLogan\nJordan\nVictor\nEvan\nZachary\nJorge\nLuke\nEduardo\nAlex\nIvan\nOscar\nJesse\nAdam\nSteven\nAlexis\nNathaniel\nAiden\nLucas\nGavin\nFrancisco\nCesar\nThomas\nKyle\nManuel\nOmar\nAntonio\nAndres\nRichard\nRicardo\nJayden\nCaleb\nAlan\nFernando\nIan\nSean\nAustin\nMason\nEdgar\nDominic\nHector\nGiovanni\nCristian\nJackson\nVincent\nJavier\nDamian\nLeonardo\nErick\nCharles\nOwen\nSergio\nJeremiah\nAbraham\nXavier\nConnor\nEmmanuel\nNicolas\nJoel\nErik\nMario\nAndy\nMarco\nJake\nCameron\nHenry\nRoberto\nJaden\nCole\nEdwin\nJeremy\nDevin\nMark\nJosue\nJared\nEdward\nTimothy\nHunter\nWyatt\nSeth\nRuben\nPedro\nKenneth\nElias\nPaul\nJosiah\nMartin\nGeorge\nRaymond\nIsrael\nArmando\nChase\nLiam\nGerardo\nJulio\nColin\nHayden\nRafael\nCody\nMarcus\nRiley\nRaul\nLandon\nTrevor\nDerek\nSalvador\nMarcos\nRoman\nEnrique\nArturo\nGustavo\nJaime\nAdan\nPeter\nSaul\nFabian\nTristan\nPatrick\nMax\nAlberto\nEsteban\nEmilio\nJohnny\nKaden\nEmiliano\nCarter\nPablo\nKai\nBlake\nAndre\nMoises\nOliver\nShane\nErnesto\nSantiago\nBryce\nCaden\nMaxwell\nGael\nBrayden\nJeffrey\nDonovan\nAxel\nAlfredo\nCarson\nMateo\nJohnathan\nNolan\nMicah\nFrank\nRamon\nBradley\nEmanuel\nJonah\nMiles\nJoaquin\nTanner\nAngelo\nGarrett\nHugo\nAbel\nStephen\nIsmael\nJimmy\nCooper\nDamien\nSpencer\nAyden\nParker\nDanny\nBrayan\nKaleb\nUriel\nLeo\nYahir\nMauricio\nShawn\nTravis\nAshton\nPreston\nEli\nMathew\nRodrigo\nGrant\nTroy\nGuillermo\nAlbert\nBrady\nDominick\nTy\nBrendan\nEzekiel\nMalachi\nAllen\nRandy\nRyder\nDillon\nLevi\nOsvaldo\nCalvin\nGregory\nConner\nCollin\nNoe\nBraden\nLorenzo\nLeonel\nUlises\nScott\nIssac\nDrew\nEddie\nWesley\nChris\nDevon\nFelipe\nHarrison\nRene\nBrody\nBryant\nTony\nAlfonso\nArthur\nGage\nOrlando\nDante\nJakob\nFelix\nRodolfo\nRonald\nJaylen\nMarvin\nSteve\nIsaias\nAlec\nColton\nLukas\nNikolas\nDustin\nLuca\nMaximus\nJalen\nJessie\nJoe\nRogelio\nTaylor\nAdolfo\nLouis\nHudson\nJaiden\nJerry\nKenny\nRudy\nDerrick\nEzra\nSimon\nNoel\nDarren\nRicky\nVicente\nEfrain\nGilberto\nJace\nLance\nSkyler\nAlvaro\nCruz\nOswaldo\nTheodore\nJairo\nCasey\nGriffin\nRamiro\nMaximiliano\nTrenton\nZane\nPhillip\nDrake\nGilbert\nAsher\nCharlie\nDean\nQuinn\nMarc\nOctavio\nPhilip\nAllan\nAvery\nBrett\nCayden\nPeyton\nJay\nDakota\nJoey\nJayson\nDennis\nRohan\nZackary\nCorey\nMaddox\nTrent\nIzaiah\nLawrence\nJohan\nDarius\nGary\nRoger\nAldo\nIgnacio\nJonas\nAlonso\nAlonzo\nKeith\nMelvin\nMyles\nAden\nCyrus\nMoses\nNickolas\nZion\nColby\nHumberto\nMitchell\nTomas\nCade\nEzequiel\nJulius\nKaiden\nRylan\nAli\nBraulio\nFreddy\nRigoberto\nBranden\nCristopher\nAriel\nBryson\nDonald\nElliot\nFrankie\nXander\nLarry\nAmir\nChance\nIsai\nMorgan\nRussell\nBrenden\nDeclan\nEstevan\nJude\nRay\nTommy\nAlvin\nMaximilian\nWalter\nElliott\nGiovanny\nDamon\nNelson\nAlessandro\nAlexandro\nBrennan\nIsiah\nKyler\nMalik\nMarlon\nRoy\nRowan\nAgustin\nIrvin\nKristopher\nMisael\nJaxon\nJonathon\nLeon\nClayton\nDane\nFinn\nChad\nYair\nDouglas\nGerman\nSam\nTyson\nBruce\nKian\nMike\nKayden\nKelvin\nLanden\nCurtis\nMiguelangel\nTristen\nByron\nGianni\nJunior\nGonzalo\nQuentin\nTrey\nBraeden\nEfren\nEnzo\nNestor\nShaun\nGiancarlo\nJasper\nAryan\nCamden\nHolden\nRolando\nDorian\nJovani\nJuanpablo\nKeegan\nNehemiah\nZander\nArjun\nBrock\nDario\nJovanni\nRomeo\nRonan\nSawyer\nSonny\nBruno\nDallas\nJovanny\nKameron\nMatteo\nCarlo\nJair\nNathanael\nOrion\nPhoenix\nSilas\nSolomon\nTobias\nZachariah\nKristian\nSage\nTate\nJadon\nJohnpaul\nRocco\nDalton\nEmerson\nEugene\nEverett\nGiovani\nGrayson\nHarry\nJett\nKeven\nUlysses\nAmari\nAri\nBennett\nCory\nDavis\nDeven\nElvis\nKhalil\nSantos\nAditya\nFranklin\nKieran\nAnderson\nBen\nBernardo\nCaiden\nCarl\nJon\nMarcelo\nStanley\nBrent\nCorbin\nDarian\nReese\nAdriel\nAhmad\nBilly\nFredy\nJudah\nJulien\nMekhi\nAbram\nCash\nDerick\nDominik\nJaydon\nMaximo\nNathen\nPayton\nRey\nRiver\nAlexzander\nAlfred\nAron\nBobby\nFidel\nFrederick\nLeonard\nQuincy\nRonaldo\nAdrien\nArnav\nJosh\nMarcel\nTerry\nTucker\nDesmond\nGerald\nGuadalupe\nHeriberto\nJovany\nRaymundo\nReece\nRodney\nDavian\nEliseo\nGraham\nIbrahim\nJuancarlos\nMicheal\nPierce\nRonnie\nWade\nWilson\nYael\nAntony\nFavian\nJoan\nMaverick\nNico\nToby\nValentin\nArman\nBeau\nElmer\nKellen\nMaurice\nTitus\nElisha\nIsidro\nKeaton\nLouie\nMarkus\nRaphael\nRick\nWeston\nCristobal\nEmmett\nJaxson\nLeandro\nLuc\nMalakai\nSantino\nConor\nDawson\nDeandre\nIsaak\nKody\nMilo\nNick\nVarun\nWalker\nJordy\nJustice\nLincoln\nMohammad\nRoland\nRyland\nSemaj\nWarren\nBenny\nCohen\nHernan\nJerome\nLeland\nLuciano\nPranav\nAtticus\nDangelo\nGenaro\nGerson\nIsac\nJefferson\nJeshua\nNeil\nOsbaldo\nValentino\nWinston\nAlijah\nArmaan\nBrendon\nDavion\nDonavan\nEverardo\nMalcolm\nMarshall\nNikhil\nSunny\nTristin\nAbdiel\nAddison\nCristofer\nFrancis\nGeovanni\nJaylin\nJohann\nJohnathon\nLuka\nMakai\nMariano\nRalph\nSkylar\nWill\nWillie\nDavin\nFederico\nGino\nKadin\nKeanu\nKobe\nNiko\nRamses\nReed\nTerrance\nAhmed\nBailey\nBenicio\nChandler\nDarin\nEddy\nErnest\nGeovanny\nGreyson\nHarold\nJaeden\nJameson\nReynaldo\nSahil\nTerrell\nZechariah\nBraydon\nConrad\nCraig\nGlenn\nIrving\nKade\nKeenan\nKenji\nMatias\nNasir\nRahul\nReid\nReyli\nTalan\nAndreas\nAnton\nAugust\nCamron\nDamion\nDarien\nDemetrius\nDevan\nEder\nGunnar\nIzaac\nJeffery\nJonatan\nKane\nLionel\nMarcelino\nMuhammad\nSoren\nVan\nZachery\nZackery\nAntoine\nAydan\nBenito\nDashiell\nEaston\nElian\nElvin\nHamza\nHarley\nJoseluis\nLane\nLucca\nMilan\nStefan\nTerrence\nCedric\nDamarion\nDarryl\nEdson\nFreddie\nGregorio\nJovan\nKent\nMaximillian\nSterling\nVaughn\nDan\nDereck\nDuncan\nGrady\nLamar\nLondon\nMohamed\nMohammed\nQuinton\nRandall\nSammy\nSebastien\nXzavier\nAbhinav\nClay\nDarwin\nDevyn\nDexter\nDominique\nEden\nErwin\nFlavio\nJael\nJamal\nMarquis\nMathias\nMilton\nOmarion\nPaulo\nSaid\nSiddharth\nTheo\nVladimir\nAbdullah\nAbner\nAnakin\nAyush\nCamren\nEver\nFranco\nJahir\nJayce\nJeff\nJorden\nLucio\nMarcoantonio\nMauro\nObed\nPaolo\nQuintin\nRayan\nReginald\nRex\nRoyce\nSeamus\nTom\nYonatan\nAdonis\nBenedict\nBronson\nDale\nDillan\nEllis\nGeoffrey\nJacobo\nJamie\nKen\nKennedy\nMarques\nNikko\nOsmar\nRishi\nTodd\nZaid\nAlexandre\nAmare\nAndrey\nArmen\nArnold\nCamilo\nClark\nDhruv\nEvin\nFred\nGideon\nIain\nJericho\nJermaine\nJet\nJustus\nKasey\nKrish\nLewis\nMarcello\nNigel\nOdin\nRhys\nTai\nYash\nYovani\nAdair\nAjay\nAnish\nArath\nBeckett\nClarence\nDeangelo\nDonte\nEsai\nFinnegan\nHoward\nIzaak\nJavon\nJensen\nKendrick\nKeon\nKurt\nKyan\nLee\nOmari\nPrince\nReuben\nRory\nTalon\nVince\nWayne\nAdalberto\nAsa\nBernard\nBrennen\nCain\nDarnell\nDenzel\nDeon\nDilan\nErnie\nErvin\nImanol\nJagger\nJamari\nJeramiah\nJordi\nKainoa\nLino\nLuisangel\nMihir\nNathanial\nPatricio\nPierre\nPorter\nRami\nReyes\nRocky\nSameer\nTaj\nUlices\nVincenzo\nYusuf\nAmado\nAman\nBlaine\nBrodie\nDanilo\nDarrell\nDaryl\nDavon\nDeshawn\nDimitri\nGarret\nGordon\nIshan\nJarrett\nKalani\nKenyon\nKevyn\nLucian\nMaxim\nRonin\nSamir\nTriston\nTyrone\nZack\nArya\nBodhi\nBrooks\nBrycen\nCarmelo\nChaz\nChristofer\nColten\nDwayne\nDyllan\nEthen\nFrancesco\nGannon\nJan\nJessy\nJordon\nKarol\nKeyon\nKurtis\nLeopoldo\nNeo\nQuinten\nRobin\nVance\nZeus\nAnjel\nArmani\nBenson\nBill\nCaesar\nCarmine\nClaudio\nDaren\nDomenic\nFermin\nGunner\nGuy\nHoracio\nIsacc\nJase\nJayro\nJoseangel\nJosef\nKamron\nKing\nKory\nLeif\nLisandro\nNorberto\nOsiel\nParsa\nRoan\nRohit\nStephan\nTobin\nYosef\nZahid\nZain\nAce\nAchilles\nAlek\nAndrei\nArnulfo\nBodie\nBrad\nBroderick\nCeasar\nEdan\nEliel\nEnoch\nFinley\nFranky\nGianluca\nHank\nHarvey\nHassan\nIzak\nJaydin\nJaylon\nJean\nJedidiah\nJiovanni\nKaeden\nKareem\nKarl\nKekoa\nLucky\nMatthias\nNikolai\nParis\nRhett\nRichie\nShaan\nShea\nSkye\nThaddeus\nTrevon\nUziel\nVikram\nWilmer\nAarav\nAdin\nAedan\nAren\nArian\nArnoldo\nAydin\nBarrett\nBraxton\nCallum\nDayton\nDion\nGavyn\nGian\nHeber\nHezekiah\nImmanuel\nIshaan\nJadyn\nJamar\nJax\nJohnson\nKeoni\nKoa\nMerrick\nMikel\nOsiris\nPerry\nSidney\nVidal\nWaylon\nAkshay\nAldair\nAndrik\nArvin\nAusten\nBeck\nBradly\nBraiden\nBranson\nCannon\nColeman\nDarrin\nDeion\nDenis\nDuke\nEdison\nEleazar\nForrest\nGeovany\nHans\nHerman\nIsael\nIsreal\nJc\nJosemanuel\nKalvin\nKamran\nKarim\nLazaro\nLeobardo\nMalaki\nNash\nNoam\nRaiden\nReagan\nRigo\nRio\nRoss\nRylee\nSalvatore\nSky\nTyree\nViktor\nYeshua\nYousef\nAbrahan\nAnirudh\nAram\nArcher\nAsael\nAugustine\nAugustus\nBilal\nBraedon\nBrando\nCanyon\nClinton\nDeegan\nEdmund\nEly\nEsau\nEwan\nGiovany\nGlen\nGreg\nIker\nIshmael\nIzayah\nJai\nJessiah\nJoshuah\nJuanjose\nKaleo\nKamren\nKanye\nKelly\nKillian\nKirk\nKole\nLenny\nMagnus\nMessiah\nMusa\nMustafa\nReymundo\nRico\nRoderick\nSammuel\nSantana\nTariq\nTimmy\nTyrese\nYasir\nAjani\nAkash\nAlton\nArmand\nArmon\nAshwin\nAvi\nBlaze\nBraylon\nCase\nCristo\nCuauhtemoc\nDarrion\nDemarcus\nDemarion\nDemian\nDomingo\nDon\nDonavin\nElder\nEliezer\nEriberto\nFaris\nFredrick\nHerbert\nJad\nJafet\nJaycob\nJaysen\nJaziel\nJomar\nJuanmanuel\nKoen\nKorbin\nLucien\nLuiz\nMarion\nMarko\nMarley\nMarquise\nNate\nNeel\nOtis\nPete\nRemy\nRickey\nShay\nTim\nTrace\nTruman\nVincente\nWestley\nWilbert\nWiley\nZayd\nAbelardo\nAlden\nAleksander\nAlen\nAlexavier\nAmarion\nAmeer\nAnson\nAuston\nBlas\nBoden\nBradyn\nBrighton\nCassius\nClemente\nCristhian\nDallin\nDamari\nDarion\nDave\nDevlin\nDraven\nEliot\nEmir\nEphraim\nGaige\nGreco\nGurshan\nHaven\nJabari\nJadin\nJamir\nJamison\nJaren\nJasiah\nJaydan\nJevon\nKeagan\nKendall\nKolby\nKorey\nLars\nLester\nLinus\nNahum\nNarek\nNevin\nNikita\nOtto\nPresley\nRamsey\nReilly\nRishab\nRon\nRyker\nRyley\nSabastian\nSalomon\nSami\nSerafin\nShayan\nSheldon\nStone\nSuraj\nSyed\nSylas\nTeagan\nThor\nTobey\nUlisses\nValente\nWallace\nWilfredo\nYobani\nZen\nAdriano\nAidyn\nAmar\nAmos\nAnsel\nAries\nArron\nAzael\nBoston\nBrandyn\nBrice\nCael\nCampbell\nClyde\nCoby\nCy\nDandre\nDanniel\nDaron\nDashawn\nDaven\nDejon\nDenilson\nDonavon\nEdgardo\nEdric\nEloy\nFabrizio\nFiliberto\nGadiel\nGamaliel\nGaven\nGeronimo\nHaiden\nHugh\nJaedon\nJamil\nJarrod\nJaven\nJin\nJohnnie\nJonny\nJordyn\nKael\nKarlos\nKason\nKris\nLenin\nLuigi\nMarquez\nMikael\nNoa\nParth\nPavel\nPaxton\nRonny\nShrey\nShreyas\nSimeon\nSincere\nSione\nTyrell\nZach\nZakary\nAbran\nAlain\nAlexsander\nAmin\nAnders\nAneesh\nArtemio\nAthan\nAurelio\nAustyn\nBishop\nBladimir\nBo\nBode\nBowen\nCale\nClifford\nClint\nConstantine\nCormac\nCurren\nDarrius\nDax\nDeacon\nDemetrio\nElan\nEmery\nEros\nEsdras\nFabricio\nFavio\nFransisco\nGauge\nGil\nHaden\nHarman\nHeath\nHilario\nJamel\nJamin\nJaret\nJareth\nJaron\nJeovanny\nJerimiah\nJess\nJhonny\nJohny\nJosias\nKadyn\nKamari\nKaran\nKarlo\nKarson\nKonner\nKonnor\nKonrad\nKylan\nLachlan\nLevon\nLex\nMarcanthony\nMarcellus\nMattias\nMaxx\nNam\nNaythan\nNicolo\nNixon\nNoble\nOcean\nOm\nRaghav\nReef\nRenato\nRenzo\nRonit\nRosendo\nRudolph\nSamson\nSatvik\nTeo\nTevita\nTiago\nTristian\nTylor\nVedant\nYordi\nZuriel\nAarush\nAdarsh\nAdithya\nAkhil\nAmmar\nAra\nArden\nArlo\nAugustin\nBasil\nBoris\nBrooklyn\nCaeden\nCalum\nCharly\nChauncey\nCullen\nDeanthony\nDemetri\nDenver\nDesean\nDonnie\nDwight\nEan\nElgin\nFaustino\nFausto\nFletcher\nGarett\nGarrison\nGeovani\nGianmarco\nHadi\nHakeem\nIlan\nIsak\nJacky\nJamarion\nJeancarlo\nJim\nJr\nJuandiego\nKale\nKarsten\nKellan\nKerry\nKeshawn\nKiran\nKohen\nKrishna\nKyree\nLennon\nLeroy\nLucius\nManny\nMassimo\nNatan\nNatanael\nNeal\nNile\nPorfirio\nRayden\nRaymon\nRen\nRishabh\nRomario\nRony\nRyen\nSarkis\nSavion\nShant\nShayne\nSullivan\nSurya\nTanay\nTed\nTejas\nTeodoro\nTigran\nTravon\nTye\nVivek\nWillem\nZahir\nZaire\nZavier\nZephyr\nAbdulrahman\nAimar\nAlekzander\nAlessio\nAlexi\nAmit\nAndranik\nAndru\nAntoni\nAramis\nArav\nAria\nArik\nAyman\nBarry\nBeckham\nBrandan\nBrandt\nBraylen\nBrennon\nCarlton\nCedar\nCelso\nChe\nChester\nCian\nClement\nCoen\nColt\nCornelius\nCurran\nDagoberto\nDameon\nDash\nDaylen\nDemario\nDenny\nDerik\nEian\nElyjah\nEmil\nEugenio\nFlynn\nGabino\nGavino\nGene\nGenesis\nGus\nHendrix\nHenri\nIsaih\nJahaziel\nJasiel\nJavion\nJayshawn\nJed\nJerardo\nJeronimo\nJosmar\nJozef\nJullian\nJustyn\nKabir\nKanoa\nKash\nKelton\nKleber\nLaird\nLaron\nLayton\nLloyd\nLoren\nMadden\nMakaio\nManav\nMarcell\nMenachem\nMyron\nNeftali\nNikola\nOskar\nOtoniel\nRace\nRayyan\nRomel\nRyu\nSilverio\nStuart\nTaha\nTorin\nTrenten\nTrevin\nWillis\nWilly\nWolfgang\nYovany\nYuvraj\nZeke\nAbhishek\nAdiel\nAkshat\nAlston\nAmadeus\nAnas\nAndi\nAndrez\nAndruw\nAngelgabriel\nAngus\nAnselmo\nAntwan\nAntwon\nAnuj\nAric\nAvraham\nAziel\nBaxter\nBijan\nBram\nBrenton\nBroden\nBrogan\nCadence\nCarsen\nCecil\nCharley\nDaunte\nDemitri\nDestin\nDillion\nDino\nDiogo\nDomenico\nEben\nEdmond\nEmory\nEshaan\nEvaristo\nFaisal\nFaizan\nFinnian\nFlorencio\nForest\nHakop\nHasan\nHaziel\nHenrry\nHiram\nHussein\nImran\nIrwin\nIssa\nJackie\nJaheim\nJalyn\nJasen\nJavan\nJavin\nJaylyn\nJaymes\nJayvon\nJerald\nJeremias\nJerrell\nJesiah\nJordin\nJosemaria\nJoshue\nJuanluis\nJuvenal\nKaelan\nKaito\nKavin\nKayvon\nKhang\nKoby\nKoda\nKoji\nKolton\nKristofer\nLaith\nLayne\nLegend\nLonnie\nMadison\nMaison\nMalakhi\nMalek\nMalikai\nManjot\nManolo\nMarius\nMarshawn\nMasen\nMemphis\nMiller\nMinh\nMoshe\nMykel\nNaithan\nNathon\nNehemias\nNiklas\nNikolaos\nNima\nNorman\nOzzie\nQuinlan\nRajan\nRayvon\nRaziel\nRian\nRitchie\nRobbie\nRome\nRoni\nRoque\nRosario\nRuvim\nSaahil\nSahib\nSal\nSanjay\nSaulo\nSelvin\nSeven\nShannon\nSidharth\nSilvano\nSilvestre\nSir\nSoham\nSol\nStevan\nStewart\nTarik\nTarun\nTavin\nTheron\nTre\nUlyses\nUriah\nVahe\nVijay\nVirgil\nVishal\nWilliams\nYahya\nYoel\nYohan\nYonathan\nZaiden\nZakaria\nZayden\nZeth\nZev\nAadi\nAb\nAbdul\nAbisai\nAdyn\nAj\nAleck\nAmaan\nAmador\nAmauri\nAmmon\nAndrick\nAniket\nAnmol\nAnsh\nAnthoni\nAnthonie\nAnuar\nAnwar\nArin\nArsh\nArtin\nAsaf\nAshley\nAtharva\nAtul\nAyaan\nAzariah\nBaltazar\nBlaise\nBrallan\nBret\nCason\nCavan\nCecilio\nChaim\nCisco\nCj\nClifton\nCorban\nCortez\nCross\nDanial\nDashaun\nDemarco\nDemetrious\nDeric\nDeron\nDevante\nDevonte\nDomonic\nDuane\nDylen\nDyllon\nDylon\nEamon\nEber\nEdwardo\nEitan\nElijiah\nElton\nEsequiel\nEshan\nFinlay\nFox\nGaspar\nGiacomo\nGibson\nGildardo\nGurshaan\nHari\nHaris\nHarjot\nHarper\nHarris\nHayk\nHerminio\nHomero\nHouston\nHubert\nHuy\nIban\nIssaiah\nItai\nIzrael\nJaciel\nJaelen\nJakai\nJalil\nJarod\nJarred\nJathan\nJaylan\nJeremyah\nJerick\nJob\nJody\nJohnbenedict\nJonnathan\nJosecarlos\nJosedejesus\nJuanantonio\nJusten\nKain\nKalel\nKamrin\nKaron\nKarthik\nKasen\nKasper\nKeller\nKenton\nKevon\nKingston\nKona\nKunal\nKye\nKylen\nKyron\nLandin\nLizandro\nLleyton\nMaddux\nMakhi\nMalachai\nMaliki\nMarck\nMargarito\nMarkanthony\nMarkel\nMaximino\nMickey\nNabil\nNadav\nNevan\nNiccolo\nNicklaus\nNicolai\nOren\nOri\nOsman\nOziel\nRaffi\nRandolph\nRasheed\nRaudel\nRaven\nRavi\nReggie\nRemi\nRommel\nRonak\nRoyal\nRyden\nSalem\nSamar\nSamual\nSohan\nSriram\nSteele\nTalen\nTalha\nTatum\nTayshaun\nTrinidad\nTrystan\nTynan\nTyrus\nUmar\nVinay\nWestin\nWilber\nXaiver\nYasin\nYovanni\nYusef\nAaryan\nAayush\nAbimael\nAdain\nAdryan\nAeneas\nAkira\nAkiva\nAksel\nAmrit\nAnand\nApollo\nArchie\nArion\nArshdeep\nArvind\nAsahel\nAsh\nAston\nAtreyu\nAubrey\nAviel\nAzriel\nBasilio\nBlue\nBoaz\nBradon\nBraedyn\nBrandin\nBulmaro\nCaius\nCamryn\nChancellor\nChayse\nCiaran\nConan\nCosmo\nCris\nDaemon\nDakarai\nDakotah\nDamarcus\nDarrien\nDasan\nDaylin\nDayne\nDayshaun\nDejuan\nDelano\nDelfino\nDeonte\nDmitri\nDonaven\nDonovin\nDusty\nDutch\nEarl\nEldon\nEligh\nElio\nEliyahu\nEmmet\nEnrico\nErich\nEthyn\nEtienne\nEvander\nFidencio\nFisher\nFrederic\nGareth\nGarland\nGarren\nGerard\nGevork\nHamilton\nHaydn\nHumza\nIlya\nIram\nIsrrael\nIssak\nIzac\nJacoby\nJacy\nJadan\nJade\nJaedyn\nJaidyn\nJairus\nJamaal\nJancarlo\nJayse\nJeffry\nJeovanni\nJeovany\nJhonathan\nJhovany\nJiovanny\nJohnathen\nJossue\nJovon\nJoziah\nJules\nKailer\nKalen\nKamal\nKamryn\nKarter\nKasra\nKeion\nKeneth\nKenzo\nKeyshawn\nKiefer\nKodi\nLamont\nLaurence\nLauro\nLowell\nLuther\nLyndon\nMacario\nMaceo\nMack\nMaddix\nMahmoud\nMakani\nMakoa\nMaksim\nMarek\nMigel\nMikhail\nMohamad\nMonte\nNarciso\nNavin\nNicholaus\nNicky\nOmid\nPascal\nRaheem\nRaj\nRashawn\nRemington\nRodrick\nRoel\nRusty\nSaeed\nSai\nSaket\nSamarth\nSathvik\nSchuyler\nShivam\nSina\nSlater\nSrikar\nTamir\nTavon\nTayden\nTeddy\nTegan\nThatcher\nThien\nTiger\nTrever\nTri\nTyren\nUbaldo\nVaibhav\nValentine\nVernon\nVlad\nWes\nWillian\nYaakov\nYamil\nYisroel\nYoni\nYousif\nYoussef\nYovanny\nZacarias\nZakariya\nZaki\nZayne\nZephaniah\nAaditya\nAamir\nAbdallah\nAbdi\nAbhay\nAdal\nAdel\nAdrain\nAeden\nAidin\nAilton\nAkil\nAkul\nAlaric\nAlbino\nAleks\nAleksandar\nAlesandro\nAlexandru\nAlexys\nAlon\nAmeya\nAmogh\nAndersen\nAndrue\nAnshul\nAntone\nAntonino\nAran\nArhan\nAristotle\nArmin\nArtur\nAshten\nAudel\nAvian\nAxell\nAxl\nAyan\nBaron\nBaruc\nBennie\nBernie\nBradford\nBrandy\nBriant\nBryon\nBrysen\nCadin\nCairo\nCaron\nCervando\nChristianjames\nChristoper\nCodey\nColtin\nDajon\nDajuan\nDamani\nDanieljr\nDaquan\nDarrian\nDartagnan\nDaxton\nDaylan\nDeaven\nDelvin\nDemetrios\nDeshaun\nDev\nDevean\nDewayne\nDezmond\nDidier\nDjango\nDomanic\nDonato\nDonavyn\nDonny\nDontae\nDontrell\nEathan\nEdgard\nEdu\nElden\nEliott\nEmile\nEmmitt\nErasmo\nEricson\nErin\nEron\nEthaniel\nExavier\nEyan\nFabrizzio\nFacundo\nFarid\nFilip\nFinnley\nFord\nFranklyn\nGarin\nGaston\nGautam\nGianpaolo\nGiorgio\nGiuseppe\nHamzah\nHaroon\nHasani\nHeraclio\nHoratio\nHyrum\nIndiana\nIsa\nJacari\nJacques\nJae\nJaidan\nJailen\nJakub\nJalin\nJalon\nJameel\nJaquan\nJarell\nJarren\nJashon\nJaskaran\nJaskirat\nJasson\nJayceon\nJd\nJeanpaul\nJelani\nJeovani\nJeremi\nJeremie\nJeric\nJhonatan\nJimi\nJoab\nJoesph\nJohncarlo\nJohnmichael\nJustine\nKaimana\nKalib\nKaya\nKaylen\nKeane\nKenan\nKennith\nKeshav\nKevan\nKevion\nKhoa\nKhristian\nKhristopher\nKirin\nKolten\nKristoffer\nLawson\nLeopold\nLeslie\nLestat\nLyle\nLyric\nMadhav\nMagdiel\nMahdi\nMalakhai\nMalichi\nMalique\nMarlin\nMarlo\nMarquese\nMartel\nMateen\nMateus\nMatt\nMaurilio\nMaximilliano\nMaximos\nMaynor\nMckay\nMelchor\nMicaiah\nMichel\nMichelangelo\nMick\nMontana\nMontrell\nNabor\nNaman\nNery\nNicholai\nNicholes\nNicola\nOciel\nOlin\nOmer\nOzzy\nPranay\nPrinceton\nRahim\nRajveer\nRaleigh\nRamzi\nRansom\nRashad\nRayhan\nReinaldo\nRhyan\nRich\nRobinson\nRomello\nRosalio\nRufino\nRushil\nSabas\nSachin\nSahid\nSamer\nSayed\nShashank\nSinjin\nStefano\nStellan\nStephon\nStevie\nSukhraj\nSultan\nSydney\nTadeo\nTakoda\nTam\nTanish\nTaran\nTarek\nTenzin\nTerence\nTevin\nTien\nTor\nTou\nTracy\nTurner\nTyshawn\nUnknown\nVed\nVeer\nVinh\nVinnie\nVito\nYandel\nYaseen\nYoseph\nYousuf\nYuki\nYulian\nZak\nZayn\nAbelino\nAbhiram\nAdonai\nAkshar\nAlejo\nAlekxander\nAlexanderjames\nAlexandros\nAlexei\nAlexes\nAlfonzo\nAmani\nAmanpreet\nAmbrose\nAmeen\nAmr\nAn\nAnastacio\nAndrea\nAnguel\nAnibal\nAnkit\nAnthonny\nApolinar\nAres\nArgenis\nAris\nAristeo\nArjan\nArsalan\nArun\nAsad\nAshish\nAshmit\nAshtin\nAspen\nAssael\nAttila\nAvant\nAvelino\nBarak\nBarron\nBastian\nBayley\nBayron\nBenigno\nBennet\nBernabe\nBlade\nBlane\nBooker\nBoone\nBora\nBradlee\nBrandom\nBrayam\nBrayant\nBroc\nBryden\nCaio\nCallan\nCanaan\nCardin\nCarmello\nCarnell\nCasper\nCaydon\nCezar\nCharlton\nChazz\nChidubem\nChristan\nCipriano\nCiro\nColeton\nConrado\nCorwin\nCrew\nCruise\nDaegan\nDaevon\nDaimon\nDamarea\nDamario\nDamen\nDaniell\nDarell\nDarrick\nDarron\nDashiel\nDaveon\nDavien\nDavonte\nDayron\nDelbert\nDeontae\nDerrik\nDijon\nDimitrius\nDomanick\nDomonick\nDonnell\nDru\nDuilio\nDyami\nEbenezer\nEberardo\nEdmundo\nEdrick\nEdwing\nEdy\nEithan\nEliah\nEligio\nElija\nElwin\nElyas\nEoin\nEsgar\nEusebio\nEverest\nEvren\nEzekial\nFeliciano\nFionn\nFloyd\nFredi\nGabrial\nGaret\nGaurav\nGeno\nGeorgio\nGibran\nGiovannie\nGraydon\nGreko\nHan\nHansel\nHanson\nHarim\nHashim\nHazael\nHieu\nIdris\nIndigo\nIoane\nIra\nIran\nIsaiha\nIseah\nIsmail\nIssiah\nIvann\nIzack\nIzael\nIzeah\nIzek\nIzel\nIzeyah\nIziah\nIzik\nJaaziel\nJabez\nJacksen\nJaidon\nJaison\nJamieson\nJarett\nJarrell\nJaykob\nJayvyn\nJenaro\nJenner\nJens\nJenson\nJeramy\nJeriko\nJerson\nJessi\nJesua\nJhon\nJiro\nJoao\nJobani\nJohncarlos\nJosaiah\nJoseantonio\nJoseenrique\nJosejr\nJoshuamichael\nJuventino\nKaedin\nKahlil\nKamar\nKamden\nKannon\nKayleb\nKaylon\nKayne\nKean\nKeandre\nKenzie\nKeshaun\nKhai\nKhaled\nKhalid\nKhoi\nKhriz\nKien\nKollin\nKrystian\nKushal\nKyren\nLake\nLandan\nLazarus\nLemuel\nLennox\nLev\nLevy\nLinden\nLochlan\nLogen\nLuisenrique\nLuismanuel\nMac\nMackenzie\nMaddex\nMaleek\nManveer\nManvir\nMarquice\nMarshal\nMarvyn\nMaurizio\nMaxton\nMayson\nMeir\nMelik\nMelvyn\nMichaelangelo\nMichaelanthony\nMikai\nMina\nMonty\nMurphy\nMychael\nMyka\nNaithen\nNajee\nNapoleon\nNathyn\nNaveen\nNazareth\nNicklas\nNicodemus\nNihal\nNikolaus\nNishant\nNomar\nNoor\nOleg\nOlivier\nPaden\nPalmer\nPascual\nPhilippe\nPiero\nQuran\nRadley\nRameen\nRashaad\nRefugio\nRegan\nReign\nRider\nRigel\nRiki\nRito\nRitvik\nRock\nRogan\nRojelio\nRomero\nRueben\nRylie\nRyo\nSaad\nSaif\nSaleh\nSalman\nSandro\nSasha\nSeananthony\nSeanmichael\nSesar\nShae\nShahid\nShai\nShamar\nShan\nShayaan\nSherman\nShon\nSid\nSirus\nSixto\nSlade\nStacy\nStepan\nSutter\nSylvester\nTakeshi\nTamer\nTaron\nTaveon\nTaye\nTayo\nTayshawn\nTeague\nTej\nTimmothy\nTitan\nTrayvon\nTrentin\nTreyvon\nTristyn\nTRUE\nTyre\nTyron\nTysen\nUday\nValen\nVardan\nVictormanuel\nViggo\nVignesh\nViliami\nVinny\nVinson\nVir\nViraj\nWendell\nWilder\nWilfred\nWisdom\nYehuda\nYuto\nYvan\nZabdiel\nZac\nZacchaeus\nZade\nZakai\nZakk\nZamir\nZaylen\nZuri\nDaniel\nAnthony\nAngel\nJacob\nDavid\nAndrew\nJose\nJoshua\nChristopher\nMatthew\nDiego\nMichael\nJonathan\nAlexander\nNathan\nEthan\nJoseph\nChristian\nAdrian\nLuis\nJuan\nBrandon\nRyan\nKevin\nJesus\nGabriel\nIsaac\nNoah\nCarlos\nNicholas\nDylan\nIsaiah\nSamuel\nWilliam\nJulian\nBryan\nBenjamin\nTyler\nJames\nSebastian\nJohn\nMiguel\nAaron\nElijah\nJustin\nLogan\nBrian\nAlejandro\nJason\nAiden\nJack\nJordan\nAidan\nRobert\nVictor\nEric\nEduardo\nJorge\nOscar\nEvan\nAlex\nIvan\nAdam\nLuke\nGavin\nJayden\nZachary\nNathaniel\nAlexis\nLucas\nJesse\nFernando\nSteven\nOmar\nAlan\nFrancisco\nRicardo\nCaleb\nSean\nThomas\nDominic\nAustin\nMason\nAntonio\nJackson\nDamian\nGiovanni\nManuel\nKyle\nAndres\nCesar\nVincent\nRichard\nEdgar\nXavier\nCristian\nJavier\nOwen\nHector\nIan\nErick\nJeremiah\nJoel\nSergio\nConnor\nLeonardo\nNicolas\nCharles\nEdwin\nMario\nCameron\nAbraham\nJosue\nHenry\nEmmanuel\nJaden\nLandon\nJake\nJared\nRoberto\nWyatt\nDevin\nTristan\nRuben\nJeremy\nElias\nErik\nCole\nAndy\nMartin\nMarco\nRafael\nLiam\nEdward\nMark\nPedro\nJosiah\nIsrael\nRiley\nGerardo\nArmando\nOliver\nTimothy\nSeth\nHunter\nDerek\nHayden\nMarcus\nRaymond\nKenneth\nChase\nEnrique\nJulio\nGeorge\nMarcos\nRaul\nRoman\nSaul\nJoaquin\nJohnny\nSantiago\nCody\nPaul\nJaime\nCaden\nMax\nFabian\nPatrick\nGustavo\nEmiliano\nBlake\nCarter\nTrevor\nKai\nAndre\nBrayden\nPeter\nAlfredo\nArturo\nColin\nEmilio\nTravis\nEsteban\nCarson\nKaden\nMateo\nPablo\nAlberto\nAdan\nSalvador\nAxel\nMoises\nMaxwell\nAyden\nBryce\nEmanuel\nMicah\nJohnathan\nDamien\nGael\nJeffrey\nNolan\nErnesto\nIsmael\nPreston\nJonah\nAngelo\nDonovan\nShane\nRodrigo\nEzekiel\nParker\nAbel\nBrady\nBrayan\nCooper\nFrank\nKaleb\nDanny\nEli\nMiles\nHugo\nStephen\nRamon\nRyder\nGrant\nLorenzo\nBrody\nBradley\nTanner\nSpencer\nUriel\nLeo\nAlbert\nGuillermo\nJimmy\nMalachi\nShawn\nTroy\nYahir\nDominick\nMauricio\nGarrett\nLevi\nGregory\nNoe\nAllen\nMathew\nUlises\nCalvin\nAshton\nConner\nRandy\nIssac\nEddie\nColton\nChris\nOswaldo\nOrlando\nPhillip\nDillon\nFelix\nDarren\nDevon\nJerry\nBrendan\nBraden\nOsvaldo\nDante\nLukas\nAlfonso\nDrew\nScott\nSimon\nJaiden\nMarvin\nLeonel\nEzra\nHudson\nJaylen\nGage\nAsher\nTy\nAden\nTheodore\nWesley\nFelipe\nQuinn\nGilberto\nRene\nTony\nArthur\nDean\nJakob\nRodolfo\nLouis\nRicky\nLuca\nMaddox\nRogelio\nAlvaro\nNoel\nAlec\nCristopher\nJoe\nMoses\nBryant\nJessie\nAllan\nIsaias\nJalen\nRonald\nJace\nHarrison\nCollin\nKayden\nMaximiliano\nSteve\nTrent\nAlonso\nMaximus\nCharlie\nCruz\nDerrick\nDrake\nKeith\nDennis\nDustin\nRamiro\nRudy\nJulius\nOctavio\nTaylor\nAdolfo\nAriel\nIgnacio\nMarc\nTrenton\nCash\nFreddy\nJay\nKenny\nLincoln\nNikolas\nSawyer\nTomas\nJairo\nLanden\nMarlon\nNickolas\nWalter\nRoy\nAgustin\nCayden\nDarius\nVicente\nZion\nCasey\nEzequiel\nGilbert\nGiovanny\nAlessandro\nLance\nBryson\nChance\nJoey\nSkyler\nZane\nDeclan\nPhilip\nRoger\nZackary\nAldo\nAlonzo\nJonas\nDonald\nIzaiah\nJayson\nJunior\nPeyton\nEfrain\nAlvin\nGriffin\nMelvin\nShaun\nCade\nClayton\nGrayson\nMyles\nAvery\nXander\nDane\nFinn\nFrankie\nJohan\nJude\nNehemiah\nBranden\nKaiden\nMatteo\nTommy\nDakota\nHumberto\nRohan\nJadon\nMorgan\nRylan\nAmir\nLarry\nEstevan\nJaxon\nMitchell\nNelson\nRowan\nTyson\nKyler\nLawrence\nZachariah\nBennett\nKameron\nMaximilian\nCyrus\nFranklin\nIsai\nKelvin\nMisael\nElliott\nIrvin\nJonathon\nRigoberto\nRocco\nRomeo\nTrey\nBrenden\nBrock\nColby\nTalan\nDouglas\nGerman\nMalik\nRussell\nSam\nEverett\nAli\nByron\nCaiden\nElliot\nRay\nRolando\nAnderson\nCorey\nJovanny\nMike\nYair\nBrennan\nBruce\nCamden\nGary\nPhoenix\nBraeden\nNathanael\nNathen\nEnzo\nJulien\nCurtis\nDamon\nKeegan\nKeven\nMiguelangel\nDallas\nJudah\nSantino\nWilson\nJovanni\nArjun\nBrett\nGonzalo\nIsiah\nNico\nOrion\nSantos\nTristen\nDorian\nEfren\nHarry\nJair\nBobby\nCarlo\nJovany\nKristian\nQuentin\nCorbin\nGianni\nHolden\nLeland\nNestor\nTobias\nJasper\nKian\nLeon\nAugust\nBilly\nChad\nJustice\nKieran\nKristopher\nUlysses\nBruno\nElvis\nAbram\nAryan\nCristofer\nJordy\nKrish\nRey\nArman\nBraulio\nJett\nMarkus\nRonan\nAlexandro\nRonaldo\nDario\nEugene\nGiovani\nJosh\nDeven\nFrederick\nGiancarlo\nJovani\nMaximo\nAditya\nJuancarlos\nQuincy\nSilas\nSolomon\nBenny\nBernardo\nElmer\nJaydon\nKody\nMarcelo\nMilo\nNick\nBen\nCristobal\nDavis\nEliseo\nGerald\nJameson\nReese\nReynaldo\nRonnie\nSonny\nWarren\nDesmond\nJohnathon\nMalakai\nZander\nAntony\nEmerson\nKobe\nMuhammad\nPayton\nReid\nTitus\nAlijah\nAri\nDominik\nJeffery\nJon\nJoseluis\nMauro\nMaverick\nPranav\nRodney\nTate\nTucker\nVince\nBeau\nCarl\nEddy\nJaxson\nLuciano\nNikhil\nRiver\nDavin\nFavian\nIsac\nJuanpablo\nKhalil\nLeandro\nMohammad\nSoren\nTalon\nToby\nValentin\nYael\nAdriel\nCory\nDawson\nDevan\nFidel\nGraham\nHeriberto\nLuka\nMaurice\nMicheal\nStanley\nWeston\nBrent\nMariano\nPierce\nValentino\nDerick\nFredy\nKeanu\nMarcel\nOsbaldo\nRamses\nSemaj\nZachery\nAhmad\nAmari\nBenito\nConor\nJefferson\nKingston\nSkylar\nAhmed\nAlfred\nAron\nCamron\nConrad\nLeonard\nMarshall\nNiko\nRaphael\nReece\nReed\nWalker\nYandel\nAlexzander\nDamion\nDavian\nPorter\nDangelo\nHarley\nJan\nLouie\nRaymundo\nBeckett\nDeangelo\nGenaro\nGunnar\nImanol\nJaeden\nMatias\nNeil\nRyland\nBrendon\nCraig\nEmmett\nGeovanny\nHamza\nJoan\nMalcolm\nSage\nTyrone\nWinston\nAlek\nAndreas\nBraxton\nBraydon\nBrodie\nDavion\nDeandre\nElisha\nGregorio\nGreyson\nIsaak\nJeshua\nJordi\nKane\nMaximillian\nRalph\nRex\nRoland\nSammy\nSantana\nXzavier\nAdrien\nAntoine\nAtticus\nDarian\nDarrell\nEden\nEverardo\nFrancis\nFranco\nGeovanni\nGuadalupe\nKen\nMarcelino\nMekhi\nMohamed\nRoyce\nTaj\nAddison\nArnav\nCedric\nDemetrius\nEleazar\nIsidro\nJaylin\nKellen\nNigel\nPaulo\nReyli\nAnton\nAydan\nDillan\nDuncan\nEdison\nErnest\nJohnpaul\nMatthias\nPaolo\nReagan\nRemy\nTerrance\nTheo\nVaughn\nZaid\nAlden\nDalton\nDarwin\nDayton\nGrady\nHarold\nIbrahim\nJai\nJayce\nJeramiah\nKendrick\nLondon\nLuisangel\nMathias\nRandall\nDevyn\nEder\nJamal\nJamari\nKainoa\nKeenan\nLucca\nOsmar\nRishi\nTriston\nYusuf\nAbner\nAnish\nAsa\nCamren\nIrving\nJamie\nJamison\nJohann\nJustus\nKareem\nLee\nLewis\nLucio\nNasir\nRocky\nSaid\nVance\nBailey\nBodie\nDan\nDenzel\nDwayne\nEaston\nElian\nFederico\nGino\nJavon\nJerome\nJovan\nKaeden\nKyan\nLane\nLazaro\nMakai\nMaxim\nTristin\nVladimir\nAarav\nAndrei\nDarryl\nDeshawn\nErwin\nFinnegan\nGideon\nHezekiah\nJaycob\nKalani\nLuc\nMarley\nQuinton\nRayan\nSahil\nSiddharth\nSidney\nTerry\nWill\nWillie\nZechariah\nAce\nArmani\nArya\nCassius\nDashiell\nDion\nFranky\nGeovany\nGianluca\nGlenn\nIsael\nKeaton\nReuben\nRonin\nRory\nSebastien\nStone\nWaylon\nYash\nZackery\nAbdiel\nAedan\nAydin\nBrando\nBrice\nCohen\nDomenic\nEdson\nHernan\nIzayah\nJabari\nJahir\nJericho\nJosemanuel\nMarcello\nMarko\nMohammed\nReginald\nSamson\nWade\nZack\nAdonis\nBenicio\nBoston\nDarin\nDarnell\nDexter\nErnie\nFreddie\nGerson\nImmanuel\nJermaine\nJet\nLamar\nMarques\nMerrick\nNeo\nNikolai\nObed\nRick\nTai\nTrace\nVan\nVincenzo\nWayne\nZaire\nAchilles\nAram\nCeasar\nChandler\nClark\nColten\nDavon\nFlavio\nForrest\nGuy\nIshaan\nJacky\nJadyn\nKade\nKamari\nKarim\nKent\nKoen\nKurtis\nMilton\nNathanial\nNoa\nRahul\nRio\nRyker\nSameer\nSky\nStephan\nZain\nAdalberto\nAjay\nArmaan\nCamilo\nEnoch\nEthen\nHaiden\nHassan\nIsreal\nJarrett\nJeff\nJordon\nJosef\nKendall\nKeoni\nKing\nLionel\nMagnus\nNikko\nRaiden\nShaan\nTrevon\nAbhinav\nAntoni\nArian\nArmen\nAugustine\nAyush\nBrad\nBraiden\nChaz\nDimitri\nEver\nGannon\nGarret\nGordon\nIker\nJean\nJerimiah\nKael\nSamir\nShea\nStefan\nSterling\nTerrell\nUlisses\nUziel\nYovani\nAbdullah\nAndrey\nAsael\nBlaine\nClarence\nDamarion\nDominique\nDon\nEly\nEriberto\nFinley\nGian\nGunner\nHaziel\nHeath\nHoracio\nIshan\nIzaac\nIzaak\nJonatan\nKole\nLucien\nMadden\nMilan\nOskar\nPierre\nRhys\nRichie\nRobin\nTalen\nUriah\nWilfredo\nYasir\nAlexandre\nAman\nAngus\nArvin\nAusten\nAzael\nBodhi\nBradly\nChristofer\nCoby\nColeman\nDarien\nDeon\nDhruv\nEdgardo\nEligh\nEwan\nFabio\nHoward\nJase\nJhonny\nKarl\nKasey\nKeagan\nKelly\nKhalid\nKorey\nKurt\nLandyn\nMarquis\nNevin\nNikita\nOmari\nQuintin\nSunny\nTerrence\nTom\nTyree\nUlices\nAdair\nAmare\nAric\nBill\nBo\nBode\nCallum\nCannon\nCanyon\nDale\nEarl\nEllis\nErvin\nEvin\nGeovani\nHans\nJagger\nJaron\nJedidiah\nJelani\nJorden\nJoshuah\nJullian\nKadin\nKalvin\nKennedy\nLeobardo\nLucius\nOsiel\nPatricio\nPrince\nReyes\nShant\nSincere\nTiago\nTristian\nTyrese\nValente\nYeshua\nYousef\nAidyn\nAmar\nAmeer\nAnson\nArnold\nAshwin\nBaron\nBoden\nBronson\nCian\nClaudio\nCoen\nDaren\nDaylen\nDemetrio\nDemian\nDilan\nEan\nFord\nGiovany\nHadi\nJasiah\nJaydan\nJessy\nJoziah\nKevyn\nKiran\nLenny\nLeopoldo\nLester\nLino\nLucian\nLuiz\nMassimo\nNeal\nNeel\nOtto\nTim\nTorin\nTravon\nYonatan\nAbisai\nAdriano\nAndrik\nArnulfo\nBeckham\nBenedict\nBilal\nBoris\nBrooks\nBrycen\nDallin\nDamari\nDeacon\nDenis\nDeshaun\nEitan\nElan\nFausto\nFlynn\nFred\nGauge\nGeoffrey\nHaden\nIsacc\nJaren\nJaylan\nJaylon\nJohnson\nJordyn\nKalel\nKristofer\nKylan\nMikhail\nOcean\nRashad\nReilly\nRico\nRoss\nSami\nTeo\nTodd\nAdiel\nAlain\nAtreyu\nAurelio\nBenson\nBowen\nBraedon\nCain\nCuauhtemoc\nDeegan\nDereck\nEdmund\nEliel\nEsau\nFaustino\nHarper\nJax\nJesiah\nJohnnie\nJustyn\nKamren\nKekoa\nKenji\nKenyon\nKillian\nLennon\nNate\nOri\nPerry\nPete\nRhett\nRoan\nSanjay\nSeamus\nSheldon\nSilvestre\nSione\nTeagan\nTrinidad\nYosef\nAkash\nAldair\nAnibal\nAres\nAustyn\nAyman\nBeck\nBraylon\nBrennen\nBrooklyn\nCarmelo\nCarmine\nClemente\nCristo\nDarrius\nDonavan\nEsai\nFabrizio\nFermin\nFinnian\nFletcher\nFloyd\nHeber\nJacobo\nJadin\nJaidyn\nJamar\nJaret\nJasson\nJensen\nKamron\nKarthik\nKeon\nKonnor\nKris\nKyree\nLars\nLex\nMack\nMarcanthony\nMattias\nMemphis\nMessiah\nMikael\nMoshe\nMustafa\nNarek\nNash\nNoam\nNorberto\nNorman\nOdin\nOm\nOren\nPavel\nPaxton\nReef\nRosendo\nTariq\nTurner\nVarun\nWilmer\nYuvraj\nZakary\nAarush\nAbrahan\nAbran\nAjani\nAnders\nAugustus\nBlaze\nBroderick\nCaesar\nClay\nClinton\nColt\nDax\nDejon\nDemitri\nDomenick\nDonnie\nDraven\nDuke\nElvin\nEmery\nEros\nFiliberto\nFrancesco\nFredrick\nGavyn\nGerard\nGiovonni\nGiuseppe\nGurshan\nHank\nHarman\nHerman\nIain\nIshmael\nJaedon\nJaedyn\nJafet\nJarred\nJarrod\nJaydin\nJc\nJhonatan\nKaito\nKarson\nKellan\nKoa\nLevon\nLisandro\nLloyd\nMalaki\nManny\nMaxx\nMihir\nMikel\nNathon\nNehemias\nOsman\nPresley\nQuinlan\nQuinten\nRamsey\nRayden\nRaymon\nRoque\nShayne\nTruman\nTrystan\nViktor\nVinh\nZach\nZayd\nAkhil\nAleksander\nAlexavier\nAmani\nAnakin\nAnirudh\nAnsel\nArath\nArik\nBarrett\nBentley\nBladimir\nClifford\nCorban\nCornelius\nDameon\nDanilo\nDaron\nDashawn\nDemarion\nDyllan\nEdan\nElder\nEliazar\nEmil\nFabricio\nGil\nGiorgio\nGlen\nHarvey\nHasan\nHerbert\nHilario\nHiram\nHyrum\nIlan\nIsmail\nIzak\nJael\nJamil\nJareth\nJim\nJimmie\nJob\nJohny\nJoseangel\nJosias\nKahlil\nKale\nKhang\nKhriz\nKirk\nKonner\nKory\nLaird\nLeif\nLenin\nLeroy\nLinus\nMarcoantonio\nNahum\nNomar\nParis\nParsa\nRami\nRemington\nRenzo\nRishabh\nRyley\nSabastian\nSalomon\nSalvatore\nShay\nSkye\nSlater\nSullivan\nSyrus\nThaddeus\nTimmy\nTye\nTyrell\nWestley\nYoel\nYusef\nZahid\nZayden\nZayne\nZev\nZidane\nAayan\nAdal\nAdin\nAlexsander\nAndru\nAnjel\nAntwan\nApollo\nAren\nAris\nAthan\nAvi\nAyan\nBaltazar\nBradyn\nCaeden\nCal\nCristhian\nDarion\nDarrin\nDave\nDaveon\nDeion\nDesean\nDonavin\nDonavon\nEshaan\nFisher\nGabino\nGarett\nGaven\nGenesis\nIzrael\nJamin\nJancarlo\nJarod\nJaysen\nJerald\nJerardo\nJuandiego\nJules\nKabir\nKalen\nKaleo\nKarsten\nKason\nLamont\nLandin\nLucky\nMakaio\nMarcell\nMarkel\nMikah\nMikey\nMitchel\nMonte\nNatanael\nOmer\nRaghav\nReymundo\nRoderick\nRonny\nShayan\nShreyas\nSimeon\nTaha\nTeddy\nTevin\nTobin\nTylor\nVidal\nWillem\nYonathan\nYordi\nZuriel\nAbhiram\nArlo\nArmon\nArnoldo\nArron\nArtemio\nAston\nAyaan\nCase\nCasen\nClifton\nClyde\nDaven\nDavonte\nDerik\nDestin\nDev\nDmitri\nDontae\nDonte\nDwight\nEdmond\nEliott\nElton\nEphraim\nErasmo\nEsequiel\nEsteven\nFeliciano\nGene\nGeronimo\nGreg\nHamzah\nHaven\nJackie\nJade\nJaleel\nJaven\nJaziel\nJessi\nJiovanni\nJonny\nJoseantonio\nJoshue\nJovon\nJuaquin\nKaelan\nKaran\nKarlo\nLawson\nLazarus\nLonnie\nMaksim\nManu\nMarion\nMathieu\nMaximino\nMyron\nNaythan\nParth\nPascal\nRavi\nRian\nRishab\nRohit\nRoni\nRylee\nSarkis\nTiger\nTitan\nTrever\nUbaldo\nVernon\nZahir\nZephyr\nZeus\nAaditya\nAaryan\nAdnan\nAkshay\nAmado\nAndrez\nAneesh\nAngad\nArin\nArion\nArmand\nAzariah\nBishop\nBowie\nBranson\nCael\nCairo\nCassidy\nCelso\nCormac\nCullen\nCurren\nDaryl\nDaylon\nDemetri\nDenny\nEben\nEdvin\nEliot\nElyjah\nEmir\nEmmet\nEnoc\nHouston\nIsak\nIssaiah\nIven\nIzaya\nJaheim\nJhovany\nJordin\nKailer\nKarol\nKarter\nKelan\nKenan\nKeshawn\nKleber\nKorbin\nKrishna\nLachlan\nLaurence\nLuigi\nLuisfernando\nMac\nMacario\nMakhi\nMarius\nMenachem\nMichel\nMinh\nNaveen\nNiklas\nOlivier\nReggie\nRitchie\nRommel\nRon\nRoyal\nRuvim\nSammuel\nSasha\nShamar\nTaran\nTavin\nTeodoro\nTerence\nVed\nWilber\nZakai\nZakaria\nZen\nAayush\nAbbas\nAbdallah\nAdarsh\nAdler\nAdonai\nAdyn\nAleczander\nAlfonzo\nAmit\nAmmar\nAmogh\nAngelgabriel\nAquiles\nAria\nArjan\nAslan\nAuston\nAven\nBarron\nBarry\nBlaise\nBrandan\nBraylen\nBrennon\nBrighton\nCale\nCasper\nClint\nColter\nCy\nDaymian\nDemarco\nDemitrius\nDeric\nDevean\nDevion\nDevonte\nDezmond\nDomanick\nDomingo\nEamon\nEdgard\nEduard\nEdwyn\nEmmitt\nFarhan\nFaris\nGalen\nGarry\nGaspar\nGreco\nHarris\nHenri\nHerson\nIdan\nIsa\nIzac\nJaciel\nJahaziel\nJaidon\nJaison\nJamir\nJasen\nJashua\nJaskaran\nJerson\nJin\nJoao\nJohannes\nJohncarlo\nJomar\nJuanmanuel\nJuvenal\nKadyn\nKash\nKavin\nKayleb\nKeelan\nKeller\nKelton\nKeshaun\nKeyon\nKeyshawn\nKhristian\nKoby\nKolton\nKymani\nLaith\nLatrell\nMaddux\nMarek\nMarkanthony\nMarquise\nMasen\nMateen\nMaynor\nMickey\nMiller\nNaim\nNicholai\nNicklaus\nNicky\nNicolai\nNicolo\nNima\nNixon\nPierson\nPrinceton\nRefugio\nRenato\nRider\nRomello\nRowen\nRudolph\nSaeed\nSavion\nServando\nSevastian\nSeven\nShannon\nShiloh\nSiddarth\nSixto\nSteele\nStuart\nSyed\nTadeo\nTejas\nTheron\nTiernan\nTylen\nTysen\nTyshawn\nUlyses\nVadim\nVincente\nVishal\nWest\nWillis\nWolfgang\nYahya\nYaseen\nYohan\nYoussef\nZamir\nAdi\nAdrean\nAkira\nAlexsandro\nAlton\nAmeen\nAmin\nAndon\nArcher\nAries\nArsh\nArtem\nArun\nAshish\nAshley\nAsiel\nAziel\nBlas\nBrallan\nBrandyn\nBrannon\nBrayam\nBrayant\nBrenton\nBret\nBroden\nCampbell\nCanaan\nCanon\nCharley\nClement\nConstantine\nCrew\nCriss\nDamani\nDana\nDanniel\nDarell\nDarrian\nDavien\nDaylan\nDelano\nDevaughn\nEdmundo\nEdwardo\nEliab\nEtienne\nEugenio\nExavier\nFlorentino\nFroylan\nGamaliel\nGavino\nGiacomo\nGianmarco\nGibson\nGildardo\nGurman\nHamilton\nHanson\nHaris\nHenrry\nHiro\nHubert\nHugh\nHuy\nIman\nIsaih\nIzael\nIziah\nJalin\nJamarion\nJamel\nJarett\nJasiel\nJaxen\nJayshawn\nJayvon\nJed\nJeovanny\nJered\nJermiah\nJeronimo\nJerrell\nJody\nJohnmichael\nJostin\nKamran\nKamrin\nKamryn\nKhaled\nLandan\nLayne\nLayton\nLeighton\nLev\nLoren\nLyle\nLyndon\nMaceo\nMahdi\nMaison\nMalakhi\nMatt\nMaxfield\nMehki\nMusa\nMykel\nNery\nNiall\nNiccolo\nNino\nOsiris\nOtis\nPavan\nPearson\nPorfirio\nRace\nRaffi\nRandolph\nRayshawn\nRickey\nRigo\nRony\nRoshan\nRyden\nRylie\nSabino\nSaleh\nSerafin\nShiv\nSinjin\nSylvester\nThatcher\nThor\nTosh\nVahe\nVikram\nVittorio\nVivek\nWallace\nWilly\nWylie\nXavior\nYoni\nYousuf\nYovanny\nYovany\nZaden\nZavier\nZayan\nZephaniah\nZeth\nAadi\nAb\nAbdul\nAbelardo\nAbimael\nAdel\nAldahir\nAldrin\nAlen\nAlexi\nAlias\nAlon\nAmador\nAmauri\nAmmon\nAmos\nAnay\nAndi\nAniket\nAnsh\nAnurag\nApolinar\nAramis\nArash\nArchie\nArlen\nArtin\nAugustin\nAvant\nBaldemar\nBernardino\nBrandin\nBrogan\nCadence\nCalder\nCallan\nCarlitos\nCeaser\nCecil\nCedrick\nChancellor\nChayse\nChester\nColeton\nColtrane\nCorben\nCordell\nDarrien\nDarrion\nDegan\nDemarcus\nDenton\nDerian\nDeron\nDomanic\nDomonic\nDonaven\nDonnell\nDustyn\nEian\nEithan\nEliceo\nEliezer\nElijiah\nElisandro\nEloy\nErich\nEricson\nEsdras\nEthin\nForest\nFox\nFransisco\nGadiel\nGarrison\nGaurav\nGevork\nGibran\nGionni\nGraeme\nGraysen\nHaik\nHakop\nHaniel\nHarlan\nHarlem\nHarout\nHendrix\nHumza\nImran\nIra\nIsayah\nIzick\nJacen\nJad\nJailen\nJalil\nJarren\nJaymes\nJayro\nJeevan\nJeffry\nJeremias\nJethro\nJevon\nJimi\nJiovanny\nJohnatan\nJohnathen\nJonnathan\nJosealfredo\nJosearmando\nJosedejesus\nJuelz\nJuliocesar\nKarlos\nKeane\nKemani\nKento\nKhai\nKhoa\nKhristopher\nKiefer\nKodi\nKohen\nKolby\nKristoffer\nKyron\nLeandre\nLegend\nLennox\nLeopold\nLorenz\nMackenzie\nManav\nManjot\nMarshawn\nMateus\nMatix\nMattox\nMichaelangelo\nMichelangelo\nMika\nMikal\nNader\nNahom\nNaseem\nNaveed\nNeftali\nNishant\nNishanth\nNolen\nOmarion\nOracio\nOsmin\nOziel\nOzzy\nPascual\nPrice\nQuincey\nRajveer\nRamy\nRashawn\nReily\nRemi\nRhiley\nRitvik\nRojelio\nRomario\nRonit\nRosalio\nRufino\nRyu\nSai\nSaketh\nSandro\nSeiji\nSeverin\nShalom\nShamus\nShiven\nShmuel\nSilverio\nSohan\nStevan\nSukhraj\nSurya\nSydney\nSylas\nTanay\nTarek\nTayshaun\nTayshawn\nTed\nTevita\nThien\nTigran\nTino\nTracy\nTre\nTyren\nUsman\nVartan\nVihaan\nVijay\nVirgil\nVishnu\nWestin\nWilliams\nXavian\nYehuda\nYobani\nYoseph\nYuri\nZacharia\nAbiel\nAeneas\nAkil\nAksel\nAlegandro\nAleksandr\nAlekzander\nAlexiz\nAlistair\nAmbrose\nAmi\nAmiel\nAnand\nAndree\nAndriy\nAngelino\nAntwone\nArie\nArmin\nArnaldo\nAry\nAsh\nAskari\nAtom\nAxcel\nAxell\nAzriel\nBecker\nBenji\nBennet\nBernard\nBillie\nBlair\nBradford\nBritton\nBroc\nBryon\nCaelan\nCamryn\nCaspian\nCezar\nChasen\nChrystian\nCodey\nCorde\nCosmo\nCris\nCristiano\nCyler\nCypress\nCyril\nDaemian\nDagoberto\nDakarai\nDakari\nDalen\nDamen\nDamonte\nDamyan\nDany\nDariel\nDasan\nDash\nDayne\nDayvon\nDeagan\nDeanthony\nDelvin\nDenim\nDenver\nDeondre\nDereon\nDerrell\nDeshon\nDesi\nDiallo\nDidier\nDiesel\nDionisio\nDolan\nDomenico\nDonato\nDonny\nDonovin\nDorien\nDrevon\nDuane\nDuran\nEber\nElad\nElija\nElio\nElyas\nEmory\nErin\nEshan\nExodus\nFidencio\nFranz\nGarrick\nGerry\nGio\nGray\nGrey\nHansel\nHarjot\nHaydn\nHayes\nHayk\nHerschel\nHomar\nHussein\nIran\nIrwin\nIsrrael\nIssiah\nIverson\nIzik\nJabez\nJacoby\nJaedan\nJaelen\nJaelin\nJaelyn\nJaideep\nJakari\nJakobe\nJalon\nJamell\nJarret\nJashon\nJassiel\nJayceon\nJayon\nJaythan\nJayvyn\nJessiah\nJezreel\nJiovani\nJireh\nJonpaul\nJossue\nJuanjose\nJun\nJuventino\nKacey\nKailan\nKailen\nKain\nKairo\nKalil\nKamarion\nKanon\nKeahi\nKeiran\nKerry\nKeshav\nKhris\nKoda\nKolten\nKotaro\nKunal\nKushal\nLake\nLamberto\nLancelot\nLaron\nLebron\nLinkin\nLyon\nMacen\nMadhav\nMaeson\nMakoa\nManraj\nManveer\nMarciano\nMarkell\nMarquez\nMarvel\nMattix\nMaxime\nMaximos\nMelvyn\nMichaelanthony\nMikeal\nMohamad\nMorris\nMychael\nNaeem\nNasser\nNatalie\nNatan\nNevaeh\nNevan\nNicanor\nNikola\nNiles\nNils\nNyle\nOciel\nOrin\nOryan\nOswald\nPalmer\nQuin\nRahil\nRaudel\nRaven\nRayaan\nRayyan\nRehan\nRenny\nRobbie\nRoen\nRohith\nRome\nRosario\nRubin\nRushil\nRylen\nSaahil\nSaint\nSaleem\nSaxon\nSayed\nSherman\nShiva\nShon\nSiddhartha\nSilvano\nSlade\nSohum\nStephon\nStevie\nStewart\nSy\nSyncere\nTalin\nTalyn\nTarik\nTatum\nTavon\nTayden\nTegan\nTito\nTobey\nTonatiuh\nTory\nTrae\nTrajan\nTrayvon\nTrenten\nTrevin\nTreyvon\nTri\nTrinity\nTru\nUnknown\nVander\nVann\nVedant\nViliami\nVon\nWendell\nXavi\nYoav\nYovanni\nYuki\nZacharias\nZak\nZarek\nZavion\nZyon\nAakash\nAaronjames\nAarya\nAbdulrahman\nAbdurrahman\nAbhay\nAbhishek\nAdian\nAdil\nAdit\nAdonay\nAdrik\nAdvait\nAgustine\nAj\nAlam\nAlesandro\nAlexandru\nAlexei\nAlize\nAmadeo\nAmadeus\nAmarion\nAmaru\nAmrit\nAndranik\nAndrea\nAngeldejesus\nAngello\nAnguel\nAnh\nAniketh\nAnmol\nAnthoni\nAntione\nAntwon\nAnuj\nArden\nAristeo\nArsen\nArshan\nAryaman\nAsad\nAshlan\nAshtyn\nAsim\nAthen\nAubrey\nAureliano\nAviv\nAvraham\nAxl\nAzaan\nBernabe\nBernie\nBertrand\nBjorn\nBoaz\nBraedan\nBrandt\nBrasen\nBridger\nBrigham\nBrodrick\nBryden\nBrysen\nCalen\nCallen\nCameren\nCandelario\nCarsten\nCavan\nChaim\nChe\nChristianjames\nChristiano\nChristobal\nChristoph\nChristophe\nCiaran\nCiro\nCj\nClaude\nColson\nCornelio\nCornell\nCosme\nCross\nDaegan\nDaevon\nDajon\nDakoda\nDaksh\nDamarco\nDamarcus\nDamarea\nDaniell\nDanthony\nDarby\nDarrel\nDarryn\nDashaun\nDathan\nDaveyon\nDaxton\nDayron\nDayshawn\nDecker\nDejuan\nDelfino\nDemari\nDemond\nDenali\nDenilson\nDeontae\nDerrek\nDhruva\nDillion\nDimas\nDino\nDiogo\nDionicio\nDior\nDmitriy\nDonavyn\nDonell\nDonnovan\nDru\nDutch\nDylen\nDyllon\nEason\nEathan\nEdi\nEdilson\nEdric\nEdrick\nEfraim\nEgan\nEkin\nElia\nEliah\nEmron\nEnrico\nEthanjames\nEthyn\nEulises\nEyan\nFaisal\nFavio\nFilip\nFinlay\nFoster\nFredi\nGabrial\nGahel\nGared\nGaret\nGarren\nGavan\nGehrig\nGeno\nGiancarlos\nGiovannie\nGraydon\nGrigor\nGurpreet\nGus\nGustabo\nHadden\nHagen\nHaidyn\nHakeem\nHanzel\nHari\nHarim\nHaroon\nHaruki\nHendrik\nHillel\nHomero\nHovhannes\nHuriel\nIban\nIke\nIlias\nIsahi\nIssa\nIvann\nIvory\nIzack\nJacobi\nJacques\nJadan\nJaeson\nJafeth\nJaidan\nJakub\nJamaal\nJamani\nJamarr\nJamisen\nJarek\nJarell\nJarvis\nJathan\nJavan\nJavonte\nJaydee\nJaykob\nJayven\nJeancarlo\nJeanpierre\nJeovanni\nJeovany\nJeramy\nJeremyah\nJeric\nJess\nJhonathan\nJoab\nJoesph\nJonathen\nJorgeluis\nJosemiguel\nJosmar\nJozef\nJuanantonio\nJuanito\nJuliano\nJustine\nJusto\nKadon\nKaimana\nKaipo\nKaison\nKaj\nKalib\nKalub\nKannon\nKanye\nKaro\nKarsen\nKaydin\nKayvon\nKenzo\nKevon\nKeyan\nKhaleb\nKilian\nKingsley\nKishan\nKohei\nKorben\nKriss\nKwame\nKye\nKylen\nLarenzo\nLarson\nLavon\nLemuel\nLinden\nLior\nLizandro\nLogen\nLonden\nLowell\nLuismanuel\nLuismiguel\nLuther\nLyric\nMaddix\nMakoto\nMalcom\nMalek\nMalikai\nMaliki\nMalique\nMansoor\nMargarito\nMarlow\nMartinjr\nMatheus\nMaxon\nMaxson\nMazen\nMazin\nMckay\nMckinley\nMicaiah\nMick\nModesto\nMohit\nMontgomery\nMuhammed\nMurphy\nMynor\nNabeel\nNadav\nNainoa\nNapoleon\nNassir\nNeri\nNicklas\nNicolaus\nNihar\nNik\nNikash\nNykolas\nObadiah\nOlegario\nOlin\nOllin\nOmkar\nParam\nPasha\nPrabhjot\nPrem\nPresten\nQuang\nRansom\nRasheed\nRashid\nRayhan\nRazi\nRees\nReno\nReyly\nReymond\nReza\nRiku\nRobinson\nRock\nRoel\nRogan\nRohin\nRomero\nRowdy\nRudra\nRussel\nRustin\nRyo\nSachin\nSagar\nSahib\nSahir\nSaket\nSascha\nSathvik\nSavir\nScotty\nSelvin\nShadi\nShae\nShaw\nShemar\nShneur\nSiddhant\nSidharth\nSilvio\nSmith\nSoham\nSriram\nStryder\nSuhaib\nSukhman\nSulaiman\nSutter\nSutton\nSven\nTaiyo\nTallen\nTamer\nTanish\nTavian\nTaylen\nTayler\nTennyson\nTenoch\nTerron\nThanh\nTheophilus\nThiago\nTien\nTimofey\nTimoteo\nTj\nTlaloc\nToni\nToribio\nTracey\nTreston\nTrigo\nTriton\nTylan\nTyrin\nTyron\nTyrus\nValdemar\nValentine\nVansh\nVeer\nVictormanuel\nVinay\nVineet\nVinny\nVitaliy\nWillard\nWynston\nYaakov\nYandell\nYasin\nYassin\nYerik\nYishai\nYisroel\nYuta\nZacary\nZackariah\nZaiden\nZakkary\nZayn\nZeke\nZephan\nZiggy\nDaniel\nAnthony\nAngel\nJacob\nDavid\nAndrew\nChristopher\nJoshua\nJose\nDiego\nAlexander\nMatthew\nMichael\nEthan\nJonathan\nNathan\nJoseph\nBrandon\nAdrian\nKevin\nChristian\nLuis\nRyan\nIsaac\nNoah\nJesus\nGabriel\nJuan\nDylan\nJayden\nCarlos\nAaron\nJulian\nIsaiah\nNicholas\nSamuel\nJames\nWilliam\nBenjamin\nBryan\nAiden\nMiguel\nElijah\nSebastian\nLogan\nJustin\nJason\nTyler\nAlejandro\nJordan\nJohn\nBrian\nEvan\nRobert\nJack\nGavin\nVictor\nEric\nIvan\nLuke\nAlex\nAidan\nAdam\nJorge\nOscar\nLucas\nEduardo\nZachary\nCaleb\nOmar\nJesse\nFrancisco\nXavier\nFernando\nAndres\nJackson\nNathaniel\nDamian\nSean\nMason\nSteven\nRicardo\nGiovanni\nThomas\nCesar\nDominic\nIan\nAntonio\nAustin\nRichard\nAlan\nAlexis\nJaden\nVincent\nManuel\nEdgar\nLeonardo\nJeremiah\nConnor\nOwen\nKyle\nJavier\nJoel\nHector\nErick\nHenry\nCristian\nSergio\nAbraham\nCharles\nEmmanuel\nJosue\nCameron\nMario\nNicolas\nWyatt\nJake\nTristan\nLandon\nEdwin\nDevin\nLiam\nJosiah\nSantiago\nAndy\nRoberto\nErik\nChase\nMarco\nCole\nElias\nRuben\nJared\nIsrael\nJeremy\nHunter\nEdward\nMartin\nDerek\nRafael\nMarcus\nHayden\nPedro\nGerardo\nBlake\nOliver\nFabian\nRaymond\nTimothy\nArmando\nKenneth\nRaul\nMark\nBrayden\nGeorge\nRoman\nMarcos\nCody\nJaime\nRiley\nPaul\nJohnny\nCaden\nSeth\nEnrique\nMax\nEmilio\nAyden\nDamien\nBrody\nGustavo\nRodrigo\nMicah\nEmiliano\nJoaquin\nSaul\nAlberto\nJulio\nCarter\nCooper\nPablo\nMateo\nPatrick\nGael\nMoises\nJonah\nPreston\nAdan\nKai\nKaden\nTrevor\nEsteban\nMaxwell\nPeter\nArturo\nTravis\nCarson\nColin\nSalvador\nAlfredo\nAndre\nIsmael\nAxel\nParker\nEzekiel\nRyder\nEmanuel\nNolan\nBryce\nJohnathan\nKaleb\nDonovan\nJeffrey\nMiles\nAbel\nShane\nAngelo\nLeo\nBrady\nEli\nRamon\nFrank\nHugo\nErnesto\nBrayan\nLevi\nLorenzo\nTroy\nDanny\nStephen\nTanner\nSpencer\nAshton\nIssac\nColton\nJaiden\nGuillermo\nMauricio\nBradley\nNoe\nUriel\nMalachi\nChris\nJimmy\nOrlando\nGrant\nHudson\nAllen\nDominick\nYahir\nMathew\nCalvin\nShawn\nFelix\nRandy\nEddie\nMaximiliano\nAlfonso\nLuca\nAlbert\nAldo\nGarrett\nBraden\nCash\nOsvaldo\nArthur\nAsher\nCruz\nUlises\nLukas\nSimon\nGregory\nJerry\nLincoln\nMaximus\nDarren\nLeonel\nCayden\nKayden\nWesley\nDante\nGage\nDevon\nCollin\nMarvin\nJairo\nJessie\nPeyton\nTheodore\nConner\nFelipe\nGriffin\nBrendan\nDrew\nDustin\nBryant\nCristopher\nNoel\nTony\nDillon\nEzra\nMaddox\nGilberto\nDean\nIsaias\nDrake\nMoses\nRicky\nJulius\nKingston\nCharlie\nJaylen\nRene\nJace\nScott\nAden\nJonas\nVicente\nHarrison\nSteve\nJakob\nQuinn\nRamiro\nEfrain\nJayson\nTaylor\nZion\nLarry\nAlvaro\nRodolfo\nRogelio\nAlec\nPhillip\nDennis\nJaxon\nLouis\nValentin\nAllan\nDerrick\nIzaiah\nTrenton\nJude\nDane\nNikolas\nElliot\nLanden\nJoe\nJohan\nKenny\nRonald\nChance\nAlonso\nCasey\nKaiden\nMyles\nGiovanny\nZane\nAvery\nGilbert\nTy\nOswaldo\nRudy\nSawyer\nTyson\nAmir\nRylan\nKeith\nAgustin\nFreddy\nJoey\nNehemiah\nTomas\nJasper\nNickolas\nXander\nAdolfo\nAlvin\nAriel\nBranden\nFrankie\nSkyler\nDeclan\nJalen\nTrent\nAnderson\nPhilip\nAlonzo\nEzequiel\nMarc\nNelson\nBryson\nCyrus\nDarius\nFinn\nMatteo\nAlessandro\nLawrence\nWalter\nCaiden\nGrayson\nMilo\nKameron\nRohan\nCorey\nDonald\nPhoenix\nRoger\nRoy\nIgnacio\nJay\nOctavio\nRomeo\nSilas\nBrenden\nCurtis\nElvis\nEnzo\nSam\nAdriel\nCade\nElliott\nGiovani\nJadon\nKristopher\nBruce\nHumberto\nLance\nLeland\nMisael\nTommy\nDallas\nIsai\nLeon\nEverett\nKyler\nCorbin\nEstevan\nKeegan\nOrion\nRolando\nShaun\nAli\nGiancarlo\nMaximilian\nRussell\nDouglas\nGary\nMarlon\nNathanael\nTobias\nZander\nMorgan\nIrvin\nJustice\nKobe\nRowan\nBrennan\nJunior\nMelvin\nMitchell\nJonathon\nKelvin\nMalik\nJovanny\nRonan\nRay\nRocco\nAryan\nDakota\nDorian\nFranklin\nYair\nAron\nBrett\nByron\nNico\nUlysses\nZachariah\nAugust\nBraeden\nDesmond\nJulien\nSantino\nColby\nGianni\nHolden\nJameson\nMaverick\nRigoberto\nAlexandro\nClayton\nDamon\nHarry\nJaydon\nMiguelangel\nNery\nDario\nJudah\nArjun\nBeau\nJovany\nMike\nZackary\nBrock\nDarian\nDavian\nJett\nKian\nSolomon\nTristen\nWeston\nBennett\nBernardo\nDerick\nEmerson\nIsiah\nJayce\nJovani\nEfren\nGonzalo\nGraham\nQuentin\nTitus\nAlijah\nAmari\nAri\nBilly\nBraulio\nBruno\nFidel\nYael\nCarlo\nDalton\nJair\nJefferson\nKrish\nKristian\nNathen\nRiver\nCory\nJoan\nJosh\nKeven\nSantos\nAlfred\nLeonard\nNestor\nTrey\nBobby\nCristofer\nDominik\nJaeden\nJovanni\nKieran\nLuciano\nMarcelo\nMariano\nPierce\nRonnie\nBen\nBrendon\nGerman\nNikhil\nRey\nGrady\nMaurice\nRaphael\nWilson\nAbram\nCristobal\nDavis\nLondon\nAtticus\nConor\nDavin\nEmmett\nIsaak\nMaximo\nPayton\nRonaldo\nSonny\nValentino\nVince\nWarren\nArmaan\nEugene\nJuancarlos\nMatias\nMohammad\nRonin\nStanley\nTerry\nVaughn\nAce\nCamden\nKellen\nLuka\nPranav\nTalon\nAditya\nArman\nDevan\nDeven\nEliseo\nFrederick\nGuadalupe\nIsac\nJaxson\nJoseluis\nLouie\nMicheal\nMohamed\nNick\nReed\nSkylar\nTucker\nYandel\nBenny\nBraydon\nCohen\nElmer\nHeriberto\nIbrahim\nJeshua\nKing\nKody\nRamses\nTalan\nAdrien\nArnav\nDavion\nElian\nGeovanni\nJohnathon\nJovan\nRodney\nXzavier\nYurem\nAhmed\nBeckett\nChad\nDexter\nGreyson\nGunnar\nJeffery\nQuincy\nReece\nReese\nReynaldo\nAlexzander\nAntony\nArmani\nAydin\nBrodie\nCarl\nDawson\nEaston\nGeovanny\nHamza\nKeaton\nMalakai\nReid\nAbner\nDarwin\nErnest\nEverardo\nMarcel\nNiko\nRocky\nBrent\nCraig\nDevyn\nGideon\nGino\nJuanpablo\nKade\nMakai\nMarkus\nTate\nDeshawn\nJohann\nJon\nMaxim\nOsmar\nSage\nToby\nZackery\nEder\nFinnegan\nFrancis\nFranco\nHarold\nJamie\nKhalil\nMalcolm\nMarshall\nMathias\nMatthias\nNeil\nPorter\nRemy\nBenicio\nGerald\nIsidro\nIzayah\nKane\nKendrick\nLewis\nRaymundo\nRyland\nTerrance\nWinston\nAarav\nAydan\nBodhi\nConrad\nDamion\nDeandre\nEmir\nIshaan\nKeanu\nRalph\nVan\nAdonis\nAhmad\nBenito\nCedric\nClark\nFredy\nGunner\nHarley\nJaydin\nKenji\nLeandro\nMadden\nMaximillian\nSiddharth\nTheo\nTristin\nBaron\nDemian\nDeon\nDilan\nEddy\nMilton\nMuhammad\nRayan\nRishi\nSahil\nVincenzo\nZaid\nBraxton\nCarmelo\nDarien\nDillan\nDominique\nGregorio\nIlan\nIrving\nLee\nNikolai\nPrince\nQuinton\nRoland\nRoyce\nSamson\nSebastien\nSemaj\nSoren\nTriston\nWaylon\nZechariah\nAnish\nArmen\nDangelo\nFinley\nFranky\nGlenn\nIsael\nJan\nJermaine\nJessy\nKen\nMarcoantonio\nMarley\nRex\nCamren\nCassius\nGiovany\nJagger\nJaylin\nJeramiah\nJonatan\nKeenan\nLuisangel\nRobin\nSammy\nTaj\nWayne\nAddison\nAlden\nArian\nAsa\nCamilo\nCamron\nDashiell\nDeangelo\nDhruv\nDuncan\nEden\nFavian\nFederico\nGenaro\nGordon\nJael\nJamari\nKellan\nLuc\nLyric\nTerrell\nTyrone\nYash\nAyaan\nBradyn\nClaudio\nDimitri\nErwin\nGavyn\nHoracio\nJase\nJorden\nKaeden\nLucca\nMarcello\nNathanial\nOsbaldo\nRashad\nRyker\nSaid\nSamir\nSeamus\nTerrence\nVance\nVidal\nWade\nZachery\nZain\nDenzel\nDereck\nDonavan\nDwayne\nJasiah\nJaycob\nJerome\nJohnpaul\nKamari\nLane\nLeonidas\nLucian\nNasir\nOmari\nPaxton\nRhys\nRick\nVladimir\nWill\nWilmer\nZayden\nAbdiel\nAedan\nAmare\nAndreas\nAugustine\nBrad\nColt\nDayton\nDeegan\nEdison\nHoward\nJadyn\nJamal\nKadin\nMekhi\nQuintin\nReuben\nSantana\nStefan\nUriah\nYusuf\nZack\nArnold\nBailey\nDavon\nEan\nEdson\nEleazar\nElisha\nEthen\nGianluca\nIzaac\nJacky\nJamison\nJareth\nLino\nMauro\nRigo\nSterling\nAbdullah\nAram\nAugustus\nAurelio\nBeckham\nBlaine\nCallum\nDemetrius\nElvin\nHernan\nJahir\nJeff\nJustus\nKale\nKennedy\nKeoni\nMikel\nMohammed\nNash\nNeo\nNeri\nPierre\nSidney\nTobin\nTrace\nAarush\nAdair\nAlek\nAyush\nDale\nDarion\nDeacon\nElan\nGuy\nHassan\nJarrett\nJavon\nJohnnie\nJordy\nLionel\nMarcelino\nMarques\nRoyal\nSione\nSky\nTai\nWalker\nAbelardo\nAndrei\nAnirudh\nAntoine\nAres\nArya\nAzael\nBraedon\nBrennen\nDamari\nDarryl\nGerson\nIker\nImanol\nJax\nJelani\nJet\nKadyn\nKalel\nKareem\nKarim\nMalaki\nMarko\nMerrick\nOcean\nPaolo\nReginald\nSalomon\nSullivan\nTeagan\nTimmy\nTristian\nUlices\nUlisses\nWillie\nYovani\nAkhil\nAnson\nAvi\nBill\nBraiden\nBrooks\nChristofer\nCristo\nDallin\nDax\nDion\nEnoch\nForrest\nGeoffrey\nHerbert\nJaydan\nJedidiah\nJericho\nJordi\nKalani\nKalvin\nKoa\nKurt\nLawson\nLennon\nLuiz\nMarquis\nMessiah\nMustafa\nNigel\nPresley\nRahul\nRaiden\nReilly\nRory\nRyley\nShaan\nShreyas\nStone\nAaden\nAbhinav\nAndrey\nApollo\nBarrett\nCaesar\nDaren\nDarrell\nDyllan\nEllis\nEver\nFreddie\nGeovany\nHans\nHarper\nHarvey\nHugh\nJacobo\nJean\nJordyn\nJoseangel\nKael\nKainoa\nKarl\nKelly\nKeon\nKyan\nLachlan\nLamont\nLeobardo\nLucio\nMagnus\nMassimo\nMihir\nMilan\nNate\nNikko\nOskar\nOtto\nReagan\nSami\nShayan\nTeo\nTim\nTrinidad\nZaire\nAdin\nAjani\nAlexandre\nBilal\nBishop\nBoston\nBrando\nDon\nEwan\nFermin\nJim\nJullian\nKaleo\nKevyn\nKole\nLamar\nLucien\nNoam\nNorman\nObed\nReyli\nRhett\nRichie\nRishabh\nStuart\nSunny\nTrevon\nTruman\nTyree\nVarun\nYonatan\nAbran\nAchilles\nAdalberto\nAdriano\nAleksander\nAmado\nArath\nArmon\nBernard\nBladimir\nBodie\nBroderick\nBrycen\nCannon\nCarmine\nConstantine\nDan\nDaron\nDenis\nDonte\nEsau\nGeovani\nHaven\nHilario\nImmanuel\nIshan\nJaren\nJerimiah\nJosemanuel\nKarson\nKash\nKillian\nLazaro\nMattias\nMikael\nPatricio\nRehan\nRoderick\nSameer\nSheldon\nStephan\nZahir\nAidyn\nAjay\nAkshay\nAldair\nAnders\nAnton\nAntoni\nArvin\nAusten\nBenson\nBlaise\nBrice\nCeasar\nChandler\nColten\nDarnell\nDarrius\nDuke\nErvin\nFred\nIsacc\nIsreal\nJabari\nJafet\nJaron\nJathan\nJaven\nJohnson\nJosef\nJoziah\nKamran\nKurtis\nLenny\nMarion\nMoshe\nNoa\nPaulo\nRon\nRonny\nSarkis\nShiven\nSilvestre\nSimeon\nTodd\nTrevin\nZen\nAmador\nAnakin\nAndrik\nAnsel\nArav\nArnulfo\nBlaze\nBoden\nChaz\nDarin\nDereon\nDomingo\nDraven\nEdgardo\nEros\nFausto\nFletcher\nGarret\nGarrison\nGian\nHank\nHarris\nHezekiah\nIsmail\nJad\nJaedyn\nJai\nJaidyn\nKasey\nKendall\nKent\nKorbin\nLandyn\nLeif\nLonnie\nMaksim\nNeel\nNikita\nOdin\nOren\nRico\nRio\nShiloh\nTadeo\nTom\nUziel\nYaseen\nYonathan\nYuvraj\nAlen\nAlexsander\nAlistair\nAmeer\nAnsh\nArden\nAren\nArlo\nAustyn\nCaeden\nCain\nDeagan\nDev\nEdmond\nEliezer\nErnie\nFabio\nFabricio\nFabrizio\nFaustino\nFrancesco\nGabino\nGannon\nGlen\nHiram\nJaret\nJensen\nJeremias\nJesiah\nJuandiego\nKekoa\nKelan\nKenton\nKenyon\nKiran\nKristofer\nLester\nNarek\nRayden\nRayyan\nSalvatore\nShayne\nTaha\nTalen\nTarun\nThaddeus\nTrystan\nTyrell\nViktor\nYousef\nAayush\nAkash\nAlexavier\nAlton\nAmar\nAntwan\nArcher\nArnoldo\nArtemio\nAthan\nBaltazar\nBentley\nBraylon\nCharley\nClemente\nCoby\nColeman\nCristiano\nDaryl\nDashawn\nDavien\nDonnie\nEdmund\nEliel\nEligh\nEloy\nEsai\nFavio\nFisher\nGibson\nHaiden\nHaziel\nHerman\nIzaak\nJamar\nJamil\nJarod\nJarred\nJashua\nJaylan\nJhonatan\nJiovanni\nJordin\nJordon\nJoseantonio\nJustyn\nKarthik\nKris\nKylan\nKyree\nLeopoldo\nLloyd\nLucius\nNeftali\nOtis\nRamsey\nRandall\nReymundo\nRohit\nRylee\nSanjay\nShant\nSyed\nTiago\nTyce\nTye\nTyrese\nValente\nWestley\nWilbert\nWillem\nYosef\nZach\nZakary\nZavier\nAadi\nAaryan\nAayan\nAdiel\nAmos\nAndru\nArmand\nAshwin\nBeck\nBradly\nClarence\nClyde\nCristhian\nDandre\nDarrin\nDejon\nDenny\nDidier\nFinnian\nGeno\nHarout\nHendrix\nJackie\nJacoby\nJaedon\nJavion\nJerson\nJohny\nJuanjose\nKamron\nKeagan\nKhalid\nKolby\nKonner\nLars\nLisandro\nMarcell\nMikhail\nMinh\nNevin\nNorberto\nOsman\nRami\nRoan\nRonit\nRoshan\nRowen\nRyu\nSasha\nSoham\nTeddy\nTevin\nTorin\nWilber\nWiley\nWilliams\nAbhiram\nAbrahan\nAmaury\nAngad\nAngelgabriel\nAngus\nArin\nArsen\nAugustin\nAyan\nBenedict\nBo\nBowen\nBrandan\nBrenton\nCanon\nClifford\nClinton\nCoen\nCriss\nCuauhtemoc\nDonavon\nEitan\nEly\nErasmo\nFaris\nFlavio\nFlynn\nGauge\nGerard\nHadi\nIbraheem\nIra\nIzak\nJancarlo\nJarett\nJody\nJuanmanuel\nKabir\nKarter\nKason\nKeshav\nKeshawn\nKonnor\nKrishna\nLeroy\nLeslie\nLevon\nLex\nMakaio\nManny\nMarek\nMemphis\nMichel\nMickey\nMohamad\nNathon\nOsiel\nOzzy\nPete\nRaudel\nRaziel\nReggie\nReyes\nRian\nRickey\nRishab\nRonak\nRosendo\nRoss\nSavion\nSelvin\nShay\nShea\nSlade\nSurya\nVihaan\nVinh\nYeshua\nYohan\nZaiden\nZeus\nAbisai\nAdael\nAdryan\nAlain\nAman\nAmin\nAmogh\nAmrit\nAndrez\nAneesh\nAntwon\nAries\nArion\nBranson\nBret\nBrooklyn\nCanyon\nChayton\nCian\nClint\nCorban\nDamarcus\nDanniel\nDeanthony\nDeion\nDemitri\nDevlin\nDiesel\nDonavin\nDwight\nEamon\nElio\nElyas\nEmery\nEoin\nEtienne\nEvin\nFeliciano\nFroylan\nGadiel\nGaven\nGiorgio\nHaden\nHakop\nHarlan\nHasan\nHeber\nHumza\nIshmael\nJasen\nJaylon\nJaysen\nJayvion\nJaziel\nJeovany\nJessiah\nJimmie\nJosias\nJr\nJuliano\nJun\nKain\nKanoa\nKaran\nKarsten\nKymani\nLangston\nLayne\nLegend\nLuigi\nLyle\nMaddux\nMakoa\nMarquise\nMichaelangelo\nMikah\nMikey\nMiller\nMorris\nMynor\nNahum\nNomar\nPalmer\nParsa\nPerry\nPhineas\nPiero\nRayhan\nRaymon\nRemi\nRemington\nRithvik\nRony\nShaurya\nSlater\nSylvester\nSyrus\nTakumi\nTanay\nTatum\nTayshawn\nTed\nTegan\nTrayvon\nUlyses\nVedant\nVishnu\nYoussef\nZayd\nZev\nAaditya\nAbhishek\nAmani\nArron\nAston\nBarry\nBradlee\nBrandyn\nBroden\nCalen\nCarsten\nCelso\nCharly\nCiaran\nClay\nCornelius\nCurren\nCy\nDamarion\nDameon\nDarrien\nDaxton\nDemarion\nDemetrio\nDerik\nDeshaun\nDevonte\nDomenic\nElder\nEliazar\nEliot\nEmmitt\nEriberto\nEyan\nGaige\nGene\nGildardo\nHeath\nHenrik\nIlias\nImran\nIzeah\nJacques\nJamir\nJarvis\nJayvon\nJc\nJeffry\nJin\nJosedejesus\nJoshue\nJuaquin\nKamren\nKeelan\nKeion\nKenzo\nKhang\nKoen\nLaird\nMajor\nMakhi\nMarcial\nMarkell\nMonte\nNeal\nNevan\nOmarion\nParth\nQuinlan\nRace\nRaghav\nRider\nRobbie\nRustin\nSamarth\nSammuel\nServando\nShiv\nTenzin\nTito\nTrenten\nTurner\nTylor\nUnknown\nVirgil\nWest\nWestin\nWilly\nYahya\nYamil\nYovany\nYuri\nYusef\nZacarias\nZayne\nZephaniah\nAamir\nAbdulrahman\nAeden\nAharon\nAmbrose\nAmeen\nAnjel\nAtharva\nAubrey\nBarron\nBenton\nBode\nBradford\nBraylen\nBrighton\nBroc\nBrogan\nBronson\nCadence\nCairo\nCale\nCarlton\nCase\nCormac\nDaksh\nDanilo\nDarby\nDarrel\nDeric\nDomenick\nDonny\nEdvin\nEgan\nEliud\nEmil\nEmile\nEsdras\nEshaan\nEtai\nEthyn\nFabien\nFransisco\nFredrick\nGamaliel\nGarett\nGiuseppe\nGraydon\nGreg\nHarman\nHaydn\nHouston\nIain\nIsaih\nIssa\nIssak\nIzaya\nJacen\nJaidon\nJailen\nJayshawn\nJehu\nJeovanny\nJess\nJhonny\nJob\nJomar\nJonny\nJosejuan\nJoshuah\nJuanluis\nKalen\nKamal\nKamden\nKarol\nKasen\nKayleb\nKeane\nKerry\nKevon\nKeyon\nKhristian\nKingsley\nKoby\nKohen\nKorey\nKory\nLandan\nLucky\nManjot\nMasen\nMaxx\nMitchel\nMusa\nNikola\nNixon\nNolen\nOzzie\nPhilippe\nPrinceton\nRenato\nRenzo\nReymond\nRyden\nSeven\nShivam\nSriram\nStephon\nSylas\nTaran\nTavin\nTigran\nTracy\nTripp\nUbaldo\nUmar\nUrijah\nVictormanuel\nViggo\nVivek\nWes\nWilfredo\nYadier\nYehuda\nYobani\nYoel\nZahid\nZakariya\nZyon\nAb\nAbdul\nAbimael\nAdel\nAldrin\nAmaan\nAmadeo\nAnay\nAndruw\nAngello\nApolinar\nArik\nArtem\nAtom\nAvian\nAviv\nAzariah\nBernabe\nBrandin\nBrandt\nCallan\nCalum\nCecil\nChayse\nChazz\nCiro\nConlan\nCordell\nCornell\nDarey\nDariel\nDarrian\nDarrion\nDave\nDaylan\nDaylen\nDayne\nDegan\nDemarcus\nDemari\nDemitrius\nDenilson\nDeonte\nDesean\nDimas\nDino\nDylen\nEarl\nEason\nEber\nEdric\nEren\nEugenio\nFinneas\nForest\nGaurav\nGavino\nGenesis\nGil\nHadrian\nIban\nIsa\nIsak\nIsayah\nIsrrael\nIssaiah\nIzik\nIzrael\nIzreal\nJabez\nJahaziel\nJakub\nJalil\nJaxen\nJaykob\nJerardo\nJezreel\nJhovani\nJhovany\nJoell\nJoesph\nJohannes\nJuelz\nJulyan\nJuvenal\nKamryn\nKannon\nKayne\nKayson\nKelton\nKenta\nKhai\nKhoa\nKye\nKyson\nLandin\nLauro\nLeandre\nLev\nLian\nLogen\nLyndon\nMalek\nMarquez\nMarty\nMaximino\nMaximos\nMaxximus\nMilad\nMykel\nNadav\nNaim\nNain\nNassir\nNatanael\nNicolai\nNikolaos\nNishant\nOm\nOri\nPascual\nQuinten\nRajan\nRayshawn\nReef\nRefugio\nRehaan\nRen\nRich\nRomel\nRosalio\nRylen\nSabastian\nSandro\nSaxon\nShannon\nShmuel\nSilverio\nSincere\nSkye\nSol\nStefano\nSutton\nTariq\nTaven\nTayden\nTaylen\nTeegan\nTej\nTejas\nTerrion\nThiago\nThierry\nTravon\nTyshawn\nUzziel\nVaibhav\nViraj\nVito\nWaleed\nWillis\nWynn\nYahel\nYerik\nZacharia\nZakai\nZamir\nAadit\nAakash\nAdarsh\nAdian\nAdil\nAdithya\nAdler\nAdonai\nAidin\nAj\nAkira\nAlexandru\nAlexi\nAlfonzo\nAlon\nAlvino\nAmit\nAmmon\nAnand\nAndrae\nAnibal\nAnwar\nArda\nAria\nArsh\nArush\nAryeh\nAsael\nAtreyu\nAvan\nAxl\nAyman\nAziz\nAzriel\nBalam\nBayron\nBenigno\nBrayam\nBrennon\nBrodey\nBrysen\nBryton\nBuddy\nCaedmon\nCaelan\nCalan\nCampbell\nCary\nChauncey\nChester\nChrist\nClifton\nColson\nCorwin\nCurran\nDakoda\nDana\nDani\nDanthony\nDanyel\nDara\nDareon\nDaylon\nDelfino\nDeron\nDesi\nDestin\nDomonic\nDonivan\nDonnell\nDonnovan\nDrayden\nDresden\nDuvan\nEdan\nEdmundo\nEdwyn\nElden\nElie\nElijha\nElijiah\nEliyahu\nEzekial\nFarhan\nFloyd\nFord\nFox\nGavan\nGerrit\nGibran\nGray\nHaik\nHakeem\nHalen\nHansel\nHaris\nHero\nHussein\nIdan\nIlya\nIlyas\nIseah\nItai\nIven\nIzac\nJacari\nJae\nJairus\nJamarcus\nJamin\nJapheth\nJarell\nJarrod\nJavan\nJavin\nJawad\nJaycee\nJayro\nJayvyn\nJeancarlo\nJed\nJered\nJeremyah\nJibril\nJosejulian\nJosemaria\nJovannie\nJuanantonio\nJules\nJusten\nKailen\nKaimana\nKaison\nKaito\nKalib\nKarsen\nKavi\nKavin\nKavon\nKegan\nKemari\nKhachik\nKiefer\nKirk\nKobi\nKodi\nKollin\nKylen\nLaith\nLaron\nLatrell\nLaurence\nLazarus\nLeighton\nLennox\nLinus\nLochlan\nLoren\nLyrik\nMaceo\nMack\nMackenzie\nMaddex\nMaddix\nMalakhi\nMalikai\nManvir\nMarkanthony\nMatan\nMathieu\nMatt\nMaxime\nMayson\nMckay\nMenachem\nMizael\nMykah\nMyron\nNabil\nNader\nNahom\nNakai\nNiccolo\nNickolaus\nNicola\nNima\nNoble\nNoor\nOmri\nPiers\nPorfirio\nPrabhjot\nRashawn\nRavi\nReno\nRommel\nRonal\nRoni\nRowdy\nRusty\nRylie\nSaahil\nSahib\nSaleh\nSalman\nSamay\nSascha\nSevastian\nShalom\nShamus\nSherman\nSherwin\nShrey\nSiddarth\nSilvano\nSmith\nSohan\nTayshaun\nTevita\nTheron\nTiernan\nTitan\nTreyton\nTrigo\nTRUE\nTyrus\nVartan\nVeer\nVictoriano\nViet\nVikram\nVincente\nVon\nWil\nYared\nYasir\nYehoshua\nZayn\nZeke\nAahan\nAaren\nAaronjames\nAbdullahi\nAbiel\nAdal\nAdvait\nAdvaith\nAdyn\nAhmir\nAimar\nAksel\nAlasdair\nAlder\nAleczander\nAleks\nAleksandar\nAlekzander\nAlexandros\nAmadeus\nAmarie\nAmauri\nAmmar\nAmr\nAn\nAnas\nAnder\nAndi\nAndon\nAndrick\nAnmol\nAnthonie\nAnthonyjr\nAris\nArjan\nArjuna\nArun\nAshtin\nAtharv\nAuden\nAudric\nAven\nAviel\nAvin\nBao\nBenji\nBenyamin\nBlaize\nBlas\nBoris\nBraedyn\nBrallan\nBrant\nBraxten\nBrendyn\nCaine\nCalder\nCallen\nCamari\nCardin\nCason\nCayson\nCeaser\nCecilio\nCedar\nCedrick\nChace\nCj\nClement\nCodey\nColter\nConrado\nCorde\nCris\nCullen\nDakarai\nDamonte\nDarvin\nDaryan\nDash\nDashel\nDathan\nDaveon\nDavonte\nDaylin\nDaymian\nDelano\nDeshon\nDevion\nDevontae\nDontae\nDylon\nEamonn\nEathan\nEben\nEdder\nEdilberto\nEdin\nEdsel\nEhren\nEliam\nEliaz\nEphraim\nErin\nEsequiel\nEthaniel\nEthanmatthew\nEven\nEverest\nExavier\nFinlay\nFlorentino\nGareth\nGarin\nGarrick\nGeronimo\nGerry\nGiacomo\nGiuliano\nGorge\nGovanni\nGriffen\nGrigor\nGurjot\nGurpreet\nGurshaan\nGurshan\nGurveer\nGus\nHamilton\nHari\nHarjot\nHarlem\nHenri\nHenrry\nHerson\nHovik\nHurley\nHuy\nIke\nIndiana\nIsahi\nIsaia\nJaciel\nJacobe\nJadin\nJaidan\nJamarion\nJarrell\nJasson\nJaycen\nJaylyn\nJayme\nJaythan\nJayven\nJeanluc\nJeremie\nJeric\nJerico\nJermiah\nJessejames\nJiovani\nJiovanny\nJoab\nJohncarlo\nJoncarlo\nJosealberto\nJosmar\nJossue\nJozef\nJulious\nJuno\nJustis\nKaedyn\nKaidyn\nKalob\nKamarion\nKarlo\nKasra\nKaylen\nKaysen\nKeller\nKenai\nKeyshawn\nKhamari\nKhoi\nKhristopher\nKonrad\nKrishiv\nKristoffer\nKyran\nKyron\nLadainian\nLayton\nLebron\nLeeland\nLenin\nLior\nLogun\nMac\nMacario\nMahdi\nMaison\nMakhai\nManas\nManolo\nManveer\nMargarito\nMarius\nMarkel\nMateen\nMatix\nMaximilliano\nMicaiah\nMigel\nMiko\nMontgomery\nMuhammed\nNaeem\nNam\nNareg\nNathaneal\nNazareth\nNehemias\nNewton\nNicky\nNihal\nNiklas\nNikolaus\nNile\nNitin\nOmid\nOsiris\nOsmel\nOtoniel\nParis\nPavel\nPraneel\nQuan\nRaheem\nRain\nRandolph\nRashaad\nRashaun\nRasheed\nReginaldo\nReily\nRenner\nRickie\nRitvik\nRobby\nRobel\nRoen\nRojelio\nRolan\nRome\nRudra\nRyo\nSabino\nSaeed\nSaif\nSampson\nSatvik\nShai\nShaya\nShilo\nSidharth\nSir\nSohum\nSrikar\nSteele\nStellan\nStorm\nSven\nSydney\nTaiyo\nTalin\nTanish\nTavion\nTheodor\nThor\nTiger\nToribio\nTorsten\nTosh\nTre\nTreyvon\nTristyn\nTriton\nTruth\nUri\nValentine\nVed\nViliami\nVinson\nWarner\nWolfgang\nXaiver\nXavi\nXavion\nXavior\nYasin\nYazan\nYul\nYuta\nYuto\nZacary\nZacheriah\nZade\nZephyr\nZidane\nZiggy\nZuriel\nZyaire\nAahil\nAarin\nAbbas\nAbdel\nAbdurrahman\nAdnan\nAdon\nAhmari\nAkio\nAlam\nAlastair\nAleck\nAlejo\nAleksey\nAlessio\nAlian\nAlize\nAlphonso\nAlston\nAmarion\nAmeya\nAngeljesus\nAnguel\nAnik\nAntione\nAquiles\nAramis\nArchit\nArie\nAristeo\nAristotle\nArlen\nArmin\nArshia\nArtyom\nAtlas\nAundre\nAuston\nAvion\nAvraham\nAyoub\nBaden\nBaxter\nBeauregard\nBeckam\nBecker\nBennie\nBernardino\nBoaz\nBosco\nBraedan\nBrandom\nBrevin\nBridger\nBritton\nCache\nCael\nCal\nCallahan\nCamryn\nCandido\nCarsen\nCayleb\nCezar\nChaim\nChamp\nChanning\nChasen\nChevy\nChriss\nChristain\nChristiano\nChristien\nChristo\nChristoper\nCisco\nClive\nColeton\nConall\nConan\nCornelio\nCrispin\nCyan\nDade\nDaimien\nDajon\nDamar\nDamarco\nDamario\nDang\nDarell\nDarrick\nDashiel\nDaven\nDeante\nDejuan\nDelbert\nDemarco\nDemario\nDemetri\nDemetrious\nDenver\nDesiderio\nDewayne\nDezmond\nDhruva\nDionicio\nDmari\nDmitri\nDonovin\nDorien\nDryden\nDuane\nEbenezer\nEduard\nEdwardo\nEion\nEithan\nElbert\nElisandro\nEmin\nEmmet\nEmre\nEnoc\nErich\nEron\nEsaias\nEsaul\nEshan\nEuan\nEulises\nEythan\nFahad\nFaisal\nFares\nFarid\nFerris\nFoster\nFouad\nGabrial\nGanesh\nGautam\nGiancarlos\nGiles\nGionni\nGiovannie\nGiulio\nGurman\nGustav\nGyasi\nHaider\nHamzah\nHaroon\nHaruto\nHarutyun\nHiro\nHowie\nHung\nHy\nIkenna\nInigo\nIran\nIrie\nIrwin\nIsaiha\nIsidoro\nItamar\nJaccob\nJade\nJaedan\nJaelen\nJahan\nJahari\nJaicob\nJakai\nJakari\nJakeb\nJakobi\nJalon\nJamaal\nJamier\nJaquan\nJashan\nJaxx\nJayceon\nJaymes\nJeanpaul\nJeevan\nJerald\nJerod\nJeronimo\nJerrell\nJhoan\nJohncarlos\nJohnie\nJohnmichael\nJonathen\nJorel\nJosafat\nJosaiah\nJosealfredo\nJosyah\nJuanjr\nJuel\nJustine\nKadon\nKamar\nKaranveer\nKarlos\nKartik\nKasper\nKaushik\nKei\nKeiran\nKenan\nKendal\nKendric\nKenner\nKennith\nKenshin\nKhaled\nKinan\nKlayton\nKolten\nKolton\nKooper\nKota\nKyren\nLakai\nLake\nLamberto\nLarenzo\nLavell\nLenard\nLucus\nMacen\nMalachai\nMalcom\nManav\nMarcanthony\nMarcellus\nMarin\nMarkos\nMarshaun\nMarshawn\nMateus\nMatin\nMatthewjames\nMatthieu\nMavrick\nMaximilien\nMaxon\nMaxton\nMazen\nMckinley\nMerik\nMichaelanthony\nMichelangelo\nMikai\nMissael\nMontana\nMonty\nMorrison\nMunir\nMychael\nMychal\nNaman\nNatan\nNathanel\nNaveen\nNaythan\nNeko\nNephi\nNicolaus\nNicoli\nNicolo\nNikoli\nNiles\nNour\nNova\nOleg\nOlin\nOlivier\nOmeed\nOrin\nOseas\nOswald\nOwyn\nOziel\nPaco\nPascal\nPasha\nPaulino\nPavan\nPetros\nPierson\nPranay\nQuin\nRahman\nRaj\nRaja\nRaleigh\nRam\nRaven\nRayvon\nRegan\nRei\nReign\nReza\nRivers\nRodrick\nRoel\nRomario\nRooney\nRoque\nRoscoe\nRushil\nSacha\nSadiq\nSahid\nSai\nSaleem\nSalem\nSamik\nSanto\nSathvik\nSaulo\nSeiji\nSerjio\nShabd\nShade\nShae\nShareef\nShashank\nShayaan\nShayden\nShaye\nSheamus\nShelton\nShiva\nShlok\nShlomo\nShriyan\nSid\nSiddhant\nSixto\nSloan\nSosaia\nStevan\nStevie\nStewart\nSuhas\nSukhraj\nTafari\nTam\nTamer\nTarik\nTaron\nTaye\nTayveon\nTeague\nTejon\nTennyson\nTeodoro\nTerence\nThatcher\nThompson\nTimoteo\nTomer\nTommie\nTomoki\nToriano\nTravion\nTrentin\nTrever\nTri\nTylen\nTyquan\nTyrin\nUmair\nUzziah\nVann\nVedanth\nVernon\nVinay\nViraaj\nVirgilio\nVishal\nVivaan\nWallace\nWilbur\nWilder\nYakov\nYan\nYanni\nYisroel\nYoni\nYordi\nYovanni\nYunior\nYuval\nZabdiel\nZakaria\nZaki\nZakk\nZarek\nZavien\nZeth\nDaniel\nAnthony\nAngel\nJacob\nDavid\nAlexander\nAndrew\nJoshua\nChristopher\nJose\nMatthew\nNathan\nEthan\nMichael\nJonathan\nJoseph\nDiego\nAdrian\nJayden\nBrandon\nIsaac\nNoah\nKevin\nChristian\nRyan\nAiden\nLuis\nJulian\nJuan\nJesus\nGabriel\nAaron\nDylan\nCarlos\nIsaiah\nWilliam\nBenjamin\nNicholas\nJames\nSamuel\nElijah\nSebastian\nJustin\nBryan\nMiguel\nLogan\nTyler\nJason\nJohn\nAlejandro\nEvan\nJordan\nGavin\nAidan\nRobert\nJack\nLuke\nOscar\nDamian\nLucas\nVictor\nBrian\nIvan\nRicardo\nAdam\nJorge\nEric\nCaleb\nEduardo\nAlex\nZachary\nAndres\nJackson\nXavier\nOmar\nCesar\nJesse\nMason\nNathaniel\nAlan\nIan\nSteven\nDominic\nSean\nFrancisco\nGiovanni\nThomas\nFernando\nAntonio\nJoel\nRichard\nAustin\nJeremiah\nEmmanuel\nSantiago\nAlexis\nHenry\nLeonardo\nJaden\nVincent\nJosiah\nManuel\nOwen\nWyatt\nConnor\nHector\nAbraham\nCristian\nTristan\nEdgar\nLiam\nErick\nJosue\nKyle\nCharles\nJavier\nCameron\nSergio\nChase\nJake\nElias\nLandon\nMario\nNicolas\nBrody\nAyden\nOliver\nAndy\nBrayden\nEdwin\nRoberto\nCole\nEdward\nIsrael\nMax\nHunter\nJeremy\nDerek\nMartin\nRuben\nDevin\nEmiliano\nMarco\nRafael\nEli\nMarcus\nRiley\nErik\nBlake\nHayden\nCaden\nPedro\nGeorge\nMark\nArmando\nMateo\nKai\nGerardo\nRaymond\nRoman\nMicah\nJohnny\nJoaquin\nJonah\nTimothy\nKenneth\nMarcos\nEmilio\nJared\nFabian\nCarter\nCody\nRaul\nDamien\nSeth\nEnrique\nSaul\nKaden\nGael\nAlberto\nCooper\nCarson\nAdan\nPaul\nArturo\nJulio\nMaxwell\nMiles\nRyder\nEsteban\nAndre\nJaime\nEzekiel\nGustavo\nPatrick\nTravis\nBrady\nTrevor\nColin\nRodrigo\nPreston\nNolan\nMoises\nPeter\nBryce\nLevi\nEmanuel\nSalvador\nParker\nKaleb\nAbel\nDonovan\nErnesto\nAxel\nPablo\nColton\nShane\nLeo\nJeffrey\nIsmael\nBrayan\nGrant\nJohnathan\nDanny\nJaiden\nAlfredo\nCash\nAngelo\nHudson\nAshton\nAlbert\nMaximus\nUriel\nTroy\nHugo\nRamon\nBradley\nChris\nIssac\nMauricio\nFrank\nRandy\nGuillermo\nMalachi\nKingston\nSpencer\nCruz\nKayden\nCalvin\nMaximiliano\nAsher\nLuca\nTanner\nAllen\nDominick\nLorenzo\nLukas\nSimon\nJude\nArthur\nFelix\nStephen\nGarrett\nBraden\nMathew\nBrendan\nCollin\nLeonel\nEzra\nHarrison\nJaylen\nNoe\nYahir\nShawn\nWesley\nGage\nDean\nDevon\nUlises\nDante\nTony\nDrake\nLincoln\nJimmy\nCristopher\nEddie\nIsaias\nOrlando\nAlvin\nCayden\nConner\nDarren\nJace\nJaxon\nJerry\nAlfonso\nAden\nBryant\nRylan\nAaden\nMaddox\nRicky\nGregory\nJohan\nIzaiah\nJakob\nMarvin\nDustin\nRene\nRudy\nTheodore\nFelipe\nLouis\nJairo\nNoel\nKaiden\nMyles\nOsvaldo\nDillon\nGiovanny\nMoses\nCharlie\nJoe\nJulius\nJonas\nVicente\nZane\nGriffin\nAldo\nPeyton\nTaylor\nZion\nAlonso\nJay\nJasper\nSkyler\nSawyer\nGrayson\nMatteo\nJayson\nJessie\nJoey\nRamiro\nValentin\nMaximilian\nMilo\nQuinn\nDrew\nAvery\nPhillip\nRogelio\nTyson\nElliot\nRomeo\nAlvaro\nCasey\nGilberto\nRocco\nRonald\nLanden\nNickolas\nAlec\nAllan\nDane\nLawrence\nAlonzo\nAdolfo\nGiancarlo\nEverett\nScott\nAlessandro\nDerrick\nAmir\nEnzo\nNikolas\nSteve\nTrent\nTrenton\nXander\nEfrain\nChance\nFinn\nRowan\nByron\nDeclan\nEzequiel\nAnderson\nGilbert\nDarius\nCamden\nRoger\nBryson\nWalter\nClayton\nKeith\nRussell\nDesmond\nKenny\nMarc\nRohan\nLarry\nPhoenix\nRodolfo\nSilas\nCyrus\nJulien\nKobe\nBrennan\nCade\nLeon\nColby\nDorian\nFreddy\nMorgan\nZackary\nBruce\nDennis\nMisael\nPhilip\nNehemiah\nOrion\nRiver\nSantos\nAdriel\nAli\nCaiden\nJunior\nRolando\nDallas\nGianni\nIsai\nMitchell\nZander\nBrett\nOctavio\nBrenden\nJalen\nLuciano\nMalik\nRigoberto\nRoy\nTy\nAgustin\nIgnacio\nIrvin\nLance\nAryan\nJameson\nOswaldo\nQuentin\nTommy\nAri\nAugust\nJudah\nKeegan\nBrock\nMarcelo\nMarlon\nNico\nSantino\nTomas\nAriel\nElvis\nJaydon\nNathanael\nNelson\nSonny\nCurtis\nJaxson\nJovanny\nKristian\nWeston\nBranden\nGraham\nAron\nCorbin\nElliott\nEmerson\nFrankie\nKieran\nAditya\nMelvin\nArjun\nCorey\nHumberto\nJovani\nRaphael\nKian\nMaximo\nRay\nRey\nRonan\nTobias\nReed\nSam\nBennett\nBruno\nDario\nEugene\nFranco\nKyler\nTristen\nZachariah\nFranklin\nJayce\nKane\nKelvin\nNathen\nShaun\nUlysses\nDarian\nGerman\nHolden\nJosh\nMiguelangel\nPayton\nReid\nYandel\nDavis\nGiovani\nGrady\nMaverick\nMike\nGary\nAlijah\nKameron\nMalakai\nNikhil\nSolomon\nYael\nDexter\nJadon\nJonathon\nMarley\nTitus\nWarren\nKristopher\nNestor\nValentino\nDonald\nDouglas\nGonzalo\nBrodie\nCristobal\nEstevan\nJovanni\nJovany\nLondon\nNiko\nRonin\nAbram\nAce\nAmari\nBeau\nCristofer\nEfren\nGeovanni\nGreyson\nTucker\nYair\nCarlo\nIshaan\nKeven\nWilson\nCory\nIsiah\nJett\nKellen\nMekhi\nAlexandro\nAlfred\nBen\nDominik\nEmmett\nLeland\nMatias\nRonnie\nBobby\nChad\nDalton\nKhalil\nMarkus\nYurem\nAdrien\nBraydon\nBrendon\nDavian\nDerick\nDeven\nMaurice\nPierce\nRyland\nAtticus\nDawson\nJair\nLeonard\nMalcolm\nStanley\nArman\nBeckett\nEliseo\nJefferson\nKrish\nLouie\nMuhammad\nArmaan\nDevyn\nFidel\nJaeden\nJovan\nTrey\nUriah\nConrad\nEden\nKing\nMadden\nMarcel\nNery\nRodney\nBraeden\nConor\nDakota\nDamon\nDavion\nFrederick\nJustice\nRyker\nXzavier\nBilly\nBrent\nHeriberto\nLuka\nDavin\nDereck\nLeonidas\nPaxton\nReynaldo\nBaron\nBraulio\nDarwin\nDashiell\nEaston\nIbrahim\nKenji\nMarshall\nMilton\nPranav\nReece\nSoren\nTalon\nVince\nAlexzander\nArnav\nBenito\nDeangelo\nDeegan\nMariano\nMathias\nMaximillian\nNasir\nQuincy\nRocky\nSage\nTerry\nToby\nGideon\nHarry\nIker\nJohann\nJuancarlos\nKody\nRamses\nRishi\nSkylar\nVan\nWinston\nAbner\nAhmad\nBraxton\nGuadalupe\nKade\nMakai\nMohammad\nNeil\nTate\nAndreas\nAntony\nBenny\nChace\nElian\nEthen\nIsac\nIzaac\nJeshua\nJuanpablo\nMaxim\nRhys\nBailey\nBraylon\nFinnegan\nJan\nJax\nJon\nKeanu\nKendrick\nLucca\nMohamed\nTerrence\nUrijah\nWade\nWaylon\nZayden\nAarav\nCamilo\nDeandre\nEddy\nElmer\nFredy\nHernan\nJaydin\nKillian\nKoa\nNick\nOsmar\nRex\nRonaldo\nVaughn\nZaid\nAydin\nCohen\nDangelo\nHassan\nIsaak\nIsidro\nJoseluis\nKeenan\nLewis\nLuc\nLucio\nNikolai\nOmari\nTristin\nVladimir\nAhmed\nAmare\nAsa\nAydan\nBoston\nDeshawn\nElisha\nErnest\nGunnar\nJonatan\nQuintin\nRayan\nReese\nRemy\nRoland\nZechariah\nAntoine\nAnton\nBernardo\nDarien\nFreddie\nGerald\nHamza\nJagger\nJoan\nLionel\nNikko\nOsbaldo\nPorter\nWillie\nAyaan\nBrando\nClark\nEverardo\nFinley\nFrancis\nJeffery\nJerome\nKalel\nKeaton\nMarcelino\nMohammed\nNash\nOdin\nSammy\nSebastien\nTheo\nBraiden\nDarrell\nDhruv\nDilan\nEder\nEdison\nGavyn\nHezekiah\nJamison\nJohnathon\nJorden\nKash\nRalph\nRaymundo\nReginald\nSemaj\nWill\nZain\nAlden\nArmani\nDax\nDenzel\nErwin\nEver\nGenaro\nGian\nHarley\nIrving\nJahir\nLennon\nMarcello\nMaxx\nQuinton\nSantana\nTaj\nZack\nBarrett\nCannon\nCarl\nDarryl\nDevan\nDuncan\nGunner\nJael\nJamie\nJasiah\nJaycob\nKekoa\nLeandro\nLee\nRoyce\nSamir\nSeamus\nTerrance\nZachery\nAbdiel\nAedan\nAlexandre\nCallum\nCamron\nDemetrius\nEmil\nGino\nJaylin\nJesiah\nJohnpaul\nKareem\nPaolo\nSahil\nSamson\nWayne\nAbhinav\nAnders\nAndrei\nAvi\nBrycen\nDan\nDwayne\nEleazar\nGerson\nIzaak\nJacoby\nJessy\nKaeden\nLane\nLucian\nMagnus\nMatthias\nOm\nRick\nYusuf\nAnson\nBill\nBodhi\nBradyn\nEmir\nFavian\nFranky\nGeovanny\nJacobo\nJean\nJet\nJordy\nKainoa\nMessiah\nRico\nTriston\nZackery\nAdonis\nApollo\nArya\nCassius\nCedric\nDamion\nDarin\nDayton\nEdson\nEliezer\nEllis\nElvin\nEmery\nFederico\nGiovany\nGordon\nHeath\nImmanuel\nJamari\nJareth\nKamari\nLamar\nPaulo\nSiddharth\nSidney\nSterling\nThor\nTobin\nYash\nYovani\nAlek\nAurelio\nBenicio\nBrad\nBrennen\nDamarion\nDimitri\nDion\nHoward\nJadyn\nJaidyn\nJamal\nJavon\nJonny\nKale\nLandyn\nMarquis\nNoa\nPrince\nRigo\nRio\nStefan\nTom\nTyrone\nZakary\nAarush\nAchilles\nAddison\nAnsh\nAugustine\nBrooks\nColten\nDarey\nDarnell\nDereon\nDominique\nEan\nEliel\nEsai\nFisher\nIsacc\nJaedyn\nJaydan\nJeramiah\nJericho\nJosef\nJustus\nKalvin\nKoen\nKole\nLazaro\nMilan\nNeri\nNigel\nNikita\nObed\nPierre\nRaiden\nRashad\nShiloh\nTalan\nThiago\nUziel\nVance\nVarun\nYahel\nYosef\nYosgart\nAnish\nArmen\nAthan\nBodie\nCeasar\nChristofer\nCristiano\nDeacon\nDillan\nHarold\nIzayah\nJeff\nKadin\nKael\nKen\nKolton\nLevon\nLino\nLuisangel\nMicheal\nNahum\nRandall\nStephan\nSullivan\nTrevon\nAbdullah\nAdriano\nAlexsander\nAmani\nAyush\nBishop\nClyde\nDarion\nDeon\nDonavan\nIsael\nJai\nJaron\nJaylon\nJordyn\nJoseangel\nKarson\nKellan\nKent\nKeoni\nKyan\nKymani\nLeobardo\nLyric\nMaksim\nMikel\nNathanial\nParsa\nPatricio\nReuben\nReyes\nSunny\nTerrell\nTyree\nAidyn\nAjay\nAkshay\nBilal\nBlaine\nBroden\nCain\nCale\nCamren\nChandler\nEnoch\nErnie\nFermin\nGaven\nGlenn\nGregorio\nIshan\nJabari\nJedidiah\nJermaine\nJordin\nJuanjose\nKarter\nKavin\nKennedy\nKevyn\nKonner\nLamont\nLucien\nMauro\nMichaelangelo\nMikah\nNaythan\nOcean\nOsiel\nPresley\nQuinten\nReyli\nRory\nRoss\nSaid\nShaan\nSimeon\nSione\nTeagan\nTrace\nUlices\nValente\nYuvraj\nZaire\nZavier\nZayne\nAdalberto\nAkash\nAzael\nBenson\nBlaise\nBroderick\nBronson\nCordell\nDavon\nDejon\nEarl\nGauge\nGianluca\nJamar\nJase\nJoziah\nKaleo\nKeagan\nKylan\nLachlan\nLloyd\nManny\nMassimo\nMattias\nOren\nOsman\nPete\nReilly\nRhett\nRobin\nShreyas\nSincere\nStuart\nVedant\nVincenzo\nWilmer\nYeshua\nAaryan\nAkhil\nAnsel\nArcher\nAusten\nBayron\nBeck\nBeckham\nBentley\nBladimir\nClaudio\nClemente\nColeman\nCraig\nDemian\nDomenic\nDomingo\nDonnie\nEliot\nEly\nFletcher\nFred\nGeovany\nHank\nHarlan\nHarper\nHarvey\nHiram\nIsreal\nJamil\nJeremias\nJohnnie\nKalani\nKeon\nKorey\nLegend\nLeroy\nLinus\nMaddux\nMarko\nMarques\nMatix\nNarek\nNate\nNicolai\nRami\nRian\nRichie\nRoderick\nRowen\nRyden\nTim\nTodd\nTrystan\nVihaan\nYaseen\nYousef\nYusef\nAbran\nAram\nAres\nArlo\nArnulfo\nArtemio\nAshwin\nBarry\nCaesar\nClinton\nColt\nDaylen\nDraven\nEdan\nErvin\nEwan\nFinnian\nFlavio\nGadiel\nGannon\nGeoffrey\nGuy\nHerman\nHoracio\nIshmael\nJafet\nJancarlo\nJaziel\nJordi\nJosemanuel\nKamden\nKarim\nKasey\nKhalid\nKolby\nKurt\nLeif\nLeopoldo\nMemphis\nMerrick\nMihir\nMonte\nMustafa\nNixon\nOskar\nOtto\nRemington\nRenzo\nRoan\nRonny\nRoyal\nSami\nSasha\nSavion\nSlade\nStone\nTariq\nThaddeus\nVidal\nWalker\nWilber\nAamir\nAksel\nAman\nAmar\nAndrey\nAnirudh\nAren\nBarron\nBrandyn\nCarmine\nCason\nCiaran\nCoby\nDaron\nDeagan\nDerik\nDev\nDonte\nEitan\nFausto\nFlynn\nGarret\nGenesis\nGil\nIlan\nJad\nJaven\nJerimiah\nJordon\nJullian\nKamran\nKasen\nKiran\nKonnor\nKris\nLaith\nLangston\nLars\nLenny\nMikael\nMontgomery\nMoshe\nNeo\nOri\nOtis\nReagan\nRickey\nRohit\nRommel\nSandro\nShayne\nTristian\nVernon\nYoel\nYonatan\nAdiel\nAeden\nAleksander\nAlton\nArden\nArmand\nArnold\nAtreyu\nBernard\nBlaze\nBo\nBraedon\nBrogan\nCarmelo\nChaz\nCian\nCorban\nCristhian\nDamari\nDenver\nDon\nEamon\nEdgard\nEdmund\nEloy\nFaris\nGerard\nGreg\nHaiden\nHarman\nHaziel\nHugh\nJaren\nJc\nJensen\nJohny\nJustyn\nKamren\nKamron\nKannon\nKarl\nKendall\nKhai\nKingsley\nKoda\nKohen\nKorbin\nKristofer\nLandin\nLayne\nLester\nLisandro\nLuiz\nMaddix\nMarcoantonio\nMarius\nMatt\nNeel\nOsiris\nPavel\nPerry\nRahul\nReymundo\nRogan\nRoshan\nRowdy\nRyley\nSai\nTadeo\nTrinidad\nAadi\nAayush\nAbelardo\nAbimael\nAnand\nAndree\nArian\nArnoldo\nAsael\nAugustus\nAzriel\nCael\nClarence\nDany\nDariel\nDarrin\nDashawn\nDeion\nDemetri\nDesean\nEdgardo\nEsau\nEshaan\nEshan\nFabio\nFox\nGeovani\nGus\nHansel\nHendrix\nIsmail\nIzak\nIziah\nJarrett\nJaykob\nJelani\nJim\nJoell\nJosemaria\nKalen\nKason\nKayvon\nKelly\nKeshawn\nKory\nMarquez\nMarquise\nMohamad\nMorris\nNomar\nNorberto\nRayyan\nReggie\nRome\nRosendo\nSabastian\nSameer\nShea\nSohan\nSylas\nTeddy\nTejas\nTiago\nTigran\nTreyvon\nTruman\nTurner\nWestin\nWestley\nWillem\nYonathan\nZev\nAbisai\nAldair\nAmeer\nAndrez\nAntoni\nAyan\nBoris\nBradly\nBrice\nCharley\nClive\nCorde\nCristo\nCuauhtemoc\nDale\nDandre\nDanilo\nDanniel\nDaren\nDash\nDeron\nDuke\nDyllan\nEason\nEdwardo\nEliazar\nElio\nElyjah\nEmile\nEphraim\nEriberto\nEros\nEsdras\nForrest\nFredrick\nGavino\nGene\nHamzah\nHasan\nHayk\nHeber\nHerbert\nJaciel\nJade\nJairus\nJamarion\nJaret\nJasiel\nJayshawn\nJayvon\nJess\nJun\nKabir\nKayleb\nKhang\nKurtis\nLawson\nLucius\nMaceo\nMarciano\nMasen\nMateus\nMayson\nMikhail\nMyron\nNathon\nNayan\nNoam\nOmarion\nOziel\nPhineas\nPrinceton\nRaymon\nRylee\nSacha\nSalomon\nShaurya\nShay\nSky\nSkye\nSlater\nSoham\nTalen\nTayden\nTeo\nUlisses\nUzziel\nWilbert\nZen\nAaditya\nAdair\nAjani\nAmin\nAndru\nAnuj\nArath\nAris\nArvin\nAtharva\nBrooklyn\nCaelan\nClifford\nClint\nConstantine\nCurren\nDallin\nDarrius\nDave\nDemarcus\nDemari\nDenny\nDonavin\nDylon\nEdmond\nErickson\nGabino\nGamaliel\nHenri\nIra\nJacky\nJacques\nJaylan\nJeancarlo\nJerson\nJimmie\nJoao\nJosias\nJuelz\nKarlos\nKenyon\nKenzo\nKhaled\nKyren\nLenin\nLev\nLucky\nMarshawn\nMaximino\nMaxton\nMicaiah\nNicholai\nNikola\nOmer\nRaghav\nRayden\nRenato\nRishabh\nRony\nRyu\nSachin\nSammuel\nSheldon\nShiv\nSid\nSilvestre\nTai\nTed\nTeegan\nTevita\nThatcher\nTosh\nTrevin\nUbaldo\nViktor\nVinh\nWiley\nYobani\nZuriel\nAbdul\nAkira\nAlastair\nAnakin\nAnay\nAngus\nAntwan\nArlen\nBaltazar\nBarack\nBoaz\nBrandan\nBranson\nBraylen\nBrighton\nCampbell\nCase\nCashton\nCecil\nDamani\nDaven\nDaxton\nDemarion\nDemetrio\nDestin\nDidier\nDino\nDresden\nEdmundo\nEligh\nEnoc\nFares\nFord\nForest\nGrayden\nHamilton\nHans\nHarris\nHilario\nIain\nIann\nIdris\nImanol\nJacen\nJackie\nJaedon\nJarell\nJayven\nJoshuah\nJuandiego\nKahlil\nKarthik\nKayne\nKayson\nKenan\nKhamari\nKoby\nKye\nLinden\nMaison\nMalaki\nMarcell\nMarkanthony\nMickey\nNicco\nNorman\nOzzy\nRamsey\nRayhan\nRemi\nRishab\nSamarth\nSanjay\nSarkis\nShant\nShayaan\nSilvano\nSrikar\nTanish\nTaven\nTrenten\nTye\nWes\nWest\nXavi\nYahya\nYasir\nYoshua\nYoussef\nZackariah\nZahir\nZaiden\nZayn\nZeke\nZephyr\nZeus\nAbdulrahman\nAbhiram\nAbrahan\nAdarsh\nAdin\nAkiva\nAlexandros\nAmado\nAmador\nAmos\nAndrik\nAndruw\nAnjel\nArav\nAries\nArtem\nAston\nAxl\nAyman\nAzariah\nBenedict\nBode\nBowie\nBradlee\nBraedyn\nBrenton\nCalum\nCharly\nChayce\nChevy\nColter\nCyril\nDanial\nDavien\nDayne\nDeanthony\nDenim\nDenis\nDeric\nDiesel\nDomenick\nDontae\nDrayden\nDru\nEdvin\nEhren\nEliud\nEmmet\nEthaniel\nEthyn\nEvander\nEven\nFenix\nFiliberto\nFrancesco\nFransisco\nFredi\nGarett\nGarrison\nGautam\nGavan\nHaven\nHonor\nIlias\nIman\nJaelen\nJaelyn\nJahari\nJahsiah\nJaidon\nJamarcus\nJaxen\nJayvion\nJeffry\nJehu\nJessiah\nJhonathan\nJody\nJoesiah\nJohnson\nJoseantonio\nKaelan\nKain\nKamil\nKanoa\nKeshav\nLinkin\nLonnie\nMack\nMahmoud\nMakhi\nMarion\nMaxson\nMick\nMiller\nMinh\nMitchel\nMykel\nNahom\nNeftali\nOjas\nParis\nRanveer\nReef\nRehan\nRei\nRider\nRoni\nRudolph\nRylen\nSaif\nSeven\nShae\nShai\nShayan\nStewart\nSutton\nSyed\nSylvester\nSyrus\nTarun\nTerence\nTiernan\nTravon\nTrever\nVahe\nVishnu\nVito\nVladislav\nWilliams\nYehuda\nYerik\nYosgar\nZacharia\nZahid\nZamir\nZayd\nZeth\nAayan\nAbiel\nAdi\nAleksandr\nAlekzander\nAlen\nAlessio\nAlexavier\nAlexi\nAmogh\nAndersen\nAntwone\nAramis\nArjan\nArsh\nAven\nAyub\nAziel\nBowen\nBrendyn\nBret\nBryon\nCairo\nCalder\nCameran\nCamryn\nCanon\nCarmello\nCary\nCasper\nCavan\nCelso\nChe\nChristiano\nClay\nCoen\nConan\nCornelius\nCriss\nCullen\nDanthony\nDarrion\nDaveon\nDaylan\nDegan\nDemitri\nDeniz\nDeshaun\nDevlin\nDonnell\nDuane\nEian\nEithan\nEliaz\nElie\nEmmitt\nEsequiel\nEugenio\nFarhan\nFaustino\nFavio\nFeliciano\nFloyd\nGeraldo\nGiancarlos\nGianmarco\nGibson\nGiorgio\nGlen\nHakop\nHaris\nHarlem\nHomero\nHumza\nIsa\nIsak\nIzrael\nJaedin\nJahaziel\nJarel\nJarren\nJeronimo\nJessejames\nJhonatan\nJiovani\nJiovanni\nJorgeluis\nJosmar\nJossue\nJuaquin\nJules\nJusten\nKaedon\nKanan\nKanon\nKaran\nKarol\nKeller\nKelton\nKenton\nKeyon\nKhoa\nKristoffer\nKylen\nKyson\nLauro\nLazarus\nLeighton\nLex\nLoki\nLuigi\nMac\nMakoa\nMalachai\nMalek\nManraj\nMarek\nMateen\nMckay\nMenachem\nNaim\nNatanael\nNeal\nOzzie\nPaulino\nPayden\nRaheem\nRaziel\nRen\nReymond\nRiku\nRobbie\nRonen\nSaeed\nSalem\nSalman\nSaxon\nSelvin\nServando\nShamar\nSubhan\nTeodoro\nThai\nTorin\nTracy\nTripp\nTyrell\nTytus\nUsman\nVaibhav\nValentine\nVentura\nViliami\nWolfgang\nYohan\nYovanni\nZach\nZade\nZakariya\nAadan\nAaren\nAb\nAbbas\nAbdirahman\nAbhishek\nAdnan\nAdonai\nAdrean\nAeron\nAgastya\nAleksey\nAlesandro\nAlexys\nAmadeus\nAndrick\nAnselmo\nAric\nArion\nArmin\nArron\nAshtyn\nAslan\nAtlas\nAtom\nAustyn\nBaxter\nBear\nBoden\nBosco\nBrandt\nBrant\nBrennon\nBriant\nCaeden\nCameren\nCarsten\nCelestino\nCezar\nChamp\nCharlton\nChasen\nChauncey\nChayse\nChester\nClement\nCormac\nCy\nDajuan\nDakari\nDakoda\nDamarcus\nDamarea\nDameon\nDarrien\nDarsh\nDavit\nDaymien\nDemario\nDenilson\nDeonte\nDmitriy\nDonavon\nDontay\nDwight\nEben\nEber\nEdrick\nEduard\nElan\nElihu\nElton\nEmari\nEmory\nEnder\nEnmanuel\nErin\nEsvin\nEusebio\nEverest\nEvin\nFinlay\nFlorencio\nGalileo\nGarin\nGermaine\nGibran\nGiovannie\nGiuseppe\nGor\nGraden\nGrey\nGriffen\nGurshan\nHarutyun\nHenrry\nHouston\nHyrum\nImran\nIndy\nIsayah\nIssa\nIssak\nItai\nIzeyah\nIzzac\nJadan\nJadiel\nJaison\nJakub\nJameer\nJavan\nJaxsen\nJayceon\nJaydyn\nJaysen\nJed\nJediah\nJeovanny\nJerrell\nJessi\nJezreel\nJob\nJohncarlos\nJorel\nJuanmanuel\nJuventino\nKaio\nKalob\nKalub\nKamryn\nKarlo\nKaro\nKarsten\nKaydin\nKean\nKeion\nKerry\nKhristopher\nKirin\nKirk\nKobi\nKyree\nLadainian\nLandan\nLaron\nLebron\nLennox\nLudwin\nLuther\nLyrik\nMaddex\nMakani\nManolo\nMarcellus\nMarkel\nMarkos\nMarlo\nMathieu\nMaxime\nMaximilliano\nMicahel\nMichel\nMichelangelo\nNareg\nNaveen\nNevan\nNicky\nNikolaos\nNikoli\nNile\nNoble\nNova\nOmkar\nQuinlan\nRehaan\nRenee\nRithvik\nRoque\nRushil\nSahib\nSaleh\nSalvatore\nSevastian\nShannon\nShia\nShivam\nShiven\nSiddhartha\nSohum\nStavros\nStefano\nStephon\nStryder\nTahj\nTarek\nTayshaun\nTej\nTlaloc\nTrajan\nTrayvon\nTrevion\nTuan\nTyce\nTylor\nTyrese\nUmar\nUnknown\nValen\nVeer\nViggo\nVincente\nVishal\nVivek\nWallace\nWilfredo\nXavior\nYuri\nZacharias\nZakaria\nZaki\nZephaniah\nAdael\nAdonay\nAdryan\nAdvaith\nAj\nAlexsandro\nAlfonzo\nAlik\nAlon\nAlphonse\nAlston\nAmadeo\nAmeen\nAmiri\nAnas\nAnden\nAnder\nAneesh\nAngad\nAnwar\nArchie\nArie\nArin\nArtin\nAsante\nAsh\nAshtin\nAtharv\nAtzin\nAubrey\nAvin\nAvinash\nBaldemar\nBaylor\nBenjamen\nBennie\nBladen\nBlaize\nBrallan\nBrandy\nBrayson\nBrenner\nBuck\nCaine\nCallan\nCanyon\nCardell\nCedrick\nChazz\nCillian\nConstantino\nCorbyn\nCrispin\nDaimian\nDakarai\nDarell\nDarrel\nDarrick\nDavyn\nDaylon\nDelvin\nDemarco\nDemitrius\nDerian\nDerion\nDerreon\nDeshon\nDevonte\nDewayne\nDezmond\nDiogo\nDomanic\nDomenico\nDonavyn\nDonny\nDraco\nDublin\nEdric\nElija\nEliott\nElyas\nEzrah\nFabrizio\nFadi\nFortino\nGalen\nGarrick\nGaspar\nGaurav\nGeno\nGeronimo\nGianfranco\nGionni\nGraydon\nGraysen\nGryphon\nHagen\nHaik\nHanson\nHaroon\nHarout\nHarshith\nHelio\nHendrick\nHenrik\nHeron\nHosea\nHuriel\nHussain\nHuy\nIbraheem\nIgnatius\nIndiana\nIsauro\nIssiah\nIzac\nIzaya\nIzeah\nJaasiel\nJacobi\nJadin\nJaelin\nJailen\nJaiveer\nJakari\nJalil\nJamaal\nJamir\nJarett\nJasen\nJaydee\nJaymin\nJayro\nJeovanni\nJeovany\nJeremi\nJeriah\nJeromy\nJevon\nJiovanny\nJjesus\nJoab\nJohnathen\nJosaiah\nJosealberto\nJosedejesus\nJosemiguel\nJourney\nJovin\nJovon\nJuliano\nJulyan\nJusto\nKadyn\nKaedyn\nKaelen\nKailen\nKainalu\nKaine\nKairo\nKaito\nKamal\nKawika\nKelan\nKenta\nKhris\nKhristian\nKhriz\nKieren\nKiernan\nKilian\nKimo\nKorben\nKordell\nKrishiv\nKrishna\nKrystian\nKunal\nKwame\nKyrillos\nLaird\nLake\nLashawn\nLaszlo\nLaurence\nLedger\nLeeland\nLeopold\nLestat\nLevin\nLogen\nMadix\nMajor\nMakaio\nMalakhi\nManav\nMargarito\nMarino\nMarkell\nMartel\nMasyn\nMatai\nMaverik\nMaxi\nMaxon\nMekhai\nMigel\nMikal\nMikey\nMizael\nMuhammed\nMusa\nMynor\nNicolo\nNihal\nNils\nNino\nPaden\nPalmer\nParth\nPascual\nPasha\nRainier\nRashawn\nReily\nRitvik\nRobinson\nRodrick\nRomario\nRonak\nRueben\nRufino\nRuvim\nRyo\nSaharsh\nSaketh\nSamy\nSerafin\nShakir\nShalom\nShepard\nSherman\nSilvio\nSir\nSloan\nSol\nStevan\nSuhas\nSydney\nSyris\nTaha\nTahir\nTakumi\nTamir\nTavian\nTavin\nTayven\nTayvion\nTegan\nTheron\nTiger\nTimofey\nTomer\nToribio\nTremaine\nTri\nTrigo\nTRUE\nTysen\nVed\nVikram\nVinson\nVyom\nWaleed\nWalid\nWilly\nWolf\nXavion\nYamil\nYamir\nYanixan\nYasin\nYordi\nYoseph\nZabdiel\nZaden\nZyaire\nAadit\nAakash\nAarya\nAbdias\nAbdulahi\nAbdurrahman\nAdithya\nAedyn\nAizik\nAkai\nAlain\nAlcides\nAleczander\nAlp\nAmaan\nAmaru\nAmaury\nAmire\nAmit\nAmon\nAn\nAndon\nAnival\nAntione\nAreeb\nArgenis\nArik\nArsen\nArshdeep\nArtur\nArun\nAsaiah\nAshish\nAsiel\nAuden\nAundre\nAyrton\nAzaiah\nBaker\nBenyamin\nBhargav\nBjorn\nBlayne\nBrayton\nBreyden\nBryden\nCache\nCage\nCaio\nCal\nCamil\nCanaan\nCandelario\nCaptain\nCarey\nCarlitos\nCarlton\nCarnell\nCarsyn\nCarver\nCasen\nCaspian\nCayleb\nCecilio\nChaise\nCharbel\nChrist\nCipriano\nCisco\nClifton\nColeton\nColtrane\nConrado\nCordae\nCornelio\nCortez\nCosme\nCreighton\nCrew\nCris\nCru\nDaejon\nDael\nDaemon\nDaijon\nDamyan\nDani\nDanyel\nDarby\nDarious\nDaylin\nDeaven\nDedrick\nDeklan\nDelano\nDeondre\nDesi\nDevion\nDiangelo\nDionicio\nDmitri\nDomenik\nDominyk\nDonato\nDrayton\nDutch\nEberardo\nEdel\nEdilberto\nEesa\nEithen\nElder\nEldon\nEliceo\nElijiah\nEliu\nElkin\nEllison\nEnrico\nErich\nEstefano\nEthanjames\nEtienne\nExavier\nFaisal\nFaraz\nFinnley\nFynn\nGaige\nGareth\nGarren\nGarry\nGreysen\nGurjot\nHabib\nHaden\nHadi\nHakeem\nHalen\nHari\nHarjot\nHarshil\nHasani\nHaydn\nHayes\nHomer\nHuxley\nIke\nIlyas\nIrwin\nIsaih\nIzack\nIzick\nJaaziel\nJacinto\nJahan\nJaheim\nJahiem\nJaion\nJakobi\nJalani\nJaleel\nJamel\nJarred\nJarrell\nJarrod\nJasean\nJatin\nJavian\nJavion\nJaylyn\nJaymes\nJayon\nJayse\nJaziah\nJenson\nJeovani\nJerald\nJeremyah\nJerico\nJermain\nJeron\nJhoan\nJhonny\nJhovanny\nJian\nJin\nJohnatan\nJomar\nJometh\nJonathen\nJory\nJoshuan\nJosiyah\nJr\nJuandavid\nJuanluis\nKais\nKaison\nKamrin\nKanye\nKartik\nKasra\nKavan\nKavon\nKaya\nKeandre\nKeawe\nKeelan\nKegan\nKeita\nKennan\nKeola\nKevan\nKeyan\nKiefer\nKimani\nKiyan\nKiyoshi\nKoji\nKonrad\nKonstantin\nKordae\nKota\nKrithik\nKush\nLamarr\nLathan\nLavelle\nLazlo\nLian\nLochlan\nLoghan\nLong\nLowell\nLucciano\nLuisfernando\nLyndon\nLysander\nMahdi\nMahir\nMakana\nManveer\nMarshaun\nMassimiliano\nMateusz\nMathis\nMavrick\nMaximilien\nMayan\nMaynor\nMehki\nMher\nMickael\nMikkel\nMontana\nMonty\nMurphy\nNabil\nNadav\nNam\nNaren\nNavid\nNeeko\nNeeraj\nNeev\nNevin\nNewton\nNicholaus\nNickolaus\nNiels\nNithin\nNolen\nObadiah\nOciel\nOctavian\nOden\nOlaf\nOlivier\nOmri\nOryan\nOseas\nOtoniel\nOz\nPhilippe\nPorfirio\nPrestyn\nRaffi\nRahim\nRamces\nRamin\nRamy\nRanvir\nRashaad\nRolan\nRomen\nRon\nRonit\nRooney\nRoyale\nRui\nRustin\nRyen\nRyken\nSabian\nSalim\nSamay\nSascha\nSathvik\nSaulo\nSelim\nSevak\nShan\nSharif\nShayden\nShian\nSho\nShuban\nSiddarth\nSiddhant\nSidharth\nSilverio\nSinai\nSinjin\nSiris\nSneijder\nSota\nSteele\nSurya\nSven\nTal\nTanav\nTanush\nTatum\nTayvon\nTenoch\nThelonious\nThien\nTimmothy\nTimmy\nTito\nTrayveon\nTre\nTremayne\nTylan\nTyren\nTyshawn\nUday\nVardan\nVictoriano\nViet\nVittorio\nVivaan\nVlad\nWendell\nWess\nWilder\nWiliam\nWillian\nXavian\nYaakov\nYadiel\nYannis\nYaqub\nYared\nYazid\nYobany\nYoshi\nYovanny\nYuki\nYuren\nYuval\nZac\nZamar\nZavion\nZayan\nZaylen\nZayvion\nZeeshan\nZyion\nZyon\nDaniel\nAnthony\nAngel\nJacob\nAlexander\nEthan\nDavid\nAndrew\nMatthew\nJoshua\nChristopher\nMichael\nNathan\nJayden\nJose\nAdrian\nJoseph\nJonathan\nNoah\nIsaac\nAiden\nChristian\nJulian\nDiego\nBrandon\nGabriel\nKevin\nRyan\nJesus\nJuan\nDylan\nAaron\nLuis\nBenjamin\nIsaiah\nWilliam\nSamuel\nElijah\nLogan\nCarlos\nJames\nSebastian\nNicholas\nEvan\nMiguel\nJustin\nJason\nBryan\nJohn\nTyler\nJordan\nDamian\nLucas\nEduardo\nGavin\nCaleb\nRobert\nAlejandro\nLuke\nJack\nIvan\nSantiago\nMason\nLiam\nJackson\nAdam\nAlex\nBrian\nVictor\nIan\nXavier\nZachary\nOscar\nJesse\nEric\nDominic\nJeremiah\nNathaniel\nAidan\nJorge\nConnor\nAndres\nGiovanni\nLeonardo\nHenry\nAlan\nAustin\nFernando\nJosiah\nWyatt\nOmar\nSteven\nThomas\nRicardo\nLandon\nAntonio\nOwen\nFrancisco\nJoel\nCesar\nEmmanuel\nVincent\nChase\nManuel\nRichard\nSean\nErick\nCharles\nTristan\nJaden\nCristian\nElias\nEdgar\nOliver\nAyden\nNicolas\nAbraham\nKyle\nHector\nMax\nMario\nAlexis\nEmiliano\nSergio\nCameron\nBrayden\nMateo\nJosue\nEdward\nJavier\nHunter\nLevi\nBrody\nEli\nCarter\nEdwin\nDevin\nAndy\nDerek\nRyder\nBlake\nCole\nRuben\nJake\nMicah\nIsrael\nJeremy\nRoberto\nMarcus\nKai\nTimothy\nErik\nRafael\nMarco\nMartin\nRiley\nJonah\nFabian\nPedro\nRaymond\nJoaquin\nCody\nMarcos\nMark\nRoman\nArmando\nGeorge\nJohnny\nNolan\nEzekiel\nAdan\nCaden\nJared\nKaden\nCooper\nDamien\nKenneth\nMaxwell\nKaleb\nSeth\nEmilio\nCarson\nTravis\nPatrick\nBryce\nGerardo\nParker\nColin\nPreston\nHayden\nEnrique\nRaul\nMoises\nEsteban\nShane\nColton\nAndre\nJaime\nMiles\nPaul\nLeo\nAxel\nJulio\nGael\nDonovan\nSalvador\nTrevor\nPablo\nPeter\nHudson\nSaul\nAlberto\nGustavo\nArturo\nAshton\nAbel\nTroy\nDanny\nJohnathan\nEmanuel\nIsmael\nJaiden\nKayden\nJaxon\nMaximiliano\nGrant\nAngelo\nErnesto\nUriel\nHugo\nJeffrey\nAlfredo\nBradley\nDominick\nMaximus\nAsher\nRodrigo\nWesley\nBrayan\nFrank\nLuca\nMauricio\nFelix\nCruz\nBrady\nEzra\nAlbert\nIssac\nCash\nDean\nJude\nChris\nCollin\nKingston\nLincoln\nTanner\nAllen\nCayden\nRandy\nRamon\nCharlie\nGuillermo\nLorenzo\nAden\nBryant\nGage\nYahir\nJimmy\nAaden\nMalachi\nTheodore\nLukas\nKaiden\nCalvin\nNoe\nJace\nDante\nEddie\nMaddox\nShawn\nStephen\nConner\nIsaias\nMathew\nUlises\nJaylen\nArthur\nGregory\nLeonel\nDarren\nRomeo\nSteve\nTony\nSpencer\nVicente\nDrake\nGrayson\nBraden\nJerry\nMatteo\nSimon\nIzaiah\nZane\nAnderson\nBrendan\nJohan\nOrlando\nCristopher\nRylan\nQuinn\nRocco\nSawyer\nByron\nXander\nGriffin\nJasper\nJulius\nAlfonso\nOsvaldo\nRicky\nTyson\nAllan\nJayson\nAlec\nAmir\nJaxson\nNoel\nSilas\nRene\nDrew\nJakob\nJay\nLanden\nMarvin\nTy\nAlonso\nGiovani\nLouis\nRudy\nFelipe\nSkyler\nAldo\nElliot\nEnzo\nEzequiel\nGarrett\nGiovanny\nFinn\nAlvin\nJoey\nMaximilian\nMoses\nDevon\nPeyton\nPhillip\nRogelio\nZion\nAlessandro\nChance\nDeclan\nRowan\nDesmond\nEverett\nAlonzo\nJessie\nMyles\nAvery\nBryson\nLeon\nValentino\nDennis\nDillon\nGilberto\nJudah\nTrenton\nAlvaro\nNico\nDarius\nElliott\nRoger\nCyrus\nJairo\nJameson\nPhoenix\nTomas\nMilo\nRodolfo\nNikolas\nCade\nHarrison\nWeston\nCasey\nKian\nLarry\nRonald\nDerrick\nKeegan\nRamiro\nDustin\nGiancarlo\nGraham\nRohan\nAli\nBruce\nGilbert\nJoe\nScott\nEfrain\nJalen\nMisael\nDallas\nNickolas\nOrion\nBranden\nGianni\nHolden\nRoy\nTrent\nYandel\nAdriel\nAgustin\nBrenden\nCaiden\nDane\nRigoberto\nFreddy\nLawrence\nTaylor\nWalter\nFrankie\nIgnacio\nKristopher\nMalik\nNehemiah\nGrady\nKyler\nKenny\nAri\nBeckett\nBrennan\nJulien\nSantino\nUriah\nValentin\nAugust\nEmmett\nGreyson\nJax\nMitchell\nRonan\nArjun\nKobe\nMaximo\nZackary\nColby\nDonald\nKeith\nNeil\nJadon\nMarc\nNathanael\nNelson\nJett\nMaverick\nRolando\nTommy\nZander\nBennett\nCamden\nClayton\nGary\nMiguelangel\nSolomon\nTristen\nMalakai\nCurtis\nHumberto\nMorgan\nSam\nAmari\nEstevan\nFranco\nIsai\nJayce\nJonas\nJunior\nOctavio\nTobias\nDorian\nKieran\nPhilip\nRussell\nZachariah\nAdrien\nAriel\nEmerson\nIrvin\nLuciano\nRiver\nTitus\nDario\nJovanni\nLance\nQuentin\nCorbin\nKameron\nKristian\nMatias\nAlfred\nPierce\nEaston\nJovanny\nLeland\nOswaldo\nSonny\nXzavier\nAditya\nAdolfo\nAlijah\nBeau\nDominik\nJefferson\nMohammad\nAce\nArman\nBrett\nCristobal\nJaeden\nMarlon\nAtticus\nBraeden\nBraydon\nKelvin\nKing\nMarcelo\nMarkus\nBrock\nDavian\nDavis\nDexter\nDilan\nElvis\nJaydon\nReid\nRey\nUrijah\nGerman\nIshaan\nJustice\nRay\nBraylon\nBruno\nCarlo\nEfren\nFranklin\nJovani\nKane\nNathen\nWarren\nAron\nLeandro\nLondon\nMekhi\nNiko\nSantos\nTrey\nMuhammad\nRhys\nYael\nAryan\nCamilo\nMakai\nQuincy\nRamses\nRyker\nTucker\nUlysses\nAbram\nBraxton\nCohen\nGonzalo\nLucian\nMarshall\nMike\nNikolai\nPranav\nReed\nWilson\nArmaan\nBen\nBernardo\nChace\nCorey\nDouglas\nIker\nIsiah\nJuancarlos\nKade\nKeven\nKody\nMadden\nMaxim\nTalon\nYair\nDamon\nDavin\nDeven\nFinnegan\nGeovanni\nKenji\nKhalil\nNestor\nAarav\nAhmad\nConor\nDerick\nJair\nKellen\nKrish\nRaphael\nReese\nDakota\nEugene\nFrederick\nMarley\nMathias\nMaurice\nArnav\nDeegan\nHarley\nIzayah\nLouie\nMatthias\nVan\nAlexandro\nChad\nDarwin\nFidel\nJovany\nLuka\nMalcolm\nReynaldo\nRonnie\nBrodie\nColt\nEthen\nGunner\nMelvin\nShaun\nSoren\nWill\nArcher\nAydin\nBenicio\nDereck\nEddy\nGeovanny\nHarry\nJerome\nJonathon\nMariano\nRex\nTerry\nZayden\nDalton\nGunnar\nIzaac\nJaycob\nKeanu\nLeonard\nPaxton\nRaiden\nTerrence\nAyaan\nCristofer\nElmer\nFredy\nJeffery\nLeonidas\nReece\nRonin\nRyland\nSkylar\nWaylon\nAlexzander\nAydan\nBenny\nBrent\nDarian\nDillan\nElian\nIbrahim\nIsidro\nKeaton\nAnson\nBilly\nJacoby\nJasiah\nJoseluis\nJovan\nMaximillian\nWinston\nZaid\nAnish\nArmani\nBraulio\nConrad\nDashiell\nDawson\nEden\nIsaak\nJeramiah\nMohamed\nMohammed\nNikhil\nSage\nStanley\nToby\nAedan\nBobby\nClark\nDangelo\nEnoch\nHassan\nJaylin\nJohann\nKellan\nMilan\nNick\nPayton\nRayan\nRonaldo\nYusuf\nZain\nDeandre\nJamie\nKaeden\nLewis\nMarcello\nPorter\nRemy\nTheo\nBrendon\nCory\nDavion\nEliseo\nEllis\nGerald\nGideon\nKoa\nLionel\nRaymundo\nAbdiel\nAsa\nBodie\nCarl\nDarien\nDenzel\nFrancis\nGuadalupe\nJeshua\nJoan\nNery\nThiago\nZechariah\nAhmed\nBrycen\nCannon\nDemetrius\nGregorio\nJamari\nJedidiah\nKen\nKendrick\nLucca\nMicheal\nNeel\nOdin\nRoyce\nSemaj\nBodhi\nCallum\nErnest\nGian\nHamza\nJoziah\nKeoni\nNasir\nOsmar\nRoland\nVaughn\nZackery\nAbner\nAnton\nBenson\nGiovany\nIshan\nMarcel\nRodney\nSammy\nSamson\nTerrell\nVince\nVladimir\nArnold\nAthan\nAyan\nBaron\nCristiano\nDarey\nDeangelo\nDeshawn\nEver\nGeovany\nIzaak\nJon\nKamari\nManny\nMilton\nPaolo\nPresley\nRishi\nTaj\nVihaan\nWade\nWillie\nAntony\nBarrett\nBayron\nBroderick\nCedric\nDevan\nHeriberto\nIrving\nJadyn\nJean\nKnox\nLee\nNixon\nOsbaldo\nRocky\nSeamus\nSiddharth\nTristin\nWalker\nYousef\nZack\nAidyn\nAugustine\nAzael\nColten\nDax\nDuncan\nEan\nEder\nEdison\nErwin\nFavian\nJael\nJamison\nJase\nJohnathon\nJohnpaul\nJonatan\nJustus\nKale\nKash\nLandyn\nLane\nLennon\nMemphis\nRory\nSaid\nTate\nTrace\nTyrone\nUziel\nWayne\nZachery\nAlexsander\nAmare\nAyush\nBailey\nBenito\nBronson\nCassius\nDeacon\nElvin\nGauge\nGavyn\nJamal\nKalel\nKareem\nKole\nOtis\nPrince\nStefan\nVance\nAbdullah\nAlden\nAndreas\nArya\nDev\nDwayne\nEverardo\nFreddie\nJorden\nJosh\nKennedy\nReginald\nSahil\nTriston\nTrystan\nWestley\nXavi\nZaire\nAdonis\nAlek\nAntoine\nBentley\nBoston\nDraven\nElisha\nEmil\nFinley\nGino\nHeath\nImmanuel\nIsac\nJagger\nJericho\nJessy\nLazaro\nMarquis\nOm\nOmari\nRalph\nShaan\nTerrance\nYosef\nYosgart\nAarush\nAdair\nAjay\nArian\nBeckham\nBishop\nBraylen\nBrennen\nCamron\nCraig\nDeon\nDominique\nForrest\nGerson\nGordon\nHarold\nHarvey\nIsael\nJaydin\nJuanpablo\nKadin\nKainoa\nKiran\nLegend\nLucio\nMaxx\nMessiah\nNarek\nNeo\nNigel\nNikko\nPatricio\nRemington\nReuben\nTeagan\nUlisses\nYash\nYurem\nAvi\nBrooks\nCain\nDhruv\nDonte\nEamon\nEmery\nFisher\nHezekiah\nHoward\nJarrett\nJaydan\nJesiah\nKason\nKylan\nLeif\nLuc\nMaksim\nMatix\nMerrick\nMikah\nMustafa\nNash\nObed\nOtto\nQuinton\nRashad\nSamir\nSterling\nSylas\nVeer\nAbhinav\nAlexavier\nAnsh\nAurelio\nAusten\nBoden\nCale\nCarmelo\nDarnell\nEleazar\nFredrick\nGadiel\nIlan\nJaylon\nJeff\nJeremias\nJerimiah\nKalani\nKarim\nKarson\nKasen\nKillian\nLennox\nLuisangel\nMarcelino\nMarko\nMattias\nNeal\nPaulo\nRhett\nSami\nSky\nAayan\nAddison\nAkhil\nArlo\nBilal\nBrooklyn\nCael\nDaren\nDarryl\nDevyn\nDimitri\nDomenic\nEliezer\nEwan\nGenaro\nGeovani\nGuy\nJai\nJaidyn\nJamar\nJavon\nJet\nJullian\nNathanial\nNikita\nNoam\nRoyal\nShayan\nStephan\nSunny\nVincenzo\nZeus\nAchilles\nAeden\nAlistair\nAndrey\nArmen\nBo\nCamren\nDamion\nDayton\nDeagan\nDon\nEliot\nEly\nGibson\nHarlan\nHendrix\nImran\nIsacc\nKalvin\nKarl\nKarter\nKeenan\nKent\nKolton\nKyan\nPierre\nRemi\nRomel\nRyu\nShea\nTigran\nVidal\nAleksander\nAren\nAzariah\nBraiden\nBrice\nCairo\nChandler\nChaz\nDan\nDion\nDyllan\nHaiden\nHans\nHernan\nHugh\nKeon\nKoen\nKye\nKymani\nLachlan\nMack\nMagnus\nMarques\nMassimo\nPrinceton\nRichie\nRoderick\nRoshan\nSullivan\nUlices\nVarun\nYovani\nZephyr\nAnay\nAram\nBlaine\nCason\nCeasar\nChristofer\nEmir\nEros\nErvin\nFletcher\nFranky\nGaige\nGarret\nGianluca\nHank\nHarper\nJacobo\nJordy\nJoseangel\nJosemanuel\nJosias\nKael\nKahlil\nKaleo\nKelly\nLamar\nLenny\nLisandro\nMalaki\nNaythan\nOcean\nOskar\nRayden\nRick\nRico\nRigo\nRyden\nStone\nWilmer\nZuriel\nAdalberto\nAdriano\nAnakin\nAndrei\nAngus\nApollo\nAugustus\nCuauhtemoc\nCullen\nDarrell\nDavon\nDaylen\nDonavan\nEason\nElan\nEsau\nFederico\nGarrison\nJahir\nJareth\nJeancarlo\nJermaine\nJohannes\nJuandiego\nJuanmiguel\nKekoa\nKolby\nKonner\nKris\nKrishna\nLucien\nLyric\nMickey\nMikhail\nPete\nQuinten\nQuintin\nRayyan\nReyes\nRishabh\nSantana\nSebastien\nShiloh\nSimeon\nTai\nTiago\nTorin\nTristian\nTyree\nYerik\nAdin\nAlexandre\nAman\nAmani\nAnibal\nAnsel\nArden\nAres\nAris\nArvin\nBaltazar\nBeck\nBlaze\nBranson\nCarmine\nClaudio\nDaxton\nDenis\nDereon\nDidier\nEdwardo\nEligh\nEvin\nFrancesco\nGeoffrey\nGeronimo\nHoracio\nIke\nJan\nJaxen\nJensen\nJhonny\nJosef\nKabir\nKamden\nKasey\nKeagan\nKoby\nLev\nLino\nLloyd\nLucius\nMajor\nMakaio\nNahum\nNate\nOren\nOsman\nPavel\nRandall\nReef\nRobin\nSabastian\nSalvatore\nSarkis\nSasha\nShant\nShreyas\nTatum\nTeo\nTye\nTyrese\nZaiden\nZayd\nZephaniah\nAaryan\nAlton\nAugustin\nBoaz\nBrandyn\nCaeden\nClinton\nDanilo\nDarion\nDarrion\nDashawn\nDemian\nDezmond\nDiesel\nEmmet\nEphraim\nFabrizio\nHarman\nIlyas\nJabari\nJackie\nJahaziel\nJancarlo\nJavion\nJohnson\nKamran\nKayleb\nKayson\nKevyn\nLamont\nLandin\nLawson\nLinkin\nMaddix\nMarquise\nMauro\nMikel\nMoshe\nNaveen\nNeri\nRio\nRon\nRyley\nSalem\nSidney\nStephon\nSyed\nTaran\nTyce\nViktor\nWolfgang\nYoel\nYonathan\nZahir\nAdiel\nAkira\nAnirudh\nArjan\nArley\nAshwin\nBladimir\nBradyn\nBrando\nCalder\nCoby\nDale\nDamarion\nDanniel\nDariel\nDestin\nDuke\nEdmond\nEdmund\nEshaan\nFermin\nFinnian\nGannon\nHayes\nHayk\nHenri\nIain\nIzak\nJacky\nJacques\nJamir\nJaron\nJaxton\nJeevan\nJordin\nJuanjose\nJules\nKarsten\nKeshav\nKurtis\nLeighton\nLeopoldo\nLevon\nMaddux\nMakoa\nMalakhi\nMarcell\nMikael\nMonte\nMusa\nNatanael\nNoa\nOsiel\nOsiris\nParsa\nRaghav\nReagan\nRowen\nSione\nSoham\nTejas\nTobin\nTruman\nVedant\nVishnu\nVivaan\nWest\nWestin\nXavior\nYahel\nYasir\nYeshua\nYosgar\nZac\nZavier\nAdryan\nAdvaith\nAdyn\nAlain\nAmmar\nAmogh\nAndrez\nAngello\nAramis\nArnulfo\nAston\nBernard\nBlaise\nBode\nBrad\nBrenton\nBret\nBrighton\nBrogan\nBryden\nCaesar\nCiaran\nColeman\nCordell\nCristo\nDaven\nDemetri\nDeshaun\nDesi\nDonnie\nDwight\nEdan\nEdson\nElie\nEliel\nEloy\nElyas\nErin\nEsai\nFarhan\nFausto\nFloyd\nFred\nGenesis\nGiorgio\nHarris\nHasan\nHaven\nHerbert\nHiram\nIshmael\nJad\nJaedyn\nJafet\nJaleel\nJamil\nJarell\nJayven\nJayvon\nJessiah\nJiovanni\nJohnnie\nJordyn\nKain\nKairo\nKaito\nKendall\nKorey\nKurt\nKyden\nKyson\nLathan\nLaurence\nLayne\nLeobardo\nLinus\nMaddex\nMalek\nMalikai\nMarek\nMathieu\nMichaelangelo\nMinh\nNazareth\nNikola\nRayshawn\nRen\nRenzo\nRider\nRoan\nRoque\nRylee\nSameer\nShaurya\nShay\nSurya\nTalan\nTerence\nTevita\nValente\nVikram\nYahya\nZayne\nAaiden\nAayush\nAbelardo\nAbhay\nAmado\nAmeer\nAnders\nAndersen\nArav\nArmand\nBowen\nBroden\nCaelan\nCamryn\nCanaan\nCian\nCorban\nCortez\nCy\nDarrin\nDave\nDaylin\nDomenick\nEdgardo\nEthyn\nFabio\nFinnley\nFord\nForest\nFox\nGamaliel\nGerard\nGreg\nHarlem\nHouston\nJadiel\nJaykob\nJaylyn\nJayvion\nJaziel\nJonny\nJordi\nKadyn\nKaison\nKirk\nLars\nLester\nLizandro\nLucky\nLuiz\nMarcoantonio\nMihir\nNeftali\nNolen\nRayhan\nReggie\nRome\nRonit\nRony\nSahib\nSammuel\nSid\nSkye\nSlade\nStuart\nTaha\nThaddeus\nTim\nTom\nWilbert\nWilliams\nZakary\nAadi\nAbdul\nAbran\nAldair\nAlfonzo\nAndrik\nArath\nAsael\nAtom\nAven\nAzriel\nBoris\nBraedon\nBrixton\nCasen\nChanning\nCharly\nChayse\nClarence\nClemente\nClive\nDagoberto\nDallin\nDamari\nDaryl\nDenver\nDino\nDuane\nEitan\nEithan\nEthaniel\nExavier\nFabricio\nFilip\nFlynn\nGabino\nGaven\nGildardo\nGlenn\nGraysen\nGrey\nHaziel\nHeber\nHenrik\nIdris\nIsa\nIsreal\nJade\nJaedon\nJaheim\nJaidan\nJavan\nJaven\nJayon\nJaysen\nJencarlos\nJeronimo\nJosemaria\nJowell\nJuaquin\nJuelz\nKaan\nKalen\nKannon\nKaran\nKavin\nKeane\nKhai\nKhalid\nKhristian\nKingsley\nKollin\nKonnor\nKory\nLeeland\nLeroy\nLyle\nMadhav\nMakhai\nMakhi\nManolo\nMasen\nMikey\nNevin\nNiklas\nNorberto\nNorman\nOmri\nOziel\nRadley\nRahul\nRian\nRohit\nRonny\nRylen\nSai\nSandro\nSeven\nSincere\nSohum\nTheron\nTitan\nTodd\nTravon\nTrinidad\nTristyn\nVernon\nViggo\nVon\nWes\nYamil\nYaseen\nYonatan\nZach\nZiggy\nAamir\nAayden\nAbrahan\nAgastya\nAizen\nAlessio\nAmar\nAmauri\nAmaury\nAmin\nAngad\nArsen\nArtur\nAxl\nBarack\nBill\nBradly\nBraedyn\nBrecken\nCase\nCharley\nChristiano\nChristos\nClyde\nCrew\nDaron\nDaymian\nDeion\nDenny\nDerik\nEarl\nEian\nEkam\nEliah\nElio\nErasmo\nEugenio\nEzrah\nFaustino\nGurman\nGus\nHadi\nHerman\nImanol\nInaki\nIra\nIseah\nIsmail\nItai\nIzek\nJacen\nJadin\nJakobe\nJaren\nJathan\nJayshawn\nJelani\nJethro\nJody\nJoell\nJosedejesus\nJosmar\nJovon\nJulyan\nJustyn\nKaine\nKamren\nKamron\nKenyon\nKeyon\nKoda\nKohen\nKooper\nKristofer\nLazarus\nLedger\nLogen\nLonnie\nMaceo\nMarcanthony\nMarcellus\nMatt\nMaxton\nMiller\nMykah\nMykel\nNaithan\nNam\nNeev\nNicolai\nNomar\nOri\nPerry\nPhineas\nRajan\nRayne\nReilly\nReymundo\nRommel\nRuhaan\nRushil\nSanjay\nSaxon\nSelvin\nShai\nShannon\nShayne\nSheldon\nShivam\nSilvestre\nStefano\nSydney\nSyrus\nTariq\nTarun\nTed\nTrevin\nTru\nTurner\nTytus\nUlyses\nVaibhav\nVinh\nWillem\nXavian\nYaakov\nYoussef\nYovanni\nYuki\nYuvraj\nZacharias\nZev\nAadyn\nAahan\nAakash\nAaren\nAarin\nAarnav\nAbdullahi\nAdarsh\nAidin\nAjani\nAkash\nAksel\nAlston\nAmaru\nAmit\nAmmon\nArchie\nArie\nAries\nArin\nArmin\nArtemio\nArush\nAtlas\nAviv\nAxton\nAyman\nBenedict\nBryton\nCallan\nCalum\nCanon\nChayce\nChe\nCillian\nClifford\nClint\nColeton\nCorwin\nCris\nCrispin\nDamani\nDandre\nDarrius\nDaveon\nDavien\nDejon\nDemarion\nDeonte\nDeron\nDevlin\nDimas\nDomenico\nDomingo\nDontae\nDresden\nDusty\nDylon\nEben\nEdwyn\nElijiah\nEliott\nElyjah\nEmmitt\nErnie\nEsaias\nEstuardo\nExodus\nFaris\nFinlay\nFinnigan\nFlavio\nFransisco\nFredi\nGagik\nGurshaan\nGurshan\nHamzah\nIsaih\nIzac\nJabez\nJaelyn\nJailyn\nJakai\nJalil\nJancarlos\nJashawn\nJasiel\nJaylan\nJayro\nJayvin\nJayvyn\nJeffry\nJeriah\nJiovani\nJoao\nJohny\nJullien\nKacey\nKaileb\nKallen\nKamal\nKamryn\nKanoa\nKarlo\nKavi\nKawika\nKaysen\nKayvon\nKegan\nKeion\nKenzo\nKieren\nKirin\nKonrad\nKota\nKristoffer\nLaird\nLaron\nLayton\nLeandre\nLochlan\nMac\nMadox\nMaison\nManraj\nMarcial\nMarkanthony\nMarkel\nMarkell\nMarlo\nMarquez\nMarshal\nMichel\nMyron\nNicco\nNima\nNyjah\nOlin\nOryan\nOz\nOzzy\nPharaoh\nRace\nRafe\nRamsey\nRavi\nReymond\nRickey\nRickie\nRishab\nRosendo\nRoss\nRylin\nSalim\nSavion\nShia\nSohan\nSylar\nSyncere\nTakeo\nTaven\nTavin\nTeague\nTeddy\nTegan\nTosh\nTrevon\nTripp\nTysen\nUbaldo\nVincente\nWylie\nWynn\nYazan\nYehuda\nYuta\nZacarias\nZaden\nZakai\nZakariya\nZeke\nZen\nAariz\nAbbas\nAbdulrahman\nAbisai\nAdonai\nAkshaj\nAkshay\nAleczander\nAlexys\nAnas\nAneesh\nAnthoney\nAreg\nArion\nAsiel\nAtharv\nAtharva\nAundre\nAustyn\nAvelino\nAvinash\nAvraham\nAzaan\nBasil\nBear\nBernardino\nBob\nBradford\nBraydin\nCadence\nCainan\nCal\nCallen\nCampbell\nCarsten\nCaspian\nCayson\nChazz\nChester\nChrystian\nColtin\nConstantine\nCormac\nCourtney\nCristhian\nDameon\nDany\nDarin\nDavit\nDaymien\nDayne\nDemarcus\nDemario\nDeric\nDonaven\nEdder\nEmile\nEnder\nEnoc\nEriberto\nEsdras\nEtienne\nEverest\nEzekial\nFinian\nFlint\nFroylan\nGavino\nGiancarlos\nGibran\nGor\nGrayden\nGraydon\nHakop\nHumza\nHyrum\nIssack\nIssiah\nIzeah\nIziah\nIzrael\nJaciel\nJahmir\nJamin\nJarod\nJarren\nJavin\nJaxx\nJaycee\nJaydyn\nJenner\nJens\nJeovanni\nJermiah\nJess\nJhon\nJian\nJim\nJimmie\nJoesiah\nJohndavid\nJohnmichael\nJordon\nJoseantonio\nJosemiguel\nJoshuah\nJuvenal\nKage\nKamar\nKamil\nKaram\nKasra\nKaydon\nKaylen\nKeandre\nKeiji\nKelson\nKelton\nKeneth\nKeshawn\nKhang\nKoji\nKorbin\nKruz\nKush\nKyree\nKyrin\nLauro\nLenin\nLian\nLiem\nLuigi\nMaleek\nMatan\nMateen\nMathis\nMaxime\nMiko\nMilad\nMontgomery\nMordechai\nMurphy\nNabeel\nNahom\nNatan\nNathyn\nNikolay\nNile\nNino\nOrin\nOzzie\nPalmer\nRandell\nRandolph\nRanveer\nReyli\nRoni\nSaeed\nSalomon\nSamarth\nSamvel\nSerafin\nSiddhant\nSol\nSrikar\nSutton\nSyler\nTadeo\nTalen\nTallon\nTavian\nTayden\nTeegan\nTevin\nThatcher\nTiger\nTre\nTrever\nTri\nTRUE\nTyrus\nTyshawn\nUzziel\nViliami\nViraj\nVirgil\nWilbur\nWilder\nWiley\nWillian\nWillis\nXaiver\nYadiel\nYanixan\nYohan\nYoshi\nYousif\nYovany\nZak\nZakaria\nAadan\nAbiel\nAbimael\nAdnan\nAdvait\nAdvik\nAj\nAjit\nAkshat\nAlastair\nAlder\nAldrin\nAleksey\nAlister\nAlphonso\nAmbrose\nAndi\nAndrick\nAndru\nAntwan\nAria\nAric\nArick\nArlen\nArtin\nAthen\nAuston\nAvan\nAvian\nAvin\nAvion\nAziel\nBarron\nBarry\nBenjamen\nBernie\nBladen\nBoone\nBradlee\nBrendyn\nBrennon\nBriggs\nBrodey\nBroxton\nBuddy\nBulmaro\nCalen\nCameryn\nCarsen\nCashton\nCayleb\nCecil\nCelso\nChasen\nChevy\nCj\nCoen\nColter\nColtrane\nCypress\nDaejon\nDalen\nDalessandro\nDamen\nDamir\nDarsh\nDash\nDashel\nDaylon\nDelfino\nDelvin\nDemarco\nDemetrio\nDeondre\nDesean\nDevante\nDewayne\nDhani\nDijon\nDillion\nDmari\nDolan\nDonavin\nDonavon\nDonnell\nDonny\nDru\nEathan\nEdrick\nEiden\nElder\nEliaz\nElijha\nElton\nEmre\nEsequiel\nEsteven\nEsvin\nEvann\nEyad\nFiliberto\nFroilan\nGalen\nGareth\nGaurav\nGautam\nGavriel\nGermain\nGianmarco\nGil\nGio\nGiovonni\nGray\nGurkirat\nGurnoor\nHadrian\nHaig\nHalen\nHamilton\nHanson\nHarout\nHarut\nHaydn\nHilario\nHussain\nHussein\nImari\nIran\nIrineo\nIsaah\nIskander\nIsrrael\nIssa\nIssaiah\nIssak\nIven\nIzick\nIzik\nJabril\nJacey\nJacory\nJae\nJaelen\nJahan\nJairus\nJakoby\nJamaal\nJarett\nJarred\nJarrell\nJasson\nJatin\nJaycen\nJayceon\nJaydenn\nJayen\nJaysean\nJaziah\nJc\nJeancarlos\nJedrek\nJeovanny\nJeremyah\nJessejames\nJhonatan\nJhonathan\nJin\nJiovanny\nJourney\nJuandavid\nJuanluis\nJuanmanuel\nJusten\nKaedin\nKali\nKameren\nKarlos\nKarsen\nKarthik\nKeelan\nKeiden\nKeifer\nKeller\nKenai\nKendry\nKenton\nKevan\nKevon\nKhoa\nKhoi\nKiefer\nKolten\nKordell\nKoston\nKunal\nKyron\nLandan\nLeopold\nLex\nLinden\nLoki\nLoren\nLyndon\nMakani\nMakoto\nManas\nManav\nMarck\nMarion\nMarshawn\nMatai\nMaurilio\nMaxemiliano\nMaximino\nMaynor\nMenachem\nMicaiah\nMichelangelo\nMika\nMikai\nMohamad\nNabil\nNavid\nNevan\nNiccolo\nNicholai\nNicklaus\nNicoli\nNihal\nNikos\nNyle\nOnyx\nOrson\nParis\nParth\nPascual\nPaulino\nPercy\nPierson\nPorfirio\nRahman\nRain\nRami\nRasheed\nRaymon\nRaziel\nReeve\nReily\nReis\nRion\nRithik\nRobby\nRonell\nRonen\nRowdy\nRyen\nSacha\nSachin\nSalesi\nSantonio\nSathvik\nSavior\nSergey\nShiv\nSho\nShreyan\nSidharth\nStevie\nStewart\nSylis\nSylvester\nTadhg\nTahj\nTaiyo\nTakumi\nTao\nTarek\nTayvion\nTenzin\nThai\nTiernan\nTito\nTobey\nTorsten\nUmar\nUri\nVito\nWilber\nXadrian\nYamir\nYannick\nYobani\nYul\nYusef\nZayn\nZubin\nAaditya\nAarya\nAbdirahman\nAbhijot\nAdian\nAdithya\nAkiva\nAlbeiro\nAleks\nAlen\nAlvino\nAmaan\nAmadeo\nAmadeus\nAmador\nAmarii\nAmi\nAmiel\nAmier\nAmilcar\nAmine\nAmos\nAnand\nAnder\nAndoni\nAngelgabriel\nAngelito\nAnh\nAnjel\nAnselmo\nAnthoni\nAntoni\nAquiles\nArhaan\nArik\nAristotle\nArjay\nArnel\nArtem\nArun\nAryav\nAryeh\nAsaiah\nAsante\nAshten\nAskari\nAubrey\nAudel\nAvaneesh\nAyven\nBairon\nBao\nBasilio\nBastian\nBenji\nBenton\nBlayke\nBosco\nBrandan\nBriant\nBroc\nBronx\nCaine\nCalix\nCanyon\nCardin\nCarlin\nCarlosdaniel\nCarmello\nCarver\nCasimiro\nCasper\nCedar\nCedrick\nChamp\nChayton\nCiro\nClement\nColson\nConan\nCorbyn\nCordae\nCorde\nCornell\nCoy\nCriss\nCrosby\nCru\nCruise\nCurren\nDael\nDaichi\nDajuan\nDamonte\nDang\nDarious\nDarrien\nDaryn\nDasani\nDashiel\nDavi\nDavy\nDayvon\nDeanthony\nDejuan\nDelvon\nDemari\nDemitri\nDenim\nDerin\nDerrell\nDevaughn\nDevontae\nDevonte\nDixon\nDjango\nDmarcus\nDmitri\nDomonic\nDoroteo\nDraco\nDublin\nDuvan\nEagan\nEdi\nEdric\nEdy\nEgan\nEinar\nEliazar\nEliud\nEliyahu\nEmari\nEnrico\nEoin\nErich\nErickson\nErrol\nEshan\nEthanjames\nEthanjoseph\nFaisal\nFamous\nFareed\nFares\nFarid\nFeliciano\nFinbar\nFinneas\nFischer\nFlorian\nGabe\nGabriele\nGaspar\nGautham\nGene\nGeno\nGevork\nGiovannie\nGiuseppe\nGlen\nGracen\nHaden\nHaniel\nHaris\nHarjot\nHarsh\nHarutyun\nHasani\nHashim\nHaydon\nHonor\nIban\nIdan\nIndiana\nIrwin\nIsack\nIsaia\nIsaiahs\nItay\nIvann\nIverson\nJabriel\nJadan\nJaedin\nJahel\nJaideep\nJakeb\nJakub\nJamarcus\nJarvis\nJasean\nJasen\nJaskaran\nJavid\nJayse\nJd\nJeanpierre\nJeferson\nJefte\nJerald\nJeremi\nJeremie\nJerimyah\nJerson\nJessey\nJevon\nJeziah\nJezreel\nJhovanny\nJibran\nJiraiya\nJoachim\nJocsan\nJoeseph\nJoesph\nJohncarlo\nJorel\nJosafat\nJosaiah\nJosecarlos\nJosedaniel\nJosyah\nJuanantonio\nKaelan\nKaelen\nKaimana\nKaj\nKanan\nKanav\nKarmello\nKaron\nKaydin\nKayne\nKeiran\nKeishawn\nKeita\nKeyshawn\nKhaled\nKhamari\nKhristopher\nKolbe\nKorde\nKylen\nLakai\nLake\nLangston\nLavelle\nLazlo\nLebron\nLeone\nLexington\nLeyton\nLong\nLowell\nLowen\nLyrik\nLysander\nMacario\nMadix\nMahmoud\nManveer\nMarciano\nMargarito\nMarty\nMateus\nMatheus\nMavrick\nMaxamillion\nMehdi\nMick\nMikkel\nMiliano\nMoksh\nMonty\nMorris\nMycah\nMykell\nMynor\nNadav\nNeko\nNewton\nNicholaus\nNicolo\nNishant\nNova\nObi\nOciel\nOdell\nOleg\nOllin\nOrian\nOsmin\nPatton\nPenn\nPietro\nQuaid\nQuest\nQuin\nQuincey\nQuinlan\nQuran\nRai\nRaj\nRashaad\nRashawn\nReza\nRhyder\nRithvik\nRivaldo\nRocket\nRoen\nRomario\nRomen\nRonak\nRoosevelt\nRoscoe\nRueben\nRumi\nRusty\nRylie\nRyon\nSabino\nSadrac\nSaif\nSaket\nSalah\nSamer\nSamual\nSascha\nSatvik\nSayed\nScout\nSemisi\nServando\nShaheen\nShaheer\nShalom\nShamar\nShamus\nShashank\nShaya\nShepard\nShepherd\nShimon\nShota\nSiddarth\nSmith\nSteele\nStorm\nSubhan\nSven\nTad\nTaesean\nTakoda\nTanay\nTanish\nTashawn\nTavion\nTavita\nTaye\nTayler\nTaylon\nTenoch\nTeodoro\nThor\nTj\nTonatiuh\nTorrey\nTrae\nTrajan\nTravion\nTrayvon\nTrenten\nTreshawn\nTreyvon\nTriton\nTrustin\nTrysten\nTryston\nTyreese\nTyrell\nUnknown\nVahe\nValen\nVibhav\nVlad\nVladislav\nWarner\nWesly\nWilfredo\nWilly\nWolf\nXzavior\nYisroel\nYoltzin\nYordi\nYoshua\nZair\nZakariah\nZaki\nZamir\nJacob\nDaniel\nAnthony\nAlexander\nAngel\nEthan\nJayden\nDavid\nAndrew\nNathan\nMatthew\nJoshua\nNoah\nMichael\nChristopher\nJonathan\nAdrian\nAiden\nJose\nJulian\nJoseph\nIsaac\nGabriel\nChristian\nBrandon\nWilliam\nDiego\nRyan\nDylan\nBenjamin\nElijah\nLogan\nAaron\nSebastian\nJesus\nIsaiah\nKevin\nMason\nSamuel\nJames\nJuan\nLuis\nNicholas\nEvan\nCarlos\nLucas\nDamian\nJustin\nLiam\nCaleb\nJason\nTyler\nAlejandro\nJohn\nMiguel\nJordan\nLuke\nGavin\nJack\nGiovanni\nRobert\nJackson\nBryan\nXavier\nSantiago\nIvan\nJeremiah\nIan\nAdam\nNathaniel\nAlex\nDominic\nLandon\nEduardo\nJosiah\nLeonardo\nVictor\nBrian\nConnor\nJesse\nOscar\nEric\nJorge\nAustin\nOliver\nZachary\nAndres\nWyatt\nJaden\nEli\nOwen\nFrancisco\nThomas\nHenry\nElias\nFernando\nVincent\nAlan\nSteven\nEmmanuel\nCesar\nManuel\nRicardo\nLevi\nAidan\nAntonio\nCharles\nAyden\nOmar\nBrayden\nRichard\nNicolas\nMax\nJosue\nJake\nErick\nJoel\nEmiliano\nEdgar\nAbraham\nJavier\nMateo\nTristan\nCameron\nHunter\nSean\nChase\nRyder\nCristian\nEdward\nSergio\nKyle\nJeremy\nAxel\nCarter\nMario\nRoman\nBlake\nHector\nAndy\nDerek\nBrody\nKai\nCole\nAlexis\nMarcus\nDevin\nMicah\nRafael\nRuben\nRoberto\nEzekiel\nIsrael\nRaymond\nRiley\nTimothy\nParker\nJohnny\nNolan\nEdwin\nDamien\nFabian\nJoaquin\nErik\nMiles\nArmando\nMarco\nMark\nMartin\nJonah\nEmilio\nColton\nCooper\nLeo\nAndre\nMaxwell\nPedro\nAbel\nCarson\nGeorge\nTravis\nAdan\nKaden\nKenneth\nCody\nGerardo\nPatrick\nColin\nPreston\nBryce\nPaul\nCaden\nAsher\nHudson\nSeth\nHayden\nRaul\nKaleb\nJaxon\nEmanuel\nJared\nIsmael\nAngelo\nMarcos\nDonovan\nKayden\nEsteban\nJulio\nMaximus\nEnrique\nJude\nJaime\nJaiden\nPablo\nBrady\nEzra\nSalvador\nSaul\nAshton\nPeter\nTrevor\nArturo\nDanny\nGustavo\nShane\nBradley\nCash\nMoises\nGrant\nFrank\nRodrigo\nCharlie\nAlberto\nKingston\nJace\nJeffrey\nCruz\nErnesto\nConner\nMaximiliano\nDrake\nJohnathan\nLorenzo\nDean\nGael\nGrayson\nCollin\nLuca\nAlfredo\nHugo\nWesley\nMatteo\nDominick\nFelix\nMaddox\nDante\nTroy\nAden\nAllen\nIssac\nJimmy\nGage\nMalachi\nLincoln\nLeonel\nLukas\nRomeo\nSawyer\nTheodore\nMathew\nBryson\nArthur\nBentley\nStephen\nNoe\nRamon\nTanner\nIsaias\nUlises\nCalvin\nJakob\nBrayan\nJaxson\nUriel\nCayden\nMauricio\nSilas\nShawn\nRandy\nAlbert\nBraden\nElliot\nIzaiah\nRylan\nSimon\nJasper\nAlonso\nBrendan\nEnzo\nDeclan\nPeyton\nSkyler\nSpencer\nZane\nKaiden\nNoel\nEverett\nYahir\nDarren\nJayson\nJudah\nTyson\nZion\nFinn\nJaylen\nMyles\nAldo\nEddie\nGiovani\nGuillermo\nPhillip\nNehemiah\nAmir\nDesmond\nJameson\nJerry\nAlvin\nLeon\nOrlando\nQuinn\nBryant\nGarrett\nGiovanny\nLarry\nWeston\nJohan\nChris\nAdriel\nDrew\nGregory\nXander\nElliott\nJay\nJulius\nLouis\nDustin\nMarvin\nEmmett\nHarrison\nJax\nMaximilian\nCristopher\nDillon\nTony\nAlfonso\nGriffin\nMilo\nJoey\nRicky\nRudy\nCyrus\nEaston\nNikolas\nPhoenix\nEzequiel\nJoe\nDevon\nJairo\nRene\nRowan\nRohan\nTy\nAvery\nJessie\nRonald\nAlonzo\nBennett\nJett\nRocco\nAllan\nVicente\nChance\nFelipe\nRogelio\nSantino\nAnderson\nLanden\nAli\nGilbert\nOrion\nReid\nTaylor\nClayton\nWalter\nGreyson\nIker\nOsvaldo\nRodolfo\nRussell\nScott\nPhilip\nTrent\nEfrain\nMoses\nAlec\nDane\nKobe\nLawrence\nNickolas\nRamiro\nZackary\nAarav\nAlvaro\nDarius\nDerrick\nArjun\nDallas\nZander\nRoger\nTrenton\nSam\nSteve\nBeckett\nTucker\nByron\nCade\nColby\nKeith\nKing\nMalik\nNico\nXavi\nFrankie\nJulien\nKyler\nValentino\nAgustin\nFreddy\nAlessandro\nBranden\nDexter\nRiver\nRonan\nAugust\nCaiden\nCorey\nMisael\nTomas\nGiancarlo\nDamon\nKenny\nValentin\nCasey\nKameron\nKian\nMatias\nPaxton\nRoy\nXzavier\nZayden\nAtticus\nBraxton\nBrenden\nBruno\nEmerson\nGilberto\nNathanael\nGianni\nJovanni\nLuciano\nMaximo\nNiko\nRigoberto\nAron\nIgnacio\nMarc\nTommy\nCorbin\nDario\nKeegan\nKellan\nLeland\nMalakai\nReed\nRhys\nSonny\nAaden\nBruce\nDennis\nDonald\nFranklin\nGraham\nGunner\nHumberto\nJaycob\nJonas\nMaverick\nOctavio\nTristen\nAce\nLionel\nTitus\nTobias\nAbram\nBobby\nCamden\nJayce\nJovany\nBrennan\nJalen\nLondon\nMarlon\nRay\nRolando\nEstevan\nHolden\nKieran\nPierce\nQuentin\nIsai\nJovani\nKristian\nNeil\nAri\nCristiano\nDouglas\nJefferson\nKellen\nMuhammad\nUrijah\nAriel\nBeau\nBrett\nColt\nLeandro\nYael\nYandel\nAmari\nDorian\nMiguelangel\nNelson\nNestor\nRonnie\nShaun\nDilan\nDominik\nEden\nGerman\nKristopher\nRey\nRoyce\nRyker\nZachariah\nAryan\nBodhi\nCurtis\nFranco\nIbrahim\nIrvin\nJohann\nRex\nRonaldo\nSolomon\nUlysses\nAditya\nDavis\nJair\nRaphael\nTheo\nAdolfo\nDavian\nDerick\nGeovanni\nJunior\nJustice\nLuka\nMalcolm\nMike\nMorgan\nReece\nYusuf\nConor\nDarian\nKane\nTrey\nAlfred\nBraeden\nBraydon\nIshaan\nJovanny\nKade\nLouie\nMarcel\nMarcelo\nWarren\nArmaan\nArman\nKeven\nLeonard\nLucca\nMarshall\nMitchell\nRaiden\nRonin\nRyland\nUriah\nAbdiel\nArmani\nAydan\nMelvin\nNikolai\nTaj\nAdrien\nArcher\nDakota\nIsaak\nLance\nMadden\nMaurice\nMaximillian\nCohen\nDavin\nGonzalo\nGrady\nLane\nLucian\nSantos\nAlijah\nBenicio\nBernardo\nDarwin\nElian\nGary\nMakai\nMathias\nYair\nFrederick\nPranav\nPrince\nSkylar\nStanley\nTalon\nTate\nTerry\nWaylon\nAlexandro\nBraulio\nBrodie\nBrooks\nCamilo\nDeandre\nJamison\nJonathon\nKelvin\nQuincy\nBarrett\nBrock\nCristofer\nDalton\nDavion\nDeven\nElvis\nFidel\nFinnegan\nHarry\nKash\nRio\nWinston\nZain\nAyaan\nBrycen\nCarlo\nChad\nCory\nCristobal\nFrancis\nGunnar\nJuancarlos\nKaeden\nMaxim\nNathen\nTerrance\nTiger\nWilson\nAarush\nAlexzander\nArnav\nBilly\nGideon\nJadon\nMarkus\nMohamed\nOdin\nPayton\nRemy\nSiddharth\nZaid\nAydin\nBraylon\nDhruv\nGeovanny\nJaeden\nKeanu\nKenji\nKody\nKrish\nToby\nAhmad\nAnish\nCarl\nDeegan\nJaydon\nJon\nMarley\nVladimir\nDangelo\nDawson\nEliseo\nEugene\nFinley\nIrving\nIsiah\nJedidiah\nKareem\nKingsley\nMatthias\nMohammed\nThiago\nVince\nZechariah\nAugustine\nBodie\nBrent\nChace\nHarold\nJeramiah\nJorden\nKarson\nKeaton\nKendrick\nMariano\nMohammad\nNikko\nOswaldo\nSage\nSterling\nWillie\nAdonis\nBen\nBraiden\nConrad\nEfren\nElmer\nKnox\nLeonidas\nNixon\nRaymundo\nReese\nSaid\nCarmelo\nClark\nDashiell\nEan\nGauge\nHarley\nIzaac\nIzayah\nJamie\nJaylin\nJerimiah\nLewis\nQuinton\nVan\nZack\nAmare\nArlo\nCassius\nDax\nDeangelo\nDevan\nEmery\nGerald\nIsac\nJacoby\nJagger\nJean\nNeel\nNick\nRocky\nTriston\nVihaan\nWade\nWalker\nWayne\nAyush\nCain\nDarien\nFavian\nJasiah\nJoseluis\nJosh\nKamari\nKarter\nKhalil\nKole\nNikhil\nOtto\nSemaj\nVance\nVincenzo\nAbdullah\nAhmed\nArian\nCedric\nDereck\nEliot\nEverardo\nGiovany\nHank\nJahir\nJamari\nJeffery\nJensen\nJeremias\nJovan\nJuanpablo\nKillian\nMarcello\nMemphis\nMicheal\nOsmar\nPresley\nRamses\nRayan\nSamson\nSidney\nAidyn\nAlden\nBrendon\nBrennen\nEthen\nIsael\nJet\nJoziah\nKoa\nLennon\nMaxx\nRodney\nStephan\nTristin\nWill\nZaiden\nAntony\nDevyn\nDuncan\nEllis\nLandyn\nLegend\nMagnus\nMessiah\nNash\nPorter\nRalph\nTiago\nYousef\nZeus\nAlek\nAlexandre\nAmeer\nAndreas\nDeshawn\nElisha\nGuadalupe\nJamir\nJencarlos\nKason\nLamar\nLuc\nMilan\nReynaldo\nSahil\nAedan\nArya\nBenson\nBently\nBoston\nColten\nDenzel\nEder\nEdson\nEnoch\nFletcher\nFranky\nGordon\nHernan\nJullian\nKeenan\nKenzo\nLenny\nMaksim\nMekhi\nMilton\nPatricio\nRhett\nRyu\nSammy\nSoren\nStefan\nSylas\nZavier\nAbner\nAjay\nAnton\nApollo\nAugustus\nCannon\nChandler\nDwayne\nGeovany\nGian\nGregorio\nJamal\nJaxen\nKainoa\nKalel\nKasen\nNigel\nOmari\nPaolo\nPrinceton\nRayden\nRishi\nSantana\nSky\nVaughn\nAnders\nAres\nCallum\nCeasar\nCullen\nDamion\nDraven\nEligh\nHarvey\nIzaak\nJaydan\nJermaine\nJeshua\nKeagan\nLino\nLuisangel\nMauro\nNasir\nNathanial\nRenato\nSeamus\nTatum\nTerrell\nYeshua\nAbhinav\nAndrei\nAnson\nAsa\nAthan\nAvi\nBenito\nBraylen\nBroderick\nCael\nCallen\nCason\nDemetrius\nEddy\nElan\nErnest\nForrest\nHezekiah\nHoward\nIshan\nJesiah\nJoan\nJordyn\nKymani\nMayson\nNery\nOm\nPaulo\nPierre\nReginald\nRory\nSami\nSanjay\nTayden\nTerrence\nZachery\nAnsel\nBenny\nDan\nDarnell\nDillan\nDimitri\nDominique\nDuke\nGavyn\nGenaro\nHamza\nHugh\nJessy\nJonatan\nJustus\nKayleb\nKylan\nLeif\nLinus\nLyric\nMarquis\nMassimo\nMustafa\nRandall\nRick\nRoland\nRyden\nVarun\nAndrey\nAtreyu\nAyan\nBaron\nBode\nBoden\nChanning\nDale\nDarrell\nDarryl\nDayton\nGerson\nGianluca\nGino\nHaiden\nHarper\nHendrix\nJadyn\nJericho\nJordy\nLee\nLennox\nLev\nLucien\nLucio\nMaison\nMarcelino\nMarko\nMasen\nMatix\nNarek\nObed\nOsiel\nSebastien\nTalan\nTrace\nTyree\nVivaan\nYovani\nZackery\nZaire\nAddison\nAnsh\nBronson\nCian\nClay\nCraig\nDeon\nEdison\nErwin\nFreddie\nHeath\nHeriberto\nJase\nJaydin\nJerome\nKael\nKalani\nKennedy\nKoen\nKolby\nMajor\nMalaki\nMikael\nNikita\nOtis\nSunny\nTobin\nUlisses\nVidal\nAshwin\nAven\nBayron\nBishop\nBlaise\nDarin\nDeacon\nDonte\nEleazar\nFermin\nFinnian\nFredy\nGeovani\nHassan\nHerbert\nIra\nJacobo\nJael\nJeff\nKarim\nKent\nKeoni\nLamont\nLisandro\nNorman\nOzzy\nRamsey\nRashad\nRobin\nRowen\nSincere\nTadeo\nWestin\nYash\nYonathan\nZayne\nZephyr\nAdair\nAksel\nAlekzander\nAlton\nAnay\nAntoine\nAtlas\nAzael\nDamari\nEwan\nGannon\nGerard\nGlenn\nHeber\nHoracio\nImmanuel\nJaidyn\nJaysen\nJohnpaul\nJuandiego\nKamden\nKavin\nKekoa\nKiran\nKolton\nKorbin\nLeobardo\nMikel\nOskar\nQuintin\nRoyal\nRylee\nSamir\nShaan\nShaurya\nShayan\nShiloh\nSullivan\nTodd\nTom\nVeer\nViktor\nYerik\nYosef\nZuriel\nBailey\nCamren\nDariel\nDarion\nDavon\nDemian\nDion\nEliel\nEmmitt\nIsidro\nIziah\nJabari\nJaron\nJaylon\nJeancarlo\nJin\nJiovanni\nJohnathon\nJosemanuel\nJosemaria\nKain\nKale\nKanoa\nKelly\nKurt\nKyan\nLeopoldo\nLuiz\nMaddix\nMaddux\nManny\nNatanael\nNeo\nNoble\nOri\nParsa\nReagan\nReuben\nSimeon\nSione\nSoham\nTruman\nUziel\nWestley\nWiley\nWilmer\nZeke\nZen\nAaryan\nAbhay\nAbran\nAchilles\nAkshay\nAlexavier\nAram\nAsael\nAston\nAzariah\nBeckham\nBo\nBowie\nBrad\nCairo\nCase\nDamarion\nDaren\nDarey\nDaxton\nDeion\nEdgardo\nEly\nElyas\nEver\nFisher\nGadiel\nHarlan\nJadiel\nJai\nJancarlos\nKaleo\nKarl\nKeon\nKonner\nKurtis\nLayton\nLeroy\nLex\nLucius\nMenachem\nMerrick\nMiller\nQuinten\nReilly\nRemington\nRenzo\nRonny\nSahib\nSasha\nShayne\nSkye\nStone\nSyrus\nTeagan\nTejas\nTim\nTrystan\nVadhir\nWest\nYaseen\nYuvraj\nAayden\nAayush\nAnakin\nAnirudh\nAries\nArmen\nArvin\nBlaine\nBraedon\nBrando\nBranson\nCaesar\nCallan\nCharly\nClyde\nCoen\nConstantine\nCortez\nCurren\nDash\nDenis\nDyllan\nElijiah\nElyjah\nEmir\nErnie\nEros\nEsai\nFilip\nFord\nGavino\nGil\nHaven\nJad\nJamar\nJancarlo\nJaren\nJaven\nJayvion\nJim\nJosemiguel\nKabir\nKadyn\nKaito\nKalvin\nKarthik\nKayson\nKen\nKhalid\nLaith\nMaxton\nMikah\nMusa\nNoa\nRayyan\nReef\nReyes\nRhyan\nRian\nRome\nRylen\nSameer\nShea\nStuart\nTigran\nTitan\nTyrone\nVikram\nWolfgang\nYonatan\nZayd\nZephaniah\nAdin\nAdler\nAmos\nAric\nAusten\nBeck\nBernard\nBowen\nBradyn\nBrice\nBrixton\nBronx\nCamron\nCorban\nCristo\nCrosby\nDallin\nDanilo\nDave\nDemarco\nDereon\nDerik\nDon\nDonavan\nDwight\nEdan\nEithan\nEliezer\nEvin\nEzrah\nFaris\nGaven\nGiuseppe\nGuy\nHans\nHayes\nIsacc\nIshmael\nIzak\nJafet\nJaylan\nJosias\nKadin\nKarlo\nKonnor\nLachlan\nLandin\nLazaro\nLazarus\nLeighton\nLloyd\nLucky\nLyle\nMattias\nMikey\nNeftali\nNevin\nNoam\nOcean\nOsbaldo\nPete\nRishab\nSalomon\nSheldon\nTurner\nViggo\nYoel\nZahir\nZev\nAbhiram\nAjani\nAkhil\nAmador\nAngad\nAnjel\nArav\nAren\nArtem\nAtharv\nAthen\nBenedict\nBill\nBridger\nCarsen\nCharley\nChristofer\nClarence\nClinton\nCuauhtemoc\nDerin\nDestin\nDevlin\nDresden\nEdmond\nEian\nEkam\nElvin\nEsau\nEshan\nFederico\nFredrick\nGaige\nGenesis\nGibson\nHadi\nHiram\nIsreal\nIzrael\nJaedyn\nJakub\nJavon\nJimmie\nJohnnie\nJordon\nJustyn\nKeshav\nMarquise\nMatan\nMihir\nMonte\nMyron\nNate\nNorberto\nRaghav\nRayhan\nRen\nReyli\nRoderick\nRudra\nSalvatore\nShivam\nShreyas\nTarun\nThatcher\nTorin\nTripp\nTristian\nYadiel\nYahya\nYohan\nZakaria\nAaiden\nAdian\nAdiel\nAdriano\nAlain\nAlen\nAlexsander\nAman\nArion\nArley\nArnold\nArron\nArtur\nArush\nAsh\nAzriel\nBaltazar\nBarron\nBenaiah\nBrenton\nBrogan\nBrysen\nCaelan\nCamryn\nCarmine\nChasen\nCisco\nCosmo\nCrew\nDarby\nDaven\nDeagan\nDemarion\nDezmond\nEamon\nEdwyn\nEitan\nElder\nEmmet\nEnoc\nErvin\nExavier\nFausto\nFlynn\nForest\nGamaliel\nGlen\nGraysen\nHarlem\nHayk\nHaziel\nIbraheem\nIlan\nIzik\nJaedon\nJaidon\nJasen\nJasiel\nJaxton\nJaykob\nJayven\nJenson\nJeremih\nJeriah\nJerson\nJessejames\nJohannes\nJoseangel\nJoshuah\nJuanjose\nKahlil\nKamran\nKamren\nKamron\nKendall\nKenton\nKyden\nKyron\nLars\nLeopold\nLester\nLinkin\nLizandro\nMaddex\nMarcell\nMarcellus\nMarcoantonio\nMarques\nMikhail\nNahum\nNiccolo\nNicolai\nNikola\nNolen\nOren\nOsman\nPavel\nRami\nRayshawn\nRichie\nRider\nRishabh\nRoan\nRony\nShamar\nShant\nShia\nShrey\nSlade\nTeo\nTrevon\nYamil\nAhmir\nAizen\nAldair\nAleksander\nAleksandr\nAmar\nAmbrose\nAmogh\nArden\nAris\nArjen\nAugustin\nAvian\nBenton\nCal\nCamdyn\nCarsten\nCelso\nChaz\nClaudio\nColeman\nDarsh\nDaylan\nDaylen\nDewayne\nDomenic\nDonny\nDontae\nDutch\nEliah\nEliazar\nEnder\nEthaniel\nFabrizio\nFox\nFred\nGeoffrey\nGiovannie\nGraydon\nHenrry\nHilario\nIssak\nIzael\nJade\nJakari\nJan\nJarrett\nJaxsen\nJaydenn\nJayro\nJermiah\nJeronimo\nJessiah\nJohny\nJonnathan\nJonny\nJordin\nKaydin\nKeshawn\nKeyon\nKolt\nKolten\nKye\nKyree\nLian\nMaynor\nMicaiah\nMuhammed\nMurphy\nOmer\nOziel\nParth\nRajveer\nSol\nTavin\nTevin\nTye\nTyrell\nUbaldo\nUzziah\nWilliams\nYehuda\nYosgart\nYousif\nYoussef\nYusef\nZac\nZakary\nAbdulrahman\nAdalberto\nAj\nAmeen\nAndree\nAntwan\nArath\nArjan\nArnulfo\nAsante\nAurelio\nAziel\nBarry\nBilal\nBrooklyn\nBroxton\nCaeden\nCale\nCanyon\nCassidy\nClemente\nClifton\nClint\nColeton\nColson\nDanniel\nDaron\nDarrin\nDaryan\nDemarcus\nDeondre\nDev\nDidier\nDiesel\nDomingo\nDomonic\nDonnell\nEdmund\nEliam\nElio\nEmari\nErin\nEtienne\nEugenio\nGabino\nGavriel\nGio\nGurnoor\nHakop\nHasan\nHasani\nHenri\nHerman\nHouston\nHussain\nIdris\nIssa\nJaasiel\nJacinto\nJackie\nJacky\nJahlil\nJarett\nJavion\nJayceon\nJeancarlos\nJelani\nJethro\nJhonatan\nJody\nJohnson\nJosaiah\nJosef\nJosiyah\nJuaquin\nKaine\nKalen\nKasey\nKasper\nKasra\nKeane\nKoji\nKris\nKristofer\nKruz\nLangston\nLayne\nMac\nMaceo\nMack\nMahmoud\nMakaio\nMakhi\nMakoa\nMalakhi\nMalek\nMarek\nMarius\nMarkell\nMarquez\nMichaelangelo\nMickey\nNaman\nNaveen\nNaythan\nPerry\nPhineas\nQuinlan\nRahul\nRanveer\nRaudel\nRaylan\nReily\nReymundo\nRickey\nRigo\nRishaan\nRitchie\nRomel\nRon\nRoshan\nRoss\nSaad\nSachin\nSahir\nSammuel\nShaya\nStefano\nStellan\nSyed\nTeddy\nTevita\nWes\nWilder\nYovanni\nYovany\nZahid\nZakai\nZyaire\nAbiel\nAbisai\nAdarsh\nAdonai\nAdonay\nAkash\nAkira\nAleks\nAlistair\nAmadeus\nAmmar\nAneesh\nAngelgabriel\nArchie\nArmand\nArmin\nArsen\nAtharva\nAtom\nAustyn\nAviv\nBrandyn\nBrennon\nBrighton\nBroden\nCaedmon\nCaius\nCampbell\nCanon\nCarlton\nCasen\nCiaran\nClive\nCoby\nColter\nCornelius\nCriss\nDaksh\nDavit\nDempsey\nDesean\nDhruva\nDonavon\nDontay\nEason\nEdmundo\nEdrick\nEldon\nEliyahu\nElizandro\nEmil\nEsdras\nEshaan\nEzekial\nFabricio\nFinnigan\nFlavio\nGibran\nGreysen\nGus\nHaidyn\nHenrik\nHonor\nHubert\nIlya\nIsahi\nIsayah\nJaciel\nJacques\nJaelen\nJahaziel\nJaheim\nJairus\nJaxx\nJaydyn\nJaylyn\nJaymes\nJayvon\nJaziel\nJenner\nJeovanny\nJeron\nJireh\nJosmar\nJuanmanuel\nJuelz\nJuvenal\nKamryn\nKavi\nKayne\nKaysen\nKeion\nKenta\nKhai\nKhaled\nKhang\nKishan\nKnowledge\nKoby\nKonrad\nKylen\nKyson\nLathan\nLeander\nLenin\nLeyton\nMarcanthony\nMateus\nMatheo\nMathieu\nMathis\nMaxemiliano\nMaximilliano\nMaxson\nMinh\nMontgomery\nMykel\nNazir\nNeal\nNeri\nNicco\nNikolay\nNile\nObadiah\nOsiris\nRadley\nRafe\nRaffi\nRaymon\nRayvon\nRaziel\nRhyder\nRobbie\nRobby\nRonen\nRyen\nRyley\nSabastian\nSalman\nShalom\nShashank\nShepard\nShepherd\nSlater\nSohum\nSven\nTahj\nTai\nTaiga\nTaran\nTed\nTerence\nThierry\nTiernan\nTyce\nTyrese\nUriyah\nValente\nVedant\nVernon\nViraj\nVirgil\nVishnu\nWallace\nWilber\nWilly\nXaiden\nYazan\nYousuf\nZakariya\nZaki\nZaylen\nZedekiah\nAamir\nAarnav\nAarya\nAbimael\nAcelin\nAdvaith\nAdvay\nAeden\nAkiva\nAkshaj\nAlakai\nAlessio\nAlexi\nAlston\nAmani\nAmaru\nAmmon\nAndersen\nAndi\nAndranik\nAngello\nAntwon\nAramis\nAria\nArie\nArin\nAvan\nAvin\nAxl\nAxton\nBanyan\nBenyamin\nBernabe\nBlaze\nBoris\nBosco\nBradly\nBrandt\nBraven\nBrecken\nBret\nBrison\nCanaan\nCashton\nCastiel\nCavan\nCayson\nChester\nChevy\nClifford\nConstantino\nCorben\nCornelio\nDamarcus\nDamyan\nDaveon\nDavey\nDaymian\nDeanthony\nDejon\nDejuan\nDemond\nDenny\nDeonte\nDeshaun\nDesi\nDevonte\nDhani\nDiamond\nDillinger\nDino\nDonavin\nDuane\nEmory\nEphraim\nEricson\nFarhan\nFaustino\nFlorentino\nFroylan\nGarret\nGarrick\nGarrison\nGaurav\nGiancarlos\nGiorgio\nGray\nGrigor\nGurshan\nHamilton\nHaris\nHarjot\nHarout\nHarris\nHaydn\nHollis\nHovik\nImran\nIsa\nIsaia\nIsmail\nIven\nIzek\nJacen\nJacobi\nJadrian\nJaelyn\nJahari\nJaison\nJamil\nJarell\nJareth\nJarred\nJarrod\nJaysean\nJayshawn\nJaziah\nJc\nJeanpierre\nJedediah\nJeffren\nJencarlo\nJeremie\nJessi\nJob\nJoesiah\nKallen\nKamar\nKamarion\nKannon\nKaram\nKaran\nKarsten\nKashton\nKeelan\nKeller\nKendry\nKiefer\nKiernan\nKirin\nKirk\nKiyan\nKnight\nKohen\nKorey\nKory\nKristoffer\nLaron\nLeeland\nLinden\nLochlan\nLogen\nLuqman\nLuther\nLyndon\nMacario\nMadix\nMalikai\nManases\nManolo\nMarcial\nMarlo\nMarshawn\nMaximino\nMaxon\nNadav\nNam\nNevan\nNicolo\nNikkolas\nOden\nOmarion\nOryan\nOzzie\nQuest\nRajon\nRamone\nRico\nRishik\nRohin\nRommel\nRosalio\nRowdy\nRusty\nSaeed\nSaharsh\nSaif\nSamar\nSamvel\nSandro\nSavion\nShay\nShlok\nSiddhant\nSilverio\nSir\nSonnie\nTalen\nTanish\nTayson\nTeague\nTegan\nThaddeus\nThompson\nThor\nTosh\nTravon\nTrayvon\nTrever\nTrinidad\nTristyn\nTytus\nUri\nUzziel\nVincente\nVinny\nVito\nWendell\nWilbert\nWilfredo\nWillem\nWolfe\nXavior\nYassin\nYurem\nZamari\nZamir\nAadi\nAakash\nAaren\nAayan\nAbelardo\nAbrahan\nAbrahim\nAidin\nAleczander\nAlister\nAmit\nAndrik\nAngelino\nAngus\nAnibal\nAnthonie\nAntoni\nAntwone\nAnwar\nAquiles\nArda\nArik\nAriston\nArnoldo\nArt\nAshar\nAshtyn\nAubrey\nAuden\nAviel\nBalian\nBear\nBenigno\nBernardino\nBodi\nBooker\nBrayton\nBrendyn\nBriggs\nBrodee\nBrodey\nCalder\nCedrick\nCezar\nChayce\nChristiano\nCloud\nCord\nCordae\nCordell\nCormac\nCris\nCristhian\nCurran\nCy\nCylus\nCypress\nDagoberto\nDakarai\nDakari\nDanthony\nDarrien\nDaryl\nDaylin\nDayne\nDeen\nDelano\nDemetri\nDemir\nDemitri\nDenim\nDerion\nDeron\nDevesh\nDez\nDezi\nDmitry\nDonnie\nEarl\nEdvin\nEdwardo\nEliud\nElton\nEmad\nEsa\nEvander\nEverest\nEvyn\nFabio\nFeliciano\nFinneas\nFinnley\nFoster\nFrederic\nGalen\nGautam\nGavan\nGeronimo\nGianfranco\nGildardo\nGreg\nGurshaan\nGurtaj\nHaden\nHamzah\nHarman\nHarshaan\nHaruki\nHarut\nHarutyun\nHiro\nHussein\nImanol\nImari\nIrwin\nIseah\nIthan\nIzac\nIzel\nIzmael\nJahmir\nJahsiah\nJaidan\nJakai\nJaleel\nJamarcus\nJarren\nJavan\nJawad\nJayan\nJayse\nJaythan\nJayvyn\nJediah\nJerald\nJeremyah\nJerrod\nJestin\nJezreel\nJhonny\nJian\nJoao\nJoell\nJoeseph\nJoesph\nJosyah\nJuanantonio\nJules\nJun\nKaedyn\nKaelan\nKaidyn\nKailash\nKainen\nKali\nKalyan\nKanan\nKanishk\nKarlos\nKeithan\nKemari\nKenan\nKenshin\nKenyon\nKevon\nKhaleb\nKhristian\nKobi\nKoda\nKotaro\nKrishna\nKyren\nLakai\nLam\nLawson\nLeslie\nLiem\nLoki\nLonnie\nLoren\nMahdi\nMahir\nMannix\nManraj\nMarciano\nMattox\nMaurisio\nMaxximus\nMckay\nMick\nMohamad\nMorris\nMoshe\nMylo\nNaim\nNaveed\nNavin\nNeeko\nNicklaus\nNiklas\nNirvaan\nNolyn\nNoor\nOlivier\nOmid\nOrrin\nPalmer\nParis\nPaulino\nPietro\nRashid\nRayaan\nRegan\nReggie\nRemi\nReyan\nRidge\nRishan\nRoen\nRogan\nRonal\nRonit\nRooney\nRoscoe\nRudolph\nRuhaan\nRuslan\nRussel\nRylie\nRyo\nSai\nSajan\nSaketh\nSalem\nSamarth\nSaxon\nSchuyler\nSelvin\nSerafin\nShannon\nShaunak\nShayden\nShiva\nShiven\nShubham\nSiaosi\nSid\nSilvestre\nSrikar\nStephon\nStorm\nStrummer\nStryker\nSutton\nSydney\nSylar\nSylus\nTaha\nTariq\nTaven\nTeegan\nTennyson\nTenzin\nThai\nTiberius\nTimofey\nTlaloc\nTre\nTremaine\nTrevin\nTreyvon\nTru\nTRUE\nTylor\nTyshawn\nUlyses\nUsman\nVaibhav\nValentine\nVann\nVed\nVinh\nVitali\nVladislav\nVyom\nXabi\nYared\nYazid\nYisroel\nYobani\nYovanny\nYuvan\nZacharia\nZackariah\nZade\nZak\nZarek\nZayan\nZealand\nZeth\nZyan\nZyon\nAbdias\nAbdul\nAbdulaziz\nAbdullahi\nAbhimanyu\nAdien\nAdyan\nAhaan\nAisea\nAkshath\nAl\nAldrin\nAlexei\nAlfonzo\nAllister\nAlon\nAmaree\nAmaury\nAmen\nAmiel\nAmilcar\nAmin\nAnant\nAnder\nAndrez\nAnguel\nAnshul\nAran\nArash\nAreg\nArjuna\nArmondo\nArsh\nAsahel\nAtzel\nAvion\nAxell\nAydenn\nAyman\nAyub\nAzaan\nBaruch\nBastian\nBaxter\nBeckam\nBenjamen\nBladimir\nBlas\nBradlee\nBraedyn\nBrandin\nBraxten\nBrigham\nBriley\nBritton\nBryon\nCage\nCai\nCaio\nCalen\nCarsyn\nCashius\nCasimir\nCecil\nCedar\nChaise\nChayse\nChazz\nCipriano\nCiro\nClement\nCliff\nColtin\nConan\nCorde\nCru\nCruise\nDaelen\nDaemon\nDalen\nDaquan\nDarek\nDarrian\nDarrius\nDashawn\nDastan\nDavi\nDavien\nDavyn\nDeklan\nDemario\nDemetrio\nDeric\nDeshon\nDevaughn\nDiangelo\nDior\nDmitri\nDmitriy\nDodge\nDonta\nDov\nDrayden\nDuran\nDyland\nDylen\nDylin\nEben\nEdin\nEdsel\nEladio\nElie\nElija\nElkin\nEmin\nEren\nErickson\nEthanjacob\nEthanjames\nEthanjohn\nEthyn\nEyan\nEyden\nEytan\nEziah\nEzio\nFarid\nFenix\nFiliberto\nFischer\nFloyd\nFrancesco\nFranko\nFransisco\nGabrial\nGaren\nGareth\nGermain\nGevorg\nGiovonni\nGor\nGrayden\nGrey\nGryphon\nGurveer\nHakeem\nHakob\nHalen\nHanson\nHomer\nIann\nIdan\nIlias\nIlyas\nIsak\nIverson\nJacari\nJadan\nJae\nJaeson\nJaiveer\nJakobe\nJamarion\nJameer\nJamel\nJamin\nJaquan\nJashua\nJasiri\nJathan\nJayon\nJeanpaul\nJeramyah\nJeren\nJess\nJessey\nJeziah\nJhovany\nJiovani\nJoab\nJocsan\nJohnatan\nJona\nJonavan\nJoseguadalupe\nJosejulian\nJossue\nJotham\nJuanluis\nJuanmiguel\nJullien\nJulyan\nKaedon\nKaidan\nKailer\nKaisei\nKaiser\nKalin\nKalob\nKalub\nKamani\nKarmelo\nKarol\nKarsen\nKavan\nKawika\nKaylen\nKeano\nKento\nKeny\nKerry\nKeston\nKevyn\nKiaan\nKidus\nKieren\nKion\nKirby\nKonstantinos\nKorben\nKoston\nKylar\nKylin\nLadarius\nLamonte\nLandan\nLaurence\nLavell\nLavon\nLeandre\nLebron\nLelan\nLevin\nLevon\nLior\nLucciano\nLux\nLyam\nLynden\nLysander\nMacklin\nMadison\nMalcom\nMalique\nMargarito\nMarkos\nMartell\nMarwan\nMasyn\nMatisse\nMatt\nMatteus\nMatthieu\nMattix\nMavrik\nMaxime\nMaximillion\nMichelangelo\nMurad\nMykah\nNapoleon\nNarciso\nNatan\nNavraj\nNazareth\nNehemias\nNeymar\nNicodemus\nNiels\nNihal\nNilmar\nNishanth\nNizar\nOjas\nOlin\nOllie\nOmri\nOrson\nOz\nPaden\nPharaoh\nPranay\nRahman\nRai\nRaihan\nRain\nRandal\nRashawn\nRavi\nRees\nRegino\nReign\nReyansh\nReymond\nRion\nRishit\nRithvik\nRivers\nRobel\nRobinson\nRoc\nRockwell\nRodrick\nRoel\nRohit\nRojelio\nRoosevelt\nRosendo\nRui\nRuvim\nSaige\nSaleh\nSamay\nSander\nSankalp\nSartaj\nSenai\nSeven\nShai\nShilo\nSiddhanth\nSiddhartha\nSire\nSloan\nSmith\nStacy\nStetson\nStevan\nStrider\nSultan\nSyler\nTakeo\nTallon\nTamir\nTan\nTao\nTaras\nTarek\nTavian\nTavion\nTavon\nTej\nTheron\nThien\nTonatiuh\nTrajan\nTrenten\nTrysten\nTydus\nUlices\nVadim\nVihan\nVijay\nWaylan\nWestyn\nWolf\nWylie\nXaiver\nYaakov\nYasir\nYordi\nYosgar\nYosuf\nYug\nZach\nZacharie\nZacheriah\nZaven\nZavian\nZayn\nZekiel\nJacob\nDaniel\nJayden\nAnthony\nMatthew\nAlexander\nEthan\nDavid\nAndrew\nNathan\nNoah\nAngel\nMichael\nJulian\nJoshua\nAiden\nIsaac\nJonathan\nMason\nAdrian\nChristopher\nJoseph\nJose\nBenjamin\nGabriel\nAaron\nDylan\nElijah\nRyan\nChristian\nWilliam\nBrandon\nSebastian\nLogan\nIsaiah\nSamuel\nJames\nKevin\nLiam\nDiego\nJesus\nLuis\nJuan\nLucas\nNicholas\nEvan\nCarlos\nJordan\nJackson\nJason\nJustin\nDamian\nLuke\nIvan\nJohn\nCaleb\nDominic\nSantiago\nMiguel\nTyler\nAdam\nJack\nXavier\nJeremiah\nRobert\nGavin\nGiovanni\nIan\nAlejandro\nNathaniel\nBryan\nEli\nWyatt\nAyden\nLeonardo\nOliver\nJosiah\nHenry\nZachary\nAustin\nVictor\nAxel\nMateo\nLandon\nVincent\nConnor\nAndres\nEmmanuel\nAlex\nEduardo\nOwen\nEric\nJesse\nElias\nJorge\nOscar\nThomas\nBrayden\nRyder\nMax\nAlan\nAntonio\nSteven\nAidan\nJaden\nFernando\nLevi\nCameron\nFrancisco\nBlake\nCharles\nHunter\nBrian\nJoel\nRichard\nCesar\nNicolas\nCarter\nTristan\nAbraham\nJavier\nChase\nRoman\nCristian\nManuel\nRicardo\nOmar\nEmiliano\nJake\nKyle\nEdgar\nSean\nBrody\nErick\nEdward\nMiles\nDerek\nMicah\nAlexis\nMario\nIsrael\nMaximiliano\nSergio\nParker\nHudson\nNolan\nHector\nJosue\nJeremy\nEzekiel\nCole\nJohnny\nTimothy\nAndy\nRafael\nDevin\nLeo\nMarcus\nKai\nEdwin\nColton\nJonah\nMark\nGeorge\nFabian\nDamien\nRoberto\nJaxon\nMartin\nRuben\nEmilio\nRaymond\nKayden\nCooper\nMaxwell\nPedro\nAbel\nAsher\nAdan\nKaleb\nMarco\nJoaquin\nColin\nHayden\nGerardo\nPatrick\nKaden\nPaul\nEmanuel\nRiley\nArmando\nEsteban\nBradley\nErik\nKenneth\nCody\nAndre\nCaden\nAshton\nEzra\nCruz\nBryce\nCarson\nPreston\nIsmael\nPeter\nJace\nJude\nMaximus\nRaul\nAngelo\nJared\nGrayson\nJaiden\nMarcos\nBentley\nJaime\nWesley\nDonovan\nPablo\nJaxson\nEnrique\nTravis\nJulio\nSalvador\nSeth\nFelix\nShane\nLuca\nCharlie\nDeclan\nMoises\nRylan\nSaul\nBrady\nLorenzo\nDominick\nIker\nJohnathan\nCash\nKingston\nArturo\nTrevor\nTroy\nAlberto\nTheodore\nDean\nGrant\nLincoln\nGael\nJameson\nRodrigo\nUriel\nBryson\nJeffrey\nMalachi\nSilas\nMaddox\nAlfredo\nFrank\nGustavo\nErnesto\nTanner\nCayden\nGage\nMatteo\nAllen\nLukas\nSimon\nDanny\nHugo\nAlbert\nCalvin\nArthur\nDante\nIssac\nRomeo\nSawyer\nDrake\nRamon\nKaiden\nLeonel\nEnzo\nNoel\nIzaiah\nMathew\nEaston\nGiovani\nYahir\nMilo\nChris\nMauricio\nGriffin\nElliot\nJaylen\nJimmy\nZane\nGreyson\nBrayan\nEverett\nAden\nSkyler\nDarren\nJayson\nJudah\nXander\nJax\nRandy\nBraden\nStephen\nCollin\nJasper\nMaximilian\nConner\nHarrison\nZion\nGuillermo\nSpencer\nEmmett\nIsaias\nAdriel\nEddie\nGarrett\nJoey\nShawn\nGregory\nJakob\nWeston\nNoe\nOrlando\nRene\nDrew\nJulius\nEzequiel\nJohan\nLanden\nAnderson\nFinn\nPhoenix\nVicente\nJay\nChance\nDerrick\nRowan\nAlonzo\nAmir\nAvery\nCyrus\nBennett\nPeyton\nPhillip\nTony\nUlises\nAldo\nElliott\nArjun\nLouis\nQuinn\nDillon\nJerry\nMoses\nDesmond\nDustin\nGiovanny\nNico\nBrendan\nBryant\nMarvin\nMatias\nAlonso\nJayce\nPaxton\nAli\nJett\nOrion\nRussell\nCaiden\nGianni\nLeon\nMyles\nAlessandro\nAlvaro\nDexter\nHolden\nAlfonso\nOsvaldo\nTyson\nKyler\nNehemiah\nRocco\nRudy\nScott\nAlec\nCristopher\nMaverick\nAarav\nJoe\nNikolas\nTaylor\nZander\nAtticus\nSteve\nBruce\nFelipe\nDominik\nRohan\nRonald\nWalter\nFrankie\nBeau\nCamden\nNickolas\nTrent\nCorbin\nTitus\nXavi\nRiver\nRogelio\nRonan\nRyker\nAllan\nKian\nRicky\nAugust\nDevon\nJulien\nAlvin\nJairo\nLawrence\nKameron\nKeith\nNiko\nTrenton\nValentino\nAce\nClayton\nKieran\nLarry\nAmari\nByron\nLeland\nUriah\nDamon\nEmerson\nGilbert\nKellen\nZayden\nAri\nColby\nGraham\nIgnacio\nKellan\nMarc\nMarlon\nBodhi\nGiancarlo\nKing\nMisael\nRoy\nDennis\nRhys\nRodolfo\nTucker\nTy\nDane\nJonas\nReid\nSam\nBeckett\nDarius\nEfrain\nGilberto\nKeegan\nRey\nSonny\nLionel\nPhilip\nRamiro\nRoger\nTomas\nAgustin\nRoyce\nCade\nDario\nDorian\nIbrahim\nReed\nBraxton\nBrennan\nCasey\nFranklin\nSantino\nDallas\nJalen\nMaximo\nZachariah\nBruno\nHumberto\nJuanpablo\nMalik\nNelson\nRolando\nZackary\nJovani\nKobe\nNeil\nRaiden\nRay\nTristen\nWarren\nAryan\nFreddy\nGunner\nIshaan\nNathanael\nPrince\nDerick\nJohann\nKane\nLuciano\nMarshall\nValentin\nArcher\nBranden\nCristiano\nFinley\nGideon\nIrvin\nMike\nXzavier\nAyaan\nBraylon\nBrenden\nColt\nCorey\nDeegan\nJunior\nMariano\nQuentin\nUrijah\nAdolfo\nArmaan\nCain\nCarlo\nDonald\nJessie\nLondon\nRigoberto\nAbram\nAriel\nGrady\nKelvin\nLeandro\nLucian\nMarcelo\nOdin\nSolomon\nUlysses\nWaylon\nAdrien\nAlijah\nMohammad\nRyland\nBrock\nEstevan\nJovanny\nKade\nKenny\nMalakai\nWilson\nJovanni\nMakai\nMitchell\nNixon\nPierce\nArmani\nArnav\nAydan\nDavian\nKash\nMuhammad\nRonin\nAditya\nBrycen\nEden\nIsai\nJustice\nLuka\nMalcolm\nSantos\nTommy\nAlexzander\nCamilo\nCarmelo\nEliseo\nElvis\nJair\nKnox\nLeonard\nLucca\nMorgan\nNikolai\nOctavio\nTrey\nYael\nAron\nAydin\nConor\nDalton\nFranco\nKrish\nKristian\nMadden\nMathias\nRex\nSoren\nStanley\nCurtis\nGary\nGeovanni\nHarley\nIsaak\nJadon\nJaycob\nKristopher\nDouglas\nFinnegan\nKenji\nNathen\nBraeden\nCohen\nDavis\nGerman\nKhalil\nLance\nMaurice\nRoland\nVihaan\nBrett\nEugene\nJasiah\nMarcel\nRory\nYair\nBenicio\nBrodie\nDarian\nDarwin\nDereck\nEfren\nGunnar\nLennon\nPorter\nReece\nShaun\nSiddharth\nTalon\nTobias\nVan\nWinston\nCannon\nChad\nDavin\nDilan\nJovany\nLane\nMaxim\nRayan\nYusuf\nZechariah\nAaden\nAhmed\nElisha\nIzayah\nKeanu\nKendrick\nKolton\nLeonidas\nLouie\nMatthias\nNikhil\nPranav\nRaphael\nTerry\nWalker\nZain\nAhmad\nBen\nBilly\nBronson\nCristobal\nFidel\nFrederick\nGonzalo\nMarkus\nMelvin\nRemy\nRodney\nVince\nBobby\nConrad\nEllis\nHamza\nHarry\nJaxen\nJefferson\nJorden\nKarson\nKingsley\nMekhi\nMiguelangel\nNash\nNeymar\nRonnie\nSkylar\nAlek\nBraulio\nBraydon\nDashiell\nElian\nKarter\nMohamed\nAbdiel\nArman\nAthan\nBarrett\nBrooks\nDaxton\nElmer\nJagger\nJoziah\nKainoa\nMaxx\nTaj\nZaid\nAmare\nAsa\nAvi\nBrent\nDawson\nDuncan\nEdison\nGerald\nLewis\nNick\nSemaj\nTate\nAarush\nAlexandro\nAlfred\nClark\nCristofer\nDavion\nDax\nDeandre\nErnest\nEthen\nFlynn\nHarvey\nJonathon\nKasen\nKason\nLandyn\nTheo\nToby\nArian\nCassius\nDakota\nHank\nHendrix\nJamison\nJohnpaul\nKaeden\nKody\nMarcello\nMohammed\nPayton\nRhett\nSage\nVance\nYandel\nDevan\nJacoby\nJaeden\nJoan\nKeven\nKoa\nOsmar\nOtto\nRonaldo\nSidney\nStefan\nSylas\nZack\nZaiden\nArlo\nColten\nDarien\nEddy\nFavian\nHarper\nJermaine\nJoseluis\nLee\nVladimir\nAdonis\nAedan\nAlden\nArley\nBenito\nBernardo\nBodie\nBrennen\nCallum\nDeven\nGino\nHezekiah\nIsiah\nIsidro\nJase\nJaydon\nJuancarlos\nKareem\nKeaton\nLyric\nMayson\nMessiah\nNasir\nOswaldo\nRayden\nReynaldo\nSterling\nAbdullah\nArya\nBraiden\nCedric\nEverardo\nGeovanny\nHernan\nJosh\nJullian\nMaksim\nQuincy\nRalph\nRamses\nReese\nThiago\nVincenzo\nApollo\nBraylen\nCory\nEver\nFrancis\nKen\nKeoni\nLegend\nNikko\nRocky\nStephan\nTerrence\nTrystan\nAndreas\nCrosby\nDangelo\nDillan\nGiovany\nIrving\nJamari\nJeffery\nKillian\nMarley\nReef\nSebastien\nWillie\nAnton\nAyush\nDeangelo\nDevyn\nEan\nEmery\nFredy\nIzaac\nLenny\nNestor\nPaulo\nReginald\nRemington\nRylee\nSamson\nSeamus\nVeer\nWill\nAntony\nArnold\nBenson\nBrendon\nDarrell\nDemetrius\nDhruv\nDuke\nEwan\nHeriberto\nIshan\nJai\nJet\nJosemanuel\nLamar\nMarcelino\nMasen\nMaximillian\nMikel\nNigel\nPierre\nRio\nRobin\nTristin\nYerik\nZeus\nAbner\nAchilles\nAidyn\nAjay\nAnay\nAyan\nBenny\nDominique\nGerard\nGerson\nGian\nGianluca\nGordon\nJaydan\nJaydin\nJeancarlo\nJensen\nKamron\nKenzo\nKoen\nLennox\nMerrick\nOmari\nRaymundo\nReagan\nRick\nSammy\nShiloh\nSincere\nTerrell\nWade\nWayne\nYeshua\nYuvraj\nAnish\nAntoine\nBailey\nBilal\nCaesar\nCallen\nCason\nDimitri\nEder\nEliel\nEnoch\nForrest\nGauge\nHarold\nIsac\nJahir\nJedidiah\nKaleo\nKyan\nMaxton\nOskar\nPresley\nRishi\nSaid\nStone\nSullivan\nTadeo\nTristian\nYosef\nAaryan\nAdair\nAndrey\nAnsh\nAston\nAzariah\nBeckham\nBo\nBode\nBoden\nClyde\nCorban\nDeacon\nDestin\nGavyn\nImran\nIsael\nJael\nJericho\nJerome\nKain\nKamari\nKennedy\nQuintin\nReuben\nTyrone\nVaughn\nYovani\nZachery\nZavier\nAlexandre\nAnders\nAnson\nAres\nAugustine\nAzael\nBowen\nCairo\nCallan\nCarl\nClinton\nDamion\nEmil\nErnie\nFord\nGuadalupe\nHoward\nIshmael\nJacobo\nJamal\nJeshua\nJon\nJovan\nJustus\nKonnor\nLeobardo\nManny\nQuinton\nRylen\nSahil\nSamir\nThaddeus\nTiago\nVivaan\nYousef\nZackery\nAndrei\nAusten\nAydenn\nBaron\nBently\nChanning\nDeon\nDwayne\nElan\nEly\nGenaro\nGlenn\nHarlan\nIsacc\nJohnathon\nKalel\nKarim\nKayson\nKeenan\nKhalid\nKorbin\nKymani\nLucien\nMaddex\nMagnus\nMicheal\nMikah\nMilan\nMilton\nNarek\nNeel\nPrinceton\nRico\nShaan\nTatum\nTobin\nTruman\nYaseen\nAayden\nAbhinav\nAksel\nAmeer\nAugustus\nBrixton\nChace\nDayton\nEligh\nErwin\nGreysen\nJamie\nJaythan\nJean\nJencarlos\nJeramiah\nJeremias\nJessy\nKale\nKarl\nKasey\nKiran\nKole\nKonner\nLaith\nMaddix\nMassimo\nMikael\nNate\nObed\nOtis\nRashad\nRayyan\nRowen\nRoyal\nSalvatore\nSami\nWest\nWestin\nWestley\nWilmer\nZayd\nZeke\nBoston\nCamren\nCraig\nDash\nDeshawn\nEleazar\nEliot\nFederico\nFletcher\nGregorio\nHayes\nImmanuel\nIsmail\nIzaak\nJaidyn\nJan\nJordyn\nKamden\nKayleb\nKent\nKyran\nLeif\nLisandro\nLucio\nLuisangel\nMajor\nMarko\nMarquis\nMemphis\nMustafa\nRemi\nRenzo\nRoderick\nRyu\nTerrance\nTrace\nTripp\nVadhir\nYoussef\nZyaire\nAdriano\nAnsel\nBlaze\nBroderick\nCamron\nCoby\nCormac\nDan\nDarryl\nDaylen\nDenzel\nDonnie\nDraven\nEdmund\nEliezer\nEros\nGuy\nIlan\nJaedyn\nJamir\nJeff\nJesiah\nJiovanni\nJohnson\nJoseangel\nJosef\nKalani\nKorey\nKris\nKrishna\nLev\nLuc\nMatix\nMattias\nMonte\nNeo\nNikita\nNorman\nReyansh\nReyes\nSantana\nShayne\nUziel\nVedant\nVidal\nVinny\nViraj\nXavian\nZaire\nAbelardo\nAdin\nAldair\nAlexavier\nAmar\nAmin\nAram\nAtreyu\nAzriel\nBlaine\nCael\nCarsten\nCasen\nChasen\nChristofer\nCian\nConstantine\nDarnell\nDev\nDezmond\nFinnian\nFred\nGeovany\nHarris\nHaven\nIdris\nIssak\nJaven\nJavon\nJaxton\nJosemiguel\nKadin\nKael\nLino\nLinus\nMaceo\nMakhi\nMihir\nMikey\nNery\nNoa\nOren\nQuinten\nRami\nRichie\nRigo\nRonny\nRoss\nRyden\nSlater\nSunny\nTremaine\nYoel\nZaden\nZayne\nAddison\nAdiel\nAkhil\nAries\nBeck\nBishop\nBradyn\nBrando\nClarence\nDariel\nDarion\nDavon\nDemian\nDon\nEphraim\nEsai\nEvin\nFinnley\nFranky\nGeovani\nHayk\nHerman\nHugh\nJacen\nJadyn\nJaron\nJohnnie\nKalvin\nKavin\nKeagan\nKruz\nLuiz\nMack\nMauro\nMicaiah\nMiller\nMontgomery\nNahum\nNoam\nOsbaldo\nOsiris\nOziel\nReilly\nRenato\nRishabh\nRosendo\nSky\nTitan\nTurner\nYash\nYusef\nZahir\nZephyr\nAmani\nAmos\nAngad\nAshwin\nBastian\nBlaise\nBrenton\nChandler\nClay\nCrew\nCurren\nDarin\nDenis\nDiesel\nDino\nDomingo\nDonte\nEben\nEian\nEitan\nEloy\nElvin\nEmmet\nEzrah\nFaris\nGibran\nGray\nGraysen\nHasan\nHaziel\nHeath\nItzae\nJadiel\nJancarlos\nJaren\nJaysen\nJayvyn\nJed\nJob\nKamren\nKekoa\nKoby\nKye\nLandin\nLawson\nLayne\nLex\nMakaio\nMarques\nMickey\nMusa\nNathanial\nNevan\nPaolo\nRaghav\nRider\nRishaan\nRomel\nRoque\nRoshan\nSaleh\nSameer\nSimeon\nSione\nSol\nTai\nThatcher\nThor\nTodd\nTonatiuh\nTrever\nWallace\nXavior\nYohan\nYurem\nZakary\nZephaniah\nAleksander\nArath\nAren\nAsael\nAtlas\nAvan\nBear\nBentlee\nBraedon\nBryden\nBrysen\nCanon\nCiaran\nCuauhtemoc\nDaren\nDarey\nDempsey\nDerik\nDion\nDonavan\nEdmond\nEkam\nEliah\nEmir\nEmory\nErvin\nEsau\nEshaan\nFabio\nFaustino\nFredrick\nGeoffrey\nGlen\nHassan\nIsreal\nJakai\nJaylin\nJelani\nJeremih\nJethro\nJim\nJonny\nJoshuah\nJuanjose\nKabir\nKaito\nKamran\nKanoa\nKenan\nKorben\nLachlan\nMalaki\nMattix\nMikhail\nMykel\nNehemias\nOri\nOsiel\nPerry\nPete\nPhineas\nRandall\nRyley\nSabastian\nSahib\nSamarth\nShay\nShia\nStellan\nSyrus\nTalan\nTavin\nTayden\nTeagan\nTeo\nTerence\nTorin\nViktor\nYovanni\nZac\nZen\nZuriel\nAamir\nAbdulaziz\nAbiel\nAkash\nAkira\nAlekzander\nAlton\nAmadeus\nAnibal\nArion\nAris\nArron\nAtharv\nAustyn\nAziel\nBernard\nBlair\nBrantley\nCarmine\nCase\nCayleb\nCayson\nCharly\nChaz\nCornelius\nDale\nDamarion\nDashawn\nDeanthony\nDemarcus\nDesean\nDomenic\nDyland\nEamon\nEason\nEdan\nEdson\nEnoc\nEshan\nFlavio\nGadiel\nGannon\nGibson\nGil\nHadi\nHamilton\nHanson\nHenrik\nHiroshi\nIra\nJabari\nJaciel\nJackie\nJacky\nJad\nJareth\nJarrod\nJaziel\nJeancarlos\nJhonny\nJin\nJionni\nJoell\nJosemaria\nJuelz\nKaedyn\nKaine\nKamryn\nKarol\nKenton\nKeon\nKhristian\nKylan\nKyree\nLeopoldo\nLevon\nLior\nLloyd\nLucky\nLyle\nMac\nMaison\nMarcell\nMaximilliano\nMaximino\nMyron\nNikola\nNorberto\nOakley\nOlivier\nOm\nParsa\nPavel\nRajon\nRavi\nReymundo\nRian\nRome\nSaeed\nShaurya\nShea\nSheldon\nShreyas\nStefano\nStephon\nSutton\nTejas\nTrinidad\nTriston\nTyce\nValentine\nVarun\nWilfredo\nWolfgang\nYadiel\nZakai\nZayan\nZiggy\nAj\nAnakin\nAntoni\nAria\nArjan\nArmen\nArtem\nArvin\nBarron\nBayron\nBrad\nBrice\nBrogan\nBrooklyn\nBroxton\nBryton\nCalder\nCale\nChaim\nClifford\nCordell\nCullen\nDaksh\nDashel\nDaven\nDeagan\nDemetri\nDomenico\nDrayden\nEithan\nElyjah\nEmmitt\nFiliberto\nFrancesco\nFreddie\nGavino\nGene\nGiacomo\nGraeme\nGrey\nGurshan\nGus\nHagen\nHalen\nHussein\nIsa\nIzek\nIzrael\nJakobe\nJaleel\nJamil\nJancarlo\nJaxx\nJaydenn\nJaykob\nJenson\nJerimiah\nJhonathan\nJosias\nJuanmanuel\nJuliani\nKannon\nKeane\nKelly\nKenyon\nKirk\nKristofer\nKurt\nKyson\nLamont\nLangston\nLeeland\nLester\nLizandro\nLochlan\nMaddux\nManolo\nManraj\nMarek\nMarquise\nMarshawn\nPierson\nReggie\nRithvik\nRoan\nRony\nRooney\nSyed\nTegan\nTim\nTom\nTrenten\nTrevin\nUlisses\nVito\nWillem\nYahel\nYobani\nYonatan\nYonathan\nYousif\nYuvan\nZakaria\nAdnan\nAizen\nAlain\nAleksandr\nAlexsander\nAlston\nAmi\nAnirudh\nArham\nArmand\nArnulfo\nAshley\nAthen\nAurelio\nAuston\nAven\nBradford\nBrandan\nBranson\nBroden\nBrodey\nBronx\nCalen\nCampbell\nCarsen\nCasper\nCeasar\nChester\nChevy\nCillian\nClaudio\nClifton\nClive\nCristo\nDamari\nDanilo\nDaron\nDashiel\nDeion\nDemetrio\nDemitri\nDerrion\nDontae\nEdgardo\nEliyahu\nElyas\nErin\nEthaniel\nFaisal\nFermin\nFloyd\nGabino\nGaige\nGamaliel\nGeronimo\nGio\nGraydon\nGreg\nGurnoor\nHaiden\nHarlem\nHaroon\nHiram\nHoracio\nIlya\nIndiana\nJacques\nJakari\nJaxsen\nJaydyn\nJaylon\nJayse\nJayvin\nJeronimo\nJhonatan\nJimmie\nJody\nJonatan\nJones\nJordon\nJuandiego\nJuaquin\nJustyn\nKadyn\nKahlil\nKaydin\nKaysen\nKendall\nKhai\nKiaan\nKohen\nKolten\nKyron\nLayton\nLazaro\nLian\nLuther\nLyndon\nMakoa\nMalek\nMalikai\nMarciano\nMarquez\nMars\nMathieu\nMatt\nMenachem\nMika\nNatanael\nNaythan\nNiccolo\nObadiah\nOcean\nOzzie\nPatricio\nRain\nRaymon\nRayshawn\nRehan\nRhyder\nRickey\nRon\nRonav\nSahir\nSai\nSalem\nSammuel\nSandro\nShayaan\nShayan\nSlade\nSoham\nStetson\nStuart\nSurya\nSylus\nTaven\nTigran\nTimmy\nTrevon\nTyree\nUlices\nVernon\nVishnu\nWes\nYaakov\nYousuf\nZakariya\nZamir\nZayn\nAaiden\nAakash\nAarin\nAariz\nAarnav\nAayan\nAbdul\nAbdulrahman\nAbhiram\nAbisai\nAdalberto\nAjani\nAleczander\nAlistair\nAmadeo\nAmado\nAmador\nAmit\nAmmar\nAntwan\nArchie\nArden\nArsen\nAsh\nAugustin\nAzaan\nBaltazar\nBarry\nBrandt\nBrandyn\nBrayson\nBridger\nCaeden\nCal\nCalum\nCastiel\nCecil\nCoen\nColeman\nColson\nCorbyn\nCris\nCristhian\nCru\nDallin\nDarrien\nDarrin\nDejon\nDeklan\nDemari\nDenim\nDenny\nDenver\nDeonte\nDerian\nDevlin\nDmitri\nDresden\nDuane\nDylann\nEdric\nEliazar\nEnder\nEnrico\nEoin\nErickson\nEsequiel\nExavier\nFausto\nFisher\nFynn\nGaven\nGenesis\nGeovannie\nGiovonni\nHelio\nHerbert\nHonor\nIbraheem\nIke\nItai\nIzak\nIziah\nJamar\nJamarion\nJamin\nJarren\nJarrett\nJasen\nJasiel\nJathan\nJavion\nJaycen\nJayven\nJayvon\nJess\nJhovany\nJohannes\nJohny\nJordi\nJordy\nKairo\nKaison\nKarsen\nKaylen\nKegan\nKeller\nKento\nKeyon\nKhang\nKiyan\nKoda\nKolby\nKory\nKurtis\nKylen\nLars\nLathan\nLazarus\nLeroy\nLinkin\nLyam\nMadison\nMatai\nMavrick\nMoshe\nMylo\nNayan\nNeithan\nNicolo\nNima\nOden\nQuinlan\nRanvir\nRaylan\nReily\nRoel\nRohit\nRonak\nRonen\nRonit\nRudolph\nRui\nRylie\nSabian\nSaif\nSarkis\nSasha\nShaya\nSir\nSylar\nSylis\nSyncere\nTakoda\nTariq\nTavion\nTobey\nTosh\nTrajan\nTyron\nUmar\nWiley\nWren\nYanuel\nYasir\nAaditya\nAbbas\nAbdirahman\nAbimael\nAbrahan\nAbran\nAdler\nAdvay\nAdvik\nAgastya\nAidin\nAkshaj\nAlen\nAlias\nAmaury\nAmilcar\nAmrit\nAnder\nAndersen\nAndrez\nAngus\nArav\nArik\nArius\nArjen\nAshtin\nAtom\nAudric\nAurelius\nAxl\nAxton\nBenedict\nBill\nBladimir\nBoaz\nBoris\nBrighton\nCadence\nCaelan\nCanaan\nCarmello\nCashton\nCharley\nChayse\nConan\nCortez\nCyril\nDamani\nDandre\nDaniyal\nDarrion\nDarryn\nDastan\nDave\nDavien\nDaymian\nDegan\nDeron\nDerrek\nDionicio\nDonaven\nDonny\nDraco\nDutch\nDyllan\nEarl\nEber\nElie\nElijiah\nElio\nEliyah\nEvander\nEyan\nEzio\nFenix\nFischer\nForest\nFox\nFroilan\nGavriel\nGeo\nGionni\nGiuliano\nHansen\nHaris\nHarlen\nHaruki\nHeber\nHenri\nHollis\nHubert\nHumza\nIlias\nIliya\nImanol\nIzaya\nIzel\nJadden\nJade\nJaelyn\nJafet\nJaidon\nJairus\nJakub\nJarek\nJawad\nJaycee\nJayon\nJeffren\nJeovanny\nJermiah\nJireh\nJoao\nJoseantonio\nJosedejesus\nJostin\nJourney\nJowell\nJun\nKaileb\nKallen\nKaranveer\nKarlo\nKarmelo\nKarsten\nKarthik\nKaveh\nKayne\nKelton\nKeshav\nKeyan\nKhairi\nKhaled\nKhoa\nKhoi\nKirin\nKorbyn\nKyden\nKyren\nLandry\nLaron\nLarson\nLeighton\nLeslie\nLevy\nLoren\nLou\nLucius\nMace\nMahdi\nMakhai\nMarlo\nMateen\nMaxemiliano\nMccoy\nMichaelangelo\nMichelangelo\nMinh\nMorrison\nNaim\nNam\nNatan\nNazir\nNeftali\nNicco\nNicolai\nNolen\nNomar\nNyjah\nOctavian\nOlin\nOmid\nOzzy\nPascual\nPerseus\nRadley\nRafe\nRahul\nRaja\nRajan\nRaleigh\nRamsey\nRanbir\nRandal\nRaven\nRayhan\nRaziel\nReyli\nReymond\nRishab\nRishan\nRishik\nRitchie\nSamvel\nSanjay\nSartaj\nSedrick\nSevastian\nShai\nShlok\nSiddarth\nSloan\nSohan\nSrihan\nStevan\nSylvester\nTaha\nTahj\nTakeo\nTanush\nTeddy\nTevin\nTracy\nTristyn\nUriyah\nValente\nVincente\nWaleed\nWarner\nWylie\nYehoshua\nYosgart\nYuri\nZacarias\nZach\nZacharias\nZeppelin\nZev\nZyan\nAadi\nAarion\nAayush\nAbdias\nAbhay\nAdarsh\nAdel\nAdi\nAeden\nAharon\nAkram\nAkshay\nAlfonzo\nAlon\nAman\nAmarion\nAmaru\nAmbrose\nAmen\nAmogh\nAnas\nAndree\nAngelgabriel\nAnjel\nAnthonie\nAnwar\nApolinar\nAquiles\nAramis\nArin\nArsh\nArshan\nArtin\nArush\nAryaman\nAshten\nAtharva\nAuden\nAviel\nAvin\nAvinash\nAxcel\nAxell\nAyman\nAyrton\nBradly\nBraylin\nBrayton\nBrenner\nBrennon\nBuster\nCaine\nCaius\nCallahan\nCanyon\nChael\nChauncey\nChayton\nChetan\nCj\nClemente\nColeton\nColter\nCornell\nCurran\nCy\nCylas\nCylis\nDartagnan\nDavey\nDeaven\nDecker\nDeen\nDelano\nDemitrius\nDeondre\nDereon\nDeric\nDevante\nDevaughn\nDhruva\nDiamond\nDonavin\nDonavon\nDonnovan\nDonta\nDovid\nDublin\nDwight\nEarnest\nEberardo\nEduard\nEdwardo\nEiden\nElder\nEmad\nEtienne\nFarhan\nFransisco\nGalvin\nGerrit\nGiuseppe\nGohan\nGriffen\nHakop\nHamzah\nHari\nHaseeb\nHawk\nHenrry\nHuxley\nIdan\nIlijah\nIlyas\nIndigo\nIndy\nIrwin\nIsayah\nIzeah\nIzmael\nJadan\nJae\nJaedon\nJahaziel\nJaiveer\nJalyn\nJameer\nJamel\nJanuel\nJarvis\nJavan\nJaxin\nJayceon\nJaysean\nJayvion\nJazz\nJeevan\nJehu\nJeremyah\nJessiah\nJezreel\nJiraiya\nJohncarlos\nJonan\nJordin\nJosedaniel\nJosmar\nJossue\nKaiser\nKaj\nKalan\nKamil\nKarlos\nKavan\nKean\nKeandre\nKeelan\nKeiran\nKeshawn\nKevyn\nKhyree\nKipton\nKlayton\nKnight\nKonstantinos\nKooper\nKrithik\nLamarr\nLatrell\nLaurence\nLeander\nLonnie\nLyon\nLyrik\nMadix\nMalakhi\nMaleek\nMansour\nMarcellus\nMarcoantonio\nMarlowe\nMarshaun\nMatan\nMatteus\nMaximilien\nMaximillion\nMckay\nMica\nMichel\nMorris\nMykah\nNakoa\nNareg\nNason\nNavid\nNeal\nNeri\nNile\nOjani\nOmri\nOsmin\nPiero\nPrithvi\nRaffi\nRam\nRandolph\nRasheed\nRaydel\nRaylen\nRegan\nRegino\nRen\nRigel\nRiku\nRobbie\nRowdy\nRusty\nRyann\nRyken\nRylin\nSachin\nSalomon\nSatvik\nSaxon\nSayed\nSelvin\nSeven\nShant\nSheamus\nShepard\nShivam\nSiddhant\nSiddhanth\nSina\nSriram\nSultan\nSydney\nSyler\nTakumi\nTamim\nTanav\nTaran\nTaylen\nThurston\nTiger\nTino\nTownes\nTrayvon\nTremayne\nTylen\nTyrese\nTyrus\nTyshawn\nUbaldo\nUzziel\nVansh\nVardan\nVikram\nVinh\nVyom\nWillard\nXayden\nYamil\nYehuda\nZahid\nZak\nZenon\nAalijah\nAdael\nAdhrit\nAdien\nAdit\nAdrean\nAdvaith\nAgam\nAhmir\nAideen\nAidenn\nAidric\nAithan\nAkiva\nAkshat\nAldrich\nAleksey\nAlister\nAllister\nAmarii\nAmauri\nAmeen\nAmon\nAnden\nAndranik\nAndrea\nAneesh\nAnik\nAnshul\nAntonino\nAntuan\nAra\nAran\nArhan\nAristeo\nAriston\nArnoldo\nAsahel\nAshby\nAslan\nAstin\nAvian\nAzlan\nBanyan\nBaxter\nBaylen\nBaylor\nBecker\nBenaiah\nBenigno\nBenton\nBenyamin\nBjorn\nBlue\nBob\nBosco\nBradlee\nBraydin\nBreckin\nBret\nBreyden\nBriggs\nBritton\nCaeleb\nCaelum\nCaio\nCamryn\nCarlton\nCavan\nCedrick\nCelso\nChamp\nCharleston\nClint\nConstantino\nDade\nDagoberto\nDajuan\nDakotah\nDamar\nDamarcus\nDamyan\nDany\nDarby\nDarrius\nDashaun\nDawud\nDayne\nDayvon\nDemario\nDeniz\nDesi\nDestan\nDezi\nDhilan\nDidier\nDillinger\nDionte\nDomonic\nEdy\nEhsan\nElija\nElisandro\nElnathan\nElon\nElson\nEmmit\nEriberto\nErich\nEron\nEsteven\nEsvin\nEugenio\nEvangelos\nEvans\nExzavier\nEythan\nFabrizio\nFerdinand\nFilip\nFinlay\nFrancois\nFredi\nFroylan\nGautham\nGehrig\nGevork\nGiorgio\nGiovannie\nGiulio\nGor\nGrayden\nHaden\nHaider\nHamlet\nHaniel\nHarkirat\nHarout\nHassani\nHayato\nHaydn\nHendrik\nHenley\nHisham\nHomero\nHosea\nHovanes\nHrach\nHudsen\nHyrum\nIban\nIden\nIgnatius\nInaki\nIsaia\nIsaih\nIssiah\nJaasiel\nJaaziel\nJaccob\nJacobanthony\nJacobe\nJaelen\nJahmari\nJaison\nJalil\nJarod\nJarred\nJatin\nJavian\nJaylan\nJaymes\nJayren\nJc\nJencarlo\nJenner\nJeron\nJessi\nJevon\nJohnmichael\nJonathen\nJory\nJulyan\nKage\nKaidyn\nKalen\nKamal\nKaram\nKaran\nKartik\nKashton\nKasper\nKavi\nKavish\nKaydan\nKendal\nKendell\nKennith\nKenta\nKerem\nKeyshawn\nKhalif\nKieren\nKilian\nKirby\nKishan\nKoji\nKoston\nKrew\nKrystian\nKylar\nKyrell\nLamarion\nLauro\nLeiland\nLemuel\nLeviticus\nLoic\nLoyal\nLuigi\nMaeson\nMahmoud\nMakari\nMalcom\nManveer\nManvir\nMarius\nMarkell\nMarlow\nMarshal\nMarvion\nMarwan\nMasyn\nMatheo\nMatin\nMaxime\nMehki\nMikai\nMukund\nMurray\nMykael\nNader\nNaeem\nNahom\nNaithan\nNamish\nNaoki\nNasser\nNathyn\nNavraj\nNeev\nNicodemus\nNicoli\nNiklas\nNiles\nNishan\nNoble\nNova\nOdysseus\nOjas\nOleg\nOllie\nOmer\nOnyx\nOrrin\nOzil\nPalmer\nPharaoh\nQasim\nRafi\nRahim\nRaj\nRajveer\nRamy\nRamzi\nRaudel\nRayvon\nRichy\nRidge\nRitvik\nRivers\nRjay\nRobel\nRockwell\nRoen\nRohin\nRoosevelt\nRoscoe\nRushil\nSahid\nSaket\nSamanyu\nSchuyler\nSergey\nSevag\nShamus\nShepherd\nShiv\nShmuel\nSilvano\nSkye\nSmith\nSneijder\nStryder\nStryker\nSubhan\nSuraj\nTaisei\nTamer\nTarik\nTavian\nTeagen\nTeague\nTed\nTej\nTenoch\nThai\nTheron\nTien\nTimur\nTito\nTj\nTlaloc\nToma\nTommie\nTonny\nTor\nToren\nTre\nTrevion\nTreyvon\nTri\nTruth\nTrysten\nTye\nTylan\nTysen\nTytus\nUziah\nUzziah\nVadim\nVahan\nVaibhav\nVed\nVedansh\nViliami\nVinicio\nVinson\nVivek\nWaseem\nWayde\nWilbert\nWillis\nWolf\nWyland\nWylder\nYahya\nYakov\nYanni\nYared\nYariel\nYohann\nYuma\nZacharia\nZadkiel\nZayaan\nZedekiah\nZekiel\nZyler\nJacob\nJayden\nDaniel\nEthan\nMatthew\nNoah\nAlexander\nAnthony\nNathan\nDavid\nAndrew\nMichael\nAiden\nAngel\nIsaac\nJulian\nMason\nAdrian\nJonathan\nChristopher\nJoshua\nBenjamin\nJoseph\nLiam\nJose\nDylan\nAaron\nElijah\nRyan\nSebastian\nWilliam\nLogan\nGabriel\nChristian\nSamuel\nBrandon\nIsaiah\nJames\nDamian\nKevin\nLucas\nJesus\nLuis\nDominic\nJuan\nEvan\nIvan\nJordan\nDiego\nJackson\nNicholas\nCaleb\nJason\nCarlos\nJohn\nLuke\nAdam\nSantiago\nIan\nJeremiah\nJack\nMateo\nXavier\nRobert\nHenry\nEli\nJosiah\nTyler\nGavin\nAustin\nOliver\nWyatt\nNathaniel\nGael\nAyden\nMiguel\nAlejandro\nOwen\nAlex\nLeonardo\nLandon\nJustin\nGiovanni\nVictor\nZachary\nLevi\nVincent\nConnor\nBryan\nElias\nEric\nThomas\nHunter\nAndres\nSteven\nJesse\nBrayden\nAlan\nJorge\nRyder\nEduardo\nCarter\nCharles\nBlake\nMax\nCameron\nRoman\nAntonio\nAxel\nFrancisco\nOscar\nRichard\nAbraham\nBrian\nJaxon\nEmmanuel\nJeremy\nLeo\nJoel\nTristan\nManuel\nAidan\nFernando\nNicolas\nChase\nCesar\nOmar\nJaden\nJavier\nColton\nHudson\nMicah\nKyle\nRicardo\nNolan\nAlexis\nEmiliano\nEdgar\nSergio\nKai\nErick\nParker\nJake\nCristian\nEzekiel\nEdward\nFabian\nDerek\nIker\nMaxwell\nMiles\nMaximiliano\nSean\nHector\nMario\nAbel\nJosue\nAndy\nEmilio\nJonah\nCole\nMarcus\nJace\nRaymond\nJohnny\nIsrael\nMartin\nAsher\nGeorge\nJoaquin\nBrody\nGrayson\nMark\nRuben\nMarco\nCooper\nJaxson\nPreston\nRafael\nMaximus\nBradley\nEzra\nCarson\nColin\nKayden\nRoberto\nTimothy\nAdan\nDamien\nDevin\nKaleb\nJude\nPedro\nEdwin\nKenneth\nPatrick\nAndre\nErik\nEsteban\nPablo\nDeclan\nGerardo\nLincoln\nLuca\nWesley\nArmando\nCody\nBentley\nPaul\nRiley\nCruz\nIsmael\nCalvin\nDonovan\nTheodore\nBryce\nPeter\nHayden\nEnrique\nEmanuel\nFelix\nDominick\nGrant\nCash\nLorenzo\nAngelo\nDean\nSaul\nKaden\nJaime\nTravis\nMoises\nCharlie\nGustavo\nMarcos\nJameson\nAshton\nCaden\nTroy\nMaddox\nJulio\nMatteo\nRaul\nRomeo\nSalvador\nEverett\nJared\nGreyson\nArthur\nJaiden\nSilas\nAlberto\nSeth\nKingston\nArturo\nBrady\nDante\nJohnathan\nSawyer\nDrake\nLeonel\nDanny\nTanner\nAlbert\nBryson\nRodrigo\nShane\nEmmett\nFrank\nJeffrey\nLukas\nMalachi\nErnesto\nWeston\nTrevor\nGage\nMathew\nNoel\nKing\nJasper\nKaiden\nHugo\nAlfredo\nAllen\nElliot\nHarrison\nRamon\nEnzo\nSkyler\nXander\nEaston\nSimon\nGregory\nUriel\nRylan\nAden\nCayden\nIssac\nMilo\nChris\nDarren\nMyles\nJudah\nIzaiah\nJax\nGriffin\nMauricio\nAvery\nCollin\nIsaias\nConner\nNoe\nLouis\nMaximilian\nElliott\nFinn\nJaylen\nZane\nAmir\nGuillermo\nJay\nJayson\nZion\nBennett\nRowan\nStephen\nJayce\nDesmond\nJulius\nRandy\nLeon\nDillon\nEddie\nUlises\nAnderson\nOrlando\nTyson\nZander\nAlonzo\nSpencer\nAugust\nGarrett\nPhoenix\nVicente\nBruce\nEzequiel\nRicky\nShawn\nAldo\nDexter\nGraham\nYahir\nArjun\nGianni\nJakob\nMaverick\nBrendan\nChance\nJimmy\nTony\nAlvin\nBrayan\nGiovani\nNico\nOrion\nPhillip\nJoey\nMatias\nZayden\nBeau\nDerrick\nJohan\nNehemiah\nPaxton\nRocco\nAli\nAlonso\nTaylor\nAdriel\nPeyton\nCyrus\nLanden\nAce\nDrew\nKameron\nMoses\nNixon\nAri\nAtticus\nJerry\nQuinn\nRyker\nAlec\nCamden\nGiovanny\nKyler\nOsvaldo\nMarvin\nRene\nRogelio\nRudy\nAlfonso\nKian\nTucker\nAarav\nJett\nScott\nDustin\nHolden\nRoyce\nBeckett\nBraden\nDominik\nEmerson\nNickolas\nRonan\nFrankie\nRiver\nWalter\nAlessandro\nFelipe\nLarry\nSantino\nClayton\nNikolas\nPhilip\nTomas\nArcher\nTitus\nEfrain\nReid\nCorbin\nDennis\nKellan\nDallas\nFreddy\nRhys\nSteve\nAllan\nLeland\nRoger\nSam\nValentino\nCade\nBryant\nEden\nJessie\nPrince\nRonald\nAmari\nByron\nLuciano\nRohan\nTy\nCristopher\nJulien\nLionel\nMalakai\nRamiro\nRussell\nGiancarlo\nJonas\nBruno\nJairo\nKash\nMarc\nRoy\nZachariah\nZackary\nGunner\nJoe\nDarius\nKristopher\nNelson\nVihaan\nAgustin\nCamilo\nIgnacio\nKeith\nKellen\nLawrence\nUriah\nXzavier\nCaiden\nColby\nJovanni\nMisael\nNeil\nBodhi\nBrennan\nDalton\nMalcolm\nNiko\nAlvaro\nClark\nMalik\nTrenton\nAbram\nAlijah\nBraxton\nDane\nJunior\nRaiden\nRyland\nTrent\nGilberto\nNeymar\nNikolai\nRay\nXavi\nAyaan\nDamon\nEliseo\nKnox\nLuka\nSolomon\nSonny\nArmani\nCasey\nDevon\nMarlon\nRodolfo\nValentin\nBrenden\nMajor\nMike\nTommy\nAdrien\nGunnar\nJase\nAryan\nBarrett\nCain\nColt\nCurtis\nGerman\nKeegan\nLeandro\nLondon\nQuentin\nReed\nBrock\nDonald\nKade\nMaxim\nRey\nWaylon\nCristobal\nDavian\nGrady\nIsai\nJalen\nKenny\nKieran\nMakai\nMathias\nRex\nTristen\nAron\nBraydon\nConor\nHarry\nIrvin\nNathanael\nYael\nDarian\nDouglas\nMarshall\nMuhammad\nAdolfo\nDorian\nKobe\nLucca\nNathen\nRonin\nWinston\nArnav\nBrycen\nCohen\nCorey\nEugene\nGary\nLance\nRemy\nRonnie\nDario\nDavis\nElian\nFrederick\nJaycob\nLeonard\nMarcelo\nMorgan\nApollo\nFranco\nFranklin\nLucian\nMaximo\nRaphael\nTalon\nTobias\nWarren\nAres\nBraylon\nEstevan\nGideon\nGilbert\nKelvin\nKhalil\nKristian\nLeonidas\nMadden\nOctavio\nArman\nGonzalo\nJair\nJovani\nKane\nKody\nKrish\nMohammad\nRory\nTheo\nTrey\nDerick\nHumberto\nJagger\nLouie\nRoland\nSage\nZechariah\nAditya\nAlden\nAydin\nBenicio\nJoziah\nMaurice\nPierce\nRayden\nReece\nSkylar\nZaiden\nArmaan\nBenson\nCarlo\nEdison\nJovanny\nJuanpablo\nLandyn\nLane\nMatthias\nMohammed\nRayan\nRolando\nSantos\nWilson\nYusuf\nBenny\nBobby\nFrancis\nJustice\nKareem\nKoa\nMessiah\nNash\nRigoberto\nTerry\nVivaan\nAriel\nDax\nElvis\nPorter\nRonaldo\nTate\nAdonis\nAhmad\nArian\nBen\nBilly\nBoston\nBranden\nDangelo\nDavin\nDeven\nEllis\nHank\nJadon\nKarter\nKason\nMariano\nNick\nSamson\nSoren\nSullivan\nThiago\nUlysses\nVaughn\nAaden\nBrett\nBronson\nBrooks\nCarmelo\nDeegan\nElisha\nIshaan\nJefferson\nJohann\nJuancarlos\nRhett\nRocky\nShaun\nStanley\nSylas\nUrijah\nWalker\nAbdiel\nAhmed\nAlexzander\nBeckham\nCallen\nConrad\nCristiano\nKeaton\nOdin\nOtto\nQuincy\nYousef\nAlfred\nCarl\nDeandre\nEddy\nFinley\nFinnegan\nJensen\nJionni\nKenji\nKingsley\nSterling\nYair\nZaid\nArlo\nEthen\nHarvey\nJasiah\nKarson\nKendrick\nMayson\nMohamed\nReese\nRoyal\nVincenzo\nArley\nDakota\nDawson\nDhruv\nGerald\nJeremias\nKeven\nLennon\nMarkus\nNestor\nNikko\nOswaldo\nPrinceton\nRodney\nRyu\nAbner\nAsa\nAthan\nChad\nDavion\nFlynn\nRaymundo\nZain\nAugustine\nBaron\nBraeden\nCallum\nCannon\nEfren\nIsaak\nIzayah\nJacoby\nJaeden\nJaxen\nPranav\nSiddharth\nVince\nAlexandro\nAmare\nBraulio\nColten\nEnoch\nGeovanni\nHamza\nHendrix\nIbrahim\nJon\nJosh\nKaeden\nKeanu\nKen\nMelvin\nSaid\nToby\nVan\nWade\nAbdullah\nAlexandre\nBernardo\nCory\nDereck\nEason\nIrving\nJamie\nJaxton\nReagan\nSheldon\nZayne\nAnton\nAydan\nBowen\nCristofer\nDilan\nEligh\nGino\nIsiah\nIzaac\nJaydon\nJoseluis\nKaleo\nKamden\nKayson\nLegend\nMaximillian\nMicheal\nMitchell\nRyden\nSamir\nTatum\nTerrence\nAidyn\nDuke\nFidel\nJaziel\nJeffery\nJovan\nKenzo\nLewis\nLucio\nMarcello\nMikael\nNasir\nPayton\nWill\nAnson\nBrent\nBrodie\nCassius\nEan\nFord\nJai\nJaydan\nJedidiah\nMarley\nMaxx\nMiguelangel\nMustafa\nOmari\nTerrance\nVance\nAndreas\nAvi\nBoden\nDaxton\nDevyn\nDonte\nElmer\nElvin\nEmmitt\nGionni\nGordon\nGuadalupe\nKainoa\nKasen\nKolton\nLinus\nMasen\nMekhi\nQuinton\nRamses\nTadeo\nYeshua\nAarush\nAchilles\nAntony\nBodie\nDamion\nDan\nDeacon\nDemian\nDeshawn\nErnest\nEver\nEverardo\nFredy\nJamison\nJayceon\nJaylin\nJovany\nKain\nKennedy\nMaison\nMattias\nPresley\nReyansh\nSidney\nTyrone\nVladimir\nZack\nAjay\nBo\nCallan\nClyde\nEmery\nFletcher\nGeoffrey\nHarley\nHarold\nHeriberto\nHoward\nJael\nJerome\nJoan\nJonathon\nJustus\nMarcel\nMarcelino\nMilan\nNikhil\nRaylan\nSemaj\nStefan\nVeer\nAugustus\nAydenn\nBishop\nBrantley\nBrendon\nCrosby\nDarwin\nDashiell\nDemetrius\nFavian\nFreddie\nGauge\nGiovany\nHezekiah\nJamal\nJencarlos\nJermaine\nJet\nLee\nOtis\nRick\nZeus\nBrixton\nBroderick\nCase\nDeangelo\nDevan\nEmmet\nGadiel\nGeovanny\nGerard\nIsac\nIzaak\nJaydin\nJeramiah\nJohnathon\nKeoni\nKonnor\nKymani\nLachlan\nLayne\nLennox\nMaksim\nReuben\nReynaldo\nWayne\nWillie\nYandel\nYosef\nZaire\nAlistair\nAram\nBlaine\nBraiden\nBranson\nCason\nCedric\nChace\nCian\nDayton\nDev\nDraven\nGraysen\nGrey\nIshan\nIsidro\nJackie\nJullian\nKabir\nKalel\nKarim\nKillian\nKiran\nMagnus\nMerrick\nNarek\nOskar\nPatricio\nRico\nSammy\nSantana\nSky\nTerrell\nTitan\nTom\nYahel\nZeke\nAnders\nAnish\nArvin\nAusten\nAyan\nBenito\nBently\nBrennen\nClay\nDenzel\nDwayne\nEleazar\nFederico\nGuy\nHarper\nIsael\nJericho\nKeenan\nKent\nKoen\nLenny\nMatt\nMikel\nNeel\nNoam\nReginald\nRemington\nRio\nSeamus\nShiloh\nSincere\nTeagan\nUziel\nAayan\nAayden\nAustyn\nBraylen\nChandler\nChanning\nEliot\nEsai\nHassan\nJad\nJaysen\nJeshua\nJesiah\nKale\nKonner\nLev\nLong\nLucius\nMack\nMaxton\nObed\nPaulo\nRishi\nRowen\nSarkis\nSunny\nTeo\nWestley\nZavier\nZayd\nAdriano\nAlek\nAlexavier\nAlton\nAndrei\nAnirudh\nAnsh\nAurelio\nAven\nBilal\nCairo\nCamren\nClarence\nCrew\nDale\nDominique\nDuncan\nEmil\nHaven\nJacobo\nJarrett\nJiovanni\nJohnpaul\nKamari\nLaith\nLuc\nLyric\nMalaki\nMarquis\nMylo\nNoa\nPaolo\nRashad\nRichie\nRobin\nRonny\nTaj\nThor\nTriston\nWestin\nYash\nAnakin\nAndrey\nAnsel\nAntoine\nAston\nBayron\nBlaze\nDanilo\nDariel\nDarrell\nDillan\nErwin\nEwan\nFranky\nGian\nJacky\nJavon\nJonatan\nJoseangel\nKeyon\nKolten\nKyson\nLucien\nMarko\nMemphis\nMilton\nNorman\nOsmar\nQuintin\nSalomon\nShaan\nAkshaj\nAmeer\nAmos\nAnay\nArmen\nArya\nAtlas\nAtreyu\nAzariah\nBlaise\nCoen\nCraig\nDarien\nDaron\nDash\nDenis\nDomenic\nDwight\nEder\nEian\nElan\nEly\nForest\nGlenn\nHarlan\nHugh\nHuxley\nIsa\nItzae\nJaxx\nJohnnie\nKekoa\nKolby\nKonrad\nLamar\nLangston\nLawson\nLazarus\nLeroy\nLevon\nMakaio\nMassimo\nNaythan\nNehemias\nNova\nOziel\nRami\nRayyan\nReyes\nRian\nRobbie\nRylen\nShayan\nStephan\nSyrus\nThaddeus\nTodd\nTrystan\nTyree\nYovani\nYuvraj\nAksel\nAleksander\nArav\nArsh\nAvan\nAxl\nBailey\nBrenton\nCamron\nCasper\nCorban\nDimitri\nDion\nDonnie\nEdmund\nEithan\nElyjah\nEshaan\nGavyn\nGenesis\nGeovany\nGerson\nHernan\nIra\nJahir\nJaykob\nJeff\nKalvin\nKasey\nKavin\nKaysen\nKole\nKris\nLeif\nLex\nLucky\nLyle\nMaddex\nMichaelangelo\nMikhail\nRalph\nRaziel\nRen\nRoss\nSahib\nTiago\nTrace\nTristin\nVarun\nWilder\nYerik\nZephyr\nAbhinav\nAbran\nAkhil\nAlen\nAman\nAries\nAthen\nAtom\nAxton\nBernard\nBode\nBrighton\nCaspian\nCeasar\nClive\nCormac\nCurren\nCy\nDaren\nDiesel\nEdmond\nEdson\nEkam\nEliel\nEliezer\nEmir\nEsdras\nForrest\nFox\nGibson\nGregorio\nHayk\nHeath\nHenri\nImmanuel\nIzrael\nJahaziel\nJan\nJean\nJenson\nJerimiah\nJorden\nJuelz\nKadin\nKeagan\nKendall\nKhalid\nKhristian\nKurtis\nKyan\nLino\nMaddix\nMatheo\nMykel\nNahum\nNate\nOsiris\nPhineas\nPierre\nRaghav\nRylee\nSlater\nSoham\nTobin\nTruman\nWest\nYahya\nYoussef\nZakai\nZakary\nZayn\nAbdul\nAddison\nAkash\nAngus\nArden\nAyush\nAzael\nBenaiah\nBoaz\nBraedon\nClifford\nColeman\nDamani\nDarrien\nDarryl\nDavon\nDestin\nDresden\nEamon\nEliah\nElio\nErnie\nEzrah\nFabio\nFinnley\nGabino\nGaige\nGarrison\nGianluca\nHans\nHasan\nHiram\nIshmael\nIsmail\nJabari\nJadiel\nJaron\nJathan\nJaythan\nJayven\nJelani\nKaison\nKaito\nKarl\nKayleb\nKeshav\nKiyan\nLandin\nMalek\nMarcoantonio\nMathieu\nMatix\nMicaiah\nMikey\nMiller\nNeo\nNikita\nNoble\nOren\nOzzie\nOzzy\nPerry\nReef\nReyli\nRome\nSami\nSebastien\nShea\nSilvestre\nTalan\nTevin\nThatcher\nTimur\nTrevon\nTristian\nTyrell\nViktor\nWes\nZackery\nZahir\nZephaniah\nZyaire\nAadi\nAaryan\nAbdulaziz\nAbelardo\nAdvaith\nAdvik\nAizen\nAlston\nAngad\nArik\nAtharv\nAurelius\nAyrton\nBear\nBraedyn\nBrando\nBrecken\nBrysen\nCamryn\nCastiel\nCayson\nClaudio\nClinton\nCortez\nCristo\nCullen\nDakari\nDarin\nDarion\nDecker\nDemitri\nDomingo\nDon\nDonavan\nDraco\nEdgardo\nEnder\nEsau\nGenaro\nGray\nHenrik\nIlya\nJadyn\nJafet\nJamari\nJancarlo\nJaydenn\nJayvion\nJeancarlo\nJeremih\nJordy\nKael\nKaine\nKamran\nKamron\nKannon\nKaran\nKevyn\nKhai\nKiaan\nKorbin\nLars\nLester\nLian\nManny\nMauro\nMickey\nMonte\nNicolai\nNigel\nOnyx\nOri\nPete\nReilly\nRishaan\nRiyan\nSahil\nSalvatore\nShayne\nTejas\nTevita\nXian\nYaseen\nYohan\nZaden\nZuriel\nAamir\nAbhiram\nAdiel\nAlexsander\nAria\nArjan\nArnold\nArnulfo\nArsen\nAyman\nAziel\nBeck\nBrad\nBryden\nCael\nCaesar\nCarmine\nCasen\nChristofer\nCillian\nColter\nConstantine\nDarnell\nDave\nDaylen\nDeklan\nDemetri\nDeon\nDonavin\nEliam\nFisher\nFlavio\nFrancesco\nGannon\nGene\nGeovani\nGiuseppe\nGus\nHaiden\nHouston\nIcker\nJacques\nJamil\nJamir\nJancarlos\nJareth\nJaxsen\nJaylon\nJim\nJin\nJohnson\nJonny\nJosemanuel\nJosias\nKaidyn\nKarsen\nKarthik\nKayne\nKorey\nKye\nKylan\nKyran\nKyree\nKyren\nLamont\nLayton\nLazaro\nLeighton\nLeopoldo\nLochlan\nLuisangel\nLyam\nMakhi\nMalikai\nMars\nMatthieu\nMaximino\nMenachem\nMikah\nMusa\nOsbaldo\nQuintus\nRain\nRamsey\nRayshawn\nRehan\nRoan\nRoderick\nSameer\nShant\nShepard\nStellan\nSutton\nTayden\nTerence\nTheron\nTorin\nValen\nWilmer\nZac\nZayan\nZev\nAayush\nAbhay\nAdair\nAldair\nAmadeo\nAmadeus\nAmeen\nAmes\nAnibal\nAshwin\nBaltazar\nBaxter\nBenton\nBosco\nBrice\nBronx\nBryton\nBuddy\nCal\nCampbell\nConan\nDarrius\nDarvin\nDeion\nDenny\nDidier\nDomenico\nDrayden\nEdvin\nEitan\nEmory\nEphraim\nErin\nEros\nGibran\nGlen\nGrayden\nHadi\nHanson\nHarris\nHonor\nIden\nIdris\nIlan\nIlyas\nIzek\nJaleel\nJamar\nJavian\nJedediah\nJohannes\nJosef\nJuaquin\nJun\nKahlil\nKalani\nKeane\nKenton\nKohen\nKory\nKristofer\nKylen\nLeopold\nMakhai\nMihir\nMinh\nMyron\nNery\nNevin\nNikola\nPasha\nPavel\nRajveer\nRandall\nRanveer\nRigo\nRommel\nShivam\nSire\nStefano\nSyed\nTavin\nTim\nUlices\nUlisses\nVinh\nWiley\nWillem\nYadiel\nYannick\nYoel\nYousuf\nAbdulrahman\nAdalberto\nAdi\nAdin\nAdler\nAeden\nAlessio\nAlfonzo\nAmador\nAmar\nAmmar\nAndree\nArchie\nAren\nArion\nArmin\nArush\nAsael\nAugustin\nAzaan\nAzriel\nBill\nBladimir\nBrayton\nBrenner\nBreyden\nBridger\nBroden\nBroxton\nCamdyn\nChaz\nChevy\nClint\nColson\nCuauhtemoc\nDamoni\nDaryn\nDeagan\nDeron\nDezmond\nDuane\nDyland\nDylon\nEben\nEdan\nEiden\nEmmit\nErvin\nEshan\nEugenio\nEzio\nFredrick\nGaven\nGiacomo\nGreg\nHarlem\nHayes\nHilario\nHiroshi\nIann\nJaidyn\nJaren\nJaziah\nJireh\nJoell\nJordi\nJourney\nJowell\nJuandiego\nJustyn\nKaedyn\nKalen\nKamryn\nKarlo\nKarol\nKelly\nKelton\nKenan\nKhang\nKirk\nLeobardo\nLinden\nLinkin\nMac\nMaddux\nMakoa\nMichelangelo\nMohamad\nMonroe\nNatan\nNathanial\nNicco\nOlivier\nOsiel\nOsman\nParsa\nPerseus\nPierson\nRadley\nRaheem\nRahul\nRayaan\nReggie\nRemi\nRenato\nRenzo\nReymundo\nRider\nRonav\nRosendo\nRoshan\nRyley\nSeven\nShaurya\nShiv\nShreyas\nSiddhant\nSimeon\nSione\nSkye\nStuart\nSurya\nSylvester\nTahj\nTai\nTaran\nTarun\nTeddy\nTigran\nTrenten\nTytus\nVedant\nVinny\nWaleed\nWallace\nWesten\nWolfgang\nXavior\nYovanni\nZach\nZamir\nZyler\nAakash\nAariz\nAbiel\nAbisai\nAbrahan\nAdil\nAidenn\nAj\nAkira\nAkshay\nAlain\nAlastair\nAlister\nAmado\nAmani\nAmaury\nAnder\nAneesh\nAnjel\nAric\nAris\nArlen\nArtin\nAspen\nAvian\nBarron\nBenedict\nBennet\nBradlee\nBradyn\nBrigham\nCale\nCanon\nCedar\nCezar\nChamp\nChayce\nCylus\nDamari\nDandre\nDarey\nDaryl\nDastan\nDeanthony\nDelano\nDeonte\nDesean\nElyas\nEvin\nFarhan\nFred\nGamaliel\nGavino\nGeronimo\nGianmarco\nGil\nGio\nGiovannie\nGraeme\nGurshaan\nHalen\nHiro\nHosea\nIain\nIsaih\nIsreal\nIzan\nJacen\nJaiveer\nJamel\nJarred\nJarren\nJarvis\nJasiel\nJaven\nJayvin\nJayvon\nJeancarlos\nJeevan\nJencarlo\nJeron\nJessy\nJethro\nJob\nJordon\nJosemiguel\nJoshuah\nJules\nKairo\nKanoa\nKaras\nKaydin\nKeelan\nKeller\nKeon\nKhaled\nKhoi\nKilian\nKoda\nKruz\nKurt\nLandry\nLaurence\nLeander\nLiem\nLisandro\nLonnie\nMacario\nMaceo\nMarcellus\nMarques\nMarshawn\nMarwan\nMateen\nMathis\nMaximilliano\nMccoy\nMick\nMontgomery\nMorris\nMorrison\nMoshe\nNaeem\nNam\nNeal\nNorberto\nOden\nOrin\nOwyn\nParis\nQuinten\nRainier\nRaylen\nRaymon\nRickey\nRidge\nRiot\nRithvik\nRon\nRooney\nRoosevelt\nRye\nSabastian\nSaif\nSamar\nSamarth\nShepherd\nShlok\nSiddhartha\nSir\nSohum\nStevie\nSultan\nSylis\nTakeo\nTimofey\nTosh\nTremaine\nTri\nTrinidad\nTristyn\nTurner\nTylen\nTyrus\nUzziah\nVander\nVernon\nVikram\nViraj\nVito\nVivek\nWilber\nWilbert\nWilliams\nWilly\nYazan\nYisrael\nYousif\nYurem\nZachery\nZakaria\nAahil\nAbdullahi\nAdhvik\nAdryan\nAedan\nAeson\nAhaan\nAharon\nAlaric\nAldon\nAmarion\nAmbrose\nAmin\nAmit\nArie\nArmand\nArnoldo\nArtur\nAtharva\nAubrey\nAxell\nBane\nBasil\nBenji\nBogdan\nBraydan\nBrogan\nBrooklyn\nCaelan\nCaine\nCalum\nCam\nCarsten\nCary\nCharley\nCiaran\nCj\nColston\nConley\nCorbyn\nCristhian\nCru\nDallin\nDamarcus\nDanniel\nDarby\nDarrel\nDarrin\nDarsh\nDashel\nDaven\nDavi\nDavien\nDaylon\nDemari\nDevlin\nDevonte\nDonny\nDutch\nDyllan\nEarl\nEdrick\nEdwardo\nElden\nEliott\nEloy\nElton\nEmillio\nEthyn\nEziah\nFabricio\nFaisal\nFilip\nFinnian\nFionn\nFredi\nGaetano\nGryphon\nHakob\nHamzah\nHarsha\nHasani\nHeber\nHiroto\nHussein\nHyrum\nIbraheem\nIdan\nImran\nIzeah\nIzreal\nJaasiel\nJaedon\nJakub\nJarek\nJaymes\nJayvian\nJc\nJeronimo\nJhonny\nJimmie\nJoao\nJoesiah\nJohndavid\nJuanjose\nJuanmanuel\nJuvenal\nKamal\nKamren\nKaranveer\nKarmelo\nKarsten\nKavi\nKeshawn\nKeyan\nKhristopher\nKooper\nKyrin\nKyron\nLakai\nLamarr\nLoki\nLoyal\nLuiz\nLysander\nMace\nMael\nMalakhi\nMarek\nMarion\nMarquez\nMarquise\nMavrick\nMaxson\nMeyer\nMilad\nNabil\nNahom\nNatanael\nNazareth\nNeri\nNevan\nNicasio\nNicodemus\nNikolaus\nNivaan\nNyjah\nOcean\nOm\nOmkar\nOtoniel\nPascal\nPercy\nPryce\nRadin\nRafe\nRaffi\nRaleigh\nRavi\nRishab\nRitchie\nRockwell\nRomero\nRonen\nSacha\nSai\nSalman\nSammuel\nScotty\nSelvin\nShalom\nSol\nStetson\nStryder\nSuraj\nSydney\nTalen\nTariq\nTennyson\nTenzin\nTj\nTlaloc\nTracy\nTripp\nTylor\nVahan\nValente\nVidal\nViggo\nYared\nYasser\nYehuda\nYusef\nYuto\nZacarias\nZaidyn\nZarek\nZiyad\nAadyn\nAarin\nAarnav\nAdian\nAgastya\nAhan\nAithan\nAiven\nAkeem\nAkshath\nAlder\nAlekzander\nAlexandros\nAlexi\nAlias\nAmaru\nAmmon\nAndrae\nAngello\nAnthoney\nAntwan\nAquiles\nArin\nArno\nArrow\nArshan\nArt\nArtem\nArtemio\nArun\nAryeh\nAsiel\nAtiksh\nAyoub\nAyub\nBanyan\nBarry\nBlaize\nBlas\nBooker\nBoris\nBoyd\nBrandt\nBrandyn\nBreydon\nBriggs\nCaeden\nCai\nCaius\nCalder\nCalen\nCanaan\nCarsen\nCarver\nCelso\nCharly\nCipriano\nCisco\nClement\nClemente\nCoby\nColtin\nCordero\nCornelius\nCornell\nCris\nDaksh\nDamarion\nDarrion\nDaymian\nDayson\nDegan\nDelfino\nDemarco\nDemarcus\nDemetrio\nDempsey\nDenilson\nDenim\nDenton\nDenver\nDerik\nDerrion\nDeshaun\nDevansh\nDillinger\nDino\nDionisio\nDmitri\nDov\nDylann\nEber\nEdahi\nEdin\nEgan\nElgin\nElie\nEliud\nEliyah\nElson\nEmre\nEnrico\nEvander\nEvans\nExodus\nFahad\nFaris\nFaustino\nFloyd\nFoster\nFrederic\nGeraldo\nGraydon\nGreysen\nGurjot\nGurman\nHansel\nHarnoor\nHarsh\nHawk\nHayato\nHaziel\nHendrick\nHendrik\nHisham\nHoracio\nIlias\nIliya\nIndy\nIsacc\nIssa\nIssaiah\nItai\nJaedyn\nJaelin\nJahiem\nJaidon\nJakai\nJakari\nJamarion\nJameer\nJarett\nJaskaran\nJavion\nJaxxon\nJaydyn\nJaylan\nJaylyn\nJed\nJedi\nJohncarlo\nJohny\nJones\nJordyn\nJosemaria\nJudson\nKaan\nKaidan\nKaius\nKarlos\nKato\nKaya\nKeiji\nKevion\nKnowledge\nKoby\nKorben\nKrishiv\nKunal\nKyden\nLaird\nLavon\nLeeland\nLeeon\nLizandro\nLuigi\nLuisfernando\nLukah\nMahdi\nMalcom\nMarcanthony\nMarcell\nMarciano\nMargarito\nMarius\nMarlo\nMasyn\nMaximos\nMaxon\nMaysen\nMontae\nMykell\nNaim\nNason\nNassir\nNazar\nNeko\nNiam\nNiccolo\nNicoli\nNyle\nParth\nPaulino\nPax\nPharaoh\nPrithvi\nQuan\nRam\nRamzi\nRaudel\nRayce\nReeve\nReza\nRiku\nRitvik\nRogan\nRohit\nRojelio\nRomario\nRomelo\nRonit\nRudolph\nRudra\nRuhaan\nRyo\nSaleem\nSampson\nSamvel\nSanjay\nSavion\nSayed\nShayaan\nShravan\nSilvano\nSion\nSmith\nSohan\nSteele\nStephon\nSubhan\nSylus\nSyncere\nTaha\nTahir\nTheophilus\nTiernan\nTito\nTonatiuh\nTorrey\nTrever\nTrevin\nTRUE\nUzair\nUzziel\nValor\nVann\nVansh\nVed\nVincente\nVishnu\nWatson\nXavian\nYamil\nYariel\nZabdiel\nZacchaeus\nZade\nZaki\nZakir\nZaven\nZavion\nZen\nZeth\nAbdias\nAcen\nAdael\nAdel\nAdithya\nAdonay\nAdrick\nAhmir\nAhsan\nAidin\nAidric\nAkai\nAleksandar\nAleksandr\nAmauri\nAmrit\nAndrez\nAndru\nAndruw\nAnmol\nAnuar\nAnvay\nAramis\nArath\nArif\nArjen\nArmon\nAsh\nAshby\nAthos\nAuguste\nAugusto\nAundre\nAuron\nAvelino\nAvenir\nAydeen\nAymen\nAzad\nAzlan\nBalam\nBao\nBasem\nBassam\nBastian\nBennie\nBhargav\nBlade\nBlayne\nBlue\nBowie\nBradford\nBrandin\nBreck\nBrennon\nBriar\nBritton\nBrodi\nCadence\nCaedmon\nCaidyn\nCalin\nCalix\nCameryn\nCaptain\nCashton\nCayleb\nCecil\nChaim\nChe\nChristiano\nChrystian\nClaude\nCoda\nColeton\nColtyn\nCordae\nCornelio\nCorvin\nCove\nCrue\nCurran\nDaimian\nDakarai\nDanyal\nDashawn\nDashiel\nDavey\nDaylan\nDaylin\nDeaglan\nDelon\nDemetrios\nDerian\nDeric\nDerion\nDerrik\nDesi\nDestry\nDevion\nDhilan\nDillion\nDimitrios\nDj\nDomonic\nDonovin\nDontae\nDovid\nDrayson\nDublin\nDyson\nEdilberto\nEdrik\nEliab\nEliaz\nEliazar\nElija\nElijahjames\nEliu\nEllison\nEmile\nEmran\nErasmo\nEscher\nEthaniel\nEthanjohn\nEtienne\nEvaristo\nEverest\nEvyn\nEyan\nEythan\nFarid\nFausto\nFavio\nFenix\nFerdinand\nFlint\nFroylan\nGalen\nGalileo\nGaspar\nGautam\nGentry\nGiordan\nGiorgio\nGor\nGracen\nGrigor\nGurnoor\nGurshan\nHaden\nHakop\nHamilton\nHardy\nHarel\nHarish\nHelios\nHerbert\nHerman\nHeston\nHubert\nInaki\nIrie\nIsaiahs\nIsrrael\nItay\nIven\nIzacc\nIzaya\nIzekiel\nIzzac\nJacksen\nJacobanthony\nJade\nJae\nJaelen\nJaelyn\nJahan\nJahlil\nJaice\nJaidan\nJairus\nJaquan\nJaret\nJarrod\nJashan\nJasson\nJavin\nJaycen\nJayme\nJayse\nJenner\nJerald\nJeremyah\nJessejames\nJessiah\nJeter\nJeyson\nJhett\nJianni\nJimi\nJoab\nJoeseph\nJohncarlos\nJohnmichael\nJoseguadalupe\nJosejulian\nJosiyah\nJosmar\nJozef\nJuanluis\nJusten\nKaeleb\nKailan\nKalden\nKallen\nKanan\nKaro\nKase\nKavan\nKawika\nKaydon\nKaylen\nKegan\nKelan\nKelson\nKeston\nKhoa\nKhyree\nKidus\nKirill\nKirin\nKit\nKnight\nKoji\nKona\nKoston\nKrishang\nKrithik\nLandan\nLarenz\nLaszlo\nLazar\nLedger\nLeeam\nLeelan\nLeyton\nLink\nLloyd\nLogen\nLoren\nLuther\nLyndon\nLyon\nMadix\nMahir\nMarkell\nMatai\nMateus\nMattix\nMatvey\nMaxemiliano\nMaximilien\nMazen\nMehtab\nMeir\nMikail\nMikkel\nMikko\nMilos\nMizael\nModesto\nMycah\nMykah\nNadav\nNakoa\nNaveen\nNayan\nNazir\nNeftali\nNicholaus\nNicky\nNikolay\nNikos\nNiles\nNils\nNomar\nObadiah\nOjas\nOllie\nOllin\nOmer\nOmri\nPalmer\nPascual\nPatton\nPaxon\nPieter\nPlaton\nRafi\nRajon\nRandolph\nRasheed\nRawley\nRayansh\nReily\nReymond\nRhodes\nRhyder\nRiaan\nRichmond\nRishabh\nRishan\nRivaan\nRoark\nRobby\nRobinson\nRollins\nRony\nRoque\nRowdy\nRussel\nRyatt\nRydan\nRyon\nSaathvik\nSachin\nSaeed\nSahaj\nSamual\nSathvik\nSchuyler\nScout\nSehaj\nSeverin\nShai\nShailen\nShamar\nShannon\nShay\nShia\nShivansh\nSinai\nSlade\nSoul\nSrikar\nSumner\nTaiyo\nTalal\nTanush\nTarek\nTeague\nTed\nTerran\nTerrion\nTiberius\nTidus\nTimmy\nTravon\nTrayvon\nTreyton\nTreyvon\nTru\nTyce\nTyden\nTyren\nUbaldo\nVaibhav\nVinay\nVir\nViren\nVirgil\nWillian\nWillis\nWinter\nWylie\nWynn\nXayden\nXzander\nYanuel\nYaqub\nYareth\nYasin\nYegor\nYerick\nYisroel\nYonatan\nYonathan\nYoni\nYoshua\nYovany\nZadok\nZair\nZakariya\nZamari\nZyair\nZyon\nJacob\nEthan\nDaniel\nJayden\nMatthew\nNoah\nAlexander\nAnthony\nNathan\nDavid\nMichael\nAndrew\nJulian\nBenjamin\nIsaac\nAiden\nAngel\nMason\nLiam\nAdrian\nSebastian\nDylan\nJoshua\nJoseph\nAaron\nJonathan\nChristopher\nWilliam\nElijah\nRyan\nIsaiah\nLogan\nJose\nLucas\nJames\nDamian\nGabriel\nSamuel\nKevin\nBrandon\nChristian\nMateo\nJackson\nLuke\nCaleb\nJesus\nDominic\nEvan\nLuis\nJuan\nJordan\nJack\nJohn\nNicholas\nJason\nCarlos\nAdam\nOliver\nDiego\nJosiah\nIan\nHenry\nEli\nIvan\nRobert\nJeremiah\nSantiago\nWyatt\nLeonardo\nXavier\nAyden\nGavin\nOwen\nAustin\nNathaniel\nHunter\nMiguel\nElias\nVincent\nLandon\nGiovanni\nLevi\nThomas\nAlan\nAlex\nZachary\nAlejandro\nGael\nEric\nTyler\nVictor\nJustin\nBryan\nCarter\nJaxon\nCharles\nConnor\nAndres\nLeo\nRoman\nOscar\nFrancisco\nJesse\nAbraham\nBrayden\nRyder\nBlake\nJorge\nEduardo\nCameron\nNolan\nSteven\nJoel\nMax\nNicolas\nManuel\nAntonio\nHudson\nRichard\nEmmanuel\nJaden\nCesar\nAxel\nBrian\nEmiliano\nEdward\nColton\nFernando\nMaxwell\nJace\nEzekiel\nJeremy\nMiles\nEzra\nMicah\nChase\nParker\nGrayson\nTristan\nAndy\nJaxson\nKai\nJavier\nOmar\nRicardo\nGeorge\nAidan\nAbel\nJonah\nKayden\nEdgar\nJake\nKyle\nDerek\nJosue\nHector\nColin\nJohnny\nLincoln\nEmilio\nIker\nCristian\nBrody\nSean\nLorenzo\nBradley\nTimothy\nDamien\nMark\nErick\nIsrael\nMaximus\nMario\nRafael\nAlexis\nFabian\nSergio\nMarcus\nMaximiliano\nCole\nLuca\nAsher\nJoaquin\nDevin\nKaleb\nRaymond\nRuben\nMartin\nCooper\nAdan\nCruz\nMarco\nTheodore\nCarson\nDeclan\nJameson\nEsteban\nPatrick\nBryce\nFelix\nKenneth\nBentley\nRiley\nCalvin\nPreston\nMarcos\nJude\nErik\nPeter\nRoberto\nArmando\nAndre\nWesley\nPaul\nKing\nAngelo\nCharlie\nDean\nPedro\nEverett\nDonovan\nPablo\nGerardo\nEdwin\nEaston\nSawyer\nSilas\nJax\nEmmett\nGreyson\nKingston\nCash\nKaden\nSaul\nGrant\nCody\nEmanuel\nJared\nArthur\nRaul\nEnrique\nJayce\nHayden\nMaddox\nJeffrey\nMaverick\nGustavo\nRodrigo\nShane\nTravis\nMathew\nIsmael\nHarrison\nKaiden\nWeston\nCamden\nJaiden\nJase\nLukas\nNoel\nCayden\nJaime\nMatteo\nTroy\nAlfredo\nJasper\nMalachi\nDanny\nBryson\nDominick\nFrank\nSalvador\nMoises\nHugo\nDante\nArturo\nCaden\nRomeo\nEnzo\nJohnathan\nAllen\nAvery\nElliot\nSimon\nJulio\nLeon\nXander\nRyker\nAshton\nFinn\nBruce\nLeonel\nMilo\nBennett\nTanner\nAlbert\nZayden\nBrady\nAlberto\nElliott\nZane\nTrevor\nAlonzo\nOrion\nJudah\nSeth\nGage\nIssac\nUriel\nLouis\nSkyler\nAden\nJay\nRylan\nZion\nMyles\nNoe\nAldo\nStephen\nChris\nJerry\nAmir\nTony\nCollin\nGregory\nGriffin\nJulius\nRamon\nGraham\nSpencer\nIzaiah\nErnesto\nAnderson\nIsaias\nHolden\nMatias\nAdriel\nConner\nDesmond\nMauricio\nJayson\nNico\nBeau\nJimmy\nPhoenix\nCyrus\nMoses\nYahir\nArjun\nNehemiah\nRowan\nThiago\nAlec\nAugust\nJaylen\nZander\nAtticus\nGuillermo\nRiver\nAlessandro\nMilan\nChance\nJoey\nTucker\nDrake\nGarrett\nClayton\nNixon\nShawn\nBrayan\nDarren\nMaximilian\nPhillip\nRandy\nTyson\nNikolas\nEddie\nDillon\nRogelio\nCorbin\nTitus\nAce\nVihaan\nAlonso\nAri\nDerrick\nLawrence\nNiko\nPaxton\nAli\nBraxton\nJett\nBeckett\nKendrick\nEmerson\nEzequiel\nRicky\nRussell\nAlvin\nDrew\nJakob\nJayceon\nDennis\nJoe\nLionel\nRocco\nVicente\nArcher\nFrankie\nJohan\nMalakai\nReed\nBrendan\nQuinn\nAarav\nGunner\nReid\nRoger\nAlfonso\nBraden\nDallas\nGianni\nRene\nRoy\nEden\nGiovani\nLanden\nQuentin\nCaiden\nMarvin\nUriah\nValentino\nAlvaro\nKian\nOrlando\nScott\nSolomon\nKameron\nRudy\nUlises\nZachariah\nAyaan\nDamon\nDustin\nKeegan\nValentin\nWaylon\nAllan\nBruno\nDexter\nRoyce\nCasey\nFelipe\nJulien\nPhilip\nWalter\nColt\nDarius\nGunnar\nJonas\nPeyton\nTaylor\nCade\nKellan\nRohan\nSonny\nFranklin\nNikolai\nRonan\nEfrain\nRodolfo\nSteve\nAbram\nAryan\nByron\nGiancarlo\nKyler\nMisael\nRay\nSantino\nIbrahim\nJairo\nJessie\nKeith\nKellen\nNathanael\nTrenton\nMalcolm\nNeymar\nNickolas\nRonald\nSam\nSantos\nGideon\nRey\nWalker\nXzavier\nCain\nKash\nOctavio\nRemy\nTheo\nBryant\nCristopher\nDane\nMarc\nMarshall\nXavi\nZaiden\nAmari\nDominik\nLeland\nMajor\nMarcelo\nMatthias\nArmani\nGiovanny\nJefferson\nKhalil\nMuhammad\nOdin\nTomas\nWarren\nCorey\nJalen\nLuka\nPrince\nGilbert\nLouie\nLuciano\nRamiro\nRyland\nAlijah\nClark\nEdison\nFlynn\nGilberto\nKarter\nMessiah\nMike\nBenicio\nBrock\nDevon\nJunior\nMaximo\nTy\nDavis\nFrancis\nIshaan\nKieran\nKingsley\nKobe\nLeandro\nNash\nArian\nElian\nLarry\nMathias\nRaiden\nRhys\nAriel\nFreddy\nJaycob\nMakai\nMohammad\nNelson\nRaphael\nBarrett\nBrantley\nFranco\nGonzalo\nYael\nAgustin\nDario\nDeacon\nDorian\nKenny\nLeonard\nLeonidas\nRayan\nZain\nBenson\nBrennan\nBronson\nFrederick\nKnox\nMaxim\nRhett\nTobias\nTristen\nDavian\nDuke\nEugene\nFinnegan\nJovanni\nKane\nMalik\nTommy\nBodhi\nCarmelo\nHank\nHarry\nHarvey\nHumberto\nKelvin\nOsvaldo\nPierce\nRex\nUlysses\nAron\nCohen\nDonald\nEllis\nIsai\nKarson\nKrish\nLondon\nZackary\nAdolfo\nAlexzander\nIgnacio\nJaxen\nSage\nShaun\nTrey\nWilson\nCassius\nConor\nEnoch\nKristian\nLucca\nTrent\nZaid\nArlo\nBernardo\nBraydon\nDeegan\nGary\nJesiah\nNeil\nRoland\nSoren\nUrijah\nWade\nYusuf\nAdrien\nCurtis\nEstevan\nGrady\nKristopher\nMohammed\nReyansh\nToby\nArmaan\nDilan\nEfren\nElvis\nFinley\nJohann\nOtto\nSamson\nAhmed\nArman\nBobby\nCamilo\nColby\nCristiano\nGerman\nJair\nKody\nMarlon\nMitchell\nRolando\nRonaldo\nRonin\nAditya\nAydin\nBrixton\nConrad\nDouglas\nEason\nHendrix\nJagger\nJamison\nLane\nLennon\nMelvin\nRobin\nTalon\nWinston\nAbdiel\nCarl\nCristobal\nDavin\nDax\nGeovanni\nJustice\nKenji\nKolton\nLennox\nMarley\nMorgan\nRemington\nRigoberto\nRory\nSkylar\nAarush\nAbner\nAlexandro\nAydan\nBen\nBrooks\nCarlo\nDalton\nMadden\nMiguelangel\nPorter\nRocky\nRonnie\nStanley\nWill\nHamza\nHarley\nJaydon\nJensen\nJoziah\nKade\nLucian\nMarcel\nRoyal\nSterling\nSylas\nAdonis\nAres\nCallum\nHassan\nNick\nTadeo\nTate\nYair\nAbdullah\nAlfred\nAtlas\nAzariah\nBenny\nBilly\nBranden\nBrett\nEliseo\nGino\nJovani\nLegend\nMaurice\nPranav\nBraylon\nCannon\nDakota\nDaxton\nJacoby\nMariano\nVince\nZechariah\nArnav\nCory\nDarwin\nDashiell\nEmmitt\nForrest\nGerald\nIrvin\nJadon\nJaxton\nJon\nJoseluis\nLance\nMayson\nRaylan\nReese\nVivaan\nWestley\nAhmad\nAlden\nAnson\nApollo\nAugustine\nBowen\nDereck\nEddy\nElisha\nKareem\nKeaton\nKoa\nMarcello\nRaymundo\nTaj\nZayne\nDeangelo\nDeven\nEan\nEverardo\nJasiah\nJoan\nJuancarlos\nKyrie\nLewis\nMohamed\nNasir\nNestor\nQuincy\nTatum\nYeshua\nBrenden\nBrodie\nCrew\nElan\nFletcher\nIsaak\nJai\nJeffery\nMagnus\nMaxx\nNikhil\nNikko\nRalph\nRayden\nBaron\nBenito\nBrycen\nDawson\nJuanpablo\nKalel\nLandyn\nRishi\nStefan\nVan\nVaughn\nAaden\nAjay\nBoston\nBraylen\nCallen\nChad\nClyde\nCrosby\nDarian\nDemetrius\nFox\nJeremias\nMaison\nMekhi\nReece\nReynaldo\nTerry\nVincenzo\nAlek\nAsa\nAthan\nColten\nDerick\nDhruv\nEligh\nEly\nFord\nIzayah\nJericho\nJovanny\nKaeden\nKaleo\nKamden\nKeoni\nLyric\nMikael\nPierre\nSeamus\nVance\nWayne\nYousef\nZack\nAmeer\nAntony\nAyan\nBrendon\nDarien\nDeandre\nEthen\nJadiel\nJedidiah\nKason\nKillian\nLachlan\nMarkus\nMerrick\nRio\nRyden\nTerrence\nAren\nBodie\nCallan\nEmery\nIzaac\nJaxx\nJovan\nKainoa\nKasen\nKenzo\nOmari\nTejas\nYoussef\nAmare\nAnton\nBraeden\nBraulio\nCastiel\nCedric\nChandler\nDamion\nDangelo\nFidel\nGeovanny\nHarlan\nHezekiah\nImmanuel\nJaydan\nJerome\nKaito\nMarko\nMaximillian\nMicheal\nPrinceton\nQuintin\nRamses\nRodney\nSaid\nTom\nVeer\nWestin\nYosef\nArvin\nBeckham\nDavion\nEder\nElmer\nErnest\nFavian\nGordon\nJordi\nJosh\nKayleb\nKeanu\nKole\nLee\nLev\nNathen\nPresley\nTruman\nAchilles\nAndrey\nAnish\nAnsh\nAzael\nBishop\nBrent\nElvin\nEmir\nHayes\nHeriberto\nJacobo\nJaeden\nJamie\nJencarlos\nJet\nJovany\nKabir\nKarl\nKayson\nKen\nKeven\nLamar\nMack\nOcean\nSiddharth\nTrace\nWest\nZavier\nZayn\nAnsel\nArley\nAugustus\nCason\nCraig\nDwayne\nEver\nFredy\nGauge\nGregorio\nJordy\nKent\nLinus\nMemphis\nMustafa\nOswaldo\nOtis\nReginald\nSamir\nSammy\nSantana\nSheldon\nSione\nSullivan\nVladimir\nYaseen\nZaire\nZephyr\nAidyn\nAndreas\nArnold\nAtharv\nAvi\nBo\nChace\nClay\nDash\nDayton\nDeshawn\nEwan\nEzio\nFaris\nForest\nGerard\nGerson\nGlenn\nGuy\nHeath\nIrving\nJordyn\nJustus\nKarthik\nKylan\nKymani\nLeif\nLevon\nMatix\nMilton\nNoam\nOsiris\nPayton\nQuinton\nReagan\nSahib\nSebastien\nStone\nThaddeus\nTiago\nWallace\nZev\nAedan\nAlexavier\nArmen\nBeck\nCairo\nCasper\nDanilo\nDarrell\nDemian\nDev\nDevyn\nDuncan\nGibson\nHansel\nIsael\nIsiah\nIsidro\nJamal\nJamir\nJonathon\nKoda\nKonner\nLuc\nMassimo\nMikah\nMikel\nNigel\nRandall\nRickey\nRico\nRishaan\nRyu\nShayan\nStephan\nTrystan\nTyrone\nAbhinav\nAbran\nAlexandre\nAmos\nAnakin\nBill\nBlaise\nDonnie\nEleazar\nEmory\nFinnley\nGianluca\nGrey\nHarper\nIsac\nJayse\nJaysen\nJaziel\nJeramiah\nKain\nKarim\nKeenan\nLino\nLucio\nMattias\nNeel\nRenzo\nReuben\nRowen\nSky\nWillem\nYash\nYoel\nZeke\nZephaniah\nZeus\nAaryan\nAnay\nAnirudh\nCaesar\nCristofer\nDamani\nDevan\nEliel\nEliot\nEmmet\nEsai\nGeoffrey\nGreg\nHarlem\nHarold\nHernan\nHiram\nHoward\nJacky\nJael\nJionni\nJohnnie\nKennedy\nLochlan\nLucius\nMauro\nMaxton\nMikhail\nNoa\nOskar\nOsmar\nPatricio\nPhineas\nRayyan\nRoderick\nSemaj\nShiloh\nTitan\nTodd\nTorin\nWilder\nYahya\nAdler\nAdvik\nAlessio\nAurelio\nAven\nAydenn\nBailey\nBayron\nBenedict\nBroderick\nCasen\nChanning\nDenzel\nDeon\nEros\nErwin\nEzrah\nFred\nFreddie\nGannon\nGionni\nHenrik\nIshan\nJaxxon\nJeff\nJeshua\nKruz\nLaith\nLars\nLawson\nLester\nLyndon\nMaxson\nNahum\nNate\nPaulo\nRome\nSincere\nSunny\nThatcher\nTobin\nUziel\nVedant\nWillie\nYadiel\nAayden\nAdalberto\nAlistair\nAndrei\nBernard\nBoaz\nBoden\nBrennen\nCeasar\nCedar\nClinton\nConstantine\nCorban\nDan\nDion\nDominique\nEliam\nElyas\nEmil\nIlan\nItzae\nJad\nJahir\nJarvis\nJavon\nJohnathon\nJohnpaul\nJohnson\nJosef\nJosias\nKalani\nKiran\nLazaro\nLeopoldo\nLeroy\nMarquis\nMichaelangelo\nMoshe\nNeo\nOzzy\nRen\nReyes\nRick\nSahil\nSalvatore\nSidney\nTariq\nTeagan\nViaan\nYasiel\nYohan\nYuvraj\nAayan\nAmadeo\nAntoine\nAram\nArrow\nAsael\nAston\nAtreyu\nAxl\nBraiden\nBranson\nBrysen\nCase\nClarence\nCurren\nDariel\nDomingo\nDonte\nDyllan\nEdmund\nGeovany\nGray\nHasan\nIra\nIzek\nJerimiah\nJorden\nJosemanuel\nKalvin\nKoen\nKolten\nKyson\nLian\nMaddix\nMasen\nMatheo\nMiller\nNarek\nNorman\nPaolo\nRian\nRonav\nTed\nTeo\nTerence\nTerrance\nTristian\nVarun\nVihan\nViktor\nWes\nZahir\nZayan\nAaiden\nAdair\nAleksander\nAnders\nAtom\nBear\nBlaine\nBlaze\nBronx\nCaspian\nCoby\nCormac\nCy\nDaren\nDarin\nDarnell\nDarryl\nDarsh\nDaylen\nDeklan\nDezmond\nDillan\nDomenic\nEdson\nEitan\nEliazar\nEnoc\nEshaan\nFranky\nHyrum\nIdris\nIsa\nIzaak\nJacen\nJermaine\nJiovanni\nJonatan\nJonny\nJoseangel\nJullian\nKale\nKannon\nKasey\nKeagan\nKeon\nKeyon\nKolby\nKorbin\nLamont\nLuiz\nLuther\nMaddux\nMaximilliano\nMylo\nNikita\nOren\nOri\nRaheem\nRemi\nRylee\nStuart\nTai\nTalan\nTrayvon\nViraj\nWolfgang\nYandel\nZac\nZackery\nZakai\nAbdulrahman\nAdiel\nAizen\nAlain\nAngad\nAria\nAries\nArmin\nArya\nBane\nBrando\nBrighton\nCaeden\nCamron\nCian\nClaudio\nClemente\nDandre\nDewayne\nDon\nDraven\nDyland\nEithan\nErvin\nEsau\nFisher\nGadiel\nGenaro\nGuadalupe\nHaven\nHerman\nHugh\nIshmael\nJaidyn\nJamari\nJaxsen\nJaycee\nJaycion\nJaydin\nJayven\nJean\nJed\nJeyden\nKairo\nKamari\nKelly\nKory\nLangston\nLayne\nLloyd\nLonnie\nLucien\nMahdi\nMaksim\nMarcelino\nMccoy\nMonte\nMurphy\nMusa\nNaythan\nNihal\nNikola\nObadiah\nOm\nOsiel\nParis\nRhyder\nRithvik\nRomel\nSaad\nShaurya\nSlater\nSoham\nSurya\nTeddy\nTrinidad\nTriston\nTyrus\nWiley\nYahel\nZamir\nAadi\nAbhay\nAbhiram\nAgastya\nAkash\nAksel\nAmaru\nAmin\nAmmar\nAndrez\nArie\nAris\nAshwin\nAustyn\nAxton\nAyush\nAziel\nBrenton\nBryden\nCanyon\nConan\nCullen\nDaryl\nDavon\nDimitri\nElio\nEnder\nEthyn\nFabrizio\nGavyn\nGiuseppe\nGraeme\nGreysen\nHadi\nHawk\nHenri\nHerbert\nHonor\nHussein\nHuxley\nImran\nIsmail\nJalil\nJasiel\nJaythan\nJaziah\nJeronimo\nJessiah\nJim\nKadin\nKaine\nKarsten\nKavin\nKeshav\nKhang\nKohen\nKonnor\nKonrad\nKris\nKurt\nLeeland\nLeobardo\nLyle\nMaceo\nMaddex\nMakaio\nManny\nMarcellus\nMarius\nMikey\nMonroe\nNehemias\nNery\nNicolai\nNoble\nOzzie\nQuinten\nRaghav\nRavi\nReef\nRylen\nSalomon\nSamarth\nSeven\nShant\nShreyas\nSiddhant\nSir\nSire\nStellan\nTayden\nTheodor\nTristin\nTyree\nVed\nVito\nZayd\nZen\nAayush\nAdriano\nAdvaith\nAkhil\nAkiva\nAkshay\nAlaric\nAlexsander\nAlston\nAlton\nAmado\nAmani\nAnder\nAngus\nAnibal\nAtharva\nAugustin\nAusten\nAviel\nAvraham\nBently\nBenton\nBilal\nBrad\nBrice\nBrooklyn\nCael\nCaius\nCal\nCalder\nClifford\nClint\nCylus\nDarion\nDempsey\nDenis\nDevlin\nEamon\nEdan\nEdgardo\nEdric\nEliezer\nEmmit\nEmrys\nEphraim\nEthaniel\nEvin\nFlavio\nGenesis\nGeovani\nGeronimo\nGus\nHans\nHarris\nHayk\nIbraheem\nJahaziel\nJamel\nJan\nJareth\nJaven\nJenson\nJeremih\nJhonny\nJoab\nJules\nKadyn\nKaison\nKaius\nKamron\nKamryn\nKaran\nKaras\nKaydin\nKekoa\nKelton\nKendall\nKhaled\nKrishna\nKurtis\nKyan\nKye\nKyree\nLayton\nLenny\nLoukas\nMakoa\nMatt\nMaxon\nMihir\nMykah\nNova\nOsbaldo\nPerseus\nRanveer\nRashad\nRasheed\nRichie\nRidge\nRigo\nRogan\nRommel\nRooney\nSabastian\nSameer\nSami\nSyed\nTiberius\nTimoteo\nTrevin\nUbaldo\nUlisses\nUmar\nVidal\nWolf\nYobani\nYuvan\nZach\nZachery\nZyaire\nAbbas\nAbelardo\nAbiel\nAdin\nAdryan\nAdvait\nAhaan\nAkira\nAlen\nAmar\nAmaury\nAmbrose\nArchie\nArhaan\nArin\nArion\nArjan\nArlen\nAsh\nAvyan\nAzriel\nBode\nBraedyn\nBriggs\nCampbell\nCamren\nCharley\nChayse\nCillian\nClifton\nDale\nDaron\nDerik\nDiesel\nDmitry\nDwight\nEarl\nEiden\nEverest\nFinnian\nFredrick\nGabino\nGaige\nGarrison\nGiorgio\nGiovany\nGraysen\nHakeem\nHamilton\nHendrick\nIsacc\nIssa\nJaiveer\nJaren\nJaron\nJathan\nJaylan\nJaylin\nJayvin\nJeriah\nJessy\nJordon\nKamran\nKarmelo\nKassius\nKeshawn\nKhalid\nKiyan\nKylen\nKyran\nLeopold\nLevin\nLeviticus\nLink\nLinkin\nLisandro\nMac\nMalakhi\nMalaki\nManraj\nMichelangelo\nMickey\nNakoa\nNeal\nNiall\nNile\nNirvaan\nOakley\nPete\nPharaoh\nRamsey\nReeve\nReggie\nRenato\nReyli\nRhodes\nRider\nRitchie\nRoan\nRobbie\nRockwell\nSaeed\nSamar\nSelim\nServando\nShaan\nShay\nShlok\nSimeon\nTahj\nTerrell\nTevin\nThor\nThurston\nTim\nTorsten\nTRUE\nTurner\nVaibhav\nVernon\nVincente\nVinny\nYousif\nAarnav\nAbimael\nAddison\nAdonai\nAidric\nAkshaj\nAlanzo\nAmadeus\nAmaziah\nAnand\nAntwan\nAran\nArath\nArav\nArham\nArjay\nAvelardo\nAviv\nAyman\nAziz\nBaker\nBastian\nBlas\nBoyd\nBradly\nBradyn\nCaelan\nCai\nCamdyn\nCarsyn\nCarver\nCashton\nCavan\nCayson\nCecil\nCelso\nCisco\nClement\nColeman\nColtin\nCorbyn\nCortez\nDaemon\nDamari\nDany\nDave\nDavi\nDeagan\nDemitri\nDex\nDonavan\nDonavin\nDrayden\nDuane\nEben\nEdmond\nEian\nElden\nElyjah\nEmile\nFarid\nFaustino\nFausto\nFederico\nFermin\nFrancesco\nGareth\nGeo\nGevorg\nGian\nGibran\nGrayden\nGurshaan\nHaiden\nHanson\nHouston\nIdan\nIlias\nIsayah\nIzaan\nJacinto\nJade\nJakson\nJamar\nJamil\nJancarlo\nJancarlos\nJasraj\nJaydenn\nJaykob\nJeancarlo\nJeancarlos\nJedediah\nJimmie\nJin\nJohny\nJosemiguel\nJuandiego\nJuanmanuel\nJudson\nKael\nKaidan\nKanoa\nKarlo\nKase\nKavi\nKayne\nKaysen\nKellin\nKiaan\nKimi\nKirk\nKolin\nKorey\nKyden\nKyrillos\nKyron\nLazarus\nLeevi\nLeighton\nLoki\nLuisangel\nLux\nLyon\nLyrik\nMace\nMalek\nMarciano\nMarkel\nMataio\nMaximilien\nNeev\nNevin\nNicodemus\nNyjah\nOjas\nOrrin\nPavel\nPax\nRaffi\nRahim\nRaider\nRayhan\nRaziel\nReilly\nRidley\nRobby\nRohit\nRonen\nRonny\nRony\nRosendo\nRowdy\nSarkis\nSaulo\nSaxon\nShivam\nSidharth\nSkye\nSriram\nSuraj\nSylus\nSylvester\nSyrus\nTavin\nTeegan\nTenzin\nTigran\nTravon\nTyrell\nValente\nViggo\nVikram\nVinh\nVirgil\nVishnu\nWilly\nXaiden\nXzander\nYazan\nYeray\nYerik\nYovani\nYuma\nYurem\nYuto\nZaidyn\nZakariya\nZakary\nZuriel\nZyler\nAamir\nAariz\nAbdulaziz\nAdel\nAdyn\nAhmir\nAidden\nAleczander\nAlfonzo\nAlister\nAman\nAn\nAnh\nAric\nArius\nArshan\nArtin\nAslan\nAthen\nAubrey\nAurelius\nAvan\nAvenir\nAvin\nAzrael\nBarry\nBeaux\nBladimir\nBoris\nBosco\nBradford\nBraedon\nBrecken\nBrennon\nBreyden\nCalix\nCanaan\nCarsen\nChauncey\nChayton\nChaz\nCoen\nCristo\nCruze\nCuauhtemoc\nCurran\nDakari\nDamen\nDamir\nDamoni\nDarrin\nDarrius\nDashawn\nDeanthony\nDelfino\nDemarco\nDemetri\nDenim\nDesean\nDidier\nDillinger\nDilraj\nDionicio\nDresden\nEber\nEgan\nEkam\nEldon\nElie\nEliott\nElon\nEloy\nEugenio\nEvander\nEven\nFabio\nFabricio\nFaisal\nFarhan\nFynn\nGarren\nGarry\nGavriel\nGene\nGil\nGurtaj\nHaroon\nHarout\nHussain\nIann\nIlyas\nInaki\nIndiana\nIzael\nJabari\nJaceyon\nJalon\nJarred\nJarren\nJarrett\nJasen\nJassiel\nJavian\nJavion\nJawad\nJaxin\nJayvon\nJayvyn\nJessejames\nJireh\nJoao\nJob\nJohncarlos\nJohnmichael\nJoseantonio\nJowell\nJr\nJuelz\nJun\nKamal\nKamren\nKarlos\nKarol\nKarsyn\nKaydon\nKenai\nKhai\nKidus\nKlaus\nKoby\nKorben\nKorbyn\nKristofer\nKyren\nLandin\nLevy\nLex\nLior\nLucan\nLuigi\nMakana\nMakhi\nMarquise\nMars\nMarwan\nMateus\nMathis\nMaximino\nMehtab\nMenachem\nMerlin\nMinh\nMorris\nNabil\nNaeem\nNaim\nNiklas\nNolen\nOlin\nOllie\nOryan\nOsman\nPercy\nRajan\nRanger\nReza\nRiker\nRishab\nRobinson\nRock\nRon\nRusty\nRyley\nSai\nSaif\nSanjay\nSaud\nShai\nShaya\nShea\nShepard\nShia\nShiv\nShivansh\nShravan\nShreyan\nSmith\nSohan\nStefano\nSultan\nSutton\nSyncere\nTaran\nTarun\nThorin\nTimmy\nTj\nTonatiuh\nToren\nTristyn\nTyce\nTye\nTyrese\nVander\nWesson\nWestyn\nWilfredo\nWilmer\nXavian\nYarel\nYareth\nZacchaeus\nZade\nZak\nZakaria\nZeppelin\nAakash\nAbdirahman\nAbdul\nAbdurrahman\nAbisai\nAbrahm\nAdonay\nAedyn\nAhmari\nAj\nAkram\nAldair\nAlejo\nAmador\nAmeen\nAmit\nAntwon\nArden\nArias\nArik\nAristotle\nArmon\nArnulfo\nArron\nArsh\nArt\nArtemio\nAsante\nAuden\nAyrton\nBarron\nBasil\nBaylor\nBayne\nBentlee\nBlue\nBob\nBoone\nBowie\nBrannon\nBritain\nBroxton\nCalen\nCalin\nCallahan\nCalum\nCamryn\nCanon\nCarmello\nCartier\nCary\nCashius\nColeton\nColson\nColston\nColter\nCris\nDajon\nDani\nDarby\nDarrel\nDarwyn\nDashel\nDaven\nDaveon\nDaylan\nDaymian\nDeen\nDeion\nDemarion\nDemir\nDesi\nDevansh\nDhruva\nDimitrios\nDov\nEgypt\nElder\nEliah\nEllison\nElton\nEren\nEriberto\nErickson\nErnie\nEshan\nEvren\nEyan\nEythan\nEziah\nFahad\nFerris\nFilip\nFoster\nGalen\nGaston\nGaven\nGianmarco\nGrason\nGurjot\nGurnoor\nGurveer\nHasani\nHelios\nHilario\nHosea\nHubert\nIsreal\nIver\nIzeah\nIzrael\nIzreal\nJaciel\nJacques\nJadyn\nJakobe\nJamaal\nJamarion\nJamin\nJanuel\nJaret\nJarrod\nJasson\nJavi\nJaydyn\nJaylon\nJaylyn\nJayvion\nJc\nJethro\nJiraiya\nJoeziah\nJohannes\nJones\nJuanjose\nKailash\nKaimana\nKaram\nKavish\nKeane\nKei\nKeiran\nKenan\nKenton\nKhairi\nKhristian\nKiet\nKiyoshi\nKoah\nKodi\nKonstantin\nKooper\nKota\nKushal\nLaszlo\nLeander\nLegacy\nLemuel\nLenin\nLeonid\nLeyton\nLiem\nLizandro\nLogen\nLysander\nMadhav\nMadix\nMarcell\nMarcoantonio\nMarek\nMarlo\nMarquez\nMarshawn\nMateen\nMattix\nMazen\nMicaiah\nMitchel\nMontgomery\nMordechai\nNapoleon\nNathanial\nNaveen\nNavin\nNayan\nNazareth\nNazir\nNicco\nNicolo\nNihaal\nNiklaus\nNyle\nObed\nOctavian\nOden\nOdysseus\nOlivier\nOllin\nOnyx\nOrin\nOziel\nPalmer\nPenn\nPierson\nRain\nRaj\nRajon\nRajveer\nRami\nRandolph\nRaudel\nRaven\nRaylen\nRaymon\nRebel\nRefugio\nRehan\nRiku\nRivers\nRoen\nRomello\nRoque\nRosario\nRoshan\nRudra\nRuslan\nRyler\nSaatvik\nSaleh\nSalem\nSammuel\nSandro\nSasha\nSatvik\nSavion\nShayaan\nShayne\nShepherd\nShiven\nSilvestre\nSirius\nStetson\nStryker\nSutter\nSylar\nSylis\nTaha\nTaiyo\nTakeo\nTalin\nTanay\nTanish\nTarek\nTavion\nTennessee\nTevita\nThelonious\nTidus\nTiger\nTilden\nTownes\nTripp\nTru\nTruth\nTytus\nUnknown\nUsman\nUzziah\nVahan\nVahe\nValor\nVansh\nViraaj\nVivan\nVyom\nWesten\nWilliams\nWynn\nXayden\nYaakov\nYasin\nYaziel\nYehoshua\nYonatan\nYonathan\nYoni\nYordi\nYusef\nZaden\nZahid\nZakariah\nZaylen\nZephan\nZiaire\nZian\nZubin\nZyan\nZyon\nAaditya\nAarya\nAbbott\nAbdias\nAbe\nAbhishek\nAbir\nAdhrit\nAdi\nAdon\nAdvay\nAeden\nAero\nAgustine\nAjani\nAlder\nAldon\nAldrin\nAlekzander\nAlexandros\nAlexei\nAlexys\nAmeir\nAmiel\nAmmon\nAmogh\nAndersen\nAndrik\nAneesh\nAnjel\nAnthoni\nAramis\nAreg\nAriv\nArmand\nArmoni\nArnoldo\nArsen\nArtem\nAryeh\nAscher\nAskari\nAstin\nAudie\nAugusto\nAum\nAvyaan\nBalthazar\nBaxter\nBayan\nBennie\nBert\nBlaize\nBradlee\nBrandin\nBrandt\nBrant\nBraven\nBrayton\nBrentley\nBroden\nBryton\nCadence\nCaellum\nCaine\nCaison\nCale\nCamari\nCaydon\nCayleb\nChael\nChamp\nChayce\nCheveyo\nCiaran\nClarke\nClaude\nCornelius\nCyril\nDael\nDallin\nDameon\nDanniel\nDanthony\nDarrien\nDarrion\nDarvin\nDaryn\nDashiel\nDavit\nDawit\nDaylin\nDecker\nDemarcus\nDemetrio\nDeniz\nDestin\nDevonte\nDhilan\nDirk\nDomenico\nDonatello\nDonavon\nDonnell\nDonny\nDontay\nDraco\nDragon\nDylann\nDylen\nEames\nEathan\nEbenezer\nEberardo\nEdrick\nEduard\nEdvin\nEidan\nEithen\nEj\nElih\nElisandro\nEliu\nEliyah\nEmari\nEricson\nEsa\nEsaias\nEzana\nFares\nFenix\nFiliberto\nFinlay\nFlint\nFrederic\nGabryel\nGamaliel\nGavan\nGavino\nGeno\nGevork\nGianfranco\nGiuliano\nGlen\nGor\nGryffin\nGurshan\nGurtaaj\nHagen\nHakop\nHamish\nHardy\nHaris\nHaruki\nHashim\nHendrik\nHeston\nHiroshi\nHolland\nHolt\nHoracio\nHrach\nHridhaan\nIain\nIlya\nIman\nIndigo\nIzak\nIzan\nIzaya\nIzel\nJaasiel\nJacari\nJaedon\nJahan\nJahmir\nJaiceon\nJairus\nJaleel\nJameel\nJaquan\nJasir\nJavien\nJayen\nJayin\nJeevan\nJenaro\nJeremie\nJeremyah\nJiovanny\nJishnu\nJoeseph\nJosemaria\nJoshuah\nJossue\nJozef\nJuvenal\nKace\nKage\nKahlil\nKaidyn\nKalen\nKalib\nKasper\nKato\nKayvon\nKeion\nKeir\nKelan\nKeller\nKendric\nKendrix\nKenrick\nKevyn\nKhali\nKhoa\nKhristopher\nKhyler\nKirill\nKnight\nKolbe\nKolt\nKrew\nKwame\nKylin\nKyo\nLakai\nLandan\nLaron\nLathan\nLauro\nLavell\nLazlo\nLorenz\nLyam\nMackenzie\nMael\nMahmoud\nMaleek\nMaliki\nManases\nMantej\nMarcjacob\nMarion\nMarkell\nMarquel\nMasiah\nMassimiliano\nMatan\nMatthieu\nMatvey\nMaxximus\nMeir\nMikail\nMikko\nMister\nMohamad\nMorrison\nMorrissey\nMurray\nMyron\nNabeel\nNadav\nNael\nNakai\nNatan\nNayden\nNazar\nNeftali\nNeiko\nNeithan\nNiam\nNiccolo\nNicola\nNikkolas\nNils\nNivaan\nNoey\nNomar\nNorberto\nOleg\nOmri\nOswin\nPascal\nPiers\nPrabhjot\nPrescott\nQuenton\nQuintus\nRadley\nRahul\nRainier\nRehaan\nReily\nRenner\nRiaan\nRodrick\nRoel\nRomario\nRomero\nRoscoe\nRowyn\nRufus\nRuvim\nRyo\nSagan\nSaharsh\nSalim\nSalman\nSampson\nSander\nSayed\nScout\nSehaj\nSeverin\nShannon\nSherwin\nShrihan\nSiddhanth\nSiddhartha\nSina\nSlade\nSohum\nSota\nStavro\nStewart\nSukhman\nSven\nSydney\nTaiki\nTaisei\nTakoda\nTanav\nTashawn\nTaylen\nTegan\nTennyson\nTeodoro\nThien\nTrajan\nTrevon\nTreyson\nTruett\nTrysten\nTyren\nTyshawn\nUlices\nUlyses\nUmair\nUri\nUrias\nVaishnav\nVann\nVictormanuel\nVinnie\nVittorio\nVonn\nWaleed\nWilber\nWilbert\nWylder\nYago\nYahshua\nYamir\nYisrael\nYousuf\nYovanni\nYovany\nYuki\nZackariah\nZadkiel\nZavion\nZayed\nZixuan\nZyair\nNoah\nJacob\nEthan\nDaniel\nAlexander\nMatthew\nJayden\nAnthony\nSebastian\nDavid\nMichael\nAndrew\nJulian\nAiden\nBenjamin\nNathan\nLiam\nMason\nIsaac\nDylan\nAaron\nAngel\nJames\nAdrian\nLogan\nElijah\nWilliam\nJoshua\nJoseph\nChristopher\nLucas\nJonathan\nJose\nRyan\nKevin\nIsaiah\nDamian\nSamuel\nGabriel\nLuke\nOliver\nDominic\nMateo\nChristian\nCaleb\nBrandon\nJackson\nJesus\nEvan\nJason\nDiego\nAdam\nJohn\nSantiago\nLuis\nNicholas\nJack\nIan\nLeonardo\nIvan\nJordan\nJuan\nHenry\nCarlos\nJosiah\nLevi\nRobert\nWyatt\nEli\nOwen\nJeremiah\nXavier\nAustin\nMiguel\nHunter\nNathaniel\nGiovanni\nElias\nEric\nGavin\nLandon\nAyden\nLeo\nCarter\nVincent\nJaxon\nAlejandro\nThomas\nAlex\nAlan\nCharles\nConnor\nTyler\nVictor\nRoman\nOscar\nAbraham\nMax\nJorge\nZachary\nSteven\nCameron\nHudson\nRyder\nBrayden\nBryan\nEzra\nFrancisco\nAndres\nJustin\nGrayson\nGael\nNolan\nEmmanuel\nNicolas\nEmiliano\nJesse\nRichard\nAntonio\nAxel\nBlake\nJace\nKai\nEzekiel\nJoel\nKayden\nJeremy\nJavier\nBrian\nAndy\nColton\nEduardo\nParker\nAbel\nMicah\nMaxwell\nEdward\nJaxson\nOmar\nMiles\nLincoln\nManuel\nGeorge\nRicardo\nJaden\nAsher\nIker\nTristan\nCesar\nMaximus\nTheodore\nFernando\nChase\nBrody\nEmilio\nErick\nMarcus\nColin\nJoaquin\nJonah\nDerek\nLuca\nAidan\nBradley\nSergio\nEdgar\nJake\nMartin\nMark\nMario\nJameson\nLorenzo\nAlexis\nHector\nIsrael\nKyle\nFabian\nMaverick\nRafael\nTimothy\nWesley\nMaximiliano\nCarson\nSean\nCalvin\nCristian\nKenneth\nDeclan\nCole\nFelix\nJosue\nAdan\nRaymond\nRoberto\nCooper\nDean\nJohnny\nPatrick\nEverett\nRuben\nKaleb\nMarco\nIsmael\nPaul\nPreston\nGreyson\nDamien\nEaston\nCruz\nDonovan\nPeter\nErik\nJax\nSilas\nEsteban\nEmmett\nKing\nArmando\nEdwin\nHarrison\nGrant\nMaddox\nJude\nWeston\nCamden\nCody\nNoel\nBryce\nSawyer\nArthur\nPedro\nJared\nAndre\nKingston\nFrank\nKaiden\nGerardo\nTroy\nPablo\nAngelo\nKaden\nMoises\nElliot\nAllen\nEmanuel\nJayce\nJasper\nBentley\nRaul\nMalachi\nLeonel\nMatteo\nEnrique\nMarcos\nJase\nRomeo\nDevin\nBennett\nCaden\nJeffrey\nArturo\nAshton\nCharlie\nLukas\nMathew\nXander\nSaul\nTravis\nAvery\nHayden\nJaime\nEnzo\nRiley\nSimon\nStephen\nZayden\nDominick\nJulio\nCash\nLouis\nHugo\nThiago\nAugust\nGustavo\nShane\nFinn\nJulius\nDante\nSalvador\nLeon\nMilan\nJayson\nMilo\nArjun\nBruce\nClayton\nJudah\nBryson\nRyker\nUriel\nAlfredo\nMyles\nSkyler\nDanny\nRiver\nDesmond\nElliott\nJaiden\nAlbert\nAdriel\nAmir\nZane\nBrady\nErnesto\nSeth\nZion\nAlberto\nBeau\nCayden\nRodrigo\nNoe\nRowan\nTony\nIsaias\nTrevor\nIzaiah\nJay\nAli\nAlonzo\nGregory\nJerry\nAarav\nRicky\nTanner\nAce\nChris\nCollin\nGage\nGuillermo\nArcher\nOrion\nNico\nGraham\nDarren\nJayceon\nDallas\nSpencer\nTyson\nLawrence\nJohnathan\nMaximilian\nShawn\nCyrus\nPhoenix\nRamon\nTitus\nJett\nAtticus\nJimmy\nMauricio\nMoses\nNixon\nEddie\nNehemiah\nBraxton\nAldo\nBrayan\nClark\nAden\nAlonso\nEzequiel\nGunner\nRocco\nBodhi\nGarrett\nMatias\nRonan\nRoy\nVicente\nConner\nEmerson\nYahir\nAnderson\nKarter\nZander\nPeyton\nRylan\nGriffin\nIssac\nJaylen\nReid\nAri\nPhilip\nJoey\nPhillip\nTucker\nAlessandro\nDrew\nNeymar\nCorbin\nFelipe\nReed\nWalter\nAlec\nJakob\nRandy\nKian\nNikolai\nVihaan\nMarvin\nScott\nChance\nLionel\nRussell\nBeckett\nCaiden\nKameron\nLuciano\nDerrick\nEden\nKash\nPaxton\nRoyce\nUlises\nValentino\nQuentin\nRoger\nSantino\nBruno\nJoe\nNikolas\nOdin\nRene\nOrlando\nQuinn\nRemy\nUriah\nDillon\nKellan\nMalakai\nMuhammad\nHolden\nJohan\nKnox\nDorian\nFrancis\nWaylon\nWinston\nAlfonso\nBrendan\nLanden\nMarcelo\nMathias\nNiko\nTheo\nCain\nDuke\nGianni\nNeil\nRonald\nWilson\nAbram\nHendrix\nKeegan\nLucca\nLuka\nRayan\nWalker\nBraden\nEllis\nMalcolm\nMatthias\nTaylor\nAlvin\nDamon\nFranklin\nRonin\nRudy\nSonny\nRhys\nRogelio\nSam\nDominik\nDustin\nFrankie\nRey\nRohan\nDavian\nIbrahim\nZachariah\nKyler\nBryant\nLeonidas\nWarren\nAlvaro\nByron\nColt\nGiovani\nGunnar\nJonas\nMessiah\nRaphael\nAgustin\nBarrett\nLarry\nRyland\nAlijah\nCade\nDennis\nHarvey\nIshaan\nKane\nNathanael\nOsvaldo\nRay\nRoyal\nSolomon\nAyaan\nBrooks\nEfrain\nKeith\nMarc\nArlo\nBrantley\nTobias\nAtlas\nDexter\nEason\nFinnegan\nGary\nKade\nPierce\nTomas\nValentin\nCamilo\nDevon\nFinley\nLeandro\nMisael\nPrince\nRory\nSteve\nZackary\nAllan\nBen\nGiovanny\nGonzalo\nKieran\nMarshall\nRodolfo\nZaiden\nDario\nJulien\nMohammad\nRamiro\nSage\nDeacon\nDrake\nEnoch\nKendrick\nMalik\nYusuf\nCristiano\nDarius\nFranco\nGideon\nGilbert\nJaycob\nLeland\nTrenton\nXzavier\nAryan\nFrederick\nRemington\nRex\nTommy\nEstevan\nGilberto\nKenny\nLeonard\nBrock\nCassius\nDalton\nJessie\nNelson\nNickolas\nOctavio\nPorter\nAlfred\nArnav\nDonald\nGerman\nGiancarlo\nJairo\nKellen\nMaximo\nOtto\nRoland\nTate\nArian\nDavis\nGrady\nNash\nRaiden\nAmari\nApollo\nBenson\nBronson\nConrad\nCorey\nDane\nFreddy\nHamza\nHarry\nJefferson\nKristopher\nLondon\nMadden\nMajor\nMaxim\nRolando\nSamson\nAriel\nArmani\nBowen\nCasey\nMike\nUlysses\nKingsley\nMorgan\nQuincy\nAdonis\nAres\nArmaan\nAsa\nClyde\nDouglas\nEliseo\nIgnacio\nJamison\nKillian\nRocky\nRonaldo\nKhalil\nLance\nMaurice\nTy\nYair\nDarian\nDax\nLennox\nRigoberto\nSiddharth\nSoren\nSterling\nYael\nAron\nConor\nEdison\nElian\nKelvin\nLouie\nLucian\nRayden\nVan\nZain\nCarlo\nCurtis\nElvis\nJoziah\nMarkus\nReece\nTadeo\nDakota\nEugene\nFlynn\nKayson\nSantos\nZechariah\nAditya\nDilan\nMarlon\nMiguelangel\nStanley\nZayn\nAbdullah\nAlexzander\nCristopher\nEmmitt\nFord\nHank\nJovanni\nKyrie\nLegend\nMitchell\nReyansh\nRhett\nUrijah\nAbdiel\nAnson\nBrennan\nCallan\nCastiel\nCohen\nCristobal\nGeovanni\nJunior\nKristian\nMohammed\nVivaan\nWade\nYousef\nAnakin\nArman\nAyan\nIrvin\nJaxton\nKarson\nMayson\nMohamed\nTrent\nWestin\nZaid\nZayne\nAhmad\nAugustus\nBrycen\nForrest\nJedidiah\nJensen\nJovani\nKoa\nMakai\nTerry\nWill\nAdolfo\nAdrien\nColby\nGino\nIsai\nJalen\nKalel\nKamden\nLane\nLewis\nMariano\nSkylar\nToby\nXavi\nAlden\nAnders\nBoston\nBrixton\nCrosby\nHumberto\nJai\nJustice\nKobe\nPrinceton\nRamses\nRobin\nShaun\nTerrence\nWayne\nBaron\nBenny\nDavin\nDawson\nDeandre\nDeegan\nEfren\nFletcher\nJagger\nJaxen\nKeaton\nMarcel\nMelvin\nSantana\nVaughn\nWestley\nAchilles\nAhmed\nColten\nDarien\nEddy\nGannon\nJadon\nJericho\nZaire\nAugustine\nBranden\nBrodie\nCallen\nDhruv\nErnest\nKody\nMagnus\nMarley\nNikhil\nNikko\nVince\nZeus\nAaden\nArya\nCarl\nDashiell\nEligh\nElisha\nHarley\nJacoby\nJamie\nKareem\nKolton\nMikel\nNick\nReagan\nReese\nTatum\nTiago\nAbner\nAlexandro\nBrenden\nCarmelo\nCory\nDaxton\nEder\nHayes\nHoward\nJair\nJasiah\nJohnpaul\nJordy\nJoseluis\nJuancarlos\nKasen\nKeanu\nMerrick\nPranav\nTristen\nVincenzo\nZephyr\nAarush\nBobby\nCairo\nCannon\nChandler\nDash\nEan\nKason\nKen\nLennon\nMaxx\nOmari\nWillie\nYosef\nZeke\nAthan\nAydan\nBilly\nBo\nBraydon\nChad\nElmer\nGerard\nHarold\nJeffery\nJohann\nJosh\nKrish\nLee\nMarcelino\nOswaldo\nRonnie\nTobin\nAydin\nBenicio\nCallum\nDemetrius\nDerick\nDevan\nGordon\nHezekiah\nImmanuel\nIrving\nJamal\nJeremias\nKainoa\nMaison\nMattias\nMustafa\nOtis\nQuinton\nRishi\nTalon\nTitan\nAram\nAzariah\nBoden\nClay\nDimitri\nGerald\nGrey\nHassan\nIzaac\nJaydon\nJoan\nJovan\nKenji\nNasir\nSamir\nStone\nSullivan\nWolfgang\nYeshua\nBode\nBroderick\nCaesar\nDariel\nDeven\nEleazar\nEver\nFinnley\nJustus\nKamari\nKeoni\nLev\nMekhi\nNathen\nRayyan\nReynaldo\nSky\nTrey\nZayd\nAnsel\nAnton\nArley\nAxl\nBodie\nBrett\nDenzel\nElon\nEmil\nEthen\nIlan\nJaeden\nJuanpablo\nKeenan\nKennedy\nLevon\nRodney\nStefan\nThaddeus\nAayden\nAjay\nBishop\nCason\nEitan\nEmery\nEmmet\nFidel\nFredy\nJionni\nJon\nLachlan\nMassimo\nNestor\nNikita\nRashad\nRian\nRio\nSylas\nTim\nVance\nYoussef\nZack\nZahir\nZavier\nAksel\nBraeden\nCal\nDan\nDarrell\nDarwin\nDeangelo\nEmir\nFox\nHarper\nHenrik\nHugh\nIshan\nIshmael\nJeshua\nJonathon\nJordi\nJovanny\nKain\nKylan\nLawson\nLucio\nLyric\nMauro\nMiller\nRick\nRico\nRome\nRowen\nSami\nVladimir\nAaryan\nAnsh\nAntony\nBeckham\nBenito\nBraulio\nBrent\nDemian\nEliot\nFederico\nGianluca\nHansel\nHeriberto\nHernan\nIsaak\nJacobo\nJet\nKabir\nKarim\nKent\nKhalid\nLinus\nMack\nMarcello\nRalph\nRaylan\nSahil\nSamarth\nSebastien\nShayan\nSlater\nYuvraj\nAlaric\nAlistair\nAxton\nAzael\nBernardo\nBlaise\nBronx\nChace\nDangelo\nElvin\nEverest\nEwan\nEzrah\nGian\nGraysen\nJamari\nJencarlos\nJerome\nJiovanni\nKekoa\nKruz\nLandyn\nLuc\nMichelangelo\nMikhail\nMusa\nNeo\nTaj\nTerrell\nThatcher\nViktor\nYasiel\nAren\nBraylen\nBraylon\nBrendon\nChanning\nClinton\nDanilo\nDereck\nDev\nElan\nEnder\nHans\nHarlan\nIzaak\nJad\nJoseangel\nJosias\nKarl\nKaysen\nKiran\nKonnor\nLyle\nMaxton\nMicheal\nMikah\nMonte\nNeel\nOcean\nRandall\nRemi\nRichie\nRishaan\nRylen\nShaurya\nSincere\nTerence\nTruman\nViaan\nAj\nAlek\nAngus\nAston\nAtreyu\nAurelio\nBastian\nCortez\nDayton\nDevyn\nDuncan\nFranky\nJackie\nJaysen\nJeff\nKaeden\nKairo\nKamron\nKelly\nKyree\nLeif\nLian\nLoki\nLucien\nMilton\nNate\nPayton\nPresley\nQuintin\nRen\nRyu\nSemaj\nTeo\nAdvik\nAedan\nAleksander\nAmeer\nAmos\nAnish\nAries\nArvin\nBarry\nBlaze\nBowie\nBranson\nCoen\nCrew\nCristofer\nDraven\nEdmund\nEros\nEverardo\nFaris\nFisher\nGauge\nGlenn\nHuxley\nIsa\nIsiah\nItzae\nJael\nJan\nJaxx\nJaziel\nJorden\nJullian\nKeven\nKole\nKris\nLazarus\nLenny\nMatt\nMontgomery\nPierre\nSahib\nSaid\nSeamus\nSheldon\nShiv\nUziel\nVeer\nWilder\nYahel\nYaseen\nZephaniah\nZev\nAkhil\nAndreas\nAndrey\nArchie\nArmen\nBenedict\nBraiden\nBrenton\nCalder\nCanon\nClaudio\nCraig\nDamion\nDarin\nDavion\nDempsey\nDeshawn\nEithan\nEliam\nEliezer\nEzio\nFavian\nForest\nFreddie\nGareth\nGarrison\nGenaro\nGibson\nGregorio\nGreysen\nGuadalupe\nHeath\nHiram\nIsael\nJahir\nJean\nJesiah\nJessiah\nJohnathon\nJovany\nKoda\nLangston\nLayton\nLeobardo\nLeroy\nLucius\nLucky\nNeal\nOskar\nPaolo\nPatricio\nReuben\nRyden\nRylee\nSeven\nShaan\nShiloh\nStellan\nSyed\nTerrance\nTom\nWes\nYandel\nZac\nAayush\nAdiel\nAdriano\nAidyn\nAnder\nAvi\nAxle\nAzaiah\nBlaine\nDeon\nEliel\nElyas\nFrancesco\nHadi\nHenri\nImran\nIsac\nIzayah\nJaron\nJaylin\nKalvin\nKhaled\nKyson\nLaith\nLayne\nLino\nMaceo\nMalaki\nMatix\nMaximillian\nMemphis\nNova\nNyjah\nObed\nOsiris\nPaulo\nRogan\nRon\nSidney\nSmith\nTayden\nTeagan\nThor\nTyree\nZakariya\nZen\nAayan\nArjan\nArnold\nBilal\nBill\nBoone\nCase\nCedric\nClive\nColeman\nDeagan\nDominique\nEsai\nFateh\nFausto\nFred\nGionni\nGuy\nHarris\nHasan\nHubert\nIdris\nIssa\nJacky\nJancarlos\nJasiel\nJaydan\nJaydin\nJayse\nJeancarlo\nKaleo\nKamran\nKenzo\nKeon\nKonner\nKorbin\nKurtis\nLedger\nLeighton\nLisandro\nLochlan\nMaddux\nMakaio\nMaksim\nMarko\nMicaiah\nMichaelangelo\nMikael\nNarek\nNaythan\nOm\nOren\nPharaoh\nRayaan\nReginald\nReyes\nSammy\nSubhan\nTrace\nViraj\nYonatan\nYovani\nZakaria\nZayan\nAlton\nAmado\nAnay\nAndrei\nAris\nArjen\nArrow\nAubrey\nAusten\nAyush\nBailey\nBear\nCasen\nChevy\nClarence\nCorban\nDale\nDeion\nDenver\nDezmond\nDillan\nDon\nDonnie\nDyllan\nEian\nErvin\nErwin\nHaiden\nHarlem\nHaven\nHayk\nIsacc\nJacen\nJaren\nJavon\nJim\nJules\nKalani\nKamren\nKashton\nLars\nLazaro\nLeopoldo\nLyam\nManraj\nMarcell\nMarek\nMazen\nMinh\nMoshe\nNikola\nNorman\nOzzie\nRanveer\nRemmy\nRigo\nRoderick\nRonen\nRonny\nRoshan\nSanthiago\nSimeon\nStephan\nTejas\nWallace\nWilmer\nZamir\nAaiden\nAbdulaziz\nAbelardo\nAbhinav\nAmar\nAntoine\nArmin\nArshan\nAtharv\nBoaz\nBosco\nCamron\nCanyon\nCarsen\nCullen\nCurren\nDaylen\nDomenic\nDonny\nEdan\nEdmond\nErnie\nEvander\nFinnian\nGadiel\nGerson\nGiorgio\nGiuseppe\nGus\nHanson\nIndiana\nIsidro\nJareth\nJaycion\nJayvion\nJermaine\nJeronimo\nJessy\nJordyn\nJosef\nJosemanuel\nKael\nKaison\nKannon\nKendall\nKeshav\nKiaan\nKimi\nKirin\nKoen\nKolby\nKristofer\nLaurence\nLloyd\nMarquis\nMars\nMenachem\nNoam\nOakley\nOsiel\nOsman\nOzzy\nRadley\nRavi\nReef\nRenzo\nReza\nRiaan\nRickey\nRockwell\nSalvatore\nShepard\nSol\nSunny\nTai\nTheseus\nTristin\nTurner\nTyrone\nValente\nWilly\nYadiel\nYoel\nYusef\nZuriel\nAbdulrahman\nAdler\nAdvay\nAlessio\nAlexandre\nAlexavier\nAmare\nAmmar\nAramis\nArden\nAric\nAsael\nAtom\nBenji\nBernard\nBoris\nBrad\nBrandt\nBrighton\nCaius\nCarmine\nChristiano\nClifford\nDarryl\nDavit\nDecker\nDonavan\nEdric\nEkam\nEliah\nEliott\nEloy\nFaisal\nGaige\nGlen\nHussein\nIsmail\nJabari\nJarvis\nJasen\nJaxxon\nJenson\nJethro\nJoao\nKase\nKasey\nKeane\nKolten\nKrishna\nKymani\nLegacy\nLinkin\nLonnie\nLuisangel\nMakoa\nManny\nMehtab\nMohamad\nMorris\nNahum\nNeev\nNoble\nOsmar\nOziel\nParsa\nPax\nPierson\nRider\nRobbie\nRyatt\nSalem\nSelim\nStetson\nSulaiman\nTaha\nTed\nTorin\nTrystan\nVidal\nWylie\nYousif\nYurem\nZach\nZackery\nZaden\nAadi\nAbiel\nAbran\nAdair\nAddison\nAdin\nAdvaith\nAgastya\nAhmir\nAldair\nAlekzander\nAlen\nAmin\nAnirudh\nArnulfo\nArsen\nAven\nAydenn\nAziel\nAzriel\nBaxter\nBeck\nBrando\nBrecken\nBrogan\nBryden\nCael\nCarmello\nCayson\nCharly\nCian\nClifton\nClint\nCormac\nCy\nDamari\nDeklan\nDenis\nDestin\nDiesel\nDyland\nEamon\nEdson\nEmile\nEphraim\nEren\nEshan\nFoster\nGeovany\nHamilton\nHashim\nIra\nJadiel\nJaycee\nJayven\nJeevan\nJeramiah\nJody\nJohnnie\nJohnson\nKaito\nKale\nKaras\nKenton\nKhai\nKohen\nKooper\nKory\nKristoff\nLenin\nLevy\nLex\nLoyal\nLyndon\nMac\nMalek\nMarshawn\nMasen\nMateus\nMaxon\nMylo\nNiccolo\nNigel\nNile\nNoa\nParth\nPenn\nPerry\nRami\nRaymon\nRaymundo\nRomello\nRoscoe\nRowdy\nRuhaan\nSaeed\nSaharsh\nSalomon\nSamar\nShepherd\nShia\nShlok\nShreyan\nSione\nSurya\nSyrus\nTegan\nTevin\nTigran\nTyce\nTyrus\nValen\nVikram\nVinny\nVishnu\nYasir\nYuma\nZachery\nZiggy\nZyler\nAamir\nAarin\nAbdul\nAkira\nAkshay\nAlain\nAleksandr\nAmador\nAneesh\nAnmol\nArham\nArik\nArron\nAshwin\nAuden\nAvian\nBrice\nBrysen\nCedar\nColter\nConan\nConstantine\nCristhian\nDakari\nDallin\nDaren\nDarion\nDarnell\nDavon\nDemarcus\nDevante\nDion\nDomingo\nDonte\nEdrick\nEsaias\nEsdras\nEthyn\nFabio\nFilip\nFrederic\nGavyn\nGene\nGeovanny\nGibran\nGracen\nGurfateh\nGurman\nHarman\nHawk\nHerbert\nHerman\nHiro\nHouston\nIlya\nJade\nJafet\nJamar\nJamil\nJaxsen\nJaylon\nJaythan\nJedediah\nJeriah\nJin\nJohncarlo\nJones\nJonny\nJoshue\nJuanjose\nJun\nKaan\nKahlil\nKaidan\nKaius\nKallen\nKamdyn\nKayleb\nKelton\nKevyn\nKilian\nKirill\nKiyan\nKyden\nKylen\nKyran\nLamar\nMaddex\nMarcellus\nMarquise\nMaxime\nMaximilliano\nMickey\nMihir\nMorrison\nMyron\nNakai\nNakoa\nNaveen\nNehemias\nNicolai\nNomar\nObadiah\nOden\nOdysseus\nOrin\nOsbaldo\nPete\nPhineas\nQuest\nRaghav\nRaheem\nRaj\nRamsey\nRehan\nRenato\nRishabh\nRoen\nRosendo\nRubin\nSameer\nSammuel\nSarkis\nSasha\nSaxon\nShay\nShivam\nSho\nSire\nSkye\nSlade\nSoham\nStefano\nTalan\nTaniela\nTariq\nTarun\nTavin\nTeddy\nThorin\nTodd\nTripp\nTriston\nTristyn\nTru\nTyrell\nTytus\nVarun\nVedant\nViggo\nVincente\nVinh\nVirgil\nWillem\nXzander\nYash\nZyaire\nAakash\nAariv\nAdham\nAdnan\nAdvait\nAizen\nAlexsander\nAmadeo\nAmadeus\nAman\nAmaziah\nAmbrose\nAniket\nAran\nArav\nArda\nAria\nAristotle\nArtem\nAugustin\nAustyn\nAvan\nAvenir\nAviel\nAvin\nAvion\nAvyaan\nAzrael\nBarron\nBenaiah\nBladimir\nBradyn\nBrayson\nBrennen\nBrentley\nBrooklyn\nCaeden\nCai\nCallahan\nCampbell\nCamryn\nCarsten\nCaspian\nCeasar\nCharleston\nCiaran\nCillian\nCoby\nCorben\nCorwin\nCuauhtemoc\nDamani\nDandre\nDavien\nDemir\nDomenico\nDonnell\nDwayne\nDwight\nEben\nEduard\nEllington\nEmmit\nEshaan\nEthaniel\nEtienne\nEugenio\nFares\nFiliberto\nFlavio\nGaren\nGautham\nGavino\nGeoffrey\nGeovani\nGeronimo\nGil\nGraeme\nGurnoor\nHarlow\nHaruto\nHendrik\nHolland\nHollis\nHoracio\nIbraheem\nIke\nIndigo\nIven\nJae\nJamarion\nJamir\nJathan\nJaycen\nJaydenn\nJaykob\nJayvon\nJeancarlos\nJessejames\nJob\nJoell\nJohannes\nJonatan\nKaidyn\nKamryn\nKaram\nKavi\nKavin\nKerry\nKnoah\nKurt\nLeeland\nLeopold\nLeyton\nLinden\nLior\nLoren\nLoukas\nLuther\nManolo\nMassiah\nMatheo\nMaveric\nMaxemiliano\nMaxson\nMaxximus\nMissael\nMuhammed\nNabil\nNeftali\nNeithan\nNiklaus\nNikolaus\nNyle\nOlin\nOmer\nOnyx\nOri\nPalmer\nPaulino\nPavel\nPraneel\nRaffi\nRaleigh\nRaylen\nReymundo\nRishab\nRitchie\nRithvik\nRoan\nRomelo\nRonav\nRustin\nRyley\nSaif\nSathvik\nSelvin\nShayne\nSir\nSteele\nStorm\nStuart\nSufyan\nSutter\nSven\nSylus\nTahj\nTheodor\nTheron\nThien\nTimofey\nTristian\nTRUE\nTye\nValentine\nVed\nViliami\nVinay\nViraaj\nWarner\nWest\nWilfredo\nWillis\nWinson\nWolf\nYahya\nYazan\nYerik\nYichen\nYohan\nYousuf\nYuvan\nZacarias\nZakariah\nZarek\nAaditya\nAbrahan\nAdalberto\nAdhvik\nAdonai\nAgam\nAlasdair\nAlexi\nAlister\nAlston\nAmani\nAmmon\nAn\nAngad\nAreg\nAriston\nAskari\nAtharva\nAyansh\nAyman\nAyrton\nBayron\nBeaux\nBeckam\nBert\nBlair\nBlas\nBradford\nBradly\nBraedon\nBraedyn\nBrandan\nBrodi\nCaine\nCashton\nCasper\nCavan\nCaysen\nChayton\nCoda\nCornelius\nCurran\nDael\nDaksh\nDamir\nDarsh\nDaryl\nDashawn\nDastan\nDave\nDeanthony\nDejon\nDekker\nDelfino\nDemetrio\nDemitri\nDeniz\nDillinger\nDonatello\nEddison\nEisen\nElia\nElio\nElton\nEly\nElyjah\nEoin\nEriberto\nEsau\nEvren\nFabricio\nFaustino\nFerris\nGalen\nGamaliel\nGeo\nGio\nGray\nGrayden\nGraydon\nHagen\nHaris\nHridhaan\nHussain\nIann\nIden\nIram\nIrie\nIsreal\nIzael\nIzan\nIzek\nJaciel\nJarek\nJaylan\nJed\nJehu\nJencarlo\nJeremih\nJerimiah\nJimmie\nJiraiya\nJireh\nJonnathan\nJoseantonio\nJourney\nJuanmanuel\nJuno\nJuvenal\nJuventino\nKace\nKadyn\nKailash\nKailer\nKaine\nKaizen\nKanoa\nKarsen\nKasra\nKaydon\nKeller\nKenai\nKerem\nKlayton\nKnight\nKonrad\nLamont\nLandin\nLemuel\nLeone\nLiem\nLiev\nLlewyn\nLucan\nLucciano\nLuigi\nLyon\nLysander\nMadix\nMahdi\nMateen\nMathieu\nMathis\nMavrick\nMick\nMiking\nMordecai\nMurad\nMurphy\nNazareth\nNevin\nNiall\nNiam\nNicco\nNihal\nNolen\nOak\nOlivier\nOllie\nParis\nQuinten\nQuintus\nRajveer\nRamzi\nRanger\nRashid\nRegan\nReilly\nRhodes\nRiker\nRiku\nRiot\nRishik\nRock\nRomel\nRommel\nRony\nRoque\nRoss\nRyo\nSabastian\nSachin\nServando\nShannon\nSiddhant\nSiddhanth\nSiddhartha\nStephon\nStryker\nSuleiman\nSutton\nTaiga\nTalen\nTaran\nTenzin\nTimmy\nTrevon\nTriton\nTyrese\nUmar\nValor\nVander\nVernon\nVihan\nWatson\nWaylan\nWynn\nYadier\nYamil\nZacharias\nZade\nZadkiel\nZaki\nZaylen\nZeno\nZorawar\nAadhav\nAadit\nAahil\nAaric\nAbhay\nAbhiram\nAbir\nAble\nAbubakr\nAdel\nAdhrit\nAedyn\nAhaan\nAkash\nAkshaj\nAleczander\nAlexey\nAmaan\nAmaru\nAmit\nAndrez\nArash\nArlen\nArtin\nAsante\nAshot\nAthanasios\nAvraham\nAzaan\nBlayne\nBoyd\nBriggs\nBrigham\nBurke\nCaelan\nCali\nCalin\nCanaan\nCarver\nCedrick\nChaz\nChester\nClarke\nClement\nColtyn\nCorbyn\nCru\nCruze\nDamen\nDaron\nDeaglan\nDemetri\nDenny\nDesi\nDietrich\nDimas\nDino\nDorien\nDutch\nDylann\nDylen\nEbenezer\nEiden\nElam\nEldon\nEliab\nEliazar\nEllison\nElroy\nEmory\nEven\nEvin\nFermin\nFischer\nFredrick\nGabino\nGalileo\nGeno\nGreg\nGrigor\nHardy\nHaroon\nHarout\nHaydn\nHaziel\nHelios\nHuck\nHuy\nIktan\nIndy\nJacinto\nJacques\nJadan\nJaedon\nJaedyn\nJahdiel\nJamel\nJarrett\nJassiel\nJayvian\nJayvin\nJen\nJerald\nJerrick\nJetson\nJoeseph\nJosemiguel\nJovian\nJr\nJuanantonio\nJudson\nJupiter\nJustino\nKadence\nKamilo\nKarlo\nKarlos\nKarsten\nKarthik\nKeagan\nKeandre\nKeelan\nKei\nKeion\nKenan\nKenshin\nKenyon\nKhari\nKhristian\nKieren\nKlay\nKoji\nKonstantin\nKye\nKyren\nLandry\nLester\nLio\nLocke\nLuiz\nMacallan\nMaddix\nMaher\nMahir\nManav\nMarciano\nMarcoantonio\nMarion\nMarkell\nMarlo\nMaurilio\nMaximillion\nMaximino\nMccoy\nMeir\nMerrik\nMichel\nMikey\nMikhael\nMiko\nMonroe\nMujtaba\nMykel\nNadav\nNaim\nNatan\nNathanial\nNavarro\nNavin\nNazar\nNeiko\nNicolo\nNoeh\nNorberto\nOle\nPascal\nPercy\nRain\nRainer\nRansom\nRasheed\nRayce\nRayshawn\nRayvon\nRihaan\nRishan\nRivan\nRobby\nRodger\nRoel\nRojelio\nRonit\nRoosevelt\nRudolph\nSahir\nSai\nSaleh\nSalman\nSampson\nShiven\nSidharth\nSohum\nStevan\nStewart\nSydney\nSylis\nSyncere\nTaiyo\nTalal\nTayvion\nTevita\nTimoteo\nTravon\nTrinidad\nTycho\nTylen\nUlices\nUriyah\nUzziel\nVahan\nVann\nVinson\nVito\nVivan\nViyan\nVon\nWaris\nWayde\nWesson\nWilber\nWilbert\nWiley\nWinter\nWoodrow\nWylder\nYaakov\nYanis\nYanni\nYareth\nYariel\nYonathan\nYuri\nZair\nZakai\nZaven\nZaydin\nZiaire\nZixuan\nZoe\nAadan\nAarnav\nAbdelrahman\nAbdurrahman\nAbisai\nAdael\nAdi\nAdvith\nAero\nAeron\nAeson\nAidric\nAithan\nAlanzo\nAlder\nAlexandros\nAmarion\nAmeen\nAmiri\nAnand\nAnas\nAndersen\nAndree\nAngello\nAnoop\nApolo\nArath\nArek\nArihaan\nArihant\nArin\nArion\nArius\nArmon\nArmoni\nArnoldo\nArsh\nArt\nArtemio\nAryeh\nAsh\nAshwath\nAsiah\nAthen\nAvaneesh\nAvner\nAvyan\nAvyukt\nAyce\nAzan\nBane\nBarak\nBasil\nBaylor\nBentlee\nBently\nBenton\nBinyamin\nBogdan\nBooker\nBram\nBrandyn\nBraxten\nBroc\nBroden\nCalen\nCalix\nCalixto\nCalum\nCaspar\nCassidy\nCayleb\nCelso\nChayse\nChristofer\nChuck\nCiel\nClemente\nCove\nCrawford\nCreed\nCyril\nDaemon\nDamarion\nDarby\nDarrian\nDarrien\nDarrin\nDaryan\nDavy\nDaxon\nDemarco\nDerian\nDerin\nDeron\nDesean\nDex\nDexton\nDez\nDhyan\nDidier\nDmitri\nDonato\nDonaven\nDonavin\nDonavon\nDonell\nDraco\nDrayden\nDresden\nDylon\nEarl\nEbrahim\nEdin\nEdvin\nEesa\nEivin\nEmin\nEmrys\nEnoc\nErich\nErickson\nEsiah\nEvaristo\nExodus\nEyan\nEyden\nEzel\nEzrael\nFerdinand\nFin\nFinnigan\nFlint\nFloyd\nFynn\nGabriele\nGarren\nGautam\nGenesis\nGerrit\nGohan\nGolden\nGracin\nGurshaan\nGurveer\nHaden\nHakeem\nHamad\nHaruki\nHarut\nHarutyun\nHarveer\nHasani\nHelio\nHercules\nHero\nHieu\nHilario\nHisham\nHyrum\nIain\nIlay\nIlias\nIlyas\nIman\nImanol\nIoane\nIsayah\nIzak\nIzik\nJaasiel\nJaccob\nJacion\nJahsiah\nJaidan\nJaidyn\nJakai\nJakson\nJamaal\nJamieson\nJanuel\nJashan\nJaxin\nJaxxson\nJaydee\nJaylyn\nJayshawn\nJerson\nJeziah\nJianni\nJiovani\nJoab\nJoachim\nJordon\nJosiyah\nJovon\nJuandiego\nJuaquin\nJunaid\nKabeer\nKaj\nKal\nKalev\nKanishk\nKanon\nKato\nKavir\nKaydin\nKento\nKeo\nKeyan\nKeyon\nKhaleb\nKhang\nKirk\nKiyoshi\nKlyde\nKoby\nKorben\nKorey\nKota\nKrew\nKrishiv\nKrithik\nKroy\nKyan\nLathan\nLauro\nLeeroy\nLeiland\nLeslie\nLeviticus\nLukah\nLux\nMacario\nMace\nMackenzie\nMadison\nMaeson\nMakhi\nMalachai\nMalikai\nManveer\nMarques\nMarquez\nMasiah\nMasson\nMatai\nMatan\nMaverik\nMayank\nMckay\nMert\nMeyer\nMikail\nMikko\nMiro\nMohit\nNasser\nNatanael\nNatividad\nNavraj\nNaythen\nNazario\nNeko\nNevaan\nNevan\nNihaal\nNikolaos\nNils\nNirvaan\nNirvan\nNoahjames\nNorris\nOrson\nOz\nOzias\nPerseus\nPhilippe\nPietro\nPrithvi\nRafe\nRakan\nRandolph\nRani\nRaynav\nRaziel\nReggie\nReign\nReyan\nRhythm\nRitvik\nRiyan\nRobinson\nRoczen\nRohin\nRolan\nRonak\nRush\nRusty\nRye\nSahas\nSalah\nSalim\nSamyak\nSatvik\nSavion\nSequoia\nSeverin\nShahan\nShaheer\nShai\nShalom\nShan\nShea\nShourya\nShrey\nShreyas\nSiaosi\nSid\nSilvestre\nSrihan\nSteel\nStepan\nStevie\nStiles\nSummer\nSylvester\nTalha\nTalin\nTarek\nTarik\nTheophilus\nTiger\nTilden\nTimur\nTlaloc\nToryn\nTremayne\nTrentin\nTrystin\nTyden\nTyshawn\nTzvi\nUbaldo\nUzziah\nVahe\nVedanth\nVic\nVin\nVirat\nVivek\nVladislav\nWaseem\nWayland\nWaylen\nWestyn\nWren\nXabi\nXaden\nYamato\nYamir\nYannis\nYared\nYassin\nYehuda\nYeray\nYihan\nYoseph\nZaidan\nZakary\nZealand\nZiad\nZidane\nZiyad\nMary\nHelen\nDorothy\nRuth\nMargaret\nFrances\nAlice\nElizabeth\nAnna\nMildred\nRose\nFlorence\nThelma\nEvelyn\nVirginia\nMarie\nEdna\nGladys\nHazel\nEdith\nElsie\nEsther\nClara\nGrace\nJosephine\nKatherine\nLillian\nAnn\nEthel\nPauline\nEmma\nLouise\nEva\nLucille\nMaria\nMarjorie\nMabel\nMarguerite\nIrene\nMartha\nRuby\nCatherine\nJulia\nViola\nBernice\nLaura\nVera\nBertha\nGenevieve\nNellie\nPearl\nBeatrice\nDoris\nLucy\nAgnes\nVivian\nGertrude\nIda\nJennie\nMyrtle\nAlma\nBessie\nEleanor\nEmily\nLois\nMarian\nVelma\nElla\nJean\nKathryn\nMaxine\nMinnie\nSylvia\nTheresa\nAmelia\nBlanche\nCharlotte\nSarah\nViolet\nAnne\nBetty\nDora\nGeorgia\nLydia\nOlive\nVerna\nEllen\nErma\nFlora\nFrieda\nJane\nJessie\nLeona\nMarion\nSara\nStella\nAmy\nBarbara\nCarmen\nCaroline\nCora\nDella\nFern\nLena\nMollie\nOlga\nOpal\nPatricia\nWilma\nAnnie\nCarol\nDaisy\nEunice\nInez\nKathleen\nLola\nLorraine\nMay\nShirley\nAda\nBeulah\nElva\nFreda\nGeraldine\nGoldie\nIrma\nJanet\nJune\nLorena\nMable\nMaude\nNaomi\nNell\nNina\nRoberta\nSadie\nSally\nMary\nHelen\nDorothy\nMargaret\nRuth\nMildred\nFrances\nRose\nAnna\nEvelyn\nMarie\nElizabeth\nJosephine\nEdith\nEsther\nGladys\nHazel\nVirginia\nFlorence\nAlice\nEthel\nGrace\nThelma\nEdna\nMartha\nLouise\nLucille\nLillian\nMabel\nPauline\nRuby\nIrene\nAnn\nBernice\nBertha\nCatherine\nDoris\nElsie\nEmma\nGertrude\nNellie\nMarjorie\nAgnes\nAlma\nBetty\nFern\nMaria\nEva\nGenevieve\nJessie\nVelma\nBeatrice\nEleanor\nLena\nLois\nWilma\nDella\nBeulah\nClara\nMaxine\nVera\nVivian\nJulia\nLucy\nOpal\nSarah\nEllen\nIda\nJean\nMarguerite\nAnnie\nCharlotte\nChristine\nEmily\nFreda\nJane\nLaura\nLydia\nOlive\nAda\nJennie\nJuanita\nKatherine\nMarian\nMarion\nMinnie\nMyrtle\nPearl\nViola\nBarbara\nCecelia\nElla\nFlora\nGeneva\nIsabel\nKathryn\nLela\nMadeline\nMae\nViolet\nWinifred\nAlberta\nAnne\nBessie\nErma\nGeorgia\nGeraldine\nMollie\nShirley\nStella\nSusie\nTheresa\nVerna\nAnita\nCarolyn\nCora\nDora\nEileen\nEunice\nFay\nGoldie\nHarriet\nInez\nIrma\nKathleen\nLea\nLillie\nLorene\nLottie\nLucile\nNadine\nOlga\nSally\nSylvia\nMary\nHelen\nMargaret\nRuth\nDorothy\nMildred\nFrances\nElizabeth\nAlice\nVirginia\nLouise\nFlorence\nEsther\nEvelyn\nMarie\nRose\nEdna\nAnna\nLois\nJosephine\nIrene\nMarjorie\nEthel\nLucille\nPauline\nEdith\nAnn\nElsie\nThelma\nAgnes\nHazel\nMartha\nGladys\nBetty\nClara\nEleanor\nLillian\nGrace\nMarguerite\nCatherine\nDoris\nEmma\nGertrude\nMabel\nLaura\nBernice\nCharlotte\nJean\nJulia\nBarbara\nBertha\nKathryn\nRuby\nVera\nEva\nJennie\nBessie\nKatherine\nMinnie\nOpal\nElla\nLucy\nStella\nVivian\nBeatrice\nBlanche\nAlma\nFern\nIda\nLena\nMarion\nMaxine\nMyrtle\nSarah\nViolet\nWilma\nFlora\nMaria\nNellie\nPearl\nSylvia\nAda\nGenevieve\nGeorgia\nJessie\nLeona\nLydia\nMarian\nRoberta\nAnne\nDella\nEllen\nErma\nJane\nJuanita\nMay\nViola\nAudrey\nGoldie\nIsabel\nLola\nVelma\nDolores\nDora\nEmily\nGeraldine\nHarriet\nHilda\nIrma\nNancy\nNora\nOlive\nPhyllis\nAngela\nAnnie\nCaroline\nCarolyn\nLillie\nMae\nMollie\nMuriel\nPatricia\nSadie\nSue\nAlberta\nAmelia\nCarol\nGeneva\nJune\nLeah\nLuella\nMyra\nRachel\nSally\nSusie\nVictoria\nAngelina\nBeulah\nConnie\nEloise\nElvira\nFannie\nFaye\nHelene\nInez\nJacqueline\nLenora\nLoretta\nMable\nMargie\nMatilda\nNaomi\nNatalie\nNina\nRosa\nTillie\nMary\nHelen\nDorothy\nMargaret\nRuth\nFrances\nElizabeth\nMildred\nAnna\nAlice\nEvelyn\nMarie\nRose\nEsther\nVirginia\nFlorence\nJosephine\nEdith\nGrace\nLouise\nGladys\nMartha\nIrene\nEdna\nCatherine\nMaxine\nEthel\nLucille\nMarjorie\nThelma\nClara\nMarguerite\nBernice\nJennie\nLois\nAnn\nLillian\nEmma\nPauline\nBarbara\nElsie\nHazel\nAgnes\nGenevieve\nGertrude\nVelma\nRuby\nNellie\nBetty\nEleanor\nJean\nWilma\nAnnie\nBessie\nDoris\nJulia\nEllen\nEva\nJuanita\nMarion\nSarah\nViola\nIda\nJane\nMabel\nMyrtle\nBertha\nJessie\nKatherine\nLena\nShirley\nSylvia\nVera\nGeraldine\nKathryn\nLaura\nMaria\nMinnie\nStella\nTheresa\nAda\nCharlotte\nDora\nRachel\nViolet\nAlma\nGeneva\nMae\nOlive\nOpal\nPearl\nBlanche\nCora\nDolores\nElaine\nFlora\nLeah\nLucy\nMarian\nAnne\nBeulah\nCarol\nElla\nEmily\nErma\nInez\nIrma\nLucile\nLydia\nPhyllis\nRoberta\nVivian\nWinifred\nAlberta\nGoldie\nKathleen\nLorraine\nNorma\nPeggy\nBeatrice\nLeona\nMollie\nNancy\nAdeline\nCarolyn\nCarrie\nCecilia\nChristine\nDella\nEula\nGeorgia\nLily\nMatilda\nNora\nSadie\nAmy\nAudrey\nConstance\nDaisy\nElva\nEstella\nFreda\nHarriet\nIris\nIsabel\nJanet\nJune\nLoretta\nMamie\nRamona\nSophie\nTeresa\nAmelia\nAngelina\nBeth\nCarmen\nCleo\nEffie\nEstelle\nFern\nGwendolyn\nHenrietta\nLela\nLila\nLillie\nMadeline\nMattie\nMayme\nMiriam\nMuriel\nNaomi\nNettie\nPatricia\nRebecca\nRosa\nSara\nTheodora\nVerna\nMary\nHelen\nDorothy\nMargaret\nRuth\nFrances\nMildred\nElizabeth\nRose\nMarie\nVirginia\nAnna\nEvelyn\nEdith\nEsther\nFlorence\nJosephine\nAlice\nHazel\nLucille\nGrace\nLois\nLouise\nMarjorie\nCatherine\nEthel\nBertha\nElsie\nClara\nEmma\nThelma\nMartha\nEdna\nLillian\nGladys\nPauline\nAnn\nRuby\nDoris\nEva\nKatherine\nLeona\nVera\nJane\nJean\nIrene\nMabel\nMarguerite\nEleanor\nMarian\nViola\nAlma\nBetty\nVelma\nGertrude\nJennie\nJune\nAgnes\nBeatrice\nBernice\nCharlotte\nJuanita\nJulia\nLaura\nMarion\nPearl\nPhyllis\nSarah\nBessie\nMaxine\nCora\nDella\nJessie\nKathryn\nLena\nLucy\nIda\nMaria\nMinnie\nMollie\nMyrtle\nWilma\nBeulah\nLydia\nNellie\nViolet\nBlanche\nInez\nNancy\nShirley\nVivian\nAnne\nBarbara\nOlive\nStella\nOpal\nAmelia\nGenevieve\nIrma\nLeah\nLola\nTheresa\nAda\nFern\nFreda\nJoyce\nLila\nLoretta\nAlberta\nAlta\nAnnie\nCecilia\nElla\nEllen\nEileen\nErma\nFlora\nGeorgia\nHenrietta\nIva\nMae\nNaomi\nRachel\nRoberta\nVerna\nAudrey\nElva\nFaye\nGeraldine\nKathleen\nMable\nRosie\nSara\nSylvia\nAngelina\nDaisy\nElaine\nEloisa\nEula\nEunice\nGeneva\nHarriet\nHilda\nIola\nIsabelle\nLorraine\nLucile\nNettie\nRosa\nSadie\nAdele\nAdeline\nAmy\nCaroline\nCarolyn\nCecelia\nCelia\nConstance\nDora\nEmily\nEtta\nIris\nJeannette\nMadeline\nMay\nOlga\nRamona\nRebecca\nRita\nRosemary\nSally\nSelma\nWanda\nAngeline\nAntonia\nArline\nBillie\nCarmen\nCarrie\nCleo\nEffie\nEleanore\nElma\nEloise\nGoldie\nGwendolyn\nImogene\nIsabel\nJoan\nJosie\nLily\nLuella\nMamie\nMillie\nMuriel\nNatalie\nNora\nNorma\nRowena\nSophie\nWinifred\nMary\nHelen\nDorothy\nMargaret\nRuth\nFrances\nAlice\nEvelyn\nVirginia\nRose\nAnna\nElizabeth\nMildred\nJosephine\nMarie\nEsther\nFlorence\nEdith\nMarjorie\nLois\nGrace\nHazel\nLucille\nElsie\nGladys\nEdna\nEleanor\nLouise\nBetty\nThelma\nMartha\nPauline\nIrene\nEmma\nEthel\nDoris\nGertrude\nCatherine\nClara\nBertha\nAnn\nKatherine\nJane\nJean\nJennie\nMabel\nNellie\nAgnes\nEva\nWilma\nJuanita\nLillian\nMaxine\nMyrtle\nRuby\nVera\nElla\nKathryn\nLaura\nJune\nJulia\nSarah\nBeulah\nLeona\nPearl\nAnne\nCharlotte\nGenevieve\nViola\nViolet\nBessie\nIda\nLucy\nLydia\nMarion\nAlma\nEllen\nGeorgia\nMarguerite\nShirley\nBarbara\nBernice\nDella\nFlora\nGeraldine\nLola\nPhyllis\nVelma\nErma\nSylvia\nMarian\nOpal\nStella\nVivian\nAudrey\nBeatrice\nFern\nLena\nMaria\nFaye\nFreda\nHarriet\nIrma\nJessie\nRachel\nDora\nEunice\nOlive\nRoberta\nVerna\nAlberta\nAmelia\nCora\nMinnie\nNancy\nNaomi\nRosie\nBlanche\nCaroline\nMollie\nTheresa\nAda\nEileen\nFrieda\nMae\nSadie\nAnnie\nArlene\nBonnie\nInez\nJoan\nLorraine\nLucile\nRita\nRosalie\nBeverly\nCarmen\nHilda\nKathleen\nLela\nLoretta\nLuella\nMable\nMuriel\nNora\nPeggy\nRosemary\nWanda\nAdeline\nDixie\nElaine\nHenrietta\nLeah\nLillie\nMillie\nNina\nNorma\nAlta\nBillie\nCarrie\nDolores\nEffie\nEmily\nEstella\nEtta\nGretchen\nIsabel\nLorene\nMay\nWinifred\nAdele\nAmy\nAngelina\nAnnabelle\nCarolyn\nCecilia\nCleo\nDorothea\nEvalyn\nIna\nIone\nIva\nJanet\nJeanette\nLavina\nLenora\nLeola\nLeta\nMadeline\nNeva\nOlga\nPatricia\nRamona\nSally\nSara\nSophia\nSophie\nSusie\nVictoria\nAngela\nAngeline\nCarmelita\nCelia\nClarice\nDaisy\nEdythe\nElva\nGoldie\nHarriett\nHarriette\nHelena\nHelene\nIla\nJeanne\nLottie\nMaurine\nNettie\nRebecca\nRosa\nSelma\nStephanie\nSusan\nTeresa\nMary\nHelen\nDorothy\nMargaret\nRuth\nFrances\nVirginia\nMildred\nElizabeth\nRose\nEsther\nEvelyn\nAlice\nFlorence\nMarie\nAnna\nEdith\nLois\nEdna\nJosephine\nThelma\nBetty\nDoris\nIrene\nLouise\nElsie\nLucille\nMarjorie\nPauline\nBertha\nMartha\nEleanor\nHazel\nEva\nEthel\nClara\nGladys\nJulia\nLillian\nAnn\nEmma\nJean\nWilma\nGrace\nRuby\nVera\nCatherine\nKatherine\nNellie\nGertrude\nJune\nMaxine\nBarbara\nViola\nAlma\nMarguerite\nGenevieve\nStella\nEllen\nJane\nJessie\nJuanita\nAgnes\nMyrtle\nBernice\nCharlotte\nPearl\nLydia\nAnne\nVelma\nFreda\nSarah\nLaura\nPhyllis\nRachel\nDella\nIda\nBessie\nGeraldine\nMabel\nBeulah\nLena\nMinnie\nViolet\nDora\nElla\nMaria\nSylvia\nTheresa\nBeatrice\nBlanche\nFlora\nJennie\nKathryn\nShirley\nFern\nCarolyn\nIrma\nLola\nMarian\nOpal\nEileen\nKathleen\nLeona\nPatricia\nRoberta\nEmily\nLeah\nLillie\nNaomi\nWinifred\nAmelia\nAudrey\nCarol\nElaine\nMarion\nMollie\nVerna\nVivian\nCora\nInez\nLucy\nNora\nRita\nAlta\nAngelina\nAnnie\nCarmen\nCaroline\nEdythe\nErma\nEunice\nLorraine\nMuriel\nNina\nOlive\nSally\nAda\nAnita\nFrieda\nIna\nRosa\nRosemary\nErnestine\nEstella\nGeorgia\nHilda\nJeanette\nMable\nMae\nMiriam\nNadine\nSusie\nAlberta\nCleo\nEloise\nHarriet\nLucile\nMargery\nNancy\nSadie\nSara\nWanda\nCharline\nDaisy\nElma\nElvera\nFaye\nGeneva\nGwendolyn\nIsabel\nJeannette\nJoyce\nLela\nMadeline\nNorma\nOlga\nPeggy\nRamona\nRegina\nTheda\nAnnabelle\nAnnette\nBerniece\nChristine\nEffie\nHarriett\nHenrietta\nJanet\nKay\nLeila\nMadge\nRena\nTillie\nArlene\nBillie\nDorothea\nElva\nEula\nFay\nIola\nIone\nIsabelle\nLila\nLily\nLula\nMarjory\nMay\nMayme\nRosalie\nRosie\nTeresa\nVictoria\nYvonne\nAmy\nBeryl\nCelia\nDeloris\nDollie\nDonna\nEleanore\nIris\nJacqueline\nJeanne\nJoan\nLavona\nLeora\nLorena\nLoretta\nLuella\nMamie\nMaude\nMolly\nMona\nMyra\nNeva\nSophie\nVerda\nVesta\nWilla\nMary\nHelen\nDorothy\nMargaret\nRuth\nVirginia\nMildred\nFrances\nAlice\nBetty\nElizabeth\nEsther\nRose\nMarie\nJosephine\nAnna\nEvelyn\nLucille\nFlorence\nEdna\nPauline\nLois\nDoris\nJune\nLillian\nThelma\nEdith\nLouise\nMartha\nMarjorie\nClara\nEleanor\nEthel\nBertha\nEva\nIrene\nRuby\nCatherine\nHazel\nEmma\nBarbara\nMaxine\nJean\nGladys\nElsie\nVera\nWilma\nGrace\nKatherine\nMarian\nNellie\nAnn\nBernice\nGertrude\nMabel\nMarguerite\nMarion\nKathryn\nJennie\nJulia\nLeona\nCharlotte\nIda\nJuanita\nViola\nVelma\nLaura\nPearl\nAgnes\nMaria\nPhyllis\nOpal\nLena\nMyrtle\nElla\nLucy\nStella\nSylvia\nWinifred\nEllen\nSarah\nVivian\nAnne\nBeatrice\nGeorgia\nJessie\nLola\nViolet\nDella\nEileen\nErma\nJane\nTheresa\nAlma\nBessie\nBlanche\nIrma\nGenevieve\nGeraldine\nLucile\nOlive\nPatricia\nAnnie\nHarriet\nMinnie\nRachel\nVerna\nBonnie\nCarmen\nJoan\nLydia\nRoberta\nSally\nDora\nElaine\nFreda\nFrieda\nNaomi\nShirley\nAda\nAnita\nKathleen\nNora\nBeulah\nEmily\nFern\nFlora\nLeah\nMargie\nMay\nMiriam\nAlberta\nAudrey\nBeverly\nCecelia\nDonna\nLillie\nMable\nNadine\nNancy\nOlga\nRosemary\nCaroline\nCarrie\nCleo\nCora\nErnestine\nGeneva\nGoldie\nHarriett\nIsabelle\nMae\nMuriel\nOra\nPeggy\nRamona\nRebecca\nArlene\nCarol\nCarolyn\nChristine\nDolores\nEstella\nHannah\nInez\nIsabel\nJeanette\nLila\nLorene\nMollie\nBillie\nFaye\nIna\nMadeline\nNina\nRita\nAmelia\nAmy\nArline\nBerniece\nCharline\nClaire\nDixie\nEleanore\nElinor\nElma\nElva\nJeanne\nLily\nLoretta\nLorraine\nLula\nMamie\nNorma\nRosie\nSara\nSophie\nSusie\nTeresa\nVictoria\nAdeline\nAileen\nAlta\nAngelina\nAvis\nDaisy\nDorothea\nEloise\nEstelle\nHarriette\nHenrietta\nHilda\nIla\nIva\nLuella\nMarcella\nRosalie\nWanda\nAnnabelle\nBernadine\nCelia\nDelia\nElvira\nEunice\nHope\nIris\nJewell\nJosie\nJoyce\nLela\nMarilyn\nMarjory\nNettie\nPatsy\nSue\nTheda\nTillie\nAlyce\nAngela\nAnnette\nAntoinette\nBeryl\nDelpha\nEdythe\nElnora\nEtta\nEula\nFannie\nHelena\nIlene\nJanet\nJeannette\nLeola\nLeota\nLetha\nMattie\nMaude\nMelba\nMelva\nNeva\nOlivia\nRegina\nRosella\nSophia\nMary\nHelen\nDorothy\nMargaret\nRuth\nVirginia\nFrances\nBetty\nMildred\nAlice\nMarjorie\nElizabeth\nLois\nEsther\nRose\nEvelyn\nAnna\nJosephine\nLucille\nMarie\nLouise\nPauline\nEdna\nMartha\nFlorence\nDoris\nEdith\nIrene\nThelma\nGladys\nBarbara\nRuby\nClara\nEva\nJune\nEmma\nLillian\nHazel\nEthel\nGrace\nWilma\nElsie\nBertha\nCharlotte\nJuanita\nAnn\nJean\nMaxine\nEleanor\nKatherine\nAgnes\nShirley\nPearl\nVivian\nIda\nBernice\nStella\nPhyllis\nAlma\nCatherine\nJane\nJulia\nMabel\nMarguerite\nOpal\nVera\nLeona\nVelma\nGeraldine\nNellie\nMaria\nMyrtle\nGertrude\nJessie\nMarion\nViola\nAda\nEileen\nLorraine\nDora\nPatricia\nGenevieve\nLaura\nLucy\nCora\nEllen\nFern\nNorma\nViolet\nBeatrice\nHarriet\nKathryn\nLena\nMarian\nSarah\nDella\nElla\nLydia\nMinnie\nAnne\nAudrey\nJennie\nGeneva\nRoberta\nFlora\nGeorgia\nAnnie\nEmily\nBeulah\nWinifred\nBessie\nCaroline\nCarolyn\nErma\nLillie\nLola\nRosemary\nSylvia\nCarmen\nFreda\nInez\nLeah\nMollie\nRachel\nAngelina\nJeanne\nLoretta\nOlga\nSally\nDolores\nErnestine\nFrieda\nPeggy\nRosa\nAlta\nBlanche\nHilda\nLorene\nMuriel\nAmelia\nAngela\nAnita\nCarol\nCarrie\nFaye\nHenrietta\nJanet\nMable\nRita\nSusie\nTillie\nWanda\nCelia\nCleo\nEstella\nIrma\nIva\nLorena\nLula\nMae\nMargie\nNaomi\nNeva\nNora\nVictoria\nElaine\nHarriett\nIsabel\nJoan\nKathleen\nLila\nMargery\nMiriam\nNancy\nOlive\nRosie\nSusan\nBette\nBillie\nBonnie\nDonna\nElinor\nElva\nEtta\nEunice\nIris\nLela\nLupe\nNettie\nNina\nVerna\nAileen\nArlene\nAvis\nCecelia\nElvira\nIola\nIona\nJacqueline\nJeanette\nJeannette\nJoyce\nLeola\nLuella\nAdeline\nAlberta\nAva\nBeth\nChristine\nConstance\nDaisy\nEffie\nElma\nEula\nGwendolyn\nIna\nIsabelle\nLeota\nLucile\nMamie\nMolly\nSophia\nTheresa\nAngeline\nDorothea\nDorthy\nEdythe\nGoldie\nHarriette\nHope\nJewell\nJoy\nKatharine\nLauretta\nLenore\nLeora\nMona\nRamona\nRebecca\nRegina\nSara\nTeresa\nTrinidad\nZelma\nAmy\nAnnabelle\nBerniece\nBeverly\nCharlene\nCharline\nDolly\nEldora\nElna\nFay\nFrancis\nGlenna\nIla\nImogene\nJanice\nLaurel\nLea\nLee\nLeta\nLora\nMadeline\nMarcella\nMardell\nMarilyn\nMaude\nMelba\nMillie\nMina\nNona\nOra\nPriscilla\nSadie\nSophie\nSue\nYvonne\nMary\nDorothy\nHelen\nMargaret\nRuth\nFrances\nBetty\nVirginia\nMildred\nElizabeth\nAlice\nMarie\nEsther\nEvelyn\nRose\nMarjorie\nFlorence\nJosephine\nLois\nEdith\nAnna\nIrene\nLucille\nEdna\nEleanor\nDoris\nGladys\nMartha\nClara\nBarbara\nLillian\nRuby\nHazel\nJean\nMaxine\nThelma\nWilma\nElsie\nGrace\nLouise\nPauline\nJune\nKatherine\nPhyllis\nViola\nAnn\nCatherine\nEmma\nEthel\nEva\nShirley\nLeona\nVera\nJennie\nJuanita\nLena\nBertha\nJane\nBernice\nEileen\nMarguerite\nVivian\nNorma\nMaria\nAgnes\nBeatrice\nGeraldine\nGertrude\nKathryn\nCharlotte\nAlma\nJulia\nDella\nFern\nGenevieve\nIda\nOpal\nPearl\nEllen\nLaura\nViolet\nLucy\nMabel\nMarian\nDora\nMarion\nMae\nPatricia\nRoberta\nVelma\nLorraine\nStella\nSylvia\nMinnie\nNellie\nSarah\nBessie\nCarmen\nCora\nElla\nFrieda\nLydia\nAlberta\nAudrey\nBeulah\nFlora\nJessie\nLola\nRachel\nTheresa\nErma\nMyrtle\nNaomi\nNina\nVerna\nAnnie\nArlene\nBlanche\nDolores\nEmily\nGeorgia\nIsabel\nLela\nLoretta\nNancy\nSally\nDonna\nElaine\nRosie\nAngelina\nAnita\nAnne\nBonnie\nFreda\nGoldie\nIva\nJeanne\nMarcella\nMuriel\nRita\nWanda\nAmelia\nEunice\nHarriet\nIla\nJoyce\nLetha\nMiriam\nRebecca\nRosemary\nDorothea\nGeneva\nInez\nIrma\nLuella\nAlta\nCarol\nCarolyn\nCleo\nElma\nFaye\nGwendolyn\nKathleen\nMargery\nPeggy\nWinifred\nBeverly\nBillie\nChristine\nConstance\nEloise\nJanet\nLila\nLucile\nMargie\nMollie\nNora\nTeresa\nVictoria\nYvonne\nCarrie\nElva\nFannie\nHope\nIris\nJoan\nLillie\nMadeline\nOlga\nSara\nAnnabelle\nBette\nBettie\nDaisy\nEula\nHilda\nIsabelle\nLaverne\nNadine\nAdeline\nCaroline\nEleanore\nElinor\nErnestine\nFreida\nIna\nLenore\nMable\nMillie\nNeva\nOlive\nSophie\nVerda\nWilda\nWilla\nAngela\nAntonia\nBeryl\nCharlene\nDixie\nHarriett\nHelene\nJaunita\nJosie\nLeah\nLeota\nLily\nMarilyn\nMelba\nZella\nAda\nAdelina\nAlbina\nAugusta\nBerniece\nBeth\nCarmelita\nCarolina\nCecelia\nCharline\nClarice\nEffie\nElnora\nFay\nFlorine\nGlenna\nGuadalupe\nHannah\nHenrietta\nIona\nKatharine\nLula\nMadge\nMamie\nMarcia\nMatilda\nMyra\nRegina\nRosa\nSelma\nSue\nTrinidad\nMary\nDorothy\nHelen\nMargaret\nRuth\nBetty\nVirginia\nFrances\nMildred\nEvelyn\nElizabeth\nDoris\nMarjorie\nAlice\nAnna\nEsther\nRose\nFlorence\nIrene\nLois\nMarie\nBarbara\nJosephine\nEdith\nGrace\nPauline\nRuby\nThelma\nHazel\nLouise\nElsie\nLillian\nGladys\nShirley\nMartha\nEleanor\nLucille\nEdna\nJean\nWilma\nJune\nBernice\nClara\nEva\nEmma\nEthel\nMaxine\nJuanita\nAnn\nCatherine\nJane\nGeraldine\nViola\nMarian\nCharlotte\nPhyllis\nAgnes\nKatherine\nVera\nIda\nMarion\nBertha\nGertrude\nMaria\nNorma\nPatricia\nVivian\nGenevieve\nViolet\nLaura\nLeona\nElla\nNellie\nBeatrice\nMarguerite\nStella\nDella\nLorraine\nEileen\nElaine\nKathryn\nLydia\nVelma\nJulia\nMabel\nOpal\nPearl\nSarah\nAlma\nAnnie\nMyrtle\nSylvia\nAnne\nBeulah\nGeorgia\nJessie\nLucy\nVerna\nFern\nFlora\nKathleen\nMinnie\nWinifred\nDora\nJennie\nDolores\nHarriet\nEunice\nBlanche\nCora\nEllen\nLena\nWanda\nErma\nInez\nIsabel\nJanet\nRachel\nAlberta\nAudrey\nBonnie\nCleo\nGwendolyn\nJacqueline\nLola\nMable\nMargery\nAda\nBessie\nBettie\nCarmen\nRoberta\nRosemary\nAmy\nCarolyn\nGeneva\nMargie\nNancy\nPeggy\nRosie\nJeanne\nRita\nAlta\nAnita\nFreda\nJeanette\nRamona\nRebecca\nCecilia\nConstance\nJoyce\nLeah\nMamie\nNaomi\nTheresa\nAmelia\nBette\nBeverly\nCarol\nCarrie\nFrieda\nIrma\nLucile\nMae\nMarcella\nNeva\nNora\nOlive\nSusie\nArlene\nBillie\nCecelia\nDonna\nDorothea\nElva\nElvira\nEmily\nEstella\nHilda\nLela\nLetha\nLorene\nLoretta\nNadine\nNina\nRosalie\nSally\nVictoria\nYvonne\nCharlene\nChristine\nConsuelo\nDixie\nFaye\nIris\nLuella\nMarilyn\nSara\nWilla\nAntonia\nBerniece\nCaroline\nCelia\nEleanore\nEloise\nEula\nGoldie\nIna\nJoan\nKatie\nLila\nLorena\nLupe\nMay\nMelba\nNettie\nRosa\nRosella\nAdeline\nAnnabelle\nDaisy\nEdythe\nHannah\nHenrietta\nHope\nIva\nJeannette\nLula\nMadeline\nMercedes\nSadie\nTeresa\nTillie\nAdele\nAngela\nAngelina\nAurora\nAvis\nEffie\nFrancis\nGloria\nHarriett\nIone\nIsabelle\nJanice\nJayne\nLenora\nLillie\nMarcia\nMargarita\nMiriam\nRegina\nSophie\nAntoinette\nChristina\nCorrine\nDorris\nEldora\nElinor\nElma\nElnora\nElvera\nEnid\nEtta\nFrankie\nGlenna\nGuadalupe\nIsabell\nJewel\nJosie\nJuana\nLenore\nLilly\nLou\nMatilda\nMerle\nMollie\nOlivia\nPansy\nPatty\nPriscilla\nSuzanne\nVeda\nZella\nMary\nDorothy\nHelen\nMargaret\nBetty\nRuth\nFrances\nMarjorie\nVirginia\nMildred\nElizabeth\nAlice\nEvelyn\nLois\nEsther\nShirley\nRose\nJosephine\nMarie\nDoris\nFlorence\nBarbara\nIrene\nAnna\nHazel\nLucille\nEdna\nMartha\nThelma\nJean\nEleanor\nGladys\nEmma\nPauline\nEdith\nElsie\nLillian\nMaxine\nBernice\nGrace\nMaria\nNorma\nRuby\nJune\nEva\nPhyllis\nVivian\nCharlotte\nViolet\nWilma\nClara\nJuanita\nLouise\nEthel\nKatherine\nLeona\nLaura\nVera\nBertha\nMabel\nEllen\nAgnes\nViola\nGeraldine\nGertrude\nBeatrice\nMarian\nCatherine\nAudrey\nGenevieve\nPatricia\nIda\nKathryn\nOpal\nAnn\nDella\nElla\nLydia\nMarguerite\nJulia\nLucy\nMarion\nWanda\nJane\nEileen\nGloria\nMae\nAlma\nCarmen\nJennie\nNellie\nElaine\nMargie\nRoberta\nSarah\nAnne\nFlora\nJeanne\nKathleen\nLorraine\nMyrtle\nBette\nBeulah\nDora\nGeorgia\nVelma\nBessie\nCora\nPearl\nDolores\nJessie\nLena\nRosemary\nStella\nVerna\nBonnie\nCarol\nCleo\nFern\nInez\nDonna\nMuriel\nWinifred\nAnita\nArlene\nIsabel\nMinnie\nOlive\nSylvia\nFreda\nIla\nLola\nBettie\nBillie\nIrma\nJoan\nRachel\nCarolyn\nConstance\nJacqueline\nLoretta\nLupe\nNancy\nPeggy\nAdeline\nAnnie\nErma\nEunice\nLeah\nMargery\nAnnabelle\nBlanche\nCaroline\nEstella\nGwendolyn\nHilda\nJoyce\nLila\nMable\nMolly\nNaomi\nNina\nRamona\nRita\nTheresa\nAlberta\nAmelia\nBeverly\nHarriet\nLucile\nLuella\nRegina\nSally\nAda\nDorothea\nErnestine\nFaye\nGeneva\nOlga\nRosie\nVictoria\nAlta\nAntoinette\nEloise\nEmily\nFrieda\nHenrietta\nLaverne\nLorene\nMadeline\nSusie\nTeresa\nAileen\nAngela\nAngelina\nCelia\nConsuelo\nDaisy\nDixie\nElva\nEtta\nIsabelle\nLillie\nMiriam\nSophie\nCecilia\nConnie\nElma\nGoldie\nHelene\nJeannette\nJosie\nLela\nMadge\nMarcella\nMollie\nNadine\nNora\nRosa\nSadie\nCarrie\nDarlene\nElvira\nFay\nIna\nIris\nLenore\nMarilyn\nNettie\nRosalie\nTrinidad\nYvonne\nAlvina\nAlyce\nAnnabel\nArdis\nChristine\nCorinne\nDelphine\nDollie\nEleanore\nElvera\nEstelle\nFannie\nGlenna\nImogene\nJanice\nJewell\nJoy\nMargarita\nSara\nWilda\nWilla\nZelma\nAndrea\nAntonia\nAurora\nBernadine\nCharlene\nClarice\nEulalia\nEvangeline\nFrankie\nGail\nIsabell\nJeane\nJeanette\nJuana\nJudy\nLavina\nLeota\nLetha\nLinda\nManuela\nMargret\nMatilda\nMaurine\nMay\nMillie\nMyra\nOphelia\nPansy\nPaula\nRebecca\nRosella\nRosemarie\nTwila\nZella\nMary\nDorothy\nBetty\nHelen\nMargaret\nRuth\nVirginia\nFrances\nMarjorie\nMildred\nDoris\nRose\nAlice\nEvelyn\nShirley\nBarbara\nJosephine\nMarie\nLois\nElizabeth\nEsther\nAnna\nJean\nJune\nMaxine\nEdith\nIrene\nEleanor\nEthel\nFlorence\nLucille\nLouise\nMartha\nThelma\nElsie\nLillian\nJuanita\nEdna\nGladys\nPhyllis\nNorma\nClara\nPatricia\nPauline\nRuby\nVera\nViola\nAgnes\nEva\nCharlotte\nMaria\nGrace\nWilma\nCatherine\nKatherine\nLorraine\nBertha\nHazel\nLeona\nEmma\nViolet\nAnn\nBernice\nJennie\nGertrude\nMarian\nStella\nGeraldine\nLucy\nVelma\nMarguerite\nJeanne\nNellie\nWanda\nEileen\nIda\nKathryn\nBeatrice\nLaura\nMabel\nOpal\nSarah\nVivian\nMyrtle\nEllen\nJulia\nPearl\nAnnie\nBette\nGenevieve\nKathleen\nMargie\nAlma\nCarol\nCora\nRoberta\nVerna\nDolores\nAnne\nElaine\nFern\nGloria\nJane\nRosemary\nBonnie\nElla\nDella\nLena\nLola\nRita\nBeverly\nJacqueline\nArlene\nAudrey\nBessie\nJessie\nJoan\nMarion\nOlive\nRachel\nSylvia\nDonna\nDora\nGeorgia\nHarriet\nMable\nMinnie\nBlanche\nJeanette\nJoyce\nMollie\nPeggy\nTheresa\nAnita\nBeulah\nCarolyn\nErma\nEunice\nFlora\nGeneva\nMarilyn\nBillie\nCaroline\nDorothea\nFaye\nMiriam\nNancy\nAlberta\nLillie\nLydia\nMadeline\nMuriel\nNaomi\nRosalie\nRosie\nAmelia\nConsuelo\nEmily\nIris\nJosie\nMae\nNadine\nNora\nWinifred\nAdeline\nAlta\nCarmen\nConstance\nHilda\nInez\nIsabel\nLenora\nLupe\nMargery\nNeva\nRamona\nRebecca\nAurora\nBettie\nChristine\nCleo\nDaisy\nFannie\nFreda\nIla\nIrma\nIva\nLila\nLula\nMay\nMelba\nNina\nOlga\nRosa\nSally\nAmy\nCecelia\nCelia\nConnie\nJanet\nLaverne\nLoretta\nMamie\nOlivia\nYvonne\nAngelina\nBernadine\nBeth\nCharline\nDarlene\nErnestine\nEula\nFay\nHenrietta\nIna\nIsabelle\nJoy\nLeota\nLily\nLuella\nMerle\nMyrna\nWinona\nAda\nCornelia\nEstella\nFrancis\nFreida\nFrieda\nHope\nIlene\nJewell\nLenore\nLeola\nLetha\nLucile\nMarcella\nMolly\nSadie\nSusan\nAileen\nAnnabelle\nAntoinette\nArline\nBerniece\nClarice\nDelores\nEffie\nEleanore\nElvera\nHarriette\nJeannette\nJoann\nMarjory\nMona\nMyra\nNettie\nPaula\nSelma\nSophie\nSue\nWilla\nAndrea\nAngela\nAurelia\nCarolina\nClorinda\nDelia\nDixie\nElma\nEloise\nElva\nElvira\nGoldie\nGwendolyn\nHarriett\nJacquelyn\nJewel\nLilly\nMillie\nPriscilla\nReba\nRosetta\nSara\nSusie\nTeresa\nVerda\nVeronica\nMary\nDorothy\nBetty\nHelen\nMargaret\nRuth\nVirginia\nAlice\nFrances\nMarjorie\nElizabeth\nMildred\nShirley\nJosephine\nDoris\nEvelyn\nBarbara\nLois\nMarie\nEsther\nEleanor\nRose\nEdith\nLucille\nEdna\nIrene\nFlorence\nAnna\nPatricia\nPauline\nJean\nJuanita\nMartha\nPhyllis\nEthel\nMaxine\nNorma\nWilma\nJune\nLouise\nElsie\nClara\nCatherine\nMaria\nThelma\nEmma\nLillian\nRuby\nViola\nGladys\nGrace\nKatherine\nBernice\nJulia\nLucy\nVera\nHazel\nJeanne\nWanda\nCharlotte\nBertha\nGeraldine\nLeona\nViolet\nGertrude\nIda\nGloria\nLorraine\nMarguerite\nMarian\nOpal\nStella\nBeatrice\nCarol\nDella\nEllen\nEva\nNellie\nAgnes\nAnn\nJennie\nSylvia\nVivian\nDora\nJane\nEileen\nGenevieve\nLena\nKathleen\nRoberta\nSarah\nVelma\nArlene\nBette\nBeverly\nDolores\nKathryn\nCarmen\nJoyce\nLaura\nMarilyn\nRosemary\nAlberta\nBessie\nBonnie\nCora\nEunice\nJacqueline\nJoan\nMarion\nMyrtle\nWinifred\nGeorgia\nAnne\nAudrey\nBeulah\nDonna\nFern\nFlora\nLola\nPearl\nPeggy\nAlma\nJessie\nSusie\nAnnie\nHarriet\nJosie\nLydia\nMargie\nElaine\nRosie\nTheresa\nBettie\nDarlene\nLela\nMabel\nNina\nAngelina\nElla\nIsabel\nMinnie\nRita\nVerna\nBillie\nCaroline\nCarolyn\nLillie\nNaomi\nOlive\nSusan\nAnita\nConstance\nFrieda\nGuadalupe\nRosalie\nBlanche\nCecilia\nEmily\nErma\nErnestine\nJanet\nLinda\nLorene\nLoretta\nLuella\nMable\nNancy\nSara\nCarrie\nCelia\nCleo\nDaisy\nFaye\nGwendolyn\nLila\nRamona\nRebecca\nAmelia\nAntonia\nFreda\nGeneva\nGoldie\nHope\nMae\nNeva\nNona\nAda\nChristine\nConnie\nCordelia\nDorothea\nHenrietta\nIsabelle\nLeila\nLeota\nMadeline\nNettie\nAngeline\nClorinda\nConsuelo\nFerne\nHilda\nInez\nIris\nIrma\nLeah\nLucile\nLupe\nMolly\nMuriel\nSally\nWilla\nZelda\nAdeline\nAileen\nAlta\nAmy\nBeth\nDorris\nEleanore\nElva\nElvira\nFlorine\nHelena\nJeanette\nKay\nLaverne\nLily\nMatilda\nMelba\nMiriam\nNadine\nNora\nSuzanne\nTeresa\nVictoria\nYvonne\nAlyce\nAngela\nAnnabelle\nCecelia\nElda\nElma\nEloise\nHelene\nIva\nJacquelyn\nJoy\nLeola\nMargery\nMarietta\nMay\nMollie\nMyra\nOlga\nOra\nPatsy\nRosella\nSophie\nSue\nWinona\nBernadine\nCelina\nClarice\nDelores\nElinor\nEloisa\nEstelle\nEtta\nFannie\nIlene\nImogene\nIna\nJanice\nJuana\nLouisa\nMagdalena\nMamie\nMarcella\nMarjory\nMatilde\nMattie\nMyrna\nOlinda\nPatty\nPriscilla\nSadie\nTheodora\nTillie\nTwila\nVerda\nWilda\nWillie\nMary\nBetty\nDorothy\nHelen\nMargaret\nVirginia\nRuth\nShirley\nFrances\nEvelyn\nElizabeth\nAlice\nMildred\nLois\nBarbara\nRose\nMarjorie\nJosephine\nDoris\nJean\nAnna\nPatricia\nMarie\nEsther\nNorma\nLillian\nIrene\nFlorence\nThelma\nEleanor\nLouise\nPauline\nPhyllis\nWilma\nEdith\nMartha\nMaxine\nRuby\nJune\nEdna\nGladys\nJuanita\nElsie\nCatherine\nKatherine\nLucille\nBernice\nMaria\nEmma\nViolet\nBertha\nEthel\nGrace\nHazel\nViola\nPeggy\nClara\nGloria\nAgnes\nCharlotte\nEva\nGeraldine\nJulia\nStella\nVelma\nWanda\nDora\nJennie\nKathryn\nLucy\nMargie\nIda\nMarian\nVera\nGenevieve\nEileen\nGertrude\nLorraine\nNellie\nPearl\nBette\nBonnie\nEllen\nLeona\nAlma\nBeverly\nCarol\nJane\nNancy\nAnn\nDolores\nDonna\nElaine\nJessie\nLaura\nMarguerite\nVivian\nBeulah\nOpal\nRosemary\nAnnie\nJeanne\nJoan\nJoyce\nAudrey\nLola\nRoberta\nSally\nBeatrice\nCarmen\nLila\nMabel\nRita\nBettie\nFlora\nInez\nMyrtle\nTheresa\nVerna\nDella\nElla\nEmily\nFern\nGeneva\nKathleen\nMinnie\nRachel\nSarah\nSylvia\nIsabel\nMarion\nRosie\nArlene\nGeorgia\nLupe\nMarilyn\nAnne\nCaroline\nCarolyn\nLena\nMadeline\nAda\nAdeline\nAnnabelle\nBessie\nIrma\nJanet\nLela\nLoretta\nLydia\nMuriel\nRosa\nWinifred\nAlberta\nBillie\nBlanche\nCora\nGoldie\nGwendolyn\nJacqueline\nMable\nChristine\nIla\nLaverne\nSadie\nDorothea\nEunice\nFaye\nIna\nPatsy\nAngelina\nErma\nHenrietta\nMelba\nMercedes\nMolly\nNaomi\nNina\nOlive\nRamona\nRebecca\nRosalie\nVictoria\nAlta\nAngela\nAnita\nCecilia\nCelia\nCharlene\nElva\nFreda\nHarriet\nJeanette\nMiriam\nNora\nSusie\nAmelia\nBernadine\nConnie\nConstance\nFrieda\nImogene\nJanice\nJuana\nLillie\nMarcella\nSara\nSusan\nCecelia\nErnestine\nJo\nJoy\nLenore\nMargery\nMona\nPriscilla\nAmalia\nAmy\nAntonia\nCleo\nDixie\nElinor\nElvera\nHannah\nHilda\nIris\nIsabelle\nJeannette\nJosie\nJudy\nLaurel\nLilly\nLinda\nLorena\nMae\nMarianne\nMay\nNeva\nPat\nTeresa\nWilla\nYvonne\nAileen\nAlvina\nAndrea\nAnnette\nAurora\nBeth\nCelina\nCharline\nDaisy\nDelores\nDolly\nDorris\nEarlene\nEloise\nFlossie\nGlenna\nHope\nLeah\nLula\nMaybelle\nMercy\nMillicent\nNadine\nPatty\nSue\nTerry\nTillie\nWilda\nAlyce\nBerniece\nColleen\nConsuelo\nDarline\nDelma\nDorothe\nEdythe\nEffie\nEleanore\nEula\nGuadalupe\nHattie\nIva\nJacquelyn\nLeila\nLenora\nLeta\nLorene\nLuella\nManuelita\nMarcia\nMatilda\nMelva\nMillie\nMollie\nNeoma\nRosemarie\nRosetta\nShirlee\nVesta\nYolanda\nZelma\nMary\nBetty\nDorothy\nHelen\nMargaret\nRuth\nShirley\nVirginia\nAlice\nBarbara\nDoris\nFrances\nEvelyn\nLois\nMarjorie\nPatricia\nElizabeth\nRose\nMarie\nPhyllis\nMartha\nJosephine\nMildred\nEsther\nJean\nIrene\nFlorence\nNorma\nJuanita\nLillian\nElsie\nPauline\nAnna\nMaria\nLucille\nEdna\nEdith\nMaxine\nGladys\nEleanor\nThelma\nWilma\nLouise\nRuby\nGloria\nHazel\nCatherine\nEmma\nViola\nEva\nCharlotte\nJulia\nJune\nMarian\nLucy\nBertha\nGrace\nClara\nBonnie\nEthel\nIda\nMarilyn\nBeatrice\nLorraine\nPeggy\nVera\nBeverly\nDolores\nEileen\nKatherine\nLaura\nVelma\nBernice\nBette\nGeraldine\nStella\nLola\nVivian\nWanda\nDonna\nDora\nLeona\nAnn\nJoyce\nAnne\nGeorgia\nJessie\nAgnes\nAudrey\nCarol\nElaine\nGenevieve\nGertrude\nJane\nViolet\nEllen\nJeanne\nArlene\nJennie\nMabel\nNellie\nAnnie\nErma\nLena\nMargie\nRita\nCora\nNancy\nRosemary\nBessie\nBeulah\nCarmen\nJacqueline\nKathryn\nCarolyn\nDella\nHarriet\nJoan\nKathleen\nLydia\nTeresa\nAda\nFern\nOpal\nPearl\nEunice\nMyrtle\nNaomi\nRoberta\nRosie\nSally\nSusie\nAlta\nBettie\nElla\nEstella\nLupe\nMarion\nAlma\nAnita\nBillie\nCaroline\nMae\nRachel\nSylvia\nTheresa\nVerna\nDixie\nIrma\nIsabel\nLila\nNadine\nRamona\nRosalie\nChristine\nGeneva\nIla\nLeah\nLorene\nPatsy\nAntonia\nBlanche\nCharlene\nConnie\nConsuelo\nDelores\nEloise\nInez\nSarah\nWinifred\nDarlene\nElinor\nEmily\nErnestine\nFaye\nFlora\nHenrietta\nJanet\nLoretta\nLucile\nMarguerite\nMona\nNina\nVictoria\nYvonne\nAlyce\nAmelia\nAndrea\nAngelina\nArline\nCarrie\nCecilia\nCleo\nJoy\nJuana\nLela\nLuella\nMolly\nMuriel\nAlberta\nAngela\nAnnabelle\nDorothea\nElva\nFrieda\nGoldie\nHope\nImogene\nIone\nJanice\nJeannette\nLeota\nMarcia\nNora\nPatty\nPriscilla\nRosella\nSue\nAdeline\nAileen\nAmy\nAnnette\nBeverley\nCecelia\nColleen\nEstelle\nGwendolyn\nIris\nJoanne\nJudy\nLula\nMelba\nOra\nRosa\nSara\nSophie\nBerniece\nCharline\nDominga\nEsperanza\nIlene\nJewel\nJoann\nKatheryn\nLaverne\nLavonne\nLenore\nLillie\nLinda\nLou\nMable\nManuela\nMarcella\nMargery\nMinnie\nMiriam\nMollie\nOlive\nRosemarie\nSusan\nTillie\nVada\nAllene\nAna\nAngie\nAntoinette\nAurelia\nBeth\nBobbie\nCelia\nConstance\nCruz\nDelia\nDorothie\nElma\nEtta\nFrancis\nFreda\nFreida\nJackie\nJacquelyn\nJewell\nJudith\nKitty\nLenora\nLily\nLyla\nMadeline\nMavis\nMelva\nMyrna\nNelda\nOreta\nPaula\nReva\nRhoda\nSadie\nShirlee\nWilhelmina\nWilla\nMary\nBetty\nDorothy\nHelen\nMargaret\nShirley\nRuth\nBarbara\nVirginia\nLois\nDoris\nFrances\nMarjorie\nAlice\nRose\nMildred\nPatricia\nEsther\nEvelyn\nJean\nPhyllis\nAnna\nIrene\nLillian\nElizabeth\nMarie\nJosephine\nPauline\nEleanor\nJune\nNorma\nGloria\nMaria\nMartha\nWilma\nViola\nEdna\nFlorence\nDolores\nLouise\nLucille\nMaxine\nVera\nCharlotte\nElsie\nHazel\nEdith\nEmma\nEva\nGeraldine\nJuanita\nBernice\nBeverly\nRuby\nWanda\nBonnie\nEthel\nLorraine\nRoberta\nThelma\nJulia\nViolet\nDonna\nGrace\nLaura\nAnn\nJoan\nStella\nBertha\nCarol\nEllen\nGladys\nIda\nGeorgia\nJoyce\nMarian\nElaine\nJennie\nLeona\nDora\nLucy\nPeggy\nAgnes\nJeanne\nNellie\nBeatrice\nJane\nMarilyn\nVelma\nRita\nClara\nDella\nFlora\nGenevieve\nJacqueline\nKatherine\nKathryn\nVivian\nBette\nGertrude\nSarah\nMargie\nOpal\nPearl\nTheresa\nCarmen\nNancy\nRosemary\nAlma\nRosie\nBessie\nEileen\nJessie\nKathleen\nMarion\nAudrey\nFern\nSally\nVerna\nBettie\nCarolyn\nLila\nMae\nSylvia\nCatherine\nInez\nIrma\nTeresa\nElla\nMarguerite\nMyrtle\nAnnie\nArlene\nCora\nErma\nLola\nNaomi\nSusie\nAlberta\nAnita\nCharlene\nErnestine\nJanet\nLoretta\nRosalie\nBillie\nLorene\nLupe\nMabel\nMiriam\nNina\nNora\nPriscilla\nAmelia\nBlanche\nConnie\nEmily\nLena\nZella\nAda\nAntonia\nBeulah\nCleo\nDarlene\nElva\nIsabel\nIva\nJanice\nMable\nMarcella\nMay\nNadine\nOlive\nPatsy\nColleen\nConsuelo\nDelores\nJoy\nRosa\nSadie\nWinifred\nCaroline\nElinor\nEunice\nGwendolyn\nJosie\nMelba\nOlga\nAnne\nAurora\nBeth\nCecelia\nChristine\nEloise\nFaye\nGoldie\nHenrietta\nLenore\nLillie\nMarcia\nMelva\nRamona\nSelma\nAlta\nAmy\nAnnabelle\nDixie\nElma\nElvera\nEstella\nEstelle\nGeneva\nHarriet\nIna\nJeanette\nJo\nLaverne\nLorena\nNeva\nPaula\nRachel\nRhoda\nShirlee\nSusan\nVictoria\nWilla\nAdeline\nAlyce\nAngela\nBettye\nCelia\nDorothea\nFreda\nFrieda\nHarriett\nHilda\nIris\nIsabelle\nJeannette\nJoanne\nLavonne\nLeora\nLinda\nLydia\nMadelyn\nMargarita\nMarjory\nMinnie\nMuriel\nPatty\nSue\nTillie\nTina\nVerla\nAndrea\nAngelina\nAngeline\nBerniece\nCarrie\nCecilia\nCorinne\nCynthia\nElnora\nEula\nFay\nFlorine\nGuadalupe\nIla\nIlene\nLeah\nLee\nLeola\nLeta\nLetha\nLuella\nMaurine\nMolly\nNola\nReba\nSuzanne\nZelda\nMary\nBetty\nDorothy\nHelen\nShirley\nMargaret\nRuth\nBarbara\nVirginia\nEvelyn\nDoris\nFrances\nPatricia\nMarjorie\nAlice\nLois\nRose\nNorma\nMarie\nJosephine\nJean\nMildred\nPhyllis\nIrene\nEleanor\nAnna\nElizabeth\nWilma\nRuby\nGloria\nLucille\nMartha\nBeverly\nEsther\nDolores\nEdith\nLillian\nEdna\nMaxine\nElsie\nJoyce\nJulia\nViola\nFlorence\nMaria\nPauline\nJoan\nCharlotte\nDonna\nLouise\nEmma\nLucy\nBonnie\nClara\nGrace\nJune\nKatherine\nLorraine\nElaine\nMarilyn\nGeraldine\nHazel\nCatherine\nEva\nBertha\nIda\nJuanita\nStella\nThelma\nEileen\nMarian\nWanda\nAnn\nEllen\nEthel\nLaura\nJennie\nDora\nRoberta\nLeona\nLola\nNancy\nVera\nVivian\nAlma\nAudrey\nBeatrice\nMargie\nAgnes\nBernice\nGladys\nPeggy\nRosemary\nCarol\nCora\nMarion\nNellie\nGeorgia\nJane\nKathryn\nViolet\nFern\nJeanne\nTheresa\nBillie\nCarolyn\nLena\nArlene\nBette\nCharlene\nDarlene\nJessie\nKathleen\nPearl\nAnne\nCarmen\nJacqueline\nJanet\nJoanne\nRosie\nVelma\nVerna\nColleen\nEunice\nJoy\nMabel\nSally\nAnnie\nElla\nLoretta\nLupe\nMinnie\nOpal\nRosalie\nSarah\nAnita\nConnie\nDelores\nJoann\nJosie\nMay\nNadine\nPatsy\nRita\nVictoria\nAngelina\nFlora\nGertrude\nGuadalupe\nIsabel\nLila\nSusie\nAlberta\nAnnabelle\nBessie\nBettie\nBeulah\nElva\nEmily\nGenevieve\nIris\nMyrtle\nNaomi\nOlive\nRamona\nBlanche\nDella\nDixie\nFreda\nHarriet\nNora\nRachel\nBeverley\nCelia\nChristine\nElma\nErnestine\nGwendolyn\nIrma\nIsabelle\nJackie\nJo\nNina\nPatty\nSue\nSylvia\nYvonne\nAurora\nCaroline\nChristina\nCleo\nConsuelo\nDaisy\nErma\nLavonne\nLily\nLydia\nMable\nMadeline\nMarguerite\nMelba\nRosa\nSophie\nCecilia\nEstella\nGoldie\nIla\nImogene\nJenny\nLetha\nLuella\nMiriam\nMuriel\nPaula\nAda\nBernadine\nCecelia\nConstance\nElvira\nFrancis\nGeneva\nHelene\nHenrietta\nInez\nJanice\nJeanette\nLaverne\nMyrna\nNeva\nTwila\nWilda\nClaire\nCordelia\nEloise\nEtta\nEula\nHope\nIva\nLaveta\nLinda\nLorene\nNettie\nNona\nShirlee\nTeresa\nAdeline\nAlta\nAnnette\nAntoinette\nBerniece\nBettye\nBonita\nCarmel\nCarmella\nCharline\nCynthia\nDelia\nElinor\nElnora\nFannie\nFaye\nFlorine\nGeorgiana\nHarriett\nHarriette\nIola\nJacquelyn\nJoe\nLeota\nLillie\nLorna\nLucile\nMae\nMarcella\nMarcia\nMatilda\nMercedes\nMona\nPat\nPriscilla\nRosella\nSandra\nSara\nTherese\nWilla\nWinifred\nMary\nBetty\nDorothy\nShirley\nBarbara\nRuth\nMargaret\nHelen\nVirginia\nFrances\nDoris\nPatricia\nMarjorie\nAlice\nPhyllis\nLois\nJean\nRose\nEvelyn\nNorma\nBeverly\nMildred\nDolores\nDonna\nElizabeth\nEsther\nJosephine\nIrene\nJuanita\nMaria\nMarie\nWilma\nGloria\nJoan\nEdna\nEleanor\nJoyce\nRuby\nLillian\nLouise\nMartha\nViola\nAnna\nJune\nLucille\nPauline\nCarol\nWanda\nBonnie\nCharlotte\nFlorence\nMaxine\nGeraldine\nLucy\nRoberta\nThelma\nElsie\nEva\nGrace\nGladys\nMarilyn\nVera\nBernice\nElaine\nHazel\nEdith\nLorraine\nBertha\nJacqueline\nRamona\nMarian\nClara\nLeona\nStella\nBeatrice\nCatherine\nJennie\nViolet\nEileen\nVivian\nEthel\nJulia\nPatsy\nPeggy\nKatherine\nVelma\nGeorgia\nIda\nAnn\nEmma\nRita\nLoretta\nPearl\nCarolyn\nDora\nFlora\nJoanne\nLaura\nMargie\nAlberta\nColleen\nElla\nNancy\nJeanne\nKathryn\nVerna\nAudrey\nDella\nJoy\nNellie\nAnnie\nRosie\nSally\nAngelina\nCharlene\nErnestine\nRosemary\nAlma\nEllen\nJanet\nJoann\nNadine\nAnne\nArlene\nBeverley\nBillie\nCarmen\nDarlene\nDelores\nEunice\nFern\nHarriet\nJessie\nJo\nLola\nMarguerite\nMarion\nMyrtle\nOpal\nBettie\nDixie\nErma\nIris\nJane\nLorene\nLupe\nAda\nAgnes\nAnita\nBessie\nBette\nCecilia\nCora\nGenevieve\nIsabel\nLydia\nSarah\nVictoria\nElvira\nEmily\nInez\nJanice\nJosie\nKathleen\nNaomi\nTheresa\nAdeline\nConnie\nLena\nLuella\nMabel\nPatty\nTeresa\nAnnabelle\nCleo\nEstella\nSylvia\nBeulah\nElma\nEloise\nFaye\nGertrude\nGwendolyn\nIna\nMable\nOlive\nRachel\nRosalie\nTillie\nWinifred\nConstance\nFlorine\nGeneva\nIrma\nLavonne\nLela\nLenora\nMinnie\nMyrna\nRegina\nWilla\nCaroline\nCharline\nChristine\nDiane\nEstelle\nImogene\nIsabelle\nJeanette\nLaverne\nLila\nLillie\nMarcella\nNora\nPat\nPriscilla\nSusan\nYvonne\nZella\nAmy\nAurora\nBeth\nBlanche\nDorothea\nElinor\nEsperanza\nEula\nFrankie\nHarriett\nIla\nIona\nJackie\nJacquelyn\nJeannine\nKatie\nLeola\nLetha\nLily\nLinda\nMargery\nMay\nMelba\nMiriam\nPaula\nPetra\nRosa\nSadie\nSophie\nAlta\nAmelia\nAngela\nAntonia\nCarrie\nCecelia\nCelia\nDona\nElva\nFay\nFreda\nGlenda\nGlenna\nGoldie\nHenrietta\nJoanna\nJosefina\nLeila\nLeota\nLora\nMae\nMarcia\nMarina\nMolly\nMuriel\nNettie\nNina\nNola\nRebecca\nRenee\nZelma\nMary\nBetty\nDorothy\nShirley\nBarbara\nHelen\nMargaret\nRuth\nPatricia\nFrances\nVirginia\nDoris\nLois\nAlice\nDolores\nNorma\nBeverly\nElizabeth\nJoan\nMarie\nPhyllis\nEvelyn\nDonna\nJean\nJosephine\nRose\nMarjorie\nGloria\nEleanor\nMaria\nJoyce\nEsther\nAnna\nElsie\nPauline\nMartha\nWilma\nLillian\nMildred\nViola\nCarol\nIrene\nBonnie\nFlorence\nPeggy\nJune\nLouise\nMarilyn\nNancy\nRuby\nElaine\nJuanita\nEdna\nEva\nGeraldine\nStella\nLucille\nMaxine\nLorraine\nClara\nWanda\nEdith\nEmma\nJacqueline\nJoanne\nLucy\nRoberta\nVera\nCharlotte\nHazel\nJane\nJennie\nRamona\nViolet\nCatherine\nGrace\nCharlene\nDora\nIda\nPatsy\nBertha\nMargie\nThelma\nCarmen\nRita\nRosie\nBernice\nDarlene\nTheresa\nDelores\nJanet\nJulia\nLoretta\nMarian\nVivian\nAnn\nAudrey\nBeatrice\nGladys\nKatherine\nLaura\nLeona\nVerna\nCarolyn\nEllen\nAngelina\nAnita\nBillie\nGeorgia\nJoann\nMyrtle\nNadine\nSally\nAlma\nAnnie\nBessie\nKathryn\nPearl\nRosemary\nFlora\nJeanne\nJo\nNora\nEthel\nGertrude\nLupe\nMabel\nAlberta\nKathleen\nNellie\nYvonne\nConnie\nMarion\nSarah\nSylvia\nVelma\nClarice\nDella\nEileen\nErma\nGwendolyn\nIsabel\nJoy\nBettie\nEunice\nGenevieve\nHarriet\nJacquelyn\nJessie\nNaomi\nRachel\nRosalie\nJanice\nJeannette\nLola\nOpal\nVictoria\nAgnes\nAnne\nAntonia\nBette\nBeulah\nCaroline\nCora\nElla\nInez\nJeannine\nJosefina\nLena\nLila\nLuella\nLydia\nMae\nMuriel\nNina\nSusie\nWilla\nCelia\nElinor\nFern\nIrma\nPat\nPatty\nRosa\nSue\nTherese\nVerla\nAurora\nEloise\nJackie\nJosie\nMarcella\nMona\nRebecca\nRegina\nTeresa\nArlene\nCleo\nColleen\nConsuelo\nDona\nErnestine\nEsperanza\nEstella\nEstelle\nGeneva\nJeanette\nMadeline\nMarguerite\nMay\nOlive\nSadie\nDarleen\nEmily\nFaye\nGlenna\nIla\nImogene\nIona\nJewell\nNola\nOphelia\nSharon\nWilda\nAnnabelle\nAntoinette\nBeverley\nCharline\nDiane\nElna\nElva\nEtta\nGoldie\nHope\nIlene\nIva\nJuana\nLavonne\nMargarita\nMarjory\nMinnie\nPaula\nRobert\nRosella\nSusan\nWinifred\nWinona\nAda\nAdeline\nAlyce\nAngela\nAngie\nBenita\nCarrie\nCecilia\nCordelia\nDelia\nDiana\nDixie\nDollie\nDorthy\nElma\nElvera\nFrankie\nIsabell\nJudy\nLavon\nLee\nLela\nLily\nLinda\nLucile\nMable\nMarcia\nMatilda\nMelba\nMyrna\nNona\nSelma\nSophie\nMary\nBetty\nDorothy\nShirley\nBarbara\nHelen\nMargaret\nVirginia\nPatricia\nRuth\nFrances\nNorma\nDolores\nLois\nDonna\nDoris\nJoan\nAlice\nEvelyn\nMarjorie\nRose\nBeverly\nPhyllis\nJean\nMarilyn\nGeraldine\nElizabeth\nGloria\nMartha\nWilma\nIrene\nJosephine\nJoyce\nPauline\nMildred\nAnna\nMarie\nMaria\nEsther\nEleanor\nElsie\nJune\nLorraine\nCarol\nLouise\nClara\nJuanita\nRuby\nViola\nBonnie\nGrace\nNancy\nBeatrice\nGladys\nKatherine\nEdna\nEva\nFlorence\nThelma\nWanda\nBernice\nEmma\nLucille\nCarolyn\nCharlotte\nJacqueline\nMarian\nMaxine\nPeggy\nSally\nDelores\nJennie\nJoanne\nBertha\nGeorgia\nStella\nVera\nCatherine\nDora\nElaine\nPatsy\nRita\nRosemary\nLillian\nJulia\nLaura\nLucy\nMargie\nRamona\nKathleen\nVelma\nViolet\nJeanne\nJane\nLoretta\nAlberta\nAnn\nBillie\nEllen\nEthel\nNellie\nEdith\nIda\nJoann\nAnita\nJo\nAnnie\nCora\nDarlene\nHazel\nJanet\nMarion\nTheresa\nDella\nJessie\nLola\nNaomi\nRoberta\nArlene\nJanice\nKathryn\nPatty\nRosalie\nAlma\nAudrey\nElla\nJosie\nRosie\nVivian\nCarmen\nColleen\nErma\nJeanette\nLeona\nOpal\nPearl\nAnne\nEileen\nGwendolyn\nIris\nVerna\nAgnes\nAngelina\nChristine\nConnie\nFlora\nGenevieve\nLila\nMae\nSylvia\nCaroline\nConstance\nFern\nIrma\nLena\nLinda\nSarah\nAmelia\nBeverley\nCecilia\nDixie\nGeneva\nIla\nInez\nJackie\nLupe\nMarguerite\nMinnie\nNona\nRosa\nBessie\nCharlene\nEunice\nJudy\nMadeline\nMargery\nMarianne\nPaula\nSharon\nBernadine\nBette\nBettie\nErnestine\nEstella\nGertrude\nImogene\nJoy\nMabel\nMyrtle\nNora\nOlive\nPriscilla\nSara\nWilla\nClarice\nDaisy\nEloise\nElva\nEmily\nHarriet\nLaverne\nMona\nMyrna\nNadine\nSophie\nSusan\nSusie\nVelda\nYvonne\nAdeline\nAlta\nAngela\nAngie\nAnnabelle\nArdith\nBeulah\nBlanche\nCelia\nDelia\nDolly\nGlenna\nIsabel\nJeannine\nKay\nLillie\nLorene\nLuella\nLydia\nMollie\nPat\nTeresa\nCarole\nCecelia\nClaire\nDiane\nEvangeline\nFaye\nJenny\nLela\nLenore\nMarcella\nMargarita\nMaryann\nMiriam\nMolly\nNina\nRosella\nWinifred\nAda\nAmy\nCarla\nCarmel\nCelina\nCornelia\nCorrine\nDarleen\nDorene\nDorthy\nElvera\nElvira\nFrankie\nJacquelyn\nJeannie\nJeralyn\nJoe\nLavonne\nLee\nLeila\nLeota\nLilly\nLora\nMable\nMarcia\nMay\nMuriel\nNola\nOlivia\nReba\nRebecca\nRegina\nSue\nTherese\nTillie\nTreva\nZelda\nMary\nBetty\nDorothy\nShirley\nBarbara\nPatricia\nHelen\nVirginia\nMargaret\nDonna\nRuth\nAlice\nNorma\nBeverly\nJoan\nDolores\nDoris\nLois\nPhyllis\nJoyce\nFrances\nMarjorie\nRose\nGloria\nJean\nMarilyn\nEvelyn\nDarlene\nJosephine\nElizabeth\nMarie\nNancy\nWilma\nAnna\nPauline\nMartha\nCarol\nEleanor\nJoanne\nGeraldine\nJoann\nLorraine\nMaria\nBonnie\nIrene\nLouise\nFlorence\nJune\nViola\nWanda\nElsie\nElaine\nEsther\nJuanita\nDelores\nEdith\nEdna\nGladys\nLucille\nMildred\nThelma\nCharlotte\nCatherine\nClara\nRoberta\nIda\nJanet\nJennie\nPeggy\nRuby\nStella\nDora\nHazel\nBernice\nLeona\nMargie\nPatsy\nArlene\nCarolyn\nLucy\nMaxine\nAnn\nEllen\nEva\nEmma\nEthel\nGeorgia\nGrace\nJo\nLola\nMarian\nSally\nVivian\nLillian\nTheresa\nBertha\nJulia\nKatherine\nVelma\nLaura\nAlberta\nCharlene\nJeanne\nKathryn\nPat\nRamona\nAudrey\nCora\nJacqueline\nLoretta\nVera\nBeatrice\nErma\nNellie\nSarah\nVerna\nDella\nDixie\nKathleen\nPriscilla\nRita\nRosemary\nBillie\nCarmen\nConnie\nJanice\nRosalie\nJane\nLila\nPearl\nHarriet\nMarlene\nNina\nSylvia\nVictoria\nViolet\nColleen\nElla\nGenevieve\nGwendolyn\nIsabel\nJoy\nNora\nAnne\nAnnie\nCecilia\nJackie\nMarion\nBlanche\nEileen\nFlora\nJeanette\nAgnes\nAlma\nAnita\nBettie\nIrma\nLuella\nRosie\nTeresa\nAdeline\nAmelia\nAngelina\nCaroline\nDona\nFaye\nGertrude\nLinda\nLupe\nMyrtle\nNaomi\nPatty\nWilla\nAngie\nCleo\nDeloris\nInez\nJessie\nLydia\nMae\nMinnie\nNadine\nOpal\nRachel\nSusan\nSuzanne\nCecelia\nChristine\nElva\nErnestine\nFrankie\nIlene\nIris\nLily\nLora\nMadeline\nMarguerite\nYvonne\nAnnabelle\nBerniece\nBette\nCarole\nConstance\nCorrine\nEmily\nEunice\nGlenda\nHenrietta\nJoe\nLaverne\nMabel\nMable\nMelva\nNeva\nOlive\nRebecca\nSadie\nSue\nTillie\nBeverley\nDarline\nEloise\nElvira\nEstella\nImogene\nJudy\nLavonne\nLena\nLenora\nMarcella\nMarietta\nWinona\nAda\nAntonia\nBenita\nBessie\nCelia\nConsuelo\nDelia\nDiane\nEloisa\nFreida\nHarriett\nIna\nJohn\nJosie\nKay\nLadonna\nLaurel\nLorna\nLou\nMarjory\nMaryann\nMona\nMuriel\nRegina\nRosetta\nSusie\nVeta\nZella\nZelma\nMary\nBetty\nBarbara\nShirley\nDorothy\nPatricia\nHelen\nDonna\nMargaret\nJoan\nBeverly\nAlice\nVirginia\nPhyllis\nNorma\nRuth\nJoyce\nLois\nNancy\nFrances\nDoris\nCarol\nRose\nDolores\nJean\nEvelyn\nMarjorie\nMarilyn\nLouise\nGloria\nJosephine\nMartha\nCharlotte\nJoann\nMildred\nWilma\nElizabeth\nIrene\nEsther\nAnna\nBonnie\nPeggy\nLucille\nMarie\nGeraldine\nViola\nAnn\nEleanor\nElsie\nFlorence\nJune\nRuby\nPauline\nJoanne\nJuanita\nLillian\nDarlene\nSally\nCarolyn\nDelores\nElaine\nTheresa\nWanda\nBeatrice\nJulia\nEdna\nGrace\nJanet\nEmma\nLoretta\nMarlene\nMaxine\nJo\nLaura\nThelma\nBertha\nMarian\nRita\nCharlene\nJacqueline\nLeona\nLorraine\nRamona\nRoberta\nStella\nVera\nAudrey\nIda\nJennie\nKatherine\nArlene\nEileen\nEva\nKathryn\nBernice\nClara\nHazel\nMargie\nVelma\nGeorgia\nGladys\nViolet\nAnita\nConnie\nEthel\nGwendolyn\nMaria\nPatsy\nEllen\nJanice\nRosemary\nAgnes\nJane\nKathleen\nLucy\nMabel\nSusan\nSylvia\nDella\nFlora\nMarion\nAlberta\nBillie\nDora\nPat\nVivian\nYvonne\nErma\nJessie\nSusie\nBessie\nCarmen\nCatherine\nIrma\nJeanette\nLila\nNellie\nPatty\nPearl\nDiane\nDixie\nEdith\nErnestine\nLola\nNaomi\nRosie\nSarah\nVerna\nCaroline\nCora\nDona\nJeanne\nLena\nMarcella\nRosalie\nAlma\nAngelina\nBette\nBeulah\nConstance\nElla\nElvira\nEunice\nFern\nGlenna\nPaula\nAda\nBettie\nCecilia\nChristine\nIsabel\nJoy\nJudy\nLinda\nLupe\nMarcia\nMinnie\nAngie\nDeloris\nFaye\nGertrude\nInez\nJackie\nLorene\nMadeline\nNina\nOlive\nOpal\nRachel\nSue\nTeresa\nAlta\nAngela\nAnne\nColleen\nJeannette\nKaren\nLydia\nMarguerite\nPriscilla\nSara\nWilla\nAmelia\nCleo\nElva\nEmily\nHenrietta\nIris\nJacquelyn\nKay\nLily\nLuella\nMargery\nMarianne\nMaryann\nMillie\nMiriam\nMolly\nMyrna\nMyrtle\nNadine\nNora\nRebecca\nSharon\nVictoria\nAdeline\nAmy\nBobbie\nCarla\nCarmelita\nCarrie\nCelia\nDaisy\nEula\nGenevieve\nGwen\nHarriet\nJerry\nJudith\nLillie\nLorna\nMatilda\nMuriel\nNadene\nNelda\nSandra\nTwila\nAlicia\nAnnette\nAnnie\nAntonia\nAurora\nBlanche\nCecelia\nClaire\nClarice\nDelia\nDiana\nEloise\nIlene\nJosie\nMaryanne\nMaureen\nMercy\nMyra\nRosella\nWilda\nWinona\nMary\nBetty\nBarbara\nShirley\nPatricia\nDorothy\nMargaret\nDonna\nHelen\nJoan\nVirginia\nAlice\nBeverly\nCarol\nNancy\nDoris\nRuth\nLois\nPhyllis\nMarilyn\nNorma\nFrances\nDolores\nJoyce\nGloria\nElizabeth\nMarjorie\nJoann\nBonnie\nEvelyn\nRose\nJean\nDarlene\nJanet\nMartha\nEleanor\nAnna\nGeraldine\nPeggy\nJuanita\nCarolyn\nIrene\nCharlotte\nJoanne\nJune\nRuby\nEsther\nFlorence\nSally\nJosephine\nWilma\nElsie\nJo\nLouise\nMarie\nPauline\nRoberta\nClara\nDelores\nRita\nAnn\nGladys\nPatsy\nBernice\nWanda\nLorraine\nLucille\nMargie\nSylvia\nMarian\nMildred\nEdna\nEva\nJane\nKathleen\nThelma\nTheresa\nViola\nAnita\nArlene\nKathryn\nMaria\nMarlene\nCharlene\nEdith\nJulia\nSarah\nVera\nLillian\nNellie\nRosie\nConnie\nEileen\nEthel\nLucy\nPat\nStella\nElaine\nHazel\nJacqueline\nLoretta\nBertha\nConstance\nLaura\nVerna\nDella\nDora\nEllen\nIda\nMaxine\nVelma\nAudrey\nDixie\nEmma\nJennie\nPatty\nBeatrice\nGeorgia\nGrace\nNadine\nRosemary\nBette\nBillie\nCatherine\nCora\nGenevieve\nKatherine\nRamona\nViolet\nCecilia\nFlora\nJeanette\nJeanne\nJoy\nLila\nRosalie\nVivian\nAlberta\nKay\nAngelina\nCarmen\nLeona\nLupe\nNina\nElla\nElva\nJessie\nJosie\nMabel\nMarion\nSue\nAgnes\nCaroline\nDiane\nDona\nErnestine\nGeneva\nIsabel\nMarcia\nMona\nNaomi\nBessie\nBeverley\nCarole\nJacquelyn\nLaverne\nLavonne\nLena\nMadeline\nMarcella\nRachel\nSadie\nSharon\nTeresa\nVictoria\nYvonne\nBeulah\nEunice\nGertrude\nInez\nJerry\nLola\nLorna\nMaureen\nPriscilla\nRebecca\nAlma\nAnnie\nBeth\nCecelia\nClaudia\nDiana\nEmily\nErma\nFreda\nIris\nJudy\nMargery\nMarguerite\nOpal\nRosella\nSara\nAlta\nAnnabelle\nAnne\nBlanche\nCelia\nCynthia\nEloise\nFaye\nIla\nIrma\nJanice\nLeora\nLinda\nLydia\nNeva\nNora\nOlive\nOlivia\nPearl\nRegina\nAndrea\nClaire\nCleo\nColleen\nElvira\nGlenda\nHarriett\nJackie\nJudith\nLeta\nMinnie\nMiriam\nPaula\nSandra\nSusie\nWilda\nAlyce\nAngela\nAngie\nAntonia\nAurora\nBobbie\nBonita\nCarolina\nCarrie\nConsuelo\nDaisy\nElvera\nEmilia\nGlenna\nHarriet\nHelene\nImogene\nJeannette\nJeannie\nJewell\nLenora\nLorene\nMable\nMelba\nMillie\nMyrna\nMyrtle\nRosemarie\nRowena\nSelma\nSusan\nSuzanne\nMary\nBetty\nBarbara\nShirley\nDorothy\nPatricia\nDonna\nMargaret\nJoan\nHelen\nVirginia\nNancy\nCarol\nBeverly\nRuth\nNorma\nFrances\nPhyllis\nJoyce\nAlice\nJean\nDoris\nEvelyn\nDolores\nMarilyn\nRose\nJoann\nLois\nBonnie\nJoanne\nGloria\nJanet\nMarjorie\nDarlene\nPeggy\nMartha\nElizabeth\nIrene\nSally\nAnna\nWilma\nEsther\nDelores\nWanda\nJosephine\nSylvia\nCarolyn\nEleanor\nJanice\nLillian\nMarie\nMildred\nJuanita\nViola\nAnn\nJune\nMaria\nRuby\nLouise\nElsie\nFlorence\nJo\nPauline\nCharlotte\nEdna\nElaine\nEva\nJulia\nRoberta\nGeraldine\nJennie\nMarlene\nRita\nStella\nClara\nGrace\nJane\nLaura\nLoretta\nBeatrice\nBernice\nTheresa\nArlene\nCharlene\nLucille\nRamona\nVivian\nBessie\nGeorgia\nJacqueline\nKathryn\nBertha\nCatherine\nEdith\nVera\nLeona\nNellie\nCarmen\nLorraine\nMarian\nPatsy\nRosie\nEthel\nIda\nKathleen\nVelma\nAgnes\nBillie\nEmma\nJeanne\nKatherine\nEileen\nGladys\nMargie\nMaxine\nSarah\nAnita\nDixie\nDora\nKay\nLila\nLucy\nNina\nPat\nThelma\nConnie\nDiane\nRosalie\nClaudia\nDella\nIsabel\nLinda\nSandra\nSue\nYvonne\nAlma\nAnne\nElla\nHazel\nJudy\nRachel\nRosemary\nViolet\nCarole\nEllen\nErma\nJackie\nJosie\nLola\nNadine\nPatty\nSharon\nVerna\nAnnie\nGertrude\nIna\nJoy\nMyrna\nNaomi\nNora\nBeulah\nGenevieve\nGlenna\nJudith\nLou\nMarcella\nAlberta\nAudrey\nCaroline\nGeneva\nIla\nIrma\nJeanette\nLydia\nPearl\nBeth\nBette\nErnestine\nGwendolyn\nJacquelyn\nJerry\nLaverne\nLorene\nMabel\nSusan\nCecelia\nCleo\nElva\nEmily\nFern\nFlora\nHarriet\nInez\nLavonne\nLupe\nMarcia\nMarguerite\nMinnie\nRebecca\nSuzanne\nTeresa\nAngelina\nAngie\nBernadine\nBeverley\nCecilia\nCharline\nChristine\nDarline\nEunice\nHope\nImogene\nJessie\nLeah\nLeota\nMadeline\nMae\nMaryann\nMyrtle\nSara\nVictoria\nWilla\nAlyce\nAnnette\nAvis\nClaudine\nCora\nCorrine\nDiana\nDona\nEloise\nEvangeline\nFaye\nGlenda\nKaren\nMarilou\nMarion\nMaureen\nMiriam\nNelda\nNona\nOpal\nRosemarie\nYolanda\nAda\nAlta\nAmy\nAntonia\nCarla\nChristina\nClaudette\nColleen\nConstance\nDaisy\nEdwina\nFrieda\nGay\nHenrietta\nIris\nIva\nJoe\nLena\nLenora\nLorna\nLula\nMolly\nMona\nMuriel\nNola\nPaula\nPolly\nRegina\nSheila\nSherry\nSophie\nTillie\nVerla\nMary\nShirley\nBarbara\nBetty\nPatricia\nDorothy\nDonna\nJoan\nMargaret\nBeverly\nHelen\nVirginia\nAlice\nMarilyn\nJoyce\nCarol\nNancy\nRuth\nFrances\nDolores\nNorma\nPhyllis\nDoris\nJanet\nBonnie\nLois\nRose\nElizabeth\nDarlene\nMarie\nGloria\nEvelyn\nJoanne\nSally\nMarjorie\nCarolyn\nJoann\nAnna\nGeraldine\nJean\nJosephine\nJuanita\nRoberta\nMartha\nCharlotte\nJo\nEleanor\nIrene\nJune\nWilma\nPauline\nDelores\nEsther\nLoretta\nPat\nMarlene\nPeggy\nEdna\nJudith\nMildred\nRita\nAnn\nClara\nLillian\nLouise\nPatsy\nJanice\nSylvia\nWanda\nBernice\nLorraine\nCatherine\nElaine\nArlene\nElsie\nFlorence\nSharon\nCharlene\nEmma\nJane\nJulia\nLucille\nMargie\nEllen\nJacqueline\nRamona\nViola\nBeatrice\nMaria\nMaxine\nRosemary\nRuby\nThelma\nDixie\nEdith\nEthel\nMyrna\nPatty\nSarah\nYvonne\nKathleen\nLeona\nHazel\nGladys\nIda\nLucy\nConnie\nDella\nEileen\nEva\nGeorgia\nKay\nSandra\nSusan\nVelma\nVerna\nCarole\nCora\nIsabel\nKaren\nKathryn\nMarian\nAudrey\nBillie\nCecilia\nErnestine\nGrace\nTheresa\nVivian\nBertha\nCarmen\nJennie\nKatherine\nJeanne\nLaura\nLila\nStella\nGlenda\nJosie\nJoy\nMona\nNellie\nAnita\nPriscilla\nSue\nVera\nAngelina\nErma\nFlora\nRachel\nRosie\nAgnes\nDiane\nDora\nJeanette\nJudy\nLola\nMarion\nNadine\nAnne\nBessie\nCecelia\nChristine\nClaudia\nCleo\nElla\nLupe\nOpal\nPearl\nVictoria\nViolet\nAlma\nCaroline\nColleen\nCynthia\nFaye\nFrankie\nGenevieve\nGlenna\nGwendolyn\nHarriet\nLela\nLena\nMaureen\nRosalie\nConstance\nEloise\nEstella\nLavonne\nMabel\nNeva\nNina\nNora\nRebecca\nSara\nSherry\nSusie\nAda\nAdeline\nAlberta\nAnnette\nBette\nGail\nGertrude\nInez\nJessie\nLinda\nShirlee\nWilla\nAlta\nAngie\nBeverley\nChristina\nClarice\nDiana\nEmily\nEula\nFern\nGretchen\nIsabell\nIsabelle\nIva\nJackie\nJeanie\nJeannette\nJeannine\nJewell\nLorna\nMae\nMarcella\nMarcia\nMarianne\nMaryann\nSuzanne\nTwila\nAndrea\nArline\nBernadine\nBerniece\nCharline\nDarline\nDianne\nDolly\nDona\nEvangeline\nFreda\nGoldie\nGwen\nHilda\nIlene\nIna\nIrma\nJacquelyn\nJanis\nLaveta\nLillie\nLou\nMatilda\nMillie\nMyrtle\nNelda\nPaula\nRegina\nRosa\nRosemarie\nValerie\nWilda\nZelda\nMary\nShirley\nBarbara\nPatricia\nBetty\nDonna\nDorothy\nBeverly\nMargaret\nJoan\nNancy\nCarol\nHelen\nVirginia\nFrances\nMarilyn\nRuth\nGloria\nNorma\nJanice\nJoyce\nAlice\nRose\nJanet\nEvelyn\nPhyllis\nCarolyn\nDolores\nLois\nDoris\nElizabeth\nDarlene\nPeggy\nMarlene\nRoberta\nSylvia\nJoanne\nJean\nJoann\nMartha\nBonnie\nJo\nMarjorie\nSharon\nCharlotte\nGeraldine\nIrene\nJosephine\nJuanita\nLillian\nSally\nCharlene\nEleanor\nLoretta\nLouise\nAnna\nMaria\nElaine\nDelores\nJacqueline\nMarie\nAnn\nArlene\nEsther\nKay\nFlorence\nMildred\nPauline\nGeorgia\nRuby\nCarole\nCatherine\nJudith\nJudy\nSandra\nWilma\nJune\nMyrna\nPat\nRita\nWanda\nKathleen\nPatsy\nVivian\nAnita\nKaren\nLorraine\nMargie\nRamona\nStella\nConnie\nDixie\nGrace\nJane\nSue\nEmma\nJulia\nKatherine\nThelma\nBertha\nHazel\nJeanette\nLucille\nYvonne\nGladys\nLaura\nMaxine\nTheresa\nViola\nBernice\nCarmen\nClaudia\nElsie\nSusan\nEllen\nEva\nGlenda\nJennie\nVera\nAgnes\nAudrey\nCaroline\nClara\nCynthia\nIda\nLucy\nDella\nEthel\nMarian\nVerna\nAnne\nColleen\nDora\nLinda\nPatty\nDiane\nEdna\nElla\nGenevieve\nLeona\nMarion\nViolet\nBillie\nEmily\nKathryn\nNaomi\nNina\nRebecca\nVelma\nAnnette\nBeatrice\nCecilia\nEdith\nJackie\nJacquelyn\nLola\nNellie\nRosemary\nSarah\nAda\nAlma\nBessie\nBeth\nDona\nEileen\nErma\nFern\nFlora\nGertrude\nJeanne\nLydia\nMabel\nPriscilla\nTeresa\nVictoria\nAngela\nAnnabelle\nChristine\nClaudette\nErnestine\nEstella\nGail\nIla\nJessie\nMadeline\nMarguerite\nNadine\nRosalie\nDiana\nGayle\nIris\nJoy\nLena\nLila\nMercy\nRachel\nSherry\nAnnie\nCarla\nDaisy\nElva\nInez\nIrma\nMarcella\nMolly\nMona\nSara\nAngie\nCelia\nChristina\nCleo\nCora\nElma\nGwendolyn\nJosie\nLavonne\nLorna\nLupe\nMable\nMarcia\nMaryann\nPaula\nRosemarie\nRosie\nSusie\nWinifred\nAngelina\nBeverley\nConstance\nElinor\nGeneva\nHarriet\nHope\nIsabel\nJeannette\nJeannine\nLaverne\nLuella\nMarianne\nMaureen\nMinnie\nMuriel\nNora\nOpal\nPearl\nSuzanne\nAdeline\nAlberta\nBernadine\nBobbie\nCharla\nClaire\nElvira\nHenrietta\nHilda\nIlene\nIsabelle\nJanette\nJaunita\nLeota\nLucile\nMarla\nMelba\nRegina\nRosa\nRosella\nRowena\nSadie\nVeronica\nWinona\nMary\nBarbara\nShirley\nPatricia\nBetty\nDonna\nCarol\nNancy\nDorothy\nBeverly\nMargaret\nVirginia\nJoan\nJanice\nHelen\nRuth\nAlice\nMarilyn\nJoyce\nJanet\nFrances\nNorma\nPhyllis\nDolores\nCarolyn\nLois\nMartha\nElizabeth\nRose\nDoris\nPeggy\nBonnie\nDarlene\nSharon\nEvelyn\nMarjorie\nGloria\nSally\nJoann\nMarie\nRoberta\nIrene\nJean\nCharlotte\nLoretta\nSylvia\nMarlene\nJoanne\nPatsy\nSandra\nAnita\nEsther\nKaren\nLouise\nWilma\nJo\nJosephine\nAnna\nKay\nYvonne\nAnn\nElaine\nWanda\nCarole\nGeraldine\nJudy\nEleanor\nGladys\nJuanita\nJudith\nPat\nPauline\nFlorence\nKathleen\nLinda\nArlene\nConnie\nDelores\nElsie\nRuby\nJune\nLillian\nLorraine\nGrace\nJulia\nMaria\nDixie\nMyrna\nCharlene\nClara\nGeorgia\nJacqueline\nThelma\nBeatrice\nEdna\nLucy\nViola\nEva\nJeanette\nLucille\nRamona\nStella\nTheresa\nBillie\nCatherine\nEileen\nJane\nLeona\nMildred\nRita\nRosie\nIda\nMargie\nMaxine\nPatty\nEdith\nEmma\nGail\nRosemary\nAlberta\nBernice\nDiane\nDora\nJoy\nKathryn\nLaura\nRosalie\nViolet\nColleen\nConstance\nCora\nDeanna\nEthel\nGlenda\nKatherine\nBertha\nSarah\nVivian\nAgnes\nAudrey\nCaroline\nHazel\nJeannette\nJennie\nJosie\nLola\nMarian\nSusie\nVera\nClaudia\nDella\nDiana\nJackie\nPriscilla\nSusan\nDianne\nEllen\nGayle\nLupe\nAnnette\nJeanne\nLila\nNaomi\nNellie\nVerna\nAlma\nAnnie\nCarmen\nCecelia\nCecilia\nGenevieve\nJessie\nLydia\nRachel\nCynthia\nEmily\nErnestine\nGeneva\nIris\nMadeline\nMarcella\nOpal\nSheila\nAngelina\nDona\nFlora\nGwendolyn\nHenrietta\nIsabel\nLaverne\nMarcia\nMarguerite\nMarion\nNadine\nPaula\nSharron\nSue\nVelma\nAngie\nBessie\nCarla\nElla\nEloise\nGertrude\nIlene\nImogene\nInez\nMaryann\nMercy\nMinnie\nNora\nSherry\nVictoria\nAnne\nBette\nChristine\nCleo\nElva\nFaye\nFern\nHarriet\nHarriett\nJacquelyn\nLavonne\nLenora\nLorna\nMable\nMarianne\nMyrtle\nNina\nNola\nPearl\nSadie\nAmelia\nAurora\nBeth\nEarlene\nErma\nEunice\nFreda\nGay\nHope\nIla\nIsabelle\nLena\nLorene\nLuella\nMabel\nMelva\nMercedes\nMuriel\nRosa\nSonya\nTeresa\nTillie\nVerla\nWinona\nBarbra\nBernadine\nBeverley\nBlanche\nBobbie\nDorene\nEstella\nGeorgie\nGlenna\nJanie\nJeanie\nLillie\nMarilynn\nMarsha\nMaureen\nMiriam\nMyra\nNelda\nNita\nNona\nOlivia\nRosemarie\nSonja\nWinifred\nMary\nBarbara\nPatricia\nShirley\nBetty\nDonna\nCarol\nNancy\nMargaret\nDorothy\nVirginia\nBeverly\nJanice\nJoyce\nMarilyn\nPhyllis\nSharon\nJoan\nSandra\nHelen\nRuth\nFrances\nAlice\nJudith\nNorma\nJanet\nCarolyn\nDolores\nGloria\nJudy\nRose\nRosalie\nDoris\nLois\nElizabeth\nDarlene\nRoberta\nMartha\nLoretta\nBonnie\nJoann\nEvelyn\nWanda\nConnie\nCharlotte\nMarie\nLinda\nMarjorie\nPeggy\nAnna\nJean\nSally\nMargie\nEsther\nSylvia\nWilma\nIrene\nMarlene\nGeraldine\nJoanne\nMyrna\nAnn\nArlene\nEleanor\nKathleen\nJuanita\nCatherine\nJeanette\nJosephine\nKaren\nKay\nCharlene\nJacqueline\nPatsy\nLouise\nPauline\nJane\nLillian\nRita\nDeanna\nDora\nAnita\nDixie\nElaine\nRamona\nSusan\nEdna\nFlorence\nGail\nRuby\nDiane\nGeorgia\nMarcia\nViola\nCarole\nLorraine\nMaria\nTheresa\nDelores\nEva\nIda\nJo\nClara\nEileen\nGrace\nJulia\nJune\nMaxine\nCarmen\nEdith\nFlora\nMarian\nPat\nRosemary\nStella\nElsie\nThelma\nVivian\nYvonne\nDella\nLucille\nPatty\nDiana\nEllen\nJackie\nMildred\nPriscilla\nSonja\nAlberta\nBeatrice\nBernice\nBertha\nBillie\nHazel\nKatherine\nNellie\nSue\nVerna\nCecilia\nClaudia\nEmily\nGlenda\nKathryn\nPaula\nSarah\nSuzanne\nAnnette\nCaroline\nEthel\nGladys\nJosie\nLucy\nConstance\nJeanne\nJennie\nAudrey\nCarla\nCynthia\nElla\nLaura\nLaurel\nMarcella\nTeresa\nBeverley\nCora\nEmma\nJoy\nLeona\nMadeline\nNina\nSheila\nSherry\nVelma\nAgnes\nAngelina\nErnestine\nFern\nLila\nMaryann\nNaomi\nNora\nRebecca\nRosie\nViolet\nAlma\nAngie\nDeloris\nHarriet\nLupe\nMarilynn\nNadine\nNona\nPearl\nVera\nAnne\nAnnie\nBessie\nBeth\nCelia\nColleen\nElva\nGenevieve\nHenrietta\nIna\nLola\nMarsha\nRachel\nCecelia\nCleo\nDona\nEunice\nGeneva\nIris\nIsabel\nLena\nLorene\nLydia\nMarguerite\nMaureen\nRosalee\nSondra\nSusie\nVictoria\nClaudette\nErma\nFreda\nGertrude\nGwendolyn\nInez\nJeannette\nJessie\nJoanna\nLaverne\nLavonne\nLillie\nLora\nMarianne\nMarion\nMona\nMyrtle\nOlivia\nOpal\nRosemarie\nYolanda\nAda\nAdeline\nBette\nBeulah\nCheryl\nDarla\nElvira\nEvangeline\nJan\nLynn\nMarla\nMercedes\nRochelle\nSadie\nSelma\nVicki\nWilla\nWynona\nAnnetta\nBettie\nBlanche\nBobbie\nCarrie\nCharline\nCherie\nClaire\nClaudine\nDana\nDee\nErlinda\nFrancis\nFrieda\nGayle\nGlenna\nHarriett\nHope\nIla\nJacquelyn\nJanis\nJolene\nKaye\nLeah\nLeta\nLilly\nLily\nLuella\nMable\nMelva\nMolly\nNeva\nSonya\nStephanie\nMary\nBarbara\nPatricia\nShirley\nBetty\nCarol\nDonna\nDorothy\nJudith\nNancy\nMargaret\nJanice\nSharon\nBeverly\nJoan\nJoyce\nVirginia\nHelen\nMarilyn\nJudy\nSandra\nCarolyn\nFrances\nPhyllis\nJanet\nLinda\nAlice\nNorma\nRuth\nLois\nGloria\nLoretta\nRose\nDarlene\nBonnie\nJean\nDolores\nMarjorie\nRoberta\nJoann\nCharlotte\nDoris\nEsther\nIrene\nPeggy\nGeraldine\nMarie\nElizabeth\nAnna\nEvelyn\nMartha\nAnn\nElaine\nMarlene\nSally\nKaren\nJo\nLouise\nRosalie\nJane\nCharlene\nJulia\nKay\nCarole\nWilma\nKathryn\nPatsy\nPauline\nJosephine\nKathleen\nAnita\nDiane\nPat\nSylvia\nMyrna\nYvonne\nFlorence\nJoanne\nSusan\nGlenda\nLillian\nDeanna\nRita\nWanda\nBeatrice\nCatherine\nMargie\nConnie\nEleanor\nJeanette\nLorraine\nElsie\nJune\nKatherine\nLucille\nDixie\nJuanita\nLeona\nPriscilla\nViola\nClaudia\nMarcia\nMaria\nMildred\nArlene\nMaxine\nAlberta\nEdna\nLucy\nSue\nThelma\nVerna\nBertha\nDelores\nDiana\nDora\nJacqueline\nRamona\nRuby\nVivian\nCarmen\nClara\nPatty\nConstance\nGeorgia\nBernice\nCynthia\nEdith\nJennie\nGladys\nCaroline\nLydia\nMarian\nStella\nAgnes\nAudrey\nLaura\nTheresa\nVera\nEileen\nEthel\nEva\nMarcella\nNellie\nRebecca\nVictoria\nBillie\nCarla\nChristine\nElla\nEmma\nGail\nJackie\nRachel\nSonja\nAlma\nDella\nGenevieve\nJoy\nLola\nMaureen\nNora\nSarah\nAngela\nBette\nCecelia\nColleen\nDarla\nElva\nJessie\nMaryann\nOpal\nRosemary\nSusie\nAnnette\nEmily\nFlora\nIsabel\nJosie\nLila\nMadeline\nMarion\nMarsha\nOlivia\nPaula\nRosie\nSondra\nViolet\nEllen\nErma\nHazel\nIda\nJeanne\nJeannette\nMabel\nNadine\nNaomi\nSadie\nSherry\nTeresa\nAdeline\nAngie\nBeth\nBrenda\nCecilia\nCleo\nCora\nErnestine\nEvangeline\nFaye\nGeneva\nGrace\nHenrietta\nLorna\nLupe\nPenny\nRosalee\nSara\nVelma\nDee\nDianne\nEstella\nEunice\nGayle\nGwen\nHarriet\nIris\nJulie\nLaurel\nLenora\nLora\nMable\nPearl\nPenelope\nSheila\nSuzanne\nAndrea\nAnnie\nBeulah\nClaudette\nFrieda\nJacquelyn\nJerry\nKathy\nLena\nLeslie\nLynne\nMarguerite\nMinnie\nMona\nNona\nRae\nTwila\nAda\nArdith\nArleen\nBeverley\nCarrol\nDebra\nEloise\nGay\nHarriett\nHope\nIlene\nIna\nJanie\nJanis\nJewel\nJolene\nKaye\nLavonne\nLeilani\nLillie\nLily\nLorene\nLuella\nLynn\nMarianne\nMatilda\nMercedes\nMiriam\nMyrtle\nNina\nNita\nPamela\nRenee\nRosa\nTillie\nToni\nVeronica\nWilla\nZelma\nMary\nPatricia\nBarbara\nCarol\nBetty\nJudith\nShirley\nSharon\nDonna\nSandra\nMargaret\nJudy\nNancy\nVirginia\nLinda\nDorothy\nJoyce\nJanice\nCarolyn\nBeverly\nJanet\nPhyllis\nMarilyn\nGloria\nJoan\nHelen\nKaren\nBonnie\nFrances\nNorma\nRuth\nAlice\nElizabeth\nMartha\nCharlotte\nLois\nRose\nSusan\nDolores\nDoris\nRoberta\nGeraldine\nAnn\nEsther\nPeggy\nKathleen\nDarlene\nPat\nSally\nJo\nConnie\nJean\nMarjorie\nJuanita\nKay\nEvelyn\nKatherine\nAnna\nElaine\nJosephine\nLoretta\nMyrna\nSylvia\nDiane\nPatsy\nRita\nCarole\nJoann\nMarie\nPauline\nWanda\nAnita\nLouise\nIrene\nMildred\nDiana\nJane\nJeanette\nJoanne\nJulia\nMaria\nPriscilla\nRuby\nViola\nGeorgia\nArlene\nCharlene\nDeanna\nDixie\nCatherine\nMargie\nWilma\nEdna\nEva\nFlorence\nRosalie\nThelma\nEdith\nGail\nGlenda\nKathryn\nCynthia\nPatty\nJacqueline\nJune\nMaxine\nTheresa\nVivian\nClara\nEleanor\nMarcia\nRebecca\nAnne\nDelores\nEileen\nEllen\nLaura\nRamona\nBeatrice\nBertha\nElsie\nLucy\nRosemary\nCarmen\nIda\nLila\nLorraine\nLydia\nSarah\nSherry\nYvonne\nCaroline\nGrace\nLillian\nLucille\nMarlene\nSue\nAudrey\nEmma\nEthel\nJeanne\nJeannette\nJennie\nChristine\nNellie\nPaula\nVera\nBernice\nErma\nKathy\nMarian\nSheila\nAlberta\nCarla\nColleen\nConstance\nSuzanne\nBrenda\nDora\nMarcella\nStella\nAnnette\nClaudia\nDianne\nGayle\nGladys\nJulie\nLorna\nLynne\nMaryann\nNaomi\nRachel\nViolet\nCecilia\nFlora\nJessie\nLola\nMarilynn\nMarsha\nVictoria\nAngelina\nBessie\nBeth\nCleo\nDella\nElla\nEmily\nErnestine\nFaye\nHazel\nJoy\nLeona\nMabel\nMadeline\nMarianne\nMaureen\nMona\nNora\nRosie\nSadie\nSara\nSaundra\nSondra\nVicki\nAgnes\nAlma\nAngela\nBillie\nGwendolyn\nMargarita\nPolly\nSharron\nTeresa\nVelma\nVerna\nAmelia\nAndrea\nAngie\nAnnabelle\nAnnie\nBette\nBeverley\nCorrine\nDarla\nDona\nFreda\nGeneva\nGenevieve\nGretchen\nHarriet\nInez\nJackie\nJacquelyn\nJosie\nLaurel\nLavonne\nLou\nNadine\nNina\nOlivia\nPamela\nPearl\nRosa\nSonja\nSusie\nValerie\nCarrie\nCecelia\nEtta\nEunice\nFrancis\nJeanie\nJeannine\nJenny\nLeola\nLouella\nMelba\nMyra\nPenny\nTwila\nWilla\nAlta\nAntoinette\nBelva\nConsuelo\nCora\nCrystal\nDawn\nDelia\nDeloris\nDolly\nEarlene\nElinor\nGeorgina\nGertrude\nGwen\nIris\nIva\nJeannie\nJerry\nJudie\nLadonna\nLeila\nLena\nLucia\nLupe\nMargo\nMarion\nMarla\nNeva\nPenelope\nRegina\nRosella\nVelda\nMary\nBarbara\nPatricia\nSharon\nCarol\nJudith\nJudy\nNancy\nBetty\nDonna\nSandra\nShirley\nLinda\nKaren\nMargaret\nVirginia\nCarolyn\nHelen\nBeverly\nDorothy\nJanice\nJoyce\nGloria\nJanet\nJoan\nBonnie\nElizabeth\nNorma\nAlice\nFrances\nMarilyn\nPeggy\nRuth\nCharlotte\nPhyllis\nJean\nKathleen\nLois\nMarie\nRose\nLoretta\nSusan\nDolores\nIrene\nEvelyn\nMartha\nGeraldine\nSally\nConnie\nMarjorie\nDoris\nJoann\nElaine\nRoberta\nCarole\nEleanor\nLouise\nDiane\nCharlene\nPriscilla\nRita\nMaria\nWanda\nDarlene\nJoanne\nGeorgia\nRuby\nAnn\nEsther\nJuanita\nKathryn\nKay\nMarlene\nTheresa\nPatsy\nKatherine\nAnna\nCynthia\nJane\nSylvia\nCatherine\nJeanette\nClara\nPatty\nSue\nArlene\nJacqueline\nJosephine\nJulia\nCarmen\nEdith\nEllen\nLucille\nPat\nDelores\nGlenda\nAnita\nDiana\nDixie\nLeona\nLillian\nRosalie\nDeanna\nGrace\nLaura\nPaula\nWilma\nCecilia\nClaudia\nEileen\nEva\nFlorence\nJo\nLorraine\nPauline\nSarah\nTeresa\nThelma\nBertha\nConstance\nKathy\nSheila\nViola\nEdna\nEthel\nJeanne\nJoy\nMargie\nMildred\nSherry\nLucy\nMyrna\nYvonne\nAnne\nBernice\nCarla\nDianne\nGladys\nMarcella\nMarian\nBeatrice\nBillie\nMarcia\nRebecca\nStella\nVerna\nGenevieve\nHazel\nMaxine\nNadine\nVivian\nDella\nElsie\nEmily\nJennie\nLupe\nLynda\nVictoria\nAlberta\nAngie\nEmma\nFaye\nGail\nIsabel\nJune\nLydia\nPamela\nRachel\nVera\nAgnes\nAnnette\nCaroline\nChristine\nJeannette\nJosie\nJulie\nLynn\nRamona\nRosemary\nVelma\nBeth\nBeverley\nCecelia\nGayle\nMadeline\nMarguerite\nPenny\nRosie\nSuzanne\nViolet\nAudrey\nBessie\nBrenda\nColleen\nDianna\nElla\nGlenna\nIda\nInez\nIris\nJacquelyn\nJan\nMaryann\nNora\nSara\nSharron\nAndrea\nBette\nElva\nErnestine\nJerry\nLila\nLorna\nLynne\nMyra\nMyrtle\nNellie\nOlivia\nRegina\nCharla\nCheryl\nFlora\nGertrude\nJanis\nJessie\nJoanna\nLola\nMarsha\nMaureen\nMona\nNina\nSondra\nStephanie\nTerry\nVeronica\nVicki\nAdeline\nBetsy\nBobbie\nBonita\nCelia\nCora\nDaisy\nDora\nErma\nFern\nGwendolyn\nHenrietta\nJackie\nJanie\nJeannie\nLee\nMercedes\nMiriam\nSadie\nSandy\nSherrill\nSonja\nAlma\nAnnie\nBecky\nBernadine\nCharleen\nCleo\nCordelia\nDarla\nDona\nEstella\nFrankie\nFreda\nGeneva\nGretchen\nIla\nIna\nIrma\nJeanie\nJeannine\nJenny\nLana\nLaurel\nLaverne\nLena\nLeota\nLilly\nLucia\nMarianne\nMarla\nMeredith\nNelda\nNeva\nPearl\nRosa\nSharlene\nSusie\nMary\nSharon\nBarbara\nPatricia\nCarol\nLinda\nSandra\nJudith\nJudy\nNancy\nBetty\nCarolyn\nDonna\nKaren\nShirley\nMargaret\nJanice\nVirginia\nJoyce\nJanet\nJoan\nMarilyn\nKathleen\nDorothy\nBeverly\nHelen\nFrances\nBonnie\nSusan\nAlice\nPhyllis\nRuth\nCarole\nCharlotte\nRose\nGloria\nAnn\nLoretta\nElizabeth\nAnna\nMartha\nPeggy\nLois\nConnie\nRita\nGeraldine\nMarie\nRoberta\nKatherine\nDiane\nDolores\nEvelyn\nDarlene\nSally\nDiana\nJean\nNorma\nCatherine\nJosephine\nLouise\nWanda\nMaria\nDoris\nIrene\nJoann\nCharlene\nPatsy\nJane\nJuanita\nPamela\nEleanor\nJo\nKathryn\nElaine\nLaura\nMyrna\nTheresa\nJacqueline\nPaula\nPauline\nRebecca\nCynthia\nJeanette\nJeanne\nKay\nRosalie\nAnita\nJulia\nLillian\nMarlene\nEllen\nGail\nGlenda\nJoanne\nMarjorie\nPat\nSherry\nGeorgia\nKathy\nLorraine\nEsther\nPriscilla\nRosemary\nFlorence\nMarcia\nMargie\nSarah\nClara\nEdith\nEileen\nSharron\nArlene\nCecilia\nClaudia\nDeanna\nDelores\nDianne\nDixie\nGrace\nJune\nWilma\nBertha\nBillie\nCarmen\nLucille\nRamona\nSheila\nThelma\nYvonne\nElsie\nLucy\nSylvia\nAlberta\nBeatrice\nJoy\nMildred\nStella\nVerna\nVivian\nDora\nEdna\nEva\nJennie\nRuby\nSara\nAnne\nGladys\nMarian\nMaureen\nPenny\nSue\nVelma\nCarla\nCaroline\nJeannette\nLola\nPatty\nVera\nVictoria\nViola\nCecelia\nChristine\nColleen\nCora\nGenevieve\nHope\nIda\nJessie\nPearl\nRosie\nTeresa\nVicki\nAnnette\nAudrey\nEmily\nEthel\nHazel\nLeslie\nAnnie\nElla\nLynda\nMarcella\nMarilynn\nMaxine\nSuzanne\nVeronica\nConstance\nIris\nJackie\nJulie\nLeona\nLila\nLynne\nMadeline\nMarion\nSusie\nAngie\nBernice\nBobbie\nCathy\nCheryl\nDella\nEmma\nHarriet\nJosie\nLupe\nLynn\nNaomi\nNora\nSondra\nAgnes\nGlenna\nJanie\nJudi\nJudie\nMarsha\nMinnie\nNellie\nOlivia\nVickie\nVicky\nBernadine\nBeth\nBette\nDona\nEloise\nFlora\nInez\nJacquelyn\nKarin\nLavonne\nLorna\nLuella\nMarguerite\nMarianne\nNadine\nRegina\nRosemarie\nSandy\nToni\nArdith\nBecky\nBessie\nBeverley\nBonita\nCarrie\nDarla\nDelia\nDianna\nErma\nErnestine\nEunice\nFaith\nGerry\nJeannie\nLana\nLaurel\nLee\nLora\nLoraine\nLydia\nMargo\nMercy\nMichele\nMiriam\nMolly\nSharen\nSheryl\nViolet\nAda\nAlma\nAmanda\nAngela\nBrenda\nCelia\nCharla\nCherry\nClaire\nCleo\nDeloris\nEarlene\nFern\nFrieda\nGayle\nGertrude\nGwen\nHenrietta\nIlene\nIsabel\nLeah\nLela\nLena\nLeta\nLillie\nMabel\nMable\nMarilee\nMarla\nMaryann\nPatti\nPaulette\nSadie\nSherrill\nSonja\nValerie\nMary\nSharon\nPatricia\nCarol\nBarbara\nLinda\nJudith\nKaren\nNancy\nSandra\nDonna\nJudy\nShirley\nCarolyn\nBetty\nMarilyn\nMargaret\nJanice\nDorothy\nJoyce\nGloria\nJanet\nSusan\nHelen\nKathleen\nVirginia\nJoan\nElizabeth\nFrances\nBeverly\nRuth\nBonnie\nConnie\nPhyllis\nAlice\nDolores\nRose\nCharlotte\nRoberta\nJean\nKatherine\nMarie\nCheryl\nLois\nElaine\nLouise\nMartha\nDiana\nDiane\nLoretta\nAnn\nJoann\nPamela\nCarole\nPatsy\nRita\nDoris\nNorma\nPeggy\nTheresa\nSally\nJo\nAnna\nCatherine\nDarlene\nSherry\nEvelyn\nKay\nCynthia\nKathy\nJane\nJosephine\nJuanita\nJulia\nKathryn\nWanda\nEleanor\nGeraldine\nSylvia\nJacqueline\nCharlene\nClara\nIrene\nMaria\nPriscilla\nEllen\nSue\nDianne\nMarjorie\nWilma\nAnita\nDeanna\nGail\nJoanne\nSheila\nChristine\nDelores\nEsther\nJeanette\nLynda\nStella\nVicki\nGeorgia\nMarsha\nRuby\nClaudia\nMargie\nArlene\nJeanne\nJulie\nLorraine\nPauline\nCaroline\nMaxine\nRebecca\nLaura\nMarlene\nPat\nPaula\nSuzanne\nBeatrice\nConstance\nLucille\nMildred\nPatty\nRosalie\nSharron\nViola\nEmma\nJennie\nLillian\nSarah\nTeresa\nVictoria\nYvonne\nCecilia\nDixie\nMyrna\nPenny\nAnne\nEthel\nFlora\nFlorence\nJune\nLucy\nRosemary\nVerna\nVivian\nEdna\nPaulette\nIda\nJacquelyn\nMaureen\nRamona\nThelma\nVeronica\nBillie\nCarla\nEdith\nGladys\nLynn\nMadeline\nMarcella\nSandy\nAudrey\nBecky\nBernice\nBertha\nCathy\nCecelia\nDora\nEileen\nErnestine\nEva\nJackie\nJoy\nLydia\nLynne\nMarcia\nMarguerite\nMarian\nRosie\nElsie\nJeannette\nJeannie\nLeona\nMaryann\nNadine\nSusie\nVera\nAngie\nDianna\nGayle\nGrace\nHarriet\nLana\nMarilynn\nSherrie\nSheryl\nCarmen\nDona\nElva\nFaye\nIsabel\nJeanie\nLeslie\nMarion\nPenelope\nRachel\nTerry\nVelma\nAlberta\nAnnie\nColleen\nElla\nGinger\nGlenda\nGlenna\nIris\nIrma\nJan\nJosie\nLupe\nMinnie\nNellie\nNina\nOlivia\nPearl\nRosemarie\nAmy\nAngelina\nAnnette\nBeth\nChristina\nDale\nDarla\nDella\nEmily\nEunice\nGwendolyn\nHazel\nJessie\nJill\nLaverne\nLee\nLenore\nLola\nMelody\nRegina\nRoseann\nSaundra\nShannon\nSondra\nStephanie\nVicky\nViolet\nAgnes\nAntoinette\nBonita\nBrenda\nCarmel\nCelia\nCharleen\nDawn\nDeborah\nErma\nGenevieve\nIna\nInez\nJanette\nJoanna\nJudi\nLorene\nLorna\nMelanie\nMeredith\nMyra\nSidney\nAdeline\nApril\nBernadette\nBessie\nCassandra\nCleo\nDelia\nEarlene\nEstella\nEugenia\nFrankie\nHenrietta\nIsabelle\nJerry\nJosefina\nLela\nMargo\nMarianne\nMarla\nMarylou\nMay\nMichele\nMickey\nNaomi\nNeva\nSara\nSherrill\nToni\nVickie\nMary\nSharon\nPatricia\nBarbara\nCarol\nLinda\nSandra\nJudith\nJudy\nDonna\nNancy\nKaren\nShirley\nCarolyn\nSusan\nBetty\nKathleen\nMargaret\nMarilyn\nCheryl\nJanet\nVirginia\nJoyce\nDorothy\nBeverly\nGloria\nJanice\nFrances\nBonnie\nElizabeth\nHelen\nRuth\nJoan\nPhyllis\nDiane\nMartha\nAlice\nConnie\nCarole\nPamela\nRose\nDiana\nAnn\nPeggy\nCatherine\nJane\nRoberta\nSally\nNorma\nCharlotte\nRita\nEsther\nKathryn\nDarlene\nJean\nCynthia\nMarie\nKatherine\nClaudia\nDolores\nLoretta\nLorraine\nEvelyn\nKathy\nMaria\nSherry\nSylvia\nTheresa\nElaine\nGeraldine\nJacqueline\nJoann\nAnne\nGail\nJo\nJuanita\nLouise\nChristine\nJeanne\nPatsy\nPaula\nRuby\nDoris\nAnita\nEileen\nIrene\nJosephine\nKay\nPauline\nRebecca\nSue\nEleanor\nGlenda\nJulia\nSheila\nDelores\nLois\nAnna\nEllen\nDeanna\nDianne\nMarjorie\nWilma\nCharlene\nMarlene\nWanda\nJoanne\nMarsha\nViola\nArlene\nStella\nVictoria\nCarmen\nEdna\nLynda\nBernice\nFlorence\nMarcia\nRosalie\nSarah\nSuzanne\nCaroline\nConstance\nGeorgia\nLaura\nMildred\nPat\nPaulette\nVicki\nClara\nEdith\nEmily\nJeanette\nLynn\nMarcella\nPatty\nPriscilla\nRamona\nGrace\nLeona\nLucille\nRosemary\nSharron\nTeresa\nBillie\nDixie\nLillian\nMaxine\nVelma\nYvonne\nBertha\nElsie\nJan\nLucy\nMargie\nMarian\nSheryl\nDella\nErnestine\nCecilia\nColleen\nEmma\nEva\nJennie\nLupe\nLydia\nMarilynn\nSara\nStephanie\nToni\nVera\nVeronica\nBeatrice\nDebra\nElla\nGladys\nLola\nMaryann\nNaomi\nPearl\nSandy\nSherrie\nThelma\nBernadette\nCarla\nCathy\nChristina\nDora\nGayle\nJessie\nJill\nJulie\nMarianne\nMyrna\nSusie\nAndrea\nAngie\nGenevieve\nIda\nIsabel\nJeannette\nLana\nLeslie\nLila\nMarguerite\nMichele\nMona\nOpal\nPenelope\nPenny\nVivian\nAgnes\nAnnette\nAnnie\nAudrey\nBonita\nBrenda\nGertrude\nJackie\nJoy\nJudi\nLorna\nMabel\nNina\nNora\nRosa\nSaundra\nSondra\nVerna\nVicky\nViolet\nAlma\nBette\nDeborah\nGlenna\nGretchen\nHenrietta\nJacquelyn\nJeannie\nLee\nMaureen\nPatti\nTrudy\nAdeline\nAngelina\nBecky\nBessie\nCarrie\nCindy\nCorinne\nDebbie\nDianna\nEstella\nHarriet\nHope\nIris\nJennifer\nJenny\nJune\nLadonna\nLynne\nMargo\nMelinda\nMelva\nOlivia\nRachel\nRobin\nTerry\nTwila\nVickie\nAda\nAlicia\nAmy\nAngela\nAntoinette\nBeverley\nBobbie\nCarlene\nCecelia\nCelia\nCharla\nCheryll\nConsuelo\nDona\nEthel\nFaye\nFlora\nGay\nHazel\nInez\nJanie\nJeanie\nJeannine\nJerry\nKarla\nLeila\nMadeline\nMarion\nMarylou\nMiriam\nNona\nRenee\nRoseann\nRosella\nRosemarie\nRosie\nRoxie\nSadie\nSallie\nShari\nSonja\nSusanne\nMary\nLinda\nSharon\nPatricia\nCarol\nBarbara\nSandra\nKaren\nJudy\nJudith\nNancy\nDonna\nBetty\nShirley\nMargaret\nSusan\nJanet\nKathleen\nCarolyn\nGloria\nDorothy\nCheryl\nJoyce\nVirginia\nJanice\nMarilyn\nHelen\nBeverly\nJoan\nBonnie\nPamela\nRuth\nDiane\nElizabeth\nDiana\nFrances\nRose\nMartha\nPhyllis\nJean\nAlice\nJane\nConnie\nPeggy\nCharlotte\nGeraldine\nRoberta\nAnn\nSally\nCatherine\nRita\nElaine\nMarie\nDarlene\nJosephine\nKathy\nNorma\nJoann\nVictoria\nCynthia\nIrene\nLoretta\nPaula\nGail\nMaria\nSherry\nJo\nJuanita\nAnna\nChristine\nKatherine\nLouise\nJune\nKathryn\nCarole\nClaudia\nDolores\nEllen\nEvelyn\nKay\nSheila\nCharlene\nGlenda\nPatsy\nSue\nAnita\nGeorgia\nLois\nMarcia\nTeresa\nTheresa\nVicki\nJeanette\nLorraine\nLucille\nPauline\nJeanne\nLaura\nMarjorie\nRebecca\nCarmen\nLynn\nRosemary\nAnne\nJacqueline\nMargie\nMildred\nMarsha\nPenny\nPriscilla\nDianne\nDoris\nEileen\nFlorence\nPatty\nJulia\nLeslie\nLillian\nWanda\nWilma\nBillie\nDelores\nEva\nJoanne\nSylvia\nJennie\nLynda\nMarlene\nRuby\nStella\nBeatrice\nGayle\nJulie\nMaxine\nSarah\nArlene\nElsie\nEsther\nSheryl\nSuzanne\nVickie\nViola\nBernice\nEleanor\nJackie\nMyrna\nPat\nRosalie\nRosie\nDeborah\nEdna\nLucy\nConstance\nDixie\nElla\nIda\nSandy\nVivian\nAndrea\nCecilia\nClara\nDianna\nEdith\nEthel\nJanie\nJanis\nLeona\nMarcella\nMaryann\nTerry\nGladys\nGrace\nLana\nLydia\nMarian\nSara\nToni\nVerna\nVicky\nAnnette\nCarla\nCathleen\nCathy\nColleen\nDana\nDeanna\nDora\nJoy\nLupe\nRegina\nSharron\nVera\nBrenda\nJacquelyn\nJill\nJosie\nNora\nRamona\nSherrie\nVeronica\nYvonne\nDella\nFlora\nHarriet\nHenrietta\nMarguerite\nMarilynn\nMaureen\nNadine\nPenelope\nRosemarie\nSondra\nSonja\nTrudy\nValerie\nViolet\nAngela\nBertha\nCaroline\nCecelia\nChristina\nDona\nFaye\nGwendolyn\nHazel\nJennifer\nKarla\nKaye\nLee\nLorna\nNina\nRosa\nThelma\nVelma\nAgnes\nAlberta\nAmelia\nBeth\nBette\nCindy\nDawn\nElvira\nEmily\nEmma\nInez\nIsabel\nKarol\nLaurel\nLena\nLila\nLisa\nLola\nMarianne\nMercy\nMichele\nNita\nPaulette\nRachel\nSharyn\nAlicia\nAngelina\nAngie\nBernadette\nBobbie\nCora\nCorinne\nGay\nGuadalupe\nJan\nJenny\nJessie\nJudi\nLynette\nMadeline\nOlivia\nRena\nSusie\nAmy\nAntoinette\nCandace\nCandy\nCharla\nCleo\nDarla\nErlinda\nErma\nFaith\nFrankie\nGeneva\nGenevieve\nJacque\nLynne\nMabel\nMeredith\nMiriam\nMolly\nPam\nPearl\nRenee\nRobin\nRoseann\nTerri\nTherese\nMary\nLinda\nPatricia\nSharon\nBarbara\nCarol\nSandra\nKaren\nSusan\nJudith\nNancy\nJudy\nDonna\nBetty\nJanet\nKathleen\nMargaret\nCheryl\nShirley\nJanice\nCarolyn\nJoyce\nGloria\nVirginia\nConnie\nMarilyn\nBeverly\nDiane\nDiana\nDorothy\nPamela\nCynthia\nHelen\nBonnie\nPhyllis\nJoan\nKatherine\nRose\nRuth\nElizabeth\nFrances\nPeggy\nJo\nKathy\nAnn\nAlice\nJane\nSally\nCharlotte\nMartha\nRoberta\nCatherine\nRita\nJean\nKathryn\nTheresa\nVicki\nGeraldine\nDolores\nJoann\nKay\nMarie\nSherry\nCharlene\nDarlene\nLaura\nElaine\nAnita\nEvelyn\nLoretta\nPatsy\nRebecca\nSylvia\nDoris\nGail\nJuanita\nLorraine\nMaria\nSheila\nIrene\nLynn\nRosemary\nChristine\nLois\nPaula\nGeorgia\nLouise\nVictoria\nNorma\nConstance\nJeanette\nJeanne\nJulie\nMarsha\nClaudia\nDianne\nJacqueline\nMarjorie\nPriscilla\nSue\nSuzanne\nCarole\nJoanne\nLucy\nSheryl\nAnna\nEileen\nJosephine\nPauline\nWanda\nAnne\nGlenda\nDelores\nMarcia\nPenny\nTeresa\nEllen\nEsther\nGayle\nVeronica\nAndrea\nDianna\nRuby\nEleanor\nCarla\nStella\nStephanie\nBeatrice\nCarmen\nCathy\nJune\nLeslie\nLynda\nMargie\nMarlene\nPatty\nSarah\nClara\nDeanna\nDixie\nLucille\nMarian\nMaureen\nPaulette\nSharron\nTerry\nVickie\nAnnette\nCaroline\nJackie\nJulia\nLillian\nLynne\nRosalie\nSara\nVivian\nBertha\nJanis\nArlene\nGrace\nJennifer\nMildred\nSusie\nAudrey\nBernadette\nCindy\nDella\nFlorence\nGwendolyn\nJennie\nToni\nViola\nYvonne\nBecky\nChristina\nEdna\nIsabel\nPat\nRamona\nWilma\nAlberta\nBernice\nBeth\nBillie\nCecilia\nDora\nElsie\nEva\nGenevieve\nLana\nVera\nCandace\nEdith\nEmily\nEmma\nHazel\nIda\nJanie\nJoy\nKarla\nMarcella\nMarianne\nRosie\nBrenda\nDeborah\nErnestine\nEthel\nJacquelyn\nJanette\nJill\nMaryann\nRobin\nTrudy\nVicky\nCecelia\nDebra\nHarriet\nJan\nLupe\nNina\nThelma\nJeannette\nJudi\nLee\nLeona\nLydia\nMadeline\nMaxine\nPam\nPatti\nPenelope\nRosemarie\nSonja\nTerrie\nAngelina\nAntonia\nBobbie\nColleen\nDana\nDee\nFaye\nGladys\nGlenna\nHope\nIris\nJamie\nJeannie\nJenny\nJessie\nLaurel\nLola\nMichelle\nRhonda\nRosa\nSandy\nYolanda\nAgnes\nAngie\nAntoinette\nCandy\nCelia\nCheri\nCherie\nDarla\nDenise\nFlora\nGeneva\nGwen\nInez\nIrma\nLou\nMichele\nNaomi\nNora\nRae\nSandi\nSaundra\nSheri\nSondra\nValerie\nVerna\nAngela\nApril\nBonita\nDona\nElva\nErma\nEstella\nFrancine\nFreda\nGuadalupe\nHenrietta\nLenora\nLorene\nMarguerite\nMarilynn\nMarion\nMyrna\nNola\nRachel\nSharyn\nSherri\nSherrie\nSusanne\nTerri\nUnknown\nViolet\nAlma\nAnnabelle\nBetsy\nCandice\nCarrie\nCarrol\nCathleen\nCherryl\nClaire\nCora\nCorinne\nDale\nDebbie\nDoreen\nElla\nErlinda\nEsperanza\nEtta\nFern\nGinger\nJeri\nJerry\nJudie\nKarol\nKaye\nLauretta\nLeann\nMargo\nMelanie\nMelody\nMercy\nMeredith\nMolly\nMuriel\nNelda\nNellie\nOpal\nPearl\nRegina\nRenee\nRosella\nSherryl\nShiela\nSuzan\nVelma\nLinda\nMary\nPatricia\nSharon\nBarbara\nSandra\nCarol\nKaren\nNancy\nSusan\nDonna\nJudy\nJudith\nKathleen\nJanet\nMargaret\nCheryl\nJanice\nBetty\nShirley\nGloria\nMarilyn\nCarolyn\nDiane\nConnie\nVirginia\nPamela\nDorothy\nCynthia\nDiana\nElizabeth\nJoyce\nBonnie\nBeverly\nFrances\nPhyllis\nJoan\nHelen\nJo\nKathy\nCatherine\nRita\nPeggy\nAnn\nKathryn\nRose\nSherry\nKatherine\nRuth\nVicki\nJane\nJean\nMaria\nRebecca\nAlice\nCharlotte\nLoretta\nMartha\nRoberta\nDarlene\nLaura\nMarie\nSally\nLynda\nNorma\nCharlene\nElaine\nGail\nPaula\nJeanne\nLorraine\nSue\nTheresa\nMarsha\nDianne\nEvelyn\nSheila\nAnita\nLynn\nCathy\nClaudia\nChristine\nIrene\nLois\nMarjorie\nEllen\nKay\nJacqueline\nJosephine\nGeraldine\nJoann\nPatsy\nJuanita\nDolores\nGeorgia\nEsther\nRosemary\nGlenda\nVictoria\nDeborah\nMarcia\nWanda\nConstance\nJoanne\nPauline\nSuzanne\nJulie\nVickie\nArlene\nDelores\nLeslie\nLouise\nSylvia\nSheryl\nGayle\nTeresa\nJeanette\nStella\nTerry\nAnna\nJanis\nPatty\nToni\nCarmen\nCheri\nLucille\nRosalie\nEileen\nMargie\nPat\nPenny\nJune\nMaureen\nSandy\nCarole\nDoris\nJill\nMarlene\nDixie\nEleanor\nJulia\nLucy\nMildred\nEdith\nSarah\nSusie\nYvonne\nAnne\nCarla\nCaroline\nRamona\nSara\nVicky\nBecky\nBernice\nDeanna\nFlorence\nLynne\nRuby\nWilma\nClara\nDianna\nStephanie\nBillie\nCindy\nEdna\nJackie\nJan\nJeannie\nJennifer\nSharron\nTerri\nVerna\nVivian\nBeatrice\nBertha\nChristina\nDebra\nElsie\nEthel\nJoy\nMaxine\nMyrna\nPriscilla\nVeronica\nWendy\nBrenda\nCecelia\nCecilia\nEva\nKristine\nLillian\nMarcella\nMaryann\nMelody\nMichele\nPaulette\nAnnette\nCandace\nGeneva\nGrace\nLana\nLynette\nRachel\nRosie\nColleen\nDenise\nHope\nJennie\nBernadette\nDana\nIda\nJanie\nLaurel\nLaurie\nLydia\nSherri\nSherrie\nBeth\nCora\nElla\nErnestine\nIsabel\nMarian\nTrudy\nAgnes\nAndrea\nBette\nDawn\nEmily\nErma\nFrankie\nGladys\nGlenna\nHazel\nIlene\nJacquelyn\nJenny\nLeona\nLorna\nPenelope\nSharyn\nThelma\nValerie\nVera\nBeverley\nBobbie\nCandice\nCelia\nCharla\nDiann\nDora\nErlinda\nFrancine\nGwendolyn\nHenrietta\nKarla\nLee\nLupe\nMadeline\nMargo\nMarianne\nMarla\nNina\nNora\nPam\nRegina\nRobin\nTina\nVelma\nCherie\nCorrine\nDarla\nDelia\nEmma\nGenevieve\nGwen\nIris\nJamie\nJerry\nJody\nLena\nLonnie\nLucinda\nMarilynn\nMichelle\nMiriam\nNadine\nNaomi\nRosemarie\nSherrill\nTeri\nTerrie\nViolet\nYolanda\nAlberta\nAmy\nAngie\nAntoinette\nBetsy\nCathie\nCathleen\nChris\nConsuelo\nDella\nHarriet\nHolly\nJeanie\nJeannette\nJeri\nJudi\nJudie\nKarol\nKatie\nKimberly\nLola\nMable\nMarion\nMelinda\nMeredith\nMonica\nOlga\nPatti\nRhonda\nRosa\nSaundra\nViola\nAdrienne\nAmelia\nAngela\nAngelina\nAnnabell\nArleen\nAudrey\nBonita\nCandy\nCeleste\nCherryl\nDee\nDian\nDona\nElena\nEstella\nEunice\nFlora\nGinger\nIrma\nJanette\nJessie\nJohanna\nKaron\nKarren\nKatheryn\nKaye\nKristin\nLenora\nLila\nLora\nLuana\nLyn\nMabel\nMagdalena\nMarguerite\nMelanie\nMelba\nMercedes\nNellie\nNikki\nNona\nOpal\nRae\nRena\nRoxie\nSadie\nShannon\nSondra\nSuzan\nLinda\nMary\nPatricia\nBarbara\nCarol\nSusan\nSharon\nSandra\nNancy\nKaren\nDonna\nKathleen\nJudith\nJudy\nJanet\nPamela\nCheryl\nShirley\nMargaret\nJanice\nCarolyn\nCynthia\nGloria\nBetty\nDiane\nKathy\nMarilyn\nDiana\nBeverly\nVirginia\nJoyce\nConnie\nCatherine\nPeggy\nBonnie\nElizabeth\nFrances\nKatherine\nTheresa\nChristine\nDorothy\nDeborah\nJoan\nVicki\nPhyllis\nRuth\nHelen\nMartha\nRose\nAnn\nLorraine\nPaula\nRebecca\nSherry\nKathryn\nJean\nSue\nAlice\nJo\nJane\nMarsha\nRoberta\nSally\nCathy\nDarlene\nCharlotte\nGail\nAnita\nMarcia\nLaura\nEvelyn\nLynda\nMarie\nElaine\nDolores\nDebra\nJulie\nTeresa\nJuanita\nLoretta\nDianna\nJosephine\nNorma\nPatsy\nRita\nCarla\nCharlene\nGeraldine\nVictoria\nJeanne\nMaria\nIrene\nLynn\nConstance\nJacqueline\nLois\nSheryl\nWanda\nDianne\nGlenda\nJoann\nTerry\nClaudia\nLouise\nKay\nLeslie\nSheila\nBrenda\nDoris\nGayle\nAnne\nEsther\nMarjorie\nStella\nVickie\nAnna\nCarmen\nJulia\nMarlene\nSuzanne\nYvonne\nPriscilla\nGeorgia\nPenny\nCarole\nJune\nPauline\nColleen\nEllen\nRegina\nRuby\nSarah\nSylvia\nDelores\nEileen\nRosemary\nJeanette\nPatty\nBillie\nEva\nJackie\nJoanne\nMaxine\nRosie\nLucille\nLydia\nRosalie\nBecky\nBernice\nDeanna\nGrace\nLillian\nMaureen\nToni\nVeronica\nJennifer\nPaulette\nArlene\nCandace\nCecilia\nLynne\nMarcella\nRamona\nSandy\nStephanie\nAlberta\nAngelina\nCindy\nLana\nMarianne\nVivian\nChristina\nFlorence\nJeannette\nJeannie\nLaurel\nMildred\nPat\nBernadette\nBertha\nCaroline\nClara\nEleanor\nEmily\nJoy\nValerie\nCheri\nDebbie\nDixie\nJanis\nLeona\nLola\nNora\nPam\nSharron\nWendy\nWilma\nYolanda\nEdith\nEdna\nGretchen\nHazel\nJan\nJanie\nJennie\nJill\nJosie\nLucy\nMadeline\nMargie\nMarian\nMaryann\nMichelle\nMyrna\nSherrie\nTrudy\nVera\nViola\nAudrey\nBeth\nKarla\nMelody\nMyra\nPenelope\nSara\nAndrea\nAngela\nBeatrice\nBette\nDella\nFaye\nHenrietta\nIda\nJacquelyn\nJenny\nJody\nMelanie\nTerri\nVelma\nVerna\nVicky\nAlma\nAnnette\nBonita\nCecelia\nDona\nElsie\nGladys\nGlenna\nKristine\nLorna\nLupe\nMargo\nNina\nOlivia\nRobin\nAntoinette\nBessie\nBetsy\nCathie\nDenise\nDora\nEmma\nErma\nFrancine\nGenevieve\nGwen\nInez\nKarin\nKatharine\nLee\nLila\nLucinda\nLynette\nMarla\nRenee\nSherri\nThelma\nAmy\nArleen\nBernadine\nCelia\nCherie\nColeen\nCora\nDarla\nErlinda\nFlora\nGale\nGwendolyn\nJanell\nJolene\nLaverne\nMarguerite\nMarion\nMichele\nMiriam\nNadine\nNaomi\nPearl\nRae\nSheri\nSonja\nSusanne\nTina\nUnknown\nAgnes\nAnnie\nChris\nDee\nDoreen\nElla\nErnestine\nGinger\nHarriet\nHope\nIrma\nIsabel\nJacque\nJessie\nKerry\nLela\nLenore\nLouella\nMabel\nMargarita\nMarva\nMelinda\nMyrtle\nPatti\nRachel\nSusie\nAlana\nAmelia\nAngie\nBettie\nBobbie\nCandice\nCarlotta\nCathleen\nCathrine\nCharla\nCherry\nCherryl\nCleo\nDaisy\nDale\nDawn\nEdwina\nEthel\nEunice\nGay\nGertrude\nIris\nJana\nJanelle\nJudi\nJulianne\nKaron\nKatheryn\nKristin\nLaurie\nLora\nLorene\nMarietta\nMarilee\nMarylou\nMercedes\nMerry\nMichael\nMinnie\nMonica\nNellie\nNita\nPennie\nPhoebe\nRhonda\nRobyn\nRonda\nRosa\nRoseann\nRosemarie\nSandi\nShari\nSharla\nShelley\nShirlee\nSondra\nSuzette\nTeri\nTwila\nLinda\nMary\nPatricia\nBarbara\nSusan\nSharon\nCarol\nSandra\nKathleen\nNancy\nKaren\nDonna\nCynthia\nJudy\nJudith\nMargaret\nShirley\nCheryl\nPamela\nJanet\nDeborah\nDiane\nConnie\nDiana\nBeverly\nElizabeth\nGloria\nJanice\nBetty\nCarolyn\nMarilyn\nPeggy\nChristine\nCatherine\nKathy\nKathryn\nVirginia\nJoyce\nKatherine\nBonnie\nDorothy\nVicki\nTheresa\nMartha\nRebecca\nFrances\nRuth\nSherry\nAlice\nPaula\nHelen\nRita\nClaudia\nMarie\nJean\nJane\nRose\nCathy\nSally\nElaine\nDebra\nAnn\nGail\nEvelyn\nPhyllis\nGeraldine\nJoan\nRoberta\nLaura\nMarcia\nLynda\nLynn\nTerry\nCharlene\nTeresa\nJuanita\nAnita\nJo\nLoretta\nMarsha\nBrenda\nSylvia\nAnna\nLois\nVictoria\nConstance\nDarlene\nLorraine\nMaria\nSue\nCharlotte\nDolores\nJacqueline\nJoann\nLouise\nGlenda\nIrene\nLeslie\nEllen\nGeorgia\nJosephine\nCarmen\nEileen\nJulie\nRosemary\nSuzanne\nWanda\nDianne\nYvonne\nCarla\nKay\nNorma\nJeanette\nJeanne\nSheila\nCecilia\nEsther\nJulia\nRhonda\nVickie\nDoris\nJennifer\nMaureen\nSheryl\nValerie\nMarlene\nPenny\nColleen\nPatsy\nDeanna\nJoanne\nMarjorie\nRosalie\nCindy\nJanis\nMargie\nRamona\nAndrea\nAnne\nDianna\nEva\nLynne\nPriscilla\nWendy\nBernice\nChristina\nDenise\nPatty\nEdna\nSarah\nVivian\nLana\nStephanie\nJill\nLucille\nStella\nArlene\nBeth\nCarole\nDelores\nEleanor\nGayle\nMelanie\nNora\nPaulette\nPauline\nRuby\nVeronica\nAnnette\nEdith\nJeannette\nLillian\nBeatrice\nDixie\nMildred\nToni\nVicky\nWilma\nCheri\nDana\nJan\nJanelle\nJoy\nMarianne\nMichelle\nRegina\nBecky\nBillie\nClara\nEmily\nJeannie\nJune\nLucy\nLydia\nMelody\nSandy\nSherrie\nViola\nBernadette\nGwendolyn\nJackie\nLynette\nMaxine\nRosie\nSheri\nAngela\nEmma\nGlenna\nJanie\nKathie\nLee\nLucinda\nMelissa\nMichele\nThelma\nAmy\nCecelia\nCherie\nDebbie\nElsie\nGrace\nHazel\nJennie\nKerry\nKristine\nMarcella\nMargo\nPenelope\nRachel\nTherese\nTrudy\nAnnie\nCaroline\nCathleen\nDawn\nDella\nDiann\nErnestine\nFlorence\nGay\nIda\nKarla\nMaryann\nMolly\nPearl\nRenee\nRobin\nTerri\nTwila\nVelma\nAlberta\nAngelina\nAngie\nAntoinette\nBelinda\nCandace\nGladys\nGwen\nHolly\nJacquelyn\nJanette\nJeanie\nJosie\nLynnette\nMarguerite\nMyra\nNaomi\nOlivia\nRonda\nSara\nSharron\nSusie\nTina\nVera\nYolanda\nBertha\nBobbie\nCarrie\nColeen\nDona\nElla\nGeneva\nGenevieve\nGretchen\nInez\nIsabel\nJanell\nKimberly\nKitty\nLeona\nLou\nLupe\nMadeline\nMelinda\nRobyn\nShannon\nSydney\nTanya\nAnnabelle\nBette\nBonita\nCelia\nChristy\nCorinne\nCrystal\nDarla\nDee\nEthel\nGale\nHarriet\nHenrietta\nJanine\nJeri\nKathrine\nKatie\nLila\nLora\nMeredith\nMona\nPat\nRosa\nShari\nShelley\nSonja\nTerrie\nAdeline\nAleta\nAmelia\nBetsy\nBeverley\nCamille\nCandice\nCandy\nCathie\nCharla\nCheryle\nDeanne\nDora\nDoreen\nErlinda\nEstella\nFaye\nFrancine\nGaylene\nGinger\nHilda\nIris\nJeannine\nJenny\nJoanna\nKaron\nLadonna\nLaurel\nLaurie\nLena\nLyn\nMarcie\nMargarita\nMarilynn\nMarion\nMelva\nMuriel\nNadine\nNicki\nNola\nPatti\nRena\nRhoda\nRosella\nRosemarie\nRosita\nRoxie\nSadie\nSuzan\nTeri\nVerna\nLinda\nMary\nPatricia\nSusan\nBarbara\nSharon\nCarol\nKaren\nKathleen\nSandra\nNancy\nDeborah\nCynthia\nDonna\nMargaret\nPamela\nJanet\nJudith\nJudy\nCheryl\nShirley\nDiane\nDiana\nConnie\nJanice\nGloria\nChristine\nElizabeth\nBonnie\nRebecca\nBeverly\nMarilyn\nCarolyn\nBetty\nCatherine\nDebra\nPeggy\nJoyce\nKathryn\nVirginia\nKatherine\nKathy\nDorothy\nSally\nPaula\nFrances\nGail\nJoan\nMartha\nRita\nVictoria\nAlice\nRuth\nTheresa\nPhyllis\nRose\nJane\nAnn\nLoretta\nVicki\nBrenda\nLynn\nJoann\nDarlene\nElaine\nIrene\nMarsha\nSherry\nCathy\nMarie\nJulie\nHelen\nLorraine\nTeresa\nVickie\nRoberta\nWanda\nGeraldine\nLaura\nSheryl\nConstance\nMaria\nSuzanne\nAnna\nJo\nSue\nTerry\nClaudia\nCharlotte\nJacqueline\nJeanne\nAnita\nDianne\nJean\nLynda\nEllen\nSheila\nCarla\nColleen\nMarcia\nVeronica\nGlenda\nMarlene\nKay\nRhonda\nStephanie\nJosephine\nSylvia\nCharlene\nJeanette\nEvelyn\nLeslie\nYvonne\nBeth\nDolores\nJanis\nLois\nDianna\nGeorgia\nJoanne\nLouise\nLynne\nEileen\nMarjorie\nPauline\nPriscilla\nRobin\nRosemary\nAnne\nDenise\nEsther\nJennifer\nRamona\nBecky\nBernadette\nJulia\nPatsy\nTerri\nValerie\nVicky\nAnnette\nDoris\nJan\nJuanita\nPenny\nSarah\nWilma\nCarmen\nChristina\nEva\nGayle\nMichelle\nEleanor\nGwendolyn\nJacquelyn\nLucy\nMaureen\nRegina\nShelley\nVivian\nLillian\nLydia\nRosalie\nWendy\nAngela\nCandace\nCarole\nDebbie\nJoy\nLaurel\nLucille\nNorma\nSara\nCindy\nClara\nDeanna\nDelores\nEmily\nTrudy\nAndrea\nArlene\nBillie\nGrace\nJanie\nJill\nJolene\nMargie\nPaulette\nStella\nAmy\nDana\nJune\nRosie\nRuby\nAngelina\nEdith\nIda\nMarcella\nMarla\nMaxine\nVera\nYolanda\nAudrey\nCaroline\nJeannie\nKerry\nKristine\nLana\nMarianne\nMaryann\nMelody\nCathleen\nCecilia\nDora\nJackie\nKarla\nMarilynn\nMona\nNadine\nNora\nPatty\nVerna\nElsie\nGlenna\nIsabel\nLucinda\nLyn\nMelanie\nMichele\nSusie\nToni\nBernice\nCheri\nDawn\nFaye\nFlorence\nJanette\nJody\nLisa\nLynette\nMarian\nMonica\nRosa\nBeatrice\nCecelia\nDixie\nEmma\nGenevieve\nGuadalupe\nHazel\nHolly\nIrma\nJoanna\nKimberly\nMildred\nMyrna\nPatrice\nRoseanna\nRosemarie\nShari\nThelma\nTherese\nViola\nAngie\nBonita\nCandice\nCherie\nDarla\nDella\nGretchen\nJeannine\nJessie\nLola\nLora\nLupe\nMadeline\nMarguerite\nNona\nPamala\nPenelope\nRachel\nRobyn\nShannon\nBertha\nDiann\nDona\nGeneva\nGladys\nJeanie\nLavonne\nLeanna\nLena\nMelissa\nNaomi\nNina\nSallie\nAntoinette\nAntonia\nBelinda\nBette\nCeleste\nColeen\nConsuelo\nCorinne\nCrystal\nDee\nDoreen\nElise\nErnestine\nFlora\nHope\nIlene\nInez\nIona\nIsabell\nJamie\nJennie\nKatheryn\nKathie\nLeah\nLeona\nMarilee\nMarta\nMelinda\nMeredith\nMyra\nPatti\nRenee\nRoxanne\nSandy\nSheri\nSherri\nSusanna\nSydney\nTamara\nTeri\nTerrie\nTina\nValorie\nAnnie\nArdith\nBobbie\nCathryn\nCelia\nCharla\nCharmaine\nChristy\nClaire\nElla\nEthel\nEunice\nGaye\nGertrude\nHelena\nIris\nJanelle\nJenny\nJessica\nKaron\nKathrine\nKim\nKristi\nLaurie\nLela\nLenore\nLetha\nLila\nLillie\nLorena\nLorene\nLouella\nMarion\nMaryjane\nMickey\nMollie\nNatalie\nNellie\nNita\nOlivia\nOpal\nPearl\nPennie\nRanda\nSharman\nSharron\nShelly\nSherryl\nVonnie\nLinda\nMary\nPatricia\nDeborah\nSusan\nBarbara\nKaren\nSandra\nNancy\nKathleen\nDebra\nCarol\nSharon\nDonna\nCynthia\nPamela\nJanet\nMargaret\nJudith\nCheryl\nDiane\nJudy\nShirley\nGloria\nElizabeth\nKatherine\nCatherine\nPeggy\nJanice\nChristine\nKathy\nRebecca\nDiana\nCarolyn\nMarilyn\nVicki\nBonnie\nVirginia\nKathryn\nConnie\nBeverly\nLaura\nJoyce\nGail\nBetty\nVictoria\nDorothy\nTheresa\nMartha\nPaula\nRose\nTeresa\nJoan\nRuth\nSherry\nHelen\nCharlotte\nJane\nRoberta\nSally\nAnn\nElaine\nRita\nFrances\nJacqueline\nAlice\nCathy\nJean\nWanda\nLorraine\nPhyllis\nLynn\nMarsha\nConstance\nJulie\nMarie\nTerry\nJoann\nKay\nJo\nCindy\nMaria\nVickie\nEvelyn\nLoretta\nEllen\nGeraldine\nGlenda\nIrene\nSheila\nLynda\nMarcia\nColleen\nDenise\nDarlene\nPenny\nJeanne\nAnita\nAnna\nClaudia\nGeorgia\nLois\nMarlene\nBrenda\nCarla\nCharlene\nStephanie\nSue\nJeanette\nJennifer\nDolores\nJan\nJoanne\nLeslie\nPatsy\nRamona\nRhonda\nRosemary\nSuzanne\nMarjorie\nAnne\nNorma\nPauline\nRobin\nSheryl\nDebbie\nDianna\nEsther\nSylvia\nYvonne\nChristina\nJuanita\nPriscilla\nBecky\nDoris\nGayle\nJosephine\nKristine\nRuby\nDianne\nEileen\nJill\nJulia\nMichele\nRosalie\nEva\nLana\nLaurie\nSarah\nShelley\nDeanna\nLouise\nAngela\nAnnette\nBernadette\nEdith\nIda\nJackie\nMichelle\nMonica\nVeronica\nWendy\nJanis\nJune\nLucille\nMelody\nToni\nVicky\nArlene\nBillie\nCarmen\nCarole\nDelores\nJennie\nJoy\nLori\nRegina\nDebora\nPatty\nTerri\nValerie\nBelinda\nBeth\nCecilia\nDana\nJacquelyn\nLillian\nMargie\nMaureen\nStella\nCandace\nClara\nDixie\nEleanor\nJanette\nKarla\nMaxine\nRachel\nVerna\nJanelle\nJeannie\nLynne\nMargo\nRenee\nVivian\nAndrea\nDora\nEmily\nEmma\nGwendolyn\nHolly\nLeona\nSherri\nTamara\nVera\nYolanda\nAmy\nCaroline\nCathleen\nGlenna\nKathie\nLucy\nMarcella\nMona\nMyrna\nSara\nWilma\nBeatrice\nCheri\nGretchen\nIsabel\nKim\nLaurel\nLisa\nLucinda\nOlivia\nPaulette\nPenelope\nViola\nBertha\nDella\nDiann\nIrma\nJamie\nJody\nMelinda\nNora\nPatrice\nPatti\nRosa\nRoxanne\nSandy\nSherrie\nAlberta\nBernice\nCandice\nDawn\nFlorence\nGladys\nGrace\nJenny\nLora\nLynette\nMarcy\nMarla\nMaryann\nMelanie\nNaomi\nSheri\nAntoinette\nCharla\nColeen\nDee\nEdna\nElla\nErnestine\nGuadalupe\nIris\nJeanie\nJeannette\nJoanna\nKatharine\nKerry\nKristi\nLeanna\nLorna\nLupe\nLydia\nMarian\nMarianne\nMeredith\nAlma\nAntonia\nBetsy\nBette\nBonita\nCherie\nDarla\nEloise\nGale\nHazel\nJana\nJeri\nJessica\nJolene\nKatheryn\nKristina\nLavonne\nLee\nLola\nLou\nLynnette\nMarilynn\nMiriam\nMolly\nNadine\nNellie\nNona\nRosie\nShannon\nSusie\nTrudy\nAnnie\nApril\nBettie\nCarrie\nCecelia\nCelia\nChristy\nCorinne\nDebrah\nDelia\nFaith\nFlora\nGenevieve\nJacque\nJessie\nKarin\nKelly\nKristie\nKristin\nLeah\nLena\nLinnea\nLuanne\nLuz\nMadeline\nMari\nMarylou\nMindy\nRochelle\nRonda\nRosemarie\nShelly\nTanya\nTerrie\nThelma\nTherese\nTina\nTwila\nVelma\nAgnes\nAna\nAngie\nAva\nBobbie\nBonny\nCassandra\nChristie\nConsuelo\nCorrine\nDebby\nDona\nEthel\nEunice\nGina\nHarriet\nHeather\nHeidi\nIlene\nJeannine\nJudi\nKaye\nKendra\nKimberly\nKristen\nLeann\nMarion\nMyra\nNelda\nRae\nRandi\nRobyn\nRuthann\nShari\nSydney\nTeri\nVikki\nLinda\nMary\nPatricia\nDebra\nSusan\nDeborah\nBarbara\nKaren\nKathleen\nNancy\nCynthia\nSandra\nCarol\nSharon\nDonna\nPamela\nJanet\nChristine\nJudith\nDiane\nMargaret\nCheryl\nElizabeth\nKathy\nShirley\nDiana\nCatherine\nJudy\nConnie\nRebecca\nJanice\nKatherine\nBetty\nCarolyn\nMarilyn\nKathryn\nVicki\nGloria\nLaura\nBeverly\nTheresa\nJoan\nPeggy\nVirginia\nGail\nJoyce\nBonnie\nPaula\nRuth\nMartha\nVictoria\nRose\nRoberta\nAnn\nHelen\nJane\nAlice\nSherry\nDorothy\nJean\nJo\nTeresa\nVickie\nBrenda\nCathy\nJulie\nRita\nDenise\nDarlene\nRhonda\nAnne\nFrances\nJacqueline\nValerie\nElaine\nDolores\nEvelyn\nLynn\nSally\nAnita\nTerry\nCharlotte\nMarcia\nColleen\nIrene\nPhyllis\nConstance\nLois\nWanda\nCarla\nEllen\nRobin\nStephanie\nCharlene\nLaurie\nLorraine\nDianne\nLynda\nSuzanne\nJoann\nKay\nMaria\nMarie\nGlenda\nLoretta\nAnna\nGeraldine\nJeanne\nJoanne\nKristine\nMarsha\nTerri\nJosephine\nJuanita\nCindy\nJennifer\nLeslie\nMichele\nJeanette\nVeronica\nGayle\nYvonne\nDebbie\nDianna\nJill\nJulia\nMarjorie\nNorma\nSheryl\nClaudia\nLouise\nMarlene\nPenny\nSheila\nDoris\nEsther\nJan\nSue\nBecky\nDana\nLisa\nLynne\nMichelle\nRamona\nRosemary\nAnnette\nCandace\nCarmen\nRosalie\nRuby\nAmy\nGeorgia\nJackie\nRegina\nSylvia\nVicky\nWendy\nChristina\nLillian\nMaureen\nShelley\nToni\nDeanna\nDelores\nEileen\nEleanor\nGrace\nJeannette\nPatti\nBillie\nYolanda\nBeth\nEva\nLucille\nMelanie\nSarah\nArlene\nDebora\nJody\nMaxine\nPatsy\nPauline\nVerna\nAndrea\nEmily\nKim\nKimberly\nPatty\nPriscilla\nRoxanne\nSara\nBernadette\nCecilia\nJanis\nLee\nLucy\nLynette\nSherri\nAudrey\nBeatrice\nCheri\nJanette\nLana\nMelody\nTina\nWilma\nDora\nElla\nJoy\nKarla\nKristin\nStella\nAngela\nCathleen\nDee\nIsabel\nJeannie\nJennie\nMargie\nMelinda\nNadine\nRenee\nVivian\nCandice\nClara\nDixie\nEdna\nGladys\nHolly\nJamie\nLori\nMarcella\nMarla\nMonica\nNaomi\nPatrice\nRonda\nShannon\nTrudy\nBernice\nCarrie\nCherie\nFlorence\nGwen\nJacquelyn\nJune\nLaurel\nLydia\nMelissa\nNora\nViola\nAngelina\nApril\nBonita\nDawn\nGay\nGinger\nJanelle\nKathie\nOlivia\nRobyn\nSuzan\nTeri\nThelma\nAlberta\nCaroline\nCharmaine\nCrystal\nEdith\nFaye\nHope\nJanie\nJeanine\nJenny\nJessica\nKristy\nMargo\nMaryann\nRachel\nSheri\nSherrie\nTamara\nAlma\nAmelia\nBelinda\nCathryn\nChristy\nDella\nGeneva\nHenrietta\nIris\nJana\nJeri\nJolene\nLorna\nMeredith\nMona\nNina\nPamala\nPaulette\nPearl\nPenelope\nAntoinette\nBetsy\nBette\nCeleste\nCharla\nChris\nDale\nDarla\nDona\nErnestine\nEthel\nGlenna\nGwendolyn\nHazel\nIda\nJanell\nJerri\nLeah\nLena\nLeona\nLucinda\nMarcie\nMarianne\nMarta\nNita\nSusie\nTwila\nVera\nAdele\nAgnes\nAlison\nAmanda\nBertha\nCinda\nCora\nDaisy\nDiann\nElsie\nGale\nGertrude\nGretchen\nGuadalupe\nHeidi\nJacque\nJanine\nJoanna\nKatharine\nKerry\nKristina\nLadonna\nLillie\nLou\nLynnette\nMildred\nMolly\nMyrna\nNoreen\nPam\nRhoda\nRochelle\nRosa\nRosemarie\nRosie\nSydney\nTherese\nTracy\nValorie\nWilla\nAlana\nAngie\nArleen\nCarole\nCecelia\nColette\nCorinne\nElena\nEloise\nFrancine\nGina\nHeather\nHelene\nInez\nKathi\nLeanna\nLeta\nLora\nLupe\nMarcy\nMarion\nMarty\nNellie\nNicki\nNicolette\nOlga\nPolly\nRene\nRosalind\nSadie\nSandy\nSharron\nSonja\nSophie\nTerrie\nValarie\nViolet\nLinda\nMary\nDebra\nPatricia\nDeborah\nSusan\nBarbara\nKaren\nSandra\nCynthia\nKathleen\nNancy\nSharon\nPamela\nCarol\nDonna\nJanet\nDiane\nJudy\nChristine\nMargaret\nCheryl\nJudith\nElizabeth\nRebecca\nConnie\nKathy\nJanice\nMarilyn\nGloria\nTheresa\nPaula\nShirley\nDiana\nPeggy\nCatherine\nBeverly\nKathryn\nJoyce\nBetty\nKatherine\nGail\nLaura\nRuth\nVirginia\nCarolyn\nRose\nTeresa\nBonnie\nJulie\nSherry\nBrenda\nVictoria\nJo\nVickie\nAnn\nVicki\nCindy\nMartha\nSally\nJane\nDorothy\nFrances\nHelen\nJacqueline\nJean\nJoan\nRhonda\nDenise\nTerri\nEllen\nRoberta\nRobin\nAnita\nValerie\nLeslie\nDebbie\nMarie\nPhyllis\nRita\nSherri\nSheryl\nTerry\nMaria\nAlice\nAnne\nCathy\nMarsha\nElaine\nDarlene\nLynn\nCharlotte\nColleen\nGeraldine\nLorraine\nAnna\nLoretta\nSuzanne\nCharlene\nJennifer\nMarcia\nSheila\nMichelle\nKristine\nDolores\nEvelyn\nLois\nSue\nWanda\nJeanne\nJoann\nLynda\nYvonne\nCarla\nGlenda\nIrene\nJeanette\nJuanita\nStephanie\nConstance\nBecky\nKim\nGayle\nJulia\nLouise\nRosalie\nJan\nJill\nMarlene\nEsther\nKay\nSarah\nSylvia\nWendy\nDianna\nNorma\nPenny\nToni\nAndrea\nDoris\nLaurie\nLisa\nCheri\nChristina\nClaudia\nDianne\nGeorgia\nJackie\nMarjorie\nJoanne\nVivian\nAngela\nKarla\nLucille\nPatty\nPauline\nRegina\nDelores\nJamie\nLori\nMaureen\nPatti\nRenee\nRosemary\nShelley\nEileen\nLynne\nVicky\nDawn\nLydia\nLynette\nBillie\nCandace\nHolly\nMelody\nMichele\nPatsy\nRamona\nDana\nJoy\nRachel\nSherrie\nBernadette\nCarmen\nGwendolyn\nMelissa\nBetsy\nCarrie\nGrace\nJosephine\nLillian\nSheri\nAmy\nArlene\nBelinda\nCecilia\nChristy\nDixie\nJanis\nJennie\nJody\nKimberly\nLee\nMelanie\nNora\nPatrice\nPriscilla\nRuby\nTina\nAnnette\nColette\nEva\nMarcella\nMonica\nShelly\nVeronica\nBernice\nCarole\nEdna\nFlorence\nJeri\nLou\nMarla\nMaxine\nRoxanne\nBeth\nDebora\nDella\nDora\nEdith\nJanette\nJoni\nJune\nMona\nYolanda\nBertha\nEmily\nGenevieve\nHazel\nKerry\nLeona\nLora\nMarian\nStella\nSusie\nTeri\nTerrie\nEmma\nGinger\nGuadalupe\nIda\nJacquelyn\nJanine\nJolene\nKristy\nLucy\nMelinda\nSara\nShannon\nViola\nBridget\nDeanna\nElsie\nErnestine\nHope\nJeanie\nJeannie\nKristin\nLana\nLaurel\nLuann\nLucinda\nMarianne\nMarion\nMildred\nNina\nTamara\nTanya\nTherese\nVera\nAudrey\nCherie\nEleanor\nGlenna\nJana\nJanie\nKristi\nLeann\nLuanne\nMadeline\nMargie\nRosemarie\nTammy\nVerna\nAntoinette\nCaroline\nCathleen\nCeleste\nDale\nDarla\nFaith\nJacque\nJayne\nJeannette\nJeannine\nJessie\nKathie\nKathrine\nLillie\nMargo\nMarguerite\nMarta\nMyrna\nNadine\nOlivia\nPaulette\nPearl\nRochelle\nRonda\nRosa\nSandy\nTracey\nAngelina\nApril\nBette\nBonita\nCassandra\nChris\nColeen\nDee\nDiann\nDoreen\nGayla\nHeather\nIsabel\nJanelle\nKarol\nLeah\nLorene\nLorna\nMarcy\nMarleen\nNaomi\nOlga\nPenelope\nRosie\nSusanne\nValorie\nVelma\nAgnes\nAngie\nAntonia\nBenita\nCandice\nCathie\nCecelia\nChristie\nClara\nDelia\nGay\nGeneva\nJenny\nKarin\nKelly\nKristina\nLena\nLorrie\nLuz\nMindy\nMollie\nMolly\nNannette\nRoxann\nRoxie\nShari\nSuzan\nAdrienne\nAlberta\nAlma\nBeatrice\nBobbie\nCathryn\nCelia\nCleo\nDarcy\nEthel\nFaye\nGale\nGladys\nHeidi\nInez\nIsabelle\nIva\nJanell\nJodi\nJosie\nKristen\nLila\nLorie\nLouann\nLupe\nMargarita\nMari\nMaryann\nMeredith\nMicki\nNanette\nNellie\nNita\nPolly\nRobyn\nRoseann\nSallie\nSaundra\nSherrill\nShirlee\nSonya\nTracy\nTwila\nViolet\nDebra\nMary\nLinda\nDeborah\nSusan\nPatricia\nKaren\nCynthia\nBarbara\nPamela\nNancy\nSandra\nKathleen\nCarol\nSharon\nDonna\nJanet\nRebecca\nDiane\nCheryl\nConnie\nMargaret\nChristine\nElizabeth\nKathy\nJudith\nJudy\nDiana\nTheresa\nMarilyn\nCatherine\nVicki\nKathryn\nPeggy\nJoyce\nShirley\nTeresa\nJanice\nPaula\nGloria\nLaura\nVirginia\nGail\nBrenda\nDenise\nJoan\nBeverly\nRose\nKatherine\nAnn\nBetty\nRobin\nCarolyn\nRhonda\nSherry\nJulie\nMartha\nTerry\nCindy\nRuth\nRita\nRoberta\nTerri\nJean\nVickie\nLorraine\nDebbie\nMichelle\nVictoria\nJo\nHelen\nLeslie\nMaria\nLynn\nCathy\nAnna\nDorothy\nJane\nBonnie\nLaurie\nMarie\nCharlotte\nJennifer\nSheryl\nAlice\nElaine\nValerie\nPhyllis\nAnita\nJacqueline\nMarcia\nSally\nAnne\nFrances\nLisa\nSheila\nJoann\nKim\nWendy\nEvelyn\nLoretta\nMarsha\nCharlene\nGeraldine\nJan\nLori\nLouise\nSherri\nBecky\nCarla\nDawn\nGlenda\nJeanne\nSue\nKimberly\nDianne\nJill\nLois\nRamona\nShelley\nSuzanne\nWanda\nColleen\nDarlene\nMichele\nIrene\nJulia\nMarlene\nArlene\nClaudia\nConstance\nJeanette\nKay\nEllen\nHolly\nYvonne\nGayle\nPenny\nSylvia\nDolores\nMarian\nRenee\nAmy\nMarjorie\nKarla\nLynda\nRoxanne\nDoris\nLucille\nLynette\nMaureen\nVicky\nAndrea\nBeatrice\nBeth\nJody\nJuanita\nMelody\nStephanie\nToni\nVeronica\nDianna\nEsther\nSarah\nDeanna\nJackie\nKristine\nMonica\nNorma\nCarmen\nEileen\nLuann\nAnnette\nDana\nVivian\nCheri\nEdith\nMelanie\nPauline\nRegina\nAngela\nEleanor\nPatti\nYolanda\nCandace\nChristina\nGwendolyn\nJanette\nJosephine\nKristi\nLou\nLydia\nLynne\nMaxine\nRosemary\nTina\nBernice\nGeorgia\nJoanne\nJune\nRosie\nRuby\nApril\nBernadette\nCecilia\nEva\nGina\nGrace\nJanie\nJeannie\nJoy\nMarla\nPatsy\nSherrie\nGale\nJana\nMelinda\nMona\nPriscilla\nStella\nBillie\nCherie\nDixie\nLeona\nMargie\nPatty\nTeri\nWilma\nCaroline\nCathleen\nDelores\nDona\nJoni\nLana\nLillian\nLucy\nSara\nTerrie\nTherese\nTrudy\nAlberta\nCarrie\nEmily\nGinger\nGlenna\nJacquelyn\nLee\nLorna\nRachel\nShelly\nSheri\nAngelina\nAntoinette\nAudrey\nBetsy\nChristy\nDarla\nDebora\nDella\nGretchen\nHeidi\nJennie\nJeri\nJolene\nKathrine\nKerry\nLaurel\nRosanne\nShannon\nCarole\nCecelia\nFlorence\nGay\nJamie\nJanine\nKelly\nLucinda\nMarcella\nMelissa\nNaomi\nNina\nNora\nPatrice\nRandi\nRobyn\nSuzan\nTamara\nVera\nChris\nClara\nElsie\nGayla\nGenevieve\nJeannine\nJenny\nKathie\nLila\nLora\nMaryann\nMildred\nPaulette\nPearl\nRosa\nRosalie\nSandy\nShari\nShauna\nSheree\nTracy\nVerna\nAlicia\nAlma\nAntonia\nBelinda\nBessie\nBonita\nCeleste\nDeanne\nDena\nDoreen\nHope\nJacque\nJanis\nJayne\nJosie\nKathi\nKristina\nLena\nLenora\nLorie\nLuanne\nMargo\nMarion\nMarta\nMyra\nMyrna\nPolly\nSusanne\nTanya\nViola\nBertha\nCandice\nDale\nDeana\nDora\nFaith\nHazel\nHeather\nIda\nJanell\nJeanine\nJerri\nJessica\nJodie\nKimberley\nKrista\nKristen\nLuz\nLynnette\nMari\nMerry\nNadine\nSusie\nAdrienne\nAgnes\nAngie\nBridget\nCandy\nCassandra\nCharla\nCharmaine\nCorrine\nDanielle\nDebby\nDee\nDenice\nEdna\nEmma\nIris\nIrma\nJeanie\nJeannette\nJessie\nKarin\nKatharine\nLeah\nLola\nLoraine\nLorrie\nLyn\nNicki\nNita\nPenelope\nRoseann\nRoxann\nThelma\nTwila\nYvette\nAdele\nAna\nAnnie\nBernadine\nBobbi\nBobbie\nCarrol\nChristi\nChristie\nCora\nCrystal\nDaisy\nEthel\nFay\nGeneva\nGeri\nGuadalupe\nGwen\nIngrid\nIva\nKatheryn\nKaye\nKris\nKristie\nLeanna\nLeanne\nLesley\nLillie\nMarianne\nMindy\nNanette\nNikki\nRae\nRochelle\nRoseanne\nRosemarie\nRoxie\nSallie\nShawn\nSonia\nSonja\nTonia\nTonya\nVelma\nDebra\nLinda\nMary\nSusan\nDeborah\nPatricia\nKaren\nCynthia\nBarbara\nPamela\nNancy\nSandra\nCarol\nSharon\nCheryl\nDonna\nKathleen\nJanet\nDiane\nRebecca\nKathy\nElizabeth\nChristine\nConnie\nTeresa\nDiana\nMargaret\nPaula\nCatherine\nBeverly\nPeggy\nJudy\nDebbie\nKatherine\nVicki\nJanice\nJoyce\nJudith\nTheresa\nDenise\nCindy\nShirley\nBrenda\nKathryn\nLaura\nRose\nJulie\nKim\nSherry\nGloria\nCarolyn\nAnn\nBonnie\nMarilyn\nMichelle\nRobin\nGail\nVirginia\nBetty\nLisa\nValerie\nVickie\nDorothy\nLynn\nRhonda\nTerri\nCathy\nSheila\nKimberly\nRuth\nVictoria\nJoan\nLori\nMarie\nTerry\nRita\nMartha\nHelen\nJane\nLaurie\nElaine\nLeslie\nLoretta\nSally\nJo\nAnna\nRoberta\nJacqueline\nJill\nLorraine\nJean\nFrances\nSheryl\nAnne\nAnita\nJennifer\nCharlene\nSue\nAlice\nChristina\nGlenda\nStephanie\nTina\nMaria\nPhyllis\nYvonne\nCarla\nConstance\nRamona\nColleen\nJuanita\nDarlene\nMarsha\nEllen\nJeanne\nMarcia\nBecky\nPenny\nSuzanne\nKay\nMichele\nVicky\nClaudia\nDoris\nGeraldine\nDianne\nJeanette\nCharlotte\nMarlene\nToni\nWendy\nBernadette\nGayle\nHolly\nRenee\nAmy\nJoann\nMelody\nShelley\nVeronica\nIrene\nJoanne\nAndrea\nLouise\nEva\nJulia\nSherri\nAngela\nDawn\nEsther\nEvelyn\nJackie\nJoni\nLynne\nMaureen\nMelanie\nNorma\nSylvia\nCheri\nJody\nJoy\nLois\nRegina\nRuby\nTracy\nBeth\nDianna\nJune\nKarla\nPriscilla\nDana\nJan\nMarla\nWanda\nApril\nArlene\nEileen\nRoxanne\nSheri\nDebora\nGina\nKristi\nSarah\nCarmen\nDeanna\nJanis\nLuann\nAnnette\nDolores\nGinger\nLee\nMarjorie\nChristy\nLou\nLynette\nRosalie\nSandy\nHeidi\nKristine\nMarianne\nPatti\nShelly\nYolanda\nEdna\nJana\nLucille\nLucy\nMelissa\nMona\nTrudy\nVivian\nBertha\nCherie\nEleanor\nGeorgia\nJanine\nLillian\nMargie\nMaxine\nMelinda\nMonica\nPatty\nPauline\nRachel\nRosemarie\nSara\nShannon\nTanya\nCandace\nJanette\nPatsy\nRosemary\nTeri\nTherese\nAlberta\nCathleen\nClara\nDarla\nDixie\nIsabel\nJanna\nJeannie\nLydia\nCrystal\nDelores\nGayla\nJeannette\nJosephine\nKerry\nLaurel\nLeann\nLucinda\nPenelope\nRene\nTerrie\nAudrey\nCorinne\nDoreen\nEdith\nEmily\nGrace\nGwendolyn\nJennie\nLynda\nNora\nPam\nPaulette\nRonda\nBetsy\nCaroline\nChris\nDee\nFlorence\nJamie\nJanelle\nJanie\nKristie\nLynnette\nNadine\nNina\nSherrie\nSuzan\nTamara\nBelinda\nBernice\nCandice\nDella\nEmma\nGladys\nJacquelyn\nJeri\nMarcella\nMarian\nMaryann\nMildred\nNita\nStella\nSusie\nVera\nWilma\nAgnes\nBonita\nCarole\nCarrie\nCecilia\nDarcy\nDora\nGale\nHeather\nJayne\nJeanie\nKarin\nLuz\nMindy\nPatrice\nRae\nShauna\nSheree\nTracey\nVerna\nAngie\nBillie\nCecelia\nCora\nDena\nDona\nErnestine\nGay\nHenrietta\nJeanine\nJeannine\nJessie\nKatharine\nKristy\nLea\nLorie\nLorna\nLorrie\nLuanne\nMari\nMarta\nRoxanna\nShari\nVanessa\nChristie\nColeen\nDeana\nEunice\nGlenna\nGretchen\nIda\nJodi\nJolene\nKathie\nKris\nKristina\nLeona\nLeta\nLola\nMargarita\nMargo\nMiriam\nMyra\nPearl\nRobyn\nRosie\nThelma\nValorie\nAda\nAmelia\nAntoinette\nBeatrice\nBobbi\nChristi\nColette\nCorrine\nDeanne\nDeena\nElsie\nGeralyn\nHazel\nJenny\nJerri\nKathi\nKathrine\nKaye\nKelli\nKendra\nKristen\nLana\nLeah\nLeanne\nLeslee\nLesley\nLupe\nMadeline\nMarguerite\nNanette\nPolly\nRochelle\nRoni\nRoseann\nShawn\nSheron\nTwila\nVal\nViola\nAngelina\nAntonia\nBarbra\nBeckie\nCarey\nCeleste\nCherryl\nCollette\nDeann\nDebby\nDesiree\nElisabeth\nEloise\nFaith\nFrancine\nGenevieve\nGeri\nGracie\nGwen\nHope\nInez\nIris\nJacque\nJessica\nJoanna\nJocelyn\nJodie\nKathern\nKristin\nLouann\nMarcy\nMarilee\nMarion\nMichaela\nMolly\nNeva\nNikki\nOlga\nPatrica\nRandi\nReta\nRosa\nRoxie\nSaundra\nShawna\nSheilah\nShelli\nSherree\nSonia\nSonja\nSophia\nSydney\nTrina\nViolet\nWilla\nDebra\nMary\nLinda\nSusan\nKaren\nPatricia\nCynthia\nDeborah\nSharon\nBarbara\nPamela\nKathleen\nSandra\nNancy\nCarol\nDonna\nCheryl\nRebecca\nJanet\nDiane\nKathy\nCindy\nElizabeth\nDebbie\nConnie\nCatherine\nTeresa\nChristine\nKim\nMargaret\nTheresa\nPaula\nJanice\nJulie\nJudy\nDiana\nKathryn\nRobin\nLisa\nBeverly\nDenise\nLaura\nPeggy\nVicki\nJudith\nTerri\nJoyce\nVictoria\nBrenda\nGail\nShirley\nRose\nVickie\nLori\nMarilyn\nAnn\nCarolyn\nLaurie\nKatherine\nBonnie\nRhonda\nCathy\nKimberly\nRita\nRuth\nSally\nMichelle\nLeslie\nCarla\nGloria\nVirginia\nValerie\nBetty\nSherry\nDarlene\nTerry\nJean\nJoan\nLynn\nLoretta\nSheryl\nJane\nJennifer\nRoberta\nAnnette\nDorothy\nAnita\nJill\nMartha\nHelen\nWanda\nDawn\nSheila\nSherri\nCharlene\nJo\nLorraine\nElaine\nBecky\nStephanie\nAnna\nAngela\nFrances\nMaria\nTina\nJacqueline\nAlice\nAnne\nSuzanne\nDana\nMarie\nMelody\nRenee\nChristina\nColleen\nGlenda\nMarsha\nWendy\nJody\nPenny\nSue\nAmy\nJuanita\nRamona\nGayle\nGeraldine\nJoann\nPhyllis\nYvonne\nDolores\nMarcia\nCharlotte\nHolly\nJeanne\nMarla\nDebora\nJeanette\nRuby\nToni\nAndrea\nEileen\nKay\nArlene\nJoy\nMelanie\nSheri\nTeri\nVeronica\nConstance\nJulia\nKarla\nKelly\nMarlene\nMichele\nSarah\nVicky\nVivian\nGina\nIrene\nDoris\nJan\nShelley\nSherrie\nSylvia\nLynette\nRegina\nAudrey\nBeth\nDianne\nEllen\nEvelyn\nMaureen\nMelissa\nPauline\nRoxanne\nShelly\nJackie\nLynda\nLynne\nMarjorie\nPatti\nRobyn\nHeidi\nJoni\nJosephine\nLee\nCarmen\nEsther\nJoanne\nMonica\nCarrie\nGeorgia\nLois\nLouise\nLuann\nNorma\nRonda\nBernadette\nCandace\nClaudia\nCheri\nJanis\nPatty\nRosemary\nJacquelyn\nJeannie\nJune\nLillian\nYolanda\nEva\nJeannette\nKristi\nTamara\nTracy\nDeanna\nEdith\nEdna\nEleanor\nJana\nJeri\nKristine\nLaurel\nLeona\nLucille\nMelinda\nRosalie\nShannon\nVera\nBelinda\nSusie\nTanya\nTerrie\nViola\nBeatrice\nCarole\nChristy\nDianna\nDora\nDoreen\nGwendolyn\nJamie\nJanine\nJeanie\nPatsy\nPriscilla\nRosa\nSharlene\nBernice\nBertha\nDella\nEmily\nGrace\nKristy\nLana\nLucy\nSara\nDee\nJanette\nJennie\nLorie\nLynnette\nMarianne\nNanette\nAlberta\nCrystal\nGlenna\nGretchen\nJeanine\nMelodie\nMona\nNora\nShari\nTherese\nVanessa\nCaroline\nChris\nChristie\nDarla\nDena\nFrancine\nHazel\nJayne\nKimberley\nMarcella\nMargie\nMildred\nPaulette\nStella\nTracey\nAngelina\nAngie\nAntoinette\nBetsy\nCandy\nCecilia\nDelores\nEmma\nJacque\nJerri\nKerry\nKristina\nLauri\nLorrie\nLou\nLuz\nMargarita\nMarian\nMaryann\nNadine\nPam\nRosanna\nSabrina\nSandy\nStacey\nVerna\nAlicia\nCherie\nDawna\nDeana\nDeann\nDebby\nDixie\nEugenia\nGinger\nGladys\nHeather\nHope\nIda\nJolene\nKathie\nKerri\nLeigh\nLora\nMarcie\nMarguerite\nMarilee\nMaxine\nMolly\nPatrice\nRachel\nRena\nRene\nRosemarie\nTrudy\nVelma\nAdrienne\nApril\nBillie\nBobbie\nBonita\nCandice\nCathryn\nCecelia\nClara\nClaudette\nColette\nDenice\nDesiree\nFlorence\nGale\nGwen\nIsabel\nJanie\nJoanna\nKarin\nKatrina\nKendra\nKristen\nLadonna\nLeanne\nLenora\nLydia\nMarci\nMeredith\nMitzi\nMyra\nNatalie\nPenelope\nPolly\nRandi\nRosie\nShauna\nSusanne\nTammy\nTracie\nTrina\nAgnes\nAlison\nAlma\nBridget\nCeleste\nCherrie\nClaire\nColeen\nDani\nDona\nElla\nErin\nErnestina\nFaith\nGaye\nGaylene\nGenevieve\nGuadalupe\nInez\nJeannine\nJenny\nJessie\nJohanna\nKathrine\nKristin\nLu\nLuanne\nMalinda\nMarcy\nMargo\nMindy\nOlivia\nPamala\nPat\nReba\nRobbie\nRoxann\nRoxie\nShawn\nSheree\nSherrill\nStacy\nTara\nThelma\nTonya\nAmanda\nAmelia\nAntonia\nAva\nCaren\nCarlene\nCathleen\nCelia\nCharmaine\nCherri\nCorrine\nDanita\nDeanne\nDebbra\nDeidre\nDolly\nEdwina\nElsie\nFaye\nGay\nGayla\nGeralyn\nIris\nJanna\nJaye\nJodi\nJodie\nKathlene\nKimberle\nLea\nLeann\nLola\nLorene\nLucinda\nLyn\nMarilynn\nMarina\nMarion\nMarta\nMiriam\nNanci\nNaomi\nNikki\nNina\nNola\nPennie\nRenae\nRochelle\nRonna\nRosanne\nRoseann\nRoxane\nSonia\nSuzan\nValorie\nYvette\nDebra\nMary\nCynthia\nSusan\nLinda\nKaren\nPatricia\nDeborah\nCindy\nBarbara\nPamela\nCheryl\nNancy\nSharon\nSandra\nCarol\nJulie\nKathleen\nDonna\nDebbie\nElizabeth\nJanet\nDiane\nKathy\nDiana\nBrenda\nTeresa\nRebecca\nTheresa\nChristine\nKim\nConnie\nDenise\nLaura\nLori\nLisa\nJudy\nRhonda\nRobin\nCatherine\nAnn\nMargaret\nPeggy\nVicki\nKimberly\nPaula\nKathryn\nLeslie\nMichelle\nTerri\nCarolyn\nKatherine\nRita\nTammy\nBonnie\nJoyce\nValerie\nJudith\nJennifer\nShirley\nGloria\nJane\nRose\nSherry\nTina\nBetty\nCathy\nElaine\nLynn\nVictoria\nVickie\nRoberta\nLaurie\nVirginia\nRenee\nRuth\nJanice\nTerry\nGail\nLorraine\nAnita\nSheryl\nBeverly\nMartha\nStephanie\nHelen\nAnne\nBecky\nSheila\nMarilyn\nAnna\nJoan\nAnnette\nLoretta\nSuzanne\nDarlene\nJill\nAlice\nDana\nJean\nWanda\nEllen\nFrances\nPhyllis\nSherri\nYvonne\nAmy\nCarla\nJacqueline\nMaureen\nColleen\nJulia\nDorothy\nMaria\nCharlene\nDawn\nEvelyn\nJackie\nJo\nMarie\nMonica\nSally\nWendy\nSylvia\nCarrie\nVeronica\nCarmen\nChristina\nGina\nJuanita\nSheri\nSue\nDebora\nJan\nMelody\nPatty\nPenny\nShelley\nIrene\nMelanie\nTracy\nBeth\nCharlotte\nDeanna\nGlenda\nHolly\nJeanette\nJeanne\nKarla\nKay\nMichele\nAndrea\nAudrey\nDianne\nVivian\nGayle\nPatti\nSarah\nMarla\nVicky\nAngela\nEileen\nGeraldine\nJoni\nDolores\nGrace\nJana\nMarcia\nRegina\nTamara\nDianna\nDixie\nDoris\nLois\nPam\nCrystal\nDarla\nJody\nYolanda\nCheri\nJoann\nJoy\nMarianne\nRamona\nTeri\nToni\nClaudia\nConstance\nEva\nJosephine\nLaurel\nMelinda\nMelissa\nPatsy\nSusie\nTami\nMarsha\nChris\nJune\nKelly\nLillian\nLuann\nNorma\nShannon\nSherrie\nBeatrice\nJenny\nJeri\nLynda\nLynne\nPearl\nPriscilla\nLouise\nPauline\nRoxanne\nSandy\nStella\nArlene\nEmily\nGwendolyn\nKristi\nLydia\nRosemary\nRuby\nShelly\nVera\nBelinda\nBernadette\nCandace\nDelores\nEleanor\nGeorgia\nHeidi\nJamie\nJanette\nJanis\nLucy\nMarlene\nRonda\nRosalie\nSara\nHeather\nJeannie\nJoanne\nKristine\nLynette\nMona\nShari\nDoreen\nEsther\nGale\nKarin\nLora\nMarjorie\nBernadine\nBobbie\nChristie\nJeannette\nJennie\nJoanna\nLorna\nLou\nNina\nTerrie\nTracey\nCarole\nCaroline\nCecilia\nKerry\nLeann\nLee\nLynnette\nNadine\nNanette\nNora\nTanya\nVanessa\nBertha\nBillie\nCherie\nDanette\nDeana\nDee\nEdith\nGay\nLauri\nLeanna\nMarcella\nMargie\nMarta\nStacey\nTammie\nAlberta\nAngelina\nApril\nColeen\nElla\nErin\nGwen\nJerri\nJodi\nJolene\nKristie\nKristin\nKristy\nLana\nLeah\nMargo\nMarian\nMitzi\nPolly\nRachel\nRae\nShawn\nAngie\nChristy\nFaye\nGinger\nGretchen\nJanelle\nJanna\nJayne\nKellie\nLorie\nLorri\nLorrie\nLucille\nLucinda\nMaryann\nMaxine\nNatalie\nRobyn\nRosa\nRosie\nTamra\nViola\nWilma\nCandy\nClara\nDona\nDora\nGaylene\nIda\nInez\nIrma\nJacquelyn\nJeannine\nKathie\nKerri\nLavonne\nLiz\nNeva\nPatrice\nPaulette\nRosemarie\nRoxane\nRoxanna\nSonia\nValorie\nAdrienne\nAntoinette\nCarmelita\nCathleen\nDarcy\nDebi\nDella\nEdna\nFlorence\nHazel\nIsabel\nIvy\nJeanie\nJeanine\nKari\nKendra\nLeanne\nLeigh\nLeona\nLorene\nMarina\nMindy\nNaomi\nRandi\nRochelle\nSabrina\nSheree\nTherese\nTrina\nVerna\nBridget\nCamille\nCarlene\nCecelia\nCindi\nClaire\nCorinne\nDena\nDesiree\nDian\nElise\nErnestine\nEstella\nGerri\nGertrude\nHenrietta\nJami\nJanie\nJanine\nJosie\nKaryl\nKathi\nKimberlee\nKimberley\nKris\nKristen\nKristina\nLanette\nLauren\nLena\nLola\nLuanne\nMarcie\nMarguerite\nMarion\nMyrna\nRenae\nRoxann\nSuzan\nThelma\nTonya\nTrudy\nVelma\nVikki\nAdele\nAgnes\nAna\nBambi\nBernice\nCandice\nCassandra\nCathryn\nCharmaine\nChristi\nCollette\nDani\nDanita\nDebby\nDeidre\nEdythe\nElisa\nEmma\nGayla\nGeneva\nIris\nJacque\nJanell\nJocelyn\nKarie\nKaryn\nKaye\nKitty\nLea\nLeeann\nLenora\nLesley\nLorena\nLorretta\nLuz\nMarisa\nMegan\nMerry\nMyra\nNikki\nNita\nPat\nPenelope\nRena\nRene\nRobbin\nRosanna\nSandi\nSharlene\nShawna\nSherie\nSherilyn\nSonja\nStacie\nStacy\nSusanna\nTamera\nTara\nTeena\nTracie\nYvette\nMary\nSusan\nLinda\nDebra\nKaren\nCynthia\nPatricia\nJulie\nDeborah\nBarbara\nPamela\nDebbie\nSharon\nCheryl\nCindy\nNancy\nDonna\nSandra\nKathy\nLisa\nKathleen\nCarol\nElizabeth\nDiane\nTammy\nLori\nBrenda\nJanet\nChristine\nTeresa\nTheresa\nDiana\nLaura\nTerri\nRebecca\nMargaret\nDenise\nCatherine\nJudy\nRhonda\nKim\nConnie\nPeggy\nKimberly\nCathy\nPaula\nMichelle\nRobin\nLeslie\nVicki\nBeverly\nAnn\nLaurie\nValerie\nKelly\nJennifer\nLynn\nBonnie\nCarolyn\nShirley\nSherry\nJanice\nVictoria\nBecky\nKatherine\nKathryn\nJudith\nRuth\nVickie\nMarilyn\nAnna\nRoberta\nTina\nCarla\nAnnette\nJane\nJill\nLoretta\nAnita\nAmy\nGloria\nRose\nTerry\nVirginia\nSheryl\nBetty\nJean\nSheila\nDana\nHelen\nMaria\nDawn\nJoyce\nTamara\nJoann\nCarrie\nColleen\nWanda\nMarie\nWendy\nRenee\nRita\nGail\nJeanne\nLorraine\nDarlene\nJo\nMartha\nSheri\nSuzanne\nBeth\nElaine\nAnne\nVicky\nChristina\nJoan\nAngela\nFrances\nJulia\nSherri\nAndrea\nPhyllis\nTami\nYvonne\nPam\nKay\nMaureen\nMichele\nSue\nVeronica\nEllen\nGlenda\nPatty\nArlene\nJacqueline\nMelanie\nStephanie\nBernadette\nCharlene\nCharlotte\nGina\nMelissa\nSally\nJoanne\nRamona\nSarah\nChris\nDorothy\nJackie\nJody\nPenny\nRegina\nSusie\nJeanette\nMarlene\nShannon\nTracy\nJuanita\nShelley\nEileen\nHolly\nAlice\nDianne\nGayle\nIrene\nJan\nJodi\nMonica\nSandy\nTeri\nToni\nDebora\nGeorgia\nRoxanne\nShelly\nDarla\nDoris\nSara\nChristy\nClaudia\nDeanna\nJolene\nJoy\nMelinda\nNatalie\nNorma\nAudrey\nDianna\nGeraldine\nKarla\nSylvia\nTammie\nCheri\nJoni\nMona\nRuby\nCarmen\nEvelyn\nKristine\nVivian\nErin\nEsther\nEva\nKristi\nMarla\nDolores\nHeidi\nLaurel\nLillian\nLois\nLynda\nYolanda\nChristie\nCrystal\nDelores\nJamie\nLouise\nMelody\nConstance\nLora\nLydia\nMarcia\nMarianne\nMyra\nPatti\nPauline\nRachel\nRosalie\nApril\nBernadine\nBernice\nBillie\nBobbie\nCathleen\nDee\nJeannie\nJennie\nJenny\nLee\nLuann\nMargie\nPatsy\nSherrie\nStacy\nTerrie\nBetsy\nCherie\nDora\nGrace\nJana\nLeona\nLorie\nLorrie\nMaxine\nRonda\nRosemary\nCecilia\nEdith\nKelley\nKelli\nKimberley\nLynette\nLynnette\nMarjorie\nNora\nRobyn\nShari\nBelinda\nEleanor\nEmily\nGinger\nGwen\nJeri\nLeann\nLucy\nLynne\nShawn\nTherese\nTracey\nAllison\nAngie\nBeatrice\nCarole\nDebi\nDixie\nDoreen\nJosephine\nJune\nKendra\nKristen\nLucinda\nPriscilla\nTrudy\nValorie\nCandy\nClara\nDeanne\nGale\nHeather\nJanelle\nJerri\nKerry\nKristin\nLauri\nLorna\nLou\nMarcella\nMaryann\nMitzi\nMolly\nPat\nSonya\nTammi\nTanya\nViola\nAlison\nBridget\nColette\nGwendolyn\nHope\nJanie\nJanine\nJanna\nJeannette\nJeannine\nKathi\nKris\nKristy\nLea\nLiz\nMarsha\nMarta\nMildred\nMindy\nNadine\nNina\nRenae\nRobbin\nRochelle\nRoxanna\nTamera\nAdele\nAmanda\nBarb\nBertha\nCandace\nCassandra\nChristi\nDebby\nDella\nDesiree\nGeri\nGlenna\nJacque\nJacquelyn\nJanette\nJanis\nJoanna\nKari\nKristie\nKristina\nLeigh\nLenora\nLucille\nPatrice\nPolly\nRosemarie\nShauna\nStacey\nStella\nTonya\nVanessa\nAna\nCaroline\nCecelia\nCorrine\nDeana\nDeann\nDeena\nFlorence\nIna\nJanell\nJulianne\nKarin\nLana\nLeah\nLeanne\nLesley\nLesli\nMargo\nMarian\nNaomi\nOlga\nPaulette\nRene\nTamra\nVerna\nAlicia\nAlisa\nCamille\nDanette\nDebbra\nFaith\nGeneva\nGenevieve\nGretchen\nJeanine\nKathie\nKaye\nKellie\nKerri\nKrista\nLouella\nMarci\nMarcie\nMari\nNanette\nRosa\nRoseann\nSabrina\nSandi\nShawna\nSuzan\nSuzette\nTara\nTeena\nThelma\nTraci\nTrina\nTwila\nVanda\nVera\nVikki\nWilma\nAlberta\nAlma\nAmelia\nAnnabelle\nAntoinette\nBrooke\nCara\nCharla\nCharmaine\nDalene\nDiann\nEdna\nElena\nErlinda\nErnestine\nEtta\nGayla\nGisele\nHenrietta\nIris\nIsabel\nIvy\nJami\nJayne\nJewel\nJonna\nJuliann\nKaron\nKatharine\nKirsten\nLani\nLavonne\nLeanna\nLena\nLetitia\nLorri\nLouisa\nLuanne\nMarcy\nMarina\nMyrna\nNikki\nNita\nRonna\nShelli\nSonja\nStarla\nSuzy\nTamela\nTamie\nValarie\nMary\nLinda\nSusan\nKaren\nDebra\nCynthia\nPatricia\nDebbie\nDonna\nLisa\nCindy\nLori\nSandra\nBarbara\nPamela\nKathy\nDeborah\nJulie\nCheryl\nNancy\nKathleen\nDiane\nCarol\nTammy\nSharon\nBrenda\nJanet\nElizabeth\nTeresa\nLaura\nTheresa\nDiana\nRebecca\nTerri\nJudy\nDenise\nMichelle\nRhonda\nKelly\nRobin\nKim\nMargaret\nCatherine\nPeggy\nConnie\nJanice\nKimberly\nValerie\nCathy\nChristine\nDawn\nLaurie\nLeslie\nTina\nPaula\nAnnette\nJoyce\nBecky\nJennifer\nSherri\nVicki\nBeverly\nKatherine\nAnn\nKathryn\nCarolyn\nRenee\nShirley\nCarla\nTerry\nRose\nBetty\nJean\nJill\nMaria\nSheryl\nWendy\nDana\nGloria\nAmy\nAnna\nTamara\nBonnie\nSheila\nCarrie\nTami\nAnita\nRita\nLoretta\nPenny\nSandy\nLynn\nMarilyn\nRoberta\nDarlene\nDorothy\nHelen\nJudith\nSherry\nSuzanne\nElaine\nSally\nPam\nPatty\nVickie\nVirginia\nStephanie\nVictoria\nTracy\nLorraine\nGail\nBeth\nChristina\nJoan\nMartha\nWanda\nAnne\nAngela\nJane\nRuth\nSarah\nAndrea\nColleen\nYvonne\nAlice\nEllen\nJulia\nSue\nBernadette\nGina\nKarla\nVicky\nJoanne\nMichele\nSheri\nHolly\nJoann\nJuanita\nMelissa\nMelody\nVeronica\nDianna\nDianne\nKay\nPhyllis\nShelley\nEvelyn\nFrances\nJackie\nJeanne\nToni\nStacy\nCharlotte\nDeanna\nJo\nJoy\nMonica\nCharlene\nCheri\nIrene\nJacqueline\nMarie\nRegina\nTeri\nJeanette\nJune\nMarcia\nRuby\nDarla\nDebora\nEileen\nGeraldine\nMelanie\nRonda\nTammie\nDolores\nGlenda\nJan\nJoni\nKristi\nLois\nLouise\nJamie\nMarlene\nBelinda\nChristy\nJody\nKristin\nLynne\nMarla\nMelinda\nPatti\nShelly\nSylvia\nTerrie\nAudrey\nGrace\nRosemary\nRoxanne\nShannon\nGayle\nLynette\nMaureen\nCarmen\nHeidi\nJodi\nNorma\nPat\nSusie\nJana\nLynda\nRobyn\nTamra\nYolanda\nChris\nClaudia\nEsther\nGeorgia\nKristine\nMona\nShari\nDoris\nJolene\nLorrie\nMarianne\nRamona\nSherrie\nTherese\nVivian\nArlene\nEva\nHeather\nKendra\nPatsy\nRosalie\nTracey\nAllison\nBridget\nCandace\nDeana\nDebby\nErin\nGinger\nJeanine\nJeannette\nKelli\nLorna\nRosie\nChristi\nConstance\nDora\nEdith\nJanelle\nKellie\nKris\nLillian\nLucy\nVanessa\nAlison\nBillie\nCaroline\nDelores\nGretchen\nJanie\nKristy\nLana\nLaurel\nMarsha\nNaomi\nPriscilla\nStacey\nTammi\nBernice\nCandy\nCrystal\nDee\nJerri\nKarin\nKelley\nKimberley\nLauren\nLeanne\nLou\nNora\nPauline\nRachel\nRochelle\nRosa\nTrudy\nValarie\nAngie\nEmily\nJanis\nJenny\nJosephine\nKristie\nLee\nLeona\nLuann\nNatalie\nRosemarie\nSara\nTamela\nApril\nBobbie\nCassandra\nCherie\nDeanne\nDena\nFlorence\nFreda\nGwen\nIsabel\nJeanie\nKari\nKristen\nLucinda\nLydia\nMarci\nMaryann\nMolly\nRae\nRene\nShauna\nSondra\nYvette\nAntonia\nBetsy\nCandice\nCecilia\nCelia\nChristie\nGayla\nJanine\nJeannie\nJeri\nJuli\nKathi\nLora\nMarian\nMarjorie\nMaxine\nPearl\nRobbin\nShawna\nAlicia\nBeatrice\nCindi\nDanette\nEve\nFaith\nGay\nHope\nJennie\nKatharine\nKerri\nKerry\nLynnette\nMarcie\nMargie\nMarta\nMildred\nNadine\nStarla\nStella\nSuzette\nTamera\nTanya\nTracie\nTrina\nAlberta\nBarb\nBernadine\nBobbi\nBonita\nCarole\nCathleen\nClaire\nCora\nDeann\nDeena\nDella\nDiann\nDoreen\nEleanor\nEmma\nFelicia\nFlora\nGwendolyn\nJanette\nKimberlee\nKitty\nKrista\nKristina\nLadonna\nLaureen\nLauri\nLeann\nLorie\nLupe\nMadeline\nMarcy\nMelodie\nMindy\nPatrice\nSabrina\nSonia\nSonja\nTara\nVal\nViola\nAgnes\nAlisa\nAmanda\nAmelia\nAnnie\nAntoinette\nCecelia\nCharla\nCyndi\nDeidre\nDixie\nElisa\nFaye\nGaylene\nGena\nGenevieve\nGigi\nIda\nJacquelyn\nJanell\nJoanna\nKatrina\nLavonne\nLea\nLeigh\nLena\nLenora\nLesa\nLorene\nLorri\nLucille\nMarcella\nMerri\nMyra\nPaulette\nRenae\nRhoda\nRoxann\nSandi\nShawn\nTammera\nTerese\nTraci\nWilma\nAmber\nAna\nArleen\nCara\nCarmelita\nCeleste\nCharmaine\nCinda\nClara\nCorrine\nDani\nDanita\nDarcy\nDebbra\nDenice\nDesiree\nDian\nDona\nEdna\nElena\nElla\nErica\nEstella\nEthel\nFrancine\nGeralyn\nGeri\nGerri\nGinny\nGlenna\nIngrid\nIvy\nJanna\nJayne\nJeannine\nJodie\nKathie\nKatie\nLeanna\nLenore\nLiz\nLuanne\nMargo\nMegan\nMichael\nNannette\nNikki\nNina\nNita\nPolly\nRena\nRoseann\nRoxie\nSharron\nShelia\nSusanna\nThelma\nValorie\nVera\nMary\nKaren\nSusan\nLinda\nLisa\nDebbie\nDebra\nCynthia\nPatricia\nJulie\nSandra\nLori\nBrenda\nNancy\nBarbara\nCindy\nTammy\nPamela\nDonna\nDeborah\nElizabeth\nLaura\nSharon\nKathy\nCheryl\nCarol\nJanet\nDenise\nDiane\nTeresa\nKathleen\nDiana\nTheresa\nMichelle\nRobin\nKelly\nTerri\nKimberly\nKim\nRhonda\nLaurie\nChristine\nRebecca\nCatherine\nMargaret\nPaula\nJudy\nCathy\nAnnette\nJennifer\nTina\nAnn\nConnie\nBeverly\nKathryn\nTracy\nVicki\nKatherine\nValerie\nBonnie\nRenee\nSherry\nBecky\nAnna\nCarolyn\nPeggy\nJanice\nShirley\nLeslie\nMaria\nAmy\nCarrie\nWendy\nDawn\nSherri\nAngela\nAnne\nBeth\nLoretta\nRuth\nRita\nVictoria\nSandy\nSheila\nGloria\nAnita\nBetty\nLynn\nAndrea\nStephanie\nTerry\nJoyce\nYvonne\nGina\nJackie\nJill\nJoan\nPam\nMarilyn\nSuzanne\nRose\nCarla\nJeanette\nPenny\nSally\nColleen\nRoberta\nShelly\nVirginia\nDana\nElaine\nGail\nJudith\nLorraine\nVeronica\nTamara\nVickie\nJean\nMelanie\nJane\nPatty\nMelinda\nDeanna\nHolly\nJacqueline\nKristi\nMarie\nShelley\nSheryl\nMartha\nMaureen\nRegina\nSue\nDarlene\nHeidi\nJody\nJan\nJuanita\nSheri\nTami\nAlice\nChris\nMichele\nMonica\nSarah\nJulia\nChristina\nFrances\nJoann\nEllen\nJeanne\nPhyllis\nToni\nHelen\nJoni\nDianna\nMelissa\nDorothy\nGlenda\nMelody\nTeri\nAudrey\nCrystal\nDarla\nKelli\nVicky\nWanda\nCharlene\nCharlotte\nKarla\nRoxanne\nJo\nRosemary\nBernadette\nKay\nMarla\nMarsha\nArlene\nDianne\nEileen\nJodi\nJune\nTammie\nIrene\nLynette\nCarmen\nDebora\nEsther\nJamie\nKelley\nLouise\nPatti\nJana\nJenny\nJoy\nLorie\nLorrie\nLynda\nRonda\nSylvia\nApril\nDoris\nGretchen\nJoanne\nBelinda\nCecilia\nChristy\nDolores\nJolene\nKerry\nLiz\nShannon\nShari\nAllison\nEdith\nEva\nGeraldine\nLois\nLynne\nMarcia\nMarlene\nRamona\nSusie\nTerrie\nVivian\nEvelyn\nGrace\nJeanine\nMarjorie\nRene\nSherrie\nBridget\nCaroline\nErin\nGeorgia\nKari\nLee\nRosalie\nYolanda\nAlison\nAngie\nCarole\nCheri\nKristine\nLora\nLucy\nNorma\nRuby\nSara\nSonja\nEmily\nGayle\nJeannie\nKathi\nKerri\nKristin\nMona\nNatalie\nRachel\nStacy\nTraci\nVanessa\nBobbi\nDebby\nDena\nJeannette\nKristen\nLuann\nMarianne\nNina\nRobyn\nRochelle\nStacey\nTanya\nCeleste\nClara\nConstance\nFrancine\nJanine\nJodie\nKellie\nLaurel\nLorri\nLydia\nMaxine\nShauna\nTammi\nTherese\nTracey\nBillie\nDeana\nDeanne\nDee\nDella\nGwen\nKristie\nLana\nLauri\nLeann\nLeona\nLillian\nMargie\nNora\nPat\nTamera\nBernadine\nBernice\nCandy\nGinger\nIda\nJanelle\nJosephine\nJudi\nKarin\nKimberley\nKris\nLorna\nLynnette\nRosa\nCandace\nCassandra\nCherie\nCindi\nClaudia\nColette\nDanette\nDanna\nDora\nDoreen\nEdna\nGwendolyn\nJanette\nJeri\nKristy\nMarcella\nMarci\nNita\nPriscilla\nShawn\nShelli\nTonya\nYvette\nAlicia\nBertha\nBobbie\nCathleen\nKarrie\nPauline\nShawna\nSonya\nWilma\nAmanda\nAmber\nBarb\nBetsy\nChristie\nDarcy\nDelores\nDina\nEleanor\nElla\nErnestine\nFelicia\nJeanie\nJennie\nJoanna\nKirsten\nKristina\nLeila\nMonique\nNanette\nPatrice\nPearl\nPennie\nPolly\nSandi\nStacie\nSuzette\nTonia\nTrudy\nAdele\nCari\nCecelia\nCelia\nChristi\nClaire\nDesiree\nDixie\nGayla\nGaylene\nHeather\nHope\nIrma\nKarol\nKatie\nKendra\nKeri\nLauren\nLea\nLesley\nLorena\nLucille\nMarcie\nMarian\nMarina\nMindy\nMyrna\nNaomi\nPatsy\nRosemarie\nRosie\nShelia\nSusanne\nTamie\nTracie\nTricia\nTwyla\nAdrienne\nAileen\nAngelina\nAntionette\nAntoinette\nAva\nBeatrice\nColeen\nCora\nCorinne\nCorrine\nDeann\nDeirdre\nEmma\nFaye\nGladys\nGuadalupe\nJanell\nJanie\nJanis\nJayne\nJerri\nJessica\nJosie\nKatrina\nLadonna\nLaureen\nLeah\nLeanne\nLena\nLenora\nLillie\nLou\nMargo\nMisty\nMolly\nNadine\nRena\nSabrina\nSondra\nStarla\nStella\nSuzan\nSuzanna\nTamra\nTara\nAlberta\nAlisa\nAlma\nAmelia\nAngel\nAnnie\nAntonia\nBeckie\nBenita\nCandice\nCollette\nCristi\nDebi\nDeeann\nDelia\nElena\nFawn\nGale\nGeneva\nGeri\nHenrietta\nIngrid\nIris\nJacque\nJami\nJeannine\nJohanna\nJoleen\nJuli\nJuliana\nKara\nKyle\nLaverne\nLorene\nLuanne\nLucinda\nMadeline\nMalinda\nMarcy\nMarilee\nMarion\nMarta\nMaryann\nMildred\nMiriam\nMitzi\nOlga\nPaige\nPamala\nPeri\nRae\nRanda\nRandi\nReva\nRoseann\nRoslyn\nRoxane\nTerese\nTrina\nTrudi\nValorie\nVelma\nViola\nMary\nSusan\nLisa\nLinda\nKaren\nLori\nCynthia\nSandra\nJulie\nDebra\nPatricia\nCheryl\nBrenda\nSharon\nBarbara\nDebbie\nLaura\nDonna\nTammy\nPamela\nCarol\nElizabeth\nDeborah\nCindy\nMichelle\nNancy\nJanet\nTeresa\nKathy\nRobin\nDenise\nDiane\nKelly\nTheresa\nRhonda\nKimberly\nLaurie\nKathleen\nJennifer\nChristine\nDiana\nConnie\nRebecca\nTina\nTerri\nTracy\nDawn\nAnnette\nJudy\nKim\nWendy\nPaula\nMargaret\nAnn\nJacqueline\nPeggy\nAngela\nBecky\nCathy\nVicki\nCatherine\nAmy\nDana\nRenee\nStephanie\nShelly\nValerie\nLeslie\nSherry\nCarla\nCarolyn\nCarrie\nChristina\nAnita\nAnna\nSherri\nJoyce\nMaria\nMartha\nBeverly\nJanice\nRita\nBeth\nRoberta\nSheila\nShirley\nVickie\nDeanna\nJill\nLynn\nKatherine\nAnne\nBonnie\nKathryn\nMonica\nSuzanne\nTerry\nGina\nPam\nRose\nVirginia\nYvonne\nJackie\nJane\nSheryl\nAndrea\nSandy\nBetty\nLorraine\nPenny\nJeanette\nRuth\nShari\nGail\nJudith\nLoretta\nMichele\nVeronica\nGloria\nJody\nMelanie\nVictoria\nColleen\nBernadette\nHolly\nJoan\nMelinda\nSylvia\nHeidi\nSheri\nJean\nJulia\nFrances\nKristi\nMelody\nSally\nDarlene\nEllen\nToni\nJamie\nPatty\nShelley\nWanda\nHelen\nJeanne\nRegina\nSue\nJuanita\nMarie\nPhyllis\nTamara\nElaine\nJoann\nKarla\nNorma\nSarah\nBelinda\nDorothy\nRoxanne\nTami\nTammie\nVicky\nCharlene\nCharlotte\nMarlene\nDianne\nMarilyn\nTeri\nArlene\nRamona\nDarla\nEileen\nJana\nKellie\nMaureen\nShawna\nIrene\nKay\nLynda\nLynne\nMelissa\nNatalie\nSara\nShannon\nGeraldine\nJo\nJodi\nJoni\nKelli\nKerry\nLorie\nRachel\nRonda\nShawn\nStacey\nYolanda\nDianna\nStacy\nCaroline\nCheri\nGlenda\nJoy\nLynette\nPatti\nRobyn\nSusie\nTanya\nTracey\nChristy\nGayle\nJune\nKelley\nKristine\nMarcia\nCarmen\nChris\nJeannie\nJosephine\nLouise\nTracie\nGretchen\nHeather\nJan\nJoanne\nKristin\nRosemary\nRuby\nAlice\nConstance\nCrystal\nDebora\nJeri\nMargie\nMona\nAudrey\nDanette\nDebby\nEva\nKendra\nPatsy\nVivian\nCecilia\nClaudia\nErin\nJerri\nNora\nStella\nAlicia\nCarole\nGeorgia\nGinger\nJanette\nKristina\nLois\nLorrie\nLydia\nMarla\nMaryann\nSherrie\nTerrie\nVanessa\nDoris\nGrace\nLadonna\nLiz\nLora\nLynnette\nMaxine\nRochelle\nRosalie\nTraci\nBridget\nDoreen\nEsther\nKari\nLucinda\nMarjorie\nSonja\nTamera\nTherese\nAlison\nAntoinette\nBernadine\nCandy\nChristie\nCorina\nDee\nDolores\nGwendolyn\nJanie\nJeanie\nJenny\nJolene\nKarin\nKris\nKristie\nMarian\nMolly\nPat\nPauline\nTonya\nYvette\nAllison\nAmanda\nAngie\nApril\nBillie\nClara\nDina\nEvelyn\nGay\nGwen\nKatrina\nKimberley\nLauri\nLeona\nLorri\nLou\nLuann\nLucy\nSabrina\nTara\nCassandra\nColeen\nDanielle\nDella\nDora\nEdith\nEdna\nEleanor\nFlorence\nGenevieve\nJacquelyn\nJanell\nJanine\nJennie\nKatie\nLeanne\nLorna\nLucille\nMarianne\nMyra\nNadine\nPolly\nRene\nRobbie\nRosie\nSandi\nStarla\nAna\nBobbi\nCherie\nCorinne\nDeena\nErica\nFelicia\nJanelle\nJanna\nKerri\nKristen\nLana\nLaurel\nLeah\nLee\nLillian\nLuanne\nMarsha\nNanette\nPennie\nPriscilla\nSonya\nTricia\nTrudy\nValarie\nAnnie\nCathleen\nCharla\nCyndi\nDarcy\nDeanne\nEmily\nFaith\nFrancine\nGayla\nJami\nJeanine\nLea\nLeann\nLeigh\nLuz\nMarcie\nMarguerite\nMelodie\nMonique\nPaulette\nRosa\nShauna\nShelli\nSonia\nSuzy\nTwila\nValorie\nViola\nVonda\nAlberta\nAllyson\nAngel\nAntonia\nBetsy\nCherri\nCindi\nCorrine\nDeirdre\nElisa\nErnestine\nGeri\nJeannette\nJessica\nJosie\nKathi\nLeeann\nLoraine\nMarci\nMarta\nMitzi\nNina\nRenae\nRoxane\nShanna\nShellie\nStacie\nSuzan\nTonia\nAlyson\nArleen\nAthena\nBarb\nBenita\nBernice\nBlanca\nBobbie\nBrooke\nCathi\nCeleste\nCelia\nChristi\nColette\nDelores\nDenice\nDixie\nDori\nElise\nEthel\nFay\nJacque\nJeannine\nJoanna\nJulianne\nKathrine\nKirsten\nKrista\nMadeline\nMarty\nMindy\nNola\nPaige\nRandi\nRena\nRoxann\nShelia\nTammara\nTori\nVera\nVerna\nAimee\nAmber\nAntionette\nAvis\nBabette\nBeatrice\nBridgett\nCarlene\nCathie\nCecelia\nCharmaine\nClaudette\nCora\nCori\nCorine\nDannette\nDayna\nDeidre\nDena\nFaye\nFrankie\nGale\nGaylene\nGeralyn\nHazel\nHilary\nIngrid\nJanis\nJodene\nJoleen\nJuliann\nKaryl\nKimberlee\nKristy\nLauren\nLavonne\nLeanna\nLesa\nLila\nLorene\nMara\nMargarita\nMegan\nMeredith\nMerry\nMichael\nMiriam\nMisty\nNatasha\nPenelope\nRachelle\nRobbin\nRobert\nRoxie\nRuthie\nSharron\nSuzette\nTamela\nTammi\nTresa\nTrina\nTwyla\nLisa\nSusan\nLori\nMary\nKaren\nLinda\nSandra\nBrenda\nJulie\nPatricia\nTammy\nCynthia\nPamela\nDebbie\nMichelle\nCindy\nDeborah\nDebra\nBarbara\nDonna\nSharon\nTeresa\nLaura\nElizabeth\nKimberly\nCheryl\nChristine\nKelly\nJanet\nNancy\nJennifer\nDenise\nDiane\nKathy\nCarol\nRobin\nLaurie\nConnie\nDiana\nTerri\nKim\nTina\nTheresa\nRhonda\nRebecca\nKathleen\nAnnette\nPaula\nStephanie\nLeslie\nDawn\nTracy\nValerie\nSherry\nMargaret\nJudy\nShelly\nRenee\nWendy\nAmy\nAngela\nAnn\nPeggy\nCarla\nSherri\nCarolyn\nVicki\nMaria\nCatherine\nJill\nSuzanne\nChristina\nDana\nAnne\nBonnie\nBeth\nJacqueline\nSandy\nSheila\nBecky\nMelissa\nCathy\nPenny\nMonica\nJackie\nBeverly\nGail\nTerry\nCarrie\nJudith\nLynn\nAnna\nGina\nHeidi\nJoyce\nAndrea\nColleen\nHolly\nJeanette\nKathryn\nAnita\nJanice\nRoberta\nVeronica\nMichele\nRita\nKatherine\nLoretta\nMarie\nPam\nElaine\nRegina\nTamara\nDarlene\nMelinda\nShelley\nDeanna\nGloria\nJane\nJean\nMelanie\nSarah\nYvonne\nDarla\nRuth\nShirley\nVictoria\nVirginia\nJamie\nJulia\nRose\nSheryl\nVickie\nMartha\nTeri\nLorraine\nMarilyn\nJoan\nToni\nPatty\nTami\nBetty\nFrances\nJoann\nMelody\nPhyllis\nMaureen\nNatalie\nRamona\nBelinda\nChristy\nDianna\nJeanne\nJody\nKristi\nShari\nStacey\nDorothy\nMarla\nRonda\nShannon\nSheri\nBernadette\nKelli\nStacy\nWanda\nCharlotte\nEllen\nHelen\nJodi\nKarla\nLynda\nSara\nTanya\nTracey\nVicky\nApril\nCharlene\nCrystal\nGretchen\nKay\nMarcia\nArlene\nCarmen\nGlenda\nKelley\nKristine\nSally\nSue\nHeather\nMarlene\nSylvia\nJana\nKerry\nLorrie\nRobyn\nCecilia\nJenny\nJolene\nKristen\nLorie\nNorma\nPatti\nYvette\nDoris\nJanine\nJuanita\nEileen\nEva\nGeraldine\nJoanne\nJoy\nRachel\nRene\nTammie\nAlice\nChris\nDee\nIrene\nLynette\nMargie\nRoxanne\nTraci\nYolanda\nDianne\nEsther\nGayle\nGwendolyn\nJanelle\nLeann\nRosemary\nVivian\nAudrey\nCheri\nLouise\nMona\nShawn\nSherrie\nTammi\nTracie\nCarole\nCaroline\nConstance\nEvelyn\nJan\nJo\nJoni\nKristin\nLeah\nLee\nLora\nLynne\nMarsha\nAlicia\nFelicia\nGrace\nJerri\nJune\nKris\nKristy\nLois\nRochelle\nSonya\nStella\nBridget\nEmily\nGwen\nJeri\nKellie\nLaurel\nLeanne\nRena\nRosalie\nTherese\nTonya\nTrudy\nAllison\nBillie\nClaudia\nDeanne\nGeorgia\nJeannie\nJessica\nJosephine\nKari\nLauri\nLeigh\nNina\nSusie\nDebora\nDena\nDolores\nJanette\nKatrina\nMarjorie\nMyra\nNanette\nPat\nShawna\nTamera\nTerrie\nVanessa\nAlison\nAngie\nBernadine\nBobbie\nCandace\nCassandra\nChristie\nDeana\nDeann\nDella\nEdith\nEdna\nJeannette\nJodie\nKristina\nLorri\nLucinda\nLucy\nMaryann\nRobbin\nRosa\nAmanda\nCandy\nColeen\nDoreen\nGay\nLeona\nLorna\nLydia\nMarian\nNora\nSandi\nShauna\nStacie\nAmelia\nChristi\nDelores\nDina\nDora\nEleanor\nErin\nHope\nKarin\nKendra\nKerri\nKimberlee\nLana\nMarcie\nMisty\nNadine\nPatsy\nPauline\nPriscilla\nRuby\nTamra\nTwila\nAna\nBeatrice\nCelia\nCindi\nClara\nCorinne\nCorrine\nDanette\nDaphne\nDarcy\nDebby\nJanie\nJanis\nJeanine\nKatie\nKaye\nKimberley\nLeeann\nLena\nLillian\nLuann\nMadeline\nMari\nMarianne\nMindy\nNicole\nPaulette\nRachelle\nRae\nRenae\nSuzy\nVera\nAmber\nAnnie\nBarb\nBonita\nCathleen\nCecelia\nCherie\nDesiree\nDixie\nDolly\nErica\nFaith\nGayla\nGenevieve\nGinger\nJennie\nJoleen\nJudi\nKendall\nKirsten\nLadonna\nLiz\nLorene\nLucille\nLynnette\nMarti\nMaxine\nMichael\nMolly\nNaomi\nRosemarie\nShelli\nSonia\nTana\nTara\nTrina\nValarie\nVerna\nAntoinette\nBetsy\nBobbi\nCamille\nCari\nClaire\nDanelle\nDebbra\nDebi\nDeidra\nDorinda\nGale\nJacquelyn\nJanna\nJoanna\nJuliana\nKarrie\nKathi\nKrista\nLesa\nLouann\nMae\nMarcella\nMarci\nMarta\nMerri\nMildred\nMiriam\nPolly\nRebekah\nRoseann\nSabrina\nStarla\nSusanne\nSuzan\nSuzanna\nTamela\nThelma\nAllyson\nBernice\nCristi\nCyndi\nDanna\nDenice\nElena\nElla\nEloise\nErnestine\nGeneva\nGerri\nHenrietta\nHilda\nJanell\nJeanene\nJeanie\nJodeen\nJohn\nKammy\nKarri\nKayleen\nLavonne\nLea\nLenora\nLola\nLuz\nMandy\nMarcy\nMariann\nMarina\nMelodie\nNicki\nNikki\nPearl\nPenelope\nRoxane\nRoxanna\nShellie\nSherryl\nSondra\nSonja\nSusanna\nSuzann\nSuzette\nTari\nTena\nVelma\nLisa\nMary\nKaren\nSusan\nLori\nLinda\nTammy\nMichelle\nBrenda\nSandra\nJulie\nPatricia\nLaura\nDebra\nPamela\nElizabeth\nBarbara\nDonna\nCynthia\nDeborah\nChristine\nKimberly\nDebbie\nCindy\nTeresa\nKelly\nNancy\nCheryl\nJennifer\nKathy\nDenise\nDiane\nRobin\nSharon\nTina\nKathleen\nTheresa\nJanet\nCarol\nDiana\nPaula\nTracy\nTerri\nLaurie\nRhonda\nKim\nConnie\nRebecca\nStephanie\nShelly\nAngela\nWendy\nAnn\nLeslie\nValerie\nAmy\nAnnette\nSherry\nDawn\nGina\nSherri\nCatherine\nMargaret\nMaria\nSheila\nJudy\nKatherine\nCarolyn\nRenee\nSuzanne\nBecky\nCathy\nDana\nAndrea\nCarla\nJill\nAnne\nMichele\nDeanna\nJanice\nMonica\nPeggy\nMelissa\nRuth\nAnita\nKathryn\nBonnie\nJacqueline\nBeth\nBeverly\nColleen\nHeidi\nYvonne\nSheri\nVicki\nLynn\nShelley\nCarrie\nGail\nPenny\nRegina\nVeronica\nAnna\nJeanette\nMarie\nRita\nShannon\nSheryl\nTamara\nChristina\nTeri\nToni\nVirginia\nDarla\nHolly\nJane\nKristine\nJudith\nDarlene\nRoberta\nSandy\nHeather\nJackie\nJoyce\nMelanie\nSarah\nJulia\nMartha\nPam\nKelli\nShirley\nStacey\nKristi\nShari\nTracey\nDorothy\nJoan\nKarla\nMelinda\nLoretta\nStacy\nVictoria\nMarilyn\nRose\nTerry\nElaine\nVickie\nCharlotte\nGloria\nJamie\nJody\nLorraine\nLynette\nMaureen\nSue\nTami\nCheri\nMelody\nBetty\nFrances\nJean\nCrystal\nJo\nWanda\nJeanne\nYvette\nHelen\nLorie\nNatalie\nApril\nJana\nJoann\nJoy\nPhyllis\nEllen\nJodi\nRamona\nShawna\nChristy\nJenny\nRonda\nBernadette\nLee\nSally\nSara\nYolanda\nDianna\nGeraldine\nGretchen\nIrene\nJan\nKirsten\nKristin\nLora\nRoxanne\nRuby\nSylvia\nErin\nJuanita\nMarla\nShawn\nVicky\nCaroline\nDoreen\nGlenda\nJosephine\nKelley\nLeah\nLynda\nShauna\nTammie\nTonya\nAudrey\nCharlene\nKristy\nLynne\nSonja\nTanya\nAlicia\nCarole\nEva\nEvelyn\nFelicia\nJessica\nJune\nKellie\nPatty\nRosalie\nTara\nAlice\nAllison\nChris\nEsther\nKari\nKerry\nKris\nLouise\nMindy\nPauline\nRene\nTraci\nBelinda\nBetsy\nCarmen\nDianne\nJoanne\nKara\nKay\nKristina\nRobyn\nTerrie\nTrudy\nClaudia\nDesiree\nGinger\nJoni\nLeanne\nMarlene\nNorma\nPatti\nSherrie\nVivian\nAlison\nAngie\nBridget\nDelores\nDena\nDolores\nJanine\nKerri\nKristen\nMolly\nNadine\nNora\nTammi\nValarie\nArlene\nBernice\nDebora\nGrace\nJolene\nKatrina\nLois\nLorrie\nLucy\nLynnette\nMarjorie\nRosemary\nSusie\nTherese\nTracie\nAmanda\nChristie\nDanette\nGayle\nGeorgia\nGwendolyn\nJohnna\nLucinda\nRachel\nSonya\nStella\nDee\nEileen\nHope\nKendra\nKristie\nLana\nLeona\nLesa\nMargie\nMarianne\nMarsha\nNaomi\nPatsy\nPolly\nSuzette\nAmber\nCherie\nDeana\nJennie\nJeri\nJerri\nKimberley\nLeigh\nLydia\nMarcia\nMona\nNina\nSonia\nSophia\nTrina\nAntoinette\nCecilia\nColeen\nDarcy\nDella\nDenice\nDiann\nDina\nJoanna\nJodie\nJonna\nKarin\nLaurel\nLeann\nLorri\nMarcella\nMarci\nMyra\nPriscilla\nRena\nSabrina\nStacie\nTamera\nTamra\nWendi\nAlisa\nAna\nBeatrice\nCathleen\nDeann\nDoris\nElena\nEmily\nGay\nGwen\nJanette\nJanis\nJeanie\nJeanine\nJuli\nKimberlee\nLucille\nPenni\nRochelle\nRosemarie\nRoslyn\nTricia\nVanessa\nAngelina\nBeckie\nBenita\nBobbie\nBridgett\nCecelia\nChristi\nConstance\nDaphne\nDeena\nDora\nFaith\nJacquelyn\nJami\nJeannie\nJudi\nKarrie\nKatie\nKimberle\nLauri\nLena\nLiana\nLillian\nLorena\nMarcie\nMegan\nPatrice\nPaulette\nRachelle\nSandi\nShelli\nVera\nAlberta\nBambi\nBillie\nCamille\nCandace\nCandy\nCara\nCinda\nCorina\nCorinne\nCorrine\nDebi\nEdie\nGuadalupe\nIrma\nJacque\nJanelle\nJanna\nJayne\nJeannette\nJohanna\nKaryn\nLea\nLorene\nMarta\nMitzi\nMonique\nNanette\nNicole\nPaige\nPat\nRosanna\nRoseanna\nRoseanne\nRoxanna\nShellie\nSherie\nStarla\nVerna\nWhitney\nWilma\nZina\nAdrienne\nAlma\nAlyson\nAmelia\nAnnie\nBarb\nBarbie\nBonita\nCeleste\nCelia\nCindi\nClaudine\nColette\nDeidra\nDeidre\nEdna\nEleanor\nFlora\nFrancine\nGenevieve\nHilary\nIda\nIsabel\nJeana\nJenifer\nJulianne\nKate\nKathrine\nKimberlie\nLauren\nLeanna\nLeeann\nLeisa\nLesley\nLetitia\nLiz\nLonda\nLorna\nLuann\nLucretia\nMargo\nMarian\nMarion\nMaryann\nMaxine\nMildred\nNicolette\nPearl\nRae\nRaylene\nRisa\nRosalind\nRuthie\nTeena\nTerese\nTrisha\nLisa\nMary\nSusan\nKaren\nJulie\nMichelle\nPatricia\nLinda\nLori\nBrenda\nLaura\nSandra\nCynthia\nChristine\nKimberly\nPamela\nDeborah\nTammy\nDenise\nTeresa\nNancy\nDebbie\nDonna\nCheryl\nDebra\nJennifer\nElizabeth\nBarbara\nTracy\nKelly\nRobin\nSharon\nAmy\nKathy\nCarol\nKathleen\nRhonda\nPaula\nAngela\nStephanie\nTerri\nTina\nDiane\nDiana\nCindy\nValerie\nTheresa\nMargaret\nRebecca\nKim\nDawn\nWendy\nAnnette\nDana\nShelly\nJacqueline\nJill\nAnn\nConnie\nRenee\nSherry\nCatherine\nLeslie\nJanet\nMaria\nLaurie\nGina\nKatherine\nSherri\nSheila\nMonica\nSuzanne\nAndrea\nCarla\nCarolyn\nJudy\nCarrie\nMelissa\nTamara\nDeanna\nJackie\nHeather\nChristina\nHolly\nShelley\nBecky\nBonnie\nBeth\nMichele\nSarah\nSheri\nAnne\nSheryl\nJanice\nCathy\nColleen\nHeidi\nKathryn\nMelanie\nPeggy\nAnita\nJane\nRoberta\nShannon\nAnna\nRita\nJudith\nKelli\nPenny\nShirley\nVictoria\nJulia\nVicki\nKristi\nStacey\nWanda\nJean\nJodi\nKarla\nLorraine\nMarie\nSandy\nVeronica\nYvonne\nGloria\nJoan\nBetty\nRegina\nSally\nStacy\nFrances\nVirginia\nJoyce\nMelinda\nPatty\nJeanette\nMarilyn\nBeverly\nElaine\nKristin\nLynn\nShawn\nNatalie\nJeanne\nMelody\nRonda\nRuth\nKelley\nKristine\nMartha\nTraci\nJamie\nTammie\nApril\nCharlene\nDarlene\nDorothy\nRose\nSara\nToni\nAlice\nChris\nCrystal\nDianna\nJoann\nJody\nPam\nTerry\nYvette\nGail\nRachel\nTami\nBelinda\nDeneen\nJoy\nKellie\nLoretta\nLynda\nMarla\nCaroline\nLeah\nMaureen\nSylvia\nYolanda\nCarmen\nJoanne\nJuanita\nShauna\nAudrey\nHelen\nSue\nVickie\nDarla\nDoreen\nJanine\nKay\nKris\nMarsha\nRobyn\nShawna\nTeri\nBernadette\nSonja\nGeraldine\nJo\nMarlene\nPatti\nShari\nSusie\nAlicia\nCheri\nEileen\nGinger\nPhyllis\nRamona\nTonya\nTracey\nAngie\nChristy\nJana\nLynette\nNadine\nNorma\nTracie\nBridget\nClaudia\nDianne\nGretchen\nJoni\nKimberley\nLee\nLeigh\nLucy\nLynne\nRosemary\nSherrie\nVicky\nEva\nJonna\nKari\nKirsten\nKristen\nLana\nLorie\nLouise\nCharlotte\nCherie\nDolores\nJenny\nJessica\nKarin\nKerri\nKrista\nKristina\nKristy\nRosalie\nTanya\nAlison\nBernice\nCathleen\nDeana\nEvelyn\nGrace\nJanelle\nJodie\nJolene\nKatrina\nKerry\nLeanne\nLorrie\nMarcella\nMarcia\nMargie\nMarjorie\nRoxanne\nRuby\nShelli\nTrudy\nBetsy\nBobbi\nCandace\nCassandra\nCecilia\nDoris\nEllen\nErin\nEsther\nFelicia\nGayle\nGlenda\nIrene\nJeanine\nJuli\nKara\nKatie\nKendra\nKeri\nLora\nMolly\nNicole\nPriscilla\nRosemarie\nTrisha\nVanessa\nAllison\nAmanda\nColette\nDanette\nDeanne\nDee\nDesiree\nErnestine\nGeorgia\nGwendolyn\nJeannie\nJeri\nJerri\nJoanna\nLydia\nMaxine\nNina\nPaige\nPauline\nRochelle\nStacie\nValarie\nArlene\nCindi\nDina\nEmily\nJanette\nJohanna\nLeann\nLillian\nLynnette\nMisty\nMona\nNanette\nPolly\nRene\nStaci\nTerrie\nConstance\nDeann\nDebby\nDenice\nEdith\nFrancine\nGenevieve\nGwen\nJan\nJeannette\nJosephine\nJune\nLuz\nSonya\nStella\nTammi\nTara\nVera\nWendi\nAlisa\nAmber\nBillie\nCeleste\nChristi\nChristie\nDiann\nDixie\nGale\nKimberlee\nKristie\nLadonna\nLauri\nLeona\nLesa\nLorinda\nLucinda\nMargo\nShellie\nSusanne\nSuzan\nTamra\nTricia\nWhitney\nAlberta\nCarey\nCarole\nCorrine\nDanielle\nDawna\nDeena\nDeirdre\nEleanor\nIrma\nJanell\nJanie\nJennie\nJohnna\nLaurel\nLois\nLou\nLuann\nMaryann\nMegan\nMindy\nMonique\nNikki\nOlga\nPaulette\nRenae\nRobbin\nRosa\nRoseann\nSandi\nShana\nSonia\nSuzy\nTherese\nValorie\nVivian\nAmelia\nBabette\nBambi\nBarb\nBeatrice\nBernadine\nBertha\nCandy\nCari\nCharla\nDaneen\nDanna\nDayna\nDebora\nDeidre\nDena\nDora\nElisabeth\nGeorgina\nHope\nIngrid\nJacquelyn\nJami\nJanel\nJessie\nJudi\nKarrie\nLavonne\nLena\nLila\nLola\nLorna\nMarcy\nMerri\nMitzi\nMyra\nPearl\nRobbie\nSabrina\nSondra\nStacia\nTana\nThelma\nTiffany\nZina\nAimee\nAlesia\nAlexandra\nAna\nAngelina\nAntoinette\nBenita\nBobbie\nCamille\nCandice\nCara\nCaren\nCherri\nClaire\nClara\nCorinne\nCristina\nDanelle\nDarcy\nDinah\nDorene\nEdna\nElise\nEmma\nErika\nEvangeline\nGerri\nIsabell\nJacque\nJeannine\nJulianne\nJustine\nKarol\nKarri\nKaye\nKendall\nLiz\nLorri\nLucille\nMalinda\nMandy\nMarianne\nMerry\nMiriam\nNaomi\nPat\nPatsy\nRachelle\nRena\nRonna\nSerena\nShaun\nSophia\nSuzette\nSydney\nTamela\nTamera\nTawnya\nTrina\nTrudi\nUrsula\nVerna\nLisa\nMary\nKaren\nKimberly\nSusan\nMichelle\nJulie\nBrenda\nLori\nCynthia\nTammy\nPamela\nPatricia\nJennifer\nLaura\nLinda\nDeborah\nChristine\nKelly\nSandra\nCheryl\nStephanie\nDonna\nRhonda\nDenise\nWendy\nElizabeth\nSharon\nAmy\nDebra\nBarbara\nAngela\nDawn\nTina\nCindy\nTeresa\nNancy\nCarol\nRebecca\nRobin\nKim\nSheila\nKathleen\nValerie\nTheresa\nDiane\nPaula\nRenee\nCatherine\nTracy\nDebbie\nDiana\nAnnette\nConnie\nKathy\nMichele\nAnn\nJill\nAndrea\nGina\nMargaret\nTerri\nJanet\nDana\nLaurie\nMaria\nSherry\nKatherine\nChristina\nJacqueline\nMonica\nMelissa\nLeslie\nCarla\nVicki\nDeanna\nTamara\nAnne\nStacey\nCarolyn\nHeidi\nKathryn\nShelly\nSuzanne\nSherri\nKristin\nHolly\nJudy\nKristine\nShelley\nAnna\nHeather\nLynn\nPeggy\nVeronica\nYvonne\nJamie\nAnita\nCarrie\nBeth\nBonnie\nMarie\nBecky\nColleen\nDarlene\nSarah\nSheryl\nJulia\nKristi\nPenny\nCathy\nJodi\nMelinda\nRegina\nBeverly\nJane\nJanice\nJoan\nLorraine\nMartha\nRoberta\nCharlotte\nTracey\nJessica\nJoann\nRonda\nSheri\nElaine\nRuth\nTeri\nJean\nShannon\nToni\nVictoria\nJoyce\nMarilyn\nRita\nStacy\nCharlene\nDarla\nGail\nMelanie\nHelen\nJeanette\nJody\nKelli\nNatalie\nPatty\nShawn\nTammie\nTraci\nDianna\nJudith\nKristina\nSally\nTonya\nKarla\nLoretta\nLynette\nPhyllis\nRose\nShawna\nAllison\nApril\nGloria\nJo\nKris\nSamantha\nTami\nVirginia\nWanda\nDorothy\nIrene\nJoy\nKellie\nKirsten\nShirley\nYvette\nCarmen\nEllen\nJackie\nJoanne\nBernadette\nBetty\nFrances\nGretchen\nKimberley\nKristen\nLana\nMaureen\nSara\nShari\nSylvia\nCaroline\nChris\nCrystal\nGeraldine\nJana\nRachel\nRamona\nVickie\nYolanda\nJeanne\nKari\nKelley\nTanya\nAlicia\nAlison\nAmanda\nBridget\nCandace\nEileen\nKay\nLeanne\nLynda\nMarla\nMarsha\nMelody\nMolly\nPam\nRoxanne\nSandy\nSherrie\nTrudy\nAudrey\nChristy\nJanine\nJolene\nLorrie\nRobyn\nRuby\nSonja\nTara\nVicky\nAngie\nDanette\nEmily\nJuanita\nKara\nLorie\nMonique\nRosemary\nSue\nTerry\nVonda\nAlice\nAmber\nDanielle\nDebora\nDolores\nFelicia\nJenny\nLesley\nLora\nLucy\nMarcia\nPatti\nPauline\nRene\nBobbi\nCara\nCassandra\nEsther\nEvelyn\nJune\nLois\nLouise\nMarlene\nShauna\nStaci\nStacie\nTamera\nAna\nDena\nDianne\nDoris\nEva\nGayle\nKarin\nKatrina\nKendra\nLaurel\nNanette\nNicole\nPaulette\nTammi\nTrisha\nBobbie\nCaryn\nCathleen\nCheri\nConstance\nCorina\nDeanne\nKrista\nKristy\nLeah\nLee\nMarcella\nMarjorie\nRosa\nSusie\nTrina\nAntoinette\nArlene\nBelinda\nBetsy\nFlorence\nGinger\nGlenda\nJami\nJanette\nJodie\nKerri\nLeann\nLynnette\nMona\nPriscilla\nSonya\nBernadine\nBillie\nBrooke\nDeena\nDesiree\nEdith\nGeorgia\nJanie\nJeanine\nJeri\nJoni\nJosephine\nKristie\nLauri\nLorna\nLynne\nMarina\nMarnie\nNadine\nSuzette\nTracie\nValarie\nVivian\nCherie\nChristie\nCindi\nDeana\nDeann\nDina\nDoreen\nErnestine\nFrancine\nGrace\nJan\nJanell\nJanelle\nJennie\nKathi\nKerry\nLadonna\nLucille\nLydia\nMaxine\nMegan\nNannette\nNorma\nRosalie\nSandi\nSharla\nTherese\nVanessa\nAimee\nAngelina\nArleen\nCamille\nCecilia\nCelia\nColeen\nHope\nIngrid\nJeannette\nJeannie\nJuli\nLucinda\nNaomi\nNina\nPaige\nPolly\nRochelle\nSabrina\nShanda\nShelli\nSondra\nSophia\nTamra\nTeena\nTwila\nWendi\nAdriana\nAlisa\nBenita\nDayna\nDebby\nDeirdre\nDenice\nDona\nDora\nErin\nJenifer\nJerri\nKarrie\nKaryn\nLauren\nLeigh\nLeona\nLesa\nLiz\nLorena\nMarguerite\nMartina\nMia\nMyra\nOlivia\nShana\nSophie\nStefanie\nTiffany\nAlesia\nAllyson\nAngelica\nBernice\nCandi\nCari\nClaudia\nCourtney\nDarcy\nDavid\nDee\nDeidre\nDelores\nDeneen\nElisa\nElisabeth\nElise\nGwendolyn\nHilary\nIda\nIrma\nJohanna\nJustine\nKandi\nKathlene\nKeri\nLillian\nMalinda\nMarcy\nMichell\nMisty\nNikki\nPatrice\nPatsy\nRachelle\nRae\nRebekah\nRenae\nSadie\nShellie\nSonia\nSuzie\nTammara\nTia\nVera\nLisa\nMichelle\nKimberly\nJulie\nMary\nKaren\nSusan\nJennifer\nTammy\nBrenda\nCynthia\nLori\nPatricia\nLaura\nDeborah\nKelly\nPamela\nLinda\nAmy\nChristine\nElizabeth\nStephanie\nDenise\nTina\nDonna\nRebecca\nSandra\nDebra\nBarbara\nNancy\nCheryl\nTracy\nDawn\nCindy\nAngela\nPaula\nWendy\nKathleen\nTeresa\nAndrea\nRhonda\nTheresa\nSharon\nJill\nRenee\nMelissa\nDiane\nKim\nCarol\nDebbie\nDiana\nHeidi\nConnie\nValerie\nRobin\nGina\nChristina\nLeslie\nMichele\nShelly\nCatherine\nDana\nKathy\nMargaret\nMaria\nSheila\nAnnette\nMonica\nKristine\nStacey\nSuzanne\nTamara\nTerri\nAnn\nKatherine\nJanet\nJacqueline\nSherry\nBecky\nShannon\nKristin\nYvonne\nHolly\nStacy\nRoberta\nSherri\nAnne\nSarah\nJodi\nKathryn\nKristen\nAnna\nBonnie\nLaurie\nCarla\nDeanna\nJudy\nJanice\nLynn\nMelinda\nVicki\nVeronica\nBeth\nCarolyn\nCrystal\nHeather\nJody\nJulia\nNatalie\nShelley\nAnita\nCarrie\nKristi\nRonda\nMelody\nSheri\nColleen\nGloria\nApril\nBeverly\nDarlene\nJeanette\nKristina\nMelanie\nRuth\nSara\nTanya\nToni\nTraci\nBernadette\nJackie\nJoann\nPeggy\nTracey\nKarla\nSheryl\nVirginia\nJamie\nShawna\nTami\nKelli\nLorraine\nNicole\nVictoria\nDianna\nLoretta\nTonya\nCharlotte\nJudith\nRachel\nRegina\nRita\nYvette\nCathy\nDarla\nGail\nMarie\nDianne\nElaine\nErin\nJana\nJessica\nJoan\nJoy\nLynette\nMaureen\nPenny\nRose\nShauna\nShawn\nSonya\nAudrey\nPhyllis\nSandy\nHelen\nJoanne\nLana\nMartha\nSamantha\nSylvia\nAmanda\nCandace\nCharlene\nIrene\nJean\nJoyce\nKimberley\nRosemary\nTeri\nBridget\nDanielle\nJolene\nJuanita\nKari\nKellie\nNadine\nSally\nShirley\nVickie\nChristy\nKelley\nMarla\nRobyn\nShari\nTara\nTiffany\nAngie\nFrances\nJane\nKendra\nKirsten\nPam\nCeleste\nConstance\nDorothy\nJo\nLora\nPatty\nRamona\nSherrie\nSuzette\nTammie\nTerry\nAlice\nAmber\nDanette\nDebora\nEllen\nGlenda\nJanelle\nJenny\nJosephine\nLorrie\nLynda\nMolly\nNorma\nSue\nYolanda\nAllison\nBetty\nCarmen\nCaroline\nDoris\nJoanna\nJoni\nKris\nMarlene\nPaige\nRuby\nStacie\nTracie\nAngelina\nArlene\nCheri\nDarcy\nDeann\nDena\nDoreen\nEileen\nJeri\nKay\nKimberlee\nKrista\nKristy\nLeah\nPauline\nRochelle\nTrisha\nAlicia\nAudra\nBelinda\nBillie\nCari\nCherie\nChris\nFelicia\nGayle\nJami\nJanine\nKatrina\nLeann\nLesley\nLydia\nRoxanne\nShanna\nSusie\nWanda\nAdrienne\nBrooke\nCorinne\nDesiree\nEva\nGinger\nGrace\nJan\nJanette\nJennie\nJune\nKerry\nLauri\nMarcia\nMarjorie\nMonique\nSonia\nStaci\nSusanne\nAlisa\nAlison\nBobbi\nCathleen\nDeana\nDeanne\nFrancine\nGeorgia\nGretchen\nJeannie\nKara\nKeri\nLauren\nLynnette\nNina\nShana\nSonja\nTrina\nVivian\nBeatrice\nDee\nDina\nDolores\nDora\nErica\nGeraldine\nGwendolyn\nJanell\nJerri\nKarin\nKristie\nLara\nLorie\nMarilyn\nMarsha\nMona\nNora\nRene\nTamera\nTonja\nVera\nVicky\nAngel\nBobbie\nCamille\nCara\nChristie\nClara\nClaudia\nColette\nCollette\nCorina\nDanna\nDayna\nEmily\nFaith\nHope\nJeanne\nJeannette\nJeannine\nJodie\nKathrine\nKerri\nLea\nLeanne\nLena\nLorri\nLucy\nMarcie\nMarcy\nMargie\nMaryann\nMeredith\nMisty\nNanette\nNikki\nPatti\nPolly\nRachelle\nSophia\nTerrie\nTherese\nVanessa\nWendi\nBetsy\nCarole\nCecilia\nChristi\nClaire\nDiann\nEdith\nElisabeth\nElla\nGenevieve\nIda\nIngrid\nIsabel\nJacquelyn\nJoell\nLadonna\nLaurel\nLeigh\nLesa\nMalinda\nMarci\nMargo\nMarion\nMarisa\nMaxine\nMegan\nMindy\nMiriam\nNaomi\nNoreen\nPaulette\nSharla\nShelli\nTamra\nTawnya\nTrudy\nAgnes\nAna\nAnnie\nAshley\nBernice\nBertha\nCallie\nCandy\nCassie\nCindi\nDaphne\nDeena\nDevon\nEleanor\nElisa\nEsther\nEvelyn\nFlorence\nGerri\nHazel\nHolli\nJames\nJanis\nJanna\nJayne\nJeanine\nJessie\nJoanie\nJoelle\nJoleen\nKathi\nKimber\nLanette\nLee\nLibby\nLois\nLorna\nLouise\nLucinda\nLynne\nMarcella\nMarian\nMarnie\nMyra\nPriscilla\nRhoda\nSabrina\nSelena\nSharlene\nSherie\nShonda\nSondra\nStefanie\nTammi\nTasha\nTonia\nVerna\nVonda\nMichelle\nLisa\nKimberly\nJulie\nJennifer\nMary\nSusan\nLaura\nKaren\nLori\nBrenda\nTammy\nChristine\nKelly\nStephanie\nAmy\nTina\nSandra\nPatricia\nCynthia\nWendy\nDeborah\nMelissa\nElizabeth\nPamela\nAngela\nLinda\nDenise\nRebecca\nRhonda\nDawn\nCheryl\nAndrea\nDonna\nBarbara\nTracy\nTeresa\nKathleen\nJill\nNancy\nKim\nGina\nDebra\nCarol\nLeslie\nChristina\nPaula\nTheresa\nCindy\nShannon\nHeather\nRenee\nSharon\nShelly\nStacey\nKathy\nSheila\nValerie\nDiana\nDiane\nKristin\nMaria\nKristen\nAnn\nDana\nJanet\nMargaret\nSherry\nTerri\nDebbie\nSuzanne\nKristine\nMonica\nAnnette\nHeidi\nMichele\nKatherine\nKathryn\nAnne\nCatherine\nSarah\nRobin\nSherri\nTamara\nKristi\nCarrie\nConnie\nHolly\nLaurie\nSheri\nApril\nBeth\nJacqueline\nRegina\nTracey\nAnna\nCarla\nTonya\nRonda\nJodi\nDeanna\nShelley\nTanya\nVeronica\nStacy\nVictoria\nYvette\nBecky\nCheri\nVicki\nJudy\nLynn\nMelinda\nYvonne\nColleen\nJody\nKristina\nJulia\nAnita\nCarolyn\nMelanie\nVickie\nBernadette\nBonnie\nKari\nTraci\nCrystal\nShawna\nSheryl\nJamie\nKelli\nErin\nJackie\nJudith\nJessica\nLoretta\nLynette\nNatalie\nKelley\nRoberta\nSabrina\nSara\nShari\nTiffany\nTracie\nCharlotte\nDena\nGail\nJeanette\nJoyce\nKimberley\nNicole\nPenny\nRita\nRobyn\nRuth\nBetty\nBeverly\nGloria\nJean\nKristy\nMarie\nMarla\nMartha\nMolly\nTami\nBridget\nEllen\nFrances\nJane\nKerry\nMelody\nRachel\nSandy\nShawn\nAlice\nCathy\nDarla\nPeggy\nRene\nTeri\nYolanda\nAlicia\nKarla\nDarlene\nLeann\nShauna\nCharlene\nDarcy\nDorothy\nJoan\nJoann\nJosephine\nKirsten\nLara\nSamantha\nShirley\nTerry\nToni\nVirginia\nElaine\nFelicia\nJanice\nKendra\nLana\nLeah\nLorraine\nMonique\nRochelle\nRose\nTammie\nAmanda\nIrene\nJana\nJoy\nKellie\nKerri\nSonja\nVicky\nAudra\nCandace\nCaroline\nChristi\nJeri\nJodie\nMarcia\nMarilyn\nMisty\nRoxanne\nSonia\nVanessa\nCherie\nChristie\nChristy\nDanielle\nDeana\nDianna\nEmily\nHelen\nJanelle\nJenny\nKarin\nLorie\nNikki\nSally\nSonya\nSuzette\nWendi\nAllison\nCarmen\nDina\nJo\nKara\nKrista\nSherrie\nAngie\nAudrey\nBobbi\nCeleste\nDesiree\nDoreen\nGeraldine\nGretchen\nJeanne\nKris\nLora\nLynda\nMarlene\nMaureen\nPaige\nTara\nTrina\nAmber\nClara\nDanette\nDebora\nGinger\nJanine\nJoanne\nJolene\nLee\nLynne\nNorma\nShanna\nSondra\nStaci\nStacie\nStefanie\nSue\nChris\nDeanne\nDianne\nEileen\nElisa\nEva\nJerri\nJune\nKatrina\nKimberlee\nKristie\nLea\nLeanne\nLeigh\nMarci\nMarjorie\nMindy\nPauline\nRachelle\nRae\nTonja\nTricia\nTrisha\nWanda\nAdrienne\nAimee\nBelinda\nBillie\nCara\nCari\nDolores\nErika\nJuanita\nMandy\nRamona\nRuby\nSylvia\nTrudy\nAlisa\nAntoinette\nArlene\nCassandra\nCathleen\nDeann\nErica\nGlenda\nHope\nJami\nJeannie\nJohn\nLydia\nMichael\nMitzi\nPam\nPatti\nPatty\nPolly\nRenae\nSaundra\nShelli\nStarla\nStella\nTammi\nTonia\nValarie\nAlison\nAnnie\nAshley\nBernice\nBetsy\nClaudia\nColette\nConstance\nJacquelyn\nJanette\nJeannette\nJeannine\nJoni\nKami\nKaryn\nLena\nLouise\nLynnette\nMalinda\nMargo\nMarsha\nMegan\nMelisa\nMichell\nMona\nNanette\nRosemary\nSusanne\nTamera\nTherese\nUrsula\nVivian\nAlana\nAmie\nAngelina\nBobbie\nBrigitte\nChrista\nCindi\nDeidre\nDelores\nElisabeth\nEmma\nFrancine\nGena\nGeri\nIngrid\nJanis\nJayme\nKay\nLois\nLorna\nMarnie\nMyra\nNadine\nNichelle\nPatsy\nPriscilla\nRosalie\nRoxann\nShana\nShelia\nShellie\nSusie\nTabatha\nTamra\nThomas\nVonda\nAlberta\nAlma\nBrandi\nBuffy\nCandice\nCarri\nCasey\nCecilia\nChandra\nChristian\nChristiana\nCorina\nCourtney\nCristina\nDara\nDee\nDella\nDixie\nDora\nDoris\nErnestina\nEsther\nEugenia\nGayle\nGerri\nGrace\nGreta\nJanell\nJanna\nJeanie\nJeanine\nJenifer\nJennie\nJoelle\nKatie\nLanette\nLauren\nLillian\nLorrie\nLucinda\nMachelle\nMarcie\nMari\nMarian\nMarni\nMartina\nMaura\nMiranda\nMiriam\nMissy\nNina\nNora\nPhyllis\nRosemarie\nTana\nTiffani\nVelma\nMichelle\nLisa\nKimberly\nJennifer\nLaura\nJulie\nAmy\nChristine\nStephanie\nKelly\nSusan\nTammy\nMary\nWendy\nAngela\nMelissa\nCynthia\nKaren\nDawn\nLori\nRebecca\nBrenda\nDenise\nTina\nPamela\nPatricia\nCheryl\nElizabeth\nChristina\nDeborah\nSandra\nTracy\nPaula\nRhonda\nShannon\nDonna\nAndrea\nLinda\nTeresa\nJill\nHeather\nDebra\nRobin\nBarbara\nGina\nKathleen\nRenee\nSharon\nSheila\nTheresa\nCindy\nStacey\nMichele\nCarrie\nNancy\nAnn\nDiane\nHeidi\nShelly\nStacy\nSuzanne\nLeslie\nTonya\nSherri\nCatherine\nDana\nKim\nKristine\nMonica\nValerie\nCarol\nTamara\nDiana\nAnne\nJacqueline\nKristin\nSarah\nSherry\nAnnette\nCarla\nDebbie\nJodi\nLaurie\nAnna\nKatherine\nKathy\nTanya\nTerri\nJanet\nTracey\nHolly\nKelli\nMaria\nApril\nJamie\nKristi\nKristina\nMargaret\nMelanie\nConnie\nKristen\nShelley\nBecky\nJulia\nShawna\nRegina\nSheri\nDeanna\nCarolyn\nRoberta\nCrystal\nBeth\nKathryn\nLara\nRachel\nAnita\nYvonne\nJody\nKimberley\nVictoria\nCassandra\nColleen\nJudy\nMelinda\nSamantha\nTraci\nAlicia\nDanielle\nKelley\nKerri\nSara\nSheryl\nVeronica\nBernadette\nKari\nVicki\nBonnie\nJeanette\nLynn\nNicole\nPeggy\nCathy\nLora\nRonda\nShawn\nYolanda\nAmanda\nJanice\nPenny\nDarlene\nJudith\nRuth\nCheri\nJane\nKirsten\nKristy\nLeah\nGloria\nJackie\nJessica\nMartha\nVickie\nChristy\nErin\nKerry\nMarie\nTeri\nYvette\nElaine\nGail\nKellie\nNatalie\nRene\nAudra\nBetty\nJean\nJoyce\nKarla\nLorraine\nTami\nTiffany\nToni\nTricia\nVirginia\nCarmen\nGinger\nGretchen\nJodie\nKatrina\nLana\nMelody\nTara\nBridget\nJoy\nLoretta\nLorie\nLynette\nRamona\nRose\nWendi\nBeverly\nDarla\nDorothy\nJoann\nJoanna\nMolly\nSally\nAudrey\nCaroline\nDeana\nDesiree\nHelen\nJolene\nKristie\nNorma\nPaige\nPhyllis\nRita\nTammie\nWanda\nAlice\nAllison\nAmber\nBelinda\nGeraldine\nIrene\nJanelle\nJeanne\nJoan\nKendra\nKrista\nMarla\nMisty\nRobyn\nShauna\nSherrie\nShirley\nVicky\nCharlene\nChristi\nDena\nDina\nEileen\nEllen\nErika\nJana\nKara\nMarcia\nMaureen\nNanette\nAlison\nBillie\nBobbi\nCandace\nDarcy\nDianna\nEsther\nEva\nJoanne\nMonique\nRachelle\nTracie\nTrina\nVanessa\nAntoinette\nBobbie\nBrooke\nChristie\nEmily\nErica\nFrances\nGayle\nJo\nJuanita\nKarin\nLynne\nMarcella\nMarci\nMindy\nPatty\nSonya\nStefanie\nAngie\nCharlotte\nConstance\nDeann\nEdith\nLadonna\nLeigh\nMarilyn\nMarlene\nRaquel\nRochelle\nSandy\nSue\nTia\nIngrid\nJanine\nKeri\nLee\nMarianne\nMegan\nMona\nRenae\nRuby\nSabrina\nShari\nSonja\nStacie\nSusanne\nSuzette\nTerry\nTrisha\nAnissa\nCandice\nCherie\nClaudia\nDoreen\nFelicia\nJanel\nJeannie\nJerri\nJosette\nKris\nLeanne\nLorrie\nLynda\nLynnette\nMarina\nMichaele\nNaomi\nNina\nPam\nPriscilla\nRichelle\nSylvia\nTammi\nAimee\nAngel\nAngelina\nBridgette\nCourtney\nDawna\nDeanne\nDee\nDeidre\nElisa\nEvelyn\nFaith\nGrace\nJami\nJenny\nJoni\nJosephine\nKatie\nKay\nLeann\nLeona\nLucy\nMitzi\nRachael\nRosemary\nSandi\nShana\nVivian\nAngelique\nArlene\nCara\nCarin\nCarole\nCharla\nChris\nCristina\nDebora\nElisabeth\nGlenda\nJenifer\nJennie\nJonna\nJudi\nKimberlee\nLorri\nLydia\nMarcy\nNora\nRosa\nSonia\nSophia\nTamera\nTania\nTrudy\nValarie\nValorie\nAna\nAthena\nCarey\nCari\nChandra\nChrista\nClara\nColeen\nCorina\nCorinne\nDianne\nDionne\nDolores\nDoris\nGwendolyn\nHope\nJacquelyn\nJuliana\nKerrie\nLea\nLena\nLesley\nLouise\nLucinda\nMargarita\nMarisa\nMarni\nMarsha\nNadine\nNoelle\nPatrice\nPaulette\nPauline\nPearl\nRae\nRoxanne\nShanda\nShelli\nShonna\nTamra\nTana\nTherese\nTonia\nAdrienne\nAmelia\nAngelia\nBambi\nBernadine\nBrandy\nCandy\nCaren\nCarri\nCathleen\nCeleste\nCherry\nChrystal\nCindi\nDanelle\nDanette\nDanna\nDeena\nDeirdre\nDelores\nDenice\nIda\nJoetta\nJohanna\nKarrie\nLillian\nLouann\nLucille\nMandy\nMara\nMargie\nMarian\nMarnie\nMaxine\nMelisa\nMisti\nNanci\nPamala\nPatsy\nPolly\nRandi\nRena\nRosalie\nRoxann\nShellie\nSondra\nStaci\nTerrie\nWhitney\nMichelle\nLisa\nJennifer\nKimberly\nAmy\nJulie\nLaura\nMelissa\nStephanie\nTammy\nChristine\nSusan\nKelly\nLori\nMary\nDawn\nShannon\nTracy\nAngela\nTina\nHeather\nRebecca\nWendy\nKaren\nPamela\nBrenda\nPatricia\nElizabeth\nChristina\nSandra\nCynthia\nDenise\nAndrea\nDeborah\nLinda\nStacey\nHeidi\nJill\nKathleen\nRhonda\nCheryl\nBarbara\nPaula\nNicole\nRenee\nMichele\nMonica\nTheresa\nDonna\nTeresa\nLeslie\nDeanna\nDana\nKristin\nValerie\nDebra\nTamara\nShelly\nCindy\nCarol\nGina\nNancy\nHolly\nKatherine\nRobin\nStacy\nRachel\nKathy\nSuzanne\nDiane\nSharon\nJacqueline\nJodi\nSarah\nCarrie\nKim\nSherri\nTara\nTonya\nSheila\nAnnette\nKelli\nLaurie\nMaria\nTanya\nAnn\nTerri\nKristen\nCarolyn\nDiana\nCatherine\nKellie\nTracey\nMargaret\nAnna\nKristi\nMelanie\nShelley\nTricia\nVictoria\nDebbie\nJanet\nSheri\nConnie\nJamie\nMelinda\nRoberta\nSherry\nAnne\nBecky\nJulia\nKristine\nBeth\nTraci\nApril\nShawna\nVeronica\nDanielle\nBonnie\nErin\nRegina\nSara\nVicki\nKristina\nLara\nColleen\nPeggy\nChristy\nCrystal\nCarla\nAnita\nBernadette\nGail\nKirsten\nNatalie\nTiffany\nYvonne\nDarlene\nKathryn\nRobyn\nKerry\nMarla\nJessica\nJody\nTracie\nCathy\nKari\nKarla\nLynette\nSheryl\nRonda\nRose\nTami\nToni\nYolanda\nAlicia\nAudrey\nCharlene\nCheri\nJanice\nJudy\nMelody\nPenny\nYvette\nGinger\nJackie\nLeah\nMarie\nShauna\nVanessa\nVickie\nAmanda\nCharlotte\nDianna\nJuanita\nJudith\nKimberley\nSamantha\nStacie\nAudra\nDena\nJoanna\nJoyce\nKrista\nRaquel\nRene\nShawn\nErika\nKatrina\nTrina\nTrisha\nBeverly\nDina\nHelen\nJoy\nKendra\nLynn\nMonique\nRochelle\nEva\nKara\nKarin\nKerri\nKristy\nMarci\nSonya\nTammie\nTerry\nVirginia\nAllison\nAmber\nAntoinette\nBetty\nDanette\nJenny\nJoann\nJodie\nLorraine\nMarcia\nMegan\nMindy\nRamona\nRuth\nSabrina\nSandy\nTeri\nAlice\nCaroline\nDesiree\nJanelle\nKeri\nLorie\nLucinda\nShari\nStaci\nBobbie\nCarmen\nElaine\nErica\nJoan\nKelley\nKimberlee\nLesley\nMarlene\nMisty\nNadine\nRita\nRoxanne\nAimee\nCandace\nCassandra\nFelicia\nFrances\nGretchen\nJeanne\nLeigh\nMarcella\nMartha\nShana\nSonja\nTonia\nBridget\nDoreen\nGlenda\nJean\nJeanette\nJolene\nLora\nLoretta\nMolly\nRachelle\nStefanie\nTia\nAlisa\nAlison\nCandice\nCandy\nCherie\nDionne\nJanine\nKerrie\nKristie\nMeredith\nMona\nPaige\nPauline\nSylvia\nWendi\nBelinda\nBillie\nBrooke\nConstance\nDarla\nDeanne\nDoris\nEmily\nJami\nKatie\nLeann\nLeanne\nLee\nNorma\nSally\nShirley\nVicky\nBrandi\nChandra\nClara\nClaudia\nCristina\nGayle\nGeraldine\nJana\nJane\nJanette\nJeanine\nLaurel\nMaureen\nMichael\nTerrie\nAngel\nAngie\nCeleste\nDeena\nEllen\nEsther\nGeorgia\nHope\nJeannette\nJeri\nJo\nJoanne\nJune\nLea\nLorrie\nLynda\nMarcy\nMarsha\nNikki\nRachael\nRosemary\nSerena\nShannan\nSherrie\nTammi\nAngelina\nColette\nCourtney\nDanelle\nDarcy\nDee\nDianne\nDolores\nDorothy\nEileen\nJoelle\nJosephine\nLana\nLeeann\nLois\nLynnette\nMarcie\nMelisa\nNaomi\nPenelope\nPhyllis\nSelena\nShellie\nTamra\nTonja\nAlexandra\nAnnmarie\nBrandy\nBridgette\nCara\nCaryn\nChristie\nCindi\nCorina\nDeana\nDebora\nDeedee\nDenice\nElena\nGloria\nGrace\nHollie\nJeannie\nJenifer\nJohnna\nJosette\nKay\nKimberli\nLauren\nLeona\nLouise\nLucy\nMargie\nMichaela\nPam\nSandi\nShelli\nSophia\nSusanne\nSuzette\nTabitha\nVivian\nBethany\nCari\nCassie\nCathleen\nCecilia\nChrista\nChristi\nChrystal\nColeen\nCorinne\nDaphne\nDavid\nDayna\nDevon\nFrancine\nGenevieve\nGwendolyn\nHilary\nIrene\nJaneen\nJerri\nJoni\nJuliana\nJustine\nKaryn\nLadonna\nLanette\nLesa\nLynne\nMargo\nMarilyn\nMarjorie\nMarlo\nMarnie\nMiriam\nNichole\nNora\nRichelle\nSonia\nSusie\nTabatha\nAdrienne\nAileen\nAmie\nAna\nAndra\nAnette\nAngelique\nAnissa\nBetsy\nCamille\nCasandra\nCatrina\nChantelle\nCharla\nCinnamon\nCristine\nDarci\nDeidra\nElisabeth\nElise\nEmma\nGabrielle\nGeneva\nGwen\nHillary\nIris\nJanel\nJocelyn\nJoey\nJona\nKami\nKarie\nKarrie\nKatharine\nKaylene\nKirstin\nKris\nLeanna\nLena\nLetitia\nLorena\nLorna\nLorri\nLuann\nLydia\nMalinda\nMaxine\nMia\nMyra\nOlga\nPatti\nPaulette\nRebekah\nRosa\nShani\nShanna\nShanon\nVerna\nWanda\nJennifer\nMichelle\nLisa\nKimberly\nAmy\nHeather\nJulie\nMelissa\nShannon\nStephanie\nAngela\nLaura\nDawn\nTammy\nChristine\nMary\nLori\nTracy\nWendy\nSusan\nBrenda\nKaren\nNicole\nElizabeth\nDenise\nKelly\nPamela\nTina\nCynthia\nRebecca\nAndrea\nChristina\nPatricia\nSandra\nHeidi\nStacy\nKristin\nSarah\nTeresa\nStacey\nDeborah\nMonica\nHolly\nTanya\nCarrie\nJill\nKatherine\nDonna\nCheryl\nGina\nTamara\nRenee\nDebra\nLinda\nValerie\nPaula\nRhonda\nDana\nKathleen\nErin\nNancy\nTara\nBarbara\nRobin\nShelly\nTheresa\nLeslie\nCindy\nRachel\nAnn\nMichele\nSharon\nAnna\nCatherine\nTonya\nCarol\nKristen\nDiane\nSherry\nMaria\nMelinda\nRegina\nDeanna\nKelli\nJodi\nKristina\nKristine\nCarla\nLaurie\nMelanie\nShawna\nSuzanne\nApril\nJacqueline\nJody\nKristi\nSheila\nTricia\nDiana\nJamie\nJessica\nTiffany\nVictoria\nCarolyn\nKathryn\nKim\nSara\nTraci\nAnne\nJanet\nKrista\nMargaret\nTracey\nBecky\nKathy\nVeronica\nConnie\nKari\nAnnette\nBeth\nDanielle\nKirsten\nMarie\nChristy\nTerri\nDeana\nSabrina\nSheri\nBonnie\nColleen\nKristy\nErica\nLynn\nNatalie\nShelley\nSherri\nAmanda\nCrystal\nJulia\nVicki\nYvette\nDebbie\nAmber\nAnita\nAudrey\nGloria\nKendra\nSheryl\nTami\nTammie\nVirginia\nAllison\nRoberta\nToni\nTrina\nGail\nKellie\nStacie\nJeanette\nLara\nYolanda\nErika\nJoyce\nSamantha\nTracie\nCassandra\nCheri\nJanelle\nKerri\nLynette\nYvonne\nEmily\nJackie\nJoy\nJuanita\nKara\nLee\nRobyn\nShana\nAimee\nAlicia\nAlisa\nAntoinette\nDarlene\nDina\nGretchen\nJoann\nKarla\nLeah\nMindy\nPeggy\nShauna\nAdrienne\nDarla\nElaine\nJenny\nJudy\nKimberley\nKristie\nLeann\nLorraine\nMegan\nPenny\nSally\nAngie\nBeverly\nDena\nDianna\nLora\nMelody\nMonique\nRonda\nAlison\nBernadette\nBobbie\nCathy\nKelley\nMolly\nRoxanne\nSonya\nStaci\nTeri\nAngel\nBetty\nBrooke\nCandice\nCaroline\nCharlene\nDanette\nDeann\nEllen\nJean\nKatrina\nLoretta\nMarla\nRaquel\nRose\nStefanie\nTonia\nVanessa\nAudra\nDesiree\nJodie\nKarin\nKerry\nMisty\nRachelle\nRamona\nTammi\nBrandi\nCherie\nChrista\nElisa\nJane\nMarci\nSandy\nShirley\nSonja\nSylvia\nTamra\nWendi\nAngelina\nBelinda\nBridget\nCarmen\nChristie\nFrances\nJanice\nJeanne\nJo\nJoanna\nJudith\nKeri\nMartha\nNikki\nPaulette\nShawn\nBillie\nBobbi\nCari\nGlenda\nJana\nJeannie\nJoanne\nMarlene\nNichole\nRenae\nShari\nVickie\nAngelique\nCandace\nDarcy\nDeanne\nEileen\nHilary\nJeanine\nJoan\nJune\nLana\nMarsha\nMaureen\nNatasha\nRochelle\nRuth\nShanna\nTrisha\nAlice\nBrandy\nCara\nCarey\nCourtney\nDorothy\nFelicia\nGeraldine\nGinger\nJanell\nJenifer\nJeri\nJuliet\nLauren\nLena\nMalinda\nMarlo\nMarnie\nNina\nNorma\nRene\nArlene\nCamille\nChristi\nDeena\nJacquelyn\nJennie\nKris\nKrystal\nLeigh\nLorie\nMarilyn\nMeredith\nPaige\nRebekah\nTamera\nVicky\nAlissa\nBridgette\nCandy\nCharity\nCharlotte\nDenice\nDianne\nGeri\nIrene\nJami\nJustine\nLauri\nLydia\nLynda\nLynnette\nPauline\nPolly\nRita\nRosa\nShellie\nSonia\nTerrie\nTia\nAlyssa\nCarole\nCathleen\nColette\nConstance\nCori\nCristina\nEvelyn\nFrancine\nGwendolyn\nIsabel\nJanine\nJolene\nJoni\nJosette\nJuli\nKarri\nKaryn\nKatie\nKimberlee\nLaurel\nLucinda\nMarcella\nMarcie\nMarcy\nMona\nNanette\nPatrice\nPatti\nRachael\nRena\nSerena\nTrudy\nCarissa\nCecilia\nCeleste\nChris\nClaudine\nDawna\nEsther\nGayle\nHope\nJeannette\nJonna\nKandi\nKathrine\nLarissa\nLeona\nLesley\nLorna\nMarcia\nMargo\nMarni\nMichell\nNadine\nPhyllis\nReva\nRosemary\nRuby\nSerina\nShani\nShelby\nTasha\nTerra\nTerry\nTonja\nWanda\nAbby\nAbigail\nAnnie\nBetsy\nChanda\nChandra\nCollette\nCorinna\nCory\nDarcie\nDebora\nDee\nDeidre\nDella\nDevon\nDionne\nDoris\nEdith\nGrace\nGwen\nHelen\nHillary\nJanel\nJerri\nJohnna\nJoleen\nJosephine\nJudi\nJulianne\nKirstin\nLea\nLorena\nLorrie\nMarjorie\nMisti\nRacquel\nRichelle\nSandi\nShannan\nSophia\nSue\nTabitha\nTania\nTherese\nTiffani\nTobi\nTori\nUrsula\nAdrianne\nAlexandra\nAmie\nAna\nAngelica\nAnjanette\nAnnmarie\nAurora\nBeatrice\nBernice\nBertha\nBrenna\nBrittany\nCassie\nChantelle\nCharmaine\nChristel\nChristopher\nClaudia\nCorrine\nDaisy\nDanita\nDanna\nDavina\nDayna\nDelores\nDolores\nDora\nEleanor\nErnestine\nEve\nGabrielle\nGena\nGenevieve\nGeorgia\nJanette\nJeannine\nJenni\nJoely\nJoseph\nJuliann\nKatharine\nKendall\nKindra\nKyla\nLadonna\nLanette\nLavonne\nLeanna\nLesa\nLillian\nLiza\nLuann\nMarianne\nMeghan\nMiriam\nNaomi\nNora\nPam\nPriscilla\nRae\nRosemarie\nShelia\nShelli\nSherrie\nStarla\nStella\nSusanne\nTamatha\nThea\nValorie\nVerna\nVivian\nJennifer\nMichelle\nLisa\nKimberly\nAmy\nHeather\nMelissa\nAngela\nStephanie\nShannon\nTammy\nJulie\nRebecca\nLaura\nMary\nDawn\nAndrea\nChristine\nLori\nTracy\nSusan\nNicole\nTina\nElizabeth\nKelly\nChristina\nKaren\nWendy\nBrenda\nStacy\nSandra\nCynthia\nDenise\nCarrie\nPatricia\nHolly\nPamela\nTeresa\nHeidi\nDeborah\nSarah\nDana\nRobin\nRenee\nKatherine\nStacey\nJill\nMichele\nMonica\nShelly\nTanya\nTamara\nApril\nGina\nJessica\nLinda\nKristin\nCindy\nErin\nRachel\nRhonda\nDebra\nCheryl\nTara\nTheresa\nKathleen\nNancy\nCrystal\nSharon\nShawna\nDonna\nKristi\nMelanie\nTiffany\nTonya\nPaula\nAnn\nBarbara\nJodi\nValerie\nDeanna\nKristine\nLeslie\nKristen\nSheila\nJamie\nDiana\nCatherine\nDiane\nKristina\nMaria\nSara\nRegina\nMelinda\nAnna\nKari\nStacie\nSherry\nAmanda\nDanielle\nCarol\nErica\nNatalie\nSuzanne\nVictoria\nToni\nJulia\nKim\nSheri\nSherri\nAlicia\nAnne\nTerri\nTraci\nBeth\nBonnie\nCarla\nJody\nVeronica\nAmber\nAnnette\nCarolyn\nLaurie\nTracey\nChristy\nKara\nKelli\nJacqueline\nJanet\nKathryn\nMargaret\nAimee\nKristy\nKendra\nSamantha\nAnita\nKathy\nTracie\nTricia\nKrista\nMolly\nTrina\nColleen\nDebbie\nKirsten\nMarie\nSabrina\nShelley\nBrandy\nCathy\nErika\nJenny\nNikki\nKatrina\nKristie\nBecky\nCassandra\nKerri\nLynn\nRoberta\nTami\nVicki\nAllison\nCharlene\nConnie\nJeanette\nMegan\nMisty\nYolanda\nCandace\nCarmen\nElaine\nFelicia\nGretchen\nKimberley\nLora\nMindy\nSonya\nStaci\nTeri\nJoann\nJuanita\nKarla\nKeri\nKerry\nLeah\nShauna\nCandice\nJanice\nNatasha\nAlison\nBernadette\nCharlotte\nCheri\nGloria\nJackie\nJanelle\nMonique\nRoxanne\nYvette\nAshley\nBrandi\nCherie\nDarlene\nLara\nMartha\nNina\nPeggy\nRachelle\nShawn\nSylvia\nVanessa\nYvonne\nChrista\nDina\nEmily\nJean\nJenifer\nPenny\nRene\nRonda\nSandy\nShari\nShirley\nVirginia\nAntoinette\nDena\nJolene\nJoyce\nJudith\nKatie\nLesley\nMarci\nRamona\nRita\nRobyn\nShana\nSheryl\nWendi\nAngelique\nBelinda\nBeverly\nChristie\nDanette\nFrances\nGail\nRochelle\nRose\nRuth\nSherrie\nSonja\nTammi\nTammie\nTania\nTonia\nVickie\nAngel\nBobbie\nBridget\nDianna\nGinger\nJacquelyn\nJane\nJoy\nLeann\nLoretta\nMarcy\nMeredith\nNichole\nNorma\nAlisa\nAngie\nCara\nCarey\nChandra\nJana\nKellie\nLana\nLaurel\nLynda\nMelody\nNaomi\nPriscilla\nTrisha\nAudrey\nBobbi\nCeleste\nDesiree\nGwendolyn\nIrene\nJami\nJanette\nJo\nKelley\nLorraine\nLynette\nMisti\nSonia\nAudra\nBrooke\nJodie\nJudy\nJune\nMara\nPauline\nSally\nShanna\nStefanie\nTasha\nTawnya\nBetty\nCandy\nClaudia\nDionne\nGlenda\nHope\nJeanine\nJeannie\nLeigh\nLorie\nMarcie\nMarilyn\nMarlene\nMarsha\nMaureen\nRachael\nTerry\nTisha\nAmelia\nAutumn\nChantel\nCharity\nCorina\nCourtney\nDeana\nDoreen\nEileen\nElisa\nJoan\nJoanna\nKimberlee\nLea\nLee\nLeticia\nLynnette\nMarjorie\nMarla\nRanee\nShantel\nShellie\nAnnie\nAntonia\nBillie\nBuffy\nCecilia\nDarcy\nDayna\nDeann\nDee\nDorothy\nFrancine\nGeraldine\nJanell\nJenna\nJennie\nJeri\nJohanna\nJosephine\nKarin\nKris\nLauren\nLorrie\nLydia\nMandy\nMarcia\nMargarita\nMarianne\nMichael\nNanette\nPaige\nRae\nRaquel\nRuby\nAdrienne\nAngelic\nAngelina\nAntionette\nCaroline\nCathleen\nChristi\nChristin\nColeen\nCorrie\nDanelle\nDaphne\nDavina\nDeena\nEdith\nEva\nFlorence\nGayle\nHannah\nJeannine\nJoanne\nKerrie\nLarissa\nPaulette\nRenae\nShanon\nShelli\nSophia\nTamra\nTera\nWanda\nAdria\nAlisha\nAnissa\nAnjanette\nBridgette\nCandida\nConstance\nCori\nCorinne\nDarla\nElena\nEmma\nEricka\nGabrielle\nIsabel\nJanel\nJanine\nJanna\nJeanna\nJeanne\nJeannette\nJocelyn\nJuli\nKarrie\nKimberli\nLauri\nLeanne\nLena\nLois\nLouise\nMargo\nMiranda\nMissy\nPamala\nPatrice\nShelby\nStacia\nSuzette\nTerra\nVerna\nAbigail\nAlexis\nAlice\nAllyson\nAlyssa\nAngelica\nAngella\nAnnemarie\nBernice\nBertha\nBrandie\nBrenna\nCandi\nCarin\nCary\nCaryn\nCassie\nChris\nClaire\nColette\nCory\nCristina\nDanna\nDeanne\nDeedee\nDeidre\nDolores\nDori\nElisabeth\nEve\nFaith\nGena\nGeneva\nGeorgia\nGillian\nGrace\nGwen\nHelen\nHollie\nIrma\nIvy\nJohn\nJoni\nJosie\nJuliana\nJulianna\nJustine\nKandi\nKarri\nKathi\nKathie\nKathrine\nKeli\nKrystal\nLachelle\nLadonna\nLeanna\nLorena\nLucinda\nLupe\nMarina\nMarnie\nMaryann\nMona\nNora\nPatty\nRena\nRenea\nRichelle\nRobbin\nRosa\nSondra\nSusanne\nTabitha\nVicky\nJennifer\nMichelle\nAmy\nLisa\nHeather\nKimberly\nMelissa\nStephanie\nAngela\nNicole\nJulie\nChristine\nShannon\nTammy\nRebecca\nLaura\nChristina\nAndrea\nTracy\nElizabeth\nMary\nSarah\nTina\nDawn\nLori\nBrenda\nKelly\nKaren\nSusan\nWendy\nCynthia\nMelanie\nJessica\nTanya\nDenise\nApril\nHeidi\nRachel\nSandra\nPatricia\nStacey\nTara\nKristin\nDeborah\nCarrie\nDana\nPaula\nStacy\nHolly\nRenee\nErin\nGina\nJill\nRobin\nMonica\nTiffany\nMichele\nTamara\nKatherine\nLinda\nTonya\nCatherine\nDonna\nPamela\nMaria\nSara\nShawna\nShelly\nTeresa\nKathleen\nLeslie\nCheryl\nDebra\nValerie\nCrystal\nBarbara\nKristi\nAnna\nDiana\nNatalie\nAmanda\nSharon\nSherry\nKristina\nJodi\nAmber\nBrandi\nKristine\nVictoria\nErica\nMelinda\nSheila\nTheresa\nAlicia\nJamie\nRhonda\nDeanna\nNancy\nSamantha\nKendra\nKristen\nSuzanne\nCindy\nMegan\nAnne\nChristy\nVeronica\nJenny\nKathy\nKari\nMargaret\nCassandra\nMisty\nBrandy\nTricia\nAimee\nCarol\nKerri\nKim\nTerri\nJody\nSherri\nToni\nTraci\nAnita\nConnie\nErika\nLaurie\nAngel\nAnn\nAnnette\nDanielle\nEmily\nJanet\nKathryn\nKatrina\nTrina\nAllison\nDesiree\nDiane\nNichole\nRegina\nBernadette\nKara\nKrista\nNikki\nVanessa\nYolanda\nYvonne\nBeth\nBonnie\nCarolyn\nCharlene\nShelley\nStacie\nBrooke\nCharlotte\nJenifer\nTracey\nAlison\nKristy\nMarie\nRoberta\nBecky\nJuanita\nKelli\nLeah\nLynn\nSabrina\nSonja\nTami\nBridget\nCarla\nLara\nRose\nSheri\nAngie\nDebbie\nGretchen\nJeanette\nJoanna\nKerry\nLynette\nRita\nSonya\nCandice\nCheri\nRobyn\nWendi\nYvette\nAlisa\nBeverly\nBillie\nCarmen\nChrista\nColleen\nJackie\nJacqueline\nJulia\nKristie\nMolly\nRuth\nShana\nAudra\nDorothy\nEricka\nJami\nJanelle\nPenny\nRenae\nStaci\nTammie\nTracie\nAntoinette\nAudrey\nCandace\nChandra\nCherie\nDanette\nJanice\nJoy\nKatina\nKelley\nKellie\nKirsten\nNaomi\nPeggy\nRachael\nSandy\nShauna\nTeri\nDeana\nGinger\nJoann\nJodie\nKeri\nMarcia\nMindy\nNatasha\nRochelle\nShawn\nSylvia\nTrisha\nAshley\nCourtney\nDena\nDina\nFrances\nJeannie\nKimberley\nLora\nMelody\nRachelle\nRaquel\nTonia\nAlexandra\nAngelina\nBobbie\nCathy\nFelicia\nGail\nGloria\nJosephine\nKarla\nLoretta\nMonique\nNina\nNorma\nShari\nSheryl\nVirginia\nAlice\nCasey\nDarlene\nJana\nJane\nJudy\nLeanne\nLesley\nMarcy\nMartha\nNadine\nRene\nBelinda\nBobbi\nCandy\nCeleste\nDianna\nJean\nJoyce\nMarcie\nMarla\nMeredith\nNanette\nShanna\nStefanie\nTammi\nBrittany\nCharmaine\nCory\nElaine\nHelen\nJeannette\nJennie\nKimberlee\nLaurel\nLeona\nLorrie\nMarlene\nMelisa\nNora\nPriscilla\nRonda\nSondra\nTabitha\nVicki\nWanda\nAdrienne\nAna\nAntonia\nBethany\nCara\nChanda\nChantel\nCharity\nChristi\nDarcy\nEva\nJosette\nKarin\nKatie\nLana\nLouise\nLucinda\nLynda\nLynnette\nMarci\nMarnie\nMarsha\nMiriam\nPauline\nRamona\nRebekah\nRoxanne\nSally\nSherrie\nSonia\nTonja\nAngelica\nCamille\nCaroline\nCaryn\nCatina\nCher\nDarla\nDeann\nDeena\nEileen\nEllen\nGwendolyn\nIvy\nJo\nJolene\nJune\nKami\nKarrie\nLeann\nLeigh\nLorie\nMandy\nMarianne\nMeghan\nPaulette\nRuby\nSerena\nShanda\nTania\nTawnya\nAmie\nAngelique\nCari\nCathleen\nColeen\nDanna\nDella\nDenice\nDionne\nDolores\nEve\nGabrielle\nHannah\nHilary\nHope\nIrene\nJohanna\nJulianne\nLee\nLorena\nMalinda\nMarcella\nMargo\nMaureen\nRosemary\nShiela\nShirley\nShonna\nTamra\nTanisha\nValarie\nAlana\nAntonette\nBridgette\nBrook\nCarie\nCarissa\nCassie\nChantelle\nChristin\nClaudia\nConstance\nCorey\nCori\nDelores\nDoris\nDusty\nEleanor\nElena\nElisa\nEsther\nGena\nGrace\nJacquelyn\nJanel\nJanell\nJanna\nJason\nJayme\nJeanine\nJeannine\nJenni\nJeri\nJoan\nJoanne\nJoey\nJudith\nJuliana\nJustine\nKathrine\nKerrie\nLauri\nLorraine\nMara\nMichael\nMisti\nNicola\nOlga\nRichelle\nShelby\nShellie\nStarla\nSusie\nTabatha\nTerry\nTia\nUrsula\nAlisha\nAlissa\nAlma\nAlyson\nAndra\nAngelic\nAntionette\nBetsy\nBrandee\nBrenna\nBritt\nCandi\nCarri\nCasandra\nCassondra\nCecilia\nCharla\nCinnamon\nConsuelo\nCristina\nDawna\nDora\nElsa\nFaith\nFawn\nFiona\nGayla\nGayle\nGenevieve\nGeorgia\nGidget\nIngrid\nJonna\nJosie\nKenya\nKrystal\nLea\nLena\nLucia\nLucille\nLynne\nMalissa\nMari\nMarina\nMarne\nMechelle\nMona\nNicol\nNicolle\nPaige\nRobert\nRosa\nRosita\nSandi\nSelena\nShantel\nShelli\nSilvia\nSummer\nSusanna\nSusanne\nTamera\nTasha\nTerra\nTessa\nTiffani\nTiffiny\nTisha\nTori\nTrista\nTrudy\nVicky\nWindy\nJennifer\nMichelle\nAmy\nHeather\nLisa\nMelissa\nStephanie\nKimberly\nAngela\nRebecca\nNicole\nJulie\nChristine\nLaura\nShannon\nAndrea\nChristina\nDawn\nSarah\nElizabeth\nTammy\nJessica\nKelly\nTina\nStacey\nMary\nTara\nWendy\nBrenda\nTracy\nStacy\nDenise\nHeidi\nSusan\nTanya\nKaren\nHolly\nLori\nCynthia\nApril\nCarrie\nCrystal\nErin\nPatricia\nTamara\nMelanie\nAmanda\nMonica\nTeresa\nTiffany\nKatherine\nRachel\nDanielle\nKristin\nPamela\nSandra\nRobin\nRenee\nTheresa\nTonya\nDana\nMaria\nCatherine\nLinda\nKristina\nMisty\nAnna\nJill\nMichele\nDeborah\nVictoria\nSheila\nKathleen\nKristen\nLeslie\nValerie\nBrandy\nPaula\nSara\nAmber\nGina\nErica\nBarbara\nJamie\nKendra\nKristine\nDonna\nBrandi\nKathryn\nJodi\nShelly\nCheryl\nDeanna\nEmily\nKristi\nChristy\nRhonda\nShawna\nAlicia\nAnn\nCindy\nDiana\nKrista\nMelinda\nSuzanne\nAnne\nJenny\nNancy\nVeronica\nDebra\nDiane\nAimee\nMegan\nTerri\nJody\nKelli\nToni\nTraci\nJulia\nKatrina\nJacqueline\nJanet\nKari\nMargaret\nRegina\nSharon\nCarla\nCarol\nStacie\nCassandra\nErika\nKathy\nNatalie\nRoberta\nKristy\nLaurie\nAnita\nBecky\nBridget\nKim\nNichole\nKirsten\nSheri\nYvonne\nAngel\nBonnie\nMindy\nSherri\nTami\nTricia\nYolanda\nAnnette\nCarolyn\nColleen\nConnie\nJeanette\nMarie\nSamantha\nSherry\nTracie\nAllison\nAntoinette\nFrances\nJenna\nJoy\nKara\nLeah\nLynette\nMelody\nRobyn\nSonya\nBeth\nDesiree\nJanelle\nKeri\nKerri\nKimberley\nLynn\nShelley\nBeverly\nBillie\nChrista\nKerry\nNikki\nStefanie\nVanessa\nAlisa\nAlison\nAngelina\nDebbie\nJuanita\nMolly\nRuth\nSonia\nTracey\nTrina\nBernadette\nCharity\nJoanna\nKatina\nKristie\nNaomi\nVirginia\nCandace\nCari\nFelicia\nJean\nKarla\nKelley\nTerra\nAshley\nBobbie\nCarey\nCaroline\nCathy\nCharlotte\nCheri\nChristie\nCourtney\nDianna\nMonique\nRebekah\nSabrina\nSonja\nTisha\nVicki\nYvette\nBrooke\nCarmen\nDarcy\nGinger\nGretchen\nJana\nJanice\nKatie\nPeggy\nRachael\nRamona\nRene\nShari\nVickie\nAmie\nAudrey\nEsther\nGloria\nLara\nMartha\nMeredith\nRochelle\nRose\nShauna\nTammi\nAngelica\nAudra\nCandice\nCasey\nCeleste\nJanel\nJenifer\nJohanna\nJudy\nKarin\nLoretta\nMarcia\nNatasha\nBelinda\nBobbi\nBrandie\nCamille\nCharlene\nChrystal\nElaine\nEricka\nJane\nJoyce\nMarcella\nMarcy\nSally\nShawn\nStaci\nTeri\nTonia\nCandy\nCara\nCherie\nDarlene\nDeana\nDena\nEllen\nLorraine\nRachelle\nChandra\nChantel\nDarla\nElisa\nGrace\nHope\nJackie\nJami\nJoan\nJoann\nLauren\nLora\nMarci\nMarcie\nMarla\nRoxanne\nSandy\nShanna\nShelby\nTia\nTrisha\nAbigail\nAdriana\nAlice\nAlisha\nAngie\nAntonia\nBethany\nChastity\nClaire\nDina\nDionne\nElena\nEva\nHollie\nIrene\nJoanne\nJodie\nKarri\nKellie\nKimberlee\nLaurel\nLeanne\nMandy\nMargo\nMarilyn\nNina\nPaige\nPenny\nShana\nShirley\nSylvia\nTammie\nWanda\nAlethea\nAmi\nAngelique\nAutumn\nBetsy\nBetty\nBridgette\nCharmaine\nClaudia\nDanelle\nDeanne\nDorothy\nElisabeth\nElissa\nFaith\nGena\nGlenda\nJanell\nJanna\nJason\nJeanne\nJoey\nJoni\nJudith\nKerrie\nLana\nLeann\nLena\nLouise\nOlivia\nRenae\nRonda\nRuby\nSherrie\nSheryl\nSummer\nSuzette\nTabitha\nTania\nWendi\nAlexandra\nAlyssa\nAngelia\nBianca\nBrandee\nCecilia\nChanda\nChristi\nCody\nDanette\nDavina\nDixie\nDolores\nGail\nJennie\nJohnna\nJustine\nKate\nKindra\nLea\nLesley\nLorie\nLynda\nLynnette\nMarsha\nMaureen\nMeghan\nMelisa\nMiranda\nNadine\nNichol\nNiki\nNorma\nPhyllis\nPolly\nRae\nRichelle\nRita\nRosa\nShanda\nTonja\nAdrienne\nAlissa\nAnastasia\nCharla\nChelsea\nColette\nCori\nDaphne\nDayna\nDeidre\nDianne\nEileen\nFawn\nGayle\nGeraldine\nGidget\nHelen\nJanie\nJeannie\nJolene\nJosephine\nJulianne\nJune\nKarrie\nKatharine\nKay\nKira\nKirstie\nKisha\nKrystal\nLeanna\nLee\nLeeann\nLesa\nLiza\nMarnie\nMichell\nPauline\nRaquel\nRosemary\nSelena\nShay\nStella\nTerrie\nTerry\nUrsula\nValarie\nAbby\nAllyson\nAntionette\nBilliejo\nBriana\nBrigitte\nBrook\nCaren\nCarie\nCarisa\nCarissa\nCaryn\nChantell\nChasity\nChloe\nClarissa\nConstance\nCory\nCristina\nDarcie\nDeidra\nDelilah\nDoris\nEsmeralda\nEvelyn\nFrancesca\nGeneva\nGuadalupe\nGwendolyn\nHilary\nHillary\nIris\nIsabel\nJamey\nJan\nJanette\nJeannette\nJenni\nJerri\nJosie\nKami\nKarma\nKeisha\nKenna\nKris\nLatonya\nLorrie\nMara\nMarian\nMarina\nMarlene\nMelodie\nMisti\nMona\nOlga\nPaulette\nPriscilla\nRosalie\nSacha\nShaunna\nShonna\nSondra\nStacia\nSue\nSusanna\nSuzanna\nTanisha\nTasha\nTawnya\nTessa\nTrista\nTrudy\nVivian\nJennifer\nMichelle\nHeather\nAmy\nMelissa\nKimberly\nLisa\nAngela\nRebecca\nStephanie\nJessica\nSarah\nChristina\nShannon\nNicole\nElizabeth\nJulie\nKelly\nLaura\nAndrea\nApril\nRachel\nTammy\nChristine\nMary\nTanya\nDawn\nPatricia\nSara\nTina\nErin\nWendy\nCarrie\nSusan\nAmanda\nTara\nTracy\nHeidi\nBrenda\nKaren\nLori\nAmber\nDanielle\nMelanie\nStacey\nMonica\nStacy\nCrystal\nJill\nTamara\nDenise\nMaria\nCynthia\nKatherine\nEmily\nKristin\nRenee\nRobin\nSandra\nMisty\nAnna\nBrandy\nKristen\nTeresa\nDana\nMegan\nTiffany\nVictoria\nBrandi\nGina\nHolly\nKristina\nTheresa\nDeanna\nPamela\nValerie\nCatherine\nDeborah\nChristy\nKathleen\nShelly\nTonya\nJodi\nKendra\nShawna\nBarbara\nPaula\nJamie\nLeslie\nErica\nKathryn\nNatalie\nAlicia\nAllison\nRhonda\nVeronica\nCourtney\nMichele\nDiana\nMelinda\nKristi\nSuzanne\nMargaret\nRobyn\nSherry\nCheryl\nCindy\nDesiree\nKristine\nAnne\nLeah\nJulia\nNancy\nRegina\nSheila\nAnn\nBrooke\nKara\nLinda\nStacie\nBecky\nColleen\nConnie\nDebra\nBonnie\nBridget\nJody\nKrista\nSharon\nAnnette\nCarla\nDiane\nJenny\nAlison\nCharlotte\nKirsten\nLaurie\nMolly\nSheri\nChristie\nKari\nKristy\nNichole\nTracey\nVanessa\nJacqueline\nToni\nAimee\nCharlene\nJoy\nSherri\nTricia\nCarolyn\nCharity\nJeanette\nKerry\nKim\nCandice\nErika\nFelicia\nJanelle\nJanet\nJolene\nKelli\nKerri\nKristie\nRachael\nRoberta\nSamantha\nAshley\nCarol\nDonna\nKatie\nKatrina\nKeri\nKimberley\nYvonne\nBernadette\nBeth\nGretchen\nJuanita\nKathy\nRebekah\nTerri\nYolanda\nAngie\nCeleste\nFrances\nGloria\nJoanna\nMelody\nMindy\nShana\nShanna\nShauna\nShelley\nSonya\nVirginia\nAmie\nAngel\nAngelina\nJean\nNaomi\nNatasha\nTerra\nTraci\nBobbie\nCassandra\nChandra\nJudy\nKelley\nNikki\nRuth\nTonia\nAudrey\nCasey\nCheri\nChrista\nLara\nLynn\nRochelle\nTami\nBethany\nDebbie\nMarcy\nMartha\nMiranda\nSonja\nStefanie\nAlice\nAnita\nAudra\nAutumn\nCarmen\nDorothy\nJackie\nKarla\nLynette\nMarie\nRachelle\nRose\nShawn\nSonia\nStaci\nTammie\nVicki\nAdrienne\nAlexis\nAntoinette\nBrook\nChristi\nJenifer\nLeigh\nMonique\nSylvia\nBillie\nCandace\nDanelle\nDena\nHope\nJana\nJosephine\nKellie\nLaurel\nLeticia\nLoretta\nMarsha\nMeredith\nNina\nPeggy\nRene\nShelby\nTrina\nAlisa\nBeverly\nCara\nCarly\nClaudia\nDarcy\nElena\nJanice\nJennie\nJoann\nJodie\nKori\nMarci\nMarlene\nPriscilla\nRamona\nRoxanne\nSabrina\nShirley\nTera\nTracie\nYvette\nAngelique\nBobbi\nCarey\nChanda\nChelsea\nCherie\nDarlene\nElaine\nHilary\nIrene\nMarcia\nRosa\nTabitha\nTasha\nTeri\nTrisha\nAlisha\nAubrey\nCory\nEllen\nEricka\nGinger\nJeanine\nJeannette\nJoey\nKarie\nKerrie\nLena\nLydia\nMeghan\nNorma\nRita\nRonda\nSheryl\nTawnya\nVickie\nAbigail\nAlethea\nAlexandra\nBlanca\nCorina\nDarla\nDeana\nElisa\nEsther\nGabrielle\nGuadalupe\nJeannie\nJenna\nJoan\nJoanne\nKatharine\nLana\nLeanne\nLora\nLucinda\nMandy\nMariah\nMelisa\nNakia\nPaige\nRuby\nSadie\nSally\nShanda\nTammi\nTamra\nTisha\nTonja\nVivian\nWendi\nAlyssa\nAngelia\nAngelica\nAthena\nBritt\nCamille\nCari\nCarie\nCassie\nChantel\nClaire\nCristina\nDanette\nDeann\nDeena\nFaith\nGail\nHelen\nIvy\nJanette\nJessie\nJocelyn\nJohanna\nJoyce\nJudith\nKarin\nKira\nLea\nLeann\nLee\nLorie\nLynnette\nMalinda\nMarcie\nMarilyn\nMaureen\nNora\nPenny\nRosemarie\nRosemary\nTamera\nTania\nVicky\nAlaina\nAndria\nAntonette\nAntonia\nAurora\nBree\nCathleen\nCelina\nChristian\nChristin\nDarcie\nDayna\nDianna\nDina\nDolores\nEva\nEvelyn\nGenevieve\nGwendolyn\nHolli\nJami\nJane\nJanine\nJeanne\nKami\nKarissa\nKarrie\nKimberlee\nLesley\nMarcella\nMarisa\nMarla\nMarti\nMindi\nMyra\nNadine\nNicol\nOlga\nPaulette\nPauline\nPearl\nRandi\nRena\nRyan\nSharla\nShellie\nSunshine\nSuzette\nAbby\nAdriana\nAlana\nAlexa\nAlysia\nAna\nAngelita\nAngella\nAnnamarie\nAntionette\nBambi\nBeatrice\nBernice\nBetty\nBrandie\nBrigette\nBuffy\nCandy\nCaroline\nCathy\nChasity\nChastity\nChristen\nChrystal\nClaudine\nConsuelo\nDara\nDarcey\nFawn\nGeorgina\nGlenda\nGraciela\nHollie\nJanel\nJanie\nJenelle\nJohn\nJuliet\nKasey\nKatina\nKyla\nLauren\nLeona\nLindsey\nLorraine\nMarina\nMarjorie\nMarlena\nMarlo\nMarnie\nMichell\nMorgan\nNiki\nRichelle\nRosalie\nRoxann\nSandy\nSelena\nSerena\nShari\nSherrie\nStella\nStephani\nTessa\nTia\nTiffani\nToby\nValentina\nValorie\nVenus\nJennifer\nHeather\nAmy\nMichelle\nMelissa\nAngela\nLisa\nRebecca\nSarah\nJessica\nStephanie\nKimberly\nNicole\nChristina\nJulie\nElizabeth\nAmanda\nKelly\nRachel\nShannon\nAndrea\nLaura\nMary\nDawn\nAmber\nChristine\nErin\nMaria\nCarrie\nTanya\nTiffany\nHeidi\nTracy\nTina\nHolly\nApril\nSusan\nTammy\nTara\nStacy\nSara\nKatherine\nWendy\nBrenda\nStacey\nEmily\nMelanie\nDanielle\nJamie\nKaren\nMonica\nJill\nMisty\nBrandy\nMichele\nCynthia\nGina\nCrystal\nRobin\nTamara\nDenise\nLori\nBrandi\nMegan\nValerie\nKristin\nAlicia\nPatricia\nTonya\nRenee\nMandy\nSandra\nAnna\nAnn\nShawna\nChristy\nDana\nJodi\nSamantha\nCatherine\nDeborah\nErica\nKristina\nTheresa\nKathleen\nNatalie\nLeslie\nTeresa\nJacqueline\nKendra\nPamela\nKara\nAllison\nRegina\nVictoria\nAnne\nBarbara\nErika\nKari\nPaula\nShelly\nRhonda\nVanessa\nKathryn\nNichole\nKatrina\nKristen\nVeronica\nDonna\nJoy\nLeah\nLinda\nMargaret\nCourtney\nDeanna\nKrista\nAimee\nBrooke\nSheila\nSherry\nAlison\nCindy\nDebra\nKristi\nCarolyn\nJolene\nJulia\nAshley\nChandra\nCheryl\nMolly\nStacie\nAnnette\nCassandra\nJenny\nJody\nNancy\nSharon\nKatie\nConnie\nSuzanne\nYolanda\nBeth\nChristie\nDiana\nMelinda\nMindy\nNaomi\nNikki\nSherri\nBonnie\nBridget\nDesiree\nJeannie\nLaurie\nRachael\nShelley\nSheri\nAutumn\nSonia\nToni\nTracey\nYvette\nAngie\nCarol\nChrista\nJoanna\nKristie\nKristine\nVirginia\nAnita\nBecky\nCarmen\nCharity\nColleen\nNatasha\nSonya\nSummer\nTerri\nTraci\nTrisha\nAngelica\nAntoinette\nCara\nKristy\nLara\nLynn\nAngel\nBillie\nBobbi\nGretchen\nJackie\nKelli\nMelody\nMeredith\nRoberta\nCarla\nCharlene\nDarcy\nHannah\nTricia\nYvonne\nAudrey\nCandace\nCarey\nJennie\nKathy\nKeri\nKerry\nMiranda\nOlivia\nRobyn\nSerena\nShana\nTonia\nAdrienne\nAlexis\nCandice\nCasey\nKarla\nKimberley\nMandi\nMarie\nPenny\nRachelle\nRuth\nShauna\nStaci\nTeri\nAmie\nBrandie\nCathy\nCharlotte\nFelicia\nFrances\nGinger\nHope\nJaime\nJanelle\nJanet\nJeanette\nJenifer\nJoyce\nKirsten\nLynette\nRebekah\nTami\nTaryn\nTrina\nAlisha\nBernadette\nDiane\nDorothy\nJodie\nKim\nLeigh\nStefanie\nVicki\nBelinda\nCaroline\nCheri\nChristi\nCori\nDanelle\nEllen\nGwendolyn\nJami\nJuanita\nKasey\nKelley\nMarcie\nMeghan\nMichael\nRaquel\nShanna\nTawnya\nTerra\nAlexandra\nAngelina\nBethany\nBobbie\nCeleste\nClaudia\nDarlene\nGenevieve\nIrene\nJana\nJanice\nJean\nJeanne\nJenna\nJoann\nKarrie\nLindsey\nMarla\nMelisa\nMonique\nPeggy\nPriscilla\nRita\nTasha\nAlyssa\nCarissa\nCherie\nCory\nCristina\nElisa\nJane\nKellie\nLaurel\nLesley\nLindsay\nLoretta\nLorraine\nMarsha\nMartha\nRamona\nRene\nRochelle\nRonda\nRose\nRoxanne\nShawn\nTabatha\nTisha\nAlisa\nAllyson\nAmelia\nAngelique\nAnnie\nBridgette\nDeana\nDena\nDina\nFaith\nJessie\nJosephine\nKami\nLacey\nLana\nMara\nMarci\nMeagan\nNina\nSylvia\nTia\nAlissa\nAna\nAngelia\nAudra\nBetty\nCassie\nConsuelo\nDebbie\nDianna\nElena\nGabrielle\nGail\nGloria\nHillary\nHollie\nJanna\nJeana\nJo\nJoey\nJoleen\nLeann\nLeticia\nMia\nPaulette\nRenae\nSabrina\nSheryl\nStephany\nSunshine\nTamra\nTobi\nTracie\nWendi\nZoe\nBeverly\nBriana\nCamille\nCari\nChantel\nClaire\nCorinne\nCorrie\nDeann\nElisha\nElissa\nGena\nGeorgia\nHilary\nIrma\nJanell\nJoan\nJohanna\nKerri\nKrystal\nLauren\nLeanna\nLeanne\nLucinda\nMarlene\nMarlo\nMisti\nMollie\nNorma\nSasha\nShelby\nSherrie\nShirley\nSonja\nTabitha\nTammi\nTessa\nTori\nUrsula\nValarie\nWindy\nAbby\nAbigail\nAlice\nAmi\nAntonia\nBrenna\nBuffy\nCecilia\nChanda\nChelsea\nClarissa\nElaine\nEmma\nEsther\nFrancesca\nHelen\nIsabel\nJacquelyn\nJanae\nJanel\nJolynn\nJoni\nKarin\nKaryn\nKaty\nKimberlee\nKira\nKirstin\nKori\nLacy\nLetitia\nLora\nMaggie\nMarjorie\nMaureen\nMichaela\nMona\nPaige\nRosa\nRuby\nSally\nShelia\nTammie\nTania\nVickie\nViolet\nVivian\nAdriana\nAdrianne\nAlana\nAmity\nAnastasia\nAthena\nBetsy\nCarisa\nCarri\nCharissa\nChasity\nCherish\nChristal\nCinnamon\nColette\nCorey\nCorie\nCorinna\nDanita\nDanyel\nDarla\nDeidre\nDenice\nDolores\nDora\nEileen\nElisabeth\nEve\nGayle\nGlenda\nHarmony\nIngrid\nJanette\nJasmine\nJeri\nJoanne\nJohnna\nJonna\nJune\nJustine\nKate\nKatharine\nKerrie\nKindra\nLanette\nLatoya\nLiza\nLois\nLorna\nLydia\nMandie\nMarcella\nMargarita\nMariah\nMarina\nNellie\nNicol\nNiki\nNora\nPenelope\nRacheal\nRayna\nRichelle\nRosalie\nRyan\nShiloh\nShonda\nSimone\nStella\nSunny\nTanisha\nTera\nVera\nVicky\nJennifer\nAmy\nHeather\nMelissa\nMichelle\nJessica\nSarah\nAngela\nLisa\nStephanie\nJamie\nKimberly\nRebecca\nAmanda\nChristina\nNicole\nJulie\nElizabeth\nAndrea\nLaura\nKelly\nShannon\nAmber\nErin\nSara\nMary\nChristine\nCarrie\nRachel\nJaime\nTiffany\nDawn\nTracy\nStacy\nKatherine\nEmily\nDanielle\nMisty\nMonica\nApril\nTara\nWendy\nMegan\nHeidi\nHolly\nMaria\nAnna\nBrandy\nBrenda\nCrystal\nTanya\nRobin\nJill\nMelanie\nPatricia\nLori\nCynthia\nMichele\nTammy\nKaren\nKristin\nRenee\nStacey\nSusan\nTina\nValerie\nMandy\nNatalie\nChristy\nDenise\nCatherine\nSandra\nAllison\nDana\nAlicia\nLeslie\nBrandi\nKristen\nErica\nShawna\nTeresa\nVeronica\nLindsay\nKathryn\nKathleen\nSamantha\nKristina\nVanessa\nVictoria\nKristi\nPamela\nTamara\nYolanda\nGina\nSheila\nJodi\nMolly\nCourtney\nKatrina\nAimee\nAnne\nCheryl\nDeborah\nKari\nRegina\nCharity\nKara\nKendra\nMargaret\nMelinda\nLinda\nDeanna\nTheresa\nJenny\nKrista\nPaula\nDesiree\nKelli\nTonya\nBrooke\nDiana\nJody\nKristine\nRachael\nAnn\nAshley\nAutumn\nKristy\nNancy\nSharon\nBarbara\nLeah\nMarie\nNichole\nShelly\nBeth\nCarla\nDonna\nRhonda\nSuzanne\nAdrienne\nColleen\nDebra\nJulia\nKatie\nSherry\nTrisha\nAnita\nAudrey\nKerri\nOlivia\nRebekah\nToni\nAmie\nAnnette\nChandra\nJuanita\nLindsey\nAngelica\nAngie\nCandice\nCarmen\nErika\nJolene\nLaurie\nNaomi\nShelley\nAngel\nBridget\nJacqueline\nMiranda\nNatasha\nStacie\nTerri\nTraci\nBecky\nCarolyn\nConnie\nJanelle\nJoanna\nMelody\nRachelle\nSabrina\nShana\nShauna\nTracey\nJennie\nKeri\nMindy\nMonique\nRobyn\nRuth\nSummer\nCaroline\nJoy\nLydia\nSonya\nVirginia\nAlison\nAudra\nCandace\nCara\nCassandra\nFelicia\nGretchen\nKelley\nMeredith\nShanna\nTrina\nBobbi\nBonnie\nCarey\nCasey\nFarrah\nKellie\nLara\nNikki\nRoxanne\nTania\nTricia\nYvonne\nBillie\nCindy\nElisa\nFrances\nGinger\nGloria\nJenifer\nKirsten\nMandi\nMarisa\nMartha\nStaci\nAlisha\nBernadette\nBobbie\nDanelle\nDarcy\nEva\nHope\nRose\nTabitha\nAlice\nAlissa\nBelinda\nBethany\nCeleste\nHannah\nJanice\nKerry\nKim\nSonia\nSylvia\nYvette\nBrandie\nBriana\nCarol\nClaudia\nDena\nElaine\nJackie\nJanet\nJeanette\nJodie\nKarla\nPenny\nRhiannon\nRoberta\nRochelle\nTasha\nTeri\nTracie\nBeverly\nCharlene\nDarlene\nDiane\nIsabel\nJami\nJasmine\nKrystal\nLea\nLena\nLynette\nMeghan\nNina\nRita\nRosa\nSheri\nSherri\nStefanie\nSunshine\nAbigail\nAlexis\nAlma\nCari\nCassie\nChanda\nCharlotte\nCheri\nEbony\nElisabeth\nEllen\nJanell\nJoann\nJoni\nJosephine\nKarin\nKatharine\nKimberley\nKori\nLauren\nMarcie\nPriscilla\nSally\nTanisha\nTia\nValarie\nWendi\nAlexandra\nAlyssa\nAngelina\nBetsy\nCarissa\nChantel\nChrista\nChristi\nChristie\nClaire\nDanette\nDebbie\nGrace\nHilary\nJanel\nJeannie\nJessie\nJoanne\nJoleen\nKarie\nKasey\nKimberlee\nLora\nLoretta\nLynn\nMarcia\nMargarita\nMarianne\nMarissa\nMeagan\nMichael\nSelena\nShantel\nSophia\nAdrianne\nAlisa\nAmi\nChelsea\nCheree\nConstance\nCorrie\nDianna\nDorothy\nDusty\nFaith\nGenevieve\nGeorgia\nHarmony\nHillary\nHollie\nIrene\nJana\nJayme\nJoyce\nJudy\nKate\nKristie\nLorraine\nMackenzie\nMaggie\nMarci\nMollie\nNadia\nPaige\nRuby\nShawn\nTammi\nTaryn\nTonia\nAlana\nAmelia\nAnnie\nAspen\nBianca\nBrianna\nBritta\nCaryn\nCelina\nChastity\nChrystal\nDaniel\nFrancine\nGuadalupe\nHolli\nJean\nJeanne\nLaurel\nLeann\nLee\nLillian\nLindy\nMarsha\nMelisa\nMichaela\nNorma\nPeggy\nRaquel\nRenae\nSandy\nSelina\nShelby\nSimone\nTami\nTerra\nTessa\nTori\nAna\nAndria\nAntoinette\nAntonia\nBree\nBrenna\nBrittany\nBrook\nCecilia\nCherie\nConsuelo\nCristina\nDavid\nDeana\nEricka\nGail\nGena\nGwendolyn\nHelen\nJaimie\nJanette\nJanna\nJoey\nJordan\nJustina\nKathy\nKaty\nLarissa\nLeticia\nLorena\nMalinda\nMara\nMarcy\nMarlena\nMellisa\nMia\nMyra\nNadine\nNoelle\nPolly\nRena\nRobert\nRonda\nRoxann\nSasha\nShanda\nSonja\nSunny\nTamra\nTennille\nTera\nVicki\nAdriana\nAngeline\nAngelique\nAubrey\nBeatrice\nBetty\nCamilla\nCandida\nCarly\nCathy\nCatrina\nCelia\nClare\nClaudette\nCorrine\nDani\nDaniela\nDannielle\nDarla\nDeann\nDeidra\nDeidre\nDina\nDolores\nDorian\nEileen\nEmma\nEsther\nJammie\nJanae\nJanie\nJanine\nJenelle\nJenna\nJeremy\nJeri\nJoan\nJulianne\nKacey\nKandi\nKarri\nKayla\nKelsey\nKindra\nKyla\nLatoya\nLesley\nLorie\nLucinda\nManda\nMarcella\nMariah\nMarian\nMartina\nMaureen\nMichell\nMindi\nMisti\nMoriah\nPaulette\nPauline\nRegan\nRikki\nSadie\nSalina\nShandra\nSondra\nSuzette\nTammie\nTerry\nTiffanie\nTravis\nVenessa\nJennifer\nJessica\nHeather\nMelissa\nAmy\nSarah\nMichelle\nLisa\nAngela\nRebecca\nAmanda\nNicole\nJamie\nKelly\nKimberly\nStephanie\nAndrea\nElizabeth\nChristina\nShannon\nAmber\nErin\nLaura\nSara\nJulie\nRachel\nCarrie\nCrystal\nTara\nKatherine\nDanielle\nTiffany\nMary\nApril\nHolly\nMisty\nKaren\nMegan\nDawn\nChristine\nEmily\nAlicia\nJill\nMaria\nMelanie\nErica\nBrandy\nPatricia\nMonica\nJaime\nStacy\nSusan\nAllison\nTanya\nAnna\nNatalie\nTammy\nSabrina\nCourtney\nHeidi\nStacey\nTamara\nWendy\nGina\nKristina\nKathryn\nKristin\nRenee\nTracy\nCynthia\nTina\nMandy\nValerie\nVictoria\nLori\nVeronica\nBrooke\nDenise\nJenny\nKatie\nLindsay\nSandra\nVanessa\nBrenda\nKendra\nLeslie\nLeah\nShawna\nBrandi\nCatherine\nChristy\nKristen\nKristy\nMichele\nDana\nKelli\nRobin\nJodi\nAimee\nKathleen\nSamantha\nMelinda\nTonya\nAnn\nDeborah\nKara\nKristi\nErika\nKatrina\nLinda\nNichole\nDeanna\nJacqueline\nTheresa\nPaula\nSummer\nAnne\nCheryl\nDiana\nKari\nMolly\nTeresa\nAlisha\nAshley\nAdrienne\nKrista\nLindsey\nNaomi\nNatasha\nShelly\nYolanda\nJulia\nKelley\nBarbara\nColleen\nJoy\nMargaret\nSuzanne\nMarie\nPamela\nRachael\nSheila\nKristie\nShanna\nTrisha\nBeth\nCarolyn\nRegina\nConnie\nDesiree\nMonique\nRebekah\nToni\nAlison\nBridget\nCassandra\nFelicia\nJolene\nKellie\nCarla\nDebra\nJenifer\nLauren\nAngie\nAnnette\nBillie\nDonna\nJanelle\nMelody\nRhiannon\nSherry\nAutumn\nJaclyn\nJoanna\nKate\nRhonda\nShana\nBecky\nCharity\nChristie\nJody\nKirsten\nMarisa\nMeredith\nMindy\nVirginia\nAisha\nAngel\nBonnie\nGretchen\nKeri\nKristine\nLaurie\nShauna\nStacie\nTracey\nAngelina\nAudrey\nBernadette\nBethany\nCindy\nJeanette\nJuanita\nNancy\nRoberta\nRobyn\nSharon\nSonia\nAmelia\nCara\nCarmen\nCharlene\nDiane\nKrystal\nMeghan\nNikki\nStaci\nAbigail\nBobbie\nCandace\nHillary\nKerri\nLara\nLora\nMarissa\nTaryn\nTerri\nYvonne\nAlissa\nAmie\nAnita\nBeverly\nCasey\nFarrah\nGinger\nJanet\nJillian\nRose\nRuth\nSommer\nSonja\nSylvia\nTraci\nTricia\nTrina\nYvette\nAlexis\nAlyssa\nAubrey\nCandice\nCarol\nCaroline\nChrista\nHannah\nHilary\nJacquelyn\nJodie\nJoyce\nJudy\nKarla\nMarla\nOlivia\nSally\nSonya\nStefanie\nAlisa\nAntoinette\nCarissa\nEbony\nFrances\nHelen\nJami\nJana\nKarin\nKerry\nMiranda\nRachelle\nRosa\nShelley\nSherri\nTerra\nTonia\nBianca\nBrenna\nBrianna\nCarey\nChelsea\nClaudia\nCristina\nElaine\nEliza\nEsther\nJessie\nKarrie\nKathy\nLeigh\nLesley\nLorena\nLydia\nMandi\nMariah\nMartha\nAdriana\nAlexandra\nAna\nAngelica\nAudra\nBrandie\nBrittany\nBrook\nCathy\nCorinna\nDarla\nElisa\nElisha\nEva\nHarmony\nJayme\nJennie\nJocelyn\nKim\nMarsha\nNoelle\nRaquel\nRita\nSerena\nShawn\nTasha\nTori\nWhitney\nAnnie\nBobbi\nCassie\nCelina\nCharlotte\nDarcy\nHope\nIrene\nJasmine\nJenna\nJoann\nJoleen\nJoni\nJosephine\nLena\nLynn\nMargo\nMaureen\nMelisa\nMisti\nNadine\nRenae\nShelby\nTabitha\nTami\nTia\nTracie\nWendi\nAlice\nChantel\nCorey\nCori\nDeana\nDianna\nEllen\nFawn\nGloria\nIngrid\nJane\nJanell\nKami\nKimberley\nLatisha\nLea\nLucia\nLynette\nMarcia\nMargarita\nMaya\nNina\nPaige\nPeggy\nPriscilla\nSophia\nTabatha\nTanisha\nAdrianne\nAnastasia\nAngelia\nAthena\nBelinda\nBetty\nBree\nCeleste\nChandra\nChristi\nChrystal\nClaire\nDanelle\nDelia\nDorothy\nEricka\nGrace\nHaley\nJanae\nJeanine\nJeanne\nJoanne\nJuliana\nJustine\nKindra\nKira\nKirstin\nLorie\nLorraine\nMarci\nMarcie\nMia\nMichael\nMollie\nNora\nRochelle\nSadie\nSelena\nShannan\nSheri\nSherrie\nStella\nTania\nTera\nTeri\nAbby\nAndria\nBriana\nCandy\nCarmelita\nChanda\nCheri\nChristopher\nDavina\nDevon\nEileen\nElisabeth\nFaith\nGabrielle\nGeneva\nGenevieve\nIvy\nJammie\nJeannette\nJohanna\nKatharine\nKristyn\nLana\nLaurel\nLeann\nLeanne\nLiza\nLynda\nMarcy\nMarina\nMeagan\nNiki\nPenelope\nRae\nRamona\nRene\nRichelle\nRobert\nRuby\nRyan\nSandy\nSheryl\nTammi\nTarrah\nTiffani\nTiffanie\nTisha\nTrista\nVicki\nAdria\nAdriane\nAlma\nAmi\nArianne\nBertha\nBlanca\nBreanne\nBrian\nCarolina\nCaryn\nCherish\nChrissy\nCorrie\nDanica\nDarlene\nDeidre\nDelilah\nDenice\nDina\nElena\nHolli\nHollie\nIris\nIrma\nJaimie\nJamila\nJanel\nJanice\nJo\nJoelle\nJonna\nJudith\nKarey\nKasey\nKimberlee\nLakeisha\nLayla\nLeanna\nLee\nLiliana\nLouise\nLucinda\nMaggie\nMarcella\nMarjorie\nMartina\nMercedes\nMerideth\nMiriam\nNadia\nNicolle\nNorma\nRacheal\nRonda\nSalena\nSasha\nSelina\nShantel\nSheena\nStacia\nStephenie\nSusannah\nSusanne\nTamera\nTerry\nWillow\nJennifer\nJessica\nMelissa\nSarah\nHeather\nMichelle\nAmy\nNicole\nStephanie\nAmanda\nAngela\nLisa\nElizabeth\nAndrea\nKimberly\nChristina\nJamie\nErin\nRebecca\nKelly\nCrystal\nAmber\nSara\nLaura\nRachel\nJulie\nShannon\nKatherine\nEmily\nTiffany\nMary\nMegan\nChristine\nTara\nApril\nErica\nDanielle\nMonica\nCarrie\nAnna\nHeidi\nMaria\nKaren\nKathryn\nMelanie\nKelli\nBrandy\nTanya\nNatalie\nDawn\nAlicia\nJill\nMisty\nLori\nStacy\nSusan\nKristina\nStacey\nLindsey\nBrooke\nJaime\nNichole\nHolly\nKristin\nTracy\nCourtney\nDesiree\nValerie\nLindsay\nSandra\nCynthia\nKristen\nSabrina\nJulia\nVanessa\nKatie\nAllison\nBrenda\nCheryl\nTamara\nVictoria\nWendy\nAnne\nCatherine\nChristy\nMelinda\nMolly\nRenee\nTammy\nPatricia\nSamantha\nTina\nGina\nKathleen\nBrandi\nLeslie\nDana\nKristi\nRobin\nAshley\nTeresa\nJenny\nKendra\nKristy\nMandy\nLeah\nRegina\nDenise\nDiana\nJacqueline\nTheresa\nTonya\nShawna\nBeth\nKari\nVeronica\nCassandra\nNancy\nLinda\nPamela\nAutumn\nMindy\nMargaret\nShanna\nBarbara\nJodi\nKrista\nSummer\nAdrienne\nDeborah\nFelicia\nKara\nKelley\nMeghan\nMichele\nOlivia\nSuzanne\nAimee\nAlison\nErika\nRebekah\nStacie\nAlisha\nCharity\nCindy\nDeanna\nKristine\nRobyn\nCandice\nCarolyn\nColleen\nJaclyn\nJanelle\nKatrina\nLauren\nNaomi\nMonique\nNatasha\nSharon\nAnn\nAudrey\nCasey\nJanet\nJolene\nKrystal\nShana\nSonia\nSonya\nYvonne\nAngelina\nJody\nJoy\nMarie\nRachael\nShelly\nAnnette\nBridget\nMiranda\nAngel\nCandace\nDebra\nDonna\nHilary\nKeri\nKerri\nTrisha\nAudra\nBethany\nCara\nCheri\nJenifer\nJennie\nKirsten\nNikki\nYolanda\nAbigail\nCarmen\nCharlotte\nMarisa\nRhonda\nRuth\nSheila\nToni\nTracey\nVirginia\nAnita\nBonnie\nBrittany\nChandra\nPaula\nRachelle\nShauna\nSherry\nAlyssa\nClaudia\nConnie\nGinger\nLaurie\nRoberta\nRose\nTabitha\nBernadette\nBillie\nChristi\nElisha\nEva\nJessie\nJillian\nTraci\nWhitney\nBecky\nBriana\nCarol\nChelsea\nChrista\nDiane\nGretchen\nHope\nJasmine\nJoanna\nJuanita\nKellie\nKristie\nMandi\nMarsha\nRhiannon\nShelley\nTrina\nAdrianne\nAntoinette\nAubrey\nBobbie\nCarla\nCarly\nChrystal\nCristina\nDevon\nJami\nJosephine\nLeigh\nSally\nStefanie\nBrandie\nElaine\nGenevieve\nGloria\nJana\nJeanette\nJodie\nKate\nKerry\nLara\nMelody\nTracie\nTricia\nAngie\nCaroline\nChristie\nDarcy\nElisa\nEllen\nEmma\nHannah\nHollie\nJanice\nKarla\nLatasha\nLydia\nMollie\nSonja\nStaci\nTami\nTerra\nTerri\nTia\nYvette\nAlexis\nAmelia\nAmie\nBrianna\nCamille\nCorina\nCorinne\nCory\nDarlene\nDominique\nEbony\nEsther\nGrace\nHillary\nJade\nJayme\nJocelyn\nKatharine\nKaty\nKimberley\nLana\nMarlena\nMaureen\nMelisa\nMeredith\nRochelle\nRosa\nTasha\nValarie\nAlice\nAngelica\nAngelique\nBelinda\nBianca\nBobbi\nCari\nCarissa\nCatrina\nDanette\nDebbie\nElisabeth\nFaith\nJanell\nJenna\nLacy\nLynn\nMarissa\nMartha\nMeagan\nMichael\nNina\nRoxanne\nRuby\nShelby\nSheri\nSherri\nTaryn\nTera\nAdrian\nAlisa\nAllyson\nAnnie\nCassie\nCeleste\nChasity\nConsuelo\nCorrie\nCorrine\nDeana\nGabrielle\nGail\nGena\nIvy\nJacquelyn\nJanel\nJason\nJoann\nJoni\nKami\nKim\nKimberlee\nMorgan\nPaige\nPriscilla\nShayna\nSheryl\nSylvia\nTamra\nWendi\nAisha\nAlissa\nAntonia\nBetsy\nBeverly\nCathy\nColeen\nDesirae\nDestiny\nElena\nHaley\nJanuary\nJean\nJeannine\nKarrie\nKathy\nKristal\nLesley\nLindy\nMalia\nMarci\nMariah\nMindi\nMiriam\nNorma\nRamona\nRandi\nRaquel\nRene\nShanda\nShantel\nSophia\nTeri\nAbby\nAdria\nAdriana\nAlana\nAlexandra\nAmi\nAna\nAndra\nBambi\nBernice\nBlanca\nBree\nBrenna\nCasandra\nCharlene\nChrissy\nClaire\nCori\nDani\nDara\nDarla\nDianna\nFrances\nGeorgia\nGlenda\nHayley\nJackie\nJacklyn\nJeanine\nJoanne\nJohn\nJordan\nJustina\nKarin\nKarina\nKasey\nKayla\nKeely\nKylie\nLacey\nLacie\nLaurel\nLea\nLeann\nLeanna\nLeanne\nLeila\nLorena\nLynette\nMaggie\nMaranda\nMarcy\nMargarita\nMicah\nMikki\nMisti\nNatisha\nNellie\nNiki\nNoelle\nRaina\nRita\nRyan\nSadie\nSasha\nSelena\nSerena\nShirley\nStarla\nTamika\nTessa\nTisha\nTosha\nAbbey\nAdrianna\nAlecia\nAlexandria\nBrittney\nCarisa\nCarole\nCelina\nCherie\nCorey\nDanelle\nDarci\nDeidra\nDeidre\nDolores\nDorothy\nElaina\nEleanor\nEvelyn\nGabriel\nGuadalupe\nHolli\nIrene\nIsabel\nJanine\nJanis\nJenniffer\nJeri\nJesse\nJoey\nJudith\nJulianne\nKindra\nKirstin\nLadonna\nLee\nLeeann\nLeticia\nLinsey\nLiza\nLoretta\nLucinda\nLynsey\nMackenzie\nMarcia\nMarianne\nMarilyn\nMarjorie\nMaryjo\nMaxine\nMaya\nMeaghan\nNoel\nQiana\nRaven\nRosalie\nRyann\nSalina\nSamara\nSandy\nSelina\nTalia\nTania\nTawny\nTawnya\nTori\nVenessa\nJennifer\nMelissa\nAmanda\nJessica\nSarah\nNicole\nMichelle\nHeather\nAmber\nAmy\nElizabeth\nStephanie\nChristina\nLisa\nJamie\nAngela\nRebecca\nKimberly\nErin\nCrystal\nAndrea\nKelly\nLaura\nShannon\nSara\nRachel\nMegan\nJulie\nTiffany\nApril\nKatherine\nDanielle\nMary\nCarrie\nEmily\nAlicia\nHolly\nKatie\nMaria\nKathryn\nChristine\nTara\nMelanie\nAnna\nBrooke\nDawn\nErica\nLindsay\nVanessa\nLindsey\nMonica\nTracy\nMisty\nLori\nStacy\nBrandy\nKristina\nSusan\nAnne\nLauren\nValerie\nCourtney\nDesiree\nKaren\nLeslie\nAshley\nJill\nCatherine\nAllison\nKristin\nHeidi\nCynthia\nSamantha\nStacey\nTina\nVeronica\nBrandi\nKristen\nDana\nKendra\nNatalie\nSandra\nKrista\nLeah\nPatricia\nTheresa\nMindy\nMolly\nRenee\nGina\nNichole\nWendy\nVictoria\nRobin\nMeghan\nAdrienne\nJaime\nShawna\nBrianne\nTamara\nMandy\nSabrina\nTanya\nTammy\nBrenda\nCheryl\nDeborah\nKathleen\nKatrina\nLinda\nAimee\nAlisha\nAlison\nMargaret\nJacqueline\nJulia\nPamela\nBarbara\nCassandra\nKristi\nDenise\nKristy\nRebekah\nMarie\nMelinda\nRachael\nTeresa\nBethany\nChristy\nTonya\nDiana\nJenny\nFelicia\nAudrey\nJodi\nAlyssa\nErika\nJoy\nKara\nMichele\nMonique\nAnn\nBeth\nNancy\nShauna\nAutumn\nBrianna\nPaula\nRegina\nShanna\nSheila\nSummer\nYolanda\nHillary\nJaclyn\nJanelle\nAbigail\nKate\nMeredith\nNaomi\nAngelica\nAubrey\nHannah\nKelley\nTabitha\nAudra\nKari\nMarissa\nNatasha\nRobyn\nSuzanne\nKellie\nKirsten\nMarisa\nMiranda\nSharon\nToni\nYvonne\nAmie\nAngel\nCasey\nHilary\nKristine\nNikki\nShelly\nStacie\nBonnie\nBridget\nCandice\nCara\nColleen\nDonna\nRoxanne\nTrisha\nBrittany\nCarolyn\nChrista\nDiane\nJami\nKelli\nLaurie\nMelody\nRuth\nSonya\nCandace\nChristie\nJody\nJolene\nKrystal\nLacey\nVirginia\nAngelina\nAnnette\nBriana\nCarla\nCassie\nCindy\nDeanna\nDebra\nRochelle\nSonja\nTraci\nAmelia\nDarcy\nGrace\nJuanita\nKatharine\nKathy\nLeticia\nLynette\nOlivia\nRoberta\nRose\nSherry\nTasha\nAlexis\nAlissa\nAngie\nAnita\nAspen\nBecky\nBernadette\nBobbi\nCecilia\nCharity\nClaire\nClaudia\nCristina\nJackie\nJenna\nLara\nMariah\nMorgan\nPriscilla\nRachelle\nRhiannon\nConnie\nJanet\nJenifer\nJennie\nJessie\nKyla\nLynn\nSelena\nTracey\nAlisa\nAnnie\nChandra\nGloria\nHope\nJasmine\nMeagan\nSerena\nSheri\nTerri\nWhitney\nAbbie\nAdrianne\nBobbie\nCarissa\nCarol\nChelsea\nCherie\nElisabeth\nElisha\nEsther\nIvy\nJanice\nJayme\nJillian\nJoanna\nJocelyn\nJosephine\nKaty\nKristie\nMarcia\nMartha\nRhonda\nSandy\nSasha\nShawn\nShelley\nSylvia\nTera\nTerra\nTonia\nAbby\nAisha\nAlexandra\nAntoinette\nBianca\nCarly\nCaroline\nChanda\nCharlotte\nDanelle\nElena\nElisa\nEllen\nLaurel\nMarlena\nShana\nSonia\nStefanie\nTia\nYvette\nAdriana\nAthena\nBillie\nCarmen\nEbony\nGabrielle\nGenevieve\nGuadalupe\nHaley\nJana\nJanel\nJanell\nJeanette\nKeri\nKerry\nKylie\nLacy\nLea\nLeanne\nLindy\nMandi\nRena\nRosa\nStaci\nTabatha\nTami\nTricia\nBelinda\nCheri\nCorey\nCorinne\nDarlene\nDestiny\nElissa\nEmma\nFaith\nHarmony\nJanna\nKristal\nLeigh\nLydia\nMaggie\nMarcie\nMaureen\nMelisa\nNadine\nNina\nNorma\nPaige\nRaquel\nSadie\nShirley\nTracie\nAlana\nAlysia\nDesirae\nDevin\nDevon\nEricka\nEva\nGretchen\nGwendolyn\nJean\nJoann\nJoanne\nJosie\nJudy\nKarla\nKasey\nKim\nKindra\nLee\nLesley\nLora\nMalissa\nMarci\nMeghann\nMia\nMichael\nRamona\nRegan\nRichelle\nRosemary\nRyan\nSally\nSherri\nTrina\nValarie\nAaron\nAlesha\nAllyson\nBrandie\nBreanne\nCandy\nCari\nCathy\nCeleste\nCelina\nChristian\nDavina\nDena\nDianna\nElaine\nEsperanza\nEve\nEvelyn\nGabriela\nHelen\nIsabel\nJade\nJames\nJohnna\nJoyce\nJudith\nKacey\nKerri\nKimberlee\nLena\nMalia\nMargarita\nMindi\nNicolette\nNoelle\nRita\nRosalie\nRuby\nRyanne\nShelby\nSilvia\nTana\nTania\nVicki\nAlanna\nAlma\nAnastasia\nAntonia\nBetsy\nBeverly\nBree\nBrittney\nCamille\nCatrina\nCelena\nChasity\nChristi\nChrystal\nCori\nCorrie\nCory\nDebbie\nElise\nFrances\nFrancesca\nFrancine\nGail\nHollie\nIrene\nIrma\nJane\nJanette\nJanine\nKassandra\nKayla\nKeli\nKelsey\nKisha\nLana\nLarissa\nLatasha\nLeann\nLeilani\nLucia\nLynda\nLyndsey\nMarina\nMarisol\nMarlene\nMaura\nMaya\nMisti\nMona\nNadia\nPeggy\nPenny\nRandi\nRenae\nRonda\nRosanna\nSheryl\nSimone\nSondra\nSophia\nSusanna\nSusannah\nTamra\nTaryn\nTiana\nAbbey\nAraceli\nArlene\nAudrea\nBetty\nBrenna\nCaitlin\nCarey\nChantel\nChrissy\nChristin\nClarissa\nColette\nDarci\nDayna\nDolores\nDominique\nDori\nEileen\nEmmy\nEryn\nEsmeralda\nEstrella\nGeorgia\nGillian\nGinger\nIris\nJacquelyn\nJeanna\nJeannine\nJenni\nJessi\nJodie\nJoleen\nKandi\nKarin\nKarrie\nKellee\nKori\nKyra\nLatisha\nLeanna\nLeeann\nLeila\nLetitia\nLily\nLoni\nLorena\nLucinda\nLynsey\nMara\nMarcella\nMarcy\nMaribel\nMarta\nMeaghan\nMollie\nNora\nOlga\nQuinn\nRacheal\nRae\nRaina\nReagan\nSherrie\nSierra\nSkye\nSunshine\nTessa\nTiffani\nTressa\nValentina\nVenus\nWinter\nJennifer\nJessica\nSarah\nAmanda\nMelissa\nMichelle\nNicole\nHeather\nAmber\nStephanie\nErin\nElizabeth\nKimberly\nLisa\nAmy\nChristina\nCrystal\nJamie\nRebecca\nLaura\nTiffany\nKelly\nAngela\nSara\nAndrea\nMegan\nRachel\nShannon\nEmily\nApril\nJulie\nDanielle\nKatherine\nCourtney\nMary\nKristin\nKatie\nBrooke\nKristen\nLindsay\nMaria\nAlicia\nErica\nMonica\nAshley\nChristine\nLauren\nTara\nHeidi\nVanessa\nMelanie\nAllison\nHolly\nLindsey\nNatalie\nKathryn\nKristina\nAnna\nLeah\nLeslie\nPatricia\nNichole\nBrandy\nMisty\nKendra\nDesiree\nCarrie\nMolly\nWendy\nTracy\nSamantha\nTanya\nCynthia\nSandra\nStacey\nAnne\nCandice\nBrandi\nJulia\nBrenda\nKatrina\nKrista\nMonique\nKaren\nMandy\nDawn\nKathleen\nStacy\nValerie\nPamela\nSabrina\nCatherine\nErika\nJill\nKristy\nLori\nSusan\nJacqueline\nKristi\nNatasha\nRenee\nRobin\nTheresa\nTina\nVeronica\nDana\nGina\nAlison\nBrittany\nCassandra\nTamara\nTonya\nVictoria\nKara\nLinda\nMindy\nAutumn\nBarbara\nCheryl\nMeghan\nTammy\nHannah\nMelinda\nDeanna\nJaime\nMargaret\nMiranda\nAlyssa\nBethany\nDenise\nPaula\nJenny\nNaomi\nChristy\nNancy\nRebekah\nAudrey\nRobyn\nShawna\nAlisha\nAngel\nBrianne\nJanelle\nJolene\nKelli\nKellie\nMarie\nRachael\nTrisha\nYolanda\nAimee\nAnn\nJodi\nJoy\nMichele\nSummer\nTeresa\nWhitney\nCandace\nKristine\nShanna\nSuzanne\nBeth\nBrianna\nCasey\nDeborah\nDiana\nRuth\nTia\nCara\nAlexis\nAngelina\nAnnette\nBonnie\nKari\nKate\nTasha\nToni\nBridget\nJuanita\nRegina\nColleen\nDebra\nJasmine\nJenna\nAngelica\nAnnie\nCarolyn\nChelsea\nFelicia\nJaclyn\nMorgan\nPriscilla\nShauna\nSonia\nTerra\nAbigail\nMariah\nMarissa\nSharon\nAdrienne\nBernadette\nBriana\nKelley\nNina\nRhonda\nShelley\nSonya\nStefanie\nBobbie\nCindy\nDiane\nElisabeth\nGenevieve\nHillary\nJami\nJennie\nJoanna\nMarisa\nRose\nVirginia\nAmie\nAnita\nCarla\nCarly\nChandra\nJanet\nJeanette\nJillian\nJordan\nLacey\nLaurie\nLeticia\nMelody\nMeredith\nRandi\nRochelle\nRoxanne\nCaroline\nCharlene\nClaudia\nCorinne\nDonna\nFrances\nJessie\nKelsey\nLatasha\nRhiannon\nRyan\nTabitha\nTraci\nAntoinette\nAudra\nCharity\nElaine\nGretchen\nKerri\nOlivia\nRachelle\nRaquel\nSerena\nSheila\nYvette\nAubrey\nBrandie\nCarmen\nCassie\nChrista\nLarissa\nNikki\nSally\nStacie\nAlissa\nBecky\nBobbi\nCarissa\nCherie\nChrystal\nEbony\nEva\nJanell\nJody\nKeri\nLesley\nLynn\nMisti\nRosa\nSylvia\nTracey\nYvonne\nAlisa\nAna\nBreanne\nJenifer\nKirsten\nKrystal\nLucia\nRita\nShelly\nWendi\nAlexandra\nAllyson\nAlma\nAngelique\nCecilia\nClaire\nCristina\nDorothy\nFaith\nGinger\nGuadalupe\nHelen\nHilary\nJana\nJanel\nJohanna\nJoni\nKimberley\nKristie\nMartha\nNadia\nShelby\nTanisha\nTerri\nValarie\nBianca\nBree\nCaitlin\nCortney\nElena\nGloria\nJanice\nJayme\nJeannette\nKerry\nLara\nLeanne\nLena\nMarcie\nMarina\nNorma\nRenae\nRuby\nSandy\nSasha\nSheri\nSonja\nStaci\nTessa\nAbbey\nAbby\nAlice\nAmelia\nAngie\nCharlotte\nChristi\nChristopher\nConnie\nCory\nDebbie\nEricka\nEsther\nGabrielle\nIsabel\nIvy\nJackie\nJeannie\nKarla\nLaurel\nLeigh\nLoni\nLorraine\nLynette\nMandi\nMarci\nMichael\nRoberta\nShana\nSierra\nTracie\nTricia\nTrina\nVenessa\nBillie\nBrenna\nBrook\nCallie\nCamille\nCarol\nCeleste\nChasity\nCheri\nCorrine\nCristin\nDarcy\nDarlene\nDesirae\nDevon\nDusty\nElisha\nElissa\nEllen\nGrace\nHaley\nJacquelyn\nJane\nJoanne\nKathy\nKeisha\nKindra\nKristal\nLacy\nLindy\nLucinda\nLydia\nMaggie\nMaureen\nMeagan\nNicolette\nRosalie\nRosemary\nSelena\nShanda\nShantel\nSherri\nSherry\nSunny\nTami\nTamika\nTeri\nAdrianne\nAndria\nAntonia\nAshleigh\nBetsy\nBreanna\nBrittney\nCatrina\nCelina\nChantel\nChelsie\nChristie\nClarissa\nCorey\nDara\nDarci\nDavid\nDeidra\nEileen\nElisa\nElise\nEvelyn\nHope\nJoann\nJodie\nJoleen\nJosephine\nJoshua\nJosie\nJulianne\nKyla\nLakisha\nLana\nLatoya\nLeann\nLeanna\nLoretta\nLouise\nLyndsey\nMarlene\nMatthew\nMay\nMeggan\nMelisa\nNoelle\nSalina\nShari\nSophia\nTammie\nTrish\nAdriana\nAlana\nBlanca\nCathryn\nCathy\nChristen\nChristin\nDaisy\nDarla\nDeana\nDena\nDestiny\nEmmy\nFrancine\nFrancis\nGeorgia\nGwendolyn\nHarmony\nHollie\nJean\nJesse\nJocelyn\nJoyce\nJune\nKacey\nKami\nKarin\nKarrie\nKaty\nKim\nKylee\nLea\nLee\nLora\nLynda\nLynne\nMarcy\nMargarita\nMarisol\nMarla\nMeghann\nMia\nNiki\nPatrice\nPaulette\nPeggy\nPenny\nRamona\nSadie\nShea\nSheryl\nTabatha\nTarah\nTaryn\nTera\nAlaina\nAnastasia\nAngeline\nAnthony\nAntionette\nArianna\nAthena\nBeverly\nBridgette\nBritney\nBuffy\nCarey\nCarley\nCarmela\nCherry\nChristal\nConstance\nCora\nCori\nCorrina\nDaniel\nDanyelle\nDayna\nDelia\nDolores\nDominique\nDora\nEdith\nElysia\nEmilie\nFrancisca\nIrene\nJanie\nJason\nJeanine\nJeri\nJudy\nKacie\nKacy\nKatharine\nKay\nKeely\nKimberlee\nKyle\nLatonya\nLucy\nLuz\nMaranda\nMarjorie\nMaya\nMicah\nMichaela\nMina\nMiriam\nMollie\nNora\nPaige\nPauline\nRegan\nRene\nRikki\nRory\nShanell\nShannan\nShay\nShayna\nSheree\nSue\nSunshine\nTai\nTammi\nTania\nTawnya\nTosha\nTrista\nValentina\nWanda\nWinter\nJennifer\nJessica\nSarah\nAmanda\nMelissa\nNicole\nAmber\nStephanie\nElizabeth\nErin\nMichelle\nAmy\nRebecca\nCrystal\nHeather\nTiffany\nLisa\nAngela\nAndrea\nSara\nLaura\nKimberly\nChristina\nRachel\nEmily\nJamie\nDanielle\nMegan\nKelly\nShannon\nApril\nKatherine\nLindsay\nKristen\nMary\nKristin\nJulie\nLindsey\nKatie\nErica\nAshley\nBrandy\nCourtney\nAnna\nLauren\nTara\nChristine\nNatalie\nBrandi\nHolly\nVanessa\nKathryn\nSamantha\nMonica\nBrooke\nAlicia\nKristina\nCarrie\nMaria\nHeidi\nMisty\nDesiree\nStacy\nValerie\nNatasha\nAllison\nMelanie\nCandice\nCassandra\nCatherine\nVictoria\nSusan\nVeronica\nMeghan\nRobin\nAnne\nDawn\nPatricia\nMonique\nSandra\nDana\nKathleen\nLeah\nLeslie\nKendra\nRenee\nTheresa\nJulia\nMolly\nStacey\nTamara\nJill\nMargaret\nCynthia\nTanya\nHannah\nKaren\nErika\nKatrina\nTeresa\nLori\nMiranda\nTina\nBrenda\nDenise\nWendy\nDiana\nKrista\nTammy\nJacqueline\nNaomi\nLinda\nNichole\nPamela\nTracy\nBrittany\nGina\nKara\nRachael\nSabrina\nAlisha\nKelli\nMorgan\nSummer\nBethany\nKristy\nMandy\nStefanie\nAlexis\nAlison\nJanelle\nMarie\nBarbara\nJenny\nTasha\nAbby\nLacey\nMichele\nNancy\nRebekah\nAimee\nBeth\nChristy\nKristi\nKrystal\nAbigail\nDeborah\nJaime\nKate\nMarissa\nShawna\nTonya\nColleen\nJodi\nMelinda\nAudrey\nKari\nTrisha\nFelicia\nJasmine\nPriscilla\nTabitha\nAngelica\nAnn\nCandace\nCara\nCasey\nDonna\nJessie\nJoanna\nJoy\nMeredith\nRegina\nShanna\nVirginia\nAngel\nKristine\nMindy\nRoxanne\nAutumn\nCassie\nCharlotte\nGretchen\nSharon\nAudra\nBobbie\nBrianna\nClaudia\nJaclyn\nPaula\nSophia\nAlexandra\nAlissa\nBriana\nCaroline\nJolene\nRobyn\nRosa\nAdrienne\nAlyssa\nAngelina\nAnnette\nAubrey\nBonnie\nBrianne\nCarly\nDeanna\nGenevieve\nKelsey\nSheila\nJana\nJenna\nMarisa\nNina\nRachelle\nRuth\nCarla\nCheryl\nLara\nMartha\nWhitney\nAdriana\nCharlene\nCindy\nCristina\nJenifer\nKirsten\nRhonda\nShelly\nStacie\nChelsea\nEllen\nJeanette\nKellie\nLaurie\nLorena\nMeagan\nNicolette\nSuzanne\nTricia\nYvonne\nAnita\nAnnie\nBillie\nCarmen\nCarolyn\nDevon\nDiane\nJackie\nJanet\nJennie\nKerri\nLacy\nRita\nRose\nSerena\nSonia\nAmelia\nAntonia\nAshleigh\nEva\nHilary\nKatharine\nKaty\nKeri\nKira\nLarissa\nLatasha\nMandi\nMariah\nOlivia\nRyan\nSelena\nShauna\nSheri\nTerri\nAmie\nAntoinette\nBridget\nCarissa\nClaire\nDena\nFaith\nFrances\nGloria\nJillian\nRandi\nRene\nSylvia\nTessa\nTia\nToni\nTraci\nBernadette\nElisabeth\nElise\nGinger\nJacquelyn\nJordan\nJuanita\nLaurel\nLeticia\nMaggie\nMelody\nNadine\nSally\nSheena\nSonya\nTaylor\nAlaina\nAna\nBecky\nBobbi\nBrandie\nBreanna\nCarol\nChandra\nChrystal\nElisa\nEmma\nJeannette\nJody\nJohanna\nJoni\nJosephine\nJustine\nLatisha\nLesley\nRhiannon\nSandy\nShana\nShelby\nShelley\nTiffani\nAbbey\nAngie\nAthena\nBrenna\nCecilia\nCeleste\nChrista\nChristie\nConnie\nDaisy\nDanelle\nDarcy\nDorothy\nEbony\nFrancine\nJessi\nKacey\nKarla\nKindra\nKristie\nLea\nLucinda\nMarsha\nPaige\nRaquel\nRoberta\nSasha\nShawn\nSonja\nTabatha\nYolanda\nAlanna\nAshlee\nBrittney\nCaitlin\nCorinne\nElaine\nElena\nElisha\nEsther\nGabrielle\nGail\nJami\nJanice\nJayme\nJesse\nJudith\nKacie\nKathy\nKelley\nKiley\nLeanne\nLeigh\nLena\nLuz\nRamona\nRena\nShanda\nSierra\nTeri\nAlana\nAngelique\nAspen\nBianca\nBrook\nCari\nCelia\nCharity\nCheri\nChristen\nCori\nCorrie\nCortney\nDarlene\nDebra\nDianna\nDominique\nElissa\nEvelyn\nGillian\nHaley\nHarmony\nHayley\nJason\nJean\nJocelyn\nJudy\nKandice\nKassandra\nKimberlee\nKyla\nLatoya\nLeeann\nLoretta\nLorraine\nLyndsey\nLynette\nMackenzie\nMara\nMarla\nMaureen\nMeggan\nMelisa\nMichael\nMiriam\nPauline\nRochelle\nRosalie\nShasta\nSherri\nSue\nTashina\nTiana\nTracey\nTrina\nAdrian\nAlice\nAlisa\nBeatrice\nBelinda\nCamille\nCandi\nCasie\nCassidy\nCatrina\nChasity\nCherie\nChristi\nChristin\nClarissa\nConstance\nDeana\nDebbie\nDestiny\nGrace\nHelen\nHillary\nJanna\nJoann\nJodie\nKami\nKim\nKrystle\nKyle\nKyra\nMaranda\nMarcy\nMaren\nMargarita\nMargo\nMia\nMollie\nNoelle\nRosemary\nRuby\nSelina\nSherry\nShiloh\nShirley\nSunshine\nTamika\nTawnya\nYvette\nAdrianne\nAlexa\nAlina\nAllyson\nAngeline\nAriel\nArielle\nArlene\nBettina\nBlanca\nBonny\nBreanne\nBritney\nCarey\nCathryn\nCelina\nChantel\nChantelle\nClara\nCorina\nDara\nDarla\nDolores\nEliza\nEsmeralda\nFawn\nGena\nHollie\nHope\nIvy\nJanell\nKarrie\nKasey\nKathrine\nKerry\nKimberley\nKori\nKristal\nLouisa\nLydia\nLyndsay\nMarci\nMarta\nMelaine\nMyra\nNadia\nNora\nPearl\nRacheal\nShantel\nSherrie\nSofia\nStaci\nSydney\nTami\nTammie\nTania\nTera\nTerra\nTisha\nTosha\nUrsula\nAdria\nAdriane\nAdrianna\nAlejandra\nAngelic\nArianna\nBeverly\nBrandee\nBritta\nBrynn\nCallie\nCheyenne\nChristal\nConsuelo\nCora\nCorie\nCorrine\nCory\nCristin\nCristy\nDanette\nDaniel\nDavid\nDeanne\nDesirae\nEdith\nElsa\nEmilie\nEric\nEsperanza\nFrancesca\nGeorgina\nGuadalupe\nIris\nIrma\nJade\nJamila\nJanae\nJanine\nJena\nJerri\nJo\nJoan\nJulianne\nKarin\nKarissa\nKendall\nKiera\nLakisha\nLana\nLeanna\nLiliana\nLily\nLora\nLouise\nLynn\nMarcie\nMaribel\nMarilyn\nMarina\nMarisol\nMarlena\nMaryann\nMaya\nMckenzie\nMeghann\nMellissa\nMichaela\nNatalia\nNikki\nNikole\nNoel\nNorma\nPeggy\nPenny\nRobert\nShara\nSharla\nShayla\nSheree\nSheryl\nShilo\nSomer\nStacia\nSusanna\nSusanne\nTalia\nTammi\nThea\nTiffanie\nTracie\nVicki\nJennifer\nJessica\nSarah\nAmanda\nNicole\nMelissa\nStephanie\nCrystal\nAmber\nMichelle\nRebecca\nElizabeth\nHeather\nAmy\nErin\nEmily\nLaura\nRachel\nChristina\nAndrea\nSara\nAngela\nJamie\nTiffany\nKimberly\nKatherine\nKelly\nMegan\nAshley\nLisa\nLindsay\nLindsey\nDanielle\nShannon\nJulie\nKristen\nLauren\nMary\nKathryn\nErica\nNatalie\nSamantha\nCourtney\nKristin\nApril\nKatie\nAnna\nTara\nVanessa\nAlicia\nCassandra\nMaria\nBrittany\nDesiree\nBrandi\nChristine\nBrandy\nMonica\nHolly\nLeah\nNatasha\nNichole\nCarrie\nHeidi\nKristina\nMelanie\nValerie\nAllison\nMolly\nPatricia\nKendra\nCandice\nJulia\nVictoria\nLeslie\nCatherine\nKrista\nJacqueline\nDawn\nMisty\nDana\nMargaret\nStacy\nShawna\nAlexis\nVeronica\nHannah\nJill\nRenee\nTheresa\nBrooke\nDiana\nErika\nRachael\nChelsea\nTanya\nCassie\nJillian\nKelli\nLori\nMorgan\nSusan\nKara\nMarie\nTamara\nCandace\nCynthia\nKaren\nKrystal\nMonique\nKari\nPamela\nTeresa\nAnne\nJenny\nMiranda\nStacey\nMeghan\nTina\nBethany\nKathleen\nKatrina\nMelinda\nRobin\nAlisha\nAlison\nAnn\nBrenda\nDenise\nKelsey\nChristy\nJanelle\nTasha\nAudrey\nGina\nLacey\nMandy\nSabrina\nTracy\nWendy\nSandra\nAbigail\nMarissa\nNaomi\nShanna\nAlyssa\nBrianna\nKristi\nShauna\nAdrienne\nKristy\nSheila\nAngelica\nAudra\nJolene\nMichele\nStefanie\nAimee\nCaitlin\nCasey\nJaime\nLinda\nWhitney\nAbby\nAutumn\nCarly\nJessie\nMindy\nPaula\nRebekah\nBarbara\nCara\nDeborah\nFelicia\nAngel\nAubrey\nKate\nLacy\nLara\nSheena\nSuzanne\nTabitha\nAlexandra\nBeth\nColleen\nDeanna\nJenna\nJoanna\nTammy\nTonya\nRachelle\nRandi\nRobyn\nBonnie\nBridget\nCaroline\nClaire\nGloria\nJodi\nKristine\nMeredith\nSummer\nTessa\nBriana\nBrianne\nKatharine\nKelley\nVirginia\nAngelina\nCarla\nChandra\nCristina\nJaclyn\nJacquelyn\nNancy\nOlivia\nBernadette\nCarolyn\nCharlotte\nGretchen\nJami\nJasmine\nKirsten\nMarisa\nRegina\nSharon\nJanet\nLaurel\nMartha\nNina\nToni\nYolanda\nCharity\nCheryl\nDebra\nJane\nJoy\nKellie\nKeri\nShana\nTrisha\nBrittney\nCharlene\nDiane\nEbony\nJennie\nKayla\nLaurie\nMaggie\nMariah\nMeagan\nPriscilla\nRoxanne\nSerena\nShelly\nTaylor\nAlissa\nAnita\nAnnette\nBobbie\nCarol\nDesirae\nElisha\nEva\nJosephine\nKira\nPaige\nRaquel\nRosa\nRuth\nSherry\nTia\nBrandie\nBreanna\nCasandra\nHillary\nJordan\nMelody\nSophia\nTami\nTraci\nCallie\nChelsey\nChrista\nChrystal\nFrances\nGabrielle\nGrace\nHilary\nKacey\nKaty\nKerry\nLeann\nLyndsey\nMelisa\nMichael\nRhiannon\nSonia\nAlana\nAmelia\nAna\nAngelique\nAnnie\nBianca\nBreanne\nBrenna\nCindy\nHaley\nHelen\nHope\nJade\nJana\nJody\nJuanita\nKerri\nLatoya\nLydia\nMiriam\nStaci\nStacie\nTabatha\nYvette\nAlexandria\nAlice\nAntoinette\nAshleigh\nCamille\nCeleste\nClaudia\nDevon\nDonna\nElisabeth\nEllen\nEvelyn\nJeanette\nKyla\nLarissa\nLatisha\nLesley\nLeticia\nLyndsay\nLynette\nNikki\nRita\nSadie\nSasha\nSheri\nSonya\nAbbey\nAllyson\nAngie\nAriel\nAshlee\nCarissa\nCassidy\nCecilia\nCherie\nChristie\nConnie\nDarcy\nDayna\nElena\nHayley\nJanel\nJocelyn\nJoni\nKaleena\nKarla\nKathy\nKim\nKristie\nKrystle\nLeanne\nLee\nLillian\nLynsey\nMaureen\nNadine\nNicolette\nRyan\nShayla\nTaryn\nTerri\nAlexa\nAmie\nBecky\nBobbi\nCarmen\nChristi\nConstance\nCorinne\nDarlene\nElisa\nElissa\nEsther\nFawn\nGuadalupe\nIrene\nIvy\nJanette\nJanice\nJoleen\nLinsey\nLoni\nLorena\nLynn\nMarina\nMollie\nNorma\nRhonda\nRose\nSavannah\nSelena\nShayna\nShelley\nSherri\nSonja\nTeri\nTricia\nTrina\nAdriana\nAndria\nBillie\nBritney\nChantal\nCori\nDaisy\nDanelle\nDena\nDestiny\nDominique\nFaith\nGenevieve\nGinger\nJackie\nJanae\nJanell\nJanna\nJessi\nJodie\nKimberlee\nMackenzie\nMaura\nNadia\nRaven\nRikki\nRoberta\nRochelle\nRosanna\nShea\nTalia\nTania\nTerra\nTiffani\nYvonne\nAlisa\nArielle\nAshlie\nCari\nCathy\nChasity\nCheri\nChristen\nChristin\nColette\nCorrie\nCortney\nDara\nDarcie\nDeidre\nDina\nDolores\nDorothy\nEileen\nElise\nEmma\nEricka\nGeorgia\nJason\nJenifer\nJesse\nJohanna\nJudy\nKami\nKindra\nKristal\nMandi\nMarilyn\nMercedes\nMia\nMichaela\nRae\nRhianna\nRoseanna\nRuby\nSally\nShaina\nSondra\nSylvia\nTamera\nTera\nThea\nAdria\nAdrian\nAdrianne\nAlaina\nAlanna\nAspen\nCaitlyn\nCameron\nCarina\nCarley\nCaryn\nChantel\nChristopher\nDeena\nDianna\nEliza\nElsa\nGayle\nGwendolyn\nIsabel\nJames\nJammie\nJayme\nJena\nJoann\nJoshua\nJudith\nJulianna\nJustina\nKacie\nKasey\nKatelyn\nKendall\nKimberley\nKrysta\nLeigh\nLeilani\nLora\nLoretta\nLouise\nLucia\nLucinda\nLucy\nMai\nMalinda\nMarcella\nMarcy\nMarianne\nMarjorie\nMaryann\nMicah\nMy\nNicolle\nRene\nRocio\nRosalie\nRosemary\nSelina\nSeptember\nShelby\nSydney\nTamra\nTanisha\nTess\nVicki\nAbbie\nAdrianna\nAfton\nAlena\nAlexia\nAmberlee\nAngelia\nAngelita\nArianne\nArlene\nBailey\nBetsy\nBetty\nBeverly\nBrandee\nBridgette\nBrie\nBryn\nCatrina\nChanel\nClare\nCoral\nCorey\nCorrina\nCory\nCristen\nCristin\nDanica\nDeana\nDeidra\nDustin\nDusty\nEdwina\nErnestine\nEryn\nEvan\nEve\nFelisha\nFrancine\nGena\nGeneva\nGeorgina\nGwen\nHallie\nHolli\nHollie\nIngrid\nJacklyn\nJeanie\nJeanine\nJeannette\nJeffrey\nJoslyn\nJuliana\nJune\nKaitlin\nKarri\nKassandra\nKeely\nKisha\nLacie\nLana\nLatasha\nLena\nLiliana\nLorraine\nMara\nMarci\nMarcie\nMarisol\nMarsha\nMatthew\nMeghann\nMisti\nNatalia\nNoelle\nNoemi\nPauline\nQuinn\nRaeann\nRamona\nRenae\nRosemarie\nRosita\nRoxana\nSage\nSalina\nSandy\nShanda\nShanon\nShantel\nShasta\nShiloh\nShonda\nSierra\nSilvia\nSusanna\nTammi\nTammie\nTarah\nTashina\nTerry\nTierra\nTiffanie\nTracey\nValarie\nVenessa\nVivian\nWendi\nJennifer\nJessica\nSarah\nAmanda\nNicole\nAshley\nStephanie\nAmber\nMelissa\nElizabeth\nHeather\nCrystal\nMegan\nAmy\nMichelle\nErin\nRebecca\nRachel\nAndrea\nChristina\nKelly\nKimberly\nAngela\nKatherine\nEmily\nLaura\nJamie\nLindsey\nLauren\nTiffany\nSara\nLindsay\nDanielle\nLisa\nSamantha\nShannon\nBrittany\nAlicia\nMary\nCourtney\nKristin\nVanessa\nApril\nKristen\nKatie\nErica\nNatalie\nDesiree\nTara\nCassandra\nKathryn\nJulie\nChristine\nHolly\nChelsea\nMaria\nMonica\nVictoria\nBrandi\nAnna\nJacqueline\nBrandy\nAllison\nKrista\nHannah\nNichole\nAlexis\nMeghan\nCarrie\nJulia\nKendra\nKristina\nStacy\nMolly\nValerie\nPatricia\nKayla\nNatasha\nStacey\nLeah\nKara\nBrooke\nLacey\nLeslie\nHeidi\nMelanie\nVeronica\nCandice\nDiana\nMargaret\nMiranda\nRenee\nSabrina\nBrenda\nCynthia\nKrystal\nCatherine\nBethany\nDawn\nMisty\nKelli\nSandra\nAlison\nErika\nTamara\nJill\nKathleen\nCaitlin\nDana\nFelicia\nKatrina\nKelsey\nSusan\nTanya\nAnne\nGina\nRachael\nTina\nAlisha\nJanelle\nKaren\nSheena\nAudrey\nCasey\nTheresa\nAdrienne\nAlexandra\nLori\nMarie\nMorgan\nAnn\nStefanie\nMelinda\nAimee\nTracy\nRobin\nTasha\nWhitney\nDenise\nJillian\nMonique\nPamela\nCandace\nJenny\nJoanna\nKari\nAlyssa\nAutumn\nCara\nCarly\nCassie\nRebekah\nVirginia\nAbigail\nAngel\nBrianna\nJolene\nMeagan\nRegina\nAngelica\nAudra\nRandi\nTabitha\nTeresa\nChristy\nKelley\nKristine\nShawna\nBarbara\nColleen\nDeborah\nJaclyn\nJacquelyn\nKatharine\nKirsten\nLacy\nNaomi\nTessa\nAshleigh\nBriana\nBridget\nDeanna\nJade\nJasmine\nJenna\nLinda\nMandy\nRachelle\nSummer\nBeth\nRobyn\nCarol\nCaroline\nCarolyn\nCheryl\nHaley\nJami\nJuanita\nKristy\nMarissa\nShauna\nWendy\nAbby\nAubrey\nCharlene\nCindy\nClaire\nDestiny\nKate\nKristi\nMindy\nBreanna\nJaime\nJodi\nKacey\nKaty\nNancy\nRyan\nSharon\nToni\nAnita\nGenevieve\nLaurie\nLyndsey\nSheila\nSophia\nStacie\nYolanda\nBonnie\nDesirae\nDevon\nGloria\nJenifer\nKira\nLaurel\nRose\nSuzanne\nTonya\nAngelina\nBianca\nChristie\nCristina\nElisabeth\nElise\nKrystle\nMaggie\nMeredith\nMichele\nRochelle\nTrisha\nAlissa\nAshlee\nBernadette\nBrianne\nBrittney\nChrista\nElisa\nElisha\nLeigh\nLeticia\nMarisa\nPriscilla\nRuth\nTaylor\nAdriana\nAlexandria\nChandra\nEsther\nJennie\nKatelyn\nMackenzie\nMandi\nMichael\nNina\nRaquel\nSally\nShanna\nTammy\nTraci\nAmie\nCassidy\nCharity\nHillary\nKellie\nLeann\nLora\nRhonda\nShelley\nAbbey\nAna\nAnnette\nAnnie\nBecky\nCallie\nCeleste\nChelsey\nCherie\nChrystal\nCori\nEbony\nHilary\nJana\nJanet\nJeanette\nJessie\nJoy\nJustine\nKasey\nKerry\nMelody\nNikki\nPaige\nPaula\nShelby\nShelly\nSonya\nSylvia\nTerra\nTia\nAlana\nAthena\nBobbi\nCarissa\nCarla\nChantel\nClaudia\nCorinne\nCortney\nDebra\nFrances\nGabrielle\nGretchen\nHanna\nJordan\nKathy\nLydia\nMaureen\nOlivia\nSerena\nSonia\nStaci\nTaryn\nTrista\nAllyson\nAlyson\nAmelia\nAspen\nBobbie\nBreanne\nCarmen\nCelina\nCharlotte\nConnie\nDarcy\nDiane\nEileen\nEmma\nEva\nFaith\nJesse\nJohanna\nLara\nLarissa\nLatisha\nLyndsay\nLynette\nLynn\nMara\nMariah\nMeghann\nMichaela\nRhiannon\nSavannah\nTera\nTerri\nYvette\nAlaina\nAriana\nAriel\nBrenna\nCorey\nElaine\nEvelyn\nHope\nJane\nJanice\nJanine\nJayme\nKaitlin\nKarla\nKati\nKeri\nKristie\nKyle\nLatoya\nLesley\nMallory\nMiriam\nRoberta\nSandy\nShayla\nSonja\nStarr\nTori\nAlisa\nAngelique\nBetsy\nBrandie\nChristen\nDarlene\nDorothy\nEllen\nFawn\nIrene\nJanel\nJeanne\nJoann\nJody\nJosephine\nKendall\nKerri\nKyla\nLeanne\nLillian\nLucinda\nMaegan\nMaranda\nMarcella\nMatthew\nNicolette\nPauline\nRosalinda\nRosemary\nRoxanne\nRuby\nShantel\nSherry\nSilvia\nTabatha\nTanisha\nTarah\nYvonne\nAdrianna\nAlice\nAnastasia\nAngie\nAntoinette\nAntonia\nBailey\nBlair\nBreann\nBree\nCami\nCamille\nCari\nChristopher\nColette\nCory\nDanelle\nDanica\nDaniel\nDayna\nDeidra\nDena\nDominique\nDonna\nEliza\nJessi\nJosie\nJuliana\nJulianne\nKaleena\nKristal\nLena\nLia\nLinsey\nLorena\nMarquita\nNatalia\nNoelle\nNora\nPatrice\nRosa\nSelina\nShana\nSheri\nSimone\nTami\nTamika\nTiffanie\nTricia\nAdrian\nAdrianne\nAlma\nAndria\nArlene\nAshely\nBelinda\nBeverly\nBridgett\nBridgette\nCarina\nCarlie\nCasandra\nCecilia\nCharissa\nChristi\nChristin\nConstance\nCora\nDeidre\nElena\nEmilie\nEryn\nEve\nGrace\nHollie\nJanae\nJanell\nJanna\nJean\nJeannie\nJeffrey\nJo\nJocelyn\nJonathan\nJoshua\nJudy\nJustina\nKacie\nKandace\nKaryn\nKaycee\nKristyn\nKrysta\nLea\nLuz\nMarianne\nMaribel\nMartha\nMaura\nMelisa\nMia\nMollie\nRita\nSalina\nShanda\nSherri\nShirley\nStevie\nStormy\nTammie\nTracey\nAlexa\nAndra\nAndrew\nAngeline\nBeatrice\nBillie\nBreana\nBritney\nCandy\nCathrine\nCelia\nChanel\nChantell\nChantelle\nChloe\nCiara\nDanette\nDaniella\nDeanne\nDebbie\nDelilah\nDolores\nEleanor\nGwen\nHelen\nJaimie\nJena\nJesica\nJodie\nJoelle\nJohn\nJoleen\nJoseph\nJoyce\nJudith\nJustin\nKala\nKarin\nKasandra\nKassandra\nKaylan\nKeesha\nKimberlee\nKirstin\nKristel\nLana\nLindy\nLinnea\nLoren\nLoretta\nMalissa\nMaren\nMarlo\nMaryann\nMercedes\nMonika\nNadine\nNicolle\nNyssa\nPeggy\nRacheal\nRaeann\nRichelle\nRikki\nRosalie\nRosanna\nShantell\nShantelle\nShaunna\nSierra\nSkye\nSydney\nTalia\nTamra\nTawnya\nTess\nTiana\nTiffaney\nTyra\nValene\nWendi\nJessica\nJennifer\nAmanda\nSarah\nAshley\nNicole\nStephanie\nMegan\nHeather\nMelissa\nElizabeth\nAmber\nCrystal\nAmy\nRachel\nDanielle\nMichelle\nBrittany\nChristina\nLaura\nRebecca\nEmily\nAndrea\nErin\nLauren\nTiffany\nJamie\nLindsey\nKimberly\nKatherine\nAngela\nKelly\nSara\nLisa\nShannon\nLindsay\nVanessa\nSamantha\nChelsea\nKristin\nMary\nChristine\nApril\nKathryn\nKristen\nCourtney\nKatie\nAlicia\nTara\nCassandra\nJenna\nErica\nHolly\nAllison\nJulie\nAnna\nCatherine\nMeghan\nBrandi\nDesiree\nAlexandra\nMonica\nMaria\nNatalie\nValerie\nBrandy\nJulia\nVictoria\nLeah\nNichole\nKendra\nKristina\nVeronica\nKathleen\nKrista\nJacqueline\nStacey\nHannah\nAlexis\nBethany\nKrystal\nDana\nKatrina\nStacy\nWhitney\nCarrie\nMolly\nPatricia\nRobin\nKara\nHeidi\nNatasha\nBrooke\nMonique\nMorgan\nSabrina\nBrianna\nCaitlin\nJillian\nMargaret\nTamara\nAnne\nBrenda\nCandice\nErika\nJoanna\nLacey\nMiranda\nAlisha\nAlison\nAudrey\nKelsey\nLeslie\nSheena\nRenee\nJasmine\nGina\nRachael\nRebekah\nCynthia\nAbigail\nAlyssa\nCassie\nKaren\nPamela\nSandra\nSusan\nTeresa\nTracy\nAutumn\nKari\nKelli\nMelanie\nShauna\nKristi\nShawna\nStefanie\nJanelle\nJenny\nTheresa\nAshleigh\nCasey\nDiana\nKristine\nTina\nAngel\nBrianne\nBrittney\nMisty\nSavannah\nCandace\nKayla\nNaomi\nAnn\nBarbara\nKate\nMelinda\nNancy\nDeanna\nLatoya\nMeagan\nTanya\nCara\nCarly\nTaylor\nAngelica\nDenise\nJill\nTabitha\nLinda\nMindy\nBonnie\nDawn\nMarie\nShana\nCaroline\nCheryl\nDeborah\nElisabeth\nHilary\nKelley\nKira\nKristy\nMichele\nRegina\nStacie\nTonya\nTrista\nAdrienne\nAshlee\nClaire\nFelicia\nJaime\nLydia\nMeredith\nNina\nOlivia\nPaige\nRobyn\nRuth\nSuzanne\nWendy\nAubrey\nBriana\nChristy\nLori\nMarissa\nSophia\nAimee\nBeth\nBridget\nDominique\nSheila\nShelby\nTammy\nAna\nCarissa\nJodi\nSerena\nTessa\nAlexandria\nAudra\nCharlene\nCharlotte\nColleen\nJaclyn\nJolene\nKirsten\nLacy\nRose\nAbby\nAngelina\nBrenna\nCarolyn\nChelsie\nDiane\nDonna\nGrace\nJuanita\nMallory\nMarisa\nMartha\nShelly\nVirginia\nAnnie\nCassidy\nChantel\nCharity\nChrista\nEsther\nHaley\nHayley\nJennie\nJustine\nKaitlin\nKatharine\nKendall\nLarissa\nMandy\nMariah\nMelody\nRachelle\nAllyson\nAnita\nChelsey\nGabrielle\nJessie\nKarissa\nRandi\nRyan\nShanna\nSharon\nAlana\nBernadette\nBobbie\nBrandie\nCarla\nCortney\nEmma\nJami\nKaylee\nLyndsey\nSonya\nTera\nTraci\nYolanda\nAmelia\nAmie\nBreanna\nChandra\nChristen\nEbony\nEllen\nEva\nHillary\nJody\nJoy\nKatelyn\nKellie\nKindra\nLaurel\nMackenzie\nNicolette\nPriscilla\nRoxanne\nSandy\nShantel\nSummer\nTrisha\nVenessa\nYvonne\nAlice\nAntoinette\nBailey\nBreanne\nCarmen\nChristie\nDebra\nDesirae\nDestiny\nElena\nElisha\nGenevieve\nJacquelyn\nJade\nJane\nJanell\nJanet\nJayme\nJeanette\nJenifer\nJohanna\nKarla\nKrystle\nLaurie\nLesley\nLorena\nLyndsay\nLynette\nMaggie\nMaureen\nMollie\nNoelle\nRacheal\nRoberta\nRochelle\nShelley\nAlisa\nAlissa\nAnnette\nBlair\nCeleste\nConnie\nCristina\nDaisy\nDarcy\nJana\nJodie\nJordan\nKacey\nKassandra\nKerry\nLacie\nLeanne\nMayra\nSherri\nTaryn\nTasha\nTerra\nTerri\nToni\nTrina\nAdriana\nBeverly\nCallie\nCarol\nCody\nDevon\nElise\nGloria\nGretchen\nHanna\nHollie\nJackie\nJena\nLara\nLillian\nLynn\nPaula\nRaquel\nRena\nRosa\nRosalie\nRosemary\nSelena\nSheri\nSonja\nSylvia\nTamika\nTeri\nTracey\nTricia\nYvette\nAbbey\nAnastasia\nAspen\nAthena\nBianca\nBrandon\nCatrina\nChasity\nCherise\nChristi\nChrystal\nCindy\nClaudia\nConstance\nCori\nDaniela\nDarcie\nDarlene\nDeidre\nEvelyn\nFaith\nGillian\nJanice\nJoann\nJosephine\nJulianne\nKeri\nKristal\nLana\nLatisha\nLorraine\nLucy\nLynsey\nRhonda\nRita\nSadie\nSherry\nSierra\nSonia\nTess\nTia\nTiffani\nTiffanie\nTracie\nAndria\nAnnamarie\nChanel\nDanelle\nDanica\nDayna\nGuadalupe\nHarmony\nHope\nJanae\nJanna\nJean\nJudith\nJulianna\nJustina\nKali\nKathy\nKaty\nKerri\nKristie\nKrysta\nKyra\nLena\nMaribel\nMarquita\nMelisa\nMichael\nMichaela\nNikki\nNora\nPenny\nRanae\nRhiannon\nSavanna\nStevie\nTabatha\nTana\nAli\nAlycia\nAlyson\nAngelique\nAngie\nAriana\nAshlie\nAsia\nBecky\nBobbi\nCasandra\nCelina\nChantell\nChristin\nClara\nDena\nDolores\nElaine\nElisa\nElyse\nFrances\nGeorgia\nGinger\nHelen\nIvy\nJanine\nJason\nJessi\nJoanne\nKarin\nKarina\nKasandra\nKeely\nKerrie\nKimberley\nKyla\nKylie\nLea\nMadeline\nMaira\nMalissa\nMarina\nMarisol\nMarlena\nMarlene\nMarsha\nMicaela\nNichelle\nRhianna\nRosanna\nRuby\nRyann\nSally\nSasha\nShaina\nStaci\nTami\nTammi\nTarah\nVicki\nAdrianne\nAlaina\nAlanna\nAnthony\nAntonia\nAriel\nArielle\nAurora\nAustin\nBeatrice\nBetsy\nBrittani\nCameron\nCandyce\nCari\nCarina\nCarlee\nCarlie\nCassi\nChelsi\nCherie\nChristian\nColeen\nCorey\nCorina\nCorinne\nCristal\nDavina\nDesarae\nElissa\nEmilee\nEricka\nEsperanza\nFawn\nHailey\nHolli\nIrene\nJaimee\nJanel\nJanessa\nJanette\nJeannie\nJocelyn\nJoyce\nJudy\nKaci\nKacie\nKaley\nKandice\nKarlee\nKatelin\nKeegan\nKelsi\nKelsie\nKrysten\nKylee\nLeann\nLee\nLeia\nLeila\nLinsey\nLoretta\nLorie\nLouisa\nMandi\nMari\nMarian\nMarjorie\nMercedes\nMerry\nMisti\nNadine\nNatalia\nPatrice\nPauline\nRenae\nRosalinda\nSalina\nSondra\nStarla\nStefani\nStephani\nSusanna\nSusie\nTabetha\nTalia\nThao\nVivian\nJessica\nAmanda\nJennifer\nAshley\nSarah\nNicole\nMegan\nStephanie\nBrittany\nHeather\nElizabeth\nMelissa\nDanielle\nAmber\nRachel\nEmily\nChristina\nErin\nMichelle\nAmy\nRebecca\nLaura\nSara\nCrystal\nAndrea\nJamie\nKimberly\nLauren\nLindsey\nTiffany\nKelly\nKatherine\nSamantha\nAngela\nVanessa\nKathryn\nLisa\nShannon\nCourtney\nLindsay\nCassandra\nKristen\nMary\nAnna\nChristine\nAlicia\nKatie\nKristin\nChelsea\nErica\nAllison\nHolly\nJenna\nJulie\nTara\nKrystal\nKristina\nApril\nNichole\nNatalie\nKelsey\nVictoria\nMonica\nMolly\nDesiree\nMeghan\nValerie\nJacqueline\nMargaret\nCaitlin\nErika\nRachael\nKathleen\nJulia\nKendra\nLeah\nMaria\nAlexandra\nCatherine\nVeronica\nBrandi\nPatricia\nNatasha\nFelicia\nWhitney\nStacey\nAlexis\nBrittney\nKrista\nBrianna\nHeidi\nKaren\nMorgan\nTanya\nAlison\nBrandy\nMiranda\nSabrina\nBrooke\nCandice\nMelanie\nKara\nLeslie\nCarrie\nMeagan\nAlisha\nSheena\nAlyssa\nKari\nKate\nKelli\nBethany\nJill\nMallory\nShawna\nAudrey\nAutumn\nKatrina\nStacy\nCynthia\nDeanna\nDiana\nLacey\nAshleigh\nCassie\nDana\nJaclyn\nJanelle\nKrystle\nMonique\nTeresa\nTina\nCarly\nDawn\nHannah\nAnne\nJasmine\nMisty\nRenee\nSavannah\nAdrienne\nKristi\nTaryn\nAbigail\nAshlee\nCarissa\nCasey\nColleen\nKirsten\nTracy\nAngelica\nBrenda\nCandace\nClaire\nGina\nJenny\nRebekah\nSandra\nSusan\nDominique\nKayla\nMarissa\nTamara\nAnn\nStefanie\nBonnie\nBriana\nJillian\nJordan\nRobin\nSierra\nTabitha\nCheryl\nDenise\nJessie\nMindy\nPamela\nTheresa\nAngel\nKatharine\nKristine\nLinda\nLydia\nChantel\nJoanna\nMarie\nMelinda\nMichele\nTasha\nTrisha\nBarbara\nCara\nElise\nHillary\nJaime\nKelley\nNancy\nShelby\nAlexandria\nDesirae\nJoy\nMeredith\nSerena\nShana\nShanna\nSharon\nCarla\nChelsey\nChristy\nEllen\nJacquelyn\nKristy\nToni\nTonya\nYolanda\nAubrey\nBeth\nBreanna\nBrianne\nBridget\nCaroline\nCarolyn\nCristina\nDeborah\nJolene\nKaitlyn\nKira\nLori\nRandi\nSophia\nSuzanne\nTia\nYvonne\nAudra\nBrandie\nDonna\nGenevieve\nHaley\nJami\nKaitlin\nKellie\nMaggie\nMandy\nMelody\nMichaela\nNina\nRaquel\nShauna\nSummer\nWendy\nAbby\nAimee\nAlissa\nCassidy\nChrista\nClaudia\nDiane\nElisa\nJeanette\nKatelyn\nMackenzie\nMarisa\nRobyn\nRose\nVirginia\nHelen\nJayme\nJustine\nLacy\nNikki\nSylvia\nTeri\nAna\nAngelina\nAnnette\nAnnie\nChandra\nCharlene\nDestiny\nJackie\nJena\nKeri\nLatisha\nMartha\nNaomi\nPaige\nSasha\nShantel\nSheila\nSydney\nAdriana\nAllyson\nAshlie\nCarmen\nJanet\nJenifer\nJennie\nJodi\nJohanna\nLara\nLatoya\nLyndsey\nMariah\nNoelle\nPaula\nRachelle\nTaylor\nTiffani\nBritney\nChantelle\nCharlotte\nCindy\nDaisy\nElisabeth\nElyse\nGabrielle\nHilary\nJulianne\nLarissa\nRochelle\nTerri\nTraci\nTrista\nAlana\nAlisa\nAriel\nBianca\nBlair\nBreanne\nCallie\nElena\nGretchen\nHayley\nHollie\nIrene\nJuanita\nKasey\nKendall\nKristie\nLeanna\nMayra\nMichael\nMollie\nPriscilla\nRuth\nSandy\nShayna\nStaci\nStacie\nTabatha\nTammy\nTera\nAmelia\nAmie\nAntoinette\nAthena\nBobbi\nChanel\nCheri\nChristie\nCorey\nDebra\nElisha\nEmma\nHope\nJana\nJody\nKeely\nLeticia\nLorena\nLyndsay\nOlivia\nRegina\nRyan\nSadie\nSavanna\nTessa\nTricia\nAngelique\nAnita\nBecky\nBrenna\nCamille\nCody\nCorinne\nDianna\nEbony\nEricka\nEsther\nEva\nGwendolyn\nHailey\nJanna\nJean\nJesse\nKaty\nLinsey\nMadison\nMeaghan\nRosa\nShayla\nAdrianna\nAlice\nBernadette\nCaitlyn\nCasie\nChelsie\nChristian\nChrystal\nClara\nDaniel\nDena\nEileen\nEliza\nEsmeralda\nFelisha\nFrances\nJade\nJane\nJanette\nKerri\nKimberlee\nKyra\nLaci\nLatasha\nLaurel\nLaurie\nLea\nLeann\nLeigh\nLora\nNadine\nRita\nRoberta\nSally\nShelley\nSonia\nSonya\nStevie\nTegan\nTerra\nTiffanie\nTori\nAbbey\nAdriane\nAlaina\nAlejandra\nAlexa\nAngie\nAntonia\nAshely\nBreann\nBrittny\nCari\nCatrina\nCelina\nCharity\nCherie\nClare\nClarissa\nCorina\nCortney\nDarcy\nDevin\nFallon\nJanice\nJasmin\nJenelle\nJocelyn\nJoyce\nJustina\nKacey\nKaley\nKassandra\nKathrine\nKathy\nKyla\nKyle\nLeanne\nLee\nLesley\nLillian\nLynette\nMadeline\nMandi\nMarina\nMarisela\nMaureen\nRena\nRoxanne\nSelina\nShaina\nShea\nShelly\nSherri\nTanisha\nTess\nTracey\nValarie\nAriana\nBailey\nBlanca\nBobbie\nBrittani\nBrittni\nCarol\nCassi\nCeleste\nChanelle\nCharmaine\nChristen\nCiara\nCorrine\nDanette\nDayna\nDevon\nElicia\nFrancesca\nGillian\nGrace\nGuadalupe\nIvy\nJames\nJeanne\nJeannette\nJoann\nJudy\nKady\nKami\nKarin\nKarina\nKarissa\nKarla\nKassie\nKay\nKenna\nKeshia\nKirstin\nKristal\nKrystina\nKylie\nLadonna\nLeandra\nLeeann\nLena\nLoretta\nLucy\nLynn\nMalissa\nMargo\nMarilyn\nMarisol\nMaryann\nMoriah\nNadia\nNathan\nNicolette\nPatrice\nRacheal\nRhea\nRhonda\nRichelle\nRosemary\nRuby\nRyann\nSalina\nShanon\nSherry\nSilvia\nSonja\nSophie\nTania\nTawny\nTrina\nVicki\nYvette\nAbbie\nAlexandrea\nAlma\nAlyse\nAndrew\nAshli\nBillie\nCandy\nCarey\nCarlie\nCasandra\nCecilia\nChloe\nChristi\nColette\nConnie\nConstance\nCori\nCorrie\nDanelle\nDani\nDarcie\nDarla\nDarlene\nDebbie\nEcho\nElaine\nElissa\nEryn\nGianna\nGloria\nHana\nHanna\nHolli\nIris\nJacklyn\nJanae\nJanel\nJanell\nJeanna\nJeannie\nJenae\nJessika\nJodie\nJune\nKali\nKarly\nKasandra\nKatelin\nKelsi\nKiera\nKim\nKrysta\nKrystin\nKylee\nLacie\nLakisha\nLana\nLeona\nLia\nLily\nLindsy\nLouise\nLucille\nMaegan\nMarcy\nMarianne\nMay\nMckenna\nMia\nMicaela\nMyra\nMyrna\nNoel\nNora\nNyssa\nOdessa\nPhuong\nReanna\nRikki\nSavanah\nSelena\nShari\nSheri\nSimone\nTamika\nTamra\nTristan\nTyra\nJessica\nAmanda\nAshley\nJennifer\nSarah\nBrittany\nNicole\nMegan\nStephanie\nHeather\nMelissa\nAmber\nElizabeth\nEmily\nLauren\nRachel\nSara\nDanielle\nErin\nLaura\nMichelle\nAmy\nKimberly\nSamantha\nCrystal\nKatherine\nTiffany\nRebecca\nChristina\nKatie\nAndrea\nLindsey\nVanessa\nLisa\nJamie\nKathryn\nKelly\nLindsay\nShannon\nAngela\nCourtney\nWhitney\nKristen\nCassandra\nKristin\nErica\nAlicia\nAllison\nChristine\nAnna\nChelsea\nHannah\nMary\nKayla\nTara\nNatalie\nVictoria\nKrystal\nHolly\nJenna\nJulie\nCaitlin\nNatasha\nMallory\nNichole\nValerie\nCatherine\nAlexandra\nMonica\nKristina\nApril\nJulia\nKelsey\nKrista\nMolly\nErika\nKathleen\nBrittney\nMeghan\nJacqueline\nKendra\nLeah\nAlyssa\nKatrina\nPatricia\nBrandi\nBrooke\nDesiree\nJordan\nKara\nMargaret\nMorgan\nVeronica\nSabrina\nBrianna\nAlison\nAngelica\nMaria\nRenee\nLeslie\nAlisha\nLacey\nStacy\nAbigail\nAudrey\nBethany\nRachael\nCarrie\nDana\nDiana\nFelicia\nBrandy\nKatelyn\nCasey\nKelli\nMarissa\nMelanie\nStacey\nTracy\nTamara\nMonique\nTanya\nHeidi\nJasmine\nRebekah\nSavannah\nAlexis\nAshleigh\nBriana\nChrista\nAshlee\nCassie\nCynthia\nJessie\nJanelle\nMiranda\nShawna\nCandice\nCarly\nKaren\nKate\nMeagan\nMisty\nRobin\nAnne\nBrenda\nDawn\nEmma\nJillian\nShelby\nTeresa\nCandace\nColleen\nJill\nPamela\nCaroline\nAngel\nDeanna\nDominique\nGina\nHillary\nJaclyn\nKari\nSandra\nTaylor\nTheresa\nAubrey\nKaitlin\nAdrienne\nAlexandria\nDenise\nElise\nOlivia\nTabitha\nTina\nAmelia\nAutumn\nBrianne\nBridget\nClaire\nJaime\nKristine\nLori\nMeredith\nPaige\nTessa\nAngelina\nCara\nBreanna\nHilary\nJenny\nKatharine\nLacy\nMandy\nMarie\nMartha\nNancy\nRachelle\nRandi\nRoxanne\nSierra\nToni\nCallie\nCarmen\nCarolyn\nChristy\nGrace\nJolene\nLinda\nMelinda\nRobyn\nSheena\nSophia\nSusan\nSydney\nBrittani\nCarissa\nChristie\nCindy\nJustine\nKirsten\nKrystle\nMadison\nPaula\nRaquel\nSasha\nTonya\nTrisha\nVirginia\nAlissa\nBonnie\nHayley\nKelley\nMaggie\nRegina\nAbby\nAimee\nBailey\nBianca\nChantel\nChelsey\nGabrielle\nHaley\nKristi\nKristy\nNaomi\nRochelle\nRuth\nShanna\nSheila\nSylvia\nTaryn\nTasha\nWendy\nAnn\nBarbara\nCamille\nJami\nJana\nJoanna\nKaitlyn\nKaylee\nMichaela\nMindy\nNina\nShantel\nStefanie\nAdriana\nAlana\nAlisa\nAntoinette\nAshlie\nBritney\nCarla\nCassidy\nEbony\nGenevieve\nJacquelyn\nJade\nJena\nKellie\nMeaghan\nNikki\nRhiannon\nRose\nShana\nTerra\nAli\nAlyson\nChelsie\nDeborah\nHope\nJohanna\nKassandra\nMarisa\nMaureen\nMollie\nNikita\nSavanna\nTia\nYolanda\nAbbey\nCharity\nCharlene\nDarcy\nDesirae\nDestiny\nDevon\nElisa\nJodi\nKali\nMackenzie\nMallorie\nMia\nPriscilla\nRyan\nSharon\nSonia\nAlice\nAna\nAnnette\nAriel\nAshton\nBobbie\nBrittni\nChandra\nChantelle\nCortney\nDebra\nDiane\nElena\nEllen\nHelen\nJeanette\nKacey\nKarla\nLara\nLesley\nMadeline\nMargarita\nMayra\nMelody\nSerena\nShauna\nSonya\nSummer\nTammy\nTrista\nAllyson\nAshly\nAspen\nBernadette\nBrenna\nCecilia\nCheri\nCherie\nConstance\nCristina\nElyse\nJackie\nJanell\nJanessa\nJanice\nKarissa\nKaty\nKayleigh\nKeri\nKira\nKyla\nLarissa\nLaurel\nLeigh\nLyndsey\nMandi\nMaranda\nSally\nAlexa\nCaitlyn\nCarol\nCharissa\nCharlotte\nCheryl\nCiara\nColette\nCorrie\nDeidre\nDonna\nElaine\nElisabeth\nElisha\nEricka\nGillian\nGuadalupe\nHalley\nJanae\nJesse\nJosephine\nJoy\nLeticia\nLucy\nLydia\nNadine\nRuby\nSavanah\nShayla\nShelly\nSheree\nSheri\nSondra\nStevie\nSuzanne\nTraci\nTricia\nYvonne\nAfton\nAlysha\nAnnie\nAudra\nBelinda\nBeth\nBlair\nBobbi\nBreanne\nChristen\nEsmeralda\nFrances\nFrancine\nHallie\nHanna\nJane\nJenifer\nKaley\nKasey\nKendall\nKrysta\nLatoya\nLena\nLillian\nMeghann\nMichael\nMyra\nNoelle\nRoberta\nShaina\nSonja\nStacie\nTabatha\nTalia\nTerri\nValarie\nAnita\nBlanca\nCelina\nChanel\nChristian\nCorey\nCori\nCorinne\nDarlene\nElissa\nEva\nEvelyn\nIsabel\nIvy\nJanine\nJoann\nJuanita\nKacie\nKeisha\nKerry\nKimberlee\nKristyn\nLeanna\nLia\nLucinda\nLynsey\nMaegan\nMariah\nMichele\nNicholas\nNicolette\nNorma\nRacheal\nRaven\nRita\nRosa\nRoxann\nSandy\nShawn\nShayna\nShelley\nSherry\nTegan\nTracey\nZoe\nAdrianna\nAlaina\nAlex\nAllie\nAlycia\nAlysia\nAntonia\nBeverly\nBrandon\nBreann\nBrittny\nCatrina\nCeleste\nChrystal\nCory\nDaisy\nEliana\nEsther\nFelisha\nJaimie\nJanet\nJanette\nJanna\nJeannette\nJessi\nJoanne\nJocelyn\nJoyce\nJudy\nKailey\nKatelin\nKathrine\nKati\nKiley\nKimberley\nKirstin\nKylie\nLacee\nLatisha\nLeanne\nLoren\nLynn\nMadelyn\nMarcia\nMarina\nMarlene\nNadia\nRachele\nRamona\nRhonda\nRikki\nSarena\nShantell\nSherri\nStaci\nStacia\nStephany\nTess\nAlexander\nAlexandrea\nAlina\nAlma\nAnastasia\nAndrew\nAngie\nArielle\nAubrie\nAvalon\nBridgette\nBritta\nCaley\nCarlie\nCaryn\nCassy\nChantal\nCherish\nChristin\nCinthia\nClarissa\nClaudia\nColeen\nConnie\nCorie\nCorrine\nCristal\nDakota\nDanae\nDanette\nDanica\nDaniela\nDayna\nDeana\nDorothy\nElicia\nEliza\nEvan\nFrancesca\nGeorgia\nGwendolyn\nJacey\nJayme\nJean\nJennie\nJerrica\nJody\nJudith\nJustina\nKady\nKaila\nKami\nKeli\nKelsie\nKerri\nKeshia\nKori\nKristie\nKyle\nLatasha\nLeandra\nLeeann\nLindy\nLinh\nLiza\nLucia\nLyndi\nLynette\nMarcella\nMarisela\nMarlena\nMarta\nMercedes\nMikaela\nMiriam\nNakita\nNora\nPatrice\nRebbecca\nRichelle\nRocio\nSadie\nSalena\nSamatha\nShari\nSheryl\nStarla\nSusie\nTanisha\nTarah\nTiara\nTosha\nVenessa\nYesenia\nJessica\nAshley\nAmanda\nSarah\nJennifer\nBrittany\nNicole\nStephanie\nMegan\nRachel\nDanielle\nAmber\nHeather\nElizabeth\nLauren\nEmily\nSamantha\nAmy\nMelissa\nKayla\nMichelle\nRebecca\nLaura\nChristina\nKatherine\nErin\nSara\nKimberly\nAndrea\nCrystal\nKelly\nChelsea\nTiffany\nLindsey\nJamie\nKelsey\nShannon\nHannah\nKatie\nLisa\nCourtney\nLindsay\nVanessa\nWhitney\nMary\nCaitlin\nKathryn\nErica\nAlexandra\nCassandra\nChristine\nAlicia\nAngela\nAnna\nAllison\nJenna\nAlyssa\nKendra\nJacqueline\nKristen\nKristin\nNatalie\nKathleen\nBrianna\nMallory\nMonica\nKristina\nVictoria\nNatasha\nTara\nHolly\nDesiree\nJulie\nMeghan\nMaria\nMolly\nCatherine\nFelicia\nBrandi\nErika\nLeah\nVeronica\nApril\nNichole\nRachael\nMorgan\nAshleigh\nKatrina\nKrista\nBrittney\nBrandy\nJordan\nLeslie\nAlison\nDana\nHeidi\nKrystal\nAlexis\nMonique\nBrooke\nJulia\nRenee\nMelanie\nPatricia\nAshlee\nKara\nValerie\nAngelica\nMarissa\nKaitlin\nSabrina\nStacy\nAudrey\nKaren\nMiranda\nPaige\nTaylor\nAlisha\nBethany\nCarrie\nRebekah\nMargaret\nSavannah\nCaroline\nJustine\nSusan\nKatelyn\nAdrienne\nDiana\nJasmine\nStacey\nAutumn\nBriana\nCandice\nTeresa\nTheresa\nAnne\nCandace\nJaclyn\nKelli\nRobin\nSandra\nShawna\nJanelle\nJillian\nMeagan\nBreanna\nCasey\nCassie\nJacquelyn\nKristi\nKristine\nLacey\nMadison\nSasha\nTamara\nTanya\nTina\nCarolyn\nJoanna\nLinda\nAbigail\nDenise\nHaley\nSheena\nTasha\nTonya\nAbby\nAlexandria\nAllyson\nEmma\nJenny\nKari\nBrenda\nChrista\nDominique\nJessie\nKaitlyn\nMadeline\nOlivia\nAmelia\nCarly\nChelsey\nElise\nGina\nKate\nKellie\nKira\nMarie\nMeredith\nAimee\nClaire\nGabrielle\nGrace\nJaime\nJill\nKatharine\nKaylee\nKristy\nMaggie\nRegina\nTrisha\nAngel\nAngelina\nCynthia\nDestiny\nMisty\nNaomi\nRachelle\nShauna\nSophia\nAlexa\nBarbara\nCara\nCassidy\nDawn\nHilary\nPamela\nRochelle\nSydney\nBrittani\nHillary\nKirsten\nMindy\nNancy\nRandi\nSierra\nTabitha\nAdriana\nAnastasia\nAubrey\nBonnie\nBrenna\nBrianne\nBridget\nCarissa\nCarol\nCheryl\nDesirae\nElyse\nKelley\nMackenzie\nMandy\nMarisa\nRoxanne\nToni\nTracy\nCharity\nElisabeth\nJanet\nLyndsey\nRaquel\nRobyn\nRose\nShayla\nStefanie\nStevie\nAnn\nAnnie\nBailey\nBernadette\nBritney\nChristy\nCortney\nDeanna\nElena\nFaith\nHayley\nLacy\nMariah\nMayra\nMelinda\nNina\nRyan\nShelby\nStaci\nStephany\nAnnette\nAriel\nBeth\nColleen\nEllen\nShanna\nSonia\nSummer\nSylvia\nTessa\nYesenia\nAlyse\nBreanne\nChantel\nCharlotte\nDiane\nElisha\nGloria\nJodi\nKassandra\nKayleigh\nKrysta\nLara\nLaurel\nSuzanne\nBianca\nCallie\nChandra\nCharlene\nChelsie\nCori\nDeborah\nEricka\nJenifer\nKasey\nKyla\nLatoya\nLydia\nMarina\nMatthew\nSavanna\nAlissa\nAntoinette\nAspen\nBrandie\nBreann\nBritany\nCaitlyn\nChanel\nEbony\nElisa\nEva\nFrances\nFrancesca\nGillian\nHelen\nJackie\nJade\nJami\nJanae\nJane\nJolene\nJoy\nJoyce\nKarissa\nKrystina\nLarissa\nLeigh\nLori\nMartha\nMichaela\nPriscilla\nRenae\nShana\nSheila\nWendy\nYolanda\nAdrianne\nAubrie\nAudra\nBridgette\nCamille\nCarla\nCarmen\nCayla\nChristen\nChristie\nCiara\nEsther\nGenevieve\nJanell\nJulianne\nKathrine\nKaty\nKendall\nKimberlee\nLatasha\nLea\nLeann\nLeticia\nLynette\nMelody\nMichael\nPaula\nSadie\nSavanah\nShantel\nShelley\nTori\nVirginia\nAlexandrea\nAlysha\nAnita\nAshlie\nAyla\nCeleste\nClaudia\nDarcy\nDevin\nDianna\nEsmeralda\nHailey\nHanna\nHope\nJana\nJesse\nJoelle\nJosephine\nJudith\nKacey\nKacie\nKali\nKelsi\nKelsie\nKerri\nKrystle\nLeeann\nLynn\nMalissa\nMara\nMeaghan\nNadine\nNicolette\nNikita\nNikki\nNoelle\nRuby\nRuth\nSimone\nSonya\nTalia\nTerra\nTiffanie\nTraci\nYvonne\nAlana\nAlyson\nAmie\nAndria\nAshly\nBritni\nCari\nCasandra\nCecilia\nChantal\nChantelle\nChristiana\nChrystal\nCody\nConstance\nCorey\nCorina\nCristina\nDeidre\nDonna\nDorothy\nElaine\nGabriela\nHolli\nJanna\nJena\nJennie\nJoann\nJoanne\nJocelyn\nJohanna\nKaleigh\nKati\nKeri\nKeshia\nKristyn\nLeanne\nMarisela\nMarsha\nMaya\nMckenzie\nMikayla\nReyna\nRosa\nSage\nSerena\nShaina\nShelly\nStella\nTerri\nTricia\nAaron\nAisha\nAlice\nAllyssa\nAlma\nAlycia\nAna\nAndrew\nAngie\nAshlea\nAthena\nBrittaney\nBrittni\nCassondra\nChloe\nChristian\nChristin\nCindy\nClara\nDannielle\nDena\nDomonique\nFelisha\nGwendolyn\nHallie\nIris\nJanette\nJanice\nJasmin\nJayme\nJean\nJeanette\nJeanne\nJody\nJosie\nJuanita\nKacy\nKaley\nKarina\nKaylie\nKerry\nKiley\nKori\nKyle\nKyra\nLillian\nLorena\nLyndsay\nLynsey\nMadelyn\nMarlena\nMaureen\nNorma\nRegan\nRhiannon\nRichelle\nRikki\nSally\nShawnee\nShayna\nShea\nSheree\nSteffanie\nStephenie\nTamera\nTamra\nTana\nTania\nTaryn\nTiana\nTiffani\nTracey\nTyler\nZachary\nAlecia\nAlysia\nAntonia\nArielle\nAshely\nAshton\nBetty\nBlanca\nBrittnee\nBrittnie\nBrittny\nCaley\nCameron\nCarey\nCherie\nClarissa\nConnie\nCory\nCristal\nDanica\nDaphne\nDayna\nDevon\nEileen\nEleanor\nEmilee\nGianna\nGuadalupe\nIrene\nJanessa\nJanine\nJerica\nJohn\nJoni\nJustina\nKaela\nKaila\nKailey\nKarie\nKarla\nKaylene\nKellyn\nKimber\nKrystyna\nKylie\nLatisha\nLeanna\nLee\nLena\nLesley\nLindy\nMarcella\nMarisol\nMattie\nMeghann\nMichele\nMiriam\nMollie\nNakia\nNatalia\nNicolle\nNikole\nNoel\nRita\nRoberta\nRosemary\nSalina\nShanae\nShantell\nShay\nSherry\nSkye\nSofia\nSonja\nSophie\nTabatha\nTammy\nTanisha\nTarah\nTasia\nTatiana\nTegan\nTera\nTeri\nTosha\nTracie\nTrista\nValarie\nYuri\nYvette\nJessica\nAshley\nAmanda\nSarah\nJennifer\nBrittany\nStephanie\nNicole\nMegan\nElizabeth\nAmber\nLauren\nHeather\nRachel\nEmily\nDanielle\nSamantha\nKayla\nMichelle\nMelissa\nTiffany\nLaura\nKatherine\nRebecca\nChelsea\nChristina\nSara\nAmy\nAndrea\nCourtney\nHannah\nCrystal\nErin\nCaitlin\nKelsey\nJamie\nKimberly\nKelly\nAlexandra\nVanessa\nLisa\nAlyssa\nLindsey\nCassandra\nAlicia\nAngela\nAnna\nKathryn\nKatie\nAllison\nErica\nMary\nChristine\nShannon\nVictoria\nWhitney\nLindsay\nMolly\nKendra\nKristin\nJenna\nNatalie\nKristen\nMorgan\nJacqueline\nNatasha\nTara\nErika\nHolly\nRachael\nKathleen\nKristina\nLeah\nMonica\nBrittney\nJasmine\nBrianna\nTaylor\nKara\nBrooke\nCatherine\nMaria\nNichole\nJulie\nKatelyn\nKrista\nApril\nFelicia\nKatrina\nKrystal\nVeronica\nJordan\nKaitlin\nJulia\nMallory\nValerie\nDesiree\nBrandi\nPatricia\nAlisha\nBrandy\nMargaret\nMeghan\nMonique\nLeslie\nCasey\nChelsey\nLacey\nSavannah\nAshlee\nDana\nJillian\nAbigail\nAshleigh\nAudrey\nMelanie\nPaige\nKaitlyn\nBriana\nCynthia\nMiranda\nSabrina\nAlexis\nAngelica\nBreanna\nAutumn\nBethany\nBrenda\nCandice\nMarissa\nRebekah\nShawna\nMeagan\nAlexandria\nAlison\nBailey\nCarissa\nDiana\nClaire\nGina\nHeidi\nKelli\nStacey\nGrace\nRenee\nAnne\nCassie\nEmma\nGabrielle\nJoanna\nTanya\nAngelina\nBianca\nCarolyn\nJanelle\nMisty\nStacy\nToni\nCarly\nHaley\nJustine\nSasha\nSierra\nSusan\nCarrie\nMackenzie\nSydney\nCandace\nJaclyn\nKaren\nMariah\nMichaela\nNancy\nRachelle\nAubrey\nCaroline\nMadeline\nRaquel\nTamara\nBritney\nKate\nKirsten\nKristi\nMadison\nMichele\nOlivia\nRandi\nSuzanne\nAdrienne\nAnastasia\nAngel\nBonnie\nDestiny\nElise\nHilary\nJill\nKari\nRobin\nTracy\nAriel\nBarbara\nBrianne\nDenise\nKyla\nLarissa\nMelinda\nMeredith\nSandra\nJenny\nKristine\nRobyn\nRoxanne\nShelby\nTasha\nAlexa\nHayley\nJessie\nKelley\nKylie\nTeresa\nAlissa\nCaitlyn\nCharlotte\nChelsie\nDesirae\nEva\nJustina\nKelsie\nLinda\nLydia\nMaggie\nMarie\nNina\nShauna\nTabitha\nTheresa\nAbby\nBrittani\nClaudia\nDeanna\nJacquelyn\nJaime\nJolene\nKacey\nKarina\nMarisa\nMayra\nPriscilla\nRuth\nTaryn\nTina\nYolanda\nAmelia\nBeth\nChrista\nChristie\nColleen\nCortney\nDawn\nDominique\nElisabeth\nFrances\nHillary\nJade\nKarissa\nKristy\nKyra\nLacy\nNaomi\nRochelle\nShelly\nStefanie\nStevie\nTessa\nTonya\nAimee\nAnn\nBridget\nElaine\nJanet\nJeanette\nJenifer\nKarla\nKarli\nKira\nLara\nLeanne\nMandy\nMaureen\nNikki\nPamela\nRose\nSophia\nStaci\nTrisha\nAllyson\nAlysha\nAntoinette\nBrenna\nHanna\nHope\nKatelin\nKellie\nLea\nLyndsey\nShayla\nSheena\nSimone\nTiffani\nWendy\nYvonne\nAdriana\nAlyson\nAshlie\nBernadette\nBrittanie\nCamille\nCara\nCassidy\nCharlene\nEbony\nElena\nEllen\nJami\nKali\nKasey\nKassandra\nKelsi\nLaurel\nLily\nNicolle\nRuby\nSadie\nShantel\nSheila\nSummer\nTia\nVirginia\nAdrian\nAlysia\nAriana\nAudra\nCarmen\nChanel\nChantel\nCheryl\nElisa\nElyse\nGenevieve\nJacklyn\nKatelynn\nKatharine\nKerry\nLatasha\nLeann\nLori\nMckenzie\nMelody\nSharon\nSonja\nAlana\nAna\nAngelique\nBridgette\nCeleste\nChandra\nCheyenne\nClarissa\nDevon\nDonna\nEricka\nIvy\nJaimie\nJanae\nJena\nJoy\nJulianne\nKaci\nKaley\nKatlyn\nKylee\nLeigh\nLena\nLeticia\nLillian\nLucy\nMarina\nMindy\nRikki\nRosa\nSavanna\nShayna\nStacie\nStephany\nTabatha\nAbbey\nAdrianne\nAli\nAlice\nAlisa\nAmie\nAnnette\nAnnie\nAntonia\nAshton\nBreann\nBreanne\nCaley\nCameron\nCarla\nChrystal\nCiara\nConstance\nCorina\nCristina\nDaniella\nDeborah\nDiane\nFaith\nFrancesca\nGabriella\nHelen\nJaleesa\nJane\nJanice\nJennie\nJerrica\nJessi\nJody\nJohanna\nJosephine\nKaleigh\nKaylee\nKrysta\nKrystle\nMartha\nNora\nRegina\nSherry\nSkye\nSonya\nVenessa\nYvette\nAisha\nAlecia\nAlycia\nArielle\nAshli\nBobbi\nBobbie\nBrittnee\nCasandra\nCharissa\nCharity\nChloe\nCierra\nCory\nDara\nDarcy\nDeidre\nDevin\nEileen\nEvelyn\nFallon\nIrene\nJana\nJoann\nJocelyn\nJodi\nJuliana\nKathrine\nKerri\nKimber\nLacie\nLogan\nLyndsay\nLynn\nMara\nMatthew\nMia\nNicolette\nPaula\nRena\nRocio\nSerena\nShanna\nShelley\nSonia\nSylvia\nTarah\nTiana\nTori\nTraci\nYesenia\nAleisha\nAshlynn\nAthena\nBrandie\nBritany\nBrittaney\nCallie\nCarol\nCecilia\nChanelle\nChantal\nCherelle\nChristy\nCori\nCorinne\nCristal\nDanelle\nDani\nDanica\nDeidra\nDestinee\nEleanor\nGeorgia\nHollie\nJackie\nJeanne\nJuanita\nKaela\nKala\nKatheryn\nKayleigh\nKaylene\nKeisha\nKristyn\nKyle\nLaci\nLatoya\nLorena\nLynsey\nMadeleine\nMadelyn\nMaegan\nMargarita\nMeaghan\nNatalia\nNikita\nPhylicia\nRacheal\nReina\nSage\nShay\nTatiana\nTiara\nTierra\nTiffanie\nTracey\nTyler\nAdilene\nAdrianna\nAlaina\nAllyssa\nAlyse\nAmbrosia\nAnita\nAnnalise\nAnnmarie\nAshlei\nAshly\nAvery\nBeverly\nBreana\nBridgett\nBrittni\nBryanna\nCarley\nCarli\nCecily\nChantelle\nCheree\nCindy\nClara\nCodi\nCorey\nCorinna\nCorrie\nDesiray\nDiandra\nEryn\nFelisha\nGabriela\nGail\nGeneva\nGloria\nGretchen\nHailey\nIlana\nIris\nJanay\nJanee\nJanessa\nJazmine\nJean\nJerica\nJosie\nKacie\nKaila\nKailey\nKandice\nKassie\nKati\nKaty\nKayleen\nKiley\nKimberlee\nKimberley\nKindra\nKirstin\nKristie\nLeila\nMalissa\nMarcella\nMari\nMarlena\nMicaela\nMicah\nMikayla\nMollie\nMonika\nMyra\nNadia\nNadine\nNoel\nNoemi\nPiper\nRae\nRenae\nSammantha\nSavanah\nShaina\nShanda\nShanelle\nShea\nShyla\nStella\nStephani\nTammy\nTania\nTenisha\nTerra\nValentina\nAshley\nJessica\nAmanda\nSarah\nBrittany\nSamantha\nJennifer\nNicole\nStephanie\nEmily\nMegan\nElizabeth\nLauren\nAmber\nRachel\nKayla\nMelissa\nHannah\nKelsey\nDanielle\nHeather\nMichelle\nChelsea\nKatherine\nRebecca\nSara\nCourtney\nTiffany\nChristina\nLaura\nAmy\nAndrea\nAlyssa\nErin\nKelly\nCrystal\nCaitlin\nAlexandra\nVanessa\nCassandra\nKimberly\nAlicia\nLindsey\nKathryn\nErica\nVictoria\nMary\nAnna\nShannon\nJamie\nJordan\nBrianna\nKatie\nKristen\nNatalie\nChristine\nJasmine\nBrittney\nAllison\nAngela\nLisa\nTaylor\nKendra\nKristin\nMolly\nMorgan\nWhitney\nLindsay\nTara\nJenna\nMonica\nLeah\nKristina\nMarissa\nPaige\nHolly\nDesiree\nAbigail\nBrandi\nErika\nKatelyn\nMaria\nCatherine\nMonique\nNatasha\nJacqueline\nVeronica\nBreanna\nChelsey\nMeghan\nBrooke\nJulie\nAlexis\nApril\nKaitlin\nMargaret\nJulia\nPatricia\nRachael\nAlison\nBriana\nMelanie\nAlisha\nBrandy\nMeagan\nValerie\nKathleen\nKrista\nKrystal\nMallory\nMiranda\nNichole\nSabrina\nGabrielle\nAlexandria\nKara\nKirsten\nBethany\nCynthia\nFelicia\nKylie\nLeslie\nRenee\nAudrey\nHeidi\nKatrina\nLacey\nRebekah\nAnne\nKaitlyn\nSierra\nAdriana\nBianca\nJessie\nMadeline\nSydney\nCaroline\nMichaela\nAlexa\nEmma\nGina\nKaylee\nKelli\nMackenzie\nMadison\nAngel\nAshlee\nClaire\nDana\nSasha\nSavannah\nChantel\nJillian\nNaomi\nAngelica\nAubrey\nAutumn\nCarissa\nHaley\nAmelia\nBailey\nBritney\nCandace\nCara\nCasey\nJustine\nKari\nMarie\nOlivia\nAshleigh\nDenise\nEllen\nTeresa\nAriel\nCandice\nDeanna\nDiana\nHayley\nMeredith\nRaquel\nToni\nAnastasia\nCarrie\nDevin\nGrace\nKristi\nRobin\nSandra\nTessa\nTheresa\nArielle\nBrenda\nBrianne\nHilary\nHope\nJaime\nKaren\nKyla\nRachelle\nTanya\nAlyson\nBarbara\nCarolyn\nElise\nJade\nJoanna\nKristine\nMarisa\nVirginia\nAimee\nAngelina\nBrenna\nBridget\nCharlene\nColleen\nDestiny\nDonna\nJacquelyn\nKellie\nKelsie\nNina\nShawna\nStacey\nSusan\nTina\nCarly\nCassie\nDevon\nElisabeth\nJaclyn\nKate\nLaurel\nLinda\nTracy\nAlissa\nAllyson\nAnn\nAshton\nCaitlyn\nCamille\nDesirae\nJanelle\nMariah\nMelinda\nMercedes\nRose\nRuby\nShantel\nSheena\nShelby\nSophia\nStacy\nTabitha\nAshlie\nBonnie\nCarmen\nCasandra\nChantelle\nCristina\nDominique\nKacey\nKaila\nKendall\nPriscilla\nRandi\nTasha\nAna\nChloe\nDawn\nElyse\nJill\nKelley\nKylee\nLeanna\nLeigh\nAdrienne\nAlisa\nAlyse\nChelsie\nElisa\nFaith\nHillary\nJanessa\nJeanette\nJenifer\nKatharine\nKelsi\nLydia\nMaggie\nSadie\nSummer\nTamara\nTaryn\nAbby\nAdrianna\nBrittni\nCecilia\nElena\nJazmine\nJuliana\nKira\nKrystle\nLyndsey\nNicolette\nRegina\nRoxanne\nSonja\nStacie\nStefanie\nAntoinette\nAshly\nCallie\nCassidy\nChandra\nChantal\nDanika\nEva\nJana\nJanet\nJerica\nJocelyn\nJoy\nJuanita\nJulianne\nKarissa\nKaty\nLarissa\nLeticia\nLily\nMandy\nMelody\nNancy\nNikki\nStevie\nSuzanne\nSylvia\nAlana\nBlanca\nBreanne\nCharity\nCharlotte\nEbony\nEricka\nGenevieve\nHanna\nJane\nJenny\nJolene\nJustina\nKali\nKristie\nKristy\nMeaghan\nRhiannon\nRobyn\nShaina\nSonia\nTanisha\nTiana\nAbbey\nAlma\nAlysha\nAudra\nBrittanie\nCheryl\nClaudia\nCortney\nElaine\nEleanor\nGloria\nHelen\nHollie\nJami\nKasandra\nKasey\nKassandra\nKatelynn\nKayleigh\nKerri\nKirstin\nKrysta\nLara\nMckenzie\nMia\nMichele\nMindy\nMollie\nNadine\nShayla\nSheila\nSonya\nTia\nTonya\nZoe\nAlice\nAnnette\nAnnie\nAriana\nAspen\nBrittani\nCayla\nChristy\nCiara\nDarlene\nDeborah\nEsther\nIrene\nIsabel\nJackie\nJesse\nJessi\nJordyn\nJosephine\nKacie\nKaley\nKarina\nKatelin\nKaylie\nKiara\nKimber\nLacy\nLatisha\nLori\nLucy\nMaegan\nMarina\nMayra\nMisty\nNorma\nPamela\nPaula\nSerena\nShana\nSkye\nStaci\nSunny\nTess\nTiara\nTiffani\nTraci\nYesenia\nAdrianne\nAlaina\nAlex\nAlexandrea\nAlysia\nAmie\nAndria\nAngelique\nBrittny\nCarla\nChanel\nCheyenne\nChristie\nCierra\nCorina\nDaisy\nHailey\nJaimie\nJanae\nJazmin\nJohanna\nJudith\nKarla\nKiersten\nLeann\nMakayla\nMartha\nNatalia\nNoel\nParis\nRochelle\nRosemary\nRuth\nSalina\nSavanna\nSelina\nSimone\nStacia\nStephany\nTabatha\nTatiana\nTracey\nTrisha\nWendy\nYvette\nAli\nAlix\nAllie\nAnita\nArianna\nAyla\nBaylee\nBeth\nBlair\nBobbie\nBreann\nCameron\nCarol\nCassi\nCecily\nCelia\nChelsi\nCherish\nChrista\nChrystal\nCiera\nCindy\nClarissa\nCora\nCydney\nDebra\nElisha\nEliza\nFrancesca\nGabriella\nGillian\nJanna\nJasmin\nJayme\nJena\nKala\nKarlee\nKarlie\nKathrine\nKati\nKatlyn\nKaylyn\nKeely\nKelsea\nKortney\nKristian\nLacie\nLeanne\nLoren\nLorena\nLorin\nLynette\nLynnette\nMaureen\nMicaela\nMikayla\nMoriah\nNikole\nPaulina\nPhoebe\nRena\nRoberta\nRosa\nShanna\nShayna\nShea\nTalia\nTori\nVenessa\nYolanda\nYvonne\nAleah\nAlecia\nAlycia\nAnalisa\nAnika\nAnjelica\nAnnamarie\nAnnika\nAntionette\nAshli\nAudrianna\nAurora\nBetty\nBritany\nBrittaney\nBrittnie\nBrook\nCari\nCassondra\nCeleste\nCharissa\nChastity\nCheri\nCherie\nCherise\nCody\nCorey\nCori\nCorinne\nCory\nDanae\nDeidra\nDeidre\nDevyn\nDiamond\nDorothy\nEllie\nEsmeralda\nEunice\nEvelyn\nFarrah\nGretchen\nIris\nJacklyn\nJessika\nJodi\nKalee\nKallie\nKayli\nKeisha\nKeri\nKerry\nKiera\nKimberlee\nKirstie\nKrystin\nKyle\nLaci\nLatasha\nLatoya\nLaurie\nLea\nLillian\nLina\nMarlene\nMartina\nMelisa\nMichael\nPrecious\nRacheal\nRaeann\nReanna\nReina\nRhonda\nRita\nSarina\nShanelle\nShanice\nSharon\nShauna\nShelly\nSherry\nShirley\nSophie\nTarah\nTawni\nTeri\nTierra\nTrina\nJessica\nAshley\nAmanda\nBrittany\nSarah\nSamantha\nMegan\nLauren\nJennifer\nStephanie\nKayla\nNicole\nElizabeth\nEmily\nRachel\nHannah\nChelsea\nAlyssa\nDanielle\nRebecca\nAmber\nKelsey\nKatherine\nMelissa\nCourtney\nHeather\nAlexandra\nMichelle\nSara\nLaura\nJordan\nCaitlin\nTiffany\nTaylor\nChristina\nCrystal\nCassandra\nErin\nAmy\nLindsey\nKelly\nBrianna\nAndrea\nKimberly\nAllison\nJamie\nAnna\nErica\nKathryn\nJasmine\nAlicia\nVanessa\nBrittney\nVictoria\nMorgan\nNatalie\nShannon\nAngela\nKatie\nMolly\nAlexis\nLindsay\nBrooke\nMary\nShelby\nKristen\nLisa\nChristine\nWhitney\nAriel\nErika\nKatelyn\nKristin\nMarissa\nApril\nMaria\nOlivia\nPaige\nBriana\nJulia\nBrandi\nJacqueline\nLeah\nBethany\nKaitlyn\nKara\nKendra\nMeghan\nAbigail\nAlexandria\nHolly\nMiranda\nMonica\nRachael\nGabrielle\nJenna\nJulie\nBreanna\nKathleen\nMelanie\nSabrina\nKatrina\nMargaret\nCatherine\nKristina\nNatasha\nTara\nMonique\nDesiree\nHaley\nKrista\nPatricia\nCynthia\nKaitlin\nKrystal\nClaire\nDana\nFelicia\nSydney\nVeronica\nKirsten\nNichole\nSierra\nAudrey\nBianca\nMadeline\nMadison\nCarly\nMercedes\nAshleigh\nJillian\nKelli\nSavannah\nAshlee\nBrandy\nCandice\nCarissa\nEmma\nValerie\nAngel\nAngelica\nChelsey\nDiana\nDominique\nGrace\nJanelle\nKylie\nLeslie\nMackenzie\nMallory\nMeagan\nAubrey\nDestiny\nLacey\nTasha\nAutumn\nCaitlyn\nChloe\nJustine\nMariah\nTamara\nAlisha\nArielle\nKaren\nTessa\nAlison\nAnne\nBrenda\nCaroline\nGina\nJaclyn\nSusan\nBailey\nJade\nSophia\nAdriana\nAngelina\nBritney\nCarolyn\nChantel\nMarie\nRebekah\nTabitha\nTeresa\nTheresa\nToni\nDenise\nElise\nHeidi\nKaylee\nMichaela\nRochelle\nSavanna\nShawna\nCandace\nCasey\nCassie\nCortney\nKari\nBrittani\nRobin\nTina\nAlexa\nBrianne\nCara\nElena\nHillary\nJacquelyn\nMarisa\nMisty\nRose\nStacy\nCheryl\nGabriela\nHilary\nKate\nKellie\nNancy\nNaomi\nRachelle\nRenee\nSandra\nStacey\nAlissa\nBrenna\nCamille\nCarrie\nCristina\nDevon\nSasha\nSonya\nTaryn\nAbby\nAdrianna\nAdrienne\nAimee\nAna\nColleen\nElisabeth\nJaime\nJessie\nKaila\nKristine\nLydia\nRandi\nRaquel\nZoe\nAriana\nDanica\nEllen\nGenevieve\nHanna\nJoanna\nKelsie\nLarissa\nLinda\nRhiannon\nShantel\nSheila\nAllyson\nArianna\nBridget\nCallie\nCharlotte\nDevin\nEva\nHayley\nKyra\nMarina\nMeredith\nRegina\nRoxanne\nYvette\nAmelia\nAnastasia\nAntoinette\nBonnie\nClarissa\nClaudia\nDeanna\nDonna\nFaith\nHope\nKaley\nKassandra\nKyla\nNina\nPaula\nRobyn\nRuby\nRuth\nSadie\nTracy\nYolanda\nAnn\nBarbara\nCassidy\nElisa\nJaimie\nJanae\nJanessa\nJolene\nKacey\nKali\nKarina\nKelley\nKendall\nKira\nKristi\nKylee\nLara\nMelinda\nMichele\nMoriah\nSerena\nShauna\nShayna\nStefanie\nSummer\nTonya\nAlisa\nAngelia\nBeth\nCarla\nChelsie\nChrista\nDakota\nDanika\nDawn\nDesirae\nJane\nJordyn\nJosephine\nKatharine\nKayleigh\nKiara\nKimberley\nKirstin\nLaurel\nLucy\nMaggie\nMarcella\nMaya\nPriscilla\nStephany\nTia\nYesenia\nBernadette\nBobbie\nBreann\nBreanne\nCheyenne\nChristy\nCiara\nCorinne\nEbony\nGabriella\nGloria\nJodi\nKrysta\nLeticia\nLyndsey\nMandy\nMayra\nMckenna\nMelody\nMia\nMikayla\nNicolette\nNikki\nRacheal\nShayla\nShea\nTanisha\nTanya\nTerra\nTori\nVirginia\nAlana\nAlexandrea\nAlycia\nAntonia\nCarolina\nChantelle\nCori\nDeborah\nDiane\nElyse\nEricka\nJackie\nJayme\nJill\nJocelyn\nJohanna\nKarissa\nKarla\nKasey\nKatelynn\nKatlyn\nKaylin\nKeely\nKelsi\nKerry\nKiley\nKori\nKristy\nKristyn\nLacie\nLori\nMartha\nMindy\nMollie\nNora\nShaina\nShana\nTayler\nTess\nAbbey\nAlaina\nAlanna\nAlena\nAlyssia\nAngelique\nAnnette\nAshton\nAudriana\nBreana\nBree\nCayla\nCecilia\nChandra\nCharlene\nConnie\nCorina\nDaisy\nEvelyn\nGretchen\nHelen\nIsabel\nJanay\nJanet\nJanice\nJasmin\nJazmine\nJenny\nJosie\nJourdan\nJuliana\nKacie\nKailey\nLacy\nLatasha\nLeanna\nMargarita\nMarisol\nMeaghan\nNicolle\nNoelle\nRichelle\nRikki\nShanna\nSharon\nSimone\nStacie\nSuzanne\nSylvia\nTiana\nWendy\nAbbie\nAlejandra\nAlyson\nAmbrosia\nAnnie\nAshlie\nAthena\nBobbi\nBridgette\nBrittni\nChantal\nChelsee\nDaniella\nDemi\nEliza\nEmilie\nFrances\nJami\nJenessa\nJoy\nKaleigh\nKathy\nKatlin\nKeri\nLaci\nLauryn\nLeandra\nLeann\nLeigh\nLena\nLiliana\nLillian\nLora\nMakayla\nMara\nMaranda\nMarisela\nMaureen\nMckenzie\nNikole\nPamela\nRiley\nRosa\nShanae\nSky\nSkylar\nStevie\nTarah\nTawny\nTherese\nTierra\nTraci\nTrisha\nAlannah\nAlysha\nAndria\nArianne\nAshlyn\nAsia\nBetty\nBlanca\nBrandie\nBritni\nBrittnee\nBrittny\nCarlee\nCarmen\nCasandra\nCelina\nCindy\nClara\nClare\nCory\nDarcy\nDevan\nEileen\nElaina\nElaine\nHailey\nHallie\nIrene\nJeanette\nJeannette\nJena\nJenifer\nJerica\nJessika\nJuanita\nJulianna\nJulianne\nKaci\nKacy\nKarlee\nKarlie\nKayleen\nKaylyn\nKyndra\nLatisha\nLea\nLily\nLorena\nLuz\nLynn\nMadelyn\nMakenzie\nMaricela\nMicaela\nMiriam\nNatalia\nPerla\nPorsche\nSage\nSally\nSonia\nSonja\nSophie\nStormy\nTabatha\nTammy\nTera\nTrista\nYvonne\nAlexzandrea\nAlice\nAlina\nAlma\nAlysa\nAnnalise\nAspen\nAvery\nBaylee\nBecky\nBlake\nBreonna\nBryanna\nCarina\nCarol\nCassondra\nCecelia\nCecily\nCeleste\nCelia\nChanel\nChante\nChelsi\nCierra\nDanelle\nDara\nDarlene\nDebra\nDeidra\nDelaney\nDevyn\nDiamond\nDusty\nEden\nEleanor\nElla\nEmilee\nEsther\nFelisha\nGillian\nIris\nIvy\nJacklyn\nJaimee\nJaymie\nJeri\nJesse\nJustina\nKalyn\nKaryn\nKassie\nKaty\nKelci\nKendal\nKia\nKirstie\nKortney\nKourtney\nKyle\nLaurie\nLindsy\nLindy\nLogan\nLouise\nLyndsay\nLynsey\nMadalyn\nMadeleine\nMalissa\nMaricruz\nMarlee\nMarley\nMartika\nMikaela\nMyranda\nNadia\nNichelle\nNorma\nPortia\nRae\nRaeanne\nRaina\nRaven\nRenae\nRhianna\nRhonda\nRosalind\nRosemary\nRoxana\nShante\nShantell\nShelbi\nShelbie\nShelly\nSusanna\nTracey\nTricia\nVanesa\nJessica\nAshley\nAmanda\nSarah\nBrittany\nSamantha\nMegan\nKayla\nEmily\nStephanie\nJennifer\nRachel\nElizabeth\nHannah\nLauren\nNicole\nRebecca\nAmber\nChelsea\nKelsey\nDanielle\nShelby\nAlyssa\nKatherine\nAlexandra\nMichelle\nBrianna\nCourtney\nMelissa\nErin\nHeather\nTaylor\nJordan\nVictoria\nMariah\nAnna\nAmy\nChristina\nSara\nAndrea\nLaura\nKimberly\nLindsey\nJasmine\nCassandra\nAlexis\nCrystal\nBrittney\nKatie\nKelly\nTiffany\nVanessa\nCaitlin\nMorgan\nMary\nKathryn\nJamie\nAllison\nAriel\nMolly\nJulia\nBrooke\nErica\nMaria\nShannon\nMarissa\nAlicia\nBriana\nMiranda\nLisa\nBreanna\nKristen\nLeah\nMeghan\nAngela\nNatalie\nLindsay\nPaige\nJenna\nKaitlin\nChristine\nKara\nNatasha\nAlexandria\nKaitlyn\nAbigail\nHaley\nHolly\nKatelyn\nKristina\nWhitney\nOlivia\nDesiree\nErika\nKathleen\nKristin\nBrandi\nCatherine\nMonique\nVeronica\nKendra\nMelanie\nRachael\nAudrey\nMadison\nNichole\nJacqueline\nGabrielle\nSydney\nMonica\nSierra\nKirsten\nAlexa\nBailey\nPatricia\nDestiny\nTara\nAlison\nEmma\nFelicia\nJulie\nAshleigh\nCarly\nCaroline\nClaire\nGrace\nMackenzie\nRebekah\nTessa\nAngelica\nApril\nElise\nHayley\nKatrina\nMargaret\nSavannah\nBrandy\nCynthia\nKrista\nAlisha\nChelsey\nSabrina\nAdriana\nAshlee\nAubrey\nBethany\nBianca\nCasey\nMallory\nHeidi\nMadeline\nMeagan\nAnne\nDiana\nKelli\nValerie\nAmelia\nBrenda\nTheresa\nAutumn\nCaitlyn\nDeanna\nDevin\nKrystal\nKylie\nBrenna\nKaylee\nCheyenne\nJacquelyn\nJade\nJanelle\nJessie\nKarissa\nKelsie\nShayla\nDevon\nHanna\nHope\nKate\nMercedes\nNaomi\nRandi\nAriana\nCandice\nCarissa\nMichaela\nTabitha\nTanya\nTori\nYesenia\nGina\nIesha\nJanessa\nJillian\nLacey\nSusan\nAdrienne\nAnastasia\nAngelina\nArielle\nAspen\nBrianne\nBrittani\nChelsie\nKelsi\nRaquel\nRenee\nSandra\nSophia\nTia\nCandace\nCara\nCarolyn\nCarrie\nChloe\nDana\nDominique\nHillary\nJaclyn\nJazmine\nKacey\nKayleigh\nMelinda\nRachelle\nTess\nAimee\nBarbara\nColleen\nHilary\nKendall\nMarisa\nAdrianna\nAna\nAngel\nCristina\nDenise\nGabriella\nJoanna\nJustine\nKelley\nKirstie\nLydia\nShantel\nShawna\nZoe\nAlissa\nAnn\nDesirae\nEllen\nGabriela\nJasmin\nJordyn\nKaren\nKarina\nKassandra\nKristy\nRaven\nRobyn\nRochelle\nStacey\nAnnie\nBreanne\nCeleste\nChantel\nChrista\nClaudia\nJaimie\nLeslie\nMarie\nMeredith\nNina\nSavanna\nSylvia\nCecilia\nCharlotte\nDakota\nDeborah\nEva\nHailey\nJaime\nJane\nKristine\nMelody\nMoriah\nNancy\nNicolette\nRobin\nRuby\nTamara\nTayler\nTeresa\nTina\nTonya\nAbby\nAllyson\nCallie\nCamille\nElena\nFaith\nJanet\nJenessa\nJocelyn\nKaela\nKali\nKarlie\nKatharine\nKellie\nLaurel\nLeanna\nLeticia\nLinda\nMindy\nMiriah\nMiriam\nNikki\nRose\nSadie\nSummer\nTatiana\nYolanda\nAlyson\nBobbi\nBridget\nCarla\nCarmen\nCassidy\nCassie\nCharity\nCierra\nCortney\nDawn\nHallie\nIsabel\nJenny\nKailee\nKaley\nKyla\nMisty\nRosa\nRoxanne\nSerena\nShea\nStevie\nTiana\nTiffani\nTracy\nVirginia\nWendy\nAlaina\nAlexandrea\nAshli\nCarol\nChristy\nCiara\nCindy\nClare\nCody\nDaisy\nDemi\nElisabeth\nEvelyn\nGloria\nIrene\nJanae\nJill\nJustina\nKacie\nKari\nKatelynn\nKiersten\nKristi\nKyra\nLori\nMartha\nMayra\nMollie\nPamela\nPrecious\nRosemary\nAlejandra\nAlysha\nAnnette\nAshlie\nBobbie\nBrandie\nBritney\nBrynn\nCheryl\nChristie\nEleanor\nElisa\nEsther\nIsabella\nJodi\nJosephine\nJudith\nJuliana\nKaila\nKiara\nKira\nKirstin\nMadeleine\nMaggie\nMarina\nMckenzie\nMeaghan\nMikayla\nPaula\nRhiannon\nRichelle\nShanae\nSharon\nShayna\nSimone\nSophie\nToni\nTyler\nAlana\nAlanna\nArianna\nAshlyn\nAsia\nAudrianna\nAyla\nBrittni\nCayla\nCelina\nChantelle\nCherie\nChrystal\nDiane\nDonna\nEricka\nJacklyn\nJayme\nJeanette\nJena\nJessika\nJolene\nKailey\nKarly\nKasandra\nKori\nLacy\nLara\nLarissa\nMaureen\nMaya\nMckenna\nMia\nRacheal\nRegina\nRita\nRuth\nSavanah\nStefanie\nTanisha\nTaryn\nTiara\nTrisha\nYvonne\nAngelique\nAnjelica\nAthena\nAudra\nBreann\nCasandra\nCatrina\nCorinne\nDaniela\nDanika\nDevan\nDiamond\nElisha\nEliza\nEmilee\nEstrella\nGwendolyn\nJami\nJanell\nJazmin\nJesse\nJoelle\nJohanna\nJoslyn\nJoy\nJulianna\nKaitlynn\nKalie\nKasey\nKatelin\nKatlyn\nKaty\nKayli\nKaylyn\nKaylynn\nKylee\nLauryn\nLeandra\nLeigh\nLesley\nLucy\nMakenzie\nMandy\nMara\nMaribel\nMarisol\nMichele\nMikaela\nNadine\nNia\nNikole\nNorma\nPriscilla\nRiley\nRyan\nSally\nShanna\nShantell\nShelbi\nStacy\nTasha\nTatum\nVivian\nAddie\nAisha\nAlex\nAlice\nAlina\nAlisa\nAlishia\nAshton\nBonnie\nBreana\nBriann\nBrittanie\nBrittnie\nBryn\nChanel\nChasity\nChelsi\nChelsy\nChristen\nChristian\nCiera\nDanae\nDarcy\nDeidra\nDelaney\nElyse\nEryn\nFrancesca\nGenevieve\nGuadalupe\nHelen\nHollie\nKayleen\nKeely\nKenzie\nKerri\nKristyn\nLacie\nLatisha\nLaurie\nLeann\nLeanne\nLeilani\nLily\nLogan\nLoren\nLorena\nLucia\nLynsey\nMadelyn\nMakayla\nMandi\nMarcella\nMerissa\nMicah\nMonika\nMyranda\nNichelle\nNoelle\nNora\nPerla\nRamona\nShaina\nShauna\nSuzanne\nTalia\nTera\nTerra\nYvette\nAdrian\nAlayna\nAleah\nAlesha\nAlexia\nAlix\nAntoinette\nAntonia\nAshly\nAubree\nAva\nBernadette\nBeth\nBeverly\nBlanca\nBrielle\nBrook\nCarlee\nCarli\nChandra\nCharlene\nCharmaine\nCherise\nChristiana\nChristin\nClara\nClarissa\nConstance\nCori\nCorina\nCristal\nDanelle\nDara\nDebra\nDevyn\nEbony\nEileen\nEmilie\nFlor\nGillian\nGretchen\nHali\nHana\nHarper\nIndia\nIsela\nJenifer\nJesica\nJuanita\nKaci\nKarlee\nKatheryn\nKathrine\nKatlin\nKaycee\nKaylene\nKaylin\nKellen\nKelsea\nKiah\nKiana\nKierra\nKimberlee\nKodi\nKristie\nKrysta\nKrystina\nKyle\nLana\nLatasha\nLatoya\nLea\nLia\nLillian\nLora\nLyndsey\nLynn\nMaira\nMaranda\nMari\nMarianne\nMarlene\nMartika\nMaura\nMicaela\nNadia\nNatalia\nNatosha\nNikita\nPatrice\nPaulina\nRebeca\nRenae\nSage\nSalina\nSasha\nSelene\nSelina\nShanell\nShirley\nSidney\nSonia\nSpencer\nStaci\nStacia\nTabatha\nTammy\nTania\nTawny\nYadira\nYasmin\nJessica\nAshley\nSarah\nAmanda\nBrittany\nEmily\nSamantha\nRachel\nMegan\nHannah\nKayla\nElizabeth\nNicole\nLauren\nJennifer\nTaylor\nChelsea\nDanielle\nKelsey\nStephanie\nShelby\nAmber\nAlexandra\nRebecca\nKatherine\nMelissa\nJordan\nMorgan\nMichelle\nAlyssa\nHeather\nCassandra\nAndrea\nCourtney\nChristina\nBrianna\nSara\nMariah\nAnna\nVictoria\nErin\nLaura\nAmy\nKaitlyn\nAlexis\nJasmine\nTiffany\nVanessa\nKatie\nKimberly\nErica\nAllison\nKatelyn\nKathryn\nJenna\nMackenzie\nPaige\nMaria\nLindsey\nCrystal\nJamie\nMarissa\nAlicia\nErika\nBreanna\nNatalie\nCaitlin\nKendra\nMary\nBrooke\nKelly\nKristen\nAlexandria\nHaley\nJulia\nMiranda\nAngelica\nBrittney\nLindsay\nMadison\nOlivia\nShannon\nLeah\nMolly\nAngela\nSierra\nAriel\nLisa\nDesiree\nEmma\nKristina\nChristine\nMonica\nVeronica\nNatasha\nGabrielle\nApril\nKatrina\nWhitney\nCatherine\nBrandi\nSydney\nBethany\nSavannah\nBriana\nKara\nAbigail\nDestiny\nRachael\nSabrina\nBailey\nMargaret\nMeghan\nCaroline\nKathleen\nJacqueline\nKrista\nBianca\nKristin\nMonique\nChelsey\nKylie\nClaire\nHolly\nAngel\nDiana\nHayley\nKaitlin\nRebekah\nTara\nBrandy\nCaitlyn\nHillary\nJulie\nKaylee\nNichole\nCarly\nJade\nAlisha\nFelicia\nPatricia\nAudrey\nBrenda\nCynthia\nMelanie\nSandra\nAshlee\nMercedes\nValerie\nDominique\nMadeline\nMichaela\nAlexa\nAlison\nKirsten\nKrystal\nShayla\nTessa\nAnastasia\nAubrey\nGrace\nKassandra\nKelli\nHeidi\nKarina\nCandice\nCarissa\nHailey\nJessie\nAshleigh\nChloe\nJaime\nZoe\nAimee\nArielle\nAutumn\nCassie\nChelsie\nCheyenne\nElena\nHanna\nKate\nKatelynn\nKendall\nMarie\nMckenzie\nTamara\nAnne\nAriana\nBridget\nCara\nFaith\nKellie\nLeslie\nNaomi\nAdrianna\nCandace\nCasey\nCristina\nDana\nDeanna\nEllen\nJillian\nLydia\nMallory\nMarina\nAdriana\nAmelia\nAngelina\nDenise\nGina\nJoanna\nLacey\nRenee\nSavanna\nToni\nTori\nCallie\nElise\nRose\nRuby\nStacey\nSusan\nTabitha\nTeresa\nTheresa\nTia\nAlejandra\nBrenna\nChantel\nCiara\nDakota\nKyla\nMarisa\nSasha\nShanice\nTayler\nAlissa\nAna\nAngelique\nArianna\nCecilia\nKarissa\nKylee\nMeagan\nRandi\nShawna\nSophia\nTanya\nTyler\nCamille\nCarolyn\nCeleste\nCierra\nGabriela\nIsabel\nJazmin\nJazmine\nJocelyn\nJustine\nKelsie\nKira\nLarissa\nMaggie\nMaya\nMayra\nMikayla\nNancy\nSonya\nStephany\nTaryn\nAllyson\nAshly\nBrianne\nClaudia\nColleen\nDesirae\nJordyn\nKaleigh\nKristi\nKristine\nMia\nMoriah\nNikki\nRaven\nRosa\nCindy\nDevin\nDevon\nEva\nHope\nJaclyn\nKatharine\nLeticia\nRobin\nRuth\nTalia\nTess\nTiana\nAnnie\nBonnie\nBryanna\nCarrie\nCassidy\nChristy\nHilary\nJacquelyn\nJanae\nJenny\nJohanna\nKaren\nKasey\nLily\nMollie\nRikki\nRobyn\nShantel\nSkylar\nSophie\nSylvia\nVivian\nAspen\nAudra\nBarbara\nChrista\nDaisy\nJanelle\nKarlee\nKatlyn\nKelley\nKelsi\nKirstie\nKristy\nLori\nMckenna\nRachelle\nShanna\nSharon\nAnn\nAvery\nBritney\nCarla\nCarmen\nCharlotte\nCiera\nIrene\nJill\nKaley\nKayleigh\nKirstin\nKyra\nLatisha\nLillian\nLorena\nMartha\nMisty\nNicolette\nRaquel\nSage\nStacy\nTonya\nYesenia\nAlana\nAllie\nAnnika\nAshlie\nBreana\nBrittanie\nBrittni\nChandler\nChantelle\nClarissa\nDaniela\nDawn\nDeborah\nElisa\nElisabeth\nGloria\nJanet\nKailey\nKali\nKari\nKarli\nKaterina\nKiara\nLaurel\nLauryn\nLinda\nLogan\nMariela\nMeredith\nMonika\nNoelle\nPriscilla\nRiley\nRita\nSimone\nSummer\nTasha\nTina\nTrisha\nAlexandrea\nAlisa\nAlysha\nAshton\nAurora\nCorinne\nDemi\nDiamond\nDonna\nEricka\nEvelyn\nGabriella\nHelen\nIesha\nKaila\nKaylyn\nKinsey\nKourtney\nLea\nLena\nLyndsey\nMadeleine\nMelinda\nPamela\nSadie\nShanae\nSonia\nSuzanne\nAbbey\nAdrienne\nAlice\nAlina\nAlyson\nAraceli\nAshlyn\nBernadette\nBeth\nBreann\nBrieanna\nBrittani\nCaley\nCasandra\nCherie\nCortney\nDelaney\nDevyn\nDiane\nElyse\nEmerald\nEmilee\nEsmeralda\nFrancesca\nGenevieve\nGianna\nJaimie\nJana\nJosephine\nKacie\nKaitlynn\nKarla\nKarly\nKasandra\nKaylynn\nKiley\nLacy\nLara\nLexi\nMaddison\nMakayla\nMakenzie\nMelody\nMerissa\nMindy\nPerla\nReanna\nRochelle\nShayna\nShea\nVirginia\nAlex\nAlexia\nAlyse\nAnjelica\nAshlynn\nBlair\nBrandie\nBreanne\nBrook\nCarley\nCarlie\nChandra\nClara\nClare\nCora\nCydney\nDeidre\nDomonique\nElaine\nElisha\nElla\nEmilia\nFrances\nHelena\nIris\nJayme\nJeanette\nJesse\nJosie\nJulianna\nKarlie\nKiana\nKiersten\nKortney\nLacie\nLatasha\nLeann\nLucy\nMadalyn\nMara\nMaranda\nMargarita\nMaribel\nMarisela\nMiriah\nNadia\nNina\nNora\nPaula\nRhiannon\nRyan\nSelina\nSerena\nSheila\nShelbi\nShelbie\nSidney\nSkyler\nStaci\nStacie\nStefanie\nSydnee\nTania\nTawny\nTiara\nTrista\nYvette\nAli\nAlma\nAmie\nAnnette\nAntoinette\nAshli\nAubree\nAyla\nBlanca\nBrandee\nBrielle\nBritany\nCarina\nCassondra\nCayla\nCelia\nChanel\nChantell\nChelsi\nCheryl\nDani\nDanika\nDeidra\nDestinee\nDestiney\nDevan\nEbony\nEdith\nEleanor\nEsther\nFelicity\nFlor\nGeorgia\nHarley\nIndia\nIsabella\nIvy\nJackie\nJami\nJane\nJanel\nJanette\nJasmin\nJena\nJuliana\nKacey\nKaci\nKaela\nKallie\nKalyn\nKatarina\nKaylie\nKaylin\nKeisha\nKelsea\nKerry\nKiera\nKristie\nLaurie\nLeandra\nLeigh\nLorraine\nLyndsay\nMarisol\nMeaghan\nMelisa\nMikaela\nMontana\nMyranda\nMyriah\nNatalia\nNikita\nPhoebe\nRegina\nSavana\nShaina\nShauna\nSkye\nStevie\nTamra\nTatiana\nTianna\nTierra\nTiffani\nTracy\nYvonne\nAbby\nAcacia\nAdrian\nAdrianne\nAisha\nAlanna\nAlecia\nAlix\nAlysia\nAnissa\nAshely\nAudrianna\nAyana\nBaylee\nBeverly\nBobbi\nBobbie\nBreonna\nBrittnee\nBryana\nCarli\nCarol\nCarolina\nChanelle\nChantal\nChristen\nChristian\nCodi\nCody\nColette\nCorina\nCristal\nDallas\nDanae\nDanyelle\nDarcie\nDarian\nDarlene\nDesire\nDestini\nDora\nEliana\nElyssa\nEmilie\nEsperanza\nFallon\nFatima\nGuadalupe\nHaleigh\nHalie\nHeaven\nJacey\nJanessa\nJazmyne\nJerica\nJessika\nJoanne\nJodi\nJoslyn\nJoyce\nJuana\nJuanita\nJulianne\nJustina\nKailee\nKalli\nKanisha\nKarisa\nKatelin\nKaty\nKayleen\nKayli\nKaytlyn\nKeeley\nKelci\nKelsy\nKenzie\nKeri\nKimber\nKimberley\nKrysta\nKrystle\nLeanna\nLizbeth\nLynn\nMadelyn\nMallorie\nMandy\nMaura\nMckayla\nMiriam\nNichelle\nPayton\nRenae\nRhea\nRichelle\nRocio\nRoxanne\nSelena\nSerenity\nShaelyn\nShanelle\nShaniqua\nShannan\nSofia\nSydni\nSymone\nTabatha\nTanisha\nTiera\nTosha\nTracey\nTraci\nTrinity\nTyra\nValeria\nWendy\nYolanda\nJessica\nAshley\nSarah\nTaylor\nSamantha\nEmily\nAmanda\nBrittany\nRachel\nElizabeth\nNicole\nKayla\nMegan\nLauren\nHannah\nAmber\nAlexandra\nDanielle\nStephanie\nJennifer\nKelsey\nAlyssa\nKatherine\nRebecca\nJordan\nShelby\nAlexis\nVictoria\nJasmine\nBrianna\nChelsea\nCourtney\nMariah\nSara\nChristina\nMelissa\nLaura\nHeather\nCassandra\nMichelle\nMorgan\nTiffany\nLindsey\nBrooke\nAnna\nKatelyn\nAndrea\nErin\nKaitlyn\nMarissa\nCaitlin\nHaley\nOlivia\nMadison\nKathryn\nBreanna\nSierra\nAlexandria\nEmma\nAllison\nJulia\nShannon\nMary\nKatie\nKelly\nAbigail\nNatalie\nCrystal\nSydney\nPaige\nVanessa\nErica\nKimberly\nMaria\nMackenzie\nAmy\nAlicia\nKristen\nMiranda\nBriana\nAngela\nJamie\nKendra\nCatherine\nMolly\nSabrina\nBrittney\nLeah\nBrandi\nLisa\nAshleigh\nErika\nJenna\nDesiree\nHolly\nMadeline\nSavannah\nMargaret\nMeghan\nApril\nGabrielle\nLindsay\nBethany\nHailey\nBailey\nAriel\nDominique\nAngelica\nMonica\nAlexa\nCarly\nChloe\nChristine\nJade\nKylie\nJacqueline\nKara\nKathleen\nNatasha\nKatrina\nKaylee\nMelanie\nWhitney\nDeanna\nRachael\nCheyenne\nGrace\nTara\nAutumn\nBrenda\nDestiny\nKristin\nBianca\nCaroline\nFelicia\nJulie\nMikayla\nPatricia\nRebekah\nDiana\nHayley\nMichaela\nAshlee\nClaire\nDana\nKaitlin\nKristina\nNichole\nTessa\nAnne\nCasey\nMeagan\nAlison\nCynthia\nKassandra\nKira\nKaren\nKrista\nMarisa\nAudrey\nMakayla\nElise\nMonique\nAdriana\nCassidy\nVeronica\nAimee\nAubrey\nCaitlyn\nKendall\nMarina\nSandra\nSavanna\nTori\nZoe\nBrenna\nJazmine\nTyler\nJordyn\nKelli\nAmelia\nAngel\nKirsten\nLacey\nMallory\nMckenzie\nCarolyn\nClaudia\nEva\nFaith\nJazmin\nMercedes\nMoriah\nShayla\nTasha\nTia\nAbby\nAna\nChelsey\nDesirae\nGabriella\nKrystal\nTaryn\nBrandy\nCamille\nCharlotte\nHeidi\nJustine\nKarina\nMaggie\nNancy\nNaomi\nNina\nSophia\nSummer\nTabitha\nTayler\nValerie\nAllyson\nAnnie\nCiara\nCierra\nJoanna\nKatelynn\nRenee\nAnastasia\nBritney\nCindy\nCristina\nEllen\nGabriela\nKali\nMadeleine\nMarie\nAlejandra\nCandace\nDevin\nElena\nGina\nKarissa\nLeslie\nNikki\nShanice\nSusan\nToni\nYesenia\nAlisha\nAngelina\nAngelique\nAriana\nAspen\nCarissa\nClarissa\nHelen\nJessie\nKaley\nKate\nRosa\nRuby\nSadie\nTanya\nCallie\nChantel\nCorinne\nDaisy\nDakota\nHope\nIsabel\nJanae\nKatharine\nKelsie\nKrysta\nKyla\nKylee\nLarissa\nLeticia\nTheresa\nVivian\nWendy\nAdrianna\nAlysha\nCarrie\nFrances\nJaime\nJasmin\nJillian\nLillian\nNicolette\nParis\nRachelle\nAbbey\nAdrienne\nAlex\nAlexandrea\nAnjelica\nAshton\nCasandra\nColleen\nDenise\nJacquelyn\nJanelle\nJanet\nJocelyn\nKacey\nKailey\nKelley\nMayra\nRaquel\nRiley\nTamara\nTeresa\nAlana\nAlexia\nAlissa\nArianna\nBarbara\nBria\nBrittani\nChandler\nDevon\nDonna\nEvelyn\nGloria\nHanna\nJaclyn\nJeanette\nJenny\nKarla\nKasey\nKiana\nKinsey\nKyra\nMara\nMarisol\nMartha\nMckenna\nMelinda\nMikaela\nRobyn\nRose\nSonia\nStacy\nTanisha\nTess\nVirginia\nAnn\nAsia\nBrandie\nBryanna\nCara\nCassie\nCeleste\nDaniela\nDawn\nEllie\nHillary\nJill\nKarli\nKellie\nLiliana\nLucy\nLydia\nMeredith\nMollie\nPaula\nRobin\nSage\nAshlyn\nAthena\nAudra\nBridget\nBrooklyn\nCandice\nCarley\nCecilia\nChristy\nClara\nElisabeth\nEsther\nGenevieve\nJohanna\nJustina\nKaleigh\nKatarina\nKayleen\nKayleigh\nKiara\nLyndsey\nMadelyn\nMaya\nPeyton\nRuth\nSelina\nShyanne\nSophie\nStevie\nTatiana\nTiana\nAlaina\nBrook\nCarmen\nCarol\nChrista\nCortney\nDelaney\nDestinee\nGianna\nHallie\nIsabella\nJuliana\nJulianne\nKaila\nKatlyn\nKirstin\nKristi\nLinda\nMakenna\nMaranda\nMelody\nMicaela\nRandi\nRaven\nSelena\nShanna\nShantel\nShawna\nShea\nShelbi\nSimone\nStefanie\nTania\nTiffani\nYolanda\nAlice\nAlisa\nAlma\nAlycia\nAvery\nBreann\nBrianne\nCarla\nCarlee\nCarli\nCelina\nChantal\nCora\nCristal\nDallas\nDevyn\nEbony\nEmilie\nGuadalupe\nHalie\nHarley\nHaylee\nJana\nJane\nKari\nKarly\nKelsi\nKendal\nKiersten\nLeandra\nLeilani\nLily\nMariana\nMaribel\nMeaghan\nMisty\nPamela\nPerla\nPriscilla\nRegina\nReyna\nRhiannon\nRikki\nSantana\nSavanah\nShana\nStephany\nTammy\nTianna\nTrisha\nTyra\nAnissa\nAntoinette\nArielle\nAshlie\nBailee\nBlanca\nBrea\nBreeanna\nBrittni\nCaley\nCecelia\nCharlene\nCheyanne\nCiera\nClare\nConnie\nCorina\nDemi\nDevan\nElaine\nElisa\nFrancesca\nHaleigh\nJami\nJanessa\nJayme\nJerica\nJosephine\nKacie\nKaela\nKala\nKatelin\nKaylin\nKelsea\nKristine\nLea\nLogan\nLyndsay\nMaddison\nMaira\nMelina\nMelisa\nMia\nMikala\nMyranda\nPhoebe\nRochelle\nShae\nShilo\nSkylar\nSofia\nSonja\nStacey\nSusanna\nTalia\nYvette\nYvonne\nAlea\nAllie\nAlondra\nAlysia\nAlyson\nAntonia\nAshly\nAundrea\nBonnie\nBrittanie\nBrittny\nBronte\nCarlie\nCatrina\nChelsi\nChelsie\nChristian\nDanae\nDanica\nDanika\nDarian\nDeborah\nElsa\nEmilee\nEricka\nFelisha\nGeorgia\nJaimie\nJazmyn\nJean\nJoyce\nKassie\nKaty\nKaylyn\nKenzie\nKeri\nKerry\nKori\nLauryn\nLayla\nLucia\nLyndsie\nMisha\nNikole\nPayton\nRhianna\nRyan\nSamara\nSerenity\nSharice\nSharon\nSheridan\nSkye\nSonya\nStarla\nSuzanne\nTawni\nTiara\nTina\nTonya\nTracy\nValeria\nAlix\nAlli\nAubree\nAudrianna\nAyla\nBobbie\nBreana\nBrieanna\nBritany\nBryana\nBryn\nBrynn\nChandra\nChanel\nCory\nDamaris\nDanelle\nDeidra\nDeidre\nDiamond\nDianna\nDolores\nDomonique\nDrew\nEliza\nEmerald\nEmilia\nEryn\nEstrella\nFelicity\nFrankie\nGiselle\nHilary\nHolli\nIndia\nIris\nIsabelle\nIvy\nJanette\nJayde\nJenifer\nJoelle\nJosie\nJoy\nJuanita\nJudy\nKalyn\nKarlie\nKassidy\nKaylene\nKeely\nKelci\nKenna\nKierra\nKiley\nKirstie\nLa\nLarisa\nLorena\nLuz\nMalinda\nMarcella\nMarika\nMaritza\nMarley\nMicah\nMiriah\nMontana\nNatalia\nNidia\nNoelle\nNora\nRebeka\nReina\nRena\nRoxanne\nSade\nSalina\nSerena\nShanae\nShantell\nShaylene\nShayna\nSheila\nSidney\nSiera\nStormy\nTatianna\nTisha\nTylar\nYasmin\nZoey\nJessica\nAshley\nSarah\nSamantha\nEmily\nHannah\nAmanda\nTaylor\nRachel\nMegan\nKayla\nNicole\nBrittany\nElizabeth\nLauren\nAlexandra\nDanielle\nAlyssa\nStephanie\nMorgan\nAmber\nBrianna\nVictoria\nMadison\nRebecca\nShelby\nJordan\nJasmine\nJennifer\nCourtney\nAlexis\nMariah\nKatherine\nKelsey\nAbigail\nSara\nMelissa\nAnna\nErin\nHeather\nLaura\nHaley\nKathryn\nMichelle\nMiranda\nSierra\nMarissa\nKimberly\nAlexandria\nSydney\nAndrea\nBrooke\nCassandra\nSavannah\nEmma\nChristina\nKaitlyn\nKatelyn\nAllison\nTiffany\nOlivia\nMary\nMolly\nKatie\nAlicia\nChelsea\nLindsey\nNatalie\nCaitlin\nShannon\nErica\nAmy\nMackenzie\nMaria\nPaige\nKaitlin\nCrystal\nJenna\nKristen\nMadeline\nVanessa\nJamie\nKendra\nJulia\nKelly\nDestiny\nJacqueline\nRachael\nMeghan\nBriana\nAngela\nBailey\nCheyenne\nLeah\nSabrina\nBreanna\nGrace\nMarisa\nMikayla\nMargaret\nCassidy\nNatasha\nLindsay\nMichaela\nClaire\nMonica\nDesiree\nErika\nGabrielle\nKylie\nAudrey\nSophia\nBrittney\nChristine\nAlexa\nAdriana\nAngelica\nBrandi\nCynthia\nBrenda\nCaroline\nRebekah\nBethany\nJade\nVeronica\nAshleigh\nCarly\nDiana\nHailey\nKaylee\nKendall\nKristina\nZoe\nKatrina\nTori\nAutumn\nCaitlyn\nCasey\nKara\nLeslie\nDominique\nHolly\nKristin\nTessa\nWhitney\nAriana\nKathleen\nLisa\nMallory\nMakayla\nMonique\nNichole\nAlisha\nCatherine\nFelicia\nHayley\nJulie\nKyla\nAnastasia\nAspen\nBianca\nKrista\nMarina\nMelanie\nSadie\nAimee\nAlison\nChloe\nDakota\nFaith\nKassandra\nMckenzie\nSavanna\nAlejandra\nAubrey\nClaudia\nGabriela\nHope\nTara\nBrenna\nJessie\nSandra\nAngel\nNancy\nPatricia\nAngelina\nApril\nHanna\nJoanna\nJordyn\nKaren\nNaomi\nAlissa\nAna\nGabriella\nIsabella\nKellie\nKiana\nLacey\nMeagan\nRaquel\nRiley\nShayla\nValerie\nAmelia\nCindy\nDana\nKarina\nMckenna\nMikaela\nRuby\nAbby\nAnne\nAriel\nAshlee\nAshton\nCiara\nDarian\nJaclyn\nJazmine\nKrystal\nTiana\nCarrie\nCierra\nEllen\nHunter\nJanelle\nJustine\nKali\nKatlyn\nKelsie\nKirsten\nLarissa\nLydia\nMaggie\nAlisa\nDesirae\nElena\nRose\nSummer\nTaryn\nTayler\nBrandy\nBridget\nCharlotte\nDeanna\nKelli\nLaurel\nMadeleine\nTabitha\nAdrianna\nAdrienne\nAllyson\nAnnie\nArianna\nCallie\nCara\nDallas\nDevin\nJillian\nKarissa\nKasey\nKira\nRosa\nSerena\nTeresa\nTheresa\nTyler\nYesenia\nAlexandrea\nAshlyn\nCarolina\nColleen\nElise\nEsther\nGina\nJaime\nKarla\nKarlee\nKatelynn\nKylee\nMayra\nNicolette\nRandi\nRhiannon\nTamara\nTanya\nTasha\nTiara\nAnn\nBlanca\nBrianne\nBritney\nCarla\nCarmen\nChandler\nDelaney\nDonna\nJacquelyn\nJanet\nJosephine\nKaylie\nKaylyn\nKelsi\nLily\nLogan\nMaya\nMeaghan\nMercedes\nMicaela\nMoriah\nNina\nSelina\nShea\nStacy\nTia\nToni\nAlex\nCamille\nCarolyn\nCasandra\nCecilia\nChelsey\nChrista\nClarissa\nDaisy\nDaniela\nDemi\nDenise\nJanessa\nJazmin\nJuliana\nKatarina\nKelsea\nLinda\nMakenzie\nMia\nNikki\nRenee\nSelena\nSonia\nTatiana\nAlexus\nAllie\nAngelique\nAnissa\nAudra\nBonnie\nBrittani\nCarissa\nCiera\nDevon\nEvelyn\nGuadalupe\nHeidi\nHelen\nJoy\nKaley\nKyra\nLea\nLucy\nMargarita\nMarie\nRikki\nTianna\nAlaina\nAsia\nBreana\nBreanne\nBryanna\nCristal\nCristina\nDarby\nEleanor\nElisabeth\nElyse\nEva\nIsabelle\nItzel\nIvy\nJasmin\nJocelyn\nKaila\nKailey\nKaitlynn\nKate\nKaylynn\nLauryn\nLillian\nMakenna\nMarisol\nMckayla\nMelinda\nMeredith\nPayton\nRachelle\nSavanah\nSidney\nSylvia\nTalia\nTania\nAaliyah\nAlia\nAlycia\nCaley\nCandace\nCandice\nCharity\nDanae\nDulce\nEmilia\nEricka\nEssence\nGloria\nIsabel\nJanae\nJolene\nJulianna\nKalee\nKeisha\nKiera\nLeticia\nMadelyn\nMaranda\nMelody\nMikala\nPamela\nPaula\nRobin\nRobyn\nSage\nSasha\nStacey\nStephany\nStevie\nSusan\nTanisha\nTess\nTiffani\nTina\nValeria\nAshlie\nAurora\nBeth\nBryce\nCarina\nCassie\nCelina\nChantel\nChelsie\nCheyanne\nChristiana\nClara\nCody\nCorina\nDanika\nElissa\nEsmeralda\nFrancesca\nGenevieve\nJenny\nJosie\nKacey\nKaela\nKari\nKaty\nKayleen\nKayleigh\nKelley\nKennedy\nKristi\nLacy\nLara\nLeandra\nLeanna\nLeanne\nMara\nMiriam\nNoelle\nRaven\nRochelle\nRosemary\nRuth\nRyan\nShae\nShauna\nSimone\nSkylar\nStefanie\nTerra\nYessica\nAlanna\nAlexia\nAlice\nAlina\nAlma\nAthena\nAyla\nBarbara\nBryn\nBrynn\nCharlene\nCherie\nCodi\nCori\nEbony\nEliza\nEllie\nEmilie\nGeneva\nGiselle\nHaleigh\nHaylee\nJane\nJanie\nJazzmin\nJennie\nJesse\nJuanita\nKasandra\nKassidy\nKatharine\nKhadijah\nKiara\nKristine\nLacie\nLena\nLexi\nLiliana\nLorena\nMicah\nMisty\nMollie\nNorma\nPaxton\nPeyton\nPriscilla\nRacheal\nRocio\nSally\nShantel\nShawna\nShayna\nSofia\nSonya\nTierra\nTracy\nVivian\nAbbey\nAbbie\nAcacia\nAdilene\nAlana\nAlexi\nAli\nAliyah\nAlly\nAlysha\nAlysia\nAlyson\nAnjelica\nAntoinette\nAshly\nAshlynn\nAubree\nBaylee\nBreann\nBria\nBridgette\nBrook\nCarlie\nCecelia\nChantal\nConnie\nCorinne\nDani\nDaphne\nDeana\nDeborah\nDiamond\nElla\nFrankie\nGraciela\nHarley\nHaven\nHelena\nIndia\nJami\nJayde\nJazmyn\nJessi\nJessika\nKailee\nKaleigh\nKarly\nKatelin\nKatheryn\nKathrine\nKaylin\nKenya\nKodi\nLizbeth\nLucille\nMaddison\nMartha\nMeranda\nNadine\nNatalia\nPaola\nPerla\nQuinn\nRebeca\nReyna\nRylee\nSalina\nSantana\nShanice\nShelbie\nSheridan\nSkye\nSkyler\nSophie\nSusana\nTabatha\nTrisha\nVirginia\nWendy\nYvette\nYvonne\nAbagail\nAddison\nAlena\nAlexzandra\nAllyssa\nAlora\nAnessa\nAnita\nAnnalise\nAnnette\nAnya\nAraceli\nAsha\nBailee\nBobbie\nBree\nBrieanna\nBrielle\nBrittanie\nBrittni\nBryana\nCarley\nCatalina\nCatrina\nCayla\nCeleste\nCelia\nChanel\nCherish\nChristian\nCorey\nCortney\nCydney\nDarlene\nDawn\nDayana\nDayna\nDevan\nDevyn\nEdith\nElaina\nElaine\nElisa\nEmilee\nFrances\nGabriel\nGeorgia\nGriselda\nHailee\nHaylie\nHeaven\nImani\nIris\nIrma\nJacey\nJaylyn\nJayme\nJenessa\nJerrica\nJill\nJoanne\nJodi\nJohanna\nJoslyn\nJulianne\nJustice\nJustina\nKacie\nKaia\nKala\nKarlie\nKati\nKayley\nKeely\nKellyn\nKelsy\nKerri\nKiersten\nKristyn\nLana\nLarisa\nLeeann\nLexus\nLinnea\nMadalyn\nMaia\nMaira\nMalissa\nMari\nMariana\nMarilyn\nMarley\nMeggan\nMerissa\nMichele\nMireya\nMontana\nMyranda\nParis\nPauline\nRaina\nReanna\nRhianna\nRoberta\nSarina\nShaina\nShana\nShante\nShantell\nShaylee\nShaylene\nShilo\nShyanne\nSienna\nStaci\nTammy\nTonya\nTyra\nVanesa\nVenessa\nYasmin\nYasmine\nJessica\nHannah\nAshley\nTaylor\nSarah\nEmily\nSamantha\nRachel\nAmanda\nMegan\nKayla\nElizabeth\nMadison\nAlexis\nBrianna\nJordan\nAlexandra\nBrittany\nAlyssa\nLauren\nJennifer\nNicole\nMorgan\nKatherine\nCourtney\nDanielle\nStephanie\nVictoria\nAbigail\nShelby\nSierra\nAnna\nKelsey\nMariah\nSydney\nAmber\nRebecca\nSara\nErin\nHaley\nAllison\nMarissa\nKaitlyn\nSavannah\nShannon\nMiranda\nNatalie\nMelissa\nEmma\nHeather\nAndrea\nLaura\nAlexandria\nJasmine\nMichelle\nOlivia\nBrooke\nChristina\nBreanna\nCassandra\nMary\nChelsea\nKathryn\nMadeline\nPaige\nDestiny\nMackenzie\nBailey\nKatelyn\nKatie\nMichaela\nVanessa\nLindsey\nMaria\nMolly\nCaitlin\nJamie\nMonica\nSelena\nKelly\nJulia\nCheyenne\nGrace\nKylie\nAlicia\nKaitlin\nAngelica\nAngela\nSabrina\nErica\nKimberly\nKristen\nCaroline\nJenna\nKendra\nTiffany\nAmy\nLeah\nMikayla\nBriana\nCrystal\nCassidy\nAlexa\nJacqueline\nMeghan\nClaire\nDesiree\nRachael\nCatherine\nKristina\nLindsay\nMakayla\nNatasha\nWhitney\nGabrielle\nMonique\nKatrina\nAlison\nBrittney\nDominique\nErika\nAna\nBethany\nChloe\nHailey\nKarina\nKaylee\nAutumn\nBianca\nCarly\nHayley\nHolly\nMargaret\nRebekah\nGabriela\nBrandi\nLisa\nMarisa\nJordyn\nTessa\nBrenda\nBrenna\nMckenna\nVeronica\nChristine\nDiana\nFaith\nMckenzie\nAlejandra\nAriana\nAriel\nCaitlyn\nCasey\nCynthia\nJade\nKrista\nKristin\nSophia\nTori\nAshlee\nAshleigh\nAudrey\nHanna\nKrystal\nSavanna\nTara\nJazmine\nKendall\nMallory\nSummer\nDakota\nHope\nZoe\nAngel\nGabriella\nKylee\nMikaela\nAdriana\nCierra\nIsabella\nKirsten\nSandra\nAspen\nKara\nLeslie\nLily\nAngelina\nAshlyn\nCiara\nJulie\nKatelynn\nKathleen\nAmelia\nJessie\nKiana\nLarissa\nMarina\nNaomi\nNichole\nAimee\nAlondra\nAnnie\nDaisy\nIsabel\nKassandra\nMelanie\nMercedes\nRiley\nSerena\nAllyson\nAubrey\nDenise\nKelli\nLacey\nMaya\nSadie\nApril\nDelaney\nHeidi\nKaren\nRaquel\nSelina\nShayla\nTayler\nAlisha\nCecilia\nDana\nDestinee\nIsabelle\nJazmin\nRuby\nSasha\nSkylar\nValerie\nAnne\nCamille\nCindy\nDarian\nDevon\nElena\nJasmin\nKailey\nKayleigh\nKyla\nKyra\nMakenzie\nRenee\nTiana\nAvery\nBrianne\nChelsey\nCheyanne\nClaudia\nColleen\nDaniela\nEllen\nJanae\nKarissa\nMaggie\nNancy\nPayton\nAbby\nAlana\nAlexus\nAnastasia\nBridget\nCallie\nCara\nCarissa\nCeleste\nDeanna\nEvelyn\nGina\nGuadalupe\nLillian\nRuth\nTaryn\nTheresa\nAlexia\nArianna\nBonnie\nCharlotte\nCora\nDevin\nFelicia\nJanelle\nJoanna\nKarli\nKassidy\nKennedy\nKira\nMadeleine\nMartha\nMeagan\nMeredith\nMicaela\nMoriah\nPatricia\nRandi\nSage\nSidney\nTess\nAdrianna\nAlexandrea\nBaylee\nCarley\nCarolyn\nChandler\nCristina\nHelen\nIvy\nJillian\nJosephine\nJustice\nJustine\nKali\nKatharine\nLydia\nMadelyn\nMckayla\nMia\nRaven\nRosa\nSavanah\nShyanne\nSonia\nSophie\nTyler\nVirginia\nAlia\nAlysia\nCelina\nElisa\nElise\nGianna\nGloria\nHunter\nJaclyn\nJocelyn\nKacey\nKaylie\nLexus\nLogan\nLorena\nSofia\nStevie\nTanisha\nTia\nValeria\nYesenia\nAllie\nAngelique\nBrandy\nCarina\nDarby\nEdith\nJenny\nJesse\nJosie\nKaitlynn\nKarla\nKasey\nKate\nKelsi\nKianna\nMaddison\nShantel\nShayna\nSilvia\nTamara\nTanya\nTatiana\nTeresa\nAlaina\nAnnika\nAshton\nBrittni\nCandace\nCarmen\nCorinne\nEva\nFiona\nHaylee\nJaime\nJaqueline\nJohanna\nJoy\nJuanita\nKaelyn\nKaylin\nKaylyn\nKelsie\nLuz\nMakenna\nMaribel\nMarie\nRachelle\nRobin\nShania\nSusan\nSylvia\nTabitha\nTierra\nToni\nAdrienne\nAleah\nAlissa\nAnn\nArielle\nAshlie\nAsia\nAyla\nBreana\nBreanne\nBree\nCarrie\nChristian\nCiera\nClarissa\nDallas\nDaniella\nDanika\nDarrian\nDesirae\nDevyn\nEmilie\nEsmeralda\nEsperanza\nEsther\nGeorgia\nHailee\nJulianna\nKaleigh\nKelley\nKelsea\nLaurel\nLeandra\nLeticia\nLilly\nMaranda\nMollie\nNikki\nPriscilla\nRhiannon\nSheila\nStacey\nTalia\nTianna\nAbbey\nAlena\nAlex\nAlisa\nAliyah\nAllyssa\nAnissa\nAntonia\nAraceli\nBerenice\nBrooklyn\nBryanna\nCandice\nCarol\nCarolina\nCassie\nChanel\nChrista\nClara\nDalia\nEleanor\nElla\nElsa\nEmilee\nIridian\nKaila\nKiara\nKinsey\nKourtney\nKyleigh\nLacy\nLeanna\nLiliana\nLinda\nMacy\nMadalyn\nMarilyn\nMarisol\nMaritza\nMelody\nMyranda\nNina\nPerla\nReyna\nShawna\nShianne\nSienna\nSimone\nStephany\nTania\nViridiana\nYasmin\nAaliyah\nAisha\nAlayna\nAlysa\nAlysha\nAudriana\nBlanca\nBobbie\nBritney\nBrittani\nCarla\nChristy\nClare\nCori\nCristal\nDanae\nDaria\nDeja\nDiamond\nElisabeth\nEllie\nEryn\nEssence\nEstrella\nFrancesca\nGenevieve\nHaleigh\nIrene\nIris\nJacquelyn\nKacie\nKailee\nKarlee\nKarly\nKatelin\nKiley\nKristine\nKristy\nLara\nMeaghan\nMisty\nNadia\nNatalia\nNoelle\nParis\nRegina\nRikki\nRyan\nShaina\nShay\nSkyler\nStacy\nSusana\nTasha\nTiara\nTyra\nZoie\nAddison\nAlyson\nAmalia\nAngelika\nAnnette\nAntoinette\nAnya\nAshli\nAshly\nAubrie\nBailee\nBarbara\nBria\nCasandra\nCelena\nCeline\nChelsi\nChelsie\nChrystal\nCodi\nConstance\nConsuelo\nCydney\nDakotah\nDanica\nDawn\nDelia\nEliza\nEvangelina\nHallie\nHarley\nHarmony\nHeaven\nJaden\nJanet\nJenifer\nJessi\nJuliana\nKatarina\nKathrine\nKatlin\nKatlyn\nKay\nKaylene\nKeanna\nKenna\nKenya\nKiera\nKiersten\nKindra\nKori\nKristi\nKyle\nLauryn\nLeigha\nLena\nLizbeth\nLyric\nMaegan\nMakaila\nMariela\nMarley\nMattie\nMayra\nMiriam\nNoel\nNora\nPaola\nPaulina\nPauline\nPeyton\nPhoebe\nReagan\nRylee\nSamara\nSheridan\nSkye\nStephani\nTatyana\nTiffani\nTina\nVivian\nYvette\nYvonne\nAbbie\nAbbigail\nAlanna\nAlecia\nAli\nAlina\nAlycia\nAlyssia\nAmara\nAnika\nAnnabelle\nAracely\nAshlynn\nAthena\nAundrea\nBeatriz\nBernadette\nBreann\nBrittnee\nCarlie\nCatrina\nCelia\nChantal\nChristianna\nConnor\nCorrina\nDeborah\nDestini\nDiane\nDylan\nEbony\nElaine\nEricka\nEvan\nEve\nFelicity\nFlor\nFrances\nGenesis\nHalie\nHalle\nIrma\nJacklyn\nJada\nJanette\nJaycee\nJayde\nJaylene\nJayme\nJeanette\nJena\nJennie\nJessika\nJocelyne\nJolene\nJordin\nJoslyn\nKaley\nKalyn\nKari\nKathryne\nKayli\nKeely\nKellie\nKenzie\nKerry\nKierra\nKirstin\nKrysta\nLeanne\nLesley\nLexi\nLexie\nLiana\nLucero\nLyndsey\nLynsey\nMaira\nMarcella\nMariana\nMarlee\nMekayla\nMelinda\nMerissa\nMichele\nMikala\nMonika\nNayeli\nNicolette\nPearl\nRaina\nRebeca\nRegan\nRobyn\nRose\nRoxanne\nSarai\nSelene\nSerina\nShana\nShea\nShelbie\nShiloh\nShyann\nStefanie\nStormy\nSusanna\nSydnie\nTorrey\nTrinity\nEmily\nHannah\nJessica\nSarah\nAshley\nSamantha\nTaylor\nRachel\nMadison\nMegan\nKayla\nElizabeth\nLauren\nAlexandra\nAmanda\nAlexis\nAlyssa\nRebecca\nBrittany\nMorgan\nNicole\nBrianna\nKatherine\nAbigail\nAnna\nJennifer\nJordan\nCourtney\nSydney\nHaley\nMariah\nAmber\nSavannah\nSierra\nMaria\nShelby\nEmma\nVictoria\nStephanie\nJasmine\nDanielle\nBrooke\nSara\nMelissa\nBailey\nNatalie\nMarissa\nOlivia\nErin\nJulia\nKaitlyn\nMary\nBreanna\nAndrea\nCheyenne\nMackenzie\nMadeline\nAllison\nKelsey\nHeather\nVanessa\nLaura\nShannon\nAngelica\nCassandra\nMichaela\nSabrina\nKathryn\nKimberly\nMiranda\nGabrielle\nKatelyn\nAlexandria\nAmy\nHailey\nLindsey\nCaitlin\nChristina\nKatie\nMichelle\nMonica\nDestiny\nKylie\nGrace\nJenna\nKendra\nChelsea\nBriana\nChloe\nPaige\nSelena\nMolly\nClaire\nKaitlin\nKelly\nErika\nJacqueline\nLeah\nRachael\nAlexa\nRebekah\nAlicia\nJamie\nKaylee\nMckenna\nCassidy\nTiffany\nZoe\nAngela\nCynthia\nCatherine\nErica\nBrittney\nIsabella\nMikayla\nSophia\nKathleen\nMakayla\nHolly\nJade\nShania\nAlondra\nDominique\nAutumn\nCaroline\nDesiree\nNatasha\nKaren\nKristen\nTessa\nMargaret\nMeghan\nAudrey\nBethany\nCaitlyn\nDaisy\nCierra\nCarly\nHayley\nAdriana\nAlejandra\nAngel\nAshlee\nVeronica\nAlison\nBrandi\nElise\nIsabel\nKara\nMikaela\nBrenda\nCrystal\nHope\nKarina\nKiana\nMarisa\nYesenia\nAna\nKatrina\nKyra\nAspen\nGabriella\nJordyn\nMia\nTara\nAriana\nDiana\nMckenzie\nMeagan\nRiley\nBrenna\nFaith\nKelsie\nKendall\nLisa\nMaya\nTaryn\nAnne\nBianca\nChristine\nClaudia\nKira\nNaomi\nTori\nAriel\nKylee\nLindsay\nMelanie\nSadie\nAshleigh\nAubrey\nJessie\nSandra\nApril\nCasey\nKatelynn\nLily\nMercedes\nMonique\nPeyton\nAlissa\nAnastasia\nAngelina\nCiara\nDeanna\nKristina\nMallory\nWhitney\nCarolyn\nGabriela\nJustine\nKyla\nLacey\nLeslie\nRenee\nRuby\nSummer\nAlana\nBryanna\nDakota\nGuadalupe\nJulie\nKassandra\nLogan\nMarisol\nRaven\nAmelia\nArianna\nCamille\nDelaney\nIsabelle\nJosephine\nKirsten\nKristin\nPatricia\nRaquel\nTheresa\nTia\nValerie\nAbby\nAimee\nBrandy\nEvelyn\nHeidi\nJocelyn\nJulianna\nKailey\nKarla\nMaggie\nMakenzie\nPayton\nShayla\nAdrianna\nAsia\nDana\nElena\nJosie\nKaitlynn\nKrystal\nMadeleine\nMarina\nAlisha\nFelicia\nHanna\nJasmin\nJazmine\nKennedy\nKrista\nNichole\nNikki\nRosa\nSavanna\nAnnie\nDeja\nDesirae\nEva\nJoanna\nLydia\nMiriam\nNancy\nAllyson\nAnnika\nBaylee\nCheyanne\nDenise\nGenesis\nKarissa\nLinda\nMayra\nShawna\nSkylar\nTalia\nToni\nAlanna\nCarissa\nChandler\nDarby\nDiamond\nEllen\nJanae\nJanet\nKate\nKaylie\nLaurel\nMaddison\nNina\nRachelle\nTania\nVirginia\nAdrienne\nAngelique\nAshlyn\nClarissa\nCristina\nDestinee\nGianna\nHailee\nHaleigh\nHelen\nLarissa\nLiliana\nLillian\nLyndsey\nMakenna\nMarie\nMoriah\nNadia\nRyan\nSidney\nTanya\nAlexia\nBrianne\nBrooklyn\nCarrie\nCharlotte\nCindy\nEleanor\nEmilee\nEsmeralda\nEsther\nEstrella\nFrancesca\nGenevieve\nGeorgia\nGloria\nHarley\nHunter\nJaime\nJazmin\nJenny\nKali\nKayleigh\nKiara\nKristine\nRikki\nRobin\nRobyn\nRuth\nSerena\nTayler\nTiana\nAlaina\nAlice\nAliyah\nAntonia\nAshton\nAvery\nBreana\nBridget\nCeleste\nChantel\nChrista\nElisa\nJacquelyn\nJane\nJanelle\nJuliana\nKaley\nLeticia\nLexi\nLexus\nLucy\nMariana\nMelody\nReyna\nRylee\nSage\nShyanne\nSusan\nSylvia\nTamara\nTatiana\nAlexus\nAlysha\nAnn\nAshlynn\nCarla\nChelsey\nClara\nDallas\nDaniela\nDestiney\nDevon\nEmilie\nEsperanza\nJustina\nKaela\nKaylyn\nMartha\nMckayla\nMeredith\nSarina\nSavanah\nSophie\nStacy\nTeresa\nTess\nTianna\nTyler\nValeria\nYasmin\nAlexandrea\nAlysa\nAubree\nBernadette\nCaley\nCallie\nCara\nCarley\nCarolina\nCassie\nCecelia\nCecilia\nCelina\nCiera\nDarian\nDevin\nEbony\nElisabeth\nEliza\nFlor\nHallie\nHarmony\nJayme\nJena\nJoy\nKacie\nKari\nKasandra\nKassidy\nKatharine\nKatia\nKeely\nKeisha\nLea\nLeandra\nLizbeth\nLorena\nLuz\nMadelyn\nPaulina\nSheila\nStephany\nTina\nAbbey\nAddison\nAlex\nAlycia\nAlysia\nAnissa\nAnjelica\nAraceli\nBeatriz\nBlanca\nBreanne\nCarina\nCasandra\nChase\nCristal\nDanika\nElaine\nElla\nGina\nGretchen\nHaylee\nJaclyn\nJaimie\nJillian\nJulianne\nJustice\nKacey\nKaila\nKaya\nKayley\nKellie\nKianna\nKiersten\nKyleigh\nMaira\nMicah\nMisty\nMollie\nNoelle\nPamela\nPerla\nRegan\nRegina\nRhiannon\nSasha\nSavana\nShaina\nShayna\nShea\nShelbi\nSheridan\nSimone\nThalia\nTiara\nTrinity\nAaliyah\nAlayna\nAlia\nAlyson\nAnneliese\nAnya\nBarbara\nBerenice\nBrielle\nBrittanie\nCandace\nCandice\nCarmen\nChristiana\nColette\nColleen\nDanae\nDemi\nEden\nEllie\nFabiola\nFrances\nGillian\nGraciela\nGwendolyn\nImani\nIndia\nIrene\nIris\nJanessa\nJayda\nJohanna\nJordin\nKaci\nKalie\nKasey\nKatlyn\nKaylynn\nKenzie\nKimberley\nLacy\nLanae\nLena\nLucero\nLucia\nMargarita\nMaribel\nMarilyn\nMarley\nMelinda\nMicaela\nMireya\nNatalia\nNayeli\nNoemi\nPaola\nRebeca\nSarai\nSelina\nSharon\nSkyler\nTabitha\nTierra\nViridiana\nYolanda\nAleah\nAlena\nAli\nAlina\nAllie\nAnika\nAnnelise\nAntoinette\nAshli\nAthena\nAurora\nAva\nAyanna\nBritney\nCarli\nChantal\nChelsie\nChristian\nCodi\nCora\nCorina\nDiane\nFatima\nFiona\nGabriel\nHalle\nHaven\nHeaven\nItzel\nIvy\nJacklyn\nJaden\nJanell\nJayden\nJesse\nJudith\nJuliette\nKailee\nKaleigh\nKallie\nKatarina\nKaylin\nKelli\nKelsea\nKelsi\nKia\nKiley\nKirstin\nKori\nKourtney\nKristi\nKyle\nKyrsten\nLauryn\nLeigha\nLesley\nLexis\nLia\nLillie\nMacy\nMandy\nMara\nMaren\nMarin\nMattie\nMikala\nNicolette\nPiper\nPriscilla\nReagan\nRenae\nRose\nRowan\nRoxanne\nRyann\nSally\nShauna\nShelbie\nSonia\nStacie\nStefanie\nSusana\nSydnie\nTracy\nTristan\nVivian\nViviana\nWillow\nYessica\nZoey\nAbrianna\nAdilene\nAlisa\nAlma\nAmara\nAmethyst\nAndie\nAnita\nAudrianna\nAustin\nBailee\nBeth\nBonnie\nBreann\nBrook\nBrooklynn\nCalli\nCandy\nCarson\nCassondra\nCatalina\nCeline\nCharity\nChiara\nCinthya\nConnie\nCori\nDanelle\nDaniella\nDestany\nDestini\nDonna\nDrew\nEdith\nElicia\nElissa\nElle\nEryn\nEvangelina\nGriselda\nHaily\nHalie\nHalley\nHaylie\nHelena\nHillary\nJailene\nJanay\nJayde\nJazmyn\nJeanette\nJewel\nJoelle\nJoselyn\nKailyn\nKarlee\nKarley\nKatelin\nKaty\nKayle\nKayli\nKeira\nKierra\nKimberlee\nLayla\nLinnea\nLizeth\nLoryn\nMadelynn\nMalia\nMalika\nMari\nMaura\nNia\nNikita\nNora\nQuiana\nQuinn\nRacheal\nRae\nRaelynn\nRaina\nRhianna\nRian\nRochelle\nRosemary\nRylie\nSalena\nSerenity\nShay\nShaylene\nSheena\nShianne\nShiloh\nSilvia\nSonja\nSonya\nSuzanne\nSydni\nTatianna\nTiffani\nTristyn\nVicky\nWendy\nYadira\nYahaira\nYazmin\nYvette\nYvonne\nHannah\nEmily\nJessica\nSarah\nMadison\nSamantha\nTaylor\nAshley\nMegan\nElizabeth\nRachel\nAlyssa\nAlexis\nLauren\nEmma\nKayla\nMorgan\nAmanda\nAlexandra\nBrianna\nJennifer\nJordan\nAbigail\nVictoria\nNicole\nBrittany\nDanielle\nRebecca\nSierra\nAnna\nKatherine\nOlivia\nAmber\nMariah\nSydney\nBrooke\nJasmine\nHaley\nStephanie\nMaria\nKaitlyn\nSavannah\nAllison\nBailey\nMarissa\nCourtney\nSara\nErin\nMackenzie\nMary\nJulia\nMadeline\nNatalie\nDestiny\nAlexandria\nGrace\nMiranda\nShelby\nMikayla\nMelissa\nVanessa\nCheyenne\nKatelyn\nPaige\nAmy\nAndrea\nKathryn\nLaura\nAlicia\nAngelica\nMichelle\nJenna\nHailey\nChristina\nGabrielle\nJamie\nCassidy\nCassandra\nKaylee\nKelsey\nMakayla\nCaitlin\nKylie\nSophia\nMonica\nSabrina\nCrystal\nMichaela\nMolly\nBreanna\nShannon\nHeather\nIsabella\nJade\nTiffany\nClaire\nAna\nKimberly\nLeah\nFaith\nJacqueline\nAlexa\nAutumn\nBriana\nAngel\nAngela\nCaroline\nKelly\nAudrey\nKendra\nAdriana\nChelsea\nDominique\nLeslie\nMeghan\nAlejandra\nAspen\nIsabel\nKaitlin\nLindsey\nMckenna\nNatasha\nRiley\nVeronica\nBethany\nKristen\nRebekah\nSelena\nRachael\nBianca\nErica\nGabriela\nKatie\nZoe\nAdrianna\nAriana\nChloe\nGabriella\nMckenzie\nBrittney\nDiana\nJordyn\nCaitlyn\nKyra\nAubrey\nCatherine\nErika\nMargaret\nAlondra\nAnne\nArianna\nKara\nKarina\nMaya\nTessa\nHope\nMonique\nKathleen\nKylee\nMia\nValerie\nAriel\nHayley\nMadeleine\nPayton\nKirsten\nLydia\nNaomi\nNina\nPeyton\nShayla\nTiana\nBrenna\nCierra\nDana\nDelaney\nHolly\nJocelyn\nKristin\nMelanie\nMikaela\nAnastasia\nAngelina\nCynthia\nElise\nAlexus\nAshleigh\nCindy\nDakota\nDesiree\nKaren\nKendall\nKyla\nMakenna\nMarisol\nAlexia\nAmelia\nBrenda\nElena\nHanna\nKiana\nLily\nMallory\nRaven\nSadie\nBaylee\nCasey\nEsmeralda\nJillian\nJulie\nLillian\nLindsay\nSandra\nSummer\nTara\nAllyson\nAshlyn\nChristine\nKira\nKrista\nMarisa\nSavanna\nAshlee\nBrandi\nCiara\nHeidi\nIvy\nJazmine\nKatrina\nKristina\nRaquel\nTori\nWhitney\nApril\nAvery\nBrooklyn\nCarly\nIsabelle\nJustine\nKarla\nMarina\nRenee\nAbby\nAlison\nBrandy\nCharlotte\nDaisy\nGina\nJosephine\nMireya\nPatricia\nRuby\nTaryn\nCamille\nCarissa\nCheyanne\nClaudia\nJazmin\nJulissa\nKassidy\nMercedes\nNoelle\nShania\nSofia\nTia\nAaliyah\nAlana\nDeanna\nEvelyn\nHunter\nJanet\nJessie\nKatelynn\nLacey\nLarissa\nLisa\nSage\nTabitha\nYadira\nAlma\nAnnika\nCarmen\nDenise\nDevin\nElla\nEva\nFelicia\nJoanna\nKennedy\nSophie\nTeresa\nTyler\nYesenia\nAlisha\nAlissa\nAllie\nAurora\nBailee\nCameron\nCarolyn\nElisabeth\nGuadalupe\nJasmin\nJulianna\nKassandra\nLogan\nRuth\nSimone\nTatiana\nValeria\nAntonia\nBridget\nClara\nGenevieve\nJaime\nKaylie\nLiliana\nMoriah\nNancy\nNichole\nSerena\nShayna\nShea\nAngelique\nAshton\nColleen\nDeja\nFiona\nGillian\nHarley\nJada\nJanae\nJanelle\nKrystal\nMakenzie\nNora\nRosa\nRose\nTalia\nAlex\nAlisa\nAnn\nCallie\nCecilia\nCeleste\nChandler\nDaniela\nDesirae\nDevon\nEllen\nEsperanza\nGiselle\nHailee\nJaqueline\nKailey\nKaitlynn\nKali\nKaylin\nLorena\nMadelyn\nMariela\nMckayla\nMeagan\nMelody\nSasha\nVirginia\nAlexandrea\nAsia\nCara\nCarley\nCassie\nChantel\nEmilee\nHaylee\nHeaven\nHelen\nJohanna\nJosie\nJoy\nJuliana\nKatlyn\nKayleigh\nKianna\nKiera\nMeredith\nNikki\nPaola\nRegan\nReilly\nRylee\nShae\nShyanne\nSkylar\nTatum\nTianna\nTina\nAcacia\nAnnie\nArielle\nBreana\nBrianne\nCarla\nClare\nCristina\nDestinee\nEliza\nJacquelyn\nJustice\nKelsie\nKenya\nKristi\nKristine\nLauryn\nLeticia\nMaggie\nMaribel\nMartha\nMayra\nMicaela\nMiriam\nNatalia\nPamela\nPerla\nRhiannon\nShawna\nSidney\nSienna\nSkye\nSonya\nTess\nTyra\nVivian\nAddison\nAlaina\nAlena\nAlice\nBarbara\nBonnie\nCarrie\nCharity\nClarissa\nDarby\nDarian\nDevyn\nFatima\nFrancesca\nImani\nIngrid\nIrene\nJane\nJayla\nJenifer\nJenny\nJesse\nKaela\nKarissa\nKasey\nKaycee\nKellie\nLizbeth\nMaegan\nMalia\nMariana\nMarie\nMarley\nPhoebe\nRayna\nRylie\nThalia\nTheresa\nToni\nWendy\nYasmin\nYulissa\nAlexi\nAliyah\nAnahi\nAraceli\nBobbie\nCarina\nCarolina\nCora\nCortney\nDanae\nDiamond\nEbony\nEleanor\nElisa\nHalle\nIris\nJanessa\nJill\nKaelyn\nKatarina\nKate\nKatharine\nKathy\nKeely\nKiara\nKiersten\nLena\nLesley\nLesly\nLilly\nLucy\nMadisen\nMaritza\nMicah\nMyranda\nOdalys\nRegina\nRobin\nRobyn\nRyan\nSavanah\nSerenity\nSkyler\nTierra\nZoey\nAimee\nAlina\nAlysia\nAlyson\nAmalia\nAnika\nAnissa\nAnjelica\nAshly\nAshlynn\nAylin\nBlair\nBlanca\nBreanne\nBridgette\nBrook\nBrooklynn\nBryanna\nCandice\nCarli\nCasandra\nCayla\nChelsey\nCoral\nCorina\nCristal\nEdith\nEllie\nEmilia\nEmilie\nEryn\nEstrella\nGianna\nGladys\nGraciela\nHallie\nHazel\nIndia\nJaimee\nJayde\nJodi\nKacey\nKaley\nKari\nKarlee\nKarli\nKatelin\nKelli\nKiley\nLacie\nLaurel\nLeanne\nLexi\nLexus\nLiana\nLilia\nMaddison\nMara\nMarisela\nMelisa\nMichaella\nNoel\nOdalis\nPaula\nRaelynn\nRaina\nRandi\nReanna\nRochelle\nRoxanne\nSelina\nSheridan\nShyla\nSydnee\nSylvia\nTammy\nTanya\nTatyana\nTayler\nTea\nWillow\nYasmine\nAbbey\nAileen\nAiyana\nAleah\nAli\nAlia\nAmari\nAngie\nAnita\nAnnelise\nAnnette\nAyla\nBlake\nBritney\nBrittani\nCaley\nCandace\nCarlee\nCecelia\nCelestina\nCelia\nChantal\nChristian\nCinthia\nCydney\nDalia\nDayna\nDeborah\nDestanie\nElisha\nElissa\nElle\nEstefania\nFabiola\nFallon\nFrances\nGenesis\nGloria\nGreta\nGretchen\nGwendolyn\nHaleigh\nHana\nHaven\nHaylie\nJaclyn\nJasmyn\nJayda\nJolene\nJorden\nJuana\nJuanita\nJuliette\nJustina\nKaila\nKailee\nKaleigh\nKallie\nKarah\nKeeley\nKerri\nKori\nLara\nLeeann\nLinda\nLluvia\nMadalyn\nMadyson\nMagdalena\nMaia\nMari\nMarilyn\nMeaghan\nMyra\nNicolette\nNorma\nPaulina\nReagan\nRocio\nSariah\nSilvia\nSonia\nSusan\nSydnie\nTamara\nTania\nTarah\nTeagan\nTegan\nVanesa\nViviana\nYvette\nAbbie\nAdrienne\nAisha\nAislinn\nAlessandra\nAnalisa\nAnnabelle\nAnnalise\nAntoinette\nAthena\nAubrie\nAyana\nBaily\nBerenice\nBreeanna\nBritta\nBrynn\nCali\nCarol\nCarson\nChase\nCiarra\nCori\nDahlia\nDallas\nDani\nDaria\nDavina\nDawn\nDestany\nDevan\nDorothy\nDylan\nElisia\nEricka\nEve\nHalie\nJaden\nJaylynn\nJazmyn\nJeanette\nJena\nJudith\nJulianne\nJuliet\nKaci\nKalie\nKasandra\nKaty\nKayli\nKeisha\nKelsea\nKelsi\nKenna\nKierra\nKortney\nKourtney\nKrysta\nLeandra\nLeilani\nLia\nLidia\nLois\nLuz\nLyndsey\nMacy\nMagali\nMakena\nMaranda\nMargarita\nMaricela\nMicayla\nMikala\nMollie\nMyah\nNayeli\nNia\nNikita\nNoemi\nPaloma\nParis\nPatience\nPriscilla\nRachelle\nRaegan\nRebeca\nReyna\nRhianna\nRianna\nRosalie\nRyann\nSalina\nSarina\nShanna\nShantel\nShauna\nShelbi\nSherry\nShilo\nSiena\nStacey\nStephany\nStevie\nTiara\nTiffanie\nTonya\nTrina\nTrisha\nTrista\nValentina\nYajaira\nYasmeen\nYuliza\nEmily\nSamantha\nHannah\nJessica\nMadison\nSarah\nAshley\nTaylor\nElizabeth\nAlexis\nLauren\nAlyssa\nMegan\nEmma\nRachel\nKayla\nAmanda\nJordan\nMorgan\nAlexandra\nBrianna\nSydney\nAnna\nAbigail\nJennifer\nNicole\nOlivia\nSierra\nVictoria\nBrittany\nMariah\nKatherine\nRebecca\nBrooke\nHaley\nJasmine\nJulia\nNatalie\nStephanie\nKaitlyn\nSavannah\nDanielle\nMaria\nDestiny\nShelby\nAllison\nAmber\nCourtney\nMadeline\nCheyenne\nGrace\nMackenzie\nBailey\nAndrea\nVanessa\nSara\nMarissa\nSophia\nMiranda\nMichelle\nAlicia\nAngelica\nBreanna\nErin\nMary\nGabrielle\nChloe\nMikayla\nIsabella\nAlexandria\nJenna\nKaylee\nZoe\nHailey\nMelissa\nMolly\nFaith\nJade\nLaura\nMakayla\nClaire\nKatelyn\nKimberly\nKylie\nCassandra\nChristina\nPaige\nAutumn\nKathryn\nKelsey\nMichaela\nSabrina\nKatie\nKelly\nAmy\nDiana\nAngela\nErica\nIsabel\nCassidy\nLindsey\nLeslie\nHeather\nLeah\nCaroline\nMaya\nMckenna\nCaitlin\nMargaret\nSelena\nShannon\nDominique\nEsmeralda\nGabriella\nRiley\nAdriana\nErika\nJacqueline\nTiffany\nRachael\nVeronica\nHanna\nKristen\nAlexa\nAvery\nCaitlyn\nCrystal\nAriana\nJazmin\nNaomi\nAngel\nAspen\nJamie\nJordyn\nKaitlin\nChelsea\nIsabelle\nRebekah\nAna\nArianna\nBethany\nAlejandra\nAlondra\nBriana\nGuadalupe\nKaren\nMia\nCatherine\nKendra\nLily\nLindsay\nBrenda\nKendall\nKylee\nMonica\nAllyson\nAriel\nDelaney\nHayley\nMadeleine\nMelanie\nPeyton\nCarly\nShania\nAmelia\nAngelina\nDakota\nGabriela\nKarla\nMeghan\nValerie\nAdrianna\nAubrey\nClaudia\nDaisy\nKathleen\nKiana\nMikaela\nAudrey\nCynthia\nLillian\nSerena\nCasey\nKira\nMonique\nNatasha\nPatricia\nBrittney\nEva\nEvelyn\nHope\nRuby\nHolly\nKarina\nKate\nMadelyn\nSadie\nSophie\nYesenia\nAnastasia\nDesiree\nElena\nJasmin\nJazmine\nJoanna\nKiara\nMaggie\nSofia\nSummer\nAlexus\nBrenna\nCarmen\nJulie\nKatrina\nKyra\nRaquel\nSandra\nSavanna\nAlissa\nAnne\nBrandi\nBrandy\nCameron\nCierra\nKyla\nLisa\nMercedes\nTara\nWhitney\nAlison\nAshleigh\nBaylee\nBianca\nCharlotte\nLydia\nMallory\nMckenzie\nTessa\nTori\nAlana\nBrooklyn\nDaniela\nEllie\nJanessa\nKailey\nRaven\nTaryn\nChristine\nElise\nJanae\nJocelyn\nKristina\nLacey\nMarisa\nPayton\nRylee\nSkylar\nAlexia\nAsia\nAva\nCecilia\nCindy\nJulianna\nKali\nKara\nKatelynn\nKaylie\nMakenzie\nMarisol\nNancy\nSidney\nTyler\nAnnika\nAshlee\nBridget\nEleanor\nEsperanza\nHunter\nJillian\nJustine\nMakenna\nMarie\nMayra\nRosa\nSkyler\nTalia\nBryanna\nCamille\nClare\nGillian\nGina\nKrista\nLeticia\nMicaela\nMireya\nNina\nPamela\nRenee\nRhiannon\nRose\nTayler\nAaliyah\nAlisha\nAngelique\nAnnie\nCarolina\nCeleste\nDeanna\nElla\nHeidi\nJanelle\nJaqueline\nKassandra\nKeely\nKennedy\nMckayla\nMoriah\nNatalia\nSasha\nSavanah\nShayla\nTabitha\nAbby\nAlexandrea\nAllie\nApril\nCallie\nIris\nJacquelyn\nJada\nKaley\nKristin\nLiliana\nMadalyn\nMariana\nAliyah\nChase\nDana\nEsther\nGiselle\nJuliana\nKacey\nKrystal\nMarina\nNichole\nTatiana\nTianna\nValeria\nAddison\nAimee\nAnahi\nBailee\nBrook\nClara\nDevin\nEmilee\nEstrella\nGianna\nHelen\nIvy\nJessie\nJosephine\nJustice\nKatharine\nLauryn\nLinda\nLogan\nMiriam\nPaola\nPriscilla\nSage\nSkye\nYasmine\nAlaina\nCarissa\nDarian\nDestinee\nDevon\nEdith\nFiona\nGenevieve\nHailee\nHaleigh\nHarley\nKaylin\nKiersten\nKirsten\nMelina\nNikki\nQuinn\nReagan\nRuth\nShea\nTess\nTiara\nAlice\nAshlyn\nAshlynn\nBlanca\nCarrie\nCristina\nDonna\nFelicia\nFrancesca\nGenesis\nGeorgia\nJailene\nJewel\nJosie\nKaila\nKarissa\nKiley\nLaurel\nLexi\nLexie\nLucy\nMaddison\nNadia\nSienna\nTatum\nTiana\nWendy\nAileen\nArielle\nAubrie\nBreana\nCamryn\nCarolyn\nCassie\nCheyanne\nCiara\nColleen\nCora\nCortney\nDaphne\nDulce\nEmilie\nGloria\nHalie\nJudith\nJulissa\nKailee\nKaleigh\nKasey\nKassidy\nKeeley\nKelli\nKianna\nLarissa\nLea\nLena\nMacy\nMeagan\nMollie\nMontana\nNora\nParis\nRhianna\nRobyn\nSimone\nSonia\nStacy\nTanya\nVirginia\nYasmin\nAleah\nAlena\nAli\nAlycia\nAlysa\nAntonia\nAyanna\nBonnie\nCaley\nCarley\nCelina\nChandler\nDaniella\nDeborah\nDeja\nEileen\nEliza\nEllen\nElyse\nEryn\nHadley\nHaylee\nHeaven\nImani\nJenny\nKaitlynn\nKalie\nKellie\nKelsi\nKenzie\nLilly\nLorena\nMaia\nMara\nMaribel\nMykayla\nNoelle\nRandi\nRegan\nSalma\nShawna\nSky\nStephany\nSusan\nTania\nTeresa\nTheresa\nTyra\nWillow\nAbbey\nAlex\nAlly\nAlma\nAlyson\nAnn\nAntoinette\nAraceli\nAshton\nBrianne\nBrooklynn\nCaitlynn\nCarla\nCarlie\nCayla\nClarissa\nDamaris\nDawn\nElisa\nElisabeth\nEmmalee\nHalle\nHallie\nHelena\nJaelyn\nJane\nJazmyne\nJulianne\nKaelyn\nKayleigh\nKayli\nKelsie\nKiera\nKinsey\nLesly\nLyndsey\nMadisen\nMartha\nMeredith\nMya\nNataly\nPerla\nRachelle\nReina\nSaige\nSerenity\nShayna\nSonya\nSylvia\nToni\nTrinity\nVanesa\nVivian\nViviana\nZoey\nAlayna\nAlexi\nAnastacia\nAnika\nAnissa\nAnnabelle\nAshtyn\nAthena\nAubree\nAyla\nBarbara\nCarina\nCecelia\nChantel\nCharity\nChrista\nCorinne\nDarby\nDelilah\nDiamond\nElle\nGraciela\nHana\nHayden\nIsis\nJaden\nJanet\nJayda\nJayden\nJenifer\nJesse\nJohanna\nJuanita\nJulisa\nKarli\nKasandra\nKatana\nKatarina\nKatelin\nKaterina\nKatlyn\nKaylynn\nKelley\nKelsea\nKenna\nLeandra\nLesley\nLizbeth\nLuz\nMadelynn\nMadilyn\nMadisyn\nMaegan\nMakena\nMaren\nMargarita\nMarley\nMckinley\nMelinda\nMelody\nMiah\nMonika\nNoemy\nPaula\nPhoebe\nPiper\nReanna\nRegina\nReilly\nReyna\nRocio\nRoxanne\nRylie\nSariah\nShaylene\nShyanne\nShyla\nSiena\nStevie\nTamara\nTea\nTristen\nAbigayle\nAbril\nAdeline\nAdrienne\nAidan\nAlexys\nAlize\nAnita\nAnnelise\nAurora\nBerenice\nBernadette\nBreann\nBreanne\nBryce\nCalista\nCallista\nCamilla\nCara\nCarlee\nCelia\nCeline\nChristy\nDayna\nDorothy\nElaina\nFatima\nGracie\nGretchen\nGwendolyn\nIzabella\nJami\nJayme\nJensen\nJoanne\nJuliet\nKacie\nKaela\nKalyn\nKathrine\nKathy\nKatia\nKaycee\nKaylyn\nKaytlyn\nKierra\nKori\nKortney\nLara\nLeilani\nLinnea\nMacayla\nMadalynn\nMadysen\nMaeve\nMarilyn\nMaura\nMeaghan\nMichele\nMoira\nNallely\nNicolette\nNoemi\nOdalis\nPaulina\nQuincy\nRobin\nRowan\nRyan\nRyley\nShelbi\nSilvia\nSkyla\nStella\nTasia\nTawny\nThalia\nTristan\nUnique\nYadira\nYajaira\nYulissa\nAbbigail\nAbriana\nAislinn\nAlijah\nAlina\nAllyssa\nAlysia\nAmari\nAngie\nAnjelica\nAnnamarie\nAreli\nArely\nArianne\nAshlie\nAyana\nBeatriz\nBethanie\nBritney\nBrynn\nCali\nCandice\nCarol\nCatalina\nCelestina\nChelsey\nChelsie\nCiarra\nCiera\nCoral\nCori\nDaria\nDejah\nDenise\nDesirae\nDomonique\nEboni\nEliana\nElicia\nEssence\nEstefany\nEstela\nEstephanie\nFernanda\nFlor\nFrances\nGenna\nGisel\nIrma\nItzel\nJacey\nJaiden\nJana\nJaquelin\nJayde\nJayla\nJaylene\nJaylynn\nJazlyn\nJoyce\nJuana\nJudy\nJuliette\nKaia\nKamryn\nKarlee\nKarly\nKaty\nKeanna\nKeila\nKendal\nKenia\nKristine\nLeanna\nLexus\nLilia\nLisette\nLori\nMacey\nMadyson\nMagdalena\nMalia\nMallorie\nMandy\nMarlee\nMarlena\nMeriah\nMicah\nMikala\nMyra\nMyranda\nNadine\nNathalie\nOdalys\nPearl\nQuiana\nRaeanne\nRaegan\nRayna\nRenae\nRita\nRochelle\nRyann\nSarahi\nSavana\nShaelyn\nShaina\nSharon\nShay\nSheridan\nShyann\nStar\nTatianna\nTatyana\nTaya\nTierra\nWinter\nXena\nYanet\nYessica\nYvonne\nHannah\nEmily\nMadison\nSarah\nJessica\nSamantha\nAshley\nTaylor\nAlexis\nEmma\nMegan\nLauren\nAlyssa\nElizabeth\nRachel\nKayla\nSydney\nMorgan\nBrianna\nAbigail\nAnna\nOlivia\nJennifer\nGrace\nVictoria\nNicole\nMaria\nSierra\nAlexandra\nJasmine\nSavannah\nAmanda\nBrittany\nHaley\nKatherine\nJordan\nMariah\nJulia\nRebecca\nDanielle\nKaitlyn\nBrooke\nNatalie\nAllison\nMackenzie\nSophia\nIsabella\nBailey\nStephanie\nChloe\nVanessa\nAmber\nDestiny\nShelby\nGabrielle\nMary\nCourtney\nSara\nAndrea\nMarissa\nBreanna\nMikayla\nKatelyn\nHailey\nMadeline\nMakayla\nFaith\nIsabel\nCheyenne\nMolly\nClaire\nKaylee\nKylie\nErin\nMaya\nMelissa\nCassandra\nJenna\nKathryn\nMichelle\nLaura\nRiley\nDiana\nAlicia\nAmy\nPaige\nAlexa\nMiranda\nLeah\nLeslie\nAngel\nCassidy\nJamie\nKimberly\nZoe\nJacqueline\nCaroline\nAlexandria\nChristina\nJade\nLindsey\nAngela\nAutumn\nMckenna\nVeronica\nKatie\nKiara\nAlondra\nAspen\nKelsey\nBriana\nGabriella\nAngelica\nCaitlyn\nGabriela\nMeghan\nShannon\nCaitlin\nDaisy\nLily\nSkylar\nErica\nMckenzie\nHope\nYesenia\nSabrina\nSelena\nJordyn\nPeyton\nRebekah\nAlejandra\nBrittney\nMargaret\nAriana\nDelaney\nIsabelle\nKelly\nAdriana\nAudrey\nElena\nErika\nKarina\nMichaela\nTessa\nAvery\nAna\nBrenna\nCamryn\nCynthia\nEvelyn\nBethany\nBrenda\nHeather\nMia\nCatherine\nDominique\nPayton\nTiffany\nAdrianna\nArianna\nCrystal\nDaniela\nKaren\nKylee\nKyra\nMakenna\nAngelina\nHolly\nKathleen\nRachael\nTrinity\nAubrey\nDesiree\nEsmeralda\nMaggie\nBrooklyn\nHayley\nJazmine\nDakota\nJasmin\nJillian\nKaitlin\nKendra\nKristen\nKyla\nLillian\nLydia\nMonica\nNaomi\nAnastasia\nBianca\nCeleste\nKatrina\nKendall\nLauryn\nMelanie\nRuby\nTori\nAbby\nAlexia\nJulianna\nMadelyn\nSophie\nValeria\nValerie\nCameron\nKate\nTiana\nApril\nKara\nNancy\nAnne\nKira\nRhiannon\nTara\nAlison\nAmelia\nCierra\nJosephine\nSavanna\nShania\nSummer\nCecilia\nElla\nEllie\nHanna\nJazmin\nJoanna\nJocelyn\nLindsay\nLizbeth\nMarisa\nNatalia\nSerena\nShayla\nAshleigh\nAva\nCamille\nCasey\nJada\nJaqueline\nKarla\nKatelynn\nLisa\nRose\nTaryn\nAbbey\nGiselle\nSandra\nAlana\nCarly\nChelsea\nClarissa\nEsperanza\nEva\nFelicity\nGenesis\nGuadalupe\nJulie\nRaquel\nWendy\nAriel\nAshlee\nAshlyn\nBryanna\nDeja\nGianna\nHeidi\nJosie\nKaitlynn\nKaley\nKennedy\nKiana\nMadeleine\nMakenzie\nSadie\nAaliyah\nAlissa\nAliyah\nCarissa\nCarmen\nCharlotte\nClara\nMikaela\nMya\nNina\nPaola\nRaven\nSkyler\nSofia\nAileen\nAllyson\nAurora\nChristine\nCiara\nClaudia\nElise\nGillian\nGloria\nIris\nJanelle\nJenny\nKrystal\nMarina\nRylee\nRylie\nSage\nSidney\nTyler\nAmaya\nAnnie\nAsia\nAthena\nCarla\nCindy\nElisabeth\nEllen\nEstrella\nJanae\nKailee\nKamryn\nKassidy\nKaylie\nLacey\nLarissa\nLesly\nMeagan\nMonique\nNatasha\nAddison\nAlaina\nAnnika\nBridget\nBrynn\nCarolyn\nHarley\nIvy\nJuliana\nKali\nKarissa\nKayleigh\nKirsten\nLogan\nLuz\nMarie\nMercedes\nMiriam\nPatricia\nReagan\nRuth\nTania\nTatum\nTayler\nAlma\nAngelique\nAshton\nBrandi\nBrandy\nHailee\nJanet\nKassandra\nMallory\nNadia\nRenee\nTalia\nTeresa\nVivian\nWhitney\nAnnabelle\nCheyanne\nElaina\nHaylee\nJacquelyn\nJoy\nKailey\nLesley\nMartha\nMelody\nMicaela\nMoriah\nPamela\nReilly\nAlexus\nAllie\nBaylee\nBrianne\nBritney\nCiera\nCora\nDana\nDeanna\nGeorgia\nHallie\nHunter\nJessie\nJohanna\nKiley\nLiliana\nLinda\nMargarita\nMarisol\nMayra\nPerla\nRosa\nRyan\nSasha\nSienna\nTamara\nTheresa\nAshlynn\nDenise\nDulce\nEliza\nEmilee\nEmilie\nFatima\nFiona\nJaclyn\nJaden\nJanessa\nJayden\nJenifer\nKelli\nKrista\nKristina\nLexi\nLilly\nLucy\nMacy\nMalia\nMara\nNoelle\nNora\nPaulina\nPriscilla\nQuinn\nRaelynn\nRegan\nShayna\nStacy\nSylvia\nTabitha\nTatiana\nVirginia\nYasmine\nZoey\nAbigayle\nAlayna\nAlexandrea\nAlisha\nAliya\nAnahi\nAnn\nCalista\nCallie\nCelia\nCortney\nDiamond\nEsther\nGina\nHalle\nItzel\nJazmyn\nJourney\nJustice\nKatarina\nKatlyn\nKaylin\nKiarra\nKiera\nKristin\nLena\nLizeth\nMaddison\nMadelynn\nMariam\nMckayla\nMollie\nNayeli\nParis\nSalma\nShae\nShyanne\nSonja\nStephany\nSydnie\nTanya\nViviana\nAllyssa\nAnika\nAyla\nBlanca\nCailey\nCassie\nChanel\nCorinne\nCristal\nDanae\nDarian\nDevon\nEdith\nEleanor\nElicia\nElisa\nEmely\nFernanda\nGenevieve\nGisselle\nHeaven\nHelen\nJacey\nJadyn\nJoslyn\nKacey\nKaleigh\nKasandra\nKasey\nKathy\nKaty\nKayli\nKianna\nKourtney\nLizette\nLorena\nMadisen\nMireya\nMisty\nMyranda\nRebeca\nReese\nSimone\nSkyla\nTess\nThalia\nTianna\nTiara\nTina\nYvette\nAbril\nAdeline\nAdrienne\nAleah\nAlexys\nAlice\nAlina\nAracely\nArielle\nAylin\nBailee\nBaylie\nBrittanie\nBryn\nCara\nCristina\nDestinee\nDevin\nElsa\nEmmalee\nEve\nGreta\nGretchen\nHaleigh\nImani\nJolene\nJuliet\nJulisa\nJustine\nKacie\nKaeli\nKaelyn\nKaila\nKalie\nKarley\nKatelin\nKeely\nKelsie\nKenna\nKori\nLayla\nLea\nLexus\nLillie\nLyric\nMadyson\nMariela\nMaritza\nMeredith\nMicayla\nNia\nPaula\nReyna\nRobyn\nRocio\nSarai\nSavana\nSavanah\nSharon\nShyla\nSkye\nSonia\nSonya\nSusan\nTaya\nTeagan\nUnique\nAbbigail\nAcacia\nAimee\nAnnabel\nAnnalise\nAyanna\nBarbara\nBobbi\nCarol\nCarolina\nCarrie\nCasandra\nCatalina\nCecelia\nChandler\nChristian\nChristiana\nChristy\nCorina\nDesirae\nDevyn\nDianna\nEden\nElyssa\nEvelin\nGwendolyn\nHana\nIliana\nIndia\nIsis\nIzabel\nJailene\nJane\nJayla\nJaylynn\nJesse\nJuliette\nKarlee\nKayley\nKeeley\nKennedi\nKiersten\nKinsey\nKyleigh\nLaurel\nMacey\nMadalyn\nMadisyn\nMarilyn\nMarlene\nNoelia\nOdalys\nRacheal\nReanna\nReina\nSally\nSantana\nSerenity\nShaylee\nShea\nSheila\nSilvia\nStella\nSusana\nSydnee\nTasha\nTia\nTierra\nViolet\nViridiana\nAdia\nAiyana\nAlia\nAlize\nAlly\nAlysha\nAlysia\nAlyson\nAlyssia\nAmara\nAmethyst\nAngie\nAshly\nAubree\nBrielle\nBrook\nCailyn\nCarley\nCarlie\nCelina\nCharity\nCitlalli\nCyan\nDaniella\nDanika\nDayana\nDejah\nDelia\nDelilah\nDestiney\nElysia\nEssence\nEstefany\nEvan\nFrances\nFrankie\nGracie\nGriselda\nHalie\nHarmony\nHelena\nIrene\nIridian\nIrma\nJaelyn\nJana\nJaycee\nJaylene\nJoseline\nJulissa\nKaia\nKarely\nKarli\nKaylynn\nKellie\nKenzie\nKristine\nKyle\nLa\nLeeann\nLluvia\nLuisa\nMariana\nMercedez\nMicah\nMichele\nMonika\nMykayla\nNichole\nNikki\nOdalis\nParker\nPhoebe\nPiper\nPrecious\nPriscila\nRaina\nRandi\nRayne\nRileigh\nRita\nRobin\nRyleigh\nSelina\nShaelynn\nShyann\nSky\nTaelor\nTamia\nTyra\nWillow\nYajaira\nYasmin\nYazmin\nYvonne\nZoie\nAbagail\nAkira\nAlanna\nAlea\nAlena\nAlessandra\nAlisa\nAmerica\nAnalicia\nAnnaliese\nAnnamarie\nAntonia\nAnya\nAraceli\nAshlea\nAubriana\nAviana\nAzalea\nBeatriz\nBlake\nBrandie\nBreanne\nBrooklynn\nBryana\nCalli\nCambria\nCami\nCamila\nCamilla\nCandace\nCarina\nCarlee\nCaylee\nChantelle\nCherish\nCinthia\nClare\nColleen\nDanica\nDestany\nDestini\nEbony\nEileen\nEliana\nElly\nElyse\nEmerson\nEryn\nEstefania\nEstella\nFelicia\nFrancesca\nGisel\nHadley\nHarper\nHayden\nHaylie\nIngrid\nIreland\nIvonne\nIzabella\nJaime\nJanaya\nJanel\nJaquelin\nJasmyne\nJaycie\nJayde\nJennie\nJewel\nJill\nJodi\nJorden\nJuana\nJulianne\nKaci\nKailyn\nKalee\nKarlie\nKatharina\nKathrine\nKatia\nKayle\nKelsi\nKrystin\nLacie\nLexie\nLiberty\nLondon\nLori\nLucia\nMaeve\nMaricela\nMarin\nMarisela\nMckinley\nMeaghan\nMelisa\nMikala\nMyah\nNoel\nOctavia\nRachelle\nRayna\nRoxanne\nRyann\nSarina\nScarlet\nSedona\nSelene\nSequoia\nShaelyn\nShantel\nShawna\nShay\nShelbi\nShiloh\nShreya\nSiena\nSkylee\nTanner\nTatianna\nTatyana\nTaylar\nTrista\nTristan\nVerania\nYulisa\nEmily\nHannah\nMadison\nAshley\nEmma\nSarah\nJessica\nTaylor\nLauren\nSamantha\nAlexis\nElizabeth\nGrace\nAbigail\nAlyssa\nMegan\nAnna\nSydney\nRachel\nMorgan\nOlivia\nJennifer\nKayla\nJulia\nHaley\nJordan\nJasmine\nMaria\nBrianna\nKaitlyn\nVictoria\nAlexandra\nIsabella\nSierra\nNatalie\nChloe\nSophia\nDestiny\nNicole\nHailey\nSavannah\nKatherine\nAmanda\nStephanie\nDanielle\nMakayla\nVanessa\nBrooke\nTrinity\nMariah\nMackenzie\nAllison\nAmber\nBailey\nMary\nPaige\nShelby\nErin\nRebecca\nKylie\nMarissa\nZoe\nKaylee\nMadeline\nAndrea\nFaith\nJenna\nMichelle\nMikayla\nSara\nJacqueline\nCourtney\nIsabel\nKatelyn\nKimberly\nBrittany\nGabrielle\nLeslie\nMelissa\nMia\nMolly\nAngelica\nCassandra\nAngela\nJade\nCaitlin\nClaire\nRiley\nCaroline\nMaya\nCassidy\nLily\nMiranda\nAlexa\nAudrey\nDiana\nAlexandria\nLaura\nAlondra\nBriana\nPayton\nAngel\nArianna\nAutumn\nCheyenne\nLeah\nAdriana\nErika\nIsabelle\nPeyton\nChristina\nBreanna\nAmy\nGabriela\nKathryn\nCatherine\nCaitlyn\nHope\nJordyn\nKarina\nKarla\nSkylar\nAriana\nHeather\nAlexia\nAna\nKaren\nKatie\nMargaret\nAubrey\nLindsey\nAspen\nMckenna\nAlicia\nAngelina\nGabriella\nLillian\nSabrina\nAvery\nJaqueline\nKelsey\nDaisy\nJocelyn\nKendall\nMichaela\nAlejandra\nCynthia\nHayley\nJazmine\nMonica\nTessa\nAdrianna\nKelly\nSophie\nTiffany\nCrystal\nDakota\nDelaney\nEvelyn\nMeghan\nElena\nElla\nEsmeralda\nJamie\nMadelyn\nNaomi\nErica\nMakenna\nNatasha\nSummer\nVeronica\nElise\nJosephine\nKaitlin\nKatrina\nKiara\nKyra\nSavanna\nValeria\nYesenia\nHanna\nCarmen\nClaudia\nDominique\nJillian\nMckenzie\nMelanie\nRachael\nAlissa\nAva\nBethany\nDesiree\nLesly\nLindsay\nNadia\nRylee\nValerie\nKendra\nKylee\nLydia\nShannon\nAriel\nAshlyn\nBrenna\nBritney\nJasmin\nMercedes\nSelena\nAnahi\nBianca\nBrenda\nCamryn\nDaniela\nSidney\nBrittney\nHeidi\nJada\nKate\nKathleen\nKennedy\nKyla\nMikaela\nMya\nSofia\nAlana\nFatima\nKira\nRuby\nSadie\nSandra\nCindy\nEmilee\nGenesis\nGuadalupe\nHolly\nJulie\nLiliana\nLisa\nRebekah\nAbby\nAnastasia\nEva\nKiana\nAaliyah\nAlexus\nAnnika\nCecilia\nChelsea\nCierra\nJoanna\nJulianna\nKristen\nNatalia\nPaola\nPiper\nTeresa\nWendy\nAliyah\nCarly\nGiselle\nHailee\nKassandra\nMarisa\nAlison\nAlma\nAnnie\nApril\nCeleste\nCiara\nEsperanza\nJenny\nKailey\nLauryn\nMacy\nMariana\nMarina\nRosa\nWhitney\nBrooklyn\nCameron\nCarissa\nCharlotte\nJaden\nKassidy\nKatlyn\nMakenzie\nRenee\nRose\nSage\nTatum\nAnne\nCasey\nEllie\nJazmin\nMadeleine\nMalia\nPatricia\nSerenity\nTalia\nBrooklynn\nCamille\nGianna\nKara\nLilly\nMarie\nMelody\nNancy\nRuth\nShayla\nAddison\nAmaya\nAshlynn\nBrisa\nEleanor\nEsther\nFiona\nGracie\nHaylee\nJacquelyn\nKaitlynn\nLaurel\nLinda\nMaddison\nMallory\nNayeli\nNina\nTara\nTaryn\nTia\nTori\nAllie\nAngelique\nAshlee\nAshleigh\nClara\nEliza\nFernanda\nJayden\nKatelynn\nKirsten\nKristina\nLitzy\nLizbeth\nMaggie\nMaribel\nShania\nSkyler\nTanya\nTiana\nVirginia\nAlayna\nAllyson\nAmelia\nBrandi\nCarolina\nDana\nDenise\nElisabeth\nGillian\nHunter\nIvy\nJaquelin\nJosie\nJuliana\nKali\nKarissa\nLeticia\nMadelynn\nMaia\nMarisol\nPriscilla\nRyan\nSavana\nSerena\nTania\nVivian\nViviana\nAubree\nAurora\nBryanna\nCallie\nCheyanne\nChristine\nCristina\nHaleigh\nHalle\nJustine\nMonique\nPaulina\nQuinn\nReagan\nSavanah\nSylvia\nTheresa\nZoey\nAlina\nAnnalise\nAnya\nAthena\nAyla\nBaylee\nBridget\nDaphne\nHalie\nIndia\nIris\nJaelyn\nJane\nJayde\nJulissa\nLarissa\nLucy\nMadyson\nMicaela\nMiriam\nPerla\nPhoebe\nRaven\nSusan\nTabitha\nTatiana\nTayler\nYasmin\nAbbey\nAnnabelle\nBeatriz\nBrandy\nCalista\nCassie\nClarissa\nDeanna\nFelicia\nGenevieve\nGisselle\nGraciela\nGretchen\nHayden\nHeaven\nJadyn\nJaiden\nJayda\nJessie\nJohanna\nKayleigh\nKaylie\nKrystal\nLeilani\nMadisyn\nMayra\nShyanne\nYamile\nAlanna\nAraceli\nCarlee\nCora\nCristal\nDestinee\nDevyn\nEliana\nEmilie\nEve\nGeorgia\nItzel\nJanet\nKailee\nKaleigh\nKamryn\nKathy\nKristin\nLacey\nLayla\nLesley\nLexi\nLilian\nLucia\nLuz\nMara\nMartha\nMireya\nNataly\nRaquel\nReina\nReyna\nRhiannon\nSydnee\nTess\nAimee\nAlaina\nAlly\nBailee\nBarbara\nBlake\nDevin\nEdith\nElisa\nEstrella\nHaylie\nJayla\nJoslyn\nJoy\nJulianne\nKaley\nKelsie\nKiera\nKiley\nKori\nLaila\nLorena\nMacey\nMadalyn\nMarilyn\nMaritza\nNoelle\nReilly\nRobin\nRoxanne\nSasha\nSheridan\nSydnie\nToni\nYadira\nAcacia\nAileen\nAlisha\nAlize\nAlycia\nAlyson\nAnika\nAntoinette\nAria\nArleth\nAshton\nCara\nCarla\nCarolyn\nCiera\nDallas\nDeja\nGloria\nGreta\nHallie\nHarley\nIrene\nIzabella\nJailene\nJanae\nJanelle\nJanessa\nJaycee\nJaylene\nJazmyne\nJewel\nJudith\nJuliet\nKyleigh\nLilliana\nLizeth\nMelina\nNikki\nPamela\nPrecious\nRegan\nRosalinda\nRylie\nSarai\nShea\nShyann\nSienna\nSilvia\nTaya\nTeagan\nTierra\nTyler\nAbril\nAdalyn\nAdilene\nAlena\nAlexandrea\nAnnabel\nAracely\nArely\nAstrid\nAyanna\nBlanca\nBrynn\nCandice\nCarlie\nCorinne\nDanika\nDevon\nEden\nEmely\nFelicity\nHana\nHelen\nHelena\nImani\nIsabell\nIsis\nJacey\nJalyn\nJustice\nKacey\nKaela\nKatya\nKaycee\nKenna\nKenzie\nKristi\nLexie\nMakena\nMariam\nMarian\nMckayla\nMeagan\nMeredith\nNichole\nPaloma\nRegina\nRita\nRobyn\nRowan\nShae\nSharon\nSkye\nSonia\nStacy\nTatyana\nTianna\nTiara\nYaquelin\nYolanda\nAlysia\nAnn\nAntonia\nAreli\nArielle\nAryanna\nAshly\nAsia\nAylin\nBria\nCaley\nCarley\nCeline\nChasity\nCherish\nClare\nDanae\nDaniella\nDesirae\nDomonique\nElaina\nElicia\nEstefania\nFrancesca\nGisel\nHailie\nIsela\nIvonne\nJackeline\nJessika\nJoselyn\nKaelyn\nKaia\nKarlie\nKasandra\nKasey\nKeara\nKeeley\nKelli\nKenia\nKianna\nKinsey\nKrista\nKristy\nLia\nLogan\nLuisa\nMaricela\nMarlene\nMisty\nMoriah\nRachelle\nRaegan\nRhianna\nRyann\nShaelyn\nShana\nShayna\nSonya\nStacey\nStevie\nTasha\nThalia\nTiffani\nViridiana\nYamilet\nYulissa\nYvette\nAbigayle\nAda\nAdrienne\nAlaura\nAleah\nAliana\nAlysa\nAlyssia\nAmerica\nAngie\nAnita\nAnjali\nAnnette\nAspyn\nBeth\nBrielle\nCarrie\nCaylee\nCecelia\nCharlene\nCielo\nColleen\nDeandra\nDeisy\nDestiney\nDiamond\nDiane\nEileen\nElissa\nEmmalee\nEricka\nEvelin\nFlor\nGracey\nHarmony\nIvana\nJami\nJana\nJena\nJill\nJuana\nJustina\nKaila\nKarime\nKarlee\nKarly\nKatarina\nKatelin\nKaya\nKayley\nKayli\nKaylin\nKiersten\nLea\nLeandra\nLexus\nLila\nLilia\nLorraine\nMacayla\nMackenna\nMandy\nMaranda\nMeaghan\nMelia\nMicah\nMonserrat\nNoemi\nPatience\nPriscila\nRandi\nRocio\nSaige\nSantana\nSarahi\nShaylee\nShaylyn\nShaylynn\nShyla\nSimone\nSkyla\nStella\nTracy\nUnique\nYahaira\nYazmin\nYisel\nYvonne\nZaira\nAbagail\nAbbie\nAbbigail\nAbigale\nAbriana\nAdamaris\nAdeline\nAiyana\nAja\nAlexys\nAliah\nAlice\nAlisa\nAliza\nAllyssa\nAlora\nAmalia\nAmina\nAnalise\nAnaya\nAngeline\nAnnemarie\nArlene\nArrianna\nBeverly\nBillie\nBreann\nBrianne\nBrissa\nBryn\nBrynne\nCailyn\nCallista\nCamila\nCarina\nCarol\nCayla\nCharity\nChelsey\nChristy\nCiarra\nCori\nCydney\nDamaris\nDanna\nDarby\nDayana\nDayanara\nDelia\nDelilah\nDenali\nDulce\nElora\nElsie\nEstefany\nEunice\nEvangelina\nGina\nGwendolyn\nHadley\nHarlee\nHattie\nHaven\nHazel\nJaylee\nJayleen\nJaylynn\nJeanette\nJesenia\nJoey\nJohana\nJourney\nJoyce\nKacie\nKaili\nKaiya\nKarely\nKaryme\nKaylea\nKaylynn\nKaytlyn\nKeegan\nKeely\nKeira\nKellie\nKierra\nLacy\nLara\nLeila\nLesli\nLivia\nLoren\nLori\nMacie\nMagaly\nMaiya\nMakala\nMargarita\nMariela\nMarlee\nMarley\nMattie\nMckinley\nMelinda\nMelisa\nMika\nMikaila\nMina\nMoira\nMollie\nMyah\nNallely\nNathalie\nNicolette\nNicolle\nNora\nNorma\nParis\nPearl\nPhoenix\nPresley\nRaelynn\nRaine\nRikki\nRosalie\nRosario\nRyleigh\nSaira\nSelina\nShawna\nShawnee\nSheila\nSiena\nSloan\nTegan\nTionna\nTrista\nTyra\nVanesa\nWinter\nXiomara\nYasmine\nEmily\nHannah\nMadison\nAshley\nTaylor\nSamantha\nAbigail\nEmma\nOlivia\nSarah\nJessica\nLauren\nElizabeth\nAlexis\nGrace\nMegan\nAlyssa\nSydney\nMaria\nRachel\nAnna\nIsabella\nMorgan\nJennifer\nAlexandra\nBrianna\nVictoria\nChloe\nJasmine\nJordan\nHailey\nKayla\nBrooke\nJulia\nKaitlyn\nKatherine\nMackenzie\nNicole\nTrinity\nSavannah\nSophia\nAmanda\nDestiny\nHaley\nNatalie\nMadeline\nSierra\nZoe\nBailey\nAmber\nAndrea\nRiley\nFaith\nVanessa\nJenna\nKatelyn\nMariah\nStephanie\nErin\nLeslie\nRebecca\nJacqueline\nDanielle\nMakayla\nMichelle\nIsabel\nAngelina\nMikayla\nLily\nMia\nPeyton\nAllison\nDiana\nKathryn\nShelby\nMolly\nIsabelle\nMary\nClaire\nPaige\nCaitlin\nJade\nKaylee\nMaya\nAvery\nKylie\nAlexandria\nAriana\nCourtney\nMarissa\nKimberly\nMelissa\nSara\nAngela\nGabrielle\nAlicia\nKatie\nAlexa\nAlexia\nCaroline\nCassidy\nMiranda\nAngelica\nGabriella\nSophie\nAudrey\nAutumn\nCassandra\nGabriela\nLillian\nEvelyn\nAdriana\nLeah\nMadelyn\nAlondra\nCheyenne\nCynthia\nAva\nKelly\nLaura\nCatherine\nKelsey\nElla\nErika\nNayeli\nPayton\nAmy\nAna\nKylee\nSabrina\nArianna\nKaren\nKarla\nAshlyn\nAspen\nDaniela\nMargaret\nChristina\nErica\nKarina\nRachael\nAaliyah\nAngel\nDelaney\nDaisy\nJordyn\nSkylar\nBreanna\nJaqueline\nLindsey\nBriana\nCrystal\nShannon\nCaitlyn\nEsmeralda\nLydia\nNaomi\nJuliana\nKendall\nKiara\nKyla\nTiffany\nAlejandra\nBrittany\nHeather\nHope\nMakenna\nNevaeh\nAbby\nJillian\nJocelyn\nMakenzie\nMelanie\nRebekah\nJazmin\nMckenna\nMichaela\nBrenda\nBrooklyn\nClaudia\nCarmen\nElise\nJulianna\nKate\nKira\nSadie\nSandra\nSofia\nTalia\nValeria\nAlison\nHolly\nMckenzie\nMonica\nNatalia\nJaden\nJamie\nJosephine\nKaitlin\nKendra\nAnahi\nCamryn\nKyra\nBethany\nElena\nGuadalupe\nHanna\nKennedy\nLiliana\nLindsay\nMaggie\nReagan\nTessa\nVeronica\nAmelia\nAnnika\nKatelynn\nLesly\nRylee\nSelena\nYesenia\nAubrey\nBianca\nCharlotte\nCindy\nDakota\nGiselle\nItzel\nJayla\nKatrina\nMelody\nMya\nRose\nSavanna\nSummer\nWendy\nAnne\nElisabeth\nEva\nFiona\nGracie\nJada\nMacy\nPatricia\nSerenity\nAdrianna\nApril\nEleanor\nEsperanza\nGenesis\nGillian\nHelen\nJessie\nLucy\nRuby\nSidney\nTara\nAlissa\nAriel\nFatima\nIvy\nJulie\nMarisol\nMercedes\nAddison\nAnastasia\nBritney\nBrittney\nCecilia\nClara\nGianna\nHaylee\nHayley\nMariana\nMeghan\nMikaela\nPaola\nPiper\nShayla\nTaryn\nTiana\nAshlynn\nBrenna\nChelsea\nDesiree\nJasmin\nKassandra\nKristina\nNatasha\nTatum\nTori\nValerie\nBrisa\nCarly\nHunter\nLeticia\nLilly\nLizbeth\nMelina\nNancy\nRylie\nSage\nAliyah\nAnnie\nCarissa\nCora\nCristal\nCristina\nJosie\nKailey\nKaitlynn\nKara\nKathleen\nKayleigh\nLogan\nMadeleine\nMarisa\nPerla\nRosa\nShyanne\nSkyler\nAleah\nAlexus\nAllyson\nAsia\nBridget\nCameron\nCarolina\nDaphne\nEden\nEllie\nJayden\nJazmine\nJoanna\nKiana\nKirsten\nMaddison\nSerena\nTeresa\nEliana\nGeorgia\nHayden\nHeidi\nKristin\nLarissa\nMireya\nMonique\nNadia\nRaquel\nTania\nTeagan\nZoey\nAinsley\nAlaina\nAlana\nAlma\nAmaya\nAngelique\nAnnabelle\nAshleigh\nBaylee\nBryanna\nChristine\nCierra\nDeja\nDenise\nDulce\nHeaven\nKaylie\nLacey\nMacie\nNina\nRaven\nRegan\nReina\nRhiannon\nRuth\nVivian\nAnnalise\nColleen\nDiamond\nIsabela\nJanae\nKristen\nLauryn\nLeilani\nLisa\nLorena\nMalia\nMallory\nMarina\nMaritza\nMayra\nMeagan\nSasha\nSydnee\nTatiana\nYadira\nAimee\nAllie\nAraceli\nAshlee\nBailee\nCasey\nDestinee\nElaina\nEmilee\nEmilia\nHailee\nHana\nIsis\nJacquelyn\nJadyn\nJoana\nJohanna\nJoy\nJulissa\nKali\nKassidy\nKenna\nLayla\nLexi\nMadisyn\nNoelia\nNora\nPrecious\nPriscilla\nTyler\nViviana\nYasmine\nAbbey\nAdeline\nAlice\nAliya\nAlyson\nAntonia\nAurora\nAyla\nCamille\nClarissa\nEliza\nEve\nGenevieve\nGisselle\nJaidyn\nKaley\nKiera\nKrystal\nLeila\nLesley\nLinda\nLucia\nLuz\nMadyson\nMarie\nMckayla\nMeredith\nMicaela\nNoelle\nPamela\nRenee\nSonia\nSydni\nAbbie\nAlisa\nAnalise\nAreli\nAshton\nBrandy\nCarolyn\nCeleste\nCitlalli\nDelilah\nDevyn\nFlor\nFrancesca\nHalie\nHalle\nHarmony\nIris\nJaelyn\nJanessa\nJustine\nKatlyn\nKeely\nKelsie\nKenia\nKrista\nLilian\nMarley\nMiriam\nNallely\nPhoebe\nRaina\nRyan\nSkye\nStella\nXimena\nAlanna\nAlayna\nAnya\nAshtyn\nAudra\nAylin\nBella\nBerenice\nCasandra\nCelia\nCiara\nDarian\nDayana\nEllen\nEmilie\nEstrella\nHarley\nIngrid\nJayda\nJazlyn\nJazmyn\nJohana\nJoslyn\nJuliet\nKaleigh\nKaya\nKiley\nLila\nLitzy\nMadalyn\nMadisen\nMaura\nNataly\nNayely\nNichole\nNyah\nReilly\nRowan\nShea\nSienna\nTabitha\nTayler\nThalia\nTierra\nViolet\nVirginia\nAileen\nAlexandrea\nAlina\nAlycia\nAlysa\nAmerica\nAnika\nAnn\nAnnabella\nArielle\nAryanna\nBarbara\nBrielle\nCallie\nCarina\nCarla\nDana\nDanae\nDarby\nDevin\nDominique\nEdith\nElisa\nEsther\nGloria\nHallie\nHaven\nJaeda\nJanet\nJaylene\nJudith\nJulianne\nKaelyn\nKailee\nKamryn\nKatarina\nKatharine\nKenzie\nLexie\nLizeth\nMarilyn\nMartha\nRayna\nRocio\nSalma\nSimone\nStephany\nSylvia\nTess\nTia\nTiara\nAbigale\nAlysia\nAngie\nArely\nAria\nAthena\nAubree\nAveri\nBernadette\nBlanca\nBrandi\nBrynn\nCharity\nCheyanne\nCiera\nCorinne\nDamaris\nDanika\nDeanna\nDevon\nDonna\nElsa\nEstefania\nGina\nGretchen\nHaleigh\nHazel\nImani\nJaime\nJane\nJanelle\nKaela\nKarlee\nLea\nLexus\nLucille\nMacey\nMadelynn\nMadilyn\nMaia\nMariela\nMarlene\nMeadow\nNya\nPaulina\nPresley\nRaelynn\nRosemary\nSavana\nShelbie\nSheridan\nTerra\nWillow\nYareli\nAbigayle\nAcacia\nAlexi\nAlia\nAlisha\nAmara\nAnissa\nAracely\nBrianne\nBrooklynn\nCara\nCharlize\nDrew\nElyse\nEmerald\nEryn\nEvelin\nHadley\nHelena\nIrene\nJaclyn\nJaiden\nJaneth\nJaquelin\nJenny\nJoselyn\nJovana\nJulieta\nKallie\nKaylei\nKaylin\nKaylyn\nKenya\nKierra\nKristy\nKyleigh\nLaney\nLaurel\nLena\nLia\nLivia\nMaleah\nMara\nMarion\nMckinley\nMindy\nMonserrat\nOdalys\nPaula\nQuinn\nRachelle\nRaegan\nReanna\nReese\nSarahi\nSelina\nShae\nShania\nShawna\nSheila\nShyla\nTamara\nTheresa\nYuliana\nAbbigail\nAiyana\nAlannah\nAlex\nAllyssa\nAlyssia\nAnjelica\nAnnalisa\nArleth\nAubrianna\nAubrie\nAustin\nAyanna\nAzucena\nBeyonce\nCadence\nCaley\nCalista\nCarlee\nCassie\nCayla\nChandler\nCharlie\nCienna\nClare\nCodi\nDeborah\nElicia\nEmerson\nEricka\nEstefany\nFelicia\nFelicity\nFernanda\nGiovanna\nHaylie\nHollie\nIliana\nIndia\nJackeline\nJanette\nJasmyn\nJazmyne\nJena\nJenifer\nJolie\nJoslynn\nJustice\nKacey\nKarli\nKarsen\nKasandra\nKatlynn\nKayleen\nKeila\nLara\nLeandra\nLesli\nLexis\nLuisa\nMagdalena\nMakaila\nMandy\nMarianna\nMaribel\nMaricruz\nMarin\nMelisa\nMika\nMoriah\nNathalia\nNathalie\nNia\nNicolette\nNikita\nNorma\nOlga\nPaloma\nPatience\nRae\nReyna\nSaige\nSavanah\nSelene\nSequoia\nSkyla\nStacy\nSusan\nSusana\nTianna\nToni\nWhitney\nXitlaly\nYasmin\nYazmin\nYessica\nYoselin\nYvette\nZoie\nAbrianna\nAbril\nAdamaris\nAdela\nAidan\nAilyn\nAislinn\nAja\nAlaya\nAlena\nAlessandra\nAnayeli\nAnita\nAnnabel\nAnnelise\nAnnette\nAshli\nBelen\nBeth\nBraelyn\nBreana\nBreann\nBria\nBrissa\nBriza\nBryce\nBryn\nCailey\nCaleigh\nCali\nCamila\nCamilla\nCarime\nCarli\nCarlie\nCarson\nChantel\nCheryl\nChrista\nCody\nDallas\nDaniella\nDarlene\nDawn\nDeisy\nDenisse\nDesirae\nDestany\nDiane\nElianna\nElissa\nElle\nElli\nEmmalee\nEvangelina\nEvangeline\nFrancisca\nGeneva\nGladys\nGraciela\nGreta\nGwendolyn\nHali\nHalley\nHarper\nHattie\nHolli\nIvette\nJacey\nJacy\nJaelynn\nJailene\nJailyn\nJalyn\nJaya\nJayde\nJaylin\nJazlynn\nJeniffer\nJoseline\nJovanna\nKaci\nKaiya\nKarissa\nKarly\nKatia\nKatlin\nKaty\nKayley\nKianna\nKinsey\nKya\nLeann\nLeanna\nLeia\nLibby\nLiberty\nLilith\nLilliana\nLondon\nLucero\nMacee\nMackenna\nMadalynn\nMadilynn\nMaren\nMariam\nMason\nMattie\nMicah\nMicaiah\nMichal\nMikaila\nMyah\nMykayla\nMyranda\nNadine\nNaila\nNoel\nNoemi\nNorah\nParis\nPearl\nPenelope\nQuincy\nRegina\nRhianna\nRhyan\nRobyn\nRosalinda\nRoxanne\nRubi\nSade\nSerene\nSharon\nShaylee\nShayna\nShyann\nSky\nSonya\nTamia\nTea\nTherese\nTriniti\nTristan\nUnique\nVenessa\nVianey\nYamilet\nYessenia\nYvonne\nZaira\nMadison\nEmily\nEmma\nAshley\nIsabella\nHannah\nAbigail\nElizabeth\nSamantha\nOlivia\nAlexis\nGrace\nAlyssa\nLauren\nSarah\nJessica\nSydney\nAnna\nJennifer\nTaylor\nMorgan\nSophia\nChloe\nJasmine\nMaria\nVictoria\nBrianna\nRachel\nKayla\nMegan\nMia\nKatherine\nAlexandra\nHailey\nNatalie\nJordan\nZoe\nKaitlyn\nHaley\nJulia\nKylie\nSierra\nStephanie\nAndrea\nSavannah\nMadeline\nPaige\nAmanda\nElla\nFaith\nNicole\nDestiny\nAlondra\nJade\nMackenzie\nLily\nTrinity\nIsabelle\nBrooke\nMakayla\nMaya\nAlexa\nVanessa\nDanielle\nSara\nKimberly\nRiley\nKatelyn\nEvelyn\nRebecca\nAudrey\nAutumn\nBailey\nMichelle\nKaylee\nLeslie\nLizbeth\nNevaeh\nShelby\nAngelina\nGabrielle\nIsabel\nAaliyah\nAllison\nJacqueline\nAriana\nAvery\nJenna\nAna\nGabriella\nAlicia\nAngela\nAlexia\nLillian\nAmber\nLeah\nMelissa\nPeyton\nArianna\nDaisy\nAlexandria\nAmelia\nClaire\nKatie\nMarissa\nMolly\nCourtney\nMary\nCassandra\nMariah\nErin\nCassidy\nLaura\nDiana\nKaren\nAva\nKarla\nAngel\nCheyenne\nLindsey\nSkylar\nAdriana\nCaroline\nJocelyn\nMelanie\nPayton\nValeria\nGabriela\nKarina\nKylee\nMikayla\nAmy\nBreanna\nMadelyn\nAspen\nBrooklyn\nCaitlyn\nKelsey\nAngelica\nCaitlin\nElise\nDelaney\nMckenna\nAshlyn\nMargaret\nBriana\nHope\nSophie\nCatherine\nDaniela\nEsmeralda\nMonica\nNaomi\nChristina\nKate\nMakenna\nSofia\nKathryn\nMeghan\nRylee\nCynthia\nElena\nAbby\nJillian\nKyla\nRuby\nAubrey\nCharlotte\nGenesis\nJazmin\nKelly\nKira\nLydia\nSadie\nAlejandra\nEllie\nKendall\nShannon\nBianca\nBrittany\nErica\nErika\nMckenzie\nMya\nYesenia\nEva\nHeather\nKendra\nKyra\nRachael\nSabrina\nVeronica\nCrystal\nFiona\nJoanna\nSummer\nTessa\nAnahi\nGuadalupe\nHeidi\nJada\nJaqueline\nJasmin\nJosephine\nJulianna\nKaitlin\nMiranda\nValerie\nAnnika\nBrenna\nJamie\nKennedy\nMelody\nMichaela\nNadia\nSavanna\nSerena\nAliyah\nBritney\nClaudia\nFatima\nHayley\nJayden\nJordyn\nMadeleine\nRebekah\nTatum\nAddison\nAmerica\nDakota\nGianna\nJaden\nJazmine\nLesly\nLiliana\nMaggie\nNina\nReagan\nSidney\nSkyler\nAdrianna\nAnastasia\nBrittney\nCarly\nGenevieve\nJuliana\nKiara\nMariana\nNatalia\nSandra\nVivian\nAlana\nAshleigh\nBethany\nCecilia\nHolly\nNancy\nSage\nShayla\nAlison\nAlissa\nAnnabelle\nAshlee\nBrenda\nCameron\nDesiree\nEleanor\nKatrina\nMercedes\nPaola\nPiper\nRaven\nWendy\nApril\nCarolina\nCierra\nLilly\nMakenzie\nRegan\nTeagan\nAlma\nCeleste\nGracie\nLindsay\nLucy\nRosa\nAlaina\nAlina\nCarla\nCindy\nFernanda\nKara\nKaya\nKristina\nLeilani\nNatasha\nPatricia\nPerla\nSelena\nTania\nTaryn\nTiffany\nChelsea\nCristina\nDenise\nGillian\nGiselle\nHanna\nJadyn\nJimena\nKailey\nLauryn\nMaia\nMarisol\nNayeli\nTamara\nTori\nZoey\nBrooklynn\nEden\nEliana\nEsther\nHaylee\nKassandra\nKatelynn\nKiana\nLesley\nMarlene\nPaulina\nSerenity\nAllyson\nAngelique\nAnika\nBridget\nCarmen\nDestinee\nEsperanza\nGeorgia\nLexi\nLogan\nMarisa\nSienna\nWillow\nAinsley\nAriel\nCamille\nChristine\nClara\nHallie\nJayda\nJayla\nKarissa\nKayleigh\nKaylie\nRyan\nStella\nTalia\nTara\nTiana\nXimena\nYasmin\nAngie\nAshlynn\nDulce\nHalle\nHeaven\nIris\nJanessa\nJosie\nJulie\nKaia\nKristen\nLitzy\nLuz\nPriscilla\nReese\nRuth\nRylie\nTess\nAimee\nAsia\nBrandy\nBrisa\nDiamond\nElsa\nEvelin\nGisselle\nHailee\nJenny\nMacy\nMadisyn\nMikaela\nMiriam\nNoelle\nPrecious\nQuinn\nRhiannon\nSavanah\nSimone\nSkye\nVirginia\nAmaya\nArleth\nAshanti\nAthena\nBella\nCiara\nEdith\nElisa\nElisabeth\nEmilee\nEstrella\nHaven\nHelen\nItzel\nIzabella\nJessie\nJoy\nKassidy\nKathleen\nKrystal\nLarissa\nLayla\nLilliana\nLinda\nLucia\nMallory\nMarie\nMayra\nRaina\nRose\nTatyana\nTia\nAbigayle\nAlayna\nAlena\nAnne\nAria\nAyla\nBrynn\nDana\nDestiney\nElaina\nEmely\nEmilia\nEstefania\nGina\nGloria\nIsabela\nJanae\nJustice\nKaitlynn\nKatlyn\nKirsten\nLaurel\nMadalyn\nMalia\nMartha\nMonique\nSalma\nTabitha\nViviana\nWhitney\nYoselin\nAlize\nAntonia\nAracely\nAshton\nAurora\nAylin\nBaylee\nBlanca\nCamryn\nDaniella\nDominique\nEmilie\nIndia\nJacquelyn\nJane\nJoslyn\nKali\nKyleigh\nLacey\nLexie\nLisbeth\nMadelynn\nMeredith\nReanna\nRenee\nTanya\nTatiana\nTheresa\nYareli\nAdeline\nAlexus\nAllie\nAlyson\nAnnie\nAraceli\nBailee\nCallie\nCara\nCheyanne\nClarissa\nDeja\nDesirae\nDonna\nEliza\nElle\nFelicia\nFelicity\nHana\nHayden\nJaelyn\nJazlyn\nJulissa\nKaley\nKatharine\nKaylin\nLaila\nLeticia\nLiberty\nLizeth\nLluvia\nLorena\nMacey\nMacie\nMicaela\nMireya\nPamela\nParis\nRaquel\nSarahi\nShay\nSonia\nStephany\nTyler\nViolet\nYadira\nYasmine\nAdrienne\nAlisha\nAnnette\nAshly\nCharity\nDarlene\nFrancesca\nHadley\nHailie\nHaleigh\nIsis\nIvy\nJacey\nJanelle\nJazmyn\nJazmyne\nJenifer\nJesse\nJohanna\nKaelyn\nKailee\nKaylynn\nKeira\nLaney\nLia\nLucille\nMariela\nMarina\nMaritza\nMckayla\nMollie\nNora\nReyna\nRyleigh\nSasha\nScarlett\nShaelyn\nShyanne\nSilvia\nStacy\nTaya\nTea\nAbbie\nAdamaris\nAileen\nAlessandra\nAlice\nAliya\nAmaris\nAnita\nAnnabella\nAnnalise\nBreana\nBryanna\nBryn\nCalista\nCarina\nCasandra\nCasey\nDania\nDianna\nDylan\nEstefani\nJaclyn\nJaidyn\nJanet\nJasmyn\nJolie\nJoseline\nJuanita\nJudith\nJustina\nKaleigh\nKasandra\nKasey\nKatarina\nKaycee\nKaylyn\nKeely\nKelli\nKristin\nLeila\nLibby\nLila\nLilianna\nMadisen\nMalena\nMarianna\nPresley\nRachelle\nRayna\nRosemary\nRowan\nSavana\nShania\nShea\nSheila\nSonya\nStacey\nSusan\nSylvia\nTeresa\nYazmin\nYessenia\nYulisa\nAbbigail\nAbril\nAcacia\nAdelaide\nAdilene\nAlexys\nAlycia\nAnaya\nAnja\nAnn\nAnnabel\nAnya\nAshtyn\nAspyn\nBonnie\nCamila\nChantal\nCharlize\nChristiana\nCora\nCristal\nDarby\nDevin\nEllen\nEmalee\nEmerson\nFabiola\nFrida\nHalley\nHarmony\nHaylie\nHeidy\nHelena\nHunter\nIreland\nIzabelle\nJacquelin\nJaiden\nJoana\nJoselyn\nJulianne\nJuliet\nKaiya\nKendal\nKenna\nKenzie\nKianna\nLea\nLena\nLidia\nLilia\nLorelei\nLuna\nMadysen\nMaleah\nMara\nMarlen\nMina\nNathaly\nNichole\nNikki\nNoelia\nNoemi\nParker\nPhoebe\nPriscila\nReilly\nRobyn\nSharon\nShyla\nSydnee\nTayler\nTehya\nThalia\nThea\nTianna\nAbbey\nAbigale\nAlanna\nAlexi\nAlia\nAlysa\nAmari\nAnastacia\nAnjali\nAriadne\nArielle\nAshlie\nAstrid\nAustyn\nBlake\nBridgette\nCadence\nCampbell\nCarol\nCarolyn\nCassie\nCatalina\nCelina\nCharlie\nChiara\nCitlaly\nClare\nCydney\nDamaris\nDanae\nDaphne\nDayana\nDayanna\nDeanna\nDestany\nElaine\nElyse\nEmery\nEve\nGia\nGraciela\nIliana\nImani\nIngrid\nIsabell\nJaedyn\nJaime\nJaycee\nJayde\nJustine\nKacey\nKaci\nKari\nKarlee\nKarly\nKaty\nKayley\nKeeley\nKenya\nKiera\nKiersten\nKiley\nLara\nLeeann\nLilian\nLisa\nLucero\nLyric\nMackenna\nMadilyn\nMadyson\nMagdalena\nMargarita\nMarguerite\nMaribel\nMason\nMaxine\nMeagan\nMelia\nMonserrat\nNatali\nNorma\nNyssa\nPenelope\nPilar\nPricilla\nRaegan\nReece\nRita\nRobin\nRocio\nRubi\nSally\nSativa\nSonja\nStevie\nSydnie\nTasia\nTrista\nTristen\nXiomara\nYarely\nYvonne\nAbagail\nAida\nAidan\nAleah\nAlex\nAliah\nAlivia\nAlly\nAnalise\nAnanya\nAnay\nAniya\nAnnemarie\nArlene\nAryanna\nAudra\nAurelia\nAustin\nBerenice\nBreonna\nBrielle\nBritany\nCailin\nCailyn\nCaitlynn\nCaley\nCambria\nCarissa\nCarlie\nCarson\nCherish\nCinthia\nCloe\nColleen\nDanika\nDawn\nDeborah\nDevon\nDevyn\nDorothy\nDrew\nEcho\nEileen\nElliana\nEloise\nElyssa\nEryn\nEstefany\nEvangelina\nGalilea\nGenna\nGwendolyn\nHaily\nHalie\nHarley\nIdaly\nIvonne\nJahaira\nJana\nJaneth\nJaquelin\nJasmyne\nJaycie\nJaylene\nJaylynn\nJazlynn\nJena\nJenessa\nJewel\nJulisa\nKacie\nKallie\nKamryn\nKarely\nKaris\nKatelin\nKatia\nKatya\nKaylan\nKeegan\nKelsie\nKyara\nLainey\nLeanne\nLeona\nLinnea\nLiz\nLizette\nLola\nLuisa\nMaddison\nMaira\nMaisie\nMakena\nMakyla\nMandy\nMaricela\nMarlena\nMelany\nMelina\nMelinda\nMicah\nMira\nMisty\nMonet\nMontana\nMykaela\nNathalie\nNoel\nNoemy\nNuvia\nNya\nNyah\nNyla\nOlga\nPaloma\nPatience\nPaula\nPhoenix\nRaeann\nReina\nRory\nRosalinda\nSarai\nSarina\nSelene\nShantel\nShaylen\nShayna\nShirley\nSusana\nSydni\nTegan\nTierney\nToni\nTristan\nUnique\nVanesa\nVeronika\nWilla\nYahaira\nEmily\nEmma\nMadison\nHannah\nAshley\nIsabella\nAbigail\nSamantha\nGrace\nElizabeth\nOlivia\nAlexis\nAlyssa\nSarah\nJessica\nLauren\nTaylor\nSophia\nJennifer\nSydney\nChloe\nJasmine\nVictoria\nElla\nAnna\nMegan\nMorgan\nMaria\nRachel\nHaley\nSavannah\nAlexandra\nHailey\nNatalie\nMia\nJordan\nKayla\nLily\nAva\nKylie\nKaitlyn\nBrianna\nKatherine\nJulia\nBrooke\nNicole\nZoe\nTrinity\nAvery\nPaige\nAndrea\nLeslie\nMackenzie\nNevaeh\nSierra\nKaylee\nAllison\nFaith\nMadeline\nRiley\nMichelle\nEvelyn\nAmanda\nDestiny\nKimberly\nStephanie\nMaya\nJenna\nMariah\nSara\nVanessa\nAriana\nAutumn\nIsabel\nMarissa\nMary\nJade\nAlexa\nAna\nDaisy\nAmelia\nJacqueline\nGabriela\nShelby\nAmber\nGabriella\nMakayla\nRebecca\nAngelina\nJocelyn\nAudrey\nGabrielle\nKatelyn\nBailey\nClaire\nDanielle\nAshlyn\nIsabelle\nLeah\nSofia\nLillian\nMelissa\nAaliyah\nBrooklyn\nDaniela\nMolly\nArianna\nLizbeth\nAlondra\nCaroline\nMikayla\nAngela\nCassidy\nDiana\nRylee\nSadie\nKaren\nKathryn\nKatie\nLindsey\nAdriana\nAlicia\nKate\nValeria\nNatalia\nPeyton\nAlexandria\nBreanna\nErin\nBriana\nCatherine\nDelaney\nEllie\nJazmin\nAmy\nAspen\nKarla\nKylee\nNaomi\nAlejandra\nSophie\nKendall\nLaura\nMargaret\nAngel\nCheyenne\nLydia\nAngelica\nMelanie\nMiranda\nErika\nMya\nPayton\nAlexia\nAnnika\nCassandra\nCourtney\nHope\nJamie\nJillian\nKelly\nElena\nKelsey\nRuby\nMonica\nPerla\nSandra\nCrystal\nErica\nJada\nJordyn\nLucy\nMariana\nStella\nCaitlin\nCynthia\nLilly\nMadelyn\nAddison\nCharlotte\nJuliana\nKyla\nKyra\nMeghan\nClara\nEsmeralda\nEva\nJadyn\nKennedy\nMacy\nMckenna\nSabrina\nSerena\nTessa\nVeronica\nZoey\nAbby\nAnahi\nCaitlyn\nChristina\nElise\nJaden\nJasmin\nJayden\nJazmine\nKatelynn\nSerenity\nBianca\nGiselle\nGracie\nLiliana\nNancy\nValerie\nAlison\nGianna\nHayley\nJosephine\nAliyah\nKarina\nMaggie\nRosa\nSavanna\nSkyler\nAlana\nAnastasia\nEliana\nFiona\nLesly\nMckenzie\nPaola\nRebekah\nSage\nFatima\nGuadalupe\nHanna\nJulianna\nKaitlin\nMakenna\nMichaela\nReese\nWendy\nAubrey\nBethany\nBrenna\nDesiree\nGenesis\nJulie\nNatasha\nSkylar\nAdrianna\nBridget\nEstrella\nJanessa\nJaqueline\nKara\nMakenzie\nParis\nTaryn\nTatum\nTiffany\nVivian\nAshlee\nBrisa\nBrittany\nClaudia\nDakota\nHalle\nHeather\nKira\nLayla\nRuth\nAmaya\nBella\nCarmen\nEleanor\nJimena\nJoanna\nMarisol\nNadia\nSummer\nTess\nBrenda\nCadence\nCecilia\nJulissa\nMallory\nReagan\nAllyson\nAriel\nAshleigh\nCristina\nHailee\nHolly\nLaila\nLindsay\nPamela\nPiper\nSelena\nAlyson\nAnnabelle\nBrynn\nCarly\nCeleste\nCora\nEsperanza\nHeaven\nIzabella\nKailey\nKaylie\nKiana\nKiara\nSidney\nTara\nXimena\nAshlynn\nCameron\nCamila\nCamryn\nChelsea\nEliza\nGenevieve\nHaylee\nHeidi\nIris\nLogan\nLuz\nMadeleine\nMarina\nMarisa\nMercedes\nMonique\nRylie\nShannon\nTania\nYesenia\nAnnie\nApril\nCamille\nDulce\nGeorgia\nIsabela\nJaiden\nKatrina\nMarlene\nNina\nNoelle\nRyleigh\nAllie\nBrooklynn\nCarla\nCindy\nCristal\nDestinee\nEmerson\nEmilia\nHelen\nKayleigh\nKristina\nLexi\nLucia\nMalia\nSkye\nTalia\nTayler\nTeagan\nAileen\nAimee\nAinsley\nAlexus\nAlina\nAlissa\nAnne\nAnya\nAurora\nBryanna\nEmilee\nEve\nEvelin\nFernanda\nJayla\nJessie\nKendra\nKiera\nKirsten\nKristen\nLorena\nMariela\nMckayla\nPaulina\nRegan\nRhiannon\nSarai\nShyanne\nSylvia\nTrista\nYareli\nAlice\nAshton\nAthena\nBaylee\nCierra\nEden\nElisa\nJohanna\nLeilani\nLena\nLinda\nLola\nMelody\nMeredith\nMiriam\nPhoebe\nRaquel\nRenee\nRose\nSamara\nSienna\nSimone\nSonia\nAracely\nAsia\nAubree\nBlanca\nBrandi\nCarolina\nCasey\nDaniella\nDylan\nGina\nJanae\nJayda\nJaylene\nKarime\nKathleen\nKiley\nLarissa\nLila\nMikaela\nMollie\nNoemi\nPatricia\nPriscilla\nRaven\nRowan\nSasha\nTabitha\nTori\nYasmin\nAbbey\nAlaina\nAmelie\nAmerica\nArely\nAyla\nBritney\nCarissa\nDenise\nEsther\nGloria\nIrene\nJosie\nJoslyn\nKaley\nKristin\nLaurel\nLesley\nLexie\nMayra\nNayeli\nNora\nRyan\nThalia\nWillow\nAnalicia\nAnika\nAnnabel\nBrielle\nCallie\nCampbell\nChristine\nCiara\nDamaris\nDominique\nEdith\nElisabeth\nElle\nElsa\nEmmalee\nHayden\nItzel\nIvy\nJoana\nJoseline\nJoselyn\nJustice\nKamryn\nKarlee\nKarly\nKaya\nLauryn\nLeila\nMacey\nMaddison\nMadelynn\nMaia\nMicaela\nQuinn\nRachael\nRyann\nShania\nShayla\nTatiana\nYazmin\nAbbigail\nAdeline\nBrittney\nDana\nDaphne\nDenisse\nFrances\nGalilea\nGillian\nGisselle\nHadley\nHaleigh\nHunter\nIliana\nJacquelyn\nJaneth\nJaquelin\nKarissa\nKaylin\nKeira\nLia\nLilian\nLinnea\nMacie\nMaile\nMarie\nMaritza\nMartha\nMeagan\nRebeca\nStacy\nTiana\nViviana\nYadira\nAiyana\nAlayna\nAliya\nAmara\nAngeline\nAnnaliese\nArleth\nArly\nAylin\nBailee\nBrook\nCarli\nCarolyn\nCasandra\nCatalina\nClarissa\nCorinne\nDayanara\nDeanna\nDeja\nEmilie\nEstefania\nHallie\nHarmony\nImani\nIsis\nJaelyn\nJaida\nJane\nJanet\nJenny\nKaia\nKailee\nKaitlynn\nKaleigh\nKasey\nKassandra\nKeely\nKellie\nKenya\nKenzie\nKyleigh\nLeticia\nLisa\nLyndsey\nMaeve\nMakena\nMarley\nNikki\nPresley\nPriscila\nRaina\nRayna\nReyna\nSandy\nSavana\nSilvia\nStephany\nSusan\nTheresa\nVanesa\nWhitney\nZoie\nAisha\nAnalise\nAnastacia\nAngelique\nAniyah\nAnn\nAnnabella\nAnnalise\nAria\nAshtyn\nBarbara\nBreana\nBryn\nCarley\nCheyanne\nCoral\nDanika\nDarby\nDayana\nDevyn\nElaine\nEmely\nFrancesca\nGreta\nHailie\nHaylie\nHazel\nJazlyn\nJudith\nKassidy\nKendal\nKenna\nKiersten\nLainey\nLiberty\nMadalyn\nMadisyn\nMarlen\nMatilda\nMonserrat\nNaydelin\nNichole\nPrecious\nReilly\nSharon\nSheila\nStevie\nSusana\nTeresa\nTyler\nTyra\nViolet\nVirginia\nYasmine\nYvette\nAbbie\nAdelaide\nAlena\nAlex\nAlisa\nAlisha\nAlivia\nAlma\nAlora\nAlysa\nAmari\nAnay\nAntonia\nAshly\nCailyn\nCara\nCarlie\nCayla\nCinthia\nCitlali\nDanae\nDevon\nElianna\nFelicity\nHelena\nIndia\nJacey\nJaidyn\nJazmyn\nJolie\nJoy\nJulisa\nKacie\nKaiya\nKali\nKallie\nKatarina\nKaydence\nKayley\nKenia\nKierra\nKori\nLacey\nLana\nLori\nLucero\nLuna\nLyric\nMadyson\nMaren\nMelany\nMiah\nMirella\nMoriah\nNayzeth\nNia\nParker\nPatience\nRaegan\nRocio\nRoxanne\nSaige\nSarahi\nShea\nSonya\nTamara\nToni\nYahaira\nYamilet\nAbigayle\nAbrianna\nAdalyn\nAdilene\nAlessandra\nAlthea\nAlycia\nAnanya\nAnita\nAnnalee\nAnnelise\nAraya\nArielle\nAryana\nAshanti\nAudrianna\nAveri\nAyanna\nAzucena\nBrandy\nBrigitte\nBryce\nCali\nCassie\nCaylee\nCelia\nCharity\nCharlize\nCiera\nCloe\nDawn\nDelia\nDianna\nEbony\nElaina\nElisha\nEllen\nElyse\nEmber\nEmelia\nEmerald\nEryn\nEssence\nEstefany\nFrida\nGiana\nGracelyn\nGraciela\nGretchen\nHarley\nIlene\nIngrid\nIrma\nIsabell\nJaclyn\nJanelle\nJasmyn\nJayde\nJazmyne\nJenifer\nJoselin\nJoyce\nJulianne\nJustine\nKaela\nKari\nKaryme\nKatharine\nKatia\nKaylene\nKrista\nKya\nLaci\nLacie\nLaney\nLeonela\nLilliana\nLisbeth\nLitzy\nLiza\nLizeth\nLourdes\nMadilyn\nMakiah\nMaleah\nMandy\nMara\nMaribel\nMelia\nMireya\nNataly\nNorah\nOdalis\nPaula\nQuincy\nRaelyn\nReanna\nReece\nRhianna\nRian\nRobin\nRoselyn\nSarina\nSavanah\nSherlyn\nStacey\nSydnee\nSydni\nTanya\nTegan\nTehya\nTianna\nTierney\nUnique\nValentina\nViridiana\nWinter\nAbagail\nAbigale\nAidan\nAlannah\nAlia\nAlyse\nAlysia\nAmairani\nAmiya\nAnais\nAnaya\nAnjelica\nAnnette\nAnsley\nArabella\nAraceli\nAreli\nAriadne\nAriah\nArlene\nArwen\nAryanna\nAsha\nAubrie\nAustin\nAvril\nBernadette\nBree\nBriza\nCaitlynn\nCaley\nCalista\nCandace\nCandy\nCarina\nCarlee\nCelina\nClare\nCyan\nDalia\nDavina\nDemi\nDesirae\nDiamond\nDiane\nEstephanie\nFabiola\nFelicia\nFlora\nGemma\nGeneva\nGia\nGiovanna\nGisel\nGwen\nHana\nHaven\nIndigo\nJaycee\nJocelin\nJoelle\nJohana\nJuliet\nJulieta\nJuliette\nKacey\nKaelyn\nKaila\nKalea\nKaliyah\nKarely\nKarisma\nKarlie\nKayden\nKaylah\nKayleen\nKayli\nKaylynn\nKelli\nKeyla\nKimberley\nKirstin\nKrystal\nKyle\nLacy\nLaisha\nLeanna\nLesli\nLiana\nLibby\nLilia\nLilianna\nLillie\nLilyana\nLisette\nLizbet\nLyla\nMaci\nMadisen\nMae\nMaegan\nMagaly\nMagdalena\nMaliyah\nMarianna\nMarjorie\nMarlena\nMattie\nMelina\nMira\nMyra\nNaya\nNayely\nNeida\nNeva\nNeveah\nNoelia\nNohemi\nNorma\nNyla\nOriana\nPaloma\nPhoenix\nPrincess\nRaylene\nReina\nSally\nSalma\nSamira\nScarlet\nScarlett\nSelah\nShaelyn\nShiloh\nShreya\nSneha\nSunny\nSusanna\nSydnie\nTasia\nTatianna\nTatyana\nTaya\nThea\nTia\nTracy\nVianney\nYajaira\nYazmine\nYessenia\nYolanda\nZayra\nEmma\nEmily\nIsabella\nMadison\nAbigail\nAshley\nHannah\nGrace\nSophia\nOlivia\nSamantha\nElizabeth\nAlexis\nElla\nSarah\nAnna\nSydney\nLauren\nTaylor\nAlyssa\nAlexandra\nJasmine\nMorgan\nChloe\nJessica\nMia\nKatherine\nAva\nKayla\nBrianna\nHailey\nNatalie\nNevaeh\nLily\nVictoria\nMegan\nBrooke\nRachel\nJulia\nAvery\nFaith\nKaitlyn\nKylie\nMaria\nZoe\nJennifer\nKaylee\nRiley\nTrinity\nAndrea\nMaya\nPaige\nJordan\nMichelle\nSavannah\nNicole\nHaley\nAngelina\nKimberly\nStephanie\nMary\nSierra\nAmanda\nLillian\nMadeline\nAlexa\nIsabel\nMackenzie\nEvelyn\nGabriella\nRebecca\nJenna\nBailey\nSofia\nVanessa\nAllison\nDiana\nKatelyn\nAmelia\nAutumn\nCaroline\nAudrey\nDanielle\nJade\nDestiny\nLeslie\nMolly\nAmber\nAlexia\nAlondra\nMakayla\nIsabelle\nSara\nAriana\nMarissa\nSophie\nAshlyn\nMelanie\nAmy\nClaire\nMadelyn\nArianna\nAspen\nMelissa\nRuby\nAngela\nNaomi\nJacqueline\nMiranda\nPeyton\nMariah\nValeria\nAlicia\nJada\nLeah\nAlejandra\nKatie\nDaisy\nDaniela\nGabrielle\nShelby\nAaliyah\nErin\nGianna\nJocelyn\nBrooklyn\nMariana\nPayton\nAdriana\nCharlotte\nLaura\nLydia\nCaitlin\nKathryn\nKendall\nAna\nAngel\nCassidy\nEllie\nEsmeralda\nKate\nRylee\nCatherine\nGabriela\nHope\nKaren\nMckenzie\nAlexandria\nGracie\nJayden\nLindsey\nMikayla\nMya\nCourtney\nKylee\nMckenna\nSadie\nAngelica\nDelaney\nKeira\nPiper\nTessa\nAliyah\nAnastasia\nAubrey\nBianca\nElena\nMargaret\nBreanna\nJosephine\nKyla\nLiliana\nLucy\nSerenity\nCrystal\nErica\nKennedy\nMakenna\nVeronica\nAddison\nBella\nBrenda\nBriana\nEva\nJillian\nKira\nSkylar\nAbby\nCheyenne\nEliana\nErika\nJasmin\nPerla\nAnnika\nKarla\nAmaya\nCarly\nDakota\nElise\nLizbeth\nSage\nCeleste\nJordyn\nKyra\nParis\nReagan\nAnahi\nCadence\nEleanor\nGuadalupe\nSabrina\nXimena\nCassandra\nClaudia\nJaqueline\nJazmin\nLilly\nMakenzie\nSidney\nBethany\nChristina\nClara\nDayanara\nFatima\nGiselle\nKelly\nLayla\nPaola\nStella\nSummer\nValerie\nYesenia\nCarmen\nCecilia\nCynthia\nJazmine\nJuliana\nJulianna\nKendra\nLindsay\nNatalia\nVivian\nAlison\nCaitlyn\nGenesis\nItzel\nJadyn\nLesly\nSkyler\nZoey\nAdrianna\nHaylee\nKarina\nMacy\nNadia\nTeagan\nAlana\nHayley\nIvy\nJaden\nKelsey\nKiana\nKiera\nMaggie\nNatasha\nNina\nAnnabelle\nAurora\nBrenna\nBrooklynn\nHanna\nJoanna\nKiara\nMalia\nNayeli\nAllie\nCamila\nHeather\nJanessa\nMallory\nRylie\nSavanna\nSerena\nTiffany\nArely\nAshlynn\nBridget\nBrittany\nChelsea\nDesiree\nElle\nIzabella\nJamie\nJimena\nJulissa\nLeilani\nMadeleine\nNancy\nReese\nRenee\nRose\nTara\nTaryn\nTatum\nAlayna\nCamille\nCarolina\nCristal\nDylan\nHolly\nIris\nKailey\nKaitlin\nKatrina\nKaya\nLexi\nReyna\nTalia\nAlaina\nAllyson\nAshleigh\nElisabeth\nEsperanza\nEstrella\nFiona\nJayda\nJulie\nKaylie\nKenna\nMarina\nMarisa\nMercedes\nMiriam\nMonica\nPhoebe\nRebekah\nRuth\nSavanah\nWendy\nAlena\nAmerica\nAnnie\nAyla\nBritney\nCameron\nCindy\nJanet\nJudith\nKatelynn\nKristen\nLizeth\nLucia\nPaulina\nAlissa\nAnika\nAraceli\nAshlee\nCharlize\nDaphne\nDayana\nGillian\nJaylene\nJessie\nJoseline\nLila\nLogan\nMadisyn\nMarlene\nMelody\nPriscilla\nRachael\nRaquel\nSandra\nSienna\nTeresa\nYareli\nYasmin\nCelia\nHalle\nKaia\nKathleen\nKaydence\nKayleigh\nMarisol\nMeghan\nMicaela\nMikaela\nRegan\nRowan\nSelena\nSkye\nTanya\nAinsley\nAngie\nAriel\nAthena\nCiara\nEden\nEliza\nEmilee\nGeorgia\nHadley\nJaelyn\nKadence\nKaley\nKamryn\nKara\nLluvia\nMaia\nMaritza\nMonique\nNoelle\nRyan\nRyleigh\nBrynn\nCamryn\nCierra\nHarmony\nHayden\nHeaven\nIsis\nJosie\nKaitlynn\nKarissa\nKyleigh\nLeila\nLesley\nLia\nLilliana\nMaddison\nMichaela\nPatricia\nSamara\nSimone\nTatiana\nViviana\nWhitney\nAdeline\nAlina\nAngelique\nAnnalise\nAnya\nApril\nAria\nBrisa\nCora\nDana\nDanika\nDenise\nEllen\nGwendolyn\nIsabela\nJazmyne\nJulianne\nKeely\nKristin\nLacey\nLaila\nLaisha\nLarissa\nLiberty\nMarie\nMarley\nMayra\nMeredith\nNataly\nNora\nNorah\nReina\nShannon\nStephany\nTyler\nAlanna\nAlma\nAnnabella\nAnne\nAnnette\nAsia\nAudra\nBrielle\nCatalina\nDaniella\nDeja\nDenisse\nDulce\nEdith\nElaina\nEmilia\nEmilie\nEmmalee\nFernanda\nGloria\nGreta\nHallie\nHarley\nJenifer\nJohanna\nJoy\nKassandra\nKiya\nLauryn\nLena\nLinda\nLitzy\nLorena\nMadisen\nParker\nRosa\nRyann\nSarai\nSasha\nTania\nTori\nTrista\nAbbigail\nAdrienne\nAileen\nAiyana\nAlice\nAntonia\nAracely\nAryanna\nAubree\nAverie\nCampbell\nCara\nCarla\nCarolyn\nDeborah\nEileen\nElliana\nElsa\nElyssa\nEmely\nEvelin\nGisselle\nHailee\nHaleigh\nHana\nHeidi\nIngrid\nIrene\nJaida\nJaiden\nJayla\nJoselyn\nJoslyn\nJustice\nKaelyn\nKassidy\nKenzie\nKiley\nLexie\nLilian\nLisa\nLucille\nNia\nPhoenix\nQuinn\nRaegan\nReilly\nRoselyn\nScarlett\nShea\nSkyla\nSydnee\nTiana\nTianna\nVanesa\nWillow\nAlexus\nAlize\nAnnabel\nBrissa\nBrittney\nBryanna\nBryn\nCallie\nCharlie\nChiara\nChristine\nDamaris\nDanna\nDelilah\nDesirae\nDominique\nEmerson\nEstefany\nEsther\nFrancesca\nGenevieve\nHarper\nHaylie\nHelen\nIliana\nJaedyn\nJaidyn\nKailee\nKaiya\nKaylynn\nKeara\nKendal\nKirsten\nKya\nLeticia\nLina\nMacey\nMadelynn\nMadyson\nMaleah\nMarlen\nMckayla\nMelany\nPamela\nRhiannon\nRubi\nShania\nTamara\nVirginia\nXitlaly\nYadira\nYasmine\nZoie\nAddyson\nAlannah\nAlisha\nAlly\nAlysa\nAnaya\nAshly\nAyanna\nBaylee\nBelen\nBelle\nBrianne\nCarissa\nCarlie\nCasey\nClare\nDiamond\nElisa\nEve\nFlor\nHailie\nHaven\nHazel\nIndia\nJanae\nJolene\nKaela\nKarlie\nKayden\nKeeley\nKristina\nKrystal\nLola\nLuz\nLyric\nMakena\nMarilyn\nMarin\nMiah\nMollie\nNoemi\nPaloma\nPresley\nRachelle\nRaven\nRebeca\nReece\nShayna\nSheridan\nShyla\nThalia\nTia\nViolet\nYahaira\nYazmin\nAimee\nAlessandra\nAlex\nAlivia\nAmelie\nAmira\nAnabel\nAnalisa\nArwen\nBailee\nCailey\nCaley\nCali\nCharlee\nCherish\nCristina\nDeanna\nDestinee\nDevyn\nEricka\nGalilea\nIreland\nJane\nJanelle\nJayleen\nJaylyn\nJazlyn\nJoana\nJolie\nKarlee\nKatharine\nKaylin\nKelli\nKelsie\nKori\nKristiana\nLaney\nLea\nLeanna\nLillie\nLondon\nLourdes\nMadilynn\nMagdalena\nMarianna\nMariela\nMina\nMireya\nMonserrat\nNoelia\nNyah\nSawyer\nSharon\nShayla\nShaylee\nShyanne\nSilvia\nTabitha\nTayler\nTess\nThea\nVianney\nYajaira\nAbril\nAda\nAdilene\nAmara\nAmariah\nAmaris\nAmya\nAnnalee\nAreli\nArlette\nArly\nAyana\nBrookelyn\nCalista\nCarley\nCharli\nCitlali\nCitlaly\nClarissa\nColleen\nDanae\nDarlene\nDestiney\nDevon\nDianna\nDonna\nElianna\nElysia\nEmelia\nEssence\nEstella\nEstephanie\nGisel\nHunter\nJaime\nJaquelin\nJasmyn\nJazmyn\nJeanette\nJenessa\nJohana\nJuliette\nJustina\nKarime\nKarly\nKaryme\nKasandra\nKaterina\nKatheryn\nKathy\nKatia\nKatlyn\nKaycee\nKeila\nKenia\nKinsey\nKrista\nLaci\nLana\nLaurel\nLesli\nLili\nLuciana\nLuisa\nMacie\nMara\nMaribel\nMartha\nMaxine\nMeadow\nMichel\nMonika\nNoelani\nOlga\nRosemary\nSavana\nShaelyn\nShaylyn\nSonia\nStevie\nSusan\nSusana\nSusanna\nSydnie\nSylvia\nTegan\nTracy\nWynter\nXitlali\nZaira\nAbrianna\nAddie\nAidan\nAlaura\nAlea\nAlexander\nAli\nAliana\nAlisa\nAliya\nAlora\nAlysia\nAlyson\nAmani\nAmari\nAmiah\nAnabelle\nAngeline\nAnn\nAnnamarie\nAnneliese\nAriadna\nAryana\nAshtyn\nAspyn\nAubrianna\nAubrie\nAvril\nAylin\nBarbara\nBeatriz\nBlanca\nBrandi\nBritany\nCaitlynn\nCarina\nCarter\nChantel\nChase\nClarisa\nCloe\nDarby\nDayna\nDelanie\nDelia\nDiya\nElissa\nElyse\nEma\nEmber\nEmerald\nEryn\nFinley\nFrances\nGia\nGina\nGwyneth\nHali\nHolland\nImani\nIsabell\nJacey\nJacklyn\nJacquelyn\nJaelynn\nJaliyah\nJaneth\nJayde\nJaylynn\nJenny\nJersey\nJewel\nJoann\nJuliet\nJulisa\nKacey\nKacie\nKaila\nKailani\nKali\nKalia\nKaliyah\nKallie\nKarely\nKarli\nKatana\nKatarina\nKaty\nKeanna\nKenya\nKianna\nKiarra\nKiersten\nKristine\nKrysta\nLacy\nLailah\nLainey\nLexy\nLiana\nLilia\nLilianna\nLilyan\nLilyana\nLisette\nLizette\nMadalyn\nMadilyn\nMailyn\nMaren\nMarguerite\nMaryn\nMattie\nMaura\nMelina\nMillie\nMoriah\nMyra\nNatali\nNevaeha\nNicolette\nNikki\nNoel\nOceana\nPaisley\nPatience\nPearl\nRaina\nRhianna\nRobyn\nRosalinda\nRoxanna\nRyanne\nRyley\nSarahi\nSelah\nSelina\nShae\nShaina\nShaylynn\nShyann\nSunshine\nSydni\nTaya\nTehya\nTheresa\nTyra\nWilla\nYarely\nYessenia\nZara\nEmily\nEmma\nMadison\nAbigail\nIsabella\nOlivia\nHannah\nSamantha\nAshley\nElla\nSophia\nElizabeth\nAva\nGrace\nMia\nAlexis\nLauren\nSarah\nHailey\nTaylor\nAnna\nNatalie\nSydney\nChloe\nAlyssa\nNevaeh\nJasmine\nAvery\nMorgan\nVictoria\nLily\nAlexandra\nZoe\nMaria\nBrooke\nJessica\nKatherine\nMegan\nRachel\nBrianna\nJennifer\nEvelyn\nJulia\nKaitlyn\nSavannah\nAngelina\nKayla\nTrinity\nLillian\nPaige\nRiley\nAlexa\nAllison\nKaylee\nMadeline\nDestiny\nFaith\nHaley\nJordan\nMariah\nGabriella\nIsabel\nKimberly\nMackenzie\nKylie\nSierra\nMaya\nKatelyn\nSofia\nAlondra\nBrooklyn\nAndrea\nBailey\nLeslie\nIsabelle\nNicole\nStephanie\nClaire\nMichelle\nRebecca\nArianna\nAudrey\nAutumn\nLeah\nMakayla\nVanessa\nAmelia\nAlicia\nDiana\nJenna\nAaliyah\nAshlyn\nJocelyn\nMarissa\nGabrielle\nMolly\nValeria\nJade\nRylee\nAlexia\nAmber\nAmy\nCharlotte\nNaomi\nRuby\nSara\nSophie\nAddison\nCaroline\nKatie\nAngelica\nMariana\nPeyton\nAmanda\nCassidy\nDaniela\nMary\nJazmin\nKate\nAriana\nDanielle\nGabriela\nTessa\nKathryn\nMakenna\nMargaret\nNatalia\nAna\nMelissa\nJacqueline\nKylee\nLiliana\nMiranda\nErin\nEva\nGianna\nLucy\nMadelyn\nMikayla\nReagan\nSerenity\nAlexandria\nHope\nPayton\nShelby\nAdriana\nAngela\nDelaney\nEsmeralda\nFatima\nKarla\nAnnabelle\nBella\nKendall\nMakenzie\nSkylar\nCaitlyn\nCatherine\nElise\nGuadalupe\nMelanie\nAngel\nAubrey\nBianca\nEstrella\nGracie\nKaren\nKyra\nLindsey\nDaisy\nJillian\nKeira\nLaura\nLilly\nLydia\nMya\nAlana\nDakota\nJordyn\nKyla\nMckenna\nTatum\nZoey\nKennedy\nMckenzie\nPiper\nAlejandra\nAspen\nElena\nEllie\nKiara\nLayla\nNayeli\nBrenda\nCrystal\nJada\nJuliana\nSadie\nSavanna\nXimena\nAdrianna\nAliyah\nCamila\nCheyenne\nCiara\nGenesis\nGiselle\nReese\nVivian\nAbby\nBreanna\nCassandra\nCynthia\nIvy\nJadyn\nNatasha\nAnastasia\nJasmin\nSabrina\nSelena\nAnahi\nAnnika\nAshlee\nBriana\nErika\nKarina\nNadia\nStella\nSummer\nCadence\nDayanara\nIzabella\nJayden\nJosephine\nKira\nVeronica\nViolet\nAmerica\nAriel\nCarmen\nChelsea\nChristina\nClara\nErica\nHaylee\nLizbeth\nMonica\nSage\nSienna\nAlaina\nAlison\nArely\nBrooklynn\nCourtney\nHayden\nHeidi\nJaden\nKelsey\nPaola\nAllie\nBrenna\nBrittany\nCaitlin\nDulce\nEliana\nEmilia\nNina\nTeagan\nAmaya\nEmerson\nHanna\nHayley\nJamie\nMacy\nRose\nAllyson\nBethany\nCamryn\nCeleste\nGenevieve\nJazmine\nJimena\nKiana\nLexi\nShannon\nTaryn\nValerie\nEliza\nItzel\nKatrina\nMarisol\nRebekah\nRuth\nScarlett\nWendy\nApril\nAthena\nEden\nEmely\nHelen\nHolly\nLesly\nLindsay\nMadeleine\nMeghan\nRachael\nSidney\nSkye\nTara\nAshlynn\nCarolina\nCindy\nEleanor\nFernanda\nFiona\nJulie\nKaitlin\nMarisa\nPaulina\nSasha\nYesenia\nCameron\nCora\nEmilee\nHazel\nJoselyn\nJosie\nJulianna\nKara\nLeilani\nLucia\nRowan\nRubi\nSamara\nViviana\nAileen\nAylin\nCecilia\nDanika\nHeather\nJaelyn\nJaqueline\nKailey\nKaydence\nLaila\nMaggie\nMelody\nMercedes\nPerla\nSkyler\nTiffany\nYasmin\nAdeline\nAlma\nBridget\nGeorgia\nMichaela\nNataly\nRylie\nSandra\nSarai\nShayla\nTori\nAlina\nAlyson\nAurora\nCallie\nDayana\nDenise\nDominique\nElle\nHarper\nJanessa\nJoanna\nJoslyn\nKiera\nLauryn\nLila\nLogan\nMallory\nTania\nYadira\nAdelaide\nAlice\nAlissa\nAnya\nAshleigh\nAyla\nBrielle\nCelia\nDana\nEllen\nEsperanza\nHadley\nJenny\nJulissa\nKaitlynn\nKassandra\nKelly\nKenna\nMarley\nMiriam\nNancy\nNora\nNorah\nPriscilla\nQuinn\nRosa\nSkyla\nTalia\nAlanna\nAlivia\nAnn\nAubrie\nCamille\nElaine\nEsther\nHarmony\nJohanna\nJustice\nKadence\nKamryn\nKatelynn\nLarissa\nLinda\nMaddison\nMakena\nMonique\nMonserrat\nRegan\nRyann\nShea\nTess\nTiana\nYareli\nAbril\nAnika\nAnneliese\nAnnie\nCarlie\nDanna\nEve\nGillian\nGreta\nHalle\nHeaven\nIris\nIsis\nJayda\nJayla\nJaylene\nKaia\nKailee\nKassidy\nKaylie\nKendra\nKiley\nLuz\nMagdalena\nMaia\nMalia\nMarie\nNia\nNoelle\nPamela\nPresley\nRayna\nReyna\nSylvia\nTatiana\nWillow\nAlayna\nAmara\nAniyah\nAnne\nArabella\nBaylee\nBrynn\nCampbell\nCharlee\nClaudia\nDanica\nEileen\nFelicity\nHailee\nHaleigh\nHana\nHelena\nIsabela\nKaelyn\nKaiya\nKaya\nKayleigh\nKiersten\nKirsten\nKristen\nLena\nLesley\nLitzy\nLucille\nMadalyn\nMadyson\nMaribel\nMaritza\nMelany\nMeredith\nNatalya\nParis\nParker\nPhoebe\nTabitha\nVirginia\nAbigayle\nAinsley\nAlessandra\nAliya\nAnnalise\nAntonia\nAraceli\nAubree\nBryanna\nCali\nCatalina\nCierra\nClarissa\nDamaris\nEdith\nElisabeth\nElsa\nEvelin\nGwendolyn\nIngrid\nJaiden\nJaidyn\nJanet\nJudith\nKailyn\nKali\nKarime\nKarlie\nKayli\nKenzie\nKyleigh\nLiberty\nLola\nLorena\nMarina\nMarlene\nMeagan\nMireya\nNatalee\nNoemi\nPenelope\nRaegan\nRaquel\nRaven\nRenee\nRyley\nStacy\nSydnee\nAbbigail\nAlena\nAnabel\nCarly\nCarolyn\nCasandra\nCasey\nDestinee\nEmerald\nFrancesca\nGiovanna\nGisselle\nIzabel\nJacquelyn\nJane\nJanelle\nJaquelin\nJessie\nJolette\nJustine\nKacey\nKarli\nKathleen\nKayley\nKendal\nKenya\nLilian\nLillie\nMacey\nMadelynn\nMarin\nNaydelin\nNoelia\nPatricia\nRaina\nReece\nRyleigh\nSarahi\nShania\nSharon\nSherlyn\nSonia\nStephany\nTamara\nThalia\nValentina\nYoselin\nAda\nAimee\nAleah\nAlexus\nAlisha\nAmina\nAndie\nAngelique\nAngie\nAreli\nAria\nArleth\nAudra\nAyanna\nBelle\nBrandy\nBrisa\nCaley\nCarla\nCarley\nCristal\nDeanna\nElisa\nElisha\nElsie\nFinley\nFrida\nGina\nGraciela\nHaven\nHaylie\nIliana\nJaelynn\nJanae\nJaylee\nJenifer\nJoseline\nKaila\nKaleigh\nKaris\nKatarina\nKaylin\nKristina\nLainey\nLana\nLesli\nLeticia\nLilia\nMadisyn\nMariela\nMikaela\nMira\nMollie\nMyra\nNathalie\nNeveah\nPaloma\nQuincy\nRaelynn\nSawyer\nSerena\nTegan\nTrista\nXitlaly\nYazmin\nYuridia\nAbbie\nAbriana\nAdelyn\nAdilene\nAiden\nAlannah\nAlia\nAliah\nAliza\nAlize\nAmiyah\nArlette\nAshly\nAvalon\nAverie\nAyana\nBarbara\nCecelia\nCharley\nCoral\nCorinne\nDanae\nDaniella\nDaphne\nDelilah\nDevyn\nDylan\nElianna\nElliana\nElora\nEmilie\nEstefania\nGia\nGretchen\nHallie\nHunter\nIrene\nJacey\nJackeline\nJamison\nJasmyn\nJaycie\nKaci\nKaley\nKaylah\nKianna\nKristin\nKrystal\nLeila\nLiana\nLilliana\nLillianna\nLivia\nLondon\nLucero\nLyric\nMaci\nMadilyn\nMaren\nMattie\nMelina\nMicaela\nMoriah\nNichole\nNya\nPriscila\nRaelyn\nRhiannon\nRoselyn\nRyanne\nSavanah\nSimone\nStacey\nTeresa\nTheresa\nVianey\nXitlali\nYahaira\nYasmine\nYvonne\nZoie\nAbbey\nAdelina\nAdison\nAida\nAliana\nAlly\nAlora\nAmaia\nAnaya\nAnja\nAnnabella\nAnnette\nAracely\nAriah\nArielle\nAsha\nAsia\nAya\nBailee\nBernadette\nBreana\nBrinley\nBritney\nBrittney\nCayla\nCharlize\nCheyanne\nChristine\nCitlali\nCitlaly\nClare\nColette\nDania\nDeisy\nDesiree\nDonna\nElaina\nElyssa\nEmber\nEmmy\nEssence\nEstefani\nGalilea\nGiana\nGladys\nGloria\nHarley\nImani\nJaida\nJaneth\nJanie\nJaya\nJaylynn\nJazlyn\nJazlynn\nJazmyn\nJazmyne\nJoana\nJohana\nJolie\nJorja\nJoselin\nJoslynn\nJoy\nJuliet\nJuliette\nKarol\nKatharine\nKathy\nKayleen\nKeeley\nKeely\nKelsi\nKenia\nKlara\nKori\nKrista\nKyrah\nLaci\nLaurel\nLea\nLeia\nLizeth\nLorelei\nLyndsey\nMacie\nMadalynn\nMagaly\nMandy\nMara\nMarlee\nMarlen\nMartha\nMason\nMckayla\nMeaghan\nMyah\nNathaly\nPayten\nPhoenix\nRegina\nReina\nRhianna\nRoxana\nRoxanne\nRyan\nSalma\nShiloh\nShirley\nShyla\nSiena\nSky\nSolana\nStevie\nSusan\nTaya\nTerra\nTianna\nTyler\nTyra\nUnique\nViola\nViridiana\nWhitney\nAbagail\nAddie\nAdelynn\nAislynn\nAlea\nAlex\nAmelie\nAmira\nAnalicia\nAnastacia\nAniya\nAnnaliese\nArden\nAshanti\nAubrianna\nAurelia\nAustin\nAveri\nAyden\nAyleen\nAzalea\nBelen\nBerenice\nBianka\nBlanca\nBonnie\nBrissa\nBrook\nCamden\nCara\nCarli\nCarol\nChase\nConstance\nCristina\nDaeja\nDafne\nDarlene\nDenisse\nDora\nEllison\nElyse\nElysia\nEmalee\nEmmalyn\nEstella\nFelicia\nFlor\nFrances\nFrankie\nFreya\nGemma\nGracelyn\nGrayce\nIndia\nIreland\nIsela\nIsha\nIyana\nIzabelle\nJaclyn\nJaeda\nJanaya\nJayna\nJeanette\nJoey\nJourney\nJozlyn\nJulianne\nJulieta\nKaidence\nKallie\nKarlee\nKarmen\nKaterina\nKatheryn\nKeyla\nKierra\nLacey\nLacie\nLaisha\nLaney\nLara\nLeanna\nLexus\nLia\nLilianna\nLilli\nLilyana\nLisa\nLiza\nLizet\nLizette\nLluvia\nLuna\nLupita\nMackenna\nMadigan\nMadilynn\nMadisen\nMargot\nMariam\nMayra\nMayte\nMeadow\nMiah\nMila\nMiya\nMontana\nMontserrat\nNathalia\nNavaeh\nNeida\nNoelani\nNyla\nPatience\nPearl\nPetra\nPrecious\nRachelle\nReilly\nRileigh\nRory\nRosemary\nSahara\nSelene\nShae\nShyanne\nSloan\nSonya\nStar\nTanya\nTayler\nTia\nToni\nTrisha\nVicky\nWren\nXiomara\nYaritza\nYessenia\nYolanda\nYuliana\nYulisa\nZariah\nIsabella\nEmily\nEmma\nHannah\nAbigail\nMadison\nSophia\nAva\nOlivia\nSamantha\nGrace\nAshley\nMia\nElizabeth\nElla\nNevaeh\nAddison\nAlexis\nNatalie\nAvery\nChloe\nTaylor\nAlyssa\nSarah\nAnna\nLily\nLauren\nZoe\nHailey\nAlexandra\nSydney\nMaria\nAlexa\nSavannah\nMaya\nKatherine\nVictoria\nMorgan\nBrooke\nBrianna\nEvelyn\nJulia\nKayla\nJessica\nJasmine\nLillian\nIsabelle\nBrooklyn\nKimberly\nKaylee\nJennifer\nRachel\nValeria\nAudrey\nAngelina\nRiley\nAmelia\nGabriella\nIsabel\nJade\nKylie\nMariah\nMegan\nMackenzie\nPaige\nSofia\nTrinity\nArianna\nDestiny\nMadeline\nVanessa\nAndrea\nFaith\nJacqueline\nKatelyn\nKeira\nAllison\nSara\nClaire\nAriana\nJordan\nMakayla\nMichelle\nNatalia\nHaley\nJocelyn\nAutumn\nCharlotte\nKaitlyn\nLeah\nAshlyn\nLucy\nMary\nEva\nStephanie\nBailey\nLeslie\nMelanie\nNicole\nSierra\nGabrielle\nKate\nRebecca\nSerenity\nAdriana\nCaroline\nMya\nAubrey\nDaniela\nEllie\nNaomi\nRuby\nAspen\nCassidy\nGianna\nPeyton\nValerie\nAaliyah\nAlicia\nJazmin\nKatie\nLilly\nMckenna\nSadie\nSophie\nAmy\nDaisy\nJenna\nMelissa\nPayton\nShelby\nCadence\nKyra\nMolly\nSienna\nStella\nKaren\nLayla\nLiliana\nZoey\nAmber\nDanielle\nGabriela\nKathryn\nMariana\nMarissa\nPiper\nBella\nDelaney\nLindsey\nMikayla\nReese\nAlondra\nAmanda\nAngela\nCheyenne\nJosephine\nKylee\nMadelyn\nMargaret\nBrooklynn\nEmerson\nErin\nJazmine\nReagan\nJayla\nRylee\nAlejandra\nAlexandria\nCamila\nGracie\nHope\nKennedy\nAnnabelle\nEsmeralda\nKendall\nLydia\nMiranda\nJordyn\nAlexia\nAnastasia\nAngel\nBreanna\nDiana\nElise\nKira\nMakenna\nTatum\nAna\nBriana\nCatherine\nClara\nElena\nAlana\nAngelica\nEleanor\nIzabella\nJuliana\nNora\nAyla\nCaitlin\nCarmen\nMacy\nNadia\nTessa\nVeronica\nAnnika\nCaitlyn\nCassandra\nCourtney\nJada\nKyla\nCecilia\nJillian\nLaura\nMonica\nShayla\nSkylar\nChristina\nFatima\nJoanna\nLaila\nLesly\nMckenzie\nCynthia\nDakota\nDanica\nKailey\nPaola\nRose\nViolet\nAdrianna\nAmaya\nAshlynn\nCrystal\nEliana\nEstrella\nGiselle\nItzel\nJamie\nJayden\nJulianna\nKarina\nLila\nMadeleine\nSabrina\nSavanna\nAllie\nAnahi\nJaqueline\nSkyler\nBianca\nGenevieve\nHeidi\nJasmin\nKiara\nMaggie\nMarisol\nSummer\nVivian\nAbby\nAnne\nCamryn\nGuadalupe\nJulissa\nLeila\nMakenzie\nPerla\nRebekah\nYazmin\nAinsley\nAmerica\nAnya\nArely\nBethany\nCindy\nCora\nDulce\nEden\nFiona\nGeorgia\nHarper\nHayley\nIvy\nKarla\nRachael\nSage\nTeagan\nAlessandra\nAliyah\nBrenda\nHanna\nKiana\nKiera\nLilliana\nMelody\nNatasha\nPatricia\nQuinn\nRyleigh\nSidney\nTaryn\nXimena\nYadira\nYesenia\nDanika\nDayanara\nEmely\nEmilia\nFernanda\nGenesis\nHaylee\nJaden\nKaylie\nKelsey\nKendra\nLauryn\nNina\nSasha\nSelena\nTania\nAlice\nAnnalise\nAshlee\nAthena\nAurora\nBrynn\nElle\nErika\nHadley\nHayden\nJanessa\nLola\nSherlyn\nTiffany\nAdeline\nAlison\nAlissa\nAriel\nCallie\nDana\nDanna\nErica\nJadyn\nJulie\nKaitlin\nKathleen\nLindsay\nLucia\nMallory\nMarlene\nMeghan\nScarlett\nAlina\nBrenna\nBrisa\nCameron\nCarly\nEsperanza\nHaylie\nHazel\nIris\nIsis\nKassandra\nKelly\nLeilani\nPresley\nReyna\nRylie\nAnika\nApril\nBridget\nEvelin\nHelen\nHolly\nJimena\nJoselyn\nLexi\nLilian\nLizbeth\nMalia\nNayeli\nRyan\nShannon\nSkye\nTatiana\nWillow\nAraceli\nDenise\nElliana\nFrida\nHeather\nHelena\nJaiden\nJayda\nJohanna\nJosie\nKadence\nKassidy\nKatelynn\nKatrina\nLinda\nMercedes\nMichaela\nPaulina\nPenelope\nPhoebe\nRaven\nSamara\nAlaina\nAlivia\nAllyson\nAlma\nAnabelle\nCamille\nCasey\nCiara\nDaniella\nEliza\nHeaven\nJoslyn\nKaelyn\nKara\nMadisyn\nMarilyn\nMeredith\nMikaela\nMiriam\nNyla\nRuth\nSandra\nSarai\nTiana\nViviana\nWendy\nAdelyn\nAlayna\nAnnabel\nArabella\nAsia\nCarla\nCarrie\nEmilee\nHarmony\nHaven\nIngrid\nJazlyn\nJazmyn\nJustice\nLuna\nMaddison\nMadilyn\nMaribel\nMarie\nMarisa\nMarley\nNeveah\nNoelle\nPaloma\nRowan\nRyann\nTalia\nTeresa\nTess\nYasmin\nYoselin\nAiyana\nAlena\nBraelyn\nBrittany\nCarolina\nCeleste\nChelsea\nCierra\nClare\nDesiree\nEdith\nElaina\nEllen\nIsabela\nJoselin\nJoy\nKamryn\nKayleigh\nKristina\nLacey\nMadalyn\nMadyson\nMaia\nMakena\nMaritza\nMila\nNancy\nPamela\nRayna\nReece\nTianna\nBrielle\nCampbell\nDiamond\nElisabeth\nEmilie\nEsther\nGretchen\nHallie\nJaelyn\nJaidyn\nKristin\nKyleigh\nLilia\nLillie\nLucille\nMarina\nMireya\nMonique\nRubi\nSimone\nTaya\nYareli\nZoie\nAnais\nAnnie\nBryanna\nCarissa\nCelia\nCharlize\nClaudia\nDayana\nDelilah\nDonna\nEmery\nEmmalee\nEvangeline\nEve\nFinley\nGemma\nGloria\nJane\nJanelle\nJanet\nJessie\nJudith\nKailee\nKaya\nKenna\nKiley\nKinsey\nLana\nLaurel\nLina\nLondon\nLuz\nMaci\nMacie\nMayra\nMckayla\nMira\nMollie\nReina\nSariah\nSelah\nSerena\nSkyla\nSonia\nSoraya\nValentina\nWhitney\nYaretzi\nAbbigail\nAbrianna\nAlia\nAlize\nAmara\nAngeline\nAnnelise\nAryana\nAryanna\nAshly\nAshton\nAubree\nAylin\nBaylee\nBelen\nBryn\nCamilla\nCatalina\nCharlie\nClarissa\nDeanna\nDeja\nDylan\nElisa\nFelicity\nFrancesca\nGiovanna\nGraciela\nHalle\nIsabell\nJolene\nKaia\nKaiya\nKali\nKarissa\nKatharine\nKaydence\nKaylin\nKelsie\nKenzie\nKirsten\nLesley\nLeticia\nLibby\nLillianna\nLilyana\nLisa\nLorena\nLyla\nMalea\nMarin\nMoriah\nMyla\nNatalee\nNataly\nNoelia\nNoemi\nNorah\nPriscilla\nQuincy\nRaquel\nRenee\nRhiannon\nRosalie\nSarahi\nSavanah\nSharon\nSylvia\nYamileth\nAlexus\nAliya\nAmya\nAnalise\nAnastacia\nAnaya\nAracely\nAria\nAriah\nAverie\nBarbara\nBethzy\nCailyn\nCaley\nCarlie\nCharli\nChristine\nCitlaly\nCloe\nCoral\nDesirae\nDestinee\nDevin\nDominique\nEbony\nGia\nGillian\nGrecia\nHarley\nJaelynn\nJanae\nJaylee\nJaylynn\nJohana\nJuliet\nKailyn\nKaitlynn\nKarely\nKaylyn\nKenya\nKya\nLesli\nLluvia\nLogan\nLorelei\nMae\nMaeve\nMattea\nMeadow\nMelany\nMiah\nNathaly\nParis\nPriscila\nRaegan\nRegan\nRyley\nSaige\nSavana\nShania\nShaylee\nShea\nStephany\nTara\nThalia\nTori\nTyler\nVirginia\nWren\nYarely\nYaritza\nYasmine\nAbril\nAdamaris\nAddyson\nAisha\nAliza\nAlysia\nAlyson\nAmani\nAnabella\nAnissa\nAniya\nAnnabella\nAnnette\nAshleigh\nAubrie\nBailee\nBritney\nCambria\nCara\nCarley\nCharlene\nCharley\nCherish\nColette\nCristal\nCristina\nDanae\nDarlene\nDayanna\nDenisse\nDevyn\nEllery\nElly\nElsa\nElysia\nFrances\nGisell\nGwyneth\nHailee\nHana\nIvory\nIzabelle\nJaquelin\nJaylene\nJazlynn\nJenny\nJoseline\nJustine\nKarli\nKarma\nKaylynn\nKenia\nKianna\nKierra\nLacie\nLacy\nLaney\nLea\nLeanna\nLena\nLia\nLilianna\nLilli\nLivia\nMackenna\nMadelynn\nMartha\nNichole\nNola\nPaisley\nParker\nPaula\nRaelynn\nRayne\nRiver\nRocio\nSawyer\nShreya\nShyanne\nSiena\nSonja\nSonya\nStacy\nSusan\nSydnee\nTabitha\nTayla\nTehya\nTrista\nYaretzy\nYuliana\nYuridia\nAbriana\nAdamari\nAddie\nAddisyn\nAdison\nAidan\nAileen\nAlanna\nAlea\nAleah\nAlex\nAmari\nAnalicia\nAnja\nAraya\nAriella\nAvalon\nAviana\nBetsy\nBonnie\nBrandy\nBreana\nBriseyda\nBrook\nBrookelyn\nCarlee\nCasandra\nCaylee\nChelsey\nCiera\nCitlali\nDamaris\nDavina\nDayra\nElaine\nEryn\nFelicia\nFlor\nGiana\nGracelynn\nGreta\nGwendolyn\nIndia\nIreland\nIzabel\nJanaya\nJanette\nJaya\nJayde\nJaylah\nJaylin\nJesse\nJuliette\nKaela\nKarlee\nKatarina\nKeely\nKrystal\nLarissa\nLeia\nLeilany\nLexie\nLiana\nLilah\nLinnea\nLizeth\nLyric\nMaren\nMariela\nMarlee\nMeaghan\nMelia\nMiracle\nMiya\nMyah\nNatali\nNia\nNoel\nNorma\nOpal\nPayten\nPrecious\nRaina\nRaya\nRemy\nRian\nRosa\nRosie\nRoxana\nSalma\nSheyla\nTea\nThea\nTia\nVianey\nYahaira\nYoselyn\nAbagail\nAda\nAdrienne\nAhtziri\nAidyn\nAimee\nAlani\nAliana\nAlliyah\nAlly\nAmira\nAnabel\nAnanya\nAngelique\nAngelyna\nAngie\nAniah\nAnisa\nAnn\nAnnalyse\nAnneliese\nAntonia\nAreli\nArielle\nArwen\nAspyn\nAstrid\nAubrianna\nAubrielle\nAyana\nAyleen\nBerenice\nBerkley\nBeth\nBriseida\nBrookelynn\nBrynna\nCarina\nCarol\nChanelle\nChantal\nCharlee\nChase\nCheyanne\nCollette\nCorinne\nCosette\nCyan\nDalila\nDestiney\nElana\nElianna\nElisha\nEmber\nEmersyn\nEmili\nEmmerson\nEstefani\nEstefania\nEstella\nFarrah\nGema\nGiada\nGina\nGladys\nGracey\nHilary\nHillary\nIdaly\nIrene\nIsela\nJacey\nJackeline\nJaime\nJalissa\nJasmyn\nJaycee\nJaylyn\nJayna\nJewel\nJill\nJoana\nKaida\nKailani\nKalie\nKallie\nKarolina\nKasandra\nKatlyn\nKaty\nKatya\nKaycee\nKaylen\nKayley\nKinley\nKristen\nLainey\nLara\nLeanne\nLeyla\nLeyna\nLiberty\nLidia\nLilyanna\nLitzy\nLizette\nLucero\nLuci\nMadalynn\nMadilynn\nMagdalena\nMaisy\nMakaila\nMarcela\nMargo\nMari\nMarian\nMarianna\nMarianne\nMeagan\nMelina\nMina\nMoira\nNadine\nNalani\nNoa\nNohemi\nPeighton\nPhoenix\nPilar\nRegina\nRiana\nRita\nRobyn\nRory\nRoxanna\nRylan\nRylyn\nSedona\nSelina\nShyla\nSloane\nSora\nStacey\nStar\nSydnie\nTamia\nTatianna\nWinter\nYadhira\nYamilet\nYessica\nYolanda\nYoseline\nZariah\nZuri\nIsabella\nSophia\nEmma\nOlivia\nAbigail\nEmily\nAddison\nMadison\nAva\nHannah\nElizabeth\nElla\nSamantha\nGrace\nAshley\nTaylor\nNatalie\nAlyssa\nMia\nLily\nChloe\nSarah\nAvery\nAlexis\nNevaeh\nAnna\nHailey\nSydney\nAlexa\nMaya\nBrianna\nEvelyn\nLauren\nJasmine\nBrooke\nVictoria\nZoe\nJessica\nLillian\nKaylee\nBrooklyn\nAngelina\nAudrey\nAlexandra\nSavannah\nSofia\nKatherine\nRiley\nAllison\nMorgan\nIsabelle\nKaitlyn\nKylie\nGabriella\nMaria\nAmelia\nRachel\nSophie\nMadeline\nBailey\nFaith\nJulia\nJocelyn\nAubrey\nClaire\nMakayla\nValeria\nKimberly\nMariah\nIsabel\nPaige\nJade\nKayla\nNaomi\nRuby\nDestiny\nAriana\nMegan\nSadie\nTrinity\nAaliyah\nAndrea\nJordan\nArianna\nLucy\nVanessa\nMichelle\nJennifer\nMolly\nNicole\nSerenity\nAshlyn\nAutumn\nGabrielle\nGianna\nMackenzie\nPeyton\nLeah\nLiliana\nDaniela\nLayla\nStephanie\nEva\nMya\nReese\nCamila\nCharlotte\nJacqueline\nKeira\nCaroline\nHaley\nAdriana\nGracie\nAspen\nKatelyn\nMadelyn\nSienna\nSierra\nMelanie\nViolet\nZoey\nDelaney\nDiana\nJayden\nLeslie\nLydia\nLilly\nGabriela\nKate\nSara\nAlexandria\nAlicia\nAmy\nGenesis\nHayden\nNatalia\nReagan\nTessa\nIzabella\nJenna\nKatie\nEllie\nHope\nAlondra\nRylee\nAmanda\nBriana\nAmber\nDanielle\nEliana\nEmerson\nJordyn\nKendall\nMary\nMckenna\nDakota\nIvy\nJoselyn\nKarla\nMariana\nScarlett\nDaisy\nErin\nMakenna\nMiranda\nAlexia\nAmaya\nBella\nCaitlyn\nGiselle\nKathryn\nMargaret\nClara\nEleanor\nKira\nKyla\nAna\nAngel\nAnnabelle\nCassidy\nKennedy\nPayton\nStella\nAlana\nAnnika\nBrooklynn\nCassandra\nCatherine\nCheyenne\nEden\nElise\nErika\nKylee\nPiper\nSavanna\nShelby\nAngela\nJada\nJazmin\nJosephine\nRebecca\nAddyson\nDanica\nHazel\nMarissa\nAngelica\nCaitlin\nDulce\nHaylee\nLaila\nLeila\nLindsey\nSkylar\nTatum\nAnahi\nKiera\nAdrianna\nAshlynn\nAyla\nCarmen\nElle\nAlivia\nBreanna\nElena\nFatima\nKyra\nLila\nLizbeth\nTeagan\nChristina\nCora\nEstrella\nItzel\nJuliana\nKiara\nMakenzie\nMalia\nMckenzie\nViviana\nAlejandra\nAlina\nAliyah\nEsmeralda\nGeorgia\nJamie\nMelissa\nMikayla\nNina\nShayla\nSummer\nApril\nAthena\nCadence\nCrystal\nGenevieve\nHarper\nIris\nJasmin\nJazmine\nJillian\nKarina\nKaydence\nLaura\nMacy\nNadia\nPerla\nVeronica\nAinsley\nAlayna\nAnastasia\nHolly\nKendra\nLindsay\nLola\nMadeleine\nMiley\nNayeli\nRuth\nRylie\nVivian\nCamille\nCecilia\nDelilah\nKaren\nMaggie\nMallory\nNora\nRose\nRowan\nTaryn\nValerie\nAllie\nAnya\nBianca\nBrynn\nCourtney\nDaniella\nDanika\nEmilee\nMichaela\nMonica\nSiena\nTalia\nXimena\nAnika\nAriel\nBethany\nBrenna\nCarly\nDana\nFiona\nHayley\nJaiden\nJaidyn\nJayla\nJulie\nLexi\nLucia\nMaddison\nMelany\nNatasha\nQuinn\nAdelaide\nArely\nCallie\nDayanara\nGuadalupe\nHadley\nJadyn\nJaqueline\nJulissa\nKailey\nKaylie\nMiriam\nPaola\nPresley\nRebekah\nRyann\nSarai\nYasmin\nAlessandra\nAurora\nBridget\nBrisa\nChelsea\nEliza\nHelen\nIsis\nJanessa\nJulianna\nKelsey\nLeilani\nLia\nNancy\nRachael\nSabrina\nSelena\nWillow\nAbby\nAlice\nAlison\nAlissa\nAubree\nCiara\nElaina\nEmely\nHarmony\nHeather\nJaden\nJaelyn\nJoseline\nKatelynn\nKelly\nLacey\nLilliana\nMadilyn\nMercedes\nPenelope\nRyan\nSage\nSamara\nTiffany\nAbril\nAdeline\nCameron\nErica\nEvangeline\nHanna\nHaylie\nMeredith\nNoelle\nRosa\nSasha\nWendy\nYareli\nAlaina\nCarolina\nDaphne\nElliana\nEvelin\nHarley\nIliana\nIngrid\nKaitlin\nKayleigh\nKiana\nLana\nLexie\nLyla\nMarisol\nYoselin\nAbbie\nAdyson\nAileen\nAiyana\nAmerica\nAnalicia\nAraceli\nBrittany\nDanna\nHeaven\nIsabela\nJoselin\nKaelyn\nKara\nKassandra\nLauryn\nLilah\nLillianna\nLucille\nMelody\nMyla\nPhoebe\nPhoenix\nTatiana\nYadira\nAbbigail\nAdison\nAngelique\nAria\nAudrina\nElisa\nElisabeth\nEmilia\nFelicity\nGloria\nJaelynn\nJane\nJoanna\nJosie\nJuliet\nKailee\nKathleen\nLena\nLondon\nMadelynn\nMadyson\nMarina\nMaritza\nMarlene\nPriscilla\nSidney\nYesenia\nAda\nAlena\nAlexus\nAllyson\nAngie\nAniya\nAshlee\nAylin\nBrenda\nCampbell\nCamryn\nCeleste\nGia\nGwendolyn\nIreland\nIsabell\nKadence\nKailyn\nKamryn\nKenya\nLuna\nMadisyn\nMikaela\nOlive\nScarlet\nSherlyn\nAdalyn\nAlma\nAlyson\nAmara\nAmelie\nAnaya\nAverie\nBrielle\nCarla\nCheyanne\nCynthia\nElsa\nEsperanza\nHeidi\nJayda\nJaylyn\nJazlyn\nJimena\nJuliette\nKaiya\nKarissa\nKaylynn\nKenzie\nLilian\nLluvia\nLogan\nLuz\nLyric\nMacey\nMacie\nMakena\nMarisa\nMeghan\nMollie\nMonique\nNataly\nNorah\nRyleigh\nSelah\nSerena\nSonia\nTabitha\nTania\nWhitney\nAngeline\nAnja\nAnnalise\nAnnie\nAsia\nAzul\nCatalina\nDelia\nDominique\nDylan\nEmery\nEmmalee\nEsther\nGiada\nGillian\nGreta\nHadassah\nHailee\nHalle\nHallie\nIsla\nJanae\nJanelle\nJohanna\nJourney\nKaia\nKasey\nKiley\nLesley\nLilyana\nLitzy\nMadalyn\nMaia\nMaren\nMarie\nMarlen\nMaryjane\nMeadow\nReyna\nSandra\nShiloh\nSimone\nSylvia\nThalia\nTiana\nZoie\nAbbey\nAbigale\nAlanna\nAmaris\nAmya\nAniyah\nAreli\nAubrie\nBaylee\nBrylee\nBryn\nCarissa\nCecelia\nClaudia\nDamaris\nDayana\nDenise\nElia\nFinley\nFrancesca\nGiana\nIrene\nJaida\nJordin\nJudith\nKairi\nKayli\nKaylin\nLarissa\nLesly\nLivia\nMaile\nMarin\nMarley\nNatalee\nNatalya\nNyla\nPrecious\nRayne\nRegan\nRhiannon\nSariah\nShea\nShyla\nTeresa\nTori\nWilla\nYamilet\nYaretzi\nZara\nAbagail\nAilyn\nAliana\nAnabella\nAnnabella\nArabella\nAvalon\nAveri\nAyleen\nBrandy\nCali\nCelia\nCharlize\nCindy\nClarissa\nDani\nDesiree\nEmilie\nFernanda\nHaven\nHelena\nIzabel\nJaedyn\nJanet\nJenny\nJolie\nJoslyn\nJustice\nKali\nKamila\nKarlie\nKatelin\nKatrina\nKaya\nKayden\nKeely\nKianna\nKimora\nKirsten\nKristin\nKya\nLainey\nLaney\nMadilynn\nMaisie\nMakaila\nMara\nMarilyn\nMicah\nMila\nNathaly\nNeveah\nNoemi\nPamela\nParis\nPaulina\nRaegan\nRaina\nRenee\nRhianna\nRosemary\nShannon\nSkye\nSkyler\nStacy\nTaliyah\nTamara\nTara\nTia\nValentina\nVanesa\nVirginia\nYahaira\nAaralyn\nAdalynn\nAdelynn\nAidan\nAja\nAlayah\nAlize\nAlora\nAlyvia\nAmina\nAnalise\nAnne\nAracely\nAraya\nAshleigh\nAshly\nBria\nBrookelyn\nBryanna\nCarley\nCherish\nChristiana\nCierra\nClare\nCorinne\nCristal\nDalilah\nDarian\nDeanna\nElora\nElyse\nEmmy\nEstefani\nEvie\nFabiola\nGina\nGretchen\nIzabelle\nJacey\nJaylynn\nJazlynn\nJazmyn\nJersey\nJesse\nJewel\nKaitlynn\nKaylyn\nKenna\nKristen\nKristina\nKyleigh\nLeona\nLeyla\nLiberty\nLilianna\nLillie\nLorena\nMaci\nMagnolia\nMaribel\nMarleigh\nMayte\nMiya\nMylee\nNeva\nNia\nNoel\nParker\nRaquel\nSaige\nSalma\nSaphira\nSavanah\nSky\nSofie\nStephany\nSylvie\nVioleta\nYarely\nYazmin\nYazmine\nYoselyn\nYuridia\nAbrianna\nAddie\nAdria\nAimee\nAislynn\nAlaura\nAleah\nAlessa\nAlexandrea\nAlianna\nAlly\nAllyssa\nAnabelle\nAnessa\nArielle\nAryanna\nAshtyn\nAubrianna\nAudrianna\nAyana\nBillie\nBrook\nCamilla\nCara\nCarlee\nCarlie\nCarolyn\nCasey\nCelina\nCharli\nCienna\nDafne\nDalila\nDariana\nDeja\nDevon\nDevyn\nEbony\nElianna\nEllen\nElliot\nEmelia\nEssence\nEvangelina\nEve\nFrances\nFreya\nGalilea\nGeneva\nGinger\nGracelyn\nGraciela\nHana\nJaela\nJaslene\nJaslyn\nJasmyn\nJaylee\nJayleen\nJaylin\nJeanette\nJesenia\nKaela\nKaila\nKaleigh\nKalli\nKallie\nKarime\nKarlee\nKarma\nKassidy\nKierra\nKimber\nKinsley\nLaci\nLacy\nLaurel\nLeanna\nLiana\nLina\nLisa\nLynn\nMae\nMarcela\nMarely\nMaryann\nMaryn\nMattea\nMckinley\nMira\nMireya\nMyah\nNatali\nNiamh\nNoelia\nNyah\nPaloma\nPatricia\nRayanna\nRayna\nRita\nRori\nRoselyn\nSarahi\nSaray\nSelene\nSharon\nSloane\nSolana\nSonya\nSusan\nTaya\nTayler\nTess\nTheresa\nToni\nYajaira\nYaritza\nZia\nAbrielle\nAdalee\nAdelina\nAdelyn\nAdrienne\nAisha\nAleena\nAlia\nAlisa\nAliza\nAlyiah\nAmalia\nAmari\nAmiah\nAmirah\nAnabel\nAnahy\nAnai\nAnaly\nAnastacia\nAnnalisa\nAnnelise\nAnsley\nAriah\nArlette\nAstrid\nAudra\nAudriana\nAustyn\nAvary\nAya\nAyanna\nBarbara\nBerlin\nBetsy\nBeverly\nBrea\nBree\nBrinley\nBritney\nCaitlynn\nCarina\nCarol\nCayla\nCaylee\nCeline\nChanelle\nChristine\nCitlali\nClaira\nCorina\nDania\nDeborah\nDenisse\nDiamond\nDianna\nEdith\nEileen\nEllee\nElsie\nFlor\nGiovanna\nGisselle\nGizelle\nGwen\nGwyneth\nHaily\nHavanna\nHunter\nIsobel\nIyanna\nJaclyn\nJalynn\nJaylen\nJenessa\nJoselynn\nJoy\nJune\nJustine\nJustyce\nKarli\nKaryme\nKatarina\nKaterina\nKayley\nKeeley\nKeila\nKenia\nKennedi\nKiersten\nKylah\nLacie\nLaylah\nLeticia\nLillyana\nLilyanna\nLinda\nLizeth\nLorelei\nMadalynn\nMagdalena\nMaiya\nMalena\nMargaux\nMarianna\nMariela\nMariella\nMariska\nMarlee\nMaryam\nMayra\nMckayla\nMeagan\nMelina\nMiah\nMicaela\nMonserrat\nMonserrath\nNubia\nNya\nOlyvia\nPaisley\nRebeca\nRebeka\nReilly\nRiver\nRory\nRubi\nRylyn\nSamira\nSawyer\nShaelynn\nShania\nShaylee\nSkyla\nSoraya\nStefany\nTriniti\nVianney\nWinter\nYoseline\nYuliana\nYulissa\nZariah\nZuleyka\nIsabella\nOlivia\nSophia\nEmma\nAbigail\nMadison\nAva\nElizabeth\nSamantha\nEmily\nElla\nTaylor\nNatalie\nMia\nChloe\nHannah\nAddison\nAvery\nGrace\nAshley\nLily\nAlexis\nNevaeh\nBrianna\nHailey\nAnna\nAlyssa\nEvelyn\nSarah\nVictoria\nSydney\nLillian\nLauren\nBrooke\nAlexandra\nSavannah\nZoe\nMadeline\nAlexa\nAudrey\nRiley\nValeria\nAllison\nBrooklyn\nKatherine\nClaire\nKaylee\nPeyton\nLeah\nJulia\nAmelia\nGabriella\nMaya\nCharlotte\nKayla\nIsabel\nJasmine\nLayla\nAaliyah\nBailey\nJessica\nKylie\nMorgan\nIsabelle\nMolly\nArianna\nMaria\nSofia\nNaomi\nCamila\nJennifer\nAubrey\nGenesis\nAndrea\nMackenzie\nRachel\nHaley\nKimberly\nSadie\nSerenity\nJocelyn\nTrinity\nAutumn\nBella\nMakayla\nJordan\nAriana\nDestiny\nLucy\nMadelyn\nMegan\nPaige\nEva\nMariah\nSophie\nRuby\nFaith\nKaitlyn\nKeira\nPayton\nStephanie\nMya\nNatalia\nReese\nZoey\nCaroline\nRylee\nAngelina\nJade\nKate\nVanessa\nJenna\nKatelyn\nLilly\nMelanie\nNicole\nViolet\nDaniela\nKatie\nMary\nLydia\nReagan\nHayden\nSara\nSienna\nGabriela\nMarley\nAdriana\nGianna\nLiliana\nMichelle\nAmy\nGabrielle\nGracie\nLeslie\nMarissa\nDelaney\nStella\nAspen\nEliana\nEllie\nLila\nRebecca\nDelilah\nDiana\nMckenna\nScarlett\nBrooklynn\nTeagan\nAnnabelle\nGiselle\nJordyn\nMelissa\nTessa\nJosephine\nAngel\nBriana\nElise\nJayden\nAlexandria\nAlicia\nAmaya\nAshlyn\nShelby\nAngela\nBrynn\nCadence\nClara\nEleanor\nKendall\nAlana\nAlondra\nDanica\nKathryn\nKylee\nAliyah\nElena\nKira\nLola\nMakenna\nSierra\nTatum\nValerie\nAnnika\nEmerson\nIvy\nJazmin\nKennedy\nLeila\nMargaret\nNora\nAlexia\nDaisy\nDanielle\nHope\nJacqueline\nKiara\nMariana\nPiper\nSage\nVivian\nAlejandra\nHarper\nKaydence\nMiley\nSabrina\nSkylar\nAdrianna\nAmber\nAna\nCheyenne\nCrystal\nDakota\nHazel\nIzabella\nJasmin\nJayla\nKaren\nMikayla\nMiranda\nXimena\nAudrina\nCatherine\nEden\nJada\nMckenzie\nAmanda\nCarmen\nEstrella\nFatima\nKiera\nLaila\nMakenzie\nRose\nAngelica\nAshlynn\nAurora\nCaitlin\nDulce\nErin\nKarina\nKendra\nMadeleine\nMaggie\nMalia\nNataly\nAlaina\nAlina\nAllie\nAllyson\nJoselyn\nJulianna\nJuliet\nKyra\nNina\nVeronica\nAdeline\nAlivia\nAnya\nCamryn\nCassidy\nErica\nHaylee\nJuliana\nKyla\nLaura\nLexi\nLindsey\nLondon\nLucia\nLyla\nMarely\nNoelle\nQuinn\nAinsley\nAlice\nAriel\nBethany\nCassandra\nCecilia\nChelsea\nIris\nJosie\nLilah\nLyric\nMacy\nMallory\nNadia\nRowan\nRylie\nSummer\nAddyson\nApril\nErika\nEsmeralda\nFiona\nItzel\nJadyn\nJazmine\nJillian\nKara\nLeilani\nAnastasia\nAnnie\nAyla\nBrielle\nCaitlyn\nCora\nCourtney\nHolly\nKarla\nKatelynn\nKaylie\nKelsey\nNayeli\nAnahi\nAubree\nGenevieve\nHadley\nJane\nKamryn\nMelody\nMira\nSavanna\nTalia\nArely\nBrenna\nCamille\nCynthia\nDaniella\nDanika\nDayanara\nEliza\nElliana\nEvangeline\nFernanda\nFinley\nJamie\nJanessa\nJimena\nLena\nLilliana\nLillie\nLizbeth\nMarisol\nYasmin\nAlison\nAlyson\nAthena\nAylin\nBianca\nBreanna\nEmery\nGiana\nGuadalupe\nHeidi\nKailey\nKelly\nKiana\nKyleigh\nMadilyn\nPenelope\nPhoebe\nRubi\nAbby\nAlena\nCarly\nDanna\nEmilia\nGloria\nGreta\nHarley\nHayley\nJaylynn\nJulissa\nKali\nKiley\nLindsay\nMadalyn\nMaia\nMarlee\nNorah\nPaola\nRuth\nSkyler\nSylvia\nTara\nYesenia\nAdelaide\nAlayna\nAngelique\nAniyah\nAraceli\nAzul\nBrenda\nCeleste\nDaphne\nDayana\nHeather\nJaelynn\nJaiden\nJayda\nJazlyn\nJoanna\nKaitlin\nKhloe\nLogan\nNancy\nNoemi\nRachael\nRebekah\nShayla\nSiena\nTatiana\nAbril\nAiyana\nAngie\nBaylee\nBridget\nCali\nCallie\nCamilla\nCiara\nEsther\nGeorgia\nHeaven\nHelen\nJaslene\nKaelyn\nLuna\nMiriam\nNatasha\nParker\nRaegan\nWillow\nAdelyn\nBraelyn\nBrylee\nCameron\nClaudia\nDeja\nDenise\nDylan\nElle\nEsperanza\nEve\nEvelin\nJaelyn\nJazlynn\nKaia\nLilian\nLucille\nLuz\nMacie\nMadisyn\nMarin\nMila\nPerla\nReyna\nRyleigh\nSandra\nScarlet\nSerena\nSonia\nYareli\nYoselin\nAliana\nCasey\nDamaris\nHaylie\nHelena\nJacquelyn\nJaden\nJohanna\nJoslyn\nKayleigh\nLilyana\nMaddison\nMadelynn\nMarie\nMireya\nMylee\nPaloma\nRiver\nTiffany\nViviana\nWhitney\nZoie\nAileen\nAlessandra\nAmya\nAreli\nBrisa\nBryanna\nCarissa\nChanel\nChristina\nEllen\nElyse\nGwendolyn\nGwyneth\nJanelle\nJaqueline\nJaylin\nKadence\nKaiya\nKarime\nKathleen\nKayley\nKaylynn\nKenya\nKenzie\nLarissa\nLauryn\nLexie\nLia\nLinnea\nMadyson\nMakena\nMarisa\nMarlene\nMichaela\nMyla\nNatali\nPresley\nRayna\nSarai\nSasha\nSherlyn\nTaryn\nTori\nYadira\nYamilet\nYaritza\nAbbigail\nAbrianna\nAimee\nAlanna\nAllisson\nAmerica\nAnika\nAnnalise\nAnne\nAriah\nAyleen\nCarla\nCatalina\nCelia\nClare\nElaina\nElsie\nEmmy\nFelicity\nGillian\nHarmony\nJacey\nJaidyn\nJaylee\nJuliette\nKaylin\nKenna\nKirsten\nLana\nLeticia\nLiana\nLizeth\nMacey\nMaren\nMelany\nMikaela\nMonica\nNyah\nPriscilla\nRayne\nSamara\nSawyer\nShannon\nShea\nSkyla\nTania\nThalia\nTrista\nValentina\nAdalyn\nAdison\nAleena\nAlia\nAlize\nAmari\nAniah\nAurelia\nBailee\nBrissa\nCampbell\nCarolina\nCharlie\nColette\nCristal\nDana\nEdith\nEmely\nEvangelina\nEvie\nHailee\nHalle\nHanna\nHaven\nHayleigh\nIsla\nJoy\nJoyce\nJulie\nJustice\nKailyn\nKassidy\nKayden\nKeely\nLacey\nLaurel\nLiberty\nLilianna\nLinda\nLluvia\nLuciana\nMadalynn\nMaritza\nNatalya\nQuincy\nRaelynn\nRaina\nReece\nReina\nRhiannon\nRosa\nSelah\nSelena\nShay\nShiloh\nShyla\nSimone\nSkye\nStephany\nTabitha\nWilla\nYamileth\nYaretzi\nYazmin\nZariah\nAbbie\nAdalynn\nAilyn\nAisha\nAlisha\nAlissa\nAliya\nAnnabella\nAracely\nAria\nAshlee\nAshtyn\nAubrie\nAubry\nBetsy\nBryn\nCara\nCharlee\nCharli\nChristine\nDevin\nElisabeth\nEloise\nEvelynn\nFabiola\nFrida\nGia\nGretchen\nHailie\nIngrid\nIrene\nJaquelin\nJaycee\nJaydin\nJazmyn\nJudith\nKamila\nKarma\nKassandra\nKaya\nKenia\nKrystal\nLeanna\nLillyanna\nLisa\nLivia\nMadilynn\nMaeve\nMagdalena\nMaleah\nMara\nMariam\nMaribel\nMariela\nMatilda\nMercedes\nMoriah\nMyah\nNatalee\nNia\nPatricia\nPearl\nRenee\nRihanna\nRyan\nSidney\nSloane\nSofie\nSusan\nTegan\nThea\nTianna\nAbagail\nAbigale\nAddisyn\nAdelina\nAislin\nAmara\nAnabel\nAnalisa\nAnaya\nAniya\nAnnelise\nAsha\nAubrianna\nAvalon\nBelen\nBritany\nBritney\nCamdyn\nCarolyn\nCarson\nCindy\nDenisse\nDesiree\nDestiney\nEileen\nElianna\nElisa\nElissa\nEllis\nElsa\nEmilee\nEmmalee\nGeraldine\nGiovanna\nHana\nImani\nIreland\nIsabela\nIsabell\nIzabelle\nJanet\nJayleen\nJaylene\nJessie\nJoelle\nJolie\nJune\nKaitlynn\nKaleigh\nKarli\nKaycee\nKimora\nKiya\nKyrie\nLesly\nLilli\nLillianna\nLitzy\nLorena\nMarina\nMayra\nMiah\nNoelia\nOlive\nPaityn\nRaquel\nRhianna\nRory\nRyann\nRylan\nSaige\nSally\nSarahi\nSariah\nShyanne\nSonya\nTayler\nAdrienne\nAdysen\nAiden\nAiyanna\nAlecia\nAli\nAlma\nAmalia\nAmani\nAmira\nAnalia\nAnn\nAnnaliese\nAnneliese\nAverie\nBaileigh\nBriley\nBrynlee\nCaitlynn\nCambria\nCassie\nCaylee\nCharlize\nChiara\nCiana\nCloey\nDayami\nDestinee\nDevyn\nDiamond\nDivina\nElliott\nEmersen\nEmilie\nFrancesca\nGalilea\nGina\nGracelynn\nHallie\nIsis\nIyana\nIyanna\nJaliyah\nJaslyn\nJayde\nJaylah\nJoey\nJourney\nJubilee\nKacey\nKailee\nKaley\nKallie\nKaryme\nKatrina\nKeila\nKenadie\nKeren\nKianna\nKinley\nKirra\nKora\nLainey\nLea\nLesley\nLizette\nLondyn\nLorelei\nMagnolia\nMargarita\nMarilyn\nMarlo\nMayrin\nMckayla\nMelina\nMicaela\nNadine\nNallely\nNariah\nNathalia\nNathalie\nPaisley\nPamela\nRegan\nRocio\nRoslyn\nSavanah\nShaelyn\nShania\nShaylee\nSol\nSydnee\nSylvie\nTalyn\nTanya\nTeresa\nVirginia\nWinter\nZahara\nZara\nZaria\nAbigayle\nAda\nAddie\nAddysen\nAdelynn\nAdyson\nAida\nAleah\nAlexus\nAlexys\nAlisson\nAlycia\nAmelie\nAmora\nAnessa\nAnnalee\nAnnette\nAnsley\nArabella\nAraya\nAriadna\nArlene\nAryana\nAryanna\nAshly\nAubri\nAubriana\nAudra\nAviana\nAyva\nAzariah\nBeatrice\nBelle\nBeverly\nBrinley\nBrittany\nBrook\nCalista\nCapri\nCasandra\nCaydence\nCaylin\nCecelia\nCeline\nChevelle\nChole\nCierra\nCitlali\nClarissa\nClarity\nCorinne\nDahlia\nDalilah\nDanae\nDayanna\nDestini\nDonna\nElodie\nElysia\nEmber\nEmelia\nEmme\nEmmi\nFlora\nGabriel\nGemma\nGwen\nHarlow\nIdaly\nIla\nInara\nIndia\nJacee\nJanice\nJaya\nJazmyne\nJenifer\nJiana\nJordin\nJoselin\nJoseline\nJulieta\nJulisa\nKaila\nKaris\nKarissa\nKarlee\nKarly\nKarol\nKatarina\nKayleen\nKeagan\nKeeley\nKelsi\nKendal\nKennedi\nKinsley\nKristina\nKyndall\nLacy\nLeyla\nLilia\nLiv\nLorelai\nMabel\nMadysen\nMareli\nMari\nMarianna\nMarisela\nMarlen\nMaryjane\nMayte\nMckinley\nMilana\nMina\nMischa\nMollie\nMonique\nNaima\nNeva\nNichole\nNoel\nNoelani\nPayten\nPyper\nRain\nRamona\nRaven\nRoselyn\nRosemary\nSanaa\nScotlyn\nShawna\nShayna\nShia\nSoledad\nSoraya\nStacey\nSterling\nSydnie\nTamara\nTatyana\nTaya\nTayla\nTenley\nTiana\nTina\nToni\nVianey\nYessenia\nYvette\nZaida\nZaira\nIsabella\nOlivia\nSophia\nAbigail\nEmma\nAva\nEmily\nAddison\nElizabeth\nMadison\nMia\nElla\nSamantha\nLily\nChloe\nAlexis\nGrace\nTaylor\nHailey\nAvery\nNatalie\nAshley\nEvelyn\nZoe\nAlyssa\nHannah\nAllison\nBrianna\nLillian\nNevaeh\nSarah\nBrooklyn\nAnna\nSydney\nBella\nCharlotte\nValeria\nClaire\nKaylee\nRiley\nAlexa\nMaya\nBailey\nAmelia\nMadeline\nPeyton\nBrooke\nArianna\nVictoria\nSofia\nKimberly\nLauren\nLeah\nAudrey\nAubrey\nFaith\nJulia\nKayla\nGabriella\nLayla\nSavannah\nSophie\nTrinity\nJasmine\nAaliyah\nGenesis\nIsabelle\nMaria\nAlexandra\nCamila\nPaige\nGianna\nMackenzie\nKatherine\nLiliana\nAndrea\nZoey\nKylie\nLucy\nMorgan\nIsabel\nNaomi\nPiper\nSerenity\nDestiny\nJessica\nAriana\nEva\nNatalia\nRuby\nJocelyn\nMadelyn\nVanessa\nMolly\nReagan\nJordyn\nAnnabelle\nDaisy\nKeira\nMakayla\nPayton\nReese\nAngelina\nHarper\nKaitlyn\nAutumn\nIzabella\nElena\nEliana\nJordan\nMariah\nMegan\nMelanie\nScarlett\nCaroline\nCora\nLilly\nLyla\nMya\nShelby\nSienna\nAshlyn\nAspen\nHayden\nMichelle\nGabrielle\nKate\nRachel\nRylee\nDelaney\nHaley\nLydia\nMary\nMckenzie\nJade\nKatelyn\nTessa\nViolet\nStella\nAdriana\nElise\nAlexandria\nJennifer\nKhloe\nSadie\nSara\nDiana\nEllie\nGabriela\nKendall\nMiranda\nClara\nEmery\nGiselle\nKatie\nSierra\nAna\nBrooklynn\nJada\nJillian\nNora\nAliyah\nAthena\nDaniela\nEleanor\nGenevieve\nJosephine\nMarissa\nAmy\nDanielle\nKylee\nNicole\nLeslie\nMckenna\nStephanie\nAshlynn\nDelilah\nKarina\nLola\nMarley\nMelissa\nValerie\nVivian\nAmanda\nAnnika\nCadence\nHope\nMakenna\nRebecca\nAngela\nCatherine\nMargaret\nAdrianna\nHaylee\nJazmin\nKyla\nMikayla\nSabrina\nBrielle\nCassidy\nCaylee\nGracie\nIsla\nJuliana\nLila\nTatum\nCaitlyn\nHazel\nJayda\nJazmine\nLexi\nLilah\nTeagan\nAlexia\nAlice\nAlondra\nAnastasia\nFatima\nKennedy\nLaura\nLeila\nQuinn\nAdalyn\nAlicia\nBriana\nFiona\nIvy\nJenna\nKiera\nKira\nKyra\nPenelope\nRylie\nSage\nAmaya\nAnalia\nCecilia\nEmerson\nEstrella\nFernanda\nKathryn\nSkylar\nAlison\nAngel\nArely\nAurora\nBreanna\nCarmen\nGuadalupe\nHeidi\nItzel\nJimena\nMadeleine\nMelody\nAdelaide\nAlana\nAlina\nAriel\nDakota\nEvangeline\nJasmin\nJayla\nJulissa\nKaia\nKaren\nKarla\nKaydence\nLilliana\nMakenzie\nOlive\nSasha\nXimena\nAddyson\nAlejandra\nAlivia\nAnahi\nAyla\nIris\nJamie\nJayden\nLaila\nLeilani\nLondon\nAdeline\nAmber\nArabella\nAudrina\nBianca\nErin\nHadley\nHarmony\nKiara\nLilian\nLindsey\nMaggie\nMariana\nMiley\nNayeli\nNoelle\nPhoebe\nSummer\nAileen\nAlayna\nAllie\nEden\nJane\nJaqueline\nLia\nLizbeth\nLuna\nMacy\nNina\nRuth\nRyann\nSamara\nAnika\nAniyah\nAylin\nBrenda\nBrisa\nCeleste\nCheyenne\nCourtney\nDanica\nElliana\nFinley\nJazlyn\nKelly\nMonica\nSavanna\nAbby\nAllyson\nAngelica\nAnya\nBaylee\nBrynn\nCassandra\nDanna\nEliza\nEmilia\nEvelynn\nJacqueline\nJaylynn\nJosie\nKara\nLilyana\nLogan\nLucia\nMalia\nMelany\nMila\nMyla\nNadia\nRyleigh\nSimone\nValentina\nWillow\nAdelyn\nAleah\nAmerica\nApril\nCamille\nCharlie\nEsmeralda\nGeorgia\nHallie\nHanna\nJulianna\nJuliet\nJuliette\nKaelyn\nKinley\nLexie\nMacie\nMiriam\nNorah\nPerla\nPresley\nRowan\nSelena\nShiloh\nSkyler\nYesenia\nAlaina\nAnnie\nAria\nCaitlin\nCameron\nChristina\nDanika\nEmber\nErika\nEve\nGiana\nJaelyn\nKenley\nLorelei\nMaddison\nMadilyn\nMikaela\nParker\nPatricia\nPaulina\nRebekah\nShayla\nAda\nAinsley\nAmara\nAubree\nBethany\nDaphne\nDayana\nEdith\nGwendolyn\nHarley\nJaden\nJoselyn\nJoslyn\nJoy\nKayleigh\nKelsey\nLena\nLillie\nMaia\nNatasha\nRaegan\nSiena\nTiffany\nZoie\nAshlee\nCamryn\nCarly\nCarolina\nCiara\nDahlia\nElsie\nErica\nEsther\nJazlynn\nJoanna\nKamryn\nKendra\nKiana\nKyleigh\nLilyanna\nMeghan\nMeredith\nNataly\nNatalya\nPaola\nPriscilla\nRiver\nRose\nRyan\nSelah\nSkyla\nWhitney\nYareli\nAnabella\nAnabelle\nAurelia\nBailee\nBrittany\nCampbell\nElle\nElsa\nGemma\nHelena\nHolly\nIngrid\nJadyn\nJayleen\nKaiya\nKamila\nKatelynn\nKaylie\nKiley\nKinsley\nMadalyn\nMadelynn\nMallory\nNathalie\nNoemi\nRaelynn\nRenee\nSarai\nTegan\nVeronica\nVivienne\nYaretzi\nAiyana\nAngie\nAnnabel\nAnnabella\nAsha\nAubrie\nAzul\nCallie\nCecelia\nCharlee\nClaudia\nCristina\nDayanara\nElaina\nHailee\nJaidyn\nJune\nKaya\nKenna\nKenzie\nLea\nLesly\nLindsay\nLizeth\nMichaela\nReece\nSkye\nSloane\nSylvia\nTaryn\nYadira\nAddisyn\nAlanna\nAlessandra\nAlissa\nAlyson\nAnaya\nAngelique\nAraceli\nAryanna\nAyanna\nBraelyn\nCali\nCara\nCelia\nChelsea\nCynthia\nDaniella\nDenise\nElisabeth\nEvelin\nEvie\nFelicity\nFrancesca\nGracelyn\nGreta\nHayley\nIsis\nJaida\nJulie\nKadence\nKali\nLillyana\nLucille\nMarin\nMaritza\nMaryjane\nMatilda\nPhoenix\nReyna\nRihanna\nStacy\nTatiana\nTaya\nTeresa\nZariah\nAbril\nAdalynn\nAlani\nAlexys\nAmira\nAmiyah\nArleth\nAverie\nBlake\nBrenna\nBridget\nBryanna\nBrylee\nBrynlee\nCatalina\nCristal\nElisa\nElyse\nEmory\nHarlow\nHaven\nHelen\nIsabela\nJanessa\nKaitlin\nKaylen\nKeely\nLeighton\nLillianna\nLinda\nLuciana\nLuz\nLyra\nLyric\nMadilynn\nMae\nMelia\nMiya\nNyla\nPaityn\nRosa\nRosalie\nSerena\nShannon\nTalia\nTara\nVera\nVirginia\nWilla\nYoselin\nAliza\nAllegra\nAlly\nAlthea\nAlyvia\nAmariah\nAmelie\nAnalicia\nAniya\nAnnalise\nAnsley\nAriah\nArielle\nAubrianna\nAudra\nAvalon\nAveri\nBerenice\nBrinley\nCaitlynn\nCarlee\nCharlize\nCindy\nConstance\nCorinne\nCrystal\nDanae\nDevyn\nDulce\nDylan\nElianna\nEllery\nEllis\nEmely\nEmilee\nEmilie\nEmmalee\nEsme\nEsperanza\nEvalyn\nGia\nHadassah\nHaleigh\nIreland\nJaiden\nJanie\nJaylin\nJourney\nJustice\nKailey\nKallie\nKarissa\nKassandra\nKathleen\nKayden\nKristina\nLacey\nLilianna\nLivia\nLondyn\nLylah\nMadalynn\nMadisyn\nMara\nMarie\nMarisol\nMarlene\nMilagros\nPaisley\nPatience\nRaquel\nRaven\nRegan\nSaige\nSalma\nSariah\nSidney\nTiana\nVianney\nXochitl\nYaretzy\nAbigale\nAbigayle\nAdelynn\nAdrienne\nAlaya\nAleena\nAliana\nAlianna\nAlize\nAllisson\nAmalia\nAmina\nAnaleigh\nAngeline\nAnne\nAubriana\nBelen\nBree\nBriley\nCalista\nCamilla\nCarina\nCarissa\nCarli\nChanel\nCharley\nClare\nDana\nDarby\nDesiree\nElliott\nEmelia\nEmmaline\nEstella\nGillian\nGwyneth\nHalle\nIliana\nImani\nJacey\nJaedyn\nJanice\nJaycee\nJazmyn\nJessa\nJolie\nJoslynn\nKai\nKailynn\nKaleigh\nKaris\nKarsyn\nKaylin\nKenya\nKierra\nKiersten\nKora\nKya\nLainey\nLana\nLauryn\nLeticia\nLiberty\nLluvia\nMaite\nMaleah\nMaliyah\nMaribel\nMarina\nMarisa\nMaylin\nMckayla\nMelina\nMiah\nMiracle\nMyah\nMylah\nNallely\nNancy\nNathalia\nNelly\nOpal\nPaloma\nReina\nSahara\nSandra\nSawyer\nShaylee\nSherlyn\nShyla\nSiri\nSuri\nTatyana\nTayla\nThea\nTori\nVioleta\nViviana\nWendy\nYamileth\nYarel\nYarely\nYaritza\nYasmin\nYuliana\nZuri\nAcacia\nAida\nAkira\nAlea\nAlena\nAlexandrea\nAlia\nAlisson\nAmari\nAmaris\nAmberly\nAmiah\nAmya\nAnn\nAnnabell\nAnnalee\nAnnaliese\nArden\nArmani\nAshleigh\nAshly\nAugust\nAustyn\nAvah\nAvalyn\nAven\nAyleen\nBeatrice\nBraylee\nCaleigh\nCambria\nCarla\nCaydence\nColleen\nDalilah\nDeja\nElaine\nEloise\nElora\nGloria\nGretchen\nHeather\nHeidy\nIsabell\nIvanna\nIzabelle\nJanelle\nJaniyah\nJayde\nJaylee\nJemma\nJennavecia\nJolene\nJoselin\nKailee\nKailyn\nKairi\nKaitlynn\nKalia\nKarime\nKarma\nKassidy\nKaylynn\nKendyl\nKeyla\nLeilah\nLesley\nLeyla\nLiana\nLibby\nLilia\nLilith\nLiza\nMacey\nMaci\nMadyson\nMalaya\nMarely\nMaren\nMariam\nMarlee\nMarlie\nMaxine\nMayte\nMercedes\nMercy\nMonique\nNatalee\nNola\nPamela\nParis\nPearl\nRaleigh\nRemi\nRhea\nRobyn\nRocio\nRosemary\nRoxana\nRylan\nSabine\nSarahi\nShae\nShea\nSonya\nSusan\nSylvie\nTania\nThalia\nTheresa\nVivien\nWinter\nYasmine\nYazmin\nAanya\nAddie\nAddisen\nAditi\nAdrianne\nAiyanna\nAlex\nAlexsandra\nAliya\nAlliyah\nAlysia\nAnaiah\nAngelita\nAniah\nAnnmarie\nAntonia\nAriyah\nAryana\nAshton\nAubriella\nAubrielle\nAviana\nAyana\nBrandy\nBrayden\nBriar\nBristol\nBryn\nCalla\nCarley\nCarsyn\nChristine\nColette\nDariana\nDavina\nDeborah\nDevon\nDiya\nDonna\nEdie\nElina\nEma\nEmersyn\nEmmerson\nEstelle\nEvangelina\nEverly\nEzra\nFrances\nGina\nGinger\nGiovanna\nGissel\nGracelynn\nHailie\nHolland\nIleana\nIrene\nIzabel\nJackeline\nJanae\nJanet\nJaquelin\nJaylene\nJazzlyn\nJenesis\nJoanne\nJohana\nJudith\nJuniper\nJustine\nKacie\nKaela\nKaelynn\nKaila\nKalyn\nKameryn\nKarlee\nKaryme\nKasandra\nKaylyn\nKeeley\nKhadija\nKinsey\nKirra\nKrista\nKristin\nLarissa\nLaylah\nLeela\nLeona\nLesli\nLillyan\nLillyanna\nLilyann\nLina\nLinnea\nLisa\nLorelai\nLuisa\nLyndsey\nMadigan\nMaeve\nMagaly\nMaisie\nMakala\nMaricela\nMarlen\nMaryann\nMattie\nMayra\nMeadow\nMicaela\nMilana\nMilla\nMireya\nMoriah\nMylee\nNatali\nNellie\nNoelia\nPaula\nPayten\nPetra\nRachael\nRaylee\nRaylynn\nRayna\nRayne\nRegina\nRenata\nRhiannon\nRubi\nRyah\nSanaa\nSavanah\nSelene\nShaelynn\nTaelyn\nTahlia\nTala\nTallulah\nTemperance\nTess\nTirzah\nTula\nTyler\nUnique\nVanesa\nVianey\nViolette\nYolanda\nYoselyn\nZadie\nZaira\nIsabella\nSophia\nOlivia\nEmma\nAbigail\nAva\nEmily\nElizabeth\nMadison\nElla\nAddison\nMia\nAvery\nGrace\nLily\nChloe\nNatalie\nBrooklyn\nAlexis\nSamantha\nZoe\nHailey\nNevaeh\nSofia\nAshley\nEvelyn\nHannah\nAnna\nLillian\nCharlotte\nAlyssa\nClaire\nAlexa\nLucy\nKaylee\nArianna\nVictoria\nBrianna\nAmelia\nGabriella\nZoey\nPeyton\nSarah\nSydney\nTaylor\nAllison\nRiley\nLeah\nCamila\nAudrey\nBailey\nLayla\nAaliyah\nSavannah\nKimberly\nMadeline\nAubrey\nMakayla\nSerenity\nStella\nKatherine\nMaya\nSophie\nAlexandra\nAutumn\nBella\nKylie\nMolly\nHarper\nJulia\nIsabelle\nRuby\nGianna\nLiliana\nBrooke\nEllie\nEva\nIsabel\nPayton\nJasmine\nValeria\nFaith\nKayla\nMorgan\nMariah\nNaomi\nPaige\nViolet\nAnnabelle\nLilly\nIzabella\nCaroline\nLauren\nAndrea\nAriana\nJocelyn\nGenesis\nJade\nJessica\nMackenzie\nScarlett\nDestiny\nKhloe\nAshlyn\nKylee\nNatalia\nTrinity\nMelanie\nEliana\nMadelyn\nAmy\nDaisy\nEleanor\nKaitlyn\nLila\nSadie\nTeagan\nVanessa\nAngelina\nBrooklynn\nJordyn\nLyla\nReagan\nAspen\nDelilah\nLydia\nMaria\nMiranda\nPiper\nRylee\nDelaney\nQuinn\nElise\nJennifer\nKatelyn\nKatie\nDanna\nEden\nElena\nJosephine\nMichelle\nMya\nRachel\nRebecca\nEmerson\nKeira\nMegan\nNicole\nReese\nAdriana\nJacqueline\nJordan\nKennedy\nMakenna\nAngel\nClara\nHayden\nKendall\nVivian\nAmaya\nCecilia\nGenevieve\nMckenna\nShelby\nSienna\nSierra\nAyla\nHaley\nLaila\nLeilani\nMarley\nNora\nAdelaide\nAlexandria\nAliyah\nAnastasia\nCora\nDulce\nEstrella\nGabrielle\nHadley\nIvy\nSara\nValentina\nAlice\nAngela\nDaniela\nDiana\nHeidi\nLuna\nMary\nStephanie\nTessa\nXimena\nAshlynn\nBrielle\nHazel\nIsla\nMckenzie\nAlana\nAlondra\nDakota\nFiona\nGracie\nJosie\nLola\nMargaret\nMelissa\nMila\nNorah\nTatum\nAlivia\nBrynn\nGabriela\nKendra\nKira\nPresley\nValerie\nYaretzi\nAdalyn\nAinsley\nAlicia\nJayla\nJenna\nKate\nLeila\nMacy\nMikayla\nBrisa\nDanielle\nEmery\nGiselle\nHope\nIris\nJuliana\nLexi\nLilliana\nMadeleine\nMariana\nSkylar\nAdrianna\nAlexia\nAlina\nAna\nElle\nJillian\nLucia\nAthena\nCallie\nCassidy\nFernanda\nKelsey\nMaddison\nMelody\nRylie\nVivienne\nAddyson\nAdeline\nAlejandra\nAllie\nAmanda\nCheyenne\nDaphne\nEsmeralda\nJada\nJazmin\nKaydence\nMaggie\nMakenzie\nNayeli\nPenelope\nRebekah\nRyleigh\nScarlet\nAniyah\nAnnika\nBethany\nCadence\nItzel\nJanessa\nKathryn\nLeslie\nAbby\nAdelyn\nAlison\nCamille\nEliza\nElliana\nEmilia\nJazmine\nJulianna\nKyla\nLilian\nRose\nSerena\nYareli\nAlayna\nAnnabella\nAurora\nCaitlin\nCarmen\nJane\nJuliet\nKamryn\nKinley\nRaelynn\nRuth\nAllyson\nBriana\nCaitlyn\nCeleste\nElsa\nErin\nJasmin\nJayden\nKiara\nKiley\nLia\nLondon\nMiley\nSabrina\nSasha\nSavanna\nSummer\nTalia\nAlaina\nArabella\nBianca\nDaniella\nGemma\nGuadalupe\nKaia\nKiera\nKinsley\nLana\nLucille\nOlive\nPaisley\nRowan\nTiffany\nAbril\nAnahi\nAnika\nAria\nAubree\nBraelyn\nCameron\nCarly\nCassandra\nChelsea\nCrystal\nDanika\nEloise\nFinley\nGeorgia\nHarmony\nHayley\nJaelyn\nJayda\nJoselyn\nKarla\nLilyana\nLyric\nMallory\nMarie\nMarissa\nPhoebe\nVeronica\nWillow\nAddisyn\nAileen\nAlessandra\nBridget\nCamryn\nCatherine\nFatima\nFrancesca\nGiana\nHolly\nJimena\nKamila\nKaren\nKarina\nKenzie\nKyra\nLacey\nLena\nMaci\nNina\nAmelie\nAnabelle\nAnya\nCarolina\nCharlie\nDayana\nJoy\nJulissa\nKailey\nKara\nKatelynn\nKaya\nKelly\nKyleigh\nLillyana\nLogan\nLorelei\nMarisol\nMiriam\nNatasha\nNoelle\nNola\nSawyer\nSloane\nAiyana\nAmber\nAmira\nAngelica\nAnnabel\nAyleen\nCharlee\nDanica\nDylan\nElaina\nEllen\nEsperanza\nGreta\nJadyn\nJohanna\nJoslyn\nKayleigh\nLaura\nLillyanna\nLindsey\nLizbeth\nMadalynn\nMadilyn\nMaia\nMalia\nMonica\nPaloma\nRyann\nSage\nSelah\nShayla\nTenley\nWhitney\nZoie\nAbbigail\nAleah\nAliya\nAmerica\nAnnaliese\nApril\nAriel\nAverie\nAzul\nBaylee\nBlake\nBrylee\nCourtney\nElin\nHalle\nHaven\nJudith\nKaylie\nLilah\nLilianna\nMacie\nMadalyn\nMadelynn\nMadisyn\nMaeve\nMckinley\nMelina\nNadia\nRaegan\nSylvia\nAlanna\nAlia\nAliana\nAmara\nAnaya\nAnnie\nAreli\nArely\nAudrina\nAylin\nBriella\nBryn\nChristina\nCiara\nCorinne\nDalilah\nDenisse\nElsie\nEvangeline\nGia\nGwendolyn\nHanna\nHaylee\nIliana\nJaelynn\nJaida\nJamie\nJuliette\nKaiya\nLexie\nLilia\nLuz\nMakena\nMarin\nMelany\nNancy\nNataly\nPaola\nPerla\nSidney\nSiena\nSkyla\nTiana\nAdalynn\nAlena\nAlyson\nAnalia\nAngie\nAubrie\nBailee\nBristol\nBrynlee\nCarla\nCynthia\nEdith\nElisabeth\nJanelle\nJoanna\nKadence\nKailyn\nKaitlynn\nKathleen\nKiana\nLarissa\nLillianna\nLindsay\nLuciana\nMaleah\nMarina\nMartha\nMoriah\nSandra\nSelena\nSimone\nSloan\nSylvie\nTess\nThalia\nYadira\nAbagail\nAilyn\nAli\nAngelique\nAniya\nAryanna\nAyana\nBrittany\nCambria\nCamilla\nCara\nCarolyn\nCatalina\nCaylee\nDana\nDesiree\nElliott\nEmely\nEmilee\nEmilie\nEstelle\nGiuliana\nHarley\nHeaven\nIngrid\nIsabela\nJaylah\nJaylee\nJayleen\nJazlynn\nJulie\nKaelyn\nKatia\nKaylynn\nKenna\nLea\nLeticia\nLiana\nLillie\nLondyn\nLyra\nMarianna\nMckayla\nMiah\nParker\nPenny\nPriscilla\nRayna\nRyan\nRylan\nSarai\nShannon\nTaryn\nTatiana\nTori\nWren\nYamilet\nAdyson\nAiyanna\nAlannah\nAnnalise\nAriah\nAudriana\nAurelia\nBrenna\nBrissa\nClare\nElayna\nEmelia\nEmmalynn\nEsther\nEvelynn\nEverly\nEvie\nFarrah\nGiovanna\nGracelyn\nGretchen\nHailee\nHana\nHarlow\nHeather\nIreland\nIvanna\nIzzabella\nJayde\nJessa\nJocelynn\nJordynn\nJoslynn\nJune\nKailee\nKaitlin\nKarissa\nKassandra\nKeeley\nKenadie\nLeia\nLilyanna\nLorena\nMeadow\nMeghan\nMollie\nMyah\nNariah\nNeveah\nPaula\nReina\nReyna\nRhiannon\nSarahi\nShea\nShyla\nSkyler\nSofie\nTegan\nTemperance\nWilla\nZariah\nZion\nAbbie\nAlani\nAlexi\nAlora\nAmani\nAnalise\nAnaliyah\nAnayah\nAraceli\nArielle\nAshly\nAstrid\nBreanna\nBrinley\nBryleigh\nCailyn\nCecelia\nClaudia\nColbie\nDenise\nDevyn\nElisa\nEllery\nEmmy\nEmory\nErica\nEsme\nEvangelina\nFrida\nGracyn\nHayleigh\nHaylie\nHelena\nIsis\nJaiden\nJaidyn\nJaylynn\nJoelle\nJourney\nJuniper\nKaila\nKarolina\nLailah\nLainey\nLaurel\nLilyann\nLinden\nLisa\nLivia\nLizeth\nLylah\nMadilynn\nMadyson\nMae\nMargot\nMarilyn\nMarisa\nMercedes\nMikaela\nMira\nMireya\nMyla\nNatalee\nNia\nNikki\nParis\nPatricia\nPearl\nPhoenix\nRaelyn\nRaquel\nRory\nRosemary\nRyley\nRylynn\nSamira\nShiloh\nSolange\nSonia\nSonya\nTabitha\nTayla\nTaylin\nTrista\nWendy\nXiomara\nYaritza\nZuri\nAda\nAdelina\nAlyse\nAmalia\nAmiah\nAmina\nAmya\nAnaly\nAniah\nAnnalee\nAraya\nAubrianna\nAvianna\nAzariah\nBeatrix\nBetsy\nBonnie\nBreckyn\nBriley\nBritney\nBrook\nBryanna\nCarlie\nCelia\nCharleigh\nCharley\nCharli\nCindy\nClaira\nCollins\nCoral\nCordelia\nCristal\nDahlia\nDelanie\nDemi\nDestinee\nDevin\nDiane\nEileen\nElianna\nElly\nElora\nEmmeline\nEve\nEzra\nFelicity\nGiada\nGillian\nGloria\nHaleigh\nHelen\nImani\nIsabell\nIsadora\nIzabel\nJacquelin\nJaden\nJael\nJazmyne\nJessie\nJewel\nJolene\nJolie\nJoselin\nJustice\nKalea\nKami\nKaris\nKassidy\nKatrina\nKaylin\nKeely\nKenley\nKenya\nKinsey\nKora\nKourtney\nKrista\nKya\nLaylah\nLiberty\nLiv\nMaliah\nMaliyah\nMara\nMarian\nMaribel\nMariella\nMaxine\nMayte\nMicah\nMichaela\nMilagros\nMillie\nNalani\nNathalia\nNichole\nNoemi\nNyla\nPaulina\nPersephone\nRaina\nRaven\nRaya\nRegan\nRilee\nRiver\nRosa\nScarlette\nShania\nSharon\nShaylee\nSiri\nSkye\nTaytum\nVera\nViviana\nYasmin\nYoselin\nYuliana\nZara\nAbilene\nAddilyn\nAdelynn\nAimee\nAislynn\nAlisha\nAlisson\nAmari\nAmilia\nAmirah\nAmiyah\nAnalisa\nAnn\nAnne\nAristea\nArleth\nArya\nAshlin\nAsia\nAubrielle\nAudra\nAyanna\nBarbara\nBreana\nBrenda\nBriseis\nCalista\nCampbell\nCarlee\nCasey\nCharlize\nChristine\nCitlaly\nClarissa\nCleo\nColette\nCoraline\nCristina\nDalila\nDarcy\nDella\nDominique\nElyse\nEmber\nErika\nEssence\nEunice\nEvalyn\nFaye\nGisselle\nGraciela\nHallie\nHartley\nHattie\nHeidy\nHolland\nIvana\nJacquelyn\nJamison\nJanae\nJanet\nJaniya\nJaqueline\nJaya\nJaylene\nJaylin\nJaylyn\nJemma\nJenny\nJournee\nJude\nJulieta\nKailani\nKaleigh\nKali\nKalyn\nKarime\nKarlee\nKarli\nKaryme\nKathia\nKayden\nKaylyn\nKenia\nKennedi\nKianna\nKirsten\nKlara\nKynlee\nKyrie\nLacie\nLeighton\nLeilah\nLeona\nLesley\nLidia\nLilith\nLilyan\nLinnea\nLorelai\nMacey\nMaelle\nMaite\nMakaila\nMarely\nMarlee\nMarlen\nMaryn\nMatilda\nMaylin\nMayra\nMelia\nMeredith\nMiya\nMonique\nNadya\nNatalya\nNathaly\nNylah\nOphelia\nPamela\nReece\nRegina\nRenee\nRosalie\nRoselyn\nRoxanne\nRubie\nSabina\nSaige\nSalem\nSalma\nSavanah\nSaya\nSedona\nShyanne\nSonja\nSoraya\nSumaya\nTanya\nTatianna\nTeegan\nTyler\nVeda\nVenus\nVirginia\nVivianna\nXochitl\nYuna\nZia\nZiva\nOlivia\nSophia\nEmma\nIsabella\nAbigail\nAva\nEmily\nLily\nElizabeth\nElla\nAvery\nChloe\nMia\nMadison\nCharlotte\nAddison\nBrooklyn\nGrace\nEvelyn\nNatalie\nLillian\nHarper\nAmelia\nSofia\nAlexis\nHailey\nHannah\nSamantha\nZoe\nZoey\nAubrey\nAudrey\nVictoria\nRiley\nStella\nNevaeh\nAllison\nAshley\nLayla\nSydney\nLucy\nCamila\nSophie\nGabriella\nClaire\nAnna\nKaylee\nPeyton\nSerenity\nMorgan\nAlexa\nMaya\nViolet\nAlyssa\nArianna\nLeah\nSarah\nScarlett\nAutumn\nBailey\nBrianna\nMadeline\nSavannah\nKatherine\nPayton\nPiper\nTaylor\nEva\nNaomi\nJocelyn\nKylie\nAlexandra\nAndrea\nFaith\nGianna\nBella\nLauren\nAaliyah\nBrooke\nGenesis\nJulia\nMackenzie\nIzabella\nPaige\nLyla\nTrinity\nJasmine\nMolly\nKayla\nLila\nReese\nEleanor\nEllie\nJade\nKhloe\nReagan\nRuby\nAnnabelle\nKennedy\nLilly\nMaria\nMakayla\nValeria\nJosephine\nKimberly\nNatalia\nElena\nIsabelle\nLydia\nAria\nClara\nSadie\nAshlyn\nCaroline\nCora\nEliana\nNora\nRachel\nRylee\nIsabel\nTeagan\nAriana\nAspen\nGenevieve\nHazel\nJordyn\nKeira\nAlice\nBrielle\nBrooklynn\nLeila\nMargaret\nMariah\nEmerson\nMya\nQuinn\nDestiny\nKaitlyn\nVanessa\nVivian\nElise\nEmery\nLiliana\nMadelyn\nDelaney\nIvy\nJessica\nKatelyn\nSienna\nAmaya\nDaisy\nHaley\nHayden\nSkylar\nFinley\nGiselle\nKate\nLaila\nMary\nMila\nSierra\nDaniela\nHadley\nKinley\nAlaina\nAliyah\nCadence\nGabrielle\nKathryn\nKylee\nMelanie\nBrynn\nJuliet\nMegan\nMichelle\nTessa\nAlexandria\nElliana\nIsla\nKendall\nMakenzie\nPenelope\nShelby\nAinsley\nAllie\nCatherine\nGracie\nHaylee\nJordan\nLeslie\nLexi\nAdalyn\nCecilia\nFatima\nGemma\nMakenna\nAdelyn\nAshlynn\nAurora\nLeilani\nMadeleine\nMckenna\nSara\nStephanie\nXimena\nAdriana\nAlison\nAngelina\nBriana\nDanna\nDelilah\nDiana\nGabriela\nHeidi\nJennifer\nLilah\nMaci\nMckenzie\nNicole\nOlive\nPresley\nWillow\nYaretzi\nAlana\nAlondra\nAthena\nAubree\nFiona\nIris\nJillian\nMaggie\nSummer\nAdelaide\nAlexia\nAlivia\nAmy\nCharlie\nEden\nKaren\nMacy\nMiranda\nRose\nVivienne\nAdeline\nAlejandra\nAyla\nDanika\nEmilia\nGeorgia\nJayla\nJuliana\nKaydence\nLondon\nLucia\nSloane\nAlina\nAna\nAnnabel\nEliza\nHope\nJoanna\nKatie\nLuna\nMikayla\nPaisley\nRylie\nValerie\nAngela\nEstrella\nHayley\nLola\nTatum\nAnnabella\nCassidy\nCheyenne\nCrystal\nEvangeline\nFernanda\nJazmine\nJenna\nJosie\nJulianna\nLilliana\nMalia\nMelody\nNorah\nRebecca\nRyleigh\nSabrina\nYareli\nAddyson\nAdrianna\nAngel\nAnnika\nAudrina\nBraelyn\nCallie\nCarolina\nChristina\nDaphne\nElsie\nEvelynn\nJacqueline\nJazmin\nMadilyn\nMallory\nMarissa\nSelah\nValentina\nAbby\nAmber\nAnastasia\nAniyah\nAubrie\nBianca\nCamille\nDanielle\nHarlow\nJada\nKara\nKelsey\nKinsley\nScarlet\nAlicia\nAllyson\nBethany\nBreanna\nBrinley\nCaitlin\nEmber\nGuadalupe\nJane\nJazlyn\nJimena\nJoselyn\nKendra\nKira\nKyla\nKyleigh\nLylah\nParker\nSage\nTenley\nVeronica\nAlayna\nAlessandra\nAngelica\nAngelique\nAnnie\nBrynlee\nChelsea\nDulce\nElsa\nEmely\nHarmony\nKayleigh\nKiara\nLia\nTegan\nViviana\nAda\nAnaya\nBrenna\nCaitlyn\nCeleste\nCharlee\nDakota\nDanica\nElle\nEmmalyn\nGia\nHolly\nKarla\nKyra\nLena\nLiberty\nLillianna\nLilyana\nLyric\nMaddison\nNayeli\nPhoebe\nSawyer\nTabitha\nAdele\nAnnalise\nApril\nAriel\nAriella\nAryanna\nDaniella\nElaina\nElin\nEsther\nJaelynn\nJanessa\nJasmin\nJayden\nJuliette\nKadence\nLogan\nLucille\nMaliyah\nMarley\nMichaela\nMiley\nRebekah\nAddisyn\nAlyson\nAmelie\nAmiyah\nAnahi\nAnika\nAniya\nArely\nCamilla\nCatalina\nDahlia\nDylan\nEsmeralda\nEsperanza\nGiuliana\nHanna\nItzel\nJaelyn\nJayda\nKaelyn\nKamryn\nLexie\nLilianna\nLilyanna\nLindsey\nLorelei\nMelissa\nNoelle\nRuth\nShiloh\nTalia\nAdalynn\nAliana\nAmanda\nAnya\nAvianna\nBridget\nCarly\nDayana\nEmilee\nErin\nEve\nEvie\nGreta\nGwendolyn\nHarley\nHelen\nHelena\nJaylynn\nJoslyn\nJune\nKaia\nKaiya\nKarina\nKelly\nLaura\nMacie\nMariana\nMarin\nMarlee\nNina\nRaegan\nShayla\nTatiana\nThalia\nZoie\nAdelynn\nAileen\nAlissa\nAubriana\nBaylee\nBlake\nBristol\nBryn\nCameron\nCamryn\nCassandra\nCharley\nDana\nElianna\nEloise\nFrancesca\nHayleigh\nIliana\nJazlynn\nJazmyn\nJohanna\nKamila\nKassidy\nKenley\nLacey\nLailah\nLea\nLilian\nMadelynn\nMadilynn\nMadyson\nMarina\nMckinley\nMireya\nMiriam\nNoemi\nRowan\nRyan\nSalma\nSkyler\nSloan\nSonia\nWhitney\nAdrienne\nAmani\nAmara\nAmira\nAngeline\nArabella\nAriadne\nAviana\nBraelynn\nBrittany\nCali\nCourtney\nCynthia\nElyse\nErika\nFrances\nGracelyn\nHadassah\nImani\nIngrid\nIzabelle\nIzzabella\nJaqueline\nJulissa\nKatelynn\nKaylin\nKenzie\nKiley\nLilia\nLillie\nLouisa\nMaleah\nMonica\nMyla\nNadia\nNia\nRiver\nRory\nSavanna\nSerena\nShannon\nSylvia\nTiffany\nZariah\nAbbey\nAddilyn\nAlanna\nAli\nAnne\nAriah\nArya\nAylin\nCarlee\nCarmen\nCaylee\nEdith\nFelicity\nGeraldine\nHailee\nHaleigh\nIreland\nJemma\nKaelynn\nKairi\nKaya\nKenna\nKiana\nKiera\nLillyanna\nLivia\nMadalynn\nMarie\nMarisol\nMikaela\nMilena\nMina\nNathalie\nPhoenix\nQuincy\nSydnee\nTaryn\nTiana\nValencia\nAbbigail\nAbigale\nAimee\nAlex\nAlia\nAliya\nAnabel\nAnalise\nAudriana\nAurelia\nAzalea\nAzariah\nBrenda\nBriella\nBrisa\nCampbell\nCara\nCharleigh\nChristine\nClare\nDevyn\nGiada\nGiana\nGracelynn\nGwyneth\nHalle\nHallie\nIvana\nJamie\nJaycee\nJayde\nJaylee\nJayleen\nJaylin\nJulie\nJuniper\nKailyn\nKennedi\nKimber\nLyra\nMae\nMelany\nMeredith\nNatalee\nNataly\nNatasha\nNola\nPaola\nPatricia\nPaula\nPearl\nPriscilla\nRachael\nRaelynn\nRegina\nRenee\nReyna\nRilynn\nRylynn\nSarai\nSasha\nSelena\nShyla\nSimone\nSunny\nTess\nTinley\nVirginia\nWilla\nYamilet\nAbrielle\nAdilyn\nAiyana\nAlani\nAlannah\nAleena\nAlisson\nAlma\nAmya\nAnabella\nAnabelle\nAnalicia\nAnnabell\nAnnaliese\nAreli\nAverie\nBentley\nBonnie\nBrylee\nCarina\nCharlize\nCiara\nClarissa\nCoral\nDayanara\nDelanie\nDestinee\nElisabeth\nEmerie\nEmersyn\nEsme\nEverly\nFreya\nGalilea\nHaven\nHeather\nHeaven\nIsis\nJacey\nJacquelyn\nJaidyn\nJaliyah\nJanae\nJessie\nJolie\nJoslynn\nJourney\nJoy\nKaitlin\nKaliyah\nKaylie\nKensley\nKinsey\nKourtney\nLainey\nLaurel\nLaylah\nLesly\nLiana\nLinda\nLizeth\nLorelai\nMadisyn\nMaeve\nMakena\nMaren\nMariam\nMaribel\nMaritza\nMarlene\nMarlie\nMaryjane\nMatilda\nMaura\nMeagan\nMiah\nMira\nNorma\nOphelia\nRaina\nRaquel\nRegan\nRemi\nRhea\nRosa\nRyann\nScout\nSelene\nSidney\nSkye\nSonja\nSusan\nTahlia\nTeresa\nTori\nVera\nXiomara\nYesenia\nYoselin\nZaniyah\nAbygail\nAdilene\nAislinn\nAlena\nAliah\nAmerica\nAnalia\nAngie\nAniah\nAshleigh\nAstrid\nAubrianna\nAubrielle\nAveri\nAyden\nAyva\nBailee\nBria\nBrynley\nCarlie\nCasey\nCharli\nCoraline\nDamaris\nDominique\nDrew\nElisa\nEllianna\nElliot\nEmmalee\nEmmaline\nEmmeline\nEmmy\nErica\nFarah\nGloria\nHana\nInara\nJadyn\nJael\nJanelle\nJoseline\nKailee\nKailey\nKalea\nKathleen\nKaylynn\nKenzi\nKeyla\nKora\nKynlee\nLana\nLara\nLariah\nLarissa\nLeia\nLeyla\nLibby\nLindsay\nLiv\nLuciana\nMabel\nMadalyn\nMaia\nMaisie\nMara\nMargot\nMattie\nMercedes\nMicah\nMillie\nMollie\nMoriah\nMyra\nNancy\nNellie\nNova\nNyah\nPaityn\nPaloma\nPamela\nPerla\nRaelyn\nReece\nRenata\nRoxanne\nSally\nSamara\nShaylee\nShayna\nSkyla\nSylvie\nTania\nTrista\nTylee\nYamileth\nAbbie\nAcacia\nAdyson\nAida\nAilyn\nAisha\nAlaya\nAleah\nAlexys\nAlianna\nAmiah\nAnalee\nAndi\nAnnaleigh\nAnnelise\nAnsley\nAraceli\nAryana\nAsha\nAubri\nAudree\nAvalon\nAvalyn\nAven\nAyanna\nAyleen\nAzul\nBelen\nBerkley\nBriar\nBrittney\nBrooklynne\nCaelyn\nCalista\nCalliope\nCapri\nCarissa\nCecelia\nChanning\nCherish\nColette\nCollins\nCordelia\nCorrine\nCristina\nDania\nDarlene\nDavina\nDeborah\nDenisse\nEisley\nEleana\nElia\nElinor\nEliyah\nEllen\nEllery\nElodie\nElora\nEma\nEmi\nEmilie\nEmmalynn\nEstella\nEvalyn\nEvangelina\nFarrah\nFelicia\nGiavanna\nGiovanna\nGisselle\nGraciela\nHattie\nIsabela\nIsabell\nJaden\nJaida\nJalyn\nJaylah\nJaylene\nJayna\nJayne\nJenny\nJocelynn\nJohana\nJolene\nJordynn\nJudith\nKai\nKaitlynn\nKali\nKarlee\nKarly\nKatarina\nKayden\nKendal\nKensington\nKimberlee\nKristin\nKristina\nKyara\nKylah\nKyrie\nLaney\nLauryn\nLeanna\nLesley\nLexus\nLianna\nLillia\nLilyann\nLizbeth\nLluvia\nLondyn\nLorena\nMagnolia\nMaryam\nMaryn\nMeadow\nMilana\nMiya\nNadine\nNeveah\nNikki\nNoelia\nPatience\nPaulette\nPeighton\nPenny\nRaven\nReilly\nRio\nRocio\nRosemary\nRubi\nSabine\nSariah\nSavanah\nScarlette\nShania\nShea\nSonya\nStevie\nTaelyn\nTaylee\nTinsley\nToni\nTristan\nVianey\nWendy\nYadira\nYarely\nYareni\nYaritza\nYuliana\nZaida\nZaira\nZara\nEmma\nSophia\nOlivia\nIsabella\nAva\nAbigail\nEmily\nAvery\nEvelyn\nMia\nElizabeth\nHarper\nMadison\nElla\nCharlotte\nLily\nGrace\nAddison\nAmelia\nZoey\nLillian\nNatalie\nChloe\nZoe\nHannah\nBrooklyn\nSofia\nClaire\nVictoria\nAubrey\nSamantha\nSavannah\nLayla\nStella\nHailey\nAnna\nTaylor\nAaliyah\nLucy\nSarah\nCamila\nRiley\nAlexis\nBailey\nSerenity\nArianna\nAshley\nAudrey\nEva\nMaya\nAlyssa\nKaylee\nSophie\nScarlett\nBrooke\nPiper\nAnnabelle\nLeah\nAlexandra\nEliana\nLiliana\nMackenzie\nAllison\nAria\nNaomi\nKatherine\nSydney\nPeyton\nAlexa\nAutumn\nNevaeh\nGabriella\nEllie\nHazel\nReagan\nRuby\nMila\nMorgan\nGenesis\nViolet\nClara\nRylee\nJulia\nPayton\nCora\nNora\nMaria\nMya\nReese\nElise\nIsabel\nAriana\nBrianna\nFaith\nKayla\nMadelyn\nMadeline\nPenelope\nIsabelle\nJasmine\nKimberly\nLydia\nAndrea\nBella\nElena\nJade\nQuinn\nAspen\nEmerson\nPaige\nGianna\nLauren\nJosephine\nLilly\nNatalia\nEleanor\nKylie\nPaisley\nBrooklynn\nDelilah\nIzabella\nMakayla\nTrinity\nHadley\nJocelyn\nKhloe\nLyla\nMolly\nVivian\nBrielle\nCaroline\nEmery\nJordyn\nKatelyn\nAlice\nAliyah\nKennedy\nLila\nValeria\nSadie\nSkylar\nKendall\nMariah\nNicole\nVanessa\nIvy\nLilliana\nRachel\nMelanie\nAshlyn\nDaisy\nGenevieve\nKeira\nLuna\nPresley\nAmaya\nGracie\nIsla\nNorah\nAdalyn\nCharlie\nHaley\nHope\nKaitlyn\nAshlynn\nAubree\nAyla\nCatherine\nDelaney\nJennifer\nKate\nLilah\nMary\nSara\nArabella\nElliana\nTeagan\nAnastasia\nCamille\nEden\nFiona\nLeilani\nMegan\nMiranda\nBrynn\nJayla\nKinley\nMakenna\nMckenna\nSierra\nVeronica\nAdelaide\nAlexandria\nGabrielle\nGiselle\nHayden\nJacqueline\nJordan\nJuliet\nLondon\nMakenzie\nTatum\nTessa\nAdeline\nAdelyn\nAngelina\nCecilia\nEmilia\nHeidi\nJoanna\nMckenzie\nMichelle\nWillow\nAmber\nAthena\nCadence\nFinley\nKathryn\nNayeli\nXimena\nAnnabella\nKaia\nKinsley\nLola\nAlexia\nAurora\nEliza\nJenna\nJillian\nJuliana\nKenzie\nKylee\nYaretzi\nAinsley\nAlana\nAlondra\nAna\nCallie\nElsie\nGemma\nItzel\nJosie\nKaydence\nKira\nLaila\nLexi\nLyric\nMadilyn\nMelissa\nMelody\nOlive\nRebecca\nRyleigh\nShelby\nAdriana\nAlaina\nAlicia\nAlivia\nAmy\nAniyah\nAnnika\nDakota\nElsa\nEvangeline\nGabriela\nMaggie\nPhoebe\nValentina\nAlina\nCassandra\nDestiny\nEloise\nEmmalyn\nIris\nJessica\nJulianna\nLeslie\nNadia\nRosalie\nAmara\nAngel\nDaniela\nDanielle\nElyse\nLena\nMadeleine\nMargaret\nMarley\nNina\nNoelle\nRebekah\nRowan\nAdalynn\nAdelynn\nAlison\nCassidy\nDiana\nEmber\nEvelynn\nHolly\nJuliette\nJulissa\nKyla\nLeila\nMacie\nMadelynn\nMikayla\nMyla\nSienna\nSkyler\nAngelica\nAngelique\nAnnalise\nAnya\nAylin\nBrynlee\nCarly\nMaci\nNatasha\nRylie\nStephanie\nValerie\nAdrianna\nAllyson\nAnnie\nBristol\nCharlee\nChelsea\nDahlia\nDaniella\nDaphne\nGeorgia\nJada\nKiera\nLucia\nLucille\nMaddison\nMariana\nMckinley\nMiley\nSabrina\nAileen\nAiyana\nAlayna\nAlejandra\nBraelyn\nHaylee\nJordynn\nKendra\nRose\nVivienne\nZoie\nAddisyn\nAriel\nAriella\nBeatrice\nBianca\nBriana\nBridget\nBrinley\nElle\nEsmeralda\nFernanda\nGreta\nHarmony\nJayden\nJazlyn\nJazmine\nKara\nKatie\nLilian\nLilyana\nMatilda\nParker\nRaelynn\nRaina\nSelah\nSummer\nYareli\nAliya\nAmelie\nAnabelle\nArya\nAveri\nCaitlin\nCamryn\nDylan\nElianna\nGuadalupe\nHarley\nHelen\nJulie\nKadence\nKaya\nLorelei\nMacy\nMae\nMalia\nMarissa\nPerla\nSherlyn\nTalia\nAddyson\nAmanda\nAmya\nAnahi\nAubrie\nAudrina\nBethany\nCarolina\nEverly\nFatima\nFelicity\nHarlow\nHayley\nJasmin\nJulianne\nKelsey\nKiley\nKyra\nLana\nLia\nLilyanna\nRaegan\nRaelyn\nReyna\nRiver\nSarai\nSariah\nScarlet\nSimone\nSylvia\nTegan\nTenley\nVera\nWinter\nAbby\nAnaya\nAnika\nAnne\nApril\nBlakely\nCarmen\nCeleste\nCharli\nEdith\nElisabeth\nEmely\nEmersyn\nErin\nEsther\nEvie\nJane\nJayde\nJaylah\nJoselyn\nJuniper\nKaelyn\nKarina\nKatelynn\nKenia\nKyleigh\nLaura\nLiberty\nLondyn\nNataly\nRuth\nSage\nSasha\nSavanna\nSiena\nAbrielle\nAlanna\nAliana\nAllie\nAmalia\nAnalia\nAyleen\nBailee\nBraylee\nBriella\nBrittany\nCaitlyn\nCali\nCecelia\nCharley\nCheyenne\nClementine\nCrystal\nDanica\nDanika\nElin\nElisa\nElora\nEsperanza\nEstrella\nEtta\nGia\nHelena\nJamie\nJaylynn\nJazmin\nKamila\nKaren\nKaylin\nKaylynn\nLilianna\nLogan\nMallory\nMarie\nMarlee\nMiriam\nNova\nPaloma\nPaola\nRyan\nSelena\nShiloh\nTeresa\nTiffany\nViviana\nYamileth\nYesenia\nAdilynn\nAdley\nAmina\nAnabella\nArely\nAshleigh\nAubriella\nAudriana\nAustyn\nAzalea\nBaylee\nBlake\nCataleya\nCatalina\nCelia\nChristina\nCourtney\nDayana\nElaina\nErica\nGiuliana\nGloria\nGracelyn\nHattie\nHaven\nIsis\nJaelyn\nJaqueline\nJaycee\nJaylee\nJayleen\nJohanna\nJune\nKamryn\nKayleigh\nKenya\nKiana\nKimber\nLacey\nLillianna\nLiv\nLyra\nMarilyn\nMichaela\nMyah\nNaia\nPenny\nRegina\nShayla\nShaylee\nSidney\nSloane\nSonia\nSunny\nVirginia\nAda\nAlannah\nAlessandra\nAlissa\nAlma\nAmani\nAmiah\nAngela\nAryana\nAubrianna\nAurelia\nAven\nAviana\nBraelynn\nBrenna\nBryanna\nDanna\nEllen\nElliot\nEmelia\nGretchen\nJadyn\nJimena\nJourney\nKailey\nKaitlin\nKaiya\nKassidy\nKatalina\nKathleen\nKaylie\nKiara\nLindsay\nLindsey\nLivia\nMaeve\nMagnolia\nMaliyah\nMara\nMargot\nMarin\nMckayla\nMelina\nMercedes\nMiah\nMira\nNancy\nNola\nPriscilla\nQuincy\nReece\nSamara\nSawyer\nSerena\nSpencer\nTabitha\nTiana\nYoselin\nAbigayle\nAbriella\nAdele\nAdrienne\nAimee\nAleah\nAlianna\nAlly\nAmari\nAnaleah\nAniah\nAriah\nAudrianna\nAverie\nCameron\nCara\nCharlize\nCynthia\nDelia\nDulce\nElliott\nEllis\nEmmeline\nEsme\nEve\nGiana\nGwendolyn\nHanna\nHaylie\nJaylene\nJazlynn\nJazmyn\nJemma\nJoslyn\nKailee\nKayden\nKristina\nLacie\nLainey\nLauryn\nLeighton\nLorelai\nMadalyn\nMaia\nMaliah\nMelany\nNatalee\nNeveah\nNoemi\nOakley\nPearl\nRosa\nRosemary\nSaige\nSaphira\nWilla\nZara\nZia\nAdelina\nAdilyn\nAislinn\nAlani\nAlia\nAmiyah\nAngie\nAnnabell\nAubriana\nAzul\nBentley\nBlair\nBreckyn\nBrenda\nBrisa\nBrynley\nCailyn\nCambria\nCarissa\nCarla\nClarissa\nColette\nCorinne\nEllery\nEmiliana\nEmmaline\nEmmy\nEstelle\nFreya\nFrida\nGalilea\nGracelynn\nIliana\nIsabela\nJaelynn\nJanessa\nJayda\nJocelynn\nJolie\nJovie\nJoy\nJulieta\nJustice\nKali\nKarla\nLailah\nLaurel\nLexie\nLiana\nLisa\nLitzy\nLizbeth\nLuciana\nLucinda\nMabel\nMadalynn\nMadisyn\nMaren\nMaxine\nMillie\nMollie\nMonica\nNalani\nPaulina\nPhoenix\nPoppy\nRaleigh\nRemi\nRenee\nRylan\nShea\nSkye\nSusan\nTara\nTaryn\nTatiana\nTeegan\nVivianna\nYarely\nYuliana\nZaria\nZooey\nAbbigail\nAbigale\nAislynn\nAiyanna\nAlayah\nAleena\nAniya\nAnnabel\nAnneliese\nAnnelise\nAriadne\nAryanna\nAsha\nAshtyn\nAvani\nAvianna\nBrylee\nCamilla\nCarlie\nCasey\nCaydence\nCharis\nCharleigh\nCherish\nChevelle\nCiara\nClaudia\nCoraline\nDana\nDelainey\nDorothy\nDrew\nElayna\nEldana\nElia\nEmmalee\nEmmalynn\nErika\nEvangelina\nGeraldine\nGiada\nHeaven\nHolland\nInara\nIreland\nIzabelle\nJaiden\nJanelle\nKarissa\nKarli\nKaterina\nKatrina\nKeely\nKelly\nKya\nKylah\nLaylah\nLeticia\nLilia\nLilli\nLillyana\nLina\nLizeth\nLucie\nLuisa\nLylah\nMaiya\nMarianna\nMarlowe\nMayte\nMeredith\nNathalie\nNoa\nNyah\nPaula\nPrecious\nPreslee\nRamona\nRaylynn\nRegan\nReina\nScout\nSelene\nSheyla\nSloan\nSuri\nTinley\nTori\nVianney\nWhitney\nYaneli\nYaritza\nYasmin\nZahra\nZariah\nZiva\nZuri\nAbagail\nAbygail\nAcacia\nAddie\nAdyson\nAisha\nAlanah\nAli\nAlisha\nAlisson\nAlysha\nAlyson\nAmariah\nAmayah\nAmerica\nAnabel\nAnayeli\nAnela\nAngeline\nAnnamarie\nAnsley\nArabelle\nAreli\nArielle\nArmani\nAspyn\nAvril\nAya\nAyva\nAzariah\nBayleigh\nBelle\nBerkley\nBrea\nBreanna\nBria\nBrighton\nBryce\nCaelyn\nCalla\nCarina\nCarlee\nCarson\nChelsey\nCielo\nCitlaly\nClover\nColbie\nCollins\nCoralee\nDalia\nDamaris\nDanni\nDarcy\nDarlene\nDavina\nDeborah\nDenise\nDiya\nEileen\nEllison\nEmi\nEmilee\nEstella\nEvelin\nFinnley\nFrances\nGwyneth\nHadlee\nHailee\nHalle\nHeather\nImani\nIrene\nIvanna\nIvory\nJacey\nJaida\nJaneth\nJaslyn\nJazelle\nJessa\nJolene\nKailani\nKairi\nKalea\nKallie\nKamdyn\nKarma\nKaylyn\nKendyl\nKenley\nKenna\nKianna\nKlara\nKora\nKrista\nKynlee\nLea\nLeia\nLilith\nLinnea\nLove\nMaddie\nMargaux\nMariam\nMarisol\nMaritza\nMariyah\nMarlene\nMarlo\nMaryjane\nMercy\nMilana\nMilena\nMireya\nMonroe\nMoriah\nNathaly\nNia\nNoelani\nNylah\nPaityn\nParis\nPatricia\nPayten\nRain\nRayna\nRilyn\nRobin\nRory\nRosie\nSanvi\nSarahi\nShyann\nSilvia\nSkyla\nSkylee\nSonja\nStevie\nTesla\nTyler\nViola\nWendy\nWren\nYadira\nYaretzy\nYvette\nZaniyah\nOlivia\nEmma\nSophia\nAva\nIsabella\nAbigail\nMia\nEmily\nAvery\nEvelyn\nCharlotte\nAmelia\nElizabeth\nHarper\nGrace\nElla\nLily\nHannah\nMadison\nSofia\nZoe\nAddison\nZoey\nLillian\nChloe\nBrooklyn\nNatalie\nCamila\nViolet\nClaire\nLucy\nScarlett\nAnna\nLayla\nSamantha\nMaya\nAubrey\nSavannah\nAlexis\nVictoria\nAudrey\nRiley\nRuby\nAaliyah\nStella\nAllison\nAria\nCora\nKaylee\nAnnabelle\nEleanor\nEllie\nMila\nSadie\nHailey\nNevaeh\nSerenity\nArianna\nHadley\nPenelope\nSydney\nCaroline\nNora\nPiper\nLydia\nJosephine\nMackenzie\nSophie\nAutumn\nBrooke\nPeyton\nGabriella\nAriana\nHazel\nRylee\nAlexa\nAlice\nBailey\nEliana\nEva\nKatherine\nIvy\nLeah\nMadelyn\nMadeline\nGenesis\nLiliana\nNaomi\nSarah\nAlexandra\nClara\nTaylor\nAshley\nMolly\nReagan\nAspen\nPaige\nPaisley\nQuinn\nLyla\nLauren\nBella\nBrianna\nReese\nElena\nJocelyn\nVivian\nFaith\nEmery\nIsabelle\nJulia\nKennedy\nBrielle\nMorgan\nTrinity\nMaria\nGianna\nJade\nAlyssa\nAubree\nKate\nIsabel\nPayton\nDelilah\nLila\nMakayla\nNatalia\nNicole\nBrooklynn\nKylie\nMelanie\nGenevieve\nKayla\nSkylar\nKaitlyn\nNorah\nAdalynn\nAdelyn\nMary\nMya\nEmilia\nTeagan\nAdelaide\nAliyah\nAmaya\nAndrea\nArabella\nIsla\nMargaret\nEliza\nKimberly\nOlive\nAlexia\nAyla\nDelaney\nElise\nIzabella\nCharlie\nEden\nEmerson\nJasmine\nKeira\nLeilani\nLilly\nValeria\nWillow\nAshlyn\nDestiny\nJordyn\nKinsley\nLuna\nYaretzi\nAinsley\nKatelyn\nVanessa\nAmy\nXimena\nAdalyn\nAdeline\nHaley\nHayden\nJessica\nMariah\nAriel\nJacqueline\nLaila\nLola\nPresley\nRebecca\nSummer\nAshlynn\nGabrielle\nIris\nJuliet\nKendall\nLilliana\nMegan\nRose\nCadence\nJayla\nJordan\nKhloe\nLucille\nMakenzie\nMckenzie\nMelody\nAlexandria\nJosie\nKenzie\nRachel\nAngelina\nBrynn\nKendra\nKylee\nLexi\nMakenna\nMckenna\nTatum\nAlivia\nAthena\nCassidy\nCecilia\nEvangeline\nGracie\nHope\nJaylah\nKinley\nLeila\nMelissa\nRaelynn\nSara\nShelby\nValentina\nAurora\nDaisy\nElliana\nElsie\nGemma\nMaggie\nMckinley\nParker\nAdriana\nAdrianna\nAlaina\nAlison\nAllie\nAniyah\nBrynlee\nCamille\nFiona\nJulianna\nJune\nKyla\nMadeleine\nMiranda\nEloise\nJennifer\nKathryn\nLena\nLeslie\nLondon\nAlessandra\nAna\nDaniela\nElaina\nEverly\nFinley\nGabriela\nHaylee\nJuliana\nLilah\nLondyn\nMarley\nNayeli\nRyleigh\nTessa\nCharlee\nColette\nFatima\nGeorgia\nGiselle\nSawyer\nAlana\nAlina\nAnastasia\nAnnalise\nAnnika\nArya\nCatherine\nDanielle\nEmber\nJuliette\nJulissa\nMalia\nMichelle\nPhoebe\nScarlet\nStephanie\nAlayna\nAlicia\nAnnabella\nAnya\nBlake\nDahlia\nHarlow\nHarmony\nJoanna\nJuniper\nKaia\nKatie\nKira\nLana\nMikayla\nRaegan\nSage\nSierra\nTalia\nVivienne\nAddyson\nAngel\nAngelica\nCarolina\nDiana\nEmersyn\nErin\nEsperanza\nItzel\nJimena\nKamryn\nKyra\nLucia\nMaddison\nMadilyn\nMariana\nMarissa\nNina\nRylan\nSienna\nSloane\nVeronica\nAlondra\nAngela\nAnnie\nAriah\nAverie\nCecelia\nCharley\nCoraline\nElle\nEvelynn\nEvie\nKadence\nKara\nNataly\nRuth\nValerie\nAlyson\nApril\nArielle\nAurelia\nBristol\nCheyenne\nChristina\nFernanda\nFrancesca\nGuadalupe\nHanna\nHeidi\nJada\nKaydence\nKiara\nLuciana\nMadelynn\nMarlee\nNoelle\nRiver\nRosalie\nRylie\nSelena\nTenley\nAdelina\nBrinley\nCatalina\nDaleyza\nElsa\nEmmalyn\nEve\nFelicity\nGloria\nGracelyn\nHarley\nJaelyn\nJane\nJillian\nJoy\nKimber\nLia\nMacy\nMelany\nMeredith\nMiriam\nMyla\nSylvia\nAda\nAlejandra\nAliana\nAmanda\nAnahi\nBlakely\nBriana\nBriella\nCaitlyn\nChelsea\nDakota\nDanna\nDaphne\nDylan\nElin\nEstrella\nGwendolyn\nHolly\nKali\nKelsey\nLaura\nLexie\nLillianna\nNadia\nNova\nWinter\nWren\nAdelynn\nAleah\nAnabella\nAnabelle\nAnnabel\nAriella\nAylin\nBridget\nCamryn\nCarmen\nCeleste\nDaniella\nDulce\nEsther\nEtta\nGia\nGreta\nHaven\nJayda\nJazmine\nJourney\nKassidy\nKaya\nKora\nLogan\nMatilda\nMelina\nMichaela\nParis\nRegan\nRowan\nSelah\nSkyler\nAisha\nAlanna\nAllyson\nAmelie\nAmia\nAryanna\nCaitlin\nCamilla\nCharli\nCorinne\nCourtney\nElianna\nFreya\nHelena\nIsis\nJayden\nJazlyn\nJenna\nJoselyn\nKaren\nKiera\nLeia\nLeighton\nLeticia\nMaci\nMae\nMaeve\nMagnolia\nMallory\nMira\nPaloma\nRaven\nRebekah\nRilynn\nRyan\nSamara\nSarai\nSkyla\nTegan\nTess\nVera\nZoie\nAbby\nAmber\nAnika\nAniya\nAnneliese\nAubrie\nAven\nAviana\nBaylee\nBeatrice\nBianca\nCecily\nCosette\nDayana\nGracelynn\nHalle\nHelen\nJamie\nJanessa\nJayleen\nJaylynn\nJemma\nJoslyn\nJulie\nKailey\nKarla\nKenley\nLacey\nLaurel\nLiberty\nLillyanna\nLilyana\nMabel\nMadilynn\nMarie\nMyah\nNola\nPearl\nPerla\nPoppy\nRaelyn\nSasha\nSavanna\nScarlette\nSerena\nSonya\nStory\nViviana\nYareli\nYaretzy\nAbbey\nAddisyn\nAlaya\nAlma\nAmiyah\nAngelique\nAudra\nAzalea\nAzul\nCallie\nCampbell\nCarly\nCataleya\nEileen\nElisa\nEmmalee\nGiana\nHallie\nHayley\nHenley\nIngrid\nJasmin\nJazlynn\nJessie\nKamila\nKayleigh\nKaylie\nKenia\nLaylah\nLeyla\nLilianna\nLylah\nMakena\nMarilyn\nMarin\nMartha\nNathaly\nNylah\nPriscilla\nRayna\nRosemary\nRoxanne\nSariah\nSkye\nSloan\nTemperance\nThea\nViolette\nWilla\nAbril\nAdilynn\nAlena\nAlia\nAlyvia\nAmari\nAmerica\nAngie\nAnnelise\nAraceli\nAubriana\nAubrianna\nBeatrix\nBraelyn\nBree\nBrenna\nBria\nBritney\nBryn\nCarolyn\nCharlize\nCiara\nClaira\nClare\nCynthia\nDalilah\nDanika\nDarby\nEdith\nEllianna\nElliot\nElliott\nEllis\nEmilie\nEmmalynn\nEsmeralda\nEverleigh\nFrances\nHadassah\nHayleigh\nIlliana\nIreland\nIzzabella\nJolene\nJustice\nKaiya\nKaylynn\nLauryn\nLilith\nLilyanna\nLindsey\nLivia\nLorelai\nLouisa\nMadalyn\nMariam\nMilana\nMillie\nNatasha\nPaola\nRaquel\nRegina\nRemy\nReyna\nRory\nSaige\nSarahi\nSherlyn\nSiena\nVienna\nVivien\nWhitney\nYamileth\nYaritza\nZendaya\nZia\nAbrianna\nAdalie\nAdalina\nAileen\nAimee\nAli\nAlisa\nAlly\nAmira\nAmirah\nAnaya\nAnayah\nAnne\nArely\nAshtyn\nAubriella\nAubrielle\nAudrina\nAvalyn\nBailee\nBethany\nBrittany\nBrylee\nCameron\nCassandra\nClarissa\nClover\nCrystal\nDallas\nDavina\nDiya\nElisabeth\nEllen\nErika\nFarrah\nGiada\nGrecia\nGwyneth\nHadleigh\nHattie\nHeaven\nHolland\nHunter\nImani\nIsabela\nIvory\nIzabelle\nJanelle\nJohanna\nJordynn\nKailyn\nKatelynn\nKathleen\nKayden\nKaylin\nKelly\nKenya\nKiley\nKristina\nKrystal\nLaney\nLeena\nLeona\nLilia\nLilian\nLillyana\nLina\nLizeth\nLluvia\nLorelei\nLucie\nLyric\nMaia\nMaisie\nMaliyah\nMaren\nMargot\nMaryjane\nMeghan\nMiah\nMireya\nOakley\nPyper\nReina\nRenata\nRoslyn\nSabrina\nScout\nSylvie\nTori\nAbbigail\nAbrielle\nAkira\nAleena\nAliza\nAlthea\nAmara\nAnalia\nAngeline\nAnnaliese\nAreli\nAvah\nAyanna\nAyleen\nBarbara\nBelen\nBelle\nBriley\nBrynley\nCaelyn\nCali\nCambria\nCamdyn\nChevelle\nChristine\nDanica\nDenise\nDesiree\nDorothy\nEiza\nElyse\nEmerie\nEmmaline\nEmmeline\nEmmerson\nEvalyn\nEvangelina\nFinnley\nFrankie\nGiuliana\nGwenyth\nHana\nIsabell\nJaelynn\nJaiden\nJanney\nJaycee\nJaylee\nJaylene\nJazmin\nKai\nKarina\nKarsyn\nKatalina\nKensington\nLailah\nLaine\nLea\nLeanna\nLela\nLennon\nLiana\nLisa\nLizbeth\nMadisyn\nMadyson\nMaisy\nMaliah\nMaryam\nMika\nMilagros\nMilena\nMiley\nMilla\nMiracle\nNalani\nNathalie\nNellie\nNeve\nNeveah\nNoa\nNoemi\nNyla\nOpal\nOphelia\nPriya\nRaina\nRenee\nShiloh\nSimone\nSunny\nTesla\nThalia\nTheresa\nVida\nVivianna\nWendy\nXochitl\nYara\nYesenia\nZaida\nZaniyah\nZelda\nZuri\nAbagail\nAbigayle\nAbygail\nAdamari\nAdele\nAdella\nAdrienne\nAeris\nAilyn\nAiyanna\nAlayah\nAlexandrea\nAlianna\nAlisson\nAlora\nAmalia\nAmaris\nAmina\nAmya\nAnabel\nAnalise\nAnaliyah\nAnnabell\nAnnabeth\nAnnaleigh\nAnniston\nArabelle\nAracely\nAriadne\nArleth\nAryana\nAvani\nAvianna\nBergen\nBillie\nBrisa\nBrookelyn\nBrookelynn\nBrooklynne\nBrynna\nCarmela\nCarsyn\nCharis\nClaudia\nDarcy\nDayanna\nDeborah\nDelia\nDevyn\nDominique\nEllena\nEllison\nEmberly\nEmely\nEmmie\nEmory\nErica\nEsme\nEstella\nEstelle\nEver\nEverlee\nFatimah\nGeraldine\nHartley\nIla\nIliana\nImogen\nIrene\nIsadora\nJacquelyn\nJaida\nJanely\nJenny\nJessa\nJocelynn\nJosselyn\nKacie\nKaelyn\nKailynn\nKaitlin\nKalea\nKalina\nKaliyah\nKarissa\nKataleya\nKaterina\nKatrina\nKatya\nKaycee\nKenna\nKensley\nKhaleesi\nKianna\nKinlee\nKinzley\nKristen\nKyleigh\nKyndal\nLainey\nLeela\nLili\nLiv\nLyra\nMacie\nMaite\nMalaya\nMaleah\nMarisol\nMarlowe\nMaylee\nMayrin\nMckayla\nMeadow\nMeela\nMercedes\nMikaela\nMina\nMollie\nMonroe\nMylah\nMyra\nNancy\nNariah\nNatalee\nNathalia\nNeela\nPaityn\nPepper\nPhoenix\nRamona\nRavyn\nRebeca\nRemington\nRhea\nRosa\nRubi\nRyann\nRylynn\nSalma\nSapphire\nSelene\nShea\nSky\nSofie\nSonia\nTaliyah\nTara\nTaryn\nVada\nVirginia\nWynter\nYamilet\nYasmin\nYoselin\nYuliana\nZahra\nZara\nZariah\nZaya\nZayla\nOlivia\nEmma\nSophia\nIsabella\nEvelyn\nAvery\nMia\nCharlotte\nAva\nEmily\nHarper\nAbigail\nSofia\nElizabeth\nGrace\nAmelia\nLily\nElla\nMadison\nAddison\nLillian\nBrooklyn\nZoey\nAria\nNatalie\nChloe\nScarlett\nVictoria\nHannah\nClaire\nSadie\nZoe\nAnna\nEleanor\nStella\nAubrey\nAudrey\nAllison\nCamila\nPenelope\nEllie\nPiper\nLayla\nRuby\nLucy\nAlexis\nAnnabelle\nSamantha\nViolet\nHazel\nRiley\nGabriella\nNora\nCora\nMila\nAlexa\nAspen\nPeyton\nSavannah\nEliana\nQuinn\nAriana\nArianna\nEva\nLydia\nAaliyah\nCaroline\nMadeline\nAlexandra\nKylie\nMadelyn\nNaomi\nReagan\nIsabelle\nGenesis\nLeah\nPaisley\nMaya\nAutumn\nKennedy\nSerenity\nTrinity\nXimena\nLiliana\nHailey\nVivian\nClara\nDaleyza\nSophie\nIvy\nWillow\nBailey\nSydney\nAdalynn\nJosephine\nNevaeh\nHadley\nTaylor\nIsabel\nKatherine\nMackenzie\nBrooke\nEmery\nGianna\nPaige\nEverly\nFaith\nIsla\nKimberly\nMaria\nOlive\nPayton\nAlice\nBella\nJulia\nMolly\nBrianna\nIzabella\nMorgan\nAlyssa\nElena\nRylee\nAshley\nAthena\nLauren\nLuna\nSarah\nLyla\nBrooklynn\nDelilah\nKaitlyn\nSkylar\nArya\nEmerson\nGracie\nKayla\nKaylee\nLila\nNorah\nAndrea\nArabella\nEden\nElise\nMya\nAdeline\nAdelyn\nFinley\nJocelyn\nMelanie\nAubree\nJasmine\nLilly\nLondon\nBrielle\nKinley\nFiona\nLena\nMary\nReese\nValeria\nAliyah\nAnastasia\nCecilia\nAurora\nEmilia\nMargaret\nMelody\nNicole\nGenevieve\nHayden\nKinsley\nAdelaide\nCharlie\nIris\nAdalyn\nJade\nNoelle\nVanessa\nVivienne\nAda\nLaila\nPresley\nTeagan\nAlana\nKeira\nLola\nMakayla\nNatalia\nSloane\nHaley\nJordyn\nJune\nMckenna\nBrynlee\nLexi\nRebecca\nSara\nAmaya\nDaisy\nEliza\nEloise\nEsther\nGemma\nJuliana\nMadeleine\nAmy\nAriel\nCassidy\nCatherine\nElsa\nJacqueline\nLeilani\nMariah\nMegan\nNova\nTessa\nAdriana\nAlina\nAngela\nAngelina\nDelaney\nEvangeline\nGabrielle\nJosie\nJulianna\nKatelyn\nKendall\nKendra\nLeila\nLilliana\nLucille\nRachel\nSienna\nAdelynn\nCallie\nElsie\nKenzie\nMckenzie\nShelby\nTatum\nAinsley\nAlayna\nAyla\nAylin\nColette\nElliana\nGeorgia\nHope\nJuniper\nKate\nKhloe\nLilah\nLucia\nRose\nSawyer\nValentina\nAlexandria\nAniyah\nAshlyn\nCadence\nJimena\nMaggie\nMelissa\nSierra\nYaretzi\nAlexia\nCataleya\nDanielle\nDestiny\nElaina\nElle\nEmber\nEve\nFatima\nJennifer\nLeslie\nMckinley\nParker\nRaegan\nAdelina\nAlaina\nAmber\nAnnabella\nBrynn\nDaniela\nJane\nJillian\nKiara\nMaddison\nMakenzie\nRosalie\nAshlynn\nBaylee\nDaniella\nEsmeralda\nHeidi\nJaylah\nKira\nKyla\nMacy\nMadilyn\nMarley\nMiriam\nRuth\nRyleigh\nSage\nAnahi\nElliot\nHarley\nHaylee\nJordan\nJuliet\nLorelei\nMakenna\nMiranda\nNina\nSummer\nAlivia\nAnnika\nCali\nCamille\nCheyenne\nEmmalyn\nEvelynn\nFernanda\nGabriela\nHarmony\nHaven\nJessica\nJuliette\nKaia\nMacie\nNayeli\nPhoebe\nRiver\nSelah\nAllie\nAlondra\nAnnie\nAzalea\nBeatrice\nDakota\nFreya\nGreta\nHolly\nIsis\nJenna\nKaydence\nLexie\nMariana\nMichelle\nNadia\nRebekah\nRowan\nTalia\nVera\nAna\nBianca\nBriana\nCamilla\nDanika\nHarlow\nItzel\nKatie\nLiana\nLillie\nMaci\nMadilynn\nSkyler\nWinter\nAddisyn\nAlicia\nAlison\nAmari\nAverie\nBrinley\nCamryn\nCatalina\nCollins\nDahlia\nElisabeth\nEmersyn\nGracelyn\nGwendolyn\nHelen\nJaylene\nJazmine\nKathryn\nKylee\nLaura\nLia\nLilith\nMabel\nMadelynn\nPaislee\nRyan\nSkye\nSylvia\nThalia\nWilla\nAdrianna\nAlejandra\nAmara\nAnya\nAurelia\nBlake\nBlakely\nBria\nBriella\nBrylee\nCharley\nDiana\nDylan\nEllen\nEmory\nFelicity\nGia\nHelena\nHenley\nJaelynn\nJayleen\nJaylynn\nJulissa\nKadence\nKali\nKara\nKyra\nLeighton\nLylah\nMyla\nRaelynn\nStephanie\nValerie\nAddyson\nAliana\nAlyson\nAmanda\nAngelique\nAnnabel\nApril\nAriella\nAviana\nCecelia\nCeleste\nDanica\nDaphne\nEsperanza\nEvie\nJada\nJanessa\nJayden\nJazlyn\nJohanna\nKimber\nSabrina\nSelena\nShiloh\nViviana\nYareli\nAbby\nAllyson\nAlma\nAmiyah\nAngel\nAriah\nAubriella\nAudrina\nAyleen\nBelle\nCambria\nCarolina\nChelsea\nDana\nElliott\nElyse\nEmilee\nFrida\nGiselle\nHanna\nHeaven\nJayda\nJayla\nJazmin\nJemma\nJoanna\nJourney\nJoy\nLana\nLiberty\nLilyana\nLindsay\nMacey\nMae\nMaeve\nMaia\nMalia\nMara\nMichaela\nMikayla\nNatalee\nPhoenix\nRylie\nSarai\nSiena\nTaryn\nAddilyn\nAleena\nAlessandra\nAlianna\nAmiah\nAnnaliese\nAnnalise\nAranza\nAubrie\nAven\nBethany\nBristol\nCarly\nCassandra\nCharlee\nCharleigh\nCharli\nCiara\nEdith\nEsme\nEstrella\nGracelynn\nJamie\nJoslyn\nJulie\nKaren\nKassidy\nKaylin\nKiera\nLacey\nLaurel\nLaylah\nLilia\nLilianna\nLindsey\nLivia\nLondyn\nMaleah\nMargot\nMarie\nMatilda\nMillie\nMireya\nMonica\nMyra\nOakley\nRemi\nScarlet\nSloan\nTemperance\nZariah\nAliyana\nAmani\nAmelie\nAnabel\nAnabelle\nAnaya\nAngelica\nAnne\nArely\nBridget\nBrittany\nBryanna\nBryn\nCaitlyn\nCarmen\nChristina\nDanna\nElin\nEmely\nEmmaline\nEmmy\nErin\nEstelle\nFinnley\nFrankie\nHailee\nHallie\nJanelle\nJessa\nKailyn\nKamila\nKelly\nKenya\nLainey\nLyric\nMagnolia\nMaisy\nMaren\nMarin\nMelany\nMira\nPatricia\nPearl\nPoppy\nRemington\nRenata\nTatiana\nVeronica\nWren\nZoie\nAbril\nAdalee\nAdamaris\nAdela\nAdilynn\nAlanna\nAleah\nAmya\nAnnabeth\nAnneliese\nAriadne\nAspyn\nAubriana\nBraelynn\nBrisa\nCelia\nClaira\nClare\nCorinne\nDesiree\nDixie\nDulce\nEileen\nElianna\nElisa\nEllery\nElliette\nGeneva\nGiuliana\nGuadalupe\nHalle\nHayley\nIliana\nJaycee\nJazlynn\nJolene\nKairi\nKamryn\nKarina\nKatelynn\nKaylie\nKaylynn\nKenna\nKhaleesi\nKinzley\nKora\nKyleigh\nLinnea\nLiv\nLogan\nMadalyn\nMarilyn\nMckayla\nMiah\nMonroe\nMontserrat\nNataly\nNatasha\nNia\nOphelia\nPaityn\nPaloma\nPaola\nPaulina\nPersephone\nPriscilla\nRilynn\nSariah\nSavanna\nSkyla\nTabitha\nTeegan\nTenley\nThea\nVeda\nVivianna\nZara\nAddie\nAdilyn\nAdley\nAdrienne\nAileen\nAlena\nAmina\nAnalia\nArantza\nArianny\nAriya\nAryana\nAryanna\nAubrielle\nAyva\nBeatrix\nBlythe\nBraelyn\nBraylee\nBreanna\nBrenna\nBriar\nBrynley\nCalla\nCameron\nCarter\nCoraline\nCristal\nDalary\nDallas\nDevyn\nEllis\nElodie\nElora\nEmelia\nEmmalynn\nEtta\nEvalynn\nFrancesca\nGloria\nGracyn\nHattie\nIreland\nIsabela\nIzabelle\nJacquelyn\nJaelyn\nKaiya\nKallie\nKarla\nKayleigh\nKensington\nKristina\nKynlee\nLailah\nLeona\nLilyanna\nLouisa\nMariam\nMarina\nMaryjane\nMavis\nMercedes\nMilana\nMina\nMiya\nMoriah\nNoa\nNoel\nNoemi\nNyla\nPenny\nRegina\nRhea\nRomina\nRosa\nSailor\nSamara\nSasha\nSerena\nShea\nSimone\nSonja\nTeresa\nTesla\nTiffany\nTinsley\nViola\nViolette\nWilhelmina\nYamileth\nYesenia\nAbbigail\nAbrianna\nAbrielle\nAdele\nAdilene\nAilyn\nAisha\nAislynn\nAiyana\nAlaya\nAlayah\nAleyda\nAmerica\nAmiya\nAnabella\nAnaiah\nAnaleah\nAnaleigh\nAnalicia\nAngie\nAnika\nAraya\nAudriana\nAvalon\nAveri\nBailee\nBelen\nBerkley\nBreckyn\nCaitlin\nCampbell\nCara\nCarolyn\nCarson\nChevelle\nChristine\nClarissa\nCourtney\nCrystal\nDaleysa\nDayana\nDayanara\nDenise\nDonna\nElaine\nEldana\nElissa\nEmmalee\nEmmeline\nEmmery\nEmmie\nEster\nFrances\nHadassah\nHunter\nIlliana\nImani\nIndigo\nIsadora\nItzayana\nJasmin\nJessie\nJocelynn\nJolie\nJustice\nKailey\nKailynn\nKaitlin\nKalani\nKarma\nKatalina\nKathleen\nKaycee\nKenadee\nKenley\nKiya\nKori\nLea\nLeanna\nLeigha\nLeilany\nLennon\nLenore\nLesly\nLeyla\nLillianna\nLillyana\nLillyann\nLizbeth\nLuella\nMadisyn\nMaisie\nMargo\nMarisol\nMarlee\nMartha\nMelina\nMercy\nMeredith\nMikaela\nMilania\nMilena\nMiracle\nMollie\nMylah\nNathalie\nNellie\nNeriah\nNoelani\nNola\nNylah\nOpal\nPamela\nPerla\nRaquel\nRaven\nRaylee\nRayleigh\nReyna\nRihanna\nRory\nRosalee\nRosalina\nRoxanna\nRylan\nSilvia\nSofie\nStevie\nSusan\nSylvie\nTheresa\nTinley\nUnique\nVirginia\nVivien\nWhitney\nYarely\nYaritza\nYasmin\nYoselin\nZaniyah\nZayla\nZuri\nAaralyn\nAbbie\nAbigale\nAbriella\nAdah\nAdalina\nAeris\nAhlam\nAkira\nAlanah\nAlex\nAlia\nAlly\nAlyanna\nAlyvia\nAmberly\nAmirah\nAndi\nAngeline\nAnn\nArielle\nAriyah\nAsha\nAubrianna\nAvah\nAvianna\nAzaria\nAzariah\nBennett\nBlair\nBrenda\nBrittney\nBrynna\nCattleya\nCecily\nChanel\nCharity\nClementine\nCleo\nColbie\nCordelia\nDalilah\nDavina\nDrew\nEdie\nEisley\nElanor\nEllianna\nEmerald\nEmerie\nEmi\nEmilie\nEmmarie\nEstella\nEvalyn\nEverleigh\nEzra\nFaye\nGalilea\nGiovanna\nHana\nHeather\nHolland\nHollis\nImogen\nIvanna\nIzzabella\nJaida\nJanae\nJanet\nJaqueline\nJazmyn\nJoelle\nJosette\nJoslynn\nJulianne\nKacey\nKaelyn\nKaliyah\nKarmen\nKarsyn\nKatrina\nKayden\nKayleen\nKelsey\nKenia\nKeyla\nKiana\nKourtney\nLeela\nLeena\nLenora\nLeticia\nLillyanna\nLilyann\nLincoln\nLinda\nLitzy\nLorelai\nLorena\nLouise\nLove\nLuciana\nLucie\nLuz\nMadalynn\nMadden\nMadyson\nMagdalena\nMakena\nMallory\nMargarita\nMarissa\nMaritza\nMarjorie\nMarlene\nMaryn\nMay\nMeadow\nMilagros\nMilah\nMyka\nNancy\nNella\nNiyah\nPalmer\nPatience\nPeighton\nPepper\nRachael\nRaelyn\nRaina\nRaya\nRaylynn\nReece\nReina\nRemy\nRiya\nRylynn\nSaige\nSalma\nSamira\nScarlette\nSeraphina\nShae\nShay\nTahlia\nTania\nTara\nTegan\nTennyson\nTia\nWendy\nYaneli\nYuliana\nZelda\nZella\nJohn\nJames\nCharles\nWilliam\nRobert\nGeorge\nFrank\nJoe\nJoseph\nFred\nEdward\nRichard\nJack\nAlbert\nPaul\nHarold\nHoward\nRaymond\nCarl\nHenry\nThomas\nWalter\nClarence\nJose\nDaniel\nDavid\nHarry\nLloyd\nLouis\nRalph\nAnthony\nArthur\nDonald\nRay\nFrancis\nHerbert\nKenneth\nLeroy\nPete\nVirgil\nClaude\nEarl\nEdwin\nErnest\nEugene\nGlenn\nHerman\nJuan\nLawrence\nLeonard\nManuel\nMilton\nTony\nAlfred\nDelbert\nMartin\nMarvin\nRoy\nRussell\nSam\nStanley\nTheodore\nTom\nWillie\nEmilio\nFloyd\nGerald\nGlen\nHugh\nLeo\nMaurice\nMelvin\nNorman\nVictor\nWilbur\nJohn\nRobert\nWilliam\nCharles\nJames\nGeorge\nFrank\nJoseph\nJoe\nEdward\nHarold\nCarl\nThomas\nJack\nRalph\nRichard\nHarry\nFred\nHenry\nArthur\nPaul\nAlbert\nDonald\nWalter\nLeonard\nRaymond\nAnthony\nClarence\nRoy\nDavid\nJose\nLouis\nAlfred\nFloyd\nHoward\nErnest\nLeo\nSam\nEarl\nKenneth\nManuel\nTheodore\nClyde\nEdgar\nGerald\nLawrence\nLloyd\nNorman\nVictor\nAdolph\nBenjamin\nEugene\nLee\nMike\nPhilip\nAlvin\nBen\nChester\nClifford\nForrest\nGlen\nHerbert\nJess\nLeroy\nMartin\nOrville\nOscar\nRay\nRussell\nSamuel\nElmer\nFelix\nFrancis\nFrederick\nGlenn\nJuan\nLeslie\nLester\nLewis\nMelvin\nMilton\nTom\nWilbur\nJohn\nWilliam\nJames\nGeorge\nRobert\nCharles\nFrank\nHarold\nJoseph\nHarry\nEdward\nAlbert\nThomas\nArthur\nHenry\nJoe\nRichard\nFred\nPaul\nWalter\nDonald\nLouis\nRalph\nCarl\nClarence\nEugene\nKenneth\nRoy\nHoward\nJack\nRaymond\nLawrence\nElmer\nDavid\nErnest\nLeonard\nTony\nVictor\nFrancis\nSam\nSamuel\nTheodore\nEarl\nGerald\nHerbert\nLeo\nLester\nPhilip\nAlfred\nAndrew\nBen\nFloyd\nClifford\nEdwin\nFrederick\nMartin\nMelvin\nRay\nBruce\nHerman\nJose\nLee\nLewis\nDaniel\nEverett\nGlenn\nGordon\nJesse\nLloyd\nMike\nVincent\nAnthony\nCecil\nDale\nLeslie\nPete\nRussell\nStanley\nArnold\nClyde\nEdgar\nGlen\nIvan\nPeter\nSidney\nBenjamin\nClaude\nDon\nEddie\nJacob\nJay\nMarvin\nMaurice\nMichael\nNorman\nVernon\nWillard\nWoodrow\nAlvin\nClinton\nDelbert\nGilbert\nHomer\nIra\nJake\nJerry\nLeroy\nMerle\nOliver\nOrville\nRoger\nWarren\nWilbur\nAllan\nAllen\nArchie\nBert\nCalvin\nCharlie\nConrad\nCurtis\nFelix\nJuan\nKarl\nMax\nMilton\nMorris\nNicholas\nRonald\nRudolph\nTom\nWayne\nJohn\nWilliam\nRobert\nGeorge\nCharles\nJames\nJoseph\nFrank\nEdward\nHarold\nHenry\nPaul\nDonald\nHarry\nJoe\nRichard\nAlbert\nJack\nCarl\nRalph\nArthur\nRoy\nFred\nRaymond\nWalter\nEarl\nKenneth\nErnest\nHoward\nThomas\nClarence\nEugene\nLawrence\nDavid\nEdwin\nLouis\nLeonard\nElmer\nAndrew\nFrancis\nSam\nEverett\nGlenn\nVictor\nAlfred\nDaniel\nFloyd\nJose\nAnthony\nFrederick\nGerald\nGordon\nHerbert\nLester\nLee\nLloyd\nPete\nSamuel\nStanley\nTheodore\nWoodrow\nLeslie\nMelvin\nNorman\nWilbur\nClifford\nGlen\nLeo\nPeter\nRudolph\nRussell\nAlex\nBernard\nHomer\nMilton\nPhilip\nTony\nWillard\nJacob\nMartin\nOrville\nVernon\nAlvin\nBenjamin\nChester\nDan\nDave\nLewis\nMichael\nVincent\nCecil\nHerman\nMarvin\nMike\nAdolph\nAlexander\nAllen\nArnold\nBill\nHarvey\nJake\nJay\nLeon\nLeroy\nManuel\nRay\nRonald\nSteve\nTom\nVirgil\nWayne\nGene\nGuy\nLeland\nMerle\nOliver\nPerry\nReuben\nWallace\nAntonio\nBen\nBennie\nClayton\nDean\nDwight\nEdgar\nEdmund\nEmil\nFelix\nGilbert\nHorace\nIvan\nJess\nLowell\nOtto\nRoger\nSidney\nStephen\nSylvester\nWesley\nWillis\nWilson\nJohn\nWilliam\nRobert\nGeorge\nCharles\nJames\nFrank\nJoseph\nEdward\nJoe\nHarold\nPaul\nArthur\nHenry\nHarry\nDonald\nRichard\nFred\nKenneth\nAlbert\nThomas\nWalter\nRaymond\nHoward\nCarl\nRalph\nLouis\nEugene\nJack\nRoy\nEarl\nDavid\nLawrence\nAlfred\nClarence\nLeonard\nLeo\nRussell\nFloyd\nFrancis\nLloyd\nGerald\nClyde\nElmer\nRay\nErnest\nLester\nManuel\nAndrew\nChester\nEdwin\nPete\nSam\nSamuel\nWayne\nAnthony\nFrederick\nJose\nLee\nTheodore\nVernon\nDaniel\nTony\nNorman\nAlvin\nJesse\nVirgil\nAlex\nCecil\nJacob\nMartin\nMelvin\nPeter\nGlenn\nGordon\nHerbert\nMarvin\nPhilip\nStanley\nVictor\nBenjamin\nEdgar\nLeroy\nMike\nPhillip\nTom\nAllen\nClaude\nEverett\nGlen\nHerman\nHomer\nJake\nRudolph\nVincent\nBen\nBernard\nBill\nGene\nGilbert\nJuan\nMax\nMilton\nOscar\nSidney\nWilbur\nBert\nClifford\nLyle\nMarion\nMorris\nStephen\nWillard\nHarvey\nJesus\nLeslie\nLewis\nLouie\nReuben\nWarren\nAlfonso\nBennie\nDale\nFranklin\nHugh\nLarry\nLeland\nMark\nMaurice\nMerle\nMichael\nOrville\nRonald\nSteve\nAdam\nArchie\nAugust\nCharley\nDelbert\nFelix\nIvan\nJerry\nKarl\nLaurence\nLeon\nRoland\nTed\nWallace\nAlexander\nAngel\nCharlie\nDan\nDon\nForrest\nFredrick\nHarlan\nIra\nJulius\nLowell\nLoyd\nNicholas\nNick\nRoss\nWillie\nJohn\nWilliam\nRobert\nGeorge\nJames\nCharles\nFrank\nJoseph\nHarold\nAlbert\nEdward\nRichard\nDonald\nFred\nJoe\nRaymond\nHarry\nJack\nPaul\nRalph\nThomas\nHenry\nCarl\nWalter\nArthur\nKenneth\nClarence\nHoward\nDavid\nErnest\nElmer\nLouis\nRoy\nEarl\nAlfred\nLloyd\nLeonard\nSam\nEugene\nLawrence\nVictor\nHerbert\nWayne\nFrancis\nRay\nTony\nFloyd\nPhilip\nStanley\nGerald\nLeo\nLewis\nMike\nNorman\nMelvin\nSamuel\nClyde\nJose\nLee\nClifford\nDaniel\nEverett\nFrederick\nLester\nAndrew\nWillard\nEdwin\nGlen\nPete\nRussell\nVernon\nAlex\nBernard\nClaude\nHerman\nBen\nChester\nWilbur\nAnthony\nBenjamin\nGlenn\nLeroy\nMarvin\nMilton\nTheodore\nAllen\nDale\nGordon\nJacob\nWarren\nAntonio\nManuel\nMaurice\nMichael\nGilbert\nHubert\nJake\nPeter\nCecil\nHarvey\nMartin\nOscar\nReuben\nWesley\nAdolph\nArnold\nHomer\nJess\nLouie\nMax\nMerle\nOrville\nTom\nAllan\nBill\nBruce\nDelbert\nDon\nHugh\nJim\nNick\nVirgil\nWallace\nAlvin\nCharlie\nDave\nDean\nFranklin\nJesse\nLeon\nSidney\nSteve\nWillis\nWoodrow\nBert\nGus\nGuy\nIvan\nKeith\nLeslie\nOliver\nPhillip\nAdam\nAlexander\nAugust\nConrad\nCurtis\nEdgar\nEllis\nEmmett\nFelix\nGene\nKarl\nLaurence\nLynn\nMarcus\nNeil\nNicholas\nRex\nRoger\nRoland\nRudolph\nBennie\nByron\nCarlos\nDominic\nDwight\nHarley\nIrvin\nIrving\nJesus\nJuan\nJulius\nLarry\nLowell\nMarion\nMark\nMorris\nOtto\nPerry\nRodney\nRonald\nSolomon\nStephen\nVern\nAlfonso\nAlva\nAngelo\nAnton\nArchie\nClinton\nDan\nDelmer\nElton\nEmil\nForrest\nFredrick\nJerry\nJessie\nJohnny\nLyle\nMalcolm\nMarshall\nMerlin\nMyron\nOtis\nWilson\nJohn\nRobert\nWilliam\nJames\nCharles\nGeorge\nFrank\nJoseph\nEdward\nHarold\nAlbert\nRaymond\nRichard\nJoe\nPaul\nWalter\nJack\nThomas\nDonald\nHarry\nCarl\nRalph\nHenry\nFred\nKenneth\nArthur\nLouis\nErnest\nClarence\nDavid\nEarl\nLawrence\nHoward\nEugene\nRoy\nElmer\nLloyd\nJose\nHerbert\nLeonard\nAlfred\nFrancis\nTony\nManuel\nEdwin\nClifford\nDaniel\nEverett\nHerman\nLeo\nNorman\nVictor\nClyde\nLee\nSamuel\nFloyd\nLewis\nMartin\nMelvin\nWayne\nChester\nGlen\nGlenn\nLeroy\nRussell\nSam\nTheodore\nVernon\nBen\nBernard\nCecil\nDale\nFrederick\nPete\nStanley\nLester\nNick\nRay\nAlvin\nAndrew\nGilbert\nMike\nTom\nVincent\nDan\nGordon\nPhilip\nAllen\nHarvey\nMax\nBenjamin\nGene\nGerald\nHomer\nMerle\nMichael\nOrville\nWarren\nWillard\nClaude\nJacob\nWesley\nMarion\nMarvin\nMaurice\nOliver\nReuben\nAlex\nAnthony\nDelbert\nEddie\nHorace\nWilbur\nDon\nGuy\nIvan\nPatrick\nRonald\nHugh\nPhillip\nRoger\nArnold\nAugust\nBert\nDwight\nFelix\nJake\nJay\nJerry\nJesse\nOscar\nSidney\nVirgil\nWallace\nWillis\nAdam\nAlexander\nCharlie\nDave\nEmil\nKarl\nLeon\nMilton\nPeter\nWillie\nAlfonso\nBilly\nJim\nJuan\nKeith\nLeslie\nLowell\nMyron\nNicholas\nRudolph\nAaron\nBill\nByron\nDean\nHarley\nIrving\nJulian\nMark\nOtto\nSteve\nAdolph\nAntonio\nBob\nBurton\nCharley\nClayton\nClinton\nConrad\nCurtis\nDelmar\nEdgar\nEdmund\nElbert\nEldon\nEllis\nErvin\nHubert\nIrvin\nLeland\nMario\nMarshall\nPedro\nRoland\nStephen\nWilson\nAbel\nAmadeo\nBennie\nBruce\nCarrol\nDick\nDuane\nFranklin\nGrover\nJess\nJohnny\nJulius\nLyle\nMorris\nNathan\nNeil\nOrval\nRodney\nRuben\nVern\nWilfred\nWoodrow\nJohn\nRobert\nWilliam\nJames\nGeorge\nCharles\nFrank\nJoseph\nEdward\nJack\nHarold\nDonald\nAlbert\nHarry\nJoe\nRaymond\nThomas\nRichard\nWalter\nFred\nHenry\nArthur\nKenneth\nPaul\nRalph\nCarl\nHoward\nDavid\nClarence\nLouis\nRoy\nEarl\nErnest\nLawrence\nElmer\nLeonard\nEdwin\nEugene\nRay\nLloyd\nFloyd\nRussell\nSam\nAlfred\nFrancis\nGlen\nSamuel\nGlenn\nVictor\nWayne\nFrederick\nDaniel\nHerman\nLee\nMarvin\nMelvin\nClyde\nHerbert\nJose\nGerald\nAnthony\nDale\nLeroy\nMike\nPhilip\nClifford\nLeo\nMaurice\nWilbur\nCecil\nVernon\nChester\nLewis\nPete\nTony\nAlvin\nBen\nTheodore\nDelbert\nManuel\nMax\nOrville\nOscar\nWarren\nAlex\nBernard\nMarion\nRoger\nWillard\nClaude\nHomer\nMartin\nNorman\nStanley\nAndrew\nBill\nEverett\nHarvey\nPeter\nPhillip\nBenjamin\nGilbert\nLeslie\nReuben\nRudolph\nTom\nAdolph\nHubert\nLester\nMerle\nMichael\nVirgil\nJim\nLowell\nNick\nRoss\nAlexander\nArchie\nAugust\nDean\nEdgar\nGordon\nJesse\nSalvador\nWallace\nDominic\nFranklin\nHugh\nIrvin\nIvan\nKarl\nLoren\nVincent\nCalvin\nCharlie\nDon\nEddie\nGuy\nSidney\nSteve\nWesley\nAdam\nBert\nBilly\nByron\nDan\nFelix\nGene\nHorace\nJacob\nJuan\nKeith\nLyle\nMilton\nRex\nAllen\nBob\nBruce\nCharley\nEd\nForrest\nGrant\nJay\nLeon\nOliver\nTed\nWillie\nWillis\nAbel\nAngelo\nCurtis\nDick\nEldon\nJake\nJess\nLuther\nMark\nWilfred\nAaron\nAlan\nBennie\nClark\nEarnest\nEdmund\nElbert\nHarley\nIrving\nJasper\nJerry\nJimmie\nJulian\nLouie\nMalcolm\nMorris\nNeil\nPatrick\nPerry\nRamon\nRoland\nRonald\nWard\nWoodrow\nAlonzo\nAlva\nAntonio\nArnold\nBoyd\nBurton\nClement\nClinton\nConrad\nDallas\nDave\nDouglas\nEdmond\nIra\nIrwin\nJesus\nLarry\nLaurence\nLoyal\nLynn\nMarshall\nMaynard\nOrval\nTommy\nVern\nWilbert\nJohn\nRobert\nWilliam\nCharles\nJames\nGeorge\nFrank\nHarold\nRichard\nJoe\nJoseph\nJack\nAlbert\nDonald\nEdward\nHarry\nRaymond\nRalph\nPaul\nFred\nWalter\nHenry\nArthur\nRoy\nEarl\nKenneth\nThomas\nLouis\nCarl\nClarence\nErnest\nHoward\nDavid\nLeonard\nLloyd\nVictor\nEugene\nLawrence\nLeo\nRay\nElmer\nFloyd\nClyde\nFrancis\nHerbert\nVernon\nSamuel\nAlfred\nDaniel\nLee\nClifford\nManuel\nMelvin\nFrederick\nGerald\nGlenn\nLeroy\nLester\nPete\nSam\nTony\nDale\nWayne\nPhilip\nChester\nRussell\nTom\nEdwin\nGlen\nHerman\nStanley\nEverett\nGordon\nMarvin\nNorman\nWillard\nAlvin\nAlex\nAnthony\nAndrew\nJesse\nLewis\nMike\nCecil\nClaude\nJose\nOscar\nAllen\nBenjamin\nHarvey\nLeslie\nMilton\nWilbur\nBen\nDon\nFelix\nGuy\nBernard\nBob\nCurtis\nEdgar\nPeter\nRoger\nTheodore\nVirgil\nWarren\nForrest\nGilbert\nRuben\nBruce\nDan\nGene\nJesus\nLeon\nLyle\nPhillip\nReuben\nRonald\nVincent\nAntonio\nCarroll\nClinton\nDouglas\nHomer\nHugh\nJake\nKeith\nMaurice\nWoodrow\nDave\nFranklin\nHarley\nIvan\nJacob\nJim\nMarion\nMichael\nNick\nSteve\nWilson\nArnold\nBert\nCalvin\nHubert\nLowell\nMerle\nOrville\nRudolph\nTed\nAlfonso\nArchie\nBill\nLeland\nMartin\nMax\nMyron\nRoss\nWesley\nWillis\nDelbert\nDelmar\nElvin\nHorace\nJay\nJerry\nJimmie\nKarl\nPedro\nSidney\nWilfred\nAdam\nAugust\nBennie\nBilly\nByron\nCarlos\nEddie\nJess\nJuan\nLouie\nOliver\nRex\nRoland\nWallace\nAbel\nAdolph\nAlexander\nBurton\nChris\nDean\nEldon\nEmanuel\nEmmett\nErvin\nGrant\nHarlan\nIra\nIrvin\nIrwin\nIsadore\nJean\nJulian\nJunior\nLoren\nMark\nMarshall\nNeil\nPerry\nSalvador\nAlva\nAngelo\nAugustine\nClark\nDallas\nDick\nDudley\nEd\nElbert\nElwood\nForest\nFredrick\nIsaac\nJerome\nLaurence\nLoyd\nMorris\nOwen\nPatrick\nRoscoe\nStephen\nToby\nVern\nWillie\nJohn\nRobert\nWilliam\nJames\nGeorge\nCharles\nFrank\nEdward\nHarold\nRichard\nJoseph\nDonald\nJoe\nJack\nHarry\nRaymond\nKenneth\nAlbert\nWalter\nThomas\nArthur\nCarl\nPaul\nHenry\nRalph\nFred\nRoy\nDavid\nEarl\nErnest\nEugene\nHoward\nClarence\nElmer\nLouis\nLeonard\nTony\nFloyd\nHerbert\nLawrence\nLeo\nSamuel\nJose\nStanley\nLloyd\nVictor\nChester\nFrancis\nLee\nLester\nVernon\nDaniel\nRay\nAlfred\nRussell\nGilbert\nMelvin\nWayne\nGlen\nLeroy\nNorman\nGlenn\nLeslie\nClyde\nSam\nAlex\nEdwin\nEverett\nGordon\nHarvey\nWilbur\nBen\nManuel\nAlvin\nAndrew\nBernard\nDale\nJesse\nMarvin\nVirgil\nBill\nPhilip\nRoland\nBenjamin\nCecil\nClifford\nMarion\nDon\nFrederick\nMaurice\nMax\nTom\nWarren\nGerald\nJess\nMike\nOrville\nTheodore\nAllen\nBob\nDean\nLyle\nRex\nRudolph\nClinton\nDelbert\nJesus\nLewis\nLouie\nBruce\nFelix\nOliver\nOscar\nBilly\nCharlie\nClaude\nHorace\nHubert\nPeter\nPhillip\nReuben\nVincent\nWillard\nAlexander\nAnthony\nGene\nHerman\nJuan\nPete\nRuben\nSteve\nDouglas\nEdgar\nErvin\nHugh\nJacob\nJay\nJulian\nMerle\nSidney\nArchie\nClayton\nDave\nJim\nLoren\nMartin\nNick\nWillis\nJake\nJerry\nJimmie\nJohnny\nKarl\nLeon\nLowell\nLynn\nMark\nNeil\nRonald\nAdam\nArnold\nAugust\nBert\nCalvin\nEddie\nHomer\nIrving\nJohnnie\nLeland\nOrlando\nQuentin\nRoger\nStephen\nWallace\nWilfred\nWoodrow\nAllan\nBennie\nCleo\nDelmer\nDominic\nDwight\nElbert\nEmil\nForrest\nFranklin\nHarley\nIra\nIvan\nJulius\nOrval\nPedro\nRamon\nRodney\nVern\nWesley\nAntonio\nByron\nCarroll\nClair\nConrad\nDick\nEmmett\nFidel\nGrover\nLuis\nLuther\nMichael\nMilton\nNathan\nOran\nPerry\nRoss\nSolomon\nWendell\nWilbert\nAbe\nAbel\nAlfonso\nAlva\nAmos\nBenny\nBillie\nCarlos\nDewey\nEdmund\nEldon\nGuy\nHarlan\nIsadore\nJerome\nKeith\nLaurence\nLaverne\nLoyd\nMyron\nNed\nPatrick\nStuart\nTed\nTrinidad\nWilford\nWillie\nRobert\nJohn\nWilliam\nJames\nCharles\nGeorge\nHarold\nFrank\nEdward\nRichard\nJoe\nDonald\nJack\nJoseph\nRaymond\nAlbert\nPaul\nFred\nThomas\nWalter\nRalph\nHarry\nHenry\nKenneth\nDavid\nArthur\nClarence\nErnest\nHoward\nCarl\nRoy\nLeonard\nEarl\nLawrence\nFloyd\nLouis\nElmer\nEugene\nVictor\nDaniel\nGlenn\nClyde\nLee\nRay\nWarren\nHerbert\nLloyd\nVernon\nHerman\nGerald\nPete\nLeo\nAlfred\nJose\nMarvin\nDale\nManuel\nFrancis\nGlen\nMelvin\nEdwin\nSamuel\nBill\nSam\nWayne\nAnthony\nBenjamin\nChester\nTom\nBernard\nLeroy\nTheodore\nWilbur\nClifford\nWillard\nNorman\nTony\nCecil\nEverett\nGilbert\nLeslie\nMax\nOrville\nRussell\nFrederick\nLester\nPhilip\nStanley\nHarvey\nJuan\nMilton\nAlvin\nBen\nLewis\nVirgil\nAndrew\nClaude\nDean\nHomer\nIvan\nMike\nOliver\nRuben\nJacob\nPhillip\nWillis\nBennie\nBilly\nDon\nHugh\nJim\nMartin\nGordon\nJohnny\nWallace\nBob\nEddie\nFrancisco\nJake\nJesse\nJunior\nMichael\nAllen\nEdgar\nKeith\nLyle\nCurtis\nDelbert\nFranklin\nLaurence\nLeland\nLeon\nLuis\nMarion\nMaurice\nMerle\nPeter\nVincent\nAlex\nAntonio\nBert\nBruce\nDuane\nElbert\nHubert\nJerry\nJimmie\nMorris\nReuben\nTed\nAdam\nAdolph\nArchie\nCalvin\nClayton\nForrest\nGene\nLarry\nNicholas\nNick\nRonald\nRoss\nWesley\nAlva\nDominic\nDouglas\nFidel\nFredrick\nJesus\nLoren\nWilbert\nCharlie\nDave\nFelix\nIrvin\nJess\nPatrick\nRoger\nRoland\nSidney\nTimothy\nAlfonso\nAndy\nDarrell\nGrant\nHorace\nJohnnie\nLynn\nMerlin\nNeil\nPerry\nWilfred\nAlan\nAlonzo\nArnold\nAugust\nByron\nCarlos\nClark\nDallas\nDan\nDwight\nEmil\nErvin\nGuy\nIra\nIrving\nJay\nJimmy\nLouie\nLowell\nOscar\nRamon\nRex\nRodney\nWillie\nAbe\nAllan\nAndres\nAngelo\nBillie\nCarmen\nChris\nDelmar\nDennis\nEarle\nEarnest\nEd\nEdmund\nEllis\nEloy\nElton\nEmmett\nFrederic\nGabriel\nHal\nHarley\nJasper\nJerome\nLoyd\nMark\nMilo\nMyron\nRussel\nSalvatore\nSolomon\nSteven\nTommy\nTrinidad\nWilber\nRobert\nJohn\nWilliam\nJames\nCharles\nGeorge\nDonald\nHarold\nFrank\nRichard\nJoe\nJack\nEdward\nJoseph\nRaymond\nPaul\nAlbert\nArthur\nKenneth\nRalph\nWalter\nThomas\nFred\nHarry\nHenry\nWarren\nEugene\nClarence\nRoy\nDavid\nLouis\nCarl\nErnest\nHoward\nEarl\nJose\nElmer\nLeonard\nLawrence\nMelvin\nLloyd\nAlfred\nDale\nFloyd\nFrancis\nManuel\nRussell\nGerald\nTony\nLee\nNorman\nEdwin\nClyde\nRay\nVictor\nVernon\nClifford\nGlenn\nWayne\nAndrew\nMarvin\nHerbert\nSam\nStanley\nLester\nMike\nAlvin\nBenjamin\nGordon\nPete\nSamuel\nWillard\nDaniel\nLeo\nHerman\nJesse\nBen\nWilbur\nAnthony\nBill\nGlen\nKeith\nLewis\nMax\nBernard\nChester\nHarvey\nTheodore\nGilbert\nLeroy\nCecil\nEdgar\nEverett\nWallace\nJim\nMartin\nVincent\nVirgil\nAntonio\nBilly\nFrederick\nGene\nMerle\nMichael\nOrville\nPhilip\nTom\nAllen\nBob\nDean\nHugh\nLeslie\nPeter\nDelbert\nDon\nDouglas\nFrancisco\nNick\nRoland\nWesley\nBennie\nCharlie\nFelix\nGuy\nJacob\nJesus\nLeon\nRudolph\nSteve\nAlex\nArnold\nHomer\nJohnny\nMarion\nMilton\nRex\nRoger\nRuben\nClaude\nFranklin\nMaurice\nRonald\nAlfonso\nAlva\nBert\nDick\nHorace\nIvan\nJake\nJuan\nLaurence\nLaverne\nLeland\nOliver\nPhillip\nSalvador\nBruce\nDan\nDuane\nEddie\nEldon\nJimmie\nKarl\nMyron\nOscar\nRamon\nReuben\nRoss\nSidney\nTed\nAlexander\nArchie\nEloy\nEmmett\nForrest\nLarry\nLowell\nStephen\nAlan\nByron\nCharley\nDave\nDewey\nGrant\nJay\nLouie\nLyle\nOwen\nVern\nWillis\nAdam\nAdolph\nAngelo\nAugust\nClayton\nDoyle\nEarnest\nElbert\nHubert\nIra\nJess\nJohnnie\nLoren\nMorris\nNeil\nOtis\nPedro\nBenny\nCalvin\nCornelius\nEmil\nFredrick\nHarley\nIrvin\nJerry\nJulian\nLuis\nNathan\nNicholas\nOrin\nQuentin\nVicente\nWendell\nWilfred\nAllan\nAmos\nAubrey\nBillie\nConrad\nErvin\nGabriel\nGuadalupe\nIrving\nIsaac\nJerome\nLupe\nLuther\nLynn\nMatthew\nNeal\nOrlando\nOrval\nOtto\nPatrick\nPerry\nRoderick\nRupert\nSylvester\nTommy\nToshio\nWilmer\nWilson\nRobert\nJohn\nWilliam\nJames\nCharles\nGeorge\nDonald\nEdward\nHarold\nFrank\nJack\nRichard\nJoe\nJoseph\nKenneth\nAlbert\nPaul\nRaymond\nHarry\nThomas\nArthur\nEugene\nWalter\nDavid\nRalph\nFred\nHenry\nRoy\nClarence\nHoward\nCarl\nLouis\nLeonard\nErnest\nElmer\nAlfred\nEarl\nLloyd\nJose\nGerald\nLawrence\nEdwin\nGlenn\nVernon\nNorman\nRay\nMelvin\nDale\nLeo\nFloyd\nFrancis\nManuel\nMarvin\nDaniel\nLee\nLeroy\nBill\nWarren\nRussell\nWayne\nTheodore\nVictor\nHerbert\nSamuel\nClifford\nMax\nClyde\nEverett\nTony\nAlvin\nBernard\nFrederick\nGilbert\nLester\nBenjamin\nGlen\nGordon\nLewis\nPete\nWilbur\nDon\nHarvey\nVirgil\nBilly\nSam\nDelbert\nMaurice\nMike\nLeslie\nLyle\nMartin\nStanley\nHerman\nPhilip\nAllen\nBen\nClaude\nHomer\nHugh\nRoger\nVincent\nWallace\nAndrew\nBob\nCecil\nClayton\nDan\nDean\nJake\nPatrick\nPeter\nReuben\nTed\nWillard\nAlfonso\nAnthony\nJuan\nMarion\nMichael\nForrest\nJerry\nKeith\nLeon\nMerle\nWesley\nArnold\nFranklin\nJesse\nLoren\nOrville\nChester\nFelix\nJay\nJesus\nPhillip\nRoland\nAlex\nArchie\nBert\nDuane\nLouie\nLynn\nNick\nRonald\nRudolph\nWillis\nAlexander\nBennie\nDave\nRoss\nSteve\nCalvin\nDouglas\nEdgar\nFredrick\nGene\nIra\nIvan\nJohnny\nMarshall\nMilton\nOliver\nPerry\nSalvador\nTom\nVern\nBenny\nBruce\nClinton\nDominic\nDwight\nEddie\nEldon\nFrancisco\nGrant\nGuy\nJim\nJulian\nLuis\nMorris\nOscar\nAdolph\nAntonio\nByron\nDarrell\nDennis\nLeland\nLowell\nNathan\nOtto\nRuben\nSidney\nCarlos\nCharlie\nDick\nEarnest\nErvin\nForest\nIrwin\nJacob\nJerome\nJulius\nMark\nNeil\nOwen\nRodney\nVerne\nWilbert\nWillie\nAndy\nCarroll\nCurtis\nDelmer\nEmil\nHarlan\nHubert\nJasper\nJess\nJohnnie\nLoyd\nMerl\nMerlin\nMyron\nStephen\nTrinidad\nAdam\nArturo\nConrad\nCornelius\nElbert\nEmmett\nFreddie\nGus\nHarley\nIrvin\nJimmie\nMack\nMatthew\nMiguel\nNorbert\nPedro\nRex\nTommy\nTroy\nWendell\nWilfred\nRobert\nJohn\nWilliam\nJames\nCharles\nGeorge\nDonald\nRichard\nHarold\nFrank\nJoe\nJoseph\nJack\nAlbert\nEdward\nPaul\nKenneth\nThomas\nRaymond\nWalter\nArthur\nHarry\nRalph\nDavid\nEugene\nFred\nRoy\nErnest\nHenry\nCarl\nLouis\nLawrence\nClarence\nHoward\nEarl\nElmer\nLloyd\nDale\nJose\nAlfred\nWarren\nLeo\nMelvin\nDaniel\nLeonard\nTony\nWayne\nRay\nManuel\nStanley\nTheodore\nClifford\nGerald\nHerbert\nMarvin\nNorman\nPete\nBob\nFloyd\nGlenn\nKeith\nCecil\nClyde\nWallace\nGordon\nEverett\nLee\nLeroy\nVirgil\nAnthony\nPhilip\nAlvin\nBill\nDelbert\nFrancis\nLeslie\nMilton\nBilly\nEdwin\nSam\nGilbert\nSamuel\nBernard\nBruce\nVernon\nDean\nVictor\nRussell\nBenjamin\nGlen\nHerman\nBen\nCalvin\nDon\nLester\nWilbur\nFrederick\nGene\nLewis\nRex\nJesse\nJuan\nMax\nAllen\nChester\nEdgar\nJesus\nMichael\nAndrew\nHarvey\nLyle\nOrville\nMartin\nMike\nPeter\nTom\nVincent\nAntonio\nClaude\nDuane\nElbert\nFelix\nIvan\nLouie\nLowell\nWesley\nAlfonso\nDouglas\nEldon\nHugh\nJacob\nLeland\nLuis\nMyron\nOscar\nAlex\nArnold\nBennie\nBert\nJay\nJim\nJimmie\nOliver\nReuben\nSalvador\nBillie\nByron\nHomer\nHubert\nIrvin\nJohnny\nMarion\nMaurice\nMorris\nRudolph\nWillard\nEddie\nEllis\nJerry\nJohnnie\nLoren\nNick\nRodney\nRoss\nWillie\nAlexander\nBenny\nFrancisco\nJake\nJulian\nLeon\nLynn\nRuben\nTed\nTommy\nAdam\nAlfredo\nDan\nDick\nDoyle\nElvin\nEmmett\nFredrick\nJerome\nLaurence\nLupe\nPerry\nPhillip\nRoger\nRoland\nRonald\nRudy\nWillis\nAlva\nClinton\nDewey\nDominic\nEloy\nFranklin\nHarlan\nJess\nLarry\nLuther\nMarshall\nMerle\nMiguel\nNathan\nNicholas\nOrlando\nPatrick\nRolland\nSidney\nSteve\nAdolph\nAmos\nAugustine\nCharley\nDarrell\nDennis\nErvin\nGabriel\nJessie\nMorton\nNeal\nNeil\nRafael\nStephen\nStewart\nWendell\nWilfred\nAllan\nBobby\nBud\nCarroll\nClark\nCurtis\nEdmund\nElias\nEvert\nFidel\nGale\nHarley\nHorace\nJulius\nJunior\nKarl\nMark\nMatt\nMerlin\nNash\nSolomon\nRobert\nJohn\nWilliam\nJames\nCharles\nGeorge\nDonald\nRichard\nFrank\nHarold\nJoe\nJoseph\nJack\nEdward\nPaul\nKenneth\nAlbert\nRaymond\nFred\nWalter\nDavid\nThomas\nHarry\nArthur\nLouis\nRalph\nHenry\nHoward\nClarence\nRoy\nErnest\nEarl\nEugene\nLawrence\nCarl\nNorman\nGerald\nRay\nMarvin\nGilbert\nFloyd\nLeo\nDale\nEdwin\nJose\nLeonard\nAlfred\nCalvin\nTony\nLloyd\nMelvin\nWayne\nHerbert\nBob\nManuel\nLee\nFrancis\nGordon\nVernon\nBill\nBilly\nClyde\nVictor\nAlvin\nGlen\nGlenn\nLeroy\nPete\nWarren\nSam\nDaniel\nElmer\nStanley\nLester\nPhilip\nClifford\nDon\nHarvey\nMax\nSamuel\nTom\nVirgil\nJerry\nKeith\nRussell\nAndrew\nBen\nClaude\nJuan\nAlex\nBernard\nDean\nEverett\nGene\nMartin\nRoger\nTheodore\nCecil\nLewis\nMarion\nMike\nFrederick\nWilbur\nAllen\nHerman\nHomer\nJim\nJohnny\nMerle\nBenjamin\nEdgar\nHugh\nWallace\nWillard\nChester\nDelbert\nLoren\nMaurice\nRonald\nBruce\nJesse\nLowell\nLupe\nMichael\nRudolph\nAntonio\nBennie\nBert\nDan\nFelix\nIvan\nJay\nOrville\nPhillip\nRoland\nVincent\nWesley\nAnthony\nArchie\nByron\nEddie\nJulian\nLarry\nLeland\nLeon\nLeslie\nMorris\nNeil\nSidney\nWillie\nAlberto\nAlfonso\nArnold\nClayton\nFranklin\nJacob\nJake\nJimmie\nJimmy\nMilton\nTed\nDave\nGuy\nJesus\nJohnnie\nLaurence\nLaverne\nPeter\nRex\nRuben\nSteve\nWendell\nWillis\nAngelo\nBenny\nCharlie\nEldon\nForrest\nHarley\nLuis\nLyle\nOscar\nOwen\nPatrick\nCarlos\nDick\nEloy\nHubert\nMark\nNick\nOliver\nOrval\nOtto\nPhil\nReuben\nRoss\nSalvador\nAbel\nAlexander\nClair\nDarrell\nElvin\nEmil\nGale\nHarlan\nHorace\nJunior\nLoyd\nRamon\nStephen\nAlan\nAlfredo\nAlva\nArnulfo\nDominic\nDouglas\nFrancisco\nGrant\nKarl\nRolland\nRoyal\nToby\nAdolph\nAllan\nAlonzo\nAugust\nBillie\nBobby\nBoyd\nChas\nClinton\nDallas\nDuane\nDwight\nEd\nElbert\nEmilio\nEmmett\nErvin\nFredrick\nGrover\nIrving\nIsaac\nJerome\nJess\nLeopoldo\nLouie\nMalcolm\nMarshall\nMyron\nNeal\nPat\nPerry\nRafael\nWard\nWilfred\nRobert\nJohn\nWilliam\nJames\nCharles\nDonald\nRichard\nGeorge\nFrank\nJack\nEdward\nJoe\nHarold\nKenneth\nThomas\nAlbert\nPaul\nJoseph\nRaymond\nRalph\nArthur\nWalter\nFred\nHenry\nErnest\nHarry\nDavid\nRoy\nEugene\nJose\nHoward\nLouis\nCarl\nMelvin\nLawrence\nManuel\nClarence\nHerbert\nLeonard\nGlenn\nBill\nDale\nFloyd\nLloyd\nRay\nStanley\nAlfred\nCalvin\nLeroy\nEarl\nGerald\nWayne\nElmer\nGilbert\nNorman\nBob\nMike\nClyde\nGlen\nLeo\nMarvin\nClifford\nFrancis\nDaniel\nKeith\nPhilip\nTony\nVictor\nBilly\nSamuel\nVernon\nMax\nAlvin\nHarvey\nLee\nRussell\nBernard\nCecil\nEdwin\nGene\nPete\nTheodore\nWarren\nWilbur\nGordon\nHerman\nJim\nLewis\nAnthony\nSam\nDon\nFrederick\nChester\nDuane\nLeon\nTom\nDelbert\nEverett\nJuan\nLester\nWillard\nAllen\nBen\nBenjamin\nJerry\nVirgil\nRonald\nAntonio\nJesus\nLeslie\nVincent\nAndrew\nJesse\nNick\nWallace\nClaude\nClinton\nEddie\nFelix\nHomer\nMilton\nRoss\nBobby\nDan\nDean\nDick\nJimmie\nLarry\nMarion\nOrville\nRuben\nAlfonso\nHugh\nJohnny\nLaurence\nLyle\nOliver\nPhillip\nRoland\nTed\nArnold\nBennie\nBruce\nEloy\nFrancisco\nIvan\nJake\nLouie\nPeter\nSidney\nWesley\nClayton\nJimmy\nLeland\nLowell\nMartin\nMaurice\nMichael\nOscar\nPedro\nRudolph\nSalvador\nBenny\nCarlos\nDarrell\nDominic\nDouglas\nEldon\nEmmett\nGuy\nHubert\nIrvin\nIrving\nMerle\nSteve\nVern\nWendell\nWillie\nArchie\nBoyd\nCharlie\nErnesto\nForrest\nJay\nJess\nJunior\nLoren\nMark\nOtis\nRex\nWilfred\nAlex\nAlfredo\nAllan\nBert\nByron\nDewey\nDwight\nEdgar\nFranklin\nJacob\nJohnnie\nLynn\nMyron\nOrlando\nPatrick\nRamon\nTommy\nWilbert\nWillis\nAdolph\nAlberto\nAlva\nEarnest\nElbert\nHarlan\nHarley\nHorace\nIra\nKarl\nLuis\nMorton\nRafael\nRaul\nRoger\nRolland\nStephen\nAlan\nAlexander\nArmando\nAugust\nCharley\nChristopher\nDennis\nDomingo\nEd\nElias\nEmil\nErvin\nGuadalupe\nIsaac\nJerome\nLorenzo\nMalcolm\nMarcus\nNeal\nNelson\nOrval\nRoberto\nRoyal\nRudy\nWard\nRobert\nJohn\nWilliam\nJames\nCharles\nDonald\nGeorge\nRichard\nJack\nJoe\nHarold\nEdward\nFrank\nKenneth\nPaul\nRaymond\nJoseph\nAlbert\nThomas\nArthur\nHarry\nRalph\nDavid\nFred\nEugene\nRoy\nLouis\nWalter\nHenry\nBill\nJose\nErnest\nHoward\nCarl\nGerald\nBob\nDale\nTony\nMelvin\nMarvin\nLawrence\nDaniel\nLeonard\nEarl\nGilbert\nStanley\nElmer\nGlenn\nLeo\nNorman\nWayne\nFloyd\nManuel\nRay\nClifford\nLee\nLeroy\nBilly\nLloyd\nAlfred\nEdwin\nTheodore\nCalvin\nDon\nGlen\nJim\nClarence\nDean\nFrancis\nTom\nVernon\nVictor\nWarren\nKeith\nRonald\nRussell\nSam\nBen\nJohnny\nPete\nSamuel\nWilbur\nBenjamin\nGene\nGordon\nMax\nPhilip\nAnthony\nJimmie\nMike\nFelix\nHerbert\nAlvin\nEverett\nWallace\nLyle\nBernard\nCecil\nDick\nHarvey\nLester\nMilton\nRoland\nVirgil\nBruce\nClaude\nFranklin\nHerman\nLewis\nPhillip\nWillard\nClyde\nLeslie\nTommy\nAndrew\nBennie\nHomer\nAllen\nBobby\nMartin\nRoger\nWillis\nDouglas\nEddie\nEdgar\nFrederick\nJesse\nJimmy\nPatrick\nWesley\nCharlie\nDwight\nGuy\nIvan\nJunior\nLoren\nOscar\nRudy\nAntonio\nByron\nChester\nClayton\nJerry\nJesus\nLarry\nLaurence\nTed\nVincent\nAlex\nBenny\nElbert\nForrest\nIgnacio\nJake\nJuan\nOrville\nRudolph\nBert\nBillie\nDelbert\nJohnnie\nLeland\nLeon\nLuis\nMarion\nMaurice\nMerle\nMichael\nMorris\nOliver\nPeter\nSteve\nAlfonso\nDan\nDave\nEldon\nHarlan\nJackie\nMyron\nOwen\nSidney\nAlan\nArnold\nAugustine\nDuane\nFelipe\nHarley\nJess\nLowell\nWillie\nAngelo\nArchie\nCharley\nClinton\nDarrell\nDewey\nErvin\nHubert\nIrwin\nJay\nLoyd\nMark\nNed\nNicholas\nNick\nOrval\nOtto\nReuben\nRodney\nRuben\nSalvador\nSimon\nStephen\nAbel\nArmando\nBernie\nBurton\nBuster\nCarmen\nCarroll\nCurtis\nDanny\nDarrel\nDennis\nErwin\nGarfield\nGayle\nGregory\nHugh\nJacob\nJoel\nJulian\nKarl\nLynn\nMiguel\nNeil\nOrlando\nPablo\nPedro\nRex\nSteven\nTruman\nWilbert\nWilford\nRobert\nJohn\nWilliam\nJames\nDonald\nCharles\nRichard\nGeorge\nHarold\nJoe\nJack\nJoseph\nFrank\nEdward\nPaul\nRaymond\nKenneth\nAlbert\nArthur\nDavid\nThomas\nEugene\nHarry\nWalter\nRalph\nBill\nFred\nHenry\nBob\nHoward\nRoy\nGerald\nLawrence\nCarl\nJose\nErnest\nLouis\nWayne\nElmer\nManuel\nLeo\nDale\nFloyd\nLloyd\nMelvin\nNorman\nClarence\nGene\nLee\nDon\nTony\nEarl\nRay\nVernon\nBilly\nGilbert\nLeroy\nDaniel\nLeonard\nMarvin\nGlenn\nRonald\nGlen\nSam\nStanley\nFrancis\nHerbert\nRussell\nAlfred\nPete\nAlvin\nEverett\nTom\nVictor\nClifford\nPhillip\nEdwin\nLewis\nMax\nAnthony\nJim\nJuan\nSamuel\nTheodore\nWarren\nDean\nHerman\nJerry\nJohnny\nLarry\nPhilip\nCecil\nBobby\nClyde\nDelbert\nHarvey\nLeland\nMike\nAllen\nBernard\nGordon\nMarion\nTommy\nAntonio\nCalvin\nJesus\nKeith\nPeter\nFrederick\nJesse\nLyle\nMilton\nBruce\nDuane\nLester\nOscar\nRudolph\nAlex\nBen\nBenjamin\nCharlie\nEddie\nFelix\nJimmy\nJunior\nLuis\nRoger\nTed\nWilbur\nAlfonso\nDave\nEdgar\nJimmie\nPedro\nBennie\nClaude\nDan\nDick\nJohnnie\nMartin\nOrville\nVirgil\nAndrew\nArnold\nByron\nDouglas\nEmmett\nFranklin\nJake\nLeslie\nPatrick\nRoland\nWesley\nArchie\nClayton\nErvin\nRudy\nVincent\nWillard\nWillis\nEldon\nFrancisco\nGale\nJay\nLoren\nMalcolm\nMaurice\nModesto\nOliver\nRuben\nStephen\nSteve\nAlan\nBillie\nForrest\nHomer\nLowell\nMerle\nReuben\nSalvador\nSteven\nWallace\nWendell\nAdolph\nAllan\nAmos\nAndy\nBenny\nClinton\nEd\nGuadalupe\nHarlan\nHarley\nHorace\nHugh\nLeon\nLupe\nMargarito\nMichael\nMorris\nOtis\nAlva\nArmando\nBobbie\nCarlos\nChester\nDelmar\nEdmund\nFreddie\nJerome\nJoaquin\nJulian\nLaurence\nLouie\nMiguel\nMyron\nNorbert\nOwen\nPhil\nRussel\nSidney\nWade\nWillie\nAaron\nAlonzo\nAugustine\nBarney\nBert\nCurtis\nDwight\nEllis\nElmo\nEloy\nGregory\nGuy\nHubert\nIvan\nJackie\nJacob\nJess\nLaverne\nLorenzo\nMarshall\nMerlin\nNathan\nNeil\nNick\nOrlando\nOtto\nPat\nRamon\nRodney\nRobert\nJohn\nWilliam\nJames\nDonald\nCharles\nGeorge\nRichard\nJoe\nJack\nFrank\nKenneth\nHarold\nEdward\nRaymond\nDavid\nPaul\nJoseph\nFred\nAlbert\nWalter\nArthur\nThomas\nBill\nHoward\nEugene\nHarry\nHenry\nBob\nAlfred\nRalph\nDon\nRoy\nCarl\nEarl\nManuel\nClarence\nMelvin\nErnest\nJose\nMarvin\nLloyd\nLouis\nGerald\nHerbert\nLeo\nNorman\nBilly\nWayne\nGilbert\nGlenn\nJerry\nTony\nClyde\nDale\nLeonard\nLeroy\nRonald\nGene\nLawrence\nRay\nStanley\nVernon\nElmer\nGlen\nFloyd\nEdwin\nWilbur\nAlvin\nPete\nRussell\nBobby\nDean\nJohnny\nLee\nDaniel\nEddie\nGordon\nVictor\nPhillip\nClifford\nFrancis\nJim\nSam\nAnthony\nDuane\nJimmy\nKeith\nMax\nTheodore\nDan\nDick\nLester\nPhilip\nWarren\nJuan\nTom\nJimmie\nTommy\nAndrew\nBruce\nMartin\nVirgil\nBennie\nChester\nLeslie\nMike\nPeter\nSamuel\nBen\nClaude\nHerman\nHugh\nJesus\nDouglas\nHarvey\nLyle\nMichael\nAllen\nBernard\nCharlie\nDelbert\nJohnnie\nJulian\nLeon\nLoren\nFelix\nJesse\nMarion\nOrville\nTed\nWesley\nCalvin\nEverett\nLarry\nRex\nRoger\nRudolph\nBert\nEdgar\nIvan\nSteve\nWallace\nAlex\nAntonio\nCarlos\nCecil\nJackie\nLewis\nLowell\nNick\nWillard\nDarrell\nMilton\nAlan\nBenjamin\nDennis\nJake\nLeland\nLouie\nLuis\nMark\nOscar\nPatrick\nPedro\nSidney\nWillis\nArmando\nAubrey\nEldon\nForrest\nFrederick\nHomer\nHorace\nHubert\nJay\nJess\nMary\nMaurice\nRodney\nRuben\nSalvador\nVincent\nWillie\nArnold\nByron\nClinton\nConrad\nEloy\nFranklin\nFredrick\nJunior\nLevi\nLynn\nMerle\nOliver\nPat\nPerry\nPhil\nRoberto\nWendell\nAngelo\nBillie\nCandelario\nCharley\nChris\nClayton\nCurtis\nDelmar\nEmery\nIrvin\nJacob\nMorris\nOwen\nRafael\nRudy\nSantiago\nSherman\nSimon\nStephen\nSteven\nToby\nWilbert\nAdolph\nAdrian\nAlfonso\nAllan\nBenny\nBernie\nBud\nDallas\nDave\nDwight\nEdmund\nEmil\nEmilio\nFrancisco\nFrankie\nGilberto\nGuillermo\nGuy\nJulius\nKarl\nLaurence\nLavern\nLoyd\nMerlin\nMyron\nNeil\nRamon\nRaul\nReuben\nRoland\nRolland\nRoss\nSabino\nScott\nSolomon\nVerne\nVicente\nRobert\nJohn\nDonald\nWilliam\nJames\nRichard\nCharles\nGeorge\nJoe\nJack\nFrank\nKenneth\nHarold\nRaymond\nEdward\nPaul\nThomas\nDavid\nAlbert\nArthur\nJoseph\nRalph\nWalter\nEugene\nHarry\nFred\nBilly\nRoy\nBob\nBill\nCarl\nLouis\nAlfred\nEarl\nGerald\nNorman\nDale\nDon\nElmer\nErnest\nWayne\nClarence\nLeroy\nGilbert\nHenry\nLawrence\nMarvin\nHerbert\nLeonard\nJose\nGene\nManuel\nHoward\nRay\nTony\nLeo\nRonald\nLloyd\nMelvin\nClifford\nGlenn\nVernon\nStanley\nEdwin\nGlen\nJerry\nDaniel\nDean\nFrancis\nJim\nLee\nPete\nPhilip\nFloyd\nJimmy\nClyde\nKeith\nBobby\nJohnny\nPhillip\nGordon\nTed\nTommy\nVictor\nVirgil\nWallace\nBruce\nRussell\nJimmie\nLeslie\nMax\nTom\nBen\nDick\nDouglas\nRoger\nWarren\nAllen\nHarvey\nWilbur\nAndrew\nBenjamin\nBernard\nDuane\nEddie\nEverett\nFelix\nSam\nAlvin\nAnthony\nBennie\nJesse\nJesus\nLeland\nSamuel\nAlex\nChester\nIvan\nJohnnie\nJuan\nLarry\nLester\nMike\nRuben\nSteve\nCecil\nDelbert\nRudolph\nRudy\nBenny\nHerman\nLewis\nTheodore\nWendell\nCharlie\nClaude\nEloy\nWesley\nArnold\nJake\nLuis\nLyle\nMartin\nOrville\nSalvador\nDan\nFrancisco\nJulian\nLaurence\nLoren\nMilton\nOliver\nOrlando\nPeter\nAlfonso\nAntonio\nArchie\nDave\nEdgar\nFranklin\nHomer\nHugh\nLeon\nMaurice\nMichael\nSammy\nWillard\nWillie\nWillis\nAlan\nArturo\nEldon\nFrederick\nFredrick\nGary\nGuy\nHubert\nLynn\nMarion\nMerle\nMyron\nNick\nPedro\nPerry\nRoss\nAlexander\nAmos\nClinton\nDanny\nDarrel\nErnie\nIrvin\nJackie\nJunior\nLouie\nRamon\nVerne\nWilfred\nAllan\nAndy\nBillie\nBud\nBurton\nCurtis\nDallas\nDarrell\nDarwin\nDwight\nEmilio\nEmmett\nFidel\nFreddie\nHorace\nIra\nJerome\nKarl\nLowell\nReuben\nSteven\nWilbert\nAugustine\nBenito\nBert\nBoyd\nCalvin\nCarroll\nChris\nConrad\nDewey\nDonnie\nEnrique\nHarley\nJess\nLupe\nMarshall\nMiguel\nPat\nPatrick\nRafael\nRoland\nRosendo\nRobert\nJohn\nWilliam\nDonald\nJames\nRichard\nCharles\nGeorge\nJack\nJoe\nKenneth\nHarold\nEdward\nFrank\nRaymond\nPaul\nDavid\nThomas\nAlbert\nJoseph\nArthur\nFred\nWalter\nRalph\nCarl\nBill\nEugene\nDon\nBob\nErnest\nGerald\nRoy\nMelvin\nHenry\nDale\nJose\nHoward\nGilbert\nHarry\nRonald\nEarl\nLawrence\nLouis\nBilly\nJerry\nMarvin\nRay\nLeo\nNorman\nLeonard\nManuel\nTony\nDaniel\nKeith\nWayne\nClarence\nLloyd\nVernon\nAnthony\nDean\nFloyd\nGene\nGlenn\nBobby\nHerbert\nLee\nAlfred\nEdwin\nLeroy\nMike\nClyde\nClifford\nJim\nPete\nTommy\nDuane\nGlen\nLewis\nSam\nStanley\nTheodore\nRoger\nRussell\nVictor\nVirgil\nWarren\nDick\nJimmie\nMartin\nTom\nElmer\nHarvey\nLarry\nMarion\nGordon\nJimmy\nPhilip\nAllen\nDelbert\nHerman\nAlvin\nFrancis\nJuan\nLester\nPhillip\nSamuel\nAlex\nBruce\nLeslie\nBen\nDan\nDarrell\nEddie\nEverett\nFranklin\nLeland\nLeon\nMax\nPeter\nRudolph\nSteve\nWilbur\nClaude\nJesus\nJohnny\nMaurice\nMilton\nRudy\nTed\nIvan\nLoren\nWallace\nAlfonso\nDouglas\nJesse\nJohnnie\nLyle\nMichael\nBernard\nBillie\nFrederick\nLoyd\nOrville\nPatrick\nRuben\nWesley\nAntonio\nCecil\nGary\nHubert\nJake\nRamon\nRoland\nAndrew\nBennie\nCalvin\nEldon\nFelix\nRoss\nWillie\nArnold\nBenjamin\nBenny\nByron\nCarlos\nDanny\nDoyle\nDwight\nHugh\nLuis\nNick\nOrlando\nStephen\nWendell\nWillard\nAngelo\nBuddy\nChester\nClayton\nDennis\nForrest\nJackie\nJacob\nJay\nMyron\nOliver\nOscar\nVincent\nWaldo\nWilbert\nAdolph\nBert\nBurton\nCarroll\nCharley\nCharlie\nConrad\nCurtis\nDave\nEmmett\nHarley\nJess\nJulian\nLynn\nMerle\nPat\nRex\nRodney\nSalvador\nSammy\nTeddy\nVern\nWillis\nAlan\nAndy\nArchie\nBoyd\nElbert\nElias\nEloy\nFreddie\nGabriel\nGuillermo\nGuy\nIgnacio\nJunior\nKarl\nLaurence\nMorris\nOtis\nPablo\nPedro\nPerry\nPhil\nReuben\nSidney\nAbel\nAllan\nAngel\nAugust\nDelmar\nEdgar\nElton\nEmilio\nErwin\nHomer\nJerome\nLouie\nMatthew\nMiguel\nNeil\nNorris\nSimon\nSolomon\nWilfred\nRobert\nJohn\nDonald\nJames\nWilliam\nRichard\nCharles\nGeorge\nJack\nJoe\nDavid\nFrank\nHarold\nKenneth\nRaymond\nPaul\nEdward\nThomas\nBob\nJoseph\nGerald\nRalph\nAlbert\nBilly\nWalter\nBill\nFred\nCarl\nArthur\nHenry\nErnest\nMarvin\nDon\nRonald\nDale\nWayne\nNorman\nRoy\nEugene\nLawrence\nLouis\nEarl\nLeonard\nLeroy\nJose\nRay\nHarry\nStanley\nGene\nJerry\nGilbert\nLarry\nMelvin\nHoward\nFloyd\nAlfred\nLloyd\nJimmie\nJohnny\nKeith\nManuel\nTony\nBobby\nEddie\nTheodore\nTom\nClarence\nEdwin\nElmer\nHerbert\nVictor\nDean\nGlenn\nLeo\nTommy\nDuane\nLewis\nVernon\nClyde\nJim\nRoger\nEverett\nFrancis\nMike\nClifford\nGlen\nPhilip\nLee\nRussell\nLeslie\nAlvin\nDaniel\nDelbert\nBen\nDick\nJimmy\nAnthony\nHarvey\nPete\nPhillip\nSam\nBenjamin\nBernard\nGordon\nAlan\nAndrew\nChester\nHerman\nIvan\nJesse\nMax\nRudy\nTed\nWilbur\nWillard\nAllen\nBruce\nCalvin\nCecil\nCharlie\nDouglas\nGary\nJuan\nVincent\nWarren\nJulian\nPeter\nSamuel\nWesley\nAllan\nAntonio\nArnold\nBillie\nFelix\nJay\nJohnnie\nLester\nPatrick\nRoland\nRudolph\nWallace\nBenny\nFrederick\nHubert\nLeon\nMarion\nMartin\nMyron\nOrlando\nRuben\nVirgil\nAlex\nDarrell\nHomer\nHugh\nJunior\nLyle\nMerle\nRex\nWillie\nDan\nGuy\nJackie\nLowell\nMaurice\nMichael\nNeil\nSammy\nArchie\nBennie\nConrad\nEldon\nIrvin\nLaurence\nLuis\nNick\nPedro\nCarlos\nClaude\nDanny\nDave\nDennis\nEloy\nLeland\nMark\nOliver\nSalvador\nSidney\nAlberto\nAlexander\nByron\nCarroll\nClinton\nEdgar\nFrancisco\nFranklin\nKarl\nOrville\nRamon\nStephen\nVern\nWilbert\nWillis\nAlfonso\nBobbie\nDwayne\nDwight\nFreddie\nGuillermo\nHarley\nJoel\nKent\nLaverne\nLouie\nMiguel\nMilton\nMorris\nPerry\nRodney\nSteve\nTeddy\nTerry\nWendell\nAbel\nArlen\nAugust\nDallas\nDarwin\nDaryl\nEarnest\nElvin\nEmmett\nIsadore\nJerald\nJess\nJesus\nLoren\nNeal\nNicholas\nOscar\nOtto\nOwen\nPat\nRaul\nRoberto\nRolland\nRoss\nSteven\nVan\nWilfred\nRobert\nDonald\nJohn\nRichard\nJames\nWilliam\nCharles\nGeorge\nJack\nJoe\nFrank\nEdward\nRonald\nKenneth\nDavid\nPaul\nHarold\nRaymond\nAlbert\nThomas\nRalph\nJoseph\nDon\nFred\nBill\nBilly\nEugene\nGerald\nJerry\nBob\nWalter\nCarl\nMarvin\nGilbert\nArthur\nDale\nNorman\nLouis\nLawrence\nErnest\nHarry\nWayne\nRoy\nManuel\nDaniel\nEarl\nHoward\nEdwin\nStanley\nLeroy\nLeo\nLeonard\nClarence\nDuane\nJim\nKeith\nLarry\nMelvin\nGene\nHenry\nVernon\nAlfred\nAlvin\nRay\nDean\nJose\nBobby\nDelbert\nFloyd\nGordon\nJimmie\nLloyd\nTony\nGlenn\nPete\nRussell\nTommy\nClyde\nGlen\nJimmy\nJohnny\nTom\nEddie\nAnthony\nElmer\nHerbert\nMartin\nDick\nFranklin\nLee\nRoger\nVictor\nBernard\nTed\nTheodore\nClifford\nRudy\nDouglas\nHarvey\nMax\nPhilip\nAllen\nDan\nDarrell\nPatrick\nBen\nJesse\nLewis\nMike\nRuben\nVirgil\nWilbur\nAntonio\nGary\nNeil\nBruce\nCecil\nCharlie\nFrancis\nJohnnie\nLeon\nLoren\nRoland\nCarroll\nEverett\nHerman\nLeslie\nLester\nLuis\nMichael\nArnold\nLyle\nMilton\nPhillip\nSam\nWallace\nWarren\nAlan\nDanny\nHugh\nJay\nLynn\nMarion\nPat\nVern\nAlex\nAndrew\nBert\nEdgar\nFelix\nFrederick\nFredrick\nJesus\nNick\nPeter\nRudolph\nSamuel\nWillard\nBenjamin\nBennie\nCarlos\nChester\nDave\nEldon\nHarley\nRamon\nRex\nTeddy\nWillis\nArchie\nBryce\nCalvin\nClaude\nEloy\nLeland\nLorenzo\nLouie\nMaurice\nMerle\nMyron\nPhil\nSidney\nStephen\nSteve\nVincent\nWilfred\nAlfonso\nAllan\nByron\nChris\nClinton\nDarrel\nFreddie\nHomer\nJess\nMark\nMonte\nOrville\nRodney\nRonnie\nWillie\nAbel\nAndy\nArmando\nAugust\nBenny\nBobbie\nDelmar\nDennis\nDwight\nGuy\nIra\nIvan\nLuther\nOwen\nRoss\nWendell\nAdam\nAmos\nAugustine\nBillie\nClayton\nElvin\nErvin\nJuan\nJunior\nLowell\nMicheal\nNorbert\nOrlando\nOtis\nSalvador\nToby\nWesley\nRobert\nJohn\nRichard\nJames\nDonald\nCharles\nWilliam\nGeorge\nJoe\nJack\nFrank\nRonald\nDavid\nKenneth\nRaymond\nPaul\nEdward\nHarold\nJoseph\nFred\nRalph\nThomas\nJerry\nBill\nGerald\nAlbert\nArthur\nBilly\nWalter\nBob\nMarvin\nDon\nErnest\nEugene\nLawrence\nHarry\nCarl\nHoward\nLloyd\nJimmy\nLouis\nHenry\nRay\nGilbert\nLarry\nMelvin\nDale\nGene\nLeonard\nLeroy\nWayne\nRoy\nStanley\nNorman\nEarl\nJim\nDaniel\nFranklin\nJose\nTony\nManuel\nVernon\nBobby\nJohnny\nGlenn\nJimmie\nLeo\nClarence\nMike\nSam\nAnthony\nClifford\nDan\nDean\nHarvey\nEddie\nEdwin\nFloyd\nGary\nLee\nPhilip\nWarren\nAllen\nAlvin\nKeith\nRussell\nTom\nBruce\nDick\nDuane\nElmer\nGordon\nRoger\nTheodore\nTommy\nAlfred\nDarrell\nDelbert\nEverett\nMichael\nPete\nTed\nHerbert\nClyde\nGlen\nLewis\nVictor\nArnold\nFrancis\nMartin\nBen\nNeil\nRudy\nAndrew\nChester\nHerman\nLeland\nPhillip\nBernard\nByron\nDouglas\nLyle\nMarion\nMax\nMilton\nLester\nWillard\nAlan\nCecil\nCharlie\nJesse\nMyron\nNick\nPeter\nStephen\nSteve\nVincent\nAlfonso\nDanny\nJohnnie\nPatrick\nTeddy\nAlex\nBennie\nFreddie\nJuan\nJulian\nLoren\nLouie\nOrville\nRex\nSamuel\nWesley\nClinton\nFelix\nJackie\nJacob\nJay\nLeslie\nMerle\nRodney\nRuben\nTerry\nVirgil\nArchie\nClaude\nDennis\nHarley\nHomer\nIvan\nMaurice\nPat\nRolland\nRonnie\nAntonio\nBenjamin\nBuddy\nCalvin\nDarrel\nEldon\nErnie\nFrederick\nGale\nHugh\nJunior\nLavern\nLowell\nMark\nRamon\nRoland\nRudolph\nWillis\nAndy\nBenny\nBernie\nCurtis\nDaryl\nFrankie\nGuy\nJesus\nLeon\nLevi\nMorton\nNeal\nSidney\nSteven\nToby\nWilbur\nBillie\nBobbie\nCruz\nDallas\nDelmar\nEd\nEdgar\nEloy\nGalen\nJerald\nJon\nLuis\nLynn\nMiguel\nNoel\nOliver\nPerry\nReuben\nRoss\nRobert\nJames\nJohn\nRichard\nDonald\nWilliam\nCharles\nJoe\nGeorge\nDavid\nJack\nFrank\nKenneth\nPaul\nRonald\nThomas\nRaymond\nEdward\nHarold\nDon\nJerry\nBill\nArthur\nJoseph\nFred\nGerald\nLarry\nAlbert\nBob\nNorman\nHarry\nDale\nLawrence\nRoy\nRalph\nBilly\nGilbert\nLouis\nCarl\nWalter\nHenry\nLeonard\nErnest\nRay\nWayne\nMelvin\nStanley\nEugene\nManuel\nVernon\nHoward\nJim\nTommy\nGlenn\nMarvin\nRoger\nDick\nGene\nDaniel\nEarl\nLeroy\nGary\nLeo\nPete\nClarence\nJose\nMichael\nClifford\nBobby\nJimmy\nTony\nFloyd\nLloyd\nClyde\nDuane\nEddie\nAlfred\nGlen\nJimmie\nKeith\nAlvin\nAnthony\nBruce\nDean\nLee\nDelbert\nGordon\nFranklin\nPhillip\nAndrew\nBernard\nHerbert\nJohnny\nMax\nTed\nTom\nEdwin\nRudy\nMike\nVictor\nBen\nDan\nElmer\nLeland\nHarvey\nJesse\nLewis\nRussell\nSam\nDarrell\nDennis\nEdgar\nFrancis\nTheodore\nBenjamin\nLoren\nPhilip\nRodney\nRuben\nTerry\nVirgil\nFrederick\nIvan\nJohnnie\nJuan\nWarren\nWilbur\nAlex\nArnold\nDanny\nLeslie\nMartin\nMilton\nOliver\nPeter\nCalvin\nDouglas\nEverett\nHugh\nIrvin\nOrville\nSamuel\nTeddy\nVincent\nAllen\nBenny\nCecil\nClaude\nLuis\nMarion\nRex\nSteve\nAlfonso\nClinton\nFelix\nHerman\nJackie\nLeon\nLester\nLouie\nLyle\nNeil\nRonnie\nRudolph\nWesley\nWillard\nArchie\nByron\nCarroll\nCurtis\nEloy\nHarley\nJay\nMaurice\nMyron\nNeal\nNick\nPat\nPatrick\nPhil\nSteven\nWallace\nWillie\nWillis\nAlan\nAndy\nCarlos\nDave\nDelmar\nDonnie\nDwight\nEdmund\nEldon\nGrant\nHomer\nJesus\nLowell\nOrlando\nRoberto\nTim\nAllan\nAngelo\nAntonio\nBennie\nBillie\nBud\nDarrel\nLanny\nMerle\nMerlin\nRoland\nSidney\nToby\nAdolph\nAugust\nBenito\nBernie\nCharlie\nChester\nChris\nClayton\nDelmer\nErnie\nFreddie\nGuy\nHorace\nHubert\nIra\nJacob\nJean\nJerome\nJulian\nJunior\nKent\nLonnie\nLynn\nMicheal\nOscar\nRamon\nRaymon\nWendell\nWilfred\nRobert\nJames\nJohn\nRichard\nDonald\nWilliam\nCharles\nGeorge\nDavid\nJoe\nJack\nKenneth\nFrank\nRonald\nEdward\nHarold\nPaul\nJerry\nRaymond\nThomas\nJoseph\nArthur\nFred\nLarry\nAlbert\nGerald\nDon\nLeroy\nRalph\nLouis\nGary\nEugene\nCarl\nBill\nJim\nMarvin\nLawrence\nBob\nWalter\nHenry\nWayne\nStanley\nBilly\nDale\nErnest\nGilbert\nJimmy\nRoy\nHarry\nLee\nManuel\nJohnny\nRay\nLeo\nMelvin\nNorman\nRoger\nDaniel\nTony\nHoward\nClarence\nLloyd\nLeonard\nJose\nClifford\nGene\nDuane\nFloyd\nPhilip\nDick\nGordon\nTommy\nBruce\nDennis\nPhillip\nAnthony\nGlenn\nAlfred\nDean\nKeith\nSam\nVernon\nDelbert\nMax\nTheodore\nTom\nWarren\nBobby\nEddie\nAlvin\nDouglas\nEdwin\nHerbert\nJimmie\nMichael\nVictor\nEarl\nRussell\nDanny\nBen\nGlen\nLewis\nPete\nTed\nVirgil\nBenny\nLeslie\nWesley\nFelix\nJackie\nMartin\nEverett\nStephen\nAlan\nAllen\nArnold\nDan\nJesse\nLyle\nAlfonso\nCecil\nClyde\nDarrell\nHarvey\nHerman\nJuan\nRudy\nJay\nLeon\nNick\nRodney\nSamuel\nClaude\nElmer\nLester\nVincent\nAndrew\nBobbie\nChester\nDave\nFranklin\nLouie\nMilton\nOrville\nRonnie\nWilbur\nWillard\nBenjamin\nBennie\nBernard\nBert\nByron\nDarrel\nGale\nIvan\nJess\nJohnnie\nMike\nNeal\nNeil\nPeter\nWallace\nAntonio\nClayton\nFrancis\nHarley\nLoren\nLuis\nSteve\nAlex\nAndy\nBuddy\nCalvin\nCharlie\nCurtis\nDonnie\nDoyle\nDwight\nEldon\nErnie\nFrederick\nJerome\nMaurice\nTerry\nToby\nAlexander\nArchie\nEloy\nFrancisco\nFredrick\nLynn\nMark\nPat\nPatrick\nPhil\nRuben\nRudolph\nTeddy\nAllan\nBurton\nCarlos\nClinton\nFrankie\nFreddie\nJacob\nJulian\nKent\nLeland\nMerle\nOrlando\nRex\nSammy\nTimothy\nWilfred\nAl\nChris\nClark\nClifton\nConrad\nDallas\nDelfino\nDelmar\nEdgar\nElvin\nFidel\nGuy\nHubert\nIrvin\nJake\nJesus\nJon\nKarl\nLevi\nLonnie\nLowell\nMarion\nMonte\nOtto\nPedro\nPerry\nStuart\nVance\nWendell\nRobert\nJohn\nDonald\nRichard\nJames\nWilliam\nCharles\nDavid\nRonald\nJoe\nKenneth\nFrank\nGeorge\nJack\nLarry\nEdward\nThomas\nJerry\nPaul\nRaymond\nGerald\nHarold\nJoseph\nFred\nGary\nAlbert\nLawrence\nArthur\nBill\nRalph\nDon\nEugene\nBob\nDale\nGilbert\nRoger\nCarl\nRoy\nWalter\nDaniel\nJim\nAlfred\nHarry\nMelvin\nBilly\nLeroy\nErnest\nLouis\nMarvin\nJohnny\nWayne\nRay\nHoward\nMichael\nNorman\nStanley\nGene\nHenry\nLee\nManuel\nPhillip\nVernon\nLloyd\nTony\nEddie\nEdwin\nClarence\nClifford\nJose\nKeith\nLeo\nPete\nTom\nLeonard\nWarren\nAlvin\nBobby\nEarl\nFloyd\nTommy\nAnthony\nDick\nGlenn\nPhilip\nDanny\nDuane\nJimmie\nJimmy\nMax\nArnold\nBernard\nDouglas\nHarvey\nHerbert\nLeslie\nMike\nSamuel\nAlan\nBruce\nClaude\nRonnie\nFranklin\nVictor\nMartin\nPatrick\nRussell\nDelbert\nRex\nTed\nTheodore\nAllen\nDean\nDennis\nGlen\nGordon\nJackie\nAlex\nCecil\nFrancis\nBenny\nClyde\nDan\nDarrell\nEldon\nFrederick\nJesse\nLeon\nLester\nLewis\nRodney\nAndrew\nEverett\nJon\nPat\nPeter\nRoland\nRudolph\nRudy\nAlfonso\nFreddie\nHerman\nJohnnie\nMarion\nMerle\nBen\nBert\nCharlie\nCurtis\nFelix\nLoren\nLyle\nNick\nSammy\nWilbur\nJay\nKarl\nKent\nPhil\nTerry\nWesley\nArchie\nCarlos\nJake\nSam\nStephen\nTimothy\nVern\nVincent\nChester\nDave\nDwayne\nEdgar\nElmer\nForrest\nFrancisco\nHubert\nJunior\nLeland\nMaurice\nMilton\nNeil\nRuben\nSteve\nSteven\nAllan\nBarry\nBenjamin\nBennie\nCalvin\nCarroll\nChris\nDarrel\nFredrick\nGarry\nHarley\nIra\nIvan\nJess\nJesus\nJoel\nJulian\nLynn\nMark\nVirgil\nWendell\nWillard\nWillie\nWillis\nAugustine\nBernie\nBillie\nBoyd\nBuddy\nClayton\nClinton\nDoyle\nElbert\nFermin\nGrant\nGregory\nGuy\nJerome\nLouie\nLuis\nMerrill\nNed\nOscar\nAlonzo\nAntonio\nDarwin\nFilbert\nFrankie\nHector\nJacob\nJessie\nKen\nLowell\nLupe\nMiguel\nMorris\nNoel\nOliver\nOrlando\nOrville\nRoss\nSidney\nStuart\nTeddy\nWallace\nRobert\nJohn\nJames\nDonald\nRichard\nWilliam\nCharles\nRonald\nDavid\nLarry\nGeorge\nJoe\nJerry\nKenneth\nEdward\nJack\nThomas\nPaul\nFrank\nGerald\nGary\nRaymond\nJoseph\nHarold\nFred\nDale\nJim\nCarl\nArthur\nWalter\nEugene\nLeroy\nAlbert\nRalph\nHenry\nMichael\nWayne\nDaniel\nRoy\nBill\nDon\nGene\nGilbert\nBilly\nHarry\nLeonard\nMarvin\nNorman\nLawrence\nErnest\nRoger\nAlfred\nBob\nHoward\nPhillip\nMelvin\nLee\nDennis\nEddie\nClifford\nFloyd\nKeith\nLeo\nVernon\nEarl\nJimmy\nRay\nGordon\nLouis\nManuel\nStanley\nTony\nDouglas\nDuane\nJimmie\nPhilip\nAnthony\nDelbert\nJose\nClarence\nJohnny\nLloyd\nTom\nVictor\nAllen\nBobby\nGlen\nHarvey\nPete\nArnold\nDanny\nDarrell\nDean\nFranklin\nTommy\nBruce\nRonnie\nRussell\nWarren\nEdwin\nHerbert\nTheodore\nAlvin\nLeslie\nClyde\nDick\nFrancis\nGlenn\nStephen\nTed\nDave\nAndrew\nByron\nMax\nSamuel\nTerry\nDan\nRodney\nWesley\nBenjamin\nJon\nLester\nMartin\nSam\nEverett\nJesse\nJesus\nMike\nChester\nJay\nJerome\nLeon\nPeter\nRudolph\nVirgil\nAlan\nCalvin\nIvan\nJackie\nLewis\nLowell\nMerle\nSidney\nVincent\nWillard\nAlfonso\nCecil\nClaude\nFelix\nHerman\nJohnnie\nLoren\nLynn\nNick\nOrlando\nRudy\nBen\nBernard\nFrankie\nFrederick\nMarion\nPatrick\nSammy\nWallace\nWilbur\nAlex\nAntonio\nCarroll\nCharlie\nElmer\nFreddie\nKay\nRoss\nSteve\nWillis\nAllan\nBenny\nConrad\nForrest\nLeland\nRuben\nAlonzo\nAngelo\nArmando\nBert\nCarlos\nChris\nClinton\nEdgar\nHomer\nJess\nKent\nLuis\nMilton\nNeil\nOrville\nRex\nTeddy\nWillie\nBillie\nDonnie\nDwayne\nDwight\nEldon\nErnie\nGrant\nGregory\nHarley\nJacob\nJerald\nJuan\nLeeroy\nLouie\nLoyd\nMark\nMorris\nMyron\nOscar\nAdolph\nAmos\nBarry\nBennie\nBrian\nClark\nClayton\nDarrel\nDarryl\nDoyle\nEarnest\nEd\nElias\nErvin\nFreddy\nFredrick\nGuy\nLyle\nNoel\nPerry\nPhil\nRamon\nReuben\nRoderick\nRolland\nRoyce\nSheldon\nSteven\nToby\nValentine\nRobert\nJohn\nJames\nRichard\nWilliam\nDonald\nCharles\nRonald\nDavid\nLarry\nKenneth\nGeorge\nJoe\nJerry\nFrank\nThomas\nGary\nEdward\nRaymond\nJack\nJoseph\nPaul\nGerald\nFred\nMichael\nLawrence\nHarold\nArthur\nDon\nLeroy\nCarl\nDaniel\nRoy\nAlbert\nEugene\nRalph\nBob\nJim\nErnest\nNorman\nMelvin\nWalter\nHarry\nRoger\nBill\nBilly\nManuel\nWayne\nJimmy\nLeonard\nStanley\nAnthony\nGilbert\nHenry\nMarvin\nRay\nTommy\nDale\nEarl\nLouis\nDennis\nJohnny\nBobby\nClifford\nClarence\nFloyd\nGlen\nHoward\nGene\nDouglas\nGordon\nPhilip\nEddie\nAllen\nLeo\nLloyd\nPhillip\nRonnie\nSamuel\nTony\nDuane\nJose\nTheodore\nKeith\nLee\nPatrick\nRussell\nGlenn\nArnold\nDelbert\nDanny\nDick\nPete\nStephen\nTom\nAlan\nAlfred\nBruce\nFrancis\nHarvey\nDean\nEdwin\nMax\nRudy\nTerry\nLester\nPeter\nSteve\nVincent\nVictor\nClyde\nJackie\nVernon\nAlvin\nAndrew\nBernard\nDan\nJimmie\nVirgil\nByron\nMike\nTed\nWarren\nWesley\nCurtis\nDarrell\nEverett\nRodney\nClaude\nElmer\nHerbert\nIvan\nLewis\nMartin\nMyron\nRoland\nAlfonso\nBenny\nFranklin\nLonnie\nBen\nBenjamin\nCarlos\nFrederick\nJon\nOrlando\nSam\nWillard\nDave\nNick\nWilbur\nAlex\nAndy\nCecil\nJerome\nJesse\nJulian\nLeon\nLeslie\nLyle\nLynn\nRex\nAllan\nBennie\nDallas\nDarrel\nFelix\nGarry\nHugh\nIsaac\nJake\nJohnnie\nLeland\nLoren\nMarion\nMarshall\nSammy\nSteven\nChester\nEdgar\nEldon\nJay\nJerald\nKarl\nLaurence\nLouie\nLowell\nMerle\nNeil\nWillie\nBernie\nBuddy\nCalvin\nCharlie\nChuck\nClinton\nFredrick\nMark\nMilton\nMonte\nRuben\nRudolph\nSalvador\nChris\nDelmar\nDwight\nEloy\nEric\nFernando\nFrancisco\nFreddie\nJacob\nLoyd\nLyman\nMorris\nPat\nReuben\nTim\nTimothy\nAlva\nAmos\nBrian\nClayton\nConrad\nDaryl\nDelfino\nDelmer\nDonnie\nEmmett\nErnie\nFidel\nGerry\nGregory\nGus\nJuan\nJunior\nKen\nKent\nLanny\nNicholas\nOrville\nPedro\nPhil\nStuart\nToby\nWallace\nRobert\nJames\nJohn\nRichard\nWilliam\nCharles\nDonald\nDavid\nLarry\nRonald\nThomas\nGeorge\nJerry\nKenneth\nJoe\nGary\nGerald\nFrank\nJoseph\nEdward\nRaymond\nJack\nPaul\nDennis\nHarold\nNorman\nLawrence\nArthur\nMichael\nFred\nDon\nRoger\nRalph\nWayne\nLeroy\nBill\nDale\nEugene\nHenry\nBob\nDaniel\nJim\nCarl\nErnest\nAlbert\nWalter\nGilbert\nRoy\nTerry\nMarvin\nMelvin\nRay\nHarry\nStanley\nJohnny\nLeonard\nRussell\nAnthony\nBilly\nBruce\nGene\nJimmy\nStephen\nDelbert\nDouglas\nClifford\nFloyd\nLloyd\nHoward\nTom\nEddie\nLeo\nTony\nVernon\nManuel\nMax\nPhilip\nAlfred\nDean\nJose\nLouis\nAlan\nEarl\nGlen\nPhillip\nTommy\nAllen\nDanny\nJimmie\nLee\nDick\nHerbert\nVictor\nMike\nPete\nSam\nWarren\nDarrell\nGlenn\nAlvin\nClarence\nClaude\nDuane\nEdwin\nFranklin\nFrederick\nGordon\nRodney\nLeslie\nPeter\nTed\nWesley\nBobby\nClyde\nDave\nHarvey\nLester\nPatrick\nSamuel\nVirgil\nJesse\nKeith\nSteve\nAlfonso\nAndrew\nArnold\nMartin\nOrlando\nRonnie\nTheodore\nJon\nJuan\nRoland\nWallace\nEldon\nEverett\nRudy\nCecil\nElmer\nCalvin\nCharlie\nJesus\nLewis\nMyron\nVincent\nAllan\nBennie\nBernard\nBert\nDan\nFrancis\nGuy\nLyle\nMarion\nMerle\nRuben\nBarry\nByron\nCarlos\nDarrel\nFelix\nIvan\nJay\nJerald\nKarl\nLoren\nLouie\nMorris\nRex\nRudolph\nWillard\nAlex\nBen\nClark\nJackie\nKent\nLynn\nMarshall\nMilton\nNick\nOrville\nRoss\nSammy\nAntonio\nBenny\nClinton\nFreddie\nFredrick\nHerman\nHugh\nJake\nJohnnie\nJulian\nLeland\nLeon\nLonnie\nMark\nOliver\nSteven\nTeddy\nAl\nBenjamin\nChester\nForrest\nFrancisco\nFrankie\nIsaac\nJoel\nKen\nKenny\nNeil\nSidney\nStuart\nTimothy\nWendell\nClayton\nConrad\nDarryl\nDwayne\nDwight\nGale\nJerome\nJess\nJunior\nLaurence\nNoel\nSherman\nTim\nWillis\nAdolph\nAmbrose\nAmos\nArchie\nArmando\nBryan\nCarroll\nClifton\nCraig\nDarwin\nDelmer\nEdmund\nElden\nElias\nEmil\nGarry\nGregory\nLanny\nLowell\nLoyd\nLuis\nMiguel\nNeal\nToby\nVal\nWilbert\nWilbur\nWilfred\nWillie\nRobert\nJohn\nJames\nRichard\nWilliam\nLarry\nDavid\nDonald\nCharles\nRonald\nGary\nGeorge\nJerry\nThomas\nKenneth\nJoe\nEdward\nPaul\nMichael\nJoseph\nFrank\nJack\nRaymond\nGerald\nDennis\nArthur\nHarold\nLeroy\nRalph\nFred\nCarl\nRoger\nAlbert\nDaniel\nLawrence\nErnest\nEugene\nNorman\nHenry\nJim\nWayne\nLouis\nRoy\nBill\nDale\nDon\nMarvin\nGilbert\nHarry\nJimmy\nMelvin\nLeonard\nStephen\nDouglas\nBob\nGene\nWalter\nJohnny\nTony\nBilly\nJose\nManuel\nTerry\nAlfred\nAnthony\nDelbert\nHoward\nLloyd\nRay\nAllen\nEddie\nFloyd\nVictor\nStanley\nVernon\nTommy\nPhilip\nPhillip\nRonnie\nTom\nEarl\nGlen\nPatrick\nSamuel\nTheodore\nBobby\nClifford\nDean\nLee\nLeo\nSteve\nClarence\nJimmie\nKeith\nPeter\nDuane\nJon\nDanny\nFranklin\nGlenn\nGordon\nLeslie\nLyle\nMike\nRussell\nAlan\nBen\nDan\nHerbert\nHerman\nWesley\nHarvey\nJackie\nJesse\nMartin\nMax\nRudy\nBernard\nBruce\nEdwin\nFrancis\nLoren\nPete\nTed\nAllan\nAlvin\nCecil\nChester\nClyde\nClaude\nDarrell\nDave\nLeland\nLeon\nFelix\nFrederick\nDick\nJay\nKent\nLester\nOrlando\nRodney\nWarren\nSteven\nBrian\nByron\nCurtis\nDarrel\nGarry\nLewis\nMickey\nSam\nVincent\nWendell\nDaryl\nEdgar\nJerald\nVirgil\nWallace\nAntonio\nBenjamin\nCarlos\nEverett\nJerome\nJuan\nJulian\nKenny\nLonnie\nMerle\nSammy\nAlex\nBarry\nCalvin\nChris\nEldon\nElmer\nEloy\nFreddie\nGuy\nIvan\nJohnnie\nLynn\nMark\nMilton\nPhil\nRudolph\nWillard\nAdolph\nAndy\nArnold\nBennie\nBert\nDallas\nHugh\nIsaac\nLowell\nMarion\nNeal\nRuben\nTeddy\nErnie\nFredrick\nGregory\nMonte\nRex\nRoland\nTimothy\nToby\nVern\nWilbur\nAbel\nAlexander\nBenny\nBernie\nChristopher\nClayton\nDarryl\nDoyle\nElwood\nFrankie\nJacob\nJess\nKen\nMaurice\nMitchell\nNeil\nNick\nPerry\nRamon\nStan\nStuart\nWillie\nAlberto\nAndrew\nArchie\nCharlie\nChuck\nClark\nConrad\nDwight\nHarley\nHomer\nIrvin\nJake\nKarl\nLanny\nMarlin\nMicheal\nMiguel\nMyron\nPat\nPedro\nRoss\nSalvador\nSherman\nTim\nTruman\nRobert\nJames\nJohn\nRichard\nWilliam\nLarry\nDavid\nCharles\nRonald\nDonald\nGary\nGeorge\nJerry\nThomas\nKenneth\nJoseph\nJoe\nPaul\nFrank\nGerald\nRaymond\nEdward\nMichael\nDennis\nJack\nRoger\nHarold\nArthur\nRalph\nLawrence\nFred\nDaniel\nLeroy\nAlbert\nCarl\nBill\nJim\nDon\nAnthony\nHenry\nGilbert\nWayne\nHarry\nLouis\nEugene\nStephen\nDale\nNorman\nRoy\nErnest\nLeonard\nMelvin\nJohnny\nPhillip\nManuel\nStanley\nBob\nLloyd\nTony\nWalter\nMarvin\nTerry\nHoward\nRonnie\nAlfred\nMike\nEddie\nFloyd\nLeo\nAllen\nClifford\nEdwin\nKeith\nDouglas\nGene\nPatrick\nPeter\nPhilip\nSteven\nDanny\nGlenn\nGordon\nTom\nVernon\nBilly\nJimmy\nMax\nAlan\nEarl\nLee\nRay\nHarvey\nTommy\nVictor\nBruce\nJose\nRodney\nBarry\nHerbert\nLeslie\nSteve\nDan\nDarrell\nDelbert\nDuane\nGlen\nJay\nMartin\nSamuel\nDean\nFrancis\nClyde\nRudy\nAndrew\nClarence\nDick\nJon\nMark\nRussell\nTheodore\nBernard\nLoren\nSam\nTed\nTimothy\nFrederick\nHerman\nAlvin\nClaude\nKent\nPete\nRudolph\nWarren\nCecil\nConrad\nDave\nEverett\nJesse\nJimmie\nNick\nVincent\nWesley\nAlex\nFreddie\nGarry\nLewis\nLowell\nOrlando\nPat\nBenjamin\nChester\nEldon\nFranklin\nHugh\nLyle\nArnold\nBenny\nDarrel\nIvan\nJerome\nLynn\nMilton\nNeil\nAlfonso\nAntonio\nBennie\nByron\nCalvin\nCurtis\nDwight\nElmer\nFelix\nJackie\nJohnnie\nRex\nRoland\nWendell\nWillard\nBen\nBert\nCarlos\nCharlie\nClinton\nDwayne\nGuy\nIsaac\nJeffrey\nJoel\nLeland\nRuben\nWilbur\nEdmund\nErvin\nFrankie\nGale\nHarley\nJesus\nLester\nLouie\nMaurice\nMyron\nNicholas\nOscar\nRamon\nTim\nToby\nWallace\nAaron\nAndy\nArchie\nBobby\nBrian\nChris\nClark\nClayton\nDarryl\nDonnie\nEric\nGrant\nJuan\nKarl\nLanny\nLonnie\nMarion\nMarlin\nMerle\nMoses\nOrville\nRoss\nSammy\nStan\nVirgil\nAbel\nAdolph\nAlden\nBernie\nBuddy\nChristopher\nDallas\nEd\nEdgar\nElbert\nElden\nFredrick\nGalen\nGregory\nJake\nLaurence\nLuis\nMary\nMickey\nNathan\nOliver\nPhil\nStuart\nTomas\nWillie\nRobert\nJohn\nJames\nRichard\nWilliam\nDavid\nRonald\nLarry\nDonald\nCharles\nThomas\nGary\nJerry\nMichael\nKenneth\nGeorge\nFrank\nPaul\nJoseph\nGerald\nEdward\nDennis\nJoe\nJack\nRaymond\nFred\nDouglas\nDaniel\nHarold\nRoger\nArthur\nAlbert\nCarl\nLawrence\nAnthony\nWalter\nEugene\nRalph\nRay\nBill\nHenry\nDon\nJim\nStanley\nErnest\nGilbert\nJohnny\nHoward\nDale\nStephen\nRoy\nMelvin\nLeroy\nPatrick\nMarvin\nHarry\nSteve\nBruce\nGene\nMike\nTerry\nAlfred\nClifford\nGordon\nJose\nLeonard\nLeslie\nLloyd\nLouis\nSamuel\nTony\nWayne\nLee\nManuel\nRussell\nEddie\nTommy\nVernon\nVictor\nDanny\nNorman\nPhillip\nFloyd\nKeith\nPhilip\nBob\nDuane\nJimmy\nJay\nTom\nDarrell\nEarl\nSteven\nAllen\nRodney\nAlan\nBilly\nGlenn\nTheodore\nWesley\nAndrew\nHerbert\nJesse\nJimmie\nLeon\nLewis\nMark\nBernard\nBobby\nDean\nGlen\nLeo\nTimothy\nWarren\nArnold\nBarry\nRonnie\nFrederick\nHarvey\nMax\nTed\nAlvin\nBenjamin\nJon\nClyde\nClarence\nDick\nEdwin\nElmer\nFranklin\nLyle\nLynn\nPeter\nDan\nDave\nDelbert\nGarry\nHugh\nLester\nMartin\nRudy\nWillard\nFrancis\nKent\nSam\nCalvin\nClinton\nEdgar\nLaurence\nPete\nScott\nVirgil\nAlex\nBen\nCharlie\nEldon\nFreddie\nJackie\nJeffrey\nLeland\nMaurice\nNeil\nOrlando\nRuben\nTim\nVincent\nAllan\nBenny\nChester\nClaude\nCraig\nFrankie\nJerald\nJerome\nKarl\nLoren\nOrville\nStuart\nCecil\nChris\nClayton\nEverett\nFidel\nHerman\nIvan\nJacob\nJulian\nLowell\nMyron\nNicholas\nPat\nSammy\nAlfonso\nAndy\nBrian\nCarlos\nFelix\nFredrick\nJesus\nMarshall\nMicheal\nOscar\nRamon\nSalvador\nWilbur\nAbel\nBennie\nByron\nCurtis\nJohnnie\nLanny\nLupe\nLuther\nMario\nMarion\nMilton\nNeal\nRex\nTeddy\nVern\nWillie\nDelmer\nEloy\nForrest\nGregory\nGuy\nHarley\nJake\nJess\nJoel\nLonnie\nNelson\nPerry\nRandall\nRodger\nToby\nTracy\nAlberto\nArchie\nBonnie\nBuddy\nClark\nDallas\nDarrel\nDarryl\nDenny\nDwain\nDwight\nEric\nGabriel\nGail\nGerry\nHarlan\nHomer\nIra\nJan\nKen\nLouie\nMerle\nNick\nRoberto\nRonny\nRoss\nRudolph\nWendell\nWillis\nJames\nRobert\nJohn\nRichard\nWilliam\nDavid\nCharles\nRonald\nLarry\nGary\nDonald\nMichael\nKenneth\nThomas\nGeorge\nJerry\nDennis\nPaul\nJoseph\nEdward\nFrank\nRaymond\nJoe\nGerald\nRoger\nJack\nDaniel\nHarold\nRalph\nArthur\nDouglas\nFred\nWalter\nLawrence\nAnthony\nStephen\nAlbert\nWayne\nEugene\nCarl\nTerry\nLeroy\nManuel\nBill\nHenry\nJim\nLeonard\nPatrick\nStanley\nHoward\nNorman\nHarry\nDanny\nVictor\nJohnny\nPhilip\nSteve\nDale\nRoy\nClifford\nErnest\nJimmy\nMarvin\nEarl\nGene\nMike\nRonnie\nTommy\nBruce\nDon\nRussell\nTom\nAlan\nGilbert\nKeith\nLouis\nMelvin\nLloyd\nPhillip\nRay\nAllen\nDuane\nSteven\nTony\nLeslie\nTimothy\nClarence\nEddie\nDan\nFrederick\nGordon\nAlvin\nBob\nDean\nEdwin\nPete\nVernon\nBilly\nGlenn\nJay\nMark\nPeter\nAlfred\nFloyd\nLee\nAndrew\nLewis\nMartin\nGlen\nJesse\nSamuel\nLynn\nMax\nRodney\nTheodore\nWarren\nBobby\nLester\nSam\nClyde\nDarrell\nDick\nLeland\nBenjamin\nDelbert\nFrancis\nHarvey\nDave\nFelix\nJimmie\nJose\nLeo\nLeon\nRex\nRudy\nTed\nWesley\nBrian\nCalvin\nCecil\nDwight\nGarry\nHerbert\nJuan\nKent\nMyron\nBarry\nBen\nBernard\nChester\nClark\nLyle\nNicholas\nVincent\nFranklin\nKarl\nBenny\nFreddie\nHugh\nJohnnie\nRoland\nSammy\nVirgil\nByron\nCharlie\nChris\nEdgar\nEverett\nJake\nJulian\nNick\nAlex\nBert\nCarlos\nEldon\nElmer\nMilton\nRon\nRoss\nRuben\nWallace\nAllan\nArnold\nClaude\nJan\nJerome\nJesus\nJon\nLowell\nMaurice\nMicheal\nRandall\nRudolph\nTim\nWillard\nCary\nCraig\nCurtis\nDarrel\nEric\nFredrick\nHarley\nJackie\nJeffrey\nJerald\nLonnie\nOrlando\nTeddy\nClinton\nDwayne\nFrankie\nGerry\nGregory\nJacob\nJoel\nKurt\nLoren\nLuis\nPat\nPhil\nWilbur\nAntonio\nBrent\nClayton\nEloy\nEmmett\nForrest\nHerman\nIvan\nJess\nKenny\nLaurence\nMerle\nMorris\nNathan\nNeal\nRonny\nScott\nWendell\nWillis\nAlfonso\nAndy\nBennie\nBernie\nBillie\nChristopher\nColin\nErnie\nGuy\nHomer\nKelly\nLavern\nLouie\nNoel\nOrville\nOscar\nOwen\nRamon\nRandy\nRicky\nRobin\nSheldon\nSidney\nSpencer\nToby\nTomas\nTruman\nRobert\nJohn\nJames\nRichard\nWilliam\nDavid\nMichael\nCharles\nLarry\nRonald\nGary\nDonald\nThomas\nGeorge\nKenneth\nPaul\nJoseph\nJoe\nDennis\nJerry\nGerald\nFrank\nEdward\nRaymond\nDaniel\nJack\nRoger\nDouglas\nFred\nArthur\nAlbert\nHarold\nJim\nRalph\nLawrence\nAnthony\nStephen\nDale\nGilbert\nTerry\nWalter\nStanley\nWayne\nDanny\nLeroy\nMike\nNorman\nBill\nLouis\nCarl\nDon\nJimmy\nJohnny\nManuel\nRussell\nBob\nHenry\nSteve\nTom\nSteven\nAlan\nEugene\nMarvin\nRoy\nVictor\nErnest\nGlenn\nLeonard\nTheodore\nAlfred\nGene\nPatrick\nHoward\nMark\nTony\nAllen\nBilly\nLloyd\nEddie\nHarry\nPhillip\nClifford\nPhilip\nRay\nDean\nJose\nKeith\nLee\nLeslie\nTimothy\nBruce\nMelvin\nPete\nBarry\nGlen\nMartin\nVernon\nClarence\nDan\nEarl\nHerbert\nJay\nDuane\nFloyd\nGordon\nJesse\nJon\nPeter\nRonnie\nSamuel\nDarrell\nDelbert\nFrederick\nClyde\nFelix\nLynn\nTommy\nBernard\nDave\nRodney\nBrian\nEdwin\nWarren\nBobby\nLeo\nMax\nWesley\nAndrew\nDwight\nEverett\nTed\nAlvin\nLewis\nChris\nFredrick\nIvan\nJimmie\nKent\nLoren\nRudy\nWillard\nCecil\nElmer\nHarvey\nMicheal\nSam\nByron\nForrest\nLyle\nAntonio\nArnold\nCalvin\nFrancis\nLaurence\nBen\nBenny\nDick\nFreddie\nLonnie\nPat\nAllan\nBenjamin\nClaude\nJacob\nJuan\nLeon\nLester\nMerle\nRoland\nRon\nRuben\nSammy\nAlfonso\nBennie\nCarlos\nCurtis\nEldon\nEric\nHerman\nJerome\nJoel\nPhil\nAndy\nFrancisco\nGalen\nGarry\nGuy\nJackie\nJake\nJeffrey\nJerald\nJulian\nKenny\nRafael\nRandall\nRicky\nAngelo\nCarroll\nCraig\nDarrel\nErnie\nFranklin\nGale\nGrant\nGregory\nHugh\nJohnnie\nKarl\nLeland\nMilton\nNick\nRamon\nRex\nTim\nWillie\nAdolph\nAlex\nBurton\nCharlie\nClark\nEarnest\nErvin\nJess\nKen\nKurt\nLance\nLouie\nLoyd\nMarc\nSidney\nStan\nStuart\nTerrence\nToby\nVern\nVincent\nVirgil\nWilbur\nAbel\nArchie\nAugust\nChristopher\nClinton\nConrad\nDenny\nDonnie\nDwayne\nEdmund\nFrederic\nGabriel\nGeoffrey\nIsaac\nJan\nJeffery\nJesus\nMary\nMaurice\nMerlin\nMichel\nMyron\nNicholas\nRandy\nRoberto\nRodger\nSalvador\nSpencer\nUnknown\nRobert\nJohn\nJames\nRichard\nWilliam\nDavid\nLarry\nMichael\nGary\nCharles\nDonald\nRonald\nThomas\nKenneth\nGeorge\nDennis\nPaul\nJerry\nJoseph\nFrank\nEdward\nDaniel\nJoe\nJack\nRaymond\nGerald\nRoger\nStephen\nDouglas\nStanley\nSteven\nDanny\nAnthony\nFred\nHarold\nJohnny\nArthur\nTerry\nJim\nErnest\nLawrence\nManuel\nPatrick\nAlbert\nLeroy\nWalter\nRay\nMike\nRalph\nHenry\nCarl\nWayne\nLeonard\nBill\nRoy\nDale\nBruce\nAlan\nHarry\nJimmy\nJose\nPhilip\nSamuel\nTom\nGilbert\nNorman\nBob\nEugene\nLouis\nTony\nEddie\nMark\nTimothy\nHoward\nSteve\nAllen\nDon\nVictor\nMarvin\nPeter\nGene\nMartin\nClifford\nLee\nLeslie\nPhillip\nRonnie\nFloyd\nGlenn\nGregory\nRussell\nBilly\nRodney\nVernon\nAlfred\nKeith\nDarrell\nDuane\nEarl\nJay\nJon\nDan\nGordon\nLloyd\nMelvin\nTommy\nBenjamin\nTheodore\nFrederick\nKent\nBrian\nDwight\nLynn\nMicheal\nAlvin\nAndrew\nDick\nGarry\nBernard\nCarlos\nClarence\nEdwin\nElmer\nLonnie\nPete\nSam\nDave\nGlen\nBarry\nHarvey\nJesse\nLeo\nRudy\nChester\nCraig\nDean\nEverett\nWarren\nAlex\nBobby\nFranklin\nLester\nLoren\nMax\nPat\nSammy\nTed\nAllan\nBen\nChristopher\nClaude\nEric\nFrancis\nJeffrey\nJuan\nJulian\nNeil\nRandy\nArnold\nJackie\nJimmie\nJoel\nKenny\nRick\nRudolph\nToby\nWesley\nAndy\nCalvin\nCharlie\nCurtis\nDelbert\nFelix\nJerald\nLaurence\nLewis\nVincent\nDonnie\nJesus\nNicholas\nNick\nRuben\nAlfonso\nChris\nClyde\nHerbert\nHerman\nKarl\nKirk\nLeland\nLeon\nLyle\nMarion\nMilton\nOrlando\nPhil\nScott\nTim\nBert\nCecil\nDaryl\nForrest\nFrancisco\nFreddie\nGrant\nHugh\nIvan\nJacob\nJan\nJohnnie\nLanny\nLowell\nOrville\nRandolph\nRicky\nRoderick\nWallace\nWilbur\nBennie\nBenny\nClayton\nConrad\nDoug\nEloy\nFrankie\nFritz\nHarley\nOliver\nPedro\nPerry\nRex\nRoland\nRon\nSalvador\nSidney\nStuart\nWillis\nAbel\nAdolph\nAlexander\nArchie\nArmando\nBarney\nBrent\nCary\nDallas\nDarrel\nDarryl\nDwayne\nEarnest\nErnie\nGale\nGalen\nGreg\nHal\nJake\nJerome\nJonathan\nKurt\nLuis\nMatthew\nMaurice\nMorris\nNathan\nNelson\nRandall\nRobert\nJohn\nJames\nRichard\nDavid\nWilliam\nMichael\nGary\nRonald\nThomas\nLarry\nDonald\nCharles\nDennis\nKenneth\nJerry\nJoseph\nGeorge\nPaul\nDaniel\nEdward\nJoe\nFrank\nStephen\nTerry\nRaymond\nGerald\nRoger\nJack\nFred\nSteven\nHarold\nDouglas\nJim\nLawrence\nAnthony\nPatrick\nDanny\nArthur\nWayne\nDale\nBruce\nTimothy\nMike\nJohnny\nLeroy\nMark\nWalter\nCarl\nErnest\nEugene\nLeonard\nLouis\nRalph\nHarry\nDon\nStanley\nHenry\nRoy\nRussell\nAlan\nAlbert\nBill\nSteve\nManuel\nGilbert\nTom\nJimmy\nGene\nPhillip\nRonnie\nGregory\nAllen\nRodney\nKeith\nLee\nMartin\nMarvin\nBob\nEddie\nNorman\nPeter\nPhilip\nBarry\nBilly\nGordon\nHoward\nLloyd\nSamuel\nTed\nTommy\nDan\nJose\nLeslie\nRay\nKent\nMelvin\nAlfred\nClifford\nJesse\nVictor\nDave\nDuane\nFrederick\nJay\nBrian\nClarence\nDean\nDick\nEarl\nFloyd\nJon\nPete\nAndrew\nHarvey\nRandall\nSam\nWarren\nClyde\nCurtis\nDarrell\nFrancis\nTheodore\nTony\nVernon\nAlvin\nDwight\nEdwin\nGlen\nLewis\nRandy\nCarlos\nGlenn\nLeo\nLeon\nCraig\nDelbert\nLonnie\nRudy\nScott\nHerbert\nJeffrey\nJimmie\nKarl\nKen\nMicheal\nRandolph\nWesley\nAlex\nBen\nBenny\nByron\nGarry\nLynn\nBenjamin\nCalvin\nChris\nEric\nFreddie\nLance\nLeland\nLester\nLoren\nMax\nRudolph\nVincent\nArnold\nBernard\nBobby\nCecil\nClinton\nBernie\nJerome\nJesus\nJoel\nLyle\nRoland\nSammy\nWillard\nAlfonso\nCharlie\nClaude\nJuan\nLouie\nNeil\nRick\nRuben\nTim\nAlexander\nChester\nEldon\nFrancisco\nFranklin\nJerald\nJohnnie\nKirk\nLaurence\nNick\nSidney\nVirgil\nAndy\nBryan\nChristopher\nClark\nDaryl\nErnie\nFelix\nFrankie\nHugh\nJackie\nMilton\nOrlando\nPat\nPhil\nRex\nSimon\nStuart\nBennie\nBert\nClayton\nEdmund\nFrederic\nGreg\nHerman\nJan\nJonathan\nJulian\nKenny\nKim\nLanny\nMarion\nMerle\nMitchell\nNicholas\nPerry\nRamon\nRon\nAngelo\nAntonio\nCary\nDoug\nDwayne\nElbert\nElmer\nEverett\nGuy\nJess\nKirby\nLupe\nMatthew\nMaurice\nNeal\nRickey\nRicky\nRoss\nTerrance\nTerrence\nTodd\nWallace\nAaron\nAdolph\nAllan\nArmando\nArt\nBillie\nDallas\nDarrel\nDarryl\nDonn\nDonnie\nDrew\nEdgar\nErnesto\nFredrick\nGrant\nGregg\nHarley\nJackson\nKelly\nKevin\nLavern\nLorenzo\nLowell\nMarc\nMarlin\nMarshall\nOwen\nRaul\nRene\nRobin\nTruman\nWillie\nRobert\nJohn\nJames\nRichard\nDavid\nMichael\nWilliam\nLarry\nGary\nRonald\nDonald\nThomas\nCharles\nKenneth\nDennis\nJoseph\nJerry\nGeorge\nDaniel\nPaul\nStephen\nFrank\nEdward\nSteven\nTerry\nJack\nRoger\nGerald\nJoe\nRaymond\nLawrence\nGregory\nDanny\nRalph\nDouglas\nFred\nArthur\nSteve\nAnthony\nPatrick\nTom\nDale\nBruce\nMark\nTimothy\nAlan\nCarl\nHarold\nWayne\nJim\nMike\nBill\nWalter\nPhilip\nRoy\nDon\nEugene\nJohnny\nAlbert\nLeonard\nRussell\nGilbert\nAllen\nLeroy\nErnest\nHoward\nRodney\nRonnie\nStanley\nRay\nHarry\nManuel\nLouis\nGordon\nGlen\nHenry\nLee\nJimmy\nPhillip\nDuane\nMelvin\nBob\nJose\nLeo\nPeter\nBarry\nDean\nGlenn\nKeith\nGene\nRudy\nVictor\nClifford\nDan\nNorman\nRandy\nSamuel\nLloyd\nMartin\nEddie\nJay\nWarren\nBrian\nMarvin\nChristopher\nEarl\nFloyd\nLeslie\nTony\nBernard\nBobby\nHarvey\nJeffrey\nJesse\nKent\nAlfred\nAndrew\nHerbert\nRandall\nTed\nVernon\nBenjamin\nBen\nDave\nEdwin\nJon\nScott\nLynn\nRick\nRicky\nTommy\nBilly\nEric\nTim\nAlvin\nClarence\nCraig\nDarrell\nJimmie\nPete\nSam\nTheodore\nDarrel\nDelbert\nLeon\nFrederick\nGreg\nHerman\nLewis\nLonnie\nSammy\nJoel\nRon\nCalvin\nCarlos\nChris\nDaryl\nDwight\nFelix\nMax\nNicholas\nRickey\nRuben\nAntonio\nByron\nClyde\nFrancis\nGarry\nLoren\nNick\nVirgil\nWesley\nAllan\nClayton\nCurtis\nFranklin\nMicheal\nPhil\nRex\nArnold\nClinton\nFrankie\nFreddie\nGuy\nJerome\nKarl\nDick\nElmer\nJesus\nJuan\nLeland\nLowell\nPerry\nCecil\nChester\nEdgar\nHugh\nLouie\nMilton\nPat\nRoland\nRudolph\nAlex\nBenny\nDallas\nDarryl\nDwayne\nFredrick\nGabriel\nJackie\nJohnnie\nLester\nLyle\nOrlando\nRoss\nVincent\nArchie\nBrent\nDana\nGrant\nJan\nJerald\nJonathan\nKelly\nKenny\nLuis\nMarion\nNeil\nPedro\nRodger\nAlexander\nAlfonso\nBennie\nCharlie\nConrad\nDoyle\nEarnest\nEverett\nGail\nHal\nIvan\nKen\nKim\nLupe\nMario\nMarshall\nNathan\nNeal\nRandolph\nReginald\nSherman\nStuart\nTerrance\nWallace\nWillie\nChuck\nDee\nEldon\nEmilio\nErnie\nGale\nJeff\nJessie\nKirk\nKurt\nMerle\nNelson\nRocky\nTerrence\nWendell\nAdolph\nAngelo\nArmando\nBernie\nBryan\nCary\nCharley\nDannie\nEdmund\nEllis\nEloy\nGregg\nHarley\nJerold\nJulio\nKerry\nLance\nLauren\nMarc\nMiles\nMyron\nNoel\nRamon\nRobin\nRod\nRonny\nSalvador\nSantos\nStan\nVern\nWillis\nRobert\nJohn\nJames\nDavid\nWilliam\nMichael\nRichard\nRonald\nGary\nLarry\nCharles\nThomas\nDonald\nKenneth\nDaniel\nStephen\nDennis\nPaul\nJoseph\nSteven\nGeorge\nJerry\nFrank\nEdward\nTerry\nJoe\nJack\nRaymond\nRoger\nGerald\nDouglas\nDanny\nLawrence\nBruce\nGregory\nAnthony\nMike\nTimothy\nMark\nFred\nPatrick\nRalph\nSteve\nWayne\nDale\nHarold\nCarl\nRoy\nJim\nWalter\nAlan\nPhillip\nArthur\nEugene\nTom\nHenry\nAlbert\nRodney\nRussell\nLeroy\nManuel\nErnest\nPeter\nBill\nJimmy\nAllen\nStanley\nDon\nMarvin\nJohnny\nLeonard\nMartin\nBarry\nKeith\nNorman\nPhilip\nHarry\nGilbert\nGlenn\nKent\nRonnie\nJose\nAndrew\nDan\nHoward\nChris\nRay\nDuane\nGordon\nLouis\nTommy\nTony\nJesse\nAlfred\nBilly\nClifford\nGene\nVictor\nAlvin\nBrian\nChristopher\nFrederick\nEric\nLee\nMelvin\nVernon\nCraig\nRandall\nSamuel\nDave\nEarl\nEddie\nDarrell\nDean\nJeffrey\nLeslie\nLynn\nRandy\nBob\nLloyd\nScott\nTheodore\nFloyd\nLonnie\nPete\nBobby\nJay\nSam\nArnold\nBenjamin\nWarren\nGlen\nMicheal\nBernard\nEdwin\nHerbert\nRick\nRudy\nCarlos\nClarence\nGarry\nRicky\nTed\nJon\nLewis\nMax\nRex\nClyde\nKarl\nLouie\nAllan\nBennie\nByron\nDelbert\nDwight\nFrancis\nLeo\nNicholas\nAndy\nDick\nHarvey\nJohnnie\nRandolph\nTim\nFredrick\nJoel\nNeil\nWesley\nBenny\nCalvin\nJackie\nJesus\nJimmie\nLoren\nPhil\nRon\nTerrence\nAlex\nChester\nEldon\nGreg\nLeon\nLyle\nVincent\nCurtis\nFelix\nGregg\nJuan\nLester\nMarc\nRocky\nRoss\nSammy\nBen\nBradley\nCecil\nDaryl\nEverett\nKenny\nKevin\nStuart\nWillard\nWillie\nAbel\nAntonio\nClaude\nDarrel\nElmer\nFranklin\nJan\nJulian\nKen\nKerry\nKim\nLeland\nMario\nNathan\nRudolph\nAlfonso\nBarney\nBradford\nClinton\nDana\nErnie\nFrankie\nGuy\nIvan\nMarion\nMilton\nNick\nPat\nRoland\nRoyce\nTerrance\nAlexander\nBert\nDoug\nGale\nHerman\nHugh\nJacob\nJake\nJerald\nJonathan\nKelly\nKurt\nLaurence\nLuis\nMerle\nMonte\nMyron\nOrlando\nOscar\nPedro\nPerry\nRickie\nSalvador\nWendell\nArmando\nBrent\nClark\nClayton\nDonnie\nDoyle\nFernando\nFreddie\nGabriel\nHal\nJerome\nKenton\nMarcus\nMickey\nNelson\nRamon\nRickey\nSidney\nTracy\nUnknown\nAlfredo\nBoyd\nBrad\nCharley\nCharlie\nConrad\nDannie\nDonn\nDwain\nDwayne\nEdgar\nEdmund\nErvin\nFilbert\nFrancisco\nGarth\nGeoffrey\nGrant\nHarley\nHubert\nJeff\nJorge\nKirk\nLance\nMack\nMarshall\nMaurice\nNeal\nOrville\nPablo\nRafael\nRobin\nRod\nRodger\nSantiago\nTravis\nTroy\nVan\nVaughn\nVern\nWilbur\nJohn\nRobert\nJames\nDavid\nMichael\nRichard\nWilliam\nGary\nLarry\nThomas\nCharles\nRonald\nDonald\nSteven\nDaniel\nKenneth\nStephen\nDennis\nGeorge\nJoseph\nJerry\nPaul\nMark\nDouglas\nEdward\nTerry\nJack\nFrank\nRoger\nTimothy\nAnthony\nDanny\nGerald\nGregory\nBruce\nJoe\nRaymond\nPatrick\nLawrence\nArthur\nAlan\nWayne\nHarold\nDale\nSteve\nMike\nPhillip\nCarl\nEugene\nFred\nRalph\nHarry\nWalter\nJimmy\nRodney\nRussell\nRoy\nStanley\nLeonard\nLouis\nAlbert\nHenry\nKeith\nSamuel\nManuel\nErnest\nLee\nLeroy\nRandall\nRonnie\nJim\nMelvin\nTom\nDan\nRandy\nNorman\nGilbert\nGlenn\nJohnny\nPeter\nPhilip\nScott\nKent\nAllen\nMarvin\nAndrew\nBill\nDon\nMartin\nJeffrey\nChristopher\nTony\nBrian\nCraig\nDarrell\nHoward\nMicheal\nRick\nDuane\nTommy\nBilly\nDean\nFrederick\nJose\nTheodore\nEddie\nChris\nGene\nGlen\nKevin\nTim\nVictor\nGordon\nVernon\nDave\nEric\nFloyd\nRuben\nAlfred\nJesse\nLloyd\nRicky\nDaryl\nJay\nRay\nLeo\nPete\nRudy\nBob\nClifford\nClyde\nTed\nBarry\nCalvin\nEarl\nKarl\nLonnie\nVincent\nWarren\nArnold\nBenjamin\nHarvey\nLeslie\nWesley\nBernard\nRex\nAlvin\nBen\nBobby\nCurtis\nJon\nLewis\nRandolph\nClarence\nJuan\nKirk\nLynn\nMilton\nSammy\nBrent\nGarry\nHerbert\nLester\nRudolph\nAlfonso\nAllan\nCarlos\nChester\nFrancis\nKurt\nLeland\nNicholas\nAlex\nDwight\nEdwin\nFelix\nJerald\nJulian\nKerry\nMax\nRamon\nByron\nDarryl\nDelbert\nKim\nLance\nSam\nStuart\nBenny\nBryan\nEdgar\nErnie\nEverett\nJerome\nJoel\nLouie\nNick\nRoland\nTerrence\nVirgil\nAndy\nAntonio\nBert\nBradley\nCharlie\nClaude\nDarrel\nFranklin\nFredrick\nGregg\nLaurence\nRickey\nTerrance\nToby\nWillard\nAlexander\nBennie\nBernie\nClinton\nEdmund\nGalen\nHal\nHugh\nJeffery\nJimmie\nKelly\nNeil\nCarroll\nCecil\nClayton\nDallas\nFreddie\nGale\nGerry\nGreg\nHerman\nIvan\nJess\nLeon\nMarc\nPat\nPerry\nRocky\nRon\nWillie\nBradford\nClark\nEd\nJohnnie\nKen\nKenny\nKenton\nLon\nLoren\nLuis\nMario\nMarlin\nMarshall\nMaurice\nMiguel\nMonty\nPhil\nRoderick\nRodger\nSherman\nTeddy\nArmando\nBrad\nDonnie\nElmer\nGrant\nGuy\nJacob\nLowell\nLoyd\nMonte\nMyron\nNathan\nSalvador\nTroy\nBart\nBoyd\nCary\nDana\nDanial\nDonn\nDwayne\nEduardo\nEldon\nEllis\nEloy\nFlorentino\nFrancisco\nGarth\nHarley\nHumberto\nIra\nJake\nJan\nJesus\nJorge\nKip\nLorenzo\nLyle\nMatthew\nMitchell\nOrlando\nReginald\nRickie\nRobin\nRoss\nVan\nWilfred\nRobert\nJohn\nJames\nMichael\nDavid\nRichard\nWilliam\nGary\nThomas\nRonald\nLarry\nCharles\nDonald\nSteven\nDaniel\nKenneth\nDennis\nMark\nStephen\nPaul\nJoseph\nEdward\nJerry\nGeorge\nDouglas\nTerry\nFrank\nGregory\nPatrick\nGerald\nRaymond\nTimothy\nLawrence\nRoger\nAnthony\nBruce\nJoe\nDanny\nDale\nJack\nWayne\nHarold\nArthur\nAlan\nCarl\nRandy\nKeith\nStanley\nEugene\nLeonard\nSteve\nScott\nPeter\nFred\nRodney\nAlbert\nLouis\nPhilip\nErnest\nLeroy\nMike\nGlenn\nRussell\nPhillip\nRalph\nAllen\nChristopher\nCraig\nDarrell\nHarry\nJimmy\nTheodore\nBarry\nGilbert\nManuel\nMicheal\nAndrew\nJeffrey\nJohnny\nKent\nMarvin\nRandall\nSamuel\nWalter\nRoy\nLee\nNorman\nHenry\nBill\nClifford\nGlen\nBilly\nDan\nMartin\nTom\nJay\nKevin\nVictor\nFrederick\nLeslie\nRonnie\nEddie\nMelvin\nRick\nBrian\nEric\nHoward\nTony\nDuane\nEdwin\nGordon\nJim\nLynn\nRudy\nChris\nFrancis\nJesse\nJon\nJose\nTommy\nGene\nRay\nAlfred\nKirk\nRicky\nBobby\nDon\nCurtis\nDean\nEarl\nRandolph\nWarren\nVernon\nBenjamin\nDwight\nFranklin\nFredrick\nRex\nBradley\nVincent\nFloyd\nLeon\nLonnie\nMax\nHerman\nJoel\nJuan\nPete\nCarlos\nClarence\nDaryl\nJulian\nLester\nLloyd\nLuis\nSam\nTed\nAlex\nCecil\nRuben\nAlvin\nBenny\nBernard\nBob\nLewis\nNicholas\nAllan\nCalvin\nClyde\nDave\nEverett\nKarl\nKelly\nLyle\nPerry\nClinton\nDarryl\nFreddie\nHarvey\nLeo\nRudolph\nWesley\nEldon\nElmer\nFelix\nGreg\nHerbert\nJerome\nJimmie\nKerry\nLouie\nVirgil\nBrent\nChester\nDelbert\nJesus\nRickey\nRoderick\nRoss\nSammy\nArnold\nBryan\nByron\nClark\nDarwin\nGrant\nGuy\nIvan\nJan\nJeffery\nKurt\nLaurence\nMarc\nMario\nMarshall\nMonte\nNeal\nRobin\nTim\nAdolph\nAntonio\nEdgar\nFrankie\nGarry\nGregg\nHugh\nJackie\nMarcus\nMatthew\nMilton\nOrlando\nRoland\nTerrance\nAlfonso\nBen\nConrad\nFrancisco\nJerald\nJohnnie\nKim\nLance\nLeland\nMaurice\nMiguel\nMorris\nPhil\nRocky\nStuart\nToby\nWendell\nWillard\nAlexander\nBennie\nCharlie\nClayton\nDick\nErnesto\nEvan\nGale\nGalen\nKen\nLowell\nNeil\nPat\nPedro\nRamon\nReginald\nRodger\nRon\nSalvador\nSidney\nTeddy\nTerrence\nAaron\nAndy\nBrad\nClifton\nDana\nDarrel\nDonnie\nDwayne\nEdmund\nEduardo\nForrest\nJake\nJorge\nJulio\nMalcolm\nNick\nOscar\nRandal\nRicardo\nTroy\nWade\nWallace\nWilbur\nAugust\nBert\nBoyd\nBrett\nDanial\nErnie\nFelipe\nFreddy\nGail\nHarley\nIsaac\nJunior\nLanny\nMitchell\nMoses\nPablo\nPreston\nRandell\nReed\nTerence\nTodd\nVan\nVance\nWillie\nWillis\nRobert\nMichael\nJohn\nJames\nDavid\nRichard\nWilliam\nGary\nThomas\nRonald\nSteven\nCharles\nDonald\nLarry\nKenneth\nDaniel\nMark\nJoseph\nStephen\nPaul\nDennis\nDouglas\nEdward\nGeorge\nTimothy\nFrank\nGregory\nAnthony\nJerry\nGerald\nTerry\nBruce\nPatrick\nRoger\nRaymond\nDale\nJack\nLawrence\nDanny\nRodney\nJoe\nRandy\nHarold\nScott\nStanley\nWayne\nRussell\nAlan\nBrian\nLeonard\nCarl\nArthur\nJeffrey\nPhillip\nCraig\nSteve\nRandall\nEugene\nMartin\nHenry\nLouis\nMike\nAlbert\nChristopher\nKeith\nWalter\nDarrell\nTheodore\nKent\nRalph\nAllen\nErnest\nFred\nRick\nRoy\nAndrew\nMicheal\nSamuel\nHarry\nGlenn\nClifford\nGlen\nMarvin\nRicky\nEric\nNorman\nBenjamin\nKevin\nPeter\nDean\nJohnny\nManuel\nJose\nDan\nHoward\nJimmy\nJon\nGilbert\nGordon\nPhilip\nRonnie\nBarry\nFrederick\nBill\nJay\nJim\nLee\nLeroy\nLloyd\nMelvin\nTommy\nDuane\nEarl\nRay\nWarren\nClarence\nCurtis\nJesse\nAlfred\nBilly\nVictor\nRex\nChris\nEddie\nEdwin\nLeslie\nLynn\nTed\nTom\nTony\nBernard\nDon\nGene\nVernon\nFranklin\nRandolph\nNicholas\nBobby\nLester\nClinton\nClyde\nLyle\nVincent\nBradley\nCalvin\nFelix\nHerbert\nLeo\nNeil\nRuben\nWesley\nAlvin\nDave\nGuy\nKirk\nLonnie\nRickey\nBen\nFloyd\nFrancis\nFredrick\nHarvey\nKarl\nKerry\nMatthew\nPete\nRobin\nRudy\nTodd\nAllan\nBrent\nGreg\nKelly\nMickey\nRoss\nByron\nDaryl\nFreddie\nJoel\nLewis\nLuis\nNick\nSam\nClayton\nDarrel\nElmer\nGarry\nHerman\nJerome\nJuan\nKim\nLeon\nPerry\nCarlos\nDwight\nKurt\nLance\nMario\nTerrance\nClaude\nDana\nEverett\nHugh\nJeffery\nJesus\nJimmie\nLeland\nRudolph\nTerrence\nArnold\nBenny\nBob\nClark\nDelbert\nFrancisco\nJackie\nJan\nJerald\nLon\nLowell\nMarcus\nMax\nMorris\nRickie\nRocky\nAlex\nAlexander\nChester\nGrant\nJacob\nNeal\nWade\nBrad\nBryce\nGregg\nJonathan\nJulian\nLouie\nMarshall\nMitchell\nMonte\nMonty\nMyron\nPat\nSammy\nWallace\nWillie\nBrett\nBryan\nCecil\nDarryl\nFrankie\nGabriel\nIvan\nLaurence\nLoren\nMarion\nNathan\nNelson\nOscar\nRoland\nStuart\nTeddy\nToby\nTroy\nVirgil\nWillard\nAaron\nAntonio\nConrad\nDwayne\nEdgar\nErnie\nForrest\nGale\nGeoffrey\nGerard\nJairo\nKenny\nMarc\nMiguel\nNoel\nRamon\nRandal\nReed\nReuben\nRoderick\nSalvador\nTerence\nTim\nVan\nAndy\nBradford\nDarwin\nDickie\nDoyle\nEloy\nGalen\nJessie\nJohnnie\nKelvin\nKenton\nKirby\nKris\nMichel\nMiles\nOrlando\nPatricia\nRandell\nRoberto\nRusty\nRobert\nMichael\nJohn\nDavid\nJames\nRichard\nWilliam\nSteven\nThomas\nGary\nMark\nRonald\nDaniel\nDonald\nCharles\nKenneth\nLarry\nStephen\nJoseph\nPaul\nDennis\nDouglas\nTimothy\nTerry\nJerry\nGregory\nEdward\nGeorge\nFrank\nBruce\nRaymond\nPatrick\nAnthony\nGerald\nRandy\nJack\nDale\nRoger\nJoe\nLawrence\nAlan\nDanny\nJeffrey\nArthur\nScott\nHarold\nEugene\nWayne\nStanley\nCraig\nKevin\nPhillip\nCarl\nRodney\nChristopher\nAndrew\nErnest\nFred\nHenry\nRoy\nRandall\nKeith\nRick\nSteve\nBrian\nRalph\nAlbert\nGlenn\nLeonard\nMicheal\nWalter\nGilbert\nPeter\nDean\nLee\nRussell\nGlen\nKim\nLeroy\nMike\nClifford\nJohnny\nRicky\nAllen\nFrederick\nJay\nJimmy\nKent\nMartin\nVictor\nLeslie\nSamuel\nPhilip\nAlfred\nLloyd\nRay\nBill\nDan\nManuel\nHarry\nMarvin\nMelvin\nBarry\nDon\nDuane\nHoward\nLouis\nTheodore\nTom\nEdwin\nGordon\nJesse\nCurtis\nJim\nLeo\nMarc\nJose\nTony\nDarrell\nEric\nNorman\nRonnie\nChris\nRex\nFloyd\nGuy\nRandolph\nTed\nWesley\nCalvin\nDwight\nKirk\nBilly\nGene\nNicholas\nEddie\nNeil\nPete\nTommy\nVincent\nBradley\nHarvey\nLynn\nWarren\nAllan\nBenjamin\nBobby\nBrent\nDaryl\nEarl\nVernon\nJonathan\nLewis\nMax\nRuben\nRudolph\nRudy\nFelix\nFrancis\nJuan\nKerry\nKurt\nDana\nFranklin\nHerbert\nJon\nArnold\nBenny\nCarlos\nDarrel\nFredrick\nJerome\nJoel\nKelly\nLyle\nRocky\nRoland\nRoss\nTim\nAlex\nClarence\nEverett\nGarry\nJerald\nRandal\nSam\nAntonio\nBen\nBernard\nClyde\nDave\nGerard\nLeon\nMatthew\nNeal\nNick\nRobin\nTerrance\nBob\nByron\nGregg\nKarl\nLoren\nMonte\nRickie\nBrad\nDelbert\nJesus\nJulian\nLonnie\nRickey\nStuart\nVirgil\nBryan\nClaude\nForrest\nFrankie\nLester\nMitchell\nTerrence\nTodd\nAndy\nBradford\nClinton\nElmer\nGale\nGrant\nJake\nJess\nJimmie\nLance\nLeland\nMario\nPerry\nReginald\nSidney\nAlexander\nAlvin\nCharlie\nChester\nClark\nDoyle\nDwayne\nFreddie\nGreg\nJeffery\nKenny\nLowell\nPedro\nRon\nAdolph\nAlfonso\nBert\nConrad\nDarwin\nFrancisco\nGabriel\nHal\nHerman\nHugh\nJackie\nJohnnie\nKirby\nLanny\nLaurence\nLuis\nMarcus\nNathan\nToby\nWard\nWendell\nWillie\nAdrian\nCasey\nCecil\nChristophe\nClifton\nDarryl\nDoug\nEdgar\nEdmund\nElias\nGeoffrey\nGerry\nHarley\nIvan\nJacob\nJaime\nKen\nKris\nLoyd\nMarshall\nMerle\nMichel\nMilton\nMorris\nMurray\nOscar\nRamon\nRicardo\nSalvador\nSammy\nWillard\nWillis\nAngelo\nArmando\nBennie\nClayton\nCris\nDonn\nEarnest\nFernando\nFidel\nIrving\nJerrold\nJessie\nJorge\nJustin\nKendall\nKip\nKyle\nLouie\nMarty\nMaurice\nMickey\nOrlando\nRodger\nRory\nTeddy\nTerence\nVan\nWallace\nDavid\nMichael\nRobert\nJohn\nJames\nRichard\nWilliam\nSteven\nGary\nThomas\nCharles\nMark\nRonald\nDonald\nDaniel\nKenneth\nJoseph\nStephen\nLarry\nPaul\nDennis\nDouglas\nEdward\nTimothy\nGeorge\nGregory\nTerry\nRandy\nAnthony\nBruce\nJerry\nFrank\nRaymond\nPatrick\nRoger\nGerald\nRodney\nLawrence\nJeffrey\nJack\nChristopher\nScott\nDale\nStanley\nJoe\nArthur\nKevin\nPeter\nDanny\nWayne\nAlan\nKeith\nCarl\nCraig\nRoy\nRalph\nSteve\nWalter\nAlbert\nRandall\nPhillip\nAndrew\nHarold\nRick\nFred\nLeonard\nBrian\nErnest\nEugene\nHenry\nMartin\nRussell\nMike\nRicky\nLee\nAllen\nLouis\nPhilip\nVictor\nLeroy\nMicheal\nSamuel\nDarrell\nMarvin\nClifford\nJay\nJose\nKim\nJimmy\nBarry\nMelvin\nBradley\nDuane\nFrederick\nGilbert\nGlenn\nHoward\nDan\nDean\nNorman\nCurtis\nKent\nLynn\nRonnie\nTheodore\nChris\nGlen\nJim\nJohnny\nBilly\nLeslie\nManuel\nJon\nRandolph\nRay\nEarl\nGordon\nJesse\nKelly\nVernon\nBrad\nHarry\nTommy\nBenjamin\nLloyd\nClarence\nDon\nEddie\nTom\nTony\nEdwin\nEric\nMatthew\nWarren\nAlfred\nRudy\nWesley\nBobby\nFloyd\nKarl\nLonnie\nVincent\nDaryl\nJeffery\nBill\nGene\nGuy\nKirk\nNicholas\nTed\nAllan\nByron\nFrancis\nKurt\nLyle\nMarc\nPete\nBernard\nCalvin\nCarlos\nClyde\nGregg\nLeo\nFredrick\nLeon\nMario\nNeil\nAlvin\nAntonio\nBob\nBryan\nClinton\nRex\nArnold\nClayton\nGarry\nHerbert\nLoren\nPerry\nRickey\nRocky\nAaron\nDana\nDwight\nKerry\nMitchell\nRandal\nStuart\nDave\nFelix\nJerald\nJoel\nJonathan\nLouie\nMonte\nRuben\nAndy\nDelbert\nFranklin\nGrant\nJerome\nJesus\nRudolph\nTodd\nAlex\nBenny\nBradford\nDonnie\nDwayne\nFrancisco\nGreg\nJeff\nJuan\nKen\nLewis\nMyron\nSam\nSammy\nToby\nBen\nBrent\nDarryl\nEdgar\nEloy\nHal\nJacob\nJulian\nMaurice\nNick\nOscar\nRoland\nRon\nRoss\nShawn\nVan\nVirgil\nWillie\nErnie\nFrankie\nJackie\nLance\nLeland\nLester\nRamon\nRodger\nSidney\nTim\nAbel\nAdolph\nAlfonso\nCharlie\nChristophe\nClark\nClaude\nConrad\nEdmund\nEldon\nEverett\nGalen\nHarvey\nJimmie\nLuis\nMax\nRobin\nWilbur\nAdrian\nAlexander\nBennie\nChester\nDarrel\nDoyle\nElmer\nFernando\nForrest\nGeoffrey\nHugh\nLanny\nMarcus\nMerle\nMorris\nNed\nRoderick\nRory\nTerrence\nVance\nWade\nCecil\nDick\nFidel\nFreddie\nGerry\nGuadalupe\nJake\nJan\nJason\nJohnnie\nJorge\nKenny\nLaurence\nMarion\nMaynard\nMichel\nMickey\nOrlando\nOtis\nPat\nPedro\nRoberto\nSalvador\nTeddy\nUnknown\nArchie\nBernie\nBuddy\nDanial\nDarwin\nDenis\nDoug\nErik\nFritz\nGabriel\nHarley\nHubert\nIsaac\nJerold\nJessie\nJustin\nKenton\nMarlin\nMarshall\nNathan\nNoel\nRand\nSimon\nSpencer\nWillard\nWillis\nMichael\nDavid\nRobert\nJohn\nJames\nRichard\nWilliam\nSteven\nGary\nThomas\nMark\nCharles\nDaniel\nRonald\nDonald\nJoseph\nKenneth\nStephen\nLarry\nPaul\nDouglas\nTimothy\nDennis\nGregory\nGeorge\nAnthony\nJerry\nRandy\nTerry\nEdward\nBruce\nFrank\nRaymond\nJeffrey\nKevin\nGerald\nPatrick\nScott\nDale\nRoger\nLawrence\nAlan\nChristopher\nDanny\nJoe\nWayne\nCarl\nRodney\nRicky\nStanley\nCraig\nKeith\nSteve\nBrian\nRandall\nArthur\nPeter\nRoy\nMartin\nLeonard\nJack\nMike\nRussell\nErnest\nHenry\nWalter\nHarold\nLeroy\nAlbert\nRick\nPhillip\nVictor\nEric\nMicheal\nPhilip\nManuel\nRalph\nAndrew\nFred\nRay\nAllen\nLouis\nJay\nGilbert\nDarrell\nDean\nNorman\nGlenn\nHoward\nEugene\nJohnny\nLee\nSamuel\nDuane\nKent\nKim\nRonnie\nFrederick\nBradley\nGordon\nHarry\nJimmy\nJon\nBrad\nChris\nLloyd\nTommy\nVernon\nBarry\nLeslie\nBobby\nCurtis\nGlen\nClifford\nDan\nGuy\nJose\nKirk\nMarvin\nBilly\nKarl\nMarc\nMelvin\nJeffery\nTheodore\nTom\nBenjamin\nJesse\nKelly\nVincent\nGene\nHerbert\nRandolph\nRickey\nTony\nDon\nEdwin\nFloyd\nKurt\nWarren\nLonnie\nMatthew\nEarl\nEddie\nRudy\nTed\nBrent\nCarlos\nGregg\nWesley\nBill\nJim\nJuan\nRex\nSam\nAlfred\nAlvin\nLeo\nLynn\nBryan\nClarence\nDwight\nFrancisco\nFranklin\nMax\nNicholas\nAllan\nArnold\nLyle\nCalvin\nClyde\nDana\nGreg\nJonathan\nLuis\nBen\nDelbert\nFelix\nJerome\nRocky\nRuben\nAntonio\nJerald\nKerry\nDarryl\nFrancis\nLance\nNeil\nJimmie\nJoel\nLester\nMitchell\nRudolph\nStuart\nTim\nVirgil\nBenny\nLeon\nMonte\nRandal\nRicardo\nRickie\nRobin\nRoland\nRoss\nTerrance\nTerrence\nAaron\nAbel\nFredrick\nHarvey\nWillie\nAlexander\nBrett\nChester\nClinton\nDaryl\nDave\nFreddie\nGalen\nGarry\nJeff\nKen\nLeland\nLoren\nRaul\nRodger\nRon\nToby\nTodd\nBernard\nByron\nConrad\nEverett\nHarley\nJeffry\nJulian\nMerle\nMiguel\nMonty\nNick\nPete\nTerence\nAlfonso\nBlair\nBradford\nClaude\nDoyle\nFrankie\nHerman\nJackie\nJess\nJoey\nLewis\nLouie\nLowell\nMarcus\nReginald\nSammy\nShawn\nWade\nWendell\nAdolph\nAlex\nAndy\nBritt\nCary\nClark\nDirk\nDonn\nDwayne\nEdgar\nElmer\nForrest\nGuadalupe\nJake\nLaurence\nMario\nMilton\nNeal\nNolan\nPat\nStephan\nVan\nWillard\nAlvaro\nBob\nCasey\nCecil\nChristophe\nDarrel\nDarwin\nDusty\nEloy\nErnie\nErvin\nGrant\nHugh\nJan\nJesus\nKenny\nKenton\nKirby\nLane\nLevi\nLorenzo\nMarion\nMarshall\nMyron\nNelson\nOrlando\nOwen\nSidney\nAl\nBart\nBlaine\nBryant\nBuddy\nChad\nChristian\nDane\nDwaine\nGabriel\nGerry\nGuillermo\nIvan\nKelvin\nMaurice\nMiles\nNathan\nPerry\nRamon\nSandy\nSean\nTroy\nTyler\nUnknown\nVaughn\nMichael\nDavid\nRobert\nJohn\nJames\nRichard\nMark\nSteven\nWilliam\nThomas\nGary\nDaniel\nCharles\nKenneth\nRonald\nDonald\nJoseph\nGregory\nPaul\nTimothy\nDouglas\nStephen\nLarry\nDennis\nEdward\nRandy\nTerry\nJeffrey\nAnthony\nBruce\nScott\nKevin\nPatrick\nGeorge\nJerry\nFrank\nGerald\nChristopher\nDale\nRaymond\nRoger\nAlan\nLawrence\nBrian\nSteve\nRodney\nRicky\nKeith\nDanny\nCraig\nWayne\nMartin\nPeter\nRick\nRussell\nJack\nRoy\nAndrew\nJoe\nCarl\nArthur\nPhilip\nRandall\nPhillip\nGlenn\nHarold\nEric\nMicheal\nStanley\nEugene\nLeonard\nMike\nJay\nSamuel\nManuel\nRalph\nHenry\nJon\nKent\nDarrell\nLouis\nBarry\nBradley\nAlbert\nDean\nRay\nDan\nErnest\nJohnny\nLee\nAllen\nClifford\nJeffery\nLeroy\nKim\nVictor\nWalter\nFred\nCurtis\nGilbert\nJim\nJimmy\nBrad\nDuane\nHarry\nKurt\nMatthew\nJesse\nHoward\nJose\nMarvin\nVincent\nBill\nBilly\nChris\nFrederick\nKirk\nMelvin\nNorman\nEdwin\nTom\nBobby\nTheodore\nAlfred\nFloyd\nGordon\nGuy\nLeslie\nKarl\nLloyd\nTony\nDon\nKelly\nLeo\nMarc\nRandolph\nVernon\nGregg\nJoel\nBenjamin\nCalvin\nEddie\nGlen\nMitchell\nPete\nTommy\nNeil\nBrent\nGene\nGreg\nKerry\nNicholas\nRex\nSam\nWarren\nDwight\nRickey\nRobin\nRonnie\nTodd\nRuben\nTed\nClyde\nRoss\nWesley\nAlvin\nEarl\nFrancis\nLance\nDaryl\nDave\nNeal\nBob\nDelbert\nLewis\nPerry\nTim\nArnold\nBryan\nJeff\nLonnie\nLuis\nRoland\nByron\nClarence\nLeon\nLyle\nLynn\nMax\nRickie\nTerrance\nBernard\nCasey\nClark\nFreddie\nFredrick\nGarry\nHarvey\nLoren\nRon\nSidney\nWade\nBenny\nChristophe\nFranklin\nJerome\nJonathan\nRandal\nRocky\nStuart\nBen\nCarlos\nClayton\nForrest\nJackie\nJeffry\nJuan\nMonty\nRudolph\nTerrence\nVirgil\nHerbert\nHugh\nJerald\nMario\nMarshall\nNathan\nOscar\nRoderick\nAllan\nAndy\nAntonio\nBuddy\nCary\nClinton\nDarrel\nDwayne\nFrankie\nGrant\nHerman\nIvan\nMilton\nTracy\nAlex\nAlexander\nBennie\nBrett\nChester\nClay\nDirk\nElmer\nGeoffrey\nGerard\nHarley\nJesus\nKenny\nLaurence\nMarcus\nMyron\nRudy\nStewart\nTroy\nWillard\nArmando\nDarryl\nDarwin\nEdgar\nEldon\nEloy\nEverett\nFrancisco\nJerrold\nJess\nJody\nJulian\nKen\nLester\nMarty\nMickey\nMiles\nMorris\nNelson\nRamon\nRodger\nSammy\nAlfonso\nAlton\nArchie\nBernie\nBradford\nCecil\nChad\nDonnie\nDoyle\nErnie\nGabriel\nHarlan\nHector\nJimmie\nKit\nLeland\nLowell\nMalcolm\nMerle\nMonte\nOrlando\nReginald\nRicardo\nRoberto\nTeddy\nWallace\nWendell\nZachary\nAbel\nAdrian\nBart\nBlaine\nCameron\nConrad\nDana\nDenis\nDerek\nDewayne\nDexter\nEdmund\nFernando\nFreddy\nGale\nHal\nJamie\nJessie\nJohnnie\nJorge\nJulio\nJustin\nKendall\nKris\nMarion\nNick\nNicky\nPat\nReuben\nRobbie\nRussel\nRusty\nSean\nShane\nShawn\nSheldon\nStan\nTerence\nWilbur\nMichael\nDavid\nRobert\nJohn\nJames\nRichard\nMark\nWilliam\nSteven\nThomas\nGary\nDaniel\nRonald\nCharles\nJoseph\nTimothy\nKenneth\nDonald\nPaul\nDouglas\nStephen\nGregory\nKevin\nRandy\nLarry\nDennis\nEdward\nScott\nJeffrey\nAnthony\nBruce\nJerry\nPatrick\nTerry\nFrank\nBrian\nGeorge\nRaymond\nGerald\nKeith\nDale\nAlan\nRodney\nSteve\nRandall\nChristopher\nLawrence\nRoger\nCraig\nDanny\nCarl\nRick\nRussell\nJoe\nRicky\nStanley\nWayne\nJack\nMike\nArthur\nLeonard\nPeter\nPhilip\nMartin\nMicheal\nAndrew\nKent\nRoy\nHenry\nSamuel\nFred\nDuane\nEugene\nPhillip\nEric\nAlbert\nHarold\nKurt\nMatthew\nAllen\nManuel\nBradley\nGlenn\nHoward\nJim\nChris\nDean\nJeffery\nJohnny\nKelly\nJimmy\nWalter\nBarry\nJay\nLouis\nRalph\nErnest\nKirk\nBrad\nCurtis\nDan\nGilbert\nGlen\nRay\nRonnie\nLee\nVictor\nTom\nDarrell\nKim\nMarvin\nRobin\nVincent\nCalvin\nGreg\nHarry\nJesse\nJoel\nBrent\nBryan\nLloyd\nLonnie\nRandolph\nTheodore\nTony\nDon\nEddie\nJose\nBenjamin\nBilly\nClifford\nJon\nLeroy\nMelvin\nRocky\nBill\nGuy\nLeslie\nWarren\nFloyd\nTed\nTim\nAlfred\nDave\nEarl\nEdwin\nNorman\nRon\nJonathan\nRex\nCarlos\nFrederick\nGordon\nJerome\nKerry\nLewis\nGene\nJeff\nTodd\nAlvin\nBobby\nFranklin\nGregg\nJuan\nLoren\nLynn\nMax\nPerry\nTommy\nByron\nKarl\nNicholas\nRandal\nRickey\nRudolph\nRudy\nWesley\nBernard\nDana\nHarvey\nLeo\nMarc\nCasey\nDarrel\nDwight\nFredrick\nMonte\nVernon\nAlex\nDaryl\nLance\nLyle\nMitchell\nWade\nFelix\nJackie\nLester\nNeil\nAllan\nChristophe\nEverett\nHerman\nKen\nRickie\nRoss\nSam\nStuart\nAntonio\nBrett\nClarence\nClyde\nFrancis\nHerbert\nJerald\nJoey\nMario\nMyron\nAndy\nBenny\nCharlie\nGabriel\nGarry\nKenton\nLuis\nBradford\nCary\nClayton\nDarryl\nDonnie\nGrant\nLeon\nNeal\nRicardo\nRuben\nTerrence\nTracy\nArmando\nBen\nBob\nClark\nHal\nJimmie\nNathan\nPete\nSammy\nVirgil\nWillie\nAaron\nArnold\nBoyd\nCecil\nClinton\nDelbert\nDirk\nDoug\nDrew\nFrankie\nFreddie\nGalen\nGeoffrey\nGerard\nIvan\nJulian\nLeland\nMarshall\nMilton\nMonty\nShane\nAlexander\nAlfonso\nBlaine\nChuck\nClaude\nClay\nElmer\nFrancisco\nJeffry\nJesus\nLouie\nMarion\nPat\nPreston\nRodger\nRusty\nTerence\nTerrance\nToby\nTroy\nWillard\nAngel\nChester\nChristian\nConrad\nDerrick\nDomingo\nDoyle\nDwayne\nEloy\nGale\nJohnnie\nKenny\nLorenzo\nMarcus\nMarty\nMaurice\nNick\nRoland\nScot\nSidney\nStewart\nTeddy\nVan\nAl\nArchie\nBennie\nBert\nCurt\nDominic\nEdgar\nEdmund\nErnie\nHugh\nIra\nJake\nJess\nJody\nJustin\nKris\nKyle\nLane\nLenny\nMalcolm\nMerle\nMiles\nRamon\nRaul\nReginald\nRobbie\nSean\nShawn\nTimmy\nWallace\nAbraham\nAlonzo\nBryce\nChad\nColin\nCory\nDallas\nDarwin\nDenis\nDerek\nDick\nEldon\nElias\nForrest\nFreddy\nGarth\nJacob\nJan\nJerold\nJorge\nJulio\nKirby\nLaurence\nMargarito\nMarlin\nMitchel\nMorris\nOliver\nRandell\nRobby\nRoderick\nStan\nVal\nMichael\nDavid\nRobert\nJohn\nJames\nMark\nRichard\nWilliam\nSteven\nThomas\nDaniel\nGary\nRonald\nDonald\nTimothy\nCharles\nKenneth\nJoseph\nKevin\nScott\nPaul\nGregory\nLarry\nRandy\nDouglas\nStephen\nAnthony\nEdward\nJeffrey\nDennis\nPatrick\nBrian\nTerry\nJerry\nBruce\nGeorge\nSteve\nFrank\nDale\nRaymond\nMike\nRodney\nRoger\nAlan\nKeith\nRick\nChristopher\nRicky\nJoe\nDanny\nLawrence\nRussell\nPeter\nRandall\nGerald\nMatthew\nWayne\nStanley\nCraig\nJack\nMartin\nCarl\nAndrew\nEric\nKirk\nDan\nPhillip\nKent\nVictor\nHarold\nJay\nJim\nLeonard\nMicheal\nArthur\nRalph\nPhilip\nAlbert\nGlen\nTom\nBryan\nJeffery\nSamuel\nDarrell\nDean\nBill\nBrad\nBradley\nGlenn\nRoy\nTony\nHenry\nKurt\nTim\nCurtis\nJimmy\nJon\nGilbert\nAllen\nFred\nChris\nKelly\nErnest\nEugene\nRay\nWalter\nDon\nHoward\nLeroy\nLouis\nNorman\nRonnie\nJohnny\nBarry\nBenjamin\nDuane\nLee\nTommy\nVincent\nBilly\nMarvin\nClifford\nEarl\nFrederick\nGreg\nHarry\nWarren\nJeff\nJesse\nJoel\nTheodore\nEddie\nLeslie\nGordon\nLonnie\nManuel\nMitchell\nFloyd\nKerry\nMarc\nMelvin\nJonathan\nLyle\nGregg\nJose\nCalvin\nJuan\nLloyd\nBob\nBrent\nDave\nEdwin\nTodd\nDwight\nKim\nLynn\nAlfred\nBobby\nKarl\nMarty\nNicholas\nRex\nByron\nNeil\nWesley\nRocky\nRon\nTed\nCasey\nFranklin\nGene\nGuy\nRandolph\nRobin\nRoss\nAaron\nDana\nLance\nNick\nPerry\nWade\nAndy\nGarry\nMonte\nNathan\nRuben\nAlvin\nLeo\nVernon\nBernard\nDaryl\nDelbert\nLoren\nLuis\nSam\nTerrance\nBen\nCarlos\nHarvey\nJerome\nKyle\nMario\nPete\nRandal\nRickey\nTracy\nAllan\nChuck\nClayton\nDarrel\nDoug\nGrant\nJimmie\nKen\nLester\nRicardo\nShawn\nStuart\nToby\nAlex\nCary\nChester\nClark\nDonnie\nFrankie\nHerbert\nMax\nMonty\nRoland\nSean\nStephan\nBenny\nClyde\nEd\nJulian\nLewis\nMarcus\nMiguel\nPat\nPhil\nSammy\nShane\nArnold\nErnie\nFrancisco\nKenny\nLeon\nMatt\nRudolph\nRudy\nTeddy\nAdolph\nAngelo\nBernie\nBrett\nClay\nCurt\nDarryl\nFelix\nFrancis\nGabriel\nHugh\nIvan\nJerald\nMarshall\nMilton\nNeal\nPedro\nPreston\nRaul\nRobbie\nRoderick\nVance\nWyatt\nAlexander\nConrad\nDarwin\nDirk\nEloy\nFreddie\nHal\nJoesph\nJoey\nLouie\nMaurice\nMiles\nMitch\nOrlando\nRickie\nRoberto\nRod\nRory\nStan\nTerrence\nAndre\nArmando\nBennie\nBret\nCharlie\nClaude\nEldon\nElmer\nGale\nGeoffrey\nHerman\nJacob\nJamie\nJerrold\nJorge\nKendall\nLon\nLonny\nMorris\nMyron\nRyan\nSidney\nTimmy\nWillie\nAbel\nAdrian\nAntonio\nBradford\nBuddy\nCarey\nCecil\nClarence\nClinton\nDerek\nDoyle\nDwayne\nEverett\nFredrick\nHector\nJackie\nJessie\nJohnnie\nKurtis\nLaurence\nLeland\nMichel\nNed\nOscar\nRamon\nRusty\nSalvador\nScot\nTerence\nVirgil\nWillard\nAlfonso\nAlvaro\nArchie\nBarney\nBart\nBert\nBlaine\nBlair\nBryon\nChad\nClint\nColin\nDallas\nDewey\nDick\nDrew\nEdmund\nEnrique\nFernando\nFreddy\nGerard\nGerry\nGrady\nJake\nJason\nJess\nJody\nJulius\nKelley\nKelvin\nKeven\nKip\nKit\nKris\nLowell\nMickey\nNelson\nPablo\nRandell\nRob\nStewart\nWendell\nZane\nMichael\nDavid\nJohn\nRobert\nJames\nMark\nRichard\nWilliam\nSteven\nThomas\nRonald\nDaniel\nGary\nTimothy\nDonald\nKenneth\nCharles\nJoseph\nKevin\nScott\nPaul\nLarry\nGregory\nRandy\nDouglas\nMike\nJeffrey\nAnthony\nStephen\nBrian\nEdward\nDennis\nPatrick\nBruce\nSteve\nGeorge\nJerry\nRaymond\nTerry\nDanny\nChristopher\nDale\nRick\nFrank\nKeith\nAlan\nJoe\nRicky\nRussell\nGerald\nJim\nRoger\nRodney\nPeter\nTom\nJay\nPhillip\nTim\nMartin\nWayne\nChris\nRandall\nCraig\nJeff\nEric\nMatthew\nJack\nAndrew\nArthur\nBradley\nDave\nLawrence\nBill\nDan\nGreg\nDean\nCarl\nLeonard\nAlbert\nBret\nKent\nRalph\nRoy\nRonnie\nCurtis\nKelly\nKirk\nPhilip\nKurt\nDon\nMicheal\nTony\nBryan\nRay\nStanley\nJeffery\nTodd\nBrad\nLouis\nGlenn\nSamuel\nJohnny\nJimmy\nDuane\nHarold\nLeroy\nAllen\nBrett\nEugene\nJoel\nVictor\nBilly\nDarrell\nMarvin\nBarry\nHenry\nTommy\nJose\nWalter\nBob\nBobby\nBrent\nClifford\nTheodore\nGilbert\nMitchell\nRon\nErnest\nHoward\nDoug\nFred\nGlen\nHarry\nJesse\nJonathan\nSam\nJon\nVincent\nKerry\nFrederick\nGordon\nLee\nBenjamin\nLeslie\nLloyd\nNick\nNorman\nAlfred\nEddie\nManuel\nAndy\nMelvin\nVernon\nWesley\nEdwin\nKim\nRudy\nCalvin\nKen\nMax\nRocky\nCarlos\nMarty\nAllan\nClyde\nEarl\nGene\nLeo\nLoren\nNathan\nRandolph\nArnold\nKarl\nKenny\nLonnie\nMarc\nPerry\nRandal\nRuben\nTed\nBernard\nJuan\nPete\nRobin\nBart\nBenny\nByron\nChuck\nDwight\nLewis\nTracy\nFranklin\nLance\nMonte\nDaryl\nDelbert\nGarry\nGregg\nKyle\nLyle\nMario\nNeal\nNeil\nRex\nRickey\nRoss\nWarren\nAlex\nCasey\nClayton\nErnie\nFelix\nLynn\nMonty\nNicholas\nSammy\nTroy\nWade\nAaron\nClay\nEd\nFredrick\nGuy\nJimmie\nPat\nRod\nRoland\nRudolph\nStuart\nAlvin\nCharlie\nDino\nElmer\nIvan\nJerome\nLester\nLouie\nTerrence\nToby\nBennie\nChester\nChristophe\nDana\nDick\nDonnie\nDwayne\nEverett\nFrancis\nGrant\nHerbert\nHugh\nJerald\nJoey\nLeon\nLuis\nMatt\nShawn\nTerrance\nTimmy\nWillie\nAlexander\nClarence\nClinton\nCurt\nPhil\nScot\nVirgil\nBen\nBradford\nChad\nCliff\nDarrel\nDarryl\nFloyd\nJake\nJamie\nJesus\nKris\nLeland\nMickey\nMorris\nRicardo\nRusty\nStan\nDirk\nJeffry\nJustin\nLonny\nMyron\nRory\nSean\nWilfred\nConrad\nDerek\nEdgar\nErik\nEvan\nForrest\nFrancisco\nFreddy\nGabriel\nGeoffrey\nGerard\nJulian\nKirby\nMarshall\nMiguel\nMiles\nNoel\nPreston\nRoderick\nRodger\nVan\nAndres\nArchie\nBert\nBoyd\nCary\nCecil\nClark\nCory\nFernando\nGalen\nHector\nHerman\nJed\nKelley\nKeven\nLaurence\nMarcus\nMathew\nMaurice\nMilton\nMitchel\nPedro\nRaul\nSidney\nSimon\nAlfonso\nBrock\nBryon\nCarey\nClaude\nClint\nCorey\nDanial\nDarell\nDominic\nDoyle\nEdmund\nEldon\nEloy\nHal\nHarvey\nJackie\nJacob\nJaime\nJess\nJordan\nJorge\nLane\nLuke\nMalcolm\nMichel\nMitch\nNed\nNelson\nOrlando\nReed\nReginald\nRock\nSheldon\nSpencer\nStewart\nTeddy\nTerence\nTravis\nTy\nVal\nDavid\nMichael\nJohn\nRobert\nJames\nMark\nRichard\nWilliam\nSteven\nThomas\nTimothy\nDaniel\nScott\nKenneth\nGary\nKevin\nCharles\nPaul\nDonald\nRonald\nRandy\nDouglas\nLarry\nMike\nGregory\nJeffrey\nJoseph\nAnthony\nBrian\nSteve\nDennis\nRicky\nJerry\nPatrick\nChristopher\nStephen\nEdward\nTerry\nJim\nGeorge\nBruce\nJoe\nRussell\nEric\nGreg\nFrank\nCraig\nTim\nRaymond\nRick\nDale\nTom\nRodney\nAlan\nJeff\nRoger\nDanny\nBill\nKeith\nRandall\nChris\nLawrence\nCarl\nDan\nJay\nMartin\nPeter\nAndrew\nGerald\nJack\nArthur\nMatthew\nBret\nKent\nBradley\nDon\nLeonard\nBryan\nManuel\nTony\nPhilip\nWayne\nJohnny\nKurt\nMicheal\nKirk\nDave\nDean\nHarold\nKelly\nRon\nPhillip\nDarrell\nJimmy\nRalph\nJeffery\nTodd\nBob\nFred\nJon\nEddie\nRoy\nAlbert\nBrett\nCurtis\nHenry\nRonnie\nSamuel\nGlen\nAllen\nBrad\nEugene\nRay\nDuane\nErnest\nStanley\nVictor\nGilbert\nShawn\nBenjamin\nLouis\nBrent\nBarry\nBilly\nBobby\nDoug\nJoel\nLeroy\nTommy\nWalter\nGlenn\nJesse\nLonnie\nMitchell\nVincent\nClifford\nHoward\nJose\nLee\nKarl\nMarvin\nNorman\nRandal\nTed\nCalvin\nKerry\nFrederick\nGene\nWesley\nAndy\nBen\nEarl\nRandolph\nRocky\nAlvin\nPat\nSam\nArnold\nFloyd\nGordon\nGregg\nKyle\nMarty\nAaron\nCarlos\nLance\nMarc\nDana\nJonathan\nKen\nPerry\nEd\nFrankie\nKenny\nRory\nStuart\nTracy\nWarren\nAlfred\nClinton\nLeo\nLynn\nMelvin\nNick\nPete\nRuben\nChuck\nDwight\nFranklin\nHarry\nNicholas\nRickey\nLloyd\nNeal\nTheodore\nVernon\nAlexander\nAllan\nBenny\nErnie\nJoey\nJuan\nNathan\nNeil\nRobin\nRudy\nWade\nWillie\nBart\nByron\nDarren\nDwayne\nGarry\nGuy\nSean\nClark\nClyde\nFrancis\nHarvey\nLoren\nLuis\nMonte\nRex\nClay\nGabriel\nGeoffrey\nGrant\nLyle\nDaryl\nJody\nLeslie\nMatt\nRoss\nRusty\nSammy\nScot\nAlfonso\nCory\nDarrel\nEdwin\nFreddie\nHerbert\nJacob\nJerome\nJulian\nJustin\nLaurence\nLester\nMax\nRobbie\nRodger\nTeddy\nTerrance\nTimmy\nTroy\nCary\nClint\nCurt\nDarryl\nDerek\nErik\nGerard\nIvan\nJason\nJeffry\nJimmie\nKim\nMilton\nRicardo\nRoland\nRyan\nAlex\nAntonio\nClarence\nDewayne\nEdgar\nHal\nJohnnie\nJorge\nLeon\nMario\nMathew\nMiguel\nTerrence\nVern\nCasey\nCecil\nClayton\nDirk\nFelix\nFernando\nForrest\nFredrick\nLane\nLewis\nMarcus\nMarion\nPhil\nRuss\nTod\nVince\nWillard\nArmando\nBlake\nCarey\nClaude\nDamon\nDick\nDoyle\nFrancisco\nGarrett\nHector\nJackie\nJefferson\nJessie\nJesus\nKelvin\nKip\nMickey\nMonty\nNelson\nOrlando\nRickie\nRock\nShane\nSidney\nStan\nStewart\nVan\nWendell\nAdrian\nBennie\nBernard\nBradford\nCharlie\nConrad\nDane\nDel\nDino\nEddy\nEloy\nEverett\nFreddy\nHerman\nJaime\nJerald\nJoaquin\nLouie\nMaurice\nMyron\nNoel\nRod\nRudolph\nSalvador\nSheldon\nStephan\nWally\nAngelo\nBarton\nBert\nBuddy\nChad\nCody\nColin\nCorey\nDallas\nDelbert\nDenny\nDerrick\nDonn\nDonny\nEldon\nEmilio\nEmmett\nFidel\nGale\nGalen\nGino\nIsaac\nJace\nJake\nJamie\nJan\nKenton\nKris\nLanny\nLon\nMorris\nNicky\nOscar\nRafael\nReed\nReuben\nRobbin\nRoberto\nSherman\nStacy\nToby\nVal\nVance\nWallace\nDavid\nMichael\nJohn\nRobert\nMark\nJames\nRichard\nWilliam\nSteven\nDaniel\nKevin\nThomas\nScott\nTimothy\nKenneth\nJoseph\nGary\nMike\nJeffrey\nPaul\nBrian\nDonald\nGregory\nDouglas\nRonald\nRandy\nCharles\nAnthony\nSteve\nLarry\nStephen\nPatrick\nEric\nTerry\nDennis\nChristopher\nEdward\nCraig\nJerry\nGeorge\nBruce\nFrank\nChris\nJeff\nRoger\nJoe\nRaymond\nDale\nAlan\nRandall\nRicky\nTim\nJim\nKeith\nRodney\nAndrew\nDanny\nMatthew\nGreg\nMartin\nRussell\nTom\nTony\nBradley\nDan\nPeter\nRick\nCarl\nJay\nGerald\nLawrence\nPhillip\nWayne\nAllen\nBill\nDave\nJack\nTodd\nDean\nArthur\nJimmy\nBryan\nDon\nKirk\nKelly\nRonnie\nKent\nBob\nJeffery\nJohnny\nAlbert\nLeonard\nRalph\nBilly\nCurtis\nGlenn\nRoy\nTracy\nJoel\nMicheal\nBarry\nBrad\nFred\nJon\nStanley\nVictor\nKurt\nPhilip\nVincent\nGilbert\nRay\nMitchell\nBrett\nHenry\nDuane\nEugene\nNorman\nShawn\nClifford\nHarold\nLeroy\nEddie\nLouis\nRon\nBobby\nErnest\nGregg\nJesse\nKenny\nKen\nWesley\nBret\nClayton\nDarren\nHoward\nLee\nWalter\nBrent\nDarrell\nDarryl\nGordon\nJose\nKarl\nMarvin\nTed\nTroy\nLance\nLeslie\nEarl\nTommy\nGlen\nPat\nPerry\nSamuel\nFrederick\nMarty\nGuy\nJonathan\nLonnie\nGene\nManuel\nBenjamin\nDoug\nDwayne\nLeo\nLloyd\nMarc\nRobin\nSam\nTheodore\nAaron\nRudy\nCalvin\nClay\nKerry\nLynn\nStuart\nAlfred\nCarlos\nJerome\nMelvin\nNicholas\nRex\nRuben\nAlex\nAndy\nArnold\nEdwin\nKyle\nMatt\nSean\nBenny\nChuck\nDana\nFloyd\nFrancis\nHerman\nJuan\nWarren\nAntonio\nHarry\nMax\nNick\nPete\nBart\nBen\nEd\nErnie\nJustin\nClarence\nDonnie\nGrant\nNeil\nRandal\nAdam\nByron\nDaryl\nDwight\nLoren\nLyle\nMario\nNathan\nPhil\nRandolph\nRocky\nRod\nRoland\nRoss\nVernon\nWade\nBernard\nCasey\nDino\nKendall\nKim\nShane\nAlvin\nClinton\nFranklin\nLuis\nCecil\nClaude\nDarrel\nFredrick\nJoey\nJohnnie\nLeon\nRicardo\nRory\nAllan\nDelbert\nDerek\nGeoffrey\nHarvey\nJason\nKelvin\nLewis\nLuke\nMarshall\nOscar\nPedro\nRyan\nVince\nWillie\nBlake\nCary\nChristian\nClark\nClyde\nCurt\nErik\nFelix\nFrancisco\nKris\nMonte\nMonty\nRickey\nRusty\nStewart\nVan\nCharlie\nClifton\nClint\nDamon\nDerrick\nDirk\nFernando\nFrankie\nGabriel\nHerbert\nHugh\nJeffry\nJody\nLeland\nLester\nNeal\nNoel\nRudolph\nShannon\nStan\nToby\nAlexander\nChester\nDallas\nEdmund\nIvan\nJackie\nJessie\nLouie\nMiguel\nMiles\nMitch\nMyron\nNelson\nOrlando\nPreston\nRickie\nRob\nRuss\nSammy\nSidney\nStacey\nTerrance\nTimmy\nTrent\nVirgil\nWillard\nAbel\nAngelo\nArchie\nArmando\nBarton\nBoyd\nBradford\nBurt\nConrad\nCorey\nCory\nEdgar\nEli\nGarry\nJamie\nJess\nJesus\nJimmie\nJorge\nKip\nKirby\nLane\nMathew\nMickey\nNicky\nScot\nVance\nAl\nAndre\nBernie\nBrandon\nBryce\nBuddy\nDarwin\nDee\nDevin\nDewayne\nDrew\nElias\nForrest\nGalen\nGerard\nGustavo\nHal\nHector\nJacob\nJan\nKenton\nKurtis\nLaurence\nLevi\nLon\nMarcus\nMilton\nRamon\nReginald\nRoderick\nSalvador\nScotty\nTerrence\nTravis\nTy\nTyrone\nWallace\nZane\nDavid\nMichael\nJohn\nRobert\nMark\nJames\nRichard\nWilliam\nSteven\nKevin\nScott\nDaniel\nThomas\nJeffrey\nPaul\nKenneth\nGary\nCharles\nDonald\nTimothy\nMike\nRonald\nDouglas\nBrian\nGregory\nJoseph\nChristopher\nRandy\nLarry\nAnthony\nSteve\nPatrick\nStephen\nEdward\nJerry\nChris\nEric\nJeff\nCraig\nTerry\nFrank\nGreg\nJoe\nTodd\nDennis\nBruce\nRoger\nRaymond\nDale\nGeorge\nAlan\nRicky\nGerald\nKeith\nRandall\nTim\nDanny\nJim\nTom\nMatthew\nTroy\nRussell\nBill\nAndrew\nWayne\nBradley\nBryan\nDean\nJack\nRick\nRodney\nJay\nMartin\nPeter\nKirk\nKelly\nPhillip\nJon\nJeffery\nKent\nLawrence\nRon\nTony\nBrad\nCarl\nDan\nJohnny\nKurt\nLeonard\nRonnie\nAlbert\nGlenn\nJimmy\nRalph\nAllen\nManuel\nRoy\nArthur\nStanley\nBob\nDuane\nPhilip\nWalter\nBrett\nDave\nErnest\nFred\nVictor\nEugene\nHenry\nMicheal\nBarry\nCurtis\nEddie\nHarold\nMitchell\nTracy\nVincent\nBrent\nGilbert\nSamuel\nJoel\nJonathan\nGlen\nLouis\nBobby\nDarryl\nKen\nMarvin\nDon\nKarl\nBilly\nDarrell\nKenny\nLee\nRay\nShawn\nNorman\nDoug\nLeroy\nTed\nKerry\nLonnie\nCarlos\nMarc\nRobin\nBenjamin\nHoward\nTommy\nWade\nJose\nSean\nTheodore\nVernon\nWesley\nGregg\nGuy\nLance\nChuck\nPete\nFrederick\nGene\nJesse\nStuart\nAaron\nBen\nCalvin\nDarrel\nHarry\nMatt\nMelvin\nDwayne\nJuan\nNicholas\nRex\nRudy\nSam\nWarren\nDana\nEarl\nNick\nRocky\nAlfred\nAndy\nArnold\nGordon\nLeslie\nMarty\nBret\nClayton\nLloyd\nPerry\nRoss\nByron\nClifford\nDaryl\nGeoffrey\nLewis\nNathan\nRoland\nRuben\nDarren\nGrant\nKyle\nLoren\nMario\nPat\nWillie\nRobbie\nBart\nClinton\nClyde\nCurt\nJerome\nJustin\nLeo\nMonty\nNeal\nTy\nAdam\nAlex\nCary\nClay\nDonnie\nFloyd\nHerbert\nRandolph\nSidney\nTimmy\nBennie\nChristian\nClarence\nDerek\nEd\nEdwin\nGabriel\nJason\nLes\nLuis\nLyle\nRandal\nShane\nAdrian\nBenny\nBernard\nCecil\nClark\nDelbert\nDirk\nDwight\nEverett\nFredrick\nHarvey\nJackie\nJerald\nJoesph\nJulian\nKris\nMax\nMitch\nMonte\nNeil\nAndre\nAngelo\nBert\nCharlie\nClaude\nErik\nFelix\nFrancis\nFrancisco\nFranklin\nJeffry\nJimmie\nJoey\nKelvin\nKim\nLouie\nLynn\nMarcus\nRicardo\nRod\nRory\nRyan\nToby\nTod\nAlexander\nAllan\nBoyd\nChester\nGerard\nHerman\nJacob\nLeland\nMaurice\nMitchel\nOscar\nRich\nRob\nStewart\nTrent\nVince\nVirgil\nAlfonso\nAlvin\nAntonio\nBernie\nBradford\nClint\nConrad\nDarin\nDerrick\nDick\nEdgar\nElmer\nErnie\nFernando\nGarry\nIvan\nKip\nMathew\nMiles\nMilton\nReginald\nRoderick\nRodger\nScot\nTeddy\nVan\nVern\nArchie\nBlair\nBlake\nColin\nDarwin\nDoyle\nGerry\nJess\nJesus\nJohnnie\nLeon\nLester\nLuke\nMarshall\nMorgan\nPhil\nRickey\nShannon\nTerrance\nTravis\nTyler\nBlaine\nCasey\nDewayne\nDino\nGino\nHal\nIsaac\nLorenzo\nMiguel\nMikel\nMorris\nNathaniel\nRickie\nRobby\nRuss\nStan\nTerrence\nVance\nCameron\nCliff\nCory\nDallas\nDamon\nDominic\nElliott\nErnesto\nEvan\nFelipe\nForrest\nFreddie\nHector\nJaime\nJorge\nKristopher\nKurtis\nMalcolm\nMickey\nOrlando\nPedro\nReuben\nRoman\nRoscoe\nRusty\nSalvador\nSantiago\nSimon\nDavid\nMichael\nJohn\nRobert\nJames\nMark\nScott\nRichard\nSteven\nWilliam\nKevin\nDaniel\nThomas\nJeffrey\nTimothy\nJoseph\nBrian\nKenneth\nGary\nCharles\nDonald\nPaul\nGregory\nRonald\nAnthony\nMike\nDouglas\nChristopher\nRandy\nStephen\nTodd\nSteve\nEric\nLarry\nPatrick\nJoe\nTerry\nChris\nEdward\nJerry\nJeff\nKeith\nDennis\nMatthew\nAndrew\nFrank\nTroy\nJim\nRoger\nRaymond\nBruce\nDale\nDanny\nRussell\nAlan\nGeorge\nCraig\nBradley\nGreg\nRandall\nRick\nJay\nWayne\nTom\nDean\nVincent\nRodney\nTim\nJeffery\nTony\nRicky\nGerald\nBill\nCurtis\nJon\nKent\nCarl\nGlenn\nKirk\nMartin\nBryan\nPeter\nJack\nLawrence\nAllen\nBilly\nDan\nArthur\nSamuel\nLeonard\nPhillip\nRoy\nBarry\nDave\nJimmy\nVictor\nKurt\nBob\nKelly\nDon\nBrad\nDarryl\nFred\nLee\nEugene\nHenry\nLouis\nRonnie\nBrent\nDuane\nEddie\nJohnny\nRon\nWesley\nErnest\nRalph\nStanley\nShawn\nWalter\nAlbert\nBobby\nBrett\nHarold\nGilbert\nPhilip\nTracy\nDarrell\nDoug\nKen\nTheodore\nMicheal\nCarlos\nJesse\nManuel\nRay\nJose\nWarren\nAdam\nGlen\nMarvin\nNorman\nJonathan\nKerry\nGordon\nJoel\nLeroy\nMitchell\nAlex\nLance\nNick\nSean\nDana\nRobin\nTommy\nJuan\nAlfred\nAndy\nClifford\nDerek\nDwayne\nGuy\nHoward\nAaron\nGene\nGregg\nKyle\nLeslie\nTed\nDarren\nHarry\nLoren\nMarc\nMarty\nVernon\nBenjamin\nClay\nKarl\nNicholas\nPat\nRoss\nCalvin\nEdwin\nMatt\nRandolph\nRudy\nBret\nByron\nClayton\nGrant\nKenny\nNathan\nRocky\nBen\nJerome\nNeil\nShane\nStuart\nVince\nAlexander\nCasey\nLonnie\nLuis\nLyle\nPerry\nRuben\nWade\nAllan\nDaryl\nEarl\nJulian\nMax\nMonte\nPete\nClinton\nCurt\nErik\nFrancis\nJoey\nLeo\nMelvin\nSam\nDarrel\nEd\nErnie\nFelix\nFrederick\nLloyd\nMario\nRobbie\nBenny\nClarence\nDarin\nDonnie\nDwight\nKris\nLeon\nLynn\nPedro\nRandal\nRod\nStewart\nTy\nAdrian\nAlvin\nChuck\nFloyd\nJustin\nMitch\nRex\nRickey\nSammy\nShannon\nTerrence\nToby\nAndre\nBernard\nCharlie\nDoyle\nFrankie\nGabriel\nHerman\nJason\nLewis\nMonty\nRyan\nScot\nTimmy\nArnold\nClark\nClyde\nForrest\nFreddie\nGarry\nGeoffrey\nGerard\nIsaac\nIvan\nJamie\nMarshall\nMaurice\nRicardo\nRob\nRoyce\nShaun\nTerence\nTravis\nVirgil\nWillie\nAntonio\nBradford\nCary\nFranklin\nJackie\nJaime\nJake\nJess\nJimmie\nLane\nRoderick\nRudolph\nSpencer\nStephan\nWendell\nAlfonso\nBart\nBert\nCameron\nCecil\nChad\nCory\nDelbert\nElmer\nEvan\nFrancisco\nKendall\nLeland\nLon\nMathew\nMiguel\nNeal\nOrlando\nRobby\nSheldon\nStacy\nStan\nTerrance\nVan\nZane\nAngelo\nClaude\nEloy\nFernando\nGarth\nHal\nHerbert\nJeffry\nJessie\nJohnnie\nLester\nLonny\nMarcus\nOscar\nPhil\nRaul\nReginald\nRodger\nSidney\nTeddy\nTyler\nAnton\nArmando\nBennie\nCharley\nClint\nDerrick\nDino\nDominic\nEmmett\nErnesto\nEverett\nGalen\nHugh\nJacob\nJesus\nKenton\nKim\nLesley\nMerle\nMorris\nMyron\nNathaniel\nNoel\nOwen\nRafael\nReed\nReuben\nRich\nRoland\nWilbur\nAbel\nBlaine\nBlair\nBlake\nBoyd\nBryon\nChip\nCliff\nClifton\nCris\nDallas\nDarwin\nDee\nDevin\nEdgar\nFabian\nGavin\nGil\nGino\nJerald\nKelvin\nKirby\nLevi\nLorne\nLouie\nLowell\nMalcolm\nMitchel\nRamon\nRandel\nRory\nRusty\nTheadore\nTobias\nTod\nWillard\nMichael\nDavid\nJohn\nRobert\nJames\nMark\nRichard\nScott\nWilliam\nKevin\nSteven\nThomas\nJeffrey\nDaniel\nTimothy\nPaul\nBrian\nJoseph\nCharles\nKenneth\nGregory\nGary\nRonald\nChristopher\nMike\nDonald\nTodd\nDouglas\nAnthony\nRandy\nEric\nEdward\nPatrick\nStephen\nTroy\nSteve\nAndrew\nLarry\nJeff\nChris\nFrank\nTerry\nJerry\nDennis\nMatthew\nJoe\nGeorge\nKeith\nRussell\nDanny\nRoger\nPhillip\nBradley\nDale\nTony\nRandall\nAlan\nBruce\nRicky\nGreg\nCraig\nGerald\nRaymond\nTim\nJim\nMartin\nJay\nShawn\nTom\nVincent\nDean\nPeter\nRick\nRodney\nWayne\nKent\nBryan\nBill\nJon\nArthur\nJeffery\nAllen\nJack\nDan\nGlenn\nKirk\nKurt\nBilly\nKelly\nCurtis\nVictor\nCarl\nDarrell\nJimmy\nPhilip\nRoy\nBrad\nDuane\nLawrence\nRon\nJoel\nMitchell\nBarry\nHarold\nMicheal\nWalter\nBobby\nDon\nErnest\nAndy\nBrent\nBrett\nRalph\nDarryl\nHenry\nLouis\nStanley\nSamuel\nTed\nTheodore\nBob\nLee\nDave\nJohnny\nJose\nLance\nManuel\nDoug\nRay\nAlbert\nGilbert\nSean\nFred\nKarl\nKen\nJonathan\nAaron\nGlen\nMarvin\nRonnie\nEddie\nJesse\nMarty\nLeonard\nLeroy\nLonnie\nNorman\nTracy\nDarren\nEugene\nWarren\nBret\nCarlos\nDerek\nHoward\nKerry\nRudy\nWesley\nGregg\nJuan\nLloyd\nMarc\nRobin\nTommy\nKenny\nFrederick\nAlfred\nBenjamin\nClifford\nNicholas\nStuart\nGene\nGordon\nMatt\nNathan\nPerry\nShane\nChuck\nDwayne\nDwight\nEarl\nAdam\nAlex\nLoren\nPat\nErik\nJustin\nKyle\nClayton\nDana\nHarry\nJason\nMelvin\nNick\nRobbie\nRocky\nSam\nAntonio\nArnold\nByron\nClinton\nDaryl\nFloyd\nFranklin\nGrant\nJoey\nLeslie\nRex\nRoss\nToby\nWade\nBen\nClark\nGuy\nNeal\nRob\nAllan\nBernard\nClarence\nGabriel\nMonte\nNeil\nAdrian\nCalvin\nCody\nEdwin\nEverett\nKris\nPete\nRory\nAngelo\nBart\nDarrel\nEd\nKelvin\nLeon\nLuis\nMonty\nRandolph\nRuben\nTimmy\nTod\nVernon\nVince\nWendell\nBradford\nChad\nClay\nCurt\nDerrick\nDonnie\nErnie\nFrancis\nJerome\nJessie\nKip\nLewis\nChristian\nClint\nDarin\nDirk\nDoyle\nFelix\nFredrick\nGerard\nJulian\nLouie\nLuke\nMarcus\nMario\nShannon\nTravis\nTy\nCasey\nDelbert\nJeffry\nJimmie\nJody\nLester\nLyle\nLynn\nMathew\nMilton\nRandal\nRod\nRyan\nStewart\nTerrence\nTrent\nVance\nVirgil\nAlexander\nAndre\nCary\nDane\nDenny\nDominic\nEvan\nHarvey\nJaime\nJerald\nJesus\nKim\nLeo\nMiguel\nMitch\nPhil\nRicardo\nRoderick\nRoland\nRudolph\nSammy\nScot\nStan\nVaughn\nAlvin\nBoyd\nCecil\nCory\nDaren\nDewayne\nFreddie\nGarry\nGeoffrey\nJacob\nJamie\nJess\nJonathon\nLeland\nRickey\nRoyce\nRussel\nShaun\nTeddy\nTyler\nZane\nArchie\nBennie\nBrandon\nCameron\nCharlie\nChester\nColin\nCorey\nDallas\nDamon\nForrest\nGarth\nHans\nHerbert\nHugh\nIvan\nJohnathan\nKirt\nKraig\nMarshall\nMaurice\nMickey\nMurray\nNicky\nRegan\nReuben\nSalvador\nWillard\nAl\nAlfonso\nAlvaro\nAustin\nBenny\nBernie\nBert\nBlaine\nBlair\nBlake\nBryon\nCarey\nChet\nCliff\nClifton\nConrad\nDamian\nDino\nDonny\nErich\nFabian\nFrankie\nGale\nHector\nJoshua\nJulio\nLes\nLionel\nLupe\nLuther\nMauricio\nMax\nMel\nMitchel\nOrlando\nOscar\nRamon\nRigoberto\nRuss\nScotty\nStoney\nTerence\nTyrone\nVan\nWallace\nWill\nMichael\nJohn\nDavid\nRobert\nJames\nMark\nRichard\nScott\nWilliam\nKevin\nSteven\nThomas\nDaniel\nJoseph\nJeffrey\nPaul\nKenneth\nTimothy\nBrian\nGregory\nGary\nChristopher\nCharles\nDonald\nTodd\nPatrick\nRonald\nAnthony\nDouglas\nEric\nMike\nStephen\nRandy\nSteve\nAndrew\nLarry\nTroy\nEdward\nMatthew\nJeff\nTerry\nChris\nJoe\nJerry\nRaymond\nFrank\nBradley\nAlan\nRussell\nDennis\nKeith\nRodney\nGeorge\nRoger\nGreg\nJim\nCraig\nJeffery\nRicky\nTim\nDale\nBruce\nPhillip\nShawn\nDean\nJay\nRandall\nDanny\nPeter\nRick\nMartin\nBryan\nVincent\nJon\nTony\nGerald\nTom\nWayne\nBill\nJack\nLawrence\nCarl\nJonathan\nKirk\nPhilip\nBrett\nBrad\nKent\nKurt\nRalph\nCurtis\nSean\nErnest\nBrent\nManuel\nAdam\nArthur\nDarren\nGilbert\nKelly\nAlbert\nDan\nGlenn\nBobby\nJohnny\nVictor\nJoel\nRonnie\nBilly\nDon\nLeonard\nLouis\nRoy\nLance\nTracy\nDarrell\nMicheal\nSamuel\nAllen\nAndy\nDarryl\nDave\nFred\nJose\nRon\nBob\nHenry\nJesse\nMitchell\nDoug\nEddie\nJimmy\nMarc\nRay\nTed\nWesley\nDuane\nEugene\nClifford\nKarl\nWalter\nBarry\nBenjamin\nHarold\nKen\nLeroy\nLonnie\nAaron\nJuan\nLee\nMarvin\nHoward\nPat\nDwayne\nKyle\nWade\nWarren\nGlen\nJustin\nStanley\nTheodore\nVernon\nGene\nShane\nCarlos\nRex\nKerry\nMarty\nMelvin\nPerry\nArnold\nClark\nFranklin\nGeoffrey\nJason\nRuben\nDwight\nFrederick\nGuy\nMatt\nRoss\nDerek\nEarl\nKenny\nLeo\nLoren\nRandal\nTommy\nAlfred\nCurt\nGordon\nGregg\nJoey\nJulian\nMario\nNorman\nRudy\nEdwin\nFloyd\nGrant\nLloyd\nNick\nRob\nRobbie\nSam\nAlex\nAngelo\nBen\nBret\nClayton\nDarin\nDerrick\nFelix\nLeslie\nNathan\nRobin\nTrent\nWillie\nAlexander\nBenny\nDana\nHarry\nJerome\nMonty\nRandolph\nScot\nTeddy\nAntonio\nByron\nChad\nClifton\nClinton\nCody\nDaryl\nFrankie\nGabriel\nGarry\nHerman\nJody\nKris\nLeon\nMarcus\nMonte\nMyron\nNeil\nNicholas\nRod\nRudolph\nStuart\nChuck\nDarrel\nDominic\nErik\nJamie\nLuis\nLynn\nOrlando\nPhil\nRicardo\nSidney\nSpencer\nToby\nVance\nBernard\nCasey\nDrew\nEd\nHugh\nJimmie\nKelvin\nLane\nLeland\nMaurice\nMax\nNeal\nReuben\nRodger\nRoland\nTerrance\nTimmy\nTod\nTyler\nVince\nVirgil\nBart\nBennie\nCary\nCharlie\nClint\nDamon\nDaren\nDarwin\nJorge\nLuke\nMitch\nPete\nRamon\nRoderick\nShannon\nSheldon\nBlake\nBoyd\nCory\nDarrin\nEvan\nFrancis\nFredrick\nHarvey\nHerbert\nJess\nKirby\nLewis\nLyle\nMerle\nMiguel\nReginald\nRickey\nRocky\nSammy\nStan\nTravis\nAlfonso\nAlfredo\nAndre\nBradford\nBrandon\nCalvin\nClarence\nDane\nDelbert\nDirk\nDonny\nGarth\nIan\nIvan\nJacob\nJeffry\nJesus\nKip\nLester\nMathew\nRich\nRobby\nRory\nRyan\nShaun\nTy\nAdrian\nChester\nClaude\nClyde\nDevin\nDonnie\nErnie\nFreddie\nGalen\nJavier\nJoshua\nLaurence\nLevi\nLonny\nMarco\nMarshall\nMilton\nNathaniel\nOscar\nStacey\nStewart\nTerrence\nTyrone\nWendell\nAustin\nBenito\nBernie\nBryon\nBuddy\nCameron\nColin\nDanial\nDee\nEloy\nGarrett\nGerard\nGerry\nJaime\nJake\nJonathon\nKelley\nKeven\nKim\nLyndon\nMichel\nNed\nRafael\nRaul\nRichie\nRickie\nRuss\nRusty\nTimmothy\nWard\nZane\nMichael\nDavid\nJohn\nRobert\nJames\nMark\nRichard\nKevin\nScott\nWilliam\nJeffrey\nSteven\nDaniel\nChristopher\nBrian\nThomas\nPaul\nTimothy\nKenneth\nJoseph\nGregory\nCharles\nEric\nRonald\nPatrick\nDonald\nGary\nAnthony\nTodd\nDouglas\nMatthew\nRodney\nTroy\nMike\nStephen\nAndrew\nLarry\nSteve\nEdward\nRandy\nShawn\nFrank\nJeff\nCraig\nJerry\nKeith\nDale\nTerry\nRaymond\nJeffery\nChris\nGeorge\nDean\nDennis\nPeter\nDarren\nRoger\nRandall\nBradley\nJoe\nBryan\nAlan\nGerald\nPhillip\nDanny\nRussell\nKurt\nSean\nMartin\nTim\nTony\nJay\nJim\nRick\nBruce\nJon\nRicky\nWayne\nGreg\nDarrin\nJimmy\nKirk\nDuane\nJack\nTom\nLawrence\nPhilip\nVincent\nBrett\nJason\nJoel\nCurtis\nEugene\nJohnny\nKent\nAllen\nDan\nDarin\nLance\nRoy\nArthur\nBrent\nJonathan\nKelly\nDon\nAlbert\nLeonard\nRonnie\nShane\nBilly\nSamuel\nJesse\nCarl\nDarryl\nGilbert\nGlenn\nVictor\nAaron\nBill\nHenry\nLouis\nRon\nDarrell\nLee\nBarry\nBenjamin\nHoward\nKen\nManuel\nWalter\nBrad\nKarl\nRay\nStanley\nTracy\nWesley\nAdam\nDave\nEddie\nGlen\nJose\nMicheal\nAndy\nErik\nFred\nMitchell\nNicholas\nRalph\nTheodore\nBobby\nClifford\nFrederick\nRyan\nCarlos\nHarold\nTed\nDerek\nDoug\nErnest\nLeroy\nMarc\nNorman\nWade\nJuan\nPete\nTommy\nWarren\nAlfred\nKerry\nLonnie\nMarty\nAlex\nChad\nGordon\nKyle\nLeslie\nMax\nNathan\nNick\nRoss\nStuart\nBob\nBret\nGeoffrey\nKenny\nAlexander\nClay\nDwayne\nJamie\nJoey\nJustin\nLoren\nMarvin\nRuben\nShannon\nBen\nBernard\nClinton\nEarl\nFloyd\nFrancis\nGene\nLloyd\nMatt\nOrlando\nPat\nRobin\nAllan\nByron\nGrant\nJessie\nMelvin\nRandal\nAndre\nBennie\nCurt\nDana\nDaren\nErnie\nGuy\nMonty\nRob\nRobbie\nWillie\nAbel\nCory\nEdwin\nFelix\nFredrick\nHarry\nLeo\nMarcus\nMario\nMonte\nPerry\nRandolph\nRex\nSammy\nVernon\nAdrian\nCasey\nClarence\nGabriel\nIvan\nRicardo\nRocky\nSam\nAlvin\nArnold\nBenny\nCalvin\nClark\nClayton\nDarrel\nDaryl\nFranklin\nGregg\nIan\nJimmie\nJody\nKris\nLeon\nLouie\nNeal\nRudy\nStacy\nStewart\nTerrance\nTerrence\nToby\nBlaine\nCharlie\nDamon\nDerrick\nDonnie\nJulian\nMathew\nPhil\nRickey\nRod\nRuss\nScot\nWendell\nAlfredo\nAngelo\nBart\nBrendan\nChristian\nChuck\nClint\nClyde\nDewayne\nFrancisco\nFrankie\nGarry\nGerard\nJacob\nJerome\nJohnnie\nJorge\nJulio\nLane\nLester\nLewis\nLonny\nMarlin\nRamon\nRandell\nSheldon\nTravis\nTrent\nTy\nTyrone\nVaughn\nChester\nDwight\nEd\nEloy\nFreddie\nGino\nHugh\nJoesph\nKelvin\nLorin\nLyle\nMarshall\nMiles\nMorris\nNathaniel\nOscar\nPreston\nReuben\nRich\nRoland\nRusty\nStacey\nTerence\nVance\nVince\nWill\nAntonio\nArmando\nBradford\nBryce\nCary\nCody\nColin\nCorey\nDane\nDenny\nDino\nDirk\nEdmund\nElmer\nHerbert\nJerald\nJess\nJoshua\nKip\nKurtis\nMalcolm\nMauricio\nMickey\nMikel\nMilton\nNeil\nNoel\nOwen\nPedro\nReginald\nRobby\nRory\nRussel\nSidney\nSimon\nStephan\nTeddy\nTimmy\nTyler\nWallace\nMichael\nDavid\nJohn\nRobert\nJames\nMark\nRichard\nScott\nWilliam\nJeffrey\nBrian\nSteven\nChristopher\nPaul\nKevin\nDaniel\nThomas\nTimothy\nJoseph\nGregory\nEric\nTodd\nKenneth\nRonald\nGary\nCharles\nAnthony\nPatrick\nDonald\nDouglas\nTroy\nStephen\nMatthew\nAndrew\nSean\nEdward\nLarry\nRodney\nMike\nShawn\nRandy\nJerry\nKeith\nSteve\nAlan\nChris\nGeorge\nRaymond\nTerry\nDennis\nCraig\nFrank\nJoe\nRussell\nJeffery\nPeter\nJeff\nDean\nDanny\nBryan\nGerald\nJon\nDarren\nMartin\nRoger\nKurt\nBradley\nBruce\nRicky\nWayne\nCarl\nRandall\nBrett\nPhillip\nTony\nDale\nJay\nJim\nLawrence\nGreg\nTim\nVincent\nBrent\nJason\nKirk\nTom\nJoel\nKelly\nLee\nDuane\nDarrell\nKent\nPhilip\nRoy\nCurtis\nJonathan\nShane\nVictor\nJohnny\nDarin\nAllen\nJack\nLeonard\nAaron\nAlbert\nDan\nErik\nJimmy\nRick\nEugene\nGilbert\nArthur\nHarold\nMarc\nMicheal\nDerek\nBill\nBilly\nBobby\nBrad\nChad\nShannon\nRonnie\nTracy\nWalter\nErnest\nGlenn\nJesse\nLance\nWesley\nDarrin\nDoug\nMarvin\nRay\nTed\nBenjamin\nJose\nKyle\nLonnie\nRon\nTommy\nBob\nHenry\nManuel\nAdam\nDarryl\nDon\nLeroy\nLouis\nMatt\nMitchell\nRalph\nBarry\nDerrick\nFred\nGlen\nJustin\nKarl\nNick\nSamuel\nStanley\nTravis\nClifford\nGuy\nNathan\nTrent\nAlex\nDave\nGrant\nLeslie\nNicholas\nBret\nByron\nGene\nGregg\nNeil\nWade\nAndy\nCasey\nEddie\nMarty\nMax\nPete\nRyan\nVernon\nJoey\nJuan\nRandal\nWarren\nAllan\nAlvin\nArnold\nEverett\nGeoffrey\nGordon\nMelvin\nRandolph\nRex\nStuart\nTheodore\nChristian\nCory\nDwayne\nDwight\nJimmie\nLoren\nMathew\nRuben\nSam\nTy\nAlfred\nBoyd\nCarlos\nDino\nDonnie\nFrederick\nJohnnie\nMario\nPerry\nRudy\nScot\nAngelo\nBen\nBradford\nDana\nDarrel\nFranklin\nHarry\nKerry\nLloyd\nLyle\nRobin\nRoss\nTrevor\nClayton\nCurt\nEdwin\nFelix\nGabriel\nJerald\nKip\nLouie\nMarcus\nMonte\nNorman\nPat\nSammy\nTimmy\nAndre\nClark\nDamian\nDarwin\nDaryl\nDevin\nDominic\nGarry\nIvan\nJamie\nJerome\nKenny\nKim\nLeo\nRicardo\nRobbie\nRobby\nRoland\nWillie\nAbel\nAdrian\nBart\nBrandon\nCary\nCharlie\nClay\nDaren\nDion\nEarl\nErnie\nHoward\nJacob\nJan\nJesus\nJody\nJulian\nKris\nLeon\nLonny\nLuis\nNeal\nOrlando\nRickey\nRob\nRuss\nSpencer\nToby\nTyrone\nAlexander\nBennie\nBernard\nBryon\nChuck\nClaude\nClint\nColin\nConrad\nDirk\nDoyle\nEdgar\nEvan\nFloyd\nFreddy\nGalen\nHeath\nHerbert\nJake\nJessie\nJoshua\nKristopher\nMiguel\nRamon\nRocky\nRod\nRoderick\nRudolph\nShad\nStacey\nStewart\nTad\nTerrance\nTod\nVan\nVance\nVirgil\nAnton\nBenito\nBlaine\nBrendan\nCarlton\nChester\nClyde\nCorey\nDel\nDenny\nEldon\nFrancis\nFrankie\nHans\nIsaac\nJean\nJeffry\nJulius\nKen\nKendall\nKurtis\nLes\nLester\nMarcelino\nMarco\nMarshall\nMilton\nMonty\nNathaniel\nNoel\nPreston\nRegan\nRhett\nRusty\nShaun\nStacy\nTeddy\nWendell\nWill\nMichael\nDavid\nJohn\nRobert\nJames\nMark\nRichard\nScott\nChristopher\nWilliam\nBrian\nKevin\nJeffrey\nSteven\nTimothy\nDaniel\nPaul\nEric\nJoseph\nThomas\nTodd\nRonald\nGregory\nKenneth\nAnthony\nCharles\nPatrick\nTroy\nDonald\nMatthew\nGary\nStephen\nDouglas\nAndrew\nLarry\nShawn\nEdward\nSean\nRandy\nKeith\nMike\nRodney\nFrank\nGeorge\nJerry\nBradley\nBryan\nDennis\nBrett\nTerry\nCraig\nSteve\nRaymond\nChris\nJoe\nJeffery\nJason\nAlan\nJeff\nRicky\nJay\nRoger\nRussell\nDean\nKelly\nPeter\nChad\nKurt\nDarren\nKirk\nJon\nRandall\nDanny\nGerald\nMartin\nPhillip\nVincent\nDale\nGreg\nTony\nLawrence\nWayne\nCarl\nBrent\nDerek\nShane\nBruce\nJoel\nJonathan\nLance\nTim\nJohnny\nKent\nTom\nRay\nRonnie\nAdam\nErik\nAaron\nCurtis\nJack\nLee\nLouis\nMarc\nTracy\nBenjamin\nAllen\nDarrell\nJimmy\nSamuel\nHarold\nPhilip\nAlbert\nArthur\nBret\nMarvin\nMicheal\nDan\nJim\nJose\nBarry\nBilly\nBrad\nDuane\nHenry\nRick\nDarin\nErnest\nRalph\nWalter\nBill\nNicholas\nRoy\nGlenn\nJesse\nVictor\nFred\nGilbert\nGlen\nNorman\nEugene\nJuan\nKyle\nLonnie\nRon\nWade\nAlex\nCasey\nJerome\nJustin\nStacy\nBobby\nLeonard\nManuel\nNick\nRyan\nSam\nStanley\nTravis\nNathan\nTheodore\nTommy\nClifford\nFrederick\nClint\nDarrin\nDarryl\nDon\nMario\nMatt\nRoss\nRudy\nDwight\nMitchell\nTerrance\nKen\nLeo\nLloyd\nMarcus\nPete\nAndy\nBrandon\nChristian\nGrant\nHarry\nShannon\nTrevor\nTyler\nAlexander\nClay\nDwayne\nEddie\nEdwin\nHoward\nKarl\nKerry\nLeroy\nLoren\nMax\nShaun\nTrent\nVernon\nBart\nDave\nEarl\nFrankie\nGene\nGregg\nGuy\nLewis\nLuis\nMelvin\nNoel\nRandal\nRuben\nToby\nAdrian\nAlfred\nAngelo\nByron\nCalvin\nClarence\nDoug\nFelix\nGabriel\nGeoffrey\nHeath\nJoey\nJohnnie\nMarty\nMathew\nMiguel\nStuart\nBernard\nCary\nClinton\nCorey\nCory\nDamon\nJimmie\nJoshua\nKenny\nRobbie\nWesley\nAlvin\nAntonio\nArmando\nBen\nCarlos\nClayton\nForrest\nFrancis\nGordon\nIan\nJody\nJulian\nMonte\nNeil\nPat\nRandolph\nRex\nRoland\nTed\nTerrence\nVirgil\nWarren\nAllan\nBert\nClyde\nFloyd\nGalen\nGerry\nJacob\nJeffry\nJesus\nLester\nMaurice\nNeal\nRoderick\nScot\nTyrone\nVince\nAndre\nArnold\nBenny\nClark\nConrad\nCurt\nDana\nDerrick\nEvan\nEverett\nFreddie\nIvan\nJamie\nJared\nJeremy\nJessie\nKris\nMonty\nRamon\nSidney\nThad\nTracey\nTy\nWillie\nBob\nBryon\nCameron\nClaude\nCody\nDaren\nDarrel\nDaryl\nDino\nDirk\nDwane\nDylan\nHerbert\nJaime\nJerald\nKip\nLeslie\nLynn\nMiles\nPreston\nRaul\nReginald\nRob\nRobin\nRocky\nRory\nSpencer\nStewart\nTeddy\nVance\nWallace\nZachary\nAlfonso\nAlfredo\nBlake\nBradford\nCarlton\nChester\nChuck\nCliff\nDion\nDonnie\nErnie\nFernando\nFredrick\nHans\nJan\nJefferson\nJoesph\nLane\nLeon\nLouie\nLyle\nMarshall\nOliver\nPerry\nRicardo\nRickey\nRobby\nRodger\nSalvador\nShad\nSheldon\nShon\nSimon\nStacey\nStephan\nTad\nTimmy\nMichael\nDavid\nJohn\nRobert\nJames\nMark\nChristopher\nScott\nBrian\nRichard\nWilliam\nJeffrey\nKevin\nSteven\nEric\nDaniel\nTimothy\nThomas\nPaul\nJoseph\nMatthew\nTodd\nTroy\nPatrick\nAnthony\nCharles\nShawn\nKenneth\nGregory\nRonald\nAndrew\nGary\nSean\nDonald\nStephen\nEdward\nDouglas\nKeith\nLarry\nRandy\nCraig\nJason\nJerry\nBradley\nGeorge\nJeffery\nMike\nDennis\nJon\nRodney\nBrett\nShane\nPeter\nRaymond\nRussell\nBrent\nChris\nJeff\nBryan\nFrank\nCurtis\nDarren\nTerry\nChad\nJoe\nAlan\nDean\nGerald\nJonathan\nMartin\nRandall\nKelly\nDanny\nTravis\nLawrence\nJoel\nPhillip\nGilbert\nJay\nSteve\nCarl\nAaron\nRicky\nBruce\nLonnie\nTim\nTony\nDale\nWayne\nJack\nLance\nRyan\nSamuel\nVictor\nMicheal\nArthur\nRoger\nGreg\nKent\nVincent\nKirk\nPhilip\nDerek\nJustin\nBenjamin\nBrad\nLee\nShannon\nErik\nJohnny\nAlbert\nKurt\nDarin\nJimmy\nJose\nLeonard\nTracy\nGlenn\nNicholas\nAdam\nJesse\nLouis\nRick\nJim\nKyle\nAllen\nBill\nBobby\nKarl\nManuel\nDan\nDarrell\nErnest\nFred\nHarold\nRay\nRoy\nEugene\nGlen\nHenry\nRalph\nCorey\nTheodore\nTom\nBarry\nBret\nJuan\nMarc\nNathan\nBilly\nDarrin\nTrent\nChristian\nDon\nRonnie\nWalter\nWarren\nLeroy\nMario\nDuane\nKenny\nLuis\nMitchell\nDerrick\nGene\nGrant\nHoward\nLloyd\nMarvin\nNick\nNorman\nScot\nTommy\nCarlos\nCody\nCory\nEdwin\nPete\nShaun\nWade\nWesley\nAlfred\nClint\nDamon\nDirk\nEddie\nHarry\nJamie\nLyle\nRon\nAlex\nDaryl\nDevin\nDwayne\nEarl\nFrederick\nGregg\nJody\nLeon\nMatt\nMelvin\nToby\nAlexander\nAndy\nAntonio\nBrandon\nClifford\nDana\nDustin\nHeath\nIan\nJoey\nMonte\nRuben\nTy\nBart\nBen\nClinton\nGabriel\nJeremy\nOrlando\nStacey\nTed\nTimmy\nAdrian\nCasey\nClarence\nDoug\nGeoffrey\nKen\nLester\nMarty\nMathew\nMonty\nNeal\nRandolph\nRod\nStuart\nTrevor\nAngelo\nBernard\nDarryl\nDion\nGuy\nJimmie\nJulian\nLeslie\nPerry\nRex\nRicardo\nRobin\nSam\nTerrance\nThad\nAndre\nBob\nBrendan\nCary\nDominic\nFloyd\nFrancisco\nFredrick\nIvan\nJared\nJohnnie\nLouie\nPat\nRusty\nTyler\nAllan\nArnold\nCurt\nDrew\nFernando\nFreddie\nGordon\nJaime\nJake\nJesus\nKerry\nMarshall\nNoel\nRandal\nRob\nRobby\nRudy\nStanley\nTeddy\nTerrence\nVernon\nWillie\nBradford\nBryon\nCalvin\nChuck\nClay\nClayton\nColin\nDallas\nDaren\nDarrel\nDave\nErick\nEverett\nGarrett\nGarry\nHerbert\nJarrod\nKurtis\nLoren\nMarcus\nMarion\nMax\nPreston\nRaul\nReginald\nRobbie\nRocky\nRoland\nRoss\nStacy\nAlvin\nBlaine\nBlake\nByron\nClifton\nDane\nDelbert\nDonnie\nEvan\nFelix\nGerard\nHugh\nIgnacio\nJeffry\nJerod\nJerome\nJessie\nJoshua\nKirt\nLonny\nMaurice\nMorgan\nRoderick\nSidney\nSpencer\nStephan\nTad\nTomas\nTyrone\nVan\nVirgil\nAugustine\nBlair\nBuddy\nCameron\nCharlie\nClark\nDevon\nEli\nElmer\nErin\nFelipe\nFrancis\nFranklin\nHerman\nIsaac\nJacob\nKendall\nLane\nLeo\nLuke\nMiguel\nMyron\nNathaniel\nNed\nNeil\nNelson\nReid\nRobb\nRudolph\nScotty\nTaylor\nTod\nZachary\nMichael\nDavid\nRobert\nJames\nJohn\nMark\nChristopher\nScott\nRichard\nBrian\nSteven\nJeffrey\nWilliam\nEric\nDaniel\nKevin\nMatthew\nThomas\nPaul\nTimothy\nJason\nJoseph\nAnthony\nKenneth\nGregory\nTodd\nCharles\nPatrick\nTroy\nDonald\nDouglas\nSean\nShawn\nAndrew\nRonald\nStephen\nGary\nEdward\nLarry\nCraig\nChris\nKeith\nShane\nBradley\nRodney\nPeter\nFrank\nJeffery\nJerry\nBryan\nRaymond\nRussell\nDennis\nDarren\nJonathan\nTerry\nGeorge\nJoe\nBrett\nCorey\nMike\nBrent\nLance\nChad\nJeff\nTravis\nRandy\nKirk\nMarc\nSteve\nJon\nPhillip\nRoger\nDean\nAaron\nDerek\nDanny\nKelly\nAlan\nGerald\nJoel\nTony\nJack\nJustin\nMartin\nDale\nJohnny\nLawrence\nLeonard\nCarl\nErik\nJay\nSamuel\nWayne\nBruce\nDarrell\nRandall\nRyan\nAdam\nBenjamin\nJeremy\nJimmy\nKurt\nGreg\nShannon\nCurtis\nDuane\nJose\nMicheal\nPhilip\nTracy\nVincent\nRicky\nArthur\nJim\nRoy\nBrad\nGlenn\nClinton\nGilbert\nJuan\nLonnie\nBilly\nCory\nGlen\nLee\nManuel\nNicholas\nWade\nWalter\nCarlos\nEugene\nFred\nJesse\nKyle\nMitchell\nNathan\nTim\nVictor\nWesley\nAlbert\nBret\nDon\nLouis\nRalph\nTheodore\nBrandon\nDarin\nKent\nNorman\nAllen\nMatt\nRick\nShaun\nBarry\nDamon\nErnest\nHarold\nRonnie\nRudy\nTom\nDan\nJoshua\nRay\nGabriel\nTommy\nTrent\nWarren\nJody\nMarvin\nAndy\nChristian\nDarrin\nDwayne\nDwight\nEddie\nFrederick\nGeoffrey\nKarl\nStanley\nBill\nByron\nClifford\nCurt\nGene\nHoward\nLeroy\nBobby\nCasey\nDustin\nJoey\nKerry\nAdrian\nAlex\nDerrick\nHenry\nMarcus\nNeil\nRobbie\nTed\nToby\nTrevor\nDaryl\nIan\nLloyd\nMario\nMelvin\nRon\nCalvin\nDoug\nEdwin\nFranklin\nJamie\nNick\nPete\nRoss\nTyler\nAlexander\nCameron\nFelix\nGrant\nHarry\nJessie\nLuke\nRuben\nScot\nTeddy\nVance\nArnold\nHeath\nJimmie\nLuis\nMonte\nRobby\nRoland\nTy\nTyrone\nVernon\nAndre\nAntonio\nBen\nDana\nDarrel\nDave\nDevin\nDion\nDirk\nEarl\nGarrett\nGuy\nIvan\nLeo\nLeon\nLeslie\nLyle\nMathew\nNeal\nRandal\nRocky\nStacey\nStuart\nWillie\nBenny\nClark\nDonovan\nErin\nFrancis\nFrankie\nJacob\nMarty\nRicardo\nRoberto\nRusty\nStacy\nZachary\nAlfred\nAlvin\nBart\nBoyd\nBradly\nBryon\nCharlie\nClarence\nClayton\nCody\nDominic\nDrew\nEvan\nFrancisco\nGarry\nJared\nJarrod\nJulian\nKenny\nLonny\nLynn\nMaurice\nMonty\nPerry\nRex\nRob\nRory\nRudolph\nStewart\nTimmy\nVaughn\nVirgil\nAlberto\nAllan\nBob\nBrendan\nClint\nDaren\nDarryl\nErich\nErick\nGordon\nGregg\nHerbert\nJohnnie\nJosh\nKen\nLoren\nLorenzo\nLouie\nNathaniel\nNoel\nPablo\nRandolph\nRobb\nRoderick\nSeth\nShon\nStephan\nTerrence\nThad\nTomas\nAngel\nAngelo\nAntony\nBert\nBryce\nCliff\nColin\nDelbert\nDevon\nDino\nDonnie\nErnesto\nFloyd\nFredrick\nGarth\nHarvey\nHector\nKristopher\nOscar\nPhil\nQuentin\nRafael\nRamon\nRaul\nRhett\nRod\nSpencer\nTod\nAbel\nBlaine\nBlake\nBrant\nBrock\nCary\nDanial\nDominick\nDonn\nErnie\nEthan\nFreddie\nGalen\nJerald\nJerod\nJohnathan\nJonathon\nKip\nKris\nMarcos\nMargarito\nMax\nMorgan\nReid\nRodger\nRonny\nSalvador\nSam\nSidney\nStefan\nVince\nZane\nMichael\nDavid\nRobert\nJohn\nJames\nChristopher\nMark\nBrian\nJason\nRichard\nScott\nWilliam\nJeffrey\nEric\nSteven\nMatthew\nKevin\nThomas\nPaul\nTimothy\nDaniel\nJoseph\nTodd\nGregory\nAnthony\nCharles\nTroy\nAndrew\nShawn\nSean\nKenneth\nPatrick\nDouglas\nRonald\nStephen\nGary\nChad\nCraig\nEdward\nShane\nDonald\nAaron\nKeith\nJonathan\nBradley\nBrent\nLarry\nRaymond\nBryan\nPeter\nJeffery\nJeremy\nTravis\nRussell\nRodney\nJerry\nMike\nLance\nBrett\nChris\nAdam\nRandy\nTony\nBrandon\nJon\nDerek\nGeorge\nTerry\nJoel\nJustin\nPhillip\nRoger\nErik\nDarren\nDennis\nFrank\nJay\nMarc\nJeff\nJoe\nGerald\nJose\nDale\nKelly\nRicky\nCorey\nKirk\nBenjamin\nJoshua\nAlan\nDanny\nNathan\nBrad\nCarl\nClinton\nLawrence\nSteve\nMartin\nPhilip\nSamuel\nDean\nJesse\nJimmy\nJohnny\nWayne\nKyle\nMarcus\nVictor\nAllen\nVincent\nCurtis\nGlenn\nManuel\nShannon\nJuan\nMatt\nNicholas\nKent\nKurt\nAlbert\nGreg\nJack\nRandall\nRoy\nCory\nDarrell\nTim\nChristian\nDwayne\nGilbert\nJamie\nArthur\nDustin\nMicheal\nBilly\nErnest\nLouis\nTracy\nWade\nBret\nGlen\nLee\nLeonard\nAdrian\nBobby\nFrederick\nRonnie\nWalter\nBruce\nClifford\nClint\nDan\nDerrick\nDuane\nEugene\nHarold\nTheodore\nTyler\nAlexander\nJared\nKarl\nNick\nToby\nDamon\nMarvin\nRick\nTom\nCasey\nDarin\nDarrin\nEdwin\nGabriel\nJulian\nMitchell\nRalph\nRoss\nTommy\nBarry\nLonnie\nNorman\nRyan\nTrevor\nBill\nCarlos\nCody\nDominic\nGordon\nIan\nMario\nMathew\nTed\nAlex\nAntonio\nEddie\nFred\nRay\nShaun\nAndre\nAndy\nJim\nJody\nKerry\nRobin\nAlfred\nDaryl\nDon\nFrankie\nGeoffrey\nGrant\nGuy\nHeath\nHenry\nLeon\nSpencer\nStanley\nStuart\nWesley\nClayton\nDevin\nGregg\nJacob\nRon\nTerrence\nTrent\nAngelo\nGene\nIsaac\nJesus\nLuke\nMelvin\nNeil\nOrlando\nRuben\nStacy\nBen\nBradford\nClarence\nDion\nDonovan\nLeroy\nLloyd\nTy\nBrendan\nBryon\nByron\nCary\nDana\nEthan\nEvan\nGarrett\nKenny\nLoren\nPete\nRex\nTyrone\nWarren\nBernard\nBrady\nDoug\nEarl\nErich\nFabian\nFrancis\nHerbert\nJerome\nKris\nMarshall\nMax\nNeal\nRicardo\nRob\nScot\nCameron\nClark\nColin\nDamian\nDarryl\nDylan\nEli\nJessie\nJoey\nLeslie\nLewis\nLuis\nMarco\nRandal\nRandolph\nRobbie\nRudolph\nSeth\nShad\nTod\nBlake\nBryce\nCharlie\nClay\nConrad\nDwight\nFreddie\nFredrick\nHoward\nIra\nKip\nLynn\nMonte\nNoel\nPerry\nSammy\nTrenton\nZachary\nAlvin\nArchie\nArnold\nBert\nBryant\nChet\nChuck\nDanial\nDarrick\nDirk\nFelix\nFloyd\nFrancisco\nHerman\nHugh\nIvan\nJackie\nJackson\nJaime\nJarrod\nJerald\nLester\nLonny\nLyle\nMarty\nMaurice\nMiguel\nPhil\nRene\nRobby\nRusty\nSam\nThad\nAllan\nBob\nBoyd\nBrendon\nChester\nCurt\nDonnie\nDrew\nFidel\nGarry\nHarry\nJeffry\nJimmie\nJohnnie\nJorge\nKurtis\nLeo\nMarcos\nMicah\nMickey\nNickolas\nRaul\nReginald\nRodger\nRudy\nTad\nTerrance\nVernon\nVince\nWillie\nAbel\nArron\nBernie\nBlaine\nBrooks\nCalvin\nCecil\nCesar\nDane\nDarnell\nDarrel\nDenny\nEdgar\nEloy\nEnrique\nErnesto\nGino\nJamey\nJeremie\nJoesph\nJohnathan\nKen\nKristian\nLaurence\nLorenzo\nLouie\nLuther\nMason\nMorgan\nPat\nRamon\nRoberto\nRoderick\nRoland\nRoman\nRory\nSidney\nStephan\nTeddy\nTimmy\nVance\nVirgil\nWendell\nMichael\nDavid\nRobert\nJohn\nChristopher\nJames\nJason\nScott\nBrian\nWilliam\nJeffrey\nEric\nMatthew\nRichard\nMark\nSteven\nDaniel\nKevin\nPaul\nJoseph\nTimothy\nThomas\nShawn\nSean\nChad\nAnthony\nGregory\nCharles\nAaron\nAndrew\nTroy\nKenneth\nTodd\nJeremy\nPatrick\nStephen\nRyan\nRonald\nDonald\nTravis\nShane\nGary\nEdward\nDouglas\nCraig\nJustin\nJonathan\nRaymond\nBryan\nBrandon\nBradley\nDerek\nJeffery\nFrank\nKeith\nGeorge\nAdam\nJoshua\nPeter\nLarry\nJerry\nRandy\nBrett\nBrent\nRussell\nJon\nLance\nBenjamin\nChris\nJesse\nDennis\nJose\nTerry\nErik\nTony\nDale\nDustin\nNathan\nSamuel\nRodney\nShannon\nJoe\nKelly\nMarc\nRoger\nJay\nCory\nDanny\nGerald\nJoel\nKirk\nPhillip\nVincent\nClinton\nMarcus\nEugene\nCarl\nLouis\nAlexander\nMicheal\nCorey\nCurtis\nJeff\nPhilip\nRandall\nDarren\nJack\nManuel\nChristian\nKurt\nMike\nNicholas\nSteve\nGabriel\nLawrence\nWayne\nDuane\nAlan\nAlbert\nBrad\nCarlos\nDean\nJuan\nBilly\nErnest\nKyle\nDamon\nJimmy\nAntonio\nDarrell\nJohnny\nMartin\nVictor\nAdrian\nAllen\nArthur\nRonnie\nNeil\nBruce\nMatt\nRicky\nRoy\nBobby\nRick\nTheodore\nTrevor\nWesley\nBarry\nIan\nJamie\nKent\nLonnie\nMario\nTyler\nDarin\nGilbert\nLee\nTommy\nWade\nClint\nGreg\nLeonard\nLeroy\nLuke\nPete\nRay\nTim\nBret\nCody\nFred\nGeoffrey\nGlen\nGlenn\nRalph\nToby\nWalter\nAndy\nBill\nCasey\nClifford\nJacob\nJody\nTyrone\nBen\nDon\nEddie\nGrant\nHenry\nShaun\nZachary\nDwayne\nJared\nLeo\nMathew\nMax\nMonte\nNathaniel\nTom\nDana\nHarold\nKris\nMitchell\nRuben\nStanley\nTrent\nDerrick\nFrankie\nHoward\nKarl\nMiguel\nRobin\nSpencer\nStuart\nTed\nVernon\nAndre\nClayton\nDaryl\nGuy\nNick\nWarren\nAlex\nBlaine\nBrady\nCameron\nCary\nGene\nGregg\nHeath\nJerome\nJoey\nNoah\nScot\nScotty\nSeth\nTy\nAngelo\nColin\nConrad\nDan\nDevin\nDion\nJimmie\nJulian\nRamon\nRex\nRon\nRoss\nTracy\nTyson\nAlfred\nBryon\nFrederick\nJeremiah\nKenny\nKerry\nLeslie\nLloyd\nMarty\nNeal\nRoman\nRudolph\nRudy\nShad\nTomas\nAllan\nBart\nClark\nDave\nDonnie\nEli\nErick\nFrancisco\nHarry\nIvan\nJaime\nKen\nLeon\nLoren\nLyle\nMelvin\nNorman\nRicardo\nRob\nRoberto\nSammy\nTerrence\nVirgil\nWillie\nAbraham\nBryce\nDarrel\nDarrin\nDarryl\nDominic\nEarl\nFloyd\nFranklin\nGarrett\nGordon\nJeffry\nJess\nJesus\nJim\nKurtis\nLewis\nLucas\nMonty\nOscar\nPreston\nRusty\nShayne\nTad\nThad\nArchie\nBernard\nBrendan\nByron\nCalvin\nCecil\nClarence\nClaude\nClay\nClifton\nDemetrius\nDevon\nDoug\nErich\nErin\nFelix\nFernando\nForrest\nFrancis\nHector\nHerbert\nJosh\nLane\nLeif\nLincoln\nLorenzo\nLuis\nMarion\nMaurice\nMyron\nOrlando\nPedro\nRobbie\nShon\nSimon\nStacy\nAbel\nAlfredo\nAlvin\nAndres\nAustin\nCarey\nCarter\nChip\nColby\nCurt\nDamian\nDane\nDonovan\nDwight\nEvan\nGalen\nGavin\nHans\nHarvey\nHerman\nJake\nJarrod\nJavier\nJayson\nJerod\nJeromy\nJonah\nKelley\nKraig\nLevi\nMason\nMorgan\nRandal\nRickie\nRory\nSalvador\nStacey\nThaddeus\nAlfonso\nAron\nAugustine\nBenny\nBlake\nBrant\nBrendon\nChance\nDamion\nDelbert\nDewey\nDirk\nDuke\nEdwin\nEloy\nFidel\nFreddie\nGerard\nIsaac\nJamison\nJed\nJessie\nJonathon\nKristian\nLeland\nLenny\nMarco\nMarcos\nMerle\nMicah\nMiles\nMilo\nNoel\nPerry\nQuinn\nReed\nRoland\nSantiago\nSantos\nSheldon\nStefan\nStephan\nTerrance\nWilbur\nZane\nMichael\nChristopher\nDavid\nJason\nRobert\nJohn\nBrian\nJames\nMatthew\nEric\nScott\nWilliam\nJeffrey\nDaniel\nMark\nRichard\nSteven\nKevin\nJoseph\nChad\nTimothy\nAnthony\nShawn\nPaul\nThomas\nSean\nRyan\nAndrew\nCharles\nGregory\nTroy\nKenneth\nTodd\nStephen\nAaron\nPatrick\nJustin\nJeremy\nShane\nJoshua\nDonald\nBrandon\nJonathan\nTravis\nRonald\nGary\nAdam\nEdward\nDouglas\nNathan\nKeith\nBryan\nCraig\nBradley\nDerek\nDennis\nLarry\nBrett\nRaymond\nPeter\nJeffery\nJerry\nBenjamin\nGeorge\nBrent\nFrank\nJesse\nPhillip\nSamuel\nErik\nJay\nNicholas\nRussell\nChris\nDustin\nJose\nLance\nCarl\nJon\nDanny\nMarc\nCurtis\nRandy\nChristian\nGabriel\nTerry\nJoe\nAlan\nCarlos\nRandall\nJoel\nTony\nCorey\nDarren\nIan\nLawrence\nPhilip\nAllen\nDean\nKelly\nKyle\nGerald\nJamie\nJohnny\nManuel\nRodney\nZachary\nCory\nJared\nKirk\nShannon\nClinton\nDamon\nJimmy\nJuan\nMicheal\nRoy\nWesley\nAlbert\nBilly\nJeff\nKurt\nMike\nRoger\nWayne\nArthur\nDale\nRicky\nVincent\nJack\nJacob\nLouis\nMarcus\nMartin\nSteve\nTracy\nBobby\nWade\nCasey\nEugene\nGilbert\nHenry\nLeonard\nTheodore\nLee\nAlexander\nClint\nDerrick\nMario\nTrevor\nAdrian\nDuane\nGreg\nKent\nMathew\nGlenn\nHeath\nIsaac\nNeil\nRalph\nTrent\nVictor\nBrad\nClifford\nErnest\nFrederick\nNorman\nAndre\nFred\nKristopher\nLeroy\nRonnie\nRuben\nTyler\nWalter\nDana\nFrancisco\nHarold\nJulian\nLonnie\nLoren\nBill\nDarrell\nDominic\nKarl\nSeth\nStuart\nTom\nTy\nAlex\nAngelo\nBret\nCody\nEddie\nGeoffrey\nRick\nTommy\nWarren\nAlfred\nBarry\nClayton\nDaryl\nJonathon\nLuis\nShaun\nStanley\nTed\nToby\nColin\nDamian\nDarin\nGlen\nHoward\nJerome\nJess\nJessie\nMitchell\nNathaniel\nPreston\nRicardo\nRudy\nSpencer\nClay\nDwayne\nGrant\nJosh\nPete\nRay\nWillie\nBryce\nCameron\nDarrin\nDon\nDylan\nGene\nIsrael\nJoaquin\nJohnathan\nMiguel\nNeal\nRaul\nRobin\nBrant\nBruce\nByron\nDan\nDevin\nEarl\nEvan\nFernando\nFrancis\nGarrett\nHerbert\nJaime\nJarrod\nJody\nJoey\nKenny\nLorenzo\nLuke\nMarvin\nMorgan\nRon\nTad\nTyrone\nAndy\nAntonio\nBen\nDarrel\nDave\nFrankie\nFreddie\nGordon\nHarry\nJesus\nJimmie\nKris\nLeon\nLevi\nLloyd\nMatt\nRoland\nShad\nStefan\nZachariah\nAlfredo\nAlvin\nArmando\nArnold\nBart\nBernard\nBlake\nBradly\nBrady\nClifton\nConrad\nDonovan\nEdwin\nErin\nGuy\nJake\nJeremiah\nLeslie\nMaurice\nMicah\nMiles\nOscar\nRoss\nScotty\nTracey\nVirgil\nBeau\nDallas\nDane\nDewayne\nEli\nErick\nFloyd\nFredrick\nGino\nHans\nJim\nJordan\nKerry\nLeo\nLucas\nMarty\nMax\nOrlando\nRex\nRobbie\nStacey\nStacy\nStephan\nThaddeus\nTim\nTory\nTyson\nVernon\nAbel\nAric\nArturo\nBenny\nBlaine\nBradford\nBrain\nCalvin\nCecil\nChadwick\nChester\nClarence\nColby\nDavin\nDelbert\nDion\nDonnie\nEddy\nErnesto\nFelix\nFidel\nFranklin\nGarry\nGregg\nHector\nIvan\nJeramy\nJerrod\nKory\nLouie\nMickey\nMonty\nPerry\nRene\nSammy\nSergio\nSheldon\nSimon\nTerrance\nTerrence\nTheron\nTino\nAbraham\nAlberto\nAlejandro\nAngel\nAustin\nBennie\nBranden\nBrice\nBrooks\nCarey\nClark\nCole\nCurt\nDamion\nDaren\nDarryl\nDarwin\nDrew\nDwight\nEarnest\nEmiliano\nEthan\nFelipe\nGarret\nGarrick\nGerardo\nHarvey\nJamison\nJerald\nJoesph\nJohnnie\nKai\nKendall\nKristian\nLamont\nLewis\nLon\nLyle\nMarco\nMelvin\nNick\nNicolas\nNoah\nOmar\nPedro\nPhil\nRamon\nRandal\nRandolph\nRob\nRoberto\nTaylor\nTimmy\nZane\nMichael\nJason\nChristopher\nDavid\nBrian\nJohn\nRobert\nJames\nMatthew\nDaniel\nEric\nWilliam\nJeffrey\nMark\nRichard\nScott\nKevin\nJoseph\nSteven\nJeremy\nThomas\nRyan\nChad\nJoshua\nPaul\nJustin\nTimothy\nAaron\nShawn\nAnthony\nAndrew\nCharles\nGregory\nShane\nKenneth\nSean\nTravis\nTodd\nNathan\nJonathan\nAdam\nStephen\nTroy\nPatrick\nBrandon\nBryan\nDouglas\nDonald\nBrett\nBenjamin\nEdward\nJesse\nRonald\nDerek\nCraig\nKeith\nPeter\nGeorge\nJose\nBrent\nErik\nFrank\nGary\nBradley\nLarry\nGabriel\nJoel\nSamuel\nRaymond\nClinton\nNicholas\nPhillip\nRussell\nMarc\nJeffery\nJuan\nDennis\nJacob\nJerry\nRoger\nRodney\nJamie\nDanny\nManuel\nMike\nChris\nJoe\nPhilip\nAlan\nKelly\nArthur\nDustin\nJared\nRandy\nCarlos\nCory\nDale\nJon\nKyle\nLance\nLee\nShannon\nChristian\nLawrence\nTerry\nWayne\nZachary\nBobby\nTony\nKirk\nMarcus\nMicheal\nAlexander\nJay\nNeil\nVictor\nCasey\nDarren\nEugene\nJohnny\nMartin\nCarl\nCody\nCurtis\nIan\nJeff\nLouis\nMathew\nRoy\nBilly\nGerald\nMario\nTheodore\nTyler\nWesley\nAdrian\nHarold\nIsaac\nJeremiah\nBrad\nDamon\nJimmy\nRandall\nVincent\nDuane\nNathaniel\nSeth\nAntonio\nDarrell\nDerrick\nRalph\nWalter\nDarin\nDean\nEddie\nFrancisco\nGeoffrey\nJesus\nRay\nRicky\nSteve\nAlbert\nAllen\nClint\nDevin\nEdwin\nErnest\nHenry\nJoey\nLeonard\nRonnie\nWade\nClayton\nGilbert\nGlenn\nJack\nKarl\nKurt\nRicardo\nTommy\nTrevor\nBruce\nGlen\nHeath\nLuke\nMiguel\nStanley\nCorey\nJosh\nSpencer\nToby\nColin\nDamian\nDana\nFrederick\nJonathon\nLeon\nMicah\nRick\nRuben\nTracy\nAndre\nAndy\nEthan\nFred\nKent\nLonnie\nPreston\nRudy\nCameron\nFloyd\nGreg\nLeroy\nLeslie\nStuart\nBen\nClifford\nDon\nGrant\nJake\nJerome\nJessie\nKenny\nKristopher\nSam\nBernard\nBrady\nEvan\nGuy\nHoward\nLuis\nMatt\nMitchell\nMonte\nNick\nRamon\nShaun\nTrent\nAlejandro\nAlex\nBret\nCalvin\nDion\nEarl\nGene\nJim\nLloyd\nLoren\nLynn\nNorman\nRoberto\nTy\nTyson\nWillie\nZachariah\nAlfonso\nAlfred\nBradford\nByron\nDan\nDaryl\nDominic\nFranklin\nHans\nJaime\nJess\nJoaquin\nNeal\nRaul\nRex\nRocky\nShad\nAllan\nBrenton\nBryon\nDallas\nDarrin\nDwayne\nErick\nGuadalupe\nJody\nLeo\nMarcos\nMarvin\nMelvin\nRoman\nRoss\nScotty\nSonny\nTyrone\nWarren\nAngelo\nBill\nBryce\nChadwick\nCharlie\nDarrel\nDesmond\nDylan\nErin\nEverett\nGordon\nGregg\nJavier\nJayson\nJerald\nJoesph\nKory\nLevi\nLewis\nLouie\nLucas\nLyle\nMarty\nMax\nMonty\nPete\nRandal\nReginald\nRobin\nScot\nSimon\nTobias\nAlfredo\nBradly\nBrendan\nChance\nChase\nClarence\nClay\nColby\nConrad\nDarryl\nDax\nDominick\nErich\nFelix\nFredrick\nGalen\nGarrett\nGraham\nIsrael\nIvan\nJarrod\nJermaine\nJohnathan\nJulian\nKris\nKristian\nLonny\nLorenzo\nMason\nMaurice\nMorgan\nMoses\nOliver\nPat\nPedro\nRhett\nRoland\nRusty\nStacy\nTerrance\nTim\nTom\nVance\nAbraham\nAron\nArturo\nBarry\nBranden\nCaleb\nCedric\nChuck\nClyde\nDamien\nDevon\nDonovan\nDwight\nEdgar\nFernando\nFreddie\nGarth\nHector\nJasen\nJed\nJefferson\nJorge\nKerry\nKim\nMickey\nNicolas\nNoel\nOrlando\nPerry\nQuinn\nRobbie\nRory\nSantiago\nTad\nTeddy\nTerrence\nThad\nVernon\nMichael\nJason\nChristopher\nDavid\nRobert\nBrian\nJames\nJohn\nMatthew\nDaniel\nEric\nMark\nJoshua\nJeffrey\nRyan\nJeremy\nScott\nWilliam\nJoseph\nRichard\nAaron\nSteven\nAnthony\nJustin\nTimothy\nKevin\nPaul\nAndrew\nThomas\nShawn\nChad\nNathan\nSean\nCharles\nAdam\nShane\nTravis\nGregory\nJonathan\nStephen\nBenjamin\nTroy\nKenneth\nPatrick\nBrandon\nDonald\nTodd\nBryan\nJesse\nEdward\nRonald\nGary\nJacob\nDouglas\nBradley\nPeter\nFrank\nGabriel\nGeorge\nJeffery\nRaymond\nJerry\nErik\nSamuel\nJose\nKeith\nCraig\nBrent\nDerek\nJoel\nLarry\nPhillip\nDustin\nJeremiah\nZachary\nJay\nDennis\nMarc\nNicholas\nRussell\nBrett\nJon\nJuan\nCarlos\nMario\nIan\nMarcus\nTerry\nKyle\nRandy\nRodney\nTyler\nCurtis\nKelly\nTony\nCasey\nJared\nBilly\nMicheal\nRoger\nAdrian\nDarren\nDevin\nJoe\nLance\nVincent\nChris\nCorey\nCory\nGerald\nJack\nRoy\nDamon\nNathaniel\nCody\nJamie\nPhilip\nDale\nDanny\nMartin\nAntonio\nCarl\nLee\nBruce\nChristian\nLucas\nManuel\nShannon\nToby\nWayne\nAlexander\nBobby\nBrad\nRandall\nKirk\nLawrence\nMathew\nRicky\nVictor\nArthur\nAlan\nClinton\nJesus\nLeonard\nTommy\nWade\nWalter\nDarrell\nEugene\nKristopher\nKurt\nLuke\nMiguel\nNeil\nSeth\nTracy\nDerrick\nErnest\nGreg\nJohnny\nSteve\nAllen\nClayton\nFrancisco\nLuis\nMax\nAlbert\nBen\nBret\nGeoffrey\nIsaac\nLouis\nClifford\nDarin\nJeff\nJerome\nMike\nRuben\nTheodore\nAlex\nClint\nDamian\nDominic\nDuane\nDylan\nFred\nHarold\nHeath\nMarvin\nShaun\nBill\nGilbert\nHenry\nJohnathan\nJulian\nKent\nRonnie\nTy\nGlenn\nGrant\nJake\nKarl\nLeroy\nLevi\nLorenzo\nNick\nRicardo\nEddie\nJimmy\nKris\nMicah\nMitchell\nOrlando\nRick\nStanley\nZachariah\nAndy\nBarry\nDean\nEli\nEthan\nJaime\nLonnie\nPreston\nSpencer\nTrent\nTrevor\nTyson\nAbraham\nAndre\nAngelo\nCaleb\nDamien\nDana\nDwayne\nEdwin\nGlen\nJody\nMelvin\nNoah\nRudy\nTyrone\nWesley\nBryce\nColby\nEvan\nGarrett\nJeffry\nJess\nJosh\nLeon\nLyle\nRaul\nAlejandro\nAlfred\nAndres\nBrady\nDarrin\nDominick\nDrew\nErick\nFelix\nFrederick\nJonathon\nMarco\nNeal\nNorman\nPete\nRafael\nRalph\nRoberto\nTim\nTom\nAlvin\nBeau\nBrendan\nCharlie\nColin\nConrad\nDevon\nErin\nFrankie\nFredrick\nGordon\nGuy\nHector\nHoward\nJarrod\nJimmie\nJoey\nNoel\nOscar\nRay\nRobbie\nRoss\nShad\nTed\nArmando\nBenny\nBlaine\nBradford\nByron\nCameron\nClay\nCole\nDamion\nDaryl\nDion\nDon\nFrancis\nGarth\nGene\nJayson\nJefferson\nJoaquin\nLeslie\nLynn\nPedro\nRusty\nScotty\nStacy\nStewart\nStuart\nAmos\nAngel\nBlake\nBryon\nCalvin\nClarence\nDan\nDoug\nEduardo\nElias\nEmilio\nEnrique\nErich\nFloyd\nForrest\nFranklin\nGuillermo\nJavier\nJermaine\nJim\nJorge\nKristofer\nLane\nLeo\nLewis\nLloyd\nLoren\nMarcos\nMatt\nMonte\nMorgan\nMoses\nReuben\nRickey\nRory\nSalvador\nShelby\nShon\nSonny\nStefan\nThad\nTomas\nVernon\nWarren\nAndreas\nAric\nArnold\nBrennan\nCoby\nDesmond\nDiego\nDomonic\nDonny\nEldon\nElijah\nEmory\nFernando\nGarry\nGregg\nHans\nHarry\nIra\nIsrael\nIvan\nJeromy\nJohnathon\nJordan\nKip\nKristin\nKurtis\nLeif\nMason\nMonty\nNicky\nPerry\nRamon\nRene\nRocky\nRoman\nSaul\nSergio\nShayne\nSheldon\nStephan\nTimmy\nTobias\nWalker\nWill\nWillie\nMichael\nJason\nChristopher\nDavid\nMatthew\nJames\nRobert\nJohn\nBrian\nDaniel\nJoshua\nEric\nJeremy\nJoseph\nJeffrey\nScott\nRyan\nWilliam\nJustin\nAnthony\nRichard\nAndrew\nAaron\nMark\nSteven\nChad\nTimothy\nNathan\nKevin\nThomas\nShawn\nPaul\nAdam\nJonathan\nCharles\nBenjamin\nTravis\nSean\nBrandon\nShane\nGregory\nPatrick\nStephen\nJesse\nKenneth\nBryan\nJacob\nTodd\nBradley\nDonald\nRonald\nDouglas\nEdward\nCraig\nTroy\nBrett\nDustin\nPeter\nGary\nJeremiah\nJose\nKeith\nDerek\nSamuel\nJared\nRaymond\nGabriel\nNicholas\nCarlos\nDennis\nJoel\nJuan\nBrent\nGeorge\nFrank\nZachary\nJamie\nJerry\nSeth\nErik\nRussell\nLance\nLarry\nCory\nJeffery\nPhillip\nJon\nKyle\nRandy\nCasey\nJay\nClinton\nJoe\nTerry\nMicheal\nShannon\nTyler\nCody\nDamon\nMarc\nChristian\nIsaac\nMarcus\nNathaniel\nRodney\nDanny\nVictor\nAlan\nIan\nAlexander\nCameron\nPhilip\nTony\nWade\nLucas\nMario\nRoger\nTrevor\nCorey\nLawrence\nMartin\nBilly\nChris\nDominic\nEugene\nKristopher\nKurt\nSteve\nBrad\nClayton\nDale\nLee\nMathew\nToby\nAdrian\nAntonio\nArthur\nJohnny\nKirk\nNeil\nVincent\nDarren\nFrancisco\nKarl\nKelly\nLuke\nManuel\nColin\nDarrell\nDevin\nGerald\nHeath\nJarrod\nWayne\nClint\nErnest\nGilbert\nJesus\nRandall\nRoy\nAllen\nDuane\nGrant\nCurtis\nJack\nLeonard\nNoah\nSpencer\nTheodore\nTyson\nBobby\nBruce\nGeoffrey\nJeff\nLuis\nMicah\nAlbert\nCarl\nHenry\nJerome\nJulian\nRonnie\nWesley\nAndy\nAngelo\nWalter\nAlex\nFrederick\nGreg\nJimmy\nLeroy\nRalph\nTommy\nAlfred\nDean\nDwayne\nEthan\nAlfonso\nDamian\nJavier\nJoey\nKent\nLevi\nMax\nRicardo\nRicky\nRuben\nStanley\nStuart\nTracy\nBarry\nBen\nBret\nClifford\nGlenn\nJaime\nMelvin\nOrlando\nRamon\nAndre\nCaleb\nCalvin\nDon\nDrew\nEddie\nFrankie\nGlen\nHarold\nJohnathan\nNick\nZachariah\nAbraham\nAlejandro\nAlvin\nArmando\nBlake\nByron\nColby\nDana\nDarin\nDerrick\nDevon\nEvan\nFloyd\nFredrick\nGordon\nJess\nJoaquin\nLeon\nLeslie\nLonnie\nLorenzo\nMatt\nMike\nMitchell\nTy\nTyrone\nDarrin\nDion\nDylan\nIvan\nLoren\nLouis\nMarty\nMiguel\nMoses\nNeal\nNorman\nRobin\nTobias\nWarren\nAndres\nBernard\nBradford\nBryon\nCesar\nCollin\nDaryl\nFred\nJake\nJarod\nJordan\nKory\nRafael\nSonny\nTed\nTerrence\nTrent\nAllan\nBrendan\nChadwick\nClay\nDominick\nEli\nErick\nErin\nErnesto\nFelipe\nFernando\nFranklin\nGarrett\nGene\nLandon\nLeo\nLloyd\nMarvin\nPablo\nPreston\nRaul\nRudy\nShayne\nZane\nAron\nBob\nBrady\nBrice\nBrock\nCharlie\nClarence\nClark\nCurt\nDanial\nHector\nHerbert\nIsrael\nJeffry\nJoesph\nJonathon\nKenny\nMarco\nMaurice\nMorgan\nPete\nRay\nRick\nRoman\nSimon\nVance\nWillie\nAngel\nAric\nBryant\nChester\nDamion\nDan\nDax\nEdwin\nEmilio\nFabian\nForrest\nGuy\nHarry\nJamison\nJayson\nJennifer\nJeramie\nJeremie\nJermaine\nJessie\nJim\nJody\nJohnnie\nJosh\nKris\nLane\nMarcos\nNoel\nOscar\nPedro\nRene\nRex\nRoland\nRoyce\nSalvador\nSammy\nSheldon\nStacey\nStefan\nTim\nTomas\nWill\nAbel\nAlfredo\nBeau\nBrant\nCarey\nCarson\nCarter\nCary\nConrad\nEarl\nElias\nElliot\nElmer\nEnrique\nFelix\nGarth\nJed\nJerod\nKraig\nKristofer\nLars\nLeland\nLonny\nMikel\nNelson\nOctavio\nOrion\nPerry\nRiley\nRocky\nRoss\nSantiago\nShaun\nStacy\nTaylor\nTheron\nTory\nTucker\nVernon\nWyatt\nMichael\nJason\nChristopher\nMatthew\nDavid\nBrian\nJames\nRobert\nJohn\nJeremy\nDaniel\nJoshua\nRyan\nEric\nJoseph\nJustin\nJeffrey\nAaron\nWilliam\nAnthony\nMark\nScott\nNathan\nAndrew\nSteven\nTimothy\nShawn\nThomas\nKevin\nChad\nRichard\nAdam\nBenjamin\nPaul\nCharles\nBrandon\nJonathan\nTravis\nJesse\nJacob\nSean\nShane\nJeremiah\nGregory\nPatrick\nBradley\nBryan\nStephen\nJared\nZachary\nKenneth\nTodd\nDonald\nDouglas\nTroy\nGary\nDustin\nGabriel\nRonald\nRaymond\nSamuel\nNicholas\nDerek\nJose\nKeith\nPeter\nJoel\nTyler\nFrank\nPhillip\nCasey\nCorey\nEdward\nLarry\nJerry\nRandy\nIan\nJeffery\nCraig\nJuan\nCory\nSeth\nBrett\nBrent\nCarlos\nClinton\nNathaniel\nErik\nGeorge\nJon\nRussell\nDennis\nManuel\nMarc\nPhilip\nHeath\nJamie\nJay\nLance\nLee\nRodney\nShannon\nJoe\nKyle\nLucas\nAdrian\nAlexander\nMartin\nVictor\nAntonio\nCarl\nMarcus\nGerald\nDamon\nDanny\nEugene\nJack\nCurtis\nMario\nVincent\nJesus\nKristopher\nTerry\nCody\nChristian\nHenry\nJohnny\nKelly\nKirk\nMathew\nMicheal\nRicky\nTony\nWade\nWesley\nArthur\nBilly\nLawrence\nDarren\nLuke\nNeil\nAlan\nAlbert\nJerome\nTheodore\nAllen\nCameron\nGrant\nJoey\nDamian\nFrancisco\nLouis\nToby\nWayne\nBen\nBrad\nChris\nClayton\nJessie\nKurt\nLevi\nLuis\nMiguel\nRandall\nBobby\nIsaac\nRoy\nZachariah\nAlex\nClifford\nDale\nDerrick\nErnest\nGilbert\nJorge\nJulian\nMike\nMitchell\nDominic\nGeoffrey\nJarrod\nLeonard\nNorman\nRaul\nRicardo\nTommy\nAndre\nAngelo\nDarrell\nEvan\nJaime\nMicah\nNoah\nSpencer\nTracy\nTyson\nAbraham\nArmando\nBret\nCaleb\nDuane\nEdwin\nFred\nLonnie\nRoger\nRonnie\nSteve\nTrevor\nWalter\nBruce\nBryce\nDwayne\nErick\nFrederick\nJake\nJimmy\nJody\nKarl\nLeon\nNick\nRay\nStanley\nBlake\nBrendan\nColin\nGlenn\nHarold\nIvan\nJeff\nLeroy\nRoberto\nAustin\nBarry\nColby\nDean\nDevin\nEthan\nGreg\nMason\nNeal\nRamon\nRuben\nShaun\nTobias\nTy\nAlfred\nAlfredo\nBernard\nClint\nDamion\nGlen\nJim\nJordan\nKent\nLeo\nMarco\nMarcos\nMarshall\nOscar\nPablo\nQuincy\nRocky\nTerrance\nTrent\nAlejandro\nAshley\nBrady\nBrock\nCalvin\nDylan\nErin\nFelix\nFrancis\nGarrett\nJoaquin\nJohnathan\nRick\nRoss\nSimon\nTyrone\nVicente\nWarren\nAbel\nBeau\nDallas\nDarin\nDaryl\nDonnie\nDonny\nDonovan\nFernando\nJamey\nJarod\nJess\nKurtis\nLloyd\nMelvin\nNicolas\nQuentin\nRobin\nTorrey\nAlvin\nBill\nCharlie\nClay\nDrew\nDwight\nFelipe\nForrest\nFrankie\nGalen\nGordon\nGuadalupe\nHarry\nHarvey\nHoward\nIsaiah\nJasen\nJavier\nJayson\nJed\nJeramie\nJeremie\nJeromy\nJerrod\nJimmie\nLenny\nLoren\nMarvin\nOrlando\nRex\nRogelio\nRoland\nRory\nRudy\nRusty\nScot\nShad\nThaddeus\nAlfonso\nBradford\nByron\nCecil\nChadwick\nConrad\nCurt\nDana\nDarrin\nEarl\nEnrique\nEverett\nFabian\nFloyd\nFranklin\nHector\nIra\nJeramy\nJered\nJonah\nJonathon\nJosef\nKris\nLorenzo\nMarty\nMatt\nMiles\nMonte\nNickolas\nPreston\nRalph\nRudolph\nSantiago\nShelby\nSheldon\nStuart\nTad\nTomas\nVernon\nZachery\nZane\nAlonzo\nAndres\nAndy\nAric\nAron\nBart\nBjorn\nBranden\nBrendon\nBrice\nCary\nCesar\nChester\nClarence\nClark\nCollin\nDamien\nDane\nDarryl\nDemetrius\nEddie\nEzra\nFreddie\nGarry\nGene\nGraham\nGregg\nGregorio\nHugh\nJarred\nJermaine\nJerod\nJohnnie\nJulio\nKenny\nKody\nKory\nLeland\nLouie\nMarkus\nMikel\nMilton\nNathanael\nNoel\nOliver\nReginald\nReuben\nRickey\nRico\nRoman\nRueben\nSam\nSaul\nSherman\nTerrence\nTrenton\nMichael\nJason\nChristopher\nDavid\nMatthew\nJoshua\nBrian\nJames\nRyan\nRobert\nJohn\nDaniel\nJeremy\nJoseph\nEric\nJustin\nJeffrey\nAndrew\nKevin\nTimothy\nNathan\nAaron\nBenjamin\nMark\nRichard\nWilliam\nSteven\nThomas\nScott\nAnthony\nAdam\nPaul\nChad\nTravis\nJonathan\nJacob\nCharles\nJeremiah\nShawn\nBrandon\nJesse\nSean\nPatrick\nZachary\nKenneth\nBryan\nNicholas\nShane\nGregory\nJared\nTodd\nDonald\nDouglas\nStephen\nGabriel\nDustin\nBradley\nJose\nKeith\nTroy\nEdward\nPeter\nSamuel\nKyle\nPhillip\nGary\nJoel\nCory\nRonald\nRaymond\nSeth\nCasey\nCorey\nLarry\nCraig\nNathaniel\nErik\nFrank\nBrent\nIan\nJuan\nCody\nDerek\nAdrian\nBrett\nPhilip\nGeorge\nDennis\nRussell\nDominic\nLuke\nJeffery\nMarcus\nRandy\nMario\nTerry\nWesley\nCurtis\nAlexander\nMartin\nVictor\nJay\nJon\nTyler\nDamon\nJerry\nLouis\nMarc\nCarl\nCarlos\nJohnny\nKristopher\nBrad\nClinton\nEugene\nFrancisco\nJesus\nJoe\nVincent\nGerald\nLance\nMicheal\nEvan\nTony\nDanny\nIsaac\nManuel\nChris\nHenry\nJimmy\nKelly\nLawrence\nAlbert\nColin\nLee\nLucas\nRodney\nRoy\nWade\nAndre\nChristian\nClint\nJulian\nLevi\nShaun\nArthur\nBilly\nJack\nMitchell\nTrevor\nAntonio\nCaleb\nDarren\nDerrick\nJonathon\nKurt\nMathew\nMicah\nAlan\nAlex\nAustin\nCameron\nDale\nJamie\nNeil\nRoger\nTyson\nDean\nHeath\nJessie\nMiguel\nRicky\nRoberto\nSpencer\nTheodore\nBobby\nDevin\nHarold\nKarl\nLeroy\nRandall\nWayne\nArmando\nBen\nClayton\nGrant\nLeonard\nZachariah\nKirk\nWalter\nAngelo\nClifford\nDamian\nDarrell\nEli\nErnest\nEthan\nGeoffrey\nGlenn\nJoey\nNoah\nRoss\nAndy\nBeau\nDarin\nJaime\nJarrod\nRalph\nTommy\nAndres\nBryce\nGilbert\nGlen\nJerome\nJohnathan\nLonnie\nLoren\nRuben\nSteve\nAbraham\nAllen\nDamien\nDon\nDylan\nFrederick\nGreg\nJordan\nLeon\nLuis\nOscar\nRay\nRocky\nRory\nAlfred\nAric\nBlake\nEarl\nElijah\nGarrett\nJayson\nJody\nLloyd\nMike\nMorgan\nNick\nShannon\nStanley\nStuart\nTrent\nBarry\nBrock\nDaryl\nDominick\nEddie\nJake\nLeland\nNorman\nRonnie\nTy\nTyrone\nAlfonso\nAlonzo\nAngel\nBruce\nByron\nCalvin\nDana\nDevon\nDuane\nErin\nFloyd\nJerrod\nJorge\nKenny\nMarcos\nOmar\nPedro\nPreston\nQuentin\nRamon\nRaul\nRicardo\nSolomon\nTobias\nAlvin\nBrendan\nBret\nElias\nEzra\nFelix\nForrest\nFred\nIsaiah\nIvan\nJarod\nJohnnie\nKory\nKristian\nLyle\nMarco\nMax\nNeal\nNicolas\nOrion\nOrlando\nPete\nRick\nSantiago\nTed\nVernon\nAlfredo\nArron\nBrady\nBranden\nChadwick\nChance\nDamion\nErick\nFrankie\nFranklin\nGene\nJavier\nJeff\nJosh\nKent\nLeslie\nMarshall\nMarvin\nQuincy\nRafael\nRudy\nTerrence\nToby\nWill\nAllan\nAshley\nBenito\nBryon\nClay\nDarnell\nDarrin\nDarryl\nDave\nDonovan\nEduardo\nEverett\nFabian\nFernando\nFrancis\nGerardo\nGuy\nHarry\nHoward\nJamin\nJarred\nJeffry\nJeramiah\nJimmie\nKris\nLeo\nLeonardo\nLorenzo\nLouie\nMarty\nMason\nMyron\nNathanael\nNathanial\nOwen\nRamiro\nReginald\nRon\nShad\nTad\nTaylor\nTerence\nTerrance\nTom\nTomas\nWarren\nWillie\nAbel\nAlberto\nAlejandro\nAmos\nBenjamen\nBill\nBuck\nChase\nClark\nClifton\nCourtney\nDallas\nDan\nDaren\nDarrel\nDonnie\nDorian\nDrew\nDwayne\nEdgar\nElmer\nErich\nForest\nFredrick\nGavin\nGordon\nGraham\nHank\nHector\nIsrael\nJed\nJefferey\nJerad\nJerald\nJermaine\nJess\nJoaquin\nJoesph\nJonas\nJulio\nKerry\nLiam\nLogan\nMelvin\nMoises\nOliver\nPablo\nRico\nRogelio\nRoland\nRoman\nSalvador\nSaul\nSergio\nStewart\nTim\nTracy\nTrenton\nUriah\nVance\nVicente\nMichael\nJason\nChristopher\nDavid\nMatthew\nJames\nJoshua\nJohn\nRyan\nBrian\nRobert\nDaniel\nJoseph\nJeremy\nJustin\nWilliam\nEric\nAndrew\nNicholas\nTimothy\nJeffrey\nAdam\nAaron\nKevin\nRichard\nMark\nAnthony\nSteven\nThomas\nNathan\nBenjamin\nScott\nChad\nBrandon\nCharles\nJonathan\nPaul\nTravis\nPatrick\nJacob\nSean\nJesse\nShawn\nStephen\nGregory\nJeremiah\nShane\nBryan\nDustin\nBradley\nKenneth\nShaun\nZachary\nTodd\nSamuel\nGabriel\nJoel\nTyler\nJose\nDonald\nDouglas\nCraig\nGary\nCody\nCasey\nEdward\nJared\nLuke\nPhillip\nRonald\nPeter\nNathaniel\nCorey\nKeith\nKyle\nRaymond\nTroy\nLucas\nDerek\nErik\nBrent\nClinton\nSeth\nCarlos\nCory\nJon\nJuan\nDominic\nCarl\nAlexander\nGeorge\nJerry\nKristopher\nBrett\nJeffery\nFrank\nLarry\nWesley\nMarcus\nRandy\nRussell\nIan\nMario\nDennis\nAntonio\nJay\nChristian\nCurtis\nIsaac\nManuel\nPhilip\nMartin\nArthur\nJoe\nTerry\nAlan\nAllen\nMarc\nCaleb\nChris\nDale\nNeil\nVictor\nVincent\nAdrian\nWayne\nFrancisco\nLee\nLuis\nMathew\nGeoffrey\nJarrod\nLawrence\nMicheal\nTheodore\nCameron\nLance\nMiguel\nRicardo\nAlbert\nBobby\nClayton\nJamie\nKelly\nBrad\nHenry\nJordan\nRoger\nRoy\nTony\nTrevor\nWalter\nDamon\nDevin\nDylan\nGerald\nGrant\nHeath\nJesus\nKurt\nLouis\nNicolas\nRandall\nColin\nDanny\nDarren\nDerrick\nErnest\nLeonard\nRodney\nToby\nTyson\nJohnny\nLevi\nRay\nEthan\nGarrett\nJimmy\nMicah\nPreston\nRalph\nRicky\nRoss\nAustin\nBruce\nEvan\nRamon\nSteve\nArmando\nBilly\nDuane\nEugene\nJaime\nLeon\nRuben\nZachariah\nBarry\nClint\nDamian\nDarrell\nEli\nJack\nKent\nLogan\nDrew\nFernando\nJeff\nJessie\nJulian\nLeroy\nMitchell\nRaul\nAlfredo\nBen\nDean\nEddie\nErick\nHarold\nJerome\nMorgan\nRocky\nRudy\nTommy\nTrenton\nTy\nWade\nBrendan\nClifton\nDamien\nJerrod\nJoey\nJonathon\nJosh\nAlex\nAngelo\nBret\nDwayne\nGilbert\nJedediah\nJoaquin\nJohnathan\nJorge\nKarl\nMike\nNorman\nRick\nTomas\nWarren\nAbraham\nAlejandro\nAndre\nBeau\nClifford\nElijah\nFelix\nFrederick\nJake\nJess\nKirk\nKristofer\nLonnie\nLyle\nMarvin\nMax\nNick\nOrlando\nAndy\nAngel\nBlake\nBrant\nBrock\nBryce\nChadwick\nCollin\nDarin\nDaryl\nEarl\nEdwin\nFred\nGene\nGlen\nJed\nMarshall\nNoah\nNoel\nOmar\nPedro\nRafael\nShannon\nSimon\nStuart\nTracy\nBenny\nBradford\nByron\nCalvin\nColby\nHans\nHarley\nHarry\nJackson\nJarrett\nJeffry\nLandon\nMaurice\nMonty\nNathanial\nNeal\nRoberto\nSergio\nSpencer\nAlfonso\nAlfred\nAllan\nAmos\nAndres\nBranden\nCole\nDamion\nDana\nEduardo\nFabian\nGordon\nGreg\nJade\nJayson\nJoesph\nKasey\nLloyd\nLoren\nMarcos\nMason\nNickolas\nPablo\nPete\nRobbie\nStanley\nStefan\nStephan\nTaylor\nTobias\nTom\nTyrone\nAdan\nBart\nBenito\nBernard\nBryon\nCharlie\nCullen\nDallas\nDane\nDanial\nDarnell\nDevon\nDonovan\nEdgar\nEnrique\nFelipe\nFranklin\nFredrick\nGino\nHoward\nIra\nJarod\nJavier\nJered\nJeromy\nKaleb\nLeland\nLeslie\nLewis\nMiles\nNathanael\nOrion\nOscar\nQuincy\nRandal\nRobin\nRoman\nRonnie\nSam\nSonny\nTerrance\nThaddeus\nTrent\nUriah\nWillie\nZachery\nAntony\nAron\nBrice\nCale\nChance\nChester\nClarence\nClark\nConnor\nConor\nCourtney\nDan\nDarrin\nDax\nDominick\nErich\nEzekiel\nEzra\nFloyd\nForrest\nFrancis\nGarth\nGlenn\nGraham\nGregg\nGuadalupe\nIsaiah\nJerald\nJeramiah\nJermaine\nJerod\nJohnathon\nJosiah\nJulius\nKenny\nKip\nKurtis\nLeif\nLeo\nLeonardo\nLionel\nMyron\nOliver\nRex\nRickey\nStewart\nTed\nTerence\nVance\nWaylon\nMichael\nChristopher\nJason\nDavid\nJoshua\nMatthew\nRyan\nJames\nJohn\nRobert\nDaniel\nBrian\nNicholas\nJoseph\nJustin\nJeremy\nAndrew\nEric\nTimothy\nWilliam\nAaron\nAdam\nNathan\nJeffrey\nAnthony\nRichard\nScott\nKevin\nSteven\nBenjamin\nJonathan\nMark\nTravis\nThomas\nPaul\nJacob\nChad\nJesse\nBrandon\nCharles\nZachary\nPatrick\nSean\nJeremiah\nStephen\nDustin\nKenneth\nShawn\nJared\nBradley\nBryan\nGregory\nGabriel\nLucas\nSamuel\nShane\nJose\nTyler\nLuke\nCasey\nKyle\nErik\nTodd\nDonald\nAlexander\nShaun\nDouglas\nKeith\nNathaniel\nEdward\nSeth\nCarlos\nBrett\nDerek\nCody\nPeter\nPhillip\nCory\nCraig\nRonald\nJoel\nIan\nLarry\nCurtis\nGary\nCorey\nJeffery\nJuan\nRaymond\nDennis\nMario\nPhilip\nBrent\nGeorge\nJerry\nMathew\nClinton\nTroy\nLevi\nMarcus\nWesley\nAdrian\nJon\nMarc\nTrevor\nManuel\nFrank\nRandy\nAlan\nBilly\nDominic\nGrant\nIsaac\nLee\nKristopher\nRussell\nDanny\nLance\nJack\nTerry\nVictor\nZachariah\nEvan\nJay\nLouis\nArthur\nCaleb\nJoe\nChristian\nTony\nVincent\nAlex\nBrad\nCameron\nClint\nGarrett\nJordan\nAlbert\nColin\nGeoffrey\nJesus\nLawrence\nMartin\nCarl\nFrancisco\nBobby\nDale\nDerrick\nDevin\nHeath\nNeil\nRamon\nRoy\nSpencer\nJamie\nMicheal\nAntonio\nClayton\nMicah\nRandall\nRoger\nStanley\nBrendan\nLuis\nBruce\nEthan\nJerome\nMiguel\nAustin\nMitchell\nAndre\nEugene\nGerald\nJimmy\nKelly\nKurt\nNoah\nRoss\nShannon\nTyson\nAllen\nDarren\nDylan\nJarrod\nRicky\nClifford\nDamon\nDrew\nJohnny\nKirk\nNicolas\nRicardo\nToby\nWalter\nWayne\nAndres\nChris\nErnest\nJake\nLeonard\nMaurice\nPreston\nRoberto\nRodney\nSimon\nSteve\nTheodore\nArmando\nBeau\nEddie\nFrederick\nJoey\nJonathon\nRuben\nTommy\nWade\nAlfonso\nAndy\nBrady\nDarin\nJaime\nLeon\nOmar\nRay\nSalvador\nTanner\nTed\nDarrell\nGene\nGilbert\nJessie\nJonah\nRobin\nRocky\nCourtney\nDallas\nDamian\nDirk\nDuane\nEli\nHenry\nJavier\nJedediah\nJohnathan\nJulian\nLeroy\nLorenzo\nNickolas\nPedro\nRonnie\nTaylor\nTrent\nBarry\nBlake\nCalvin\nCesar\nDamien\nDon\nDonovan\nElijah\nIvan\nJoaquin\nJorge\nMarcos\nMorgan\nNick\nReginald\nRudy\nBrock\nBryce\nFrancis\nGlenn\nHarold\nJarod\nJed\nJedidiah\nJess\nKent\nLandon\nLloyd\nMax\nNathanael\nPete\nRaul\nSaul\nStuart\nTomas\nAbraham\nAlfred\nAngel\nAngelo\nAron\nAshley\nBenny\nBrant\nBret\nBryon\nClifton\nColby\nDean\nDevon\nEarl\nEdwin\nFelix\nFranklin\nGlen\nGordon\nHarry\nHoward\nIsaiah\nJosh\nKarl\nLogan\nMarco\nMike\nNoel\nOrion\nPablo\nRalph\nRick\nThaddeus\nTom\nTy\nTyrone\nVernon\nAlejandro\nAugustine\nBen\nClarence\nClay\nElias\nElliott\nIssac\nJeramie\nJerimiah\nJeromy\nJim\nJimmie\nLeo\nLeslie\nMelvin\nMoses\nNeal\nOrlando\nOscar\nOwen\nQuincy\nRafael\nRickey\nRoman\nScotty\nTerrance\nTobias\nAlvin\nBradford\nByron\nCarey\nDane\nDillon\nEdgar\nEfren\nEnrique\nEverett\nFelipe\nFred\nFredrick\nGalen\nGarth\nGreg\nHarley\nHector\nIsmael\nJackson\nJeramy\nJeremey\nJermaine\nJody\nJosiah\nJudson\nJulio\nKerry\nKory\nLars\nLeif\nLewis\nMarshall\nMiles\nRene\nRodolfo\nRon\nTracy\nTristan\nTyrel\nVicente\nZachery\nZane\nAbram\nAllan\nAmos\nAngela\nArturo\nBranden\nBrice\nBrodie\nCarson\nChance\nCharlie\nCollin\nDarius\nDaryl\nDion\nDwayne\nDwight\nEloy\nErick\nErin\nFabian\nFernando\nForrest\nGarret\nGerardo\nGraham\nHans\nHerman\nIsrael\nJarad\nJasen\nJeff\nJered\nJerod\nJerrad\nJonas\nKip\nLionel\nLonnie\nMason\nMatt\nRandolph\nReed\nReid\nRogelio\nRoland\nSam\nShayne\nSolomon\nSonny\nStefan\nTrenton\nWillie\nZebulon\nMichael\nChristopher\nMatthew\nJoshua\nJason\nDavid\nRyan\nJustin\nJames\nJohn\nDaniel\nRobert\nBrian\nNicholas\nJoseph\nEric\nAdam\nAndrew\nJeremy\nAaron\nBenjamin\nWilliam\nAnthony\nTimothy\nNathan\nJeffrey\nBrandon\nJonathan\nScott\nRichard\nJesse\nKevin\nThomas\nSteven\nJacob\nMark\nPaul\nTravis\nDustin\nCharles\nPatrick\nChad\nJared\nSean\nDerek\nLuke\nBryan\nJeremiah\nZachary\nStephen\nGregory\nKenneth\nBradley\nShane\nJose\nShawn\nSamuel\nErik\nKyle\nTyler\nLucas\nIan\nCody\nCraig\nCasey\nGabriel\nPeter\nTodd\nDonald\nDouglas\nJuan\nAlexander\nSeth\nBrett\nEdward\nRaymond\nCarlos\nKeith\nNathaniel\nCory\nJoel\nBrent\nIsaac\nPhillip\nCorey\nRussell\nCurtis\nShaun\nLevi\nRonald\nGary\nFrank\nGeorge\nRandy\nMathew\nWesley\nJon\nKristopher\nTrevor\nTroy\nAntonio\nClinton\nJesus\nJordan\nLarry\nMario\nVincent\nPhilip\nJeffery\nAdrian\nGrant\nVictor\nChristian\nEvan\nManuel\nMartin\nCarl\nDanny\nDominic\nJerry\nRandall\nLance\nMarc\nMarcus\nTheodore\nDennis\nDerrick\nJay\nMicheal\nAlan\nAustin\nClayton\nColin\nTony\nBilly\nGeoffrey\nLuis\nDevin\nJamie\nTerry\nCameron\nGarrett\nLouis\nAlbert\nClint\nGilbert\nHenry\nLee\nMiguel\nAlex\nAllen\nBobby\nDale\nDamon\nJarrod\nNeil\nRicky\nTyson\nBeau\nCaleb\nDarren\nGerald\nJack\nToby\nArthur\nKirk\nKurt\nNoah\nRicardo\nZachariah\nBrad\nFrancisco\nRodney\nJerome\nJohnny\nJulian\nKelly\nLawrence\nAngelo\nErnest\nEugene\nJimmy\nJoey\nNicolas\nRoger\nLeroy\nMitchell\nTaylor\nJonathon\nRoberto\nTommy\nTy\nBruce\nDarrell\nJohnathan\nLeonard\nLogan\nPreston\nRay\nBrendan\nDylan\nJoe\nNickolas\nOscar\nSpencer\nWalter\nAndre\nArmando\nArturo\nDean\nElijah\nGraham\nJake\nMaurice\nRoss\nRuben\nWade\nAlfredo\nAllan\nAndy\nBarry\nBlake\nBrock\nDrew\nEthan\nFernando\nIsrael\nJessie\nKarl\nRaul\nRonnie\nSimon\nClifford\nDallas\nDamien\nForrest\nHarold\nHeath\nJim\nMike\nNeal\nOrlando\nRex\nRory\nRoy\nRudy\nTanner\nTomas\nZachery\nAlfonso\nBryce\nByron\nChris\nEddie\nEdgar\nJarod\nJavier\nJeff\nJonah\nLeo\nLeon\nLoren\nMarcos\nMicah\nShannon\nTrent\nWayne\nAbraham\nAlejandro\nAndres\nBen\nBrady\nBranden\nBret\nCalvin\nCharlie\nCole\nDerick\nEduardo\nEli\nFred\nGreg\nJerod\nJorge\nMarshall\nMorgan\nNathanael\nRamon\nRusty\nTracy\nWarren\nWill\nAbel\nDillon\nGavin\nHarry\nHoward\nJaime\nJeramie\nJosh\nJosiah\nJulio\nKenny\nLandon\nLorenzo\nPedro\nQuinn\nRafael\nRalph\nRocky\nTobias\nDana\nDaryl\nDominick\nDon\nDonovan\nEverett\nFranklin\nFrederick\nJarred\nKent\nKory\nKurtis\nMax\nNicholaus\nOwen\nReginald\nRick\nRobin\nSam\nStuart\nWillie\nAlberto\nBill\nBryon\nBryson\nCollin\nDevon\nDusty\nEarl\nErick\nErnesto\nGlen\nHans\nHector\nJedediah\nJered\nJermaine\nJeromy\nJerrod\nJess\nJoesph\nLloyd\nMoses\nNoel\nParker\nReid\nSalvador\nSergio\nTerrence\nTom\nTucker\nTyrone\nAngel\nBart\nBo\nBrice\nBryant\nCarson\nChadwick\nChester\nClark\nClyde\nDane\nDirk\nDuane\nDwayne\nEdwin\nElias\nErin\nFelipe\nFelix\nGlenn\nHerbert\nIsaiah\nIvan\nJayson\nJoaquin\nJody\nJohnathon\nKerry\nKou\nLamont\nLonnie\nMarco\nMiles\nOliver\nPablo\nPete\nRoman\nRudolph\nSaul\nSterling\nSteve\nTerrance\nThaddeus\nTrenton\nTristan\nAlfred\nAugust\nBradford\nBradly\nBrendon\nBrooks\nCedric\nClarence\nClay\nClifton\nColton\nConor\nCurt\nCyrus\nDamian\nDiego\nForest\nFredrick\nGordon\nGregorio\nHarley\nIgnacio\nJarrad\nJedidiah\nJennifer\nJerimiah\nKasey\nMarvin\nMason\nMaxwell\nMikel\nMonte\nNathen\nNolan\nNorman\nRandal\nRene\nRogelio\nRoland\nSammy\nSantiago\nSebastian\nSheldon\nSolomon\nStacy\nVernon\nZane\nMichael\nChristopher\nMatthew\nJoshua\nJason\nDavid\nRyan\nJames\nDaniel\nRobert\nJohn\nJustin\nBrian\nJoseph\nAndrew\nAdam\nNicholas\nAaron\nBrandon\nWilliam\nEric\nBenjamin\nJonathan\nJeremy\nAnthony\nJesse\nJeffrey\nRichard\nThomas\nKevin\nJacob\nNathan\nSteven\nTimothy\nScott\nDustin\nPaul\nSean\nMark\nPatrick\nCharles\nZachary\nTravis\nChad\nJared\nDerek\nStephen\nLuke\nKyle\nGregory\nJeremiah\nKenneth\nShawn\nTyler\nJose\nShane\nLucas\nBradley\nSamuel\nCasey\nBryan\nGabriel\nSeth\nAlexander\nIan\nPeter\nDonald\nRaymond\nLevi\nCody\nCory\nRonald\nBrett\nNathaniel\nJoel\nPhillip\nCarlos\nKeith\nEdward\nErik\nIsaac\nTodd\nCorey\nDouglas\nCraig\nTroy\nRussell\nMathew\nJuan\nVincent\nAdrian\nCurtis\nMario\nDylan\nFrank\nGary\nJeffery\nPhilip\nNoah\nRandy\nShaun\nBrent\nCaleb\nTrevor\nDennis\nDominic\nGeorge\nJordan\nKristopher\nMarcus\nChristian\nJon\nWesley\nDerrick\nGarrett\nJesus\nManuel\nMiguel\nVictor\nClinton\nJack\nAustin\nLee\nTony\nCameron\nAntonio\nColin\nRoberto\nJerry\nMarc\nMicah\nJamie\nLarry\nLuis\nClayton\nTerry\nAlan\nDrew\nHenry\nJessie\nJoey\nPreston\nEvan\nFrancisco\nLance\nMartin\nAngelo\nArthur\nGrant\nLawrence\nMitchell\nRoy\nZachariah\nCarl\nJake\nJonathon\nMicheal\nBilly\nClifford\nJarrod\nKelly\nRandall\nRodney\nBlake\nDale\nJoe\nNicolas\nAlex\nBeau\nBobby\nLouis\nNeil\nRicardo\nTaylor\nTheodore\nAlejandro\nAllen\nBrad\nByron\nJay\nJohnathan\nRocky\nToby\nAndre\nRicky\nTyson\nBrady\nDarren\nGerald\nJohnny\nLeonard\nLogan\nRoss\nRuben\nWayne\nAlbert\nBrendan\nCalvin\nClint\nDanny\nDevon\nDean\nEdwin\nGilbert\nJimmy\nChris\nGeoffrey\nHeath\nJonah\nKarl\nKurt\nRoger\nBarry\nErnest\nEugene\nGlenn\nJaime\nJulian\nKirk\nMaurice\nRamon\nStanley\nSteve\nWade\nArmando\nCharlie\nDevin\nDusty\nJerod\nJerome\nNickolas\nOmar\nAbraham\nAndres\nAndy\nBen\nBruce\nBryce\nDamien\nDamon\nFrederick\nGraham\nRay\nWalter\nZane\nDallas\nDarrell\nDwayne\nJavier\nJayson\nJess\nJosiah\nKent\nLeroy\nMarco\nMorgan\nNeal\nOrlando\nOscar\nRobin\nRory\nRudy\nSpencer\nStephan\nTrent\nWeston\nAlberto\nBranden\nBryson\nDerick\nErnesto\nForrest\nFrankie\nGlen\nHunter\nLandon\nLorenzo\nMarshall\nNorman\nTomas\nTrenton\nTyrone\nVernon\nWillie\nZachery\nAngel\nAron\nBo\nCole\nDarin\nDuane\nFernando\nHector\nJarod\nJerad\nJeramie\nJohnathon\nLeon\nLeslie\nLonnie\nMason\nNolan\nRafael\nRick\nRonnie\nRusty\nSam\nSimon\nTy\nZebulon\nBret\nCollin\nConor\nDamian\nDillon\nEli\nElias\nElijah\nEthan\nFabian\nHarry\nJorge\nKory\nKurtis\nLeo\nLyle\nMarcos\nNick\nParker\nPedro\nPerry\nPete\nReginald\nTerrance\nTommy\nTracy\nUriah\nBrock\nBrooks\nClark\nClay\nDan\nDana\nDaren\nDaryl\nDonovan\nDwight\nEddie\nErick\nErin\nFred\nGerardo\nGreg\nHans\nHarold\nIra\nIssac\nJarrett\nJeff\nJoaquin\nJulius\nKaleb\nLoren\nLouie\nMarvin\nMax\nMoses\nNathanael\nNoel\nOliver\nRodolfo\nSammy\nSolomon\nTyrel\nWarren\nAlfonso\nAlfredo\nArturo\nBradford\nCarlo\nChadwick\nClifton\nConnor\nDane\nDemetrius\nDon\nFelix\nFrancis\nFranklin\nFredrick\nGene\nGordon\nGregg\nGuadalupe\nIsaiah\nIvan\nJackson\nJasper\nJeffry\nJeremie\nJermaine\nJerrod\nJonas\nKeegan\nLaurence\nLincoln\nLloyd\nMatt\nMonte\nQuentin\nQuincy\nRandal\nRoland\nSkyler\nSterling\nTerrence\nTyrell\nZackary\nAlvin\nAriel\nBaby\nBart\nBernard\nBlaine\nBraden\nCesar\nClarence\nClyde\nCristopher\nDanial\nDante\nDerik\nDomingo\nDominick\nDrake\nEarl\nEdgar\nEnrique\nFelipe\nFloyd\nGavin\nGenaro\nGerard\nGuy\nJarred\nJed\nJedidiah\nJefferson\nJennifer\nJeramiah\nJeramy\nJered\nJerimiah\nJessy\nJosh\nJoshuah\nJulio\nKiel\nLewis\nMauricio\nMelvin\nMike\nMyles\nOwen\nPablo\nRaul\nReggie\nReid\nRene\nReyes\nRhett\nRickey\nRiley\nRon\nRudolph\nRussel\nSalvador\nSaul\nSebastian\nShannon\nStuart\nTanner\nTobias\nTristan\nXavier\nMichael\nChristopher\nMatthew\nJoshua\nDavid\nJason\nDaniel\nJames\nJustin\nRyan\nRobert\nJohn\nJoseph\nNicholas\nAndrew\nBrian\nAaron\nBrandon\nAdam\nJonathan\nWilliam\nJeremy\nAnthony\nEric\nBenjamin\nSteven\nTravis\nJeffrey\nNathan\nRichard\nJesse\nScott\nJacob\nSean\nMark\nThomas\nKevin\nDustin\nTimothy\nZachary\nPaul\nPatrick\nTyler\nCharles\nJared\nKyle\nChad\nDerek\nKenneth\nStephen\nGregory\nBryan\nCody\nShawn\nBradley\nJeremiah\nSamuel\nCasey\nIan\nSeth\nNathaniel\nJose\nGabriel\nLuke\nPeter\nPhillip\nJoel\nJordan\nEdward\nKeith\nRaymond\nShane\nEvan\nCorey\nBrett\nCraig\nLucas\nRonald\nAlexander\nDouglas\nDonald\nJuan\nGary\nCory\nCarlos\nErik\nRussell\nLevi\nMarcus\nGeorge\nMario\nRandy\nFrank\nShaun\nTrevor\nDominic\nNoah\nPhilip\nTodd\nAlan\nJonathon\nManuel\nAustin\nBrent\nIsaac\nMarc\nDennis\nJeffery\nAdrian\nCaleb\nJon\nKristopher\nWesley\nLee\nMartin\nJay\nMathew\nClinton\nCurtis\nGarrett\nAntonio\nClayton\nVincent\nGrant\nJack\nLuis\nTony\nDerrick\nDylan\nLarry\nColin\nTaylor\nTyson\nBobby\nBret\nCameron\nJesus\nMiguel\nTroy\nLance\nLawrence\nBrendan\nChristian\nDrew\nGeoffrey\nMicheal\nMitchell\nRandall\nRicky\nAlex\nDarren\nFrancisco\nLouis\nTerry\nBlake\nArthur\nCarl\nKelly\nRoss\nVictor\nZachariah\nAllen\nNeil\nHenry\nJamie\nJerry\nJohnathan\nAngelo\nAndre\nBrady\nCole\nDanny\nDevin\nLogan\nPreston\nRoger\nWayne\nBilly\nBrad\nBruce\nErnest\nGerald\nJake\nJerome\nJohnny\nKurt\nLeonard\nTheodore\nDale\nJarrod\nJessie\nLandon\nRory\nSpencer\nWade\nChase\nHeath\nJimmy\nJorge\nMicah\nSteve\nWalter\nClifford\nClint\nRicardo\nAbraham\nDean\nFernando\nJoe\nMarshall\nRodney\nTrenton\nBeau\nBranden\nDuane\nElijah\nGilbert\nIsaiah\nKirk\nRuben\nToby\nArmando\nDamien\nEthan\nEugene\nForrest\nIvan\nJarod\nMorgan\nZachery\nAlbert\nBradford\nJulian\nKellen\nLoren\nMarco\nMaurice\nNicolas\nRick\nRoy\nAlejandro\nBarry\nBryce\nDarrell\nDusty\nErick\nGraham\nJerod\nJoaquin\nKarl\nMax\nNickolas\nRaul\nRay\nTristan\nAngel\nAshley\nCesar\nColt\nEli\nFrederick\nGlenn\nGuy\nJarred\nJoey\nLorenzo\nMarcos\nRalph\nSergio\nTanner\nTy\nWeston\nAbel\nChris\nClarence\nDevon\nHarry\nHunter\nJosiah\nLeon\nNathanael\nOrlando\nOscar\nRamon\nRobin\nStuart\nAlberto\nAndres\nBenny\nByron\nClay\nCollin\nConor\nCooper\nDane\nDarin\nDwayne\nElias\nFrancis\nFranklin\nJaime\nJavier\nJayson\nJeff\nJohnathon\nKent\nMason\nNick\nOliver\nPedro\nRoberto\nRudolph\nShannon\nSolomon\nStanley\nStefan\nTerrell\nTommy\nAlfonso\nAlfred\nAlfredo\nBenito\nBryon\nCedric\nColby\nDante\nDon\nEddie\nEdwin\nFred\nGene\nHarley\nHarold\nJackson\nJermaine\nKristofer\nLeroy\nLewis\nLonnie\nLyle\nMarvin\nMiles\nMoses\nNeal\nRiley\nRonnie\nRudy\nSam\nTrent\nWarren\nZebulon\nAbram\nAlexis\nBen\nCalvin\nClark\nCourtney\nDallas\nDamian\nDamon\nDaryl\nDerick\nDillon\nDominick\nFelipe\nFelix\nGreg\nJerad\nKasey\nKeenan\nKody\nLloyd\nMarcelino\nMatt\nNikolas\nOwen\nPete\nRafael\nRandolph\nReginald\nReid\nTomas\nVernon\nWyatt\nZane\nAndy\nAnton\nAron\nArron\nAugustine\nBart\nBernard\nBill\nBrendon\nBrock\nCecil\nClifton\nConrad\nCyrus\nDavin\nDiego\nDominique\nEarl\nEdgar\nErin\nErnesto\nFloyd\nGlen\nGordon\nGrady\nGuadalupe\nGuillermo\nHerbert\nJamaal\nJarrett\nJeremie\nJoesph\nKeegan\nLouie\nMarques\nNoel\nNolan\nOmar\nPablo\nQuinn\nRandal\nReed\nRex\nRocky\nRusty\nSantiago\nTerrance\nTerrence\nTyrel\nTyrone\nUriah\nAli\nAllan\nAlonzo\nAlvin\nArnold\nBraden\nBrandin\nBrice\nBryant\nBryson\nCharlie\nDana\nDarryl\nDax\nDestry\nDwain\nElliot\nEnrique\nEsteban\nEzekiel\nFabian\nFredrick\nGarret\nHector\nHoward\nJamal\nJeramie\nJered\nJohnnie\nJohnpaul\nJonah\nJonas\nJosh\nKaleb\nKendall\nKurtis\nLaurence\nLeonardo\nMelvin\nNathanial\nPerry\nReuben\nReynaldo\nRon\nRoyce\nScot\nSebastian\nShad\nStephan\nTad\nTed\nMichael\nChristopher\nMatthew\nJoshua\nDaniel\nRyan\nDavid\nJustin\nJason\nJohn\nRobert\nJoseph\nJames\nAndrew\nBrian\nBrandon\nNicholas\nAdam\nWilliam\nAaron\nEric\nAnthony\nJonathan\nJacob\nBenjamin\nTravis\nJeffrey\nKyle\nRichard\nTimothy\nNathan\nSteven\nKevin\nThomas\nZachary\nJeremy\nPatrick\nMark\nSean\nTyler\nScott\nJesse\nCharles\nPaul\nDustin\nStephen\nChad\nGregory\nDerek\nBryan\nKenneth\nJared\nSamuel\nCody\nIan\nShawn\nLuke\nJeremiah\nBradley\nCasey\nShane\nAlexander\nPhillip\nJose\nErik\nGabriel\nJoel\nSeth\nCorey\nEvan\nPeter\nBrett\nCory\nDouglas\nJordan\nKeith\nNathaniel\nMarcus\nEdward\nGrant\nRaymond\nJuan\nCraig\nLevi\nDonald\nAlan\nCarlos\nKristopher\nRussell\nTodd\nDominic\nFrank\nLucas\nMathew\nTroy\nAdrian\nClayton\nPhilip\nCaleb\nGarrett\nVincent\nGeorge\nIsaac\nRonald\nTrevor\nCurtis\nDerrick\nAustin\nDevin\nBrent\nClinton\nGary\nMitchell\nRandy\nWesley\nBlake\nCarl\nColin\nShaun\nTaylor\nLouis\nGeoffrey\nJerry\nJon\nMario\nCameron\nChase\nMartin\nNoah\nRoss\nCole\nJeffery\nVictor\nLee\nJay\nLuis\nRicky\nTerry\nArthur\nLance\nMicah\nChristian\nDane\nDennis\nLarry\nAlex\nBrendan\nDylan\nManuel\nPreston\nDanny\nHenry\nJoe\nKelly\nLawrence\nMarc\nDarren\nRandall\nAntonio\nCalvin\nJohnathan\nJohnny\nMiguel\nSpencer\nTony\nTyson\nAlbert\nJake\nMicheal\nBeau\nBrad\nBrady\nBryce\nFrancisco\nJack\nDrew\nJesus\nZachariah\nAllen\nAndre\nClifford\nJimmy\nJonathon\nNickolas\nRicardo\nRodney\nRoger\nRuben\nBobby\nDean\nEugene\nGerald\nJerome\nKarl\nLogan\nTristan\nEli\nErnest\nJamie\nCollin\nDale\nDevon\nEthan\nRory\nTheodore\nAbraham\nJavier\nLandon\nLewis\nMorgan\nNeil\nBruce\nDillon\nElijah\nJessie\nKirk\nLeonard\nMaurice\nPedro\nRamon\nRoy\nTanner\nWeston\nAngelo\nBilly\nDarrell\nFrederick\nGlenn\nJaime\nJulian\nKellen\nLorenzo\nMarshall\nOscar\nWade\nWalter\nWayne\nBryson\nByron\nEarl\nJarrod\nLoren\nTyrel\nConor\nFernando\nGene\nGilbert\nGraham\nJosiah\nKurt\nNicolas\nRick\nRiley\nSteve\nTerrance\nTrenton\nAndres\nArmando\nBranden\nBrock\nClint\nDarrin\nDerick\nElias\nFrancis\nLeroy\nMarco\nNathanael\nOliver\nRonnie\nSimon\nStephan\nStuart\nAlejandro\nArturo\nBen\nChris\nColt\nDamian\nDamon\nDarin\nEddie\nGavin\nHeath\nJerrod\nJorge\nLeif\nNeal\nRalph\nRay\nRoberto\nRudy\nStanley\nWarren\nZachery\nAlberto\nCassidy\nCharlie\nDallas\nDwayne\nFelix\nHarold\nJayson\nJess\nLeo\nNorman\nRaul\nRene\nTucker\nTy\nBrandin\nDana\nDirk\nDon\nElliot\nErick\nGriffin\nHarry\nHector\nHunter\nIsaiah\nJarod\nJarred\nJermaine\nJerod\nJonah\nJosef\nKenny\nKurtis\nLloyd\nMatt\nMoses\nNathanial\nOmar\nRobin\nSalvador\nStefan\nTomas\nTommy\nTrent\nWillie\nAbel\nAngel\nBlaine\nBradly\nBrain\nBrenton\nBryon\nCale\nClay\nEduardo\nEdwin\nEnrique\nErin\nEsteban\nGreg\nJackson\nJoey\nKent\nLeland\nLeon\nLonnie\nMarcos\nMarvin\nMax\nMaxwell\nParker\nSergio\nShannon\nSkyler\nToby\nZackary\nAllan\nAlonzo\nAnton\nAshley\nBarry\nBraden\nBrant\nBret\nBrice\nClark\nColton\nDarryl\nDominick\nElliott\nEmmanuel\nErich\nEverett\nFelipe\nForrest\nFrankie\nFredrick\nGuadalupe\nHarley\nIra\nIvan\nJamison\nJean\nJerad\nJody\nKristofer\nLeslie\nMikel\nMohammed\nOrlando\nPablo\nPerry\nQuinn\nReid\nRex\nRoman\nRusty\nSam\nSterling\nThaddeus\nVernon\nZane\nZechariah\nAlexis\nAlvin\nAri\nBenny\nCesar\nChance\nChaz\nColby\nConnor\nConrad\nCyrus\nDanielle\nDarius\nDarnell\nDarrel\nDaryl\nDelbert\nDemetrius\nDeric\nDerik\nDuane\nGalen\nGarret\nGlen\nIssac\nJameson\nJedediah\nJeffry\nJeramiah\nJimmie\nJohnathon\nJulius\nKaleb\nKiel\nKory\nLionel\nMiles\nNikolas\nNolan\nRandal\nRocky\nRodrigo\nRogelio\nSantiago\nSaul\nShelby\nSheldon\nTerrence\nThanh\nTyrone\nMichael\nChristopher\nMatthew\nJoshua\nDavid\nRyan\nDaniel\nAndrew\nJustin\nNicholas\nJason\nRobert\nJames\nAdam\nJoseph\nJohn\nBrian\nBrandon\nEric\nWilliam\nBenjamin\nAaron\nJonathan\nTyler\nKyle\nSteven\nAnthony\nJeffrey\nTimothy\nThomas\nZachary\nKevin\nNathan\nJacob\nTravis\nJeremy\nScott\nRichard\nMark\nSean\nPatrick\nDustin\nPaul\nJesse\nStephen\nCody\nDerek\nGregory\nChad\nCharles\nKenneth\nAlexander\nBryan\nJared\nSamuel\nJeremiah\nBradley\nLuke\nPeter\nIan\nCasey\nNathaniel\nMarcus\nJose\nBrett\nJordan\nEvan\nPhillip\nShawn\nErik\nShane\nCory\nKeith\nEdward\nRaymond\nChase\nLucas\nSeth\nJoel\nVincent\nGabriel\nAustin\nCraig\nDonald\nCarlos\nCorey\nRonald\nTrevor\nColin\nDouglas\nJuan\nTaylor\nMathew\nRandy\nTroy\nGarrett\nPhilip\nTodd\nLevi\nClinton\nGeorge\nIsaac\nRoss\nAlan\nTyson\nWesley\nBrent\nCaleb\nDominic\nRussell\nAlex\nGary\nShaun\nGeoffrey\nBlake\nKristopher\nLee\nClayton\nJeffery\nLance\nAdrian\nArthur\nCameron\nDylan\nFrank\nGrant\nDevin\nDrew\nMarc\nNoah\nMario\nMartin\nCurtis\nDerrick\nZachariah\nDennis\nMitchell\nPreston\nTony\nVictor\nAntonio\nLogan\nCole\nDarren\nJesus\nRandall\nLarry\nAngelo\nCarl\nJon\nLawrence\nJohnathan\nMicheal\nAndre\nBruce\nDanny\nJay\nAlbert\nAllen\nErnest\nLuis\nRicky\nSpencer\nChance\nJamie\nJonathon\nLouis\nBryce\nEthan\nFrancisco\nMicah\nTheodore\nTristan\nWayne\nBeau\nChristian\nDevon\nFrederick\nJessie\nManuel\nRicardo\nRoger\nTerry\nAbraham\nBrendan\nBrenton\nDale\nEugene\nKurt\nRamon\nBobby\nBrady\nBranden\nClifford\nJack\nJake\nJerry\nJimmy\nJoe\nKelly\nMarshall\nNeil\nNicolas\nRoberto\nRuben\nTanner\nZachery\nArmando\nHenry\nJerome\nJohnny\nLeonard\nMorgan\nRodney\nStuart\nClint\nCollin\nDillon\nJarrod\nLandon\nMiguel\nTommy\nTrent\nWade\nWalter\nAlejandro\nDean\nFranklin\nGilbert\nJulian\nKarl\nLorenzo\nMarcos\nNickolas\nBilly\nBrock\nGerald\nGlenn\nMax\nAndres\nBrad\nByron\nDane\nEdwin\nHeath\nIsaiah\nJavier\nKurtis\nTrenton\nDarrell\nGlen\nGraham\nKirk\nNick\nSteve\nTy\nAlfred\nBarry\nBret\nConor\nDamian\nDamien\nEli\nElliot\nFernando\nJermaine\nJorge\nJulio\nNeal\nNolan\nPablo\nParker\nPete\nRaul\nReid\nSheldon\nSimon\nAllan\nBo\nCalvin\nDusty\nErick\nFelix\nJaime\nJohnathon\nKellen\nLane\nOscar\nRay\nRoman\nRoy\nSergio\nStefan\nAron\nBryson\nDonovan\nDuane\nFredrick\nHoward\nKiel\nLonnie\nLoren\nMason\nMaurice\nNathanael\nPedro\nRonnie\nTyrel\nWarren\nWeston\nZane\nAngel\nBlair\nBraden\nBradford\nColby\nConrad\nDarrin\nDarryl\nElijah\nEmmanuel\nEnrique\nGreg\nHarold\nJarred\nJerod\nJoaquin\nJosiah\nKeenan\nLeon\nMarco\nMaxwell\nOmar\nOrlando\nReginald\nRogelio\nRory\nStanley\nTerrence\nTucker\nTye\nZackary\nAbel\nArturo\nBarrett\nChandler\nClay\nCooper\nDominick\nDon\nDwayne\nFabian\nGordon\nHans\nHugo\nHunter\nJarrett\nJerad\nJess\nJoey\nKent\nLewis\nLloyd\nMiles\nReuben\nRick\nRiley\nRudy\nShea\nSkyler\nTerrance\nToby\nAlvin\nAri\nBen\nBenny\nCassidy\nCurt\nDain\nDamon\nDarrel\nDavis\nDerick\nDuncan\nEarl\nEmilio\nErich\nEzekiel\nGavin\nGerardo\nGuillermo\nHector\nIvan\nJayson\nJeff\nJody\nKelsey\nKenny\nKody\nLeland\nLeroy\nMelvin\nNicholaus\nPerry\nRalph\nRandal\nRobin\nRocky\nTomas\nTyrell\nTyrone\nVaughn\nZechariah\nAkeem\nAlberto\nAndy\nBrendon\nBrooks\nBryant\nCary\nClarence\nClyde\nColt\nConnor\nDallas\nDanial\nDion\nDru\nElias\nEloy\nFletcher\nFloyd\nForrest\nFred\nJedidiah\nJerrod\nKasey\nKeaton\nKeegan\nKelby\nKendall\nKenton\nKristofer\nLars\nLiam\nOwen\nQuentin\nQuincy\nQuinn\nRemington\nRolando\nRudolph\nSantino\nShannon\nSonny\nStephan\nTad\nTerence\nTory\nVernon\nWilson\nMichael\nChristopher\nMatthew\nJoshua\nDaniel\nRyan\nDavid\nJames\nAndrew\nBrandon\nJoseph\nJohn\nNicholas\nRobert\nJustin\nBrian\nKyle\nAdam\nEric\nAnthony\nJason\nTyler\nWilliam\nJonathan\nBenjamin\nAaron\nZachary\nTimothy\nSteven\nJacob\nJeffrey\nNathan\nThomas\nKevin\nSean\nJeremy\nTravis\nRichard\nMark\nDustin\nScott\nCody\nJesse\nPatrick\nPaul\nStephen\nAlexander\nCharles\nBryan\nDerek\nGregory\nSamuel\nChad\nBradley\nJared\nShawn\nKenneth\nCasey\nLuke\nJeremiah\nNathaniel\nShane\nIan\nJordan\nMarcus\nBrett\nJoel\nTrevor\nJose\nCorey\nPeter\nTaylor\nGarrett\nPhillip\nSeth\nLevi\nCory\nGrant\nAustin\nDonald\nLucas\nRaymond\nAdrian\nAlex\nKeith\nTodd\nEdward\nDouglas\nDylan\nErik\nBrent\nDrew\nVincent\nColin\nGabriel\nBlake\nCurtis\nEvan\nAlan\nWesley\nCaleb\nGary\nFrank\nDevin\nPhilip\nCarl\nCraig\nRussell\nCarlos\nJon\nMitchell\nChase\nClinton\nIsaac\nLance\nRandy\nBryce\nDerrick\nGeorge\nMathew\nJeffery\nJuan\nLee\nRonald\nJesus\nCameron\nDominic\nJerry\nKristopher\nLuis\nShaun\nSpencer\nChristian\nCole\nJohnathan\nMarc\nAntonio\nDennis\nJulian\nRoss\nManuel\nTroy\nClayton\nDarren\nDane\nMario\nTheodore\nTyson\nAngelo\nArthur\nEli\nMartin\nVictor\nJay\nLarry\nZachery\nHenry\nLawrence\nNicolas\nNoah\nPreston\nRandall\nAndre\nJack\nJonathon\nJosiah\nKurt\nLogan\nZachariah\nAllen\nBeau\nBrendan\nErnest\nMax\nRicky\nJoe\nKellen\nMicheal\nTony\nWayne\nAlbert\nDanny\nJarrod\nMiguel\nNeil\nGeoffrey\nKelly\nChance\nDarrell\nDean\nDominick\nIsaiah\nJimmy\nLouis\nMicah\nTrenton\nBrady\nCollin\nDevon\nTanner\nTerry\nAlejandro\nAngel\nDillon\nFrancisco\nJake\nJamie\nLandon\nMorgan\nOscar\nBobby\nGerald\nJessie\nJohnny\nNeal\nPedro\nRicardo\nTristan\nBrad\nBranden\nBrenton\nBrock\nCalvin\nDale\nEugene\nJaime\nJavier\nJoey\nKirk\nLeonard\nLoren\nMiles\nNickolas\nRoger\nRuben\nZane\nJerome\nJorge\nLeroy\nNolan\nOrlando\nRoberto\nRodney\nSergio\nSimon\nStefan\nBen\nBruce\nCassidy\nClifford\nFrederick\nHunter\nIvan\nKeegan\nRamon\nRay\nRoman\nSteve\nTommy\nTy\nAllan\nArmando\nChadwick\nFernando\nJermaine\nStephan\nStuart\nTrent\nWade\nAlberto\nAndres\nBilly\nBret\nClint\nColby\nDamien\nDonovan\nErin\nEthan\nGraham\nHeath\nJamison\nKent\nKory\nLorenzo\nMarshall\nOwen\nRaul\nRory\nWeston\nAlfonso\nBraden\nBryon\nConor\nDana\nDante\nEdwin\nElijah\nElliott\nForrest\nFranklin\nGlen\nGordon\nHarold\nKarl\nLeon\nLewis\nMarcos\nMaurice\nNathanael\nNick\nNorman\nOliver\nOmar\nParker\nRandolph\nReid\nRoy\nRudy\nToby\nBradford\nConrad\nDallas\nDarin\nDaryl\nEddie\nFred\nGarret\nGavin\nGerardo\nGilbert\nGlenn\nJackson\nJedidiah\nJeff\nJulio\nLane\nRick\nRocky\nRonnie\nSkyler\nTerrance\nTerrell\nTobias\nAbraham\nAlfred\nAndy\nAugust\nBenito\nBrenden\nBryson\nByron\nCesar\nColt\nDamian\nDamon\nDarryl\nDion\nDwayne\nEdgar\nErnesto\nGalen\nGreg\nGuy\nHarley\nHarry\nIsrael\nJarred\nJerad\nJess\nJody\nKaleb\nKendall\nKurtis\nLeo\nLukas\nLyle\nMarco\nRobin\nRusty\nSalvador\nShea\nStanley\nTomas\nAlec\nAlexis\nAlfredo\nAmanda\nArron\nBernard\nBlaine\nBrennan\nBrody\nCale\nCarson\nClay\nCourtney\nDerik\nDon\nDusty\nEduardo\nEmilio\nErick\nHector\nHoward\nJayson\nJerod\nKeenan\nKenny\nLloyd\nMason\nMoises\nPablo\nRafael\nRandal\nReed\nRiley\nSolomon\nTyrell\nTyrone\nVernon\nWalter\nWarren\nWillie\nAgustin\nBarry\nBrandan\nBrendon\nBrice\nCade\nCary\nCharlie\nChris\nColeman\nDarrin\nDemetrius\nDiego\nEarl\nElias\nElliot\nEnrique\nFabian\nFelix\nFloyd\nGustavo\nHarrison\nHumberto\nIssac\nJamal\nJamey\nJasper\nJerimiah\nJoaquin\nJosef\nJosh\nJoshuah\nKasey\nKody\nLincoln\nMackenzie\nMarvin\nMitch\nNathanial\nPete\nQuinn\nQuinton\nRex\nRyne\nScotty\nShannon\nSkylar\nSterling\nTracy\nTyrel\nWill\nWyatt\nMichael\nChristopher\nMatthew\nJoshua\nDavid\nDaniel\nRyan\nAndrew\nJames\nNicholas\nRobert\nJoseph\nBrandon\nJohn\nJustin\nJason\nKyle\nTyler\nBrian\nAnthony\nAdam\nAaron\nWilliam\nZachary\nBenjamin\nEric\nKevin\nJacob\nJonathan\nJeremy\nJeffrey\nSteven\nThomas\nNathan\nSean\nScott\nTimothy\nPatrick\nMark\nTravis\nAlexander\nJesse\nRichard\nStephen\nPaul\nDustin\nCody\nCharles\nDerek\nBryan\nKenneth\nJordan\nGregory\nJared\nSamuel\nShawn\nChad\nIan\nBradley\nEvan\nLuke\nNathaniel\nShane\nJose\nBrett\nPhillip\nPeter\nTrevor\nAustin\nJeremiah\nLucas\nMarcus\nSeth\nKeith\nJoel\nAlex\nCory\nRaymond\nCorey\nCasey\nErik\nLevi\nGary\nPhilip\nEdward\nGarrett\nVincent\nGabriel\nMitchell\nRussell\nCurtis\nDylan\nTaylor\nCraig\nDouglas\nDerrick\nCaleb\nCameron\nCarlos\nColin\nDonald\nRonald\nAdrian\nBrent\nChase\nDrew\nJonathon\nMathew\nVictor\nChristian\nTroy\nWesley\nDominic\nSpencer\nAlan\nCole\nGeorge\nKristopher\nJuan\nBlake\nGrant\nLance\nMax\nAntonio\nFrank\nLouis\nRandy\nLuis\nManuel\nDevin\nMario\nMartin\nBryce\nIsaac\nTyson\nBrady\nJesus\nLee\nRoss\nTodd\nGeoffrey\nJeffery\nBrendan\nShaun\nJay\nJohnathan\nMarc\nMicah\nAllen\nAngelo\nTony\nClayton\nDane\nDarren\nDennis\nDillon\nJulian\nMicheal\nJon\nLogan\nMiguel\nAndre\nJack\nJoe\nPreston\nCarl\nFrancisco\nJohnny\nBeau\nJake\nMason\nTrent\nDevon\nNicolas\nNoah\nKelly\nLarry\nRoger\nZachariah\nAndres\nBrock\nJessie\nNickolas\nTheodore\nZachery\nAlbert\nArthur\nBrad\nBruce\nCalvin\nDanny\nGilbert\nGraham\nJerry\nNeil\nTanner\nBobby\nClinton\nColby\nDominick\nEli\nForrest\nGerald\nLawrence\nRamon\nRandall\nRicky\nWade\nAngel\nCollin\nFrederick\nIsaiah\nJavier\nKarl\nKirk\nMiles\nRodney\nDale\nEugene\nFernando\nHenry\nJorge\nMarcos\nAlejandro\nChance\nClint\nJohnathon\nKellen\nLeon\nRicardo\nRuben\nTerry\nArmando\nArturo\nJarrod\nJerome\nMorgan\nRaul\nRiley\nStefan\nTrenton\nWayne\nWeston\nBrenden\nClifford\nDarin\nElijah\nErnest\nFabian\nGlenn\nHarrison\nJoey\nLeonard\nMarshall\nMaurice\nSergio\nTristan\nWalter\nZane\nBilly\nBryson\nClay\nDuane\nFranklin\nHarold\nHector\nJaime\nJamie\nRay\nRoy\nSalvador\nStephan\nBranden\nByron\nColton\nDaryl\nEdgar\nErick\nEthan\nJimmy\nKody\nKurtis\nLandon\nMarco\nOmar\nOrlando\nOscar\nParker\nRoberto\nRoman\nRory\nTy\nAllan\nBrendon\nBrenton\nConnor\nDarrell\nDarryl\nDean\nFred\nHunter\nIvan\nJarrett\nJosiah\nJulio\nKaleb\nKurt\nLoren\nLorenzo\nNathanael\nPerry\nRonnie\nStuart\nTerrence\nTomas\nTyrell\nAbraham\nAddison\nBret\nClark\nDallas\nDana\nDominique\nDusty\nElias\nFelix\nJordon\nKeegan\nLewis\nLloyd\nLonnie\nNoel\nShea\nToby\nWill\nWillie\nAntoine\nAron\nBraden\nBrennan\nBryant\nBryon\nConor\nDamien\nDavis\nEmmanuel\nFrancis\nGordon\nJermaine\nKerry\nLeroy\nMarvin\nMatt\nMitchel\nNikolas\nPedro\nPete\nRalph\nRandolph\nReed\nRobin\nShannon\nSteve\nTyrel\nZackary\nAbel\nAlfred\nAlvin\nBarry\nBenito\nBlaine\nDamian\nDexter\nDiego\nDon\nElliott\nErnesto\nFelipe\nGavin\nGene\nGlen\nGuy\nHans\nHeath\nHouston\nHoward\nIsmael\nIsrael\nJarred\nJaymes\nJayson\nJeramie\nJerod\nKacey\nKory\nLeif\nMaxwell\nMyles\nNick\nNolan\nNorman\nOliver\nOwen\nReid\nRocky\nRoyce\nSebastian\nSimon\nSkylar\nSkyler\nStanley\nTad\nTed\nTerrance\nTrey\nWhitney\nXavier\nZackery\nAlec\nAlfonso\nAlonso\nAriel\nAugustine\nAvery\nBarrett\nBarton\nBen\nBennett\nBlair\nBradford\nBrice\nBrody\nCamden\nCassidy\nConrad\nDakota\nDan\nDarrin\nDereck\nDerik\nDorian\nDwayne\nEddie\nErich\nErin\nFredrick\nGarret\nGreg\nHarry\nJayce\nJeff\nJoaquin\nJonas\nKasey\nKent\nKenton\nKiel\nKristofer\nLane\nLeo\nLeslie\nLionel\nMoses\nNeal\nQuentin\nQuincy\nRashad\nRaymundo\nRene\nReuben\nRian\nRick\nRoderick\nSam\nSaul\nShayne\nSheldon\nTate\nTerence\nTobias\nTommy\nTorin\nTorrence\nTracy\nTyrone\nMichael\nChristopher\nMatthew\nJoshua\nAndrew\nDaniel\nDavid\nJustin\nRyan\nNicholas\nJoseph\nRobert\nJames\nKyle\nJohn\nAnthony\nBrandon\nTyler\nZachary\nBenjamin\nWilliam\nEric\nBrian\nJason\nJonathan\nSteven\nJacob\nKevin\nAdam\nSean\nTimothy\nJeremy\nAaron\nNathan\nAlexander\nThomas\nJeffrey\nCody\nTravis\nPatrick\nMark\nScott\nDustin\nJesse\nPaul\nRichard\nDerek\nJordan\nSamuel\nJared\nStephen\nBryan\nCharles\nAlex\nGregory\nShane\nChad\nBradley\nEvan\nShawn\nCasey\nKenneth\nSeth\nIan\nAustin\nCory\nMarcus\nEdward\nPeter\nJeremiah\nLuke\nBrett\nCorey\nCameron\nTrevor\nNathaniel\nPhillip\nJose\nGabriel\nRaymond\nJoel\nKeith\nDevin\nDylan\nVincent\nLevi\nCaleb\nGarrett\nLucas\nWesley\nMitchell\nDouglas\nColin\nDonald\nErik\nRandy\nIsaac\nPhilip\nTaylor\nVictor\nBrent\nRonald\nDerrick\nDominic\nJuan\nAlan\nCarlos\nMathew\nGrant\nCurtis\nGary\nLogan\nSpencer\nCraig\nFrank\nTodd\nClayton\nJeffery\nShaun\nBryce\nJonathon\nRussell\nClinton\nDennis\nDrew\nKristopher\nLance\nLee\nAdrian\nBlake\nCole\nJesus\nManuel\nAntonio\nJay\nJohnathan\nLawrence\nMarc\nJack\nTanner\nBrady\nRuben\nTroy\nIsaiah\nChristian\nPreston\nChase\nJulian\nMiguel\nBrendan\nGeorge\nMartin\nMaxwell\nMicah\nTheodore\nTyson\nAllen\nDarren\nDevon\nMario\nCollin\nGerald\nJohnny\nJon\nLuis\nGeoffrey\nMax\nRandall\nZachery\nAngelo\nCarl\nDane\nDillon\nMicheal\nTony\nWayne\nArthur\nChance\nColby\nJerry\nNeil\nRoss\nHenry\nKurt\nZachariah\nBeau\nBobby\nColton\nJaime\nJake\nKelly\nLarry\nMarshall\nCalvin\nRicky\nRoger\nTristan\nJamie\nKarl\nKellen\nLouis\nDean\nDonovan\nJerome\nJimmy\nJosiah\nLandon\nMason\nMiles\nNoah\nAlbert\nBlaine\nFrancisco\nLeonard\nNicolas\nOmar\nRiley\nStefan\nTerry\nAndre\nBranden\nClifford\nDanny\nJarrod\nJavier\nJessie\nMorgan\nNickolas\nRicardo\nRonnie\nTrent\nAndy\nCesar\nDarin\nDaryl\nErick\nEthan\nHunter\nKurtis\nLorenzo\nMarcos\nRory\nStephan\nWade\nAlejandro\nBrendon\nBrock\nBruce\nBryant\nBryson\nConnor\nFabian\nGraham\nKaleb\nKirk\nLoren\nMaurice\nPedro\nRamon\nRodney\nRoman\nAbraham\nBret\nClint\nDamian\nDominick\nEdgar\nElliott\nErnest\nEugene\nGordon\nJoe\nRay\nRoberto\nRoy\nTyrel\nVance\nWarren\nWeston\nAlec\nClay\nDakota\nDale\nEdwin\nElijah\nGilbert\nHector\nIvan\nJarred\nJohnathon\nKent\nKristofer\nRudy\nSergio\nShea\nSteve\nTommy\nWalter\nAndres\nAngel\nArmando\nBrad\nByron\nDarrin\nEddie\nEstevan\nFelipe\nJordon\nKameron\nKeegan\nKeenan\nKody\nMarco\nNolan\nOscar\nSheldon\nSkyler\nAlfonso\nAlvin\nArturo\nBen\nCorbin\nDalton\nDamien\nDavis\nDominique\nGalen\nGarret\nGavin\nGreg\nJamal\nJorge\nJosef\nJulio\nKale\nKasey\nKory\nLeo\nMarvin\nNeal\nNick\nPerry\nRaul\nRoland\nRusty\nTerrance\nTerrence\nTomas\nTylor\nAli\nAron\nBarry\nBilly\nBo\nChris\nColt\nConrad\nDallas\nDamon\nDarnell\nDerik\nDewayne\nDusty\nEduardo\nEli\nFernando\nForrest\nFranklin\nFred\nFrederick\nHans\nJakob\nJess\nJoey\nJohnnie\nLeroy\nLewis\nMyles\nNikolas\nQuinn\nRalph\nRick\nSimon\nTrey\nTyrell\nTyrone\nAbel\nAddison\nAlberto\nAlfred\nAlonzo\nAshley\nAugustine\nBraden\nBrandan\nBrennan\nBrice\nChadwick\nChaz\nDante\nDerick\nElias\nEmmanuel\nErin\nFloyd\nFrancis\nGerardo\nGlenn\nHeath\nJameson\nJedidiah\nJoaquin\nKalen\nLane\nLeon\nOrlando\nOwen\nParker\nRandal\nReid\nRobbie\nRussel\nSantiago\nSaul\nShannon\nStuart\nToby\nTrenton\nTucker\nWyatt\nZane\nAllan\nAmos\nAntoine\nAvery\nBill\nBrenden\nBrenton\nBryon\nCarson\nClarence\nColeman\nColter\nCoy\nDarrell\nDarryl\nEarl\nEnrique\nFrankie\nHarold\nHarrison\nHarry\nIsrael\nJackson\nJamison\nJarod\nJarrett\nJayson\nJed\nJeff\nJeffry\nJered\nJeremie\nJovan\nKc\nKeaton\nKelvin\nKenny\nLeland\nLincoln\nLonnie\nLyle\nMitchel\nNathanael\nNelson\nPierce\nQuentin\nReece\nReuben\nRian\nRobin\nRodolfo\nRon\nRudolph\nSalvador\nSebastian\nStetson\nTed\nTy\nUriah\nVernon\nMichael\nChristopher\nMatthew\nJoshua\nAndrew\nRyan\nDavid\nJustin\nDaniel\nNicholas\nKyle\nJohn\nJoseph\nJames\nRobert\nZachary\nBrandon\nTyler\nAnthony\nThomas\nBenjamin\nBrian\nJacob\nEric\nAdam\nWilliam\nJonathan\nKevin\nSteven\nAlexander\nAaron\nSean\nJason\nCody\nNathan\nMark\nTimothy\nRichard\nTravis\nJeffrey\nJeremy\nScott\nPatrick\nSamuel\nStephen\nJesse\nDustin\nPaul\nDerek\nCharles\nJordan\nCory\nCameron\nGregory\nShane\nIan\nChad\nJared\nKenneth\nAlex\nBryan\nAustin\nTrevor\nBradley\nNathaniel\nTaylor\nCorey\nLevi\nJeremiah\nShawn\nBrett\nMarcus\nCasey\nDevin\nEvan\nJose\nGabriel\nGarrett\nDylan\nLucas\nLuke\nPhillip\nVincent\nKeith\nPeter\nSeth\nErik\nJoel\nMitchell\nEdward\nVictor\nSpencer\nPhilip\nGrant\nColin\nWesley\nBrent\nCaleb\nBlake\nTroy\nMathew\nDonald\nDouglas\nGeorge\nRaymond\nDominic\nJonathon\nJuan\nBryce\nCraig\nAdrian\nManuel\nCarlos\nIsaac\nMario\nMartin\nRonald\nTanner\nDrew\nJohnathan\nLogan\nClayton\nJesus\nRandy\nRussell\nChase\nGary\nJack\nKristopher\nAlan\nAllen\nFrank\nCole\nCurtis\nDennis\nChristian\nLuis\nMax\nDillon\nLee\nRandall\nRoss\nZachariah\nConnor\nTodd\nAntonio\nBrady\nCalvin\nLance\nMarc\nMicheal\nPreston\nLawrence\nCollin\nColton\nJulian\nTheodore\nAndre\nClinton\nRuben\nJohnny\nShaun\nAlbert\nArthur\nJake\nJeffery\nMason\nTerry\nZachery\nBeau\nBrendan\nCarl\nDevon\nMaxwell\nTyson\nDane\nJay\nKelly\nMicah\nNicolas\nTrenton\nIsaiah\nJerry\nJon\nLarry\nNoah\nAngelo\nDarren\nDerrick\nGerald\nHunter\nJimmy\nJosiah\nMarshall\nRicky\nJavier\nJoe\nJohnathon\nNickolas\nSkyler\nTony\nWade\nBryant\nDean\nEli\nEthan\nGeoffrey\nGraham\nJessie\nLandon\nLouis\nOscar\nRicardo\nAlejandro\nHenry\nOrlando\nRoger\nTerrance\nBobby\nChance\nGavin\nIvan\nKellen\nLeo\nMiles\nRiley\nRudy\nStephan\nAlec\nAlfredo\nBen\nBranden\nBrock\nColby\nConor\nDallas\nDamien\nDonovan\nJarred\nJordon\nKirk\nKurt\nLeonard\nRoberto\nRoy\nStefan\nTrent\nTristan\nWeston\nBrad\nBrice\nDale\nDamian\nDanny\nJorge\nMiguel\nMorgan\nSimon\nStuart\nTerrence\nZackary\nZane\nArmando\nBo\nBrendon\nEmilio\nEugene\nEzekiel\nForrest\nFrancisco\nGerardo\nHarrison\nJarrod\nKarl\nMarco\nParker\nRafael\nRamon\nRay\nSkylar\nAlfred\nBret\nBruce\nCesar\nChaz\nClay\nCorbin\nCourtney\nDakota\nDominique\nEduardo\nJamie\nJoey\nKody\nLeroy\nOmar\nPablo\nRodney\nRory\nSalvador\nToby\nWalter\nXavier\nAndres\nBlaine\nDalton\nDusty\nEddie\nEdwin\nErick\nGlen\nJackson\nJaime\nKurtis\nLoren\nLorenzo\nMaurice\nPedro\nRaul\nReid\nSpenser\nWayne\nWyatt\nBarrett\nBilly\nBrody\nBryson\nCooper\nDarius\nDarrell\nDerick\nElliott\nEnrique\nGilbert\nHarry\nHeath\nJerome\nJosue\nKaleb\nKent\nKory\nLeon\nLukas\nMalcolm\nNeal\nNeil\nReed\nSebastian\nShay\nShea\nTy\nTyrell\nVance\nAbraham\nAllan\nAngel\nAusten\nBarry\nCarter\nCassidy\nChandler\nChris\nClint\nDante\nDevan\nDexter\nDiego\nDominick\nDuane\nEdgar\nGene\nGlenn\nHector\nJace\nKale\nKasey\nKeenan\nKorey\nMarvin\nReginald\nRonnie\nSergio\nTyrone\nWarren\nWillie\nAlonso\nAlonzo\nAron\nArturo\nAvery\nBennie\nClifford\nConrad\nDaren\nDuncan\nElias\nElijah\nEmanuel\nEmmett\nEstevan\nEverett\nFabian\nFernando\nFranklin\nFred\nFrederick\nGreggory\nIsiah\nIsmael\nJedidiah\nJoaquin\nJohnnie\nKalen\nKendall\nKenny\nMaximilian\nMyles\nNikolas\nNoel\nNolan\nReuben\nRobbie\nRodrick\nRoman\nSam\nShelby\nTate\nTerence\nTomas\nTommy\nTory\nTucker\nAddison\nAlvaro\nBart\nBraden\nBradly\nBrandan\nBrandyn\nBrenden\nBrennan\nBrenton\nBrooks\nByron\nColten\nDamon\nDarin\nDion\nDustyn\nDwight\nElliot\nErnest\nErnesto\nEsteban\nFelipe\nFrancis\nGarret\nGordon\nGriffin\nHans\nHarley\nHarold\nJered\nJosef\nJovan\nKelby\nLyle\nMarcos\nNelson\nOwen\nPerry\nPete\nRalph\nReece\nRemington\nRhett\nRudolph\nStanley\nSterling\nSteve\nTed\nTrever\nVicente\nVincente\nWill\nZackery\nMichael\nChristopher\nMatthew\nJoshua\nAndrew\nDaniel\nRyan\nNicholas\nJustin\nDavid\nJoseph\nRobert\nZachary\nJames\nKyle\nJohn\nTyler\nAnthony\nBrandon\nJacob\nAlexander\nKevin\nSteven\nEric\nAaron\nBenjamin\nAdam\nBrian\nWilliam\nJonathan\nTimothy\nSean\nThomas\nCody\nNathan\nTravis\nJeffrey\nJordan\nStephen\nJesse\nSamuel\nPatrick\nRichard\nDustin\nMark\nScott\nJason\nJeremy\nDerek\nPaul\nAustin\nCharles\nJared\nBryan\nTaylor\nCameron\nGregory\nIan\nCory\nEvan\nCorey\nChad\nTrevor\nBradley\nShane\nErik\nKenneth\nAlex\nDylan\nMarcus\nNathaniel\nVincent\nShawn\nDevin\nGarrett\nCasey\nPeter\nEthan\nJose\nJoel\nLuke\nLevi\nSpencer\nBrett\nLogan\nPhillip\nMitchell\nJeremiah\nJuan\nSeth\nCaleb\nKeith\nLucas\nDominic\nJulian\nGrant\nAdrian\nColin\nGabriel\nBlake\nChristian\nVictor\nIsaac\nWesley\nAntonio\nCarlos\nMathew\nDouglas\nEdward\nMario\nLuis\nRaymond\nGeorge\nJake\nClayton\nJonathon\nRonald\nMaxwell\nJesus\nTroy\nDonald\nManuel\nPhilip\nConnor\nCurtis\nColton\nDrew\nJohnathan\nTanner\nBrendan\nCraig\nLance\nRoss\nBryce\nChase\nDerrick\nKristopher\nAlan\nBrent\nGary\nIsaiah\nJeffery\nCollin\nDillon\nHenry\nLawrence\nMax\nAndre\nFrank\nMartin\nMicah\nRicardo\nCarl\nDarren\nFrancisco\nPreston\nRandy\nRodney\nZachariah\nCole\nDennis\nJack\nRussell\nGeoffrey\nSkyler\nCalvin\nMiguel\nTucker\nAngelo\nDevon\nJay\nNicolas\nAlbert\nArthur\nElijah\nJerry\nMarc\nRiley\nTheodore\nTodd\nTony\nTrenton\nClinton\nKirk\nLouis\nMicheal\nMiles\nShaun\nStefan\nDane\nGavin\nLarry\nNoah\nWade\nWeston\nChance\nDonovan\nKelly\nLandon\nRicky\nRoman\nRory\nRuben\nAlejandro\nAllen\nFabian\nLee\nNeil\nStephan\nTristan\nZachery\nAlec\nBeau\nBrady\nJavier\nJessie\nJoe\nJon\nMarco\nRandall\nRoger\nSergio\nBranden\nDominique\nJaime\nJohnny\nLorenzo\nBryant\nDale\nDean\nErick\nKellen\nKody\nNickolas\nRaul\nStuart\nTerry\nXavier\nAndres\nAngel\nClint\nDakota\nDamien\nDamon\nEduardo\nEugene\nGerald\nHarrison\nHunter\nJamie\nJimmy\nLeonard\nLeroy\nPedro\nTomas\nTrent\nWayne\nZane\nColby\nDavis\nForrest\nHector\nRoberto\nToby\nWalter\nAbraham\nBilly\nBruce\nChaz\nDamian\nDanny\nEli\nElias\nElliott\nHayden\nJarrod\nJohnathon\nJosiah\nLane\nLukas\nMason\nMorgan\nOmar\nRamon\nSam\nSimon\nTerrence\nTommy\nTyson\nBlaine\nCorbin\nDallas\nElliot\nEmilio\nFernando\nFrankie\nKeegan\nKurtis\nLoren\nMarcos\nOscar\nRafael\nRoy\nSebastian\nTerrance\nTy\nTylor\nAbel\nArmando\nAshton\nBrock\nBryson\nDante\nDon\nEdgar\nErnest\nFranklin\nGlen\nIvan\nKaleb\nKameron\nKeenan\nKory\nLeo\nMarshall\nParker\nRick\nSaul\nWyatt\nAlfredo\nBen\nBobby\nBrenden\nChandler\nDalton\nDarrell\nDominick\nEddie\nEdwin\nFelix\nGage\nGlenn\nIsiah\nJarred\nJerome\nJoey\nJordon\nKarl\nKendall\nLincoln\nLloyd\nLyle\nMalcolm\nMoses\nNathanial\nNikolas\nOliver\nOrlando\nReginald\nSalvador\nTrey\nVance\nZackary\nAllan\nAndy\nBenny\nBrendon\nClay\nColten\nConor\nDarrin\nDevan\nEmanuel\nEnrique\nHeath\nJackson\nJameson\nJonah\nKelsey\nKent\nMikel\nNelson\nNolan\nOctavio\nQuentin\nQuinn\nQuinton\nReed\nRyne\nSteve\nTyrel\nZackery\nZechariah\nAlberto\nAnton\nArturo\nAusten\nBrad\nBrennan\nBret\nCesar\nChris\nClifford\nColt\nConner\nCruz\nDemetrius\nDerick\nDion\nDrake\nFloyd\nFrederick\nGarret\nGraham\nGriffin\nGuadalupe\nIsrael\nJace\nJakob\nJarod\nJeramie\nJorge\nJulius\nKeaton\nKristofer\nKurt\nKyler\nLewis\nMarquis\nMelvin\nMitchel\nNathanael\nNigel\nPablo\nPierce\nRamiro\nRandal\nRashad\nRene\nReuben\nRogelio\nRonnie\nRudy\nShannon\nStanley\nSterling\nTerence\nTyrell\nWarren\nAhmad\nAli\nAndreas\nAubrey\nBarry\nBo\nBrody\nByron\nCarter\nCedric\nCharlie\nCurt\nDarrel\nDiego\nDonte\nDuane\nDusty\nEddy\nEmerson\nEmmanuel\nEstevan\nFelipe\nFred\nGene\nGerardo\nGerman\nGilbert\nGonzalo\nGustavo\nGuy\nHarley\nHarry\nJamal\nJamar\nJeramy\nJulio\nKelby\nKelvin\nKen\nKorey\nLamar\nLonnie\nLouie\nMackenzie\nMyles\nNico\nPerry\nPete\nReece\nReid\nRemington\nRex\nRhett\nRobin\nSpenser\nTobias\nTory\nVicente\nWestley\nWillie\nMichael\nChristopher\nJoshua\nMatthew\nAndrew\nRyan\nNicholas\nDavid\nKyle\nTyler\nZachary\nJustin\nDaniel\nJames\nJoseph\nJohn\nJacob\nAnthony\nRobert\nBrandon\nCody\nAlexander\nJordan\nBenjamin\nAaron\nJonathan\nKevin\nEric\nSteven\nWilliam\nAdam\nThomas\nNathan\nSean\nTimothy\nSamuel\nBrian\nPatrick\nTravis\nRichard\nJeremy\nJesse\nJason\nStephen\nTaylor\nJeffrey\nCameron\nScott\nAustin\nDustin\nDerek\nPaul\nCharles\nIan\nMark\nEvan\nJared\nAlex\nEthan\nGregory\nShane\nJose\nTrevor\nDylan\nPeter\nGarrett\nCasey\nCorey\nCory\nKenneth\nBradley\nBryan\nBrett\nMarcus\nAdrian\nPhillip\nShawn\nSpencer\nNathaniel\nCaleb\nMitchell\nDevin\nBlake\nSeth\nVincent\nErik\nLogan\nLuke\nColton\nGabriel\nChristian\nLucas\nJuan\nLevi\nKeith\nRaymond\nChad\nIsaac\nColin\nDominic\nJeremiah\nChase\nEdward\nJohnathan\nDillon\nWesley\nCarlos\nJoel\nBryce\nMario\nJonathon\nMax\nDakota\nDevon\nMartin\nTanner\nMathew\nJulian\nVictor\nJesus\nPreston\nGrant\nBrent\nIsaiah\nJeffery\nManuel\nRussell\nTroy\nAngelo\nDalton\nDouglas\nLance\nBrendan\nCollin\nCraig\nLuis\nPhilip\nRandy\nRonald\nCalvin\nConnor\nDrew\nMaxwell\nFrank\nLee\nMason\nMorgan\nAlan\nAntonio\nClayton\nDonald\nDonovan\nGeorge\nJack\nJessie\nNicolas\nDerrick\nJake\nGary\nGeoffrey\nRicardo\nTodd\nAllen\nDennis\nFrancisco\nGerald\nRoss\nChance\nAlec\nClinton\nCole\nCurtis\nJackson\nJay\nKristopher\nMicheal\nBeau\nGavin\nMiguel\nTony\nCarl\nDarren\nJohnny\nMicah\nOmar\nRicky\nHayden\nNickolas\nZachery\nClifford\nDominique\nHenry\nHunter\nKaleb\nLawrence\nLouis\nNoah\nRiley\nZachariah\nColby\nJohnathon\nJon\nJosiah\nLorenzo\nMarc\nParker\nTy\nAlbert\nAlejandro\nAndre\nBrennan\nBrock\nDane\nDanny\nIvan\nJerry\nLandon\nMiles\nRandall\nTerry\nTheodore\nTrent\nWeston\nBranden\nDarian\nGilbert\nGraham\nJaime\nJavier\nKelly\nZackary\nAngel\nFabian\nJarrod\nKeegan\nKirk\nMarshall\nOscar\nRafael\nShaun\nSimon\nSkyler\nStefan\nTrenton\nTyson\nXavier\nArthur\nDale\nDamon\nDean\nEduardo\nElias\nElijah\nEmilio\nErnest\nEverett\nJimmy\nJoe\nJordon\nJorge\nKeenan\nKody\nLeonard\nRoman\nStuart\nAbraham\nCesar\nEli\nElliot\nEugene\nForrest\nHector\nJamal\nJamie\nRoger\nRuben\nZane\nBobby\nConor\nConrad\nEdgar\nFernando\nHarrison\nIsiah\nJakob\nKendall\nLarry\nRudy\nSaul\nStephan\nTristan\nTucker\nWade\nAndres\nBrendon\nBruce\nClint\nDarius\nEstevan\nNeil\nRamon\nRodney\nSebastian\nSergio\nTylor\nTyrone\nVance\nWayne\nAlfredo\nArmando\nDerick\nDominick\nHeath\nKameron\nKarl\nKristian\nLeroy\nNoel\nQuinn\nReid\nTrey\nWalter\nWarren\nBrenden\nBryant\nDevan\nDrake\nEmmanuel\nGarret\nIsrael\nJace\nJarred\nJayson\nJoey\nKiefer\nKurtis\nMalcolm\nMarcos\nMaurice\nMitchel\nNolan\nOrlando\nQuinton\nRoberto\nSam\nShea\nSkylar\nSpenser\nSterling\nTerrance\nTomas\nTommy\nAlberto\nAlfonso\nBilly\nBraden\nChaz\nCorbin\nDamian\nDamien\nDarrell\nDerik\nDiego\nDion\nDwayne\nEdwin\nErick\nErnesto\nFrederick\nGage\nGarrick\nJerome\nJulio\nKasey\nKeaton\nLukas\nMyles\nNathanael\nNikolas\nReuben\nRick\nRoy\nSteve\nTerrence\nThaddeus\nZackery\nAbel\nBo\nBret\nBryson\nByron\nClay\nConner\nDarrin\nDavis\nDeon\nEddie\nElliott\nGerardo\nJaron\nJusten\nKellen\nKolby\nLane\nMackenzie\nMarquis\nNeal\nPablo\nRex\nRonnie\nShannon\nShayne\nSheldon\nTed\nTyrel\nAlfred\nAli\nAndy\nAntoine\nAron\nArturo\nAshton\nBennett\nBraxton\nBrenton\nBrice\nBrooks\nCarlton\nCarter\nChester\nColten\nDesmond\nDonavan\nDuncan\nFelix\nFloyd\nFrankie\nFranklin\nGiovanni\nGreg\nGustavo\nIsmael\nLeandro\nLeonel\nLionel\nMelvin\nMoses\nPedro\nQuentin\nRalph\nRaul\nReece\nReed\nRemington\nRory\nShelby\nStanley\nTalon\nToby\nVernon\nAdan\nAdolfo\nAhmad\nAllan\nAlonzo\nBarry\nBen\nBradly\nCedric\nDallas\nDanial\nDaren\nDarin\nDarryl\nDereck\nDonte\nDuane\nDwight\nEmanuel\nEnrique\nErich\nFrancis\nGilberto\nGlen\nGreggory\nGriffin\nHans\nHarry\nJarrett\nJoaquin\nJosef\nJoshuah\nJovan\nKacey\nKale\nKenny\nKent\nKory\nKraig\nKurt\nLamar\nLeon\nLonnie\nLyle\nMalik\nMarco\nMarkus\nMarvin\nMick\nOwen\nReginald\nRene\nReyes\nRocky\nRodolfo\nRoyce\nSidney\nStewart\nTate\nTerence\nMichael\nJoshua\nChristopher\nMatthew\nAndrew\nTyler\nRyan\nDaniel\nJacob\nNicholas\nZachary\nDavid\nCody\nJoseph\nAnthony\nBrandon\nJames\nJustin\nJohn\nKyle\nRobert\nAlexander\nAaron\nEric\nJordan\nWilliam\nSteven\nKevin\nBenjamin\nJonathan\nAdam\nThomas\nSean\nSamuel\nNathan\nTimothy\nAustin\nTaylor\nBrian\nDylan\nRichard\nTravis\nPatrick\nJeffrey\nJeremy\nDerek\nJesse\nCharles\nJason\nIan\nMark\nStephen\nCameron\nAlex\nEthan\nChristian\nPaul\nTrevor\nScott\nEvan\nJose\nDevin\nGabriel\nDustin\nGarrett\nKenneth\nJared\nGregory\nNathaniel\nShane\nLogan\nMarcus\nSpencer\nDillon\nCasey\nConnor\nCory\nVincent\nSeth\nPeter\nCaleb\nLucas\nLuke\nMitchell\nBradley\nCorey\nJeremiah\nErik\nIsaac\nJuan\nBryan\nJoel\nTanner\nShawn\nChad\nBlake\nPhillip\nDominic\nCarlos\nJesus\nLevi\nLuis\nAdrian\nColton\nCole\nDalton\nKeith\nRonald\nBrett\nDevon\nRaymond\nBryce\nVictor\nAntonio\nWesley\nDakota\nGrant\nJulian\nChase\nJake\nManuel\nBrendan\nGeorge\nMartin\nColin\nEdward\nIsaiah\nMario\nAngelo\nDonald\nDouglas\nJohnathan\nMason\nMiguel\nJonathon\nClayton\nCurtis\nMaxwell\nZachariah\nAlan\nTroy\nClinton\nAlec\nCraig\nLance\nMathew\nDrew\nMax\nRicardo\nCollin\nDerrick\nNoah\nAllen\nAngel\nCalvin\nDonovan\nHunter\nJack\nKristopher\nRiley\nBrent\nHenry\nPreston\nMicah\nPhilip\nRandy\nTony\nFrancisco\nGary\nGeoffrey\nJackson\nLarry\nNicolas\nSergio\nArmando\nGavin\nHayden\nJeffery\nJorge\nColby\nDarian\nElijah\nFrank\nLawrence\nRussell\nTodd\nHarrison\nAndre\nChance\nDominick\nDominique\nJay\nJessie\nJordon\nKaleb\nKody\nLouis\nMarc\nMicheal\nRuben\nSkyler\nTheodore\nZachery\nAlejandro\nBeau\nBranden\nDamon\nGage\nJosiah\nLandon\nParker\nRoss\nWalter\nWeston\nDanny\nGerald\nGilbert\nJon\nJulio\nLee\nMarco\nNickolas\nTucker\nXavier\nZackary\nBilly\nBobby\nCesar\nDarius\nDarren\nFabian\nHector\nIvan\nJavier\nJerry\nJoe\nJohnathon\nKeegan\nMorgan\nOmar\nTrenton\nCarl\nDane\nEli\nEmilio\nKelly\nKendall\nNolan\nArthur\nBrenden\nConor\nEddie\nEdgar\nEdwin\nErick\nFernando\nForrest\nGraham\nJohnny\nMarshall\nMaurice\nMiles\nQuinn\nStefan\nWyatt\nAbraham\nArturo\nClint\nDale\nDemetrius\nJakob\nKeenan\nRaul\nRicky\nStephan\nTy\nWade\nZane\nAlfredo\nAndres\nDamian\nDavis\nDean\nMalcolm\nRandall\nSterling\nConrad\nCooper\nEnrique\nErnest\nHarley\nIsiah\nJimmy\nLeo\nMarcos\nMarquise\nMitchel\nOscar\nRodney\nSebastian\nShaun\nSkylar\nTerry\nTrent\nAndy\nBrennan\nBrock\nBryant\nChaz\nDamien\nDarryl\nElliot\nElliott\nFranklin\nFrederick\nGerardo\nJace\nJamie\nJarrod\nKurt\nLukas\nNathanael\nNeil\nOrlando\nRoberto\nRoger\nRoman\nRoy\nShelby\nSimon\nStuart\nTobias\nTyson\nWayne\nWill\nAlfred\nAron\nBrendon\nBrenton\nCarter\nDennis\nDerik\nEduardo\nGustavo\nHarry\nJaime\nJaron\nJarred\nKarl\nKeaton\nKory\nLane\nLeon\nLorenzo\nMoises\nNikolas\nOwen\nRamon\nRodolfo\nSalvador\nTerrance\nTyrel\nWarren\nWillie\nAbel\nAlexis\nBlaine\nBrady\nBrandan\nBret\nBruce\nBryson\nConner\nCorbin\nDallas\nDerick\nEmmanuel\nFelix\nGriffin\nHans\nHeath\nKellen\nKirk\nKorey\nKristofer\nKurtis\nLeonard\nRafael\nRay\nSam\nSteve\nTerrence\nTomas\nTommy\nTrey\nTylor\nVance\nAllan\nAlonso\nArron\nBrad\nBraden\nBrennen\nBrice\nCamron\nCarson\nColten\nCristian\nDesmond\nDiego\nDonavan\nElias\nEugene\nGarett\nGarret\nGlen\nJakeob\nKalen\nLoren\nPedro\nQuincy\nReid\nRobin\nRudy\nSage\nShea\nUriah\nAdan\nAddison\nAlbert\nAlberto\nAric\nAshton\nAvery\nBen\nBlair\nBo\nByron\nClarence\nClifford\nDevan\nDrake\nEarl\nEstevan\nEverett\nFelipe\nGreggory\nIsmael\nIsrael\nJarrett\nKade\nKasey\nLeland\nMarvin\nNathanial\nNeal\nNelson\nRamiro\nReed\nReginald\nRonnie\nSheldon\nSonny\nTalon\nTevin\nThaddeus\nTristan\nVicente\nZackery\nAlfonso\nAriel\nCade\nCedric\nDallin\nDamion\nDante\nDarin\nDario\nDarnell\nDeandre\nEloy\nEzekiel\nFred\nGene\nGilberto\nGiovanni\nGrayson\nGuy\nHarlan\nHoward\nHugo\nIssac\nJayson\nJoey\nJonas\nJory\nJosue\nKent\nKevan\nKole\nLeslie\nLincoln\nMalachi\nMatthias\nMickey\nMikel\nNico\nNoel\nPatricio\nPerry\nPierce\nRamsey\nRandal\nRaphael\nRene\nRhett\nRoderick\nRoland\nRory\nRyne\nSawyer\nSherman\nTed\nToby\nTory\nTrevon\nTyrell\nTyrone\nMichael\nJoshua\nChristopher\nTyler\nRyan\nMatthew\nJacob\nNicholas\nAndrew\nBrandon\nZachary\nDaniel\nJoseph\nCody\nDavid\nAlexander\nKyle\nJohn\nJustin\nJames\nRobert\nAnthony\nDylan\nJordan\nWilliam\nBenjamin\nAustin\nEric\nSamuel\nKevin\nSean\nThomas\nAaron\nSteven\nNathan\nJonathan\nAdam\nJesse\nTaylor\nBrian\nTimothy\nDillon\nPatrick\nCameron\nConnor\nIan\nJeffrey\nChristian\nRichard\nTravis\nJason\nEvan\nJeremy\nTrevor\nJose\nDerek\nJared\nMark\nTanner\nScott\nAlex\nDustin\nStephen\nCharles\nGarrett\nPaul\nLuke\nMitchell\nCaleb\nNathaniel\nDominic\nEthan\nMarcus\nShane\nGabriel\nKenneth\nDevin\nShawn\nSeth\nColin\nDakota\nJoel\nJuan\nBryan\nDalton\nLucas\nLuis\nPeter\nSpencer\nCasey\nErik\nVincent\nColton\nBlake\nBradley\nAdrian\nIsaac\nLogan\nCole\nCarlos\nGregory\nKeith\nLevi\nCory\nJeremiah\nDevon\nRaymond\nCorey\nJesus\nPhillip\nBrett\nEdward\nAntonio\nIsaiah\nBryce\nVictor\nManuel\nJake\nMaxwell\nChad\nChase\nWesley\nJulian\nJack\nTroy\nDerrick\nJonathon\nMathew\nAngelo\nHunter\nMario\nDonald\nGeorge\nGrant\nMiguel\nZachariah\nBrendan\nMason\nAndre\nCollin\nDonovan\nDrew\nFrancisco\nJohnathan\nMartin\nSkyler\nAlejandro\nCurtis\nNicolas\nJorge\nMax\nZachery\nAngel\nClayton\nTony\nAlan\nCraig\nLawrence\nMicheal\nNoah\nAlec\nClinton\nConner\nDouglas\nFrank\nGary\nRiley\nRonald\nXavier\nKody\nBrent\nCarl\nJackson\nOmar\nRicardo\nRuben\nTrenton\nTrey\nDamian\nEdgar\nHayden\nPhilip\nPreston\nColby\nKaleb\nMicah\nEli\nHenry\nJeffery\nJosiah\nLance\nLandon\nLee\nBrady\nConor\nDominick\nElijah\nJaime\nLouis\nMarco\nBobby\nDevante\nIvan\nJohnathon\nJohnny\nRandy\nRicky\nTrent\nTucker\nBeau\nCalvin\nDominique\nEmilio\nFernando\nKeenan\nMarc\nMarcos\nRandall\nZane\nDarren\nForrest\nGage\nLarry\nParker\nRussell\nSebastian\nWalter\nAlbert\nCesar\nDarius\nJavier\nJay\nKristopher\nMarshall\nNickolas\nOscar\nRoger\nStefan\nTodd\nTylor\nAndres\nArmando\nBranden\nChance\nDallas\nGerald\nMorgan\nPedro\nRoss\nTristan\nTy\nKurt\nQuinn\nRaul\nSergio\nWeston\nAllen\nArthur\nDamien\nDrake\nEddie\nEduardo\nGerardo\nGilbert\nGiovanni\nHector\nJerry\nJessie\nMiles\nNolan\nRamon\nRoman\nZackary\nBrendon\nBrock\nGavin\nJace\nJulio\nMarkus\nMyles\nNeil\nSage\nWyatt\nBrennan\nBryant\nCooper\nDamon\nDanny\nDean\nErick\nErnest\nGeoffrey\nJarred\nJarrett\nJon\nJordon\nKeegan\nLukas\nMackenzie\nMalcolm\nRoberto\nRodney\nWade\nWarren\nZackery\nAbraham\nBlaine\nBraden\nBret\nCarter\nCorbin\nDale\nDavis\nDennis\nElias\nFabian\nGarret\nIsrael\nJimmy\nJoe\nKameron\nOrlando\nRonnie\nSaul\nShaun\nSterling\nTevin\nAbel\nCarson\nChandler\nClint\nDane\nDiego\nDion\nEnrique\nFranklin\nHarry\nJamie\nKelly\nNeal\nRudy\nSalvador\nAlberto\nArturo\nAshton\nBrenden\nBryson\nCristian\nDarian\nDimitri\nEdwin\nEmmanuel\nHarrison\nJamal\nKolton\nLane\nLeo\nLeonard\nLorenzo\nNathanial\nNikolas\nOliver\nRafael\nReed\nTerry\nTheodore\nAlfred\nAron\nBen\nBilly\nBraxton\nCamron\nColten\nCullen\nDylon\nElliot\nEmanuel\nEugene\nFelipe\nGlen\nGlenn\nGriffin\nGuillermo\nIsiah\nJakob\nJarrod\nKendall\nKurtis\nOwen\nPierce\nQuinton\nReid\nShelby\nSkylar\nStephan\nTalon\nTory\nTyrell\nAlexandro\nAusten\nAvery\nBailey\nBo\nCassidy\nClarence\nClay\nDarrell\nDemetrius\nDevan\nDonavan\nErich\nFrancis\nFrederick\nGraham\nGreg\nGuadalupe\nGustavo\nHarley\nIssac\nJakeob\nKellen\nKenny\nKorey\nKyler\nLeroy\nLonnie\nMarcel\nMarquis\nMitchel\nMoises\nNathanael\nQuentin\nRoderick\nRodolfo\nRoy\nSimon\nTeddy\nTerrence\nTomas\nTre\nTyree\nVernon\nVicente\nWayne\nWilson\nAlfredo\nAlonzo\nAric\nAugustus\nBruce\nBryon\nByron\nClifford\nConrad\nDeven\nDon\nDonavon\nDuncan\nDwayne\nDwight\nElliott\nEloy\nErnesto\nForest\nFrankie\nGarth\nGilberto\nIsmael\nJarod\nJaron\nJessy\nJimmie\nJosh\nJulius\nKeanu\nKegan\nKeifer\nKoby\nKristian\nLeonardo\nLoren\nMalachi\nMarvin\nMaurice\nNico\nOrion\nRalph\nRay\nReginald\nRogelio\nRusty\nSam\nSawyer\nShay\nShea\nSheldon\nTate\nTerrance\nTommy\nTyrone\nTyson\nUriah\nUriel\nWalker\nWaylon\nWestin\nAli\nAllan\nAugustine\nBrandyn\nBraydon\nBrice\nBrooks\nCale\nCharlie\nChaz\nCodey\nColeman\nColter\nDante\nDeandre\nDerrik\nDesmond\nDevonte\nDillion\nDominik\nEarl\nEsteban\nEstevan\nFidel\nFreddie\nFredrick\nGino\nGunnar\nHugo\nIgnacio\nJamison\nJavon\nJedidiah\nJory\nJosue\nJovan\nJulien\nKeaton\nKelby\nKellan\nKenton\nKirk\nKory\nLewis\nLouie\nMilo\nNelson\nNestor\nRaymundo\nRodrigo\nSantiago\nSidney\nSonny\nStuart\nTerence\nTrae\nTrever\nTyrel\nMichael\nTyler\nJoshua\nMatthew\nChristopher\nJacob\nAndrew\nNicholas\nRyan\nBrandon\nZachary\nJoseph\nDavid\nDaniel\nKyle\nAlexander\nCody\nJohn\nAustin\nJames\nJustin\nAnthony\nJordan\nRobert\nWilliam\nBenjamin\nDylan\nEric\nAaron\nSean\nJonathan\nTaylor\nSamuel\nNathan\nAdam\nThomas\nSteven\nConnor\nChristian\nJesse\nRichard\nKevin\nTimothy\nBrian\nJason\nTravis\nAlex\nPatrick\nCameron\nJeremy\nStephen\nIan\nCharles\nTrevor\nDillon\nEvan\nJose\nTanner\nLuke\nJared\nPaul\nGarrett\nJeffrey\nMark\nDerek\nMarcus\nNathaniel\nCaleb\nDustin\nLogan\nScott\nBryan\nDakota\nDominic\nKenneth\nEthan\nSeth\nShane\nCory\nMitchell\nDevin\nCole\nIsaac\nLucas\nJuan\nSpencer\nColton\nDalton\nGabriel\nJesus\nBlake\nGregory\nShawn\nVincent\nCasey\nLuis\nAdrian\nVictor\nBryce\nErik\nCollin\nCarlos\nIsaiah\nChase\nJack\nLevi\nCorey\nJoel\nBradley\nColin\nGrant\nMario\nBrett\nHunter\nPeter\nAlec\nAntonio\nJake\nFrancisco\nJeremiah\nWesley\nClayton\nDevon\nJonathon\nNicolas\nChad\nMason\nTroy\nEdward\nElijah\nKeith\nMax\nHayden\nPhillip\nConner\nDonovan\nJackson\nMartin\nJulian\nRiley\nMiguel\nNoah\nSkyler\nAngelo\nDrew\nJohnathan\nPreston\nSergio\nBrady\nRaymond\nXavier\nGeorge\nMaxwell\nZachariah\nZachery\nParker\nAlejandro\nHenry\nJavier\nJeffery\nJorge\nRonald\nRussell\nBrendan\nDonald\nMathew\nPhilip\nRuben\nTrey\nDarren\nFrank\nKristopher\nGage\nMicheal\nTrent\nZane\nCarl\nDerrick\nDominick\nEduardo\nTy\nChance\nConor\nCristian\nDamian\nDouglas\nFernando\nJerry\nOmar\nAndre\nBranden\nDante\nDennis\nKaleb\nLance\nManuel\nRicardo\nSebastian\nJessie\nJosiah\nKody\nLandon\nLouis\nNickolas\nCesar\nDrake\nEli\nEmilio\nFabian\nForrest\nHector\nAlan\nJakob\nKeenan\nTheodore\nWeston\nDallas\nDarian\nEdgar\nJohnathon\nJohnny\nRandall\nTony\nTrenton\nBrent\nColten\nCurtis\nGeoffrey\nIvan\nMicah\nOrlando\nAndres\nArmando\nArturo\nCalvin\nCraig\nDean\nDominique\nEugene\nLawrence\nMarco\nMiles\nNolan\nStefan\nTylor\nAngel\nClinton\nColby\nDanny\nDiego\nGary\nJulio\nKeegan\nLee\nMarshall\nNikolas\nRamon\nAllen\nCooper\nDamien\nHarrison\nJoe\nMarc\nMyles\nOscar\nPedro\nQuinn\nRandy\nRaul\nAlfredo\nAvery\nBeau\nBryson\nDarius\nEzekiel\nJay\nKurt\nKyler\nLorenzo\nMorgan\nRoberto\nWyatt\nBrenden\nBrennan\nDamon\nDavis\nEdwin\nGraham\nJace\nNeil\nRafael\nRodney\nArthur\nBilly\nBrock\nDuncan\nEnrique\nIsiah\nJaime\nLarry\nRay\nReed\nRoy\nTodd\nTucker\nBraden\nBrendon\nBruce\nDane\nEsteban\nGavin\nGerald\nJamie\nJoey\nJon\nJonah\nJordon\nKarl\nKendall\nKurtis\nMarcos\nRicky\nRoman\nShaquille\nTomas\nAbraham\nAddison\nAndy\nAshton\nBen\nClint\nDale\nGilbert\nIsrael\nJarrod\nJimmy\nLukas\nMalcolm\nMarkus\nQuinton\nSaul\nSheldon\nSterling\nTre\nTristan\nWalter\nZackery\nAlexis\nChandler\nDevan\nElias\nElliot\nErnest\nFranklin\nGarret\nGerardo\nGustavo\nHeath\nJalen\nKai\nKeaton\nKelly\nPierce\nReid\nRoss\nRudy\nSawyer\nShaun\nStuart\nToby\nTyson\nWalker\nZackary\nAlbert\nAlfonso\nBobby\nBraxton\nBryant\nCade\nCassidy\nCedric\nClay\nColt\nDevante\nDion\nEmmanuel\nEstevan\nFrederick\nIsmael\nIssac\nJosue\nKasey\nKory\nLoren\nMoses\nRick\nRodolfo\nRory\nShelby\nSkylar\nTerrell\nTerry\nTyrel\nAidan\nAlberto\nAllan\nAric\nBo\nBrenton\nByron\nCarson\nCarter\nChaz\nColeman\nCullen\nDarrell\nDarryl\nDeon\nDerick\nDwight\nEddie\nElliott\nGlen\nJarred\nJarrett\nJosef\nJulien\nKameron\nLane\nLeonard\nLeroy\nMackenzie\nMalachi\nOliver\nPayton\nPerry\nRamiro\nRoger\nRonnie\nSalvador\nSam\nSantiago\nSimon\nStephan\nThaddeus\nTommy\nTrevon\nZakary\nZechariah\nAli\nAndreas\nBlaine\nBryon\nDarien\nDaryl\nDayne\nDayton\nDeandre\nDemetrius\nDerik\nDexter\nDimitri\nDusty\nErick\nFelipe\nFrankie\nFredrick\nGrayson\nGuadalupe\nJustice\nKade\nKirk\nLeon\nLiam\nLloyd\nMaurice\nMelvin\nMitchel\nMoises\nNathanael\nNathanial\nPablo\nQuentin\nReginald\nRobin\nRogelio\nRyne\nSage\nShayne\nTorey\nUriah\nWarren\nWayne\nWestley\nAbel\nAdan\nAlfred\nAlonzo\nAusten\nAustyn\nBrad\nBrayden\nBret\nCheyenne\nChris\nClifford\nConrad\nCorbin\nCyrus\nDomingo\nDonavan\nEloy\nErnesto\nForest\nFrancis\nGene\nGiovanni\nGordon\nGreyson\nGuillermo\nGunnar\nHarley\nHolden\nHugo\nJade\nJavon\nJaylen\nJerome\nJess\nJorden\nKane\nKeagan\nKent\nKiel\nLeif\nLeo\nMalik\nMikal\nMychael\nNoel\nOwen\nPete\nReece\nReese\nShannon\nStetson\nSteve\nTalon\nTate\nTayler\nTerrance\nTobias\nTrae\nTyrell\nWade\nMichael\nTyler\nJoshua\nJacob\nAustin\nMatthew\nNicholas\nChristopher\nAndrew\nBrandon\nZachary\nDaniel\nRyan\nJoseph\nAlexander\nDavid\nKyle\nAnthony\nCody\nJames\nJustin\nJohn\nWilliam\nBenjamin\nJonathan\nDylan\nSamuel\nJordan\nRobert\nAaron\nEric\nNathan\nKevin\nThomas\nConnor\nJesse\nSean\nChristian\nTimothy\nAdam\nTaylor\nCameron\nIan\nSteven\nGabriel\nBrian\nGarrett\nJeremy\nTrevor\nTanner\nCharles\nDominic\nJose\nMarcus\nPatrick\nTravis\nDustin\nJared\nJason\nRichard\nStephen\nEvan\nIsaac\nNathaniel\nScott\nDerek\nCaleb\nLogan\nLuke\nMark\nDakota\nJeffrey\nDillon\nMitchell\nAlex\nDevin\nSeth\nAlec\nJuan\nLucas\nBryan\nCole\nPaul\nEthan\nCasey\nDevon\nShane\nGregory\nJesus\nDalton\nErik\nHunter\nKenneth\nPeter\nBradley\nColton\nShawn\nVincent\nBryce\nJack\nElijah\nLevi\nLuis\nCory\nAdrian\nIsaiah\nJackson\nChase\nSpencer\nColin\nBlake\nJoel\nJeremiah\nAntonio\nBrett\nCollin\nCorey\nGrant\nMiguel\nJulian\nBrendan\nCarlos\nJake\nWyatt\nHenry\nRaymond\nVictor\nChad\nPhillip\nAlejandro\nConner\nEdward\nManuel\nNoah\nRiley\nDominick\nFrancisco\nJohnathan\nTroy\nWesley\nZachariah\nClayton\nMason\nNicolas\nOmar\nXavier\nGage\nJorge\nEduardo\nGeorge\nMartin\nOscar\nSergio\nKeith\nMax\nForrest\nAlan\nAndres\nSkyler\nTy\nMario\nMaxwell\nAngelo\nBrent\nHayden\nMicah\nRussell\nAndre\nCristian\nDante\nFrank\nHarrison\nJonathon\nJosiah\nMarcos\nZachery\nDamian\nDonald\nDrew\nTucker\nDallas\nDamon\nDonovan\nJeffery\nJonah\nCesar\nKaleb\nLandon\nPreston\nRicardo\nBrady\nChance\nConor\nCurtis\nJaime\nKody\nLane\nCarl\nCraig\nDerrick\nFernando\nHector\nJohnny\nParker\nRuben\nSebastian\nTrenton\nTrey\nAvery\nDrake\nJessie\nNickolas\nAllen\nColby\nDarian\nDennis\nDouglas\nIvan\nJalen\nKendall\nKristopher\nKyler\nMathew\nPedro\nPhilip\nTrent\nZackary\nAngel\nBrendon\nDarius\nEdgar\nEmilio\nGraham\nKeenan\nLance\nLawrence\nMarco\nQuinn\nRoberto\nAlberto\nBranden\nDarren\nElias\nGary\nLouis\nMarc\nTheodore\nArmando\nArthur\nAshton\nBrenden\nDamien\nDane\nEli\nGavin\nJakob\nJoe\nKarl\nKeegan\nLiam\nLorenzo\nMiles\nNolan\nRaul\nRonald\nAlfredo\nBeau\nCalvin\nClay\nDavis\nDiego\nDuncan\nIsiah\nJavier\nJerry\nJohnathon\nJulio\nKeaton\nLeo\nOrlando\nRafael\nReed\nRoman\nTylor\nAlbert\nBraden\nChandler\nColten\nCooper\nDominique\nGustavo\nRandall\nRandy\nSkylar\nSterling\nAbraham\nAusten\nBrennan\nElliot\nFabian\nGarret\nGeoffrey\nGerardo\nJon\nKolton\nMarshall\nMicheal\nRamon\nShaun\nTodd\nWeston\nAidan\nCade\nDevante\nErick\nJimmy\nLeonard\nMorgan\nSalvador\nStefan\nAndy\nCorbin\nDevan\nErnesto\nGiovanni\nHugo\nIsrael\nJace\nJaden\nJamie\nJay\nJoey\nLarry\nMackenzie\nMalcolm\nNathanial\nSage\nSantiago\nSimon\nTate\nTomas\nTyson\nZane\nAli\nBrock\nCarson\nDale\nDanny\nDeon\nEnrique\nGilbert\nJordon\nLee\nMyles\nReid\nRicky\nRodney\nRoger\nRudy\nSam\nTerry\nTrevon\nTristan\nWade\nZackery\nAddison\nAlvaro\nEdwin\nForest\nGunnar\nHarley\nHumberto\nLeon\nLeonardo\nNikolas\nSawyer\nTerrance\nTony\nTre\nZechariah\nAdan\nArturo\nBilly\nBrennen\nBret\nBrody\nByron\nDakotah\nDeandre\nDemetrius\nDonavan\nEddie\nEzekiel\nEzequiel\nJaron\nJarrod\nJoaquin\nKai\nLeonel\nNeil\nOliver\nOrion\nReginald\nRoss\nShannon\nShelby\nStuart\nUriel\nWill\nAldo\nAron\nAugustus\nBobby\nBrooks\nCarter\nChaz\nClint\nColter\nConrad\nCullen\nDarion\nDarrell\nDomenic\nDuane\nFelipe\nFrankie\nFranklin\nGerald\nGilberto\nGrady\nGrayson\nKegan\nKurtis\nLukas\nMalachi\nMarquis\nMaurice\nNathanael\nNick\nNoel\nQuinton\nRay\nReece\nRhett\nShea\nStetson\nTalon\nTerrence\nTommy\nVaughn\nWalker\nWalter\nAlexis\nAlfonso\nAlonso\nAlonzo\nAric\nAugust\nBlaine\nBrandan\nBraxton\nBrayden\nBrice\nClinton\nDaulton\nDavon\nDean\nDerick\nDesmond\nDevonte\nDion\nDominik\nGarrick\nGuadalupe\nHans\nHudson\nIsmael\nJairo\nJayson\nJosue\nKaden\nKane\nKasey\nKelly\nKieran\nKirk\nKurt\nMaximilian\nRene\nRick\nRodrigo\nRogelio\nRonnie\nRoy\nShayne\nStephan\nSteve\nTracy\nTrever\nTyrell\nAbel\nAdolfo\nAhmed\nAllan\nAnton\nAriel\nAustyn\nBarry\nBen\nBennett\nBishop\nBrad\nBrant\nBridger\nBryant\nBryson\nCaden\nCedric\nCharlie\nDarnell\nDarrin\nDeion\nDenzel\nDomonic\nDustyn\nElliott\nEmmanuel\nEstevan\nEugene\nFrancis\nGlen\nGlenn\nGriffin\nHoward\nIssac\nJasper\nJerome\nJerrod\nKade\nKeanu\nKelvin\nKent\nKory\nLawson\nLayne\nLeif\nLeroy\nLoren\nNeal\nNikolai\nOwen\nPablo\nPayton\nPierce\nQuentin\nRico\nRiver\nRocky\nRoderick\nSantana\nSantos\nSaul\nTaran\nTevin\nTravon\nVince\nWestley\nZakary\nMichael\nTyler\nJacob\nJoshua\nAustin\nMatthew\nAndrew\nNicholas\nChristopher\nBrandon\nZachary\nRyan\nAlexander\nDaniel\nDavid\nJoseph\nAnthony\nJohn\nKyle\nCody\nWilliam\nJustin\nJordan\nJames\nRobert\nDylan\nSamuel\nBenjamin\nAaron\nJonathan\nNathan\nThomas\nEric\nChristian\nAdam\nTanner\nConnor\nKevin\nJose\nSean\nLogan\nJesse\nIan\nEvan\nCameron\nSteven\nTimothy\nBrian\nJason\nGabriel\nTrevor\nCaleb\nTaylor\nIsaiah\nGarrett\nPatrick\nJeremy\nRichard\nTravis\nDillon\nMitchell\nStephen\nHunter\nAlec\nJuan\nDakota\nDevin\nNathaniel\nJared\nElijah\nDustin\nEthan\nLuke\nAlex\nCarlos\nLuis\nDominic\nIsaac\nNoah\nCharles\nPaul\nDerek\nMarcus\nTristan\nBryan\nDalton\nMark\nJeffrey\nBlake\nPeter\nAdrian\nJesus\nSeth\nJack\nKenneth\nScott\nColton\nAntonio\nSpencer\nLevi\nWyatt\nCole\nVictor\nBradley\nChase\nLucas\nGrant\nShane\nErik\nMason\nAlejandro\nBryce\nJoel\nJake\nJackson\nBrendan\nClayton\nDevon\nGregory\nJeremiah\nVincent\nBrett\nCasey\nConner\nFrancisco\nJorge\nColin\nHenry\nShawn\nTrenton\nManuel\nCollin\nCorey\nMiguel\nAngel\nCory\nCristian\nHayden\nNicolas\nEdgar\nEdward\nJulian\nRiley\nRaymond\nTroy\nChance\nLane\nChad\nJohnathan\nJonathon\nMario\nJalen\nPreston\nAngelo\nDonovan\nEduardo\nSergio\nWesley\nZachery\nAidan\nAlan\nMartin\nParker\nGeorge\nJonah\nDante\nJavier\nMaxwell\nRamon\nTrey\nDrew\nPhillip\nZachariah\nBrady\nCalvin\nLiam\nMarco\nChandler\nGavin\nKeenan\nOmar\nRandy\nXavier\nDominick\nFabian\nMathew\nMicah\nPhilip\nSebastian\nSkyler\nAlexis\nAndre\nCurtis\nRussell\nDerrick\nDiego\nDonald\nDouglas\nElias\nFernando\nJeffery\nLouis\nRicardo\nRonald\nAndres\nAvery\nGerardo\nHarrison\nKaleb\nKeith\nLandon\nLorenzo\nOscar\nTucker\nAllen\nBrenden\nCesar\nDarius\nGage\nIsrael\nJosiah\nKyler\nMarcos\nMax\nDarren\nDavis\nMalik\nReid\nTy\nCooper\nDarian\nEdwin\nEli\nEmilio\nFrank\nIvan\nJaime\nKeaton\nKody\nMorgan\nTrent\nZane\nArturo\nBrendon\nBrent\nBrock\nDamian\nIsiah\nNickolas\nRaul\nTheodore\nWeston\nColby\nJohnny\nMicheal\nPedro\nRandall\nAlberto\nArmando\nBailey\nBranden\nCarson\nCraig\nGerald\nJerry\nOrlando\nReece\nTylor\nCarl\nConor\nForrest\nGary\nKeegan\nKellen\nMarc\nRoss\nStefan\nTony\nWalter\nAbel\nAlonzo\nArthur\nBeau\nCade\nClay\nDanny\nDemetrius\nDominique\nGustavo\nJaylen\nJessie\nKristopher\nRuben\nSalvador\nZackary\nAshton\nBrayden\nBrody\nDamien\nGiovanni\nPablo\nRicky\nRoberto\nTodd\nZackery\nBryson\nCarter\nColten\nDennis\nDrake\nGunnar\nHarley\nHector\nJayson\nJoe\nJulio\nJustice\nKelly\nLawrence\nStephan\nTerry\nTristen\nTyson\nBrennan\nDallas\nDuncan\nEfrain\nErnesto\nFelix\nFrederick\nGraham\nIrvin\nJay\nJordon\nJosue\nKarl\nLeo\nMiles\nOrion\nQuinton\nRafael\nRay\nRogelio\nSaul\nSimon\nTate\nTrevon\nAlfredo\nAuston\nBruce\nBryant\nDamon\nDane\nDean\nDevan\nFranklin\nGrayson\nGuillermo\nJakob\nJimmy\nMalcolm\nMarshall\nMitchel\nMyles\nNolan\nQuentin\nQuinn\nSage\nTristin\nAhmed\nAusten\nDesmond\nEnrique\nErick\nJohnathon\nJon\nLarry\nLeonard\nNikolas\nOwen\nReed\nRene\nRoman\nShaun\nSkylar\nSterling\nToby\nAndy\nAugustine\nAugustus\nBilly\nBlaine\nBobby\nCordell\nDale\nDusty\nEmmanuel\nGarret\nGeoffrey\nGriffin\nIsmael\nJaden\nJarrod\nKendall\nKhalid\nKurt\nLance\nLoren\nLukas\nMackenzie\nMarquise\nPayton\nRamiro\nRodney\nRoger\nRonnie\nSantiago\nSawyer\nSidney\nTerrance\nTomas\nTommy\nTorin\nTyrell\nWalker\nWarren\nAbraham\nAllan\nAriel\nArmand\nBrad\nBraxton\nCorbin\nCullen\nDevante\nDevyn\nDion\nElliot\nEverett\nFelipe\nGilberto\nHarry\nJoey\nKaden\nKasey\nKieran\nNeil\nQuincy\nRick\nRodolfo\nShayne\nSteve\nTevin\nTrevin\nZechariah\nAddison\nAiden\nAlbert\nAlonso\nAron\nAustyn\nBraden\nBranson\nBret\nBroderick\nByron\nCamron\nCheyenne\nChris\nDamion\nDarien\nDarion\nDylon\nElliott\nEsteban\nEugene\nEzekiel\nFrankie\nGilbert\nHugo\nIrving\nJamie\nJarod\nJerome\nJoaquin\nKade\nKameron\nKendrick\nKenny\nKolby\nKristian\nLee\nLeon\nMarquis\nMarvin\nMaverick\nMohamed\nMoises\nPhoenix\nRhett\nRudy\nShannon\nStone\nTalon\nTory\nTrenten\nTyrone\nWayne\nAdan\nAlexzander\nAlvaro\nBrenton\nBridger\nBrodie\nCale\nClifford\nClinton\nColeton\nColt\nColter\nConrad\nDandre\nDarrin\nDavion\nDavon\nDeandre\nDeion\nDerick\nDeshawn\nDeven\nDon\nDonavon\nEarl\nEaston\nEmanuel\nEmmett\nErin\nEzequiel\nGalen\nGarett\nGlenn\nGrady\nGreyson\nGuadalupe\nHarold\nIssac\nJameson\nJamison\nJaren\nJarred\nJarrett\nJasper\nJeff\nJess\nJohnnie\nJovan\nJulien\nKai\nKalin\nKelby\nKevan\nKirk\nKolton\nKory\nKristofer\nKurtis\nMitch\nMoses\nNathanael\nNathanial\nNicholaus\nNoel\nOliver\nPierce\nQuintin\nReese\nRiver\nRocky\nRodrigo\nRoy\nSam\nSheldon\nSolomon\nSoren\nTaran\nTerrell\nTrae\nTre\nTriston\nUriah\nVance\nZakary\nJacob\nMichael\nTyler\nMatthew\nJoshua\nAndrew\nAustin\nChristopher\nRyan\nNicholas\nBrandon\nJoseph\nZachary\nDaniel\nAlexander\nAnthony\nDavid\nJohn\nWilliam\nCody\nJustin\nKyle\nSamuel\nJames\nDylan\nJonathan\nBenjamin\nRobert\nJordan\nThomas\nChristian\nAaron\nEric\nNathan\nConnor\nJose\nNoah\nLogan\nSean\nJesse\nIsaiah\nJason\nSteven\nKevin\nTristan\nCameron\nElijah\nAdam\nCaleb\nTimothy\nGabriel\nIan\nTanner\nTrevor\nColton\nJesus\nGarrett\nJuan\nEthan\nRichard\nBrian\nNathaniel\nChase\nHunter\nJared\nJeremy\nEvan\nPatrick\nIsaac\nTaylor\nDakota\nLuke\nAlex\nBlake\nJack\nDillon\nCole\nDevin\nLuis\nAdrian\nMitchell\nCharles\nDustin\nPaul\nSeth\nCarlos\nStephen\nTravis\nMarcus\nSpencer\nAntonio\nDominic\nErik\nJackson\nDevon\nMark\nAlejandro\nAlec\nWyatt\nDalton\nKenneth\nMason\nBryan\nDerek\nVictor\nVincent\nBryce\nLucas\nRiley\nMiguel\nScott\nJake\nBrendan\nJeffrey\nPeter\nCollin\nChance\nJeremiah\nGrant\nJoel\nJorge\nLevi\nGregory\nHayden\nJosiah\nJulian\nBradley\nEduardo\nNicolas\nRicardo\nShane\nWesley\nColin\nChandler\nOmar\nAngel\nCristian\nEdward\nManuel\nShawn\nChad\nTroy\nAngelo\nBrett\nCorey\nRaymond\nClayton\nPreston\nAidan\nAlan\nCory\nEdgar\nJonah\nLane\nCasey\nTrenton\nXavier\nJavier\nCesar\nConner\nDamian\nDonovan\nFrancisco\nLorenzo\nMarco\nMax\nMicah\nBailey\nBrady\nMaxwell\nSergio\nSkyler\nAndres\nAvery\nMario\nMartin\nParker\nDrew\nGage\nGerardo\nHenry\nIvan\nKaleb\nMathew\nTy\nDante\nJohnathan\nJonathon\nPhillip\nDiego\nDouglas\nBrenden\nCalvin\nGavin\nHector\nLiam\nKeith\nKody\nMalik\nRonald\nRuben\nZachariah\nZachery\nZane\nCurtis\nJaime\nJalen\nMarcos\nMorgan\nRandy\nTristen\nDavis\nDominick\nDonald\nEmilio\nGeorge\nKyler\nSebastian\nBrody\nEnrique\nHarrison\nPhilip\nQuinn\nRoberto\nRussell\nTrey\nAlexis\nBrendon\nDerrick\nFabian\nJohnny\nKeegan\nTrent\nAndre\nColby\nConor\nGary\nLance\nMarc\nTucker\nAllen\nArmando\nDennis\nDrake\nDuncan\nEli\nRaul\nWeston\nZackery\nAlfredo\nCarter\nFernando\nKeenan\nLandon\nMicheal\nBeau\nErick\nIsrael\nJosue\nMiles\nOscar\nRoss\nSaul\nCade\nDarren\nFrank\nGiovanni\nJay\nRoman\nShaun\nSimon\nSkylar\nTheodore\nBranden\nBrent\nCooper\nErnesto\nGunnar\nKeaton\nLouis\nNikolas\nPedro\nQuentin\nTony\nBilly\nBryson\nDamon\nDarius\nGriffin\nJulio\nKristopher\nNolan\nOwen\nRamon\nStefan\nTodd\nTristin\nAlfonso\nAshton\nBrayden\nCorbin\nDallas\nDamien\nDemetrius\nElias\nFrederick\nIsiah\nJerry\nJessie\nJimmy\nJohnathon\nKade\nNickolas\nPablo\nRoger\nSantiago\nSterling\nZackary\nBrennan\nBrock\nBruce\nCarson\nClay\nDarian\nDean\nEmmanuel\nForrest\nGeoffrey\nGraham\nNathanael\nQuinton\nSage\nTerry\nWalter\nAdan\nAlbert\nArturo\nBobby\nBraden\nColten\nGarret\nHugo\nJace\nJakob\nJustice\nLawrence\nLeo\nLukas\nMarshall\nMitchel\nPeyton\nTristian\nTriston\nTyson\nAbraham\nAndy\nBlaine\nCarl\nCruz\nDangelo\nDeangelo\nDominique\nEdwin\nEsteban\nGustavo\nJoe\nLarry\nLeonardo\nOrion\nQuincy\nRafael\nRamiro\nReed\nReid\nSalvador\nSawyer\nSheldon\nTalon\nToby\nTrevon\nWalker\nAlvaro\nArthur\nCaden\nCraig\nDale\nDane\nEfrain\nEzekiel\nFelix\nGrayson\nJon\nKillian\nKurtis\nMalachi\nMyles\nOrlando\nPierce\nReece\nRhett\nRonnie\nShelby\nTate\nTylor\nAddison\nAlonzo\nAusten\nAustyn\nBrennen\nCyrus\nElisha\nElliot\nEugene\nFrancis\nGuillermo\nHarley\nIsmael\nJarrett\nJavon\nJayden\nJeffery\nKelly\nLee\nLewis\nMalcolm\nMarquis\nNathanial\nQuinten\nRicky\nTommy\nVicente\nWade\nZakary\nZechariah\nAiden\nAuston\nBroderick\nBryant\nChris\nColeman\nDanny\nDeion\nDevan\nDeven\nDion\nDorian\nDusty\nEzequiel\nGerald\nGilberto\nHarry\nHerman\nJustus\nKameron\nKarl\nKellen\nKieran\nMaurice\nMohammed\nNeil\nNoe\nOliver\nPayton\nRay\nRemington\nRene\nRylan\nSam\nSidney\nStuart\nTurner\nWayne\nWill\nZephaniah\nAbel\nAlberto\nAlfred\nAli\nAugust\nBlaze\nBo\nBrandt\nBraxton\nBrayan\nBret\nBridger\nBrooks\nClint\nColter\nConrad\nCullen\nDeandre\nDeon\nDevante\nDevyn\nDonavan\nEddie\nEstevan\nFidel\nGalen\nGilbert\nHarold\nIssac\nIzaak\nJaden\nJairo\nJamie\nJarred\nJasper\nJessy\nJoaquin\nJordon\nKai\nKegan\nKendall\nKenny\nKirk\nKoby\nKristian\nKurt\nLeon\nLeonard\nMoises\nMuhammad\nNelson\nNevin\nNico\nNoel\nRomeo\nRory\nRudy\nSamual\nShay\nShea\nSpenser\nTerrance\nTerrell\nTobias\nTre\nTrystan\nTyrell\nWarren\nWillie\nAldo\nAnders\nAnton\nAron\nAsher\nAugustus\nAxel\nBenny\nBrice\nBritton\nByron\nCain\nChaz\nColt\nCoy\nDamion\nDarien\nDarin\nDarion\nDayton\nDesmond\nDon\nDonavon\nDru\nDwayne\nElliott\nFranklin\nGlenn\nGreyson\nGuy\nHugh\nIsaak\nJarrod\nJaylon\nJayson\nJeramiah\nJess\nJimmie\nJonas\nJovany\nKane\nKelvin\nKolby\nKolton\nKonnor\nLeif\nLonnie\nMackenzie\nMarkus\nMarvin\nMauricio\nMaximilian\nMohamad\nNash\nNeal\nNikolaus\nParis\nRalph\nReginald\nRiver\nRodrigo\nRogelio\nRyder\nRyley\nSantana\nShannon\nStephan\nTerrence\nTomas\nTrae\nTrever\nUriah\nUriel\nJacob\nMichael\nMatthew\nAustin\nJoshua\nTyler\nAndrew\nChristopher\nNicholas\nBrandon\nDaniel\nRyan\nJoseph\nZachary\nDavid\nAlexander\nJohn\nAnthony\nBenjamin\nJames\nSamuel\nKyle\nWilliam\nJustin\nDylan\nJonathan\nChristian\nJordan\nCody\nRobert\nNathan\nThomas\nAaron\nEric\nCameron\nConnor\nJose\nNoah\nLogan\nIsaiah\nAdam\nSean\nGabriel\nCaleb\nJack\nKevin\nCole\nIan\nEthan\nIsaac\nTrevor\nLuis\nEvan\nElijah\nTanner\nHunter\nJesus\nJuan\nPatrick\nBrian\nJesse\nTimothy\nTristan\nJared\nTaylor\nCarlos\nAlex\nAntonio\nChase\nDominic\nJason\nSteven\nAlejandro\nLuke\nAdrian\nDakota\nGarrett\nJeremy\nWyatt\nCharles\nMitchell\nRichard\nRiley\nSpencer\nColton\nNathaniel\nDevin\nAlec\nDalton\nMarcus\nDillon\nJackson\nBlake\nPaul\nSeth\nLucas\nMason\nDerek\nGrant\nMark\nBryce\nTravis\nJake\nBryan\nDustin\nJeremiah\nVincent\nManuel\nAngel\nJulian\nMiguel\nStephen\nKenneth\nDevon\nJeffrey\nLevi\nDante\nJoel\nErik\nAngelo\nVictor\nJorge\nLiam\nShane\nBrendan\nJosiah\nParker\nScott\nJavier\nMario\nOscar\nShawn\nXavier\nFrancisco\nRicardo\nMaxwell\nPeter\nConner\nBradley\nBrady\nCollin\nHenry\nNicolas\nWesley\nFernando\nBrett\nCasey\nEduardo\nGregory\nRaymond\nAlan\nColin\nPreston\nAlexis\nJonah\nTrenton\nTroy\nBailey\nEdgar\nEmilio\nGavin\nJohnathan\nKaleb\nGage\nEdward\nHayden\nQuinn\nCarter\nChance\nCorey\nHector\nJakob\nMax\nTrent\nDiego\nDrew\nMarco\nDonovan\nJonathon\nMorgan\nCory\nCristian\nIvan\nKeith\nLandon\nLorenzo\nMartin\nPhilip\nSergio\nAndre\nCesar\nChad\nChandler\nClayton\nElias\nFrank\nGeorge\nIsrael\nTy\nAndres\nBraden\nBrenden\nColby\nDominick\nGerardo\nPhillip\nSkyler\nZachariah\nCalvin\nCooper\nDallas\nDamian\nGriffin\nHarrison\nOwen\nRaul\nTucker\nZane\nEnrique\nJohnny\nLane\nMalik\nOmar\nRuben\nAidan\nAvery\nJaime\nKeegan\nMathew\nMicah\nSebastian\nTrey\nWalker\nKeenan\nAlfredo\nDouglas\nDrake\nFabian\nJulio\nZachery\nAbraham\nJoe\nKyler\nRonald\nZackary\nAndy\nDarius\nIsiah\nMiles\nNolan\nRamon\nRandy\nTristen\nTriston\nBrody\nCarl\nDarian\nDonald\nEli\nJay\nJerry\nMarcos\nNickolas\nRicky\nRoman\nSaul\nSkylar\nTomas\nWeston\nArmando\nAshton\nBrayden\nBrendon\nCraig\nGary\nJaden\nJarrett\nRoberto\nDamien\nDennis\nDuncan\nEdwin\nGiovanni\nMarshall\nNathanael\nQuentin\nSimon\nTheodore\nAbel\nBranden\nBrennan\nBrent\nDamon\nDavis\nErick\nGuillermo\nJohnathon\nKeaton\nKody\nLouis\nAdan\nAlberto\nAllen\nBeau\nCurtis\nJosue\nLukas\nMicheal\nPedro\nPeyton\nRafael\nTalon\nTrace\nBrice\nBryson\nCullen\nDane\nDesmond\nDevan\nForrest\nGrayson\nJayden\nJimmy\nLawrence\nNoel\nRoy\nSterling\nZackery\nCorbin\nDanny\nDerrick\nDeven\nErnesto\nGeoffrey\nJalen\nJayson\nJon\nKameron\nKarl\nLarry\nOliver\nQuinton\nRamiro\nRoss\nRylan\nStefan\nWalter\nAlbert\nAusten\nBrennen\nCade\nColten\nConor\nFranklin\nGustavo\nJace\nJameson\nJarod\nJoaquin\nMarc\nNeil\nQuintin\nRhett\nSantiago\nSawyer\nTodd\nTristin\nTylor\nUriel\nAlonso\nArthur\nClay\nDemetrius\nEmanuel\nEzra\nHarley\nKristopher\nLeonel\nMalachi\nNikolas\nRandall\nReese\nSage\nTyrell\nAlfonso\nAustyn\nBrayan\nCarson\nCedric\nColeton\nDarren\nDean\nEddie\nEfrain\nEsteban\nEzekiel\nEzequiel\nGunnar\nHugo\nIgnacio\nIssac\nJeffery\nJustice\nMalcolm\nMoises\nOrion\nOrlando\nPayton\nReece\nRene\nRoger\nRussell\nSalvador\nTobias\nTony\nAron\nArturo\nAugust\nBen\nBenito\nBilly\nBraxton\nCaden\nDangelo\nDillan\nDominik\nEverett\nFelix\nFrederick\nGarett\nGarret\nGilbert\nGraham\nIsmael\nJamie\nJerome\nJosef\nKade\nKaden\nKieran\nKurtis\nLance\nMauricio\nMoses\nReed\nReid\nRiver\nRogelio\nStuart\nTre\nAdolfo\nAlonzo\nAlvin\nAsher\nBrock\nBryant\nCruz\nDarien\nDarion\nDeshawn\nDion\nDominique\nDonavan\nDorian\nEmmanuel\nEmmett\nEugene\nGerald\nGuadalupe\nHolden\nIrvin\nJade\nJarrod\nJerod\nKenny\nKent\nKoby\nKurt\nLee\nLeland\nMateo\nPablo\nRodney\nRudy\nSam\nSantana\nTerrance\nToby\nAndreas\nBlaine\nBo\nBrandt\nByron\nCarlo\nClint\nCyrus\nDarrian\nDawson\nDevante\nDevonte\nDraven\nEliseo\nEmery\nEstevan\nFoster\nFrankie\nIrving\nIsaias\nJaxon\nJordon\nJovan\nKai\nKirk\nKole\nKolton\nLeo\nLeonardo\nMarquise\nNash\nNoe\nQuinten\nRodolfo\nShaun\nSheldon\nStephan\nStone\nTate\nTerrell\nTerrence\nTerry\nTevin\nTommy\nTrystan\nTyrone\nWade\nZechariah\nAiden\nAldo\nAllan\nAri\nAric\nAriel\nAsa\nBarry\nBennett\nBobby\nBrandyn\nBrycen\nCamden\nCharlie\nColt\nColter\nDamion\nDeangelo\nDusty\nEmiliano\nErnest\nFord\nFredrick\nGino\nGunner\nHarry\nHumberto\nIzaiah\nJamison\nJarred\nJasper\nJeramiah\nJoan\nJustus\nKane\nKendrick\nKillian\nKolby\nLeon\nLeroy\nLewis\nLloyd\nMackenzie\nMarkus\nMarquis\nMaurice\nMilo\nMitchel\nMohammed\nMontana\nMyles\nNeal\nNelson\nNicklaus\nOsvaldo\nPierce\nRalph\nRaphael\nRaymundo\nRolando\nRyland\nSimeon\nTristian\nWayne\nWill\nJacob\nMichael\nJoshua\nMatthew\nTyler\nNicholas\nDaniel\nBrandon\nJoseph\nAustin\nAndrew\nZachary\nRyan\nAlexander\nChristopher\nWilliam\nDavid\nJohn\nAnthony\nSamuel\nKyle\nJames\nJonathan\nBenjamin\nDylan\nJustin\nJose\nNathan\nNoah\nCody\nJordan\nChristian\nRobert\nCameron\nEthan\nConnor\nIsaiah\nThomas\nAdam\nHunter\nAaron\nLogan\nJack\nLuis\nCaleb\nTrevor\nGabriel\nKevin\nIsaac\nEric\nJason\nJuan\nSean\nNathaniel\nEvan\nAdrian\nLuke\nTristan\nJared\nSpencer\nChase\nCarlos\nElijah\nIan\nTimothy\nCole\nTanner\nPatrick\nBrian\nDominic\nJesse\nJesus\nBlake\nRichard\nAlex\nDevin\nColton\nCharles\nAlejandro\nSteven\nJackson\nMarcus\nMark\nAntonio\nMiguel\nGarrett\nSeth\nTaylor\nPaul\nBryan\nDakota\nJeremy\nBryce\nJeremiah\nAngel\nMitchell\nWyatt\nDalton\nDillon\nMason\nAlec\nDevon\nStephen\nLucas\nGavin\nTravis\nLevi\nBrendan\nJorge\nOscar\nDerek\nJoel\nVincent\nDustin\nGrant\nMario\nMaxwell\nRiley\nJulian\nDante\nEdgar\nParker\nColin\nErik\nBrett\nNicolas\nRicardo\nJosiah\nVictor\nDawson\nMax\nAngelo\nBradley\nHayden\nLiam\nManuel\nDonovan\nJavier\nGage\nJonah\nAidan\nRaymond\nScott\nDamian\nDiego\nFrancisco\nSergio\nCesar\nCollin\nPeter\nConner\nAlan\nShane\nHector\nJake\nJeffrey\nJohnathan\nTrenton\nCarter\nJakob\nPreston\nXavier\nChance\nHenry\nKenneth\nGerardo\nClayton\nIvan\nMarco\nTy\nElias\nShawn\nBrennan\nCristian\nGeorge\nGregory\nJonathon\nKeegan\nPedro\nCasey\nChandler\nAndres\nChad\nCory\nMartin\nOwen\nRoberto\nSkyler\nTroy\nArmando\nDrew\nEnrique\nTrey\nFernando\nMicah\nOmar\nAlexis\nArturo\nAvery\nBrenden\nCarl\nCooper\nDominick\nEdward\nGriffin\nMarcos\nCalvin\nHarrison\nKaleb\nTristen\nWesley\nBrady\nBrody\nEmilio\nCade\nEli\nJarod\nPhillip\nRuben\nRussell\nBrayden\nEduardo\nFabian\nLandon\nBailey\nBraden\nCarson\nDouglas\nDrake\nTrent\nMorgan\nRoman\nSebastian\nDamien\nDonald\nEdwin\nGiovanni\nJalen\nJustice\nKyler\nLouis\nMalik\nZane\nConor\nCorey\nDean\nJaime\nKody\nLorenzo\nMarc\nMicheal\nPeyton\nRafael\nTucker\nZachariah\nAndre\nBranden\nEsteban\nJaden\nMathew\nMiles\nNickolas\nNolan\nQuentin\nQuinn\nSaul\nDamon\nDavis\nDennis\nErick\nErnesto\nIsiah\nIsmael\nIsrael\nJace\nKeaton\nKeith\nKristopher\nLance\nLane\nRaul\nRoss\nZachery\nAbraham\nAndy\nArthur\nBrent\nJulio\nKarl\nKeenan\nRamon\nReece\nSantiago\nAlberto\nBrendon\nFrank\nJoaquin\nRandy\nSimon\nSterling\nTerrell\nTheodore\nAshton\nColby\nCorbin\nJosue\nTate\nUriel\nWarren\nWeston\nClay\nCurtis\nDallas\nDane\nDuncan\nEzekiel\nMarshall\nNikolas\nOliver\nRicky\nRonald\nSage\nTony\nWalker\nAlfredo\nCaden\nCamden\nCruz\nDarius\nGary\nGunnar\nGustavo\nJarrod\nJohnny\nKameron\nKobe\nLawrence\nLeonardo\nMalachi\nOrlando\nTomas\nTrace\nAdan\nAlfonso\nBrock\nDorian\nEmmanuel\nJerry\nOrion\nPablo\nPayton\nRudy\nSawyer\nSkylar\nAddison\nAiden\nBeau\nBrayan\nBrooks\nBryant\nColeman\nColten\nCraig\nDarian\nElliot\nElliott\nForrest\nFrederick\nHarley\nJay\nJerome\nJoe\nJon\nJonas\nKade\nLeo\nLeonel\nMoises\nMyles\nPhilip\nRodrigo\nTommy\nTristin\nAbel\nAlbert\nAllen\nAlonso\nAlonzo\nDamion\nDarren\nDarrien\nGrayson\nHugo\nIzaiah\nJasper\nJeffery\nJohnathon\nKaden\nKale\nOsvaldo\nReed\nReid\nRylan\nTriston\nZackery\nAron\nAusten\nBenito\nBennett\nBryson\nClinton\nDanny\nDemetrius\nDerick\nDerrick\nDion\nFelix\nGeoffrey\nGilbert\nHolden\nJaxon\nJovan\nKelly\nKoby\nLarry\nMalcolm\nQuinton\nRamiro\nSolomon\nStefan\nTodd\nTrystan\nTylor\nTyson\nWalter\nAllan\nBo\nBobby\nBrennen\nChris\nConrad\nDangelo\nDeandre\nEmiliano\nEstevan\nFelipe\nFranklin\nGerald\nGunner\nHudson\nIsaias\nJarrett\nJimmy\nKai\nLeonard\nLukas\nMateo\nMohammed\nMoses\nNathanael\nNoe\nPierce\nRene\nRhys\nRiver\nRolando\nSalvador\nStephan\nZackary\nAsher\nBraxton\nBruce\nCedric\nClark\nColt\nCordell\nCyrus\nDarien\nDevyn\nDillan\nEddie\nEfrain\nEmanuel\nErnest\nEzra\nFred\nGrady\nGraham\nGuillermo\nHarry\nIssac\nJaron\nJayden\nJayson\nJoey\nJordon\nKurt\nLayne\nMaximillian\nNelson\nQuincy\nRay\nReese\nReginald\nRemington\nRogelio\nRoger\nRomeo\nSoren\nStone\nTalon\nTobias\nTye\nUlises\nWade\nWill\nWillie\nZechariah\nAdolfo\nAlexandro\nAlfred\nAriel\nBlaine\nBrad\nBraeden\nBraydon\nCeasar\nCoby\nCullen\nDale\nDario\nDarion\nDarrion\nDeon\nDeshawn\nDesmond\nDevan\nDeven\nEaston\nEverett\nGalen\nGarret\nHeriberto\nIgnacio\nJadon\nJamal\nJessie\nKane\nKellan\nKillian\nKristian\nKristofer\nLars\nLee\nMarlon\nMarquise\nMarshal\nMaurice\nMauricio\nMisael\nMitchel\nMohamed\nNikolai\nNoel\nPaxton\nQuintin\nRandall\nRocco\nRodney\nRonnie\nRoy\nRyland\nSam\nSchuyler\nStephon\nSteve\nTerry\nTyrone\nAlijah\nAlvin\nAntony\nAugustine\nAugustus\nAustyn\nBeck\nBen\nBilly\nBrannon\nBrennon\nBret\nBronson\nCaelan\nCamron\nDeangelo\nDerik\nDominik\nDonavan\nDonte\nDwight\nEliseo\nElisha\nEllis\nEloy\nEver\nFreddy\nGarrick\nGino\nGuadalupe\nGuy\nHilario\nHumberto\nIain\nIsidro\nJairo\nJaydon\nJaylen\nJerod\nJett\nJonatan\nJorden\nJustis\nKadin\nKayden\nKelby\nKellen\nKendrick\nKent\nKevyn\nKordell\nKurtis\nLeobardo\nMarvin\nMaximilian\nMelvin\nNathanial\nRaymundo\nReilly\nReuben\nRigoberto\nRyder\nSantana\nSeamus\nShaun\nSilas\nStuart\nTerrance\nToby\nTyrell\nJacob\nMichael\nJoshua\nMatthew\nNicholas\nTyler\nDaniel\nJoseph\nAndrew\nRyan\nAlexander\nZachary\nBrandon\nWilliam\nChristopher\nAustin\nAnthony\nJohn\nBenjamin\nJustin\nDavid\nSamuel\nJonathan\nNoah\nDylan\nJose\nJames\nKyle\nEthan\nJordan\nHunter\nIsaiah\nChristian\nRobert\nNathan\nCameron\nThomas\nLogan\nCaleb\nConnor\nJack\nCody\nElijah\nJuan\nTrevor\nAaron\nJason\nLuis\nGabriel\nEvan\nJared\nAdam\nSean\nJesus\nCarlos\nIan\nJackson\nTanner\nEric\nIsaac\nKevin\nAntonio\nSeth\nBrian\nLuke\nGarrett\nBlake\nBryce\nNathaniel\nCole\nSteven\nDevin\nMason\nCharles\nDominic\nAlejandro\nColton\nPatrick\nJesse\nAdrian\nWyatt\nTimothy\nChase\nBryan\nTristan\nErik\nAlex\nAngel\nMiguel\nRichard\nDillon\nBrendan\nJeremiah\nMaxwell\nJulian\nMarcus\nMark\nDiego\nSpencer\nAlec\nJorge\nLevi\nLucas\nJeremy\nPeter\nGrant\nRiley\nXavier\nAidan\nOscar\nDakota\nVictor\nGavin\nMax\nFrancisco\nHayden\nManuel\nMitchell\nTaylor\nDerek\nPaul\nStephen\nDalton\nLiam\nVincent\nRicardo\nMario\nParker\nScott\nJoel\nConner\nDevon\nBrett\nDustin\nAlan\nDante\nElias\nOmar\nWesley\nAlexis\nCollin\nJake\nSergio\nEdgar\nEduardo\nJosiah\nNicolas\nPreston\nKenneth\nTravis\nTrenton\nHenry\nBradley\nClayton\nKaleb\nCesar\nChandler\nColin\nCasey\nDonovan\nJaden\nJeffrey\nAndres\nAngelo\nCade\nHarrison\nJavier\nChance\nGerardo\nJonah\nRuben\nTrey\nAbraham\nBrayden\nIsrael\nIvan\nJohnathan\nLorenzo\nGregory\nRoberto\nDawson\nFernando\nGage\nKeith\nMartin\nShane\nTy\nBailey\nBrady\nEdward\nGeorge\nHector\nOwen\nEmilio\nJakob\nKeegan\nShawn\nDrake\nEnrique\nMarcos\nPedro\nRaul\nSebastian\nDrew\nSimon\nZane\nBrenden\nCarter\nKaden\nMathew\nNolan\nBraden\nCarson\nCooper\nCory\nErick\nKeaton\nLane\nRaymond\nCorey\nCristian\nDamian\nFrank\nJaime\nLandon\nJace\nMicah\nPhillip\nTheodore\nRafael\nTroy\nBrennan\nBrock\nGriffin\nRoman\nZachariah\nAlberto\nAndre\nCaden\nChad\nMarco\nQuinn\nSkyler\nMarc\nNickolas\nPeyton\nTrent\nAiden\nAlfredo\nColby\nDarius\nDominick\nGustavo\nJalen\nJayden\nPablo\nPhilip\nWeston\nAllen\nArmando\nAvery\nBrendon\nCurtis\nEli\nIsiah\nKai\nLance\nMalik\nMorgan\nQuentin\nTucker\nBrent\nDavis\nFabian\nGiovanni\nJonathon\nJulio\nLeonardo\nOrlando\nRamon\nSaul\nBrayan\nCorbin\nDarren\nEmmanuel\nErnesto\nGarret\nIsmael\nKameron\nKyler\nRodrigo\nZackary\nAbel\nBryson\nCalvin\nConor\nGary\nJay\nNathanael\nUriel\nBeau\nDane\nDanny\nDarian\nDennis\nDerrick\nDonald\nEdwin\nEzekiel\nJessie\nKeenan\nKristopher\nOliver\nPayton\nSalvador\nAddison\nArturo\nColten\nEstevan\nHugo\nMarshall\nOrion\nQuinton\nReed\nSawyer\nAshton\nBranden\nBrody\nCarl\nDamien\nJosue\nMicheal\nRandy\nRicky\nSage\nSantiago\nTomas\nAdolfo\nAlbert\nArthur\nBraeden\nBraxton\nCamden\nCruz\nEverett\nKody\nLawrence\nLouis\nLukas\nNikolas\nRonald\nTerrell\nTristen\nZachery\nAndy\nBryant\nCyrus\nDallas\nEloy\nEmanuel\nGraham\nGuillermo\nIzaiah\nJadon\nJarod\nJohnathon\nJohnny\nMiles\nRamiro\nReece\nTate\nTobias\nZion\nAsher\nDamon\nDemetrius\nEsteban\nFelipe\nJarred\nJimmy\nKellen\nLeonard\nMalachi\nMateo\nMauricio\nMoses\nReese\nRodolfo\nRudy\nRylan\nSam\nSkylar\nStefan\nTyson\nAllan\nAnders\nAusten\nBen\nClay\nDouglas\nDuncan\nGrayson\nIrvin\nIssac\nJaylen\nJayson\nJeffery\nJerry\nJordon\nJustice\nLarry\nNash\nNoe\nQuincy\nQuintin\nRandall\nRoss\nTalon\nTony\nTylor\nTyrese\nAlonso\nAlvaro\nAriel\nBennett\nCedric\nCraig\nDangelo\nDean\nDeclan\nDeshawn\nDesmond\nDevyn\nEfrain\nEzra\nFelix\nGilberto\nGuadalupe\nHarry\nJaxon\nKade\nKobe\nMyles\nRay\nRiver\nRory\nRussell\nSolomon\nSterling\nTerry\nWayne\nWilson\nAndreas\nAron\nAugustus\nBrice\nBruce\nCharlie\nChris\nCordell\nDamion\nDavin\nDevan\nDeven\nDonavon\nEugene\nGarett\nGerald\nGilbert\nIrving\nJa\nJoaquin\nJoey\nJon\nKarl\nKasey\nKendall\nKieran\nKory\nMarvin\nMaurice\nNoel\nRene\nRyne\nTommy\nTrevon\nTristin\nVaughn\nVicente\nWade\nWalter\nAgustin\nAli\nAugust\nBenito\nBowen\nBrodie\nBrooks\nDale\nDarien\nDarrien\nDavion\nDayton\nDeangelo\nDeondre\nDerick\nDonavan\nElliot\nErnest\nEzequiel\nFinn\nFranklin\nGreyson\nGunnar\nHudson\nJaren\nJarrod\nJasper\nJerome\nJoe\nJustus\nKain\nKenny\nLeonel\nMaximiliano\nMohammed\nMoises\nNico\nOsvaldo\nPhoenix\nRhett\nRyland\nSantana\nSeamus\nSilas\nToby\nTrace\nTrae\nTre\nTyrone\nUlises\nAlden\nAmir\nBo\nBrennen\nBrennon\nBret\nBridger\nCain\nCamron\nColter\nConrad\nDario\nDevante\nDorian\nDylon\nEmiliano\nFrankie\nGabrial\nGaige\nGeoffrey\nGerman\nHolden\nIain\nIgnacio\nIsai\nJameson\nJaron\nJarrett\nJax\nJeramiah\nJess\nJett\nJonas\nJordi\nJosef\nJudah\nKayden\nKendrick\nKolton\nKorbin\nMadison\nMarkus\nMike\nOctavio\nPete\nQuinten\nReid\nRigoberto\nRodney\nRoy\nSheldon\nSoren\nSteve\nStuart\nTriston\nTrystan\nUriah\nVance\nWalker\nWarren\nZechariah\nAbdullah\nAbram\nAdan\nAdrien\nAhmad\nAhmed\nAlek\nAlfonso\nAlonzo\nAnton\nAxel\nBlair\nBobby\nBraedon\nBrandan\nBrandt\nByron\nClark\nClifford\nColeton\nColt\nCullen\nDamen\nDax\nDevonte\nDimitri\nDon\nDraven\nEfren\nEver\nGlenn\nGonzalo\nGuy\nHarley\nIsaak\nIsac\nIzak\nJacobo\nJamal\nJaxson\nJonatan\nJosh\nKadin\nKane\nKellan\nKelly\nKhalil\nKirk\nKoby\nKristian\nKristofer\nLincoln\nMarquis\nMatteo\nMaximilian\nMisael\nMontana\nNathen\nNehemiah\nNikko\nOswaldo\nPaxton\nPierce\nRalph\nReyes\nRohan\nRoland\nRomeo\nRyder\nSantos\nSavion\nShea\nSidney\nStone\nTennyson\nThaddeus\nTheron\nTodd\nTorin\nTory\nXander\nZackery\nZakary\nJacob\nMichael\nJoshua\nMatthew\nRyan\nNicholas\nTyler\nAndrew\nJoseph\nBenjamin\nDaniel\nZachary\nAlexander\nWilliam\nBrandon\nChristopher\nDavid\nJohn\nAnthony\nSamuel\nJose\nEthan\nJonathan\nNoah\nJames\nAustin\nJustin\nNathan\nChristian\nKyle\nDylan\nGabriel\nCameron\nLuis\nJack\nHunter\nJordan\nRobert\nThomas\nKevin\nIsaiah\nLogan\nJackson\nCaleb\nIsaac\nConnor\nJesus\nElijah\nAaron\nAdam\nJuan\nCole\nCody\nJason\nEric\nEvan\nIan\nAdrian\nCharles\nNathaniel\nBrian\nTrevor\nLuke\nGarrett\nJared\nSeth\nAlex\nTristan\nAngel\nSean\nAlejandro\nCarlos\nMiguel\nDevin\nLucas\nAidan\nBryan\nBlake\nAntonio\nPatrick\nColton\nMason\nTanner\nBryce\nTimothy\nDominic\nJesse\nWyatt\nChase\nGavin\nJulian\nRiley\nGrant\nOscar\nDiego\nBrendan\nVictor\nEduardo\nJake\nSteven\nRichard\nAlexis\nSebastian\nColin\nDerek\nJosiah\nTaylor\nRicardo\nXavier\nJoel\nMarcus\nPeter\nSpencer\nJeremiah\nManuel\nMark\nDillon\nJeremy\nJorge\nLevi\nPaul\nTravis\nDalton\nJaden\nSergio\nDakota\nHayden\nMitchell\nCesar\nHenry\nPreston\nVincent\nFrancisco\nErik\nMaxwell\nParker\nIvan\nMax\nCollin\nDustin\nDevon\nFernando\nScott\nAlan\nConner\nEdgar\nMarco\nStephen\nCarson\nLiam\nAngelo\nClayton\nOmar\nAlec\nDonovan\nJavier\nKenneth\nChandler\nJakob\nMario\nBradley\nCarter\nShane\nBraden\nChance\nDawson\nGage\nAbraham\nAndres\nBrady\nCaden\nCristian\nElias\nNicolas\nJeffrey\nMarcos\nZane\nBrayden\nCalvin\nCooper\nGregory\nHector\nKaleb\nOwen\nEdward\nHarrison\nJohnathan\nKeegan\nRaymond\nArmando\nBrody\nJaime\nJayden\nJonah\nMartin\nTrey\nWesley\nCasey\nDante\nEnrique\nShawn\nTy\nBailey\nCade\nDrake\nEli\nTrenton\nGerardo\nLandon\nRaul\nErick\nGustavo\nKaden\nLorenzo\nBrett\nSkyler\nBrennan\nGiovanni\nQuinn\nRoberto\nRuben\nBrenden\nDominick\nMicah\nMiles\nAlfredo\nAshton\nDamian\nEdwin\nNolan\nPeyton\nSimon\nEzekiel\nGriffin\nPhillip\nTristen\nCorey\nFrank\nJalen\nPayton\nPedro\nAbel\nAiden\nAvery\nDrew\nGeorge\nLance\nMathew\nElian\nKeith\nLane\nZachariah\nAxel\nBrayan\nChad\nCorbin\nCory\nDamien\nDavis\nEmilio\nIsrael\nJonathon\nJosue\nOliver\nRoman\nAndre\nArturo\nDallas\nEmmanuel\nJulio\nRamon\nTrent\nTroy\nBrock\nDennis\nDuncan\nGarret\nPhilip\nSaul\nTony\nAlberto\nDane\nFabian\nJohnny\nKeaton\nLukas\nMalachi\nMorgan\nRafael\nSantiago\nTucker\nBeau\nBryson\nDamon\nGrayson\nKai\nKobe\nKody\nLouis\nMarc\nPablo\nSterling\nTheodore\nTyson\nUriel\nWeston\nZachery\nAndy\nDarius\nDonald\nErnesto\nJace\nJadon\nNoe\nRonald\nSalvador\nZackary\nBraeden\nBrendon\nColby\nDarian\nDouglas\nIsiah\nJoe\nJordon\nNathanael\nReece\nTobias\nTriston\nEstevan\nEzequiel\nFelipe\nIsaias\nJerry\nLeonardo\nLeonel\nNikolas\nWalker\nAllen\nBennett\nBranden\nDangelo\nJarod\nJaxon\nJay\nKristopher\nKyler\nMarshall\nNickolas\nQuentin\nRandy\nRodrigo\nRylan\nSawyer\nSkylar\nAlonso\nAlvaro\nArthur\nBraxton\nClay\nCurtis\nDamion\nDean\nJon\nKade\nKenny\nMyles\nReese\nRene\nElliot\nEmanuel\nEmiliano\nEsteban\nIsmael\nJoaquin\nKeenan\nMoises\nOrion\nQuinton\nRicky\nRomeo\nRussell\nSolomon\nTommy\nAlfonso\nAlonzo\nBrennen\nBryant\nCamden\nColten\nConor\nDarren\nEverett\nFelix\nGraham\nGuillermo\nGunnar\nHugo\nIrving\nJohnathon\nKameron\nKellen\nLawrence\nMalcolm\nNoel\nOctavio\nRodney\nTate\nZackery\nZion\nAric\nAriel\nChris\nCraig\nCruz\nDemetrius\nDerrick\nDevan\nDeven\nJarrett\nJayce\nJovani\nLeif\nMalik\nMateo\nMaximilian\nMicheal\nMoses\nOrlando\nPorter\nRamiro\nRay\nRoger\nRoy\nRudy\nShaun\nTodd\nTristin\nAddison\nBilly\nCamron\nCayden\nDylon\nEaston\nEzra\nFinn\nIssac\nIzaiah\nJaren\nJasper\nJayson\nJoey\nJonas\nKoby\nKristian\nLeon\nOsvaldo\nPierce\nQuinten\nQuintin\nRogelio\nSantino\nSilas\nStone\nTomas\nWarren\nAlexzander\nAnders\nAnton\nBen\nBrent\nByron\nCoby\nCordell\nCullen\nDale\nDominik\nDominique\nDorian\nGerald\nJaiden\nJamison\nJaron\nJaxson\nJaylen\nJeffery\nJett\nJovan\nKane\nKole\nKolton\nLanden\nLarry\nLeo\nMauricio\nNelson\nNiko\nReed\nReid\nRiver\nShjon\nStephan\nTeagan\nToby\nVicente\nWade\nWalter\nAlbert\nAron\nAusten\nBridger\nCarl\nCyrus\nDanny\nDarien\nDeclan\nDonavin\nEddie\nElisha\nErnest\nEugene\nEver\nGary\nGilberto\nGunner\nHeath\nHolden\nIgnacio\nJarrod\nJaydon\nJovany\nJustice\nKeven\nMilton\nMohammad\nQuincy\nReilly\nRhys\nRodolfo\nSage\nSam\nSantana\nSantos\nSonny\nSoren\nStefan\nTerrence\nTye\nTylor\nUlises\nZakary\nZander\nAden\nAdolfo\nAgustin\nAnakin\nAsher\nAustyn\nBeck\nBenito\nBernardo\nBjorn\nBlaine\nBo\nBowen\nColeman\nCoy\nDeangelo\nDenzel\nDomonic\nDonavan\nEfrain\nElmer\nEmmett\nFidel\nFrancis\nFrederick\nGianni\nGiovani\nHarley\nHumberto\nIsaak\nJavon\nJordyn\nJude\nKasey\nKayden\nKieran\nKurtis\nLeroy\nMarlon\nMaximillian\nNathanial\nRigoberto\nSteve\nTegan\nTerrance\nTerrell\nThaddeus\nVan\nVance\nWilson\nXander\nAbram\nAdan\nAhmed\nAleksander\nAlexandro\nAllan\nAlvin\nAmir\nAndreas\nAri\nArnulfo\nAugust\nAyden\nBaylor\nBrenton\nBrooks\nBruce\nCale\nCalum\nColt\nCristobal\nCristofer\nDarrell\nDarrien\nDayton\nDesmond\nDonavon\nDonte\nEfren\nEliseo\nElliott\nElvis\nEnzo\nEthen\nGarrison\nGlen\nHeriberto\nIsidro\nJairo\nJameson\nJaret\nJarred\nJefferson\nJerome\nJonatan\nJordi\nJulien\nJullian\nJustus\nKacey\nKaelan\nKamron\nKendrick\nKhalid\nKian\nKobi\nKurt\nLayne\nLeonard\nLuca\nMackenzie\nMariano\nMarkus\nMaurice\nMaverick\nMitchel\nMohamed\nNash\nNeal\nNico\nObed\nRandall\nRocky\nRory\nRowan\nRyland\nSavion\nShea\nTitus\nTobin\nTre\nTrevon\nWayne\nWill\nZain\nZechariah\nZeke\nJacob\nMichael\nJoshua\nJoseph\nTyler\nMatthew\nAndrew\nDaniel\nNicholas\nRyan\nAlexander\nZachary\nBenjamin\nAnthony\nJose\nChristopher\nWilliam\nSamuel\nEthan\nDavid\nBrandon\nLogan\nDylan\nJames\nJonathan\nAustin\nJohn\nNoah\nGabriel\nChristian\nJack\nIsaiah\nJustin\nNathan\nLuis\nHunter\nCaleb\nKyle\nThomas\nJuan\nCameron\nJason\nJackson\nElijah\nAaron\nAdam\nEvan\nCarlos\nIsaac\nJesus\nKevin\nConnor\nLuke\nAngel\nRobert\nCody\nBrian\nBlake\nIan\nCole\nJordan\nTrevor\nAidan\nSean\nEric\nTanner\nDominic\nMason\nSeth\nNathaniel\nAdrian\nGarrett\nJared\nBryan\nCharles\nAlejandro\nJulian\nJorge\nJosiah\nLiam\nAlex\nChase\nPatrick\nTristan\nMiguel\nAntonio\nDevin\nColton\nRiley\nGrant\nTimothy\nLucas\nSpencer\nSteven\nJaden\nWyatt\nDiego\nDillon\nEduardo\nJeremiah\nVictor\nRichard\nCarson\nBrendan\nDakota\nOscar\nJesse\nXavier\nSebastian\nBryce\nMarcus\nAlan\nGavin\nDevon\nAlexis\nFrancisco\nHayden\nKaleb\nCristian\nJoel\nPeter\nAndres\nMark\nHenry\nManuel\nMitchell\nOwen\nTaylor\nCesar\nGage\nParker\nRicardo\nDerek\nErik\nMaxwell\nFernando\nVincent\nEdgar\nJavier\nLevi\nCarter\nColby\nPreston\nStephen\nJayden\nTravis\nJake\nPaul\nAiden\nDamian\nJakob\nMario\nDalton\nIvan\nMarco\nAngelo\nEdward\nCade\nJonah\nKenneth\nOmar\nColin\nCollin\nElias\nMax\nSergio\nAlec\nClayton\nJeffrey\nMarcos\nBraden\nCaden\nDonovan\nKaden\nMartin\nTrenton\nArmando\nGregory\nAbraham\nAxel\nBrayden\nDustin\nGeorge\nJaime\nJohnathan\nNolan\nDawson\nErick\nJeremy\nMicah\nConner\nHector\nBradley\nLeonardo\nScott\nCooper\nDante\nFabian\nGiovanni\nQuinn\nEdwin\nEli\nGerardo\nShane\nBrenden\nChance\nEmmanuel\nGriffin\nRaymond\nShawn\nLandon\nPhillip\nRoberto\nAshton\nJalen\nJulio\nNicolas\nRuben\nSaul\nZane\nDrake\nJace\nTrey\nBrady\nKeegan\nRaul\nSimon\nTristen\nCalvin\nHarrison\nReece\nRoman\nTrent\nTucker\nWesley\nAndre\nBrett\nEnrique\nIsiah\nMiles\nPeyton\nBrayan\nBrock\nJosue\nMaximus\nKai\nKyler\nLance\nLorenzo\nSkyler\nAndy\nDominick\nIsrael\nKade\nRamon\nTate\nBryson\nCasey\nErnesto\nMalachi\nMateo\nOliver\nRafael\nTroy\nAlfredo\nAvery\nBraeden\nDamien\nDrew\nGustavo\nIsmael\nTy\nZackary\nBrody\nChandler\nDarian\nHugo\nIssac\nLukas\nBrennan\nCamden\nCorbin\nCorey\nEsteban\nEzekiel\nGrayson\nJaxon\nJohnny\nLouis\nOrion\nPedro\nTheodore\nZachariah\nAlberto\nCory\nDamon\nDonald\nEmilio\nLane\nPablo\nRylan\nSalvador\nWalker\nArturo\nDouglas\nFrank\nJon\nJonathon\nMathew\nMorgan\nRonald\nSantiago\nUriel\nDerrick\nJoe\nKody\nMauricio\nOrlando\nTommy\nBrendon\nConor\nDean\nHudson\nJayson\nJoaquin\nJohnathon\nKeenan\nKeith\nMalik\nMarc\nNathanael\nNoe\nQuinton\nRomeo\nWeston\nAbel\nAsher\nBranden\nKeaton\nLarry\nPayton\nReed\nSawyer\nZachery\nAldo\nBailey\nCarl\nCayden\nClay\nDane\nDanny\nDarius\nDavis\nDuncan\nGuillermo\nHolden\nJay\nKameron\nKellen\nLeo\nNickolas\nPhilip\nReese\nTerry\nTyson\nUlises\nAlfonso\nCruz\nDennis\nElliot\nFrancis\nJadon\nJarod\nJimmy\nSam\nToby\nTomas\nTony\nAdan\nAllen\nAron\nArthur\nCamron\nCyrus\nEmiliano\nFelipe\nFrederick\nGarret\nGerman\nJaiden\nJovan\nKristian\nMarshall\nMoses\nMyles\nQuentin\nRogelio\nRussell\nSterling\nTristin\nAdolfo\nAlonso\nBennett\nChad\nCoby\nColten\nCurtis\nDallas\nDamion\nDeclan\nDesmond\nDorian\nElian\nEmanuel\nEstevan\nGreyson\nIrvin\nJohan\nJustice\nKobe\nKolby\nLawrence\nMarvin\nRamiro\nReid\nRodrigo\nSheldon\nSkylar\nTobias\nWill\nZander\nZion\nAllan\nAlonzo\nAugust\nAyden\nBraxton\nBraydon\nBryant\nCullen\nDevan\nDominique\nGideon\nGilbert\nGraham\nIrving\nIzaiah\nKane\nKenny\nKristopher\nOsvaldo\nQuinten\nRandy\nRene\nRoger\nRowan\nSage\nSilas\nTeagan\nXander\nAgustin\nAlbert\nAlvaro\nBeau\nBlaine\nBrooks\nCraig\nCristobal\nDayton\nDeon\nDeven\nEverett\nFelix\nGary\nGrady\nGuadalupe\nHarley\nHumberto\nIsaias\nJasper\nKaiden\nKelvin\nKoby\nLee\nLincoln\nMicheal\nMoises\nNikolas\nNoel\nPhoenix\nPorter\nQuincy\nRyder\nShjon\nTalon\nTrace\nTriston\nVicente\nWalter\nAden\nAli\nAlijah\nBrent\nDale\nEfrain\nImanol\nJaron\nJarrett\nJaylen\nJordon\nKeanu\nMalcolm\nMisael\nNathanial\nRicky\nRory\nRudy\nSantana\nShaun\nSonny\nStefan\nSteve\nWarren\nZakary\nAddison\nAlexandro\nAlfred\nAnders\nAnton\nBen\nBilly\nBobby\nBraedon\nDarien\nDario\nDomonic\nEddie\nEfren\nElmer\nEzequiel\nEzra\nFidel\nFinn\nHarry\nHeriberto\nIgnacio\nJameson\nJamie\nJavon\nJayce\nJaydon\nJoey\nJosef\nJovani\nJovany\nKolton\nLanden\nLeif\nLuc\nMaximillian\nMike\nNehemiah\nOsbaldo\nRalph\nRandall\nRaymundo\nRocco\nRodolfo\nRyker\nSantino\nTorin\nTylor\nZack\nZackery\nAdin\nAmir\nAri\nAriel\nAusten\nAustyn\nBenito\nBlade\nBridger\nBruce\nCale\nClarence\nColeton\nDarion\nDemetrius\nDeshawn\nDominik\nEliseo\nErnest\nGaige\nGarett\nGarrison\nJade\nJaeden\nJair\nJairo\nJamal\nJeffery\nJensen\nJerry\nJessie\nJonas\nKaeden\nKayden\nKent\nKenton\nKieran\nLeonel\nLuciano\nMaximiliano\nOswaldo\nPaxton\nPierce\nQuintin\nRaudel\nRey\nRigoberto\nRolando\nSantos\nSolomon\nStephan\nTerrell\nVaughn\nAndreas\nArmani\nAryan\nBrennen\nBret\nBronson\nCedric\nChris\nClifford\nClinton\nColt\nConrad\nDarren\nDavian\nDelfino\nDenis\nEmmett\nEugene\nEver\nEwan\nFinnian\nGabe\nGeoffrey\nGerald\nGiovanny\nGlenn\nGonzalo\nGunnar\nGunner\nHamza\nHarold\nHarper\nHoracio\nJan\nJean\nJeramiah\nJerome\nJett\nJonatan\nJordy\nJordyn\nJudah\nJude\nJulius\nJunior\nKadin\nKain\nKaya\nKeagan\nKendall\nKirk\nKole\nLeroy\nMackenzie\nMarkus\nMaurice\nMaxim\nMilo\nNash\nRaven\nRay\nRonan\nRylee\nSeamus\nSebastien\nStanley\nStone\nTitus\nTrevin\nTrinity\nTrystan\nUlysses\nZechariah\nJacob\nJoshua\nMichael\nEthan\nJoseph\nAlexander\nDaniel\nTyler\nAndrew\nDavid\nMatthew\nNicholas\nSamuel\nWilliam\nZachary\nJose\nRyan\nChristopher\nAnthony\nJames\nDylan\nBenjamin\nBrandon\nGabriel\nLogan\nJohn\nAustin\nElijah\nJesus\nJack\nJackson\nCaleb\nJonathan\nNathan\nChristian\nJustin\nNoah\nConnor\nLuis\nAaron\nAidan\nIsaiah\nJordan\nKevin\nAngel\nBlake\nLuke\nKyle\nJuan\nEvan\nIsaac\nHunter\nRobert\nDominic\nCody\nCarlos\nCameron\nThomas\nJason\nAdam\nMason\nIan\nAdrian\nEric\nCole\nBrian\nNathaniel\nCharles\nSean\nAlex\nTanner\nSebastian\nBryan\nWyatt\nHayden\nMiguel\nTrevor\nAlejandro\nJulian\nDiego\nSeth\nSteven\nGavin\nAntonio\nLiam\nVictor\nOwen\nRiley\nGarrett\nRichard\nColton\nLucas\nTristan\nTimothy\nJaden\nSpencer\nGrant\nJared\nJeremiah\nCaden\nChase\nJosiah\nBryce\nJesse\nMaxwell\nOscar\nXavier\nJorge\nJake\nDevin\nManuel\nMarcus\nHenry\nCesar\nIvan\nJayden\nAlan\nFrancisco\nJeremy\nKaleb\nAiden\nFernando\nAlexis\nJoel\nDonovan\nBraden\nErik\nLandon\nBrendan\nCarson\nMario\nPatrick\nGage\nPaul\nTaylor\nCarter\nColin\nDillon\nMax\nBrayden\nDalton\nEdgar\nEduardo\nKaden\nMark\nPreston\nJakob\nPeter\nSergio\nVincent\nAndres\nJavier\nRicardo\nLevi\nParker\nCristian\nDevon\nAlec\nJonah\nErick\nHector\nNicolas\nDakota\nEdward\nBrady\nBrayan\nCade\nJeffrey\nTravis\nCollin\nConner\nCooper\nEli\nMicah\nAbraham\nBradley\nDominick\nShawn\nZane\nAshton\nDamian\nGeorge\nOmar\nStephen\nGerardo\nScott\nDamien\nElias\nJohnathan\nKeegan\nKenneth\nWesley\nColby\nEdwin\nMitchell\nNolan\nDante\nGregory\nJaime\nPedro\nRaymond\nRoberto\nBrenden\nDerek\nMarcos\nShane\nArmando\nDawson\nRuben\nCalvin\nGustavo\nKyler\nMarco\nMartin\nRoman\nTrey\nAngelo\nCorey\nGiovanni\nLane\nLukas\nMiles\nSkyler\nTy\nHarrison\nLance\nOrlando\nPhillip\nRaul\nAlfredo\nAvery\nChance\nEnrique\nIsrael\nTrenton\nArturo\nBrody\nDustin\nAbel\nAndy\nClayton\nJace\nJalen\nJosue\nLeonardo\nBrennan\nCayden\nFabian\nGriffin\nJulio\nMaximus\nOliver\nUriel\nAxel\nBryson\nEmmanuel\nJaxon\nMalachi\nRafael\nTucker\nBrett\nDeclan\nErnesto\nGrayson\nKade\nMateo\nSaul\nAndre\nBrock\nBryant\nCory\nDrew\nEmilio\nKai\nPablo\nSimon\nTony\nCamden\nDamon\nDane\nEzekiel\nIsiah\nQuinn\nRamon\nTobias\nTrent\nAdan\nCasey\nJimmy\nJohnny\nJonathon\nKeaton\nRylan\nSalvador\nSantiago\nTyson\nIssac\nLawrence\nLeo\nLorenzo\nMathew\nUlises\nAllen\nAyden\nCaiden\nDrake\nJoaquin\nKameron\nKody\nMicheal\nQuentin\nTristen\nTroy\nWeston\nZachariah\nArthur\nCorbin\nEmiliano\nEzra\nFinn\nHugo\nJaiden\nKobe\nMoses\nPayton\nPeyton\nRandy\nZackary\nAlberto\nAsher\nBranden\nDavis\nDouglas\nEsteban\nGuillermo\nHarley\nJonas\nMoises\nMorgan\nNickolas\nRodrigo\nRogelio\nSage\nChad\nConor\nCurtis\nFelipe\nFrank\nJadon\nJayson\nNoel\nOrion\nSawyer\nTate\nTheodore\nZachery\nAden\nBrendon\nChandler\nDonald\nEaston\nFelix\nIsmael\nJeffery\nJessie\nJoe\nKaiden\nKeith\nLouis\nPhilip\nSilas\nTomas\nAldo\nAlfonso\nBeau\nCruz\nDennis\nGary\nGunnar\nIsaias\nMalcolm\nMauricio\nNathanael\nOsvaldo\nRamiro\nSam\nTristin\nWalker\nXander\nAri\nBraydon\nCharlie\nClay\nDallas\nDanny\nDerrick\nDominik\nJaydon\nJon\nKane\nKian\nMyles\nSkylar\nTodd\nWalter\nAlvaro\nBailey\nCarl\nDamion\nDangelo\nDayton\nDean\nDominique\nDuncan\nElliot\nEmanuel\nEzequiel\nJasper\nJaylen\nJerry\nKoby\nLanden\nLeon\nMarc\nMarshall\nQuincy\nReece\nReese\nRodolfo\nRudy\nAlonso\nBennett\nBraxton\nBridger\nChris\nDarius\nDarren\nEddie\nEstevan\nForrest\nGarrison\nGilberto\nGraham\nHolden\nIrvin\nIzaiah\nJay\nJayce\nKellen\nKolby\nLewis\nNikolas\nOctavio\nQuinton\nRiver\nRoger\nRoss\nRussell\nSullivan\nTommy\nZander\nAlbert\nAron\nBlaine\nBraeden\nCedric\nCoby\nCullen\nDimitri\nDorian\nDyllan\nEverett\nFrederick\nGerman\nGianni\nHudson\nJarod\nJarrett\nJoan\nJohan\nJordon\nJustice\nKeenan\nKole\nKolton\nLeonel\nMarvin\nMilo\nMisael\nPorter\nReed\nReid\nRicky\nSolomon\nSonny\nToby\nTrystan\nZackery\nZakary\nAhmed\nAlexandro\nAli\nAugust\nBilly\nBobby\nBowen\nBrennen\nBrent\nClint\nColter\nDemetrius\nDesmond\nDeven\nGael\nGilbert\nGrady\nJadyn\nJamie\nJaren\nJaron\nJett\nJulius\nKadin\nKayden\nKieran\nNathanial\nQuinten\nQuintin\nRene\nRex\nRocco\nRonald\nSoren\nSterling\nTeagan\nTriston\nWilson\nAddison\nAgustin\nAlonzo\nAngus\nAnton\nBraedon\nBraulio\nBrice\nBrooks\nBruce\nBrycen\nColeman\nColten\nCraig\nCyrus\nDale\nDarien\nDarin\nDario\nDestin\nDonavon\nGarret\nGiovani\nGreyson\nHumberto\nIgnacio\nJamal\nJameson\nJamison\nJerome\nJovan\nJovani\nJulien\nLee\nLuc\nLuca\nMalik\nMaximiliano\nNash\nNiko\nNoe\nPhoenix\nPierce\nRodney\nRomeo\nRonan\nRonnie\nRowan\nShaun\nTalon\nThaddeus\nValentino\nVicente\nZayne\nZion\nAllan\nAlvin\nAnders\nArmani\nAugustine\nAydan\nBen\nBenito\nBernardo\nBraiden\nBrennon\nBroderick\nByron\nCamron\nDallin\nDarian\nDavion\nDeshawn\nDevan\nDezmond\nDomanic\nDonte\nElvis\nFranklin\nGannon\nGonzalo\nHamza\nHoracio\nJan\nJasiah\nJaxson\nJeramiah\nJonatan\nJunior\nKeagan\nKenny\nKenyon\nKristian\nKristopher\nLayton\nLeonard\nMarkus\nMaximilian\nMelvin\nNehemiah\nNelson\nNico\nObed\nOswaldo\nRay\nRory\nSantos\nSeamus\nTitus\nTre\nTrevon\nTylor\nTyrell\nTyrese\nUriah\nWade\nWill\nXzavier\nZechariah\nAbram\nAdolfo\nAdrien\nAedan\nAlden\nAlexzander\nAlijah\nAustyn\nBenton\nBradyn\nBranson\nCale\nCampbell\nCase\nCian\nDarrian\nDarrien\nDarrion\nDavian\nDavin\nDayne\nDeandre\nDeangelo\nDerick\nDevyn\nDomingo\nElian\nElliott\nEver\nFavian\nGerald\nHarold\nHeath\nHezekiah\nIrving\nIsai\nIsidro\nIzaak\nIzak\nJadin\nJaeden\nJaedyn\nJahir\nJairo\nJavon\nJerimiah\nJoey\nJohnathon\nJovany\nJoziah\nKale\nKarl\nKennedy\nKeven\nKory\nKye\nLarry\nLeobardo\nLuiz\nMakai\nMigel\nNestor\nOsbaldo\nOskar\nQuinlan\nRaef\nReagan\nReyes\nRhys\nRolando\nRyker\nRyley\nSamual\nSantana\nSebastien\nShannon\nSteve\nTerence\nTerrance\nTerry\nTrace\nValentin\nWarren\nWiley\nYahir\nYovani\nZephaniah\nJacob\nJoshua\nAndrew\nAlexander\nDaniel\nEthan\nMichael\nJoseph\nRyan\nTyler\nMatthew\nJose\nSamuel\nBenjamin\nAnthony\nWilliam\nDavid\nZachary\nChristopher\nDylan\nJames\nGabriel\nJack\nLogan\nNicholas\nJohn\nBrandon\nJonathan\nElijah\nNoah\nNathan\nCaleb\nAidan\nKevin\nLuis\nEvan\nJackson\nConnor\nIsaiah\nIsaac\nAngel\nChristian\nJesus\nLuke\nJuan\nAustin\nRobert\nHunter\nJustin\nJordan\nThomas\nGavin\nJason\nAdam\nAaron\nDiego\nAdrian\nCarlos\nKyle\nCharles\nAiden\nMason\nBlake\nCameron\nIan\nAlex\nBryan\nCole\nDominic\nSean\nOwen\nBrian\nEric\nCody\nJaden\nMiguel\nSeth\nNathaniel\nHayden\nJulian\nLucas\nTristan\nTanner\nXavier\nAlejandro\nCaden\nGarrett\nLiam\nRiley\nJeremiah\nWyatt\nCarson\nJesse\nTrevor\nJayden\nChase\nIvan\nAlan\nCesar\nAntonio\nBryce\nKaden\nEduardo\nJosiah\nVictor\nColin\nDevin\nGage\nJorge\nPatrick\nTimothy\nCarter\nManuel\nSteven\nAshton\nColton\nJake\nMarcus\nMaxwell\nJoel\nSpencer\nMark\nOscar\nOmar\nAlexis\nHenry\nCooper\nDillon\nKaleb\nLandon\nLevi\nSebastian\nBrayden\nJared\nMax\nJavier\nKenneth\nParker\nNicolas\nBraden\nFernando\nBrendan\nConner\nDamian\nErik\nFrancisco\nMario\nRicardo\nDevon\nElias\nSergio\nCristian\nPeter\nAndres\nJonah\nTaylor\nGrant\nCollin\nDonovan\nVincent\nAngelo\nEdgar\nErick\nPreston\nRichard\nBrady\nCade\nDante\nGiovanni\nOliver\nWesley\nChance\nMarco\nZane\nBrody\nClayton\nDakota\nDominick\nPaul\nQuinn\nXander\nGeorge\nNolan\nPedro\nShawn\nJeremy\nMarcos\nMartin\nEmilio\nJace\nJakob\nJeffrey\nTrenton\nTy\nEli\nKai\nMiles\nRoberto\nTravis\nTrey\nDalton\nEdwin\nKeegan\nShane\nAlec\nArmando\nBrayan\nDamien\nEdward\nRuben\nAbraham\nAvery\nHector\nMicah\nDerek\nDustin\nEzekiel\nGregory\nLeonardo\nYahir\nAyden\nCalvin\nJohnathan\nKyler\nMalachi\nSaul\nStephen\nGerardo\nMitchell\nBrennan\nCamden\nColby\nPeyton\nSkyler\nTristen\nCasey\nRafael\nBrenden\nFabian\nGriffin\nSimon\nAndre\nAxel\nEmmanuel\nJulio\nAbel\nAndy\nJaime\nJaxon\nLorenzo\nRaul\nTrent\nIsrael\nLukas\nRoman\nAlberto\nBrock\nCayden\nHarrison\nJalen\nJosue\nKaiden\nPhillip\nScott\nTheodore\nCorbin\nGustavo\nJadon\nKobe\nMathew\nPablo\nRamon\nAlonzo\nBradley\nBraeden\nBrett\nDawson\nGrayson\nJimmy\nQuentin\nRandy\nTucker\nZachariah\nZander\nAden\nDamon\nEnrique\nGael\nLane\nRaymond\nRodrigo\nSalvador\nLance\nPayton\nReece\nRonald\nRowan\nAdan\nBeau\nBryson\nCurtis\nDamion\nElliot\nErnesto\nIsmael\nJonathon\nKeaton\nMorgan\nNikolas\nReid\nSantiago\nTyson\nUriel\nZackary\nAlonso\nDennis\nEmiliano\nLeo\nMaximus\nNoe\nRigoberto\nAlfredo\nArthur\nAsher\nBranden\nDavis\nDevyn\nDrake\nIssac\nIzaiah\nJonas\nKeenan\nKody\nMateo\nOrlando\nOsvaldo\nTroy\nWalker\nAllen\nBrendon\nCarl\nCorey\nCruz\nDouglas\nGraham\nJerry\nKade\nLawrence\nMauricio\nNickolas\nOrion\nSawyer\nSilas\nSkylar\nTobias\nChandler\nDarian\nDerrick\nDonald\nEmanuel\nFelipe\nFrank\nGunnar\nHolden\nJaiden\nJayce\nMoises\nMyles\nRussell\nSage\nToby\nBroderick\nBrodie\nChad\nDemetrius\nEsteban\nFelix\nGrady\nJoaquin\nKadin\nKayden\nKeith\nMarc\nOctavio\nPhoenix\nReese\nRodolfo\nRylan\nTate\nWeston\nArturo\nBryant\nCory\nDallas\nDane\nDominik\nEddie\nEzequiel\nFinn\nGilbert\nHugo\nIrvin\nJeffery\nJohnny\nJordon\nKristian\nLeonel\nMarvin\nMaximilian\nMoses\nPorter\nTony\nZechariah\nZion\nAdolfo\nAldo\nBennett\nBlaine\nCamron\nCharlie\nClay\nDeclan\nDerick\nDevan\nJameson\nJudah\nJude\nKellen\nLanden\nMalik\nNathanael\nPierce\nQuincy\nQuinton\nShaun\nTristin\nZackery\nAlexzander\nAlvaro\nAnton\nAron\nCyrus\nEzra\nGerald\nJohan\nJon\nJustice\nKaeden\nKameron\nLarry\nLouis\nLuca\nMarshall\nRicky\nRocco\nRoger\nRory\nRoy\nRyder\nSteve\nTomas\nTommy\nVicente\nXzavier\nAddison\nAlbert\nBraiden\nCash\nConor\nConrad\nDale\nDanny\nDonavan\nDorian\nDuncan\nEmmett\nEstevan\nEverett\nGary\nGianni\nGonzalo\nGuillermo\nHumberto\nIrving\nIsiah\nJaeden\nJamison\nJaron\nJaxson\nJay\nJaydon\nKieran\nMarkus\nQuintin\nRene\nRogelio\nRomeo\nSantana\nSantos\nSolomon\nStanley\nWalter\nZachery\nAlfonso\nAli\nAugust\nAusten\nBailey\nBenito\nBridger\nBruce\nCaiden\nChris\nCoby\nCoy\nCristopher\nDarin\nDayton\nDeven\nDrew\nElliott\nFletcher\nGannon\nGarret\nGerman\nIain\nIsaias\nJahir\nJairo\nJoe\nJordyn\nKale\nKeagan\nKian\nKolby\nKristopher\nLeif\nLeon\nNathanial\nRamiro\nReed\nRonan\nRudy\nSeamus\nSoren\nTalon\nTorin\nTriston\nVan\nWade\nWarren\nAgustin\nAllan\nAmir\nAnders\nAndreas\nBraxton\nBraydon\nBrennen\nBrent\nByron\nCael\nCedric\nDallin\nDean\nDemitrius\nDenzel\nEsai\nEugene\nFranklin\nGalen\nGilberto\nGreyson\nHarley\nHudson\nJagger\nJair\nJasper\nJaylen\nJerome\nJessie\nJulius\nKael\nKelton\nKelvin\nKendall\nKeven\nKoby\nLayne\nMariano\nMarlon\nMicheal\nMisael\nMohamed\nNestor\nNoel\nRandall\nRemington\nRiver\nRodney\nSam\nSonny\nStefan\nTavian\nTeagan\nTitus\nTrace\nTrevin\nAbram\nAlden\nAlexandro\nAlfred\nAntony\nAri\nAsa\nAtticus\nAustyn\nBen\nBobby\nBrenton\nBrice\nColter\nCraig\nCristobal\nDarien\nDario\nDavin\nEfren\nElmer\nFinnegan\nForrest\nFrederick\nGavyn\nGunner\nHarry\nIsai\nIzayah\nJacoby\nJaren\nJarod\nJarrett\nJayson\nJedidiah\nJohnathon\nJovanni\nJovanny\nJovany\nJustus\nKarson\nKenny\nKhalil\nKole\nKolton\nLee\nLincoln\nLouie\nMalcolm\nMaverick\nMelvin\nOswaldo\nOtis\nQuinlan\nRoss\nSabastian\nTobin\nUriah\nVance\nWestley\nAdin\nAdrien\nAidyn\nAlijah\nAlvin\nAshten\nBaylor\nBilly\nBlaze\nBo\nBradon\nBrecken\nBroden\nBruno\nCampbell\nClifford\nColten\nCristo\nCristofer\nCullen\nDangelo\nDarius\nDavion\nDavon\nDesmond\nDomonic\nEan\nEfrain\nElian\nEliot\nEnoch\nEoin\nFinley\nFinnian\nFloyd\nForest\nFrankie\nFreddy\nGarin\nGarrison\nGideon\nGino\nGordon\nGuadalupe\nHaven\nImanol\nIram\nIzaac\nJarrod\nJeramiah\nJerimiah\nJett\nJoey\nJohnnie\nJordy\nJunior\nKalob\nKane\nLars\nLayton\nLeroy\nMaddox\nMalakai\nMarquis\nMatthias\nMaximiliano\nMekhi\nMohammed\nNash\nNasir\nNico\nRex\nRhett\nRian\nRolando\nRonnie\nRyland\nRylee\nSaid\nSterling\nTaj\nTariq\nTerrance\nTodd\nTrae\nTristian\nTrystan\nTylor\nTyrese\nUlises\nUlysses\nVaughn\nWillie\nZack\nZavier\nJacob\nJoshua\nEthan\nDaniel\nAlexander\nAndrew\nMichael\nJoseph\nTyler\nSamuel\nRyan\nAnthony\nMatthew\nBenjamin\nJose\nWilliam\nDavid\nLogan\nGabriel\nZachary\nNicholas\nJonathan\nNoah\nJohn\nCaleb\nElijah\nDylan\nChristopher\nAngel\nJackson\nJack\nJames\nAidan\nNathan\nKevin\nIsaac\nBrandon\nConnor\nEvan\nIsaiah\nJesus\nAustin\nLuke\nJuan\nLuis\nNathaniel\nAiden\nChristian\nRobert\nDominic\nOwen\nDiego\nThomas\nKyle\nCameron\nCharles\nMason\nCarlos\nIan\nJustin\nAdrian\nCole\nGavin\nEric\nHunter\nAaron\nLucas\nAdam\nBryan\nBlake\nJason\nWyatt\nJordan\nCody\nHayden\nAlejandro\nJulian\nAlexis\nMiguel\nJosiah\nBrian\nJayden\nSean\nXavier\nChase\nLiam\nTanner\nVictor\nJesse\nRiley\nTrevor\nAlan\nCarter\nCaden\nGarrett\nJorge\nCooper\nAlex\nKaden\nAshton\nLandon\nColin\nHenry\nSeth\nAntonio\nEduardo\nJeremiah\nEdgar\nOscar\nBrayden\nDevin\nTimothy\nCesar\nJake\nCarson\nMarcus\nSebastian\nColton\nTristan\nJaden\nLevi\nPatrick\nVincent\nConner\nIvan\nCristian\nBryce\nManuel\nGrant\nBraden\nMicah\nCollin\nDamian\nEli\nPreston\nFernando\nMaxwell\nParker\nDillon\nPeter\nMark\nRicardo\nRichard\nBrendan\nJoel\nMax\nSpencer\nErick\nAbraham\nErik\nSteven\nDevon\nFrancisco\nJeremy\nDonovan\nHector\nIsrael\nKaleb\nPaul\nTy\nEdwin\nMartin\nPeyton\nAdan\nAyden\nBrody\nEdward\nEmilio\nJavier\nKenneth\nMario\nGiovanni\nJared\nOmar\nBrady\nDakota\nElias\nMiles\nRoman\nAngelo\nDerek\nFabian\nOliver\nSergio\nAndres\nBrayan\nGage\nJonah\nLeonardo\nMarco\nChance\nNolan\nTrenton\nTrey\nArmando\nRoberto\nShane\nJohnathan\nCade\nDalton\nDamien\nEzekiel\nJakob\nCamden\nBrenden\nGerardo\nBradley\nMalachi\nMitchell\nSantiago\nTaylor\nAsher\nCasey\nKai\nRaul\nAxel\nCorbin\nDante\nDominick\nEnrique\nGustavo\nJace\nNicolas\nZane\nAndy\nAvery\nCalvin\nPedro\nWesley\nColby\nDawson\nGeorge\nKaiden\nLorenzo\nMarcos\nQuinn\nRaymond\nStephen\nTravis\nYahir\nClayton\nJosue\nScott\nSimon\nTucker\nZander\nEmmanuel\nHugo\nJaime\nJeffrey\nMateo\nRyder\nSkyler\nTristen\nBrett\nBryson\nEzra\nKeegan\nRafael\nSaul\nShawn\nArturo\nBraeden\nDustin\nHarrison\nJaxon\nKayden\nRylan\nSalvador\nXander\nZachariah\nBeau\nBryant\nGriffin\nIsmael\nLouis\nLukas\nPablo\nRuben\nAden\nEmiliano\nGregory\nKyler\nLance\nAbel\nAlec\nFinn\nJulio\nLeo\nOrlando\nPhillip\nRamon\nTate\nTroy\nTyson\nBrock\nCayden\nDrake\nHudson\nJessie\nQuentin\nSilas\nAndre\nCyrus\nDavis\nJohnny\nKade\nMorgan\nPayton\nEzequiel\nGrayson\nHolden\nJaydon\nLanden\nLane\nMarshall\nNathanael\nRandy\nTobias\nToby\nAlfredo\nCruz\nDamion\nEsteban\nGael\nIzaiah\nMaddox\nMauricio\nNickolas\nRodrigo\nSawyer\nTheodore\nBraxton\nChad\nDean\nJaxson\nJude\nKeaton\nKeith\nLarry\nMoises\nOrion\nShaun\nTrent\nZachery\nAlberto\nArthur\nBraydon\nCory\nEver\nFrank\nGuillermo\nJaiden\nJalen\nKody\nMyles\nPhilip\nBennett\nCharlie\nEaston\nEddie\nGary\nGraham\nGunnar\nIsiah\nJonathon\nKameron\nLeonel\nNikolas\nReece\nRowan\nRussell\nSoren\nUlises\nWeston\nAli\nAllen\nBrennen\nBrooks\nCaiden\nCarl\nDane\nDeclan\nDeven\nDonald\nElliot\nErnesto\nIssac\nJadon\nJohnathon\nMathew\nOsvaldo\nPierce\nReid\nTalon\nTommy\nWalker\nWalter\nZackery\nAdolfo\nAri\nBen\nBrennan\nConor\nDavion\nDennis\nEfrain\nElian\nEmanuel\nGunner\nIrvin\nJasper\nJaylen\nJoaquin\nJovan\nJustice\nKellen\nKristopher\nMaximilian\nMicheal\nMilo\nQuincy\nUriel\nWilson\nZackary\nBoden\nCale\nCamron\nConrad\nCorey\nCurtis\nDangelo\nDarian\nDarius\nDerrick\nDorian\nFelix\nGideon\nGrady\nJay\nJerry\nJoe\nJon\nKeenan\nLuca\nMarc\nMarek\nOctavio\nPhoenix\nReed\nSage\nTitus\nAlonzo\nAron\nBrodie\nChandler\nCraig\nDallas\nDuncan\nEverett\nHarley\nJairo\nJameson\nJayson\nJonas\nKadin\nKyan\nLeon\nMarkus\nMisael\nMoses\nRene\nRicky\nRogelio\nRonald\nSeamus\nSullivan\nTomas\nTrystan\nZion\nAddison\nAlbert\nAldo\nAlexzander\nAlonso\nAmir\nAndon\nAugust\nBraedon\nBraiden\nBranden\nDamon\nDayton\nDevan\nDrew\nFelipe\nGerald\nIgnacio\nIsaak\nIsaias\nJadyn\nJaeden\nJayce\nKole\nKonner\nLincoln\nMaximus\nPrince\nRocco\nSam\nStone\nAlvaro\nAsa\nBailey\nBrycen\nChris\nColten\nDesmond\nDouglas\nElliott\nEmmett\nGianni\nGilberto\nGreyson\nHarold\nIsai\nJair\nJamison\nJaren\nJeffery\nJerome\nJordon\nKobe\nLeonard\nLuciano\nMaurice\nMaximiliano\nMekhi\nNehemiah\nNoe\nNoel\nPorter\nRaymundo\nRemington\nRomeo\nRory\nSantos\nZechariah\nAbram\nAllan\nAryan\nAtticus\nAugustine\nBeck\nBodie\nBranson\nBrendon\nDale\nDanny\nDaunte\nDavian\nDavin\nDavon\nDeandre\nDominik\nFletcher\nFrancis\nIrving\nJaron\nJaylon\nJeramiah\nJerimiah\nJimmy\nJoey\nJordy\nJovanni\nKaeden\nKale\nKenton\nKeven\nLuc\nMalakai\nMalcolm\nMathias\nNick\nNico\nQuinton\nRiver\nRoger\nRyland\nShea\nSolomon\nStephan\nSteve\nTristin\nTriston\nTyree\nVicente\nWayne\nYair\nAbdullah\nAedan\nAlfonso\nAmari\nAnders\nAnton\nAugustus\nBlaine\nBlane\nBode\nByron\nCallum\nClifford\nColeman\nDarrell\nDax\nDeacon\nDimitri\nDonavan\nDonavon\nEliseo\nErnest\nGavyn\nGino\nGuadalupe\nIsidro\nJavon\nJefferson\nJosef\nJoziah\nKane\nKeller\nKelton\nKelvin\nKian\nKieran\nKolby\nKonnor\nLawrence\nMalaki\nMarcelino\nMaximillian\nMelvin\nMemphis\nNathanial\nNelson\nQuinten\nRamiro\nReese\nReuben\nRhys\nRodolfo\nRohan\nRoland\nRonan\nRoyce\nRudy\nSamson\nSantana\nStefan\nTai\nTayden\nTeagan\nThaddeus\nTony\nTrevon\nVance\nZakary\nAce\nAdin\nAdriel\nAleksander\nAlijah\nAlvin\nAndreas\nAnson\nArath\nArmani\nArnold\nAydan\nBenito\nBenny\nBilal\nBjorn\nBobby\nBodhi\nBoston\nBrad\nBridger\nCaelan\nCalen\nCash\nCedar\nChester\nCristopher\nDarien\nDario\nDarren\nDerick\nDexter\nDraven\nDyson\nEan\nEduard\nEloy\nEly\nEmerson\nFransisco\nGarret\nGarrison\nGiovanny\nGrey\nHaden\nHeriberto\nIsael\nJarrod\nJasiah\nJax\nJaydin\nJett\nJoan\nJohan\nJovani\nJovany\nJudah\nKamden\nKanye\nKasen\nKeagan\nKeanu\nKegan\nKen\nKhalid\nKolten\nKolton\nKristian\nLee\nLeif\nLewis\nLucus\nMarcelo\nMarquis\nMatteo\nMatthias\nMauro\nMohamed\nMohammed\nNikolai\nRandall\nRodney\nRolando\nRonin\nRylee\nSkylar\nSteele\nSylas\nTerrance\nTrace\nTrenten\nTreyton\nTylor\nTyrell\nVaughn\nWade\nWill\nZeke\nJacob\nJoshua\nAlexander\nJoseph\nEthan\nTyler\nDaniel\nMichael\nAndrew\nAnthony\nWilliam\nRyan\nNoah\nSamuel\nDavid\nMatthew\nGabriel\nJose\nAngel\nDylan\nBenjamin\nChristopher\nJack\nJohn\nJonathan\nLogan\nJames\nNicholas\nElijah\nZachary\nNathan\nJackson\nEvan\nIsaiah\nAiden\nChristian\nLuke\nAidan\nCaleb\nIsaac\nAustin\nJuan\nLuis\nBrandon\nDiego\nHunter\nThomas\nConnor\nKevin\nGavin\nMason\nJesus\nIan\nRobert\nCarlos\nDominic\nJustin\nOwen\nCharles\nAaron\nJayden\nWyatt\nNathaniel\nJordan\nAdrian\nLucas\nAdam\nKaden\nCarter\nEric\nBrayden\nLandon\nJason\nCole\nKyle\nAlex\nCameron\nJulian\nTanner\nHayden\nBryan\nCody\nXavier\nAlejandro\nJosiah\nBlake\nLiam\nChase\nCarson\nCooper\nCaden\nSean\nHenry\nJesse\nRiley\nSebastian\nJeremiah\nMiguel\nBrian\nTrevor\nAlan\nVictor\nOscar\nSeth\nManuel\nVincent\nAlexis\nColton\nGrant\nJorge\nTristan\nEduardo\nMarcus\nAntonio\nIvan\nFrancisco\nGarrett\nPatrick\nBrady\nParker\nRichard\nBryce\nJake\nColin\nDevin\nAyden\nJaden\nCesar\nJeremy\nGage\nMario\nPreston\nTimothy\nLevi\nMax\nDonovan\nGiovanni\nMaxwell\nJonah\nKaleb\nSteven\nEdgar\nHector\nNicolas\nJavier\nErik\nMark\nDillon\nFernando\nSergio\nAndres\nMicah\nRoman\nBrody\nEli\nElias\nQuinn\nBraden\nCristian\nDamian\nPeter\nSpencer\nOmar\nPaul\nCollin\nDerek\nJared\nKai\nLeonardo\nEdwin\nMiles\nTy\nAshton\nMarco\nAsher\nJaime\nNolan\nOliver\nConner\nGeorge\nMalachi\nMartin\nBrayan\nEdward\nJoel\nPeyton\nSawyer\nAngelo\nCayden\nFabian\nDakota\nEmmanuel\nErick\nJosue\nRafael\nRicardo\nWesley\nAdan\nDevon\nRyder\nStephen\nJeffrey\nScott\nShane\nTrenton\nBryson\nEzekiel\nKenneth\nLanden\nTaylor\nZane\nCalvin\nDominick\nHudson\nAbraham\nDamien\nDante\nDrake\nJaxon\nKeegan\nRylan\nAxel\nGerardo\nJace\nJohnathan\nRuben\nTravis\nTrey\nAden\nKaiden\nLukas\nArturo\nAvery\nBrendan\nEmilio\nPedro\nRoberto\nShawn\nTheodore\nArmando\nBradley\nOrlando\nTyson\nDawson\nGael\nGrayson\nLance\nMateo\nBrock\nCamden\nEnrique\nGustavo\nMarcos\nCade\nClayton\nColby\nGregory\nRaul\nSaul\nSimon\nAndre\nDalton\nGriffin\nHarrison\nJulio\nLeo\nMitchell\nSkyler\nDustin\nKade\nKyler\nTristen\nAbel\nBraeden\nDrew\nKellen\nUriel\nZander\nCorey\nIsrael\nPablo\nQuentin\nRamon\nTucker\nXander\nAndy\nDamon\nEmanuel\nEzra\nFrank\nIsmael\nIzaiah\nLane\nLorenzo\nSantiago\nTrent\nWeston\nAlec\nChance\nJaiden\nJohnny\nKeaton\nMaddox\nMaximus\nSalvador\nTate\nAlonso\nBeau\nBennett\nCaiden\nCasey\nConor\nEmiliano\nJakob\nJayce\nMoises\nMyles\nRaymond\nAlonzo\nDeclan\nJayson\nMathew\nPhillip\nRogelio\nRowan\nSilas\nTitus\nToby\nYahir\nZachariah\nZion\nBraxton\nBrennan\nCharlie\nCory\nDarius\nDavian\nErnesto\nGraham\nJude\nPayton\nTroy\nCorbin\nDane\nDavis\nFelix\nJasper\nJoaquin\nLouis\nMauricio\nReece\nRonan\nTobias\nAdolfo\nAlberto\nBrenden\nEaston\nElliot\nEstevan\nKeenan\nMisael\nNehemiah\nNoel\nRandy\nReese\nWalker\nZackary\nAllen\nBryant\nCash\nDean\nGrady\nHolden\nIssac\nJay\nJerry\nJonathon\nJudah\nJulius\nKayden\nReid\nRiver\nXzavier\nAlfredo\nArthur\nBranden\nColten\nDonald\nEsteban\nEzequiel\nHugo\nJameson\nLeonel\nNikolas\nOrion\nReed\nRonald\nTommy\nUlises\nWade\nBailey\nCruz\nCyrus\nEverett\nFinn\nIrvin\nJessie\nJimmy\nJoe\nJonas\nKameron\nKristian\nMorgan\nNickolas\nNoe\nPhoenix\nReagan\nRodrigo\nSolomon\nTrace\nVicente\nZechariah\nAldo\nBraydon\nBraylon\nCamron\nCurtis\nDamion\nDanny\nDemetrius\nDerrick\nDorian\nEddie\nEwan\nFinnegan\nGilberto\nIsaias\nIsiah\nJair\nJamison\nKaeden\nKian\nLawrence\nMaximilian\nNathanael\nPorter\nRussell\nSam\nTristin\nWalter\nAlbert\nBowen\nBroderick\nCale\nChandler\nDallas\nDarian\nDavion\nDennis\nDeven\nDouglas\nEfrain\nElisha\nGideon\nGuillermo\nHeath\nJaxson\nJett\nJoey\nKeith\nKellan\nKolby\nKolton\nLincoln\nMatthias\nPhilip\nRodolfo\nSage\nShaun\nSullivan\nTalon\nTomas\nVan\nZachery\nAddison\nAdin\nAlden\nAlfonso\nAri\nBraiden\nBrett\nBrooks\nDangelo\nDarren\nElliott\nFrancis\nGeovanni\nHarley\nIsai\nJadon\nJalen\nKadin\nKieran\nMarshall\nNico\nPierce\nQuincy\nRoger\nRoy\nRyland\nSeamus\nTatum\nTony\nAli\nAmir\nAron\nBeckett\nBenito\nBlaine\nChad\nChris\nCraig\nDavin\nDeangelo\nDuncan\nEfren\nFavian\nFisher\nGerald\nGilbert\nJaeden\nJaydon\nJeffery\nJohan\nJohnathon\nJosef\nLandyn\nLeon\nLuca\nLuka\nMarc\nMarkus\nMarvin\nMaximillian\nMicheal\nMilo\nOctavio\nQuinton\nRamiro\nRomeo\nRudy\nSonny\nSoren\nStefan\nTalan\nTriston\nUriah\nAbram\nAchilles\nAhmed\nAlessandro\nAlvaro\nAnderson\nAriel\nAugust\nBenedict\nBilly\nBo\nBrendon\nBrennen\nBridger\nBruce\nCaeden\nCarl\nCoby\nConrad\nCristopher\nDayton\nDraven\nElian\nEnzo\nErnest\nEsai\nFelipe\nGaige\nGannon\nGarret\nGiovani\nGuadalupe\nIsidro\nJairo\nJaylen\nJoan\nJon\nJovan\nJovany\nJustice\nKristopher\nLayton\nMoses\nNathanial\nNeil\nObed\nOsvaldo\nPaxton\nRandall\nRay\nRex\nRohan\nRolando\nTyrell\nYael\nZackery\nAlijah\nAllan\nAnders\nAntony\nBrent\nBrodie\nByron\nCain\nCampbell\nCanyon\nCian\nClay\nCorben\nDax\nDeacon\nDevan\nDevlin\nDion\nDominik\nDonavan\nEliseo\nFrankie\nFrederick\nGiancarlo\nGianni\nGunnar\nGunner\nHarper\nHarris\nHarry\nHeriberto\nIgnacio\nIsreal\nJaron\nJasiah\nJavon\nJeramiah\nJovani\nJovanni\nJunior\nJustus\nKarson\nKarter\nKasey\nKelton\nKendrick\nKenyon\nKeven\nKobe\nKody\nKyan\nLawson\nLayne\nLeland\nLewis\nLochlan\nLucian\nLucius\nMalakai\nMalaki\nMarlon\nMaverick\nMekhi\nOmarion\nOsiel\nQuinten\nRamses\nRaphael\nRaymundo\nReilly\nRene\nReyli\nRico\nRodney\nRoland\nRory\nRyker\nTerry\nThatcher\nTodd\nTorin\nTreyton\nTurner\nVaughn\nWarren\nWilson\nYair\nAdonis\nAedan\nAgustin\nAmari\nAryan\nAugustine\nAugustus\nBarrett\nBeck\nBlaise\nBode\nBodie\nBrad\nBradyn\nBrecken\nBrenton\nBrogan\nCadin\nCael\nCedric\nChaz\nClark\nColter\nDeandre\nDeon\nDerick\nDesmond\nDevyn\nDillan\nDominique\nEmmett\nEver\nEverardo\nFletcher\nFredy\nGeoffrey\nGiovanny\nGlenn\nIrving\nIzak\nJase\nJean\nJericho\nJermaine\nJet\nJohann\nJorden\nJovanny\nKale\nKamden\nKarl\nKelvin\nKole\nKonnor\nKylan\nLee\nLuc\nMarek\nMarques\nMatteo\nMikah\nNasir\nNelson\nNikko\nQuintin\nRemington\nReyes\nReynaldo\nRhett\nRicky\nRocco\nRoyal\nSebastien\nStanley\nSterling\nTai\nTaven\nTeagan\nTegan\nUlysses\nValentino\nWaylon\nWill\nYovani\nJacob\nEthan\nAlexander\nJoshua\nNoah\nLogan\nAndrew\nMichael\nDaniel\nBenjamin\nSamuel\nDavid\nAnthony\nChristopher\nJoseph\nMatthew\nTyler\nGabriel\nRyan\nElijah\nWilliam\nJose\nAngel\nJackson\nIsaiah\nJack\nJames\nAiden\nNicholas\nDiego\nCaleb\nJohn\nBrandon\nEvan\nMason\nAidan\nLuis\nChristian\nJonathan\nDylan\nGavin\nNathan\nIsaac\nZachary\nKevin\nOwen\nJesus\nConnor\nJustin\nAustin\nLuke\nJuan\nDominic\nHunter\nAaron\nAdrian\nCameron\nLandon\nThomas\nBryan\nJordan\nWyatt\nJulian\nSebastian\nJayden\nXavier\nAdam\nLucas\nCole\nIan\nJosiah\nCarlos\nRobert\nBlake\nHayden\nJason\nCharles\nLiam\nBrayden\nMiguel\nBrian\nCarson\nCarter\nCooper\nCody\nHenry\nTristan\nEric\nSean\nChase\nAlex\nKaden\nRiley\nAlejandro\nCaden\nJeremiah\nNathaniel\nAntonio\nKyle\nGage\nMarcus\nVictor\nAlan\nLevi\nEduardo\nBrady\nJesse\nJorge\nTrevor\nManuel\nTanner\nColton\nOscar\nGrant\nOliver\nKaleb\nMax\nParker\nTimothy\nBrody\nEli\nJaden\nAlexis\nCristian\nVincent\nGiovanni\nMicah\nPreston\nFernando\nIvan\nJoel\nRichard\nGarrett\nBryce\nColin\nMark\nOmar\nErick\nMaxwell\nSeth\nDamian\nDonovan\nJake\nPeter\nAngelo\nAyden\nDevin\nErik\nFrancisco\nJared\nPatrick\nMiles\nSergio\nCesar\nSteven\nBraden\nJonah\nAshton\nRicardo\nDevon\nEdwin\nKeegan\nMario\nDamien\nElias\nJavier\nNolan\nPaul\nAndres\nEdgar\nRoman\nNicolas\nQuinn\nAsher\nDerek\nMartin\nDillon\nEzekiel\nHector\nMarco\nWesley\nAbraham\nBrendan\nLincoln\nSimon\nDakota\nEmilio\nJohnathan\nTy\nDominick\nEdward\nJace\nJaxon\nKai\nPeyton\nSawyer\nGrayson\nConner\nIsrael\nLanden\nPedro\nTaylor\nZane\nKaiden\nSpencer\nAxel\nBradley\nGerardo\nKyler\nMalachi\nRaul\nTravis\nAvery\nDalton\nEmmanuel\nLeonardo\nRoberto\nXander\nCamden\nChance\nDante\nJaime\nLorenzo\nMaddox\nRaymond\nShawn\nStephen\nAdan\nCollin\nHarrison\nJosue\nJulio\nKenneth\nRylan\nAden\nJeremy\nCade\nCayden\nEmiliano\nJeffrey\nPablo\nTrey\nGeorge\nRyder\nArmando\nBrayan\nBrock\nBryson\nRuben\nShane\nAbel\nAndre\nCash\nClayton\nGriffin\nJoaquin\nNehemiah\nDeclan\nDustin\nFabian\nHudson\nKayden\nLeo\nMarcos\nMateo\nSaul\nTate\nTyson\nGael\nLukas\nMitchell\nOrlando\nPorter\nTroy\nUriel\nCasey\nCorbin\nIzaiah\nSkyler\nAlberto\nCalvin\nCruz\nOrion\nPayton\nRamon\nRodrigo\nSilas\nWeston\nBeau\nCharlie\nDane\nEnrique\nLance\nRowan\nTalon\nZachariah\nZion\nDrake\nElliot\nHugo\nIsmael\nLeonel\nMauricio\nReid\nSantiago\nTucker\nZander\nBraeden\nCyrus\nEmanuel\nMathew\nTrenton\nAlec\nAlonso\nBrenden\nBrennan\nBrett\nColby\nHolden\nJakob\nJameson\nJaxson\nJoe\nKade\nKellen\nLouis\nNickolas\nRandy\nYahir\nAlfredo\nAndy\nBraxton\nBraydon\nConor\nEddie\nGustavo\nJaiden\nRafael\nRiver\nRogelio\nBennett\nCorey\nDawson\nDrew\nEsteban\nEverett\nIsiah\nJay\nLuca\nMoises\nOswaldo\nRomeo\nScott\nAnderson\nBryant\nChris\nDavis\nElliott\nErnesto\nFelix\nFinnegan\nGraham\nGregory\nIssac\nKody\nLane\nMoses\nQuentin\nReece\nTrent\nArturo\nColten\nDamon\nEaston\nEzra\nFinn\nJulius\nPhillip\nTheodore\nTobias\nToby\nAdolfo\nCaiden\nCurtis\nDerrick\nDuncan\nEmerson\nFrank\nGunnar\nJadon\nJessie\nKameron\nKeaton\nLeland\nMaximilian\nMilo\nPhilip\nPhoenix\nRocco\nSalvador\nTristen\nUlises\nZackary\nAlexzander\nAnders\nArthur\nBrendon\nGreyson\nJamison\nJohnny\nJonathon\nJovani\nJovany\nJude\nJulien\nKale\nKeagan\nMarshall\nMyles\nNikolas\nOsvaldo\nReese\nRonan\nTeagan\nTristin\nWalker\nAbram\nAmari\nAron\nAtticus\nAugustus\nAydan\nCael\nCannon\nCohen\nDallas\nDanny\nDarius\nDavin\nDean\nDorian\nEzequiel\nGianni\nGideon\nGrady\nGuillermo\nIrving\nJadyn\nKeenan\nLarry\nMaximus\nMorgan\nNelson\nQuintin\nRamiro\nReed\nRhys\nRicky\nRonald\nSage\nSeamus\nSonny\nSterling\nTalan\nTitus\nTomas\nTony\nUriah\nAdriel\nAedan\nAlbert\nAllen\nArmani\nAugustine\nAydin\nBeckett\nBranden\nBrooks\nChad\nClark\nConrad\nCory\nDayton\nDennis\nDraven\nEmmett\nGilbert\nGilberto\nIrvin\nIsaias\nJairo\nJasper\nJerry\nJovan\nJudah\nKadin\nMalik\nMarc\nMatteo\nNoel\nOdin\nQuincy\nQuinton\nRyland\nShaun\nSteve\nTrace\nTriston\nVicente\nZachery\nAlexandro\nAlfonso\nAli\nAmir\nAugust\nBlaine\nBoden\nBrennen\nBroderick\nCoen\nCraig\nDale\nDarren\nDavian\nDeacon\nDevan\nDominik\nDonavan\nDouglas\nGarret\nJayce\nJaydon\nJeffery\nJett\nJon\nJosef\nJunior\nKarson\nKieran\nMarkus\nMathias\nRonnie\nRussell\nVance\nYair\nAddison\nAdin\nAnton\nBarrett\nBen\nBilly\nBraiden\nBraylon\nBrodie\nBruno\nCale\nCamron\nCanyon\nDeshawn\nEver\nFelipe\nFinley\nGaige\nGary\nJalen\nJaylen\nJohan\nJonas\nJovanni\nJustus\nKane\nKeanu\nKeith\nLeonard\nLuka\nMarek\nNeil\nNoe\nPierce\nRidge\nRudy\nSam\nSamson\nSantana\nSkylar\nTrystan\nWarren\nAditya\nAldo\nAlonzo\nAlvaro\nAri\nBailey\nBodhi\nBraedon\nBridger\nBrogan\nCaeden\nCarl\nColeman\nCorban\nCristobal\nCristofer\nDamion\nDangelo\nDario\nDenzel\nDonald\nEder\nEfrain\nForrest\nGeovanni\nGunner\nHarley\nIgnacio\nJayson\nJimmy\nJosh\nKael\nKelvin\nKristopher\nLawrence\nLee\nLewis\nLyric\nMalakai\nMalcolm\nMarvin\nMaurice\nMohamed\nNathanial\nRodney\nRoger\nRohan\nRyker\nSebastien\nSolomon\nSoren\nTegan\nTobin\nTommy\nTrevon\nTyree\nUlysses\nWade\nZechariah\nAdrien\nAidyn\nAlden\nAleksander\nAlfred\nAlvin\nAriel\nBeckham\nBobby\nBode\nBodie\nBoston\nBruce\nByron\nCallum\nCarlitos\nDallin\nDavion\nDayne\nDesmond\nDevyn\nEfren\nElier\nFletcher\nFrederick\nGerald\nGiovanny\nHaiden\nHarper\nHaven\nJair\nJamie\nJaron\nJase\nJoan\nJoey\nJovanny\nKarl\nKegan\nKeller\nKelton\nKian\nKing\nKolby\nKolten\nKristian\nLeif\nLucian\nLuciano\nMaverick\nMaximiliano\nMelvin\nMisael\nNash\nNikolai\nOctavio\nPaxton\nRandall\nRaphael\nRonin\nSantino\nSantos\nStefan\nStephan\nSullivan\nTerrance\nTerry\nThaddeus\nTiernan\nTryston\nValentino\nVan\nVaughn\nWalter\nWill\nWilson\nXzavier\nAlessandro\nAndreas\nAntony\nAsa\nAusten\nAustyn\nAxton\nBeck\nBernardo\nBlaze\nBrad\nBrandan\nBraulio\nBrent\nCaedmon\nCalder\nCallen\nCarsten\nCase\nCason\nCedric\nChandler\nChristofer\nClay\nColter\nCrew\nCristopher\nDarian\nDarryl\nDaylan\nDemetri\nDevlin\nDonavon\nDuke\nEddy\nEden\nEdison\nElisha\nElvin\nEly\nEstevan\nEthen\nFisher\nFoster\nFrankie\nGerman\nGus\nHezekiah\nIsac\nIsai\nJaeden\nJaren\nJasiah\nJasiel\nJavin\nJavon\nJayvon\nJeramiah\nJustice\nKaeden\nKash\nKillian\nKolton\nKye\nLandyn\nLeon\nMagnus\nMarshal\nMauro\nMaxim\nMekhi\nMerik\nOmari\nOskar\nOsmar\nReginald\nReilly\nRex\nRey\nReyes\nReyli\nRico\nRolando\nRoy\nRylee\nTalyn\nTatum\nTaven\nTavin\nZackery\nJacob\nDaniel\nAlexander\nEthan\nJoshua\nNoah\nJoseph\nBenjamin\nAnthony\nLogan\nGabriel\nAndrew\nMichael\nWilliam\nMatthew\nSamuel\nAiden\nRyan\nDavid\nElijah\nJames\nChristopher\nJackson\nDylan\nMason\nGavin\nTyler\nJose\nIsaiah\nJack\nZachary\nAngel\nNathan\nCaleb\nNicholas\nEvan\nJonathan\nIsaac\nJohn\nOwen\nDiego\nLuis\nJayden\nLuke\nChristian\nBrandon\nConnor\nWyatt\nAaron\nAustin\nKevin\nAdrian\nLucas\nRobert\nHunter\nIan\nJordan\nJesus\nDominic\nJuan\nJosiah\nLandon\nAidan\nJulian\nXavier\nCameron\nThomas\nCharles\nCarlos\nLiam\nHenry\nRiley\nNathaniel\nCaden\nJustin\nCole\nAdam\nTristan\nBrayden\nHayden\nBryan\nCarter\nJason\nAlejandro\nJeremiah\nOliver\nCarson\nCooper\nSebastian\nCody\nBlake\nMiguel\nSean\nBrian\nChase\nDevin\nKyle\nEric\nJaden\nJesse\nAshton\nAlex\nColton\nElias\nAyden\nBrady\nKaleb\nParker\nAlan\nVincent\nBrody\nKaden\nTrevor\nAntonio\nIvan\nJorge\nMicah\nGiovanni\nLevi\nMaxwell\nBryce\nTanner\nCesar\nOscar\nMarcus\nPreston\nSeth\nVictor\nManuel\nDamian\nDerek\nEli\nJavier\nOmar\nAsher\nMax\nEdgar\nGarrett\nRoman\nTimothy\nAlexis\nColin\nJake\nRichard\nEduardo\nJoel\nRicardo\nSteven\nEdwin\nFernando\nPatrick\nJonah\nNolan\nEdward\nMario\nDamien\nConner\nGrant\nNicolas\nAngelo\nRyder\nZane\nBraden\nErik\nKai\nErick\nGage\nJace\nKayden\nSpencer\nDonovan\nHudson\nMark\nCristian\nDominick\nHector\nJosue\nMiles\nStephen\nAndres\nGeorge\nJeremy\nKeegan\nLeo\nLeonardo\nAndre\nEmmanuel\nMartin\nRuben\nDillon\nRylan\nSantiago\nXander\nBradley\nCollin\nEzekiel\nFrancisco\nIsrael\nJaxon\nMarcos\nPaul\nPeter\nPeyton\nQuinn\nSawyer\nTravis\nAbraham\nCade\nFabian\nMateo\nBrendan\nCayden\nKenneth\nSergio\nDante\nEverett\nGael\nGriffin\nJohnathan\nLorenzo\nShane\nEmilio\nKyler\nRowan\nSimon\nTrenton\nTrey\nAvery\nBryson\nChance\nFinn\nGustavo\nLincoln\nMalachi\nShawn\nSilas\nAden\nCorbin\nDevon\nDrew\nMaddox\nTroy\nCalvin\nGrayson\nJaiden\nKaiden\nLanden\nRaymond\nEmanuel\nTaylor\nUriel\nAxel\nBrayan\nCamden\nClayton\nDrake\nRamon\nWesley\nYahir\nAlfredo\nJared\nMitchell\nRodrigo\nTucker\nTyson\nBrennan\nGerardo\nMyles\nTheodore\nBrenden\nDane\nGrady\nJonas\nJude\nQuentin\nTobias\nTy\nWeston\nAbel\nFelix\nHarrison\nJoaquin\nMarco\nRoberto\nSaul\nAndy\nCash\nDakota\nEmiliano\nJohnny\nKade\nRafael\nRaul\nArturo\nBrodie\nHolden\nJameson\nJeffrey\nLane\nLukas\nNehemiah\nOrion\nTalon\nBennett\nDalton\nDawson\nDerrick\nIzaiah\nJulio\nOrlando\nSkyler\nAlonso\nBraxton\nCaiden\nEaston\nEzra\nGreyson\nPayton\nPedro\nRonan\nScott\nTitus\nTristin\nAdan\nAmari\nCasey\nDavian\nErnesto\nJaime\nJudah\nJustice\nKieran\nMorgan\nNoe\nReed\nZachariah\nZion\nBrock\nEnrique\nFrank\nGregory\nJaxson\nKaeden\nLance\nLawrence\nPorter\nSkylar\nTate\nBraeden\nBrett\nColby\nCruz\nEmerson\nJavon\nJonathon\nPhillip\nRicky\nTriston\nAnderson\nArthur\nChris\nDouglas\nElliot\nFinnegan\nHugo\nIsiah\nJayce\nJohan\nLeland\nPablo\nPaxton\nReese\nReid\nRomeo\nZander\nAlfonso\nBen\nCohen\nColten\nCorey\nCyrus\nDarren\nDavin\nDean\nDominik\nDustin\nEmmett\nEstevan\nGunnar\nIsmael\nJasper\nJett\nLouis\nLuca\nMarek\nMauricio\nMaximus\nTeagan\nZayden\nAdolfo\nAlijah\nArmando\nBeckett\nCharlie\nDavis\nDeclan\nEsteban\nGraham\nGuillermo\nIssac\nJaydon\nKeaton\nMoises\nNoel\nRamiro\nReece\nRiver\nTrent\nZackary\nAdonis\nAlvaro\nAtticus\nBeau\nCurtis\nDallas\nElliott\nJadon\nJakob\nJoey\nKristian\nKristopher\nLandyn\nLayne\nPierce\nQuincy\nRonald\nShaun\nSullivan\nTomas\nVicente\nWalker\nAlbert\nAlec\nAli\nAri\nAron\nBoden\nBraydon\nBruce\nCory\nDarius\nDeacon\nDennis\nDonald\nEzequiel\nFinley\nIrvin\nJay\nJimmy\nJustus\nKarson\nKeenan\nKingston\nKolby\nMalakai\nMarshall\nMathew\nMaximilian\nMilo\nMoses\nPhilip\nRussell\nSalvador\nSam\nSoren\nTristen\nAbdiel\nAldo\nAllen\nAlonzo\nAsa\nBarrett\nBo\nBrooks\nBryant\nColt\nCristopher\nDavion\nDesmond\nEwan\nFletcher\nGilberto\nHarry\nIsaias\nJayson\nJerimiah\nJoe\nJovani\nJulius\nKameron\nLarry\nLeonel\nLucian\nLuciano\nLyric\nMarvin\nMelvin\nMicheal\nNathanael\nQuinton\nRodolfo\nRoyce\nRyker\nSage\nUlises\nAlberto\nAndreas\nArcher\nBraylon\nBrycen\nCarl\nClark\nDamion\nDarian\nDevan\nGarret\nGunner\nHarper\nIgnacio\nJase\nJasiah\nJerry\nJessie\nJohnathon\nJoziah\nJunior\nKasen\nKeith\nKellen\nKody\nLandin\nMisael\nOsvaldo\nRemington\nRonin\nRyland\nSantino\nStone\nTatum\nTony\nTorin\nTrace\nValentin\nVaughn\nWalter\nAbram\nAdriel\nAidyn\nAlden\nArmani\nBailey\nBodhi\nBodie\nBridger\nCamron\nChad\nClinton\nDamon\nDanny\nDayton\nDorian\nEnzo\nFelipe\nFranklin\nGaige\nGary\nGiovanny\nJovanny\nJulien\nKadin\nKane\nKellan\nKorbin\nKylan\nMarkus\nMatias\nMaurice\nMaverick\nNico\nNikolas\nPhoenix\nRocco\nRogelio\nRonnie\nRoy\nRylee\nSantana\nSeamus\nTruman\nUriah\nWillem\nZachery\nZavier\nAedan\nAntony\nAugustus\nAydan\nBrennon\nBrice\nBronson\nCael\nCale\nCallum\nClay\nDallin\nDax\nDevlin\nDraven\nDuncan\nFidel\nGavyn\nGideon\nGiovani\nHaven\nIsai\nJacoby\nJamison\nJordy\nJovan\nKeller\nKelton\nKenyon\nKeven\nKhalil\nKolton\nLuka\nMalaki\nMalcolm\nMalik\nMarc\nNelson\nQuinlan\nQuintin\nRandy\nReagan\nRhys\nSterling\nTalen\nTristyn\nTyree\nWarren\nWayne\nXzavier\nYurem\nZackery\nAaden\nAlek\nAlexandro\nAlexzander\nBraiden\nBranden\nBrogan\nCannon\nCanyon\nChanning\nChristofer\nConor\nConrad\nCormac\nCullen\nDandre\nDillan\nDylon\nElisha\nFrancis\nGannon\nGuy\nIbrahim\nJaidyn\nJax\nJeramiah\nJericho\nJoan\nJovanni\nJovon\nKale\nKevyn\nKian\nKillian\nKoa\nKole\nLawson\nLee\nLeon\nLeonidas\nLondon\nMarlon\nMarques\nMatthias\nMattias\nMaximiliano\nMessiah\nMike\nNahum\nNiko\nPalmer\nRaiden\nRay\nRoger\nRory\nRowen\nRyley\nSantos\nSimeon\nSolomon\nStefan\nSteve\nTalan\nThatcher\nTreyvon\nValentino\nZavion\nAbdullahi\nAce\nAdison\nAlfred\nAlvin\nAmare\nAnsel\nAriel\nBenito\nBenny\nBilly\nBlaise\nBlaze\nBode\nBrad\nBradyn\nBraedyn\nBroden\nBruno\nByron\nCaeden\nCarlo\nCarmine\nCedric\nChaz\nCian\nColeman\nCorban\nDavon\nDeangelo\nDemetrius\nDeon\nDerick\nDestin\nDeven\nDevyn\nEamon\nEddy\nEdison\nEfrain\nEleazar\nEliot\nEllis\nErich\nEsai\nEugene\nEver\nFabricio\nFinnian\nFrankie\nGeoffrey\nGiancarlo\nGianni\nGilbert\nGuadalupe\nHaiden\nHank\nHarley\nHarold\nHogan\nHyrum\nIsacc\nJacen\nJavion\nJaylen\nJaziel\nJerome\nJon\nJordyn\nJosef\nJosias\nKaedyn\nKasey\nKenny\nKent\nKobe\nLayton\nLennon\nLionel\nLucien\nMaddux\nMarcel\nMarley\nMathias\nMaximo\nMerrick\nMiguelangel\nMuhammad\nNasir\nNathanial\nNickolas\nNikko\nOdin\nRandall\nRene\nRigoberto\nRohan\nRoland\nRolando\nSabastian\nSamson\nSidney\nSlade\nSylas\nTai\nTeagen\nThaddeus\nTobin\nTommy\nToren\nTripp\nTrystan\nTyce\nTyrone\nTysen\nUlices\nWaylon\nYandel\nZack\nZakary\nZayne\nZechariah\nAlexander\nJacob\nEthan\nWilliam\nNoah\nGabriel\nJoshua\nDaniel\nAnthony\nElijah\nJames\nLogan\nMichael\nAndrew\nBenjamin\nMatthew\nSamuel\nJoseph\nAiden\nDavid\nJackson\nJack\nRyan\nIsaac\nChristopher\nJohn\nGavin\nLuke\nTyler\nMason\nAngel\nJayden\nJonathan\nDylan\nJose\nNathan\nBrandon\nCaleb\nIsaiah\nLiam\nNicholas\nJosiah\nChristian\nEvan\nZachary\nAdrian\nConnor\nLuis\nKevin\nBrayden\nLandon\nAaron\nLucas\nJulian\nOwen\nBrody\nAustin\nDiego\nJesus\nCarter\nCooper\nWyatt\nAidan\nCarlos\nHenry\nIan\nHunter\nThomas\nTristan\nBlake\nJuan\nDominic\nRobert\nCharles\nJordan\nJustin\nXavier\nColton\nHayden\nAdam\nChase\nCole\nSebastian\nCaden\nJason\nCameron\nCarson\nLevi\nAlejandro\nRiley\nJeremiah\nOliver\nNathaniel\nSean\nCody\nJesse\nAlex\nAyden\nBrady\nElias\nEli\nOscar\nAlan\nMiguel\nKaden\nMicah\nBryan\nEric\nJace\nAntonio\nMax\nVictor\nAsher\nMarcus\nDamian\nAshton\nJonah\nParker\nMiles\nColin\nKyle\nEduardo\nCristian\nSawyer\nAlexis\nBryce\nIvan\nJeremy\nMaxwell\nTanner\nFernando\nFrancisco\nGrant\nPatrick\nJoel\nJorge\nNolan\nPreston\nSeth\nEzekiel\nJake\nSteven\nTrevor\nBrian\nDevin\nGage\nMaddox\nVincent\nCesar\nDonovan\nGiovanni\nOmar\nSpencer\nDamien\nEdwin\nDillon\nErick\nJaden\nLeonardo\nManuel\nAndres\nGarrett\nHudson\nMalachi\nQuinn\nTimothy\nEdgar\nEdward\nErik\nJaxon\nKeegan\nRicardo\nRyder\nDerek\nJavier\nJude\nNicolas\nRichard\nCayden\nDrake\nFinn\nJaiden\nKai\nKaleb\nRoman\nAngelo\nGeorge\nGrayson\nKaiden\nAbraham\nEmmanuel\nHector\nLincoln\nMario\nMark\nSantiago\nTy\nCamden\nDominick\nLanden\nAxel\nLeo\nPeyton\nRylan\nSimon\nTrenton\nTroy\nCalvin\nCollin\nCorbin\nMarco\nConner\nIsrael\nSergio\nTaylor\nTravis\nDane\nJared\nPaul\nArmando\nClayton\nEmiliano\nFabian\nJohnathan\nTucker\nWesley\nBryson\nCade\nCruz\nHarrison\nJosue\nRowan\nShane\nSilas\nZane\nKenneth\nRuben\nTrey\nBrendan\nEzra\nGraham\nGriffin\nJakob\nMarcos\nMateo\nPedro\nTristen\nAvery\nBraden\nChance\nEmanuel\nLukas\nPeter\nXander\nBrock\nCash\nDakota\nEnrique\nHugo\nKayden\nMartin\nMilo\nAbel\nAdan\nAndy\nColby\nEverett\nJameson\nTyson\nZander\nAndre\nBradley\nBrayan\nElliot\nEmilio\nGael\nGerardo\nJeffrey\nRoberto\nTheodore\nWeston\nDevon\nJaime\nKyler\nLane\nRodrigo\nSkyler\nTate\nYahir\nZachariah\nDante\nDavis\nDrew\nEaston\nGrady\nJulio\nKeagan\nLuca\nMaximus\nOrion\nPhillip\nSaul\nAlec\nBrennan\nCaiden\nDalton\nEmmett\nHolden\nPorter\nReid\nShawn\nArturo\nBeau\nBeckett\nBraxton\nDawson\nDeclan\nGreyson\nJacoby\nJohnny\nPablo\nPaxton\nRaymond\nScott\nAden\nBennett\nBraeden\nBrodie\nCharlie\nColten\nIzaiah\nJonas\nJustice\nLance\nLorenzo\nMitchell\nMyles\nReece\nRomeo\nUriel\nDean\nDustin\nKade\nKeaton\nKieran\nKingston\nMauricio\nNehemiah\nRandy\nRaul\nTristin\nAllen\nBrenden\nBrett\nCyrus\nDarian\nDerrick\nDesmond\nEsteban\nGunnar\nJasper\nJaxson\nKellen\nKobe\nMoises\nQuentin\nRiver\nRyker\nSoren\nAlonzo\nAnderson\nCristopher\nDominik\nElliott\nFrank\nJoaquin\nJonathon\nKane\nMarshall\nReed\nRicky\nRonan\nStephen\nUriah\nXzavier\nBryant\nDarren\nGregory\nIsmael\nJamison\nJayson\nJoe\nMathew\nRocco\nSam\nWalker\nAlexzander\nBrycen\nCael\nCarl\nConor\nCorey\nEddie\nJay\nLeland\nLeonel\nMorgan\nPhoenix\nRafael\nRonin\nSolomon\nTobias\nToby\nTrent\nZayden\nAtticus\nAugust\nBraydon\nCasey\nCohen\nCory\nCurtis\nDamon\nDanny\nDavian\nFelix\nIsiah\nMaverick\nOsvaldo\nRamon\nRyland\nTalon\nTitus\nTrace\nWill\nAlberto\nAlijah\nBarrett\nDavion\nDayton\nDennis\nDonald\nDorian\nEmerson\nGustavo\nIsaias\nJayce\nJohan\nJudah\nKeith\nKian\nKolton\nMarek\nNathanael\nNickolas\nNico\nNikolas\nQuincy\nSalvador\nTony\nVance\nWade\nZackary\nAdriel\nAlfonso\nAlfredo\nBraylon\nChris\nDarius\nErnesto\nFinnegan\nGideon\nJerry\nJulius\nLarry\nLouis\nMathias\nMaurice\nOrlando\nQuinton\nSeamus\nShaun\nSullivan\nTomas\nTriston\nAaden\nAllan\nAmari\nArmani\nBlaine\nDavin\nDeangelo\nDouglas\nEden\nEzequiel\nFinley\nGuillermo\nIrvin\nIssac\nJadon\nJaydon\nJaylen\nJon\nJovani\nKameron\nKeenan\nLandyn\nLennon\nMaximilian\nMisael\nMohamed\nMoses\nOctavio\nRogelio\nSage\nTeagan\nValentino\nZion\nAgustin\nAidyn\nAnton\nArcher\nAri\nAron\nBraiden\nBruce\nCale\nConrad\nCraig\nDeandre\nErnest\nFelipe\nFrankie\nGary\nHezekiah\nHumberto\nJeramiah\nJett\nJoey\nKarson\nKody\nMalakai\nMarc\nMarcello\nNiko\nPierce\nQuintin\nReese\nRex\nRodney\nRonald\nRussell\nSkylar\nTommy\nUlises\nVan\nAbram\nAlvaro\nArthur\nAydin\nAzael\nBridger\nBroderick\nCallum\nColt\nDallas\nDangelo\nDevyn\nEfrain\nEliseo\nEnzo\nFreddy\nGiovani\nGiovanny\nIsaak\nIsai\nJavon\nJerome\nJimmy\nKaeden\nKale\nKarter\nKeven\nKoen\nLawrence\nLayton\nLeon\nLeonidas\nLuciano\nMarkus\nMarques\nMatteo\nMatthias\nMemphis\nMerrick\nNathanial\nNelson\nNoel\nRaiden\nRhett\nRhys\nRodolfo\nTatum\nTrevin\nVaughn\nVicente\nAldo\nAlessandro\nAli\nAlvin\nAmir\nBeckham\nBodhi\nBreckin\nBruno\nCamron\nClay\nDamion\nDeacon\nDenzel\nDillan\nDuncan\nElian\nEugene\nFinnigan\nGarret\nGavyn\nGilbert\nGuadalupe\nHeath\nHeber\nHugh\nJerimiah\nJohnathon\nJoziah\nKadin\nKael\nKelvin\nKolten\nLee\nLondon\nLuka\nMaximiliano\nMaximillian\nMohammed\nNoe\nOdin\nPhilip\nQuinten\nRamiro\nRey\nRohan\nRoy\nSebastien\nTeague\nThaddeus\nTrevon\nUrijah\nWarren\nWilson\nZack\nAdrien\nAedan\nAlden\nAlonso\nAntoine\nAriel\nAsa\nAzariah\nBenito\nBobby\nBode\nBoden\nBodie\nBoston\nBowen\nBrecken\nBrooks\nCaeden\nCormac\nDale\nDeagan\nDion\nDonavon\nEdison\nEstevan\nFranklin\nGaige\nGeovanni\nGilberto\nHaven\nIgnacio\nIzaak\nJair\nJairo\nJarrett\nJase\nJasiah\nJax\nJericho\nJessie\nJonatan\nJovanni\nJovanny\nJovany\nKamari\nKolby\nKole\nKristopher\nLayne\nLeroy\nLuc\nMakai\nMarley\nMarlon\nMatias\nMaxim\nMaximo\nNestor\nOrin\nRaphael\nRico\nRonnie\nRory\nRoyce\nSamson\nSidney\nSterling\nStone\nTerrance\nTevin\nTobin\nTorin\nValentin\nWaylon\nZayne\nAdolfo\nAhmed\nAlek\nAugustus\nAustyn\nAydan\nAzriel\nBen\nBranden\nBrennon\nBrogan\nCaedmon\nCaelan\nCannon\nCasen\nCason\nCassius\nCedric\nCian\nColeton\nColter\nCorbyn\nCrew\nDallin\nDamarcus\nDarey\nDarien\nDarrell\nDashawn\nDax\nDemetrius\nDevlin\nDexter\nDraven\nDuane\nDuke\nEamon\nEben\nEliot\nEsai\nFidel\nFisher\nFrancis\nFred\nGauge\nGaven\nGiancarlo\nGianni\nGiovonni\nGonzalo\nHarley\nHarper\nHenrik\nHollis\nHoward\nHyrum\nIlijah\nIrving\nJadyn\nJaidyn\nJamari\nJeshua\nJoan\nJovan\nJulien\nKamden\nKannon\nKarsten\nKash\nKayleb\nKelan\nKellan\nKeller\nKenny\nKevyn\nKing\nKoby\nLachlan\nLeandro\nLeonard\nLewis\nLyric\nMac\nMarcel\nMarcelino\nMekhi\nMicheal\nMike\nNathen\nNikolai\nOsman\nPalmer\nPayton\nRandall\nRayden\nReilly\nRemington\nReyes\nReyli\nRobin\nRolando\nRudy\nRylee\nRyne\nSantana\nSonny\nSteve\nSyrus\nTalan\nTegan\nTiernan\nTodd\nTrenten\nTurner\nTyce\nVincente\nVladimir\nWinston\nYael\nYair\nYandel\nZackery\nZade\nZechariah\nAlexander\nJacob\nNoah\nWilliam\nBenjamin\nEthan\nLogan\nDaniel\nDavid\nJoshua\nJackson\nAnthony\nAiden\nMichael\nJack\nJames\nIsaac\nChristopher\nElijah\nJoseph\nSamuel\nAndrew\nMatthew\nRyan\nLiam\nGabriel\nJayden\nMason\nTyler\nCaleb\nAngel\nEvan\nWyatt\nGavin\nNathan\nLandon\nOwen\nJohn\nDylan\nBrandon\nCooper\nJuan\nLuke\nConnor\nChristian\nJonathan\nNicholas\nAdrian\nIsaiah\nJose\nLucas\nJulian\nZachary\nJosiah\nJordan\nHenry\nLuis\nDiego\nChase\nBrayden\nCarter\nAustin\nJesus\nCharles\nDominic\nTristan\nLevi\nXavier\nAaron\nRobert\nCarlos\nHunter\nKevin\nCole\nIan\nJeremiah\nOliver\nBlake\nColton\nJustin\nEli\nAidan\nJason\nCameron\nThomas\nSebastian\nBrody\nAsher\nRiley\nMax\nCody\nHayden\nBrian\nRyder\nBrady\nKaden\nNathaniel\nAdam\nMiles\nCarson\nMaxwell\nAlex\nMicah\nOscar\nElias\nParker\nJaxon\nAyden\nCaden\nSantiago\nEric\nMiguel\nSean\nBryce\nEzekiel\nAlan\nAshton\nDamian\nAntonio\nIvan\nBryan\nGage\nJesse\nJonah\nAlejandro\nTanner\nEduardo\nManuel\nGiovanni\nKyle\nPreston\nWesley\nGrant\nHudson\nJake\nJude\nNolan\nGarrett\nKaleb\nMarcus\nVictor\nDamien\nJaden\nRoman\nSteven\nTrevor\nVincent\nJace\nKai\nAbraham\nHector\nJoel\nRicardo\nSawyer\nDevin\nRylan\nColin\nAlexis\nErik\nFrancisco\nSpencer\nAndres\nGeorge\nKaiden\nPatrick\nCalvin\nConner\nEmiliano\nPeyton\nRichard\nSilas\nChance\nEmmanuel\nFernando\nSeth\nGrayson\nJaxson\nLincoln\nTimothy\nDillon\nErick\nFinn\nAdan\nCollin\nDerek\nOmar\nZane\nCash\nCesar\nEdgar\nIsrael\nKenneth\nMario\nMark\nPeter\nBraden\nDonovan\nEdward\nJavier\nMaddox\nSergio\nAxel\nBryson\nDevon\nEverett\nKayden\nLeonardo\nJeremy\nMalachi\nQuinn\nRowan\nBrendan\nDominick\nKeegan\nPaul\nTy\nXander\nFabian\nLeo\nTravis\nCayden\nDrake\nElliot\nEzra\nHolden\nJorge\nMateo\nEdwin\nGerardo\nGriffin\nKyler\nSimon\nTheodore\nAden\nAvery\nDante\nLanden\nMaximus\nNicolas\nSkyler\nWeston\nZander\nCade\nCamden\nCharlie\nCristian\nEmilio\nGraham\nJameson\nLukas\nAngelo\nCorbin\nJoaquin\nShane\nStephen\nTate\nCaiden\nEmmett\nQuentin\nShawn\nTrey\nFelix\nJosue\nMarco\nMartin\nNehemiah\nRuben\nBraxton\nBraylon\nDawson\nDeclan\nGael\nJasper\nPhoenix\nTaylor\nTroy\nTucker\nBrock\nDakota\nTrenton\nTristen\nAaden\nClayton\nEaston\nHarrison\nJaiden\nJeffrey\nJonas\nJudah\nKeaton\nPaxton\nSolomon\nTyson\nAbel\nBennett\nBrayan\nIsmael\nLorenzo\nRaymond\nRomeo\nRonan\nTobias\nTrent\nZachariah\nAndre\nAndy\nArmando\nBeckett\nIzaiah\nJared\nJayce\nJohnathan\nOrlando\nAldo\nAlonso\nArturo\nBradley\nCasey\nChris\nElliott\nGreyson\nJett\nLeland\nMauricio\nPorter\nRodrigo\nAnderson\nBeau\nBraeden\nBrennan\nColby\nCruz\nDalton\nDustin\nEmanuel\nEnrique\nEsteban\nGunner\nJakob\nJulio\nKellen\nRyland\nUriah\nUriel\nYahir\nAlijah\nDane\nGrady\nIsaias\nJax\nJohnny\nJulius\nLuca\nMarcos\nMilo\nOrion\nRiver\nWalker\nDean\nDesmond\nJonathon\nLandyn\nLane\nMisael\nPedro\nRafael\nRocco\nRyker\nSoren\nAdriel\nAlec\nBraydon\nColt\nConor\nDexter\nGustavo\nIssac\nJacoby\nJaylen\nKian\nKingston\nLeonel\nLuciano\nMarek\nMorgan\nMyles\nRamon\nSaul\nTitus\nTony\nXzavier\nBrenden\nColten\nGuillermo\nJustice\nKade\nKale\nKieran\nRandy\nRaul\nRoberto\nYandel\nZackary\nArcher\nAtticus\nBentley\nBridger\nBrooks\nCale\nCohen\nDavin\nDrew\nFinnegan\nGianni\nIrvin\nJadon\nJimmy\nLeon\nMitchell\nNash\nReed\nSalvador\nTalon\nTeagan\nZion\nAlfonso\nAli\nAlonzo\nArthur\nBarrett\nBrennen\nColter\nCorey\nCyrus\nEmerson\nFinley\nFrank\nGiovani\nGunnar\nHarper\nJovany\nKameron\nKarson\nKeagan\nLeonidas\nLouis\nMakai\nReese\nReid\nRonin\nSage\nScott\nShaun\nUlises\nVan\nAmir\nAri\nBoden\nBoston\nByron\nDarey\nDonald\nEllis\nGiancarlo\nJaime\nKane\nKody\nLance\nLayne\nMarkus\nMohamed\nNickolas\nPablo\nPhillip\nRhys\nRonald\nSantana\nTobin\nTomas\nTristin\nWalter\nWilson\nAce\nAdrien\nAlberto\nAlfredo\nAllen\nAron\nAugust\nAugustus\nBodhi\nBrecken\nBrett\nBrodie\nBryant\nBrycen\nConrad\nDamion\nDanny\nDarren\nDerrick\nErnesto\nHarley\nIsiah\nJessie\nJovani\nKeenan\nKeith\nKellan\nMarshall\nMaximiliano\nMicheal\nNathanael\nNico\nNoe\nPayton\nQuinten\nReece\nSylas\nToby\nTrystan\nWarren\nZayden\nAugustine\nAzariah\nBeck\nBlaine\nCristopher\nDangelo\nDarius\nDavion\nDavis\nDeacon\nElian\nGavyn\nGideon\nGregory\nIzaac\nJustus\nKasen\nKash\nKnox\nLucian\nMadden\nMathew\nMatteo\nMaximilian\nMemphis\nOdin\nRaiden\nRicky\nRoy\nRoyce\nSantino\nSantos\nSullivan\nTrace\nWade\nZaiden\nAedan\nAhmed\nAlvaro\nBraylen\nBrogan\nChace\nCian\nCurtis\nDavian\nDennis\nDominik\nDraven\nFletcher\nFrederick\nFynn\nGiovanny\nHugo\nIsaak\nIzayah\nJair\nJaydin\nJohnathon\nKason\nKillian\nKing\nKolton\nLawrence\nMalakai\nMalik\nMarlon\nMathias\nMatthias\nNelson\nNikolas\nPhilip\nRamiro\nRaphael\nRogelio\nRussell\nSkylar\nTavin\nTegan\nUrijah\nYair\nAbdiel\nAgustin\nAidyn\nBraiden\nCael\nChandler\nDamon\nDarian\nDarien\nDaxton\nDayton\nDorian\nDuncan\nEamon\nEliot\nEly\nEnzo\nEphraim\nEzequiel\nFisher\nGordon\nHarlan\nHaven\nJayson\nJericho\nJoe\nJoey\nJosh\nJovan\nJoziah\nKaeden\nKamden\nKenyon\nKorbin\nMarvin\nMaverick\nMaxim\nNikolai\nPierce\nQuincy\nRayan\nRemy\nRigoberto\nRodolfo\nSimeon\nStone\nTaj\nTayden\nTerry\nTrevon\nTriston\nTruman\nUlysses\nValentin\nVaughn\nWaylon\nYael\nZavier\nAbram\nAdair\nAddison\nAlden\nAlexzander\nAriel\nAydan\nAzael\nBernardo\nBlaise\nBowen\nBraedon\nCason\nCassius\nClark\nCullen\nDallas\nDarwin\nDevan\nDeven\nDevyn\nEddie\nEstevan\nFrancis\nGauge\nHeath\nIgnacio\nIsac\nIzaak\nIzak\nJagger\nJase\nJaxen\nJay\nJedidiah\nJeramiah\nJohan\nJordyn\nJosias\nJovanni\nKarter\nKayson\nKenny\nKoen\nKristian\nLayton\nLucca\nLucius\nLyric\nMaddux\nMaksim\nMalaki\nMalcolm\nMarcelo\nMarley\nMoises\nNathen\nNoel\nRashad\nReilly\nRene\nRex\nRidge\nRoger\nRoland\nRory\nRylee\nRyley\nSam\nSamson\nSterling\nTerrance\nThaddeus\nTripp\nVicente\nWestin\nYurem\nZachery\nZain\nAbdirahman\nAdonis\nAlbert\nAleksander\nAlexandro\nAlias\nAllan\nAmari\nAnders\nAndreas\nArmani\nAsa\nAydin\nBear\nBen\nBo\nBobby\nBradyn\nBranson\nBrendon\nBroderick\nBronson\nBruce\nCamron\nCarl\nCarsen\nCaysen\nChad\nClyde\nCristofer\nCruzito\nCutler\nDario\nDashel\nDax\nDemitri\nDerick\nDevlin\nDevonte\nDilan\nDimitri\nEmery\nEmmet\nEmory\nEver\nFinnley\nFrankie\nFranklin\nGerman\nGuy\nHayes\nHaziel\nHenrik\nIsai\nJadyn\nJairo\nJasiah\nJavon\nJerry\nJoan\nJohann\nJorden\nJunior\nKadyn\nKannon\nKelton\nKhalil\nKolten\nKyan\nLachlan\nLarry\nLars\nLeonard\nLondon\nLouie\nMarcello\nMasen\nMaxton\nMoses\nNeil\nOrrin\nOsman\nOtis\nPrince\nQuintin\nQuinton\nRalph\nRay\nRey\nReynaldo\nRishi\nRoyal\nShia\nSidney\nSonny\nSutton\nTai\nTaven\nTorin\nTre\nTristyn\nUziel\nValentino\nVance\nWinston\nZackery\nZakaria\nZechariah\nZephaniah\nJacob\nAlexander\nNoah\nDaniel\nWilliam\nLiam\nElijah\nLogan\nGabriel\nAnthony\nMichael\nSamuel\nEthan\nJoshua\nAndrew\nBenjamin\nMason\nAiden\nJoseph\nJames\nIsaac\nDavid\nJackson\nMatthew\nEvan\nDylan\nJayden\nOwen\nChristopher\nLandon\nCaleb\nRyan\nTyler\nJack\nJonathan\nWyatt\nAngel\nEli\nGavin\nLuke\nConnor\nHenry\nJohn\nNathan\nJosiah\nIsaiah\nChristian\nJulian\nHunter\nJose\nCooper\nLucas\nOliver\nLevi\nAdrian\nBrayden\nDominic\nZachary\nIan\nNicholas\nThomas\nAaron\nAustin\nBrandon\nLuis\nDiego\nKevin\nCarter\nXavier\nCharles\nTristan\nJordan\nBlake\nColton\nRobert\nSebastian\nJeremiah\nJesus\nChase\nCameron\nRyder\nBrody\nCarlos\nElias\nJaxon\nCarson\nJuan\nMiles\nJustin\nMax\nCole\nAdam\nHayden\nVincent\nNathaniel\nMicah\nAlejandro\nAyden\nGrayson\nParker\nAsher\nJason\nAntonio\nColin\nDamian\nEzekiel\nBrady\nJorge\nPreston\nVictor\nEric\nMiguel\nRiley\nGiovanni\nAlan\nAlex\nNolan\nAxel\nHudson\nSean\nAidan\nCaden\nKaden\nMarcus\nGage\nJace\nCody\nJaden\nJonah\nSantiago\nEduardo\nEmiliano\nIvan\nPatrick\nKaleb\nBryan\nGrant\nQuinn\nRylan\nJesse\nWesley\nJake\nKyle\nBryce\nDonovan\nJoel\nOscar\nTanner\nMaxwell\nTimothy\nAshton\nDevin\nLeo\nLincoln\nAngelo\nEaston\nJeremy\nRoman\nSawyer\nSeth\nCamden\nDrake\nKai\nRichard\nAvery\nGarrett\nJude\nKayden\nLeonardo\nTrevor\nConner\nZane\nBrian\nCharlie\nDamien\nFinn\nSteven\nAlexis\nCash\nCayden\nCesar\nCristian\nKaiden\nPeter\nPeyton\nBentley\nCalvin\nEdward\nEmilio\nJaxson\nJosue\nAbraham\nBryson\nJaiden\nJavier\nLukas\nXander\nAndres\nBraxton\nCruz\nDante\nDominick\nEverett\nFernando\nFrancisco\nPaul\nRyker\nSilas\nSpencer\nWeston\nEmmanuel\nGeorge\nMark\nRicardo\nChance\nMaddox\nNicolas\nTravis\nBeckett\nBrendan\nCollin\nEdgar\nErick\nErik\nKeegan\nMalachi\nRowan\nSimon\nJohnathan\nMaximus\nTucker\nZander\nDerek\nEmmett\nManuel\nOmar\nAbel\nAndre\nDeclan\nEdwin\nGriffin\nHarrison\nJayce\nJoaquin\nEzra\nIsrael\nJudah\nSergio\nSkyler\nTroy\nClayton\nDean\nJakob\nJameson\nMarco\nMilo\nDillon\nKenneth\nStephen\nTrenton\nGreyson\nHector\nJasper\nReid\nRoberto\nTheodore\nAden\nBradley\nCade\nCorbin\nLeland\nLorenzo\nMarcos\nMartin\nMateo\nOrion\nYahir\nArmando\nBrennan\nEmerson\nHolden\nLanden\nMario\nRaymond\nShane\nZayden\nBeau\nBraden\nDrew\nFabian\nJaime\nKyler\nPhoenix\nPorter\nRomeo\nTyson\nAdan\nBrooks\nGraham\nIzaiah\nJared\nJax\nJeffrey\nKellen\nKolton\nRaul\nTristen\nArmani\nColby\nFelix\nGrady\nQuentin\nSalvador\nUriah\nBraylon\nDexter\nElliot\nEnrique\nJett\nKellan\nKingston\nRiver\nTitus\nTrey\nTy\nAdriel\nAtticus\nBennett\nBode\nBrenden\nCaiden\nCasey\nElliott\nEsteban\nMarshall\nMyles\nRuben\nScott\nTalon\nTrent\nUlises\nDevon\nGerardo\nKade\nKeaton\nLuca\nPaxton\nRafael\nSaul\nSoren\nAndy\nAugust\nBraiden\nBrock\nDane\nNehemiah\nPhillip\nReece\nShawn\nSolomon\nAldo\nAlec\nBrayan\nDakota\nDawson\nDerrick\nDesmond\nFinnegan\nGregory\nKale\nKeith\nMalakai\nRamon\nRonan\nRyland\nZion\nAnderson\nAri\nColt\nDalton\nDarius\nDominik\nEnzo\nJohnny\nLane\nMathew\nOrlando\nPedro\nRocco\nTate\nToby\nAlfredo\nBarrett\nBraeden\nColten\nConor\nDavian\nDonald\nDorian\nEmanuel\nFinley\nGael\nGideon\nIsmael\nJulio\nKorbin\nLance\nLandyn\nLuciano\nMaximilian\nMitchell\nQuinton\nRandy\nReed\nRhys\nTaylor\nUriel\nAlvaro\nAmir\nDanny\nDavion\nEzequiel\nFrank\nGustavo\nHugo\nIssac\nJaylen\nJunior\nJustice\nKarson\nKeenan\nLayne\nMorgan\nOdin\nPablo\nTatum\nTobias\nUrijah\nWalker\nWalter\nXzavier\nZachariah\nAli\nBrecken\nBridger\nBrodie\nCallen\nDamon\nDemetrius\nDouglas\nDuncan\nDustin\nJayson\nJoey\nKash\nKian\nKieran\nKobe\nLawrence\nLeonel\nLouis\nMaverick\nMoses\nNickolas\nNico\nPayton\nReese\nSterling\nTristin\nYandel\nAnders\nArturo\nAugustine\nAydan\nBraydon\nBruno\nBryant\nCale\nCyrus\nDallas\nDarren\nDraven\nErnesto\nFelipe\nFisher\nGiovani\nGunner\nIker\nJamison\nJay\nJaydon\nJessie\nKeagan\nKing\nKnox\nLeon\nMaximiliano\nNikolas\nPierce\nQuintin\nRonin\nSylas\nTomas\nTommy\nValentino\nAaden\nAhmed\nAlijah\nAlonzo\nAmari\nArthur\nBen\nBodie\nBrogan\nCason\nChanning\nConrad\nCraig\nCrosby\nDerick\nEver\nGaige\nGilbert\nJair\nJalen\nJimmy\nJon\nJulius\nKaeden\nKole\nKyan\nLucian\nNiko\nQuinten\nRodney\nRodrigo\nRory\nSeamus\nSullivan\nTeagan\nTrace\nTyce\nUlysses\nValentin\nVan\nVaughn\nWarren\nYael\nZachery\nZaiden\nZechariah\nAdler\nAlbert\nAlberto\nAlonso\nAriel\nAsa\nAugustus\nBlaise\nBoden\nBodhi\nByron\nCamron\nChris\nCohen\nCorey\nCory\nDavis\nDeacon\nFrederick\nGianni\nGuillermo\nGunnar\nHarley\nJadon\nJairo\nJamari\nJase\nJohan\nJonathon\nJovanni\nJoziah\nKael\nKamden\nKameron\nKarter\nKasen\nKoen\nLeif\nLyric\nMauricio\nMisael\nPhilip\nRogelio\nSaid\nSonny\nTavin\nTony\nTripp\nVicente\nWaylon\nWill\nXavi\nZeke\nAbdiel\nAce\nAlfonso\nAllan\nAllen\nAndreas\nArcher\nAven\nAzariah\nBlaine\nBranden\nBrett\nCallan\nColter\nCristopher\nCullen\nDayton\nElian\nEliot\nFletcher\nFranco\nGarrison\nGauge\nGilberto\nGino\nGiovanny\nHugh\nHumberto\nIsaias\nIsiah\nJeramiah\nJerome\nJerry\nJoe\nJohnathon\nJordyn\nKason\nKody\nKolby\nKristian\nLennox\nMatteo\nMaximillian\nNash\nNoe\nOctavio\nRaphael\nRayan\nRonald\nRussell\nRylee\nSage\nShaun\nSkylar\nSlade\nWade\nZackary\nAbner\nAbram\nAdrien\nAlden\nArlo\nAryan\nAusten\nAydin\nBeckham\nBoston\nBroderick\nBronson\nBruce\nBrycen\nCanon\nCarsten\nCasen\nChace\nCian\nClark\nCristobal\nCy\nDario\nDax\nDeangelo\nDevlin\nDuke\nEdison\nEstevan\nFinnley\nForrest\nFranklin\nGarret\nGerald\nHarvey\nIzayah\nJacoby\nJasiel\nJavon\nJedidiah\nJohann\nJonas\nJulien\nKane\nKayson\nKeanu\nKendrick\nKhalil\nKristopher\nLachlan\nLawson\nLayton\nLinden\nLondon\nMalaki\nMarcelo\nMerrick\nMohamed\nMohammed\nMoises\nNelson\nNikolai\nNixon\nOsiel\nOsman\nOsvaldo\nPrince\nQuincy\nRaiden\nReagan\nRemington\nRolando\nRowen\nRoyal\nSamson\nSantana\nStefan\nStone\nThatcher\nTobin\nTorin\nTristyn\nTrystan\nVincenzo\nVirgil\nYair\nZavier\nZayne\nZephaniah\nAbdullah\nAddison\nAedan\nAjay\nAlessandro\nAnsel\nAron\nAsael\nAtom\nBaylor\nBraddock\nBraulio\nBraylen\nBreck\nBrice\nBrysen\nBurke\nCannon\nClay\nCormac\nCristofer\nCurtis\nDangelo\nDarian\nDeegan\nDeklan\nDemetri\nDennis\nDestin\nDezmond\nDomenic\nDonavan\nDwayne\nEddie\nEden\nEfrain\nEllis\nEmmitt\nErnest\nGary\nGavyn\nGerman\nGray\nHamza\nIrving\nIsaak\nIshaan\nJael\nJakobe\nJaydin\nJaykob\nJaziel\nJensen\nJericho\nJosh\nJovani\nJullian\nKain\nKaison\nKallen\nKamron\nKegan\nKeller\nKhalid\nKillian\nKingsley\nKolten\nKye\nKylan\nLarry\nLionel\nLucius\nLuka\nMalcolm\nMarek\nMarkus\nMarlon\nMarvin\nMekhi\nMemphis\nMessiah\nNoel\nOziel\nPaden\nRay\nRemy\nRex\nRey\nRio\nRocky\nRoy\nRoyce\nSam\nSantino\nSheldon\nTreyvon\nTruman\nWestin\nWiley\nZackery\nZaden\nZakaria\nLiam\nMason\nNoah\nElijah\nAlexander\nJacob\nWilliam\nDaniel\nLogan\nBenjamin\nJackson\nEthan\nAiden\nSamuel\nJoseph\nMichael\nGabriel\nJames\nAndrew\nJoshua\nOwen\nAnthony\nDavid\nWyatt\nJack\nJayden\nMatthew\nIsaac\nChristopher\nLandon\nCaleb\nJonathan\nEvan\nJohn\nGavin\nLevi\nAngel\nLuke\nLucas\nOliver\nRyan\nTyler\nAustin\nChristian\nEli\nDominic\nDylan\nHenry\nCarter\nBlake\nJulian\nJose\nCharles\nIsaiah\nBrayden\nNathan\nAaron\nConnor\nCooper\nAdrian\nSebastian\nJordan\nCameron\nNicholas\nJosiah\nColton\nZachary\nHunter\nBrandon\nAsher\nThomas\nXavier\nJaxon\nJeremiah\nRobert\nBrody\nIan\nKevin\nMiles\nRyder\nTristan\nChase\nNathaniel\nAdam\nElias\nJesus\nParker\nCarlos\nLuis\nJason\nHudson\nJuan\nJustin\nMaxwell\nNolan\nAyden\nGrayson\nVincent\nGiovanni\nAxel\nCole\nJace\nMax\nIvan\nBrady\nCarson\nDeclan\nEzekiel\nGrant\nDiego\nMicah\nRiley\nAidan\nEaston\nJonah\nAntonio\nJude\nRylan\nRoman\nAlan\nDamian\nEric\nTanner\nCaden\nHayden\nSilas\nGage\nCamden\nJaxson\nSantiago\nSean\nBentley\nCody\nAlejandro\nAlex\nZane\nMiguel\nSawyer\nAshton\nJesse\nKai\nEduardo\nKyle\nJaden\nLincoln\nOscar\nVictor\nXander\nEmmett\nMateo\nPreston\nCorbin\nLeonardo\nTimothy\nJoel\nBryce\nDrake\nEmmanuel\nEzra\nKaden\nLeo\nMaddox\nPatrick\nBraxton\nBryson\nMarcus\nMario\nKaiden\nRichard\nBradley\nWeston\nCash\nColin\nKaleb\nMalachi\nConner\nEverett\nJake\nManuel\nBryan\nDante\nJavier\nRyker\nTrevor\nDerek\nKayden\nWesley\nElliot\nGreyson\nIsrael\nQuinn\nCesar\nDevin\nGarrett\nGriffin\nEmiliano\nKellan\nSeth\nTheodore\nCharlie\nDillon\nGeorge\nGraham\nSteven\nAndres\nCruz\nMaximus\nMilo\nOmar\nAlexis\nCollin\nFinn\nKeegan\nAdan\nCristian\nEdward\nEmilio\nJaiden\nJasper\nJorge\nKyler\nPeyton\nSimon\nTucker\nAbel\nDonovan\nJayce\nJeremy\nLorenzo\nRafael\nBrian\nErick\nFabian\nJameson\nNicolas\nPaul\nSpencer\nTrey\nTyson\nAngelo\nBeckett\nCayden\nFelix\nLuca\nMark\nTrenton\nBennett\nBrooks\nDawson\nFernando\nJett\nRowan\nTy\nZander\nAndre\nBrendan\nDean\nEdgar\nPedro\nPeter\nAbraham\nDevon\nEdwin\nHarrison\nKade\nKellen\nMartin\nPaxton\nTitus\nCalvin\nChance\nDamien\nFrancisco\nLanden\nLukas\nMarco\nQuentin\nRicardo\nStephen\nZayden\nAvery\nBrennan\nCaiden\nDominick\nElliott\nGrady\nHector\nHolden\nJohnathan\nRiver\nRomeo\nTravis\nTroy\nArcher\nIzaiah\nJax\nNehemiah\nPorter\nRaymond\nSkyler\nBeau\nBrock\nClayton\nColt\nKian\nMarshall\nOrion\nWalker\nYahir\nAugust\nBraden\nCade\nEmerson\nErik\nFinley\nGerardo\nJohnny\nLane\nRaul\nReed\nSullivan\nAndy\nBarrett\nDarius\nJared\nJosue\nJudah\nKenneth\nKingston\nMyles\nReid\nScott\nShane\nShawn\nSoren\nTate\nAlonzo\nColby\nDalton\nEnrique\nEsteban\nJaime\nJakob\nJonas\nMaximiliano\nUriah\nZaiden\nBridger\nCyrus\nFinnegan\nFrank\nKnox\nMaverick\nMoses\nNash\nPhoenix\nRonan\nRonin\nSergio\nTaylor\nAdriel\nBode\nBrycen\nCohen\nDavian\nDexter\nDominik\nIssac\nLeland\nLeon\nMarcos\nMaximilian\nNikolas\nPhillip\nReece\nTrace\nBrayan\nDerrick\nDustin\nEmanuel\nEnzo\nGunner\nJaylen\nJeffrey\nKorbin\nLeonel\nRhys\nRoberto\nTalon\nWaylon\nAden\nAhmed\nArthur\nAtticus\nBrodie\nCasey\nDallas\nDamon\nDavis\nFelipe\nGianni\nGideon\nGiovani\nGunnar\nIsmael\nLouis\nMalakai\nRoyce\nRuben\nRussell\nTobias\nXzavier\nDarian\nDesmond\nDrew\nEzequiel\nGregory\nIker\nJoaquin\nJulius\nKane\nMatteo\nMohamed\nPablo\nPierce\nRory\nSylas\nTristin\nUrijah\nAbram\nAllen\nAmir\nBently\nBoden\nBraeden\nBrecken\nBryant\nCannon\nDakota\nDanny\nDorian\nGael\nGauge\nHugo\nJay\nKillian\nLandyn\nLucian\nMalik\nOrlando\nRamon\nRemington\nZachariah\nZion\nAlfredo\nAlijah\nAnders\nArmando\nBeck\nBowen\nBraylon\nBruce\nDayton\nDeegan\nFisher\nGustavo\nIrvin\nIsaias\nJaxton\nJonathon\nJovani\nKamden\nKameron\nKeaton\nKing\nKristopher\nLawson\nMarkus\nMauricio\nMoises\nOdin\nPhilip\nQuinton\nRaiden\nRhett\nRocco\nRonald\nSaul\nSkylar\nWalter\nWarren\nAce\nAidyn\nAlec\nAnderson\nArmani\nArturo\nBraydon\nCallum\nColten\nColter\nCorey\nCristopher\nCurtis\nDane\nDax\nDaxton\nGilbert\nJaxen\nJeramiah\nJerome\nJovanni\nJovany\nJoziah\nJustice\nKasen\nKason\nKieran\nKolby\nKolton\nLuciano\nMalcolm\nMaxim\nMitchell\nOsvaldo\nQuintin\nReese\nRemy\nRicky\nRoland\nSam\nTatum\nThaddeus\nToby\nTristen\nUlises\nAldo\nAri\nAsa\nAugustus\nBentlee\nBraedon\nBraiden\nBrett\nConor\nDarrell\nDeacon\nDeandre\nEmmitt\nErnesto\nFinnian\nForrest\nGiovanny\nGrey\nIsai\nJericho\nJoey\nJosias\nJulio\nKale\nKash\nKeith\nMathew\nMatias\nMicheal\nMorgan\nNico\nPayton\nRandy\nRodrigo\nRyland\nSeamus\nSolomon\nStanley\nTeagan\nTreyton\nTriston\nWill\nWilson\nAaden\nAbdiel\nAdonis\nAdrien\nAli\nAlonso\nAmare\nAmari\nAmos\nAnsel\nAron\nBenicio\nBishop\nBo\nBroden\nBroderick\nBrogan\nCallan\nCase\nCason\nCory\nDangelo\nFletcher\nFlynn\nFrankie\nGraysen\nJamison\nJensen\nJerimiah\nJulien\nKeagan\nKeenan\nLawrence\nLayne\nLeonidas\nLewis\nMaksim\nMarvin\nMatthias\nMiller\nMisael\nNathanael\nNickolas\nNiko\nQuincy\nRene\nRex\nRohan\nRowen\nRoy\nSage\nShaun\nSlade\nStetson\nTavin\nTerry\nTheo\nTomas\nUlysses\nUriel\nValentin\nVan\nVance\nWinston\nZackary\nZechariah\nAbner\nAgustin\nAlbert\nAlfonso\nArlo\nAxton\nAydan\nBeckham\nBlaine\nBoston\nBradyn\nBraedyn\nBreck\nBrenden\nCedar\nClay\nConrad\nCrew\nCrosby\nCullen\nDavin\nDeklan\nDonald\nDuncan\nEamon\nEddie\nEfren\nElian\nEly\nErnest\nEstevan\nEugene\nFord\nGary\nGraeme\nHarper\nHarry\nIsiah\nIzaak\nJacoby\nJaeden\nJairo\nJalen\nJaydon\nJedidiah\nJeremias\nJerry\nJesiah\nJohan\nJovan\nKaelen\nKarson\nKarter\nKeller\nKhalid\nKhalil\nKingsley\nKole\nKonnor\nLucius\nMarley\nMaximillian\nMaxton\nMaxx\nMohammed\nNigel\nPrince\nRamiro\nReagan\nRico\nRogelio\nSalvador\nSamir\nSonny\nSterling\nTobin\nTony\nTrent\nTruman\nValentino\nYandel\nZack\nZaid\nZaine\nZavian\nAbisai\nAedan\nAlden\nAlexzander\nAllan\nAlvaro\nAndreas\nAnton\nAres\nArley\nBen\nBenton\nBernardo\nBlaze\nBranden\nBrantley\nBraylen\nCael\nCanon\nCarsten\nCassidy\nChad\nClive\nColson\nDameon\nDennis\nDimitri\nDouglas\nDraven\nEden\nEdmund\nEllis\nFranklin\nFrederick\nGaige\nGerard\nGionni\nGraeson\nGuillermo\nHank\nHarley\nHayes\nHezekiah\nHouston\nHuxley\nIgnacio\nIrving\nIzayah\nJadon\nJadyn\nJagger\nJase\nJasiah\nJoe\nJon\nJordy\nJordyn\nJoshuah\nJudson\nJullian\nKallen\nKareem\nKolten\nLachlan\nLance\nLandry\nLarry\nLeif\nLennox\nLucien\nMarc\nMarek\nMarlon\nMasen\nMathias\nMayson\nMemphis\nMerrick\nMikah\nNikolai\nNoel\nOren\nOtto\nRaylan\nRocky\nRonaldo\nRowdy\nRylee\nSantino\nSloan\nStone\nTaj\nTalan\nTodd\nTorin\nTripp\nTyce\nVicente\nWade\nXavi\nYusuf\nZavier\nZev\nLiam\nAlexander\nJacob\nWilliam\nNoah\nElijah\nEthan\nLogan\nJackson\nMason\nSamuel\nIsaac\nAiden\nGabriel\nDaniel\nJayden\nBenjamin\nMichael\nWyatt\nJames\nJack\nCaleb\nJoshua\nDavid\nAndrew\nMatthew\nAnthony\nJoseph\nOwen\nLandon\nEli\nOliver\nChristopher\nLucas\nCarter\nDylan\nRyan\nHenry\nJohn\nLuke\nJeremiah\nAngel\nNathan\nAustin\nIsaiah\nConnor\nGavin\nJulian\nSebastian\nCooper\nHunter\nBrayden\nColton\nEvan\nJosiah\nLevi\nRobert\nAdrian\nDominic\nAaron\nJaxon\nTyler\nIan\nBlake\nCharles\nJonathan\nThomas\nChase\nJordan\nChristian\nCameron\nElias\nHudson\nAsher\nZachary\nXavier\nNicholas\nGrayson\nJesus\nAdam\nBrody\nEaston\nKevin\nNathaniel\nTristan\nMicah\nMiles\nJose\nRyder\nJace\nBrady\nBrandon\nJuan\nLincoln\nCarson\nGiovanni\nJason\nCarlos\nLuis\nNolan\nDamian\nDiego\nBentley\nVincent\nWeston\nMax\nMaxwell\nParker\nAyden\nDeclan\nAlejandro\nEzekiel\nKai\nSilas\nCole\nJaxson\nJude\nRiley\nSawyer\nEmmett\nCamden\nGael\nJonah\nPatrick\nAxel\nJustin\nLeo\nSantiago\nRoman\nCody\nHayden\nTanner\nAbel\nGrant\nXander\nAlex\nTimothy\nMiguel\nAidan\nEverett\nColin\nEric\nKaleb\nManuel\nMarcus\nWesley\nMateo\nTheodore\nAlan\nGage\nRyker\nRylan\nAntonio\nPreston\nBryson\nGraham\nGreyson\nIvan\nJameson\nLeonardo\nBryan\nKyle\nMaddox\nPeter\nTucker\nCaden\nEdward\nIsrael\nKaden\nQuinn\nRichard\nSean\nSpencer\nKayden\nOscar\nPeyton\nTrevor\nZane\nBraxton\nCalvin\nEzra\nJoel\nKaiden\nZander\nHarrison\nPaxton\nCash\nCayden\nDevin\nJasper\nMaximus\nVictor\nZayden\nCorbin\nEduardo\nJake\nLukas\nAvery\nBennett\nCharlie\nBryce\nDerek\nEmmanuel\nJaden\nJorge\nMalachi\nDamien\nDrake\nElliot\nFernando\nIker\nSimon\nBradley\nElliott\nSeth\nChance\nCruz\nEmilio\nErik\nGarrett\nJayce\nAdan\nHolden\nJavier\nJesse\nRowan\nMark\nMilo\nOmar\nPorter\nTitus\nAbraham\nAugust\nBrian\nBrooks\nDean\nDonovan\nEdgar\nEmiliano\nMyles\nReid\nRomeo\nSteven\nAlexis\nAshton\nBeckett\nCesar\nHector\nJohnathan\nRaymond\nShane\nAndres\nAngelo\nGriffin\nJosue\nJudah\nKenneth\nKyler\nSoren\nTyson\nBrock\nDexter\nDillon\nDominick\nLane\nNehemiah\nNicolas\nTrenton\nZachariah\nAndre\nBeau\nBrendan\nCade\nConner\nFabian\nFrancisco\nGeorge\nGrady\nJeremy\nKellan\nSergio\nTrey\nTy\nBarrett\nClayton\nLuca\nTravis\nCohen\nCollin\nGregory\nKellen\nLouis\nMario\nPaul\nRicardo\nStephen\nTroy\nBraden\nBrantley\nColby\nDante\nEsteban\nFinn\nGideon\nGunner\nJared\nKeegan\nLanden\nOrion\nRafael\nUriah\nAden\nDakota\nErick\nKeaton\nLeon\nMartin\nCyrus\nDavis\nDesmond\nFelix\nJax\nKade\nMarcos\nMarshall\nReed\nRiver\nSolomon\nAtticus\nColt\nCrosby\nEmanuel\nLorenzo\nMaverick\nPhoenix\nRaul\nReece\nSkyler\nAri\nArmani\nCristian\nDevon\nEllis\nGerardo\nIzaiah\nJaiden\nPedro\nRhys\nRuben\nShawn\nTobias\nZion\nAnderson\nAndy\nDane\nDawson\nJoaquin\nLeonel\nNikolas\nQuentin\nRory\nRyland\nTaylor\nWalker\nAhmed\nBeckham\nCaiden\nCasey\nEnrique\nFlynn\nJamison\nJett\nJohnny\nKnox\nKolton\nLeland\nMarco\nMatteo\nRoyce\nTeagan\nTrent\nWaylon\nZaiden\nAbram\nAlijah\nAnders\nArcher\nBrayan\nBraydon\nEmerson\nGunnar\nLawson\nMatthias\nMaximiliano\nPhillip\nRaiden\nRemington\nSaul\nScott\nZayne\nArlo\nBode\nBrecken\nBrenden\nDamon\nDarren\nDavian\nDax\nDrew\nErnesto\nGianni\nJacoby\nJay\nKasen\nKian\nKing\nKingston\nMalakai\nNico\nPablo\nTate\nYahir\nAlonso\nAugustus\nBoston\nBruce\nBrycen\nByron\nColten\nConor\nDustin\nFinley\nHugo\nJulius\nKieran\nLance\nLucian\nLuciano\nMaximilian\nMohamed\nPhilip\nQuinton\nRamon\nRhett\nRoberto\nRonan\nSage\nSantino\nSterling\nTalon\nTorin\nTrace\nUriel\nUrijah\nVaughn\nAdriel\nAydan\nBodhi\nBrennan\nBridger\nChanning\nDayton\nFoster\nFrank\nGustavo\nJaime\nJase\nJayson\nJeffrey\nKameron\nOctavio\nSylas\nTheo\nTobin\nAldo\nAlec\nAmir\nArmando\nAron\nArthur\nAzariah\nBraeden\nBraiden\nBrodie\nCannon\nCason\nColter\nDaxton\nDerrick\nDonald\nDuncan\nEver\nFranklin\nJakob\nJaxton\nJoey\nJovanni\nKash\nKeagan\nKody\nKorbin\nLarry\nMatias\nMauricio\nNash\nNathanael\nPayton\nReese\nRonin\nRussell\nSam\nWarren\nZavier\nAdonis\nAlonzo\nArturo\nAsa\nBrennen\nBrett\nBryant\nCallan\nCassius\nDallas\nDarian\nDominik\nEden\nEdwin\nEugene\nFinnegan\nFrederick\nGuillermo\nHarper\nHugh\nJadon\nJalen\nJensen\nJericho\nJonas\nJovanny\nJulio\nJustus\nKason\nKobe\nLandyn\nLayne\nLeif\nLennox\nLeonidas\nLochlan\nLuka\nMarcel\nMohammed\nOdin\nRicky\nRodrigo\nTatum\nWalter\nZackary\nAli\nAugustine\nBobby\nBroderick\nCayson\nClark\nDalton\nDarius\nDouglas\nDraven\nDuke\nEliot\nEmery\nEzequiel\nGannon\nGionni\nHamza\nHarley\nHayes\nIbrahim\nIsmael\nIssac\nJairo\nJimmy\nKaeden\nKamden\nKayson\nKeenan\nKylan\nMarcelo\nMaurice\nMemphis\nMoses\nNickolas\nNikolai\nPierce\nRocco\nStanley\nSullivan\nTomas\nWill\nAlden\nAlessandro\nAlfredo\nAmos\nAvi\nAxton\nBlaze\nBoden\nBreck\nBrogan\nCain\nCallum\nChad\nChandler\nChris\nConrad\nCorey\nCurtis\nDeegan\nDemetrius\nEnoch\nEnzo\nFelipe\nFisher\nFletcher\nGaige\nGiovani\nHarlan\nHendrix\nJahir\nJerry\nJessie\nJohan\nJohann\nKarter\nKelvin\nKoen\nKristopher\nLandry\nLawrence\nMadden\nMarkus\nMarquis\nMasen\nMathias\nMaxim\nMaxton\nMohammad\nMoises\nNelson\nNeymar\nNoel\nOakley\nOrlando\nQuincy\nQuinten\nRandy\nReagan\nRene\nRidge\nRocky\nRoy\nRyley\nSalman\nSalvador\nShaun\nToby\nTommy\nTony\nTripp\nTristen\nTyce\nUlysses\nValentin\nWinston\nYousif\nAarav\nAlexavier\nAllen\nAmare\nAndreas\nBailey\nBen\nBenicio\nBlaine\nBo\nBranson\nCael\nCanyon\nCase\nClay\nCormac\nDanny\nDennis\nDorian\nEdison\nEstevan\nFinnley\nGauge\nGiancarlo\nGraeme\nHarry\nHezekiah\nJagger\nJaidyn\nJaxen\nJaylen\nJedidiah\nJoe\nJordon\nJosias\nJulien\nKane\nKarson\nKeith\nKeller\nKelton\nKillian\nKonnor\nLandin\nLee\nLyric\nMakai\nMarek\nMariano\nMessiah\nMisael\nMitchell\nNixon\nOtis\nRayden\nRemy\nRex\nRoland\nSamson\nShepherd\nStefan\nTavin\nThaddeus\nTrevon\nTristin\nTriston\nTristyn\nTruman\nUlises\nVan\nVance\nVicente\nWade\nWesten\nWiley\nYahel\nZeke\nAayden\nAce\nAdler\nAlvaro\nAnton\nApollo\nArmin\nAryan\nAustyn\nBilly\nBishop\nBodie\nBraedyn\nBraydyn\nBraylen\nBrendon\nBriggs\nCaius\nCarlo\nCedric\nChristiano\nCian\nCory\nCrew\nDangelo\nDeacon\nDeangelo\nDecker\nDeklan\nDonte\nEddie\nEfren\nEliam\nElian\nEmmitt\nFinnian\nGarrison\nGino\nGiovanny\nGraysen\nGuy\nHans\nHeath\nIra\nIrvin\nIsaias\nIzaya\nJeffery\nJeramiah\nJionni\nJohnathon\nJordyn\nJovan\nJovani\nJoziah\nJustice\nKadyn\nKendrick\nKenny\nKhalid\nKoda\nKole\nKonrad\nKooper\nKristian\nKristofer\nLayton\nLeonard\nLeroy\nMajor\nMarvin\nMathew\nMayson\nMekhi\nNigel\nNoe\nOrrin\nOtto\nRaphael\nReuben\nRey\nRishi\nRogelio\nRonald\nRoyal\nSeamus\nSteele\nSutton\nThiago\nThor\nTitan\nTreyson\nWestley\nWilson\nXavi\nXzavier\nYadiel\nYael\nYandel\nYusuf\nZack\nZephyr\nLiam\nNoah\nJackson\nAlexander\nWilliam\nElijah\nLogan\nJames\nBenjamin\nMason\nDaniel\nEthan\nJacob\nSamuel\nMichael\nGabriel\nDavid\nJack\nIsaac\nAiden\nAndrew\nJayden\nOwen\nHenry\nOliver\nAnthony\nWyatt\nCaleb\nJohn\nHunter\nJoshua\nJoseph\nMatthew\nDylan\nEli\nJaxon\nChristopher\nLuke\nDominic\nLevi\nLandon\nLucas\nSebastian\nBlake\nCharles\nAngel\nCooper\nCarter\nConnor\nIsaiah\nJulian\nRyan\nJosiah\nEvan\nRyder\nGavin\nNolan\nAaron\nJace\nMiles\nBrayden\nChristian\nColton\nGrayson\nJordan\nNathan\nAsher\nRobert\nThomas\nXavier\nAdrian\nAustin\nParker\nTyler\nAdam\nDeclan\nJonathan\nLincoln\nIan\nJeremiah\nJose\nHudson\nElias\nCameron\nZachary\nLuis\nNicholas\nSilas\nEaston\nCarson\nTristan\nDamian\nBrody\nMicah\nBrandon\nJaxson\nMaxwell\nNathaniel\nLeo\nRoman\nEverett\nJuan\nVincent\nJesus\nAyden\nEmmett\nJason\nCamden\nCole\nKevin\nRyker\nSawyer\nMax\nAlan\nBentley\nIvan\nJonah\nAxel\nChase\nGiovanni\nMateo\nBryson\nEzekiel\nWesley\nCarlos\nHayden\nJameson\nCalvin\nColin\nEzra\nJustin\nJude\nKai\nMaddox\nRylan\nSantiago\nAidan\nAlex\nDiego\nMarcus\nRiley\nAntonio\nBraxton\nGrant\nKayden\nTheodore\nGael\nElliott\nLuca\nCaden\nCody\nEric\nHarrison\nLeonardo\nXander\nEmilio\nTucker\nGeorge\nGreyson\nTimothy\nWeston\nPaul\nRowan\nGage\nGarrett\nMiguel\nPreston\nTanner\nAbraham\nFinn\nOscar\nVictor\nAshton\nDerek\nJoel\nJorge\nKaden\nZayden\nAbel\nBeckett\nDamien\nGraham\nMaximus\nPaxton\nAlejandro\nAvery\nDante\nEduardo\nJaden\nJase\nJavier\nMalachi\nSean\nEdward\nLorenzo\nBennett\nCharlie\nEmmanuel\nGriffin\nKaiden\nBrady\nPeyton\nRichard\nBradley\nBrooks\nEmiliano\nJesse\nKaleb\nQuinn\nZander\nDonovan\nHolden\nMilo\nSimon\nTitus\nZane\nCash\nDillon\nPatrick\nAndres\nFelix\nJayce\nJeremy\nJudah\nKyle\nLukas\nMario\nBrantley\nBryce\nCayden\nCorbin\nDominick\nElliot\nJax\nKeegan\nPeter\nSteven\nAngelo\nBarrett\nBeau\nCade\nCesar\nPorter\nAugust\nBrian\nCollin\nCristian\nCruz\nDevin\nDrake\nOmar\nSeth\nSpencer\nJake\nLanden\nManuel\nMark\nShane\nTate\nConner\nDalton\nEmerson\nFernando\nIsrael\nNehemiah\nTrevor\nBryan\nCaiden\nJasper\nMaverick\nNicolas\nPedro\nRafael\nReid\nTaylor\nArthur\nDean\nErick\nOdin\nTravis\nTroy\nArcher\nDexter\nEdgar\nIker\nKamden\nKenneth\nMyles\nRiver\nRoberto\nSullivan\nAdan\nAmir\nChance\nFabian\nFrancisco\nKingston\nKyler\nLane\nOrion\nBrock\nClayton\nGunner\nJett\nJoaquin\nArmando\nDeacon\nMarshall\nTalon\nTatum\nZaiden\nBraden\nColt\nErik\nGideon\nMarcos\nRemington\nRocco\nTobias\nUriah\nAnderson\nBodhi\nJakob\nKason\nKellan\nLeon\nMartin\nQuentin\nRomeo\nSergio\nSolomon\nStephen\nTyson\nWaylon\nAbram\nAdriel\nAlec\nAlexis\nAri\nDax\nDominik\nIzaiah\nJaxton\nRicardo\nSterling\nWalker\nArmani\nArturo\nBrennan\nDallas\nDavis\nDesmond\nGregory\nJonas\nJosue\nMohamed\nNash\nPierce\nRaymond\nRhys\nRonan\nSage\nTrenton\nTrey\nUrijah\nWalter\nZayne\nAndre\nAtticus\nBreck\nBrendan\nBruce\nClark\nConrad\nDecker\nFinnegan\nJared\nJeffrey\nKnox\nLeonel\nLouis\nRory\nRuben\nScott\nSoren\nTrent\nAden\nEmanuel\nFinley\nFlynn\nHarvey\nHugo\nJohnathan\nKash\nKellen\nKing\nMalakai\nPhillip\nPhoenix\nRyland\nSkyler\nTy\nZion\nAlijah\nAndy\nAzariah\nBraeden\nBridger\nConor\nDanny\nDawson\nDrew\nEnrique\nGrady\nGunnar\nHector\nJaiden\nJayceon\nJohnny\nKade\nMarco\nMaximiliano\nQuinton\nReed\nRussell\nSylas\nVaughn\nYahir\nAlberto\nAlden\nBrecken\nBrycen\nCohen\nColby\nCyrus\nDavian\nJulio\nKody\nMitchell\nNikolas\nPablo\nQuintin\nTristen\nVicente\nZavier\nAnders\nAxton\nBowen\nCristiano\nCrosby\nDaxton\nDevon\nEsteban\nFrank\nGauge\nGerardo\nGustavo\nIsmael\nJeffery\nJustice\nKieran\nKolton\nLeonidas\nLyric\nMohammed\nMoises\nNikolai\nRaiden\nRandy\nRodrigo\nRoyce\nSaul\nUriel\nWestin\nZachariah\nAlfredo\nAllen\nAlonso\nAlonzo\nAtlas\nBrenden\nBryant\nCallum\nCannon\nCarl\nDakota\nDouglas\nEdwin\nFletcher\nJacoby\nJamison\nJensen\nKane\nKasen\nKeagan\nKendrick\nMalik\nMatias\nMaximilian\nNeil\nRaul\nRhett\nRicky\nShawn\nTomas\nTrace\nXzavier\nAldo\nAres\nAugustus\nBraydon\nBraylon\nCase\nCasen\nCasey\nChandler\nColten\nDonald\nDorian\nDraven\nEmmitt\nFinnley\nHarlan\nJay\nJoey\nKarson\nKoen\nKorbin\nLandyn\nLawrence\nLeonard\nLewis\nLuka\nMakai\nMathew\nMathias\nMatthias\nMemphis\nMilan\nMisael\nMoses\nNathanael\nReese\nRohan\nRonin\nSam\nSkylar\nSonny\nTheo\nWilson\nAlexzander\nAlfonso\nAli\nArian\nAron\nBenson\nBlaine\nBrodie\nByron\nCallan\nCason\nCassius\nChanning\nCorey\nDamon\nDarius\nDayton\nDeegan\nDennis\nDerrick\nDustin\nEllis\nEwan\nEzequiel\nFelipe\nFord\nFranklin\nFrederick\nGianni\nHendrix\nIbrahim\nIgnacio\nJaime\nJaxen\nJayson\nJonathon\nKameron\nKelton\nKillian\nKristian\nKristopher\nLarry\nLennon\nLeroy\nMarcelo\nMatteo\nMessiah\nNiko\nNoel\nPalmer\nPhilip\nRayden\nReece\nRonald\nSantana\nStefan\nThatcher\nTony\nWarren\nZackary\nAdrien\nAmos\nApollo\nArlo\nBen\nBranson\nBrayan\nBriggs\nChace\nClyde\nCoen\nCullen\nDarian\nDeklan\nEdison\nElian\nForrest\nFranco\nGuillermo\nHamza\nHank\nHarley\nIsai\nIsaias\nIssac\nJadon\nJair\nJairo\nJalen\nJayvion\nJericho\nJoe\nKael\nLeif\nLeland\nLionel\nLochlan\nLondon\nLuciano\nMarek\nMarkus\nMicheal\nMohammad\nNico\nOrlando\nOskar\nOtto\nQuincy\nRamon\nRayan\nReagan\nRoland\nRylee\nSamson\nSantos\nThiago\nTorin\nTrystan\nZavian\nAce\nAdolfo\nAdonis\nAhmed\nAksel\nAmari\nAriel\nAryan\nAsa\nAydin\nBeckham\nBenaiah\nBode\nBraiden\nBruno\nCastiel\nCayson\nChris\nCrew\nCurtis\nDane\nDangelo\nDemetrius\nDuke\nDuncan\nEamon\nEden\nEfrain\nEnoch\nEnzo\nErnesto\nGavyn\nGilbert\nGionni\nGraeme\nGreysen\nHarper\nHezekiah\nIsaak\nJacen\nJasiah\nJaxx\nJimmy\nJoziah\nJustus\nKarter\nKolby\nKolten\nKylan\nLayne\nMac\nMarvin\nMerrick\nNoble\nOtis\nQuinten\nRaylan\nRemy\nRex\nRidley\nRoan\nSalem\nSalvador\nShiloh\nThaddeus\nTitan\nToby\nTripp\nUlysses\nValentin\nVan\nWade\nZain\nAbdiel\nAedan\nAidyn\nAlbert\nAllan\nAlton\nAnakin\nAntoine\nBeck\nBently\nBo\nBodie\nBoone\nBraylen\nBrixton\nBrogan\nBryden\nBurke\nCache\nCallen\nCarlo\nClay\nColeman\nCorbyn\nCormac\nCristobal\nCristopher\nCylus\nDamion\nDariel\nDarwin\nDezmond\nDrayden\nEddie\nEsai\nEver\nFisher\nFoster\nFrankie\nGarrison\nGary\nGerman\nGilberto\nGiovani\nHarry\nHayes\nHeath\nImmanuel\nIzaak\nJaydon\nJedidiah\nJerome\nJerry\nJet\nJosef\nJovanni\nKainoa\nKale\nKase\nKayson\nKeaton\nKeenan\nKendall\nKenton\nKian\nKoda\nKole\nKymani\nLandry\nLawson\nLayton\nLucius\nMagnus\nMajor\nMarc\nMarquis\nMatix\nMekhi\nMike\nNeymar\nNickolas\nNigel\nNixon\nNoe\nOsvaldo\nPrince\nRafe\nRami\nRamiro\nRene\nRocky\nRoy\nSantino\nSeamus\nStone\nSyler\nSylus\nSyrus\nTayson\nTerrence\nTrindon\nTriston\nTruett\nVincenzo\nWinston\nWynn\nYahya\nYair\nYousef\nZaedyn\nZechariah\nZeppelin\nLiam\nAlexander\nNoah\nWilliam\nLogan\nBenjamin\nElijah\nEthan\nJames\nJackson\nOliver\nJacob\nMichael\nWyatt\nSamuel\nDaniel\nGabriel\nAiden\nMason\nHenry\nJack\nLucas\nOwen\nJoshua\nAndrew\nCaleb\nJayden\nDavid\nCarter\nIsaac\nEli\nHunter\nMatthew\nJoseph\nAnthony\nDylan\nLuke\nJaxon\nLevi\nJohn\nAngel\nIsaiah\nSebastian\nConnor\nChristopher\nLandon\nCharles\nElias\nJulian\nGrayson\nColton\nEvan\nRyan\nGavin\nJonathan\nDominic\nThomas\nNolan\nJace\nAdrian\nLincoln\nCooper\nAsher\nAaron\nRobert\nJosiah\nBlake\nTyler\nJeremiah\nAustin\nNathan\nRyder\nCameron\nChristian\nHudson\nMiles\nZachary\nWesley\nBrayden\nRyker\nAdam\nJaxson\nJose\nDamian\nBrody\nTheodore\nDeclan\nIan\nJordan\nLuis\nParker\nXavier\nEzekiel\nLeo\nGiovanni\nSawyer\nMaxwell\nChase\nEmmett\nEverett\nBrandon\nNicholas\nKevin\nRoman\nWeston\nEaston\nJason\nCole\nAyden\nNathaniel\nTristan\nEzra\nCarson\nVincent\nAxel\nCamden\nMax\nMicah\nGreyson\nLeonardo\nZayden\nCalvin\nCarlos\nJuan\nJude\nDiego\nJustin\nBentley\nColin\nHarrison\nMateo\nRowan\nCody\nSilas\nAbel\nKayden\nOscar\nRiley\nAugust\nGrant\nBryce\nGeorge\nGraham\nJesus\nKai\nPatrick\nBennett\nGael\nJameson\nAlan\nAlex\nCorbin\nIvan\nAidan\nJase\nJonah\nTanner\nBeckett\nHayden\nKaleb\nKnox\nVictor\nZane\nAbraham\nAlejandro\nBraxton\nJesse\nMiguel\nTimothy\nCharlie\nEmiliano\nEmmanuel\nJax\nPreston\nTucker\nXander\nBrooks\nIker\nMaddox\nBeau\nBrady\nBryson\nKaden\nPeter\nRomeo\nAvery\nEmilio\nCaden\nLuca\nMarcus\nPaxton\nAngelo\nAshton\nFelix\nGage\nRichard\nJoel\nMalachi\nRylan\nSantiago\nSean\nZander\nEric\nGriffin\nJaden\nJasper\nKaiden\nArcher\nCruz\nDamien\nDerek\nJavier\nSimon\nTitus\nBradley\nMark\nMaximus\nPaul\nElliott\nGunner\nOrion\nSergio\nDonovan\nEdward\nJayce\nElliot\nIsrael\nJudah\nKenneth\nMaverick\nPeyton\nQuinn\nSteven\nAntonio\nBrantley\nCash\nLukas\nMarshall\nMilo\nDean\nFrancisco\nGarrett\nJorge\nLouis\nManuel\nRory\nAndres\nDante\nJohnathan\nKyle\nNehemiah\nBryan\nCesar\nDrake\nFernando\nJake\nKingston\nLorenzo\nMarco\nRiver\nSpencer\nArlo\nCade\nJeremy\nPorter\nReed\nShane\nUriah\nBarrett\nBrian\nCayden\nCollin\nEmerson\nJared\nKellen\nNicolas\nReid\nTrevor\nTyson\nAtticus\nBode\nChance\nDesmond\nDexter\nFinn\nHolden\nKing\nWalker\nAri\nColt\nDillon\nEduardo\nErick\nHector\nLanden\nMyles\nOmar\nSeth\nStephen\nZachariah\nZaiden\nAdriel\nBrock\nConner\nMario\nRaymond\nRicardo\nTalon\nClayton\nCrosby\nDominick\nEnzo\nJohnny\nPhoenix\nRonan\nTatum\nWaylon\nAndre\nBraden\nConrad\nDalton\nDevin\nEllis\nFabian\nFinley\nGerardo\nGunnar\nKyler\nRemington\nSterling\nTate\nUriel\nWarren\nAlexis\nArmando\nJamison\nJulius\nKeegan\nMartin\nMaximiliano\nOdin\nRhys\nTaylor\nAlonzo\nAndy\nCaiden\nCyrus\nDecker\nHugo\nJensen\nKade\nKellan\nKendrick\nPablo\nSoren\nTravis\nWalter\nAugustus\nBodhi\nCallan\nCristian\nDonald\nEdgar\nEdwin\nJaime\nJakob\nJoaquin\nJosue\nLane\nLeon\nMatteo\nMohamed\nNash\nRonin\nRyland\nTobias\nTrey\nYahir\nAdan\nArmani\nBodie\nBrennan\nClark\nCohen\nColten\nDawson\nDerrick\nDrew\nFletcher\nIsaias\nJett\nKieran\nLeonel\nMaximilian\nNeymar\nRhett\nSylas\nTy\nAce\nBrendan\nCasey\nDamon\nErik\nJaiden\nLuciano\nPedro\nRaul\nRussell\nSolomon\nTrenton\nUrijah\nAsa\nAtlas\nBridger\nCase\nDavis\nDax\nDeacon\nDevon\nDustin\nGideon\nIzaiah\nJaxton\nJonas\nKason\nKian\nKillian\nLawson\nMathias\nOrlando\nPhilip\nPhillip\nQuentin\nRafael\nSkyler\nThiago\nTony\nTorin\nZechariah\nZeke\nAbram\nAugustine\nBo\nBoden\nBrecken\nCormac\nDane\nDaxton\nEmanuel\nEsteban\nEzequiel\nForrest\nKarter\nKeaton\nMitchell\nNoel\nQuincy\nRemy\nSage\nSaul\nTomas\nVaughn\nZayne\nAden\nAdonis\nAlijah\nAllen\nAnderson\nAzariah\nBrycen\nCallum\nColby\nDariel\nFlynn\nFrank\nFrederick\nHarvey\nIsmael\nJustice\nMisael\nMoises\nNico\nNikolai\nOtis\nRoyce\nShawn\nTroy\nValentino\nVan\nVance\nAbdullah\nAldo\nAlexzander\nAli\nAlonso\nAmir\nAnders\nArturo\nBruce\nCrew\nDakota\nEmmitt\nGannon\nGrady\nHayes\nHendrix\nJay\nJayson\nJeffrey\nJovanni\nJulio\nKasen\nKayson\nKeith\nLennox\nLucian\nMalakai\nMohammed\nNikola\nOakley\nOtto\nRaiden\nReece\nRex\nRoberto\nRocco\nRoland\nSam\nAarav\nAlden\nAlec\nAmari\nAnakin\nArthur\nAtreyu\nBlaise\nBrayan\nBrodie\nBryant\nCallen\nDavian\nDuncan\nEddie\nGustavo\nHezekiah\nJayceon\nJerry\nKane\nLachlan\nLeif\nLeland\nMilan\nMoses\nNiko\nNikolas\nQuinton\nRay\nSalvador\nSkylar\nSullivan\nThaddeus\nTrent\nXzavier\nZavier\nAlessandro\nAlfredo\nAron\nAxton\nAydan\nBraydon\nCael\nCasen\nCason\nConor\nCullen\nDanny\nDeegan\nDominik\nDorian\nDuke\nEliseo\nEnoch\nEnrique\nErnesto\nEverest\nEwan\nFinnegan\nFinnley\nGianni\nGordon\nGregory\nHamza\nIbrahim\nIssac\nJadon\nJaylen\nJovani\nKameron\nKarson\nKash\nKorbin\nLance\nLandyn\nLarry\nLennon\nLondon\nMalcolm\nMarcos\nMatias\nMessiah\nNoe\nReese\nRoy\nRuben\nSantino\nTheo\nUlises\nZion\nAlaric\nArjun\nAustyn\nAyaan\nBenson\nBowen\nBraiden\nBreckin\nBroderick\nCal\nCannon\nCassius\nChandler\nCorbyn\nDarian\nDarien\nDarren\nDavion\nDion\nDraven\nEliot\nFord\nFranklin\nGiancarlo\nGiovani\nHaiden\nHenrik\nHuxley\nIsai\nJairo\nJaxen\nJaxx\nKamden\nKeagan\nKeenan\nKelton\nKoda\nKolby\nKristopher\nKyson\nLawrence\nLazarus\nLeonidas\nLewis\nLucca\nMalik\nMarvin\nMatthias\nMerrick\nMustafa\nNickolas\nPierce\nQuintin\nRamon\nRandy\nRaylan\nReagan\nRidge\nRonald\nSamson\nScott\nSeamus\nShaun\nTerry\nTobin\nTripp\nUlysses\nVicente\nVihaan\nWade\nWilson\nAaden\nAdrien\nAedan\nAhmad\nAlbert\nAlberto\nAmar\nAmos\nAnton\nBear\nBen\nBlaine\nBoyd\nBraylen\nBraylon\nBronson\nCain\nCampbell\nCecil\nClay\nClyde\nCoen\nCristiano\nDamion\nDash\nDashiell\nDeion\nDiesel\nEben\nEden\nElian\nFisher\nForest\nFreddy\nGaige\nGarrison\nGionni\nHank\nHarper\nHarry\nHeath\nHugh\nIzayah\nJacoby\nJagger\nJedidiah\nJefferson\nJericho\nJimmy\nJionni\nJosias\nKolton\nLegend\nLochlan\nLouie\nLuka\nMaceo\nMagnus\nMarcel\nMathew\nMauricio\nMaxton\nMuhammad\nNixon\nOren\nPierson\nRey\nRoger\nShiloh\nStetson\nSutton\nTerrence\nThatcher\nToby\nTristen\nTriston\nYousef\nZackary\nAchilles\nAdler\nAhmed\nAksel\nAlfonso\nAmmon\nAnsel\nApollo\nAres\nArian\nAriel\nAryan\nBeckham\nBenaiah\nBentlee\nBreck\nBrent\nBrogan\nByron\nCaius\nCamdyn\nCanaan\nCarmelo\nCastiel\nColter\nCorey\nCristopher\nCylas\nDallas\nDangelo\nDanilo\nDarius\nDaryl\nDayton\nDeangelo\nDemetrius\nDennis\nDenzel\nEdison\nEdmund\nElan\nEmery\nEugene\nFoster\nFynn\nGary\nGauge\nGerald\nGiovanny\nGraysen\nGuillermo\nGus\nHassan\nJalen\nJayse\nJayvion\nJaziel\nJerome\nJoey\nJohann\nJones\nJulien\nJunior\nJustus\nKallen\nKingsley\nKole\nKolten\nKooper\nLee\nLionel\nLoki\nLuther\nLyric\nMace\nMajor\nMarek\nMaxim\nMurphy\nNathanial\nOden\nOsiris\nPayson\nQuinten\nRamiro\nRaphael\nRayden\nRene\nRobin\nRogelio\nRoyal\nSalvatore\nSantana\nSonny\nStone\nStuart\nTreyton\nTristin\nTurner\nVladimir\nWestin\nXavi\nYair\nYusuf\nZain\nZayn\nZephaniah\nMary\nHelen\nAnna\nMargaret\nDorothy\nRuth\nElizabeth\nRose\nAlice\nFlorence\nJosephine\nMildred\nLillian\nFrances\nCatherine\nJulia\nAnne\nMarie\nMarion\nEthel\nEvelyn\nGrace\nGertrude\nAnn\nBeatrice\nEmma\nLouise\nGladys\nSophie\nEsther\nBertha\nKatherine\nIrene\nAgnes\nEdna\nEleanor\nClara\nDoris\nJennie\nTheresa\nEdith\nJean\nMarguerite\nPauline\nMarjorie\nLucy\nElsie\nIda\nNellie\nBarbara\nGenevieve\nKathryn\nLena\nBernice\nEmily\nEstelle\nLoretta\nSarah\nStella\nViola\nVirginia\nBlanche\nCharlotte\nLaura\nLucille\nBetty\nJane\nMarian\nVera\nBessie\nMadeline\nMaria\nMartha\nSylvia\nVictoria\nEva\nMabel\nMae\nAlma\nChristine\nEllen\nOlga\nCaroline\nCecelia\nCelia\nHazel\nOlive\nAdeline\nAmelia\nAnnette\nAntoinette\nClaire\nConstance\nElla\nHarriet\nHelene\nJeanne\nJeannette\nPearl\nSally\nThelma\nAda\nAngelina\nCecilia\nConcetta\nHenrietta\nLeona\nMinnie\nRegina\nRita\nViolet\nAdelaide\nAngeline\nAnnie\nFlora\nHelena\nHilda\nIsabel\nMiriam\nMuriel\nMyrtle\nPhyllis\nWanda\nCarmella\nDora\nDorothea\nEileen\nElvira\nEtta\nFannie\nFilomena\nIrma\nJanet\nJessie\nStephanie\nSusan\nSusie\nMary\nHelen\nAnna\nMargaret\nDorothy\nRose\nElizabeth\nRuth\nMildred\nAlice\nCatherine\nFlorence\nJosephine\nFrances\nLillian\nMarion\nJulia\nEthel\nEdith\nGertrude\nAgnes\nAnne\nEleanor\nGrace\nLouise\nEvelyn\nIrene\nKatherine\nMarie\nEdna\nAnn\nDoris\nEsther\nBertha\nIda\nMarjorie\nJennie\nLucy\nTheresa\nElsie\nJean\nEmma\nGladys\nPauline\nVirginia\nBeatrice\nLaura\nSophie\nStella\nViola\nBarbara\nLena\nOlive\nNellie\nSarah\nClara\nHazel\nLoretta\nMae\nMarian\nMartha\nAntoinette\nCelia\nEva\nJane\nAdeline\nBernice\nCecelia\nCharlotte\nOlga\nAngelina\nCaroline\nGenevieve\nKathryn\nLucille\nVera\nBlanche\nEmily\nMadeline\nMarguerite\nPhyllis\nSylvia\nViolet\nAmelia\nHarriet\nMinnie\nBessie\nBetty\nElla\nEllen\nEstelle\nJessie\nMyrtle\nPearl\nRegina\nConstance\nDorothea\nKathleen\nMaria\nNancy\nSara\nSusan\nVictoria\nVivian\nAngeline\nCarmela\nCarolyn\nConcetta\nFannie\nFlora\nMay\nNatalie\nAnnette\nChristine\nClaire\nHilda\nLois\nMabel\nPhilomena\nSally\nShirley\nAlma\nAnita\nElinor\nHenrietta\nLydia\nRita\nVeronica\nWinifred\nArline\nCarol\nDolores\nEdythe\nEileen\nHelena\nHelene\nIsabel\nJanet\nRosalie\nSelma\nAdele\nAngela\nCornelia\nEunice\nFilomena\nGeraldine\nJeanne\nJeannette\nMiriam\nMollie\nMuriel\nPatricia\nRosa\nSophia\nTillie\nMary\nHelen\nMargaret\nAnna\nDorothy\nElizabeth\nRose\nRuth\nMildred\nAlice\nFrances\nLillian\nFlorence\nJosephine\nMarion\nCatherine\nJulia\nIrene\nEleanor\nGertrude\nGrace\nMarie\nLouise\nDoris\nEvelyn\nAnn\nEthel\nEdith\nKatherine\nAnne\nMarjorie\nElsie\nBertha\nTheresa\nEdna\nEsther\nJennie\nSophie\nStella\nBeatrice\nBetty\nVirginia\nAgnes\nNellie\nPauline\nHazel\nJean\nJane\nGenevieve\nIda\nEmma\nLucy\nSylvia\nAntoinette\nClara\nCharlotte\nBarbara\nGladys\nMadeline\nSarah\nViola\nEva\nKathryn\nMartha\nBernice\nLena\nMarguerite\nSally\nLaura\nLucille\nAdeline\nMyrtle\nAngelina\nEstelle\nHarriet\nPearl\nAmelia\nLoretta\nMae\nOlga\nWinifred\nMabel\nViolet\nBlanche\nDorothea\nVera\nVictoria\nEllen\nEmily\nJessie\nMarian\nMinnie\nAngeline\nElla\nHilda\nMuriel\nVeronica\nCaroline\nFlora\nSusan\nAngela\nConstance\nNancy\nCarolyn\nHelene\nIsabelle\nLois\nOlive\nPhyllis\nVivian\nArlene\nCarmela\nChristine\nEunice\nJeannette\nLeona\nPhilomena\nAnita\nCarmel\nEileen\nWanda\nAlma\nBessie\nFannie\nKathleen\nMolly\nPatricia\nSophia\nStephanie\nTeresa\nYvonne\nAlbina\nCecilia\nClaire\nEleanore\nHelena\nIrma\nJanet\nJoan\nKatharine\nNatalie\nRebecca\nSadie\nSara\nVerna\nAdele\nCecelia\nCecile\nConcetta\nEloise\nFay\nLee\nLydia\nMaria\nMatilda\nMay\nMiriam\nNorma\nRegina\nShirley\nArline\nCarol\nCelia\nEdythe\nElinor\nFreda\nIsabel\nLeah\nLottie\nRuby\nWilma\nMary\nHelen\nAnna\nMargaret\nDorothy\nRose\nElizabeth\nRuth\nFrances\nMarion\nMildred\nFlorence\nAlice\nCatherine\nJosephine\nAnne\nLillian\nMarie\nLouise\nIrene\nJennie\nEleanor\nAnn\nJulia\nEdith\nEthel\nGertrude\nGrace\nDoris\nPauline\nEvelyn\nTheresa\nJean\nKatherine\nAgnes\nBeatrice\nEsther\nMarjorie\nEdna\nGladys\nSophie\nElsie\nStella\nBernice\nLucy\nVirginia\nEva\nGenevieve\nJane\nNellie\nIda\nMartha\nBarbara\nBertha\nClara\nLena\nBetty\nLoretta\nSylvia\nOlga\nAntoinette\nEmily\nHazel\nLois\nPhyllis\nAmelia\nCharlotte\nEmma\nCaroline\nMabel\nViola\nMadeline\nMarguerite\nRita\nClaire\nEstelle\nMuriel\nAdeline\nHarriet\nSarah\nVictoria\nAngelina\nMarian\nCarmela\nEllen\nMaria\nMinnie\nVeronica\nVivian\nWanda\nKathryn\nLaura\nLucille\nWinifred\nDorothea\nThelma\nBessie\nCecelia\nEunice\nNatalie\nOlive\nAngeline\nFannie\nJeannette\nPearl\nViolet\nJanet\nLeona\nSally\nCelia\nConstance\nJeanette\nLydia\nMyrtle\nNancy\nPhilomena\nShirley\nTeresa\nAdele\nAlma\nAnita\nHelene\nIsabel\nSusan\nVera\nAnnette\nBlanche\nChristine\nConcetta\nIsabelle\nKathleen\nMae\nMatilda\nAngela\nCarmella\nCarolyn\nCecile\nCornelia\nElla\nGeraldine\nMay\nSadie\nDora\nElinor\nElvira\nHannah\nHilda\nLorraine\nLottie\nMollie\nNorma\nPatricia\nAda\nAmy\nAnnie\nArline\nBernadette\nCarmel\nCecilia\nConnie\nEileen\nHenrietta\nJessie\nJoan\nJohanna\nMiriam\nRosalie\nRosemary\nRuby\nSophia\nStephanie\nSue\nAdelaide\nAlyce\nArlene\nCora\nElisabeth\nFreda\nNora\nSara\nSelma\nWilma\nAlbina\nCarol\nCarrie\nDaisy\nEdythe\nEleanore\nFilomena\nGloria\nHelena\nIrma\nJeanne\nJuliette\nMarcia\nMichelina\nMillie\nPriscilla\nRoberta\nSabina\nStacia\nTessie\nVerna\nVilma\nVincenza\nMary\nHelen\nAnna\nMargaret\nDorothy\nRose\nRuth\nElizabeth\nJosephine\nFrances\nFlorence\nAlice\nMildred\nLillian\nMarion\nEvelyn\nCatherine\nAnne\nEleanor\nIrene\nMarie\nDoris\nAnn\nJulia\nAgnes\nEdith\nSophie\nJennie\nKatherine\nStella\nGertrude\nLouise\nEthel\nGrace\nMarjorie\nTheresa\nBarbara\nLucy\nBeatrice\nEsther\nGenevieve\nVirginia\nEdna\nPauline\nSylvia\nJean\nEmma\nElsie\nLena\nNellie\nBertha\nIda\nAntoinette\nGladys\nJane\nEva\nClara\nMadeline\nRita\nBernice\nHazel\nOlga\nMartha\nAdeline\nCharlotte\nMarguerite\nPhyllis\nMuriel\nNancy\nBlanche\nHarriet\nLucille\nBetty\nEstelle\nVictoria\nEileen\nKathryn\nSarah\nVeronica\nVera\nCaroline\nAngelina\nCarmela\nMae\nLaura\nAdele\nLois\nLoretta\nMyrtle\nViola\nAmelia\nEllen\nOlive\nSally\nEmily\nJessie\nPearl\nConstance\nMarian\nTeresa\nAngeline\nBessie\nLeona\nMabel\nViolet\nCarolyn\nCecelia\nClaire\nElla\nVivian\nWinifred\nChristine\nEunice\nFannie\nIsabelle\nKathleen\nNatalie\nNorma\nPhilomena\nRegina\nSusan\nThelma\nAngela\nCarmel\nConcetta\nDora\nHedwig\nHelene\nMay\nMinnie\nJanet\nJeannette\nMollie\nSadie\nWanda\nAnnette\nCarmella\nCelia\nElaine\nElvira\nShirley\nHilda\nJoan\nLydia\nMaria\nNora\nPatricia\nRosemary\nSophia\nStephanie\nWilma\nAlma\nAnita\nArlene\nDorothea\nEleanore\nFlora\nAda\nCecile\nHenrietta\nInez\nMiriam\nRosalie\nYvonne\nArline\nFreda\nIrma\nJeanette\nKatharine\nLottie\nAlberta\nAnnie\nConnie\nFaye\nHarriett\nJeanne\nLorraine\nLucile\nMolly\nRena\nSue\nAlyce\nAnastasia\nChristina\nCora\nElinor\nFanny\nFay\nGeraldine\nIsabel\nMatilda\nSusie\nAlbina\nBelle\nBernadette\nCarol\nCecilia\nClare\nDelia\nDiana\nDolores\nFilomena\nGoldie\nJanice\nJohn\nJoyce\nLauretta\nNina\nRachel\nRhoda\nRoberta\nSara\nSelma\nTessie\nTillie\nVerna\nAlthea\nAmy\nAngie\nAugusta\nCamille\nConcettina\nCornelia\nCynthia\nDella\nErma\nFrieda\nGilda\nHelena\nIna\nIsabell\nJune\nMadeleine\nMamie\nMarcella\nMillicent\nMillie\nNettie\nSebastiana\nStasia\nVincenza\nYolanda\nMary\nHelen\nAnna\nMargaret\nDorothy\nRuth\nRose\nElizabeth\nJosephine\nFlorence\nAlice\nMildred\nFrances\nEleanor\nLillian\nEvelyn\nIrene\nMarie\nJulia\nDoris\nCatherine\nMarion\nJennie\nAnn\nAnne\nGertrude\nStella\nLouise\nMarjorie\nBeatrice\nJean\nEdith\nGrace\nEsther\nSophie\nPauline\nRita\nEthel\nVirginia\nAgnes\nKatherine\nElsie\nLucy\nBarbara\nGladys\nTheresa\nNellie\nBertha\nOlga\nEdna\nLaura\nBernice\nSylvia\nEmma\nPhyllis\nClara\nGenevieve\nLena\nMartha\nMarguerite\nAntoinette\nJane\nIda\nEmily\nHarriet\nViola\nCharlotte\nMuriel\nHazel\nVictoria\nBetty\nKathryn\nMadeline\nSarah\nShirley\nAngelina\nLois\nPearl\nWanda\nAdele\nSally\nBlanche\nCaroline\nConcetta\nNancy\nEstelle\nCelia\nConstance\nMabel\nVera\nMarian\nAngeline\nEllen\nLucille\nOlive\nAnita\nCarmela\nClaire\nJeanette\nCecelia\nEileen\nEva\nLoretta\nVeronica\nWinifred\nChristine\nAdeline\nBessie\nMae\nMinnie\nRegina\nCarmella\nViolet\nVivian\nHenrietta\nNatalie\nPhilomena\nAmelia\nMyrtle\nCarolyn\nJessie\nJune\nMaria\nAngela\nCarmel\nCarol\nDora\nEunice\nJanet\nJeannette\nSadie\nStephanie\nTeresa\nDorothea\nFannie\nGeraldine\nJoan\nMatilda\nMay\nTessie\nThelma\nArline\nElaine\nHelene\nIsabel\nKathleen\nAnnette\nElla\nIsabelle\nNorma\nRosalie\nSusan\nAlma\nCecilia\nEdythe\nHedwig\nHilda\nJeanne\nMiriam\nLeona\nPriscilla\nSophia\nAda\nAlberta\nElvira\nWilma\nYvonne\nAlbina\nAudrey\nElinor\nFilomena\nMarcella\nMollie\nYolanda\nAdelaide\nArlene\nConnie\nFlora\nGeorgia\nIrma\nMadelyn\nNina\nPatricia\nRoberta\nSue\nSusie\nAntonette\nCarrie\nEleanore\nElisabeth\nInez\nJoyce\nMolly\nRena\nRosemary\nRuby\nSabina\nSara\nStacia\nAmy\nAugusta\nBeulah\nErnestine\nFaith\nFrieda\nLeah\nLee\nRhoda\nSelma\nWilhelmina\nAlyce\nCarmelina\nCora\nDiana\nErma\nGloria\nHarriett\nHarriette\nHope\nIna\nJulie\nKatharine\nLorraine\nLottie\nLydia\nMargery\nNora\nRachel\nRebecca\nRosa\nStasia\nVincenza\nAlthea\nAnnie\nAstrid\nCamilla\nDaisy\nEbba\nFaye\nFelicia\nFreda\nHelena\nJenny\nJohanna\nJudith\nJustine\nLela\nLenore\nLinda\nLucile\nLuella\nMadeleine\nMillie\nMonica\nNaomi\nRae\nRoslyn\nSanta\nTillie\nValeria\nYvette\nMary\nHelen\nAnna\nMargaret\nDorothy\nRose\nElizabeth\nRuth\nJosephine\nFrances\nLillian\nFlorence\nMarion\nAnn\nCatherine\nEleanor\nAlice\nMildred\nEvelyn\nMarie\nAnne\nDoris\nJennie\nLouise\nVirginia\nIrene\nGrace\nSophie\nEdith\nJulia\nGertrude\nStella\nEthel\nBeatrice\nElsie\nJean\nLucy\nKatherine\nMarjorie\nPauline\nRita\nBarbara\nEsther\nEdna\nJane\nGladys\nBertha\nTheresa\nAntoinette\nOlga\nGenevieve\nBernice\nLena\nEmma\nMartha\nAgnes\nViola\nCharlotte\nNellie\nBetty\nLaura\nSylvia\nHazel\nEva\nKathryn\nLucille\nNancy\nEmily\nIda\nLoretta\nMuriel\nPhyllis\nShirley\nAdeline\nAngelina\nVictoria\nWinifred\nClara\nConstance\nEstelle\nHarriet\nMadeline\nMarian\nAnita\nCaroline\nAmelia\nEllen\nGeraldine\nPearl\nLois\nMarguerite\nThelma\nOlive\nSarah\nVera\nWanda\nAdele\nAngeline\nCarmela\nClaire\nDorothea\nEileen\nHenrietta\nVeronica\nEunice\nJanet\nVivian\nElinor\nMae\nNatalie\nPhilomena\nAngela\nBlanche\nCarolyn\nCelia\nChristine\nConcetta\nIsabelle\nJeanette\nRegina\nMinnie\nTeresa\nCecelia\nLeona\nNorma\nBessie\nSally\nSusan\nViolet\nKathleen\nMabel\nPatricia\nAlma\nCarmella\nMaria\nMatilda\nWilma\nHelene\nIsabel\nJeannette\nJoan\nStephanie\nSusie\nHelena\nMay\nMiriam\nAlberta\nAnnette\nAnnie\nArlene\nElla\nHilda\nJune\nLydia\nJessie\nRosemary\nSadie\nVerna\nYolanda\nArline\nCarmel\nRosalie\nAda\nElvira\nFannie\nJoyce\nMollie\nMyrtle\nAdelaide\nCarol\nHedwig\nRuby\nSara\nSue\nCecilia\nDora\nEleanore\nInez\nIrma\nJeanne\nLucia\nMonica\nNora\nRoberta\nAmy\nElaine\nErnestine\nKatharine\nLorraine\nMolly\nYvonne\nBeverly\nCarmelina\nCora\nEdythe\nEugenia\nFanny\nGwendolyn\nHarriett\nLuella\nPeggy\nRosalind\nTessie\nTillie\nAlbina\nBernadette\nCarrie\nConnie\nDolores\nFaye\nFrieda\nLottie\nMarcella\nMargery\nRhoda\nSelma\nStasia\nUrsula\nAlthea\nAudrey\nEve\nFilomena\nGilda\nHannah\nJanice\nJulie\nJustine\nLauretta\nLenore\nMadeleine\nMillie\nPriscilla\nRhea\nRosa\nSophia\nStacia\nBelle\nIsabella\nKathrine\nLila\nMadelyn\nMarcia\nMichelina\nNaomi\nNina\nPasqualina\nAlfreda\nAlyce\nAntonette\nBerenice\nChristina\nClare\nEloise\nFay\nFern\nFlora\nFreda\nGeorgia\nHope\nJuliette\nLeah\nMarilyn\nMaryann\nPaula\nRachel\nRebecca\nRena\nRosina\nValerie\nMary\nHelen\nAnna\nDorothy\nMargaret\nElizabeth\nRuth\nRose\nJosephine\nFrances\nFlorence\nAlice\nLillian\nEleanor\nMarion\nCatherine\nMildred\nEvelyn\nAnne\nDoris\nJennie\nMarie\nIrene\nVirginia\nJulia\nRita\nGertrude\nLouise\nEdith\nMarjorie\nSophie\nBeatrice\nAnn\nStella\nBarbara\nGrace\nJean\nKatherine\nTheresa\nEthel\nAgnes\nPauline\nLucy\nBernice\nLena\nEdna\nElsie\nCharlotte\nGenevieve\nGladys\nJane\nOlga\nEsther\nPhyllis\nNellie\nBertha\nHarriet\nMartha\nHazel\nSylvia\nBetty\nEmma\nIda\nAntoinette\nLucille\nMarguerite\nVictoria\nEva\nMuriel\nVeronica\nClara\nNancy\nChristine\nAmelia\nEmily\nVera\nShirley\nBlanche\nLaura\nLois\nMadeline\nJanet\nThelma\nLoretta\nViola\nClaire\nEllen\nKathryn\nSarah\nAngeline\nEileen\nAngelina\nEstelle\nMarian\nAdeline\nAnita\nHelene\nAdele\nKathleen\nWinifred\nOlive\nCarmella\nJoan\nMyrtle\nWanda\nConcetta\nGeraldine\nHilda\nSusan\nTeresa\nVivian\nAlma\nAngela\nCaroline\nCecelia\nConstance\nEunice\nJeannette\nNorma\nCarmela\nArline\nJeanette\nViolet\nMabel\nSally\nBessie\nMatilda\nMinnie\nNatalie\nRegina\nCarolyn\nCelia\nEdythe\nJune\nPearl\nStephanie\nDorothea\nLorraine\nMae\nPatricia\nYolanda\nElla\nJessie\nMaria\nElinor\nFannie\nHenrietta\nIsabelle\nMiriam\nElvira\nFreda\nLeona\nLottie\nMay\nMollie\nRosemary\nArlene\nAudrey\nIrma\nTessie\nAnnette\nInez\nJulie\nPhilomena\nAda\nCarol\nDora\nFlora\nJeanne\nLydia\nSophia\nSusie\nAnnie\nElaine\nHedwig\nSelma\nSue\nAlberta\nAlthea\nCecile\nConnie\nGloria\nMolly\nNora\nRena\nRoberta\nAlyce\nAmy\nCarmelina\nCarrie\nJanice\nMillie\nNettie\nRebecca\nRosalie\nRuby\nSadie\nVerna\nAdelaide\nAugusta\nBeverly\nCecilia\nCora\nEleanore\nElisabeth\nEugenia\nJoseph\nLeah\nLucia\nWilma\nYvonne\nAlfreda\nBelle\nCarmel\nCornelia\nDolores\nElsa\nErma\nFay\nFilomena\nFrieda\nHarriett\nKatharine\nMamie\nMarcia\nRhoda\nRosa\nStacia\nTillie\nAlbina\nAnastasia\nAntonette\nConcettina\nErnestine\nGeorgia\nIsabel\nJoyce\nMadeleine\nPeggy\nPriscilla\nSantina\nSara\nStephania\nBette\nBeulah\nDella\nEtta\nFelicia\nGwendolyn\nHelena\nLauretta\nLenore\nLilyan\nMaryann\nNaomi\nNina\nRachel\nRosalind\nValerie\nYetta\nClementina\nDaisy\nDelia\nDiane\nEve\nGermaine\nHannah\nJacqueline\nLola\nMafalda\nMargery\nMichelina\nMillicent\nMonica\nPhoebe\nVelma\nMary\nHelen\nAnna\nDorothy\nMargaret\nRuth\nElizabeth\nRose\nJosephine\nFrances\nEvelyn\nFlorence\nLillian\nMildred\nMarie\nEleanor\nAlice\nMarion\nAnn\nDoris\nAnne\nVirginia\nCatherine\nIrene\nSophie\nJennie\nBarbara\nEdith\nJulia\nJean\nMarjorie\nGertrude\nGrace\nRita\nAgnes\nLouise\nEthel\nStella\nLucy\nPauline\nBeatrice\nKatherine\nEsther\nTheresa\nGladys\nShirley\nElsie\nJane\nBertha\nGenevieve\nNellie\nAntoinette\nEdna\nSylvia\nOlga\nBetty\nLorraine\nLena\nCharlotte\nIda\nPhyllis\nEmma\nLaura\nMarguerite\nBernice\nLucille\nLois\nNancy\nVeronica\nHarriet\nMadeline\nEmily\nVictoria\nAngelina\nHazel\nMartha\nMuriel\nMarian\nEva\nClara\nPearl\nViola\nAngeline\nVivian\nBlanche\nClaire\nEllen\nJanet\nWanda\nVera\nLoretta\nAmelia\nEstelle\nMae\nMyrtle\nNorma\nEunice\nPatricia\nConcetta\nAlma\nConstance\nJeannette\nMiriam\nSally\nJoan\nKathryn\nOlive\nSarah\nCaroline\nRegina\nViolet\nKathleen\nMaria\nAdele\nCarmela\nChristine\nEileen\nFannie\nGeraldine\nAnnie\nBessie\nCelia\nMinnie\nThelma\nWinifred\nCarolyn\nCecelia\nHelene\nAnita\nArline\nCarmella\nJeanette\nJune\nLeona\nLydia\nRosemary\nStephanie\nSusan\nAngela\nArlene\nHedwig\nNatalie\nPhilomena\nJeanne\nMabel\nAdeline\nAnnette\nJessie\nSadie\nTeresa\nFlora\nRosalie\nYolanda\nAudrey\nElla\nFrieda\nHenrietta\nMollie\nPriscilla\nInez\nNora\nSophia\nTessie\nAlberta\nAlbina\nCecilia\nDorothea\nElinor\nHarriett\nHilda\nMatilda\nRena\nAlyce\nCarmel\nEdythe\nEleanore\nFreda\nSara\nBella\nDolores\nDora\nIsabelle\nMillicent\nRachel\nAdelaide\nBernadette\nConnie\nGloria\nHelena\nIrma\nIsabel\nMadelyn\nNettie\nPeggy\nRoberta\nStacia\nAlthea\nCarol\nCecile\nElaine\nJanice\nLottie\nMarcia\nMay\nSusie\nYvonne\nBeulah\nElvira\nErma\nJoyce\nMargery\nSelma\nStasia\nAda\nAnastasia\nCamille\nElisabeth\nEloise\nEugenia\nFilomena\nJudith\nLeah\nLily\nRhoda\nValeria\nWilma\nAngie\nArlyne\nBette\nDiana\nEtta\nGeorgette\nHarriette\nLauretta\nMaude\nNina\nAmy\nAugusta\nBridget\nCarmelina\nJenny\nJohn\nKatharine\nLee\nLenore\nLouisa\nLucia\nMafalda\nMarcella\nMolly\nRoslyn\nRuby\nSue\nVerna\nAlda\nAntonette\nClare\nClarice\nClementine\nConcettina\nDelia\nElena\nEvangeline\nFaith\nFanny\nGwendolyn\nIsabell\nLeonora\nLilyan\nLuella\nMaryann\nMaureen\nMillie\nNell\nPalma\nRaffaela\nRebecca\nSusanne\nWilhelmina\nYvette\nMary\nHelen\nDorothy\nMargaret\nAnna\nElizabeth\nRuth\nRose\nJosephine\nFrances\nFlorence\nEleanor\nAlice\nMarion\nMildred\nDoris\nLillian\nVirginia\nIrene\nEvelyn\nAnn\nCatherine\nMarie\nLouise\nJennie\nRita\nJean\nJulia\nMarjorie\nAnne\nGertrude\nGrace\nBarbara\nSophie\nEdith\nStella\nEsther\nPauline\nShirley\nBeatrice\nAgnes\nLucy\nJane\nTheresa\nEthel\nGladys\nKatherine\nEdna\nGenevieve\nBertha\nBernice\nElsie\nAntoinette\nNellie\nBetty\nMartha\nOlga\nLena\nSylvia\nPhyllis\nCharlotte\nClara\nEmma\nEmily\nLorraine\nHazel\nMuriel\nAngelina\nNancy\nLucille\nAdeline\nMarian\nHarriet\nLois\nViola\nEileen\nMadeline\nIda\nLaura\nVeronica\nCaroline\nEllen\nEva\nJanet\nJune\nKathryn\nVictoria\nNorma\nLoretta\nMarguerite\nConstance\nAmelia\nClaire\nConcetta\nPatricia\nVivian\nAngeline\nChristine\nJeanette\nWanda\nGeraldine\nSarah\nAnita\nBlanche\nPearl\nThelma\nJeanne\nOlive\nVera\nAdele\nAnnette\nCarmela\nAlma\nDorothea\nKathleen\nElaine\nElla\nMae\nArline\nCecelia\nNatalie\nRegina\nViolet\nJeannette\nRosalie\nElinor\nMyrtle\nPhilomena\nStephanie\nAngela\nCarmella\nCarolyn\nJoan\nSally\nEunice\nJessie\nTeresa\nDora\nFannie\nIsabelle\nMinnie\nSusan\nArlene\nCelia\nTessie\nEstelle\nHenrietta\nIrma\nJanice\nSara\nSophia\nAnnie\nHelene\nHilda\nLeona\nLydia\nMabel\nMaria\nBessie\nCecilia\nFlora\nIsabel\nMay\nPriscilla\nRosemary\nWinifred\nAdelaide\nAlberta\nEleanore\nFreda\nMiriam\nRachel\nSadie\nAda\nAlbina\nAudrey\nBeverly\nConnie\nAmy\nBella\nCarol\nJustine\nLottie\nMatilda\nNora\nSelma\nYolanda\nCarmel\nDolores\nErnestine\nEugenia\nFrieda\nMarcia\nMollie\nRoberta\nSantina\nStacia\nSusie\nCecile\nEdythe\nElisabeth\nFilomena\nGloria\nJoyce\nJulie\nMadelyn\nNina\nWilma\nYvonne\nClare\nHarriett\nHope\nLenore\nLola\nMargery\nPasqualina\nRena\nRhoda\nBeulah\nHannah\nHedwig\nHelena\nJacqueline\nLeah\nNaomi\nNettie\nRebecca\nVerna\nAnastasia\nCarmelina\nConcettina\nCora\nCornelia\nEdwina\nElvira\nEnid\nFanny\nFreida\nHarriette\nMarcella\nMarilyn\nMillie\nMolly\nSteffie\nTillie\nWilliam\nAdella\nAlda\nAlicia\nAlthea\nBelle\nBernadette\nClementine\nDaisy\nDelia\nDella\nEloise\nEmilie\nErma\nEve\nFaith\nFelicia\nGoldie\nIsabella\nIva\nJoanna\nJuanita\nKatharine\nMaxine\nPaula\nRuby\nSonia\nStasia\nValeria\nMary\nHelen\nDorothy\nMargaret\nAnna\nRuth\nElizabeth\nFrances\nRose\nJosephine\nEleanor\nFlorence\nDoris\nEvelyn\nMarion\nAlice\nMildred\nVirginia\nIrene\nBarbara\nMarie\nLillian\nCatherine\nAnn\nJean\nJulia\nGertrude\nLouise\nRita\nShirley\nMarjorie\nAnne\nJennie\nJane\nSophie\nEdith\nGrace\nGladys\nAgnes\nBeatrice\nTheresa\nEsther\nLucy\nEthel\nPauline\nKatherine\nStella\nOlga\nElsie\nBetty\nGenevieve\nLena\nNellie\nAngelina\nBernice\nEdna\nBertha\nPhyllis\nMuriel\nAntoinette\nNancy\nCharlotte\nMartha\nSylvia\nEileen\nHarriet\nEva\nLucille\nLois\nNorma\nVeronica\nMarian\nJanet\nMarguerite\nWanda\nCaroline\nMadeline\nIda\nViola\nEmily\nAdeline\nAngeline\nCarmella\nLaura\nAmelia\nConstance\nEmma\nJeanette\nEstelle\nJeanne\nLorraine\nHazel\nKathleen\nKathryn\nClaire\nVictoria\nBlanche\nClara\nAnita\nPatricia\nPearl\nSarah\nVivian\nElaine\nGeraldine\nArlene\nVera\nViolet\nAdele\nCarmela\nJoan\nEllen\nMaria\nNatalie\nEunice\nLoretta\nMae\nCarolyn\nJune\nWinifred\nCecilia\nArline\nConcetta\nMiriam\nElinor\nThelma\nAudrey\nChristine\nHelene\nMinnie\nPriscilla\nRegina\nSusan\nAlma\nAnnette\nElla\nMabel\nPhilomena\nTeresa\nBessie\nDolores\nJeannette\nAnnie\nCecelia\nCelia\nDorothea\nLeona\nCarmel\nIrma\nIsabelle\nAlyce\nHilda\nLottie\nLydia\nOlive\nRosalie\nAngela\nBeverly\nElvira\nJessie\nMatilda\nMyrtle\nFreda\nJoyce\nJustine\nRosemary\nSelma\nTessie\nDora\nEleanore\nHenrietta\nMarcia\nMargery\nNora\nSally\nSara\nStephanie\nCarol\nEugenia\nYolanda\nYvonne\nAda\nAdelaide\nAlberta\nCynthia\nFannie\nGloria\nJenny\nJudith\nMadelyn\nVerna\nCecile\nFilomena\nHope\nLeah\nNina\nRena\nRoberta\nRuby\nAnastasia\nFlora\nHelena\nJacqueline\nPeggy\nRebecca\nSadie\nSusie\nBeulah\nCarrie\nClarice\nCorinne\nHannah\nIsabel\nJanice\nJuliette\nLeila\nMarcella\nRachel\nStacia\nVincenza\nWilma\nAlbina\nAnnamae\nBella\nChristina\nEdythe\nElsa\nFanny\nFelicia\nJohn\nLenore\nMafalda\nMollie\nSantina\nSophia\nSuzanne\nTheodora\nAlthea\nErnestine\nEve\nGilda\nHarriett\nHedwig\nKatharine\nLila\nLinda\nOlympia\nRoslyn\nValeria\nAntonette\nBette\nBridget\nCamille\nClementina\nConnie\nDiana\nDorcas\nElnora\nEloise\nFay\nIsabella\nJayne\nJohanna\nLouisa\nLucia\nMadaline\nPaula\nRae\nRosella\nRosina\nSue\nUrsula\nVelma\nMary\nHelen\nDorothy\nMargaret\nAnna\nRuth\nElizabeth\nFrances\nRose\nJosephine\nEvelyn\nFlorence\nAlice\nEleanor\nMarion\nDoris\nMildred\nVirginia\nLillian\nIrene\nShirley\nBarbara\nCatherine\nJean\nMarjorie\nMarie\nLouise\nRita\nGrace\nAnn\nAnne\nBeatrice\nGertrude\nJulia\nJane\nJennie\nEdith\nSophie\nTheresa\nBetty\nPauline\nEthel\nPhyllis\nKatherine\nLucy\nGenevieve\nStella\nGladys\nAntoinette\nAgnes\nEdna\nLena\nClara\nMuriel\nElsie\nOlga\nBernice\nNancy\nEmily\nLois\nLucille\nMartha\nCharlotte\nEsther\nClaire\nHarriet\nSylvia\nLaura\nGloria\nMarguerite\nNorma\nAngelina\nBertha\nJanet\nLoretta\nLorraine\nEva\nViola\nWanda\nJeanette\nConstance\nEileen\nIda\nMadeline\nPatricia\nVeronica\nVictoria\nJune\nAngeline\nAnita\nVivian\nKathleen\nMarian\nArline\nNellie\nAmelia\nAdeline\nAnnette\nCaroline\nEmma\nJeanne\nJeannette\nKathryn\nThelma\nCarmella\nPearl\nAlma\nCarmela\nGeraldine\nHazel\nRegina\nElaine\nArlene\nChristine\nConcetta\nVera\nElla\nEunice\nTeresa\nWinifred\nAdele\nJoan\nSarah\nViolet\nAngela\nBlanche\nCarolyn\nEstelle\nLeona\nMabel\nMiriam\nRosemary\nDorothea\nEllen\nHilda\nJessie\nMae\nOlive\nAudrey\nBeverly\nCecelia\nPhilomena\nAnnie\nCarol\nCelia\nDolores\nMatilda\nSadie\nElinor\nNatalie\nStephanie\nIsabel\nMaria\nSusan\nDora\nHelene\nMinnie\nMyrtle\nRosalie\nRuby\nYolanda\nAlyce\nCarmel\nEugenia\nIrma\nIsabelle\nJacqueline\nMarcella\nMay\nPriscilla\nRoberta\nEleanore\nElvira\nFannie\nAda\nAlberta\nFlora\nHedwig\nJoyce\nLydia\nSusie\nAlbina\nBette\nCarmelina\nGilda\nHenrietta\nHope\nMadelyn\nMarilyn\nTessie\nBessie\nJanice\nMargery\nRhoda\nCecile\nJulie\nLottie\nMolly\nSally\nSelma\nStacia\nAdelaide\nCarmen\nErnestine\nGeorgia\nInez\nNora\nRachel\nSophia\nAmy\nAnastasia\nCecilia\nConnie\nCorinne\nEleanora\nFanny\nMargie\nNettie\nRena\nRosalind\nVincenza\nAnnamae\nBernadette\nCora\nEdythe\nFreda\nHarriett\nHelena\nJoanne\nJoseph\nMarcia\nMillicent\nMillie\nMonica\nMyra\nNaomi\nNina\nPalma\nRebecca\nRosa\nSabina\nTherese\nValerie\nYvonne\nAlfreda\nAlvina\nAnnabelle\nBeulah\nCamille\nDiana\nElena\nEtta\nFaith\nFern\nFilomena\nGeorge\nGeorgiana\nGoldie\nIsabell\nJenny\nJuanita\nLucia\nLuella\nMaxine\nSantina\nSara\nStasia\nSuzanne\nMary\nHelen\nDorothy\nMargaret\nRuth\nAnna\nElizabeth\nRose\nFrances\nDoris\nJosephine\nShirley\nFlorence\nVirginia\nMarion\nMildred\nIrene\nBarbara\nEvelyn\nLillian\nAlice\nEleanor\nMarie\nJean\nAnn\nAnne\nMarjorie\nRita\nCatherine\nLouise\nGrace\nBetty\nEdith\nJane\nJennie\nPauline\nGloria\nLucy\nBeatrice\nJulia\nTheresa\nGertrude\nKatherine\nPhyllis\nGenevieve\nBernice\nGladys\nSophie\nStella\nEthel\nAgnes\nElsie\nMuriel\nNancy\nCharlotte\nConstance\nLucille\nMartha\nNorma\nBertha\nLois\nLorraine\nAntoinette\nEdna\nLaura\nSylvia\nLena\nJanet\nAngelina\nEileen\nIda\nOlga\nVictoria\nEsther\nJeanne\nMarguerite\nViola\nClara\nLoretta\nJune\nPearl\nVeronica\nEmma\nClaire\nEunice\nPatricia\nWanda\nAmelia\nEmily\nGeraldine\nHazel\nKathryn\nJeanette\nMadeline\nElaine\nHarriet\nThelma\nCarolyn\nJoan\nConcetta\nEstelle\nMae\nMarian\nSarah\nAnita\nCarmella\nCarmela\nCarol\nEva\nRosemary\nVivian\nWinifred\nHelene\nOlive\nViolet\nAngeline\nJeannette\nKathleen\nNellie\nSusan\nAdeline\nArlene\nCecelia\nEllen\nMay\nAudrey\nCecilia\nNatalie\nPhilomena\nAngela\nArline\nBlanche\nCaroline\nChristine\nLydia\nVera\nHilda\nFlora\nJacqueline\nMiriam\nRegina\nSally\nAdele\nCelia\nJessie\nJoyce\nLeona\nMaria\nMyrtle\nTeresa\nBessie\nIsabel\nMabel\nMinnie\nYolanda\nDorothea\nEleanore\nSusie\nAlyce\nAnnie\nDora\nHenrietta\nIsabelle\nMarilyn\nAlma\nElinor\nAnnette\nCecile\nFannie\nIrma\nStephanie\nCarmelina\nElla\nLeah\nMatilda\nNina\nYvonne\nAdelaide\nBeverly\nCarmel\nRachel\nRhoda\nRoberta\nAda\nAlberta\nCarrie\nFilomena\nHedwig\nJenny\nJudith\nMadelyn\nMargery\nPriscilla\nRosalie\nRoslyn\nCorinne\nDolores\nFrieda\nHarriett\nHope\nJanice\nMarcia\nPeggy\nRuby\nSadie\nSantina\nSara\nSelma\nStasia\nSuzanne\nWilma\nConnie\nEugenia\nFaith\nFanny\nLee\nMaureen\nNaomi\nVincenza\nAlthea\nAmy\nAntonette\nBernadette\nCora\nElvira\nHelena\nInez\nJulie\nLottie\nMichelina\nMillicent\nMolly\nMonica\nNora\nRobert\nRosalind\nSophia\nTheodora\nTherese\nAlbina\nAnastasia\nAvis\nBette\nClare\nClarice\nDaisy\nEdwina\nElda\nElena\nElvera\nEmilie\nErma\nErnestine\nGeorgia\nGoldie\nIsabell\nIsabella\nLeonora\nLucia\nMadeleine\nMarjory\nMillie\nPalma\nSonia\nStacia\nTina\nVelma\nVerna\nMary\nHelen\nDorothy\nMargaret\nRuth\nElizabeth\nAnna\nRose\nFrances\nShirley\nDoris\nBarbara\nJosephine\nVirginia\nFlorence\nMarion\nEleanor\nIrene\nEvelyn\nLillian\nMarie\nMildred\nAlice\nJean\nMarjorie\nAnn\nCatherine\nJane\nRita\nLouise\nBetty\nAnne\nGloria\nJennie\nBeatrice\nGrace\nGertrude\nEdith\nJulia\nSophie\nElsie\nNancy\nPhyllis\nLucy\nAgnes\nEthel\nGladys\nAntoinette\nKatherine\nLois\nPauline\nTheresa\nMuriel\nPatricia\nGenevieve\nEileen\nJune\nLorraine\nBernice\nStella\nClaire\nJanet\nEdna\nJeanne\nOlga\nClara\nElaine\nNorma\nViola\nCarolyn\nLoretta\nLucille\nAngelina\nLena\nConstance\nEsther\nLaura\nMarian\nEmma\nSylvia\nBertha\nCharlotte\nKathleen\nMartha\nEmily\nHazel\nIda\nJeanette\nVeronica\nMarguerite\nAngeline\nGeraldine\nPearl\nVivian\nMadeline\nNellie\nWanda\nEllen\nEva\nThelma\nVictoria\nWinifred\nAnita\nChristine\nKathryn\nBeverly\nCarmela\nJoyce\nMiriam\nAudrey\nConcetta\nHarriet\nArlene\nCaroline\nArline\nSarah\nVera\nAmelia\nRosemary\nSusan\nEunice\nAdele\nAlma\nJeannette\nJoan\nNatalie\nTeresa\nAdeline\nAnnette\nBlanche\nHilda\nMae\nCelia\nElinor\nIsabelle\nMarilyn\nPriscilla\nSally\nAngela\nDolores\nYolanda\nMarcia\nRegina\nCarmella\nDorothea\nFlora\nLeona\nOlive\nBette\nCarol\nCecile\nCecilia\nHelene\nViolet\nFilomena\nJudith\nLydia\nPhilomena\nStephanie\nCecelia\nElla\nEstelle\nHedwig\nIrma\nIsabel\nJessie\nMyrtle\nCarmel\nHope\nMargery\nMay\nRachel\nEleanore\nFaye\nInez\nJacqueline\nJanice\nMinnie\nRoberta\nRosalie\nAlyce\nAnnie\nDora\nFrieda\nHelena\nMabel\nSadie\nCarmelina\nCorinne\nFaith\nFannie\nHenrietta\nJohn\nJustine\nMatilda\nStacia\nSusie\nAmy\nConnie\nElvira\nEugenia\nNina\nRuby\nVerna\nWilma\nAda\nAlberta\nAlbina\nBessie\nCamille\nEdythe\nGeorgia\nGeorgianna\nHarriett\nJenny\nJohanna\nJulie\nKatharine\nLila\nMadeleine\nMadelyn\nMaryjane\nRena\nRhoda\nYvonne\nAlthea\nBernadette\nCarrie\nEve\nGeorgette\nGilda\nLeah\nMaria\nMaryann\nNaomi\nNettie\nSantina\nSelma\nAnnamae\nAntonette\nCarmen\nCora\nDiana\nElena\nEmilie\nErma\nFay\nGeneva\nIsabella\nJayne\nLenore\nMarcella\nMarianna\nMerle\nPalma\nRosalyn\nSabina\nShirlee\nTessie\nTherese\nMary\nHelen\nDorothy\nMargaret\nShirley\nRuth\nFrances\nElizabeth\nAnna\nEleanor\nRose\nMarie\nJean\nJosephine\nEvelyn\nDoris\nBarbara\nFlorence\nVirginia\nIrene\nMarion\nLillian\nMildred\nJane\nAnn\nAlice\nRita\nGloria\nCatherine\nMarjorie\nBetty\nAnne\nGrace\nPhyllis\nJennie\nLouise\nJulia\nTheresa\nLucy\nClaire\nEdith\nGertrude\nLois\nNancy\nBeatrice\nMuriel\nPatricia\nAgnes\nPauline\nEdna\nAntoinette\nJanet\nSophie\nElsie\nGladys\nKatherine\nBertha\nGenevieve\nLucille\nNorma\nStella\nLorraine\nBernice\nLena\nEthel\nJune\nLaura\nOlga\nEsther\nCharlotte\nMartha\nElaine\nEileen\nMarian\nConstance\nMadeline\nAngelina\nJeanne\nMarguerite\nEmma\nRosemary\nClara\nGeraldine\nPearl\nJoan\nKathleen\nSylvia\nIda\nVera\nHarriet\nHazel\nThelma\nEmily\nNellie\nWanda\nCarmella\nCaroline\nJoyce\nViola\nBeverly\nEllen\nJeanette\nMarilyn\nLoretta\nCarolyn\nMiriam\nAdeline\nAmelia\nAudrey\nDolores\nEva\nJeannette\nPhilomena\nArlene\nCecelia\nJanice\nRoberta\nVeronica\nAngeline\nAnita\nChristine\nConcetta\nSarah\nViolet\nVivian\nArline\nCarol\nKathryn\nNatalie\nRegina\nWinifred\nBlanche\nEunice\nSally\nAdele\nCarmela\nSusan\nEstelle\nHilda\nLydia\nMabel\nPriscilla\nTeresa\nYolanda\nCelia\nElla\nRosalie\nAngela\nIsabel\nAnnette\nElinor\nJacqueline\nLeona\nMyrtle\nOlive\nVictoria\nCecilia\nFlora\nAlma\nBessie\nBette\nConnie\nIsabelle\nMae\nSara\nSelma\nStephanie\nAlberta\nCarmel\nEugenia\nJessie\nMargery\nNora\nSusie\nTheodora\nIrma\nRosemarie\nAnnie\nCorinne\nDorothea\nEleanore\nElvira\nFilomena\nGeorgia\nHenrietta\nNina\nRachel\nRhoda\nRuby\nAda\nCecile\nErnestine\nHelena\nJulie\nMadeleine\nMinnie\nWilma\nYvonne\nAlthea\nCorrine\nDora\nFaith\nHelene\nJudith\nMay\nMillicent\nTessie\nAlyce\nBernadette\nFannie\nGeorgette\nHedwig\nIsabella\nJayne\nMarcia\nMaria\nMarianna\nMaxine\nMonica\nRobert\nAlfreda\nCarmelina\nCarrie\nClaudia\nCynthia\nEdythe\nElinore\nElisabeth\nElvera\nFern\nHarriett\nInez\nJenny\nJohanna\nLila\nMafalda\nMolly\nNettie\nRena\nRoslyn\nSadie\nStacia\nTina\nUrsula\nAlbina\nAmy\nAnastasia\nArleen\nBella\nBeulah\nClare\nDawn\nEdwina\nElsa\nEvangeline\nFreda\nGwendolyn\nHannah\nHope\nJustine\nKay\nLeah\nLenora\nLenore\nLucia\nMamie\nMarcella\nMarjory\nMaryjane\nMatilda\nMaureen\nPalma\nRuthe\nVincenza\nMary\nHelen\nDorothy\nMargaret\nElizabeth\nRuth\nShirley\nAnna\nBarbara\nEleanor\nJean\nRose\nDoris\nIrene\nFrances\nGloria\nMarie\nFlorence\nJosephine\nVirginia\nMarion\nMildred\nLillian\nEvelyn\nAlice\nBetty\nRita\nAnn\nMarjorie\nJane\nCatherine\nTheresa\nLouise\nAnne\nPhyllis\nLucille\nLorraine\nGrace\nLois\nJennie\nPauline\nJoan\nPatricia\nNancy\nEdith\nBeatrice\nGenevieve\nMuriel\nJanet\nAntoinette\nJune\nLucy\nJeanne\nJulia\nGladys\nSophie\nGertrude\nEthel\nKatherine\nAgnes\nMarian\nStella\nBernice\nNorma\nElsie\nElaine\nArlene\nEileen\nMartha\nBertha\nEsther\nCharlotte\nHarriet\nAudrey\nConstance\nAngelina\nJeannette\nClaire\nLena\nLaura\nMarguerite\nOlga\nRosemary\nCarmella\nEmily\nEva\nClara\nEdna\nThelma\nBeverly\nGeraldine\nPriscilla\nSylvia\nTeresa\nViola\nAnita\nArline\nCarmela\nEunice\nHazel\nMarilyn\nVera\nKathleen\nMadeline\nCarolyn\nIda\nVictoria\nCaroline\nChristine\nEllen\nJoyce\nLoretta\nCarol\nConcetta\nJanice\nNellie\nSally\nVeronica\nVivian\nJeanette\nAngeline\nJacqueline\nAdele\nAmelia\nNatalie\nRegina\nSusan\nViolet\nWanda\nYolanda\nDolores\nBlanche\nElinor\nKathryn\nWinifred\nEstelle\nPearl\nPhilomena\nAdeline\nAngela\nAnnette\nMae\nRoberta\nCecilia\nCelia\nEmma\nHenrietta\nMabel\nSarah\nHelene\nIsabel\nRosalie\nAlma\nBessie\nEleanore\nLydia\nCarmel\nCecelia\nDorothea\nIrma\nMaria\nMiriam\nAnnie\nRosemarie\nVerna\nDora\nHilda\nLeona\nMyrtle\nOlive\nRena\nRhoda\nAlberta\nElla\nJessie\nRachel\nJudith\nAdelaide\nCorinne\nLenore\nMadelyn\nPeggy\nAlbina\nElvira\nFannie\nIsabelle\nJustine\nMarcia\nMay\nMillicent\nRosina\nRuby\nSara\nValerie\nWilma\nYvonne\nAlyce\nBernadette\nBette\nCora\nEdythe\nErnestine\nFlora\nJacquelyn\nJohn\nMadeleine\nMarcella\nNora\nRosa\nSadie\nSelma\nSheila\nStephanie\nSusie\nAlda\nAmy\nBetsy\nCarmelina\nCecile\nEvangeline\nFaith\nFilomena\nGeorgette\nHope\nInez\nMatilda\nMollie\nRosalind\nSantina\nShirlee\nSuzanne\nWilliam\nAda\nAldona\nAlfreda\nAngie\nAnnabelle\nAntonette\nConnie\nCynthia\nDelia\nEloise\nFrancis\nFreda\nGwendolyn\nHelena\nJayne\nJoy\nJuanita\nLeatrice\nLee\nLorna\nMaude\nMaxine\nMinnie\nNaomi\nNoreen\nPalma\nPaula\nPenelope\nRobert\nMary\nDorothy\nHelen\nShirley\nBarbara\nRuth\nMargaret\nJean\nElizabeth\nAnna\nRose\nDoris\nFrances\nEleanor\nIrene\nMarie\nVirginia\nTheresa\nJosephine\nFlorence\nGloria\nAlice\nBetty\nLillian\nRita\nMarion\nMildred\nAnn\nJane\nEvelyn\nLois\nMarjorie\nCatherine\nLorraine\nPhyllis\nLouise\nAnne\nPatricia\nNancy\nGrace\nJennie\nJoan\nGertrude\nJune\nEdith\nElaine\nGladys\nLucille\nAntoinette\nJeanne\nBeatrice\nNorma\nKatherine\nJulia\nBernice\nLucy\nMuriel\nClaire\nElsie\nMarilyn\nEthel\nKathleen\nJoyce\nBertha\nPauline\nSylvia\nBeverly\nStella\nEdna\nGenevieve\nSophie\nAgnes\nDolores\nHarriet\nMarguerite\nMartha\nLaura\nArlene\nAudrey\nEileen\nEsther\nJacqueline\nJanet\nMarian\nAngelina\nClara\nConstance\nOlga\nCharlotte\nEmily\nLena\nCarolyn\nGeraldine\nRosemary\nJeanette\nEllen\nEva\nTeresa\nBlanche\nEunice\nPearl\nWanda\nCarmela\nCarmella\nIda\nSally\nVictoria\nArline\nCaroline\nEmma\nMadeline\nRosalie\nTherese\nViola\nKathryn\nThelma\nAngeline\nCarol\nJanice\nLoretta\nNatalie\nSarah\nSusan\nVivian\nAmelia\nAnnette\nConcetta\nPriscilla\nRegina\nChristine\nEstelle\nJeannette\nViolet\nAngela\nAnita\nJudith\nLeona\nRosemarie\nVera\nAlma\nCecelia\nPhilomena\nYolanda\nAdeline\nAdele\nAlberta\nElinor\nHazel\nIrma\nMabel\nVeronica\nWinifred\nDorothea\nRoberta\nCecilia\nFlora\nCorinne\nElvira\nHilda\nMaria\nOlive\nAlthea\nCynthia\nIsabel\nIsabelle\nJessie\nMarcia\nMiriam\nSuzanne\nBessie\nBette\nCelia\nHenrietta\nJohn\nLydia\nMay\nNellie\nAda\nCecile\nConnie\nDiana\nEleanore\nGwendolyn\nLenore\nMargery\nMatilda\nMyrtle\nPeggy\nSara\nAmy\nFannie\nHarriett\nHelene\nAnnie\nBernadette\nCarmelina\nElla\nGeorgette\nJoy\nLila\nMae\nMolly\nRhoda\nStephanie\nFaye\nFilomena\nGene\nHope\nJenny\nJoseph\nLinda\nMadelyn\nMamie\nMaryjane\nMillie\nMinnie\nNaomi\nRachel\nSelma\nYvonne\nAlbina\nAntonette\nDaisy\nElena\nElva\nFaith\nLee\nMarcella\nMollie\nNina\nPalma\nSue\nTessie\nVincenza\nWilma\nAlyce\nBeryl\nChristina\nCorrine\nEdythe\nEffie\nErnestine\nFanny\nGeorgia\nGeorgiana\nGilda\nHedwig\nJoann\nJoanne\nKatharine\nLucia\nMarjory\nMaureen\nMaxine\nMillicent\nMonica\nNettie\nPhoebe\nRenee\nSadie\nSandra\nSheila\nSusie\nVerna\nMary\nDorothy\nHelen\nBarbara\nShirley\nJean\nMargaret\nElizabeth\nRuth\nAnna\nMarie\nTheresa\nRose\nDoris\nFrances\nIrene\nFlorence\nVirginia\nEleanor\nMarion\nEvelyn\nJosephine\nGloria\nAlice\nBetty\nLillian\nLorraine\nPatricia\nJane\nLois\nMildred\nAnn\nRita\nCatherine\nJoan\nPhyllis\nNancy\nAnne\nLouise\nMarjorie\nBeverly\nGrace\nJune\nLucille\nMarilyn\nNorma\nJennie\nPauline\nDolores\nJeanne\nBeatrice\nClaire\nEdith\nAntoinette\nEthel\nGladys\nLucy\nAgnes\nJanet\nJoyce\nKatherine\nGenevieve\nMartha\nAudrey\nGertrude\nCharlotte\nJulia\nSophie\nElaine\nHarriet\nEsther\nGeraldine\nMarguerite\nMuriel\nMadeline\nBernice\nElsie\nEdna\nJacqueline\nArlene\nEllen\nConstance\nKathleen\nBlanche\nLena\nRosemary\nTeresa\nAngelina\nCarolyn\nPriscilla\nSylvia\nAnita\nCarmella\nEmily\nLaura\nStella\nViola\nCaroline\nEileen\nHazel\nJeanette\nJeannette\nVivian\nCarol\nLoretta\nPearl\nChristine\nClara\nEunice\nOlga\nRoberta\nVeronica\nWanda\nMarian\nAngeline\nWinifred\nAdele\nArline\nBertha\nCarmela\nElinor\nEva\nJanice\nNatalie\nIda\nKathryn\nNellie\nRegina\nSally\nThelma\nVera\nYolanda\nConcetta\nGilda\nAdeline\nAngela\nFlora\nJessie\nSusan\nTherese\nViolet\nAnnette\nCorinne\nMaria\nSarah\nBessie\nCecile\nConnie\nErnestine\nMiriam\nPhilomena\nRosalie\nCecilia\nEmma\nEstelle\nGeorgette\nHenrietta\nLeona\nSelma\nAlberta\nDorothea\nInez\nJoanne\nMae\nSuzanne\nVictoria\nAlma\nCynthia\nHelene\nIrma\nIsabelle\nJudith\nMabel\nMay\nMyrtle\nAmelia\nAnnie\nCecelia\nHilda\nJohn\nRachel\nRosemarie\nSusie\nCelia\nElvira\nIsabel\nOlive\nRena\nValerie\nWilliam\nBetsy\nBeverley\nCarmelina\nClare\nDora\nGeorgia\nHelena\nMadelyn\nMaureen\nNaomi\nPeggy\nAdrienne\nBernadette\nFaith\nLeatrice\nMinnie\nRobert\nRosalind\nRosina\nRuby\nSadie\nSara\nVilma\nWilma\nAda\nAdelaide\nAvis\nBeryl\nBette\nEleanore\nFilomena\nFrieda\nGwendolyn\nJacquelyn\nJustine\nLenore\nLydia\nMarcia\nMatilda\nNina\nRhoda\nTheodora\nVerna\nYvette\nAlbina\nAlthea\nAntonette\nCarmel\nCarrie\nCora\nCorrine\nEdythe\nElise\nElvera\nEugenia\nGeorgianna\nGermaine\nJohanna\nJoseph\nLucia\nLucretia\nMafalda\nMargery\nMavis\nNora\nRosa\nStephanie\nMary\nDorothy\nBarbara\nHelen\nShirley\nJean\nMargaret\nElizabeth\nRuth\nFrances\nMarie\nDoris\nLorraine\nEleanor\nTheresa\nIrene\nRose\nAnna\nPatricia\nFlorence\nMarion\nAlice\nBetty\nGloria\nJosephine\nEvelyn\nJoan\nVirginia\nAnn\nNancy\nCatherine\nJane\nLois\nRita\nDolores\nLillian\nMildred\nPhyllis\nLouise\nMarjorie\nAnne\nGrace\nJune\nLucille\nEdith\nBeverly\nNorma\nBeatrice\nMarilyn\nClaire\nGertrude\nJeanne\nJoyce\nPauline\nJennie\nJanet\nAntoinette\nCarol\nElaine\nAgnes\nAudrey\nLucy\nBernice\nGladys\nKatherine\nElsie\nJulia\nEthel\nMarian\nMartha\nCharlotte\nEileen\nClara\nJacqueline\nKathleen\nRosemary\nConstance\nEdna\nGenevieve\nMuriel\nAngelina\nLaura\nJanice\nSally\nSophie\nTeresa\nVivian\nCarolyn\nGeraldine\nMadeline\nOlga\nArlene\nEsther\nCarmela\nJeanette\nLoretta\nRosemarie\nSylvia\nTherese\nAnita\nEllen\nEmily\nJeannette\nCaroline\nPearl\nPriscilla\nThelma\nArline\nBertha\nBlanche\nMarguerite\nNatalie\nRoberta\nViolet\nWanda\nAnnette\nChristine\nEmma\nAngeline\nConcetta\nMae\nSarah\nViola\nDelores\nSelma\nSusan\nVera\nVeronica\nEva\nHarriet\nHazel\nStella\nEstelle\nJudith\nKathryn\nDiane\nEunice\nOlive\nAlberta\nAngela\nCarmella\nIrma\nCelia\nIda\nJessie\nJoanne\nLena\nMaria\nNellie\nRosalie\nWinifred\nBessie\nCecelia\nHenrietta\nIsabelle\nLeona\nLydia\nMaureen\nVictoria\nElinor\nJulie\nMabel\nMarcia\nMiriam\nNina\nYolanda\nAdele\nAdeline\nBette\nCarmel\nCecile\nElla\nRhoda\nYvette\nAlma\nBernadette\nCorinne\nCynthia\nDorothea\nMyrtle\nPhilomena\nTheodora\nAmelia\nBetsy\nFaith\nHilda\nIsabel\nNaomi\nPeggy\nRamona\nRegina\nSuzanne\nAlyce\nCarmelina\nEleanore\nElvira\nEugenia\nGeorgia\nHelene\nJustine\nLila\nMargery\nPaula\nSheila\nVilma\nWilliam\nWilma\nFilomena\nFrieda\nGlenna\nHelena\nJohanna\nLinda\nLoraine\nMaryann\nMatilda\nMinnie\nPalma\nRachel\nSara\nYvonne\nAda\nAdelaide\nAnnie\nCecilia\nCora\nFreda\nGilda\nInez\nIsabella\nJacquelyn\nLorna\nMarianne\nMaxine\nMay\nRae\nRena\nRosalind\nRoslyn\nRuby\nSonia\nStephanie\nAileen\nDiana\nDora\nFay\nGeorgette\nJuliette\nLenore\nMadeleine\nMadelyn\nMarcella\nMyra\nRobert\nSusie\nTessie\nVelma\nMary\nBarbara\nDorothy\nJean\nHelen\nElizabeth\nShirley\nMargaret\nDoris\nMarie\nEleanor\nLorraine\nRuth\nIrene\nDolores\nJoan\nAnna\nPatricia\nBetty\nFrances\nTheresa\nFlorence\nRose\nAnn\nMarion\nGloria\nRita\nJosephine\nLois\nEvelyn\nNancy\nAlice\nCatherine\nVirginia\nLouise\nJane\nLillian\nPhyllis\nBeverly\nMarilyn\nMarjorie\nMildred\nAnne\nCarol\nJoyce\nJanet\nAudrey\nJune\nJeanne\nElaine\nNorma\nClaire\nEdith\nLucille\nGrace\nRosemary\nGertrude\nPauline\nLucy\nAntoinette\nCharlotte\nKatherine\nMuriel\nSally\nJulia\nCarolyn\nGeraldine\nJacqueline\nBeatrice\nGladys\nEthel\nAgnes\nEllen\nEsther\nArlene\nJennie\nKathleen\nMadeline\nBernice\nGenevieve\nLoretta\nSophie\nVivian\nEileen\nHarriet\nLaura\nConstance\nClara\nMarian\nPriscilla\nJeannette\nOlga\nTeresa\nAngelina\nElsie\nMartha\nChristine\nJeanette\nCarmela\nEdna\nEmily\nSylvia\nAnita\nJanice\nPearl\nViola\nLeona\nRosemarie\nStella\nArline\nRegina\nRosalie\nBertha\nCarmella\nHazel\nJoanne\nMarguerite\nRoberta\nEunice\nIda\nSusan\nVera\nAnnette\nBlanche\nCynthia\nDiana\nEva\nWinifred\nMyrtle\nVictoria\nAmelia\nAngela\nConcetta\nLena\nSarah\nDiane\nMaria\nTherese\nAdele\nCaroline\nIsabelle\nMabel\nNatalie\nVeronica\nBette\nCorinne\nElinor\nIrma\nKathryn\nViolet\nAdeline\nAngeline\nDorothea\nEmma\nMarcia\nThelma\nWanda\nDelores\nElla\nJacquelyn\nJeannine\nJudith\nPhilomena\nCecelia\nFaith\nJessie\nKatharine\nLydia\nOlive\nYolanda\nBernadette\nBessie\nMadelyn\nMae\nMargery\nMatilda\nMiriam\nNellie\nRachel\nSuzanne\nAnnie\nCecilia\nConnie\nEstelle\nFay\nIsabel\nMaryann\nMaureen\nPeggy\nRhoda\nRobert\nYvonne\nAlma\nCamille\nFannie\nHelene\nHenrietta\nHilda\nJoseph\nJulie\nPamela\nRamona\nRuby\nSandra\nSelma\nSheila\nSue\nVilma\nBetsy\nCarmel\nCecile\nEdythe\nEleanore\nElvira\nGermaine\nHelena\nLila\nMarcella\nMarianne\nMyra\nNaomi\nNina\nNoreen\nVelma\nYvette\nAlthea\nAmy\nCarole\nCora\nCorrine\nDeborah\nDora\nEdward\nEloise\nEnid\nEugenia\nFilomena\nFlorine\nGeneva\nGeorgette\nGeorgia\nGilda\nGwendolyn\nLuella\nMarylou\nMaxine\nMay\nMinnie\nRoslyn\nSusie\nValerie\nWilliam\nWilma\nMary\nBarbara\nDorothy\nJoan\nJean\nShirley\nMargaret\nElizabeth\nHelen\nPatricia\nNancy\nMarie\nRuth\nDolores\nAnn\nEleanor\nDoris\nTheresa\nAnna\nBetty\nFrances\nLorraine\nIrene\nRose\nGloria\nLois\nJosephine\nEvelyn\nMarion\nRita\nVirginia\nAlice\nJane\nMarilyn\nPhyllis\nJanet\nFlorence\nLillian\nLouise\nJoyce\nBeverly\nCatherine\nMildred\nAnne\nJune\nMarjorie\nElaine\nJeanne\nLucille\nNorma\nClaire\nCarol\nGrace\nAudrey\nAntoinette\nPauline\nBeatrice\nKatherine\nBernice\nAgnes\nEdith\nJulia\nCarolyn\nGeraldine\nSally\nJacqueline\nArlene\nGertrude\nLucy\nJeanette\nAnita\nConstance\nRosemary\nGladys\nCharlotte\nElsie\nJanice\nVivian\nKathleen\nAngelina\nMadeline\nRoberta\nMarguerite\nMuriel\nHarriet\nMartha\nCaroline\nEllen\nEsther\nEthel\nJeannette\nMaureen\nSophie\nEileen\nGenevieve\nJoanne\nJudith\nStella\nViola\nAngela\nEdna\nJennie\nLoretta\nRosemarie\nCarmela\nConcetta\nMarian\nPearl\nEmily\nNatalie\nPriscilla\nSusan\nSylvia\nTeresa\nIda\nLaura\nVera\nHelene\nOlga\nSarah\nThelma\nBertha\nCarmella\nEva\nKathryn\nViolet\nAnnette\nChristine\nCynthia\nArline\nClara\nDelores\nElinor\nEstelle\nLena\nMaria\nRosalie\nWanda\nAmelia\nDiane\nMarcia\nPhilomena\nRegina\nCecile\nMiriam\nCecelia\nEunice\nMarianne\nTherese\nVeronica\nAngeline\nBlanche\nHelena\nJeannine\nLeona\nMaryann\nNellie\nVictoria\nAdeline\nAlberta\nDora\nElvira\nErnestine\nFlora\nHazel\nIna\nAlma\nAnnie\nBetsy\nCecilia\nCorinne\nDorothea\nEleanore\nElla\nKay\nLila\nLydia\nMae\nMatilda\nNaomi\nSelma\nSuzanne\nWilma\nYolanda\nAdelaide\nAdele\nAlthea\nDiana\nEmma\nGeorgette\nGreta\nHilda\nIsabelle\nJessie\nJoy\nJustine\nBernadette\nCelia\nCorrine\nDonna\nFannie\nGwendolyn\nIrma\nMadeleine\nMarcella\nMyrna\nMyrtle\nPaula\nPeggy\nRachel\nRhoda\nWilliam\nWinifred\nYvette\nAline\nBessie\nCarmel\nCarole\nFaith\nFaye\nFilomena\nGeorgia\nJacquelyn\nJulie\nJuliette\nOlive\nRae\nValerie\nVincenza\nYvonne\nBeryl\nBette\nCarmen\nColleen\nDoreen\nEloise\nGail\nIsabel\nJames\nJayne\nJoann\nJohanna\nJohn\nJoseph\nLaurel\nLinda\nMabel\nNina\nSheila\nStephanie\nSue\nMary\nBarbara\nJoan\nDorothy\nJean\nElizabeth\nHelen\nPatricia\nNancy\nMargaret\nShirley\nAnn\nLorraine\nBetty\nMarie\nDolores\nRuth\nFrances\nRose\nAnna\nIrene\nJoyce\nTheresa\nEleanor\nVirginia\nDoris\nGloria\nJanet\nEvelyn\nRita\nMarilyn\nMarion\nAlice\nLois\nJosephine\nJane\nCatherine\nLillian\nPhyllis\nCarol\nBeverly\nLouise\nClaire\nAnne\nJune\nGrace\nFlorence\nLucille\nElaine\nMarjorie\nMildred\nNorma\nPauline\nJeanne\nEdith\nJacqueline\nGeraldine\nAudrey\nAntoinette\nBeatrice\nCarolyn\nConstance\nArlene\nCharlotte\nGertrude\nSally\nJeanette\nLucy\nEthel\nKathleen\nKatherine\nAnita\nGladys\nLoretta\nMaureen\nRosemary\nJudith\nLaura\nSylvia\nBernice\nHarriet\nJanice\nEllen\nJeannette\nMarguerite\nJulia\nElsie\nMuriel\nRosemarie\nAgnes\nMarian\nVivian\nEileen\nGenevieve\nNatalie\nRoberta\nAngela\nClara\nEsther\nJennie\nMartha\nAngelina\nCynthia\nTeresa\nAdele\nJoanne\nIda\nSarah\nCarmella\nEva\nLena\nMarcia\nPeggy\nViolet\nConcetta\nEdna\nEmily\nEunice\nArline\nDiane\nEstelle\nMarlene\nRegina\nSusan\nVictoria\nFaith\nOlga\nStella\nSuzanne\nBertha\nCaroline\nChristine\nHazel\nViola\nAnnette\nBette\nLeona\nMadeline\nTherese\nYolanda\nDelores\nDora\nElinor\nKathryn\nMargery\nPriscilla\nSandra\nSophie\nThelma\nVeronica\nWinifred\nYvonne\nAdeline\nAlma\nBlanche\nConnie\nJoann\nMaryann\nRosalie\nSheila\nCarmela\nMarcella\nPhilomena\nRachel\nVera\nCecelia\nCecile\nDorothea\nEmma\nGwendolyn\nIrma\nJeannine\nNellie\nFlora\nGeorgianna\nIsabelle\nLenore\nMabel\nMarianne\nMyrtle\nNaomi\nValerie\nWanda\nAmelia\nAngeline\nBernadette\nClare\nDiana\nHelene\nHenrietta\nIsabel\nJoy\nLydia\nMaria\nMillicent\nMinnie\nNoreen\nVerna\nBeryl\nBessie\nCarole\nCorinne\nCorrine\nDeborah\nElvira\nJacquelyn\nJessie\nJulie\nNina\nOlive\nRobert\nSara\nSelma\nAlberta\nAnnie\nBetsy\nCarrie\nCecilia\nCora\nDoreen\nElla\nEloise\nErnestine\nGeorge\nGeorgette\nGeorgia\nHilda\nHope\nJustine\nLorna\nMargie\nMarylou\nMay\nOlympia\nPaula\nSue\nTheodora\nMary\nBarbara\nJoan\nDorothy\nPatricia\nJean\nMargaret\nElizabeth\nNancy\nHelen\nShirley\nDolores\nMarie\nRuth\nMarilyn\nAnn\nBetty\nLorraine\nEleanor\nRose\nBeverly\nDoris\nGloria\nJanet\nTheresa\nLois\nAnna\nAlice\nFrances\nIrene\nJoyce\nCarol\nCatherine\nMarion\nVirginia\nJane\nJune\nEvelyn\nLillian\nRita\nJosephine\nPhyllis\nFlorence\nAnne\nMarjorie\nElaine\nCarolyn\nLouise\nLucille\nAudrey\nClaire\nMildred\nJeanne\nConstance\nGrace\nNorma\nPauline\nMaureen\nSally\nGeraldine\nCharlotte\nEdith\nJacqueline\nJanice\nJeanette\nRosemarie\nSylvia\nEileen\nAntoinette\nArlene\nHarriet\nBernice\nJeannette\nKathleen\nLaura\nRoberta\nAnita\nBeatrice\nElsie\nMartha\nLoretta\nLucy\nEllen\nMarlene\nJudith\nSusan\nJoanne\nJulia\nGertrude\nRosemary\nDiane\nGenevieve\nGladys\nEthel\nKatherine\nTeresa\nVivian\nMadeline\nPriscilla\nAgnes\nAngela\nSandra\nAngelina\nArline\nCynthia\nEdna\nJennie\nMarian\nMaryann\nSarah\nNatalie\nKathryn\nRegina\nRosalie\nVeronica\nAnnette\nCarmela\nEmily\nCaroline\nCecile\nClara\nElinor\nHelene\nMarguerite\nSheila\nAlma\nFaith\nIrma\nViolet\nAdele\nCarole\nConnie\nDelores\nEsther\nHazel\nLena\nMuriel\nPearl\nSophie\nAmelia\nBlanche\nEva\nMarcia\nWanda\nWinifred\nBertha\nCarmella\nIda\nMabel\nMaria\nOlive\nPhilomena\nRhoda\nVera\nAngeline\nBetsy\nBette\nChristine\nDiana\nElla\nMae\nPeggy\nViola\nEunice\nIsabelle\nLeona\nLydia\nMaxine\nMiriam\nNaomi\nSuzanne\nValerie\nAdeline\nCecelia\nCecilia\nClare\nElvira\nGail\nHilda\nJessie\nJoy\nJulie\nOlga\nSue\nThelma\nAdrienne\nAlthea\nClaudette\nDorothea\nEmma\nEstelle\nJeannine\nJoann\nStella\nTherese\nYolanda\nYvonne\nCarmel\nConcetta\nDonna\nDoreen\nErnestine\nGeorgia\nGeorgianna\nHenrietta\nMargery\nMarianne\nMillicent\nMyrna\nRachel\nSondra\nVictoria\nAmy\nCamille\nCarla\nCornelia\nDawn\nDora\nFelicia\nGilda\nJacquelyn\nJoanna\nJuanita\nKaren\nLeah\nLinda\nLorna\nMarcella\nMarlyn\nNellie\nPaula\nPolly\nRobert\nStephanie\nYvette\nBarbara\nMary\nJoan\nPatricia\nDorothy\nNancy\nJean\nElizabeth\nAnn\nMargaret\nShirley\nJanet\nCarol\nMarie\nHelen\nLorraine\nRuth\nEleanor\nBetty\nFrances\nDolores\nLois\nMarilyn\nJoyce\nRose\nBeverly\nDoris\nTheresa\nIrene\nJane\nMarion\nJune\nVirginia\nAnna\nAlice\nGloria\nAnne\nEvelyn\nJosephine\nPhyllis\nMarjorie\nRita\nLucille\nFlorence\nLillian\nCatherine\nAudrey\nElaine\nJudith\nConstance\nLouise\nKathleen\nMaureen\nArlene\nClaire\nJacqueline\nGeraldine\nGrace\nSylvia\nMildred\nNorma\nSally\nJeanne\nCarolyn\nSandra\nJanice\nRosemary\nAntoinette\nCharlotte\nPauline\nJoanne\nMarlene\nBeatrice\nEllen\nPriscilla\nDiane\nEdith\nGertrude\nAgnes\nEileen\nLucy\nCarole\nCynthia\nEsther\nJeannette\nKatherine\nMarcia\nMaryann\nAnita\nLaura\nSusan\nElsie\nGladys\nLoretta\nBernice\nMartha\nMuriel\nRosemarie\nHarriet\nJeanette\nJulia\nVivian\nRoberta\nSheila\nEthel\nMarian\nSuzanne\nGail\nLeona\nMarguerite\nThelma\nCarmella\nCaroline\nClara\nEdna\nGenevieve\nJennie\nKathryn\nTeresa\nEmily\nFaith\nConnie\nNatalie\nAngela\nAngelina\nArline\nBlanche\nDiana\nElinor\nLena\nMiriam\nSarah\nAlma\nAmelia\nAnnette\nBette\nCorinne\nHelene\nJoann\nPearl\nPeggy\nAlberta\nCarmela\nConcetta\nHazel\nMadeline\nMarianne\nVictoria\nChristine\nEleanore\nEva\nIda\nJacquelyn\nMarylou\nRegina\nStella\nTherese\nWanda\nAdele\nEstelle\nJessie\nJudy\nMabel\nOlga\nRosalie\nVera\nWinifred\nBertha\nDonna\nDoreen\nGeorgia\nViolet\nAdrienne\nAngeline\nBetsy\nCecelia\nCecile\nDelores\nEmma\nEunice\nHope\nIrma\nJeannine\nMyrna\nNaomi\nValerie\nViola\nYvonne\nAlyce\nBernadette\nDorothea\nElla\nFay\nGreta\nGwendolyn\nIsabel\nMargery\nMaryjane\nMyrtle\nOlive\nPat\nVeronica\nYolanda\nAline\nCarmel\nCelia\nCora\nDeborah\nEdythe\nJayne\nJoy\nJuliette\nKaren\nLee\nLynn\nMae\nMatilda\nNoreen\nPamela\nPaula\nRachel\nRae\nRhoda\nSara\nSelma\nSophie\nWilma\nMary\nBarbara\nJoan\nPatricia\nDorothy\nJean\nNancy\nShirley\nAnn\nElizabeth\nCarol\nMarie\nMargaret\nJanet\nBeverly\nHelen\nBetty\nRuth\nLorraine\nEleanor\nFrances\nMarilyn\nDolores\nLois\nPhyllis\nGloria\nDoris\nJoyce\nRose\nJane\nVirginia\nAlice\nIrene\nElaine\nJudith\nTheresa\nFlorence\nMarion\nLillian\nAnna\nRita\nEvelyn\nJune\nArlene\nJanice\nCatherine\nLucille\nJosephine\nMarjorie\nJacqueline\nLouise\nNorma\nAnne\nKathleen\nSally\nAudrey\nEileen\nConstance\nSandra\nJoanne\nCarole\nCarolyn\nGeraldine\nMaureen\nSusan\nSylvia\nClaire\nGrace\nCynthia\nEdith\nKatherine\nCharlotte\nLoretta\nJeanne\nMildred\nAgnes\nAnita\nEllen\nMarlene\nMartha\nRoberta\nRosemarie\nHarriet\nPauline\nMarcia\nRosemary\nDiane\nLucy\nAnnette\nBernice\nEdna\nGail\nSuzanne\nGertrude\nLaura\nVivian\nClara\nJeannette\nAntoinette\nCaroline\nEthel\nGladys\nJeanette\nJulia\nMarguerite\nMaryann\nSheila\nBeatrice\nNatalie\nEsther\nKathryn\nAngela\nAngelina\nDiana\nEmily\nIda\nJennie\nJoann\nMarianne\nMuriel\nPriscilla\nConcetta\nEva\nFaith\nLinda\nRegina\nVictoria\nCarmela\nDelores\nGeorgia\nHelene\nMadeline\nMarian\nMarylou\nSarah\nViola\nAdele\nAngeline\nDonna\nElsie\nJacquelyn\nMaria\nValerie\nVeronica\nWanda\nArline\nBette\nDeborah\nLena\nMyrna\nPeggy\nTeresa\nViolet\nAlberta\nBertha\nEstelle\nHazel\nLeona\nOlga\nRosalie\nWilma\nBetsy\nCarmella\nChristine\nConnie\nGenevieve\nJoy\nMyrtle\nPearl\nStella\nWinifred\nBernadette\nBeverley\nBlanche\nCorinne\nDianne\nElinor\nEunice\nGeorgette\nIsabelle\nJohanna\nJulie\nLenore\nMargery\nMiriam\nRachel\nSophie\nAngie\nClaudette\nElla\nFay\nHilda\nInez\nJeannine\nMyra\nNan\nNoreen\nSara\nThelma\nYvonne\nAdelaide\nAdeline\nAnnie\nBessie\nCecelia\nCharlene\nCornelia\nDora\nElvira\nEmma\nFlora\nGwendolyn\nHope\nJudy\nLee\nLucia\nMae\nMarcella\nOlive\nSondra\nSue\nTherese\nBarbara\nMary\nJoan\nPatricia\nShirley\nDorothy\nNancy\nCarol\nJean\nMargaret\nAnn\nElizabeth\nJanet\nJudith\nBeverly\nEleanor\nLorraine\nDolores\nHelen\nMarie\nJoyce\nMarilyn\nLois\nFrances\nBetty\nElaine\nVirginia\nPhyllis\nRose\nIrene\nRuth\nAlice\nGloria\nMarion\nAnna\nAnne\nTheresa\nJane\nSandra\nDoris\nFlorence\nCatherine\nEvelyn\nMarjorie\nLucille\nJosephine\nAudrey\nClaire\nCarolyn\nJacqueline\nCarole\nGeraldine\nJoanne\nGail\nSally\nMaureen\nRita\nKathleen\nRoberta\nJanice\nJune\nArlene\nJeanne\nLouise\nGrace\nCharlotte\nCynthia\nLillian\nSusan\nEileen\nRosemary\nAnita\nDiane\nKatherine\nMarlene\nNorma\nPauline\nEdith\nJeannette\nLoretta\nMaryann\nMildred\nHarriet\nSheila\nSylvia\nJeanette\nConstance\nRosemarie\nEllen\nLucy\nBeatrice\nEsther\nLaura\nMartha\nGertrude\nClara\nDonna\nMarcia\nMarian\nVivian\nAnnette\nCaroline\nJudy\nPriscilla\nArline\nJulia\nGladys\nVeronica\nChristine\nKathryn\nMuriel\nCarmela\nLeona\nSarah\nAdrienne\nBernice\nBertha\nElsie\nGenevieve\nJacquelyn\nMadeline\nMarianne\nRosalie\nSuzanne\nAgnes\nAngela\nAntoinette\nCecile\nConcetta\nDiana\nNatalie\nYvonne\nAngelina\nEdna\nElinor\nEmily\nJoann\nLinda\nMarguerite\nMiriam\nVera\nAlberta\nClaudette\nConnie\nEthel\nHelene\nMarylou\nPaula\nAmelia\nBetsy\nBlanche\nCarmella\nClaudia\nDelores\nEdwina\nIda\nIrma\nLynn\nMyrna\nPeggy\nRegina\nSophie\nTeresa\nValerie\nBette\nCarmel\nIsabelle\nJoy\nLena\nMabel\nMae\nNora\nRhoda\nRoseann\nViolet\nWanda\nWinifred\nAdele\nDawn\nDoreen\nGeorgette\nGwendolyn\nHazel\nHope\nKatharine\nMargery\nMaxine\nOlga\nRachel\nSharon\nTherese\nVictoria\nViola\nYolanda\nAlma\nAngeline\nCecelia\nCharlene\nColleen\nEstelle\nFaith\nGayle\nIris\nJulie\nKaren\nLenore\nLydia\nLynne\nMarcella\nMaria\nMay\nMerle\nSondra\nSue\nUrsula\nWilliam\nAda\nBernadette\nCorinne\nDeborah\nDenise\nDixie\nDorothea\nEmma\nErnestine\nEva\nGeorgianna\nGretchen\nHenrietta\nJanis\nJeannine\nJennie\nJoanna\nJohanna\nJohn\nLee\nMaryellen\nMonica\nNellie\nNina\nPalma\nPearl\nRuby\nStella\nVerna\nBarbara\nMary\nJoan\nPatricia\nCarol\nShirley\nNancy\nDorothy\nMargaret\nElizabeth\nJean\nBeverly\nAnn\nMarilyn\nMarie\nJoyce\nLorraine\nJanet\nJudith\nHelen\nDolores\nElaine\nFrances\nEleanor\nPhyllis\nAlice\nRuth\nSandra\nLois\nGloria\nVirginia\nBetty\nRose\nJane\nGail\nMarion\nTheresa\nCarolyn\nIrene\nMarjorie\nRoberta\nLouise\nAnne\nDoris\nJacqueline\nEvelyn\nJanice\nAnna\nFlorence\nGeraldine\nLucille\nCatherine\nJune\nLillian\nSusan\nArlene\nRita\nJosephine\nKathleen\nAudrey\nCarole\nMaureen\nNorma\nJoanne\nClaire\nConstance\nCynthia\nSally\nCharlotte\nEileen\nSheila\nDiane\nEdith\nEllen\nGrace\nJeanne\nKatherine\nMarlene\nPauline\nSylvia\nAnita\nMarcia\nJeannette\nRosemarie\nBernice\nLoretta\nMartha\nRosemary\nHarriet\nJeanette\nMaryann\nArline\nGertrude\nSuzanne\nJudy\nLaura\nMildred\nAnnette\nJoann\nVivian\nBetsy\nChristine\nLinda\nAgnes\nAntoinette\nKathryn\nElsie\nJulia\nLucy\nMadeline\nRosalie\nCaroline\nEthel\nPriscilla\nVeronica\nAngela\nConnie\nDiana\nEsther\nMarguerite\nGenevieve\nAdrienne\nBeatrice\nDelores\nEdna\nPaula\nSarah\nYvonne\nAngelina\nEva\nGladys\nMarylou\nMuriel\nMyrna\nNatalie\nRegina\nValerie\nWinifred\nClara\nDonna\nHelene\nKay\nMarian\nMarianne\nNaomi\nSara\nTherese\nElinor\nEmily\nLeona\nThelma\nViola\nBertha\nBette\nCecile\nClaudette\nDawn\nEunice\nPeggy\nRobert\nVera\nVictoria\nAdele\nBeverley\nBlanche\nCarmela\nConcetta\nEleanore\nFlora\nHazel\nMabel\nMaria\nOlive\nRachel\nSharon\nStella\nWilma\nBrenda\nCecelia\nClaudia\nCora\nEstelle\nFaith\nGermaine\nHenrietta\nIda\nIsabelle\nJo\nJoy\nLynn\nMargery\nMerle\nMiriam\nNoreen\nAlberta\nAlma\nAmelia\nDeborah\nDenise\nGayle\nGeorgia\nGwendolyn\nJennie\nJoanna\nJuanita\nKaren\nLenore\nMatilda\nMyra\nPamela\nPat\nSondra\nStephanie\nTeresa\nAngeline\nAnnamae\nCamille\nCecilia\nClare\nCorinne\nDianne\nDorothea\nGeorgianna\nHarriett\nJacquelyn\nJeannine\nJessie\nJohanna\nMarcella\nMargie\nMaryanne\nMaryjane\nMyrtle\nNina\nRhoda\nRoseann\nSusanne\nBarbara\nMary\nPatricia\nJoan\nCarol\nNancy\nElizabeth\nShirley\nBeverly\nMargaret\nDorothy\nAnn\nJudith\nJean\nJoyce\nJanet\nMarie\nFrances\nHelen\nElaine\nSandra\nBetty\nMarilyn\nDolores\nGloria\nVirginia\nEleanor\nGail\nLorraine\nPhyllis\nAlice\nJane\nTheresa\nRose\nRuth\nJanice\nKathleen\nMaureen\nCarolyn\nAnne\nLois\nIrene\nCatherine\nDiane\nJosephine\nLouise\nDoris\nMarjorie\nArlene\nRoberta\nSusan\nCarole\nJune\nFlorence\nGeraldine\nLucille\nSheila\nLillian\nJacqueline\nRita\nSally\nAudrey\nMaryann\nGrace\nLinda\nMarion\nAnna\nAnnette\nJoanne\nKatherine\nEvelyn\nMarcia\nConstance\nEllen\nCharlotte\nEileen\nRosemary\nMarlene\nMartha\nAntoinette\nLoretta\nSylvia\nJeanne\nRosemarie\nBeatrice\nCynthia\nJudy\nClaire\nDiana\nDonna\nPauline\nGertrude\nJulia\nBernice\nAnita\nJeanette\nNorma\nJeannette\nLaura\nMildred\nEdith\nEdna\nSarah\nSuzanne\nVivian\nEmily\nGenevieve\nGladys\nHarriet\nRosalie\nAngela\nCaroline\nMarguerite\nMuriel\nEthel\nLucy\nMadeline\nPaula\nPriscilla\nArline\nChristine\nYvonne\nAgnes\nBette\nElsie\nJoann\nKathryn\nMarianne\nBetsy\nMarian\nRegina\nAngelina\nClara\nKay\nMaria\nDelores\nEstelle\nFaith\nHenrietta\nKaren\nLeona\nMarylou\nValerie\nDeborah\nEunice\nFay\nSharon\nTeresa\nThelma\nVeronica\nCarmel\nConnie\nDawn\nElinor\nEsther\nHazel\nHelene\nMyrna\nVera\nAlberta\nCecile\nClaudette\nConcetta\nCorrine\nDenise\nDianne\nJennie\nJoanna\nJuanita\nLenore\nLynn\nLynne\nPeggy\nRachel\nRosalind\nSara\nWinifred\nAdrienne\nBertha\nBonnie\nCarmella\nCornelia\nDeanna\nDoreen\nEleanore\nGwendolyn\nIda\nJacquelyn\nJeannine\nMadelyn\nMiriam\nPenelope\nPhilomena\nRochelle\nRoseann\nSue\nTheodora\nVictoria\nAdele\nAdeline\nAlma\nBlanche\nClaudia\nFaye\nGayle\nGermaine\nHelena\nMabel\nMaryjane\nNatalie\nPamela\nViolet\nWendy\nYolanda\nAdelaide\nAmelia\nAndrea\nBernadette\nCamille\nCecelia\nDorothea\nElsa\nEva\nHilda\nJessie\nMarcella\nMarsha\nMillicent\nMona\nMyrtle\nNoreen\nOlga\nPolly\nSimone\nSusanne\nVerna\nWilma\nBarbara\nPatricia\nMary\nCarol\nJoan\nJudith\nNancy\nDorothy\nAnn\nElizabeth\nMargaret\nSandra\nBeverly\nJoyce\nShirley\nJean\nElaine\nMarilyn\nGail\nJanet\nMarie\nEleanor\nFrances\nBetty\nLorraine\nCarolyn\nVirginia\nHelen\nPhyllis\nTheresa\nAnne\nJanice\nRuth\nDolores\nSusan\nRose\nJane\nMaureen\nAlice\nIrene\nKathleen\nLois\nMarion\nGloria\nArlene\nCatherine\nDiane\nRosalie\nJacqueline\nJoanne\nLouise\nMaryann\nRoberta\nLucille\nDonna\nLinda\nCarole\nEvelyn\nEllen\nJosephine\nJudy\nAnna\nDoris\nRita\nJune\nSally\nSheila\nClaire\nCynthia\nFlorence\nCharlotte\nGeraldine\nAnita\nMarjorie\nGrace\nSylvia\nAudrey\nRosemary\nMarcia\nKatherine\nLillian\nEileen\nJeanne\nLoretta\nAnnette\nHarriet\nRosemarie\nSuzanne\nDiana\nJeanette\nPriscilla\nKaren\nNorma\nSharon\nConstance\nMarlene\nMartha\nPaula\nBeatrice\nValerie\nKathryn\nMildred\nGertrude\nLaura\nMarian\nEdith\nPauline\nChristine\nLucy\nTeresa\nJeannette\nJulia\nBernice\nDeanna\nElsie\nEsther\nMadeline\nMuriel\nYvonne\nAngela\nJoy\nMarylou\nAntoinette\nBrenda\nLeona\nCarmella\nCaroline\nJoann\nMarguerite\nMarianne\nAgnes\nBette\nClara\nEmily\nEthel\nSarah\nVictoria\nFaith\nGladys\nHazel\nLynn\nLynne\nNatalie\nAlberta\nDenise\nEdna\nPeggy\nDeborah\nDelores\nElinor\nJoanna\nMaria\nMyrna\nPamela\nRegina\nSara\nSonja\nAlma\nAnnmarie\nArline\nBeth\nConcetta\nEstelle\nGretchen\nHenrietta\nMiriam\nPhilomena\nRhoda\nAngelina\nCarmela\nClaudette\nClaudia\nConnie\nGwendolyn\nKay\nLydia\nThelma\nVivian\nAdrienne\nBertha\nBetsy\nGayle\nGeorgette\nJacquelyn\nJennie\nJulie\nJustine\nLenore\nMargo\nNellie\nNoreen\nStella\nVeronica\nAdele\nAmelia\nBessie\nBlanche\nDale\nDianne\nEdwina\nElla\nEva\nFay\nGenevieve\nGeorgia\nIda\nJessie\nKatharine\nLee\nMaryanne\nMaxine\nPolly\nRoseann\nSue\nWanda\nWilma\nAlison\nAndrea\nBetsey\nCecile\nCeleste\nCorinne\nEmma\nGwen\nHolly\nHope\nJayne\nJill\nJuanita\nLaurel\nMadelyn\nMargery\nMarietta\nMarsha\nMarylyn\nMyra\nNaomi\nPenelope\nRebecca\nRosalind\nRosanne\nSophie\nSusanne\nTherese\nYolanda\nBarbara\nPatricia\nMary\nJudith\nCarol\nJoan\nNancy\nMargaret\nElizabeth\nSandra\nDorothy\nAnn\nJoyce\nBeverly\nJean\nJanet\nLinda\nMarie\nMarilyn\nElaine\nSusan\nFrances\nShirley\nBetty\nGail\nVirginia\nLorraine\nEleanor\nJudy\nHelen\nCarolyn\nPhyllis\nRuth\nAnne\nAlice\nArlene\nDiane\nJanice\nKathleen\nDonna\nJane\nDolores\nGeraldine\nRose\nSally\nIrene\nLouise\nMarion\nJoanne\nMaureen\nJacqueline\nCarole\nCynthia\nLucille\nCatherine\nJosephine\nJune\nSheila\nGloria\nLois\nMaryann\nTheresa\nEllen\nEvelyn\nKatherine\nMartha\nPriscilla\nAnna\nRosemary\nKaren\nMarjorie\nRoberta\nBrenda\nMarcia\nLillian\nLoretta\nRita\nCharlotte\nGrace\nEdith\nFlorence\nJeanne\nAnita\nClaire\nEileen\nRosemarie\nConstance\nJeannette\nMarlene\nAudrey\nChristine\nDoris\nJoann\nNorma\nMildred\nDiana\nSylvia\nValerie\nJeanette\nPauline\nSuzanne\nAnnette\nRosalie\nBernice\nKathryn\nHarriet\nLaura\nLynn\nAngela\nAntoinette\nGladys\nMarguerite\nPaula\nAgnes\nBeatrice\nSharon\nFaith\nJulia\nSarah\nBetsy\nCaroline\nLucy\nLynne\nMadeline\nNatalie\nAdrienne\nMarian\nYvonne\nAndrea\nArline\nEdna\nElsie\nGenevieve\nMarylou\nTeresa\nVivian\nAlberta\nCecile\nClara\nClaudia\nDeborah\nDelores\nEsther\nJohanna\nLeona\nNoreen\nPeggy\nVictoria\nCorinne\nDenise\nDianne\nGay\nHazel\nJoy\nJuanita\nMaria\nMaxine\nMiriam\nRosalind\nSara\nWendy\nBernadette\nBette\nBonnie\nCamille\nDeanna\nEthel\nEva\nMarsha\nRachel\nRegina\nAdele\nAlma\nAmelia\nCarmel\nCarolann\nConnie\nDawn\nEmily\nGayle\nHenrietta\nMadelyn\nMargo\nMarianne\nNina\nPearl\nPenelope\nWilma\nBertha\nCarmela\nDale\nDoreen\nEdwina\nGretchen\nHelene\nJacquelyn\nKay\nMaryanne\nMuriel\nPamela\nTheodora\nWanda\nBeth\nCarmella\nCecelia\nConcetta\nCornelia\nGeorgia\nHelena\nIna\nInez\nJennie\nJoanna\nLeslie\nMabel\nMadeleine\nMonica\nRoseann\nVera\nAnnmarie\nBlanche\nCharlene\nChristina\nColleen\nDorothea\nElvira\nEmma\nEstelle\nEunice\nGeorgianna\nGertrude\nJeannine\nJill\nJulie\nJustine\nLaurel\nLena\nLenora\nLenore\nLydia\nMargery\nMaryellen\nMyra\nPat\nRebecca\nRhoda\nSusanne\nTherese\nVeronica\nViola\nPatricia\nBarbara\nMary\nJudith\nCarol\nJoan\nNancy\nSandra\nMargaret\nLinda\nElizabeth\nJoyce\nJean\nAnn\nSusan\nDorothy\nMarie\nBeverly\nFrances\nJanet\nJanice\nMarilyn\nShirley\nVirginia\nElaine\nKathleen\nGail\nCarolyn\nJane\nJoanne\nHelen\nPhyllis\nGeraldine\nDiane\nRuth\nBetty\nLorraine\nLois\nDolores\nEleanor\nJudy\nMaureen\nCynthia\nRosemary\nGloria\nTheresa\nDonna\nDoris\nArlene\nJune\nAnne\nRose\nKaren\nMaryann\nAlice\nCatherine\nBrenda\nJosephine\nLouise\nMarion\nCarole\nJacqueline\nMarcia\nRoberta\nSally\nEvelyn\nLucille\nIrene\nRita\nSheila\nEllen\nPriscilla\nAnna\nMarjorie\nMartha\nFlorence\nAnita\nSuzanne\nLoretta\nSharon\nKatherine\nLillian\nMildred\nRosemarie\nCharlotte\nConstance\nJoann\nRosalie\nEileen\nPauline\nValerie\nAnnette\nDiana\nSylvia\nClaire\nSarah\nAudrey\nChristine\nBeatrice\nJulia\nAngela\nBonnie\nJeanne\nMarlene\nGrace\nHarriet\nLynn\nPaula\nBernice\nBetsy\nLaura\nCaroline\nDenise\nDianne\nAntoinette\nEsther\nGladys\nKathryn\nLucy\nNorma\nJeannette\nMadeline\nVivian\nDeanna\nEdith\nEdna\nFaith\nGertrude\nJeanette\nJoy\nMarianne\nRegina\nSara\nSue\nAndrea\nElsie\nLynne\nMarguerite\nPamela\nPeggy\nAlberta\nJulie\nTeresa\nConnie\nDawn\nHelene\nIda\nLeona\nMargo\nClaudia\nDarlene\nDoreen\nEmily\nEthel\nEunice\nGay\nMaria\nMaryjane\nVeronica\nAgnes\nCecile\nDeborah\nElinor\nLynda\nMarylou\nNatalie\nPenelope\nAdele\nAlma\nCamille\nCarmel\nClara\nGeorgianna\nJo\nMuriel\nNoreen\nRochelle\nWendy\nArline\nBertha\nCharlene\nGale\nGayle\nGeorgia\nGwendolyn\nJacquelyn\nMarian\nMarsha\nMyrna\nPat\nSusanne\nWanda\nWilliam\nWinifred\nYvonne\nBernadette\nBette\nClaudette\nDorothea\nEva\nIsabel\nJayne\nJohanna\nJustine\nKatharine\nLaurel\nLenore\nMadeleine\nMaryellen\nMiriam\nNina\nPaulette\nRachel\nTerry\nViola\nAdelaide\nAdrienne\nAnnie\nCarmela\nCarmella\nCarolann\nCarolee\nCornelia\nDelores\nDora\nEleanore\nElla\nEmma\nEugenia\nFay\nFaye\nHazel\nIna\nJennie\nKay\nLana\nLeah\nLeslie\nMabel\nMadelyn\nMargery\nMargie\nMargot\nMaxine\nMelinda\nMichelle\nMyrtle\nNaomi\nPhilomena\nRena\nRhoda\nRoseann\nStella\nSybil\nTheodora\nVerna\nVivien\nPatricia\nBarbara\nMary\nJudith\nCarol\nJoan\nSandra\nNancy\nLinda\nMargaret\nSusan\nJoyce\nElizabeth\nElaine\nDorothy\nAnn\nJean\nBeverly\nCarolyn\nMarilyn\nDiane\nJanet\nMarie\nVirginia\nGail\nFrances\nKathleen\nJanice\nShirley\nKaren\nDonna\nJoanne\nPhyllis\nJudy\nDolores\nCarole\nCynthia\nJane\nLorraine\nBetty\nGeraldine\nCatherine\nJoann\nGloria\nHelen\nRuth\nMaureen\nLois\nLouise\nEleanor\nArlene\nTheresa\nMartha\nMaryann\nRita\nRose\nAlice\nSally\nJacqueline\nEllen\nIrene\nKatherine\nDoris\nSharon\nAnne\nJosephine\nLucille\nJeanne\nMarion\nRosemary\nRoberta\nMarjorie\nPriscilla\nMarcia\nBonnie\nSheila\nChristine\nEvelyn\nJune\nEileen\nAnna\nDiana\nCharlotte\nConstance\nPamela\nFlorence\nKathryn\nSuzanne\nGrace\nLillian\nAnita\nAnnette\nLoretta\nHarriet\nPaula\nSylvia\nDeborah\nRosemarie\nClaire\nBrenda\nJeannette\nLynn\nMildred\nPauline\nValerie\nLynne\nRosalie\nMarianne\nAntoinette\nAngela\nDianne\nNorma\nCaroline\nPeggy\nVivian\nBernice\nBetsy\nMuriel\nNoreen\nSarah\nArline\nAudrey\nGladys\nJeanette\nLaura\nLucy\nMadeline\nMarian\nMarlene\nMarylou\nEdith\nElsie\nJulia\nVictoria\nBeatrice\nCharlene\nEthel\nFaith\nMarguerite\nMaria\nPenelope\nSara\nAgnes\nEdna\nLeslie\nBette\nEmily\nGertrude\nHelene\nSusanne\nClaudia\nDale\nJulie\nLeona\nMaryjane\nRegina\nSue\nVeronica\nWinifred\nAndrea\nDawn\nDenise\nGretchen\nLaurel\nLynda\nRosalind\nAnnmarie\nCarolann\nElinor\nEsther\nGenevieve\nGeorgia\nKay\nMaryanne\nAdrienne\nAlicia\nCamille\nConnie\nCornelia\nGale\nJoanna\nLenore\nMargo\nRosanne\nStephanie\nTeresa\nTherese\nWendy\nYvonne\nAlberta\nColleen\nDarlene\nDorothea\nFern\nHazel\nJacquelyn\nJo\nJohanna\nJoy\nMaxine\nMyrna\nNatalie\nRachel\nRoseann\nTerry\nAmelia\nBernadette\nBeth\nBlanche\nCarmela\nCecilia\nDeanna\nDelores\nElla\nHolly\nJustine\nMargery\nMarsha\nMaryellen\nMelinda\nPearl\nAdele\nArleen\nBertha\nBonita\nCarolee\nDoreen\nEmma\nEva\nGayle\nGeorgianna\nHelena\nIda\nJuanita\nLee\nLena\nLorna\nLydia\nMadelyn\nMiriam\nMonica\nPat\nRebecca\nRhoda\nStella\nTheodora\nVerna\nAlma\nAngelina\nApril\nBeverley\nCarmella\nCathy\nCecelia\nCharleen\nCheryl\nClaudette\nCorinne\nEve\nGwendolyn\nHeather\nHenrietta\nIris\nJennie\nJennifer\nJill\nKathy\nLaurene\nLinnea\nMargot\nMarietta\nMyra\nNaomi\nPenny\nRochelle\nSherry\nSimone\nSophie\nViola\nVita\nPatricia\nBarbara\nMary\nCarol\nJudith\nJoan\nSandra\nLinda\nNancy\nSusan\nElizabeth\nMargaret\nKathleen\nDiane\nBeverly\nJoyce\nCarolyn\nGail\nAnn\nElaine\nDonna\nJanet\nKaren\nDorothy\nJean\nMarie\nVirginia\nCarole\nMarilyn\nJoanne\nFrances\nSharon\nLorraine\nShirley\nRuth\nHelen\nJanice\nMaureen\nGeraldine\nCatherine\nJane\nDolores\nPhyllis\nCynthia\nJacqueline\nAnne\nGloria\nBetty\nSheila\nEllen\nMaryann\nBonnie\nJudy\nAlice\nArlene\nMarjorie\nRoberta\nTheresa\nLois\nEileen\nEleanor\nJoann\nRosemary\nIrene\nLouise\nMarion\nLucille\nSally\nRita\nRose\nKatherine\nMartha\nCharlotte\nMarcia\nDoris\nDiana\nEvelyn\nJune\nJeanne\nJosephine\nPamela\nPriscilla\nLynn\nAnita\nPaula\nPauline\nFlorence\nRosemarie\nChristine\nNorma\nAnna\nKathryn\nConstance\nSuzanne\nClaire\nMarianne\nGrace\nLillian\nLoretta\nBrenda\nAngela\nAnnette\nMarlene\nVictoria\nAndrea\nRegina\nMadeline\nHarriet\nDianne\nEdith\nRosalie\nSylvia\nLynda\nLynne\nValerie\nAudrey\nDeborah\nMildred\nSarah\nWendy\nCaroline\nJulie\nVeronica\nBernice\nJulia\nLeona\nMarguerite\nMarsha\nEmily\nJeanette\nLaura\nAntoinette\nBeatrice\nDoreen\nLeslie\nLucy\nMuriel\nVivian\nAgnes\nAlberta\nBetsy\nDawn\nFaith\nGenevieve\nMaryjane\nCharlene\nGayle\nJacquelyn\nSara\nSue\nDenise\nHelene\nKathy\nMaria\nCarolann\nClara\nDale\nElsie\nJeannette\nJo\nMarian\nMaxine\nNoreen\nPenelope\nYvonne\nAdele\nBeth\nCarmela\nGertrude\nKarin\nLydia\nMaryanne\nMarylou\nPaulette\nBette\nCarmella\nGladys\nHazel\nJohanna\nRachel\nRae\nTeresa\nGale\nJoy\nLorna\nPat\nRosalind\nSophie\nStella\nCamille\nClaudia\nDelores\nDona\nEthel\nGeorgianna\nGretchen\nHeather\nMaryellen\nMonica\nNatalie\nPeggy\nPenny\nRoseann\nSusanne\nAdrienne\nAngelina\nBertha\nCecelia\nConcetta\nConnie\nDorothea\nElinor\nEmma\nEva\nGay\nMadeleine\nMichele\nMiriam\nMyra\nRenee\nStephanie\nTherese\nWinifred\nAnnmarie\nApril\nArleen\nBeverley\nCecile\nDarleen\nDarlene\nEloise\nErnestine\nHolly\nIda\nJill\nJoanna\nLaurel\nLenora\nLenore\nMargo\nMyrna\nRhoda\nRosanne\nTerry\nUrsula\nBernadette\nBonita\nCarla\nCorinne\nEdna\nEdwina\nElla\nFrancine\nHelena\nJennie\nJennifer\nJustine\nKay\nLee\nLucia\nMadelaine\nNora\nPearl\nTina\nAlexandra\nArline\nCarmel\nCathy\nClare\nDeanna\nEstelle\nGeorgette\nHope\nJessie\nKatharine\nLeah\nMargery\nMarilynn\nOlive\nOlivia\nPatsy\nPhilomena\nPolly\nRobert\nRochelle\nSherrill\nTheodora\nWilma\nAdelaide\nAlison\nAlyce\nAmelia\nAmy\nBetsey\nCandace\nCarmen\nCarrie\nCelia\nChristina\nClaudette\nColleen\nEunice\nFlora\nGeorgene\nGeorgia\nGwendolyn\nHenrietta\nIris\nJeannie\nJerilyn\nJuanita\nLana\nLaurie\nLeila\nMadelyn\nMarjory\nMarybeth\nMelinda\nMerle\nMerrily\nNina\nPatti\nSharron\nThelma\nWanda\nWilliam\nPatricia\nBarbara\nCarol\nMary\nJudith\nLinda\nSandra\nSusan\nNancy\nJoan\nElizabeth\nMargaret\nDiane\nKathleen\nSharon\nDonna\nKaren\nJoyce\nJanet\nElaine\nGail\nDorothy\nBeverly\nAnn\nCarolyn\nShirley\nVirginia\nJean\nMarilyn\nFrances\nCarole\nJanice\nJane\nJoanne\nMarie\nMaureen\nJudy\nLorraine\nPhyllis\nJoann\nPamela\nBetty\nEileen\nCynthia\nCatherine\nLois\nRuth\nHelen\nAnne\nGeraldine\nSheila\nJacqueline\nTheresa\nRita\nArlene\nMaryann\nRosemary\nAlice\nEllen\nRoberta\nIrene\nRose\nBonnie\nDolores\nSally\nGloria\nMarcia\nKatherine\nLouise\nMarion\nEleanor\nPaula\nSuzanne\nEvelyn\nJeanne\nMarjorie\nChristine\nMartha\nJune\nLynn\nPauline\nDiana\nDoris\nClaire\nLucille\nCharlotte\nAndrea\nDianne\nPriscilla\nLeslie\nAnita\nBrenda\nConstance\nKathryn\nFlorence\nAngela\nAnnette\nGrace\nHarriet\nMarianne\nRosemarie\nAnna\nJosephine\nLillian\nValerie\nCharlene\nJeanette\nPaulette\nAntoinette\nCheryl\nLoretta\nDeborah\nNoreen\nLynne\nMadeline\nMaria\nSylvia\nDawn\nMarlene\nSarah\nSue\nClaudia\nEdith\nBeatrice\nCaroline\nRegina\nRosalie\nAudrey\nBernice\nFaith\nJeannette\nMarylou\nConnie\nCorinne\nGayle\nJo\nMarguerite\nMarsha\nVictoria\nBernadette\nEsther\nMaryjane\nMichele\nNorma\nVivian\nAdele\nGladys\nLaura\nBetsy\nDenise\nEmily\nJulie\nRuthann\nDarlene\nHolly\nJoy\nRoseann\nVeronica\nKay\nMaryanne\nMildred\nMuriel\nWendy\nAgnes\nKatharine\nLeona\nLynda\nMarian\nStephanie\nSusanne\nArline\nDale\nGale\nJoanna\nJulia\nKathy\nLucy\nWinifred\nYvonne\nElsie\nLee\nMaryellen\nNatalie\nPenelope\nPenny\nElinor\nEva\nGenevieve\nHelene\nHope\nMargo\nMaxine\nPeggy\nRosalind\nSara\nVera\nAlberta\nBertha\nBette\nCecile\nCornelia\nEmma\nFrancine\nJacquelyn\nLaurel\nLenore\nLydia\nMelanie\nTeresa\nWilma\nAmelia\nBeth\nBonita\nCathy\nJill\nSharron\nAlyce\nAnnmarie\nCamille\nCarolann\nCarolee\nCecelia\nCecilia\nChristina\nClare\nDeanna\nDelores\nDorothea\nGeorgia\nGertrude\nHazel\nJohanna\nMarcella\nMichelle\nPat\nRhoda\nRosalyn\nSondra\nTerry\nToni\nYvette\nArleen\nBlanche\nCandace\nCarmella\nClara\nEdna\nGay\nHeather\nHenrietta\nJan\nJeannine\nLisa\nLorna\nMargery\nMiriam\nOlivia\nPearl\nPolly\nSuellen\nTrudy\nWanda\nAlma\nApril\nCeleste\nCelia\nConcetta\nDoreen\nEstelle\nGeorgianna\nGretchen\nGwen\nHeidi\nHelena\nJanis\nJayne\nJennie\nJennifer\nJustine\nLaraine\nMadelyn\nMarilynn\nNora\nRachel\nRebecca\nRenee\nSonya\nTheodora\nAdrienne\nAlexis\nAlthea\nAngelina\nClaudette\nDana\nDarleen\nDona\nDorene\nEdwina\nElisabeth\nErnestine\nFern\nGwendolyn\nIda\nIsabel\nJudi\nKarin\nLeila\nLenora\nLola\nLucinda\nMadeleine\nMelinda\nNaomi\nRosann\nSherry\nTherese\nPatricia\nBarbara\nMary\nCarol\nLinda\nJudith\nNancy\nSandra\nSusan\nJoan\nKathleen\nDonna\nMargaret\nSharon\nElizabeth\nDiane\nKaren\nJanet\nJoyce\nElaine\nGail\nAnn\nBeverly\nDorothy\nMarilyn\nCarolyn\nVirginia\nJean\nJane\nMarie\nJoanne\nJanice\nPamela\nCheryl\nFrances\nCarole\nGeraldine\nJoann\nMaureen\nShirley\nEileen\nCatherine\nLorraine\nHelen\nRuth\nGloria\nEllen\nPhyllis\nCynthia\nMaryann\nTheresa\nAnne\nBetty\nChristine\nLois\nRita\nRoberta\nPaula\nMartha\nAlice\nMarcia\nDolores\nJudy\nSheila\nKatherine\nRosemary\nEvelyn\nBonnie\nJacqueline\nArlene\nLynn\nSally\nDiana\nIrene\nMarjorie\nAndrea\nJeanne\nMarion\nRose\nLouise\nSuzanne\nDoris\nConstance\nKathryn\nCharlotte\nEleanor\nClaire\nJune\nLucille\nPriscilla\nDeborah\nMarlene\nDianne\nBrenda\nJosephine\nLeslie\nMichele\nAnita\nLaura\nMaria\nRosemarie\nValerie\nCaroline\nGrace\nMadeline\nAntoinette\nEdith\nLynne\nDale\nRosalie\nSylvia\nAnna\nBernadette\nFaith\nMildred\nSarah\nFlorence\nLoretta\nMarsha\nAnnette\nCharlene\nLillian\nLynda\nMarianne\nPauline\nPenelope\nVictoria\nVivian\nAngela\nHarriet\nJeanette\nJeannette\nJo\nJulia\nMaryellen\nNorma\nAudrey\nClaudia\nDarlene\nKathy\nRegina\nGeorgia\nJacquelyn\nAlberta\nBetsy\nEdna\nGertrude\nLucy\nMaryjane\nNoreen\nStephanie\nVeronica\nBette\nCamille\nDawn\nArline\nDoreen\nJill\nBeatrice\nJulie\nPaulette\nPenny\nSue\nTeresa\nToni\nWinifred\nBernice\nBeth\nBonita\nCathy\nChristina\nGenevieve\nIngrid\nLenore\nMarguerite\nMaryanne\nPeggy\nSusanne\nAmy\nGale\nJoy\nLaurel\nYvonne\nConnie\nDelores\nElinor\nLee\nPat\nSherry\nWendy\nAdele\nAlexandra\nCarolann\nDeanna\nDenise\nEmily\nEsther\nEthel\nGayle\nGeorgianna\nGladys\nLucinda\nLydia\nMarian\nMarylou\nMuriel\nSara\nAdrienne\nAgnes\nCecelia\nCecile\nClare\nDianna\nEdwina\nFrancine\nHilda\nJennifer\nJohanna\nKarin\nLaurie\nMarcella\nMeredith\nMiriam\nRachel\nSharyn\nStella\nViola\nWanda\nBertha\nCarolee\nCathleen\nColleen\nCorinne\nDana\nGeorgette\nGretchen\nGwendolyn\nHazel\nHelene\nJuanita\nKay\nMargery\nMargo\nMaxine\nNaomi\nNatalie\nNina\nOlivia\nRebecca\nRenee\nRosanne\nAnnmarie\nArleen\nCandace\nClara\nElsa\nJackie\nJeannine\nJennie\nJessie\nJoanna\nLeona\nMadeleine\nMadelyn\nMarilynn\nMonica\nRhoda\nRobin\nRosalind\nRoseann\nSharron\nSusie\nTerry\nTrudy\nVerna\nCarlene\nCarmella\nCassandra\nClaudette\nDora\nElise\nElsie\nEmma\nErnestine\nEugenia\nEunice\nEva\nGay\nHeidi\nHolly\nJudie\nKatharine\nKristine\nMyra\nNadine\nNora\nPatti\nRamona\nRuby\nRuthann\nShelley\nSherrill\nSheryl\nSonia\nSonja\nPatricia\nBarbara\nMary\nCarol\nLinda\nJudith\nSusan\nSandra\nNancy\nKathleen\nDonna\nJoan\nKaren\nElizabeth\nDiane\nSharon\nMargaret\nJanet\nGail\nJoyce\nJanice\nFrances\nJean\nElaine\nJane\nMarilyn\nBeverly\nAnn\nPamela\nVirginia\nShirley\nDorothy\nCarolyn\nMarie\nLorraine\nMaureen\nGloria\nJoanne\nCheryl\nRuth\nCarole\nEileen\nEllen\nCynthia\nMaryann\nBetty\nPaula\nJudy\nGeraldine\nBonnie\nCatherine\nJacqueline\nRoberta\nAnne\nJeanne\nLynn\nChristine\nDiana\nJoann\nTheresa\nAlice\nPhyllis\nRosemary\nSally\nHelen\nMarcia\nSheila\nSuzanne\nRita\nKatherine\nRose\nDeborah\nLouise\nLois\nMarjorie\nMartha\nCharlotte\nAndrea\nArlene\nLeslie\nVictoria\nIrene\nDolores\nJune\nKathryn\nEvelyn\nLynne\nMarion\nMarlene\nEleanor\nLaura\nDianne\nLucille\nConstance\nDoris\nAnita\nBrenda\nClaire\nLillian\nCharlene\nClaudia\nMichele\nRosemarie\nAngela\nJo\nNoreen\nPauline\nPriscilla\nAnna\nJosephine\nMarianne\nValerie\nDarlene\nKathy\nBernadette\nFlorence\nGrace\nSarah\nBetsy\nRegina\nAudrey\nLynda\nMaria\nVivian\nWendy\nDenise\nGayle\nMarsha\nRosalie\nEsther\nLoretta\nBeatrice\nDoreen\nLucy\nNorma\nPeggy\nTeresa\nToni\nAnnette\nEdith\nHarriet\nMarian\nLee\nSharyn\nSylvia\nAntoinette\nDale\nFrancine\nHolly\nJennifer\nLaurie\nRebecca\nSue\nCandace\nJeanette\nMarguerite\nMuriel\nPaulette\nJoy\nLauren\nAgnes\nBernice\nCaroline\nJanis\nJulie\nPenny\nYvonne\nAlberta\nEthel\nFaith\nGladys\nJill\nLeona\nMildred\nNina\nSara\nStephanie\nAdele\nCarolann\nCathy\nCecelia\nChristina\nDawn\nGeorgia\nJeannette\nJulia\nKatharine\nLenore\nMadeline\nVeronica\nArline\nBeth\nBlanche\nGertrude\nKarin\nLaurel\nMaryanne\nMaryellen\nMaryjane\nMaxine\nRoseann\nSherry\nStella\nTheodora\nAnnmarie\nBette\nBonita\nClare\nDebra\nDelores\nEdna\nEloise\nElsie\nEmily\nGale\nGenevieve\nHelene\nIngrid\nJudi\nJustine\nMargo\nNatalie\nPat\nRobin\nSheryl\nSusanne\nThelma\nAlma\nAmelia\nCamille\nCarmela\nCeleste\nHope\nLaureen\nLydia\nMarylou\nPenelope\nRachel\nTina\nTrudy\nAlexandra\nCarrie\nColleen\nDeirdre\nElisabeth\nEmma\nEunice\nGeorgette\nGretchen\nGwen\nJan\nLaraine\nLesley\nLoraine\nMelinda\nNora\nOlive\nPatti\nRenee\nRobert\nRosanne\nRoxanne\nRuthann\nTerry\nTherese\nAlison\nBillie\nCecilia\nCorinne\nDana\nDeanna\nDorothea\nEdwina\nEva\nGay\nHazel\nInez\nIris\nJacquelyn\nJanie\nJayne\nJeri\nJohanna\nJuanita\nKay\nLana\nLaurene\nLenora\nMaribeth\nMelanie\nMelissa\nMichelle\nMiriam\nMonica\nMyra\nPearl\nRosalyn\nSharron\nShelley\nTerri\nVicki\nPatricia\nBarbara\nMary\nLinda\nCarol\nSusan\nNancy\nSandra\nJudith\nKathleen\nSharon\nDiane\nDonna\nKaren\nElizabeth\nMargaret\nJoan\nJanet\nJanice\nGail\nJoyce\nJane\nCheryl\nAnn\nBeverly\nPamela\nMarilyn\nElaine\nCynthia\nJean\nVirginia\nDorothy\nCarolyn\nMaureen\nEllen\nFrances\nLorraine\nJoanne\nShirley\nChristine\nCatherine\nMarie\nEileen\nAnne\nLynn\nRuth\nSuzanne\nBetty\nJudy\nSheila\nRosemary\nBonnie\nGeraldine\nMarcia\nGloria\nHelen\nPhyllis\nLois\nJacqueline\nPaula\nDeborah\nLouise\nMartha\nRoberta\nKatherine\nTheresa\nAlice\nArlene\nJoann\nMaryann\nDiana\nRita\nCarole\nJeanne\nKathryn\nLaura\nAndrea\nMarjorie\nRose\nLucille\nDoris\nSally\nClaudia\nDianne\nIrene\nCharlotte\nDoreen\nDolores\nAnita\nLeslie\nEleanor\nEvelyn\nJune\nMarion\nJo\nClaire\nKathy\nMarianne\nDarlene\nDenise\nMarsha\nRosemarie\nAnna\nAngela\nJosephine\nLynne\nCharlene\nMarlene\nValerie\nBrenda\nConstance\nPriscilla\nVictoria\nLoretta\nPauline\nAudrey\nCandace\nFlorence\nMichele\nRosalie\nMarguerite\nSarah\nBetsy\nFrancine\nGrace\nNorma\nPaulette\nSylvia\nVivian\nAnnette\nCaroline\nJennifer\nLynda\nSara\nLillian\nMichelle\nHarriet\nHolly\nJanis\nJill\nJulie\nLaurie\nLucy\nPeggy\nRegina\nSusanne\nTeresa\nCathy\nDale\nJacquelyn\nMaryellen\nSherry\nSue\nVeronica\nWendy\nBernadette\nBeth\nGayle\nGeorgia\nJeannette\nLee\nMaria\nEdith\nEsther\nLauren\nMildred\nNoreen\nSharyn\nJeanette\nStephanie\nToni\nAdrienne\nJuanita\nJulia\nMaryanne\nMaxine\nAlberta\nBeatrice\nDawn\nLenore\nLydia\nMarylou\nYvonne\nAnnmarie\nBette\nEmily\nLaurel\nMuriel\nRebecca\nRobin\nBonita\nCarolann\nEdna\nFaith\nMarian\nRoseann\nSheryl\nTerry\nAgnes\nBernice\nCorinne\nEthel\nGladys\nHelene\nJoanna\nKatharine\nMadelyn\nNina\nAlison\nArline\nClara\nDelores\nElena\nElsie\nGale\nJan\nJayne\nJennie\nJudi\nLyn\nMelanie\nPenelope\nPenny\nRae\nRosalind\nRosanne\nWinifred\nAmelia\nAntoinette\nCarla\nCathleen\nChristina\nDeanna\nDianna\nEdwina\nJoy\nLeona\nLesley\nLorna\nMarcella\nMaryjane\nNatalie\nPat\nPatti\nVicki\nAdele\nAlexandra\nCamille\nCecelia\nGay\nGwendolyn\nHope\nIngrid\nKristine\nLisa\nMadeline\nMelody\nMeredith\nMiriam\nWanda\nAlyce\nCandy\nCecile\nCorrine\nDana\nEmma\nEva\nGeorgette\nGretchen\nLeigh\nMonica\nNora\nRachel\nViolet\nAlicia\nAlma\nAlthea\nArleen\nCarmella\nCeleste\nConnie\nDebra\nEnid\nFaye\nFlora\nGenevieve\nGertrude\nGwen\nHazel\nHeidi\nJeannine\nJohn\nLinnea\nMargo\nMariann\nMelissa\nMyrna\nRoxanne\nRuby\nRuthann\nTheodora\nTina\nAlexis\nAline\nAurelia\nBetsey\nCaren\nCarlene\nClare\nDeirdre\nDona\nDora\nDorene\nEstelle\nGeorgianna\nHarriett\nIlona\nIsabel\nJohanna\nJustine\nKathie\nKay\nLaureen\nLeah\nLena\nMargery\nMargie\nMarietta\nMyra\nNadine\nPearl\nRenee\nRhonda\nRobert\nRochelle\nRosalyn\nRosann\nShelia\nTherese\nTrudy\nYolanda\nLinda\nPatricia\nBarbara\nMary\nCarol\nSusan\nNancy\nKathleen\nSandra\nJudith\nDonna\nSharon\nKaren\nDiane\nMargaret\nElizabeth\nJoan\nJanice\nJanet\nGail\nCynthia\nPamela\nCheryl\nAnn\nElaine\nJoyce\nMarilyn\nJoanne\nJane\nLorraine\nLynn\nDeborah\nChristine\nJean\nMaureen\nEllen\nPaula\nBeverly\nCatherine\nShirley\nDorothy\nMarie\nCarolyn\nAnne\nVirginia\nFrances\nSuzanne\nEileen\nJoann\nGloria\nLouise\nRosemary\nJeanne\nGeraldine\nBonnie\nJacqueline\nRoberta\nKatherine\nMarcia\nPhyllis\nJudy\nTheresa\nRuth\nLois\nSheila\nHelen\nLaura\nBetty\nKathryn\nSally\nAlice\nMartha\nAndrea\nDiana\nRita\nMaryann\nDolores\nMarjorie\nRose\nAnita\nArlene\nLeslie\nDenise\nEvelyn\nJune\nCarole\nDoreen\nJo\nLucille\nCharlene\nLynda\nMaria\nDarlene\nMarlene\nMichele\nIrene\nCharlotte\nLynne\nClaudia\nEleanor\nBrenda\nAnna\nBetsy\nConstance\nGayle\nMarion\nWendy\nDoris\nDianne\nJosephine\nClaire\nDawn\nValerie\nAntoinette\nEdith\nJill\nNoreen\nNorma\nGrace\nMarianne\nPriscilla\nAngela\nMarsha\nRosemarie\nPauline\nVictoria\nHolly\nJulie\nVeronica\nJanis\nKathy\nAnnette\nFrancine\nMadeline\nMarguerite\nPeggy\nCandace\nLillian\nSherry\nSue\nSylvia\nRebecca\nSara\nSarah\nTerry\nFlorence\nLauren\nAudrey\nCaroline\nDale\nEmily\nJeannette\nLaurie\nPaulette\nRegina\nSharyn\nBeatrice\nChristina\nJacquelyn\nJennifer\nStephanie\nGale\nGeorgia\nJulia\nLee\nPat\nRosalie\nDelores\nVivian\nYvonne\nBeth\nJayne\nLaurel\nRoseann\nTeresa\nAgnes\nCathy\nLoretta\nMildred\nPatty\nToni\nBernadette\nCarla\nCathleen\nClaudette\nColleen\nCorinne\nFaith\nGladys\nJeanette\nAlberta\nBette\nHarriet\nLucy\nMaryanne\nMonica\nMuriel\nBonita\nCarmella\nEsther\nHelene\nJan\nMiriam\nRobin\nBernice\nConnie\nDorothea\nJuanita\nLeona\nLucinda\nMarian\nMaryellen\nMaryjane\nCamille\nCarolann\nCecelia\nIngrid\nKarin\nKatharine\nKristine\nLisa\nMargo\nMichelle\nNora\nPenny\nRachel\nSheryl\nTherese\nClara\nEthel\nHope\nJohanna\nJoy\nLenore\nNatalie\nPenelope\nRenee\nRosalind\nAlma\nAnnmarie\nApril\nEdna\nElinor\nFaye\nGertrude\nLeah\nLesley\nLorna\nMargie\nMarylou\nMaxine\nTheodora\nTrudy\nWanda\nWinifred\nAlison\nCarmela\nCecilia\nCindy\nDebra\nHeather\nHeidi\nIlene\nJanine\nJoanna\nJohn\nJustine\nKristina\nOlivia\nRosanne\nSusanne\nTina\nVicki\nAdele\nAdrienne\nAlexis\nAngelina\nCandice\nCharleen\nConcetta\nDana\nDebbie\nDona\nEstelle\nEugenia\nEva\nGay\nGeorgianna\nGwendolyn\nIsabel\nJanie\nJeannine\nKay\nLea\nLucia\nLynette\nMadeleine\nMadelyn\nMae\nNadine\nNoel\nSandy\nTerri\nViola\nWilma\nYolanda\nAlicia\nAmy\nArleen\nBetsey\nCarlene\nCathryn\nCelia\nDaisy\nDaphne\nDeirdre\nElisabeth\nElsa\nElsie\nEunice\nEve\nFern\nGina\nGretchen\nHilda\nJackie\nJocelyn\nJuliette\nKathie\nLaraine\nLydia\nMargery\nMariann\nMaribeth\nMarybeth\nMaura\nMelinda\nMelody\nMeredith\nMichaele\nNanci\nPolly\nRosann\nSharron\nStella\nSuzan\nThomas\nVera\nLinda\nPatricia\nMary\nBarbara\nSusan\nCarol\nNancy\nKathleen\nSandra\nDonna\nSharon\nJudith\nDiane\nKaren\nElizabeth\nMargaret\nDeborah\nPamela\nCynthia\nChristine\nJoan\nGail\nJanet\nAnn\nCheryl\nElaine\nJanice\nJean\nCarolyn\nJane\nJoanne\nJoyce\nMaureen\nCatherine\nPaula\nMarilyn\nBeverly\nDorothy\nVirginia\nEllen\nKatherine\nFrances\nMarie\nBonnie\nShirley\nTheresa\nAnne\nJoann\nLynn\nEileen\nLaura\nLorraine\nJacqueline\nHelen\nRosemary\nMarcia\nSuzanne\nDiana\nPhyllis\nSheila\nRuth\nGloria\nLouise\nSally\nMaryann\nKathryn\nAndrea\nGeraldine\nJo\nLeslie\nRose\nJeanne\nKathy\nAlice\nConstance\nMartha\nRoberta\nLois\nValerie\nBetty\nJudy\nJune\nCharlene\nMichele\nRita\nEvelyn\nLucille\nDoreen\nIrene\nMarsha\nBrenda\nCathy\nDianne\nMarianne\nMarjorie\nClaudia\nDenise\nMaria\nAnita\nCharlotte\nDolores\nRosemarie\nArlene\nMarion\nMarlene\nLynda\nAnna\nWendy\nCarole\nClaire\nCandace\nDale\nPriscilla\nAngela\nVictoria\nDoris\nEleanor\nGrace\nJosephine\nAudrey\nBetsy\nGayle\nPaulette\nDarlene\nPauline\nTeresa\nSheryl\nAntoinette\nColleen\nHolly\nMarguerite\nPeggy\nPenelope\nRosalie\nSarah\nBernadette\nHarriet\nJanis\nLynne\nTerry\nEdith\nNoreen\nJennifer\nJill\nLillian\nMichelle\nNorma\nSherry\nYvonne\nAnnette\nFrancine\nVeronica\nVivian\nSue\nJoy\nJulie\nLoretta\nRegina\nCaroline\nConnie\nDawn\nEmily\nGeorgia\nJulia\nMarylou\nBeatrice\nBeth\nChristina\nFlorence\nJeannette\nLaurel\nLauren\nLaurie\nMaryellen\nStephanie\nJan\nJeanette\nMarian\nSylvia\nAdrienne\nBernice\nFaith\nLisa\nRobin\nSusanne\nAmy\nClaudette\nGale\nHeather\nLucy\nRebecca\nRenee\nRoseann\nLee\nLucinda\nLydia\nMadeline\nMelanie\nMelissa\nRosanne\nToni\nCarla\nDorothea\nEdna\nJacquelyn\nJuanita\nPenny\nAdele\nAnnmarie\nCarmela\nCarolann\nClara\nEthel\nGay\nHeidi\nMargo\nMaryjane\nWanda\nAgnes\nAlicia\nCandice\nEsther\nJessica\nJoanna\nSharyn\nVicki\nAlison\nCamille\nCathleen\nGenevieve\nGertrude\nGwendolyn\nIngrid\nKay\nLeona\nLynette\nMarcella\nMaryanne\nMaxine\nMonica\nNora\nSandy\nTina\nAileen\nApril\nBette\nBlanche\nBonita\nCarmen\nCecelia\nConcetta\nCora\nDebbie\nDelores\nElisabeth\nEva\nFaye\nGladys\nKatharine\nLenore\nLorna\nMadelyn\nNatalie\nNina\nRosalind\nAlyce\nBertha\nCecile\nDeirdre\nDelia\nDianna\nElena\nErnestine\nJamie\nJayne\nKarin\nKimberly\nKristine\nLesley\nLinnea\nMarilynn\nMeredith\nMildred\nPatti\nRoslyn\nThelma\nAllison\nAlma\nAmelia\nAngelina\nArleen\nBillie\nCecilia\nCelia\nCorinne\nDana\nDaphne\nDebra\nDella\nEunice\nFelicia\nGeorgette\nHannah\nHazel\nHelene\nHope\nIris\nIrma\nLana\nLeah\nMargery\nMargot\nMarietta\nMarla\nMelinda\nMiriam\nMyra\nNadine\nNoel\nPalma\nPat\nRhonda\nRochelle\nRoseanne\nSara\nSharen\nSharron\nStella\nTheodora\nVickie\nWinifred\nLinda\nSusan\nPatricia\nMary\nBarbara\nKathleen\nNancy\nCarol\nDonna\nDeborah\nKaren\nSandra\nSharon\nJudith\nDiane\nMargaret\nElizabeth\nChristine\nPamela\nJoan\nGail\nJanet\nCynthia\nAnn\nJanice\nCatherine\nJoanne\nCheryl\nMarilyn\nBeverly\nJoyce\nElaine\nEllen\nLynn\nJane\nMaureen\nJean\nPaula\nShirley\nLorraine\nSuzanne\nMarie\nVirginia\nCarolyn\nKatherine\nFrances\nMartha\nAnne\nDorothy\nLaura\nJoann\nGloria\nValerie\nKathryn\nBrenda\nRosemary\nJacqueline\nEileen\nTheresa\nWendy\nGeraldine\nBonnie\nDiana\nHelen\nMarcia\nJeanne\nMaryann\nRuth\nAlice\nJudy\nSally\nRita\nArlene\nSheila\nRoberta\nPhyllis\nIrene\nLeslie\nDianne\nRose\nKathy\nSarah\nJo\nLouise\nBetty\nLois\nLynda\nCharlene\nJune\nMichele\nPriscilla\nClaire\nConstance\nDarlene\nDenise\nLucille\nCharlotte\nMarjorie\nAndrea\nAnna\nCarole\nMarsha\nLynne\nClaudia\nDolores\nVictoria\nEleanor\nJanis\nMarianne\nAnita\nDale\nDoreen\nMaria\nTeresa\nLaurie\nCathy\nJill\nRegina\nRobin\nCandace\nJan\nMarlene\nPaulette\nPauline\nHolly\nLoretta\nMarion\nNoreen\nRebecca\nStephanie\nAudrey\nDoris\nEvelyn\nNorma\nAnnette\nBeth\nChristina\nRosemarie\nBetsy\nJosephine\nMarguerite\nAngela\nJoy\nSherry\nToni\nAntoinette\nColleen\nSheryl\nFaith\nJulie\nRenee\nVivian\nBernadette\nEdith\nFlorence\nHarriet\nJennifer\nYvonne\nLee\nLillian\nRosalie\nTerry\nClare\nEmily\nFrancine\nGayle\nJuanita\nJulia\nMargo\nMarian\nMaryellen\nMarylou\nMelanie\nMildred\nSusanne\nVeronica\nCarla\nCaroline\nDana\nGrace\nNatalie\nSara\nBeatrice\nBette\nBonita\nCathleen\nLucy\nMadeline\nNora\nPenelope\nRosanne\nAnnmarie\nCecelia\nEdna\nLisa\nMonica\nAdele\nAlison\nAmy\nCorinne\nDawn\nDebra\nGertrude\nHeidi\nJacquelyn\nJeanette\nJohanna\nKatharine\nKristine\nLauren\nLenore\nLucinda\nSylvia\nAdrienne\nBernice\nConnie\nDeirdre\nDelores\nGwendolyn\nHelene\nJayne\nLaurel\nLesley\nClaudette\nDianna\nFaye\nGeorgia\nGladys\nMelissa\nPeggy\nRachel\nRosalind\nRoseann\nShelley\nStella\nDorothea\nEva\nGenevieve\nGretchen\nHope\nJustine\nKarin\nKate\nLorna\nLydia\nMarcella\nMaryanne\nMichelle\nMiriam\nNaomi\nRoseanne\nSue\nVera\nAntonia\nBelinda\nCamille\nCarmen\nCeleste\nDaryl\nDebbie\nGale\nGeorgianna\nJeannette\nJeannie\nKimberly\nLucia\nMarcy\nMargery\nMyra\nNadine\nPolly\nRochelle\nWanda\nAbigail\nAlberta\nAlexandra\nAlexis\nAlicia\nAlthea\nAlyce\nBlanche\nCandice\nCarolann\nEdwina\nErin\nFrancesca\nGeorgette\nGlenda\nHeather\nJanie\nJoanna\nKristin\nLeona\nMarybeth\nMuriel\nNina\nRhonda\nRosalyn\nRoxanne\nTherese\nWilma\nAlana\nAlma\nAmanda\nAnnemarie\nBillie\nCarmela\nDeanna\nElinor\nElisabeth\nEloise\nEstelle\nEthel\nEunice\nHazel\nIlona\nJeannine\nJennie\nJenny\nJessica\nKerry\nLaureen\nLorelei\nLyn\nLynette\nMadeleine\nMarilou\nMarilynn\nMeredith\nOlivia\nRachael\nRae\nRena\nSharlene\nSharron\nSharyn\nTerri\nTrudy\nViolet\nLinda\nSusan\nPatricia\nMary\nBarbara\nKathleen\nNancy\nDeborah\nDonna\nCarol\nSharon\nDiane\nKaren\nElizabeth\nSandra\nMargaret\nJudith\nGail\nPamela\nChristine\nJanet\nCynthia\nJoan\nJanice\nAnn\nJane\nCheryl\nJoyce\nJoanne\nJean\nElaine\nCatherine\nMaureen\nPaula\nMarilyn\nEllen\nLaura\nBeverly\nLynn\nMarie\nKatherine\nVirginia\nAnne\nDenise\nKathryn\nShirley\nCarolyn\nWendy\nDorothy\nEileen\nBonnie\nLorraine\nFrances\nRosemary\nJacqueline\nMartha\nMarcia\nSuzanne\nJoann\nValerie\nKathy\nGloria\nAlice\nRuth\nBrenda\nSally\nTheresa\nLouise\nDiana\nIrene\nCharlene\nJeanne\nSheila\nAndrea\nEvelyn\nRita\nDarlene\nMarjorie\nMarlene\nHelen\nLois\nMichele\nDianne\nPhyllis\nArlene\nJudy\nConstance\nLynne\nDebra\nRose\nRoberta\nJo\nDoreen\nAnita\nBetty\nMaryann\nVictoria\nDolores\nHolly\nMaria\nMarsha\nCandace\nGeraldine\nJune\nCathy\nClaudia\nLynda\nAnna\nSherry\nCharlotte\nLeslie\nSara\nEleanor\nSarah\nBeth\nBetsy\nRegina\nClaire\nJill\nLisa\nAngela\nLaurie\nLucille\nShelley\nDoris\nMarguerite\nAnnette\nCarole\nMarion\nRobin\nStephanie\nDale\nPeggy\nRosemarie\nColleen\nPauline\nGayle\nJulie\nMichelle\nJennifer\nLoretta\nPriscilla\nAlison\nJanis\nMelissa\nDawn\nJosephine\nMarianne\nNorma\nChristina\nFrancine\nRebecca\nTerry\nGrace\nRoseann\nJulia\nLillian\nNoreen\nSylvia\nTeresa\nVivian\nAmy\nAntoinette\nEmily\nJeannette\nLee\nPaulette\nSue\nSusanne\nAudrey\nCandice\nCathleen\nEsther\nGale\nJan\nMaryellen\nMelanie\nSheryl\nBernadette\nCarla\nFlorence\nCecelia\nHarriet\nJacquelyn\nJoy\nLauren\nMadeline\nMildred\nPenny\nYvonne\nAdrienne\nAnnmarie\nCorinne\nFaith\nJeanette\nLucy\nMelinda\nMonica\nPenelope\nRosalie\nToni\nWanda\nAgnes\nBernice\nCeleste\nGretchen\nMarian\nRenee\nApril\nDelores\nDianna\nEthel\nGeorgia\nHope\nKatharine\nLydia\nMargo\nMaryjane\nMeredith\nRhonda\nVeronica\nBeatrice\nBette\nCarolann\nGladys\nGwendolyn\nJayne\nJoanna\nKathi\nMarylou\nPatrice\nArline\nBonita\nCaroline\nCecilia\nEdith\nHelene\nIda\nJustine\nKarin\nKristine\nLenore\nMaryanne\nRochelle\nRoseanne\nVicki\nAlicia\nBridget\nCatharine\nEdna\nElise\nErnestine\nFaye\nGeorgette\nLaurene\nLesley\nLucinda\nLynette\nMadelyn\nMarcy\nMarietta\nMiriam\nAlthea\nAnnie\nBertha\nCamille\nCecile\nCelia\nCindy\nClara\nConnie\nDana\nDaria\nDebbie\nEugenia\nFay\nHeidi\nJohanna\nKimberly\nKristin\nLaurel\nLorna\nMarybeth\nMona\nMuriel\nNadine\nNaomi\nNina\nOlivia\nRosalind\nRosanne\nSharron\nThelma\nAdele\nAleta\nAllison\nAntonia\nCarlene\nCora\nCorrine\nDorothea\nEugenie\nEva\nGenevieve\nGertrude\nGlenda\nGwen\nHeather\nIris\nJeanine\nJennie\nJessica\nJody\nJuanita\nKristina\nLaureen\nLenora\nLeona\nMargie\nMarilynn\nMarta\nMaxine\nMelody\nMolly\nNellie\nPatti\nRachel\nRamona\nRosalyn\nRoxanne\nSharyn\nStella\nTracy\nLinda\nPatricia\nSusan\nMary\nDeborah\nKathleen\nBarbara\nNancy\nDonna\nKaren\nDiane\nCarol\nElizabeth\nSharon\nJudith\nSandra\nChristine\nMargaret\nGail\nPamela\nJanet\nJoan\nJanice\nCynthia\nDenise\nCatherine\nAnn\nJane\nCheryl\nJoanne\nLynn\nJean\nDebra\nJoyce\nMaureen\nEllen\nPaula\nLaura\nKatherine\nBeverly\nElaine\nAnne\nCarolyn\nBonnie\nLorraine\nMarie\nWendy\nJacqueline\nMarilyn\nShirley\nVirginia\nTheresa\nFrances\nSuzanne\nDorothy\nKathryn\nMartha\nRuth\nLouise\nSheila\nJeanne\nRoberta\nLois\nGloria\nMichele\nBrenda\nIrene\nJoann\nMarcia\nEileen\nRosemary\nKathy\nHelen\nLaurie\nRobin\nValerie\nLeslie\nAndrea\nCharlene\nMaryann\nSally\nLynne\nDarlene\nPhyllis\nAlice\nJudy\nGeraldine\nDiana\nJill\nMarjorie\nRose\nVictoria\nRita\nCathy\nClaudia\nBetty\nEvelyn\nAngela\nDoreen\nAnna\nHolly\nMarlene\nBeth\nSarah\nJune\nTeresa\nColleen\nDianne\nArlene\nCandace\nJo\nMarion\nConstance\nLisa\nJennifer\nSherry\nClaire\nDale\nMaria\nRegina\nMichelle\nAnita\nCharlotte\nDolores\nJanis\nMarsha\nCarole\nRebecca\nShelley\nPauline\nChristina\nDoris\nLucille\nMarianne\nNorma\nAmy\nDawn\nFrancine\nPeggy\nPriscilla\nAudrey\nRosemarie\nStephanie\nYvonne\nBetsy\nEleanor\nGale\nGrace\nJoy\nAnnette\nCathleen\nEdith\nFlorence\nJeanette\nJosephine\nJulie\nMarguerite\nSara\nSylvia\nGayle\nJacquelyn\nLynda\nRenee\nAntoinette\nKatharine\nPaulette\nVivian\nBernadette\nGwendolyn\nJan\nKristine\nLoretta\nLucy\nMelinda\nMelissa\nTerry\nCindy\nHarriet\nJulia\nLauren\nLillian\nNoreen\nRoxanne\nAdele\nAlison\nBernice\nCarla\nCaroline\nCeleste\nEmily\nLaurel\nSheryl\nLee\nMaryellen\nRosalie\nSue\nToni\nVeronica\nWanda\nAnnmarie\nCandice\nJessica\nKyle\nMargo\nMariann\nMelanie\nMonica\nPatti\nRoseann\nTerri\nAdrienne\nElise\nFaith\nFaye\nHelene\nHope\nKarin\nPatrice\nCorinne\nHeidi\nKimberly\nLydia\nMarylou\nPenny\nVicki\nAlicia\nCarrie\nCecilia\nClare\nDana\nErnestine\nEsther\nGeorgia\nHeather\nLenore\nLucinda\nMadeline\nMaryanne\nMeredith\nMildred\nRosanne\nBette\nBonita\nCecelia\nConnie\nHazel\nJeannette\nJuanita\nKathi\nKerry\nNatalie\nNina\nSharyn\nTherese\nAgnes\nAlexis\nAmelia\nAntonia\nBeatrice\nCarmen\nDebora\nDona\nEdna\nEva\nGay\nGladys\nGretchen\nJustine\nLesley\nMarcy\nMaura\nMona\nNanette\nPolly\nRachel\nRhonda\nSophie\nTina\nAlberta\nCamille\nClaudette\nDarleen\nDeidre\nDelores\nGlenda\nHilary\nIris\nJanette\nJoanna\nKathie\nKay\nLea\nLenora\nLori\nLorna\nMarcella\nMarta\nMaryjane\nMaxine\nMelody\nMiriam\nSharlene\nAnnie\nApril\nCelia\nClara\nColeen\nCrystal\nDebbie\nDianna\nElena\nEugenia\nFelicia\nFern\nJacalyn\nJamie\nJanine\nJayne\nJenny\nJody\nJulianne\nKate\nKristin\nLola\nLucia\nLyn\nMadelyn\nMarybeth\nNora\nPearl\nPhilomena\nRamona\nRosalind\nSandy\nSusanne\nTrudy\nVickie\nLinda\nPatricia\nSusan\nDeborah\nMary\nBarbara\nNancy\nKathleen\nDonna\nKaren\nDiane\nCarol\nElizabeth\nSharon\nSandra\nChristine\nMargaret\nPamela\nJudith\nDebra\nCynthia\nGail\nJoan\nJanet\nDenise\nJanice\nAnn\nCatherine\nCheryl\nLynn\nJane\nJean\nJoyce\nLaura\nMaureen\nJoanne\nElaine\nMarilyn\nAnne\nPaula\nEllen\nEileen\nBeverly\nJacqueline\nMarie\nLaurie\nWendy\nTheresa\nVirginia\nBonnie\nDorothy\nKatherine\nKathryn\nSuzanne\nMichele\nClaudia\nDarlene\nRobin\nLorraine\nRuth\nRoberta\nSally\nJo\nSheila\nCarolyn\nJoann\nRose\nBrenda\nLisa\nFrances\nKathy\nGloria\nLeslie\nMartha\nLouise\nShirley\nMarcia\nDiana\nJeanne\nValerie\nCathy\nHelen\nAndrea\nJill\nRosemary\nCharlene\nJune\nPhyllis\nSarah\nLynne\nMarlene\nMaryann\nVictoria\nColleen\nMaria\nMarianne\nAlice\nRita\nDoreen\nJudy\nLois\nMarjorie\nBetty\nArlene\nHolly\nClaire\nConstance\nGeraldine\nAnna\nDale\nMarsha\nBeth\nRebecca\nDawn\nAnita\nEvelyn\nIrene\nLynda\nRegina\nAmy\nAngela\nMichelle\nDianne\nDolores\nLucille\nCandace\nPriscilla\nShelley\nCharlotte\nJennifer\nChristina\nSherry\nJan\nJulie\nMarion\nNadine\nNoreen\nTeresa\nAudrey\nGayle\nJoy\nPauline\nBernadette\nLauren\nNorma\nPeggy\nSara\nBetsy\nCarole\nEleanor\nRoxanne\nStephanie\nTerry\nFrancine\nGrace\nJanis\nJulia\nKim\nLillian\nSylvia\nCarla\nDoris\nMarguerite\nAntoinette\nLaurel\nNatalie\nSue\nEdith\nJeanette\nJosephine\nRosemarie\nSheryl\nToni\nLee\nPaulette\nRenee\nGale\nHeather\nKristine\nLoretta\nNina\nPatti\nRosanne\nMelinda\nYvonne\nAlison\nEmily\nFaith\nRhonda\nRosalie\nRoseann\nTina\nVivian\nFlorence\nJacquelyn\nLori\nMadeline\nVeronica\nWanda\nAnnette\nCorinne\nHeidi\nHelene\nJessica\nJody\nLenore\nLucy\nMaryanne\nSusanne\nGwendolyn\nJohanna\nAdrienne\nBeatrice\nCathleen\nCeleste\nCindy\nDebora\nJeannette\nKimberly\nLeona\nLydia\nMonica\nPenny\nCaroline\nDana\nDebbie\nEsther\nHarriet\nJeanine\nKatharine\nMaryellen\nMelanie\nTerri\nVicki\nAbigail\nAdele\nAgnes\nBernice\nEva\nJeannine\nKathie\nLorna\nPenelope\nRachel\nTherese\nApril\nBonita\nCandice\nCarmela\nCecilia\nClare\nDelores\nDona\nDorene\nFaye\nHollis\nHope\nJayne\nJuanita\nLorrie\nMargo\nMarylou\nMaura\nMelissa\nRosalind\nVera\nAlberta\nAllison\nAlyce\nAnnmarie\nArleen\nCamille\nCarmen\nClaudette\nColeen\nDianna\nErnestine\nEthel\nGina\nIngrid\nIris\nJanine\nKarin\nKristen\nMaribeth\nMildred\nNora\nOlga\nPatrice\nRamona\nSallie\nBette\nBlanche\nCarlene\nCarrie\nCathryn\nConnie\nDavid\nDeirdre\nDorine\nElisabeth\nEstelle\nGenevieve\nGeorgette\nGretchen\nIlene\nJoanna\nLucinda\nLynette\nLynnette\nMadelyn\nMarcy\nMargery\nMarian\nMaryjane\nMelody\nMiriam\nMuriel\nPearl\nRae\nRobyn\nRosalyn\nSharron\nTheodora\nVanessa\nAlexandra\nAlicia\nBelinda\nBillie\nCaren\nCaryn\nCatharine\nCecile\nCharmaine\nCorrine\nCrystal\nDanielle\nDarcy\nDaria\nDeidre\nDorothea\nEdna\nGay\nGeorgia\nGlenda\nJennie\nJeri\nKerry\nLana\nLaureen\nLea\nLesley\nLyn\nMargot\nMaxine\nMeredith\nMona\nNan\nNaomi\nPatty\nPolly\nRhea\nRosa\nTracy\nWinifred\nSusan\nDeborah\nLinda\nPatricia\nMary\nNancy\nBarbara\nKathleen\nKaren\nDonna\nDiane\nCarol\nDebra\nElizabeth\nCynthia\nSharon\nPamela\nJanet\nSandra\nMargaret\nJoan\nGail\nDenise\nJudith\nChristine\nJanice\nJoanne\nCatherine\nCheryl\nAnn\nLynn\nJane\nPaula\nJean\nAnne\nJoyce\nLaura\nMaureen\nEllen\nRobin\nBeverly\nKatherine\nMarilyn\nKathryn\nJacqueline\nEileen\nElaine\nJo\nKathy\nLaurie\nSheila\nWendy\nMarie\nTheresa\nVirginia\nBonnie\nSuzanne\nSally\nMaria\nDarlene\nMichele\nDorothy\nMartha\nCarolyn\nRuth\nValerie\nLeslie\nLisa\nRoberta\nClaudia\nLorraine\nFrances\nRose\nJoann\nSarah\nLouise\nShirley\nGloria\nAndrea\nBrenda\nMichelle\nCharlene\nDoreen\nCathy\nJudy\nAlice\nHelen\nDiana\nRita\nRosemary\nJill\nDawn\nLois\nMarcia\nAnita\nJeanne\nBetty\nColleen\nIrene\nArlene\nHolly\nPhyllis\nVictoria\nDale\nLynne\nEvelyn\nGeraldine\nBeth\nMarjorie\nMarsha\nMarianne\nRebecca\nKim\nTeresa\nAnna\nLauren\nBetsy\nRegina\nAmy\nCandace\nConstance\nJune\nMarlene\nMaryann\nCarole\nLori\nJulie\nLucille\nSara\nJanis\nSherry\nVanessa\nDianne\nNina\nRoxanne\nCharlotte\nEleanor\nChristina\nDebbie\nJosephine\nMarion\nPeggy\nPriscilla\nShelley\nAngela\nDolores\nNorma\nRenee\nClaire\nJennifer\nSheryl\nYvonne\nAudrey\nDoris\nLynda\nStephanie\nSue\nBernadette\nCarla\nHeidi\nLaurel\nNoreen\nPauline\nGayle\nAlison\nFrancine\nGrace\nPatrice\nRosanne\nFaith\nGale\nJoy\nMelanie\nMelissa\nToni\nAnnette\nJan\nJulia\nMarian\nCaroline\nCindy\nCorinne\nFlorence\nMelinda\nMonica\nPaulette\nRhonda\nTerry\nJacquelyn\nJeanette\nKimberly\nLee\nRachel\nSylvia\nCathleen\nLillian\nLoretta\nNadine\nVeronica\nWanda\nKristine\nLucy\nMarguerite\nPatti\nVicki\nVivian\nEmily\nNora\nAdele\nAgnes\nMadeline\nSherri\nBelinda\nBonita\nEdith\nLydia\nNatalie\nRoseann\nRosemarie\nSusanne\nTina\nBernice\nCeleste\nElise\nHelene\nIngrid\nJamie\nJanine\nJeannette\nKatharine\nLuann\nMarylou\nMelody\nMildred\nRosalie\nTerri\nApril\nBeatrice\nClare\nConnie\nJanette\nJayne\nJody\nKarin\nLucia\nPenny\nRamona\nAdrienne\nAlicia\nBetsey\nCamille\nCarmen\nCarrie\nEdna\nEsther\nGina\nJessica\nJuanita\nLenore\nLorna\nLou\nLouann\nLucinda\nMarybeth\nMuriel\nSherrie\nAllison\nAnnmarie\nAntoinette\nCindi\nClaudette\nDana\nElisabeth\nGay\nGwen\nGwendolyn\nHarriet\nHope\nIris\nJoanna\nKathie\nKerry\nLynette\nMargo\nMaryanne\nMaryellen\nMaxine\nMona\nPolly\nTracey\nAlberta\nAmelia\nCandice\nCarlene\nCrystal\nDarleen\nDebora\nDeirdre\nDelores\nEugenia\nGladys\nGlenda\nGretchen\nHeather\nKristin\nLaureen\nLeigh\nLeslee\nLesley\nLila\nLorrie\nLuanne\nMarcy\nMindy\nNaomi\nRoseanne\nSophie\nTeri\nTherese\nArline\nBette\nBonny\nBridget\nClara\nEloise\nEmma\nGenevieve\nIlona\nIsabel\nJeannine\nJennie\nKimberley\nLeona\nLyn\nMadelyn\nMargot\nMaryjane\nMaura\nMyra\nRandi\nRena\nRosalind\nSallie\nTrudy\nVickie\nWinifred\nAlexandra\nAlexis\nAmanda\nAngelina\nAva\nCarmela\nCheryle\nChris\nDaria\nDianna\nDona\nDoretta\nElisa\nEva\nFelice\nFelicia\nFrancesca\nHilary\nHollis\nJeanine\nJocelyn\nJoni\nJustine\nKay\nKyle\nLinnea\nLissie\nLorene\nLorie\nLouanne\nMarcella\nMargery\nMari\nMarla\nMiriam\nNanci\nNola\nRae\nRobyn\nRochelle\nRosann\nRoxann\nRuby\nSharron\nTanya\nYvette\nSusan\nPatricia\nMary\nDeborah\nLinda\nNancy\nKaren\nDebra\nBarbara\nDonna\nKathleen\nDiane\nCynthia\nCarol\nSharon\nPamela\nElizabeth\nMargaret\nSandra\nGail\nJanet\nJoan\nCatherine\nCheryl\nLynn\nJudith\nRobin\nDenise\nAnn\nJoanne\nLaura\nJane\nJanice\nChristine\nPaula\nMaureen\nAnne\nLisa\nEllen\nJoyce\nJean\nLaurie\nElaine\nJo\nRose\nMarie\nTheresa\nKatherine\nBeverly\nKathryn\nMichele\nEileen\nLeslie\nWendy\nMarilyn\nSheila\nMarian\nSuzanne\nJacqueline\nBonnie\nKathy\nHolly\nDorothy\nJoann\nLori\nDawn\nLorraine\nSally\nAndrea\nMartha\nVirginia\nDarlene\nValerie\nBrenda\nRuth\nCarolyn\nMaria\nCathy\nGloria\nVictoria\nMarcia\nBetty\nBeth\nRoberta\nClaudia\nDiana\nShirley\nHelen\nAlice\nJeanne\nColleen\nMarianne\nSarah\nDoreen\nLouise\nRosemary\nAngela\nKim\nRita\nCharlene\nFrances\nJill\nMichelle\nPhyllis\nTeresa\nAmy\nEvelyn\nLynne\nJudy\nJune\nLois\nAnna\nDianne\nRebecca\nAnita\nLauren\nJulie\nDolores\nJennifer\nCandace\nDale\nDebbie\nLoretta\nClaire\nConstance\nJanis\nMarjorie\nRenee\nRoxanne\nCindy\nGeraldine\nMarlene\nRegina\nSherry\nStephanie\nIrene\nMarion\nArlene\nAudrey\nJan\nPauline\nLucille\nNina\nPriscilla\nShelley\nTerry\nLucy\nMaryann\nYvonne\nCarole\nMarsha\nSara\nSheryl\nCarla\nJulia\nToni\nApril\nHeidi\nMelissa\nWanda\nBetsy\nLuann\nNorma\nVicki\nVivian\nCharlotte\nJoy\nSue\nVanessa\nVeronica\nBernadette\nKimberly\nMaura\nNadine\nPaulette\nRosemarie\nChristina\nEleanor\nGina\nLillian\nPeggy\nRosanne\nAnnette\nGrace\nTerri\nTina\nCarmen\nFrancine\nHeather\nJayne\nLynda\nMaryellen\nNoreen\nAlison\nDebora\nDoris\nEdith\nJeanette\nKarin\nMarguerite\nMonica\nRobyn\nCeleste\nDana\nEva\nGale\nGayle\nLee\nLydia\nMelanie\nMiriam\nPatrice\nSylvia\nEmily\nLaurel\nPatti\nAlicia\nCathleen\nJosephine\nMadeline\nRachel\nSherri\nHarriet\nJacquelyn\nLeigh\nMelinda\nRhonda\nRoseann\nBelinda\nBernice\nBonita\nDelores\nFaith\nGwendolyn\nJennie\nJody\nKerry\nLorna\nLouann\nLucinda\nMariann\nMildred\nPenny\nSusanne\nTherese\nAdele\nAlexandra\nCaroline\nCorinne\nEdna\nFlorence\nGretchen\nMargo\nMaryanne\nPatty\nPolly\nAntoinette\nBeatrice\nCarleen\nElisabeth\nFrancesca\nHope\nLesley\nLorrie\nNaomi\nNatalie\nRosalind\nAmanda\nClaudette\nDorothea\nGladys\nHollis\nJacalyn\nJanine\nJeanine\nJoanna\nJuanita\nKathie\nKristin\nKristine\nMelody\nMoira\nNora\nPenelope\nRosalie\nSuzan\nValarie\nVickie\nAdrienne\nCarlene\nCassandra\nConnie\nDarcy\nDaria\nDianna\nDona\nElena\nElise\nElissa\nEsther\nFern\nGeorgette\nGeorgia\nGlenda\nIsabel\nJeannette\nJeannine\nJocelyn\nKathi\nLaureen\nLaurene\nLucia\nLyn\nMaxine\nMona\nRae\nRobbin\nSharlene\nShawn\nTara\nTracey\nAgnes\nAnnmarie\nBette\nCamille\nCherie\nClare\nCorrine\nDaryl\nDeirdre\nDella\nErnestine\nGay\nIngrid\nJessie\nJulianne\nKate\nKristen\nMarcella\nMarilynn\nMarla\nMegan\nMyra\nRosalyn\nShari\nSonia\nAbigail\nAllison\nAnnemarie\nArline\nBettina\nBridget\nCarmella\nCharleen\nConcetta\nDanielle\nDeena\nElisa\nFaye\nGwen\nHelena\nHelene\nJackie\nJamie\nJeannie\nJenny\nJeri\nKarla\nKimberley\nKristina\nKyle\nLaraine\nLeah\nLena\nLenora\nLenore\nLeona\nLizabeth\nLora\nLoraine\nLou\nLuanne\nMadelyn\nMindy\nNanci\nNoel\nOlivia\nSandy\nShelly\nStacey\nTeri\nThelma\nVera\nWinifred\nSusan\nDeborah\nMary\nLinda\nPatricia\nNancy\nDebra\nDonna\nKaren\nBarbara\nKathleen\nDiane\nCarol\nElizabeth\nCheryl\nSharon\nCynthia\nPamela\nSandra\nMargaret\nLynn\nRobin\nJanet\nJudith\nDenise\nGail\nCatherine\nAnn\nJoanne\nLisa\nLaurie\nJoan\nLaura\nChristine\nJanice\nAnne\nJane\nJean\nEllen\nBonnie\nPaula\nKim\nJoyce\nWendy\nMaureen\nTheresa\nMichele\nSuzanne\nElaine\nEileen\nBeverly\nKatherine\nLori\nKathryn\nLeslie\nJo\nKathy\nDarlene\nLorraine\nDoreen\nRose\nMarie\nSheila\nBrenda\nDawn\nValerie\nMaria\nVirginia\nHolly\nMartha\nCathy\nJoann\nRoberta\nCharlene\nMarcia\nSally\nAndrea\nTeresa\nHelen\nRuth\nDorothy\nJill\nShirley\nColleen\nMarilyn\nAlice\nGloria\nCarolyn\nJacqueline\nDiana\nJeanne\nLouise\nSarah\nFrances\nMaryann\nRosemary\nAmy\nBeth\nKimberly\nLynne\nAngela\nClaudia\nAnna\nSheryl\nBetty\nJune\nMichelle\nJulie\nPhyllis\nRebecca\nJudy\nVictoria\nCindy\nDebbie\nMarianne\nRenee\nSherry\nRita\nAudrey\nTina\nAnita\nConstance\nEvelyn\nLauren\nLois\nLynda\nGeraldine\nMarjorie\nJennifer\nHeidi\nTerry\nRosanne\nMelanie\nRoxanne\nCharlotte\nDianne\nDoris\nRegina\nStephanie\nTerri\nAlison\nJan\nLucille\nMarlene\nAnnette\nCarole\nGina\nIrene\nLaurel\nLuann\nShelley\nHeather\nJody\nMelissa\nSara\nSylvia\nClaire\nNorma\nVicki\nArlene\nCorinne\nJanis\nJoy\nLoretta\nLucy\nApril\nDale\nLee\nLillian\nMarion\nMarsha\nPauline\nRhonda\nCarla\nCandace\nDolores\nEleanor\nFaith\nGayle\nJosephine\nMelinda\nPeggy\nPriscilla\nToni\nWanda\nYvonne\nCathleen\nGale\nJulia\nNoreen\nSheree\nDebora\nFrancine\nNina\nSue\nMarian\nMonica\nRachel\nVanessa\nGrace\nHarriet\nSusanne\nConnie\nDana\nJayne\nJuanita\nPatrice\nCarmen\nCaroline\nEdith\nGwendolyn\nVeronica\nBetsy\nCarrie\nCeleste\nChristina\nEmily\nJamie\nLou\nLydia\nVivian\nAlicia\nAntoinette\nFlorence\nJeanette\nMargo\nMarybeth\nBernadette\nDesiree\nEva\nHope\nKatharine\nKristine\nLorna\nLuanne\nMiriam\nNora\nPatti\nPaulette\nTracey\nAbigail\nBridget\nCarlene\nMindy\nNadine\nPenelope\nRosemarie\nSabrina\nSherri\nBernice\nCrystal\nDarleen\nElise\nGeorgia\nJeannette\nKerry\nLucinda\nMarcy\nMarguerite\nMarla\nMaura\nRoseann\nTracy\nAdele\nAdrienne\nAllison\nAnnmarie\nBelinda\nEsther\nEve\nGeralyn\nGladys\nJacquelyn\nJanine\nKarin\nLeona\nMadeline\nMarilee\nMaryanne\nMaryellen\nMelody\nMildred\nMona\nPatty\nPenny\nPolly\nRamona\nRosalie\nTherese\nAlexandra\nBeatrice\nBonita\nClare\nJeannine\nJodi\nJoni\nJustine\nKathi\nKristin\nLenore\nNatalie\nRoseanne\nShari\nThelma\nAgnes\nBette\nCamille\nCaren\nCecelia\nColeen\nDelores\nDona\nDorothea\nEdna\nElena\nElisa\nFelicia\nGretchen\nGwen\nHelene\nHenrietta\nIris\nJeanine\nJennie\nJeryl\nJocelyn\nKathie\nLaureen\nLesley\nLisbeth\nLora\nLoraine\nLyn\nMarcella\nMaryjane\nMegan\nMoira\nMolly\nSandy\nStacey\nWilma\nAbby\nBessie\nCorrine\nDianna\nElisabeth\nElissa\nGlenda\nHilda\nIda\nJackie\nJacklyn\nKimberley\nLeanne\nLorie\nMargery\nMari\nMaribeth\nMarta\nMarylou\nNanette\nRandi\nRandy\nRobyn\nRochelle\nRoni\nTara\nVera\nBertha\nCheri\nCherie\nChristie\nDanielle\nDaphne\nDaria\nDina\nDori\nEloise\nErnestine\nGeorgette\nGertrude\nGreta\nJaye\nJeannie\nJoanna\nKarla\nKrista\nLea\nLeah\nLela\nLorene\nMara\nMargarita\nMargot\nMariann\nMarietta\nMaxine\nMeg\nMuriel\nNan\nNaomi\nNoel\nRae\nRene\nRoxann\nRuby\nShawn\nSherrill\nSuzan\nTamara\nTeri\nValarie\nVicky\nYvette\nSusan\nMary\nDeborah\nPatricia\nKaren\nLinda\nDonna\nNancy\nDebra\nBarbara\nKathleen\nDiane\nCynthia\nSharon\nCheryl\nElizabeth\nCarol\nSandra\nPamela\nMargaret\nLynn\nKim\nLisa\nJanet\nLaura\nCatherine\nDenise\nGail\nAnn\nRobin\nJudith\nJoan\nJane\nChristine\nLaurie\nLori\nDarlene\nEllen\nMaureen\nWendy\nJean\nJoanne\nKathy\nDoreen\nTheresa\nJanice\nPaula\nJoyce\nAnne\nCathy\nKatherine\nSuzanne\nCindy\nMichele\nElaine\nBonnie\nEileen\nMarie\nDawn\nSheila\nJo\nValerie\nBeverly\nHolly\nMaria\nDebbie\nBrenda\nMartha\nSally\nJacqueline\nKathryn\nRose\nLeslie\nAndrea\nJeanne\nJoann\nLorraine\nRita\nVirginia\nRoberta\nRuth\nMarcia\nSarah\nBeth\nCharlene\nKimberly\nMarilyn\nTeresa\nJennifer\nCarolyn\nJill\nColleen\nLynne\nJulie\nMichelle\nHelen\nJudy\nAmy\nDiana\nFrances\nGloria\nVictoria\nAngela\nTina\nLois\nPhyllis\nSherry\nShirley\nLouise\nRebecca\nBetty\nLauren\nSheryl\nAnna\nDorothy\nMarianne\nRenee\nRosemary\nTerry\nClaudia\nHeidi\nEvelyn\nRoxanne\nAlice\nMarjorie\nAnita\nArlene\nRhonda\nStephanie\nIrene\nSue\nAnnette\nLee\nAudrey\nJune\nMelissa\nGina\nGeraldine\nJulia\nLillian\nCarmen\nJoy\nNorma\nRegina\nConstance\nLydia\nMarlene\nMaryann\nGayle\nJanis\nCandace\nCharlotte\nDoris\nPeggy\nGrace\nYvonne\nChristina\nJayne\nLoretta\nMelinda\nPriscilla\nRachel\nRosanne\nAlison\nBetsy\nGwendolyn\nLynda\nRosemarie\nVanessa\nWanda\nCarla\nMelanie\nSylvia\nApril\nCathleen\nClaire\nJody\nTerri\nDale\nEleanor\nFrancine\nJosephine\nPatrice\nSara\nShelley\nLaurel\nLuann\nCarole\nLucy\nPatti\nTracy\nVicki\nCeleste\nKarin\nMarion\nMonica\nNoreen\nVeronica\nEdith\nLuanne\nMaura\nMiriam\nNina\nPauline\nToni\nAntoinette\nDana\nLucinda\nMaryellen\nSheree\nDianne\nEmily\nHeather\nJan\nKerry\nMelody\nPatty\nPenny\nSherrie\nAdrienne\nAllison\nDebora\nDolores\nGale\nLorna\nRobyn\nTara\nBernadette\nCarrie\nEsther\nEva\nFaith\nGladys\nIris\nLucille\nLynette\nPam\nSandy\nAlexandra\nAlicia\nConnie\nJeanette\nJeannette\nJoni\nMadeline\nMarcie\nMarguerite\nMaribeth\nMarybeth\nNadine\nRoseann\nSheri\nTracey\nBeatrice\nDeirdre\nGretchen\nLaureen\nMildred\nBertha\nDarcy\nDianna\nEthel\nFelicia\nGeorgia\nJanine\nJeannine\nLorie\nMarcella\nMarsha\nNora\nPaulette\nSherri\nTherese\nAmanda\nBelinda\nBernice\nCherie\nCorinne\nDona\nElise\nFlorence\nGwen\nHelene\nHilary\nKatharine\nLenora\nLorrie\nMarylou\nTeri\nVera\nVickie\nAnnie\nAnnmarie\nCarlene\nClaudette\nDorene\nElena\nElisa\nJamie\nKaryn\nLeigh\nMariann\nMaryanne\nMyra\nOlga\nPolly\nRamona\nRosalie\nShari\nShawn\nSusanne\nVivian\nAbby\nBillie\nBridget\nCamille\nCandice\nCathryn\nCecilia\nColette\nCora\nDaria\nDelores\nDori\nErica\nEve\nGlenda\nHarriet\nHope\nJeanie\nJocelyn\nJohanna\nJuliana\nLeah\nLeona\nLoreen\nMargo\nMarisa\nMarla\nMaxine\nMeredith\nMindy\nNicole\nSabrina\nShelly\nTanya\nTrudy\nYvette\nAdele\nAlthea\nBette\nBonita\nBonny\nCarolann\nCaroline\nCaryl\nCaryn\nCassandra\nCatharine\nCrystal\nDanielle\nDeidre\nElisabeth\nElissa\nFaye\nGeralyn\nJeannie\nJuanita\nKimberley\nKristen\nLorri\nLyn\nMarcy\nMargarita\nMarian\nMichael\nMona\nNanci\nNatalie\nPat\nRoseanne\nSonia\nTami\nYolanda\nAna\nBlanca\nCaren\nCarey\nCarmel\nChristie\nConcetta\nDelia\nDesiree\nEdwina\nElla\nElsa\nGay\nGeorgette\nGinger\nHazel\nHelena\nIda\nJeanine\nJennie\nKarla\nKay\nKristin\nKristine\nKyle\nLeanne\nLesley\nLiane\nLise\nLoraine\nLorelei\nLorene\nLou\nMarita\nMoira\nNaomi\nPattie\nPhoebe\nRene\nRory\nRosa\nSaundra\nStacy\nSuzan\nVicky\nWillie\nSusan\nMary\nKaren\nDeborah\nLinda\nNancy\nCynthia\nDonna\nPatricia\nDiane\nKathleen\nDebra\nBarbara\nElizabeth\nCarol\nCheryl\nSharon\nLisa\nSandra\nPamela\nMargaret\nRobin\nLynn\nCindy\nLaura\nKim\nLaurie\nJanet\nAnn\nDenise\nCatherine\nGail\nChristine\nEllen\nJoanne\nLori\nAnne\nJudith\nKathy\nTheresa\nJoan\nDarlene\nDoreen\nJane\nDebbie\nJanice\nBrenda\nMaureen\nBonnie\nLeslie\nWendy\nJean\nJoyce\nPaula\nMichele\nCathy\nKatherine\nDiana\nKimberly\nMarie\nElaine\nDawn\nEileen\nSuzanne\nBeverly\nKathryn\nHolly\nBeth\nRose\nVirginia\nValerie\nJulie\nJill\nJudy\nAndrea\nMichelle\nMartha\nCarolyn\nColleen\nRuth\nMarianne\nJeanne\nLorraine\nFrances\nLynne\nMaria\nTeresa\nAmy\nJacqueline\nSally\nJoann\nSheila\nHelen\nLouise\nMarcia\nShirley\nJennifer\nVictoria\nAlice\nDorothy\nMaryann\nCharlene\nJo\nRenee\nSarah\nGloria\nRosemary\nAnna\nRoberta\nLee\nTina\nEvelyn\nMarilyn\nMelissa\nRita\nSue\nAnnette\nDianne\nAngela\nHeidi\nStephanie\nBetty\nLauren\nTerri\nAnita\nIrene\nSheryl\nYvonne\nLois\nJune\nTerry\nTammy\nMarion\nGrace\nRhonda\nClaudia\nPhyllis\nRegina\nSherry\nRebecca\nDale\nDoris\nJody\nToni\nApril\nBetsy\nNorma\nAudrey\nMarjorie\nWanda\nChristina\nConstance\nJoy\nJulia\nLoretta\nMonica\nPriscilla\nTracy\nClaire\nMarlene\nPatti\nCarmen\nGina\nMelanie\nSara\nHeather\nArlene\nCarla\nCarrie\nDebora\nNoreen\nVanessa\nDana\nFrancine\nGayle\nLydia\nVivian\nCarole\nCathleen\nJan\nJosephine\nPatty\nPeggy\nGeraldine\nJanis\nJayne\nLynda\nAlison\nAntoinette\nLucy\nPenny\nRosanne\nSandy\nTracey\nDolores\nLillian\nMelinda\nNora\nRoxanne\nBernadette\nKarin\nPam\nCaroline\nCeleste\nEleanor\nLaurel\nMarsha\nShelley\nFaith\nJamie\nLucille\nPauline\nRachel\nSherri\nVicki\nCandace\nChris\nConnie\nErin\nGale\nGwendolyn\nLorrie\nMarguerite\nNadine\nKerry\nMaura\nRosemarie\nVeronica\nAllison\nCorinne\nEdna\nPatrice\nCharlotte\nCrystal\nEva\nIris\nMarylou\nNina\nSylvia\nAdele\nBeatrice\nEdith\nEmily\nJeannette\nLaureen\nMarybeth\nMiriam\nShari\nAdrienne\nAlicia\nBernice\nGeorgia\nGladys\nJackie\nJacquelyn\nJocelyn\nLenore\nMarisa\nMaryellen\nNatalie\nShelly\nSherrie\nDianna\nFlorence\nGwen\nJeanette\nLuann\nMaryanne\nMildred\nRae\nRobyn\nSheri\nSusanne\nTherese\nVera\nBelinda\nCherie\nDaisy\nDeirdre\nJeannine\nJenny\nJodi\nJodie\nJolene\nJoni\nKimberley\nLeigh\nLorna\nMelody\nShawn\nCarmel\nEsther\nFaye\nFelicia\nJuanita\nKathie\nLeah\nMarcella\nMarian\nTanya\nYolanda\nAbigail\nAllyson\nAngelina\nBonita\nBridget\nCaren\nClaudette\nDeanna\nDona\nFay\nGeralyn\nGretchen\nHelene\nHilary\nIda\nIngrid\nJeri\nKatharine\nKelly\nKristin\nKristine\nLucia\nLucinda\nLuz\nMaryjane\nPat\nPolly\nRosa\nSabrina\nStacy\nTamara\nTammie\nTara\nTeri\nVickie\nAlberta\nAlexandra\nAlthea\nAmanda\nBertha\nBettina\nBonny\nCassandra\nClara\nDebby\nElisabeth\nHarriet\nIsabel\nJessica\nJoanna\nKarla\nKay\nLesley\nLorie\nMarcy\nMargie\nMelodie\nNanette\nRamona\nRandi\nRoseann\nStacey\nVicky\nAmelia\nAnnmarie\nBette\nCamille\nCandice\nCarmella\nDori\nElena\nGisele\nGreta\nHope\nIvy\nJanine\nJennie\nKaryn\nKate\nKathi\nKristen\nKyle\nLeisa\nLenora\nLinnea\nLiz\nLuanne\nLyn\nMargo\nMarla\nMarta\nMona\nMyra\nNancie\nPaulette\nPenelope\nRena\nRhoda\nTami\nUrsula\nValarie\nWinifred\nAlisa\nAnnie\nCandy\nCathie\nCelia\nCheri\nCindi\nColeen\nConcetta\nDanette\nDarleen\nDaryl\nDebi\nDina\nDorene\nEstelle\nEugenia\nEve\nFrancesca\nGay\nGermaine\nGertrude\nGinny\nIrma\nJanette\nJeannie\nJessie\nJohanna\nJudi\nKendra\nLaure\nLaurene\nLeanne\nLeeann\nLena\nLoreen\nLorelei\nLoren\nLou\nLu\nLucie\nMariann\nMaribeth\nMarjory\nMaxine\nMindy\nNilda\nSonia\nStacie\nSusanna\nSuzann\nTracie\nTrudy\nSusan\nMary\nPatricia\nLinda\nKaren\nDeborah\nNancy\nDonna\nDebra\nCynthia\nKathleen\nDiane\nCheryl\nElizabeth\nLisa\nBarbara\nCarol\nPamela\nSharon\nSandra\nLaura\nLori\nLynn\nMargaret\nDenise\nChristine\nRobin\nJoanne\nLaurie\nCatherine\nKathy\nAnn\nGail\nDebbie\nKim\nCindy\nJanet\nJoan\nAnne\nMaureen\nTheresa\nBrenda\nJane\nEllen\nJoyce\nDarlene\nJudith\nKatherine\nMichele\nJean\nJanice\nDawn\nMaria\nKathryn\nLeslie\nKimberly\nWendy\nEileen\nPaula\nCathy\nElaine\nDoreen\nSuzanne\nDiana\nMarie\nSally\nJulie\nAmy\nCarolyn\nAndrea\nBonnie\nValerie\nBeth\nJudy\nJoann\nMartha\nMichelle\nJennifer\nSheila\nLorraine\nJill\nLynne\nMarianne\nBeverly\nHolly\nTeresa\nVictoria\nJo\nColleen\nJacqueline\nRoberta\nDorothy\nTerri\nSue\nAngela\nHelen\nAnna\nRose\nRuth\nTina\nVirginia\nPhyllis\nSarah\nTerry\nAnnette\nHeidi\nCharlene\nRebecca\nFrances\nAlice\nEvelyn\nJeanne\nLouise\nTammy\nAnita\nShirley\nLauren\nMaryann\nDianne\nPeggy\nRegina\nBetty\nGloria\nLois\nRosemary\nStephanie\nGina\nRita\nGayle\nRenee\nSheryl\nJoy\nMarcia\nJune\nClaudia\nJody\nYvonne\nAlison\nBetsy\nMarilyn\nMelissa\nCarrie\nMarlene\nToni\nIrene\nRhonda\nAudrey\nChristina\nLoretta\nWanda\nKelly\nMarjorie\nSara\nConnie\nGrace\nAllison\nApril\nArlene\nCarole\nDebora\nHeather\nJosephine\nJulia\nLucy\nPatti\nLee\nShelley\nTracy\nCaroline\nConstance\nMelinda\nMonica\nPatrice\nSherry\nCarla\nDoris\nMelanie\nPriscilla\nRoxanne\nVicki\nGeraldine\nJan\nClaire\nJayne\nLynda\nPatty\nRosemarie\nSandy\nVeronica\nCorinne\nSusanne\nCathleen\nErin\nGale\nSylvia\nTracey\nCharlotte\nDana\nDolores\nEmily\nMaura\nNora\nShari\nCandace\nCarmen\nJackie\nLillian\nNadine\nNorma\nBernadette\nDale\nEleanor\nJeanette\nLydia\nNoreen\nPenny\nSherri\nTeri\nVanessa\nGwendolyn\nKerry\nCeleste\nJamie\nLucille\nMarybeth\nNina\nRachel\nTami\nFaith\nFrancine\nJeannette\nJuanita\nKristine\nMarion\nMiriam\nPauline\nVivian\nAdrienne\nAlicia\nAntoinette\nKatharine\nLorrie\nLou\nMaryellen\nAnnmarie\nBeatrice\nIris\nKarin\nLaurel\nLeah\nLorna\nLucinda\nMarian\nRoseann\nBelinda\nCrystal\nDeirdre\nFlorence\nJanis\nJodi\nMildred\nNaomi\nNatalie\nRobbin\nStacey\nTara\nVicky\nBillie\nClaudette\nElise\nEva\nIngrid\nJacquelyn\nLenore\nLora\nLynette\nMadeline\nMarsha\nMelody\nPam\nPaulette\nSherrie\nSonia\nTamara\nTanya\nElena\nGladys\nGretchen\nJennie\nJessica\nKathi\nLaureen\nLorie\nLuann\nLucia\nMadelyn\nMarguerite\nPat\nRochelle\nRosanne\nAmanda\nCherie\nChris\nDebby\nEdith\nElisa\nElisabeth\nEsther\nEthel\nGeorgia\nGwen\nHarriet\nHope\nJanine\nJeannine\nJohanna\nKristen\nLauri\nLeigh\nRobyn\nVera\nAdele\nAna\nBecky\nBridget\nCandy\nCassandra\nCecilia\nDori\nHelena\nHelene\nKate\nKimberley\nKristina\nMarcy\nMarylou\nMona\nPenelope\nRosa\nSheri\nTammie\nAngelina\nAntonia\nArline\nBernice\nCarleen\nCarlene\nCathryn\nCheri\nChrista\nClare\nDanielle\nDarcy\nDarleen\nDena\nDianna\nEve\nGeorgette\nJenny\nJoanna\nJodie\nLesley\nLyn\nMaribeth\nMarisa\nMaryanne\nRamona\nRene\nRosalie\nSabrina\nSharlene\nTrudy\nVickie\nYolanda\nAlexandra\nAmelia\nBonita\nCamille\nCelia\nClara\nColette\nDaryl\nDeanna\nDelores\nDesiree\nDora\nDorene\nEdna\nElla\nFelicia\nGay\nGertrude\nGisele\nHillary\nJocelyn\nJoellen\nJudi\nJustine\nKathie\nKristin\nKyle\nLenora\nLiza\nMarci\nMaxine\nMoira\nNicole\nPearl\nRae\nRena\nRoseanne\nShelly\nTerese\nUrsula\nYvette\nAlissa\nArleen\nBernadine\nCaren\nChristie\nColeen\nCorrine\nDelia\nDella\nElissa\nErica\nGenevieve\nGeorgianna\nIvy\nJames\nJanette\nJanie\nJeannie\nJenifer\nJeri\nJerri\nKarla\nKelley\nLea\nLise\nLissa\nLuisa\nLuz\nMargo\nMargot\nMaritza\nMegan\nMerry\nMuriel\nPattie\nRonda\nSandi\nShannon\nSondra\nStacy\nSuzan\nTherese\nSusan\nMary\nDonna\nKaren\nLinda\nPatricia\nNancy\nLisa\nDeborah\nCynthia\nElizabeth\nDiane\nDebra\nCheryl\nKathleen\nBarbara\nPamela\nCarol\nSharon\nLori\nLaura\nSandra\nRobin\nDenise\nJanet\nKathy\nChristine\nMargaret\nAnn\nCatherine\nLynn\nDawn\nTheresa\nCindy\nLaurie\nDebbie\nKim\nJudith\nBrenda\nAnne\nEllen\nGail\nJoan\nJoanne\nJanice\nWendy\nMaureen\nBeth\nPaula\nJane\nLeslie\nJean\nKimberly\nSuzanne\nKathryn\nCathy\nJennifer\nDarlene\nKatherine\nJoyce\nAmy\nMichele\nMarie\nMichelle\nDoreen\nEileen\nBonnie\nJoann\nMaria\nTeresa\nElaine\nSheila\nColleen\nValerie\nJulie\nJudy\nAndrea\nDorothy\nDiana\nBeverly\nJacqueline\nCarolyn\nJill\nSally\nTina\nLorraine\nAngela\nAnnette\nSarah\nRuth\nTammy\nAnna\nJeanne\nLouise\nTracy\nHolly\nVictoria\nVirginia\nRebecca\nBetty\nJo\nLynne\nRose\nSue\nMelissa\nTerri\nRenee\nMartha\nFrances\nLauren\nRoberta\nHelen\nRegina\nAlice\nRita\nBetsy\nShirley\nGina\nHeidi\nKelly\nMarianne\nCharlene\nJulia\nRosemary\nStephanie\nTerry\nMaryann\nAlison\nDianne\nJoy\nSherry\nCarrie\nPeggy\nAnita\nChristina\nPatty\nEvelyn\nHeather\nIrene\nPenny\nAudrey\nBernadette\nLee\nPhyllis\nConstance\nArlene\nClaire\nJune\nLois\nLynda\nMarcia\nMonica\nRhonda\nYvonne\nClaudia\nGloria\nLoretta\nLucy\nMarilyn\nWanda\nCarla\nCathleen\nMarjorie\nSheryl\nApril\nRosemarie\nRoxanne\nTeri\nGrace\nDale\nDoris\nMarlene\nMelanie\nNorma\nShari\nCarmen\nCarole\nPam\nTami\nPauline\nSara\nToni\nTracey\nDana\nLillian\nStacey\nAllison\nFrancine\nJody\nKerry\nMarion\nMaura\nNadine\nRachel\nRobbin\nSandy\nVeronica\nDolores\nJayne\nPriscilla\nShelley\nVanessa\nCaroline\nJosephine\nLaurel\nNatalie\nNoreen\nCrystal\nDeirdre\nMarybeth\nElisa\nEva\nJeannette\nJodi\nMaryellen\nPatrice\nVicki\nAlicia\nCandace\nDebora\nGayle\nGeraldine\nJackie\nJan\nJeanette\nKarin\nMelinda\nRobyn\nSherri\nConnie\nElise\nJamie\nJeanine\nLiz\nPatti\nSheri\nSylvia\nTamara\nYolanda\nAntoinette\nBernice\nEmily\nGale\nJessica\nLucille\nMadeline\nMiriam\nNina\nRamona\nBelinda\nCorinne\nEleanor\nFaith\nLydia\nRoseann\nSusanne\nChris\nGwendolyn\nKristine\nLaureen\nLuann\nMarsha\nMildred\nYvette\nBridget\nCarmela\nDebby\nFlorence\nGretchen\nHarriet\nJoanna\nKathi\nKimberley\nLenore\nLorna\nLorrie\nRosa\nRosanne\nSandi\nTanya\nTara\nTerese\nAbigail\nAnnmarie\nCeleste\nCharlotte\nDeanna\nElisabeth\nErin\nHilary\nHope\nJanis\nJodie\nLorri\nMelody\nMolly\nAdrienne\nCandy\nEdna\nGladys\nIris\nJeannine\nKatharine\nLeigh\nLora\nMarcy\nMarian\nNanette\nPolly\nRene\nStacy\nTammie\nTherese\nVivian\nAgnes\nAlexandra\nAmanda\nAna\nAnnemarie\nBonita\nCamille\nCarmel\nColeen\nEthel\nFelicia\nGeralyn\nGwen\nHelene\nJacquelyn\nJoni\nKarla\nKirsten\nKristi\nKyle\nLorie\nLucinda\nMegan\nMeredith\nMigdalia\nNora\nPat\nSonia\nVera\nVickie\nAlberta\nAlexis\nCandice\nCecile\nCecilia\nCelia\nCorrine\nDella\nDianna\nEdith\nGinger\nJanine\nJenny\nJuanita\nLeanne\nLiane\nLuanne\nLynette\nMargo\nMarguerite\nMaryanne\nMonique\nRena\nRochelle\nShawn\nShelly\nVicky\nAlma\nAlthea\nAnnie\nBecky\nCamilla\nCaren\nCarlene\nCecelia\nCheri\nCherie\nClaudette\nDorene\nErika\nEve\nFrancesca\nGeorgia\nGeorgina\nGertrude\nIda\nIngrid\nIvy\nJeannie\nJeri\nJocelyn\nJulianne\nKate\nKatie\nKristina\nLeah\nLise\nLoraine\nLucia\nMarcie\nMargot\nMaribeth\nMarylou\nMeg\nMyra\nMyrna\nNaomi\nPaulette\nPenelope\nRandi\nRosalie\nSharlene\nSherrie\nStacie\nStella\nThelma\nAbby\nAimee\nAmelia\nBethany\nBonny\nCatharine\nCathryn\nClara\nColette\nDaisy\nDanielle\nDara\nDesiree\nDiann\nDorinda\nElena\nErica\nEsther\nGeorgette\nHilda\nJennie\nJessie\nKathrine\nKelley\nKellie\nKristen\nKristin\nLana\nLaurene\nLaverne\nLeona\nLesley\nLoren\nMarcella\nMargarita\nMargie\nMariann\nMarisa\nMarta\nMay\nMichael\nMoira\nMona\nNydia\nSheree\nSophia\nSophie\nThomas\nViola\nSusan\nMary\nLisa\nDonna\nKaren\nLinda\nPatricia\nNancy\nDeborah\nKathleen\nDiane\nElizabeth\nCynthia\nLori\nSandra\nDebra\nLaura\nBarbara\nCheryl\nCarol\nRobin\nSharon\nPamela\nDenise\nLaurie\nJanet\nCatherine\nBrenda\nMargaret\nAnn\nKim\nKimberly\nLynn\nChristine\nJoanne\nKathy\nTheresa\nWendy\nDebbie\nDawn\nCindy\nMaureen\nJudith\nAnne\nMaria\nMichele\nJanice\nJennifer\nEllen\nJoan\nKatherine\nJane\nTeresa\nSuzanne\nPaula\nDarlene\nEileen\nGail\nJean\nBeth\nJill\nMichelle\nCarolyn\nSheila\nCathy\nJoyce\nAmy\nElaine\nJulie\nTracy\nDiana\nAndrea\nBonnie\nTina\nMarie\nKathryn\nDoreen\nTammy\nJoann\nValerie\nAnnette\nJacqueline\nKelly\nLeslie\nLorraine\nLynne\nMartha\nHolly\nSarah\nBeverly\nJudy\nMelissa\nVictoria\nEvelyn\nColleen\nRose\nTerri\nAnna\nFrances\nHeidi\nRenee\nRoberta\nVirginia\nAngela\nShirley\nJeanne\nMarianne\nTerry\nAlison\nCharlene\nGina\nSherry\nDorothy\nJo\nRegina\nHelen\nStephanie\nSue\nSally\nLauren\nBetsy\nGloria\nRebecca\nRosemary\nAnita\nRhonda\nRita\nMarcia\nPhyllis\nTracey\nBetty\nRuth\nDianne\nHeather\nIrene\nLouise\nAlice\nMaryann\nJamie\nChristina\nDana\nMelanie\nMonica\nPriscilla\nAudrey\nSheryl\nWanda\nCaroline\nCarrie\nJody\nPatty\nJulia\nMarilyn\nMaryellen\nPeggy\nSara\nCarmen\nCarole\nGayle\nToni\nGrace\nJoy\nBernadette\nCharlotte\nGeraldine\nJune\nLee\nLois\nMarjorie\nMaura\nYvonne\nLynda\nPenny\nShelley\nVeronica\nCathleen\nPatti\nRosemarie\nVicki\nAntoinette\nCarla\nJan\nJodi\nMiriam\nShari\nAllison\nApril\nKimberley\nLillian\nLoretta\nRoxanne\nClaudia\nFelicia\nSandy\nSheri\nChris\nClaire\nDolores\nEva\nGretchen\nMarlene\nNorma\nSherri\nVivian\nConnie\nEmily\nFrancine\nKristen\nMelinda\nNina\nSylvia\nAlicia\nMelody\nNadine\nNoreen\nTamara\nCorinne\nDebora\nEdith\nFaith\nJackie\nJosephine\nLeigh\nLucy\nArlene\nCrystal\nDale\nErin\nJanine\nKarin\nLydia\nMarian\nPam\nTherese\nVanessa\nCandace\nConstance\nJeanette\nKristine\nLaureen\nLaurel\nMarybeth\nNatalie\nRosanne\nBridget\nDeanna\nDeirdre\nDoris\nEleanor\nGwendolyn\nKerry\nLorrie\nMonique\nNaomi\nPatrice\nRamona\nSonia\nStacey\nSusanne\nTeri\nKelley\nMarion\nMildred\nPauline\nYolanda\nAna\nBernice\nElisa\nFlorence\nJacquelyn\nJayne\nJessica\nKimberlee\nLenore\nLuann\nRandi\nTara\nYvette\nAgnes\nBeatrice\nCheri\nElena\nElise\nHope\nJanis\nJeannine\nLucille\nMegan\nMoira\nNora\nShelly\nStacy\nAlberta\nAnnmarie\nBelinda\nCarlene\nEdna\nEsther\nGwen\nKristin\nLiz\nLouann\nMarisa\nMarsha\nRachel\nRobbin\nRobyn\nRosa\nRoseann\nTami\nTanya\nAida\nAlexandra\nAnnemarie\nCarmela\nClara\nEmma\nFrancesca\nHilary\nJeannette\nJocelyn\nKatharine\nLorna\nLucinda\nMarcy\nMarguerite\nMigdalia\nPat\nPolly\nAllyson\nDaisy\nDarla\nDebi\nDina\nGale\nGeorgia\nIris\nJenny\nJoni\nKate\nKatie\nKatrina\nLaurene\nLauri\nLorie\nLucia\nMadeline\nMargot\nMaryanne\nMarylou\nMaxine\nMeredith\nPaulette\nRosalie\nSherrie\nTammie\nWendi\nArline\nBecky\nCaren\nCassandra\nDarcy\nDawne\nDebby\nDeidre\nDesiree\nDona\nEstelle\nGeorgette\nGladys\nGreta\nIngrid\nJeanine\nJohanna\nKari\nKyle\nLenora\nLesley\nLora\nLuanne\nMarcella\nMargarita\nMaryjane\nOlga\nPenelope\nRene\nRosalyn\nSandi\nSiobhan\nVera\nAdrienne\nAmanda\nAnnie\nCamille\nCarolann\nCaron\nCatharine\nCecilia\nCeleste\nCherie\nClare\nDianna\nEthel\nGaye\nGenevieve\nHarriet\nJeffrey\nJudi\nLila\nLouisa\nMarcie\nMark\nRochelle\nSabrina\nStacie\nValarie\nVicky\nWinifred\nAda\nAlana\nBertha\nBette\nBonny\nCandy\nCathryn\nCecily\nCharles\nCindi\nClaudette\nColette\nDaria\nDorene\nErica\nEve\nGinny\nGlenda\nJeannie\nJennie\nJoanna\nJodie\nJolene\nJuanita\nKellie\nKirsten\nKrista\nLeah\nLeeann\nLeila\nLeona\nMara\nMargo\nMarina\nMelodie\nMichael\nNanette\nNola\nRonda\nRosanna\nSharlene\nShelia\nSonya\nSusanna\nSusie\nTamra\nTerrie\nTonya\nTracie\nUrsula\nVerna\nVickie\nViolet\nLisa\nSusan\nMary\nLinda\nKaren\nDonna\nPatricia\nNancy\nElizabeth\nDeborah\nLori\nKathleen\nCynthia\nRobin\nBarbara\nDiane\nLaura\nSharon\nCheryl\nSandra\nDebra\nLaurie\nCarol\nPamela\nChristine\nDenise\nBrenda\nMargaret\nJacqueline\nKimberly\nCatherine\nAnn\nDawn\nJanet\nTheresa\nLynn\nKim\nMichele\nSuzanne\nMaureen\nJennifer\nKathy\nWendy\nDarlene\nDebbie\nJudith\nJoanne\nAnne\nMaria\nMichelle\nEllen\nCarolyn\nJane\nKatherine\nCindy\nGail\nLeslie\nJulie\nBeth\nElaine\nTammy\nKathryn\nDiana\nTracy\nJanice\nTeresa\nAmy\nValerie\nEileen\nPaula\nJoan\nJean\nSarah\nJill\nBonnie\nTina\nDoreen\nHeidi\nHolly\nMarie\nSheila\nCathy\nAndrea\nKelly\nJoann\nJoyce\nLorraine\nMartha\nRenee\nSally\nAngela\nAnna\nJudy\nJeanne\nTracey\nRuth\nStephanie\nVictoria\nAnnette\nGloria\nRose\nMelissa\nTerri\nColleen\nSherry\nFrances\nLynne\nBeverly\nDorothy\nCharlene\nGina\nLauren\nRebecca\nLouise\nSue\nMarianne\nShirley\nHelen\nRita\nVirginia\nMarcia\nAlice\nAllison\nAnita\nMaryann\nRosemary\nPhyllis\nRegina\nRoberta\nYvonne\nEvelyn\nCarla\nJulia\nRhonda\nBetty\nCaroline\nAlison\nChristina\nRoxanne\nTerry\nHeather\nJo\nIrene\nMarilyn\nVeronica\nDana\nDianne\nRosemarie\nLynda\nWanda\nClaire\nJackie\nJune\nPeggy\nCarmen\nCathleen\nJamie\nMelanie\nNoreen\nPenny\nJanine\nPatty\nSara\nShari\nSheryl\nDoris\nJody\nLee\nLois\nMarjorie\nMaura\nMonica\nAlicia\nJoy\nLucy\nPatti\nAnnmarie\nBetsy\nGrace\nJeanette\nSandy\nCarole\nGayle\nJosephine\nLoretta\nMarlene\nMelinda\nRobyn\nSherri\nToni\nCarrie\nClaudia\nConnie\nCorinne\nDeirdre\nJodi\nRachel\nApril\nBernadette\nFelicia\nGretchen\nNorma\nShelley\nVicki\nLeigh\nShelly\nSheri\nTeri\nVanessa\nAudrey\nDeanna\nKerry\nBridget\nErin\nGwendolyn\nJacquelyn\nLillian\nLydia\nMegan\nMiriam\nSylvia\nTamara\nAmanda\nChris\nMarybeth\nNadine\nRoseann\nCrystal\nEmily\nPam\nPriscilla\nRosa\nArlene\nConstance\nDale\nDolores\nGeraldine\nKarin\nKimberley\nMarion\nStacey\nTherese\nVivian\nBelinda\nEdith\nEva\nJayne\nKimberlee\nLauri\nLorie\nLucille\nNatalie\nPatrice\nTara\nDanielle\nGwen\nJessica\nKatharine\nMaryanne\nMaryellen\nMelody\nPauline\nSusanne\nCandace\nElisa\nFaith\nJeannette\nNina\nRamona\nSonia\nYvette\nAlisa\nCharlotte\nCheri\nElise\nFlorence\nJan\nKristin\nKristine\nLesley\nLoriann\nLorna\nMadeline\nMarsha\nStacy\nVickie\nAntoinette\nBecky\nCarlene\nCassandra\nDebora\nFrancine\nJoanna\nJulianne\nKarla\nLucia\nMarcy\nMarylou\nMildred\nMonique\nNora\nRosanne\nYolanda\nAlexandra\nAllyson\nAngel\nBeatrice\nCeleste\nDelores\nDianna\nDina\nJana\nJeannine\nJessie\nKate\nLaurel\nLiz\nLorri\nMarguerite\nMarisa\nNicole\nRoxann\nShawn\nTrudy\nAgnes\nAmelia\nEleanor\nElisabeth\nGale\nIngrid\nJodie\nKristen\nLaureen\nLeah\nLorrie\nMadelyn\nMaryjane\nRene\nRochelle\nSherrie\nSonya\nTraci\nAdele\nAlane\nBernice\nDaphne\nDarcy\nGeorgia\nHope\nIris\nJeanine\nJeri\nKathi\nKelley\nKellie\nKrista\nLeanne\nLeeann\nLouann\nMaritza\nMaxine\nPaige\nStacie\nTracie\nTricia\nValarie\nAileen\nAna\nAnnamarie\nCaren\nCelia\nChristie\nClare\nColette\nCora\nDarleen\nDeidre\nDorene\nEsther\nEthel\nGladys\nHarriet\nIsabel\nJennie\nJuanita\nLouisa\nLuann\nLynette\nMeredith\nMona\nRobbin\nRonda\nRosalind\nRoslyn\nShannon\nTami\nVera\nVicky\nAdrienne\nAnnie\nBrigid\nCamille\nCarmela\nClaudette\nDavid\nDeanne\nDebby\nDorothea\nEdna\nElsie\nEstelle\nEve\nGigi\nGwyn\nHilary\nIvette\nJanette\nJohn\nJuliet\nLaverne\nLizabeth\nLuanne\nMaribeth\nMarla\nMaryjo\nMigdalia\nNanci\nNereida\nPenelope\nPolly\nRosalie\nSuzette\nTanya\nWilliam\nAbby\nAlberta\nAlma\nAngelique\nBette\nCherie\nChristy\nClara\nConcetta\nDaniel\nDeena\nDena\nDesiree\nDora\nDori\nElla\nEugenia\nGenevieve\nGeorgette\nGillian\nJanina\nJanis\nJeannie\nJenny\nJocelyn\nJohanna\nJohnna\nJudi\nKathie\nKatrina\nKerri\nKirsten\nKris\nKristi\nLenore\nLora\nLourdes\nMarcie\nMichael\nMindy\nMoira\nNanette\nRobert\nRoseanne\nSelina\nSherryl\nSonja\nStella\nTammie\nTonya\nLisa\nSusan\nKaren\nMary\nLinda\nDonna\nLori\nPatricia\nElizabeth\nKathleen\nDeborah\nCynthia\nNancy\nDiane\nRobin\nLaura\nCheryl\nSharon\nBarbara\nSandra\nCarol\nLaurie\nPamela\nDebra\nChristine\nKimberly\nDawn\nMargaret\nCatherine\nBrenda\nDenise\nMichele\nKim\nLynn\nAnn\nJennifer\nWendy\nJanet\nJacqueline\nMaria\nTheresa\nJudith\nMichelle\nSuzanne\nTracy\nJoanne\nCindy\nAmy\nJulie\nAnne\nKathy\nEllen\nKelly\nBeth\nJanice\nKatherine\nCarolyn\nJane\nMaureen\nDebbie\nTina\nTeresa\nAngela\nDarlene\nLeslie\nTammy\nEileen\nPaula\nJill\nGail\nElaine\nJean\nSheila\nTracey\nDoreen\nMarie\nHeidi\nValerie\nBonnie\nDiana\nCathy\nColleen\nJoan\nLynne\nSarah\nMelissa\nAndrea\nJoann\nSherry\nHolly\nKathryn\nRenee\nLorraine\nTerri\nGina\nJudy\nMartha\nBeverly\nRuth\nAnna\nSally\nJeanne\nEvelyn\nJoyce\nSherri\nAlison\nLauren\nRegina\nRose\nRebecca\nSue\nRhonda\nStephanie\nAnnette\nHeather\nAnita\nDana\nVictoria\nVirginia\nDorothy\nMarianne\nTerry\nRoberta\nCarla\nCaroline\nHelen\nMarilyn\nShirley\nStacey\nAllison\nPenny\nAlice\nMarcia\nMaryann\nWanda\nCarrie\nJulia\nCarole\nCharlene\nLouise\nDianne\nFrances\nToni\nAudrey\nMarlene\nMonica\nRosemary\nGloria\nPhyllis\nSheri\nJamie\nJo\nLynda\nNadine\nRita\nCarmen\nMaura\nRosemarie\nSara\nSheryl\nJodi\nVicki\nChristina\nClaudia\nJody\nJoy\nLee\nNoreen\nSylvia\nConstance\nLoretta\nMelanie\nYvonne\nBetsy\nDina\nJeanette\nKimberley\nMarybeth\nShari\nShelley\nVanessa\nBridget\nConnie\nJanine\nJosephine\nMarjorie\nVeronica\nCathleen\nCrystal\nDolores\nDoris\nGretchen\nJackie\nLydia\nNatalie\nPam\nPeggy\nTamara\nYvette\nAlicia\nApril\nCharlotte\nClaire\nKerry\nLillian\nLucy\nNicole\nNorma\nStacy\nTami\nAnnmarie\nBetty\nDeanna\nKelley\nKristin\nNina\nRobyn\nRosa\nSandy\nCorinne\nDeirdre\nKristen\nLois\nMarsha\nDanielle\nJacquelyn\nMelinda\nNora\nSusanne\nYolanda\nJune\nKristine\nRachel\nTara\nAmanda\nArlene\nBelinda\nBernadette\nFrancine\nGrace\nIrene\nMonique\nTherese\nTraci\nAntoinette\nElena\nErin\nJayne\nMaryellen\nMiriam\nRoxanne\nShelly\nAdrienne\nEleanor\nEva\nGladys\nJan\nKarin\nMarion\nPauline\nTammie\nGeraldine\nGwendolyn\nJoanna\nLaureen\nLaurel\nLuann\nPatrice\nPriscilla\nSherrie\nFaith\nFelicia\nFlorence\nJessica\nJohanna\nLoriann\nSonya\nVickie\nCherie\nDebora\nEdna\nElisa\nElisabeth\nJeannine\nJuanita\nKimberlee\nLorie\nMeg\nTeri\nDaphne\nEmma\nIngrid\nIris\nJeannette\nJenifer\nJustine\nLesley\nLorrie\nLucille\nLucinda\nMadeline\nMarcella\nMaritza\nMildred\nPaige\nPatti\nPatty\nRae\nShawn\nVicky\nVivian\nAnnemarie\nCandace\nCara\nCheri\nChris\nClare\nDarcy\nDianna\nEmily\nErica\nGlenda\nGwen\nJenny\nJulianne\nKara\nMarcy\nMargarita\nMelody\nMigdalia\nSonia\nSuzette\nTracie\nAnnie\nCassandra\nChrista\nDesiree\nDora\nFrancesca\nGeorgia\nKarla\nKatharine\nLeigh\nMarci\nMargot\nMarguerite\nMaribeth\nMegan\nOlga\nRoseanne\nBecky\nBernice\nCandy\nClaudette\nDaria\nDelores\nEdith\nEve\nGeorgette\nJanis\nJodie\nKristina\nLauri\nLeah\nLeanne\nLenora\nLucia\nLuz\nMargie\nMarla\nMaryanne\nMarylou\nMilagros\nMinerva\nNaomi\nRene\nRochelle\nRoseann\nSabrina\nTerrie\nTonya\nWilma\nAwilda\nBeatrice\nCaryn\nCecilia\nCindi\nCornelia\nDebby\nDeidre\nDona\nElise\nErika\nEsther\nGayle\nHelene\nJocelyn\nJohnna\nJuliann\nKate\nKatrina\nKelli\nKirsten\nLeeann\nLenore\nLise\nLiz\nLiza\nLora\nMargo\nMarian\nMarisa\nMaryjo\nRamona\nRandi\nRonda\nRosalie\nTanya\nTerese\nAbigail\nAileen\nAmber\nAngelina\nAnnamaria\nCaren\nCarleen\nCathryn\nCeleste\nCelia\nColette\nDaisy\nDale\nDorene\nEthel\nFaye\nGale\nGenevieve\nGisele\nHilary\nHope\nIda\nIvy\nJennie\nJohn\nJoni\nKari\nKaryn\nKaty\nLena\nLeona\nLorna\nLyn\nMaryjane\nMeredith\nMimi\nMindy\nMona\nMuriel\nNanette\nNoemi\nPaulette\nRena\nRobert\nRosalind\nSimone\nTammi\nTamra\nTricia\nValarie\nVera\nLisa\nSusan\nKaren\nMary\nLinda\nDonna\nLori\nElizabeth\nDeborah\nPatricia\nKathleen\nLaura\nCheryl\nSandra\nCynthia\nChristine\nNancy\nDiane\nBarbara\nKimberly\nPamela\nRobin\nSharon\nLaurie\nDenise\nMargaret\nDebra\nBrenda\nDawn\nCarol\nLynn\nJennifer\nTheresa\nWendy\nCatherine\nMichele\nAnn\nKim\nMichelle\nTracy\nMaria\nPaula\nTammy\nJanet\nBeth\nKelly\nSuzanne\nJacqueline\nAmy\nMaureen\nTina\nAnne\nJudith\nKatherine\nLeslie\nCindy\nJulie\nJane\nSheila\nJanice\nAndrea\nGail\nEllen\nKathy\nBonnie\nEileen\nCarolyn\nJean\nDarlene\nDiana\nTeresa\nMelissa\nJill\nValerie\nColleen\nDebbie\nSarah\nHeidi\nJoan\nMarie\nJoanne\nTracey\nGina\nKathryn\nMartha\nHolly\nAngela\nSherry\nDoreen\nRenee\nRebecca\nCathy\nElaine\nLynne\nSherri\nTerri\nAnna\nJoann\nStephanie\nAlison\nJoyce\nJudy\nLauren\nVictoria\nRegina\nChristina\nHeather\nLorraine\nVirginia\nJeanne\nSally\nDana\nGloria\nRuth\nAnnette\nDorothy\nRhonda\nWanda\nAnita\nApril\nMonica\nEvelyn\nHelen\nShirley\nCharlene\nMarianne\nLouise\nRita\nRose\nStacey\nPenny\nRoberta\nAlice\nAllison\nMarilyn\nRosemary\nTerry\nCaroline\nMarcia\nSheryl\nMelanie\nPhyllis\nSara\nBeverly\nCarrie\nMarjorie\nLoretta\nCarla\nJulia\nMarlene\nYvonne\nKristin\nMaryann\nMaura\nAlicia\nCarmen\nConnie\nDianne\nJoy\nAudrey\nDoris\nRosemarie\nSue\nYvette\nBetsy\nPriscilla\nRachel\nStacy\nJodi\nMonique\nSheri\nVeronica\nAnnmarie\nDina\nErin\nGretchen\nJamie\nJody\nKristen\nMaryellen\nClaudia\nConstance\nFrances\nShari\nSylvia\nBetty\nCherie\nCrystal\nJo\nMelinda\nPeggy\nRobyn\nCarole\nJune\nKerry\nLee\nIrene\nJessica\nKristine\nLeah\nNatalie\nTamara\nBelinda\nDanielle\nDeirdre\nFaith\nKarin\nMarybeth\nPatty\nTara\nEmily\nFelicia\nKelley\nSandy\nShelly\nArlene\nBridget\nGrace\nKirsten\nLorie\nPatti\nSonya\nToni\nVicki\nYolanda\nCathleen\nLillian\nLucy\nMadeline\nMarsha\nRoxanne\nVivian\nAdrienne\nAlexandra\nCorinne\nDeanna\nJeanette\nJosephine\nKara\nLois\nLydia\nLynda\nNorma\nShelley\nTami\nTherese\nTracie\nCharlotte\nGayle\nGeraldine\nIvette\nLaurel\nLucille\nNicole\nNora\nSusanne\nTanya\nVanessa\nCeleste\nGwendolyn\nJackie\nJanine\nKristina\nLeigh\nMarguerite\nMarisa\nMegan\nMelody\nSonia\nTammie\nAbigail\nAmanda\nFrancine\nJan\nJoanna\nLorrie\nMarion\nMiriam\nNadine\nNoreen\nPaige\nPatrice\nRamona\nBernadette\nClaire\nEleanor\nElise\nJanis\nMarcy\nNina\nRoseann\nTeri\nBecky\nElisa\nJayne\nShawn\nVickie\nAlisa\nAntoinette\nCandace\nDale\nEva\nGeorgia\nGladys\nJacquelyn\nJeannette\nJennie\nKatharine\nKrista\nLora\nLynette\nMaritza\nPam\nVicky\nCassandra\nChris\nDarcy\nDebby\nElisabeth\nErica\nEsther\nIris\nJohanna\nKimberlee\nLauri\nLorri\nMarisol\nMaryanne\nMildred\nMoira\nMyra\nNanette\nNaomi\nPenelope\nPolly\nSabrina\nSherrie\nAileen\nAna\nArleen\nBeatrice\nCandy\nCara\nDaria\nDebora\nDeidre\nElena\nErika\nGlenda\nGwen\nHilary\nJenny\nKarla\nKate\nKay\nLaureen\nLeann\nLesley\nLuz\nMari\nMarian\nMona\nPauline\nRene\nRosanne\nTonya\nAbby\nAllyson\nAngel\nAnnamarie\nBethann\nBlanca\nCarmela\nClaudette\nDaphne\nDarleen\nDeanne\nDesiree\nDolores\nDora\nFlorence\nIda\nIngrid\nJeanine\nJenifer\nJohn\nKaryn\nKelli\nLeanne\nLeona\nLoriann\nLucinda\nMarta\nMaryjane\nMarylou\nMaxine\nPaulette\nRena\nRosalie\nStella\nSuzette\nTrudy\nVerna\nZina\nAimee\nAlyson\nAnnemarie\nDaisy\nDianna\nDorinda\nEdith\nElsie\nFaye\nGeorgette\nGiovanna\nHarriet\nHillary\nJeannine\nJohnna\nJoni\nJuanita\nJulianne\nKathie\nKatrina\nKellie\nKeri\nKimberley\nLana\nLaurieann\nLorine\nLucia\nMarcella\nMariann\nMigdalia\nOlga\nRobbin\nShannon\nSusanna\nTraci\nAdele\nAmber\nAmelia\nBernard\nBonita\nBrigid\nCharleen\nClare\nColette\nCorrine\nCourtney\nDayna\nDeana\nDeena\nDelores\nDorothea\nEdna\nEve\nGillian\nGiselle\nHelene\nHope\nJana\nJanette\nJeri\nJocelyn\nJodie\nJudi\nJustine\nKari\nLaurene\nLeeann\nLenore\nLise\nLoreen\nLorna\nLuann\nLuisa\nMarci\nMargie\nMargot\nMaribeth\nMarina\nMarla\nMerry\nMilagros\nMolly\nNilda\nPatrica\nRae\nRandi\nRichard\nRobert\nRochelle\nRonda\nRosa\nSallie\nSelina\nSondra\nTammi\nTricia\nVera\nLisa\nSusan\nMary\nKaren\nDonna\nElizabeth\nPatricia\nDeborah\nLinda\nLaura\nKathleen\nChristine\nDawn\nLori\nRobin\nKimberly\nDiane\nNancy\nPamela\nSandra\nCheryl\nCynthia\nSharon\nJennifer\nBarbara\nDebra\nDenise\nMichelle\nMichele\nCatherine\nMargaret\nTracy\nCarol\nBrenda\nLynn\nLaurie\nMaria\nJacqueline\nAmy\nTheresa\nWendy\nSuzanne\nTammy\nJulie\nAnn\nTina\nAnne\nKelly\nKim\nPaula\nJanet\nBeth\nJill\nAndrea\nSheila\nMaureen\nEllen\nHeidi\nCarolyn\nDarlene\nJudith\nLeslie\nKatherine\nJoanne\nKathryn\nRenee\nCindy\nMelissa\nAngela\nJoan\nTracey\nGina\nTeresa\nDiana\nKathy\nMarie\nSarah\nColleen\nValerie\nEileen\nBonnie\nJanice\nGail\nJane\nJean\nTerri\nRebecca\nJoann\nDoreen\nAnna\nHolly\nStephanie\nDebbie\nHeather\nRhonda\nSherry\nChristina\nMonica\nDana\nJoyce\nLauren\nVictoria\nJudy\nLorraine\nLynne\nMartha\nRuth\nCathy\nDorothy\nVirginia\nApril\nElaine\nRegina\nStacey\nSally\nAlison\nAlice\nAllison\nRoberta\nAnnette\nKristen\nYvonne\nBeverly\nDianne\nJodi\nMaryann\nCharlene\nJeanne\nJulia\nLynda\nSheri\nGloria\nHelen\nShirley\nTerry\nWanda\nRose\nMelanie\nRita\nKristin\nKristine\nShelly\nSherri\nEvelyn\nSara\nVeronica\nCrystal\nDeneen\nFrances\nYvette\nAnita\nCarrie\nGretchen\nMarilyn\nIrene\nPenny\nSheryl\nStacy\nCarla\nCarmen\nCaroline\nMarcia\nAlicia\nAntoinette\nConstance\nLouise\nGrace\nJoy\nToni\nDeanna\nMarlene\nMonique\nNatalie\nRobyn\nBetsy\nJackie\nMarjorie\nMelinda\nShelley\nAudrey\nBetty\nDanielle\nJeanette\nJessica\nMaura\nClaire\nErin\nHope\nJo\nJody\nJune\nRosemary\nJanine\nKelley\nLee\nRoxanne\nShari\nCathleen\nDoris\nKerry\nLillian\nNina\nPhyllis\nRachel\nRosemarie\nTamara\nVicki\nClaudia\nDina\nEmily\nFelicia\nLois\nAmanda\nCarole\nGeraldine\nLucy\nNadine\nVanessa\nCassandra\nJacquelyn\nMarybeth\nSusanne\nTara\nYolanda\nConnie\nDale\nFrancine\nJamie\nMegan\nArlene\nDeirdre\nElisa\nJeanine\nJosephine\nKelli\nKellie\nKimberley\nLoretta\nMarianne\nNorma\nPeggy\nSue\nTraci\nAnnmarie\nBelinda\nCara\nDarcy\nDesiree\nErica\nKarin\nLeigh\nMarion\nMiriam\nPaige\nPatty\nPauline\nTammie\nTherese\nBernadette\nDianna\nGayle\nGwendolyn\nKrista\nLorrie\nLynette\nMadeline\nMarci\nMaryellen\nNora\nPatrice\nRosa\nShawn\nSylvia\nCorinne\nEleanor\nEva\nFaith\nKarla\nLorie\nNoreen\nPatti\nRene\nSabrina\nTanya\nAnnemarie\nBridget\nCharlotte\nJan\nJoanna\nKatharine\nKris\nKristina\nLaureen\nLuz\nNicole\nPaulette\nPriscilla\nRamona\nRonda\nTami\nAileen\nAna\nCandace\nChris\nEsther\nFlorence\nKara\nKaryn\nLauri\nLiza\nNaomi\nSandy\nTricia\nVickie\nVivian\nAngelina\nBernice\nCherie\nDeena\nDeidre\nElisabeth\nHilary\nIris\nJeannine\nJenny\nJodie\nJohanna\nKate\nKimberlee\nKirsten\nLeah\nLoriann\nLorna\nMara\nMarguerite\nRosanne\nSandi\nShannon\nSonia\nTeri\nAbigail\nAdrienne\nAlexandra\nCeleste\nDarleen\nDena\nElena\nElise\nGladys\nJulianne\nLaurene\nLora\nMargarita\nMaritza\nMarsha\nMaryjane\nMona\nPam\nTrudy\nAlisa\nBecky\nDorene\nGinger\nHelene\nKatrina\nLana\nLaurel\nLesley\nLiz\nMarcy\nMaryanne\nMarylou\nMeghan\nRosalind\nSonya\nSophia\nStacie\nTammi\nAimee\nAllyson\nCarlene\nCarmela\nCarolann\nClara\nCorrine\nDebora\nDolores\nEdna\nGeorgette\nInez\nJayne\nJeannette\nJennie\nJocelyn\nJohn\nJolene\nJuanita\nJustine\nKari\nLeona\nLise\nLucinda\nMarcella\nMelody\nMeredith\nMildred\nMoira\nPolly\nRandi\nSharlene\nShelia\nSuzette\nTania\nTonya\nTracie\nTrisha\nZina\nCarleen\nCecelia\nChrista\nColette\nDaisy\nDaphne\nDarla\nDavid\nEdith\nGeorgia\nIvette\nJenifer\nJerilyn\nKendall\nKendra\nKristi\nLeann\nLoren\nLucia\nLucille\nMarcie\nMarina\nMolly\nRosalie\nRoseann\nSondra\nStaci\nSusanna\nVenus\nVera\nAda\nAdriana\nAgnes\nBeatrice\nBethanne\nBrigitte\nCandy\nCarmella\nCaryn\nCelia\nCheri\nChristy\nClare\nColeen\nCorinna\nDara\nDaryl\nDeana\nDeanne\nDineen\nDora\nDorothea\nErika\nFay\nFrancesca\nGlenda\nGwen\nHelena\nHilda\nIda\nJaime\nJana\nJanis\nJeanmarie\nJeannie\nJudi\nKathi\nKyle\nLea\nLena\nLetitia\nLorri\nLourdes\nLuann\nLuanne\nLydia\nMargret\nMarisa\nMarisol\nMindy\nPenelope\nRosalyn\nRuby\nRuthann\nScott\nSonja\nTerrie\nTonia\nTrina\nWendi\nLisa\nKaren\nSusan\nMary\nKimberly\nPatricia\nDonna\nDawn\nElizabeth\nDeborah\nChristine\nKathleen\nLaura\nLinda\nLori\nCheryl\nJennifer\nCynthia\nNancy\nWendy\nMichelle\nDiane\nRobin\nPamela\nSandra\nSharon\nDenise\nDebra\nBarbara\nMichele\nKim\nTracy\nLaurie\nAmy\nJacqueline\nBrenda\nMaria\nLynn\nCatherine\nTammy\nCarol\nMargaret\nAnn\nJulie\nTheresa\nMelissa\nJill\nTina\nMaureen\nPaula\nSuzanne\nKelly\nJanet\nBeth\nHeidi\nAngela\nAnne\nCarolyn\nJoanne\nAndrea\nDarlene\nStephanie\nSheila\nGina\nColleen\nEllen\nHeather\nLeslie\nKatherine\nDiana\nHolly\nRenee\nRebecca\nTeresa\nValerie\nEileen\nCindy\nTracey\nJane\nSarah\nKathryn\nJanice\nChristina\nKristen\nAllison\nJudith\nMarie\nKathy\nDebbie\nKristin\nElaine\nVictoria\nJoan\nKristine\nStacey\nAlison\nDoreen\nRhonda\nVirginia\nAnna\nBonnie\nGail\nAnnette\nJeanne\nMartha\nAlicia\nJoann\nMonica\nSherry\nDana\nJean\nLauren\nLorraine\nLynne\nApril\nCathy\nMelanie\nCarmen\nCaroline\nJoyce\nSherri\nRose\nCharlene\nJodi\nRegina\nAlice\nSally\nTerri\nGloria\nVeronica\nDorothy\nBeverly\nJulia\nMelinda\nMonique\nEvelyn\nJudy\nWanda\nAnita\nCarrie\nHelen\nMarcia\nMarianne\nShelly\nRuth\nPenny\nYvonne\nDeanna\nNatalie\nSara\nStacy\nTara\nJessica\nCarla\nFrances\nLynda\nTamara\nConnie\nGretchen\nRoberta\nSheri\nEmily\nErin\nJamie\nJody\nJoy\nLillian\nMarjorie\nRita\nRosemary\nBridget\nJanine\nKelley\nLee\nMaryann\nNicole\nShelley\nShirley\nMarilyn\nMarybeth\nShari\nClaudia\nDianne\nIrene\nKimberley\nKristina\nTanya\nToni\nYvette\nCathleen\nJeanette\nMarlene\nSheryl\nTraci\nAudrey\nCherie\nCrystal\nGrace\nKerry\nLouise\nMegan\nVicki\nKarin\nMaryellen\nRachel\nSusanne\nDanielle\nHope\nTerry\nAmanda\nConstance\nFelicia\nNorma\nPhyllis\nRoxanne\nSonia\nSonya\nSylvia\nAnnmarie\nCarole\nDina\nDoris\nJo\nJune\nMaura\nPaulette\nRobyn\nYolanda\nAna\nBetsy\nElisabeth\nErica\nJuanita\nNoreen\nPatti\nSamantha\nVanessa\nDesiree\nEva\nJackie\nJeannine\nLeah\nLucy\nPriscilla\nSue\nAdrienne\nBernadette\nBetty\nCharlotte\nEleanor\nJeannette\nJosephine\nKris\nLesley\nMarisol\nNadine\nNina\nShawn\nTeri\nAlexandra\nArlene\nCara\nDeidre\nDeirdre\nGayle\nGeraldine\nGwendolyn\nIngrid\nKarla\nKellie\nLaurel\nLeanne\nLenore\nLoretta\nPeggy\nRonda\nTonya\nTricia\nTrisha\nAnnemarie\nCorinne\nElise\nErika\nJacquelyn\nJoanna\nJulianne\nKaryn\nKrista\nLois\nLuz\nLydia\nTammie\nAlisa\nCeleste\nClaire\nDale\nEdith\nKara\nKimberlee\nMarion\nMia\nAntoinette\nCandace\nCassandra\nCorrine\nDeena\nDianna\nElisa\nFlorence\nHelena\nKate\nKatharine\nKatrina\nKelli\nKendra\nKirsten\nLorrie\nLynette\nMona\nNoelle\nRosa\nRosanne\nRosemarie\nTherese\nBelinda\nCarmela\nDarcy\nElena\nEsther\nFaith\nFrancine\nHilary\nJan\nJeanine\nJenny\nKari\nLeeann\nLeigh\nLorie\nLyn\nMarguerite\nMarisa\nMeredith\nMildred\nPaige\nPauline\nTami\nTrina\nAmber\nBrigid\nCheri\nDaphne\nDebora\nDena\nDeneen\nDolores\nGabrielle\nIris\nIvette\nJayne\nJodie\nJohanna\nJustine\nLaureen\nLauri\nLeona\nLise\nLiza\nLorna\nMargarita\nMaryanne\nMiriam\nRena\nSandy\nVickie\nVivian\nAileen\nBethany\nBobbi\nBonita\nCaryn\nChristie\nEdna\nHannah\nHelene\nJanette\nJanis\nJessie\nKerri\nKristy\nLourdes\nLucia\nMadeline\nMarcy\nMarsha\nMeghan\nMelody\nMolly\nPatrice\nRochelle\nRoseann\nSharyn\nSophia\nStacie\nTracie\nVicky\nWendi\nWhitney\nAda\nAllyson\nAlyssa\nAmelia\nAnnamarie\nBeatrice\nCarlene\nChris\nColeen\nColette\nCora\nDaisy\nDorene\nEmma\nGinger\nGlenda\nGwen\nJenifer\nLena\nLouisa\nMarci\nMargo\nMaritza\nMarla\nNaomi\nRamona\nRebekah\nRobert\nRoseanne\nShannon\nSiobhan\nSondra\nSonja\nSuzette\nVera\nWilliam\nZina\nAbigail\nAngie\nBecky\nBernice\nBillie\nBobbie\nCandice\nCandy\nCarin\nCecile\nClare\nClaudette\nCorinna\nDanette\nDayna\nDeanne\nDiann\nDora\nDori\nElsie\nGenevieve\nGeorgia\nGladys\nHillary\nIlene\nIrma\nJames\nJocelyn\nJohn\nJohnna\nJudi\nKarrie\nKecia\nLea\nLoreen\nLucille\nMarian\nMaribeth\nMaryjane\nMayra\nNanette\nNora\nPatsy\nPatty\nPolly\nRene\nRosalie\nRuby\nSabrina\nShana\nShelby\nShonda\nSimone\nStella\nTerese\nThea\nThomas\nUrsula\nLisa\nKaren\nKimberly\nSusan\nMary\nMichelle\nChristine\nPatricia\nElizabeth\nDawn\nJennifer\nDeborah\nLaura\nDonna\nMichele\nNancy\nKathleen\nLori\nSandra\nPamela\nLinda\nCynthia\nCheryl\nAmy\nSharon\nWendy\nTracy\nDenise\nDiane\nKelly\nKim\nBarbara\nRobin\nMaria\nDebra\nTina\nLynn\nCatherine\nJacqueline\nTammy\nMelissa\nLaurie\nMargaret\nBrenda\nJulie\nTheresa\nBeth\nHeidi\nAnn\nAndrea\nCarol\nJill\nSuzanne\nPaula\nTracey\nStephanie\nSheila\nAngela\nAnne\nKristin\nGina\nMaureen\nKatherine\nEllen\nHeather\nJanet\nJudith\nStacey\nColleen\nDarlene\nTeresa\nSarah\nCarolyn\nBonnie\nCindy\nMarie\nRenee\nRebecca\nKathryn\nDiana\nKristine\nLeslie\nJoanne\nValerie\nHolly\nSherry\nEileen\nChristina\nJanice\nKristen\nJoann\nDana\nGail\nKathy\nRuth\nJane\nMonica\nVictoria\nCharlene\nDebbie\nMartha\nLorraine\nRhonda\nJoan\nCarla\nCarmen\nJean\nTraci\nAnna\nAnnette\nLauren\nSheryl\nTerri\nApril\nLynne\nDorothy\nNicole\nStacy\nVirginia\nWanda\nYvonne\nDoreen\nJessica\nJodi\nYvette\nElaine\nJoyce\nRegina\nShirley\nAlicia\nCathy\nDanielle\nHelen\nMonique\nAlison\nCaroline\nFrances\nRose\nAllison\nGloria\nSherri\nMarlene\nSally\nShelley\nTara\nAnita\nMarcia\nMaura\nSheri\nCarrie\nJeanne\nMelanie\nShelly\nErin\nJudy\nAmanda\nEvelyn\nJody\nRita\nJulia\nShari\nTanya\nAudrey\nFelicia\nJo\nRachel\nSara\nVeronica\nDeanna\nJoy\nNatalie\nPhyllis\nRobyn\nTerry\nBridget\nGretchen\nKirsten\nSonya\nVicki\nBeverly\nCandace\nPaige\nRoberta\nDeirdre\nKelley\nLouise\nMelinda\nPenny\nYolanda\nJanine\nKerry\nKimberley\nMegan\nBetsy\nConstance\nJackie\nTonya\nBernadette\nCassandra\nDianne\nHope\nKristina\nMarilyn\nAlexandra\nAlice\nCathleen\nCorinne\nCrystal\nElisa\nEva\nJamie\nJosephine\nRosemarie\nRoxanne\nSonia\nTamara\nBetty\nClaire\nConnie\nFrancine\nJune\nLynda\nMarianne\nNina\nPeggy\nRosa\nHilary\nKarin\nMarjorie\nMaryann\nShawn\nVanessa\nAnnmarie\nArlene\nClaudia\nEmily\nGeraldine\nGrace\nKris\nLee\nLoretta\nLynette\nMaryanne\nSamantha\nSandy\nTracie\nAudra\nCarole\nDarcy\nElena\nGladys\nJacquelyn\nJoanna\nLaurel\nMarsha\nMaryellen\nPauline\nSonja\nSylvia\nTeri\nToni\nAna\nAntoinette\nBethany\nDebora\nDina\nGayle\nJeanette\nJoelle\nKaryn\nKellie\nLeanne\nLorie\nLucia\nLuz\nMargarita\nMiriam\nNoreen\nRosemary\nSue\nSusanne\nBecky\nCorrine\nDoris\nFaith\nJana\nKate\nKelli\nKrista\nLucille\nLucy\nShannon\nVickie\nAdrienne\nCara\nCharlotte\nCherie\nEdna\nIris\nLeah\nLillian\nMadeline\nMelody\nMia\nNadine\nNoelle\nPriscilla\nTricia\nAlisa\nAngelina\nDianna\nFlorence\nGwendolyn\nIrene\nJodie\nKara\nKarla\nKatrina\nKerri\nLesley\nMarisa\nMarla\nMeredith\nNora\nRosanne\nSherrie\nTammie\nVivian\nAllyson\nBelinda\nCeleste\nDolores\nGinger\nIngrid\nJanette\nJeanine\nJeannette\nJeannine\nJennie\nJudi\nJustine\nKimberlee\nLora\nLorrie\nMargo\nMarisol\nMarybeth\nMildred\nPatrice\nPatti\nSabrina\nTherese\nCandy\nCecilia\nClara\nColette\nDaisy\nDesiree\nDora\nElise\nJan\nJohnna\nKendra\nMaritza\nMarta\nMona\nNoemi\nNorma\nPatty\nSimone\nSophia\nStefanie\nTami\nTrina\nWhitney\nAbigail\nAida\nAnastasia\nChris\nDaria\nDeidre\nEdith\nEleanor\nElisabeth\nJenny\nJohn\nJuanita\nKari\nKatharine\nLaureen\nLeigh\nLois\nMeg\nPaulette\nRena\nAimee\nAmelia\nAnnemarie\nBethanne\nBridgette\nCarey\nCarleen\nClare\nDena\nErica\nIda\nJoellen\nJuliann\nJulianne\nKristi\nKristie\nLauri\nLeila\nLiza\nLizabeth\nLorena\nLoriann\nMarguerite\nMarion\nMigdalia\nMindy\nMyrna\nRandi\nRoseann\nSharyn\nStacie\nTania\nAileen\nAlexis\nAlyssa\nBarbra\nBettina\nBonita\nBrigitte\nBrooke\nCarlene\nCary\nCheri\nClaudette\nColeen\nCourtney\nDanette\nDarcey\nDeana\nDeena\nDeneen\nDiann\nErika\nFilomena\nFrancesca\nGiovanna\nGlenda\nGwen\nHelena\nJanie\nJayne\nJerri\nJessie\nJocelyn\nKathie\nKatie\nKyle\nLeann\nLidia\nLiz\nLucinda\nLynnette\nMagdalena\nMarylou\nMeghan\nMyra\nNanci\nNaomi\nNoel\nNydia\nRachael\nRobbin\nRochelle\nRonda\nRuthann\nSandi\nSerena\nSharlene\nStella\nSusanna\nSusannah\nTiffany\nTrisha\nVera\nVerna\nWendi\nZoe\nLisa\nSusan\nKimberly\nKaren\nMichelle\nElizabeth\nChristine\nMary\nJennifer\nDawn\nLaura\nDeborah\nMichele\nPatricia\nAmy\nKathleen\nDonna\nSandra\nLori\nCheryl\nCynthia\nNancy\nLinda\nPamela\nWendy\nTammy\nDiane\nDenise\nTracy\nKelly\nMelissa\nSharon\nBarbara\nTina\nMaria\nDebra\nKim\nJulie\nLaurie\nStephanie\nTheresa\nBrenda\nLynn\nCatherine\nSuzanne\nAnn\nJill\nRobin\nKatherine\nMargaret\nAndrea\nCarol\nBeth\nGina\nHeather\nJacqueline\nRebecca\nTracey\nKristen\nAnne\nHeidi\nPaula\nChristina\nRenee\nCarolyn\nMaureen\nSarah\nJanet\nAngela\nJoanne\nStacey\nKristin\nLeslie\nHolly\nDiana\nApril\nColleen\nVictoria\nBonnie\nSheila\nTeresa\nJudith\nKathryn\nSherry\nEllen\nValerie\nEileen\nDarlene\nCindy\nJanice\nKristine\nDana\nRachel\nCarrie\nLauren\nCarmen\nDebbie\nErin\nTerri\nMonica\nDoreen\nJane\nStacy\nNicole\nRhonda\nJodi\nMarie\nAnnette\nJean\nKathy\nAnna\nAlicia\nAlison\nAllison\nAmanda\nWanda\nDanielle\nJoan\nSheryl\nMartha\nMelanie\nEvelyn\nRegina\nRoberta\nJoann\nJulia\nMonique\nGail\nHelen\nSally\nBridget\nElaine\nMarilyn\nTraci\nYvette\nCarla\nCharlene\nDorothy\nLynne\nRose\nRuth\nSheri\nTanya\nTara\nAdrienne\nCathy\nJoyce\nMaryann\nMelinda\nSherri\nVeronica\nJessica\nShirley\nTonya\nYvonne\nAnnmarie\nAudra\nLorraine\nTamara\nKarin\nKimberley\nVicki\nVirginia\nDina\nKerry\nLeigh\nSonia\nCaroline\nCathleen\nJeanne\nAudrey\nBeverly\nKelley\nShari\nAlice\nFelicia\nLee\nMarianne\nPenny\nSabrina\nShelley\nTerry\nAnita\nDianne\nGretchen\nMarlene\nYolanda\nCrystal\nDeanna\nJeanette\nJoy\nKristina\nNatalie\nShannon\nJosephine\nKirsten\nMaura\nMegan\nPauline\nSara\nSonya\nToni\nLucy\nPatti\nCassandra\nDoris\nEmily\nFrances\nGloria\nIrene\nJody\nLillian\nLouise\nMarcia\nMarybeth\nShelly\nBernadette\nBetsy\nCherie\nClaudia\nCourtney\nDeirdre\nErica\nHope\nIngrid\nJanine\nLeah\nNorma\nPriscilla\nSamantha\nTammie\nVivian\nAntoinette\nCarole\nDarcy\nDebora\nElisa\nJodie\nKara\nLoretta\nLynda\nRita\nRoxanne\nShawn\nElise\nFrancine\nJoanna\nJudy\nKimberlee\nKrista\nLeanne\nRosemarie\nSusanne\nTiffany\nVanessa\nCandace\nConstance\nElisabeth\nJackie\nJamie\nJeannette\nKelli\nLynette\nNina\nRosemary\nAna\nArlene\nCharlotte\nDeana\nElena\nErika\nGayle\nGrace\nKari\nMarci\nNadine\nPaige\nPeggy\nRosa\nSue\nAlexandra\nCorinne\nFaith\nGeraldine\nGwen\nJacquelyn\nKerri\nKris\nLara\nMadeline\nMaribeth\nMarion\nMarisol\nMaryellen\nMichael\nPhyllis\nRosanne\nSonja\nAbigail\nAmber\nBethany\nBetty\nChris\nChrista\nEleanor\nEva\nGwendolyn\nIris\nJustine\nKarla\nKatharine\nKatrina\nLesley\nLuz\nMaryanne\nMelody\nMeredith\nRamona\nStacie\nTammi\nAngelina\nCheri\nClaire\nConnie\nDeidre\nDesiree\nDianna\nEdith\nFlorence\nJune\nKellie\nLaureen\nLea\nLorie\nLydia\nMargo\nMarisa\nMarissa\nMeghan\nMiriam\nNoelle\nNora\nPatty\nRena\nRoseann\nVickie\nAllyson\nAnnemarie\nBelinda\nCarey\nConcetta\nGladys\nJenny\nJuanita\nJulianne\nLora\nLorrie\nLucinda\nMaritza\nMildred\nMolly\nNatasha\nNichelle\nStefanie\nSuzette\nTrina\nTrisha\nWendi\nAida\nAshley\nCandice\nCara\nCristina\nDeanne\nHelena\nIda\nJohanna\nKaryn\nKendra\nLaurel\nLauri\nLiza\nLourdes\nLucia\nMarjorie\nMarsha\nMia\nMigdalia\nMilagros\nOlga\nPaulette\nRachael\nRobyn\nSusie\nUrsula\nAimee\nAlisa\nAmelia\nAretha\nBernice\nBillie\nCari\nCeleste\nChristie\nChristy\nClaudette\nColette\nDale\nDarla\nDelia\nDolores\nDorinda\nEmma\nGinger\nHilary\nIvette\nJames\nJeanine\nJeannine\nJo\nJocelyn\nJoseph\nKate\nKatie\nKay\nKeri\nKerrie\nLana\nLena\nLenora\nMaribel\nMark\nMayra\nMoira\nMonika\nNoreen\nPatrice\nPolly\nRonda\nSandy\nSarita\nSelena\nSylvia\nSylvie\nTami\nTracie\nAda\nAdele\nAileen\nAlissa\nBarbra\nBlanca\nCandy\nCarmela\nCaryn\nClaudine\nCorrine\nDaneen\nDayna\nDelores\nDena\nDorothea\nEsther\nEugenia\nGeorgia\nGiselle\nJanette\nJenifer\nJeri\nKristy\nLeeanne\nLeona\nLisette\nLois\nLoren\nLuisa\nLynnette\nMara\nMarcy\nMarguerite\nMarina\nMarla\nMarlo\nMarnie\nMaryjo\nMona\nRachelle\nRae\nRichard\nRochelle\nRoxann\nSandi\nSharlene\nShelby\nTania\nTonia\nVicky\nLisa\nJennifer\nKimberly\nMichelle\nSusan\nKaren\nChristine\nElizabeth\nLaura\nDawn\nKelly\nMary\nDeborah\nMichele\nAmy\nMelissa\nPatricia\nKathleen\nDonna\nTracy\nTammy\nLori\nWendy\nNancy\nCynthia\nPamela\nSandra\nCheryl\nSharon\nLinda\nMaria\nHeather\nBarbara\nDebra\nTina\nCatherine\nDenise\nStephanie\nDiane\nJulie\nLynn\nRobin\nSuzanne\nKim\nTheresa\nJill\nSarah\nChristina\nAnn\nBrenda\nMargaret\nCarol\nCarolyn\nBeth\nAndrea\nHeidi\nPaula\nStacey\nJacqueline\nKristen\nRebecca\nKatherine\nAngela\nKristin\nTracey\nGina\nDiana\nMaureen\nRenee\nLaurie\nAnne\nDarlene\nKristine\nJanet\nColleen\nEileen\nNicole\nHolly\nTeresa\nCindy\nApril\nDana\nJoanne\nLeslie\nVictoria\nStacy\nCarrie\nDanielle\nKathryn\nAnna\nSherry\nTanya\nRhonda\nSheila\nCarmen\nBonnie\nEllen\nValerie\nGail\nJodi\nMarie\nCaroline\nMonica\nJanice\nCharlene\nRachel\nSara\nAlison\nEvelyn\nJane\nJessica\nSherri\nAllison\nJean\nJudith\nTara\nTerri\nAlicia\nCarla\nJulia\nKirsten\nSheri\nSheryl\nTonya\nDeanna\nRose\nMonique\nYvonne\nRegina\nVirginia\nDoreen\nJoyce\nKathy\nKerry\nMelinda\nVeronica\nAnnette\nElaine\nErica\nHelen\nJoann\nShannon\nYolanda\nAmanda\nKarin\nLauren\nMegan\nRita\nRuth\nTamara\nFrances\nJoy\nLynne\nErin\nKristina\nLorraine\nShelley\nSonia\nDorothy\nGloria\nLara\nMelanie\nTerry\nCandace\nCrystal\nErika\nMarlene\nRosemary\nAnita\nJacquelyn\nKelley\nWanda\nAdrienne\nDebbie\nDina\nJamie\nKara\nMaura\nShirley\nSusanne\nBridget\nJeanne\nSally\nShelly\nCassandra\nEva\nFelicia\nJoan\nNadine\nRoberta\nYvette\nBelinda\nBeverly\nDianne\nGeraldine\nJody\nKellie\nKimberley\nLeigh\nLucy\nMarilyn\nMarjorie\nMartha\nNatalie\nRosemarie\nShawn\nCathy\nEmily\nGretchen\nIrene\nKari\nKelli\nRosa\nSamantha\nVanessa\nAlice\nDarcy\nKrista\nLeah\nLee\nLillian\nPenny\nVicki\nAudra\nChristy\nConnie\nDeirdre\nLouise\nLuz\nLynda\nMiriam\nTracie\nAimee\nAnnmarie\nAudrey\nJeanette\nTiffany\nToni\nClaudia\nJanine\nKerri\nLesley\nMarianne\nRoxanne\nTraci\nAlisa\nCharlotte\nIris\nJodie\nKarla\nMarla\nRamona\nSabrina\nShari\nArlene\nCarole\nConstance\nCourtney\nEdith\nFrancine\nHilary\nJune\nKristi\nLucia\nMaritza\nMigdalia\nNora\nNorma\nPaige\nPatti\nPeggy\nRobyn\nAlexandra\nAna\nBernadette\nCherie\nJo\nJulianne\nLaurel\nMaryann\nMeredith\nSandy\nSonja\nSonya\nTami\nTammie\nTricia\nAnnemarie\nBecky\nDena\nDesiree\nEleanor\nGwendolyn\nHope\nJoanna\nJosephine\nJudy\nMarisa\nMarybeth\nMeghan\nRaquel\nStefanie\nSue\nSylvia\nAllyson\nAlyssa\nAngelina\nCarey\nDaisy\nDeanne\nDeidre\nKate\nLorrie\nLynette\nPhyllis\nRonda\nAntoinette\nBrooke\nCatharine\nCeleste\nColeen\nCorinne\nElisa\nGrace\nJeannette\nJocelyn\nJuanita\nKatharine\nKatrina\nLorie\nLucinda\nMarcella\nMarcy\nMarnie\nMarsha\nMaryellen\nNina\nPauline\nPolly\nPriscilla\nSondra\nSusannah\nBeatrice\nBetsy\nBlanca\nCheri\nChris\nChristie\nCristina\nDaphne\nDeana\nDianna\nElena\nElise\nFaith\nGayle\nGladys\nJayne\nJeanine\nJeannine\nJohanna\nJustine\nKerrie\nKris\nLaureen\nLea\nLeanne\nLois\nMadeline\nMolly\nPatrice\nSherrie\nSuzette\nAida\nAshley\nBethany\nCathleen\nCorrine\nDoris\nElisabeth\nFrancesca\nIvette\nJeannie\nJohnna\nKristie\nLeona\nLissette\nLora\nLoretta\nMarcia\nMarguerite\nMaribel\nMaribeth\nMarisol\nMichael\nRoseann\nStaci\nTania\nTeri\nTia\nTonia\nTrina\nVicky\nBetty\nCandice\nCara\nCarmela\nCathryn\nDolores\nEnid\nEsther\nFlorence\nGinger\nIda\nJenifer\nJennie\nJolene\nKaryn\nKendra\nKimberlee\nKristy\nLauri\nLourdes\nMadelyn\nMarion\nMarlo\nMelody\nOlga\nRachael\nRosanne\nShelia\nShelli\nSophia\nTammi\nVickie\nWhitney\nAileen\nAlanna\nAmber\nAmelia\nAnissa\nBridgette\nCaitlin\nCamille\nCaren\nCari\nCarie\nCarlene\nCaterina\nClaire\nClaudine\nConcetta\nDarcey\nDawne\nDebora\nDelores\nEmma\nEve\nGreta\nHazel\nJackie\nJan\nJenny\nJoelle\nJolie\nJoseph\nKenya\nKristyn\nLana\nLesa\nLisette\nLiza\nLorna\nLydia\nMargarita\nMargo\nMarina\nMarissa\nMaryanne\nMaryjane\nMaryjo\nMayra\nMildred\nMindy\nMona\nMyrna\nNichelle\nNoel\nNoelle\nPenelope\nRae\nRochelle\nRuby\nSiobhan\nTherese\nLisa\nJennifer\nKimberly\nMichelle\nChristine\nSusan\nLaura\nKaren\nElizabeth\nDawn\nAmy\nKelly\nMelissa\nMary\nPatricia\nHeather\nMichele\nTracy\nKathleen\nDeborah\nDonna\nTammy\nLori\nJulie\nNancy\nSandra\nPamela\nLinda\nCynthia\nWendy\nTina\nDenise\nCheryl\nDiane\nCatherine\nMaria\nStephanie\nSharon\nRobin\nDebra\nKristen\nNicole\nBarbara\nBrenda\nKristin\nRebecca\nKatherine\nSarah\nLynn\nChristina\nJill\nLaurie\nAndrea\nKim\nTracey\nMargaret\nStacey\nJacqueline\nSuzanne\nGina\nAnn\nCarol\nHeidi\nTheresa\nAngela\nRenee\nBeth\nCarolyn\nCarrie\nDana\nDanielle\nTara\nPaula\nColleen\nRachel\nLeslie\nKristine\nHolly\nKathryn\nDiana\nVictoria\nMaureen\nJessica\nStacy\nAnna\nMonica\nTeresa\nShannon\nJanet\nSheila\nJodi\nValerie\nAnne\nEllen\nJoanne\nDarlene\nAlicia\nKerry\nKathy\nTricia\nRhonda\nTanya\nLauren\nMelanie\nErin\nSara\nDeanna\nMarie\nRegina\nApril\nEileen\nGail\nSherry\nBonnie\nMonique\nVeronica\nCarla\nCarmen\nJudith\nKellie\nSamantha\nCindy\nAllison\nJulia\nYolanda\nJane\nKelley\nKirsten\nKristina\nSherri\nJanice\nDoreen\nElaine\nJean\nJamie\nTerri\nTraci\nAnnette\nErica\nKelli\nMelinda\nWanda\nCharlene\nSheri\nAlison\nCathy\nMarisol\nNatalie\nTerry\nAmanda\nAnnmarie\nBridget\nDina\nPenny\nJody\nJoyce\nMarilyn\nRose\nTamara\nTonya\nDebbie\nEmily\nJudy\nKarin\nLynne\nMegan\nShari\nAlexandra\nChristy\nGretchen\nHelen\nJoy\nMeredith\nSally\nShelley\nSonia\nToni\nVirginia\nAdrienne\nDeirdre\nDorothy\nJoann\nKara\nKimberley\nMaura\nShirley\nYvonne\nClaudia\nFelicia\nJoan\nRobyn\nShelly\nJeanette\nJoanna\nKari\nKrista\nLara\nLee\nMarlene\nMartha\nRoberta\nRosemary\nSheryl\nSonya\nAimee\nCandace\nCassandra\nCathleen\nDeana\nEvelyn\nFrances\nTammie\nYvette\nAlisa\nCaroline\nErika\nJodie\nLynda\nMarcia\nPeggy\nTiffany\nAna\nAudrey\nCara\nCrystal\nDianne\nKatrina\nLorraine\nPaige\nCourtney\nGloria\nHilary\nIrene\nJeannette\nLeigh\nRosa\nTracie\nVanessa\nElisa\nEva\nLillian\nLuz\nNadine\nAbigail\nAudra\nBeverly\nJacquelyn\nJustine\nKatharine\nMarianne\nRita\nRoxanne\nRuth\nTrina\nVicki\nAnita\nAntoinette\nBetsy\nCherie\nHope\nJanine\nJosephine\nLaurel\nLouise\nSabrina\nAlice\nBernadette\nDena\nElisabeth\nKimberlee\nKristy\nLeah\nLucy\nRaquel\nSherrie\nSusanne\nTrisha\nCeleste\nChristie\nConnie\nCorinne\nDeanne\nDeidre\nFrancine\nGayle\nGrace\nJanette\nJeanne\nJo\nKristi\nLucinda\nMadeline\nMarcy\nMargarita\nMaribel\nMaryann\nMarybeth\nMiriam\nRamona\nRonda\nAlyssa\nAngelina\nArlene\nBecky\nCarole\nDarcy\nGwendolyn\nJeannine\nKerri\nLorie\nMarnie\nRachael\nStacie\nTeri\nAllyson\nChrista\nColeen\nDoris\nElise\nJeanine\nJune\nKaryn\nLoretta\nLynette\nMarci\nMarsha\nNina\nPhyllis\nPriscilla\nRosemarie\nSandy\nStaci\nTami\nTonia\nVicky\nAmber\nAmelia\nAnnemarie\nAshley\nCandice\nCharlotte\nCheri\nDionne\nIris\nIvette\nJackie\nJohanna\nKendra\nLeanne\nLora\nLydia\nMarisa\nMaritza\nMichael\nNoelle\nRosanne\nShawn\nStefanie\nTherese\nWhitney\nBelinda\nBetty\nCarmela\nDaryl\nDebora\nDeena\nFaith\nGillian\nJenny\nJoelle\nJuanita\nJulianne\nKeri\nLoriann\nMarjorie\nMarlo\nMaryellen\nNaomi\nNorma\nPauline\nPenelope\nRobert\nRosalind\nSue\nTammi\nVivian\nWendi\nAida\nAnnie\nAntonia\nBethany\nBillie\nCarey\nChristen\nCristina\nDale\nDaniela\nDolores\nEdith\nEsther\nFlorence\nGeorgette\nGeraldine\nGladys\nJenifer\nKarla\nKris\nLauri\nLenore\nLesley\nLorna\nMarissa\nMona\nNora\nPatrice\nPolly\nSuzette\nSylvia\nTabitha\nUrsula\nAlexis\nAngelique\nBeatriz\nCameron\nCandy\nClara\nClare\nColette\nConstance\nDaisy\nDamaris\nDesiree\nDianna\nDori\nEleanor\nEmma\nIngrid\nJennie\nJessie\nJuliet\nKarrie\nKeisha\nKyle\nLea\nLeona\nMarcella\nMarion\nMayra\nMilagros\nMildred\nMyra\nNichole\nPatty\nPaulette\nRochelle\nSerena\nSharlene\nShawna\nSimone\nTia\nValarie\nAda\nAlissa\nAntonietta\nBertha\nBethann\nCarlene\nCecilia\nChandra\nChris\nClaire\nCorrine\nDanette\nDawne\nDayna\nDeann\nElena\nErnestine\nEthel\nGeorgia\nGia\nGinger\nGwen\nHannah\nHelena\nHilda\nHillary\nIsabel\nJanis\nJeannie\nKathie\nKristie\nLana\nLeann\nLina\nLisette\nLissette\nLiza\nLizette\nLoren\nLorri\nLorrie\nLuann\nLynnette\nMargot\nMarla\nMeg\nMelody\nMigdalia\nMindy\nNelida\nNoreen\nPatti\nRebekah\nRichard\nRosalie\nShana\nSondra\nSophia\nStella\nTania\nVera\nJennifer\nLisa\nKimberly\nMichelle\nChristine\nAmy\nDawn\nElizabeth\nMelissa\nSusan\nKaren\nHeather\nTracy\nLaura\nMary\nKelly\nMichele\nTammy\nKathleen\nJulie\nPatricia\nDeborah\nLori\nWendy\nCynthia\nDonna\nMaria\nPamela\nSandra\nNancy\nCheryl\nNicole\nLinda\nTina\nSharon\nStacey\nKristen\nDenise\nTracey\nKristin\nRebecca\nStephanie\nCatherine\nRobin\nAndrea\nBarbara\nAngela\nShannon\nSarah\nJessica\nKatherine\nSuzanne\nRachel\nDebra\nDiane\nAnn\nChristina\nJill\nHeidi\nGina\nBrenda\nMargaret\nBeth\nRenee\nTheresa\nDana\nLynn\nStacy\nTara\nDanielle\nKim\nLaurie\nCarrie\nVictoria\nHolly\nLeslie\nJacqueline\nKristine\nCarol\nMaureen\nAnne\nSherry\nTanya\nAllison\nDiana\nMelanie\nPaula\nAlison\nErin\nJodi\nValerie\nColleen\nJoanne\nKathryn\nJanet\nBonnie\nCindy\nCarolyn\nKrista\nSheila\nDeanna\nTricia\nJudith\nYolanda\nCarla\nTeresa\nMarie\nEileen\nAnna\nApril\nKristina\nTonya\nTraci\nKellie\nAmanda\nDarlene\nEllen\nJean\nCarmen\nJulia\nMonica\nWanda\nAlicia\nErica\nJody\nKerry\nMarisol\nSheri\nCaroline\nCharlene\nLauren\nSherri\nKelley\nMegan\nRhonda\nSonia\nTamara\nTracie\nKathy\nRegina\nDina\nJamie\nJane\nRuth\nEmily\nKara\nKirsten\nMeredith\nMonique\nSamantha\nElaine\nTerri\nYvette\nCathy\nDoreen\nErika\nGail\nJanice\nSara\nGretchen\nKarin\nRosa\nAnnmarie\nCassandra\nCrystal\nEvelyn\nPenny\nJeanne\nKimberley\nMelinda\nNatalie\nVirginia\nAnita\nDorothy\nMarilyn\nRose\nSheryl\nVanessa\nYvonne\nAnnette\nCherie\nFrances\nIrene\nJoy\nJoyce\nRachael\nBeverly\nKelli\nMarcia\nCathleen\nChristy\nJanine\nLeigh\nTiffany\nVeronica\nAimee\nAlisa\nHelen\nJoann\nLynne\nPeggy\nRoberta\nShari\nShawn\nShelly\nToni\nAlexandra\nJeanette\nJoan\nMarlene\nMaura\nMeghan\nNatasha\nAlice\nAna\nBridget\nJeanine\nJenny\nMarjorie\nSally\nShelley\nStacie\nTerry\nTrina\nClaudia\nFelicia\nJoanna\nKatharine\nKatrina\nMarsha\nAudra\nAudrey\nBelinda\nBrooke\nCandace\nChrista\nDarcy\nEva\nHilary\nHope\nIris\nKristi\nKristie\nMadeline\nMarci\nMaribel\nMaryann\nRosemary\nShirley\nTania\nArlene\nCara\nCharlotte\nCourtney\nDianne\nJeannine\nJosephine\nLara\nLesley\nLorraine\nLouise\nMarianne\nPaige\nRobyn\nAdrienne\nAnnemarie\nConnie\nDebbie\nDeidre\nGladys\nJodie\nJudy\nKerri\nLee\nMartha\nMolly\nNaomi\nPriscilla\nRaquel\nSabrina\nStefanie\nTeri\nVicki\nAngel\nBecky\nColeen\nDeana\nDianna\nJeannette\nJune\nKari\nKendra\nLeah\nLisette\nLucy\nPauline\nRoxanne\nTami\nBetty\nDena\nDesiree\nElisabeth\nFaith\nGayle\nGloria\nIngrid\nJacquelyn\nJohanna\nJulianne\nKeri\nLillian\nNadine\nNorma\nPaulette\nSonya\nSusanne\nTrisha\nBernadette\nBethany\nChristie\nFrancine\nIvette\nKaryn\nKeisha\nLissette\nLuz\nMargarita\nRita\nRosemarie\nTabitha\nTammie\nTherese\nWendi\nAllyson\nAngelina\nAshley\nBillie\nChandra\nChris\nConstance\nDeirdre\nDoris\nElena\nElise\nElissa\nGrace\nGwendolyn\nJenifer\nJocelyn\nJuanita\nKenya\nKerrie\nKristy\nLeanne\nLucia\nLynette\nMarcie\nMaritza\nMarnie\nNichole\nNina\nRochelle\nBernice\nBetsy\nCarey\nCorinna\nDolores\nGabrielle\nJackie\nJennie\nJo\nJoelle\nJohn\nKarrie\nKate\nKimberlee\nLauri\nLena\nLorrie\nMarguerite\nMarlo\nMaryellen\nMelody\nSherrie\nSylvia\nTasha\nTia\nValarie\nWilma\nAmie\nAnissa\nBridgette\nCamille\nCandice\nCeleste\nCheri\nClaire\nCorinne\nCristina\nDaisy\nDebora\nDelores\nGreta\nHillary\nJuliet\nKarla\nKatie\nLatonya\nLois\nLora\nLydia\nMarion\nMarylou\nMeg\nMelisa\nMilagros\nMiriam\nMyra\nNicolle\nPatti\nPenelope\nShana\nShauna\nShawna\nSonja\nTammi\nTonia\nVicky\nAbigail\nAida\nAlexis\nAlyssa\nAnnie\nCandy\nCarole\nClaudine\nDara\nElisa\nEricka\nGinger\nGwen\nJayne\nJeanna\nJuliann\nJustine\nKarri\nKris\nKristan\nLaurel\nLea\nLia\nLily\nLiza\nLoren\nLoretta\nLorie\nLynda\nMarcella\nMarcy\nMarisa\nMarissa\nMarla\nMigdalia\nMildred\nMindy\nNoel\nNoelle\nPia\nRachelle\nRebekah\nSandy\nScott\nShonda\nSimone\nTori\nVera\nVivian\nWhitney\nAlma\nAmber\nAngeline\nAntoinette\nBobbi\nBobbie\nBridgett\nBrigitte\nBritt\nBuffy\nCarmela\nCaryn\nChristen\nChrystal\nCristin\nDamaris\nDayna\nDeena\nDionne\nEdith\nEugenia\nEvette\nFatima\nFlorence\nFrancesca\nGeneva\nGeraldine\nGillian\nIsabel\nIvy\nJessie\nKyle\nLana\nLaurieann\nLoriann\nLynnette\nMargo\nMarina\nMaxine\nMeridith\nMia\nMoira\nMona\nPatrice\nPhyllis\nRene\nRobbin\nRosanna\nShannan\nStaci\nStella\nTabatha\nTonja\nVickie\nZoraida\nJennifer\nLisa\nKimberly\nMichelle\nAmy\nChristine\nMelissa\nSusan\nElizabeth\nKaren\nDawn\nHeather\nTammy\nTracy\nMary\nKelly\nLaura\nDeborah\nMichele\nPamela\nCynthia\nKathleen\nJulie\nNicole\nLori\nRebecca\nSandra\nWendy\nPatricia\nTina\nStacey\nShannon\nSarah\nMaria\nDenise\nKristen\nStephanie\nNancy\nAndrea\nKristin\nJessica\nDonna\nChristina\nCheryl\nSharon\nTracey\nHeidi\nDebra\nDiane\nStacy\nAngela\nDana\nLynn\nDanielle\nCarrie\nRobin\nLinda\nCatherine\nSuzanne\nJill\nKatherine\nHolly\nRachel\nTara\nGina\nLaurie\nTheresa\nMelanie\nAnn\nColleen\nAlison\nTanya\nBrenda\nAllison\nBeth\nKim\nLeslie\nBarbara\nJacqueline\nCindy\nVictoria\nPaula\nMargaret\nTricia\nKathryn\nDiana\nRenee\nKerry\nAnne\nKristine\nMonica\nErin\nValerie\nKrista\nAlicia\nJodi\nAmanda\nAnna\nCarolyn\nLauren\nMaureen\nJoanne\nMarisol\nApril\nErica\nSheila\nCarol\nSara\nJanet\nTeresa\nMegan\nSherry\nAimee\nJean\nMeredith\nTamara\nBonnie\nDeanna\nMarie\nSamantha\nMonique\nEmily\nErika\nJanice\nRhonda\nEllen\nEvelyn\nKathy\nSonia\nYolanda\nMelinda\nWanda\nJamie\nTiffany\nTonya\nVanessa\nCarmen\nCassandra\nCrystal\nDarlene\nSherri\nJody\nKristina\nKerri\nCharlene\nEileen\nMarcy\nShelley\nTraci\nCarla\nSheri\nTerri\nAnita\nCathy\nAnnette\nElaine\nJudith\nJulia\nKara\nMarilyn\nRegina\nAlice\nChrista\nDorothy\nLorraine\nStacie\nChristy\nDarcy\nFelicia\nJoy\nLesley\nNatalie\nCaroline\nHope\nJodie\nKelli\nMaura\nSonya\nTracie\nDoreen\nGail\nGretchen\nJenny\nJoyce\nKatrina\nMartha\nPenny\nRose\nVeronica\nVirginia\nAlexandra\nBernadette\nBridget\nBrooke\nDebbie\nHelen\nJudy\nKirsten\nRobyn\nRuth\nSally\nShelly\nTrina\nCourtney\nIrene\nKimberley\nLara\nLeigh\nMaritza\nSabrina\nAudra\nBetsy\nCara\nCathleen\nCristina\nGloria\nJoann\nKellie\nLillian\nMarci\nRoxanne\nCheri\nClaudia\nEva\nJane\nJeanette\nJoan\nJoanna\nKelley\nLeah\nMaryann\nRosemary\nStefanie\nToni\nVicki\nAntoinette\nAudrey\nCandace\nCherie\nDeana\nDina\nFrances\nHilary\nIris\nJenifer\nKeri\nLuz\nLynne\nMarlene\nMelody\nNatasha\nRochelle\nAna\nBelinda\nFrancine\nJacquelyn\nKarin\nLynda\nNina\nRachael\nShirley\nTania\nTerry\nAdrienne\nAlisa\nAlyssa\nAnnmarie\nBecky\nDianne\nElisa\nEricka\nFaith\nJanine\nKari\nKristi\nLouise\nMarianne\nNadine\nShawn\nStaci\nTasha\nYvette\nBeverly\nCandice\nCarey\nJeannine\nKatharine\nKatie\nKeisha\nKendra\nKristie\nMeghan\nMildred\nNikki\nSandy\nShari\nSheryl\nTabitha\nWendi\nBethany\nBetty\nClaire\nDena\nDesiree\nDoris\nGladys\nJeanne\nJeannette\nJennie\nKarla\nLora\nLucy\nMarcia\nMaribel\nMarisa\nMarlo\nNichole\nOlga\nRita\nSusanne\nYvonne\nAmber\nAmie\nArlene\nCeleste\nConnie\nDaisy\nGwendolyn\nJocelyn\nJohanna\nKaryn\nKimberlee\nKristy\nLiza\nLoretta\nMadeline\nNaomi\nPeggy\nPriscilla\nRoberta\nSue\nTami\nTammie\nTeri\nAbigail\nAngel\nAngelina\nAshley\nCharlotte\nDale\nDaphne\nDeirdre\nElena\nIsabel\nIvette\nJeanine\nLeanne\nLenore\nLorie\nLucia\nLydia\nMarcella\nMarjorie\nMarnie\nNorma\nPauline\nRamona\nRaquel\nRosa\nRosemarie\nSerena\nSylvia\nTanisha\nTisha\nTonia\nWhitney\nYesenia\nAlanna\nAllyson\nAlyson\nAnnamaria\nAnnie\nBeatrice\nDebora\nDemetria\nEdna\nGinger\nGrace\nHelena\nKarrie\nKyle\nLatisha\nLaurel\nLee\nLeticia\nLucille\nLyn\nLynette\nMagaly\nMarcie\nMargarita\nMarion\nMaryellen\nNoelle\nPaige\nPhyllis\nSondra\nTia\nTyra\nVivian\nAdriana\nAlexis\nAlisha\nAlissa\nBillie\nBobbi\nBrigitte\nChristie\nColette\nConstance\nCorinne\nDamaris\nDaniela\nDarcie\nDawne\nDionne\nEleanor\nElisabeth\nGabrielle\nGayle\nIngrid\nJoelle\nJosephine\nJosie\nJulianne\nLea\nMara\nMarybeth\nMayra\nMichael\nMindy\nMiriam\nMolly\nNichelle\nNoel\nOlivia\nPaulette\nRebekah\nSherrie\nSonja\nTammi\nTawana\nAmelia\nAnastasia\nAngelique\nAnissa\nAnnemarie\nBlanca\nBobbie\nCandida\nCandy\nCarole\nChandra\nChantel\nCherise\nChristiane\nClaudine\nDara\nDarci\nDayna\nDeena\nDeidre\nDolores\nElise\nEliza\nGeorgette\nGeorgia\nGiovanna\nHillary\nJackie\nJaime\nJami\nJana\nJohn\nJustine\nKenya\nKisha\nKris\nKyla\nLatasha\nLeeann\nLissette\nLois\nLorri\nLorrie\nLucinda\nMaggie\nMarla\nMarsha\nMaryanne\nPia\nRandi\nRonda\nRosalie\nRosanna\nShana\nShaun\nShelby\nShonda\nSuzette\nTori\nTrisha\nTrista\nTwana\nVera\nJennifer\nLisa\nMichelle\nAmy\nKimberly\nMelissa\nHeather\nChristine\nNicole\nElizabeth\nDawn\nKaren\nMichele\nSusan\nRebecca\nLaura\nKelly\nKathleen\nJulie\nStephanie\nMary\nTammy\nCynthia\nTracy\nWendy\nPatricia\nJessica\nDeborah\nLori\nSarah\nShannon\nTina\nMaria\nKristin\nStacey\nCheryl\nSandra\nAngela\nDenise\nChristina\nKristen\nDonna\nRachel\nDanielle\nTara\nAndrea\nJill\nStacy\nNancy\nHeidi\nDiane\nCatherine\nSuzanne\nPamela\nTanya\nCarrie\nLynn\nMelanie\nRenee\nBarbara\nKathryn\nLinda\nRobin\nKatherine\nGina\nHolly\nTheresa\nErin\nSharon\nDana\nMargaret\nAllison\nBrenda\nAlicia\nBeth\nLaurie\nCarolyn\nAnn\nDebra\nAlison\nJodi\nTracey\nLeslie\nApril\nSara\nJacqueline\nVictoria\nKerry\nAmanda\nColleen\nPaula\nSherry\nKristina\nMegan\nCindy\nDiana\nKrista\nKristine\nValerie\nAnna\nErica\nAnne\nCarol\nLauren\nSherri\nTricia\nYolanda\nMonica\nDeanna\nJanet\nMelinda\nTonya\nCarmen\nKara\nKim\nMarisol\nSamantha\nTeresa\nJean\nSheila\nCrystal\nKirsten\nMaureen\nEileen\nEvelyn\nJoanne\nRhonda\nMarie\nMeredith\nMonique\nRegina\nShelley\nTamara\nVanessa\nJanice\nAimee\nJoanna\nDarlene\nEmily\nGretchen\nBonnie\nCharlene\nShelly\nWanda\nElaine\nErika\nHope\nJudith\nBecky\nCara\nChristy\nJody\nKelley\nKendra\nTasha\nTraci\nCaroline\nCassandra\nEllen\nJulia\nKathy\nSheri\nAbigail\nAnnmarie\nBridget\nCarla\nCathy\nDina\nJamie\nJenny\nMarcy\nVicki\nYvette\nYvonne\nAna\nAudrey\nKerri\nPenny\nRosa\nRose\nRuth\nTiffany\nToni\nAlexandra\nAnita\nAudra\nCandace\nGail\nKristy\nLeah\nMeghan\nRobyn\nVeronica\nAnnette\nBethany\nBetsy\nChristie\nDorothy\nJenifer\nJodie\nKatrina\nLuz\nMarianne\nMartha\nMolly\nNina\nSonia\nVirginia\nAdrienne\nCristina\nDoreen\nEricka\nFelicia\nJoyce\nKarin\nKeri\nLatanya\nMaribel\nNaomi\nSally\nTerri\nAngel\nCathleen\nGloria\nJoan\nJohanna\nJoy\nJune\nMaura\nNatalie\nNatasha\nSheryl\nStefanie\nSylvia\nBeverly\nChrista\nClaudia\nJeanne\nKellie\nKristi\nKristie\nMaritza\nRachael\nSabrina\nTeri\nTerry\nTracie\nBrandy\nConnie\nElisa\nFrances\nJacquelyn\nJennie\nKari\nLee\nLucy\nLynne\nMadeline\nMarcia\nNikki\nShelby\nShirley\nSonya\nWendi\nAlexis\nAlice\nAllyson\nCherie\nCourtney\nDesiree\nGladys\nGrace\nIngrid\nJane\nKate\nKatie\nKerrie\nKimberley\nLorraine\nLynette\nMarcie\nMarilyn\nMarjorie\nMarlene\nRosemary\nShawn\nShawna\nStacie\nTami\nTammi\nTania\nAlisa\nAlyson\nAmber\nAngelina\nArlene\nBernadette\nCharlotte\nCheri\nCorinne\nDarcy\nDebbie\nDeirdre\nEva\nHannah\nJanette\nJeanette\nJeannine\nJocelyn\nJuanita\nLaurel\nLena\nLoretta\nLydia\nMarisa\nNichole\nPaige\nRaquel\nTrisha\nBeatrice\nBetty\nCarey\nDena\nElena\nElise\nEsther\nIrene\nJanine\nJudy\nKatharine\nLara\nLillian\nLynda\nMelody\nPriscilla\nRita\nRoberta\nRosemarie\nShana\nShari\nSophia\nUrsula\nAlyssa\nAnnemarie\nAntonia\nBelinda\nCandice\nCaryn\nCasey\nCeleste\nClaudine\nDaniela\nDeana\nEmma\nFaith\nGillian\nHelen\nHilary\nIris\nIsabel\nJoann\nKaryn\nKelli\nKimberlee\nLeigh\nLiza\nLorie\nLucia\nLyn\nMarci\nMarnie\nMarta\nMaryann\nMiriam\nPeggy\nSandy\nSherrie\nSilvana\nAntoinette\nAshley\nBeatriz\nBrooke\nCarole\nCassie\nDaisy\nDamaris\nDara\nDayna\nDianna\nDoris\nFiona\nJosephine\nKatina\nKeisha\nLana\nLatonya\nLea\nLeticia\nLissette\nLoren\nLourdes\nLucinda\nMarsha\nMichael\nMilagros\nMiranda\nMisty\nNadine\nNicolle\nPhyllis\nRebekah\nRonda\nRoxanne\nSusanna\nSusanne\nTabitha\nTamika\nTanisha\nTiffani\nTrina\nWhitney\nAida\nAileen\nAlexandria\nAnnie\nBillie\nChandra\nChelsea\nCher\nColeen\nConstance\nCorrie\nCristin\nDaphne\nDeena\nDeidre\nDevon\nDianne\nGabrielle\nGenevieve\nGwen\nGwendolyn\nHilda\nJenna\nJonna\nJustine\nKarri\nKathrine\nKaty\nKris\nKristan\nLatasha\nLeona\nMara\nMarni\nMaryellen\nMelisa\nMigdalia\nMildred\nNanci\nNoemi\nNorma\nNydia\nPolly\nRosalie\nSasha\nShane\nSheree\nSusannah\nSuzette\nTammie\nVera\nVickie\nWilliam\nYesenia\nJennifer\nAmy\nLisa\nHeather\nMichelle\nMelissa\nKimberly\nElizabeth\nNicole\nChristine\nRebecca\nDawn\nKelly\nKaren\nLaura\nTracy\nSarah\nJessica\nKristen\nSusan\nMary\nMichele\nJulie\nStephanie\nTina\nShannon\nTara\nDenise\nStacey\nChristina\nCynthia\nAndrea\nPatricia\nKathleen\nLori\nTammy\nMaria\nWendy\nAngela\nSandra\nDanielle\nDeborah\nCarrie\nStacy\nKristin\nMelanie\nRachel\nErin\nCatherine\nDonna\nKatherine\nAllison\nPamela\nJill\nTanya\nAmanda\nNancy\nRobin\nDiane\nHolly\nKathryn\nSuzanne\nHeidi\nDebra\nAlison\nCheryl\nDana\nGina\nLaurie\nSharon\nApril\nErica\nAnn\nBrenda\nDiana\nMargaret\nRenee\nLinda\nSara\nBeth\nJacqueline\nTiffany\nAnne\nEmily\nAlicia\nBarbara\nLynn\nTheresa\nTracey\nAimee\nLauren\nMeredith\nTonya\nKrista\nMegan\nMonica\nKerry\nTricia\nLeslie\nTamara\nTeresa\nCarolyn\nColleen\nJanet\nMonique\nErika\nKim\nKara\nSherry\nAnna\nCindy\nMaureen\nMelinda\nCarmen\nKristine\nCarla\nJodi\nKristina\nPaula\nCarol\nValerie\nVictoria\nCaroline\nCrystal\nJanice\nBonnie\nJoanne\nKerri\nSheri\nBridget\nGretchen\nDeanna\nRosa\nSamantha\nMeghan\nRhonda\nSheila\nTasha\nEileen\nJamie\nJoanna\nJody\nJulia\nMarilyn\nMarisol\nNatasha\nNichole\nRachael\nEllen\nJenny\nKeri\nRobyn\nSonia\nBethany\nDebbie\nJane\nJeanette\nJudith\nKatrina\nLorraine\nRegina\nElaine\nKellie\nYolanda\nAudra\nDina\nJoy\nLatasha\nMadeline\nTerri\nAna\nBelinda\nCara\nCassandra\nChristy\nDoreen\nJenifer\nJennie\nKarin\nKathy\nKendra\nKimberley\nLillian\nPriscilla\nRita\nShelley\nStacie\nYvette\nYvonne\nAngel\nCharlene\nJoann\nMaritza\nSally\nSherri\nTraci\nAlexandra\nAllyson\nJeanne\nKari\nKelley\nKristie\nLeanne\nLuz\nMarcy\nMarie\nSandy\nVeronica\nWanda\nAbigail\nAlyssa\nBetsy\nBrandy\nClaudia\nCourtney\nIrene\nJean\nKeisha\nLeah\nMartha\nNatalie\nToni\nTracie\nAmber\nBrooke\nCherie\nDarlene\nFelicia\nLiza\nMarcie\nMaura\nRose\nRuth\nShawn\nShirley\nSonya\nStefanie\nSusanne\nTanisha\nVanessa\nVicki\nVirginia\nAdrienne\nAlice\nAnita\nAnnette\nBernadette\nBillie\nBrandi\nCathy\nDorothy\nElisa\nEvelyn\nGloria\nJeannine\nJoyce\nKatharine\nKenya\nKristi\nLee\nLynne\nMarianne\nMarlene\nPaige\nRosemary\nSabrina\nSonja\nSylvia\nAshley\nBetty\nDeirdre\nFrancine\nGail\nHope\nLara\nLeigh\nMarci\nMargarita\nPenny\nRamona\nRebekah\nRoberta\nShelly\nAlexis\nAlisa\nAnnmarie\nAntoinette\nCarey\nChristie\nConnie\nCristina\nDaisy\nDarcie\nEva\nHelen\nJohanna\nKarla\nKatie\nKatina\nKirsten\nLesley\nLeticia\nLouise\nLucia\nMarcia\nMarisa\nMarsha\nMindy\nNoelle\nNora\nRosanna\nSherrie\nSheryl\nTami\nTisha\nTrina\nBeatrice\nCandace\nCheri\nDarcy\nDeana\nEricka\nGwendolyn\nHilary\nHollie\nIris\nJeanine\nJosephine\nKaryn\nKristy\nLaurel\nLetitia\nMaribel\nMarion\nMarnie\nMisty\nNadine\nNaomi\nRochelle\nRosemarie\nRoxanne\nShawna\nTammie\nTonia\nTrisha\nVicky\nVivian\nAda\nAnnie\nArlene\nAudrey\nBrigitte\nCathleen\nChrista\nDaniela\nDeidre\nDena\nDesiree\nElisabeth\nElise\nFlorence\nIsabel\nJoan\nJuliet\nKelli\nLatisha\nLatoya\nLucy\nLydia\nMaggie\nMargo\nMaryann\nMiriam\nNikki\nOlga\nShari\nShauna\nAmie\nBecky\nBritt\nCandice\nCari\nCharlotte\nChristin\nClarissa\nDianna\nEmma\nEsther\nFaith\nIngrid\nJaneen\nJenna\nJodie\nKarie\nKimberlee\nLiz\nLoretta\nLorie\nLynette\nMarla\nMolly\nMyra\nNoreen\nRachelle\nStaci\nTabitha\nTamika\nTammi\nTania\nTerry\nTia\nWhitney\nAdria\nAmelia\nBridgette\nCarmela\nCaterina\nChantelle\nConstance\nCorey\nDoris\nEbony\nElisha\nEliza\nFrancesca\nHelena\nIvette\nJasmine\nJeannette\nJeannie\nJocelyn\nJustine\nKarrie\nKate\nKiersten\nLea\nLenore\nLynda\nMarian\nMarybeth\nMaya\nMayra\nMelody\nMichael\nPenelope\nRene\nRuby\nShelby\nSherie\nSophia\nTabatha\nTrista\nTyra\nZoraida\nJennifer\nAmy\nMichelle\nMelissa\nHeather\nLisa\nKimberly\nJessica\nRebecca\nNicole\nChristine\nElizabeth\nSarah\nDawn\nKelly\nKaren\nKristen\nLaura\nStephanie\nSusan\nShannon\nChristina\nDanielle\nTara\nTracy\nMichele\nJulie\nMaria\nAndrea\nErin\nTammy\nRachel\nAngela\nTanya\nMary\nPatricia\nTina\nKatherine\nKristin\nCatherine\nKathleen\nStacy\nJill\nCarrie\nAmanda\nStacey\nSandra\nLori\nWendy\nCynthia\nDeborah\nDenise\nMelanie\nAllison\nNancy\nApril\nCheryl\nHolly\nSara\nTheresa\nAlicia\nEmily\nDana\nGina\nPamela\nKathryn\nAlison\nErica\nSharon\nHeidi\nJacqueline\nSuzanne\nMegan\nRenee\nBeth\nBrenda\nJodi\nTiffany\nDiana\nKim\nLinda\nColleen\nLaurie\nLynn\nRobin\nDonna\nLauren\nCarolyn\nVictoria\nTracey\nAnn\nBarbara\nDebra\nMargaret\nAimee\nAnne\nKerry\nKara\nCrystal\nJoanna\nJoy\nDiane\nSherry\nMonica\nMonique\nTeresa\nTonya\nTricia\nBridget\nLeslie\nCourtney\nJoanne\nPaula\nKrista\nMelinda\nMeredith\nTamara\nValerie\nBethany\nDeanna\nNatalie\nVanessa\nAnna\nCarmen\nCarol\nKristine\nMaureen\nSamantha\nShelley\nCaroline\nEileen\nRobyn\nSheila\nCara\nFelicia\nJanet\nKristina\nMarisol\nSheri\nVirginia\nAudrey\nJamie\nJulia\nKari\nKirsten\nLeigh\nNina\nVeronica\nYolanda\nCindy\nGretchen\nJeanette\nJody\nLeah\nAbigail\nAshley\nKelley\nMarie\nNatasha\nSonia\nTasha\nCarla\nEllen\nRegina\nStacie\nTerri\nAlexandra\nDina\nErika\nJenny\nRosa\nRose\nRuth\nShelly\nAmber\nBonnie\nChristie\nChristy\nDarlene\nDorothy\nElaine\nElisabeth\nEvelyn\nHope\nKatie\nKendra\nKerri\nKristie\nMarcia\nMeghan\nRhonda\nSherri\nAlexis\nAna\nBrandy\nCharlene\nJane\nJean\nJeannette\nJoann\nKate\nKatrina\nKeri\nKristi\nLatasha\nLuz\nMarcy\nPaige\nYvonne\nAlisa\nAnnette\nDarcy\nHelen\nJoyce\nKristy\nMaritza\nShirley\nTraci\nAlice\nAlyssa\nBrandi\nDeirdre\nFrances\nJanice\nJosephine\nKarla\nMarilyn\nMarisa\nMarlene\nMolly\nRachael\nRebekah\nRosemary\nSonya\nSylvia\nAnita\nBeverly\nCassandra\nDayna\nDoreen\nHilary\nIvette\nJeannine\nJenna\nJennie\nLatoya\nMaryann\nSheryl\nAmie\nBetsy\nCandice\nCaryn\nCathleen\nElisa\nElise\nEva\nIrene\nJolene\nKatharine\nKathy\nKellie\nLissette\nLiza\nLorraine\nMarci\nMartha\nMaura\nNakia\nNaomi\nRoxanne\nTabitha\nAdrienne\nAlyson\nAnnmarie\nBecky\nCarey\nCathy\nConstance\nCristina\nDebbie\nJoan\nJodie\nJudith\nKimberley\nLara\nLatanya\nLaurel\nLena\nLydia\nLynda\nMindy\nNadine\nRaquel\nSally\nShawn\nShelby\nVicki\nVicky\nAllyson\nBernadette\nCarly\nCasey\nCharity\nCheri\nClaudia\nDaisy\nFaith\nGloria\nIris\nJenifer\nJohanna\nKarin\nKeisha\nKelli\nKerrie\nLeticia\nMarianne\nMarsha\nMelisa\nMichael\nMiriam\nNicola\nRene\nSabrina\nSherrie\nStaci\nSusanne\nTania\nTracie\nTrina\nAida\nAisha\nAnastasia\nAudra\nBlanca\nBrooke\nCherie\nDemetria\nDoris\nGail\nHelena\nJaime\nJeanine\nJeanne\nJocelyn\nKaryn\nLakeisha\nLatisha\nLea\nLucy\nMadeline\nMarybeth\nPenny\nShawna\nTamika\nTeri\nTerry\nToni\nTrisha\nVivian\nWanda\nWendi\nYesenia\nYvette\nAdrianne\nAlissa\nBelinda\nBillie\nCaitlin\nCandace\nChantal\nChelsea\nChrista\nCorinne\nDaniela\nGrace\nHannah\nHillary\nJillian\nJuanita\nKenya\nLesley\nLillian\nLindsay\nLourdes\nLynette\nMaggie\nMargarita\nMaribel\nMarissa\nMarjorie\nMarla\nMia\nNikki\nNora\nNorma\nPauline\nRochelle\nTanisha\nWhitney\nAdria\nAmi\nAngelica\nAngie\nAntoinette\nBeatriz\nCandy\nCassie\nChandra\nCharlotte\nChastity\nChristen\nChristin\nClaire\nClaudine\nConnie\nCristin\nDeena\nDianne\nElena\nEricka\nEsther\nFiona\nGabrielle\nJacquelyn\nJana\nJanette\nJanine\nJudy\nKeely\nLakesha\nLashonda\nLeanne\nLee\nLenore\nLina\nLoretta\nMarcie\nMarlo\nMarta\nMeaghan\nMelody\nMildred\nMonika\nNichole\nNoelle\nNoemi\nPriscilla\nRachelle\nRamona\nRita\nRoberta\nRosemarie\nShana\nShauna\nTami\nTammie\nTonia\nJennifer\nAmy\nHeather\nMelissa\nMichelle\nNicole\nKimberly\nJessica\nLisa\nElizabeth\nRebecca\nSarah\nKelly\nChristine\nStephanie\nDawn\nKaren\nErin\nRachel\nTara\nDanielle\nSusan\nTracy\nKristen\nLaura\nChristina\nShannon\nAmanda\nJill\nStacey\nCarrie\nJulie\nKatherine\nMary\nWendy\nEmily\nMaria\nTammy\nStacy\nMichele\nKristin\nAndrea\nMegan\nSandra\nSara\nTanya\nTina\nAngela\nMelanie\nCatherine\nKathleen\nApril\nAllison\nHeidi\nLauren\nDeborah\nCheryl\nLori\nTiffany\nCynthia\nDenise\nPatricia\nHolly\nJacqueline\nJodi\nNancy\nColleen\nErica\nMeghan\nAlison\nAlicia\nBarbara\nDiana\nDana\nSharon\nGina\nKathryn\nSuzanne\nTamara\nTheresa\nBrenda\nCourtney\nLinda\nAnne\nKerry\nBeth\nRobin\nCarolyn\nDiane\nDebra\nKara\nRenee\nCrystal\nErika\nNatasha\nJamie\nTracey\nValerie\nKrista\nLaurie\nMonica\nSherry\nLynn\nMargaret\nPamela\nCarmen\nDonna\nLeah\nMeredith\nSamantha\nBridget\nCaroline\nMelinda\nVeronica\nCarol\nKerri\nLeslie\nPaula\nTricia\nAimee\nAmber\nAnna\nKim\nJanet\nJoanna\nMarisol\nTonya\nYolanda\nAnn\nSheila\nKristina\nShelly\nTraci\nCarla\nJoy\nKirsten\nMarie\nRobyn\nShelley\nVanessa\nCindy\nKate\nRuth\nTeresa\nCara\nChristy\nDina\nElaine\nFelicia\nJaime\nJulia\nKeri\nKristine\nMaureen\nSheri\nVictoria\nChristie\nDeanna\nEllen\nMadeline\nNatalie\nRachael\nWanda\nAbigail\nAlexandra\nBrandi\nBrandy\nJeanette\nLatoya\nRosa\nBethany\nBonnie\nGretchen\nJody\nMartha\nMonique\nNaomi\nRegina\nTasha\nAllyson\nAna\nDarcy\nEbony\nJanice\nJeanne\nKeisha\nKelley\nLuz\nTania\nEvelyn\nIris\nJean\nJoanne\nJodie\nKendra\nRebekah\nStefanie\nVirginia\nAnita\nAshley\nBrooke\nCandice\nDorothy\nJenny\nKari\nKathy\nKellie\nNadine\nNina\nShelby\nStacie\nAlexis\nAngie\nAnnette\nArlene\nCassandra\nDarlene\nHelen\nJane\nJoann\nLeigh\nMandy\nMarcia\nMarilyn\nRose\nStaci\nTracie\nTrisha\nAdrienne\nAlice\nCheri\nDeana\nDoreen\nEileen\nElena\nHilary\nKatie\nLillian\nMiriam\nMolly\nRhonda\nSandy\nSherri\nAlyssa\nCathy\nClaire\nCristina\nGail\nGloria\nHope\nJenifer\nJoan\nKatrina\nKenya\nKristi\nLatasha\nLindsay\nMaribel\nRita\nShana\nSylvia\nTamika\nTanisha\nYvette\nYvonne\nAlissa\nAmie\nAnnmarie\nAntoinette\nAudrey\nCandace\nClaudia\nCorey\nDesiree\nFaith\nGrace\nJanine\nJeanine\nJoyce\nJudith\nKatharine\nKelli\nLorraine\nLynda\nMarci\nMarsha\nMaura\nMelody\nMindy\nNichole\nNikki\nPaige\nSonya\nTami\nTerry\nTisha\nToni\nVicki\nAngelina\nAudra\nBelinda\nBernadette\nBobbie\nCarey\nCherie\nChristin\nElisabeth\nElise\nFrances\nIrene\nIvette\nJacquelyn\nKarin\nKarla\nLydia\nNakia\nNora\nOlga\nRaquel\nSally\nSheryl\nTaryn\nTia\nAisha\nAutumn\nBecky\nBetsy\nCharlene\nCharlotte\nChrista\nDaisy\nDeirdre\nFrancesca\nIngrid\nIsabel\nJeannette\nJeannine\nJennie\nJohn\nJosephine\nKristie\nLiza\nLucy\nLynette\nMadelin\nMarcie\nMarisa\nMeagan\nMisty\nPriscilla\nRochelle\nRoxanne\nSonia\nSusanne\nTeri\nTerri\nAgnes\nAida\nAmelia\nAntonia\nBree\nCarissa\nCarly\nCasey\nCeleste\nChelsea\nChristen\nChristi\nConstance\nEdith\nElisa\nEva\nGabrielle\nHillary\nJasmine\nJayne\nJenna\nJoelle\nJolene\nJulianne\nKarrie\nLakisha\nLaurel\nLawanda\nLee\nLesley\nLindsey\nLissette\nLouise\nMadelyn\nMarianne\nMaritza\nMarlene\nMayra\nMiranda\nSabrina\nShari\nShawna\nTameka\nTammie\nWendi\nAbby\nAlana\nAnabela\nAngel\nAngelica\nAnitra\nBetty\nBillie\nCandy\nCari\nCarmela\nCaryn\nChandra\nCharity\nCherilyn\nClara\nConnie\nCora\nCorrine\nCory\nDeena\nElissa\nEmma\nFrancine\nGinger\nGwendolyn\nHannah\nJami\nJanelle\nJessie\nJo\nJuanita\nKerrie\nKimberlee\nKisha\nKristy\nLatonya\nLiane\nMakisha\nMargarita\nMarissa\nMarjorie\nMaryann\nMeaghan\nNicola\nNilsa\nNoelle\nNorma\nOlivia\nRamona\nRoberta\nShirley\nSummer\nSusanna\nTabitha\nTakisha\nTaneka\nJennifer\nAmy\nJessica\nHeather\nMelissa\nSarah\nElizabeth\nKimberly\nLisa\nMichelle\nRebecca\nNicole\nChristine\nKelly\nJaime\nErin\nStephanie\nLaura\nChristina\nShannon\nSara\nDanielle\nKaren\nAmanda\nDawn\nCarrie\nJamie\nMary\nKristen\nSusan\nJulie\nMichele\nRachel\nAngela\nStacey\nTammy\nMaria\nKatherine\nTina\nAndrea\nKathleen\nTara\nMegan\nAllison\nEmily\nTanya\nMelanie\nErica\nKristin\nLauren\nLori\nTracy\nAlison\nCatherine\nJill\nWendy\nDeborah\nSandra\nDana\nPatricia\nStacy\nCourtney\nCynthia\nBeth\nDenise\nHolly\nApril\nRenee\nGina\nHeidi\nSharon\nBrenda\nKerry\nKathryn\nMonica\nKara\nRobin\nDiane\nAlicia\nJacqueline\nCheryl\nDiana\nAmber\nSuzanne\nAimee\nCarolyn\nLindsay\nLynn\nMargaret\nTiffany\nColleen\nKristina\nTracey\nMeghan\nPamela\nAnne\nLaurie\nLeslie\nLinda\nSamantha\nJodi\nTheresa\nVictoria\nJody\nNatalie\nTricia\nNancy\nBarbara\nDonna\nJanet\nCrystal\nDebra\nErika\nMarie\nTeresa\nBethany\nBrandy\nCaroline\nCindy\nLeah\nNatasha\nValerie\nYolanda\nAnn\nRachael\nTamara\nJoanna\nJulia\nAbigail\nAlexandra\nDeanna\nKate\nKerri\nMelinda\nMeredith\nEllen\nKeri\nPaula\nAnna\nBonnie\nCarla\nEileen\nKari\nKristine\nRosa\nWanda\nBrooke\nCarmen\nChristy\nJenny\nRegina\nSabrina\nSheila\nVanessa\nAdrienne\nKatie\nKim\nLatoya\nMarisol\nTamika\nGretchen\nJoanne\nJoy\nKrista\nMarisa\nMonique\nAnnette\nBridget\nEbony\nKristy\nRebekah\nShana\nSonia\nTonya\nVeronica\nAllyson\nCarol\nChrista\nFelicia\nLatasha\nMandy\nMaureen\nAshley\nCarey\nJeannette\nJodie\nKendra\nLuz\nMisty\nNichole\nAlexis\nAlice\nAudrey\nCara\nCristina\nElaine\nJean\nJennie\nJudith\nKelley\nKelli\nNaomi\nSherri\nStacie\nAlyssa\nAnnmarie\nCharlene\nChristie\nDarlene\nDorothy\nEvelyn\nJenna\nJohanna\nJoyce\nKirsten\nLatisha\nMadeline\nMargarita\nMarissa\nRobyn\nStefanie\nTania\nCaitlin\nCandace\nJanice\nJocelyn\nKatharine\nKellie\nLakisha\nLeigh\nMaryann\nSherry\nTanisha\nAmie\nAna\nChelsea\nClaudia\nDina\nHannah\nIris\nJane\nLara\nLesley\nLillian\nMaribel\nMarilyn\nMarlene\nNadine\nSheri\nAlissa\nAngel\nCandice\nCarissa\nDaisy\nDeirdre\nHope\nJasmine\nJeanette\nJenifer\nJessie\nJoan\nKarin\nKaryn\nKeisha\nKristi\nKristie\nLindsey\nMartha\nMolly\nNora\nShelley\nShelly\nSonya\nTraci\nTrisha\nVirginia\nYvonne\nAlisa\nAnnemarie\nAntoinette\nBetsy\nCharlotte\nDarcy\nDesiree\nEricka\nFrances\nHelen\nHilary\nIrene\nJacquelyn\nJaimie\nJana\nKathy\nKatrina\nLiza\nMarybeth\nMelody\nRose\nRosemary\nSally\nSamara\nSandy\nShawna\nTabitha\nTasha\nTerri\nAdrianne\nAisha\nAlyson\nBecky\nBelinda\nBrandi\nCassandra\nChantel\nCheri\nDamaris\nDebbie\nDena\nElena\nElisabeth\nFarrah\nIngrid\nJanelle\nJeanne\nJoann\nKimberley\nLoren\nLydia\nMarci\nMarcy\nMayra\nNadia\nNikole\nNydia\nOlga\nRhonda\nRonda\nRoxanne\nSummer\nVicki\nAngelina\nAnita\nBernadette\nBillie\nConnie\nCorey\nCortney\nDeana\nElisa\nFrancesca\nHilda\nJami\nJeanine\nJolene\nJuanita\nJuliet\nMarcia\nMaritza\nMarla\nMaura\nMichael\nMildred\nMiriam\nNakia\nNina\nNoemi\nOlivia\nRuth\nSerena\nShari\nShelby\nSherrie\nShirley\nTameka\nTami\nTammi\nTawana\nTerry\nVicky\nWhitney\nYvette\nAbby\nAlanna\nAnastasia\nAngelique\nAnitra\nAriana\nAudra\nBeverly\nCasey\nCelina\nChantal\nCorinne\nCory\nDianna\nEboni\nElise\nEmma\nEva\nGiovanna\nGrace\nIvette\nJamila\nJanae\nJanna\nJillian\nJohn\nJustina\nKarrie\nKenya\nLashonda\nLatanya\nLeanne\nLoretta\nLorraine\nLuciana\nLynne\nMackenzie\nMara\nMarianne\nMarion\nMaryellen\nMeagan\nMelisa\nPauline\nPenny\nRachelle\nRaquel\nStaci\nSusannah\nToni\nTrina\nJennifer\nJessica\nMelissa\nAmy\nHeather\nSarah\nKelly\nElizabeth\nMichelle\nNicole\nKimberly\nLisa\nRebecca\nChristina\nErin\nChristine\nShannon\nLaura\nStephanie\nAmanda\nSara\nKaren\nDanielle\nKatherine\nEmily\nMegan\nJamie\nRachel\nJaime\nKristen\nTara\nAllison\nDawn\nErica\nJulie\nStacey\nKathleen\nMaria\nJill\nMary\nCarrie\nAngela\nMelanie\nPatricia\nSusan\nAlison\nAndrea\nMichele\nKristin\nLauren\nCourtney\nCatherine\nAimee\nHeidi\nStacy\nTracy\nKathryn\nTina\nTammy\nCynthia\nSandra\nMonica\nWendy\nJacqueline\nMeghan\nTanya\nAlicia\nCrystal\nDenise\nTiffany\nColleen\nLori\nSuzanne\nMargaret\nRobin\nApril\nSamantha\nSharon\nDana\nDeborah\nKristy\nBeth\nGina\nHolly\nKara\nNancy\nTheresa\nCarolyn\nAmber\nAnna\nTamara\nAnne\nDiana\nKristina\nLindsay\nCheryl\nMarie\nMarissa\nBrenda\nErika\nMarisa\nNatalie\nNatasha\nPamela\nRenee\nKerry\nVanessa\nKatie\nLeah\nLynn\nSabrina\nVictoria\nKristine\nLinda\nAnn\nBethany\nJaclyn\nJenny\nJoanna\nKeri\nMeredith\nCarla\nCarmen\nRobyn\nTracey\nDebra\nDiane\nLeslie\nJillian\nValerie\nYolanda\nAbigail\nAdrienne\nBarbara\nJanet\nJodi\nJoy\nKrista\nAisha\nBonnie\nCindy\nDonna\nMonique\nTrisha\nVeronica\nAlexandra\nChristy\nJocelyn\nKate\nMelinda\nAshley\nKatharine\nRachael\nCaroline\nJoanne\nKelley\nMaureen\nBridget\nDeanna\nEvelyn\nKatrina\nKerri\nMarilyn\nMolly\nPaula\nTricia\nLaurie\nMandy\nNichole\nBrooke\nCara\nCassandra\nEileen\nEllen\nKim\nKristi\nKristie\nLatoya\nNaomi\nRuth\nShana\nTasha\nCristina\nEbony\nGretchen\nJolene\nKari\nLatasha\nLeigh\nMartha\nShawna\nAlexis\nAllyson\nCarissa\nCarol\nDarlene\nMelody\nRegina\nRose\nStefanie\nWanda\nChristie\nHilary\nJohanna\nJudith\nKelli\nKellie\nLesley\nLuz\nRebekah\nShelley\nSherri\nTeresa\nTonya\nVirginia\nAlyson\nAnita\nCherie\nJeanette\nJenifer\nLatisha\nLindsey\nMaryann\nShelly\nAlyssa\nAna\nBrandy\nCandice\nCharity\nDorothy\nElisabeth\nHelen\nHope\nJean\nJulia\nKaryn\nKathy\nMarisol\nRaquel\nRoxanne\nSheri\nSummer\nTamika\nToni\nYvonne\nAudrey\nBrandi\nCaitlin\nCandace\nCharlene\nClaire\nConnie\nCorinne\nDaisy\nFelicia\nJanelle\nJennie\nKizzy\nLakisha\nMarcy\nMisty\nPriscilla\nSandy\nSherry\nSonia\nTabitha\nAdriana\nAlice\nAnnmarie\nBianca\nCaryn\nCasey\nCathleen\nChrista\nEliza\nEsther\nJeannette\nJulianne\nKeisha\nLena\nLydia\nLynette\nMiriam\nRosa\nShanna\nShauna\nTania\nTanisha\nTraci\nBecky\nCarey\nCathy\nCharlotte\nChelsea\nClaudia\nDebbie\nDesiree\nDevon\nDina\nElisha\nElissa\nFrances\nGloria\nHillary\nIrene\nJacquelyn\nJaimie\nJody\nJoyce\nKarin\nKirsten\nLee\nLillian\nMarcia\nMaura\nNadine\nOlivia\nSheila\nYvette\nAlisha\nAmie\nAngel\nAnnette\nBelinda\nElaine\nElena\nElise\nEricka\nGinger\nJasmine\nJeanne\nJessie\nJoann\nJodie\nJosephine\nJudy\nKai\nKerrie\nKimberley\nLiza\nMadeline\nMayra\nMiranda\nNikki\nSelena\nShelby\nSheryl\nTaryn\nAlisa\nAlissa\nAngelina\nAthena\nBeatrice\nBrie\nCorey\nCorrie\nDaniela\nDara\nDeirdre\nDena\nDoris\nEva\nFarrah\nFrancesca\nIris\nJamila\nJane\nJanice\nJenna\nKarla\nLara\nMarcie\nMaribel\nMarjorie\nMaya\nMia\nMichael\nMindy\nNadia\nNakia\nOmayra\nRashida\nRita\nRochelle\nRosanna\nSimone\nSiobhan\nSonya\nStacie\nSylvia\nTammi\nTerri\nTrina\nYesenia\nAlana\nAngelique\nAnitra\nAudra\nAutumn\nBernadette\nBobbijo\nBrianna\nCori\nCory\nDavid\nElsie\nEmma\nFaith\nGail\nGena\nGeorgia\nGrace\nIesha\nIngrid\nJami\nJeannie\nJeannine\nJesse\nKarie\nKia\nKori\nLakeisha\nLakiesha\nLashonda\nLatosha\nLaurel\nLea\nLeanne\nLisette\nLourdes\nLucia\nLynda\nMalinda\nMarci\nMarla\nMarlene\nMaryjo\nMelisa\nMichaela\nMigdalia\nNoemi\nNora\nRamona\nRosemarie\nRyan\nSerena\nShari\nShawn\nStaci\nSyreeta\nTalia\nTaylor\nTerry\nTia\nTonia\nVicki\nJennifer\nJessica\nMelissa\nSarah\nAmy\nHeather\nElizabeth\nMichelle\nKelly\nNicole\nLisa\nRebecca\nChristina\nChristine\nErin\nKimberly\nAmanda\nLaura\nDanielle\nKatherine\nStephanie\nShannon\nSara\nRachel\nAngela\nLauren\nKristen\nKathryn\nKaren\nMegan\nStacey\nAndrea\nMary\nJill\nJulie\nEmily\nJamie\nErica\nSusan\nTara\nJaime\nCarrie\nCatherine\nMaria\nApril\nKristin\nCrystal\nDawn\nKathleen\nJacqueline\nMelanie\nStacy\nAlison\nKristy\nTracy\nMeghan\nAllison\nTina\nGina\nKristina\nDana\nMonica\nMichele\nSandra\nTanya\nAlicia\nKatie\nCynthia\nDenise\nDiana\nBeth\nCourtney\nAmber\nPatricia\nTammy\nLindsay\nLori\nSuzanne\nSamantha\nDiane\nMargaret\nRobin\nVanessa\nMeredith\nSabrina\nHolly\nWendy\nCarolyn\nErika\nAnne\nBrenda\nCheryl\nTheresa\nTiffany\nMelinda\nRenee\nBrooke\nColleen\nDeborah\nLeslie\nVictoria\nKerry\nPamela\nAnna\nJaclyn\nJenny\nNancy\nTamara\nKara\nKate\nAimee\nBethany\nHeidi\nJulia\nAshley\nLinda\nValerie\nDebra\nMonique\nNatasha\nTricia\nCarla\nVeronica\nBarbara\nJodi\nKrista\nMarie\nNatalie\nRobyn\nTracey\nKristine\nSharon\nCarmen\nDeanna\nEllen\nLeah\nLindsey\nMarisa\nMarissa\nAnn\nBridget\nCindy\nCorinne\nJoy\nKatrina\nKeri\nLynn\nShana\nTeresa\nChristy\nJanet\nKellie\nLaurie\nMolly\nNichole\nRebekah\nAbigail\nJillian\nKelley\nKerri\nSheila\nTamika\nYolanda\nAdrienne\nAlisha\nCaroline\nEileen\nKelli\nSherry\nAlexis\nBrandy\nCara\nCristina\nDesiree\nElisabeth\nJoanna\nJocelyn\nKendra\nStefanie\nTabitha\nFelicia\nJoanne\nKim\nLatoya\nMandy\nMarilyn\nMarisol\nMaureen\nRachael\nToni\nAmie\nFaith\nJean\nLatanya\nMadeline\nMartha\nNaomi\nPaula\nTonya\nAnnmarie\nCasey\nCassandra\nDonna\nElaine\nEvelyn\nGretchen\nHelen\nJanice\nKatharine\nKirsten\nKristie\nMarlene\nMichael\nSheri\nWanda\nBonnie\nCarey\nCarol\nDorothy\nHillary\nKari\nKristi\nLatasha\nMarcy\nMiranda\nRhonda\nRosa\nTania\nAlexandra\nAlyson\nAlyssa\nAna\nBrandi\nCharlene\nDina\nEbony\nElisa\nFrances\nJanelle\nJasmine\nJeanette\nLeigh\nLesley\nLiza\nLuz\nMarcie\nSandy\nShelly\nSherri\nTrisha\nAisha\nCandace\nChrista\nChristie\nEricka\nHope\nJacquelyn\nJodie\nLatisha\nLatonya\nMiriam\nPaige\nRaquel\nRegina\nSonia\nWhitney\nAlisa\nAllyson\nAutumn\nGail\nJenna\nJessie\nJody\nKasey\nLara\nMaribel\nMelody\nNikki\nNina\nStacie\nTasha\nVirginia\nYvonne\nAnnette\nBecky\nCaitlin\nCaryn\nCharlotte\nDamaris\nDeana\nDeirdre\nEva\nHannah\nJane\nJeannine\nJenifer\nJennie\nJohanna\nKarla\nKeisha\nKyle\nLeanne\nMarcia\nMarianne\nMaura\nMeagan\nRose\nRuth\nSally\nShante\nShawna\nSonya\nTameka\nTia\nTraci\nTracie\nAbby\nAdrianne\nAlice\nAnita\nAudrey\nBetsy\nBianca\nCandice\nCharity\nClaire\nClaudia\nCortney\nDarcy\nElise\nGabrielle\nIris\nJoann\nJoyce\nJuanita\nJudith\nLucy\nLydia\nLynette\nMarcella\nMisty\nOlivia\nShelley\nSheryl\nSylvia\nTammie\nTanisha\nYvette\nAlissa\nAmi\nAngel\nAngelica\nBernadette\nCamille\nCarly\nCathleen\nChantal\nChelsea\nCheri\nCherie\nChrystal\nCorey\nCori\nDarlene\nDena\nDevon\nDoreen\nEleanor\nEsmeralda\nGenevieve\nHilary\nJeanne\nJosephine\nKizzy\nLakeya\nLeticia\nLiana\nLillian\nLorraine\nLuisa\nLynda\nMadelyn\nMaryann\nMarybeth\nMaya\nNora\nRita\nRobert\nRoberta\nSage\nSummer\nSusanne\nTanika\nTeri\nTessa\nAdriane\nAmelia\nAudra\nBrianne\nCecilia\nCelina\nChandra\nChrissy\nChristin\nColette\nConstance\nCorrine\nDara\nEboni\nElisha\nEliza\nGlenda\nGwendolyn\nHelena\nIngrid\nJana\nJanine\nJeanine\nJesenia\nJessenia\nJoelle\nKai\nKarin\nKaryn\nKimberley\nKirstin\nKizzie\nKylie\nLakeisha\nLashonda\nLee\nLeila\nLora\nLucinda\nMackenzie\nMaritza\nMarjorie\nMarnie\nMarsha\nMaryellen\nMyra\nNadia\nNoelle\nOlga\nPriscilla\nQuiana\nRandi\nRayna\nRosemary\nRyan\nShanna\nShara\nShauna\nThomas\nTiffanie\nXiomara\nJennifer\nMelissa\nJessica\nSarah\nElizabeth\nAmy\nNicole\nMichelle\nHeather\nLisa\nAmanda\nKelly\nRebecca\nChristina\nKimberly\nDanielle\nLaura\nErin\nStephanie\nKatherine\nChristine\nMegan\nLauren\nRachel\nKristen\nShannon\nSara\nJulie\nErica\nKaren\nKathryn\nAndrea\nTara\nAngela\nJamie\nEmily\nAllison\nCrystal\nKristin\nMary\nJill\nKathleen\nMeghan\nCatherine\nStacy\nTiffany\nMelanie\nAlison\nApril\nStacey\nMaria\nTracy\nCheryl\nCourtney\nSusan\nJacqueline\nKristy\nAlicia\nDawn\nTanya\nMonica\nPatricia\nAmber\nJaime\nDana\nCynthia\nMargaret\nMichele\nAnne\nCarrie\nHolly\nKristina\nLindsay\nSandra\nAshley\nTina\nBeth\nGina\nSamantha\nVanessa\nKara\nKate\nAnna\nHeidi\nKatie\nColleen\nMeredith\nTheresa\nAlexandra\nVictoria\nWendy\nPamela\nRenee\nDiana\nErika\nLori\nCarolyn\nSharon\nBethany\nKrista\nLeah\nMelinda\nSabrina\nLinda\nNancy\nAimee\nBarbara\nBrenda\nJulia\nTammy\nTeresa\nBrooke\nCaroline\nDenise\nDonna\nMarisa\nDebra\nJaclyn\nJoy\nRobin\nKatrina\nLindsey\nSuzanne\nDeborah\nJenny\nLeslie\nAdrienne\nEbony\nMarie\nMonique\nVeronica\nAnn\nBonnie\nCarmen\nDiane\nLatoya\nAbigail\nKristine\nMarissa\nValerie\nCandice\nCassandra\nJillian\nJoanna\nMaureen\nTamara\nNichole\nCara\nCristina\nDeanna\nJanet\nJennie\nNatasha\nRachael\nRobyn\nTracey\nCindy\nEvelyn\nJoanne\nKendra\nKerry\nKristi\nLaurie\nPaula\nAlexis\nCharlene\nJodi\nKelley\nLynn\nShanna\nTania\nTricia\nYolanda\nBrianne\nDorothy\nKatharine\nKeri\nMadeline\nNatalie\nAlyssa\nBrandi\nBridget\nCarla\nCasey\nJean\nJeanette\nJocelyn\nKari\nTabitha\nTonya\nAmie\nBrandy\nKerri\nKim\nKirsten\nMandy\nMeaghan\nSonia\nAna\nPaige\nRosa\nRuth\nShana\nTanisha\nChristie\nDesiree\nLiza\nMartha\nRosemary\nShauna\nTamika\nVirginia\nAisha\nAlyson\nAnita\nBelinda\nCarol\nChrista\nChristy\nEileen\nEllen\nFelicia\nHilary\nJasmine\nJessie\nJodie\nMeghann\nMindy\nMolly\nRegina\nSheila\nTasha\nTraci\nCaitlin\nElaine\nFaith\nHelen\nIris\nMarisol\nMisty\nRebekah\nSherry\nStacie\nToni\nWanda\nYvonne\nAlissa\nAngel\nBrittany\nDamaris\nElisabeth\nEmma\nEva\nGretchen\nHannah\nKristie\nMarilyn\nMaritza\nMelody\nMiranda\nNaomi\nRose\nTrisha\nViviana\nWhitney\nAja\nBianca\nCarissa\nCorey\nDarlene\nDominique\nElena\nJanelle\nJudith\nKelli\nKellie\nLakeisha\nLatisha\nLydia\nMarci\nMarcy\nNina\nOlivia\nRaquel\nRhonda\nShawna\nStaci\nTrina\nAlice\nCharlotte\nCorinne\nDaisy\nDavid\nElise\nFrancesca\nGlenda\nHillary\nJanice\nJeanine\nJenna\nJoan\nJody\nJohanna\nJustine\nKarin\nKarla\nKaryn\nLatasha\nLissette\nMaya\nNora\nSandy\nShelley\nSherri\nTerri\nAbby\nAlana\nAllyson\nAngie\nArlene\nBetsy\nCandace\nCathleen\nCherie\nElissa\nIrene\nIvy\nJeannette\nJuanita\nKasey\nKenya\nKyla\nLeanne\nLeigh\nLesley\nMarion\nNadia\nSheri\nSilvia\nTami\nTaryn\nTracie\nVivian\nYesenia\nAdriana\nAlisa\nAmelia\nAudrey\nAutumn\nBeatrice\nBetty\nCarly\nCaryn\nChanel\nClaire\nClaudia\nDevon\nGabrielle\nGrace\nHollie\nJacquelyn\nJanette\nJeanne\nJoann\nJudy\nLarissa\nLeticia\nLillian\nLuz\nLynette\nMarianne\nMarsha\nMaura\nMia\nNadine\nNoelle\nNorma\nPriscilla\nQuiana\nSally\nShameka\nShelly\nSue\nSummer\nAlaina\nAlanna\nAlessandra\nAlisha\nAnastasia\nAngelica\nAngelina\nAnnie\nAnnmarie\nAubrey\nBrianna\nBrie\nCathy\nChantelle\nCharity\nChelsea\nCheri\nChristen\nChristin\nConnie\nConstance\nCori\nCory\nDeirdre\nDestiny\nDevin\nDianna\nDianne\nDina\nElisa\nEricka\nFaye\nGail\nGloria\nIesha\nIvette\nJaimie\nJami\nJanine\nJenifer\nJesse\nJosephine\nKathy\nKeisha\nKyle\nLatanya\nLee\nLuisa\nLynne\nMaegan\nMarcella\nMarcie\nMaribel\nMarjorie\nMellissa\nMiriam\nNakia\nNikki\nOmayra\nPatrice\nRaina\nRamona\nRashida\nRobert\nRoberta\nRochelle\nRoxanne\nSelena\nShanda\nShante\nSherrie\nSheryl\nShirley\nShonda\nSonya\nSophia\nStefanie\nStephany\nSusana\nTalia\nTashema\nTia\nTiana\nVicky\nYanira\nYvette\nJennifer\nJessica\nMelissa\nSarah\nElizabeth\nNicole\nAmy\nMichelle\nRebecca\nHeather\nAmanda\nKimberly\nLisa\nKelly\nChristina\nErin\nStephanie\nLaura\nChristine\nSara\nKatherine\nDanielle\nKristen\nMegan\nErica\nEmily\nShannon\nRachel\nMary\nKristin\nTiffany\nLauren\nKatie\nJulie\nKathryn\nAllison\nMeghan\nAngela\nTara\nAndrea\nCrystal\nKaren\nKathleen\nMaria\nJamie\nAlison\nCatherine\nJacqueline\nJill\nMelanie\nLindsay\nStacy\nCourtney\nDana\nAmber\nStacey\nAlicia\nAshley\nTracy\nCarrie\nDawn\nVanessa\nApril\nMichele\nSusan\nHolly\nSandra\nTanya\nCheryl\nKara\nErika\nHeidi\nMonica\nKate\nBethany\nColleen\nCynthia\nGina\nMargaret\nTammy\nKristina\nMonique\nTina\nAnne\nLeah\nPatricia\nBrooke\nDenise\nRobin\nSamantha\nAnna\nKrista\nMeredith\nBeth\nAlexandra\nJillian\nLindsey\nCarolyn\nLeslie\nNatasha\nSuzanne\nTheresa\nVictoria\nBrenda\nJenny\nValerie\nJaime\nKristy\nDiana\nMarie\nMarissa\nAlyssa\nAbigail\nMelinda\nNancy\nRachael\nDeborah\nJoanna\nJulia\nLynn\nPamela\nTamara\nEbony\nLori\nAnn\nBarbara\nCaitlin\nCristina\nJanet\nMaureen\nNatalie\nRenee\nWendy\nDiane\nJaclyn\nTeresa\nCarla\nKristine\nMarisa\nRosa\nSabrina\nTracey\nCassandra\nKatharine\nLaurie\nSharon\nAimee\nBrianne\nCandace\nKatrina\nMolly\nNichole\nDebra\nNina\nYolanda\nAlexis\nCarmen\nCaroline\nLinda\nMeagan\nVeronica\nBonnie\nBridget\nKerry\nAdrienne\nAlyson\nCara\nDesiree\nJean\nKerri\nMorgan\nRose\nStefanie\nBrandi\nChristy\nEllen\nGretchen\nKelley\nKendra\nVirginia\nClaire\nDonna\nEileen\nElisabeth\nJasmine\nJohanna\nLarissa\nLatoya\nMeaghan\nNaomi\nShauna\nTricia\nTrisha\nAna\nBetsy\nCharlene\nDena\nJenna\nKelli\nKirsten\nPriscilla\nShelley\nTasha\nBrandy\nElaine\nJanelle\nJoanne\nJocelyn\nLatasha\nPaula\nRuth\nSherry\nTamika\nTania\nWhitney\nAlissa\nAllyson\nCandice\nCasey\nChrista\nCorey\nCorinne\nDeanna\nDorothy\nHillary\nJodi\nLakisha\nRobyn\nShawna\nAlana\nAlisha\nAngelica\nCharlotte\nCindy\nDaisy\nDina\nEsther\nHilary\nJanice\nJeanette\nJennie\nJoann\nKeri\nLuz\nRebekah\nSonia\nTonya\nWanda\nYvonne\nBrianna\nCarissa\nCarly\nCarol\nDamaris\nElise\nHope\nJanine\nJessie\nKristi\nLesley\nMandy\nMarci\nMarcia\nPenny\nRegina\nShanna\nShayla\nTanisha\nAnnette\nAubrey\nElena\nFelicia\nGladys\nGrace\nJane\nJordan\nKaryn\nKim\nKimberley\nLeigh\nLiza\nMarcie\nMarisol\nMarlene\nMelisa\nMiranda\nShana\nTabitha\nToni\nChristie\nConstance\nDeirdre\nDevon\nElisa\nEricka\nEva\nJaimie\nJody\nJoyce\nKarla\nKatelyn\nKeisha\nKellie\nLeanne\nLee\nLeticia\nLillian\nMarcy\nMarta\nRosemary\nSheila\nShelly\nSheri\nAbby\nAisha\nAmie\nAngel\nAngelina\nAnnie\nAnnmarie\nCarey\nCathleen\nChristen\nDaniela\nGloria\nHannah\nIrene\nIris\nJasmin\nKari\nKristie\nMadeline\nMaribel\nMisty\nOlga\nOlivia\nRyan\nSimone\nSiobhan\nSonya\nStacie\nSusanna\nSylvia\nTraci\nYajaira\nAlaina\nArielle\nAutumn\nBeatrice\nBecky\nCamille\nChrissy\nDara\nElissa\nEvelyn\nFaith\nFrances\nJacquelyn\nJason\nJeanne\nJenifer\nJoy\nJudith\nJustine\nKarin\nKarissa\nKathy\nKaty\nKristyn\nKyla\nKyle\nLakesha\nLara\nLaurel\nLena\nLiz\nLizette\nLydia\nMariah\nMarianne\nMaura\nMia\nPaige\nPatrice\nRandi\nRita\nRosemarie\nRoxanne\nSasha\nSummer\nSyreeta\nTammie\nTaryn\nTerri\nAdrianne\nAlexa\nAlice\nAlycia\nArlene\nAudra\nBelinda\nBrie\nBrittany\nCherie\nChimere\nClaudia\nColeen\nCory\nDarlene\nDavid\nDavina\nDebbie\nGenevieve\nGeorgia\nIngrid\nIsabel\nJana\nJesse\nJoan\nJolene\nJoseph\nJosephine\nJulianne\nJuliet\nKaitlin\nKylie\nLea\nLynda\nMaggie\nMaritza\nMartha\nMaya\nMelody\nMindy\nMonika\nNora\nRaquel\nRashida\nRaven\nSacha\nSandy\nSarabeth\nShara\nShavonne\nTia\nTiana\nTrina\nJennifer\nJessica\nSarah\nMelissa\nElizabeth\nNicole\nAmy\nMichelle\nKimberly\nHeather\nAmanda\nRebecca\nLaura\nErin\nStephanie\nLisa\nKelly\nChristina\nDanielle\nSara\nKatherine\nEmily\nLauren\nKristen\nKristin\nRachel\nChristine\nCrystal\nMegan\nShannon\nTiffany\nKathryn\nErica\nMary\nJamie\nJulie\nAngela\nCourtney\nTara\nKatie\nAllison\nAndrea\nLindsay\nKaren\nJacqueline\nKathleen\nAmber\nMaria\nAshley\nMeghan\nCatherine\nAlicia\nDiana\nStacey\nTracy\nApril\nSusan\nAlison\nKristina\nLindsey\nMargaret\nJill\nPatricia\nSamantha\nVanessa\nCarrie\nMelanie\nVictoria\nDana\nLeah\nKate\nDawn\nJillian\nMichele\nGina\nJulia\nKara\nBethany\nSandra\nMarissa\nPamela\nRenee\nStacy\nBrooke\nHolly\nColleen\nTina\nCynthia\nTanya\nAnna\nAnne\nNatalie\nTheresa\nHeidi\nMarisa\nErika\nLatoya\nSuzanne\nAlexandra\nCheryl\nJaime\nLeslie\nLinda\nMonica\nNina\nBarbara\nCandice\nEbony\nKatharine\nRobin\nMarie\nAimee\nAlexis\nJoanna\nLori\nNatasha\nTeresa\nAbigail\nDenise\nDiane\nWendy\nBeth\nBrenda\nCarla\nDeborah\nLynn\nMelinda\nMonique\nSharon\nStefanie\nCasey\nCristina\nJessie\nKrista\nMorgan\nVeronica\nAlyssa\nKristine\nMolly\nValerie\nCaitlin\nCarolyn\nCassandra\nMeredith\nYolanda\nCara\nLaurie\nNancy\nRachael\nTamara\nBridget\nEllen\nJaclyn\nKari\nKatrina\nNaomi\nRebekah\nBrandy\nCaroline\nKerry\nLeigh\nTammy\nAlissa\nAnn\nCandace\nDeanna\nJasmine\nJocelyn\nPaula\nTasha\nAna\nCarissa\nKirsten\nKrystal\nRobyn\nSabrina\nTricia\nAnnette\nCarol\nDonna\nMeagan\nPriscilla\nRuth\nSonia\nAdrienne\nAllyson\nBrandi\nJacquelyn\nJenny\nKristy\nNichole\nVirginia\nCindy\nEileen\nElisabeth\nHannah\nJenna\nJohanna\nWhitney\nAlana\nBianca\nBonnie\nBrittany\nCarmen\nEvelyn\nKeri\nKristi\nMartha\nTracey\nAbby\nAnita\nCarly\nChristy\nJanice\nJeanette\nKelley\nKendra\nLatasha\nMaureen\nRegina\nRosa\nRose\nTrisha\nAlisha\nAlyson\nCharlene\nChristie\nDesiree\nElena\nFelicia\nJoanne\nKerri\nShelly\nSophia\nTamika\nTanisha\nTonya\nAmie\nDarcy\nKarin\nMeaghan\nRyan\nShana\nTania\nAngel\nChrista\nElisa\nHope\nJesse\nJody\nKellie\nKyle\nLara\nLea\nMandy\nNikki\nShauna\nSherry\nAisha\nAngelina\nChristen\nDebra\nElissa\nFrancesca\nGretchen\nHilary\nJean\nJenifer\nJodi\nKim\nLakeisha\nLuz\nMarcie\nMarilyn\nMelody\nNikia\nNora\nOlivia\nPaige\nRaquel\nTameka\nTerri\nToni\nAdriana\nAlanna\nAlisa\nAngie\nAntoinette\nCorinne\nDaisy\nDamaris\nDevon\nEliza\nEsther\nGabrielle\nGloria\nJaimie\nJanelle\nJustine\nKathy\nLee\nLillian\nLorraine\nLydia\nMichael\nNadine\nRosemarie\nSandy\nSasha\nSerena\nShawna\nSheila\nTaina\nAbbey\nAlexandria\nAnnmarie\nAudra\nBetsy\nBrandie\nChelsea\nDara\nDarlene\nJacklyn\nJanet\nJanine\nJasmin\nJoseph\nJoy\nJudith\nKarla\nKelli\nKristie\nKrystle\nLakisha\nLarissa\nLaurel\nLeanne\nMarcella\nMarcia\nMaritza\nMelisa\nMisty\nRita\nShelby\nShelley\nSherri\nSylvia\nTabitha\nWanda\nYesenia\nYvonne\nAmelia\nAngelica\nAubrey\nAudrey\nAutumn\nCharlotte\nCherie\nClaire\nClaudia\nConnie\nCristin\nDaniel\nDianna\nDorothy\nEleanor\nEva\nGlenda\nGrace\nHelen\nHillary\nIrene\nJames\nJana\nJane\nJennie\nJolene\nJosephine\nJulianne\nKarissa\nLatisha\nLeeann\nLiza\nLourdes\nLucy\nMaura\nMindy\nMiriam\nMoira\nMonika\nOlga\nRhonda\nRosemary\nShirley\nSummer\nTiana\nVivian\nAdrianne\nAnnie\nArlene\nAshlee\nAshleigh\nBeatrice\nBecky\nBrenna\nBrian\nBriana\nBrianna\nCallie\nCassie\nCelina\nChandra\nChantel\nClarissa\nCorrine\nCortney\nDina\nElise\nElisha\nGabriella\nIvelisse\nIvette\nJason\nJesenia\nJoann\nJoyce\nJuanita\nJuliana\nJustin\nKaitlin\nKaty\nKeisha\nKristal\nKrystyna\nLeticia\nMadeline\nMargot\nMarisol\nMarta\nMaryann\nMeghann\nMildred\nMiranda\nMyra\nNoelle\nRhiannon\nSally\nShanna\nShavonne\nShayla\nShayna\nSiobhan\nStacie\nTabatha\nTami\nTanika\nTaylor\nTiffani\nTisha\nYahaira\nJennifer\nJessica\nMelissa\nSarah\nNicole\nElizabeth\nAmy\nAmanda\nStephanie\nMichelle\nHeather\nRebecca\nLauren\nErin\nKelly\nEmily\nLisa\nKimberly\nKristen\nChristina\nDanielle\nLaura\nKatherine\nRachel\nLindsay\nSara\nMegan\nCrystal\nChristine\nTiffany\nShannon\nAshley\nKristin\nJamie\nKathryn\nAllison\nMary\nAndrea\nErica\nAngela\nJacqueline\nStacey\nCourtney\nTara\nCatherine\nJillian\nMeghan\nAmber\nMaria\nKaren\nLindsey\nKathleen\nAlicia\nJulie\nKatie\nDana\nVanessa\nDiana\nMelanie\nSusan\nSamantha\nAlison\nApril\nJulia\nJill\nKristina\nVictoria\nCarrie\nColleen\nMargaret\nAnna\nJaime\nMarissa\nCaitlin\nTheresa\nErika\nMichele\nPamela\nSandra\nDawn\nDenise\nNatalie\nCynthia\nKara\nRenee\nJaclyn\nKate\nNatasha\nAlexis\nLeah\nMonica\nBeth\nHeidi\nStefanie\nBethany\nPatricia\nEbony\nCassandra\nSharon\nStacy\nTracy\nAlexandra\nCarolyn\nCheryl\nMeredith\nTina\nAnne\nKrystal\nKatharine\nLeslie\nMolly\nTanya\nKrista\nLatoya\nBarbara\nDeborah\nDiane\nHolly\nLinda\nMonique\nNichole\nBrooke\nKatrina\nKerry\nMarie\nTammy\nAbigail\nBridget\nCandice\nCara\nCarla\nCaroline\nKristy\nLori\nRobin\nTamara\nTeresa\nBonnie\nChelsea\nValerie\nAlyssa\nCarmen\nDesiree\nGina\nMelinda\nJoanna\nMarisa\nNina\nTracey\nAimee\nSabrina\nBrandi\nBrenda\nCristina\nJasmine\nJenny\nJocelyn\nNancy\nNaomi\nShawna\nVeronica\nAnn\nBrittany\nKaitlin\nRachael\nSuzanne\nAlissa\nBrandy\nCandace\nCharlene\nJacquelyn\nKari\nKelley\nLaurie\nLynn\nMaureen\nMorgan\nPriscilla\nYolanda\nAmie\nCasey\nKendra\nKristine\nPaula\nRebekah\nAna\nAudrey\nDeanna\nElena\nElisabeth\nLatasha\nLesley\nMiranda\nRobyn\nSheena\nCarissa\nCindy\nDebra\nEileen\nFelicia\nJanet\nJennie\nJoanne\nMarilyn\nMeagan\nTamika\nTaylor\nWendy\nAngelica\nCarly\nDorothy\nEvelyn\nJane\nJesse\nJoy\nKelli\nKellie\nKerri\nKristie\nLara\nMandy\nSheila\nWhitney\nChrista\nHannah\nJeanette\nJenna\nJohanna\nJolene\nRaquel\nSally\nShauna\nSophia\nTania\nTricia\nBrianna\nClaire\nGretchen\nJean\nLacey\nLaurel\nRosa\nSherry\nTraci\nVirginia\nAbby\nAdrienne\nAisha\nAlisha\nAutumn\nCarol\nCassie\nElisa\nElissa\nEllen\nIris\nJordan\nMaura\nMiriam\nNikki\nSasha\nTiffani\nToccara\nToni\nYvonne\nBelinda\nChristen\nChristy\nDarlene\nDonna\nEmma\nFallon\nFrances\nGillian\nGloria\nJessie\nJoyce\nKirsten\nKrystle\nLatisha\nLea\nLeigh\nLydia\nMartha\nMeaghan\nMichael\nPatrice\nRegina\nRose\nRuth\nShelby\nShelley\nSherri\nSonia\nStacie\nSylvia\nTrisha\nAngelina\nAnnie\nAriana\nAudra\nBrianne\nChrystal\nCristin\nDaisy\nFaith\nHilary\nIrene\nJade\nJessenia\nJodi\nJody\nJudith\nJustine\nKasey\nKeri\nMadeline\nNoelle\nRoxanne\nShana\nTasha\nTia\nTiana\nTonya\nAlana\nAlice\nAnastasia\nAntoinette\nChelsey\nChristin\nDarcy\nDayna\nDeirdre\nElaine\nEva\nKaty\nKira\nKristi\nLarissa\nLeanne\nLiana\nLiza\nLyndsey\nMadelyn\nMarcy\nMarla\nMarta\nMaryann\nMia\nNadine\nOlivia\nSiobhan\nTabitha\nTammie\nTaryn\nYajaira\nAlexandria\nAlyson\nAnita\nAnnette\nBianca\nBrett\nBrynn\nCaryn\nCharlotte\nCheri\nDena\nDevin\nDevon\nDianna\nGenevieve\nGrace\nHelen\nJana\nJanelle\nJanice\nJanine\nJenilee\nJoan\nJosephine\nKarin\nKayla\nKia\nKimberlee\nLeila\nLillian\nMarci\nMarcia\nMaribel\nMaryellen\nMaya\nMelody\nNora\nPauline\nRosanna\nRosemarie\nSandy\nSerena\nSheri\nSilvia\nStella\nVicki\nAdriana\nAgatha\nAlexa\nAmelia\nAngel\nAnnmarie\nAubrey\nBriana\nCamille\nCasandra\nCathleen\nChanel\nCherie\nChristie\nClara\nClaudia\nCorinne\nDina\nElana\nElisha\nEmilie\nHayley\nIvette\nJacklyn\nJames\nJason\nJeannine\nJoann\nJuliana\nKendall\nKori\nKyle\nLisette\nLuz\nLyndsay\nMaegan\nMara\nMarcie\nMarianne\nMarina\nMarlena\nMelisa\nMisty\nMonika\nNadia\nNorma\nRandi\nRita\nRoseanne\nRosemary\nRuby\nRyan\nSage\nSamara\nShanna\nThea\nTyesha\nVenus\nYvette\nZoe\nJennifer\nJessica\nSarah\nNicole\nMelissa\nElizabeth\nStephanie\nAshley\nHeather\nAmanda\nMichelle\nLauren\nAmy\nRebecca\nErin\nKelly\nKimberly\nDanielle\nKatherine\nKristen\nMegan\nChristina\nLaura\nLisa\nRachel\nEmily\nSara\nErica\nLindsay\nCrystal\nJamie\nTiffany\nMeghan\nKristin\nShannon\nChristine\nKathryn\nLindsey\nMary\nSamantha\nKathleen\nVanessa\nAllison\nKatie\nCatherine\nCourtney\nAmber\nAndrea\nAngela\nJacqueline\nJulie\nCaitlin\nMaria\nTara\nStacy\nAlicia\nKaren\nStacey\nVictoria\nDana\nJillian\nJulia\nAlison\nHolly\nGina\nColleen\nDiana\nNatasha\nApril\nKara\nJaclyn\nSusan\nSandra\nAlexis\nAnna\nAnne\nMelanie\nKristina\nBethany\nCarrie\nErika\nLeah\nNatalie\nPamela\nPatricia\nStefanie\nVeronica\nAbigail\nJaime\nMeredith\nBarbara\nChelsea\nJill\nKate\nMarissa\nMonica\nTina\nAimee\nDawn\nTheresa\nAlexandra\nCassandra\nCynthia\nDesiree\nRenee\nTanya\nTracy\nAnn\nCarolyn\nMichele\nRobin\nDenise\nJoanna\nKrystal\nMargaret\nLeslie\nValerie\nLatoya\nSharon\nCara\nMarisa\nMorgan\nCasey\nCheryl\nDiane\nJasmine\nAdrienne\nBrittany\nCaroline\nDeanna\nHeidi\nCarmen\nCandice\nKatharine\nKrista\nEbony\nJenny\nKatrina\nMarie\nMelinda\nMonique\nTammy\nCristina\nLori\nBrandy\nDeborah\nJenna\nKaitlin\nMolly\nCarissa\nHannah\nJocelyn\nKari\nNina\nRachael\nSheena\nAlisha\nBeth\nBonnie\nMaureen\nNichole\nAlyssa\nBridget\nLinda\nMeagan\nNancy\nTeresa\nChristie\nEileen\nJacquelyn\nJeanette\nLynn\nRebekah\nSuzanne\nTamara\nAmie\nAna\nElisabeth\nKayla\nKristy\nPatrice\nShana\nBrandi\nDorothy\nJanelle\nJanet\nJennie\nJohanna\nKerry\nKyle\nRobyn\nRuth\nSabrina\nBrenda\nCarly\nCharlene\nElaine\nHilary\nJoy\nKelley\nKristine\nMartha\nWhitney\nAshleigh\nCandace\nCarla\nDonna\nFallon\nJane\nKatelyn\nKeri\nKrystle\nMiranda\nWendy\nYvonne\nAbby\nAllyson\nAnita\nCarol\nCharlotte\nDebra\nKelli\nKendra\nLaurie\nLuz\nMarquita\nRegina\nTasha\nTaylor\nTricia\nAlana\nAlissa\nAngelica\nChrystal\nCorinne\nDaisy\nEmma\nKerri\nLesley\nMarilyn\nMaura\nMeaghan\nRosa\nAngelina\nAriel\nBrooke\nDarcy\nElisa\nEllen\nFelicia\nHelen\nJade\nJanine\nKirsten\nKristi\nLydia\nMandy\nMarisol\nNaomi\nOlivia\nPriscilla\nRose\nSherry\nTabitha\nTamika\nTanisha\nTaryn\nVirginia\nAisha\nBianca\nCassie\nChristy\nCindy\nClaire\nCorey\nElena\nElyse\nFrances\nGabrielle\nGrace\nJessie\nJustine\nKarina\nKathy\nKellie\nMelody\nNora\nPaula\nRyan\nShaina\nSherri\nSonia\nSophia\nStacie\nTonya\nAngie\nAshlee\nEsther\nGloria\nHaley\nHillary\nJanice\nJodi\nJolene\nMaggie\nRaquel\nSasha\nShauna\nShawna\nSheila\nTatiana\nTrisha\nAdriana\nAlanna\nAlyson\nAmelia\nAudrey\nBernadette\nBeverly\nBrianne\nChanel\nChristin\nDaniela\nElise\nEliza\nFaith\nGeorgia\nIris\nJayme\nJoann\nJudith\nKrystina\nLacey\nLea\nLeigh\nLillian\nLucy\nMarjorie\nMaryann\nMichael\nNikki\nPaige\nShameka\nShelley\nShelly\nSofia\nTania\nToni\nTracey\nYolanda\nYvette\nAngel\nAnnemarie\nAubrey\nBrianna\nChantel\nChelsey\nClarissa\nDamaris\nElissa\nEva\nJacklyn\nJasmin\nJean\nJeffrey\nJoan\nJoanne\nJordan\nKasey\nKelsey\nKristyn\nLatasha\nLee\nLily\nLoren\nLyndsey\nMarianna\nMarianne\nMaritza\nNoel\nNoemi\nQuiana\nRachelle\nRhonda\nRita\nRosemary\nSerena\nShanna\nSiobhan\nTessa\nZoe\nAileen\nAlexandria\nAlice\nAnnmarie\nAntoinette\nAntonia\nAriana\nBecky\nBetty\nCaitlyn\nChrista\nChristopher\nConnie\nDaniel\nDeirdre\nDevon\nDianna\nEvelyn\nFaye\nGillian\nGretchen\nIrene\nIvy\nJeanna\nJeannette\nJeannine\nJesse\nJessenia\nJosephine\nJulianne\nJustina\nKaitlyn\nKarla\nKarly\nKeisha\nKim\nKristal\nLakeisha\nLakisha\nLatosha\nLeanne\nLissette\nLourdes\nMadeline\nMallory\nMargo\nMarlene\nMaya\nMercedes\nMia\nMilagros\nMonika\nNadine\nRosemarie\nShayla\nSimone\nTaina\nTameka\nTerri\nJennifer\nJessica\nSarah\nMelissa\nNicole\nAshley\nElizabeth\nStephanie\nAmanda\nDanielle\nLauren\nHeather\nMichelle\nLaura\nEmily\nAmy\nMegan\nRebecca\nKelly\nChristina\nKatherine\nErin\nRachel\nKimberly\nKristen\nLisa\nLindsay\nMeghan\nChristine\nTiffany\nAllison\nShannon\nCaitlin\nCrystal\nKathryn\nKristin\nAlicia\nErica\nJacqueline\nSara\nJenna\nAndrea\nJamie\nLindsey\nCourtney\nSamantha\nAmber\nKatie\nVictoria\nAngela\nKathleen\nMary\nJulie\nVanessa\nCatherine\nTara\nKaren\nBrittany\nMaria\nAlexandra\nDiana\nHolly\nAlexis\nLatoya\nChelsea\nStacey\nDana\nKara\nMichele\nStefanie\nJillian\nJulia\nAlison\nBethany\nKristina\nNatasha\nCassandra\nJoanna\nKate\nMelanie\nCarolyn\nGina\nLeah\nAnna\nApril\nJaclyn\nErika\nMargaret\nPatricia\nStacy\nAlyssa\nCaroline\nColleen\nNatalie\nSandra\nSusan\nTracy\nJaime\nMonica\nRachael\nRenee\nMeredith\nPamela\nTheresa\nValerie\nDawn\nEbony\nTina\nKatrina\nAnne\nMarissa\nMonique\nCarrie\nSheena\nTanya\nCynthia\nDenise\nJacquelyn\nJasmine\nJill\nCasey\nHeidi\nRobin\nVeronica\nBarbara\nHannah\nCara\nKrista\nMorgan\nAnn\nCandice\nCristina\nDeborah\nKrystal\nMelinda\nAbigail\nKaitlin\nKatelyn\nNichole\nNina\nTamara\nBeth\nDesiree\nLeslie\nMolly\nShana\nBrandi\nBrenda\nBrianna\nBrooke\nKendra\nLinda\nChristie\nEileen\nKatharine\nMeagan\nDiane\nMarie\nMarisa\nSharon\nSuzanne\nTeresa\nAlissa\nCarissa\nJenny\nKristi\nKristine\nMaureen\nNancy\nRobyn\nTaylor\nWhitney\nAudrey\nCarly\nDominique\nJocelyn\nKirsten\nLori\nRebekah\nAlisha\nCarmen\nEllen\nGrace\nJane\nJohanna\nKelley\nKristy\nLeigh\nAdrienne\nAimee\nBridget\nCarla\nCarol\nClaire\nDeanna\nEvelyn\nKari\nMeaghan\nSabrina\nTabitha\nTracey\nCheryl\nDebra\nJanet\nKerry\nLaurie\nRegina\nSonia\nTammy\nVirginia\nAbby\nBrandy\nCharlene\nCindy\nElise\nHillary\nJodi\nJoy\nKaitlyn\nKeri\nOlivia\nPriscilla\nShauna\nWendy\nAlana\nAmelia\nBianca\nBonnie\nCorey\nDevon\nDonna\nKyle\nMallory\nNaomi\nSherri\nYvonne\nAlexandria\nAna\nElena\nFaith\nGretchen\nJanine\nJennie\nJessie\nKelli\nKelsey\nKrystle\nPaula\nRose\nRuth\nRyan\nShanna\nSherry\nAllyson\nAngelica\nCaitlyn\nChristy\nElyse\nFelicia\nHilary\nHope\nJade\nJasmin\nKayla\nLatasha\nMartha\nShayna\nSimone\nSiobhan\nSophia\nToni\nTonya\nYolanda\nAngel\nAriana\nCandace\nDaniela\nElisabeth\nEva\nJeanette\nJustine\nKarla\nLara\nLaurel\nLydia\nMackenzie\nMiranda\nNora\nPaige\nPatrice\nRaquel\nSasha\nShawna\nSheila\nTricia\nAlyson\nAmie\nAriel\nAshlee\nAshleigh\nBrianne\nDarcy\nDina\nDorothy\nEmma\nGabrielle\nJames\nJanelle\nJean\nJudith\nKerri\nKirby\nLacey\nLeanne\nMadeline\nMaggie\nMaryann\nMaura\nMichael\nNadine\nShelby\nSheri\nStacie\nTanisha\nTaryn\nTasha\nTatiana\nAlexander\nAlice\nAnastasia\nAntoinette\nCharlotte\nChrystal\nClaudia\nCorinne\nDena\nElissa\nEliza\nEmilie\nFrancesca\nGenevieve\nHelen\nJesse\nJodie\nJosephine\nKarissa\nKellie\nKristie\nLarissa\nLeticia\nLorraine\nLynn\nMayra\nMelody\nNoelle\nShanell\nShari\nShelley\nTania\nAngelina\nAthena\nBlair\nCathryn\nChanel\nDaisy\nDamaris\nElaine\nEricka\nHollie\nIrene\nJeannine\nJoan\nJuanita\nJulianne\nKali\nKathy\nKristyn\nLea\nLissette\nLucia\nLuz\nLyndsay\nLyndsey\nMara\nMarcia\nMariah\nMarina\nMarquita\nMatthew\nMiriam\nNikki\nRachelle\nRosa\nRosemary\nSandy\nShaina\nShelly\nSylvia\nTanesha\nTrisha\nTrista\nAdrianne\nAileen\nAnita\nAnnette\nArlene\nAutumn\nBecky\nBobbie\nBrandie\nBreanne\nBrenna\nCatrina\nChrista\nChristian\nDanelle\nDarlene\nDestiny\nElisha\nFallon\nGillian\nHallie\nIris\nIsabel\nJacklyn\nJaimee\nJena\nJoann\nJoanne\nKathrine\nKatina\nKim\nKira\nLakisha\nLeann\nLee\nLoren\nMarjorie\nMia\nMindy\nRoxanne\nSerena\nShanika\nShante\nShantel\nShawn\nShira\nTaisha\nTameka\nTamika\nTia\nTiana\nViviana\nXiomara\nZoe\nJessica\nJennifer\nAshley\nNicole\nAmanda\nSarah\nStephanie\nMelissa\nElizabeth\nLauren\nHeather\nChristina\nDanielle\nAmy\nMegan\nRachel\nKatherine\nEmily\nLaura\nKelly\nMichelle\nRebecca\nErin\nKimberly\nChristine\nErica\nKristen\nLisa\nSamantha\nCaitlin\nLindsay\nShannon\nAllison\nSara\nBrittany\nCrystal\nJamie\nKathryn\nMeghan\nKristin\nTiffany\nKathleen\nMary\nAmber\nKatie\nKristina\nVanessa\nCatherine\nAngela\nAlexandra\nAndrea\nAlicia\nCourtney\nJacqueline\nJenna\nLindsey\nVictoria\nJulie\nMaria\nKrystal\nLeah\nAlison\nKaitlin\nJulia\nTara\nJaclyn\nDana\nAlyssa\nColleen\nKaren\nAnna\nMargaret\nHolly\nMonica\nNatasha\nStacey\nWhitney\nCassandra\nJillian\nKate\nKrystle\nAlexis\nApril\nChelsea\nDiana\nCarolyn\nPamela\nRachael\nBethany\nCaroline\nCristina\nPatricia\nValerie\nGina\nKara\nLatoya\nMelanie\nMichele\nStacy\nSusan\nAnne\nCynthia\nNatalie\nErika\nJaime\nRenee\nTanya\nTracy\nKatharine\nMarissa\nMeredith\nNichole\nDenise\nJasmine\nKatelyn\nHeidi\nMonique\nTina\nKrista\nLeslie\nKaitlyn\nMallory\nKatrina\nStefanie\nDesiree\nMaureen\nMeagan\nCara\nCasey\nDominique\nJoanna\nSheena\nBarbara\nNancy\nRobin\nAbigail\nBridget\nBrooke\nDawn\nLinda\nMarie\nNina\nShana\nTheresa\nCarly\nEbony\nJessie\nMorgan\nSandra\nDiane\nJill\nJohanna\nMarisa\nSharon\nSuzanne\nAlisha\nCandice\nCarmen\nCarrie\nKelley\nVeronica\nAdrienne\nAimee\nAlissa\nClaire\nDeanna\nJocelyn\nKristy\nLori\nMelinda\nMolly\nTeresa\nBrenda\nFelicia\nHannah\nKerry\nTammy\nBeth\nCheryl\nKristine\nCarla\nEileen\nEmma\nJustine\nKerri\nTaryn\nTaylor\nBonnie\nBrittney\nChristy\nElise\nJanelle\nJeanette\nMeaghan\nRebekah\nWendy\nElisabeth\nEllen\nJulianne\nKelsey\nLynn\nAmelia\nAnn\nCandace\nCassie\nJenny\nKirsten\nSheila\nSophia\nTamara\nAmie\nCaitlyn\nCharlotte\nKellie\nMiranda\nRobyn\nShauna\nShayna\nTanisha\nAngelica\nAshlee\nBrandi\nBrandy\nCharlene\nEliza\nFrances\nIris\nJane\nJodi\nJordan\nKyle\nLarissa\nLeigh\nMadeline\nSabrina\nShanna\nStacie\nTabitha\nAlana\nBrianna\nCarissa\nCortney\nFaith\nHilary\nJacquelyn\nJenifer\nJoanne\nKelli\nKeri\nKira\nLaurel\nLea\nNora\nPatrice\nRosa\nShawna\nTania\nAllyson\nAlyson\nAna\nAngel\nAshleigh\nCarol\nDaisy\nElyse\nGloria\nJanet\nKristie\nLuz\nMaggie\nRose\nSonia\nTrisha\nVirginia\nAlexandria\nArielle\nCamille\nDeborah\nDebra\nDevon\nEva\nEvelyn\nGabrielle\nHillary\nJesse\nKayla\nLena\nLillian\nMarisol\nNaomi\nNoelle\nPaige\nPaula\nPriscilla\nRaquel\nRosemary\nRuth\nSally\nSerena\nTasha\nAnnette\nAntoinette\nBritney\nCelia\nChelsey\nCindy\nDarlene\nDianna\nDonna\nFrancesca\nGiselle\nHaley\nHelen\nHope\nJade\nJeannette\nJennie\nJustina\nLaurie\nLydia\nNatalia\nOlivia\nShelley\nToni\nTonya\nTricia\nYvonne\nAdriana\nAileen\nAlisa\nAngelina\nAnnemarie\nAntonia\nAriel\nAshly\nAudrey\nBlair\nBreanna\nChristie\nCorinne\nDamaris\nElena\nJacklyn\nJanice\nJuliana\nKarissa\nKendra\nMarianne\nMaura\nMia\nMichael\nRegina\nRita\nRyan\nShaina\nShari\nShelly\nSheri\nSherrie\nSummer\nSydney\nYaritza\nAlaina\nAlycia\nAnnmarie\nAubrey\nAutumn\nBianca\nBrenna\nBrianne\nCatrina\nChanel\nChantel\nChrista\nClarissa\nConstance\nCory\nDaniella\nDarcy\nDavid\nGrace\nJames\nJana\nJasmin\nJayme\nJeanne\nJeffrey\nJena\nKarla\nLacey\nLatasha\nLissette\nLiza\nMaegan\nMarla\nMarlene\nMelody\nMindy\nNathalie\nNicolle\nNikki\nNikole\nNoel\nRhiannon\nRoxanne\nShanell\nShelby\nSherri\nShirley\nSierra\nSofia\nSonya\nTabatha\nTamika\nTessa\nTracey\nTraci\nWanda\nAbbey\nAlexander\nAnastasia\nAnnie\nAriana\nAvery\nBetsy\nBriana\nCameron\nCaryn\nChastity\nCheri\nCherie\nChristen\nChristopher\nCiara\nColette\nConnie\nDaniela\nDeidre\nEleanor\nElissa\nEricka\nFallon\nFrancine\nHailey\nIndia\nIrene\nIvy\nJoy\nJoyce\nKari\nKarin\nKarina\nKatelynn\nKathy\nKatiria\nKristi\nKrysta\nLatisha\nLeanna\nLee\nLesley\nLily\nLora\nMandy\nMarci\nMarina\nMartha\nMeghann\nMelisa\nMisty\nNadine\nOctavia\nPhoebe\nRosemarie\nSarai\nSiobhan\nSuzanna\nSylvia\nTrista\nVivian\nXiomara\nYahaira\nYajaira\nJessica\nJennifer\nAshley\nAmanda\nSarah\nNicole\nStephanie\nLauren\nMelissa\nElizabeth\nDanielle\nHeather\nMichelle\nKelly\nKatherine\nRebecca\nEmily\nChristina\nAmy\nKimberly\nSamantha\nMegan\nLaura\nBrittany\nRachel\nKristen\nErica\nErin\nAllison\nChristine\nSara\nLindsay\nCaitlin\nCrystal\nShannon\nJamie\nKathryn\nLisa\nTiffany\nAmber\nCourtney\nMeghan\nVanessa\nAlexandra\nCatherine\nKatie\nKathleen\nJacqueline\nLindsey\nMary\nAlicia\nJulie\nJenna\nKristina\nAlison\nJillian\nCassandra\nAngela\nKristin\nMaria\nMargaret\nWhitney\nVictoria\nAndrea\nMarissa\nKaitlin\nAnna\nChelsea\nAlyssa\nPatricia\nCaroline\nNatalie\nColleen\nKara\nMallory\nStacey\nHolly\nJulia\nTara\nNatasha\nErika\nDana\nGina\nMelanie\nCarolyn\nJasmine\nKaitlyn\nKrystal\nDiana\nKrista\nKaren\nLeah\nJaclyn\nCasey\nKate\nKatelyn\nMolly\nMonica\nRachael\nBethany\nMichele\nAnne\nVeronica\nCristina\nMelinda\nAlexis\nApril\nJaime\nAbigail\nKatrina\nMorgan\nStefanie\nBrittney\nCara\nNichole\nEmma\nLeslie\nSandra\nTheresa\nCynthia\nStacy\nSusan\nTracy\nBrooke\nFelicia\nJustine\nLatoya\nMarie\nMarisa\nShana\nDenise\nDominique\nJocelyn\nKelley\nKelsey\nMeagan\nMeredith\nTaylor\nAnn\nBarbara\nClaire\nJill\nKatharine\nPamela\nSabrina\nDeborah\nHannah\nJoanna\nSharon\nCheryl\nDeanna\nJulianne\nAimee\nKayla\nKerry\nMonique\nRenee\nTanya\nAlisha\nAllyson\nAshlee\nBrianna\nCarrie\nHilary\nKristine\nMadeline\nTamara\nTina\nCandice\nJordan\nRebekah\nAlana\nChrista\nKrystle\nLatasha\nLynn\nMeaghan\nTeresa\nVirginia\nCarla\nDawn\nDesiree\nHeidi\nJacquelyn\nKendra\nKristi\nKristy\nMaureen\nNina\nRobin\nValerie\nBeth\nDiane\nSasha\nTonya\nBrenda\nBridget\nCarly\nElyse\nJessie\nKellie\nKeri\nLeigh\nSuzanne\nTabitha\nTracey\nAbby\nAna\nCandace\nCharlene\nEbony\nHillary\nJasmin\nSade\nTasha\nAlexa\nAmie\nBrianne\nBritney\nCaitlyn\nCharlotte\nChelsey\nChristie\nCorey\nEllen\nJanice\nNancy\nRobyn\nSheila\nToni\nAlissa\nAmelia\nBonnie\nBrandy\nCarissa\nCassie\nChanel\nFrancesca\nGrace\nHelen\nJanet\nKayleigh\nSheena\nTaryn\nTrisha\nCarmen\nCindy\nDonna\nEileen\nEvelyn\nJenny\nLeanne\nMargarita\nMaura\nRosa\nRose\nSavannah\nAnnmarie\nCarol\nCorinne\nDaniella\nElisabeth\nGabrielle\nJeannette\nKasey\nKira\nLori\nNaomi\nNoelle\nRegina\nRuth\nShante\nShelby\nSierra\nStacie\nSylvia\nTammy\nTatiana\nAdrienne\nAileen\nAriana\nAriel\nAshleigh\nAthena\nBriana\nChristy\nClaudia\nDarcy\nEleanor\nElise\nJeanette\nJena\nJennie\nJohanna\nJoy\nKari\nKarissa\nLara\nLatisha\nLinda\nLoren\nLydia\nMadison\nMichaela\nOlivia\nPriscilla\nShauna\nSonya\nTania\nTricia\nWendy\nYolanda\nAngelina\nAshely\nAudra\nBianca\nBrenna\nElaine\nElena\nElissa\nEmilie\nEricka\nFrances\nIris\nJaimie\nJane\nJanine\nJoanne\nKarla\nKatlyn\nKeisha\nKelli\nKristyn\nKylie\nLarissa\nLaurie\nLucy\nLyndsay\nLynette\nNikita\nPaige\nRoxanne\nShawna\nSheri\nSophia\nAlaina\nAlexander\nAlice\nAlyson\nAngelica\nAudrey\nBlair\nBreanna\nCasandra\nCiara\nColeen\nDarlene\nDenisha\nDorothy\nJean\nJodi\nJosephine\nJudith\nKerri\nMarianne\nMarlene\nMelody\nMichael\nNathalie\nNikki\nPaula\nRaquel\nRosemary\nRyan\nShaina\nShanae\nShanna\nTori\nYvette\nZoe\nAisha\nAlisa\nAlycia\nAlyse\nAnastasia\nAnnette\nAnnie\nArianna\nAvery\nBailey\nBrandi\nBrian\nCecilia\nChantal\nChantel\nChantelle\nChristen\nConstance\nDamaris\nDevin\nDianna\nElana\nElisa\nFaith\nHaley\nHalley\nHayley\nJacklyn\nJanelle\nJoyce\nJuliana\nKaryn\nKathy\nKendall\nKrystina\nKyle\nLiane\nMaribel\nMarisela\nMarquita\nMiranda\nRochelle\nRosanna\nShari\nShayna\nTia\nTiana\nYvonne\nAja\nAlexandria\nAlysia\nAnita\nArielle\nAutumn\nCallie\nCamille\nCierra\nClarissa\nCortney\nCory\nDaisy\nDaphne\nDevon\nDina\nDominque\nElisha\nEliza\nEva\nFallon\nIrene\nIvelisse\nJackie\nJade\nJayme\nJayne\nJesse\nJessenia\nJoan\nJustina\nKaitlynn\nKirsten\nKyla\nKylee\nLacey\nLakeisha\nLatavia\nLeila\nLillian\nLiza\nLorraine\nLuz\nLynne\nMaegan\nMarilyn\nMarisol\nMarsha\nMckenzie\nMeghann\nMercedes\nMia\nMonika\nNatalia\nParis\nRachelle\nRita\nRosemarie\nSandy\nSerena\nShelly\nSherri\nSherry\nShirley\nSimone\nSiobhan\nSonia\nSonja\nTiffani\nJessica\nAshley\nAmanda\nJennifer\nSarah\nNicole\nStephanie\nMelissa\nElizabeth\nLauren\nEmily\nDanielle\nSamantha\nKatherine\nHeather\nChristina\nRebecca\nMichelle\nLaura\nBrittany\nKelly\nRachel\nMegan\nKimberly\nCaitlin\nErin\nKristen\nAmy\nErica\nSara\nAllison\nChristine\nLindsay\nAlexandra\nShannon\nMeghan\nLisa\nAmber\nKathryn\nCourtney\nTiffany\nAlicia\nAlyssa\nVictoria\nKatie\nCrystal\nVanessa\nCatherine\nChelsea\nJacqueline\nLindsey\nJamie\nJenna\nAndrea\nJulie\nKathleen\nKayla\nMary\nKristin\nKristina\nJulia\nWhitney\nMaria\nAnna\nMonica\nAngela\nKara\nMarissa\nCaroline\nJaclyn\nJillian\nKaitlyn\nTara\nCassandra\nKaitlin\nDana\nMelanie\nMargaret\nKate\nNatasha\nStacey\nKatelyn\nNatalie\nAlison\nGina\nCasey\nErika\nKelsey\nColleen\nDiana\nLeah\nHannah\nKrista\nJasmine\nMolly\nVeronica\nDenise\nEmma\nApril\nDesiree\nSusan\nCynthia\nMorgan\nKaren\nKrystal\nPatricia\nMallory\nMichele\nRenee\nStefanie\nTaylor\nAlexis\nCarolyn\nValerie\nYesenia\nAbigail\nJoanna\nMeredith\nSabrina\nFelicia\nJacquelyn\nRachael\nAnne\nBethany\nBrianna\nKatrina\nMonique\nSandra\nSasha\nStacy\nTanya\nBrittney\nCarly\nMeagan\nTheresa\nCarrie\nDominique\nHolly\nJocelyn\nJustine\nKerry\nCaitlyn\nJill\nNichole\nBarbara\nCristina\nEbony\nLeslie\nMarisa\nMelinda\nBridget\nBrooke\nKatharine\nPamela\nAngelica\nKelley\nRobin\nShana\nAlisha\nAshlee\nCara\nChristie\nElise\nElyse\nJanet\nNina\nOlivia\nCarmen\nClaire\nDeanna\nJordan\nLatoya\nLinda\nSuzanne\nTina\nAlexandria\nAnastasia\nChrista\nEllen\nHeidi\nHilary\nKristine\nMadeline\nSharon\nBrenda\nChantal\nDawn\nGrace\nJaime\nJessie\nKendra\nSophia\nAdrienne\nAimee\nAlexa\nAlyson\nCharlotte\nChelsey\nGabrielle\nKirsten\nKristy\nLillian\nMeaghan\nPaige\nTracy\nAllyson\nElena\nEva\nEvelyn\nJane\nJenny\nMarie\nMiranda\nRobyn\nAlana\nAmelia\nCandice\nCarla\nElaine\nFrancesca\nJesenia\nKari\nKellie\nKrystle\nMaureen\nNancy\nShanna\nTeresa\nTracey\nAnn\nBriana\nJaimie\nJohanna\nKayleigh\nKelli\nNoelle\nRosemary\nShawna\nShayna\nTatiana\nAna\nAubrey\nAudrey\nAutumn\nCandace\nDamaris\nDiane\nHelen\nHillary\nKasey\nLeigh\nShaina\nTammy\nAngel\nBeth\nBritney\nDeborah\nJasmin\nJoanne\nKeri\nKrystina\nLuz\nNaomi\nRosa\nShauna\nTamara\nToni\nWendy\nAnnie\nBetsy\nBrittani\nCassie\nCorey\nCorinne\nDarlene\nDina\nEliza\nFaith\nIris\nJanelle\nKerri\nLatasha\nMackenzie\nMartha\nMichael\nRaquel\nRegina\nSade\nShayla\nSheila\nShelby\nStacie\nTania\nTrisha\nYolanda\nAlaina\nAlisa\nAngelina\nBabygirl\nBonnie\nCarissa\nCheryl\nElisa\nElisabeth\nFrances\nJade\nJanice\nJennie\nKarina\nKarla\nKendall\nKyle\nLynn\nRebekah\nShari\nTabitha\nVirginia\nAlanna\nAlice\nAlysha\nAriel\nBianca\nBrandy\nCarol\nCori\nCortney\nDaisy\nDeirdre\nDonna\nEileen\nHaley\nJacklyn\nJazmin\nJodi\nKristi\nKylie\nLena\nLoren\nLori\nLydia\nMadison\nMarilyn\nMaura\nNikita\nNikki\nNora\nPaula\nSavannah\nShirley\nSofia\nTanisha\nAdriana\nAlyse\nAlysia\nArielle\nAshleigh\nCamille\nCherelle\nCheyenne\nCindy\nDaniela\nDevin\nEmilie\nEricka\nGabriela\nGenevieve\nGloria\nJanay\nJeanette\nJuliana\nKatelin\nKaylee\nKristie\nLaurel\nLaurie\nLea\nLucy\nLyndsay\nLyndsey\nMaggie\nMelody\nMichaela\nMonika\nNadia\nPriscilla\nRachelle\nRandi\nShelley\nSonia\nTalia\nTaryn\nTricia\nAmie\nAnita\nAntoinette\nBlair\nBreanna\nCecilia\nChloe\nChrystal\nCierra\nClarissa\nDayna\nDevon\nDorothy\nFallon\nHope\nJenifer\nJerrica\nJesse\nJodie\nJoelle\nJulianna\nJuliet\nJustina\nKathrine\nKathy\nKaylin\nKrysta\nLara\nLarissa\nLatisha\nLeanne\nLia\nLily\nMarisol\nMia\nMicaela\nMiriam\nNatalia\nRoxanne\nRuth\nSherry\nSierra\nSiobhan\nSophie\nTia\nTiana\nAbby\nAlessandra\nAllie\nAllyssa\nAnnette\nAnthony\nAshely\nAvery\nAyla\nBaby\nBernadette\nBeverly\nBlanca\nBrenna\nCallie\nCassidy\nCassondra\nCathy\nCeleste\nChanel\nCharlene\nChristen\nChristian\nChristin\nCorrine\nDelia\nDena\nGiselle\nGladys\nGlenda\nHayley\nIlana\nIvory\nJanine\nJayme\nJazmine\nJean\nJeannette\nJonathan\nJoy\nJoyce\nJudith\nJulianne\nKacie\nKadie\nKaleigh\nKatlyn\nKim\nKira\nKristyn\nKyla\nKyra\nLiza\nLorraine\nLynda\nMandi\nMariah\nMaritza\nMarlene\nMarta\nMarybeth\nPatrice\nReva\nRochelle\nRose\nRyan\nSavanna\nSheri\nSummer\nTaisha\nTanika\nTasha\nTess\nYvette\nJessica\nAshley\nAmanda\nSarah\nNicole\nJennifer\nStephanie\nElizabeth\nLauren\nSamantha\nMelissa\nEmily\nBrittany\nDanielle\nKatherine\nMichelle\nRachel\nMegan\nChristina\nKelly\nLaura\nRebecca\nHeather\nKimberly\nCaitlin\nAlexandra\nSara\nErin\nKristen\nChelsea\nAllison\nChristine\nTiffany\nAlyssa\nShannon\nCourtney\nErica\nAmy\nJacqueline\nKathryn\nLindsay\nAmber\nLisa\nAlicia\nVanessa\nVictoria\nCrystal\nKayla\nMary\nCatherine\nJamie\nAngela\nMeghan\nKristin\nKaitlin\nMargaret\nKatelyn\nJulia\nLindsey\nKathleen\nKelsey\nAndrea\nJasmine\nKatie\nJenna\nMelanie\nKaitlyn\nMolly\nKristina\nTara\nMaria\nNatalie\nCassandra\nErika\nJillian\nMarissa\nAnna\nDana\nHannah\nNatasha\nAlison\nJulie\nKara\nMonica\nRachael\nDiana\nJaclyn\nLeah\nColleen\nGina\nHolly\nPatricia\nBrittney\nAlexis\nCaroline\nKrystal\nMorgan\nCasey\nWhitney\nCarolyn\nSusan\nAbigail\nMallory\nMonique\nTheresa\nVeronica\nEmma\nApril\nBianca\nBrianna\nCynthia\nKrista\nTaylor\nJacquelyn\nKelley\nNichole\nStacey\nAnne\nClaire\nKate\nRenee\nJustine\nKaren\nMichele\nSasha\nValerie\nAlexandria\nBethany\nCristina\nKristine\nTina\nAimee\nAngelica\nAnn\nBrooke\nOlivia\nSabrina\nAshlee\nDenise\nJocelyn\nLeslie\nMeaghan\nCara\nDeanna\nEllen\nGrace\nMeredith\nAlisha\nBarbara\nCarly\nJoanna\nStefanie\nGabrielle\nPaige\nPamela\nSandra\nTanya\nDiane\nKatrina\nKirsten\nLatoya\nMelinda\nCharlotte\nElise\nKerry\nMarie\nShana\nStacy\nAnastasia\nBriana\nCarrie\nHillary\nKendra\nKristy\nMeagan\nTracy\nFelicia\nHilary\nJill\nKerri\nVirginia\nAbby\nAlissa\nAudrey\nCarissa\nChelsey\nDesiree\nDominique\nFrancesca\nJaime\nJordan\nNancy\nAlyson\nAmelia\nCandice\nEbony\nJasmin\nMarisa\nRebekah\nRobin\nSimone\nTamara\nTeresa\nAlexa\nAna\nBridget\nChristie\nJennie\nLinda\nRoxanne\nAdrienne\nAutumn\nCarmen\nHaley\nJane\nJoanne\nKatharine\nKellie\nKira\nLori\nMadeline\nNina\nShanice\nSharon\nShayna\nSophia\nAlana\nAubrey\nBabygirl\nBeth\nCaitlyn\nCarla\nDawn\nGillian\nHayley\nHeidi\nIris\nNoelle\nPriscilla\nRose\nShante\nChantel\nDevon\nEileen\nElisabeth\nEliza\nElyse\nJanelle\nJazmin\nJessenia\nKelli\nLacey\nLaurie\nMaureen\nMiranda\nRobyn\nShaina\nTracey\nAdriana\nAlisa\nAngel\nAriana\nAriel\nBrianne\nCandace\nChrista\nCindy\nDarcy\nEvelyn\nFaith\nJenny\nJohanna\nJulianne\nKarissa\nKayleigh\nLarissa\nLauryn\nLynn\nMackenzie\nMarilyn\nNadine\nRaquel\nSheila\nTasha\nYesenia\nAlyse\nAngelina\nAshleigh\nBrenda\nCheryl\nChloe\nClarissa\nDina\nElena\nElisa\nHelen\nIsabel\nJanet\nKarla\nKasey\nKristie\nKrystle\nLeanna\nLeigh\nMartha\nMichaela\nPaula\nRuth\nRyan\nShanna\nShelby\nSonia\nSuzanne\nToni\nAlexander\nAllyson\nAlysia\nArielle\nBrandy\nChantal\nCorey\nCorinne\nDaisy\nDamaris\nDaniela\nDaniella\nElaine\nEleanor\nFrances\nJanice\nJoan\nKylie\nLiza\nLuz\nMaggie\nMarlene\nMonika\nNora\nSavannah\nSonya\nTammy\nTatiana\nAlaina\nAlice\nAnita\nAshely\nAsia\nBonnie\nBritney\nConstance\nDayna\nDorothy\nEricka\nEva\nGabriella\nGloria\nJuliana\nKari\nKeri\nKristi\nLorraine\nLydia\nMaura\nMelisa\nMelody\nMichael\nPatrice\nRegina\nRosa\nStaci\nSydney\nTabitha\nTamika\nTaryn\nTiara\nTrisha\nYolanda\nAlessandra\nAnnette\nAntoinette\nBailey\nBeatriz\nBrittni\nCassidy\nCharlene\nChristy\nDeborah\nDevin\nElisha\nGenevieve\nHanna\nHope\nIrene\nIvelisse\nJacklyn\nJeanette\nJeannette\nJenifer\nJosephine\nKatelynn\nKristyn\nLee\nLillian\nLucy\nLyndsey\nMadison\nMckenzie\nMercedes\nNadia\nRandi\nRochelle\nShawna\nShayla\nTanisha\nWendy\nAbbey\nAllegra\nAmaris\nBrandi\nCarol\nCasandra\nCassie\nChelsie\nChristin\nCierra\nDaniel\nDebra\nDeja\nEleni\nFranchesca\nGeraldine\nGladys\nJackie\nJade\nJaimie\nJanay\nJayme\nJazmine\nJessie\nJodi\nJoelle\nJoyce\nJulianna\nJulissa\nKaryn\nKaylee\nKrystyna\nLatasha\nMandy\nMarcella\nMarianne\nMaritza\nMiriam\nNaomi\nNatalia\nRichelle\nSade\nSerena\nSierra\nStephaine\nSummer\nSylvia\nTania\nTiana\nTonya\nTricia\nTyler\nVenessa\nVivian\nWanda\nYahaira\nZoe\nAlycia\nAmie\nAnnie\nAntonia\nAvery\nCaprice\nChristen\nChristopher\nClara\nCori\nDannielle\nDaphne\nDarlene\nDeirdre\nDesirae\nDonna\nEmilia\nFarah\nGabriela\nJalisa\nJanessa\nJohn\nJoseph\nKala\nKarli\nKaylyn\nKyla\nKyle\nKyra\nLea\nLeann\nLeanne\nLeeann\nLily\nLogan\nLora\nMaeve\nMaxine\nMindy\nNicolle\nPortia\nSally\nShakia\nShanelle\nShauna\nSheena\nSiobhan\nStacie\nStephany\nTessa\nThomas\nTraci\nTyesha\nJessica\nAshley\nAmanda\nSarah\nNicole\nStephanie\nBrittany\nJennifer\nElizabeth\nLauren\nSamantha\nEmily\nMelissa\nKatherine\nDanielle\nMichelle\nChristina\nRachel\nMegan\nRebecca\nKelly\nHeather\nLaura\nChelsea\nAlyssa\nKimberly\nKristen\nAlexandra\nCaitlin\nSara\nAmy\nChristine\nAmber\nAllison\nKayla\nErin\nVictoria\nKathryn\nLisa\nErica\nAlicia\nTiffany\nCrystal\nLindsay\nJacqueline\nShannon\nCourtney\nVanessa\nMary\nMeghan\nCassandra\nJasmine\nHannah\nJamie\nCatherine\nKathleen\nKelsey\nTaylor\nKristin\nAndrea\nJillian\nLindsey\nAngela\nKaitlyn\nMargaret\nMarissa\nCaroline\nKatie\nMelanie\nJenna\nJulia\nKatelyn\nAlison\nAnna\nKara\nKristina\nNatalie\nMolly\nAbigail\nKaitlin\nLeah\nJulie\nBianca\nEmma\nGabrielle\nErika\nGina\nMaria\nBrittney\nCarolyn\nDana\nMorgan\nBrianna\nBethany\nDiana\nMonica\nVeronica\nRachael\nColleen\nKrystal\nNatasha\nDenise\nAnne\nPatricia\nAlexis\nBrooke\nJaclyn\nJordan\nCara\nOlivia\nAngelica\nCasey\nFelicia\nKrista\nApril\nCynthia\nDeanna\nTara\nHolly\nValerie\nGrace\nKate\nNichole\nBriana\nDesiree\nKaren\nMichele\nStacey\nCristina\nHilary\nJustine\nSabrina\nWhitney\nSasha\nBridget\nKatrina\nMeredith\nTheresa\nAlexandria\nJoanna\nMonique\nRenee\nJacquelyn\nMeagan\nNina\nPaige\nStefanie\nChelsey\nJocelyn\nLeslie\nSusan\nAlisha\nArielle\nCarly\nEllen\nShaina\nAllyson\nBarbara\nMelinda\nStacy\nAlexa\nClaire\nDominique\nMallory\nPamela\nVirginia\nAna\nCaitlyn\nHaley\nKendra\nMarie\nAimee\nCarissa\nKylie\nMadeline\nRebekah\nRobin\nSandra\nSharon\nAdriana\nJulianne\nKarina\nKristy\nMiranda\nTanya\nDeborah\nEbony\nJessie\nKristine\nShelby\nTaryn\nTricia\nAmelia\nAriel\nAsia\nCarrie\nHillary\nKiara\nRobyn\nSimone\nSophia\nSuzanne\nTina\nAlissa\nAnastasia\nAshlee\nAudrey\nBrenda\nCandace\nCarla\nCharlotte\nEvelyn\nHope\nKarissa\nLatoya\nMarisa\nMercedes\nShana\nShanice\nTamara\nAnn\nAriana\nChristie\nCorinne\nJane\nKatharine\nMaureen\nMeaghan\nNora\nAdrienne\nAlyson\nCandice\nDevon\nDiane\nElyse\nJaime\nJasmin\nJenny\nNaomi\nNikki\nParis\nTasha\nTeresa\nAbby\nAnnmarie\nBritney\nCarmen\nCarol\nCharlene\nChrista\nElaine\nElisa\nElise\nEliza\nFaith\nJanelle\nKatelynn\nKelley\nKellie\nLillian\nLinda\nLydia\nMackenzie\nShayna\nTabitha\nTatiana\nTracy\nAngelina\nBritany\nChantel\nCheryl\nChloe\nDevin\nGabriella\nGretchen\nHelen\nJeanette\nJoy\nKari\nKasey\nKristi\nLuz\nMichaela\nNancy\nNoelle\nOctavia\nRaquel\nSheena\nTrisha\nYesenia\nAnita\nAubrey\nAutumn\nBabygirl\nBrianne\nClare\nDaniela\nElena\nEsther\nHayley\nJohanna\nKerri\nKerry\nKristie\nLea\nLeanne\nLori\nRosa\nShawna\nSonya\nWendy\nAlana\nBrittani\nCindy\nCori\nEileen\nEleanor\nElisabeth\nEva\nGillian\nIsabelle\nJade\nKelli\nKirsten\nLeigh\nMaura\nMiriam\nNadia\nRegina\nRose\nRuth\nShauna\nSheila\nSonia\nTiara\nAisha\nAlessandra\nAlice\nAshleigh\nBreanna\nChanel\nChantal\nDestiny\nDonna\nEricka\nFrancesca\nHeidi\nIrene\nJaimie\nJanice\nJazmine\nKaila\nKaitlynn\nKali\nKayleigh\nKyle\nLarissa\nLatasha\nLeeann\nLily\nLucy\nMarianne\nMarilyn\nMichael\nSierra\nSiobhan\nTania\nToni\nYaritza\nAdrianna\nAlanna\nAlisa\nAlyse\nAlysha\nAlysia\nAngel\nAnnemarie\nBaby\nBrandi\nBrandy\nCamille\nCasandra\nCassondra\nCeleste\nChristopher\nChristy\nCiara\nClaudia\nDayna\nFrances\nIndia\nJuliana\nKarla\nKira\nKrystle\nLacey\nLaurel\nLiza\nLyndsey\nLynn\nMaegan\nMarina\nMaryann\nMia\nNadine\nNatalia\nNicolle\nPhoebe\nPriscilla\nRochelle\nSally\nSamatha\nStephany\nSylvia\nTammy\nTessa\nTia\nTimothy\nTonya\nXiomara\nAndrew\nAnnie\nArianna\nCallie\nCassie\nCherelle\nCorey\nDaniella\nDeena\nDeirdre\nDianna\nEve\nFallon\nGeraldine\nGloria\nHanna\nIliana\nJanet\nJanine\nJazmin\nJean\nJeanne\nJerica\nJerrica\nJessenia\nJill\nJodi\nJosephine\nJulianna\nKassandra\nKatelin\nKatlin\nKatlyn\nKeshia\nKiersten\nKristyn\nLatisha\nLauryn\nMara\nMargarita\nMarisol\nMarlena\nMaya\nPrincess\nRoxanne\nShaniece\nShante\nShaquana\nShelley\nStaci\nSydney\nTanisha\nTracey\nZuleyka\nAda\nAileen\nAlexander\nAntoinette\nAurora\nBailey\nBelinda\nBeth\nBetsy\nBrenna\nBrigid\nCatrina\nCecilia\nCelia\nCharisse\nChelsie\nClara\nClarissa\nCorrine\nDamaris\nDawn\nDeidre\nElana\nElissa\nGeorgia\nGlenda\nIsabel\nJaleesa\nJalisa\nJanay\nJanell\nJeannette\nJelisa\nJenifer\nJennie\nJesse\nJoanne\nJoselyn\nJoyce\nJudith\nJustina\nKacie\nKathy\nKaylee\nKeisha\nKyla\nLara\nLatifah\nLeila\nLiana\nLorraine\nMadeleine\nMaggie\nMaryellen\nMelody\nMilagros\nMindy\nNorma\nPatrice\nPrecious\nRichard\nRosemary\nSavannah\nSerena\nShaniqua\nShayla\nSherri\nShirley\nTess\nWhitley\nYessenia\nYolanda\nJessica\nAshley\nAmanda\nNicole\nStephanie\nSamantha\nSarah\nBrittany\nJennifer\nEmily\nLauren\nElizabeth\nMelissa\nRebecca\nRachel\nDanielle\nKatherine\nChelsea\nMichelle\nAlyssa\nMegan\nKelly\nChristina\nHeather\nLaura\nVictoria\nKayla\nAlexandra\nCourtney\nHannah\nSara\nAmber\nAmy\nErica\nKimberly\nErin\nChristine\nKathryn\nCaitlin\nKristen\nKelsey\nShannon\nTiffany\nAllison\nJasmine\nMeghan\nJacqueline\nMary\nAlicia\nLisa\nKaitlyn\nTaylor\nAngela\nCassandra\nCatherine\nAndrea\nAnna\nLindsay\nKathleen\nJamie\nMolly\nJillian\nCaroline\nOlivia\nLindsey\nJulia\nCrystal\nMaria\nMelanie\nKatelyn\nMarissa\nVanessa\nKaitlin\nAlison\nMargaret\nJenna\nBrittney\nEmma\nKatie\nKristin\nMonica\nBianca\nJulie\nPaige\nAbigail\nBrianna\nNatalie\nErika\nNatasha\nKristina\nColleen\nJordan\nLeah\nMorgan\nCarolyn\nAlexa\nGabrielle\nDana\nJaclyn\nCasey\nBrooke\nGina\nAlexis\nKara\nPatricia\nAlexandria\nCynthia\nVeronica\nAnne\nKrystal\nBethany\nTara\nGrace\nBriana\nFelicia\nSasha\nAriel\nCarly\nClaire\nRachael\nHolly\nMeagan\nAngelica\nJocelyn\nJoanna\nKate\nSabrina\nSusan\nAudrey\nKaren\nMadeline\nMichele\nMonique\nCaitlyn\nKrista\nLeslie\nWhitney\nApril\nDenise\nDesiree\nHillary\nKirsten\nMarisa\nMeredith\nStacey\nBridget\nChelsey\nDeanna\nAllyson\nCandace\nEllen\nKelley\nShelby\nMallory\nAdriana\nAnn\nArielle\nCarissa\nCharlotte\nGabriella\nHaley\nMarie\nMelinda\nNina\nAlisha\nDiana\nElise\nRenee\nValerie\nAmelia\nBritney\nKatharine\nMeaghan\nStacy\nTheresa\nJenny\nKatrina\nLatoya\nNichole\nSharon\nAimee\nAna\nAshleigh\nBrenna\nJustine\nKristine\nNancy\nRobin\nSandra\nShawna\nStefanie\nTanya\nAshlee\nCristina\nGenevieve\nHilary\nJacquelyn\nJaime\nJazmin\nKellie\nKendra\nKerry\nTatiana\nTracy\nCara\nDominique\nElisabeth\nPriscilla\nRose\nSydney\nVirginia\nBrandi\nCandice\nDeborah\nDevon\nEbony\nJaimie\nJessie\nKayleigh\nKristy\nLydia\nMadison\nSierra\nTabitha\nTeresa\nAlissa\nAlysha\nAriana\nBarbara\nChloe\nEleanor\nHayley\nJade\nKatlyn\nKaylee\nMartha\nNadia\nNikki\nNora\nShana\nShauna\nSheila\nSimone\nSophia\nTrisha\nYesenia\nAlana\nAnastasia\nAubrey\nDevin\nElena\nEliza\nElyse\nJanelle\nJeanette\nJohanna\nJulianne\nKasey\nKristyn\nKylie\nLiana\nLucy\nMercedes\nPamela\nRobyn\nRosemary\nShaniqua\nTaryn\nWendy\nAlyson\nAngelina\nAnnie\nBonnie\nBrianne\nCamille\nCarmen\nCarrie\nCheryl\nClare\nJazmine\nJill\nJoanne\nKeri\nKrystle\nLacey\nLaurel\nLinda\nMarilyn\nMelody\nRegina\nRyan\nShaina\nTina\nAsia\nAvery\nBeth\nBrittani\nCarla\nCarol\nChantel\nCheyenne\nChrista\nChristie\nCorey\nCorinne\nGillian\nKendall\nLarissa\nMaggie\nMarlene\nMia\nMichaela\nMiranda\nNaomi\nRosalie\nToni\nAlaina\nAlessandra\nAlycia\nArianna\nBailey\nBreanna\nBrenda\nClara\nDaniela\nDeirdre\nDiane\nDorothy\nEileen\nEricka\nFrancesca\nIris\nJane\nJesenia\nKarina\nLea\nLeigh\nLena\nLori\nMackenzie\nMariah\nRaquel\nRaven\nSonia\nTamara\nTanisha\nTiara\nAlexander\nBrandy\nCasandra\nCassidy\nChristopher\nChristy\nDestiny\nEvelyn\nFaith\nGeorgia\nHeidi\nHope\nJanet\nJeannette\nJennie\nJessenia\nJuliana\nKaila\nKaleigh\nKarissa\nKatelynn\nKeisha\nKristie\nKyle\nLuz\nMarina\nMaura\nMaya\nMichael\nNadine\nNatalia\nRochelle\nRoxanne\nSandy\nShayna\nZoe\nAlanna\nAnita\nAshlyn\nAutumn\nCarley\nCarolina\nCassie\nCeleste\nCiara\nColby\nDawn\nDayna\nElisa\nElissa\nEva\nHanna\nIsabel\nIsamar\nJanice\nJasmin\nJenifer\nJesse\nJulianna\nKari\nKira\nKrystina\nLara\nLillian\nLyndsay\nLynn\nMargot\nMaureen\nMayra\nNikita\nPaula\nPhylicia\nRuth\nSavanna\nShirley\nSiobhan\nStephany\nSylvia\nTammy\nTessa\nTianna\nYolanda\nAbby\nAdrienne\nAlyse\nAlysia\nAngelia\nAnnemarie\nAnnette\nAnnmarie\nArlene\nBabygirl\nBlair\nBlanca\nBrittny\nBryanna\nCathryn\nCayla\nChelsie\nCindy\nConstance\nCortney\nDaniella\nDebra\nDonna\nEmilee\nEryn\nEsther\nFrances\nGenesis\nGianna\nGiovanna\nGloria\nIrene\nJanay\nJoelle\nJourdan\nJustina\nKassandra\nKelli\nKyra\nLeanna\nLeanne\nLorraine\nMadeleine\nMargarita\nMaritza\nNoelle\nPatrice\nRebekah\nSamatha\nSavannah\nShakira\nShanna\nShaquana\nShayla\nSonya\nStacie\nTia\nTricia\nYessenia\nZuleyka\nAileen\nAlesha\nAngel\nArianne\nAshely\nBaby\nBridgette\nBrielle\nBrynn\nCali\nCharlene\nChrystal\nCierra\nClaudia\nColeen\nCorrine\nDaisy\nDanica\nDaria\nDiamond\nDoris\nElaine\nEmilie\nGabriela\nGeraldine\nGiselle\nIvana\nJanae\nJodi\nJolene\nJosephine\nKarin\nKatelin\nKathrine\nKeila\nKellyann\nKelsea\nKelsie\nKiara\nKirstin\nKrysta\nKrystin\nLaurie\nLily\nLiza\nMara\nMarlena\nMollie\nMonika\nPhoebe\nPrecious\nPriya\nRhiannon\nRuby\nShante\nShantel\nStaci\nTameka\nTania\nTiana\nXiomara\nYvonne\nAshley\nJessica\nAmanda\nSarah\nSamantha\nStephanie\nEmily\nJennifer\nNicole\nBrittany\nLauren\nElizabeth\nKatherine\nRebecca\nRachel\nMelissa\nAlyssa\nDanielle\nChristina\nChelsea\nMegan\nMichelle\nAlexandra\nVictoria\nKelly\nTaylor\nHeather\nKelsey\nKayla\nLaura\nAmber\nErin\nSara\nKristen\nErica\nHannah\nKimberly\nCourtney\nCaitlin\nMary\nMeghan\nAmy\nJulia\nAllison\nKathryn\nChristine\nJasmine\nMorgan\nShannon\nCassandra\nCatherine\nLindsay\nLindsey\nAlexis\nBrianna\nMolly\nAnna\nJacqueline\nJillian\nOlivia\nKathleen\nCaroline\nShelby\nEmma\nMarissa\nKaitlyn\nNatalie\nTiffany\nMelanie\nAndrea\nMargaret\nLisa\nAlicia\nJenna\nKatie\nCrystal\nJulie\nMariah\nGabrielle\nMaria\nAlexa\nAlison\nErika\nPaige\nAbigail\nJamie\nKatelyn\nAngela\nVanessa\nAriel\nKristina\nColleen\nRachael\nLeah\nTara\nKaitlin\nBianca\nBrooke\nCasey\nKara\nKristin\nJaclyn\nBrittney\nDana\nHolly\nNatasha\nCarolyn\nHaley\nJordan\nAlexandria\nBriana\nVeronica\nAngelica\nClaire\nFelicia\nMallory\nBethany\nDeanna\nPatricia\nCarly\nDiana\nJocelyn\nKrystal\nMonique\nValerie\nAnne\nArielle\nJoanna\nKrista\nSabrina\nWhitney\nCynthia\nKaren\nMeagan\nMonica\nCharlotte\nMiranda\nBridget\nGina\nMadeline\nMichele\nTheresa\nChelsey\nKate\nKiara\nDesiree\nGrace\nJustine\nNichole\nAllyson\nDominique\nJacquelyn\nKatrina\nSasha\nDevon\nEllen\nMarisa\nNina\nRenee\nApril\nCristina\nEliza\nHayley\nHillary\nJane\nKirsten\nStacey\nAudrey\nCara\nDenise\nIesha\nPriscilla\nSydney\nTatiana\nVirginia\nAlisha\nAriana\nBarbara\nCorinne\nKatharine\nMackenzie\nMelinda\nCheyenne\nElise\nGabriella\nKerry\nTiana\nAshlee\nCarissa\nLinda\nMeredith\nStacy\nTeresa\nArianna\nChloe\nJill\nKayleigh\nNoelle\nShayna\nAbby\nAmelia\nCaitlyn\nEbony\nHilary\nJazmine\nKarina\nKarissa\nKellie\nMarie\nRaven\nRebekah\nRuth\nAdriana\nBrenda\nBrenna\nElena\nJulianne\nKristine\nLydia\nMeaghan\nPamela\nSandra\nYolanda\nAubrey\nBonnie\nCarmen\nCarrie\nDevin\nEileen\nHanna\nHeidi\nJaime\nKaylee\nKendall\nKristy\nKylie\nLeslie\nMadeleine\nMia\nMichaela\nRose\nSusan\nSuzanne\nTina\nAdrianna\nAimee\nAngelina\nAnn\nAsia\nCharlene\nJade\nJessie\nJuliana\nKendra\nLillian\nMarina\nMaya\nMichael\nNancy\nNikki\nNora\nRachelle\nRobyn\nSheila\nSophia\nSophie\nStefanie\nTanisha\nTanya\nZoe\nAna\nCamille\nClare\nElyse\nGabriela\nIsabel\nJanine\nKaila\nKarla\nKelli\nKristi\nKristie\nMadison\nMarilyn\nMercedes\nMonika\nRosa\nRyan\nShaniqua\nSharon\nShauna\nShayla\nTasha\nAlice\nBrittni\nCandace\nCarla\nChrista\nChristie\nCorrine\nDiane\nElaine\nElisabeth\nFrancesca\nJenny\nKelley\nLeigh\nLena\nLiana\nMaura\nMoriah\nNatalia\nShana\nSimone\nTabitha\nTaryn\nTiara\nToni\nXiomara\nAlana\nAlanna\nAlissa\nAlysha\nAnita\nBrittani\nCassidy\nCecilia\nCiara\nDestiny\nHailey\nHelen\nJazmin\nJohanna\nKatlyn\nLarissa\nLatoya\nLily\nMarisol\nMaureen\nMelody\nMicaela\nMiriam\nNikole\nRobin\nShaina\nTania\nTia\nCandice\nChanel\nCheryl\nChristy\nClarissa\nCristal\nDeborah\nDorothy\nEvelyn\nGianna\nGillian\nGloria\nIrene\nIsabelle\nJasmin\nKari\nKasey\nKassandra\nKatelynn\nKeri\nLara\nLea\nLuz\nNaomi\nNicolette\nPaula\nSerena\nSierra\nSonia\nTess\nTessa\nTracey\nTracy\nTyler\nAileen\nAlessandra\nAlina\nAngel\nAntoinette\nAshleigh\nAshlyn\nAutumn\nBailey\nBrandi\nBreanna\nBritney\nBrittny\nCayla\nCindy\nDaniela\nDebra\nEricka\nFaith\nFrances\nGenevieve\nHope\nIris\nIsamar\nJaimie\nJanelle\nJanice\nJosephine\nKaitlynn\nKaty\nKelsie\nKerri\nKrysten\nLeanna\nLeanne\nMara\nMaxine\nPaulina\nPhoebe\nShawna\nSiobhan\nSofia\nStacie\nTamara\nTamika\nTori\nTrisha\nWendy\nAlyson\nAshely\nAvery\nBeth\nBreana\nBria\nBryanna\nCarol\nCassie\nChantelle\nChastity\nChristen\nClaudia\nCody\nDaisy\nDawn\nDonna\nElissa\nEva\nFiona\nFranchesca\nGretchen\nIsabella\nJacklyn\nJaimee\nJazmyn\nJoan\nJustina\nKacey\nKailey\nKaleigh\nKiley\nKirstie\nKyra\nLatisha\nLaurie\nLiza\nMaritza\nMarlene\nMollie\nNorma\nPatrice\nRaquel\nShanae\nShanna\nSheena\nSylvia\nTianna\nVivian\nWilliam\nAisha\nAlaina\nAlejandra\nAlex\nAlexia\nAlycia\nAnastasia\nAshlie\nBernadette\nBlair\nBrianne\nBritany\nCallie\nCelia\nCeline\nChantel\nChelsie\nChristopher\nCorey\nDeirdre\nDina\nDomonique\nEden\nEliana\nElisha\nEmerald\nGwendolyn\nIvana\nIvelisse\nJalisa\nJana\nJennie\nJoanne\nJoelle\nJolene\nJordyn\nJulianna\nJulissa\nKaela\nKatiria\nKimberley\nKristyn\nKyle\nLucy\nLyndsay\nLynette\nLynn\nMaegan\nMarguerite\nMariana\nMartina\nMelisa\nMikayla\nNadia\nOctavia\nRiley\nRosemarie\nRosemary\nSadie\nShanay\nShantel\nShaquana\nSonya\nSymone\nTierney\nTiffani\nYaritza\nYesenia\nYvonne\nZuleyka\nJessica\nAshley\nSarah\nAmanda\nEmily\nSamantha\nNicole\nChelsea\nStephanie\nLauren\nElizabeth\nJennifer\nRachel\nBrittany\nRebecca\nKatherine\nVictoria\nMelissa\nDanielle\nAlexandra\nAlyssa\nTaylor\nMichelle\nChristina\nMegan\nKayla\nKelly\nKelsey\nHeather\nShannon\nErin\nKimberly\nAmber\nCourtney\nLaura\nSara\nJasmine\nJulia\nHannah\nAllison\nErica\nKaitlyn\nAmy\nOlivia\nCaitlin\nBrianna\nKathryn\nLindsay\nMolly\nChristine\nJacqueline\nMargaret\nMeghan\nCatherine\nMary\nCassandra\nCaroline\nAndrea\nMorgan\nAlexis\nAlicia\nJenna\nKristen\nTiffany\nKathleen\nMarissa\nShelby\nAnna\nAbigail\nCasey\nMaria\nGabrielle\nMelanie\nVanessa\nCrystal\nJillian\nAlexa\nPaige\nColleen\nKaitlin\nKatelyn\nNatalie\nJamie\nLeah\nLindsey\nHaley\nJulie\nGina\nBianca\nBriana\nBrooke\nEmma\nKara\nLisa\nAnne\nErika\nKatie\nMadeline\nAlexandria\nBrittney\nShanice\nMariah\nAlison\nAngela\nDeanna\nKristin\nKristina\nAngelica\nDana\nNatasha\nVeronica\nCarly\nGrace\nCynthia\nMonica\nRachael\nPatricia\nTara\nChelsey\nJaclyn\nKassandra\nAriel\nCarolyn\nChloe\nDominique\nApril\nGabriella\nHayley\nMackenzie\nSydney\nDesiree\nJocelyn\nJordan\nKatharine\nMarisa\nTheresa\nBridget\nCristina\nEllen\nHillary\nKrista\nMeredith\nSophia\nStacey\nBethany\nCaitlyn\nCharlotte\nClaire\nKirsten\nMiranda\nValerie\nKaren\nMonique\nMallory\nRebekah\nDestiny\nDiana\nKate\nSusan\nHolly\nJane\nLinda\nMeagan\nMichele\nCarissa\nKatrina\nKaylee\nKrystal\nAlana\nAlisha\nAlissa\nAshlee\nCara\nFelicia\nJenny\nJoanna\nMadison\nMelinda\nNina\nRenee\nRose\nSabrina\nSandra\nStacy\nTamara\nAudrey\nBarbara\nDevin\nJustine\nKaleigh\nTiana\nWhitney\nAnn\nBreanna\nDiamond\nElisabeth\nJulianne\nKarina\nKellie\nKiara\nLeslie\nMarie\nMercedes\nStefanie\nZoe\nAdriana\nAlanna\nAllyson\nAmelia\nBrenna\nCamille\nCorinne\nElena\nElise\nFrancesca\nHilary\nJade\nKristi\nNichole\nPamela\nShayna\nAna\nAngelina\nBrandi\nBritney\nCheyenne\nCiara\nHailey\nIsabel\nJacquelyn\nJessie\nKendra\nLily\nNatalia\nSasha\nSharon\nTanya\nTatiana\nAriana\nEbony\nFaith\nKarissa\nKerry\nKristine\nLydia\nSierra\nTabitha\nTeresa\nAbby\nAshleigh\nCassidy\nDenise\nElaine\nEvelyn\nJuliana\nKelley\nMichaela\nNaomi\nRuth\nShayla\nTessa\nAlice\nAnastasia\nArianna\nAsia\nAubrey\nBailey\nBrenda\nCassie\nClare\nElissa\nEliza\nJanelle\nKaila\nKasey\nKendall\nLillian\nLucy\nNancy\nRaven\nTina\nTrisha\nYesenia\nAimee\nAlessandra\nAlexia\nClarissa\nDaniella\nDeborah\nFrancheska\nHanna\nHelen\nIesha\nJasmin\nJennie\nKayleigh\nKiana\nKylie\nMeaghan\nMelody\nMollie\nTess\nTyler\nVirginia\nAdrienne\nAisha\nAnita\nCarmen\nDevon\nIsabelle\nJill\nJulianna\nKelsie\nLatoya\nMaura\nMaureen\nMaya\nMia\nMichael\nRaquel\nRiley\nRobin\nSally\nShanell\nSheila\nTori\nAlysha\nAnnie\nAnnmarie\nAutumn\nAvery\nBabygirl\nBonnie\nBrandy\nBria\nBryanna\nCandace\nCarla\nCasandra\nCindy\nEmilia\nFallon\nGianna\nJaime\nJazmine\nJordyn\nKailey\nKerri\nKrysta\nKyla\nKyle\nKyra\nLara\nLea\nLouise\nLuz\nMaggie\nMarina\nMarlena\nPriscilla\nSophie\nTaryn\nTracy\nTricia\nYaritza\nAlina\nAlyson\nAngelique\nAntoinette\nArielle\nAshlyn\nBeth\nCarolina\nChelsie\nChristian\nDaisy\nDaniel\nDaniela\nDorothy\nFrances\nGeorgia\nGillian\nIsabella\nJanice\nJazmin\nJean\nJeanette\nJenifer\nJessenia\nJodi\nJohanna\nJosephine\nKarly\nKiera\nLeigh\nLesley\nLia\nLiana\nMarilyn\nMartha\nNicolette\nNicolle\nNoelle\nPrecious\nRachelle\nRobyn\nRosemary\nShaina\nShauna\nSimone\nSonia\nStephany\nSummer\nTaisha\nTiara\nToni\nWendy\nAdrianna\nAlexander\nAngel\nAnnabelle\nAntonia\nBlake\nBridgette\nBrittni\nCarina\nCarli\nCarol\nCecilia\nChantel\nChastity\nCheryl\nChrista\nChristie\nClara\nCristal\nDara\nDayna\nEleanor\nEleni\nElisa\nElyse\nEmilie\nEricka\nGabriela\nGenesis\nHeidi\nHope\nJanae\nJesse\nJohn\nKari\nKristie\nLacey\nLeanne\nLiza\nMadeleine\nMadelyn\nMargarita\nMarlene\nMikayla\nNathalie\nOlga\nParis\nPatrice\nRhiannon\nRosa\nRyan\nSavannah\nShana\nShanna\nSylvia\nTanisha\nTasia\nTia\nXiomara\nYessenia\nAlessia\nAlexi\nAllyssa\nAlycia\nAmarilis\nAshlynn\nAthena\nBetsy\nBreana\nBrianne\nBrittani\nCandice\nCarley\nCarrie\nCassondra\nChina\nChynna\nClaudia\nDamaris\nDemi\nDesirae\nDestinee\nDionna\nDonna\nEileen\nFiona\nFranchesca\nGloria\nImani\nJacklyn\nJanay\nJanet\nJeannette\nJelissa\nJudy\nJulissa\nKacie\nKarla\nKarolina\nKatelin\nKatlyn\nKatlynn\nKim\nKimberlee\nKirstin\nKristal\nKristy\nLeanna\nLeila\nLinnea\nLucia\nLyndsey\nLynette\nMaegan\nMara\nMaribel\nMarjorie\nMaryann\nMarykate\nMikaela\nNikki\nPaola\nSage\nSarai\nShakira\nShaniqua\nShante\nShantel\nShawna\nSuzanne\nTasha\nTyisha\nVianca\nVivian\nYashira\nZuleika\nEmily\nSarah\nAshley\nJessica\nNicole\nSamantha\nAmanda\nStephanie\nLauren\nElizabeth\nTaylor\nKatherine\nJennifer\nAlexandra\nRachel\nMegan\nRebecca\nBrittany\nDanielle\nVictoria\nMelissa\nAlyssa\nKelly\nMichelle\nKelsey\nKayla\nChelsea\nShannon\nChristina\nOlivia\nAmber\nCourtney\nHannah\nAllison\nErin\nAlexis\nBrianna\nSara\nJasmine\nCaitlin\nJulia\nKaitlyn\nKathryn\nEmma\nHeather\nCaroline\nLaura\nMary\nMolly\nMarissa\nMeghan\nLindsay\nMargaret\nAbigail\nCatherine\nErica\nPaige\nJenna\nCassandra\nMorgan\nAmy\nHaley\nKristen\nBriana\nKimberly\nNatalie\nJamie\nLindsey\nJacqueline\nAndrea\nVanessa\nKatelyn\nAnna\nMaria\nTiffany\nAlexa\nCrystal\nJulie\nKathleen\nAlison\nMelanie\nChristine\nAlicia\nAngela\nBrooke\nColleen\nShelby\nJillian\nKaitlin\nJaclyn\nKassandra\nAlexandria\nErika\nKatie\nKristina\nKara\nLeah\nCarolyn\nGabrielle\nJordan\nAngelica\nCasey\nRachael\nDeanna\nLisa\nBianca\nBridget\nClaire\nGrace\nMackenzie\nMadeline\nSabrina\nCarly\nPatricia\nFelicia\nGina\nMichaela\nCaitlyn\nKristin\nHayley\nMariah\nMarisa\nCynthia\nVeronica\nDominique\nKrista\nMiranda\nMonica\nAllyson\nBreanna\nDana\nJocelyn\nBrittney\nHolly\nJacquelyn\nValerie\nChloe\nMadison\nSydney\nAudrey\nKarina\nKatrina\nRenee\nWhitney\nCharlotte\nChelsey\nGabriella\nKendra\nNatasha\nTara\nAnne\nAriana\nKaren\nMeagan\nMeredith\nSophia\nTori\nZoe\nCara\nElise\nIsabel\nJoanna\nShanice\nApril\nBria\nDiana\nMonique\nBethany\nJasmin\nKaylee\nKayleigh\nKrystal\nSusan\nAriel\nKatharine\nRaven\nShayla\nTina\nDesiree\nDestiny\nDevon\nHillary\nKate\nKiara\nMallory\nMeaghan\nNina\nStacey\nTatiana\nAvery\nCheyenne\nJaime\nMollie\nRebekah\nShawna\nShayna\nAlisha\nAlissa\nAnastasia\nAshleigh\nCassidy\nCristina\nEllen\nHailey\nMichele\nSasha\nSierra\nSophie\nTheresa\nAshlee\nDaniella\nDiamond\nFrancesca\nGabriela\nKellie\nKirsten\nMelinda\nNichole\nTeresa\nTiana\nEvelyn\nJade\nJanelle\nJazmin\nJazmine\nKaitlynn\nKendall\nKristine\nNikki\nNora\nSavannah\nThalia\nToni\nTyler\nAdriana\nAmelia\nAnnie\nAutumn\nBrenna\nJordyn\nLeslie\nLydia\nNancy\nPaula\nStefanie\nTessa\nAnn\nArianna\nAubrey\nBailey\nBrenda\nCarina\nCarla\nCorinne\nEliza\nGeorgia\nHelen\nLillian\nMadeleine\nMaggie\nMaya\nShana\nAbby\nAna\nAsia\nBrandi\nChristie\nDevin\nDiane\nEbony\nHanna\nJessie\nJulianne\nJustine\nKaila\nKatelynn\nKatlyn\nKira\nKristy\nLucy\nNicolette\nPriscilla\nRosemary\nTalia\nTamara\nTaryn\nVirginia\nAimee\nAlessandra\nArielle\nBritney\nCarissa\nCarmen\nChantel\nCindy\nHeidi\nHilary\nJane\nKelli\nMikayla\nNaomi\nRaquel\nSheila\nAbbey\nAdrianna\nAlice\nAlivia\nCandice\nCierra\nClarissa\nCoraima\nEileen\nElisabeth\nFaith\nGenesis\nGretchen\nJena\nJenny\nJustina\nKaleigh\nKaley\nKarissa\nKarla\nLeanne\nLinda\nMarie\nMaureen\nMia\nMoriah\nRegina\nRose\nSandra\nSharon\nStacy\nTayler\nAlana\nAngelique\nAnita\nBryanna\nCayla\nCheryl\nCiara\nClare\nClaudia\nDenise\nElena\nElissa\nEmilie\nGianna\nGloria\nIsabella\nJacklyn\nKailey\nKelsie\nKerri\nKiersten\nKyra\nLarissa\nLily\nLyndsey\nMarilyn\nMarina\nMaura\nMelody\nMercedes\nNicola\nPamela\nRobyn\nSage\nShaina\nSimone\nSummer\nTabitha\nTanisha\nTanya\nTess\nTrisha\nAlanna\nAli\nAlina\nAlyson\nAngelina\nAshlyn\nBonnie\nCarley\nCarrie\nChanel\nChelsie\nDaniela\nDestinee\nDorothy\nElaine\nEmilee\nEricka\nFiona\nGillian\nIndia\nJennie\nJill\nJohanna\nKailyn\nKali\nKasandra\nKatelin\nKaylene\nKelley\nKerry\nKiana\nKristi\nLeanna\nLia\nMckenzie\nNikole\nNoelle\nRhiannon\nRoxanne\nYolanda\nAileen\nAlayna\nAlex\nAlexia\nAllyssa\nAlysha\nAnnette\nAnnmarie\nAva\nBarbara\nCameron\nCamille\nCasandra\nCelina\nChristian\nClara\nColby\nCorina\nDeandra\nDina\nElaina\nEleni\nElisa\nEmely\nFallon\nHope\nImani\nJanet\nJeanette\nJoelle\nJosephine\nJulianna\nKhadijah\nKia\nKiera\nKristie\nLaurel\nLea\nLeandra\nMaegan\nMarisol\nMartha\nMicaela\nNatalia\nNyasia\nOlga\nPaulina\nRachelle\nRobin\nRuth\nSally\nShauna\nSuzanne\nSylvia\nTasha\nTia\nTiffani\nValentina\nYaritza\nAlecia\nAlma\nAlycia\nAngel\nAshli\nAyanna\nBlair\nBridgette\nBryana\nCarolina\nCassie\nCassondra\nChantal\nCharlene\nChasity\nConstance\nDaisy\nDakota\nDanyelle\nDawn\nDeborah\nDeirdre\nDemi\nDesirae\nEleanor\nEva\nHarley\nIesha\nIris\nIvana\nJenifer\nJoanne\nJodie\nJuliana\nJulissa\nKacey\nKadejah\nKarolina\nKaterina\nKaylin\nKenya\nKirby\nKrystle\nKyle\nKylee\nKylie\nLacey\nLatoya\nLexus\nLissette\nLizbeth\nLoren\nLori\nLorraine\nLucie\nLynette\nMadelyn\nMara\nMargo\nMargot\nMarykate\nMelina\nMichael\nMiriam\nNadia\nNathalie\nNicholas\nNiki\nPatrice\nPhoebe\nPrecious\nRosalie\nRosemarie\nShanna\nShannen\nSheena\nSkye\nSonia\nStacie\nStefani\nTianna\nTiara\nTierney\nTierra\nTricia\nXiomara\nYasmin\nEmily\nSarah\nJessica\nNicole\nAshley\nSamantha\nAmanda\nTaylor\nStephanie\nElizabeth\nLauren\nMegan\nRachel\nAlexandra\nJennifer\nRebecca\nAlyssa\nDanielle\nKayla\nKatherine\nVictoria\nHannah\nBrittany\nMelissa\nMorgan\nBrianna\nOlivia\nAlexis\nChristina\nKelly\nMichelle\nErin\nKimberly\nAllison\nShannon\nCourtney\nAmber\nJulia\nEmma\nCaroline\nMary\nSara\nKelsey\nHeather\nMeghan\nCaitlin\nKristen\nMarissa\nChelsea\nJenna\nAlexa\nAbigail\nErica\nKathryn\nCatherine\nMargaret\nAnna\nBriana\nKaitlyn\nMolly\nTiffany\nCassandra\nJacqueline\nJasmine\nLaura\nPaige\nNatalie\nLindsay\nAlicia\nLindsey\nBrooke\nKathleen\nAmy\nCrystal\nMaria\nGabrielle\nKatelyn\nJillian\nShelby\nHaley\nCasey\nBianca\nJamie\nSabrina\nAndrea\nGrace\nMadison\nMichaela\nAngela\nMelanie\nSydney\nChristine\nKristina\nMiranda\nLisa\nMadeline\nAlison\nCarly\nLeah\nRachael\nErika\nJordan\nMackenzie\nKristin\nVanessa\nMonica\nKara\nMariah\nAlexandria\nGina\nMarisa\nBridget\nDana\nKatie\nHayley\nJocelyn\nKaitlin\nAngelica\nBethany\nDestiny\nHolly\nNatasha\nDominique\nTara\nColleen\nJulie\nCynthia\nKendra\nClaire\nDiana\nGabriella\nNina\nVeronica\nAnne\nCheyenne\nDeanna\nSavannah\nBrittney\nCaitlyn\nFelicia\nKatrina\nTiana\nAriel\nCharlotte\nChloe\nKassandra\nKylie\nPatricia\nTheresa\nWhitney\nCarolyn\nEllen\nKaren\nKrista\nKrystal\nLydia\nMeredith\nSierra\nAdriana\nAllyson\nBreanna\nDesiree\nDiamond\nHailey\nJoanna\nLily\nMallory\nMeagan\nMeaghan\nRaven\nAaliyah\nFrancesca\nJacquelyn\nJazmin\nSophia\nZoe\nAlana\nAshleigh\nCara\nJessie\nKaylee\nKiara\nMichele\nAnn\nBrenda\nDevon\nElise\nJaclyn\nKate\nKendall\nLeslie\nTatiana\nAsia\nHanna\nKatelynn\nKellie\nMikayla\nRebekah\nSophie\nTessa\nAlisha\nCassidy\nElisabeth\nGabriela\nIsabel\nNicolette\nValerie\nAriana\nAudrey\nCarissa\nElena\nMaya\nRenee\nShanice\nApril\nBrianne\nClare\nIsabella\nJasmin\nKelley\nKirsten\nLillian\nLinda\nRose\nSasha\nStacey\nTori\nYesenia\nEvelyn\nGenesis\nJane\nJazmine\nJustine\nKhadijah\nLaurel\nMarina\nMikaela\nTina\nVivian\nAlyson\nAnastasia\nAshlee\nAubrey\nBrandi\nChelsey\nClarissa\nCristina\nDeborah\nEva\nImani\nJulianne\nKatharine\nKelli\nKerry\nKiana\nNichole\nAimee\nAlexander\nAlice\nAmelia\nAngelina\nArianna\nAutumn\nDevin\nDiane\nIris\nJade\nJaime\nJordyn\nJuliana\nKarina\nKayleigh\nMarie\nMelinda\nNikki\nRegina\nRosemary\nRuth\nSandra\nSerena\nSusan\nTia\nVirginia\nAlissa\nAliyah\nAvery\nBrandy\nBria\nCarla\nClara\nIsabelle\nJohanna\nKaleigh\nKira\nLogan\nMicaela\nMiriam\nMonique\nSheila\nTamara\nTeresa\nTricia\nWendy\nAbby\nAdrianna\nAnnie\nArielle\nBrenna\nCarmen\nCarolina\nCassie\nChristie\nDaniela\nDayna\nDenise\nFallon\nGeorgia\nGwendolyn\nHunter\nKelsie\nLiza\nLyndsey\nMaggie\nMarilyn\nNancy\nOctavia\nPamela\nPhoebe\nPriscilla\nShawna\nSummer\nTess\nTianna\nAbbey\nAlaina\nAlexus\nAna\nBeth\nBritney\nCandice\nChantel\nChrista\nChristian\nChristy\nCiara\nCindy\nCorinne\nDaisy\nDylan\nEliza\nEmilia\nGloria\nHeidi\nHelen\nJanelle\nJenny\nJoy\nJulianna\nKaila\nKarissa\nKarli\nKarly\nKatlyn\nKenya\nMadeleine\nMaegan\nMakayla\nMara\nMckenzie\nMercedes\nNaomi\nRosa\nShaina\nShana\nSonia\nStefanie\nTyler\nZhane\nAlessandra\nAngelique\nBarbara\nBryanna\nCamille\nDakota\nDaniella\nDelaney\nDonna\nEbony\nEileen\nEleanor\nElyse\nFaith\nFiona\nFrances\nGreta\nHope\nJanice\nJennie\nKatarina\nKerri\nKyra\nLea\nMia\nMonika\nNora\nRegan\nRobyn\nSadie\nShauna\nSuzanne\nSylvia\nTalia\nTiara\nAdrienne\nAlexia\nAlina\nAlysa\nAnnette\nAshlyn\nCamila\nCarli\nCasandra\nCecilia\nClaudia\nColby\nCorey\nCorrine\nDarlene\nDestinee\nEricka\nGenevieve\nGenna\nGianna\nGillian\nGretchen\nIesha\nJada\nJaimie\nJosephine\nKailey\nKaitlynn\nKasandra\nKasey\nKaterina\nKeila\nKeisha\nKristine\nKyla\nLatisha\nLissette\nLoren\nLucy\nMartha\nMayra\nMina\nMoriah\nNatalia\nNoelle\nRhiannon\nSharon\nShayna\nSkylar\nTanisha\nTaryn\nThalia\nTracy\nTrisha\nYaritza\nAja\nAlanna\nAlena\nAli\nAllie\nAmani\nAnnamarie\nAva\nBailey\nBonnie\nBreana\nBryana\nCallie\nCarey\nCarley\nCarol\nCarrie\nCathleen\nCayla\nCelina\nChantal\nCharlene\nChristiana\nChristopher\nCorina\nCristal\nDarcy\nDarien\nDeja\nDevonna\nDorothy\nEleni\nEmilie\nGuadalupe\nHarley\nHillary\nIndia\nIrene\nJanel\nJanine\nJesse\nJessenia\nJill\nJoyce\nKala\nKathy\nKaylie\nKristy\nLeanna\nLeanne\nLeigh\nLia\nLilly\nLinnea\nLuz\nMargot\nMarguerite\nMariana\nMariel\nMarlena\nMaureen\nMelina\nNadia\nNatashia\nNathalie\nPaula\nRaquel\nRhianna\nRiley\nRosalie\nRyan\nSamatha\nShantel\nShayla\nShirley\nSofia\nStephany\nSusanna\nTania\nTanya\nTasha\nTatyana\nTherese\nValeria\nEmily\nJessica\nSarah\nSamantha\nAshley\nNicole\nAmanda\nRachel\nTaylor\nMegan\nLauren\nKatherine\nElizabeth\nStephanie\nAlyssa\nVictoria\nBrianna\nJennifer\nAlexandra\nKayla\nHannah\nOlivia\nRebecca\nDanielle\nBrittany\nJulia\nCourtney\nMelissa\nKelly\nEmma\nAlexis\nMorgan\nAllison\nMichelle\nSara\nShannon\nCaroline\nErin\nAbigail\nAmber\nKaitlyn\nChristina\nAnna\nKimberly\nMargaret\nSydney\nKathryn\nGabrielle\nJasmine\nChelsea\nKelsey\nMarissa\nJacqueline\nMary\nCaitlin\nHaley\nErica\nMolly\nNatalie\nBriana\nHeather\nBrooke\nAlexa\nCatherine\nKristen\nLaura\nMeghan\nCassandra\nChristine\nJenna\nLindsay\nMadison\nPaige\nJillian\nMadeline\nMaria\nMelanie\nAmy\nGabriella\nTiffany\nAlicia\nAngela\nKatelyn\nCarly\nGrace\nLindsey\nShelby\nJamie\nVanessa\nCasey\nJordan\nLeah\nDestiny\nKathleen\nMiranda\nBianca\nCrystal\nKylie\nRachael\nSabrina\nMariah\nMarisa\nKaitlin\nAlison\nAndrea\nCassidy\nHayley\nMackenzie\nErika\nGina\nKatie\nAngelica\nColleen\nMonica\nJulie\nMichaela\nKendra\nSierra\nBrittney\nIsabella\nKristina\nLisa\nDana\nDominique\nClaire\nJocelyn\nVeronica\nBethany\nCynthia\nAlexandria\nValerie\nZoe\nCheyenne\nChloe\nDeanna\nMikayla\nNatasha\nDiana\nPatricia\nSelena\nAriana\nCharlotte\nKara\nKiara\nAna\nAutumn\nCaitlyn\nHailey\nKassandra\nSavannah\nTatiana\nAnne\nBreanna\nClaudia\nRenee\nCarolyn\nFrancesca\nHolly\nKrista\nMallory\nMeredith\nBridget\nDesiree\nIsabel\nKristin\nLily\nNina\nRose\nAlisha\nAvery\nBrenna\nJaclyn\nJada\nKate\nTessa\nTiana\nAdriana\nAllyson\nAriel\nKaylee\nKrystal\nLillian\nArianna\nAsia\nEllen\nGabriela\nKarina\nLydia\nTara\nAlissa\nBailey\nElena\nIsabelle\nWhitney\nAudrey\nBrandi\nCristina\nEleanor\nJazmin\nJordyn\nMaya\nMeagan\nMichele\nNichole\nSophia\nTheresa\nAmelia\nAnastasia\nBrenda\nFelicia\nJade\nJaime\nJenny\nJessie\nJuliana\nJulianna\nKendall\nMadeleine\nMarie\nMarina\nNaomi\nSandra\nSophie\nHanna\nJacquelyn\nKatrina\nMckenzie\nMicaela\nTori\nAdrianna\nAlana\nAnnie\nCara\nElise\nEliza\nJoanna\nMonique\nNoelle\nNora\nSasha\nSummer\nAngelina\nAshlee\nBryanna\nCorinne\nDiamond\nEva\nGianna\nJazmine\nKatharine\nLinda\nMeaghan\nPriscilla\nRebekah\nShayna\nThalia\nAbby\nAlessandra\nArielle\nBrandy\nCarmen\nHelen\nHope\nJill\nKaila\nKellie\nKiana\nKirsten\nPhoebe\nShaina\nShanice\nSusan\nAimee\nAlyson\nAshleigh\nCarla\nCarolina\nDakota\nDaniella\nDevon\nEvelyn\nFaith\nImani\nJesse\nKaren\nKasey\nKeisha\nKelley\nKiera\nLarissa\nLiana\nMaggie\nRaquel\nRaven\nSofia\nStacey\nTatyana\nAaliyah\nAlexia\nApril\nAubrey\nEssence\nGenevieve\nJane\nJasmin\nJennie\nJulianne\nKerry\nKyra\nMollie\nRobin\nRuth\nSage\nShawna\nTess\nToni\nAlice\nAshlyn\nBreana\nBria\nCameron\nCandace\nCarissa\nCarley\nChelsey\nChrista\nCiara\nCindy\nClara\nClare\nCorey\nElisa\nEmilie\nEsther\nGillian\nJailene\nJeanette\nKailey\nKaleigh\nKasandra\nLucy\nMakayla\nMarilyn\nMaura\nMelinda\nMelody\nMia\nNancy\nNatalia\nSerena\nShayla\nSheila\nSkylar\nTalia\nTanisha\nTiara\nTracy\nWendy\nAisha\nAlanna\nAlysha\nAngel\nAnnette\nAva\nBeth\nBritney\nBryana\nCayla\nClarissa\nDaniela\nDeja\nDelaney\nDenise\nEbony\nElisabeth\nElissa\nFrances\nGeorgia\nGiselle\nJazmyn\nJosephine\nJoy\nJuliette\nKatelin\nKayleigh\nKiersten\nKristine\nKrysta\nKyla\nKyle\nLacey\nLogan\nLucia\nMadelyn\nMariana\nMarisol\nMartha\nMikaela\nPamela\nPaula\nRachelle\nRhiannon\nRiley\nSadie\nSelina\nSuzanne\nTabitha\nTaryn\nTeresa\nTiffani\nTyler\nVivian\nYvonne\nAlexus\nAliza\nAnn\nBrianne\nBridgette\nCarina\nCarli\nCarrie\nChanel\nCori\nDawn\nDelia\nDevin\nDiane\nEileen\nElaina\nEmely\nGenesis\nGretchen\nHillary\nJoelle\nJulissa\nJustice\nKaela\nKarissa\nKatelynn\nKathy\nKeara\nKianna\nKira\nLara\nLena\nLeslie\nMoriah\nNicolette\nNikole\nNyasia\nPaola\nPriya\nShauna\nSimone\nStefanie\nTamara\nTania\nTayler\nYesenia\nAlaina\nAlecia\nAlejandra\nAlize\nAngelique\nAnita\nAnnabelle\nAshanti\nBarbara\nCamille\nCarlie\nCasandra\nCecilia\nCeleste\nChandler\nChristie\nCiera\nDeirdre\nElsa\nElyssa\nEricka\nFallon\nIris\nJesenia\nJoan\nJohanna\nJudith\nKali\nKarlie\nKeira\nKelsie\nKiley\nKristal\nKristyn\nLaurel\nLeigh\nMarjorie\nMarlee\nMarlena\nMarlene\nMaureen\nMelina\nMoira\nNadia\nNia\nNikita\nNykesha\nPaulina\nPrecious\nRochelle\nRosemarie\nRyan\nShantel\nSylvia\nTanya\nTianna\nTina\nTracey\nZhane\nEmily\nSarah\nSamantha\nJessica\nNicole\nAmanda\nAshley\nRachel\nTaylor\nElizabeth\nMegan\nKatherine\nAlexandra\nHannah\nAlyssa\nRebecca\nBrianna\nKayla\nJulia\nLauren\nOlivia\nVictoria\nStephanie\nJennifer\nAlexis\nEmma\nBrittany\nMelissa\nDanielle\nKelly\nCourtney\nCaroline\nMorgan\nAllison\nErin\nAbigail\nAmber\nMichelle\nSara\nShannon\nMeghan\nSydney\nMadison\nJenna\nKimberly\nKathryn\nJacqueline\nKaitlyn\nAnna\nGabrielle\nChristina\nKelsey\nNatalie\nHaley\nMarissa\nBriana\nMary\nMackenzie\nMargaret\nChelsea\nSabrina\nLaura\nPaige\nAlexa\nBrooke\nCaitlin\nHeather\nGrace\nJasmine\nKristen\nCatherine\nTiffany\nCasey\nLindsay\nMolly\nGabriella\nJordan\nKatelyn\nMadeline\nAngela\nErica\nMelanie\nMaria\nCarly\nJamie\nMariah\nAmy\nRachael\nCassandra\nDestiny\nLeah\nShelby\nAlison\nAlicia\nAndrea\nMichaela\nMonica\nKathleen\nVanessa\nClaire\nHayley\nKristina\nSavannah\nSierra\nColleen\nCrystal\nDominique\nJillian\nLindsey\nAngelica\nJocelyn\nMiranda\nAlexandria\nBridget\nErika\nLisa\nChristine\nGina\nKaitlin\nAriana\nCharlotte\nKatie\nBianca\nIsabella\nLily\nMarisa\nDana\nJulie\nCynthia\nCassidy\nCheyenne\nHailey\nMikayla\nAnne\nJuliana\nMeredith\nSophia\nZoe\nBailey\nMia\nVeronica\nKara\nKassandra\nTara\nHolly\nKatrina\nValerie\nChloe\nKaylee\nCaitlyn\nCarolyn\nIsabelle\nKiara\nKirsten\nMaggie\nSophie\nGillian\nKrystal\nKylie\nSelena\nTheresa\nAmelia\nBrenna\nDiana\nGabriela\nJaclyn\nJade\nMaya\nTiana\nAutumn\nDeanna\nDesiree\nIsabel\nKiana\nKyra\nMikaela\nTatiana\nAlexus\nAllyson\nAsia\nBreanna\nBrenda\nBrittney\nClaudia\nEliza\nFelicia\nFrancesca\nJoanna\nKarina\nLydia\nMadeleine\nMckenzie\nNina\nRenee\nAdriana\nAlissa\nAnnie\nFaith\nImani\nJulianna\nMeaghan\nPatricia\nSummer\nAlana\nAudrey\nBethany\nMallory\nNatasha\nRebekah\nAlexia\nAnastasia\nCristina\nJaime\nJustine\nMicaela\nMonique\nNaomi\nTamara\nTaryn\nWhitney\nAbby\nAlanna\nAngelina\nArianna\nAubrey\nCara\nDevon\nJasmin\nKaleigh\nKasey\nKristin\nLillian\nMakayla\nNatalia\nRose\nSasha\nAlisha\nAna\nApril\nAriel\nCarmen\nDeja\nEleanor\nElisabeth\nHope\nKatharine\nKendall\nKendra\nMeagan\nSusan\nTalia\nTess\nThalia\nTia\nAntonia\nCarley\nCiara\nDestinee\nGianna\nHanna\nHelen\nJane\nKrista\nLeslie\nMarina\nNoelle\nShayla\nTeresa\nTessa\nAngelique\nBrianne\nBryanna\nCecilia\nDiamond\nElise\nEvelyn\nGenesis\nKaren\nKarissa\nRobin\nSerena\nShania\nTanisha\nAlice\nAshleigh\nBarbara\nCamille\nCarissa\nCarolina\nChelsey\nDaisy\nDeborah\nDeirdre\nDelaney\nJazmine\nJenny\nJordyn\nJosephine\nKarla\nKate\nKayleigh\nMariana\nMercedes\nMichele\nPhoebe\nPriscilla\nRaven\nVirginia\nAbbey\nAshlee\nAvery\nCarrie\nCheyanne\nDestini\nEllen\nEmilie\nFiona\nGenevieve\nGeorgia\nJacquelyn\nJada\nKelley\nKerry\nKristine\nMartha\nMckenna\nMelinda\nMelody\nNadia\nNancy\nPaula\nSage\nShantel\nShayna\nStefanie\nTori\nAimee\nAisha\nAlessandra\nAliyah\nAlyson\nArielle\nBonnie\nBrandi\nBreana\nCarla\nClara\nClare\nDakota\nDaniella\nDejah\nElena\nGloria\nHeidi\nJailene\nJanae\nJazlyn\nJazmin\nJill\nKarly\nKatarina\nKennedy\nKiley\nKristy\nLarissa\nLiana\nLinda\nLucy\nMaeve\nNicolette\nNora\nShaina\nShauna\nSofia\nTianna\nAaliyah\nAdrianna\nBrielle\nBryana\nCallie\nClarissa\nCortney\nCristal\nDenise\nEbony\nHeaven\nJanelle\nJulianne\nKaelyn\nKatelynn\nKaylyn\nLea\nLena\nLuz\nMoesha\nNichole\nNyasia\nPrecious\nRiley\nSandra\nShakira\nTiara\nYamilex\nAlayna\nAlejandra\nAlisa\nAlize\nAngel\nBrandy\nCarol\nCelia\nChrista\nCiera\nColette\nDaniela\nDarby\nDenisha\nDevin\nFrances\nHunter\nIndia\nJudith\nJustice\nKaila\nKailey\nKali\nKasandra\nKayley\nKerri\nKianna\nKiarra\nKiera\nKira\nLeigh\nMargot\nMarie\nMarilyn\nMarisol\nNathalie\nOctavia\nPayton\nReilly\nRobyn\nRuth\nSavanna\nSelina\nSharon\nShea\nSimone\nSkylar\nTierra\nToni\nWendy\nYahaira\nZhane\nAdrienne\nAlexi\nAlysa\nAmani\nAshanti\nAva\nAyanna\nBreanne\nBria\nCameron\nCasandra\nCeline\nChanel\nChantel\nCierra\nCindy\nCoral\nCorinne\nDaria\nDelia\nDiane\nDonna\nDorothy\nEmilia\nEssence\nEsther\nFallon\nFatima\nGiovanna\nGwendolyn\nHallie\nHillary\nIliana\nJanice\nJeanette\nJohnna\nJoselyn\nJustina\nKailee\nKaley\nKaralyn\nKarlee\nKaterina\nKellie\nKyla\nKyle\nLacey\nLeana\nLeeann\nLeila\nLexi\nLexus\nLiza\nLoren\nMadelyn\nMaia\nMakenna\nMakenzie\nMargaux\nMarianna\nMarlena\nMarlene\nMaura\nMonika\nNia\nPeyton\nRachelle\nRaquel\nRuby\nRyan\nSadie\nSheila\nShyanne\nShyla\nSienna\nStacey\nStacy\nTahira\nTamia\nTanya\nTina\nTyler\nYesenia\nZaria\nEmily\nSarah\nSamantha\nAshley\nTaylor\nAmanda\nJessica\nJulia\nMegan\nNicole\nOlivia\nLauren\nAlexandra\nAlyssa\nHannah\nRachel\nEmma\nElizabeth\nKayla\nRebecca\nVictoria\nKatherine\nBrianna\nAlexis\nJennifer\nAbigail\nStephanie\nDanielle\nBrittany\nAnna\nMorgan\nCaroline\nMadison\nHaley\nAmber\nSara\nErin\nJenna\nShannon\nCourtney\nNatalie\nAllison\nGabrielle\nMelissa\nSydney\nKelly\nMarissa\nChristina\nKaitlyn\nBriana\nMargaret\nMolly\nMeghan\nMichelle\nSabrina\nDestiny\nGrace\nJillian\nMary\nJasmine\nBrooke\nJordan\nMadeline\nGabriella\nShelby\nAmy\nIsabella\nMackenzie\nCatherine\nMaria\nCassandra\nErica\nLaura\nAlicia\nKimberly\nKristen\nMariah\nPaige\nCaitlin\nJacqueline\nMiranda\nTiffany\nAlexa\nCasey\nChelsea\nKathryn\nKelsey\nMichaela\nMonica\nAngela\nKathleen\nLeah\nSophia\nClaire\nJamie\nHeather\nVanessa\nSavannah\nLindsay\nHayley\nTatiana\nAngelica\nSierra\nAndrea\nAriana\nCrystal\nMikayla\nCaitlyn\nCarly\nErika\nGina\nHailey\nJulie\nAlexandria\nCheyenne\nKatie\nLindsey\nMarisa\nMelanie\nZoe\nKatelyn\nChloe\nKaylee\nRachael\nVeronica\nColleen\nDana\nFaith\nGabriela\nLily\nNina\nSelena\nBailey\nBridget\nCassidy\nChristine\nIsabel\nMeagan\nDiana\nKaitlin\nKiana\nLisa\nCharlotte\nJada\nMaya\nAlison\nDeanna\nFrancesca\nIsabelle\nKylie\nJocelyn\nLucy\nMaggie\nMia\nSophie\nAnne\nAudrey\nHanna\nHolly\nMadeleine\nMakayla\nArianna\nBreanna\nDominique\nJuliana\nKendra\nTiana\nBianca\nGianna\nJulianna\nKristina\nRiley\nAaliyah\nKara\nNatalia\nTessa\nThalia\nApril\nAriel\nAsia\nAutumn\nCarolyn\nHope\nJade\nJazmine\nNatasha\nRaven\nAmelia\nBrittney\nEliza\nGillian\nKiara\nKristin\nLillian\nPhoebe\nTara\nAlana\nBethany\nCynthia\nDesiree\nElise\nHelen\nKarina\nKassandra\nKayleigh\nKellie\nMeredith\nTheresa\nAdriana\nCameron\nCara\nFelicia\nGenesis\nImani\nKendall\nMeaghan\nNaomi\nPatricia\nRebekah\nSerena\nAlissa\nAllyson\nAna\nAngelina\nMikaela\nShakira\nAbby\nAlexia\nAvery\nDestinee\nJaclyn\nJordyn\nJustine\nKatharine\nKirsten\nKyra\nLydia\nMallory\nMarina\nRenee\nSofia\nTess\nAdrianna\nAlessandra\nClaudia\nCorinne\nJailene\nJazmin\nKaren\nKasey\nKate\nKyla\nLeslie\nNadia\nTianna\nAshleigh\nAubrey\nBryanna\nDeja\nDevon\nEleanor\nElena\nKatrina\nKrista\nKrystal\nSimone\nStefanie\nTaryn\nTatyana\nAlexus\nAlice\nAliyah\nAlize\nArielle\nBrenna\nCristina\nDakota\nDaniela\nEllen\nEssence\nEvelyn\nFiona\nJane\nKatelynn\nPamela\nSummer\nTalia\nToni\nValerie\nAlisha\nAnastasia\nBrandi\nCarmen\nDaisy\nDelaney\nDevin\nDiamond\nHeidi\nJohanna\nJuliette\nLarissa\nMckenzie\nMonique\nNancy\nPaulina\nRose\nSasha\nShanice\nShayna\nTori\nAlaina\nAngel\nAntonia\nBarbara\nBrenda\nCarissa\nChelsey\nClare\nHunter\nJasmin\nJenny\nJessie\nLea\nMichele\nNyasia\nPeyton\nRegina\nSkylar\nTiara\nYasmine\nAdrienne\nAimee\nAlyson\nAnika\nAnn\nAnnika\nCarlie\nCassie\nCecilia\nChyna\nCiara\nDaniella\nEbony\nElaine\nElisabeth\nHelena\nJanelle\nJill\nKali\nKarissa\nKarla\nKassidy\nKaylin\nKelsie\nKerry\nKiera\nMariana\nMiriam\nNikki\nNoelle\nSadie\nSandra\nShayla\nSkyler\nSonia\nWhitney\nAbbey\nAlanna\nAlondra\nAlycia\nAshlyn\nCallie\nCamille\nCeline\nCindy\nDestiney\nEmilee\nGeorgia\nIris\nJacquelyn\nJaime\nJoanna\nJoy\nKailey\nKaitlynn\nKasandra\nKaterina\nKelley\nLena\nLinda\nMadelyn\nMaeve\nMakenzie\nMckayla\nNia\nNichole\nNikita\nNora\nPayton\nPriscilla\nRaquel\nReilly\nRuth\nSharon\nShea\nSheila\nSkye\nSylvia\nTina\nValeria\nWendy\nAlena\nAnnalise\nAnnelise\nBreana\nBria\nBrianne\nCarina\nCarley\nCarolina\nCeleste\nCelina\nChantel\nChristiana\nCierra\nClarissa\nDiane\nElisa\nGloria\nJulianne\nJulissa\nJustice\nKacey\nKaela\nKailee\nKelli\nKiley\nKira\nKristie\nMargot\nMaura\nMelinda\nNathalie\nNicolette\nPauline\nPriya\nQuinn\nRaegan\nRosemary\nSage\nSally\nSavanna\nShaina\nShania\nSidney\nSusan\nTamara\nTamia\nTeresa\nTia\nUnique\nVirginia\nZaria\nAlejandra\nAlina\nAmani\nAngelique\nAnissa\nAnita\nAnnie\nAshlee\nAthena\nBlair\nBridgette\nBritney\nCailin\nCali\nCandace\nCarla\nCarli\nCarol\nCarrie\nCayla\nCaylin\nCelia\nChanel\nChrista\nChristie\nDaija\nDamaris\nDasia\nDeborah\nDenise\nDomonique\nElana\nElla\nEllie\nErinn\nFrances\nHalle\nIdalis\nJanessa\nJessenia\nJosephine\nJustina\nKaleigh\nKarli\nKayley\nKeila\nKennedy\nKimberley\nKristine\nLeanne\nLia\nLiliana\nLorena\nMacie\nMaia\nMairead\nMartha\nMercedes\nMicaela\nMonika\nRegan\nRhiannon\nRochelle\nRosa\nRyan\nSarina\nStephany\nSuzanne\nSydnee\nTatiyana\nVivian\nYasmin\nYesenia\nZhane\nEmily\nSarah\nSamantha\nAshley\nJulia\nJessica\nOlivia\nNicole\nAlyssa\nAmanda\nElizabeth\nHannah\nTaylor\nAlexis\nRachel\nBrianna\nMegan\nLauren\nEmma\nVictoria\nAlexandra\nMadison\nKayla\nAbigail\nRebecca\nKatherine\nMorgan\nJennifer\nAllison\nNatalie\nKaitlyn\nDanielle\nAnna\nStephanie\nJenna\nAlexa\nCaroline\nErin\nHaley\nKelly\nBrittany\nSara\nGabrielle\nDestiny\nGrace\nMadeline\nMelissa\nBrooke\nChristina\nAmber\nCassandra\nCatherine\nMackenzie\nGabriella\nShannon\nJasmine\nCourtney\nMary\nMeghan\nSophia\nSydney\nLaura\nBriana\nIsabella\nJordan\nKelsey\nKathryn\nCaitlin\nPaige\nMichelle\nMarissa\nSabrina\nMolly\nJillian\nAmy\nKristen\nMaria\nClaire\nMariah\nLeah\nErica\nKimberly\nHeather\nKatelyn\nLindsey\nIsabel\nCaitlyn\nJamie\nLindsay\nTiffany\nAngela\nHailey\nJacqueline\nMargaret\nVanessa\nChelsea\nMelanie\nSierra\nAlexandria\nCarly\nIsabelle\nNina\nChloe\nErika\nMichaela\nDiana\nTatiana\nGianna\nRachael\nZoe\nAlicia\nAutumn\nCheyenne\nMiranda\nSavannah\nAngelica\nCasey\nJocelyn\nMaya\nAriana\nArianna\nCrystal\nMikayla\nShelby\nJada\nKathleen\nBianca\nJuliana\nAlison\nAndrea\nBridget\nCassidy\nVeronica\nKaylee\nLydia\nCynthia\nJulianna\nKate\nBailey\nCharlotte\nDominique\nFaith\nHayley\nKaitlin\nLily\nMia\nKatie\nKylie\nDeanna\nDesiree\nGabriela\nKristina\nMarisa\nMonica\nAudrey\nBreanna\nBrenna\nKiara\nLillian\nSelena\nTara\nAlana\nBethany\nChristine\nColleen\nGina\nValerie\nAmelia\nAngelina\nAva\nBrittney\nCiara\nGillian\nJade\nJasmin\nKara\nMadeleine\nNatasha\nSophie\nAriel\nClaudia\nDana\nImani\nTessa\nCarolyn\nKiana\nNatalia\nSkylar\nAnne\nAvery\nFrancesca\nKyra\nMercedes\nRiley\nSerena\nTatyana\nAdrianna\nAlexia\nCara\nDiamond\nJulianne\nKaren\nKasey\nKristin\nSofia\nTiana\nAdriana\nAsia\nElise\nEliza\nHope\nKatharine\nKatrina\nKendra\nKirsten\nMeagan\nPatricia\nAllyson\nAlyson\nBryanna\nElena\nGeorgia\nHanna\nHolly\nKailey\nKassandra\nKendall\nMadelyn\nMakayla\nRenee\nAaliyah\nAlexus\nAna\nCameron\nDevon\nJulie\nKarina\nKayleigh\nKrystal\nMallory\nMikaela\nMya\nNaomi\nRebekah\nRose\nTabitha\nTalia\nTheresa\nAnastasia\nCallie\nCristina\nDelaney\nEleanor\nEssence\nHelen\nJazmin\nMckenzie\nNyasia\nShayla\nSimone\nTeresa\nAlessandra\nCierra\nClare\nDaniella\nEllen\nGenesis\nGloria\nHunter\nLea\nLeslie\nLucy\nMeredith\nNadia\nSummer\nAngelique\nCorinne\nEvelyn\nFelicia\nHelena\nJustine\nKira\nLauryn\nMarie\nMonique\nReilly\nSkyler\nTianna\nTori\nYasmin\nAbbey\nAlanna\nAnnie\nCeleste\nClara\nDaniela\nDestinee\nElisabeth\nElla\nJaclyn\nJazmine\nJohanna\nJoselyn\nKaleigh\nKarla\nKatelynn\nKrista\nKyla\nLaurel\nLisa\nMaggie\nMeaghan\nMicaela\nNikki\nPamela\nPeyton\nPhoebe\nRhiannon\nRuth\nSage\nTess\nThalia\nToni\nAbby\nAngel\nAshleigh\nBarbara\nBrenda\nDeborah\nEva\nJailene\nJane\nJordyn\nKaila\nKarissa\nLinda\nMichele\nNathalie\nNoelle\nRaven\nSadie\nSandra\nShania\nAlaina\nAlissa\nAliyah\nAubrey\nCamryn\nCarley\nCecilia\nCindy\nDaisy\nDaria\nDevin\nElisa\nGiselle\nHaylee\nHeidi\nJessie\nJoanna\nJosephine\nJuliette\nKaitlynn\nLexi\nMaia\nMckenna\nMelody\nPaulina\nStefanie\nSusan\nTamara\nTyler\nApril\nArmani\nAthena\nAyanna\nBrianne\nCamille\nCarli\nCelina\nCeline\nChyna\nClarissa\nDeja\nElaine\nFiona\nIndia\nJacquelyn\nJanae\nKatarina\nKellie\nKelsie\nLarissa\nLeanne\nLiliana\nMariana\nMaura\nMonika\nNora\nParis\nPriscilla\nSharon\nShea\nSonia\nTyra\nValentina\nAimee\nAlice\nAlisha\nAllie\nAlly\nAmani\nAnn\nAnneliese\nAshanti\nAshlee\nBrandy\nBridgette\nBrigid\nCaleigh\nCarina\nChanelle\nChristiana\nDejah\nDonna\nEileen\nElyse\nEmilie\nEsther\nGenevieve\nGiovanna\nGwendolyn\nHalle\nJanet\nJessenia\nJuliet\nKailyn\nKali\nKaterina\nKennedy\nKiley\nKristine\nLeann\nLeila\nMadisyn\nMaegan\nMahogany\nMarilyn\nMollie\nNicolette\nPayton\nRegan\nSasha\nSelina\nShaina\nShawna\nShayna\nSidney\nTamia\nTatyanna\nYesenia\nAbbie\nAida\nAlia\nAlize\nAllegra\nAnika\nAnnabelle\nAnnika\nAntonia\nAshely\nAyana\nCailey\nCali\nCarla\nCarlie\nCarmen\nCasandra\nCassie\nChelsey\nChrista\nConnie\nDenise\nEliana\nEmely\nEmilia\nEryn\nEsmeralda\nHaleigh\nHana\nIliana\nIman\nIrene\nIris\nIvy\nJanelle\nJenny\nJoyce\nKailee\nKaley\nKarli\nKassidy\nKatlyn\nKaylie\nKeishla\nKelley\nKenya\nKiera\nKiersten\nKrysta\nMadelynn\nMarianna\nMelinda\nNancy\nNia\nRosa\nSamara\nSamaria\nShyanne\nSylvia\nTanya\nTia\nTracy\nTrisha\nVivian\nYasmine\nZaria\nEmily\nSarah\nSamantha\nJulia\nEmma\nAshley\nOlivia\nJessica\nHannah\nAlyssa\nElizabeth\nTaylor\nBrianna\nAlexandra\nKayla\nLauren\nMegan\nAmanda\nNicole\nVictoria\nMadison\nRachel\nAbigail\nAlexis\nKatherine\nGrace\nRebecca\nMorgan\nJennifer\nAnna\nKaitlyn\nNatalie\nSydney\nJenna\nDanielle\nAllison\nErin\nIsabella\nStephanie\nCaroline\nDestiny\nGabrielle\nSara\nCourtney\nAlexa\nJordan\nGabriella\nHaley\nShannon\nBrittany\nCatherine\nKelly\nAmber\nMary\nMolly\nKiara\nMackenzie\nChristina\nJasmine\nMarissa\nJillian\nBriana\nMichelle\nSophia\nMargaret\nMadeline\nMeghan\nLindsey\nKimberly\nCassandra\nMelissa\nChloe\nSabrina\nKelsey\nMelanie\nBrooke\nKatelyn\nLily\nKathryn\nLindsay\nPaige\nMariah\nMia\nCaitlin\nJacqueline\nMaya\nVanessa\nMaria\nTatiana\nZoe\nCasey\nCassidy\nIsabel\nAngela\nClaire\nJamie\nLaura\nMikayla\nSophie\nCharlotte\nHeather\nCaitlyn\nErica\nShelby\nTiffany\nAndrea\nMichaela\nVeronica\nAriana\nHailey\nJuliana\nKaylee\nKristen\nLeah\nMakayla\nCarly\nErika\nNina\nSkylar\nAmy\nCrystal\nHayley\nKylie\nSierra\nAlicia\nBianca\nBridget\nKatie\nArianna\nSavannah\nAlexandria\nAutumn\nCamryn\nFaith\nGillian\nJada\nKate\nChelsea\nIsabelle\nJocelyn\nRiley\nAmelia\nCheyenne\nDesiree\nJulie\nMiranda\nNaomi\nSofia\nAudrey\nChristine\nGabriela\nKathleen\nNatalia\nNatasha\nShania\nAngelica\nBailey\nBrittney\nClaudia\nDiana\nElena\nGianna\nLydia\nMadeleine\nMonique\nRachael\nAlison\nAva\nCara\nColleen\nFrancesca\nGenesis\nKaitlin\nKristina\nLillian\nMonica\nRebekah\nBreanna\nKarina\nTiana\nAdriana\nBryanna\nDeanna\nDiamond\nElise\nGeorgia\nGina\nJordyn\nKendra\nKiana\nMadelyn\nMarisa\nMya\nSelena\nTatyana\nHanna\nHope\nJulianna\nKara\nKayleigh\nLisa\nMarina\nRose\nValerie\nAllyson\nAngelina\nAvery\nJade\nKristin\nKyra\nMaggie\nAnne\nCynthia\nDelaney\nEvelyn\nKaren\nKatrina\nLucy\nMeredith\nRenee\nAlexia\nAnastasia\nCamille\nCiara\nDaisy\nFelicia\nJane\nJustine\nKailey\nMaeve\nSkyler\nAlessandra\nAna\nAsia\nBrenna\nBritney\nCallie\nCameron\nCarolyn\nDana\nDominique\nEleanor\nFiona\nHolly\nLauryn\nTara\nTessa\nAbby\nAlana\nAlissa\nAngel\nApril\nBarbara\nBethany\nCarissa\nKyla\nMallory\nMckenna\nMckenzie\nTalia\nClare\nEsther\nEva\nJazmin\nKirsten\nLeslie\nShayna\nThalia\nTia\nAliyah\nAlly\nAngelique\nAriel\nArielle\nCaleigh\nCayla\nCeleste\nElisabeth\nImani\nJoanna\nKassandra\nKrystal\nMaia\nMariana\nMikaela\nNadia\nNoelle\nPatricia\nPeyton\nPhoebe\nSage\nSkye\nTianna\nVirginia\nAdrianna\nAnnie\nCorinne\nJasmin\nJulianne\nKaitlynn\nKatharine\nKendall\nKiley\nKrista\nLexi\nMeaghan\nMiriam\nSerena\nSharon\nSummer\nTamia\nAaliyah\nAbbey\nAlivia\nAliza\nAshlee\nCarina\nCarley\nClara\nCristina\nDeja\nDestinee\nDevin\nEve\nHallie\nIrene\nJaclyn\nJuliet\nJulissa\nKaleigh\nKarla\nKellie\nKerry\nKylee\nLyndsey\nMelina\nPrecious\nRyan\nShanice\nSusan\nTheresa\nTrinity\nTyra\nWhitney\nAlaina\nAlexus\nAllie\nAlyson\nAshleigh\nCeline\nChyna\nDakota\nDaniela\nDaniella\nDevon\nEssence\nHeidi\nIndia\nIsis\nJailene\nJaime\nJanessa\nJenny\nKasey\nKatelynn\nKaylie\nKierra\nLesly\nLiana\nLila\nLiliana\nLilly\nLogan\nMarie\nNicolette\nNora\nNyasia\nSavanna\nTabitha\nTyler\nAimee\nAnn\nBrandi\nCarlie\nCelia\nCindy\nElaine\nElyssa\nEmilee\nFelicity\nGiuliana\nHelen\nIris\nIvy\nJazmine\nJeanette\nJoelle\nJohanna\nKailee\nKali\nKamryn\nKassidy\nKiera\nKira\nLena\nLexie\nLia\nLinda\nMicaela\nRhiannon\nRylee\nSadie\nSarina\nSelina\nSonia\nTamara\nTaryn\nTatianna\nTori\nValeria\nAdrienne\nAlize\nAlysha\nAmani\nAmaya\nAmina\nAnnika\nAntonia\nAnya\nAyanna\nBrenda\nCalista\nCheryl\nChyanne\nColby\nDamaris\nDeborah\nDelilah\nEden\nEllen\nEmani\nEmely\nFrances\nGiana\nGloria\nHaylee\nHunter\nJacquelyn\nJazlyn\nJosie\nKaterina\nKaylah\nKeara\nKelsie\nKennedy\nLacey\nLea\nMakenna\nMakenzie\nMaura\nMelinda\nMelody\nNancy\nNikki\nPamela\nParis\nPaulina\nPayton\nRaven\nRegina\nRosa\nRuby\nRuth\nShayla\nSheila\nSuzanne\nUnique\nAisha\nAlejandra\nAleksandra\nAngie\nAnika\nAnjali\nAnnalise\nAshlyn\nAubrey\nAudra\nBreana\nBria\nBrynn\nCampbell\nCandace\nCarla\nCarmen\nCarol\nCarolina\nCassie\nCelina\nChristiana\nCierra\nColette\nDaria\nDelia\nDina\nEleni\nElisa\nElissa\nEliza\nElla\nFatima\nGenevieve\nGiselle\nGwyneth\nHeaven\nJaida\nJanae\nJanaya\nJanet\nJayda\nJaylene\nJewel\nKarissa\nKatarina\nKaya\nKaylin\nKelli\nKeri\nKiersten\nLarissa\nLeann\nLoren\nLucia\nLucie\nLuz\nMarielle\nMarlene\nMelisa\nMickayla\nNathalie\nPriscilla\nRachelle\nRaina\nReilly\nRosemary\nShaina\nShanelle\nShauna\nSidney\nSiena\nSimone\nTaina\nTeagan\nTiara\nValentina\nVivian\nXiomara\nZaria\nEmily\nSarah\nSamantha\nOlivia\nHannah\nJulia\nAshley\nMadison\nJessica\nEmma\nElizabeth\nLauren\nAlyssa\nGrace\nKayla\nAmanda\nVictoria\nBrianna\nAbigail\nAlexandra\nNicole\nKatherine\nTaylor\nAlexis\nMegan\nRachel\nCaroline\nSydney\nSophia\nAnna\nRebecca\nIsabella\nErin\nDestiny\nMorgan\nGabrielle\nKaitlyn\nJennifer\nNatalie\nJenna\nStephanie\nAlexa\nAllison\nHaley\nCaitlin\nMolly\nDanielle\nChristina\nMadeline\nKelly\nGabriella\nBrooke\nSara\nMary\nCatherine\nJasmine\nJillian\nMackenzie\nMarissa\nLily\nMargaret\nChloe\nMaria\nPaige\nAriana\nHailey\nAmber\nKathryn\nMichelle\nSierra\nCassandra\nSophie\nClaire\nCarly\nShannon\nCourtney\nErica\nKatelyn\nMeghan\nVanessa\nHeather\nIsabel\nLeah\nMelissa\nIsabelle\nJacqueline\nLaura\nMaya\nAva\nJordan\nBriana\nKelsey\nLindsey\nSavannah\nZoe\nHayley\nSabrina\nAngela\nMelanie\nKaylee\nMia\nArianna\nJada\nKimberly\nKristen\nMariah\nKiara\nTatiana\nCassidy\nCharlotte\nMadelyn\nAmy\nLindsay\nAngelina\nBrittany\nJuliana\nMichaela\nAutumn\nGabriela\nMakayla\nAmelia\nFaith\nKate\nNina\nVeronica\nChelsea\nGianna\nJamie\nKathleen\nMikayla\nSofia\nTiffany\nCheyenne\nNatalia\nAlexandria\nAlison\nJocelyn\nKendall\nLillian\nSkylar\nAudrey\nBridget\nCameron\nErika\nTrinity\nCaitlyn\nCarolyn\nChristine\nKaitlin\nNaomi\nRiley\nAdriana\nAlana\nAndrea\nColleen\nJulianna\nAlexia\nAngelica\nBritney\nCamryn\nCasey\nElena\nKayleigh\nTessa\nAvery\nBianca\nEliza\nMaeve\nAlicia\nDesiree\nGillian\nHope\nKatie\nRachael\nSerena\nShelby\nImani\nAmaya\nBreanna\nElla\nGina\nHolly\nJade\nJulie\nKiana\nKristina\nMiranda\nSelena\nValerie\nAnne\nBrittney\nKara\nKatrina\nKendra\nMadeleine\nMaggie\nMallory\nMarisa\nMya\nPhoebe\nAliyah\nBrenna\nClare\nDelaney\nEleanor\nElise\nHanna\nLeslie\nPatricia\nAsia\nAyanna\nBailey\nEva\nGenesis\nKassandra\nKrystal\nNia\nAnastasia\nBethany\nCara\nMonica\nNadia\nPayton\nRaven\nSummer\nTara\nAaliyah\nAlessandra\nCarmen\nCiara\nClaudia\nDaniela\nDiana\nFrancesca\nKaleigh\nLauryn\nLydia\nMckenzie\nNatasha\nThalia\nTiana\nAdrianna\nAnnie\nElisabeth\nEmilia\nEvelyn\nFiona\nJane\nJayda\nKyla\nKylie\nMarie\nMeredith\nNora\nRose\nShea\nAbby\nAllyson\nAna\nAnnabel\nAriel\nDaisy\nDakota\nGeorgia\nJordyn\nLucy\nMarina\nNyasia\nRenee\nTabitha\nTess\nCynthia\nDana\nDiamond\nDominique\nHalle\nKaren\nMaura\nMikaela\nSkyler\nAlissa\nAryanna\nCassie\nCristina\nDeanna\nDevin\nFelicia\nHeidi\nJacquelyn\nJazmine\nKailey\nKarina\nKaylin\nKrista\nLexi\nRebekah\nRhiannon\nRyan\nSadie\nShania\nTeresa\nTianna\nCamille\nCindy\nCorinne\nCrystal\nEileen\nEllen\nEllie\nGreta\nIvy\nJaida\nJessie\nJoanna\nJosephine\nKasey\nKaterina\nLia\nLisa\nMckayla\nMeagan\nMonique\nRuby\nRuth\nSandra\nShayla\nShayna\nTamara\nTatyana\nAlaina\nAngel\nAnnabelle\nAnnalise\nApril\nAshlee\nBarbara\nCora\nDaniella\nDeja\nEmilie\nEssence\nJazmin\nJuliette\nKatelynn\nKira\nKirsten\nKylee\nLarissa\nLeilani\nLiliana\nMahogany\nMariana\nMckenna\nSavanna\nTalia\nTheresa\nUnique\nWhitney\nAisha\nAlysha\nAshleigh\nBrenda\nBrynn\nCarina\nCecilia\nChristiana\nClara\nDayana\nDevon\nHallie\nHana\nHeaven\nHelen\nIndia\nJailene\nJulianne\nJuliet\nKamryn\nKarla\nKaylie\nKellie\nKiera\nKiley\nKyra\nLayla\nLeila\nLila\nLinda\nMakenna\nMarley\nMartha\nMeaghan\nNathalie\nNikki\nRaquel\nRegina\nReilly\nSage\nSally\nSkye\nTia\nTyanna\nVivian\nWillow\nAileen\nAimee\nAlanna\nAlejandra\nAlice\nAlisha\nAlycia\nAshlyn\nAubrey\nBrielle\nCarla\nCarley\nCarlie\nCelia\nChasity\nDeborah\nElisa\nEve\nFatima\nFelicity\nHaleigh\nHarley\nHunter\nJana\nJasmin\nJessenia\nKaitlynn\nKarissa\nKassidy\nKatarina\nKelley\nKristin\nLena\nLeticia\nLilian\nLilly\nLogan\nMakenzie\nMelina\nMoriah\nNicolle\nNikita\nParis\nPaulina\nPiper\nRylee\nSharon\nShealyn\nSiobhan\nStella\nTamia\nTatianna\nTaya\nTeagan\nTiara\nTori\nValentina\nYamilet\nYasmine\nAbbey\nAdelina\nAdrienne\nAlexus\nAlina\nAlisa\nAllie\nAllyssa\nAlyson\nAmina\nAmiya\nAnaya\nAngelique\nAnika\nAnnemarie\nArmani\nAryana\nAthena\nAudra\nBailee\nBlair\nBrionna\nBryanna\nCarrie\nChelsey\nCheyanne\nChyna\nColby\nCorrine\nCristal\nDaphne\nDelia\nDestinee\nEden\nElaine\nEmani\nEmilee\nFrances\nGabriele\nGisselle\nGloria\nHailee\nHaylee\nHelena\nIyana\nIzabella\nJaclyn\nJaime\nJesenia\nJohanna\nKaelyn\nKarly\nKarolina\nKatharine\nKayle\nKeara\nKelli\nKerry\nLacey\nLaurel\nLea\nLeanna\nLiana\nLianna\nLilliana\nLyndsey\nMacy\nMadisen\nMaia\nMargarita\nMargot\nMiriam\nMollie\nNancy\nOdalys\nPrecious\nPriscilla\nRachelle\nReagan\nRene\nRochelle\nRosa\nRyann\nSade\nSandy\nSarina\nSasha\nShaina\nShauna\nSheila\nSusan\nTaryn\nToni\nTyra\nValeria\nWendy\nXiomara\nEmily\nJulia\nOlivia\nHannah\nSarah\nSamantha\nAbigail\nMadison\nEmma\nIsabella\nJessica\nGrace\nAshley\nElizabeth\nLauren\nBrianna\nKayla\nVictoria\nAlyssa\nNicole\nMegan\nAlexandra\nKatherine\nAmanda\nCaroline\nTaylor\nSydney\nRachel\nAlexis\nAnna\nMorgan\nErin\nKaitlyn\nJenna\nSophia\nStephanie\nHailey\nAlexa\nMackenzie\nRebecca\nGabriella\nMadeline\nJennifer\nMolly\nJasmine\nCatherine\nMichelle\nNatalie\nChloe\nDanielle\nDestiny\nGabrielle\nJillian\nPaige\nAllison\nAriana\nCaitlin\nSophie\nZoe\nMargaret\nKelly\nMeghan\nJordan\nBriana\nBrooke\nChristina\nMarissa\nAva\nMaya\nMia\nArianna\nCassandra\nClaire\nLeah\nSara\nFaith\nShannon\nGianna\nHaley\nLily\nMary\nSabrina\nSavannah\nRiley\nAmber\nJuliana\nMaria\nKatelyn\nAngela\nLaura\nMelissa\nCharlotte\nJacqueline\nMikayla\nAngelina\nSierra\nAaliyah\nAmelia\nAutumn\nCourtney\nIsabelle\nJulianna\nKathryn\nKelsey\nMakayla\nSofia\nCarly\nCassidy\nKimberly\nVanessa\nCaitlyn\nErica\nKaylee\nMichaela\nAudrey\nAvery\nJada\nLindsey\nChelsea\nIsabel\nKylie\nLillian\nJade\nLindsay\nAlexia\nTatiana\nBridget\nGabriela\nMariah\nHeather\nNatalia\nSkylar\nAmy\nBrittany\nTrinity\nAndrea\nCarolyn\nFrancesca\nKatie\nMya\nCasey\nKiara\nMadelyn\nMelanie\nAlana\nGenesis\nGillian\nKathleen\nLydia\nJocelyn\nJordyn\nMiranda\nAlexandria\nBreanna\nTiana\nBailey\nCamryn\nKate\nKatrina\nVeronica\nAdriana\nAlison\nAnne\nBianca\nCheyenne\nClare\nJamie\nKaitlin\nKristina\nMeredith\nShelby\nDiana\nElena\nErika\nHayley\nKara\nMadeleine\nNina\nAliyah\nAllyson\nAngelica\nBritney\nDelaney\nDesiree\nHanna\nHolly\nHope\nNayeli\nSadie\nAbby\nAlicia\nClaudia\nJulie\nMaggie\nMariana\nNaomi\nRachael\nSummer\nTiffany\nValerie\nAna\nCameron\nCamille\nChristine\nEleanor\nFiona\nKyra\nMckenzie\nNatasha\nNia\nSage\nAnastasia\nCarissa\nDaniela\nDaniella\nElla\nJane\nJazmin\nJazmine\nKiana\nMeagan\nNadia\nPhoebe\nRenee\nRose\nSasha\nSerena\nAdrianna\nAlessandra\nAmaya\nAsia\nCynthia\nDiamond\nEvelyn\nHelen\nImani\nJacquelyn\nJoanna\nJuliette\nKailey\nKristen\nLucy\nMarina\nTori\nColleen\nDana\nDeanna\nElisabeth\nEllie\nGina\nMarisa\nTaina\nAlice\nAlyson\nCara\nCiara\nClara\nCristina\nDaisy\nDenise\nElise\nEva\nKarla\nKayleigh\nKrystal\nMelody\nNevaeh\nValentina\nAnnabel\nAnnika\nBethany\nBryanna\nCrystal\nEliza\nGeorgia\nHeaven\nJanelle\nJuliet\nKarina\nKasey\nLinda\nLisa\nMaeve\nPatricia\nSelena\nShayla\nTara\nTessa\nAlanna\nAlexus\nAlissa\nAubrey\nBrenna\nCarolina\nCierra\nCindy\nEmely\nEve\nFatima\nGenevieve\nIsis\nJayda\nJayla\nJosephine\nKiera\nKira\nMadalyn\nMaura\nMckenna\nMikaela\nMonica\nNyla\nPaola\nPayton\nSandra\nTalia\nAlondra\nAnn\nAnnie\nBrenda\nChristiana\nDestinee\nDominique\nHeidi\nKrista\nLeslie\nLilly\nNathalie\nRebekah\nRuth\nTaryn\nTatyana\nTheresa\nTianna\nValeria\nViolet\nAngel\nAnnabelle\nArmani\nAyanna\nBrittney\nCarla\nDakota\nDynasty\nEileen\nEliana\nIndia\nIris\nIzabella\nJenny\nKarissa\nKassandra\nKassidy\nKatharine\nKellie\nKendall\nLayla\nLeila\nLucia\nMeadow\nMicaela\nPriscilla\nReagan\nSavanna\nSkye\nTabitha\nTess\nWhitney\nWillow\nYasmin\nAlisa\nAlisha\nAnnabella\nApril\nAshlyn\nCelia\nDevin\nElaine\nElissa\nEllen\nGiovanna\nGreta\nJaden\nJayna\nJolie\nKaleigh\nKatelynn\nKylee\nLarissa\nLena\nLilah\nMallory\nMara\nMarie\nMckayla\nMelina\nNora\nNyasia\nRegan\nRuby\nRyleigh\nShea\nSimone\nSonia\nYasmine\nAlize\nAllie\nAnijah\nAnisa\nAniya\nAnjali\nAnnmarie\nAshlee\nAshleigh\nAthena\nCailin\nCaleigh\nCallie\nCarley\nCarlie\nCarrie\nCatalina\nCheyanne\nCora\nDevon\nEbony\nElaina\nFelicia\nGretchen\nGuadalupe\nIrene\nIsabela\nJaelyn\nJailyn\nJaime\nJasmin\nJessie\nJoelle\nJohanna\nJustine\nKacey\nKaila\nKaitlynn\nKarli\nKayley\nKirsten\nKristin\nKyla\nLaila\nLaurel\nLauryn\nLea\nLexie\nLila\nLilian\nMadyson\nMaia\nMakenzie\nMaureen\nMelinda\nMercedes\nMikaila\nPamela\nPaula\nPeyton\nPrecious\nRosemary\nSaige\nShania\nSharon\nSheila\nSiobhan\nSkyler\nSusan\nTamara\nTamia\nTanya\nToni\nVivian\nYesenia\nZoey\nAbbey\nAileen\nAisha\nAlaina\nAlejandra\nAlina\nAmya\nAnnalise\nAnya\nAriel\nAryana\nAshlynn\nAurora\nAyana\nCamilla\nCarmen\nCassie\nCecilia\nCelina\nChelsey\nDayanara\nDeborah\nDeja\nDelia\nElsa\nEmilee\nFernanda\nFrances\nGiselle\nGloria\nHailee\nHalle\nHallie\nHana\nHunter\nJacklyn\nJaclyn\nJaida\nJaiden\nJanaya\nJaylene\nJayne\nJosie\nJoy\nJulianne\nKailyn\nKali\nKamryn\nKaterina\nKaylie\nKaylyn\nKianna\nKiarra\nKiley\nLeilani\nLejla\nLexi\nLexus\nLiliana\nMairead\nMalia\nMonique\nMonserrat\nNancy\nNya\nPaulina\nPrincess\nQuinn\nRaquel\nRaven\nReina\nRosa\nRyan\nSalma\nSanaa\nSaniya\nSarai\nShayna\nSidney\nSilvia\nStefanie\nTania\nTatum\nTeagan\nThalia\nTiara\nVirginia\nEmily\nOlivia\nEmma\nSamantha\nJulia\nMadison\nSarah\nAbigail\nIsabella\nElizabeth\nGrace\nHannah\nVictoria\nAshley\nLauren\nKayla\nRachel\nNicole\nJessica\nAlexandra\nAlyssa\nBrianna\nAlexis\nAnna\nSophia\nKatherine\nAmanda\nJenna\nMorgan\nCaroline\nMegan\nSydney\nTaylor\nKaitlyn\nNatalie\nMackenzie\nRebecca\nAva\nChloe\nPaige\nSara\nLily\nAllison\nHailey\nMolly\nJennifer\nMadeline\nMia\nBrooke\nAlexa\nErin\nKelly\nJillian\nGabriella\nJasmine\nSophie\nGabrielle\nJordan\nStephanie\nAngelina\nChristina\nDestiny\nMary\nAriana\nClaire\nAmber\nCharlotte\nMaya\nRiley\nDanielle\nGianna\nCaitlin\nAaliyah\nIsabelle\nKatelyn\nFaith\nMargaret\nSofia\nZoe\nBriana\nKathryn\nCatherine\nHaley\nMakayla\nMelissa\nJuliana\nMaria\nCassandra\nLeah\nSierra\nVanessa\nKylie\nElla\nMikayla\nJacqueline\nJada\nMelanie\nSabrina\nLindsey\nShannon\nKaylee\nLillian\nAngela\nAshanti\nAmy\nArianna\nBianca\nGabriela\nJade\nMichelle\nMarissa\nSavannah\nJulianna\nKiara\nMeghan\nNatalia\nLaura\nAutumn\nIsabel\nKelsey\nAlexia\nAndrea\nCassidy\nTrinity\nJocelyn\nKimberly\nMariah\nErica\nHeather\nMadelyn\nAudrey\nCaitlyn\nCourtney\nLindsay\nSkylar\nAlicia\nBridget\nChelsea\nHope\nJulie\nKaitlin\nValerie\nAmelia\nAvery\nCarly\nLydia\nMaeve\nAdrianna\nDaniela\nElena\nErika\nKatie\nTatiana\nVeronica\nAdriana\nDelaney\nHanna\nJamie\nKate\nKathleen\nMichaela\nNaomi\nAlexandria\nAngelica\nClara\nDiana\nEva\nGillian\nHayley\nKristina\nAlison\nAshleigh\nFrancesca\nLucy\nNayeli\nNina\nCrystal\nNevaeh\nSummer\nBailey\nCheyenne\nDakota\nJayda\nJordyn\nMarisa\nMiranda\nNadia\nRachael\nClaudia\nEvelyn\nImani\nJoanna\nKaren\nKristen\nKyla\nNatasha\nPhoebe\nSadie\nTalia\nAlana\nAna\nChristine\nDesiree\nDiamond\nGeorgia\nKara\nKatrina\nKayleigh\nKrystal\nLeslie\nLexi\nNoelle\nSelena\nShelby\nAnastasia\nCasey\nDaniella\nEliza\nEmilia\nHolly\nMaggie\nMarina\nMya\nPayton\nRylee\nSerena\nTessa\nAinsley\nAliyah\nAmaya\nAnne\nBreanna\nCristina\nDeanna\nEleanor\nElisabeth\nElise\nFiona\nGenevieve\nHaylee\nHelen\nJazmin\nMadeleine\nMonica\nNancy\nReagan\nTeresa\nTiffany\nAllyson\nAnnie\nAnnika\nAshlyn\nCamryn\nCarolyn\nElisa\nEllie\nGenesis\nJane\nJasmin\nKailey\nKarina\nKiana\nLeilani\nLisa\nMaia\nSidney\nAlissa\nAubrey\nAyanna\nBryanna\nCallie\nCameron\nCindy\nClare\nDana\nEllen\nJanelle\nJazmine\nJuliette\nKatharine\nLena\nLia\nLila\nLiliana\nMckenna\nMeredith\nNora\nNyasia\nPeyton\nPriscilla\nAbby\nAlice\nAlina\nAlisha\nBethany\nBritney\nCarolina\nCora\nDevon\nEden\nGina\nIzabella\nJosephine\nJulianne\nJuliet\nKaylie\nKendra\nKiera\nKiley\nLinda\nLogan\nMariana\nRenee\nRose\nSage\nShayla\nSusan\nTheresa\nTiana\nTianna\nTori\nAlessandra\nAlivia\nAlyson\nAngel\nAniyah\nAnnabelle\nAriel\nBella\nBrenda\nBrittany\nBrynn\nCarissa\nCecilia\nCelia\nCheyanne\nEve\nIndia\nJaime\nKarissa\nKyra\nLara\nLizbeth\nMadisyn\nMakenna\nMaura\nMckayla\nMckenzie\nNia\nNyah\nNyla\nPatricia\nSandra\nSkyler\nTabitha\nTamia\nTara\nTatyana\nThalia\nValeria\nAbbey\nAddison\nAlanna\nAthena\nBrenna\nCierra\nColleen\nDevyn\nEmilee\nGiana\nIris\nJacquelyn\nJayden\nJayla\nKylee\nLana\nLilly\nMicaela\nMikaela\nNya\nRebekah\nRuby\nSimone\nTeagan\nTess\nTiara\nAlaina\nAmari\nAnnabella\nAntonia\nAsia\nAurora\nCamille\nCarley\nCiara\nDeborah\nDevin\nFatima\nGwendolyn\nIvy\nJaden\nJadyn\nJenny\nJolie\nJustine\nKaitlynn\nKendall\nKerry\nKira\nLea\nMacy\nMarley\nMeagan\nMelody\nPenelope\nRaven\nReese\nRianna\nRuth\nSasha\nSerenity\nTaryn\nYasmin\nAdrienne\nAisha\nAlejandra\nAlize\nAlly\nAlysha\nAnissa\nBeatrice\nBreana\nCeline\nChelsey\nDaisy\nDaria\nDominique\nElaina\nEliana\nEsmeralda\nGia\nGiselle\nHailee\nHaleigh\nHalle\nHeidi\nIsabela\nJaclyn\nJaiden\nJailyn\nJosie\nJulissa\nKarli\nKarly\nKasey\nKassandra\nKatarina\nKennedy\nKiersten\nLola\nLorena\nLucia\nLyndsey\nMarie\nMaureen\nMercedes\nPamela\nPiper\nRegan\nReilly\nSarina\nSavanna\nShania\nShayna\nShea\nSkye\nSonia\nSylvia\nTaina\nTamara\nTatum\nTyler\nVivian\nAdeline\nAileen\nAiyana\nAlayna\nAllie\nAlondra\nAmani\nAmira\nAneesa\nAnika\nAnn\nAnnabel\nAnnalise\nAnya\nApril\nAracely\nArielle\nArmani\nAshlee\nAshlynn\nBrandy\nCarina\nCarla\nCarmen\nCate\nChanel\nChrista\nCynthia\nDanae\nDayanara\nDayna\nDeja\nDenise\nDina\nElissa\nElyse\nEmilie\nEricka\nFelicity\nGiovanna\nGiuliana\nGloria\nHayden\nHazel\nIsha\nIyanna\nJaida\nJanessa\nJanet\nJazmyn\nJesse\nJessie\nJoy\nJustice\nKaila\nKailyn\nKaley\nKamryn\nKianna\nKirsten\nKristin\nKyah\nLaurel\nLeila\nLiana\nLilah\nLinnea\nLitzy\nMae\nMairead\nMara\nMeaghan\nMollie\nMonique\nNayelie\nNayelis\nNeha\nParis\nPaulina\nPrecious\nRiya\nRosa\nRosalie\nRyley\nSamara\nScarlett\nShirley\nStella\nWendy\nWillow\nYesenia\nEmma\nEmily\nOlivia\nMadison\nJulia\nGrace\nSamantha\nAbigail\nSarah\nIsabella\nHannah\nAshley\nElizabeth\nLauren\nBrianna\nJessica\nSophia\nAlexandra\nAlyssa\nKatherine\nVictoria\nAva\nAlexis\nKayla\nMegan\nNicole\nNatalie\nSydney\nRachel\nAmanda\nMia\nCaroline\nAnna\nKaitlyn\nMorgan\nBrooke\nTaylor\nHailey\nChloe\nJenna\nMadeline\nRebecca\nGabriella\nMackenzie\nDestiny\nErin\nPaige\nAlexa\nCatherine\nAriana\nElla\nJennifer\nKylie\nZoe\nAllison\nCharlotte\nClaire\nLily\nMaya\nMolly\nSara\nRiley\nGianna\nIsabelle\nJillian\nHaley\nJordan\nMeghan\nArianna\nKelly\nStephanie\nMargaret\nAvery\nChristina\nGabrielle\nMakayla\nMary\nSophie\nKathryn\nAngelina\nJada\nJuliana\nLeah\nSofia\nAmelia\nCaitlin\nDanielle\nJasmine\nFaith\nLillian\nAmy\nAudrey\nMarissa\nShannon\nTrinity\nAaliyah\nJocelyn\nKaylee\nMaria\nAmber\nCaitlyn\nIsabel\nKate\nMichelle\nKatelyn\nSabrina\nSavannah\nBriana\nKimberly\nAdriana\nCarly\nJade\nKathleen\nMelissa\nAngela\nCourtney\nLindsay\nMya\nNatalia\nNina\nAlexia\nAlison\nMadelyn\nMichaela\nVanessa\nJacqueline\nJamie\nMelanie\nGabriela\nSierra\nAutumn\nHayley\nLaura\nLindsey\nJulianna\nLucy\nVeronica\nAlexandria\nAmaya\nJordyn\nMadeleine\nMikayla\nAlicia\nChelsea\nEva\nLeslie\nAndrea\nBailey\nKiara\nTatiana\nCassandra\nDiana\nElena\nEliza\nErica\nTiffany\nAlana\nAna\nBianca\nBridget\nErika\nGenesis\nHeather\nKarina\nKayleigh\nDelaney\nFiona\nKaitlin\nKendall\nLydia\nMariana\nAbby\nAnastasia\nAngelica\nCasey\nCassidy\nNatasha\nNoelle\nSage\nSkylar\nTessa\nAdrianna\nFrancesca\nGillian\nJulie\nKelsey\nNevaeh\nNora\nShelby\nAllyson\nAnnabelle\nClara\nDiamond\nEvelyn\nKristina\nNaomi\nRose\nTiana\nValerie\nBrenna\nBrittany\nEleanor\nKailey\nMaeve\nNadia\nSerena\nTalia\nAliyah\nBethany\nHanna\nKatharine\nKiera\nMakenzie\nMariah\nMckenzie\nPeyton\nRachael\nSummer\nAlanna\nBrynn\nCarolyn\nDaniella\nGina\nGracie\nHolly\nKara\nKaren\nKatie\nKyla\nMiranda\nPhoebe\nSadie\nStella\nAlisha\nAnne\nAyanna\nBreanna\nCheyenne\nDaisy\nDaniela\nEliana\nElisabeth\nEllie\nJanelle\nKiley\nKyra\nLayla\nMaggie\nMallory\nMarisa\nMonica\nPiper\nSavanna\nSkyler\nAlice\nAllie\nBryanna\nChristine\nCiara\nElise\nHope\nImani\nJaime\nJane\nJayda\nKassandra\nKassidy\nKiana\nLeila\nLia\nLila\nLiliana\nMeredith\nRenee\nTara\nThalia\nTori\nVivian\nAisha\nAlivia\nCamille\nCecilia\nColleen\nCrystal\nCynthia\nDesiree\nEmilia\nGiovanna\nJessie\nJosephine\nKatrina\nKristen\nMckenna\nRylee\nShayla\nAlaina\nAlissa\nAngel\nAniya\nAshleigh\nAubrey\nCarissa\nClaudia\nCristina\nDana\nGeorgia\nHeaven\nIngrid\nJailyn\nJasmin\nJayden\nJazmine\nKarla\nKaylie\nKrystal\nLilly\nLucia\nNia\nPatricia\nPayton\nRuby\nSasha\nShea\nTeresa\nValentina\nAlayna\nAnika\nAniyah\nAnnika\nAshanti\nAurora\nBaby\nCallie\nCameron\nCamila\nCara\nCarley\nCarolina\nCindy\nGiuliana\nIris\nJohanna\nJuliet\nJulissa\nLeilani\nLena\nLexi\nLilliana\nMadisyn\nMakenna\nNyasia\nRaven\nSandra\nSkyla\nAddison\nAinsley\nAnnie\nAriel\nAshlee\nAsia\nBarbara\nBrooklyn\nDenise\nDevon\nDylan\nEsther\nGiana\nHailee\nHayden\nHelen\nIsabela\nJadyn\nJanae\nJazmin\nJoanna\nJuliette\nKaila\nKaya\nKeira\nKendra\nKira\nKrista\nMaia\nMelody\nMikaela\nNancy\nPriscilla\nRebekah\nRylie\nSelena\nSerenity\nSusan\nTabitha\nTatum\nTatyana\nTess\nAbbey\nAlessandra\nAmiya\nAnnabella\nBrenda\nCierra\nClarissa\nDakota\nElaina\nEmely\nEmerson\nGiselle\nHadley\nHaylie\nHelena\nJaniah\nJustine\nLuz\nMara\nMarguerite\nMarianna\nMarina\nMeaghan\nPhoenix\nQuinn\nRyleigh\nSarai\nTaina\nTania\nWillow\nAbigale\nAida\nAlejandra\nAlessia\nAlina\nAlly\nAlyson\nAmari\nAnabel\nAnjali\nAntonia\nArmani\nAryana\nAshlyn\nBella\nBritney\nCamryn\nCarmen\nCassie\nCelia\nClare\nDeanna\nDeborah\nDevin\nDiane\nEden\nElisa\nEllen\nEloise\nEricka\nEve\nFatima\nFelicia\nFernanda\nGenevieve\nGwendolyn\nHazel\nIndia\nIyanna\nIzabella\nJaclyn\nJaden\nJanessa\nJaniyah\nJayla\nJaylee\nJaylyn\nJenesis\nJoyce\nJulianne\nKaelyn\nKarleigh\nKatelynn\nKaylin\nKennedy\nKristin\nKyara\nKylee\nLaci\nLaila\nLaurel\nLiana\nLisa\nLogan\nLola\nMadyson\nMargaux\nMartina\nMaura\nMckayla\nMelina\nPaula\nPaulina\nReilly\nShayna\nShreya\nSidney\nTianna\nWendy\nYashira\nYasmine\nZoey\nAimee\nAlecia\nAleena\nAlena\nAmalia\nAnabelle\nAnaya\nAngelique\nAnisa\nAnneliese\nAnnette\nArden\nAyesha\nBeverly\nBrianne\nCailey\nCamilla\nCandace\nCarina\nChase\nDelia\nElaine\nElle\nElsa\nElyssa\nFaye\nGuadalupe\nHalle\nHallie\nIlana\nIsyss\nIvy\nJacquelyn\nJaida\nJania\nJayleen\nJenny\nJoelle\nJoselyn\nJosie\nJoslyn\nKaleigh\nKamryn\nKatarina\nKaterina\nKaylyn\nKirsten\nKristine\nLauryn\nLesley\nLesly\nLilian\nLillie\nLinda\nLiv\nLivia\nLizbeth\nLorelai\nLucille\nLyla\nMacy\nMelany\nMelisa\nMonika\nMonique\nMyra\nNeha\nNyla\nParis\nPrincess\nReese\nRhiannon\nRia\nRosemary\nRyan\nSamira\nSarina\nSavanah\nSonia\nStephany\nTahlia\nTamara\nTatyanna\nTheresa\nTyler\nValeria\nVirginia\nXiomara\nZaria\nEmily\nOlivia\nEmma\nIsabella\nSamantha\nMadison\nJulia\nGrace\nSophia\nSarah\nAbigail\nAshley\nAva\nElizabeth\nAlexandra\nAlyssa\nBrianna\nKayla\nLauren\nAnna\nHannah\nJessica\nKatherine\nNicole\nVictoria\nMia\nNatalie\nElla\nLily\nSydney\nGabriella\nAlexis\nCaroline\nMorgan\nAmanda\nBrooke\nRachel\nKaitlyn\nTaylor\nHailey\nMegan\nJenna\nAllison\nRebecca\nErin\nSofia\nAlexa\nMackenzie\nGianna\nPaige\nRiley\nZoe\nJordan\nMolly\nCatherine\nJennifer\nMadeline\nLeah\nAmelia\nMaya\nChloe\nArianna\nCharlotte\nMichelle\nStephanie\nJillian\nAngelina\nAriana\nJasmine\nMary\nSara\nTrinity\nGabrielle\nMargaret\nFaith\nKathryn\nKylie\nMakayla\nKatelyn\nDestiny\nJuliana\nMaria\nCaitlin\nJacqueline\nSophie\nAvery\nJulianna\nKaylee\nDanielle\nSavannah\nSabrina\nGabriela\nHaley\nIsabelle\nLillian\nVanessa\nBridget\nIsabel\nChristina\nMarissa\nAdriana\nLindsey\nAaliyah\nAmber\nAmy\nJocelyn\nKelly\nMelanie\nAutumn\nClaire\nJade\nLindsay\nMadelyn\nTatiana\nCarly\nCassandra\nJada\nKimberly\nNina\nAudrey\nCourtney\nMeghan\nMikayla\nNatalia\nNevaeh\nKate\nAndrea\nBianca\nJamie\nAngela\nDaniela\nKatie\nShannon\nGenesis\nSkylar\nAlana\nErica\nFiona\nLaura\nMelissa\nVeronica\nAlicia\nAmaya\nBailey\nEliza\nKiara\nMya\nSierra\nLydia\nMichaela\nNora\nAdrianna\nAlison\nChelsea\nEva\nJordyn\nKristina\nLucy\nMadeleine\nMaggie\nShelby\nDiana\nElena\nKayleigh\nKelsey\nKyla\nSadie\nAlexia\nEmilia\nErika\nLayla\nAshlyn\nCaitlyn\nEvelyn\nKarina\nLia\nMariah\nNaomi\nPeyton\nSage\nTalia\nTessa\nAna\nCamryn\nEleanor\nKaren\nAbby\nDaniella\nFrancesca\nGillian\nJayda\nKailey\nKendall\nKyra\nLaila\nLila\nLilly\nPiper\nTiffany\nAlexandria\nAngelica\nBriana\nCassidy\nCheyenne\nClaudia\nEllie\nKatrina\nTiana\nZoey\nAnne\nAsia\nDiamond\nElise\nJazmin\nJulie\nKeira\nMallory\nRuby\nAlissa\nAnastasia\nCameron\nCamila\nDelaney\nEsther\nGiovanna\nGiselle\nKiera\nLeila\nLiliana\nLucia\nMckenna\nNoelle\nPayton\nRachael\nRose\nSerena\nShayla\nStella\nAllyson\nAniya\nBreanna\nGenevieve\nHanna\nHeather\nJosephine\nJulianne\nKathleen\nKristen\nLizbeth\nMarina\nMiranda\nPhoebe\nRylee\nSummer\nValerie\nAliyah\nBritney\nCadence\nClare\nElisabeth\nGeorgia\nJuliette\nKaitlin\nKatharine\nMariana\nMeredith\nNorah\nRebekah\nShania\nVivian\nAiyana\nAubrey\nCarissa\nCarolina\nCecilia\nChristine\nCiara\nDeanna\nHayley\nHolly\nJayla\nKaleigh\nKara\nKira\nLexi\nLola\nNia\nReagan\nRenee\nTara\nAlanna\nAlyson\nAmari\nAnnabelle\nAshanti\nAyanna\nBella\nCarolyn\nEve\nGracie\nHelen\nJanessa\nJaniya\nKaya\nKendra\nKiley\nKylee\nLeilani\nLiana\nMaeve\nNancy\nPamela\nShea\nTatyana\nTeresa\nThalia\nAlaina\nAlivia\nAnika\nAshlee\nBethany\nBrenda\nBrenna\nCrystal\nCynthia\nDaisy\nElle\nEmely\nFelicia\nGiana\nGina\nHope\nImani\nIsabela\nIvy\nJaime\nJane\nJohanna\nJoy\nJuliet\nKasey\nKatarina\nKatelynn\nKaylah\nKrystal\nMckenzie\nMelody\nMonica\nNadia\nNatasha\nNyasia\nParis\nReilly\nSandra\nSelena\nSkye\nTori\nValentina\nAlejandra\nAlessandra\nAllie\nAngel\nAniyah\nAnnika\nAriel\nAshleigh\nAthena\nAyana\nBaby\nBeatrice\nCallie\nCamille\nClara\nDakota\nDestinee\nDrew\nDylan\nEliana\nFatima\nJaelyn\nKassandra\nKirsten\nMacy\nMadisyn\nMaia\nMakenna\nMakenzie\nMarie\nPatricia\nPriscilla\nScarlett\nSerenity\nSiena\nTamia\nTeagan\nTheresa\nTia\nTianna\nAlayna\nAlisha\nAlly\nAnnie\nAnya\nBreana\nBrooklyn\nCasey\nCatalina\nColleen\nCora\nDevon\nElaina\nEllen\nEssence\nFrances\nGiuliana\nHeidi\nIris\nIsha\nJaylee\nJoanna\nKailyn\nKiana\nKiersten\nLara\nLeslie\nLesly\nLilliana\nLivia\nLogan\nMaura\nMeagan\nNichole\nNyla\nPaula\nSimone\nSylvia\nTaina\nTaryn\nTatum\nTess\nTyler\nVirginia\nAimee\nAleena\nAlice\nAmelie\nAnabelle\nAnaya\nAryana\nAshlynn\nAurora\nBrynn\nCeleste\nDayanara\nDiya\nElisa\nElsa\nGreta\nGwyneth\nHalle\nHallie\nHaylee\nHeaven\nJaida\nJaiden\nJanelle\nJayden\nJoselyn\nJustine\nKassidy\nKayley\nKaylie\nKennedy\nKimora\nKristin\nLea\nMarcella\nMarianna\nMarisa\nMarley\nMelina\nMercedes\nMilena\nRhea\nRory\nRuth\nSasha\nShreya\nSkyler\nTania\nWhitney\nYasmin\nAbigale\nAdalia\nAdeline\nAdrienne\nAinsley\nAisha\nAislinn\nAliana\nAlisa\nAmya\nAnais\nAngie\nAnnabella\nArielle\nArmani\nAyla\nBrittney\nBryanna\nCalista\nCampbell\nCarina\nCelia\nCeline\nChanel\nCharlize\nChristiana\nCristina\nDana\nDayana\nDesiree\nEden\nEloise\nEmani\nEmerson\nEmilee\nGia\nHaylie\nHelena\nIrene\nIyanna\nJaden\nJadyn\nJaniah\nJasmin\nJayleen\nJazlyn\nJazlynn\nJazmine\nJessie\nJulissa\nKai\nKaila\nKaiya\nKamryn\nKarla\nKarlee\nKaty\nKaylin\nLacey\nLaci\nLaniya\nLinda\nLisette\nLucille\nMagdalena\nMarilyn\nMarin\nMaritza\nMila\nMiracle\nMoira\nNeha\nPaola\nPaulina\nPenelope\nPrincess\nPriya\nRaquel\nRaven\nReese\nRegina\nRowan\nRylie\nSaige\nSamara\nSanaa\nSanai\nSheridan\nSonia\nSusan\nSydnie\nTanisha\nTyana\nViolet\nYolanda\nOlivia\nEmily\nAva\nEmma\nIsabella\nMadison\nAbigail\nGrace\nSophia\nSamantha\nJulia\nElizabeth\nSarah\nKatherine\nHannah\nMia\nAshley\nAlexandra\nLauren\nAnna\nKayla\nAlyssa\nElla\nBrianna\nGabriella\nNatalie\nHailey\nVictoria\nAlexis\nSofia\nLily\nKaitlyn\nSydney\nAmanda\nTaylor\nGianna\nJessica\nCaroline\nNicole\nAlexa\nRachel\nAmelia\nChloe\nMorgan\nMaya\nAngelina\nAvery\nCharlotte\nMegan\nRiley\nJenna\nMolly\nCatherine\nBrooke\nMadeline\nPaige\nSophie\nMackenzie\nStephanie\nDestiny\nAllison\nJennifer\nZoe\nAriana\nSara\nArianna\nCaitlin\nGabrielle\nMakayla\nJada\nLillian\nAudrey\nJasmine\nLeah\nRebecca\nKiara\nMary\nIsabelle\nFaith\nKaylee\nKelly\nKylie\nHaley\nDanielle\nKathryn\nKate\nMya\nErin\nNatalia\nSavannah\nAdrianna\nClaire\nMaria\nMarissa\nNevaeh\nChristina\nJordan\nKimberly\nVanessa\nCiara\nJillian\nKatelyn\nJacqueline\nJulianna\nLaura\nTrinity\nAdriana\nEvelyn\nGabriela\nMargaret\nAndrea\nEva\nJocelyn\nJuliana\nMeghan\nAaliyah\nMariah\nMichelle\nVeronica\nIsabel\nLindsay\nLindsey\nMikayla\nCaitlyn\nCarly\nCassandra\nJamie\nMadelyn\nShannon\nSkylar\nSummer\nTatiana\nMelissa\nNina\nAmber\nAmy\nLucy\nSabrina\nSierra\nStella\nBianca\nMelanie\nDiana\nElena\nKatie\nKatrina\nKelsey\nKendall\nSadie\nAlana\nAlicia\nBriana\nCassidy\nAngela\nAngelica\nAutumn\nChelsea\nElise\nJordyn\nNaomi\nDelaney\nFrancesca\nSienna\nBridget\nCourtney\nKathleen\nMichaela\nPayton\nAlexia\nAnne\nCasey\nClara\nEliza\nGenesis\nJade\nJazmin\nKristina\nMiranda\nParis\nTessa\nAbby\nAniyah\nBreanna\nGeorgia\nHanna\nJane\nKyla\nLayla\nLeila\nAlexandria\nAlivia\nAliyah\nCamila\nCamille\nHeather\nJasmin\nLiliana\nReagan\nSkyler\nAlice\nAmaya\nBella\nCelia\nDakota\nDaniela\nDaniella\nEleanor\nEliana\nHayley\nKaitlin\nKayleigh\nKyra\nNadia\nNora\nPeyton\nRuby\nShelby\nTalia\nTiffany\nValerie\nAnnabelle\nAriel\nAubrey\nErika\nHeaven\nKeira\nKiera\nMadeleine\nMarisa\nNatasha\nSage\nAnastasia\nAngie\nBrooklyn\nBrynn\nCarolina\nCecelia\nCecilia\nGenevieve\nImani\nLia\nLilly\nMarina\nMeredith\nPiper\nSasha\nSkye\nAniya\nAnnika\nCarolyn\nCynthia\nDaisy\nErica\nGina\nIvy\nJazmine\nJosephine\nKamryn\nKarina\nLeslie\nLila\nMelina\nRose\nTess\nAlanna\nAlayna\nAlessandra\nAna\nAshlyn\nBailey\nCamryn\nCheyenne\nClaudia\nCrystal\nFiona\nHelena\nHope\nJayda\nJayla\nJuliette\nKatharine\nKendra\nPhoebe\nSelena\nBrenna\nCallie\nDesiree\nEllie\nEmilia\nGiana\nGracie\nIndia\nJaniya\nJayleen\nJulissa\nKaleigh\nKaylie\nKylee\nLydia\nMaeve\nMaggie\nMariana\nMckenna\nRachael\nReese\nSerenity\nAlaina\nAlina\nAlison\nAllyson\nAmya\nBarbara\nBethany\nFatima\nGiselle\nIzabella\nJanelle\nJaylin\nJulie\nKailey\nKaren\nLea\nMaia\nMallory\nMonica\nNorah\nQuinn\nRenee\nRyan\nSanai\nTeagan\nTiana\nValentina\nVivian\nAlisha\nAryanna\nAurora\nCameron\nCarmen\nChristine\nColleen\nElle\nEmely\nEmilie\nGillian\nHolly\nJoy\nKaylin\nKiley\nKira\nLana\nLarissa\nLauryn\nLucia\nMacy\nMadalyn\nMckenzie\nMelody\nNyla\nRylee\nSandra\nTori\nViolet\nAditi\nAshleigh\nAsia\nDana\nDiamond\nDylan\nGwendolyn\nIsabela\nKaley\nKarla\nKennedy\nLara\nLena\nLola\nNyasia\nSariah\nSavanna\nShayla\nShea\nSkyla\nStefanie\nThalia\nZainab\nZoey\nAdeline\nAinsley\nAnya\nArielle\nAyla\nBrittany\nBryanna\nCadence\nCarla\nCristina\nDevyn\nDina\nElaine\nEsther\nEvangeline\nEve\nGiovanna\nGreta\nHayden\nHaylee\nHelen\nJaidyn\nJanae\nJazmyn\nJohanna\nJuliet\nKara\nKassandra\nKatelynn\nKirsten\nLacey\nLiana\nLinda\nLuciana\nMakenna\nMarie\nMaura\nMercedes\nMikaela\nNoelle\nPaulina\nRosemary\nSamara\nShania\nTara\nTatianna\nTatum\nTatyana\nTiara\nVirginia\nViviana\nAddison\nAisha\nAmani\nAnika\nAnisa\nAnn\nAnnabel\nAria\nAriella\nAyanna\nCassie\nCindy\nDanna\nDenise\nDevon\nDiya\nEden\nElaina\nElisa\nElisabeth\nEloise\nElyse\nEmerson\nGisselle\nGloria\nGuadalupe\nIliana\nIris\nJadyn\nJaime\nJaniah\nJessenia\nJulianne\nJustine\nKaelyn\nKaila\nKailyn\nKaylani\nKiarra\nKimora\nKrystal\nLaila\nLaisha\nLeilani\nLinnea\nMarley\nMelany\nMelisa\nNancy\nNatalee\nNathalie\nNia\nPaula\nReina\nRhea\nRylie\nSarina\nSerena\nSimone\nSylvia\nTaina\nTheresa\nTrisha\nValeria\nAbigayle\nAiyanna\nAlisa\nAlissa\nAllie\nAlondra\nAmina\nAnastacia\nAnaya\nAngel\nAngeline\nAnisha\nAnnelise\nApril\nArmani\nArya\nAshlee\nAshlynn\nBaby\nBria\nBrielle\nCaleigh\nCamilla\nCampbell\nCarley\nCayla\nChanel\nCierra\nClare\nDamaris\nDaphne\nDayana\nDayanara\nDelilah\nDrew\nEileen\nElyssa\nEmilee\nFinley\nHailie\nHalle\nHarley\nHaylie\nJacquelyn\nJaelyn\nJaniyah\nJeanette\nJoselyn\nJudith\nKacie\nKarissa\nKasey\nKassidy\nKaterina\nKaya\nKaylyn\nKerry\nKrista\nKristen\nLaniyah\nLaurel\nLesly\nLexi\nLilliana\nMaddison\nMadelynn\nMagdalena\nMakenzie\nMarcella\nMariam\nMarilyn\nMarin\nMason\nMeaghan\nMicaela\nMonique\nNayeli\nNeveah\nNicolle\nNya\nPamela\nPenelope\nRaquel\nRegina\nRhiannon\nRia\nRory\nRosa\nSaige\nSally\nSanaa\nSanjana\nSheila\nSidney\nStacey\nSusan\nTaryn\nTeresa\nWillow\nYasmin\nYasmine\nYesenia\nIsabella\nEmily\nAva\nOlivia\nEmma\nMadison\nGrace\nJulia\nAbigail\nSophia\nSamantha\nHannah\nMia\nSarah\nGabriella\nElizabeth\nAshley\nBrianna\nLauren\nAnna\nKatherine\nVictoria\nElla\nKayla\nAlyssa\nGianna\nAlexandra\nChloe\nSofia\nAlexa\nBrooke\nNatalie\nTaylor\nCharlotte\nHailey\nAlexis\nLily\nMaya\nCaroline\nMorgan\nAngelina\nRachel\nLeah\nNicole\nSydney\nMolly\nRiley\nMadeline\nMackenzie\nAmanda\nLillian\nMegan\nKaitlyn\nAvery\nSara\nAmelia\nAriana\nAllison\nArianna\nJessica\nSophie\nZoe\nDestiny\nJenna\nErin\nGabrielle\nIsabel\nJillian\nNatalia\nRebecca\nClaire\nPaige\nStephanie\nCatherine\nIsabelle\nJuliana\nJasmine\nKeira\nMadelyn\nMakayla\nSavannah\nKaylee\nMichelle\nNevaeh\nFaith\nJulianna\nKathryn\nAddison\nAdrianna\nAndrea\nCaitlin\nJayla\nJennifer\nKatelyn\nDanielle\nEvelyn\nKimberly\nKylie\nMariah\nAlana\nAudrey\nLila\nMaria\nAaliyah\nAdriana\nGabriela\nJocelyn\nJordan\nMya\nAngela\nChristina\nHaley\nLindsey\nMargaret\nSkylar\nMary\nVanessa\nJacqueline\nKelly\nBriana\nKate\nPeyton\nSadie\nSerenity\nTrinity\nKiara\nMikayla\nNina\nSabrina\nEva\nLindsay\nMarissa\nMelanie\nSierra\nAmber\nAutumn\nCassandra\nChelsea\nKatie\nMeghan\nAlivia\nBianca\nCassidy\nMelissa\nNaomi\nShannon\nAlexia\nAmaya\nAmy\nAubrey\nJade\nLucy\nSummer\nCamryn\nEllie\nJada\nLaura\nNora\nSienna\nValerie\nAnastasia\nCasey\nJulie\nLayla\nSage\nCheyenne\nDelaney\nKyra\nLiliana\nMadeleine\nPhoebe\nReese\nTessa\nAlicia\nElise\nGenesis\nMaggie\nAlison\nDaniella\nDiana\nElena\nErica\nFiona\nGenevieve\nKelsey\nKyla\nLilly\nLydia\nMichaela\nPayton\nAnne\nBridget\nCadence\nCiara\nJosephine\nKailey\nKira\nStella\nTalia\nTatiana\nAbby\nAlexandria\nAnnika\nBrooklyn\nCarly\nEleanor\nHope\nJulissa\nMaeve\nTeagan\nVivian\nZoey\nCameron\nClara\nGeorgia\nJordyn\nKathleen\nKaylin\nKennedy\nKiera\nLola\nMallory\nNatasha\nNoelle\nRose\nTiffany\nValentina\nValeria\nVeronica\nAna\nAniya\nCamila\nDakota\nEliza\nEmilia\nFrancesca\nGiselle\nHanna\nImani\nJazmin\nKara\nKayleigh\nKaylie\nLeila\nNadia\nPenelope\nRuby\nAliyah\nAnaya\nAniyah\nAshlyn\nAyla\nDaisy\nDaniela\nEliana\nErika\nGiana\nJayda\nLilliana\nMarina\nMeredith\nMiranda\nNyla\nPiper\nShelby\nColleen\nCourtney\nEmerson\nIzabella\nKendall\nKiersten\nKylee\nRachael\nRihanna\nScarlett\nYasmin\nAlanna\nAnika\nAurora\nAyanna\nBella\nCaitlyn\nDanica\nEve\nGina\nHayley\nMariana\nMelody\nMonica\nNyasia\nReagan\nSanai\nShayla\nSkye\nTianna\nAlice\nBailey\nBethany\nCamille\nCecelia\nCecilia\nClaudia\nCynthia\nDana\nDiamond\nElle\nHolly\nJamie\nJasmin\nKaren\nKarina\nKatharine\nKristina\nLeslie\nLilah\nNia\nNorah\nRebekah\nSasha\nSerena\nSkyla\nAinsley\nAllyson\nAlondra\nAngel\nAryanna\nCarmen\nCarolyn\nElsa\nEssence\nGia\nGiovanna\nHeather\nJane\nJanelle\nJaniya\nJayden\nKaelyn\nKaitlin\nKaleigh\nKatrina\nKiana\nLisa\nMarley\nMelina\nPatricia\nRylee\nSelena\nShea\nSherlyn\nTiana\nAlina\nAmani\nAngelica\nAngie\nAnnabelle\nAriel\nArielle\nBreanna\nBrenna\nBrielle\nCallie\nCampbell\nCindy\nClare\nCrystal\nEden\nIrene\nKailee\nKiley\nKyleigh\nLana\nLauryn\nLondon\nLucia\nMadisyn\nMadyson\nMaia\nMakenzie\nMckenzie\nNataly\nNayeli\nNya\nReilly\nSavanna\nSkyler\nTabitha\nViolet\nAdeline\nAlessandra\nAlisha\nAlissa\nAmaris\nAmya\nAnalise\nAnnalise\nAnya\nApril\nBrenda\nBryanna\nBrynn\nCamilla\nChristine\nDaphne\nDeborah\nDesiree\nEsther\nFelicia\nFelicity\nGillian\nGwyneth\nHaylee\nHazel\nHeaven\nIvy\nIyanna\nJaden\nJaelyn\nJaniyah\nJazmine\nJustice\nKaila\nKassandra\nLeilani\nLia\nLilyana\nLorelei\nMarianna\nMarisa\nMartha\nMaura\nMiriam\nNicolette\nRayne\nSamara\nSavanah\nShania\nSylvia\nTamia\nTia\nTiara\nVirginia\nAlaina\nAlani\nAlejandra\nAliana\nAlyson\nAmiyah\nAnanya\nAngeline\nAngelique\nAnnabella\nAshlee\nBeatrice\nBrittany\nCara\nCarolina\nCatalina\nCeleste\nCeline\nCorinne\nDevyn\nElisa\nElisabeth\nEmely\nEmilie\nEsmeralda\nFatima\nGiavanna\nGiuliana\nGracie\nHeidi\nHelen\nHelena\nIsabela\nIsis\nIvelisse\nJacquelyn\nJaidyn\nJanessa\nJaylin\nJazlyn\nJenny\nJoanna\nKamryn\nKassidy\nKaya\nKendra\nLara\nLena\nLorelai\nMalia\nMarcella\nMarie\nMckenna\nMikaela\nMilena\nNaima\nNancy\nRenee\nRhianna\nRhiannon\nRowan\nRyan\nSaniya\nSelina\nShakira\nSimone\nSusan\nTania\nTess\nAddyson\nAlayna\nAlena\nAlessia\nAlly\nAlyvia\nAmalia\nAnabelle\nAnnaliese\nAntonia\nAsia\nAubree\nBritney\nCameryn\nCatarina\nChanel\nCora\nCristina\nDeanna\nDevon\nDivya\nEllen\nEmelia\nHadley\nHailee\nHaylie\nIndia\nIris\nJailene\nJanae\nJaniah\nJaylee\nJaylene\nJaylynn\nJenifer\nJohanna\nKaia\nKaitlynn\nKali\nKayley\nKianna\nKimora\nKirsten\nKrista\nKristen\nKristin\nKrystal\nLaila\nLexi\nLeyla\nLiana\nLuisa\nLuz\nMadalyn\nMadelynn\nMakenna\nMara\nMarisol\nMckayla\nMelany\nMoriah\nNatalya\nNathalia\nNathaly\nNiasia\nPaola\nParis\nQuinn\nRaquel\nRebeca\nRuth\nRylie\nSaige\nSanaa\nSaniyah\nSariah\nSarina\nSiena\nStacy\nSusana\nTaryn\nIsabella\nOlivia\nAva\nEmma\nEmily\nSophia\nAbigail\nMadison\nJulia\nGrace\nSamantha\nHannah\nElizabeth\nSarah\nMia\nElla\nAlyssa\nNatalie\nGabriella\nKayla\nBrianna\nAlexandra\nKatherine\nAshley\nChloe\nVictoria\nBrooke\nSofia\nGianna\nLauren\nCharlotte\nLily\nAddison\nHailey\nAngelina\nAvery\nSydney\nArianna\nMaya\nNicole\nAlexa\nKaitlyn\nMorgan\nSophie\nAnna\nJessica\nLillian\nMackenzie\nMadeline\nJuliana\nZoe\nRiley\nAaliyah\nAlexis\nAllison\nCaroline\nNatalia\nTaylor\nPaige\nKatelyn\nNevaeh\nIsabel\nAriana\nJasmine\nSadie\nKylie\nLeah\nMadelyn\nAmanda\nAmelia\nAudrey\nSara\nAdriana\nCatherine\nDestiny\nKaylee\nMolly\nSavannah\nClaire\nMakayla\nRachel\nJenna\nGabrielle\nGabriela\nKate\nKathryn\nMegan\nMary\nJennifer\nMaria\nMelanie\nRebecca\nEvelyn\nLucy\nMariah\nTrinity\nChristina\nHaley\nIsabelle\nMargaret\nJillian\nAubrey\nFiona\nJordan\nKeira\nAmber\nAndrea\nEva\nTessa\nAlana\nCaitlyn\nJulianna\nLiliana\nStephanie\nVanessa\nAmy\nErin\nJordyn\nAmaya\nFaith\nKatie\nKimberly\nAngela\nLayla\nMikayla\nSienna\nBriana\nCaitlin\nAlicia\nJada\nReese\nSerenity\nCamila\nDanielle\nGenesis\nLila\nMichelle\nMya\nNina\nTatiana\nDaniela\nJade\nLaura\nMichaela\nNaomi\nScarlett\nSkylar\nBianca\nCassidy\nJacqueline\nKelsey\nKiara\nMelissa\nAutumn\nBella\nClara\nDiana\nMaggie\nPeyton\nPhoebe\nRylee\nZoey\nAdrianna\nElise\nFrancesca\nJocelyn\nSummer\nTiffany\nValentina\nAlina\nAniya\nGeorgia\nKelly\nMarissa\nNora\nAnnabelle\nBridget\nCassandra\nEliana\nGracie\nKarina\nLindsay\nSabrina\nCamryn\nCarly\nCiara\nEleanor\nEllie\nHayley\nJayla\nKyla\nLeila\nLeilani\nLilliana\nLola\nLydia\nMeghan\nRuby\nSierra\nStella\nVeronica\nAlexandria\nAlison\nAna\nBailey\nCheyenne\nErica\nJane\nJosephine\nJuliette\nKailey\nKendra\nLilah\nLucia\nShannon\nValeria\nViolet\nAbby\nCameron\nCourtney\nElena\nErika\nIzabella\nKira\nLiana\nLilly\nLindsey\nReagan\nSage\nSelena\nValerie\nAlanna\nAlexia\nCara\nCecilia\nChelsea\nHayden\nKathleen\nMadeleine\nMarley\nNadia\nAngie\nAnne\nBreanna\nGiselle\nGiuliana\nHope\nImani\nKiley\nMaeve\nRachael\nRose\nSarai\nShelby\nAlaina\nAlivia\nAllie\nBrenna\nCora\nDelilah\nGiada\nHelena\nJamie\nJanelle\nJasmin\nJayda\nKarla\nKayleigh\nKaylin\nKendall\nKyleigh\nKyra\nLaila\nLeslie\nLia\nLyla\nMakenzie\nNorah\nQuinn\nSavanna\nTalia\nAlessandra\nAniyah\nAnya\nAsia\nAyla\nBrenda\nEden\nEliza\nEmilia\nHazel\nHeaven\nIsabela\nJadyn\nJaylene\nKaelyn\nKara\nKasey\nMallory\nNoelle\nNyasia\nSerena\nTatum\nTess\nAmalia\nAnnie\nAriel\nCadence\nCallie\nCasey\nDaniella\nEmerson\nGiana\nJaslene\nKennedy\nKimora\nLara\nMadyson\nMelina\nMikaela\nMiranda\nPayton\nPenelope\nRowan\nSasha\nSiena\nTheresa\nAmari\nAmya\nAnastasia\nAngelique\nAnnabel\nAnnika\nAshlee\nAshlyn\nBrooklyn\nBrynn\nDaphne\nDelaney\nDiamond\nEllen\nFatima\nGemma\nGia\nHanna\nHelen\nJaelyn\nJaniya\nJazlyn\nJazmin\nJulie\nKristina\nKylee\nLena\nMara\nMariana\nMarina\nMckayla\nMckenzie\nMeadow\nMiley\nRihanna\nSaige\nShea\nSkye\nTeagan\nTiana\nYasmin\nBrielle\nBritney\nClare\nCristina\nDakota\nDanica\nDylan\nElaina\nElisabeth\nElle\nEsther\nGenevieve\nGiovanna\nHaylie\nHeather\nJaida\nJanessa\nJoanna\nKailyn\nKamryn\nKaren\nKatelynn\nKayden\nKrystal\nMaia\nMarisa\nMercedes\nMeredith\nNatasha\nNia\nPaola\nPatricia\nPiper\nRegan\nRhianna\nSandra\nShayla\nTara\nTaryn\nUnique\nVirginia\nAdelaide\nAlayna\nAlejandra\nAlice\nAliyah\nAllyson\nAlondra\nAmani\nAnita\nAnnabella\nApril\nAryanna\nBeatrice\nBethany\nCecelia\nCrystal\nDahlia\nDayana\nDelia\nElsa\nEvangeline\nHadley\nHarmony\nHolly\nIvana\nJadalee\nJayden\nJazmine\nJessenia\nJuliet\nKaylie\nKiera\nLea\nLondon\nLuz\nMakenna\nMckenna\nMiriam\nNathaly\nSaanvi\nSaniya\nShayna\nShirley\nShreya\nSkyler\nSylvia\nTaniya\nTatyana\nVivian\nViviana\nXiomara\nYaritza\nZara\nAda\nAdeline\nAditi\nAinsley\nAisha\nAiyana\nAlisha\nAlissa\nAlyson\nAnais\nAngelica\nAngeline\nAshlynn\nAthena\nBarbara\nBryanna\nCamille\nCampbell\nCarmen\nChanel\nCharlize\nCheyanne\nCorinne\nDaisy\nDeborah\nDesiree\nDestinee\nEmilie\nEmilly\nEsmeralda\nEstrella\nGisselle\nHallie\nHaylee\nHillary\nIvy\nIyanna\nJayleen\nJazmyn\nJoselyn\nJosie\nJoy\nJulissa\nKailani\nKaitlin\nKaley\nKali\nKassandra\nKassidy\nKatharine\nKatrina\nKaya\nKristen\nLana\nLarissa\nLexi\nLilyana\nLinda\nLivia\nLogan\nMadalyn\nMadilyn\nMadisen\nMaja\nMarilyn\nMelody\nMonica\nNataly\nRhea\nRiya\nRuth\nRyleigh\nSamya\nShaelyn\nTaliyah\nTeresa\nZaniyah\nZariah\nAlani\nAliza\nAnaya\nAngel\nAria\nAyanna\nBailee\nCaelyn\nCailey\nCailyn\nCarla\nCarolina\nCarolyn\nCatalina\nCeleste\nClaudia\nColleen\nDamaris\nDanna\nDeanna\nDenise\nDevyn\nEloise\nEmani\nEmelia\nGina\nGiulia\nGloria\nGreta\nGwendolyn\nHailee\nJaden\nJaelynn\nJaidyn\nJaime\nJanae\nJaniah\nJaylynn\nJustice\nKaelin\nKaleigh\nKarolina\nKelis\nLacey\nLesley\nLianna\nLorelei\nMaddison\nMadelynn\nMagdalena\nMakena\nMelany\nMina\nMira\nMollie\nNathalia\nNayeli\nNola\nParis\nPaula\nPhoenix\nPriscilla\nRaquel\nRebeca\nReilly\nRosa\nRyan\nSahana\nSalma\nSamara\nScarlet\nShania\nShaniya\nSharon\nSimone\nSkyla\nSusan\nTamia\nTanisha\nTianna\nTracy\nWillow\nIsabella\nOlivia\nAva\nEmily\nEmma\nMadison\nSophia\nAbigail\nJulia\nGrace\nSamantha\nMia\nElizabeth\nElla\nGabriella\nLily\nSofia\nHailey\nHannah\nNatalie\nAnna\nKayla\nSarah\nBrooke\nGianna\nKatherine\nAlyssa\nChloe\nMaya\nTaylor\nVictoria\nAshley\nAlexandra\nLillian\nAvery\nBrianna\nMadeline\nAlexis\nCharlotte\nLauren\nAlexa\nAngelina\nLeah\nMakayla\nSophie\nAddison\nRiley\nCaroline\nKylie\nNicole\nArianna\nMadelyn\nNevaeh\nKaylee\nMackenzie\nMolly\nAudrey\nAllison\nAmelia\nEva\nAriana\nJuliana\nNatalia\nSydney\nZoe\nPaige\nSavannah\nAubrey\nGabrielle\nKaitlyn\nMya\nIsabelle\nJenna\nKathryn\nDestiny\nAmanda\nMorgan\nRebecca\nSara\nJessica\nAdriana\nCatherine\nClaire\nJillian\nJulianna\nMelanie\nLucy\nSadie\nAaliyah\nPeyton\nAdrianna\nAutumn\nMikayla\nErin\nFaith\nJocelyn\nMargaret\nEvelyn\nJasmine\nRachel\nJennifer\nKate\nMariah\nSienna\nGabriela\nMaria\nLila\nMegan\nPayton\nTessa\nVanessa\nAlana\nCaitlin\nCamila\nGenesis\nKeira\nStephanie\nIsabel\nKatelyn\nMary\nNora\nRuby\nChelsea\nHaley\nJayla\nLaila\nLiliana\nMeghan\nMichelle\nSabrina\nJada\nKiara\nLayla\nStella\nTatiana\nTrinity\nCarly\nDanielle\nJade\nKimberly\nMelissa\nBianca\nKelly\nMarissa\nNina\nScarlett\nZoey\nAniyah\nAnnabelle\nEliza\nLeila\nLilly\nMadeleine\nSummer\nAlexia\nAlice\nAmber\nCiara\nDelilah\nLilah\nMichaela\nSkylar\nAlanna\nDelaney\nJacqueline\nLia\nReese\nTeagan\nBriana\nBrooklyn\nHope\nJamie\nNaomi\nVivian\nAmy\nBailey\nBella\nCaitlyn\nChristina\nElena\nEllie\nFiona\nJayda\nJuliette\nLondon\nValentina\nAlivia\nAliyah\nCallie\nCamryn\nCassidy\nCheyenne\nGiselle\nJordan\nLyla\nMaeve\nMarley\nMckenna\nMiley\nPhoebe\nSage\nShannon\nAmaya\nDiana\nEliana\nEmilia\nHayden\nJosephine\nKatie\nKendall\nKennedy\nLindsay\nSasha\nTalia\nAna\nAndrea\nClara\nDaniela\nGiana\nKelsey\nKyra\nLucia\nMckenzie\nReagan\nRylee\nTiffany\nValeria\nAlessandra\nAngela\nAshlyn\nCameron\nImani\nJordyn\nLeilani\nSerena\nSierra\nTiana\nViolet\nAlaina\nAlina\nBrenna\nBrynn\nCamille\nGracie\nIzabella\nKayleigh\nKiley\nKylee\nMaia\nMallory\nNadia\nNyasia\nPiper\nValerie\nVeronica\nAlexandria\nAlicia\nAlison\nAnne\nBridget\nCecilia\nCrystal\nKiera\nKimora\nKyla\nLaura\nMakenzie\nNatasha\nSavanna\nSerenity\nShelby\nWillow\nAngel\nAngelica\nAriel\nDaisy\nDaniella\nDeanna\nEmerson\nGeorgia\nHolly\nJasmin\nJazmin\nKaelyn\nKailey\nKaitlin\nKara\nKarina\nLilliana\nMaggie\nMakenna\nMeredith\nPenelope\nShayla\nShea\nAbby\nAllyson\nAnastasia\nApril\nAyla\nCassandra\nCora\nDylan\nEleanor\nElise\nEmely\nEmilie\nErica\nEve\nGenevieve\nHanna\nHeaven\nHelen\nHelena\nJaida\nJaslene\nJayleen\nKarla\nLiana\nLilyana\nLogan\nMadalyn\nNorah\nRylie\nSelena\nAdeline\nAlejandra\nAmari\nBethany\nCarmen\nCarolyn\nCasey\nClare\nCristina\nDakota\nDeborah\nEden\nFatima\nHadley\nHarper\nHaylee\nJane\nJaniya\nJazmine\nJuliet\nKaren\nKaya\nLeslie\nLydia\nMariana\nNayeli\nRose\nRowan\nShania\nSkyler\nAda\nAlisha\nAmalia\nAniya\nAshlynn\nAudrina\nAyanna\nBreanna\nBrooklynn\nCadence\nCara\nCeleste\nClaudia\nColleen\nDevin\nElliana\nEmelia\nEsther\nEvangeline\nFrancesca\nGemma\nGillian\nGina\nHarmony\nHaylie\nIsabela\nJanessa\nJaylene\nJazlyn\nJoanna\nKamryn\nKassandra\nKaydence\nKaylie\nKendra\nKira\nLindsey\nMadisyn\nNia\nNola\nShriya\nSkyla\nTara\nTatum\nAddyson\nAngie\nAnnie\nAnya\nBrielle\nCarolina\nCecelia\nDanica\nDesiree\nDiamond\nElaina\nElisa\nEmani\nErika\nEsmeralda\nGia\nGiovanna\nGiuliana\nIsla\nIvy\nIyanna\nJaelyn\nJaniah\nJulie\nKaylani\nLea\nLeilany\nLena\nLola\nLorelei\nMaddison\nMalia\nMarianna\nMckayla\nMonica\nNatalya\nRachael\nRaquel\nReilly\nSaige\nSally\nSamara\nSarai\nSharon\nSheyla\nSiena\nSloane\nZahra\nAditi\nAiyana\nAlannah\nAleena\nAllisson\nAmira\nAmirah\nAmya\nAnaya\nAria\nAriella\nArmani\nAryanna\nAvani\nBritney\nCamilla\nCatalina\nCindy\nCorinne\nCourtney\nCynthia\nDelia\nDiya\nElle\nGiada\nGretchen\nHailee\nHana\nHasini\nHayley\nHazel\nHeidi\nJaelynn\nJaniyah\nJaylynn\nKasey\nKassidy\nKhloe\nKiersten\nKristen\nKyleigh\nLivia\nMadilyn\nMariam\nMarlee\nMartha\nMeadow\nMelody\nMikaela\nMiriam\nQuinn\nRhianna\nRyan\nRyleigh\nSahasra\nSalma\nSariah\nSiobhan\nSkye\nStephany\nTaina\nTamia\nTania\nTeresa\nThalia\nYasmin\nAinsley\nAlisson\nAllie\nAlondra\nAmani\nAmara\nAnnabel\nAnnabella\nArielle\nAshanti\nAshlee\nAurora\nBeatrice\nBreana\nBryanna\nCali\nCampbell\nCarina\nCeline\nCherish\nChiara\nDana\nDanna\nDayana\nDestinee\nEleni\nElisabeth\nEmery\nFelicity\nFinley\nGloria\nJaidyn\nJanelle\nJayden\nJaylin\nJohanna\nJulissa\nJustine\nKailee\nKaley\nKali\nKaliyah\nKaterina\nKathleen\nKaylen\nKaylin\nKaylynn\nKeily\nKiana\nLacey\nLainey\nLana\nLaniyah\nLauryn\nLillianna\nLinnea\nLisa\nLuciana\nLuna\nMacy\nMadysen\nMara\nMaren\nMarilyn\nMarisa\nMaritza\nMariyah\nMelina\nMikaila\nMila\nMina\nMiranda\nMollie\nNancy\nNathalie\nNoelia\nNoelle\nParker\nPriscilla\nRegan\nRihanna\nRiya\nRory\nSanaa\nSaniya\nSarina\nScarlet\nShaila\nShanya\nShiloh\nShirley\nSusan\nTaliyah\nTierra\nTori\nVivienne\nXiomara\nYadira\nZara\nIsabella\nOlivia\nSophia\nAva\nEmma\nMadison\nAbigail\nMia\nSamantha\nEmily\nGabriella\nChloe\nSarah\nElizabeth\nJulia\nElla\nGrace\nBrianna\nLily\nGianna\nHailey\nVictoria\nLeah\nNatalie\nCharlotte\nAlexandra\nKayla\nHannah\nAvery\nBrooke\nAlyssa\nTaylor\nAddison\nAlexa\nArianna\nRiley\nAshley\nAlexis\nAnna\nMaya\nSofia\nSophie\nMolly\nMadeline\nKatherine\nLillian\nNevaeh\nAmelia\nAriana\nCaroline\nClaire\nAllison\nMya\nNicole\nPeyton\nAudrey\nSara\nKaitlyn\nLauren\nMadelyn\nSavannah\nJuliana\nMakayla\nRachel\nSydney\nAngelina\nKaylee\nLucy\nNatalia\nZoe\nMackenzie\nMaria\nSadie\nAaliyah\nAmanda\nJulianna\nDestiny\nRebecca\nVanessa\nAdriana\nEva\nGabrielle\nMorgan\nAubrey\nAutumn\nJasmine\nKatelyn\nMariah\nPaige\nEvelyn\nMargaret\nSerenity\nStephanie\nLayla\nIsabelle\nKylie\nLila\nGenesis\nHaley\nJenna\nKeira\nMegan\nStella\nBella\nIsabel\nJennifer\nLiliana\nAniyah\nCamila\nJillian\nJocelyn\nKhloe\nMary\nBrooklyn\nNora\nBriana\nEmilia\nJessica\nSasha\nAmaya\nAnnabelle\nCamryn\nCatherine\nFaith\nLaila\nLilly\nTalia\nValentina\nCaitlin\nPayton\nPiper\nRuby\nScarlett\nTessa\nViolet\nAndrea\nBianca\nCaitlyn\nGabriela\nJada\nJade\nKate\nKelly\nMelanie\nPhoebe\nSkylar\nAdrianna\nAlana\nEleanor\nJordan\nKimberly\nLeila\nSabrina\nAlivia\nHaylee\nKathryn\nLondon\nMalia\nMichelle\nNaomi\nPenelope\nReagan\nDaniela\nFrancesca\nJacqueline\nJuliette\nReese\nZoey\nAlina\nAlison\nAnastasia\nAshlyn\nCarly\nDanielle\nElena\nErin\nNina\nSienna\nTrinity\nAngela\nAnya\nBailey\nCassidy\nDiana\nEliza\nIzabella\nJayla\nJosephine\nKelsey\nLilah\nMikayla\nAliyah\nAna\nAnalia\nCecilia\nDaisy\nDaniella\nJulie\nLia\nLilliana\nLyla\nMarissa\nMarley\nMeghan\nNyasia\nSage\nValeria\nAmy\nAurora\nCameron\nClara\nHayden\nIsla\nJane\nJordyn\nKaelyn\nKendall\nMadeleine\nMaeve\nMckenna\nRose\nRylee\nVivian\nAlexia\nAlice\nAlicia\nAmber\nBrooklynn\nChelsea\nEliana\nFiona\nGia\nGiselle\nImani\nLaura\nLucia\nMiley\nSierra\nTeagan\nAlexandria\nBreanna\nCassandra\nCheyenne\nGenevieve\nHarper\nJayda\nKennedy\nKiara\nMelissa\nMichaela\nNoelle\nAngelica\nCamilla\nChristina\nDelaney\nDelilah\nGracie\nHazel\nJaniya\nKatie\nKylee\nLena\nLindsey\nLydia\nMariana\nRihanna\nShayla\nTatiana\nAlayna\nAlejandra\nCadence\nCara\nElise\nHayley\nJanelle\nJazmine\nKristen\nLeilani\nLeslie\nLexi\nLiana\nMckenzie\nNyla\nRiya\nSaniya\nSummer\nTiana\nValerie\nVeronica\nAbby\nAllyson\nCourtney\nCrystal\nEden\nElle\nEllie\nGiuliana\nHadley\nHarmony\nJaelyn\nKayden\nLogan\nMaia\nMallory\nSavanna\nSelena\nTess\nAdeline\nAlani\nAria\nBeatrice\nCamille\nDakota\nDaria\nGeorgia\nHeaven\nHelena\nJazmin\nJoselyn\nJuliet\nKailey\nKaitlin\nKara\nKaren\nKristina\nKyleigh\nKyra\nLola\nLuna\nMadelynn\nMaliyah\nNadia\nNatasha\nRachael\nRoselyn\nRowan\nSarai\nShannon\nWillow\nAdelaide\nAlanna\nAlessandra\nAmari\nAmiya\nAngel\nAngie\nAnika\nAnnabel\nAnnabella\nAnne\nApril\nAriel\nAryanna\nAyanna\nAyla\nBethany\nCaylee\nChanel\nCora\nDaphne\nEmely\nEmerson\nFinley\nFrances\nGemma\nGiana\nIris\nIsabela\nJaida\nJaniah\nJaniyah\nKailyn\nLondyn\nMaggie\nMakenzie\nMelody\nMonica\nMyra\nNorah\nNylah\nParker\nQuinn\nShelby\nSkye\nWhitney\nYasmin\nAbbigail\nAddyson\nAinsley\nAlaina\nAlia\nAmani\nAmina\nAnalise\nAnaya\nAnjali\nAnnalise\nArabella\nArmani\nAshlynn\nBridget\nBrynn\nCalleigh\nCallie\nCarina\nCatalina\nCecelia\nClare\nCristina\nGiada\nHailee\nIsis\nIvy\nJayleen\nJazlyn\nJoy\nKathleen\nKayleigh\nKeily\nKendra\nKiera\nKiley\nKira\nKyla\nLilyana\nLivia\nLuciana\nLucille\nMadilyn\nMakenna\nMariam\nMarina\nMelina\nNathalia\nNayeli\nPhoenix\nSanjana\nShiloh\nShriya\nSiena\nThalia\nTianna\nAanya\nAllie\nAmelie\nAmiyah\nAnabella\nAnabelle\nAniya\nAshlee\nAubrie\nAudrina\nBrielle\nCarmen\nCarolina\nCiara\nClaudia\nCorinne\nDanna\nElianna\nEloise\nErica\nErika\nFernanda\nGiovanna\nHaleigh\nHelen\nHolly\nHope\nJaelynn\nJamie\nJanessa\nJayden\nJazmyn\nJoanna\nJosie\nJulianne\nJulissa\nKaia\nKaleigh\nKamryn\nKarina\nKarla\nKarly\nKassidy\nKatelynn\nKaylani\nKaylie\nKaylin\nKirsten\nLara\nLea\nLilian\nLindsay\nMacy\nMadyson\nMariella\nMilagros\nMiranda\nMiriam\nNia\nPatricia\nRory\nRosa\nRyan\nRylan\nRylie\nSahana\nSaige\nSanaa\nSanai\nSariah\nShania\nShea\nSkyler\nTaryn\nTatianna\nTeresa\nTiffany\nVivienne\nYesenia\nAliana\nAlisa\nAlissa\nAliza\nAlondra\nAlyana\nAlysia\nAlyson\nAmara\nAngelique\nAnijah\nAnn\nAnnaliese\nAnushka\nBrenna\nCarissa\nCarlie\nCasey\nCayla\nCelia\nCharlize\nCierra\nColleen\nDahlia\nDamaris\nDasia\nDayana\nDeanna\nDevin\nEileen\nElaina\nElisa\nElisabeth\nElliana\nElsa\nElyse\nEmery\nEmilee\nEmilie\nEsther\nEve\nGina\nGiulia\nHeidy\nIliana\nJaslyn\nJasmin\nJaydah\nJaylene\nKamila\nKaterina\nKaya\nKaydence\nKimora\nLarissa\nLaurel\nLeticia\nLizbeth\nMaddison\nMadisyn\nMara\nMarin\nMarlie\nMartina\nMaryn\nMatilda\nMaura\nMckayla\nMelany\nMeredith\nMihika\nMyah\nNathalie\nNayeliz\nNeveah\nRuth\nSahasra\nSawyer\nScarlet\nSidney\nSilvia\nSimone\nSky\nSonia\nTahlia\nTaliah\nTaliyah\nTamia\nTiara\nWynter\nYazmin\nIsabella\nOlivia\nSophia\nAva\nEmma\nAbigail\nMadison\nMia\nGabriella\nEmily\nGrace\nElla\nJulia\nGianna\nChloe\nSamantha\nCharlotte\nLily\nSofia\nElizabeth\nZoe\nAvery\nVictoria\nRiley\nAddison\nArianna\nMaya\nAmelia\nLeah\nNatalie\nBrianna\nKayla\nAnna\nSarah\nHailey\nHannah\nBrooke\nKatherine\nLayla\nSophie\nAlexandra\nMackenzie\nJuliana\nKylie\nLillian\nSavannah\nAlexa\nAriana\nKaylee\nCaroline\nLauren\nTaylor\nAlyssa\nMakayla\nAshley\nAlexis\nClaire\nNatalia\nAllison\nMadeline\nIsabelle\nKaitlyn\nPeyton\nStella\nAdriana\nJulianna\nLucy\nMadelyn\nAubrey\nAudrey\nAdrianna\nAngelina\nMolly\nNevaeh\nBrooklyn\nAaliyah\nEva\nMelanie\nMya\nPaige\nSydney\nMorgan\nNora\nGiuliana\nLyla\nEvelyn\nLila\nSadie\nPayton\nRachel\nZoey\nJessica\nKhloe\nNaomi\nMargaret\nMary\nNicole\nSara\nBella\nGabriela\nJocelyn\nMegan\nScarlett\nEleanor\nGabrielle\nJasmine\nKatelyn\nQuinn\nViolet\nAutumn\nDestiny\nFaith\nFiona\nJordyn\nLiliana\nReese\nAlice\nJillian\nMaria\nSerenity\nStephanie\nAmber\nCamila\nJada\nAmanda\nJayla\nKate\nKeira\nKendall\nLondon\nMichelle\nSkylar\nVanessa\nElena\nJordan\nNadia\nSabrina\nSummer\nAmaya\nBrielle\nKathryn\nKelsey\nMikayla\nRuby\nTessa\nValentina\nAliyah\nAndrea\nCatherine\nClara\nJenna\nLia\nMadeleine\nReagan\nTrinity\nAlana\nAlivia\nCallie\nChelsea\nElise\nGenesis\nIsabel\nIzabella\nKimberly\nLucia\nMaeve\nMariah\nNoelle\nSienna\nTeagan\nVivian\nBridget\nCaitlin\nCasey\nEliana\nGia\nHarper\nJade\nLilly\nAlexandria\nCecilia\nDanielle\nHarmony\nJacqueline\nKiara\nLeila\nLilliana\nPenelope\nPhoebe\nRylee\nAlanna\nAlessandra\nAmy\nAniyah\nCarly\nCassidy\nDakota\nDiana\nEmilia\nErin\nGenevieve\nKarina\nLaila\nLaura\nLeilani\nNina\nNorah\nPiper\nAlexia\nBailey\nCassandra\nDelaney\nEllie\nJennifer\nKayleigh\nKyla\nLiana\nLilah\nLydia\nMichaela\nRebecca\nTatiana\nValeria\nAnnabelle\nBianca\nBriana\nCaitlyn\nDaniella\nDelilah\nEliza\nGiana\nHaley\nJaniyah\nKatie\nKelly\nLena\nMakenzie\nMarissa\nVivienne\nAlaina\nAlison\nAnastasia\nAngela\nAria\nBrynn\nCamilla\nGeorgia\nImani\nIsla\nJosephine\nJuliet\nJuliette\nKara\nKylee\nMallory\nMarley\nMelissa\nSasha\nSelena\nTiana\nAlina\nAna\nAngelica\nAnnalise\nAurora\nCameron\nCamryn\nChristina\nCora\nEden\nHayden\nHope\nJane\nKiley\nMiley\nRose\nAinsley\nAmiyah\nAnnika\nAnya\nAyla\nFrancesca\nGiselle\nHazel\nIris\nIsabela\nIvy\nJayleen\nJulianne\nKendra\nLilyana\nMaggie\nMariana\nNyla\nValerie\nAdelaide\nAnnabel\nAshlyn\nCadence\nCorinne\nDaisy\nDylan\nElle\nEloise\nEmely\nEmerson\nFelicity\nFinley\nGemma\nHanna\nJaida\nJayda\nJayden\nJosie\nKaren\nKaydence\nKiera\nMalia\nMaliyah\nMckenna\nMikaela\nMila\nMiriam\nShelby\nSierra\nSylvia\nTess\nAarna\nAlicia\nAlyson\nAnaya\nArielle\nCali\nCecelia\nGiada\nGreta\nHailee\nHeidi\nHelen\nHolly\nJamie\nJanessa\nJazmin\nKaylie\nLacey\nLara\nLilyanna\nLuna\nMakenna\nMarina\nMicaela\nNylah\nSage\nShayla\nSloane\nTalia\nVeronica\nAdeline\nAdrienne\nAlani\nAmya\nAngie\nAnika\nAnnabella\nAshlynn\nAthena\nAviana\nAyanna\nCiara\nClaudia\nDaphne\nElisabeth\nElsa\nEmery\nEvangeline\nGiovanna\nHayley\nJanae\nJoanna\nKaia\nKailey\nKennedy\nKiana\nKyleigh\nLana\nLeighton\nLeslie\nLina\nMae\nMckenzie\nMiranda\nMonica\nSandra\nSiena\nAbbie\nAddyson\nAleah\nAliana\nAlondra\nAriel\nBrooklynn\nCamille\nChiara\nChristine\nDanna\nDiya\nElisa\nElliana\nEmelia\nGretchen\nGuadalupe\nHadley\nJanelle\nJazmine\nJournee\nKaelyn\nKailyn\nKamryn\nKathleen\nKiran\nLexi\nLondyn\nLuciana\nLucille\nMaci\nMadisyn\nMaiya\nMeghan\nMelody\nMeredith\nNatasha\nNayeli\nNyasia\nPaityn\nParker\nReilly\nRhea\nRosemary\nRyan\nRyann\nSanai\nSariah\nSavanna\nSimone\nTaryn\nTatum\nTeresa\nTiffany\nAanya\nAbby\nAdele\nAlejandra\nAllyson\nAmani\nAnanya\nAnne\nAnnie\nAylin\nBeatrice\nBraelyn\nBrenna\nCampbell\nCarmen\nCeleste\nCheyenne\nColleen\nCrystal\nCynthia\nDaniela\nDesiree\nEmmy\nErica\nEsther\nGwendolyn\nJaylin\nJazlynn\nJazmyn\nJoy\nKarla\nKasey\nKassidy\nKristen\nLea\nLeanna\nLexie\nLilian\nLogan\nLorelei\nLuz\nMadalyn\nMaddison\nPaola\nParis\nPatricia\nPriscilla\nRaven\nRemi\nRia\nRoselyn\nRyleigh\nSaniya\nSaniyah\nSarai\nSawyer\nScarlet\nSerena\nShea\nSkye\nWillow\nZainab\nZariah\nAdalyn\nAdelina\nAisha\nAkira\nAlena\nAlia\nAmara\nAnabelle\nAngel\nAngeline\nAngely\nAnisa\nAniya\nAnneliese\nAriella\nAryanna\nAubree\nBreanna\nBryanna\nCarley\nCarolina\nCelia\nChanel\nChasity\nChassidy\nDahlia\nDeanna\nDelia\nElly\nElyse\nErika\nEshal\nEve\nFatima\nGiulia\nGiulianna\nHaylee\nHeather\nHeaven\nHonesty\nIvana\nJaliyah\nJaniah\nJaniya\nJaylani\nJaylanie\nJazlyn\nJazmarie\nJemma\nJulie\nJustice\nKadence\nKaila\nKassandra\nKaterina\nKaylin\nKenzie\nKimora\nKira\nKrista\nKristina\nLailah\nLaney\nLillyanna\nLylah\nMadilyn\nMagdalena\nMariam\nMelina\nMilani\nNatalee\nNathalia\nNia\nNoemi\nPeighton\nRania\nRayne\nRiya\nSaige\nSamara\nSonia\nTabitha\nTaliyah\nTatianna\nTheresa\nVienna\nWilla\nZahra\nZara\nZoya\nSophia\nIsabella\nOlivia\nEmma\nAva\nMadison\nMia\nEmily\nAbigail\nGianna\nChloe\nElla\nGabriella\nCharlotte\nGrace\nLily\nSofia\nJulia\nSamantha\nAvery\nNatalie\nVictoria\nElizabeth\nBrianna\nLeah\nAlexandra\nAddison\nLillian\nHailey\nAmelia\nMaya\nZoe\nCaroline\nArianna\nRiley\nBrooke\nHannah\nAlyssa\nKatherine\nKayla\nSarah\nAnna\nMolly\nLayla\nAshley\nKaylee\nAlexis\nAubrey\nEvelyn\nSavannah\nTaylor\nAlexa\nAudrey\nClaire\nLucy\nAriana\nHarper\nKylie\nMadelyn\nAaliyah\nFaith\nMadeline\nMakayla\nNevaeh\nStella\nAllison\nMackenzie\nAdriana\nPaige\nAngelina\nNatalia\nSophie\nSydney\nAdrianna\nEva\nKhloe\nBrooklyn\nMorgan\nMya\nNora\nJuliana\nZoey\nJulianna\nLauren\nSerenity\nAutumn\nCamila\nGenesis\nLiliana\nPeyton\nMila\nNicole\nCatherine\nDestiny\nLeila\nReese\nVanessa\nAria\nElena\nJocelyn\nKaitlyn\nKendall\nSadie\nTessa\nBrynn\nGabriela\nGiuliana\nLyla\nCecilia\nClara\nEllie\nJessica\nMargaret\nMaria\nStephanie\nGabrielle\nGenevieve\nJillian\nPiper\nSummer\nAlana\nElise\nGia\nLondon\nMariah\nScarlett\nBella\nCallie\nHazel\nJade\nJosephine\nLaila\nLila\nMaeve\nRebecca\nSienna\nValentina\nAndrea\nAniyah\nCaitlin\nEliana\nJasmine\nJennifer\nJordyn\nMary\nMikayla\nNaomi\nAlice\nAnnabelle\nEvangeline\nFiona\nReagan\nSara\nVeronica\nViolet\nAliyah\nAmaya\nHaley\nHayden\nJenna\nMelanie\nNorah\nBrielle\nCamryn\nDelaney\nEleanor\nIsabel\nPayton\nAdeline\nAmanda\nAmy\nDaniela\nDaniella\nIzabella\nJacqueline\nKate\nKatelyn\nLilly\nLydia\nQuinn\nRachel\nRuby\nSabrina\nSkylar\nAmber\nBianca\nCaitlyn\nEmilia\nErin\nKayleigh\nKeira\nKennedy\nKiara\nRose\nTeagan\nTrinity\nValerie\nBriana\nGiselle\nHadley\nJayla\nJayleen\nJuliet\nKimberly\nMckenzie\nMichelle\nNyla\nRylee\nSierra\nVivian\nAngela\nCassidy\nEmerson\nGeorgia\nKathryn\nLucia\nMadeleine\nMadisyn\nAlexia\nAmiyah\nDiana\nFrancesca\nGiana\nHaylee\nHope\nIsla\nLiana\nLilliana\nNadia\nPenelope\nWillow\nAnika\nAubree\nCameron\nChristina\nDanielle\nHayley\nIsabelle\nJane\nJuliette\nKelsey\nKyla\nLaura\nLilah\nLola\nMakenzie\nMegan\nNia\nTalia\nTiffany\nAlicia\nAlivia\nAurora\nBailey\nDelilah\nEliza\nGiada\nGracie\nHarmony\nIris\nJada\nJaelyn\nKarina\nKylee\nLondyn\nMaggie\nNina\nPhoebe\nViviana\nAbby\nAlaina\nAllyson\nAngel\nAnnie\nAriel\nCassandra\nChelsea\nJanelle\nJaniyah\nJordan\nKaelyn\nKailyn\nKelly\nLeilani\nLia\nMariana\nMiranda\nMyla\nNoelle\nVera\nAlani\nAlanna\nAlison\nArabella\nAshlyn\nCheyenne\nClare\nElle\nGiovanna\nImani\nJayda\nJosie\nKailey\nKara\nLuna\nMallory\nMarina\nMarissa\nMelody\nMichaela\nMiley\nNylah\nSavanna\nSerena\nShayla\nTaryn\nAlessandra\nAlexandria\nAliana\nAna\nAnastasia\nAnaya\nAyla\nBeatrice\nBria\nBridget\nBriella\nBrittany\nCadence\nCora\nEllen\nElyse\nEsther\nFatima\nGwendolyn\nIsabela\nKaylani\nMaci\nMadelynn\nMckenna\nMeadow\nSasha\nSiena\nSimone\nSloane\nTatiana\nValeria\nAdalyn\nAlina\nAlisha\nAllie\nAmalia\nAmelie\nAmya\nAnalise\nAnnalise\nAnne\nCarly\nClaudia\nDaisy\nDylan\nEden\nEmmalyn\nHelena\nJulie\nKamryn\nKaren\nKarla\nKatie\nKaylin\nKendra\nKira\nKyleigh\nLena\nLindsey\nLyric\nMakenna\nMelissa\nMilan\nMilania\nMiriam\nReilly\nSaige\nSaniya\nSarai\nScarlet\nShea\nSkye\nTiana\nZara\nZaria\nAdelaide\nAdelyn\nAditi\nAleksandra\nAlena\nAmari\nAnabella\nAnabelle\nAniya\nAnnabel\nAnnabella\nAnya\nAriella\nArielle\nAryana\nAubrie\nBlake\nBrooklynn\nCarina\nElisa\nEmelia\nEmely\nEmilee\nEmilie\nFinley\nFreya\nGemma\nGiulia\nHeaven\nHelen\nJaida\nJaylah\nJazmin\nJustice\nKasey\nKaydence\nKenzie\nKiera\nKiley\nKimora\nKyra\nLeanna\nLindsay\nLorelei\nLucille\nMaddison\nMadilyn\nMae\nMarley\nNathalie\nParis\nPaulina\nRuth\nRyleigh\nSaanvi\nSage\nSanai\nSaniyah\nSonia\nTatum\nVivienne\nAlayna\nAlessia\nAlondra\nAnanya\nAnnika\nAudrina\nAyanna\nCamille\nCara\nCarolyn\nCecelia\nCelia\nCourtney\nCrystal\nCynthia\nDanna\nDevyn\nDiya\nElianna\nErica\nEve\nEvie\nGwyneth\nHanna\nIvy\nJaelynn\nJanaya\nJaylene\nJaylynn\nKassidy\nKaya\nKayden\nKeyla\nKristen\nLaniyah\nLaurel\nLillie\nLina\nLisa\nLivia\nMaia\nMalia\nMaliyah\nMarisa\nMckayla\nMiah\nMilena\nMira\nNahla\nRaquel\nRebekah\nRenee\nRoselyn\nSamara\nSamaya\nSandra\nSariah\nSelena\nShelby\nSkyler\nAarna\nAbbey\nAbrielle\nAdele\nAinsley\nAlaysia\nAlejandra\nAlia\nAlyson\nAmani\nAmyah\nAnalia\nAngelique\nAviana\nBraelyn\nBreanna\nBrenna\nBryanna\nBryn\nCamilla\nCeleste\nCharlie\nCorinne\nDakota\nDana\nDanika\nDaphne\nDestinee\nElaina\nElina\nElliana\nEloise\nElsie\nEsme\nEvelina\nFernanda\nGloria\nGreta\nHaylie\nHeidi\nHolly\nJaela\nJaliyah\nJamie\nJaniya\nJaslene\nJaziah\nJazlynn\nJazmine\nJohanna\nJulianne\nKailani\nKaleigh\nKali\nKatarina\nKayleen\nKaylynn\nKenya\nKiana\nKrisha\nKristina\nLeslie\nLilia\nLilyana\nLiv\nLogan\nLorelai\nLuciana\nLuisa\nLylah\nMacy\nMadalyn\nMalaysia\nMara\nMaylin\nMeghan\nMeredith\nMikaela\nNatalya\nNayeli\nNellie\nNova\nParker\nPeighton\nPresley\nPriscilla\nRachael\nRebeca\nRegan\nRiya\nRory\nRoxanne\nSarina\nSariyah\nShreya\nSkyla\nSylvie\nTania\nTaraji\nTea\nWhitney\nEmma\nOlivia\nIsabella\nSophia\nAva\nMia\nEmily\nCharlotte\nAbigail\nMadison\nAvery\nElla\nSofia\nGabriella\nJulia\nLily\nGianna\nGrace\nSamantha\nElizabeth\nVictoria\nChloe\nHannah\nAmelia\nZoe\nNatalie\nAlexa\nLeah\nArianna\nLillian\nHailey\nLayla\nAddison\nAubrey\nBrooke\nSarah\nSophie\nRiley\nAnna\nAlexandra\nMadeline\nMaya\nTaylor\nHarper\nMolly\nAaliyah\nBrooklyn\nKaylee\nSavannah\nKayla\nEvelyn\nPeyton\nStella\nAdriana\nAlyssa\nAudrey\nBrianna\nKatherine\nMackenzie\nMakayla\nJuliana\nPaige\nAria\nAshley\nKylie\nZoey\nAllison\nLucy\nScarlett\nAnnabelle\nAutumn\nCaroline\nGenesis\nSkylar\nAriana\nCamila\nNevaeh\nAlexis\nClaire\nMya\nNatalia\nAngelina\nLiliana\nEva\nGiuliana\nNicole\nPayton\nMadelyn\nBella\nEliana\nMorgan\nNora\nReese\nRylee\nAdrianna\nJulianna\nLauren\nLondon\nSerenity\nSydney\nMelanie\nValentina\nEmilia\nFaith\nJasmine\nKaitlyn\nMaria\nTrinity\nCatherine\nGabriela\nIsabel\nQuinn\nSara\nAniyah\nAubree\nBrynn\nIsabelle\nJade\nKhloe\nLila\nNaomi\nViolet\nClara\nDestiny\nIsla\nLyla\nSadie\nFiona\nMariah\nRebecca\nAmaya\nReagan\nTessa\nAlana\nAlice\nAurora\nGabrielle\nGia\nJessica\nJillian\nKeira\nLeila\nMaeve\nMila\nRachel\nVivian\nAmy\nElena\nElise\nHazel\nJordyn\nLydia\nMargaret\nRuby\nEleanor\nJayla\nJocelyn\nKendall\nMary\nMegan\nPhoebe\nAlaina\nBrielle\nCecilia\nCora\nHadley\nIzabella\nJosephine\nLilliana\nLilly\nMichaela\nPiper\nStephanie\nTeagan\nEmerson\nGenevieve\nLaila\nMckenzie\nPenelope\nSabrina\nAlexia\nAlina\nAlivia\nAmanda\nEloise\nErin\nKatelyn\nKiara\nLia\nSummer\nAndrea\nBailey\nDaniela\nEllie\nJuliet\nJuliette\nKennedy\nLilah\nLilyana\nMaggie\nMikayla\nAlessandra\nChelsea\nChristina\nHarmony\nJennifer\nLena\nMakenzie\nNina\nNoelle\nSage\nAliyah\nAyla\nBianca\nBriana\nCaitlin\nCassidy\nDelilah\nEliza\nElle\nEvangeline\nHayden\nMckenna\nMelissa\nNorah\nVeronica\nVivienne\nWillow\nAna\nAnya\nAriel\nAthena\nCamille\nCatalina\nDanielle\nEden\nJane\nKelly\nLeilani\nLiana\nMadeleine\nMiranda\nNia\nRyleigh\nSienna\nTalia\nAlison\nAnika\nAnnabella\nCarly\nEmilie\nFrancesca\nHaley\nIvy\nJada\nJaniyah\nJenna\nJordan\nKimberly\nKylee\nLuciana\nNyla\nSavanna\nSelena\nSierra\nValerie\nAdalyn\nAmber\nAmiyah\nAnabella\nAnaya\nAnnalise\nArya\nCadence\nCallie\nEmely\nErica\nJacqueline\nJamie\nJulie\nKaelyn\nKathryn\nKyleigh\nLucia\nLuna\nMallory\nMichelle\nNadia\nNayeli\nNylah\nRose\nSkye\nTatiana\nVanessa\nAlexandria\nAnne\nAriella\nAshlyn\nBridget\nCarolina\nCourtney\nCrystal\nDaisy\nDaniella\nDelaney\nEmery\nFatima\nGiana\nHanna\nKate\nKatie\nKenzie\nMariam\nMikaela\nMiriam\nVera\nAdeline\nAlani\nAlanna\nAlicia\nAngelica\nBriella\nCamilla\nGracie\nIris\nJaliyah\nKailey\nKaylin\nLara\nLaura\nLondyn\nLouisa\nMadelynn\nMadisyn\nMarley\nMelody\nMilan\nScarlet\nShelby\nSiena\nSkyler\nSloane\nValeria\nZara\nAddyson\nAdelaide\nAdele\nAliya\nAllyson\nAnastasia\nAngela\nArielle\nAubrie\nBria\nBrittany\nCaitlyn\nCali\nCameron\nCassandra\nCaylee\nDakota\nDiana\nElisa\nGemma\nGiada\nHaylee\nImani\nJanelle\nJoanna\nKailyn\nKarina\nKayleigh\nKiera\nLana\nLeyla\nLillianna\nLisa\nLogan\nMariana\nMelany\nPaisley\nRaegan\nRiya\nRylie\nThalia\nTiana\nWhitney\nAinsley\nAnabelle\nBlake\nBrenna\nCataleya\nCharlie\nDahlia\nDylan\nElaina\nElliana\nEmani\nEsther\nEve\nFinley\nGeorgia\nGiavanna\nJohanna\nKaya\nKinley\nLeslie\nLilianna\nLivia\nLylah\nMiah\nMiley\nNatasha\nParis\nRaquel\nRosalie\nRuth\nSasha\nSerena\nViviana\nWilla\nAdelina\nAiyana\nAlia\nAliana\nAlondra\nAmara\nAmelie\nAnanya\nAnnabel\nArabella\nAya\nBeatrice\nBrenda\nBrooklynn\nCara\nCarina\nCecelia\nDanica\nDaphne\nDayana\nEdith\nElsie\nEsmeralda\nFarrah\nGiovanna\nGwyneth\nHana\nHayley\nHeidi\nHolly\nHope\nIliana\nIsabela\nJayda\nJayleen\nJazlyn\nJourney\nKali\nKassandra\nKathleen\nKaylani\nKaylie\nKelsey\nKrystal\nLexi\nLola\nLucille\nMaddison\nMadyson\nMaia\nMakenna\nMarianna\nMarina\nMarissa\nMyla\nPaula\nPhoenix\nReilly\nReina\nRhea\nSaniya\nShannon\nShreya\nTabitha\nTeresa\nTess\nZariah\nAdelyn\nAlisa\nAlisha\nAmia\nAmiah\nAngelique\nAniela\nAniya\nAnjali\nAnnaliese\nApril\nArmani\nAubriana\nAvani\nAverie\nAvni\nAyanna\nBryanna\nCalla\nCampbell\nCamryn\nCelina\nCynthia\nDania\nDanna\nElyse\nFelicity\nGina\nGiselle\nIsis\nJael\nJaida\nJayden\nJaylene\nJazmin\nJazmine\nJessenia\nJoselyn\nJournee\nKamryn\nKaren\nKarla\nKatelynn\nKeyla\nKiley\nKira\nLacey\nLaylah\nLeanna\nLexie\nLianna\nLina\nLindsay\nLizbeth\nLuz\nMadilyn\nMae\nMelina\nMilania\nMyra\nNoa\nNyasia\nOlive\nParker\nRayna\nRebekah\nRegan\nRihanna\nRowan\nShea\nSimone\nSky\nSkyla\nTara\nTenley\nWendy\nZiva\nOlivia\nIsabella\nEmma\nSophia\nAva\nMia\nEmily\nCharlotte\nMadison\nAbigail\nGrace\nElla\nSofia\nAvery\nGabriella\nVictoria\nSamantha\nGianna\nLily\nHannah\nRiley\nAmelia\nAubrey\nElizabeth\nArianna\nJulia\nChloe\nEvelyn\nMaya\nNatalie\nBrianna\nHailey\nMackenzie\nAriana\nZoe\nAddison\nLillian\nAria\nLeah\nSavannah\nHarper\nPenelope\nNora\nLayla\nMadeline\nStella\nAlexandra\nClaire\nBrooklyn\nMolly\nMadelyn\nPeyton\nSarah\nSkylar\nSophie\nAllison\nAaliyah\nCaroline\nKaylee\nAnna\nZoey\nLucy\nMorgan\nBrooke\nGiuliana\nKayla\nKylie\nMila\nAudrey\nAnnabelle\nEleanor\nGenesis\nJuliana\nKatherine\nSadie\nScarlett\nAdriana\nAlexa\nTaylor\nLiliana\nIsabelle\nKhloe\nSydney\nAlyssa\nBella\nQuinn\nVivian\nLauren\nLondon\nPaige\nAlexis\nAngelina\nViolet\nJulianna\nNatalia\nAshley\nAutumn\nCatherine\nElena\nEliana\nGabriela\nSerenity\nGia\nEllie\nFaith\nFiona\nMakayla\nNevaeh\nJade\nJasmine\nKennedy\nNicole\nSara\nAdrianna\nBianca\nEva\nMya\nValentina\nCora\nEmilia\nLilliana\nMary\nMichelle\nPiper\nReagan\nBrynn\nCamila\nIzabella\nNaomi\nAubree\nBailey\nBrielle\nAlice\nKaitlyn\nLaila\nLila\nMargaret\nMariah\nPayton\nTessa\nAliyah\nAmy\nClara\nEloise\nKatelyn\nKendall\nLeila\nMaeve\nTeagan\nWillow\nGabrielle\nIsabel\nIsla\nLuna\nLydia\nSummer\nElise\nJocelyn\nLilah\nLilly\nMaria\nNorah\nRose\nStephanie\nAlessandra\nAndrea\nCallie\nDelilah\nEliza\nHayden\nJillian\nJuliette\nKeira\nLaura\nLucia\nMckenna\nReese\nRuby\nRylee\nTalia\nAmber\nCameron\nCassidy\nErin\nHadley\nJosephine\nJuliet\nKate\nKenzie\nMichaela\nMikayla\nNoelle\nSienna\nValerie\nVivienne\nAlana\nAlanna\nAlicia\nAlina\nArielle\nBrooklynn\nCaitlin\nCecelia\nEmerson\nFrancesca\nJayla\nJordyn\nKimberly\nLyla\nMelanie\nNadia\nNyla\nAlexia\nAnastasia\nAniyah\nArabella\nAshlyn\nDaniela\nDanielle\nDestiny\nDylan\nGeorgia\nHope\nIris\nIvy\nJada\nJane\nJessica\nMegan\nParis\nAlexandria\nAnnabella\nAriel\nAurora\nCamilla\nCatalina\nCecilia\nEmilie\nGiana\nHanna\nJacqueline\nJenna\nKendra\nLeia\nLeilani\nLola\nMadeleine\nMikaela\nRachel\nSabrina\nSierra\nTrinity\nVanessa\nAlivia\nAmiyah\nArya\nAthena\nHarmony\nJordan\nKelsey\nLia\nMelody\nNina\nScarlet\nSelena\nSerena\nVeronica\nAlaina\nAlison\nAmanda\nAriella\nAyla\nBriana\nBridget\nCali\nCasey\nChristina\nDiana\nEden\nHaley\nJulissa\nKailyn\nKarina\nKiara\nKylee\nLiana\nLondyn\nMakenzie\nMallory\nMelissa\nPhoebe\nRebecca\nRyleigh\nSarai\nAinsley\nAmaya\nAna\nAviana\nBlake\nBriella\nCaitlyn\nCarly\nCourtney\nElsa\nFinley\nGemma\nGenevieve\nIsabela\nJaniyah\nKathryn\nLilyana\nLindsay\nLuciana\nMaci\nMiranda\nNylah\nSkye\nAdelina\nAlayna\nAngela\nBrittany\nCamryn\nChelsea\nEvangeline\nGiavanna\nHazel\nHolly\nJayda\nJennifer\nKailey\nKyla\nLena\nMarina\nMarissa\nMckenzie\nMilania\nMiriam\nOlive\nSimone\nSkyler\nSloane\nVera\nAlyson\nAmalia\nAmya\nAnika\nAnya\nAryanna\nCamille\nCharlie\nDaniella\nDanna\nDelaney\nElle\nElsie\nEsmeralda\nEve\nIliana\nJaniah\nJoanna\nJosie\nKamryn\nKaya\nKayleigh\nKyleigh\nLeanna\nMarley\nMilan\nNatasha\nRhea\nRosalie\nSage\nSasha\nShea\nShelby\nSkyla\nTatum\nValeria\nViviana\nAdele\nAmani\nAnnalise\nAnnie\nAubrie\nAya\nBeatrice\nBraelyn\nCadence\nCara\nCarolina\nChristine\nCrystal\nDaisy\nDakota\nEmely\nErika\nFarrah\nFatima\nGiovanna\nGiselle\nImani\nJaelyn\nJaniya\nJemma\nJulianne\nJune\nKaelyn\nKaia\nKathleen\nKaydence\nKaylin\nKyra\nLacey\nLana\nLexi\nLivia\nLucille\nLylah\nLyric\nMae\nMariana\nMarie\nMeghan\nMilena\nMiley\nNia\nParker\nRuth\nSaige\nThea\nTiffany\nAadhya\nAdalyn\nAdeline\nAleah\nAllie\nAmelie\nAnabelle\nAnn\nAntonia\nApril\nAryana\nAshlynn\nAverie\nCailyn\nCarter\nCassandra\nCaylee\nColette\nCristina\nDaphne\nElaina\nElisa\nElisabeth\nElyse\nEstelle\nFelicity\nGiulia\nGloria\nGracie\nGwendolyn\nHarlow\nIsha\nItzel\nJazlyn\nJazmin\nJournee\nJoy\nJulie\nKataleya\nKaylie\nKeyla\nKinsley\nLeilah\nLeslie\nLogan\nMadyson\nMaggie\nMalia\nMara\nMatilda\nMckayla\nMeadow\nMyla\nNayeli\nPaisley\nRaquel\nReina\nRowan\nRylie\nSaanvi\nSamara\nSherlyn\nShreya\nSonia\nTabitha\nTatiana\nTrisha\nVirginia\nAbby\nAdelaide\nAdelyn\nAlani\nAlanis\nAliana\nAlisha\nAmiya\nAnalia\nAnalise\nAnanya\nAngelica\nAngelie\nAngelique\nAngie\nAniya\nAnjali\nAntonella\nAvani\nAylin\nAzalea\nBryanna\nCampbell\nCarina\nCarla\nCarmella\nCarmen\nCarrie\nCeleste\nCelia\nChanel\nClaudia\nDelia\nElliana\nEmery\nEmmy\nEsther\nHallie\nHaylee\nHayley\nHeidi\nJaelynn\nJamie\nJana\nJayde\nJaylah\nJaylani\nJuniper\nKali\nKara\nKassidy\nKatalina\nKristen\nLea\nLianna\nMacy\nMaddison\nMadisyn\nMagnolia\nMaia\nMaliyah\nMariam\nMarjorie\nMina\nMyra\nNola\nNyasia\nPaloma\nPearl\nRaegan\nRaelyn\nSavanna\nSiena\nSkylah\nTenley\nTiana\nWilla\nWinter\nWynter\nYara\nZainab\nZara\nZoie\nZuri\nOlivia\nEmma\nSophia\nIsabella\nAva\nMia\nCharlotte\nEmily\nAbigail\nMadison\nSofia\nAvery\nGabriella\nAmelia\nElla\nSamantha\nGrace\nChloe\nAria\nHarper\nVictoria\nArianna\nHannah\nMackenzie\nGianna\nLily\nJulia\nHailey\nSkylar\nZoe\nElizabeth\nBrooklyn\nNatalie\nAubrey\nScarlett\nAnna\nLeah\nMaya\nLayla\nLillian\nAlexandra\nEvelyn\nLiliana\nMila\nRiley\nAddison\nZoey\nCaroline\nAriana\nNora\nClaire\nPeyton\nSavannah\nAudrey\nAutumn\nPenelope\nAaliyah\nMadelyn\nSadie\nBrianna\nSarah\nAlexa\nMadeline\nViolet\nFaith\nKylie\nStella\nAshley\nJuliana\nKaylee\nAnnabelle\nEmilia\nLucy\nIsabelle\nSydney\nAllison\nClara\nEleanor\nSophie\nTaylor\nBrooke\nValentina\nAdriana\nAlice\nBella\nCamila\nFiona\nGenesis\nMolly\nPaige\nAubree\nCora\nKatherine\nAlexis\nNaomi\nAlyssa\nEva\nKeira\nNatalia\nTessa\nLyla\nMya\nPiper\nEllie\nIsabel\nLila\nMargaret\nQuinn\nRuby\nSummer\nVivian\nAngelina\nGiuliana\nJulianna\nKennedy\nLondon\nMorgan\nAngela\nAurora\nBrielle\nCecilia\nEliana\nElise\nGabriela\nHazel\nKhloe\nLauren\nPayton\nElena\nGenevieve\nLucia\nTeagan\nCallie\nKendall\nMakayla\nRose\nSerenity\nAmy\nBrynn\nGabrielle\nIsla\nJasmine\nMckenzie\nNicole\nAdrianna\nArabella\nIvy\nJosephine\nLydia\nMadeleine\nMaeve\nMariah\nMary\nNyla\nRebecca\nReese\nSara\nTrinity\nJuliette\nKayla\nLia\nNevaeh\nTalia\nAmaya\nEmerson\nHadley\nJade\nKelsey\nAlaina\nBailey\nCassidy\nChristina\nElaina\nHarmony\nHope\nJocelyn\nJordyn\nJuliet\nKaitlyn\nLaila\nLilliana\nLilly\nLondyn\nMaria\nNina\nRylee\nAndrea\nDestiny\nEloise\nJordan\nRachel\nCharlie\nHayden\nJenna\nKayleigh\nAlexandria\nAlison\nAliyah\nCatherine\nDelaney\nDelilah\nLeila\nMelanie\nMikayla\nNova\nAlana\nArielle\nChelsea\nEliza\nErin\nFrancesca\nGeorgia\nHaley\nLuna\nMalia\nNorah\nVivienne\nAna\nAnastasia\nAniyah\nAnnabella\nBriana\nBrooklynn\nDaniella\nEden\nEverly\nJada\nLexi\nMarley\nReagan\nSage\nVanessa\nAdeline\nAdelyn\nAlina\nCaitlin\nCarolina\nCatalina\nEvangeline\nJayla\nKimberly\nKinsley\nLaura\nLiana\nMelody\nSienna\nSkyler\nStephanie\nAlessia\nAlexia\nAlivia\nAriella\nBianca\nDakota\nEmery\nEmilie\nEsther\nFinley\nGemma\nJacqueline\nJillian\nKarina\nKate\nLana\nLeilani\nLuciana\nMaggie\nMakenzie\nMckenna\nMelissa\nMichelle\nNayeli\nNylah\nRosalie\nAmani\nAmber\nAmina\nAmira\nAnya\nCadence\nCaitlyn\nCataleya\nDaniela\nEmely\nEve\nGia\nGiselle\nGracie\nJennifer\nJessica\nKatie\nKaya\nKelly\nLena\nLilianna\nLucille\nSerena\nValerie\nWillow\nAda\nAdelaide\nAlanna\nAlayna\nAllie\nAmanda\nAriel\nArya\nAshlyn\nAthena\nBridget\nBriella\nBrittany\nCali\nCheyenne\nDaisy\nElisabeth\nFreya\nHayley\nKathryn\nLola\nMaia\nNia\nOlive\nParker\nPhoebe\nRowan\nSabrina\nSavanna\nSkyla\nTatiana\nAlly\nAnabella\nAnaya\nAyla\nBryanna\nCamille\nCamryn\nColette\nCorinne\nHeidi\nHelena\nIzabella\nJaliyah\nJane\nJaniyah\nKali\nKatelyn\nKaylin\nKylee\nMadelynn\nMargot\nMichaela\nMilena\nNeriah\nNoelle\nPaisley\nRyleigh\nScarlet\nShelby\nSiena\nSloane\nVeronica\nAinsley\nAlessandra\nAmia\nAnnabel\nAryanna\nBeatrice\nDeborah\nEllery\nFelicity\nGiana\nIris\nKailyn\nKenzie\nKyla\nKyleigh\nLacey\nMaisie\nMaryam\nMikaela\nMiriam\nParis\nSariah\nSasha\nSelena\nTiana\nTiffany\nWilla\nAdalynn\nAlena\nAmiyah\nAngelica\nAnika\nAylin\nBlake\nCameron\nCecelia\nDahlia\nDalia\nDevyn\nElle\nElsa\nFatima\nFaye\nGwendolyn\nHailee\nHalo\nHaylee\nHelen\nImani\nJayda\nJoanna\nKamryn\nKathleen\nKira\nLainey\nLilah\nLilian\nMaci\nMadisyn\nMadyson\nMae\nMakenna\nMeadow\nNadia\nPresley\nRylie\nSaige\nShirley\nSierra\nSylvia\nTheresa\nValeria\nAadhya\nAadya\nAdalyn\nAdelina\nAhana\nAisha\nAlani\nAleena\nAlejandra\nAmalia\nAmelie\nAngel\nAngelique\nAnne\nAnnie\nAntonella\nApril\nAubrie\nBraelyn\nBrenna\nBria\nCamilla\nCarly\nCarmen\nCasey\nCelia\nCherish\nChiara\nDanielle\nDaphne\nElliana\nEmmalyn\nHallie\nHarley\nHeaven\nJayleen\nJosie\nJune\nKaelyn\nKailani\nKara\nKaren\nKiara\nLara\nLeslie\nLisa\nLivia\nLorelei\nLouisa\nMacy\nMariana\nMegan\nMilania\nMyla\nNatasha\nPhoenix\nPriscilla\nRuth\nSaanvi\nSarai\nSimone\nSkye\nThalia\nViviana\nZariah\nAanya\nAlia\nAlisha\nAlissa\nAliya\nAmiya\nAnalia\nAngely\nAnnalise\nAnnika\nArmani\nAudrina\nAverie\nAvielle\nAyva\nAzalea\nBethany\nCailyn\nCassandra\nCeline\nCharlene\nClare\nDallas\nDenise\nDorothy\nEleni\nElisa\nElodie\nElsie\nEverleigh\nFlora\nGloria\nHolly\nIngrid\nIvory\nJaida\nJaleah\nJanelle\nJaylah\nJaylynn\nJazlyn\nJazmin\nJulie\nJulissa\nJuniper\nKataleya\nKaydence\nKaylani\nKendal\nKristen\nKristina\nLane\nLaurel\nLeela\nLilith\nLogan\nLyric\nMalak\nMarjorie\nMatilda\nMeera\nMeghan\nMicaela\nMira\nMyra\nNatalya\nNoemi\nNyasia\nPauline\nRaelyn\nRaquel\nSahana\nSanai\nSaniyah\nSanvi\nShannon\nSky\nSylvie\nTaliyah\nTatum\nVera\nWhitney\nXimena\nYaretzi\nZara\nJohn\nJoseph\nWilliam\nCharles\nEdward\nFrank\nGeorge\nJames\nAnthony\nWalter\nThomas\nFrancis\nMichael\nHarold\nRobert\nStanley\nLouis\nAlbert\nRaymond\nAndrew\nPeter\nHarry\nHenry\nPaul\nRichard\nKenneth\nRalph\nArthur\nDavid\nAlfred\nSamuel\nErnest\nFrederick\nStephen\nEdmund\nFred\nHoward\nDaniel\nLeonard\nAlexander\nBenjamin\nBernard\nHerbert\nHerman\nMorris\nNorman\nSalvatore\nVincent\nDominick\nDonald\nJack\nLawrence\nNicholas\nOliver\nPhilip\nSteve\nTheodore\nEugene\nLeo\nLester\nMatthew\nPatrick\nSam\nSidney\nJohn\nJoseph\nWilliam\nGeorge\nEdward\nFrank\nJames\nCharles\nAnthony\nThomas\nAlbert\nRobert\nWalter\nHenry\nLouis\nStanley\nFrancis\nHarold\nRaymond\nMichael\nAndrew\nArthur\nHarry\nPaul\nPeter\nFrederick\nRichard\nStephen\nRalph\nVincent\nDavid\nErnest\nAlfred\nBenjamin\nPhilip\nSalvatore\nSamuel\nHoward\nKenneth\nCarl\nFred\nBernard\nClarence\nClifford\nDaniel\nNicholas\nDonald\nEdmund\nHerman\nLeo\nLawrence\nAlexander\nEverett\nHerbert\nRussell\nMilton\nTheodore\nEdwin\nIrving\nLeonard\nNorman\nJulius\nSidney\nArnold\nChester\nDominic\nEugene\nMaurice\nVictor\nAbraham\nAngelo\nLeon\nMorris\nSam\nDominick\nEarl\nElmer\nEmil\nFranklin\nJacob\nLeroy\nAdam\nAlex\nAlphonse\nAntonio\nDouglas\nFelix\nFloyd\nHorace\nHubert\nJack\nLester\nLewis\nMarcus\nMario\nMatthew\nNathan\nWesley\nWillard\nWinthrop\nJohn\nJoseph\nWilliam\nGeorge\nEdward\nFrank\nJames\nCharles\nRobert\nArthur\nAnthony\nWalter\nHenry\nLouis\nRaymond\nAlbert\nFrancis\nThomas\nStanley\nMichael\nPeter\nHarry\nHarold\nFrederick\nPaul\nAndrew\nStephen\nRichard\nSamuel\nAlfred\nDavid\nErnest\nRalph\nVincent\nDonald\nKenneth\nFred\nHoward\nPhilip\nEugene\nAlexander\nDaniel\nCarl\nHerbert\nBenjamin\nMilton\nMorris\nTheodore\nBernard\nLawrence\nLeo\nSalvatore\nJack\nAngelo\nEverett\nLeonard\nClarence\nRussell\nChester\nLeon\nAbraham\nEarl\nEdwin\nJulius\nLester\nPatrick\nVictor\nClifford\nDominic\nIrving\nNicholas\nPasquale\nDominick\nMartin\nMaurice\nEdmund\nEmil\nJacob\nMatthew\nNorman\nRocco\nLeroy\nLeslie\nNathan\nPatsy\nSteve\nAlex\nGerald\nRoger\nAlphonse\nLewis\nMario\nMax\nRoy\nWilfred\nAdam\nElmer\nGordon\nHerman\nWallace\nAllan\nCarlton\nMyron\nSidney\nWesley\nAdolph\nDouglas\nEarle\nEdgar\nFranklin\nGilbert\nJerry\nMark\nMarshall\nMeyer\nOtto\nReginald\nSam\nSebastian\nSteven\nWilbur\nAlvin\nArmand\nArnold\nAustin\nBurton\nCarmine\nChristopher\nDwight\nFelix\nFloyd\nNelson\nRoland\nTimothy\nTony\nWillard\nJohn\nJoseph\nWilliam\nGeorge\nEdward\nFrank\nJames\nCharles\nRobert\nAnthony\nLouis\nThomas\nMichael\nWalter\nStanley\nArthur\nHenry\nRaymond\nAlbert\nHarold\nPaul\nFrancis\nFrederick\nPeter\nRalph\nAlfred\nStephen\nSamuel\nRichard\nAndrew\nDaniel\nHarry\nHoward\nVincent\nFred\nCarl\nDonald\nPhilip\nHerbert\nDavid\nErnest\nIrving\nNorman\nKenneth\nChester\nNicholas\nAlexander\nBenjamin\nEugene\nLawrence\nLeonard\nTheodore\nBernard\nClarence\nEdmund\nLeo\nJulius\nSalvatore\nRussell\nAngelo\nJack\nVictor\nMorris\nEarl\nEdwin\nMartin\nMilton\nArnold\nClifford\nHerman\nLester\nRocco\nSidney\nAbraham\nDominic\nDominick\nFelix\nRoger\nElmer\nMario\nMatthew\nPasquale\nTony\nWarren\nAlex\nAlphonse\nCarmine\nEverett\nGerald\nLewis\nOtto\nSebastian\nBurton\nLeon\nRoland\nEmil\nOscar\nRoy\nSteve\nWilbur\nAllen\nGordon\nJacob\nNathan\nPatrick\nPatsy\nAdolph\nAugust\nCarmen\nEdgar\nJerome\nJerry\nKarl\nMaurice\nMax\nWillard\nAllan\nBen\nGuido\nHarvey\nLeroy\nLloyd\nRay\nRonald\nAlvin\nDomenic\nFloyd\nGilbert\nGustave\nHugo\nLaurence\nManuel\nNelson\nOliver\nPhillip\nRudolph\nSam\nSteven\nWallace\nAustin\nChristopher\nErwin\nFranklin\nFrederic\nHubert\nHyman\nOrlando\nWesley\nWillis\nWoodrow\nJohn\nJoseph\nWilliam\nEdward\nFrank\nGeorge\nJames\nCharles\nRobert\nWalter\nMichael\nAnthony\nStanley\nThomas\nLouis\nAlbert\nHenry\nArthur\nRaymond\nFrancis\nPaul\nPeter\nHarold\nRichard\nAlfred\nFrederick\nHarry\nAndrew\nStephen\nHoward\nKenneth\nRalph\nVincent\nFred\nNicholas\nCarl\nTheodore\nDonald\nSamuel\nAlexander\nDavid\nSalvatore\nErnest\nRussell\nDaniel\nHerbert\nPhilip\nLawrence\nLeo\nEugene\nBenjamin\nVictor\nBernard\nChester\nLeonard\nEdwin\nAngelo\nClifford\nClarence\nJulius\nNorman\nDominic\nEdmund\nIrving\nMilton\nDominick\nHerman\nPasquale\nMaurice\nMorris\nLeon\nSidney\nEmil\nEarl\nElmer\nSteve\nWarren\nLester\nMartin\nPatrick\nLewis\nArnold\nJack\nOscar\nAbraham\nAlex\nGordon\nMax\nOtto\nWilbur\nAlphonse\nRudolph\nMatthew\nNathan\nRocco\nRoger\nAdam\nAldo\nAugust\nCarmine\nEverett\nLeroy\nMario\nBurton\nSam\nSebastian\nTony\nWilfred\nAdolph\nBruno\nCarmen\nFranklin\nGerard\nGilbert\nJacob\nJerry\nLeslie\nLloyd\nPatsy\nArmand\nEarle\nEdgar\nFrederic\nGerald\nKarl\nMorton\nNelson\nSydney\nVito\nWallace\nAllen\nAntonio\nFelix\nGuido\nMyron\nOliver\nRoy\nAlton\nAlvin\nClinton\nDouglas\nEmanuel\nEric\nFredrick\nHarvey\nJoe\nLionel\nSteven\nStuart\nWillard\nAmerico\nCornelius\nDwight\nErwin\nGabriel\nHomer\nHugh\nJoesph\nLucian\nMalcolm\nMelvin\nPhillip\nRoland\nRonald\nSilvio\nSimon\nWesley\nAaron\nBruce\nCarlo\nCarlton\nCasimir\nClayton\nEllsworth\nEmilio\nFerdinand\nFloyd\nGaetano\nGus\nIra\nIsrael\nJesse\nLaurence\nMarshall\nMortimer\nNeil\nReginald\nSigmund\nTimothy\nJohn\nJoseph\nWilliam\nEdward\nFrank\nGeorge\nCharles\nJames\nRobert\nAnthony\nWalter\nThomas\nMichael\nLouis\nStanley\nAlbert\nRaymond\nHenry\nArthur\nPeter\nFrancis\nHarold\nPaul\nHarry\nFrederick\nRichard\nAlfred\nAndrew\nDonald\nVincent\nErnest\nCarl\nHoward\nKenneth\nNicholas\nSalvatore\nSamuel\nDavid\nRalph\nStephen\nRussell\nLawrence\nLeonard\nPhilip\nFred\nDaniel\nTheodore\nVictor\nNorman\nAlexander\nEugene\nDominic\nEdwin\nLeo\nHerbert\nBernard\nAngelo\nBenjamin\nMilton\nEdmund\nClarence\nJack\nEarl\nLeon\nMorris\nPasquale\nChester\nIrving\nJulius\nDominick\nHerman\nLester\nMartin\nMaurice\nSidney\nClifford\nGerald\nTony\nAlex\nElmer\nPatrick\nRoger\nRoland\nAlphonse\nEverett\nGordon\nLeroy\nJacob\nMax\nOscar\nRocco\nRonald\nRudolph\nWilbur\nEmil\nLewis\nMatthew\nSteve\nAdolph\nPatsy\nRoy\nSebastian\nWarren\nWilfred\nDouglas\nEdgar\nGilbert\nNathan\nSteven\nAllen\nArnold\nCarmen\nJerry\nLloyd\nMario\nOtto\nSam\nWallace\nWillard\nAntonio\nBruno\nEdmond\nFelix\nRosario\nAbraham\nAdam\nClinton\nFranklin\nFredrick\nKarl\nLeslie\nOliver\nWesley\nAllan\nAlvin\nAugust\nHyman\nMalcolm\nAlan\nBennie\nBurton\nChristopher\nElwood\nGaetano\nGustave\nHorace\nHugh\nMarvin\nMitchell\nStuart\nArmand\nCarleton\nErwin\nGino\nHarvey\nHubert\nJoe\nJulian\nMicheal\nTimothy\nWillis\nCarlton\nCarmine\nCyril\nEllsworth\nFloyd\nGerard\nGuy\nIsadore\nLucian\nMyron\nNick\nNickolas\nOrlando\nOtis\nPerry\nPhillip\nRay\nSigmund\nSilvio\nSydney\nVito\nWard\nAldo\nArchie\nCarlo\nCecil\nClayton\nClyde\nEmerson\nEric\nFranklyn\nFredric\nGregory\nGus\nJerome\nLucien\nManuel\nMorton\nSherwood\nThaddeus\nJohn\nJoseph\nWilliam\nEdward\nFrank\nGeorge\nRobert\nJames\nCharles\nAnthony\nMichael\nWalter\nStanley\nHenry\nLouis\nThomas\nFrancis\nRaymond\nAlbert\nArthur\nRichard\nPeter\nHarry\nPaul\nAndrew\nStephen\nFrederick\nRalph\nVincent\nHarold\nDonald\nAlfred\nErnest\nDaniel\nCarl\nNicholas\nFred\nDavid\nKenneth\nHoward\nSamuel\nPhilip\nRussell\nBernard\nNorman\nBenjamin\nTheodore\nAlexander\nEugene\nHerbert\nSalvatore\nLawrence\nChester\nVictor\nLeo\nLeonard\nIrving\nAngelo\nDominic\nJulius\nEdwin\nMilton\nMartin\nClifford\nEdmund\nPasquale\nEverett\nAlex\nLeon\nClarence\nMatthew\nSidney\nMorris\nElmer\nRocco\nHerman\nJack\nDominick\nEarl\nGordon\nLester\nRudolph\nFelix\nPatsy\nArnold\nSteve\nEmil\nSam\nEdgar\nLewis\nMaurice\nBurton\nLloyd\nRoger\nAbraham\nClayton\nGerald\nGerard\nGilbert\nJacob\nTony\nWarren\nAdolph\nCarmine\nDomenic\nMario\nNathan\nPatrick\nAllen\nArmand\nBruno\nJoe\nMalcolm\nMelvin\nOscar\nWilfred\nAntonio\nFranklin\nJerry\nLaurence\nSebastian\nSteven\nAdam\nMyron\nRoland\nWilbur\nCarmen\nDouglas\nErwin\nHarvey\nMax\nMicheal\nMike\nMurray\nThaddeus\nWillard\nAaron\nAldo\nAlphonse\nAlvin\nBenedict\nChristopher\nEdmond\nLeroy\nLucian\nManuel\nMarvin\nOliver\nStuart\nAllan\nAugust\nBenny\nClement\nCornelius\nGabriel\nGustave\nLeslie\nOtto\nWesley\nEarle\nElliot\nGuy\nHubert\nJerome\nJulian\nPhillip\nTimothy\nVernon\nVito\nWallace\nAlan\nCarlo\nCyril\nEllsworth\nEmanuel\nFerdinand\nFloyd\nFrederic\nHomer\nHugh\nHugo\nKarl\nLee\nMorton\nNewton\nNick\nRoy\nSeymour\nSilvio\nSydney\nAlden\nAloysius\nAlton\nAustin\nCarleton\nCarlton\nCasimer\nClinton\nClyde\nDante\nElwood\nEnrico\nEric\nFredrick\nGaetano\nGerhardt\nHorace\nHyman\nIsadore\nJeremiah\nLionel\nMarco\nNelson\nOrlando\nOrville\nRomeo\nRonald\nSanto\nSaul\nSpencer\nVirgil\nJohn\nJoseph\nWilliam\nEdward\nGeorge\nRobert\nFrank\nCharles\nJames\nWalter\nAnthony\nMichael\nStanley\nLouis\nHenry\nThomas\nFrancis\nPaul\nPeter\nRaymond\nAlbert\nArthur\nHarold\nRichard\nHarry\nDonald\nFrederick\nStephen\nErnest\nAlexander\nDavid\nVincent\nAndrew\nAlfred\nNicholas\nRalph\nRussell\nTheodore\nLawrence\nDaniel\nHoward\nKenneth\nLeonard\nPhilip\nSalvatore\nSamuel\nCarl\nFred\nBernard\nHerbert\nChester\nLeo\nNorman\nEugene\nIrving\nEdwin\nJack\nBenjamin\nClifford\nVictor\nEarl\nClarence\nDominic\nAngelo\nSteve\nEdmund\nJulius\nMilton\nAlex\nMartin\nMaurice\nDominick\nElmer\nGerald\nRoger\nEmil\nLeon\nEverett\nHerman\nMario\nSidney\nLester\nRocco\nPasquale\nAlphonse\nFranklin\nArnold\nWarren\nFelix\nMatthew\nPatrick\nRoland\nMorris\nPatsy\nSteven\nAllen\nLewis\nSebastian\nWesley\nGordon\nJacob\nLeroy\nDouglas\nMax\nNathan\nAdam\nJerome\nRonald\nRoy\nRudolph\nAbraham\nAdolph\nSam\nTony\nArmand\nVito\nClayton\nGilbert\nHarvey\nLloyd\nMarvin\nMicheal\nErwin\nLeslie\nMyron\nOliver\nStuart\nWilfred\nGerard\nLaurence\nThaddeus\nAllan\nAlvin\nAugust\nBruno\nBurton\nCarmine\nDomenic\nEarle\nMorton\nRosario\nWallace\nWilson\nAaron\nAntonio\nCarmen\nClinton\nEdmond\nFloyd\nFrederic\nHyman\nJoe\nMarshall\nOtto\nPhillip\nWilbur\nBennie\nCarlton\nCyril\nEdgar\nEllsworth\nHugh\nJeremiah\nJesse\nNelson\nSanto\nVernon\nWoodrow\nBenedict\nCalvin\nConrad\nCurtis\nElwood\nFerdinand\nGino\nGustave\nIsadore\nJerry\nKarl\nMalcolm\nMelvin\nMitchell\nNick\nOscar\nSaul\nSigmund\nAlan\nAlbin\nAlden\nAustin\nBruce\nChristopher\nClement\nDino\nDwight\nEmanuel\nEmilio\nFredrick\nGabriel\nGaetano\nHorace\nHubert\nHugo\nIra\nJulian\nLucian\nLucien\nManuel\nMorgan\nOrlando\nOrrin\nRomeo\nSherman\nSimon\nSolomon\nTeddy\nWillard\nZigmund\nAlfonse\nAlton\nAugustine\nCarlo\nCarmelo\nCasimir\nClark\nDomenick\nEric\nGennaro\nHomer\nIrvin\nOwen\nPerry\nRene\nSilvio\nWard\nJohn\nJoseph\nWilliam\nEdward\nRobert\nGeorge\nFrank\nCharles\nJames\nWalter\nStanley\nAnthony\nThomas\nMichael\nArthur\nHenry\nRaymond\nAlbert\nRichard\nFrancis\nLouis\nPeter\nPaul\nHarold\nDonald\nHarry\nAlfred\nErnest\nVincent\nAndrew\nRalph\nHoward\nFrederick\nKenneth\nLeonard\nPhilip\nDavid\nCarl\nNicholas\nBernard\nAlexander\nFred\nTheodore\nStephen\nLawrence\nVictor\nDaniel\nRussell\nSamuel\nSalvatore\nLeo\nChester\nHerbert\nAngelo\nNorman\nEdwin\nIrving\nEugene\nClifford\nBenjamin\nDominic\nJack\nEarl\nEdmund\nMartin\nMorris\nMilton\nMaurice\nMatthew\nRoger\nLeon\nClarence\nGerald\nJulius\nSteve\nHerman\nTony\nDominick\nGordon\nSidney\nArnold\nPatsy\nArmand\nDouglas\nElmer\nAlex\nAlphonse\nEverett\nPasquale\nRoy\nWarren\nJacob\nMario\nLester\nAdolph\nEmil\nPatrick\nAbraham\nFranklin\nLloyd\nSebastian\nAllen\nBruno\nCarmen\nRoland\nWilbur\nLeroy\nLewis\nRocco\nSteven\nWallace\nBurton\nFelix\nHugh\nJoe\nCarmine\nClayton\nNathan\nNickolas\nVito\nWesley\nEdgar\nGilbert\nHarvey\nHorace\nLeslie\nMax\nVernon\nWillard\nAdam\nAntonio\nMarshall\nMarvin\nNick\nRudolph\nSam\nThaddeus\nWilfred\nAaron\nAlvin\nCornelius\nMalcolm\nMyron\nNelson\nOscar\nAlton\nEarle\nEric\nGerard\nJerome\nJulian\nKarl\nLionel\nLucien\nMorton\nSeymour\nTeddy\nWoodrow\nBenedict\nConrad\nDwight\nFredrick\nMike\nRosario\nAldo\nCasimer\nChristopher\nClement\nErwin\nFloyd\nGregory\nGus\nJerry\nMitchell\nOtto\nPhillip\nReginald\nSaul\nAllan\nCarlo\nCasimir\nCyril\nDennis\nHomer\nHyman\nLaurence\nMicheal\nRene\nRonald\nSigmund\nSilvio\nZigmund\nAlan\nAugust\nCarleton\nCarlton\nDonato\nEdmond\nEllsworth\nGabriel\nHarrison\nHubert\nJean\nJesse\nLeopold\nManuel\nMelvin\nMeyer\nOliver\nOmer\nTimothy\nWinthrop\nAlbin\nAlec\nAlfonso\nAustin\nBennie\nBenny\nCarmelo\nClifton\nClinton\nClyde\nElliot\nElwood\nEmanuel\nFerdinand\nGaetano\nGennaro\nGuido\nGuy\nLee\nMark\nMiles\nMurray\nNorbert\nOrlando\nSolomon\nStanislaus\nStuart\nSylvester\nValentine\nWillis\nWilson\nZygmunt\nJohn\nJoseph\nWilliam\nRobert\nEdward\nGeorge\nFrank\nJames\nCharles\nWalter\nAnthony\nMichael\nThomas\nAlbert\nRichard\nHenry\nLouis\nStanley\nRaymond\nArthur\nHarold\nFrancis\nPeter\nDonald\nPaul\nHarry\nRalph\nAndrew\nAlfred\nErnest\nDavid\nHoward\nTheodore\nVincent\nNicholas\nKenneth\nFrederick\nLeonard\nFred\nHerbert\nSalvatore\nStephen\nLawrence\nVictor\nRussell\nEdwin\nChester\nAlexander\nDaniel\nNorman\nPhilip\nBernard\nLeo\nEugene\nCarl\nEarl\nEdmund\nSamuel\nAngelo\nIrving\nJack\nClarence\nMilton\nBenjamin\nDominic\nClifford\nMartin\nLeon\nMorris\nElmer\nJulius\nDominick\nMatthew\nSidney\nEmil\nLester\nTony\nDouglas\nHerman\nWarren\nAlex\nAlphonse\nAdolph\nGordon\nMario\nRoger\nWallace\nMaurice\nArnold\nEdgar\nFelix\nFranklin\nPatsy\nLewis\nWesley\nPasquale\nRoland\nSteven\nAbraham\nCarmen\nEverett\nLeroy\nSteve\nArmand\nHorace\nOscar\nSebastian\nWilbur\nJacob\nRosario\nRoy\nAlvin\nEdmond\nGerald\nHarvey\nJerry\nRocco\nSam\nAntonio\nBurton\nDomenic\nJerome\nMike\nPatrick\nAlan\nMax\nRonald\nRudolph\nWilfred\nAllen\nEarle\nEllsworth\nFredrick\nGilbert\nJoe\nLeslie\nMelvin\nSaul\nSimon\nVernon\nWillard\nAdam\nBenny\nCasimer\nChristopher\nClayton\nMarvin\nNathan\nThaddeus\nWoodrow\nZigmund\nAllan\nArchie\nDwight\nEric\nManuel\nMyron\nNelson\nOrlando\nOtto\nStuart\nVito\nWillis\nAlfonse\nGerard\nHugh\nKarl\nLaurence\nLucien\nMorton\nSherman\nAlfonso\nAlton\nArmond\nBenedict\nBruno\nCarlton\nCarmelo\nClement\nConstantine\nFloyd\nGregory\nIsrael\nMarshall\nMerrill\nPhillip\nRomeo\nSeymour\nSherwood\nSigmund\nSydney\nAlbin\nAnton\nAttilio\nAugust\nBradford\nClaude\nDave\nElton\nGabriel\nGuy\nIsadore\nJoel\nLloyd\nLucian\nMalcolm\nMicheal\nMitchell\nNickolas\nRay\nSanto\nSolomon\nSylvester\nTimothy\nWilson\nJohn\nJoseph\nWilliam\nRobert\nEdward\nGeorge\nFrank\nJames\nCharles\nWalter\nAnthony\nRaymond\nThomas\nRichard\nFrancis\nArthur\nAlbert\nHenry\nMichael\nStanley\nLouis\nHarold\nHarry\nPeter\nDonald\nPaul\nRalph\nAndrew\nDavid\nAlfred\nVincent\nHoward\nFrederick\nTheodore\nKenneth\nFred\nDaniel\nErnest\nStephen\nEugene\nSalvatore\nLeonard\nLawrence\nNicholas\nPhilip\nVictor\nWarren\nCarl\nRussell\nNorman\nBernard\nLeo\nChester\nHerbert\nAlexander\nIrving\nSamuel\nEdwin\nJack\nAngelo\nMilton\nRoger\nClarence\nClifford\nEdmund\nDominick\nBenjamin\nMartin\nDominic\nEarl\nMatthew\nLeon\nSteven\nDouglas\nJulius\nRoy\nSidney\nArnold\nEverett\nGerald\nLewis\nRocco\nGordon\nLester\nMario\nMorris\nElmer\nRoland\nAlex\nBurton\nHerman\nTony\nBruno\nAbraham\nCarmen\nEmil\nLeslie\nAdam\nAlphonse\nPatrick\nSteve\nWilfred\nAllen\nLeroy\nSebastian\nAdolph\nMaurice\nVito\nAlvin\nEdgar\nRudolph\nConstantine\nJacob\nVernon\nWallace\nArmand\nDomenic\nGerard\nMitchell\nFranklin\nHarvey\nMalcolm\nMax\nMelvin\nPasquale\nPatsy\nThaddeus\nAlan\nClayton\nFelix\nFredrick\nHugh\nMarshall\nMorton\nNathan\nNelson\nOrlando\nOscar\nWilbur\nWillard\nBruce\nEllsworth\nHorace\nJerome\nPhillip\nSam\nEric\nGilbert\nJerry\nLloyd\nMyron\nStuart\nZoltan\nAugust\nCalvin\nCarlton\nEdmond\nJoe\nLaurence\nLucian\nManuel\nOliver\nRonald\nAllan\nAlton\nAmerico\nClement\nElliott\nGuy\nJulian\nKarl\nLarry\nLee\nMarvin\nMike\nNick\nRay\nRodney\nTimothy\nWesley\nAloysius\nAntonio\nBennie\nBenny\nClinton\nDante\nDudley\nEarle\nFloyd\nGene\nHarrison\nIrwin\nLucien\nMerrill\nMurray\nOtto\nRoderick\nSaul\nSeymour\nSilvio\nTeddy\nAlden\nAldo\nAlfonse\nArmando\nAustin\nBradford\nCarmine\nCasimir\nClaude\nDomenick\nDwight\nEmilio\nFerdinand\nGabriel\nGennaro\nGino\nJean\nJesse\nLincoln\nLionel\nNickolas\nOwen\nReginald\nRene\nSherman\nJohn\nJoseph\nWilliam\nRobert\nEdward\nGeorge\nFrank\nJames\nCharles\nWalter\nAnthony\nThomas\nRichard\nRaymond\nAlbert\nHenry\nLouis\nMichael\nFrancis\nArthur\nStanley\nDonald\nHarold\nPeter\nPaul\nVincent\nHarry\nRalph\nDavid\nAlfred\nNicholas\nAndrew\nTheodore\nErnest\nDaniel\nFrederick\nStephen\nHoward\nKenneth\nFred\nLawrence\nHerbert\nSamuel\nWarren\nEugene\nSalvatore\nPhilip\nRussell\nAngelo\nNorman\nLeonard\nBernard\nJack\nChester\nLeo\nCarl\nAlexander\nEdwin\nEarl\nClifford\nVictor\nEdmund\nIrving\nMilton\nClarence\nMario\nDominic\nGordon\nMaurice\nPatsy\nDominick\nMartin\nLeon\nEverett\nJulius\nMatthew\nSidney\nRoger\nBenjamin\nPasquale\nDouglas\nGerald\nMorris\nRocco\nTony\nAlphonse\nRoy\nSebastian\nLewis\nRoland\nArnold\nHerman\nWilfred\nElmer\nFelix\nLeslie\nLester\nCarmen\nFranklin\nGilbert\nSteve\nWesley\nAdolph\nAlex\nHarvey\nJerry\nAntonio\nBurton\nEmil\nLeroy\nMorton\nWallace\nFloyd\nLionel\nMalcolm\nPatrick\nSam\nSteven\nWilbur\nJacob\nMarshall\nRudolph\nVito\nAlvin\nArmand\nAugust\nDomenic\nEdgar\nElliott\nFrederic\nRosario\nAllan\nAllen\nJerome\nAdam\nAlan\nAldo\nCalvin\nEarle\nLloyd\nLucien\nManuel\nMax\nNelson\nSigmund\nCarmine\nClayton\nClinton\nDennis\nEnrico\nGabriel\nGuido\nGustave\nHorace\nJulian\nPhillip\nSaul\nSolomon\nThaddeus\nAbraham\nAmerico\nAugustine\nChristopher\nIsadore\nLaurence\nNathan\nNickolas\nOscar\nOtto\nSherwood\nStuart\nAaron\nAlton\nBenny\nBruce\nBruno\nCarmelo\nClement\nCornelius\nDante\nEdmond\nEllsworth\nFerdinand\nGuy\nHubert\nIrwin\nKarl\nMark\nOliver\nOrlando\nRay\nSeymour\nVernon\nWendell\nZigmund\nAlfonse\nAustin\nBertram\nBill\nByron\nCarlo\nCasimir\nCecil\nEli\nEmanuel\nLeland\nMarvin\nMike\nMurray\nRonald\nSanto\nSherman\nTed\nWillard\nWilson\nJohn\nJoseph\nWilliam\nRobert\nEdward\nGeorge\nJames\nFrank\nCharles\nAnthony\nWalter\nRaymond\nThomas\nRichard\nHenry\nAlbert\nLouis\nArthur\nFrancis\nDonald\nMichael\nStanley\nPaul\nHarold\nPeter\nFrederick\nAlfred\nHarry\nRalph\nTheodore\nVincent\nLawrence\nHoward\nErnest\nDavid\nSalvatore\nKenneth\nAndrew\nDaniel\nStephen\nNicholas\nFred\nLeonard\nEugene\nCarl\nEdwin\nHerbert\nPhilip\nRussell\nBernard\nJack\nNorman\nWarren\nSamuel\nLeo\nChester\nEdmund\nIrving\nAlexander\nBenjamin\nEarl\nAngelo\nClarence\nRoger\nVictor\nMartin\nAllen\nJulius\nRoy\nClifford\nEverett\nMorris\nGordon\nTony\nLeon\nPasquale\nMatthew\nPatrick\nDominic\nGerald\nLewis\nMilton\nPatsy\nRoland\nRudolph\nElmer\nAlphonse\nLeroy\nLester\nSam\nBurton\nCarmen\nMario\nSteve\nDouglas\nEmil\nHarvey\nLucian\nRocco\nSteven\nEdgar\nGilbert\nSebastian\nArnold\nDominick\nFranklin\nJerome\nJerry\nLloyd\nMaurice\nMelvin\nSeymour\nSidney\nWallace\nWilbur\nWilfred\nEdmond\nHerman\nLeslie\nOscar\nOtto\nAlex\nBenny\nGerard\nMyron\nNelson\nRonald\nVito\nAntonio\nArmand\nAugust\nFloyd\nJulian\nMarshall\nMorton\nWesley\nAbraham\nAdam\nBruno\nCarmine\nClinton\nDante\nFelix\nAdolph\nEarle\nEmanuel\nHugh\nJacob\nAldo\nAlvin\nChristopher\nDennis\nAlan\nAlphonso\nBruce\nCarlo\nCarmelo\nDwight\nFredrick\nHorace\nHubert\nLaurence\nMarcel\nMarvin\nMurray\nReginald\nRodney\nSherman\nWillard\nWillis\nAlden\nAllan\nAmerico\nAugustine\nAustin\nBenedict\nClement\nElbert\nGuido\nGustave\nJoe\nLee\nMalcolm\nManuel\nMitchell\nNathan\nRoderick\nSanto\nSherwood\nSterling\nVernon\nAaron\nAlfonse\nBennie\nClayton\nDomenic\nErwin\nFranklyn\nGene\nGuy\nIsadore\nJoesph\nJustin\nMark\nMerrill\nMerritt\nNick\nOliver\nRay\nReno\nSaul\nSilvio\nSimon\nStuart\nTeddy\nJohn\nWilliam\nRobert\nJoseph\nEdward\nGeorge\nJames\nFrank\nCharles\nAnthony\nWalter\nRichard\nRaymond\nThomas\nDonald\nArthur\nFrancis\nLouis\nHenry\nMichael\nPaul\nHarold\nAlbert\nStanley\nPeter\nFrederick\nHarry\nAlfred\nRalph\nVincent\nKenneth\nDavid\nAndrew\nHoward\nTheodore\nEugene\nLeonard\nErnest\nNicholas\nDaniel\nLawrence\nBernard\nPhilip\nSalvatore\nFred\nNorman\nStephen\nRussell\nCarl\nHerbert\nLeo\nEdwin\nSamuel\nEdmund\nChester\nClifford\nIrving\nWarren\nAlexander\nAngelo\nBenjamin\nRoland\nEarl\nJack\nDominic\nGordon\nClarence\nVictor\nGerald\nRoger\nJulius\nMaurice\nMatthew\nAlex\nArnold\nEverett\nMilton\nWesley\nDouglas\nLeon\nMario\nMartin\nSidney\nPasquale\nElmer\nRoy\nDominick\nRudolph\nJerry\nLewis\nPatrick\nPatsy\nSebastian\nLloyd\nWallace\nWilbur\nEmil\nLeroy\nLester\nCarmen\nRonald\nNelson\nSam\nAdolph\nAlan\nAlphonse\nEdgar\nFranklin\nMorris\nRocco\nFloyd\nMarshall\nMelvin\nMorton\nSeymour\nTony\nVito\nGerard\nGilbert\nHarvey\nJerome\nNathan\nRay\nSteve\nVernon\nBruno\nBurton\nClayton\nEdmond\nHorace\nJacob\nLeslie\nMalcolm\nWilfred\nWillard\nAllen\nAlvin\nAntonio\nCalvin\nConstantine\nEarle\nJoe\nMarvin\nSherman\nThaddeus\nConrad\nEllsworth\nFredrick\nGene\nHerman\nManuel\nAbraham\nAdam\nAllan\nArmand\nFelix\nGuy\nHugh\nLucien\nMax\nOrlando\nArmando\nAugust\nBruce\nCarmine\nCarroll\nChristopher\nClement\nDwight\nKeith\nOscar\nOwen\nSilvio\nSteven\nAaron\nAmerico\nClinton\nCurtis\nElton\nErwin\nKarl\nNathaniel\nOliver\nStuart\nWayne\nAustin\nBenedict\nBenny\nDennis\nElliott\nEmile\nFranklyn\nGabriel\nJulian\nKevin\nLaurence\nMark\nMicheal\nMortimer\nOtto\nRoderick\nRomeo\nStewart\nTeddy\nWard\nJohn\nWilliam\nRobert\nJoseph\nEdward\nJames\nGeorge\nFrank\nCharles\nRichard\nWalter\nRaymond\nThomas\nAnthony\nDonald\nHenry\nArthur\nFrancis\nLouis\nAlbert\nMichael\nPaul\nStanley\nHarold\nPeter\nFrederick\nRalph\nHarry\nAlfred\nDavid\nErnest\nAndrew\nDaniel\nEugene\nFred\nKenneth\nSalvatore\nHoward\nTheodore\nNorman\nVincent\nHerbert\nPhilip\nNicholas\nAngelo\nCarl\nLawrence\nLeonard\nEdwin\nRussell\nBernard\nSamuel\nStephen\nChester\nLeo\nClarence\nClifford\nJack\nVictor\nIrving\nEarl\nAlexander\nEdmund\nLeon\nRoger\nBenjamin\nMilton\nWarren\nDominick\nJulius\nMartin\nCalvin\nRoland\nGerald\nGordon\nDouglas\nRoy\nEverett\nArnold\nLeroy\nRocco\nWallace\nDominic\nPatrick\nPatsy\nSebastian\nLewis\nHarvey\nMatthew\nMaurice\nPasquale\nSidney\nAllen\nAlphonse\nLester\nMario\nSteve\nAlvin\nBurton\nGilbert\nSeymour\nAldo\nJerry\nMarvin\nMorris\nVito\nAlan\nCarmen\nCarmine\nChristopher\nHerman\nWesley\nArmand\nEdgar\nElmer\nFredrick\nLaurence\nSteven\nWilfred\nAllan\nFloyd\nGerard\nLeslie\nStuart\nAlex\nDomenic\nEdmond\nEmil\nFelix\nWillard\nClayton\nFranklin\nFrederic\nJerome\nMathew\nMelvin\nMyron\nNathan\nNeil\nRay\nRonald\nRosario\nSam\nSanto\nSherman\nAbraham\nAdam\nAdolph\nAugust\nClement\nJoe\nKarl\nManuel\nNelson\nRudolph\nTony\nBruce\nErwin\nGabriel\nGlenn\nLloyd\nMarshall\nNormand\nOrlando\nOscar\nPhillip\nVernon\nWilbur\nAlden\nArmando\nCornelius\nCurtis\nEarle\nHubert\nHugh\nJacob\nMalcolm\nMarcel\nMorton\nRodney\nSilvio\nTeddy\nBenny\nBruno\nCarlo\nCarlton\nClinton\nConrad\nElwood\nEmilio\nGene\nIrvin\nJean\nJulian\nLionel\nMark\nMerritt\nNick\nNickolas\nTimothy\nWillis\nAugustine\nAustin\nBennie\nCarmelo\nCasimer\nClaude\nConstantine\nDante\nElbert\nEric\nGuido\nLucien\nLuther\nMax\nMitchell\nRene\nThaddeus\nWendell\nJohn\nRobert\nWilliam\nJoseph\nEdward\nGeorge\nJames\nCharles\nFrank\nRichard\nThomas\nDonald\nWalter\nRaymond\nAnthony\nFrancis\nHenry\nAlbert\nArthur\nMichael\nPaul\nLouis\nHarold\nPeter\nEugene\nStanley\nDavid\nKenneth\nFrederick\nVincent\nAlfred\nDaniel\nFred\nTheodore\nLeonard\nRalph\nCarl\nHarry\nHoward\nErnest\nSalvatore\nHerbert\nNorman\nAndrew\nNicholas\nChester\nJack\nBernard\nRussell\nClifford\nLawrence\nEdwin\nPhilip\nLeo\nAngelo\nStephen\nSamuel\nGerald\nEarl\nWarren\nRoger\nGordon\nVictor\nAlexander\nLeon\nDominic\nEdmund\nIrving\nClarence\nMilton\nBenjamin\nRoland\nArnold\nBurton\nElmer\nMario\nRonald\nDouglas\nRoy\nMartin\nMelvin\nEverett\nLewis\nMaurice\nPatsy\nAllan\nLeroy\nPasquale\nWilfred\nAlan\nAlvin\nDominick\nHerman\nAlex\nAlphonse\nEmil\nRocco\nRudolph\nAllen\nFranklin\nCalvin\nFelix\nGilbert\nLester\nSidney\nVito\nClayton\nJerome\nSebastian\nSherman\nAdam\nMarvin\nOtto\nSteve\nTony\nConrad\nJerry\nMarshall\nMorris\nNelson\nHarvey\nLaurence\nMalcolm\nPatrick\nSam\nTimothy\nWallace\nWilbur\nAbraham\nArmand\nCarmen\nEdmond\nGerard\nJulius\nLeslie\nLloyd\nPhillip\nSteven\nBruno\nCarmine\nEdgar\nFloyd\nFredrick\nJacob\nMark\nMatthew\nMax\nSeymour\nStuart\nAugustine\nBruce\nCarmelo\nClinton\nEarle\nHubert\nJoe\nMyron\nNathan\nWillis\nBennett\nCarlo\nCornelius\nEmanuel\nEric\nGuy\nJean\nJulian\nLionel\nManuel\nOliver\nOrlando\nOscar\nRay\nReginald\nSanto\nSaul\nAlden\nAldo\nAntonio\nCarlton\nClaude\nErwin\nFerdinand\nHomer\nHorace\nJules\nMitchell\nNickolas\nPat\nRodney\nSherwood\nSilvio\nThaddeus\nVernon\nWillard\nAdolph\nAlbin\nAmerico\nDante\nDomenic\nDwight\nIsrael\nJeremiah\nKarl\nLee\nLeland\nLucian\nLyman\nMicheal\nMurray\nNeil\nNormand\nNunzio\nRene\nReno\nRomeo\nWesley\nJohn\nRobert\nWilliam\nJoseph\nEdward\nGeorge\nJames\nRichard\nFrank\nCharles\nThomas\nAnthony\nDonald\nRaymond\nWalter\nHenry\nFrancis\nArthur\nAlbert\nMichael\nHarold\nLouis\nPaul\nStanley\nDavid\nPeter\nAlfred\nRalph\nFrederick\nVincent\nEugene\nAndrew\nErnest\nKenneth\nHarry\nDaniel\nNicholas\nLawrence\nNorman\nHoward\nLeonard\nSalvatore\nTheodore\nFred\nBernard\nJack\nPhilip\nCarl\nHerbert\nRoger\nStephen\nLeo\nSamuel\nWarren\nAlexander\nRussell\nEarl\nAngelo\nGerald\nChester\nRudolph\nEdmund\nEdwin\nDominic\nRonald\nIrving\nClarence\nClifford\nRoy\nPasquale\nWallace\nMartin\nPatsy\nRoland\nVictor\nArnold\nLeon\nRocco\nBenjamin\nHarvey\nGordon\nLeroy\nAlan\nEdgar\nJerry\nMilton\nPatrick\nBurton\nCarmen\nElmer\nGerard\nLester\nMario\nMaurice\nSteve\nTony\nAlvin\nDominick\nHerman\nSidney\nFloyd\nJulius\nMatthew\nMelvin\nAllen\nEverett\nGilbert\nSteven\nAlphonse\nDouglas\nFranklin\nMalcolm\nMarvin\nAllan\nEmil\nStuart\nArmand\nCalvin\nClinton\nErwin\nSebastian\nTimothy\nVito\nWesley\nFelix\nMorris\nWilfred\nAlex\nBruce\nDomenic\nHugh\nLeslie\nLewis\nLucien\nOscar\nAldo\nAntonio\nCarmine\nFredrick\nJacob\nJerome\nJoe\nLaurence\nLloyd\nMorton\nNathan\nAdam\nAdolph\nAugust\nCosmo\nMarshall\nNeil\nNormand\nPhillip\nSeymour\nThaddeus\nAustin\nConrad\nFranklyn\nFrederic\nGuy\nLee\nMark\nOtto\nRay\nSam\nVernon\nAlbin\nBenny\nCarlton\nCarroll\nChristopher\nCurtis\nEdmond\nElwood\nEmilio\nGino\nHorace\nLarry\nLionel\nManuel\nMyron\nNewton\nRene\nRosario\nTeddy\nWinthrop\nArmond\nAugustine\nAugustus\nBruno\nCarlo\nChauncey\nChristian\nClement\nCornelius\nDennis\nDwight\nEllsworth\nEmile\nGene\nGlenn\nIrwin\nJean\nJulian\nLucian\nMarcel\nNelson\nOwen\nReginald\nSanford\nTom\nWillis\nJohn\nRobert\nWilliam\nJoseph\nEdward\nGeorge\nRichard\nJames\nCharles\nDonald\nRaymond\nFrank\nThomas\nAnthony\nFrancis\nLouis\nArthur\nAlbert\nHenry\nHarold\nWalter\nPaul\nMichael\nKenneth\nDavid\nStanley\nVincent\nAlfred\nPeter\nEugene\nRalph\nFrederick\nAndrew\nErnest\nHoward\nLawrence\nSalvatore\nNorman\nHarry\nLeonard\nDaniel\nTheodore\nFred\nNicholas\nBernard\nCarl\nStephen\nHerbert\nEarl\nRoger\nLeo\nPhilip\nRussell\nChester\nEdwin\nAngelo\nJack\nClifford\nGerald\nRonald\nLeon\nRoland\nSamuel\nMilton\nArnold\nIrving\nWarren\nAlexander\nBenjamin\nMartin\nClarence\nMario\nPatsy\nRoy\nVictor\nWallace\nEdmund\nRudolph\nElmer\nGordon\nMarvin\nDominic\nLewis\nMatthew\nRocco\nAlan\nGilbert\nMaurice\nDominick\nWilfred\nHarvey\nPasquale\nSidney\nAllen\nHerman\nBruce\nLeroy\nBurton\nCarmine\nEverett\nGerard\nAlvin\nJulius\nSebastian\nSteve\nTony\nVito\nAlphonse\nCarmen\nJacob\nSherman\nAllan\nArmand\nCalvin\nEdgar\nHugh\nSam\nWilbur\nAlex\nDouglas\nJerry\nLester\nMelvin\nPatrick\nPhillip\nAntonio\nDomenic\nEdmond\nEmil\nFelix\nFranklin\nLaurence\nLloyd\nMalcolm\nMark\nMorris\nRene\nRodney\nBruno\nCarmelo\nDennis\nGene\nLeslie\nMyron\nTimothy\nVernon\nAdolph\nCornelius\nHomer\nJoe\nLee\nSherwood\nAlton\nChristopher\nClayton\nEarle\nEric\nErwin\nJoesph\nLucien\nManuel\nMarshall\nMorton\nNormand\nOliver\nAdam\nBradford\nByron\nClyde\nCurtis\nCyril\nDante\nEmile\nGustave\nGuy\nIrwin\nJay\nKarl\nNorbert\nOscar\nRosario\nTeddy\nWesley\nAbraham\nAmerico\nAugust\nBennie\nConrad\nGaetano\nGuido\nHorace\nJean\nJerome\nMerrill\nMerwin\nMicheal\nMurray\nNewton\nNick\nRudy\nRufus\nSeymour\nSheldon\nSteven\nStuart\nJohn\nRobert\nWilliam\nJoseph\nEdward\nRichard\nGeorge\nJames\nRaymond\nDonald\nCharles\nFrank\nThomas\nAnthony\nFrancis\nWalter\nHenry\nAlbert\nLouis\nMichael\nArthur\nAlfred\nPaul\nHarold\nDavid\nEugene\nKenneth\nHarry\nFrederick\nLawrence\nPeter\nRalph\nStanley\nCarl\nDaniel\nHoward\nVincent\nErnest\nNorman\nAndrew\nHerbert\nTheodore\nNicholas\nPhilip\nSalvatore\nRoger\nStephen\nBernard\nRussell\nLeonard\nFred\nGerald\nLeo\nEarl\nSamuel\nRonald\nEdwin\nAlexander\nAngelo\nEdmund\nJack\nGordon\nChester\nClifford\nRoland\nMario\nWarren\nRudolph\nMartin\nRoy\nVictor\nClarence\nAllen\nDouglas\nIrving\nMilton\nArnold\nMaurice\nEverett\nLeroy\nAlphonse\nAlan\nDominick\nGilbert\nBurton\nDominic\nLeon\nPasquale\nSebastian\nCarmen\nElmer\nGene\nHerman\nLester\nPatrick\nArmand\nCarmine\nMatthew\nTony\nLionel\nBenjamin\nFranklin\nHugh\nJerome\nSteven\nStuart\nWilfred\nFloyd\nAlvin\nEdmond\nJerry\nJulius\nLewis\nSidney\nVito\nWallace\nAllan\nBruce\nCalvin\nGerard\nMarvin\nRocco\nAlton\nJacob\nMelvin\nMyron\nPatsy\nWesley\nWilbur\nFrederic\nHarvey\nJean\nLeslie\nMarshall\nNick\nEmil\nEric\nMorris\nMorton\nRene\nSam\nSanto\nSeymour\nSherwood\nSteve\nWillard\nAugust\nAustin\nConrad\nDomenic\nEarle\nGregory\nJulian\nLarry\nPerry\nPhillip\nRodney\nSaul\nWillis\nCarlton\nChristopher\nHubert\nMalcolm\nMarcel\nMark\nNelson\nNickolas\nNormand\nRay\nThaddeus\nAdolf\nAdolph\nAntonio\nCarmelo\nClayton\nClyde\nCurtis\nDante\nEmanuel\nFerdinand\nGennaro\nGus\nHorace\nLincoln\nLloyd\nNathan\nOliver\nOmer\nSherman\nAbraham\nAlden\nAmbrose\nBenny\nBradford\nCasimir\nClifton\nClinton\nCornelius\nDennis\nEdgar\nFelix\nGabriel\nGaston\nGuy\nJesse\nLucien\nManuel\nMerrill\nMerritt\nMitchell\nRosario\nWayne\nJohn\nRobert\nWilliam\nJoseph\nRichard\nJames\nEdward\nGeorge\nDonald\nCharles\nRaymond\nFrank\nThomas\nAnthony\nFrancis\nWalter\nArthur\nAlbert\nMichael\nPaul\nDavid\nLouis\nHenry\nAlfred\nPeter\nKenneth\nHarold\nRalph\nHarry\nAndrew\nEugene\nNorman\nErnest\nStanley\nFrederick\nDaniel\nFred\nLawrence\nTheodore\nHerbert\nVincent\nLeonard\nSalvatore\nRoger\nHoward\nPhilip\nNicholas\nBernard\nCarl\nRussell\nGerald\nRoland\nStephen\nRonald\nClarence\nLeo\nAlexander\nGordon\nVictor\nChester\nAngelo\nJack\nEarl\nSamuel\nEdmund\nMartin\nDominic\nRoy\nEdwin\nLeon\nLeroy\nDominick\nAllan\nClifford\nBruce\nMilton\nWarren\nAllen\nDouglas\nAlan\nGerard\nBenjamin\nGilbert\nIrving\nArnold\nHerman\nMaurice\nSebastian\nElmer\nMario\nMarvin\nPasquale\nRocco\nWallace\nArmand\nLeslie\nLester\nVito\nAlvin\nEverett\nPatrick\nRene\nRudolph\nWilbur\nConrad\nEmil\nFloyd\nGene\nHugh\nJerry\nWilfred\nBurton\nMyron\nNormand\nSidney\nAlphonse\nJulius\nLewis\nMalcolm\nMorton\nStuart\nAugust\nCarmen\nClinton\nJerome\nLee\nMelvin\nHarvey\nLloyd\nNelson\nSteven\nBruno\nEmanuel\nErwin\nFranklin\nMatthew\nPatsy\nRay\nWesley\nAlex\nCarmine\nDennis\nEarle\nKarl\nManuel\nMerrill\nSam\nSherman\nTeddy\nAustin\nClayton\nDudley\nJoe\nMorris\nPhillip\nReginald\nRosario\nWayne\nWillard\nAlton\nBill\nDante\nDomenic\nEdgar\nEric\nGaetano\nHorace\nJay\nJeremiah\nLarry\nMarshall\nNathan\nRomeo\nSanto\nSteve\nAlden\nBenny\nBert\nBertrand\nBradford\nByron\nClyde\nCurtis\nDon\nDuane\nEdmond\nEmile\nFelix\nFernand\nFrederic\nFredrick\nGabriel\nGino\nGraham\nGregory\nHubert\nJean\nJesse\nJulian\nLaurence\nLucien\nMary\nMitchell\nMurray\nNeil\nNick\nSaul\nSimon\nTed\nTony\nVernon\nWard\nJohn\nRobert\nWilliam\nJoseph\nRichard\nEdward\nJames\nDonald\nGeorge\nCharles\nThomas\nFrank\nRaymond\nPaul\nAnthony\nWalter\nAlbert\nDavid\nFrancis\nHenry\nArthur\nLouis\nHarold\nMichael\nPeter\nRalph\nEugene\nKenneth\nStanley\nRonald\nFred\nAlfred\nVincent\nAndrew\nFrederick\nNorman\nDaniel\nHarry\nSalvatore\nLeonard\nCarl\nErnest\nLawrence\nBernard\nRoger\nPhilip\nStephen\nGerald\nTheodore\nNicholas\nEdwin\nHoward\nJack\nAngelo\nRussell\nHerbert\nGordon\nLeo\nAlan\nEarl\nRoland\nEdmund\nMaurice\nChester\nMartin\nVictor\nClarence\nClifford\nGilbert\nSamuel\nIrving\nBruce\nWarren\nAllen\nRoy\nAllan\nDominic\nDouglas\nLeroy\nRudolph\nLewis\nMarvin\nAlexander\nWallace\nMilton\nPatrick\nHerman\nAlphonse\nBenjamin\nJerome\nLeon\nGerard\nJulius\nNormand\nElmer\nJerry\nMelvin\nWilfred\nDominick\nHarvey\nMario\nMorris\nPasquale\nSebastian\nBurton\nEdgar\nEdmond\nFelix\nFredrick\nRocco\nDennis\nEverett\nMarshall\nNeil\nRene\nCarmen\nFranklin\nGene\nLee\nPatsy\nSanto\nSidney\nVernon\nAlton\nAlvin\nArnold\nCarmine\nEmil\nFloyd\nManuel\nSam\nTimothy\nArmand\nAustin\nCalvin\nGlenn\nGuy\nLucian\nMatthew\nSteve\nStuart\nGregory\nOliver\nPhillip\nSteven\nTony\nWilbur\nCarlton\nClayton\nClinton\nConrad\nDwight\nHorace\nHugh\nJoe\nLarry\nLaurence\nLeslie\nLester\nLloyd\nMarcel\nRay\nSherman\nWayne\nWesley\nWillard\nAugust\nBert\nBill\nCarlo\nCarmelo\nDon\nEarle\nEmanuel\nFerdinand\nHomer\nKarl\nMalcolm\nMark\nMerton\nMike\nMyron\nNick\nVito\nAbraham\nAlden\nAntonio\nAugustine\nBenny\nCarleton\nChristopher\nClement\nCurtis\nCyril\nDomenic\nErwin\nGary\nGraham\nHector\nHugo\nJulian\nLionel\nNathan\nNelson\nNoel\nOwen\nRodney\nRomeo\nSeymour\nSylvester\nTed\nValentino\nWillie\nRobert\nJohn\nWilliam\nRichard\nJoseph\nDonald\nJames\nEdward\nGeorge\nThomas\nCharles\nFrank\nRaymond\nAnthony\nWalter\nArthur\nPaul\nDavid\nFrancis\nMichael\nLouis\nHenry\nKenneth\nHarold\nAlbert\nPeter\nEugene\nRonald\nAlfred\nLawrence\nFred\nVincent\nHarry\nDaniel\nRoger\nNorman\nPhilip\nRalph\nFrederick\nStanley\nTheodore\nHerbert\nErnest\nNicholas\nAndrew\nHoward\nStephen\nCarl\nAlan\nJack\nLeonard\nBernard\nRoland\nSalvatore\nGerald\nEdwin\nRussell\nLeo\nAngelo\nWarren\nClifford\nMartin\nBruce\nIrving\nChester\nDouglas\nGilbert\nHarvey\nSamuel\nLewis\nMaurice\nPatrick\nVictor\nAlexander\nArnold\nEarl\nEdmund\nMarvin\nRudolph\nMario\nMilton\nBenjamin\nClarence\nRoy\nAllan\nDominic\nPatsy\nAlphonse\nGordon\nJerome\nJerry\nAllen\nArmand\nLeon\nMatthew\nCarmen\nDominick\nEverett\nGuy\nLeroy\nPasquale\nSebastian\nWilfred\nGene\nFranklin\nLionel\nNeil\nCarmine\nFloyd\nJulius\nMark\nStuart\nWilbur\nBurton\nCalvin\nEmil\nGerard\nMelvin\nNelson\nTony\nAlex\nClement\nDennis\nEric\nHugh\nLaurence\nLester\nMorton\nWallace\nWayne\nClinton\nDuane\nEdgar\nElmer\nLloyd\nMalcolm\nManuel\nMarshall\nNathan\nOscar\nPhillip\nRocco\nSidney\nVito\nAlvin\nConrad\nDino\nEarle\nEmanuel\nErwin\nGary\nGlenn\nHector\nHubert\nKarl\nOliver\nReginald\nSam\nSeymour\nSteve\nTom\nClaude\nDon\nEddie\nFelix\nFredrick\nGabriel\nGregory\nHerman\nIrwin\nJean\nJoe\nLarry\nLeslie\nNormand\nRay\nAntonio\nBenny\nCarlo\nEnrico\nGaetano\nLuther\nLyman\nMorris\nMyron\nRodney\nRudy\nSherman\nSherwood\nWesley\nWillard\nWilson\nRobert\nJohn\nWilliam\nRichard\nJoseph\nJames\nDonald\nEdward\nGeorge\nCharles\nThomas\nFrank\nRaymond\nAnthony\nRonald\nDavid\nLouis\nPaul\nPeter\nWalter\nArthur\nHenry\nMichael\nFrancis\nKenneth\nAlbert\nNorman\nEugene\nLawrence\nHarold\nVincent\nDaniel\nRalph\nAlfred\nFrederick\nRoger\nStanley\nPhilip\nFred\nErnest\nGerald\nAndrew\nSalvatore\nTheodore\nCarl\nHarry\nNicholas\nJack\nLeonard\nHoward\nStephen\nBernard\nClifford\nHerbert\nAlan\nBruce\nRussell\nEdwin\nDouglas\nLeo\nRoland\nAllen\nEarl\nGordon\nSamuel\nRoy\nEdmund\nAlexander\nAngelo\nAllan\nPatrick\nVictor\nArnold\nClarence\nChester\nIrving\nDominic\nMario\nWarren\nEverett\nMartin\nMaurice\nMatthew\nMilton\nPasquale\nGerard\nMelvin\nBenjamin\nConrad\nFranklin\nGilbert\nHarvey\nJerome\nJerry\nLeon\nStuart\nDominick\nPatsy\nBurton\nEdgar\nLewis\nMarvin\nPhillip\nRocco\nRudolph\nSebastian\nVito\nElmer\nJulius\nLeroy\nNeil\nNormand\nRene\nSteve\nAlvin\nDon\nEdmond\nGuy\nJoel\nLarry\nNelson\nSidney\nWayne\nWilfred\nBarry\nCarmine\nChristopher\nEarle\nFloyd\nHerman\nLester\nMorris\nSam\nTony\nWallace\nArmand\nAugust\nAugustine\nClement\nDennis\nDwight\nEmil\nHugh\nKarl\nLee\nLeslie\nMalcolm\nPat\nRay\nWilbur\nAldo\nAlphonse\nBob\nCarmen\nClaude\nClayton\nDomenic\nElliott\nGene\nIrwin\nJesse\nJulio\nLaurence\nMarcel\nMarshall\nMorton\nMyron\nRodney\nSteven\nTed\nWillard\nAdolph\nAlex\nAndre\nAustin\nBill\nBrian\nCalvin\nClyde\nCornelius\nDale\nDana\nDanny\nDean\nDelbert\nEddie\nFrederic\nGlenn\nGus\nHubert\nJean\nJulian\nKevin\nLowell\nOwen\nStewart\nTimothy\nVernon\nWillie\nRobert\nJohn\nRichard\nWilliam\nJoseph\nDonald\nJames\nEdward\nCharles\nGeorge\nThomas\nFrank\nRonald\nRaymond\nAnthony\nPaul\nDavid\nWalter\nMichael\nArthur\nFrancis\nPeter\nAlbert\nLouis\nKenneth\nHenry\nRalph\nEugene\nHarold\nDaniel\nFrederick\nLawrence\nNorman\nRoger\nAlfred\nAndrew\nHarry\nGerald\nStanley\nCarl\nPhilip\nVincent\nFred\nTheodore\nLeonard\nNicholas\nSalvatore\nErnest\nHerbert\nStephen\nHoward\nRussell\nBernard\nEarl\nGordon\nBruce\nEdwin\nLeo\nMartin\nVictor\nArnold\nJack\nDouglas\nFranklin\nAngelo\nRoy\nAllen\nEdmund\nMilton\nSamuel\nAlan\nJerome\nPatrick\nRoland\nClifford\nMaurice\nWarren\nClarence\nAlexander\nBurton\nChester\nLeroy\nAllan\nBenjamin\nLeon\nWayne\nCarmen\nLewis\nBarry\nAlex\nConrad\nDennis\nDominic\nEverett\nHarvey\nMalcolm\nMarvin\nMatthew\nRocco\nWilfred\nDominick\nHugh\nMarshall\nNeil\nOwen\nPatsy\nRodney\nArmand\nEdmond\nGene\nGerard\nJerry\nJoe\nJulius\nLarry\nLeslie\nMario\nPasquale\nPhillip\nRudolph\nSebastian\nWesley\nAlphonse\nCalvin\nDwight\nGilbert\nLaurence\nLee\nRay\nSteven\nDon\nEdgar\nEmil\nFloyd\nGary\nGregory\nGuy\nHerman\nIrving\nJoel\nKarl\nLloyd\nMorton\nReginald\nSidney\nStuart\nWallace\nCurtis\nDale\nElmer\nFredrick\nJay\nKeith\nNormand\nTimothy\nWillard\nBob\nClayton\nCornelius\nDino\nEric\nFelix\nLester\nMelvin\nNoel\nOscar\nRene\nSam\nTed\nAdolph\nAlvin\nBill\nCarlo\nCarlton\nEarle\nEmanuel\nGlenn\nHans\nHubert\nJacob\nLionel\nLucien\nLynn\nMark\nOtto\nRosario\nThaddeus\nTony\nWilbur\nWillis\nRobert\nJohn\nRichard\nWilliam\nJoseph\nDonald\nJames\nEdward\nGeorge\nThomas\nCharles\nRonald\nRaymond\nFrank\nDavid\nPaul\nAnthony\nMichael\nArthur\nPeter\nFrancis\nAlbert\nHenry\nLouis\nKenneth\nWalter\nHarold\nRalph\nEugene\nNorman\nFrederick\nLeonard\nLawrence\nRoger\nFred\nPhilip\nErnest\nGerald\nCarl\nDaniel\nVincent\nAlfred\nSalvatore\nHarry\nHoward\nStanley\nAndrew\nEdwin\nBruce\nGordon\nRussell\nBernard\nJack\nNicholas\nStephen\nTheodore\nAlan\nJerry\nLeo\nDouglas\nHerbert\nMartin\nRoy\nPatrick\nRoland\nAllen\nDominic\nWarren\nWayne\nAllan\nArnold\nFranklin\nClifford\nAngelo\nChester\nJerome\nLewis\nAlexander\nClarence\nEdmund\nGerard\nBenjamin\nEarl\nRocco\nVictor\nLeslie\nMilton\nSamuel\nHarvey\nIrving\nLarry\nLeon\nNeil\nGene\nLeroy\nSebastian\nGilbert\nMarcel\nMaurice\nPatsy\nRudolph\nWilfred\nDominick\nEverett\nGary\nHerman\nMarshall\nMatthew\nNelson\nStuart\nAlphonse\nAlvin\nArmand\nBarry\nKarl\nMarvin\nPasquale\nBill\nDennis\nElmer\nLee\nSidney\nTimothy\nWesley\nCarmen\nChristopher\nFloyd\nJoel\nLester\nMario\nMark\nNormand\nPhillip\nRodney\nSteve\nSteven\nWilbur\nAlex\nBob\nBrian\nBurton\nConrad\nDon\nEdgar\nEmil\nEric\nGlenn\nJoe\nMelvin\nMorton\nNoel\nPat\nRene\nBarbara\nBruno\nCarmine\nClyde\nEarle\nFelix\nHorace\nLaurence\nLeigh\nLionel\nLloyd\nManuel\nMorris\nNick\nOtto\nVito\nWillard\nDean\nHugh\nJay\nLoren\nLucien\nSam\nSherwood\nTom\nTony\nWallace\nRobert\nJohn\nRichard\nWilliam\nJoseph\nJames\nDonald\nEdward\nGeorge\nCharles\nThomas\nFrank\nRaymond\nDavid\nRonald\nAnthony\nPaul\nArthur\nMichael\nWalter\nLouis\nPeter\nFrancis\nAlbert\nKenneth\nDaniel\nFrederick\nHenry\nRalph\nEugene\nRoger\nGerald\nPhilip\nNorman\nVincent\nHarold\nStephen\nFred\nAlfred\nCarl\nStanley\nLawrence\nAndrew\nHoward\nLeonard\nTheodore\nErnest\nHarry\nRussell\nDouglas\nNicholas\nSalvatore\nGordon\nHerbert\nRoy\nBernard\nBruce\nJack\nLeo\nEdwin\nMartin\nClifford\nWayne\nRoland\nWarren\nVictor\nSamuel\nAlan\nBenjamin\nClarence\nAllan\nAngelo\nChester\nEarl\nLewis\nMatthew\nBarry\nLeon\nAlexander\nDennis\nJerry\nArnold\nEdmund\nGary\nJay\nLarry\nLee\nLeroy\nMaurice\nGilbert\nJerome\nDominic\nDominick\nIrving\nMelvin\nStuart\nWesley\nAllen\nGene\nNelson\nSebastian\nTerry\nFranklin\nGuy\nHarvey\nMalcolm\nCarmen\nLeslie\nPatrick\nPatsy\nRene\nRudolph\nJoe\nMark\nMilton\nMorton\nNormand\nPhillip\nSteven\nTony\nWilfred\nAlvin\nArmand\nBrian\nBurton\nEdgar\nGerard\nHugh\nJoel\nJonathan\nKarl\nLester\nMarvin\nNeil\nNick\nRay\nRocco\nTimothy\nDon\nEdmond\nFloyd\nGregory\nJulius\nLucien\nNoel\nSam\nSanto\nSidney\nVito\nAlphonse\nChristopher\nClayton\nElmer\nEmil\nErwin\nEverett\nFredrick\nKeith\nLaurence\nMarshall\nPat\nRodney\nSteve\nVernon\nWillard\nAlex\nAlton\nAntonio\nBill\nBilly\nBob\nBradford\nCurtis\nDomenic\nElliott\nEmanuel\nEmile\nFelix\nGennaro\nHerman\nKevin\nMarcel\nMario\nOliver\nTed\nRobert\nJohn\nRichard\nWilliam\nJoseph\nJames\nDonald\nThomas\nEdward\nDavid\nCharles\nGeorge\nRonald\nFrank\nPaul\nRaymond\nMichael\nAnthony\nPeter\nArthur\nWalter\nFrancis\nLouis\nRalph\nRoger\nKenneth\nAlbert\nFred\nHenry\nFrederick\nGerald\nDaniel\nEugene\nHarold\nAlfred\nPhilip\nNorman\nLawrence\nAndrew\nStanley\nHoward\nCarl\nHarry\nBruce\nErnest\nStephen\nNicholas\nSalvatore\nVincent\nRussell\nMartin\nLeonard\nAlan\nTheodore\nBernard\nSamuel\nClifford\nRoland\nGordon\nEarl\nJack\nGary\nHerbert\nLeo\nWayne\nArnold\nDouglas\nEdwin\nLeon\nAllen\nVictor\nWarren\nEdmund\nJerry\nEverett\nJoel\nAllan\nMelvin\nBenjamin\nDominic\nLeroy\nClarence\nGilbert\nHarvey\nMaurice\nAngelo\nChristopher\nDennis\nGene\nLarry\nLeslie\nPatrick\nBrian\nFranklin\nGerard\nHugh\nJerome\nNelson\nBarry\nGlenn\nJon\nLee\nMalcolm\nPhillip\nRodney\nWallace\nWilfred\nAlex\nLewis\nMatthew\nNormand\nArmand\nBurton\nCarmen\nLester\nPasquale\nRoy\nSebastian\nStuart\nTimothy\nChester\nEmil\nGregory\nJonathan\nMario\nMilton\nNathaniel\nRudolph\nSheldon\nTony\nAlexander\nAlphonse\nBill\nBradford\nEmanuel\nIrving\nJoe\nLloyd\nTom\nVito\nWesley\nWilbur\nAlton\nAlvin\nBob\nCarlton\nClayton\nConrad\nDale\nDean\nDominick\nEarle\nEric\nFloyd\nKevin\nMark\nMarshall\nMarvin\nMorton\nOtto\nRocco\nScott\nTerry\nAndre\nCarmine\nChris\nClinton\nDave\nFranklyn\nGabriel\nHorace\nJay\nManuel\nMorris\nNeil\nPatsy\nPerry\nReginald\nRene\nRudy\nSherman\nSteven\nRobert\nJohn\nRichard\nWilliam\nJames\nJoseph\nEdward\nDonald\nDavid\nThomas\nCharles\nGeorge\nRaymond\nMichael\nRonald\nFrank\nPaul\nAnthony\nPeter\nArthur\nKenneth\nWalter\nFrancis\nLouis\nRalph\nGerald\nAlbert\nLawrence\nDaniel\nRoger\nHenry\nFrederick\nHarold\nPhilip\nEugene\nHoward\nAlfred\nVincent\nCarl\nNorman\nFred\nStephen\nLeonard\nErnest\nBruce\nHarry\nRussell\nStanley\nMartin\nAndrew\nTheodore\nAlan\nLeo\nAllen\nClifford\nRoland\nSalvatore\nNicholas\nBernard\nEdwin\nAllan\nSamuel\nAlexander\nChester\nHerbert\nJack\nWayne\nGordon\nPatrick\nWarren\nHarvey\nMatthew\nRoy\nVictor\nArnold\nDouglas\nJerry\nGary\nBrian\nLarry\nLeon\nLewis\nBenjamin\nClarence\nEarl\nGene\nJoel\nJon\nJerome\nPasquale\nStuart\nAngelo\nDennis\nMario\nMaurice\nWesley\nDominic\nFranklin\nGerard\nIrving\nLee\nLeroy\nNeil\nRudolph\nTimothy\nEdmund\nGilbert\nPhillip\nSteve\nTerry\nArmand\nBarry\nBurton\nLester\nLloyd\nMilton\nSebastian\nSidney\nWillard\nCarmine\nCraig\nDale\nDominick\nGlenn\nMark\nMelvin\nWallace\nCarmen\nChristopher\nEmil\nFloyd\nGregory\nHubert\nMarvin\nMyron\nPatsy\nRay\nWilfred\nBob\nDean\nDomenic\nGuy\nHerman\nJonathan\nMalcolm\nNoel\nOliver\nRodney\nAlex\nAndre\nClayton\nEric\nFelix\nKarl\nKeith\nKurt\nLaurence\nManuel\nMarshall\nNelson\nNormand\nReginald\nSherwood\nAaron\nBill\nClaude\nConrad\nCurtis\nDwight\nEarle\nEdgar\nEdmond\nEverett\nFredrick\nHugh\nJoan\nMorris\nNeal\nRandall\nRene\nRoderick\nSteven\nTed\nThaddeus\nTony\nWilbur\nRobert\nJohn\nRichard\nWilliam\nJames\nJoseph\nDavid\nDonald\nThomas\nEdward\nGeorge\nCharles\nRonald\nMichael\nAnthony\nRaymond\nPaul\nFrank\nPeter\nKenneth\nFrancis\nArthur\nWalter\nAlbert\nDaniel\nLouis\nRoger\nLawrence\nGerald\nAlfred\nHenry\nPhilip\nFrederick\nRalph\nStephen\nVincent\nCarl\nAndrew\nFred\nHarold\nNorman\nEugene\nErnest\nHoward\nMartin\nStanley\nBruce\nTheodore\nLeonard\nNicholas\nAlan\nHarry\nJack\nRussell\nDouglas\nSalvatore\nWayne\nGary\nHerbert\nClifford\nBernard\nWarren\nLeo\nRoy\nSamuel\nAllan\nDennis\nEdwin\nRoland\nLarry\nAllen\nEarl\nVictor\nAlexander\nGordon\nPatrick\nArnold\nBenjamin\nBrian\nEdmund\nGerard\nHarvey\nJerry\nJoel\nJon\nMark\nMatthew\nPasquale\nBarry\nDominic\nKarl\nTimothy\nAngelo\nNeil\nNelson\nPhillip\nRodney\nJerome\nLee\nLeroy\nChester\nEverett\nGregory\nIrving\nLeon\nLewis\nMalcolm\nMilton\nAlvin\nClayton\nGuy\nMario\nStuart\nDominick\nEdgar\nEmil\nFranklin\nLloyd\nMelvin\nChristopher\nClarence\nGilbert\nLester\nMarshall\nMaurice\nNormand\nRudolph\nSteve\nTony\nBurton\nCalvin\nCornelius\nFloyd\nGene\nHerman\nHugh\nJeffrey\nKevin\nLeslie\nPatsy\nRocco\nWesley\nAndre\nDale\nDomenic\nJay\nJoe\nRay\nSteven\nTed\nAntonio\nBradford\nCarmen\nConrad\nCraig\nDanny\nDean\nDon\nGlenn\nLaurence\nMarvin\nNathan\nNoel\nRene\nSebastian\nSidney\nTerrence\nTerry\nAlphonse\nArmand\nBill\nClifton\nClyde\nDave\nEarle\nEdmond\nElmer\nElton\nEmile\nGarrett\nJacob\nJesse\nLyman\nManuel\nMyron\nNick\nSam\nWallace\nWilfred\nWillis\nRobert\nJohn\nRichard\nWilliam\nJames\nJoseph\nThomas\nDavid\nEdward\nDonald\nCharles\nGeorge\nRonald\nMichael\nFrank\nPeter\nRaymond\nAnthony\nPaul\nKenneth\nFrancis\nWalter\nArthur\nGerald\nAlbert\nRoger\nLouis\nRalph\nDaniel\nHenry\nLawrence\nHarold\nBruce\nStephen\nFrederick\nAlan\nEugene\nFred\nNorman\nStanley\nAndrew\nPhilip\nVincent\nAlfred\nWayne\nHoward\nLeonard\nDennis\nCarl\nGary\nHarry\nTheodore\nSalvatore\nPatrick\nRussell\nErnest\nBernard\nAllan\nJack\nMartin\nEarl\nNicholas\nVictor\nArnold\nBrian\nDouglas\nLee\nWarren\nAllen\nJerry\nRoy\nAngelo\nClifford\nHerbert\nBarry\nEdmund\nLeon\nSamuel\nAlexander\nEdwin\nJoel\nJon\nSteven\nGordon\nHarvey\nLarry\nRoland\nJerome\nLeo\nMatthew\nTimothy\nBenjamin\nGlenn\nMark\nMelvin\nRodney\nCraig\nDale\nGene\nGuy\nLeroy\nLester\nLewis\nChristopher\nDominic\nEverett\nGerard\nJoe\nMalcolm\nPhillip\nTerry\nJay\nJonathan\nKevin\nLaurence\nNeil\nWilfred\nBob\nHugh\nJeffrey\nKarl\nMaurice\nPasquale\nSebastian\nArmand\nChester\nFloyd\nGilbert\nLeslie\nLloyd\nMilton\nRene\nRocco\nSteve\nWesley\nBradford\nDominick\nFrederic\nIrving\nMarshall\nMarvin\nPatsy\nRudolph\nStuart\nTony\nWallace\nAlphonse\nBurton\nCarmen\nClarence\nClaude\nEarle\nEric\nFranklin\nFredrick\nJim\nAlvin\nBilly\nCarroll\nColin\nEdgar\nFelix\nGregory\nJimmy\nMario\nNorbert\nVernon\nWillard\nAlex\nAndre\nCalvin\nCarmine\nClayton\nCurtis\nDomenic\nEddie\nElliott\nEmil\nGlen\nJeremiah\nJesse\nJohnny\nMorris\nNeal\nSherman\nTed\nTerrence\nTom\nTommy\nWillis\nRobert\nJohn\nRichard\nWilliam\nJames\nJoseph\nDavid\nThomas\nEdward\nDonald\nGeorge\nMichael\nCharles\nRonald\nPaul\nPeter\nRaymond\nFrank\nAnthony\nKenneth\nArthur\nFrancis\nRoger\nFrederick\nWalter\nGerald\nStephen\nLouis\nBruce\nLawrence\nAlbert\nDaniel\nHenry\nRalph\nPhilip\nCarl\nAndrew\nErnest\nHoward\nDennis\nHarry\nEugene\nNorman\nVincent\nAlan\nFred\nHarold\nLeonard\nTheodore\nWayne\nNicholas\nStanley\nAlfred\nGary\nBrian\nJack\nRussell\nAllan\nDouglas\nBarry\nMartin\nClifford\nLarry\nBernard\nMark\nSamuel\nTimothy\nPatrick\nRoy\nAlexander\nEdmund\nEdwin\nJerry\nLeo\nVictor\nArnold\nJoel\nNeil\nRoland\nHerbert\nSalvatore\nStuart\nGuy\nMaurice\nSteven\nWarren\nClarence\nGordon\nJon\nAllen\nEric\nGilbert\nJeffrey\nJerome\nLeon\nChristopher\nGregory\nLewis\nGlenn\nLee\nWilfred\nBurton\nHarvey\nBenjamin\nEarl\nFranklin\nIrving\nJoe\nMelvin\nArmand\nGene\nKeith\nPhillip\nChester\nEdgar\nJonathan\nLaurence\nMatthew\nPasquale\nWallace\nDominick\nElmer\nJay\nJim\nLeroy\nLeslie\nRay\nRodney\nSteve\nTerry\nDon\nGerard\nJean\nKarl\nLester\nLloyd\nLynn\nMarvin\nNathan\nRonnie\nTom\nAlex\nAlphonse\nBill\nCharlie\nEddie\nJulian\nKevin\nNelson\nWendell\nWillard\nAngelo\nByron\nCarlton\nCraig\nDave\nDenis\nDomenic\nDominic\nEdmond\nFredrick\nHugh\nKurt\nMarc\nMario\nSherwood\nVernon\nAllyn\nAlvin\nBruno\nCalvin\nChris\nClement\nClyde\nConrad\nCurtis\nDanny\nDean\nEmanuel\nEmil\nFrederic\nGeoffrey\nHerman\nJerald\nJesse\nJohnny\nKent\nManuel\nMarshall\nMike\nMorris\nPierre\nRene\nRudolph\nSherman\nTerrence\nThaddeus\nTony\nRobert\nJohn\nRichard\nWilliam\nJames\nJoseph\nDavid\nThomas\nEdward\nRonald\nGeorge\nPeter\nCharles\nDonald\nPaul\nMichael\nFrank\nRaymond\nAnthony\nKenneth\nDaniel\nArthur\nLouis\nGerald\nStephen\nAlbert\nFrederick\nFrancis\nWalter\nHenry\nRoger\nBruce\nHarold\nLawrence\nPhilip\nCarl\nDennis\nVincent\nGary\nStanley\nFred\nRalph\nHoward\nLeonard\nEugene\nAlan\nDouglas\nNorman\nAndrew\nAlfred\nTheodore\nWayne\nBarry\nBrian\nHarry\nRussell\nErnest\nBernard\nNicholas\nAllen\nLarry\nMartin\nJeffrey\nSalvatore\nGordon\nEdwin\nJack\nPatrick\nTimothy\nClifford\nLeo\nEdmund\nAllan\nGerard\nMark\nSamuel\nWarren\nLee\nRoy\nGene\nLewis\nSteven\nEarl\nJerry\nAlexander\nBenjamin\nHerbert\nLeon\nChristopher\nJoel\nJonathan\nSteve\nVictor\nGilbert\nGregory\nJay\nKevin\nStuart\nAngelo\nArnold\nEverett\nJon\nLeslie\nMatthew\nPhillip\nRoland\nDominick\nDominic\nEric\nLloyd\nJerome\nMaurice\nPasquale\nBurton\nChester\nGuy\nNeil\nWesley\nClarence\nHarvey\nKeith\nRay\nTerry\nBill\nCurtis\nJean\nNelson\nWallace\nCraig\nDon\nHugh\nKarl\nLaurence\nLeroy\nLester\nWilfred\nAlphonse\nClaude\nClayton\nDean\nEarle\nEdgar\nGeoffrey\nMarc\nRonnie\nSidney\nTerrence\nAlex\nAndre\nCarmen\nChristian\nDave\nEddie\nEmil\nGlenn\nJesse\nJim\nRene\nTony\nArmand\nBob\nCalvin\nClyde\nEdmond\nFranklin\nJoe\nMarcel\nMarshall\nMarvin\nMelvin\nMike\nNeal\nReginald\nRodney\nRudolph\nTerence\nAnton\nBryan\nCarlton\nClinton\nDale\nDan\nEmile\nFredrick\nJimmy\nKent\nKurt\nLionel\nLucien\nMalcolm\nMilton\nNick\nSebastian\nTom\nVito\nCarleton\nConrad\nDenis\nDuncan\nElmer\nFrederic\nHerman\nLuther\nMarco\nMelvyn\nNoel\nNormand\nOscar\nPatsy\nRocco\nRobert\nJohn\nRichard\nWilliam\nJames\nJoseph\nThomas\nDavid\nEdward\nMichael\nGeorge\nRonald\nCharles\nPaul\nPeter\nDonald\nRaymond\nFrank\nAnthony\nKenneth\nArthur\nStephen\nWalter\nFrancis\nDaniel\nPhilip\nGerald\nDennis\nGary\nRoger\nAlbert\nLouis\nBruce\nLawrence\nHenry\nFrederick\nRalph\nFred\nDouglas\nCarl\nVincent\nHarold\nAndrew\nStanley\nAlan\nNorman\nHoward\nRussell\nEugene\nAlfred\nTheodore\nBrian\nNicholas\nWayne\nHarry\nMartin\nBarry\nJeffrey\nAllen\nErnest\nJack\nMark\nLeonard\nSteven\nBernard\nTimothy\nHerbert\nRoy\nJerry\nPatrick\nVictor\nAlexander\nAllan\nLarry\nClifford\nSalvatore\nEdwin\nLee\nGordon\nGerard\nLeon\nRoland\nJoel\nChristopher\nEarl\nGene\nKevin\nPhillip\nSamuel\nJon\nLeo\nLeroy\nMalcolm\nJerome\nEverett\nFranklin\nHarvey\nWarren\nArnold\nChester\nGregory\nMatthew\nAngelo\nDon\nEdmund\nGilbert\nLeslie\nTerry\nBenjamin\nDominic\nEric\nJay\nJonathan\nLewis\nMilton\nPasquale\nKarl\nArmand\nGuy\nMarshall\nStuart\nDominick\nLaurence\nLloyd\nSteve\nBill\nBurton\nCraig\nMaurice\nNelson\nRocco\nTom\nWesley\nFloyd\nGlenn\nHugh\nJoe\nSebastian\nWilfred\nClarence\nMelvin\nBob\nJim\nRonnie\nWallace\nAlex\nBryan\nDale\nEdmond\nFrederic\nKeith\nKurt\nLester\nAlphonse\nBradford\nCarmen\nConrad\nIrving\nKent\nMarvin\nNeil\nRodney\nRudolph\nSidney\nTerrence\nWillard\nAndre\nDomenic\nFredrick\nGeoffrey\nMike\nMitchell\nMyron\nNeal\nPat\nRay\nTommy\nTony\nWilson\nAlvin\nAugust\nDanny\nDenis\nDuncan\nEddie\nGlen\nJulius\nManuel\nRoss\nSanford\nSpencer\nStewart\nWendell\nAlton\nChris\nClement\nClifton\nCurtis\nElliot\nFelix\nJean\nJerrold\nLincoln\nLionel\nNathan\nNoel\nRandall\nRandolph\nTed\nBert\nCarleton\nCarmine\nClayton\nClyde\nDave\nDuane\nDwight\nEdgar\nElmer\nEmery\nEmil\nGarry\nHerman\nJacob\nLance\nLowell\nMarc\nMorris\nRene\nRoderick\nScott\nWard\nWilbur\nWillie\nRobert\nJohn\nRichard\nWilliam\nJames\nDavid\nThomas\nJoseph\nMichael\nRonald\nGeorge\nEdward\nCharles\nPeter\nDonald\nPaul\nRaymond\nKenneth\nAnthony\nFrank\nArthur\nGerald\nStephen\nDennis\nGary\nDaniel\nRoger\nLouis\nFrancis\nWalter\nBruce\nAlbert\nPhilip\nAndrew\nStanley\nHenry\nLawrence\nFrederick\nRalph\nDouglas\nCarl\nAlan\nFred\nHarold\nTheodore\nNorman\nBrian\nVincent\nEugene\nHoward\nAlfred\nErnest\nWayne\nRussell\nLeonard\nBarry\nSteven\nMark\nJeffrey\nPatrick\nNicholas\nTimothy\nAllan\nHarry\nMartin\nVictor\nClifford\nSamuel\nRoy\nAllen\nJack\nSalvatore\nWarren\nJerry\nAlexander\nLeon\nLarry\nBernard\nGordon\nHerbert\nJoel\nCraig\nChristopher\nGilbert\nLee\nEdwin\nEarl\nLeroy\nMaurice\nBenjamin\nKevin\nLeo\nNeil\nPhillip\nClarence\nEdmund\nGene\nGerard\nGregory\nJerome\nJonathan\nLewis\nArnold\nChester\nEverett\nLeslie\nRodney\nRoland\nTerrence\nTerry\nHarvey\nKeith\nJay\nKarl\nMatthew\nPasquale\nRocco\nSteve\nStuart\nAngelo\nBob\nEric\nTom\nDominic\nDwight\nGlenn\nJoe\nLester\nMario\nArmand\nJon\nMalcolm\nClifton\nDon\nMarshall\nRay\nDean\nFrederic\nHugh\nMarvin\nAlvin\nBill\nCalvin\nClyde\nDuane\nEdgar\nGuy\nClaude\nDominick\nEdmond\nFranklin\nFredrick\nJeff\nMilton\nNelson\nReginald\nSheldon\nTony\nVernon\nAlphonse\nAndre\nDale\nEddie\nJean\nJim\nKurt\nLaurence\nTerrance\nWilfred\nBilly\nBryan\nCurtis\nDanny\nDave\nDenis\nDomenic\nFloyd\nGlen\nJerald\nLloyd\nLynn\nMelvin\nPete\nRandall\nRonnie\nScott\nStewart\nWesley\nAlton\nAustin\nBradford\nClayton\nIrving\nJan\nMarc\nPatsy\nRene\nSidney\nTed\nAdam\nAlex\nBurton\nByron\nCarmen\nEarle\nGarry\nIvan\nLoren\nMike\nNeal\nNick\nNormand\nRandolph\nRoss\nRudolph\nBradley\nCarleton\nCarlton\nClement\nClinton\nConrad\nElliott\nEmilio\nFelix\nFredric\nGeoffrey\nGus\nHerman\nJulius\nKent\nLance\nLeopold\nLucien\nLyman\nMarcel\nNoel\nPatricia\nRoderick\nSam\nThaddeus\nRobert\nJohn\nRichard\nWilliam\nJames\nDavid\nThomas\nJoseph\nMichael\nEdward\nGeorge\nDonald\nRonald\nCharles\nPaul\nPeter\nRaymond\nFrank\nAnthony\nKenneth\nGary\nStephen\nArthur\nBruce\nLawrence\nDennis\nRoger\nWalter\nFrancis\nDaniel\nGerald\nLouis\nFrederick\nAlan\nPhilip\nHenry\nRalph\nDouglas\nCarl\nAlbert\nBrian\nEugene\nWayne\nHarold\nRussell\nStanley\nAndrew\nVincent\nLeonard\nHoward\nBarry\nPatrick\nNorman\nTheodore\nAlfred\nNicholas\nErnest\nMark\nMartin\nFred\nHarry\nTimothy\nVictor\nSteven\nJeffrey\nLarry\nAllan\nBernard\nLee\nChristopher\nEarl\nJack\nRoy\nSalvatore\nAllen\nHerbert\nJonathan\nSamuel\nChester\nJon\nAlexander\nArnold\nClifford\nKevin\nCraig\nJerry\nTerry\nEdmund\nRoland\nJerome\nJoel\nNeil\nEric\nGregory\nWarren\nDominic\nEdwin\nGlenn\nGordon\nLeo\nLeroy\nPhillip\nClayton\nKeith\nJay\nKarl\nLaurence\nLeon\nRodney\nTom\nLeslie\nLewis\nMalcolm\nDon\nPasquale\nBenjamin\nGerard\nGilbert\nMarc\nMatthew\nAngelo\nGene\nHarvey\nJoe\nMarshall\nStuart\nWallace\nBurton\nDominick\nMaurice\nSteve\nDale\nDwight\nEverett\nGuy\nMarvin\nMelvin\nRonnie\nWilfred\nArmand\nBryan\nCurtis\nDana\nFloyd\nFranklin\nFredrick\nHugh\nJan\nNelson\nAlvin\nAugust\nCalvin\nGeoffrey\nMilton\nAlex\nDean\nDenis\nEddie\nEdmond\nLester\nMario\nMike\nRay\nRudolph\nTerrence\nWesley\nBill\nBob\nClaude\nClifton\nEmil\nFrederic\nGlen\nJimmy\nLloyd\nManuel\nScott\nAlphonse\nClarence\nClement\nClinton\nDanny\nDave\nKurt\nMicheal\nRene\nRoss\nSanford\nTerrance\nTony\nWinston\nAustin\nBartholomew\nBilly\nBradford\nByron\nCarmen\nCarmine\nClyde\nConrad\nDarryl\nElliott\nElmer\nErwin\nGaetano\nHerman\nIrving\nJean\nKent\nKerry\nLance\nLeland\nMiles\nNeal\nNick\nNormand\nPete\nReginald\nSterling\nStewart\nTed\nWhitney\nWillie\nRobert\nJohn\nRichard\nWilliam\nJames\nThomas\nDavid\nJoseph\nEdward\nMichael\nPaul\nPeter\nDonald\nGeorge\nCharles\nRonald\nKenneth\nFrank\nAnthony\nRaymond\nGary\nStephen\nDaniel\nDennis\nArthur\nAlan\nRoger\nBruce\nWalter\nFrancis\nLawrence\nHenry\nFrederick\nGerald\nLouis\nPhilip\nAlbert\nJeffrey\nWayne\nDouglas\nMark\nCarl\nRalph\nBrian\nLeonard\nAndrew\nEugene\nStanley\nVincent\nHarry\nHarold\nRussell\nSteven\nLarry\nTheodore\nNicholas\nAlfred\nFred\nMartin\nTimothy\nPatrick\nBarry\nErnest\nRoy\nHoward\nAllen\nNorman\nGregory\nAllan\nEdwin\nClifford\nGordon\nJonathan\nBernard\nChristopher\nJack\nSamuel\nVictor\nKevin\nRoland\nTerry\nCraig\nEric\nWarren\nEarl\nJoel\nGene\nJerry\nAlexander\nGerard\nLee\nLeslie\nLewis\nMatthew\nSalvatore\nKeith\nLeo\nNeil\nArnold\nBenjamin\nChester\nFranklin\nLeon\nStuart\nHerbert\nJon\nRay\nGlenn\nKarl\nDean\nEdmund\nGilbert\nHarvey\nLaurence\nMarshall\nPhillip\nScott\nDwight\nGeoffrey\nJay\nNelson\nSteve\nDominic\nGuy\nLeroy\nRodney\nTerrence\nDale\nFredrick\nMaurice\nEverett\nKent\nMalcolm\nMelvin\nPasquale\nTom\nDenis\nDominick\nDon\nEdgar\nFloyd\nHugh\nJoe\nLance\nRandall\nAngelo\nBill\nBurton\nJim\nJulius\nMarc\nNeal\nRocco\nVernon\nBob\nCalvin\nCarmen\nConrad\nEdmond\nElmer\nMarvin\nReginald\nWallace\nWesley\nAlex\nDanny\nHerman\nJerome\nKurt\nLloyd\nMike\nNormand\nWilfred\nAlvin\nAndre\nByron\nCarlton\nCurtis\nDave\nEddie\nFrederic\nJulian\nLester\nManuel\nMilton\nNathan\nOliver\nRoss\nSeth\nStephan\nTed\nWillard\nArmand\nClarence\nClaude\nClement\nDuane\nLionel\nMorris\nNoel\nOwen\nPreston\nRandolph\nRobin\nRonnie\nSammy\nSebastian\nSidney\nSterling\nStewart\nTerrance\nWade\nWillie\nRobert\nJohn\nRichard\nWilliam\nJames\nThomas\nDavid\nMichael\nJoseph\nPaul\nEdward\nRonald\nGeorge\nPeter\nCharles\nDonald\nFrank\nKenneth\nRaymond\nDennis\nGary\nDaniel\nAnthony\nStephen\nBruce\nAlan\nRoger\nWalter\nArthur\nFrancis\nGerald\nDouglas\nAlbert\nLawrence\nMark\nLouis\nCarl\nJeffrey\nFrederick\nPhilip\nBrian\nWayne\nGregory\nAndrew\nRalph\nSteven\nHenry\nBarry\nStanley\nRussell\nVincent\nFred\nTimothy\nAlfred\nEugene\nLeonard\nHoward\nHarry\nPatrick\nHarold\nMartin\nLarry\nTheodore\nNicholas\nNorman\nAllen\nSamuel\nChristopher\nRoy\nAllan\nErnest\nJonathan\nCraig\nClifford\nGlenn\nBernard\nJack\nTerry\nEric\nNeil\nGordon\nLee\nAlexander\nDale\nHerbert\nJay\nKevin\nLeslie\nChester\nJerry\nLeo\nVictor\nEdwin\nJoel\nWarren\nLeon\nLewis\nScott\nStuart\nKeith\nRoland\nRodney\nEarl\nJon\nLeroy\nMatthew\nMaurice\nEdmund\nMelvin\nArnold\nBenjamin\nFranklin\nGeoffrey\nJoe\nBill\nGilbert\nGuy\nKarl\nMalcolm\nSalvatore\nWallace\nGene\nHugh\nSteve\nAlvin\nDon\nGerard\nNeal\nTerrence\nDominic\nJerome\nMarc\nMarshall\nMarvin\nClarence\nEmil\nGlen\nHarvey\nPasquale\nPhillip\nBurton\nChris\nLaurence\nNelson\nRay\nBryan\nCarlton\nClinton\nCurtis\nDean\nDominick\nDwight\nFrederic\nKurt\nRonnie\nVernon\nAndre\nAngelo\nCarmen\nClayton\nDanny\nDave\nDomenic\nEddie\nJim\nPat\nRandall\nTom\nWesley\nFredrick\nJohnny\nLester\nMario\nNoel\nReginald\nRobin\nRocco\nRoss\nWard\nWilfred\nAlphonse\nBradley\nConrad\nDuncan\nIrving\nJan\nMike\nMilton\nMitchell\nNathan\nPhil\nRandolph\nRandy\nStewart\nTerrance\nTommy\nWillie\nAlex\nArmand\nBob\nBradford\nCalvin\nClark\nClyde\nDana\nDuane\nFelix\nKent\nMyron\nNormand\nOwen\nPete\nVaughn\nWillard\nAaron\nAntonio\nBennett\nBryant\nCarmine\nChristian\nDenis\nEdmond\nEverett\nGregg\nHerman\nJesse\nLance\nLionel\nLloyd\nMicheal\nPatsy\nRodger\nSam\nShaun\nSpencer\nTerence\nRobert\nJohn\nRichard\nWilliam\nJames\nThomas\nDavid\nJoseph\nMichael\nPaul\nRonald\nPeter\nEdward\nGeorge\nCharles\nDonald\nFrank\nKenneth\nGary\nDennis\nAnthony\nRaymond\nDaniel\nStephen\nBruce\nAlan\nWalter\nLawrence\nGregory\nMark\nLouis\nGerald\nRoger\nWayne\nPhilip\nArthur\nFrancis\nDouglas\nJeffrey\nSteven\nAlbert\nBrian\nHenry\nCarl\nFrederick\nVincent\nAndrew\nRalph\nHoward\nLeonard\nBarry\nHarold\nTimothy\nFred\nTheodore\nRussell\nNorman\nPatrick\nEugene\nNicholas\nHarry\nChristopher\nStanley\nGlenn\nMartin\nLarry\nAlfred\nAllen\nKevin\nErnest\nCraig\nRoy\nJonathan\nKeith\nAllan\nJay\nJack\nBernard\nClifford\nSamuel\nLee\nEric\nTerry\nEdwin\nLeo\nJoel\nMatthew\nPhillip\nSalvatore\nWarren\nGordon\nEarl\nGerard\nJerome\nLewis\nScott\nGene\nJerry\nRodney\nRoland\nHerbert\nStuart\nTerrence\nVictor\nArnold\nGeoffrey\nLeslie\nSteve\nChester\nAngelo\nEdmund\nLeon\nNeil\nRandall\nJon\nWesley\nAlexander\nBill\nDean\nCalvin\nHarvey\nKarl\nLeroy\nLloyd\nDwight\nGilbert\nMarshall\nDana\nGlen\nGuy\nLaurence\nDominic\nHugh\nKent\nMarc\nMaurice\nPasquale\nBenjamin\nDale\nDon\nKurt\nChris\nDenis\nJoe\nLester\nRene\nBradley\nClark\nDan\nEverett\nFranklin\nJeff\nMike\nMilton\nNelson\nRocco\nSam\nWallace\nBob\nJim\nJohnny\nWillard\nAlphonse\nClarence\nClaude\nClayton\nDanny\nDarrell\nDave\nDuane\nEdgar\nFredrick\nGabriel\nGreg\nMalcolm\nMario\nTom\nCurtis\nDominick\nElliott\nJan\nJeffery\nMarvin\nMyles\nRoderick\nTerence\nVernon\nVito\nWilfred\nWillie\nAlvin\nArmand\nBradford\nBurton\nCarmine\nClyde\nDarryl\nIra\nLance\nManuel\nNoel\nOliver\nPete\nRandolph\nRay\nReginald\nRonnie\nAlex\nAntonio\nBarton\nClinton\nDane\nDomenic\nDuncan\nEarle\nEdmond\nFrederic\nGregg\nIrving\nJulius\nKim\nMarcel\nMitchell\nNathaniel\nRicky\nSheldon\nSidney\nStewart\nTommy\nBilly\nBryan\nChuck\nConrad\nCornelius\nDrew\nEmanuel\nEmile\nFloyd\nGarry\nJean\nJimmy\nJustin\nLucien\nLuke\nNeal\nPatsy\nPreston\nSebastian\nTed\nTerrance\nWilbur\nWinston\nRobert\nJohn\nWilliam\nRichard\nJames\nThomas\nDavid\nMichael\nJoseph\nPaul\nEdward\nPeter\nCharles\nGeorge\nDonald\nRonald\nGary\nKenneth\nFrank\nStephen\nBruce\nAnthony\nDaniel\nDennis\nRaymond\nMark\nLawrence\nAlan\nSteven\nArthur\nPhilip\nLouis\nJeffrey\nGregory\nFrancis\nWalter\nWayne\nRoger\nDouglas\nGerald\nBrian\nFrederick\nAndrew\nAlbert\nHenry\nCarl\nVincent\nTimothy\nRalph\nKevin\nStanley\nLeonard\nFred\nHoward\nNicholas\nRussell\nEugene\nHarold\nPatrick\nLarry\nGlenn\nChristopher\nMartin\nTheodore\nCraig\nHarry\nJonathan\nBarry\nErnest\nAlfred\nClifford\nAllen\nRoy\nEdwin\nNorman\nSalvatore\nLee\nMarc\nVictor\nEric\nJay\nKeith\nAllan\nBernard\nWarren\nSamuel\nAlexander\nGerard\nLeo\nChester\nGordon\nJack\nJon\nPhillip\nStuart\nEarl\nHerbert\nLeon\nJerry\nJoel\nScott\nRodney\nGeoffrey\nNeil\nKarl\nEdmund\nRoland\nSteve\nTerrence\nArnold\nMarshall\nDale\nRandall\nBenjamin\nGene\nMarvin\nGlen\nLaurence\nMatthew\nCarmen\nClarence\nDominic\nFranklin\nGuy\nPasquale\nRay\nTerry\nDenis\nDon\nJerome\nLloyd\nMaurice\nBill\nBradford\nCurtis\nDana\nDave\nLewis\nManuel\nRandolph\nRocco\nVernon\nDean\nFredrick\nHarvey\nKent\nRobin\nWesley\nAngelo\nCalvin\nGilbert\nKurt\nBradley\nBryan\nBurton\nClark\nEdmond\nFrederic\nHerman\nJoe\nKim\nMario\nMelvin\nRandy\nSebastian\nDanny\nLeroy\nLeslie\nMilton\nNathaniel\nRonnie\nRoss\nVito\nWallace\nWillie\nBob\nByron\nClayton\nConrad\nDuane\nEverett\nGreg\nIrving\nJesse\nMalcolm\nMicheal\nMorris\nNeal\nNoel\nSidney\nTodd\nTom\nAaron\nAlvin\nAndre\nArchie\nCarlton\nDomenic\nDominick\nEdgar\nJeff\nLance\nLoren\nMike\nMitchell\nRene\nRoderick\nRudy\nSpencer\nStephan\nTed\nWilfred\nAlex\nBarton\nCharlie\nCurt\nDan\nDane\nDwight\nFelix\nFloyd\nHugh\nIra\nJan\nJason\nJeffery\nJimmy\nJulian\nLuke\nMarcel\nMiles\nOliver\nOwen\nReginald\nRicky\nVaughn\nWillis\nRobert\nJohn\nWilliam\nRichard\nJames\nDavid\nMichael\nThomas\nJoseph\nPaul\nEdward\nPeter\nCharles\nDonald\nRonald\nGary\nGeorge\nKenneth\nStephen\nMark\nFrank\nAnthony\nBruce\nDennis\nDaniel\nRaymond\nSteven\nLawrence\nPhilip\nJeffrey\nFrancis\nTimothy\nAlan\nDouglas\nWalter\nGregory\nFrederick\nGerald\nArthur\nWayne\nRoger\nBrian\nAlbert\nKevin\nLouis\nCarl\nRalph\nHenry\nVincent\nChristopher\nHarold\nStanley\nHoward\nBarry\nLeonard\nPatrick\nRussell\nTheodore\nAndrew\nEugene\nLarry\nNicholas\nHarry\nMartin\nGlenn\nJonathan\nCraig\nErnest\nNorman\nAlfred\nAllen\nJack\nEric\nKeith\nSamuel\nAllan\nClifford\nRoy\nWarren\nFred\nAlexander\nLee\nScott\nNeil\nSalvatore\nJay\nLeo\nLeon\nGordon\nStuart\nBernard\nLewis\nMarc\nArnold\nLeslie\nMatthew\nVictor\nRandall\nDale\nHerbert\nJerry\nJon\nPhillip\nEarl\nEdwin\nLester\nRoland\nRodney\nTerry\nBenjamin\nChester\nJoel\nKarl\nDominic\nGerard\nGuy\nBradford\nHarvey\nKurt\nFranklin\nGilbert\nMaurice\nPasquale\nBurton\nCurtis\nDwight\nEdmund\nGene\nBradley\nClarence\nDana\nMilton\nRay\nRocco\nTerrence\nCarmen\nChris\nClinton\nGlen\nJerome\nMelvin\nWillie\nAngelo\nCalvin\nDean\nGeoffrey\nMario\nReginald\nTerrance\nWallace\nWesley\nAlvin\nArmand\nDominick\nDon\nEverett\nHugh\nJoe\nLeland\nMike\nNelson\nRene\nRudolph\nBryan\nCarmine\nDomenic\nDuane\nIra\nJan\nLance\nLucien\nMarshall\nAlex\nClayton\nDanny\nDarryl\nDave\nDrew\nEarle\nGarry\nGregg\nJulian\nKent\nKirk\nNormand\nPat\nRoderick\nSidney\nSteve\nStewart\nTerence\nAlphonse\nAntonio\nBrien\nCarlton\nClement\nDenis\nGreg\nJean\nJulius\nLaurence\nLeroy\nLloyd\nMalcolm\nMarvin\nMyles\nNeal\nSebastian\nTom\nVernon\nVito\nAllyn\nBill\nChristian\nClaude\nClifton\nEdgar\nEmil\nFloyd\nFredrick\nGabriel\nGrant\nJason\nJeffery\nJeremiah\nKim\nMitchell\nRandolph\nRandy\nRick\nRoss\nSeth\nShawn\nSheldon\nSherman\nTodd\nTyrone\nWard\nWilbur\nWilfred\nWillard\nRobert\nJohn\nWilliam\nRichard\nDavid\nJames\nMichael\nThomas\nJoseph\nPaul\nEdward\nGary\nCharles\nPeter\nMark\nRonald\nDonald\nGeorge\nStephen\nKenneth\nDennis\nBruce\nAnthony\nDaniel\nRaymond\nFrank\nAlan\nSteven\nDouglas\nLawrence\nJeffrey\nBrian\nKevin\nFrancis\nGregory\nFrederick\nRoger\nTimothy\nPhilip\nWayne\nArthur\nLouis\nAndrew\nGerald\nWalter\nVincent\nChristopher\nHenry\nAlbert\nRalph\nStanley\nCarl\nNicholas\nRussell\nLeonard\nBarry\nMartin\nAlfred\nHarold\nPatrick\nHoward\nEugene\nKeith\nGlenn\nJonathan\nLarry\nCraig\nTheodore\nScott\nHarry\nNorman\nEric\nClifford\nAllen\nErnest\nRoy\nFred\nVictor\nLee\nSalvatore\nEdwin\nGordon\nJack\nWarren\nNeil\nAlexander\nMatthew\nSamuel\nGuy\nStuart\nBernard\nDale\nAllan\nJon\nGene\nRandall\nEarl\nKarl\nRoland\nDean\nJerry\nMarc\nBenjamin\nJay\nKurt\nPhillip\nBradford\nTerry\nJoel\nArnold\nChester\nHerbert\nRodney\nTerrence\nWesley\nDana\nLeo\nDwight\nGeoffrey\nHarvey\nJerome\nLeon\nLester\nLloyd\nRandolph\nWillie\nBryan\nCalvin\nEdmund\nGerard\nGilbert\nGlen\nLewis\nMaurice\nRocco\nDuane\nFredrick\nLaurence\nReginald\nAngelo\nClarence\nDominic\nHugh\nLeroy\nRandy\nRobin\nCarmen\nClayton\nLeslie\nMarvin\nPasquale\nRoderick\nVernon\nBradley\nBrent\nChristian\nCurtis\nDon\nIra\nLance\nSean\nWilfred\nAlex\nAntonio\nCarlton\nClyde\nDanny\nDomenic\nEverett\nFranklin\nKent\nKirk\nMalcolm\nMorris\nNelson\nVito\nAlvin\nArmand\nByron\nChris\nDominick\nFloyd\nFrederic\nJan\nNathaniel\nNeal\nOwen\nRoss\nWallace\nAndre\nCarmine\nClaude\nConrad\nDarrell\nDave\nEmil\nGabriel\nJeffery\nJesse\nJulius\nLonnie\nMario\nMarshall\nMitchell\nPat\nRicky\nTerence\nTodd\nAustin\nBrendan\nColin\nDenis\nDuncan\nEllsworth\nFredric\nGarry\nHarris\nIrving\nKim\nMelvin\nMilton\nNathan\nNoel\nPatsy\nRene\nRonnie\nSam\nSidney\nStephan\nStewart\nThaddeus\nWilbur\nRobert\nJohn\nRichard\nJames\nWilliam\nMichael\nDavid\nThomas\nJoseph\nGary\nPaul\nPeter\nEdward\nMark\nCharles\nStephen\nGeorge\nDonald\nRonald\nKenneth\nBruce\nDennis\nAnthony\nDaniel\nFrank\nSteven\nRaymond\nGregory\nJeffrey\nTimothy\nDouglas\nWayne\nFrancis\nLawrence\nBrian\nAlan\nKevin\nPhilip\nWalter\nChristopher\nFrederick\nGerald\nRoger\nAndrew\nLouis\nArthur\nStanley\nVincent\nRalph\nHenry\nBarry\nRussell\nCraig\nAlbert\nCarl\nGlenn\nPatrick\nKeith\nScott\nLarry\nLeonard\nEugene\nNicholas\nTheodore\nMartin\nAlfred\nJonathan\nHarold\nErnest\nHarry\nClifford\nHoward\nAllen\nEric\nDale\nMatthew\nFred\nLee\nRoy\nVictor\nBernard\nGordon\nSamuel\nAlexander\nNorman\nJoel\nWarren\nEdwin\nMarc\nRandall\nStuart\nAllan\nNeil\nJack\nJay\nEarl\nGuy\nHerbert\nPhillip\nDean\nKarl\nLeo\nSalvatore\nBenjamin\nBradley\nCurtis\nEdmund\nMitchell\nTerry\nBradford\nDana\nRoland\nGeoffrey\nGlen\nJerome\nJon\nGerard\nChester\nDominic\nDominick\nJerry\nKurt\nLeon\nRandolph\nReginald\nRodney\nDwight\nLeslie\nLewis\nRandy\nTerrence\nWesley\nAngelo\nKim\nLaurence\nLloyd\nSteve\nDanny\nFranklin\nGilbert\nRay\nRoss\nWallace\nArnold\nHarvey\nKent\nSeth\nTodd\nClayton\nFredrick\nNelson\nRobin\nRocco\nBurton\nDon\nDuane\nEdmond\nEverett\nGarry\nKerry\nLance\nMalcolm\nNeal\nPasquale\nSean\nAlex\nAlvin\nAntonio\nCarlton\nCarmen\nGene\nIrving\nJeffery\nMarshall\nReed\nSidney\nStewart\nCalvin\nClaude\nDomenic\nEdgar\nEmil\nFloyd\nManuel\nMaurice\nMelvin\nRene\nRonnie\nVernon\nBrent\nBryan\nDenis\nDuncan\nGarrett\nGregg\nHugh\nJohnny\nJose\nLeigh\nLeroy\nMarvin\nMicheal\nMike\nPreston\nRudolph\nTerrance\nTony\nAndre\nBill\nChris\nChristian\nClarence\nClark\nConrad\nDan\nDaryl\nDerek\nEarle\nElmer\nFrederic\nGreg\nHorace\nIra\nJan\nJesse\nKirk\nLester\nLynn\nMarcus\nMilton\nNathan\nNoel\nOliver\nRoderick\nTerence\nThaddeus\nWilfred\nWillie\nRobert\nJohn\nRichard\nMichael\nJames\nDavid\nWilliam\nThomas\nGary\nJoseph\nPaul\nPeter\nMark\nEdward\nCharles\nDonald\nStephen\nKenneth\nRonald\nDaniel\nSteven\nGeorge\nDennis\nBruce\nAnthony\nRaymond\nKevin\nFrank\nWayne\nJeffrey\nAlan\nGregory\nTimothy\nLawrence\nBrian\nDouglas\nWalter\nChristopher\nPhilip\nRoger\nArthur\nLouis\nFrancis\nFrederick\nAndrew\nKeith\nGerald\nHenry\nCarl\nRalph\nScott\nCraig\nVincent\nAlbert\nGlenn\nMartin\nPatrick\nStanley\nRussell\nNicholas\nTheodore\nLeonard\nEugene\nJonathan\nBarry\nHarold\nLarry\nHoward\nNorman\nAlfred\nHarry\nClifford\nAllen\nErnest\nMarc\nEric\nAlexander\nJack\nJay\nRoy\nLee\nMatthew\nLeo\nGuy\nRandall\nGordon\nBernard\nCurtis\nEarl\nSamuel\nAllan\nKurt\nRoland\nBradford\nSalvatore\nVictor\nJon\nNeil\nDale\nFred\nGerard\nGilbert\nJerry\nWarren\nGene\nGlen\nRandy\nBenjamin\nBradley\nChester\nDana\nLaurence\nRodney\nDanny\nDean\nEdmund\nEdwin\nLeslie\nTerry\nGeoffrey\nJoel\nHerbert\nKarl\nRocco\nWesley\nDwight\nKim\nKirk\nLance\nMitchell\nPhillip\nStuart\nBryan\nDuane\nJeffery\nJerome\nJesse\nLewis\nRandolph\nCalvin\nClarence\nMilton\nRudolph\nKent\nRobin\nAngelo\nDominic\nDominick\nFranklin\nGarry\nLeon\nLloyd\nRoss\nSteve\nWallace\nArmand\nClinton\nDenis\nDon\nHugh\nJan\nMario\nMarvin\nNelson\nRay\nTodd\nWillie\nAlvin\nArnold\nBill\nDarryl\nDave\nManuel\nMaurice\nNeal\nPasquale\nReginald\nRene\nAlphonse\nAntonio\nBrad\nChris\nConrad\nGrant\nGregg\nKerry\nLester\nMicheal\nRicky\nTed\nAaron\nClayton\nDan\nEdgar\nEdmond\nFloyd\nHarvey\nIra\nLeroy\nStewart\nTerrence\nVernon\nCarmen\nClyde\nDane\nDuncan\nFrederic\nFredrick\nIrving\nJohnny\nJose\nJustin\nLuke\nMalcolm\nMarcel\nMarshall\nMike\nOscar\nPerry\nRick\nRonnie\nSean\nTom\nAlex\nBrien\nByron\nColin\nDante\nDarrell\nDaryl\nDerek\nDrew\nErick\nJacob\nJeff\nJim\nJoe\nNathaniel\nOwen\nRaphael\nRicardo\nRoman\nSheldon\nSidney\nStephan\nThaddeus\nVito\nWilfred\nWillard\nJohn\nRobert\nDavid\nMichael\nJames\nRichard\nWilliam\nThomas\nJoseph\nGary\nPaul\nMark\nEdward\nPeter\nStephen\nCharles\nDonald\nKenneth\nRonald\nJeffrey\nDaniel\nGeorge\nSteven\nKevin\nDennis\nBruce\nAnthony\nBrian\nRaymond\nFrank\nDouglas\nAlan\nWayne\nGregory\nLawrence\nTimothy\nChristopher\nWalter\nArthur\nFrancis\nPhilip\nAndrew\nRalph\nRoger\nPatrick\nLouis\nScott\nKeith\nHenry\nAlbert\nCarl\nFrederick\nGlenn\nGerald\nCraig\nBarry\nVincent\nEugene\nNicholas\nRussell\nLeonard\nHoward\nMartin\nEric\nJonathan\nStanley\nTheodore\nErnest\nLarry\nAlfred\nHarold\nNorman\nHarry\nGuy\nClifford\nGordon\nRoy\nJay\nBernard\nMatthew\nSamuel\nFred\nRandy\nWarren\nAllen\nAllan\nDean\nLee\nCurtis\nEdwin\nJerry\nMarc\nLeo\nVictor\nGlen\nKarl\nNeil\nStuart\nAlexander\nBradford\nHerbert\nLewis\nJon\nDale\nGerard\nJoel\nLeon\nKim\nLeslie\nRandall\nTodd\nBenjamin\nCalvin\nKurt\nTerry\nJack\nPhillip\nRodney\nDominick\nSalvatore\nBradley\nJeffery\nRoland\nWesley\nDominic\nEarl\nGene\nJerome\nMaurice\nDenis\nDana\nDwight\nFranklin\nGregg\nLloyd\nTerrence\nLester\nMitchell\nRicky\nDaryl\nDomenic\nGeoffrey\nHugh\nLaurence\nRocco\nChester\nClarence\nDanny\nEdmund\nJan\nMario\nNeal\nNelson\nRobin\nBryan\nChris\nGarry\nGilbert\nRoss\nAngelo\nPasquale\nSean\nWallace\nWillie\nAndre\nArnold\nBryant\nClaude\nDon\nGreg\nJose\nKent\nKirk\nLeroy\nMarcel\nMicheal\nMyron\nRandolph\nClinton\nDuane\nEdgar\nFredrick\nJesse\nOwen\nRonnie\nTed\nTom\nAlex\nChristian\nClark\nClayton\nCurt\nDave\nEverett\nKerry\nMilton\nRick\nRoderick\nSteve\nCarlos\nCarmen\nCarmine\nClifton\nDarryl\nEddie\nFloyd\nGrant\nHal\nIra\nIvan\nMarshall\nMarvin\nMorris\nNathan\nPreston\nRay\nReginald\nSebastian\nStewart\nAaron\nArmand\nBrad\nBrent\nCarlton\nEdmond\nFrederic\nJean\nJimmy\nLuis\nLynn\nMalcolm\nMelvin\nNathaniel\nOtto\nPerry\nRene\nRudolph\nSeth\nTerrance\nVito\nWard\nWilbur\nAdam\nAdrian\nAntonio\nBert\nBlair\nBlake\nBobby\nConrad\nDrew\nElliott\nHarvey\nIrving\nJacob\nJeff\nLamont\nLance\nLuke\nManuel\nMike\nMiles\nNoel\nRickey\nRoman\nSpencer\nTony\nVernon\nWade\nJohn\nRobert\nMichael\nDavid\nJames\nRichard\nWilliam\nThomas\nMark\nJoseph\nPaul\nGary\nPeter\nStephen\nEdward\nSteven\nCharles\nKenneth\nGeorge\nJeffrey\nDonald\nKevin\nRonald\nDaniel\nBruce\nAnthony\nFrank\nBrian\nRaymond\nTimothy\nDennis\nWayne\nDouglas\nGregory\nAlan\nScott\nLawrence\nChristopher\nFrancis\nFrederick\nWalter\nPhilip\nKeith\nAndrew\nArthur\nCarl\nPatrick\nRalph\nCraig\nHenry\nRoger\nGerald\nGlenn\nLouis\nAlbert\nBarry\nJonathan\nVincent\nRussell\nTheodore\nHarold\nNicholas\nMartin\nStanley\nLarry\nAlfred\nLeonard\nMarc\nEugene\nErnest\nHarry\nMatthew\nEric\nRandy\nAllen\nClifford\nHoward\nBernard\nGuy\nNeil\nSalvatore\nJon\nRoy\nVictor\nAlexander\nJay\nGerard\nDean\nNorman\nFred\nGordon\nKim\nSamuel\nTerry\nAllan\nDale\nJack\nEdwin\nLee\nWarren\nJerry\nGlen\nChester\nBenjamin\nEarl\nDana\nKurt\nJeffery\nJerome\nJoel\nKarl\nCurtis\nEdmund\nStuart\nBradford\nRandall\nBradley\nDanny\nLaurence\nRobin\nGene\nRodney\nTodd\nLeo\nPhillip\nDominic\nRicky\nLeon\nLeslie\nLewis\nDwight\nNelson\nWillie\nGeoffrey\nGilbert\nHerbert\nKent\nMario\nMelvin\nRoland\nWesley\nBryan\nGregg\nAngelo\nJose\nKerry\nLance\nRandolph\nSean\nSteve\nTerrence\nVernon\nCalvin\nDominick\nLeroy\nMitchell\nReginald\nRoss\nBrad\nDuane\nGarry\nLloyd\nMarvin\nMaurice\nNeal\nTed\nClarence\nDarryl\nFrederic\nJimmy\nKirk\nLester\nTerrance\nArnold\nChris\nDave\nDon\nGreg\nMarshall\nClaude\nHugh\nJesse\nMike\nRene\nRocco\nAntonio\nCarmine\nChristian\nClyde\nColin\nConrad\nDenis\nEdgar\nFranklin\nHarvey\nIrving\nMicheal\nSeth\nTerence\nAndre\nBrett\nDarrell\nDaryl\nFloyd\nIan\nJeff\nJoe\nManuel\nRick\nVito\nWillard\nAlex\nAlvin\nAngel\nByron\nCarmen\nCecil\nDan\nEdmond\nErik\nEverett\nFelix\nFrancisco\nFredrick\nHorace\nJan\nJim\nJuan\nMarcus\nMilton\nNoel\nOliver\nPat\nRay\nRudolph\nShawn\nSpencer\nTyler\nWallace\nWilfred\nAdrian\nArmand\nBilly\nBobby\nBrent\nBrien\nBurton\nCarlton\nClark\nClinton\nCornelius\nDane\nDerek\nDomenic\nElton\nErwin\nFredric\nIra\nJacob\nJeffry\nJoshua\nJulius\nLinwood\nLucian\nLuis\nLynn\nMarcel\nMiguel\nMorris\nNathan\nOscar\nPatsy\nPerry\nRaphael\nReed\nRickey\nSam\nSebastian\nSidney\nSylvester\nTeddy\nTimmy\nTommy\nTony\nRobert\nDavid\nJohn\nMichael\nJames\nWilliam\nRichard\nThomas\nMark\nJoseph\nGary\nPaul\nPeter\nStephen\nEdward\nSteven\nJeffrey\nDaniel\nCharles\nDonald\nKevin\nGeorge\nKenneth\nBruce\nRonald\nAnthony\nBrian\nRaymond\nTimothy\nFrank\nGregory\nDennis\nChristopher\nWayne\nPhilip\nDouglas\nLawrence\nAlan\nKeith\nScott\nLouis\nArthur\nWalter\nAndrew\nCraig\nVincent\nFrancis\nRoger\nJonathan\nGlenn\nCarl\nPatrick\nRalph\nFrederick\nRussell\nMartin\nEugene\nGerald\nBarry\nStanley\nMarc\nHenry\nAlbert\nJay\nTheodore\nNicholas\nLarry\nAllen\nEric\nMatthew\nHarold\nLeonard\nNorman\nErnest\nClifford\nHoward\nAlfred\nGuy\nRoy\nSamuel\nVictor\nKurt\nGlen\nJeffery\nKarl\nLeo\nPhillip\nRandall\nRandy\nNeil\nTerry\nFred\nJon\nHarry\nStuart\nAllan\nKim\nBernard\nJerry\nAlexander\nDean\nEdwin\nSalvatore\nJoel\nLee\nGeoffrey\nGordon\nBenjamin\nBradford\nBradley\nDale\nTodd\nJack\nCurtis\nRicky\nDana\nGene\nRodney\nKerry\nEdmund\nMitchell\nEarl\nHerbert\nLaurence\nSteve\nGerard\nGilbert\nWarren\nDanny\nLeon\nTerrence\nArnold\nBrad\nBryan\nMario\nRobin\nAngelo\nChester\nGarry\nRoland\nChris\nDominick\nGregg\nKent\nLance\nMarvin\nMicheal\nAlvin\nCalvin\nDave\nNeal\nNelson\nRick\nRocco\nRoss\nSean\nWillie\nClayton\nDon\nJerome\nKirk\nLeslie\nMelvin\nTed\nWesley\nBrent\nDarrell\nDominic\nDuane\nJose\nRay\nReginald\nConrad\nDenis\nDwight\nFredrick\nHarvey\nJeff\nMarshall\nMaurice\nNathaniel\nOscar\nRoderick\nTerence\nTony\nAntonio\nBill\nBrett\nColin\nDan\nDerek\nDrew\nEdgar\nFranklin\nHugh\nJan\nJohnny\nLewis\nLloyd\nPasquale\nRandolph\nAlton\nCarlos\nChristian\nClarence\nDarryl\nEddie\nEdmond\nFloyd\nJesse\nJulius\nLeigh\nLeroy\nLuis\nMilton\nNathan\nRonnie\nShawn\nStephan\nVernon\nAndre\nAndy\nBrien\nByron\nCarlton\nCarmen\nDaryl\nEvan\nJoesph\nLionel\nMalcolm\nManuel\nPerry\nSeth\nWilfred\nAaron\nAdam\nAdrian\nAlex\nAlphonse\nBobby\nBruno\nCary\nClinton\nClyde\nEverett\nGreg\nIrving\nJared\nJoe\nLester\nLuke\nLynn\nMike\nNick\nNormand\nRene\nSebastian\nSpencer\nAldo\nArchie\nArmand\nBrendan\nClaude\nCorey\nDamian\nDante\nDomenic\nDudley\nEmanuel\nErik\nErwin\nGabriel\nGrant\nIan\nJean\nJuan\nJulio\nLucien\nMary\nMiguel\nMorris\nRandal\nRicardo\nSanto\nStefan\nVito\nWallace\nWendell\nWillard\nRobert\nJohn\nDavid\nMichael\nJames\nRichard\nWilliam\nMark\nThomas\nJoseph\nPaul\nGary\nPeter\nEdward\nSteven\nStephen\nKevin\nBrian\nJeffrey\nDonald\nDaniel\nCharles\nRonald\nKenneth\nTimothy\nGeorge\nAnthony\nFrank\nBruce\nRaymond\nGregory\nScott\nDouglas\nChristopher\nDennis\nKeith\nAlan\nLawrence\nPhilip\nWayne\nAndrew\nRoger\nArthur\nWalter\nGlenn\nLouis\nRussell\nPatrick\nCraig\nFrederick\nJonathan\nFrancis\nCarl\nMatthew\nVincent\nGerald\nAlbert\nMartin\nRalph\nLeonard\nHenry\nTheodore\nLarry\nStanley\nAllen\nBarry\nEric\nNicholas\nHarold\nJay\nKurt\nNorman\nGuy\nRoy\nHoward\nMarc\nAlfred\nClifford\nRandy\nDean\nEugene\nFred\nLee\nErnest\nJoel\nKarl\nRicky\nSamuel\nAlexander\nVictor\nGlen\nGerard\nCurtis\nHarry\nJon\nSalvatore\nJerry\nJeffery\nRandall\nGeoffrey\nAllan\nTodd\nEarl\nGordon\nJack\nNeil\nBenjamin\nDale\nChris\nDana\nEdwin\nBernard\nBryan\nStuart\nKim\nLeo\nSean\nPhillip\nRodney\nRoland\nTerry\nWarren\nEdmund\nHerbert\nAngelo\nDuane\nJeff\nJerome\nLeslie\nRobin\nBradford\nJose\nSteve\nTom\nDanny\nDominic\nMike\nDarrell\nGregg\nMitchell\nRandolph\nRick\nTerrence\nGene\nKent\nNelson\nRay\nTony\nWesley\nLeon\nLewis\nMario\nRudolph\nArnold\nBill\nCalvin\nDwight\nMelvin\nNeal\nRonnie\nTerence\nDarryl\nDave\nDon\nGilbert\nJim\nLuis\nMarshall\nNathaniel\nRocco\nRoss\nChester\nKirk\nLance\nLester\nLloyd\nRene\nAlex\nBurton\nClarence\nDaryl\nDominick\nFredrick\nGreg\nHerman\nJason\nKerry\nLaurence\nStewart\nWillie\nAndre\nJan\nLeroy\nMathew\nMicheal\nSeth\nTerrance\nThaddeus\nAaron\nAlvin\nBrad\nBradley\nCarlton\nClaude\nClayton\nDan\nFranklin\nJimmy\nJuan\nLonnie\nMarvin\nShawn\nStephan\nTim\nBlair\nClark\nDerek\nFelix\nFrancisco\nHugh\nJoe\nMaurice\nRicardo\nRory\nVernon\nWallace\nWard\nAdam\nAndy\nAntonio\nBilly\nCarmen\nClinton\nColin\nConrad\nElliott\nHector\nJesse\nLeigh\nLeland\nMalcolm\nMarcus\nMilton\nPat\nPerry\nRon\nScot\nAdrian\nAlphonse\nByron\nClyde\nDrew\nEdmond\nFloyd\nFreddie\nGarry\nGarth\nIrving\nJustin\nKelly\nManuel\nMyron\nPasquale\nRafael\nReginald\nRoderick\nShaun\nTed\nTracy\nWendell\nAldo\nAlton\nBen\nBenedict\nBob\nBrien\nCarlos\nCarmine\nCurt\nDenis\nDino\nDouglass\nElliot\nElmer\nEvan\nFrancesco\nHarvey\nJaime\nJerald\nJoshua\nLionel\nLuke\nMarcel\nMarco\nNoel\nNormand\nPedro\nPierre\nRex\nRoyal\nSidney\nWade\nWilbur\nWillis\nWyatt\nMichael\nJohn\nRobert\nDavid\nJames\nRichard\nWilliam\nMark\nThomas\nJoseph\nPaul\nPeter\nGary\nSteven\nKevin\nJeffrey\nBrian\nStephen\nDonald\nDaniel\nKenneth\nEdward\nRonald\nAnthony\nCharles\nTimothy\nGeorge\nBruce\nScott\nFrank\nRaymond\nGregory\nKeith\nDouglas\nChristopher\nWayne\nAlan\nLawrence\nDennis\nLouis\nPhilip\nAndrew\nPatrick\nGlenn\nJonathan\nCarl\nCraig\nWalter\nRoger\nArthur\nFrancis\nRalph\nMatthew\nGerald\nRussell\nMartin\nHenry\nEric\nVincent\nFrederick\nAlbert\nNicholas\nLeonard\nJay\nDean\nRandy\nHarold\nTheodore\nLarry\nNorman\nBarry\nEugene\nClifford\nMarc\nStanley\nHoward\nJerry\nSteve\nGlen\nErnest\nFred\nVictor\nAlfred\nJoel\nKurt\nGuy\nHarry\nSamuel\nDale\nAllen\nKarl\nRoy\nLee\nSalvatore\nChris\nMike\nNeil\nEdwin\nJeff\nRandall\nTerry\nTom\nBryan\nDanny\nJon\nRicky\nTodd\nAllan\nBernard\nGerard\nJack\nBradley\nJose\nMitchell\nBradford\nEarl\nPhillip\nRoland\nBill\nGene\nGregg\nHerbert\nCurtis\nGordon\nJim\nWarren\nAlexander\nDwight\nNeal\nStuart\nCalvin\nLeon\nRobin\nAngelo\nJeffery\nJoe\nLeo\nRodney\nBenjamin\nKerry\nWesley\nDon\nGreg\nPerry\nDominic\nDana\nDarrell\nGeoffrey\nMaurice\nRonnie\nTim\nTony\nBrent\nChester\nJuan\nLance\nLeroy\nNelson\nBrad\nKent\nReginald\nRick\nSean\nVernon\nFranklin\nJerome\nLewis\nTerrence\nAlvin\nBob\nDave\nLeslie\nSeth\nAndre\nKim\nMarshall\nMicheal\nRocco\nShawn\nWillie\nAntonio\nDan\nDominick\nDuane\nFrederic\nGilbert\nMario\nNathaniel\nRay\nTed\nTerrance\nWilfred\nAlex\nDarryl\nDaryl\nDrew\nEdmund\nHector\nKirk\nLaurence\nLester\nRene\nTerence\nArmand\nClarence\nDoug\nKen\nNick\nPasquale\nRoss\nAngel\nArnold\nCarlos\nCarmen\nClinton\nColin\nConrad\nDerrick\nFredrick\nHal\nHugh\nJason\nJesse\nKyle\nLloyd\nManuel\nBilly\nClayton\nDenis\nGarry\nIrving\nKris\nMelvin\nPat\nPete\nRoberto\nRon\nRory\nShaun\nStewart\nTommy\nWallace\nAaron\nAdam\nBlair\nBrett\nCameron\nCarlton\nClyde\nDomenic\nDwayne\nEddie\nEdmond\nElliott\nErik\nFloyd\nHarvey\nJan\nJimmy\nLuis\nMarcel\nMarion\nMilton\nNoel\nRandolph\nRickey\nSam\nScot\nSebastian\nSheldon\nAdrian\nAndy\nBobby\nBurton\nClaude\nClifton\nCorey\nCory\nDerek\nDuncan\nErwin\nEverett\nFreddie\nHerman\nJeremiah\nJimmie\nJohnny\nJulius\nKendall\nMalcolm\nNathan\nOrlando\nPhil\nRicardo\nSidney\nThaddeus\nWillard\nAlphonse\nArchie\nBlaine\nCecil\nClay\nCliff\nDino\nFelix\nFernando\nGraham\nIra\nJean\nJoesph\nJude\nKelly\nKenny\nLeigh\nLincoln\nLorenzo\nLyle\nMarcus\nMiles\nMorris\nOliver\nRocky\nRudolph\nRuss\nShane\nSherwood\nSpencer\nWade\nWendell\nWilfredo\nWilson\nMichael\nRobert\nJohn\nDavid\nJames\nWilliam\nThomas\nRichard\nMark\nJoseph\nPaul\nPeter\nKevin\nSteven\nDaniel\nBrian\nGary\nJeffrey\nEdward\nStephen\nCharles\nDonald\nKenneth\nScott\nTimothy\nGeorge\nAnthony\nRonald\nChristopher\nFrank\nBruce\nDouglas\nRaymond\nGregory\nKeith\nWayne\nAlan\nLawrence\nDennis\nPhilip\nPatrick\nEric\nAndrew\nMatthew\nCraig\nCarl\nFrederick\nWalter\nRalph\nJonathan\nVincent\nJay\nAlbert\nFrancis\nArthur\nRussell\nLouis\nMartin\nGlenn\nNicholas\nGerald\nLarry\nDean\nHenry\nLeonard\nRoger\nStanley\nMike\nAlfred\nRandy\nDale\nTodd\nHarold\nHarry\nHoward\nChris\nJerry\nSteve\nVictor\nEdwin\nBarry\nJon\nAllen\nClifford\nMarc\nNorman\nKurt\nSamuel\nBill\nFred\nGlen\nTheodore\nErnest\nRicky\nCurtis\nEugene\nGuy\nLee\nRoy\nBryan\nKarl\nTom\nJeff\nNeil\nTerry\nBernard\nJack\nGordon\nSalvatore\nGeoffrey\nJim\nRandall\nSean\nAlexander\nGerard\nTony\nWarren\nBenjamin\nGreg\nTim\nBob\nDave\nDuane\nPhillip\nAllan\nDanny\nEarl\nBradley\nDarryl\nLeo\nRick\nStuart\nWesley\nDana\nGregg\nJerome\nJoe\nRonnie\nArnold\nBrett\nJoel\nRodney\nJeffery\nJose\nLeon\nTerrence\nTed\nAntonio\nDwight\nLeroy\nShawn\nLewis\nMitchell\nDarrell\nDaryl\nGarry\nMarvin\nNeal\nRay\nAndre\nBradford\nCalvin\nChester\nDan\nGene\nLester\nReginald\nClayton\nDominic\nEdmund\nHerbert\nLeslie\nLloyd\nLuis\nMelvin\nRobin\nRoland\nAlex\nAngelo\nBilly\nChristian\nKen\nWillie\nBret\nCarlos\nDenis\nKent\nManuel\nMaurice\nMicheal\nPerry\nSeth\nAaron\nCarmen\nClarence\nEdmond\nGilbert\nHerman\nJason\nJesse\nKirk\nLance\nNick\nRocco\nAlvin\nBart\nCarlton\nDarren\nKerry\nLaurence\nPat\nRon\nDon\nEdgar\nFloyd\nHugh\nJuan\nMario\nMarshall\nRandolph\nRene\nWilfred\nAdam\nBrad\nCarmine\nMalcolm\nPedro\nRoberto\nStewart\nTracy\nAlphonse\nAndy\nAngel\nBruno\nClaude\nDerek\nDino\nDomenic\nDoug\nDwayne\nEddie\nFranklin\nIan\nJoey\nJoshua\nKyle\nLuke\nNathan\nNelson\nRafael\nReed\nRoss\nShaun\nTerence\nTyrone\nAl\nArmand\nBrendan\nBrent\nClay\nDrew\nFelix\nFredrick\nGrant\nHarvey\nJimmy\nJulio\nJulius\nKenny\nKris\nMiguel\nMilton\nMorgan\nNoel\nRickey\nRoderick\nSam\nScot\nTimmy\nTod\nWendell\nWilfredo\nBurton\nClark\nClement\nClifton\nClyde\nDane\nDerrick\nDouglass\nEmil\nJamie\nJerald\nJordan\nKim\nMarcel\nMathew\nNathaniel\nNed\nPhil\nRamon\nTerrance\nTommy\nVernon\nVito\nWallace\nWilbur\nWilson\nAlfonso\nBobby\nBryce\nCarlo\nCliff\nClinton\nDominick\nEarle\nEvan\nEverett\nFreddie\nGerry\nHector\nHubert\nIsaac\nJan\nJeffry\nJimmie\nJohnnie\nJohnny\nLonnie\nLouie\nLucien\nMary\nMiles\nNormand\nPasquale\nQuentin\nRandal\nRex\nRicardo\nRory\nSidney\nStephan\nThaddeus\nWard\nJohn\nRobert\nMichael\nDavid\nJames\nMark\nWilliam\nRichard\nThomas\nJoseph\nPaul\nPeter\nSteven\nJeffrey\nBrian\nEdward\nKevin\nTimothy\nDaniel\nStephen\nKenneth\nCharles\nGary\nScott\nAnthony\nChristopher\nDonald\nRonald\nGregory\nFrank\nGeorge\nBruce\nRaymond\nDouglas\nAndrew\nPhilip\nWayne\nAlan\nPatrick\nEric\nCraig\nKeith\nDennis\nMatthew\nLouis\nArthur\nLawrence\nGlenn\nJonathan\nWalter\nVincent\nFrancis\nRussell\nRalph\nCarl\nFrederick\nRoger\nGerald\nMarc\nAlbert\nNicholas\nHenry\nLarry\nMartin\nTheodore\nJay\nHarold\nTodd\nChris\nRandy\nSteve\nBarry\nDean\nJon\nStanley\nEugene\nNorman\nRoy\nMike\nLeonard\nGuy\nRicky\nDale\nGlen\nNeil\nTom\nAlfred\nAllen\nHarry\nSamuel\nBill\nKurt\nBryan\nErnest\nSean\nEdwin\nGreg\nHoward\nJim\nJose\nLee\nRandall\nJack\nStuart\nAlexander\nKarl\nClifford\nCurtis\nTim\nJeff\nPhillip\nVictor\nAllan\nGerard\nJerry\nFred\nTerry\nBenjamin\nJeffery\nBernard\nDave\nRodney\nSalvatore\nShawn\nDana\nGordon\nJoe\nLeo\nTony\nDanny\nEarl\nMicheal\nAngelo\nWillie\nPerry\nBob\nBrett\nDominic\nJoel\nTerrence\nDarryl\nDaryl\nMitchell\nRay\nDarrell\nGeoffrey\nGregg\nLuis\nRick\nTed\nWarren\nBradford\nBradley\nGene\nJimmy\nRoland\nRonnie\nArnold\nBrad\nChester\nClayton\nKirk\nLance\nKent\nLaurence\nLloyd\nTyrone\nClarence\nDarren\nDwight\nEddie\nEdmund\nHerbert\nManuel\nMelvin\nNeal\nRene\nWesley\nBrent\nDuane\nJason\nKyle\nLeslie\nReginald\nTracy\nAndre\nBilly\nCarmen\nDan\nJerome\nKerry\nLester\nMarvin\nNelson\nPasquale\nPete\nSeth\nStewart\nChristian\nDenis\nDwayne\nGarry\nMario\nNathan\nNathaniel\nAaron\nAngel\nBret\nCarmine\nClyde\nCurt\nDerrick\nDon\nGilbert\nHector\nJohnny\nLeon\nNick\nNoel\nRocco\nRoss\nAdam\nBobby\nDominick\nDuncan\nErik\nFloyd\nHugh\nJamie\nLeroy\nLewis\nRicardo\nAntonio\nBart\nCarlos\nCharlie\nDoug\nJan\nJuan\nKen\nKim\nMarshall\nMaurice\nRandal\nRandolph\nTerence\nAlvin\nByron\nCalvin\nClinton\nColin\nEdgar\nFranklin\nGino\nIan\nIvan\nJean\nJulio\nOrlando\nRobin\nRory\nShaun\nVernon\nWallace\nBurton\nDerek\nDrew\nEdmond\nEverett\nFelix\nJesse\nJoey\nKris\nLuke\nLyle\nMatt\nOwen\nPat\nRoberto\nRon\nTommy\nVance\nVito\nAlberto\nAlex\nBrendan\nCary\nDamon\nDino\nDomenic\nEvan\nFernando\nFredrick\nGerry\nGrant\nIrving\nJody\nJoshua\nJulius\nKelly\nKenny\nLionel\nLoren\nLuther\nMathew\nMyron\nPierre\nRafael\nRudolph\nScot\nTerrance\nTimmy\nTyler\nWade\nWard\nWilfred\nAl\nAndy\nClaude\nCorey\nEd\nElbert\nFrancisco\nFreddie\nFrederic\nJaime\nJeremiah\nLinwood\nMary\nMilton\nMorris\nReed\nRickey\nRoderick\nSam\nWendell\nJohn\nMichael\nRobert\nDavid\nJames\nMark\nRichard\nWilliam\nThomas\nJoseph\nPaul\nSteven\nJeffrey\nPeter\nBrian\nKevin\nEdward\nDaniel\nStephen\nTimothy\nKenneth\nChristopher\nScott\nGary\nAnthony\nCharles\nDonald\nRonald\nGeorge\nFrank\nGregory\nDouglas\nRaymond\nAndrew\nBruce\nKeith\nAlan\nDennis\nMatthew\nPatrick\nEric\nCarl\nCraig\nWayne\nLouis\nLawrence\nPhilip\nJonathan\nWalter\nRoger\nArthur\nGlenn\nAlbert\nChris\nGerald\nMartin\nVincent\nRussell\nRalph\nLarry\nJay\nEugene\nFrederick\nTodd\nFrancis\nRandy\nLeonard\nEdwin\nHenry\nNicholas\nMarc\nMike\nBarry\nHoward\nShawn\nSteve\nDean\nTheodore\nJeff\nPhillip\nAllen\nHarold\nKarl\nJon\nRandall\nGreg\nGuy\nRoy\nVictor\nFred\nTom\nBryan\nDanny\nHarry\nKurt\nAlfred\nDale\nErnest\nGordon\nJack\nNorman\nStuart\nBernard\nGerard\nJoel\nSamuel\nCurtis\nDave\nJerry\nSalvatore\nSean\nGlen\nJeffery\nJose\nStanley\nGregg\nLeo\nRicky\nNelson\nTim\nHerbert\nJoe\nMitchell\nBrett\nClifford\nDana\nLance\nDarryl\nBill\nBrad\nBradford\nDon\nJim\nTony\nWarren\nBenjamin\nGeoffrey\nJason\nJimmy\nLee\nAlexander\nDuane\nDwight\nNeil\nBob\nMicheal\nTerry\nWillie\nBradley\nRodney\nRoland\nRay\nAntonio\nJerome\nLuis\nAdam\nAngelo\nBilly\nDan\nDwayne\nLeon\nAllan\nEarl\nGene\nKirk\nLeslie\nMario\nWesley\nAndre\nTracy\nAngel\nClayton\nGilbert\nKerry\nLloyd\nManuel\nNeal\nTerrence\nAndy\nBrendan\nBrent\nCarlos\nEddie\nHugh\nJuan\nLaurence\nRandolph\nCalvin\nDarren\nKyle\nLewis\nRick\nSeth\nStewart\nTed\nTyrone\nClarence\nKen\nMaurice\nNathan\nReginald\nAaron\nAlex\nArnold\nEdmund\nMilton\nPasquale\nPerry\nRene\nRocco\nRonnie\nCarlton\nClyde\nDarrell\nDaryl\nDino\nDominick\nEd\nEdmond\nGrant\nJohnny\nKent\nLeroy\nMarshall\nNathaniel\nBart\nCurt\nDerek\nEverett\nJeffry\nKelly\nKris\nMelvin\nRoss\nCarmen\nChester\nEdgar\nFloyd\nHector\nJan\nJesse\nNick\nRobin\nRoderick\nRon\nWade\nWallace\nAdrian\nBobby\nClark\nDenis\nDominic\nDrew\nFelix\nIan\nKim\nMarvin\nMiguel\nTerence\nTimmy\nTommy\nTroy\nBret\nClinton\nColin\nDoug\nEvan\nFranklin\nFrederic\nFredrick\nGarth\nHarvey\nJean\nJimmie\nJody\nKelvin\nLoren\nLuke\nMathew\nOrlando\nPete\nRoberto\nStephan\nThaddeus\nAl\nAlphonse\nAugust\nBen\nCarlo\nCarmine\nChristian\nClaude\nDerrick\nErich\nErik\nFrankie\nGarry\nIrving\nIsaac\nJaime\nJessie\nJulio\nKenny\nLester\nMalcolm\nMarcus\nNormand\nPat\nPedro\nPierre\nSebastian\nShaun\nWilfredo\nArmando\nByron\nCameron\nCary\nChuck\nCornelius\nDion\nDomenic\nElliot\nElmer\nEmil\nErnie\nFreddie\nFreddy\nGerry\nIsmael\nJamie\nJeremy\nJoshua\nJude\nLincoln\nLisa\nLucien\nMichel\nMickey\nNicolas\nNoel\nOliver\nOscar\nRaul\nRory\nScot\nTeddy\nVernon\nWard\nMichael\nJohn\nDavid\nRobert\nJames\nMark\nRichard\nThomas\nWilliam\nJoseph\nPaul\nJeffrey\nPeter\nDaniel\nSteven\nKevin\nChristopher\nScott\nBrian\nEdward\nTimothy\nStephen\nGary\nKenneth\nCharles\nAnthony\nRonald\nDonald\nGregory\nGeorge\nFrank\nDouglas\nAndrew\nKeith\nRaymond\nBruce\nCraig\nPatrick\nAlan\nEric\nMatthew\nTodd\nWayne\nGlenn\nDennis\nPhilip\nLawrence\nCarl\nJonathan\nLouis\nRoger\nRussell\nGerald\nVincent\nWalter\nFrancis\nRalph\nChris\nArthur\nFrederick\nDean\nLarry\nHenry\nMartin\nMarc\nRandy\nJay\nBarry\nSteve\nAlbert\nEugene\nJeff\nTheodore\nHarold\nSean\nLeonard\nVictor\nNicholas\nJeffery\nGregg\nDale\nGlen\nKurt\nHoward\nRicky\nRoy\nJim\nSamuel\nShawn\nAlfred\nErnest\nMike\nDarryl\nJon\nStuart\nClifford\nGreg\nJose\nKarl\nAllen\nJerry\nPhillip\nSalvatore\nJack\nNorman\nTony\nCurtis\nRandall\nStanley\nEdwin\nJoe\nDana\nTroy\nGeoffrey\nGuy\nNeil\nBryan\nBradley\nBrett\nDanny\nGene\nTerry\nBernard\nFred\nLee\nBill\nHarry\nBenjamin\nRodney\nTim\nTom\nAdam\nGerard\nMitchell\nRobin\nDwayne\nAngelo\nTracy\nWarren\nAlexander\nBob\nAntonio\nBrad\nDave\nJimmy\nSeth\nAllan\nDuane\nGordon\nRonnie\nBilly\nJason\nJoel\nBradford\nEddie\nKirk\nMaurice\nMicheal\nAngel\nBrendan\nChristian\nDan\nDominic\nKent\nLeo\nNeal\nTed\nAndre\nCarlos\nKyle\nRamon\nRoss\nTerrence\nWesley\nAaron\nCalvin\nCarmen\nDwight\nJerome\nJohnny\nLester\nLewis\nRay\nWillie\nBobby\nDarren\nFranklin\nLance\nMiguel\nNelson\nPerry\nRick\nRoberto\nRoland\nDerek\nDrew\nEarl\nEdmund\nHerbert\nLeroy\nReginald\nWilfred\nAlvin\nChester\nDomenic\nEdgar\nKenny\nKerry\nKim\nManuel\nMario\nNathan\nTerence\nTommy\nTyrone\nWallace\nAlberto\nArnold\nClarence\nEvan\nJesse\nLuis\nMarvin\nPasquale\nRandolph\nClark\nClayton\nDarrell\nFelix\nFloyd\nGilbert\nHarvey\nKelly\nLaurence\nLeon\nLuke\nShaun\nAlex\nAndy\nBrent\nColin\nDon\nGrant\nJuan\nMarshall\nMilton\nOrlando\nStewart\nWard\nCarmine\nClaude\nDerrick\nDino\nDominick\nFrancisco\nFredrick\nGarry\nHugh\nLloyd\nMelvin\nPat\nRene\nRoderick\nTerrance\nWilfredo\nCecil\nCornelius\nDenis\nEdmond\nJan\nJody\nJohnnie\nJoshua\nLeslie\nMatt\nNathaniel\nNoel\nOwen\nRon\nRory\nRudolph\nShane\nVernon\nWade\nCharlie\nClay\nClifton\nDirk\nErik\nEverett\nGerry\nIsrael\nIvan\nJorge\nJulio\nLon\nLorenzo\nMarcel\nMathew\nNick\nPete\nRafael\nRocco\nRuben\nSebastian\nSusan\nTeddy\nArmand\nBen\nBrooks\nBryant\nCarlton\nCary\nChuck\nClinton\nClyde\nConrad\nDion\nDoug\nElliot\nEmil\nEmilio\nErnie\nErwin\nEthan\nFreddie\nGarrett\nGraham\nHector\nHerman\nJed\nJoey\nLeigh\nLoren\nMarcus\nMarion\nOliver\nPierre\nRoman\nSal\nSherman\nTimmy\nJohn\nMichael\nDavid\nRobert\nJames\nMark\nWilliam\nThomas\nRichard\nJoseph\nScott\nJeffrey\nPaul\nSteven\nPeter\nDaniel\nKevin\nChristopher\nBrian\nEdward\nStephen\nKenneth\nTimothy\nAnthony\nGary\nDonald\nCharles\nGregory\nRonald\nDouglas\nAndrew\nFrank\nGeorge\nRaymond\nGlenn\nEric\nBruce\nTodd\nKeith\nMatthew\nAlan\nPatrick\nVincent\nCraig\nWayne\nLawrence\nPhilip\nDennis\nRoger\nJonathan\nCarl\nArthur\nDean\nLouis\nWalter\nGerald\nJay\nMartin\nRussell\nFrancis\nFrederick\nMarc\nRalph\nBarry\nSean\nChris\nHoward\nAlbert\nHenry\nEdwin\nHarold\nKurt\nTheodore\nNicholas\nJon\nLeonard\nBryan\nLarry\nAllen\nGlen\nShawn\nVictor\nDale\nEugene\nSalvatore\nMike\nKarl\nNorman\nDarryl\nJeffery\nJeff\nTroy\nAlfred\nRandall\nRandy\nDanny\nTony\nPhillip\nErnest\nGregg\nSteve\nFred\nJoe\nStanley\nJerry\nJoel\nCurtis\nLee\nSamuel\nGuy\nJose\nRoy\nAntonio\nHarry\nJack\nAdam\nClifford\nNeil\nBradley\nGreg\nGordon\nBenjamin\nJason\nRicky\nTom\nDana\nJim\nRodney\nTim\nTracy\nWarren\nAlexander\nBernard\nGene\nKirk\nTerry\nAndre\nBrett\nDave\nGeoffrey\nNelson\nWillie\nAllan\nDuane\nLance\nStuart\nBill\nJimmy\nMicheal\nDwayne\nJerome\nCarlos\nDan\nGerard\nHector\nHerbert\nJohnny\nRick\nAngelo\nDaryl\nKyle\nMitchell\nRoland\nRonnie\nAaron\nBradford\nDarren\nEarl\nJuan\nKerry\nLuis\nMario\nMarvin\nMiguel\nReginald\nBobby\nChristian\nLeo\nAlex\nCalvin\nEddie\nEdmund\nGilbert\nJesus\nKent\nLeon\nMilton\nRoberto\nRoss\nTed\nArnold\nBob\nDerek\nLewis\nNick\nRay\nSeth\nBrad\nClinton\nDarrell\nEvan\nMelvin\nRon\nScot\nAlvin\nAngel\nDominic\nEdgar\nFranklin\nKelly\nLeslie\nRobin\nTerrence\nTyrone\nVernon\nWesley\nAlberto\nAndy\nBilly\nClaude\nClayton\nDominick\nLester\nNathaniel\nStephan\nTommy\nBrent\nClifton\nCurt\nDwight\nFrancisco\nGarry\nHugh\nJesse\nJustin\nKris\nLloyd\nLuke\nMarcus\nMaurice\nNeal\nOwen\nPerry\nRafael\nRoman\nSpencer\nStewart\nTerence\nTimmy\nWard\nBlaine\nClarence\nClyde\nDrew\nEdmond\nErik\nEverett\nFloyd\nJulio\nKenny\nManuel\nPasquale\nRocco\nShaun\nWallace\nAlton\nArmand\nBart\nBrendan\nByron\nClark\nClay\nColin\nDon\nEd\nElliott\nGabriel\nJan\nJean\nJeremy\nLaurence\nMorris\nNathan\nNormand\nRandolph\nRene\nRicardo\nRudy\nSanto\nTerrance\nWilson\nAlonzo\nBret\nCarmen\nCarmine\nCary\nChester\nCory\nDarin\nDomenic\nEmil\nErich\nGrant\nHarlan\nIra\nJamie\nKelvin\nKen\nLeroy\nLionel\nLyle\nMalcolm\nMary\nMyron\nNoel\nRoderick\nRory\nTod\nWilfredo\nAlphonso\nBernie\nCecil\nCharlie\nDante\nDerrick\nDino\nDoug\nEllis\nFelix\nFreddie\nFrederic\nGilberto\nHarvey\nJed\nJordan\nJorge\nJoshua\nLonnie\nLorenzo\nMathew\nPedro\nSal\nSebastian\nShane\nSherman\nThaddeus\nJohn\nMichael\nDavid\nRobert\nJames\nMark\nWilliam\nRichard\nThomas\nJoseph\nPaul\nScott\nJeffrey\nPeter\nBrian\nChristopher\nSteven\nKevin\nDaniel\nTimothy\nKenneth\nStephen\nEdward\nAnthony\nGary\nCharles\nRonald\nGregory\nDonald\nGeorge\nFrank\nDouglas\nAndrew\nTodd\nKeith\nRaymond\nBruce\nMatthew\nEric\nPatrick\nGlenn\nWayne\nAlan\nVincent\nJonathan\nPhilip\nCraig\nLawrence\nDennis\nArthur\nCarl\nLouis\nDean\nRoger\nRussell\nFrederick\nWalter\nMarc\nMartin\nFrancis\nSean\nAlbert\nNicholas\nBarry\nChris\nTheodore\nJay\nRalph\nLeonard\nGerald\nSamuel\nHenry\nAdam\nStanley\nRandall\nRandy\nLarry\nKurt\nErnest\nShawn\nJon\nJose\nEugene\nHarold\nGlen\nHoward\nJeff\nJeffery\nMike\nTerry\nAllen\nDarryl\nBryan\nDanny\nNorman\nTony\nVictor\nGordon\nJim\nNeil\nRicky\nEdwin\nSalvatore\nFred\nKarl\nJoel\nSteve\nBernard\nPhillip\nTom\nAlfred\nBrett\nRoy\nTroy\nDale\nLee\nDarren\nGreg\nBenjamin\nDana\nJerry\nAntonio\nRodney\nAlexander\nGregg\nJerome\nJoe\nKyle\nTim\nJuan\nReginald\nAaron\nBill\nCurtis\nWarren\nDan\nLance\nHarry\nJason\nJohnny\nLuis\nStuart\nWillie\nAndre\nClifford\nJack\nKirk\nDave\nDwayne\nEarl\nJesse\nMario\nTracy\nTyrone\nBobby\nChristian\nClayton\nGeoffrey\nGuy\nJimmy\nNelson\nBrad\nCarlos\nDerek\nDominic\nDuane\nRay\nRick\nWesley\nAngelo\nBob\nBrent\nErik\nMaurice\nTerrance\nTerrence\nBilly\nBradley\nGene\nLeo\nMicheal\nRoland\nRoss\nTerence\nDaryl\nDwight\nKent\nLeon\nMelvin\nRonnie\nWilfredo\nAllan\nBradford\nEddie\nHector\nHerbert\nLewis\nNathaniel\nRocco\nAlex\nArnold\nCalvin\nCarmen\nDerrick\nDon\nGerard\nHugh\nIan\nJoshua\nKen\nLloyd\nMiguel\nMitchell\nNeal\nPerry\nSeth\nStephan\nTommy\nFranklin\nGilbert\nJamie\nKerry\nMiles\nRafael\nAlvin\nColin\nCurt\nEdmund\nJeremy\nKelly\nKenny\nNathan\nShaun\nTed\nVernon\nAndy\nAngel\nBrendan\nClaude\nDarrell\nDominick\nFelix\nJorge\nLeroy\nLeslie\nManuel\nRene\nRicardo\nRoberto\nRon\nSebastian\nStefan\nBlake\nCarmine\nClinton\nDexter\nFrankie\nGarrett\nIvan\nJeremiah\nJody\nJoey\nKris\nLaurence\nLuke\nMarvin\nOrlando\nRandolph\nRobin\nScot\nShane\nWillard\nChuck\nDoug\nDuncan\nGarry\nKim\nLester\nRamon\nStewart\nWade\nWilbert\nAlton\nAndres\nAugust\nChester\nClark\nClyde\nDrew\nEduardo\nFreddie\nGino\nGrant\nHarvey\nHeriberto\nJulius\nJustin\nLars\nLorenzo\nLucien\nLuigi\nMarcus\nMerrill\nNoel\nOliver\nPete\nAlberto\nAlphonse\nArmand\nBen\nBret\nBryce\nCary\nCharlie\nClay\nClifton\nConrad\nDenis\nDomenic\nElliott\nErnesto\nEverett\nGarth\nGiuseppe\nJacob\nJaime\nJean\nLeigh\nLionel\nLonnie\nMarcel\nMarco\nMarshall\nMarty\nMilton\nMyron\nNick\nPablo\nPasquale\nPedro\nPierre\nRoderick\nRoosevelt\nRory\nRuben\nSam\nSherman\nSusan\nThaddeus\nTyler\nVirgil\nWilson\nZachary\nJohn\nMichael\nRobert\nDavid\nJames\nRichard\nMark\nWilliam\nThomas\nJoseph\nPaul\nChristopher\nScott\nJeffrey\nKevin\nPeter\nSteven\nDaniel\nBrian\nEdward\nAnthony\nTimothy\nKenneth\nStephen\nRonald\nCharles\nDonald\nGregory\nGary\nTodd\nAndrew\nPatrick\nFrank\nEric\nDouglas\nGeorge\nRaymond\nMatthew\nBruce\nJonathan\nKeith\nWayne\nDennis\nAlan\nCraig\nPhilip\nVincent\nGlenn\nLawrence\nMarc\nWalter\nArthur\nCarl\nLouis\nGerald\nRussell\nRoger\nSean\nDean\nShawn\nFrancis\nNicholas\nFrederick\nAlbert\nRalph\nTheodore\nBarry\nJay\nLeonard\nEdwin\nAdam\nDarryl\nKarl\nMartin\nVictor\nJon\nBenjamin\nHarold\nHenry\nKurt\nHoward\nRandall\nGlen\nJose\nChris\nDale\nLarry\nAllen\nJerry\nMike\nNorman\nRandy\nSamuel\nErnest\nEugene\nFred\nGregg\nSteve\nBryan\nClifford\nGuy\nAlfred\nSalvatore\nStanley\nAlexander\nDana\nTony\nAaron\nLee\nTroy\nDanny\nHarry\nTerry\nJeff\nDuane\nLuis\nNeil\nRodney\nGordon\nJeffery\nLance\nBernard\nJack\nRoy\nTom\nJerome\nJoel\nKyle\nRicky\nEdmund\nJimmy\nAndre\nBradley\nBrett\nCurtis\nJason\nPhillip\nWarren\nErik\nGeoffrey\nJoe\nJuan\nTerrence\nAllan\nChristian\nDerek\nMario\nMaurice\nTracy\nAngel\nBill\nBradford\nCarlos\nDarrell\nDominic\nJim\nLeon\nEarl\nLeroy\nReginald\nRoland\nDwayne\nGreg\nKerry\nSeth\nStuart\nTim\nTyrone\nAngelo\nBrad\nColin\nGene\nKent\nMarvin\nRick\nRonnie\nShaun\nWillie\nAntonio\nBilly\nCurt\nDarren\nEvan\nHector\nHerbert\nIan\nNathan\nNelson\nAlex\nBrent\nEddie\nGerard\nJohnny\nLeo\nMitchell\nRicardo\nRoderick\nTod\nWesley\nAlvin\nBret\nClarence\nEdgar\nFranklin\nLaurence\nLuke\nNeal\nTerence\nVernon\nArnold\nDave\nJamie\nManuel\nMiguel\nRocco\nBob\nBobby\nBrendan\nCalvin\nCarmen\nChester\nHerman\nJesse\nKirk\nMelvin\nMicheal\nRoberto\nStephan\nClaude\nDaryl\nDerrick\nDon\nFredrick\nGilbert\nHugh\nJustin\nKen\nMathew\nMilton\nRay\nRobin\nRon\nRoss\nTommy\nByron\nClark\nDominick\nDrew\nEdmond\nFrancisco\nGarry\nJeremy\nJorge\nJulius\nLeslie\nMarcus\nNathaniel\nPerry\nRamon\nAlonzo\nClint\nDan\nDwight\nEduardo\nGabriel\nGrant\nIra\nJesus\nKris\nLewis\nPasquale\nPat\nRaul\nRene\nTimmy\nWade\nWendell\nWilfredo\nWillard\nZachary\nAl\nAlberto\nAndy\nBurton\nCarlo\nFelix\nGarrett\nHarvey\nJaime\nJeremiah\nJody\nJoshua\nKelvin\nKim\nLester\nLloyd\nLorenzo\nMarty\nMorris\nOrlando\nPreston\nRuben\nStefan\nTerrance\nTravis\nCasey\nChet\nDarin\nDomenic\nDoug\nFloyd\nFreddie\nGarth\nIvan\nJulio\nLonnie\nMarcel\nMarshall\nOscar\nPablo\nPedro\nRafael\nRandolph\nRudolph\nTed\nTyler\nWallace\nAdrian\nAldo\nAlfredo\nAnton\nAustin\nBennie\nBert\nBryant\nCameron\nCarlton\nCary\nClayton\nClinton\nClyde\nDamian\nDamon\nDarrin\nDino\nErnie\nEverett\nFernando\nFrancesco\nGiuseppe\nHans\nJean\nJimmie\nJohnathan\nJulian\nKelly\nLorne\nMorgan\nMyron\nNoel\nNorberto\nPete\nRandal\nReid\nRob\nRudy\nSam\nSammy\nSebastian\nStacy\nTeddy\nToby\nTomas\nTracey\nVance\nMichael\nJohn\nDavid\nRobert\nJames\nRichard\nThomas\nWilliam\nChristopher\nJoseph\nMark\nPaul\nJeffrey\nScott\nSteven\nDaniel\nKevin\nBrian\nTimothy\nPeter\nStephen\nKenneth\nAnthony\nEdward\nEric\nCharles\nGregory\nAndrew\nRonald\nDonald\nGary\nMatthew\nTodd\nDouglas\nFrank\nPatrick\nGeorge\nRaymond\nKeith\nBruce\nSean\nJonathan\nAlan\nCraig\nVincent\nDennis\nMarc\nGlenn\nLawrence\nWayne\nDean\nGerald\nFrederick\nPhilip\nLouis\nRodney\nWalter\nArthur\nRoger\nShawn\nCarl\nMartin\nJose\nRussell\nAlbert\nNicholas\nChris\nRalph\nHarold\nHenry\nDarren\nTheodore\nErik\nVictor\nFrancis\nKurt\nLeonard\nJay\nSamuel\nRandy\nBryan\nErnest\nJason\nLee\nKarl\nEdwin\nGlen\nJon\nDarryl\nRandall\nAllen\nBarry\nJeffery\nEugene\nCurtis\nNorman\nAdam\nLarry\nSteve\nNeil\nSalvatore\nDanny\nHoward\nCarlos\nJerry\nLuis\nAlfred\nGerard\nRicky\nStanley\nDuane\nPhillip\nTroy\nDarrin\nGeoffrey\nRoy\nBenjamin\nDwayne\nJeff\nMicheal\nTony\nAaron\nAntonio\nChristian\nDale\nGregg\nTracy\nAlexander\nClifford\nMike\nTerry\nAngelo\nJuan\nGreg\nHarry\nStuart\nTom\nAndre\nJack\nLewis\nWarren\nBernard\nDana\nDarrell\nDerek\nGuy\nJim\nJoel\nKirk\nTim\nKyle\nManuel\nMarvin\nTyrone\nWillie\nColin\nLeon\nNelson\nReginald\nTerrence\nFred\nGordon\nHector\nJohnny\nMaurice\nRoss\nFranklin\nMiguel\nAllan\nCalvin\nClayton\nGene\nMelvin\nRoberto\nRocco\nSeth\nAngel\nBradford\nChester\nDave\nDerrick\nDominic\nLance\nLeroy\nMario\nBill\nBilly\nDan\nEdmund\nHerbert\nJerome\nJesse\nJoe\nLeo\nRoland\nRonnie\nWesley\nArnold\nBrad\nBrett\nClarence\nDaryl\nDominick\nHugh\nJustin\nKerry\nLaurence\nRandolph\nRick\nRoderick\nSebastian\nBradley\nBrent\nJamie\nJoshua\nMitchell\nAlex\nBrendan\nDamon\nDarin\nDon\nDwight\nEarl\nFelix\nNeal\nRafael\nRobin\nBryant\nDenis\nEddie\nEvan\nJimmy\nKelly\nKent\nLester\nLloyd\nOrlando\nPasquale\nRay\nRene\nStewart\nBart\nBobby\nCorey\nCurt\nEdgar\nFernando\nGarry\nJody\nLeslie\nLonnie\nNathan\nPat\nPedro\nPerry\nScot\nShane\nTed\nTerence\nToby\nAdrian\nCarmen\nCarmine\nClark\nClifton\nClinton\nErich\nErick\nFrancisco\nGilbert\nIan\nJean\nJulio\nKen\nNathaniel\nNoel\nRicardo\nRob\nShaun\nSolomon\nSpencer\nTerrance\nThaddeus\nTyler\nAndy\nClaude\nEverett\nGino\nIsrael\nJordan\nJorge\nJulius\nKim\nLisa\nLuke\nMalcolm\nMarcel\nMarcus\nMarshall\nMorgan\nMyron\nNick\nNorberto\nRamon\nRudolph\nRyan\nShannon\nTrevor\nWade\nWilfred\nWilfredo\nWillard\nAlberto\nAlfonso\nAlvin\nAndres\nBob\nBrandon\nByron\nCarlo\nCory\nCourtney\nDaren\nDexter\nDino\nEfrain\nEmil\nEnrique\nGrant\nIsmael\nIvan\nJacques\nJared\nJeffry\nKelvin\nLuigi\nMarco\nPierre\nPreston\nRon\nSam\nTad\nTod\nTommy\nTravis\nVan\nMichael\nJohn\nDavid\nRobert\nJames\nChristopher\nWilliam\nRichard\nThomas\nJoseph\nMark\nJeffrey\nPaul\nBrian\nScott\nSteven\nKevin\nDaniel\nTimothy\nPeter\nStephen\nAnthony\nKenneth\nEdward\nEric\nRonald\nTodd\nDonald\nGregory\nAndrew\nCharles\nMatthew\nGary\nKeith\nFrank\nGeorge\nPatrick\nDouglas\nRaymond\nJonathan\nSean\nBruce\nAlan\nCraig\nMarc\nWayne\nVincent\nDennis\nShawn\nPhilip\nDean\nLawrence\nLouis\nRoger\nFrederick\nNicholas\nCarl\nJose\nRodney\nRussell\nAlbert\nArthur\nGlenn\nJason\nWalter\nBryan\nHenry\nFrancis\nChris\nGerald\nJay\nMartin\nLee\nSamuel\nRalph\nJon\nAllen\nVictor\nHoward\nDarryl\nEdwin\nEugene\nTroy\nStanley\nAdam\nKurt\nLuis\nLeonard\nRandy\nAntonio\nDarren\nErik\nJeffery\nNorman\nAlexander\nBarry\nErnest\nRandall\nSalvatore\nBenjamin\nGlen\nDanny\nGregg\nHarold\nSteve\nTheodore\nPhillip\nAndre\nBrett\nDale\nJoel\nGordon\nJeff\nTony\nWarren\nDarrin\nDwayne\nLarry\nAlfred\nDerek\nGeoffrey\nJerry\nNeil\nClifford\nKarl\nKyle\nRoy\nAllan\nFred\nHarry\nJerome\nCurtis\nGerard\nGuy\nMaurice\nMiguel\nMike\nTerrence\nChristian\nDerrick\nJack\nTerry\nCarlos\nBrendan\nDana\nGreg\nJim\nMarvin\nMitchell\nTerence\nTyrone\nAaron\nBrad\nHector\nJoshua\nLeo\nLeslie\nReginald\nRoland\nTom\nWesley\nWillie\nJohnny\nLeon\nTim\nBobby\nBradley\nFernando\nJesse\nJoe\nNeal\nRicky\nSeth\nAngel\nDarrell\nJimmy\nMelvin\nMilton\nNelson\nRafael\nAngelo\nBradford\nChad\nChester\nDwight\nEdmund\nFranklin\nIan\nLance\nRoberto\nStuart\nTerrance\nTracy\nBernard\nBill\nDaryl\nDuane\nEarl\nFrancisco\nGene\nJody\nJuan\nKelly\nLloyd\nManuel\nMario\nMicheal\nRandolph\nRicardo\nAlex\nBilly\nDenis\nEvan\nNoel\nRoss\nSebastian\nTed\nWilfredo\nCalvin\nClarence\nDaren\nDarin\nDominic\nHerbert\nKirk\nLaurence\nLester\nLewis\nPasquale\nPedro\nRobin\nRonnie\nRyan\nShane\nArnold\nDrew\nFloyd\nGabriel\nIvan\nJavier\nJustin\nKent\nKerry\nLeroy\nMalcolm\nMarshall\nNathan\nRick\nRocco\nWade\nBrent\nDominick\nEddie\nEnrique\nKen\nMatt\nNick\nOrlando\nTravis\nVernon\nAbraham\nAndy\nCarlton\nClayton\nDave\nDino\nErick\nFredrick\nGarrett\nGarth\nGrant\nIsmael\nJared\nJoey\nLorenzo\nMarcus\nNathaniel\nRay\nRoderick\nSidney\nToby\nTommy\nVance\nAlphonse\nAlvin\nCarmen\nColin\nCurt\nDamian\nDon\nElliott\nHans\nHerman\nHugh\nIsrael\nJaime\nJamie\nJorge\nLuigi\nLuke\nMarco\nPierre\nRamon\nRudolph\nScot\nShaun\nStefan\nStephan\nTyler\nWilson\nBart\nBert\nBlake\nBob\nBurton\nCarmine\nClark\nClaude\nClifton\nClyde\nCory\nDamon\nEdgar\nEfrain\nErnesto\nEthan\nFelix\nFrederic\nGilbert\nHarvey\nHeath\nIra\nJohnnie\nKendall\nKris\nLeonardo\nLoren\nMathew\nMyron\nOliver\nPerry\nRandal\nRene\nRon\nSpencer\nSusan\nThaddeus\nVito\nWallace\nWilfred\nZachary\nMichael\nDavid\nJohn\nRobert\nJames\nChristopher\nWilliam\nRichard\nMark\nThomas\nJoseph\nScott\nBrian\nJeffrey\nPaul\nSteven\nTimothy\nDaniel\nKevin\nPeter\nStephen\nAnthony\nEric\nMatthew\nKenneth\nEdward\nRonald\nCharles\nAndrew\nGary\nTodd\nGregory\nFrank\nDonald\nPatrick\nKeith\nGeorge\nSean\nDouglas\nRaymond\nJonathan\nCraig\nJason\nMarc\nWayne\nBruce\nAlan\nDennis\nLawrence\nVincent\nShawn\nPhilip\nDean\nGlenn\nWalter\nRodney\nJose\nFrancis\nLouis\nArthur\nFrederick\nAlbert\nRoger\nCarl\nBryan\nChris\nRussell\nTroy\nHenry\nErik\nKurt\nGerald\nJon\nNicholas\nJay\nVictor\nMartin\nTheodore\nAdam\nBenjamin\nDarren\nEdwin\nGlen\nStanley\nErnest\nRalph\nDerek\nSalvatore\nJoel\nRandy\nJuan\nAlexander\nBernard\nEugene\nJeffery\nJerry\nKyle\nLee\nChristian\nHarold\nLeonard\nLuis\nSamuel\nAllen\nDarryl\nDuane\nAntonio\nBrett\nHoward\nAndre\nDale\nNorman\nPhillip\nRicky\nRoy\nTony\nBarry\nCarlos\nDarrin\nAaron\nDanny\nJeff\nLarry\nSteve\nAlfred\nAngelo\nDarrell\nKarl\nReginald\nAngel\nBrad\nJerome\nRandall\nGeoffrey\nNeil\nWarren\nWillie\nDaryl\nGregg\nGuy\nIan\nRyan\nCurtis\nDana\nFred\nJack\nJoshua\nKelly\nMaurice\nShane\nHarry\nHector\nLance\nMario\nClifford\nGreg\nJimmy\nPedro\nRafael\nRoberto\nTerrence\nDominic\nDwayne\nNelson\nShaun\nTerence\nAllan\nBradford\nJesse\nLeon\nMike\nTerrance\nTerry\nAlex\nBrendan\nChad\nClayton\nDerrick\nEarl\nEdmund\nMarco\nMarcus\nTyrone\nBobby\nGerard\nHerbert\nJody\nJulio\nJustin\nLeo\nMiguel\nStuart\nWilfredo\nAlvin\nBilly\nBradley\nClarence\nGene\nGordon\nLewis\nManuel\nNathaniel\nRocco\nAlberto\nCarlton\nEddie\nHugh\nJamie\nJeremy\nJoe\nJorge\nKirk\nLeroy\nMelvin\nMitchell\nOrlando\nRoland\nRoss\nSeth\nStacy\nTim\nClinton\nDan\nDominick\nDwight\nEverett\nJim\nJohnny\nKris\nLloyd\nRay\nTom\nTommy\nTracy\nBill\nBryant\nColin\nEdgar\nFelix\nFrancisco\nLeslie\nMarvin\nMilton\nOliver\nRamon\nRicardo\nRick\nTrevor\nAdrian\nAndy\nDarin\nDave\nFranklin\nGarrett\nJared\nMicheal\nNathan\nNeal\nScot\nSidney\nStephan\nWesley\nBret\nByron\nClifton\nCurt\nFloyd\nFrederic\nGilbert\nHeath\nIvan\nJean\nJeffry\nKerry\nMarshall\nMathew\nPasquale\nPerry\nStacey\nStewart\nTed\nWade\nWilson\nArnold\nBen\nBrent\nCarlo\nCarmelo\nChester\nDamon\nDaren\nEdmond\nElvis\nEvan\nHans\nIsmael\nJaime\nJan\nKelvin\nLaurence\nLester\nMarcel\nRonnie\nStefan\nTyler\nVernon\nWallace\nWendell\nAlphonso\nAlton\nAndres\nArmand\nBrant\nBurton\nCarmine\nClark\nCorey\nCory\nDirk\nDomenic\nDomingo\nDrew\nGabriel\nGerardo\nJavier\nJohnnie\nJordan\nKenny\nKent\nMalcolm\nMatt\nMichel\nPablo\nPierre\nRandolph\nRoosevelt\nSebastian\nSimon\nTimmy\nTravis\nVincenzo\nWilfred\nMichael\nDavid\nJohn\nRobert\nJames\nWilliam\nChristopher\nRichard\nMark\nJoseph\nThomas\nScott\nJeffrey\nBrian\nPaul\nKevin\nDaniel\nSteven\nTimothy\nMatthew\nStephen\nPeter\nEdward\nAnthony\nEric\nKenneth\nCharles\nTodd\nGregory\nAndrew\nRonald\nSean\nPatrick\nGary\nDonald\nGeorge\nKeith\nDouglas\nRaymond\nFrank\nJonathan\nCraig\nMarc\nJason\nDennis\nJose\nShawn\nVincent\nAlan\nWayne\nNicholas\nBruce\nFrederick\nLawrence\nArthur\nRoger\nLouis\nWalter\nGerald\nPhilip\nGlenn\nBryan\nCarl\nDean\nRussell\nTroy\nVictor\nCarlos\nMartin\nErik\nRodney\nFrancis\nEdwin\nAlbert\nSamuel\nAlexander\nBenjamin\nJay\nLuis\nAdam\nJon\nChris\nHenry\nRalph\nAllen\nDarren\nKurt\nEugene\nLee\nTheodore\nRandy\nJuan\nAaron\nAntonio\nCurtis\nJeffery\nGlen\nHoward\nJoel\nKarl\nSteve\nAngel\nChristian\nStanley\nDale\nMaurice\nTony\nBrendan\nGeoffrey\nHarold\nJack\nJerry\nBrett\nDwayne\nGregg\nKyle\nLeonard\nBarry\nDana\nMiguel\nNorman\nRandall\nSalvatore\nAlfred\nClifford\nDarryl\nDerek\nErnest\nFred\nGordon\nJoshua\nLance\nWillie\nBradley\nGreg\nRoberto\nRoy\nTerry\nAndre\nHarry\nLarry\nRicky\nDuane\nJesse\nMike\nAllan\nHector\nJohnny\nNathan\nPhillip\nBernard\nDanny\nJeff\nManuel\nNelson\nRamon\nTyrone\nWarren\nWesley\nEarl\nGuy\nIan\nJustin\nKirk\nMario\nRoland\nCalvin\nColin\nCorey\nJerome\nGene\nLeo\nMathew\nMelvin\nNathaniel\nNeil\nReginald\nTerrence\nDarrell\nDerrick\nDominic\nJoe\nNoel\nPedro\nTerrance\nBradford\nClarence\nDarrin\nGilbert\nJamie\nKerry\nLeroy\nMicheal\nPasquale\nRyan\nShaun\nTerence\nTravis\nAngelo\nBrent\nByron\nChad\nDaryl\nDrew\nFrancisco\nGerard\nHerbert\nJorge\nRonnie\nShane\nAdrian\nKelly\nLeon\nLewis\nMarcus\nMarvin\nRafael\nRay\nRicardo\nSeth\nDomenic\nDon\nRoderick\nAlberto\nAlvin\nClaude\nEdgar\nJaime\nJulio\nTom\nCharlie\nChester\nDarin\nEduardo\nFloyd\nFrederic\nHugh\nIvan\nJeremiah\nJesus\nJimmy\nJoey\nKent\nOrlando\nRoss\nTracy\nTrevor\nTyler\nAlex\nDave\nEdmund\nEvan\nFelix\nFernando\nFranklin\nGarrett\nJody\nMalcolm\nMatt\nPerry\nPreston\nReinaldo\nRene\nStephan\nTim\nVernon\nAndy\nBill\nBilly\nCarmelo\nClinton\nDamon\nDan\nDaren\nDexter\nDino\nDion\nDominick\nDwight\nEddie\nEdmond\nFrancesco\nFredrick\nGrant\nHans\nHeath\nJacob\nJared\nJarrod\nJeremy\nKenny\nLaurence\nLoren\nLuigi\nMarco\nMarshall\nMitchell\nNick\nOscar\nRick\nSidney\nStacy\nStewart\nStuart\nWilfredo\nAntoine\nArmand\nAustin\nBobby\nBoris\nBrad\nBret\nBruno\nCarmen\nCarroll\nClayton\nClifton\nCory\nDenis\nEnrique\nEthan\nFreddie\nGabriel\nGarry\nGavin\nHeriberto\nIsaac\nJan\nJavier\nJean\nJim\nJohnnie\nLeslie\nLorenzo\nLuke\nNeal\nOliver\nOwen\nRobin\nRuben\nRuss\nScot\nSpencer\nThaddeus\nTommy\nVincenzo\nWallace\nWilfred\nWillard\nWilson\nMichael\nDavid\nJohn\nRobert\nJames\nChristopher\nWilliam\nMark\nRichard\nThomas\nJoseph\nScott\nJeffrey\nBrian\nPaul\nDaniel\nKevin\nSteven\nMatthew\nStephen\nEric\nPeter\nAnthony\nTimothy\nKenneth\nEdward\nTodd\nGregory\nAndrew\nJason\nCharles\nSean\nKeith\nRonald\nDouglas\nPatrick\nJonathan\nCraig\nGary\nFrank\nGeorge\nDonald\nMarc\nRaymond\nShawn\nDennis\nJose\nWayne\nGlenn\nDean\nBruce\nLawrence\nVincent\nErik\nNicholas\nDarren\nArthur\nPhilip\nRussell\nLouis\nChristian\nWalter\nAdam\nAlan\nBryan\nFrederick\nGerald\nRalph\nCarl\nChris\nRoger\nVictor\nMartin\nAaron\nTroy\nBenjamin\nCarlos\nJoel\nBrett\nGlen\nLuis\nAngel\nRodney\nJon\nKarl\nLeonard\nEdwin\nAlbert\nFrancis\nLee\nRandy\nShane\nTheodore\nAlexander\nJay\nKurt\nAllen\nCorey\nDerek\nEugene\nHenry\nNeil\nHarold\nJoshua\nJuan\nTyrone\nErnest\nJeffery\nSamuel\nAntonio\nSalvatore\nCurtis\nMarcus\nRoy\nSteve\nAlfred\nLance\nMaurice\nTerrence\nBarry\nClifford\nJeremy\nKyle\nLarry\nMiguel\nAndre\nGeoffrey\nIan\nBradley\nDanny\nHarry\nJerry\nPhillip\nRandall\nWillie\nColin\nGordon\nHector\nRafael\nRoberto\nDaryl\nMicheal\nTony\nBrendan\nGregg\nHoward\nReginald\nSeth\nTerry\nDerrick\nDominic\nJamie\nJustin\nNoel\nRicky\nStanley\nAngelo\nBrent\nDarrin\nDuane\nJack\nJorge\nMike\nNorman\nPedro\nShaun\nWarren\nBernard\nDamon\nDominick\nDwayne\nKirk\nMarvin\nDale\nDana\nDarrell\nFred\nFrancisco\nJulio\nClinton\nDarryl\nEarl\nEdgar\nGerard\nGreg\nJesse\nNathaniel\nTravis\nTrevor\nClarence\nEddie\nEdmund\nGene\nGuy\nJerome\nLeon\nMelvin\nNathan\nPasquale\nStephan\nWesley\nBobby\nJavier\nJim\nJoe\nJohnny\nLeroy\nNeal\nNelson\nSebastian\nAllan\nBrandon\nClayton\nEduardo\nGiuseppe\nJaime\nJesus\nJody\nRicardo\nRyan\nScot\nShannon\nWilfredo\nAlex\nBradford\nClifton\nCory\nDarin\nDino\nDrew\nErick\nJacques\nLionel\nLloyd\nMathew\nRoderick\nRoland\nStacey\nTerence\nTerrance\nTim\nTom\nBilly\nChad\nDamian\nIsaac\nIvan\nJean\nJimmy\nKelly\nManuel\nRandolph\nRoss\nStuart\nTed\nWade\nAlberto\nAlphonse\nDwight\nEvan\nFelix\nHerbert\nJeff\nJonathon\nKristopher\nLeo\nLester\nLonnie\nMario\nMilton\nMitchell\nOrlando\nRamon\nRay\nTommy\nAdrian\nBrad\nCalvin\nCasey\nCedric\nCurt\nDave\nDenis\nDomenic\nElliott\nEverett\nGarrett\nGino\nJessie\nJulian\nJulius\nKent\nKristian\nMarco\nNoah\nTracy\nAlton\nAlvin\nArmando\nBart\nBlake\nBret\nCameron\nCarlo\nClint\nDarrel\nDon\nEfrain\nFernando\nFranklin\nHeriberto\nIra\nJared\nKerry\nKraig\nLeigh\nLeslie\nLewis\nLuigi\nOscar\nPaulo\nReed\nRonnie\nRuben\nSpencer\nStewart\nWilbert\nWilfred\nAbel\nBlair\nBryon\nCarlton\nCarmine\nChester\nCollin\nConrad\nEdgardo\nFrankie\nGarry\nGrant\nHans\nHugh\nJeremiah\nJordan\nKen\nLane\nLoren\nMorgan\nNick\nOliver\nOtis\nPaolo\nPerry\nPierre\nRaul\nReinaldo\nRene\nRosario\nSammy\nSebastiano\nTyler\nVernon\nWallace\nMichael\nDavid\nJohn\nRobert\nJames\nChristopher\nRichard\nWilliam\nMark\nJoseph\nScott\nThomas\nJeffrey\nBrian\nKevin\nDaniel\nSteven\nJason\nPaul\nMatthew\nEric\nPeter\nAnthony\nTimothy\nTodd\nEdward\nStephen\nAndrew\nKenneth\nCharles\nSean\nGregory\nJonathan\nPatrick\nGeorge\nDouglas\nMarc\nKeith\nCraig\nDonald\nFrank\nGary\nRonald\nRaymond\nJose\nShawn\nDennis\nPhilip\nTroy\nErik\nWayne\nBenjamin\nAaron\nLouis\nAdam\nJeremy\nLawrence\nDean\nGlenn\nVincent\nArthur\nBryan\nBruce\nFrederick\nWalter\nAlan\nChristian\nRussell\nAlexander\nJay\nRoger\nLuis\nCarl\nNicholas\nVictor\nHenry\nJoshua\nShane\nGerald\nSamuel\nAlbert\nDerek\nGlen\nKyle\nTheodore\nCarlos\nMarcus\nFrancis\nBrett\nJoel\nRandy\nDarren\nJustin\nJuan\nSalvatore\nEdwin\nRodney\nJon\nNeil\nStanley\nAllen\nGeoffrey\nJamie\nKurt\nMartin\nRalph\nAngel\nGregg\nLance\nAlfred\nAndre\nDale\nErnest\nAntonio\nBrent\nCorey\nJeffery\nTyrone\nJerry\nLeonard\nMiguel\nHoward\nIan\nPhillip\nRandall\nClifford\nCurtis\nEugene\nLarry\nSeth\nChad\nDerrick\nLee\nNelson\nReginald\nTravis\nWesley\nBarry\nBrendan\nKarl\nNathaniel\nBrandon\nChris\nMario\nNorman\nRoberto\nDanny\nKirk\nRicky\nTerry\nDana\nDarrell\nRoy\nTony\nWillie\nHarold\nJack\nMaurice\nTerrence\nAlex\nAngelo\nDarryl\nDaryl\nFrancisco\nHector\nJerome\nSteve\nBrad\nDamon\nGordon\nNoel\nJimmy\nJoe\nLuke\nManuel\nNathan\nRoss\nShaun\nAlberto\nBernard\nBradley\nDwayne\nHarry\nJesse\nJody\nLewis\nMelvin\nPasquale\nRonnie\nTerrance\nAdrian\nColin\nDarin\nFred\nGene\nJeff\nMicheal\nTrevor\nWarren\nCalvin\nDarrin\nDominic\nFelix\nGreg\nJohnny\nJorge\nKelly\nMike\nTyler\nBobby\nDan\nDuane\nDwight\nEarl\nEddie\nErick\nGarrett\nJulio\nLeo\nLeon\nRafael\nTom\nBret\nErnesto\nJacob\nLonnie\nMarco\nRocco\nSpencer\nTerence\nTracy\nWilfredo\nAntoine\nClayton\nCory\nDrew\nEduardo\nFranklin\nJaime\nMarvin\nMathew\nNeal\nOrlando\nRaul\nRay\nRoland\nStephan\nAndy\nCarlton\nClinton\nDylan\nEdgar\nGerard\nGilbert\nGuy\nHerbert\nJared\nJavier\nLeroy\nOscar\nRamon\nRandolph\nRicardo\nRoderick\nRyan\nWade\nAllan\nCharlie\nChester\nDamian\nDominick\nDustin\nEdmund\nEvan\nGilberto\nJesus\nLaurence\nLionel\nLloyd\nMarshall\nShannon\nToby\nTod\nAlvin\nArmand\nBradford\nClarence\nDarnell\nEdmond\nEthan\nEverett\nHeriberto\nHerman\nJean\nJim\nJohnnie\nKent\nMalcolm\nMitchell\nNicola\nOwen\nSam\nScot\nStacey\nVernon\nZachary\nAbraham\nArmando\nBill\nBryant\nCarmine\nClifton\nCurt\nDino\nDomenic\nEfrain\nFloyd\nFrankie\nGino\nJamal\nMarlon\nMilton\nPedro\nRoosevelt\nSebastian\nStefan\nTed\nTeddy\nTylon\nWallace\nWilson\nAlejandro\nBilly\nBlaine\nBob\nBryce\nByron\nCameron\nCarmen\nCecil\nClement\nClint\nClyde\nCourtney\nDaren\nDavis\nDemetrios\nDexter\nDirk\nDon\nEdgardo\nEnrico\nEnzo\nGabriel\nGiuseppe\nGraham\nHans\nIsaac\nIvan\nJeremiah\nKerry\nLamont\nLucas\nLyle\nMarcel\nMatt\nMyron\nNick\nStuart\nWilbert\nMichael\nDavid\nJohn\nRobert\nChristopher\nJames\nScott\nWilliam\nJason\nJoseph\nJeffrey\nRichard\nBrian\nMark\nMatthew\nThomas\nKevin\nDaniel\nEric\nSteven\nPaul\nPeter\nAnthony\nEdward\nTimothy\nStephen\nTodd\nCharles\nGregory\nKeith\nAndrew\nKenneth\nJonathan\nSean\nPatrick\nShawn\nJose\nCraig\nMarc\nFrank\nDouglas\nRonald\nGeorge\nRaymond\nGary\nAdam\nDonald\nRyan\nDennis\nJeremy\nErik\nWayne\nPhilip\nTroy\nAaron\nChristian\nLouis\nLuis\nBryan\nBenjamin\nGlenn\nJoshua\nVincent\nDerek\nBruce\nCarl\nChad\nLawrence\nDean\nAlan\nNicholas\nCarlos\nJustin\nFrederick\nRoger\nCorey\nJoel\nKyle\nVictor\nDarren\nWalter\nAlexander\nArthur\nEdwin\nJay\nJon\nSamuel\nAngel\nHenry\nRussell\nBrett\nMarcus\nAlbert\nGerald\nJamie\nAntonio\nFrancis\nTheodore\nNeil\nRandy\nAllen\nHector\nTyrone\nAndre\nGeoffrey\nGlen\nJack\nJesse\nSeth\nShane\nDanny\nKurt\nLance\nBarry\nChris\nJuan\nMartin\nMiguel\nRalph\nTravis\nErnest\nNathan\nJerry\nLeonard\nSalvatore\nShaun\nStanley\nCurtis\nJeffery\nJermaine\nKarl\nDerrick\nRodney\nHarry\nHoward\nDana\nHarold\nLarry\nLee\nPhillip\nAlfred\nBrendan\nDale\nEugene\nGregg\nRafael\nTony\nMaurice\nNorman\nRicardo\nRoy\nBrent\nDarrell\nGordon\nMario\nWarren\nWillie\nAngelo\nClifford\nGreg\nIan\nJody\nManuel\nMarco\nBrandon\nDaryl\nRandall\nDamon\nDominic\nLeo\nSteve\nBilly\nCalvin\nDuane\nDwayne\nReginald\nShannon\nWesley\nBobby\nBradford\nColin\nFranklin\nJoe\nJohnny\nJorge\nKelly\nTerry\nTrevor\nDarryl\nEarl\nJacob\nJulio\nKirk\nMathew\nRamon\nRaul\nRoberto\nRonnie\nRoss\nTerrance\nBret\nFrancisco\nGarrett\nGene\nGilbert\nGuy\nHeath\nJerome\nLeon\nLuke\nMitchell\nNelson\nOrlando\nPaulo\nAlberto\nAlex\nAllan\nClinton\nFelix\nGabriel\nIsaac\nJeff\nNathaniel\nPasquale\nRoderick\nScot\nStuart\nTracy\nBernard\nCory\nDamian\nDarin\nDave\nDominick\nFred\nGerard\nJaime\nJeremiah\nJimmy\nMicheal\nMilton\nAdrian\nBrad\nCarlton\nCary\nDarrin\nEddie\nEdgar\nEdgardo\nEdmund\nEverett\nFrankie\nGraham\nHeriberto\nIvan\nJared\nJavier\nJonas\nLamont\nMelvin\nNoah\nPedro\nRoland\nWilfredo\nAlejandro\nAric\nBradley\nChester\nClarence\nClayton\nDan\nDevin\nDustin\nEdmond\nErich\nEvan\nGilberto\nHans\nHerbert\nIsmael\nJan\nJean\nKent\nKristian\nLewis\nMyles\nNeal\nOwen\nRandolph\nStephan\nTed\nAbraham\nAlphonse\nArmando\nDarrel\nDion\nDrew\nDwight\nEfrain\nGarry\nGiovanni\nGiuseppe\nGrant\nJamal\nJefferson\nJimmie\nKendall\nKerry\nLloyd\nLonnie\nMarshall\nMarvin\nOmar\nRaphael\nRolando\nSantos\nSpencer\nStefan\nTerence\nTim\nTomas\nAlvin\nAndrea\nAndrzej\nAndy\nAntoine\nAron\nBrendon\nBryon\nByron\nCameron\nCarmelo\nCarmen\nCasey\nCharlie\nClint\nColby\nDenis\nDexter\nDomenico\nDuncan\nDylan\nEli\nEmanuel\nErick\nEthan\nFreddie\nHoracio\nIra\nJennifer\nJim\nKendrick\nLamar\nLaurence\nLeroy\nLeslie\nLucas\nMarcos\nOscar\nRay\nRick\nRicky\nRocco\nRuben\nSammy\nTerrence\nTommy\nVincenzo\nWilson\nMichael\nChristopher\nDavid\nJohn\nRobert\nJames\nBrian\nJason\nMatthew\nWilliam\nScott\nJoseph\nJeffrey\nRichard\nMark\nDaniel\nThomas\nKevin\nEric\nSteven\nPaul\nPeter\nAnthony\nTodd\nTimothy\nGregory\nStephen\nJonathan\nKenneth\nSean\nEdward\nKeith\nAndrew\nCharles\nCraig\nDonald\nShawn\nPatrick\nJose\nRonald\nFrank\nMarc\nAdam\nDouglas\nRaymond\nGeorge\nGary\nErik\nRyan\nJustin\nAaron\nDennis\nChad\nJoshua\nTroy\nVincent\nBrett\nChristian\nBryan\nLouis\nBenjamin\nDerek\nJeremy\nAlexander\nPhilip\nLuis\nJay\nLawrence\nNicholas\nSamuel\nJamie\nRoger\nWayne\nRandy\nArthur\nFrancis\nKyle\nWalter\nCarl\nRussell\nAngel\nDean\nGeoffrey\nGlenn\nShane\nAlan\nJon\nSeth\nAlbert\nJesse\nJoel\nVictor\nFrederick\nJuan\nKurt\nLee\nAntonio\nBrandon\nCarlos\nChris\nEdwin\nDarrell\nMartin\nSalvatore\nAndre\nBruce\nGerald\nLarry\nMarcus\nHenry\nNathan\nBrendan\nHoward\nLeonard\nRalph\nCorey\nDarren\nTheodore\nDana\nJeffery\nNathaniel\nNeil\nTrevor\nKarl\nNorman\nRoy\nWillie\nAllen\nTravis\nAlfred\nDerrick\nHarold\nIan\nRafael\nRodney\nBrent\nDanny\nEugene\nHector\nMiguel\nTerrence\nJermaine\nJerome\nLance\nAdrian\nJared\nJerry\nManuel\nMario\nRicardo\nShannon\nStanley\nCurtis\nGabriel\nHeath\nTony\nColin\nDwayne\nEarl\nJorge\nLeon\nMicheal\nNelson\nRoberto\nTerry\nTyrone\nClifford\nEduardo\nEvan\nJack\nMike\nOrlando\nSteve\nTerence\nWesley\nBobby\nDaryl\nDuane\nGuy\nJody\nMarvin\nRicky\nTerrance\nAngelo\nDamon\nDylan\nFred\nGlen\nKirk\nLewis\nPhillip\nRamon\nShaun\nAlex\nCalvin\nDarryl\nErnest\nGreg\nHerbert\nJaime\nRocco\nTyler\nWarren\nDale\nGilbert\nGregg\nHarry\nJavier\nJohnny\nKristopher\nMarshall\nMathew\nMaurice\nReginald\nWilson\nZachary\nBarry\nEthan\nGarrett\nGene\nGordon\nJacob\nJoe\nLuke\nMitchell\nPedro\nStefan\nAllan\nArmando\nBernard\nBradley\nBryce\nDarin\nEddie\nFrancisco\nIvan\nJulio\nLamont\nMarco\nMarlon\nMelvin\nMilton\nOscar\nRandall\nRoderick\nSimon\nTracy\nBen\nBret\nByron\nClarence\nCurt\nDamien\nDarnell\nDon\nEdgar\nFernando\nGerard\nHorace\nJimmy\nKent\nKristian\nMarcos\nMax\nNoah\nPablo\nPasquale\nPerry\nRay\nStephan\nVincenzo\nArnold\nBradford\nBryant\nChester\nCory\nDamian\nDemetrius\nDenis\nDominic\nErick\nGerardo\nGilberto\nHans\nIsmael\nJamison\nJimmie\nJulius\nKelvin\nLeo\nLloyd\nLuigi\nMarcel\nMichel\nNeal\nNicola\nRene\nRoland\nRuben\nScot\nSebastiano\nSergio\nSpencer\nTed\nThaddeus\nVernon\nAlberto\nAlvin\nAnibal\nAron\nBrad\nBrendon\nBruno\nCameron\nCasey\nClifton\nCornelius\nDave\nDexter\nDion\nDominick\nDrew\nDwight\nEfrain\nEnrique\nErin\nFredrick\nHarvey\nJamal\nJean\nJohnnie\nKen\nKris\nLeroy\nLucas\nLyle\nMalcolm\nMorgan\nNoel\nOmar\nPaulo\nPreston\nReid\nReinaldo\nRosario\nRoss\nSantos\nSebastian\nSven\nTim\nTucker\nTy\nWallace\nMichael\nChristopher\nDavid\nJason\nJohn\nRobert\nJames\nBrian\nMatthew\nWilliam\nDaniel\nJoseph\nScott\nMark\nJeffrey\nThomas\nRichard\nEric\nKevin\nPeter\nSteven\nPaul\nTimothy\nJonathan\nAnthony\nAndrew\nStephen\nGregory\nTodd\nSean\nKeith\nEdward\nKenneth\nShawn\nCharles\nPatrick\nJoshua\nCraig\nAdam\nRyan\nMarc\nAaron\nDouglas\nFrank\nGeorge\nJose\nRaymond\nJustin\nDonald\nRonald\nBryan\nJeremy\nBenjamin\nGary\nErik\nDennis\nPhilip\nLuis\nAlexander\nChristian\nNicholas\nChad\nShane\nDerek\nLawrence\nDarren\nCarl\nLouis\nSamuel\nTroy\nVincent\nAngel\nJamie\nWayne\nBrett\nCarlos\nFrancis\nJesse\nRoger\nSeth\nAlan\nBruce\nFrederick\nGlenn\nJuan\nRussell\nAntonio\nBrandon\nKyle\nArthur\nGerald\nJoel\nLeonard\nNathan\nEdwin\nJermaine\nJon\nVictor\nAlbert\nCorey\nDean\nHector\nBrendan\nMiguel\nIan\nLarry\nPhillip\nDuane\nHenry\nBrent\nJay\nLee\nMarcus\nDana\nDerrick\nTheodore\nTravis\nAllen\nMartin\nRandy\nRodney\nAndre\nManuel\nNeil\nPedro\nRoberto\nWalter\nWillie\nDamon\nJeffery\nKurt\nRalph\nAlex\nEugene\nGeoffrey\nKarl\nMario\nAngelo\nErnest\nGreg\nJared\nJorge\nMarco\nTerrence\nCurtis\nDaryl\nFrancisco\nHoward\nNelson\nAlfred\nDanny\nDarrell\nLewis\nRicardo\nTerry\nTyler\nAdrian\nBradford\nBradley\nChris\nClifford\nDamian\nGabriel\nGuy\nKirk\nNathaniel\nNorman\nReginald\nRoss\nRoy\nShannon\nSteve\nTony\nWarren\nBernard\nCory\nGlen\nGregg\nHeath\nJack\nJacob\nJerry\nLance\nMathew\nPasquale\nRafael\nRamon\nBrad\nDale\nDylan\nEddie\nFelix\nHarold\nJohnny\nJulio\nMaurice\nNoah\nRandall\nSalvatore\nStanley\nTerrance\nTrevor\nBryce\nDominick\nDwayne\nEdmund\nEfrain\nGordon\nIvan\nJeremiah\nJerome\nJody\nLuke\nRoland\nShaun\nTyrone\nWilfredo\nClinton\nDominic\nEthan\nIsaac\nJesus\nLeon\nMarvin\nMelvin\nOwen\nRicky\nAndres\nBarry\nCarlton\nColin\nEduardo\nFred\nHarry\nJamal\nJavier\nJimmy\nMarlon\nMicheal\nRonnie\nTerence\nZachary\nAbraham\nAlvin\nBobby\nCalvin\nCarmelo\nDevin\nEdgar\nErick\nGarrett\nGene\nGilberto\nGiuseppe\nHarvey\nIsmael\nJaime\nJayson\nJordan\nKerry\nKristopher\nLeslie\nLester\nMalcolm\nMarcos\nMarshall\nPaulo\nRocco\nRoderick\nScot\nToby\nWade\nWesley\nArmando\nAron\nBilly\nEvan\nFranklin\nHerbert\nIsrael\nJamison\nJimmie\nJulian\nKelvin\nKent\nLamont\nLaurence\nLeo\nMarcel\nNeal\nPablo\nRandolph\nRuben\nSergio\nStefan\nStuart\nTed\nTracy\nAlejandro\nAlfredo\nAllan\nAntoine\nArnold\nBarrett\nBrendon\nBryant\nCarlo\nClarence\nClifton\nCurt\nDamien\nDarius\nDimitrios\nDrew\nDustin\nEarl\nElvis\nFernando\nGerard\nHans\nHeriberto\nIra\nJamey\nJean\nJeff\nJennifer\nJohnathan\nKelly\nKendrick\nKris\nLorenzo\nNoel\nOmar\nRaul\nReinaldo\nRene\nSheldon\nStewart\nTommy\nTracey\nMichael\nChristopher\nJason\nDavid\nJohn\nRobert\nJames\nBrian\nMatthew\nDaniel\nJeffrey\nWilliam\nJoseph\nMark\nScott\nRichard\nKevin\nThomas\nEric\nPaul\nSteven\nPeter\nAndrew\nStephen\nAnthony\nJonathan\nTimothy\nAdam\nSean\nGregory\nJoshua\nTodd\nEdward\nKeith\nRyan\nKenneth\nShawn\nCharles\nJustin\nPatrick\nJeremy\nBenjamin\nMarc\nJose\nGeorge\nAaron\nBryan\nFrank\nCraig\nDouglas\nRonald\nErik\nRaymond\nDonald\nGary\nNicholas\nLuis\nPhilip\nDennis\nChad\nSamuel\nShane\nJamie\nJesse\nLouis\nNathan\nChristian\nVincent\nAlan\nAlexander\nJuan\nSeth\nArthur\nLawrence\nJermaine\nAngel\nCorey\nDarren\nDean\nDerek\nBrett\nJoel\nMartin\nCarl\nIan\nKyle\nTroy\nCarlos\nHector\nWayne\nHenry\nJon\nLee\nNeil\nVictor\nAntonio\nBrendan\nTheodore\nGerald\nRandy\nWalter\nAndre\nEdwin\nFrederick\nKarl\nKurt\nSalvatore\nBruce\nDana\nMiguel\nRoger\nBrandon\nJay\nJeffery\nPedro\nAlbert\nEugene\nFrancis\nGeoffrey\nRodney\nJared\nMarcus\nPhillip\nRalph\nTerrence\nTravis\nJacob\nJerry\nLeonard\nTrevor\nEvan\nGabriel\nChris\nColin\nGlenn\nJorge\nClifford\nDale\nDanny\nNelson\nRoberto\nRussell\nStanley\nCurtis\nGordon\nGreg\nDamian\nDerrick\nJulio\nMarco\nRafael\nWarren\nWillie\nAllen\nBarry\nBret\nDamon\nEddie\nGlen\nHarry\nTyrone\nAbraham\nAlfred\nAngelo\nBilly\nDamien\nDaryl\nKristopher\nLucas\nNeal\nNorman\nRandall\nDominic\nErnest\nJesus\nKirk\nLarry\nMario\nMathew\nMaurice\nOrlando\nRamon\nRoy\nTyler\nCasey\nCory\nDwayne\nEarl\nHoward\nIsaac\nJohnny\nLeon\nTony\nWade\nBradley\nBrent\nDuane\nDwight\nFelix\nFrancisco\nGregg\nHarold\nJack\nJaime\nJordan\nManuel\nMyron\nNathaniel\nRicardo\nSteve\nZachary\nAlex\nAlvin\nBernard\nClayton\nClinton\nDevin\nEthan\nFred\nHeath\nKris\nMicah\nNoel\nShannon\nAlejandro\nAndres\nEdmund\nErick\nFranklin\nGrant\nJerome\nJody\nLamont\nLeo\nLuke\nMicheal\nMilton\nReginald\nStephan\nTerrance\nBrad\nBradford\nCarlo\nCarmelo\nDarrell\nDarryl\nDenis\nDevon\nDion\nEdgar\nFernando\nHerbert\nJavier\nJeremiah\nJimmy\nJosh\nKristian\nLance\nLester\nMarcos\nMarlon\nMarvin\nOmar\nOscar\nRicky\nRudolph\nStuart\nTerrell\nAdrian\nAlberto\nAri\nAustin\nBobby\nBrenden\nClarence\nClifton\nDominick\nDylan\nGilberto\nJamal\nJarrod\nJayson\nJeff\nJulian\nMalcolm\nMitchell\nNakia\nRene\nRoland\nRonnie\nRuben\nSergio\nShaun\nTommy\nAllan\nAntoine\nArmando\nBrendon\nBryant\nBryce\nByron\nCarlton\nClint\nDiego\nEfrain\nEli\nGarrett\nGerard\nHans\nHeriberto\nIra\nIsmael\nIsrael\nIvan\nJamarr\nKareem\nLewis\nLloyd\nLorenzo\nNicola\nNikolaos\nNoah\nOliver\nOwen\nPasquale\nPaulo\nRay\nSebastiano\nStewart\nTerry\nTyson\nWesley\nWilfred\nWilfredo\nWilson\nMichael\nChristopher\nJason\nDavid\nJohn\nRobert\nMatthew\nJames\nBrian\nDaniel\nJoseph\nJeffrey\nEric\nWilliam\nKevin\nRichard\nScott\nThomas\nSteven\nMark\nTimothy\nAnthony\nPaul\nJonathan\nAndrew\nRyan\nStephen\nPeter\nJoshua\nTodd\nSean\nGregory\nAdam\nShawn\nEdward\nJeremy\nKeith\nCharles\nPatrick\nBenjamin\nJustin\nKenneth\nMarc\nJose\nGeorge\nRonald\nDonald\nCraig\nAaron\nRaymond\nBryan\nFrank\nChad\nDouglas\nGary\nErik\nJamie\nJuan\nNathan\nPhilip\nAlexander\nDennis\nJesse\nLuis\nSeth\nChristian\nVincent\nBrandon\nNicholas\nKyle\nSamuel\nBrett\nCorey\nDerek\nCarlos\nFrederick\nLouis\nAlan\nAntonio\nGeoffrey\nIan\nCarl\nShane\nVictor\nEdwin\nJared\nJoel\nRoger\nAngel\nJay\nRussell\nWalter\nBrendan\nSalvatore\nJacob\nMarcus\nMiguel\nRandy\nRoberto\nArthur\nDarren\nJermaine\nAlbert\nHenry\nLeonard\nTrevor\nRodney\nWayne\nRicardo\nGerald\nMartin\nMathew\nTroy\nDean\nLawrence\nNathaniel\nDuane\nBruce\nChris\nDana\nEvan\nFrancis\nHector\nJeffery\nNeil\nDale\nDerrick\nKurt\nLee\nRandall\nTerrence\nAndre\nDamon\nDanny\nDaryl\nEugene\nGlenn\nJon\nStanley\nTravis\nTyrone\nJohnny\nWillie\nErnest\nGabriel\nGregg\nJerome\nManuel\nMario\nNelson\nSpencer\nTheodore\nTyler\nAlex\nBrent\nJimmy\nJorge\nKirk\nLuke\nMicheal\nOrlando\nPedro\nPhillip\nRalph\nDustin\nGlen\nHarold\nKarl\nNorman\nRafael\nSteve\nAllen\nAngelo\nClinton\nDwayne\nEdgar\nEthan\nFelix\nGuy\nHoward\nLamont\nLarry\nZachary\nAlberto\nAlfred\nBradley\nCory\nCurtis\nDamian\nJaime\nJulio\nNoah\nWilfredo\nAllan\nBarry\nBrad\nCasey\nClifford\nClifton\nColin\nHarry\nJack\nJerry\nLeon\nNeal\nReginald\nRoss\nStefan\nTony\nWarren\nWesley\nAlexis\nBobby\nDominic\nEfrain\nFrancisco\nGreg\nIvan\nJeff\nJeremiah\nKelly\nLucas\nMaurice\nNoel\nRicky\nShannon\nShaun\nTommy\nBernard\nBilly\nClayton\nDevin\nDevon\nDrew\nEddie\nFred\nGavin\nGerard\nGiuseppe\nGordon\nGrant\nJavier\nKristopher\nOmar\nRamon\nRocco\nTerrance\nAlejandro\nAustin\nBret\nBryce\nCaleb\nCameron\nCarlton\nDarrell\nFernando\nGarrett\nGene\nGiovanni\nJayson\nKelvin\nLance\nLloyd\nRonnie\nRoy\nRuben\nSebastian\nTerrell\nTerry\nToby\nTremayne\nWade\nAdrian\nAlfredo\nBlake\nBradford\nDarnell\nDwight\nDylan\nEdmund\nEduardo\nErick\nErnesto\nFranklin\nHerbert\nIsrael\nJarrod\nLorenzo\nMarcel\nMarco\nMarcos\nMelvin\nMicah\nNick\nNicola\nOscar\nSantos\nSergio\nStephan\nAndres\nAntoine\nArmando\nBen\nByron\nChester\nCourtney\nDamien\nDemetrius\nDenis\nDominick\nDonnie\nElijah\nElliot\nEmilio\nFrancesco\nGino\nHeath\nHugh\nIsmael\nJake\nJamal\nJed\nJesus\nJody\nJoey\nJohnnie\nJordan\nJulian\nJulius\nKareem\nKerry\nMike\nPasquale\nQuincy\nRandolph\nRaul\nRobbie\nRoland\nTerence\nThaddeus\nTobias\nTyson\nVernon\nWilson\nMichael\nChristopher\nDavid\nJason\nMatthew\nJames\nBrian\nJohn\nDaniel\nRobert\nJoseph\nWilliam\nJeffrey\nEric\nThomas\nRichard\nKevin\nScott\nMark\nTimothy\nPaul\nSteven\nPeter\nJonathan\nAnthony\nRyan\nJoshua\nAndrew\nJeremy\nGregory\nStephen\nEdward\nTodd\nKeith\nAdam\nBenjamin\nSean\nShawn\nJose\nJustin\nAaron\nCharles\nPatrick\nKenneth\nMarc\nCraig\nGeorge\nNicholas\nDonald\nFrank\nJesse\nRonald\nBryan\nDouglas\nRaymond\nJamie\nNathan\nShane\nSamuel\nChristian\nErik\nGary\nCarl\nLuis\nAlexander\nAntonio\nChad\nDennis\nKyle\nBrendan\nPhilip\nVincent\nBrett\nCarlos\nJuan\nCorey\nBrandon\nIan\nAndre\nJared\nJermaine\nLouis\nRoger\nJoel\nNeil\nSeth\nDerek\nTroy\nAngel\nBruce\nNathaniel\nGabriel\nJacob\nJeffery\nLawrence\nRandy\nWalter\nWayne\nRoberto\nVictor\nAlan\nArthur\nEdwin\nFrancis\nGeoffrey\nGlenn\nMiguel\nRussell\nTravis\nFrederick\nJeremiah\nJorge\nAlbert\nDamon\nGerald\nLarry\nLee\nPhillip\nRafael\nRicardo\nBarry\nBrent\nDana\nHenry\nJon\nEddie\nJay\nKurt\nTerrence\nMarcus\nNelson\nAlex\nAllen\nDamian\nDanny\nDean\nHector\nJaime\nDale\nDerrick\nJerry\nKarl\nRamon\nTheodore\nTyrone\nCasey\nColin\nCory\nCurtis\nDarren\nGregg\nJerome\nManuel\nMathew\nPedro\nRalph\nWesley\nAngelo\nDarrell\nJack\nJohnny\nRodney\nSalvatore\nTyler\nAdrian\nEugene\nGlen\nJulio\nKristopher\nLuke\nMartin\nMaurice\nTerrance\nTrevor\nBilly\nBrad\nChris\nClifford\nDwayne\nLeonard\nLucas\nOrlando\nStanley\nAlfred\nBernard\nBryant\nClinton\nDuane\nEvan\nFernando\nLeon\nMicah\nMicheal\nNeal\nReginald\nShaun\nTony\nAllan\nEarl\nGreg\nHarold\nJavier\nJohnathan\nMarco\nWilfredo\nZachary\nAlejandro\nFelix\nGarrett\nGerard\nGiuseppe\nHarry\nIsaac\nJevon\nLance\nNoah\nPasquale\nSpencer\nSteve\nTomas\nWade\nWillie\nAlvin\nDamien\nDaryl\nDustin\nDylan\nFrancisco\nFranklin\nJayson\nJeff\nJesus\nJimmy\nKristian\nMarvin\nMelvin\nNorman\nPaulo\nTerry\nTyron\nAlexis\nAriel\nAustin\nBen\nBradford\nBradley\nBrendon\nCarmelo\nClifton\nDemetrius\nDominic\nEdgar\nEthan\nFred\nGuy\nKelly\nMarlon\nRaul\nRicky\nSergio\nStuart\nAbraham\nAlfredo\nBobby\nBret\nCalvin\nClayton\nDomenic\nDrew\nEfrain\nErick\nErin\nErnest\nFrankie\nHoward\nJamal\nJennifer\nJonas\nLamar\nNicolas\nOmar\nRolando\nRoss\nRuben\nSam\nScot\nShannon\nAlberto\nAnibal\nArmando\nBrooke\nCesar\nCody\nCornelius\nDarrin\nDarryl\nDenis\nDominick\nEduardo\nElvis\nGeraldo\nGerardo\nGilberto\nGiovanni\nHeath\nIsrael\nJackson\nJamil\nJarrod\nJody\nJoe\nJoey\nKirk\nLeo\nLewis\nMarcos\nMario\nMyron\nNick\nPablo\nQuincy\nRandolph\nRaphael\nRay\nReynaldo\nRoy\nSolomon\nStefan\nTerrell\nTylon\nVaughn\nVincenzo\nWarren\nMichael\nChristopher\nJason\nDavid\nMatthew\nJohn\nRobert\nBrian\nJames\nDaniel\nJoseph\nKevin\nWilliam\nEric\nJeffrey\nRichard\nMark\nThomas\nScott\nTimothy\nAndrew\nRyan\nJoshua\nPaul\nPeter\nAnthony\nJustin\nSteven\nJonathan\nStephen\nJeremy\nAdam\nSean\nGregory\nEdward\nBenjamin\nKeith\nTodd\nShawn\nKenneth\nPatrick\nCharles\nAaron\nJose\nDonald\nBryan\nJesse\nMarc\nDouglas\nNicholas\nRaymond\nFrank\nAlexander\nGary\nNathan\nGeorge\nRonald\nErik\nLuis\nCraig\nJared\nChristian\nCorey\nAngel\nVincent\nDennis\nPhilip\nChad\nIan\nKyle\nWesley\nCarlos\nSeth\nShane\nJuan\nJacob\nLouis\nShaun\nSamuel\nVictor\nAntonio\nBrendan\nJamie\nDerek\nBrett\nGeoffrey\nJoel\nLawrence\nWalter\nRussell\nBrandon\nEdwin\nJeremiah\nWayne\nAndre\nAlan\nHector\nNathaniel\nArthur\nCarl\nColin\nAlbert\nBruce\nGerald\nKristopher\nMiguel\nRalph\nTravis\nCory\nJay\nJon\nRoberto\nNeil\nPhillip\nRafael\nRandy\nZachary\nDamon\nDwayne\nKurt\nTheodore\nAlex\nJermaine\nMartin\nRoger\nCurtis\nGabriel\nHenry\nJeffery\nRamon\nTrevor\nAllen\nDerrick\nGlenn\nLarry\nLuke\nRoy\nTroy\nChris\nErnest\nEthan\nEvan\nJorge\nMario\nMathew\nPedro\nTyler\nAdrian\nEdgar\nFrancis\nFrederick\nHarold\nLeonard\nNeal\nSalvatore\nAlfred\nAllan\nDean\nEugene\nJimmy\nJohnny\nKarl\nMarco\nMarcus\nWillie\nBrent\nDamian\nDamien\nDuane\nLucas\nRicardo\nAngelo\nCasey\nJaime\nLee\nMaurice\nRodney\nTerrence\nTony\nBradford\nDaryl\nDevon\nFernando\nFrancisco\nGregg\nNelson\nOrlando\nTerrance\nTyrone\nAlexis\nClayton\nDarren\nDevin\nEduardo\nGlen\nIsrael\nJack\nJavier\nManuel\nMicheal\nNoah\nRaul\nStanley\nSteve\nToby\nTyron\nBobby\nBradley\nDana\nDanny\nDarrell\nDylan\nFelix\nFrancesco\nGarrett\nGreg\nHoward\nIvan\nJerome\nJordan\nOmar\nRicky\nWilfredo\nWilson\nChester\nCourtney\nDominick\nDustin\nEli\nGiuseppe\nHarry\nJeff\nJerry\nJody\nLeon\nMarcos\nMarlon\nMitchell\nOscar\nQuincy\nRuben\nTerry\nAri\nAshley\nBrad\nCameron\nClifford\nDale\nDominic\nFranklin\nGavin\nGordon\nGuy\nHerbert\nMax\nNorman\nOwen\nRocco\nSebastian\nSergio\nVernon\nAlberto\nAlejandro\nAric\nArnold\nAron\nBilly\nCaleb\nCarmine\nDemetrius\nDomenic\nDwight\nEarl\nGraham\nGrant\nJavon\nJayson\nJulio\nKris\nLonnie\nMarquis\nMarvin\nNoel\nOliver\nRandolph\nRay\nRoderick\nRoss\nSimon\nStefan\nTylon\nAbraham\nAgustin\nAlton\nAntwan\nAustin\nBen\nCalvin\nClarence\nClifton\nColby\nCollin\nConor\nDarryl\nDion\nDrew\nEddie\nEfrain\nEliezer\nEnrique\nGerard\nHugh\nIsaac\nJamal\nJarrod\nJoe\nJonathon\nJulian\nLamar\nLance\nLeroy\nLuigi\nMelvin\nMorgan\nPierre\nRandall\nSantos\nShannon\nMichael\nJason\nChristopher\nDavid\nMatthew\nBrian\nJames\nJohn\nDaniel\nRobert\nJoseph\nWilliam\nJeffrey\nKevin\nEric\nTimothy\nRyan\nThomas\nScott\nRichard\nAnthony\nMark\nAndrew\nNicholas\nPaul\nJoshua\nSteven\nPeter\nJonathan\nAdam\nGregory\nStephen\nJeremy\nJustin\nSean\nCharles\nBenjamin\nShawn\nEdward\nKeith\nPatrick\nTodd\nJose\nAaron\nMarc\nJesse\nShaun\nBryan\nKenneth\nFrank\nGeorge\nDouglas\nErik\nNathan\nAlexander\nPhilip\nVincent\nKyle\nLuis\nGary\nSamuel\nSeth\nCraig\nRonald\nDennis\nDonald\nJared\nRaymond\nAntonio\nCarlos\nCorey\nJacob\nBrendan\nChristian\nBrandon\nIan\nJuan\nCarl\nChad\nVictor\nLawrence\nShane\nLouis\nAngel\nJamie\nWayne\nArthur\nDerek\nTravis\nLee\nAlan\nBrett\nBruce\nFrancis\nHector\nJay\nRussell\nZachary\nHenry\nWalter\nJoel\nWesley\nColin\nLarry\nPedro\nGeoffrey\nNathaniel\nNelson\nRandy\nEdwin\nGabriel\nGerald\nJorge\nKristopher\nPhillip\nFrederick\nJon\nJulio\nTheodore\nAndre\nJaime\nTroy\nAlbert\nEvan\nLuke\nManuel\nMarcus\nNeil\nRoger\nTerrence\nTrevor\nWilfredo\nDarren\nEugene\nBradley\nDamien\nDustin\nErnest\nLeonard\nLucas\nRafael\nRoberto\nSalvatore\nTyler\nAdrian\nAllen\nAustin\nDamian\nJack\nJerry\nKurt\nMaurice\nRicardo\nWillie\nAlfred\nAngelo\nCory\nCurtis\nJermaine\nLamar\nMathew\nNorman\nRalph\nTyrone\nDamon\nDwayne\nFelix\nReginald\nAlexis\nBrent\nCalvin\nDanny\nGarrett\nGlenn\nHarold\nMartin\nMiguel\nTony\nCameron\nDana\nDerrick\nEthan\nFrancisco\nJayson\nJeffery\nJeremiah\nRandall\nBarry\nDevin\nGrant\nGregg\nJohnny\nKarl\nMorgan\nRoy\nRuben\nTerrance\nTerry\nAlberto\nAlex\nBradford\nClifford\nDarrell\nDarryl\nFernando\nHarry\nIsrael\nJesus\nLamont\nLloyd\nOrlando\nRamon\nRoss\nStanley\nChris\nClinton\nEarl\nFrankie\nGordon\nIvan\nJamal\nJarrod\nJoey\nJulian\nMarco\nMario\nNoah\nNoel\nOmar\nRicky\nCarmelo\nClarence\nEfrain\nGerard\nGiuseppe\nGlen\nIsmael\nLance\nLeo\nMarvin\nMelvin\nMicheal\nNeal\nPasquale\nQuincy\nWarren\nBen\nBlake\nBrendon\nBryant\nCasey\nDean\nDominick\nDwight\nDylan\nEduardo\nElvis\nEmmanuel\nGilbert\nGilberto\nGraham\nGreg\nJavier\nJimmy\nJordan\nJosue\nLeroy\nMoises\nNicolas\nRonnie\nTaylor\nTyson\nAbraham\nAlejandro\nAllan\nAntoine\nAntwan\nBernard\nBobby\nByron\nCarlton\nDavon\nDominic\nDrew\nDuane\nEddie\nGiovanni\nHoward\nJerome\nJoe\nJulius\nKristofer\nKristoffer\nLewis\nLorenzo\nMarshall\nNick\nOliver\nReinaldo\nRodney\nRory\nShannon\nSteve\nTed\nTerrell\nVincenzo\nZane\nAlfredo\nAndres\nArmando\nBrad\nBryce\nCaleb\nChristos\nCody\nCourtney\nDaryl\nDemetrius\nDenis\nDion\nEdgardo\nFreddy\nFredrick\nGavin\nGraig\nHarvey\nHerman\nIsaac\nJarod\nJean\nJohnathan\nJonathon\nKai\nKendall\nLaurence\nLeon\nMarquis\nNorberto\nOwen\nPreston\nRay\nRoland\nRui\nSpencer\nTyrell\nWilson\nMichael\nChristopher\nJason\nDavid\nMatthew\nBrian\nRobert\nJohn\nDaniel\nJames\nJoseph\nWilliam\nJeffrey\nKevin\nThomas\nJoshua\nRyan\nNicholas\nTimothy\nEric\nRichard\nAndrew\nAdam\nScott\nAnthony\nJonathan\nMark\nJustin\nSteven\nPeter\nGregory\nPaul\nStephen\nJeremy\nPatrick\nBenjamin\nSean\nCharles\nJose\nKenneth\nAaron\nKeith\nBryan\nShawn\nEdward\nTodd\nFrank\nRaymond\nJared\nJesse\nMarc\nGeorge\nLuis\nDonald\nDouglas\nErik\nGary\nCraig\nRonald\nKyle\nChad\nNathan\nShaun\nDennis\nTravis\nVincent\nAlexander\nJacob\nJamie\nJoel\nSeth\nSamuel\nBrandon\nCarlos\nChristian\nIan\nJuan\nLawrence\nAntonio\nPhilip\nShane\nAngel\nCarl\nNathaniel\nBrett\nFrederick\nCorey\nDerek\nBrendan\nLouis\nRandy\nVictor\nWayne\nZachary\nAlan\nAndre\nMiguel\nRussell\nArthur\nFrancis\nWesley\nBruce\nDarren\nEvan\nAlex\nColin\nEdwin\nMarcus\nGabriel\nJeremiah\nTheodore\nTrevor\nGeoffrey\nPhillip\nSalvatore\nDaryl\nKristopher\nLuke\nMartin\nDamien\nDerrick\nEugene\nHector\nJay\nMathew\nJeffery\nPedro\nGlenn\nLee\nWalter\nAllen\nBradley\nBrent\nCurtis\nKurt\nLeonard\nNeil\nTyler\nAdrian\nBobby\nHenry\nJerome\nJorge\nLucas\nMario\nRandall\nCory\nDean\nGerald\nJayson\nRoger\nTroy\nAlexis\nDana\nEddie\nJavier\nJerry\nLarry\nManuel\nMarco\nRicardo\nTerrance\nAlbert\nDarryl\nJack\nJon\nJordan\nJulio\nMaurice\nOrlando\nRafael\nRoberto\nTyrone\nAllan\nAngelo\nBarry\nDale\nDwayne\nHarry\nIsmael\nJimmy\nReginald\nHarold\nJaime\nLamont\nNeal\nRocco\nWillie\nAlberto\nBrad\nClifford\nDevin\nDevon\nEdgar\nEthan\nFrancisco\nGarrett\nJermaine\nKarl\nNelson\nNorman\nOscar\nRoss\nStanley\nTerrence\nAlfred\nCasey\nDanny\nEmilio\nFernando\nJesus\nKirk\nLance\nLewis\nMax\nPasquale\nRalph\nRamon\nTerry\nTony\nClinton\nCourtney\nDustin\nEarl\nEduardo\nEfrain\nGilberto\nGregg\nHerbert\nJarrod\nJohnny\nJulian\nNoah\nNoel\nRodney\nRuben\nSteve\nAlejandro\nAlvin\nAndy\nBernard\nCalvin\nChris\nClayton\nDamian\nDominic\nDominick\nDrew\nErnest\nGraham\nIsaac\nIvan\nJamar\nJonathon\nMarvin\nOmar\nQuentin\nRashad\nShannon\nWilfredo\nAndres\nBradford\nDamon\nDylan\nEdgardo\nFranklin\nGene\nGilbert\nGrant\nGuy\nHeath\nHoward\nJamal\nLeslie\nLester\nMarlon\nMelvin\nMicheal\nPablo\nRicky\nRonnie\nRory\nRoy\nSimon\nAlfredo\nAntoine\nBret\nCaleb\nCarlton\nCarmelo\nCesar\nDarnell\nDarrell\nDenis\nDesmond\nErick\nFelipe\nFelix\nFrankie\nGerard\nGiuseppe\nGlen\nGordon\nHeriberto\nHunter\nIsrael\nJed\nJessie\nJohnathan\nLamar\nLeo\nLeon\nLeroy\nNicolas\nQuinn\nReinaldo\nRoland\nSergio\nTaylor\nTerrell\nTommy\nTucker\nTyron\nTyson\nWarren\nAbraham\nBryon\nCameron\nConor\nDemetrius\nDion\nEdmund\nElijah\nElliot\nElvis\nFabian\nFloyd\nGraig\nJeff\nJevon\nJosiah\nKareem\nKristofer\nLorenzo\nMalcolm\nMarquis\nMilton\nMorgan\nNicola\nOliver\nPaulo\nReid\nRobin\nRoman\nSolomon\nSpencer\nStephan\nTerence\nToby\nTyree\nTyreese\nMichael\nChristopher\nJason\nDavid\nMatthew\nJohn\nDaniel\nRobert\nJoseph\nBrian\nJames\nEric\nJustin\nRyan\nThomas\nWilliam\nJeffrey\nJoshua\nJonathan\nNicholas\nAndrew\nKevin\nTimothy\nMark\nAnthony\nScott\nAdam\nRichard\nPaul\nSteven\nStephen\nBenjamin\nPeter\nSean\nGregory\nJeremy\nPatrick\nCharles\nShawn\nAaron\nJose\nEdward\nKenneth\nBryan\nJesse\nDerek\nErik\nKeith\nKyle\nCraig\nJuan\nTodd\nGeorge\nNathan\nAlexander\nDouglas\nLuis\nRaymond\nDonald\nMarc\nFrank\nBrandon\nSamuel\nBrendan\nAngel\nGary\nJared\nTravis\nChad\nShaun\nCarlos\nIan\nDennis\nCorey\nRonald\nAndre\nChristian\nPhilip\nEvan\nSeth\nAlan\nBrett\nRussell\nNathaniel\nDerrick\nShane\nJacob\nGeoffrey\nCarl\nVictor\nBruce\nVincent\nJoel\nAntonio\nHector\nLuke\nWayne\nColin\nEdwin\nLawrence\nKarl\nFrederick\nPhillip\nRandy\nTyler\nZachary\nAlbert\nAlex\nArthur\nHenry\nJeffery\nJordan\nKurt\nMarcus\nMiguel\nTroy\nDanny\nDean\nLee\nGabriel\nJeremiah\nLouis\nRoger\nSalvatore\nAllen\nCory\nJamie\nWillie\nFrancis\nGerald\nJavier\nPedro\nRicardo\nMathew\nMaurice\nRafael\nDustin\nManuel\nMario\nNeil\nTheodore\nBrad\nBradley\nBrent\nDarren\nDwayne\nGarrett\nGlenn\nKristopher\nLarry\nLeonard\nErnest\nJay\nJorge\nRoy\nAustin\nCasey\nJerry\nJohnny\nJon\nRalph\nTyrone\nAlexis\nCurtis\nDamon\nDana\nEugene\nFrancisco\nJermaine\nLucas\nMartin\nMorgan\nRoberto\nRoss\nWalter\nAlberto\nDominic\nJarrod\nJesus\nJulio\nMarco\nMitchell\nRuben\nTerrance\nTony\nTrevor\nWesley\nCourtney\nDarryl\nDaryl\nGreg\nHarry\nOmar\nRandall\nRaul\nCarlton\nClinton\nEthan\nFernando\nGerard\nIsaac\nIvan\nMicheal\nRodney\nBernard\nBlake\nDamien\nDevin\nDrew\nGregg\nIsmael\nJamar\nNelson\nNoel\nRamon\nStanley\nTerrell\nAlfred\nArmando\nChris\nClifford\nDevon\nFred\nHarold\nJerome\nJimmy\nJonathon\nRocco\nWilfredo\nAdrian\nCalvin\nConor\nEdgar\nEduardo\nGene\nJack\nLeroy\nSteve\nTerrence\nAllan\nBarry\nByron\nDarrell\nDominick\nDylan\nEddie\nEfrain\nEmanuel\nErick\nFrancesco\nHoward\nIsrael\nJaime\nJosue\nLamar\nLeon\nMarshall\nNeal\nOscar\nReginald\nReinaldo\nRicky\nRoland\nRonnie\nSpencer\nStuart\nTerry\nTyrell\nBilly\nBobby\nBradford\nBrendon\nCarmelo\nCedric\nClarence\nDesmond\nEarl\nEdgardo\nErich\nGiovanni\nGlen\nJoey\nJohnathan\nJosh\nJulian\nKareem\nKirk\nLeo\nLeslie\nMarquis\nMarvin\nNoah\nRobin\nSam\nSantos\nSebastian\nAbraham\nAlvin\nAngelo\nAri\nCollin\nDale\nDamian\nDonnell\nEnrique\nFelix\nFranklin\nGrant\nGuillermo\nHeath\nHeriberto\nJamaal\nJarod\nJarrett\nJimmie\nJulius\nKelly\nKris\nLance\nLewis\nLiam\nLloyd\nLorenzo\nMax\nNestor\nNicolas\nNorman\nPierre\nRashad\nSebastiano\nTyron\nTyson\nWilfred\nMichael\nChristopher\nMatthew\nJason\nDavid\nJohn\nRobert\nDaniel\nJames\nBrian\nJoseph\nRyan\nJonathan\nJoshua\nThomas\nJustin\nJeffrey\nWilliam\nEric\nKevin\nAdam\nTimothy\nRichard\nAndrew\nAnthony\nNicholas\nMark\nPaul\nScott\nPeter\nSteven\nSean\nStephen\nBenjamin\nJesse\nGregory\nPatrick\nJeremy\nEdward\nAaron\nCharles\nKenneth\nJose\nBryan\nKeith\nBrandon\nShawn\nAlexander\nCraig\nLuis\nFrank\nKyle\nDouglas\nRaymond\nErik\nNathan\nDerek\nTodd\nDonald\nSamuel\nBrendan\nJared\nTravis\nCarlos\nIan\nBrett\nGary\nMarc\nAngel\nGeorge\nShaun\nChad\nDennis\nJoel\nRonald\nAlan\nJuan\nPhilip\nJacob\nSeth\nZachary\nChristian\nNathaniel\nAndre\nEdwin\nVincent\nCorey\nLawrence\nMiguel\nColin\nJordan\nLouis\nAntonio\nFrederick\nJamie\nCarl\nEvan\nHector\nShane\nTyler\nVictor\nArthur\nFrancis\nMaurice\nRussell\nGeoffrey\nKurt\nMarcus\nNeil\nAlbert\nCurtis\nGarrett\nPhillip\nBradley\nDustin\nRandy\nWesley\nCasey\nHenry\nJeremiah\nLee\nMathew\nWayne\nAllen\nGerald\nGlenn\nLuke\nPedro\nTrevor\nTroy\nAlex\nAlexis\nBrad\nGabriel\nKristopher\nRafael\nRicardo\nSalvatore\nWalter\nDanny\nJay\nMartin\nRoger\nTheodore\nBrent\nDean\nEugene\nFrancisco\nJavier\nJeffery\nJermaine\nJesus\nJon\nBruce\nDerrick\nDrew\nJulio\nMorgan\nNelson\nRamon\nRoberto\nAlfred\nAustin\nBarry\nBobby\nFernando\nJerome\nLucas\nTony\nWillie\nBradford\nClifford\nDarren\nDwayne\nEthan\nHarry\nJack\nJerry\nJorge\nKarl\nMario\nNoah\nOmar\nOrlando\nRalph\nTerrell\nTyrone\nClifton\nCory\nDylan\nErnest\nFelix\nHarold\nLeon\nManuel\nReginald\nRicky\nRodney\nRoy\nAdrian\nAngelo\nJimmy\nJohnny\nLance\nOwen\nArmando\nBilly\nDamon\nEddie\nElijah\nGrant\nJoey\nLamar\nPablo\nPasquale\nStanley\nTerrance\nTerrence\nDale\nDevon\nDominic\nIsaac\nJamaal\nJamar\nJayson\nJohnathan\nMitchell\nQuincy\nRandall\nRaul\nRoss\nRuben\nSergio\nClinton\nDamian\nDarryl\nDevin\nEdgardo\nEfrain\nEli\nEmanuel\nGraham\nIvan\nJarrod\nJessie\nJoe\nJulian\nMarlon\nTaylor\nTyron\nAndy\nBernard\nBlake\nBranden\nClayton\nDuane\nDwight\nGregg\nJaime\nJarrett\nJonathon\nLeonard\nMarquis\nMelvin\nMicheal\nNicolas\nRay\nRory\nTommy\nVincenzo\nWilfredo\nAbraham\nAlberto\nAllan\nAntoine\nAriel\nBrenden\nBryon\nCalvin\nChester\nDana\nDarrell\nDominick\nFrancesco\nGavin\nGiovanni\nGordon\nGuy\nIsmael\nJean\nJonah\nKris\nLeonardo\nMalcolm\nMarcos\nMoises\nNickolas\nNoel\nNorberto\nOliver\nShannon\nSteve\nTerry\nAlfonso\nAlvin\nAndres\nArnaldo\nBret\nBryant\nCaleb\nCameron\nCarlton\nCedric\nCesar\nDamien\nEdgar\nEduardo\nElliot\nEmmanuel\nErick\nErnesto\nFloyd\nForrest\nGarry\nGennaro\nHoward\nJimmie\nJohnpaul\nKelvin\nKenny\nKristian\nKristofer\nLamont\nLeroy\nLevi\nLiam\nLorenzo\nMarco\nMike\nNorman\nOscar\nRandolph\nRoderick\nRoland\nRonnie\nSantos\nSebastian\nShamar\nTyrell\nMichael\nChristopher\nMatthew\nDavid\nJason\nDaniel\nJames\nJoseph\nRobert\nJohn\nRyan\nBrian\nWilliam\nJonathan\nThomas\nJeffrey\nJoshua\nJustin\nAndrew\nEric\nKevin\nAdam\nAnthony\nNicholas\nSteven\nTimothy\nRichard\nMark\nPaul\nScott\nStephen\nGregory\nBenjamin\nSean\nPeter\nPatrick\nJeremy\nKyle\nCharles\nJose\nKenneth\nAaron\nAlexander\nJesse\nBrandon\nEdward\nShawn\nDerek\nBryan\nCraig\nJared\nTodd\nGeorge\nFrank\nTravis\nKeith\nRaymond\nGary\nSamuel\nCarlos\nIan\nMarc\nJuan\nNathan\nDennis\nErik\nPhilip\nLuis\nDouglas\nRonald\nDonald\nShaun\nBrendan\nBrett\nTyler\nJordan\nAngel\nSeth\nJacob\nJoel\nZachary\nAlan\nEvan\nChristian\nChad\nGeoffrey\nCorey\nColin\nEdwin\nAndre\nCarl\nMarcus\nRussell\nLouis\nMiguel\nVincent\nWalter\nWayne\nMathew\nAlex\nDustin\nHenry\nFrederick\nNathaniel\nLawrence\nPhillip\nTrevor\nDerrick\nHector\nJorge\nAlexis\nAntonio\nGerald\nJohnny\nKristopher\nRandy\nVictor\nFrancis\nJavier\nShane\nGabriel\nJeremiah\nJerome\nLee\nAlbert\nArthur\nAustin\nBradley\nJamie\nLuke\nNeil\nOmar\nTheodore\nTroy\nTyrone\nJon\nKurt\nLucas\nManuel\nMario\nDarren\nDean\nGlenn\nJermaine\nNoah\nRicardo\nAllen\nClifford\nCory\nFrancisco\nGarrett\nJerry\nLeonard\nPedro\nRoger\nRory\nSalvatore\nBrent\nBruce\nCurtis\nGraham\nWesley\nAdrian\nDamien\nDominic\nEddie\nEugene\nHarry\nJeffery\nMaurice\nRafael\nRoss\nBlake\nClinton\nDanny\nDrew\nGlen\nJay\nMorgan\nWilfredo\nWillie\nAngelo\nBradford\nDamian\nJulian\nKarl\nKelly\nLamar\nLance\nRandall\nRodney\nTony\nAndres\nCarlton\nDana\nDarrell\nDarryl\nIvan\nJaime\nJesus\nJosue\nJulio\nLarry\nNelson\nRamon\nRaul\nTaylor\nTerrence\nTerry\nCalvin\nCameron\nCasey\nEthan\nJarrod\nLeon\nMarquis\nMicheal\nOrlando\nOwen\nReginald\nRoy\nDaryl\nDylan\nHarold\nMartin\nMarvin\nRalph\nRoberto\nRonnie\nSpencer\nTerrance\nTerrell\nTyron\nAlfredo\nArmando\nBrad\nDevin\nEmmanuel\nHoward\nIsaac\nJack\nJamaal\nJamal\nJimmy\nJonathon\nMarshall\nMitchell\nRuben\nSteve\nTristan\nAbraham\nAlberto\nAlejandro\nAlfred\nAlvin\nAriel\nBarry\nBernard\nBrendon\nColby\nDale\nDante\nDevon\nDominick\nEli\nElliot\nEmanuel\nErnest\nGreg\nGuy\nJamar\nMarco\nMarcos\nNoel\nRicky\nTerence\nAllan\nAntoine\nBilly\nClifton\nCody\nCollin\nDarnell\nDavon\nEduardo\nEfrain\nErin\nFrankie\nGavin\nGerard\nGilbert\nGiovanni\nIsrael\nJohnathan\nKirk\nLorenzo\nMelvin\nNicolas\nOliver\nPasquale\nSebastian\nStuart\nTucker\nTyrell\nVincenzo\nWarren\nAri\nBret\nCarmelo\nChaz\nCole\nConor\nEarl\nEdgar\nFelix\nFernando\nGilberto\nGuillermo\nHerbert\nIsmael\nJayson\nJeff\nJess\nJoe\nJohnpaul\nKelvin\nKenny\nKent\nKerry\nLaurence\nLeo\nMilton\nNorman\nRandolph\nReed\nRocco\nRondell\nSergio\nStanley\nTommy\nWade\nMichael\nChristopher\nMatthew\nDavid\nDaniel\nJohn\nJason\nJoseph\nBrian\nJames\nRyan\nRobert\nJustin\nWilliam\nAndrew\nJonathan\nJeffrey\nThomas\nEric\nNicholas\nJoshua\nAdam\nAnthony\nTimothy\nKevin\nMark\nRichard\nStephen\nSteven\nGregory\nSean\nPatrick\nPaul\nPeter\nKyle\nBenjamin\nScott\nAaron\nEdward\nJeremy\nBrandon\nCharles\nKenneth\nBryan\nJose\nJesse\nAlexander\nCraig\nGeorge\nTodd\nShawn\nKeith\nLuis\nJared\nBrendan\nZachary\nDonald\nFrank\nNathan\nTravis\nDouglas\nIan\nDerek\nPhilip\nTyler\nEvan\nRaymond\nErik\nGary\nJacob\nSamuel\nColin\nBrett\nCarlos\nVincent\nMarc\nAlan\nCorey\nDennis\nRonald\nVictor\nJordan\nAntonio\nCarl\nLouis\nAngel\nChristian\nJoel\nMathew\nMiguel\nLuke\nShane\nChad\nDustin\nLawrence\nMarcus\nNathaniel\nSeth\nShaun\nGeoffrey\nHenry\nJuan\nAlexis\nCurtis\nPhillip\nGabriel\nRandy\nTheodore\nAndre\nHector\nAlbert\nAlex\nArthur\nBruce\nTrevor\nKristopher\nFrederick\nJermaine\nMaurice\nRafael\nRalph\nTroy\nWayne\nWesley\nDerrick\nLucas\nEdwin\nJamie\nNeil\nRicardo\nRoger\nRussell\nWalter\nAdrian\nAllen\nAustin\nBlake\nEthan\nGarrett\nRamon\nRoss\nJeremiah\nRoberto\nTony\nDean\nDevin\nGlenn\nJon\nMartin\nTerrence\nBobby\nBradley\nCalvin\nFrancisco\nJack\nJimmy\nJorge\nLeonard\nAlberto\nDanny\nJay\nJerome\nJohnny\nNoah\nSalvatore\nTyrone\nWarren\nAngelo\nCameron\nDevon\nErnest\nRicky\nTaylor\nCasey\nCourtney\nDana\nFrancis\nGordon\nGraham\nJamaal\nJerry\nJulian\nKarl\nKurt\nLarry\nMarco\nMario\nOscar\nBrent\nClifford\nDominic\nDrew\nDwayne\nManuel\nPedro\nSpencer\nTerrance\nBradford\nChase\nDarnell\nDylan\nFelix\nGerald\nHarold\nJaime\nJohnathan\nLee\nLeon\nOmar\nWillie\nBrad\nByron\nColby\nConor\nDane\nElliot\nFernando\nJavier\nJesus\nJoey\nLamar\nMarquis\nNelson\nOrlando\nTristan\nWilfredo\nAntoine\nAshley\nBernard\nBilly\nCory\nDarren\nEugene\nGuy\nHoward\nJamar\nJarrod\nJeffery\nMelvin\nMicheal\nMorgan\nNoel\nPablo\nReginald\nRory\nSergio\nStanley\nTerence\nXavier\nBret\nBryant\nDale\nDamien\nDarrell\nDarryl\nEddie\nEduardo\nEliezer\nErick\nErnesto\nGrant\nHarry\nHeriberto\nIsaac\nJamal\nMarvin\nMicah\nNicolas\nRick\nTerrell\nAlfredo\nBarry\nBryon\nCarmelo\nChaz\nDaryl\nElias\nEmmanuel\nGilbert\nGilberto\nIvan\nJameson\nJarrett\nJonathon\nJulio\nJulius\nKristofer\nLance\nLiam\nMike\nOsvaldo\nOwen\nRandall\nRay\nRoland\nRuben\nSebastian\nSteve\nStuart\nTerry\nVernon\nAlfred\nAllan\nAlvin\nAndreas\nAriel\nBrennan\nBryce\nCaleb\nDamon\nDesmond\nDomenic\nDominick\nFranklin\nFred\nGennaro\nGiuseppe\nHunter\nIsmael\nJavon\nJoe\nJosue\nLeo\nLloyd\nLorenzo\nLuigi\nMarques\nMarshall\nNorman\nPaolo\nQuentin\nRocco\nRoderick\nRodney\nSantos\nTaurean\nTylon\nTyrell\nTyron\nTyshawn\nWillis\nMichael\nChristopher\nMatthew\nDaniel\nDavid\nJohn\nJoseph\nRobert\nJames\nJason\nRyan\nBrian\nWilliam\nAndrew\nJustin\nJoshua\nJonathan\nNicholas\nThomas\nJeffrey\nKevin\nAnthony\nAdam\nEric\nSteven\nTimothy\nStephen\nRichard\nMark\nSean\nPatrick\nPaul\nGregory\nBenjamin\nPeter\nScott\nKyle\nBrandon\nCharles\nAlexander\nJose\nAaron\nEdward\nBryan\nJeremy\nJesse\nNathan\nKenneth\nKeith\nSamuel\nTyler\nZachary\nIan\nDerek\nBrendan\nCraig\nFrank\nTravis\nLuis\nGeorge\nColin\nShawn\nJacob\nMarc\nGary\nJared\nEvan\nErik\nTodd\nDonald\nDouglas\nAngel\nBrett\nPhilip\nVincent\nMarcus\nRaymond\nJuan\nCorey\nJordan\nChad\nNathaniel\nSeth\nMiguel\nRonald\nAndre\nJoel\nDennis\nShane\nAlex\nHector\nCarlos\nAlan\nFrederick\nGabriel\nMathew\nShaun\nDustin\nCarl\nEdwin\nLouis\nChristian\nAntonio\nDerrick\nBruce\nRoberto\nRussell\nLuke\nPhillip\nTrevor\nBrent\nDevin\nLawrence\nRafael\nRandy\nCurtis\nDean\nRoss\nTroy\nAustin\nFrancis\nHenry\nLucas\nWesley\nAdrian\nDevon\nDrew\nGeoffrey\nJay\nJerome\nMartin\nPedro\nTheodore\nWayne\nAlexis\nGarrett\nJimmy\nManuel\nVictor\nCory\nJamie\nKurt\nLarry\nLee\nMarquis\nTony\nCasey\nLeonard\nMitchell\nRoger\nArthur\nBlake\nBradley\nEmmanuel\nEugene\nJavier\nJeremiah\nJorge\nKristopher\nNeil\nNoah\nRandall\nTaylor\nTerrell\nTyrone\nDanny\nDylan\nErnest\nEthan\nJon\nMario\nRicardo\nRodney\nRoy\nWalter\nAlbert\nAllen\nDarryl\nDwayne\nJeffery\nOmar\nFernando\nGerald\nJermaine\nJerry\nJesus\nJohnny\nKarl\nMaurice\nRicky\nRonnie\nTerry\nAlfred\nAngelo\nCalvin\nChase\nDale\nDarren\nGlenn\nGrant\nIsaac\nJonathon\nLance\nRalph\nRory\nSpencer\nBarry\nByron\nConor\nDana\nFrancisco\nGlen\nJack\nJamar\nLogan\nLorenzo\nNelson\nNoel\nRamon\nStuart\nTerrance\nWarren\nWillie\nBernard\nCody\nDominic\nElias\nErick\nFelix\nJaime\nJulio\nMarco\nMarvin\nOrlando\nTerrence\nAllan\nAlvin\nBrad\nBrenton\nBryant\nCaleb\nClayton\nClinton\nDane\nEdgar\nEduardo\nGordon\nHoward\nJavon\nJessie\nJohnathan\nJosue\nMelvin\nOliver\nSalvatore\nStanley\nTerence\nAbraham\nAkeem\nAlberto\nAlec\nBobby\nCharlie\nClifford\nColby\nCole\nDamian\nEddie\nEli\nElliott\nEmanuel\nFelipe\nGraham\nGuy\nHarry\nIsrael\nJamaal\nJulian\nLiam\nLionel\nMarques\nMicheal\nMiles\nNeal\nNicolas\nReginald\nSergio\nStefan\nTomas\nTommy\nTyrell\nBilly\nBradford\nCameron\nChris\nCollin\nDarnell\nDaryl\nDominick\nDuncan\nEarl\nEfrain\nGavin\nGene\nGilbert\nGilberto\nGreg\nIvan\nJake\nJameson\nJessica\nJulius\nKenny\nKieran\nLamar\nLeonardo\nLeroy\nLewis\nMax\nRaheem\nRay\nReed\nRuben\nStephan\nSteve\nWilfredo\nXavier\nAlfredo\nAndres\nAntoine\nBranden\nBrendon\nBryce\nCarmelo\nCourtney\nDamien\nDamon\nDarrell\nDavon\nDerick\nEdmund\nEllis\nFranklin\nFred\nGregg\nHeriberto\nIsmael\nJennifer\nJohnnie\nLeon\nMarlon\nMarquise\nMarshall\nMaxwell\nNorman\nPablo\nParker\nPierre\nRickey\nSam\nTremaine\nTristan\nVincenzo\nMichael\nChristopher\nMatthew\nDaniel\nDavid\nRobert\nJohn\nJames\nJoseph\nRyan\nBrian\nAndrew\nJoshua\nJason\nWilliam\nThomas\nJonathan\nAnthony\nNicholas\nEric\nJustin\nTimothy\nKevin\nSteven\nJeffrey\nAdam\nRichard\nStephen\nMark\nKyle\nPatrick\nSean\nBenjamin\nGregory\nPaul\nPeter\nAlexander\nScott\nBrandon\nCharles\nZachary\nJeremy\nBryan\nAaron\nJose\nEdward\nKenneth\nTyler\nJesse\nLuis\nShawn\nKeith\nDerek\nRaymond\nBrett\nJordan\nNathan\nIan\nDouglas\nSamuel\nBrendan\nJared\nGeorge\nVincent\nFrank\nCraig\nCorey\nPhilip\nDennis\nMarc\nGary\nTravis\nCarlos\nDonald\nTodd\nAngel\nLouis\nRonald\nAlex\nShane\nJacob\nJoel\nAlan\nErik\nEvan\nSeth\nJuan\nChad\nChristian\nColin\nMarcus\nDustin\nMiguel\nVictor\nAndre\nAntonio\nEdwin\nPhillip\nTheodore\nTrevor\nRussell\nBruce\nLawrence\nMathew\nJorge\nGarrett\nGeoffrey\nLee\nLuke\nNathaniel\nFrancis\nHector\nAlexis\nGabriel\nRoss\nShaun\nJohnathan\nNelson\nCarl\nCasey\nManuel\nRandy\nFrederick\nMaurice\nRandall\nBradley\nClifford\nJay\nMario\nRoger\nTaylor\nWesley\nAllen\nArthur\nDerrick\nDylan\nGerald\nHenry\nJamie\nMitchell\nNeil\nWayne\nDevin\nRafael\nTerrance\nAdrian\nBrent\nCory\nDanny\nDominic\nLucas\nPedro\nDrew\nJulian\nKarl\nMartin\nRicardo\nAngelo\nCurtis\nDale\nJeffery\nRalph\nStanley\nTroy\nWarren\nCody\nJerry\nLance\nOmar\nRuben\nBrendon\nDarren\nFrancisco\nJavier\nJerome\nJonathon\nKurt\nMax\nRoberto\nTony\nTyrell\nAlbert\nAustin\nDarryl\nDean\nNoah\nAndres\nJake\nJeremiah\nJesus\nJon\nLeonard\nMelvin\nMicheal\nOwen\nSalvatore\nSebastian\nTerrence\nWalter\nWilfredo\nXavier\nClinton\nEthan\nHoward\nIsaac\nJameson\nJermaine\nJulio\nKristopher\nMarquis\nMarvin\nRory\nSpencer\nTristan\nAlfred\nBarry\nBradford\nCalvin\nDane\nEfrain\nFernando\nGlenn\nHarold\nHarry\nJamar\nLamar\nMorgan\nOrlando\nRocco\nRoy\nWillie\nBlake\nBrad\nBryce\nCameron\nChris\nDarnell\nDarrell\nDevon\nEmanuel\nEugene\nGraham\nGrant\nJayson\nJimmy\nJohnny\nNoel\nRaul\nRicky\nRonnie\nTyrone\nAri\nArmand\nBobby\nCaleb\nClayton\nDaryl\nDimitrios\nEduardo\nFranklin\nGordon\nJack\nMaxwell\nOliver\nReginald\nSergio\nTerrell\nWilson\nAlejandro\nAlfredo\nAllan\nAriel\nBranden\nChase\nChaz\nDominick\nEmmanuel\nEnrique\nErick\nFelix\nGreg\nIvan\nJoe\nJosue\nKareem\nKenny\nLarry\nLeon\nLogan\nNolan\nNorman\nParker\nRamon\nSteve\nStuart\nTyshawn\nBret\nCesar\nClifton\nCollin\nDante\nDave\nDwayne\nEddie\nErich\nGilberto\nGlen\nIsaiah\nIsrael\nJaime\nJamal\nJamel\nJessie\nKendall\nKirk\nMarshall\nRodney\nStefan\nTerry\nTommy\nAlberto\nAlessandro\nAli\nAlvin\nAntoine\nBaby\nBernard\nBilly\nBrennan\nBrenton\nColby\nConor\nEarl\nEdmund\nElliot\nElvis\nFreddie\nGavin\nGene\nGiovanni\nGriffin\nHeriberto\nJamaal\nJavon\nKristian\nKristofer\nLionel\nMoises\nNicolas\nPasquale\nReinaldo\nRene\nRoland\nRudolph\nStephan\nTrevon\nTyron\nMichael\nChristopher\nMatthew\nDaniel\nDavid\nJohn\nJoseph\nAndrew\nRobert\nRyan\nJames\nBrian\nWilliam\nJonathan\nKevin\nJoshua\nAnthony\nJason\nNicholas\nThomas\nKyle\nEric\nJustin\nTimothy\nJeffrey\nSteven\nStephen\nRichard\nAdam\nSean\nAlexander\nGregory\nPatrick\nMark\nBenjamin\nPaul\nScott\nPeter\nJeremy\nBrandon\nBryan\nTyler\nZachary\nCharles\nJose\nEdward\nAaron\nJesse\nShawn\nSamuel\nIan\nKenneth\nJacob\nLuis\nKeith\nBrendan\nJordan\nDerek\nNathan\nRaymond\nCraig\nGeorge\nDonald\nFrank\nDouglas\nEvan\nMarc\nRonald\nTravis\nBrett\nCorey\nShane\nChristian\nAngel\nCarlos\nColin\nJared\nPhilip\nVincent\nAlex\nDustin\nJoel\nTodd\nVictor\nDennis\nErik\nGary\nLouis\nSeth\nAndre\nNathaniel\nAlan\nChad\nPhillip\nLuke\nJuan\nMathew\nAntonio\nEdwin\nCory\nDerrick\nMarcus\nShaun\nTrevor\nRoss\nDylan\nMartin\nRussell\nAlexis\nBradley\nBruce\nFrancis\nTheodore\nWalter\nWesley\nCasey\nGeoffrey\nHenry\nWayne\nAustin\nFrederick\nGarrett\nAllen\nDevin\nCurtis\nHector\nBrent\nDevon\nJamie\nJay\nTaylor\nGabriel\nGerald\nTroy\nDean\nJulian\nKristopher\nKurt\nLee\nRandy\nRicardo\nSpencer\nTyrone\nAlbert\nJorge\nLawrence\nMiguel\nNeil\nCarl\nJeffery\nJeremiah\nMitchell\nNicolas\nOrlando\nArthur\nDanny\nDarren\nJerome\nJonathon\nJulio\nLarry\nMaxwell\nRandall\nRoberto\nAdrian\nCaleb\nNelson\nTony\nBrad\nBranden\nCalvin\nConnor\nDominic\nDrew\nFrancisco\nMarco\nMaurice\nOmar\nRalph\nRoger\nCody\nDane\nFelix\nHarry\nJake\nJerry\nJohnathan\nManuel\nMax\nNeal\nNoah\nTerrell\nBlake\nEugene\nGlenn\nJack\nJermaine\nKarl\nMario\nRafael\nAlvin\nCollin\nDana\nErick\nErnest\nHarrison\nJohnny\nMiles\nRicky\nSalvatore\nStefan\nWilfredo\nAlejandro\nAndres\nDarryl\nDominick\nDuane\nEmmanuel\nFernando\nJamal\nJavier\nJesus\nJimmy\nJosue\nMelvin\nMicheal\nNoel\nTerrance\nWarren\nXavier\nAntoine\nBradford\nClifford\nDarnell\nEfrain\nElijah\nGrant\nIsmael\nIsrael\nJaime\nJamar\nLamar\nLucas\nRamon\nStanley\nTyson\nWillie\nAllan\nBryant\nBryce\nCameron\nCole\nDaryl\nDwayne\nEthan\nGlen\nHarold\nHoward\nIvan\nJon\nMarshall\nOscar\nOwen\nRashad\nRuben\nAlberto\nAlfred\nBrendon\nByron\nCarlton\nCesar\nChase\nChris\nClayton\nConor\nDale\nDarrell\nEmanuel\nFranklin\nGregg\nGuy\nHunter\nIsaac\nJameson\nLeon\nLloyd\nMarvin\nMorgan\nNorman\nPedro\nRaul\nReinaldo\nRocco\nRory\nSergio\nSimon\nToby\nTristan\nAlfredo\nBabyboy\nBret\nDante\nEarl\nEli\nElliott\nGerardo\nGraham\nGriffin\nJessie\nJoey\nJovan\nKenny\nLance\nLogan\nOliver\nSebastian\nSteve\nTerrence\nTerry\nTyrell\nTyshawn\nVernon\nAkeem\nAriel\nArmand\nBennett\nBernard\nBrenton\nBrooks\nCarmelo\nChester\nClay\nCourtney\nDamian\nDan\nDemetrius\nDillon\nDuncan\nDwight\nEdgar\nEdmond\nEmilio\nEnrique\nFred\nIsaiah\nJamel\nJohnathon\nMyles\nNickolas\nNolan\nPreston\nReginald\nReid\nRene\nRobin\nRodney\nShannon\nTate\nTomas\nZachariah\nMichael\nChristopher\nMatthew\nDaniel\nDavid\nAndrew\nJohn\nRyan\nJoseph\nRobert\nJames\nNicholas\nJoshua\nKevin\nAnthony\nWilliam\nJonathan\nBrian\nJason\nKyle\nThomas\nJustin\nEric\nTimothy\nSteven\nJeffrey\nStephen\nAdam\nSean\nAlexander\nBenjamin\nRichard\nGregory\nScott\nPatrick\nMark\nPaul\nPeter\nBrandon\nZachary\nBryan\nJeremy\nAaron\nTyler\nCharles\nSamuel\nEdward\nJose\nKenneth\nJesse\nJacob\nLuis\nPhilip\nAlex\nShawn\nDouglas\nBrendan\nKeith\nNathan\nDerek\nJordan\nShane\nTravis\nVincent\nCraig\nIan\nJared\nJoel\nRaymond\nBrett\nCorey\nFrank\nGeorge\nCarlos\nAngel\nColin\nErik\nGary\nAlan\nEvan\nJuan\nRonald\nSeth\nAntonio\nChristian\nNathaniel\nMiguel\nDonald\nGeoffrey\nMarcus\nMarc\nAndre\nPhillip\nVictor\nChad\nDylan\nLouis\nTrevor\nDustin\nDennis\nLuke\nTaylor\nAustin\nCarl\nCory\nEdwin\nTodd\nMathew\nAlbert\nDevin\nLawrence\nAllen\nCameron\nCasey\nFrederick\nMartin\nDrew\nGarrett\nHector\nJorge\nRussell\nShaun\nBruce\nHenry\nMitchell\nRandy\nJay\nTony\nCurtis\nFrancis\nGabriel\nGerald\nPedro\nWesley\nAlexis\nKurt\nRoss\nArthur\nBrent\nCody\nJohnathan\nLee\nMario\nNeil\nRafael\nTheodore\nJake\nLeonard\nWalter\nBradley\nConnor\nFelix\nJamie\nJon\nJonathon\nKristopher\nMax\nMaxwell\nNoah\nOrlando\nRoberto\nTroy\nJulian\nMelvin\nRicardo\nRoger\nWayne\nBryant\nDean\nDerrick\nDevon\nMarco\nMarquis\nMicheal\nNicolas\nSalvatore\nStanley\nChase\nDale\nEthan\nGlenn\nJermaine\nAngelo\nDarryl\nIsaac\nJeffery\nSpencer\nAllan\nBradford\nDana\nErnest\nGraham\nJaime\nJerome\nJerry\nJesus\nJulio\nRocco\nAdrian\nBlake\nCollin\nDominic\nHarold\nLogan\nNelson\nOscar\nPreston\nAlfred\nConor\nDwayne\nEmmanuel\nGiovanni\nKarl\nLance\nRalph\nRicky\nTyrell\nTyrone\nAlberto\nBabyboy\nBryce\nByron\nClifford\nDarrell\nJohnny\nLarry\nLeon\nMalcolm\nManuel\nMarvin\nMaurice\nRamon\nRandall\nSergio\nTerrance\nTristan\nWilfredo\nBrendon\nCaleb\nCalvin\nDane\nDarren\nDaryl\nDwight\nFrancisco\nFranklin\nGordon\nHarry\nIvan\nJack\nJeremiah\nLucas\nMiles\nOmar\nOwen\nRaul\nReginald\nTerrell\nXavier\nAbraham\nBernard\nChadwick\nChaz\nCourtney\nDanny\nDillon\nDominick\nEddie\nEugene\nFernando\nGavin\nGilbert\nGriffin\nHunter\nIsmael\nJamal\nJamar\nJavier\nKelvin\nKendall\nLiam\nMorgan\nNoel\nOliver\nRodney\nRuben\nSebastian\nStephan\nTerrence\nAlec\nAlvin\nAntoine\nArmando\nBaby\nBarry\nBobby\nBranden\nBrennan\nClayton\nClinton\nCole\nDavon\nEduardo\nErick\nFrankie\nGlen\nGrant\nGuy\nJamaal\nJaron\nJean\nJessie\nJovan\nKristofer\nLeroy\nLorenzo\nNeal\nParker\nRory\nSonny\nStefan\nSteve\nTerence\nZachariah\nAkeem\nAntwan\nAvery\nBen\nBrenden\nBrooks\nClifton\nConrad\nDamien\nDarius\nDion\nDominique\nEfrain\nElliot\nFrancesco\nGerard\nGerardo\nHerbert\nHeriberto\nHoward\nJavon\nJimmy\nJohnathon\nJosue\nKenny\nKurtis\nLamar\nLamont\nMarcos\nMason\nMyles\nPasquale\nRandolph\nRashad\nRoland\nRoy\nShayne\nSimon\nStuart\nTerry\nTyron\nWade\nWarren\nWilson\nAlejandro\nAlfredo\nBrenton\nCarmelo\nColby\nDallas\nDamian\nDante\nDarnell\nDerick\nDexter\nDiego\nEdgardo\nElias\nEverett\nGarret\nGino\nHarrison\nIsaiah\nIsrael\nJessica\nJoey\nLeo\nLevi\nMarlon\nMarques\nMicahel\nPablo\nRay\nSarah\nShamar\nSylvester\nTracy\nTyshawn\nWillie\nMichael\nChristopher\nMatthew\nDaniel\nDavid\nJohn\nJoseph\nAndrew\nJames\nRyan\nRobert\nNicholas\nWilliam\nJoshua\nBrian\nKevin\nJustin\nJonathan\nAnthony\nThomas\nTimothy\nKyle\nEric\nSteven\nJason\nAlexander\nJeffrey\nStephen\nBenjamin\nSean\nAdam\nRichard\nGregory\nPatrick\nMark\nPeter\nPaul\nScott\nTyler\nZachary\nBrandon\nCharles\nJeremy\nJose\nSamuel\nBryan\nAaron\nKenneth\nJacob\nLuis\nBrendan\nEdward\nNathan\nJesse\nCorey\nDerek\nAlex\nJordan\nGeorge\nRaymond\nKeith\nEvan\nShawn\nIan\nVincent\nFrank\nCraig\nErik\nColin\nTravis\nAngel\nBrett\nDouglas\nJuan\nCarlos\nPhilip\nJared\nMarc\nChristian\nJoel\nRonald\nVictor\nAntonio\nGary\nTrevor\nShane\nSpencer\nTaylor\nAustin\nCory\nCameron\nEdwin\nNathaniel\nCarl\nDevon\nDonald\nDylan\nAlan\nPhillip\nDennis\nDustin\nGeoffrey\nMitchell\nAndre\nDevin\nMarcus\nMathew\nMiguel\nSeth\nTodd\nAllen\nChad\nTroy\nCasey\nCody\nJorge\nRussell\nArthur\nGarrett\nHector\nLouis\nMaxwell\nWayne\nBradley\nJamie\nLuke\nShaun\nAdrian\nHenry\nLucas\nRandy\nRoss\nGabriel\nMartin\nRoberto\nTheodore\nCurtis\nMario\nMax\nWesley\nDarren\nDominic\nEmmanuel\nJake\nJohnny\nMaurice\nPedro\nAlbert\nConor\nDarryl\nFrancisco\nLawrence\nLogan\nDean\nJavier\nJohnathan\nJulian\nManuel\nTyrone\nCalvin\nConnor\nJay\nJesus\nJon\nJulio\nXavier\nBrent\nBryant\nEthan\nLee\nNelson\nSalvatore\nWalter\nWillie\nDerrick\nFrederick\nOwen\nRicardo\nRodney\nDana\nFelix\nJack\nAlexis\nDane\nDrew\nDwayne\nEugene\nFrancis\nJeffery\nJeremiah\nJerome\nMicheal\nRafael\nWilfredo\nAlberto\nBruce\nDanny\nGerald\nGordon\nIsaac\nKarl\nLarry\nBrendon\nClifford\nDillon\nEmanuel\nErnest\nHunter\nRamon\nBlake\nBrad\nCaleb\nColby\nIsaiah\nIvan\nJamal\nJimmy\nKelvin\nKristopher\nMorgan\nRicky\nTerrance\nTony\nAllan\nBrenden\nChase\nDamian\nElliot\nErick\nGavin\nGrant\nJonathon\nKurt\nLeon\nMarco\nMarquis\nMelvin\nMicah\nNicolas\nNoah\nNoel\nOmar\nOrlando\nReginald\nSam\nAlfred\nAndres\nAntoine\nClayton\nCourtney\nEdgar\nElijah\nHoward\nJaime\nJamar\nKristofer\nLeonard\nLiam\nNeil\nPreston\nQuentin\nRandall\nStefan\nSteve\nTerence\nAngelo\nAvery\nBabyboy\nBryce\nByron\nCollin\nElias\nGraham\nHarrison\nJosue\nKurtis\nMalcolm\nMiles\nNorman\nRalph\nRene\nRoger\nRoy\nRuben\nZachariah\nArmando\nBarry\nBranden\nCesar\nCharlie\nChaz\nDale\nDarrell\nDaryl\nDominique\nEfrain\nEli\nElliott\nHarry\nJameson\nJerry\nKareem\nLamar\nLance\nLeroy\nLewis\nLorenzo\nMackenzie\nMyles\nNeal\nNickolas\nPerry\nSebastian\nStanley\nStuart\nTerrell\nTerry\nTristan\nTyrell\nVincenzo\nWade\nWarren\nAntony\nBernard\nBrady\nBrooks\nChris\nClarence\nEarl\nFranklin\nGerard\nGiovanni\nGriffin\nHarold\nJamel\nJermaine\nJoey\nLeonardo\nLevi\nMarshall\nOliver\nOscar\nPablo\nRandolph\nReid\nStephan\nTerrence\nTucker\nTyron\nWilson\nZachery\nAdalberto\nAlfredo\nAli\nAlvin\nAndy\nAri\nBaby\nBradford\nBrenton\nCarter\nClark\nClinton\nDante\nDarius\nDerick\nDomenic\nDonovan\nEddie\nEduardo\nEliezer\nElvis\nErich\nErnesto\nEverett\nFernando\nGerardo\nGilbert\nGlenn\nGregg\nHeriberto\nIsmael\nJaron\nJedidiah\nJeremie\nJessie\nJoe\nJovan\nKellen\nKendall\nKirk\nKorey\nLuigi\nLyle\nMarcos\nMarvin\nMike\nMilton\nQuintin\nRaul\nReinaldo\nRondell\nRonnie\nSolomon\nMichael\nChristopher\nMatthew\nDaniel\nDavid\nAndrew\nJohn\nJoseph\nRobert\nRyan\nJoshua\nNicholas\nJames\nKevin\nAnthony\nBrian\nThomas\nWilliam\nKyle\nJonathan\nJustin\nAlexander\nEric\nBenjamin\nTimothy\nZachary\nSteven\nPatrick\nRichard\nAdam\nMark\nStephen\nJeffrey\nSean\nPeter\nJason\nGregory\nPaul\nBrandon\nTyler\nScott\nCharles\nSamuel\nJose\nAaron\nJacob\nJordan\nBryan\nLuis\nJeremy\nTravis\nAlex\nCorey\nBrendan\nNathan\nJesse\nEdward\nVincent\nDerek\nIan\nKenneth\nJared\nEvan\nColin\nKeith\nShawn\nChristian\nAngel\nRaymond\nDouglas\nPhilip\nErik\nFrank\nCarlos\nBrett\nShane\nCraig\nGeorge\nAndre\nJoel\nJuan\nTaylor\nMarc\nNathaniel\nAustin\nRonald\nDennis\nVictor\nAlan\nSeth\nAntonio\nEthan\nDustin\nDevin\nDylan\nEdwin\nPhillip\nCory\nDonald\nGarrett\nSpencer\nWesley\nMax\nLouis\nLuke\nTodd\nGary\nHenry\nJake\nMarcus\nCameron\nTrevor\nHector\nMiguel\nCarl\nGeoffrey\nArthur\nChad\nGabriel\nBradley\nCasey\nCody\nConnor\nConor\nDevon\nMathew\nMaxwell\nJohnathan\nJulio\nLucas\nRoss\nRussell\nDean\nDrew\nMitchell\nAlbert\nAllen\nFrancis\nJonathon\nKristopher\nMalcolm\nMartin\nTroy\nAlexis\nBryant\nCalvin\nEmmanuel\nJaime\nWayne\nBrent\nCaleb\nCollin\nDerrick\nJamie\nMicheal\nNicolas\nNoah\nNoel\nPedro\nRafael\nRandy\nRoberto\nShaun\nBruce\nLawrence\nMario\nCurtis\nGlenn\nJulian\nLarry\nMarco\nOmar\nRicardo\nTheodore\nWalter\nWarren\nAngelo\nBrendon\nGerald\nHarry\nJay\nJorge\nAdrian\nFrederick\nGrant\nJerry\nKarl\nLogan\nMaurice\nRandall\nTyrone\nDanny\nEdgar\nIsmael\nJermaine\nJesus\nJosue\nLee\nManuel\nMarquis\nNelson\nTerrell\nWillie\nBlake\nBobby\nBryce\nDarryl\nDominic\nEduardo\nEugene\nHarrison\nIsaiah\nJack\nJerome\nKurt\nLamar\nRalph\nRamon\nAlberto\nColton\nDwayne\nEddie\nFrancisco\nGraham\nHunter\nIsaac\nJamar\nJeremiah\nLiam\nNeil\nReginald\nRoger\nTerrence\nXavier\nAkeem\nBrenden\nClayton\nDarren\nFranklin\nGiovanni\nJeffery\nJimmy\nJon\nNeal\nOwen\nRodney\nSalvatore\nStefan\nTerrance\nTyrell\nAndres\nByron\nDale\nEdgardo\nErnest\nGordon\nMilton\nOrlando\nRicky\nRocco\nSam\nSergio\nSteve\nWilfredo\nAlejandro\nAllan\nBranden\nChase\nChris\nDuane\nEfrain\nFelix\nFernando\nGavin\nJackson\nJamal\nJavier\nJayson\nJoey\nJohnny\nMelvin\nRuben\nTony\nAlec\nAndy\nAntwan\nBilly\nBrad\nDana\nDillon\nDonovan\nElijah\nEmanuel\nErick\nHarold\nIsiah\nKendall\nKirk\nLeonard\nMorgan\nNorman\nOliver\nQuentin\nRaul\nRory\nTristan\nAntoine\nBarry\nBrenton\nDiego\nElliott\nHoward\nIsrael\nIvan\nJarrod\nJean\nJohnathon\nKelvin\nLance\nLeon\nMarquise\nMaximilian\nPablo\nStanley\nAlexandre\nAlvin\nBaby\nBabyboy\nBen\nBrandan\nBrennan\nCarter\nClifford\nCourtney\nDamian\nDane\nDarien\nDarnell\nDarrell\nDerick\nDesmond\nDomenic\nDominick\nDuncan\nEdmund\nElliot\nFrankie\nGuy\nJordon\nKwame\nMarvin\nMason\nMiles\nNickolas\nNigel\nNikolas\nParker\nPasquale\nRashad\nRoman\nRoy\nRudolph\nSebastian\nShayne\nSimon\nSpenser\nTerence\nTucker\nTyshawn\nAidan\nAlfredo\nAshton\nBradford\nBrain\nCedric\nCesar\nChadwick\nCharlie\nChaz\nClyde\nDamien\nDante\nDarius\nDaryl\nDavon\nDexter\nDion\nDorian\nEamon\nEli\nElias\nEmilio\nEnrique\nFabian\nFrancesco\nGilbert\nGiuseppe\nHans\nJavon\nJeff\nJoe\nJosiah\nKareem\nKelly\nKenny\nKristofer\nLandon\nLevi\nLorenzo\nMarcos\nMarkus\nNick\nPierre\nReinaldo\nRene\nRoland\nSammy\nSeamus\nSkyler\nSterling\nStuart\nTerry\nVaughn\nVernon\nVincenzo\nWade\nWallace\nWilson\nZachery\nMichael\nChristopher\nMatthew\nDaniel\nRyan\nNicholas\nJoseph\nDavid\nAndrew\nJohn\nJoshua\nJames\nRobert\nWilliam\nKyle\nThomas\nAnthony\nKevin\nJonathan\nJustin\nBrian\nAlexander\nEric\nSteven\nTimothy\nTyler\nSean\nZachary\nJeffrey\nBenjamin\nPatrick\nStephen\nRichard\nAdam\nGregory\nMark\nPeter\nPaul\nJason\nJordan\nSamuel\nCharles\nScott\nBrandon\nJose\nJacob\nBryan\nAaron\nEdward\nLuis\nIan\nEvan\nJesse\nKenneth\nJeremy\nCorey\nAlex\nTravis\nBrendan\nVincent\nColin\nNathan\nShawn\nRaymond\nDerek\nChristian\nCody\nDouglas\nShane\nEthan\nGeorge\nAngel\nCarlos\nDylan\nJared\nFrank\nMarcus\nSpencer\nTaylor\nKeith\nPhilip\nMarc\nDevin\nJuan\nLouis\nJoel\nConnor\nCraig\nErik\nTrevor\nBrett\nCasey\nDonald\nMiguel\nAustin\nCarl\nGary\nNathaniel\nVictor\nCameron\nEdwin\nJulian\nAndre\nDennis\nGabriel\nAntonio\nRussell\nTodd\nJake\nMathew\nMax\nMaxwell\nAlan\nGarrett\nLucas\nLuke\nArthur\nChad\nSeth\nCory\nMitchell\nPhillip\nRonald\nWesley\nDustin\nAdrian\nJack\nJohnathan\nRicardo\nCurtis\nDominic\nGeoffrey\nJorge\nRafael\nTroy\nGiovanni\nHector\nHenry\nNelson\nRoss\nFrancisco\nTheodore\nXavier\nAlbert\nDerrick\nFrancis\nLawrence\nAlexis\nAllen\nBradley\nEmmanuel\nWayne\nDrew\nKristopher\nMartin\nNoah\nRoger\nChase\nConor\nJamal\nJavier\nJesus\nMario\nRoberto\nWalter\nBruce\nDean\nDevon\nKurt\nOmar\nDillon\nFrederick\nJamie\nJermaine\nJerome\nBrent\nGerald\nHarrison\nJonathon\nJulio\nOrlando\nTyrone\nBryce\nCalvin\nEddie\nGraham\nJerry\nLee\nManuel\nMaurice\nMicheal\nAlberto\nCollin\nDale\nElijah\nEmanuel\nJay\nJeremiah\nKarl\nLeonard\nLogan\nRodney\nTerrance\nAlec\nAngelo\nBlake\nColby\nHarry\nJaime\nJohnny\nJon\nJosue\nMiles\nRicky\nSebastian\nTerrence\nFelix\nGlenn\nGordon\nHunter\nIsrael\nJimmy\nNeil\nPedro\nPreston\nRandall\nSalvatore\nStefan\nBernard\nByron\nCaleb\nDana\nDarren\nDominique\nLarry\nLiam\nMarquis\nNickolas\nNicolas\nNorman\nRalph\nRandy\nReginald\nShaun\nTristan\nBobby\nBrad\nBryant\nChaz\nCole\nDamon\nDanny\nDavon\nDominick\nDwight\nIsaac\nIsaiah\nIvan\nJameson\nMalcolm\nMarvin\nMorgan\nRocco\nSergio\nTerry\nTucker\nTyrell\nAndres\nDwayne\nEdgar\nGrant\nIsmael\nJeffery\nLamar\nLorenzo\nMarco\nNoel\nRuben\nTerrell\nTory\nTyshawn\nAkeem\nAlejandro\nBabyboy\nBranden\nBrendon\nCarmen\nClayton\nDamien\nDante\nDaquan\nDarrell\nDarryl\nDaryl\nElliot\nEnrique\nErnest\nEugene\nGavin\nJamar\nJaquan\nKorey\nLance\nMaximilian\nNolan\nOscar\nOwen\nPerry\nRamon\nRashad\nSam\nShayne\nStanley\nSteve\nTerence\nTevin\nZachariah\nAllan\nAndy\nBrenden\nCarlton\nCedric\nClifford\nColton\nDane\nDenzel\nDesmond\nDonovan\nEfrain\nErick\nGilbert\nGriffin\nHeriberto\nJackson\nJordon\nKelly\nKenny\nLeroy\nMason\nMelvin\nMike\nNiko\nPablo\nReynaldo\nRonnie\nStephan\nTony\nWilfredo\nWilson\nZachery\nAlfred\nAli\nAlvin\nAnibal\nAntoine\nBaby\nBilly\nBradford\nBret\nCarmine\nCesar\nDakota\nDamian\nDeshawn\nDion\nEduardo\nElias\nElliott\nEmilio\nFrankie\nJayson\nJean\nJessie\nJovan\nKeenan\nKendall\nLeonardo\nMarcos\nMicahel\nReed\nShamar\nSimon\nSpenser\nThaddeus\nTyron\nWillie\nWinston\nWyatt\nAbraham\nAlfredo\nAntwan\nArmando\nAvery\nBarrett\nBarry\nBen\nCarlo\nClinton\nDashawn\nDonnell\nDuane\nEarl\nEdgardo\nEverett\nGerard\nGino\nGlen\nJamison\nJavon\nKasey\nKelvin\nKent\nKirk\nKristofer\nKurtis\nLeland\nMackenzie\nMalik\nMarcello\nMarshall\nMicah\nMoises\nNikolas\nOliver\nParker\nRay\nRayshawn\nRoland\nRondell\nRory\nSebastiano\nTanner\nTrent\nVincenzo\nMichael\nChristopher\nMatthew\nNicholas\nDaniel\nJohn\nRyan\nJoseph\nAndrew\nDavid\nJames\nJoshua\nRobert\nWilliam\nAnthony\nKyle\nKevin\nJonathan\nAlexander\nThomas\nBrian\nJustin\nEric\nZachary\nTyler\nPatrick\nSean\nSteven\nBenjamin\nBrandon\nJeffrey\nTimothy\nStephen\nAdam\nRichard\nJacob\nSamuel\nJason\nMark\nPaul\nGregory\nJordan\nPeter\nCharles\nAaron\nDylan\nScott\nChristian\nJeremy\nLuis\nJose\nBryan\nEdward\nIan\nBrendan\nNathan\nKenneth\nCody\nJesse\nConnor\nEvan\nAlex\nGeorge\nCorey\nRaymond\nTaylor\nEthan\nShane\nDerek\nAustin\nErik\nKeith\nShawn\nTravis\nVincent\nCarlos\nTrevor\nDouglas\nColin\nDevin\nJared\nBrett\nFrank\nSpencer\nVictor\nGabriel\nJake\nPhilip\nCasey\nCraig\nJuan\nMiguel\nMarc\nRonald\nSeth\nMarcus\nAngel\nEdwin\nNathaniel\nCameron\nDonald\nGarrett\nGary\nLuke\nJoel\nCory\nMartin\nMitchell\nHector\nMathew\nMax\nAntonio\nDillon\nDrew\nHenry\nMaxwell\nPhillip\nFrederick\nAlan\nCarl\nDennis\nDevon\nLouis\nTroy\nJohnathan\nJulian\nAndre\nArthur\nBradley\nDustin\nCurtis\nJorge\nLucas\nGiovanni\nJeremiah\nRoss\nTodd\nChad\nGeoffrey\nOrlando\nShaun\nXavier\nBlake\nCollin\nDerrick\nFrancis\nCaleb\nConor\nDominique\nGerald\nJay\nLawrence\nPedro\nRafael\nAdrian\nBrent\nDominic\nErick\nJack\nKurt\nRoberto\nSalvatore\nElijah\nJulio\nManuel\nMason\nNicolas\nStanley\nTheodore\nWesley\nAlejandro\nAllen\nBruce\nChase\nJermaine\nJesus\nKristopher\nMaurice\nRamon\nRussell\nAlbert\nAlexis\nAngelo\nFrancisco\nHarrison\nJavier\nKarl\nNoah\nWalter\nAlec\nGraham\nHarry\nIsaac\nIsaiah\nJamie\nJonathon\nLarry\nNelson\nRicardo\nSebastian\nTerrell\nWayne\nBrendon\nCalvin\nDamian\nDane\nDarren\nDean\nEugene\nFernando\nGlenn\nJackson\nJohnny\nLeonard\nMarquis\nMicheal\nMorgan\nRandy\nBryant\nColby\nCole\nJamal\nJordon\nJosue\nMario\nOliver\nRalph\nRandall\nRaul\nStephan\nDalton\nDanny\nDashawn\nDavon\nEduardo\nGene\nGrant\nIvan\nLance\nLeon\nLogan\nNeil\nStefan\nTerrence\nAlberto\nBrenden\nDakota\nDante\nDarrell\nDominick\nDonovan\nEmmanuel\nHarold\nHunter\nLee\nMalcolm\nMelvin\nOmar\nOwen\nRicky\nRoger\nTerrance\nTevin\nTony\nAriel\nDale\nDarius\nEddie\nFranklin\nGriffin\nJaime\nJimmy\nKelvin\nMalik\nMarcos\nMarshall\nMiles\nNorman\nOscar\nTerry\nTyrell\nBranden\nDaryl\nDwight\nElliot\nGavin\nGeraldo\nHoward\nJamar\nJaquan\nJean\nJeffery\nJon\nLorenzo\nMarco\nMarlon\nMilton\nPerry\nPreston\nRodney\nSergio\nSteve\nTerence\nTucker\nTyshawn\nWade\nWilfredo\nWillie\nZachery\nAkeem\nAlvin\nAmir\nAntoine\nBeau\nBobby\nByron\nCarlton\nChaz\nChris\nColton\nDana\nDeshawn\nEdgar\nEdgardo\nEmanuel\nErnest\nFelix\nForrest\nGerard\nGilbert\nGordon\nKendall\nKristian\nKwame\nRashad\nReginald\nSam\nShaquille\nShayne\nSimon\nStuart\nTyquan\nTyrone\nAndres\nArmando\nBen\nBilly\nBrad\nBradford\nCarter\nClayton\nConner\nDaquan\nDemetrius\nDenzel\nDwayne\nEarl\nEfrain\nGiuseppe\nGuillermo\nHerbert\nIsmael\nJerry\nJovan\nKeegan\nKelly\nKendrick\nKurtis\nLamar\nMarvin\nMaximillian\nMoises\nMyles\nNigel\nNoel\nNolan\nReynaldo\nRory\nRoy\nRuben\nTanner\nTerrel\nTravon\nTrevon\nTristan\nAbraham\nAlfred\nAllan\nAndy\nAri\nAvery\nBennett\nBrandyn\nBryce\nCesar\nCourtney\nCristian\nDamien\nDarnell\nDesmond\nDomenic\nDuncan\nEliot\nElliott\nEnrique\nFabian\nFrancesco\nFredrick\nGilberto\nHarvey\nIrving\nJameson\nJarrett\nJerome\nJessie\nJulius\nKendell\nKerry\nKorey\nLeo\nLester\nLewis\nMackenzie\nMarcel\nNathanael\nNico\nPablo\nParker\nPasquale\nQuinn\nRocco\nRohan\nSyed\nTommy\nTylon\nTyron\nWarren\nWeston\nWilson\nZachariah\nMichael\nMatthew\nChristopher\nNicholas\nDaniel\nJoseph\nRyan\nAndrew\nDavid\nJohn\nRobert\nJames\nKevin\nAlexander\nJoshua\nTyler\nKyle\nAnthony\nZachary\nWilliam\nBrian\nJonathan\nBrandon\nThomas\nEric\nJustin\nSean\nBenjamin\nTimothy\nPatrick\nSteven\nJeffrey\nStephen\nJacob\nAdam\nDylan\nSamuel\nGregory\nRichard\nJordan\nJason\nMark\nCharles\nPaul\nChristian\nPeter\nConnor\nAaron\nEvan\nScott\nBryan\nCody\nNathan\nJose\nTaylor\nLuis\nAlex\nJesse\nKenneth\nVincent\nJeremy\nAustin\nIan\nEdward\nErik\nShawn\nCorey\nAngel\nTrevor\nBrendan\nCameron\nNathaniel\nCarlos\nTravis\nShane\nColin\nLuke\nEthan\nGeorge\nJuan\nRaymond\nDerek\nSpencer\nMitchell\nBrett\nJake\nHector\nJared\nConor\nMaxwell\nMiguel\nPhilip\nAndre\nDouglas\nGabriel\nMarcus\nJack\nVictor\nDennis\nDillon\nRonald\nEdwin\nDevin\nKeith\nDonald\nFrank\nLouis\nLucas\nAntonio\nTroy\nCasey\nMax\nAlan\nChad\nGarrett\nGary\nOliver\nSeth\nAdrian\nMarc\nDevon\nMathew\nSebastian\nCory\nCraig\nTheodore\nAlbert\nAlec\nJoel\nJulian\nXavier\nHenry\nJohnathan\nTodd\nWesley\nNicolas\nGeoffrey\nGiovanni\nDominic\nDrew\nDustin\nIsaac\nJonathon\nRafael\nAlexis\nArthur\nCarl\nFrancis\nLawrence\nMartin\nMorgan\nPhillip\nRicardo\nCollin\nFrederick\nIvan\nParker\nRoss\nRussell\nBradley\nCaleb\nDarren\nJaime\nJulio\nKarl\nLogan\nRandy\nBlake\nBranden\nJerome\nManuel\nPedro\nSalvatore\nTyrell\nAllen\nClayton\nColby\nDavon\nGrant\nIsaiah\nJamie\nJeremiah\nJorge\nRicky\nRoberto\nBrenden\nBrendon\nCole\nCurtis\nDerrick\nEduardo\nGerald\nHarrison\nHunter\nKristopher\nLeonard\nMiles\nNoah\nTanner\nTevin\nAndres\nByron\nDakota\nElijah\nGavin\nJermaine\nJerry\nKurt\nMalcolm\nMicheal\nNelson\nRoger\nAlejandro\nBryce\nDean\nDominick\nGraham\nHarry\nJesus\nLance\nMario\nMarvin\nMason\nMaurice\nMyles\nOmar\nQuinn\nSam\nTucker\nBrent\nBruce\nCalvin\nDante\nDevonte\nEfrain\nEmmanuel\nFelix\nFrancisco\nJeffery\nJohnny\nJovan\nRalph\nRodney\nShaun\nStanley\nAllan\nBryant\nChase\nColton\nConner\nDanny\nEdgar\nElias\nErick\nJavon\nJay\nLee\nLeo\nNico\nOwen\nWalter\nWayne\nZachariah\nAlberto\nDalton\nDamian\nDarius\nDarnell\nDevante\nEdgardo\nFranklin\nGlenn\nJackson\nJamal\nJavier\nLarry\nNoel\nQuincy\nReginald\nStuart\nWilfredo\nZachery\nAkeem\nBernard\nCesar\nDenzel\nEddie\nElliot\nGriffin\nHarold\nKelvin\nKristian\nLiam\nMalik\nMelvin\nNeil\nNorman\nRamon\nRandall\nShaquille\nTerrance\nTomas\nTyshawn\nAlfred\nBabyboy\nBrad\nBrock\nCristian\nDana\nDane\nDimitri\nDonovan\nGordon\nIsiah\nIsrael\nJaquan\nJosiah\nJosue\nKareem\nKirk\nLeon\nLorenzo\nMackenzie\nMarcos\nMarkus\nMarquis\nOscar\nRashad\nRory\nTerrell\nTerrence\nTerry\nTony\nTyrone\nVaughn\nWarren\nWilson\nAbraham\nAriel\nBennett\nBobby\nBradford\nCarter\nCullen\nDarryl\nEli\nElliott\nEmanuel\nFernando\nFreddie\nHans\nJean\nJessie\nJohnathon\nJon\nJordon\nKenny\nLamar\nLewis\nNathanael\nNickolas\nOrlando\nPablo\nReid\nReynaldo\nRuben\nSergio\nStefano\nStephan\nTommy\nTyquan\nVincenzo\nWillie\nAli\nAlvin\nAngelo\nAntoine\nAri\nBeau\nBilly\nBret\nCarlton\nCarson\nClinton\nCorbin\nDale\nDamien\nDamon\nDaquan\nDeandre\nDemetrius\nDeshawn\nDesmond\nDevan\nDomenic\nDominique\nDwayne\nEarl\nElvin\nEmmett\nEnrique\nErnest\nEugene\nFrankie\nGage\nGerard\nGilbert\nIsmael\nJameson\nJayson\nJoey\nKeegan\nKeenan\nKory\nLaurence\nLuigi\nMarco\nMike\nNigel\nQuinton\nRiley\nRonnie\nSimon\nStefan\nTed\nTerence\nTristan\nTylor\nWade\nZackary\nMichael\nMatthew\nChristopher\nNicholas\nRyan\nJohn\nJoseph\nDaniel\nAndrew\nJoshua\nTyler\nJames\nDavid\nAlexander\nWilliam\nKyle\nKevin\nAnthony\nRobert\nZachary\nBrandon\nJonathan\nThomas\nBrian\nJustin\nEric\nJacob\nPatrick\nBenjamin\nSean\nSamuel\nSteven\nTimothy\nJordan\nRichard\nDylan\nAdam\nJeffrey\nStephen\nJason\nConnor\nPeter\nChristian\nMark\nPaul\nEvan\nCharles\nAaron\nNathan\nScott\nGregory\nCody\nAustin\nJeremy\nAlex\nIan\nJesse\nLuis\nBryan\nKenneth\nJose\nEdward\nBrendan\nColin\nTrevor\nShane\nShawn\nJake\nTaylor\nAngel\nLuke\nMitchell\nJuan\nTravis\nKeith\nJared\nCameron\nConor\nNathaniel\nPhilip\nRaymond\nDevin\nCorey\nSpencer\nCarlos\nMiguel\nBrett\nDerek\nFrank\nVincent\nVictor\nGarrett\nDillon\nErik\nEthan\nGeorge\nMarc\nRonald\nAndre\nEdwin\nGabriel\nJack\nLucas\nLouis\nTroy\nCraig\nMax\nSeth\nDouglas\nDevon\nMaxwell\nChad\nDonald\nMarcus\nHenry\nAntonio\nBlake\nCollin\nXavier\nJohnathan\nCasey\nAlan\nAlec\nDominic\nHector\nJoel\nBradley\nCory\nMathew\nHunter\nAlbert\nDrew\nGeoffrey\nHarrison\nShaquille\nArthur\nDustin\nJorge\nJulian\nTucker\nWesley\nCaleb\nDennis\nJavier\nLawrence\nMaurice\nDalton\nFrancis\nJeremiah\nLiam\nRafael\nRandy\nSalvatore\nTodd\nWalter\nAdrian\nAllen\nGiovanni\nJulio\nLogan\nMicheal\nMiles\nNeil\nNoah\nSebastian\nBranden\nCarl\nCole\nJesus\nMario\nMartin\nMyles\nRussell\nTanner\nTheodore\nWayne\nDakota\nDamien\nDerrick\nEmmanuel\nIsaac\nJonathon\nKurt\nManuel\nMason\nParker\nPhillip\nRicardo\nBruce\nColby\nDean\nIsaiah\nNelson\nNicolas\nPedro\nRoberto\nAvery\nBrendon\nCurtis\nDante\nDavon\nGary\nJaime\nJalen\nJamie\nJavon\nSam\nZachery\nAlexis\nElijah\nFelix\nFrancisco\nJerome\nJon\nMalcolm\nOliver\nTony\nAhmed\nAidan\nAlejandro\nClayton\nCooper\nCristian\nDamian\nDanny\nErick\nGerald\nJaquan\nJimmy\nMelvin\nOmar\nRiley\nRoss\nShaun\nCalvin\nDale\nDenzel\nEduardo\nFrederick\nGriffin\nJackson\nKarl\nKendall\nLeonard\nMarco\nOrlando\nOwen\nRamon\nRoger\nTrevon\nAlberto\nAndy\nBennett\nBernard\nChase\nDana\nDaquan\nEmanuel\nGlenn\nHarold\nHayden\nHoward\nJay\nKristopher\nMalik\nNoel\nStefan\nTevin\nWillie\nAngelo\nBrad\nBrenden\nBrent\nCesar\nColton\nDarren\nDarryl\nDevan\nDevante\nDon\nEdgar\nEdgardo\nEli\nFabian\nGage\nGordon\nGraham\nJerry\nJosue\nKirk\nLewis\nLorenzo\nMarquis\nMaximilian\nMicah\nMorgan\nNolan\nQuinn\nReginald\nRohan\nSolomon\nTerence\nTerrell\nTerrence\nTre\nTyrone\nWade\nZackary\nAnton\nCarter\nDarrin\nDimitri\nDominick\nElliott\nEugene\nGilbert\nJaron\nJermaine\nJohnny\nKristofer\nLance\nLarry\nLeo\nNigel\nOscar\nPreston\nRalph\nRashad\nRaul\nSteve\nTrey\nTyrell\nZackery\nAbraham\nAndres\nAriel\nBryce\nDane\nDarien\nDomenic\nDonte\nEdmund\nElias\nEmilio\nFranklin\nGiuseppe\nIvan\nJeffery\nJonah\nJovanni\nKeenan\nKelvin\nKenny\nLee\nMarcel\nMarlon\nMoises\nMuhammad\nNathanael\nNiko\nQuincy\nRaheem\nRandall\nRaphael\nRodney\nRory\nRoy\nRuben\nShayne\nTariq\nTerrance\nTomas\nTyshawn\nWilfredo\nAlexandre\nAli\nAllan\nAlvin\nBarry\nBenedict\nBobby\nBradford\nBrady\nBret\nBryant\nChaz\nClinton\nConner\nDamon\nDarrell\nDaryl\nDashawn\nDexter\nDorian\nDwight\nElliot\nEnrique\nErnesto\nFelipe\nFernando\nFranco\nFreddie\nGavin\nGerardo\nGrant\nGuillermo\nHugh\nJamal\nJamel\nJefferson\nJordon\nKeegan\nLamar\nLeon\nLloyd\nLukas\nMarshall\nMontel\nNickolas\nRay\nReece\nReid\nRicky\nRobin\nSantos\nSergio\nSkyler\nStanley\nTyrese\nVernon\nVincenzo\nWarren\nWilson\nWyatt\nMichael\nMatthew\nChristopher\nNicholas\nRyan\nDaniel\nJoseph\nTyler\nJohn\nAndrew\nWilliam\nJoshua\nKevin\nAlexander\nDavid\nKyle\nJames\nAnthony\nZachary\nRobert\nBrandon\nBrian\nThomas\nJonathan\nJustin\nJacob\nBenjamin\nTimothy\nPatrick\nSean\nEric\nDylan\nJordan\nAdam\nSamuel\nAustin\nSteven\nAaron\nPeter\nJeffrey\nChristian\nConnor\nMark\nJason\nRichard\nStephen\nNathan\nCody\nGregory\nPaul\nEvan\nJesse\nScott\nLuis\nAlex\nJose\nBrendan\nCharles\nEdward\nIan\nJeremy\nBryan\nJake\nCorey\nShawn\nTravis\nJack\nColin\nGeorge\nCameron\nNathaniel\nAngel\nSpencer\nShane\nMarcus\nRaymond\nGabriel\nTaylor\nDevin\nErik\nLuke\nKenneth\nTrevor\nCarlos\nHenry\nAndre\nJared\nJuan\nSeth\nEthan\nDouglas\nVincent\nMiguel\nMitchell\nJoel\nFrank\nBrett\nCaleb\nDerek\nHunter\nLucas\nTroy\nMarc\nDevon\nVictor\nCory\nHector\nKeith\nHarrison\nPhilip\nDonald\nAlec\nBradley\nCasey\nCraig\nAntonio\nConor\nNoah\nElijah\nLouis\nNicolas\nGarrett\nRonald\nBlake\nDean\nMax\nXavier\nDominic\nJohnathan\nMathew\nSebastian\nChad\nDerrick\nTheodore\nAlexis\nArthur\nCole\nCollin\nDustin\nAvery\nJulian\nTanner\nCalvin\nDillon\nIsaiah\nMaxwell\nAdrian\nColby\nLiam\nLogan\nBrent\nChase\nDrew\nGary\nMario\nPhillip\nDennis\nMarco\nRandy\nShaquille\nWesley\nAlbert\nEdwin\nGrant\nGriffin\nOliver\nRoberto\nBranden\nEdgar\nGavin\nJackson\nShaun\nTodd\nTucker\nAlan\nAndres\nFrancis\nFrancisco\nGiovanni\nJeremiah\nJulio\nMason\nMiles\nPedro\nZachery\nCarl\nCurtis\nDalton\nGeoffrey\nJamie\nJavier\nJohnny\nJorge\nLee\nMorgan\nOmar\nTevin\nAllen\nBrenden\nColton\nConner\nDakota\nDante\nDavon\nDenzel\nEmmanuel\nFrederick\nJalen\nJaquan\nMartin\nNelson\nRamon\nRussell\nTerrance\nDamian\nJaime\nJay\nKurt\nMyles\nOwen\nRoger\nRoy\nSalvatore\nTony\nAlejandro\nBryce\nCristian\nDallas\nDamien\nForrest\nGraham\nIsaac\nJamal\nJermaine\nJesus\nKristopher\nMackenzie\nMalik\nNolan\nPablo\nRafael\nRicardo\nRicky\nAidan\nDana\nDaquan\nDarren\nDarryl\nElliot\nErick\nGunnar\nJonathon\nLawrence\nManuel\nMelvin\nOrlando\nParker\nRoss\nSimon\nStefan\nBryant\nClifford\nCooper\nDemetrius\nDevante\nGage\nGlenn\nHayden\nIvan\nJarrett\nJonah\nKarl\nLance\nLarry\nLorenzo\nMicheal\nRuben\nSam\nTyrone\nAngelo\nAriel\nBrendon\nCharlie\nClayton\nConrad\nCourtney\nDominick\nEddie\nEduardo\nGilberto\nJerome\nJessie\nJon\nKendrick\nMarquis\nMaximilian\nNeil\nNoel\nRiley\nRodney\nSteve\nTavon\nTrevon\nTristan\nTyshawn\nWilfredo\nAlfred\nAlvin\nBernard\nBruce\nCarter\nClinton\nDale\nDarius\nDiego\nDondre\nDonovan\nEdgardo\nEli\nElias\nEmanuel\nFelix\nFrancesco\nGerald\nHarold\nHarry\nJavon\nJosiah\nKendall\nLamar\nLukas\nMalcolm\nMaurice\nQuinton\nReynaldo\nRocco\nRonnie\nTerrence\nTommy\nAbraham\nAndy\nAusten\nBilly\nDarien\nDesmond\nDevonte\nDimitri\nDwayne\nEmilio\nGiancarlo\nGrayson\nHarley\nHeriberto\nIsmael\nIsrael\nJameson\nJoe\nJosue\nJovanny\nKasey\nKeegan\nKeenan\nKelvin\nKenny\nMarcel\nMitchel\nNajee\nNeal\nOscar\nQuentin\nRashad\nReginald\nRick\nRoland\nShaquan\nShayne\nSkyler\nTerence\nTerrell\nTerry\nTrent\nTrey\nTyrell\nWalter\nWill\nWillie\nWyatt\nZackary\nZackery\nBarry\nBeau\nBruno\nCesar\nChris\nClark\nDane\nDanny\nDeshawn\nDomenic\nDylon\nErnest\nEsteban\nFernando\nGino\nGordon\nJamel\nJan\nJevon\nJimmy\nJovan\nKareem\nKurtis\nKyron\nLandon\nMarkus\nMarvin\nMike\nNigel\nNikolas\nQuinn\nRaheem\nRalph\nRashawn\nReid\nRene\nSawyer\nSchuyler\nTyquan\nTyron\nVincenzo\nWarren\nYusef\nMichael\nMatthew\nNicholas\nChristopher\nRyan\nDaniel\nJoseph\nTyler\nJohn\nJoshua\nJames\nAndrew\nZachary\nWilliam\nDavid\nAlexander\nThomas\nAnthony\nKyle\nKevin\nJonathan\nJustin\nJacob\nRobert\nBrandon\nBrian\nEric\nBenjamin\nPatrick\nSamuel\nTimothy\nSean\nAustin\nChristian\nAdam\nJason\nRichard\nStephen\nDylan\nJordan\nSteven\nConnor\nPeter\nMark\nCody\nJeffrey\nCharles\nAaron\nJake\nEvan\nNathan\nScott\nIan\nAlex\nJose\nLuis\nJeremy\nPaul\nBryan\nEdward\nGregory\nBrendan\nLuke\nShane\nGeorge\nJack\nCameron\nKenneth\nCorey\nJesse\nColin\nEthan\nJared\nVincent\nDevin\nNathaniel\nNoah\nTravis\nCarlos\nRaymond\nAlec\nAngel\nGabriel\nShawn\nSpencer\nBrett\nElijah\nTrevor\nIsaiah\nMiguel\nMitchell\nErik\nTaylor\nHenry\nAndre\nPhilip\nJuan\nLucas\nMaxwell\nDonald\nDerek\nLiam\nMarcus\nAntonio\nDouglas\nMalik\nVictor\nDrew\nMax\nSeth\nTristan\nHunter\nTroy\nCasey\nDustin\nJulian\nKeith\nCaleb\nCory\nAlan\nCollin\nLouis\nMarc\nBradley\nDevon\nEdwin\nGarrett\nJorge\nXavier\nAidan\nMathew\nCarl\nCraig\nFrancisco\nGiovanni\nGrant\nCole\nConor\nGary\nLogan\nOwen\nRonald\nTheodore\nAdrian\nDennis\nCristian\nDakota\nFrank\nIsaac\nJoel\nNicolas\nDominic\nGeoffrey\nJeremiah\nPedro\nWesley\nChad\nDillon\nGriffin\nJackson\nManuel\nRoberto\nTodd\nWyatt\nBlake\nCurtis\nGavin\nJavier\nMarco\nMyles\nRandy\nRicardo\nWalter\nAlbert\nAndres\nBailey\nCalvin\nColby\nDante\nDean\nJohnathan\nLawrence\nPhillip\nSebastian\nTanner\nBrendon\nChase\nDaquan\nFrancis\nHarrison\nHector\nJonathon\nMason\nNeil\nRussell\nTrevon\nDarren\nEdgar\nGage\nJerry\nKhalil\nMorgan\nOscar\nAlejandro\nAllen\nAvery\nDamien\nDonovan\nFernando\nIvan\nJamie\nJesus\nLorenzo\nOmar\nPreston\nRiley\nSalvatore\nShaun\nVincenzo\nArthur\nBranden\nConner\nDale\nDerrick\nFrederick\nHarold\nJavon\nJermaine\nKarl\nOrlando\nParker\nStefan\nAndy\nGerald\nJulio\nKurt\nMicheal\nMiles\nNolan\nRandall\nSam\nWayne\nAlexis\nBernard\nChandler\nClayton\nDarius\nElliot\nJalen\nJaquan\nJeffery\nJonah\nKristopher\nMartin\nNelson\nNoel\nQuinton\nReginald\nRoger\nRoss\nTerrell\nZachery\nColton\nDalton\nEmmanuel\nErick\nErnest\nGraham\nHayden\nJay\nJohnny\nJon\nMalcolm\nMario\nMaurice\nQuinn\nRafael\nRaphael\nTyrone\nAngelo\nAriel\nBruce\nCarter\nDarien\nDenzel\nDonte\nEmanuel\nEnrique\nEugene\nFelix\nHoward\nIsmael\nJayson\nJosue\nOliver\nRaekwon\nReed\nReid\nRodney\nRoy\nTerrance\nTevin\nTony\nTrey\nTucker\nAli\nAron\nCooper\nDamian\nDana\nDeshawn\nDevante\nDwayne\nEli\nFrankie\nGiuseppe\nHarry\nJosiah\nKenny\nLee\nLeo\nLevi\nMackenzie\nMarcos\nMarquis\nMarshall\nMarvin\nMicah\nRalph\nRamon\nRaul\nRicky\nStephan\nStuart\nTerrence\nWillie\nAlfredo\nAndreas\nBen\nBrenden\nBryce\nCourtney\nDajon\nDallas\nDevan\nDevonte\nEddie\nElias\nEzekiel\nEzequiel\nForrest\nGino\nGlenn\nGordon\nHakeem\nIsiah\nIsrael\nJaime\nJakob\nJerome\nJohnathon\nJovan\nKendall\nKurtis\nLarry\nLukas\nMarlon\nMohammed\nMuhammad\nRaheem\nRodrigo\nSantiago\nSeamus\nShaquille\nStanley\nStavros\nTomas\nWarren\nAlessandro\nAllan\nAlvin\nAntwan\nArmando\nBennett\nBrad\nBrady\nByron\nCarlton\nCharlie\nCoty\nDanny\nDaryl\nDeclan\nDesmond\nDeven\nDomenic\nDominick\nDominique\nEdgardo\nEdmond\nEfrain\nElliott\nEmilio\nEverett\nGerard\nHugh\nJamal\nJamar\nJarrett\nJimmy\nJoe\nJordon\nJulius\nKadeem\nKeanu\nKelvin\nKerry\nKeven\nKirk\nKory\nKristian\nLeonardo\nLloyd\nMarkus\nMarquise\nMelvin\nMichal\nMohammad\nNiko\nNikolas\nReinaldo\nRene\nRoderick\nRonnie\nSammy\nShayne\nSilas\nTrent\nTyrell\nTyshawn\nWeston\nZachariah\nZackary\nZackery\nMichael\nMatthew\nNicholas\nChristopher\nJohn\nRyan\nJoseph\nDaniel\nAndrew\nTyler\nJoshua\nWilliam\nZachary\nDavid\nJacob\nAlexander\nAnthony\nKyle\nThomas\nJames\nBrandon\nJustin\nKevin\nRobert\nJonathan\nBenjamin\nAustin\nEric\nSamuel\nBrian\nPatrick\nJordan\nChristian\nTimothy\nSean\nJason\nAdam\nDylan\nPeter\nSteven\nConnor\nCharles\nRichard\nAlex\nAaron\nStephen\nEvan\nMark\nJack\nJeffrey\nBrendan\nNathan\nJose\nJeremy\nNoah\nIan\nColin\nPaul\nGregory\nLuis\nLuke\nEdward\nJake\nSpencer\nJesse\nNathaniel\nCameron\nIsaiah\nBryan\nMitchell\nAntonio\nEthan\nGeorge\nCody\nHunter\nJared\nAngel\nCorey\nDevin\nElijah\nAlec\nCarlos\nLiam\nShawn\nTrevor\nBrett\nMalik\nScott\nTravis\nKenneth\nShane\nVincent\nMarcus\nGabriel\nJuan\nLogan\nPhilip\nDerek\nJulian\nBradley\nFrank\nGarrett\nLucas\nRaymond\nCollin\nDevon\nHenry\nTristan\nDominic\nMaxwell\nSeth\nMarc\nGrant\nGriffin\nMiguel\nXavier\nAndre\nErik\nHarrison\nNicolas\nTaylor\nTroy\nVictor\nChase\nOwen\nDonald\nJoel\nAidan\nCaleb\nCole\nDakota\nHector\nDouglas\nLouis\nMax\nDante\nDustin\nKeith\nDrew\nEmmanuel\nJackson\nRonald\nChad\nCraig\nJesus\nMathew\nAdrian\nCarl\nCristian\nGary\nIsaac\nJavier\nRiley\nBlake\nCalvin\nEdwin\nJonah\nLawrence\nMason\nRafael\nSebastian\nAndres\nAlexis\nClayton\nCory\nDean\nDennis\nDillon\nJulio\nWesley\nWyatt\nBryce\nCasey\nConor\nDominick\nGerald\nPhillip\nAlejandro\nJeremiah\nMartin\nOmar\nRandy\nDanny\nHayden\nJonathon\nJorge\nQuinn\nAlan\nAlberto\nDamian\nEdgar\nJohnathan\nManuel\nMaurice\nMicheal\nPedro\nSkyler\nTheodore\nAvery\nCarter\nChance\nCooper\nCurtis\nGiovanni\nHarry\nNeil\nRicardo\nRoger\nSalvatore\nTanner\nWalter\nAlbert\nArthur\nBrenden\nBrendon\nChandler\nDalton\nDerrick\nEli\nFrederick\nJavon\nJermaine\nKurt\nRaekwon\nRoss\nRussell\nTyrone\nAllen\nBranden\nColby\nColton\nDamien\nDeion\nEduardo\nFelix\nGage\nGraham\nIvan\nJerome\nJosiah\nParker\nRory\nShaun\nTodd\nAngelo\nBrent\nEddie\nGavin\nJalen\nJamal\nJamie\nJaquan\nJay\nMorgan\nQuentin\nQuinton\nRoberto\nTerrance\nWarren\nZachery\nZackary\nBailey\nFrancis\nFrancisco\nJeffery\nJerry\nJimmy\nKristian\nKristopher\nLorenzo\nMarco\nMyles\nNelson\nNikolas\nNolan\nOliver\nOscar\nReed\nReginald\nTrent\nTucker\nTylor\nTyrell\nWayne\nZachariah\nAlvin\nAndy\nBennett\nBryant\nDale\nDamon\nDarren\nDonovan\nEfrain\nHoward\nJayson\nJohnny\nJon\nKendall\nMackenzie\nMario\nMarquis\nOrlando\nRalph\nReid\nRuben\nSam\nSeamus\nSergio\nStefan\nTerrence\nTommy\nAusten\nBrad\nDandre\nDarius\nDarryl\nDenzel\nEdgardo\nElias\nGrayson\nJakob\nJean\nJustice\nKarl\nLance\nLeonard\nMalcolm\nMelvin\nMilton\nNickolas\nNigel\nNoel\nPierce\nPreston\nRamon\nRaul\nVincenzo\nWilfredo\nWillie\nAlessandro\nAri\nCarson\nDana\nDane\nDarian\nDarnell\nDavon\nDeon\nDesmond\nDevan\nDuncan\nEllis\nErnest\nFelipe\nFernando\nFranklin\nHarold\nJaime\nJamar\nJessie\nJosef\nJuwan\nKent\nLarry\nLexus\nLuciano\nMarlon\nMarquise\nMarshall\nNico\nPablo\nRandall\nRicky\nRodney\nSawyer\nSimon\nTrevon\nAbraham\nAddison\nAhmed\nAlfred\nAsa\nAsante\nBraden\nByron\nCarlton\nCesar\nClarence\nClint\nConner\nDallas\nDashawn\nDevante\nDomenic\nDwayne\nElliot\nEmanuel\nErick\nFrancesco\nFrankie\nGeoffrey\nGilberto\nGordon\nGunnar\nIsiah\nJacques\nJaylen\nJohnathon\nJonas\nJordon\nJosue\nJulius\nKaleb\nKeanu\nKeegan\nKieran\nLamar\nLevi\nLewis\nMaximillian\nMiles\nMitchel\nQuintin\nRaphael\nReynaldo\nTerry\nTrenton\nTyquan\nZackery\nZavier\nMichael\nMatthew\nNicholas\nChristopher\nDaniel\nJohn\nRyan\nJoseph\nAndrew\nZachary\nJoshua\nTyler\nKyle\nAnthony\nJacob\nAlexander\nDavid\nWilliam\nThomas\nJustin\nJames\nBrandon\nRobert\nKevin\nJonathan\nBenjamin\nSamuel\nAustin\nChristian\nPatrick\nJordan\nTimothy\nEric\nConnor\nDylan\nBrian\nSean\nJason\nRichard\nPeter\nBrendan\nCharles\nMark\nAdam\nNathan\nAlex\nJack\nSteven\nJake\nIan\nPaul\nNoah\nJose\nEvan\nLuis\nStephen\nAaron\nJeffrey\nJeremy\nCameron\nEthan\nColin\nTrevor\nDevin\nGregory\nJared\nIsaiah\nAngel\nLucas\nNathaniel\nScott\nVincent\nBryan\nGabriel\nCody\nMitchell\nEdward\nElijah\nLuke\nCarlos\nShawn\nDerek\nLiam\nVictor\nHunter\nCorey\nGeorge\nAlec\nAntonio\nMaxwell\nSpencer\nCole\nKenneth\nTravis\nDevon\nJesse\nTristan\nJuan\nMalik\nMarcus\nErik\nGriffin\nCollin\nHenry\nBrett\nCaleb\nJoel\nOwen\nShane\nJackson\nLogan\nPhilip\nRaymond\nDante\nJulian\nRonald\nAndre\nDrew\nGarrett\nHarrison\nAidan\nMax\nFrank\nMason\nMiguel\nChase\nTroy\nDominic\nJohnathan\nTaylor\nXavier\nBlake\nBradley\nDillon\nMarc\nSeth\nDouglas\nGrant\nNicolas\nConor\nGiovanni\nJorge\nRicardo\nSebastian\nJeremiah\nKeith\nMathew\nBrenden\nBryce\nChad\nGavin\nIsaac\nDakota\nDennis\nEdwin\nHector\nOmar\nRiley\nAlbert\nDean\nWesley\nCasey\nColby\nCory\nCraig\nGary\nJulio\nRussell\nCristian\nNikolas\nTheodore\nAdrian\nAvery\nCarter\nElias\nLouis\nManuel\nOliver\nRafael\nTanner\nDonald\nFrancis\nJonathon\nJosiah\nRoberto\nAllen\nCarl\nDerrick\nHayden\nJakob\nMarquise\nParker\nAngelo\nBailey\nDominick\nDonte\nEmanuel\nJavier\nJavon\nMarquis\nMartin\nNelson\nNolan\nPedro\nTucker\nAlan\nClayton\nCurtis\nDarius\nJay\nJonah\nKurt\nPhillip\nRaekwon\nShaun\nAlejandro\nBrendon\nColton\nCooper\nDamian\nDiego\nDonovan\nEmmanuel\nErick\nFelix\nGerald\nGraham\nIvan\nJosue\nJustice\nKristopher\nRamon\nRuben\nSalvatore\nWade\nWalter\nAlexis\nAndy\nArthur\nBrennan\nCalvin\nDalton\nDamien\nEdgar\nEduardo\nFrederick\nGage\nJerry\nJesus\nMalcolm\nMarco\nNickolas\nQuinn\nRicky\nStefan\nTodd\nBennett\nBrady\nBrent\nConner\nDamon\nDanny\nDustin\nFrancisco\nGeoffrey\nIsiah\nJamal\nJaquan\nJordon\nLawrence\nMarvin\nMyles\nOscar\nReed\nSeamus\nStanley\nTrent\nTrevon\nTyrell\nTyrone\nWayne\nZachery\nCyrus\nDevan\nEdmund\nElliot\nJerome\nKelvin\nKendall\nLeo\nLeonard\nLorenzo\nLukas\nMario\nMiles\nMuhammad\nNathanael\nNeil\nQuinton\nRoger\nRoss\nTrenton\nWyatt\nAiden\nAlberto\nAndres\nBrad\nBranden\nBryant\nChandler\nConrad\nCullen\nDeandre\nDesmond\nDomenic\nEamon\nEli\nEnrique\nErich\nFernando\nHarold\nJacques\nJarrett\nJayson\nJohnny\nJuwan\nKenny\nLance\nMicheal\nMike\nMorgan\nRory\nShea\nSimon\nTerrence\nTony\nTristen\nTy\nWilson\nAlessandro\nArmando\nBruce\nCedric\nClark\nDandre\nDaquan\nDavis\nDuncan\nDwight\nEmerson\nEzekiel\nFrankie\nGarret\nGianni\nGlenn\nIsrael\nJalen\nJameson\nJermaine\nKarl\nLeon\nLeonardo\nMackenzie\nMarcel\nMarlon\nPreston\nQuentin\nRandall\nRandy\nRay\nShamar\nSidney\nTariq\nTerence\nTerrance\nTerrell\nTyree\nWarren\nWillie\nZachariah\nZackary\nZane\nAlfred\nAlonzo\nAntoine\nAri\nAshton\nAusten\nBabyboy\nBret\nBrock\nBrody\nByron\nCarlo\nCesar\nChance\nDale\nDarren\nDevante\nDevonte\nDominique\nDwayne\nEddie\nEmilio\nEzra\nGerard\nGlen\nGordon\nHarry\nHoward\nJaime\nJamie\nJarrod\nJayquan\nJefferson\nJessie\nJimmy\nJon\nJosef\nJovan\nKaron\nKeenan\nKeion\nKieran\nLandon\nMalachi\nMarcos\nMaurice\nMitchel\nMohamed\nMoses\nNoel\nRaphael\nReginald\nReid\nRocco\nRodney\nRonnie\nSage\nSam\nSawyer\nSolomon\nStephon\nTate\nTommy\nTravon\nTyrese\nMichael\nMatthew\nNicholas\nChristopher\nRyan\nAndrew\nJoseph\nTyler\nJohn\nDaniel\nJoshua\nWilliam\nJacob\nZachary\nJames\nAnthony\nKyle\nAlexander\nJustin\nDavid\nBrandon\nJonathan\nBenjamin\nThomas\nKevin\nJordan\nRobert\nDylan\nSamuel\nAustin\nChristian\nJack\nPatrick\nConnor\nJason\nNoah\nEric\nBrian\nTimothy\nSean\nAdam\nNathan\nCameron\nPeter\nAaron\nRichard\nEthan\nLuis\nEvan\nJake\nAlex\nCharles\nJose\nLuke\nSteven\nHunter\nNathaniel\nIan\nBrendan\nStephen\nMark\nLiam\nAngel\nJared\nJeremy\nColin\nDevin\nJeffrey\nPaul\nElijah\nTrevor\nIsaiah\nGregory\nGabriel\nScott\nCody\nLucas\nSpencer\nEdward\nOwen\nBryan\nVincent\nShawn\nGeorge\nMitchell\nMaxwell\nDante\nKenneth\nCarlos\nJuan\nGriffin\nHenry\nShane\nVictor\nJesse\nMax\nRaymond\nCaleb\nChase\nCole\nDevon\nGarrett\nLogan\nAntonio\nBrett\nJackson\nDominic\nMarcus\nXavier\nAlec\nCollin\nCorey\nAidan\nNicolas\nDerek\nHarrison\nAdrian\nJulian\nMathew\nAndre\nJoel\nMalik\nMarc\nPhilip\nErik\nGiovanni\nIsaac\nJeremiah\nColby\nDillon\nRiley\nTravis\nMarco\nMason\nTristan\nBryce\nCristian\nEdwin\nFrank\nBailey\nBradley\nColton\nJakob\nJohnathan\nRafael\nTanner\nChad\nConor\nGrant\nJorge\nTroy\nDouglas\nGavin\nHector\nMiguel\nRonald\nTheodore\nAlejandro\nCooper\nDonald\nJulio\nSebastian\nSeth\nCalvin\nCory\nDuncan\nParker\nTariq\nBlake\nDakota\nRicardo\nTaylor\nAlan\nCarl\nCarter\nCraig\nCurtis\nDean\nOliver\nZackary\nAlexis\nChandler\nClayton\nDrew\nKeith\nOmar\nPhillip\nCasey\nDamian\nDarius\nDominick\nEmmanuel\nGianni\nIvan\nJalen\nJarod\nLouis\nTrent\nAlbert\nDerrick\nDustin\nIsiah\nJonah\nMiles\nNikolas\nNolan\nAndres\nAvery\nBrennan\nConner\nEdgar\nFrancis\nGage\nJayson\nJerry\nJesus\nJohnny\nJonathon\nLeonardo\nManuel\nMarquis\nOrlando\nOscar\nQuinn\nRoberto\nSam\nTodd\nTucker\nWalter\nWyatt\nAllen\nAndy\nArthur\nBrendon\nDalton\nFrederick\nGary\nGlenn\nIsrael\nJavier\nJay\nJermaine\nReed\nSimon\nAngelo\nBrady\nBruce\nDamon\nDarryl\nDennis\nDonovan\nEli\nElias\nElliot\nFrancisco\nGeoffrey\nGraham\nHayden\nJosiah\nJustice\nLeo\nLorenzo\nMario\nMartin\nMicah\nRamon\nRaul\nShaun\nStefan\nTrevon\nTrey\nWayne\nWesley\nArmando\nBrenden\nCamron\nDarren\nDwayne\nFernando\nGrayson\nJavon\nJayvon\nKurt\nLarry\nMicheal\nPablo\nRaheem\nRoger\nRoss\nSeamus\nAiden\nBennett\nCarson\nDale\nDavon\nDeclan\nEugene\nJaylen\nJimmy\nJon\nKendall\nKenny\nKhalil\nKristopher\nLance\nLeon\nLewis\nMalcolm\nMarcos\nMorgan\nMyles\nNeil\nQuentin\nReece\nSalvatore\nSergio\nTommy\nTyrone\nVincenzo\nAmir\nDallas\nDane\nDashawn\nDawson\nDeandre\nDemetrius\nEarl\nEmilio\nErick\nErnest\nEsteban\nGino\nHeriberto\nJaime\nJamie\nJaquan\nJosue\nJovan\nJuwan\nKelvin\nKobe\nLawrence\nMaurice\nMelvin\nNelson\nNickolas\nNoel\nPedro\nRalph\nRandy\nReginald\nRicky\nRodney\nRussell\nTomas\nTyrell\nWarren\nZachariah\nAbraham\nAlberto\nAriel\nAshton\nBen\nCesar\nChance\nChris\nDamien\nDandre\nDanny\nDeshawn\nDwight\nEdmund\nEzra\nFelix\nGordon\nHarold\nJarred\nJayquan\nJean\nJonas\nJovanni\nJulius\nKarl\nKeegan\nKieran\nKristian\nMarkus\nMathieu\nMaximilian\nMohammed\nPreston\nQuinton\nReid\nReilly\nRocco\nRuben\nSantino\nStuart\nTerrell\nTerrence\nTony\nTyrek\nTyson\nWilfredo\nZachery\nZackery\nAlfredo\nAli\nAmari\nAntoine\nAramis\nBrock\nBrody\nCade\nCyrus\nDaquan\nDarrell\nDashaun\nDimitri\nDonte\nEfrain\nFabian\nHarley\nHarry\nHerbert\nHolden\nIsmael\nJaden\nJamal\nJarrod\nKai\nKameron\nKareem\nLars\nLee\nLeonard\nLevi\nLuca\nLukas\nMalachi\nMarshall\nMateo\nMateusz\nMekhi\nMohammad\nMoses\nNigel\nPeyton\nRahul\nReinaldo\nRoy\nSolomon\nTerry\nWalker\nWillie\nMatthew\nMichael\nNicholas\nChristopher\nJohn\nRyan\nJacob\nJoseph\nAndrew\nWilliam\nAnthony\nJoshua\nZachary\nDaniel\nTyler\nAlexander\nKyle\nJustin\nThomas\nJames\nDavid\nBenjamin\nJonathan\nSamuel\nBrandon\nKevin\nRobert\nJack\nDylan\nBrian\nNoah\nSean\nNathan\nChristian\nJason\nJordan\nAustin\nConnor\nPatrick\nCameron\nEthan\nAdam\nEvan\nJake\nTimothy\nEric\nPeter\nCharles\nJared\nMark\nRichard\nBrendan\nIan\nElijah\nAlex\nLiam\nLuke\nStephen\nSteven\nJose\nSpencer\nLuis\nHunter\nNathaniel\nTrevor\nIsaiah\nJeffrey\nAaron\nAngel\nCarlos\nBryan\nJeremy\nColin\nGabriel\nPaul\nShane\nEdward\nLogan\nAntonio\nDevin\nOwen\nCaleb\nMax\nScott\nAidan\nGregory\nDerek\nKenneth\nAlec\nJackson\nXavier\nMaxwell\nCody\nCorey\nGeorge\nCole\nLucas\nVictor\nShawn\nBrett\nGavin\nGriffin\nMitchell\nVincent\nGarrett\nChase\nDevon\nDominic\nMarcus\nRaymond\nAndre\nJulian\nFrank\nNicolas\nHenry\nJuan\nMarc\nCristian\nEdwin\nJesse\nMason\nMiguel\nRiley\nTristan\nAdrian\nPhilip\nSebastian\nSeth\nHarrison\nIsaac\nJoel\nLouis\nTroy\nCollin\nTheodore\nBryce\nDrew\nColby\nDante\nErik\nJulio\nMalik\nBlake\nBradley\nDakota\nTravis\nDamian\nDonovan\nTanner\nJavier\nJeremiah\nGiovanni\nMathew\nQuinn\nChad\nCory\nDennis\nElias\nJohnathan\nJorge\nRonald\nTyrese\nAngelo\nBailey\nOliver\nParker\nRafael\nRandy\nRicardo\nShaun\nTaylor\nWyatt\nConor\nDillon\nGrant\nJaden\nKeith\nPedro\nCooper\nDarius\nFrancis\nJay\nMarco\nSam\nWesley\nAlan\nAndy\nCalvin\nCasey\nDouglas\nGary\nHayden\nJayson\nJesus\nJonah\nRoberto\nAlejandro\nAlexis\nBrennan\nCurtis\nDean\nDiego\nJayden\nJonathon\nNolan\nArthur\nBranden\nCarter\nClayton\nConner\nCraig\nErick\nFrancisco\nHector\nIsiah\nJalen\nJaquan\nMartin\nMyles\nOmar\nQuentin\nTodd\nBrent\nDalton\nDerrick\nDominick\nFelix\nJakob\nMalcolm\nMiles\nPreston\nRoger\nRuben\nAllan\nAndres\nDonald\nEmmanuel\nJavon\nJaylen\nJosiah\nJosue\nMaximilian\nNico\nSalvatore\nAvery\nBryant\nColton\nDamien\nDarien\nEdgar\nJamar\nJarrett\nKelvin\nNickolas\nQuincy\nSimon\nZachery\nZackary\nAli\nCarson\nChandler\nDamon\nDanny\nDavon\nGerald\nHarry\nJamie\nJohnny\nLawrence\nLorenzo\nMario\nNelson\nPeyton\nTrent\nWillie\nCesar\nDawson\nDesmond\nEduardo\nElliot\nEnrique\nFabian\nFrancesco\nIsmael\nIsrael\nIvan\nJarod\nJimmy\nJon\nJulius\nKhalil\nKristopher\nLeonardo\nLukas\nMohammad\nNeil\nNikolas\nOrlando\nOscar\nRaphael\nSergio\nSkyler\nTrenton\nTrey\nTucker\nTyriq\nZion\nAlbert\nAlexandre\nBrenden\nChance\nDandre\nDeclan\nDustin\nEmanuel\nGage\nJustice\nKai\nManuel\nNikhil\nNoel\nPhillip\nReed\nRohan\nRoland\nRussell\nTariq\nTerrance\nTrevon\nTyrell\nTyrique\nVincenzo\nAbraham\nAiden\nAllen\nAmir\nBarry\nBrendon\nCamden\nCamron\nCarl\nConrad\nDenzel\nDevonte\nDuncan\nEddie\nEfrain\nEli\nEugene\nEzekiel\nFrankie\nGerardo\nHugo\nJovan\nKeenan\nKieran\nKristian\nMarshall\nMarvin\nMicah\nMohammed\nPablo\nRalph\nRaul\nRoss\nStefan\nSyed\nTerrence\nTony\nTyquan\nTyrone\nWalter\nWayne\nZane\nAbdul\nAlden\nAnderson\nAri\nArmando\nBennett\nBradford\nBrayden\nBrooks\nChris\nDajon\nDale\nDarnell\nDarren\nDomenick\nDwight\nEdmund\nElliott\nElvis\nFrederick\nGiuseppe\nGordon\nGraham\nHugh\nIzaiah\nJadon\nJakai\nJameson\nJerome\nJordon\nKameron\nKendrick\nKobe\nKolby\nKunal\nKurt\nLeon\nMarquise\nMateo\nMaurice\nMichal\nMicheal\nMoises\nMorgan\nNasir\nNathanael\nNathanial\nParis\nPierce\nRandall\nRicky\nRory\nRoy\nRudy\nShayne\nShemar\nSidney\nStanley\nTahj\nTommy\nTy\nVaughn\nWade\nWilfredo\nWilson\nZackery\nZaire\nMichael\nMatthew\nNicholas\nChristopher\nRyan\nJacob\nJohn\nJoshua\nJoseph\nWilliam\nAlexander\nZachary\nAndrew\nDaniel\nTyler\nAnthony\nJames\nThomas\nDavid\nJustin\nBenjamin\nKyle\nJonathan\nRobert\nKevin\nBrandon\nChristian\nJack\nDylan\nSamuel\nNoah\nNathan\nSean\nJason\nCameron\nJordan\nEthan\nBrian\nConnor\nEvan\nEric\nTimothy\nPatrick\nAlex\nJared\nAdam\nAustin\nCharles\nSteven\nJake\nRichard\nGabriel\nElijah\nBrendan\nLuke\nHunter\nJeremy\nJose\nIsaiah\nLiam\nNathaniel\nPeter\nMark\nShane\nStephen\nAaron\nIan\nLuis\nColin\nAidan\nTrevor\nAngel\nHenry\nLogan\nMaxwell\nSpencer\nOwen\nLucas\nDerek\nBryan\nCarlos\nCole\nSebastian\nCaleb\nSeth\nVincent\nGarrett\nJackson\nJulian\nMason\nEdward\nJoel\nDevin\nDominic\nKenneth\nAntonio\nCody\nPaul\nXavier\nNicolas\nScott\nJeffrey\nJuan\nGeorge\nGregory\nChase\nGavin\nIsaac\nTravis\nMarcus\nCollin\nDevon\nErik\nMax\nAlec\nRiley\nVictor\nAdrian\nJaden\nCorey\nShawn\nTristan\nJesse\nFrank\nGriffin\nHarrison\nMiguel\nMitchell\nRaymond\nTanner\nDante\nGiovanni\nJalen\nPhilip\nTroy\nBlake\nJakob\nBradley\nBrett\nCalvin\nHector\nEdwin\nMalik\nColby\nFrancisco\nGrant\nJayden\nMarc\nOmar\nCarter\nDrew\nJesus\nWyatt\nAlexis\nAndre\nConor\nDouglas\nEmmanuel\nJavier\nMathew\nOliver\nChad\nCooper\nDennis\nDillon\nNolan\nQuinn\nTheodore\nAlejandro\nCarson\nHayden\nJeremiah\nLuca\nPreston\nWalter\nAvery\nJaylen\nMarco\nMarcos\nAngelo\nCarl\nDakota\nDonald\nEli\nKeith\nMartin\nPedro\nRafael\nShaun\nAlan\nBryce\nCristian\nDamian\nDean\nFrancis\nJohnathan\nJonah\nNikolas\nTaylor\nCasey\nClayton\nCurtis\nDuncan\nElias\nGary\nJosiah\nLeonardo\nMalachi\nNoel\nRicardo\nSalvatore\nAllen\nBrennan\nDarius\nDeandre\nDonovan\nFelix\nJaquan\nJerry\nJorge\nKeegan\nKelvin\nMiles\nNelson\nParker\nSimon\nTyrone\nWesley\nAndres\nAndy\nCory\nCraig\nEnrique\nGrayson\nJay\nJayson\nJonathon\nKaleb\nKobe\nLawrence\nMario\nMaurice\nMyles\nTyrese\nZackary\nArthur\nBailey\nChandler\nDamien\nDanny\nDeclan\nDiego\nDustin\nEdgar\nGage\nJosue\nJulio\nKameron\nKieran\nKristopher\nLouis\nMicheal\nMohammed\nOscar\nPhillip\nQuincy\nRaul\nRonald\nSkyler\nAlbert\nColton\nConner\nDalton\nDamon\nDominick\nErick\nJustice\nLance\nLorenzo\nMalcolm\nManuel\nMaximilian\nPablo\nPeyton\nRamon\nRoberto\nRory\nTucker\nZion\nAiden\nBrad\nCamron\nCesar\nDesmond\nDevonte\nElliot\nFinn\nGraham\nIsiah\nIsrael\nIvan\nJon\nJordon\nKevon\nMike\nNeil\nPierce\nQuentin\nReid\nRussell\nTodd\nTy\nAlexandre\nAlfred\nBrenden\nBrent\nBruce\nBryant\nDawson\nDemetrius\nDerrick\nEamon\nEzekiel\nFrancesco\nIsmael\nJace\nJameson\nJamie\nLeo\nLeonard\nLukas\nNickolas\nNico\nOrlando\nPayton\nRicky\nRohan\nSantiago\nSaul\nShamar\nShemar\nTerrell\nTrevon\nTrey\nTyree\nWilfredo\nZachery\nAlberto\nAlessandro\nBen\nBennett\nConrad\nCullen\nCyrus\nDandre\nDane\nDomenic\nDwayne\nEduardo\nEmanuel\nEsteban\nEzequiel\nFelipe\nGarret\nGlenn\nHarry\nJarrett\nJean\nJimmy\nJulius\nKareem\nKendall\nMarquis\nMarvin\nMatteo\nMohammad\nNathanael\nRoger\nRoman\nSage\nSam\nSergio\nTerrence\nTre\nVincenzo\nWill\nAnderson\nBarry\nBraden\nBranden\nBrendon\nBruno\nCade\nCaden\nCamden\nCharlie\nClifford\nColeman\nCourtney\nDale\nDaquan\nDarren\nDashawn\nDavis\nDavon\nDeon\nEddie\nElliott\nEmilio\nEverett\nEzra\nFrederick\nGerald\nGuillermo\nGunnar\nJavon\nJefferson\nJelani\nJermaine\nJohnny\nJohnpaul\nJorden\nKarl\nKendrick\nKent\nKeyon\nKirk\nKristian\nMackenzie\nMarcello\nMarquise\nMarshall\nMaximillian\nMitchel\nMoises\nMuhammad\nNigel\nPatryk\nQuintin\nRahul\nRandy\nReginald\nRocco\nRoss\nShayne\nStefan\nSteve\nTavon\nTerence\nTobias\nTrent\nTylor\nTyrell\nTyshawn\nWayne\nWillem\nZachariah\nZackery\nMichael\nMatthew\nNicholas\nChristopher\nJohn\nRyan\nJacob\nJoseph\nAnthony\nJoshua\nAndrew\nAlexander\nDaniel\nWilliam\nZachary\nJustin\nTyler\nJames\nBenjamin\nThomas\nJack\nDavid\nKevin\nJonathan\nEthan\nDylan\nSamuel\nKyle\nRobert\nConnor\nJason\nChristian\nBrandon\nNathan\nSean\nNoah\nPatrick\nAdam\nCameron\nBrian\nJordan\nEvan\nLuke\nEric\nAustin\nTimothy\nColin\nGabriel\nAidan\nCharles\nJake\nPeter\nLogan\nElijah\nIan\nJose\nAlex\nLuis\nBrendan\nNathaniel\nDevin\nHunter\nLiam\nOwen\nSpencer\nAngel\nAaron\nJared\nSteven\nCole\nDerek\nCaleb\nMark\nRichard\nSebastian\nCody\nDominic\nMaxwell\nIsaiah\nJeffrey\nEdward\nLucas\nShane\nJeremy\nTrevor\nJackson\nMason\nXavier\nJulian\nAntonio\nBryan\nVictor\nVincent\nColby\nHenry\nGavin\nStephen\nGeorge\nMax\nCarlos\nDante\nJaden\nJuan\nScott\nGarrett\nKenneth\nNicolas\nSeth\nChase\nIsaac\nJeremiah\nPaul\nGriffin\nJesse\nDevon\nJalen\nJayden\nTristan\nAdrian\nAlec\nBryce\nGiovanni\nGregory\nHarrison\nMiguel\nMitchell\nRiley\nCarter\nMarcus\nBrett\nShawn\nErik\nCooper\nDrew\nFrank\nNolan\nCollin\nHector\nMarc\nRaymond\nAiden\nJosiah\nLouis\nTravis\nWesley\nWyatt\nBlake\nCorey\nDillon\nEdwin\nHayden\nTanner\nTheodore\nQuinn\nAndre\nOmar\nParker\nPhilip\nEmmanuel\nJakob\nJoel\nKobe\nMalik\nMiles\nCarson\nCasey\nGrant\nJonah\nLorenzo\nMartin\nMathew\nPedro\nRicardo\nTroy\nAlexis\nAngelo\nConor\nMyles\nOliver\nRoberto\nSimon\nAvery\nDamian\nDominick\nIvan\nJohnathan\nKeith\nSam\nAlejandro\nDean\nDiego\nDouglas\nElias\nErick\nJavier\nJaylen\nJesus\nJosue\nMario\nPhillip\nRafael\nColton\nDennis\nElliot\nGary\nJorge\nLeonardo\nMaximus\nCalvin\nCraig\nDonald\nJaheim\nJonathon\nLance\nLuca\nMalachi\nShaun\nTucker\nAlan\nAlbert\nAndres\nAndy\nArthur\nConner\nCristian\nDale\nEli\nEnrique\nFrancis\nFrancisco\nFrederick\nJayson\nJulio\nKaleb\nMarco\nOscar\nPablo\nRonald\nWalter\nZackary\nBailey\nBrennan\nCarl\nCesar\nChad\nDakota\nDamien\nDerrick\nJustice\nLawrence\nLeo\nLukas\nSkyler\nTrey\nTyrese\nAhmad\nAllen\nBruce\nCory\nDalton\nEddie\nIsiah\nJavon\nJimmy\nMalcolm\nNickolas\nPeyton\nRussell\nSergio\nTodd\nAlessandro\nAli\nAlvin\nBradley\nBrenden\nDamon\nDanny\nDavis\nDustin\nEduardo\nEmanuel\nFernando\nGraham\nHarry\nIsmael\nJarrett\nJay\nKeegan\nManuel\nMarquis\nMekhi\nNathanael\nNeil\nPierce\nPreston\nRocco\nRohan\nRuben\nSeamus\nShamar\nTaylor\nZane\nZion\nAlberto\nBrady\nBryant\nClayton\nDarius\nDarren\nDeclan\nDomenic\nDuncan\nElvis\nFabian\nFelix\nGrady\nIzaiah\nJermaine\nJon\nJulius\nMicah\nMohammed\nMoises\nNikolas\nNoel\nQuentin\nRandy\nTrent\nTrevon\nTy\nTyrone\nAhmed\nAmir\nAnton\nArmando\nAshton\nAxel\nBranden\nBrendon\nChandler\nChris\nCorbin\nDavon\nDonovan\nEamon\nEmmett\nEverett\nFinn\nGage\nJadon\nJameson\nJerry\nKai\nKelvin\nKhalil\nKolby\nKurt\nLeon\nMicheal\nMohammad\nNelson\nNico\nRalph\nRamon\nSantiago\nShemar\nStefan\nTyree\nWeston\nBen\nBrody\nCade\nCaden\nCedric\nCyrus\nDawson\nDevan\nDevonte\nDwayne\nEdgar\nEmerson\nEmilio\nGianni\nGiuseppe\nHolden\nJaiden\nJamar\nJamison\nJean\nJohnny\nJulien\nKieran\nLee\nMarcos\nMateo\nMatteo\nMaurice\nMorgan\nMuhammad\nOrlando\nPhoenix\nReese\nReid\nRonnie\nRoss\nTerrell\nTrenton\nTyquan\nVincenzo\nWarren\nWayne\nWilfredo\nWillie\nZachery\nAbraham\nAlfred\nAlfredo\nArmani\nBrad\nBrayden\nByron\nCamden\nCurtis\nDandre\nDarrell\nDashawn\nDayton\nDeandre\nDemetrius\nElliott\nForrest\nGeoffrey\nGiancarlo\nGlen\nGuilherme\nGuillermo\nJace\nJaime\nJamal\nJan\nJarod\nJasper\nJaydon\nJeffery\nJoaquin\nJovan\nJunior\nJustus\nKareem\nKeon\nKeven\nKristian\nLevi\nMarlon\nMatheus\nMaxim\nMaximilian\nMelvin\nMilo\nNikhil\nPierre\nQuincy\nReginald\nReilly\nReynaldo\nRoman\nRory\nSavion\nShayne\nShea\nSteve\nTerrence\nTerry\nTomas\nTony\nWalker\nWilson\nMichael\nMatthew\nNicholas\nRyan\nChristopher\nJoshua\nJoseph\nJacob\nAnthony\nJohn\nAlexander\nAndrew\nWilliam\nDaniel\nZachary\nJustin\nTyler\nJack\nJames\nBenjamin\nKyle\nEthan\nDavid\nThomas\nJonathan\nDylan\nKevin\nSamuel\nRobert\nNathan\nBrandon\nJason\nAidan\nChristian\nSean\nConnor\nEvan\nBrian\nLuke\nNoah\nAdam\nCameron\nGabriel\nPatrick\nJordan\nEric\nHunter\nAustin\nIsaiah\nLogan\nElijah\nJake\nAaron\nCharles\nOwen\nTimothy\nXavier\nNathaniel\nPeter\nLiam\nAlex\nBrendan\nCole\nJackson\nJose\nAngel\nMason\nAntonio\nIan\nLucas\nJaden\nSpencer\nSteven\nCaleb\nMaxwell\nRichard\nColin\nDominic\nSebastian\nMark\nLuis\nDevin\nTrevor\nGavin\nShane\nHenry\nJayden\nJulian\nJared\nAdrian\nEdward\nJeremy\nRiley\nStephen\nCarlos\nPaul\nVincent\nColby\nDante\nJeffrey\nMax\nErik\nNicolas\nDerek\nGarrett\nHarrison\nCody\nGiovanni\nJuan\nBryan\nGriffin\nGeorge\nGregory\nJeremiah\nMiguel\nAiden\nCarter\nIsaac\nVictor\nJesse\nKenneth\nTristan\nBrett\nBryce\nChase\nMitchell\nShawn\nBlake\nCristian\nJoel\nScott\nMarcus\nQuinn\nRaymond\nSeth\nEdwin\nEmmanuel\nJorge\nAlejandro\nCooper\nTanner\nDevon\nMalachi\nOmar\nPhilip\nTheodore\nTucker\nCollin\nDamian\nDrew\nFrank\nDiego\nHector\nLouis\nNolan\nHayden\nJavier\nPedro\nTravis\nAlexis\nGrant\nManuel\nAlec\nBrady\nMalik\nRicardo\nWesley\nWyatt\nAlan\nCorey\nDamien\nDean\nGraham\nJalen\nMarc\nAndres\nDarren\nDennis\nElias\nFrancisco\nGary\nIvan\nJohnathan\nJonah\nOliver\nSimon\nAndre\nAngelo\nDakota\nDillon\nFrancis\nJayson\nJesus\nKaleb\nLeo\nMarco\nMathew\nMaximus\nParker\nTroy\nCalvin\nDominick\nFelix\nJaiden\nJosiah\nMiles\nNasir\nRafael\nRoberto\nAlbert\nBradley\nDarius\nLawrence\nMartin\nMyles\nRohan\nArthur\nCarson\nClayton\nConor\nDonovan\nEdgar\nEduardo\nEmanuel\nJakob\nRussell\nZackary\nAbraham\nAli\nAllen\nAvery\nByron\nCesar\nCyrus\nDanny\nErick\nJaylen\nLuca\nMicah\nNelson\nRonald\nTy\nVincenzo\nAhmed\nAlberto\nBrayden\nBrennan\nCharlie\nColton\nDeclan\nDonald\nJavon\nJermaine\nJohnny\nJustice\nKristopher\nMario\nMaximilian\nQuentin\nSalvatore\nSilas\nTrey\nAndy\nBraden\nCamron\nCarl\nConner\nCraig\nDerrick\nDouglas\nDustin\nEsteban\nEzekiel\nGianni\nJaheim\nJaime\nJosue\nKai\nKareem\nKobe\nLeonard\nMarcos\nMarvin\nMelvin\nNoel\nQuincy\nRocco\nSam\nSeamus\nTerry\nTyrese\nWalker\nWalter\nBraeden\nBrayan\nChad\nDalton\nDamon\nDavon\nFabian\nGage\nJamal\nJamison\nJaylin\nJohan\nJon\nJulio\nKameron\nKeegan\nKeenan\nKeith\nKelvin\nKristian\nMateo\nPhillip\nPierce\nReese\nSawyer\nTaylor\nTerrance\nTodd\nZachery\nZion\nAlessandro\nAmir\nAriel\nBaby\nBrenden\nCaden\nCasey\nChris\nDonte\nEli\nEnrique\nFelipe\nFrederick\nGrayson\nJaquan\nJimmy\nJonathon\nJulius\nKurt\nLevi\nLukas\nMarquis\nMekhi\nNico\nNikhil\nOrlando\nPeyton\nPreston\nQuinton\nReece\nTobias\nTomas\nTommy\nWarren\nWilson\nAddison\nAhmad\nAlexandre\nAllan\nArmando\nAshton\nAyden\nBailey\nBennett\nBranden\nBruno\nCamden\nDemetrius\nDesmond\nDevonte\nElliot\nEmilio\nFreddy\nGordon\nHarry\nHolden\nIsiah\nJay\nJaydon\nJaylon\nJerry\nJordy\nKaden\nKhalil\nKieran\nLeandro\nLuciano\nMalcolm\nMarcel\nMatheus\nMenachem\nMohamed\nMorgan\nNikolas\nOscar\nPablo\nRamon\nRuben\nStanley\nTerrell\nAden\nAdrien\nAedan\nAlexzander\nAmari\nAnton\nAxel\nBrendon\nBrody\nBryson\nCade\nConrad\nCurtis\nDallas\nDamion\nDane\nDarien\nDimitri\nDominik\nDrake\nEamon\nEdison\nElvin\nEmmett\nEugene\nEzequiel\nFinn\nGlenn\nHarold\nHudson\nIsmael\nIzaiah\nJabari\nJaeden\nJakai\nJamar\nJamie\nJan\nJarod\nJoao\nJonas\nJulien\nJustyn\nKarl\nKiernan\nKody\nKorey\nKyler\nLance\nLeonardo\nLeonel\nLorenzo\nLucca\nMarshall\nMauricio\nMuhammad\nNathanael\nPranav\nRicky\nRowan\nRoy\nShamar\nSincere\nSteve\nSyed\nTrent\nTrevon\nTylon\nTyshawn\nXander\nZaire\nMatthew\nMichael\nRyan\nNicholas\nJoseph\nJoshua\nJohn\nAndrew\nChristopher\nJacob\nAnthony\nTyler\nDaniel\nAlexander\nWilliam\nZachary\nJack\nJustin\nJames\nBenjamin\nEthan\nSamuel\nDavid\nDylan\nKyle\nThomas\nAidan\nNathan\nConnor\nRobert\nJonathan\nKevin\nBrandon\nEvan\nJason\nChristian\nLuke\nSean\nGabriel\nElijah\nNoah\nLogan\nPatrick\nCharles\nCameron\nJake\nOwen\nBrian\nJordan\nColin\nIsaiah\nJose\nAdam\nJayden\nAaron\nNathaniel\nLucas\nTimothy\nIan\nAngel\nLiam\nLuis\nAiden\nAustin\nGavin\nJackson\nEric\nMason\nAlex\nPeter\nSteven\nXavier\nBrendan\nCaleb\nCole\nDominic\nBryan\nDevin\nRichard\nJeremy\nJulian\nStephen\nHunter\nGeorge\nMark\nEdward\nTrevor\nCody\nMaxwell\nVincent\nJeremiah\nHenry\nJaden\nSebastian\nShane\nCarlos\nChase\nNicolas\nMax\nPaul\nJeffrey\nShawn\nErik\nGarrett\nJared\nCooper\nSpencer\nIsaac\nJesse\nKenneth\nVictor\nDante\nGiovanni\nBryce\nHarrison\nHayden\nCollin\nDerek\nDillon\nMitchell\nSeth\nTheodore\nAntonio\nCarter\nFrank\nJoel\nJuan\nMarcus\nRaymond\nAdrian\nColby\nGregory\nGriffin\nJosiah\nRiley\nScott\nOliver\nBlake\nTristan\nAlexis\nMiles\nCristian\nTravis\nBrett\nDevon\nDrew\nEdwin\nAlec\nBrady\nCarson\nNolan\nJorge\nPhilip\nSimon\nTanner\nBrody\nCasey\nMiguel\nEli\nElias\nLeonardo\nLuca\nMaximilian\nRicardo\nTy\nAndre\nDamian\nDiego\nDominick\nIvan\nJesus\nMalik\nParker\nPedro\nConor\nEduardo\nHector\nJaylen\nJonah\nKaleb\nMarc\nOscar\nQuinn\nAlejandro\nAshton\nAvery\nDakota\nDonald\nDouglas\nMalachi\nMario\nOmar\nBrayden\nCamden\nDean\nDeclan\nDonovan\nEdgar\nLouis\nManuel\nMathew\nWyatt\nAmir\nCorey\nGraham\nGrant\nJay\nKeith\nLeo\nTroy\nAyden\nDanny\nJaiden\nJalen\nLandon\nMarco\nMekhi\nAlan\nConner\nDamon\nEmanuel\nEmmanuel\nFrancis\nIsiah\nJakob\nKai\nMartin\nMateo\nNikolas\nRohan\nRonald\nRuben\nAlessandro\nAngelo\nBraden\nBradley\nClayton\nColton\nErick\nFernando\nFrederick\nJaheim\nMyles\nPhillip\nRamon\nShaun\nWesley\nAndy\nAxel\nBrenden\nCaden\nChad\nCraig\nDennis\nElliott\nJavier\nJohnathan\nJosue\nJovan\nKarl\nLukas\nMarquis\nNickolas\nNico\nRafael\nTyrese\nAlfredo\nAndres\nBailey\nBrennan\nCalvin\nCamron\nCurtis\nDamien\nDerrick\nDomenic\nElliot\nEsteban\nFrancisco\nGary\nGrayson\nJavon\nKaden\nKhalil\nKolby\nKristopher\nLorenzo\nMaurice\nMoises\nNathanael\nNelson\nOrlando\nPreston\nRussell\nSam\nTucker\nWalter\nAllen\nArthur\nBranden\nCory\nJameson\nJayson\nJermaine\nJonas\nJonathon\nJulio\nMarcos\nMarvin\nMatteo\nMicah\nReilly\nRonan\nRory\nRowan\nShea\nTobias\nTodd\nXander\nZackary\nZane\nAlberto\nArmando\nBraeden\nCayden\nChris\nCyrus\nEamon\nFinn\nGage\nGianni\nJasper\nJean\nJulius\nKellen\nKelvin\nKieran\nKristian\nKurt\nMaximus\nMuhammad\nNazir\nPablo\nPierce\nRalph\nRodrigo\nRoger\nRoman\nSalvatore\nSawyer\nSiddharth\nTiernan\nTomas\nTyrell\nZion\nAbraham\nAli\nAmari\nAriel\nBaby\nBeau\nCesar\nDalton\nDavon\nDeandre\nDesmond\nDevan\nDevonte\nDominik\nDustin\nEmmett\nEugene\nFelipe\nFelix\nFranklin\nGian\nGiancarlo\nGreyson\nHarry\nJerry\nJoaquin\nJoey\nJohan\nJohnny\nJon\nJustice\nKenny\nKobe\nKyler\nMarkus\nMelvin\nMohamed\nMohammad\nMorgan\nNasir\nNathanial\nNeil\nNoel\nPeyton\nRandy\nRoy\nShamar\nTate\nTaylor\nTerrence\nTrent\nTrey\nWade\nZachery\nZakary\nAditya\nAdonis\nAlbert\nAlijah\nAndreas\nBruce\nBryant\nCal\nCorbin\nDane\nDarius\nDarrell\nDarren\nDavin\nDuncan\nEddie\nElian\nEliezer\nErnesto\nEverett\nFinnegan\nFrancesco\nGino\nGustavo\nHugo\nIsrael\nIzaiah\nJace\nJamar\nJerome\nJimmy\nJohnathon\nJovanni\nJude\nJustyn\nLeon\nLeonard\nMalcolm\nMarquise\nMaximillian\nMike\nNehemiah\nNikhil\nOmarion\nPayton\nQuentin\nRaphael\nRoberto\nRolando\nRyder\nSergio\nTrenton\nVincenzo\nWilson\nYash\nZander\nMichael\nRyan\nMatthew\nNicholas\nJoseph\nJacob\nJohn\nAlexander\nChristopher\nAnthony\nAndrew\nJoshua\nDaniel\nWilliam\nTyler\nBenjamin\nJack\nDavid\nJustin\nEthan\nJames\nZachary\nDylan\nAidan\nConnor\nNathan\nKevin\nThomas\nChristian\nKyle\nSamuel\nEvan\nJason\nJonathan\nRobert\nBrandon\nCharles\nLuke\nSean\nGabriel\nJayden\nAdam\nJake\nLogan\nNoah\nColin\nAlex\nElijah\nPatrick\nAiden\nIsaiah\nLucas\nCameron\nJordan\nNathaniel\nLuis\nOwen\nIan\nJackson\nEric\nHunter\nLiam\nBrian\nPeter\nAngel\nGavin\nMason\nHenry\nXavier\nJose\nCaleb\nAaron\nCole\nMark\nJulian\nAustin\nTimothy\nJaden\nVincent\nChase\nSebastian\nTrevor\nDominic\nBrendan\nDevin\nSteven\nEdward\nRiley\nStephen\nAntonio\nJeremy\nBryan\nNicolas\nPaul\nJeffrey\nCarter\nDerek\nRichard\nJeremiah\nJesse\nKenneth\nGeorge\nJared\nCarlos\nIsaac\nMaxwell\nAdrian\nBrady\nCody\nJuan\nSpencer\nCooper\nShane\nMiguel\nWyatt\nGregory\nMax\nColby\nCollin\nRaymond\nGiovanni\nLouis\nMarcus\nTristan\nCristian\nHayden\nJaiden\nAlejandro\nBlake\nBryce\nGarrett\nJosiah\nMarco\nGriffin\nOliver\nVictor\nDante\nElias\nMalachi\nQuinn\nBrayden\nDamian\nJonah\nLuca\nNolan\nAshton\nCorey\nDevon\nEmmanuel\nHarrison\nTroy\nAndre\nEdwin\nSimon\nCaden\nDrew\nJesus\nJoel\nNikolas\nSeth\nShawn\nErik\nFrank\nJalen\nJayson\nMitchell\nTheodore\nAngelo\nDiego\nMyles\nOmar\nParker\nTravis\nAlexis\nAmir\nJavier\nKaleb\nLeo\nMekhi\nScott\nWesley\nAvery\nBrett\nCalvin\nDominick\nEli\nHector\nLeonardo\nMathew\nPeyton\nTanner\nDillon\nEmanuel\nGrant\nMalik\nOscar\nAlan\nAndres\nBraden\nCarson\nDamien\nIvan\nLorenzo\nManuel\nAlbert\nAlec\nBradley\nConner\nMicah\nMiles\nNickolas\nPhilip\nRoberto\nCasey\nDonovan\nGary\nHolden\nJay\nMartin\nAyden\nCaiden\nCarl\nDakota\nDonald\nFinn\nGage\nHarry\nJakob\nJustice\nKai\nLukas\nMario\nMatteo\nNelson\nPierce\nRafael\nRussell\nAndy\nBrody\nCamden\nFernando\nJamie\nJaylen\nKaden\nMarc\nMaximilian\nRohan\nSam\nTodd\nTrey\nTy\nYandel\nAbraham\nBrennan\nDeandre\nDeclan\nDomenic\nJakub\nJorge\nKanye\nKeegan\nKelvin\nKieran\nLandon\nMarcos\nMarlon\nMaximus\nNasir\nPedro\nRandy\nRonald\nSalvatore\nArthur\nBailey\nBrayan\nBrenden\nCayden\nCesar\nChad\nCory\nDamon\nDarren\nDean\nEduardo\nJaeden\nJan\nJerry\nJohnathan\nLance\nLevi\nMateo\nMelvin\nPablo\nPreston\nRuben\nShaun\nTucker\nWalter\nZion\nAden\nAli\nAnderson\nCharlie\nChris\nConor\nCraig\nCurtis\nDalton\nDennis\nDuncan\nErick\nFelipe\nFelix\nFrancis\nFrancisco\nGianni\nGrayson\nIsiah\nIzaiah\nJadon\nKeith\nKenny\nLawrence\nPranav\nReid\nRicardo\nRicky\nRocco\nRory\nStanley\nTrent\nTyrese\nWade\nXander\nAlberto\nAryan\nBaby\nBennett\nBraeden\nBrendon\nBruno\nCamren\nColton\nDanny\nDerrick\nEdgar\nElliott\nEzequiel\nIbrahim\nIsrael\nJaidyn\nJaime\nJavon\nJohnny\nJunior\nKhalil\nKristopher\nLewis\nMaurice\nNeil\nQuentin\nReece\nRonan\nSantiago\nSergio\nShea\nToby\nTomas\nTrevon\nVincenzo\nZackary\nZander\nAdonis\nAlvin\nArjun\nArnav\nAsher\nBraydon\nBruce\nCade\nClayton\nCorbin\nCyrus\nDamion\nDavion\nDavon\nDawson\nDouglas\nEmmett\nEnrique\nEsteban\nEugene\nEverett\nGraham\nHudson\nHugh\nJomar\nJon\nJosh\nJulius\nKarl\nKristian\nLeon\nMaddox\nMarcello\nMarquis\nMatheus\nMohamed\nNathanael\nNikhil\nNoel\nOrlando\nRaphael\nRoman\nRowan\nRyder\nSawyer\nSincere\nTaylor\nTerrell\nTobias\nAdriel\nAleksander\nAllan\nAllen\nAmar\nAxel\nBeckett\nBobby\nBranden\nCamron\nCedric\nChance\nChauncey\nCristofer\nDarien\nDarius\nDeven\nDevyn\nDillan\nDominik\nDustin\nEamon\nEddy\nElliot\nEmerson\nEmiliano\nErnest\nEzra\nFrankie\nGerald\nGiancarlo\nGordon\nGustavo\nHoward\nHugo\nIsmael\nJabari\nJace\nJameson\nJayvon\nJimmy\nJoey\nJosue\nJovanni\nJulien\nKaiden\nKamari\nKyler\nLarry\nMakhi\nMarquise\nMarvin\nMohammad\nMorgan\nMuhammad\nNico\nNomar\nOmari\nPhillip\nPrince\nQuincy\nRaul\nRhys\nRodney\nRoy\nSaul\nSkyler\nTerrence\nTony\nTrenton\nTreyvon\nTyrell\nTyson\nWayne\nWill\nWinston\nZachery\nRyan\nMatthew\nMichael\nNicholas\nAnthony\nJoshua\nWilliam\nAlexander\nAndrew\nJohn\nJacob\nJack\nTyler\nBenjamin\nJoseph\nChristopher\nDaniel\nEthan\nJames\nDavid\nThomas\nDylan\nChristian\nNathan\nAidan\nNoah\nZachary\nSamuel\nKevin\nJonathan\nRobert\nJustin\nGabriel\nConnor\nEvan\nKyle\nJason\nLogan\nLuke\nJayden\nBrandon\nLucas\nElijah\nOwen\nSean\nCharles\nJordan\nAiden\nAlex\nCameron\nIsaiah\nAngel\nAdam\nColin\nAustin\nGavin\nTimothy\nMason\nBrian\nJake\nNathaniel\nEric\nIan\nJackson\nLiam\nJose\nPeter\nCaleb\nDominic\nNicolas\nRichard\nCole\nJaden\nPatrick\nSebastian\nJulian\nLuis\nAaron\nAntonio\nBrendan\nHenry\nHunter\nXavier\nJeremy\nJeremiah\nBryan\nChase\nVincent\nCooper\nSteven\nDevin\nJeffrey\nTrevor\nCarlos\nStephen\nMaxwell\nBrady\nJoel\nMark\nShane\nEdward\nHayden\nJuan\nVictor\nCarter\nDerek\nEdwin\nJared\nPaul\nSpencer\nAdrian\nCody\nGiovanni\nIsaac\nCollin\nJaiden\nBrayden\nGeorge\nMiguel\nAlejandro\nGriffin\nBryce\nGregory\nQuinn\nRiley\nSeth\nTristan\nJosiah\nKenneth\nShawn\nBlake\nDiego\nJesse\nAlexis\nBraden\nMarcus\nRaymond\nAndre\nDante\nHarrison\nMalachi\nMax\nAyden\nDeclan\nErik\nLandon\nLeonardo\nOmar\nTheodore\nAngelo\nCristian\nJorge\nHector\nAndy\nColby\nGarrett\nJesus\nJonah\nMarco\nOliver\nAshton\nCaden\nDillon\nDrew\nEli\nNolan\nTravis\nWyatt\nFernando\nMitchell\nScott\nBrett\nCarson\nDamian\nDamien\nElias\nFrank\nJaylen\nJayson\nLouis\nMartin\nMiles\nNasir\nPeyton\nTanner\nAlan\nAvery\nBrody\nLorenzo\nLukas\nPhilip\nRocco\nConor\nDevon\nLuca\nNikolas\nPedro\nPreston\nTroy\nTy\nBraeden\nErick\nGianni\nGrant\nJohnny\nKai\nManuel\nMekhi\nRowan\nEmmanuel\nJavier\nJohnathan\nKaleb\nLeo\nMario\nMyles\nRonald\nSimon\nCalvin\nCorey\nDonovan\nEmanuel\nKayden\nKeith\nMicah\nParker\nSawyer\nTrey\nZackary\nAndres\nBradley\nCasey\nCesar\nJakob\nJalen\nJay\nJomar\nJulius\nKaden\nPayton\nRohan\nAden\nArjun\nArthur\nDamon\nDean\nDouglas\nGage\nIvan\nJace\nJonas\nJosue\nOscar\nRafael\nRoberto\nAlec\nAllen\nAmari\nCamden\nChad\nConner\nDominick\nEddie\nEduardo\nEliel\nHudson\nJohnpaul\nJulio\nMarc\nMateo\nMaximilian\nMorgan\nQuincy\nRaul\nRonan\nTerrence\nBen\nBrennan\nChance\nColton\nDavon\nDerrick\nDorian\nFrancis\nFrancisco\nGraham\nHolden\nIsrael\nJerry\nJonathon\nJovan\nKieran\nMalcolm\nMatteo\nMelvin\nNeil\nSalvatore\nSam\nSeamus\nSergio\nSilas\nTucker\nAmare\nAmir\nBaby\nBennett\nDarren\nDomenic\nDuncan\nEdgar\nEzra\nFelix\nFinn\nFrederick\nGiancarlo\nKaiden\nKeegan\nLance\nMaddox\nMarcos\nMaurice\nNathanael\nNelson\nNico\nQuentin\nReid\nRoman\nRyder\nShaun\nTrenton\nTyrese\nWesley\nYandel\nZion\nAbraham\nAlbert\nAlberto\nAlvin\nBrayan\nBrendon\nCarl\nCarmine\nCorbin\nCurtis\nDakota\nDandre\nDevan\nDonald\nDustin\nElliot\nElliott\nEzekiel\nGary\nHarry\nIsiah\nIsmael\nJameson\nJaydon\nJustice\nKelvin\nMohamed\nNoel\nPatryk\nPhillip\nRaphael\nRylan\nSincere\nTerrell\nTobias\nTomas\nWalker\nAditya\nAhmed\nAli\nAllan\nAntoine\nAri\nAsher\nAxel\nBrock\nBruce\nCamron\nCayden\nDavis\nDavonte\nDennis\nEamon\nEldin\nEmmett\nEnrique\nEnzo\nFabian\nGianluca\nGrady\nGunnar\nJamar\nJamari\nJamie\nJayvon\nJoey\nJude\nKameron\nLevi\nMalik\nMathew\nPranav\nQuintin\nRalph\nRandy\nReese\nRicardo\nRory\nSantiago\nTate\nToby\nTristen\nTyson\nWayne\nZane\nAdan\nAedan\nAhmad\nAjay\nAlden\nAlessandro\nAlexandre\nAriel\nArmani\nArnav\nAugust\nBranden\nBrent\nBryant\nCaiden\nCharlie\nCraig\nDalton\nDamion\nDanny\nEdison\nEfrain\nEllis\nEmmet\nEverett\nHamza\nIzaiah\nJadyn\nJaidyn\nJakai\nJakub\nJaquan\nJarrett\nJavon\nJaxon\nJaylon\nJefferson\nJermaine\nJerome\nJoao\nJohan\nJon\nKanye\nKenny\nKody\nLamar\nLarry\nLeon\nLeonard\nLincoln\nMalakai\nMarquis\nMarquise\nMassimo\nMoises\nMuhammad\nOrion\nOrlando\nPierce\nQuinton\nRay\nRishi\nRuben\nSantino\nSavion\nShamar\nSkyler\nThiago\nTodd\nTony\nTravon\nTrevon\nTyshawn\nVladimir\nWalter\nWillem\nWilson\nXander\nXzavier\nYadiel\nZachery\nZackery\nMichael\nMatthew\nRyan\nNicholas\nAnthony\nAlexander\nJoseph\nWilliam\nJacob\nJohn\nAndrew\nDaniel\nChristopher\nJoshua\nTyler\nJack\nBenjamin\nJames\nDavid\nEthan\nThomas\nJonathan\nNathan\nChristian\nDylan\nLogan\nAidan\nNoah\nZachary\nJustin\nLuke\nSamuel\nJayden\nEvan\nJason\nConnor\nBrandon\nGabriel\nKevin\nOwen\nRobert\nLucas\nSean\nGavin\nMason\nAiden\nElijah\nCameron\nKyle\nIsaiah\nJordan\nCharles\nNathaniel\nPatrick\nJake\nXavier\nColin\nJackson\nLiam\nEric\nAdam\nAlex\nAngel\nBrian\nJulian\nSebastian\nHunter\nAaron\nCaleb\nChase\nLuis\nCole\nJose\nPeter\nBryan\nIan\nJaden\nTimothy\nTristan\nJeremiah\nDominic\nAntonio\nRichard\nAdrian\nVictor\nCarlos\nHenry\nAustin\nCooper\nEdward\nJuan\nCarter\nDerek\nBrady\nVincent\nBrendan\nGiovanni\nSteven\nNicolas\nShane\nMark\nIsaac\nJeremy\nMaxwell\nOliver\nDevin\nJeffrey\nMiguel\nMax\nPaul\nGriffin\nGeorge\nLandon\nStephen\nTrevor\nWyatt\nCody\nJaiden\nSpencer\nMarcus\nBrayden\nJesse\nQuinn\nAyden\nJared\nHayden\nBryce\nJoel\nShawn\nJosiah\nLuca\nTheodore\nAlexis\nCaden\nDiego\nRiley\nSeth\nGregory\nJohnathan\nAlejandro\nCarson\nJonah\nKenneth\nMalachi\nPreston\nKaden\nDante\nElias\nBlake\nDamian\nDillon\nMarco\nRaymond\nTravis\nAndre\nColby\nConor\nDamien\nEdwin\nFrank\nHarrison\nHector\nLeonardo\nMathew\nAvery\nConner\nCristian\nDevon\nDominick\nEli\nJaylen\nJulius\nKai\nKaleb\nMyles\nOmar\nAndy\nGarrett\nGianni\nJavier\nManuel\nMario\nMiles\nOscar\nTy\nWesley\nAlec\nDrew\nJosue\nNolan\nRicardo\nTroy\nBrennan\nChris\nJalen\nJorge\nLorenzo\nParker\nScott\nAlan\nAngelo\nBraden\nBrody\nErik\nFrancisco\nLouis\nMitchell\nYandel\nBraeden\nCollin\nCorey\nEmanuel\nGrant\nJace\nJaeden\nJude\nLeo\nMateo\nRafael\nRyder\nSawyer\nAlbert\nAndres\nArthur\nDeclan\nDonovan\nEmmanuel\nFelix\nIvan\nJay\nJayson\nJesus\nMicah\nZackary\nAllen\nAnderson\nCalvin\nCasey\nCayden\nCesar\nFinn\nKristian\nMatteo\nNikolas\nRoberto\nRocco\nSimon\nAli\nAsher\nBrenden\nBrett\nCharlie\nDakota\nDennis\nFernando\nFrancis\nFrederick\nGage\nJameson\nKeegan\nKeith\nLevi\nLukas\nMarcos\nMekhi\nPeyton\nRowan\nTanner\nVincenzo\nAmir\nBradley\nCamden\nCristopher\nDonald\nDouglas\nElliot\nHolden\nJakob\nNathanael\nNickolas\nPedro\nPhillip\nRalph\nRylan\nSam\nTalan\nTrey\nZion\nAshton\nBranden\nClayton\nColton\nDerrick\nDustin\nIsrael\nIzaiah\nKieran\nLawrence\nMartin\nNasir\nPhilip\nRohan\nRoman\nRonan\nTodd\nTucker\nZane\nAddison\nAntoine\nAriel\nAryan\nCaiden\nCamren\nChad\nCraig\nCurtis\nDarius\nDomenic\nEduardo\nEmmett\nEnzo\nErick\nEverett\nEzra\nGreyson\nHarold\nJuelz\nKaiden\nKelvin\nKenny\nMarc\nMelvin\nNico\nPablo\nPierce\nQuincy\nRandy\nRaul\nRhys\nRonald\nSergio\nShaun\nTony\nTrevon\nAden\nAlessandro\nAmari\nArmani\nBennett\nCarl\nCarmine\nDamion\nDanny\nDarren\nDawson\nDesmond\nDonte\nFabian\nHarry\nJavon\nJermaine\nJomar\nJonas\nJulien\nKayden\nLamar\nMalik\nMaxim\nMaximus\nNeil\nOrlando\nRay\nRonnie\nRussell\nSkyler\nTerrence\nTobias\nTyson\nWilson\nZaire\nZander\nAedan\nAlberto\nAleksander\nBrendon\nByron\nCamrin\nCyrus\nDarwin\nDavian\nDean\nDeven\nEfrain\nElliott\nEmerson\nEsteban\nFilip\nFinnian\nFrancesco\nFrankie\nFranklin\nFreddy\nGrayson\nGunnar\nGustavo\nHudson\nIsmael\nJamir\nJayvon\nJimmy\nJoaquin\nJohnny\nJovanni\nJulio\nJustice\nJustus\nKhalil\nKobe\nLance\nLucian\nMarlon\nMarshall\nMarvin\nMateusz\nMaurice\nMaximilian\nMoises\nMorgan\nMuhammad\nRaphael\nRashad\nRoger\nRomeo\nRory\nSalvatore\nShamar\nSiddharth\nSincere\nTaylor\nTrent\nWalter\nWarren\nWill\nAarav\nAbel\nAhmed\nAlexandre\nArjun\nAron\nBeckett\nBen\nBernard\nBrayan\nBruce\nBryson\nCarmelo\nDamon\nDario\nDeandre\nDemetrius\nDereck\nDevan\nDwayne\nEddie\nEdgar\nEdison\nEnrique\nGary\nGiancarlo\nGiovanny\nGlenn\nJadiel\nJadon\nJahki\nJairo\nJamari\nJamison\nJan\nJaydin\nJaylon\nJeffery\nJerry\nJoe\nJon\nKacper\nKamari\nKameron\nKarl\nKolby\nKole\nLachlan\nLamont\nLanden\nLayne\nLee\nLincoln\nLuciano\nLucien\nMaddox\nMakai\nMakhi\nMassimo\nMauricio\nMohammed\nMustafa\nNazir\nNigel\nNiko\nPatryk\nPhoenix\nQuentin\nRamon\nRashaun\nRayan\nReed\nReid\nReynaldo\nRicky\nRodolfo\nRoy\nSamir\nSantiago\nSeamus\nSebastien\nTerrance\nTerrell\nTomas\nTrenton\nTyree\nTyrell\nYadiel\nZain\nMichael\nMatthew\nRyan\nJoseph\nAnthony\nAlexander\nWilliam\nNicholas\nChristopher\nJacob\nDaniel\nJoshua\nJayden\nJack\nJohn\nAndrew\nTyler\nEthan\nNathan\nJames\nLogan\nBenjamin\nNoah\nDavid\nThomas\nSamuel\nAiden\nEvan\nChristian\nDylan\nJustin\nJonathan\nLucas\nZachary\nGabriel\nConnor\nOwen\nGavin\nAidan\nLuke\nLiam\nElijah\nKevin\nRobert\nJason\nJordan\nCharles\nMason\nCameron\nAngel\nBrandon\nJackson\nSean\nNathaniel\nIsaiah\nJake\nXavier\nKyle\nCaleb\nEric\nJeremiah\nAustin\nAlex\nAaron\nJose\nAdam\nBrian\nJulian\nIan\nHenry\nSebastian\nPatrick\nColin\nJaden\nChase\nCole\nLuis\nPeter\nTimothy\nAdrian\nBrady\nDominic\nAntonio\nIsaac\nOliver\nTristan\nGiovanni\nJosiah\nJeremy\nBrendan\nDerek\nEdward\nHunter\nMaxwell\nRichard\nCarlos\nMax\nNicolas\nBryan\nCooper\nMark\nShane\nMiguel\nBrayden\nSteven\nGeorge\nDante\nPaul\nBryce\nDevin\nTrevor\nAyden\nJeffrey\nCody\nJaiden\nBlake\nBrody\nJoel\nJuan\nSpencer\nStephen\nVincent\nCaden\nLandon\nMarcus\nRiley\nVictor\nWyatt\nAlexis\nCarter\nEdwin\nQuinn\nDiego\nErik\nElias\nHayden\nJared\nJonah\nRaymond\nEli\nLuca\nNolan\nOmar\nParker\nCollin\nKenneth\nTravis\nAndre\nMarco\nShawn\nJesse\nKayden\nMalachi\nOscar\nTheodore\nCristian\nDrew\nFrank\nLukas\nPeyton\nPreston\nDominick\nJorge\nLeonardo\nColton\nGregory\nHector\nJavier\nMartin\nMiles\nRafael\nErick\nGarrett\nJesus\nLorenzo\nLouis\nMario\nPedro\nAvery\nBrennan\nDamien\nHarrison\nJameson\nJosue\nMateo\nNasir\nPhilip\nRocco\nSawyer\nScott\nSeth\nTanner\nAmir\nArthur\nCalvin\nColby\nDeclan\nGriffin\nJohnathan\nJulius\nManuel\nTroy\nBraeden\nCamden\nDevon\nDonovan\nEverett\nGrant\nIvan\nLincoln\nNico\nRicardo\nRohan\nWesley\nAngelo\nAsher\nConor\nEmmanuel\nFinn\nFrancisco\nJayson\nJulio\nKaleb\nMicah\nAlan\nAndres\nAndy\nCayden\nDillon\nGage\nJalen\nKaiden\nLeo\nMatteo\nMaximilian\nPhillip\nReid\nRoberto\nRoman\nRussell\nAnderson\nBraden\nCesar\nEdgar\nGrayson\nJaylen\nKaden\nLuciano\nMarc\nRonald\nRowan\nSam\nSantiago\nSimon\nTrenton\nTy\nAmari\nBradley\nCarson\nChris\nDamian\nDean\nEmanuel\nFernando\nGiuseppe\nGraham\nIsrael\nJace\nMekhi\nTrey\nZion\nAli\nAriel\nAryan\nBrett\nChance\nCorey\nFelix\nGrady\nHudson\nJakob\nKeegan\nMaximus\nNehemiah\nNikolas\nRandy\nRyder\nAedan\nAlec\nAydan\nBennett\nBoden\nBrenden\nBruno\nDarius\nEduardo\nFabian\nJayce\nJulien\nKeith\nKelvin\nKhalil\nKieran\nLawrence\nMaddox\nMalik\nMathew\nRonan\nShaun\nSilas\nTaylor\nTrent\nTucker\nYadiel\nYandel\nZyaire\nAhmed\nAlejandro\nAlessandro\nAmare\nArjun\nAugust\nCarmelo\nCasey\nDakota\nDamon\nEmerson\nEzequiel\nGianni\nIbrahim\nJadiel\nJamison\nJavon\nJonas\nKai\nKrish\nMatheus\nMaurice\nMohamed\nMyles\nNathanael\nNelson\nNoel\nOrlando\nQuincy\nRomeo\nSalvatore\nSkyler\nTyrell\nZackary\nAden\nAlijah\nAllen\nAri\nAshton\nAxel\nAydin\nConner\nCraig\nDarren\nDerrick\nDonald\nElliott\nFinnegan\nGary\nGustavo\nHarry\nIsiah\nIsmael\nIzaiah\nJaylin\nJayvon\nJermaine\nJohan\nJorden\nJude\nJustice\nKameron\nMarcos\nMassimo\nMelvin\nMorgan\nNickolas\nOmari\nRaul\nReed\nRoger\nSergio\nSincere\nZackery\nZane\nAbraham\nAlberto\nAlexavier\nArmani\nAyaan\nBen\nBenicio\nCharlie\nCristopher\nDamion\nDanny\nDennis\nDomenic\nElliot\nElvin\nFelipe\nFrancis\nGreyson\nHolden\nHugo\nJaeden\nJamal\nJefferson\nJerry\nJoaopedro\nJohnny\nJomar\nJonathon\nJuelz\nKarl\nKason\nKellen\nKenny\nKymani\nLeland\nLeon\nMarquis\nMarvin\nNazir\nQuentin\nQuinton\nRamon\nRaphael\nRory\nRuben\nToby\nTomas\nTyshawn\nWalter\nWillie\nZander\nAarav\nAlbert\nAlden\nAlvin\nArnav\nBilly\nBranden\nBraydon\nBrock\nBrodie\nBryson\nCamron\nCarlo\nCarmine\nClayton\nCory\nCristiano\nCristofer\nDeacon\nDerick\nDhruv\nDimitri\nDominik\nDouglas\nElian\nEliel\nEliezer\nEmiliano\nEmmet\nEnzo\nFrederick\nGiancarlo\nGianluca\nGuilherme\nIsaias\nJacoby\nJaedyn\nJakub\nJandel\nJariel\nJasper\nJaxon\nJay\nJean\nJeffery\nJeriel\nJovan\nJovanni\nKamari\nKamil\nKeven\nKristopher\nLance\nLarry\nLars\nLevi\nMakhi\nMarcel\nMarlon\nMauricio\nMessiah\nMilo\nMitchell\nNeil\nNikhil\nPorter\nQuintin\nRay\nRodrigo\nRyley\nSantino\nSeamus\nShayne\nStefan\nSyncere\nTalon\nTeagan\nTerrance\nTobias\nTristian\nXander\nYahir\nZain\nMichael\nMatthew\nRyan\nAlexander\nJacob\nChristopher\nWilliam\nAnthony\nNicholas\nAndrew\nJoseph\nJayden\nDaniel\nJohn\nTyler\nJack\nJoshua\nEthan\nJames\nDylan\nAiden\nLogan\nNathan\nBenjamin\nDavid\nJustin\nGabriel\nNoah\nThomas\nSamuel\nJonathan\nGavin\nLucas\nChristian\nEvan\nZachary\nElijah\nLuke\nOwen\nConnor\nAidan\nAngel\nRobert\nJason\nKevin\nJordan\nMason\nBrandon\nJulian\nJake\nJackson\nCole\nCharles\nLiam\nCameron\nSean\nChase\nNathaniel\nCaleb\nAlex\nIsaiah\nXavier\nHenry\nJeremiah\nAdam\nJose\nKyle\nAdrian\nColin\nPatrick\nSebastian\nAustin\nBrady\nBrian\nCarter\nLuis\nPeter\nAaron\nBrayden\nIan\nIsaac\nRichard\nDominic\nSteven\nBlake\nEric\nOliver\nTristan\nJaden\nJeremy\nShane\nAyden\nLandon\nMax\nBryan\nHunter\nDevin\nJaiden\nJosiah\nTimothy\nEdward\nAntonio\nCooper\nJoel\nMaxwell\nWyatt\nBrody\nCaden\nBrendan\nCarlos\nEdwin\nGiovanni\nMark\nHayden\nPaul\nCollin\nDerek\nKenneth\nLuca\nCody\nParker\nMarcus\nMiguel\nNicolas\nVictor\nJaylen\nRiley\nTrevor\nEli\nGriffin\nJuan\nDiego\nHarrison\nJonah\nBryce\nElias\nVincent\nJavier\nKaleb\nKayden\nNolan\nYadiel\nGeorge\nJeffrey\nCarson\nCristian\nGrant\nMateo\nOmar\nAvery\nColton\nFinn\nLukas\nMiles\nRocco\nShawn\nTravis\nAndre\nDante\nJesse\nJorge\nKaden\nRafael\nSpencer\nAlexis\nDean\nLeo\nSantiago\nAlejandro\nAndres\nDeclan\nEmmanuel\nFernando\nFrank\nHector\nHudson\nOscar\nRicardo\nStephen\nCamden\nJadiel\nLorenzo\nTheodore\nConor\nDevon\nDrew\nJulius\nMalachi\nMarco\nRaymond\nSawyer\nTroy\nAndy\nBraeden\nCayden\nGarrett\nGrayson\nJared\nKaiden\nLincoln\nPreston\nAsher\nColby\nCorey\nDennis\nDominick\nErik\nGraham\nIvan\nMaximilian\nMaximus\nTanner\nAmari\nArthur\nBrennan\nCesar\nCharlie\nDonovan\nFrancisco\nGregory\nJulien\nMitchell\nMyles\nNasir\nNikolas\nPhilip\nRandy\nRyder\nSeth\nAmir\nAnderson\nAshton\nFelix\nJace\nJesus\nJosue\nLouis\nMaddox\nQuinn\nRonan\nScott\nSilas\nWalter\nAlan\nAlbert\nCalvin\nChris\nDamon\nEduardo\nGage\nJohnathan\nTucker\nAden\nAli\nAllen\nElliot\nEverett\nGianni\nHarry\nJacoby\nJakob\nJameson\nJaxon\nJude\nKeegan\nKeith\nKieran\nMario\nMicah\nRohan\nShaun\nTrent\nTyson\nWesley\nYariel\nBraden\nBrett\nCarmine\nDamien\nJayson\nJerry\nJustice\nKelvin\nLeonardo\nReid\nSavion\nSimon\nTiago\nZion\nAaden\nAbraham\nAlessandro\nAngelo\nBraydon\nBruce\nCasey\nDane\nDillon\nDustin\nEmanuel\nEmilio\nEsteban\nFinnegan\nGrady\nGreyson\nIshaan\nIzaiah\nJohan\nKai\nKobe\nLeon\nMatteo\nMaurice\nNelson\nPedro\nPeyton\nPhillip\nQuincy\nRowan\nRylan\nSalvatore\nSeamus\nTyrell\nYandel\nZaire\nAditya\nAdriel\nAdrien\nArmani\nBeckett\nBradley\nBrenden\nCamren\nChance\nDalton\nDamian\nDonald\nErick\nJay\nJimmy\nJonas\nJuelz\nKareem\nKenny\nKymani\nManuel\nMarc\nMarcel\nMartin\nMaxim\nMelvin\nNathanael\nNico\nPablo\nPhoenix\nRomeo\nSam\nSincere\nTaylor\nTrey\nAlvin\nAxel\nBrodie\nBryson\nCarmelo\nConner\nCorbin\nCraig\nDomenic\nDouglas\nEdgar\nEliezer\nEmerson\nEzekiel\nEzra\nFrancis\nGary\nGunnar\nJaeden\nJaidyn\nJakub\nJaxson\nJermaine\nKacper\nKamari\nKeaton\nKellen\nLachlan\nLawrence\nMakai\nMalik\nMarcello\nMatheus\nMekhi\nMohammed\nOmari\nOrlando\nPierce\nRaul\nRoman\nRonald\nRussell\nSergio\nTodd\nTyshawn\nAarush\nAhmed\nAlijah\nAri\nArjun\nAydin\nBraedan\nCaiden\nCallum\nCamron\nDesmond\nDorian\nEfrain\nEnzo\nEzequiel\nFrederick\nGiancarlo\nGlenn\nHugo\nIsrael\nJamir\nJavon\nJohnny\nJovan\nJulio\nKevon\nKhalil\nLanden\nLeandro\nLevi\nLuciano\nMakhi\nMaksim\nMarvin\nMathew\nMiller\nMilo\nMuhammad\nRaphael\nRoberto\nTerrell\nTrevon\nTy\nVincenzo\nWilson\nXander\nAbel\nAddison\nAedan\nAlec\nAmogh\nAnsh\nAryan\nAugust\nBeau\nBennett\nBrayan\nBrooks\nBruno\nCarl\nCash\nCurtis\nDamion\nDanny\nDarius\nDavion\nDomenico\nDonte\nElliott\nEmery\nGerald\nGino\nGraydon\nHolden\nJadon\nJaime\nJalen\nJamie\nJamil\nJariel\nJasper\nJayce\nJaylon\nJayvon\nJefferson\nJoe\nJosh\nJovanni\nJowell\nKameron\nKeagan\nKent\nKillian\nKody\nKristopher\nLeland\nLucian\nMalakai\nMariano\nMisael\nMohamed\nMoises\nNathanial\nNigel\nNoel\nPhineas\nPranav\nQuentin\nQuintin\nRalph\nRamon\nReed\nReese\nRemy\nRoger\nRory\nSantino\nStefan\nSteve\nSyed\nTerrance\nThiago\nTobias\nTomasz\nVikram\nWeston\nWolfgang\nYash\nZackery\nZane\nZavier\nZyaire\nMichael\nRyan\nAlexander\nMatthew\nJayden\nEthan\nWilliam\nAnthony\nJoshua\nChristopher\nNicholas\nDaniel\nJacob\nJoseph\nJames\nBenjamin\nAndrew\nTyler\nJohn\nAiden\nDavid\nJack\nGabriel\nNathan\nSamuel\nDylan\nEvan\nLogan\nNoah\nChristian\nLiam\nLucas\nJustin\nJonathan\nGavin\nLuke\nConnor\nCharles\nJackson\nZachary\nKevin\nMason\nElijah\nThomas\nRobert\nChase\nBrandon\nJulian\nOwen\nJason\nXavier\nAidan\nCameron\nIsaiah\nCole\nKyle\nColin\nJordan\nAdam\nJake\nSebastian\nAdrian\nAngel\nBrayden\nHenry\nNathaniel\nCaleb\nSean\nLandon\nJose\nJosiah\nAustin\nHunter\nCarter\nJeremiah\nLuis\nOliver\nTristan\nEric\nIsaac\nLuca\nPatrick\nAlex\nAaron\nCooper\nPeter\nEdward\nDominic\nGiovanni\nWyatt\nMax\nBrady\nIan\nBrian\nAntonio\nBrody\nMaxwell\nNicolas\nEli\nRichard\nVincent\nAyden\nBryan\nGeorge\nJeremy\nJadiel\nBlake\nBryce\nElias\nJaden\nJoel\nMarcus\nMark\nPaul\nTimothy\nCarlos\nDerek\nKenneth\nDevin\nTrevor\nEdwin\nJaiden\nQuinn\nVictor\nHayden\nJeffrey\nJuan\nParker\nRiley\nSteven\nBrendan\nGriffin\nStephen\nCody\nMiles\nCaden\nCayden\nHarrison\nCristian\nDamien\nGrant\nKayden\nMatteo\nNolan\nSpencer\nDiego\nMiguel\nTheodore\nColton\nOmar\nRocco\nAlan\nJulius\nRaymond\nCollin\nPreston\nRafael\nShane\nShawn\nAlejandro\nDamian\nGregory\nJaxon\nJonah\nYadiel\nAshton\nCharlie\nJayson\nKai\nKaleb\nKieran\nWesley\nBraden\nDante\nDeclan\nDrew\nEmmanuel\nKaden\nLevi\nMateo\nMicah\nMyles\nRicardo\nAbraham\nAndre\nAsher\nBrennan\nEduardo\nErick\nJacoby\nJameson\nJude\nLuciano\nMalachi\nMario\nOscar\nTy\nAmir\nHudson\nIzaiah\nJesus\nLeo\nLorenzo\nMalik\nPeyton\nTravis\nAlexis\nAndy\nArthur\nEmanuel\nGrayson\nHector\nIvan\nJaylen\nJosue\nMartin\nRohan\nSawyer\nShaun\nBradley\nBrett\nDevon\nDillon\nGianni\nGraham\nJace\nKaiden\nKeegan\nRyder\nScott\nZion\nAaden\nAngelo\nAugust\nCalvin\nCamden\nCarson\nFrank\nGrady\nJavier\nJaxson\nJorge\nLanden\nLouis\nLukas\nMaddox\nMarco\nNoel\nSantiago\nSilas\nSimon\nZackary\nAlbert\nAnderson\nAndres\nBennett\nDanny\nDonald\nDonovan\nEnzo\nErik\nEzequiel\nFinn\nGage\nIsrael\nJesse\nJohnathan\nKauan\nKrish\nLeonardo\nMaximilian\nMaximus\nPablo\nRoman\nTyson\nZane\nAden\nAlec\nAlessandro\nArmani\nBryson\nCesar\nCorey\nDean\nGarrett\nHarry\nJasper\nJimmy\nJohnny\nJonas\nKeith\nMarcos\nMekhi\nNeil\nReed\nTyshawn\nVincenzo\nAditya\nAmari\nArjun\nBrendon\nBruce\nConor\nFrancisco\nJared\nJay\nJudah\nKameron\nMarc\nMitchell\nNico\nPhillip\nQuincy\nRandy\nRussell\nTrent\nTristen\nYandel\nAli\nAlvin\nAryan\nBeckett\nBraeden\nByron\nChance\nColby\nDarius\nDarren\nDesmond\nDominick\nDominik\nDustin\nDwayne\nEdgar\nElliott\nEmmett\nFabian\nFelix\nGreyson\nHolden\nJamal\nJaniel\nJermaine\nJulio\nKymani\nLawrence\nLincoln\nMathew\nPhilip\nPhoenix\nRaphael\nRoberto\nRowan\nTanner\nTerrance\nWeston\nYariel\nZaire\nAedan\nAnish\nBrayan\nCade\nCaiden\nCasey\nChace\nConner\nCraig\nDeandre\nDennis\nElliot\nFelipe\nFernando\nFinnegan\nFrederick\nJaime\nJakob\nJariel\nJefferson\nJett\nJohan\nJomar\nJovani\nJuelz\nJunior\nKelvin\nKhalil\nKyler\nLamar\nLondon\nNehemiah\nNickolas\nQuentin\nRonan\nSeth\nSkyler\nTate\nTaylor\nTrey\nTroy\nTucker\nValentino\nAlexandre\nAlexavier\nAllan\nAllen\nAnton\nAvery\nCarl\nCarmelo\nCarmine\nChad\nCurtis\nDakota\nDarwin\nDavion\nDexter\nDouglas\nEliezer\nEverett\nEzra\nFilip\nFrancis\nGeovanny\nGiovanny\nGrayden\nIbrahim\nIsaias\nIshaan\nJadon\nJalen\nJosh\nJovanni\nJustice\nKareem\nKenny\nKing\nKingston\nKonrad\nLucian\nMakai\nManuel\nMessiah\nNelson\nNikolas\nOmari\nOrlando\nPaxton\nPranav\nSantino\nTerrence\nTiago\nVivaan\nWalter\nXander\nXzavier\nYusuf\nAbdullah\nAdriel\nAdrien\nAgustin\nAlberto\nAyaan\nBobby\nBoden\nBrodie\nChris\nCian\nColt\nCorbin\nCyrus\nDarryl\nDavian\nDavis\nDerrick\nEaston\nEddie\nEmilio\nEzekiel\nFrancesco\nFrankie\nFranklin\nGary\nGunnar\nGustavo\nIsmael\nJagger\nJamie\nJan\nJasiah\nJax\nJayvon\nJowell\nJulien\nKamari\nKarl\nKole\nLeif\nLeonidas\nMalcolm\nMassimo\nMatheus\nMathias\nMaurice\nMilo\nMohamed\nMoises\nMorgan\nNasir\nNazir\nPedro\nPrince\nRashad\nRayan\nReece\nReese\nReid\nRicky\nRiver\nRoger\nRory\nRylan\nSam\nSergio\nSiddharth\nSolomon\nStanley\nTheo\nTodd\nTomas\nTyrell\nZyair\nMichael\nAlexander\nJacob\nMatthew\nRyan\nJayden\nWilliam\nNoah\nChristopher\nEthan\nAnthony\nMason\nNicholas\nJoseph\nTyler\nJames\nAndrew\nJoshua\nJack\nBenjamin\nDylan\nAiden\nLogan\nDaniel\nNathan\nGabriel\nLucas\nJohn\nLiam\nGavin\nDavid\nSamuel\nEvan\nJonathan\nChristian\nJackson\nJustin\nThomas\nZachary\nElijah\nConnor\nOwen\nLuke\nCharles\nJordan\nChase\nJulian\nRobert\nKevin\nXavier\nJeremiah\nCameron\nHenry\nCaleb\nAdam\nJason\nAngel\nSebastian\nBrandon\nColin\nNathaniel\nAidan\nCole\nLandon\nHunter\nSean\nEric\nAdrian\nBrayden\nKyle\nAustin\nIan\nJake\nDominic\nAlex\nAyden\nPatrick\nEli\nLuis\nOliver\nGiovanni\nAaron\nCarter\nIsaiah\nJaden\nTristan\nVincent\nJosiah\nCooper\nIsaac\nBlake\nWyatt\nBryan\nBrody\nLuca\nPeter\nBryce\nMax\nBrian\nJose\nTimothy\nAntonio\nLevi\nRichard\nMarcus\nMark\nCarlos\nDerek\nJaiden\nNolan\nJoel\nParker\nBrendan\nKayden\nLeonardo\nSteven\nCristian\nCollin\nCaden\nMiles\nCody\nDeclan\nDevin\nEdward\nMaxwell\nTrevor\nBrady\nColton\nDiego\nElias\nJeffrey\nMateo\nDante\nJeremy\nSawyer\nAlejandro\nHayden\nJesse\nPaul\nShane\nGrayson\nHarrison\nJohnathan\nJonah\nTravis\nVictor\nCayden\nGeorge\nHudson\nNicolas\nAndre\nDamian\nFinn\nJuan\nKaden\nRiley\nMalachi\nRyder\nShawn\nTheodore\nAsher\nJace\nLukas\nQuinn\nStephen\nTroy\nAlexis\nCarson\nErick\nGraham\nGregory\nKaiden\nLeo\nMarco\nPeyton\nRocco\nSpencer\nAmir\nAshton\nCharlie\nJaylen\nMatteo\nMiguel\nCaiden\nEmanuel\nGreyson\nGriffin\nJayson\nJulius\nPreston\nRaymond\nRhys\nAndy\nBraden\nCalvin\nCamden\nDamien\nDean\nJadiel\nJakob\nJavier\nKaleb\nKeegan\nKenneth\nLouis\nOscar\nRafael\nSimon\nWesley\nArjun\nBrennan\nColby\nDrew\nEduardo\nEmmett\nFrank\nJameson\nJude\nLorenzo\nMicah\nNikolas\nOmar\nSantiago\nYadiel\nEdwin\nEverett\nGarrett\nJosue\nMario\nRicardo\nZion\nAngelo\nBennett\nConner\nConor\nDominick\nJaxon\nKai\nMaximilian\nSalvatore\nSeth\nTucker\nVincenzo\nXander\nArthur\nBeckett\nCorey\nErik\nGrant\nJohan\nMorgan\nNehemiah\nPedro\nReid\nYandel\nAarav\nAmari\nAxel\nBrett\nDerrick\nDevon\nDomenic\nDonald\nDonovan\nEzequiel\nGage\nHolden\nIvan\nIzaiah\nJariel\nJasper\nJayvon\nJesus\nMaximus\nMuhammad\nNico\nPhilip\nPhillip\nRohan\nRomeo\nScott\nTanner\nTrent\nAlan\nAlec\nAllen\nAmare\nArmani\nAvery\nAyaan\nBradley\nCristopher\nDillon\nDustin\nEmmanuel\nEsteban\nEzra\nFernando\nGrady\nJacoby\nJared\nJasiah\nJax\nJay\nJayce\nJean\nJulien\nLincoln\nMarcello\nMartin\nNiko\nSam\nTy\nWalter\nXzavier\nAhmad\nAlbert\nAnderson\nAndres\nAntony\nAri\nAriel\nBentley\nDarren\nDavian\nElliot\nEnzo\nFelix\nFinnegan\nFrancisco\nGianni\nJonas\nJovani\nKelvin\nKieran\nLuciano\nMitchell\nMohamed\nRoman\nTrey\nZackary\nZyaire\nArnav\nAryan\nBeau\nBryson\nCamryn\nCarmine\nCasey\nChance\nDalton\nDarwin\nDennis\nDesmond\nEmilio\nGary\nHector\nJakub\nJomar\nKeith\nKellen\nKian\nKobe\nMakai\nMalik\nManuel\nMarc\nMaximiliano\nMyles\nNelson\nPrince\nReed\nRonald\nRory\nSergio\nShaun\nSilas\nTaylor\nYariel\nAbel\nAden\nAlessandro\nBen\nBrayan\nBraylon\nBrenden\nBrennen\nBruce\nCarmelo\nChace\nCraig\nDamon\nDane\nDeandre\nDouglas\nEdgar\nFinley\nFrancesco\nFrancis\nHarris\nJavion\nJavon\nJaxson\nJefferson\nJimmy\nJohnny\nJorge\nJoziah\nJulio\nKamari\nKeanu\nKellan\nLeon\nLondon\nMaddox\nMarcos\nMarlon\nMathias\nMatias\nMohammed\nNathen\nNickolas\nOrion\nQuentin\nRamon\nRaphael\nRicky\nRoger\nRonan\nRyker\nSavion\nTony\nTyson\nWilson\nYahir\nYusuf\nZachariah\nAaden\nAbraham\nAditya\nAdonis\nAhmir\nAleksander\nAlessio\nAli\nAlijah\nAmeer\nAnish\nAydin\nBode\nBoden\nBraydon\nBrycen\nCallan\nCesar\nCyrus\nDakota\nDallas\nDanny\nDarius\nDavi\nDemetrius\nDion\nEden\nElliott\nEllis\nEzekiel\nFelipe\nFisher\nFranklin\nGerald\nGerard\nIbrahim\nIsaias\nIsrael\nJalen\nJamil\nJamir\nJavian\nJayvien\nJayvion\nJensen\nJon\nJovan\nJudah\nJuelz\nJustice\nKauan\nKendall\nKenny\nKillian\nKristian\nKristopher\nLeandro\nMalakai\nMalcolm\nMatheus\nMaxim\nMessiah\nMohammad\nNoel\nPablo\nQuincy\nRandy\nReece\nRussell\nRylan\nSamir\nSantino\nSincere\nSkyler\nTate\nTenzin\nTheo\nTristen\nYamil\nZavier\nZayden\nAlexander\nMason\nMichael\nRyan\nJacob\nWilliam\nJoseph\nAnthony\nMatthew\nJayden\nJohn\nNoah\nNicholas\nEthan\nAiden\nBenjamin\nChristopher\nJack\nAndrew\nJames\nDaniel\nNathan\nLiam\nLogan\nJackson\nJoshua\nTyler\nDavid\nLucas\nDylan\nGabriel\nChristian\nEvan\nConnor\nJonathan\nElijah\nSamuel\nThomas\nLuke\nHenry\nGavin\nChase\nCharles\nCameron\nCaleb\nJeremiah\nJordan\nOwen\nBrandon\nBrayden\nJason\nRobert\nZachary\nJulian\nAngel\nJustin\nKevin\nLandon\nOliver\nCarter\nIsaiah\nSebastian\nXavier\nAustin\nNathaniel\nColin\nAdam\nIsaac\nHunter\nJake\nLuis\nAdrian\nAaron\nIan\nDominic\nJosiah\nPatrick\nTristan\nCole\nSean\nMaxwell\nAidan\nBlake\nParker\nEli\nJose\nCooper\nGiovanni\nMax\nVincent\nAyden\nAlex\nColton\nJaiden\nKyle\nWyatt\nCarlos\nDeclan\nRichard\nAntonio\nEric\nGeorge\nGrayson\nTheodore\nDante\nElias\nJaden\nJeremy\nJonah\nKayden\nLuca\nSteven\nBrody\nBryce\nShane\nTimothy\nBrian\nJameson\nBryan\nJoel\nNicolas\nBrady\nEdward\nJaxon\nLeo\nMiles\nPaul\nWesley\nNolan\nRiley\nRyder\nVictor\nMarco\nMark\nMateo\nJuan\nLevi\nDerek\nDevin\nElliot\nMarcus\nRocco\nBrendan\nJace\nJayce\nMalachi\nCayden\nPeter\nSeth\nSilas\nBradley\nCarmelo\nCarson\nEmmanuel\nHayden\nIvan\nJaxson\nOscar\nGrady\nHudson\nKaiden\nKenneth\nMatteo\nMaximus\nMicah\nSawyer\nTrevor\nCaden\nCody\nFinn\nGregory\nGreyson\nJorge\nLeonardo\nLouis\nRaymond\nSantiago\nAmir\nAsher\nCristian\nDiego\nDrew\nEdwin\nEmmett\nJeffrey\nJesse\nKaden\nKai\nAlejandro\nAlexis\nAngelo\nAshton\nGarrett\nGrant\nHarrison\nJaylen\nJayson\nMiguel\nMyles\nOmar\nQuinn\nRoman\nSpencer\nAmari\nGianni\nLorenzo\nPreston\nRicardo\nStephen\nBennett\nJadiel\nNico\nArmani\nAvery\nBentley\nCollin\nDamian\nDonovan\nEverett\nGraham\nMaddox\nPeyton\nAlan\nBrennan\nBryson\nCaiden\nCharlie\nDamien\nFrank\nJesus\nJulien\nLukas\nAlbert\nAnderson\nAndre\nBraden\nColby\nConor\nCorey\nDarren\nFernando\nIsrael\nJavier\nJulius\nLincoln\nRonan\nRylan\nTravis\nYadiel\nBrodie\nCalvin\nChace\nChance\nDominick\nEaston\nGriffin\nKaleb\nKellan\nManuel\nMarcello\nPedro\nShawn\nTyson\nZion\nAndy\nArthur\nAxel\nCallum\nCash\nDarius\nDesmond\nElliott\nErick\nHolden\nKeegan\nKelvin\nKieran\nReid\nRoberto\nRonald\nTanner\nTroy\nVincenzo\nXander\nYandel\nBeckett\nBrycen\nCamden\nDean\nDouglas\nFelix\nGunnar\nHector\nIzaiah\nJaime\nJavon\nJohnathan\nJude\nJustice\nMartin\nMaxim\nNiko\nNikolas\nPrince\nRamon\nRohan\nRowan\nTrent\nTristen\nTucker\nWeston\nAdriel\nAli\nAllen\nAmare\nAndres\nArjun\nAugust\nBraeden\nBrenden\nBruce\nDerrick\nDillon\nEdgar\nEmanuel\nEzekiel\nEzra\nFinnegan\nFrancis\nIbrahim\nJosue\nKameron\nLuciano\nMario\nMathew\nPablo\nSimon\nTrey\nYusuf\nZackary\nAarav\nAden\nAhmed\nAtticus\nCallan\nConner\nDarien\nDavian\nDevon\nDomenic\nDustin\nEnzo\nErik\nFrancisco\nGage\nGiuseppe\nHarry\nJasper\nJudah\nKendall\nKrish\nLachlan\nLanden\nLeland\nLondon\nMarc\nMarcel\nMatias\nMauricio\nMohammed\nMuhammad\nNehemiah\nPaxton\nPierce\nRayan\nReed\nRhys\nSam\nSamir\nSeamus\nSincere\nTitus\nVihaan\nYariel\nZander\nAbdullah\nAdonis\nArcher\nAri\nAriel\nArnav\nAryan\nAydin\nBen\nBraydon\nCade\nChris\nCristopher\nCullen\nCyrus\nDallas\nDane\nDennis\nDonald\nDrake\nEduardo\nEmilio\nEzequiel\nFabian\nGerard\nIsiah\nIsmael\nJalen\nJared\nJariel\nJax\nJay\nJefferson\nJensen\nJesiah\nJohan\nKamden\nKellen\nKristian\nMalcolm\nMaximilian\nMekhi\nMelvin\nMitchell\nNasir\nPhilip\nPhillip\nPranav\nSantino\nScott\nShamar\nSiddharth\nThiago\nTrevon\nWalter\nWilfredo\nWilson\nZane\nAhmad\nAlec\nAlessandro\nAvi\nAyaan\nBoden\nByron\nCamilo\nCamren\nCamron\nCarmine\nChad\nClayton\nColten\nCurtis\nDamon\nDanny\nDavin\nDevyn\nDexter\nElvin\nFrankie\nGianluca\nGuilherme\nGunner\nHarper\nIsaias\nIshaan\nIshan\nJacoby\nJaeden\nJakai\nJamal\nJamari\nJamison\nJavien\nJaydan\nJayvian\nJayvon\nJerry\nJimmy\nJoao\nJoaquin\nJoniel\nKareem\nKeith\nKian\nKody\nLamar\nLandyn\nLarry\nMalik\nMarcos\nMarquis\nMohamed\nNathanael\nNelson\nNikhil\nOdin\nOmari\nQuentin\nQuincy\nRafael\nRandy\nRaul\nRey\nRuben\nRussell\nSalvatore\nSaul\nShea\nShmuel\nSkyler\nTobias\nVan\nWalker\nYahir\nZack\nZaire\nZayden\nMason\nJacob\nMichael\nLiam\nEthan\nJayden\nAnthony\nMatthew\nNoah\nRyan\nWilliam\nJames\nAlexander\nJoseph\nBenjamin\nDaniel\nLogan\nAiden\nJohn\nNicholas\nJack\nNathan\nJackson\nTyler\nLucas\nAndrew\nElijah\nChristopher\nJoshua\nGabriel\nDavid\nEvan\nChristian\nSamuel\nLuke\nDylan\nCameron\nHenry\nZachary\nConnor\nGavin\nCaleb\nBrandon\nSebastian\nChase\nCharles\nOwen\nCarter\nBrayden\nHunter\nJeremiah\nJonathan\nJordan\nJustin\nThomas\nLandon\nRobert\nAustin\nIsaiah\nJason\nDominic\nXavier\nAdam\nColin\nOliver\nKevin\nNathaniel\nAdrian\nCole\nIsaac\nAngel\nTristan\nGiovanni\nIan\nJosiah\nWyatt\nEli\nJulian\nAyden\nSean\nBlake\nVincent\nKyle\nLuca\nLuis\nPatrick\nAaron\nJake\nAlex\nParker\nRichard\nAidan\nDerek\nJose\nMax\nJeremy\nMaxwell\nNolan\nPeter\nAntonio\nBryce\nCooper\nLevi\nBrian\nEdward\nColton\nGeorge\nJaxon\nDeclan\nElias\nJace\nJoel\nLeo\nTheodore\nEric\nKayden\nNicolas\nPaul\nBrady\nCamden\nBrody\nCayden\nGrayson\nJameson\nHarrison\nTimothy\nBryan\nMiguel\nStephen\nBrendan\nDamian\nGreyson\nGriffin\nJaiden\nJonah\nJuan\nMark\nSteven\nCarlos\nKaleb\nOmar\nTrevor\nDamien\nDevin\nJayce\nKaiden\nMateo\nMiles\nFrank\nLukas\nSilas\nTravis\nWesley\nBradley\nEmmanuel\nHayden\nJaden\nJadiel\nJaxson\nJeffrey\nMicah\nPreston\nQuinn\nSantiago\nCody\nErik\nJesse\nRocco\nTanner\nAvery\nCaiden\nCarson\nEnzo\nKai\nMalachi\nRiley\nSimon\nZion\nConner\nDante\nKaden\nKeegan\nLeonardo\nMatteo\nRyder\nAndre\nAsher\nBennett\nDanny\nDominick\nElliot\nEverett\nLouis\nMaddox\nMarco\nPeyton\nAmari\nCaden\nCollin\nDean\nDrew\nEdwin\nFinn\nGregory\nMarcus\nRylan\nShane\nAlexis\nAnderson\nBentley\nCarmelo\nCristian\nFelix\nGrant\nHudson\nLincoln\nRaymond\nRory\nScott\nVictor\nWeston\nAlejandro\nAngelo\nAxel\nCalvin\nEmmett\nJesus\nJosue\nMaximus\nAlan\nAmare\nAmir\nAshton\nBryson\nDillon\nGianni\nGraham\nJay\nKenneth\nKing\nMalik\nMyles\nRoman\nSpencer\nTucker\nAarav\nBraden\nDonovan\nFrancisco\nLorenzo\nMartin\nMuhammad\nThiago\nAbraham\nArmani\nArthur\nColby\nIker\nIvan\nJaylen\nJorge\nJulius\nNikolas\nNoel\nOscar\nPhilip\nRowan\nSeth\nShawn\nTristen\nTroy\nXander\nAlessandro\nAli\nAndres\nAndy\nChance\nDennis\nDouglas\nEaston\nEduardo\nElliott\nEzra\nGarrett\nGianluca\nIsrael\nJavier\nLeon\nMaximiliano\nNathanael\nReid\nRohan\nSam\nSawyer\nAlbert\nAleksander\nCallum\nDesmond\nDiego\nEzequiel\nFrancis\nFrederick\nHolden\nJakob\nJohnathan\nJovanni\nJude\nKeith\nKellen\nMohammed\nRafael\nRoberto\nSeamus\nWalter\nAbel\nBrennan\nCarl\nCasey\nCharlie\nConor\nEmanuel\nEzekiel\nFernando\nFinnegan\nGunnar\nHamza\nJayson\nKieran\nMario\nNehemiah\nPhillip\nPierce\nRaphael\nRayan\nRicardo\nTrent\nVihaan\nZaiden\nAbdullah\nAden\nAhmed\nAlec\nArnav\nChris\nCorey\nDavian\nDevon\nGage\nIbrahim\nJamari\nJase\nJerry\nJoaquin\nJohnny\nJoziah\nJuelz\nKameron\nKendrick\nKobe\nLucian\nLuciano\nManuel\nMaximilian\nMelvin\nNasir\nNeil\nNiko\nOrion\nSalvatore\nSincere\nTyson\nZane\nAdriel\nAllen\nAri\nArjun\nAtticus\nAugustus\nBranden\nBraydon\nCallen\nCruz\nDarius\nDavi\nDomenic\nDonald\nDorian\nEnrique\nFrancesco\nGael\nGrady\nIzaiah\nJadon\nJael\nJaime\nJariel\nJasper\nJerome\nJohan\nJomar\nJosh\nJulio\nJustice\nKayleb\nKian\nKingston\nKolby\nMalcolm\nMarshall\nMassimo\nMatias\nMike\nMilo\nNico\nPablo\nPedro\nReed\nReilly\nRomeo\nRoyce\nRyker\nSergio\nSkyler\nTrey\nTy\nVincenzo\nWade\nYadiel\nAlexavier\nAlexzander\nAlijah\nAllan\nAydan\nBeckett\nBraeden\nBraxton\nBruce\nCamilo\nCamren\nCamron\nCarmine\nCesar\nCian\nColten\nCorbin\nCristiano\nCullen\nDavion\nDexter\nDominik\nDrake\nDwayne\nEmilio\nFranklin\nGary\nGuy\nHector\nIshaan\nIsmael\nJacoby\nJamison\nJared\nJavon\nJaxen\nJaxton\nJaycob\nJayvian\nJefferson\nJionni\nJon\nJovan\nJulien\nKareem\nKellan\nKelvin\nLanden\nLandyn\nMaison\nMarcello\nMarcos\nMathew\nMathias\nMayson\nMessiah\nMoises\nNikolai\nPaxton\nPhoenix\nPrince\nQuincy\nRandy\nRashad\nReese\nRhys\nRonald\nRonan\nRuben\nRussell\nSamir\nSiddharth\nStefan\nTate\nTerrence\nToby\nTomas\nUriel\nValentino\nWilson\nYandel\nZack\nZackary\nWilliam\nMason\nJacob\nNoah\nMichael\nLiam\nEthan\nJoseph\nRyan\nDylan\nLogan\nMatthew\nAnthony\nAlexander\nJames\nLucas\nDaniel\nJayden\nBenjamin\nAiden\nAndrew\nJackson\nJoshua\nJack\nJohn\nSamuel\nGabriel\nNicholas\nNathan\nDavid\nChristopher\nCarter\nEvan\nLuke\nElijah\nConnor\nCameron\nOwen\nJulian\nTyler\nHunter\nHenry\nChristian\nJonathan\nThomas\nSebastian\nChase\nJeremiah\nIsaac\nRobert\nCaleb\nKevin\nCharles\nGavin\nOliver\nZachary\nEli\nBlake\nDominic\nIsaiah\nJordan\nLandon\nBrayden\nJason\nJosiah\nXavier\nAdrian\nAustin\nNathaniel\nJaxon\nIan\nJustin\nAdam\nAngel\nBrandon\nJace\nTristan\nAaron\nParker\nKayden\nAyden\nColton\nLevi\nColin\nEdward\nGiovanni\nWyatt\nAlex\nLeo\nMax\nMaxwell\nCole\nDeclan\nGrayson\nPeter\nJose\nLuca\nCamden\nNolan\nTheodore\nBrody\nKyle\nLuis\nBryce\nJeremy\nCooper\nJake\nMark\nTimothy\nBrian\nRichard\nVincent\nCarlos\nGeorge\nJaxson\nJayce\nMateo\nElias\nNicolas\nPaul\nBrady\nGreyson\nKaiden\nSean\nJoel\nJonah\nPatrick\nShane\nSimon\nAidan\nBennett\nBryan\nJuan\nLeonardo\nSteven\nWesley\nAmir\nAvery\nMiguel\nMiles\nHarrison\nJeffrey\nKing\nPreston\nJaden\nLorenzo\nRiley\nSilas\nDante\nEric\nEverett\nHector\nHudson\nJayceon\nMarcus\nRyder\nSawyer\nSpencer\nTrevor\nBradley\nFinn\nKenneth\nQuinn\nAlan\nDamian\nGrant\nJameson\nAntonio\nBrendan\nCayden\nCollin\nDerek\nJude\nMaddox\nMatteo\nMicah\nRocco\nVictor\nBentley\nCarson\nCristian\nFrank\nJaiden\nJorge\nKaleb\nRaymond\nRowan\nStephen\nAlexis\nCody\nDrew\nJase\nLincoln\nMalachi\nMarco\nMyles\nThiago\nTroy\nAbel\nCaden\nCharlie\nElliot\nEmmanuel\nLukas\nMaximus\nNico\nSantiago\nArthur\nAshton\nCalvin\nDean\nEzra\nJesus\nKaden\nKai\nRylan\nScott\nTravis\nXander\nAlejandro\nDevin\nEzekiel\nGriffin\nReid\nRoman\nSantino\nZayden\nAarav\nAndres\nAngelo\nAsher\nDillon\nEdwin\nEnzo\nErick\nFelix\nGianni\nGraham\nJayson\nKarter\nManuel\nMathew\nAbraham\nAnderson\nAndre\nBryson\nCaiden\nColby\nCorey\nEmmett\nErik\nGarrett\nGregory\nJavier\nJohnny\nKeegan\nLouis\nOmar\nOscar\nRafael\nTanner\nZander\nZion\nAlbert\nAri\nArmani\nAxel\nCarmelo\nDennis\nEmanuel\nIsrael\nIvan\nMarc\nMilo\nMuhammad\nNikolas\nRicardo\nTucker\nWalter\nZaiden\nBeckett\nChance\nDamien\nDominick\nDonovan\nElliott\nEmerson\nHarry\nHayden\nJaylen\nJohnathan\nJudah\nKingston\nLeon\nLuciano\nPedro\nQuentin\nQuincy\nSalvatore\nArjun\nCesar\nDalton\nDiego\nDonald\nEaston\nEduardo\nFabian\nFrancis\nGiuseppe\nGrady\nIbrahim\nJadiel\nJakob\nJax\nJefferson\nKamden\nKeith\nLeonard\nLuka\nMario\nMatias\nMilan\nNelson\nRhys\nRussell\nWeston\nAhmed\nAlden\nAmari\nAugust\nAyaan\nBrooks\nClark\nDesmond\nDevon\nEsteban\nFrancisco\nHolden\nJacoby\nJalen\nJariel\nJay\nJulien\nJulius\nKillian\nLawrence\nMadden\nMarshall\nMartin\nMathias\nMessiah\nMitchell\nPablo\nPhilip\nRayan\nRomeo\nSergio\nTrent\nVincenzo\nAden\nAdrien\nAlessandro\nAndy\nBraden\nBrantley\nBraxton\nBrennan\nBruce\nClayton\nDexter\nDomenic\nGage\nGianluca\nIker\nJaime\nJamison\nJaycob\nJoaquin\nJovanni\nKellan\nKellen\nKristian\nLondon\nMaverick\nOrion\nPaxton\nPeyton\nPrince\nReed\nRory\nSolomon\nTobias\nVivaan\nZackary\nZane\nZyaire\nAbdiel\nAditya\nAhmad\nAlec\nAli\nAugustus\nBoden\nBrayan\nBryant\nCamron\nCarmine\nCasey\nChris\nCruz\nCurtis\nDane\nDarren\nDerrick\nDominik\nEdgar\nEmir\nFranklin\nGideon\nGraeme\nIzaiah\nJared\nJasper\nJavian\nJayvian\nJesse\nKameron\nKeaton\nKelvin\nKristopher\nLucian\nMakai\nMalakai\nMalcolm\nMohammed\nMorgan\nNeil\nRohan\nRonan\nSeth\nSylas\nToby\nTrenton\nTyson\nValentino\nWalker\nYadiel\nYusuf\nAedan\nAllan\nAmar\nAmare\nAryan\nAydin\nBen\nCallen\nCarl\nCash\nChandler\nChanning\nDallas\nDamon\nDarius\nDashiell\nDavi\nDax\nEnrique\nEwan\nFlynn\nFrederick\nGael\nGary\nGunner\nHamza\nIssac\nJair\nJan\nJavien\nJohan\nJovani\nJulio\nKacper\nKalel\nKamari\nKendrick\nKieran\nKingsley\nKyrie\nLeandro\nLeland\nLeonidas\nLeroy\nLucien\nMarcos\nMatthias\nMaximilian\nMelvin\nNathanael\nNazir\nNehemiah\nNoel\nPhillip\nPhoenix\nPierce\nPietro\nRamon\nRandy\nRaphael\nReese\nReyansh\nRyland\nSam\nSamar\nShawn\nSkylar\nSkyler\nTate\nTerrell\nThaddeus\nTrey\nTyrell\nYariel\nMason\nNoah\nAlexander\nJacob\nLiam\nMichael\nLogan\nBenjamin\nAnthony\nWilliam\nJoseph\nJames\nMatthew\nDaniel\nRyan\nEthan\nLucas\nAndrew\nOwen\nJack\nJohn\nDylan\nAiden\nJayden\nChristopher\nGabriel\nNicholas\nNathan\nJackson\nLuke\nSebastian\nElijah\nDavid\nChristian\nThomas\nEvan\nCameron\nOliver\nSamuel\nJoshua\nHenry\nCarter\nConnor\nHunter\nJeremiah\nLandon\nTyler\nCaleb\nCharles\nDominic\nChase\nGavin\nJulian\nJonathan\nRobert\nAustin\nZachary\nCole\nColton\nJaxon\nAdrian\nLuca\nGrayson\nNathaniel\nBrandon\nIsaac\nParker\nAdam\nJordan\nJace\nXavier\nJosiah\nBrayden\nIsaiah\nTheodore\nAaron\nBlake\nColin\nDeclan\nEli\nLeo\nKevin\nAngel\nBrody\nJason\nKayden\nMaxwell\nNolan\nGeorge\nJustin\nBryce\nCamden\nElias\nPatrick\nWyatt\nGiovanni\nVincent\nCooper\nHudson\nJaxson\nLuis\nIan\nEdward\nLevi\nSean\nBrian\nMax\nAyden\nJose\nJake\nNicolas\nRyder\nSawyer\nAlex\nGreyson\nAidan\nJameson\nTristan\nDerek\nJayceon\nPaul\nPeter\nWesley\nCarson\nLeonardo\nRichard\nEric\nMiles\nVictor\nCayden\nJeremy\nJonah\nKyle\nLincoln\nLorenzo\nAsher\nCarlos\nAmir\nBrady\nKaiden\nMarcus\nMatteo\nTimothy\nAntonio\nGriffin\nHarrison\nJaden\nJuan\nMark\nBryan\nEmmett\nJayce\nKing\nSilas\nSteven\nBradley\nDrew\nPreston\nBennett\nDamian\nGrant\nJoel\nDean\nJulius\nTucker\nWeston\nAlan\nKai\nKaleb\nMaddox\nMateo\nMyles\nRaymond\nStephen\nAngelo\nAvery\nBrendan\nDevin\nGregory\nJase\nMiguel\nRiley\nDante\nEzra\nFinn\nFrank\nGraham\nSimon\nTrevor\nJeffrey\nKeegan\nMalachi\nMarco\nMaximus\nMicah\nNico\nOmar\nBentley\nBryson\nCalvin\nChance\nEdwin\nElliot\nEnzo\nEverett\nEzekiel\nGianni\nJude\nKellan\nKenneth\nAshton\nElliott\nFinnegan\nKaden\nRory\nShane\nSpencer\nAden\nAlec\nAlejandro\nCorey\nFrancis\nGarrett\nIvan\nJaiden\nJasper\nJax\nKarter\nPhilip\nQuinn\nRafael\nRylan\nSantiago\nZion\nAxel\nBrooks\nCaiden\nCharlie\nConor\nCristian\nDiego\nDonovan\nJay\nJesus\nJosue\nLouis\nLukas\nRoman\nSantino\nZayden\nAbraham\nAli\nCaden\nCollin\nDamien\nErick\nJadiel\nJesse\nOscar\nSam\nThiago\nWalter\nAbel\nAnderson\nAndre\nArcher\nBeau\nCody\nDominick\nDonald\nEmmanuel\nFrederick\nHolden\nIker\nLeon\nMatias\nMuhammad\nNoel\nRyker\nTanner\nTravis\nAbdullah\nAlbert\nAndres\nArjun\nArthur\nBraden\nConner\nEmanuel\nIsrael\nJavier\nJohnathan\nLuciano\nMalcolm\nManuel\nOdin\nPaxton\nPedro\nRicardo\nRowan\nSeamus\nSeth\nXander\nAmari\nAri\nAugust\nDallas\nDesmond\nDustin\nEaston\nEllis\nFelix\nGage\nGideon\nJayson\nJohnny\nJorge\nLennox\nMalik\nMarshall\nRonan\nScott\nShawn\nTroy\nZaire\nArnav\nBen\nCarmelo\nColby\nCorbin\nDalton\nDavi\nDouglas\nEmerson\nErik\nEzequiel\nFabian\nGrady\nHamza\nHayden\nKareem\nKhalil\nKingston\nKyrie\nLondon\nMario\nMarvin\nMilan\nNasir\nNeymar\nPhillip\nRandy\nReed\nReid\nRemy\nRocco\nSkyler\nTobias\nYariel\nZain\nAarav\nAbdiel\nAdriel\nAlessandro\nAlexis\nAndy\nArmani\nBoden\nBrennan\nBruce\nChris\nCristiano\nCyrus\nDanny\nDavian\nDillon\nEdgar\nFernando\nGunnar\nIbrahim\nJared\nJayvian\nJefferson\nJustice\nKenny\nKieran\nLuka\nMaison\nMartin\nMathias\nMessiah\nMohammad\nNehemiah\nOrlando\nRayan\nReyansh\nRussell\nSalvatore\nSolomon\nTaylor\nTheo\nTomas\nTyson\nWarren\nWilson\nZackary\nZane\nAleksander\nAlfredo\nAllen\nAyaan\nBarrett\nBeckett\nBrantley\nBraxton\nCallan\nCallen\nCallum\nCamron\nCarmine\nCastiel\nDominik\nEdison\nEduardo\nFinley\nFranklin\nIsmael\nJai\nJaime\nJalen\nJamie\nJean\nJeremih\nJon\nJudah\nKamden\nKeith\nKellen\nKelvin\nKillian\nKymani\nLeland\nLucian\nMalakai\nMaverick\nMitchell\nNeil\nNickolas\nNiko\nOrion\nPeyton\nPorter\nPrince\nRaphael\nRoberto\nRomeo\nSamir\nShaun\nTate\nTenzin\nVihaan\nVincenzo\nWalker\nWinston\nYadiel\nYusuf\nZander\nAhmad\nAlden\nAlessio\nAllan\nAnsh\nAyan\nBenicio\nBraeden\nBrecken\nBrycen\nByron\nCade\nCamdyn\nCamren\nCarl\nCassius\nClayton\nColt\nCullen\nDeandre\nDennis\nDimitri\nEden\nEmiliano\nEmilio\nEnrique\nEugene\nGiancarlo\nHarold\nHector\nJakob\nJavian\nJaycob\nJaylen\nJayvion\nJensen\nJohan\nJovani\nJulien\nKamren\nKian\nKristopher\nLanden\nLawrence\nLeighton\nLeonel\nLeonidas\nMarcello\nMarcelo\nMathew\nMaximiliano\nMilo\nMustafa\nNash\nNathanael\nNazir\nNikolai\nPablo\nPranav\nRaheem\nRhys\nRiver\nRonald\nStanley\nTiago\nTrent\nTrenton\nVivaan\nMary\nMargaret\nHelen\nDorothy\nElizabeth\nRuth\nCatherine\nEthel\nEvelyn\nLouise\nFrances\nLillian\nMarion\nAlice\nBertha\nMarie\nVirginia\nMildred\nThelma\nViola\nEdna\nClara\nElsie\nBeatrice\nEdith\nEleanor\nGrace\nGladys\nAnna\nFlorence\nJosephine\nGertrude\nMarjorie\nRose\nAnne\nBernice\nCharlotte\nEsther\nHazel\nMae\nNellie\nSarah\nAnn\nBetty\nJulia\nMyrtle\nAgnes\nAnnie\nAudrey\nChristine\nHilda\nIda\nInez\nJeannette\nMarian\nMay\nMary\nDorothy\nHelen\nMargaret\nEvelyn\nElizabeth\nLouise\nCatherine\nRuth\nAlice\nFrances\nGrace\nThelma\nGladys\nMildred\nVirginia\nEdith\nRose\nBernice\nJosephine\nLillian\nMarie\nBeatrice\nElsie\nEsther\nEthel\nEdna\nEleanor\nFlorence\nKatherine\nViola\nAlma\nAnna\nSarah\nAgnes\nAnnie\nClara\nDoris\nGertrude\nJulia\nPearl\nVivian\nHazel\nIda\nMabel\nMarion\nMarjorie\nAnn\nBlanche\nEllen\nJuanita\nMarguerite\nNellie\nAnne\nBertha\nCharlotte\nEmma\nFannie\nHilda\nJean\nLaura\nLucille\nLucy\nMadeline\nNaomi\nPauline\nMary\nDorothy\nHelen\nMargaret\nElizabeth\nCatherine\nEvelyn\nVirginia\nRuth\nLillian\nMildred\nFrances\nThelma\nAnna\nEthel\nLouise\nMarie\nAlice\nGladys\nEdna\nEleanor\nFlorence\nJean\nBeatrice\nEdith\nLucille\nMarion\nMarjorie\nBernice\nViola\nHazel\nKatherine\nRose\nAgnes\nAnnie\nBertha\nClara\nGertrude\nGrace\nAnn\nJulia\nMyrtle\nAudrey\nCora\nElsie\nEmma\nJosephine\nLaura\nMarguerite\nPauline\nBessie\nHarriet\nIda\nIrene\nMartha\nRosa\nDoris\nEva\nKathryn\nMabel\nMae\nMarian\nNellie\nPearl\nSarah\nAlma\nCecelia\nDaisy\nElla\nEllen\nGeneva\nKatharine\nMay\nVivian\nMary\nDorothy\nHelen\nMargaret\nElizabeth\nRuth\nCatherine\nFrances\nLouise\nLillian\nThelma\nAlice\nEvelyn\nMildred\nFlorence\nGladys\nEthel\nAnna\nIrene\nVirginia\nAudrey\nBeatrice\nEsther\nJessie\nMarie\nGertrude\nRose\nEdith\nGrace\nJosephine\nJulia\nAnne\nBertha\nDoris\nEdna\nEleanor\nMarion\nMarjorie\nEmma\nBernice\nCharlotte\nElsie\nHazel\nNaomi\nSarah\nViola\nAgnes\nAnnie\nJane\nMarguerite\nEstelle\nJean\nKathryn\nLucille\nMartha\nPauline\nSylvia\nBarbara\nBessie\nClara\nEmily\nEva\nMabel\nAlma\nAnn\nBetty\nEllen\nLaura\nPearl\nHenrietta\nJune\nKatharine\nKatherine\nLois\nMae\nMarian\nNellie\nPatricia\nSara\nVivian\nMary\nDorothy\nMargaret\nHelen\nRuth\nElizabeth\nCatherine\nFrances\nLouise\nEvelyn\nThelma\nVirginia\nAlice\nMildred\nLillian\nMarie\nAnna\nEthel\nFlorence\nKatherine\nGladys\nEdith\nBernice\nEdna\nEleanor\nSarah\nMarion\nClara\nGrace\nJosephine\nJean\nMarian\nElsie\nLucille\nMarjorie\nAnne\nMartha\nNellie\nBarbara\nDoris\nJane\nJulia\nAlma\nEsther\nPearl\nGertrude\nMabel\nPauline\nRose\nViola\nAgnes\nHazel\nJeanette\nMarguerite\nBeatrice\nBertha\nBessie\nBlanche\nCharlotte\nEmily\nLaura\nLucy\nMamie\nAnita\nAudrey\nChristine\nHenrietta\nLois\nMiriam\nMuriel\nMyrtle\nRegina\nRuby\nShirley\nBetty\nClaire\nElisabeth\nHattie\nIrene\nJennie\nJuanita\nLeona\nMadeline\nMae\nRita\nVivian\nAnnie\nDaisy\nEmma\nEstelle\nGenevieve\nHilda\nIda\nKathleen\nLorraine\nNancy\nViolet\nMary\nDorothy\nHelen\nMargaret\nElizabeth\nRuth\nEvelyn\nFrances\nVirginia\nMildred\nCatherine\nLouise\nEleanor\nThelma\nAnna\nBernice\nDoris\nLillian\nMarie\nEdith\nEthel\nFlorence\nGrace\nAlice\nGertrude\nMarion\nGladys\nRose\nRita\nEsther\nJane\nMartha\nAnne\nAgnes\nBetty\nEdna\nMarguerite\nMarjorie\nJean\nSylvia\nAnn\nNaomi\nPauline\nSarah\nCharlotte\nElsie\nIda\nJosephine\nJulia\nMiriam\nRebecca\nVivian\nBessie\nClara\nEllen\nTheresa\nViola\nAnnie\nAudrey\nBeulah\nBlanche\nEmma\nAlberta\nElla\nIrene\nLois\nLorraine\nMyrtle\nPatricia\nPearl\nAlma\nBeatrice\nBertha\nChristine\nHilda\nJuanita\nKatherine\nLaura\nLucille\nMabel\nNancy\nAda\nBarbara\nEstelle\nInez\nMadeline\nMamie\nDorothea\nIsabel\nKathryn\nMarian\nMay\nNellie\nWinifred\nCaroline\nCarolyn\nConstance\nDolores\nEloise\nEmily\nEva\nGenevieve\nHarriette\nHazel\nJennie\nKatharine\nLillie\nLottie\nLucile\nMinnie\nNorma\nPhyllis\nRoberta\nRosalie\nRuby\nSue\nMary\nMargaret\nDorothy\nHelen\nRuth\nElizabeth\nEvelyn\nFrances\nLouise\nVirginia\nThelma\nAnna\nMildred\nCatherine\nDoris\nAlice\nFlorence\nEdith\nLillian\nMarie\nKatherine\nEthel\nEdna\nJane\nAudrey\nGertrude\nJean\nRita\nMartha\nEleanor\nEllen\nGladys\nJosephine\nAnne\nGrace\nMarjorie\nBernice\nBetty\nEsther\nMarion\nRose\nVivian\nHilda\nKathryn\nLois\nMarguerite\nSarah\nKathleen\nMabel\nCharlotte\nEstelle\nHarriet\nJeannette\nAnn\nEmma\nIrma\nTheresa\nHazel\nIda\nIrene\nLaura\nLorraine\nMarian\nViola\nAnnie\nBeatrice\nBessie\nEmily\nNellie\nAgnes\nBarbara\nBertha\nElsie\nEva\nGeorgia\nGeraldine\nInez\nJuanita\nLucy\nMiriam\nNorma\nSylvia\nAlberta\nAlma\nBeulah\nClara\nConstance\nDorothea\nElaine\nElla\nJulia\nJune\nLena\nLillie\nLucille\nNancy\nVera\nAdele\nBlanche\nCecelia\nEloise\nGenevieve\nLeona\nLucile\nMadeline\nMay\nMuriel\nNaomi\nOlive\nRegina\nRosa\nSue\nWinifred\nMary\nDorothy\nMargaret\nHelen\nFrances\nElizabeth\nRuth\nCatherine\nEvelyn\nMildred\nAlice\nVirginia\nMarie\nDoris\nLillian\nLouise\nAnna\nEthel\nThelma\nEleanor\nEdith\nBernice\nEdna\nFlorence\nRose\nGertrude\nJean\nMartha\nBertha\nMarion\nMarjorie\nGladys\nGrace\nAudrey\nEsther\nAnn\nJane\nKatherine\nSarah\nAgnes\nBeatrice\nJosephine\nMarian\nPearl\nRita\nBetty\nLucille\nAnne\nElsie\nNancy\nVivian\nCharlotte\nEllen\nMarguerite\nClara\nHazel\nKathryn\nMiriam\nIrene\nBarbara\nBessie\nConstance\nIda\nLois\nTheresa\nWinifred\nAnnie\nEmma\nEstelle\nGeraldine\nNaomi\nNellie\nRegina\nViola\nAda\nAlma\nBeverly\nHenrietta\nJanet\nJulia\nJune\nLorraine\nLucy\nMae\nPhyllis\nSylvia\nVera\nAlberta\nBlanche\nCecelia\nChristine\nDaisy\nDolores\nElaine\nHilda\nJeanne\nJuanita\nMinnie\nPatricia\nRosetta\nGenevieve\nGloria\nMamie\nMyrtle\nOlga\nPauline\nRebecca\nRoberta\nRosalie\nAnita\nCaroline\nCarrie\nDelores\nGeorgia\nJeanette\nJessie\nJoan\nKathleen\nMadeline\nMaude\nNorma\nOla\nRachel\nMary\nDorothy\nMargaret\nHelen\nRuth\nElizabeth\nFrances\nVirginia\nEvelyn\nMildred\nDoris\nAlice\nFlorence\nAnna\nMarie\nCatherine\nEleanor\nThelma\nLouise\nEdith\nGertrude\nBetty\nJane\nLillian\nBarbara\nMarion\nMarjorie\nMartha\nRose\nJean\nMarguerite\nEdna\nEthel\nJune\nPauline\nAnn\nAnne\nCharlotte\nAudrey\nEllen\nGrace\nKatherine\nMarian\nBernice\nEsther\nLorraine\nRita\nAgnes\nBeatrice\nJosephine\nSarah\nShirley\nLucille\nAnnie\nBertha\nConstance\nLaura\nPearl\nElsie\nJulia\nGeraldine\nIda\nMabel\nNorma\nVivian\nAlma\nCarolyn\nEloise\nEmma\nIrene\nJeanne\nKathryn\nSylvia\nTheresa\nWinifred\nAlberta\nClara\nEileen\nGladys\nJuanita\nMyrtle\nNaomi\nPatricia\nElla\nEmily\nGenevieve\nHilda\nInez\nKathleen\nMiriam\nElaine\nHazel\nPhyllis\nRegina\nViolet\nBessie\nBeverly\nDolores\nEva\nGeorgia\nMae\nSara\nSelma\nVictoria\nViola\nDaisy\nElisabeth\nEstelle\nJanet\nJoan\nLois\nLoretta\nMadeline\nMamie\nNellie\nNina\nRoberta\nAileen\nBlanche\nCarrie\nCecilia\nErma\nFlorine\nJeanette\nLena\nLydia\nMay\nMuriel\nRebecca\nSophie\nMary\nDorothy\nMargaret\nHelen\nElizabeth\nFrances\nRuth\nEvelyn\nVirginia\nMildred\nDoris\nCatherine\nAlice\nEdith\nMarion\nEleanor\nMarie\nThelma\nAnna\nBernice\nLillian\nJean\nBetty\nBarbara\nGladys\nFlorence\nLouise\nEllen\nVivian\nEthel\nBeatrice\nCharlotte\nGertrude\nAnne\nLorraine\nJosephine\nMartha\nJane\nKatherine\nElsie\nEsther\nLucille\nMarjorie\nAnn\nGrace\nNancy\nRose\nSylvia\nAnnie\nAudrey\nMabel\nMarian\nPhyllis\nShirley\nEdna\nGeraldine\nLois\nMae\nMiriam\nAgnes\nMarguerite\nPatricia\nRita\nSarah\nCarrie\nEileen\nEva\nNorma\nHazel\nJeanne\nLaura\nBertha\nBessie\nGeorgia\nJulia\nLucy\nPauline\nRosalie\nChristine\nClara\nElla\nJune\nOlive\nViola\nAlma\nBeulah\nBlanche\nEmily\nEmma\nJeanette\nLoretta\nMyrtle\nInez\nIrene\nKathryn\nMuriel\nNellie\nPearl\nWinifred\nAda\nAdele\nCecelia\nElaine\nElisabeth\nEstelle\nIda\nJanet\nJanice\nKathleen\nLottie\nNettie\nRoberta\nAdelaide\nConstance\nErma\nHarriet\nIrma\nIsabel\nIsabelle\nJennie\nMaxine\nOlga\nRosemary\nTeresa\nVera\nMary\nDorothy\nMargaret\nHelen\nRuth\nElizabeth\nMildred\nDoris\nCatherine\nEvelyn\nFrances\nVirginia\nMarie\nAlice\nLouise\nLillian\nMarjorie\nThelma\nBetty\nEleanor\nLois\nEdith\nGladys\nJean\nBarbara\nAnna\nCharlotte\nJane\nJune\nFlorence\nGrace\nMarion\nEdna\nAnne\nLucille\nBernice\nKatherine\nShirley\nEthel\nPauline\nRita\nVivian\nBeatrice\nElsie\nGertrude\nMartha\nAgnes\nJosephine\nMarguerite\nRose\nSarah\nEllen\nEmma\nEsther\nIrene\nSylvia\nViola\nAnn\nConstance\nElaine\nNancy\nAlma\nAudrey\nHazel\nJeanne\nJuanita\nNorma\nIda\nJulia\nLorraine\nMarian\nAnnie\nKathleen\nPatricia\nPearl\nCarolyn\nClara\nEileen\nJanet\nPhyllis\nBessie\nHenrietta\nIrma\nJeannette\nNaomi\nAda\nAlberta\nBertha\nBlanche\nDolores\nDorothea\nElla\nHilda\nJoyce\nKathryn\nMae\nNellie\nSara\nAnita\nChristine\nEstelle\nGwendolyn\nHarriet\nInez\nJacqueline\nKatharine\nLaura\nMabel\nMamie\nMarcia\nMuriel\nMyrtle\nNatalie\nOlive\nRegina\nRuby\nTheresa\nWinifred\nAdelaide\nAdele\nCaroline\nEunice\nFannie\nGeraldine\nGloria\nJoan\nMiriam\nOlga\nRosa\nRosemary\nRosetta\nBette\nBeulah\nCarol\nCarrie\nCleo\nGenevieve\nJennie\nLena\nLillie\nLottie\nNora\nRachel\nRebecca\nRoberta\nTeresa\nWillie\nMary\nDorothy\nMargaret\nHelen\nElizabeth\nDoris\nFrances\nMildred\nEvelyn\nRuth\nCatherine\nLouise\nVirginia\nAnna\nThelma\nBetty\nLillian\nAlice\nMarjorie\nEleanor\nFlorence\nGladys\nMartha\nEthel\nJean\nRose\nBarbara\nEdith\nGrace\nGertrude\nJane\nKatherine\nMarie\nMarion\nNancy\nAnn\nAudrey\nBernice\nAgnes\nCharlotte\nJuanita\nPatricia\nAnne\nGloria\nJosephine\nShirley\nEdna\nIrene\nJune\nLucille\nMarguerite\nNorma\nElsie\nVivian\nGeraldine\nMiriam\nJeanne\nJulia\nRita\nSarah\nSylvia\nBeatrice\nKathryn\nAlma\nAnnie\nBessie\nEllen\nEsther\nLois\nPearl\nElaine\nEmma\nLorraine\nLucy\nDolores\nEstelle\nHazel\nJanet\nMarian\nRosemary\nTheresa\nAlberta\nBertha\nClara\nConstance\nEmily\nKathleen\nPauline\nAda\nAdele\nErma\nEva\nIda\nMadeline\nRosa\nViola\nAnnette\nCora\nJeanette\nLaura\nLoretta\nNaomi\nNellie\nRosalie\nAlthea\nCarol\nElla\nGeneva\nGenevieve\nHarriet\nIrma\nMuriel\nPeggy\nPhyllis\nPriscilla\nSara\nViolet\nBlanche\nCarolyn\nClaire\nEileen\nHenrietta\nHilda\nInez\nJennie\nMabel\nMyrtle\nRuby\nSuzanne\nVeronica\nAmelia\nAntoinette\nDaisy\nDorothea\nEloise\nEunice\nFannie\nGwendolyn\nHattie\nJacqueline\nJustine\nKatharine\nMae\nMattie\nMinnie\nNatalie\nOlive\nRebecca\nRoberta\nStella\nTeresa\nWinifred\nMary\nMargaret\nDorothy\nHelen\nRuth\nFrances\nElizabeth\nDoris\nMildred\nCatherine\nEvelyn\nBetty\nVirginia\nJean\nAlice\nAnna\nAudrey\nLouise\nMarie\nBernice\nGloria\nEdith\nGladys\nAnn\nJane\nLillian\nLois\nThelma\nAnne\nBarbara\nJune\nNancy\nEthel\nPatricia\nMarjorie\nNorma\nEleanor\nKatherine\nShirley\nMarion\nFlorence\nJeanne\nGrace\nJosephine\nMarguerite\nVivian\nGeraldine\nIda\nRose\nEdna\nEsther\nIrene\nPhyllis\nBeatrice\nPauline\nCharlotte\nElsie\nGertrude\nMartha\nEmma\nElaine\nEllen\nJulia\nLorraine\nLucille\nRita\nElla\nMarian\nPearl\nTheresa\nEileen\nJuanita\nKathleen\nMuriel\nSarah\nSylvia\nAgnes\nAnnie\nRegina\nRuby\nBettie\nConstance\nHarriet\nHazel\nVera\nAlma\nClara\nJessie\nKathryn\nMargie\nMiriam\nPeggy\nBertha\nBessie\nCarrie\nEmily\nHilda\nInez\nJacqueline\nJanet\nJeannette\nLaura\nMamie\nViolet\nBlanche\nEstelle\nEva\nJoan\nMae\nNellie\nRoberta\nRosemary\nViola\nWilhelmina\nWinifred\nAnita\nCarol\nCarolyn\nCecelia\nErma\nGenevieve\nJennie\nLena\nLillie\nLucy\nMadeline\nYvonne\nAdeline\nArline\nCaroline\nChristine\nCora\nDelores\nDolores\nFannie\nHenrietta\nHope\nLeola\nMabel\nMarilyn\nMazie\nNaomi\nNatalie\nNina\nRebecca\nSue\nVictoria\nMary\nDorothy\nMargaret\nHelen\nDoris\nBetty\nElizabeth\nRuth\nMildred\nFrances\nCatherine\nEvelyn\nBarbara\nJean\nVirginia\nThelma\nAlice\nLouise\nAnna\nFlorence\nGloria\nShirley\nGladys\nLillian\nPatricia\nMarjorie\nEthel\nMarie\nJane\nLois\nJune\nEmma\nMarion\nNancy\nJosephine\nEleanor\nMartha\nRita\nAnne\nLorraine\nEdith\nEdna\nJuanita\nKatherine\nSarah\nGrace\nVivian\nEllen\nGeraldine\nMarian\nRose\nBernice\nJeanne\nJulia\nPearl\nAgnes\nAnn\nAudrey\nLucille\nMarguerite\nElsie\nGertrude\nAnnie\nBeatrice\nElaine\nPhyllis\nSylvia\nKathleen\nEileen\nJacqueline\nLaura\nRosemary\nEsther\nViola\nBlanche\nIrene\nNorma\nPauline\nBertha\nConstance\nDolores\nKathryn\nMae\nRuby\nCarolyn\nCharlotte\nEmily\nHazel\nJanet\nJoan\nLillie\nNellie\nRoberta\nAlma\nBessie\nBeverly\nEunice\nIda\nJoyce\nMamie\nMiriam\nAdele\nErnestine\nEstelle\nFannie\nNaomi\nPeggy\nRosa\nTheresa\nAlberta\nClaire\nClara\nDaisy\nMyrtle\nRegina\nTeresa\nVera\nEloise\nErma\nEugenia\nGenevieve\nHarriet\nHattie\nHilda\nJeanette\nMadeline\nMuriel\nRebecca\nWillie\nWinifred\nYvonne\nAmelia\nAnita\nBettie\nCarol\nEleanora\nEtta\nGoldie\nIrma\nIsabelle\nLeona\nLottie\nRosie\nSadie\nWilhelmina\nMary\nDorothy\nMargaret\nHelen\nBetty\nElizabeth\nDoris\nRuth\nCatherine\nFrances\nJean\nEvelyn\nAlice\nLouise\nMildred\nPatricia\nVirginia\nBarbara\nMarie\nFlorence\nGloria\nAnna\nThelma\nJune\nJane\nMarion\nLillian\nNancy\nShirley\nLois\nEleanor\nBernice\nGladys\nMarjorie\nAudrey\nKatherine\nAnn\nJuanita\nJosephine\nNorma\nMarguerite\nAnne\nEthel\nEdith\nEsther\nMartha\nEdna\nRose\nLucille\nPauline\nVivian\nAnnie\nElaine\nHarriet\nJulia\nMarian\nPearl\nJacqueline\nPhyllis\nCharlotte\nGertrude\nJeanne\nLorraine\nPeggy\nYvonne\nBeatrice\nBertha\nElsie\nIda\nTheresa\nConstance\nEllen\nEstelle\nHazel\nJanet\nRuby\nAgnes\nEmma\nRita\nSylvia\nViola\nAlma\nJoan\nKathleen\nKathryn\nLaura\nSarah\nEmily\nGrace\nIrene\nLoretta\nMabel\nMiriam\nRosemary\nErma\nGeraldine\nLillie\nRebecca\nAnita\nBessie\nBlanche\nEloise\nHattie\nHilda\nJoyce\nLaverne\nMae\nAda\nCarol\nClaire\nEileen\nGwendolyn\nMadeline\nVera\nWillie\nAlberta\nCarolyn\nCleo\nDolores\nDorothea\nElla\nFannie\nGeneva\nJeanette\nMyrtle\nNaomi\nRoberta\nRosetta\nAnnette\nAntoinette\nCecelia\nClara\nErnestine\nEugenia\nEunice\nEva\nGeorgia\nLena\nMaxine\nNellie\nViolet\nBeverly\nCornelia\nDelores\nJennie\nJessie\nMagnolia\nMamie\nNora\nOdessa\nPriscilla\nSophie\nSusie\nTeresa\nWinifred\nMary\nMargaret\nDorothy\nHelen\nBetty\nElizabeth\nRuth\nDoris\nJean\nGloria\nFrances\nEvelyn\nCatherine\nThelma\nAlice\nPatricia\nVirginia\nMarie\nMildred\nBarbara\nShirley\nAnna\nLouise\nFlorence\nRose\nMarjorie\nJune\nEleanor\nJane\nLillian\nBernice\nEthel\nEdith\nMartha\nAnn\nNancy\nGrace\nJuanita\nMarion\nJeanne\nKatherine\nLois\nAnne\nAudrey\nGertrude\nLorraine\nNorma\nEdna\nEsther\nMarian\nJulia\nGladys\nPauline\nVivian\nBeatrice\nElaine\nEllen\nClara\nElsie\nRosemary\nCharlotte\nPearl\nConstance\nGeraldine\nLucille\nMae\nPhyllis\nSarah\nIda\nIrene\nJacqueline\nJosephine\nJoyce\nKathleen\nMabel\nMiriam\nPeggy\nRita\nAgnes\nAnnie\nEloise\nSylvia\nTheresa\nCarolyn\nMarguerite\nRuby\nBertha\nDolores\nElla\nHilda\nInez\nJoan\nKathryn\nLeola\nLillie\nPriscilla\nYvonne\nBeverly\nChristine\nDelores\nJanet\nLaura\nMuriel\nRegina\nRoberta\nSara\nTeresa\nViolet\nAlma\nBessie\nCarol\nCaroline\nEileen\nEmily\nGoldie\nHarriet\nHazel\nJeannette\nRosa\nViola\nBlanche\nCora\nErma\nErnestine\nEva\nGenevieve\nMadeline\nMargie\nVera\nAmelia\nAnita\nArlene\nBettie\nCarrie\nClarice\nCornelia\nGwendolyn\nHattie\nIrma\nLeona\nLoretta\nLula\nMamie\nMattie\nMinnie\nNaomi\nNellie\nRosemarie\nTherese\nVeronica\nMary\nDorothy\nBetty\nMargaret\nHelen\nDoris\nElizabeth\nRuth\nBarbara\nJean\nGloria\nShirley\nFrances\nAlice\nCatherine\nPatricia\nMildred\nEvelyn\nLouise\nVirginia\nAnna\nJane\nGrace\nMarie\nThelma\nVivian\nRose\nFlorence\nJeanne\nMarjorie\nMartha\nMarion\nNancy\nLillian\nLois\nGladys\nIrene\nPhyllis\nAudrey\nDolores\nLucille\nMarian\nAnn\nJosephine\nJuanita\nPauline\nAnne\nElaine\nJune\nBernice\nCharlotte\nGertrude\nJoan\nEleanor\nEthel\nAgnes\nBeatrice\nEdith\nEllen\nJulia\nEsther\nLorraine\nKathleen\nLaura\nNorma\nAnnie\nConstance\nEdna\nKatherine\nPearl\nRita\nMarguerite\nViola\nElsie\nHarriet\nJoyce\nBertha\nClara\nKathryn\nMarilyn\nAlma\nBeverly\nGeraldine\nRosemary\nYvonne\nBessie\nChristine\nEmma\nJacqueline\nMuriel\nRuby\nTheresa\nBlanche\nDelores\nNellie\nSarah\nCarolyn\nEstelle\nJanet\nLucy\nMabel\nPeggy\nClaire\nDaisy\nEileen\nErnestine\nGwendolyn\nHazel\nLoretta\nMae\nMyrtle\nNaomi\nTeresa\nVera\nAlberta\nAnita\nArline\nEloise\nEunice\nEva\nGeorgia\nJennie\nLeona\nOlive\nBette\nCecilia\nErma\nFannie\nGoldie\nIda\nIna\nJanice\nJoanne\nLillie\nLydia\nMiriam\nNatalie\nRebecca\nSara\nSusan\nSusie\nMary\nDorothy\nBetty\nMargaret\nHelen\nBarbara\nJean\nElizabeth\nDoris\nPatricia\nRuth\nFrances\nShirley\nVirginia\nGloria\nMildred\nCatherine\nAlice\nMarie\nEvelyn\nMarjorie\nThelma\nAnna\nAudrey\nJeanne\nLillian\nLois\nLouise\nRose\nLorraine\nAnne\nGladys\nVivian\nJune\nNancy\nEthel\nEdith\nEleanor\nDolores\nJane\nBernice\nJoan\nPhyllis\nAnn\nFlorence\nKatherine\nMarion\nBeverly\nElaine\nEdna\nGertrude\nGrace\nJoyce\nPauline\nAgnes\nJosephine\nMarian\nNorma\nRosemary\nRuby\nSarah\nAnnie\nEsther\nJuanita\nKathryn\nLucille\nSylvia\nBeatrice\nElsie\nJacqueline\nCarolyn\nCharlotte\nConstance\nEllen\nGeraldine\nIrene\nMartha\nRita\nHilda\nJanet\nLaura\nPeggy\nChristine\nEmma\nEstelle\nJulia\nMarguerite\nYvonne\nAlma\nMabel\nTheresa\nViola\nCarrie\nEmily\nHarriet\nMyrtle\nPearl\nAlberta\nClara\nDelores\nGwendolyn\nIrma\nLoretta\nMiriam\nNaomi\nNellie\nRoberta\nVera\nBertha\nBessie\nGenevieve\nHazel\nLena\nCarol\nCora\nEileen\nEloise\nErnestine\nIda\nKathleen\nMamie\nMargie\nMaria\nMaxine\nOlive\nSally\nAngela\nAngelina\nAnita\nBlanche\nCaroline\nCecelia\nClaudia\nCornelia\nDeloris\nErma\nEugenia\nHelena\nJessie\nJoanne\nLillie\nMadeline\nMarilyn\nMattie\nNora\nOlivia\nRebecca\nRosa\nSara\nMary\nBetty\nMargaret\nDorothy\nDoris\nHelen\nJean\nBarbara\nPatricia\nElizabeth\nShirley\nFrances\nRuth\nGloria\nEvelyn\nCatherine\nNancy\nAlice\nJoan\nVirginia\nMarie\nThelma\nJune\nLouise\nDolores\nMildred\nMarion\nAudrey\nRose\nAnne\nLillian\nPhyllis\nBernice\nEleanor\nMarjorie\nAnn\nElaine\nGrace\nJeanne\nAnna\nLois\nVivian\nEdna\nKatherine\nMarian\nMartha\nBeverly\nDelores\nLorraine\nEthel\nFlorence\nGladys\nJane\nJoyce\nJuanita\nEdith\nNorma\nPeggy\nTheresa\nAgnes\nAnnie\nEllen\nJacqueline\nRita\nGeraldine\nJosephine\nGertrude\nIrene\nKathleen\nLucille\nCharlotte\nConstance\nRosa\nSarah\nAlberta\nAlma\nEsther\nHazel\nKathryn\nLaura\nCarolyn\nChristine\nElsie\nJanet\nSylvia\nBlanche\nPauline\nRamona\nViola\nEmma\nGwendolyn\nMarguerite\nYvonne\nBeatrice\nGeorgia\nRegina\nRosemary\nSally\nVera\nAda\nCarol\nClara\nEstelle\nHattie\nHilda\nJanice\nJeanette\nJoanne\nNaomi\nNellie\nPearl\nRoberta\nBertha\nBessie\nCaroline\nEileen\nElla\nErnestine\nEva\nFannie\nHarriet\nIda\nJacquelyn\nJulia\nLena\nLillie\nLoretta\nMabel\nMadeline\nMaxine\nMuriel\nRuby\nWilma\nAmelia\nArlene\nAurelia\nClaire\nDiana\nEmily\nJeannette\nLaverne\nMae\nMaria\nMarilyn\nSue\nSusie\nSuzanne\nTeresa\nMary\nBetty\nMargaret\nDorothy\nDoris\nBarbara\nHelen\nPatricia\nElizabeth\nJean\nShirley\nJoan\nDolores\nFrances\nNancy\nRuth\nVirginia\nGloria\nEvelyn\nAnn\nMarie\nAlice\nCatherine\nMarjorie\nThelma\nJane\nLillian\nDelores\nLouise\nMildred\nPeggy\nAnne\nJeanne\nJoyce\nMarion\nAnna\nAudrey\nJuanita\nJune\nFlorence\nGladys\nLois\nBernice\nEleanor\nGeraldine\nEdith\nKatherine\nRose\nJulia\nCharlotte\nLorraine\nNorma\nSylvia\nJoanne\nConstance\nJacqueline\nMartha\nBeverly\nGrace\nAnnie\nCarol\nEthel\nJanet\nPhyllis\nRita\nEdna\nJosephine\nLucille\nMarian\nRosemary\nRuby\nElaine\nEmily\nPauline\nRegina\nSarah\nAgnes\nEileen\nEllen\nEmma\nGertrude\nIrene\nTheresa\nAlma\nChristine\nErma\nViola\nVivian\nBertha\nElsie\nEsther\nHazel\nMarguerite\nRoberta\nYvonne\nCarolyn\nEloise\nPatsy\nBessie\nClaire\nIda\nJacquelyn\nWinifred\nBeatrice\nClara\nElla\nEstelle\nKathleen\nLaura\nSally\nSue\nCleo\nColleen\nDorothea\nGeorgia\nHarriet\nHelene\nHilda\nJoann\nKatharine\nKathryn\nMarilyn\nRosa\nWillie\nWilma\nAlberta\nAngela\nAnita\nAnnette\nBlanche\nCarrie\nGenevieve\nGwendolyn\nJeannette\nLoretta\nMadeline\nMaria\nMinnie\nNaomi\nOdessa\nOlga\nRebecca\nRomaine\nRosalie\nRosetta\nTeresa\nMary\nBetty\nBarbara\nDorothy\nMargaret\nPatricia\nDoris\nHelen\nElizabeth\nJean\nJoan\nDolores\nNancy\nShirley\nCatherine\nFrances\nGloria\nRuth\nVirginia\nLouise\nEvelyn\nAnne\nAlice\nLois\nMildred\nRose\nDelores\nMarie\nJune\nAudrey\nAnn\nJacqueline\nLillian\nBernice\nJuanita\nAnna\nFlorence\nJoyce\nMarion\nThelma\nJeanne\nNorma\nPeggy\nPhyllis\nSarah\nGrace\nJane\nMarilyn\nCarolyn\nEleanor\nMarjorie\nVivian\nEdna\nEthel\nJulia\nJoanne\nMartha\nCharlotte\nLorraine\nTheresa\nAnnie\nGertrude\nJosephine\nEdith\nEllen\nEsther\nSylvia\nConstance\nElaine\nEmma\nGladys\nIrene\nKatherine\nYvonne\nBeverly\nAnita\nCarol\nElsie\nGeraldine\nKathryn\nMarian\nRita\nGwendolyn\nHazel\nPauline\nSally\nAgnes\nKathleen\nRosa\nRosemary\nSue\nAlma\nBeatrice\nCarrie\nChristine\nGenevieve\nMabel\nMarguerite\nRegina\nElla\nHarriet\nJanet\nJeanette\nLucille\nMyrtle\nWinifred\nAntoinette\nColleen\nEloise\nErma\nErnestine\nHilda\nJacquelyn\nJanice\nKatharine\nMamie\nMarcia\nMaxine\nRoberta\nSuzanne\nTeresa\nCecelia\nDaisy\nGeorgia\nHenrietta\nIris\nJennie\nJudith\nLinda\nNaomi\nPatsy\nPearl\nPriscilla\nRosetta\nRuby\nMary\nBarbara\nBetty\nMargaret\nPatricia\nDorothy\nJoan\nDoris\nJean\nHelen\nShirley\nElizabeth\nNancy\nDolores\nDelores\nFrances\nGloria\nAnn\nJoyce\nRuth\nAlice\nCatherine\nJane\nEvelyn\nLorraine\nMildred\nNorma\nGrace\nLois\nMarie\nPeggy\nJoanne\nThelma\nVirginia\nAnne\nJune\nJacqueline\nJanet\nConstance\nEdith\nLouise\nRose\nAudrey\nJuanita\nFlorence\nJeanne\nMartha\nPhyllis\nAnna\nMarjorie\nEthel\nGeraldine\nLillian\nBeverly\nEleanor\nMarion\nCarol\nCharlotte\nSylvia\nEllen\nGladys\nJosephine\nKatherine\nMarilyn\nRita\nEsther\nHarriet\nKathryn\nSarah\nTheresa\nVivian\nAnnie\nBeatrice\nBertha\nEdna\nMarguerite\nRuby\nBernice\nClara\nElaine\nAgnes\nChristine\nMarian\nPauline\nElsie\nJulia\nPatsy\nRegina\nIrene\nKathleen\nLoretta\nLucille\nPearl\nRoberta\nSally\nYvonne\nAnita\nCarolyn\nCarrie\nCynthia\nErnestine\nHazel\nJacquelyn\nNellie\nSuzanne\nAlma\nArlene\nElla\nEmma\nGeorgia\nJanice\nLaura\nLucy\nMyrtle\nSheila\nVelma\nAngela\nEileen\nGertrude\nIrma\nIsabelle\nJudith\nLenora\nMarcia\nNina\nRosemary\nViola\nAda\nBettie\nConnie\nCorrine\nEloise\nEmily\nGwendolyn\nIna\nJeanette\nMaria\nMarlene\nMaxine\nNaomi\nNatalie\nPriscilla\nRosa\nSadie\nTeresa\nVera\nWinifred\nMary\nBarbara\nPatricia\nJean\nJoan\nMargaret\nDorothy\nShirley\nBetty\nDoris\nElizabeth\nHelen\nNancy\nDelores\nGloria\nFrances\nRuth\nEvelyn\nJoyce\nPeggy\nDolores\nVirginia\nAnn\nAlice\nJane\nJanet\nAudrey\nLois\nRose\nMildred\nAnna\nPhyllis\nBeverly\nJeanne\nJuanita\nLorraine\nMarie\nEleanor\nJacqueline\nLillian\nCatherine\nMarjorie\nNorma\nSarah\nAnne\nCharlotte\nFlorence\nGrace\nJosephine\nJune\nMartha\nCarolyn\nEthel\nJoanne\nVivian\nBernice\nElaine\nGeraldine\nMarilyn\nPauline\nThelma\nConstance\nGladys\nLouise\nEdith\nSylvia\nJulia\nRita\nSally\nTheresa\nAnnie\nEllen\nElsie\nIrene\nKatherine\nMarian\nMarion\nAgnes\nBeatrice\nEmma\nLucille\nMargie\nRoberta\nRuby\nIda\nJanice\nCarol\nCora\nEstelle\nEsther\nGertrude\nKathleen\nLaura\nNaomi\nRegina\nBertha\nEdna\nJoann\nJudith\nLoretta\nMarguerite\nPat\nPatsy\nRosa\nSandra\nYvonne\nAlberta\nAnita\nClara\nPearl\nDiane\nGeorgia\nJessie\nMiriam\nRosemary\nAlicia\nBessie\nCarole\nCynthia\nDiana\nEileen\nEmily\nGeneva\nHelene\nLucy\nMadeline\nMae\nRosemarie\nSue\nWillie\nAlma\nAnnette\nBettie\nDonna\nElla\nEunice\nFaye\nGenevieve\nHarriet\nHazel\nHilda\nIna\nJacquelyn\nJeanette\nKathryn\nMarcia\nMarianne\nOlga\nRachel\nTeresa\nVera\nViola\nMary\nBarbara\nPatricia\nBetty\nJoan\nJean\nMargaret\nDorothy\nShirley\nHelen\nElizabeth\nDoris\nNancy\nFrances\nRuth\nDelores\nGloria\nAnn\nAnne\nJoyce\nVirginia\nJanet\nAlice\nLois\nMarie\nCarol\nCarolyn\nJune\nConstance\nEvelyn\nMartha\nSylvia\nAnna\nMildred\nDolores\nNorma\nRose\nFlorence\nCatherine\nMarjorie\nEllen\nPeggy\nPhyllis\nAudrey\nEleanor\nJacqueline\nJuanita\nRita\nGladys\nJane\nJoanne\nLoretta\nLouise\nThelma\nLillian\nLorraine\nMarion\nBernice\nEdith\nEdna\nGeraldine\nGrace\nYvonne\nCharlotte\nKatherine\nSarah\nTheresa\nChristine\nElaine\nMarian\nMarlene\nHazel\nJeanne\nSally\nBeverly\nAlma\nArlene\nDiane\nEsther\nEthel\nJeanette\nJosephine\nKathryn\nRuby\nAgnes\nCarole\nJanice\nMarilyn\nRegina\nRoberta\nVivian\nAnnie\nGertrude\nJulia\nKathleen\nMarguerite\nPearl\nSara\nWilma\nCora\nGwendolyn\nJeannette\nNaomi\nPauline\nViola\nAnita\nAnnette\nBetsy\nClara\nElinor\nElla\nEmma\nHarriet\nJo\nJoann\nLucille\nMargie\nMaureen\nMyra\nSuzanne\nAda\nGeorgia\nHilda\nKay\nMuriel\nPat\nSusan\nAlberta\nBeatrice\nBette\nConnie\nDeloris\nElsie\nEmily\nErnestine\nEunice\nFannie\nGeneva\nIda\nIrene\nIris\nJudith\nLillie\nLucy\nMabel\nMarcia\nMaxine\nMiriam\nRosa\nRosemary\nRosetta\nSue\nVera\nMary\nBarbara\nShirley\nPatricia\nJoan\nBetty\nDorothy\nMargaret\nDoris\nJean\nNancy\nElizabeth\nHelen\nDelores\nAnn\nGloria\nDolores\nFrances\nCatherine\nRuth\nAlice\nEvelyn\nNorma\nJoyce\nMildred\nAudrey\nMartha\nPeggy\nVivian\nJanet\nLouise\nMarie\nCarol\nMarjorie\nJoanne\nGrace\nPhyllis\nBeverly\nVirginia\nElaine\nEllen\nJane\nJuanita\nCarolyn\nThelma\nAnne\nConstance\nEleanor\nMarion\nLois\nSylvia\nYvonne\nEdith\nGeraldine\nJune\nRose\nCharlotte\nEileen\nMarlene\nKatherine\nRita\nRoberta\nEdna\nEthel\nGladys\nIrene\nLucille\nBernice\nDiane\nJanice\nJosephine\nLorraine\nElsie\nFlorence\nJacqueline\nRuby\nAgnes\nAnna\nAnnie\nJeanne\nJulia\nTheresa\nCarole\nLillian\nPauline\nSandra\nHazel\nKathleen\nSally\nSuzanne\nAnita\nBeatrice\nGertrude\nJudith\nMarilyn\nSara\nGail\nSusan\nDonna\nEmily\nEmma\nErnestine\nEsther\nEunice\nHarriet\nIda\nJeannette\nLoretta\nMarian\nRosemary\nAnnette\nBillie\nDeloris\nLaura\nMae\nNaomi\nNina\nPat\nPatsy\nPearl\nSarah\nBetsy\nClara\nCynthia\nEarline\nEloise\nEva\nInez\nJo\nJudy\nLaverne\nLeona\nLillie\nMargie\nMarguerite\nMaria\nMaxine\nPaula\nSheila\nVera\nAdrienne\nAlma\nBlanche\nCarrie\nCecelia\nCelestine\nDaisy\nGwendolyn\nHilda\nJessie\nKathryn\nKay\nMarcia\nMaureen\nMinnie\nMiriam\nNellie\nRegina\nRosa\nRosie\nViola\nViolet\nWanda\nWillie\nWilma\nMary\nBarbara\nShirley\nPatricia\nJoan\nBetty\nDorothy\nMargaret\nNancy\nJean\nDoris\nElizabeth\nHelen\nDelores\nAnn\nJanet\nJoyce\nFrances\nRuth\nGloria\nDolores\nEvelyn\nSylvia\nVirginia\nCarolyn\nAnne\nCarol\nPhyllis\nAlice\nMildred\nJune\nMarie\nMartha\nJuanita\nCatherine\nConstance\nJane\nGeraldine\nJacqueline\nJoanne\nAudrey\nBeverly\nEleanor\nRose\nYvonne\nLois\nLouise\nNorma\nJudith\nMarjorie\nSally\nElaine\nElsie\nFlorence\nGrace\nSandra\nEllen\nLorraine\nMarion\nPeggy\nRoberta\nAnna\nEthel\nVivian\nCharlotte\nEdna\nRita\nSusan\nLillian\nMarlene\nBeatrice\nKathleen\nMarilyn\nThelma\nBernice\nDiane\nGwendolyn\nJulia\nKatherine\nAgnes\nCarole\nJosephine\nLoretta\nLucille\nSuzanne\nTheresa\nIda\nIrene\nNaomi\nSarah\nSheila\nArlene\nChristine\nEdith\nEileen\nEmma\nHarriet\nJeanette\nMarcia\nRosemary\nAlma\nAnnie\nBessie\nCynthia\nDiana\nGail\nGladys\nJacquelyn\nLaura\nMarguerite\nPaula\nClara\nClaudette\nGeorgia\nJanice\nJo\nJoann\nKathryn\nLaverne\nMarian\nMaureen\nPatsy\nPauline\nRosetta\nAnita\nAnnette\nBertha\nCornelia\nHazel\nMarianne\nVera\nWillie\nCaroline\nClaire\nConnie\nDeloris\nErnestine\nGeneva\nJeanne\nKay\nWanda\nAlberta\nBlanche\nClaudia\nEdwina\nEloise\nEmily\nEsther\nEva\nFaye\nGayle\nGertrude\nJoy\nJudy\nKaren\nLenora\nMaxine\nPat\nRuby\nSue\nTeresa\nMary\nBarbara\nShirley\nPatricia\nJoan\nNancy\nBetty\nMargaret\nJean\nHelen\nDorothy\nElizabeth\nDoris\nAnn\nDelores\nJoyce\nCarol\nSylvia\nFrances\nGloria\nCatherine\nRuth\nBeverly\nEvelyn\nAnne\nCarolyn\nMildred\nYvonne\nJanet\nAlice\nJane\nDolores\nNorma\nVirginia\nJacqueline\nJoanne\nMarie\nPeggy\nJuanita\nJune\nMartha\nGeraldine\nSandra\nEleanor\nFlorence\nMarjorie\nCharlotte\nRoberta\nRose\nGladys\nLouise\nPhyllis\nJanice\nEdith\nJudith\nLillian\nAnna\nLorraine\nMarilyn\nAudrey\nConstance\nElaine\nLois\nDiane\nJeanne\nKatherine\nEllen\nSally\nThelma\nEdna\nKay\nMarlene\nPearl\nVivian\nJo\nJulia\nMarian\nTheresa\nAnnie\nCarole\nChristine\nElsie\nGail\nGrace\nMarion\nAlberta\nGertrude\nHarriet\nIrene\nJosephine\nAnnette\nJoann\nJudy\nLoretta\nMaxine\nPatsy\nPauline\nSusan\nSuzanne\nBeatrice\nEileen\nEthel\nKathleen\nLinda\nSarah\nAgnes\nArlene\nCynthia\nDonna\nErnestine\nKathryn\nLaverne\nLucille\nPat\nBernice\nClara\nClaudia\nEsther\nGeorgia\nHazel\nIda\nJeanette\nMargie\nRita\nSue\nAngela\nAnita\nCarrie\nGwendolyn\nJeannette\nJessie\nKatharine\nLaura\nMarcia\nNaomi\nRosa\nRosemary\nSara\nSheila\nBette\nCora\nDeloris\nDiana\nEmma\nHilda\nIris\nIrma\nMarguerite\nRachel\nWanda\nWillie\nAlma\nBonnie\nCecelia\nCharlene\nCorrine\nDianne\nDixie\nElla\nGeneva\nJill\nLeona\nLillie\nMarva\nMonica\nMyrna\nRegina\nRosemarie\nRosetta\nRuby\nSharon\nValerie\nViolet\nWilma\nMary\nBarbara\nPatricia\nShirley\nJoan\nNancy\nJean\nMargaret\nBetty\nElizabeth\nHelen\nDorothy\nCarol\nDoris\nJoyce\nAnn\nFrances\nVirginia\nDelores\nGloria\nMarie\nRuth\nYvonne\nSandra\nJanet\nJacqueline\nJudith\nCarolyn\nEvelyn\nMildred\nSylvia\nEleanor\nJune\nMartha\nPeggy\nAnne\nCatherine\nBeverly\nJane\nFlorence\nJuanita\nElaine\nAlice\nLois\nAnna\nDolores\nMarjorie\nConstance\nLouise\nPhyllis\nGrace\nDiane\nJoanne\nLinda\nRose\nEdith\nThelma\nCarole\nCharlotte\nEllen\nGeraldine\nGladys\nKatherine\nRoberta\nAudrey\nDonna\nTheresa\nAnita\nEthel\nJanice\nMarion\nNorma\nKay\nLorraine\nMarilyn\nSally\nVivian\nGail\nKathleen\nIrene\nJeanette\nJeanne\nMarlene\nSheila\nArlene\nJoann\nMarcia\nSarah\nMargie\nPaula\nSusan\nAnnie\nChristine\nEileen\nAgnes\nElsie\nEmily\nHazel\nLillian\nLoretta\nLucy\nMarian\nSue\nAnnette\nBernice\nEva\nHarriet\nIda\nJudy\nLaura\nLaverne\nMarsha\nPat\nPatsy\nRita\nRuby\nBeatrice\nEdna\nElla\nEsther\nGwendolyn\nJosephine\nMarguerite\nMarianne\nRebecca\nRosemary\nAlberta\nClaudette\nClaudia\nIrma\nMaureen\nSuzanne\nAntoinette\nBertha\nBessie\nBette\nConnie\nDeloris\nJessie\nKathryn\nLillie\nMiriam\nPauline\nRegina\nAlma\nBlanche\nClara\nCynthia\nEmma\nErnestine\nJo\nJoy\nLucille\nMaria\nNaomi\nNatalie\nRosetta\nViola\nWillie\nAngela\nBetsy\nBobbie\nBonnie\nCleo\nDeanna\nDeborah\nDiana\nJacquelyn\nJeannette\nJulia\nLynne\nMarva\nNina\nPearl\nRachel\nRhoda\nRosa\nRosalee\nSara\nSharon\nTeresa\nToby\nMary\nBarbara\nPatricia\nMargaret\nJoan\nShirley\nNancy\nJean\nDorothy\nCarol\nBetty\nElizabeth\nJoyce\nHelen\nSandra\nJanet\nDoris\nDelores\nFrances\nJudith\nAnn\nBeverly\nGloria\nCarolyn\nCatherine\nAnne\nMarie\nRuth\nYvonne\nPhyllis\nSylvia\nAlice\nSusan\nVirginia\nCarole\nJoanne\nGeraldine\nJane\nJanice\nJacqueline\nMartha\nCharlotte\nMildred\nLinda\nEleanor\nEvelyn\nSarah\nBernice\nJune\nRoberta\nPeggy\nRita\nDiane\nDolores\nDonna\nMarjorie\nConstance\nKathleen\nMarlene\nRose\nElaine\nEllen\nJeanette\nPauline\nFlorence\nIrene\nKatherine\nGail\nJuanita\nJudy\nNorma\nSally\nAnita\nArlene\nAudrey\nChristine\nLouise\nVivian\nElsie\nGladys\nGrace\nHarriet\nJulia\nKathryn\nMarcia\nMarian\nMarion\nSuzanne\nJosephine\nLillian\nRosalie\nTheresa\nEsther\nLaura\nMarguerite\nMarilyn\nMaxine\nThelma\nEileen\nEthel\nKaren\nLois\nEdith\nGertrude\nLoretta\nPatsy\nSue\nAnnie\nBeatrice\nBrenda\nEdna\nGwendolyn\nLorraine\nRebecca\nAgnes\nClara\nCynthia\nJacquelyn\nJoann\nKay\nRosemary\nSharon\nClaudette\nConnie\nEmily\nHazel\nIda\nJeannette\nLucille\nLucy\nLynne\nPaula\nSheila\nAnna\nAnnette\nCora\nDiana\nEloise\nJeanne\nJo\nMiriam\nRegina\nRuby\nSara\nSondra\nBertha\nBettie\nCecelia\nClarice\nDeloris\nHenrietta\nMargie\nMaria\nMarsha\nRosa\nSonja\nWillie\nAmy\nAngela\nAntoinette\nBette\nDeborah\nErnestine\nEstelle\nLaverne\nMaureen\nPearl\nPriscilla\nViola\nBlanche\nCarrie\nCornelia\nDianne\nElinor\nEmma\nGeneva\nJessie\nKatie\nLynn\nMae\nMuriel\nNadine\nRosetta\nVera\nWilma\nMary\nBarbara\nPatricia\nShirley\nJoan\nMargaret\nNancy\nCarol\nDorothy\nElizabeth\nJoyce\nBetty\nJudith\nHelen\nFrances\nAnn\nJean\nSandra\nGloria\nRuth\nDoris\nDelores\nCatherine\nCarolyn\nJanet\nLinda\nVirginia\nAlice\nCarole\nAnne\nGeraldine\nPhyllis\nSusan\nDiane\nJane\nElaine\nMarie\nYvonne\nBeverly\nJoanne\nKathleen\nMartha\nJacqueline\nNorma\nConstance\nMildred\nBrenda\nEvelyn\nSylvia\nDonna\nAnna\nEllen\nPeggy\nJanice\nKatherine\nEleanor\nLois\nMarilyn\nGail\nJuanita\nMarjorie\nRose\nJudy\nCharlotte\nJeanne\nAnita\nEdith\nLouise\nAudrey\nLillian\nSally\nDolores\nElsie\nMarian\nSarah\nHarriet\nJune\nBernice\nChristine\nCynthia\nLoretta\nMarion\nRoberta\nSharon\nSuzanne\nTheresa\nAnnette\nBeatrice\nJeanette\nJulia\nKathryn\nFlorence\nSheila\nLorraine\nRuby\nThelma\nArlene\nLynn\nMarcia\nPaula\nPauline\nRita\nSara\nConnie\nEmily\nGladys\nIrene\nJoann\nLaura\nVivian\nEthel\nJosephine\nMaureen\nMaxine\nRosemary\nAgnes\nAlma\nAntoinette\nBette\nEmma\nEsther\nGrace\nGwendolyn\nIda\nMarlene\nOlivia\nAlberta\nAnnie\nBertha\nDiana\nDianne\nEileen\nEunice\nJeannette\nJo\nKaren\nKay\nLaverne\nLucy\nMarguerite\nMiriam\nPatsy\nAndrea\nClara\nDeanna\nEdna\nHattie\nLynne\nMarsha\nPearl\nRachel\nClaudia\nElla\nGertrude\nJoanna\nJoy\nMadeline\nMyrna\nRosalie\nVeronica\nWilma\nBonnie\nCarmen\nCaroline\nCecelia\nCecilia\nDeloris\nErnestine\nGeorgia\nHazel\nLillie\nLucille\nMable\nMaria\nPenelope\nRebecca\nSondra\nSue\nViolet\nAmelia\nBetsy\nBlanche\nCamille\nDaisy\nDana\nDelois\nEva\nGretchen\nHelene\nHilda\nJacquelyn\nJulie\nMargo\nMattie\nMerle\nMuriel\nRosemarie\nRosetta\nViola\nWilliam\nWillie\nMary\nBarbara\nPatricia\nJoan\nMargaret\nNancy\nJoyce\nJudith\nCarol\nBetty\nSandra\nShirley\nElizabeth\nLinda\nJean\nDorothy\nGloria\nAnn\nHelen\nDoris\nCarolyn\nFrances\nJanet\nSusan\nVirginia\nRuth\nAlice\nMartha\nBeverly\nBonnie\nBrenda\nDelores\nDonna\nPhyllis\nYvonne\nEllen\nJane\nCarole\nCatherine\nJanice\nElaine\nMarie\nAnne\nDiane\nJoanne\nKathleen\nGeraldine\nJulia\nEvelyn\nMildred\nCharlotte\nJudy\nJacqueline\nSharon\nLouise\nRose\nEleanor\nGail\nSylvia\nJune\nMarilyn\nMarjorie\nKaren\nKatherine\nSuzanne\nMarion\nAudrey\nFlorence\nSara\nCynthia\nLois\nRoberta\nChristine\nConstance\nEthel\nKathryn\nPeggy\nJuanita\nNorma\nTheresa\nVivian\nDiana\nIrene\nKay\nDolores\nGrace\nJeanette\nRita\nSally\nSarah\nAnna\nArlene\nBernice\nJeanne\nJosephine\nMarcia\nMarian\nMarlene\nRosemary\nEdith\nJoann\nSheila\nJo\nLaverne\nRebecca\nThelma\nAnnette\nGladys\nLillian\nLoretta\nLucille\nAnnie\nEileen\nLaura\nPaula\nEsther\nMaxine\nPat\nLorraine\nMarsha\nBeatrice\nBlanche\nDeloris\nEdna\nGertrude\nGwendolyn\nHarriet\nMaureen\nPatsy\nSue\nAgnes\nAnita\nCornelia\nErnestine\nGeorgia\nJeannette\nLillie\nMaria\nPauline\nPriscilla\nRegina\nAda\nBertha\nCecelia\nCharlene\nClara\nEmily\nEunice\nJoy\nLeslie\nLynda\nMarguerite\nMaryann\nMuriel\nMyrna\nPearl\nRosalie\nRuby\nValerie\nVictoria\nAdrienne\nAlberta\nBette\nBettie\nCaroline\nConnie\nDora\nEva\nFrancine\nMargo\nNina\nBessie\nClaudia\nDaisy\nDeborah\nDianne\nElsie\nEmma\nEstelle\nGeneva\nJulie\nLynne\nMattie\nMiriam\nOlivia\nWanda\nWilma\nAlma\nAngela\nAntoinette\nCamille\nClaudette\nDeanna\nElla\nHazel\nIda\nIris\nJan\nJewel\nLena\nLucy\nLynn\nMabel\nMadeline\nMargie\nMarianne\nNaomi\nNatalie\nRamona\nStephanie\nTeresa\nVelma\nWilhelmina\nMary\nBarbara\nPatricia\nMargaret\nNancy\nJoan\nJudith\nSandra\nCarol\nCarolyn\nJoyce\nBetty\nLinda\nDorothy\nElizabeth\nShirley\nGloria\nSusan\nVirginia\nJean\nAnn\nRuth\nJanet\nHelen\nMartha\nAlice\nFrances\nDelores\nBeverly\nDiane\nDonna\nDoris\nCarole\nJoanne\nKathleen\nJacqueline\nYvonne\nPhyllis\nCatherine\nJudy\nMarie\nBrenda\nEvelyn\nJane\nJanice\nSharon\nBonnie\nLois\nAnne\nCharlotte\nElaine\nKaren\nEleanor\nPeggy\nNorma\nRose\nSylvia\nRoberta\nMildred\nEllen\nKatherine\nLouise\nSarah\nDolores\nGail\nMarilyn\nGeraldine\nJune\nLillian\nConstance\nDiana\nMarcia\nMarion\nRita\nJeanne\nSally\nAnna\nJuanita\nJulia\nLorraine\nVivian\nJoann\nMarjorie\nChristine\nSue\nTheresa\nAnita\nArlene\nSuzanne\nJeanette\nLaura\nMaureen\nPamela\nPaula\nBeatrice\nBernice\nCharlene\nEdith\nJo\nKathryn\nLoretta\nRebecca\nRosemary\nSheila\nThelma\nCynthia\nErnestine\nEthel\nGwendolyn\nPriscilla\nDeborah\nEsther\nFlorence\nJacquelyn\nKay\nSara\nAgnes\nAudrey\nClaudia\nDianne\nGrace\nJosephine\nLynda\nAnnie\nBetsy\nEdna\nIrene\nJeannette\nMarlene\nEileen\nEmily\nMarian\nMaxine\nRuby\nWanda\nAnnette\nGertrude\nJoy\nLaverne\nMaria\nMarsha\nMiriam\nNaomi\nValerie\nHarriet\nKatharine\nLucy\nPauline\nPearl\nVeronica\nBette\nCecelia\nCora\nElsie\nEmma\nIda\nPat\nPenny\nToni\nCarrie\nEunice\nFaye\nFrancine\nHilda\nLucille\nMuriel\nPenelope\nRosa\nRosalie\nSondra\nCaroline\nDeloris\nEstelle\nEva\nGladys\nHattie\nIrma\nJackie\nLana\nLynn\nLynne\nMaggie\nMaryann\nNadine\nOlivia\nPatsy\nRosalind\nSaundra\nVictoria\nWilma\nAlberta\nAlma\nAntoinette\nBertha\nBeth\nCarla\nCecilia\nConnie\nDarlene\nElinor\nGeorgia\nHarriette\nIris\nJoanna\nLela\nLillie\nMadeline\nMarguerite\nRhoda\nStephanie\nSusanne\nThomasine\nAndrea\nAngela\nBeverley\nCarroll\nClaire\nClarice\nDale\nDeanna\nElla\nGayle\nGlenda\nGretchen\nHazel\nHelena\nJessie\nKathy\nLenora\nLola\nMinnie\nMolly\nMyra\nMyrtle\nNellie\nPearline\nPolly\nRegina\nRoslyn\nViola\nMary\nBarbara\nPatricia\nMargaret\nCarol\nJoan\nNancy\nLinda\nSandra\nCarolyn\nJudith\nDorothy\nSusan\nElizabeth\nBetty\nShirley\nJoyce\nJean\nGloria\nFrances\nKathleen\nDiane\nJanet\nHelen\nAnn\nCatherine\nCarole\nDelores\nDonna\nVirginia\nSharon\nAnne\nKaren\nAlice\nJudy\nRuth\nMartha\nDoris\nPeggy\nKatherine\nBeverly\nJacqueline\nJane\nBonnie\nBrenda\nPhyllis\nMarie\nEllen\nEvelyn\nElaine\nMarilyn\nYvonne\nCharlotte\nDiana\nGail\nJanice\nMildred\nMarjorie\nSheila\nChristine\nFlorence\nGeraldine\nJoanne\nConstance\nDolores\nGrace\nLois\nLouise\nTheresa\nKathryn\nRose\nSally\nVivian\nLoretta\nPamela\nRita\nSylvia\nJoann\nJulia\nEileen\nJuanita\nJune\nMarian\nNorma\nRoberta\nMarcia\nSarah\nKay\nLillian\nJo\nLynn\nCynthia\nEleanor\nLeslie\nSuzanne\nAudrey\nAnita\nGwendolyn\nJeanne\nAnna\nAnnette\nRosemary\nHarriet\nMarion\nThelma\nVeronica\nArlene\nBernice\nBertha\nDianne\nEdith\nMarlene\nMarsha\nCaroline\nIrene\nLorraine\nMaureen\nPriscilla\nRebecca\nAnnie\nEmily\nGladys\nJeanette\nJosephine\nLynda\nPaula\nSue\nCharlene\nJoy\nSara\nCecelia\nClara\nEmma\nErnestine\nGeorgia\nJeannette\nLaverne\nLucille\nPat\nRegina\nAgnes\nBette\nEva\nMarianne\nPauline\nPenelope\nClaudia\nHazel\nLaura\nLynne\nStephanie\nVictoria\nBetsy\nDeloris\nDoretha\nEdna\nElla\nMargo\nMyrna\nValerie\nVera\nWanda\nWillie\nAlma\nDarlene\nElsie\nFrancine\nGertrude\nGlenda\nJacquelyn\nKatharine\nLillie\nMarguerite\nMaria\nPatsy\nRachel\nAlberta\nAngela\nBeatrice\nClaire\nClarice\nClaudette\nDeborah\nEsther\nEthel\nIda\nJulie\nKathy\nMaryann\nNina\nRosalind\nRuby\nAndrea\nAntoinette\nChristina\nIris\nJennifer\nJoanna\nLucy\nMichele\nNaomi\nOlivia\nPaulette\nSaundra\nSherry\nWilma\nColleen\nConnie\nCora\nEloise\nGracie\nHenrietta\nJohnnie\nLee\nLucinda\nMargie\nMargot\nPearl\nRosetta\nTeresa\nTerry\nBillie\nBlanche\nBobbie\nCarmen\nCarroll\nDora\nDorothea\nErma\nFaith\nJan\nKatrina\nLisa\nLydia\nMadeline\nMaxine\nMuriel\nMyra\nNatalie\nNora\nPortia\nRobin\nRochelle\nRosa\nRosalie\nRosemarie\nSallie\nTherese\nWendy\nWinifred\nMary\nBarbara\nPatricia\nLinda\nCarol\nNancy\nJudith\nSandra\nMargaret\nSusan\nCarolyn\nElizabeth\nJoan\nBetty\nJoyce\nSharon\nDorothy\nShirley\nDiane\nDonna\nKathleen\nJanet\nKaren\nAnn\nVirginia\nHelen\nFrances\nGloria\nJean\nRuth\nMartha\nBeverly\nCarole\nAnne\nCatherine\nKatherine\nJacqueline\nJudy\nJane\nBrenda\nPamela\nAlice\nBonnie\nGail\nJanice\nEllen\nPhyllis\nElaine\nDiana\nCharlotte\nEvelyn\nLouise\nMarie\nRita\nSylvia\nDelores\nDoris\nMarilyn\nPeggy\nJoanne\nYvonne\nEileen\nSheila\nLillian\nMarjorie\nSarah\nSuzanne\nChristine\nSally\nRose\nLois\nMarcia\nConstance\nCynthia\nGeraldine\nJulia\nKathryn\nRoberta\nTheresa\nJoann\nGwendolyn\nLoretta\nJo\nNorma\nVeronica\nDianne\nLynn\nJeanne\nMaureen\nPaula\nAnita\nAnna\nMarian\nAudrey\nDolores\nGrace\nJuanita\nRebecca\nEleanor\nLeslie\nMildred\nRosemary\nHarriet\nLaura\nLorraine\nCharlene\nClaudia\nJune\nMarsha\nSue\nVictoria\nConnie\nEdith\nFlorence\nMarguerite\nMarion\nVivian\nArlene\nBeatrice\nDeborah\nJeannette\nLucille\nSherry\nThelma\nBette\nCecelia\nDarlene\nEsther\nGladys\nJeanette\nJulie\nLynne\nMaria\nMaxine\nRuby\nSara\nCaroline\nEmily\nGeorgia\nIrene\nJosephine\nKay\nTerry\nAgnes\nAnnie\nCecilia\nCheryl\nEmma\nLynda\nMichelle\nPatsy\nPriscilla\nRegina\nStephanie\nTeresa\nValerie\nCassandra\nDale\nEdna\nElla\nErnestine\nKathy\nLaverne\nMarianne\nMichele\nMuriel\nPauline\nPenelope\nVera\nWanda\nAnnette\nAntoinette\nDeanna\nEthel\nHazel\nIris\nLucy\nMarlene\nMyra\nNina\nPaulette\nSharron\nViola\nBonita\nCarmen\nJoy\nLee\nMargie\nNatalie\nPat\nPearl\nPenny\nWendy\nAdrienne\nAndrea\nBeth\nBillie\nCharles\nChristina\nColleen\nGertrude\nIda\nJacquelyn\nLydia\nMadeline\nMeredith\nNaomi\nOlivia\nRobin\nRosa\nRosalie\nToni\nWilma\nAda\nClara\nElinor\nEva\nGlenda\nHenrietta\nJoanna\nJohnnie\nMargot\nMaryann\nMiriam\nRenee\nSandy\nWinifred\nAngela\nBernice\nBetsy\nCamille\nCarlene\nCathy\nClaire\nDana\nDawn\nDeloris\nDinah\nDora\nDorothea\nElsie\nFannie\nFreda\nGayle\nHarriett\nJackie\nJames\nJan\nLena\nLeona\nLila\nLucinda\nMichael\nRachel\nSaundra\nVelma\nWillie\nAlma\nBernadette\nBettie\nBeverley\nBobbie\nClaudette\nCora\nDenise\nDona\nDoreen\nErma\nEunice\nFaith\nGale\nHattie\nJennifer\nJill\nKate\nKatharine\nLola\nMae\nMarcella\nMargo\nMyrtle\nRosalind\nRosetta\nThomasine\nValeria\nViolet\nMary\nBarbara\nPatricia\nCarol\nLinda\nNancy\nMargaret\nSandra\nSusan\nCarolyn\nJudith\nSharon\nJoan\nJoyce\nElizabeth\nDiane\nShirley\nDorothy\nDonna\nBetty\nJanet\nGloria\nKaren\nJean\nKathleen\nAnn\nMartha\nBeverly\nHelen\nFrances\nPamela\nJudy\nVirginia\nJanice\nCatherine\nAnne\nCarole\nBrenda\nDelores\nRuth\nAlice\nCheryl\nEllen\nBonnie\nJacqueline\nDoris\nJane\nGail\nJoanne\nCynthia\nElaine\nKatherine\nPhyllis\nKathryn\nMarie\nMarilyn\nDiana\nEvelyn\nPeggy\nSally\nConstance\nGeraldine\nCharlotte\nEileen\nSheila\nPaula\nRita\nYvonne\nChristine\nMarcia\nMarjorie\nRose\nSuzanne\nTheresa\nVivian\nJeanne\nSarah\nSylvia\nJo\nJulia\nRoberta\nDeborah\nJuanita\nLynn\nDolores\nLois\nLorraine\nMarsha\nVeronica\nClaudia\nFlorence\nRebecca\nSue\nLillian\nLouise\nMaureen\nNorma\nJosephine\nAndrea\nArlene\nMarion\nLynda\nMarian\nPriscilla\nBeatrice\nDianne\nGrace\nLaura\nMildred\nRosemary\nDarlene\nEdith\nGwendolyn\nJeanette\nJune\nLeslie\nLoretta\nStephanie\nVictoria\nAnna\nEleanor\nErnestine\nJoann\nMaria\nSherry\nAudrey\nBernadette\nKathy\nMarguerite\nPauline\nAnita\nCaroline\nEthel\nKatharine\nPenelope\nAgnes\nAnnette\nCecelia\nConnie\nGeorgia\nJacquelyn\nLaverne\nLucille\nMarlene\nRosa\nVera\nBette\nCharlene\nJulie\nPenny\nSara\nBernice\nBettie\nEsther\nFrancine\nJeannette\nKay\nLucy\nMaxine\nPatsy\nRuby\nSaundra\nCassandra\nCecilia\nClaire\nDale\nEdna\nEmily\nGayle\nGladys\nMargo\nMiriam\nNina\nPaulette\nRegina\nTeresa\nThelma\nVicki\nWanda\nAnnie\nBertha\nBonita\nCamille\nChristina\nCornelia\nHattie\nJennifer\nJill\nJoy\nWendy\nAlma\nCathy\nClara\nDana\nEva\nFaye\nHarriet\nIrene\nLynne\nMichele\nRosalie\nTerry\nAngela\nJoanna\nMadeline\nMeredith\nMyra\nNadine\nOlivia\nPearl\nRobin\nSharron\nValerie\nViola\nWilma\nAdrienne\nAlicia\nAntoinette\nBeth\nCarrie\nDawn\nDeloris\nDianna\nGenevieve\nGretchen\nHelene\nInez\nLillie\nMargie\nMaryann\nRenee\nRosetta\nToni\nCarla\nCathleen\nCelestine\nEloise\nElva\nEugenia\nEunice\nGeneva\nGertrude\nGlenda\nHilda\nIngrid\nIris\nIrma\nJessie\nLee\nLenore\nLydia\nMargery\nMarianne\nMarva\nMelanie\nRachel\nRosalind\nStella\nWillie\nWinifred\nMary\nPatricia\nBarbara\nCarol\nLinda\nSusan\nMargaret\nSandra\nNancy\nCarolyn\nJudith\nSharon\nJoyce\nDiane\nDonna\nShirley\nJoan\nKathleen\nKaren\nBetty\nElizabeth\nGloria\nJanet\nJean\nDorothy\nAnn\nMartha\nHelen\nJacqueline\nJudy\nBrenda\nJanice\nMarilyn\nJane\nCheryl\nFrances\nDiana\nPamela\nRuth\nDoris\nVirginia\nCatherine\nAnne\nGail\nBeverly\nBonnie\nEllen\nAlice\nMarie\nSarah\nYvonne\nElaine\nSuzanne\nDelores\nPeggy\nSylvia\nKatherine\nLeslie\nLouise\nPhyllis\nChristine\nEvelyn\nJoanne\nLaura\nMarjorie\nRita\nConstance\nMarcia\nCarole\nJo\nEileen\nJeanne\nRoberta\nGwendolyn\nMaureen\nPaula\nSheila\nKathryn\nLynn\nTheresa\nCynthia\nSally\nDianne\nRosemary\nCharlotte\nGeraldine\nJuanita\nRebecca\nSue\nVivian\nAnita\nRose\nLois\nSara\nDeborah\nJoann\nJulia\nLorraine\nMarion\nMildred\nNorma\nThelma\nAndrea\nEdith\nIrene\nDarlene\nLillian\nLynda\nMarsha\nVictoria\nCharlene\nDolores\nEleanor\nMarian\nRegina\nVeronica\nAntoinette\nKathy\nKay\nLaverne\nToni\nEthel\nGayle\nHarriet\nPriscilla\nSherry\nTeresa\nAnnie\nArlene\nAudrey\nJoy\nJulie\nLynne\nCarla\nClara\nClaudia\nConnie\nFlorence\nLucy\nMargie\nPauline\nAnnette\nBernadette\nChristina\nEmily\nEmma\nGeorgia\nGertrude\nJennifer\nPaulette\nValerie\nCaroline\nCecelia\nDana\nDenise\nJacquelyn\nJeanette\nMaria\nMarlene\nMaxine\nMichele\nPat\nRuby\nWanda\nDale\nGrace\nRobin\nSaundra\nBeatrice\nCecilia\nEdna\nJune\nKatharine\nLee\nAnna\nBetsy\nEarline\nJosephine\nLillie\nLoretta\nOlivia\nRosa\nRosemarie\nTerry\nBernice\nDianna\nEsther\nFrancine\nHattie\nJanis\nJeannette\nLucille\nMarianne\nNaomi\nNatalie\nSandy\nStephanie\nVicki\nAmy\nAngela\nErnestine\nEva\nGladys\nHazel\nHelene\nIda\nJill\nLeigh\nMadeline\nMarcella\nMarguerite\nMiriam\nPatsy\nRenee\nRosalind\nAgnes\nAlberta\nBeth\nBette\nBettie\nCarrie\nDeanna\nGale\nGretchen\nHenrietta\nJanie\nJohanna\nLauren\nMichelle\nPenelope\nRoslyn\nAdele\nAdrienne\nBertha\nBlanche\nBonita\nClaire\nClare\nDeloris\nDoretha\nElisabeth\nElla\nEloise\nFaye\nGeneva\nGwen\nHarriett\nHelena\nInez\nIris\nJackie\nJewell\nJoanna\nKristin\nLaurie\nLena\nMargery\nMargo\nMattie\nMelinda\nNina\nPatty\nPearl\nRachel\nSallie\nSharron\nSheryl\nSonja\nTina\nYvette\nMary\nPatricia\nBarbara\nLinda\nCarol\nNancy\nSandra\nSharon\nSusan\nMargaret\nKathleen\nCarolyn\nJudith\nJoyce\nDiane\nJoan\nKaren\nDonna\nShirley\nAnn\nElizabeth\nJean\nGloria\nBrenda\nCatherine\nBetty\nJane\nJanet\nJacqueline\nJanice\nBeverly\nDorothy\nPamela\nMartha\nFrances\nCheryl\nJoanne\nSuzanne\nHelen\nCynthia\nVirginia\nEllen\nJudy\nPhyllis\nAlice\nDiana\nRuth\nAnne\nBonnie\nKathryn\nMarilyn\nChristine\nElaine\nPeggy\nGail\nCarole\nSheila\nYvonne\nJo\nMarie\nJeanne\nKatherine\nConstance\nEileen\nRita\nGwendolyn\nTheresa\nAnita\nDelores\nLorraine\nMarcia\nPaula\nDeborah\nLynn\nRoberta\nSarah\nSylvia\nGeraldine\nCharlotte\nDianne\nLaura\nMarjorie\nEvelyn\nRose\nJulia\nVivian\nDoris\nLeslie\nMaureen\nMarian\nLouise\nMarion\nSherry\nMaria\nJeanette\nLois\nPaulette\nDarlene\nJuanita\nSally\nFrancine\nKathy\nRosemary\nVeronica\nEleanor\nJoann\nMarsha\nCharlene\nJune\nTerry\nClaudia\nConnie\nMarlene\nRebecca\nStephanie\nJacquelyn\nMildred\nSara\nBernice\nEmily\nJosephine\nLynda\nPat\nAndrea\nHarriet\nLoretta\nTeresa\nAnna\nIrene\nRegina\nSue\nValerie\nVictoria\nLaverne\nNorma\nPriscilla\nArlene\nFlorence\nJoy\nLynne\nThelma\nAngela\nBeth\nDolores\nEthel\nGrace\nKay\nMarguerite\nMaxine\nSaundra\nAnnette\nAudrey\nEdith\nElsie\nGladys\nLillian\nAntoinette\nBernadette\nBonita\nCecelia\nDeloris\nDenise\nErnestine\nJanie\nJanis\nJennifer\nPearl\nToni\nVera\nWanda\nDana\nGretchen\nJackie\nLee\nMargo\nSharron\nChristina\nClara\nDale\nJeannette\nLisa\nLucy\nMichele\nRenee\nRosa\nRosalind\nRosetta\nSheryl\nAgnes\nAnnie\nBeatrice\nCandace\nEdna\nEsther\nGeorgia\nHazel\nJoanna\nPauline\nRobin\nSandy\nSharyn\nAlma\nCarla\nCaroline\nClaudette\nColleen\nElla\nFaye\nHenrietta\nJill\nJulie\nLaurie\nMarianne\nMaryann\nMuriel\nMyra\nNadine\nNina\nNora\nRuby\nThomasine\nAlberta\nAlison\nBertha\nBette\nDawn\nEmma\nEunice\nGayle\nMadeline\nMargie\nNaomi\nPatsy\nPatti\nPenelope\nVelma\nApril\nCarlene\nCarrie\nCathy\nCelestine\nEloise\nIda\nKarin\nLauren\nLucille\nMyrtle\nPatty\nRachel\nRae\nRochelle\nSadie\nVicki\nAlthea\nBetsy\nBillie\nCecilia\nDaisy\nDeanna\nDelois\nDona\nDoreen\nEarlene\nEugenia\nGale\nGertrude\nHelene\nHope\nIris\nJan\nJessie\nKristine\nLaurel\nLenore\nLucinda\nMay\nMelody\nMiriam\nNan\nPenny\nRhoda\nRosemarie\nWendy\nWilhelmina\nLinda\nPatricia\nMary\nBarbara\nSusan\nSandra\nCarol\nNancy\nMargaret\nKathleen\nSharon\nDiane\nCarolyn\nJudith\nKaren\nDonna\nElizabeth\nJoyce\nBrenda\nShirley\nPamela\nJoan\nBetty\nGloria\nJanice\nAnn\nBeverly\nCynthia\nJean\nFrances\nDeborah\nJacqueline\nCheryl\nJanet\nHelen\nChristine\nCatherine\nJane\nDorothy\nPhyllis\nMartha\nEllen\nAnne\nAlice\nDiana\nGail\nVirginia\nJudy\nBonnie\nRuth\nMarilyn\nElaine\nKatherine\nKathryn\nMarie\nSuzanne\nDoris\nDianne\nGeraldine\nJo\nSheila\nPaula\nConstance\nGwendolyn\nRita\nEvelyn\nMaureen\nDelores\nMarcia\nYvonne\nJoanne\nLynn\nLorraine\nPeggy\nSylvia\nAnita\nCarole\nLynda\nMarsha\nLaura\nTheresa\nLeslie\nJuanita\nRosemary\nEileen\nCharlotte\nLouise\nMaria\nRoberta\nSherry\nMarjorie\nPaulette\nAndrea\nJeanne\nLaverne\nVeronica\nAnna\nCharlene\nJoann\nRose\nJulia\nRegina\nSally\nNorma\nRebecca\nTeresa\nClaudia\nLois\nMichele\nVivian\nGrace\nJanis\nStephanie\nAnnette\nJacquelyn\nFrancine\nIrene\nKathy\nSara\nSaundra\nThelma\nValerie\nConnie\nDarlene\nEleanor\nJune\nLynne\nAudrey\nEmily\nJoy\nLoretta\nMarion\nMaxine\nSue\nTerry\nHarriet\nMadeline\nMyra\nPauline\nPriscilla\nAntoinette\nArlene\nCaroline\nErnestine\nVictoria\nWanda\nBernice\nCassandra\nCathy\nCecelia\nCecilia\nChristina\nDale\nEdith\nEthel\nJan\nJennifer\nJosephine\nMarlene\nPatsy\nPearl\nSarah\nEdna\nJeanette\nJeannette\nLucy\nMildred\nNora\nCarla\nEsther\nFlorence\nGayle\nGeorgia\nJulie\nLillian\nMarian\nSheryl\nToni\nRuby\nVicki\nAlma\nAngela\nBernadette\nBonita\nDenise\nDolores\nKatharine\nKay\nMarguerite\nSandy\nAlicia\nBessie\nCarmen\nElla\nJill\nMaryann\nNaomi\nPenny\nAgnes\nGale\nGertrude\nGladys\nIris\nRenee\nRosa\nShelia\nSherrill\nVera\nAnnie\nBeatrice\nBettie\nCandice\nEunice\nHenrietta\nHolly\nMargo\nMarianne\nMiriam\nMuriel\nPat\nPenelope\nRachel\nRobin\nAmelia\nBeth\nCarrie\nClare\nDeloris\nDianna\nElsie\nFaye\nLee\nLillie\nMichelle\nRhoda\nToby\nVicky\nBette\nBillie\nCandace\nCandy\nClaire\nClara\nColleen\nCorinne\nDana\nDona\nDorothea\nEdwina\nEmma\nFannie\nGlenda\nGretchen\nHattie\nHazel\nHelene\nIngrid\nJanie\nLauren\nLena\nLisa\nLora\nLucille\nMae\nMargery\nMonica\nOlivia\nPortia\nRosemarie\nSharron\nSharyn\nSonja\nTanya\nViola\nWillie\nAdrienne\nAlyce\nBertha\nBetsy\nBobbie\nCamille\nCindy\nDawn\nDebra\nDella\nDora\nDoreen\nEarlene\nElisabeth\nElise\nFlora\nInez\nIsabelle\nJanine\nJessica\nKarla\nLaurel\nLelia\nLenora\nLolita\nLyn\nMyrna\nMyrtle\nNatalie\nNina\nRhonda\nSheron\nSherrie\nStella\nSusie\nWendy\nWilma\nLinda\nMary\nPatricia\nBarbara\nSusan\nMargaret\nSharon\nNancy\nSandra\nCarol\nDiane\nKathleen\nCarolyn\nBrenda\nKaren\nDonna\nElizabeth\nJudith\nDeborah\nJoyce\nPamela\nCynthia\nShirley\nJanice\nAnn\nJacqueline\nCatherine\nJoan\nBetty\nFrances\nJanet\nBeverly\nJean\nCheryl\nChristine\nDorothy\nKatherine\nGloria\nAnne\nTheresa\nJane\nSheila\nRuth\nHelen\nDiana\nEllen\nAlice\nBonnie\nDelores\nJudy\nGail\nJoanne\nElaine\nPaula\nPhyllis\nKathryn\nYvonne\nGeraldine\nMartha\nVirginia\nLynn\nMarie\nJo\nPeggy\nMarsha\nGwendolyn\nMarilyn\nMaureen\nSuzanne\nSylvia\nRita\nDoris\nDianne\nEvelyn\nLaura\nCharlene\nCharlotte\nPaulette\nSarah\nTeresa\nConstance\nMaria\nJeanne\nMarcia\nRegina\nVictoria\nAnita\nClaudia\nStephanie\nEileen\nJuanita\nLorraine\nLynda\nSherry\nLouise\nKathy\nRoberta\nRosemary\nVivian\nCarole\nJoann\nLaverne\nMildred\nRose\nJulia\nVeronica\nArlene\nDarlene\nLeslie\nRebecca\nSally\nTerry\nValerie\nLois\nMarlene\nNorma\nPriscilla\nWanda\nAnna\nAntoinette\nIrene\nJennifer\nMarian\nSue\nJune\nMarjorie\nBernadette\nFrancine\nGrace\nSaundra\nCassandra\nCecelia\nDenise\nEleanor\nLoretta\nRenee\nAngela\nMarion\nMichele\nAndrea\nColleen\nFlorence\nHarriet\nJanis\nVicki\nErnestine\nEthel\nJacquelyn\nMaxine\nSara\nToni\nWendy\nAnnette\nAudrey\nBonita\nCathy\nConnie\nGeorgia\nJeanette\nJeannette\nJosephine\nJulie\nMichelle\nPauline\nAnnie\nBeatrice\nEdna\nRobin\nThelma\nYvette\nChristina\nEdith\nEmily\nEsther\nLillian\nPearl\nRuby\nBeth\nBetsy\nCecilia\nGayle\nGlenda\nHazel\nIda\nJan\nMyra\nSheryl\nCandace\nCarla\nCathleen\nClara\nDale\nDana\nDolores\nJackie\nJoy\nLucy\nMarianne\nMiriam\nRachel\nShelia\nVera\nWillie\nAgnes\nAlberta\nAmy\nBernice\nEva\nLynne\nMadeline\nNatalie\nOlivia\nRosa\nViola\nWilhelmina\nAdrienne\nAlexandra\nAlfreda\nBertha\nClaudette\nEmma\nFay\nGladys\nGretchen\nIngrid\nIris\nJennie\nJessica\nKay\nLisa\nMeredith\nNellie\nRena\nRosalind\nRosemarie\nShelley\nThomasine\nWilma\nAlicia\nBessie\nCarmen\nCelestine\nClaire\nConsuella\nEarline\nFaye\nHelene\nJenifer\nJill\nKarin\nLee\nLucille\nMabel\nMarguerite\nMaryann\nMelanie\nMelinda\nMelissa\nMonica\nNina\nNora\nPat\nPatsy\nRhoda\nSharyn\nSonja\nSusie\nAda\nAlison\nAlthea\nBette\nBettie\nBillie\nCaroline\nClarissa\nDeanna\nDoretha\nDorothea\nEarlene\nElise\nElla\nGale\nGeneva\nGeorgette\nGertrude\nGinger\nGlenna\nHattie\nIlene\nJanelle\nJenny\nJessie\nKristine\nLaurie\nLeah\nLena\nLenora\nLenore\nMona\nPenny\nPolly\nRochelle\nRosalie\nSallie\nSheri\nLinda\nMary\nPatricia\nBarbara\nSusan\nSharon\nKathleen\nMargaret\nDeborah\nBrenda\nNancy\nSandra\nCarolyn\nKaren\nCarol\nDiane\nDonna\nElizabeth\nJudith\nJoyce\nShirley\nCynthia\nPamela\nCheryl\nJanet\nJacqueline\nJoan\nGloria\nJanice\nBetty\nAnn\nChristine\nCatherine\nJean\nPaula\nMartha\nAnne\nBonnie\nDorothy\nBeverly\nEllen\nJane\nFrances\nTheresa\nRuth\nJoanne\nVirginia\nHelen\nPhyllis\nAlice\nKatherine\nMarilyn\nDiana\nGail\nSheila\nSuzanne\nGwendolyn\nElaine\nJo\nKathryn\nYvonne\nRebecca\nRita\nJudy\nValerie\nAnita\nLaura\nMarsha\nLynn\nSylvia\nConstance\nDelores\nJeanne\nMarie\nRegina\nDianne\nPeggy\nTeresa\nDoris\nEileen\nMarcia\nEvelyn\nMaria\nVeronica\nMaureen\nCharlene\nLorraine\nRosemary\nVictoria\nWanda\nCharlotte\nAngela\nSherry\nGeraldine\nLeslie\nRose\nJennifer\nLois\nDarlene\nLouise\nSarah\nJuanita\nPaulette\nVivian\nJoann\nKathy\nLynda\nSally\nStephanie\nSue\nAndrea\nAntoinette\nAudrey\nJulia\nJulie\nMarjorie\nAnna\nCecelia\nJanis\nJeanette\nJune\nWendy\nSaundra\nClaudia\nEdna\nLillian\nMichele\nRenee\nChristina\nDebra\nDenise\nEdith\nLaverne\nMarian\nMildred\nRoberta\nRobin\nTerry\nAnnette\nCarole\nConnie\nLynne\nMarguerite\nCassandra\nSara\nArlene\nFlorence\nJacquelyn\nLoretta\nNorma\nBeatrice\nBernice\nIrene\nMarianne\nMarlene\nPriscilla\nAgnes\nAnnie\nDolores\nFrancine\nPenelope\nBelinda\nEleanor\nGayle\nGrace\nHarriet\nMaxine\nCaroline\nErnestine\nGlenda\nJan\nJeannette\nLucy\nMargo\nOlivia\nRuby\nThelma\nToni\nVickie\nAlthea\nCathleen\nCathy\nClaire\nClara\nColleen\nDale\nEva\nFaye\nGladys\nJoy\nLisa\nMichelle\nMonica\nNaomi\nVicki\nWillie\nCelestine\nElla\nEmily\nEsther\nGeorgia\nIris\nJosephine\nLenora\nNora\nAlicia\nDana\nEthel\nGeneva\nMadeline\nMarion\nMelanie\nShelia\nValarie\nVera\nAlfreda\nAlma\nBernadette\nCandace\nCandice\nCarmen\nCathryn\nCecilia\nClaudette\nDorothea\nEarline\nEstelle\nHazel\nHelene\nHope\nJill\nKatharine\nLaurie\nMaryann\nPatsy\nPauline\nPenny\nRachel\nRosa\nShelley\nVerna\nAmy\nBertha\nBeth\nBonita\nCarrie\nDawn\nElsie\nEunice\nIda\nJenny\nLucille\nLucinda\nLydia\nMyra\nRosalind\nSheryl\nThomasine\nVelma\nViola\nWilma\nYolanda\nAlberta\nAmelia\nCamilla\nCarla\nDaryl\nDianna\nDoreen\nElena\nEloise\nGenevieve\nHattie\nHolly\nIngrid\nJessica\nJoanna\nJody\nKay\nMarla\nMarva\nMichael\nMinnie\nMuriel\nNina\nRosetta\nSharron\nTina\nYvette\nAdrian\nAdrienne\nAlexandra\nAlexis\nAlison\nCarlene\nDaphne\nDoretha\nEmma\nEssie\nFannie\nFay\nJackie\nJeannie\nJennie\nLana\nLee\nLola\nLynette\nMargie\nMelissa\nNatalie\nSharyn\nTanya\nTawana\nTerri\nTheodora\nVernice\nLinda\nMary\nPatricia\nBarbara\nSusan\nDeborah\nSharon\nKathleen\nNancy\nDiane\nKaren\nMargaret\nSandra\nCarol\nBrenda\nCarolyn\nDonna\nElizabeth\nCynthia\nJanet\nJoyce\nJanice\nJudith\nPamela\nShirley\nChristine\nJoan\nCatherine\nBeverly\nCheryl\nKatherine\nJacqueline\nGail\nSheila\nGloria\nAnn\nBonnie\nFrances\nWanda\nYvonne\nAnne\nKathryn\nHelen\nDenise\nJean\nJane\nVirginia\nBetty\nDorothy\nJoanne\nEllen\nLaura\nMartha\nPhyllis\nGwendolyn\nPaula\nTheresa\nMarilyn\nSylvia\nAlice\nStephanie\nRebecca\nRuth\nJudy\nLynn\nSuzanne\nAnita\nMarie\nVictoria\nElaine\nRobin\nConstance\nSarah\nDarlene\nDiana\nDianne\nEileen\nDoris\nJeanne\nJoann\nMaria\nMaureen\nPeggy\nRita\nWendy\nJo\nSherry\nValerie\nMarcia\nMarsha\nPaulette\nRegina\nTeresa\nEvelyn\nJennifer\nRoberta\nDebra\nDelores\nIrene\nLorraine\nVeronica\nRose\nClaudia\nFrancine\nHarriet\nLouise\nPriscilla\nKathy\nAnna\nChristina\nLeslie\nSally\nAndrea\nAngela\nEdith\nGeraldine\nLois\nMichele\nRosemary\nCharlotte\nJulie\nLaverne\nMildred\nPauline\nAudrey\nCassandra\nJulia\nLisa\nLoretta\nRenee\nAnnette\nCarole\nJune\nMarian\nSara\nConnie\nBonita\nCecelia\nJuanita\nNorma\nBeth\nCharlene\nFlorence\nLillian\nLynda\nVivian\nCathy\nJeanette\nJill\nMarjorie\nMonica\nShelley\nThelma\nAntoinette\nColleen\nDolores\nMarion\nMona\nEmily\nGladys\nJanis\nJoy\nLucy\nVicki\nCarla\nDana\nEleanor\nGayle\nGlenda\nLynne\nMarguerite\nMarlene\nSaundra\nSheryl\nToni\nAlfreda\nAmy\nJosephine\nLaurie\nBeatrice\nEunice\nGrace\nMichelle\nNina\nAdrienne\nBernadette\nCandace\nCarmen\nEdna\nIris\nJacquelyn\nJeannette\nMyra\nNadine\nNora\nOlivia\nRhonda\nSue\nTerry\nCecilia\nClaudette\nElla\nJan\nLucille\nMelanie\nMiriam\nNatalie\nPenelope\nAnnie\nArlene\nCora\nEthel\nGale\nJody\nMaxine\nRachel\nVelma\nVickie\nAdele\nAlthea\nBelinda\nBetsy\nCatharine\nCeleste\nDale\nDaphne\nElsie\nErnestine\nNaomi\nPatrice\nRosalind\nSharron\nThomasine\nTina\nVera\nWinifred\nAgnes\nAlberta\nCaroline\nCelestine\nClaire\nDebbie\nDianna\nDona\nFaye\nGeorgia\nGertrude\nGretchen\nJenny\nJoanna\nJocelyn\nKay\nLydia\nMarianne\nMuriel\nRosa\nRuby\nSusanne\nYolanda\nAlison\nAlma\nBernice\nCamille\nCandice\nCaryn\nDawn\nElisabeth\nEmma\nHazel\nHelene\nJohnnie\nLauren\nMadeline\nMargie\nMargo\nMarla\nMelinda\nMelissa\nTamara\nTerri\nValeria\nValorie\nWilma\nAlexandra\nBillie\nCathleen\nClara\nClare\nDebora\nDella\nEarline\nElise\nEugenie\nEva\nFannie\nFay\nHilda\nHolly\nHope\nJanie\nKristin\nLana\nLeah\nLena\nLenora\nLetitia\nLillie\nLolita\nLucinda\nLynette\nMamie\nPenny\nPortia\nRene\nRochelle\nRosetta\nSharyn\nShelia\nSondra\nTerrie\nTherese\nLinda\nMary\nPatricia\nDeborah\nBarbara\nSusan\nSharon\nKaren\nKathleen\nNancy\nSandra\nDiane\nBrenda\nMargaret\nDonna\nCarolyn\nCarol\nJoyce\nElizabeth\nCynthia\nDenise\nJudith\nPamela\nJanet\nJanice\nCatherine\nGail\nChristine\nJacqueline\nJoan\nGloria\nShirley\nCheryl\nDebra\nSheila\nJean\nAnn\nAnne\nBeverly\nBonnie\nJane\nEllen\nPaula\nYvonne\nHelen\nMartha\nDorothy\nKatherine\nPhyllis\nRuth\nLynn\nTheresa\nValerie\nBetty\nGwendolyn\nFrances\nJoanne\nMarilyn\nTeresa\nKathryn\nMarie\nVictoria\nDoris\nDiana\nJudy\nLaura\nElaine\nRobin\nWanda\nSarah\nSuzanne\nVirginia\nAlice\nPeggy\nRita\nStephanie\nLisa\nRegina\nVeronica\nJeanne\nMarcia\nRebecca\nSherry\nVicki\nConstance\nEileen\nLeslie\nMarsha\nRenee\nAngela\nDianne\nJo\nMaureen\nMaria\nAnna\nCharlene\nJuanita\nSylvia\nWendy\nDelores\nSally\nAndrea\nMichele\nRose\nArlene\nJanis\nGeraldine\nLoretta\nLouise\nMichelle\nRoberta\nCecelia\nClaudia\nFrancine\nKathy\nLois\nLorraine\nMarjorie\nAnita\nDarlene\nPaulette\nAnnette\nCharlotte\nLaurie\nTerry\nEvelyn\nJennifer\nJulie\nCassandra\nLaverne\nRosemary\nBelinda\nBonita\nChristina\nJoann\nMarlene\nToni\nColleen\nEdith\nJacquelyn\nJan\nJune\nLynne\nDale\nHazel\nJulia\nLynda\nNorma\nPriscilla\nEmily\nMarguerite\nShelley\nBernadette\nCarole\nJeanette\nMonica\nRhonda\nSara\nAudrey\nCarla\nCecilia\nLillian\nSheryl\nVivian\nCaroline\nGrace\nAlthea\nDolores\nGayle\nGladys\nJosephine\nJoy\nMarian\nPatrice\nVickie\nEthel\nMaxine\nMildred\nShelia\nAmy\nBeth\nCathy\nClaire\nConnie\nDana\nFaye\nHarriet\nIrene\nLydia\nMarianne\nMarion\nMelanie\nMelissa\nPauline\nAdrienne\nAnnie\nAntoinette\nDora\nDoretha\nErnestine\nEva\nFaith\nFlorence\nKristine\nLucille\nNina\nNora\nPenny\nSaundra\nVera\nViola\nAlma\nCelestine\nGeorgia\nHolly\nIris\nJeannette\nLee\nMiriam\nRamona\nRosa\nSue\nAgnes\nBeatrice\nBernice\nCandace\nEleanor\nKay\nLucy\nMargo\nRosalind\nRuby\nAlberta\nAlicia\nBeryl\nCamille\nCarrie\nDawn\nEsther\nGale\nGlenda\nHenrietta\nJill\nKatharine\nMelinda\nNatalie\nPearl\nRachel\nRosetta\nTawana\nTerri\nAda\nAlfreda\nBertha\nCathleen\nClaudette\nCrystal\nDorothea\nEarline\nElla\nEmma\nJames\nJocelyn\nKathie\nNadine\nNaomi\nPatsy\nRochelle\nRosemarie\nSharron\nThelma\nThomasine\nVelma\nAlison\nAmanda\nBettie\nClara\nDebora\nDeloris\nEugenia\nEunice\nGay\nGeneva\nGina\nHeidi\nHelene\nLucinda\nLyn\nMuriel\nMyra\nOlivia\nRomaine\nRosalie\nRoxanne\nTina\nValeria\nVanessa\nWilma\nAdele\nAletha\nAlexandra\nBetsy\nBette\nCandice\nCandy\nCarmela\nCarroll\nCeleste\nCherie\nClare\nClarissa\nDarla\nDella\nDona\nDoreen\nErma\nFelicia\nGertrude\nGretchen\nHannah\nHarriett\nHope\nIda\nJessica\nJessie\nKarin\nKatrina\nKristie\nMadeline\nMarcella\nMargery\nMelva\nMeredith\nMichael\nPatti\nRene\nSherrie\nSondra\nTanya\nTrudy\nValarie\nVernetta\nVicky\nWinifred\nMary\nLinda\nPatricia\nDeborah\nBarbara\nSusan\nKaren\nSharon\nBrenda\nNancy\nKathleen\nDonna\nDiane\nMargaret\nElizabeth\nSandra\nDenise\nCarol\nJoyce\nChristine\nPamela\nCynthia\nDebra\nCarolyn\nJanet\nSheila\nCatherine\nGail\nJoan\nJacqueline\nJudith\nAnn\nBeverly\nJanice\nGloria\nShirley\nAnne\nMartha\nPaula\nKatherine\nTeresa\nCheryl\nRobin\nKathryn\nLynn\nJoanne\nSuzanne\nTheresa\nLaura\nRebecca\nRuth\nBetty\nJane\nRita\nVictoria\nLeslie\nElaine\nEllen\nGwendolyn\nKathy\nAngela\nDarlene\nMaureen\nVirginia\nWanda\nJean\nBonnie\nDorothy\nFrances\nJudy\nMarie\nValerie\nAlice\nPhyllis\nHelen\nJo\nMarilyn\nYvonne\nConstance\nRenee\nEileen\nJennifer\nAnita\nLisa\nVeronica\nDiana\nMarcia\nRose\nVicki\nSarah\nLynda\nAndrea\nEvelyn\nDoris\nRoberta\nMichele\nCharlene\nClaudia\nJeanne\nRegina\nRosemary\nDianne\nJuanita\nLois\nMarsha\nMichelle\nStephanie\nLouise\nSally\nChristina\nJulie\nLaverne\nTerry\nAnna\nCassandra\nCharlotte\nDelores\nLoretta\nLynne\nSherry\nVivian\nWendy\nCathy\nColleen\nSylvia\nLorraine\nMaria\nNorma\nAudrey\nJeanette\nPeggy\nAmy\nGeraldine\nArlene\nVickie\nJulia\nMarjorie\nPaulette\nAnnette\nCecelia\nDale\nEleanor\nJoann\nJosephine\nMarianne\nMarion\nVanessa\nBernadette\nDana\nEmily\nGayle\nNina\nPriscilla\nSara\nSaundra\nCarole\nIrene\nJan\nLaurie\nMarian\nMonica\nRhonda\nSue\nCarla\nJanis\nJill\nLillian\nMarlene\nMildred\nShelley\nAdrienne\nAntoinette\nCandace\nEdith\nGladys\nGlenda\nMarguerite\nAlfreda\nBelinda\nErnestine\nFlorence\nFrancine\nIris\nJacquelyn\nToni\nYolanda\nAgnes\nAlicia\nBeth\nGrace\nHazel\nJeannette\nMargo\nMaxine\nMelanie\nPatrice\nShelia\nTerri\nYvette\nBonita\nCaroline\nDawn\nEsther\nJune\nKim\nLucy\nNora\nPatsy\nSheryl\nVera\nAvis\nCarmen\nCathleen\nCecilia\nClaire\nConnie\nEdna\nElsie\nGeorgia\nHarriet\nKay\nMiriam\nNadine\nTawana\nAlison\nBetsy\nClaudette\nDebbie\nEthel\nEva\nIda\nJackie\nLydia\nOlivia\nRosa\nRosetta\nAnnie\nApril\nBeatrice\nCaryn\nCelestine\nClara\nEmma\nGertrude\nJustine\nKristine\nLauren\nLillie\nLora\nLucille\nRachel\nRosalind\nStella\nTamara\nTina\nVerna\nAlthea\nDolores\nDoretha\nGale\nGinger\nJoanna\nJoy\nLaurel\nMarla\nMona\nRena\nRochelle\nRuby\nSallie\nSusanne\nThomasine\nWilma\nWinifred\nCarmelita\nCindy\nClare\nDebora\nDolly\nDorothea\nEarlene\nEloise\nFaye\nGeneva\nHarriett\nHolly\nIlene\nJeannie\nJeannine\nJocelyn\nJody\nKaryn\nKatharine\nKristina\nLana\nLucinda\nMadeline\nMelinda\nMelissa\nMelody\nMindy\nMuriel\nNatalie\nPenny\nPortia\nSonia\nSonja\nThelma\nTherese\nVicky\nViola\nWilliam\nAdele\nAmelia\nArnita\nAva\nBenita\nBridget\nCandy\nCarrie\nCelia\nDanielle\nDoreen\nElinor\nEstelle\nEugenia\nFreda\nHeidi\nHelene\nHope\nJohanna\nKristin\nLola\nMargie\nMarina\nMeredith\nPenelope\nRamona\nRobyn\nTanya\nVelma\nMary\nPatricia\nDeborah\nLinda\nSusan\nBarbara\nKaren\nSharon\nDiane\nDonna\nCynthia\nPamela\nDebra\nBrenda\nKathleen\nNancy\nSandra\nDenise\nCarol\nElizabeth\nMargaret\nCarolyn\nJanet\nJoyce\nJacqueline\nCheryl\nSheila\nGail\nJanice\nCatherine\nJoan\nChristine\nRobin\nAnn\nJudith\nTheresa\nWanda\nPaula\nBeverly\nKatherine\nShirley\nAnne\nGloria\nMartha\nLaura\nValerie\nGwendolyn\nKathryn\nEllen\nTeresa\nLeslie\nJudy\nLynn\nPhyllis\nBonnie\nDarlene\nMichelle\nVictoria\nJane\nRebecca\nMarilyn\nRuth\nLisa\nSuzanne\nJean\nStephanie\nBetty\nElaine\nJo\nMarie\nHelen\nKathy\nRita\nVirginia\nJoanne\nFrances\nMaria\nRegina\nVicki\nMarsha\nMaureen\nAngela\nEvelyn\nJennifer\nAnita\nDelores\nVanessa\nDorothy\nAlice\nRose\nSarah\nWendy\nConstance\nDoris\nMarcia\nSylvia\nYvonne\nEileen\nRenee\nCathy\nDiana\nJan\nAmy\nAndrea\nJeanne\nLorraine\nPeggy\nCharlene\nRhonda\nSally\nJulie\nLoretta\nMichele\nSherry\nAudrey\nCarla\nCassandra\nMarjorie\nClaudia\nVeronica\nAnna\nDianne\nLaverne\nLois\nVivian\nAdrienne\nCharlotte\nLynda\nLynne\nMaxine\nRoberta\nJanis\nJulia\nLouise\nMelanie\nShelley\nIris\nJacquelyn\nLaurie\nLillian\nMildred\nMonica\nCecelia\nGeraldine\nJuanita\nSaundra\nSue\nTerry\nArlene\nChristina\nFrancine\nJune\nPaulette\nSara\nBeatrice\nColleen\nConnie\nDale\nJeanette\nLydia\nMarian\nMarianne\nNina\nYvette\nCathleen\nEdna\nMelissa\nMyra\nAnnette\nAnnie\nAntoinette\nAva\nBonita\nDolores\nEdith\nEleanor\nErnestine\nGlenda\nJill\nMelinda\nMiriam\nPatrice\nSheryl\nToni\nVickie\nBelinda\nCarole\nCaroline\nDawn\nJosephine\nLucy\nPriscilla\nCandace\nCarmen\nGale\nGladys\nJeannette\nJoann\nNadine\nNorma\nPauline\nRosemary\nRuby\nSonja\nThomasine\nVera\nAlicia\nDebbie\nGayle\nHolly\nIrene\nJody\nJoy\nMarlene\nShelia\nSherri\nTanya\nThelma\nBernadette\nBeth\nCecilia\nClaire\nClaudette\nDebora\nElise\nEmily\nFaye\nHarriet\nMargo\nMarguerite\nMarion\nTamara\nAlison\nBernice\nBetsy\nCindy\nDana\nEsther\nEthel\nFlorence\nInga\nKarla\nKatharine\nKim\nPenny\nRachel\nRosa\nTina\nDianna\nElsie\nEmma\nHazel\nJessica\nLeona\nMeredith\nNatalie\nNora\nPatti\nSusanne\nTeri\nVicky\nCherie\nCrystal\nDorothea\nGretchen\nGwen\nHelene\nIda\nLori\nMargie\nMarta\nRene\nTerri\nYolanda\nAlberta\nAvis\nBlanche\nCandice\nClara\nClare\nClarissa\nDoretha\nEarline\nFaith\nGrace\nIngrid\nIsabel\nJames\nJessie\nKarin\nKristina\nLauren\nLee\nLenora\nLorna\nLucille\nLynette\nMelody\nNicole\nOlivia\nPatsy\nRona\nRosalind\nRoxanne\nSheri\nSonia\nTawana\nTherese\nAdele\nAgnes\nAlfreda\nArnita\nBenita\nBette\nCarrie\nCathryn\nCeleste\nCharmaine\nCheri\nConchita\nDavid\nDora\nEugenia\nEunice\nEva\nFreda\nGeorgia\nGreta\nHeather\nHope\nIlene\nJackie\nJanine\nJeannie\nJeri\nJocelyn\nKatrina\nKay\nLeah\nLola\nLorrie\nMadeline\nMara\nMarla\nMichael\nNan\nNoreen\nPearl\nRena\nRobyn\nRomaine\nRosetta\nSonya\nTwana\nVenita\nMary\nDeborah\nPatricia\nLinda\nSusan\nKaren\nBarbara\nPamela\nDebra\nSharon\nDonna\nCynthia\nNancy\nDiane\nKathleen\nBrenda\nElizabeth\nDenise\nJanet\nMargaret\nCarol\nJoyce\nSandra\nCarolyn\nJacqueline\nRobin\nSheila\nGail\nCatherine\nAnne\nJanice\nJoan\nWanda\nAnn\nShirley\nTheresa\nJudith\nBeverly\nCheryl\nGloria\nValerie\nLaura\nMartha\nTeresa\nMichelle\nJean\nKatherine\nKathryn\nMarilyn\nChristine\nRebecca\nPaula\nPhyllis\nAngela\nLeslie\nRita\nVanessa\nRuth\nDarlene\nEllen\nJoanne\nGwendolyn\nLisa\nMarie\nBonnie\nLynn\nVictoria\nMichele\nStephanie\nMaureen\nJane\nJo\nSuzanne\nVeronica\nVirginia\nDorothy\nJudy\nRenee\nYvonne\nDiana\nRose\nElaine\nMaria\nRegina\nBetty\nDelores\nKathy\nAnita\nPeggy\nHelen\nCharlene\nJuanita\nMarian\nConstance\nLorraine\nSarah\nJulie\nMarcia\nRoberta\nTerry\nJulia\nWendy\nAlice\nEileen\nCathy\nClaudia\nEvelyn\nFrances\nLoretta\nDoris\nMarsha\nSally\nAndrea\nSylvia\nVicki\nJeanne\nJennifer\nSherry\nAmy\nBernadette\nAdrienne\nConnie\nLouise\nToni\nAnna\nDale\nLois\nVivian\nAnnette\nArlene\nAudrey\nCarla\nJoy\nAntoinette\nDawn\nLynne\nSheryl\nBelinda\nColleen\nGeraldine\nLynda\nSara\nShelia\nCarole\nCecelia\nCharlotte\nHolly\nJan\nJill\nRhonda\nTerri\nDianne\nFrancine\nMarjorie\nNadine\nNina\nSherri\nLaurie\nMarlene\nPaulette\nBeth\nCindy\nKim\nLydia\nTanya\nCassandra\nVera\nVickie\nDana\nJacquelyn\nJeanette\nLaverne\nLillian\nMarguerite\nMelinda\nMonica\nSaundra\nAlicia\nEleanor\nGlenda\nIris\nJeannette\nJoann\nJune\nLori\nMarion\nNorma\nTina\nYvette\nAdele\nDebbie\nIrene\nMaxine\nMelanie\nMiriam\nClaire\nEdith\nErnestine\nGayle\nJanis\nMelissa\nRosemary\nRuby\nAlfreda\nChristina\nEdna\nEthel\nEunice\nLee\nPriscilla\nRachel\nRosa\nShelley\nBernice\nBertha\nCamille\nDorothea\nEsther\nGale\nGladys\nHarriet\nIda\nJessica\nLucy\nMarianne\nMildred\nMyra\nPauline\nPenelope\nPenny\nRoxanne\nSue\nTamara\nBonita\nCathleen\nCeleste\nCelestine\nCrystal\nFaye\nGina\nJody\nJoni\nKimberly\nKristin\nMelody\nNaomi\nPatrice\nRamona\nTawanna\nThelma\nTherese\nTijuana\nYolanda\nAlison\nAmelia\nBetsy\nCandace\nDaphne\nDebora\nDolores\nEva\nFaith\nGrace\nHazel\nJessie\nKatharine\nLauren\nMargie\nNora\nSheree\nSherrie\nVerna\nWillie\nAlexandra\nAllison\nCaroline\nCarrie\nDena\nEmily\nFelicia\nGretchen\nIrma\nJosephine\nLenora\nMara\nMarcella\nMona\nRobyn\nVicky\nViola\nAlberta\nAletha\nAlthea\nAnnie\nApril\nBenita\nCarmen\nCecilia\nClara\nClaudette\nDenice\nDoreen\nElisabeth\nElise\nEvangeline\nHeidi\nJackie\nJocelyn\nLeona\nMarla\nOlivia\nPatti\nRochelle\nSusanne\nTawana\nAda\nAmanda\nAva\nBeverley\nCaryn\nCora\nCorinne\nDella\nEve\nGeneva\nHarriett\nJoette\nKarin\nKate\nKathi\nKatrina\nKay\nLajuan\nLucinda\nMadeline\nMargo\nMaryann\nMuriel\nPatsy\nRene\nRhea\nRosalind\nShawn\nShelly\nToya\nTracey\nValeria\nVernessa\nMary\nDeborah\nLinda\nPatricia\nSusan\nKaren\nBarbara\nDebra\nDonna\nDiane\nCynthia\nPamela\nSharon\nDenise\nBrenda\nKathleen\nCarol\nElizabeth\nNancy\nMargaret\nSandra\nJoyce\nJanet\nJacqueline\nRobin\nCheryl\nJanice\nCatherine\nSheila\nTheresa\nCarolyn\nGail\nAnn\nLisa\nTeresa\nWanda\nGloria\nKatherine\nJudith\nJoan\nShirley\nBeverly\nPaula\nValerie\nAnne\nMichelle\nDarlene\nJean\nLaura\nKathryn\nChristine\nMichele\nRenee\nAngela\nBonnie\nMartha\nGwendolyn\nJane\nLynn\nStephanie\nDorothy\nRebecca\nVanessa\nJo\nLeslie\nVictoria\nVirginia\nBetty\nPhyllis\nRegina\nRose\nTerry\nEllen\nRuth\nKim\nSuzanne\nJennifer\nAlice\nElaine\nJudy\nYvonne\nEileen\nFrances\nMarilyn\nSylvia\nHelen\nKathy\nMarie\nDiana\nMaria\nMaureen\nPeggy\nWendy\nAnita\nConstance\nRita\nSarah\nTerri\nClaudia\nColleen\nCathy\nLorraine\nMelissa\nVeronica\nCassandra\nJoanne\nConnie\nDebbie\nEvelyn\nJeanne\nJulia\nLoretta\nAndrea\nDianne\nVicki\nCharlene\nJulie\nLaurie\nTina\nDelores\nLouise\nMelanie\nRhonda\nRosemary\nSherry\nVivian\nAnnette\nAudrey\nBonita\nCharlotte\nDawn\nJuanita\nLois\nMarsha\nAmy\nAnna\nDoris\nMarcia\nMonica\nSara\nSheryl\nBelinda\nCindy\nLaverne\nRoberta\nFrancine\nJoann\nLynne\nLori\nCarla\nGale\nGina\nNorma\nTanya\nArlene\nHolly\nJanis\nToni\nBeth\nGeraldine\nIris\nMarlene\nNina\nSabrina\nSally\nYolanda\nYvette\nAntoinette\nDale\nDebora\nJan\nAdrienne\nCarole\nClaire\nJocelyn\nJune\nMelinda\nRoxanne\nSherri\nVickie\nChristina\nDana\nFlorence\nGrace\nIrene\nJacquelyn\nJeanette\nJeannette\nJody\nJosephine\nJoy\nLillian\nMarjorie\nNadine\nAlicia\nBetsy\nCecelia\nEdna\nErnestine\nJill\nMarguerite\nMarion\nPaulette\nPriscilla\nShelia\nSheree\nBernadette\nCarmen\nEleanor\nGayle\nKimberly\nLee\nAvis\nEdith\nEsther\nEthel\nLynda\nMarianne\nMelody\nShelley\nTawana\nAmanda\nBeatrice\nCecilia\nDesiree\nHarriet\nLucille\nMarian\nMildred\nRochelle\nSue\nAlfreda\nAlison\nApril\nAva\nFelicia\nJoni\nPatti\nPauline\nRachel\nRuby\nThomasine\nTracey\nBridget\nEmily\nEunice\nJanie\nKatharine\nLauren\nMarla\nMiriam\nRene\nTara\nThelma\nWilhelmina\nAlthea\nAnnie\nBertha\nCandice\nCeleste\nCharmaine\nClara\nClaudette\nDenice\nDoretha\nDorothea\nHope\nJackie\nLeigh\nMargie\nPatrice\nPenny\nPortia\nRosalind\nTawanna\nTheodora\nTherese\nTracy\nTrudy\nValarie\nVera\nAgnes\nAletha\nAntionette\nCaroline\nDolores\nDoreen\nEmma\nFaith\nFaye\nGeneva\nGladys\nHeather\nJamie\nJanine\nJennie\nKarin\nKay\nLesley\nLolita\nLorna\nLynette\nMaura\nMolly\nMyra\nNaomi\nSallie\nSaundra\nSheri\nSusie\nTonya\nVerna\nAdele\nBecky\nBernice\nBlanche\nBobbie\nCandace\nCaryn\nCathryn\nChristy\nCrystal\nDaphne\nDena\nElisabeth\nElsie\nEugenia\nEve\nGeorgia\nGlenda\nGregory\nGretchen\nGwen\nHarriett\nHeidi\nHelena\nIda\nJeannie\nJewel\nJoanna\nKarla\nKatrina\nKerry\nKristine\nLajuan\nLaurel\nLavern\nLeah\nLenora\nLenore\nLetitia\nLyn\nMaryann\nMaxine\nMeredith\nOlivia\nRamona\nRosemarie\nRosetta\nSonja\nSonya\nStacey\nSusanne\nTeri\nTowanna\nValeria\nDeborah\nMary\nPatricia\nKaren\nSusan\nLinda\nSharon\nBarbara\nDonna\nDebra\nCynthia\nDiane\nDenise\nPamela\nNancy\nKathleen\nElizabeth\nSandra\nCarol\nRobin\nMargaret\nCheryl\nBrenda\nSheila\nCatherine\nCarolyn\nJanet\nJoyce\nTheresa\nJanice\nWanda\nLisa\nAnn\nTeresa\nLaura\nAngela\nGail\nJoan\nJacqueline\nJudith\nAnne\nRenee\nLeslie\nShirley\nValerie\nDarlene\nBeverly\nMichelle\nRebecca\nVictoria\nKatherine\nChristine\nKathy\nPaula\nKathryn\nJean\nEllen\nJo\nHelen\nKim\nLynn\nBetty\nGloria\nDorothy\nPhyllis\nRegina\nVeronica\nWendy\nBonnie\nJane\nGwendolyn\nRuth\nFrances\nJudy\nMaria\nMichele\nStephanie\nMartha\nDiana\nElaine\nYvonne\nAnita\nAlice\nCharlene\nJoanne\nSarah\nVicki\nAnnette\nMaureen\nRose\nSuzanne\nAndrea\nDebbie\nSherry\nTerry\nJennifer\nCathy\nJulie\nLaurie\nMonica\nConstance\nJeanne\nVirginia\nEileen\nKimberly\nLorraine\nMarcia\nMarie\nRhonda\nSally\nPeggy\nRita\nJulia\nRoberta\nTerri\nYvette\nSylvia\nEvelyn\nLoretta\nLori\nDelores\nTina\nVanessa\nAmy\nMarilyn\nSheryl\nTanya\nAnna\nBeth\nVivian\nAudrey\nChristina\nCindy\nDawn\nJeanette\nCarla\nBelinda\nJoy\nLaverne\nMarian\nMelanie\nBonita\nDebora\nIris\nJuanita\nLouise\nLynne\nVickie\nBernadette\nCharlotte\nConnie\nDoris\nGeraldine\nYolanda\nArlene\nCecelia\nDianne\nMarsha\nNadine\nPaulette\nRosemary\nClaudia\nDana\nEdith\nGrace\nJacquelyn\nJan\nMarlene\nMelissa\nToni\nAntoinette\nCarole\nDale\nGayle\nJill\nLillian\nPriscilla\nRachel\nRosalind\nSara\nShelia\nSue\nIrene\nJanis\nLois\nLucy\nLydia\nNaomi\nNorma\nShelley\nTawana\nTawanna\nAdrienne\nGale\nLauren\nMarjorie\nPatti\nColleen\nEthel\nGina\nHolly\nJoann\nJune\nLynda\nLynette\nMaxine\nRoxanne\nSaundra\nSheree\nSherri\nVera\nAlfreda\nApril\nAvis\nCecilia\nDoreen\nErnestine\nEva\nFaye\nFelicia\nFlorence\nGlenda\nJocelyn\nMelinda\nMildred\nNina\nThelma\nTherese\nCarmen\nCassandra\nClaire\nFay\nFrancine\nGladys\nJody\nMarianne\nMarla\nMelody\nSabrina\nTeri\nAnnie\nAva\nCandace\nCrystal\nDolores\nEdwina\nJeannette\nKatrina\nKristin\nLeigh\nMargie\nMyra\nPatrice\nPenny\nTonya\nAlicia\nBernice\nBridget\nCathleen\nClara\nEleanor\nJosephine\nKay\nLee\nMiriam\nNanette\nNora\nRenita\nRochelle\nSherrie\nTamara\nTracy\nAlberta\nAlthea\nAmelia\nBeatrice\nCaroline\nCathryn\nDena\nDorothea\nEdna\nElena\nEmma\nFaith\nGretchen\nHazel\nJanine\nJessie\nJoni\nKerry\nLajuan\nLaurel\nLawan\nLucinda\nMarguerite\nMartina\nMichael\nPatsy\nPatty\nPauline\nRene\nRobyn\nRosa\nValencia\nVernell\nWilma\nAgnes\nAlexandra\nAlison\nAlma\nAlva\nAurelia\nCarrie\nCeleste\nCharmaine\nColette\nDeidre\nDeirdre\nDianna\nEsther\nEve\nGeorgia\nHarriet\nKarla\nLucille\nMadeline\nMamie\nMargarita\nMargo\nMarion\nMeredith\nMitzi\nPearl\nRosie\nTara\nTracey\nVicky\nViola\nAdele\nAllison\nAmanda\nBecky\nBenita\nBetsy\nCamille\nCandice\nCandy\nCaren\nClare\nClaudette\nCornelia\nDora\nElla\nFelecia\nGreta\nHeather\nHeidi\nHope\nIngrid\nJamie\nJana\nJanette\nJayne\nKarin\nKatharine\nLaureen\nLolita\nLorrie\nMargot\nMaura\nMeg\nMolly\nMona\nRamona\nRuby\nSheri\nSonja\nStarr\nTowanna\nVeda\nMary\nDeborah\nPatricia\nKaren\nSusan\nLinda\nSharon\nDonna\nCynthia\nBarbara\nDebra\nElizabeth\nBrenda\nPamela\nDenise\nNancy\nKathleen\nDiane\nCheryl\nRobin\nCarol\nCarolyn\nSandra\nMargaret\nSheila\nTeresa\nLisa\nCatherine\nJanet\nTheresa\nJoyce\nMichelle\nAnn\nLaura\nDarlene\nJanice\nJacqueline\nWanda\nKathy\nAngela\nKim\nChristine\nJoan\nDebbie\nRenee\nLeslie\nAnne\nShirley\nGail\nValerie\nJean\nJulie\nVictoria\nEllen\nJane\nPaula\nBeverly\nJudith\nCindy\nGloria\nKathryn\nKatherine\nMaria\nBetty\nGwendolyn\nJoanne\nPhyllis\nStephanie\nElaine\nHelen\nDiana\nAndrea\nBonnie\nSuzanne\nLynn\nRegina\nAnita\nTerri\nTina\nYvonne\nAlice\nJulia\nMichele\nRebecca\nSherry\nConstance\nJennifer\nJudy\nMarie\nMaureen\nTerry\nCharlene\nJo\nSarah\nDorothy\nJeanne\nMartha\nVirginia\nAnnette\nVicki\nLori\nRuth\nEileen\nRita\nKimberly\nLaurie\nRhonda\nSylvia\nDawn\nEvelyn\nJeanette\nVeronica\nDoris\nMonica\nAmy\nWendy\nCathy\nFrances\nRose\nMarcia\nTanya\nVanessa\nLynne\nMarilyn\nSheryl\nAnna\nBelinda\nBeth\nDelores\nGina\nMarsha\nCarla\nDebora\nJuanita\nMelanie\nRoberta\nVivian\nAntoinette\nCassandra\nJan\nToni\nConnie\nDana\nLauren\nMelissa\nSally\nCharlotte\nDianne\nIris\nMarianne\nMarjorie\nPeggy\nYvette\nAudrey\nCarole\nChristina\nElla\nLoretta\nPaulette\nShelia\nSue\nClaudia\nGeraldine\nJill\nLorraine\nLynda\nMarlene\nTawana\nTawanna\nCaroline\nCecelia\nDoreen\nFrancine\nHolly\nPatrice\nRobyn\nVickie\nBonita\nGlenda\nJocelyn\nJoy\nMelinda\nSara\nTracey\nColleen\nIrene\nJune\nLaverne\nNadine\nTammy\nAdrienne\nMarguerite\nMarian\nNina\nCeleste\nCrystal\nEdith\nGrace\nJackie\nKatrina\nLillian\nRene\nRosemary\nTherese\nYolanda\nAlicia\nGayle\nJoann\nLucinda\nMildred\nRamona\nRochelle\nRosalind\nShelley\nTracy\nVera\nAnnie\nBernice\nCandace\nCarrie\nEleanor\nErnestine\nGladys\nHarriet\nNorma\nPriscilla\nApril\nBenita\nBetsy\nCarmen\nEmma\nEunice\nFlorence\nJeannie\nKatharine\nMelody\nPatti\nRachel\nRuby\nSaundra\nSherrie\nAva\nBernadette\nBertha\nCecilia\nClaire\nDesiree\nDorothea\nEmily\nEsther\nGale\nHelene\nJacquelyn\nKelly\nLenora\nLouise\nMarion\nMarla\nMiriam\nMyra\nPatsy\nSherri\nTamara\nAlthea\nAmanda\nArnita\nDolores\nEdna\nErin\nGeorgette\nHeidi\nIngrid\nIvy\nJanette\nKay\nMona\nNatalie\nNora\nPatty\nPauline\nPenny\nSabrina\nShari\nShelly\nSheri\nThelma\nVernell\nArlene\nBecky\nChandra\nCheri\nDianna\nDona\nElisabeth\nEva\nFelicia\nGretchen\nHazel\nHenrietta\nJanis\nJenny\nJoni\nLee\nLois\nLydia\nMaxine\nTerrie\nTonya\nValencia\nVerna\nAdele\nAlberta\nAlexandra\nAllison\nAntionette\nAvis\nCamille\nCarlene\nCathleen\nCelia\nClara\nClare\nClaudette\nCornelia\nDeirdre\nDeloris\nFelecia\nGeorgia\nGinger\nJames\nJeannette\nJody\nKarin\nKathi\nKerry\nLeah\nMari\nNaomi\nRosa\nSharlene\nSheree\nTara\nTeri\nVelma\nAlfreda\nAmelia\nAurelia\nCherie\nDale\nDaphne\nDenice\nDinah\nEugenia\nEvangeline\nGreta\nJamie\nJessica\nJoanna\nJohn\nJuli\nJuliet\nLolita\nLucy\nLynette\nMarcy\nMargie\nMarietta\nMegan\nMichael\nRhoda\nRonda\nSharron\nShelby\nStacey\nSusanne\nTijuana\nTrudy\nValarie\nValeria\nVeda\nMary\nDeborah\nPatricia\nKaren\nLinda\nSusan\nSharon\nCynthia\nBarbara\nDonna\nPamela\nCheryl\nElizabeth\nDebra\nDenise\nNancy\nLisa\nDiane\nKathleen\nCarol\nRobin\nBrenda\nMargaret\nSandra\nCatherine\nDarlene\nCarolyn\nTeresa\nMichelle\nJanet\nLaura\nKathy\nJoyce\nSheila\nTheresa\nAnn\nJacqueline\nKatherine\nAngela\nDebbie\nValerie\nWanda\nChristine\nJulie\nJanice\nRenee\nStephanie\nAnne\nJoan\nLynn\nJennifer\nKathryn\nGail\nLeslie\nJean\nBeverly\nKim\nMichele\nShirley\nGloria\nHelen\nJoanne\nMaria\nTerri\nLori\nGwendolyn\nElaine\nCathy\nPaula\nTerry\nCindy\nDiana\nDorothy\nJudith\nJudy\nJane\nMartha\nRita\nVictoria\nJulia\nRegina\nRhonda\nMaureen\nPhyllis\nVeronica\nAmy\nJeanne\nVicki\nAnita\nBonnie\nRebecca\nSuzanne\nAnnette\nAndrea\nCharlene\nEllen\nKimberly\nMarie\nEileen\nFrances\nTina\nBetty\nColleen\nPeggy\nSylvia\nLoretta\nRose\nVanessa\nRuth\nYvonne\nLaurie\nJoann\nBelinda\nDawn\nLaverne\nPatrice\nVirginia\nWendy\nCaroline\nJeanette\nSarah\nGina\nSherry\nTanya\nMarcia\nAnna\nDoris\nLois\nMelissa\nMonica\nChristina\nEvelyn\nJo\nJuanita\nSally\nVickie\nAlice\nArlene\nCarla\nEmily\nConstance\nDelores\nJill\nLauren\nMarilyn\nMelanie\nDoreen\nKelly\nLorraine\nYvette\nAntoinette\nAudrey\nBeth\nJune\nRosemary\nVivian\nCassandra\nErnestine\nVera\nAdrienne\nDebora\nGeraldine\nJan\nLynne\nMarianne\nTawanna\nToni\nCharlotte\nGrace\nJoy\nSheryl\nClaudia\nDianne\nIrene\nLouise\nMarion\nMarlene\nMarsha\nNadine\nPaulette\nRamona\nSabrina\nShelia\nApril\nDana\nGayle\nJackie\nMelody\nNina\nShelley\nTammy\nYolanda\nCarrie\nClaire\nFrancine\nLenora\nMarla\nNorma\nPam\nPenny\nPriscilla\nRoberta\nRobyn\nRochelle\nSherri\nTracy\nCarole\nConnie\nGlenda\nHolly\nJody\nMarguerite\nMarian\nNatalie\nPatty\nSandy\nSara\nTamara\nAlicia\nAllison\nBecky\nBernadette\nCecelia\nCecilia\nEsther\nFelicia\nFlorence\nGladys\nIris\nLillian\nLucy\nLydia\nLynda\nMyra\nVicky\nAnnie\nDorothea\nFaith\nHeidi\nJacquelyn\nJeannette\nJenny\nKatrina\nLeigh\nPatti\nRoxanne\nTracey\nAlthea\nBernice\nBonita\nCamille\nChristy\nDesiree\nGale\nKarla\nMargo\nMildred\nMonique\nTerrie\nAlison\nBetsy\nBridget\nCeleste\nCrystal\nDoretha\nEdna\nEleanor\nJamie\nJocelyn\nKatharine\nLynette\nMelinda\nRachel\nRosalind\nRuby\nSherrie\nTawana\nTeri\nTijuana\nCheri\nClaudette\nDeirdre\nFaye\nFelecia\nHarriet\nJeannie\nKristin\nLajuan\nLillie\nLucinda\nMargie\nMaura\nMona\nNicole\nNora\nPatsy\nRobbin\nRosemarie\nSharron\nSheri\nStacy\nAmanda\nAva\nBessie\nCandace\nCarmen\nChris\nDanita\nDella\nFreda\nGay\nGinger\nJanie\nJanis\nKarin\nKay\nLawanda\nLesley\nLorie\nLorna\nMaxine\nMeredith\nMiriam\nPearl\nRachelle\nRena\nRosa\nSaundra\nSharlene\nShawn\nShelly\nStacey\nSusie\nTami\nTrina\nValarie\nWilma\nAlberta\nAlfreda\nAntionette\nArnetta\nBenita\nBette\nCelestine\nChristie\nClarice\nDaphne\nDelphine\nDolores\nDorene\nEdith\nElisabeth\nErin\nEugenia\nEva\nGinny\nHelena\nIvy\nJanine\nJeri\nKristen\nMaryann\nMindy\nMoira\nOlivia\nPortia\nRene\nShari\nSheena\nShirleen\nSue\nSusanne\nTajuana\nTawanda\nTonya\nVerna\nMary\nDeborah\nPatricia\nSusan\nKaren\nDonna\nLinda\nSharon\nCynthia\nPamela\nCheryl\nElizabeth\nBarbara\nDenise\nLisa\nDiane\nDebra\nCarol\nNancy\nBrenda\nKathleen\nRobin\nMargaret\nSandra\nCatherine\nMichelle\nSheila\nCarolyn\nTheresa\nJanet\nTeresa\nWanda\nKathy\nDebbie\nJoyce\nAnne\nAngela\nJacqueline\nLaura\nDarlene\nKim\nJanice\nCathy\nAnn\nRenee\nTina\nJulie\nValerie\nLeslie\nChristine\nCindy\nPaula\nGail\nAnita\nBeverly\nMaria\nAnnette\nJoan\nJennifer\nKathryn\nTerri\nLori\nRegina\nRhonda\nStephanie\nVictoria\nGwendolyn\nAndrea\nRebecca\nGloria\nJudith\nKatherine\nPhyllis\nShirley\nTerry\nAmy\nBetty\nJean\nVeronica\nDiana\nEllen\nJoanne\nMaureen\nMichele\nRose\nKimberly\nLynn\nHelen\nJane\nBonnie\nWendy\nDorothy\nMarie\nSuzanne\nYvonne\nVirginia\nJudy\nTammy\nCarla\nConnie\nDana\nJulia\nRuth\nSylvia\nEileen\nElaine\nLaurie\nAlice\nLoretta\nRita\nSherry\nVanessa\nFrances\nDawn\nMartha\nTanya\nKelly\nYvette\nAntoinette\nToni\nBeth\nLorraine\nSarah\nColleen\nAnna\nVicki\nCassandra\nCharlene\nGina\nJeanette\nJo\nMelissa\nSheryl\nDelores\nMarcia\nMonica\nPeggy\nTamara\nVickie\nBelinda\nConstance\nEvelyn\nSally\nCecelia\nJeanne\nAlison\nAllison\nAudrey\nChristina\nJuanita\nMarilyn\nApril\nCaroline\nCharlotte\nClaudia\nRoberta\nJill\nLois\nLouise\nMarsha\nPaulette\nTawanna\nBonita\nNina\nPatrice\nRosemary\nAdrienne\nGlenda\nJoy\nMarianne\nMelanie\nPenny\nSandy\nShelia\nSherri\nTonya\nTracy\nCarole\nCecilia\nDebora\nEdith\nEdna\nFrancine\nGrace\nMarlene\nPam\nPatty\nPriscilla\nVivian\nArlene\nJoann\nJune\nLillian\nLydia\nNadine\nShelley\nSue\nYolanda\nBeatrice\nBridget\nCheri\nDianne\nDoretha\nDoris\nEmily\nGayle\nLauren\nLynda\nMarguerite\nMarjorie\nMelody\nNatalie\nNorma\nPauline\nRachel\nShari\nTawana\nTracey\nCarmen\nEsther\nEva\nGeraldine\nHeather\nIrene\nIris\nJeannette\nLaverne\nLynette\nLynne\nMiriam\nStacey\nVera\nAmanda\nAmelia\nBernadette\nClaire\nDoreen\nFaith\nGeorgia\nHolly\nJan\nMarian\nMelinda\nMildred\nMonique\nPatti\nTeri\nValencia\nAlthea\nAntionette\nCarrie\nFelicia\nGinger\nGwen\nIda\nJanis\nJody\nMegan\nNora\nRamona\nTara\nTerrie\nThelma\nAlexandra\nAlicia\nBetsy\nColette\nCrystal\nDale\nDianna\nErin\nGermaine\nJackie\nJeannine\nKarin\nLenora\nLolita\nMarcella\nRene\nRosalind\nSara\nSherrie\nSonja\nSonya\nTrina\nTrudy\nAlfreda\nBernice\nCathleen\nDaphne\nGretchen\nHeidi\nIngrid\nJacquelyn\nJamie\nJocelyn\nJosephine\nKatie\nLora\nMargo\nMarion\nMarla\nMaxine\nMyra\nOlivia\nQueen\nRobyn\nRochelle\nRoxanne\nShelly\nStacy\nSusie\nTammie\nVicky\nAlma\nAna\nAngie\nAnnie\nBecky\nBertha\nBridgette\nBrigitte\nCandy\nDanita\nDebby\nDeirdre\nDelphine\nDesiree\nDolores\nDorothea\nEdwina\nHelena\nHelene\nJeanine\nJessica\nKatharine\nKathi\nKristin\nLeah\nLee\nLucy\nMadeline\nMargie\nMolly\nRonda\nSabrina\nSaundra\nTami\nTherese\nTijuana\nWinifred\nAdrian\nBenita\nCaryn\nCelestine\nChris\nClaudette\nEleanor\nElla\nEmma\nFaye\nFlorence\nFreda\nHarriet\nIvy\nJeannie\nJerri\nJoanna\nJodi\nKarla\nKaryn\nKatrina\nKay\nLeigh\nLucretia\nLynnette\nMamie\nMaryann\nMichael\nNoreen\nPenelope\nRenita\nRosa\nRosemarie\nShelby\nSusanne\nTamra\nTawanda\nThomasine\nTwanna\nMary\nKaren\nPatricia\nSusan\nLisa\nDonna\nSharon\nLinda\nDeborah\nCynthia\nBarbara\nPamela\nSandra\nBrenda\nCheryl\nElizabeth\nDenise\nRobin\nLaura\nCarol\nDebra\nAngela\nCatherine\nNancy\nDiane\nKathleen\nMichelle\nTheresa\nMargaret\nCarolyn\nTeresa\nKimberly\nJacqueline\nKathy\nKim\nJanet\nJanice\nSheila\nDebbie\nValerie\nStephanie\nDarlene\nAnne\nMaria\nRenee\nWanda\nAnn\nTerri\nJennifer\nJoan\nKatherine\nJoyce\nChristine\nRegina\nJudith\nJulie\nAnnette\nJean\nLori\nPaula\nPhyllis\nSuzanne\nBeverly\nCathy\nAndrea\nMaureen\nRebecca\nTina\nMichele\nCindy\nLeslie\nSarah\nJudy\nDorothy\nEllen\nTerry\nYvonne\nVeronica\nHelen\nKathryn\nGail\nLynn\nMartha\nRhonda\nTammy\nAmy\nLaurie\nMonica\nAnita\nGloria\nJane\nKelly\nMarie\nRuth\nColleen\nVictoria\nBonnie\nAlice\nGwendolyn\nWendy\nCharlene\nJoanne\nEileen\nLoretta\nShirley\nVirginia\nYvette\nSherry\nBeth\nDana\nDiana\nTracy\nBetty\nCarla\nConstance\nDawn\nJulia\nRita\nCassandra\nChristina\nFrances\nLorraine\nMarcia\nAntoinette\nBelinda\nTonya\nAnna\nElaine\nFelicia\nGina\nJuanita\nMelanie\nJeanne\nJill\nTanya\nToni\nDoris\nJoann\nLynne\nMarsha\nVanessa\nCaroline\nRoberta\nSally\nSylvia\nTracey\nJackie\nJo\nSandy\nVicki\nBernadette\nCrystal\nLynda\nSabrina\nSara\nSherri\nBonita\nCecelia\nConnie\nEvelyn\nLois\nMelissa\nRose\nSheryl\nSonya\nTawana\nAudrey\nCarole\nClaudia\nJacquelyn\nJune\nLauren\nMarilyn\nPeggy\nShari\nSue\nAdrienne\nCarrie\nDianne\nLydia\nNina\nPatty\nVickie\nAlison\nCarmen\nJeanette\nJoy\nRobyn\nTamara\nBridget\nDelores\nEdith\nEmily\nLaverne\nMildred\nNorma\nRachel\nRochelle\nRoxanne\nAllison\nCecilia\nCharlotte\nEva\nJan\nLillian\nPaulette\nSaundra\nShelley\nTawanna\nYolanda\nBrigitte\nIrene\nKatrina\nMarion\nMarjorie\nMelinda\nNatalie\nPriscilla\nRosemary\nShelia\nShelly\nArlene\nDeanna\nDeirdre\nDianna\nFaye\nFrancine\nGlenda\nHolly\nJeannette\nKay\nLouise\nMelody\nMiriam\nPam\nPatrice\nPenny\nTeri\nTherese\nAlicia\nCeleste\nChris\nDoreen\nElisabeth\nHeather\nLolita\nLucy\nMarianne\nMonique\nNadine\nRena\nSonja\nStacey\nStacy\nAlberta\nApril\nBeatrice\nBecky\nClaire\nDale\nDebora\nGeraldine\nGrace\nHeidi\nJanine\nJessica\nJocelyn\nJody\nKelley\nMarlene\nNora\nRuby\nSonia\nTerrie\nTrina\nVerna\nVicky\nVivian\nAmanda\nBetsy\nBridgette\nCamille\nCathleen\nDella\nElla\nErin\nFaith\nJanis\nJeanine\nJenny\nJoanna\nKarin\nLeigh\nLynette\nMarian\nNaomi\nPauline\nThomasine\nAlexandra\nAvis\nBenita\nBernice\nDarla\nDora\nErica\nErnestine\nFlorence\nGladys\nGretchen\nHope\nIris\nMarietta\nMaura\nMindy\nMyra\nRamona\nRosa\nShawn\nTawanda\nTowanda\nValencia\nVera\nAlfreda\nAlisa\nAlma\nAnnie\nAntionette\nBillie\nCarlene\nClare\nClaudette\nDolores\nDorothea\nDottie\nEleanor\nGabrielle\nGale\nHelena\nIda\nJames\nJayne\nJennie\nJewel\nKimberley\nLenora\nLeona\nLorrie\nLynnette\nMadeline\nMargo\nMarguerite\nMaxine\nNicole\nPatti\nRosalyn\nSusie\nTowana\nTwanna\nViola\nAgnes\nBertha\nBettina\nCecile\nChantay\nCheri\nCourtney\nCristina\nDanielle\nDenice\nElisa\nElise\nErika\nEsther\nEugenia\nEunice\nFay\nGayle\nGwen\nInga\nIngrid\nIsabel\nJamie\nJana\nJanette\nJeannie\nJosephine\nJuliet\nKristine\nLatanya\nLaurel\nLena\nLetitia\nLora\nMarcella\nMargie\nMarina\nMartina\nMaryann\nMichael\nMona\nMuriel\nPat\nPenelope\nRene\nRosalind\nShellie\nSherrie\nSondra\nSusanne\nTami\nTijuana\nTowanna\nTracie\nTwanda\nVelma\nVenita\nMary\nKaren\nLisa\nSharon\nPatricia\nSusan\nLinda\nDeborah\nDonna\nPamela\nCynthia\nRobin\nJacqueline\nBarbara\nSandra\nDenise\nCarolyn\nElizabeth\nCheryl\nAngela\nLaura\nMichelle\nBrenda\nCarol\nCatherine\nDiane\nTheresa\nKathleen\nTeresa\nDebra\nMargaret\nNancy\nKathy\nWanda\nAnne\nRenee\nKim\nLori\nSheila\nJanet\nKimberly\nJanice\nJennifer\nSuzanne\nJulie\nTerri\nValerie\nTina\nAnn\nChristine\nTammy\nDarlene\nDebbie\nMaria\nMonica\nMichele\nStephanie\nBeverly\nKelly\nYvette\nLeslie\nVictoria\nRebecca\nRegina\nVanessa\nPaula\nRhonda\nKathryn\nAmy\nAnnette\nGail\nJoyce\nEllen\nKatherine\nLaurie\nTonya\nTracy\nWendy\nHelen\nBeth\nAndrea\nGwendolyn\nCindy\nDawn\nDiana\nJean\nJoan\nChristina\nLynn\nRuth\nBonnie\nCathy\nGloria\nJudy\nShirley\nJudith\nJackie\nMaureen\nAnita\nMarie\nRita\nSherry\nCarla\nJoanne\nVeronica\nCassandra\nDorothy\nGina\nTanya\nVicki\nJane\nMarcia\nYvonne\nElaine\nToni\nTracey\nFrances\nMartha\nMelissa\nTerry\nCharlene\nDana\nPhyllis\nSarah\nVirginia\nAlice\nJeanne\nJill\nJulia\nCaroline\nLauren\nColleen\nFelicia\nApril\nShari\nAnna\nAntoinette\nConstance\nEvelyn\nLorraine\nMelanie\nBelinda\nCrystal\nEileen\nGrace\nJeanette\nRobyn\nRose\nSherri\nSylvia\nTamara\nAdrienne\nJoann\nJoy\nBetty\nConnie\nYolanda\nCarole\nJuanita\nLaverne\nNatalie\nAudrey\nBonita\nCharlotte\nDoris\nRachel\nSandy\nSonya\nStacy\nVivian\nAlicia\nCecelia\nDeirdre\nLynne\nPatrice\nShelia\nTawanna\nBernadette\nEdith\nJacquelyn\nLynda\nMarion\nMarlene\nMarsha\nPeggy\nCarrie\nDelores\nHeather\nHolly\nLoretta\nLydia\nPenny\nRoberta\nSara\nPam\nCarmen\nClaudia\nErin\nGlenda\nLois\nMarla\nMildred\nRochelle\nShelley\nVickie\nAlison\nBenita\nClare\nDaphne\nIngrid\nJune\nKatrina\nLouise\nMarianne\nNina\nNorma\nSaundra\nSheri\nStacey\nTherese\nAmanda\nArlene\nBridget\nGretchen\nJenifer\nJo\nLee\nMelinda\nPatty\nSheryl\nTami\nTara\nTawana\nEmily\nEsther\nFrancine\nGayle\nHeidi\nJeannette\nJessica\nMarilyn\nMonique\nNadine\nRamona\nRosemary\nSally\nAlexandra\nBecky\nBetsy\nDeanna\nErica\nEva\nFaye\nFelecia\nGeraldine\nIrene\nPaulette\nPauline\nPriscilla\nSabrina\nShelly\nSue\nTerrie\nTowanda\nAngie\nCecilia\nDesiree\nDianne\nJan\nJanis\nJody\nKelli\nLajuan\nLatanya\nLawanda\nLenora\nMarian\nMarjorie\nMaryann\nMegan\nRoxanne\nSheree\nSonja\nTawanda\nTeri\nValencia\nAllison\nAna\nAngel\nAntionette\nBeatrice\nBridgette\nCheri\nClaire\nColette\nDanielle\nDebora\nDianna\nDoreen\nElisabeth\nEugenia\nEvangeline\nFaith\nHarriet\nIris\nJanie\nJoanna\nKarla\nKay\nKelley\nKellie\nKimberley\nLucy\nMyra\nNaomi\nPatti\nPenelope\nRonda\nRosemarie\nSusanne\nTammie\nTraci\nValarie\nAlisa\nAmelia\nAngelia\nAvis\nBernice\nCamille\nCarmelita\nCathleen\nCeleste\nCharmaine\nChiquita\nChris\nCornelia\nDebby\nDorothea\nEleanor\nElla\nEthel\nEunice\nFlorence\nGinger\nGwen\nHilary\nJamie\nJeannine\nJohn\nKatharine\nKatie\nKristin\nKristine\nLeah\nLucinda\nLynette\nMarcella\nMaxine\nMelody\nMyrna\nNicole\nNora\nPaige\nRobbin\nRosalind\nSallie\nSelena\nSherrie\nSonia\nTrina\nVera\nVerna\nAbby\nAdele\nCarletta\nCherie\nCourtney\nDale\nDanette\nDanita\nDena\nEarlene\nElise\nErnestine\nEve\nGermaine\nGladys\nHelene\nJacquline\nJanette\nJennie\nJewel\nJocelyn\nJohnetta\nKarin\nLeila\nLetitia\nLorrie\nMaura\nMindy\nMona\nNanette\nRene\nRowena\nShannon\nShawn\nThelma\nVenus\nVernetta\nVicky\nZena\nKaren\nMary\nLisa\nLinda\nSusan\nDeborah\nSharon\nDonna\nCynthia\nPatricia\nPamela\nElizabeth\nAngela\nMichelle\nRobin\nCheryl\nBarbara\nLaura\nTheresa\nSandra\nKathleen\nDenise\nCarolyn\nJennifer\nMargaret\nSheila\nTeresa\nDiane\nJacqueline\nKimberly\nBrenda\nCarol\nDebra\nStephanie\nCatherine\nNancy\nLori\nChristine\nKim\nAnn\nMaria\nWanda\nJulie\nRenee\nLeslie\nKathy\nJanet\nTerri\nTina\nValerie\nTracy\nKelly\nAnne\nBeverly\nDarlene\nSuzanne\nTracey\nJanice\nMonica\nRhonda\nAnnette\nCathy\nAndrea\nJoyce\nSherry\nMichele\nKatherine\nAnita\nJudith\nTammy\nWendy\nVictoria\nJean\nEllen\nGwendolyn\nTanya\nAmy\nDebbie\nLynn\nRegina\nDawn\nBeth\nCarla\nShirley\nMelissa\nRebecca\nCindy\nMarie\nTerry\nTonya\nCassandra\nColleen\nJane\nPaula\nSarah\nVeronica\nSherri\nVirginia\nYvette\nJudy\nRobyn\nBelinda\nBonnie\nLaurie\nJoan\nJulia\nKathryn\nMartha\nDana\nDorothy\nGina\nPhyllis\nVicki\nChristina\nDiana\nMaureen\nGail\nGloria\nHelen\nToni\nJill\nYvonne\nFelicia\nJoanne\nSheryl\nCharlene\nFrances\nMelanie\nRita\nAntoinette\nJeanne\nCrystal\nAlice\nEileen\nTamara\nCarole\nLoretta\nNatalie\nAnna\nCaroline\nRose\nRuth\nVanessa\nAllison\nConnie\nEvelyn\nJoann\nJuanita\nNina\nPenny\nSandy\nShari\nBetty\nDianne\nJackie\nJeanette\nJoy\nLynne\nStacey\nMarcia\nMarsha\nApril\nBonita\nConstance\nDeanna\nElaine\nLorraine\nRoberta\nSherrie\nTracie\nAlicia\nBridget\nKatrina\nLynda\nSara\nShelia\nSylvia\nBernadette\nCarmen\nDeirdre\nMarjorie\nMelinda\nRosemary\nSally\nSonya\nStacy\nYolanda\nAlison\nDaphne\nGeraldine\nGlenda\nJeannette\nJessica\nMonique\nDoris\nFrancine\nHolly\nShelley\nShelly\nTara\nTawanda\nVicky\nCarrie\nCecilia\nClaire\nDelores\nDianna\nEmily\nIris\nLeigh\nLouise\nMarian\nMarion\nMarlene\nMyra\nNadine\nPam\nPeggy\nRachel\nSheri\nTawanna\nVickie\nArlene\nAudrey\nCecelia\nGrace\nJamie\nJo\nKarla\nKristin\nPriscilla\nRamona\nRochelle\nSabrina\nTawana\nAdrienne\nDoretha\nJacquelyn\nKimberley\nLolita\nLynette\nNorma\nPatrice\nTowanda\nVivian\nBecky\nBenita\nCharlotte\nCheri\nClaudia\nDanielle\nDesiree\nDina\nFaith\nHeather\nLaverne\nLois\nPatty\nRosa\nTowanna\nVera\nAlesia\nDeidre\nErin\nEva\nJune\nKelli\nLavonne\nLeah\nLillian\nLydia\nRene\nShawn\nTammie\nValencia\nAmanda\nBeatrice\nBetsy\nColette\nDoreen\nHazel\nIrene\nIvy\nJenny\nJody\nJoni\nKelley\nKristen\nLiz\nLora\nMarguerite\nMarilyn\nMaura\nMelody\nMona\nPatti\nRoxanne\nSaundra\nAntionette\nBridgette\nCherie\nDena\nEleanor\nElisa\nErnestine\nEve\nGayle\nGeneva\nGinger\nHeidi\nHelene\nJan\nJanine\nJosephine\nJustine\nKara\nKarin\nKay\nKerry\nLawanda\nLee\nMadeline\nMarcella\nMargo\nMarianne\nMarina\nMaxine\nNaomi\nNicole\nPaulette\nRosalind\nSonia\nSonja\nTeri\nTraci\nTrina\nAlfreda\nAmelia\nAvis\nBobbie\nCandace\nCeleste\nClaudette\nCornelia\nDebora\nDenice\nEdwina\nErica\nEsther\nFlorence\nGwen\nJoanna\nJocelyn\nKaryn\nKatie\nKrista\nLajuan\nLashawn\nLatonya\nLillie\nLucy\nLynnette\nMiriam\nNanette\nPauline\nTerrie\nTiffany\nTonia\nVernell\nViola\nAlisa\nAllyson\nAngel\nAngie\nBethany\nBrigitte\nCelestine\nCelia\nChristie\nCourtney\nDale\nDarla\nDolores\nEdna\nFelecia\nFreda\nGale\nGeorgia\nGermaine\nGretchen\nInga\nIngrid\nJacalyn\nJanis\nJeannie\nJodi\nKate\nKellie\nKristine\nLauren\nLorna\nMarcy\nMarietta\nMarisa\nMarla\nMaryann\nNora\nShannon\nSharlene\nSharron\nSimone\nSondra\nSophia\nSusanne\nTami\nTammi\nThelma\nTherese\nThomasine\nVernita\nLisa\nMary\nKaren\nSusan\nPatricia\nDeborah\nLinda\nDonna\nElizabeth\nRobin\nSharon\nPamela\nAngela\nCynthia\nMichelle\nCheryl\nKimberly\nDenise\nJacqueline\nBarbara\nTheresa\nSandra\nTeresa\nJennifer\nLaura\nStephanie\nMaria\nBrenda\nMargaret\nTammy\nCatherine\nKathleen\nCarol\nChristine\nNancy\nWanda\nLori\nTina\nDiane\nKim\nTracy\nPaula\nCarolyn\nLeslie\nDarlene\nJulie\nSheila\nRenee\nKelly\nValerie\nAnne\nAndrea\nDebra\nAmy\nJanet\nKathy\nDana\nMichele\nMonica\nAnita\nBeverly\nRhonda\nDebbie\nRebecca\nTerri\nAnnette\nKatherine\nAnn\nJoyce\nSarah\nYvette\nRegina\nSuzanne\nCharlene\nChristina\nCindy\nVeronica\nTonya\nWendy\nGail\nJoan\nTracey\nJanice\nSherry\nJoanne\nVictoria\nCathy\nCarla\nCassandra\nDawn\nGloria\nJudith\nTerry\nAnna\nDiana\nEllen\nGwendolyn\nMarie\nGina\nDorothy\nJean\nLaurie\nMelissa\nShirley\nKathryn\nTanya\nLynn\nMartha\nMelanie\nSherri\nCrystal\nHelen\nRuth\nSheryl\nVirginia\nEileen\nJulia\nRobyn\nAntoinette\nMaureen\nStacey\nBonnie\nConnie\nLorraine\nRose\nStacy\nVickie\nSylvia\nBeth\nElaine\nJane\nYvonne\nAlice\nColleen\nMarsha\nPhyllis\nTamara\nJeanette\nRita\nVanessa\nVivian\nFrances\nJill\nJudy\nPenny\nVicki\nAdrienne\nApril\nRochelle\nSonya\nYolanda\nNatalie\nAlicia\nAllison\nDaphne\nDelores\nHolly\nJessica\nJoann\nRachel\nFelicia\nJeanne\nKatrina\nBelinda\nBernadette\nCarmen\nCarole\nEmily\nJuanita\nMarcia\nPeggy\nRoberta\nShelia\nAlison\nBetty\nBonita\nConstance\nKerry\nLolita\nLynne\nMarilyn\nMelinda\nPam\nCharlotte\nDoris\nKarla\nLauren\nLoretta\nSara\nSharron\nDianne\nEvelyn\nGayle\nKara\nLatonya\nLois\nLynda\nMarion\nMonique\nNina\nShelly\nToni\nTraci\nBridget\nCarrie\nClaudia\nDeanna\nFrancine\nHeidi\nMarlene\nMaxine\nNicole\nPatrice\nPaulette\nShari\nShelley\nTawanna\nAudrey\nCaroline\nDeirdre\nHeather\nJacquelyn\nJeannette\nMildred\nPriscilla\nRamona\nSally\nShannon\nSheri\nTawana\nVera\nVicky\nDoreen\nEleanor\nGeraldine\nJune\nLawanda\nMarianne\nPatty\nRosemary\nSandy\nDeidre\nDesiree\nEva\nJoanna\nKelley\nKimberley\nLeigh\nLynette\nMelody\nMiriam\nNadine\nTawanda\nTracie\nTrina\nAlisa\nAngelia\nCathleen\nCecelia\nDora\nElisa\nErica\nGlenda\nJackie\nJanine\nKelli\nKristin\nLora\nLouise\nLydia\nMarla\nMolly\nSonja\nTara\nTowanda\nValencia\nZina\nAna\nBeatrice\nBecky\nBernice\nDanielle\nDianna\nDolores\nErin\nErnestine\nFelecia\nGladys\nGretchen\nGwen\nIris\nJo\nKristen\nLaverne\nLenora\nLillian\nLorrie\nMarjorie\nNaomi\nNora\nSabrina\nTammie\nTherese\nTijuana\nAlexandra\nAlexis\nAlfreda\nArlene\nAvis\nBridgette\nCaren\nCecilia\nClaudette\nCourtney\nDale\nEdith\nHelena\nHilary\nHillary\nInga\nIrene\nJamie\nJenny\nJodi\nJoy\nKarin\nKristina\nKristine\nLeah\nMarcella\nMichael\nNorma\nRena\nRosa\nSaundra\nShawn\nSherrie\nSonia\nStacie\nTami\nThelma\nVenus\nZena\nAdriene\nAmanda\nAntonia\nBetsy\nBrigitte\nCaryn\nCeleste\nCheri\nClara\nClarissa\nDoretha\nDorothea\nEdward\nElisabeth\nEsther\nFreda\nGeorgia\nHope\nJennie\nJewel\nKendra\nKrista\nLadonna\nLoren\nLorri\nMindy\nNannette\nPatti\nShirl\nStefanie\nSusie\nTricia\nAbby\nAlesia\nAntionette\nBettina\nCandace\nCara\nCherie\nChris\nClaire\nClare\nDarla\nElise\nEmma\nEunice\nFaith\nFlora\nGabrielle\nGeneva\nGinger\nHattie\nHenrietta\nJeanine\nKaryn\nKatie\nKirsten\nLana\nLee\nLetitia\nLorie\nLorna\nMargo\nMarquita\nMelva\nMeredith\nMeta\nMillicent\nMimi\nMiranda\nNanette\nOlivia\nPenelope\nRosalind\nRosalyn\nShelby\nSheree\nSue\nSusanne\nThomasine\nTia\nTowana\nTrudy\nTwanna\nVernell\nWilma\nLisa\nMary\nKaren\nAngela\nSusan\nPatricia\nDeborah\nElizabeth\nMichelle\nPamela\nSharon\nKimberly\nDonna\nLinda\nJacqueline\nCynthia\nLaura\nDenise\nRobin\nJennifer\nSandra\nCheryl\nDiane\nKathleen\nTeresa\nBarbara\nTracy\nBrenda\nStephanie\nChristine\nTheresa\nCatherine\nKim\nCarolyn\nMaria\nCarol\nJulie\nDawn\nNancy\nMargaret\nRenee\nDarlene\nTina\nValerie\nAmy\nWanda\nAnn\nWendy\nAndrea\nKelly\nLeslie\nMonica\nDebra\nKatherine\nAnne\nTonya\nKathy\nLori\nJanet\nSheila\nTammy\nTerri\nRegina\nRhonda\nKathryn\nMichele\nAnnette\nSarah\nRebecca\nPaula\nTracey\nJanice\nDana\nAnita\nMelissa\nCrystal\nDiana\nTanya\nYvette\nCarla\nSuzanne\nVeronica\nCharlene\nLynn\nJoyce\nDorothy\nJoanne\nVictoria\nChristina\nColleen\nHelen\nPhyllis\nShirley\nBeverly\nDebbie\nGwendolyn\nAlice\nJulia\nMarie\nYolanda\nGina\nMaureen\nGail\nJane\nMelanie\nYvonne\nSylvia\nEllen\nTamara\nAllison\nAntoinette\nJeanne\nJoan\nRobyn\nTerry\nAlicia\nElaine\nSherry\nAnna\nBeth\nCathy\nCindy\nDeneen\nEileen\nLaurie\nSherri\nJudy\nVirginia\nBelinda\nBonnie\nFelicia\nGloria\nJean\nKatrina\nApril\nJackie\nJill\nJuanita\nRuth\nConstance\nMartha\nRita\nEvelyn\nFrances\nHeather\nMarcia\nStacy\nCaroline\nJudith\nLorraine\nBetty\nNina\nPaulette\nVanessa\nAudrey\nDianne\nJeanette\nMelinda\nPatrice\nSabrina\nToni\nCassandra\nJessica\nJoy\nLawanda\nNatalie\nRachel\nStacey\nVicki\nCarmen\nConnie\nDoris\nRose\nTraci\nArlene\nLauren\nLynda\nLynette\nMarilyn\nMonique\nNicole\nSonya\nAdrienne\nAlexandra\nHolly\nJoann\nLoretta\nMarsha\nSally\nSonja\nTawanna\nAmanda\nBernadette\nBridget\nBridgette\nCarole\nDelores\nJodi\nLaverne\nPeggy\nPenny\nRoberta\nRochelle\nShelley\nTammie\nAlison\nCarrie\nCharlotte\nClaudia\nDeanna\nElisabeth\nHope\nLolita\nLynne\nMelody\nShari\nShelly\nSheryl\nVickie\nZina\nDoreen\nEva\nIrene\nIris\nKarla\nKellie\nLouise\nMarjorie\nPriscilla\nSara\nSheri\nStacie\nSue\nTara\nTracie\nBonita\nCathleen\nDanielle\nDeirdre\nDianna\nDora\nEmily\nFelecia\nIngrid\nJocelyn\nKara\nMargo\nMarion\nSaundra\nTawanda\nVicky\nCecelia\nCecilia\nEleanor\nElisa\nErin\nEugenia\nGrace\nHeidi\nHelene\nJacquelyn\nJan\nJeannette\nJo\nKarin\nKristin\nLora\nNadine\nPam\nSandy\nTawana\nValarie\nVivian\nAngie\nAntionette\nBenita\nErika\nFrancine\nGlenda\nJanine\nJoanna\nJody\nKelley\nKristine\nLashawn\nLatonya\nLeah\nMarguerite\nMarian\nMiriam\nMolly\nTeri\nThomasine\nTowanda\nAlisa\nAngelia\nBetsy\nClaire\nClaudette\nCourtney\nDeidra\nDeidre\nDesiree\nDina\nElena\nEve\nGretchen\nJenny\nKelli\nKirsten\nKristi\nLee\nLois\nMarla\nMarlene\nMildred\nNora\nNorma\nRamona\nRene\nRobbin\nRosa\nRosalind\nShelia\nSonia\nSusie\nThelma\nTiffany\nTonia\nVonda\nCamille\nCeleste\nCheri\nChristy\nClare\nDolores\nDoretha\nEdith\nErica\nEsther\nFaith\nGlynis\nGreta\nHelena\nJanie\nJeannine\nKate\nKris\nKristen\nLajuan\nLeigh\nLillian\nLydia\nMarianne\nMarina\nMona\nMyra\nNanette\nPatti\nPauline\nRonda\nRosemarie\nRosemary\nRoxanne\nRuby\nSherrie\nTami\nTrina\nValencia\nAllyson\nAngel\nBecky\nChantay\nChris\nCristina\nDanette\nDee\nDorothea\nElla\nErnestine\nEthel\nGay\nGayle\nGeneva\nGeorgia\nGeraldine\nGladys\nHarriet\nJames\nJanis\nJewell\nJune\nKaryn\nKimberley\nLashon\nLatanya\nLenora\nLesley\nLetitia\nLorri\nLorrie\nLucia\nMara\nMarci\nMarietta\nMartina\nMaryann\nMeg\nMegan\nMia\nPatty\nRachael\nRachelle\nRenae\nRenetta\nSamantha\nShannon\nSharlene\nShawn\nSondra\nSusanne\nTerrie\nTonja\nTwanda\nYolonda\nLisa\nKaren\nMary\nAngela\nKimberly\nSusan\nMichelle\nDeborah\nPatricia\nSharon\nCynthia\nPamela\nElizabeth\nDonna\nLaura\nLinda\nDenise\nCheryl\nRobin\nJacqueline\nChristine\nJennifer\nStephanie\nMonica\nKim\nTheresa\nDawn\nMaria\nTracy\nCatherine\nSandra\nKathleen\nBarbara\nTeresa\nWendy\nJulie\nMargaret\nCarolyn\nMichele\nRenee\nKelly\nRhonda\nWanda\nNancy\nTina\nBrenda\nTammy\nTracey\nAndrea\nDebra\nAmy\nCarol\nAnne\nKatherine\nTonya\nSheila\nValerie\nYvette\nPaula\nDiane\nChristina\nMelissa\nRebecca\nCrystal\nVictoria\nLori\nLeslie\nSuzanne\nAnnette\nDarlene\nAnn\nJanice\nTanya\nMartha\nAnita\nDana\nJanet\nKathy\nMonique\nSarah\nStacey\nYolanda\nGina\nTerri\nVeronica\nBeth\nCarla\nMaureen\nRegina\nSherry\nDebbie\nDiana\nJill\nJoyce\nKathryn\nMarie\nCharlene\nFelicia\nLaurie\nBeverly\nShirley\nEllen\nSherri\nAlice\nAlicia\nJuanita\nVirginia\nCindy\nJane\nJean\nAllison\nGloria\nJoan\nJulia\nPhyllis\nYvonne\nGwendolyn\nMelanie\nAntoinette\nColleen\nDianne\nKatrina\nRita\nSonya\nAnna\nEileen\nFrances\nRuth\nVanessa\nElaine\nHeather\nJoanne\nJudith\nLynn\nVickie\nApril\nBonnie\nCathy\nDanielle\nSheri\nSylvia\nCaroline\nHeidi\nJudy\nKristin\nCassandra\nJeanette\nKecia\nMarcia\nStacy\nTerry\nBernadette\nHelen\nJessica\nMia\nTamara\nAdrienne\nConstance\nEvelyn\nJeanne\nLauren\nSheryl\nVicki\nGail\nHolly\nJoann\nLynette\nMarilyn\nMarjorie\nMelody\nPenny\nShelly\nTraci\nBetty\nJackie\nJodi\nKellie\nLoretta\nLorraine\nMarsha\nNatalie\nNicole\nRachel\nRose\nToni\nDeanna\nDorothy\nEmily\nKimberley\nLatonya\nLolita\nLynda\nPaulette\nRobyn\nSara\nShelley\nAmanda\nKristen\nLashawn\nLouise\nMelinda\nPatrice\nRosalind\nSamantha\nTawana\nVivian\nAngelia\nAudrey\nBelinda\nBenita\nBridgette\nConnie\nHope\nJanine\nKara\nKarin\nMarlene\nPriscilla\nRoberta\nRoxanne\nShelia\nSonia\nStacie\nTracie\nAlexandra\nClaudia\nCourtney\nEva\nIngrid\nJeannette\nJo\nJoy\nKristina\nKristine\nLawanda\nMarion\nRochelle\nSally\nTrina\nAlison\nCathleen\nDaphne\nEsther\nIris\nJacquelyn\nJamie\nKarla\nKelli\nLillian\nLynne\nNadine\nNina\nPeggy\nSabrina\nTammie\nValencia\nCarrie\nElisabeth\nFaith\nFrancine\nFreda\nKelley\nMegan\nMyra\nShari\nShawn\nSonja\nTeri\nTonia\nTwanda\nVonda\nAna\nCandace\nCara\nCarmen\nCharlotte\nCherie\nDeidre\nDoris\nJan\nLaverne\nMarian\nMiriam\nMoira\nNaomi\nRonda\nSusanne\nTawanna\nVera\nAlisa\nAnnie\nAntionette\nBeatrice\nBonita\nBridget\nCarole\nCeleste\nDianna\nDina\nElena\nErica\nErika\nErin\nGayle\nGlenda\nGrace\nMarianne\nNora\nPatti\nRene\nTara\nTawanda\nAdrianne\nAgnes\nAngie\nAva\nCecelia\nCecilia\nCheri\nClaire\nClare\nColette\nDanette\nDeirdre\nDelores\nDeneen\nDesiree\nDionne\nDoreen\nEdna\nElise\nHilary\nJacquline\nJana\nJocelyn\nJune\nJustine\nKirsten\nKrista\nLatonia\nLeigh\nLesa\nLorrie\nLydia\nMarisa\nPam\nRosalyn\nRosemary\nSandy\nSarita\nSaundra\nSherrie\nSophia\nTami\nTerrie\nTiffany\nTonja\nVicky\nAdina\nAlfreda\nAlthea\nAngelique\nArlene\nBecky\nBridgett\nBrigitte\nCandice\nDolores\nEdith\nFelecia\nFlorence\nGinger\nIrene\nJenny\nJoanna\nJuliette\nKatie\nKendra\nKerry\nLajuan\nLesley\nLorri\nMarguerite\nMaxine\nMeredith\nMolly\nMona\nRosa\nShannon\nShirl\nStefanie\nSuzette\nValeria\nValorie\nZina\nLisa\nKimberly\nMary\nKaren\nMichelle\nAngela\nJennifer\nDeborah\nSusan\nElizabeth\nCynthia\nPatricia\nPamela\nLaura\nSharon\nKim\nDonna\nTracy\nChristine\nCheryl\nDenise\nJacqueline\nLinda\nKathleen\nTonya\nStephanie\nAmy\nTheresa\nSandra\nBarbara\nRobin\nMichele\nJulie\nMaria\nTeresa\nTracey\nCatherine\nKelly\nMargaret\nCarolyn\nMonica\nAnne\nDawn\nTina\nAndrea\nBrenda\nValerie\nRenee\nDebra\nLori\nKatherine\nSheila\nRegina\nRhonda\nLeslie\nDiane\nNancy\nTammy\nAnn\nMelissa\nDana\nCarol\nWendy\nYvette\nChristina\nRebecca\nTanya\nNicole\nTerri\nWanda\nCarla\nGina\nPaula\nVictoria\nAnita\nAnnette\nStacey\nDarlene\nKathryn\nSuzanne\nJanet\nJill\nJoyce\nSarah\nFelicia\nJanice\nVeronica\nBeverly\nStacy\nAnna\nEllen\nYolanda\nBonnie\nDiana\nMaureen\nApril\nLauren\nLaurie\nMarie\nAlicia\nCharlene\nMonique\nVanessa\nCassandra\nColleen\nSherri\nSonya\nDorothy\nHeather\nNatalie\nTracie\nYvonne\nAmanda\nKathy\nPhyllis\nSherry\nCaroline\nGwendolyn\nJane\nJean\nMartha\nBeth\nCharlotte\nCrystal\nGail\nJoan\nJulia\nKatrina\nJudith\nTraci\nCathy\nGloria\nLatonya\nRachel\nSamantha\nCindy\nHelen\nTerry\nTrina\nVicki\nVirginia\nJessica\nLynda\nSabrina\nShannon\nTamara\nAlice\nDeirdre\nKristine\nLynn\nNina\nRuth\nConstance\nDanielle\nEvelyn\nJuanita\nKristen\nRobyn\nSonja\nAllison\nBridget\nErin\nHope\nKristin\nRita\nShawn\nShirley\nSylvia\nAdrienne\nBridgette\nDebbie\nFrances\nJeanne\nJoy\nKimberley\nTara\nToni\nAntoinette\nEileen\nElaine\nJoanne\nJodi\nJudy\nLoretta\nMelanie\nShelley\nShelly\nSheryl\nVickie\nVivian\nAudrey\nBonita\nCarrie\nDeanna\nJeanette\nJoann\nPaulette\nSandy\nSheri\nCourtney\nHeidi\nMelinda\nRochelle\nShelia\nTawana\nBelinda\nEleanor\nElisabeth\nFaith\nIris\nJackie\nKrista\nLaverne\nLynette\nLynne\nMarcia\nNadine\nPenny\nSonia\nTawanna\nBernadette\nConnie\nDoris\nEmily\nKarla\nKristina\nLajuan\nLorraine\nMarian\nMarianne\nMarilyn\nPaige\nSherrie\nTawanda\nTonia\nAlexandra\nAlison\nBeatrice\nCarmen\nCathleen\nDelores\nDianna\nGrace\nIngrid\nJacquelyn\nJanine\nJody\nLesley\nLora\nMarcella\nMarlene\nNoelle\nPatrice\nRoberta\nRose\nStacie\nTabatha\nTia\nValencia\nAnthony\nClaudia\nDeidre\nEva\nFrancine\nHilary\nInga\nJeannette\nJoanna\nKarin\nKelley\nKirsten\nLashawn\nLillian\nLydia\nMarsha\nMegan\nMelody\nMiriam\nNora\nPeggy\nSara\nSerena\nTiffany\nTonja\nAlisa\nAudra\nCandace\nCarole\nCatrina\nCecilia\nChantay\nClaire\nDaphne\nDesiree\nDianne\nGeraldine\nGlenda\nJo\nLashaun\nLatanya\nLee\nLolita\nMia\nMona\nNaomi\nRene\nRosa\nRosalind\nRoxanne\nShari\nSophia\nStefanie\nUrsula\nAngelia\nBecky\nBetty\nBrigette\nBrigitte\nCamille\nCara\nCharmaine\nDanita\nDena\nDoreen\nEdith\nElena\nElisa\nErica\nErika\nEthel\nGayle\nGreta\nHolly\nJenny\nJustine\nKelli\nKellie\nLashon\nLauri\nLeah\nLouise\nMarguerite\nMarion\nMarisa\nMarjorie\nMaura\nNorma\nRamona\nSharron\nSusanne\nTherese\nValarie\nVenus\nAimee\nAna\nAngie\nAnnie\nArlene\nAvis\nCelestine\nClara\nClare\nColette\nCourtenay\nDeana\nDeneen\nDenice\nDina\nDionne\nDominique\nElise\nEugenia\nGale\nHarriet\nHelena\nJames\nJamie\nKendra\nKerry\nLara\nLatonia\nLatrice\nLeigh\nLena\nLorna\nMara\nMargo\nMindy\nMolly\nMyra\nNoreen\nPriscilla\nRonda\nRosemary\nRoxane\nSarita\nSaundra\nSheree\nSue\nTatia\nThea\nThelma\nVernita\nVicky\nWendi\nLisa\nKimberly\nMichelle\nKaren\nAngela\nMary\nElizabeth\nJennifer\nStephanie\nPamela\nTracy\nSharon\nPatricia\nSusan\nLaura\nDenise\nDeborah\nCynthia\nSandra\nMelissa\nChristine\nRobin\nAmy\nTheresa\nLinda\nTonya\nDonna\nMaria\nMonica\nJacqueline\nWendy\nDawn\nCatherine\nKathleen\nKelly\nTeresa\nCheryl\nAndrea\nMichele\nTina\nMargaret\nSheila\nBarbara\nTracey\nJulie\nChristina\nSabrina\nDebra\nKim\nCarolyn\nTammy\nValerie\nKatherine\nLeslie\nNancy\nAnne\nBrenda\nRegina\nRenee\nTanya\nVictoria\nRhonda\nYvette\nDiane\nLori\nPaula\nAnn\nCarol\nApril\nVeronica\nNicole\nSuzanne\nStacey\nSarah\nYolanda\nCrystal\nRebecca\nTerri\nDana\nGina\nCarla\nKristin\nVanessa\nAnita\nAnnette\nWanda\nDiana\nFelicia\nSherri\nCharlene\nKathryn\nKatrina\nStacy\nBeth\nColleen\nLashawn\nYvonne\nJanet\nJanice\nSonya\nMonique\nSherry\nBernadette\nEllen\nJulia\nMarie\nDarlene\nKathy\nLynn\nCassandra\nHeather\nAnna\nAntoinette\nJill\nJuanita\nMelanie\nMaureen\nJean\nJoyce\nJudith\nLaurie\nTrina\nGwendolyn\nJeanette\nNina\nAlicia\nHelen\nJoy\nKristen\nLauren\nNatalie\nSara\nKimberley\nPatrice\nRachel\nTamara\nTonia\nBelinda\nCaroline\nDorothy\nGail\nHolly\nJane\nJessica\nSamantha\nVirginia\nAlisa\nBonnie\nCourtney\nDeanna\nErika\nJoanne\nMelinda\nPaulette\nRochelle\nStefanie\nAdrienne\nAllison\nDebbie\nEileen\nGloria\nJoan\nToni\nTraci\nAmanda\nAudrey\nBeverly\nEvelyn\nKristina\nMegan\nShawn\nSheri\nTerry\nAlexandra\nAlice\nBridget\nCharlotte\nJoann\nKristine\nLorraine\nRuth\nTara\nVicki\nVivian\nAlison\nCindy\nDanielle\nDionne\nEmily\nJeanne\nLara\nLeigh\nLolita\nLynette\nMarsha\nPeggy\nRita\nRobyn\nRose\nShelly\nTiffany\nClaudia\nHeidi\nMarcia\nShelia\nShelley\nSylvia\nTracie\nAntionette\nElaine\nErin\nHope\nLatonya\nLawanda\nLynda\nMartha\nMia\nShirley\nVickie\nCarrie\nConnie\nConstance\nGrace\nJacquelyn\nLeah\nNadine\nNatasha\nPhyllis\nRonda\nAretha\nCarole\nClaire\nFrances\nIngrid\nJudy\nKari\nLatanya\nLesley\nLoretta\nLouise\nNichelle\nRoberta\nSally\nSherrie\nAna\nArlene\nAudra\nBridgette\nCamille\nCathy\nCheri\nDeirdre\nDoris\nElena\nErica\nJanine\nJo\nJoanna\nJody\nLashon\nMargo\nMarilyn\nMarjorie\nRomona\nShannon\nShari\nSharron\nSheryl\nSonia\nSophia\nStaci\nTawana\nTawanna\nVicky\nBernice\nBetty\nCathryn\nCharnita\nCristina\nDaphne\nDenice\nDesiree\nDoreen\nJackie\nKarin\nKarla\nKelli\nKerry\nKirsten\nLaverne\nLillian\nMarion\nMeredith\nMiriam\nOlivia\nPriscilla\nRaquel\nTania\nTerrie\nTijuana\nValarie\nValencia\nAngelia\nAnissa\nCarmen\nClara\nDebora\nEva\nFrancine\nGeorgia\nGlenda\nJanell\nJeannette\nJenny\nJohanna\nKelley\nLajuan\nLashan\nLashaun\nLucy\nMarlene\nMindy\nMolly\nMona\nNaomi\nNorma\nRene\nRosa\nRoslyn\nSharlene\nSheree\nSonja\nStacie\nTawanda\nAbigail\nAdrian\nAlberta\nAlexis\nAlisia\nBeatrice\nBonita\nCandice\nCara\nCarletta\nCathleen\nCatrina\nCecelia\nChandra\nCherie\nChiquita\nChristie\nChristy\nDeena\nEdith\nElisa\nElisabeth\nElla\nEsther\nFlorence\nGale\nGermaine\nGiselle\nJanie\nJeanine\nJeannie\nJeannine\nJodi\nJoelle\nKara\nKendra\nLadonna\nLanette\nLea\nLeanne\nLee\nLenora\nLydia\nMarci\nMarquita\nMartina\nMelody\nMichell\nPauline\nRenita\nRosemarie\nRoxanne\nSarita\nShellie\nSimone\nSuzette\nTammi\nTasha\nTonja\nUrsula\nLisa\nMichelle\nKimberly\nJennifer\nKaren\nAngela\nMary\nSusan\nElizabeth\nLaura\nTracy\nPamela\nChristine\nStephanie\nSharon\nMelissa\nMonica\nAmy\nRobin\nDeborah\nPatricia\nDonna\nAndrea\nMichele\nLinda\nTonya\nChristina\nKathleen\nKelly\nSandra\nCynthia\nDawn\nCrystal\nBarbara\nDenise\nJulie\nTheresa\nMaria\nLeslie\nCatherine\nJacqueline\nWendy\nCheryl\nKim\nRenee\nCarolyn\nTracey\nTammy\nTanya\nKatherine\nMargaret\nDiane\nRegina\nAnne\nTeresa\nVictoria\nTina\nYolanda\nPaula\nRebecca\nNicole\nRhonda\nCarla\nDebra\nNancy\nDiana\nValerie\nAnn\nLori\nKatrina\nCarol\nSarah\nSheila\nSuzanne\nGina\nHeather\nStacey\nMonique\nJulia\nTerri\nJanice\nLashawn\nDarlene\nLynn\nRachel\nSherry\nDana\nStacy\nVeronica\nFelicia\nKathryn\nSonya\nBrenda\nCharlene\nTraci\nKristen\nShannon\nAlicia\nAnita\nColleen\nJanet\nJessica\nJill\nMarie\nTamara\nAnna\nCassandra\nSabrina\nHolly\nKristin\nVanessa\nWanda\nJoyce\nSherri\nYvette\nEllen\nErin\nLynette\nRuth\nTracie\nAdrienne\nAlice\nAntoinette\nDionne\nHelen\nMegan\nAnnette\nBeth\nCindy\nCourtney\nEvelyn\nKristine\nLauren\nNichelle\nSamantha\nApril\nDanielle\nElaine\nGloria\nShelley\nTara\nToni\nYvonne\nBernadette\nEmily\nKathy\nMelanie\nSara\nTammie\nTrina\nAllison\nGwendolyn\nJoanne\nMarcia\nPatrice\nRobyn\nTonia\nAmanda\nBeverly\nBonnie\nBridget\nDorothy\nErika\nJudith\nKimberley\nLaurie\nMartha\nNatalie\nShelly\nSheri\nTiffany\nAlexandra\nAngelique\nBelinda\nErica\nJane\nJodi\nJuanita\nMelinda\nRonda\nShawn\nSonja\nCarrie\nDeirdre\nJean\nKara\nKristina\nMaureen\nAlisa\nCarmen\nCaroline\nCharlotte\nClaudia\nGail\nJeanette\nJoy\nKelley\nKelli\nLara\nLatonya\nMeredith\nRita\nRochelle\nTerry\nVicki\nVirginia\nVivian\nChristy\nConstance\nDeena\nJoan\nJoanna\nKerry\nMarsha\nStacie\nBonita\nConnie\nHope\nIris\nNina\nRamona\nRaquel\nSheryl\nTammi\nTricia\nAbigail\nAlison\nArlene\nAudrey\nCathy\nDeana\nDeanna\nDebbie\nDesiree\nDoris\nElisabeth\nFrancine\nJamie\nJo\nJoann\nLeah\nLolita\nLora\nLorraine\nMia\nMolly\nPenny\nSandy\nShirley\nAretha\nDelores\nEileen\nElise\nHeidi\nHilary\nJeannette\nKarin\nKatharine\nLadonna\nLena\nLesley\nMarla\nMarlene\nMelody\nMiranda\nRose\nShari\nSophia\nSylvia\nTawanda\nAlthea\nAngie\nAnissa\nAshley\nAudra\nBeatrice\nBecky\nBridgette\nCara\nCecelia\nClaire\nColette\nDina\nEthel\nFrances\nJenifer\nJudy\nKendra\nKirsten\nKristi\nLynda\nNatasha\nRoberta\nSaundra\nSonia\nTami\nTia\nValarie\nAna\nAngelia\nAngelina\nBetty\nCamille\nCandy\nCarole\nCatrina\nCeleste\nChandra\nCheri\nCoretta\nDanita\nDebora\nDeneen\nElena\nEricka\nEva\nGrace\nIngrid\nJacquelyn\nJeanne\nJohanna\nLaverne\nLea\nLetitia\nLillian\nLorrie\nLouise\nLynne\nMarcella\nMarilyn\nMarion\nMarisa\nNoelle\nPaulette\nPauline\nRosa\nSelena\nSusanne\nTherese\nTowanda\nValeria\nWendi\nAileen\nAnnemarie\nCaren\nCarletta\nClaudette\nDaphne\nDianna\nDianne\nDolores\nDominique\nFaye\nFelecia\nFlorence\nGayle\nGillian\nIrene\nJody\nJosette\nKarla\nKellie\nKia\nKrista\nKristie\nKristy\nLana\nLashon\nLee\nLeigh\nLoretta\nLydia\nMarjorie\nMarlo\nMichael\nMichell\nMiriam\nMona\nNoel\nNorma\nPeggy\nPhyllis\nPriscilla\nRandi\nSally\nSharron\nSherita\nSherrie\nTabatha\nTabitha\nTamiko\nTawana\nTeri\nTomiko\nVera\nVicky\nLisa\nKimberly\nJennifer\nMichelle\nKaren\nAngela\nMary\nStephanie\nTracy\nPamela\nLaura\nSusan\nElizabeth\nChristine\nPatricia\nNicole\nDeborah\nCynthia\nChristina\nAmy\nJulie\nTheresa\nDawn\nMelissa\nMonica\nSharon\nCheryl\nKelly\nJacqueline\nKathleen\nDonna\nTeresa\nTonya\nDenise\nAndrea\nHeather\nLinda\nTina\nKatherine\nLeslie\nMaria\nTracey\nYolanda\nCatherine\nMichele\nTammy\nSandra\nBarbara\nRhonda\nRobin\nLori\nWendy\nRenee\nDana\nVictoria\nCrystal\nMargaret\nRachel\nTanya\nStacy\nValerie\nNancy\nAnne\nFelicia\nRebecca\nBrenda\nCarolyn\nShannon\nAlicia\nCarla\nRegina\nStacey\nKim\nSabrina\nAnn\nSarah\nKristin\nDebra\nKatrina\nVeronica\nErica\nJulia\nLashawn\nMonique\nCarol\nJill\nPaula\nSonya\nSuzanne\nDanielle\nDiane\nTerri\nKristen\nWanda\nAnita\nApril\nBeth\nErin\nSamantha\nSheila\nVanessa\nAnna\nCassandra\nGina\nKathryn\nCharlene\nJanice\nLynn\nSara\nTara\nJessica\nRochelle\nErika\nSherry\nCindy\nJanet\nJudith\nToni\nYvette\nAllison\nHelen\nLauren\nNichole\nTiffany\nDiana\nKelli\nLaurie\nSheri\nTamara\nAlexandra\nKimberley\nMarcia\nMelanie\nTraci\nAdrienne\nElaine\nKristina\nPatrice\nTrina\nColleen\nEllen\nJoyce\nKara\nKathy\nLatonya\nMegan\nAmanda\nAntoinette\nDarlene\nShirley\nTracie\nCaroline\nDionne\nHolly\nJuanita\nKelley\nKirsten\nLara\nPaulette\nAlison\nCherie\nCourtney\nGwendolyn\nHeidi\nJane\nJoann\nLashaun\nLolita\nMelinda\nRonda\nSonia\nYvonne\nBonnie\nCarmen\nDorothy\nEileen\nEmily\nGloria\nKristine\nLashon\nLeigh\nLynette\nNatalie\nShawn\nShelly\nBridget\nDeanna\nEvelyn\nHope\nJeanne\nJoan\nMarie\nMaureen\nMeredith\nSherri\nSonja\nAnnette\nBelinda\nDeirdre\nMartha\nNina\nRachelle\nRuth\nShelia\nSophia\nStacie\nStefanie\nVicki\nVirginia\nAlice\nAlisa\nAudrey\nCarrie\nConnie\nDebbie\nFrances\nIngrid\nJacquelyn\nKeisha\nKellie\nKerry\nLorraine\nMarsha\nRobyn\nValencia\nAngel\nCharlotte\nChristy\nClaudia\nDanita\nDelores\nDina\nJean\nKarin\nLatanya\nMia\nRosalind\nShelley\nSheryl\nTammie\nTania\nTawana\nTonia\nAngelique\nAnissa\nAudra\nDeena\nJoanne\nJoy\nJuliet\nKarla\nLoretta\nMelody\nMona\nPenny\nStella\nSylvia\nTonja\nTricia\nVivian\nArlene\nBenita\nBeverly\nBridgette\nCamille\nCathy\nCatrina\nCeleste\nChandra\nElena\nGail\nJoanna\nJodi\nKendra\nLawanda\nLorna\nLynne\nMarjorie\nMarlo\nMartina\nMiriam\nMolly\nNaomi\nNatasha\nNichelle\nRita\nRoberta\nSerena\nTabitha\nAlethea\nAlexis\nAna\nAntionette\nBernadette\nCandace\nCecilia\nConstance\nDaphne\nDesiree\nDianne\nDoris\nElisa\nFrancine\nJamie\nJeannette\nKecia\nKrista\nLouise\nLynda\nMarnie\nPaige\nRena\nRoxanne\nSharlene\nSharron\nTami\nTammi\nTawanda\nVickie\nAretha\nAshley\nBecky\nBrooke\nChrista\nCristina\nDeana\nDebora\nDena\nEdith\nGeraldine\nGretchen\nHilary\nIrene\nIris\nIvy\nJeanette\nJohanna\nJudy\nKatharine\nLajuan\nLavonne\nLesley\nLora\nMarian\nMarianne\nMarilyn\nMarion\nMaxine\nMeghan\nNadine\nPhyllis\nRaquel\nRene\nRosalyn\nSally\nTabatha\nTasha\nTawanna\nTerry\nUrsula\nWendi\nAimee\nAngelia\nAngie\nBetty\nCarole\nCharmaine\nCherise\nChristiana\nCoretta\nDeidra\nDeidre\nDeshawn\nDolores\nDora\nElisabeth\nErnestine\nEugenia\nGlenda\nGrace\nHillary\nJenifer\nJenny\nJewel\nJo\nJodie\nJustine\nKristi\nKristie\nKristy\nLatisha\nLaverne\nLeah\nLee\nLetitia\nMarci\nMarisa\nMarla\nPauline\nPhoebe\nRobbin\nRose\nRosemary\nSaundra\nShari\nSharonda\nShawna\nShea\nStaci\nSuzette\nSydney\nTia\nTisha\nJennifer\nKimberly\nMichelle\nLisa\nAngela\nKaren\nElizabeth\nNicole\nStephanie\nAmy\nTracy\nMary\nLaura\nPamela\nChristine\nChristina\nMelissa\nCynthia\nMonica\nCrystal\nSusan\nHeather\nTonya\nDawn\nKelly\nPatricia\nDeborah\nDonna\nMichele\nYolanda\nShannon\nSharon\nAndrea\nJulie\nSabrina\nWendy\nTammy\nCatherine\nDenise\nStacey\nRebecca\nLashawn\nRenee\nKatherine\nRobin\nTracey\nMaria\nSarah\nCheryl\nLinda\nSandra\nTara\nBarbara\nDana\nMargaret\nKathleen\nLeslie\nTanya\nTeresa\nTheresa\nTina\nKim\nErin\nRhonda\nJacqueline\nMonique\nDanielle\nFelicia\nStacy\nVictoria\nCarla\nLori\nRegina\nDionne\nValerie\nWanda\nAlicia\nVeronica\nKristin\nRachel\nAnita\nCarolyn\nCarrie\nKatrina\nAmanda\nDiana\nAnne\nKathryn\nTiffany\nAnn\nAntoinette\nJessica\nNancy\nSherry\nApril\nCarol\nLauren\nJill\nPaula\nSuzanne\nBrenda\nCassandra\nDebra\nErica\nMelanie\nVanessa\nYvette\nCharlene\nKristen\nErika\nSheila\nTonia\nAllison\nColleen\nTamara\nEmily\nAdrienne\nAlisa\nDiane\nEllen\nJanet\nJulia\nPatrice\nNatalie\nKelli\nLatonya\nLeah\nSamantha\nTerri\nAnna\nBeth\nBeverly\nCaroline\nMegan\nTraci\nAlexandra\nAlison\nBonnie\nDarlene\nGina\nMarie\nSherri\nSonya\nTracie\nKimberley\nJanice\nKristina\nLajuan\nLara\nMaureen\nSheryl\nCarmen\nChristy\nCindy\nDeanna\nDorothy\nJudith\nMarcia\nRochelle\nShawn\nShelly\nAlice\nAnnette\nBridget\nEileen\nJoan\nJoanne\nJoyce\nKathy\nKristine\nLolita\nLynn\nRonda\nShirley\nToni\nAshley\nHeidi\nHelen\nKellie\nKirsten\nLaurie\nLorraine\nSara\nStefanie\nTawana\nTrina\nYvonne\nCandace\nCherie\nEricka\nGwendolyn\nHolly\nJane\nKrista\nMarsha\nMeredith\nRuth\nTammie\nVicki\nVivian\nElaine\nFrances\nJean\nJeanne\nJoanna\nKara\nKarla\nKeisha\nKendra\nNatasha\nPriscilla\nRita\nRosalind\nShelley\nTia\nAngelique\nCandice\nCathy\nCharlotte\nChristie\nClaudia\nFrancine\nGail\nGloria\nIris\nJocelyn\nJoy\nJuanita\nMarian\nNichelle\nNichole\nPaulette\nSonia\nBernadette\nCamille\nCharnita\nDanita\nDeidre\nEleanor\nElena\nEvelyn\nIrene\nJoann\nLoretta\nLynette\nMartha\nPhyllis\nRoxanne\nSharron\nSonja\nSylvia\nTammi\nVirginia\nAngel\nBelinda\nBridgett\nCarletta\nChandra\nCourtney\nDesiree\nGretchen\nIngrid\nJamie\nKia\nLashon\nLawanda\nLee\nLeigh\nLesley\nLydia\nMarjorie\nMelinda\nRachael\nRobyn\nTabitha\nTawanna\nTerry\nTricia\nAimee\nAlexis\nAna\nArlene\nAudrey\nChrista\nGinger\nGrace\nJeanette\nJeanine\nJeannine\nKarin\nKatharine\nKelley\nLillian\nMarianne\nMarla\nMia\nMolly\nNadine\nPaige\nRamona\nRose\nSerena\nStacie\nTisha\nToya\nTyra\nValencia\nVickie\nWillette\nBetty\nBobbie\nBridgette\nCheri\nClaire\nColette\nConnie\nConstance\nDemetria\nDena\nDianne\nGlenda\nIndia\nJanine\nJenifer\nJudy\nKaryn\nLavonne\nMarion\nMarlo\nMarquita\nMildred\nMiriam\nRenita\nRolanda\nSandy\nShawna\nSherrie\nTisa\nUrsula\nWendi\nAnastasia\nAnjanette\nCara\nCarlita\nCarole\nCeleste\nCorinne\nCristina\nDanette\nDaphne\nDebora\nDenita\nDetra\nDietra\nDina\nEdith\nElisa\nEve\nGabrielle\nGenevieve\nHope\nJan\nJewell\nJodi\nJohanna\nJuliet\nKerry\nKimberlee\nKristy\nKrystal\nLatanya\nLatonia\nLorrie\nMarcy\nMarilyn\nMarina\nMaura\nMaxine\nMaya\nMelody\nMyra\nPeggy\nRaquel\nRobert\nRoberta\nRoslyn\nShana\nShauna\nShelia\nSheri\nSilvia\nTasha\nTawanda\nTerrie\nVeda\nVicky\nJennifer\nMichelle\nLisa\nAngela\nKimberly\nNicole\nKaren\nStephanie\nAmy\nElizabeth\nMary\nMelissa\nChristine\nHeather\nTracy\nLaura\nMonica\nChristina\nSusan\nCynthia\nCrystal\nDenise\nDawn\nPamela\nSarah\nSharon\nAndrea\nPatricia\nRobin\nTonya\nJulie\nDeborah\nDana\nKelly\nLashawn\nCatherine\nTheresa\nYolanda\nErica\nRebecca\nTina\nDonna\nRenee\nStacey\nWendy\nJacqueline\nKathleen\nMaria\nTammy\nTara\nTiffany\nKathryn\nRegina\nSabrina\nAnne\nBarbara\nKatherine\nStacy\nTanya\nTeresa\nShannon\nLinda\nRhonda\nCheryl\nDionne\nFelicia\nLeslie\nApril\nErin\nJessica\nNancy\nAllison\nErika\nKatrina\nMargaret\nMonique\nRachel\nSandra\nMichele\nTracey\nDiane\nKristin\nVictoria\nDanielle\nTerri\nVeronica\nAdrienne\nCarolyn\nLatonya\nLori\nCharlene\nYvette\nAnn\nAnna\nBrenda\nCarla\nCassandra\nDebra\nJill\nMelanie\nAmanda\nColleen\nKim\nNatalie\nShirley\nAntoinette\nEricka\nPatrice\nWanda\nDarlene\nDiana\nNichole\nSamantha\nSheila\nSherry\nSuzanne\nAnita\nCourtney\nMarie\nNatasha\nCarol\nHolly\nJanet\nLatanya\nMegan\nSonya\nTracie\nVanessa\nAlicia\nCarrie\nJoyce\nStacie\nTamara\nValerie\nAlison\nJulia\nKristina\nLynn\nAnnette\nJanice\nPaula\nSara\nVirginia\nChristy\nGwendolyn\nKristen\nRita\nShawn\nTrina\nYvonne\nAngel\nCarmen\nEllen\nGloria\nJuanita\nKendra\nMartha\nShelley\nAlexandra\nGina\nKia\nRochelle\nTawanna\nTia\nBeth\nDorothy\nHeidi\nHelen\nJoan\nJudith\nKathy\nKelley\nLauren\nMarcia\nRobyn\nShelly\nTraci\nAlice\nBelinda\nBeverly\nCaroline\nCindy\nIngrid\nKirsten\nLara\nMaureen\nMolly\nNichelle\nTawana\nBridget\nCristina\nDesiree\nJoanna\nKara\nKristie\nKristine\nLajuan\nLeah\nMelinda\nMeredith\nSherri\nSonja\nTasha\nCandice\nCathy\nChristie\nEmily\nEvelyn\nHope\nIndia\nJane\nJean\nJoy\nLaurie\nLawanda\nNikki\nValencia\nAnissa\nBonnie\nCamille\nCandace\nDemetria\nDoris\nEdith\nJamie\nJeanne\nKeisha\nKerry\nLashaun\nLynette\nMia\nRamona\nTabitha\nTerry\nAna\nCherie\nDanita\nDaphne\nDeanna\nJody\nKarin\nKelli\nKisha\nMarsha\nPhyllis\nRachael\nRoberta\nRuth\nSheryl\nTammie\nTricia\nVicki\nAlisa\nAllyson\nAnika\nBernadette\nClaire\nEileen\nGail\nHilary\nJocelyn\nLashon\nMeghan\nMelody\nMichael\nNina\nPaulette\nPenny\nRachelle\nRose\nShana\nSherita\nSherrie\nSonia\nStaci\nStefanie\nTarsha\nTawanda\nToni\nTonia\nAdrian\nAimee\nAudrey\nAyanna\nBetty\nBonita\nChandra\nColette\nElaine\nElena\nElisabeth\nEva\nGinger\nJacquelyn\nJanel\nJeanette\nJoanne\nJuliet\nKarla\nKaryn\nKesha\nKeshia\nLatasha\nLetitia\nLorie\nLorraine\nLydia\nMalaika\nMargo\nMarjorie\nNjeri\nNneka\nRaquel\nRonda\nRoxanne\nSally\nSylvia\nTherese\nTisha\nTowanda\nVivian\nAmber\nAntonia\nArlene\nAva\nBobbie\nCatrina\nCeleste\nChantal\nCharlotte\nCharmaine\nClaudia\nConnie\nConstance\nCorinne\nDebbie\nDeirdre\nDelores\nDemetra\nDianne\nDina\nFaith\nGermaine\nGlenda\nGrace\nHelena\nIris\nJanelle\nJewell\nJoann\nJodi\nJohanna\nKate\nKatharine\nKenya\nKenyetta\nKimberley\nKrista\nKristi\nKristy\nLadonna\nLakisha\nLashonda\nLatricia\nLee\nLillian\nLily\nLynda\nLynnette\nMara\nMarci\nMarianne\nMarla\nMarlene\nNicolle\nOctavia\nSandy\nSelena\nShawna\nShelby\nSheri\nTami\nTammi\nTania\nTera\nToya\nTyra\nVenus\nJennifer\nMichelle\nLisa\nKimberly\nAngela\nNicole\nStephanie\nElizabeth\nAmy\nMelissa\nChristine\nKaren\nMary\nCrystal\nAndrea\nRebecca\nSarah\nTanya\nYolanda\nHeather\nLaura\nKelly\nJulie\nSharon\nMonica\nCynthia\nDana\nDawn\nKatina\nTonya\nSusan\nPatricia\nKatrina\nLashawn\nPamela\nTracy\nTara\nCatherine\nJessica\nChristina\nErica\nWendy\nCheryl\nKatherine\nShannon\nMichele\nMonique\nTheresa\nDeborah\nDenise\nKathleen\nMaria\nRachel\nTammy\nApril\nTeresa\nTina\nRobin\nErin\nLeslie\nSandra\nBarbara\nErika\nFelicia\nStacy\nLori\nDonna\nKathryn\nTiffany\nKristin\nLinda\nRhonda\nStacey\nDanielle\nJacqueline\nMelanie\nRenee\nVanessa\nAlicia\nAllison\nKristen\nSabrina\nTracey\nTracie\nCarrie\nNancy\nTamara\nCatina\nDiane\nVictoria\nDebra\nMarie\nPatrice\nMargaret\nPaula\nAlison\nBeverly\nCarolyn\nDiana\nNatasha\nRegina\nRochelle\nSheila\nSuzanne\nAlexandra\nAnna\nAnne\nCarla\nCarol\nCaroline\nCassandra\nEricka\nJill\nKeisha\nKim\nNichole\nTrina\nValerie\nAnita\nHolly\nJulia\nMegan\nNikki\nTerri\nAnn\nBrenda\nDarlene\nEmily\nNatalie\nShelley\nVeronica\nLatanya\nNina\nAmanda\nCharlene\nDionne\nLatonya\nSherry\nWanda\nAdrienne\nAntoinette\nKimberley\nMelinda\nCarmen\nFrances\nGwendolyn\nHelen\nJuanita\nKendra\nLara\nLynn\nMaureen\nSara\nSherri\nTraci\nAnnette\nIndia\nJanet\nKara\nKirsten\nKisha\nKristi\nMartha\nRita\nSharron\nSonya\nVirginia\nBelinda\nHope\nJoanna\nJoyce\nKristina\nLakesha\nLakisha\nLatrice\nLauren\nLaurie\nMia\nStacie\nTasha\nTia\nAlisa\nBeth\nChristy\nClaudia\nColleen\nDorothy\nGina\nHeidi\nKeesha\nLatisha\nLynette\nMelody\nNadine\nRobyn\nSonja\nSylvia\nTawana\nToni\nAngel\nAnika\nBonnie\nCindy\nCristina\nDemetria\nElisabeth\nEllen\nJanice\nJeanette\nJoy\nKatrice\nLajuan\nLatonia\nLolita\nLora\nMarcia\nSamantha\nSonia\nTisha\nYvette\nAlice\nAshley\nAyanna\nBridgette\nChamisa\nCourtney\nDominique\nJoann\nKarin\nKeri\nKristine\nLoretta\nMeghan\nMeredith\nShawn\nShelly\nTeri\nAbigail\nAimee\nAna\nAngelique\nCamilla\nCandace\nCatrina\nChandra\nCharlotte\nConstance\nDeanna\nElena\nJamie\nJane\nJeanne\nJeannine\nJenny\nJewel\nJoanne\nKelli\nLatasha\nLeah\nLillian\nMildred\nPaulette\nRosalind\nRuth\nSerena\nShirley\nTameka\nVicki\nYolonda\nAlexis\nAmber\nAmie\nBernadette\nBridget\nConnie\nDanita\nDeirdre\nDesiree\nElaine\nGail\nGretchen\nJean\nJudith\nKarla\nKathy\nKenyatta\nKia\nKristie\nKristy\nLashaun\nLashon\nLawanda\nLeigh\nMarsha\nMiriam\nNneka\nRonda\nRose\nShanita\nSheree\nSheri\nStefanie\nTania\nTarsha\nTawanna\nValencia\nVelvet\nAntionette\nAudrey\nBenita\nBrooke\nCathy\nCherie\nChiquita\nChrista\nChristie\nChrystal\nDeidra\nEbony\nEileen\nElisha\nEmma\nEsther\nEvelyn\nFrancine\nGinger\nIrene\nJacquelyn\nJeanine\nJenifer\nJocelyn\nKesha\nKeya\nLashone\nLatrina\nLavon\nLorraine\nLynda\nMalinda\nMara\nMarilyn\nMarjorie\nMolly\nNichelle\nNikita\nNora\nPhyllis\nRachelle\nRamona\nRoberta\nSelena\nShawna\nSherrie\nSherron\nSophia\nSusanna\nTamika\nTawanda\nTerry\nTisa\nTricia\nTyra\nYvonne\nJennifer\nKimberly\nMichelle\nNicole\nLisa\nAmy\nAngela\nElizabeth\nStephanie\nHeather\nMelissa\nKaren\nMonica\nChristine\nRebecca\nSarah\nAndrea\nKelly\nLaura\nChristina\nShannon\nJessica\nMary\nJulie\nKatherine\nLashawn\nTamara\nTracy\nCatherine\nDeborah\nSusan\nPamela\nPatricia\nErica\nKatrina\nMonique\nTanya\nTiffany\nCrystal\nDanielle\nDenise\nErin\nCynthia\nTheresa\nYolanda\nApril\nDana\nKatina\nTara\nWendy\nDawn\nErika\nTonya\nMelanie\nSharon\nTammy\nEmily\nAnne\nKathleen\nKathryn\nMichele\nRobin\nAlicia\nAmanda\nCheryl\nKeisha\nCarolyn\nKristin\nMaria\nMegan\nSabrina\nNatasha\nRachel\nRhonda\nStacy\nAllison\nAnna\nBarbara\nJacqueline\nLinda\nTeresa\nTina\nFelicia\nKristen\nSandra\nSara\nStacey\nValerie\nVictoria\nMelinda\nTracey\nDonna\nRegina\nCarla\nJulia\nSheila\nAlison\nBrenda\nLeslie\nMargaret\nRenee\nVanessa\nVeronica\nAdrienne\nAnn\nCarrie\nDionne\nNancy\nSherry\nSuzanne\nTia\nYvette\nAlexandra\nHolly\nKristina\nTrina\nAlexis\nKara\nKim\nLatonya\nLauren\nMeredith\nNina\nPaula\nShelley\nSonya\nTracie\nDiana\nDiane\nKenya\nKerry\nLatasha\nLori\nRobyn\nDarlene\nDominique\nJuanita\nNichole\nTameka\nAimee\nAnita\nBridget\nCaroline\nCharlene\nColleen\nEllen\nJanice\nLakisha\nPatrice\nShawn\nBeth\nCatina\nCindy\nJill\nJoanna\nJoy\nKendra\nSherri\nShirley\nTerri\nCarol\nCassandra\nClaire\nDeanna\nDebra\nJamie\nKarla\nKrista\nLatanya\nMarie\nMaureen\nNikki\nRochelle\nSamantha\nStacie\nTasha\nAngel\nAudrey\nCandace\nCristina\nEricka\nHope\nJanet\nJoyce\nKathy\nKia\nKimberley\nKirsten\nKisha\nLadonna\nLara\nLynette\nLynn\nWanda\nAngelique\nAntoinette\nCarmen\nDebbie\nDemetria\nDorothy\nElaine\nIngrid\nJean\nLesley\nMeghan\nNatalie\nSherrie\nSonja\nTamika\nAbigail\nAisha\nAshley\nAyanna\nBelinda\nCandice\nCeleste\nCharmaine\nChristy\nEileen\nGinger\nGlenda\nGloria\nHeidi\nKatharine\nKeesha\nKeri\nKristi\nKristine\nLatisha\nLeah\nMarcia\nMarisa\nMarlene\nRebekah\nRita\nShanita\nSheri\nStefanie\nTania\nTerry\nAnika\nAntonia\nCara\nChanda\nChantel\nChristie\nClaudia\nConstance\nDanita\nDoris\nElisa\nEvelyn\nFrances\nGenevieve\nGina\nGwendolyn\nHelen\nJamila\nJane\nKarin\nKatie\nKesha\nLakeesha\nLakeisha\nLakeshia\nLatrice\nLaurie\nMoira\nOctavia\nPauline\nSelena\nSharron\nSonia\nSylvia\nTawanna\nTisha\nToni\nTonia\nTraci\nAlexa\nAlisha\nAmber\nAngie\nAnnette\nBernadette\nBeverly\nBianca\nBonita\nBrandi\nBrandy\nBridgette\nBrooke\nCamille\nCaryn\nCathy\nChiquita\nCicely\nClarissa\nCourtney\nDavida\nDeena\nDianna\nFatima\nFrancine\nGabrielle\nGeneva\nGeraldine\nIrene\nJanine\nJenny\nJoanne\nJocelyn\nJohanna\nJuliette\nKari\nKelley\nKelli\nKimberlee\nLatarsha\nLawanda\nLolita\nLorraine\nMalaika\nMarjorie\nMartha\nMelody\nMia\nMiriam\nNicola\nNikita\nPaulette\nRaquel\nRosemary\nShana\nSherita\nSheryl\nSimone\nTiffanie\nTracee\nValencia\nVirginia\nVivian\nVonetta\nYvonne\nJennifer\nKimberly\nLisa\nMichelle\nNicole\nElizabeth\nAngela\nAmy\nHeather\nKaren\nStephanie\nJessica\nRebecca\nMelissa\nChristina\nChristine\nSarah\nLaura\nMary\nDawn\nAndrea\nKatherine\nKelly\nMonica\nTanya\nSusan\nTiffany\nTracy\nLakisha\nShannon\nKathleen\nLashawn\nCrystal\nRachel\nErin\nPamela\nPatricia\nBarbara\nCynthia\nMonique\nCatherine\nErica\nJulie\nKristen\nAlicia\nAmanda\nNakia\nNatasha\nDanielle\nDeborah\nMegan\nTara\nTonya\nSandra\nTina\nWendy\nErika\nKristin\nTamara\nCarrie\nDana\nJacqueline\nMaria\nMichele\nRobin\nSharon\nTracey\nStacey\nAllison\nEmily\nKathryn\nKatrina\nAnne\nCarolyn\nMargaret\nStacy\nYolanda\nCarla\nCheryl\nColleen\nDenise\nJill\nKara\nKeisha\nKisha\nLatasha\nNichole\nRhonda\nTheresa\nRegina\nVictoria\nCassandra\nDonna\nLatonya\nLori\nMelanie\nPatrice\nRenee\nSara\nValerie\nAnna\nApril\nDiana\nFelicia\nLeslie\nTeresa\nKim\nSonya\nAnn\nDionne\nEbony\nDiane\nJoy\nKristina\nAdrienne\nAlexandra\nAlison\nAntoinette\nCourtney\nLatoya\nTamika\nTasha\nVeronica\nBrenda\nHolly\nLatisha\nMeredith\nNatalie\nNikki\nSuzanne\nTanisha\nTerri\nAisha\nAnita\nBridget\nCandace\nDebra\nJoanna\nKesha\nKia\nLakesha\nLinda\nMeghan\nRobyn\nTammy\nTia\nVanessa\nBeth\nDarlene\nJamie\nJoyce\nLauren\nLeah\nNancy\nCandice\nCarol\nCaroline\nDemetria\nEricka\nEvelyn\nGail\nJanet\nJuanita\nLakeisha\nLatanya\nLatrice\nLaurie\nSherry\nTarsha\nVirginia\nYvette\nAlexis\nAlice\nDorothy\nJeanette\nKelley\nKendra\nKristie\nLatarsha\nRashida\nRochelle\nRuth\nSabrina\nStacie\nSylvia\nTracie\nAngel\nChiquita\nElisabeth\nEva\nHeidi\nHelen\nJamila\nJanice\nJean\nJocelyn\nKenya\nKristine\nLara\nMaureen\nPaula\nShawn\nToni\nWanda\nAnika\nCamille\nCara\nCeleste\nChandra\nChristie\nCindy\nConstance\nCristina\nDominique\nEileen\nJulia\nKathy\nKatie\nKatina\nKelli\nKeri\nKerry\nLynn\nMalika\nNakisha\nNina\nSamantha\nSharron\nSheila\nSherri\nTawana\nTosha\nVonetta\nAlisa\nAmber\nAngie\nBonnie\nCaren\nCaryn\nChante\nCharlene\nChrista\nClaire\nElisa\nEllen\nGloria\nGwendolyn\nIvy\nJane\nJoann\nJohanna\nKatharine\nKellie\nKimberley\nLadonna\nLakeshia\nLatosha\nLucinda\nLydia\nMelinda\nNikia\nNora\nOlivia\nRachael\nRachelle\nRose\nShelley\nSheri\nShirley\nSonja\nTameka\nTania\nVenus\nVivian\nAdrian\nAimee\nAlisha\nAna\nAnnette\nAsha\nAyanna\nBernadine\nBeverly\nBillie\nBrooke\nCarmen\nConnie\nDanita\nDeanna\nDeidre\nDelores\nGrace\nHelena\nJanine\nJeanne\nJoan\nJodi\nJohn\nKeesha\nKerri\nKevin\nKrista\nLakia\nLakita\nMarcia\nMarie\nMarla\nMarsha\nMartha\nMartina\nMia\nMiriam\nMolly\nMyra\nNia\nNichelle\nPriscilla\nRaquel\nRoberta\nRonda\nShelby\nShenita\nSheree\nStefanie\nTanika\nTonia\nJennifer\nAmy\nMichelle\nKimberly\nNicole\nElizabeth\nHeather\nLisa\nStephanie\nJessica\nMelissa\nChristina\nTiffany\nAngela\nMary\nSarah\nKelly\nKaren\nRebecca\nLaura\nAndrea\nTamika\nCrystal\nErica\nLakisha\nChristine\nSusan\nMonica\nKatherine\nRachel\nAmanda\nErin\nDanielle\nDawn\nMargaret\nRobin\nShannon\nTracy\nMaria\nCynthia\nPatricia\nCatherine\nDana\nJulie\nKathryn\nKeisha\nMonique\nSharon\nTheresa\nYolanda\nEbony\nJacqueline\nLashawn\nLeslie\nMelanie\nTamara\nTara\nEmily\nKristen\nNatasha\nApril\nMegan\nNakia\nTanya\nWendy\nDenise\nKatrina\nSandra\nCourtney\nKathleen\nRenee\nStacey\nDonna\nKia\nKisha\nKristin\nTeresa\nTonya\nLakeisha\nVictoria\nLauren\nTammy\nAlison\nAllison\nErika\nMarie\nSabrina\nValerie\nVanessa\nAdrienne\nAlicia\nFelicia\nKendra\nSamantha\nJill\nJoy\nLori\nMichele\nPamela\nRhonda\nSara\nTracey\nVirginia\nAlexandra\nCaroline\nMeredith\nTia\nAnna\nCarrie\nDeborah\nDionne\nJulia\nKristina\nLatasha\nBrenda\nChristie\nDiane\nJoanna\nKim\nLatoya\nMelinda\nStacy\nTina\nAlexis\nCheryl\nColleen\nLinda\nNatalie\nNikki\nShelly\nTamiko\nAmber\nAnne\nAnnette\nBrandy\nCarla\nDiana\nLatisha\nLatonya\nNikia\nPatrice\nPaula\nRegina\nSuzanne\nAnn\nCarolyn\nCindy\nDorothy\nHope\nJenny\nKenya\nKesha\nLatanya\nLeah\nLydia\nMarcia\nMaureen\nRochelle\nSherry\nVeronica\nAimee\nAisha\nAngel\nBarbara\nCamille\nCandice\nChristy\nEricka\nHolly\nJamie\nKelley\nLaurie\nMisty\nNancy\nNia\nYvette\nAshley\nBetty\nBridget\nCara\nFrances\nGina\nIndia\nIvy\nLara\nNina\nRashida\nSonya\nTerri\nYvonne\nAngie\nCarey\nCharlene\nClaire\nDarlene\nEllen\nEvelyn\nHeidi\nHelen\nJamila\nJanet\nJanice\nJenifer\nJoyce\nKirsten\nKristine\nLatosha\nNichole\nRobyn\nShana\nShelley\nSherita\nSherri\nSylvia\nTasha\nTomeka\nTraci\nAlice\nAnika\nAntoinette\nAsia\nAyanna\nBeth\nBonnie\nBrooke\nCarmen\nCassandra\nClaudia\nElisa\nHannah\nJean\nJeanine\nKatharine\nKerri\nKerry\nLolita\nMichael\nNikita\nNikkia\nStaci\nTameka\nTanisha\nTarsha\nAngelique\nAnita\nAyesha\nBelinda\nCarol\nChandra\nChiquita\nConstance\nDominique\nEleanor\nGail\nGwendolyn\nIngrid\nJaime\nJane\nJeanette\nJoanne\nJohanna\nJudith\nKanika\nKara\nKelli\nKellie\nKristie\nLakesha\nLatarsha\nLesley\nRena\nRosa\nRuth\nSheila\nStacie\nTamica\nTracie\nTricia\nWhitney\nAbigail\nAlisha\nAlyssa\nAnastasia\nAnissa\nBeverly\nCandace\nCeleste\nCharlotte\nCharnita\nCherie\nDara\nDeanna\nEugenia\nGabrielle\nGladys\nGretchen\nHilary\nJanelle\nJeanne\nJocelyn\nJosephine\nJuanita\nKate\nKatina\nKeesha\nLatricia\nLawanda\nLetitia\nLynn\nMalika\nMarilyn\nMarjorie\nMaya\nMolly\nNaomi\nNichelle\nNora\nShalita\nShani\nShawna\nSheryl\nTakisha\nTameca\nTawanda\nTerry\nTonia\nTrina\nVenus\nWanda\nZenobia\nJennifer\nNicole\nKimberly\nMichelle\nElizabeth\nAmy\nChristina\nAngela\nMelissa\nStephanie\nLisa\nJessica\nSarah\nHeather\nKeisha\nTiffany\nRebecca\nKatherine\nAndrea\nErin\nSusan\nLakisha\nShannon\nKaren\nLaura\nAmanda\nMary\nMonica\nTamika\nChristine\nDawn\nNatalie\nKelly\nRachel\nDanielle\nLauren\nLatoya\nMaria\nCrystal\nEmily\nCatherine\nMegan\nApril\nErica\nJulie\nLashawn\nSara\nCynthia\nKathleen\nMonique\nTameka\nEbony\nKatrina\nCarrie\nKathryn\nPatricia\nTracy\nTamara\nTanya\nCourtney\nStacey\nYolanda\nKristin\nMelanie\nSharon\nStacy\nKisha\nMichele\nTara\nAisha\nAllison\nDeborah\nRobin\nSabrina\nDana\nErika\nJacqueline\nJaime\nJoy\nMargaret\nVeronica\nAlicia\nAnne\nCarolyn\nKristen\nVictoria\nNakia\nPatrice\nRenee\nSandra\nWendy\nMeredith\nNatasha\nTina\nAlison\nDenise\nHolly\nLatonya\nAnn\nCarla\nCheryl\nFelicia\nJamie\nKristina\nLatasha\nLatisha\nPamela\nRhonda\nTammy\nValerie\nAdrienne\nBarbara\nDiana\nLakeisha\nLeslie\nTia\nAnna\nKendra\nAshley\nLakesha\nMeghan\nSamantha\nAlexandra\nBrenda\nRegina\nSuzanne\nTheresa\nTonya\nAbigail\nCandice\nCaroline\nHope\nJill\nJoanna\nJulia\nKelli\nKerry\nLori\nTasha\nTeresa\nToni\nTracey\nAmber\nBrandy\nColleen\nKim\nLeah\nLindsay\nMia\nNancy\nRashida\nRobyn\nAimee\nAngel\nAnita\nCharlene\nChristy\nClaudia\nKellie\nLatanya\nMarisa\nMaureen\nMelinda\nNikki\nSheila\nShelley\nSherry\nSonia\nTanisha\nCarol\nGina\nGretchen\nJenifer\nJohanna\nKesha\nLatarsha\nLinda\nMarcia\nRonda\nTennille\nVanessa\nAlisha\nAna\nAyana\nBianca\nCamille\nCarey\nCathy\nCharmaine\nDeanna\nDonna\nHannah\nKara\nKatharine\nKathy\nKelley\nKia\nLakeshia\nMarie\nNadia\nTerri\nYvonne\nAlice\nBecky\nBelinda\nBridget\nBrooke\nCarmen\nChanel\nCherie\nChristie\nCindy\nDarlene\nDiane\nGloria\nHeidi\nJenny\nJuanita\nKarin\nKarla\nKeisa\nKirsten\nKristy\nLatrice\nLaurie\nLeigh\nMartha\nNakisha\nNaomi\nOctavia\nRebekah\nShani\nSheena\nShelly\nSherri\nTraci\nWanda\nAlexis\nAlisa\nBeverly\nBonnie\nBrandi\nCandace\nDesiree\nDominique\nEva\nFatima\nGrace\nJanice\nJeanette\nJocelyn\nLawanda\nLynn\nMiriam\nNikia\nPaula\nRachelle\nRuth\nShawn\nTanika\nTori\nTosha\nYvette\nAngie\nAnika\nAnnette\nAntoinette\nAyanna\nCassandra\nCeleste\nConstance\nDebra\nDione\nDonnetta\nEboni\nEdith\nEleanor\nEllen\nFrances\nHelen\nHollie\nJamila\nKate\nKenya\nKeya\nKristal\nKristi\nKristine\nLara\nLorraine\nMolly\nNakita\nNichole\nNina\nNora\nOlivia\nRasheda\nShanika\nShanna\nShari\nShayla\nSherita\nSophia\nStefanie\nTakiyah\nTawanna\nTonia\nTricia\nValencia\nVirginia\nJennifer\nKimberly\nElizabeth\nMichelle\nNicole\nKelly\nJessica\nSarah\nAngela\nChristina\nShannon\nLisa\nMelissa\nStephanie\nHeather\nMary\nTiffany\nErin\nAmy\nCrystal\nChristine\nKatherine\nKeisha\nLaura\nAmanda\nRebecca\nKaren\nRachel\nCatherine\nEmily\nLatoya\nSara\nErica\nJulie\nDana\nKathleen\nLakisha\nMonica\nNatasha\nAllison\nPatricia\nApril\nMargaret\nTamika\nAisha\nAndrea\nDawn\nMegan\nMonique\nNatalie\nDanielle\nKathryn\nKristin\nSusan\nTamara\nCarrie\nKatrina\nLauren\nTanya\nEbony\nJamie\nRobin\nAnne\nCourtney\nTracy\nVictoria\nJacqueline\nKisha\nSabrina\nCynthia\nDeborah\nLeslie\nTameka\nYolanda\nAlicia\nAnna\nLatasha\nMelanie\nRenee\nTara\nAdrienne\nLakeisha\nMaria\nSamantha\nAlexandra\nCaroline\nErika\nJaime\nPamela\nDenise\nWendy\nAnn\nKendra\nLashawn\nLindsay\nTheresa\nRhonda\nSharon\nAngel\nKia\nMarie\nNakia\nStacy\nAlison\nCamille\nCarla\nJill\nJulia\nLatonya\nMeredith\nVanessa\nAmber\nAshley\nHolly\nJamila\nKristina\nSandra\nStacey\nSuzanne\nValerie\nVeronica\nCarolyn\nColleen\nKristen\nLatisha\nPatrice\nRashida\nTia\nDiana\nLinda\nMichele\nNikia\nSherry\nTonya\nDionne\nDonna\nKara\nKelley\nMelinda\nMelody\nNadia\nNancy\nNichole\nSonya\nTammy\nAimee\nChristy\nLeah\nRegina\nRobyn\nShana\nSonia\nTanika\nVirginia\nAlexis\nAlice\nAyanna\nCheryl\nEllen\nFelicia\nFrances\nGwendolyn\nJanet\nJoanna\nMia\nTasha\nTeresa\nAnika\nAnita\nAyana\nBrandi\nBrooke\nCandice\nCara\nCharlene\nFarrah\nHelen\nJanelle\nJean\nJenny\nJoy\nJoyce\nKatharine\nKizzy\nKristy\nLakia\nMarsha\nMaureen\nMaya\nRuth\nSherri\nSylvia\nTerri\nTina\nYvette\nAna\nAnnette\nBeth\nClaire\nClaudia\nCristina\nHope\nJocelyn\nKarla\nKellie\nKerry\nLakesha\nLarissa\nMarisa\nMeghan\nNikki\nNina\nOlivia\nRebekah\nShanna\nShawnte\nSheri\nTanisha\nTiffani\nTraci\nYolonda\nBarbara\nBonnie\nBrenda\nCharmaine\nEboni\nEricka\nGenevieve\nIndia\nJuanita\nKenya\nKim\nKristine\nLaurie\nLesley\nLindsey\nLolita\nLori\nMolly\nNakisha\nNia\nNicola\nNikita\nRaquel\nRoberta\nRochelle\nSelena\nSheila\nTania\nTawana\nTracey\nAbigail\nAlyssa\nBelinda\nBianca\nBridget\nCharlotte\nCindy\nDanyelle\nDeanna\nDemetria\nImani\nJada\nJasmine\nKarin\nKatie\nKeshia\nKhalilah\nKirsten\nKristi\nLatarsha\nLatia\nLawanda\nLydia\nLynn\nMartina\nMeagan\nPaige\nQuiana\nShayla\nShelly\nSummer\nSyreeta\nTamiko\nWanda\nAkilah\nAngie\nAntoinette\nArlene\nAsia\nBernadette\nBobbie\nBrandy\nCaitlin\nCarmen\nCassandra\nCelia\nChiquita\nDanita\nDebra\nDeidre\nDesiree\nDevon\nDiane\nDominique\nEvelyn\nGeneva\nGina\nHeidi\nHillary\nJacquelyn\nJane\nJanice\nJanine\nJeannette\nJenifer\nKamilah\nKatrice\nKerri\nKesha\nKristie\nLatanya\nLatosha\nLynnette\nMarissa\nMisty\nMona\nNatalia\nNoelle\nPaula\nPenny\nPriscilla\nRonda\nShalonda\nSharron\nShayna\nStacie\nSusannah\nTameika\nWhitney\nJennifer\nJessica\nNicole\nElizabeth\nMichelle\nSarah\nChristina\nMelissa\nStephanie\nAngela\nKimberly\nKatherine\nErin\nLisa\nTiffany\nHeather\nKelly\nEmily\nDanielle\nMary\nLaura\nAmanda\nCrystal\nErica\nApril\nChristine\nTamika\nShannon\nLauren\nRachel\nRebecca\nKaren\nAndrea\nKeisha\nLakisha\nSara\nCatherine\nMonica\nMonique\nAmy\nDana\nJamie\nLatoya\nMegan\nNatasha\nKathleen\nYolanda\nDawn\nMargaret\nSamantha\nEbony\nCynthia\nJulie\nMaria\nSabrina\nAlicia\nAnne\nAisha\nJacqueline\nKatrina\nTamara\nBrandy\nMelanie\nRobin\nLeslie\nNatalie\nSusan\nVanessa\nKathryn\nLatisha\nMeredith\nPatricia\nTanya\nAlison\nDeborah\nErika\nRenee\nStacey\nVeronica\nAdrienne\nCourtney\nVictoria\nAngel\nAnna\nBrandi\nCarla\nCheryl\nLakeisha\nLashawn\nSandra\nTameka\nTeresa\nTheresa\nAllison\nDenise\nFelicia\nKristen\nKristin\nLatasha\nMichele\nNichole\nTina\nTracy\nLeah\nQuiana\nSharon\nWendy\nAntoinette\nCandice\nCaroline\nCarrie\nJulia\nKia\nKristy\nLindsay\nNakia\nTara\nTia\nBrenda\nColleen\nDiana\nGina\nKristina\nSuzanne\nAlexandra\nDominique\nJoy\nKendra\nKristine\nLatonya\nMelinda\nPamela\nRegina\nStacy\nValerie\nAmber\nAnn\nCindy\nJaime\nLakesha\nNancy\nPatrice\nRhonda\nCarolyn\nCharmaine\nJill\nKatharine\nKatie\nKelley\nKisha\nMaureen\nTammy\nTanisha\nTracey\nAlexis\nAshley\nBarbara\nBridget\nCarol\nCristina\nDonna\nIndia\nJamila\nJanelle\nJocelyn\nJuanita\nKara\nLatanya\nLatosha\nLawanda\nMarcia\nMelody\nOlivia\nPaula\nRashida\nRuth\nShavon\nSherita\nSherri\nTasha\nAbigail\nBeth\nBrooke\nChristy\nClaire\nDeanna\nEileen\nFrancesca\nGrace\nKelli\nLori\nMarie\nNicola\nSheila\nVirginia\nAna\nAnita\nAudrey\nBethany\nCamille\nCandace\nCarmen\nCarolina\nChiquita\nDevin\nDionne\nElaine\nGloria\nHelen\nHolly\nJoyce\nKenisha\nKiana\nKristi\nLatarsha\nMeghan\nMia\nMiriam\nNakisha\nNikki\nQiana\nRochelle\nShanna\nShanta\nShauna\nStacie\nTerri\nTonya\nYvette\nAlisha\nBianca\nBriana\nCara\nClaudia\nDevon\nDorothy\nEboni\nEllen\nEvelyn\nGabrielle\nGretchen\nHannah\nJane\nKeri\nKesha\nLakia\nLatrice\nLetitia\nLinda\nLynnette\nMarissa\nMolly\nNadia\nNichelle\nOctavia\nRita\nRobyn\nShavonne\nShelly\nSherry\nTabitha\nTamikia\nTanika\nAimee\nAyanna\nBeverly\nBrian\nChandra\nChanel\nCharlene\nChrista\nConstance\nDanita\nEleanor\nElisa\nElisabeth\nFrances\nHeidi\nJaclyn\nJacquelyn\nJanet\nJanice\nJanine\nJasmine\nJenifer\nJenny\nJoanna\nJodi\nKarin\nKellee\nKendall\nKhadijah\nKiesha\nKim\nLorraine\nLynette\nLynn\nMarlena\nMarsha\nMichael\nNaomi\nNatalia\nNia\nNikia\nNneka\nNora\nPaulette\nPrincess\nRachael\nRaven\nRenita\nRosa\nShana\nShawn\nSummer\nTameeka\nTaryn\nTawanda\nTawanna\nToni\nTori\nVicki\nYvonne\nJennifer\nNicole\nSarah\nMelissa\nElizabeth\nKimberly\nJessica\nStephanie\nChristina\nMichelle\nLisa\nTiffany\nAngela\nHeather\nKelly\nAmanda\nKatherine\nCrystal\nDanielle\nMary\nRebecca\nLaura\nShannon\nEmily\nErin\nAmy\nEbony\nLauren\nErica\nKaren\nTamika\nSara\nRachel\nKathleen\nChristine\nApril\nMegan\nMonica\nDana\nJamie\nMonique\nAlicia\nMargaret\nCatherine\nKathryn\nNatalie\nNatasha\nAndrea\nDawn\nLeslie\nJulie\nSamantha\nLatoya\nMaria\nPatricia\nTeresa\nYolanda\nAnna\nLakisha\nLindsay\nMelanie\nRenee\nSusan\nVeronica\nAdrienne\nAllison\nKatrina\nRobin\nTamara\nPamela\nTara\nTracy\nCandice\nCynthia\nDeborah\nJulia\nKristen\nStacey\nTameka\nAnne\nVictoria\nBrooke\nErika\nKristin\nLatasha\nLatisha\nMeghan\nSabrina\nBrandi\nCaroline\nLashawn\nLeah\nStacy\nAnn\nJacqueline\nRegina\nAisha\nAlexis\nAmber\nAshley\nTia\nAlison\nAngel\nCarolyn\nJuanita\nKeisha\nKendra\nTheresa\nCheryl\nCourtney\nDiana\nMeredith\nNichole\nRobyn\nSandra\nTasha\nTina\nBonnie\nCarrie\nDionne\nFelicia\nGina\nKia\nKirsten\nLakeisha\nLatosha\nPatrice\nValerie\nAlexandra\nAnita\nCandace\nCharmaine\nEboni\nHolly\nIndia\nJanelle\nJoy\nKatharine\nKristina\nLatonya\nLinda\nMia\nQuiana\nVanessa\nWendy\nBarbara\nBeth\nBrandy\nDenise\nEllen\nGloria\nJaime\nKate\nMarie\nShana\nShante\nShavon\nTerri\nTracey\nAbigail\nAlisha\nAntoinette\nBridget\nCamille\nCara\nCarla\nColleen\nDebra\nFrances\nJamila\nJenny\nJoyce\nKara\nLatanya\nLaurie\nLindsey\nMaya\nMichele\nPaula\nRachael\nTanya\nTomika\nAlyssa\nAna\nCharlotte\nChiquita\nClaire\nClaudia\nDominique\nElena\nEricka\nJanet\nKellie\nKristine\nMartha\nMelody\nMiriam\nNakia\nNancy\nNikia\nOlivia\nQiana\nRochelle\nShanika\nSharon\nShauna\nTanika\nAnnette\nCarmen\nCarol\nCarolina\nDiane\nDorothy\nEvelyn\nHelen\nJanice\nKim\nLatrice\nMarcia\nMaureen\nNakita\nRachelle\nShameka\nSherita\nShirley\nSophia\nSylvia\nTameika\nTiffani\nToni\nTonya\nWanda\nAkilah\nAlice\nAlyson\nBenita\nBrenda\nCassandra\nCatrina\nChanel\nChante\nCheri\nCindy\nClara\nDarlene\nDemetria\nDonna\nEmma\nHannah\nIrene\nJane\nJanna\nJocelyn\nKatie\nKeona\nKesha\nKiana\nKisha\nKrystal\nLakesha\nLatarsha\nLatia\nLena\nLesley\nLori\nLucy\nMarisa\nMarquita\nMelinda\nMichael\nNadia\nRenita\nRuth\nShamika\nShanna\nShayla\nSonja\nTammy\nTanisha\nWhitney\nYvette\nAutumn\nAyana\nBethany\nCasey\nCharlene\nChristie\nChristy\nCristina\nDevin\nElaine\nEliza\nEva\nJacquelyn\nJanell\nJeanne\nJenna\nKelli\nKerry\nKristi\nKristy\nLaurel\nLindy\nLydia\nMaia\nMarissa\nMolly\nNia\nNikkia\nRhonda\nRoberta\nRyan\nShani\nShanta\nSherese\nSherri\nSusanna\nSuzanne\nTeressa\nTomeka\nTraci\nVirginia\nJennifer\nNicole\nJessica\nTiffany\nElizabeth\nKimberly\nSarah\nStephanie\nMelissa\nMichelle\nCrystal\nErin\nChristina\nAngela\nLauren\nRebecca\nErica\nKatherine\nLaura\nDanielle\nLisa\nEmily\nAmanda\nKelly\nMary\nApril\nShannon\nHeather\nRachel\nAndrea\nMonique\nKathleen\nKathryn\nMegan\nTamika\nDana\nMargaret\nKristen\nMonica\nSara\nCatherine\nEbony\nCourtney\nJulia\nLatasha\nJacqueline\nJulie\nMaria\nNatasha\nCarolyn\nKristin\nSamantha\nChristine\nJamie\nKatrina\nLatoya\nLeslie\nAlicia\nDawn\nKaren\nAlexandra\nErika\nLakisha\nNatalie\nPatricia\nAmber\nAnne\nPatrice\nAllison\nCynthia\nAmy\nLatisha\nTameka\nAngel\nAnna\nAshley\nBrooke\nKeisha\nSandra\nTia\nVanessa\nYolanda\nCandice\nKristina\nLindsay\nSusan\nTracy\nLeah\nMelanie\nMia\nMichele\nNina\nPamela\nRhonda\nAbigail\nStacey\nTamara\nTammy\nTheresa\nAlison\nCaroline\nCarrie\nJoy\nMeghan\nMeredith\nNancy\nRegina\nSabrina\nValerie\nBrandy\nCamille\nLakeisha\nMolly\nRenee\nVictoria\nAdrienne\nBarbara\nDiana\nHannah\nNadia\nRobin\nVeronica\nClaudia\nJaime\nJoanna\nKatie\nKendra\nLinda\nLindsey\nQiana\nAlexis\nBrandi\nBridget\nCandace\nCassandra\nChanel\nColleen\nJill\nKiana\nKisha\nMaya\nOlivia\nSharon\nTara\nTasha\nTeresa\nAlisha\nBeth\nCarmen\nCharmaine\nCheryl\nDenise\nKate\nKia\nLashawn\nMaureen\nNichole\nSherry\nTanya\nTracey\nAnita\nBianca\nCarla\nCharlene\nDeborah\nHelen\nJasmine\nJenny\nJocelyn\nKellie\nKristi\nKrystal\nMelinda\nRuth\nSherri\nTonya\nWendy\nAutumn\nChristie\nCristina\nEllen\nGina\nJanelle\nJanice\nJuanita\nKara\nLatonya\nMelody\nNakia\nRita\nRobyn\nSophia\nStacy\nWanda\nAmelia\nCaitlin\nDonna\nIvy\nJamila\nJeanette\nKatharine\nKelli\nKenya\nKirsten\nLatrice\nLesley\nLetitia\nLynette\nMarissa\nMiriam\nNia\nNora\nRachelle\nRebekah\nSharmaine\nShauna\nSheree\nSummer\nTanisha\nTiana\nTiffanie\nTina\nTracie\nValencia\nAdrian\nAja\nAlice\nAlissa\nAyanna\nBrenda\nCarol\nClaire\nDebra\nDesiree\nGloria\nHolly\nHope\nIndia\nIngrid\nJean\nLakesha\nLydia\nLynn\nMarisa\nMartina\nMeaghan\nNaomi\nNikki\nQuiana\nRashida\nRochelle\nShanita\nShanta\nSheila\nSheri\nSherita\nSonya\nSuzanne\nSylvia\nTiffani\nToni\nTynisha\nVirginia\nWhitney\nAnika\nAntoinette\nAudrey\nBethany\nBonnie\nCara\nChantelle\nChloe\nConstance\nDarlene\nDavid\nDiane\nDominique\nElaine\nEleanor\nElena\nEricka\nEugenia\nFaith\nFelicia\nGretchen\nGwendolyn\nHillary\nJanell\nJanet\nJenelle\nJillian\nJoanne\nKesha\nKrista\nLara\nLatanya\nLatesha\nLaurie\nLori\nMarian\nMarie\nMarkita\nMarquita\nPaula\nPriscilla\nRachael\nRena\nRenata\nRenita\nRosemary\nShadonna\nShameka\nShana\nShavon\nShawnte\nStefanie\nSyreeta\nTerri\nZakiya\nJennifer\nJessica\nSarah\nTiffany\nKimberly\nElizabeth\nNicole\nMichelle\nStephanie\nChristina\nCrystal\nEmily\nLauren\nKatherine\nAmanda\nMelissa\nMary\nAngela\nErin\nRachel\nRebecca\nAndrea\nKelly\nLatoya\nEbony\nLaura\nLisa\nMonique\nShannon\nDanielle\nKathryn\nTamika\nCatherine\nChristine\nErica\nHeather\nNatasha\nApril\nAnne\nKristin\nMegan\nAmy\nJulia\nKathleen\nCourtney\nLatasha\nJacqueline\nKaren\nMargaret\nMaria\nDawn\nTamara\nMonica\nAllison\nCynthia\nJulie\nNatalie\nPamela\nVictoria\nAshley\nDeborah\nDiana\nKristen\nKristina\nSara\nAlicia\nAngel\nLeslie\nAlexandra\nAnna\nCaitlin\nDana\nErika\nCandice\nCaroline\nJamie\nKatrina\nMelanie\nPatrice\nRobin\nCarolyn\nLindsay\nMeghan\nTia\nClaire\nLatisha\nPatricia\nRenee\nSamantha\nTara\nSabrina\nAlexis\nKatie\nRegina\nSusan\nYolanda\nAisha\nAlison\nBianca\nBrooke\nCandace\nLatonya\nLeah\nRobyn\nTracy\nVeronica\nAdrienne\nAmber\nCarla\nIndia\nKara\nKia\nLakisha\nTasha\nTonya\nBrandi\nBrandy\nCarmen\nKeisha\nKelli\nMarie\nMia\nSharon\nTeresa\nAbigail\nColleen\nFelicia\nKrystal\nLinda\nLori\nMeredith\nMichele\nNancy\nShameka\nTameka\nTheresa\nVanessa\nWendy\nCassandra\nDenise\nEboni\nEllen\nJoanna\nJocelyn\nKiana\nLindsey\nMarquita\nQuiana\nSandra\nSherita\nValerie\nAmelia\nAnita\nDeanna\nDionne\nDominique\nJanelle\nJenny\nJill\nKatharine\nMorgan\nNakia\nNaomi\nNichole\nShayla\nSimone\nStacy\nTammy\nTiffani\nTina\nAnn\nAntoinette\nCarrie\nClaudia\nGina\nHilary\nJoy\nKelley\nLashawn\nMarissa\nMaya\nNikia\nNina\nRachael\nShanita\nSophia\nTanisha\nTiana\nToni\nVirginia\nBarbara\nBridget\nChanel\nCheryl\nDonna\nEvelyn\nGloria\nJean\nJoi\nKellie\nKendra\nLakeisha\nLakia\nMelody\nOlivia\nPaula\nRachelle\nRebekah\nRhonda\nSheila\nStacey\nTanika\nTierra\nAlana\nCharlotte\nCindy\nDevon\nElisabeth\nHelen\nJane\nJeanne\nKate\nKisha\nLawanda\nLeigh\nLeila\nMarcia\nMaureen\nMolly\nNakita\nRashida\nShamika\nShavon\nTanya\nAnnette\nAshleigh\nAyana\nBonnie\nCharlene\nChiquita\nDesiree\nEleanor\nEmma\nFrancesca\nGretchen\nGwendolyn\nHeidi\nHillary\nHope\nJenifer\nJessie\nJewel\nJillian\nJuanita\nKeyana\nKeyona\nLakesha\nLatia\nLatoria\nLea\nMartina\nMelinda\nNatalia\nNora\nSasha\nShavonne\nStefanie\nSuzanne\nTerri\nTracie\nAlaina\nAthena\nBrenda\nCarol\nCassie\nCecilia\nCeleste\nCharmaine\nChristin\nDeirdre\nDiane\nEileen\nHannah\nHolly\nJacquelyn\nJaime\nJanice\nJasmine\nJenelle\nJoyce\nJudith\nKeona\nKerry\nKesha\nKim\nKristi\nLillian\nLucy\nLynette\nLynn\nMartha\nMeaghan\nMyra\nNikkia\nPaulette\nPriscilla\nRita\nRosemary\nRuth\nShanika\nSheena\nSheri\nSherri\nSherry\nTabitha\nTamica\nTiffanie\nTraci\nTyra\nVenus\nJennifer\nTiffany\nJessica\nNicole\nElizabeth\nSarah\nLauren\nStephanie\nKatherine\nMichelle\nCrystal\nKimberly\nMelissa\nChristina\nErin\nEmily\nEbony\nAmanda\nAngela\nKelly\nRebecca\nDanielle\nRachel\nAshley\nLaura\nErica\nMary\nAndrea\nJulia\nKathleen\nShannon\nLisa\nMonique\nKristin\nAmy\nKathryn\nLatoya\nAlexis\nCourtney\nDiana\nNatalie\nCatherine\nMegan\nNatasha\nAnna\nJacqueline\nLindsay\nPatrice\nSara\nApril\nCandice\nChristine\nMaria\nAlicia\nTamika\nDana\nKaren\nKristen\nMonica\nHeather\nVictoria\nJamie\nMargaret\nPatricia\nRobin\nAngel\nAlexandra\nKatrina\nAdrienne\nAllison\nLindsey\nAisha\nCaroline\nJasmine\nMelanie\nJulie\nLatasha\nLeslie\nRenee\nSamantha\nTara\nTia\nVanessa\nVeronica\nAnne\nCarolyn\nErika\nKrystal\nLeah\nMeredith\nTheresa\nKristina\nAlison\nCandace\nTamara\nTeresa\nAna\nCamille\nDawn\nMaya\nPamela\nAmber\nBrooke\nJoanna\nKeisha\nSabrina\nSharon\nYolanda\nCaitlin\nColleen\nCynthia\nKendra\nLakisha\nLashawn\nRegina\nSandra\nEllen\nKelli\nMarie\nMaureen\nMichele\nRachael\nRhonda\nTanisha\nTasha\nValerie\nAbigail\nCarla\nDeborah\nDenise\nIndia\nJuanita\nKatie\nStacey\nAnn\nCarrie\nChanel\nDonna\nLakeisha\nLatisha\nMia\nSophia\nTonya\nVirginia\nAntoinette\nBarbara\nEboni\nHilary\nKia\nKiana\nLinda\nNancy\nNina\nPaula\nRita\nSheena\nSuzanne\nTameka\nTiara\nTracy\nAlice\nCharlene\nCheryl\nClaire\nDominique\nFelicia\nGrace\nJamila\nJenny\nLatrice\nLeigh\nMeghan\nMolly\nNaomi\nStacy\nTiffanie\nBridget\nCara\nClaudia\nGina\nJoy\nKarla\nKatharine\nKeyonna\nLatia\nLawanda\nMelinda\nRuth\nSusan\nTanika\nTiana\nBianca\nBrandy\nBrenda\nCarmen\nCassandra\nChristian\nClare\nElisabeth\nEvelyn\nJessie\nKellie\nKirsten\nLatonya\nLatricia\nLynette\nRaven\nShante\nShayla\nTammy\nTanya\nTatiana\nTiffani\nVivian\nAlyssa\nAudrey\nBeth\nCasey\nCecilia\nChantel\nCherie\nDevin\nDiane\nEssence\nEsther\nEva\nFrances\nGenevieve\nHannah\nHelen\nIris\nJanelle\nJanice\nJoanne\nLatoria\nLesley\nMarisa\nMartina\nMichael\nNadia\nNakia\nQuiana\nRachelle\nRashida\nRosa\nShameka\nShanita\nTakia\nTierra\nTina\nWanda\nWilliam\nAllyson\nAriel\nAsia\nAyanna\nBriana\nBrittany\nChelsea\nChiquita\nChristen\nChristy\nConstance\nDeena\nDorothy\nEileen\nElaine\nElena\nGabrielle\nGloria\nIesha\nJaime\nJasmin\nJennie\nJillian\nJocelyn\nKira\nKrystle\nKyana\nLakeia\nLillian\nMakia\nMartha\nMiriam\nMyesha\nNichole\nNora\nPaige\nPrincess\nPriscilla\nRochelle\nShalita\nShanta\nShantel\nShavon\nSherri\nSherry\nSonia\nStefanie\nSylvia\nSyreeta\nTanesha\nTracie\nJennifer\nJessica\nTiffany\nElizabeth\nKimberly\nLauren\nStephanie\nNicole\nSarah\nAshley\nCrystal\nKatherine\nEmily\nDanielle\nErin\nLaura\nMichelle\nErica\nEbony\nAngela\nRachel\nChristina\nRebecca\nMegan\nMelissa\nShannon\nAndrea\nKelly\nLatoya\nMarquita\nMary\nLisa\nMonique\nKathleen\nMaria\nAmanda\nHeather\nKristen\nJacqueline\nJulia\nChristine\nNatasha\nVictoria\nCandice\nAlexis\nTamika\nAllison\nAmy\nApril\nMargaret\nMonica\nAlicia\nJamie\nKathryn\nRobin\nJulie\nLeslie\nKristin\nAlexandra\nAnne\nCourtney\nKrystal\nSamantha\nPatrice\nAnna\nLindsay\nCaitlin\nSara\nVanessa\nCandace\nDawn\nLatasha\nPatricia\nAmber\nCaroline\nErika\nBrittany\nCatherine\nNatalie\nJasmine\nJoy\nKaren\nKatrina\nPamela\nTia\nCynthia\nDesiree\nLindsey\nSheena\nVeronica\nAntoinette\nDana\nLeah\nNina\nSharon\nTheresa\nValerie\nAlison\nClaire\nClaudia\nIndia\nLakeisha\nMeghan\nStacy\nCarolyn\nDiana\nGrace\nKatharine\nKatie\nKristina\nLakia\nMarie\nMeredith\nRegina\nStacey\nTeresa\nYolanda\nBrandi\nKendra\nSandra\nSusan\nTamara\nTara\nWendy\nAdrienne\nCassandra\nColleen\nEleanor\nHolly\nJoanna\nKara\nLakisha\nLatisha\nLatonya\nTanya\nBrooke\nCharlotte\nDeborah\nFelicia\nMelanie\nMolly\nNancy\nRachael\nAbigail\nBianca\nBrandy\nCharlene\nDenise\nEboni\nJillian\nKia\nLashawn\nMiriam\nNakia\nNichole\nRenee\nRochelle\nSophia\nTiana\nTracy\nVirginia\nAna\nAngel\nAnn\nBridget\nCamille\nCara\nElisabeth\nJaime\nJocelyn\nKerry\nMaureen\nOlivia\nRhonda\nShana\nShayla\nTiara\nTina\nAisha\nCarla\nDiane\nEllen\nJanelle\nLinda\nMarisa\nMartha\nTanisha\nAlice\nAlisha\nAnnette\nBonnie\nCarrie\nChanel\nCharmaine\nCheryl\nChristian\nDeanna\nElisa\nEricka\nFaith\nGina\nGloria\nJuanita\nKeyona\nKiana\nLatarsha\nLatia\nMia\nMichele\nPaula\nQuiana\nShamika\nSuzanne\nSylvia\nTabitha\nWhitney\nAlexandria\nAntionette\nBrenda\nCindy\nConstance\nCristina\nEbonie\nEmma\nEvelyn\nHelen\nJaclyn\nJustine\nKate\nKenya\nKrystle\nLatosha\nLydia\nMarcia\nMeagan\nMercedes\nNaomi\nOctavia\nPriscilla\nRachelle\nSabrina\nShameka\nShari\nStefanie\nTanika\nTyisha\nAlexa\nAntonia\nAriel\nAshlee\nBelinda\nCarol\nCecelia\nChloe\nCorinne\nDaphne\nDevin\nHaley\nHannah\nJane\nJean\nJohanna\nJoyce\nKelley\nKelli\nKeyana\nLakiesha\nLashonda\nLetitia\nLillian\nLucy\nMarissa\nMartina\nMiranda\nNikia\nPrecious\nRaquel\nRena\nSerena\nShakita\nShanika\nSharita\nSharron\nShawn\nSonia\nSonya\nStacie\nSydney\nTanesha\nTasha\nTaylor\nTianna\nTierra\nTiffani\nTracey\nYvonne\nJessica\nJennifer\nElizabeth\nAshley\nTiffany\nNicole\nLauren\nDanielle\nStephanie\nSarah\nMichelle\nKatherine\nLatoya\nAmanda\nKimberly\nChristina\nRachel\nEmily\nLaura\nMegan\nCrystal\nErica\nMary\nShannon\nEbony\nKelly\nAndrea\nErin\nJulia\nRebecca\nAlexandra\nLisa\nApril\nMelissa\nChristine\nKathleen\nKristin\nMonique\nKathryn\nHeather\nAlicia\nAngela\nCatherine\nAlexis\nLindsay\nMonica\nSara\nVictoria\nAmy\nAllison\nJacqueline\nMarquita\nAmber\nCaroline\nCourtney\nKristen\nMeghan\nSamantha\nTamara\nMaria\nTamika\nKrystal\nDominique\nSheena\nBrittany\nDana\nDiana\nJoanna\nKendra\nMargaret\nPatricia\nRobin\nAnna\nCaitlin\nMelanie\nNatasha\nRenee\nSabrina\nErika\nBrandi\nLatasha\nCynthia\nDawn\nVeronica\nJasmine\nJenna\nKatrina\nLeah\nLeslie\nTara\nVanessa\nCandice\nCristina\nPatrice\nStacy\nSusan\nAngel\nJamie\nKristina\nRegina\nAbigail\nAlison\nAna\nJulie\nKaren\nLindsey\nMia\nNatalie\nShana\nTia\nTracy\nAdrienne\nCharlene\nClaire\nJaclyn\nKatharine\nLakisha\nLashawn\nLatisha\nLatonya\nMeredith\nTameka\nTonya\nDeborah\nDenise\nElisabeth\nMarie\nNakia\nSandra\nShanita\nSophia\nSuzanne\nCarmen\nEboni\nEllen\nHannah\nKara\nKatie\nRhonda\nRobyn\nShameka\nTiara\nAmelia\nAntoinette\nBarbara\nHolly\nJohanna\nKeisha\nMaya\nMorgan\nNadia\nNancy\nPamela\nShari\nAisha\nAnne\nAsia\nElise\nFrances\nHelen\nJoy\nLinda\nOlivia\nSharon\nAlisha\nAngelica\nAnita\nAudrey\nBrandy\nBridget\nCandace\nCarolyn\nCassandra\nChanel\nCharlotte\nChloe\nDiane\nElisa\nGrace\nIndia\nKate\nKellie\nLakeisha\nLatrice\nMarissa\nMarkita\nMelody\nMolly\nNina\nRochelle\nShamika\nStacey\nSylvia\nTierra\nValerie\nYolanda\nAlyssa\nBianca\nBrenda\nCharmaine\nCheryl\nColleen\nDonna\nEmma\nFaith\nGloria\nJocelyn\nMarisa\nMaureen\nNora\nParis\nShanna\nTanya\nTeresa\nTerri\nTheresa\nToni\nTraci\nAlice\nAshlee\nAshleigh\nCamille\nCara\nCarrie\nClaudia\nConstance\nDeanna\nDevon\nEileen\nEvelyn\nFelicia\nHope\nJane\nJanelle\nJanine\nJillian\nJoyce\nJuanita\nKelsey\nKiana\nKristine\nKrystle\nLakia\nLatosha\nLeigh\nLouise\nMarsha\nMartha\nMeagan\nMeaghan\nMiriam\nShavon\nShawn\nStefanie\nTakia\nTania\nTanisha\nTiana\nTiffani\nTina\nTracey\nVirginia\nWhitney\nAmina\nAnn\nAntionette\nBriana\nBrianna\nBrooke\nCathy\nChristian\nCiara\nCindy\nClare\nDara\nEbone\nEbonie\nEsther\nFatima\nGabrielle\nGenevieve\nGina\nIngrid\nIris\nIvy\nJaime\nJanice\nJenifer\nJenny\nJewel\nJill\nJustine\nKerry\nKeyonna\nLatia\nLydia\nLynette\nMaggie\nMarjorie\nMartina\nMaura\nMyra\nNia\nOctavia\nRachelle\nReina\nRita\nRosemary\nRyan\nSelina\nShanika\nShante\nSharron\nSherrell\nTanika\nTatiana\nTeaira\nTiffanie\nTyesha\nWendy\nAshley\nJessica\nJennifer\nElizabeth\nLauren\nAmanda\nSarah\nStephanie\nTiffany\nKatherine\nDanielle\nRachel\nChristina\nEmily\nNicole\nCrystal\nMichelle\nLaura\nDominique\nErica\nMary\nRebecca\nKimberly\nBrittany\nMegan\nMelissa\nAlexandra\nHeather\nEbony\nKelly\nErin\nShannon\nAlicia\nAndrea\nLatoya\nChristine\nJulia\nKrystal\nCatherine\nLisa\nCaitlin\nAmy\nAnna\nAlexis\nAllison\nMonique\nSamantha\nKathleen\nKathryn\nAngela\nNatasha\nApril\nCaroline\nErika\nMonica\nSara\nIndia\nTiara\nVictoria\nMargaret\nNatalie\nJacqueline\nJamie\nJulie\nKristen\nMelanie\nPatricia\nAngel\nClaire\nKristin\nKristina\nCourtney\nAmber\nJasmine\nTamika\nVanessa\nLindsay\nMaria\nSheena\nCynthia\nDiana\nSade\nAlison\nTamara\nAnne\nCandice\nLashawn\nMeghan\nVeronica\nWhitney\nDana\nJoanna\nPatrice\nKatrina\nKrystle\nLindsey\nNakia\nTara\nAlana\nCandace\nJoy\nRobin\nRochelle\nCara\nCindy\nKeisha\nLatasha\nLeslie\nMarie\nMartha\nSandra\nStacy\nTameka\nBrenda\nFelicia\nJanelle\nNancy\nRyan\nStacey\nTia\nWendy\nCarla\nCarolyn\nCassandra\nDenise\nGina\nKate\nKendra\nKia\nMia\nPamela\nRegina\nRenee\nShante\nSharon\nSonia\nStefanie\nSusan\nValerie\nAisha\nAshleigh\nBrittney\nBrooke\nChela\nColleen\nDawn\nJaime\nKaren\nKatie\nMeagan\nRhonda\nShanita\nTanisha\nYolanda\nAdrienne\nAlice\nAmelia\nAntoinette\nBianca\nBridget\nChelsea\nCiara\nCristina\nEmma\nEvelyn\nFrances\nLakeisha\nLakisha\nLatrice\nNina\nNora\nSabrina\nShari\nSophia\nTatiana\nAnn\nCharlotte\nDiane\nDina\nGabriela\nHannah\nJacquelyn\nJohanna\nJordan\nLakia\nLatisha\nMarquita\nShana\nSharde\nTeresa\nTina\nToni\nAlisha\nAntionette\nBarbara\nCamille\nCharmaine\nCheryl\nChloe\nGloria\nJenna\nKara\nKarla\nKelsey\nLatia\nLeigh\nLinda\nMaureen\nMeredith\nMorgan\nNia\nOctavia\nRachael\nSylvia\nTierra\nAbigail\nAlissa\nAnita\nAudrey\nBrandi\nCarly\nChiquita\nChristian\nClaudia\nDeandra\nDeanna\nDeborah\nDonna\nDorothy\nElise\nEliza\nHelen\nHolly\nJasmin\nJustine\nKerry\nKristal\nLatanya\nLatonya\nMarcia\nMarissa\nMelody\nMolly\nNichole\nPatrick\nRobyn\nRosa\nRuth\nSasha\nSheila\nSophie\nTabitha\nTheresa\nTracy\nYvonne\nAdriana\nAlexandria\nAna\nAngelica\nAntonia\nAriel\nAshlee\nAva\nAyesha\nBlair\nCarolina\nCarrie\nCelia\nCierra\nConstance\nDaisy\nDesiree\nDionna\nEboni\nEleanor\nElena\nElisabeth\nEllen\nFatima\nGabrielle\nGlenda\nHilary\nJaclyn\nJamila\nJenny\nJessie\nJill\nJonelle\nJoyce\nJudith\nKarina\nKeyona\nKiana\nKrista\nKrystina\nLadonna\nLakeya\nLatricia\nLilian\nMarguita\nMiriam\nMollie\nMona\nNadia\nNaomi\nNikia\nOlivia\nPaige\nParis\nPaula\nPrecious\nRandi\nShadonna\nShamika\nSharita\nSharron\nShayla\nShelby\nStacie\nTamekia\nTanya\nTaylor\nTiera\nVivian\nYvette\nAshley\nJessica\nJennifer\nSarah\nLauren\nElizabeth\nTiffany\nDanielle\nChristina\nBrittany\nStephanie\nKimberly\nAmanda\nRachel\nEmily\nErica\nLaura\nNicole\nKatherine\nCrystal\nMichelle\nShannon\nSara\nDominique\nKelly\nRebecca\nLisa\nAlexandra\nMelissa\nMary\nAndrea\nEbony\nMegan\nAllison\nErin\nMaria\nCatherine\nSamantha\nWhitney\nJasmine\nJulia\nAngela\nLatoya\nApril\nSade\nAnna\nChristine\nCourtney\nVictoria\nLindsay\nKathleen\nKristen\nMargaret\nAmy\nKrystal\nCaitlin\nAlicia\nKathryn\nMonique\nVanessa\nAmber\nErika\nIndia\nJacqueline\nNatasha\nHeather\nAnne\nCaroline\nKristin\nMeredith\nMonica\nColleen\nDiana\nKara\nKendra\nLindsey\nNatalie\nTamika\nAlexis\nBrittney\nJulie\nKristina\nLeah\nRobin\nClaire\nTiara\nVeronica\nCandace\nFelicia\nJoanna\nKaren\nLeslie\nMelanie\nAna\nKatrina\nMorgan\nPatrice\nTheresa\nCandice\nJamie\nJenna\nKatharine\nLashawn\nLatasha\nSophia\nAntoinette\nClaudia\nCynthia\nDana\nJanelle\nKrystle\nPatricia\nSabrina\nAngel\nDenise\nMeghan\nStacey\nCassandra\nCharlotte\nJocelyn\nKeisha\nKelli\nLakeisha\nLatrice\nMarquita\nMolly\nNakia\nNichole\nShana\nTameka\nTia\nValerie\nAlisha\nAlison\nAlyssa\nBrenda\nChanel\nHannah\nIkea\nJessie\nKate\nLinda\nMadeline\nNikia\nRenee\nShamika\nSheena\nTamara\nTara\nTierra\nAisha\nAshleigh\nCarolyn\nGloria\nJaclyn\nJanet\nJoy\nLucy\nMarie\nMia\nOctavia\nPamela\nRegina\nRhonda\nSandra\nShante\nStacy\nTiffani\nAdrienne\nAriel\nAudrey\nCarrie\nChelsea\nDesiree\nElena\nJillian\nKira\nMarisa\nMarkita\nMelody\nShanita\nSharde\nSharita\nSusan\nSuzanne\nTasha\nTiana\nWendy\nAbigail\nAngelica\nAshlee\nBridget\nCara\nCiara\nCierra\nCindy\nElise\nEricka\nGabrielle\nJane\nJuanita\nJudy\nKeyonna\nKia\nMartina\nMaureen\nNancy\nNora\nPaula\nRachael\nRobyn\nShakita\nSharon\nStefanie\nTanisha\nTina\nAnita\nAnn\nBrandi\nBritney\nChante\nCharlene\nChristian\nCristina\nDawn\nDiamond\nDominque\nDomonique\nEllen\nFrancesca\nGrace\nHelen\nHolly\nHope\nIris\nJacquelyn\nJenny\nJustine\nKaitlin\nKiana\nKrista\nLakisha\nLatonya\nMichele\nMiriam\nNia\nRebekah\nRyan\nSharmaine\nShayna\nSheila\nSherri\nSylvia\nTakia\nTanya\nTaylor\nValencia\nAlexa\nAlexandria\nAlice\nAllyson\nAmelia\nAntionette\nAsia\nBarbara\nBethany\nCamille\nCarol\nChiquita\nChrista\nChristie\nClare\nDeandra\nDeanna\nDeborah\nDevin\nDionne\nEboni\nEleanor\nElisabeth\nFaith\nJean\nJeanette\nJohanna\nJordan\nJudith\nKatelyn\nKatie\nKelley\nKeyona\nLakia\nLatia\nLatosha\nLillian\nMartha\nMercedes\nMichaela\nNikita\nNina\nNorma\nOlivia\nPhylicia\nPrecious\nRaquel\nRochelle\nRuth\nShantell\nShayla\nSheri\nSherita\nShira\nSimone\nSonia\nSophie\nSusannah\nTamisha\nTeresa\nTracy\nVirginia\nVivian\nYolanda\nAshley\nJessica\nJennifer\nSarah\nBrittany\nElizabeth\nTiffany\nStephanie\nAmanda\nEmily\nDanielle\nLauren\nNicole\nChristina\nKatherine\nRachel\nKimberly\nMelissa\nMary\nAlexandra\nMichelle\nLaura\nSamantha\nCrystal\nKelly\nRebecca\nErica\nMegan\nAndrea\nCaitlin\nLatoya\nDominique\nErin\nCourtney\nJasmine\nJulia\nShannon\nEbony\nChristine\nSara\nBrittney\nKathryn\nKendra\nNatasha\nVictoria\nAnna\nCatherine\nJacqueline\nAlicia\nHannah\nHeather\nIndia\nWhitney\nAllison\nAngela\nLisa\nAlexis\nCaroline\nNatalie\nVanessa\nAmber\nAmy\nMaria\nMonica\nTiara\nVeronica\nMargaret\nAna\nJanay\nMonique\nClaire\nDiana\nErika\nKathleen\nTamika\nChelsea\nKristen\nKrystal\nLindsay\nAdrienne\nDana\nKristin\nMolly\nAngel\nColleen\nCynthia\nJamie\nNancy\nBritney\nCandace\nKatrina\nRenee\nAnne\nEmma\nLinda\nPatrice\nPatricia\nSabrina\nTierra\nCarla\nCasey\nJoanna\nLindsey\nRobin\nAbigail\nAlison\nCarolyn\nCiara\nJanae\nJanelle\nKristina\nLashawn\nMeredith\nSade\nTamara\nTanisha\nTara\nYolanda\nAlisha\nCindy\nIkea\nJulie\nKeisha\nKrystle\nLakeisha\nLatasha\nMarie\nMelanie\nMorgan\nRobyn\nTiera\nAngelica\nChanel\nEllen\nFelicia\nGrace\nKelsey\nLeah\nLucy\nRosa\nAlyssa\nAntoinette\nAshlee\nCharlene\nDeborah\nHelen\nJanet\nKaren\nLatisha\nMercedes\nPamela\nSharon\nSierra\nStacey\nValerie\nAnita\nAnn\nApril\nBrenda\nCandice\nCassandra\nDenise\nFrancesca\nGenevieve\nGina\nHolly\nJordan\nKaitlin\nKatie\nKelley\nLatrice\nMayra\nMia\nMiranda\nSandra\nSophie\nStacy\nSusan\nTia\nTina\nTracy\nAlice\nAmelia\nBethany\nBianca\nBrooke\nCecilia\nCharlotte\nDesiree\nElena\nJenna\nKatharine\nLeslie\nMaureen\nMiriam\nNikia\nNina\nNora\nRochelle\nSophia\nAntonia\nAshleigh\nBrittani\nCamille\nCierra\nDawn\nDonna\nEboni\nHilary\nJasmin\nJeanette\nJillian\nKara\nLatonya\nMadeline\nMeagan\nMeghan\nMelody\nOctavia\nPortia\nRachael\nRhonda\nTameka\nTanya\nAisha\nAntionette\nBrandi\nBridget\nCarmen\nChantel\nChristian\nClaudia\nCristina\nGabrielle\nGlenda\nIrene\nIris\nJade\nJanee\nJocelyn\nJoy\nJuanita\nKate\nKayla\nKenya\nMallory\nMarkia\nMartha\nPaige\nPhylicia\nShante\nShayla\nShelly\nStephany\nSuzanne\nTatiana\nTheresa\nTracey\nAlecia\nAriana\nAsia\nAudrey\nAyana\nBarbara\nBlair\nBonnie\nBrittaney\nCarol\nCarrie\nChanning\nChiquita\nClare\nDeanna\nDiamond\nDomonique\nEden\nEleanor\nElise\nEliza\nEricka\nEssence\nEsther\nEva\nEvelyn\nJenee\nKaitlyn\nKeyana\nKeyona\nKiana\nKionna\nKira\nKirsten\nLakia\nLakisha\nLatarsha\nLouisa\nMadeleine\nMarcia\nMeaghan\nMichael\nMonet\nNadia\nNakia\nOlivia\nParis\nPaula\nRaquel\nRegina\nRoxana\nSada\nSasha\nShana\nShanika\nShanta\nSharonda\nShayna\nShelley\nSherell\nSherita\nTalia\nTania\nTaylor\nTeresa\nTiesha\nTiffani\nAshley\nJessica\nBrittany\nSarah\nLauren\nKatherine\nTiffany\nJennifer\nElizabeth\nStephanie\nAmanda\nJasmine\nDanielle\nNicole\nAlexandra\nRachel\nMichelle\nSamantha\nEmily\nErica\nLaura\nMelissa\nKimberly\nChristina\nMegan\nRebecca\nAllison\nAnna\nAndrea\nVictoria\nEbony\nJulia\nBianca\nCourtney\nKelly\nChristine\nCrystal\nBrittney\nErin\nMary\nWhitney\nCaitlin\nCatherine\nMaria\nJacqueline\nSara\nDominique\nMonique\nShannon\nAmy\nMargaret\nLatoya\nAlexis\nAmber\nHannah\nAngela\nCaroline\nKathleen\nAlicia\nErika\nLisa\nKristen\nVanessa\nHeather\nKendra\nTiara\nTierra\nNatalie\nChelsea\nDana\nMorgan\nAnne\nApril\nClaire\nDiana\nEmma\nJanay\nKristin\nNatasha\nAlison\nKaren\nMonica\nVeronica\nBritney\nCasey\nPatrice\nPatricia\nAna\nAngel\nGabrielle\nIndia\nLindsay\nMeredith\nRenee\nCarolyn\nJasmin\nKrystal\nLatasha\nMolly\nRachael\nSade\nSasha\nAlyssa\nCandace\nMadeline\nSimone\nTamara\nAbigail\nCassandra\nCharlotte\nCynthia\nEleanor\nJocelyn\nKaitlin\nKathryn\nKelsey\nKristina\nLindsey\nMelanie\nMercedes\nMia\nSophia\nAntoinette\nJamie\nJenna\nKara\nLatisha\nMeghan\nShanice\nTamika\nTara\nAdrienne\nAshlee\nFelicia\nGrace\nLeslie\nLinda\nNora\nOctavia\nSandra\nShante\nSusan\nTia\nAsia\nBridget\nCandice\nCarla\nCarly\nClaudia\nFrancesca\nGloria\nMarie\nMarquita\nNina\nOlivia\nRegina\nRobin\nSabrina\nAisha\nAlexandria\nAnita\nArielle\nBethany\nCecilia\nChanel\nCindy\nDiamond\nHilary\nJacquelyn\nJillian\nJoanna\nJulie\nKatharine\nKatrina\nKiana\nLeah\nMarisa\nPorsha\nTanisha\nTaylor\nTheresa\nYolanda\nBrittani\nCarmen\nChiquita\nColleen\nDeborah\nEboni\nFrances\nHelen\nHope\nImani\nIris\nJean\nJustine\nKatie\nKellie\nLashawn\nMaya\nMelody\nMiriam\nNadia\nNatalia\nNoor\nPamela\nRaquel\nShana\nTatiana\nAnn\nAriel\nBrenda\nBriana\nBritany\nCamille\nCiarra\nDeanna\nEllen\nIrene\nIsabel\nJaleesa\nJanae\nJane\nJanelle\nJenny\nJuanita\nKaitlyn\nKirsten\nKrystle\nLakeisha\nLydia\nMaureen\nNaomi\nRochelle\nShanika\nSheila\nSophie\nTanesha\nTasha\nWendy\nAlexa\nAngelica\nAntionette\nAshleigh\nBrandy\nBrianna\nCara\nCharmaine\nChrystal\nCiara\nDaniela\nDenise\nDesiree\nDevin\nEileen\nElisabeth\nElise\nEvelyn\nGenevieve\nGlenda\nJaime\nJohanna\nJonathan\nJoy\nJudith\nKayla\nKeisha\nKelli\nKia\nKrista\nLacey\nLatrice\nLillian\nMarcia\nMarissa\nMeagan\nMelinda\nNoelle\nPaige\nParis\nRachelle\nRashida\nRebekah\nRhonda\nRosa\nSally\nShamika\nShanae\nSierra\nTeresa\nTiesha\nTonisha\nTyesha\nVirginia\nYesenia\nAdriana\nAlice\nAlisha\nAmelia\nAriana\nAshely\nAshia\nAudrey\nAutumn\nAyana\nBernadette\nBlair\nBrittny\nChantel\nCherie\nChloe\nChristiana\nCiera\nClare\nDoris\nEliza\nEricka\nFlor\nGabriela\nGabriella\nGillian\nHolly\nJamila\nJanai\nJessie\nJoanne\nJordan\nKarina\nKassandra\nKate\nKendall\nKenya\nLakisha\nLatonya\nLeila\nLucy\nMadeleine\nMarilyn\nMayra\nMykia\nNadine\nNoel\nNorma\nPaula\nPorsche\nPrecious\nPrincess\nRose\nRosemary\nRoxana\nRuth\nSelena\nShameka\nShaneka\nShanelle\nSharon\nSheena\nSonia\nStacey\nTabitha\nTameka\nTianna\nToni\nTraci\nValerie\nAshley\nBrittany\nJessica\nJasmine\nElizabeth\nTiffany\nSarah\nLauren\nKatherine\nJennifer\nDanielle\nMary\nKiara\nAlexandra\nChristina\nCourtney\nErica\nAmanda\nEmily\nMegan\nRachel\nSamantha\nBrittney\nStephanie\nMaria\nNicole\nCrystal\nVictoria\nCaitlin\nMelissa\nArielle\nBianca\nDominique\nJacqueline\nKendra\nEbony\nKimberly\nLatoya\nAngel\nChristine\nErika\nJulia\nMonique\nRebecca\nSara\nAllison\nAmber\nCatherine\nIndia\nLindsay\nMichelle\nTiara\nAlicia\nAndrea\nAnna\nCaroline\nDiana\nLaura\nTierra\nAnne\nErin\nMonica\nNatalie\nNora\nSandra\nWhitney\nAlexis\nAngela\nApril\nClaire\nCynthia\nDeanna\nGabrielle\nHeather\nJoy\nKelly\nMarquita\nMolly\nNatasha\nPatrice\nRobin\nValerie\nVeronica\nAlisha\nCassandra\nDana\nGrace\nHannah\nJanae\nJulie\nKaren\nLashawn\nLinda\nLindsey\nLisa\nMargaret\nMelanie\nSophia\nSydney\nVanessa\nAbigail\nAntoinette\nAsia\nBarbara\nBrenda\nBriana\nCasey\nCharnice\nCindy\nEboni\nEleanor\nFelicia\nHelen\nKathryn\nKelsey\nKeyona\nKiana\nKristen\nLakeisha\nMeghan\nOctavia\nOlivia\nRuth\nSade\nShanita\nShannon\nSierra\nAshley\nBrittany\nJasmine\nJessica\nSarah\nStephanie\nLauren\nElizabeth\nRachel\nJennifer\nDanielle\nKatherine\nAmanda\nMary\nAmber\nVictoria\nAlexandra\nMichelle\nTiffany\nEmily\nChristina\nAlexis\nSamantha\nMelissa\nNicole\nMargaret\nLaura\nRebecca\nDominique\nErica\nCatherine\nJulia\nSara\nTiara\nBrittney\nCrystal\nAnna\nGabrielle\nHannah\nMaria\nCaitlin\nKelly\nAndrea\nBianca\nEbony\nCourtney\nKimberly\nMelanie\nTaylor\nAllison\nErin\nMegan\nChelsea\nJacqueline\nOlivia\nKathryn\nShannon\nCaroline\nChristine\nErika\nAngela\nKaren\nKathleen\nMonica\nNatalie\nAntoinette\nAriel\nKelsey\nVeronica\nAlison\nEmma\nIndia\nKiara\nAlicia\nClaire\nKayla\nMolly\nShaniqua\nSimone\nAmy\nHeather\nKendra\nLeah\nMaya\nMercedes\nWhitney\nAlyssa\nAnne\nBriana\nCindy\nJamie\nLindsey\nMadeline\nMia\nMonique\nAsia\nBrooke\nDana\nGrace\nLatoya\nLindsay\nMeredith\nVanessa\nAlexa\nBrenda\nDevon\nDiamond\nJordan\nKristen\nMorgan\nRegina\nTierra\nAbigail\nApril\nCiara\nColleen\nDiana\nJanay\nKristin\nLisa\nNatasha\nSandra\nSydney\nValencia\nArielle\nBabygirl\nBrianna\nCamille\nChanel\nChantel\nCynthia\nFelicia\nJulie\nLashawn\nLatonya\nNancy\nTamika\nToni\nAmelia\nCarla\nCharlene\nCharlotte\nImani\nKeisha\nKristina\nLatasha\nLeslie\nMarie\nMarissa\nPaige\nPatrice\nPatricia\nPortia\nValerie\nAisha\nAna\nAngel\nAnn\nAntonia\nDeborah\nDomonique\nEleanor\nJocelyn\nMeghan\nNaomi\nRachael\nRenee\nSade\nSierra\nSophia\nTyler\nAdrienne\nAlisha\nAlyson\nAshlee\nBrandi\nBritney\nCarmen\nDeanna\nElena\nEllen\nJenny\nJoanna\nJosephine\nJuanita\nJustine\nKara\nKatrina\nKirsten\nKrystal\nLily\nMadeleine\nMeagan\nNatalia\nOctavia\nRaven\nRobin\nSabrina\nSylvia\nTiana\nTyesha\nTynesha\nAngelica\nAnita\nBaby\nCandace\nCandice\nCasey\nCassandra\nClaudia\nDesiree\nEricka\nFaith\nGabriela\nHanna\nHilary\nJamila\nJanelle\nJazmine\nJillian\nJohanna\nLakeisha\nLucy\nLydia\nMarquita\nMayra\nMiya\nNora\nPaula\nPrecious\nRaquel\nRashida\nRosa\nRoxana\nSally\nSharon\nTanisha\nTeaira\nVirginia\nAlexandria\nAllyson\nAudrey\nBeverly\nBreanna\nBridget\nCarolina\nChelsey\nChristian\nCortney\nDawn\nDestiny\nElisabeth\nElyse\nFatima\nFrances\nGloria\nIman\nJanee\nJanine\nJenifer\nJuliana\nKaitlin\nKate\nKatharine\nKatie\nKenisha\nKenya\nKeyona\nLara\nLatisha\nLatrice\nMallory\nMonet\nNathalie\nNia\nNina\nParis\nRochelle\nShadonna\nShanika\nShante\nShaquita\nShelby\nShirley\nSonya\nSophie\nStacey\nSuzanne\nSymone\nTara\nTeresa\nTerri\nTessa\nAshley\nJasmine\nBrittany\nJessica\nSarah\nKatherine\nElizabeth\nLauren\nJennifer\nEmily\nAlexandra\nStephanie\nAmanda\nDanielle\nNicole\nAlexis\nRachel\nMichelle\nTiffany\nChristina\nErica\nSamantha\nMary\nMelissa\nJulia\nCourtney\nRebecca\nVictoria\nTiara\nCatherine\nAndrea\nHannah\nCaroline\nAnna\nDiamond\nBianca\nKimberly\nTaylor\nDominique\nLaura\nKathleen\nMargaret\nOlivia\nBrittney\nMonique\nBriana\nChelsea\nMegan\nAmber\nChristine\nKiara\nShannon\nJacqueline\nEbony\nKathryn\nSara\nAngela\nClaire\nErin\nMariah\nNatalie\nMadeline\nAriel\nCrystal\nMonica\nCaitlin\nKelly\nMelanie\nShelby\nAlicia\nAllison\nBrianna\nIesha\nAsia\nErika\nKayla\nMaria\nRaven\nTierra\nAnne\nGrace\nKaren\nKelsey\nLeah\nVeronica\nAna\nApril\nCharlotte\nGabrielle\nMolly\nNancy\nPatricia\nVanessa\nKristen\nSydney\nAlison\nAmelia\nDesiree\nJanae\nJazmine\nJordan\nKendra\nWhitney\nAmy\nCamille\nCindy\nEmma\nKristin\nLindsay\nLisa\nMaya\nMercedes\nMorgan\nSierra\nAngel\nBrooke\nCassandra\nDenise\nDiana\nHeather\nParis\nRuth\nShanae\nShaniqua\nAdrienne\nBrenda\nCarla\nChanel\nChloe\nCynthia\nKrystal\nLindsey\nMeghan\nNatasha\nPaige\nAbigail\nAlyssa\nArielle\nBrittani\nChristian\nIndia\nJanay\nKierra\nLatasha\nLatoya\nRegina\nRobyn\nTamika\nTyesha\nWendy\nAisha\nCarmen\nCarolyn\nEleanor\nJade\nJasmin\nJazmin\nKara\nKatie\nKristina\nPatrice\nSabrina\nSade\nTara\nTeresa\nAntoinette\nAntonia\nBritney\nCandice\nCara\nCasey\nEllen\nEvelyn\nGloria\nHaley\nImani\nJulie\nKarina\nKatrina\nLashawn\nLesley\nMadeleine\nMarie\nMeredith\nMiranda\nRachael\nShanice\nSophia\nSophie\nTalia\nTheresa\nZoe\nAnn\nAudrey\nCristina\nDeanna\nDestiny\nElena\nGina\nIkea\nJamie\nJanelle\nJenna\nJocelyn\nKiana\nLaquita\nLondon\nMarissa\nMia\nMonet\nNia\nNina\nOctavia\nPaula\nPortia\nRachelle\nSandra\nShana\nShanell\nTanesha\nTanisha\nTracy\nVivian\nYesenia\nYolanda\nAlisha\nAshleigh\nBarbara\nBrandy\nCandace\nCecilia\nChantel\nCierra\nClaudia\nColleen\nDana\nDiane\nDonna\nElisabeth\nFelicia\nGabriella\nHilary\nJamese\nJustine\nKeisha\nLakeisha\nLydia\nMichele\nMiriam\nMiya\nNaomi\nNora\nPriscilla\nRaquel\nRenee\nRose\nShakia\nShanee\nShantel\nStacy\nTiana\nVirginia\nAja\nAmina\nAnastasia\nAngelica\nAriana\nBrittaney\nChantell\nCharmaine\nChelsey\nGeorgia\nHanna\nHelen\nHope\nIsabel\nJane\nJanice\nJazmyn\nJenny\nJesica\nKatharine\nKellie\nKerry\nLena\nLoren\nLouisa\nMartha\nMayra\nMeagan\nNadia\nNatalia\nNoelle\nPrincess\nRobin\nRochelle\nSandy\nSasha\nSimone\nSuzanne\nTamesha\nAlexa\nAnita\nAshlee\nAva\nAyana\nAyanna\nBabygirl\nBelinda\nBreana\nBreanna\nBridget\nCarolina\nCiara\nCortney\nDaniela\nDeandra\nDeborah\nDenisha\nDomonique\nEbonee\nFaith\nFatima\nFiona\nGabriela\nGenevieve\nHillary\nIman\nIngrid\nJamila\nJanet\nJessie\nJoanna\nJuanita\nKarla\nKatelyn\nKiera\nKirsten\nLatisha\nLatrice\nLeslie\nLexus\nLia\nMackenzie\nMadison\nMariam\nMariama\nMarlene\nMartina\nMelody\nNoel\nNoor\nPamela\nQuanisha\nRosa\nShaneka\nShanika\nShayla\nSheila\nSonia\nStacey\nSylvia\nTabatha\nTakia\nTamara\nTia\nYasmin\nAshley\nJasmine\nJessica\nBrittany\nElizabeth\nSarah\nDanielle\nEmily\nRachel\nAlexis\nLauren\nStephanie\nCourtney\nAlexandra\nKatherine\nAmanda\nDiamond\nMichelle\nVictoria\nJennifer\nSamantha\nErica\nMary\nAmber\nRebecca\nTaylor\nAndrea\nBriana\nChelsea\nTiffany\nNicole\nDominique\nLaura\nCatherine\nBianca\nMegan\nBrittney\nHannah\nChristina\nJulia\nCaroline\nEmma\nKimberly\nMelissa\nShannon\nMaria\nSara\nTiara\nKelsey\nMargaret\nOlivia\nAllison\nAngela\nImani\nKayla\nAnna\nErin\nAna\nBrianna\nJacqueline\nKelly\nMariah\nSophia\nEbony\nGabrielle\nKendra\nMorgan\nShanice\nShelby\nCaitlin\nKiara\nNatalie\nAsia\nChristine\nClaire\nKaren\nKathryn\nMolly\nAlicia\nBria\nMonica\nAnne\nCrystal\nMia\nVanessa\nAmy\nGrace\nCierra\nDiana\nMadeleine\nMaya\nMonique\nRaven\nWhitney\nAbigail\nChanel\nEvelyn\nIndia\nMeredith\nTierra\nZoe\nBrenda\nKristen\nMarissa\nNora\nPaige\nSade\nSierra\nAlyssa\nAngelica\nCharlotte\nErika\nJamie\nJordan\nKathleen\nMadeline\nSydney\nAngel\nApril\nCasey\nGloria\nPrecious\nRenee\nChloe\nCiara\nClaudia\nCristina\nJenna\nKristina\nLatoya\nLisa\nMeghan\nMercedes\nPatricia\nRegina\nSophie\nTanisha\nAlexa\nAlison\nCara\nCynthia\nIngrid\nKaitlyn\nKendall\nKristin\nKrystal\nLeah\nLindsay\nMelanie\nNancy\nNia\nNina\nTara\nTheresa\nWendy\nAdrienne\nBreanna\nCiera\nDana\nDeanna\nDesiree\nHaley\nHayley\nHeather\nJanae\nJanay\nNaomi\nNatasha\nRosa\nShanika\nSimone\nTamara\nTamika\nTiarra\nVivian\nAdriana\nBarbara\nCindy\nDenise\nEricka\nGabriella\nGina\nIesha\nIsabel\nJamila\nJane\nJasmin\nJazmin\nJazmine\nLashawn\nLindsey\nLucy\nMarie\nNatalia\nPamela\nTeresa\nTiana\nValerie\nAngelique\nAriel\nAshleigh\nBlair\nBrandi\nBridget\nCassandra\nColleen\nCorinne\nDevon\nEleanor\nElise\nEllen\nGabriela\nHolly\nIris\nJade\nJocelyn\nKaitlin\nKatie\nKatrina\nKiana\nLara\nLena\nLeslie\nLondon\nMonet\nNiya\nParis\nRaquel\nShanay\nShayla\nTatiana\nTess\nTia\nTyler\nVeronica\nVirginia\nAisha\nAlice\nAngelic\nAnn\nAnnie\nAntionette\nAntoinette\nAsha\nAva\nBridgette\nBritney\nBrittani\nBrooke\nCandace\nCandice\nCarolyn\nDestiny\nElena\nHilary\nJalisa\nJanelle\nJanet\nJenifer\nJillian\nJoy\nJulie\nKara\nKarla\nKatelyn\nKatharine\nKeisha\nKiera\nLatasha\nLatisha\nLillian\nMallory\nMiranda\nNakia\nOctavia\nPatrice\nRachael\nSabrina\nSandra\nShanae\nShanell\nShaniqua\nSuzanne\nTakia\nTanya\nTiera\nAlexus\nAmelia\nAriana\nAshlee\nAyanna\nBreana\nCameron\nCamille\nCarla\nCarolina\nChanae\nChanell\nChanelle\nChantel\nCharmaine\nCheryl\nCheyenne\nChristian\nDanyelle\nDashawn\nDemetria\nEva\nFrances\nHelen\nHillary\nJacquelyn\nJamia\nJanai\nJanice\nJenny\nJoanna\nJuanita\nJuliana\nKarina\nKellie\nKhadijah\nKianna\nMartha\nMaureen\nMelody\nMikea\nNadia\nNoelle\nRachelle\nRuth\nShakia\nShana\nSharita\nSharon\nSidney\nSusan\nTonya\nYasmeen\nYasmin\nYvonne\nAshley\nJasmine\nSarah\nJessica\nAlexis\nElizabeth\nEmily\nLauren\nBrittany\nDiamond\nRachel\nDanielle\nTaylor\nAlexandra\nKatherine\nJulia\nNicole\nMary\nAndrea\nBriana\nJennifer\nMichelle\nSamantha\nStephanie\nAmber\nVictoria\nCaroline\nHannah\nCourtney\nMegan\nChristina\nOlivia\nTiara\nDominique\nMargaret\nAmanda\nErica\nAnna\nTiffany\nBria\nErin\nEmma\nRebecca\nBrianna\nCrystal\nMaya\nKelly\nNatalie\nShannon\nLaura\nMelanie\nRaven\nSara\nMaria\nMelissa\nKathryn\nCatherine\nGabrielle\nAllison\nBianca\nBrittney\nKayla\nCierra\nEbony\nGrace\nIndia\nJacqueline\nMonique\nSierra\nTierra\nAngela\nCaitlin\nImani\nKelsey\nTyler\nVanessa\nAnne\nChelsea\nDiana\nKaren\nKimberly\nMadeline\nAngel\nAsia\nLeah\nSade\nAriel\nCharlotte\nClaire\nJordan\nKathleen\nKendra\nKiara\nMonica\nAbigail\nMariah\nSabrina\nDestiny\nMia\nMolly\nPaige\nRegina\nAna\nGabriela\nHaley\nJazmine\nLindsey\nAlexus\nAlicia\nJasmin\nNatasha\nShelby\nVeronica\nYasmine\nAlyssa\nChanel\nChristine\nJanae\nJulie\nLisa\nSophia\nZoe\nAlexa\nCarolyn\nErika\nJenna\nKierra\nMorgan\nNancy\nNaomi\nWhitney\nAlice\nBrenda\nBridget\nCamille\nHelen\nKatrina\nKristen\nMarie\nOctavia\nRobin\nBrooke\nCarmen\nCasey\nCristina\nDana\nFelicia\nJanet\nJazmin\nJoy\nKara\nLindsay\nLondon\nMadeleine\nMeghan\nNia\nParis\nRachelle\nShanice\nTatiana\nAmelia\nChantel\nCiara\nColleen\nDesiree\nHeather\nIsabel\nJuanita\nKendall\nKia\nKyra\nLillian\nLydia\nMarisa\nMeredith\nNora\nRosa\nSandra\nTanesha\nTiana\nAdrienne\nAlisha\nAlison\nAngelique\nAntoinette\nApril\nArielle\nAyana\nBrandi\nBrionna\nBritney\nChristian\nCindy\nClara\nClare\nCynthia\nDeja\nDomonique\nIris\nJade\nJamie\nJanay\nJocelyn\nKaitlyn\nKiana\nKirsten\nKristina\nKrystal\nLatonya\nMackenzie\nMarquita\nMayra\nMercedes\nMichaela\nMonae\nMyesha\nNadia\nPamela\nPatrice\nPatricia\nRachael\nRaquel\nSasha\nShante\nShaunice\nSimone\nSydney\nTamara\nTamika\nTatyana\nTayler\nTyesha\nWendy\nAisha\nAnn\nAsha\nAshlee\nCandace\nCara\nCarol\nCassandra\nChloe\nDaniela\nElena\nEvelyn\nIngrid\nIsabelle\nJessie\nJillian\nKatharine\nKenya\nKristin\nLucy\nMikia\nMiriam\nNichelle\nNina\nNiya\nSophie\nTanisha\nTiera\nToni\nTori\nYasmin\nAdriana\nAlejandra\nAntionette\nAriana\nAshleigh\nAudrey\nAutumn\nBarbara\nBreanna\nBrittani\nCandice\nCarly\nClaudia\nDeanna\nDeborah\nDelores\nDina\nEboni\nElisa\nElisabeth\nElise\nEliza\nEllen\nElsy\nFaith\nHayley\nIrene\nIsabella\nJanelle\nJohanna\nJustine\nKatelyn\nKhadijah\nKristine\nLashae\nLashawn\nLatisha\nLena\nLinda\nLucia\nMadison\nMarina\nMartha\nMartina\nMelody\nMichele\nMiracle\nNatalia\nPrecious\nPrincess\nRichelle\nRobyn\nRose\nShaniqua\nSharon\nSusana\nTanya\nTiarra\nVivian\nYvonne\nJasmine\nAshley\nAlexandra\nBrittany\nSarah\nJessica\nRachel\nAlexis\nDiamond\nEmily\nTaylor\nDanielle\nElizabeth\nKatherine\nMary\nBrianna\nLauren\nVictoria\nSamantha\nEmma\nHannah\nCaroline\nImani\nJennifer\nBriana\nAnna\nAmanda\nBria\nJulia\nKayla\nNicole\nAmber\nMichelle\nRebecca\nAndrea\nTiffany\nShannon\nAsia\nCourtney\nLaura\nMaya\nCatherine\nClaire\nEbony\nMaria\nTiara\nGabrielle\nMegan\nCrystal\nJacqueline\nStephanie\nAllison\nDiana\nErin\nKathryn\nKhadijah\nKimberly\nMelissa\nOlivia\nSydney\nDestiny\nErica\nGrace\nChristina\nIndia\nKaren\nMargaret\nAlexus\nAnne\nCaitlin\nDominique\nHaley\nJordan\nLeah\nChristine\nKelsey\nMadeline\nMonica\nNatalie\nTamara\nAlicia\nJanae\nKelly\nMariah\nNancy\nRaven\nVanessa\nAbigail\nAngel\nKiara\nKristen\nMonique\nToni\nBianca\nKendra\nCharlotte\nCynthia\nErika\nKathleen\nMadison\nMia\nMorgan\nNia\nSara\nAngela\nCindy\nGabriela\nIsabel\nJasmin\nJazmine\nNaomi\nShanice\nSophia\nWhitney\nAlexa\nAna\nApril\nChanel\nDana\nKara\nKatrina\nLindsay\nNina\nSierra\nBrandi\nChelsea\nClaudia\nHeather\nIsabelle\nJenifer\nKeisha\nKenya\nKristina\nLily\nLindsey\nLydia\nMadeleine\nMeghan\nPatricia\nSabrina\nSusan\nTiana\nWendy\nAlison\nAliyah\nAngelica\nAntonia\nAriel\nAyanna\nBrooke\nChristian\nCiara\nHayley\nJade\nJamie\nJocelyn\nJoy\nKiera\nKrystal\nLondon\nMarissa\nMelanie\nNadia\nSade\nTania\nTierra\nTyler\nTyra\nAjee\nAmy\nAutumn\nBridget\nBrittney\nCarla\nCasey\nCecilia\nChante\nCheyenne\nCierra\nDeja\nElena\nEllen\nGloria\nIngrid\nIsabella\nJanay\nJanelle\nKaitlyn\nKierra\nLisa\nMonet\nPaige\nPrecious\nSophie\nTatiana\nZoe\nAaliyah\nAdrienne\nAlyssa\nAmelia\nAriana\nCamille\nChanelle\nColleen\nDenise\nDesiree\nEboni\nHelen\nJada\nJulie\nKaitlin\nKarina\nKendall\nLexus\nLillian\nLinda\nMercedes\nMolly\nParis\nRachelle\nTia\nTyesha\nAdriana\nAmira\nAnastasia\nAnn\nAshlee\nAudrey\nAyana\nBabygirl\nBrea\nBridgette\nBritney\nCarina\nCassandra\nChloe\nDevon\nEliana\nFaith\nHope\nJenna\nJustice\nLeslie\nLucy\nMarie\nNatasha\nNoelle\nNora\nPamela\nPaula\nRobin\nRosa\nSandra\nSavannah\nShayla\nShelby\nTanisha\nTess\nVeronica\nAlaina\nAlexandria\nAlisha\nArmani\nAsha\nAshely\nAshleigh\nBethany\nBreanna\nBrenda\nBreona\nCameron\nCara\nCarolyn\nChantel\nCiera\nDalia\nDaniella\nDionna\nDomonique\nDoris\nEleanor\nElise\nEvelyn\nGabriella\nGenesis\nGenevieve\nHanna\nIesha\nIkea\nIrene\nJazmin\nJillian\nJoan\nJohanna\nJudith\nKate\nKatelyn\nKatie\nKiana\nLashae\nLashawn\nLena\nMichaela\nMiranda\nNatalia\nNiya\nPatrice\nRenee\nShaneka\nSimone\nSuzanne\nTamika\nTanya\nTori\nValencia\nVirginia\nVivian\nXiomara\nAshley\nJasmine\nAlexis\nDanielle\nJessica\nAlexandra\nKatherine\nRachel\nBrittany\nSarah\nBrianna\nDiamond\nElizabeth\nJennifer\nTaylor\nEmily\nCaroline\nEmma\nJulia\nVictoria\nKayla\nNicole\nAnna\nHannah\nAsia\nOlivia\nAmber\nGrace\nLauren\nMargaret\nMary\nDeja\nErica\nMichelle\nMorgan\nRebecca\nAmanda\nChristina\nStephanie\nImani\nBriana\nCatherine\nJordan\nMaya\nSamantha\nCrystal\nAngel\nMadeline\nMegan\nIndia\nDominique\nClaire\nCourtney\nNatalie\nAllison\nLaura\nMaria\nMelissa\nSydney\nBria\nDestiny\nErin\nSara\nKelly\nKelsey\nTiffany\nAlexus\nGabrielle\nJacqueline\nMariah\nEvelyn\nKaren\nKathryn\nKimberly\nSophia\nAlyssa\nErika\nNora\nAndrea\nCamille\nJamie\nMia\nMonica\nNaomi\nTiara\nAna\nBrittney\nChristine\nDiana\nIsabella\nMadeleine\nSierra\nSophie\nZoe\nAbigail\nDesiree\nJada\nJanae\nKiana\nLeah\nLeslie\nNatasha\nSade\nShannon\nAnne\nJasmin\nJazmine\nJocelyn\nKiara\nKristen\nMadison\nMolly\nSabrina\nSelena\nTamara\nTyler\nAlexa\nBianca\nBridget\nCierra\nDasia\nEleanor\nJade\nKathleen\nLydia\nMackenzie\nMarie\nMelanie\nMonique\nAliyah\nChantel\nCharlotte\nCiara\nClara\nFrances\nIsabelle\nJane\nLily\nLondon\nSummer\nTierra\nAdriana\nAja\nAlison\nAmelia\nAngela\nArielle\nArmani\nAutumn\nBrandi\nCaitlin\nCara\nChloe\nDana\nDeanna\nElena\nGabriela\nHeather\nHelen\nIsabel\nJanay\nJoy\nKierra\nLillian\nLindsey\nMarissa\nMichaela\nPatricia\nRaven\nRuth\nShelby\nVanessa\nAaliyah\nAisha\nAriel\nAyanna\nBreana\nBrenda\nBreonna\nCynthia\nDaisha\nDashawn\nEbony\nGabriella\nHaley\nKarla\nKenya\nNatalia\nNia\nRaquel\nRobin\nRosa\nTania\nAmani\nAmy\nAntoinette\nAriana\nArianna\nAsha\nBarbara\nBreanna\nBrionna\nCarly\nCarmen\nChanel\nChelsea\nChristian\nClare\nDeborah\nEva\nGenevieve\nJanelle\nJohanna\nJulie\nKaila\nKaitlin\nKatelyn\nKira\nMikayla\nMiranda\nNancy\nNina\nPaige\nPamela\nPaula\nRose\nSasha\nSavannah\nTatiana\nTia\nTiana\nToni\nTyra\nAlicia\nAmira\nAnastasia\nAnnie\nAudrey\nBaby\nBabygirl\nBryanna\nCamilla\nCandace\nCarla\nCindy\nColleen\nDestini\nDomonique\nEileen\nFrancesca\nHanna\nHolly\nIesha\nJamia\nJanee\nJenna\nJuliana\nJulianna\nJustice\nKathy\nKendall\nKiera\nKristin\nKristina\nKrystal\nKyla\nLashae\nLashawn\nLinda\nMartha\nMercedes\nMira\nMiracle\nMonet\nMoriah\nNajah\nParis\nShira\nSimone\nSkye\nSkylar\nSofia\nTalia\nTamera\nTara\nTori\nUnique\nVivian\nWendy\nYasmin\nAlexis\nTaylor\nEmily\nJessica\nSarah\nJasmine\nAshley\nKatherine\nKayla\nImani\nJennifer\nElizabeth\nDiamond\nRebecca\nAlexandra\nAnna\nDanielle\nJulia\nCaroline\nRachel\nStephanie\nBrianna\nBrittany\nCourtney\nSamantha\nAmanda\nHannah\nLauren\nNatalie\nNicole\nBriana\nCatherine\nMary\nJordan\nAsia\nLaura\nMargaret\nOlivia\nVictoria\nMaria\nDestiny\nMegan\nSydney\nDeja\nEmma\nSophia\nChristina\nMaya\nAmber\nDominique\nCrystal\nMelissa\nAndrea\nGabrielle\nGrace\nSara\nSierra\nAngel\nCharlotte\nKelly\nLeah\nShannon\nTatiana\nTiara\nTyler\nBianca\nErica\nErika\nErin\nJacqueline\nKimberly\nMadeline\nMichelle\nMonica\nMorgan\nNaomi\nTiffany\nJocelyn\nMia\nAbigail\nAriel\nBria\nCindy\nClaire\nDiana\nMadeleine\nRaven\nVanessa\nZoe\nAmy\nAngela\nAriana\nHelen\nJada\nLondon\nNia\nSabrina\nShayla\nSophie\nChloe\nChristine\nClaudia\nIndia\nIsabel\nJazmine\nKelsey\nMonae\nNadia\nAaliyah\nAlana\nAlexus\nChanel\nGabriella\nHaley\nKathleen\nKenya\nMolly\nNora\nPrecious\nTamia\nAlicia\nAllison\nAnne\nCarla\nEbony\nGabriela\nHope\nIsabella\nJasmin\nKarina\nKathryn\nLydia\nMadison\nMarissa\nMiranda\nSofia\nAisha\nAmelia\nAna\nAudrey\nAyanna\nCaitlin\nChyna\nDana\nJanae\nKendra\nKiara\nKyra\nLashawn\nMariah\nMonique\nMyesha\nParis\nSade\nSasha\nShelby\nTeresa\nTierra\nAlison\nAliyah\nAlyssa\nAmani\nArielle\nArmani\nBreanna\nBrenda\nCara\nCarolyn\nCiara\nDestinee\nElena\nEllen\nEmani\nHayley\nIsabelle\nJenna\nKaren\nKarla\nKristen\nLillian\nLindsay\nNina\nRenee\nTamara\nToni\nTyra\nAlejandra\nAyana\nBlair\nBrandi\nBreana\nBridget\nCierra\nEleanor\nEva\nFaith\nJamie\nJoy\nJustice\nLeslie\nMaeve\nMarisa\nMelanie\nNancy\nNiya\nSavannah\nSummer\nSusan\nTania\nAdrienne\nAlexa\nAlexandria\nAmina\nApril\nBailey\nBrigid\nBrittney\nBrooke\nCamille\nCarly\nChelsea\nChina\nChristian\nClara\nClare\nColleen\nDajah\nDaniela\nDelaney\nDomonique\nEliana\nEliza\nFrances\nHailey\nIesha\nJade\nJane\nJasmyn\nKaitlin\nKara\nKendall\nKhadijah\nKiana\nKyla\nLatonya\nLexus\nMaia\nMariama\nMeghan\nMoesha\nNatasha\nNoelle\nOctavia\nPaola\nPatricia\nRosa\nSelena\nTara\nTatyana\nTia\nTianna\nJasmine\nAlexis\nKayla\nSarah\nKatherine\nTaylor\nHannah\nJessica\nAshley\nElizabeth\nDiamond\nEmma\nCaroline\nJennifer\nEmily\nBriana\nRachel\nAlexandra\nGrace\nSophia\nLauren\nOlivia\nBrianna\nImani\nJordan\nJulia\nAnna\nDanielle\nGabrielle\nRebecca\nSamantha\nVictoria\nMadeline\nMaya\nStephanie\nAngel\nBrittany\nDominique\nErin\nJada\nNia\nNicole\nAmanda\nJacqueline\nCourtney\nIndia\nClaire\nJade\nAsia\nDeja\nMadison\nMichelle\nDestiny\nMary\nMia\nChristina\nErica\nTiffany\nAmber\nCatherine\nMegan\nAna\nMargaret\nMariah\nAllison\nBaby\nCamille\nJanae\nSydney\nAndrea\nIsabelle\nKathleen\nKimberly\nNatalie\nSabrina\nTiara\nAbigail\nAnne\nChristine\nClaudia\nLaura\nLeslie\nMadeleine\nMelissa\nAlexus\nBabygirl\nCharlotte\nIsabel\nKathryn\nMaria\nMelanie\nMorgan\nSara\nShayla\nAlyssa\nAriana\nBria\nBrooke\nGabriela\nGabriella\nKiara\nNaomi\nRaven\nVanessa\nAaliyah\nAlexa\nAliyah\nAyanna\nBianca\nCaitlin\nLeah\nLinda\nNina\nNora\nParis\nShannon\nTyler\nVeronica\nAmani\nAngela\nEbony\nJanay\nKelly\nKristen\nMichaela\nTamia\nZoe\nAlicia\nCarmen\nCierra\nDana\nDaniela\nDeborah\nJasmin\nJocelyn\nKaren\nKate\nMiranda\nNancy\nSelena\nSophie\nTierra\nYasmine\nAmari\nAriel\nArmani\nBethany\nCecilia\nChloe\nCindy\nDasia\nDesiree\nDiana\nErika\nEvelyn\nFaith\nIsabella\nJanai\nJenna\nJillian\nKendall\nKenya\nKyra\nLillian\nLindsay\nLydia\nMarina\nMartha\nMaura\nMolly\nNatasha\nNoelle\nSade\nSierra\nTalia\nTania\nTatyana\nToni\nTyra\nAlana\nAlison\nAmy\nAngelique\nArianna\nBreanna\nBrittney\nChanel\nCiara\nDelaney\nDestinee\nEmani\nEva\nHope\nIris\nJamea\nJamie\nJanell\nJayla\nJazmine\nJoanna\nKatie\nKendra\nLashawn\nMaia\nMakayla\nMarie\nMeghan\nMilan\nMonique\nNakia\nPaige\nPrecious\nRuth\nSimone\nTamara\nTara\nZhane\nAlexia\nAngelica\nAudrey\nBarbara\nBrionna\nCameron\nCarolyn\nCasey\nCassandra\nChelsea\nChina\nChyna\nClara\nCrystal\nDaja\nDenise\nDiane\nElena\nEliza\nEmoni\nErykah\nFiona\nHayley\nJenifer\nJordyn\nJuliana\nKaitlin\nKennedy\nKiana\nKierra\nKristina\nLindsey\nLisa\nMiracle\nNadia\nNiya\nSavannah\nShelby\nSonia\nTatiana\nTess\nTessa\nTheresa\nTiana\nTiffani\nTyana\nWhitney\nAlexis\nJasmine\nTaylor\nKayla\nJessica\nAshley\nElizabeth\nOlivia\nAlexandra\nEmma\nJulia\nKatherine\nSarah\nDestiny\nLauren\nBrianna\nJennifer\nMaya\nCaroline\nJordan\nEmily\nRachel\nDiamond\nHannah\nSophia\nSydney\nVictoria\nAnna\nNia\nMary\nJada\nDanielle\nImani\nRebecca\nClaire\nGrace\nMegan\nNatalie\nBrittany\nDeja\nBriana\nMadeleine\nMadeline\nCamille\nCatherine\nErin\nAngel\nAsia\nErica\nGabrielle\nJade\nLaura\nMadison\nMargaret\nLeah\nMichelle\nAbigail\nAmber\nDominique\nMia\nMya\nSamantha\nSara\nAllison\nAmanda\nAndrea\nPrecious\nTiffany\nAngela\nBria\nChloe\nChristina\nIsabel\nStephanie\nTamia\nAyanna\nJayla\nKathleen\nLeslie\nMaria\nNicole\nPaige\nTyra\nZoe\nAlyssa\nCourtney\nEleanor\nGabriela\nGabriella\nMelissa\nMonica\nMorgan\nSofia\nSophie\nCharlotte\nDiana\nFrances\nJacqueline\nJamia\nJazmine\nMakayla\nMariah\nNina\nShelby\nTamara\nTyler\nAlexus\nAmari\nAnne\nCierra\nEva\nFrancesca\nJanae\nJocelyn\nKaitlyn\nKaren\nKelly\nKyra\nNaomi\nPatricia\nTatyana\nTiara\nAlexa\nChyna\nCynthia\nErika\nFaith\nHelen\nIsabella\nIsabelle\nJosephine\nKelsey\nKiara\nKristen\nLillian\nLily\nLucy\nMelanie\nMikayla\nMolly\nSade\nSierra\nSimone\nVeronica\nAdriana\nAlison\nAliyah\nAmy\nAna\nAutumn\nBrittney\nChelsea\nDesiree\nEbony\nElise\nJenna\nJulie\nKendra\nKenya\nMonique\nNancy\nParis\nTalia\nAaliyah\nAlicia\nAmelia\nBianca\nBrooke\nClaudia\nColleen\nCrystal\nDasia\nGloria\nHeaven\nJamie\nKarla\nKyla\nLauryn\nLeila\nMara\nMichaela\nNiya\nRose\nShannon\nTatiana\nAlexandria\nAmani\nAriana\nArielle\nAva\nBaby\nCaitlin\nCameron\nClare\nDana\nDestinee\nEliza\nEvelyn\nFatima\nGenesis\nGiselle\nHaley\nHope\nJohanna\nKai\nKaila\nKaitlin\nKatharine\nKathryn\nKendall\nKennedy\nKira\nKrystal\nLiliana\nLindsay\nLindsey\nNadia\nSabrina\nTania\nTeresa\nTheresa\nTierra\nAdrienne\nAja\nAnya\nAriel\nAyana\nBreanna\nBryana\nCarolyn\nCasey\nCindy\nClara\nDaija\nDasha\nDashawn\nDejah\nDenise\nElla\nEmoni\nEssence\nGina\nGraciela\nHalle\nHayley\nIndia\nIsis\nJanay\nJoy\nKate\nKatelyn\nKiera\nKimberly\nLinda\nLisa\nLondon\nMackenzie\nMeredith\nMilan\nRaquel\nShayla\nSummer\nSusan\nTia\nVanessa\nVirginia\nKayla\nJasmine\nTaylor\nDestiny\nSarah\nLauren\nEmily\nDiamond\nAshley\nJessica\nOlivia\nBrianna\nJada\nAnna\nCaroline\nKatherine\nMaya\nElizabeth\nEmma\nHannah\nJulia\nAlexandra\nMary\nVictoria\nGrace\nRachel\nAlexis\nJennifer\nJordan\nMadison\nKiara\nMaria\nMichelle\nSophia\nSydney\nCatherine\nDanielle\nImani\nRebecca\nAsia\nGabrielle\nMegan\nClaire\nNicole\nBrittany\nFaith\nIsabel\nMargaret\nNatalie\nStephanie\nAngel\nDeja\nIsabella\nSamantha\nErin\nMadeline\nAbigail\nAmanda\nEleanor\nJayla\nNia\nSophie\nTatiana\nZoe\nLeah\nTamia\nTania\nTiffany\nAndrea\nDiana\nKimberly\nLily\nMya\nSara\nAlyssa\nAmber\nDominique\nIndia\nKathleen\nMia\nTatyana\nAmaya\nAmelia\nBriana\nCaitlin\nCamille\nJacqueline\nKaren\nLindsey\nMikayla\nMorgan\nSofia\nAlicia\nCharlotte\nGabriella\nKelly\nLauryn\nNaomi\nNora\nShayla\nTiara\nVeronica\nAniya\nCarolyn\nChristina\nCierra\nCourtney\nErica\nGabriela\nGloria\nJasmin\nJazmine\nKaitlyn\nLaura\nMackenzie\nPaige\nAlana\nAmari\nAna\nAnne\nAva\nAyanna\nCynthia\nDestinee\nElena\nFatima\nGenevieve\nKyra\nLondon\nLucy\nMakayla\nMolly\nMonica\nNadia\nNatalia\nParis\nRaven\nSasha\nShannon\nSierra\nSimone\nTamara\nAlexa\nAllison\nArianna\nCamryn\nChloe\nCindy\nDana\nEvelyn\nIsabelle\nJordyn\nLeslie\nMariah\nMeredith\nMiracle\nNina\nRuby\nShania\nShaniya\nTyler\nAnya\nBria\nBridget\nBrooke\nCasey\nCecilia\nChyna\nClaudia\nCrystal\nDaja\nDejah\nElla\nEva\nHaley\nHelen\nJade\nJamie\nKathryn\nKennedy\nMadeleine\nMelanie\nMelissa\nMichaela\nMiranda\nMonique\nTrinity\nVanessa\nAaliyah\nAisha\nAlice\nAngela\nAntonia\nAriana\nAvery\nBianca\nCameron\nCarolina\nClare\nDaisha\nDasia\nDesiree\nElise\nEllen\nFiona\nHope\nIngrid\nJanae\nJewel\nJocelyn\nKaiya\nKarina\nKate\nKatelyn\nKendra\nKenya\nKierra\nKyla\nMaeve\nTara\nWendy\nAja\nAliyah\nAmani\nAnnie\nApril\nAriel\nAshanti\nAudrey\nAutumn\nBrandi\nBreanna\nCaitlyn\nCeleste\nCelia\nChanel\nChelsea\nCheyenne\nCiara\nDaniela\nEliana\nElisa\nEryn\nHailey\nIris\nKarla\nKira\nKristin\nKristina\nLillian\nLydia\nMeghan\nNaya\nNiya\nNya\nPatricia\nRiley\nSabrina\nSavannah\nSelena\nSerena\nTalia\nTyra\nVirginia\nKayla\nKatherine\nElizabeth\nDestiny\nJordan\nGrace\nTaylor\nSarah\nAlexandra\nHannah\nJasmine\nJulia\nOlivia\nSydney\nEmma\nLauren\nCaroline\nDiamond\nBrianna\nEmily\nAlexis\nDanielle\nJennifer\nJessica\nAshley\nRachel\nAnna\nSophia\nVictoria\nImani\nJada\nMorgan\nNicole\nCamille\nDiana\nMadison\nMaya\nAndrea\nCatherine\nGabrielle\nMary\nSophie\nZoe\nAbigail\nAsia\nClaire\nCourtney\nMargaret\nMichelle\nNia\nTrinity\nChloe\nIsabel\nMaria\nAngel\nIsabella\nKimberly\nLeah\nMikayla\nSamantha\nSofia\nAmanda\nJacqueline\nMadeline\nMia\nErin\nJocelyn\nLily\nLondon\nTamia\nAniya\nBriana\nBrittany\nEleanor\nMadeleine\nMakayla\nTamara\nAnne\nBrooke\nJanae\nKathryn\nKyra\nTiffany\nVanessa\nAudrey\nErica\nFaith\nIndia\nJade\nKierra\nLauryn\nNatalie\nSabrina\nSara\nSierra\nAliyah\nAriana\nAva\nCharlotte\nDeja\nDominique\nGabriella\nHaley\nJayla\nMya\nRaven\nRebecca\nStephanie\nAmani\nAmaya\nAngela\nBria\nCaitlin\nCameron\nCarmen\nJasmin\nKendall\nKennedy\nLydia\nMonet\nNina\nSavannah\nShayla\nTyler\nAna\nAniyah\nArmani\nChyna\nCierra\nCindy\nEliza\nGabriela\nHelen\nIyanna\nKathleen\nLeslie\nNaomi\nPaige\nSimone\nTara\nAisha\nAllison\nAmelia\nAmy\nAriel\nAutumn\nBridget\nChristina\nClaudia\nHanna\nKiara\nMegan\nMichaela\nNadia\nParis\nTiara\nAlexa\nAmber\nAnn\nBianca\nCarolina\nChristian\nChristine\nCiara\nClara\nElla\nEvelyn\nHailey\nHana\nJoy\nJuliana\nKala\nKarina\nLaura\nLesly\nLindsay\nMackenzie\nMariah\nMeghan\nMonique\nNancy\nNatalia\nNiya\nPatricia\nRaquel\nRose\nShania\nTania\nAdriana\nAlexandria\nAlyssa\nBreanna\nCrystal\nDaisha\nDaniela\nDeborah\nEden\nElena\nEmely\nEva\nFatima\nGenesis\nGeorgia\nJamia\nJane\nJaqueline\nJoanna\nJosephine\nKaila\nKatelyn\nKatie\nKatrina\nKelly\nKelsey\nLeila\nMadelyn\nMarissa\nMelanie\nMelissa\nMercedes\nMolly\nMonica\nNatasha\nNoelle\nPhoebe\nShannon\nSonia\nTaniya\nTatiana\nToni\nYasmine\nAaliyah\nAlison\nAmina\nAmira\nAngelica\nAsha\nAvery\nAyanna\nBrenda\nCamryn\nCarla\nCecilia\nCelia\nChanel\nCheyenne\nChristiana\nClare\nCorinne\nCynthia\nEileen\nEssence\nEsther\nGianna\nHeaven\nIsabelle\nJailyn\nJamie\nJanai\nJazmine\nJenna\nJewel\nJillian\nJordyn\nJoselyn\nJulie\nKamryn\nKarla\nKate\nKaylin\nKennedi\nKristen\nLena\nLillian\nLitzy\nLogan\nLucy\nMiracle\nNakiya\nNora\nNya\nNyla\nPrincess\nRachael\nRyan\nSerena\nShaniyah\nTess\nYasmin\nZoie\nEmily\nEmma\nKayla\nKatherine\nTaylor\nSophia\nGrace\nSydney\nElizabeth\nAnna\nAshley\nJessica\nSarah\nAlexandra\nBrianna\nJulia\nCaroline\nJada\nOlivia\nHannah\nDestiny\nJasmine\nLauren\nZoe\nIsabella\nAlexis\nMaya\nMadison\nAbigail\nJordan\nRachel\nIsabel\nJennifer\nMary\nMorgan\nLeah\nSamantha\nAaliyah\nDiamond\nSophie\nCatherine\nDanielle\nGabrielle\nMia\nAmanda\nNatalie\nNicole\nVictoria\nAsia\nMadeline\nStephanie\nTrinity\nAngel\nErin\nIndia\nJayla\nLily\nMolly\nSierra\nCaitlin\nChloe\nNina\nRebecca\nSofia\nAngela\nChristina\nElla\nMakayla\nMargaret\nMegan\nAndrea\nAva\nCharlotte\nFaith\nImani\nAllison\nJade\nKennedy\nNevaeh\nNia\nTatiana\nDeja\nHeaven\nJacqueline\nKiara\nLondon\nMaria\nBianca\nBriana\nCamille\nCiara\nClaire\nDominique\nKendall\nKyra\nLucy\nMadeleine\nMichelle\nMya\nNaomi\nRaven\nAna\nAniya\nArianna\nCindy\nDiana\nGabriela\nGabriella\nJasmin\nKathleen\nKathryn\nKelly\nKimberly\nMeghan\nMelissa\nMikayla\nNiya\nNyah\nPrecious\nAlyssa\nAmari\nAmy\nAniyah\nAudrey\nAutumn\nAvery\nBria\nBrittany\nCameron\nCarmen\nCourtney\nDana\nEmani\nJanae\nJordyn\nLaura\nLillian\nSabrina\nSade\nSara\nTalia\nTamia\nTiara\nVanessa\nAnne\nBridget\nBritney\nCayla\nChelsea\nEleanor\nElise\nErica\nFatima\nHaley\nJaniya\nJazmine\nJocelyn\nKaila\nLaila\nLucia\nMackenzie\nNora\nShannon\nSimone\nTara\nVeronica\nAlexia\nAmaya\nAmber\nAmelia\nAriana\nAyanna\nClaudia\nCrystal\nCynthia\nElena\nIsabelle\nJamia\nJoy\nKaren\nKarina\nMakiya\nNatasha\nRyan\nTaniya\nTyra\nAlicia\nAliyah\nAmani\nAnaya\nAriel\nAyana\nCecilia\nCharity\nCheyenne\nChyna\nClare\nDaniela\nDejah\nEliza\nEsther\nEvelyn\nFiona\nFrancesca\nGeorgia\nGiselle\nHailey\nHope\nIsabela\nJane\nJanice\nJoanna\nKamryn\nKarla\nKatharine\nKaylah\nLeslie\nLesly\nLindsay\nMariam\nMarie\nMichaela\nMiranda\nMiriam\nSasha\nShayla\nSkye\nStella\nTamara\nTiana\nTierra\nTiffany\nYasmine\nAlexa\nAlexus\nAlice\nAmira\nAnnika\nBrenda\nBrooke\nCarla\nCarolina\nCassidy\nClara\nDaisha\nDakota\nDayonna\nDelaney\nEbony\nEliana\nEmely\nFrances\nGenesis\nHelen\nHelena\nHilda\nIrene\nJaelyn\nJalyn\nJalynn\nJayda\nJuliette\nKaia\nKaitlin\nKaiya\nKatelyn\nKenia\nKiya\nKristina\nKyla\nKylie\nLena\nLindsey\nMariah\nMartha\nMaura\nMonet\nMyah\nNadia\nNancy\nNatalia\nNayeli\nNya\nPaige\nParis\nPatricia\nPeyton\nRose\nSerena\nShelby\nTeresa\nTess\nToni\nKayla\nTaylor\nSarah\nElizabeth\nOlivia\nEmily\nKatherine\nLauren\nSamantha\nAnna\nJulia\nCaroline\nAlexandra\nGrace\nJessica\nJordan\nSophia\nSydney\nAbigail\nHannah\nAshley\nJennifer\nDestiny\nJasmine\nIsabella\nJada\nZoe\nEmma\nAaliyah\nAlexis\nMadeline\nMary\nSophie\nMaya\nCatherine\nIsabel\nMadison\nMia\nTrinity\nBrianna\nDiamond\nMargaret\nAndrea\nAva\nDanielle\nMaria\nNatalie\nRebecca\nSofia\nClaire\nGabrielle\nJayla\nNicole\nAmelia\nAngel\nAniyah\nElla\nMya\nCharlotte\nChristina\nImani\nKelly\nLucy\nMakayla\nMichelle\nPaige\nRachel\nSara\nAshanti\nJacqueline\nJocelyn\nKaren\nMorgan\nChloe\nErin\nLily\nAniya\nEleanor\nKaitlyn\nLaura\nMikayla\nGabriela\nIndia\nKarina\nLillian\nMelissa\nNia\nStephanie\nAllison\nAmanda\nAna\nAngela\nCourtney\nHeaven\nKimberly\nLeah\nMegan\nVictoria\nAmber\nAudrey\nCecilia\nDiana\nHelen\nIsabelle\nMadeleine\nSavannah\nShaniya\nAmari\nAsia\nAvery\nBriana\nClare\nGabriella\nKennedy\nKiara\nLeslie\nLondon\nMarie\nNina\nRaven\nSierra\nTiffany\nVanessa\nBrenda\nCamille\nEden\nEva\nJenna\nKarla\nKendall\nKyra\nNevaeh\nTania\nAlexa\nAliyah\nAnne\nAriana\nBianca\nBridget\nCayla\nEvelyn\nFiona\nJordyn\nJosephine\nLaila\nMackenzie\nMelanie\nMicah\nMolly\nNaomi\nNora\nNyah\nShannon\nTamia\nTyler\nAlicia\nAriel\nAutumn\nAyana\nAyanna\nBrittany\nBrooke\nCiara\nCindy\nClaudia\nDaniela\nDaphne\nDeja\nEllen\nEmely\nFaith\nFrances\nHailey\nJaden\nJamia\nJane\nJasmin\nJazmin\nKatie\nKyla\nMonica\nNatalia\nNiya\nNya\nPhoebe\nRiley\nSasha\nTaniya\nTyra\nVeronica\nAja\nAlison\nAmani\nAminata\nAnaya\nAngie\nArianna\nBailey\nBeatrice\nBria\nCarina\nCasey\nDana\nEliza\nErica\nGenevieve\nGillian\nGiselle\nHanna\nHope\nIngrid\nJanae\nJaniya\nJazmine\nJulie\nKathryn\nKristina\nLindsey\nLydia\nMichaela\nNadia\nPaola\nSamiya\nSerena\nSerenity\nSimone\nSummer\nTatiana\nAlice\nAmiya\nAmy\nAnya\nArielle\nCaitlin\nCarmen\nCarolyn\nCelia\nChanel\nDominique\nDorothy\nEmilie\nGina\nJade\nJaelyn\nKathleen\nKelsey\nLeila\nMiranda\nMiriam\nNyla\nPerla\nRose\nRuby\nRuth\nSanaa\nShayla\nSkye\nTalia\nTamara\nTiana\nTiara\nTori\nValerie\nKatherine\nKayla\nEmily\nElizabeth\nSophia\nAbigail\nCaroline\nSarah\nAnna\nEmma\nGrace\nAshley\nOlivia\nSydney\nMaya\nTaylor\nIsabella\nAlexandra\nElla\nZoe\nIsabel\nJulia\nChloe\nJada\nKennedy\nMadison\nSofia\nAlexis\nJasmine\nRachel\nJessica\nLauren\nCatherine\nCharlotte\nLily\nMadeline\nMakayla\nMary\nNatalie\nSamantha\nSophie\nBrianna\nClaire\nDestiny\nGabrielle\nHannah\nMargaret\nMia\nNicole\nVictoria\nAllison\nChristina\nStephanie\nAniya\nAva\nErin\nMichelle\nNia\nAaliyah\nAmelia\nAudrey\nBriana\nCourtney\nImani\nJordan\nKimberly\nMaria\nMorgan\nFiona\nJacqueline\nJade\nLaila\nMegan\nMya\nNaomi\nAniyah\nAsia\nFaith\nJayla\nJennifer\nLeah\nLucy\nNina\nSara\nAlyssa\nAna\nAngel\nCamille\nDanielle\nEleanor\nGabriela\nGabriella\nJocelyn\nNora\nAriana\nDiamond\nKate\nNevaeh\nAlexa\nAmari\nElise\nEva\nKaren\nKendall\nLillian\nLondon\nTrinity\nAlicia\nCindy\nElena\nKiara\nMadeleine\nSabrina\nSierra\nTalia\nDiana\nEllie\nEve\nHeaven\nHelen\nJaniyah\nLeila\nLeslie\nLindsay\nMackenzie\nRebecca\nAdriana\nAmanda\nAmber\nAmy\nAnne\nArianna\nAriel\nClaudia\nEliza\nEmely\nEvelyn\nFrances\nIndia\nJasmin\nJosephine\nKaitlyn\nKarina\nLayla\nMelanie\nMiranda\nMiriam\nPaige\nRaven\nRiley\nShania\nShannon\nSkylar\nTaniya\nTiffany\nAmya\nAngelica\nBrooke\nClare\nErika\nFatima\nJalyn\nJamie\nJazmyn\nKennedi\nKyla\nMaggie\nMeghan\nMolly\nMonae\nNatasha\nParis\nRyan\nSidney\nAliyah\nAmani\nAmaya\nAnaya\nAndrea\nArmani\nAsha\nAyanna\nBria\nCarly\nCarmen\nCassidy\nChelsea\nCierra\nCrystal\nDelaney\nDominique\nErica\nGenevieve\nHailey\nHelena\nHolly\nIsabelle\nJanae\nJudy\nJuliana\nKaila\nKathryn\nLaura\nLydia\nMckenzie\nMelissa\nMikayla\nMira\nPatricia\nPearl\nSanaa\nSerenity\nShaniya\nSimone\nSkye\nTyler\nAinsley\nAmina\nAmirah\nAngela\nAnnie\nAnya\nAvery\nBeatrice\nBianca\nBritney\nBrittany\nCaitlin\nCamila\nCasey\nCassandra\nCelia\nCheyenne\nChristian\nChristine\nDania\nDaniella\nEliana\nEllen\nGia\nHeidy\nHope\nIsis\nJane\nJaniya\nJaylin\nJewel\nJoy\nKaiya\nKarla\nKathleen\nLauryn\nLila\nLisa\nMakiyah\nMalia\nMarie\nNya\nNyla\nPeyton\nRobin\nRuth\nSasha\nSerena\nShayla\nStella\nTamia\nTara\nTatiana\nTess\nVanessa\nSophia\nKatherine\nKayla\nElizabeth\nEmma\nCaroline\nAbigail\nOlivia\nSarah\nSydney\nAshley\nElla\nAlexandra\nAnna\nMadison\nAva\nJasmine\nGrace\nZoe\nCatherine\nDestiny\nMaya\nSamantha\nTaylor\nEmily\nIsabella\nJulia\nMorgan\nJessica\nLauren\nMary\nRachel\nSofia\nCharlotte\nMargaret\nAlexis\nHannah\nBrianna\nLily\nMia\nNicole\nVictoria\nAaliyah\nAmelia\nMakayla\nJada\nKennedy\nMadeline\nDiana\nGabrielle\nAngel\nChloe\nClaire\nErin\nNatalie\nAmanda\nNia\nDaniela\nJayla\nJennifer\nJordan\nMaria\nMichelle\nStephanie\nAniya\nJacqueline\nKelly\nKiara\nKimberly\nLeah\nLucy\nAngela\nIsabel\nIsabelle\nLaura\nAndrea\nEleanor\nMegan\nNina\nNora\nSophie\nStella\nAlicia\nAllison\nDiamond\nEva\nEvelyn\nFiona\nJaniya\nLaila\nMadeleine\nMolly\nRebecca\nAmaya\nAna\nBabygirl\nGabriela\nHeaven\nImani\nMya\nSaniya\nTamia\nAlexa\nAmari\nAnaya\nAriana\nChristine\nDanielle\nGabriella\nJade\nKathryn\nLila\nLillian\nNaomi\nTrinity\nChristina\nCindy\nElena\nFaith\nKarla\nLayla\nNevaeh\nSasha\nTatiana\nBrenda\nBriana\nBrooke\nCiara\nErica\nKira\nLydia\nNatalia\nPaige\nParis\nSadie\nSara\nSierra\nSimone\nTalia\nVanessa\nAlana\nAliyah\nAlyssa\nAniyah\nAnne\nCourtney\nCynthia\nDakota\nEliza\nGenesis\nHelen\nJocelyn\nJuliana\nKaren\nLesly\nLondon\nMackenzie\nMaeve\nMiriam\nRuby\nAlison\nAnya\nAyanna\nCaitlin\nClara\nClaudia\nDaria\nEmely\nGiselle\nIndia\nIsis\nJasmin\nKamari\nKendall\nMaia\nMakiya\nMelissa\nMonica\nNadia\nNancy\nNyla\nRaquel\nSavannah\nSerenity\nSkye\nTyra\nYasmine\nAda\nAkira\nAlexia\nAmara\nAngelica\nAnnika\nArianna\nAudrey\nAutumn\nBianca\nBridget\nCarmen\nChelsea\nEve\nGeorgia\nJamie\nJoi\nJosephine\nJulissa\nKaitlyn\nKaniya\nKathleen\nKennedi\nKylie\nKyra\nLauryn\nLeila\nLeslie\nLogan\nLucia\nMariah\nMarley\nMelanie\nMicah\nMikayla\nMiranda\nPaola\nPhoebe\nRebeca\nRiley\nRuth\nSabrina\nShayla\nSummer\nTaliyah\nTiara\nUnique\nVivian\nAdriana\nAdrianna\nAmy\nAngie\nAriel\nAsia\nBella\nBrittany\nCaitlyn\nCarly\nCeleste\nChristiana\nClare\nCrystal\nEden\nEloise\nEmani\nFatima\nGenevieve\nHailey\nJala\nJanelle\nJanet\nJaylen\nJenifer\nJoanna\nJordyn\nKaiya\nKate\nKatelyn\nKatharine\nKatie\nKatrina\nKyla\nLaniya\nLesli\nLeyla\nLindsay\nMadelyn\nMariana\nMarina\nMeredith\nMiracle\nShania\nSindy\nSydni\nTamara\nTaniya\nTreasure\nSophia\nOlivia\nElizabeth\nKayla\nKatherine\nEmily\nAlexandra\nAnna\nAshley\nAva\nEmma\nAbigail\nGrace\nLauren\nDestiny\nCaroline\nSarah\nIsabella\nJulia\nNatalie\nSofia\nHannah\nJennifer\nMaya\nSydney\nTaylor\nCharlotte\nMadison\nJasmine\nZoe\nGabrielle\nAaliyah\nJada\nMakayla\nMia\nSamantha\nVictoria\nCatherine\nChloe\nNaomi\nTrinity\nMaria\nSophie\nJessica\nKennedy\nLucy\nNevaeh\nSara\nAllison\nAudrey\nBrianna\nDaniela\nStephanie\nAngel\nAniyah\nBrooke\nClaire\nMichelle\nAmelia\nEleanor\nElla\nKimberly\nMary\nMorgan\nGabriela\nLucia\nMargaret\nIsabel\nJordan\nLaila\nAndrea\nCamille\nClara\nDiana\nEva\nEvelyn\nFaith\nJosephine\nKiara\nMelanie\nRachel\nAlexis\nAlyssa\nErin\nJayla\nKyla\nNia\nVanessa\nIndia\nKaren\nLeah\nLesly\nLydia\nMadeline\nNicole\nNina\nRebecca\nSabrina\nStella\nAmanda\nAna\nAniya\nBianca\nCourtney\nElena\nGenesis\nHailey\nJade\nJocelyn\nKaitlyn\nMolly\nParis\nTalia\nAmani\nAmari\nAmira\nAriel\nDiamond\nFiona\nHeaven\nJacqueline\nKarina\nLeila\nLillian\nMackenzie\nRiley\nSavannah\nTania\nAngela\nAriana\nBabygirl\nCaitlin\nChelsea\nCynthia\nEmely\nErica\nJaniya\nKate\nKathryn\nLayla\nLily\nLondon\nMikayla\nRuby\nRyan\nSasha\nTamia\nAlana\nAnne\nAvery\nChristina\nClaudia\nEliza\nEstefany\nGabriella\nImani\nJasmin\nKarla\nKathleen\nKaylin\nKendall\nLaura\nMadeleine\nMariana\nMiranda\nMya\nPaige\nRaven\nSaniya\nSimone\nSkylar\nTiffany\nAlison\nAmy\nAnya\nBriana\nDanielle\nDelaney\nElise\nFatima\nGiselle\nHelen\nHope\nIngrid\nKira\nLitzy\nLizbeth\nMaia\nMariah\nMicah\nNadia\nNaimah\nRuth\nSkye\nTess\nYasmin\nYasmine\nZion\nAdelaide\nAlexa\nAnaya\nAngie\nArielle\nAsha\nBrenda\nCamila\nCarmen\nCiara\nDakota\nDana\nDeja\nDestinee\nEve\nHaley\nIsabelle\nIyana\nJanae\nJaqueline\nJenifer\nJoanna\nJordyn\nJoy\nJuliana\nJulissa\nJustice\nKamryn\nKaniya\nKatharine\nKatie\nKeira\nKelly\nKennedi\nKhadijah\nLauryn\nLiliana\nLogan\nMariam\nMarissa\nMelissa\nMichaela\nNaima\nNatalia\nNya\nNyla\nPerla\nRayven\nSadie\nSamara\nSamia\nSanaa\nShannon\nShayla\nSierra\nSkyy\nTreasure\nVeronica\nVivian\nZaniya\nKatherine\nElizabeth\nAshley\nAva\nSophia\nOlivia\nSofia\nCaroline\nHannah\nAbigail\nEmily\nMaya\nAnna\nMadison\nNevaeh\nKayla\nMorgan\nSarah\nTaylor\nCharlotte\nIsabella\nCatherine\nEmma\nJennifer\nAlexandra\nJulia\nGrace\nNaomi\nChloe\nDiana\nSydney\nDestiny\nGabrielle\nGabriela\nJasmine\nZoe\nFaith\nMia\nJayla\nKimberly\nNatalie\nMakayla\nSamantha\nAngel\nAniya\nClaire\nKennedy\nLauren\nTrinity\nAmelia\nBrianna\nJada\nLondon\nMary\nAllison\nElla\nErin\nJocelyn\nJosephine\nLeah\nMadeline\nMaria\nMichelle\nStephanie\nAlexa\nLucy\nNicole\nSophie\nAlyssa\nBrooke\nEleanor\nGabriella\nIsabel\nJordan\nLayla\nSara\nAmy\nAniyah\nClara\nLily\nMadeleine\nNatalia\nAna\nAudrey\nAvery\nBridget\nJaniya\nJessica\nLila\nLillian\nMargaret\nSadie\nAaliyah\nCaitlin\nEmely\nKaren\nKelly\nKendall\nLeslie\nLucia\nSimone\nVanessa\nAddison\nAmaya\nAndrea\nDaniela\nEva\nJade\nKathryn\nKeira\nMakenzie\nMelanie\nMolly\nShaniya\nStella\nVictoria\nAlana\nAngela\nAnnika\nAriana\nArianna\nAutumn\nCamila\nDanielle\nDiamond\nElena\nEmerson\nGenesis\nHeaven\nIndia\nIsabelle\nJacqueline\nMckenzie\nMegan\nMya\nNia\nNora\nPaola\nRachel\nSabrina\nTatiana\nTiffany\nAlexis\nAsia\nFiona\nImani\nLaila\nNina\nNyla\nRyan\nSerenity\nTaniya\nAdriana\nAlejandra\nAmari\nAmira\nAngie\nAnya\nAshly\nAzaria\nCamille\nCarmen\nDelaney\nDulce\nEden\nEliza\nEmilia\nFrancesca\nGeorgia\nHope\nJasmin\nKatie\nKyra\nLindsay\nMaia\nMelissa\nNaima\nParis\nRebecca\nRose\nRuth\nSanaa\nYasmin\nZara\nAliyah\nAmirah\nAnne\nBriana\nCamryn\nCara\nCiara\nCrystal\nCynthia\nDakota\nElise\nEvelyn\nFatima\nFrances\nGloria\nHanna\nHeidi\nJaelyn\nJamia\nJaniyah\nJazmine\nJordyn\nKamari\nKarina\nKathleen\nKenya\nLeila\nLesly\nMeghan\nMikayla\nMiracle\nPhoebe\nRiley\nRosa\nSanai\nSaniyah\nSasha\nSavannah\nSkye\nSkylar\nSummer\nTalia\nVeronica\nZion\nAlison\nAmani\nAmber\nAnais\nAnnabel\nArielle\nAyanna\nBianca\nCallie\nCampbell\nCarla\nCassidy\nChanel\nChelsea\nColette\nDaria\nDesiree\nDominique\nErica\nGiselle\nHelen\nIngrid\nJamie\nJanae\nJane\nJulie\nKate\nKatelyn\nKelis\nKyla\nLydia\nMackenzie\nMadelyn\nMaeve\nMariana\nNorah\nNylah\nPaige\nPatricia\nPaula\nPenelope\nPeyton\nPrincess\nSarai\nShakira\nSonia\nSusan\nTania\nTaryn\nTess\nValerie\nVirginia\nVivian\nYessenia\nZaniya\nAshley\nSophia\nKatherine\nElizabeth\nCaroline\nKayla\nMadison\nOlivia\nIsabella\nZoe\nAbigail\nAnna\nEmily\nHannah\nJennifer\nMaya\nChloe\nClaire\nCharlotte\nJulia\nKimberly\nAlexandra\nLauren\nGrace\nKennedy\nMaria\nMia\nNevaeh\nSarah\nAndrea\nBrianna\nEmma\nSofia\nSydney\nCatherine\nJasmine\nLily\nMorgan\nMargaret\nAllison\nAmelia\nAva\nGabriela\nGabrielle\nLondon\nMadeline\nMary\nNatalie\nSamantha\nSophie\nElla\nIsabel\nMakayla\nTaylor\nVictoria\nAudrey\nEleanor\nGenesis\nKaren\nAlyssa\nAvery\nEmely\nImani\nJada\nJessica\nMichelle\nAna\nDestiny\nGabriella\nLaila\nAngel\nAngie\nErin\nJocelyn\nJordan\nRuth\nStephanie\nAniya\nDiana\nHeaven\nJasmin\nJayla\nLeah\nLeslie\nRachel\nTrinity\nAaliyah\nAlexa\nArianna\nCamille\nFiona\nLogan\nMegan\nNora\nSara\nAutumn\nDiamond\nEva\nEvelyn\nKendall\nLayla\nLucy\nMelissa\nSadie\nVanessa\nAddison\nAlicia\nAniyah\nAriana\nClara\nJaniyah\nJosephine\nMadeleine\nMiracle\nMolly\nNicole\nPaige\nSerenity\nSimone\nAmira\nAmy\nAsia\nBriana\nChelsea\nChristina\nFaith\nHanna\nIndia\nJacqueline\nJade\nJordyn\nJoselyn\nMckenzie\nNadia\nNaomi\nNina\nVivian\nAlexis\nAlison\nAmari\nAnya\nAshly\nCecilia\nDaniela\nDanielle\nElena\nElise\nErica\nKaitlyn\nKarla\nKelly\nKimora\nLila\nLillian\nLindsay\nMikayla\nNatalia\nRebecca\nRosa\nSaniya\nStella\nTiffany\nZoey\nAlana\nAmanda\nAngela\nAngelina\nBianca\nBridget\nCiara\nEden\nElle\nEmilia\nErika\nJane\nJaniya\nKamari\nKathryn\nKatie\nKaylee\nLesly\nMariah\nNyla\nRiley\nSasha\nSkye\nTessa\nTreasure\nZion\nAdriana\nAlina\nAmani\nBrooke\nCamila\nDakota\nDaniella\nDeja\nEve\nGiselle\nHarper\nJulissa\nJustice\nKatelyn\nKennedi\nLaniyah\nLaura\nLauryn\nLucia\nLydia\nMaeve\nMariana\nNaima\nParis\nReagan\nSage\nSandra\nShayla\nSkylar\nSonia\nTamia\nWillow\nZora\nAlice\nAmber\nAnnika\nBrenda\nCatalina\nCindy\nCourtney\nCynthia\nDeanna\nEliana\nEllie\nEmani\nFatima\nGenevieve\nGeorgia\nHailey\nHana\nHayden\nIris\nIsabelle\nJaylin\nJazmine\nJewel\nJoanna\nJuliet\nKaia\nKeira\nKyla\nLeilani\nMackenzie\nMadelyn\nMakiya\nMarley\nMelanie\nMeredith\nMya\nNatasha\nNayeli\nPaola\nRaven\nRyan\nSabrina\nSamiyah\nSanaa\nSerena\nSienna\nSummer\nTanya\nTatiana\nValerie\nViolet\nWendy\nYasmin\nZaniyah\nZaria\nAshley\nChloe\nSophia\nKatherine\nEmma\nEmily\nMadison\nOlivia\nAbigail\nGrace\nElizabeth\nSofia\nAllison\nIsabella\nZoe\nAva\nCharlotte\nGenesis\nTaylor\nAnna\nKimberly\nMakayla\nMaya\nSarah\nMia\nGabrielle\nJada\nKennedy\nCaroline\nJulia\nKayla\nNevaeh\nSophie\nSydney\nGabriela\nMorgan\nElla\nEvelyn\nLauren\nTrinity\nIsabel\nJasmine\nJocelyn\nCatherine\nClaire\nLucy\nMadeleine\nVictoria\nAndrea\nCamila\nDestiny\nJayla\nJennifer\nLondon\nNicole\nSamantha\nAlexandra\nAngel\nHannah\nJessica\nMadeline\nMichelle\nNatalie\nSara\nAna\nAniya\nAsia\nBrianna\nDaniela\nMaria\nMariah\nNaomi\nAlexis\nAmelia\nAngela\nGabriella\nLaila\nLila\nMadelyn\nMary\nRachel\nAlana\nAlexa\nAngelina\nAniyah\nAvery\nEleanor\nJazmin\nMelanie\nNora\nRebecca\nAaliyah\nAngie\nAudrey\nBrooke\nErin\nJade\nLeah\nMakenzie\nMckenzie\nRiley\nAmira\nAmy\nEmely\nIsabelle\nJaniya\nLayla\nLillian\nLily\nSadie\nStella\nTyler\nVivian\nAddison\nAliyah\nArianna\nAshly\nBriana\nDania\nEva\nFaith\nHelen\nJacqueline\nKaren\nKarla\nLesly\nLucia\nMarie\nMarley\nMolly\nNina\nPaige\nParis\nStephanie\nVanessa\nAdriana\nBrooklyn\nCamille\nCarmen\nCecilia\nChelsea\nClara\nDanielle\nDayana\nDiana\nFiona\nHeaven\nJustice\nKaitlyn\nKate\nKatie\nKelly\nKhloe\nLogan\nMargaret\nMegan\nMelissa\nMikayla\nMiracle\nNyla\nRihanna\nRuth\nTalia\nTamia\nZaria\nAlexia\nAlice\nAmari\nAmaya\nArmani\nCarolina\nCindy\nCourtney\nDaniella\nEden\nEliana\nEsther\nFrancesca\nGeorgia\nGiselle\nJasmin\nKennedi\nKira\nMackenzie\nMakiya\nMichaela\nNia\nPrecious\nSamiya\nSaniya\nSavannah\nSienna\nTatiana\nValeria\nVirginia\nYasmine\nZion\nAlejandra\nAlicia\nAmina\nAmiya\nAnaya\nAutumn\nClare\nDiamond\nEmilia\nHelena\nJordan\nJosephine\nJuliana\nKathryn\nKeira\nKiara\nLeila\nLiliana\nMaeve\nMilan\nMonique\nNadia\nNancy\nPeyton\nReagan\nSabrina\nSamiyah\nSanaa\nTiffany\nZahra\nZoey\nZuri\nAinsley\nAmanda\nAmani\nAnne\nAnya\nBianca\nBrenda\nBridget\nCameron\nCamilla\nCassandra\nChristina\nCristina\nCrystal\nDakota\nDaphne\nDylan\nEbony\nEsmeralda\nFatima\nGisselle\nHadley\nHailey\nHarmony\nHarper\nHayden\nJaliyah\nJamie\nJane\nJordin\nJuliet\nKathleen\nKeren\nKimora\nKyla\nLeilani\nLeslie\nLilah\nLola\nMakiyah\nMeklit\nMelany\nMira\nNatalia\nNataly\nNoa\nPayton\nQuinn\nReese\nRose\nRuby\nSaron\nTessa\nValentina\nZara\nSophia\nAllison\nAbigail\nAshley\nElizabeth\nKatherine\nTaylor\nZoe\nCharlotte\nMadison\nAnna\nAva\nGenesis\nMadeline\nCaroline\nOlivia\nEmma\nKimberly\nSofia\nEvelyn\nJulia\nMargaret\nChloe\nEmily\nKayla\nMakayla\nCatherine\nClaire\nNaomi\nAlexandra\nIsabella\nSarah\nAmelia\nElla\nGabrielle\nGrace\nSydney\nLondon\nMelissa\nMorgan\nNatalie\nSasha\nSophie\nJennifer\nLeah\nLily\nLucy\nNevaeh\nSamantha\nGabriela\nLauren\nLayla\nMaria\nAaliyah\nAudrey\nDestiny\nEva\nJasmine\nKennedy\nLaila\nLillian\nMia\nAngel\nAvery\nCamila\nGabriella\nGiselle\nHannah\nHeaven\nJayla\nKhloe\nLogan\nMalia\nTrinity\nDakota\nIsabel\nMaya\nValeria\nAddison\nAlexa\nAndrea\nAniya\nArianna\nAutumn\nBrianna\nEmely\nJada\nNora\nStella\nAdriana\nAlyssa\nAmani\nAna\nAshly\nDiana\nJade\nJessica\nMary\nMolly\nNina\nRebecca\nSara\nSavannah\nSerenity\nAlexis\nAmira\nAriana\nBrooke\nCecilia\nClara\nDaniela\nEleanor\nElena\nHarper\nJacqueline\nJocelyn\nKaylee\nLucia\nMariah\nMarley\nMckenzie\nMichelle\nMiracle\nVictoria\nAubrey\nBriana\nHailey\nJordan\nKelly\nLila\nMadeleine\nNataly\nPaige\nPenelope\nRachel\nRose\nSadie\nStephanie\nVeronica\nZoey\nCaitlin\nDayana\nJaniya\nJordyn\nLaura\nMelanie\nNicole\nPayton\nPeyton\nRiley\nSimone\nVanessa\nAlice\nAlicia\nAlison\nAmy\nAniyah\nBella\nBrooklyn\nChelsea\nErin\nGianna\nHadley\nHelen\nKai\nKaren\nKarla\nKeira\nKendall\nKira\nLena\nLyla\nMakenzie\nNadia\nSanai\nSemaj\nSonia\nViolet\nZion\nAmaya\nAmber\nAngela\nAngie\nCamille\nEliana\nIsabelle\nJane\nJuliana\nJuliet\nKate\nLondyn\nLydia\nLyric\nMadelyn\nMaliyah\nMelany\nMikayla\nMiley\nNorah\nNylah\nParis\nPhoebe\nRuby\nRuth\nRyan\nSabrina\nSanaa\nSaniyah\nTalia\nTaniya\nTreasure\nZaniyah\nZara\nAlisson\nAliya\nAliyah\nAmelie\nAmen\nAngelina\nAzaria\nBailey\nBianca\nCampbell\nCarmen\nChristina\nCora\nDeborah\nDesiree\nElsa\nEve\nFaith\nFelicity\nFernanda\nFiona\nFrances\nGenevieve\nHana\nIsis\nJaden\nJaelyn\nJazmin\nKaliyah\nKamari\nKatie\nKiara\nKimora\nLailah\nLana\nLara\nMackenzie\nMarie\nMegan\nNatalia\nNoa\nNoelle\nPrecious\nRaniyah\nRaven\nRegan\nSummer\nTamia\nTaniyah\nValentina\nZaniya\nMadison\nOlivia\nCharlotte\nAshley\nAva\nSophia\nEmma\nZoe\nAbigail\nElizabeth\nCaroline\nIsabella\nAlexandra\nSofia\nChloe\nEmily\nGrace\nMaya\nAnna\nMargaret\nSophie\nAmelia\nGabrielle\nTaylor\nElla\nMorgan\nSarah\nJulia\nLaila\nLondon\nSamantha\nZoey\nEvelyn\nGenesis\nPenelope\nBrianna\nMia\nJasmine\nJosephine\nKatherine\nKennedy\nLily\nRiley\nVictoria\nGabriella\nKhloe\nLayla\nMary\nNatalie\nHannah\nIsabel\nJennifer\nLillian\nMadeleine\nMckenzie\nNora\nAllison\nDestiny\nEleanor\nLauren\nMaria\nNaomi\nSara\nAlexa\nAlice\nAniyah\nClaire\nEva\nKayla\nLucy\nNevaeh\nIsabelle\nKimberly\nLeah\nSabrina\nTrinity\nAlexis\nAndrea\nAngel\nHailey\nJocelyn\nMadeline\nSydney\nAaliyah\nAna\nEmely\nJada\nLogan\nMelanie\nMolly\nNadia\nStella\nBrooklyn\nDiana\nEliana\nEmilia\nFiona\nJade\nJordyn\nLondyn\nLyric\nMackenzie\nRebecca\nAdelaide\nAmirah\nAnnabelle\nAriana\nAubrey\nClara\nGabriela\nGiselle\nHeaven\nJayla\nJessica\nJuliana\nMakenzie\nNatalia\nNicole\nPaige\nPhoebe\nSadie\nSavannah\nScarlett\nSerenity\nStephanie\nTiffany\nVivian\nAmanda\nAmari\nAmy\nAnne\nArianna\nAudrey\nAutumn\nDakota\nEden\nFaith\nHarper\nImani\nJacqueline\nJane\nJaniyah\nKaitlyn\nMakayla\nMelissa\nPayton\nPeyton\nShaniya\nSkylar\nSummer\nValentina\nVivienne\nAlana\nAriel\nAvery\nBeatrice\nCamila\nCamille\nCarmen\nCassidy\nCatherine\nDanielle\nDemi\nElena\nFatima\nGenevieve\nJaniya\nJordan\nKassidy\nLena\nLila\nLucia\nMaeve\nMalia\nMariah\nMatilda\nMiley\nRose\nRuth\nRyan\nSasha\nSiena\nSimone\nVeronica\nVirginia\nAlyssa\nAmani\nAmber\nAngie\nAniya\nAnya\nBriana\nBrooke\nDaisy\nEliza\nErin\nHeidi\nJazmine\nKaliyah\nKaren\nKarla\nKira\nMaliyah\nMichelle\nMikayla\nMilan\nNina\nSamiyah\nSkye\nTessa\nViolet\nYasmin\nAddison\nAdriana\nAlaina\nAlani\nAlejandra\nAlicia\nAmaya\nAngela\nAshly\nAsia\nCarolina\nCelia\nChristina\nCora\nDior\nEloise\nEryn\nEsmeralda\nHelen\nIris\nIsla\nIvy\nJamiyah\nJayda\nJaylin\nJoanna\nJustice\nKeira\nKennedi\nLara\nLauryn\nLeslie\nLilah\nLola\nLucille\nLydia\nMadelyn\nMariana\nMarley\nMya\nNorah\nNyla\nPaola\nQuinn\nRachel\nReese\nSarai\nScarlet\nSloane\nValeria\nZaniyah\nZariah\nSophia\nAva\nElizabeth\nMadison\nOlivia\nMaya\nSofia\nKatherine\nAshley\nIsabella\nZoe\nAbigail\nAlexandra\nEmma\nAnna\nChloe\nJulia\nCaroline\nEleanor\nLauren\nTaylor\nClaire\nElla\nNaomi\nCharlotte\nEvelyn\nKennedy\nLeah\nNevaeh\nEmily\nLondon\nMia\nSophie\nAaliyah\nGrace\nKayla\nStella\nAllison\nHannah\nLayla\nNatalie\nGenesis\nLila\nMargaret\nMorgan\nVictoria\nLillian\nZoey\nCamila\nElise\nEva\nHarper\nJade\nLily\nMary\nMckenzie\nRiley\nAngel\nAvery\nSarah\nAmelia\nArianna\nClara\nJasmine\nKhloe\nKimberly\nLucy\nNora\nAddison\nAriana\nCatherine\nJada\nJayla\nLaila\nLyric\nMackenzie\nMaria\nSamantha\nAmy\nAniyah\nErin\nGabrielle\nSkylar\nSydney\nAlexa\nDakota\nGabriela\nIsabel\nLogan\nSadie\nTrinity\nViolet\nAlexis\nBrooklyn\nDestiny\nEmely\nJennifer\nJordyn\nNatalia\nRachel\nSkye\nAlice\nAubrey\nBella\nDalia\nEliana\nEmilia\nFiona\nHeaven\nJacqueline\nJessica\nKaylee\nLauryn\nLydia\nMadeleine\nMadeline\nMaia\nMelanie\nPayton\nReagan\nSienna\nAlison\nAlyssa\nAria\nAudrey\nBeatrice\nBriana\nBrianna\nBrooke\nCamille\nDemi\nElena\nElsa\nFaith\nGabriella\nHelen\nLeilani\nLiliana\nNayeli\nNina\nPaige\nPenelope\nPeyton\nSerenity\nStephanie\nTalia\nAmanda\nAnastasia\nAngela\nAniya\nAnya\nArielle\nAutumn\nCora\nDaniela\nDiana\nEliza\nGianna\nGiselle\nJoanna\nJocelyn\nJosephine\nKira\nLesly\nMaeve\nMakayla\nMakenzie\nMalia\nMegan\nMonica\nNataly\nNoelle\nNyla\nPhoebe\nSavannah\nScarlett\nAdriana\nAlessandra\nAmira\nAndrea\nBianca\nBrielle\nDayana\nHazel\nHelena\nJazmin\nJordan\nJoselyn\nKaitlyn\nKendall\nKennedi\nLiv\nLondyn\nLucia\nMadelyn\nMakiyah\nNadia\nNylah\nParker\nRose\nSarai\nSasha\nSimone\nVeronica\nVivian\nYaretzi\nZaria\nAda\nAmari\nAmina\nAnaya\nAngeline\nAnne\nAriel\nCatalina\nCecilia\nChelsea\nChristina\nDanielle\nEloise\nEmerson\nEstefany\nEve\nHailey\nIsabelle\nIvy\nJane\nJaniya\nJuliana\nJuliet\nJuliette\nKassidy\nKaylah\nKeira\nKeiry\nKeren\nKimora\nKylee\nLaura\nLena\nLilah\nLilly\nLouisa\nLyla\nMadisyn\nMaliyah\nMariah\nMarley\nMelisa\nMelissa\nMiranda\nMya\nNicole\nNorah\nRuby\nRuth\nSamara\nSummer\nTatiana\nTori\nTreasure\nZaniyah\nSophia\nEmma\nOlivia\nCharlotte\nGenesis\nSofia\nAva\nChloe\nMadison\nZoe\nNaomi\nClaire\nAnna\nEleanor\nElizabeth\nMia\nElla\nLondon\nMadeleine\nVictoria\nAbigail\nGrace\nJulia\nTaylor\nZoey\nAshley\nEmily\nIsabella\nMaya\nSydney\nAllison\nAmelia\nCaroline\nLillian\nLucy\nEvelyn\nKatherine\nKayla\nLaila\nNora\nAaliyah\nEva\nKennedy\nLogan\nAlexandra\nAvery\nKimberly\nMary\nSarah\nSophie\nTrinity\nAlice\nCatherine\nJosephine\nMargaret\nNatalie\nAudrey\nHannah\nHarper\nLauren\nMorgan\nSamantha\nBrooklyn\nEmely\nSavannah\nAmy\nAriana\nAubrey\nClara\nGabriella\nIsabel\nKhloe\nLucia\nMakayla\nMolly\nVivian\nDakota\nHailey\nLayla\nLeah\nMadeline\nMaria\nBrielle\nGenevieve\nHeaven\nJade\nJordyn\nLila\nMelissa\nAlyssa\nAnya\nArianna\nBrianna\nEliana\nEloise\nJasmine\nJayla\nKylie\nMckenzie\nMichelle\nMila\nNicole\nNina\nPeyton\nPiper\nRebecca\nRiley\nSerenity\nSkylar\nStella\nAdriana\nElise\nFaith\nJada\nKaylee\nLily\nMaeve\nMilan\nNyla\nPaige\nPenelope\nSadie\nSloane\nStephanie\nAddison\nAdelaide\nAutumn\nCora\nHadley\nLeila\nValentina\nViolet\nAlexa\nAliyah\nAnnabel\nBrooke\nCecilia\nDaniela\nDestiny\nElena\nGabrielle\nGeorgia\nHelena\nImani\nJennifer\nJourney\nMariah\nNevaeh\nReagan\nSara\nSasha\nVivienne\nZara\nAmira\nAndrea\nAniya\nAniyah\nBridget\nCamille\nCassidy\nDior\nEden\nElle\nFiona\nGabriela\nHelen\nHope\nIsabelle\nJaliyah\nJessica\nKaren\nKendall\nLyla\nLyric\nMackenzie\nMakenzie\nNatalia\nNia\nNoelle\nNorah\nParker\nRose\nRuth\nSierra\nTatiana\nAdeline\nAlison\nAmani\nAmen\nAna\nAngel\nAngela\nAria\nBeatrice\nBianca\nBriana\nBrittany\nCamila\nDayana\nDemi\nDiana\nDylan\nEliza\nEllie\nEmery\nEmilia\nErika\nErin\nFatima\nHarmony\nJuliet\nKeiry\nLilah\nLondyn\nMaia\nMarie\nMelanie\nMichaela\nMiracle\nNylah\nPhoebe\nQuinn\nRuby\nRylee\nSamiya\nSamiyah\nScarlett\nSerena\nSimone\nTalia\nVera\nAmina\nAngie\nAnnika\nAri\nAsha\nAshly\nBella\nBlake\nCarmen\nDaisy\nDallas\nErica\nEstefany\nEvangeline\nFrancesca\nHana\nHeidi\nIngrid\nIris\nIsla\nJasmin\nJuliana\nKarla\nKate\nKennedi\nKimora\nKira\nLara\nLeela\nLeilani\nLitzy\nLola\nMagdalena\nMargot\nMartha\nMatilda\nMelody\nMikayla\nMiriam\nOlive\nPhoenix\nSaniyah\nShaniyah\nShayla\nSienna\nSky\nTeagan\nValeria\nYaretzi\nZahara\nZuri\nCharlotte\nSofia\nOlivia\nGenesis\nEmma\nMia\nZoe\nAmelia\nEmily\nEleanor\nElizabeth\nMaya\nAshley\nAva\nMadison\nIsabella\nVictoria\nSophia\nKatherine\nAbigail\nCaroline\nAnna\nEvelyn\nBrianna\nEliana\nGrace\nKennedy\nMadeline\nAllison\nChloe\nNora\nSkylar\nAlexandra\nClara\nJosephine\nMorgan\nSerenity\nHarper\nJulia\nLucy\nNaomi\nEva\nHannah\nLeah\nReagan\nLayla\nCatherine\nClaire\nDakota\nKimberly\nLily\nMadeleine\nMargaret\nSamantha\nSophie\nSydney\nTaylor\nAaliyah\nAlice\nElla\nRiley\nAlexa\nArianna\nAvery\nKayla\nLaila\nLillian\nMila\nNatalie\nQuinn\nViolet\nKhloe\nLeila\nMary\nPeyton\nZoey\nAndrea\nAnnabelle\nEden\nElena\nFaith\nIsabel\nLondon\nSarah\nAmy\nAubrey\nAudrey\nElise\nFiona\nKaylee\nLogan\nLyric\nNina\nRuby\nSadie\nVivian\nAriana\nBrooklyn\nCecilia\nDiana\nEliza\nHarmony\nIvy\nJade\nLauren\nLucia\nMelanie\nSavannah\nStella\nTrinity\nValentina\nAmira\nAutumn\nCamille\nGabriella\nHailey\nImani\nMackenzie\nMakenzie\nMaria\nMckenzie\nStephanie\nTessa\nZara\nAddison\nAriel\nBella\nCamila\nCora\nDemi\nEmely\nGabrielle\nHadley\nJennifer\nJordyn\nJuliet\nKate\nNevaeh\nNicole\nPayton\nPenelope\nRose\nSage\nVirginia\nVivienne\nAmalia\nAnnie\nBeatrice\nBrooke\nChelsea\nElsa\nEmilia\nHazel\nJane\nKaitlyn\nKali\nKimora\nLeslie\nMakayla\nMichelle\nMilan\nNatalia\nPaige\nPiper\nRebecca\nRuth\nSara\nScarlett\nSimone\nAdriana\nAngela\nAniya\nAniyah\nBlair\nDallas\nDestiny\nDylan\nEmerson\nGabriela\nJocelyn\nJune\nJustice\nKaren\nKeiry\nKylie\nMolly\nNorah\nNyla\nNylah\nParis\nSienna\nSloane\nTalia\nZuri\nAdeline\nAmanda\nAna\nAngel\nAnnabel\nAnne\nAria\nArielle\nBridget\nBrielle\nCali\nCamryn\nCassidy\nCatalina\nClare\nErin\nEve\nHeaven\nHope\nIris\nJada\nJasmine\nJuliana\nJuliette\nKatelyn\nKatie\nKaylin\nKelly\nKira\nLola\nLouisa\nMae\nMaliyah\nMegan\nNoa\nNoelle\nSasha\nValerie\nVeronica\nAdelaide\nAlaina\nAlana\nAlexandria\nAlexia\nAlyssa\nAmina\nAngie\nArsema\nAubree\nBianca\nBrittany\nCamilla\nCarmen\nDanna\nEgypt\nEllie\nEmery\nFrances\nGenessis\nGeorgia\nHarlem\nIsabelle\nIsla\nJayla\nJayleen\nJessica\nJordan\nKeira\nKodi\nLara\nLena\nLila\nLilian\nLiliana\nLondyn\nLydia\nMaeve\nMalaysia\nMariah\nMariam\nMariana\nMarley\nMikayla\nMiriam\nMonica\nNadia\nNancy\nPaola\nPhoebe\nRaegan\nRyan\nSaige\nStephany\nSummer\nVanessa\nWilla\nElizabeth\nOlivia\nAva\nEmma\nZoe\nGenesis\nMadison\nAnna\nAshley\nMaya\nAlexandra\nZoey\nCharlotte\nElla\nChloe\nEleanor\nEvelyn\nIsabella\nSophia\nAmelia\nAbigail\nNaomi\nSkylar\nEmily\nSofia\nCaroline\nClara\nGrace\nMia\nSydney\nAria\nNora\nLucia\nPeyton\nCatherine\nClaire\nKatherine\nLucy\nLyric\nAaliyah\nHailey\nTaylor\nVictoria\nAubrey\nAudrey\nCamila\nHannah\nKhloe\nMorgan\nAlice\nAllison\nAriana\nCora\nHarper\nMary\nPenelope\nAlexa\nAvery\nDestiny\nLillian\nLily\nMadeleine\nMargaret\nSavannah\nEva\nJosephine\nNina\nSamantha\nArianna\nFaith\nJasmine\nMila\nNevaeh\nBrooklyn\nDakota\nJane\nJulia\nLondon\nRose\nSadie\nValentina\nZara\nAmy\nAnnabelle\nEliana\nGabriella\nGenevieve\nHeaven\nIsabel\nKennedy\nLogan\nMackenzie\nMaria\nMolly\nNylah\nPaige\nParis\nRiley\nSarah\nVivian\nAmirah\nAngie\nCecilia\nJordyn\nKali\nLayla\nMadeline\nSerenity\nStella\nAdelaide\nAndrea\nBella\nBrianna\nEloise\nJacqueline\nKayla\nKylie\nLondyn\nMelissa\nNatalie\nNicole\nNyla\nSophie\nTrinity\nZuri\nAliyah\nAmira\nAna\nAngel\nDiana\nEmely\nEmilia\nGabriela\nHarmony\nJennifer\nKaylee\nKimberly\nLaila\nLeah\nLeila\nMakayla\nMckenzie\nParker\nQuinn\nReagan\nAlana\nAurora\nBeatrice\nBrielle\nCali\nCamille\nDallas\nDylan\nEsther\nFiona\nHelen\nIris\nJayla\nJordan\nJune\nLauren\nLauryn\nLena\nPiper\nRuby\nScarlett\nAlyssa\nAmen\nAnne\nAnnika\nAriel\nCarolina\nElise\nEliza\nEmerson\nGabrielle\nGeorgia\nGiselle\nJade\nJessica\nLila\nLina\nLydia\nMaeve\nMalaysia\nMalia\nMariah\nMira\nNoa\nNoelle\nNorah\nRachel\nRebecca\nRuth\nSimone\nTreasure\nValeria\nValerie\nViolet\nVivienne\nAddison\nAdriana\nAutumn\nBlake\nBrooke\nBrooklynn\nCatalina\nCelia\nDaisy\nDaphne\nDemi\nElena\nElle\nErin\nHazel\nHope\nIsla\nJanelle\nJournee\nJuliana\nKaitlyn\nKamiya\nKennedi\nKira\nLuna\nMakenzie\nMargot\nMariam\nMichelle\nMina\nNatalia\nOlive\nPayton\nRowan\nRoyal\nRyan\nSage\nSaron\nSummer\nSylvia\nVeronica\nZaniyah\nAdelina\nAinsley\nAlejandra\nAlessandra\nAlina\nAlison\nAmaya\nAnaya\nAngela\nAniya\nAniyah\nArielle\nAyla\nAylin\nCaitlin\nCameron\nCamilla\nCharlie\nDelaney\nDorothy\nEllen\nEllie\nElsa\nEvangeline\nFatima\nFrances\nFrancesca\nHayley\nHeidi\nIrene\nIsabelle\nJenny\nJoanna\nJourney\nJuliette\nJuniper\nKathryn\nKatie\nKelly\nKyla\nKylee\nLacey\nLeslie\nLia\nMadisyn\nMagnolia\nMelanie\nMonica\nNia\nPetra\nPhoebe\nRaven\nRylee\nSaige\nSara\nSasha\nSkye\nTeagan\nTiffany\nTyler\nVera\nVirginia\nWillow\nJames\nJohn\nWilliam\nRobert\nCharles\nGeorge\nJoseph\nEdward\nThomas\nRichard\nRaymond\nPaul\nAlbert\nLawrence\nLouis\nErnest\nHarry\nHoward\nSamuel\nWalter\nArthur\nFrancis\nFrank\nHerbert\nBernard\nClarence\nEarl\nFrederick\nHenry\nLeonard\nWilbur\nAlfred\nTheodore\nChester\nDavid\nEdgar\nEdwin\nLeroy\nRalph\nRussell\nWilliam\nJohn\nCharles\nJames\nGeorge\nJoseph\nRobert\nEdward\nThomas\nClarence\nHarry\nAlbert\nBernard\nFrank\nRaymond\nFrederick\nLouis\nPaul\nWalter\nFrancis\nRichard\nEdwin\nLeonard\nRalph\nEarl\nBenjamin\nElmer\nHenry\nMelvin\nErnest\nLawrence\nLeroy\nSamuel\nTheodore\nAlfred\nArthur\nEverett\nHerbert\nHoward\nMilton\nWilliam\nJohn\nJames\nCharles\nRobert\nGeorge\nJoseph\nEdward\nThomas\nRichard\nRaymond\nHarry\nDavid\nFrank\nHenry\nLouis\nWalter\nPaul\nRalph\nSamuel\nArthur\nHoward\nLawrence\nFrancis\nAlbert\nEugene\nMilton\nAlfred\nCarl\nErnest\nPhilip\nClarence\nFrederick\nLeonard\nBernard\nDaniel\nFred\nHerbert\nBenjamin\nKenneth\nLeroy\nNathaniel\nStanley\nTheodore\nDonald\nHarold\nHerman\nLewis\nAlvin\nAndrew\nEarl\nFranklin\nHarvey\nJack\nJerome\nRoy\nVincent\nWillie\nJames\nWilliam\nJohn\nJoseph\nGeorge\nCharles\nRobert\nEdward\nThomas\nRichard\nFrank\nHarry\nWalter\nAlbert\nArthur\nFrancis\nLouis\nBernard\nClarence\nFrederick\nSamuel\nHenry\nRaymond\nBenjamin\nDavid\nNorman\nEarl\nEugene\nMilton\nDaniel\nMaurice\nPhilip\nLawrence\nLeroy\nPaul\nHoward\nJack\nRalph\nRussell\nLewis\nLeonard\nTheodore\nAlfred\nClifton\nEdwin\nHarold\nCarl\nElmer\nFred\nHerbert\nErnest\nFranklin\nLeon\nMartin\nWilliam\nJohn\nJames\nCharles\nGeorge\nJoseph\nRobert\nThomas\nEdward\nRichard\nRaymond\nWalter\nSamuel\nHenry\nPaul\nHarry\nFrancis\nBernard\nFrank\nArthur\nErnest\nRalph\nLouis\nEarl\nJack\nAlfred\nClarence\nLawrence\nAlbert\nDavid\nEugene\nNorman\nPhilip\nElmer\nFrederick\nHarold\nLeroy\nAndrew\nLeon\nDonald\nEverett\nHoward\nKenneth\nLeonard\nMilton\nTheodore\nBenjamin\nDaniel\nLewis\nMartin\nMorris\nSidney\nWarren\nCarl\nMelvin\nRussell\nStanley\nWilbur\nClyde\nFred\nHerbert\nHerman\nLeo\nLester\nLuther\nNathaniel\nAbraham\nByron\nEdgar\nEdwin\nHugh\nMaurice\nOliver\nOscar\nPeter\nSam\nStephen\nVincent\nJohn\nWilliam\nJames\nCharles\nGeorge\nJoseph\nRobert\nThomas\nRichard\nFrank\nEdward\nWalter\nFrancis\nRaymond\nHarry\nAlbert\nPaul\nFrederick\nHenry\nBernard\nAlfred\nArthur\nEugene\nRalph\nSamuel\nLouis\nErnest\nLawrence\nMelvin\nHerbert\nNorman\nCarl\nDaniel\nEarl\nEdgar\nHarold\nLeonard\nMichael\nMilton\nTheodore\nClarence\nLeroy\nPhilip\nRoy\nDavid\nIrving\nWarren\nEdwin\nHoward\nLewis\nMartin\nVincent\nAlvin\nBenjamin\nGilbert\nJack\nKenneth\nWallace\nWilbert\nDonald\nEverett\nLeon\nNicholas\nPercy\nRoland\nStanley\nStephen\nWilbur\nCharlie\nElmer\nFred\nHerman\nJulius\nMaurice\nMorris\nRussell\nSam\nSterling\nJohn\nWilliam\nJames\nJoseph\nRobert\nCharles\nGeorge\nEdward\nFrancis\nRaymond\nRichard\nFrank\nHarry\nThomas\nWalter\nDavid\nHenry\nBernard\nEarl\nArthur\nDonald\nAlbert\nPaul\nClarence\nLawrence\nLouis\nErnest\nNorman\nRalph\nFrederick\nPhilip\nHerbert\nHarold\nJack\nSamuel\nAlfred\nElmer\nLeonard\nVincent\nAlvin\nCarl\nDaniel\nLeroy\nMelvin\nMilton\nAndrew\nGilbert\nLewis\nStanley\nChester\nEugene\nWarren\nHarvey\nHoward\nMaurice\nAlexander\nBenjamin\nHerman\nKenneth\nTheodore\nEdgar\nMorris\nRoy\nRudolph\nWilbur\nAnthony\nCurtis\nJulius\nLloyd\nMichael\nVernon\nArnold\nCarroll\nClaude\nClinton\nLeo\nMartin\nNathaniel\nReginald\nRoland\nRussell\nSidney\nWilbert\nWillard\nWillie\nJohn\nWilliam\nJames\nRobert\nCharles\nJoseph\nGeorge\nThomas\nEdward\nRichard\nRaymond\nHarry\nWalter\nFrank\nHenry\nPaul\nAlbert\nDonald\nFrancis\nMilton\nBernard\nFrederick\nErnest\nHarold\nNorman\nJack\nLouis\nMelvin\nRalph\nDavid\nHerbert\nLawrence\nArthur\nCarl\nClarence\nDaniel\nEugene\nSamuel\nFred\nLeonard\nLeroy\nAlfred\nKenneth\nTheodore\nBenjamin\nEarl\nAndrew\nFranklin\nLeon\nLloyd\nVincent\nHarvey\nHoward\nLeo\nMaurice\nMorris\nPhilip\nAnthony\nEdwin\nElmer\nLewis\nWarren\nAllen\nCarlton\nChester\nMartin\nMichael\nRussell\nStanley\nStephen\nAlexander\nHerman\nHorace\nHugh\nMark\nRoger\nSidney\nEdgar\nEdmund\nEverett\nGilbert\nIrving\nNelson\nRoy\nVernon\nWilbert\nWilliam\nJohn\nJames\nRobert\nCharles\nJoseph\nGeorge\nRichard\nEdward\nThomas\nFrancis\nHarry\nFrank\nPaul\nBernard\nRaymond\nWalter\nArthur\nDonald\nHenry\nRalph\nAlbert\nDavid\nLouis\nErnest\nJack\nLawrence\nNorman\nHarold\nHerbert\nHoward\nFrederick\nCarl\nClarence\nLeonard\nEarl\nKenneth\nRoy\nSamuel\nDaniel\nEdwin\nMelvin\nMilton\nBenjamin\nEugene\nMaurice\nIrving\nLewis\nLeo\nTheodore\nAndrew\nMartin\nAlfred\nElmer\nLeroy\nMichael\nStanley\nClaude\nFranklin\nFred\nGordon\nHorace\nLeon\nPhilip\nDouglas\nEverett\nJesse\nJulius\nLloyd\nMorris\nRussell\nVincent\nAllen\nAnthony\nClifford\nEdgar\nJulian\nRoger\nVictor\nWarren\nWilbur\nCarroll\nMarshall\nNicholas\nOtto\nPatrick\nWillie\nAlvin\nClifton\nElwood\nFrederic\nLaurence\nLee\nMarvin\nMorgan\nNathan\nOscar\nSam\nStuart\nWoodrow\nWilliam\nJohn\nJames\nRobert\nCharles\nGeorge\nJoseph\nEdward\nThomas\nRichard\nRaymond\nFrancis\nHarry\nWalter\nFrank\nPaul\nLouis\nAlbert\nArthur\nBernard\nJack\nDonald\nRalph\nClarence\nEarl\nSamuel\nHenry\nDavid\nMelvin\nMilton\nAlfred\nFrederick\nCarl\nEdwin\nWilbur\nBenjamin\nHoward\nKenneth\nDaniel\nErnest\nHarold\nNorman\nLeroy\nLewis\nPhilip\nHerbert\nLeonard\nMichael\nAndrew\nSidney\nVernon\nVincent\nEugene\nLawrence\nLeon\nRoland\nWarren\nAlvin\nEdgar\nHorace\nLester\nRussell\nCecil\nJulian\nRoy\nAllen\nAnthony\nElmer\nEverett\nFred\nGordon\nHugh\nIrving\nJesse\nMaurice\nStanley\nWillard\nChester\nEdmund\nHerman\nJoe\nLloyd\nMarvin\nNathaniel\nVictor\nAlexander\nBurton\nCarroll\nClifton\nEmmett\nFranklin\nGilbert\nNick\nTheodore\nWilbert\nWilliam\nJohn\nJames\nRobert\nGeorge\nCharles\nJoseph\nRichard\nThomas\nEdward\nRaymond\nFrank\nHarry\nFrancis\nPaul\nAlbert\nHenry\nBernard\nDonald\nWalter\nJack\nErnest\nFrederick\nLouis\nRalph\nWarren\nArthur\nDavid\nMelvin\nClarence\nNorman\nHarold\nSamuel\nDaniel\nBenjamin\nHoward\nLeonard\nMilton\nEugene\nLeon\nLeroy\nLloyd\nTheodore\nAlfred\nEarl\nPhilip\nCarl\nEdwin\nFred\nLawrence\nAlvin\nAndrew\nElmer\nRussell\nVernon\nJesse\nMaurice\nWilbur\nChester\nFranklin\nGilbert\nKenneth\nLeo\nVincent\nMartin\nStanley\nWallace\nAllen\nAnthony\nHarvey\nOscar\nReginald\nRoy\nClifton\nDouglas\nEllsworth\nHerbert\nHerman\nLewis\nMichael\nRandolph\nVictor\nClaude\nClayton\nClifford\nClyde\nEdgar\nHugh\nIrving\nJerome\nJerry\nLee\nMarshall\nMorris\nRoland\nWayne\nCalvin\nFloyd\nGerald\nHorace\nNathan\nPreston\nWilbert\nWilliam\nJohn\nJames\nRobert\nCharles\nJoseph\nGeorge\nEdward\nThomas\nRichard\nRaymond\nFrancis\nWalter\nPaul\nHarry\nDavid\nWarren\nFrank\nBernard\nAlbert\nHenry\nHerbert\nRalph\nDonald\nLouis\nHoward\nClarence\nNorman\nEarl\nMelvin\nArthur\nCarl\nSamuel\nHarold\nJack\nErnest\nLawrence\nEugene\nFrederick\nDaniel\nMilton\nAlfred\nFred\nRussell\nTheodore\nLeonard\nLeroy\nBenjamin\nEdwin\nVincent\nWallace\nAndrew\nHarvey\nMaurice\nStanley\nJerome\nPhilip\nAlexander\nJulian\nKenneth\nPeter\nWilbur\nAllen\nClifton\nEllsworth\nFloyd\nIrving\nLeo\nLester\nMartin\nRoy\nWilbert\nCarroll\nFranklin\nHorace\nLewis\nMarshall\nOscar\nPhillip\nRoland\nSidney\nVictor\nAnthony\nDouglas\nEdgar\nElmer\nGerald\nLloyd\nMorris\nNathaniel\nOliver\nSol\nSylvester\nVernon\nWillard\nCalvin\nChester\nGilbert\nGuy\nHerman\nHugh\nLeon\nLeslie\nMichael\nRay\nRoger\nSterling\nTony\nWilliam\nJohn\nJames\nRobert\nCharles\nJoseph\nGeorge\nRichard\nEdward\nThomas\nPaul\nRaymond\nHarry\nFrank\nFrancis\nHarold\nArthur\nAlbert\nWalter\nDonald\nDavid\nLawrence\nErnest\nHenry\nJack\nLouis\nRalph\nEarl\nEugene\nDaniel\nFrederick\nKenneth\nSamuel\nHerbert\nNorman\nStanley\nClarence\nHoward\nBernard\nAlfred\nLeroy\nMelvin\nCarl\nEdwin\nLloyd\nMilton\nPhillip\nTheodore\nLeonard\nRoy\nAndrew\nCalvin\nMaurice\nPeter\nPhilip\nWilbur\nAnthony\nFred\nLeon\nVincent\nWallace\nAllen\nClyde\nGilbert\nLewis\nBenjamin\nHarvey\nIrving\nOscar\nWarren\nAngelo\nClifton\nNelson\nRussell\nEmmett\nEverett\nGordon\nHubert\nLester\nMichael\nMorris\nRandolph\nSidney\nStephen\nWillard\nBruce\nDouglas\nElmer\nFloyd\nHerman\nHorace\nJerome\nJulian\nMark\nMartin\nNathaniel\nNicholas\nRay\nReginald\nRudolph\nSam\nSherman\nAlvin\nHugh\nIrvin\nJesse\nMarvin\nRoland\nTony\nWilfred\nJohn\nWilliam\nJames\nRobert\nCharles\nGeorge\nJoseph\nEdward\nRichard\nThomas\nRaymond\nFrank\nHarry\nPaul\nDonald\nWalter\nLouis\nDavid\nHenry\nBernard\nAlbert\nArthur\nClarence\nFrancis\nEugene\nJack\nErnest\nRalph\nHarold\nHoward\nNorman\nLeonard\nAlfred\nHerbert\nLeroy\nEarl\nKenneth\nDaniel\nSamuel\nCarl\nElmer\nFrederick\nMelvin\nCalvin\nPhilip\nStanley\nWarren\nEdwin\nFred\nRoger\nLewis\nMaurice\nMilton\nTheodore\nRoland\nAnthony\nBenjamin\nChester\nHarvey\nLawrence\nNathaniel\nWilbur\nLeon\nRussell\nVincent\nPeter\nRoy\nStephen\nAndrew\nClifton\nEdmund\nFranklin\nHerman\nHorace\nLeo\nMichael\nOliver\nWallace\nCarroll\nDouglas\nGuy\nHugh\nIrving\nJerome\nLloyd\nLuther\nRudolph\nVernon\nAllen\nAlvin\nClaude\nEdgar\nNed\nNicholas\nSidney\nAlan\nArchie\nAustin\nClifford\nGilbert\nGordon\nHubert\nJesse\nJoe\nJulian\nLester\nMarshall\nMartin\nMatthew\nPatrick\nVictor\nWesley\nWilliam\nJohn\nJames\nRobert\nCharles\nJoseph\nGeorge\nRichard\nThomas\nEdward\nPaul\nDavid\nFrank\nBernard\nAlbert\nFrancis\nRaymond\nWalter\nDonald\nHenry\nHarry\nLawrence\nArthur\nJack\nClarence\nLouis\nCarl\nRalph\nSamuel\nHoward\nDaniel\nTheodore\nCalvin\nMelvin\nKenneth\nErnest\nHarold\nStanley\nBenjamin\nHerbert\nEarl\nEugene\nFrederick\nLeonard\nAndrew\nAnthony\nMilton\nNorman\nElmer\nFred\nRussell\nLeroy\nPhilip\nAlfred\nEdwin\nEdgar\nMarshall\nClifford\nLewis\nMaurice\nRoland\nRoy\nSidney\nVernon\nWilbur\nAlvin\nChester\nHerman\nLeo\nLeon\nMichael\nStephen\nFranklin\nGerald\nGilbert\nHarvey\nHugh\nMorris\nSterling\nAllen\nClaude\nIrving\nMatthew\nPeter\nVincent\nWallace\nWillard\nDouglas\nEverett\nFloyd\nLloyd\nMartin\nNathaniel\nNicholas\nPatrick\nSylvester\nAllan\nClyde\nGordon\nHomer\nJacob\nJesse\nJulius\nLeslie\nLester\nMorgan\nPhillip\nReginald\nWilliam\nJohn\nRobert\nJames\nJoseph\nCharles\nGeorge\nRichard\nThomas\nEdward\nDonald\nPaul\nRaymond\nFrancis\nDavid\nAlbert\nFrank\nJack\nRalph\nHarry\nWalter\nArthur\nClarence\nEugene\nHenry\nKenneth\nBernard\nLouis\nSamuel\nCalvin\nHarold\nMelvin\nDaniel\nHerbert\nStanley\nEarl\nErnest\nLawrence\nNorman\nFrederick\nLeonard\nHoward\nCarl\nTheodore\nFred\nLeroy\nMilton\nAlfred\nAndrew\nAnthony\nPeter\nWarren\nEdwin\nBenjamin\nMichael\nClifton\nLeon\nRussell\nAlvin\nPhilip\nVincent\nGordon\nHerman\nJesse\nLeo\nLewis\nMaurice\nRoger\nRoy\nSidney\nEdgar\nMarvin\nNathaniel\nOliver\nReginald\nRoland\nRudolph\nAlan\nBruce\nCecil\nClifford\nCurtis\nFloyd\nIrving\nJerome\nJulius\nLarry\nMatthew\nPreston\nWilbur\nFranklin\nJoe\nPatrick\nPhillip\nVernon\nWallace\nAlexander\nAllen\nChester\nClyde\nElliott\nGuy\nHarvey\nHorace\nLee\nLester\nMartin\nMorton\nNelson\nStephen\nWillie\nWilson\nWilliam\nJohn\nJames\nRobert\nCharles\nGeorge\nJoseph\nRichard\nThomas\nEdward\nPaul\nFrank\nWalter\nDavid\nDonald\nHarry\nRaymond\nBernard\nEugene\nFrancis\nHenry\nAlbert\nLouis\nArthur\nClarence\nMelvin\nHarold\nJack\nLawrence\nNorman\nStanley\nCarl\nDaniel\nHoward\nTheodore\nAlfred\nCalvin\nEarl\nKenneth\nRalph\nLeroy\nSamuel\nFrederick\nLeonard\nErnest\nFred\nLewis\nWarren\nLeon\nRudolph\nMilton\nRussell\nAndrew\nHerbert\nMaurice\nPhilip\nWilbur\nEdwin\nAlvin\nBenjamin\nMatthew\nReginald\nHugh\nPeter\nAnthony\nBilly\nBruce\nHerman\nOscar\nRoland\nVernon\nWillie\nCarlton\nHarvey\nMartin\nMorris\nVincent\nDouglas\nElmer\nGordon\nGuy\nIrving\nJerry\nJesse\nNathaniel\nPhillip\nRoy\nAlexander\nAllen\nClifton\nGilbert\nGlenn\nJulian\nJulius\nLaurence\nLeo\nLester\nLloyd\nMarvin\nPatrick\nRay\nRoger\nSidney\nAlan\nCarroll\nClaude\nClinton\nEddie\nEdgar\nEdmund\nFreddie\nJoe\nKarl\nMichael\nTommy\nVictor\nWallace\nWillard\nJohn\nWilliam\nRobert\nJames\nCharles\nGeorge\nRichard\nJoseph\nThomas\nEdward\nRaymond\nDonald\nPaul\nDavid\nFrancis\nFrank\nHarry\nWalter\nRalph\nJack\nAlbert\nBernard\nHenry\nClarence\nArthur\nLawrence\nLouis\nEarl\nHarold\nHerbert\nMelvin\nErnest\nEugene\nStanley\nHoward\nMilton\nSamuel\nCarl\nDaniel\nNorman\nAlvin\nFrederick\nGerald\nLeroy\nPhilip\nAlfred\nTheodore\nAndrew\nKenneth\nLeon\nMaurice\nLeonard\nAllen\nRoland\nCalvin\nJesse\nWarren\nBenjamin\nLloyd\nEdwin\nLeo\nRussell\nChester\nElmer\nHugh\nJerome\nMorris\nAnthony\nHerman\nLaurence\nMorton\nRoy\nRudolph\nBilly\nCarroll\nEdgar\nEverett\nFred\nHarvey\nLester\nOscar\nReginald\nRonald\nStephen\nSylvester\nAlexander\nArnold\nClifton\nDouglas\nFloyd\nGilbert\nGuy\nHubert\nJulian\nLewis\nMartin\nMichael\nNelson\nPeter\nRay\nVernon\nVincent\nWilbur\nEddie\nFranklin\nGene\nGordon\nHorace\nIrving\nKarl\nLee\nLeslie\nMarion\nMarvin\nPhillip\nSterling\nWesley\nWilbert\nWilliam\nJohn\nJames\nRobert\nCharles\nRichard\nGeorge\nJoseph\nThomas\nEdward\nDonald\nFrank\nDavid\nPaul\nWalter\nRaymond\nFrancis\nHarry\nAlbert\nRalph\nArthur\nHenry\nLouis\nAlfred\nJack\nLawrence\nBernard\nLeon\nEugene\nHerbert\nClarence\nMelvin\nHoward\nKenneth\nSamuel\nErnest\nMilton\nStanley\nAlvin\nNorman\nEarl\nLeroy\nFred\nFrederick\nHarold\nHugh\nJerome\nRoland\nDaniel\nEdwin\nLeonard\nLewis\nCarl\nMorris\nAndrew\nBenjamin\nCalvin\nPhilip\nTheodore\nVernon\nAllen\nLeo\nMarvin\nElmer\nHarvey\nMartin\nMaurice\nRoy\nWilbur\nEdgar\nGilbert\nHerman\nJoe\nLloyd\nPeter\nRussell\nWarren\nClaude\nGerald\nLaurence\nWallace\nAlan\nAnthony\nBill\nGene\nJerry\nMarshall\nMichael\nNicholas\nRudolph\nJulian\nOscar\nPercy\nVincent\nAlexander\nAngelo\nCecil\nClifton\nCornelius\nDick\nDon\nEverett\nFranklin\nGordon\nGuy\nJesse\nLeslie\nLester\nNathaniel\nNelson\nRoger\nRonald\nSylvester\nWillie\nJames\nWilliam\nJohn\nRobert\nCharles\nRichard\nJoseph\nGeorge\nEdward\nThomas\nDonald\nPaul\nRaymond\nDavid\nFrank\nFrancis\nHarry\nWalter\nBernard\nHerbert\nMelvin\nJack\nAlbert\nEugene\nClarence\nNorman\nRalph\nEarl\nLawrence\nLeroy\nHenry\nHarold\nArthur\nTheodore\nLloyd\nAlfred\nCarl\nSamuel\nAndrew\nLouis\nErnest\nKenneth\nRoy\nStanley\nAnthony\nFrederick\nLeon\nMilton\nMichael\nHoward\nCalvin\nEdwin\nHarvey\nVincent\nLeonard\nPhilip\nRoland\nElmer\nRoger\nWarren\nWillard\nChester\nDaniel\nJoe\nLewis\nMarvin\nPatrick\nWallace\nWillie\nAlvin\nClyde\nDouglas\nHerman\nHorace\nBenjamin\nCurtis\nFred\nGerald\nIrving\nJerry\nMaurice\nOliver\nPeter\nBilly\nClaude\nEverett\nJesse\nJimmy\nLester\nNathaniel\nNicholas\nOscar\nRudolph\nVictor\nWilbur\nAlan\nBob\nBruce\nGilbert\nGlenn\nJulius\nStephen\nSylvester\nWendell\nAlexander\nCleveland\nCornelius\nFloyd\nGordon\nJame\nJerome\nLeo\nMartin\nMatthew\nRay\nRonald\nRussell\nVernon\nWilfred\nWilliam\nRobert\nJames\nJohn\nCharles\nGeorge\nRichard\nJoseph\nDonald\nThomas\nEdward\nRaymond\nPaul\nDavid\nFrank\nHarry\nWalter\nFrancis\nAlbert\nBernard\nHerbert\nArthur\nCarl\nEugene\nKenneth\nClarence\nHarold\nLouis\nHenry\nMelvin\nSamuel\nJack\nLawrence\nLeonard\nRalph\nAlfred\nErnest\nHoward\nLeroy\nAlvin\nFrederick\nTheodore\nMichael\nMaurice\nRoland\nStanley\nVincent\nAnthony\nEarl\nEdwin\nDaniel\nGerald\nFred\nLeon\nPhilip\nWilbur\nAlan\nCalvin\nLloyd\nElmer\nHugh\nJerry\nNorman\nAllen\nMilton\nRoy\nClyde\nRandolph\nRonald\nChester\nFloyd\nGilbert\nMarvin\nRussell\nWarren\nBenjamin\nGene\nGordon\nHarvey\nHerman\nLewis\nMark\nNathaniel\nPeter\nJesse\nJoe\nJulius\nAndrew\nBilly\nBruce\nFranklin\nJerome\nJulian\nLee\nLeo\nLeslie\nLester\nMorris\nMorton\nRoger\nStephen\nTommy\nVernon\nVirgil\nAaron\nAlton\nCarroll\nConrad\nCurtis\nEllsworth\nEverett\nGuy\nIrving\nMartin\nNelson\nReginald\nRudolph\nSylvester\nRobert\nJohn\nWilliam\nJames\nCharles\nRichard\nDonald\nGeorge\nThomas\nJoseph\nEdward\nDavid\nRaymond\nPaul\nWalter\nFrank\nHarry\nClarence\nFrancis\nHerbert\nLawrence\nArthur\nBernard\nCarl\nAlbert\nEugene\nKenneth\nJack\nNorman\nRalph\nStanley\nHoward\nFred\nHenry\nHarold\nMichael\nAlfred\nEarl\nErnest\nLouis\nGerald\nLeroy\nMelvin\nPhilip\nRoland\nRonald\nTheodore\nDaniel\nFrederick\nRoy\nSamuel\nAlvin\nLeonard\nLeon\nJerry\nMaurice\nAllan\nMilton\nRoger\nRudolph\nAndrew\nClifford\nEdwin\nLloyd\nPeter\nRussell\nAllen\nMarvin\nLewis\nVincent\nWilbur\nAlan\nAnthony\nGilbert\nHerman\nJoe\nLeo\nBilly\nBruce\nClifton\nDouglas\nElwood\nIrving\nWarren\nWillie\nAlexander\nBenjamin\nCalvin\nGordon\nGuy\nHarvey\nJesse\nLarry\nMartin\nVernon\nArnold\nBob\nClaude\nEdgar\nElmer\nHugh\nJimmy\nLaurence\nPatrick\nRay\nTommy\nAlfonso\nChester\nConrad\nDon\nEverett\nFranklin\nHorace\nJohnnie\nLester\nMark\nNelson\nOliver\nStephen\nSylvester\nWesley\nRobert\nJames\nJohn\nWilliam\nCharles\nRichard\nGeorge\nDonald\nJoseph\nThomas\nEdward\nPaul\nDavid\nWalter\nFrank\nFrancis\nCarl\nRaymond\nRonald\nEugene\nHenry\nAlbert\nStanley\nArthur\nHoward\nBernard\nLouis\nHarold\nLawrence\nHerbert\nKenneth\nRalph\nTheodore\nJack\nMaurice\nMelvin\nEarl\nFrederick\nClarence\nAlvin\nHarry\nAlfred\nNorman\nDaniel\nSamuel\nGerald\nPhilip\nErnest\nLeonard\nLeroy\nBenjamin\nDouglas\nMichael\nMilton\nLeon\nRoland\nRussell\nGilbert\nVernon\nWarren\nFranklin\nFred\nJerome\nRoger\nRoy\nAllen\nAnthony\nClifton\nEdwin\nGene\nLester\nMorris\nPeter\nWilbur\nAndrew\nCarroll\nHarvey\nMartin\nMarvin\nAllan\nCalvin\nEdgar\nHerman\nJoe\nLarry\nLeo\nPatrick\nPhillip\nWallace\nBruce\nDon\nHugh\nJerry\nLaurence\nLloyd\nWayne\nWillie\nAlan\nClyde\nElmer\nEverett\nNathaniel\nArnold\nBill\nCarlton\nConrad\nEarle\nEddie\nGary\nGlenn\nGordon\nHorace\nJimmy\nJohnny\nLorenzo\nMatthew\nRandolph\nRoss\nRudolph\nVincent\nBobby\nClaude\nClifford\nDennis\nHubert\nJesse\nJulian\nLee\nLewis\nNicholas\nOwen\nSidney\nStephen\nSteve\nTimothy\nWade\nRobert\nWilliam\nJames\nJohn\nCharles\nRichard\nDonald\nThomas\nGeorge\nJoseph\nEdward\nPaul\nRaymond\nFrancis\nDavid\nWalter\nJack\nRonald\nKenneth\nRalph\nEugene\nHarry\nBernard\nFrank\nNorman\nAlbert\nHarold\nStanley\nTheodore\nArthur\nLawrence\nClarence\nEarl\nHenry\nMelvin\nLouis\nLeroy\nCarl\nFranklin\nHoward\nMichael\nLeonard\nSamuel\nFrederick\nGerald\nDaniel\nLeon\nAlan\nFred\nEdwin\nGary\nHerbert\nPhilip\nLewis\nMarvin\nPeter\nBenjamin\nMaurice\nMilton\nPhillip\nAllen\nRussell\nAlvin\nLeo\nRoland\nRoy\nAlfred\nAndrew\nBilly\nEdgar\nErnest\nJerry\nLarry\nLloyd\nVincent\nWayne\nClyde\nDennis\nDouglas\nHarvey\nHugh\nJerome\nRoger\nWarren\nWillard\nWillie\nAnthony\nBobby\nCarlton\nDon\nElmer\nGene\nRandolph\nSidney\nVernon\nAlexander\nEddie\nEverett\nJesse\nLee\nMartin\nNathaniel\nRudolph\nStephen\nTommy\nWallace\nWilbert\nBill\nBruce\nClifton\nGarland\nGordon\nHubert\nIra\nIrving\nJoe\nKarl\nMarshall\nMorris\nOscar\nPreston\nRay\nReginald\nRobert\nWilliam\nJames\nJohn\nCharles\nRichard\nDonald\nJoseph\nGeorge\nThomas\nEdward\nPaul\nDavid\nFrank\nRonald\nWalter\nLawrence\nRaymond\nEugene\nHarry\nBernard\nFrancis\nHarold\nArthur\nKenneth\nHenry\nSamuel\nStanley\nRalph\nClarence\nEarl\nNorman\nMelvin\nTheodore\nWarren\nHerbert\nLouis\nJack\nCarl\nDaniel\nGerald\nLeroy\nAlbert\nHoward\nAlfred\nJerome\nErnest\nPeter\nPhilip\nBenjamin\nFranklin\nRussell\nFred\nLeonard\nDouglas\nEdwin\nFrederick\nHerman\nLarry\nLewis\nMichael\nNathaniel\nRoland\nRoger\nWillie\nAlvin\nArnold\nHarvey\nPatrick\nReginald\nLeo\nLeon\nLloyd\nMartin\nRoy\nVincent\nWayne\nAlan\nAnthony\nDennis\nGordon\nMilton\nClyde\nDon\nEdgar\nJoe\nPhillip\nStephen\nWesley\nAllen\nBilly\nCalvin\nClaude\nFloyd\nGilbert\nSylvester\nAndrew\nGene\nJimmy\nLee\nRudolph\nSterling\nWallace\nAlton\nBill\nBruce\nEdmund\nGary\nIrvin\nMarvin\nWilbur\nCarlton\nCurtis\nElmer\nGuy\nHorace\nHubert\nJerry\nLester\nMarshall\nMaurice\nMorris\nOscar\nSherman\nJohn\nRobert\nWilliam\nJames\nCharles\nDonald\nRichard\nJoseph\nGeorge\nThomas\nDavid\nEdward\nPaul\nRonald\nKenneth\nWalter\nLawrence\nRaymond\nMichael\nHenry\nBernard\nCarl\nFrank\nHarry\nEugene\nHarold\nArthur\nRalph\nAlbert\nEarl\nFrederick\nJack\nNorman\nJerry\nPhilip\nFrancis\nLouis\nMelvin\nHerbert\nPeter\nRussell\nTheodore\nClarence\nRoger\nDaniel\nMaurice\nHoward\nLeonard\nAnthony\nStanley\nAlvin\nEdwin\nLarry\nLeroy\nRoland\nWarren\nBruce\nErnest\nFranklin\nGerald\nSamuel\nGary\nFred\nLeon\nLewis\nAlfred\nAllen\nGordon\nHerman\nLloyd\nMilton\nPhillip\nDouglas\nHarvey\nWillie\nJerome\nMarvin\nPatrick\nReginald\nAndrew\nClaude\nClyde\nGilbert\nOliver\nRoy\nStephen\nWayne\nBenjamin\nKarl\nLee\nLester\nSidney\nVernon\nVincent\nWilbert\nWilbur\nAlexander\nClifford\nDon\nEdgar\nElmer\nFloyd\nHugh\nJoe\nAlan\nCarroll\nEverett\nLorenzo\nMark\nRandolph\nRay\nRudolph\nBill\nBobby\nCarlton\nDennis\nEllsworth\nGene\nIrving\nMarshall\nTommy\nCalvin\nCecil\nClifton\nEarle\nJesse\nJulian\nJulius\nMary\nMorris\nNicholas\nPete\nRodney\nSam\nSterling\nWallace\nRobert\nJames\nWilliam\nJohn\nCharles\nRichard\nJoseph\nDonald\nGeorge\nThomas\nEdward\nDavid\nPaul\nRonald\nFrank\nWalter\nLawrence\nEugene\nRaymond\nMichael\nFrancis\nHarry\nKenneth\nBernard\nFred\nHarold\nNorman\nFrederick\nRalph\nArthur\nEarl\nHenry\nMelvin\nCarl\nPhilip\nSamuel\nAlbert\nAnthony\nGerald\nStanley\nAlfred\nJack\nLeroy\nLouis\nDaniel\nLeon\nTheodore\nPeter\nWarren\nAllen\nHoward\nLarry\nRoy\nErnest\nBruce\nClarence\nHerbert\nJerome\nFranklin\nMarvin\nRoger\nLeonard\nAlvin\nJerry\nJoe\nStephen\nLloyd\nPhillip\nLewis\nMilton\nPatrick\nRoland\nVernon\nBenjamin\nGene\nLeo\nMaurice\nVincent\nAndrew\nBill\nClifford\nGlenn\nMartin\nReginald\nAllan\nCarroll\nClaude\nDouglas\nEdwin\nGary\nGordon\nRussell\nWallace\nAlan\nArnold\nDon\nGuy\nJesse\nMatthew\nPreston\nRandolph\nRay\nWillard\nWillie\nBobby\nCurtis\nEddie\nKarl\nLee\nLeslie\nRodney\nSidney\nTommy\nVictor\nWayne\nBob\nCarlton\nClark\nClifton\nDennis\nElmer\nHarvey\nIrving\nJackie\nJay\nRonnie\nChester\nEdgar\nElwood\nEverett\nGilbert\nHerman\nHorace\nJoel\nJohnny\nLuther\nMalcolm\nNathaniel\nNicholas\nPete\nRudolph\nRufus\nStuart\nSylvester\nWilson\nRobert\nJohn\nJames\nWilliam\nCharles\nRichard\nThomas\nGeorge\nJoseph\nDavid\nDonald\nPaul\nEdward\nRonald\nRaymond\nMichael\nWalter\nFrank\nArthur\nKenneth\nHarry\nLawrence\nEarl\nAlbert\nEugene\nBernard\nMelvin\nFrederick\nClarence\nGerald\nCarl\nHenry\nHoward\nDaniel\nFrancis\nRalph\nAlfred\nHarold\nLeroy\nErnest\nPhilip\nJoe\nLeonard\nNorman\nStanley\nLouis\nJack\nJerry\nFred\nPeter\nWarren\nSamuel\nTheodore\nAnthony\nBenjamin\nGordon\nLarry\nDouglas\nVincent\nJerome\nMartin\nMaurice\nRoy\nDon\nLeon\nRoland\nWayne\nLee\nReginald\nRoger\nStephen\nAlan\nAllen\nDennis\nBill\nEdwin\nGary\nGilbert\nHerbert\nPhillip\nRussell\nVernon\nWallace\nAndrew\nEverett\nLeo\nLloyd\nMarvin\nWillie\nAlvin\nClaude\nFloyd\nLester\nMarshall\nMilton\nTommy\nBobby\nCalvin\nClinton\nClyde\nCornelius\nCurtis\nFranklin\nGene\nGlenn\nJimmy\nLewis\nNathaniel\nRudolph\nMalcolm\nVictor\nAllan\nBilly\nBruce\nChester\nEdgar\nHerman\nHubert\nHugh\nJesse\nJon\nKarl\nLeslie\nMorris\nRandolph\nRay\nClifton\nElmer\nFreddie\nHorace\nMark\nPatrick\nSylvester\nTimothy\nWillis\nAaron\nBarrington\nBarry\nBob\nCarlton\nCarroll\nEddie\nGregory\nGuy\nHarvey\nIrving\nJay\nJulian\nMatthew\nNelson\nOscar\nOwen\nSidney\nTyrone\nWilson\nRobert\nJohn\nWilliam\nJames\nCharles\nRichard\nThomas\nDavid\nJoseph\nDonald\nGeorge\nEdward\nMichael\nRonald\nRaymond\nKenneth\nLawrence\nPaul\nFrank\nFrancis\nMelvin\nBernard\nWalter\nDaniel\nRalph\nEugene\nHarry\nHenry\nArthur\nAlbert\nNorman\nPeter\nAnthony\nGerald\nCarl\nFrederick\nHoward\nTheodore\nAlfred\nErnest\nHarold\nJack\nLarry\nSamuel\nClarence\nEarl\nDennis\nStanley\nAlan\nDouglas\nLewis\nPhilip\nStephen\nGary\nHerbert\nJerry\nRoland\nFred\nLeonard\nWayne\nPatrick\nRoger\nBill\nLeon\nRoy\nLeroy\nMartin\nMaurice\nBenjamin\nBruce\nEdwin\nFranklin\nLouis\nAlvin\nBobby\nClifton\nMilton\nVernon\nAndrew\nJon\nLeo\nWallace\nWarren\nDon\nMarvin\nTimothy\nGene\nGordon\nHarvey\nJerome\nJesse\nNicholas\nAllen\nElmer\nHugh\nPhillip\nReginald\nRudolph\nRussell\nVincent\nBarry\nCalvin\nCarlton\nClaude\nCurtis\nLester\nRandolph\nWillie\nWilson\nArnold\nBilly\nCarroll\nEddie\nFreddie\nGlenn\nJoel\nKarl\nMark\nNathaniel\nSidney\nSylvester\nWilbur\nAllan\nBob\nClifford\nClyde\nDale\nEdgar\nEverett\nGilbert\nHerman\nIrving\nJay\nJoe\nLee\nLloyd\nMalcolm\nSteve\nStuart\nWilbert\nEric\nFloyd\nJimmy\nJohnny\nJulian\nLeslie\nOliver\nWillis\nAlton\nAubrey\nChester\nChristopher\nEdmund\nHarrison\nHubert\nLowell\nMike\nRay\nTerry\nVictor\nWendell\nJohn\nJames\nRobert\nWilliam\nCharles\nRichard\nThomas\nGeorge\nDavid\nJoseph\nDonald\nEdward\nRonald\nMichael\nPaul\nKenneth\nRaymond\nLawrence\nWalter\nEugene\nHarry\nFrank\nDaniel\nFrancis\nFrederick\nRalph\nPeter\nBernard\nStephen\nWayne\nArthur\nEarl\nHoward\nMelvin\nSamuel\nStanley\nAlbert\nCarl\nHenry\nLouis\nLarry\nJack\nGerald\nNorman\nErnest\nLeonard\nDouglas\nRoger\nHarold\nTheodore\nWarren\nAlfred\nFred\nGary\nAnthony\nLeroy\nRoland\nAndrew\nHerbert\nBenjamin\nPatrick\nPhilip\nBruce\nClarence\nJerry\nLeon\nDennis\nEdwin\nAllen\nRoy\nRussell\nMarvin\nVernon\nWillie\nBrian\nCalvin\nEddie\nMartin\nMilton\nPhillip\nAlan\nBarry\nAlvin\nClyde\nJerome\nBob\nCarlton\nFloyd\nFranklin\nHugh\nJay\nJon\nLee\nMaurice\nTimothy\nTyrone\nVincent\nAlexander\nGregory\nHarvey\nMarshall\nMorris\nCarroll\nClifton\nDon\nGordon\nJimmy\nLloyd\nNathaniel\nReginald\nAllan\nClaude\nEverett\nKarl\nLeslie\nLewis\nMark\nOliver\nWesley\nBobby\nClifford\nDale\nGene\nGilbert\nIrvin\nJoel\nJohnny\nMike\nNicholas\nRudolph\nSteven\nStuart\nTommy\nVictor\nWilbur\nWillard\nArnold\nAubrey\nCecil\nCurtis\nEdgar\nElmer\nGlenn\nJesse\nJoe\nJonathan\nMatthew\nNeal\nRay\nRodney\nRoosevelt\nSteve\nWilson\nBilly\nEric\nFreddie\nGuy\nHerman\nJimmie\nKent\nLeo\nMalcolm\nOtis\nPerry\nRandolph\nSidney\nWallace\nJohn\nRobert\nJames\nWilliam\nCharles\nRichard\nGeorge\nThomas\nDavid\nJoseph\nEdward\nMichael\nRonald\nDonald\nPaul\nKenneth\nFrank\nRaymond\nWalter\nLawrence\nGerald\nStephen\nDaniel\nArthur\nPeter\nFrancis\nLouis\nHarry\nRalph\nErnest\nCarl\nHarold\nHenry\nLarry\nEugene\nPhilip\nAlbert\nAnthony\nDennis\nStanley\nRoger\nSamuel\nDouglas\nEarl\nMelvin\nLeroy\nBernard\nFrederick\nFred\nJerry\nTheodore\nWarren\nAndrew\nFranklin\nGary\nLeonard\nNorman\nWayne\nHoward\nPhillip\nRoy\nClarence\nJack\nAlfred\nMartin\nAlvin\nJerome\nAllen\nBruce\nEdwin\nHerbert\nLeon\nBarry\nBenjamin\nNathaniel\nPatrick\nDon\nRoland\nGlenn\nGordon\nJay\nMarvin\nMaurice\nRandolph\nReginald\nTimothy\nHarvey\nMalcolm\nMilton\nRussell\nAlexander\nArnold\nClyde\nEdgar\nGilbert\nJesse\nJoe\nLee\nMike\nVincent\nWallace\nAlan\nJoel\nLewis\nTyrone\nVictor\nBob\nChristopher\nClifton\nLeo\nLloyd\nSidney\nCalvin\nGene\nKarl\nMorris\nWillie\nCarlton\nClifford\nCurtis\nEddie\nIrvin\nIrving\nLester\nNelson\nOliver\nPerry\nRay\nVernon\nWesley\nAllan\nBobby\nBrian\nEverett\nGeoffrey\nJon\nOscar\nRodney\nRudolph\nSteve\nStuart\nTerry\nWendell\nBill\nBilly\nCarroll\nChester\nDean\nEmory\nEric\nHerman\nHugh\nJohnny\nJulius\nLeslie\nLonnie\nLuther\nMark\nMatthew\nNicholas\nSteven\nSylvester\nTom\nTommy\nWilbur\nAlex\nClaude\nDale\nDorsey\nEdmund\nElliott\nElmer\nGregory\nJeffrey\nJim\nJimmy\nKent\nLaurence\nLinwood\nLowell\nMarshall\nPreston\nRonnie\nSam\nStewart\nWade\nWillard\nWilson\nJames\nJohn\nRobert\nWilliam\nRichard\nCharles\nThomas\nJoseph\nMichael\nDavid\nGeorge\nDonald\nRonald\nPaul\nEdward\nKenneth\nStephen\nRaymond\nFrank\nHarry\nLawrence\nWalter\nHenry\nGerald\nArthur\nLarry\nCarl\nDaniel\nPeter\nAlbert\nEugene\nFrancis\nHarold\nDennis\nSamuel\nWayne\nBernard\nFrederick\nNorman\nHoward\nTheodore\nGary\nAnthony\nMelvin\nEarl\nHerbert\nLouis\nStanley\nAlfred\nDouglas\nBruce\nErnest\nJerry\nRoger\nRalph\nAlvin\nFred\nMilton\nPatrick\nPhilip\nWarren\nAlan\nLeonard\nClarence\nAllen\nRoy\nAndrew\nJerome\nRussell\nFranklin\nGlenn\nJack\nEdwin\nMaurice\nAllan\nLeon\nReginald\nWillie\nBarry\nBenjamin\nJeffrey\nLeroy\nLewis\nMartin\nPhillip\nSteven\nLee\nRoland\nTimothy\nVincent\nEdgar\nGordon\nJon\nMarvin\nNathaniel\nTerry\nDon\nEddie\nHugh\nJoe\nLester\nBill\nBrian\nGilbert\nJesse\nLloyd\nRodney\nTyrone\nBobby\nCalvin\nGuy\nHarvey\nMike\nRay\nSylvester\nClifford\nGregory\nJimmy\nVictor\nClifton\nElmer\nHubert\nKarl\nOliver\nPreston\nRandolph\nVernon\nChristopher\nCurtis\nDanny\nEric\nFrederic\nGene\nHerman\nJoel\nLeo\nLynn\nMark\nNicholas\nSam\nCarroll\nCecil\nDale\nJim\nMarshall\nMorris\nNeil\nOscar\nRonnie\nRoscoe\nStewart\nAlexander\nArnold\nChester\nClyde\nCraig\nFloyd\nJimmie\nLeslie\nMatthew\nNathan\nNorris\nSterling\nStuart\nTom\nTommy\nWilbert\nWillard\nChris\nClaude\nDick\nElwood\nEverett\nGrant\nHorace\nIsaac\nJan\nJohnny\nJulian\nMalcolm\nMillard\nMurray\nNeal\nSteve\nWallace\nWilson\nWinston\nJohn\nRobert\nWilliam\nJames\nCharles\nRichard\nMichael\nDavid\nThomas\nGeorge\nJoseph\nRonald\nPaul\nEdward\nDonald\nKenneth\nStephen\nFrank\nLawrence\nRaymond\nDouglas\nWalter\nArthur\nAlbert\nDaniel\nLarry\nHarry\nRalph\nGerald\nHenry\nCarl\nDennis\nBernard\nPeter\nGary\nNorman\nJerry\nAnthony\nSamuel\nErnest\nHarold\nMelvin\nEugene\nRoger\nWayne\nBruce\nHoward\nStanley\nFrancis\nMartin\nPhilip\nWarren\nClarence\nLeonard\nLouis\nSteven\nFred\nJack\nTimothy\nEarl\nLeroy\nTheodore\nBarry\nFrederick\nAlan\nAlfred\nJeffrey\nPhillip\nVincent\nReginald\nRussell\nHugh\nHerbert\nMarvin\nRoy\nAllen\nAllan\nPatrick\nFranklin\nMilton\nBenjamin\nLewis\nWillie\nEdwin\nEric\nJay\nMark\nAndrew\nChristopher\nGordon\nHarvey\nStuart\nJerome\nLloyd\nSteve\nAlvin\nCalvin\nJesse\nJoe\nLee\nLeon\nMaurice\nVernon\nBill\nNathaniel\nNicholas\nRonnie\nClaude\nDon\nJohnny\nClyde\nGregory\nJimmy\nJon\nJonathan\nRoland\nTyrone\nBrian\nClifton\nFloyd\nGlenn\nLaurence\nMarshall\nMike\nTerry\nWallace\nClark\nClifford\nCurtis\nDale\nEddie\nGene\nGilbert\nLeslie\nMorris\nRay\nSterling\nBobby\nChester\nEdgar\nHerman\nKarl\nOliver\nRandolph\nSidney\nVictor\nBob\nCarroll\nCraig\nEverett\nLeo\nLester\nMalcolm\nMatthew\nPreston\nRudolph\nSheldon\nWendell\nWesley\nWilbert\nWillard\nAubrey\nHorace\nNeil\nRoss\nWilbur\nAlexander\nArnold\nByron\nDave\nFreddie\nGeoffrey\nGuy\nKevin\nThurman\nTom\nTommy\nWade\nAaron\nDanny\nDuncan\nGlen\nIrving\nIsaac\nJim\nJoel\nJohnnie\nRodney\nSherman\nSpencer\nAdrian\nAlonzo\nAustin\nCarlos\nConrad\nEdmund\nEliot\nElmer\nHubert\nJeffery\nJimmie\nJulian\nJulius\nKent\nLuther\nLynn\nMary\nNeal\nNelson\nOtis\nSylvester\nJohn\nRobert\nJames\nWilliam\nRichard\nCharles\nThomas\nMichael\nDavid\nGeorge\nJoseph\nRonald\nEdward\nDonald\nPaul\nKenneth\nStephen\nFrank\nGary\nRaymond\nPeter\nDaniel\nLarry\nWalter\nHenry\nArthur\nDennis\nLawrence\nRalph\nCarl\nHarry\nGerald\nDouglas\nMelvin\nAlbert\nBruce\nHoward\nSamuel\nRoger\nFrancis\nFrederick\nLouis\nPatrick\nJack\nEugene\nFred\nPhilip\nStanley\nHarold\nWayne\nSteven\nClarence\nNorman\nErnest\nTimothy\nAnthony\nBarry\nBernard\nLeonard\nAndrew\nJerry\nAlfred\nJerome\nRussell\nTheodore\nMark\nEarl\nHerbert\nLeroy\nMartin\nVincent\nWillie\nChristopher\nMaurice\nBenjamin\nLewis\nRay\nRoy\nGlenn\nWarren\nAlan\nStuart\nAllen\nEdwin\nBrian\nReginald\nCalvin\nGordon\nHarvey\nJeffrey\nPhillip\nSteve\nClifford\nDon\nEric\nJon\nLee\nMarshall\nFranklin\nNathaniel\nRoland\nAllan\nAlvin\nGilbert\nJoel\nLloyd\nMarvin\nMilton\nVictor\nClifton\nFloyd\nJesse\nLeon\nGregory\nRonnie\nTerry\nAlexander\nArnold\nBobby\nClaude\nCraig\nDale\nEdmund\nJim\nJoe\nJohnny\nLeslie\nMalcolm\nTom\nTommy\nWesley\nEddie\nGene\nGuy\nHerman\nHugh\nIrving\nJay\nJimmy\nKarl\nKeith\nNathan\nOtis\nWendell\nBob\nEdgar\nMike\nRandolph\nCarlton\nClinton\nCurtis\nEverett\nJohnnie\nJonathan\nOliver\nRodney\nRudolph\nSylvester\nWinston\nBilly\nByron\nDarrell\nGeoffrey\nJulian\nMarc\nNicholas\nRoss\nTyrone\nVernon\nClyde\nDanny\nGerard\nJackie\nJulius\nKent\nLester\nLynn\nNeal\nNelson\nWallace\nWilbert\nBen\nLeo\nMatthew\nNeil\nOscar\nPreston\nScott\nTerence\nWilbur\nAlton\nCarroll\nCecil\nChris\nConrad\nElmer\nEmory\nGrant\nHarrison\nHorace\nLaurence\nLionel\nMorris\nRoosevelt\nSam\nSidney\nSterling\nStewart\nTed\nJohn\nRobert\nJames\nWilliam\nRichard\nCharles\nMichael\nThomas\nDavid\nJoseph\nGeorge\nEdward\nRonald\nDonald\nPaul\nKenneth\nFrank\nRaymond\nGary\nStephen\nLawrence\nLarry\nPeter\nDaniel\nWalter\nArthur\nDennis\nGerald\nHarry\nCarl\nHarold\nBruce\nHenry\nFrederick\nDouglas\nEugene\nRalph\nWayne\nHoward\nPhilip\nLouis\nAlbert\nFrancis\nRoger\nSteven\nAlan\nAnthony\nNorman\nBernard\nErnest\nAndrew\nJerry\nFred\nClarence\nJeffrey\nPatrick\nMelvin\nRussell\nSamuel\nTimothy\nEarl\nEric\nJack\nStanley\nLeonard\nRoy\nMaurice\nJerome\nLeroy\nTheodore\nWillie\nBarry\nCalvin\nWarren\nBrian\nLeon\nAlfred\nChristopher\nSteve\nPhillip\nHerbert\nJon\nMartin\nLloyd\nVincent\nBenjamin\nClaude\nReginald\nAllen\nJoe\nLewis\nDwight\nHugh\nJoel\nMark\nMarvin\nNicholas\nRay\nTerry\nAlexander\nClifford\nCurtis\nGregory\nJonathan\nKarl\nRonnie\nAlvin\nBill\nChester\nDale\nDon\nEdwin\nNathaniel\nRandolph\nRoland\nTyrone\nCarroll\nClifton\nCraig\nGilbert\nJesse\nJohnnie\nLeslie\nLester\nMike\nMilton\nVernon\nVictor\nWesley\nCarlton\nClyde\nJohnny\nPreston\nEddie\nEdgar\nFranklin\nJay\nJim\nLee\nLeo\nTom\nWinston\nGordon\nJulius\nNeil\nRodney\nStuart\nBobby\nCecil\nClinton\nEverett\nFreddie\nGene\nKeith\nKevin\nKurt\nLuther\nMalcolm\nTommy\nAllan\nAlonzo\nAndre\nBilly\nGlenn\nGuy\nHarvey\nMorris\nOliver\nPerry\nSam\nBob\nEdmund\nGerard\nHerman\nIrving\nJimmy\nMarshall\nMitchell\nNathan\nNelson\nRudolph\nRufus\nStewart\nSylvester\nWallace\nArnold\nClayton\nGlen\nHal\nHorace\nLaurence\nMyron\nOscar\nOtis\nPercy\nWilbert\nWoodrow\nAlton\nAubrey\nClark\nConrad\nDan\nDean\nFloyd\nGarland\nHomer\nJeff\nJimmie\nLeland\nLonnie\nMatthew\nNeal\nRandall\nRoss\nSherman\nSpencer\nTed\nWendell\nWilbur\nJohn\nJames\nRobert\nWilliam\nRichard\nMichael\nCharles\nThomas\nDavid\nJoseph\nRonald\nGeorge\nDonald\nEdward\nPaul\nStephen\nKenneth\nGary\nLawrence\nFrank\nPeter\nDennis\nRaymond\nDaniel\nLarry\nWalter\nArthur\nDouglas\nSteven\nGerald\nHarold\nHarry\nBruce\nMark\nHenry\nCarl\nWayne\nAlbert\nPhilip\nRalph\nAlan\nEugene\nLeonard\nRoger\nAnthony\nAndrew\nEarl\nFrederick\nPatrick\nSamuel\nFrancis\nJack\nBernard\nFred\nJeffrey\nNorman\nGregory\nMelvin\nWillie\nStanley\nTimothy\nErnest\nAllen\nJerry\nLouis\nRussell\nBrian\nHoward\nWarren\nRoy\nCalvin\nChristopher\nEric\nLeon\nAlfred\nJerome\nBarry\nLeroy\nAllan\nKeith\nVincent\nClarence\nFranklin\nJonathan\nLewis\nMartin\nNathaniel\nReginald\nVictor\nBill\nGene\nTheodore\nHarvey\nHerbert\nMaurice\nPhillip\nSteve\nGordon\nJon\nLee\nTyrone\nClaude\nClifford\nJimmy\nLloyd\nGlenn\nMilton\nStuart\nEdwin\nJay\nJoe\nRoland\nTerry\nDale\nMike\nBenjamin\nLeo\nBob\nJohnny\nMarvin\nRay\nRodney\nClyde\nCraig\nCurtis\nDan\nDon\nDwight\nGeoffrey\nMarshall\nRonnie\nScott\nEddie\nFloyd\nGilbert\nJoel\nLester\nNicholas\nWallace\nAlexander\nAlvin\nCarroll\nChris\nClifton\nDanny\nHugh\nMarc\nRoderick\nWilbur\nWillard\nArnold\nChester\nEdmund\nGuy\nJan\nJim\nKarl\nLeslie\nNeil\nSterling\nVernon\nWillis\nByron\nDean\nFreddie\nIrving\nJesse\nMalcolm\nMorris\nRandall\nRudolph\nTom\nTommy\nCarlton\nClayton\nClement\nGlen\nLaurence\nNeal\nNelson\nOliver\nRicardo\nSidney\nStewart\nWendell\nBilly\nBryan\nCecil\nDana\nDave\nEverett\nFrederic\nHerman\nJackie\nJohnnie\nKurt\nLynn\nMitchell\nRoss\nSheldon\nTerence\nAlton\nAndre\nBennett\nBobby\nChristian\nClark\nClinton\nConrad\nElmer\nGarrett\nJulian\nJulius\nKirk\nLamont\nLionel\nMiles\nMyron\nNorbert\nPercy\nPerry\nPete\nPreston\nRandolph\nTim\nTony\nVan\nWilson\nJohn\nRobert\nJames\nWilliam\nRichard\nMichael\nCharles\nThomas\nDavid\nJoseph\nRonald\nGeorge\nPaul\nDonald\nStephen\nEdward\nKenneth\nLawrence\nGary\nFrank\nDaniel\nDouglas\nLarry\nDennis\nRaymond\nCarl\nArthur\nWayne\nGregory\nPeter\nAlan\nSteven\nBruce\nWalter\nHarry\nSamuel\nAnthony\nHenry\nGerald\nJerry\nRoger\nFrederick\nBernard\nHarold\nRalph\nPatrick\nAndrew\nEugene\nMark\nHoward\nRussell\nJerome\nPhilip\nFrancis\nNorman\nTimothy\nAlbert\nLouis\nStanley\nJack\nJeffrey\nClarence\nAllen\nChristopher\nEarl\nErnest\nMelvin\nAlfred\nLeonard\nWarren\nEric\nLeroy\nFred\nTheodore\nWillie\nRoy\nTerry\nTyrone\nBarry\nGlenn\nGordon\nMartin\nReginald\nBrian\nVernon\nHerbert\nJonathan\nLee\nLeon\nLewis\nMaurice\nJon\nDale\nJohnny\nNathaniel\nAlvin\nCalvin\nFranklin\nLloyd\nVincent\nBenjamin\nCraig\nSteve\nMilton\nRandall\nRay\nRoland\nRonnie\nTom\nAllan\nVictor\nDon\nEdwin\nGeoffrey\nPhillip\nRodney\nGene\nMike\nAlexander\nHarvey\nHugh\nJay\nMarvin\nBill\nClifton\nFloyd\nHerman\nJimmy\nLeslie\nScott\nSylvester\nClifford\nClyde\nCurtis\nDan\nJesse\nJim\nKarl\nKeith\nStuart\nArnold\nByron\nCarroll\nEddie\nMalcolm\nWallace\nBob\nClayton\nIra\nJoel\nLonnie\nMarshall\nSidney\nTommy\nCecil\nChester\nChris\nClaude\nEverett\nJoe\nJulius\nKevin\nMatthew\nMicheal\nRandolph\nSterling\nTony\nBilly\nBryan\nCarlton\nDarryl\nDwight\nEdgar\nElmer\nGilbert\nGuy\nJan\nKent\nLeo\nLester\nNathan\nPerry\nTerrence\nWesley\nWillard\nAlphonso\nBobby\nClark\nCornell\nDanny\nEdmund\nForrest\nLorenzo\nMorris\nNicholas\nNoel\nOtis\nRicky\nRudolph\nTed\nVan\nWinston\nAlonzo\nCarlos\nDean\nElliott\nElwood\nFreddie\nGlen\nGrant\nJohnnie\nLionel\nMarion\nNeal\nNelson\nRoderick\nWilbert\nWillis\nArchie\nBarton\nBlaine\nClinton\nDave\nEllis\nFrankie\nFrederic\nGarland\nGerard\nGerry\nGreg\nJulian\nKermit\nLaurence\nLuther\nMarc\nNeil\nNick\nOscar\nWade\nWilson\nJohn\nJames\nRobert\nWilliam\nMichael\nRichard\nDavid\nThomas\nCharles\nRonald\nJoseph\nGeorge\nDonald\nEdward\nKenneth\nPaul\nStephen\nLarry\nGary\nGregory\nSteven\nRaymond\nDennis\nLawrence\nMark\nPeter\nFrank\nDaniel\nDouglas\nWalter\nBruce\nArthur\nAlan\nRalph\nPhilip\nGerald\nPatrick\nHarold\nHenry\nAlbert\nHarry\nFrederick\nWayne\nCarl\nAnthony\nLeonard\nTimothy\nSamuel\nBernard\nJerry\nJeffrey\nReginald\nRoger\nJerome\nBarry\nEric\nMelvin\nBrian\nEarl\nFrancis\nTyrone\nAndrew\nErnest\nLouis\nPhillip\nChristopher\nClarence\nFred\nAlfred\nHoward\nStanley\nGlenn\nNorman\nRoy\nLeroy\nCraig\nJack\nLeon\nHerbert\nMartin\nTerry\nAllen\nRussell\nSteve\nVincent\nWillie\nCalvin\nVernon\nEugene\nJoel\nTheodore\nAlvin\nWarren\nBenjamin\nLee\nMaurice\nMilton\nRonnie\nStuart\nLewis\nMarvin\nRodney\nAllan\nCarlton\nDwight\nJay\nHarvey\nLloyd\nMike\nAaron\nBill\nClifton\nDale\nDon\nKevin\nLeslie\nLester\nClaude\nEdwin\nGordon\nRoland\nJoe\nJon\nMorris\nNathaniel\nDanny\nGeoffrey\nLaurence\nLeo\nRandall\nScott\nWallace\nBilly\nByron\nCurtis\nGilbert\nJesse\nJimmy\nJohnny\nJonathan\nKarl\nMarshall\nVictor\nClifford\nEddie\nGlen\nKeith\nRandolph\nClyde\nDana\nDean\nGuy\nJeff\nNeil\nNelson\nRay\nSidney\nSterling\nFloyd\nFranklin\nGene\nHerman\nJimmie\nMalcolm\nMarc\nOliver\nRudolph\nTom\nTony\nAlexander\nArnold\nBobby\nChris\nDuane\nEdgar\nEverett\nFreddie\nJohnnie\nMicheal\nNicholas\nPerry\nRobin\nSylvester\nTerrence\nTommy\nWade\nWillard\nAndre\nDarrell\nJim\nOtis\nTed\nBradley\nCarroll\nClayton\nElliott\nHorace\nHugh\nIvan\nKirk\nLinwood\nLonnie\nMatthew\nNeal\nRicardo\nRoderick\nStewart\nWesley\nWilbert\nAlphonso\nAubrey\nBob\nBradford\nBrent\nClark\nEdmund\nEllis\nGreg\nIsaac\nKermit\nLionel\nLynn\nRick\nThaddeus\nTim\nUlysses\nWendell\nAlfonso\nAntonio\nChester\nConrad\nElbert\nElmer\nEmmett\nFurman\nIan\nIrvin\nIrving\nJoshua\nKenny\nLeland\nNathan\nOscar\nPreston\nRandy\nRoss\nSpencer\nWilbur\nJohn\nJames\nRobert\nWilliam\nMichael\nRichard\nThomas\nCharles\nDavid\nJoseph\nRonald\nGeorge\nPaul\nStephen\nDonald\nEdward\nKenneth\nLarry\nGary\nDaniel\nLawrence\nSteven\nRaymond\nGregory\nFrank\nDennis\nMark\nAlan\nBruce\nWalter\nAnthony\nHarold\nGerald\nArthur\nPatrick\nTimothy\nCarl\nChristopher\nDouglas\nJerry\nWayne\nPeter\nRalph\nAndrew\nEugene\nRoger\nEric\nPhilip\nSamuel\nJeffrey\nTyrone\nErnest\nHarry\nReginald\nStanley\nBernard\nClarence\nAlbert\nFrederick\nHenry\nHoward\nNorman\nLeroy\nFrancis\nJerome\nVincent\nPhillip\nCalvin\nFred\nMelvin\nRoy\nAllen\nGlenn\nRussell\nTerry\nTheodore\nBarry\nAlfred\nEarl\nSteve\nBrian\nWarren\nAlvin\nLeon\nLouis\nCraig\nJack\nLeonard\nMilton\nLewis\nMartin\nWillie\nBenjamin\nHerbert\nJonathan\nEdwin\nMaurice\nRonnie\nDale\nDon\nCurtis\nJesse\nLee\nLester\nRodney\nCarlton\nClifford\nKevin\nJoel\nKeith\nRoland\nVernon\nArnold\nLloyd\nVictor\nAlexander\nBill\nDwight\nHarvey\nJohnny\nJon\nLeslie\nMarshall\nNathaniel\nAllan\nClifton\nMike\nRay\nAndre\nEverett\nRicardo\nScott\nFloyd\nFranklin\nHerman\nLaurence\nMitchell\nNeil\nNicholas\nStuart\nWallace\nDanny\nHugh\nJay\nWesley\nAaron\nBob\nEdmund\nGreg\nJoe\nMarvin\nOliver\nRudolph\nBobby\nCarroll\nDana\nGordon\nJohnnie\nSidney\nEdgar\nElliot\nGene\nIrving\nJimmy\nKarl\nMatthew\nMicheal\nMorris\nNathan\nRandall\nSpencer\nTom\nCecil\nChester\nClaude\nCornell\nFreddie\nGlen\nLonnie\nMalcolm\nRandolph\nRufus\nSam\nSherman\nWilbur\nWilson\nBradley\nCleveland\nClinton\nGeoffrey\nGilbert\nHorace\nLamont\nLeo\nMarc\nRandy\nTommy\nWade\nWilbert\nWillis\nWinston\nAlphonso\nAlphonzo\nAlton\nChris\nDarryl\nEddie\nElliott\nElmer\nForrest\nGuy\nJulius\nPerry\nRobin\nTerrence\nWoodrow\nAdrian\nBarrington\nBradford\nChristian\nClyde\nConrad\nDaryl\nDean\nElwood\nIsaiah\nJackie\nJimmie\nJulian\nPercy\nRamon\nRoscoe\nStewart\nTerence\nThaddeus\nWendell\nWilfred\nRobert\nJames\nJohn\nWilliam\nMichael\nRichard\nDavid\nThomas\nCharles\nRonald\nJoseph\nStephen\nGeorge\nPaul\nDonald\nKenneth\nLarry\nEdward\nGregory\nSteven\nGary\nLawrence\nDaniel\nDennis\nMark\nBruce\nAlan\nPeter\nRaymond\nAnthony\nTimothy\nWalter\nFrank\nDouglas\nChristopher\nPatrick\nWayne\nHarold\nArthur\nHoward\nCarl\nJeffrey\nReginald\nRalph\nHenry\nAndrew\nGerald\nRoger\nFrancis\nHarry\nBernard\nEric\nLouis\nAlbert\nMelvin\nStanley\nClarence\nBrian\nPhilip\nEugene\nSamuel\nFrederick\nJerome\nMartin\nGlenn\nFred\nNorman\nTyrone\nBarry\nJack\nTheodore\nLeonard\nErnest\nLeroy\nPhillip\nEarl\nRoy\nWillie\nAllen\nAlvin\nAlfred\nBenjamin\nCalvin\nKevin\nRussell\nCraig\nVincent\nJonathan\nMaurice\nRodney\nTerry\nWarren\nLee\nVernon\nJohnny\nLeon\nJay\nJerry\nMilton\nRonnie\nHerbert\nDale\nClifton\nLeslie\nMarvin\nLewis\nMarc\nCurtis\nGilbert\nGordon\nScott\nCarlton\nSteve\nVictor\nHarvey\nJoel\nKeith\nNathaniel\nRudolph\nAllan\nFranklin\nGene\nHerman\nJesse\nKarl\nLloyd\nRandolph\nStuart\nAaron\nClaude\nClifford\nDarryl\nMorris\nDwight\nEdwin\nGeoffrey\nJeffery\nMarshall\nMatthew\nMicheal\nRay\nMike\nNicholas\nRoland\nLeo\nWesley\nChris\nDanny\nFloyd\nJon\nJulian\nRandall\nSterling\nArnold\nBob\nClyde\nDon\nEddie\nEdgar\nEverett\nGerard\nGuy\nHugh\nLaurence\nOtis\nAdrian\nAndre\nBill\nChester\nDarrell\nIra\nLester\nMitchell\nTerence\nAlexander\nBradley\nCarlos\nGlen\nIsaac\nJohnnie\nJuan\nKent\nKim\nKirk\nLamont\nNeil\nOliver\nOscar\nTerrence\nWendell\nWilbur\nAlphonso\nClark\nClinton\nDana\nDean\nGregg\nJan\nJoe\nJulius\nLinwood\nLonnie\nLorenzo\nNathan\nNelson\nPerry\nPreston\nRicardo\nTommy\nTony\nWallace\nWilbert\nCarroll\nCecil\nClayton\nDan\nDaryl\nEdmund\nElmer\nFreddie\nIrving\nJim\nKerry\nLance\nMarion\nRicky\nSidney\nTerrance\nTom\nWoodrow\nAlfonso\nBradford\nBryan\nConrad\nCornelius\nCornell\nDuane\nFrederic\nFredrick\nJimmy\nLionel\nNeal\nRickey\nRobin\nRodger\nSherman\nSylvester\nUlysses\nWillard\nZachary\nJohn\nJames\nRobert\nMichael\nWilliam\nDavid\nRichard\nThomas\nCharles\nJoseph\nRonald\nStephen\nPaul\nDonald\nGeorge\nEdward\nGary\nSteven\nLarry\nKenneth\nGregory\nDennis\nMark\nLawrence\nBruce\nDaniel\nAnthony\nRaymond\nDouglas\nPeter\nPatrick\nChristopher\nGerald\nArthur\nAlan\nWalter\nEric\nFrank\nWayne\nTimothy\nRoger\nHarold\nAndrew\nJerome\nPhilip\nCarl\nJeffrey\nSamuel\nTyrone\nHarry\nHoward\nRalph\nReginald\nBernard\nBrian\nLeonard\nStanley\nKevin\nAlbert\nEugene\nGlenn\nAlvin\nRussell\nHenry\nCraig\nFrederick\nFrancis\nMelvin\nVincent\nAlfred\nBarry\nClarence\nJerry\nLeon\nTerry\nMaurice\nErnest\nAllen\nEarl\nLouis\nNorman\nTheodore\nJonathan\nRoy\nMartin\nJack\nKeith\nLeroy\nCalvin\nClifford\nDwight\nEdwin\nRodney\nWillie\nRandolph\nBenjamin\nJay\nPhillip\nVictor\nAndre\nCurtis\nDale\nJohnny\nLee\nMilton\nLloyd\nMarvin\nWarren\nAaron\nNathaniel\nScott\nFred\nLewis\nClifton\nDean\nHerbert\nSteve\nDon\nRonnie\nSylvester\nVernon\nEdgar\nHerman\nMatthew\nRoland\nArnold\nDanny\nHarvey\nJesse\nMorris\nRicardo\nRudolph\nStuart\nWendell\nDarryl\nGilbert\nLeo\nLester\nMarc\nNicholas\nBradley\nCarlton\nEddie\nGeoffrey\nGordon\nJon\nLeslie\nWallace\nWilbert\nClyde\nFranklin\nJimmy\nJoel\nKarl\nLynn\nMarshall\nWesley\nAllan\nByron\nEverett\nAlexander\nCarlos\nCecil\nChester\nDerrick\nGuy\nJan\nLonnie\nNeal\nPreston\nRobin\nRoderick\nSidney\nBobby\nClark\nConrad\nDarnell\nGene\nJeffery\nJoe\nJuan\nJulian\nLaurence\nMicheal\nNathan\nRandall\nRay\nSpencer\nSterling\nTerrence\nTony\nAdrian\nDarrell\nElliott\nGarry\nGerard\nHorace\nHugh\nKirk\nMitchell\nNelson\nRandy\nRoosevelt\nTommy\nWilbur\nAlton\nBennie\nBilly\nBrent\nChris\nClaude\nClayton\nDan\nDana\nDuane\nEllis\nFrederic\nFredrick\nGlen\nIra\nOscar\nPerry\nRoss\nThaddeus\nWade\nAlonzo\nArchie\nBradford\nBryan\nCharlie\nClinton\nDerek\nElbert\nElmer\nIrvin\nJim\nJohnnie\nLamont\nLinwood\nMalcolm\nRicky\nSean\nSheldon\nTodd\nVance\nAlphonso\nAntonio\nBill\nChristian\nCleveland\nDenis\nDonnell\nEvan\nFloyd\nFrankie\nHomer\nHubert\nIrving\nIsaiah\nJackie\nKent\nKermit\nKurt\nLionel\nLuis\nMarcus\nMike\nMorgan\nOtis\nPercy\nRoscoe\nSalvatore\nSanford\nTerence\nTom\nVaughn\nWillard\nRobert\nJohn\nJames\nMichael\nWilliam\nDavid\nThomas\nRichard\nCharles\nJoseph\nStephen\nRonald\nGary\nDonald\nPaul\nGeorge\nGregory\nKenneth\nEdward\nSteven\nMark\nLarry\nDaniel\nDennis\nAnthony\nLawrence\nBruce\nChristopher\nTimothy\nWayne\nAlan\nPeter\nJeffrey\nPatrick\nRaymond\nDouglas\nRoger\nWalter\nAndrew\nCarl\nReginald\nGerald\nKevin\nFrank\nBrian\nArthur\nEugene\nStanley\nFrederick\nHenry\nEric\nTyrone\nPhilip\nRalph\nBarry\nHoward\nBernard\nFrancis\nHarold\nErnest\nHarry\nJerome\nSamuel\nWarren\nAlbert\nLeonard\nPhillip\nLouis\nJerry\nDale\nScott\nEarl\nVincent\nGlenn\nTheodore\nCraig\nWillie\nAlvin\nClarence\nJonathan\nMartin\nMelvin\nRodney\nAlfred\nAllen\nHerbert\nRoy\nCalvin\nKeith\nNorman\nLeon\nRussell\nJack\nLee\nMaurice\nNathaniel\nDwight\nRicardo\nVernon\nAlexander\nFred\nLeroy\nTerry\nRoland\nAndre\nBenjamin\nCurtis\nCarlton\nJay\nJesse\nLewis\nClifford\nEdwin\nGordon\nFranklin\nLloyd\nMarc\nNicholas\nVictor\nDon\nGilbert\nMicheal\nRandall\nRonnie\nJoel\nRay\nMarvin\nNathan\nAllan\nFloyd\nRudolph\nJohnny\nJon\nLester\nMatthew\nMilton\nClifton\nClyde\nDarrell\nHugh\nKarl\nLeslie\nStuart\nSylvester\nWallace\nDean\nPerry\nSteve\nAaron\nByron\nEddie\nGarry\nGeoffrey\nJoe\nRandolph\nSidney\nAlonzo\nChester\nClaude\nEdmund\nKim\nLaurence\nMitchell\nMorris\nClinton\nDarryl\nHarvey\nHorace\nJeffery\nLamont\nMalcolm\nOtis\nWillard\nAlphonso\nBobby\nEdgar\nGlen\nGuy\nIra\nIrving\nJimmy\nLonnie\nLorenzo\nMarshall\nRobin\nRoss\nTerrance\nTodd\nTony\nWesley\nCarroll\nDan\nDanny\nDarnell\nDaryl\nHerman\nJulius\nLinwood\nLynn\nNeal\nOliver\nRoderick\nRoosevelt\nWendell\nWilbert\nWilbur\nArchie\nBilly\nCarlos\nChris\nClayton\nDerek\nElliot\nFredrick\nIrvin\nIsaac\nLeo\nLionel\nLuther\nMarcus\nPercy\nRoscoe\nSam\nSheldon\nStewart\nTerrence\nThaddeus\nTommy\nAdrian\nArnold\nBill\nBryan\nCornell\nEllis\nFreddie\nGarland\nHubert\nKerry\nKurt\nMike\nNeil\nNorris\nSpencer\nTom\nWinston\nZachary\nAdam\nBradley\nCecil\nCharlie\nConrad\nDana\nDerrick\nDuane\nEmory\nFrancisco\nGene\nGerard\nGirard\nGreg\nJackie\nJan\nJeff\nJeremiah\nKent\nKermit\nMarion\nMyron\nNelson\nOscar\nOwen\nPreston\nRandy\nRicky\nSterling\nTed\nUlysses\nWillis\nJohn\nJames\nMichael\nRobert\nWilliam\nDavid\nRichard\nThomas\nCharles\nJoseph\nStephen\nRonald\nGary\nSteven\nPaul\nGregory\nDonald\nGeorge\nLarry\nMark\nEdward\nKenneth\nDaniel\nAnthony\nLawrence\nJeffrey\nDennis\nBruce\nKevin\nPatrick\nTimothy\nChristopher\nDouglas\nEric\nWayne\nPeter\nFrank\nRaymond\nAlan\nArthur\nGerald\nFrederick\nRoger\nReginald\nJerome\nWalter\nCarl\nAndrew\nStanley\nGlenn\nHoward\nBernard\nFrancis\nHenry\nPhilip\nRalph\nTyrone\nMelvin\nSamuel\nVincent\nHarry\nAlbert\nBrian\nScott\nEugene\nAlvin\nHarold\nCraig\nJonathan\nMartin\nNorman\nClarence\nPhillip\nBarry\nMatthew\nRussell\nEarl\nWillie\nErnest\nLouis\nTheodore\nWarren\nKeith\nLeonard\nAlfred\nCalvin\nLeroy\nMaurice\nNathaniel\nHerbert\nVictor\nBenjamin\nJerry\nRoland\nTerry\nLeon\nNicholas\nJay\nJesse\nRicardo\nRodney\nVernon\nAllen\nJack\nAndre\nCurtis\nDon\nFred\nRoy\nDarryl\nGordon\nAlexander\nDwight\nJon\nDarrell\nMarc\nMarvin\nJohnny\nLloyd\nRicky\nCornelius\nRandolph\nAaron\nClifford\nDale\nGilbert\nJeffery\nRonnie\nArnold\nDanny\nCarlton\nClifton\nEdwin\nGeoffrey\nLeslie\nMicheal\nMilton\nMitchell\nRandall\nWendell\nDean\nKarl\nLewis\nRandy\nSteve\nClyde\nGlen\nLee\nNeil\nAlphonso\nCecil\nFranklin\nHarvey\nHerman\nHugh\nJoe\nNeal\nSylvester\nTony\nAdrian\nClaude\nDana\nDerrick\nGerard\nGuy\nJoel\nLeo\nNathan\nPreston\nStuart\nByron\nLester\nMalcolm\nSherman\nAllan\nAntonio\nBobby\nClayton\nConrad\nEddie\nFredrick\nKent\nLaurence\nRay\nWesley\nAlton\nCarroll\nCornell\nDarnell\nIrving\nKim\nMarshall\nOliver\nRobin\nRoderick\nTerrence\nTommy\nWilbur\nBradley\nChester\nChris\nEdmund\nElliott\nGene\nIsaac\nJohnnie\nKerry\nMario\nNelson\nPerry\nRoosevelt\nWilbert\nBilly\nCarlos\nCedric\nDan\nDuane\nDuncan\nEdgar\nEverett\nFloyd\nGarry\nGreg\nHorace\nJimmy\nJulian\nKirk\nLonnie\nLorenzo\nLynn\nMarcus\nRick\nSheldon\nSterling\nVance\nAlex\nAlonzo\nAngelo\nBryan\nCharlie\nEllis\nElwood\nEmmett\nGregg\nJan\nJeff\nLuther\nMike\nMonte\nOscar\nRoss\nRudolph\nSpencer\nStewart\nTed\nTerence\nTerrance\nTom\nWillard\nArchie\nAubrey\nBradford\nChristophe\nClark\nCleveland\nClinton\nDaryl\nDexter\nDonnell\nElijah\nEmanuel\nFreddie\nIra\nJean\nJulius\nKurt\nMarcellus\nMorris\nMyron\nOrlando\nPercy\nQuentin\nRex\nRickey\nStephan\nTodd\nVan\nVaughn\nWade\nMichael\nJohn\nJames\nRobert\nWilliam\nDavid\nThomas\nRichard\nCharles\nGary\nSteven\nJoseph\nStephen\nRonald\nMark\nDonald\nGregory\nGeorge\nPaul\nEdward\nAnthony\nKenneth\nLarry\nDaniel\nLawrence\nJeffrey\nKevin\nDennis\nTimothy\nRaymond\nPatrick\nPeter\nDouglas\nBruce\nWayne\nChristopher\nAndrew\nStanley\nTyrone\nEric\nAlan\nBrian\nFrank\nReginald\nWalter\nArthur\nCarl\nRalph\nScott\nKeith\nBernard\nRicardo\nEugene\nRoger\nCraig\nFrederick\nPhilip\nSamuel\nGerald\nGlenn\nHenry\nVincent\nFrancis\nJerome\nJerry\nLeonard\nMelvin\nEarl\nHarold\nHarry\nBarry\nRussell\nAllen\nPhillip\nHoward\nMatthew\nMaurice\nAlbert\nWarren\nLouis\nMartin\nRandolph\nBenjamin\nJonathan\nRodney\nTheodore\nAlvin\nVictor\nWillie\nAndre\nCalvin\nClarence\nHerbert\nNathaniel\nTerry\nDwight\nErnest\nRandy\nRicky\nDarrell\nJon\nLeroy\nNorman\nMarvin\nMicheal\nRonnie\nRoy\nClifford\nFranklin\nJay\nAlfred\nBradley\nCurtis\nDale\nStuart\nGordon\nJack\nMarc\nNeil\nCarlton\nJohnny\nKarl\nLeon\nDon\nNicholas\nEdwin\nGuy\nJoel\nLee\nRandall\nRickey\nVernon\nAllan\nDarryl\nLester\nSteve\nClifton\nGarry\nJeffery\nArnold\nDean\nFloyd\nFred\nMilton\nRoland\nAaron\nBobby\nEddie\nGeoffrey\nHerman\nJesse\nLloyd\nRoderick\nWesley\nDanny\nGene\nHarvey\nHugh\nLewis\nTony\nAlexander\nClyde\nKirk\nRay\nWallace\nAntonio\nDana\nDonnell\nDuane\nGlen\nMike\nMitchell\nRudolph\nTerrence\nClaude\nCornell\nDerek\nJimmy\nKurt\nLamont\nLeslie\nPreston\nRobin\nShelton\nSherman\nSylvester\nTed\nAlton\nCarlos\nEdgar\nGilbert\nHorace\nJulius\nKim\nLorenzo\nMarcus\nNathan\nNeal\nNelson\nOliver\nPerry\nSterling\nWinston\nAdrian\nAlonzo\nBilly\nChris\nClayton\nClinton\nCornelius\nEverett\nGrant\nJohnnie\nJuan\nKerry\nLance\nMarion\nMarshall\nMyron\nTerence\nWendell\nZachary\nAlphonso\nAngelo\nByron\nChester\nDarnell\nDexter\nEarnest\nFredrick\nHal\nIra\nJoe\nLaurence\nLeo\nLonnie\nMorris\nRoss\nAlex\nAlfonso\nBennett\nCarroll\nCedric\nClark\nFreddie\nGerard\nIsaac\nJoshua\nJulian\nLinwood\nMiles\nOscar\nRufus\nSean\nSheldon\nSidney\nTommy\nVan\nWilbert\nWilbur\nWiley\nWillard\nAustin\nBrad\nBradford\nConrad\nDaryl\nDerrick\nDewey\nEdmund\nElliott\nElmer\nGarland\nGregg\nIrving\nJan\nJose\nKelvin\nKent\nOtis\nPatricia\nRaphael\nWilfred\nWillis\nWilson\nMichael\nJames\nJohn\nRobert\nWilliam\nDavid\nRichard\nThomas\nCharles\nJoseph\nStephen\nMark\nGary\nSteven\nRonald\nGregory\nPaul\nDonald\nGeorge\nKenneth\nEdward\nKevin\nAnthony\nJeffrey\nLarry\nDaniel\nDouglas\nLawrence\nTimothy\nWayne\nDennis\nBruce\nChristopher\nEric\nPeter\nRaymond\nTyrone\nPatrick\nBrian\nFrank\nKeith\nAlan\nGerald\nStanley\nWalter\nReginald\nSamuel\nCarl\nPhilip\nArthur\nAndrew\nHenry\nRoger\nHarold\nFrederick\nCraig\nRodney\nJerry\nMartin\nCalvin\nGlenn\nRalph\nScott\nEugene\nBarry\nMelvin\nBernard\nErnest\nRussell\nClarence\nMaurice\nVincent\nJerome\nWillie\nCurtis\nAlbert\nHarry\nPhillip\nTerry\nFrancis\nRicardo\nHoward\nNorman\nAllen\nJack\nLeonard\nMarc\nLeroy\nRonnie\nTheodore\nCarlton\nJonathan\nWarren\nAndre\nDarrell\nRoy\nSteve\nEarl\nVictor\nAlvin\nDarryl\nRandy\nMatthew\nVernon\nFred\nLouis\nClifton\nHerbert\nJesse\nJohnny\nLeon\nRicky\nRoland\nFloyd\nGuy\nLloyd\nMarvin\nMicheal\nBenjamin\nJay\nMilton\nTony\nClifford\nDanny\nDana\nGlen\nJon\nLee\nWendell\nDuane\nEdwin\nJeffery\nWesley\nByron\nGordon\nJoel\nKarl\nLeslie\nRay\nStuart\nAlfred\nClyde\nDerrick\nFranklin\nAllan\nArnold\nCarlos\nDale\nDwight\nGarry\nHarvey\nHugh\nJimmy\nKelvin\nKim\nLewis\nMarshall\nRandolph\nRickey\nSylvester\nBobby\nDan\nDean\nFreddie\nKirk\nLaurence\nLuther\nMalcolm\nNathaniel\nNeal\nAlonzo\nDon\nGeoffrey\nOliver\nCarroll\nNathan\nNicholas\nRandall\nTerrence\nAaron\nAlexander\nBradley\nChester\nDarnell\nDonnell\nJohnnie\nKerry\nKurt\nOtis\nBryan\nCedric\nClaude\nCornell\nEddie\nGerard\nGilbert\nLeo\nLonnie\nMitchell\nNeil\nOscar\nPreston\nRobin\nRoscoe\nTerence\nAdrian\nAlphonso\nAntonio\nBilly\nChris\nChristian\nConrad\nCornelius\nHorace\nKent\nLamont\nLionel\nMarcus\nPerry\nWoodrow\nAlton\nAubrey\nClark\nClay\nClinton\nJoe\nMike\nMurray\nNelson\nRudolph\nSean\nSheldon\nSidney\nSterling\nTerrance\nTommy\nVan\nWade\nAngelo\nBertram\nBrad\nBrett\nClayton\nCleveland\nDaryl\nElmer\nEverett\nForrest\nGrady\nGreg\nKyle\nLynn\nMarcellus\nMario\nMorris\nRene\nStephan\nStewart\nThaddeus\nWallace\nWillard\nArchie\nArtie\nBlair\nBoyd\nBrent\nCarey\nCarter\nDemetrius\nDenis\nDerek\nDesmond\nDonnie\nEdgar\nEllsworth\nGarland\nGene\nHerman\nIrving\nJan\nJason\nJose\nJoshua\nJulian\nJulius\nLance\nLester\nLyle\nMyron\nNorris\nPierre\nSandy\nStevie\nWardell\nWilbur\nMichael\nJohn\nJames\nRobert\nWilliam\nDavid\nThomas\nRichard\nCharles\nJoseph\nMark\nRonald\nStephen\nPaul\nGregory\nSteven\nDonald\nGary\nKevin\nAnthony\nDaniel\nKenneth\nEdward\nJeffrey\nTimothy\nGeorge\nLarry\nLawrence\nBrian\nDouglas\nPeter\nEric\nChristopher\nRaymond\nWayne\nBruce\nReginald\nKeith\nDennis\nAlan\nAndrew\nFrank\nPatrick\nStanley\nCarl\nHoward\nPhilip\nTyrone\nGerald\nScott\nHarold\nWalter\nEugene\nArthur\nRoger\nRalph\nJonathan\nMartin\nJerry\nRodney\nCraig\nTerry\nFrederick\nHenry\nPhillip\nAllen\nBernard\nHarry\nMelvin\nSamuel\nAlbert\nJerome\nMatthew\nCalvin\nRussell\nVincent\nFrancis\nClarence\nCurtis\nRoy\nEarl\nLouis\nAlfred\nBarry\nWarren\nWillie\nGlenn\nJeffery\nMaurice\nErnest\nLeroy\nRicky\nNathaniel\nVictor\nAndre\nNorman\nRonnie\nAlvin\nMarvin\nTheodore\nCarlton\nJack\nRicardo\nVernon\nLewis\nJay\nRandy\nSteve\nBenjamin\nLeon\nClyde\nDale\nDean\nKarl\nWesley\nDarrell\nFred\nJohnny\nJon\nDarryl\nMicheal\nBradley\nAllan\nGeoffrey\nLeonard\nMilton\nRandolph\nRay\nGuy\nLee\nNicholas\nRoland\nTony\nClifton\nDerek\nDerrick\nDwight\nEdwin\nGordon\nHerbert\nKirk\nMarc\nMarlon\nMitchell\nRandall\nRickey\nStuart\nAntonio\nBobby\nBryan\nJohnnie\nLeslie\nNeil\nTerence\nFranklin\nJoel\nWendell\nChester\nClifford\nEddie\nGlen\nLloyd\nAaron\nAlexander\nDaryl\nDon\nGarry\nMalcolm\nRobin\nSean\nEdgar\nKim\nMike\nNeal\nTerrence\nAubrey\nByron\nFloyd\nGilbert\nHarvey\nJesse\nJimmy\nJoe\nLester\nAlonzo\nCarlos\nCarroll\nClaude\nDanny\nHorace\nIvan\nKelvin\nLynn\nMyron\nArnold\nCedric\nDarnell\nFreddie\nHugh\nKerry\nLeo\nMarshall\nMorris\nSherman\nSylvester\nAdrian\nBennie\nBrent\nCecil\nChris\nDana\nDuane\nHerman\nIra\nIsaac\nJulius\nLaurence\nOtis\nZachary\nCornell\nDonnie\nJeff\nJose\nNathan\nRick\nRoss\nTommy\nVan\nWallace\nWillard\nBilly\nChristian\nCleveland\nCornelius\nDwayne\nEmanuel\nFredrick\nGarland\nGene\nJerald\nLonnie\nRex\nRoderick\nSidney\nTed\nWade\nWilbert\nBradford\nCarey\nClayton\nElliott\nEllis\nGerard\nJoshua\nKent\nLinwood\nLionel\nLorenzo\nLuther\nMarcus\nPreston\nRoosevelt\nSterling\nTodd\nWilbur\nAlphonso\nAlton\nAngelo\nBen\nCharlie\nClark\nClinton\nColin\nDexter\nDonnell\nEdmund\nEverett\nFritz\nGreg\nJackie\nJan\nJefferson\nJulian\nKurt\nMarcellus\nMickey\nMiles\nOscar\nPerry\nRickie\nRudolph\nShane\nShawn\nSpencer\nMichael\nJohn\nJames\nRobert\nWilliam\nDavid\nRichard\nThomas\nCharles\nJoseph\nMark\nGregory\nPaul\nRonald\nStephen\nSteven\nKevin\nAnthony\nKenneth\nDonald\nGeorge\nGary\nDaniel\nBrian\nEdward\nTimothy\nLarry\nJeffrey\nChristopher\nKeith\nLawrence\nWayne\nBruce\nDouglas\nPatrick\nEric\nPeter\nRaymond\nTyrone\nDennis\nAndrew\nFrank\nReginald\nStanley\nGlenn\nWalter\nAlan\nCarl\nCraig\nErnest\nMelvin\nRussell\nArthur\nBernard\nRoger\nGerald\nRodney\nScott\nBarry\nPhilip\nJonathan\nRalph\nSamuel\nCurtis\nFrederick\nMatthew\nWillie\nDarrell\nEarl\nJerome\nPhillip\nVincent\nLeonard\nAlbert\nHarold\nJerry\nFrancis\nClarence\nMartin\nRonnie\nWarren\nEugene\nHoward\nTheodore\nTony\nAndre\nCalvin\nNathaniel\nRicardo\nSteve\nTerry\nVictor\nAlvin\nHarry\nMarc\nJeffery\nMaurice\nRoy\nJay\nHenry\nVernon\nHerbert\nNorman\nRandy\nRicky\nBenjamin\nJack\nLeroy\nLouis\nAlfred\nAllen\nKarl\nEdwin\nLee\nLeon\nGarry\nJohnny\nLewis\nEddie\nGeoffrey\nLloyd\nMicheal\nRandall\nAaron\nCarlton\nDale\nDarryl\nDwight\nFranklin\nMarvin\nAntonio\nStuart\nWesley\nBobby\nClifford\nDerrick\nFred\nTerrence\nDon\nGlen\nDanny\nHarvey\nHerman\nJesse\nJulius\nKirk\nMitchell\nNeil\nNicholas\nRobin\nAlexander\nClifton\nDerek\nLeslie\nRoland\nBrad\nBradley\nBryan\nDean\nFloyd\nJoe\nJoel\nJon\nMilton\nClaude\nDarnell\nGuy\nHugh\nKent\nMorris\nAllan\nAngelo\nChristian\nGordon\nIvan\nKelvin\nKurt\nMarcus\nNathan\nPreston\nSean\nWendell\nAlton\nClayton\nDana\nGarland\nGilbert\nKim\nLionel\nPerry\nRandolph\nRay\nRoderick\nSylvester\nTodd\nTommy\nCarlos\nCedric\nChris\nClinton\nDuane\nDwayne\nGerard\nIrving\nJimmy\nLonnie\nLowell\nMike\nWade\nBill\nDan\nDonnell\nEverett\nJose\nKerry\nLance\nLaurence\nLester\nRoss\nWilbert\nWilbur\nAdrian\nAlphonso\nAubrey\nByron\nCarroll\nClyde\nEdmund\nFreddie\nIsaac\nMarlon\nMyron\nOrlando\nQuentin\nRodger\nRudolph\nSpencer\nTed\nTerence\nZachary\nArnold\nBilly\nChester\nColin\nConrad\nCornell\nDaryl\nDenis\nDonnie\nEdgar\nElliott\nElwood\nGene\nGrant\nGreg\nHarrison\nHubert\nJan\nJerald\nJessie\nJim\nKermit\nLeo\nLorenzo\nMalcolm\nMarshall\nNeal\nOtis\nRickey\nRoscoe\nShawn\nStephan\nStevie\nVance\nAvery\nCameron\nCharlie\nClark\nCleveland\nDexter\nEmory\nFredrick\nGregg\nHal\nIra\nJason\nJuan\nJulian\nLevi\nLuis\nManuel\nMario\nMoses\nOscar\nRex\nRoberto\nRufus\nSheldon\nSidney\nStewart\nTerrance\nTracy\nWallace\nWyatt\nMichael\nJames\nJohn\nRobert\nDavid\nWilliam\nThomas\nRichard\nMark\nCharles\nJoseph\nAnthony\nKevin\nPaul\nGregory\nSteven\nDonald\nStephen\nKenneth\nRonald\nGary\nTimothy\nGeorge\nJeffrey\nDaniel\nEdward\nLarry\nBrian\nChristopher\nKeith\nLawrence\nDouglas\nPeter\nBruce\nWayne\nEric\nRaymond\nReginald\nPatrick\nTyrone\nDennis\nAndrew\nFrank\nScott\nWalter\nCarl\nMelvin\nHarry\nStanley\nVincent\nRalph\nGerald\nPhillip\nPhilip\nRussell\nMartin\nHenry\nCurtis\nJerome\nMaurice\nTerry\nAndre\nFrederick\nGlenn\nJerry\nJonathan\nSamuel\nArthur\nJeffery\nMatthew\nAlan\nEugene\nRicky\nRodney\nBenjamin\nBernard\nFrancis\nHarold\nRoger\nAlbert\nLeonard\nSteve\nCraig\nWarren\nDarrell\nDarryl\nCalvin\nRonnie\nWillie\nBarry\nTony\nHoward\nTheodore\nErnest\nLeroy\nVictor\nClarence\nDale\nRandy\nEarl\nAlfred\nJoel\nMicheal\nNathaniel\nNorman\nRicardo\nAlvin\nCarlton\nClifford\nKarl\nKirk\nDon\nEdwin\nAllen\nMitchell\nClifton\nDerek\nDerrick\nJack\nLouis\nMike\nMilton\nStuart\nFranklin\nJay\nRoy\nTerrence\nAntonio\nDean\nGordon\nLeon\nVernon\nBryan\nDanny\nJesse\nJon\nKelvin\nLeslie\nMarc\nMarvin\nRoland\nChris\nFred\nHerbert\nPerry\nClyde\nGuy\nLee\nLloyd\nSean\nLaurence\nAlexander\nBradley\nByron\nClinton\nDana\nGene\nGeoffrey\nGlen\nJohnny\nRay\nWesley\nClaude\nDwight\nRandolph\nRobin\nEddie\nEdmund\nEverett\nFreddie\nHarvey\nLewis\nNathan\nRickey\nRudolph\nAlphonso\nBobby\nDaryl\nDuane\nFloyd\nJeremiah\nJoe\nLeo\nSylvester\nTerence\nAaron\nArnold\nCarroll\nCornelius\nDarnell\nGarry\nIvan\nJim\nJimmy\nMarcus\nMarshall\nNeil\nNicholas\nRandall\nRick\nCecil\nChester\nDwayne\nGilbert\nGrant\nHugh\nJohnnie\nJulius\nKyle\nSam\nShawn\nTodd\nTom\nTommy\nWendell\nAndy\nBill\nCedric\nCornell\nDexter\nDonnie\nFredrick\nJeff\nJose\nLester\nMario\nNeal\nOliver\nOscar\nOtis\nRoderick\nRoscoe\nTim\nZachary\nBilly\nCarlos\nClayton\nDan\nDane\nDenis\nGarland\nGerard\nHerman\nKent\nKerry\nLonnie\nLorenzo\nLynn\nMalcolm\nMyron\nNelson\nPreston\nTerrance\nAdrian\nAlex\nAllan\nAlonzo\nAngelo\nDuncan\nEdgar\nEllsworth\nHorace\nJefferson\nKim\nKurt\nLance\nMorris\nOwen\nRickie\nSherman\nVan\nWilbur\nBrad\nCleveland\nConrad\nGreg\nHomer\nHubert\nIra\nJoey\nJordan\nJoshua\nJulian\nKelly\nLinwood\nLowell\nLuther\nSheldon\nStewart\nTracy\nVance\nVirgil\nMichael\nJohn\nJames\nDavid\nRobert\nWilliam\nRichard\nMark\nThomas\nCharles\nJoseph\nAnthony\nKevin\nGregory\nPaul\nRonald\nKenneth\nSteven\nTimothy\nStephen\nDonald\nDaniel\nJeffrey\nChristopher\nGary\nGeorge\nLarry\nEdward\nBrian\nPeter\nEric\nKeith\nDennis\nPatrick\nWayne\nDouglas\nLawrence\nBruce\nRaymond\nAndrew\nTyrone\nScott\nGerald\nMatthew\nPhilip\nFrank\nAndre\nReginald\nWalter\nRodney\nCarl\nRicky\nRussell\nMelvin\nTerry\nSteve\nStanley\nBernard\nArthur\nHarold\nJonathan\nAlan\nEugene\nJerry\nHarry\nMike\nPhillip\nSamuel\nCraig\nJeffery\nBarry\nWarren\nHoward\nMartin\nWillie\nJay\nJerome\nHenry\nVincent\nLouis\nCurtis\nMaurice\nDale\nFrancis\nLeonard\nMicheal\nRalph\nRoger\nDarrell\nFrederick\nRonnie\nTony\nAllen\nRoy\nChris\nDerrick\nClarence\nDanny\nGlenn\nTheodore\nVictor\nCalvin\nHerbert\nJeff\nEarl\nErnest\nMarvin\nRicardo\nNorman\nAlbert\nAntonio\nBobby\nDwayne\nAlvin\nDarryl\nDuane\nBenjamin\nBryan\nJack\nVernon\nDaryl\nFred\nLeroy\nRickey\nMarc\nRay\nAlfred\nBill\nJon\nKarl\nRandy\nDarnell\nDerek\nDwight\nNicholas\nRandall\nAaron\nDean\nGeoffrey\nJohnny\nLee\nLeon\nMilton\nNathaniel\nCarlos\nCarlton\nDon\nEdwin\nFranklin\nJim\nMitchell\nJoe\nLloyd\nStuart\nTom\nBilly\nClifton\nGarry\nJuan\nKirk\nLeslie\nLewis\nNathan\nNeil\nBradley\nTim\nAllan\nClifford\nClyde\nGlen\nHugh\nJoel\nKurt\nSylvester\nAlexander\nByron\nCornelius\nGuy\nJesse\nKelvin\nPerry\nRandolph\nRoland\nTerrence\nEddie\nGene\nGordon\nHarvey\nMarshall\nSean\nWendell\nAlonzo\nBrett\nClinton\nDan\nMarcus\nWallace\nDewayne\nDonnell\nGerard\nIvan\nLonnie\nOliver\nShawn\nTerence\nTommy\nWesley\nAlton\nAngelo\nBrent\nBret\nHerman\nJulius\nLance\nLeo\nMorris\nRick\nRudolph\nSherman\nTerrance\nAdrian\nBob\nCornell\nDave\nFloyd\nGreg\nJimmie\nLaurence\nLionel\nManuel\nPreston\nRickie\nRoderick\nCarroll\nCecil\nClayton\nDana\nEdgar\nEllis\nHorace\nHubert\nJimmy\nJohnnie\nJose\nKen\nLamont\nMyron\nNeal\nOtis\nRobin\nRoss\nSheldon\nWade\nZachary\nAdam\nCary\nChester\nDarren\nElbert\nEverett\nFrankie\nGilbert\nKent\nKerry\nKim\nLinwood\nMalcolm\nMario\nNelson\nOrlando\nOscar\nRon\nTodd\nTracy\nAlex\nAlfonso\nAntoine\nArnold\nBarton\nBrad\nCharlie\nChristian\nClay\nDonnie\nEdmund\nElliott\nErik\nForrest\nHarrison\nIsaac\nJamie\nJason\nJulian\nKermit\nLynn\nNorris\nRene\nSidney\nSterling\nStewart\nTroy\nVance\nWilbur\nMichael\nJohn\nJames\nDavid\nRobert\nWilliam\nMark\nThomas\nRichard\nCharles\nJoseph\nAnthony\nKevin\nKenneth\nSteven\nPaul\nTimothy\nGregory\nRonald\nDonald\nStephen\nChristopher\nGeorge\nEdward\nJeffrey\nBrian\nGary\nDaniel\nEric\nLarry\nKeith\nPatrick\nBruce\nLawrence\nReginald\nPeter\nDouglas\nRaymond\nTyrone\nDennis\nScott\nAndrew\nFrank\nPhilip\nCraig\nMatthew\nWayne\nAlan\nCarl\nAndre\nWalter\nRodney\nSteve\nMaurice\nMike\nTerry\nBarry\nGlenn\nRussell\nVincent\nDarryl\nBernard\nDarrell\nEugene\nRicky\nWillie\nHarold\nSamuel\nCurtis\nJerome\nMartin\nGerald\nPhillip\nLouis\nAlbert\nAllen\nArthur\nMelvin\nRalph\nCalvin\nDale\nFrederick\nStanley\nVictor\nHoward\nJonathan\nJerry\nErnest\nHenry\nJeffery\nHarry\nJay\nBenjamin\nLeonard\nWarren\nRicardo\nRonnie\nAlfred\nChris\nEarl\nRoger\nBobby\nDerrick\nDuane\nMarvin\nNorman\nFrancis\nTheodore\nMicheal\nJeff\nRoy\nJack\nKelvin\nTony\nClarence\nDwayne\nGordon\nJimmy\nAntonio\nMarc\nNathaniel\nRandall\nRandy\nAaron\nCarlton\nKarl\nSean\nTim\nDerek\nFred\nKirk\nMitchell\nAlvin\nEverett\nLeon\nShawn\nTodd\nAllan\nBill\nEddie\nJesse\nJoe\nJohnny\nLeroy\nNeal\nRoland\nTom\nVernon\nFranklin\nGreg\nHerbert\nJim\nRay\nWendell\nBryan\nJon\nLee\nStuart\nClifford\nDanny\nDaryl\nGeoffrey\nBradley\nDana\nFloyd\nNicholas\nAlexander\nBob\nEdwin\nGuy\nJoel\nLewis\nMilton\nRickey\nClyde\nGlen\nJose\nKurt\nLinwood\nLloyd\nRandolph\nClifton\nDwight\nHerman\nJulius\nLeslie\nLorenzo\nNathan\nTerrence\nByron\nDan\nDarren\nJuan\nKenny\nMarshall\nNeil\nPerry\nRoderick\nWesley\nAlonzo\nArnold\nBilly\nCarlos\nCedric\nDean\nJohnnie\nOtis\nAngelo\nBen\nCarroll\nDarnell\nDon\nDonnell\nGene\nLaurence\nLester\nPreston\nTerence\nTracy\nAndy\nBrett\nChristian\nEdgar\nGarry\nHarvey\nIra\nKent\nLeo\nMarcus\nQuintin\nReggie\nRoss\nSam\nAdrian\nAlphonso\nGilbert\nJackie\nKen\nLynn\nMarlon\nOrlando\nPat\nPierre\nRick\nRory\nRudolph\nSherman\nSidney\nSterling\nTerrance\nTommy\nVirgil\nZachary\nAntoine\nBart\nBrad\nBradford\nBryant\nCharlie\nChester\nCornell\nDamon\nDominic\nDoug\nEdmund\nEmanuel\nGerard\nHubert\nIvan\nKerry\nKyle\nMalcolm\nMarion\nMorris\nMyron\nRickie\nRobin\nWallace\nWilbert\nWilbur\nAlex\nAmos\nAndra\nArchie\nBarron\nBennie\nBrent\nCary\nCecil\nChuck\nClark\nClinton\nConrad\nCornelius\nDave\nDexter\nDino\nDuncan\nGalen\nHorace\nIsaac\nJerald\nJoshua\nJulian\nLemuel\nLonnie\nLuther\nMarty\nMatt\nMiguel\nNoel\nNorris\nRandal\nRenaldo\nRex\nRoosevelt\nSeth\nStephan\nSylvester\nVan\nWillard\nMichael\nJohn\nDavid\nJames\nRobert\nWilliam\nMark\nThomas\nRichard\nKevin\nAnthony\nCharles\nJoseph\nKenneth\nPaul\nTimothy\nSteven\nChristopher\nGregory\nJeffrey\nStephen\nRonald\nDonald\nDaniel\nGeorge\nBrian\nEric\nGary\nEdward\nAndrew\nKeith\nPeter\nDarryl\nPatrick\nDouglas\nLarry\nBruce\nScott\nRaymond\nWayne\nDennis\nFrank\nCraig\nLawrence\nMatthew\nTyrone\nAlan\nCarl\nWalter\nAndre\nReginald\nVincent\nRoger\nSamuel\nTerry\nMike\nRussell\nRodney\nArthur\nAlbert\nGerald\nWillie\nHenry\nJonathan\nRicky\nTheodore\nPhilip\nSteve\nFrancis\nTony\nCurtis\nVictor\nMartin\nHarry\nJerry\nDwayne\nGlenn\nPhillip\nRonnie\nChris\nAllen\nBernard\nRalph\nJohnny\nEugene\nHoward\nJeffery\nNorman\nErnest\nHarold\nJerome\nJon\nBarry\nCalvin\nFrederick\nJay\nDerrick\nGreg\nLouis\nMaurice\nSean\nEarl\nMelvin\nLeon\nLeonard\nStanley\nAntonio\nRandy\nDale\nDarrell\nMarc\nNathaniel\nBill\nAlvin\nBryan\nClarence\nFred\nRay\nRicardo\nAlfred\nCarlton\nFranklin\nHerbert\nKelvin\nLeroy\nMicheal\nBobby\nDarren\nNicholas\nRoy\nStuart\nWarren\nBradley\nDon\nDuane\nMarcus\nRandall\nAaron\nCarlos\nDarnell\nGeoffrey\nJack\nJeff\nNathan\nClifton\nJohnnie\nMitchell\nTom\nDanny\nDerek\nJoel\nLee\nBenjamin\nBilly\nDaryl\nJoe\nKarl\nRoland\nVernon\nLloyd\nMarvin\nTerrence\nDonnell\nGlen\nLewis\nTerence\nAlexander\nDean\nEddie\nGarry\nMilton\nRickey\nTracy\nTroy\nAngelo\nByron\nClifford\nEdwin\nHerman\nLeslie\nRoderick\nTim\nTodd\nWilbert\nAllan\nArnold\nBrett\nEverett\nFloyd\nGordon\nKim\nPerry\nWendell\nWesley\nAdam\nAlonzo\nChristian\nClinton\nClyde\nHugh\nJim\nJimmy\nKerry\nKirk\nRandolph\nShawn\nCary\nJesse\nJose\nKent\nLester\nPreston\nSidney\nSterling\nTed\nAdrian\nAlex\nAntoine\nClaude\nGene\nGilbert\nGuy\nKenny\nLeo\nLorenzo\nShelton\nVan\nAlphonso\nChuck\nDwight\nGerard\nIrving\nJulius\nKurt\nKyle\nMalcolm\nRick\nRufus\nStewart\nSylvester\nTommy\nWallace\nBob\nChester\nClayton\nDan\nDana\nGarland\nKelly\nLance\nLionel\nNick\nPierre\nQuintin\nRoberto\nTerrance\nAubrey\nBrent\nCarroll\nCecil\nCedric\nDave\nDonnie\nErik\nGregg\nHarvey\nHorace\nJimmie\nJuan\nJulian\nLaurence\nLonnie\nLuis\nMarshall\nMiles\nMyron\nNeal\nNelson\nOtis\nRobin\nRoss\nSherman\nAlfonso\nAndy\nAustin\nBennie\nBrad\nBradford\nBrandon\nBryant\nCornelius\nCornell\nEarnest\nEd\nEliot\nElliott\nFrankie\nFreddie\nFredrick\nGabriel\nHal\nIra\nIvan\nJamie\nJeffry\nJerald\nJoey\nJorge\nLamont\nLindsay\nLowell\nManuel\nMario\nMorris\nOscar\nPat\nPete\nRon\nRoosevelt\nRudy\nSam\nSeth\nSpencer\nWade\nZachary\nMichael\nJohn\nJames\nDavid\nRobert\nWilliam\nMark\nKevin\nCharles\nAnthony\nThomas\nJoseph\nRichard\nChristopher\nKenneth\nSteven\nPaul\nJeffrey\nGregory\nStephen\nTimothy\nRonald\nDaniel\nEdward\nBrian\nDonald\nGary\nGeorge\nKeith\nDouglas\nEric\nAndrew\nDarryl\nPatrick\nScott\nLarry\nPeter\nRaymond\nWayne\nBruce\nAndre\nTyrone\nCarl\nFrank\nLawrence\nMatthew\nVincent\nPhilip\nDennis\nAlan\nReginald\nJonathan\nDwayne\nWalter\nSteve\nMelvin\nJerome\nDerrick\nCraig\nCurtis\nMaurice\nMike\nPhillip\nRoger\nCalvin\nTerry\nGlenn\nFrancis\nJeffery\nSamuel\nChris\nRodney\nDarrell\nVictor\nRalph\nRussell\nTony\nBernard\nDale\nFrederick\nEugene\nMartin\nGerald\nJay\nJerry\nAlbert\nMarvin\nAllen\nHenry\nRicky\nWillie\nBarry\nClarence\nAntonio\nArthur\nDanny\nTheodore\nTroy\nLouis\nHarold\nHoward\nEarl\nJon\nKarl\nLeonard\nRonnie\nStanley\nAaron\nGreg\nHarry\nMicheal\nBryan\nCarlton\nDarren\nDean\nErnest\nFred\nKelvin\nLeroy\nNathaniel\nNorman\nRandy\nMarc\nTodd\nTracy\nBenjamin\nRicardo\nRoy\nAlfred\nDerek\nKirk\nRickey\nWarren\nAlvin\nEddie\nJeff\nSean\nStuart\nByron\nEdwin\nJim\nJoe\nNicholas\nDarnell\nDon\nGeoffrey\nLeon\nTom\nVernon\nFranklin\nRoderick\nWendell\nAdam\nClifford\nClifton\nJack\nJoel\nDonnell\nJohnny\nMarcus\nTim\nAdrian\nAlexander\nAlonzo\nBilly\nDaryl\nPerry\nTerrence\nBill\nCarlos\nDuane\nGordon\nGuy\nJimmy\nJuan\nLewis\nLloyd\nNathan\nNeil\nWesley\nBradley\nClayton\nDwight\nEverett\nHerman\nHugh\nJose\nRandall\nRandolph\nRay\nHerbert\nLester\nMilton\nRoss\nShawn\nTommy\nAntoine\nCedric\nDana\nKelly\nMitchell\nRoland\nStewart\nZachary\nAlphonso\nDan\nGilbert\nGregg\nJesse\nJimmie\nJulius\nKim\nLee\nLeslie\nArnold\nChristian\nGlen\nJoshua\nKerry\nLaurence\nLeo\nMario\nSidney\nAndy\nBen\nBrad\nCameron\nClark\nClinton\nClyde\nFreddie\nGarry\nKenny\nKent\nNeal\nNelson\nOwen\nThurman\nAlton\nAngelo\nBobby\nBradford\nBrett\nCarroll\nChuck\nClaude\nCornelius\nDexter\nDion\nHarvey\nIan\nIvan\nJustin\nKurt\nLamont\nMalcolm\nOliver\nPernell\nSherman\nWade\nAlex\nAllan\nBob\nCharlie\nChester\nDarius\nEdgar\nEdmund\nErich\nEvan\nFloyd\nJason\nJohnnie\nLance\nLorenzo\nLynn\nMarty\nOscar\nPreston\nRoosevelt\nRoscoe\nRufus\nSylvester\nTerence\nWallace\nWilbert\nWillard\nAustin\nCecil\nCleveland\nConrad\nCornell\nDoug\nElmer\nErik\nGarland\nGene\nGerard\nIra\nJacob\nJoey\nJulio\nLeander\nLionel\nLuther\nManuel\nMason\nMatt\nMorris\nMoses\nMyron\nOrlando\nPat\nPierre\nRenard\nReuben\nRick\nSeth\nSheldon\nStefan\nStephan\nTerrance\nTimmy\nTod\nVan\nVaughn\nWilson\nMichael\nJohn\nDavid\nJames\nRobert\nWilliam\nMark\nKevin\nThomas\nCharles\nAnthony\nJoseph\nRichard\nKenneth\nGregory\nJeffrey\nSteven\nChristopher\nPaul\nTimothy\nBrian\nRonald\nStephen\nEric\nDaniel\nDonald\nEdward\nGeorge\nGary\nKeith\nScott\nAndrew\nPatrick\nBruce\nAndre\nRaymond\nLawrence\nLarry\nVincent\nDarryl\nFrank\nPeter\nWayne\nDouglas\nReginald\nDennis\nMatthew\nJonathan\nCarl\nWalter\nGlenn\nAlan\nTyrone\nCraig\nTony\nRussell\nGerald\nMaurice\nJerome\nRodney\nJeffery\nSteve\nTerry\nMartin\nMike\nPhillip\nDerrick\nMarc\nBarry\nRoger\nEugene\nRicky\nVictor\nMelvin\nPhilip\nDwayne\nAntonio\nCalvin\nHarold\nTodd\nArthur\nSamuel\nTheodore\nTroy\nBernard\nCurtis\nFrederick\nKelvin\nAaron\nChris\nErnest\nRalph\nWillie\nBryan\nAlbert\nDerek\nHenry\nRicardo\nRonnie\nTracy\nEarl\nGreg\nHarry\nJack\nJerry\nVernon\nHoward\nJeff\nRandy\nStuart\nAllen\nCarlton\nClarence\nDarrell\nJay\nLeon\nLeonard\nMarvin\nFrancis\nJon\nMicheal\nNorman\nSean\nFranklin\nKarl\nShawn\nAlonzo\nKirk\nLouis\nNathaniel\nWarren\nDale\nDarnell\nNathan\nRoy\nStanley\nFred\nGlen\nJoe\nNicholas\nCarlos\nDanny\nHerbert\nLewis\nAdam\nDean\nKurt\nRandall\nClifton\nDwight\nEdwin\nJesse\nJohnny\nRoland\nAlvin\nIvan\nLee\nLeroy\nLloyd\nRoderick\nTerrence\nTom\nArnold\nBenjamin\nBilly\nBobby\nByron\nEddie\nHerman\nKyle\nWendell\nDana\nDarren\nNeil\nWade\nAdrian\nAlexander\nBrett\nRandolph\nRay\nSterling\nTim\nWesley\nBradley\nDaryl\nDonnell\nDuane\nGordon\nGuy\nHarvey\nJoel\nKelly\nTerence\nAlfred\nCarroll\nClifford\nClinton\nErik\nEverett\nFloyd\nGerard\nJose\nKen\nLuis\nMilton\nWallace\nAlex\nAngelo\nClayton\nClyde\nDon\nEdgar\nGilbert\nJimmy\nLamont\nLance\nMarcus\nMitchell\nMyron\nNelson\nRickey\nTed\nBill\nCharlie\nJohnnie\nLeo\nMario\nPerry\nSherman\nTommy\nBen\nColin\nCornell\nFreddie\nGeoffrey\nGregg\nHugh\nLaurence\nLester\nLuther\nMorris\nOrlando\nPierre\nRaynard\nRobin\nSidney\nZachary\nAntoine\nBryant\nCedric\nClaude\nDan\nEarnest\nElliott\nIan\nJim\nJimmie\nLeslie\nLinwood\nLonnie\nLorenzo\nMarlon\nRick\nVirgil\nWilbert\nAlphonso\nBob\nBrent\nCecil\nChester\nCornelius\nDonnie\nFredrick\nGarry\nGene\nGrant\nIrving\nJason\nJoey\nJuan\nJulius\nKendall\nKent\nKim\nLionel\nMarshall\nRamon\nRoosevelt\nSam\nScottie\nStephon\nSylvester\nWillis\nAllan\nBlaine\nBradford\nChristian\nDino\nDion\nDominic\nDonell\nDoug\nEdmund\nEmanuel\nIra\nJacob\nJamie\nJerald\nLeander\nMalcolm\nManuel\nMiguel\nNeal\nOtis\nOwen\nQuentin\nRafael\nReggie\nRudolph\nRufus\nStewart\nTerrance\nWillard\nJohn\nMichael\nJames\nDavid\nRobert\nWilliam\nMark\nKevin\nCharles\nRichard\nAnthony\nJoseph\nThomas\nChristopher\nPaul\nTimothy\nKenneth\nGregory\nSteven\nEric\nDaniel\nJeffrey\nRonald\nBrian\nStephen\nKeith\nEdward\nGeorge\nGary\nPatrick\nDonald\nScott\nAndrew\nPeter\nDarryl\nDouglas\nLawrence\nFrank\nAndre\nReginald\nWayne\nRaymond\nJonathan\nBruce\nTyrone\nMatthew\nVincent\nCarl\nCurtis\nLarry\nDerrick\nMaurice\nCraig\nDarrell\nDennis\nDwayne\nSamuel\nJeffery\nWalter\nRodney\nRussell\nBarry\nFrederick\nMartin\nTroy\nTony\nEugene\nGlenn\nJerry\nPhilip\nStanley\nAntonio\nAlan\nBryan\nHenry\nPhillip\nTodd\nLeonard\nSteve\nTerry\nAlbert\nAllen\nJerome\nMelvin\nNathaniel\nSean\nArthur\nGerald\nHoward\nMarvin\nClarence\nRicky\nCarlton\nFrancis\nMarc\nVictor\nErnest\nLouis\nMicheal\nHarold\nTracy\nHarry\nRoger\nBenjamin\nKarl\nLeroy\nWillie\nAdam\nCalvin\nCarlos\nEarl\nKelvin\nRalph\nShawn\nWarren\nBernard\nChris\nMike\nRandall\nRicardo\nRoland\nTheodore\nAaron\nJeff\nBobby\nDerek\nHerbert\nJay\nRandy\nJon\nJuan\nAlexander\nDanny\nDon\nNathan\nVernon\nByron\nClifton\nJim\nJimmy\nLeon\nNorman\nRay\nRonnie\nGreg\nJack\nJesse\nJoe\nKirk\nLorenzo\nAlfred\nDale\nDaryl\nDean\nGeoffrey\nNicholas\nClifford\nEddie\nGordon\nAlvin\nRoderick\nTerence\nDonnell\nLewis\nMilton\nWendell\nAdrian\nAlonzo\nBilly\nBrett\nDarnell\nDwight\nFranklin\nFred\nJohnny\nLee\nLeo\nRandolph\nTom\nTommy\nBill\nGene\nJoel\nLloyd\nStuart\nAlton\nDuane\nEverett\nFloyd\nIvan\nKent\nMitchell\nRoy\nTerrence\nAllan\nChristian\nGilbert\nKen\nKerry\nKurt\nMarlon\nRoss\nTim\nBradley\nClinton\nDan\nDarren\nEdwin\nErik\nIrving\nJoey\nKelly\nLeslie\nNeal\nTed\nWade\nAngelo\nArnold\nBrent\nChester\nClaude\nColin\nDion\nEvan\nIsaac\nLionel\nLonnie\nLuis\nMarcus\nNeil\nPerry\nRoosevelt\nWallace\nWesley\nAlphonso\nArchie\nCedric\nClark\nClayton\nDave\nDewayne\nGarrett\nGlen\nHugh\nLester\nLuther\nOrlando\nPreston\nRudolph\nTerrance\nWillard\nAlex\nBrendan\nDexter\nEdmund\nEmmanuel\nGregg\nHarvey\nJason\nJose\nJoshua\nJulian\nKenny\nMario\nMarshall\nMiles\nQuinton\nSam\nSterling\nBlaine\nBryant\nCary\nCharlie\nChuck\nClyde\nCornell\nDamon\nDarwin\nElliott\nGarland\nJacques\nMalcolm\nMatt\nOliver\nRobbie\nRobin\nRon\nSeth\nShelton\nSpencer\nStephan\nStevie\nAntoine\nBennie\nCarter\nCecil\nDarrel\nDominic\nDrew\nEdgar\nEduardo\nEllis\nEmanuel\nFrankie\nFredrick\nHerman\nIrvin\nJacob\nJulius\nKimberly\nKyle\nLaurence\nMarty\nMiguel\nMonte\nMorris\nMyron\nNelson\nNick\nOtis\nPernell\nPete\nRafael\nRamon\nRick\nStewart\nSylvester\nTravis\nVan\nVince\nVirgil\nWilbert\nZachary\nJohn\nMichael\nJames\nDavid\nRobert\nWilliam\nKevin\nMark\nThomas\nAnthony\nCharles\nJoseph\nRichard\nKenneth\nPaul\nSteven\nTimothy\nChristopher\nBrian\nJeffrey\nDaniel\nGregory\nStephen\nEric\nPatrick\nRonald\nEdward\nDonald\nAndrew\nKeith\nDarryl\nGeorge\nScott\nGary\nDouglas\nMatthew\nPeter\nReginald\nLawrence\nRaymond\nBruce\nAndre\nRodney\nAntonio\nFrank\nCraig\nVincent\nJonathan\nGerald\nLarry\nWayne\nTyrone\nDerrick\nTony\nWalter\nCarl\nMaurice\nSamuel\nDennis\nTroy\nMelvin\nSean\nBernard\nPhilip\nRoger\nRussell\nDwayne\nTodd\nBarry\nChris\nPhillip\nVictor\nCalvin\nTerry\nAlan\nTerrence\nHenry\nBryan\nHarold\nMarc\nRalph\nArthur\nJeffery\nClarence\nEugene\nJerome\nMartin\nErnest\nFrederick\nJerry\nMarvin\nShawn\nAdam\nJoe\nMike\nRandy\nCurtis\nLouis\nWillie\nAaron\nAlbert\nHoward\nJon\nJuan\nTheodore\nBenjamin\nGlenn\nNathaniel\nWarren\nAlfred\nCarlton\nStanley\nAllen\nDarrell\nMicheal\nDarnell\nDonnell\nEarl\nJay\nKirk\nNorman\nRicardo\nRicky\nRonnie\nSteve\nDanny\nDerek\nDon\nJohnny\nFrancis\nJoel\nKelvin\nAlexander\nBradley\nHerbert\nKurt\nLeon\nTracy\nLeonard\nLorenzo\nRoland\nByron\nDuane\nCarlos\nClifton\nErik\nHarry\nIan\nJack\nLeroy\nRandolph\nRoy\nBobby\nFred\nGuy\nMarcus\nVernon\nDale\nEverett\nJason\nJim\nJose\nNicholas\nDaryl\nEdwin\nJeff\nKarl\nMilton\nNathan\nNeal\nStuart\nTerrance\nDean\nJesse\nLee\nRandall\nAdrian\nAlonzo\nDarren\nEddie\nFranklin\nGreg\nHarvey\nJimmy\nLance\nNeil\nTom\nWesley\nArnold\nColin\nDana\nGordon\nHugh\nLamont\nLewis\nMario\nOrlando\nRay\nRickey\nTerence\nWendell\nAllan\nBill\nClifford\nFloyd\nIvan\nLeslie\nOtis\nRon\nTim\nBilly\nBrett\nCharlie\nGlen\nKenny\nKerry\nKyle\nLloyd\nRick\nSeth\nSylvester\nAngelo\nBrendan\nClark\nDewayne\nDexter\nGeoffrey\nGerard\nJamie\nJimmie\nJoshua\nKent\nLeo\nLonnie\nMarshall\nQuintin\nSidney\nWillard\nAlex\nAlvin\nChristian\nClayton\nClinton\nDan\nDarrin\nDoug\nDwight\nGene\nJohnnie\nJorge\nJulian\nJulius\nLaurence\nLionel\nLuis\nMalcolm\nMitchell\nNelson\nPernell\nPreston\nRoderick\nSterling\nTommy\nWade\nBlake\nBryant\nDamon\nDarin\nFreddie\nFredrick\nGilbert\nGregg\nKelly\nLuther\nMarco\nOliver\nPerry\nRex\nRoss\nRudolph\nSherman\nTimmy\nWilbert\nZachary\nAntoine\nAubrey\nBrent\nChuck\nClaude\nClyde\nCornell\nDamian\nDesmond\nEdgar\nEmmanuel\nFrancisco\nGarrett\nHorace\nJacob\nKeenan\nKim\nLoren\nMckinley\nNick\nOscar\nQuentin\nRory\nShaun\nStephan\nMichael\nJohn\nJames\nDavid\nRobert\nWilliam\nKevin\nAnthony\nMark\nCharles\nChristopher\nThomas\nRichard\nJoseph\nEric\nKenneth\nSteven\nTimothy\nJeffrey\nPaul\nGregory\nBrian\nDaniel\nStephen\nRonald\nKeith\nEdward\nPatrick\nDonald\nGeorge\nAndrew\nDarryl\nGary\nRodney\nDouglas\nAndre\nMatthew\nScott\nReginald\nJonathan\nLawrence\nTyrone\nDarrell\nDerrick\nPeter\nVincent\nWayne\nRaymond\nSean\nCarl\nLarry\nSamuel\nFrank\nBruce\nTodd\nCraig\nDennis\nPhilip\nPhillip\nAaron\nJerome\nMelvin\nTony\nMaurice\nWarren\nWillie\nErik\nEugene\nGerald\nMarc\nEarl\nHarry\nMarvin\nBryan\nHarold\nTerry\nWalter\nAlan\nAntonio\nCurtis\nDarren\nDarrin\nDerek\nGlenn\nHoward\nNathaniel\nRussell\nAlbert\nBernard\nDwayne\nFrederick\nArthur\nJeffery\nVictor\nAllen\nLouis\nRalph\nAlexander\nBobby\nHenry\nJerry\nAdam\nBenjamin\nClarence\nTroy\nCalvin\nChris\nErnest\nLeroy\nRicardo\nTheodore\nDaryl\nRoger\nLeonard\nMartin\nNicholas\nShawn\nSteve\nAlvin\nFred\nMarcus\nNorman\nRicky\nRoy\nBarry\nDale\nDarin\nJay\nJoel\nKarl\nKelvin\nKirk\nAlfred\nJason\nMicheal\nRandy\nTerrence\nDarnell\nEddie\nFrancis\nJoe\nLeon\nMike\nCarlos\nCarlton\nClifton\nRoland\nStanley\nVernon\nByron\nJack\nJeff\nJuan\nKurt\nTracy\nBradley\nDanny\nDean\nDuane\nFranklin\nGeoffrey\nHerbert\nJesse\nRonnie\nWendell\nJohnny\nNathan\nRandall\nTerence\nTim\nAlex\nCedric\nClifford\nIan\nLewis\nMilton\nOtis\nRandolph\nRoderick\nBryant\nDexter\nDonnell\nGlen\nGreg\nJon\nJose\nLloyd\nNeil\nWesley\nArnold\nBrett\nCary\nCecil\nEdwin\nGuy\nLee\nLuis\nRoss\nWallace\nZachary\nDana\nDewayne\nGordon\nJohnnie\nLorenzo\nMalcolm\nMarshall\nRamon\nRickey\nTerrance\nAdrian\nAlonzo\nDan\nDominic\nDwight\nGilbert\nHerman\nJim\nLeslie\nLonnie\nLyndon\nMitchell\nNeal\nNick\nPierre\nStuart\nTed\nWilbert\nAllan\nAlton\nBill\nBrendan\nCarroll\nCornell\nDarrick\nFrankie\nIvan\nJimmy\nKent\nLamont\nLinwood\nMario\nMorris\nSidney\nSylvester\nTom\nAvery\nBilly\nChad\nCornelius\nDarius\nEdgar\nFloyd\nHarvey\nJulian\nJustin\nKelly\nLaurence\nLionel\nMarlon\nMiguel\nOliver\nRick\nRon\nScot\nTommy\nWilbur\nAlphonso\nAndy\nAntoine\nArchie\nBenny\nBrad\nBrent\nBret\nCharlie\nChristian\nColin\nDarris\nDave\nDemetrius\nDerwin\nDion\nDon\nDonnie\nEduardo\nEverett\nFreddie\nGarry\nGrant\nHugh\nIsaac\nJoshua\nJulius\nLance\nLester\nLowell\nManuel\nMathew\nNelson\nPernell\nPreston\nQuintin\nRandal\nRay\nRodrick\nRoosevelt\nRudolph\nSheldon\nThaddeus\nThurman\nVance\nVirgil\nWade\nMichael\nJohn\nJames\nDavid\nRobert\nWilliam\nAnthony\nChristopher\nMark\nKevin\nThomas\nCharles\nEric\nJoseph\nSteven\nKenneth\nRichard\nBrian\nTimothy\nPaul\nJeffrey\nDaniel\nStephen\nGregory\nKeith\nRonald\nEdward\nAndrew\nDonald\nScott\nPatrick\nSean\nMatthew\nGary\nGeorge\nRodney\nLawrence\nPeter\nJonathan\nVincent\nDarryl\nDouglas\nAndre\nReginald\nRaymond\nBruce\nDerrick\nDarrell\nFrank\nMaurice\nCarl\nCraig\nTyrone\nDwayne\nSamuel\nAntonio\nDennis\nErik\nTony\nWayne\nBenjamin\nWalter\nLarry\nTodd\nAlan\nJerome\nShawn\nGerald\nRoger\nTroy\nBryan\nCurtis\nMarc\nPhillip\nPhilip\nWarren\nDarrin\nWillie\nCarlos\nCarlton\nDarren\nDerek\nFrederick\nAllen\nArthur\nErnest\nHarold\nHarry\nJeffery\nMartin\nRicardo\nTerry\nAaron\nEugene\nKelvin\nMicheal\nBarry\nDaryl\nHoward\nMelvin\nRussell\nSteve\nTheodore\nAlbert\nBernard\nCalvin\nGlenn\nHenry\nLeon\nClarence\nLeonard\nNorman\nRalph\nJuan\nLouis\nAdam\nBobby\nMarvin\nFrancis\nJason\nLeroy\nMarcus\nNathaniel\nNicholas\nEarl\nJay\nWesley\nAlfred\nAlvin\nDonnell\nGeoffrey\nLloyd\nVictor\nAlexander\nByron\nClifton\nDanny\nJon\nKirk\nRicky\nRoy\nStanley\nChris\nDean\nHerbert\nJerry\nJose\nLewis\nKarl\nMike\nRandy\nTracy\nBrett\nDale\nEddie\nKurt\nLee\nRandolph\nRoderick\nRonnie\nVernon\nAdrian\nDon\nJeff\nJohnny\nPreston\nStuart\nTerrence\nBrendan\nClifford\nDarin\nEdwin\nJoe\nJoel\nLeo\nLorenzo\nRandall\nAlonzo\nChristian\nDuane\nIan\nJesse\nKelly\nMilton\nMitchell\nMorris\nAllan\nAlphonso\nBilly\nBradley\nDarnell\nDeon\nDewayne\nFloyd\nFranklin\nFred\nGordon\nJack\nJimmy\nLuis\nRyan\nShaun\nTerrance\nClaude\nDexter\nDwight\nLamont\nNeal\nRoland\nTerence\nChad\nGuy\nNathan\nSpencer\nWade\nBrent\nDan\nDrew\nGarry\nGlen\nGreg\nHerman\nJoshua\nLance\nLaurence\nMarcellus\nOscar\nPerry\nRickey\nShannon\nSterling\nAlex\nBryant\nCedric\nChauncey\nClinton\nColin\nDemetrius\nElijah\nGene\nIsaac\nJohnnie\nKent\nKyle\nMarco\nMatt\nRay\nRudolph\nShane\nSidney\nTed\nTim\nTommy\nTravis\nWillard\nZachary\nAlec\nAngelo\nArnold\nAustin\nBennie\nBill\nBrad\nCornell\nDarrel\nDerick\nDion\nDonell\nEduardo\nElliott\nFrancisco\nFreddie\nFredrick\nGilbert\nGregg\nJeremiah\nJimmie\nJordan\nJorge\nJulian\nJulius\nJustin\nKeenan\nKirby\nLeslie\nLionel\nMarshall\nMason\nOtis\nSam\nSeth\nStefan\nStephan\nWendell\nMichael\nJohn\nDavid\nJames\nRobert\nWilliam\nChristopher\nKevin\nAnthony\nThomas\nMark\nJoseph\nRichard\nCharles\nKenneth\nSteven\nJeffrey\nEric\nTimothy\nBrian\nStephen\nGregory\nMatthew\nPaul\nDaniel\nKeith\nRonald\nGeorge\nAndrew\nAndre\nSean\nEdward\nScott\nDonald\nPatrick\nRodney\nDouglas\nGary\nReginald\nRaymond\nLawrence\nPeter\nJonathan\nAaron\nDarrell\nVincent\nDerrick\nTodd\nBryan\nTyrone\nDarryl\nWayne\nTroy\nFrank\nMarc\nCraig\nTony\nJerome\nErik\nLarry\nSamuel\nBruce\nAlan\nDwayne\nDerek\nGerald\nJerry\nPhilip\nPhillip\nShawn\nCurtis\nDennis\nMaurice\nAntonio\nHenry\nWalter\nArthur\nCarl\nDarren\nFrederick\nTerry\nVictor\nAlbert\nBernard\nEugene\nAllen\nBenjamin\nErnest\nHarold\nLeonard\nTheodore\nJason\nJeffery\nWillie\nMarvin\nTracy\nCalvin\nMelvin\nStanley\nWarren\nAdam\nBarry\nNathaniel\nCarlos\nDonnell\nLouis\nRoger\nJon\nRussell\nChris\nClarence\nMarcus\nRicky\nTerence\nEarl\nGlenn\nHarry\nHoward\nKelvin\nLeon\nAlvin\nHerbert\nJohnny\nMartin\nMicheal\nClifton\nDarnell\nFrancis\nJack\nJuan\nNorman\nRandy\nBobby\nDarrin\nDuane\nLee\nMike\nNicholas\nRalph\nSteve\nTerrence\nAdrian\nByron\nCarlton\nDamon\nLewis\nNathan\nRicardo\nAlfred\nChristian\nClifford\nDean\nFranklin\nGuy\nJoel\nKarl\nKirk\nRonnie\nWendell\nDale\nDemetrius\nEddie\nIan\nJay\nJose\nKurt\nRandall\nRoderick\nVernon\nAlonzo\nDanny\nDaryl\nJimmy\nKelly\nLeroy\nLorenzo\nAlexander\nBrendan\nDon\nGlen\nGordon\nJeff\nJoshua\nLloyd\nPreston\nRoy\nTerrance\nJesse\nRoland\nStuart\nWesley\nAntoine\nArnold\nBilly\nBradley\nBryant\nChad\nDana\nDarron\nEdwin\nGeoffrey\nIvan\nJeremy\nKim\nKyle\nLamont\nMario\nMilton\nMitchell\nShaun\nStacy\nTrevor\nAlex\nAlphonso\nBrett\nClaude\nClinton\nColin\nDarin\nDerwin\nEdgar\nFred\nFreddie\nHans\nHarvey\nKent\nLuis\nManuel\nNeil\nQuentin\nRandolph\nSeth\nSidney\nTommy\nBennie\nBrandon\nBrent\nCecil\nClayton\nEvan\nEverett\nGene\nIra\nJorge\nKendall\nLeslie\nMalcolm\nMarco\nNeal\nRoss\nSherman\nTim\nWade\nXavier\nAllan\nAngelo\nDion\nGarrett\nJessie\nJustin\nLaurence\nMarlon\nRay\nRoberto\nRudolph\nRyan\nSylvester\nBill\nCary\nConrad\nDeon\nDerick\nDevin\nDewayne\nDirk\nEthan\nFrancisco\nGabriel\nGarland\nGarry\nGilbert\nGreg\nHerman\nJaime\nJohnnie\nJordan\nJulio\nKenny\nKerry\nLance\nLars\nLuther\nMarcel\nOmar\nOtis\nPerry\nRaul\nRickey\nRon\nSpencer\nTom\nTrent\nVance\nVaughn\nWallace\nWillard\nZachary\nMichael\nJohn\nDavid\nJames\nRobert\nChristopher\nAnthony\nWilliam\nMark\nKevin\nRichard\nJoseph\nCharles\nThomas\nTimothy\nJeffrey\nEric\nBrian\nSteven\nKenneth\nPaul\nSean\nStephen\nGregory\nEdward\nMatthew\nAndrew\nScott\nDaniel\nRonald\nGeorge\nKeith\nDonald\nPatrick\nAndre\nReginald\nDouglas\nJonathan\nPeter\nGary\nRodney\nDerrick\nRaymond\nTyrone\nCraig\nTodd\nLawrence\nDarryl\nAaron\nSamuel\nVincent\nMartin\nShawn\nLarry\nMaurice\nTroy\nWayne\nBenjamin\nDwayne\nDennis\nMarc\nWalter\nDarrell\nGerald\nCurtis\nDerek\nAntonio\nBernard\nJason\nBruce\nDarren\nBryan\nMarcus\nWillie\nCarl\nTony\nArthur\nCarlos\nFrank\nJerome\nMelvin\nAdam\nLeonard\nAlan\nJay\nRussell\nWarren\nAlbert\nAlexander\nHenry\nJeffery\nJerry\nPhilip\nTerrence\nEugene\nFrederick\nHoward\nLouis\nNicholas\nHarold\nLeon\nNathaniel\nRicardo\nStanley\nCalvin\nChristian\nClifton\nErnest\nVictor\nAllen\nGeoffrey\nGlenn\nCarlton\nErik\nFrancis\nTerry\nClarence\nDonnell\nKirk\nRalph\nRoger\nAdrian\nClifford\nDarnell\nDaryl\nJon\nKarl\nMarvin\nPhillip\nTheodore\nBarry\nCorey\nHarry\nRandy\nVernon\nBradley\nEdwin\nGlen\nJack\nJohnny\nLorenzo\nBobby\nClinton\nDarrin\nJoel\nJose\nKelvin\nLeroy\nNorman\nAlfred\nBrett\nByron\nLee\nChris\nDean\nHerbert\nIan\nLamont\nMicheal\nNathan\nRay\nWesley\nDamon\nEarl\nFred\nGuy\nIvan\nJeremy\nJoe\nJuan\nRicky\nCedric\nDanny\nDuane\nJesse\nKelly\nLewis\nLloyd\nMilton\nDon\nEddie\nJohnnie\nJoshua\nNeil\nPerry\nRonnie\nRudolph\nTerence\nTerrance\nTracy\nAlonzo\nBilly\nBrent\nDale\nDarin\nDemetrius\nJimmy\nJoey\nJustin\nKyle\nRandall\nShannon\nSterling\nSteve\nWendell\nBryant\nErick\nGregg\nJulian\nKurt\nPreston\nRandolph\nRoy\nRyan\nSidney\nAntoine\nAnton\nBrandon\nClaude\nClayton\nColin\nCornell\nDamian\nDeon\nDevin\nDewayne\nDion\nEvan\nEverett\nFloyd\nFranklin\nGreg\nHerman\nJamie\nJeff\nKent\nLester\nLionel\nLonnie\nMarco\nMario\nShaun\nTommy\nVance\nWilbert\nAlex\nAlton\nAlvin\nBrendan\nCharlie\nClyde\nDarius\nDexter\nDominic\nDwight\nEmmanuel\nErvin\nFreddie\nGordon\nHorace\nJared\nJohnathan\nKim\nLuis\nMalcolm\nNelson\nRoderick\nRoland\nSeth\nStacy\nSylvester\nTrevor\nAlec\nAllan\nAngelo\nCary\nChester\nDana\nEdgar\nEmanuel\nGene\nHubert\nHugh\nIrving\nJacques\nJimmie\nJorge\nLance\nMarshall\nMiguel\nOliver\nOtis\nRoberto\nRoss\nTim\nZachary\nMichael\nJames\nDavid\nJohn\nRobert\nChristopher\nWilliam\nAnthony\nEric\nMark\nKevin\nJoseph\nCharles\nBrian\nThomas\nGregory\nRichard\nJeffrey\nMatthew\nKenneth\nTimothy\nSteven\nAndrew\nPaul\nDaniel\nStephen\nSean\nScott\nEdward\nKeith\nRonald\nPatrick\nDonald\nGeorge\nAndre\nJason\nJonathan\nReginald\nDerrick\nPeter\nDouglas\nGary\nRodney\nLawrence\nMarc\nTyrone\nVincent\nAntonio\nRaymond\nCorey\nFrank\nMaurice\nTodd\nTroy\nAlexander\nGerald\nCraig\nDarryl\nMarcus\nJerome\nAaron\nCarl\nShawn\nBryan\nDwayne\nDerek\nBruce\nCarlos\nBernard\nDarren\nLarry\nWayne\nDarrell\nDennis\nArthur\nSamuel\nBenjamin\nErik\nPhillip\nWalter\nJon\nMelvin\nCurtis\nFrederick\nAlan\nLeonard\nDaryl\nEugene\nJoshua\nAdam\nErnest\nMartin\nPhilip\nWarren\nDonnell\nEarl\nHoward\nVictor\nRicardo\nTheodore\nTony\nLeon\nMarvin\nNicholas\nRoger\nRussell\nTerry\nCalvin\nDarnell\nJay\nJerry\nJustin\nLouis\nTerrence\nWillie\nHarold\nNathaniel\nAlbert\nClarence\nDamon\nJuan\nAdrian\nAllen\nHenry\nLance\nRalph\nByron\nGlenn\nJeffery\nJose\nKarl\nKelvin\nMicheal\nRoderick\nShaun\nAlvin\nBobby\nChristian\nDean\nDwight\nGeoffrey\nJimmy\nChris\nJeremy\nNorman\nRonnie\nVernon\nAlfred\nBradley\nCarlton\nDarrin\nDuane\nHarry\nHerbert\nJesse\nLamont\nBrent\nBrett\nDanny\nIan\nKirk\nNathan\nRoy\nBarry\nDon\nEvan\nIvan\nJohnny\nLeroy\nMiguel\nMitchell\nNeil\nRicky\nRoland\nStuart\nTerrance\nAntoine\nDemetrius\nEdwin\nErick\nFranklin\nSteve\nBrendan\nCedric\nFrancis\nFred\nKurt\nLester\nSeth\nStanley\nWesley\nAlonzo\nBryant\nClifford\nClifton\nCornell\nDion\nDirk\nEddie\nGlen\nGordon\nGuy\nJoel\nLee\nLeslie\nLewis\nLorenzo\nMilton\nOliver\nPreston\nShane\nSpencer\nTim\nTracy\nAlex\nAllan\nAlphonso\nCornelius\nDarin\nDarius\nIrving\nJeff\nJoe\nKelly\nMalcolm\nMarshall\nOtis\nRandy\nWendell\nBrandon\nChad\nCory\nDale\nDerwin\nDewayne\nDexter\nDominic\nGene\nHans\nHerman\nHorace\nIsaac\nJacob\nJamie\nJohnnie\nJorge\nKim\nLloyd\nLonnie\nLuis\nMax\nNelson\nNoel\nOrlando\nOscar\nStacy\nVaughn\nAngelo\nAnton\nArnold\nBilly\nDarrick\nDeon\nEdgar\nEdmund\nEmmanuel\nEthan\nEverett\nJacques\nJared\nLaurence\nPablo\nQuentin\nRamon\nRoberto\nRon\nRudolph\nRyan\nShannon\nStephan\nSylvester\nTed\nThurman\nWallace\nWinston\nBradford\nCecil\nChester\nClinton\nClyde\nDamien\nDaron\nErrol\nErvin\nFreddie\nGerry\nGilbert\nGreg\nHarvey\nJarrett\nJulian\nKerry\nKyle\nLeo\nLionel\nLuke\nManuel\nMarcellus\nMario\nMarquette\nMorris\nMyron\nOmar\nRandall\nRickey\nRob\nTerence\nTommy\nWade\nWilbert\nMichael\nJames\nDavid\nJohn\nRobert\nChristopher\nWilliam\nKevin\nAnthony\nEric\nCharles\nMark\nThomas\nRichard\nJoseph\nJeffrey\nBrian\nPaul\nKenneth\nSean\nSteven\nDaniel\nGregory\nTimothy\nMatthew\nJason\nStephen\nAndrew\nScott\nAndre\nRonald\nEdward\nKeith\nDonald\nJonathan\nPatrick\nDerrick\nMarcus\nDouglas\nGeorge\nPeter\nReginald\nTodd\nMaurice\nShawn\nRodney\nLawrence\nTyrone\nAntonio\nCraig\nMarc\nFrank\nGary\nVincent\nAaron\nAdam\nDarrell\nCarlos\nAlexander\nEugene\nTroy\nWayne\nCarl\nRaymond\nCorey\nBenjamin\nSamuel\nBryan\nGerald\nLarry\nDennis\nCurtis\nLeonard\nWalter\nDerek\nEarl\nArthur\nHenry\nMelvin\nDarren\nDwayne\nErik\nJerome\nJoshua\nNathan\nNathaniel\nTony\nWillie\nDarryl\nDaryl\nBruce\nTheodore\nVictor\nAlbert\nBernard\nFrederick\nNicholas\nGlenn\nJay\nDamon\nErnest\nHoward\nJeremy\nDonnell\nHarold\nJon\nRicardo\nRoger\nTravis\nCalvin\nMartin\nNorman\nAlan\nGeoffrey\nPhilip\nWarren\nAlvin\nHarry\nKarl\nAdrian\nChris\nClarence\nJeffery\nLeon\nMarvin\nTerry\nVernon\nAlfred\nJose\nJuan\nJustin\nLeroy\nLorenzo\nRussell\nAntoine\nByron\nChristian\nJesse\nKyle\nLance\nLouis\nPhillip\nRoy\nTerrence\nCarlton\nFrancis\nJoel\nAllen\nBrendan\nDuane\nIan\nStanley\nClifton\nDarnell\nDion\nFranklin\nKelvin\nRalph\nRoland\nWesley\nZachary\nBradley\nBrent\nDale\nDwight\nIvan\nKirk\nLamont\nMalcolm\nMicheal\nPerry\nBarry\nColin\nRicky\nRoderick\nBobby\nBryant\nEddie\nEverett\nGordon\nJerry\nJohnny\nKelly\nLee\nMitchell\nRonnie\nSeth\nSteve\nTerrance\nBrett\nCedric\nChad\nDanny\nDean\nEdgar\nEdwin\nJack\nJacob\nJamie\nMarlon\nBrandon\nClinton\nCornell\nDarrick\nEvan\nJimmy\nJoe\nKurt\nLonnie\nManuel\nMilton\nShaun\nWade\nAlex\nBilly\nDon\nGreg\nLeslie\nLester\nLewis\nLionel\nLuis\nMarcellus\nMarco\nQuentin\nRandolph\nShane\nTracy\nWendell\nAlonzo\nClyde\nDewayne\nGene\nGilbert\nHerman\nJeff\nMarshall\nVaughn\nClayton\nDana\nDarius\nDarrin\nDemetrius\nErick\nFloyd\nFrancisco\nFred\nHerbert\nLloyd\nMario\nMathew\nMorris\nNeil\nNoah\nOscar\nRandall\nRandy\nRay\nRyan\nSterling\nStuart\nTed\nAlphonso\nCharlie\nClifford\nDamion\nDarin\nDevin\nElijah\nGabriel\nGuy\nHarvey\nJamal\nJohnnie\nJorge\nKent\nKerry\nNeal\nOtis\nPierre\nPreston\nRon\nRudolph\nSidney\nSpencer\nWillard\nArnold\nCecil\nChester\nDan\nDexter\nDonovan\nDouglass\nElliott\nEmanuel\nErwin\nFernando\nFreddie\nGarland\nGlen\nJefferson\nJonas\nJulius\nLamar\nMarcel\nMiguel\nMyron\nOmar\nPernell\nRickey\nRoberto\nSantiago\nShannon\nSherman\nSimon\nStacey\nStephan\nSylvester\nWilson\nMichael\nJames\nJohn\nDavid\nChristopher\nRobert\nWilliam\nKevin\nAnthony\nEric\nJoseph\nBrian\nCharles\nMark\nRichard\nMatthew\nThomas\nSean\nGregory\nJeffrey\nAndrew\nKenneth\nSteven\nTimothy\nJason\nScott\nDaniel\nPaul\nKeith\nPatrick\nRonald\nStephen\nGeorge\nEdward\nJonathan\nAndre\nDonald\nAntonio\nAaron\nMarcus\nReginald\nAdam\nPeter\nDerrick\nShawn\nLarry\nLawrence\nMarc\nDouglas\nGary\nMaurice\nRaymond\nTroy\nVincent\nBenjamin\nDerek\nCraig\nDennis\nErik\nTodd\nTyrone\nJerome\nDarrell\nJoshua\nTony\nFrank\nRodney\nDwayne\nBernard\nFrederick\nBryan\nJerry\nCarlos\nCurtis\nJeremy\nNathaniel\nCarl\nLouis\nArthur\nJuan\nRussell\nRyan\nCalvin\nAlexander\nChristian\nHarold\nTerrence\nClarence\nCorey\nGerald\nLamont\nPhilip\nPhillip\nWayne\nEugene\nMelvin\nNicholas\nTheodore\nWillie\nDarryl\nLeon\nWalter\nMarvin\nWarren\nDamon\nDarnell\nDaryl\nHenry\nIan\nJoel\nMicheal\nSamuel\nStanley\nBruce\nErnest\nLeroy\nRoger\nTerry\nAlfred\nAllen\nFranklin\nVictor\nAlbert\nAntoine\nDonnell\nMartin\nNathan\nNorman\nBradley\nHarry\nJesse\nJustin\nRalph\nRicardo\nVernon\nDarren\nGeoffrey\nJermaine\nRonnie\nBobby\nBrett\nByron\nDean\nDuane\nFrancis\nHoward\nAdrian\nAlex\nBarry\nBrandon\nCarlton\nChad\nChris\nGlenn\nGordon\nIvan\nJamie\nLeonard\nRoy\nShane\nTravis\nBilly\nBrent\nEarl\nHerbert\nJeffery\nJohnny\nJose\nKyle\nLonnie\nLuis\nRoberto\nShaun\nAlonzo\nAlvin\nAngelo\nBrendan\nDemetrius\nDon\nEdwin\nJay\nJon\nLewis\nMilton\nRandall\nRoderick\nRoland\nSeth\nAlan\nColin\nCory\nDana\nDeon\nKarl\nKirk\nLance\nMalcolm\nMario\nRicky\nTerence\nWendell\nAri\nBryant\nClinton\nDamian\nDanny\nEddie\nJoe\nKelvin\nLorenzo\nMarlon\nRafael\nRamon\nRay\nWesley\nAustin\nCedric\nClifford\nCornell\nDale\nDewayne\nDion\nDwight\nErick\nEvan\nGabriel\nGene\nHerman\nJack\nJacob\nJohnnie\nLee\nMarcel\nMorris\nSylvester\nTommy\nArnold\nCesar\nClaude\nFernando\nGerard\nJimmy\nJulian\nKurt\nLester\nMarion\nOliver\nRoss\nTerrance\nBradford\nCecil\nCharlie\nChester\nClifton\nCordell\nDarius\nEmanuel\nEthan\nGarland\nGreg\nGregg\nGuy\nHarvey\nIra\nIsaac\nJamal\nJared\nKent\nKerry\nLeo\nLeslie\nLloyd\nMarcellus\nMarshall\nMyron\nOmar\nOtis\nPercy\nRandolph\nRudolph\nStacey\nStacy\nSterling\nSteve\nStuart\nTrevor\nAntione\nAubrey\nClayton\nCourtney\nDamion\nDan\nDexter\nDominic\nDustin\nEdmund\nEllis\nFrankie\nFred\nJonah\nJulio\nJulius\nKwame\nKwasi\nLamar\nLevi\nMiguel\nMonte\nNeal\nNelson\nRaphael\nShannon\nSpencer\nStevie\nThaddeus\nToby\nWallace\nWinston\nMichael\nJames\nJohn\nChristopher\nDavid\nRobert\nBrian\nWilliam\nEric\nKevin\nAnthony\nMatthew\nJoseph\nCharles\nMark\nDaniel\nThomas\nJason\nRichard\nGregory\nJeffrey\nSean\nStephen\nSteven\nTimothy\nKeith\nKenneth\nAndrew\nJonathan\nPaul\nGeorge\nScott\nRonald\nAndre\nDonald\nPatrick\nAaron\nAntonio\nEdward\nMarcus\nJermaine\nJoshua\nMaurice\nPeter\nDerrick\nReginald\nShawn\nDouglas\nBenjamin\nJustin\nLarry\nRaymond\nTodd\nErik\nTyrone\nLawrence\nGary\nAdam\nBryan\nMarc\nRodney\nCarlos\nDuane\nCurtis\nAlexander\nChristian\nCraig\nDwayne\nCarl\nDerek\nLamont\nRyan\nDennis\nSamuel\nDamon\nNathaniel\nTroy\nDonnell\nJerome\nVincent\nFrank\nWalter\nEugene\nHarold\nDarrell\nMarvin\nIan\nNicholas\nVictor\nCalvin\nWayne\nLouis\nMicheal\nRoger\nWillie\nAntoine\nJeremy\nMartin\nPhilip\nAlbert\nRicardo\nBobby\nClarence\nDaryl\nJerry\nJohnny\nRussell\nAlex\nArthur\nCorey\nDarryl\nJoel\nMelvin\nNathan\nTravis\nBrett\nErnest\nGlenn\nHenry\nIvan\nJay\nPhillip\nAllen\nFrederick\nGeoffrey\nHerbert\nJesse\nTerrence\nAdrian\nBrandon\nBruce\nGerald\nJon\nKarl\nLee\nRoy\nTony\nWarren\nBarry\nDarnell\nDarren\nKelvin\nRalph\nStanley\nBernard\nChad\nDean\nFranklin\nHarry\nJacob\nJuan\nMarco\nOmar\nRandall\nShaun\nTerry\nAlvin\nDwight\nEarl\nHoward\nJack\nJeffery\nKirk\nLeon\nRonnie\nBryant\nCarlton\nCornelius\nDewayne\nMalcolm\nMilton\nSeth\nSidney\nBrent\nChris\nClaude\nClifton\nDanny\nDemetrius\nDemond\nEddie\nJared\nJoe\nJohnnie\nJose\nLeonard\nLeroy\nLuis\nMitchell\nOliver\nOscar\nRandolph\nRandy\nTerrance\nTheodore\nAlfred\nAlonzo\nAlphonso\nCasey\nDale\nDamian\nDante\nEvan\nGabriel\nGarrett\nKhari\nLance\nLewis\nMarlon\nNorman\nQuincy\nRicky\nTerence\nTracy\nVernon\nAlan\nAntione\nBradford\nBradley\nDarius\nDarrick\nDion\nEdwin\nIsaac\nJamie\nKareem\nLamar\nLorenzo\nMarcellus\nMicah\nOrlando\nPreston\nShane\nShelton\nStacy\nSteve\nSylvester\nClyde\nCory\nDeon\nDesmond\nDevin\nDonovan\nFred\nJamal\nJulian\nJulius\nKelly\nLester\nLloyd\nMarshall\nMiguel\nOtis\nOwen\nRamon\nRoland\nWesley\nZachary\nAhmed\nAnton\nAntwon\nAubrey\nBilly\nBrendan\nByron\nCedric\nClayton\nClifford\nClinton\nCornell\nDamien\nDamion\nDana\nDarian\nEdgar\nElijah\nErick\nEverett\nFernando\nFrancis\nFreddie\nGarland\nGilbert\nIrving\nJeff\nJohnathan\nKwame\nLeslie\nLinwood\nMalik\nMax\nNeil\nRoderick\nRomeo\nRoosevelt\nRudolph\nSebastian\nStewart\nTaurus\nThaddeus\nTracey\nTrevor\nWade\nXavier\nMichael\nDavid\nChristopher\nJohn\nJames\nRobert\nWilliam\nBrian\nEric\nKevin\nAnthony\nJoseph\nMatthew\nJason\nDaniel\nCharles\nRichard\nThomas\nMark\nGregory\nSean\nAndrew\nJonathan\nTimothy\nJeffrey\nKenneth\nSteven\nStephen\nRonald\nPaul\nKeith\nEdward\nScott\nGeorge\nAndre\nPatrick\nDerrick\nMarcus\nJoshua\nAaron\nPeter\nShawn\nJermaine\nReginald\nBenjamin\nTyrone\nDonald\nJustin\nMarc\nBryan\nCraig\nAdam\nAntonio\nLawrence\nCarlos\nFrank\nLarry\nMaurice\nRyan\nTodd\nDerek\nRaymond\nRodney\nChristian\nJerome\nDamon\nGary\nMelvin\nAlexander\nDuane\nLamont\nSamuel\nGerald\nTroy\nVincent\nCarl\nTerrence\nWillie\nCurtis\nDouglas\nNathaniel\nAntoine\nChad\nMicheal\nDennis\nNathan\nMarlon\nRussell\nWayne\nBruce\nNicholas\nWalter\nAllen\nArthur\nCorey\nErik\nTheodore\nTony\nAdrian\nEugene\nJesse\nMarvin\nPhilip\nClarence\nDarrell\nHenry\nJeremy\nKyle\nStanley\nTerry\nBradley\nBrandon\nCalvin\nDanny\nIan\nIsaac\nBernard\nCarlton\nDonnell\nGeoffrey\nJay\nVictor\nWarren\nBrendan\nDarryl\nDaryl\nHarold\nLeonard\nMario\nOmar\nRoger\nRonnie\nTerrance\nDemetrius\nEarl\nFranklin\nHerbert\nJeffery\nJose\nMartin\nTravis\nJohnny\nPhillip\nAlbert\nCornelius\nGabriel\nGlenn\nJamal\nJerry\nJoel\nKareem\nLouis\nRicardo\nAlan\nAlfred\nBobby\nBrett\nClaude\nDemond\nDwayne\nErnest\nFrederick\nHarry\nKelvin\nLee\nLloyd\nMyron\nRamon\nRoy\nTracy\nVernon\nAlex\nDamian\nDarnell\nDarren\nDion\nDominic\nEddie\nEdwin\nHoward\nJimmy\nJoe\nJon\nKarl\nLewis\nLorenzo\nMalcolm\nNorman\nRandy\nRoderick\nSeth\nWesley\nAlonzo\nAlvin\nBarry\nBrent\nDamien\nDean\nFred\nJimmie\nJuan\nKirk\nMilton\nOscar\nSteve\nSylvester\nZachary\nBen\nClifton\nDale\nDante\nDewayne\nEthan\nGordon\nJacques\nJared\nJohnathan\nJohnnie\nJorge\nKelly\nLeo\nLeroy\nLuis\nMarco\nMorris\nRalph\nAbdul\nAntwan\nByron\nCameron\nCornell\nDelante\nDon\nDwight\nErick\nFrancis\nJack\nJaime\nJamie\nJulius\nKent\nKristian\nKristopher\nLance\nLeon\nOrlando\nOtis\nRandolph\nSidney\nSimon\nSpencer\nAlphonso\nAntione\nArnold\nBennie\nBryant\nClinton\nColin\nCory\nDana\nDarius\nDarrick\nDonovan\nEdgar\nEdmund\nElgin\nEmanuel\nGlen\nJeff\nJordan\nJulian\nKermit\nKerry\nKurt\nLester\nLionel\nLonnie\nMarcel\nMorgan\nNeil\nNoah\nOliver\nRay\nRicky\nRoland\nRon\nRoosevelt\nSheldon\nSterling\nThaddeus\nTrevor\nVaughn\nMichael\nDavid\nJames\nChristopher\nJohn\nRobert\nWilliam\nJason\nMatthew\nBrian\nKevin\nDaniel\nAnthony\nEric\nJoseph\nCharles\nMark\nRichard\nAndrew\nThomas\nGregory\nSean\nSteven\nPaul\nJeffrey\nKenneth\nStephen\nJonathan\nEdward\nTimothy\nAaron\nJoshua\nDerrick\nAndre\nScott\nReginald\nRonald\nRyan\nKeith\nAntonio\nPatrick\nShawn\nTyrone\nDamon\nAdam\nSamuel\nAlexander\nDonald\nGeorge\nJustin\nLarry\nBryan\nRaymond\nBenjamin\nDerek\nPeter\nDuane\nCarlos\nJerome\nTroy\nMarcus\nDouglas\nJeremy\nPhilip\nJermaine\nDwayne\nGary\nMaurice\nNathan\nNathaniel\nCorey\nNicholas\nVincent\nDennis\nTodd\nCurtis\nLawrence\nMicheal\nBernard\nFrank\nMarc\nArthur\nCraig\nRussell\nAntoine\nBrandon\nCalvin\nEugene\nLeonard\nWayne\nWillie\nDarrell\nLamont\nPhillip\nCarl\nChristian\nFrederick\nJuan\nMarvin\nRicardo\nRoger\nWarren\nChad\nDamien\nLeon\nRodney\nTheodore\nAlan\nBradley\nEarl\nErnest\nHarold\nMelvin\nTerry\nWalter\nClifton\nJamie\nJerry\nAlbert\nClarence\nDarryl\nErik\nGerald\nHenry\nJesse\nJohnny\nMarlon\nTerrence\nBarry\nCarlton\nGeoffrey\nJeffery\nTravis\nWesley\nBobby\nBrendan\nDarren\nDaryl\nDion\nDonnell\nFrancis\nGabriel\nIan\nJacob\nJoel\nLeroy\nMartin\nShane\nVernon\nVictor\nAdrian\nBrett\nByron\nDarnell\nHarry\nJose\nLouis\nNakia\nRandy\nAlfred\nAlvin\nChris\nHerbert\nHoward\nJay\nKelvin\nKyle\nLewis\nLorenzo\nOliver\nStanley\nTony\nBrent\nClayton\nDamian\nDevon\nJamal\nLee\nMalcolm\nMario\nMilton\nNeil\nTerrance\nZachary\nAntwan\nClaude\nClifford\nColin\nCornelius\nDamion\nDana\nEvan\nGlenn\nJulian\nMarco\nMarquette\nOscar\nRalph\nRamon\nRandall\nRico\nRoderick\nShannon\nSteve\nBruce\nBryant\nCory\nDarius\nDemetrius\nDevin\nFloyd\nFranklin\nFredrick\nIsaac\nJack\nJorge\nKareem\nKarl\nLloyd\nRicky\nRoy\nStuart\nTarik\nTrevor\nAlonzo\nCornell\nDarin\nDemond\nDominic\nDontae\nEthan\nJamil\nJulius\nKirk\nLamar\nLuis\nMyron\nNoah\nPreston\nRandolph\nRonnie\nTerence\nTommy\nAhmed\nAllen\nAlphonso\nAngel\nAngelo\nAntione\nBilly\nClinton\nDale\nDean\nEddie\nEduardo\nEllis\nEmmanuel\nGrant\nHerman\nIvan\nJaime\nJared\nJeremiah\nJoe\nJohnnie\nJon\nManuel\nMarquis\nMicah\nMiguel\nMitchell\nNorman\nOmar\nRon\nSeth\nSherman\nSylvester\nVaughn\nXavier\nMichael\nJames\nDavid\nRobert\nChristopher\nBrian\nJohn\nWilliam\nJason\nMatthew\nAnthony\nEric\nKevin\nDaniel\nCharles\nJoseph\nThomas\nGregory\nMark\nJeffrey\nAndrew\nTimothy\nRichard\nJonathan\nPaul\nStephen\nKenneth\nRyan\nSteven\nRonald\nSean\nEdward\nScott\nAndre\nJoshua\nKeith\nBenjamin\nGeorge\nPatrick\nAaron\nShawn\nAdam\nAntonio\nDerrick\nDonald\nLarry\nDamon\nJeremy\nRaymond\nMarcus\nSamuel\nJustin\nReginald\nJermaine\nPeter\nTyrone\nDuane\nCarlos\nMaurice\nTroy\nCorey\nWalter\nGary\nNathaniel\nMarc\nVincent\nAdrian\nNicholas\nPhillip\nTodd\nBryan\nFrank\nPhilip\nRodney\nAlexander\nAntoine\nBrandon\nDouglas\nJesse\nLamont\nDerek\nLawrence\nMelvin\nTony\nCalvin\nDarnell\nErik\nWillie\nDarryl\nDwayne\nJerome\nNathan\nRicardo\nAlan\nBradley\nMicheal\nTerrence\nBernard\nCurtis\nEugene\nWayne\nCraig\nDamian\nHenry\nIan\nMarvin\nAlbert\nAlvin\nBobby\nChad\nDarrell\nErnest\nHarold\nHoward\nKelvin\nLeon\nTerry\nBrett\nCarl\nChristian\nStanley\nTerrance\nVictor\nWarren\nClifton\nDennis\nFrancis\nFrederick\nGerald\nJamal\nKareem\nSeth\nVernon\nAllen\nColin\nDarren\nDemetrius\nEarl\nGeoffrey\nJoel\nJon\nLee\nLeonard\nMarlon\nBryant\nByron\nClarence\nDaryl\nDevon\nDonnell\nJacob\nJohnny\nJuan\nTravis\nAlfred\nAntwan\nClayton\nDamien\nDamion\nGilbert\nGlenn\nIvan\nJose\nKarl\nLouis\nRalph\nTarik\nTheodore\nClyde\nDion\nHarry\nJack\nJay\nLewis\nLuis\nMarcellus\nMario\nNorman\nRussell\nSpencer\nTerrell\nDelonte\nDewayne\nDwight\nFranklin\nIsaac\nJerry\nJulius\nKyle\nLorenzo\nMartin\nNeil\nRandy\nRicky\nRonnie\nRoy\nTerence\nZachary\nAlex\nAlonzo\nArthur\nBruce\nCarlton\nClaude\nDeon\nEddie\nGabriel\nJared\nJeffery\nLeroy\nNeal\nRamon\nRon\nShane\nTrevor\nAlphonso\nAntione\nAnwar\nBarry\nBilly\nClifford\nDante\nDiron\nDominic\nDonte\nEdwin\nEvan\nHerbert\nJaime\nJamie\nLeo\nMiguel\nMitchell\nOliver\nOmar\nOtis\nPreston\nRandolph\nRico\nRoderick\nShannon\nCameron\nClinton\nCornelius\nDale\nDanny\nDarian\nDarin\nDarius\nDarrick\nDelante\nDon\nDorian\nElijah\nFrancisco\nFreddie\nGavin\nGene\nGerard\nJeremiah\nJimmie\nJohnnie\nJordan\nJorge\nKhalid\nKirk\nKito\nKurt\nMalcolm\nMalik\nMarquette\nMilton\nPedro\nRay\nReggie\nRoger\nStefan\nTremayne\nVirgil\nWinston\nMichael\nDavid\nJames\nChristopher\nJohn\nJason\nBrian\nRobert\nWilliam\nMatthew\nKevin\nAnthony\nJoseph\nDaniel\nEric\nTimothy\nSean\nCharles\nJonathan\nAndrew\nSteven\nRichard\nStephen\nThomas\nAaron\nGregory\nBenjamin\nJoshua\nKenneth\nMark\nMarcus\nKeith\nPaul\nEdward\nScott\nAndre\nDamon\nRonald\nDerrick\nJeffrey\nAntonio\nJustin\nPeter\nDonald\nPatrick\nAdam\nJeremy\nRyan\nShawn\nAntoine\nSamuel\nAlexander\nNathan\nGary\nReginald\nGeorge\nJerome\nJermaine\nBrandon\nRaymond\nLarry\nMaurice\nLawrence\nDwayne\nCarlos\nChristian\nDouglas\nNicholas\nTyrone\nDerek\nDuane\nJesse\nRussell\nVincent\nIan\nTodd\nRodney\nTerry\nCraig\nNathaniel\nRicardo\nBryan\nCalvin\nCorey\nEugene\nMarvin\nPhilip\nTroy\nBernard\nWalter\nWillie\nMarc\nTerrence\nVictor\nWayne\nClarence\nDennis\nFrank\nGerald\nJose\nLamont\nMelvin\nAdrian\nArthur\nCurtis\nOmar\nTheodore\nTravis\nBrendan\nDarrell\nHarry\nDamien\nDarnell\nGeoffrey\nJamal\nJoel\nMicheal\nPhillip\nAlbert\nAlex\nClifton\nErnest\nKyle\nLouis\nMarlon\nRoy\nShannon\nZachary\nBruce\nCarl\nDamian\nIsaac\nJacob\nNorman\nRicky\nRoger\nWarren\nWesley\nBobby\nBrent\nChad\nDonte\nEarl\nErik\nHoward\nJerry\nJimmy\nJulian\nLance\nLeon\nLeonard\nRalph\nRoland\nRonnie\nAllen\nBrett\nDante\nDarren\nDarryl\nHarold\nJon\nJuan\nKarl\nMario\nMartin\nRashad\nSeth\nTerrell\nTony\nAlvin\nByron\nDion\nDonnell\nFrederick\nJay\nLee\nVernon\nBilly\nBrad\nCasey\nDemetrius\nFrancisco\nJamaal\nJared\nJeremiah\nJohnny\nKelvin\nLloyd\nLuis\nShane\nStanley\nSteve\nAbdul\nAntwan\nBradley\nBryant\nClifford\nCory\nDale\nDarrick\nDelonta\nDemond\nDevin\nDewayne\nDominic\nEdwin\nEthan\nEvan\nFrancis\nGabriel\nGlenn\nGraham\nHenry\nJamie\nJorge\nKelly\nKenny\nKirk\nLorenzo\nMiguel\nMilton\nRandolph\nRandy\nRaphael\nStephan\nTerrance\nAlonzo\nDamion\nDaryl\nDonnie\nElijah\nErick\nFloyd\nJohnnie\nKareem\nLamar\nLeroy\nMalcolm\nMicah\nPedro\nRamon\nRico\nStuart\nTarik\nTommy\nTrevor\nAlan\nAlfred\nAli\nCedric\nChris\nClinton\nColin\nDana\nDanny\nDarius\nDelante\nDeon\nDeshawn\nDevon\nEdgar\nEduardo\nElliott\nIvan\nJean\nJeffery\nJoe\nJulio\nKristopher\nLeo\nLewis\nLonnie\nMitchell\nNaim\nNeal\nNelson\nOliver\nOscar\nOtis\nPerry\nRandall\nRoderick\nSimon\nTerence\nThaddeus\nTyler\nMichael\nJames\nDavid\nJohn\nChristopher\nJason\nRobert\nBrian\nWilliam\nJoseph\nKevin\nDaniel\nMatthew\nEric\nAnthony\nAndrew\nCharles\nThomas\nTimothy\nMark\nJonathan\nGregory\nRichard\nSean\nSteven\nRyan\nBenjamin\nRonald\nJoshua\nPaul\nAntonio\nKenneth\nPatrick\nStephen\nJustin\nJeffrey\nEdward\nAaron\nMarcus\nGeorge\nDerrick\nAndre\nKeith\nMaurice\nAlexander\nDamon\nAdam\nDonald\nJeremy\nPeter\nBryan\nLarry\nReginald\nScott\nTyrone\nShawn\nLawrence\nJermaine\nNathan\nBrandon\nGary\nTodd\nCorey\nEugene\nMelvin\nSamuel\nVincent\nWesley\nCarlos\nDuane\nMarc\nPhillip\nRaymond\nWillie\nAdrian\nChristian\nJerome\nJesse\nMicheal\nRussell\nCarl\nCraig\nIan\nJerry\nMarco\nNathaniel\nNicholas\nBradley\nDwayne\nJacob\nOmar\nRodney\nVictor\nBrendan\nDennis\nDonnell\nDouglas\nErik\nFrank\nHenry\nArthur\nCalvin\nCurtis\nDemetrius\nHoward\nJuan\nLouis\nRicardo\nTroy\nAlan\nDamian\nDamien\nDarren\nDerek\nGerald\nJoel\nRashad\nSeth\nTheodore\nAllen\nAntoine\nDeon\nErnest\nHarold\nJose\nLamont\nPhilip\nShaun\nTerrance\nTerrence\nWalter\nAlbert\nBernard\nBryant\nDominic\nEarl\nLamar\nMarvin\nStanley\nTerry\nZachary\nClarence\nClifton\nFrancis\nFrederick\nJon\nLeon\nLeonard\nRoger\nTerrell\nTravis\nWayne\nDamion\nDarnell\nDarryl\nEddie\nGlenn\nJamal\nKelvin\nMalcolm\nMartin\nRandy\nWarren\nAlex\nBobby\nByron\nCarlton\nChad\nCornelius\nDarrell\nDevon\nEdwin\nGeoffrey\nMario\nTony\nBruce\nClinton\nColin\nDewayne\nDion\nDonte\nDwight\nEvan\nGarrett\nKareem\nKarl\nLee\nLevar\nLuis\nMicah\nPreston\nRicky\nShane\nSteve\nTrevor\nAlvin\nBarry\nDevin\nEmanuel\nFranklin\nGabriel\nJamaal\nJimmy\nJorge\nMarlon\nNorman\nOliver\nRoderick\nShannon\nStewart\nCedric\nChris\nClifford\nDale\nDarian\nDaryl\nDustin\nGordon\nHarry\nIsaiah\nJack\nJared\nJeffery\nJeremiah\nJulian\nLeroy\nNeil\nRandolph\nRay\nRoberto\nSheldon\nSpencer\nTerence\nWendell\nWinston\nAhmad\nAlonzo\nAntione\nBradford\nCasey\nCory\nDante\nDesmond\nDylan\nElliott\nHerbert\nJay\nJovan\nJulius\nLavar\nLeslie\nLorenzo\nLuke\nMilton\nMoses\nNelson\nOscar\nRalph\nRamon\nReuben\nRoland\nRon\nStefan\nTommy\nAbraham\nAlfred\nAmir\nAndres\nBilly\nBrent\nBrett\nCharlie\nDelonte\nDon\nDorian\nEdmund\nEmmanuel\nErick\nErnesto\nEverett\nFredrick\nHerman\nHugh\nIsaac\nJohnnie\nJohnny\nKirk\nKristopher\nLance\nLewis\nLinwood\nLloyd\nManuel\nNoah\nPierre\nQuentin\nRashawn\nRonnie\nRoss\nRoy\nSimon\nTyree\nMichael\nJames\nDavid\nChristopher\nJohn\nRobert\nBrian\nJason\nKevin\nWilliam\nMatthew\nJoseph\nDaniel\nCharles\nAnthony\nAndrew\nEric\nThomas\nGregory\nSean\nRichard\nTimothy\nJeffrey\nJonathan\nMark\nSteven\nAaron\nPatrick\nPaul\nKenneth\nRyan\nDerrick\nJoshua\nStephen\nNicholas\nMarcus\nBenjamin\nJustin\nAndre\nShawn\nKeith\nAdam\nRonald\nAntonio\nEdward\nPeter\nScott\nDonald\nGeorge\nJeremy\nSamuel\nMaurice\nJerome\nLarry\nNathaniel\nAlexander\nRodney\nRaymond\nTyrone\nWillie\nBryan\nCarlos\nShaun\nDamien\nGary\nAntoine\nBrandon\nDerek\nJamal\nJesse\nPhillip\nLawrence\nReginald\nDennis\nJose\nCorey\nPhilip\nDamon\nWayne\nAdrian\nBruce\nDarnell\nErik\nJerry\nTroy\nArthur\nCarl\nCraig\nJared\nRicardo\nTerrence\nBernard\nCalvin\nCurtis\nDarryl\nDouglas\nEugene\nIan\nJermaine\nLee\nNathan\nWalter\nJuan\nMartin\nMarvin\nRashad\nTodd\nAlan\nBrendan\nChristian\nDevin\nDuane\nDwayne\nHenry\nLeonard\nMelvin\nVictor\nChad\nFrank\nJacob\nJoel\nKyle\nLamont\nMarc\nRussell\nStanley\nGabriel\nJeffery\nAllen\nDante\nEddie\nGerald\nTerry\nWesley\nDarrell\nDarren\nFrancis\nFrederick\nHoward\nTerrance\nZachary\nAntwan\nBradley\nClarence\nDanny\nDonte\nJon\nMicheal\nNorman\nSeth\nTheodore\nAlbert\nBobby\nCory\nDelonte\nDemetrius\nEarl\nErnest\nFranklin\nGeoffrey\nJay\nJulian\nJulius\nLeon\nOmar\nRoger\nRonnie\nTravis\nVincent\nWarren\nAlfred\nAli\nAlvin\nCourtney\nDamion\nDeon\nDewayne\nDominic\nDwight\nEvan\nJamar\nTony\nVernon\nAlonzo\nClifton\nDonnell\nEmmanuel\nEthan\nHarold\nHarry\nJamel\nLeroy\nLewis\nLouis\nLuke\nMalcolm\nMicah\nRalph\nRicky\nShane\nTerrell\nBrent\nBryant\nByron\nCarlton\nDarius\nEdwin\nGlenn\nJohnny\nMalik\nMarcellus\nMarshall\nMiguel\nRay\nRoderick\nWade\nAngel\nAnwar\nAustin\nBarry\nClark\nClayton\nClinton\nDamian\nDevon\nDion\nFrancisco\nFreddie\nGlen\nJamie\nJelani\nJoe\nLance\nLloyd\nLuis\nMarco\nMarlon\nMoses\nNeil\nNicolas\nOliver\nOrlando\nPerry\nRandy\nShannon\nSidney\nTerence\nAlex\nAri\nAvery\nBlair\nBrett\nCameron\nClifford\nColin\nDale\nDana\nDarian\nDarrick\nDelonta\nDelvin\nDiron\nEdgar\nEmanuel\nErick\nErin\nEverett\nHerbert\nHerman\nHugh\nIsaac\nIvan\nJamaal\nJamil\nJeremiah\nJohnathan\nJohnnie\nJordan\nJorge\nJovan\nKelvin\nKristopher\nLeslie\nLevi\nLionel\nMilton\nOtis\nRahman\nRandall\nRashaad\nRoy\nSpencer\nSterling\nStuart\nTarik\nThaddeus\nVance\nMichael\nChristopher\nDavid\nJames\nJohn\nJason\nRobert\nWilliam\nBrian\nMatthew\nKevin\nAnthony\nDaniel\nJoseph\nCharles\nAndrew\nEric\nThomas\nTimothy\nJonathan\nMark\nSteven\nPaul\nKenneth\nNicholas\nAaron\nRyan\nEdward\nJustin\nAntonio\nGregory\nJoshua\nPatrick\nStephen\nRonald\nSean\nRichard\nBenjamin\nJeffrey\nDerrick\nAlexander\nMarcus\nAdam\nKeith\nMaurice\nGeorge\nDonald\nAndre\nLawrence\nScott\nBrandon\nJerome\nReginald\nBryan\nAntoine\nJacob\nJesse\nNathaniel\nPeter\nLarry\nNathan\nShawn\nFrank\nPhillip\nTravis\nJeremy\nJermaine\nSamuel\nGary\nMelvin\nRaymond\nTyrone\nDouglas\nPhilip\nCarlos\nCorey\nDamien\nEugene\nRicardo\nChristian\nCurtis\nErik\nShaun\nArthur\nBradley\nMicheal\nTodd\nWayne\nCarl\nDarnell\nDominic\nDonnell\nJose\nTerrence\nCalvin\nDarrell\nDemetrius\nDerek\nDwayne\nIan\nJulius\nLeon\nVincent\nWalter\nZachary\nBrendan\nDarryl\nDuane\nJamal\nJerry\nJoel\nMarc\nOmar\nTroy\nWarren\nAlex\nAllen\nBernard\nFranklin\nAdrian\nClarence\nCory\nCraig\nDamion\nDamon\nGerald\nHarry\nHenry\nLamar\nMartin\nRicky\nRodney\nAlbert\nDevon\nEarl\nEvan\nKyle\nLamont\nLee\nRussell\nVictor\nAlvin\nBrett\nBruce\nColin\nEdwin\nFrancis\nGeoffrey\nHarold\nJohnny\nLouis\nSeth\nTerrance\nAlan\nBobby\nClifton\nDonte\nFrederick\nLeonard\nVernon\nAngelo\nDamian\nDennis\nErnest\nGarrett\nJared\nLuke\nRoderick\nRoy\nTheodore\nTony\nWesley\nAbdul\nAlonzo\nBarry\nCarlton\nDaryl\nDion\nDwight\nEmmanuel\nGabriel\nIsaac\nJack\nJuan\nMarvin\nMilton\nOliver\nRonnie\nStanley\nTerrell\nTerry\nBrad\nClinton\nDarius\nDevin\nErick\nFred\nGlenn\nHoward\nJay\nJon\nMarco\nMario\nMicah\nNorman\nRamon\nRandolph\nRandy\nRashad\nShannon\nSimon\nSpencer\nAntione\nAntwan\nDanny\nJesus\nJoe\nJordan\nLance\nMalik\nManuel\nMarlon\nNeil\nPerry\nQuentin\nRoger\nWillie\nAlphonso\nAri\nByron\nDana\nDante\nDarren\nDelonte\nDesmond\nEddie\nEmanuel\nEthan\nFrancisco\nHector\nJamar\nJamie\nJeffery\nJovan\nKarl\nKelvin\nLonnie\nLucas\nMorgan\nMyron\nOtis\nQuinton\nShane\nStefan\nAbraham\nAli\nAnwar\nAshley\nBilly\nBradford\nBrent\nChad\nCharlie\nCourtney\nDelante\nDelonta\nDewayne\nDustin\nEdgar\nElliott\nGordon\nJavier\nJeremiah\nJorge\nKareem\nKirk\nLeroy\nLorenzo\nMarcellus\nMarkus\nMarquis\nNoah\nOscar\nPernell\nRandall\nRay\nRickey\nRoland\nStuart\nTommy\nTremayne\nTrevor\nWendell\nMichael\nDavid\nJames\nChristopher\nRobert\nJohn\nJason\nWilliam\nMatthew\nKevin\nDaniel\nBrian\nAndrew\nCharles\nAnthony\nEric\nJonathan\nJoseph\nJustin\nGregory\nTimothy\nRyan\nThomas\nPaul\nSteven\nPatrick\nJoshua\nSean\nMark\nNicholas\nRichard\nBenjamin\nStephen\nJeffrey\nAlexander\nKenneth\nAaron\nAdam\nAndre\nRonald\nEdward\nJermaine\nMarcus\nScott\nPeter\nDerrick\nAntonio\nLawrence\nBrandon\nDerek\nDonald\nSamuel\nReginald\nKeith\nMaurice\nLarry\nRaymond\nErik\nJerome\nGary\nGeorge\nShaun\nTyrone\nAntoine\nDamien\nJeremy\nTerrance\nPhillip\nDarryl\nPhilip\nWalter\nZachary\nDennis\nDouglas\nJacob\nMelvin\nNathaniel\nRicardo\nCalvin\nCarl\nCarlos\nCorey\nShawn\nBrendan\nNathan\nTroy\nWillie\nIan\nJose\nMarc\nVictor\nBryan\nDonnell\nLeonard\nCurtis\nFrank\nLeon\nTony\nTravis\nAdrian\nDarrell\nEugene\nJamal\nJoel\nTerrence\nVincent\nAlan\nBradley\nBruce\nDelonte\nFrederick\nGabriel\nJerry\nKelvin\nLuis\nAnton\nBobby\nDarnell\nEdwin\nErnest\nGeoffrey\nHenry\nJamaal\nKyle\nWayne\nAlvin\nBernard\nCarlton\nDwayne\nOmar\nTheodore\nVernon\nChristian\nIvan\nJuan\nLouis\nMarvin\nRandy\nRonnie\nSeth\nTodd\nWarren\nAlbert\nCraig\nDante\nDion\nDustin\nFranklin\nHarold\nJeremiah\nLeroy\nMartin\nRoger\nRussell\nAlex\nAllen\nCedric\nClarence\nColin\nDarren\nEarl\nErick\nGerald\nRashad\nWesley\nAlfred\nArthur\nBrett\nDeon\nDevin\nDominic\nDonte\nDwight\nEvan\nFrancis\nIsaac\nJay\nJesse\nJohnathan\nLuke\nMalik\nMarco\nMario\nQuentin\nRandall\nRodney\nTerry\nByron\nChad\nChris\nDamon\nDarius\nDewayne\nJamar\nJordan\nLamont\nMiguel\nRafael\nRamon\nShane\nStanley\nStefan\nAlexis\nBarry\nBrent\nCory\nDominique\nDuane\nEthan\nFrancisco\nJeffery\nJorge\nJulius\nKarl\nLamar\nLewis\nMicheal\nMohammad\nNorman\nPierre\nPreston\nRalph\nRicky\nShannon\nTerence\nTyler\nAlonzo\nAngelo\nAntwan\nAshley\nClyde\nDameon\nDamian\nDanny\nDesmond\nDon\nGraham\nHerbert\nJack\nJaime\nJared\nJessie\nJimmy\nJohnnie\nJon\nJulian\nKristopher\nLee\nLeslie\nLionel\nLloyd\nMorgan\nNicolas\nOliver\nOscar\nRickey\nRoy\nXavier\nAlphonso\nAntione\nAntwon\nBilly\nBlake\nCasey\nClayton\nCleveland\nClinton\nCornelius\nCornell\nDaryl\nDeandre\nDelano\nDelante\nDelonta\nDemetrius\nEmmanuel\nFred\nGerard\nGlen\nHarvey\nHerman\nJohnny\nKareem\nMalcolm\nMarlon\nMarques\nMarquis\nMicah\nMitchell\nNelson\nNoel\nRandolph\nRashaad\nMichael\nChristopher\nJames\nDavid\nMatthew\nJohn\nWilliam\nJason\nKevin\nRobert\nBrian\nDaniel\nJoseph\nJonathan\nAndrew\nAnthony\nCharles\nJustin\nThomas\nEric\nRichard\nSean\nAaron\nJoshua\nBrandon\nTimothy\nGregory\nMark\nPaul\nAdam\nKenneth\nAlexander\nBenjamin\nMarcus\nNicholas\nRyan\nEdward\nStephen\nPatrick\nJeffrey\nSteven\nAndre\nKeith\nPeter\nDerrick\nRonald\nAntonio\nGeorge\nJeremy\nSamuel\nNathan\nReginald\nJesse\nMaurice\nLarry\nRaymond\nNathaniel\nBryan\nTyrone\nJermaine\nTravis\nCarlos\nJose\nScott\nPhillip\nAntoine\nVincent\nDarryl\nRicardo\nCalvin\nErik\nGary\nOmar\nBrendan\nDerek\nGerald\nIan\nJacob\nVictor\nCarl\nLawrence\nMelvin\nAdrian\nChristian\nDonald\nTerrence\nAlan\nCorey\nCurtis\nTony\nDamien\nLeon\nPhilip\nBernard\nHarold\nJerome\nTroy\nEvan\nJerry\nLamont\nAllen\nColin\nDarnell\nDwayne\nFrank\nJamar\nMarvin\nShaun\nShawn\nZachary\nAlbert\nArthur\nDonnell\nMartin\nMicheal\nRussell\nBobby\nDante\nDarren\nDemetrius\nErnest\nHarry\nHoward\nKelvin\nLeonard\nLeroy\nRashad\nStanley\nTerrance\nWayne\nWillie\nDennis\nDominic\nDonte\nEugene\nHenry\nHerbert\nJamaal\nJohnny\nJuan\nMarc\nRicky\nSeth\nTheodore\nTodd\nVernon\nWesley\nBruce\nBryant\nByron\nClifton\nDewayne\nGeoffrey\nJamal\nJared\nJoel\nKyle\nLuke\nMilton\nPierre\nAlex\nAlvin\nBrent\nCarlton\nCory\nDarrell\nDelonte\nDon\nEdwin\nKareem\nMario\nMiguel\nRandy\nRodney\nTerry\nWarren\nAmir\nClifford\nCornelius\nDamian\nDion\nDustin\nEarl\nFrederick\nJeremiah\nJulian\nKarl\nLamar\nLouis\nLucas\nNoah\nOscar\nAbdul\nAndy\nAustin\nChad\nDale\nDouglas\nDuane\nDwight\nElliot\nFrancis\nGabriel\nJeffery\nJordan\nJorge\nMarques\nTrevor\nWalter\nAlfred\nAntwan\nBradley\nClayton\nDamon\nDaryl\nDevin\nDominique\nDrew\nEddie\nEmanuel\nEmmanuel\nGarrett\nJon\nKendall\nLee\nManuel\nMorgan\nOliver\nRoberto\nRoger\nRoland\nRonnie\nTerence\nAlonzo\nAntione\nAnwar\nBlake\nBrooks\nCasey\nCornell\nDamion\nDarius\nDavon\nEverett\nIsaiah\nIvan\nJamie\nJamil\nJovan\nKristopher\nLloyd\nMarco\nMarlon\nMathew\nMax\nQuentin\nRandolph\nSergio\nShane\nStuart\nTerrell\nWendell\nAli\nCedric\nCharlie\nClarence\nCraig\nCyrus\nDeandre\nDeangelo\nDelante\nDeon\nDevon\nDominick\nEdgar\nEduardo\nEthan\nFloyd\nFrancisco\nGilbert\nGlen\nGlenn\nJajuan\nJay\nJulius\nKurt\nLewis\nLionel\nMarcellus\nMicah\nNeil\nNorman\nOwen\nPreston\nQuinton\nRafael\nRamon\nRaphael\nRay\nSidney\nStefan\nWade\nMichael\nChristopher\nDavid\nJames\nJohn\nRobert\nWilliam\nMatthew\nDaniel\nJason\nKevin\nJoseph\nAndrew\nAnthony\nBrian\nJonathan\nEric\nJustin\nRichard\nAaron\nAdam\nThomas\nCharles\nPatrick\nBenjamin\nBrandon\nGregory\nJoshua\nMark\nTimothy\nSean\nAndre\nMarcus\nAlexander\nJeffrey\nKenneth\nRyan\nStephen\nSteven\nNicholas\nPaul\nSamuel\nAntonio\nPeter\nRonald\nEdward\nBryan\nDonald\nGeorge\nScott\nKeith\nJerome\nDerrick\nJose\nMaurice\nGary\nDerek\nTyrone\nCarlos\nNathan\nNathaniel\nAntoine\nLarry\nPhilip\nPhillip\nReginald\nRicardo\nJeremy\nAdrian\nDouglas\nFrank\nJamal\nJesse\nRodney\nShawn\nCurtis\nJamaal\nTheodore\nMelvin\nVincent\nBrendan\nCarl\nChristian\nTravis\nLawrence\nZachary\nDonnell\nHenry\nIan\nMarc\nRaymond\nAngelo\nCorey\nGerald\nJermaine\nWayne\nWesley\nBradley\nDarrell\nErik\nEugene\nJacob\nJoel\nJuan\nShaun\nTerrence\nVictor\nCalvin\nClarence\nCraig\nDarren\nEdwin\nKyle\nTerrance\nWalter\nWillie\nAlbert\nArthur\nBernard\nBruce\nDarnell\nDarryl\nDennis\nEvan\nHoward\nTerry\nBrett\nDemetrius\nFrederick\nGabriel\nHarold\nKelvin\nLeon\nRussell\nTony\nDonte\nEarl\nTodd\nWarren\nAlan\nAlex\nColin\nDamien\nDarius\nDwayne\nJared\nLouis\nLuis\nMarvin\nMicheal\nOmar\nTroy\nAlfred\nCarlton\nCory\nDamon\nDevin\nDevon\nDominic\nElliot\nErick\nGeoffrey\nJohnny\nMario\nAllen\nAlonzo\nCedric\nClifton\nDante\nDeon\nHarry\nHerbert\nJamar\nJeremiah\nJerry\nJulian\nJulius\nLee\nMarques\nRandy\nTerrell\nVernon\nAhmad\nDaryl\nDelonta\nDewayne\nDuane\nEmmanuel\nErnest\nIsaac\nJaime\nJay\nJordan\nKarl\nMarlon\nMiguel\nRafael\nRicky\nRoy\nStanley\nWendell\nBlake\nClifford\nDelonte\nDion\nGlenn\nIsaiah\nIvan\nJohnathan\nJon\nLamont\nLeonard\nLeroy\nLuke\nMarshall\nOscar\nPierre\nRashad\nRoberto\nRoger\nRoland\nRory\nSeth\nSolomon\nAlvin\nByron\nCharlie\nCornell\nCourtney\nDominique\nDon\nDrew\nDustin\nJeffery\nJimmy\nJulio\nKareem\nKristopher\nLorenzo\nMalcolm\nMalik\nMarco\nMartin\nMilton\nNoah\nOtis\nPablo\nRandall\nRonnie\nTaurean\nTyler\nAlexis\nAntwan\nAnwar\nBarry\nBobby\nBrendon\nBret\nClayton\nClinton\nDanny\nDejuan\nDelante\nDexter\nEddie\nElliott\nEverett\nFloyd\nFranklin\nGarry\nGraham\nGrant\nJorge\nJovan\nKeenan\nLamar\nLance\nLewis\nLonnie\nMarquis\nMitchell\nMorgan\nOlufemi\nOwen\nPreston\nRalph\nReuben\nSergio\nSpencer\nMichael\nChristopher\nDavid\nMatthew\nJames\nJohn\nRobert\nWilliam\nJason\nDaniel\nBrian\nJoseph\nAnthony\nKevin\nAndrew\nJonathan\nCharles\nJustin\nAaron\nBrandon\nMarcus\nThomas\nEric\nNicholas\nJoshua\nGregory\nSteven\nMark\nRichard\nKenneth\nPatrick\nJeffrey\nStephen\nAdam\nBenjamin\nAntonio\nPaul\nAndre\nTimothy\nEdward\nDerrick\nSean\nRonald\nRyan\nAlexander\nPeter\nSamuel\nKeith\nScott\nTyrone\nDonald\nLarry\nJacob\nLawrence\nJeremy\nZachary\nAntoine\nBryan\nGeorge\nNathan\nEugene\nRicardo\nTravis\nVincent\nMaurice\nNathaniel\nDarrell\nJesse\nPhilip\nPhillip\nWalter\nGary\nMelvin\nDouglas\nDwayne\nIan\nRaymond\nReginald\nErik\nJermaine\nDerek\nJerome\nJose\nRussell\nWayne\nBrendan\nChristian\nTerrence\nCalvin\nCarlos\nCurtis\nDarryl\nOmar\nVictor\nAlan\nDonte\nGerald\nKyle\nMarvin\nArthur\nDemetrius\nDennis\nDonnell\nFrederick\nJamal\nMarc\nShawn\nErnest\nEvan\nGabriel\nAlex\nCarl\nColin\nDante\nDarnell\nDominique\nJoel\nJordan\nLeon\nMartin\nMicheal\nAdrian\nCorey\nDustin\nRonnie\nClarence\nDamien\nDevin\nFrank\nJeremiah\nLouis\nTheodore\nBrent\nCarlton\nDarren\nDion\nDominic\nEdwin\nGeoffrey\nJamaal\nLee\nLeonard\nLorenzo\nRicky\nRoger\nTroy\nVernon\nAllen\nAustin\nBradley\nBruce\nCraig\nHarry\nHenry\nIsaac\nJack\nJared\nJulian\nJulius\nLewis\nSpencer\nTerrance\nTony\nAlbert\nAlonzo\nBrett\nByron\nCasey\nFranklin\nHarold\nJamar\nJavier\nJay\nJohnnie\nLionel\nRodney\nShaun\nTodd\nWillie\nCedric\nCory\nDeangelo\nEthan\nGlenn\nHarrison\nHoward\nIvan\nJovan\nMax\nSeth\nTrevor\nTristan\nWesley\nBobby\nBryant\nCornelius\nDelonte\nDeon\nDewayne\nEmanuel\nEverett\nGlen\nJeffery\nJohnathan\nJohnny\nLamont\nManuel\nNoah\nPierre\nRaphael\nStanley\nSteve\nTerry\nWallace\nWarren\nAlexis\nAlfred\nAlvin\nChad\nDarius\nDevon\nDon\nEarl\nEmmanuel\nJamel\nJerry\nJimmy\nJuan\nJulio\nLamar\nLoren\nMarques\nMiguel\nNeil\nQuentin\nRalph\nRandolph\nRandy\nRashad\nAkeem\nAntione\nBlake\nClifford\nClifton\nCortez\nDamian\nDamon\nDaren\nDarin\nDaryl\nDeandre\nDelonta\nDonta\nDuane\nEddie\nEduardo\nEli\nFred\nFreddie\nGavin\nGrant\nHarvey\nJarrett\nJessie\nJon\nJorge\nKelvin\nLuis\nMarlon\nMarquis\nMicah\nMilton\nMorgan\nNorman\nRamon\nRoland\nRoy\nShannon\nStuart\nTerence\nTyler\nMichael\nChristopher\nJames\nDavid\nMatthew\nDaniel\nJohn\nRobert\nWilliam\nAnthony\nJonathan\nKevin\nJoseph\nBrian\nAndrew\nBrandon\nJason\nMarcus\nEric\nJoshua\nCharles\nJustin\nPatrick\nThomas\nSteven\nAdam\nMark\nRyan\nSean\nAlexander\nNicholas\nStephen\nGregory\nTimothy\nRichard\nBenjamin\nRonald\nAndre\nKenneth\nJeffrey\nAaron\nAntonio\nPaul\nEdward\nSamuel\nPeter\nKeith\nCarlos\nDonald\nMaurice\nAntoine\nGeorge\nZachary\nIan\nLarry\nReginald\nDerrick\nTyrone\nBryan\nBrendan\nJerome\nNathaniel\nCorey\nEvan\nLawrence\nScott\nVincent\nNathan\nTravis\nRaymond\nDarrell\nDarryl\nJeremy\nTerrence\nJermaine\nAdrian\nJose\nKyle\nPhillip\nRicardo\nDennis\nHenry\nLeon\nPhilip\nShawn\nCalvin\nDouglas\nChristian\nDevin\nJesse\nOmar\nTony\nDerek\nDominic\nErik\nFrank\nGary\nJamal\nMarvin\nWalter\nBradley\nDevon\nEarl\nEdwin\nFrancis\nJuan\nVernon\nCarl\nColin\nDante\nDwayne\nJacob\nMelvin\nTroy\nAlan\nBruce\nDarnell\nErnest\nJoel\nMicheal\nWillie\nCurtis\nLuis\nMario\nPierre\nVictor\nWayne\nAlex\nArthur\nCraig\nDarren\nDelonte\nDemetrius\nDominick\nDonnell\nTerry\nWarren\nWesley\nByron\nClarence\nEmmanuel\nJamar\nJulian\nMarquis\nShaun\nAllen\nBrent\nDominique\nDonte\nIsaac\nJeffery\nJohnathan\nJulius\nQuentin\nTerrell\nAlphonso\nBobby\nBryant\nCarlton\nDarius\nEthan\nEugene\nFrederick\nGerald\nGlenn\nIvan\nJohnny\nKarl\nLance\nLeonard\nLorenzo\nNicolas\nRandy\nRussell\nStephon\nTerrance\nAntwan\nBernard\nBilly\nBlake\nCedric\nChad\nGabriel\nHerbert\nJamaal\nJared\nJerry\nLamont\nLouis\nMarc\nMartin\nMitchell\nPedro\nRodney\nRoger\nStanley\nTheodore\nAlbert\nAntwon\nClifford\nClifton\nDamien\nDelante\nDeon\nDeonte\nDexter\nDwight\nElliott\nGarrett\nGeoffrey\nJarrell\nJon\nJordan\nKareem\nKristopher\nLamar\nLee\nLewis\nRicky\nRoderick\nRoland\nRoss\nTaurean\nTerence\nTrevor\nAlvin\nAndres\nBrett\nChris\nClayton\nConor\nDanny\nDaryl\nDavon\nErick\nFranklin\nJack\nJamie\nJavier\nJeremiah\nJimmy\nJorge\nLonnie\nLuke\nMarco\nMarshall\nMiguel\nRafael\nRagene\nSeth\nSimon\nSpencer\nStuart\nTodd\nTyler\nXavier\nAlfred\nAngelo\nArnold\nBrendon\nCory\nDeangelo\nDelonta\nDesmond\nDion\nDrew\nDustin\nEverett\nFernando\nFrancesco\nGraham\nHarold\nHassan\nIsaiah\nJaime\nKelvin\nKendall\nLionel\nLogan\nMalcolm\nMarcellus\nMarques\nNelson\nNoel\nOscar\nPreston\nQuinton\nRandolph\nStewart\nMichael\nChristopher\nJames\nMatthew\nDaniel\nDavid\nRobert\nJohn\nWilliam\nJonathan\nAndrew\nAnthony\nKevin\nJoseph\nBrandon\nBrian\nJason\nJoshua\nCharles\nThomas\nEric\nNicholas\nMarcus\nSean\nRyan\nSteven\nAlexander\nGregory\nJustin\nKenneth\nPatrick\nRichard\nStephen\nAntonio\nBenjamin\nMark\nPaul\nAdam\nAaron\nTimothy\nAndre\nJeffrey\nKeith\nPeter\nDerrick\nEdward\nRonald\nCarlos\nSamuel\nJeremy\nMaurice\nZachary\nPhillip\nReginald\nTyrone\nScott\nGeorge\nNathaniel\nVictor\nAntoine\nLarry\nChristian\nGary\nJuan\nRaymond\nDonald\nJacob\nKyle\nLawrence\nEdwin\nJose\nBryan\nCalvin\nCarl\nJamal\nNathan\nRicardo\nDerek\nHenry\nJesse\nTravis\nDarryl\nIan\nTheodore\nColin\nDouglas\nDarnell\nJerome\nVincent\nDarrell\nDemetrius\nDevin\nDonte\nDwayne\nEvan\nMarc\nAdrian\nCurtis\nEugene\nFrederick\nKelvin\nPhilip\nRussell\nTerrance\nTyler\nWayne\nAlex\nBernard\nCorey\nCraig\nDarren\nDelonte\nDonnell\nJoel\nJordan\nLuis\nMarvin\nOmar\nBradley\nDominic\nLeon\nTerrence\nCarlton\nFrank\nGerald\nJamar\nJulian\nMartin\nMelvin\nRicky\nRodney\nWesley\nAllen\nArthur\nBrendan\nDennis\nErik\nGabriel\nPierre\nTrevor\nWarren\nWillie\nDamien\nDaryl\nDavon\nDevon\nEdgar\nEmmanuel\nFranklin\nGeoffrey\nJared\nJohnathan\nLamont\nLouis\nOscar\nByron\nCasey\nClifton\nDarius\nDion\nDrew\nEarl\nJay\nJeffery\nJermaine\nMax\nNelson\nTerence\nAntwan\nBlake\nBruce\nChad\nGordon\nIsaac\nIvan\nLorenzo\nMicheal\nRandy\nRoss\nShaun\nShawn\nStephon\nTerrell\nTerry\nTristan\nTroy\nAlan\nAlvin\nBrett\nDeandre\nDeonte\nHarry\nJerry\nJon\nMaxwell\nRoberto\nRoderick\nRoland\nRonnie\nTony\nVernon\nWalter\nAlbert\nAlexis\nAlfred\nAndres\nBobby\nCaleb\nCedric\nClarence\nClifford\nCory\nDeangelo\nErick\nErnest\nJamaal\nJeremiah\nJorge\nManuel\nMario\nRandolph\nStanley\nStephan\nSylvester\nAlonzo\nAustin\nBradford\nBryant\nCameron\nChris\nClayton\nCody\nDante\nDeon\nDewayne\nDexter\nDylan\nEddie\nElliott\nFelix\nFrancis\nGarrett\nGlenn\nJamie\nJarrell\nJayson\nJohnny\nKellen\nKeon\nLee\nLeonard\nLeroy\nLloyd\nMarlon\nMarquis\nPreston\nRoger\nSherman\nAli\nAshley\nClinton\nCornell\nDanny\nDelonta\nDesmond\nDominique\nDomonic\nDon\nDuane\nDurell\nDwight\nEduardo\nEverett\nFred\nHerbert\nHugh\nJamel\nJesus\nJulio\nMalik\nMarshall\nMathew\nMiguel\nMitchell\nMohamed\nNoah\nOwen\nRafael\nRamon\nRashad\nRaul\nSeth\nShane\nStefan\nTaylor\nTodd\nMichael\nChristopher\nDavid\nJames\nDaniel\nMatthew\nAndrew\nWilliam\nRobert\nJohn\nBrandon\nAnthony\nJoseph\nKevin\nAlexander\nCharles\nJonathan\nJoshua\nEric\nBrian\nMarcus\nJason\nSean\nThomas\nJustin\nNicholas\nRichard\nStephen\nTimothy\nPatrick\nBenjamin\nKenneth\nRyan\nAaron\nMark\nAndre\nGregory\nSamuel\nJeremy\nPaul\nJeffrey\nSteven\nAntonio\nEdward\nAdam\nDerrick\nBryan\nPeter\nKyle\nZachary\nJose\nKeith\nReginald\nRonald\nNathaniel\nCarlos\nPhillip\nChristian\nJesse\nAntoine\nDominic\nJamal\nNathan\nCalvin\nDarrell\nDarryl\nDerek\nDonald\nGeorge\nAdrian\nIan\nMaurice\nPhilip\nDennis\nLawrence\nWillie\nDarnell\nFrank\nJuan\nRicardo\nTyrone\nCorey\nDante\nDevin\nDouglas\nLarry\nMelvin\nScott\nAntwan\nEdwin\nEvan\nGerald\nRaymond\nCraig\nDwayne\nErik\nJacob\nVictor\nVincent\nAlex\nBradley\nDominique\nMartin\nMarvin\nRodney\nTony\nTravis\nBrendan\nBrett\nJerome\nJoel\nOscar\nTerrell\nDelonte\nErnest\nGary\nJeremiah\nMicheal\nOmar\nCarl\nDamien\nDarius\nEugene\nGabriel\nHenry\nJulian\nKelvin\nLuis\nTerrance\nTerrence\nTerry\nWayne\nAllen\nColin\nDarren\nEarl\nLamar\nLorenzo\nMax\nWesley\nCurtis\nDeangelo\nDonte\nDustin\nJeffery\nJermaine\nJohnny\nLuke\nMarc\nShawn\nWalter\nBarry\nBryant\nCameron\nClarence\nCory\nDemetrius\nDexter\nFrederick\nHarold\nJohnathan\nJordan\nNoah\nTroy\nAngelo\nAustin\nBlake\nDavon\nDeandre\nDevon\nDonnell\nDrew\nEmmanuel\nGarrett\nJamar\nLamont\nLee\nLouis\nMalcolm\nManuel\nMilton\nPierre\nRandy\nTheodore\nTrevor\nBernard\nByron\nClifton\nCornell\nDeonte\nDewayne\nDion\nHerbert\nJon\nJorge\nLeroy\nOliver\nRandall\nRashad\nRicky\nStanley\nAlexis\nArthur\nBruce\nDelonta\nDesmond\nFranklin\nGeoffrey\nHoward\nJared\nJovan\nJulius\nKarl\nLance\nMarquis\nRoger\nRoss\nStefan\nTodd\nTyler\nWarren\nAhmad\nAlan\nAlec\nAlonzo\nCarlton\nChad\nChase\nConor\nDana\nDaryl\nDemarcus\nDerrell\nDonovan\nDorian\nDylan\nEddie\nFernando\nGlenn\nJamel\nJerry\nKeenan\nLeon\nLucas\nMarlon\nMarshall\nMathew\nOrlando\nRaphael\nStephon\nTyree\nAlbert\nAlejandro\nAlfonzo\nBobby\nCornelius\nDamon\nDean\nDelante\nDeon\nEthan\nFrancisco\nGavin\nGerard\nGordon\nGraham\nHugh\nIra\nJamaal\nJavier\nJohnnie\nKareem\nKwame\nLeonard\nLewis\nLloyd\nMarco\nMitchell\nMohamed\nMohammad\nNeil\nNicolas\nQuentin\nRafael\nRoland\nRonnie\nRoy\nRussell\nShaun\nSimon\nStephan\nTomas\nWendell\nXavier\nMichael\nChristopher\nDavid\nJames\nJohn\nDaniel\nWilliam\nAndrew\nAnthony\nMatthew\nKevin\nRobert\nBrandon\nBrian\nAlexander\nJonathan\nEric\nJoseph\nThomas\nJoshua\nNicholas\nJustin\nCharles\nJason\nPatrick\nMarcus\nBenjamin\nRyan\nTimothy\nAaron\nAntonio\nGregory\nRichard\nSteven\nJeffrey\nKenneth\nSean\nStephen\nAndre\nPaul\nSamuel\nJeremy\nEdward\nMark\nKyle\nRonald\nNathaniel\nJamal\nJose\nKeith\nDerrick\nZachary\nAdam\nReginald\nMaurice\nRicardo\nNathan\nPeter\nBryan\nGeorge\nTyrone\nTravis\nDerek\nIan\nJacob\nScott\nCarlos\nChristian\nDelonte\nDominic\nJerome\nPhillip\nGary\nJordan\nGabriel\nVictor\nColin\nVincent\nAntoine\nDonte\nPhilip\nRaymond\nAlex\nBrendan\nDarius\nDarryl\nEvan\nJuan\nCarl\nDevin\nDonald\nDouglas\nJesse\nTroy\nWayne\nCalvin\nCurtis\nDarren\nHenry\nMarvin\nCorey\nDarnell\nDeangelo\nMarc\nBrett\nCameron\nDennis\nLawrence\nOscar\nRodney\nTerrence\nAllen\nAdrian\nAustin\nBradley\nDeon\nErik\nKelvin\nLorenzo\nLuis\nMartin\nMax\nTerrell\nDante\nEmmanuel\nLarry\nMalcolm\nRicky\nAntwan\nEdwin\nLouis\nMarco\nRashad\nTerrance\nTerry\nTony\nWesley\nBobby\nClarence\nCraig\nDemetrius\nDevon\nGerald\nHector\nJeremiah\nJoel\nJohnathan\nLamar\nLamont\nLeonard\nMaxwell\nMicheal\nNorman\nRussell\nSpencer\nStephon\nAlan\nAlonzo\nCory\nDarrell\nDonnell\nDustin\nFranklin\nJared\nJeffery\nJermaine\nKristopher\nLee\nLuke\nRamon\nShawn\nTaylor\nTheodore\nTodd\nCarlton\nChad\nCornell\nDaryl\nDavon\nDelante\nDominique\nDwayne\nEdgar\nFrancis\nFrederick\nIsaac\nJay\nJerry\nLeon\nMelvin\nQuentin\nSeth\nWalter\nAlbert\nAngelo\nArthur\nBruce\nDamien\nDion\nErnest\nEthan\nGeoffrey\nHarold\nJack\nJamar\nJavier\nJulian\nJulius\nMario\nMarshall\nNicolas\nTyler\nAlexis\nAvery\nClifton\nCody\nDamian\nDandre\nDeandre\nEduardo\nEli\nElijah\nElliott\nFreddie\nGarrett\nGlenn\nJavon\nJorge\nNoah\nOmar\nRico\nRoderick\nRoss\nShane\nShaun\nTrevor\nWarren\nWillie\nAbdul\nAlvin\nAnton\nBernard\nBryant\nBryce\nCasey\nCordell\nCortez\nDangelo\nDorian\nEmanuel\nFrank\nHarrison\nHarry\nHoward\nIsaiah\nJaime\nJohnny\nOwen\nRafael\nRalph\nRandall\nRandy\nSylvester\nAllan\nAlphonzo\nBilly\nBlake\nBrent\nByron\nCedric\nConor\nCornelius\nDalonte\nDean\nDeonte\nDexter\nDionte\nDonovan\nDrew\nDwight\nDylan\nEarl\nErick\nGavin\nGlen\nHerbert\nJackson\nJarrett\nJean\nJerel\nJulio\nKarl\nKendrick\nKhaled\nMalik\nManuel\nMarlon\nMarquis\nMiles\nOliver\nPierre\nQuintin\nRoger\nRonnie\nSebastian\nSergio\nSimon\nStanley\nTerence\nTristan\nTyrell\nVernon\nMichael\nChristopher\nJames\nDavid\nDaniel\nMatthew\nJohn\nRobert\nAnthony\nWilliam\nKevin\nAndrew\nJoseph\nBrandon\nJonathan\nAlexander\nBrian\nJustin\nCharles\nJoshua\nEric\nNicholas\nRyan\nThomas\nMarcus\nAntonio\nSamuel\nTimothy\nBenjamin\nPatrick\nAaron\nSean\nGregory\nSteven\nJason\nKenneth\nMark\nRichard\nStephen\nAndre\nKyle\nZachary\nPaul\nDerrick\nJeffrey\nRonald\nEdward\nAdam\nBryan\nJose\nNathaniel\nJeremy\nKeith\nPeter\nTyrone\nJacob\nChristian\nJamal\nReginald\nMaurice\nAntoine\nDennis\nDominic\nIan\nTravis\nDonald\nNathan\nRodney\nGeorge\nJuan\nColin\nJerome\nPhillip\nCameron\nDouglas\nHenry\nPhilip\nCalvin\nCarlos\nMelvin\nWalter\nDarrell\nScott\nDarryl\nJesse\nDarnell\nDelonte\nEdwin\nVincent\nAlex\nDonte\nLawrence\nAdrian\nDeandre\nGary\nLarry\nMarvin\nOscar\nTony\nTroy\nBrendan\nCarl\nCorey\nDarius\nDerek\nDevin\nDevon\nLeonard\nRicardo\nShawn\nTerrance\nBryant\nCurtis\nErik\nEvan\nTyler\nDarren\nDavon\nDemetrius\nDonnell\nJared\nJulian\nLamont\nMario\nRaymond\nTerrell\nTerrence\nVictor\nWayne\nByron\nDante\nDelante\nLuis\nMax\nTrevor\nWesley\nAustin\nEugene\nFrederick\nJohnathan\nKelvin\nLuke\nMartin\nBruce\nCory\nDeangelo\nDominique\nEmmanuel\nJamar\nJermaine\nJorge\nLamar\nLeon\nLeroy\nLouis\nMicheal\nPierre\nTheodore\nVernon\nAlonzo\nAntwan\nBradley\nErnest\nGabriel\nIsaac\nJoel\nRicky\nRoger\nTyrell\nAlan\nCasey\nClarence\nDonovan\nDwayne\nFrancis\nHarry\nJerry\nJordan\nKristopher\nLee\nMalcolm\nMarquis\nMiguel\nQuentin\nRandy\nRaphael\nRussell\nTerence\nAhmed\nArthur\nBernard\nBrett\nChase\nGerald\nHarrison\nMarc\nRoderick\nRonnie\nShane\nSpencer\nWarren\nWillie\nXavier\nBranden\nCarlton\nCedric\nClayton\nConnor\nCordell\nDale\nDesmond\nEarl\nEddie\nEthan\nFrancisco\nFrank\nHarold\nJulius\nLorenzo\nLucas\nMaxwell\nOrlando\nRico\nStanley\nTerry\nAlbert\nAntwon\nClifton\nCollin\nConor\nCraig\nDalonte\nElijah\nJeffery\nJeremiah\nJohnny\nKendall\nLewis\nMarcellus\nMiles\nMohamed\nOmar\nRoland\nStephon\nSylvester\nAllan\nBobby\nDandre\nDion\nDrew\nEdgar\nElliott\nEverett\nFranklin\nGarrett\nHoward\nIvan\nJarrell\nKhalid\nLionel\nManuel\nMarcel\nMarlon\nMathew\nMilton\nNoah\nNorman\nPedro\nQuintin\nRandall\nSergio\nShaun\nSheldon\nStefan\nStephan\nTodd\nAlberto\nAllen\nAlvin\nAmir\nAndres\nAntione\nCesar\nClinton\nDamien\nDarrin\nDaryl\nDeon\nDevaughn\nDevonte\nDewayne\nDexter\nDominick\nDuane\nDwight\nDylan\nEzra\nJake\nJay\nJoe\nJulio\nKeon\nKerry\nLloyd\nLogan\nMalik\nMarshall\nMauricio\nMicah\nMohammad\nMorgan\nNelson\nNicolas\nRashad\nRaynard\nRoberto\nRoss\nSam\nSebastian\nSeth\nSimon\nTavon\nTrevon\nMichael\nChristopher\nJames\nDavid\nWilliam\nAnthony\nJohn\nMatthew\nKevin\nRobert\nJoseph\nDaniel\nAndrew\nAshley\nBrandon\nEric\nAlexander\nJoshua\nBrian\nJonathan\nBrittany\nBenjamin\nJessica\nMarcus\nCharles\nThomas\nNicholas\nAaron\nAntonio\nJustin\nRyan\nSamuel\nSean\nPatrick\nTimothy\nStephen\nSarah\nElizabeth\nJasmine\nSteven\nTiffany\nJennifer\nJeffrey\nLauren\nGregory\nMark\nRichard\nNicole\nRachel\nDanielle\nKeith\nEdward\nChristina\nDerrick\nKatherine\nAmanda\nStephanie\nAdam\nAlexandra\nPaul\nAndre\nKenneth\nEmily\nJamal\nRebecca\nJose\nSamantha\nZachary\nCourtney\nPeter\nTravis\nAndrea\nJacob\nChristian\nKyle\nGeorge\nRonald\nCarlos\nJeremy\nIan\nMary\nDelonte\nErica\nMaurice\nNathan\nTyrone\nJason\nMichelle\nAnna\nJordan\nJulia\nMelissa\nPhillip\nShannon\nVictoria\nKelly\nCatherine\nDominique\nEvan\nPhilip\nReginald\nAlexis\nLaura\nLawrence\nVictor\nAmber\nCaroline\nCrystal\nDavon\nDominic\nHannah\nKiara\nMegan\nVincent\nBryan\nKimberly\nScott\nBrendan\nDevin\nDonald\nKendra\nAntoine\nBianca\nCurtis\nDeandre\nDonte\nErin\nKathryn\nTaylor\nBryant\nCameron\nCorey\nDarius\nEbony\nMargaret\nAngela\nBrittney\nChristine\nDerek\nHeather\nMelvin\nTiara\nTyler\nAdrian\nCaitlin\nCalvin\nDarnell\nDeangelo\nGary\nJerome\nJesse\nJuan\nMonique\nNathaniel\nRicardo\nShawn\nTony\nWalter\nAlicia\nDarrell\nDemetrius\nMaria\nRaymond\nChelsea\nDevon\nMicheal\nMolly\nSara\nAlex\nCory\nDana\nEdwin\nJacqueline\nKristen\nLuis\nMarvin\nTheodore\nArthur\nDouglas\nDwayne\nFrederick\nGarrett\nJamie\nJohnathan\nJulian\nLarry\nTerrell\nVeronica\nWayne\nCarl\nDarren\nDarryl\nDennis\nGerald\nJorge\nLamar\nLindsay\nMonica\nNatalie\nNatasha\nRodney\nStephon\nTerry\nApril\nAriel\nDiana\nHenry\nJeffery\nKathleen\nLorenzo\nMartin\nOlivia\nOscar\nTyrell\nVernon\nWesley\nAllen\nAllison\nAngel\nAntwan\nAustin\nBritney\nClaire\nColin\nDeonte\nEdgar\nEmmanuel\nGabriel\nJohnny\nKelvin\nLeah\nMarquis\nRashad\nRico\nSandra\nTamika\nTerrance\nTerrence\nWhitney\nAlvin\nAmy\nBabyboy\nCarlton\nDonnell\nErika\nEugene\nLeon\nLouis\nMeghan\nPatricia\nRenee\nRussell\nXavier\nAdrienne\nAnne\nAvery\nBrenda\nDaryl\nErik\nFrancisco\nIsaac\nJermaine\nJr\nKendrick\nKrystal\nLeonard\nLeslie\nLisa\nLucas\nMalcolm\nMiguel\nMorgan\nOmar\nAlan\nArielle\nCarolyn\nCynthia\nDewayne\nDonovan\nDylan\nEmma\nGabrielle\nIvan\nJared\nKaren\nKelsey\nMarissa\nMelanie\nMia\nRandolph\nSabrina\nSophia\nTierra\nVanessa\nWarren\nWillie\nAlbert\nAlison\nAlyssa\nAna\nAshleigh\nBarry\nBriana\nByron\nClarence\nDelonta\nDomonique\nErnest\nFrancis\nGeoffrey\nJade\nJamar\nKatrina\nKristina\nMadeline\nMarc\nMax\nMicah\nNicolas\nOctavia\nPierre\nRamon\nRandy\nRaphael\nRobin\nSade\nSergio\nAbigail\nAlisha\nAngelo\nBernard\nCandace\nCandice\nCasey\nCraig\nDanny\nFernando\nHelen\nHoward\nJazmine\nJeremiah\nJerry\nJillian\nJulie\nJulius\nKara\nKendall\nKristin\nLamont\nLindsey\nLuke\nMathew\nMitchell\nNancy\nPatrice\nSeth\nSimone\nSpencer\nTheresa\nTiana\nAli\nAlice\nAlonzo\nAndres\nBrittani\nCamille\nChanel\nClifton\nCollin\nDamon\nDelante\nDiamond\nFelicia\nFrank\nGabriella\nGlenn\nHarry\nHerman\nIsaiah\nJaime\nJamaal\nJavier\nJoy\nJustine\nKayla\nKiana\nLatasha\nMadeleine\nMario\nMaxwell\nMaya\nMilton\nMiriam\nMohamed\nMohammad\nNina\nNorman\nOliver\nOrlando\nPortia\nRoss\nShane\nSimon\nTerence\nTodd\nTracy\nTroy\nAdriana\nAsia\nBobby\nBradley\nBrett\nBridget\nBrooke\nBruce\nChase\nClaudia\nDe\nDenise\nDion\nEduardo\nElena\nEli\nElisabeth\nEmanuel\nEthan\nHaley\nIkea\nJanelle\nJarrell\nJean\nJoel\nKatie\nKirk\nLatisha\nLatoya\nLeroy\nLogan\nMartha\nMercedes\nNelson\nPerry\nRachael\nRoberto\nRonnie\nTanisha\nTavon\nTrevor\nTristan\nUn\nZoe\nAbdul\nAlberto\nAlejandro\nAlexandria\nAlfred\nAlphonso\nAsha\nBarbara\nBilly\nBrady\nBrandi\nBrendon\nCara\nCassandra\nChantelle\nCharlotte\nChiquita\nClayton\nCornelius\nCristian\nDandre\nDangelo\nDante\nDeon\nDesmond\nDrew\nDustin\nEleanor\nEllen\nFrances\nFranklin\nGerard\nGrace\nHakeem\nHarvey\nHilary\nHugo\nJanae\nJanee\nJanet\nJocelyn\nKamal\nKelley\nKelli\nKristopher\nLakeisha\nLondon\nMackenzie\nManuel\nMarcel\nMarco\nMarkus\nMarquita\nMeaghan\nMeredith\nMonet\nNadia\nNeil\nNora\nOwen\nPaige\nPrincess\nQuinton\nRalph\nRandall\nRashida\nRoy\nRuth\nShaun\nSophie\nStanley\nTamara\nTatiana\nTommy\nValencia\nValerie\nVirginia\nYolanda\nAkeem\nAlesha\nAlissa\nAmir\nAntwon\nArsenio\nBeatrice\nBlair\nBrianna\nCedric\nChloe\nCiara\nCierra\nClinton\nColleen\nConor\nDiego\nDionne\nDominick\nDominque\nEarl\nElise\nElliot\nEmilie\nEva\nEvelyn\nFatima\nFemale\nFrancesca\nGavin\nGeorgia\nGrant\nHolly\nIbrahim\nIndia\nIngrid\nIsabel\nIsiah\nJack\nJaclyn\nJaleesa\nJerrell\nJessie\nJimmy\nJon\nJosue\nJoyce\nJulio\nKarla\nKatelyn\nKeenan\nKenny\nKia\nKristian\nKurt\nLatonya\nLewis\nLiam\nLionel\nLloyd\nLonnie\nLucy\nMarie\nMarquette\nMartina\nMaximilian\nMiles\nNichelle\nNikko\nObinna\nParis\nPrecious\nQuentin\nRafael\nRashaad\nRegina\nRochelle\nRoderick\nRoger\nRolando\nRonnell\nSasha\nSharon\nSheila\nSheldon\nSolomon\nStacey\nStefan\nSterling\nStewart\nStuart\nSuzanne\nTara\nTeresa\nTia\nTiera\nToni\nMichael\nChristopher\nJames\nDavid\nWilliam\nMatthew\nDaniel\nAndrew\nKevin\nJohn\nRobert\nAnthony\nJoshua\nBrandon\nJoseph\nBrian\nCharles\nNicholas\nJonathan\nEric\nThomas\nAlexander\nAntonio\nSteven\nAaron\nSamuel\nRyan\nMarcus\nSean\nBenjamin\nAndre\nPatrick\nRichard\nTimothy\nGregory\nJeffrey\nJustin\nMark\nKenneth\nZachary\nEdward\nStephen\nJose\nKeith\nCarlos\nPaul\nAdam\nJamal\nRonald\nKyle\nBrittany\nPeter\nBryan\nGeorge\nJason\nNathaniel\nDerrick\nChristian\nJeremy\nTyrone\nDarius\nDelonte\nJordan\nIan\nMaurice\nReginald\nTyler\nVincent\nDavon\nJesse\nNathan\nPhillip\nRaymond\nTravis\nBrendan\nStephon\nDarnell\nDonald\nJacob\nLuis\nDevin\nGabriel\nJuan\nAshley\nDominic\nDonte\nGary\nMicheal\nAntoine\nErik\nMarvin\nVictor\nCorey\nDeandre\nDevon\nEmily\nJasmine\nLawrence\nRodney\nCameron\nShawn\nTony\nDarrell\nEvan\nHenry\nJulian\nColin\nCurtis\nDeangelo\nDennis\nDominique\nElizabeth\nJohnathan\nLauren\nRicardo\nTheodore\nBabyboy\nJerome\nPhilip\nStephanie\nAdrian\nDemetrius\nLorenzo\nAlex\nCalvin\nCourtney\nDarryl\nDonnell\nFrank\nSarah\nWayne\nAlexandra\nAmanda\nAustin\nDanielle\nDwayne\nJessica\nJoel\nKelvin\nLarry\nMalcolm\nRussell\nTroy\nClarence\nDouglas\nEdwin\nLamont\nLouis\nMartin\nMax\nScott\nTiffany\nWalter\nWillie\nBradley\nDarren\nEthan\nMarc\nMarquis\nNoah\nTerrell\nTerrence\nVictoria\nDerek\nJared\nMelvin\nMorgan\nTerrance\nAnna\nAntwan\nArthur\nCarl\nDeon\nDeonte\nErnest\nGerald\nJeremiah\nJohnny\nKatherine\nOmar\nRachel\nRebecca\nTyrell\nAlonzo\nCatherine\nDamon\nDylan\nJavier\nJennifer\nNelson\nRoderick\nSamantha\nTavon\nTaylor\nTerry\nVernon\nWesley\nXavier\nAlan\nAlexis\nAllen\nAmber\nBaby\nBernard\nBryant\nByron\nConnor\nDamien\nDejuan\nEarl\nEdgar\nElijah\nHoward\nIsaac\nJerry\nKelly\nKendall\nLaura\nLeon\nLucas\nMalik\nManuel\nMelissa\nNicole\nRamon\nRico\nRoss\nSpencer\nAlbert\nAshton\nBianca\nClifton\nCraig\nDelonta\nEmmanuel\nErick\nGarrett\nGlenn\nHarry\nJavon\nJorge\nJulia\nKeenan\nLamar\nMarquette\nRashad\nStanley\nAngela\nAnton\nAntwon\nCarlton\nChristina\nCody\nCory\nDangelo\nDanny\nDaryl\nDerrell\nDomonique\nEbony\nErica\nEugene\nFranklin\nGavin\nGeoffrey\nHarold\nIsaiah\nJermaine\nJulio\nJulius\nKimberly\nMarcel\nMarco\nMargaret\nMarkus\nMathew\nMaxwell\nMiguel\nMyles\nPatricia\nPreston\nQuinton\nRafael\nRaphael\nRoger\nRoland\nRonnie\nSergio\nSeth\nShaun\nTiara\nTrevor\nAkeem\nAngel\nAvery\nBrent\nCaitlin\nCaroline\nCierra\nCornelius\nCrystal\nDana\nDominick\nDonovan\nDustin\nDwight\nEli\nErin\nJay\nJeffery\nJerel\nJon\nKadeem\nKareem\nKiara\nKorey\nKristopher\nLuther\nMarcell\nMaria\nMario\nMegan\nMohamed\nNatalie\nNeil\nOwen\nRicky\nShane\nStefan\nTara\nAlejandro\nAllison\nAndrea\nAngelo\nAsia\nBabygirl\nBrett\nChad\nClifford\nCynthia\nDelante\nDenis\nDenzel\nDesmond\nDexter\nDiamond\nDontae\nDonzell\nElmer\nEverett\nFernando\nFrederick\nGraham\nHannah\nIvan\nJack\nJamaal\nJamel\nJoe\nJohnnie\nJosue\nKaitlin\nKelsey\nLarnell\nLloyd\nMadeline\nMary\nMelanie\nMichelle\nMonique\nNina\nOlivia\nOscar\nParis\nQuentin\nQuintin\nRandy\nRickey\nRoy\nSimon\nSterling\nTerence\nTyron\nWhitney\nWinston\nAbigail\nAdrienne\nAhmad\nAlexandria\nAlicia\nAnne\nArmani\nArron\nBobby\nBrittney\nBruce\nCaleb\nCasey\nCedric\nChase\nClayton\nDamian\nDante\nDelontae\nDevaughn\nDiana\nEddie\nElias\nFrancis\nFrancisco\nGabrielle\nGilbert\nHarrison\nHector\nJabari\nJacqueline\nJaron\nJerrod\nJovan\nKathleen\nKendrick\nKenny\nKristen\nKwame\nLee\nLester\nLisa\nLuke\nMarissa\nMeghan\nMiles\nMilton\nOmari\nOrlando\nPerry\nRashaad\nRobin\nSara\nShannon\nSheldon\nTevin\nThaddeus\nTierra\nValerie\nWarren\nMichael\nChristopher\nJames\nWilliam\nJohn\nDavid\nAnthony\nRobert\nMatthew\nAlexander\nKevin\nDaniel\nJoshua\nAndrew\nBrandon\nJonathan\nJoseph\nEric\nMarcus\nCharles\nBrian\nNicholas\nAntonio\nThomas\nRyan\nAndre\nSamuel\nAaron\nPatrick\nGregory\nJustin\nKenneth\nTimothy\nChristian\nSean\nBenjamin\nMark\nJose\nStephen\nJacob\nJamal\nZachary\nPeter\nRichard\nKyle\nDelonte\nAdam\nSteven\nPaul\nRonald\nCarlos\nJordan\nKeith\nDarius\nBryan\nDeandre\nTravis\nGeorge\nEdward\nJeffrey\nDeangelo\nMaurice\nDerrick\nReginald\nRicardo\nDavon\nDominique\nHenry\nMalcolm\nNathan\nNathaniel\nTyler\nJeremy\nLawrence\nEvan\nMicheal\nPhillip\nCurtis\nDemetrius\nDouglas\nGabriel\nTyrone\nDevin\nStephon\nCalvin\nCorey\nDarnell\nDarrell\nTerrence\nVincent\nDominic\nErik\nEdwin\nGerald\nIan\nRaymond\nDevon\nDwayne\nJulian\nPhilip\nWalter\nCameron\nJason\nJuan\nMarquis\nVictor\nDarryl\nKelvin\nMelvin\nTerrell\nColin\nDonte\nTroy\nXavier\nAdrian\nDonald\nMax\nTaylor\nDante\nDenzel\nDerek\nDylan\nFrank\nFranklin\nGarrett\nGary\nJerome\nJohnathan\nLuis\nNoah\nRashad\nTony\nAntwan\nDennis\nDonnell\nIsaac\nJared\nJavier\nJermaine\nJesse\nJoel\nLamont\nLarry\nLorenzo\nRodney\nWayne\nWesley\nAlex\nAlvin\nEmmanuel\nScott\nBrendan\nCarl\nIsaiah\nMarvin\nRandy\nTevin\nAlonzo\nAntoine\nBradley\nClarence\nDelante\nEdgar\nErnest\nEthan\nJavon\nLeon\nMalik\nMarc\nMario\nMiles\nOmar\nShawn\nStanley\nTerrance\nTyree\nBernard\nDeonte\nEarl\nEugene\nFrancisco\nIvan\nJackson\nJerry\nLeonard\nLewis\nLouis\nRonnie\nStefan\nSterling\nTerry\nTrevor\nAli\nCaleb\nCody\nDion\nErick\nFrancis\nFrederick\nJeffery\nJeremiah\nJerrell\nManuel\nMartin\nMaxwell\nMiguel\nAustin\nBruce\nByron\nCarlton\nConnor\nCraig\nDangelo\nDanny\nDarren\nDaryl\nDelano\nDelonta\nDexter\nEllis\nHarrison\nHarry\nHector\nKristopher\nLeroy\nLuke\nMarcellus\nMarkus\nMarquette\nMicah\nRakeem\nRaynard\nTavon\nTrevon\nTyjuan\nTyrell\nAlan\nAnton\nArthur\nBobby\nBrett\nCasey\nChase\nCornelius\nCortez\nCory\nDarrin\nDemarco\nDeon\nDerrell\nDionte\nDominick\nDonta\nDwight\nElliott\nHerbert\nHoward\nJairo\nJake\nJamar\nJohnny\nJorge\nJosue\nKarl\nLloyd\nMarcel\nMarquise\nNigel\nPreston\nShane\nSimon\nTheodore\nTravon\nWarren\nWillie\nAriel\nConor\nCordell\nDamion\nDaquan\nDonovan\nDuane\nElijah\nGavin\nGrant\nHassan\nJamaal\nJaron\nJay\nJimmy\nJonah\nJulio\nJulius\nKareem\nKavon\nKwame\nLucas\nMohamed\nMohammad\nMyles\nNelson\nNoel\nOscar\nOwen\nQuentin\nQuinton\nRicky\nRoberto\nShaun\nSpencer\nTayvon\nTristan\nAhmed\nAlbert\nAlexis\nAllen\nBrent\nBryce\nChris\nClifford\nCollin\nCristian\nDalonte\nDamien\nDayvon\nDejuan\nDesmond\nDevonte\nDillon\nEddie\nEli\nElliot\nEverett\nGeoffrey\nGraham\nHerman\nIsmael\nJabari\nJelani\nKeenan\nKendall\nLamar\nMarco\nMarkel\nMarlon\nMauricio\nNorman\nRay\nRussell\nSidney\nThaddeus\nTodd\nTommy\nMichael\nChristopher\nJohn\nJames\nDavid\nWilliam\nKevin\nAndrew\nMatthew\nRobert\nAnthony\nAlexander\nBrandon\nDaniel\nJoseph\nNicholas\nJoshua\nEric\nSamuel\nJonathan\nMarcus\nAaron\nRyan\nThomas\nCharles\nAntonio\nJustin\nSean\nBenjamin\nZachary\nGregory\nAndre\nBrian\nTimothy\nSteven\nAdam\nRichard\nChristian\nPatrick\nStephen\nKenneth\nTyler\nGeorge\nMark\nPaul\nJacob\nJordan\nJose\nCarlos\nDeandre\nKyle\nRonald\nJamal\nCameron\nIan\nKeith\nBryan\nDevin\nDevonte\nAlex\nJeffrey\nDelonte\nDominique\nMalik\nDerrick\nEdward\nJason\nJeremy\nTyrone\nNathaniel\nHenry\nMaurice\nReginald\nConnor\nDavon\nLawrence\nEvan\nNathan\nDevon\nDominic\nJulian\nPhillip\nRicardo\nAntoine\nDarius\nDemetrius\nDonte\nDylan\nJerome\nJesse\nPeter\nTerrance\nCurtis\nTaylor\nColin\nDennis\nAustin\nCarl\nDarren\nDevante\nErik\nMalcolm\nTavon\nTerrell\nWesley\nXavier\nCorey\nEugene\nRashad\nRodney\nTony\nTravis\nArthur\nDarrell\nDarryl\nDeangelo\nDonald\nDonnell\nDwayne\nKelvin\nLarry\nMax\nMiguel\nTevin\nVictor\nDante\nEmmanuel\nFrank\nGabriel\nIsaiah\nJuan\nMarquis\nRaymond\nScott\nTyree\nBernard\nBrendan\nMicheal\nPhilip\nShawn\nTroy\nAdrian\nDeon\nDeonte\nDerek\nEdwin\nLorenzo\nMarvin\nTerrence\nCalvin\nDamien\nDarnell\nDenzel\nDouglas\nElijah\nFranklin\nJeremiah\nJimmy\nMarshall\nMaxwell\nNicolas\nOmar\nStephon\nTheodore\nTrevon\nTrevor\nVincent\nWayne\nAlbert\nAlonzo\nCraig\nLeon\nLuis\nLuke\nMelvin\nNelson\nWalter\nConor\nDavonte\nDelante\nDesmond\nEthan\nJackson\nJared\nJoel\nJohnathan\nJohnny\nLucas\nMarcel\nMiles\nTravon\nTyrell\nAngelo\nClarence\nDarrius\nDion\nDonovan\nEarl\nErnest\nGeoffrey\nIvan\nJack\nJermaine\nJorge\nLamont\nManuel\nMarquette\nMartin\nPreston\nRico\nShane\nAhmed\nAlvin\nAriel\nBrett\nBryant\nByron\nChase\nCody\nCortez\nDandre\nDesean\nDimitri\nEddie\nFrederick\nGary\nGrant\nIsiah\nJake\nJamaal\nJavon\nJerrell\nJosue\nJulius\nKristopher\nMarc\nMarco\nNoah\nQuinton\nSpencer\nAllen\nBlake\nBranden\nBruce\nBryce\nCaleb\nCarlton\nCristian\nDewayne\nFrancis\nIsaac\nJarrett\nKeenan\nKendall\nKendrick\nLouis\nMilton\nOscar\nWarren\nAhmad\nAlejandro\nAntione\nAntwan\nBennett\nConrad\nCory\nDangelo\nDarian\nDe\nDelonta\nDemarco\nDevaughn\nDevonta\nDominick\nDwight\nEmanuel\nHarrison\nHunter\nJalen\nJamar\nJeffery\nKarl\nMario\nMarkus\nMicah\nNeil\nRashaad\nRayvon\nRonnie\nRoy\nRussell\nSimon\nWillie\nAlexandre\nAndy\nBradley\nCasey\nClifford\nClifton\nCornell\nCourtney\nDanny\nDaquan\nDaryl\nDean\nDemetri\nDequan\nDionte\nDominque\nDontae\nDrew\nEdgar\nErick\nEver\nGarrett\nGraham\nGustavo\nHarold\nHerman\nHoward\nJabari\nJavier\nJavonte\nJon\nJulien\nKenny\nMathew\nMohamed\nMorgan\nMyron\nNorman\nOliver\nParis\nRamon\nRandy\nRashawn\nRenard\nRicky\nRoderick\nRoger\nRoss\nSaquan\nSebastian\nSeth\nStanley\nStefan\nSylvester\nTarik\nTodd\nTre\nMichael\nChristopher\nJames\nKevin\nJohn\nAnthony\nRobert\nDavid\nBrandon\nJoshua\nDaniel\nWilliam\nMatthew\nAlexander\nJoseph\nCharles\nThomas\nAndrew\nRyan\nMarcus\nJonathan\nSamuel\nAaron\nEric\nNicholas\nZachary\nJustin\nAntonio\nBrian\nBenjamin\nJamal\nSteven\nAndre\nSean\nKeith\nPaul\nPatrick\nGregory\nJacob\nJordan\nRichard\nChristian\nPeter\nTimothy\nTyrone\nKyle\nNathaniel\nAdam\nDavon\nMark\nEdward\nDarius\nDeandre\nDelonte\nHenry\nStephen\nTyler\nJose\nRonald\nKenneth\nCarlos\nMaurice\nReginald\nDominique\nIan\nJeffrey\nXavier\nBrendan\nBryan\nCameron\nJason\nAustin\nConnor\nDenzel\nDevin\nDominic\nMalik\nTavon\nGabriel\nDonte\nEvan\nRicardo\nDerrick\nDevonte\nDonald\nErik\nGeorge\nJeremy\nMarquis\nMax\nNathan\nPhillip\nTevin\nVictor\nVincent\nCurtis\nDarrell\nDarryl\nDennis\nLuis\nMicheal\nRodney\nScott\nCorey\nDylan\nEmmanuel\nMalcolm\nAntoine\nCory\nDeangelo\nJoel\nKelvin\nLawrence\nMarvin\nStephon\nTyrell\nCalvin\nDemetrius\nDesmond\nDevon\nDwayne\nErick\nLamont\nMartin\nRaymond\nTerrell\nTerrence\nTravis\nWalter\nBradley\nDonnell\nJerome\nJuan\nLucas\nShawn\nTroy\nAdrian\nAlex\nCody\nColin\nConor\nDaquan\nDarnell\nDarren\nDeon\nDeonte\nEdwin\nHarry\nJackson\nJalen\nJeremiah\nMarcellus\nMiles\nOmar\nRashad\nTony\nTrevon\nWesley\nBernard\nCarl\nCristian\nDandre\nDevante\nFranklin\nIsaiah\nJerry\nJohnathan\nJulian\nLarry\nLuke\nMarco\nMelvin\nRico\nShaquille\nSpencer\nTravon\nCraig\nDerek\nDion\nElijah\nGary\nJermaine\nJorge\nTaylor\nTre\nEthan\nEugene\nFrancisco\nHarrison\nIsaac\nJared\nJavon\nKendall\nLorenzo\nLouis\nMaxwell\nMiguel\nNoah\nTrevor\nWillie\nAnton\nAntwan\nAvery\nCaleb\nClarence\nDelonta\nGerald\nGraham\nKristopher\nPhilip\nQuincy\nRicky\nShane\nTerry\nVernon\nAngel\nBlake\nByron\nCarter\nCedric\nChase\nDangelo\nDanny\nDante\nDelante\nDequan\nDevaughn\nDevonta\nDouglas\nFrederick\nHarold\nJavier\nJesse\nKenny\nMitchell\nQuinton\nRoberto\nShaun\nTerrance\nTrey\nAbraham\nAllen\nBrett\nBruce\nCarlton\nCecil\nCollin\nCordell\nDamani\nDamion\nDarien\nDarrius\nDemarco\nDonovan\nDonta\nDuane\nEarl\nEmanuel\nErnest\nIbrahim\nJarrell\nJovon\nManuel\nMarc\nMarcel\nMarkus\nMarquette\nMarquise\nMaximilian\nMicah\nMyles\nNicolas\nNigel\nOrlando\nParis\nPerry\nQuentin\nQuinn\nRaheem\nRandy\nRomeo\nTheodore\nTyree\nTyron\nWarren\nWayne\nAhmad\nAlan\nAlexandre\nAlonzo\nAlvin\nAmir\nAngelo\nAntwon\nArthur\nAshton\nBilly\nBranden\nBryant\nClifton\nClinton\nDale\nDamon\nDarian\nDavonta\nDeondre\nDillon\nDimitri\nDominick\nDwight\nEduardo\nEli\nFrancis\nGlenn\nJabari\nJaquan\nKevon\nKhalil\nLeon\nLeonard\nLevi\nMarkell\nMikal\nMilton\nOliver\nOscar\nRaul\nRaynard\nRoland\nRonnie\nSamson\nSebastian\nSidney\nStanley\nTarik\nMichael\nJames\nChristopher\nWilliam\nAnthony\nMatthew\nJohn\nKevin\nDavid\nAlexander\nNicholas\nDaniel\nAndrew\nJoseph\nJoshua\nBrandon\nRobert\nAaron\nMarcus\nThomas\nEric\nJonathan\nRyan\nBenjamin\nCharles\nSamuel\nZachary\nJustin\nSean\nTyler\nJordan\nAntonio\nBrian\nChristian\nJacob\nMalik\nPatrick\nMark\nJamal\nDeandre\nKyle\nDavon\nGregory\nKenneth\nAndre\nAdam\nStephen\nCarlos\nDarius\nRichard\nTimothy\nRonald\nDevin\nPeter\nReginald\nSteven\nNathaniel\nEdward\nKeith\nIan\nTerrell\nDelonte\nMaurice\nNathan\nPaul\nVictor\nGeorge\nJulian\nTyrone\nAustin\nJason\nJose\nRaymond\nTavon\nVincent\nCameron\nEdwin\nGabriel\nJeffrey\nJuan\nMalcolm\nMarquis\nDominique\nJeremy\nTroy\nConnor\nDarnell\nDerek\nDonald\nBryan\nDaquan\nNicolas\nRicardo\nDerrick\nDevonte\nHenry\nRodney\nStephon\nTerrence\nCalvin\nDylan\nElijah\nJared\nLuke\nNoah\nPhilip\nPhillip\nTyrell\nColin\nCorey\nErik\nEthan\nEvan\nJerome\nMarvin\nSpencer\nTrevon\nTrevor\nWalter\nAllen\nBradley\nCarl\nDemetrius\nDevon\nDonnell\nEmmanuel\nIsaac\nJackson\nLawrence\nTyree\nWesley\nAlex\nBrendan\nDarrell\nDouglas\nErick\nFranklin\nGary\nSebastian\nAlec\nAvery\nCurtis\nDonte\nGerald\nJalen\nJavon\nJeffery\nJesse\nLeon\nMelvin\nMicheal\nTerrance\nTevin\nTony\nTravis\nAlonzo\nArthur\nDeangelo\nDennis\nDenzel\nDeon\nDevante\nDominic\nJeremiah\nJoel\nLucas\nLuis\nMarc\nMitchell\nMohamed\nScott\nBruce\nClarence\nDandre\nDesean\nDonovan\nJohnathan\nLeonard\nLorenzo\nMarquette\nMarquise\nNigel\nOmar\nRashad\nSeth\nTheodore\nXavier\nAdrian\nAidan\nDarren\nDeion\nDionte\nEli\nFrancis\nIsaiah\nJamaal\nJaquan\nJorge\nKelvin\nLamont\nLarry\nMario\nMax\nMiguel\nMiles\nMyles\nWillie\nAnton\nBryant\nCaleb\nCedric\nCraig\nDamon\nDante\nDarien\nDarryl\nDavonte\nDemarco\nDerrell\nDillon\nJabari\nKhalil\nMartin\nOscar\nRicky\nRico\nShawn\nStefan\nTaylor\nTerry\nAhmed\nAkeem\nAlvin\nAntoine\nAriel\nBernard\nBlake\nBrent\nBrett\nCollin\nCourtney\nDamien\nDarian\nDayvon\nDelante\nDeonte\nDion\nDominick\nDwayne\nDwight\nEdgar\nElliot\nElliott\nEmanuel\nEugene\nGrant\nGriffin\nHarry\nHassan\nHunter\nJack\nJamel\nJay\nJermaine\nJimmy\nJonah\nKareem\nKirk\nKyree\nLogan\nMarcel\nMarkus\nMason\nMaxwell\nMilton\nQuentin\nRoy\nSavon\nShane\nTayvon\nTravon\nAlexis\nAlfred\nAndres\nBabyboy\nBarry\nByron\nChris\nCordell\nCristian\nDangelo\nDequan\nDesmond\nDiego\nDuane\nFrancisco\nFrank\nGeoffrey\nHarold\nJake\nJavier\nJean\nJerry\nJohnny\nKarl\nKeenan\nKendall\nKevon\nKhari\nKurt\nLewis\nMarco\nMarlon\nParris\nRashaad\nRashard\nRonnell\nRussell\nShaquille\nStanley\nSterling\nTre\nTrey\nWarren\nWayne\nMichael\nChristopher\nJohn\nWilliam\nDavid\nJames\nAnthony\nKevin\nDaniel\nMalik\nJoshua\nMatthew\nJoseph\nNicholas\nBrandon\nAndrew\nThomas\nAlexander\nRobert\nMarcus\nAaron\nEric\nZachary\nJonathan\nSamuel\nJustin\nBenjamin\nChristian\nPatrick\nCharles\nRyan\nAntonio\nBrian\nSean\nAndre\nStephen\nGregory\nSteven\nKenneth\nJordan\nPeter\nTyler\nRichard\nCarlos\nJose\nTimothy\nAdam\nDeandre\nIan\nJason\nJeffrey\nAustin\nEdward\nJacob\nGabriel\nNathaniel\nMark\nDaquan\nDarius\nDerrick\nCorey\nDevin\nMaurice\nJamal\nCameron\nHenry\nPaul\nVictor\nIsaiah\nLuke\nJeremy\nKyle\nBryan\nEvan\nNathan\nNoah\nPhillip\nConnor\nElijah\nGeorge\nDelonte\nDennis\nDylan\nLuis\nOmar\nTrevon\nBrendan\nCarl\nEmmanuel\nJaquan\nJesse\nJuwan\nKeith\nCristian\nDavon\nDonnell\nJack\nKelvin\nLawrence\nMalcolm\nMarquis\nMarquise\nReginald\nTaylor\nVincent\nAntoine\nBernard\nDevon\nDominique\nIsaac\nXavier\nAdrian\nDevante\nFrancis\nGary\nJulian\nLarry\nMax\nOscar\nRaymond\nTerrell\nTroy\nTyree\nTyrell\nWayne\nAlec\nColin\nCurtis\nDerek\nDevonte\nGerald\nJared\nJavon\nJeremiah\nMicheal\nShawn\nStephon\nTavon\nAlex\nAlonzo\nDemetrius\nDesmond\nDonte\nEdwin\nGrant\nJerome\nTrevor\nWalter\nAndy\nBryant\nDamon\nDarrell\nErick\nEthan\nEugene\nFrederick\nHunter\nJimmy\nMarc\nMarvin\nNicolas\nRashad\nRicardo\nRonald\nSebastian\nTerrence\nAidan\nAnton\nCaleb\nCody\nCollin\nDangelo\nDeangelo\nDequan\nDominic\nDonald\nDonovan\nDwayne\nErik\nFrank\nHarrison\nJalen\nJuan\nKevon\nMartin\nMelvin\nMyles\nRodney\nTony\nTravon\nWarren\nWesley\nAlexis\nArthur\nAvery\nBlake\nBradley\nCalvin\nConor\nJavier\nJohnathan\nLeon\nLeroy\nMario\nMiguel\nOrlando\nPhilip\nRussell\nSimon\nStefan\nStephan\nTevin\nTheodore\nTrayvon\nBaby\nBruce\nDandre\nDarren\nDarryl\nDemarco\nDeon\nDexter\nDillon\nDion\nDominick\nEdgar\nEli\nFrancisco\nFranklin\nGriffin\nHoward\nJake\nJoel\nJorge\nKhalil\nLamont\nLiam\nLloyd\nLouis\nMarlon\nNelson\nNigel\nQuentin\nTravis\nAbdul\nAli\nAllen\nAntwan\nByron\nCesar\nClarence\nClayton\nDanny\nDante\nDarien\nDarnell\nDarrius\nDavonte\nDe\nDeonte\nDeshawn\nDevan\nDuane\nDustin\nErnest\nEzra\nFred\nGarrett\nHector\nJamar\nJayquan\nJermaine\nJonah\nKahlil\nLonnell\nMarco\nMarkell\nMarquel\nMathew\nMicah\nMiles\nMohamed\nPedro\nQuinn\nRaheem\nRasheed\nRohan\nRoman\nScott\nShane\nSteve\nTarik\nTristan\nTyrone\nMichael\nJohn\nWilliam\nChristopher\nDavid\nMalik\nMatthew\nJames\nDaniel\nAlexander\nJoshua\nAndrew\nAnthony\nJoseph\nNicholas\nKevin\nBrandon\nRobert\nSamuel\nEric\nBenjamin\nChristian\nThomas\nJonathan\nJustin\nBrian\nJacob\nRyan\nCharles\nAaron\nZachary\nAntonio\nMarcus\nJordan\nNoah\nSteven\nAdam\nJamal\nNathaniel\nPatrick\nGeorge\nAustin\nIsaiah\nKenneth\nNathan\nAndre\nSean\nDeandre\nKyle\nMark\nRichard\nTyler\nIan\nJeremy\nCarlos\nElijah\nEdward\nJuwan\nPeter\nTimothy\nJeffrey\nJose\nStephen\nGabriel\nLawrence\nRonald\nDerrick\nJulian\nMaxwell\nMicheal\nBryan\nDavon\nDevin\nGregory\nMaurice\nPaul\nDarius\nEvan\nJack\nJackson\nJason\nTrevon\nVictor\nDaquan\nCameron\nDangelo\nDylan\nJesse\nReginald\nTyree\nBrendan\nHenry\nTyrone\nXavier\nAlex\nDonte\nEthan\nKeith\nOmar\nCarl\nDevon\nLuis\nLuke\nTerrell\nTyrell\nVincent\nDandre\nDominique\nDonnell\nErik\nJuan\nKhalil\nLorenzo\nMax\nNicolas\nPhillip\nRaymond\nTerry\nCalvin\nColin\nDarrius\nDemetrius\nDevonte\nDouglas\nIsaac\nJalen\nJulio\nLarry\nLiam\nTheodore\nTristan\nAhmad\nAidan\nAlonzo\nByron\nCurtis\nDrew\nErick\nFrancis\nFranklin\nMalcolm\nManuel\nMarquise\nSebastian\nStephon\nTavon\nTony\nTrevor\nTroy\nAlan\nAlbert\nAriel\nCaleb\nCole\nCraig\nDamian\nDamon\nDarnell\nDelonte\nDerek\nDominic\nDonald\nEdwin\nEli\nEmmanuel\nGary\nHarrison\nJaquan\nJared\nJavon\nJorge\nLucas\nMarc\nMarlon\nMiguel\nRicardo\nShawn\nWalter\nAntoine\nAnton\nCarlton\nConnor\nCristian\nDante\nDarrell\nDarryl\nDeangelo\nDejuan\nDennis\nDwayne\nIvan\nJeremiah\nJerome\nKelvin\nLeonard\nLouis\nMarquis\nMyles\nOscar\nRodney\nShane\nTyron\nAli\nAndres\nAntione\nArthur\nCorey\nDarian\nDe\nDeonte\nDesmond\nDonovan\nDuane\nJavier\nJerry\nJosue\nLamar\nLeon\nMarcellus\nMarvin\nPhilip\nRandy\nRasheed\nRicky\nRico\nTyrik\nAbraham\nAdrian\nAnfernee\nArmani\nBennett\nBlake\nCesar\nChase\nCody\nCollin\nDamion\nDarren\nDashawn\nDemonte\nDeon\nDequan\nDevante\nDiego\nDion\nEdgar\nFernando\nFrank\nGarrett\nGraham\nGrant\nHunter\nJaime\nJake\nJohnny\nKendall\nKyree\nMarco\nMarkell\nMarquell\nMarquette\nMartin\nMason\nMaximilian\nMicah\nMiles\nMohammad\nNelson\nPedro\nRamon\nRaphael\nRashad\nRashid\nSam\nSequan\nSeth\nSpencer\nTerrence\nZaki\nMichael\nJohn\nWilliam\nDavid\nJames\nChristopher\nAnthony\nJoshua\nKevin\nJoseph\nAndrew\nDaniel\nMatthew\nAlexander\nBrandon\nNicholas\nBrian\nSamuel\nEric\nMalik\nRobert\nThomas\nJonathan\nJordan\nAaron\nJustin\nChristian\nBenjamin\nJacob\nRyan\nCharles\nMarcus\nIsaiah\nZachary\nAntonio\nNoah\nPatrick\nMark\nNathaniel\nGregory\nJason\nPaul\nSean\nTyler\nHenry\nAustin\nCarlos\nGeorge\nKyle\nEdward\nAndre\nCameron\nDevin\nPeter\nDarius\nEthan\nJose\nKenneth\nAdam\nJeffrey\nNathan\nDavon\nDylan\nGabriel\nIan\nJulian\nMaurice\nTimothy\nJeremy\nBryan\nRichard\nDeandre\nKeith\nLuis\nMax\nReginald\nBrendan\nJuwan\nVictor\nBabyboy\nDaquan\nDarryl\nEvan\nJack\nLiam\nLucas\nMarquis\nAidan\nErick\nJuan\nOmar\nRaymond\nStephen\nSteven\nTerrell\nTrevon\nTyrone\nDante\nDeangelo\nDonovan\nDonte\nJamal\nJared\nMicheal\nNicolas\nRashad\nAntoine\nColin\nConnor\nCorey\nDemarco\nDerrick\nDouglas\nElijah\nJackson\nJesse\nMiles\nAlejandro\nAlex\nCalvin\nCristian\nDonnell\nKyree\nOscar\nRicardo\nTyrell\nVincent\nXavier\nAdrian\nBaby\nCarl\nDion\nEdwin\nIsaac\nMarquise\nMohamed\nTavon\nTaylor\nTheodore\nAlec\nAmir\nCole\nCurtis\nDamon\nDarnell\nDevon\nEmanuel\nEmmanuel\nGary\nGrant\nJaquan\nJavon\nManuel\nSpencer\nTony\nAndy\nAngelo\nBryant\nDarren\nDelonte\nDennis\nDeonte\nDominic\nHarrison\nJeremiah\nJerome\nKhalil\nMalcolm\nMarquette\nMaxwell\nPhillip\nQuentin\nRaheem\nRonald\nTrevor\nWalter\nArthur\nBradley\nCaleb\nDandre\nDiego\nDonald\nDrew\nDwayne\nGerald\nGriffin\nJermaine\nJoel\nJonah\nJorge\nKameron\nKevon\nLogan\nMiguel\nMyles\nPhilip\nShawn\nTravis\nTristan\nTyree\nAllen\nAlonzo\nAngel\nBernard\nByron\nConor\nDangelo\nDarrell\nDe\nDeon\nDevonte\nDominique\nErik\nHunter\nJamar\nJaylen\nKelvin\nKeyon\nKhari\nKristian\nLamar\nLamont\nMarc\nMarco\nMario\nMarkel\nMelvin\nMicah\nQuinton\nRodney\nSaul\nTerrance\nWayne\nAhmad\nAlan\nAlexis\nAli\nAnton\nDajuan\nDamian\nDeante\nDequan\nDerek\nDevaughn\nDimitri\nDionte\nEdgar\nEduardo\nElias\nElmer\nFelix\nFrancisco\nFranklin\nGarrett\nIsiah\nIvan\nJalen\nJeffery\nJerry\nJon\nJulius\nJustice\nLarry\nLeon\nLuke\nMarkell\nMason\nMauricio\nMaximilian\nOwen\nPablo\nParker\nRicky\nScott\nShane\nShaquan\nSimon\nStefan\nStephon\nTarik\nTariq\nTravon\nTroy\nMichael\nChristopher\nJohn\nWilliam\nMatthew\nDavid\nDaniel\nJoshua\nJames\nAnthony\nKevin\nAlexander\nNicholas\nAndrew\nBrandon\nJoseph\nSamuel\nJonathan\nJustin\nRobert\nJacob\nChristian\nJordan\nBenjamin\nMalik\nCharles\nBrian\nRyan\nThomas\nAaron\nMarcus\nEric\nKyle\nJason\nSean\nZachary\nAntonio\nAdam\nIsaiah\nCameron\nKenneth\nTimothy\nDarius\nEdward\nNoah\nPatrick\nNathaniel\nTyler\nAndre\nDerrick\nNathan\nGabriel\nGregory\nHenry\nRichard\nEmmanuel\nDavon\nMark\nDevin\nJack\nEthan\nJeremiah\nJose\nAlex\nDeandre\nDylan\nElijah\nEvan\nKhalil\nMarquis\nTrevon\nIan\nJeffrey\nLawrence\nMaurice\nPaul\nNicolas\nAdrian\nGeorge\nJamal\nJeremy\nAidan\nBrendan\nBryan\nCarlos\nJared\nJuan\nJulian\nRonald\nStephen\nPeter\nSteven\nXavier\nAustin\nCaleb\nCole\nColin\nDonald\nShawn\nSpencer\nVincent\nDaquan\nDarrell\nDominic\nJackson\nKeith\nMax\nMyles\nReginald\nCalvin\nCorey\nDamon\nDangelo\nDarnell\nDemetrius\nDonnell\nDonte\nJerome\nLuke\nTariq\nTroy\nVictor\nCurtis\nDelonte\nDevon\nGary\nJosue\nLarry\nMalcolm\nMaxwell\nMicheal\nMiles\nOmar\nStephon\nTony\nAmir\nBaby\nDion\nDwayne\nEdwin\nFrancisco\nFranklin\nJavon\nKendall\nLuis\nMarcos\nMarquette\nMarquise\nMelvin\nTerrell\nTrevor\nTyree\nAlexis\nAntoine\nConnor\nCristian\nDante\nDarryl\nDemarco\nDevonte\nGarrett\nHarrison\nJesse\nJosiah\nJuwan\nKobe\nLiam\nLucas\nManuel\nMiguel\nNelson\nNigel\nOscar\nOwen\nQuentin\nRaymond\nRicardo\nRodney\nSeth\nTheodore\nWalter\nAnton\nAvery\nDarren\nDeangelo\nDiego\nDouglas\nGerald\nIvan\nJoel\nJohnathan\nJonah\nLorenzo\nMicah\nMitchell\nPhilip\nTavon\nTyrell\nWillie\nAhmad\nAlbert\nAlec\nAlejandro\nAllen\nAmari\nBryant\nChase\nDarrius\nDennis\nDerek\nDominique\nDonovan\nElias\nErick\nGlenn\nGriffin\nJabari\nJake\nJalen\nJamari\nJaquan\nJermaine\nJohnny\nKelvin\nKeon\nKyree\nLeonardo\nMarco\nMarques\nMohamed\nRamon\nRaphael\nRashad\nReilly\nScott\nSebastian\nTyrique\nTyrone\nWarren\nAlan\nAlexandre\nAndres\nBlake\nCarl\nCedric\nDamion\nDeion\nDemonte\nDeonte\nDeshawn\nDesmond\nDuane\nEdgar\nEduardo\nErik\nFrank\nGavin\nGrant\nHarry\nHunter\nIsaac\nJermel\nJorge\nKavon\nKirk\nKristopher\nLeon\nMalachi\nMarc\nMason\nMateo\nMohammad\nNico\nPablo\nPhillip\nRaekwon\nRicky\nRoss\nStanley\nTerrence\nTravis\nTrey\nTyriq\nWesley\nWyatt\nMichael\nWilliam\nChristopher\nJohn\nDavid\nJames\nMatthew\nAlexander\nJoshua\nKevin\nNicholas\nAnthony\nBenjamin\nJoseph\nRobert\nSamuel\nAndrew\nDaniel\nThomas\nJonathan\nChristian\nEric\nMalik\nJordan\nJustin\nRyan\nAaron\nAntonio\nIsaiah\nBrandon\nJacob\nCharles\nJason\nNoah\nZachary\nCameron\nDevin\nNathan\nElijah\nMarcus\nNathaniel\nCarlos\nXavier\nPatrick\nGabriel\nTyler\nBrian\nAndre\nKenneth\nSteven\nEthan\nHenry\nKyle\nSean\nPeter\nTimothy\nAdam\nDerrick\nJack\nEvan\nGeorge\nStephen\nCorey\nDarius\nEdward\nJeremiah\nAidan\nGregory\nJamal\nJulian\nAustin\nBryan\nIan\nJeffrey\nLucas\nCaleb\nConnor\nDeandre\nJalen\nMark\nRicardo\nVictor\nDaquan\nMarquis\nMaxwell\nBrendan\nDevon\nJared\nKhalil\nMax\nMiles\nRonald\nDavon\nDylan\nJose\nKeith\nNicolas\nPaul\nColin\nCristian\nDonnell\nOwen\nTerrell\nTyree\nCalvin\nDemetrius\nDerek\nDonald\nGriffin\nIsaac\nJackson\nJaylen\nJuwan\nKelvin\nLarry\nLiam\nMaurice\nMiguel\nSebastian\nSpencer\nTravis\nBryce\nDemarco\nDonovan\nGrant\nMalcolm\nMelvin\nPhillip\nRaymond\nTyrone\nAntoine\nBradley\nDeon\nDeonte\nDevonte\nDonte\nEmmanuel\nIvan\nJeremy\nJesse\nJuan\nKendall\nLuis\nTroy\nVincent\nZion\nAlex\nAmir\nCarter\nChase\nDangelo\nDarren\nDelonte\nDennis\nDequan\nDouglas\nErick\nGarrett\nHarrison\nJaquan\nJermaine\nJerome\nJonah\nJorge\nMartin\nMicah\nPhilip\nTavon\nTony\nTrevon\nAdrian\nAhmad\nAmari\nAngelo\nAvery\nCole\nConor\nDante\nDeangelo\nDesmond\nDiego\nEdwin\nErik\nErnest\nFrancisco\nFrank\nIsiah\nJavon\nLawrence\nMason\nMicheal\nTerry\nTyrell\nVernon\nAllen\nAndy\nBernard\nBrett\nCyrus\nDarnell\nDarrell\nDion\nDominic\nDustin\nEli\nElvis\nJaden\nJoel\nJohnathan\nKavon\nKeon\nLewis\nLogan\nLuke\nMalachi\nManuel\nMarcell\nMarvin\nMaximilian\nMitchell\nOliver\nOmar\nOscar\nRichard\nRico\nSimon\nAngel\nBruce\nCarl\nClarence\nClayton\nCody\nCullen\nDarian\nDemonte\nDillon\nDominique\nDwayne\nElias\nGerald\nGrayson\nIbrahim\nJabari\nJaron\nJefferson\nJesus\nKareem\nKevon\nKyree\nLeon\nLorenzo\nLouis\nMarcel\nMarcellus\nMarlon\nMike\nMohamed\nMuhammad\nNelson\nQuinn\nRamon\nReginald\nRiley\nRodney\nRoman\nScott\nShawn\nStephon\nTaylor\nTerrence\nTyreke\nTyrese\nVaughn\nWalter\nWayne\nJohn\nChristopher\nWilliam\nMichael\nAnthony\nDavid\nJoshua\nJames\nAlexander\nAndrew\nNicholas\nMatthew\nDaniel\nKevin\nJustin\nThomas\nRobert\nBenjamin\nJordan\nSamuel\nBrandon\nJoseph\nMalik\nJonathan\nIsaiah\nRyan\nAaron\nChristian\nCharles\nJacob\nEric\nAntonio\nJason\nElijah\nBrian\nNoah\nJalen\nEthan\nJack\nTyler\nZachary\nCarlos\nDarius\nSean\nKenneth\nNathaniel\nDeandre\nHenry\nStephen\nTimothy\nBryan\nMark\nJose\nMarcus\nPatrick\nAidan\nDylan\nGabriel\nJulian\nRichard\nAndre\nConnor\nJackson\nPeter\nXavier\nDevin\nEvan\nNathan\nOmar\nCameron\nNicolas\nSteven\nEdward\nIsaac\nKeith\nKevon\nLiam\nMaurice\nPaul\nRonald\nAdam\nAdrian\nJamal\nLucas\nTrevon\nAlex\nCristian\nGeorge\nJeremy\nKhalil\nKyle\nLuke\nDavon\nGregory\nIan\nJared\nJeffrey\nJeremiah\nJuan\nLuis\nMyles\nSebastian\nSpencer\nAndy\nDonald\nJavon\nMaxwell\nReginald\nCaleb\nDaquan\nDemetrius\nDevon\nEdwin\nEmmanuel\nKyree\nLarry\nMarquis\nRicardo\nTerrance\nTerrence\nTyrell\nBrendan\nCorey\nDemarco\nDerrick\nDonovan\nGary\nJaden\nMelvin\nMicah\nOliver\nOwen\nVincent\nAustin\nCalvin\nDonnell\nEli\nHarrison\nJonah\nJosue\nMax\nTavon\nWarren\nAbraham\nAlonzo\nBryant\nColin\nDandre\nDominic\nDouglas\nFrancisco\nGarrett\nJesse\nJosiah\nKeon\nLogan\nMalcolm\nMarquise\nMekhi\nMiles\nPhillip\nQuentin\nRaymond\nRodney\nShawn\nTyree\nVictor\nAhmed\nAlexis\nAmir\nAvery\nCole\nDamonte\nDante\nDeangelo\nDonte\nErick\nGrant\nIvan\nJaylen\nJerrell\nJoel\nKavon\nMarc\nMario\nMarlon\nMarvin\nMicheal\nMiguel\nMitchell\nNelson\nNico\nOscar\nPablo\nTerrell\nTheodore\nZion\nAlan\nAlvin\nAmari\nAngel\nAri\nArthur\nCarter\nChase\nCody\nCurtis\nDarian\nDeclan\nDequan\nDiante\nDominique\nEduardo\nElias\nElmer\nEmanuel\nEugene\nEzra\nFrank\nFranklin\nGiovanni\nGustavo\nIbrahim\nJabari\nJaquan\nJay\nJayden\nJelani\nJesus\nKai\nKelvin\nKendall\nLeo\nMarco\nMason\nQuinn\nRafael\nRaphael\nRashad\nSeth\nTariq\nTony\nTravis\nTrevor\nTroy\nAntoine\nAnton\nBernard\nBrett\nBryce\nCarl\nCasey\nCedric\nCesar\nConor\nCristopher\nDamon\nDanny\nDarnell\nDarryl\nDeon\nDeonte\nDerek\nDesean\nDevonte\nDrew\nEarl\nEdgar\nErik\nFrederick\nHarold\nHunter\nJamari\nJasper\nJaylin\nJermaine\nJerome\nJihad\nJonas\nJorge\nJuwan\nKenny\nKhalid\nLamont\nLawrence\nLeon\nMarcell\nMarkel\nMaximilian\nPreston\nRashard\nRasheed\nShane\nShaun\nStephon\nTaylor\nTerry\nTevon\nTyrone\nTyson\nMichael\nJohn\nWilliam\nChristopher\nJoshua\nAnthony\nJames\nKevin\nDaniel\nNicholas\nRobert\nDavid\nJoseph\nAlexander\nMatthew\nSamuel\nThomas\nAndrew\nIsaiah\nJacob\nJustin\nEric\nBenjamin\nBrandon\nJordan\nCharles\nBrian\nAaron\nChristian\nElijah\nRyan\nJonathan\nJalen\nEthan\nJason\nSean\nJeremiah\nPatrick\nAntonio\nAdam\nAidan\nCameron\nHenry\nCaleb\nNoah\nTyler\nZachary\nCarlos\nDylan\nJack\nMalik\nMarcus\nSebastian\nKenneth\nStephen\nPeter\nJackson\nTimothy\nXavier\nConnor\nNathan\nNathaniel\nSteven\nChase\nLiam\nGabriel\nGregory\nJared\nKyle\nNicolas\nIan\nJeremy\nLuke\nRichard\nGeorge\nLucas\nRonald\nBryce\nDevin\nDiego\nEdward\nEvan\nJamal\nOmar\nOscar\nTrevon\nBryan\nJaden\nJavon\nMalachi\nColin\nDaquan\nDarius\nDevon\nJaylen\nJulian\nKhalil\nMaurice\nMax\nAndre\nAustin\nErik\nMekhi\nPaul\nShane\nVincent\nAlex\nCarter\nDerrick\nDonovan\nIsaac\nJake\nJose\nLeo\nMark\nMarquis\nMelvin\nMicah\nSimon\nTyrone\nVictor\nAhmad\nEmmanuel\nErick\nLogan\nLuis\nMarco\nMaxwell\nMiles\nMyles\nOwen\nTheodore\nAvery\nCole\nDamon\nDante\nDavon\nDeandre\nDeonte\nEdgar\nEdwin\nEli\nGarrett\nJaquan\nJayden\nKeon\nKevon\nPhilip\nTavon\nTroy\nAlejandro\nAngelo\nAntoine\nBennett\nCorey\nCurtis\nDemarco\nDerek\nDwayne\nFrank\nHunter\nJesse\nJuan\nLawrence\nLukas\nMason\nPhillip\nRashad\nReginald\nShawn\nTerrell\nWayne\nAhmed\nAllen\nAlonzo\nAmir\nArthur\nBernard\nCornelius\nDandre\nDennis\nElias\nGerald\nGraham\nJabari\nJeffrey\nJermaine\nJerome\nJohnathan\nJorge\nKobe\nMalcolm\nMarcellus\nMauricio\nQuentin\nScott\nZion\nAndres\nAndy\nAri\nBrendan\nCalvin\nCesar\nDamani\nDarnell\nDarren\nDejuan\nEduardo\nFrancisco\nIsiah\nJamar\nJosue\nKareem\nKeith\nKelvin\nKyree\nLouis\nMartin\nMarvin\nMohammed\nMoises\nNelson\nQuinn\nRaymond\nRoberto\nSeth\nShemar\nSolomon\nTyrell\nTyrese\nAngel\nAnton\nAntwan\nBlake\nBradley\nCristian\nDarrell\nDarryl\nDavion\nDeclan\nDominic\nDominique\nDonte\nEmanuel\nEzra\nGiovanni\nGriffin\nHarrison\nHector\nIvan\nJaiden\nJajuan\nJaylin\nJeffery\nJoel\nJonah\nKendall\nLamar\nLamont\nManuel\nMario\nMarlon\nMaximilian\nMitchell\nRicardo\nRussell\nSpencer\nStanley\nTobias\nTravis\nVernon\nWesley\nMichael\nWilliam\nJames\nJohn\nDavid\nAlexander\nKevin\nJoshua\nSamuel\nChristopher\nThomas\nDaniel\nJoseph\nJordan\nMatthew\nAndrew\nBenjamin\nCharles\nChristian\nElijah\nJason\nNicholas\nAnthony\nEthan\nRobert\nGabriel\nJonathan\nBrian\nAidan\nRyan\nAaron\nHenry\nIsaiah\nEric\nZachary\nJacob\nPatrick\nBrandon\nSean\nIan\nJalen\nCameron\nXavier\nJustin\nLuke\nNathan\nNoah\nJeremiah\nDylan\nNathaniel\nJack\nPeter\nAdam\nMalik\nOscar\nTyler\nLiam\nMarcus\nCarlos\nDiego\nMaxwell\nSteven\nCaleb\nJose\nNicolas\nRichard\nEmmanuel\nKhalil\nKyle\nMalachi\nJackson\nMicah\nAntonio\nBryan\nConnor\nGregory\nJaden\nKenneth\nMark\nPaul\nDerrick\nDonald\nJulian\nLucas\nLuis\nOliver\nOwen\nAlex\nAndre\nAngel\nBrendan\nDonovan\nIsaac\nJaylen\nJosiah\nMekhi\nMiles\nTimothy\nVictor\nDevin\nDominic\nEdward\nEvan\nJeremy\nJonah\nAndy\nCole\nCristian\nDarius\nGeorge\nMarquis\nMelvin\nSebastian\nTrevor\nAmari\nChase\nCorey\nJorge\nMason\nMaurice\nAntoine\nDavon\nDeandre\nEdwin\nJuan\nMarvin\nMax\nRicardo\nTrevon\nAlejandro\nDaquan\nDelonte\nDennis\nFrank\nGavin\nJamari\nJared\nJavier\nJesse\nJosue\nKeith\nReginald\nRonald\nAdrian\nBrayan\nCalvin\nDeonte\nDonnell\nJaquan\nJayden\nJerome\nKai\nLorenzo\nMarco\nMyles\nQuinn\nTyree\nAlan\nBryce\nColin\nDarryl\nDevon\nErick\nFranklin\nJabari\nKyree\nLarry\nLeonardo\nLogan\nMiguel\nRashad\nStephen\nTerrell\nTheodore\nTravis\nAbraham\nAhmad\nAli\nAustin\nClarence\nDamien\nDarrell\nDemarco\nEdgar\nGrant\nJamal\nJoel\nKelvin\nLawrence\nMarc\nRafael\nTerrance\nTony\nTyrell\nAhmed\nAlexis\nAmir\nBradley\nBrady\nCarl\nDamon\nDarren\nDemetrius\nDuncan\nDwayne\nEarl\nGary\nGerald\nGraham\nHarold\nHayden\nHector\nJake\nJeffrey\nJesus\nKaleb\nKeon\nLeo\nLuca\nMarcos\nPhillip\nRodney\nRoger\nRussell\nShaun\nSpencer\nTyrone\nVincent\nWesley\nAlec\nAlijah\nAllen\nAngelo\nCesar\nConor\nCurtis\nDamion\nDandre\nDante\nDaryl\nDavion\nDeon\nDerek\nDonte\nDouglas\nEli\nElias\nElmer\nErik\nGiovanni\nGriffin\nJaime\nJavon\nJimmy\nJohnathan\nJulius\nJunior\nKalil\nKamari\nKavon\nKendall\nLamar\nLouis\nLukas\nMalcolm\nMateo\nMathew\nMuhammad\nMustafa\nNigel\nOmar\nPhilip\nPreston\nRashard\nRiley\nSamson\nShawn\nTavon\nTristan\nTroy\nWilson\nZion\nMichael\nWilliam\nAlexander\nJohn\nDavid\nDaniel\nJames\nJoshua\nChristopher\nMatthew\nSamuel\nAndrew\nRyan\nNicholas\nBenjamin\nKevin\nJonathan\nAnthony\nThomas\nJacob\nJoseph\nAidan\nElijah\nIsaiah\nRobert\nEthan\nBrandon\nChristian\nJack\nJeremiah\nJustin\nCharles\nEric\nHenry\nJackson\nZachary\nBryan\nNoah\nSean\nAntonio\nJose\nMaxwell\nAaron\nJalen\nJason\nJordan\nPeter\nMalik\nLuke\nAdam\nMalachi\nTyler\nDylan\nEvan\nGabriel\nBrian\nColin\nJaden\nNathan\nCameron\nJayden\nDevin\nGregory\nLucas\nIan\nLiam\nMarcus\nCaleb\nCarlos\nConnor\nEdward\nIsaac\nNicolas\nOwen\nLogan\nNathaniel\nPatrick\nXavier\nAndre\nJeremy\nPaul\nAngel\nKhalil\nKyle\nRichard\nTimothy\nVictor\nBryce\nMax\nMiles\nEmmanuel\nJuan\nMark\nMaurice\nOscar\nAlex\nAlexis\nDarren\nDominic\nMicah\nOliver\nSebastian\nAdrian\nDarius\nDerrick\nDonovan\nEdwin\nGavin\nJeffrey\nJonah\nJulian\nKyree\nMarquis\nQuinn\nStephen\nSteven\nTheodore\nZion\nCristian\nErik\nKeith\nKenneth\nMohamed\nAmir\nAndy\nBrendan\nCarter\nDamari\nGeorge\nGriffin\nJaylen\nLeo\nMiguel\nOmar\nRonald\nSimon\nSpencer\nTerrell\nAustin\nCole\nEli\nJoel\nJosue\nLouis\nMateo\nMekhi\nMelvin\nVincent\nAiden\nCorey\nJabari\nJerome\nJorge\nLuis\nPhilip\nReginald\nDelonte\nDemetrius\nDwayne\nJamal\nKai\nMartin\nMarvin\nShawn\nTyree\nWalter\nAmari\nAntoine\nBlake\nBrayan\nCalvin\nChase\nDeandre\nDeon\nDiego\nJermaine\nKaleb\nLeon\nMarcellus\nMarco\nMason\nSeth\nShane\nTobias\nTony\nTrevor\nTyrell\nWesley\nAbraham\nAnderson\nAngelo\nBaby\nCesar\nConor\nDarrell\nDaryl\nDavis\nDavon\nDeclan\nDemari\nDennis\nDequan\nDevon\nElias\nErick\nFernando\nFinn\nGrant\nIvan\nJamar\nJamari\nJared\nKareem\nLance\nLuca\nLukas\nMalcolm\nMarc\nMarcos\nMarquette\nMarquise\nMyles\nOmari\nParker\nTravon\nTristan\nAlan\nAlbert\nAlejandro\nAlonzo\nAntony\nAri\nAshton\nBernard\nCraig\nDonald\nDonte\nDrew\nEdgar\nEmanuel\nEmilio\nHarrison\nHugo\nHunter\nIssac\nJaquan\nJavier\nJesse\nJesus\nJulius\nKamari\nKelvin\nKeon\nKobe\nLamont\nLarry\nLeonard\nLorenzo\nManuel\nMatias\nMaximilian\nMicheal\nMilo\nPablo\nPhillip\nRicardo\nRoberto\nSam\nTerrence\nTomas\nWeston\nWinston\nWyatt\nWilliam\nJohn\nAlexander\nJoshua\nAnthony\nMichael\nDaniel\nAndrew\nKevin\nDavid\nBenjamin\nJames\nChristopher\nChristian\nRyan\nMatthew\nNicholas\nSamuel\nJacob\nJoseph\nRobert\nCharles\nNoah\nElijah\nJustin\nThomas\nEthan\nJason\nEric\nJeremiah\nBrandon\nIsaiah\nJonathan\nBrian\nJordan\nAidan\nBryan\nJack\nDevin\nHenry\nGabriel\nTyler\nZachary\nMarcus\nAntonio\nCarlos\nJose\nNathaniel\nAaron\nDylan\nJackson\nJalen\nOwen\nJayden\nSebastian\nSean\nXavier\nMaxwell\nEdward\nJaden\nMalachi\nAdam\nIan\nNathan\nPaul\nAndre\nCristian\nJulian\nKhalil\nColin\nJuan\nMalik\nMax\nBrendan\nCaleb\nConnor\nLucas\nMark\nTimothy\nAiden\nLuke\nPatrick\nEvan\nNicolas\nSteven\nAlex\nAngel\nBryce\nCameron\nCole\nDerrick\nDiego\nEmmanuel\nIsaac\nKyle\nEli\nMekhi\nMiles\nOliver\nPeter\nTheodore\nAdrian\nCalvin\nGregory\nLeo\nLiam\nVictor\nAlejandro\nAmir\nAndres\nJavier\nJosiah\nLuis\nMarco\nMohamed\nOmar\nOscar\nRichard\nAmari\nChase\nJake\nJoel\nJonah\nKyree\nMyles\nPhillip\nReginald\nRonald\nSpencer\nAllen\nBabyboy\nCarter\nDarius\nJaylen\nJeffrey\nKenneth\nMaurice\nShawn\nTristan\nDarren\nGeorge\nJeremy\nJosue\nKeith\nLarry\nMason\nMuhammad\nStephen\nAlexis\nAngelo\nDavon\nDelonte\nDemarco\nDominic\nFranklin\nGary\nGraham\nJabari\nJamari\nJaquan\nJorge\nMarquis\nMartin\nMelvin\nRicardo\nRiley\nTroy\nAhmad\nAlan\nAndy\nAntoine\nAri\nArthur\nBradley\nBrayan\nCollin\nDeclan\nDerek\nDonte\nEdwin\nErik\nFrederick\nHayden\nIvan\nJamal\nJamar\nJimmy\nKai\nLorenzo\nMicah\nMiguel\nQuentin\nSergio\nSeth\nSimon\nTrevor\nTyrone\nVincent\nWesley\nAlessandro\nBlake\nCarl\nCarson\nCooper\nCyrus\nDamon\nDarrell\nDeandre\nDevon\nDion\nDominick\nDonovan\nEduardo\nElias\nEmerson\nErick\nFinn\nFrancisco\nGriffin\nIbrahim\nJared\nJefferson\nJermaine\nJohnathan\nKelvin\nLogan\nLuca\nMarc\nMarvin\nPhilip\nPreston\nRaymond\nTerrell\nTony\nAmar\nAustin\nAxel\nBen\nBernard\nBrady\nCorey\nCurtis\nDamari\nDamien\nDarnell\nDemetrius\nDennis\nDwayne\nEmanuel\nEzekiel\nEzra\nFernando\nFrancis\nGrant\nGustavo\nHarrison\nIgnacio\nJaylin\nJesus\nJohnny\nKamari\nKameron\nKarim\nKeonte\nLeonardo\nLouis\nManuel\nMarlon\nMaximilian\nMike\nNasir\nNelson\nParker\nQuinn\nSantiago\nStephon\nTobias\nTyree\nTyrell\nZion\nWilliam\nJohn\nJames\nMichael\nAlexander\nKevin\nDaniel\nAnthony\nCharles\nChristopher\nJoshua\nBenjamin\nHenry\nDavid\nMatthew\nJoseph\nSamuel\nAndrew\nEthan\nNicholas\nBrandon\nChristian\nJacob\nBryan\nElijah\nThomas\nJordan\nIsaiah\nJackson\nJason\nJonathan\nNoah\nBrian\nRobert\nJack\nRyan\nZachary\nAaron\nJeremiah\nAntonio\nGabriel\nLuke\nSean\nTyler\nAdam\nLucas\nAidan\nEvan\nIan\nJuan\nMalik\nOwen\nEric\nJustin\nNathaniel\nMalachi\nNathan\nMarcus\nMax\nPatrick\nDylan\nJayden\nDiego\nPaul\nTheodore\nDevin\nJose\nRichard\nSebastian\nVictor\nAndre\nAngel\nCameron\nEdward\nJalen\nJulian\nKyle\nLiam\nCarlos\nJeffrey\nCaleb\nDamari\nDarius\nEdwin\nJaden\nJeremy\nKhalil\nLuis\nNicolas\nOliver\nAlex\nCristian\nDavon\nFranklin\nGeorge\nGregory\nIsaac\nJaylen\nJonah\nKenneth\nLorenzo\nMiguel\nOscar\nTimothy\nGriffin\nIvan\nKelvin\nLogan\nMaxwell\nOmar\nXavier\nConnor\nGavin\nMekhi\nMyles\nSteven\nAndy\nCole\nColin\nDominic\nDonovan\nElias\nKeith\nLuca\nMark\nMicah\nPeter\nStephen\nAiden\nAmari\nCalvin\nDeandre\nFrederick\nGiovanni\nHarrison\nJake\nJamari\nJefferson\nJerome\nJesse\nJosiah\nKai\nLeo\nMason\nMiles\nRicardo\nAlexis\nAmir\nAntoine\nChase\nDerrick\nEmmanuel\nLawrence\nMarquis\nAugust\nBryce\nCarter\nDennis\nErick\nMalcolm\nManuel\nMario\nVincent\nZion\nAllen\nBabyboy\nCesar\nDesmond\nEli\nGraham\nHector\nJesus\nJohnathan\nJosue\nMarco\nMartin\nMelvin\nNasir\nReginald\nShane\nTerrell\nTrevon\nTrevor\nWesley\nAdrian\nAhmed\nBrady\nCorey\nDamien\nDante\nDean\nDelonte\nDevon\nEduardo\nErik\nFinn\nJabari\nJamar\nJared\nJavier\nJermaine\nJoel\nJohnny\nJorge\nLeon\nMarquise\nMarvin\nMateo\nMicheal\nNelson\nRiley\nShaun\nSolomon\nTristan\nWalter\nAbraham\nAhmad\nAlan\nAlec\nAndres\nAnton\nAvery\nBrendan\nCayden\nCyrus\nDemetrius\nDerek\nDonald\nDuane\nFernando\nGarrett\nHayden\nJavon\nJimmy\nJulio\nKamari\nKyree\nMaximilian\nMitchell\nNoel\nOmari\nOmarion\nParker\nRoberto\nRonald\nRonan\nRuben\nSantana\nSantiago\nShawn\nSimon\nSpencer\nTaylor\nTyrell\nWade\nWyatt\nWilliam\nMichael\nChristopher\nAnthony\nAlexander\nDaniel\nJohn\nKevin\nJames\nJoshua\nSamuel\nDavid\nJonathan\nNicholas\nJason\nMatthew\nThomas\nBryan\nBenjamin\nJoseph\nAndrew\nRyan\nCharles\nHenry\nNoah\nChristian\nIsaiah\nElijah\nJustin\nXavier\nGabriel\nJacob\nLucas\nCarlos\nJeremiah\nRobert\nZachary\nJack\nJordan\nJose\nAntonio\nBrian\nEthan\nMalachi\nNathan\nCaleb\nJackson\nLuis\nAaron\nAidan\nLuke\nOwen\nSean\nSebastian\nTyler\nAlex\nPeter\nAndre\nDiego\nJayden\nJulian\nDylan\nEdwin\nMarcus\nTimothy\nBrandon\nCameron\nConnor\nEvan\nIan\nRichard\nJosiah\nNathaniel\nAngel\nEric\nLogan\nDevin\nJuan\nPatrick\nSteven\nAdam\nAdrian\nCarter\nChase\nIsaac\nLiam\nMaxwell\nTristan\nCristian\nDominic\nJaylen\nKenneth\nFranklin\nGeorge\nJalen\nKhalil\nMax\nMicah\nEmmanuel\nJefferson\nJeffrey\nLeo\nMalik\nQuinn\nVictor\nAlexis\nAmir\nGregory\nJonah\nMaurice\nPaul\nZion\nBrendan\nErick\nJaden\nJoel\nKaleb\nNelson\nOliver\nRaymond\nBryce\nCesar\nColin\nDonnell\nEdgar\nJosue\nKyle\nMekhi\nNicolas\nStephen\nTheodore\nAndy\nCole\nEdward\nFinn\nJabari\nJamari\nKyree\nMarvin\nMiles\nOscar\nRicardo\nTony\nAiden\nAlan\nAustin\nElias\nHarrison\nIvan\nJake\nJeremy\nMario\nMark\nMason\nMiguel\nOmar\nSeth\nAlejandro\nAmari\nCalvin\nDarius\nDeclan\nDevon\nElmer\nErik\nFrancisco\nGarrett\nKaden\nKai\nLawrence\nLeonardo\nLevi\nMartin\nMelvin\nNasir\nPhilip\nRonald\nTyrone\nVincent\nAntoine\nBlake\nCollin\nDante\nDemetrius\nDerrick\nEli\nFernando\nGraham\nHayden\nJamal\nJavier\nJesus\nJordy\nKeith\nMarco\nRandy\nSpencer\nStephon\nWyatt\nAbraham\nAhmad\nDamien\nDandre\nDemari\nDonovan\nDwayne\nEduardo\nFelix\nFrank\nGavin\nGrant\nJared\nKamari\nKareem\nKelvin\nKeon\nKieran\nLouis\nLuca\nManuel\nMateo\nMatteo\nNehemiah\nQuincy\nRafael\nRashad\nRodney\nRoman\nSantiago\nShane\nStanley\nTerrell\nWesley\nAlbert\nAlec\nAllen\nAriel\nAsher\nAvery\nBernard\nBranden\nCaden\nClarence\nDarnell\nDarrell\nDarren\nDelonte\nDemarcus\nDennis\nDominick\nEmanuel\nEmerson\nEver\nGideon\nGiovanni\nGriffin\nHarry\nHector\nIsrael\nJairo\nJamar\nJelani\nJermaine\nJesse\nJude\nKhalid\nKing\nLamont\nLandon\nMakhi\nMalcolm\nMarcellus\nMarcos\nMatias\nNikolas\nPhillip\nPreston\nRaul\nRowan\nSergio\nShawn\nSimon\nSolomon\nTavon\nTaylor\nTerrence\nTobias\nTravis\nTrenton\nTyree\nWalter\nWilson\nWilliam\nJohn\nChristopher\nMichael\nAnthony\nAlexander\nDaniel\nKevin\nAndrew\nNoah\nJames\nJonathan\nSamuel\nDavid\nJoshua\nMatthew\nBenjamin\nHenry\nBrandon\nCharles\nChristian\nJason\nJustin\nJeremiah\nJacob\nDylan\nElijah\nEthan\nGabriel\nNathan\nNicholas\nThomas\nJoseph\nIsaiah\nJose\nRyan\nBrian\nBryan\nZachary\nCarlos\nRobert\nIan\nJack\nXavier\nEric\nJordan\nNicolas\nOliver\nAaron\nLucas\nCameron\nEvan\nJaden\nJayden\nDiego\nMalachi\nMalik\nSteven\nAidan\nAndre\nCaleb\nConnor\nEdward\nJackson\nLiam\nNathaniel\nPatrick\nCristian\nIsaac\nLuke\nSebastian\nAngel\nAntonio\nGeorge\nSean\nZion\nEdwin\nJaylen\nJoel\nJosue\nJuan\nJulian\nKenneth\nOscar\nOwen\nRichard\nTyler\nAdrian\nErick\nJeffrey\nMiles\nPeter\nTheodore\nChase\nEmmanuel\nJosiah\nKhalil\nLuis\nMarcus\nMax\nVictor\nGavin\nMarvin\nTristan\nAustin\nBrendan\nKamari\nLeo\nTimothy\nAlex\nAlexis\nColin\nDarius\nKai\nKeith\nMicah\nTyrone\nAdam\nAmir\nAnderson\nAndy\nBryce\nDevin\nElias\nKyle\nMark\nMaurice\nSimon\nAllen\nAmari\nByron\nCooper\nDerrick\nDominic\nEmanuel\nHarrison\nJake\nJamari\nJefferson\nJonah\nLandon\nLuca\nMartin\nNehemiah\nVincent\nAiden\nCarter\nCyrus\nDonovan\nEmerson\nGiovanni\nJesus\nLogan\nMaxwell\nMekhi\nMelvin\nSeth\nAbraham\nAlejandro\nAntoine\nAxel\nBrady\nCole\nDamari\nDamien\nDeandre\nIsiah\nJalen\nJeremy\nJermaine\nKelvin\nLawrence\nLeonardo\nMalcolm\nManuel\nMario\nMason\nMiguel\nPaul\nPhilip\nAlan\nAsher\nCaden\nChris\nCorey\nDamian\nDemetrius\nEli\nFinn\nGregory\nImmanuel\nIsrael\nJerome\nJoaquin\nKyree\nMarcos\nNelson\nNolan\nOmar\nPreston\nRafael\nRicardo\nSpencer\nStephen\nWalter\nAhmed\nAllan\nAndres\nAntwan\nBrayden\nCesar\nDanny\nDavion\nDerek\nDevon\nEdgar\nElmer\nEzra\nFernando\nGriffin\nHector\nJaiden\nJamar\nJavier\nJorge\nJulius\nKaleb\nLorenzo\nLouis\nMarquis\nMateo\nMicheal\nMoises\nNasir\nPrince\nQuinn\nReginald\nRicky\nRonald\nRuben\nSolomon\nTrevon\nTroy\nTucker\nWesley\nWyatt\nAdonis\nAmare\nAri\nAyden\nBeckett\nBlake\nDante\nDaquan\nDaron\nDavon\nDeangelo\nDemarcus\nDillon\nDonte\nGary\nGideon\nGrant\nGrayson\nHudson\nIsmael\nIvan\nJabari\nJadon\nJared\nJerry\nJohnathan\nJustice\nKaden\nKaiden\nKeon\nLamont\nLukas\nMarkus\nMarquise\nMessiah\nMyles\nQuentin\nRaphael\nRaymond\nRowan\nShawn\nTavon\nTerrell\nTravis\nUlises\nWilliam\nAlexander\nMichael\nJohn\nChristopher\nSamuel\nDaniel\nElijah\nKevin\nJames\nJoshua\nBenjamin\nDavid\nHenry\nAnthony\nChristian\nJoseph\nAndrew\nCharles\nMatthew\nJayden\nJustin\nGabriel\nJonathan\nThomas\nIsaac\nRyan\nAntonio\nEthan\nBryan\nSean\nBrandon\nJason\nNoah\nRobert\nJacob\nXavier\nJack\nNathan\nNicholas\nDylan\nIsaiah\nJeremiah\nBrian\nAngel\nJackson\nLucas\nNathaniel\nSebastian\nDiego\nEric\nEvan\nJordan\nLuke\nZachary\nEdwin\nZion\nEmmanuel\nJaden\nJose\nLiam\nCarlos\nAaron\nAiden\nCameron\nColin\nIan\nAdrian\nCaleb\nJefferson\nTyler\nAdam\nEdward\nMalik\nMax\nOwen\nSteven\nKhalil\nLuis\nMalachi\nNicolas\nOliver\nAidan\nAmari\nConnor\nErick\nJamari\nJaylen\nJosue\nMiles\nPatrick\nGavin\nIvan\nJeffrey\nJulian\nKenneth\nMicah\nAndre\nCalvin\nDemetrius\nDerrick\nEli\nGeorge\nJoel\nJuan\nCristian\nDevin\nMekhi\nOmar\nOscar\nRichard\nTimothy\nVictor\nAmir\nGregory\nJonah\nJosiah\nKelvin\nLogan\nMark\nTheodore\nAnderson\nBryce\nDominic\nElias\nFrank\nJavier\nJeremy\nKyle\nMarvin\nMaurice\nNasir\nPaul\nPeter\nWalter\nCarter\nChase\nCole\nCooper\nDarius\nDavon\nFranklin\nKai\nKaleb\nLeo\nMarco\nMateo\nMaxwell\nMiguel\nSimon\nStephen\nVincent\nAlex\nAlexis\nAndy\nAustin\nCristopher\nDominick\nDonovan\nDonte\nEmerson\nGriffin\nHarrison\nHector\nJaiden\nJohnathan\nKing\nLuca\nMarcus\nMason\nSeth\nShane\nTomas\nAlan\nAlec\nAlejandro\nDerek\nFrancisco\nJesus\nKaiden\nKyree\nLandon\nLorenzo\nNelson\nPedro\nQuinn\nRicardo\nSantiago\nSolomon\nAbraham\nAnton\nBennett\nBlake\nBrady\nBrayan\nDamari\nDanny\nDeclan\nDeon\nDillon\nEduardo\nErik\nFrederick\nGrant\nJamal\nJermiah\nJerry\nJorge\nKeith\nLeonard\nLeonardo\nLincoln\nLukas\nMario\nMartin\nMatteo\nMelvin\nMohamed\nRoberto\nShawn\nWesley\nAden\nAhmed\nAlijah\nAllen\nAmare\nAntoine\nAriel\nAsher\nCesar\nCordell\nCurtis\nDamian\nDarnell\nDeandre\nDelonte\nDevon\nEdgar\nElliot\nFernando\nGerald\nGrayson\nIsmael\nIzaiah\nJalen\nJamar\nJasper\nJesse\nJohan\nJohnny\nJulius\nKamari\nKaron\nKendall\nMarc\nMarlon\nMaximilian\nNigel\nNoel\nPablo\nPreston\nRandy\nRoman\nRonan\nSpencer\nSteve\nTerrance\nTerry\nTristan\nTroy\nWarren\nWyatt\nZaire\nWilliam\nMichael\nJames\nAlexander\nDaniel\nChristopher\nJohn\nJoshua\nDavid\nElijah\nJacob\nAnthony\nNicholas\nAndrew\nHenry\nJonathan\nSamuel\nJayden\nNoah\nCharles\nChristian\nKevin\nThomas\nBenjamin\nBryan\nJack\nJason\nJustin\nDylan\nMatthew\nRyan\nRobert\nJoseph\nJeremiah\nEthan\nLiam\nAngel\nBrandon\nGabriel\nIsaac\nXavier\nCameron\nDiego\nIsaiah\nBrian\nCarlos\nCaleb\nEvan\nLucas\nJose\nIan\nJackson\nLuke\nNathan\nOliver\nAaron\nJordan\nSean\nTyler\nAdrian\nJulian\nNathaniel\nOwen\nAidan\nEdward\nKhalil\nSebastian\nTristan\nZachary\nZion\nAiden\nAmari\nAntonio\nEli\nMiles\nPeter\nJaden\nLeo\nMalik\nMason\nSteven\nEmmanuel\nJeremy\nJosiah\nJuan\nMax\nMicah\nAndy\nCarter\nDevin\nJosue\nNicolas\nOscar\nRichard\nAmir\nColin\nConnor\nDominic\nElias\nEric\nGeorge\nGregory\nLuis\nMalachi\nMarcus\nPatrick\nAnderson\nAndre\nJonah\nLogan\nLuca\nAlexis\nChase\nDarius\nDerrick\nErick\nGrant\nJavier\nMaxwell\nNasir\nAlex\nDeclan\nSantiago\nSimon\nTheodore\nAdam\nByron\nCole\nCooper\nEmerson\nGavin\nGraham\nJamari\nJaylen\nMarco\nMateo\nMekhi\nTimothy\nAriel\nBlake\nBryce\nCalvin\nCristian\nDamari\nDonovan\nEdwin\nHudson\nJaiden\nJefferson\nKai\nKenneth\nMohamed\nMyles\nSemaj\nVictor\nWalter\nWilson\nWyatt\nAlan\nAlejandro\nAllen\nBrendan\nDavon\nEduardo\nEmmett\nIvan\nJasper\nJaylin\nJoaquin\nJoel\nKaleb\nKeith\nMalcolm\nMario\nMark\nMaurice\nMelvin\nPaul\nRiley\nVincent\nAugust\nAxel\nBrady\nDemetrius\nDennis\nFelix\nGiovanni\nHarrison\nJamal\nMarvin\nOmar\nPhilip\nRaphael\nSergio\nStephen\nTerrell\nZaire\nAbraham\nAlessandro\nAlijah\nAyden\nBrayan\nCarl\nCristopher\nCyrus\nDanny\nDarwin\nDelonte\nEamon\nElmer\nGerald\nIbrahim\nJamar\nJeffrey\nJesus\nKelvin\nKian\nKyle\nKyree\nLandon\nLevi\nLincoln\nMarkell\nMatias\nMaximilian\nNehemiah\nNoel\nNolan\nParker\nQuentin\nQuinn\nRafael\nRicardo\nAli\nAndres\nAngelo\nAntoine\nAntony\nAsher\nCesar\nConrad\nDeandre\nDemari\nEmanuel\nEzra\nFrancisco\nFranklin\nJake\nJared\nKayden\nKeyon\nKieran\nKing\nLeonardo\nMakai\nMakhi\nMarcos\nMathew\nMatteo\nMauricio\nMessiah\nRandy\nRashad\nReginald\nSamir\nTavon\nTomas\nTroy\nTyree\nWilliam\nAlexander\nHenry\nJohn\nChristopher\nJames\nAnthony\nMichael\nJoshua\nBenjamin\nElijah\nNoah\nDaniel\nJayden\nEthan\nJonathan\nKevin\nDavid\nJacob\nMatthew\nCharles\nChristian\nNathan\nRyan\nAndrew\nBrandon\nAngel\nGabriel\nNicholas\nSamuel\nThomas\nAiden\nNathaniel\nDylan\nIsaiah\nJoseph\nCaleb\nJackson\nJustin\nOwen\nTyler\nJeremiah\nJason\nLiam\nCameron\nMason\nRobert\nXavier\nMax\nLucas\nEvan\nGeorge\nJose\nAidan\nBrian\nZachary\nIsaac\nJack\nJosiah\nOliver\nConnor\nSebastian\nZion\nAmari\nAntonio\nMiles\nAdam\nAdrian\nBryan\nJamari\nEdwin\nJordan\nJulian\nMalik\nMicah\nEdward\nJaden\nLeo\nLuke\nMalachi\nAaron\nAmir\nGavin\nKhalil\nLogan\nNicolas\nOmar\nPeter\nSteven\nTheodore\nAnderson\nCarter\nEric\nGrant\nJosue\nLuis\nMaxwell\nCarlos\nChase\nDiego\nDominic\nEli\nHector\nJeffrey\nJuan\nLeonardo\nLorenzo\nTimothy\nAlejandro\nAndre\nAyden\nElias\nEmmanuel\nErick\nJaylen\nJoel\nKenneth\nMarcus\nParker\nRicardo\nRichard\nDerrick\nDevin\nEmerson\nFrancisco\nGrayson\nGregory\nIan\nJonah\nLandon\nOscar\nPaul\nSean\nTristan\nAden\nBryce\nCole\nColin\nCooper\nHudson\nJefferson\nKingston\nLouis\nMarco\nMyles\nPatrick\nRiley\nVictor\nWyatt\nAbraham\nAli\nAshton\nAxel\nBrayan\nDeclan\nDonovan\nEverett\nEzra\nFinn\nJaiden\nJamal\nKaleb\nKamari\nKeith\nKing\nLarry\nMelvin\nNolan\nRonald\nSantiago\nSimon\nAlex\nAntoine\nAustin\nCalvin\nCesar\nCristian\nDarius\nDeandre\nIsrael\nIvan\nJace\nJake\nJalen\nKai\nKaiden\nKayden\nLamar\nLawrence\nRafael\nSincere\nWesley\nAriel\nAsher\nBlake\nCorey\nDemari\nDesmond\nEduardo\nElliott\nFrank\nHunter\nJesse\nJesus\nJimmy\nJudah\nMalcolm\nMark\nMarley\nMarvin\nMateo\nMekhi\nMilo\nNasir\nPedro\nPhilip\nPrince\nSaul\nTravis\nTrevon\nVincent\nAbel\nAhmir\nAndy\nAri\nBrendan\nBrennan\nCaden\nCampbell\nCasey\nCyrus\nDarnell\nDarren\nDavion\nDouglas\nFelix\nFinnegan\nGriffin\nHarrison\nJabari\nJaylin\nJeffery\nJoaquin\nJorge\nKaden\nKameron\nKaron\nKenzo\nKeon\nMakhi\nMarkell\nMaurice\nMiguel\nNehemiah\nRashad\nRaymond\nReginald\nShane\nTerrance\nTheo\nTony\nZaire\nZyaire\nWilliam\nAlexander\nJames\nDaniel\nChristopher\nBenjamin\nHenry\nJohn\nJoshua\nJayden\nAnthony\nElijah\nRyan\nMichael\nEthan\nKevin\nNoah\nAiden\nChristian\nSamuel\nDavid\nAndrew\nMatthew\nJeremiah\nJacob\nIsaiah\nLuke\nJustin\nThomas\nOliver\nZion\nJoseph\nCharles\nOwen\nRobert\nJack\nJonathan\nKhalil\nMason\nNathan\nIan\nXavier\nEvan\nGabriel\nMax\nNicholas\nDylan\nJason\nCaleb\nJulian\nLucas\nCameron\nLeo\nLiam\nMiles\nNathaniel\nZachary\nAngel\nJackson\nJaden\nSebastian\nAmir\nChase\nTheodore\nBrandon\nBryan\nGeorge\nIsaac\nCarter\nJosiah\nAaron\nBrian\nJordan\nMateo\nTristan\nColin\nMalik\nMicah\nAdam\nAxel\nConnor\nDeclan\nEli\nJonah\nSean\nTyler\nAlex\nEdward\nKayden\nAntonio\nAshton\nAyden\nDiego\nLuis\nOscar\nTimothy\nAdrian\nAsher\nAustin\nCarlos\nCristian\nEric\nJaiden\nJose\nJosue\nLogan\nMekhi\nAmari\nDominic\nHarrison\nPeter\nSimon\nSteven\nAnderson\nCaden\nFelix\nJoel\nKingston\nLouis\nMalachi\nMarcus\nMaxwell\nPatrick\nRonald\nStephen\nAidan\nAlexis\nCole\nEmilio\nGregory\nOmar\nPaul\nVictor\nAlejandro\nCesar\nDamari\nEzra\nFinn\nGavin\nGraham\nJaylen\nJude\nKai\nLandon\nLeonardo\nPeyton\nRafael\nRiley\nVincent\nAbel\nAden\nAhmad\nBlake\nBryson\nEmmanuel\nErick\nEverett\nGrant\nJamari\nJeremy\nKaleb\nWalter\nWesley\nWyatt\nAndre\nAndres\nAri\nAugust\nCalvin\nCharlie\nDanny\nDean\nDelonte\nElias\nElliott\nGrayson\nHugo\nJefferson\nJuan\nKaden\nKamari\nKenneth\nKing\nLawrence\nNehemiah\nNicolas\nNoel\nParker\nRhys\nTerrell\nZaire\nAbraham\nAngelo\nBrayden\nFelipe\nHudson\nIsrael\nJamal\nJavier\nJayson\nJeffrey\nJoaquin\nKeith\nLukas\nMalcolm\nMark\nMaximilian\nMessiah\nMilo\nNasir\nNico\nNolan\nPrince\nShaun\nTerrance\nAhmed\nAmare\nArthur\nAtticus\nBradley\nBrayan\nBrendan\nBryce\nCarson\nDarren\nDeon\nDerrick\nEduardo\nEdwin\nEmanuel\nGrady\nHayes\nHunter\nIsmael\nIvan\nJalil\nJared\nJasper\nJesus\nKaiden\nKelvin\nKyree\nLincoln\nLuca\nLuka\nMartin\nMiguel\nNelson\nRaheem\nRashad\nRayan\nRicardo\nRichard\nRohan\nSamir\nSincere\nSpencer\nTobias\nWilliam\nAlexander\nHenry\nJohn\nJames\nDaniel\nBenjamin\nSamuel\nDavid\nJacob\nChristopher\nAnthony\nElijah\nRyan\nMichael\nNoah\nEthan\nDylan\nLiam\nChristian\nThomas\nAiden\nCharles\nKevin\nMason\nMatthew\nJonathan\nLucas\nBrandon\nJoshua\nNathan\nNicholas\nSebastian\nCarlos\nGabriel\nJayden\nAndrew\nJoseph\nCaleb\nJackson\nJustin\nNathaniel\nCarter\nIsaac\nJack\nJeremiah\nOliver\nRobert\nZachary\nCameron\nDiego\nOwen\nTheodore\nAaron\nEli\nLuke\nBryan\nEvan\nJason\nLeo\nAdrian\nIsaiah\nZion\nAngel\nMax\nSteven\nTyler\nAmari\nMarcus\nMicah\nPeter\nXavier\nAmir\nJordan\nAnderson\nIan\nJulian\nKhalil\nLogan\nMaxwell\nMiles\nAntonio\nDominic\nJuan\nKai\nLuis\nMateo\nBlake\nElias\nJoel\nLuca\nMark\nPatrick\nTristan\nAdam\nGavin\nMalachi\nAidan\nAlex\nAyden\nColin\nEdward\nFelix\nJose\nKenneth\nNicolas\nOscar\nAbraham\nChase\nConnor\nElliot\nJamari\nJosiah\nOmar\nPaul\nBryce\nDamari\nDevin\nEric\nGeorge\nKamari\nMiguel\nRichard\nSean\nTimothy\nWyatt\nAlexis\nAxel\nDeclan\nEverett\nJefferson\nJosue\nKayden\nLandon\nMalik\nWesley\nAshton\nAugust\nCalvin\nGrayson\nJeremy\nJonah\nKing\nLincoln\nMessiah\nRonald\nSimon\nAlejandro\nBrian\nByron\nDamian\nDennis\nDillon\nEduardo\nEmmanuel\nFinn\nFrederick\nJaden\nJayson\nJeffrey\nKaleb\nKidus\nMilo\nNoel\nSantiago\nSilas\nAden\nAli\nAllen\nAndre\nArjun\nAustin\nAvery\nCole\nCristian\nCyrus\nEmmett\nGraham\nGrant\nGregory\nHugh\nJasper\nKaden\nKaiden\nKarter\nMarco\nMarshall\nMatias\nNehemiah\nRaphael\nRiley\nSeth\nAhmad\nAlexandre\nAndy\nCamden\nCarl\nCesar\nChris\nCooper\nDarwin\nDemetrius\nDerek\nDonte\nEdwin\nHarrison\nHayden\nHugo\nIker\nJake\nJesus\nKyle\nLeonardo\nLevi\nLorenzo\nLouis\nLukas\nMarcos\nMekhi\nNahom\nNolan\nParker\nSemaj\nTheo\nZamari\nAbel\nAmare\nAri\nBennett\nBraden\nBrendan\nCaden\nDarius\nDerrick\nDonovan\nDwayne\nEliab\nElliott\nEllis\nEmerson\nErick\nEzequiel\nEzra\nHector\nHunter\nIvan\nJahlil\nJaiden\nJaylen\nKameron\nKeith\nKiran\nLawrence\nLevon\nMarquis\nMyles\nNasir\nNazir\nPhilip\nRafael\nRandy\nRohan\nRonan\nRoy\nSkyler\nTrevor\nTroy\nTyrone\nVictor\nZaiden\nZaire\nZyaire\nWilliam\nAlexander\nJohn\nHenry\nSamuel\nNoah\nAiden\nJames\nJacob\nDaniel\nMichael\nThomas\nChristopher\nMatthew\nEthan\nDylan\nJayden\nDavid\nJoshua\nLiam\nAnthony\nCharles\nChristian\nJoseph\nMason\nOliver\nBenjamin\nRyan\nSebastian\nTheodore\nAndrew\nElijah\nLucas\nKevin\nCaleb\nJackson\nAaron\nBrandon\nJustin\nGabriel\nJeremiah\nTyler\nAmir\nIan\nLogan\nNicholas\nXavier\nCarter\nEli\nIsaac\nIsaiah\nJack\nJosiah\nLeo\nAngel\nMiles\nNathan\nRobert\nChase\nEric\nAdrian\nBryce\nDominic\nJonathan\nKai\nMateo\nZion\nGeorge\nMax\nEmmanuel\nEvan\nJulian\nKing\nLuke\nOwen\nPatrick\nAdam\nCarlos\nJordan\nMaxwell\nZachary\nBlake\nCameron\nGrant\nMalachi\nNathaniel\nSantiago\nAntonio\nJason\nJayceon\nJose\nLuca\nOscar\nPeter\nColin\nElias\nKaleb\nKhalil\nAidan\nConnor\nDeclan\nDiego\nHarrison\nHunter\nJeffrey\nAmari\nAnderson\nEdward\nJace\nJefferson\nKenneth\nMiguel\nParker\nRoman\nSimon\nSteven\nAsher\nBryan\nGavin\nGraham\nHudson\nJaden\nJeremy\nJude\nKayden\nLandon\nMicah\nNicolas\nOmar\nPaul\nSean\nVictor\nWesley\nAndy\nArthur\nAxel\nBennett\nCaden\nEnzo\nGregory\nTristan\nAli\nAvery\nCalvin\nCorey\nCristian\nDamian\nGrayson\nJoel\nJosue\nKyle\nMarcus\nMessiah\nRicardo\nVincent\nAriel\nAyden\nBrayden\nCesar\nCole\nDean\nEmmett\nEzra\nHayden\nJonah\nMarcos\nMartin\nMaximilian\nNehemiah\nNoel\nPrinceton\nTimothy\nWyatt\nAbel\nAbraham\nAlexis\nAndre\nAri\nAshton\nAustin\nBrian\nBrooks\nDesmond\nDonovan\nEverett\nFelix\nHugo\nJake\nKaden\nKaiden\nKameron\nKendrick\nKingston\nLeonardo\nLouis\nLuis\nMakhi\nMalik\nManuel\nMark\nMatteo\nMaurice\nMekhi\nRafael\nSincere\nSolomon\nTyson\nZayden\nAhmad\nAlex\nAndres\nAugust\nBrady\nCooper\nDamari\nDerek\nDominick\nElliot\nEmerson\nEmilio\nEzekiel\nFernando\nFinn\nFrancisco\nHolden\nIsrael\nJelani\nJuan\nKeith\nKyrie\nLincoln\nMarvin\nMyles\nNolan\nPeyton\nRaymond\nRowan\nSemaj\nZaire\nAmanuel\nBradley\nBryson\nCarl\nCharlie\nCristopher\nDarren\nDeon\nDevin\nDonald\nDouglas\nEllis\nEmanuel\nErick\nFrank\nHugh\nIbrahim\nJair\nJaleel\nJasiah\nJaxon\nJesus\nKarter\nKelvin\nLangston\nMelvin\nMohamed\nRavi\nReed\nRhys\nRonald\nRory\nSamir\nTony\nTravis\nWallace\nZaiden\nAlexander\nWilliam\nJohn\nBenjamin\nCharles\nJames\nNoah\nSamuel\nHenry\nJacob\nMichael\nDaniel\nDylan\nOliver\nLiam\nChristopher\nEthan\nLucas\nTheodore\nAiden\nDavid\nMason\nJoshua\nJack\nLogan\nSebastian\nThomas\nAnthony\nJoseph\nElijah\nOwen\nJackson\nRyan\nGabriel\nJonathan\nNathan\nAndrew\nIsaac\nMatthew\nJeremiah\nAaron\nCaleb\nCarter\nChristian\nGeorge\nIsaiah\nNicholas\nJayden\nKing\nJosiah\nAmir\nConnor\nLuke\nJason\nNathaniel\nAustin\nJordan\nKevin\nLeo\nMaxwell\nMiles\nPatrick\nBryce\nJulian\nNicolas\nRobert\nMateo\nTyler\nCameron\nKayden\nChase\nMicah\nZachary\nAdam\nAshton\nDeclan\nJeremy\nJustin\nEdward\nEvan\nIan\nJose\nMax\nPeter\nRoman\nAdrian\nAngel\nAsher\nEli\nElias\nEric\nEzra\nJeffrey\nKenneth\nNasir\nOscar\nAxel\nEmmett\nFelix\nJosue\nKarter\nKhalil\nXavier\nAugust\nAyden\nBrian\nBryan\nKaiden\nLandon\nMessiah\nPrince\nVincent\nAden\nAvery\nCarlos\nColin\nDominic\nEverett\nJaden\nJasper\nJuan\nLincoln\nSantana\nSteven\nTristan\nAndre\nAntonio\nBlake\nCole\nCooper\nDesmond\nGavin\nHarrison\nHudson\nJace\nJefferson\nJonah\nLevi\nLuca\nLuis\nRory\nRowan\nWyatt\nZion\nAbraham\nAhmad\nAnderson\nBrandon\nBrendan\nEmerson\nGrayson\nNolan\nPaul\nSantiago\nSolomon\nWalter\nAlex\nElliot\nGrant\nJayce\nKai\nKingston\nMilo\nNehemiah\nParker\nSimon\nTimothy\nWesley\nBennett\nCristian\nDamari\nDevin\nDiego\nElliott\nEmmanuel\nFranklin\nGraham\nHugo\nIbrahim\nIker\nJake\nMalachi\nMarco\nMarcus\nMario\nMartin\nRaymond\nRonald\nSean\nSeth\nSincere\nZayden\nZyaire\nAidan\nAlejandro\nAlexis\nAmari\nAngelo\nCaden\nCamden\nDallas\nDarius\nDavon\nEdwin\nEllis\nGregory\nHayden\nJay\nJayceon\nJoel\nKeith\nKobe\nKyle\nLeonardo\nMakhi\nMalik\nMark\nPreston\nQuinn\nRafael\nRicardo\nRichard\nSawyer\nTheo\nVictor\nAlbert\nAndres\nAntoine\nAri\nBrooks\nConor\nDakari\nDamon\nDarwin\nDeangelo\nDillon\nErick\nHarlem\nHunter\nIsrael\nJaiden\nJamal\nJamar\nJamari\nJamison\nJavier\nJaxson\nJaylen\nJermaine\nJesse\nJudah\nJude\nJulius\nKaden\nKody\nLorenzo\nLuka\nMalcolm\nMarcel\nMatteo\nMaximiliano\nMaximus\nMelvin\nMyles\nNoel\nRayan\nRohan\nSamir\nTrenton\nZyon\nMary\nMargaret\nHelen\nElizabeth\nAnna\nDorothy\nAlice\nCatherine\nMarie\nMildred\nBeatrice\nElsie\nEthel\nBlanche\nClara\nIda\nEdna\nThelma\nEleanor\nIrene\nLillian\nPauline\nPearl\nRuth\nFlorence\nAgnes\nAnn\nEdith\nEmma\nFrances\nGertrude\nGladys\nMae\nVirginia\nEvelyn\nGrace\nHilda\nLouise\nMabel\nMartha\nMyrtle\nRose\nViola\nMary\nHelen\nMildred\nMargaret\nElizabeth\nDorothy\nAnna\nRuth\nCatherine\nElsie\nFlorence\nAlice\nEthel\nFrances\nIda\nPauline\nEdith\nMarie\nClara\nEdna\nAgnes\nLouise\nMarian\nPearl\nAnn\nGladys\nGrace\nIrene\nThelma\nGertrude\nHazel\nJennie\nLillian\nRose\nVirginia\nBeatrice\nEmma\nEsther\nEva\nJosephine\nMartha\nSara\nSarah\nTheresa\nMary\nDorothy\nHelen\nElizabeth\nMargaret\nAnna\nMildred\nRuth\nAlice\nCatherine\nFrances\nGladys\nAnne\nElsie\nLillian\nEdith\nSara\nMarie\nSarah\nEthel\nFlorence\nLouise\nEdna\nPauline\nPearl\nJulia\nRose\nVirginia\nEvelyn\nIrene\nBetty\nBlanche\nClara\nEleanor\nGertrude\nHazel\nIda\nJane\nJosephine\nKatherine\nMabel\nMarguerite\nMarion\nMarjorie\nMartha\nAgnes\nAnn\nBertha\nEllen\nLaura\nMadeline\nAnnie\nElla\nEmma\nEsther\nHilda\nMyrtle\nRachel\nMary\nHelen\nDorothy\nElizabeth\nMargaret\nMildred\nAnna\nRuth\nRose\nCatherine\nMartha\nEdna\nEvelyn\nFlorence\nAlice\nFrances\nGrace\nEleanor\nEmma\nEthel\nMyrtle\nJean\nLillian\nMabel\nMarie\nBeatrice\nDoris\nElsie\nEva\nGertrude\nThelma\nAgnes\nGladys\nIrene\nSara\nAlma\nClara\nHazel\nJosephine\nKathryn\nLouise\nPauline\nTheresa\nAlberta\nAnne\nBertha\nEdith\nHilda\nLaura\nSarah\nViola\nEllen\nEsther\nJane\nMarguerite\nMarian\nMarion\nNaomi\nNellie\nOlive\nPearl\nRachel\nVirginia\nMary\nMargaret\nHelen\nElizabeth\nDorothy\nRuth\nAnna\nGrace\nMildred\nCatherine\nFrances\nFlorence\nMarie\nPauline\nLillian\nEdith\nRose\nAlice\nEleanor\nIda\nVirginia\nClara\nEthel\nEdna\nBlanche\nElsie\nEmma\nHazel\nAnn\nBeatrice\nNellie\nAnne\nGladys\nHilda\nJane\nJulia\nMyrtle\nEsther\nJennie\nLouise\nMabel\nSarah\nThelma\nEvelyn\nGertrude\nMarguerite\nMartha\nIrene\nJean\nJosephine\nKathryn\nPearl\nAgnes\nBertha\nBeulah\nDoris\nKatherine\nMarian\nMarion\nSara\nAda\nCharlotte\nElla\nElva\nEmily\nLaura\nLeona\nNancy\nVictoria\nVivian\nAudrey\nCecelia\nDora\nMarjorie\nSophie\nStella\nVeronica\nMary\nMargaret\nHelen\nDorothy\nAnna\nElizabeth\nMildred\nRuth\nCatherine\nElsie\nFrances\nFlorence\nEdna\nEthel\nAlice\nJosephine\nBeatrice\nEdith\nVirginia\nAnn\nAnne\nEleanor\nGrace\nMarie\nLillian\nBlanche\nMartha\nGladys\nHazel\nMarguerite\nSarah\nClara\nDoris\nMarjorie\nIrene\nRose\nBertha\nEmma\nEsther\nEvelyn\nJean\nLouise\nGertrude\nPauline\nAgnes\nElla\nEmily\nEva\nHilda\nJulia\nPearl\nSara\nStella\nEllen\nKatherine\nMyrtle\nThelma\nIda\nSophie\nDella\nJane\nJennie\nKathryn\nLaura\nMarian\nMarion\nAlberta\nBernice\nCharlotte\nNellie\nAda\nAudrey\nCarrie\nEliza\nLena\nLeona\nMadeline\nNancy\nSylvia\nBeulah\nElva\nGenevieve\nGeorgia\nHarriett\nJanet\nJeannette\nKathleen\nLucy\nNaomi\nRebecca\nRita\nTheresa\nViola\nViolet\nMary\nDorothy\nMargaret\nHelen\nElizabeth\nAnna\nMildred\nRuth\nFlorence\nMarie\nFrances\nAlice\nVirginia\nCatherine\nEleanor\nAnne\nEthel\nSarah\nPauline\nEvelyn\nIrene\nJosephine\nLillian\nAnn\nEdith\nGrace\nRose\nSara\nEdna\nClara\nElsie\nEmma\nIda\nJean\nLouise\nThelma\nDoris\nPearl\nAgnes\nGertrude\nHazel\nBeatrice\nMarjorie\nMyrtle\nEllen\nGladys\nKathryn\nJulia\nMartha\nRebecca\nElla\nEsther\nKatherine\nMabel\nMadeline\nMarian\nBarbara\nBlanche\nWanda\nHilda\nLoretta\nMarion\nOlive\nPhyllis\nStella\nAudrey\nCharlotte\nKathleen\nLaura\nLena\nLucy\nLydia\nMarguerite\nMinnie\nNancy\nRegina\nRita\nViola\nVivian\nBertha\nCarrie\nEloise\nEmily\nEstella\nEva\nGeneva\nHattie\nJennie\nRachel\nSophie\nTheresa\nVictoria\nMary\nHelen\nMargaret\nElizabeth\nDorothy\nAnna\nCatherine\nRuth\nMildred\nFrances\nVirginia\nFlorence\nGrace\nEdna\nAlice\nEleanor\nPauline\nLouise\nLillian\nMarie\nEvelyn\nJosephine\nSara\nAnn\nEthel\nHazel\nIrene\nRose\nDoris\nElsie\nAnne\nSarah\nBertha\nBetty\nEdith\nEmma\nMabel\nJean\nMarian\nThelma\nAgnes\nBeatrice\nEsther\nGertrude\nJanet\nMarguerite\nPearl\nBlanche\nKathryn\nLaura\nAlma\nGladys\nHilda\nIda\nJulia\nKatherine\nMartha\nBernice\nElla\nEllen\nJane\nMadeline\nMarjorie\nAlberta\nBessie\nMarion\nNellie\nSophie\nVera\nViola\nCharlotte\nElva\nJeanette\nJeannette\nKathleen\nMay\nNancy\nStella\nAudrey\nEmily\nHattie\nIrma\nIsabelle\nJennie\nLucille\nSophia\nVivian\nWanda\nClara\nGeneva\nHelena\nInez\nLena\nLillie\nMae\nMinnie\nMyrtle\nRachel\nTheresa\nVeronica\nViolet\nMary\nHelen\nDorothy\nMargaret\nElizabeth\nAnna\nRuth\nMildred\nFrances\nCatherine\nFlorence\nAlice\nVirginia\nEleanor\nMarie\nEdith\nEthel\nAnne\nEvelyn\nGladys\nIrene\nEdna\nPauline\nAnn\nJean\nSara\nSarah\nHazel\nLouise\nMabel\nMarguerite\nRose\nGrace\nJane\nBeatrice\nEsther\nHilda\nJosephine\nPearl\nRita\nGertrude\nKathryn\nLillian\nMarion\nThelma\nAgnes\nBetty\nBlanche\nDoris\nJulia\nMadeline\nMartha\nMarian\nElsie\nLaura\nMyrtle\nBarbara\nBertha\nEllen\nEva\nClara\nEmma\nKatherine\nNellie\nElla\nJennie\nAudrey\nBernice\nCharlotte\nEmily\nGenevieve\nIda\nStella\nBeulah\nJanet\nRegina\nJeanne\nJeannette\nJune\nMarjorie\nMinnie\nNaomi\nOlive\nPhyllis\nRoberta\nSylvia\nTheresa\nViola\nViolet\nAlma\nBessie\nHedwig\nJeanette\nLoretta\nLottie\nSophie\nCarolyn\nClaire\nIsabel\nKathleen\nLena\nNettie\nSusie\nVera\nMary\nHelen\nMargaret\nDorothy\nElizabeth\nAnna\nRuth\nAlice\nFrances\nMarie\nCatherine\nMildred\nVirginia\nGrace\nEvelyn\nJosephine\nDoris\nEleanor\nFlorence\nJean\nEdith\nBetty\nEsther\nRose\nIrene\nEthel\nLillian\nPauline\nJane\nBeatrice\nAnn\nGladys\nEdna\nLouise\nSarah\nAnne\nHazel\nElsie\nKatherine\nMartha\nPearl\nSara\nStella\nThelma\nClara\nHilda\nMarian\nBertha\nEllen\nJennie\nJulia\nLaura\nMyrtle\nRita\nMarion\nEmma\nGertrude\nMabel\nMarjorie\nNellie\nAgnes\nEmily\nRegina\nBarbara\nHattie\nKathryn\nMarguerite\nOlive\nRachel\nSophie\nBernice\nBlanche\nCharlotte\nEva\nKathleen\nMadeline\nNaomi\nVerna\nViola\nAudrey\nBessie\nElva\nHannah\nIda\nIrma\nJanet\nJeanette\nJeanne\nLucy\nLydia\nReba\nTheresa\nVera\nAnita\nEileen\nElla\nJeannette\nPhyllis\nRebecca\nSylvia\nVivian\nMary\nDorothy\nMargaret\nElizabeth\nHelen\nAnna\nMildred\nEleanor\nAlice\nFrances\nRuth\nFlorence\nVirginia\nMarie\nEvelyn\nCatherine\nIrene\nGrace\nEdith\nThelma\nBetty\nHazel\nLouise\nMartha\nGladys\nDoris\nAnn\nAnne\nEthel\nBarbara\nLillian\nClara\nEdna\nEmma\nPauline\nJean\nRose\nAgnes\nHilda\nSarah\nGertrude\nMarian\nSara\nElsie\nStella\nJane\nJosephine\nMabel\nRegina\nRita\nBlanche\nCharlotte\nIda\nKathryn\nMarguerite\nMyrtle\nTheresa\nBertha\nCora\nEllen\nEsther\nJeanette\nJulia\nMarjorie\nViolet\nAudrey\nBeatrice\nBernice\nElla\nHarriet\nJanet\nKatherine\nLaura\nLucy\nMarion\nPearl\nBessie\nEva\nJennie\nMadeline\nNaomi\nOlive\nSophie\nAlberta\nFannie\nJeannette\nKathleen\nLucille\nLydia\nMaude\nRhoda\nShirley\nVera\nViola\nWanda\nAlma\nBeulah\nCarolyn\nEmily\nGeraldine\nMadelyn\nMae\nNancy\nNellie\nPatricia\nRoberta\nSylvia\nVivian\nMary\nHelen\nDorothy\nMargaret\nElizabeth\nRuth\nAnna\nFrances\nMildred\nAlice\nVirginia\nBetty\nGrace\nCatherine\nMarie\nEvelyn\nIrene\nFlorence\nPauline\nThelma\nBeatrice\nLouise\nDoris\nEleanor\nJane\nAnne\nEdna\nEdith\nMarjorie\nGladys\nMartha\nAnn\nJean\nSarah\nJosephine\nRose\nEthel\nKathryn\nLillian\nAudrey\nElsie\nMyrtle\nCharlotte\nClara\nEmma\nEsther\nHazel\nJennie\nJulia\nKatherine\nMarion\nElla\nIda\nMabel\nBernice\nEva\nJeannette\nMarian\nVera\nVivian\nHilda\nNaomi\nPearl\nSara\nStella\nBlanche\nGertrude\nMadeline\nNancy\nNorma\nAgnes\nBertha\nEllen\nJanet\nJeanette\nRebecca\nCarolyn\nDora\nHenrietta\nLaura\nLena\nLoretta\nMarguerite\nPhyllis\nRita\nShirley\nBarbara\nCarmella\nCora\nElva\nHattie\nJune\nKathleen\nLucy\nLydia\nMaude\nMay\nNellie\nReba\nRoberta\nRuby\nTheresa\nViolet\nMary\nDorothy\nHelen\nElizabeth\nMargaret\nRuth\nAnna\nBetty\nFrances\nDoris\nMildred\nVirginia\nEleanor\nMarie\nCatherine\nFlorence\nEvelyn\nIrene\nLillian\nRose\nGrace\nAlice\nAnn\nEdith\nJean\nPauline\nAnne\nGladys\nLouise\nSarah\nThelma\nJane\nEdna\nAgnes\nElsie\nJennie\nMarian\nBeatrice\nEthel\nJeanette\nMarjorie\nMartha\nPearl\nSophie\nStella\nBarbara\nHilda\nJosephine\nViola\nEsther\nGertrude\nHazel\nClara\nJeanne\nKatherine\nBertha\nCharlotte\nEllen\nEmma\nLydia\nMadeline\nMarguerite\nMarion\nPhyllis\nBeulah\nBlanche\nKathryn\nMinnie\nNorma\nSara\nEmily\nNancy\nRita\nAlberta\nAudrey\nBessie\nGloria\nIda\nJulia\nJune\nMabel\nMae\nMyrtle\nViolet\nWinifred\nAnita\nAnnabelle\nCarolyn\nCarrie\nCecilia\nConstance\nElva\nEunice\nGeorgia\nHedwig\nHenrietta\nIsabel\nJanet\nJuanita\nLaura\nLillie\nMiriam\nNellie\nRebecca\nRegina\nMary\nDorothy\nHelen\nElizabeth\nMargaret\nBetty\nRuth\nAnna\nMildred\nDoris\nMarie\nFrances\nEleanor\nCatherine\nVirginia\nThelma\nJane\nElsie\nEvelyn\nFlorence\nIrene\nLillian\nLouise\nJean\nAlice\nEdith\nGertrude\nEthel\nPauline\nAnne\nAgnes\nEsther\nGrace\nGladys\nRose\nSarah\nAudrey\nPhyllis\nEdna\nMarion\nMarjorie\nBeatrice\nHazel\nEmily\nHilda\nKathryn\nMabel\nAnn\nEmma\nKatherine\nMartha\nMyrtle\nBertha\nCharlotte\nClara\nElva\nIda\nJeanette\nKathleen\nLaura\nPearl\nJeanne\nJosephine\nMarian\nSara\nTheresa\nBarbara\nBlanche\nElaine\nGeraldine\nJanet\nJennie\nMiriam\nNancy\nRegina\nStella\nViola\nVivian\nAlberta\nCaroline\nCecelia\nMadeline\nNaomi\nRachel\nRebecca\nAngeline\nBessie\nCarrie\nCecilia\nClaire\nEva\nGloria\nMargery\nMarguerite\nMary\nDorothy\nElizabeth\nHelen\nBetty\nMargaret\nRuth\nFrances\nDoris\nJean\nMarie\nVirginia\nAnna\nFlorence\nCatherine\nEvelyn\nMildred\nJane\nIrene\nEleanor\nPauline\nJosephine\nBarbara\nAlice\nEdith\nRose\nAnn\nIda\nLouise\nMarian\nLillian\nEmma\nJeannette\nBeatrice\nMarjorie\nPearl\nSarah\nThelma\nBlanche\nGrace\nKatherine\nAnne\nBertha\nEthel\nGladys\nJulia\nKathryn\nMartha\nEdna\nGertrude\nKathleen\nLena\nMarion\nPhyllis\nViola\nAgnes\nBessie\nClara\nElsie\nJeanne\nJennie\nJune\nMadeline\nNellie\nSophie\nCharlotte\nEsther\nHazel\nRegina\nTheresa\nDolores\nEmily\nMabel\nMyrtle\nNancy\nStella\nAudrey\nGeraldine\nHilda\nMarguerite\nNorma\nPatricia\nSara\nViolet\nAnnabelle\nBernice\nEva\nGenevieve\nIrma\nIsabella\nIsabelle\nLillie\nLorraine\nLucille\nNaomi\nOlive\nPeggy\nRita\nVivian\nMary\nElizabeth\nBetty\nHelen\nDorothy\nDoris\nMargaret\nRuth\nMarie\nAnna\nFrances\nCatherine\nEleanor\nMildred\nAlice\nJean\nVirginia\nIrene\nThelma\nFlorence\nEvelyn\nLouise\nSarah\nEdith\nTheresa\nAnn\nJane\nAnne\nEdna\nElsie\nGrace\nClara\nEthel\nGloria\nJosephine\nNancy\nNorma\nPearl\nAudrey\nBarbara\nLillian\nMarion\nPhyllis\nBeatrice\nEsther\nHilda\nMabel\nMarjorie\nPauline\nAgnes\nCarolyn\nKatherine\nKathryn\nMarian\nMartha\nSara\nShirley\nElla\nGertrude\nHazel\nIda\nJeanne\nBernice\nEmma\nGladys\nJeanette\nJoan\nLaura\nLucy\nMarguerite\nRose\nStella\nViola\nBessie\nEllen\nElva\nEmily\nGeraldine\nJulia\nNellie\nRoberta\nSadie\nVera\nBertha\nCharlotte\nCora\nHarriet\nJanet\nJeannette\nKathleen\nLillie\nLois\nLucille\nRebecca\nMary\nBetty\nMargaret\nElizabeth\nDoris\nHelen\nDorothy\nRuth\nMarie\nAlice\nJean\nAnna\nEleanor\nFlorence\nFrances\nVirginia\nCatherine\nEvelyn\nMildred\nGloria\nAnn\nBarbara\nElsie\nGrace\nMartha\nLouise\nAgnes\nPauline\nThelma\nEdna\nIrene\nAnne\nEsther\nSarah\nGladys\nJane\nEthel\nMarian\nMarion\nAudrey\nBeatrice\nEdith\nLillian\nMarjorie\nNancy\nPhyllis\nCarolyn\nEmma\nHazel\nJosephine\nKathleen\nElla\nEllen\nJeanette\nMyrtle\nNorma\nRegina\nRose\nBertha\nBessie\nHilda\nIda\nJennie\nLois\nLoretta\nMarguerite\nPatricia\nPearl\nShirley\nBernice\nCharlotte\nKathryn\nLaura\nLucille\nRita\nTheresa\nElva\nGertrude\nKatherine\nLorraine\nRachel\nRebecca\nRosalie\nViola\nViolet\nMary\nDorothy\nBetty\nElizabeth\nMargaret\nHelen\nAnna\nRuth\nDoris\nFrances\nMildred\nJean\nAlice\nMarie\nCatherine\nVirginia\nEdith\nCharlotte\nGrace\nFlorence\nBarbara\nJane\nEleanor\nPauline\nAnn\nBeatrice\nEthel\nEvelyn\nIrene\nThelma\nHazel\nLillian\nMarian\nRose\nEdna\nLouise\nPhyllis\nEllen\nGladys\nNancy\nNorma\nTheresa\nAgnes\nAnne\nBernice\nClara\nMarjorie\nPatricia\nSarah\nShirley\nAudrey\nDolores\nEsther\nJeanette\nJosephine\nBertha\nElla\nElsie\nJoan\nKathryn\nLorraine\nMarguerite\nRegina\nCarolyn\nJanet\nJeanne\nBlanche\nEmma\nGertrude\nGloria\nIda\nKatherine\nKathleen\nLois\nPearl\nRoberta\nEva\nGeraldine\nHenrietta\nIrma\nJulia\nJune\nLeona\nLoretta\nMarion\nPeggy\nRebecca\nVera\nViola\nClaire\nElva\nHilda\nJennie\nLena\nLucille\nLucy\nMartha\nNaomi\nRachel\nReba\nSara\nMary\nBetty\nMargaret\nDorothy\nDoris\nHelen\nElizabeth\nRuth\nAnna\nBarbara\nAlice\nFlorence\nMarie\nFrances\nDolores\nEleanor\nGrace\nVirginia\nAnn\nJean\nTheresa\nLillian\nLouise\nRose\nPatricia\nCatherine\nEvelyn\nJane\nPauline\nIrene\nMildred\nCharlotte\nEdna\nEthel\nThelma\nJosephine\nMarian\nMarjorie\nNorma\nShirley\nAgnes\nGladys\nBernice\nEllen\nJeanette\nLois\nMarion\nMartha\nNancy\nBeatrice\nEdith\nLorraine\nSara\nAnne\nCarolyn\nElsie\nGertrude\nGloria\nJoan\nJoyce\nJulia\nJune\nKatherine\nPhyllis\nBertha\nEmma\nGenevieve\nJanet\nKathleen\nKathryn\nMyrtle\nNaomi\nClara\nElaine\nElla\nEstella\nHazel\nLena\nPearl\nRita\nTeresa\nViola\nAudrey\nElva\nEsther\nJeannette\nRegina\nSarah\nStella\nMary\nBetty\nDorothy\nElizabeth\nDoris\nHelen\nRuth\nBarbara\nMargaret\nMarie\nAlice\nDolores\nFrances\nCatherine\nVirginia\nFlorence\nJean\nTheresa\nEvelyn\nGrace\nLillian\nMildred\nNancy\nAnna\nIrene\nRose\nAnn\nEdith\nEleanor\nJane\nLouise\nPhyllis\nPatricia\nSarah\nAnne\nBernice\nLois\nNorma\nThelma\nAudrey\nEthel\nPauline\nJanet\nJoan\nMarian\nElsie\nGladys\nMartha\nShirley\nCharlotte\nEsther\nJune\nMarion\nBeatrice\nIda\nJeanne\nJoyce\nAgnes\nElla\nEllen\nJoanne\nJosephine\nKatherine\nMabel\nMarjorie\nPearl\nEdna\nElaine\nEva\nJeannette\nJulia\nMarguerite\nSara\nBertha\nBeverly\nCarolyn\nEmily\nGertrude\nLaura\nLorraine\nMae\nMyrtle\nRegina\nSally\nTeresa\nViola\nVivian\nMary\nBetty\nDorothy\nHelen\nDoris\nMargaret\nElizabeth\nRuth\nDolores\nJean\nBarbara\nFrances\nIrene\nAnna\nNancy\nVirginia\nEleanor\nMarie\nEvelyn\nFlorence\nGrace\nAlice\nCatherine\nTheresa\nAnn\nAnne\nPatricia\nJane\nMildred\nJoan\nJanet\nPhyllis\nCharlotte\nLouise\nSarah\nMarian\nGertrude\nPeggy\nShirley\nThelma\nCarolyn\nClara\nEmma\nMarjorie\nRose\nEdith\nEsther\nGeraldine\nKatherine\nPauline\nAgnes\nAudrey\nGloria\nHazel\nJoanne\nJosephine\nJoyce\nLillian\nLoretta\nMarion\nMartha\nPearl\nAlberta\nBeatrice\nBernice\nBertha\nDelores\nEdna\nEllen\nGladys\nLois\nLorraine\nLucille\nNorma\nAlma\nClaire\nDora\nJeanette\nKathleen\nRegina\nRita\nBessie\nBeverly\nElla\nEthel\nIda\nJacqueline\nJanice\nJeanne\nKathryn\nLaura\nMarguerite\nMary\nBetty\nJoan\nMargaret\nJean\nDorothy\nHelen\nDoris\nElizabeth\nBarbara\nRuth\nAlice\nFrances\nDolores\nShirley\nNancy\nAnn\nEleanor\nLouise\nCatherine\nPatricia\nPhyllis\nVirginia\nMarie\nRose\nIrene\nJane\nAnna\nFlorence\nAnne\nCharlotte\nNorma\nThelma\nEvelyn\nHilda\nMarion\nMildred\nEdna\nGloria\nJacqueline\nJanet\nJosephine\nEdith\nEthel\nJanice\nJune\nMartha\nSara\nTheresa\nCarolyn\nEmma\nGrace\nKathryn\nLillian\nAlberta\nBeatrice\nBertha\nBeverly\nHazel\nJeannette\nJoyce\nMarjorie\nPauline\nSarah\nBlanche\nCora\nElsie\nGladys\nJeanette\nJoanne\nJulia\nLaura\nLois\nLoretta\nLucy\nMarian\nAda\nConstance\nDelores\nDiane\nEsther\nHarriet\nKathleen\nLorraine\nMarguerite\nVera\nMary\nBetty\nBarbara\nJoan\nDoris\nMargaret\nDorothy\nHelen\nPatricia\nRuth\nElizabeth\nJean\nNancy\nPhyllis\nMarie\nShirley\nAlice\nDolores\nJanet\nFlorence\nAnna\nFrances\nCatherine\nVirginia\nLois\nCharlotte\nJoanne\nBeatrice\nEleanor\nTheresa\nAnn\nCarolyn\nEmma\nGrace\nIrene\nJane\nEdna\nEvelyn\nJosephine\nJoyce\nMildred\nRose\nSarah\nBernice\nJune\nLillian\nMartha\nGladys\nJulia\nMarion\nNorma\nHilda\nLoretta\nLouise\nPauline\nRita\nAnne\nEdith\nEllen\nGertrude\nJanice\nJeannette\nKatherine\nMarian\nAudrey\nBertha\nClara\nEsther\nKathleen\nMarjorie\nThelma\nViola\nAgnes\nCaroline\nConstance\nElsie\nEmily\nGeraldine\nJeanette\nMarilyn\nPearl\nPeggy\nBessie\nBeverly\nBlanche\nDelores\nJeanne\nLorraine\nMyrtle\nRebecca\nMary\nBetty\nDorothy\nJoan\nBarbara\nMargaret\nDoris\nElizabeth\nPatricia\nHelen\nJanet\nShirley\nPhyllis\nRuth\nDolores\nFrances\nJean\nNancy\nAnn\nAnna\nCatherine\nJane\nJoanne\nMarie\nIrene\nJune\nEleanor\nLois\nVirginia\nCarolyn\nEvelyn\nPauline\nAlice\nCharlotte\nFlorence\nJoyce\nJosephine\nMildred\nSarah\nConstance\nGloria\nKathleen\nNorma\nThelma\nDelores\nEmma\nEsther\nLillian\nLoretta\nLucille\nAgnes\nClara\nEdith\nEthel\nLouise\nMartha\nRose\nBeverly\nJanice\nMarian\nMarjorie\nPeggy\nVivian\nBernice\nCarol\nElsie\nGeraldine\nGladys\nGrace\nHazel\nJacqueline\nLorraine\nMarilyn\nMarlene\nTheresa\nBeatrice\nGwendolyn\nJoanna\nKathryn\nLydia\nRoberta\nRosetta\nSally\nMary\nBarbara\nBetty\nJoan\nShirley\nPatricia\nMargaret\nDorothy\nElizabeth\nDoris\nEleanor\nJean\nMarie\nNancy\nDolores\nFrances\nRuth\nAnna\nHelen\nPhyllis\nAnn\nVirginia\nAlice\nJanet\nCharlotte\nCatherine\nJoanne\nCarolyn\nIrene\nBeverly\nJoyce\nSarah\nEvelyn\nLorraine\nMartha\nNorma\nRose\nJane\nJune\nLoretta\nLouise\nMildred\nAnne\nAudrey\nGladys\nKathleen\nPauline\nAgnes\nMarian\nThelma\nEllen\nEmma\nGeraldine\nGloria\nJosephine\nLillian\nLois\nMarguerite\nMyrtle\nPearl\nTheresa\nBeatrice\nElsie\nFlorence\nIda\nJacqueline\nMarilyn\nMarion\nPatsy\nPeggy\nArlene\nBernice\nClara\nEileen\nEmily\nEva\nGrace\nJeanette\nJulia\nLaura\nMarjorie\nMarlene\nRita\nRoberta\nRosalie\nMary\nShirley\nBarbara\nPatricia\nJoan\nDoris\nBetty\nMargaret\nDorothy\nRuth\nNancy\nHelen\nElizabeth\nJean\nMarie\nDolores\nCarol\nVirginia\nFrances\nJanet\nMartha\nCharlotte\nAnna\nEleanor\nPhyllis\nAlice\nCarolyn\nEvelyn\nJune\nSarah\nAnn\nCatherine\nElaine\nIrene\nJoanne\nLois\nEdith\nNorma\nEsther\nFlorence\nGeraldine\nJoyce\nAgnes\nBeatrice\nDelores\nEmma\nEthel\nGloria\nJane\nJanice\nJosephine\nKathleen\nMarian\nMildred\nRose\nAudrey\nEdna\nEllen\nElsie\nJacqueline\nLouise\nTheresa\nClara\nGladys\nJudith\nPatsy\nRegina\nSandra\nSara\nThelma\nYvonne\nAntoinette\nBernice\nCaroline\nLillian\nMabel\nMarjorie\nPeggy\nSylvia\nAlberta\nBeverly\nChristine\nEileen\nGrace\nKatherine\nKathryn\nLeona\nLoretta\nLorraine\nPauline\nRebecca\nMary\nBarbara\nJoan\nShirley\nPatricia\nBetty\nDorothy\nMargaret\nPhyllis\nNancy\nHelen\nCarolyn\nJanet\nAlice\nDoris\nJean\nMarie\nDolores\nElizabeth\nVirginia\nAnn\nRuth\nCatherine\nGrace\nLois\nCharlotte\nEleanor\nCarol\nFrances\nJanice\nJoyce\nNorma\nElaine\nJeanette\nLoretta\nMartha\nGeraldine\nJacqueline\nJane\nJoanne\nTheresa\nAnna\nEdna\nEllen\nEsther\nGladys\nKathryn\nPatsy\nSandra\nAnne\nEthel\nEvelyn\nFlorence\nJosephine\nJune\nLouise\nMarjorie\nMildred\nRose\nSylvia\nBeverly\nDelores\nEdith\nRoberta\nBernice\nBertha\nClara\nGloria\nMarian\nPearl\nSarah\nAnnie\nBeatrice\nBlanche\nChristine\nIrene\nJudith\nKay\nLillian\nLorraine\nMarguerite\nMarion\nMarlene\nPeggy\nRita\nRosemarie\nSuzanne\nYvonne\nMary\nBarbara\nPatricia\nJoan\nBetty\nDoris\nDorothy\nNancy\nJanet\nMargaret\nShirley\nPhyllis\nRuth\nHelen\nAnn\nElizabeth\nFrances\nVirginia\nCarol\nCarolyn\nJoanne\nCatherine\nEleanor\nJoyce\nAlice\nJanice\nJean\nIrene\nNorma\nEllen\nJane\nMarie\nCharlotte\nDolores\nEvelyn\nLoretta\nElaine\nEthel\nGeraldine\nSandra\nAnna\nBeverly\nLorraine\nMarlene\nArlene\nBernice\nEdna\nKay\nLouise\nPeggy\nThelma\nYvonne\nCarole\nGloria\nGrace\nJosephine\nLois\nSally\nSarah\nAudrey\nClara\nConstance\nEdith\nEsther\nFlorence\nJeanette\nMarjorie\nMartha\nPauline\nPearl\nSara\nSylvia\nAngela\nAnne\nCaroline\nConnie\nDelores\nEileen\nGladys\nJoann\nKathleen\nMarion\nMildred\nPatsy\nRebecca\nSuzanne\nAgnes\nAnita\nBeatrice\nChristine\nHarriet\nJacqueline\nJune\nKatherine\nLeona\nRachel\nRose\nSusan\nTheresa\nBarbara\nMary\nPatricia\nShirley\nDoris\nMargaret\nBetty\nNancy\nJoan\nDorothy\nJanet\nMarie\nSandra\nJoyce\nElizabeth\nFrances\nRuth\nJoanne\nVirginia\nJean\nAlice\nCarol\nCatherine\nPhyllis\nCarolyn\nHelen\nAnna\nCharlotte\nLois\nJacqueline\nKathleen\nEleanor\nJudith\nLoretta\nElaine\nJune\nMarion\nIrene\nLouise\nPauline\nRosalie\nAnn\nConstance\nGrace\nBernice\nMarlene\nAgnes\nAnne\nBeverly\nJane\nJanice\nJosephine\nMartha\nPeggy\nSylvia\nThelma\nAnita\nArlene\nCarole\nDelores\nDiane\nGail\nRose\nSarah\nCynthia\nEdith\nEileen\nEllen\nFlorence\nGeraldine\nGloria\nKatherine\nMarjorie\nMaryann\nMildred\nYvonne\nBertha\nClara\nEmma\nEvelyn\nJeanette\nLillian\nMarcia\nNorma\nRoberta\nSally\nAudrey\nDolores\nEthel\nJeannette\nJoann\nLeona\nLorraine\nLucille\nMabel\nMarian\nMarilyn\nSara\nMary\nBarbara\nPatricia\nJoyce\nDorothy\nMargaret\nShirley\nNancy\nBetty\nCarol\nJoan\nElizabeth\nJanet\nDoris\nRuth\nAnn\nVirginia\nPhyllis\nJoanne\nCarolyn\nHelen\nFrances\nSandra\nJudith\nCatherine\nAlice\nJanice\nBeverly\nGeraldine\nElaine\nEleanor\nLois\nMarie\nMartha\nJane\nAnna\nDolores\nJean\nJulia\nLouise\nEdna\nGladys\nKathleen\nMildred\nNorma\nSusan\nYvonne\nCharlotte\nElsie\nJacqueline\nLoretta\nLorraine\nSarah\nConstance\nEllen\nGrace\nJudy\nRose\nPatsy\nAnnette\nDelores\nEdith\nEvelyn\nIrene\nJoann\nJosephine\nPaula\nPeggy\nBernice\nCarole\nClara\nDiane\nEsther\nFlorence\nGail\nKatherine\nKathryn\nKay\nLillian\nMarion\nMarjorie\nPauline\nRita\nRosalie\nSally\nSara\nSylvia\nThelma\nGloria\nIda\nJune\nMarlene\nMaryann\nSharon\nTheresa\nMary\nBarbara\nPatricia\nMargaret\nJoyce\nNancy\nJoan\nDorothy\nElizabeth\nBetty\nCarolyn\nShirley\nCarol\nVirginia\nJanet\nJean\nJudith\nSandra\nDoris\nRuth\nAnn\nCharlotte\nJoanne\nMarie\nGeraldine\nPhyllis\nHelen\nFrances\nJane\nCatherine\nKathleen\nLois\nAlice\nBeverly\nAnna\nEleanor\nJanice\nLinda\nRose\nSusan\nDiane\nGloria\nNorma\nBrenda\nDolores\nEvelyn\nCarole\nElaine\nSarah\nThelma\nArlene\nClara\nEileen\nFlorence\nIrene\nJudy\nMarjorie\nPatsy\nPeggy\nEllen\nEmma\nJacqueline\nLouise\nMarlene\nMildred\nSuzanne\nEthel\nGail\nKay\nLoretta\nLorraine\nRosalie\nDelores\nEsther\nGrace\nJune\nKathryn\nLillian\nMarian\nMarianne\nAgnes\nAlberta\nAnne\nAudrey\nBonnie\nConstance\nDonna\nEdith\nGladys\nJeanne\nLaura\nMaryann\nRebecca\nRoberta\nYvonne\nMary\nBarbara\nPatricia\nMargaret\nJoan\nNancy\nCarol\nJoyce\nSandra\nJudith\nElizabeth\nJanet\nCarolyn\nDoris\nBetty\nDorothy\nHelen\nJoanne\nJean\nRuth\nFrances\nPhyllis\nShirley\nVirginia\nBeverly\nMarie\nJanice\nLinda\nMartha\nSarah\nAlice\nBonnie\nAnn\nGeraldine\nElaine\nAnne\nCharlotte\nLois\nConstance\nSusan\nCatherine\nGloria\nJudy\nKathleen\nMildred\nNorma\nAnna\nEleanor\nGrace\nMarlene\nSharon\nArlene\nBrenda\nDolores\nJacqueline\nJosephine\nKaren\nKay\nPauline\nCarole\nEthel\nJune\nMarian\nRebecca\nSylvia\nAudrey\nEdith\nHarriet\nLillian\nPeggy\nClara\nEvelyn\nJane\nKathryn\nLaura\nLouise\nSally\nTheresa\nDelores\nDiane\nEdna\nEileen\nEllen\nFlorence\nIrene\nJeanette\nJo\nLorraine\nRose\nSara\nSuzanne\nThelma\nVivian\nAnita\nBernice\nChristine\nDiana\nElla\nEmily\nJoann\nKatherine\nMarjorie\nRoberta\nSheila\nAngela\nAntoinette\nBeatrice\nCynthia\nDeborah\nDonna\nGladys\nGwendolyn\nJeanne\nJulia\nMarion\nPatsy\nMary\nBarbara\nPatricia\nCarol\nMargaret\nJoan\nNancy\nCarolyn\nSandra\nBetty\nElizabeth\nJudith\nJoyce\nDorothy\nRuth\nDoris\nVirginia\nSusan\nMarie\nGeraldine\nLinda\nJanet\nShirley\nFrances\nJoanne\nPhyllis\nAlice\nJean\nAnne\nHelen\nCatherine\nKathleen\nDiane\nCarole\nCharlotte\nJanice\nLois\nAnn\nGloria\nBeverly\nBonnie\nDolores\nEleanor\nSarah\nElaine\nEllen\nIrene\nJoann\nMartha\nSally\nAnna\nEileen\nEvelyn\nJane\nThelma\nBrenda\nGail\nJacqueline\nJudy\nKaren\nLouise\nMildred\nSylvia\nDiana\nDonna\nJune\nPauline\nSuzanne\nCaroline\nConstance\nEdith\nKathryn\nKay\nMarilyn\nPatsy\nRoberta\nSharon\nBertha\nChristine\nClara\nConnie\nGrace\nLillian\nLorraine\nBeatrice\nCynthia\nFlorence\nNorma\nRose\nTheresa\nDeborah\nHenrietta\nHope\nJulia\nKatherine\nMarion\nMarjorie\nMaureen\nPeggy\nRebecca\nRita\nVeronica\nVivian\nYvonne\nDelores\nEdna\nGertrude\nGladys\nGwendolyn\nJeannette\nLoretta\nMaryann\nRosa\nRuby\nSara\nMary\nBarbara\nPatricia\nMargaret\nNancy\nJoyce\nSandra\nElizabeth\nCarol\nRuth\nJudith\nJoan\nLinda\nVirginia\nCarolyn\nShirley\nSusan\nDorothy\nBetty\nJoanne\nDoris\nJanet\nCatherine\nDiane\nHelen\nDonna\nFrances\nBeverly\nAnn\nBonnie\nCharlotte\nKathleen\nSharon\nAlice\nAnne\nJean\nMarie\nCarole\nJacqueline\nPhyllis\nConstance\nJane\nJanice\nRoberta\nJosephine\nJudy\nEileen\nElaine\nJoann\nLouise\nGrace\nKaren\nRose\nThelma\nAnna\nDelores\nEleanor\nEllen\nEvelyn\nGloria\nKathryn\nLois\nMarjorie\nMartha\nPeggy\nSuzanne\nGail\nMarilyn\nLorraine\nNorma\nRebecca\nSylvia\nDolores\nEmma\nEva\nFlorence\nGeraldine\nKatherine\nMarcia\nMarlene\nMildred\nSarah\nBrenda\nChristine\nEdna\nEsther\nIda\nJuanita\nLucille\nArlene\nBeatrice\nDianne\nEdith\nJo\nPaula\nRosalie\nSally\nVictoria\nBertha\nBetsy\nDeborah\nElla\nElsie\nJune\nLaura\nMarion\nMaryann\nPamela\nPauline\nRegina\nSara\nTheresa\nConnie\nEthel\nFaith\nJeanette\nJennie\nKay\nLillian\nLydia\nMarsha\nMaureen\nPat\nPearl\nRosemary\nSheila\nSue\nMary\nBarbara\nPatricia\nCarol\nNancy\nJoyce\nSandra\nLinda\nMargaret\nJoan\nSusan\nJudith\nVirginia\nCarolyn\nShirley\nBetty\nJanet\nKathleen\nCatherine\nFrances\nDorothy\nElizabeth\nHelen\nSharon\nBeverly\nBonnie\nDoris\nRuth\nPhyllis\nDiane\nJane\nDonna\nJean\nJoanne\nCarole\nElaine\nJudy\nAnn\nGeraldine\nLois\nSuzanne\nCharlotte\nMarie\nChristine\nDeborah\nAlice\nCheryl\nNorma\nEileen\nGail\nGloria\nJacqueline\nJanice\nMarlene\nMartha\nPamela\nAnna\nBernice\nBrenda\nEllen\nEvelyn\nKaren\nLorraine\nPatsy\nPeggy\nSarah\nDiana\nDolores\nEleanor\nJune\nKatherine\nPauline\nThelma\nAnne\nArlene\nBernadette\nConnie\nDelores\nEdna\nFlorence\nJeanne\nJoann\nKathryn\nMarilyn\nMildred\nRose\nSue\nSylvia\nBeatrice\nClara\nJosephine\nLeslie\nLouise\nMarian\nMaryann\nPaula\nRita\nRoberta\nTheresa\nConstance\nCora\nDianne\nFaye\nIrene\nJeanette\nJo\nJulia\nKay\nLaura\nLynn\nSally\nSara\nEdith\nElsie\nEmma\nEthel\nHazel\nLillian\nLynne\nMarianne\nMaureen\nMaxine\nPat\nPriscilla\nRachel\nRosemary\nVivian\nMary\nBarbara\nCarol\nPatricia\nSandra\nNancy\nLinda\nMargaret\nShirley\nElizabeth\nJudith\nSusan\nJoan\nDiane\nKathleen\nJoyce\nRuth\nJane\nDonna\nBetty\nJanet\nCarolyn\nDorothy\nPhyllis\nBeverly\nFrances\nHelen\nDoris\nJanice\nAnn\nGloria\nLois\nBonnie\nJacqueline\nAlice\nJudy\nSharon\nVirginia\nGeraldine\nKaren\nMarie\nElaine\nMarilyn\nSarah\nCarole\nConstance\nJean\nJoann\nBrenda\nCatherine\nCharlotte\nEllen\nGail\nKatherine\nAnna\nAnne\nJoanne\nKathryn\nMartha\nMildred\nConnie\nDiana\nLorraine\nLouise\nNorma\nGrace\nMaureen\nPeggy\nRosemary\nAnita\nArlene\nDianne\nEvelyn\nJosephine\nPatsy\nRebecca\nVictoria\nBernadette\nCheryl\nDeborah\nDolores\nGladys\nMarjorie\nMaryann\nChristine\nDarlene\nEdith\nEileen\nIrene\nJeanne\nLucille\nMarcia\nMarian\nRose\nSara\nAndrea\nClara\nJo\nKathy\nLynn\nMadeline\nPaula\nSheila\nSuzanne\nSylvia\nTheresa\nDawn\nDelores\nEdna\nJulia\nLoretta\nSherry\nWanda\nBarbara\nMary\nPatricia\nSandra\nCarol\nNancy\nLinda\nMargaret\nSusan\nSharon\nJoyce\nKathleen\nJudith\nCarolyn\nShirley\nBetty\nJoan\nElizabeth\nDiane\nRuth\nKaren\nBeverly\nDonna\nJanet\nBonnie\nDorothy\nJean\nJane\nJoanne\nAnn\nJanice\nPhyllis\nVirginia\nFrances\nCatherine\nMartha\nBrenda\nDeborah\nAlice\nGeraldine\nElaine\nGail\nHelen\nDoris\nJudy\nSuzanne\nConstance\nDiana\nGloria\nKathryn\nMarie\nRose\nEileen\nLois\nCharlotte\nConnie\nCynthia\nEllen\nMildred\nNorma\nIrene\nAnne\nCarole\nChristine\nDarlene\nFlorence\nJacqueline\nLaura\nRoberta\nJoann\nPamela\nSarah\nTheresa\nVictoria\nVivian\nKatherine\nMarjorie\nPeggy\nRebecca\nRita\nRosemary\nCheryl\nEsther\nEvelyn\nJeanne\nLillian\nLorraine\nLouise\nMarian\nMaryann\nPaula\nSheila\nDelores\nDolores\nEleanor\nJune\nMarianne\nRosalie\nSally\nSue\nArlene\nEmma\nHarriet\nJulia\nKay\nMarsha\nPauline\nCharlene\nIda\nJo\nJosephine\nLoretta\nMarcia\nMarilyn\nNina\nSara\nStephanie\nYvonne\nBernadette\nClara\nEdith\nEdna\nGladys\nGrace\nHilda\nJuanita\nLeona\nLeslie\nLynda\nMaureen\nMaxine\nNora\nPatsy\nPriscilla\nRegina\nSylvia\nTerry\nLinda\nMary\nPatricia\nBarbara\nCarol\nMargaret\nSandra\nNancy\nSusan\nKathleen\nDiane\nJoyce\nSharon\nElizabeth\nCarolyn\nJanet\nShirley\nJoan\nJoanne\nJudith\nDeborah\nDonna\nBeverly\nElaine\nJane\nRuth\nKaren\nCheryl\nPhyllis\nFrances\nJean\nCatherine\nHelen\nJanice\nVirginia\nBetty\nCynthia\nDoris\nMarie\nBrenda\nChristine\nCharlotte\nConstance\nBonnie\nDorothy\nJacqueline\nLois\nAlice\nAnn\nGloria\nJo\nJudy\nSuzanne\nAnna\nEllen\nMarilyn\nMarjorie\nNorma\nPeggy\nRosemary\nDarlene\nSarah\nConnie\nGail\nCarole\nDiana\nEileen\nPamela\nDianne\nLorraine\nLynn\nMarian\nPaula\nRebecca\nSally\nSara\nIrene\nJune\nLynda\nTheresa\nFlorence\nGeraldine\nJulia\nKathryn\nLouise\nMartha\nMaureen\nRita\nSylvia\nMarlene\nMaryann\nMildred\nRose\nWanda\nBernadette\nClaudia\nEvelyn\nFaith\nGeorgia\nGwendolyn\nJoann\nLoretta\nSue\nVivian\nYvonne\nBonita\nDolores\nEdith\nEleanor\nGrace\nHarriet\nJeanne\nKathy\nKay\nLaura\nMarianne\nPauline\nSheila\nAnita\nAnne\nArlene\nDebbie\nEthel\nGayle\nJanis\nJosephine\nKatherine\nLucille\nMaryellen\nRoberta\nTeresa\nAndrea\nAngela\nAntoinette\nAudrey\nEsther\nGale\nGladys\nJeanette\nJeannette\nLynne\nMarcia\nMarsha\nRegina\nSandy\nThelma\nVeronica\nLinda\nMary\nBarbara\nPatricia\nSusan\nSandra\nSharon\nNancy\nCarol\nMargaret\nDeborah\nKathleen\nDiane\nShirley\nDonna\nElizabeth\nJoyce\nCarolyn\nJudith\nDorothy\nJane\nPhyllis\nChristine\nVirginia\nCatherine\nCheryl\nCynthia\nJanice\nKaren\nBonnie\nBeverly\nJanet\nJoan\nBetty\nCharlotte\nJoanne\nRuth\nGloria\nJacqueline\nJudy\nMarie\nBrenda\nElaine\nFrances\nDoris\nAnn\nJean\nDiana\nEllen\nPamela\nGeraldine\nHelen\nJo\nMildred\nNorma\nLynn\nSarah\nSuzanne\nAlice\nGail\nJune\nPaula\nAnna\nAnne\nConnie\nGrace\nMarjorie\nMarsha\nPeggy\nRose\nTheresa\nDelores\nLois\nMartha\nVictoria\nWanda\nConstance\nEvelyn\nJeanne\nKatherine\nMaryann\nRegina\nSherry\nStephanie\nDarlene\nDolores\nEmma\nKathryn\nRebecca\nYvonne\nEileen\nKathy\nLaura\nLorraine\nMarlene\nMaxine\nRosalie\nRosemary\nSheila\nAnita\nCharlene\nEthel\nGwendolyn\nLynda\nMarguerite\nRita\nSally\nSara\nSue\nSylvia\nCarole\nFlorence\nJoann\nJoy\nJulia\nMarcia\nMarilyn\nMichele\nValerie\nBernadette\nBertha\nClaire\nEdith\nEdna\nEleanor\nElsie\nEva\nJanis\nJuanita\nLeslie\nLillian\nMarian\nMyrtle\nVivian\nLinda\nMary\nBarbara\nPatricia\nNancy\nSusan\nSandra\nDeborah\nSharon\nDiane\nKathleen\nCarol\nMargaret\nShirley\nDonna\nJudith\nKaren\nElizabeth\nJoan\nJoanne\nJanet\nJoyce\nCarolyn\nBetty\nCatherine\nDorothy\nMarie\nChristine\nCynthia\nBrenda\nGail\nJane\nRuth\nJanice\nAnn\nCharlotte\nHelen\nConstance\nMarilyn\nJacqueline\nVirginia\nBeverly\nDoris\nTheresa\nBonnie\nElaine\nGloria\nJean\nMartha\nPamela\nEllen\nLois\nPhyllis\nAlice\nFrances\nSarah\nSuzanne\nCheryl\nJudy\nRose\nJo\nSherry\nAnne\nEvelyn\nKathryn\nLorraine\nNorma\nPaula\nDarlene\nDiana\nVeronica\nDelores\nDenise\nGeraldine\nJoann\nJune\nKatherine\nLynn\nMaryann\nRebecca\nConnie\nKay\nPeggy\nSally\nSara\nSheila\nVictoria\nYvonne\nAnna\nCarole\nEleanor\nFlorence\nIrene\nKathy\nLouise\nMarcia\nMarian\nMarlene\nValerie\nAnnette\nBonita\nDianne\nEdith\nErnestine\nEthel\nJeanne\nMarjorie\nMarsha\nMaureen\nRoberta\nStephanie\nSusanne\nWanda\nBernadette\nChristina\nEdna\nEileen\nGrace\nJennifer\nJulia\nLaura\nLoretta\nLynne\nMildred\nPaulette\nRosa\nTeresa\nAngela\nArlene\nBeth\nCathy\nJeannette\nJosephine\nJuanita\nLucille\nLynda\nMichele\nPauline\nPriscilla\nRita\nRobin\nRosemary\nWendy\nLinda\nMary\nPatricia\nBarbara\nSharon\nDeborah\nSusan\nCarol\nNancy\nDiane\nSandra\nKaren\nDonna\nKathleen\nElizabeth\nMargaret\nShirley\nJoyce\nJanet\nCarolyn\nJudith\nGail\nBetty\nBeverly\nRuth\nChristine\nJoanne\nAnn\nCatherine\nFrances\nBonnie\nDoris\nCheryl\nDorothy\nJoan\nCynthia\nJanice\nJean\nPhyllis\nGloria\nVirginia\nPamela\nAnne\nBrenda\nHelen\nJane\nPaula\nCharlotte\nWanda\nMarie\nMartha\nConnie\nEllen\nJacqueline\nKathryn\nRebecca\nSarah\nAlice\nLynn\nTheresa\nBernadette\nLois\nMaryann\nElaine\nGeraldine\nJo\nMarilyn\nPeggy\nYvonne\nConstance\nEileen\nEmily\nKatherine\nKathy\nRosemary\nSheila\nVicki\nArlene\nDebra\nIrene\nJoann\nJune\nLorraine\nRoberta\nDiana\nEdith\nEleanor\nEthel\nEvelyn\nLeslie\nRose\nStephanie\nValerie\nDenise\nEdna\nJeanne\nJudy\nLoretta\nMarjorie\nSally\nVeronica\nAnna\nJuanita\nKay\nLouise\nLucy\nMarianne\nMarsha\nMildred\nPatsy\nRegina\nSherry\nSuzanne\nAudrey\nCarole\nColleen\nDarlene\nDelores\nDolores\nLaura\nLillian\nLynda\nMarlene\nMaureen\nPenelope\nSylvia\nAdele\nBonita\nCarla\nCharlene\nChristina\nClaudia\nDale\nFaye\nGrace\nJacquelyn\nJanis\nJeanette\nJulia\nLynne\nMarian\nMaxine\nMichele\nNora\nPaulette\nRita\nRobin\nTeresa\nTerry\nVera\nVictoria\nVivian\nWendy\nLinda\nPatricia\nDeborah\nMary\nBarbara\nSusan\nNancy\nDiane\nKathleen\nCarol\nSandra\nDonna\nSharon\nMargaret\nKaren\nElizabeth\nJoyce\nJudith\nCynthia\nBrenda\nCatherine\nJanet\nJoan\nChristine\nJanice\nBetty\nCarolyn\nShirley\nBonnie\nJoanne\nAnn\nBeverly\nJane\nAnne\nMarie\nHelen\nVirginia\nCheryl\nDebra\nDorothy\nRuth\nConstance\nGloria\nLois\nPamela\nEllen\nJean\nDenise\nJacqueline\nRebecca\nFrances\nKathryn\nTheresa\nElaine\nMarilyn\nPhyllis\nWanda\nDoris\nGail\nJo\nSuzanne\nValerie\nKathy\nMartha\nMichele\nDarlene\nEileen\nLynn\nMarsha\nPeggy\nSheila\nSherry\nVictoria\nAlice\nCharlotte\nDelores\nDiana\nGeraldine\nJuanita\nMarjorie\nMaryann\nRose\nSarah\nAnna\nEleanor\nEsther\nEvelyn\nGayle\nKatherine\nLouise\nMaureen\nRegina\nSally\nTeresa\nAndrea\nClaudia\nDianne\nFaye\nHolly\nJudy\nJune\nLeslie\nLisa\nPaula\nSue\nSylvia\nTerry\nAnita\nAnnette\nConnie\nJan\nJeanette\nJoann\nJoy\nLorraine\nLynda\nMaria\nPaulette\nRoberta\nThelma\nVeronica\nWendy\nYvonne\nEdith\nGwendolyn\nJeanne\nJulia\nLaura\nMarcia\nPauline\nRita\nSara\nAmy\nAngela\nBeth\nBonita\nCathy\nCharlene\nColleen\nEmma\nFlorence\nJosephine\nMarian\nMarion\nNorma\nPatsy\nPenny\nRhonda\nRobin\nRosemary\nVicki\nViolet\nVivian\nLinda\nDeborah\nMary\nPatricia\nBarbara\nSusan\nNancy\nKaren\nSharon\nDiane\nCarol\nMargaret\nDonna\nKathleen\nSandra\nElizabeth\nCynthia\nJudith\nChristine\nJanet\nJoan\nJoyce\nBonnie\nCarolyn\nCheryl\nDebra\nBeverly\nPamela\nBrenda\nDenise\nCatherine\nJoanne\nGail\nShirley\nMarie\nRobin\nBetty\nAnn\nJane\nAnne\nVirginia\nDorothy\nKathryn\nKathy\nLynn\nSheila\nPaula\nRuth\nVictoria\nJacqueline\nJanice\nPhyllis\nGeraldine\nDarlene\nElaine\nHelen\nJo\nRebecca\nSuzanne\nDiana\nFrances\nJudy\nLois\nLorraine\nTheresa\nWanda\nDoris\nEllen\nMarsha\nPeggy\nAmy\nLisa\nMartha\nRose\nYvonne\nCathy\nMichele\nRoberta\nRosemary\nConnie\nJoann\nKatherine\nLaura\nTeresa\nAlice\nCharlotte\nEvelyn\nGwendolyn\nIrene\nJean\nJune\nMarilyn\nNorma\nRegina\nSarah\nAndrea\nConstance\nFlorence\nKay\nMarcia\nMaureen\nValerie\nVicki\nWendy\nAnna\nBeth\nColleen\nEileen\nLaurie\nLeslie\nNina\nPatsy\nVera\nAngela\nArlene\nBeatrice\nBonita\nCharlene\nClaudia\nEdith\nFaith\nGayle\nGloria\nJeanne\nJuanita\nLynda\nMaria\nMonica\nSara\nVanessa\nDianne\nJosephine\nLena\nLouise\nLucille\nMarjorie\nMaryann\nMichelle\nRita\nRosalie\nSally\nShelley\nSylvia\nTrudy\nBernadette\nCarole\nCecelia\nDawn\nDelores\nElla\nFrancine\nJeanette\nJulia\nKristine\nLoretta\nLucy\nMarianne\nMildred\nPaulette\nPauline\nRoxanne\nSue\nTerry\nToni\nVivian\nDeborah\nMary\nLinda\nPatricia\nSusan\nBarbara\nKaren\nNancy\nSharon\nCarol\nDonna\nKathleen\nCynthia\nDiane\nMargaret\nSandra\nJanet\nElizabeth\nChristine\nCatherine\nBeverly\nGail\nJoanne\nJoyce\nCarolyn\nJoan\nJanice\nJudith\nBonnie\nDebra\nPamela\nBetty\nBrenda\nAnne\nDenise\nRobin\nCheryl\nJane\nRuth\nRebecca\nShirley\nSuzanne\nAlice\nElaine\nHelen\nJacqueline\nMartha\nRose\nTeresa\nWanda\nAnn\nKathy\nKathryn\nJean\nConstance\nFrances\nJo\nSarah\nSheila\nLaura\nLynn\nRoberta\nTheresa\nCathy\nDarlene\nDorothy\nGloria\nLois\nMarie\nMichele\nValerie\nVanessa\nVirginia\nEileen\nKatherine\nLisa\nLouise\nCharlotte\nDoris\nJudy\nMarilyn\nPeggy\nJulia\nJulie\nMarcia\nSally\nAndrea\nConnie\nDiana\nMarsha\nPaula\nPhyllis\nAnna\nEdna\nEllen\nJoann\nLeslie\nMildred\nRegina\nRhonda\nRita\nTerri\nVera\nWendy\nArlene\nCharlene\nColleen\nEsther\nGeraldine\nLorraine\nMarjorie\nSherry\nYvonne\nAnita\nBonita\nDelores\nGladys\nJill\nJuanita\nJune\nNorma\nRenee\nRosemary\nSue\nSylvia\nTerry\nThelma\nAmy\nAngela\nAudrey\nDale\nDianne\nEvelyn\nGrace\nGwendolyn\nHolly\nLoretta\nMarguerite\nMarianne\nMarlene\nMaryann\nMaureen\nRoxanne\nVeronica\nCeleste\nCindy\nEdith\nEleanor\nEmma\nEthel\nGale\nGayle\nIda\nJosephine\nKim\nLynda\nLynne\nPatti\nPenny\nSara\nShelley\nSheryl\nToni\nVictoria\nDeborah\nMary\nLinda\nPatricia\nSusan\nBarbara\nKaren\nNancy\nDiane\nCarol\nDebra\nKathleen\nDonna\nSharon\nSandra\nCynthia\nElizabeth\nMargaret\nPamela\nJanet\nCatherine\nBeverly\nShirley\nJoan\nBonnie\nDenise\nRobin\nAnn\nTheresa\nKathy\nJean\nJoyce\nJudith\nAnne\nMarie\nDorothy\nGail\nJo\nChristine\nJane\nJanice\nMichele\nRebecca\nLynn\nPaula\nBetty\nCheryl\nLaura\nTeresa\nBrenda\nConnie\nDoris\nRose\nSheila\nCarolyn\nConstance\nPeggy\nWanda\nDarlene\nJacqueline\nLois\nPhyllis\nAlice\nFrances\nJoanne\nKathryn\nLeslie\nLisa\nRuth\nEileen\nGloria\nMartha\nTerry\nValerie\nVirginia\nEllen\nKatherine\nMaria\nMarilyn\nSarah\nDiana\nElaine\nHelen\nJudy\nSuzanne\nVictoria\nCathy\nMarsha\nMichelle\nSherry\nVanessa\nAnna\nCharlotte\nKim\nPatti\nRosemary\nCharlene\nGeraldine\nHolly\nJoann\nMildred\nNorma\nYvonne\nAndrea\nAnita\nEvelyn\nJune\nLouise\nMarian\nMarjorie\nMaureen\nRoberta\nSally\nStephanie\nDawn\nJennifer\nMarianne\nNina\nRhonda\nSara\nAmy\nArlene\nColleen\nDebbie\nDelores\nEleanor\nHarriet\nJeannette\nLynne\nMarlene\nSue\nWendy\nDolores\nIris\nJoy\nJuanita\nLaurie\nLorraine\nLucille\nMarcia\nMelissa\nMelody\nRegina\nRosanne\nSylvia\nVera\nVickie\nVivian\nAngela\nBernadette\nCarole\nCindy\nClaire\nClaudia\nDebora\nDoreen\nEartha\nEdith\nGwendolyn\nIda\nJan\nJanis\nJeanne\nLoretta\nLou\nLynda\nMaryann\nMelanie\nPriscilla\nRachel\nRenee\nRita\nRoxanne\nTerri\nToni\nVeronica\nVicki\nMary\nDeborah\nLinda\nPatricia\nSusan\nDebra\nKaren\nNancy\nDonna\nBarbara\nDiane\nSharon\nElizabeth\nCarol\nKathleen\nMargaret\nCheryl\nCynthia\nSandra\nRobin\nJanet\nCatherine\nBonnie\nPamela\nBeverly\nAnn\nBrenda\nJane\nJudith\nDenise\nJoan\nTheresa\nJo\nChristine\nConnie\nKathryn\nVirginia\nJoanne\nTeresa\nLaura\nLisa\nGail\nJacqueline\nKathy\nWanda\nJean\nLynn\nMichele\nRuth\nValerie\nDebbie\nDiana\nKatherine\nRose\nStephanie\nCarolyn\nGloria\nJanice\nJoyce\nRebecca\nShirley\nSuzanne\nAnne\nElaine\nHelen\nJudy\nSheila\nVictoria\nAnita\nBetty\nConstance\nDorothy\nJulia\nMartha\nPhyllis\nRita\nTerry\nCathy\nKim\nPaula\nYvonne\nColleen\nDarlene\nDawn\nRhonda\nVanessa\nVicki\nAlice\nLois\nSarah\nEllen\nFrances\nJoann\nLeslie\nLorraine\nMarcia\nRegina\nSally\nSylvia\nDianne\nDoris\nEvelyn\nJill\nMarie\nMichelle\nSherry\nWendy\nBeth\nCharlene\nChristina\nLoretta\nMarilyn\nMaureen\nSue\nArlene\nAudrey\nCharlotte\nEdna\nJune\nLouise\nMelissa\nPaulette\nRosemary\nSheryl\nTerri\nTina\nToni\nAmy\nAndrea\nAnna\nBernadette\nCarole\nCindy\nDebora\nEileen\nFaye\nGwendolyn\nJeanne\nJeannie\nJennifer\nJuanita\nJulie\nLynda\nMaria\nMarianne\nMarlene\nNorma\nPeggy\nRoberta\nAlicia\nAngela\nDale\nDolores\nEdith\nFaith\nGayle\nKatharine\nLori\nPatti\nPenny\nRenee\nSara\nVickie\nAdele\nCandace\nCarla\nEthel\nEva\nFlorence\nGretchen\nHolly\nIrene\nJan\nJeanette\nKay\nKimberly\nLaurie\nLee\nLou\nLucy\nLynne\nMarian\nMarjorie\nMaryann\nMelinda\nMildred\nRamona\nTracey\nVera\nVivian\nDeborah\nMary\nLinda\nPatricia\nKaren\nSusan\nSharon\nDonna\nBarbara\nCarol\nDiane\nNancy\nDebra\nKathleen\nCynthia\nSandra\nCheryl\nMargaret\nElizabeth\nPamela\nRobin\nBrenda\nBonnie\nDenise\nCatherine\nJanet\nLisa\nChristine\nAnn\nBeverly\nJoyce\nLynn\nBetty\nTheresa\nJudith\nJane\nTerry\nShirley\nTeresa\nGail\nJoan\nKathryn\nValerie\nConnie\nKim\nMarie\nAnne\nJacqueline\nJean\nSheila\nDarlene\nDebbie\nJoanne\nJudy\nRuth\nCathy\nConstance\nDorothy\nSherry\nElaine\nEllen\nJanice\nJo\nKathy\nLaura\nVictoria\nWanda\nAndrea\nCarolyn\nCindy\nColleen\nDiana\nDoris\nJennifer\nMartha\nMichelle\nSarah\nStephanie\nSuzanne\nHelen\nLeslie\nVirginia\nDawn\nRebecca\nRose\nTina\nWendy\nHolly\nJune\nAlice\nAnna\nCharlotte\nLori\nVicki\nYvonne\nCharlene\nKatherine\nRoxanne\nDoreen\nJulie\nLaurie\nMichele\nNorma\nPhyllis\nSue\nSylvia\nTerri\nEileen\nFrances\nGloria\nJulia\nLoretta\nMarilyn\nMaureen\nPaula\nPeggy\nToni\nVanessa\nAngela\nBeatrice\nCarla\nDebora\nJill\nLorraine\nLynne\nRosemary\nTeri\nAnnette\nEvelyn\nGeraldine\nJoann\nJuanita\nKimberly\nLois\nMarcia\nMarlene\nMelissa\nNina\nRegina\nRita\nSheryl\nAudrey\nErnestine\nGladys\nGrace\nJayne\nJeanette\nMaria\nMaryann\nRenee\nRhonda\nVickie\nAmy\nBetsy\nCarole\nCaroline\nCathleen\nDana\nDianne\nEmily\nFaith\nJeanne\nLee\nLynda\nPatti\nPenny\nRoberta\nSally\nSara\nVivian\nAdrienne\nApril\nCandace\nCarmen\nChristina\nDesiree\nDorene\nEsther\nFrancine\nHeidi\nIrene\nLauren\nLillian\nLouise\nLuann\nMarion\nMelanie\nMelinda\nMildred\nNadine\nPriscilla\nSherri\nTracy\nVera\nVicky\nYolanda\nDeborah\nMary\nSusan\nKaren\nPatricia\nLinda\nDonna\nCynthia\nSharon\nCheryl\nBarbara\nKathleen\nCarol\nDiane\nNancy\nLisa\nBrenda\nSandra\nDebra\nElizabeth\nPamela\nMargaret\nRobin\nTheresa\nCatherine\nDenise\nDebbie\nChristine\nCindy\nJudith\nLaura\nJanet\nBeverly\nGail\nKathryn\nKathy\nAnn\nKim\nBonnie\nJoan\nJulie\nRuth\nShirley\nTeresa\nWanda\nAnne\nTerri\nCathy\nJoyce\nTerry\nSheila\nCarolyn\nDoris\nLynn\nVictoria\nKimberly\nLeslie\nMartha\nDawn\nDiana\nEllen\nDarlene\nHelen\nJanice\nJoanne\nJudy\nMichelle\nRebecca\nSuzanne\nVicki\nMarianne\nPaula\nRenee\nAnna\nDorothy\nJane\nValerie\nAnita\nBetty\nElaine\nJacqueline\nPhyllis\nStephanie\nTina\nBeth\nEileen\nMichele\nVanessa\nVirginia\nYvonne\nAndrea\nCharlotte\nJean\nKatherine\nLori\nLynda\nMonica\nSarah\nSherry\nTammy\nGloria\nLynne\nMarcia\nMarie\nMaureen\nRose\nWendy\nAlice\nColleen\nConnie\nFaith\nFrances\nJeanne\nJennifer\nJill\nJo\nJoann\nLaurie\nLois\nRegina\nRhonda\nSally\nSue\nVickie\nAngela\nConstance\nEvelyn\nHolly\nLoretta\nLorraine\nMarlene\nPeggy\nRita\nSylvia\nAnnette\nBernadette\nCarole\nCharlene\nClaire\nDianne\nGeraldine\nMarjorie\nRosemary\nAntoinette\nCarla\nDebora\nGwendolyn\nLillian\nMaria\nApril\nAudrey\nBernice\nBetsy\nCarrie\nDelores\nDoreen\nGayle\nJosephine\nJuanita\nJulia\nKay\nMelanie\nNorma\nRachel\nRoxanne\nSara\nShelley\nVivian\nBecky\nEdith\nErin\nFaye\nGlenda\nIda\nJacquelyn\nJeanette\nJeannie\nLouise\nMarsha\nMaryann\nPatti\nRoberta\nRochelle\nTrudy\nVeronica\nAmy\nCassandra\nClara\nDolores\nEdna\nEsther\nGina\nGladys\nHelena\nJayne\nJoanna\nJune\nLeah\nLou\nMargie\nMarian\nMarilyn\nMelinda\nMyra\nPenny\nRamona\nTanya\nTracy\nVera\nVicky\nMary\nSusan\nKaren\nDeborah\nPatricia\nLinda\nCynthia\nBarbara\nSharon\nDonna\nCheryl\nNancy\nKathleen\nDiane\nKathy\nLisa\nCarol\nElizabeth\nSandra\nBrenda\nMargaret\nPamela\nDebra\nDenise\nRobin\nJanet\nDebbie\nJoyce\nTeresa\nTheresa\nBonnie\nDarlene\nCatherine\nAnn\nCindy\nCarolyn\nKim\nJoanne\nPaula\nJudith\nCathy\nJoan\nGloria\nJanice\nLaura\nBeverly\nDorothy\nJane\nAnne\nBetty\nChristine\nJudy\nJulie\nKimberly\nWanda\nDawn\nLeslie\nPeggy\nRebecca\nTerri\nHelen\nJean\nLaurie\nMichelle\nShirley\nDiana\nEileen\nKatherine\nRuth\nSheila\nConnie\nMaureen\nMichele\nTerry\nEllen\nGail\nHolly\nJo\nKathryn\nTina\nValerie\nAmy\nAnnette\nJill\nMarie\nMartha\nRita\nRoberta\nLois\nLynn\nRegina\nElaine\nJennifer\nJulia\nVictoria\nAnna\nFrances\nJoann\nLoretta\nSarah\nSuzanne\nTammy\nVirginia\nBelinda\nGeraldine\nStephanie\nVicki\nAndrea\nAngela\nDoris\nJune\nMarlene\nRhonda\nSally\nWendy\nBeth\nCharlotte\nIrene\nJacqueline\nJoy\nPhyllis\nSandy\nSherry\nAnita\nSylvia\nTracy\nArlene\nChristina\nColleen\nConstance\nEvelyn\nJayne\nJeanne\nKelly\nLorraine\nMarcia\nMonica\nNorma\nRose\nSue\nTanya\nVickie\nCarrie\nDebora\nDianne\nElla\nFaye\nGrace\nKay\nLori\nLouise\nMargie\nMarilyn\nMelody\nNadine\nRenee\nRosemary\nVanessa\nAlice\nAlison\nAudrey\nBecky\nCarla\nClaudia\nCrystal\nDorothea\nGale\nGina\nHope\nLauren\nMarian\nPatti\nPatty\nShari\nShelly\nSheryl\nVivian\nYvonne\nBonita\nCaroline\nCharlene\nClaire\nDelores\nDianna\nEleanor\nEunice\nFlorence\nGayle\nHeidi\nJacquelyn\nKristen\nLynne\nMaria\nMarianne\nMelissa\nPatsy\nThelma\nToni\nVeronica\nMary\nDonna\nKaren\nSusan\nDeborah\nLinda\nPatricia\nBarbara\nCynthia\nLisa\nSharon\nNancy\nSandra\nBrenda\nDiane\nElizabeth\nCarol\nRobin\nDenise\nKathleen\nCheryl\nKathy\nDebra\nPamela\nDebbie\nJanet\nCatherine\nTheresa\nDawn\nMargaret\nLaura\nTeresa\nJoanne\nCarolyn\nJoyce\nJudy\nStephanie\nChristine\nValerie\nCathy\nJoan\nLynn\nMichelle\nAnn\nBonnie\nKim\nTerri\nAnne\nCindy\nJane\nJudith\nMarie\nTerry\nDorothy\nJulie\nSheila\nJanice\nMichele\nRuth\nVictoria\nWanda\nDarlene\nDiana\nGail\nShirley\nAnita\nElaine\nJennifer\nAnnette\nBetty\nBeverly\nLori\nTammy\nAndrea\nConnie\nRebecca\nSuzanne\nVirginia\nJacqueline\nJean\nJoann\nMartha\nPhyllis\nRegina\nSarah\nWendy\nAlice\nHelen\nLaurie\nTina\nAmy\nEllen\nKimberly\nPatty\nPaula\nPeggy\nJill\nJuanita\nKatherine\nKathryn\nLois\nLoretta\nLorraine\nMaureen\nNorma\nSherry\nVicki\nAnna\nHolly\nLeslie\nMaria\nMelissa\nRenee\nBernadette\nBeth\nColleen\nConstance\nFrances\nGloria\nJune\nRhonda\nRose\nVanessa\nAngela\nCharlotte\nCrystal\nDoris\nEileen\nJulia\nKelly\nRita\nTamara\nAudrey\nCarla\nClaire\nGina\nHeidi\nJo\nMarjorie\nMarlene\nMaryann\nMonica\nPenny\nSally\nSue\nSylvia\nTracy\nYvonne\nCarole\nCharlene\nJeanne\nLouise\nSandy\nSheryl\nTanya\nBernadine\nChristina\nDana\nDoreen\nEdna\nEvelyn\nFaith\nGlenda\nJan\nLou\nMarilyn\nPatti\nToni\nTrudy\nBecky\nCarmen\nClara\nEthel\nFlorence\nGale\nGrace\nIris\nKay\nLynne\nMelanie\nPatsy\nPriscilla\nRoberta\nRoxanne\nSheri\nTami\nVickie\nVicky\nAllison\nArlene\nCarrie\nCecilia\nFelicia\nGeraldine\nGwendolyn\nJackie\nLydia\nLynda\nMarianne\nMildred\nMona\nPam\nRachel\nRandi\nRosemarie\nRosemary\nTracey\nVivian\nDonna\nMary\nKaren\nLisa\nSusan\nLinda\nPatricia\nDeborah\nSharon\nCarol\nElizabeth\nCynthia\nBarbara\nSandra\nDiane\nRobin\nKimberly\nKathleen\nPamela\nDenise\nCheryl\nBrenda\nDebra\nNancy\nTheresa\nKim\nKathy\nTeresa\nMargaret\nAnn\nChristine\nDebbie\nMichele\nDawn\nLaura\nLori\nCarolyn\nJoyce\nValerie\nJane\nSherry\nCindy\nPaula\nTina\nJanet\nCatherine\nCathy\nShirley\nDarlene\nKelly\nJoan\nJoanne\nKatherine\nMichelle\nSheila\nWendy\nAngela\nAnnette\nBeverly\nJudy\nAnne\nKathryn\nLynn\nRebecca\nTerri\nAndrea\nBeth\nBetty\nJudith\nJulie\nTerry\nEileen\nGail\nJacqueline\nLeslie\nMarie\nStephanie\nCarla\nEllen\nJanice\nLaurie\nMaria\nRegina\nRenee\nRose\nTammy\nTracy\nVirginia\nAmy\nColleen\nDorothy\nElaine\nSuzanne\nAnna\nJulia\nLois\nMelissa\nPhyllis\nRoberta\nVictoria\nAlice\nBonnie\nConstance\nFrances\nGloria\nJean\nJo\nJoann\nLorraine\nMarcia\nMartha\nRuth\nAnita\nDiana\nHelen\nPeggy\nSally\nCarmen\nCrystal\nRhonda\nVickie\nWanda\nConnie\nDianne\nJennifer\nJill\nYvonne\nJoy\nLauren\nPatti\nSandy\nSheryl\nVicki\nCharlotte\nMaureen\nMelinda\nSara\nSarah\nShelley\nTracey\nVanessa\nApril\nBernadette\nClaudia\nIrene\nJamie\nJeanne\nVeronica\nArlene\nCarrie\nDoris\nEvelyn\nHolly\nJan\nJosephine\nLouise\nMarianne\nMelody\nNina\nNorma\nPatty\nRita\nSue\nTamara\nToni\nAlison\nAudrey\nBecky\nBernice\nCharlene\nChris\nChristina\nDana\nFay\nGeraldine\nGina\nJackie\nJune\nKathi\nLeigh\nLoretta\nLynne\nMarsha\nMildred\nMonica\nPenny\nSylvia\nTerrie\nAlicia\nBelinda\nCarole\nCecilia\nCheri\nEdith\nEunice\nFlorence\nGladys\nGwendolyn\nHope\nKay\nKimberley\nLynda\nMarian\nMarjorie\nMelanie\nMyra\nNadine\nShari\nSheri\nSonia\nSusanne\nTeri\nTherese\nMary\nLisa\nDonna\nSusan\nKaren\nLinda\nDeborah\nPatricia\nSharon\nRobin\nCynthia\nCarol\nBarbara\nNancy\nSandra\nBrenda\nPamela\nCheryl\nKimberly\nDenise\nTeresa\nKathy\nKathleen\nDiane\nMichele\nTheresa\nMargaret\nElizabeth\nMichelle\nDebbie\nDebra\nChristine\nCatherine\nJacqueline\nLaura\nTina\nTerri\nDiana\nLori\nDawn\nAnnette\nCathy\nCindy\nJanet\nJudith\nAmy\nKim\nAnn\nBeverly\nValerie\nCarolyn\nStephanie\nSuzanne\nJennifer\nJoanne\nJoyce\nLaurie\nRebecca\nBonnie\nJudy\nSheila\nTammy\nDarlene\nKelly\nPaula\nTerry\nWendy\nTracy\nVicki\nAnne\nBeth\nCarla\nEllen\nShirley\nAngela\nJane\nKatherine\nKathryn\nLeslie\nLorraine\nLynn\nRuth\nVanessa\nVictoria\nConnie\nRegina\nTracey\nAlice\nElaine\nGail\nJoan\nRhonda\nAndrea\nAnna\nPenny\nRenee\nDoris\nJulie\nRose\nRita\nVeronica\nFrances\nJackie\nMaria\nMartha\nMelissa\nShelly\nSherry\nWanda\nCrystal\nGlenda\nHelen\nJill\nJoann\nLynda\nMaryann\nMaureen\nMonica\nVirginia\nCharlene\nConstance\nDana\nDorothy\nHolly\nJanice\nLois\nLynne\nSylvia\nBetty\nCarole\nColleen\nDelores\nDoreen\nGina\nJean\nJulia\nMelanie\nNadine\nSarah\nYvonne\nClaire\nGloria\nHeidi\nIrene\nMarie\nNorma\nPhyllis\nSandy\nVickie\nAnita\nCarmen\nCaroline\nCathleen\nJeanne\nJo\nJuanita\nJune\nKimberley\nLoretta\nLouise\nMarcia\nMarguerite\nMarianne\nMarsha\nPeggy\nRochelle\nSally\nStacey\nSue\nThelma\nVerna\nVivian\nAlison\nBernadette\nCharlotte\nChristina\nDianne\nEileen\nGwendolyn\nJeanette\nKelley\nMarilyn\nMildred\nPam\nPatti\nRosemary\nTanya\nYvette\nAlicia\nBelinda\nDeanna\nDebora\nDolores\nEmily\nEvelyn\nGayle\nGwen\nHope\nJan\nJoy\nLee\nLorie\nLorrie\nMarcella\nMelinda\nMona\nNaomi\nNatalie\nShelley\nSherri\nSonya\nVera\nVicky\nYolanda\nLisa\nMary\nKaren\nSusan\nDonna\nLinda\nPatricia\nDeborah\nPamela\nRobin\nSharon\nElizabeth\nSandra\nCynthia\nKimberly\nBrenda\nTeresa\nKathleen\nCheryl\nBarbara\nDawn\nDenise\nNancy\nChristine\nDiane\nLaura\nCarol\nMargaret\nTheresa\nMichelle\nTammy\nKathy\nDebbie\nLori\nDebra\nJacqueline\nJanet\nAngela\nTina\nKelly\nTerri\nValerie\nMichele\nCatherine\nBonnie\nCarolyn\nCindy\nSuzanne\nWendy\nSherry\nCrystal\nKim\nStephanie\nTracy\nCarla\nJoyce\nAnn\nMarie\nTerry\nHolly\nJennifer\nLeslie\nMaria\nAndrea\nJudith\nPaula\nSheila\nLynn\nRuth\nAmy\nAnnette\nJulie\nWanda\nJane\nJudy\nKatherine\nMelissa\nRebecca\nVanessa\nBeth\nBeverly\nConnie\nDarlene\nJoan\nLaurie\nTracey\nAnne\nCathy\nDorothy\nJean\nKathryn\nMartha\nVirginia\nDiana\nPeggy\nRegina\nVicki\nBetty\nCharlotte\nGail\nGina\nRhonda\nRita\nShirley\nAnita\nElaine\nFrances\nGwendolyn\nJulia\nCharlene\nEileen\nHelen\nJamie\nJanice\nMelanie\nPenny\nRenee\nRose\nRosemary\nAnna\nChristina\nEllen\nLois\nLorraine\nMarilyn\nMaryann\nSarah\nSherri\nVictoria\nAlice\nDana\nGloria\nJill\nJoanne\nLoretta\nMarlene\nMonica\nBelinda\nDianna\nJoann\nJuanita\nMaureen\nMelinda\nSally\nSandy\nVickie\nApril\nCarmen\nCaroline\nCarrie\nClaire\nConstance\nDeanna\nLynne\nMarsha\nPhyllis\nRochelle\nTamara\nVeronica\nArlene\nCarole\nColleen\nDina\nJeanette\nJeanne\nKelley\nLynette\nMarguerite\nMelody\nNorma\nPatti\nStacy\nSylvia\nToni\nYvonne\nAlicia\nBeatrice\nBlanche\nBonita\nCecilia\nCeleste\nClara\nDoreen\nEsther\nFelicia\nJackie\nJo\nJune\nMarcia\nMarian\nMaxine\nMildred\nPauline\nRamona\nShari\nShelly\nSheryl\nStacey\nSue\nTonya\nTrina\nLisa\nKaren\nMary\nSusan\nDonna\nPatricia\nDeborah\nLinda\nSharon\nCynthia\nKimberly\nElizabeth\nPamela\nSandra\nRobin\nDenise\nBrenda\nBarbara\nKathleen\nNancy\nChristine\nTeresa\nMichele\nCheryl\nMichelle\nMargaret\nTammy\nTina\nLori\nCarol\nCatherine\nLaura\nKelly\nSherry\nDiane\nKim\nCarolyn\nJane\nTheresa\nSuzanne\nTracy\nDebra\nRebecca\nDawn\nJennifer\nPaula\nSheila\nJacqueline\nWendy\nJudith\nLaurie\nAnne\nTerri\nValerie\nKathy\nAmy\nAndrea\nDorothy\nMaria\nAngela\nAnn\nTerry\nCarla\nCrystal\nJanet\nBonnie\nJudy\nRenee\nRhonda\nAnnette\nBeverly\nColleen\nConnie\nWanda\nDebbie\nGail\nJoanne\nMelissa\nTracey\nAnna\nJoan\nKathryn\nLynn\nRegina\nBetty\nDiana\nEllen\nHolly\nJanice\nJoyce\nJulie\nMelanie\nStephanie\nAlice\nDarlene\nEileen\nJean\nJill\nMaureen\nPenny\nRose\nVictoria\nBeth\nCathy\nCharlotte\nLeslie\nMarie\nShirley\nVicki\nAnita\nCindy\nDana\nSarah\nSheri\nCharlene\nFrances\nHelen\nLorraine\nLynne\nPatty\nRita\nToni\nYvette\nCaroline\nCarrie\nElaine\nFaith\nJulia\nMarsha\nStacey\nVickie\nVirginia\nYvonne\nChristina\nGina\nGloria\nJeanne\nKatherine\nLoretta\nRuth\nVeronica\nChris\nDianna\nDolores\nEvelyn\nJoann\nJuanita\nKelley\nMartha\nNorma\nRoberta\nSherri\nAlicia\nBelinda\nDeanna\nDebora\nDoris\nFelicia\nGwendolyn\nJackie\nJamie\nLauren\nLouise\nMarcia\nMarian\nMaryann\nMelinda\nNina\nPhyllis\nSally\nSheryl\nStacy\nSue\nTrudy\nAllison\nApril\nArlene\nBetsy\nCarmen\nCassandra\nCeleste\nConstance\nDeidre\nDelores\nDianne\nEleanor\nFlorence\nGrace\nGwen\nHeather\nHope\nJo\nJoy\nJune\nKristin\nLydia\nMarcella\nMarianne\nMarybeth\nMonica\nNatalie\nPeggy\nRachel\nRobyn\nRochelle\nRosa\nSandy\nShelly\nSonya\nTamara\nTara\nTraci\nVanessa\nLisa\nMary\nKaren\nDonna\nPatricia\nSusan\nKimberly\nDeborah\nLinda\nSharon\nElizabeth\nCynthia\nDenise\nSandra\nDawn\nTeresa\nKathleen\nMichelle\nBarbara\nPamela\nTammy\nNancy\nStephanie\nTracy\nChristine\nRobin\nMichele\nTheresa\nBrenda\nCheryl\nMargaret\nCarol\nJacqueline\nAngela\nDiane\nJennifer\nLaura\nCrystal\nSherry\nValerie\nDebra\nTina\nAnn\nPaula\nDarlene\nKelly\nWendy\nCatherine\nLori\nAndrea\nCarolyn\nJoanne\nTerri\nKathy\nLeslie\nBonnie\nJoan\nJulie\nWanda\nAmy\nDebbie\nJill\nRenee\nAnne\nCindy\nKatherine\nKim\nMelissa\nGail\nSheila\nSuzanne\nConnie\nRebecca\nTerry\nVictoria\nBeverly\nCarla\nDana\nRegina\nRhonda\nDiana\nJanice\nLynn\nShelly\nSherri\nVeronica\nDeneen\nDorothy\nHolly\nJane\nJanet\nLaurie\nRuth\nTracey\nAnnette\nBeth\nCharlene\nColleen\nJudith\nJudy\nMaureen\nSarah\nShirley\nVirginia\nCathy\nConstance\nGina\nJoann\nLynda\nMarie\nRose\nBelinda\nEileen\nJeanne\nJulia\nKathryn\nBetty\nHelen\nMartha\nMonica\nSue\nYvette\nAlice\nJoyce\nJuanita\nRoberta\nAlicia\nAnita\nAnna\nCharlotte\nChristina\nDoris\nElaine\nFrances\nGloria\nKimberley\nMaria\nMelanie\nPatty\nPenny\nPhyllis\nSandy\nTanya\nVicki\nAlison\nApril\nCarole\nCaroline\nClaire\nEdna\nHeidi\nJacquelyn\nJean\nJune\nKatrina\nLauren\nLouise\nNina\nRochelle\nShelley\nVivian\nAllison\nArlene\nBernadette\nDianne\nElla\nEllen\nGrace\nHeather\nJeanette\nLorraine\nMarilyn\nMelody\nNatalie\nSally\nSara\nSheri\nSheryl\nStacy\nTamara\nTeri\nToni\nVickie\nAudrey\nBobbie\nBridget\nBridgette\nDeanna\nDeidre\nErin\nFelicia\nFrancine\nHope\nIrene\nJeannette\nJosephine\nMarjorie\nMarsha\nMelinda\nPaulette\nPauline\nRonda\nSonya\nStacey\nSylvia\nYvonne\nLisa\nKimberly\nKaren\nMary\nSusan\nDonna\nDawn\nDeborah\nPatricia\nChristine\nSharon\nCynthia\nRobin\nLinda\nMichele\nMichelle\nAngela\nJennifer\nBarbara\nElizabeth\nDenise\nSandra\nStephanie\nKathleen\nPamela\nLaura\nLori\nDiane\nTeresa\nBrenda\nCheryl\nTammy\nAmy\nMargaret\nTracy\nWendy\nDebra\nNancy\nSheila\nKelly\nAnn\nCarol\nTheresa\nTracey\nCatherine\nJacqueline\nTina\nAndrea\nPaula\nKim\nMelissa\nRhonda\nKathy\nValerie\nCrystal\nJill\nMaureen\nRebecca\nCarolyn\nRenee\nJulie\nMaria\nVirginia\nAnna\nBeth\nConnie\nAnne\nAnnette\nBetty\nChristina\nDana\nDarlene\nGail\nAllison\nCarla\nCindy\nKatherine\nLaurie\nRegina\nStacey\nBonnie\nColleen\nDeanna\nDorothy\nJane\nJanet\nJoan\nJoyce\nJudith\nLeslie\nMarie\nSherry\nShirley\nSuzanne\nVicki\nWanda\nApril\nGloria\nJanice\nLynn\nMarsha\nRuth\nTerri\nVictoria\nAlison\nAnita\nHolly\nKathryn\nMonica\nDiana\nNicole\nPeggy\nPenny\nTamara\nYvonne\nAmanda\nCarmen\nCharlene\nConstance\nDebbie\nEileen\nHelen\nLorraine\nLynne\nSarah\nSuzette\nAntoinette\nArlene\nCathy\nCharlotte\nDanielle\nGina\nGwendolyn\nJessica\nJudy\nJulia\nRita\nTanya\nBernadette\nBeverly\nDora\nElaine\nHeather\nHeidi\nJoann\nKristin\nKristine\nMarlene\nRose\nTerry\nTonya\nVickie\nYvette\nBonita\nCassandra\nEllen\nFrances\nJackie\nJean\nJeanette\nJeanne\nJoanne\nJody\nLoretta\nMarcia\nMarjorie\nMaryann\nMia\nMiriam\nMonique\nRoberta\nSally\nShannon\nSylvia\nToni\nTraci\nTrina\nCarole\nCaroline\nDianne\nDoris\nGretchen\nIrene\nJamie\nJo\nJodi\nKatrina\nKimberley\nKristen\nLesley\nMartha\nNadine\nNina\nPhyllis\nRamona\nRochelle\nSamantha\nShelia\nSonya\nVeronica\nYolanda\nLisa\nKimberly\nMary\nKaren\nMichelle\nDawn\nSusan\nDonna\nDeborah\nPatricia\nChristine\nMichele\nBarbara\nElizabeth\nTracy\nTeresa\nTammy\nDiane\nJennifer\nKelly\nTina\nLinda\nKathleen\nNancy\nCynthia\nDenise\nPamela\nSandra\nAmy\nBrenda\nJulie\nLaura\nSharon\nCheryl\nTheresa\nCarol\nLori\nStephanie\nRobin\nAndrea\nSheila\nAngela\nCatherine\nMelissa\nDebra\nPaula\nWendy\nBeth\nJacqueline\nMaria\nCarolyn\nLaurie\nTracey\nCrystal\nMargaret\nRebecca\nValerie\nAnn\nAnne\nChristina\nJanet\nSuzanne\nVeronica\nJill\nKathryn\nKathy\nSherry\nGina\nKim\nMonica\nRegina\nRhonda\nColleen\nHolly\nRenee\nWanda\nCarla\nDiana\nSherri\nStacey\nCharlotte\nDana\nDarlene\nLynn\nMarie\nSarah\nTanya\nBonnie\nJulia\nKatherine\nKristin\nPenny\nTerri\nTraci\nAnnette\nCathy\nCharlene\nElaine\nGail\nHeather\nJoyce\nLeslie\nNicole\nVicki\nDebbie\nJane\nJoan\nJoanne\nJudith\nMaureen\nRuth\nStacy\nVirginia\nAlice\nBeverly\nEvelyn\nHope\nKelley\nKristine\nLoretta\nShirley\nVictoria\nAmanda\nBernadette\nEileen\nFrances\nHeidi\nMartha\nShelly\nSonya\nYvonne\nAnita\nApril\nAudrey\nBetty\nCarmen\nGwendolyn\nHelen\nMelanie\nMelinda\nPeggy\nSamantha\nShannon\nSonja\nAnna\nCaroline\nCindy\nConstance\nDeanna\nJeanne\nJoann\nJuanita\nKimberley\nKirsten\nLois\nMarianne\nPhyllis\nRobyn\nSally\nTerry\nAllison\nAngel\nAntoinette\nBetsy\nBobbie\nCassandra\nDanielle\nDaphne\nDeena\nDolores\nDorothy\nEllen\nEmma\nFelicia\nIrene\nJacquelyn\nJamie\nJanice\nJody\nKristen\nLauri\nLee\nLorraine\nLouise\nNorma\nSylvia\nToni\nValarie\nVickie\nLisa\nKimberly\nMichelle\nSusan\nKaren\nMary\nElizabeth\nPatricia\nChristine\nDawn\nStephanie\nDeborah\nDonna\nCynthia\nPamela\nTammy\nWendy\nJennifer\nMelissa\nSharon\nKathleen\nAmy\nLaura\nMichele\nLinda\nCheryl\nDenise\nTheresa\nSandra\nBarbara\nTina\nAngela\nKelly\nCarol\nRobin\nTracy\nNancy\nLori\nTeresa\nDiane\nRebecca\nAndrea\nMargaret\nValerie\nAnn\nApril\nBrenda\nTerri\nDebra\nPaula\nBonnie\nSherry\nAnne\nCarolyn\nHeather\nJacqueline\nJulie\nSheila\nChristina\nDiana\nJanet\nKim\nKristin\nTracey\nMaria\nSuzanne\nCatherine\nDana\nRenee\nRhonda\nCrystal\nGina\nMaureen\nTanya\nVictoria\nWanda\nCathy\nHolly\nJill\nColleen\nJane\nLaurie\nNicole\nRegina\nSarah\nAnnette\nEileen\nJean\nJudith\nKathryn\nMelanie\nSherri\nStacey\nStacy\nAnita\nBernadette\nDeanna\nJoanne\nKatherine\nKathy\nLeslie\nRachel\nVicki\nYvonne\nCindy\nFrances\nJoyce\nMarie\nSheri\nTamara\nTonya\nBeth\nFaith\nGloria\nJoann\nJuanita\nMonica\nRuth\nSonya\nVickie\nAdrienne\nCarla\nJanice\nJulia\nLoretta\nLynn\nPenny\nShelley\nShelly\nSonja\nAudra\nConstance\nDarlene\nDebbie\nDina\nDoris\nDorothy\nElaine\nJamie\nJudy\nLauren\nMartha\nNorma\nRoberta\nSabrina\nSheryl\nTammie\nTerry\nVirginia\nCandace\nCharlene\nCharlotte\nGail\nIris\nJessica\nJo\nJoan\nKarin\nLeigh\nLorraine\nNina\nRonda\nSamantha\nSylvia\nTracie\nVanessa\nVeronica\nAlison\nAnna\nBelinda\nBeverly\nCassandra\nCeleste\nDanielle\nDesiree\nEllen\nHelen\nJeanne\nJoy\nJune\nKristine\nLynne\nPriscilla\nSally\nShawn\nToni\nLisa\nKimberly\nMichelle\nJennifer\nSusan\nKaren\nDawn\nDonna\nLaura\nPatricia\nMary\nElizabeth\nAmy\nMelissa\nPamela\nSharon\nKelly\nMichele\nDeborah\nStephanie\nChristine\nAngela\nDenise\nSandra\nWendy\nCatherine\nCynthia\nTammy\nTheresa\nBarbara\nRebecca\nCheryl\nKathleen\nTracy\nRobin\nJulie\nLinda\nLori\nTeresa\nChristina\nAndrea\nAnn\nTina\nJill\nValerie\nDiane\nTracey\nVictoria\nBrenda\nNancy\nHolly\nKatherine\nDebra\nMargaret\nSuzanne\nRenee\nSherry\nStacey\nCarol\nCarolyn\nLynn\nPaula\nSheila\nTerri\nDarlene\nMaria\nRhonda\nJacqueline\nKristin\nBonnie\nHeather\nLeslie\nAlice\nBeth\nDana\nDiana\nKim\nMonica\nStacy\nDeanna\nLoretta\nSherri\nTanya\nCarrie\nDorothy\nJanet\nPenny\nRachel\nYvette\nAnne\nCarmen\nCrystal\nKathy\nTamara\nTerry\nVicki\nYvonne\nCandace\nColleen\nKatrina\nKristen\nLaurie\nRita\nTammie\nVeronica\nAnna\nApril\nBeverly\nConnie\nDina\nGail\nGina\nJeanette\nMarie\nMarjorie\nSarah\nSonya\nTara\nTraci\nVanessa\nAnita\nAnnette\nCarla\nCathy\nCharlotte\nCindy\nDanielle\nJane\nJean\nJessica\nJulia\nKarin\nKelley\nMarlene\nMaureen\nMildred\nNicole\nNina\nRegina\nRuth\nShannon\nShelly\nToni\nTonya\nVirginia\nAlicia\nAlison\nAudrey\nCharlene\nElaine\nEva\nFrances\nJoyce\nKathryn\nKirsten\nKristina\nLeigh\nMelanie\nMelinda\nNatalie\nNorma\nSamantha\nSara\nShari\nShirley\nWanda\nYolanda\nAdrienne\nAllison\nBelinda\nCassandra\nClaudia\nEllen\nEmily\nErin\nEvelyn\nFaith\nFrancine\nGloria\nHelen\nJamie\nJoanna\nJoanne\nJodi\nKarla\nKellie\nMarcia\nMarianne\nMarlo\nMartina\nMelody\nPeggy\nRoberta\nShelley\nSheri\nSonia\nSusanne\nTerrie\nTiffany\nKimberly\nLisa\nJennifer\nDawn\nMichelle\nSusan\nAmy\nTammy\nMelissa\nKaren\nMary\nPamela\nChristine\nMichele\nKelly\nElizabeth\nPatricia\nDeborah\nHeather\nLaura\nCynthia\nStephanie\nTina\nTracy\nAngela\nJulie\nSharon\nLori\nDonna\nLinda\nDenise\nKathleen\nRebecca\nRobin\nChristina\nDiane\nBarbara\nTeresa\nWendy\nJacqueline\nCarol\nCrystal\nCheryl\nDana\nNicole\nTracey\nNancy\nPaula\nAndrea\nBrenda\nDebra\nBeth\nSandra\nTheresa\nCatherine\nMonica\nShannon\nTanya\nApril\nJulia\nMaria\nStacey\nValerie\nVictoria\nJoanne\nStacy\nSuzanne\nAnn\nHolly\nKathryn\nLynn\nRose\nVeronica\nCarolyn\nKristin\nRhonda\nCarla\nKatherine\nKristen\nLaurie\nMargaret\nSherry\nTonya\nYvonne\nGina\nJill\nLeslie\nRegina\nSheila\nSherri\nAnnette\nBonnie\nColleen\nDeanna\nKristine\nCindy\nDanielle\nDiana\nKathy\nKellie\nRenee\nTerri\nTricia\nAnne\nCharlene\nErica\nJanet\nMelinda\nRuth\nShelley\nAlicia\nDianna\nGretchen\nHeidi\nJudy\nKim\nLauren\nLoretta\nMegan\nMelanie\nShirley\nTara\nTerry\nTraci\nVicki\nCarmen\nCassandra\nDeana\nDina\nDorothy\nEileen\nEllen\nGwendolyn\nHelen\nJodi\nJoyce\nKimberley\nMarie\nRachel\nRobyn\nSarah\nStacie\nTamara\nTrisha\nVicky\nAllison\nAnita\nCaroline\nConnie\nDebbie\nFaith\nFelicia\nFrances\nGloria\nKatrina\nKelli\nKristina\nLora\nLorie\nMartha\nMelody\nPaige\nRochelle\nShawn\nSheri\nTrina\nVickie\nYvette\nAmanda\nAnissa\nAntoinette\nAretha\nBelinda\nBeverly\nCharlotte\nConstance\nErin\nGinger\nJamie\nJane\nJanice\nJean\nJeanette\nJoann\nJody\nKelley\nKimberlee\nKrista\nLara\nLois\nLynda\nMaureen\nNichole\nPenny\nSabrina\nShari\nSonya\nStaci\nSusanne\nYolanda\nJennifer\nMichelle\nKimberly\nLisa\nDawn\nChristine\nLaura\nPatricia\nTracy\nKelly\nSusan\nAmy\nKaren\nMary\nMelissa\nTammy\nElizabeth\nTina\nStephanie\nNicole\nDonna\nDeborah\nAngela\nHeather\nMichele\nPamela\nSharon\nDenise\nCynthia\nShannon\nBarbara\nJulie\nKathleen\nChristina\nLori\nSandra\nTracey\nAndrea\nNancy\nTheresa\nAnn\nSheila\nTara\nRobin\nValerie\nWendy\nLinda\nCatherine\nCheryl\nKristin\nRhonda\nBrenda\nBeth\nLaurie\nSherry\nCrystal\nRebecca\nCarolyn\nDana\nJacqueline\nDanielle\nMaria\nSuzanne\nVictoria\nCarol\nDebra\nDiane\nJessica\nKatherine\nMargaret\nSarah\nStacy\nTeresa\nRenee\nAnne\nApril\nCarla\nJulia\nTanya\nStacey\nGina\nRegina\nAnita\nColleen\nDeanna\nDiana\nKristen\nLeslie\nMelanie\nPaula\nSherri\nTamara\nJill\nMarie\nMegan\nTiffany\nAlicia\nAnna\nBeverly\nErica\nGail\nHolly\nJanet\nKarin\nKathryn\nKathy\nSara\nTonya\nCarrie\nCathleen\nDorothy\nHeidi\nJean\nKim\nKirsten\nKrista\nSamantha\nTrina\nYolanda\nAlison\nAmanda\nDarlene\nErin\nHope\nIrene\nKristine\nLynn\nRachel\nShelly\nTerri\nVeronica\nAllison\nBonnie\nCindy\nConnie\nEvelyn\nJanice\nJoanne\nMaureen\nMonica\nRose\nRuth\nTracie\nVicki\nEllen\nErika\nJane\nJoan\nJoann\nJody\nJoyce\nJudith\nKristie\nKristina\nLauren\nLee\nMelinda\nRochelle\nSabrina\nShelley\nAlisa\nBetty\nBridget\nCarmen\nCharlene\nDesiree\nDoris\nEileen\nEmma\nFaith\nGloria\nGretchen\nHelen\nJodi\nJoy\nKara\nKatrina\nKelli\nKellie\nMelody\nNatalie\nNina\nPatrice\nShawna\nSheri\nShirley\nSonia\nSonya\nStacie\nTerry\nVanessa\nVirginia\nWanda\nYvonne\nJennifer\nKimberly\nLisa\nMichelle\nDawn\nAmy\nKaren\nMelissa\nTammy\nAngela\nHeather\nSusan\nMary\nChristine\nTracy\nNicole\nKelly\nElizabeth\nJulie\nLaura\nStephanie\nPatricia\nWendy\nMichele\nCynthia\nSharon\nStacy\nDonna\nAndrea\nCrystal\nLori\nSandra\nTanya\nTina\nDenise\nPamela\nShannon\nTheresa\nDeborah\nSherry\nTara\nChristina\nVictoria\nDana\nRebecca\nCatherine\nJessica\nKatherine\nSarah\nTeresa\nCheryl\nHolly\nCarrie\nJill\nMonica\nNancy\nApril\nCarolyn\nLinda\nRobin\nSuzanne\nTonya\nBarbara\nStacey\nBeth\nBrenda\nColleen\nJacqueline\nTracey\nAnn\nCarla\nDiane\nLeslie\nPaula\nJudith\nKathleen\nRachel\nRenee\nErin\nHope\nMaria\nValerie\nAnne\nCharlene\nDebra\nDiana\nHeidi\nJanet\nKathryn\nKathy\nLaurie\nLynn\nMelanie\nRhonda\nSheila\nSherri\nTiffany\nAnita\nDanielle\nErica\nJoanne\nKristen\nKristin\nMargaret\nAllison\nAmanda\nAngel\nCarmen\nCarol\nConstance\nDarlene\nJean\nKim\nSylvia\nTamara\nTricia\nVeronica\nYolanda\nAlison\nCindy\nDeanna\nEllen\nHelen\nKatrina\nKrista\nKristine\nRegina\nSamantha\nSara\nSonya\nVirginia\nAdrienne\nAnnette\nBobbie\nCathy\nChristy\nConnie\nJane\nJoanna\nKeisha\nKerry\nKimberley\nKristina\nMonique\nSabrina\nSheri\nWendi\nAlicia\nCandice\nGina\nGloria\nGwendolyn\nIda\nJoann\nJoyce\nJuanita\nJudy\nKara\nLatanya\nMartha\nMaureen\nNatalie\nRoberta\nShawn\nVicki\nAngelique\nBernadette\nBillie\nCara\nCassandra\nCherie\nChrista\nDeana\nDelores\nEvelyn\nFelicia\nGail\nJamie\nJoy\nJulia\nKirsten\nMarcie\nMarie\nMolly\nPenny\nRobyn\nShelley\nShelly\nShirley\nStefanie\nTerri\nTerry\nWanda\nJennifer\nKimberly\nLisa\nMichelle\nAmy\nDawn\nStephanie\nMary\nMelissa\nAngela\nHeather\nKaren\nNicole\nChristine\nDonna\nKelly\nSusan\nMichele\nLaura\nElizabeth\nTracy\nTammy\nRebecca\nPatricia\nTara\nShannon\nTina\nChristina\nDeborah\nCynthia\nSharon\nJulie\nAndrea\nWendy\nLori\nTheresa\nRobin\nTanya\nBarbara\nCrystal\nDenise\nStacy\nKathleen\nPaula\nTonya\nDana\nDanielle\nJessica\nPamela\nSarah\nTeresa\nTracey\nApril\nBrenda\nRhonda\nCarol\nErin\nLinda\nSherry\nHolly\nKatina\nMelanie\nSandra\nTiffany\nAllison\nErica\nKatherine\nKristin\nKristine\nMargaret\nNancy\nRenee\nStacey\nAlison\nAnn\nDebra\nMaria\nTamara\nAngel\nCatherine\nDeanna\nHeidi\nJill\nKristen\nNikki\nRuth\nSuzanne\nValerie\nVictoria\nAnna\nCheryl\nDiane\nJacqueline\nMonica\nSara\nShawn\nShelly\nBeth\nCarrie\nChristy\nCindy\nKathryn\nMarie\nRegina\nSherri\nTerri\nCatina\nJanet\nKathy\nKelley\nLauren\nLeslie\nLynn\nMegan\nMelinda\nNichole\nPenny\nRachel\nYolanda\nAmanda\nAnne\nBonnie\nColleen\nDebbie\nDiana\nDoris\nJean\nJoanna\nJulia\nKatrina\nKerry\nLeah\nLeigh\nMarsha\nVeronica\nVirginia\nBelinda\nCandace\nCarla\nCarolyn\nChrista\nFaith\nFrances\nGina\nJoanne\nJudith\nJudy\nKristina\nKristy\nLaurie\nLesley\nSamantha\nShirley\nSonya\nTameka\nTammi\nTraci\nTracie\nTricia\nVicki\nBeverly\nCasey\nCeleste\nCharlotte\nConstance\nDesiree\nDianna\nElaine\nErika\nGayle\nHelen\nJeanette\nJody\nKenya\nKeri\nKrista\nLara\nLatonya\nLynette\nMarcia\nMonique\nNatasha\nSheri\nVanessa\nYvonne\nJennifer\nAmy\nMichelle\nHeather\nLisa\nKimberly\nDawn\nKaren\nAngela\nRebecca\nMelissa\nNicole\nStephanie\nChristine\nSusan\nLaura\nTammy\nElizabeth\nChristina\nMary\nMichele\nDenise\nKelly\nJulie\nShannon\nCrystal\nLori\nPatricia\nKristin\nTara\nTracy\nCynthia\nRobin\nRenee\nTanya\nTina\nCatherine\nDanielle\nKristen\nApril\nDeborah\nDonna\nAndrea\nAnn\nBarbara\nHolly\nJessica\nPamela\nMonica\nStacey\nTeresa\nWendy\nJill\nKatherine\nMelanie\nSandra\nStacy\nJanet\nMaria\nPaula\nRachel\nTonya\nAnna\nCarol\nDiane\nErica\nKathleen\nSharon\nBeth\nDiana\nKathryn\nSarah\nSherry\nTamara\nTheresa\nVirginia\nCarrie\nCheryl\nDana\nKatina\nLinda\nMegan\nSheila\nValerie\nJulia\nKristine\nRhonda\nTiffany\nVictoria\nAlison\nJoanna\nLauren\nLaurie\nMargaret\nMelinda\nNancy\nAmanda\nAnne\nBrenda\nCarla\nDeanna\nHope\nJacqueline\nJoanne\nLynn\nShelly\nSonya\nTracey\nVicki\nBonnie\nCindy\nColleen\nFelicia\nKristie\nKristina\nLeslie\nNatalie\nBeverly\nBridget\nCandace\nCarolyn\nErin\nGina\nJeanette\nJenny\nKatrina\nKerri\nMarcia\nMeredith\nNichole\nNina\nSara\nSherri\nAdrienne\nAimee\nAllison\nAnita\nAnnette\nCatina\nCharlotte\nChristy\nElaine\nFaith\nGretchen\nHeidi\nJamie\nKathy\nKelley\nKrista\nPenny\nRobyn\nSheri\nStacie\nStefanie\nYvette\nJennifer\nAmy\nHeather\nMichelle\nKimberly\nMelissa\nNicole\nLisa\nStephanie\nKelly\nMary\nDawn\nKaren\nAngela\nChristina\nSusan\nChristine\nElizabeth\nTammy\nTracy\nCrystal\nLaura\nShannon\nAndrea\nDenise\nRebecca\nLori\nStacey\nJessica\nPatricia\nErin\nKatherine\nTara\nApril\nDanielle\nKristen\nWendy\nMichele\nRobin\nSarah\nTanya\nTina\nKristin\nJulie\nDana\nMonica\nSandra\nStacy\nTheresa\nHolly\nPamela\nRachel\nSharon\nDeborah\nDonna\nLinda\nMelanie\nRenee\nTiffany\nBarbara\nCatherine\nJacqueline\nLaurie\nTracey\nMaria\nVictoria\nAmanda\nCynthia\nJill\nJoy\nMegan\nEllen\nAmber\nBrandy\nCarolyn\nCarrie\nEmily\nErica\nGina\nKathleen\nLeslie\nShelly\nSuzanne\nTamara\nTeresa\nTonya\nAnita\nBrenda\nDiane\nJulia\nKathryn\nLauren\nPaula\nRegina\nRhonda\nSherry\nTricia\nVirginia\nAlison\nAngel\nCarla\nDeanna\nHeidi\nKendra\nKerry\nMargaret\nMeredith\nNakia\nNatalie\nSamantha\nValerie\nAlicia\nBeth\nCharlene\nChristy\nCindy\nColleen\nDiana\nKatrina\nKeri\nKerri\nKisha\nKristi\nKristina\nKristine\nMaureen\nRuth\nSara\nTamika\nAimee\nAnne\nBonnie\nCathy\nCheryl\nDarlene\nDebra\nEvelyn\nJanet\nKelley\nLynn\nMelinda\nShawna\nAlexis\nAlice\nAllison\nAnn\nAshley\nBridget\nCaroline\nDebbie\nDina\nEileen\nJeanette\nKimberley\nKrista\nNichole\nSherri\nStacie\nJennifer\nAmy\nKimberly\nHeather\nMelissa\nMichelle\nAngela\nNicole\nChristine\nRebecca\nLisa\nStephanie\nMary\nChristina\nDawn\nKelly\nSusan\nJessica\nApril\nElizabeth\nKaren\nAmanda\nLaura\nAndrea\nCarrie\nCynthia\nJill\nSarah\nWendy\nMegan\nTracy\nDanielle\nJulie\nRobin\nShannon\nStacy\nTara\nMelanie\nTina\nCatherine\nErin\nKatherine\nKristen\nStacey\nTammy\nKristin\nPamela\nPatricia\nDana\nRachel\nRenee\nSandra\nSharon\nCrystal\nDonna\nMichele\nTanya\nAlicia\nAllison\nBarbara\nHolly\nTiffany\nTonya\nAnne\nDeborah\nDenise\nKatrina\nSamantha\nBrandy\nCheryl\nChristy\nColleen\nJamie\nKathleen\nLori\nMargaret\nMelinda\nEmily\nKeisha\nTheresa\nAdrienne\nAlison\nDiana\nErica\nKathryn\nKathy\nLaurie\nSara\nSherry\nTeresa\nAnn\nBrenda\nChristie\nJacqueline\nLeslie\nLinda\nMaria\nMeredith\nRhonda\nSuzanne\nAmber\nAnna\nCourtney\nDeanna\nDiane\nMonica\nNatalie\nRegina\nTracey\nValerie\nVictoria\nDebra\nDorothy\nElaine\nJaime\nJodi\nKara\nKarla\nKelley\nMarie\nMisty\nNancy\nNichole\nVeronica\nCarla\nCharlene\nGina\nJenny\nJoanna\nLakisha\nLatoya\nLauren\nMandy\nMeghan\nPaula\nRobyn\nRuth\nTamika\nTricia\nYvonne\nAngel\nAshley\nBillie\nCaroline\nCarolyn\nDena\nHeidi\nJean\nJoan\nJoanne\nJoy\nJuanita\nKim\nKimberley\nKisha\nKristine\nLynn\nMarcia\nMarsha\nMartha\nNakia\nRose\nShelly\nSherri\nSonya\nTanisha\nJennifer\nAmy\nHeather\nKimberly\nMelissa\nMichelle\nNicole\nChristina\nAngela\nKelly\nStephanie\nLisa\nAmanda\nLaura\nShannon\nElizabeth\nJessica\nMary\nErin\nRebecca\nStacey\nAndrea\nDanielle\nJaime\nKristin\nDawn\nCynthia\nJamie\nKaren\nTara\nSarah\nApril\nCarrie\nJulie\nSusan\nCatherine\nChristine\nCrystal\nLori\nWendy\nDenise\nErica\nKatherine\nKristen\nLeslie\nMegan\nSharon\nStacy\nMichele\nTina\nDana\nDeborah\nPamela\nTammy\nTanya\nTiffany\nAllison\nPatricia\nTheresa\nTracy\nJill\nRachel\nRobin\nValerie\nCourtney\nMelanie\nAlicia\nBrenda\nColleen\nEmily\nHolly\nNatalie\nAmber\nDonna\nDorothy\nJacqueline\nKathryn\nKristina\nMonica\nNichole\nSara\nTeresa\nVictoria\nAnna\nBarbara\nBeth\nDiana\nKathleen\nMaria\nNancy\nRenee\nSamantha\nSandra\nTamara\nGabrielle\nGina\nGwendolyn\nJoanna\nJodi\nKendra\nLinda\nLindsay\nSherry\nCarolyn\nJanet\nKelley\nLynn\nMargaret\nMarie\nSuzanne\nAdrienne\nAimee\nAnne\nBonnie\nCara\nHeidi\nJody\nJulia\nKatrina\nLatasha\nLauren\nMartha\nMeghan\nTonya\nAshley\nBeverly\nBillie\nBrandy\nBridget\nBrooke\nCarol\nCaroline\nCheryl\nChrista\nChristy\nDeanna\nDiane\nEbony\nErika\nFaith\nFrances\nJanine\nKatie\nLakeisha\nLatanya\nLatisha\nLaurie\nMelinda\nPaula\nRegina\nRobyn\nSabrina\nVeronica\nJennifer\nHeather\nAmy\nMelissa\nMichelle\nKelly\nKimberly\nNicole\nAngela\nJessica\nAmanda\nRebecca\nStephanie\nErin\nShannon\nLisa\nElizabeth\nChristina\nDanielle\nDawn\nSarah\nChristine\nAndrea\nJamie\nKaren\nLaura\nCrystal\nMegan\nJulie\nMary\nLauren\nLori\nSusan\nTammy\nTiffany\nJaime\nKathryn\nTina\nApril\nCarrie\nTara\nJill\nMichele\nSandra\nStacey\nTeresa\nAlison\nKatherine\nSara\nKristen\nKristin\nMelanie\nStacy\nAllison\nErica\nAlicia\nRenee\nTanya\nAnne\nCynthia\nTonya\nAmber\nBarbara\nDana\nDonna\nKatie\nLinda\nLindsay\nPamela\nVictoria\nWendy\nCatherine\nCourtney\nHolly\nKristy\nLaurie\nRachel\nSamantha\nBrenda\nDeanna\nMonica\nTamara\nTracy\nValerie\nAdrienne\nBeth\nCarla\nColleen\nDiana\nDiane\nJoy\nKathleen\nLeslie\nRobin\nAisha\nAnna\nCarolyn\nChristy\nEmily\nJaclyn\nJacqueline\nKristie\nMargaret\nNichole\nPaula\nRobyn\nTerri\nAnn\nBrandy\nCharlene\nCheryl\nDenise\nKristina\nMaria\nMeghan\nNancy\nRegina\nSummer\nTheresa\nYolanda\nAshley\nBrooke\nCandice\nChrista\nGina\nJanet\nJodi\nKara\nKerri\nKrista\nLakisha\nLynn\nNatalie\nPatricia\nShanna\nSharon\nSherry\nStacie\nSuzanne\nTabitha\nTamika\nAimee\nAngel\nAnnette\nBonnie\nCarol\nCassandra\nEbony\nErika\nHelen\nHope\nJillian\nJulia\nKari\nKatrina\nKeisha\nKelley\nKristi\nMandy\nMeredith\nSabrina\nShelly\nSherri\nSommer\nTracey\nJennifer\nKelly\nMelissa\nHeather\nMichelle\nKimberly\nElizabeth\nJessica\nAngela\nNicole\nChristina\nLisa\nAmy\nErin\nLaura\nSarah\nStephanie\nCrystal\nAmanda\nShannon\nMary\nRebecca\nChristine\nKatherine\nDanielle\nJamie\nJill\nMegan\nAndrea\nKaren\nApril\nSusan\nTina\nJulie\nStacey\nTiffany\nLauren\nRachel\nStacy\nKathryn\nKatie\nBeth\nDawn\nHolly\nJaime\nKristen\nTara\nCarrie\nTracy\nCarolyn\nErica\nKathleen\nLori\nMichele\nAlison\nCatherine\nJacqueline\nKristin\nMelanie\nAllison\nBrandy\nCourtney\nTammy\nAmber\nDeborah\nEmily\nColleen\nDevon\nLeslie\nPamela\nRobin\nSandra\nTheresa\nWendy\nBrandi\nDana\nKristina\nLaurie\nLindsay\nMargaret\nSamantha\nAimee\nBarbara\nBrooke\nEbony\nJulia\nKatrina\nMelinda\nPatricia\nRegina\nValerie\nAlexis\nAlicia\nAnn\nAnna\nAutumn\nDenise\nDonna\nJaclyn\nMandy\nNancy\nTanya\nVictoria\nAshley\nCarla\nCaroline\nCassandra\nChristy\nDebra\nDiane\nHeidi\nJoanna\nJodi\nLinda\nMaria\nNatasha\nTamara\nTeresa\nVanessa\nAlice\nAnne\nCheryl\nCynthia\nDesiree\nDiana\nGina\nJacquelyn\nJanelle\nJoanne\nJoy\nKara\nKristie\nKristine\nKristy\nLatisha\nLeah\nLynn\nMarcia\nMartha\nMeghan\nNatalie\nNichole\nRenee\nSara\nSonya\nTamika\nAnnette\nBrenda\nJillian\nJodie\nLakisha\nLara\nLatasha\nLatoya\nMonique\nSabrina\nSherri\nToni\nTracey\nVeronica\nYvonne\nJennifer\nMelissa\nHeather\nNicole\nAmanda\nAngela\nJessica\nAmy\nMichelle\nKelly\nChristina\nLisa\nKimberly\nElizabeth\nErin\nShannon\nAndrea\nChristine\nCrystal\nLauren\nJamie\nKatherine\nLaura\nStephanie\nSarah\nDana\nDawn\nRebecca\nMegan\nKaren\nApril\nMary\nTiffany\nHolly\nStacey\nAmber\nAnn\nDanielle\nErica\nMichele\nSara\nAllison\nCarrie\nKatie\nSusan\nAlison\nJulie\nMelanie\nTracy\nEmily\nKathryn\nKristen\nStacy\nAlicia\nCatherine\nKathleen\nKristin\nMargaret\nRachel\nAdrienne\nJacqueline\nMindy\nPatricia\nTara\nTina\nWendy\nAnna\nLeslie\nMonica\nSamantha\nTheresa\nChristy\nCourtney\nDenise\nJill\nValerie\nCarolyn\nCynthia\nEbony\nJulia\nLinda\nLori\nMeghan\nNancy\nPamela\nAshley\nBrenda\nCheryl\nGina\nKatrina\nLindsay\nNatasha\nNichole\nRenee\nAlexis\nDeborah\nDebra\nDonna\nHope\nJaime\nJanet\nKristy\nMelinda\nMisty\nPaula\nRuth\nRyan\nSabrina\nSandra\nSuzanne\nTasha\nBeth\nJanelle\nKara\nMeredith\nMichael\nNatalie\nRegina\nTamara\nTammy\nVictoria\nAnita\nAntoinette\nBrandi\nCandice\nColleen\nDeanna\nDesiree\nFrances\nKelley\nKelli\nKristina\nKristine\nLatisha\nMaria\nMarie\nRachael\nShana\nTeresa\nTia\nAngie\nCarla\nCasey\nDevon\nDiana\nHeidi\nJaclyn\nJanine\nJoy\nJoyce\nJuanita\nKendra\nKrista\nKristi\nLakisha\nLaurie\nLeah\nLeigh\nMolly\nRebekah\nShanna\nSharon\nSherry\nTanya\nTonya\nYolanda\nJennifer\nJessica\nMelissa\nAmanda\nHeather\nElizabeth\nSarah\nStephanie\nChristina\nErin\nLisa\nMichelle\nKimberly\nAmy\nKelly\nNicole\nAngela\nTiffany\nChristine\nRebecca\nLaura\nLauren\nDanielle\nCrystal\nKristin\nErica\nMary\nMegan\nSara\nShannon\nJamie\nApril\nJulie\nRachel\nKaren\nKatherine\nKristen\nAmber\nAndrea\nDawn\nStacey\nSusan\nTracy\nAshley\nKathryn\nAlison\nPatricia\nTara\nSamantha\nBrooke\nEmily\nKatie\nPamela\nTanya\nKristina\nMelanie\nMelinda\nTina\nBrandi\nCarrie\nCatherine\nDana\nKristy\nLinda\nLori\nStacy\nTheresa\nAlicia\nAnna\nBeth\nCourtney\nKrista\nLeslie\nLindsay\nMaria\nCarolyn\nCheryl\nDiana\nEbony\nHolly\nRachael\nTamara\nAllison\nBarbara\nBonnie\nJaime\nJill\nJulia\nKathleen\nMichele\nMonica\nMonique\nRenee\nTammy\nVictoria\nAdrienne\nBrandy\nColleen\nNatalie\nSharon\nValerie\nWendy\nCarla\nChristy\nCynthia\nDevon\nDorothy\nHeidi\nJenny\nPaula\nSandra\nTasha\nTonya\nAimee\nAlexis\nBethany\nCandace\nDenise\nGina\nJaclyn\nJacqueline\nKatrina\nKristi\nKristine\nLeanne\nMargaret\nMeghan\nNichole\nTeresa\nToni\nTrisha\nAngel\nCandice\nCaroline\nCassandra\nDiane\nJoy\nKellie\nLaurie\nMeredith\nNina\nRegina\nRhonda\nSherri\nStefanie\nSuzanne\nTabitha\nTia\nVeronica\nAbigail\nAlisha\nAnne\nCristina\nDesiree\nDonna\nErika\nFaith\nJanet\nJoanna\nKatharine\nLatasha\nLatoya\nLesley\nLydia\nMarie\nMolly\nNancy\nNatasha\nRobin\nShana\nSonya\nTanisha\nTracey\nYvonne\nJennifer\nJessica\nMelissa\nAmy\nKimberly\nStephanie\nHeather\nAmanda\nSarah\nNicole\nElizabeth\nRebecca\nLauren\nChristina\nErin\nLaura\nTiffany\nKristin\nKelly\nMegan\nCrystal\nMichelle\nAngela\nLisa\nAndrea\nChristine\nDanielle\nKristen\nApril\nMary\nShannon\nJamie\nLindsay\nRachel\nDawn\nTara\nKatherine\nCourtney\nAmber\nEmily\nErica\nDana\nKaren\nKathryn\nSara\nStacey\nAshley\nCarrie\nJill\nAllison\nJaime\nJulia\nKatie\nLatoya\nPatricia\nKathleen\nBarbara\nBrandy\nJulie\nSusan\nBrooke\nHolly\nJacqueline\nCatherine\nLatasha\nTanya\nValerie\nAdrienne\nLeah\nMaria\nSamantha\nTina\nPamela\nTammy\nTheresa\nAlison\nDiana\nJoanna\nKristina\nMelanie\nSandra\nSharon\nTracy\nVictoria\nDenise\nLindsey\nMargaret\nMichele\nMonica\nMonique\nStacy\nAlexis\nAlicia\nAnna\nBrenda\nCandice\nCynthia\nJillian\nKatrina\nKrystal\nLori\nMarie\nMolly\nNina\nRegina\nRobin\nWendy\nAbigail\nBethany\nCarla\nCaroline\nCasey\nCheryl\nChristy\nLynn\nNatalie\nNatasha\nNichole\nRebekah\nTamara\nAngel\nBrandi\nCarissa\nDevon\nDonna\nJaclyn\nJanelle\nJenny\nJoy\nKate\nLatonya\nMelinda\nMeredith\nMorgan\nRenee\nTonya\nTrisha\nBeth\nCarolyn\nChristie\nColleen\nDeborah\nFelicia\nGina\nHope\nJennie\nJoan\nKerry\nKristi\nLeigh\nLeslie\nLydia\nMeghan\nShayla\nStefanie\nTasha\nTia\nTracey\nVanessa\nVirginia\nJennifer\nJessica\nAmanda\nLauren\nStephanie\nMelissa\nSarah\nErin\nKelly\nHeather\nNicole\nAmy\nKimberly\nLaura\nMichelle\nElizabeth\nChristina\nRachel\nAngela\nRebecca\nTiffany\nKristen\nMegan\nKatherine\nKristin\nLindsay\nShannon\nDanielle\nAmber\nCrystal\nLisa\nAndrea\nApril\nChristine\nEmily\nMary\nSara\nErica\nJamie\nAshley\nKathleen\nJulie\nKathryn\nTara\nDawn\nPatricia\nKaren\nSamantha\nLindsey\nMelanie\nCatherine\nDana\nJacqueline\nEbony\nMargaret\nSusan\nValerie\nKatie\nAlexis\nCandice\nCourtney\nJulia\nRobin\nStacey\nVictoria\nAlison\nColleen\nCasey\nDeanna\nJillian\nKristina\nPamela\nBrandy\nCynthia\nHolly\nJill\nLeslie\nNatalie\nNatasha\nNichole\nTina\nAngel\nCarrie\nDonna\nLatoya\nMeredith\nSharon\nStacy\nTracy\nAnne\nBridget\nDeborah\nGina\nJaime\nJenna\nKatrina\nKrista\nMorgan\nRegina\nRochelle\nAbigail\nAdrienne\nAllison\nBarbara\nBethany\nBrandi\nCarla\nErika\nKate\nKrystal\nMeghan\nMichele\nMonica\nMonique\nShelly\nTamara\nTasha\nTeresa\nBeth\nBrenda\nChristy\nDenise\nDiana\nDorothy\nJaclyn\nJanet\nKendra\nKristine\nKristy\nLaurie\nLeigh\nMaria\nMaureen\nMelinda\nNancy\nRenee\nSandra\nStefanie\nTabitha\nTammy\nTheresa\nTracey\nWendy\nAlicia\nBonnie\nBrooke\nCandace\nCarol\nCassandra\nCheryl\nJoy\nKara\nKira\nLatasha\nLeah\nLinda\nRosa\nRuth\nSheena\nTanya\nTia\nToni\nJennifer\nJessica\nAshley\nAmanda\nHeather\nSarah\nStephanie\nMelissa\nLauren\nElizabeth\nNicole\nChristina\nKimberly\nMegan\nAmy\nErin\nKelly\nLaura\nAmber\nRebecca\nCrystal\nMichelle\nTiffany\nRachel\nKatherine\nAndrea\nLindsay\nAngela\nLisa\nErica\nKristin\nDanielle\nShannon\nJamie\nSara\nMary\nKathryn\nKristen\nStacey\nApril\nLindsey\nEmily\nCourtney\nDana\nJulie\nLatoya\nMelanie\nTara\nAlexis\nHolly\nKaren\nVictoria\nChristine\nLori\nSheena\nAdrienne\nAlicia\nAllison\nBrandy\nBrittany\nCasey\nDenise\nJacqueline\nKathleen\nKristina\nMaria\nSamantha\nStacy\nCarrie\nDawn\nBrandi\nCatherine\nLeah\nMeghan\nValerie\nCandace\nColleen\nJaime\nJill\nKatie\nPamela\nPatricia\nRenee\nSusan\nAlison\nAnna\nAnne\nCynthia\nDiana\nEbony\nJaclyn\nJoanna\nJulia\nLatasha\nMichele\nNatalie\nStefanie\nTheresa\nTracy\nAlisha\nCarolyn\nErika\nLinda\nBarbara\nJoy\nKate\nKristy\nMargaret\nMarquita\nMonica\nSabrina\nBethany\nCarla\nCaroline\nDeborah\nDesiree\nJenna\nKrystal\nLatisha\nMandy\nMarie\nMeredith\nMorgan\nRobin\nSandra\nShayla\nTammy\nTanisha\nTina\nVirginia\nAlexandra\nBrooke\nCaitlin\nCandice\nKarin\nKatrina\nKrista\nKristine\nLacey\nLaurie\nLeslie\nMartha\nNatasha\nNichole\nNina\nRyan\nTeresa\nTia\nToni\nJennifer\nJessica\nAshley\nAmanda\nLauren\nStephanie\nNicole\nDanielle\nHeather\nMegan\nMelissa\nSarah\nAmber\nKimberly\nElizabeth\nLaura\nKelly\nErin\nRachel\nChristina\nMichelle\nTiffany\nAmy\nJamie\nChristine\nKristin\nKristen\nLisa\nLindsay\nRebecca\nCrystal\nKatherine\nShannon\nAngela\nKathryn\nMeghan\nTara\nErica\nMary\nSara\nCourtney\nJenna\nEmily\nKatie\nAlexis\nAlicia\nJulie\nSamantha\nStacy\nAndrea\nJacqueline\nDawn\nLatoya\nVictoria\nApril\nColleen\nLindsey\nStacey\nBrandi\nBrandy\nCatherine\nHolly\nKathleen\nAllison\nBrittany\nKaren\nKristina\nDiana\nLeah\nPamela\nAnna\nDeanna\nCaitlin\nJaime\nMonica\nRachael\nRenee\nSheena\nValerie\nAlison\nCarrie\nDana\nJaclyn\nJulia\nMargaret\nMorgan\nPatricia\nRobin\nBarbara\nCandace\nCarolyn\nCynthia\nEbony\nErika\nJill\nLatasha\nLeslie\nMelanie\nNichole\nSharon\nAbigail\nAdrienne\nAlexandra\nAnn\nBrenda\nCandice\nCaroline\nDeborah\nGina\nKatrina\nKendra\nKrista\nLinda\nMaria\nMelinda\nPaula\nRuth\nAngel\nBrooke\nCasey\nClaire\nElisabeth\nEmma\nJanet\nJasmine\nJillian\nJoanna\nKara\nLatisha\nMartha\nMichele\nMisty\nNatalie\nNatasha\nSabrina\nShana\nStefanie\nTheresa\nAlisha\nAutumn\nBonnie\nCharity\nGrace\nHillary\nKate\nKatharine\nKristine\nKristy\nLynn\nMarie\nMeredith\nMindy\nOlivia\nTaylor\nTeresa\nTina\nTracy\nJennifer\nJessica\nAshley\nAmanda\nLauren\nStephanie\nNicole\nSarah\nHeather\nMegan\nKimberly\nDanielle\nLaura\nAmber\nChristina\nKelly\nChristine\nErin\nMelissa\nRachel\nRebecca\nAmy\nElizabeth\nTiffany\nJamie\nErica\nKristen\nEmily\nCrystal\nLisa\nMichelle\nSara\nKatherine\nKatie\nLindsay\nLindsey\nSamantha\nAngela\nShannon\nJulie\nKristin\nMeghan\nAndrea\nBrittany\nKathleen\nKathryn\nTara\nApril\nJenna\nCourtney\nJulia\nMary\nKristina\nAlicia\nAlison\nBrandy\nCaitlin\nKrystal\nWhitney\nEbony\nHolly\nVictoria\nCatherine\nJillian\nMichele\nAlexis\nErika\nKrista\nPatricia\nTheresa\nValerie\nAllison\nBrittney\nCarrie\nCynthia\nDenise\nMeredith\nAlexandra\nAlyssa\nAnna\nHilary\nJaclyn\nJacqueline\nMelanie\nBrandi\nCassandra\nDana\nDeanna\nKatrina\nLeah\nMargaret\nMaria\nSheena\nSierra\nStacey\nTina\nAdrienne\nAshlee\nCara\nCasey\nDawn\nDominique\nJaime\nJill\nKaren\nKasey\nLatoya\nLeslie\nPamela\nRegina\nRobin\nSharon\nStacy\nSusan\nTonya\nTracy\nVanessa\nBrooke\nColleen\nDiana\nDiane\nDonna\nJoanna\nKaitlin\nKari\nLori\nMelinda\nNancy\nNatasha\nRebekah\nRenee\nTabitha\nTeresa\nVeronica\nAngel\nAntonia\nAshely\nAutumn\nBarbara\nBeth\nBrianna\nBridget\nCaroline\nElise\nJane\nKara\nKelley\nMeagan\nMonica\nMonique\nMorgan\nNatalie\nRachael\nRandi\nShante\nStefanie\nTia\nAshley\nJessica\nAmanda\nJennifer\nSarah\nHeather\nLauren\nMegan\nStephanie\nAmber\nNicole\nBrittany\nElizabeth\nLaura\nDanielle\nKelly\nMelissa\nRebecca\nMichelle\nSamantha\nTiffany\nChristina\nErin\nKimberly\nJamie\nShannon\nAmy\nKatherine\nRachel\nMary\nErica\nCourtney\nChristine\nKatie\nSara\nKathryn\nKristin\nLindsay\nLindsey\nKathleen\nAndrea\nAngela\nEmily\nCaitlin\nKristen\nLisa\nKristina\nWhitney\nCrystal\nVictoria\nAlexandra\nApril\nMeghan\nCatherine\nDana\nAlicia\nAllison\nAnna\nJulie\nCassandra\nDominique\nJillian\nBrandy\nHolly\nJacqueline\nJenna\nJulia\nLeah\nMargaret\nPamela\nPatricia\nCarolyn\nCasey\nColleen\nDiana\nMolly\nNatasha\nTara\nKaren\nMelanie\nMeredith\nNatalie\nAlison\nAshlee\nClaire\nDawn\nJasmine\nKatelyn\nKrystal\nMallory\nNichole\nSade\nSharon\nStacy\nAnne\nBarbara\nFelicia\nJaclyn\nJoanna\nKara\nLatoya\nMorgan\nTina\nBethany\nBrandi\nBrittney\nChrista\nDeanna\nEbony\nGabrielle\nJordan\nKatrina\nKrista\nLeslie\nMaria\nRenee\nSheena\nSierra\nStacey\nStefanie\nSusan\nAbigail\nAimee\nAlexis\nAngel\nAshleigh\nCandace\nCandice\nDebra\nDenise\nJaime\nKristy\nLori\nMarie\nMia\nMonica\nRachael\nRobin\nSandra\nTracey\nValerie\nVanessa\nAdrienne\nBridget\nBrooke\nCaroline\nCarrie\nChelsea\nDevon\nErika\nGina\nHilary\nKatharine\nKendra\nKerri\nKristie\nKristine\nLeigh\nLinda\nMelinda\nMelody\nTheresa\nJessica\nAshley\nAmanda\nJennifer\nSarah\nLauren\nStephanie\nDanielle\nBrittany\nHeather\nMegan\nElizabeth\nNicole\nChristina\nAmber\nRebecca\nMelissa\nRachel\nSamantha\nErin\nKimberly\nKelly\nLaura\nMary\nTiffany\nAmy\nEmily\nCourtney\nKristin\nLindsay\nKatherine\nSara\nMichelle\nChristine\nKathryn\nLindsey\nAngela\nCrystal\nErica\nWhitney\nAndrea\nCaitlin\nJacqueline\nKatie\nJamie\nShannon\nAlexandra\nAllison\nStacey\nTara\nAlicia\nJenna\nJulia\nLisa\nVictoria\nCasey\nJulie\nKristen\nAlyssa\nAnna\nCatherine\nMonica\nChelsea\nDana\nDenise\nKristina\nLeah\nAlexis\nAlisha\nJordan\nKathleen\nLatoya\nMallory\nAshlee\nBrandy\nCassandra\nGina\nHolly\nJasmine\nKaren\nMeghan\nMorgan\nNatalie\nAdrienne\nBritney\nErika\nFelicia\nJaclyn\nKatrina\nKrista\nTaylor\nVanessa\nAlison\nApril\nBrittney\nCandace\nCaroline\nCarrie\nDiana\nDominique\nJaime\nJillian\nKelsey\nMargaret\nMaria\nMelanie\nMonique\nNatasha\nNichole\nRenee\nSusan\nBrandi\nColleen\nEmma\nKaitlin\nKristine\nLeslie\nMeagan\nMeredith\nPatricia\nRachael\nSierra\nTracy\nAngel\nBeth\nBridget\nCarolyn\nDesiree\nEbony\nElise\nKasey\nKayla\nKelli\nKrystal\nMarie\nRobin\nBrooke\nCarly\nCynthia\nDeborah\nDiane\nHannah\nKaitlyn\nKendra\nKristie\nKristy\nOlivia\nPamela\nSabrina\nStacy\nTamara\nTheresa\nAimee\nAlexa\nAlyse\nDeanna\nGabrielle\nJane\nKatelyn\nMelinda\nMichele\nPaige\nPatrice\nRegina\nRyan\nSheena\nStefanie\nSuzanne\nTabitha\nTammy\nTierra\nValerie\nVeronica\nAshley\nJessica\nAmanda\nBrittany\nSarah\nLauren\nSamantha\nJennifer\nMegan\nStephanie\nAmber\nHeather\nDanielle\nElizabeth\nNicole\nMelissa\nRebecca\nEmily\nChristina\nLaura\nKelly\nKimberly\nRachel\nErica\nTiffany\nKristen\nVictoria\nCaitlin\nKatherine\nMichelle\nSara\nChelsea\nLisa\nCourtney\nCrystal\nAmy\nShannon\nLindsay\nChristine\nJamie\nKatie\nMary\nAlicia\nAngela\nAndrea\nCatherine\nKathryn\nKristin\nTara\nAllison\nKayla\nAlexis\nColleen\nAlyssa\nErin\nKathleen\nLindsey\nJasmine\nAlexandra\nMonica\nWhitney\nJulie\nKelsey\nMargaret\nMeghan\nNatalie\nAnna\nCasey\nDana\nJaclyn\nPatricia\nBrittney\nBrooke\nJacqueline\nJenna\nKaren\nKatelyn\nValerie\nBethany\nJillian\nJulia\nMorgan\nCaroline\nEbony\nHolly\nKasey\nLeah\nMaria\nMelinda\nRobin\nAbigail\nBrianna\nBritney\nCaitlyn\nKaitlyn\nStacey\nSusan\nSydney\nTaylor\nTina\nApril\nBrandy\nCarolyn\nDeanna\nDevon\nGina\nJordan\nKristina\nMarissa\nMelanie\nMeredith\nNatasha\nTiara\nVeronica\nAlison\nAngel\nCassandra\nChrista\nKristi\nMolly\nRuth\nAngelica\nAutumn\nBrandi\nChristy\nCynthia\nDawn\nFelicia\nHeidi\nJaime\nJessie\nJill\nKaitlin\nKelley\nKellie\nKendra\nKrista\nLeslie\nMallory\nMarie\nMonique\nRachael\nTeresa\nTracy\nAlexa\nAudrey\nCandice\nDenise\nDesiree\nDominique\nDorothy\nEmma\nErika\nGrace\nHannah\nHillary\nIndia\nJalisa\nJasmin\nJazmine\nKara\nKarina\nKatlyn\nKatrina\nKristine\nLacey\nLatasha\nLydia\nMartha\nMichele\nNichole\nRose\nShanice\nSierra\nTamara\nTheresa\nToni\nTonya\nVanessa\nAshley\nJessica\nAmanda\nBrittany\nLauren\nSarah\nSamantha\nStephanie\nJennifer\nHeather\nElizabeth\nAmber\nNicole\nEmily\nMegan\nRachel\nLaura\nDanielle\nTiffany\nRebecca\nMelissa\nKatherine\nKelly\nKimberly\nCourtney\nKristen\nErica\nErin\nSara\nChelsea\nCaitlin\nChristina\nMary\nMichelle\nAmy\nJasmine\nShannon\nAlexandra\nBrittney\nMeghan\nTaylor\nVictoria\nCassandra\nKatie\nKathryn\nKelsey\nKristin\nLisa\nMorgan\nAlicia\nAnna\nChristine\nJacqueline\nJulia\nKayla\nKiara\nAlexis\nAlyssa\nAndrea\nLindsay\nTara\nAngela\nBethany\nCrystal\nHannah\nJamie\nJenna\nKaitlyn\nNatalie\nAllison\nCaroline\nCatherine\nKathleen\nLindsey\nErika\nKatelyn\nRenee\nJulie\nMargaret\nWhitney\nJordan\nAlexandria\nCandice\nDana\nGabrielle\nHolly\nKaitlin\nAlexa\nBrooke\nJillian\nLeah\nRachael\nStacey\nAlison\nMaria\nMelanie\nMolly\nMonica\nPaige\nApril\nBrandi\nBrianna\nCaitlyn\nDiana\nKaren\nKirsten\nKristina\nAdrienne\nAutumn\nCandace\nCarolyn\nKrista\nSierra\nUnknown\nCarrie\nColleen\nDawn\nDesiree\nGina\nKatrina\nKendra\nKrystal\nLatoya\nLeslie\nMallory\nMarie\nRebekah\nVeronica\nAnne\nAshlee\nAshly\nBianca\nCarly\nCasey\nDominique\nEbony\nFelicia\nHaley\nJaclyn\nJasmin\nKara\nKari\nKelli\nLydia\nMartha\nNatasha\nPatricia\nRobin\nValerie\nAbigail\nAmelia\nAnastasia\nArielle\nAshton\nBriana\nBrianne\nCarla\nDevon\nEmma\nJacquelyn\nJulianne\nJustine\nKate\nKatlyn\nKristine\nLeigh\nMarissa\nMeredith\nMonique\nNancy\nNichole\nNina\nSandra\nShakira\nShana\nTabitha\nTheresa\nVanessa\nJessica\nBrittany\nAshley\nAmanda\nSamantha\nLauren\nStephanie\nSarah\nAmber\nMegan\nNicole\nRebecca\nCourtney\nElizabeth\nEmily\nChelsea\nDanielle\nRachel\nKelly\nJennifer\nChristina\nHeather\nMichelle\nErin\nMelissa\nChristine\nJasmine\nKatherine\nCaitlin\nErica\nMary\nAlexandra\nVictoria\nAlexis\nAlyssa\nKristen\nLaura\nKimberly\nKelsey\nLindsay\nSara\nAngela\nMorgan\nAmy\nTaylor\nTiffany\nHannah\nAllison\nKathryn\nKayla\nPaige\nShannon\nAnna\nMeghan\nAlicia\nJenna\nKaitlyn\nLindsey\nDana\nKaitlin\nKatelyn\nLisa\nMargaret\nOlivia\nBrooke\nJordan\nKatie\nAbigail\nAndrea\nJillian\nKristin\nWhitney\nBrittney\nCaroline\nCrystal\nJamie\nJulia\nMelanie\nCasey\nCassandra\nNatalie\nCaitlyn\nDeanna\nGabrielle\nKrista\nBethany\nCatherine\nErika\nGina\nJacqueline\nKiara\nRachael\nShelby\nAlison\nArielle\nBianca\nBrandi\nHolly\nJulie\nKathleen\nNichole\nKara\nLeah\nMarissa\nStacey\nBritney\nDesiree\nHilary\nMaria\nMolly\nMonica\nAlisha\nBriana\nDiana\nEmma\nHillary\nSierra\nTabitha\nTara\nValerie\nAdrienne\nAimee\nAngel\nAriel\nBarbara\nBrandy\nBrianna\nCara\nColleen\nDevon\nGabriella\nKaren\nKristina\nPatricia\nRenee\nTheresa\nAlexa\nApril\nCandice\nCarly\nDenise\nDominique\nEllen\nKellie\nKirsten\nKylie\nMelinda\nSandra\nTeresa\nTiara\nVeronica\nAnn\nBridget\nCarolyn\nCecilia\nChelsey\nChelsie\nChristian\nChristin\nDiamond\nGrace\nJaclyn\nJacquelyn\nJoanna\nKatelynn\nKatlyn\nKatrina\nLatifah\nLeigh\nMichele\nMiranda\nNatasha\nPamela\nRebekah\nRegina\nStaci\nTierra\nAshley\nAmanda\nJessica\nBrittany\nSamantha\nMegan\nSarah\nLauren\nEmily\nJennifer\nCourtney\nElizabeth\nAmber\nMelissa\nDanielle\nNicole\nRebecca\nStephanie\nVictoria\nKatherine\nKelsey\nRachel\nChelsea\nAlexis\nHeather\nKelly\nErin\nLaura\nSara\nCaitlin\nMorgan\nTiffany\nTaylor\nAlexandra\nMary\nJasmine\nLindsey\nChristina\nErica\nKayla\nAnna\nKaitlyn\nKatie\nMichelle\nShelby\nJenna\nAndrea\nBrianna\nBrooke\nJulia\nAlyssa\nBrittney\nKristen\nChristine\nKathryn\nMolly\nKimberly\nLindsay\nShannon\nAllison\nAmy\nCasey\nCatherine\nHannah\nJillian\nKatelyn\nAlicia\nJordan\nAlexandria\nPaige\nCaroline\nJacqueline\nJulie\nKristin\nPatricia\nCassandra\nCrystal\nJamie\nKara\nMaria\nAbigail\nAlexa\nGabrielle\nGina\nLeah\nOlivia\nRachael\nAlison\nBethany\nMariah\nMeghan\nMonique\nHaley\nLisa\nCaitlyn\nEmma\nMarissa\nAngela\nAriel\nArielle\nAudrey\nCynthia\nDevon\nHolly\nJaclyn\nKaitlin\nKellie\nMelanie\nTara\nWhitney\nBrandi\nBriana\nCandace\nCarly\nDana\nDestiny\nEllen\nKristina\nMargaret\nMonica\nShaniqua\nApril\nBarbara\nDesiree\nDiana\nErika\nFelicia\nKari\nKathleen\nMiranda\nNatalie\nRenee\nSierra\nStacey\nTiara\nValerie\nAlice\nAlyson\nAmelia\nChloe\nCierra\nColleen\nHayley\nJocelyn\nKatharine\nMadeline\nSandra\nShakiyla\nSydney\nAllyson\nAriana\nAutumn\nBianca\nBreanna\nBridget\nCara\nCarolyn\nCassie\nChelsey\nCorinne\nDawn\nDeborah\nDevin\nDominique\nElisabeth\nEricka\nFaith\nHeidi\nHillary\nIesha\nJoanna\nKasey\nKatlyn\nKatrina\nKiara\nKrystal\nKylie\nLacey\nLatasha\nLeslie\nMaura\nMeredith\nPamela\nParis\nRuth\nSabrina\nStaci\nTiana\nTierra\nVirginia\nJessica\nAshley\nAmanda\nSamantha\nBrittany\nEmily\nSarah\nTaylor\nLauren\nMegan\nChelsea\nDanielle\nElizabeth\nRebecca\nCourtney\nNicole\nRachel\nAmber\nVictoria\nStephanie\nJennifer\nAlexis\nKelsey\nMorgan\nAlexandra\nKelly\nAlyssa\nHeather\nKatherine\nMichelle\nSara\nKayla\nChristine\nAndrea\nBrooke\nCaitlin\nMelissa\nChristina\nErica\nErin\nKathryn\nKaitlyn\nKatelyn\nShannon\nShelby\nKatie\nAllison\nJasmine\nJulia\nLaura\nAnna\nGabrielle\nHannah\nKristen\nMary\nTiffany\nKimberly\nCasey\nLindsay\nMaria\nMeghan\nCassandra\nLisa\nMolly\nAngela\nBrianna\nJamie\nJulie\nKristin\nAmy\nCatherine\nDana\nJordan\nPaige\nHaley\nJenna\nJillian\nKaitlin\nMariah\nMiranda\nNatalie\nOlivia\nAlicia\nAutumn\nBrittney\nCrystal\nKristina\nVeronica\nAlexa\nAriel\nMargaret\nTara\nCaroline\nCynthia\nJacqueline\nLeah\nLindsey\nRachael\nAbigail\nAsia\nBrianne\nCarly\nHillary\nKara\nKasey\nKathleen\nMeredith\nPatricia\nShanice\nApril\nBrandi\nCiara\nEmma\nHolly\nJaclyn\nKiara\nKirsten\nMonique\nNatasha\nPamela\nAudrey\nBriana\nCarolyn\nColleen\nDevon\nDominique\nGina\nGrace\nHilary\nMelanie\nMercedes\nMonica\nSusan\nSydney\nSylvia\nTayler\nWhitney\nAlexandria\nAngelica\nAnn\nBria\nCaitlyn\nCierra\nEllen\nJanae\nJoanna\nJodi\nKelley\nKelsie\nKrista\nLeslie\nMallory\nNina\nSavannah\nSierra\nTamara\nTyler\nAbby\nAlexia\nAlison\nAngel\nAngelina\nAnne\nBethany\nBrenda\nBridget\nCassie\nCayla\nChelsey\nClaire\nDevin\nDiana\nElise\nErika\nJade\nJane\nJill\nJocelyn\nKari\nKatlyn\nKelli\nKrystal\nLucy\nLydia\nMackenzie\nMara\nMarissa\nRenee\nShayla\nSimone\nTanisha\nTheresa\nTiana\nUnknown\nValerie\nJessica\nAshley\nEmily\nBrittany\nLauren\nAmanda\nTaylor\nSamantha\nSarah\nRachel\nElizabeth\nMorgan\nCourtney\nRebecca\nDanielle\nAmber\nAlyssa\nJennifer\nAlexis\nMegan\nVictoria\nKelsey\nErin\nStephanie\nJasmine\nNicole\nHeather\nChelsea\nMelissa\nAlexandra\nKatherine\nShannon\nKelly\nPaige\nMary\nTiffany\nKimberly\nBrooke\nSara\nHannah\nKayla\nLindsay\nLindsey\nOlivia\nCaitlin\nErica\nKatelyn\nMeghan\nAllison\nBrianna\nChristina\nAbigail\nCasey\nGabrielle\nHaley\nJenna\nJulia\nKaitlyn\nKathryn\nLaura\nKristen\nMichelle\nShelby\nAmy\nAndrea\nKatie\nChristine\nMarissa\nAlicia\nAnna\nJulie\nAlexandria\nCaitlyn\nCaroline\nCatherine\nLeah\nMargaret\nRachael\nAngela\nMelanie\nNatalie\nRebekah\nBriana\nErika\nKathleen\nMaria\nMolly\nAriel\nBethany\nBrandi\nCassandra\nJordan\nKristin\nLisa\nLydia\nMadeline\nVeronica\nAlexa\nCarolyn\nColleen\nJamie\nKristina\nMichele\nMiranda\nTara\nApril\nBreanna\nBridget\nBrittney\nDevon\nDominique\nEllen\nEmma\nGina\nGrace\nHailey\nJacqueline\nKaitlin\nMackenzie\nMariah\nAsia\nClaire\nDestiny\nHolly\nKatelynn\nKirsten\nLacey\nMeredith\nSierra\nAlissa\nAngelica\nAutumn\nBria\nCarly\nChloe\nCrystal\nCynthia\nDesiree\nDiana\nJazmine\nJillian\nKara\nKiara\nMallory\nRaven\nSade\nShawna\nTiana\nUnknown\nValerie\nWhitney\nAriana\nAshlee\nAudrey\nBrittani\nCamille\nCassidy\nCharlotte\nCheyenne\nDana\nJoanna\nKate\nKyra\nLogan\nMadison\nMonica\nNatasha\nPatricia\nRegina\nRenee\nSabrina\nSandra\nSavannah\nSydney\nJessica\nAshley\nSarah\nTaylor\nAmanda\nEmily\nSamantha\nMegan\nLauren\nAlexis\nVictoria\nRachel\nBrittany\nAmber\nRebecca\nMorgan\nCourtney\nJennifer\nKayla\nNicole\nDanielle\nStephanie\nErin\nMary\nElizabeth\nKelsey\nAlexandra\nBrianna\nKaitlyn\nChelsea\nKatherine\nMelissa\nShannon\nHannah\nAbigail\nHeather\nAllison\nAlyssa\nChristina\nLaura\nPaige\nJordan\nBriana\nBrooke\nJulia\nKatelyn\nKathryn\nMichelle\nSara\nAnna\nJenna\nKelly\nCaitlin\nHaley\nOlivia\nAndrea\nCatherine\nKimberly\nMeghan\nAmy\nBethany\nEmma\nErica\nKatie\nKristen\nLindsay\nMargaret\nMelanie\nMiranda\nShelby\nJacqueline\nJasmine\nAlicia\nAngela\nBrandi\nNatalie\nUnknown\nCaroline\nCassandra\nGabrielle\nLeah\nLindsey\nMaria\nSydney\nAlexa\nBrittney\nCaitlyn\nCasey\nKaitlin\nMadeline\nMadison\nMarissa\nMolly\nRenee\nTiffany\nChristine\nClaire\nDominique\nJamie\nJocelyn\nKhadijah\nMackenzie\nSavannah\nAaliyah\nCarly\nCarolyn\nGina\nGrace\nHolly\nKathleen\nKristin\nMariah\nSierra\nWhitney\nAjee\nAnne\nAutumn\nBridget\nCheyenne\nCrystal\nJillian\nMeredith\nMichaela\nMonica\nRebekah\nAlexandria\nAlison\nAmelia\nChloe\nCiara\nDana\nDestiny\nFelicia\nHailey\nLisa\nMarisa\nRachael\nRaven\nTori\nBritney\nColleen\nCynthia\nDeanna\nDiana\nErika\nJade\nJanae\nJasmin\nJenny\nJulie\nLeslie\nMonique\nPatricia\nTara\nAllyson\nBarbara\nBria\nCassie\nCiera\nGabriella\nHayley\nJaclyn\nJacquelyn\nKaitlynn\nKasey\nKellie\nKiara\nKristina\nLydia\nMallory\nNichole\nSummer\nTabitha\nTiana\nTiara\nTierra\nVanessa\nVirginia\nSarah\nEmily\nJessica\nAlexis\nAshley\nSamantha\nTaylor\nAmanda\nVictoria\nMegan\nRachel\nLauren\nMorgan\nCourtney\nElizabeth\nBrittany\nKayla\nAlexandra\nDanielle\nHannah\nRebecca\nAlyssa\nBrianna\nKatherine\nKelsey\nNicole\nStephanie\nHeather\nAnna\nGabrielle\nAmber\nHaley\nKaitlyn\nAllison\nBrooke\nMadison\nChristina\nErin\nJulia\nKelly\nJordan\nKimberly\nPaige\nOlivia\nJenna\nKathryn\nMary\nShannon\nAlexa\nAmy\nLaura\nAbigail\nKristen\nJennifer\nMelissa\nJacqueline\nMackenzie\nMichelle\nNatalie\nShelby\nSydney\nDestiny\nMadeline\nSara\nCaitlin\nKatelyn\nBriana\nJasmine\nKatie\nMargaret\nRachael\nChelsea\nDeja\nLindsay\nLindsey\nAndrea\nEmma\nMaria\nMariah\nMarissa\nMolly\nAlexandria\nBrittney\nCatherine\nChristine\nKristina\nLisa\nMiranda\nSierra\nTiffany\nAlicia\nBreanna\nCasey\nErica\nKristin\nMarisa\nMichaela\nRaven\nSabrina\nCaroline\nCassandra\nClaire\nColleen\nJamie\nKaitlin\nKathleen\nMelanie\nUnknown\nAliyah\nAubrey\nCassidy\nDana\nDesiree\nFelicia\nHailey\nKrista\nLeah\nMeghan\nValerie\nAmelia\nAnne\nAsia\nAutumn\nBrandi\nBria\nCaitlyn\nCarolyn\nCynthia\nJaclyn\nKara\nKylie\nLogan\nSavannah\nSelena\nSummer\nTierra\nTori\nVeronica\nAja\nAllyson\nAngela\nAngelica\nBethany\nCarly\nCarrie\nCiara\nJada\nJillian\nKatelynn\nKatlyn\nMckenzie\nMonica\nNatasha\nRebekah\nRenee\nSophia\nSophie\nTara\nWhitney\nAlyson\nAshlee\nBridget\nBriona\nCrystal\nDevon\nDiamond\nDianna\nEliza\nEssence\nGrace\nHayley\nIsabella\nJasmin\nJocelyn\nJulianne\nKhadijah\nKira\nKirsten\nMarina\nMelody\nMonique\nRosa\nRose\nSandra\nTabitha\nTia\nTiara\nZoe\nEmily\nTaylor\nSarah\nSamantha\nJessica\nRachel\nAshley\nAlexis\nMegan\nElizabeth\nLauren\nAmanda\nBrittany\nHannah\nKayla\nBrianna\nMadison\nMorgan\nCourtney\nErin\nRebecca\nGabrielle\nJennifer\nAlyssa\nAlexandra\nAbigail\nHaley\nNicole\nVictoria\nAmber\nAnna\nBrooke\nJasmine\nKelsey\nChelsea\nDanielle\nStephanie\nKatelyn\nSydney\nCaroline\nJenna\nMelissa\nShelby\nJulia\nKathryn\nAllison\nCasey\nKatherine\nSabrina\nShannon\nChristina\nEmma\nBriana\nCaitlin\nCatherine\nJacqueline\nJordan\nKaitlyn\nKimberly\nMadeline\nOlivia\nPaige\nAlexandria\nMary\nHeather\nMaria\nMiranda\nSara\nAlison\nBreanna\nClaire\nDeja\nDestiny\nKelly\nKristen\nLaura\nMackenzie\nMargaret\nMolly\nNatalie\nAlicia\nAngela\nCassidy\nJamie\nKathleen\nKatie\nMarissa\nAlexa\nAndrea\nCaitlyn\nDevon\nGrace\nKylie\nSierra\nAmy\nBrittney\nCarly\nHailey\nMeghan\nMonica\nErica\nHolly\nKaitlin\nKristin\nLeah\nLogan\nMariah\nRachael\nRebekah\nTiffany\nBethany\nCassandra\nJulianna\nKara\nLindsey\nLydia\nMichelle\nPeyton\nSavannah\nTeresa\nAngelica\nDominique\nLindsay\nTiara\nZoe\nDana\nErika\nFaith\nJada\nJulie\nKirsten\nMelanie\nMikayla\nTierra\nVeronica\nAlexus\nAutumn\nAyanna\nBrandi\nBridget\nChloe\nChristine\nCierra\nClaudia\nColleen\nCynthia\nDiana\nHanna\nHayley\nJade\nJillian\nJoanna\nKaylee\nKira\nLisa\nMakayla\nMichaela\nPatricia\nSelena\nTabitha\nTiana\nValerie\nAaliyah\nAdriana\nAlexia\nAliyah\nAngel\nAudrey\nCarolyn\nCheyenne\nCiara\nCorinne\nDevin\nGabriella\nImani\nIsabella\nIvy\nJaclyn\nJasmin\nJill\nJocelyn\nKatelynn\nKennedy\nKiana\nKristina\nMadeleine\nMakenzie\nMarisa\nMeredith\nQuinn\nRegan\nRegina\nRenee\nRiley\nRose\nSophia\nSophie\nSusan\nVanessa\nVirginia\nEmily\nSarah\nTaylor\nAlexis\nJessica\nSamantha\nLauren\nRachel\nHannah\nBrianna\nAshley\nMorgan\nRebecca\nElizabeth\nAlyssa\nBrittany\nKayla\nVictoria\nAlexandra\nCourtney\nJasmine\nJennifer\nJulia\nMegan\nMadison\nAbigail\nAmanda\nEmma\nKatherine\nAmber\nGabrielle\nOlivia\nPaige\nJordan\nDanielle\nNicole\nHaley\nJenna\nKaitlyn\nNatalie\nShannon\nBrooke\nErin\nMary\nSydney\nAllison\nCaroline\nKelly\nMadeline\nAnna\nCheyenne\nChristina\nDestiny\nKristen\nLaura\nSara\nStephanie\nAngela\nKelsey\nSabrina\nBriana\nCaitlin\nMargaret\nMiranda\nAlexa\nJacqueline\nLindsay\nMackenzie\nMaria\nShelby\nAmy\nCatherine\nKatelyn\nKathryn\nMeghan\nMikayla\nAutumn\nChelsea\nJillian\nJulie\nMelissa\nMonica\nDominique\nErica\nKatie\nKimberly\nKylie\nMarissa\nMolly\nSavannah\nSierra\nBryanna\nCaitlyn\nCasey\nCassandra\nJulianna\nKaitlin\nLeah\nLindsey\nMichelle\nAlicia\nAriel\nCarly\nClaire\nDevon\nHailey\nJada\nKathleen\nMariah\nSophia\nAdrianna\nAlexandria\nAlexus\nChristine\nElise\nGabriella\nGrace\nHeather\nJamie\nLydia\nAaliyah\nAndrea\nBridget\nCarolyn\nCassidy\nCharlotte\nColleen\nHayley\nHolly\nKendra\nKiana\nMichaela\nSkylar\nTiffany\nAsia\nBethany\nBrenda\nCierra\nDelaney\nErika\nJocelyn\nKara\nRebekah\nTatiana\nTiana\nTiara\nVanessa\nVeronica\nZoe\nAlison\nAngel\nAngelina\nAriana\nArianna\nBianca\nCameron\nCassie\nDesiree\nDestinee\nDiana\nElisabeth\nEllie\nFaith\nGenesis\nGina\nJordyn\nKaila\nKiara\nLinda\nMallory\nMelanie\nMeredith\nPeyton\nSkyler\nSummer\nEmily\nTaylor\nMadison\nSamantha\nSarah\nAlexis\nHannah\nJessica\nKayla\nAshley\nOlivia\nElizabeth\nMorgan\nMegan\nAmanda\nVictoria\nJulia\nLauren\nRachel\nAbigail\nBrianna\nRebecca\nJasmine\nAlyssa\nBrittany\nKatherine\nErin\nBrooke\nEmma\nCourtney\nKaitlyn\nMary\nNicole\nAlexandra\nGabrielle\nDanielle\nAmber\nJenna\nKelsey\nSophia\nJennifer\nJordan\nMadeline\nStephanie\nCaroline\nShelby\nSierra\nSydney\nChristina\nDestiny\nShannon\nGrace\nMarissa\nSavannah\nCarly\nHailey\nAnna\nAutumn\nMackenzie\nBreanna\nBriana\nCaitlin\nKatelyn\nKimberly\nMaria\nAlexa\nCatherine\nChloe\nHaley\nKathryn\nLaura\nMiranda\nPaige\nSara\nAndrea\nAngela\nCasey\nDiamond\nKaitlin\nMelissa\nMolly\nNatalie\nAllison\nJamie\nKatie\nKaylee\nLogan\nMeghan\nMichelle\nAmy\nCierra\nErica\nHayley\nKylie\nLindsey\nMargaret\nMariah\nTiffany\nCassandra\nHeather\nIsabella\nJacqueline\nJada\nJillian\nKelly\nKristen\nMichaela\nSabrina\nAngel\nBrittney\nChelsea\nDeja\nJazmine\nKathleen\nLeah\nMadelyn\nMaya\nMelanie\nSelena\nAlicia\nBridget\nCheyenne\nClaire\nDelaney\nDiana\nGabriella\nImani\nLindsay\nMakayla\nMikayla\nMonica\nSummer\nAlexus\nAlison\nBethany\nCassidy\nDominique\nHope\nJade\nKristina\nMckayla\nNaomi\nRebekah\nRiley\nSkylar\nTiana\nTiara\nTori\nZoe\nAaliyah\nAlexandria\nAngelica\nAriana\nAubrey\nBianca\nCaitlyn\nCameron\nChristine\nCiara\nCrystal\nErika\nJasmin\nJocelyn\nKira\nKylee\nLily\nRachael\nShania\nSiani\nTamia\nTara\nAdrianna\nAlejandra\nAlissa\nArianna\nAudrey\nBarbara\nCarolyn\nCharlotte\nFaith\nFelicia\nGianna\nGina\nHanna\nHarley\nHolly\nJordyn\nJulianna\nKatelynn\nKatlyn\nKiara\nKristin\nLisa\nLydia\nMonique\nNia\nPayton\nSasha\nTatiana\nTheresa\nEmily\nAlexis\nSarah\nMadison\nTaylor\nKayla\nElizabeth\nSamantha\nJessica\nHannah\nAshley\nMegan\nAbigail\nLauren\nRachel\nJulia\nDestiny\nAmanda\nOlivia\nBrianna\nEmma\nVictoria\nAlexandra\nMorgan\nDanielle\nJennifer\nNicole\nAlyssa\nGrace\nNatalie\nSara\nAnna\nBrooke\nHaley\nSydney\nAllison\nBrittany\nRebecca\nGabrielle\nErin\nKaitlyn\nAutumn\nJasmine\nKathryn\nSierra\nSophia\nLindsay\nPaige\nSavannah\nAmber\nCaroline\nRachael\nJade\nCourtney\nHeather\nKatherine\nMadeline\nSkylar\nCassidy\nJenna\nJordan\nJulianna\nMargaret\nShelby\nCheyenne\nKatelyn\nMeghan\nMelissa\nBreanna\nCaitlin\nLindsey\nMakayla\nMarissa\nMia\nMolly\nCamryn\nClaire\nDiana\nFaith\nHailey\nJillian\nKelsey\nMackenzie\nMichelle\nMya\nTiffany\nZoe\nBriana\nKelly\nKristen\nKylie\nMaria\nMary\nSabrina\nAmy\nAngela\nBryanna\nGillian\nKaitlin\nKatie\nKiara\nLogan\nMadelyn\nStephanie\nSummer\nAlexa\nAlison\nAndrea\nCaitlyn\nChloe\nChristina\nIsabella\nJada\nKathleen\nKaylee\nKimberly\nLillian\nMariah\nShannon\nAngel\nAriana\nAudrey\nBailey\nBethany\nCassandra\nCatherine\nChelsea\nCierra\nDesiree\nErica\nGabriella\nImani\nJordyn\nLeah\nLydia\nRiley\nAlexandria\nAlicia\nAllyson\nCarly\nDelaney\nFrancesca\nIsabel\nJacqueline\nJamie\nJulie\nKirsten\nKyra\nLaura\nMaya\nMckenna\nMelanie\nMiranda\nSophie\nAliyah\nAnne\nCameron\nDominique\nGeorgia\nHope\nKara\nKira\nLily\nMckenzie\nMichaela\nNina\nPeyton\nRenee\nSelena\nShania\nTamia\nAaliyah\nAmelia\nAniyah\nAshlyn\nAsia\nBianca\nBridget\nBritney\nBrooklyn\nCarolyn\nCiara\nDana\nDeanna\nDevin\nDiamond\nEsther\nGianna\nHanna\nHayley\nIsabelle\nJasmin\nJocelyn\nJuliana\nKaren\nKristin\nLauryn\nLisa\nMikaela\nTrinity\nEmily\nSarah\nKayla\nMadison\nAlexis\nLauren\nHannah\nTaylor\nMorgan\nJessica\nSamantha\nBrianna\nElizabeth\nAshley\nMegan\nAbigail\nOlivia\nGrace\nEmma\nRebecca\nAnna\nDestiny\nMackenzie\nSydney\nVictoria\nAlyssa\nErin\nHaley\nRachel\nKaitlyn\nJasmine\nAmanda\nJulia\nHailey\nJennifer\nMary\nSophia\nAlexandra\nDanielle\nKatherine\nGabrielle\nJada\nJenna\nNicole\nCourtney\nCaitlin\nCarly\nCaroline\nSara\nBrittany\nBrooke\nKatelyn\nMadeline\nPaige\nCassidy\nChristina\nKathryn\nMolly\nTiffany\nJordan\nKaylee\nMaya\nSabrina\nSavannah\nStephanie\nAllison\nAmber\nArianna\nCaitlyn\nErica\nIsabella\nJade\nLaura\nMaria\nNatalie\nShelby\nAlexa\nAutumn\nBriana\nCatherine\nGabriella\nMelissa\nSierra\nAdrianna\nAlexandria\nAmy\nAngela\nChloe\nDiamond\nFaith\nKatie\nKelly\nKelsey\nKimberly\nLindsey\nMikayla\nRiley\nSkylar\nAlicia\nAngelina\nAriana\nCameron\nHayley\nJillian\nJordyn\nLily\nMargaret\nMichelle\nShannon\nAshlyn\nAudrey\nAva\nBreanna\nBritney\nCamryn\nClaire\nColleen\nDakota\nHeather\nIsabel\nJacqueline\nKelsie\nKristen\nKyla\nKylie\nLillian\nMadelyn\nMakayla\nTara\nTori\nAmaya\nAndrea\nBrittney\nCasey\nCierra\nCrystal\nDelaney\nEllen\nHolly\nImani\nJuliana\nJulianna\nKara\nKirsten\nKylee\nKyra\nLeah\nMakenzie\nMarissa\nMeghan\nSummer\nTatiana\nAmelia\nBethany\nCarolyn\nCassandra\nCheyenne\nDominique\nElise\nGuadalupe\nJocelyn\nKathleen\nMariah\nMckenna\nMiranda\nShania\nSophie\nTrinity\nVanessa\nAdriana\nAlexia\nAlondra\nAna\nAriel\nAshlee\nAvery\nAyanna\nBrionna\nCassie\nErika\nGenevieve\nIsabelle\nJamie\nJazmine\nJulie\nKaila\nKatelynn\nKatrina\nKendra\nLisa\nLogan\nLydia\nMallory\nMeredith\nRachael\nRaven\nReagan\nRenee\nSelena\nShaniyah\nSkyler\nTiana\nTiara\nVeronica\nMadison\nEmily\nAlexis\nHannah\nAbigail\nOlivia\nSarah\nSamantha\nTaylor\nKayla\nEmma\nAlyssa\nAshley\nGrace\nJulia\nLauren\nJessica\nBrianna\nElizabeth\nMorgan\nMegan\nMackenzie\nAmanda\nHaley\nKatherine\nRachel\nVictoria\nDestiny\nSydney\nIsabella\nSavannah\nMary\nAlexandra\nHailey\nJordan\nJasmine\nAmber\nAnna\nErin\nRebecca\nSophia\nAllison\nGabrielle\nMadelyn\nNicole\nPaige\nSara\nStephanie\nCourtney\nKaitlyn\nKatelyn\nMakayla\nBreanna\nJennifer\nCaroline\nDanielle\nJacqueline\nMikayla\nBrooke\nChloe\nKathryn\nMadeline\nNatalie\nImani\nJada\nJillian\nTrinity\nAlexa\nCassidy\nKelly\nKylie\nLeah\nSierra\nJade\nKatie\nKelsey\nMolly\nZoe\nAaliyah\nArianna\nAvery\nFaith\nJulianna\nLillian\nLily\nMarissa\nMeghan\nAlexandria\nAutumn\nBethany\nChristina\nHayley\nIsabelle\nMelissa\nCheyenne\nClaire\nErica\nKaylee\nLaura\nMaya\nMichelle\nAdriana\nAudrey\nBrittany\nCaitlyn\nCarly\nCatherine\nJenna\nJuliana\nLogan\nMaria\nMercedes\nMiranda\nShelby\nAliyah\nAndrea\nAngel\nAngelina\nAniya\nAriana\nAva\nBianca\nBriana\nCamille\nDestinee\nDominique\nElise\nEvelyn\nHeather\nJocelyn\nJordyn\nKamryn\nKiara\nKimberly\nKirsten\nMckenzie\nTara\nAlivia\nAllyson\nAmaya\nAngela\nAngelica\nBailey\nCaitlin\nCameron\nCamryn\nCasey\nCassandra\nCharlotte\nCierra\nDelaney\nDiana\nHolly\nIsabel\nJulie\nKayleigh\nKyla\nLeslie\nLydia\nMargaret\nMariah\nMia\nNadia\nRaven\nRegan\nSabrina\nSadie\nSelena\nShania\nSkylar\nSofia\nSophie\nSummer\nTiffany\nVeronica\nWendy\nAdrianna\nAlicia\nAlissa\nAlyson\nAna\nAyanna\nBridget\nBryanna\nBrynn\nChelsea\nCheyanne\nChristine\nClaudia\nDeja\nDesiree\nDiamond\nGabriella\nGianna\nGracie\nGuadalupe\nJamie\nJayla\nKaitlin\nKara\nKaren\nKira\nKristin\nKristina\nMelanie\nMeredith\nMya\nNaomi\nPayton\nPeyton\nReagan\nRebekah\nRiley\nRose\nTiana\nTiara\nVanessa\nZaria\nEmily\nMadison\nHannah\nOlivia\nAlexis\nSarah\nKayla\nAshley\nElizabeth\nRachel\nSamantha\nAbigail\nEmma\nIsabella\nAnna\nJessica\nAlyssa\nBrianna\nHaley\nTaylor\nGrace\nLauren\nMorgan\nVictoria\nJulia\nMegan\nJordan\nSydney\nDestiny\nPaige\nAlexandra\nAutumn\nAmanda\nSophia\nChloe\nJennifer\nJenna\nNatalie\nBrooke\nErin\nGabriella\nKatherine\nMackenzie\nRiley\nDanielle\nKaitlyn\nMia\nSavannah\nAllison\nCaroline\nHailey\nMary\nStephanie\nGabrielle\nJasmine\nMakayla\nAlexandria\nAva\nJade\nSara\nSierra\nAaliyah\nKelly\nZoe\nFaith\nMadeline\nMargaret\nRebecca\nSkylar\nBriana\nJada\nJillian\nJulianna\nKatelyn\nNicole\nAlexa\nArianna\nLeah\nMaya\nAngel\nAngelina\nAriana\nChristina\nCourtney\nKylie\nShannon\nAndrea\nCaitlin\nClaire\nJacqueline\nKaylee\nLeslie\nMichelle\nShelby\nTrinity\nAmber\nCassidy\nDelaney\nIsabel\nJuliana\nKathryn\nMaria\nMckenzie\nMeghan\nAmelia\nAmy\nAniyah\nAshlyn\nBreanna\nCatherine\nCharlotte\nClaudia\nHope\nJayla\nJordyn\nKaren\nKelsey\nKimberly\nKirsten\nLillian\nMarissa\nMelanie\nMikayla\nMolly\nNevaeh\nPatricia\nSummer\nAlexia\nAliyah\nAubrey\nBailey\nBethany\nDaisy\nKate\nKylee\nKyra\nLogan\nLydia\nMadelyn\nMelissa\nMiranda\nMya\nRose\nSkyler\nSophie\nTiffany\nVanessa\nAdriana\nAdrianna\nAlexus\nAnastasia\nAnya\nAudrey\nBrittany\nBrittney\nBryanna\nCarly\nCassandra\nCierra\nCrystal\nDeanna\nDeja\nElla\nEvelyn\nGenevieve\nHayley\nImani\nJazmine\nJocelyn\nJulie\nKara\nLily\nNadia\nAlicia\nAllyson\nAlondra\nAshleigh\nAsia\nBianca\nCaitlyn\nCameron\nCarissa\nCasey\nCecilia\nCheyenne\nClara\nColleen\nDaniela\nDiamond\nDiana\nElisabeth\nGabriela\nGina\nHanna\nHeather\nJaden\nJamie\nJaniyah\nJasmin\nJazmin\nKaitlin\nKatie\nKira\nKristen\nKristin\nKyla\nKyleigh\nLaura\nLindsey\nLizbeth\nMallory\nMarie\nMarisa\nNina\nNoelle\nRachael\nReagan\nRosa\nSavanna\nTalia\nTania\nTara\nTatiana\nValerie\nWendy\nEmily\nMadison\nEmma\nHannah\nAbigail\nOlivia\nSarah\nKayla\nAlexis\nGrace\nIsabella\nSamantha\nElizabeth\nSophia\nRachel\nTaylor\nBrianna\nAlyssa\nMorgan\nSydney\nAshley\nJessica\nMegan\nNatalie\nVictoria\nHailey\nJulia\nJasmine\nMia\nKaitlyn\nGabrielle\nHaley\nKatelyn\nLauren\nLily\nZoe\nKylie\nMadeline\nPaige\nDestiny\nErin\nJennifer\nAlexandra\nJordan\nSavannah\nAmanda\nAnna\nAngel\nAngelina\nAva\nBrooke\nKatherine\nLeah\nMackenzie\nNicole\nRebecca\nTrinity\nAlexa\nJuliana\nMakayla\nChloe\nJada\nRiley\nCaroline\nJillian\nMaria\nMarissa\nAllison\nAutumn\nCheyenne\nCourtney\nDanielle\nGabriella\nGianna\nJenna\nMargaret\nMary\nSierra\nAaliyah\nClaire\nMeghan\nSara\nShelby\nAndrea\nAriana\nFaith\nJulianna\nKelly\nKylee\nMadelyn\nStephanie\nArianna\nElla\nJacqueline\nKathryn\nKimberly\nLillian\nMaya\nMiranda\nMolly\nVanessa\nAlexandria\nAmelia\nAvery\nCaitlin\nCaitlyn\nCassidy\nChristina\nDelaney\nJocelyn\nKatie\nMelissa\nSabrina\nAlondra\nAubrey\nCatherine\nKaylee\nKelsey\nLaura\nShannon\nSkylar\nAniya\nAniyah\nAudrey\nCarly\nCharlotte\nErica\nErika\nGuadalupe\nIsabel\nJayla\nJazmin\nLindsey\nNevaeh\nSophie\nTatiana\nAdriana\nBreanna\nBriana\nBrittany\nBrynn\nChelsea\nElena\nHope\nJaden\nKaren\nKiara\nKyleigh\nLayla\nLogan\nMakenzie\nMichelle\nMikayla\nMya\nZoey\nAbby\nAmaya\nAmber\nAngela\nBrenna\nBridget\nCamryn\nDiamond\nFelicia\nGabriela\nGracie\nHanna\nJade\nJordyn\nKyla\nMariana\nRenee\nRuth\nSerenity\nTori\nWendy\nAdrianna\nAlana\nAlison\nAmari\nAnya\nApril\nAriel\nBianca\nCamille\nCasey\nCecilia\nDakota\nDaniela\nEmani\nEvelyn\nHailie\nImani\nJasmin\nJazmine\nJulianne\nJulie\nKarina\nKasey\nKatlyn\nKendall\nKennedy\nKiley\nKrista\nKristen\nKristina\nMaura\nMelanie\nMichaela\nNia\nNina\nNoelle\nParis\nPatricia\nPayton\nReagan\nReese\nSadie\nSofia\nTara\nTiffany\nMadison\nOlivia\nEmily\nAlexis\nElizabeth\nEmma\nSamantha\nHannah\nGrace\nSarah\nAshley\nIsabella\nAbigail\nAlyssa\nKayla\nBrianna\nVictoria\nSophia\nTaylor\nAnna\nAva\nMorgan\nNatalie\nSydney\nJessica\nJulia\nAlexandra\nHailey\nKylie\nLauren\nPaige\nRachel\nBrooke\nKaitlyn\nMaria\nChloe\nGabrielle\nJenna\nLily\nZoe\nAngelina\nErin\nKatherine\nAllison\nElla\nMegan\nMia\nMolly\nAmanda\nGianna\nHaley\nJada\nMackenzie\nSavannah\nDestiny\nGabriella\nJasmine\nSierra\nSofia\nArianna\nKimberly\nLeah\nLydia\nMichelle\nRiley\nCaroline\nCheyenne\nFaith\nJennifer\nLillian\nMadeline\nMargaret\nAmber\nAniyah\nChristina\nJacqueline\nKaylee\nMary\nMya\nAdriana\nBriana\nJocelyn\nMarissa\nNevaeh\nTrinity\nAmy\nCaitlin\nCassidy\nCourtney\nJordan\nKate\nKatelyn\nMariah\nMeghan\nPeyton\nRebecca\nAdrianna\nAlexa\nAutumn\nEllie\nJuliana\nKelly\nMakayla\nMaya\nNatalia\nSadie\nAaliyah\nAlana\nAlexia\nAlicia\nAmelia\nAnastasia\nAriana\nCadence\nCharlotte\nDanielle\nDelaney\nImani\nIsabel\nIsabelle\nJillian\nNicole\nRylee\nSabrina\nSara\nShelby\nStephanie\nTiffany\nAmaya\nBrooklyn\nCatherine\nEvelyn\nHeaven\nJazmin\nKyla\nMadelyn\nMikayla\nNaomi\nAbby\nAliyah\nAllyson\nAna\nAngel\nAshlyn\nAsia\nBella\nBethany\nCaitlyn\nClaire\nDiamond\nGabriela\nJamie\nKaren\nKathryn\nKennedy\nKiara\nLaura\nMaggie\nMichaela\nMiranda\nNadia\nReagan\nTabitha\nVeronica\nAlexandria\nAndrea\nAngela\nAnnika\nAshlee\nAudrey\nAyanna\nBrittany\nCameron\nCarly\nDulce\nElise\nErica\nErika\nJulie\nKatie\nKylee\nLaila\nLindsay\nLindsey\nLogan\nMakenzie\nNyla\nTamia\nYasmin\nAlayna\nAlison\nAmani\nAniya\nAnya\nBailey\nBreanna\nBridget\nCarissa\nCarmen\nChelsea\nCierra\nDakota\nDaniela\nDiana\nElena\nFrancesca\nJaelyn\nJaniya\nJayda\nJazmine\nJoanna\nJordyn\nKendall\nLauryn\nLayla\nMckenna\nMelanie\nMelissa\nNyasia\nPiper\nSkylar\nTamara\nTara\nTiana\nTiara\nMadison\nEmily\nSarah\nEmma\nAbigail\nAlexis\nSamantha\nOlivia\nAva\nNatalie\nElizabeth\nHannah\nMorgan\nGrace\nBrianna\nIsabella\nAlyssa\nAshley\nAnna\nKayla\nTaylor\nJulia\nSophia\nBrooke\nLauren\nMia\nLily\nRachel\nSavannah\nMackenzie\nVictoria\nPaige\nMadeline\nSydney\nChloe\nJordan\nKaitlyn\nMakayla\nAlexandra\nAriana\nDestiny\nGabrielle\nJessica\nArianna\nHailey\nAlexa\nAmelia\nCatherine\nRiley\nElla\nJasmine\nJennifer\nKylie\nMegan\nAmanda\nCaroline\nGabriella\nDanielle\nMolly\nNevaeh\nRebecca\nTrinity\nAllison\nAvery\nErin\nEvelyn\nJenna\nKatelyn\nMariah\nSara\nAaliyah\nAniyah\nCheyenne\nIsabelle\nJillian\nKendall\nSkylar\nZoe\nAdriana\nAlaina\nAngelina\nAudrey\nGianna\nJada\nJulianna\nKatherine\nLillian\nMaria\nMaya\nMelissa\nPeyton\nCassidy\nFaith\nJuliana\nKathryn\nKelsey\nLeah\nSierra\nVanessa\nAna\nGabriela\nHaley\nJade\nMarissa\nSofia\nStephanie\nAdrianna\nMadelyn\nMargaret\nMichelle\nYasmin\nAliyah\nAlondra\nAniya\nBianca\nCharlotte\nElise\nJordyn\nKaylee\nKylee\nKyleigh\nLiliana\nMary\nMya\nNicole\nRylee\nSerenity\nAlexandria\nAndrea\nAngela\nBridget\nCaitlin\nCaitlyn\nCarly\nCiara\nDelaney\nJayla\nJoanna\nKaren\nKate\nKayleigh\nKeira\nKyla\nLaila\nLaura\nLydia\nMariana\nMckenzie\nMikayla\nMiranda\nNaomi\nRylie\nAlana\nAlayna\nAlexia\nAmber\nAmy\nAubrey\nAutumn\nBella\nCamila\nCamryn\nCara\nChelsea\nChristina\nChristine\nClaire\nCrystal\nDiana\nEllie\nGiselle\nHeaven\nHope\nJaniyah\nJayden\nJazmin\nJocelyn\nJuliet\nJulissa\nKarina\nKatie\nKatrina\nKimora\nLayla\nMallory\nMeghan\nMelanie\nMiracle\nNoelle\nReese\nSaniah\nSelena\nTiffany\nAlessandra\nAlisha\nAllyson\nAmira\nAnastasia\nAyanna\nBailey\nCallie\nCassandra\nCynthia\nDestinee\nDevon\nElena\nElianna\nEliza\nEva\nGracie\nHolly\nIsabel\nJacqueline\nKara\nKiara\nLamya\nLeslie\nLindsey\nLondon\nMaura\nMilan\nNadia\nNina\nRaven\nRebekah\nRegina\nSabrina\nSandra\nShannon\nShelby\nSummer\nTatiana\nVeronica\nMadison\nEmily\nAva\nEmma\nOlivia\nIsabella\nGrace\nKayla\nElizabeth\nHannah\nSophia\nAbigail\nAlexis\nNatalie\nSavannah\nBrianna\nAlyssa\nMia\nTaylor\nVictoria\nElla\nGabrielle\nJulia\nSamantha\nSarah\nNevaeh\nHailey\nKylie\nMackenzie\nGabriella\nKatherine\nLily\nAshley\nJasmine\nKaitlyn\nGianna\nJennifer\nLauren\nMakayla\nMya\nRiley\nDestiny\nJessica\nPaige\nFaith\nJada\nJordan\nKatelyn\nTrinity\nAlexa\nAnna\nAutumn\nBrooke\nChloe\nLayla\nLeah\nLillian\nMorgan\nAlexandra\nArianna\nDanielle\nJayla\nKaylee\nRachel\nMaria\nMarissa\nMegan\nSara\nAllison\nAriana\nAubrey\nCatherine\nKimberly\nAddison\nAngelina\nJulianna\nMargaret\nMikayla\nRebecca\nStephanie\nSydney\nErin\nHaley\nMadelyn\nMckenzie\nZoey\nAdriana\nAmber\nAniyah\nCarly\nCaroline\nCharlotte\nJenna\nKeira\nMelanie\nMichelle\nSierra\nZoe\nAaliyah\nAmelia\nAndrea\nBriana\nEva\nIsabelle\nMadeline\nMariah\nMaya\nMckenna\nVanessa\nAlicia\nAllyson\nAvery\nBreanna\nCaitlyn\nClaire\nCourtney\nElise\nFatima\nJocelyn\nMolly\nNaomi\nNicole\nPeyton\nSabrina\nAdrianna\nAlana\nAniya\nAudrey\nBrooklyn\nCameron\nCassidy\nDakota\nElena\nKyla\nLindsey\nPayton\nSerenity\nShelby\nSofia\nAlayna\nChristina\nDelaney\nDiamond\nDiana\nErica\nEvelyn\nIsabel\nJayda\nJillian\nKailey\nKathryn\nKatie\nKiera\nLaila\nMakenzie\nMiranda\nNadia\nNoelle\nSherlyn\nSophie\nSummer\nValeria\nAmy\nAngela\nCadence\nCassandra\nCheyenne\nCiara\nEllie\nHayley\nHelen\nJade\nKaren\nKate\nKendra\nKira\nKyra\nLindsay\nLucy\nMiracle\nNatalia\nParis\nRayna\nReagan\nRylie\nSelena\nSkylar\nStella\nTatiana\nVeronica\nAlexandria\nAmanda\nAnastasia\nAngel\nAnnabelle\nAriel\nAshlyn\nAyanna\nCamryn\nCarolina\nCecilia\nDaisy\nDesiree\nDevon\nEstrella\nGabriela\nGenesis\nGracie\nHadley\nHolly\nHope\nImani\nJacqueline\nJazmin\nJazmine\nJoanna\nJordyn\nJoselyn\nKaylah\nKelsey\nKendall\nKylee\nLacey\nLaura\nLilly\nLydia\nMadalyn\nMaggie\nMallory\nMary\nMeghan\nMelissa\nMeredith\nMichaela\nNyla\nPerla\nPhoebe\nPiper\nReese\nRegan\nRyan\nRylee\nYasmin\nAva\nSophia\nEmily\nMadison\nAbigail\nIsabella\nEmma\nOlivia\nAlyssa\nHannah\nAshley\nAddison\nSavannah\nBrianna\nAlexis\nElla\nKayla\nElizabeth\nGrace\nMia\nAlexandra\nDestiny\nGianna\nNatalie\nSamantha\nSarah\nChloe\nVictoria\nAnna\nGabriella\nGabrielle\nJessica\nMolly\nTaylor\nKaitlyn\nLauren\nLillian\nMaria\nMegan\nNevaeh\nZoe\nAngelina\nMakayla\nAaliyah\nAlexa\nAniyah\nArianna\nJada\nJasmine\nJulia\nKaylee\nKylie\nMackenzie\nMadeline\nMorgan\nRachel\nAriana\nAubrey\nAvery\nJennifer\nLaila\nBriana\nHailey\nJuliana\nPaige\nRiley\nCharlotte\nSydney\nBailey\nBrooke\nClaire\nLily\nMariah\nAdriana\nAdrianna\nAlana\nAudrey\nEvelyn\nJocelyn\nKatelyn\nKimberly\nKylee\nLayla\nMaya\nNatalia\nRebecca\nSara\nStephanie\nTrinity\nAmelia\nBrooklyn\nCaitlyn\nHaley\nKatherine\nReagan\nRylee\nAlayna\nAllison\nAngela\nAutumn\nCheyenne\nHayden\nIsabel\nKatie\nLeah\nMadelyn\nAndrea\nAngel\nAniya\nCiara\nFaith\nHeaven\nJillian\nJordan\nKathryn\nKeira\nLeila\nMakenzie\nMikayla\nNora\nRyleigh\nSofia\nSophie\nAmy\nCatherine\nDiana\nJacqueline\nJade\nKiara\nLiliana\nMckenzie\nNaomi\nPeyton\nValeria\nAmani\nCadence\nCristal\nEmerson\nErin\nGabriela\nJenna\nJoanna\nJulianna\nKaren\nKelly\nKennedy\nMargaret\nNicole\nReese\nSavanna\nSummer\nZoey\nAlaina\nAlexandria\nAlison\nAlissa\nApril\nBreanna\nCarly\nCaroline\nCassandra\nCecilia\nDelaney\nDevon\nEsmeralda\nEva\nGenesis\nGiana\nHope\nIsabelle\nIvy\nJayda\nJazmin\nKate\nKyla\nLacey\nLeilani\nLondon\nLyla\nMarissa\nMeghan\nMelanie\nMya\nParis\nPayton\nRuby\nSerenity\nSierra\nSkylar\nVanessa\nVeronica\nAlexia\nAlivia\nAliyah\nAmanda\nAmirah\nAshlyn\nBrenda\nBridget\nBrooklynn\nCarmen\nDakota\nDanielle\nDeja\nEden\nElaina\nElise\nFelicity\nImani\nJaelynn\nJasmin\nJayden\nJayla\nJordyn\nKara\nKelsey\nKendall\nKimora\nKira\nKyra\nLeanna\nLeslie\nLesly\nLogan\nMary\nMichelle\nRegan\nRose\nSabrina\nSadie\nSelena\nShayla\nTatiana\nTyasia\nAva\nOlivia\nMadison\nAbigail\nEmma\nEmily\nIsabella\nSophia\nAlexis\nBrianna\nHannah\nElizabeth\nRiley\nTaylor\nAlyssa\nKayla\nAshley\nNatalie\nJulia\nLily\nMia\nSamantha\nChloe\nGrace\nSarah\nAnna\nAubrey\nLeah\nMadeline\nElla\nAaliyah\nSavannah\nHailey\nLayla\nLillian\nAddison\nArianna\nDestiny\nGianna\nNevaeh\nJasmine\nKaitlyn\nMorgan\nPaige\nGabrielle\nJada\nKylie\nAlexandra\nAllison\nAngelina\nMakayla\nSydney\nAvery\nJayla\nMackenzie\nMadelyn\nPayton\nDelaney\nEvelyn\nKatherine\nRachel\nBrooke\nCaroline\nCharlotte\nFaith\nGabriella\nMaya\nRylee\nAdriana\nAniyah\nAriana\nAutumn\nKimberly\nLauren\nLucy\nPeyton\nZoe\nAudrey\nHaley\nLaila\nMaria\nMegan\nRebecca\nVictoria\nAlana\nCarly\nClaire\nCrystal\nHayden\nJocelyn\nKaylee\nKelsey\nMariah\nMary\nMolly\nMya\nSara\nSofia\nAlicia\nBrooklyn\nCheyenne\nDiana\nJade\nJenna\nJennifer\nJordan\nJuliana\nJulianna\nKennedy\nLydia\nMakenzie\nTrinity\nBriana\nBrynn\nChelsea\nCiara\nCourtney\nDanielle\nErin\nIsabelle\nJillian\nLaura\nNatalia\nRebekah\nSabrina\nStephanie\nAlexa\nAmelia\nAngela\nCarmen\nDaniela\nElena\nErica\nGiselle\nGracie\nHope\nJessica\nKara\nKatie\nKelly\nKendall\nLiliana\nMarissa\nMckenna\nMckenzie\nNadia\nNicole\nSerenity\nAlaina\nAmanda\nAmani\nAmaya\nAmber\nAmy\nBailey\nBreanna\nCadence\nCassidy\nCatherine\nCora\nGenesis\nIsabel\nJaidyn\nJazmine\nKaren\nKayleigh\nKeira\nKylee\nLila\nLilly\nMaddison\nMichaela\nReagan\nReese\nRuby\nRyleigh\nSaniyah\nSasha\nSkylar\nSummer\nAdrianna\nAlivia\nAmira\nAmiyah\nAngel\nAngelica\nAniya\nAnnabella\nBrooklynn\nCamila\nCamryn\nChristina\nDanica\nDayana\nElise\nHeidi\nImani\nJacqueline\nJaelyn\nJuliet\nKadence\nKatelyn\nKathryn\nKiley\nKira\nLola\nLondon\nLyric\nMadelynn\nMakenna\nMalia\nMargaret\nMckayla\nMeghan\nMelina\nMelissa\nMikayla\nMiranda\nNaomi\nNora\nRachael\nRowan\nSanaa\nSanai\nSandra\nSavanna\nShayla\nShyanne\nTiara\nTori\nWillow\nIsabella\nSophia\nOlivia\nAbigail\nAva\nEmma\nMadison\nSamantha\nEmily\nElizabeth\nKayla\nAlexis\nMakayla\nMia\nChloe\nAlyssa\nNatalie\nAddison\nLeah\nTaylor\nBrooke\nElla\nGrace\nRiley\nAllison\nSarah\nSavannah\nAnna\nJulia\nBrianna\nGabriella\nKaylee\nLillian\nAshley\nGianna\nHailey\nArianna\nLayla\nPayton\nCaroline\nGabrielle\nHannah\nMaya\nEvelyn\nLondon\nMorgan\nNevaeh\nSydney\nAaliyah\nAlexa\nCharlotte\nDestiny\nLily\nTrinity\nAmelia\nAubrey\nMadeline\nMadelyn\nPaige\nClaire\nHaley\nJada\nKimberly\nLauren\nMaria\nNaomi\nAudrey\nAvery\nJasmine\nPeyton\nVictoria\nAdriana\nAlexandra\nAutumn\nCameron\nJayla\nJessica\nJordyn\nJuliana\nMackenzie\nMariah\nReagan\nZoe\nAdrianna\nFaith\nJenna\nJordan\nKaren\nKatherine\nKennedy\nKylie\nLaila\nMya\nRylee\nSofia\nSophie\nAna\nDelaney\nErin\nJosephine\nKaitlyn\nKatelyn\nKhloe\nMegan\nMolly\nNatalia\nRachel\nSara\nAlaina\nAliyah\nAnastasia\nAniyah\nAriana\nBrooklyn\nEllie\nHayden\nKelsey\nMarissa\nMckenzie\nNatasha\nReese\nStephanie\nValeria\nAmaya\nAnnabelle\nAriel\nBailey\nBrielle\nCaylee\nCora\nElise\nEvangeline\nIsabelle\nJillian\nKendall\nLucia\nLydia\nMelody\nMikayla\nRebecca\nRyleigh\nSavanna\nSienna\nVanessa\nVeronica\nZoey\nAmani\nAmira\nAngel\nAngelina\nAshlyn\nBreanna\nBriana\nBridget\nCamryn\nCassidy\nCheyenne\nDakota\nElena\nEva\nIsabel\nJaniyah\nJayda\nJennifer\nJocelyn\nJulianna\nJuliet\nKatie\nKayleigh\nKeira\nLiliana\nLindsey\nMckenna\nNina\nRylie\nSadie\nSaniya\nSaniyah\nSerenity\nSimone\nSkylar\nStella\nSummer\nViolet\nAlana\nAlexandria\nAlivia\nAlondra\nAmanda\nAmber\nArmani\nAubrie\nBella\nBrenda\nCaitlyn\nCourtney\nDaisy\nDanielle\nEllen\nGabriela\nGenesis\nHarmony\nHope\nJade\nJazmine\nJoanna\nJourney\nKathryn\nKimora\nKylee\nKyra\nLacey\nLilly\nLucy\nLyla\nMakenzie\nMaliyah\nMargaret\nMary\nMelanie\nMiranda\nNadia\nNicole\nPhoebe\nPiper\nSanai\nSasha\nSelena\nShayla\nTatiana\nTeagan\nSophia\nIsabella\nAva\nOlivia\nEmily\nMadison\nAbigail\nEmma\nLeah\nMia\nNatalie\nAlexis\nSamantha\nAddison\nRiley\nChloe\nElizabeth\nLily\nAlyssa\nKylie\nMackenzie\nAubrey\nGrace\nHannah\nSavannah\nBrianna\nElla\nNevaeh\nPeyton\nTaylor\nBrooke\nJulia\nLayla\nSarah\nAllison\nAmelia\nGianna\nMorgan\nPayton\nVictoria\nAaliyah\nGabriella\nJordyn\nMolly\nGabrielle\nHailey\nLillian\nMakayla\nAvery\nKaylee\nPaige\nRebecca\nAlexa\nArianna\nAutumn\nLondon\nZoe\nAdriana\nAdrianna\nAngelina\nAniyah\nAnna\nClaire\nFaith\nKatherine\nKayla\nKhloe\nSerenity\nAliyah\nAnnabelle\nCharlotte\nJocelyn\nMariah\nAlexandra\nAriana\nAudrey\nBrielle\nBrooklyn\nDestiny\nJade\nJasmine\nMadelyn\nAmaya\nEllie\nEvelyn\nJuliana\nKatelyn\nKendall\nRachel\nReagan\nSofia\nAlana\nAlivia\nBella\nBrynn\nCheyenne\nDelaney\nEva\nGabriela\nJayda\nJayla\nJillian\nKylee\nLauren\nLydia\nMaya\nMya\nAmy\nAndrea\nAshley\nBailey\nCaitlyn\nCatherine\nGia\nHaylee\nJordan\nKayleigh\nKimberly\nRylee\nSara\nSophie\nSydney\nValeria\nViolet\nBianca\nBriana\nCaroline\nDiana\nJazmin\nJenna\nJulianna\nKeira\nKennedy\nLeila\nLila\nLucy\nNadia\nNaomi\nNatalia\nNora\nRaegan\nRuby\nStella\nStephanie\nTrinity\nZoey\nAddyson\nAlaina\nAlondra\nAngela\nAshlyn\nCarly\nDakota\nDanielle\nElaina\nElena\nEliana\nEsther\nFiona\nHayden\nJacqueline\nJada\nJessica\nKaitlyn\nKara\nKarina\nKatie\nLilly\nMadeline\nMakenna\nMallory\nMarissa\nMarley\nMary\nSadie\nSage\nScarlett\nShelby\nSienna\nSkylar\nAdeline\nAlisha\nAllie\nAmber\nAmira\nAmiyah\nBreanna\nBrenna\nCaitlin\nCamille\nCamryn\nEden\nElise\nEliza\nGenesis\nGillian\nGiuliana\nHaley\nHarper\nHeidi\nHope\nJaylyn\nJazmine\nJustice\nKaren\nKatelynn\nKelsey\nKourtney\nKyla\nLindsey\nMakenzie\nMalia\nMaria\nMelanie\nMichaela\nMilan\nMiranda\nNicole\nPenelope\nSanai\nSarai\nSierra\nTalia\nVanessa\nXimena\nSophia\nOlivia\nAva\nEmma\nEmily\nAbigail\nMadison\nAubrey\nIsabella\nChloe\nLily\nMia\nAvery\nLillian\nSavannah\nNatalie\nAddison\nElizabeth\nBrianna\nAlexis\nAmelia\nKaylee\nAnna\nLayla\nMakayla\nSofia\nAlyssa\nElla\nTaylor\nAaliyah\nCharlotte\nGabriella\nHailey\nJulia\nLeah\nNevaeh\nSarah\nScarlett\nGrace\nMadeline\nMolly\nMorgan\nBella\nGianna\nKayla\nKhloe\nRiley\nSamantha\nZoe\nAllison\nSophie\nClaire\nEvelyn\nHannah\nKendall\nMackenzie\nAshley\nBailey\nDestiny\nFaith\nLondon\nSerenity\nAdrianna\nAngelina\nAudrey\nCamila\nGabrielle\nJada\nJocelyn\nKennedy\nKylie\nMaya\nNaomi\nPeyton\nVictoria\nAdriana\nAlexandra\nAubree\nBrooklyn\nCaroline\nElena\nEva\nImani\nJuliana\nLiliana\nPaige\nRachel\nReagan\nSydney\nTrinity\nViolet\nAlexa\nBrielle\nBrooke\nDanielle\nGenesis\nJade\nKimberly\nLaila\nMaria\nPayton\nAlanna\nAliyah\nAmy\nAndrea\nBrynn\nEliana\nHarper\nIzabella\nJennifer\nKatelyn\nKeira\nLilly\nLydia\nMadelyn\nMakenzie\nMelissa\nMiranda\nNora\nNyla\nPiper\nVanessa\nAlaina\nAlana\nAmiyah\nArianna\nDelaney\nIsabelle\nJasmine\nLondyn\nMya\nNatalia\nNylah\nReese\nAlivia\nAmanda\nAriana\nBridget\nCatherine\nGenevieve\nIsabel\nJessica\nJordan\nJosephine\nKatherine\nKayleigh\nKylee\nLauren\nLeila\nMary\nMckenzie\nMikayla\nMilan\nNorah\nParis\nQuinn\nSabrina\nSienna\nSummer\nZoey\nAlice\nAlison\nAngel\nAnnabelle\nAriel\nAutumn\nBethany\nCadence\nCamryn\nCara\nCecilia\nElaina\nGabriela\nJillian\nJoanna\nKaitlyn\nKathryn\nKaydence\nLogan\nLyla\nMadeleine\nMariah\nMckenna\nMelanie\nNatasha\nNicole\nSadie\nSavanna\nStephanie\nVivian\nAdeline\nAngela\nAniyah\nAnnabel\nAnya\nAria\nBrooklynn\nCasey\nCassidy\nChelsea\nClara\nEden\nEleanor\nElise\nEvangeline\nFiona\nGeorgia\nGia\nGiuliana\nHaley\nHayden\nJazmin\nJimena\nJordyn\nJulianna\nKate\nKelly\nKelsey\nLila\nLucy\nMaci\nMakenna\nMargaret\nMariana\nMelody\nMichaela\nMyla\nPatricia\nRuby\nSage\nShannon\nSkye\nSkylar\nVivienne\nSophia\nIsabella\nEmma\nOlivia\nAva\nEmily\nMadison\nAubrey\nLillian\nAbigail\nAmelia\nLayla\nZoey\nGrace\nMia\nAddison\nRiley\nNatalie\nAvery\nElizabeth\nElla\nAlexis\nAutumn\nLily\nPeyton\nTaylor\nSavannah\nBrooklyn\nVictoria\nAnna\nKennedy\nMorgan\nSamantha\nAllison\nAnnabelle\nBrianna\nMackenzie\nMakayla\nZoe\nGabrielle\nHailey\nHannah\nHarper\nMadelyn\nSarah\nScarlett\nSofia\nAaliyah\nBrielle\nCharlotte\nFaith\nGianna\nQuinn\nChloe\nEvelyn\nJocelyn\nAshley\nAubree\nBella\nBrooke\nClaire\nKayla\nKaylee\nKendall\nLeah\nLondon\nReagan\nRylee\nSerenity\nAlexa\nAlyssa\nAriana\nGabriella\nKylie\nLaila\nMadeline\nAudrey\nCaroline\nJasmine\nJulia\nJuliana\nKeira\nMaria\nMolly\nNevaeh\nSkylar\nAdriana\nAria\nBrynn\nJordan\nNaomi\nNatalia\nPayton\nSadie\nAliyah\nAndrea\nAniyah\nArianna\nCamille\nCarly\nCatherine\nEllie\nEva\nJade\nKimberly\nMariah\nMaya\nMckenzie\nPaige\nPaisley\nPiper\nRebecca\nSienna\nSydney\nTrinity\nAlana\nAlexandra\nAngelina\nAubrie\nDelaney\nFiona\nJayla\nJosephine\nKaitlyn\nKhloe\nLiliana\nLilly\nLyla\nMiranda\nRyleigh\nAbby\nAlaina\nAmy\nBailey\nBianca\nBriella\nCallie\nCamila\nElena\nGiselle\nIsabelle\nIzabella\nJada\nJennifer\nJordyn\nJulianna\nKelly\nLogan\nLucy\nLydia\nLyric\nMilan\nMya\nNyla\nReese\nTatiana\nViolet\nAlice\nAnya\nAurora\nChelsea\nCora\nDakota\nElise\nEliza\nGenesis\nHaley\nHeaven\nJayda\nKate\nKatherine\nKylee\nKyleigh\nKyra\nLauren\nLilah\nLola\nMaci\nMikayla\nNicole\nNora\nTeagan\nTori\nVanessa\nYaretzi\nAdelaide\nAdelyn\nAlayna\nAlivia\nAmaya\nArabella\nAshlynn\nBlake\nBrynlee\nCassidy\nCataleya\nClara\nDaniela\nGracie\nHarmony\nImani\nJohanna\nJourney\nKaleigh\nKatelyn\nKaydence\nKyla\nLacey\nLilian\nMadeleine\nMaeve\nMakenzie\nMargaret\nMckenna\nRuth\nSahara\nSamiyah\nSophie\nStella\nTessa\nWillow\nAva\nOlivia\nEmma\nEmily\nAbigail\nSophia\nIsabella\nAubrey\nMadison\nCharlotte\nGrace\nLily\nElizabeth\nMia\nChloe\nRiley\nLillian\nAddison\nKaylee\nLayla\nAriana\nAudrey\nElla\nZoe\nGianna\nHannah\nHarper\nKendall\nVictoria\nBrooklyn\nFaith\nGabriella\nHailey\nNatalie\nPeyton\nSavannah\nAmelia\nCaroline\nSarah\nSerenity\nTaylor\nAubree\nBrielle\nDelaney\nKayla\nMakayla\nQuinn\nZoey\nAllison\nArianna\nAvery\nJuliana\nSamantha\nSofia\nAaliyah\nAria\nJayla\nJosephine\nKhloe\nLeah\nMackenzie\nSkylar\nSydney\nAlexa\nAnna\nBrianna\nEliana\nKylee\nLondyn\nMadelyn\nMckenzie\nMorgan\nNevaeh\nAlexis\nAurora\nErin\nGabrielle\nJulianna\nKatherine\nKeira\nMariah\nScarlett\nBella\nDanielle\nEvelyn\nJordyn\nJulia\nKennedy\nLondon\nMadeline\nMaya\nMya\nReagan\nRylee\nSadie\nSophie\nViolet\nAlayna\nAniyah\nAutumn\nDakota\nDestiny\nJocelyn\nKylie\nLuna\nMelody\nMila\nMilan\nTrinity\nAlivia\nCamila\nCecilia\nChelsea\nLiliana\nMckenna\nMichelle\nMikayla\nNaomi\nNorah\nPayton\nPiper\nSkye\nStella\nAlaina\nAlondra\nAlyssa\nAnnabelle\nAshley\nCamille\nClaire\nElena\nEllie\nGenesis\nHadley\nHarmony\nIzabella\nJasmine\nJordan\nJourney\nKatelyn\nLyla\nMakenzie\nMelanie\nNora\nPenelope\nReese\nTalia\nAdelyn\nAdriana\nAlana\nAlexandra\nAlexandria\nAmiyah\nAriel\nBriella\nCamryn\nCatherine\nFiona\nGabriela\nGiuliana\nKaitlyn\nKathryn\nKinsley\nLaila\nLauren\nLauryn\nLeilani\nLucy\nLydia\nMelissa\nMiranda\nMolly\nNicole\nNyla\nPaige\nPaisley\nPhoebe\nRachel\nValentina\nVanessa\nVeronica\nAadya\nAdeline\nAdrianna\nAllie\nAmaya\nAngel\nAriella\nBrooke\nCara\nClara\nElaina\nElise\nElle\nEmani\nEva\nFinley\nGia\nGiselle\nHayden\nHeaven\nHope\nJada\nJade\nJenna\nJennifer\nKatie\nKayleigh\nKelsey\nKira\nLilliana\nLilly\nLola\nMacie\nMakenna\nMarley\nPhoenix\nRyleigh\nSarai\nSasha\nSerena\nSummer\nTeagan\nVivian\nWillow\nSophia\nAva\nEmma\nOlivia\nEmily\nIsabella\nMia\nMadison\nCharlotte\nAvery\nElizabeth\nLillian\nAbigail\nLayla\nSavannah\nHannah\nAubrey\nGabriella\nZoe\nAddison\nGrace\nKaylee\nNatalie\nAmelia\nAudrey\nEvelyn\nHarper\nMadelyn\nZoey\nLondon\nMackenzie\nSofia\nAlexandra\nAnna\nAutumn\nElla\nGenesis\nGianna\nJordyn\nSkylar\nAriana\nArianna\nAubree\nBrielle\nChloe\nKennedy\nPeyton\nRiley\nAllison\nJulia\nLeah\nNaomi\nAnnabelle\nMorgan\nPenelope\nWillow\nAlyssa\nBrooklyn\nClaire\nNora\nCaroline\nEleanor\nKylie\nLiliana\nLily\nMakayla\nMaya\nScarlett\nAlexa\nAria\nAshley\nBrianna\nClara\nKendall\nVictoria\nAlexis\nElise\nNevaeh\nQuinn\nStella\nSydney\nTaylor\nViolet\nCora\nEliana\nEmerson\nJade\nKatherine\nKhloe\nMadeline\nMckenzie\nMelanie\nNyla\nSamantha\nAdalyn\nAdelyn\nAlexandria\nAmiyah\nAnnabella\nEva\nIsla\nJayla\nLaila\nPiper\nRyleigh\nValentina\nAlivia\nBella\nBrooke\nCassidy\nCecilia\nElaina\nEllie\nFaith\nFiona\nJosephine\nJuliana\nKayla\nKenzie\nLilly\nLondyn\nLyla\nMakenna\nMaria\nMolly\nReagan\nSadie\nSkyler\nAaliyah\nAdeline\nAdrianna\nAngelina\nArya\nBriana\nCali\nDelilah\nGabrielle\nHailey\nIvy\nJordan\nJuliette\nKimberly\nKinsley\nLeilani\nLena\nLucy\nLydia\nMargaret\nMariah\nMya\nPaige\nPayton\nRuby\nRylee\nSarah\nSophie\nAdelaide\nAdelina\nAinsley\nAlana\nAlessandra\nAngel\nAniya\nBrittany\nBrynlee\nCamila\nDakota\nDelaney\nEden\nElena\nEmilia\nFinley\nGabriela\nGemma\nGenevieve\nHarmony\nHope\nImani\nJada\nJasmine\nJessica\nLyric\nMalaya\nMckinley\nMegan\nMila\nNatalia\nParker\nPhoebe\nSaniya\nSelena\nSerenity\nShiloh\nSummer\nTeagan\nTessa\nTrinity\nAlayna\nAliyah\nAmara\nAmy\nAna\nAnabelle\nAngelique\nAniyah\nArabella\nArielle\nAurora\nBrooklynn\nBryn\nBrynn\nCheyenne\nDaisy\nDaniela\nDestiny\nEgypt\nElliana\nErin\nGiuliana\nHayden\nHazel\nIzabella\nJazmine\nJocelyn\nJournee\nJulianna\nKaydence\nKaylie\nLauren\nLia\nLila\nLucia\nMakenzie\nMalia\nMaliyah\nMary\nMilan\nMiranda\nNoelle\nReese\nRosemary\nRuth\nRylie\nValerie\nVivian\nWren\nZaniyah\nWilliam\nJames\nJohn\nJoseph\nCharles\nGeorge\nFrank\nThomas\nRobert\nSamuel\nAlbert\nEdward\nHarry\nHoward\nWalter\nFrancis\nHarold\nLouis\nWilliam\nJohn\nGeorge\nJoseph\nJames\nCharles\nEdward\nRobert\nHarry\nFrank\nRalph\nThomas\nFrancis\nHoward\nPaul\nAlbert\nRaymond\nAndrew\nClifford\nHenry\nRichard\nJohn\nWilliam\nCharles\nJames\nGeorge\nJoseph\nRobert\nHarry\nThomas\nPaul\nFrancis\nFrank\nAnthony\nEdward\nAlbert\nRalph\nRichard\nDavid\nHoward\nNorman\nWalter\nAlfred\nFred\nStanley\nFrederick\nHarold\nLouis\nRaymond\nBenjamin\nEarl\nErnest\nHenry\nStephen\nWoodrow\nArthur\nCarl\nCurtis\nDaniel\nHarvey\nJesse\nLeon\nMarshall\nJohn\nWilliam\nJames\nCharles\nJoseph\nGeorge\nEdward\nRobert\nHarry\nPaul\nThomas\nFrancis\nFrank\nClarence\nHoward\nSamuel\nWalter\nAlbert\nHenry\nNorman\nAlfred\nWoodrow\nAnthony\nArthur\nCarl\nElmer\nHarold\nRaymond\nWillard\nAndrew\nBenjamin\nDavid\nEdwin\nFrederick\nHarvey\nRalph\nStanley\nLawrence\nEarl\nEugene\nLeroy\nLewis\nNicholas\nRichard\nWilliam\nJohn\nJames\nCharles\nGeorge\nJoseph\nEdward\nRobert\nThomas\nErnest\nFrank\nHarry\nFrancis\nSamuel\nWalter\nAnthony\nHoward\nPaul\nHenry\nRalph\nRichard\nAlbert\nAlfred\nHarold\nRaymond\nClarence\nHerman\nHerbert\nMichael\nStephen\nArthur\nDavid\nEugene\nNorman\nWilson\nDonald\nEdwin\nElwood\nFred\nLeonard\nLouis\nRoland\nElmer\nGilbert\nJesse\nLawrence\nLeon\nNicholas\nPhilip\nRussell\nTheodore\nVictor\nWillard\nJohn\nWilliam\nCharles\nJames\nJoseph\nGeorge\nRobert\nEdward\nThomas\nWalter\nFrank\nHarry\nPaul\nAnthony\nSamuel\nAlbert\nFrancis\nEarl\nHenry\nHarold\nHoward\nElmer\nFred\nStanley\nNorman\nAlfred\nRichard\nBenjamin\nEdgar\nClarence\nErnest\nRaymond\nRoland\nHorace\nRalph\nFrederick\nHarvey\nLeon\nPhilip\nAndrew\nDaniel\nDavid\nLawrence\nMichael\nPreston\nWillard\nArthur\nEugene\nHerbert\nLouis\nCarl\nChester\nEverett\nMilton\nNicholas\nOscar\nStephen\nTheodore\nEdwin\nElwood\nFranklin\nHerman\nJesse\nLeroy\nLewis\nMarion\nRudolph\nRussell\nWilliam\nJohn\nJames\nCharles\nJoseph\nGeorge\nRobert\nEdward\nHarry\nPaul\nFrancis\nThomas\nHoward\nWalter\nHenry\nHarold\nSamuel\nAnthony\nErnest\nFrank\nAlbert\nHerbert\nRichard\nAlfred\nStanley\nRalph\nArthur\nCarl\nClarence\nDaniel\nNorman\nWillard\nBenjamin\nDavid\nHorace\nLeonard\nClifton\nDonald\nFrederick\nLawrence\nLewis\nLouis\nPreston\nWilson\nElwood\nFred\nHarvey\nJesse\nMichael\nRaymond\nTheodore\nWilbur\nEarl\nEdgar\nElmer\nEugene\nFloyd\nMilton\nPeter\nPhilip\nCalvin\nEverett\nGilbert\nJack\nKenneth\nMarshall\nMartin\nStephen\nAlexander\nFranklin\nHerman\nMarvin\nOliver\nRoland\nVincent\nWoodrow\nJohn\nWilliam\nJames\nJoseph\nGeorge\nCharles\nRobert\nEdward\nHarry\nThomas\nWalter\nFrank\nClarence\nFrancis\nAlbert\nPaul\nSamuel\nHoward\nRalph\nAlfred\nHarold\nHenry\nRussell\nFrederick\nDavid\nRaymond\nArthur\nHarvey\nRoland\nTheodore\nNorman\nAnthony\nEarl\nLawrence\nRichard\nBenjamin\nElwood\nHerman\nLewis\nStanley\nEverett\nLeon\nLeonard\nAlexander\nElmer\nEugene\nMichael\nOscar\nWillard\nCarl\nDonald\nHorace\nLeroy\nLouis\nMilton\nPreston\nVictor\nClifford\nDaniel\nPeter\nStephen\nVincent\nBernard\nHerbert\nJesse\nWoodrow\nJohn\nWilliam\nJames\nJoseph\nCharles\nRobert\nGeorge\nEdward\nHarry\nThomas\nPaul\nFrancis\nWalter\nFrank\nHoward\nAlbert\nHarold\nRaymond\nClarence\nNorman\nSamuel\nDavid\nRichard\nStanley\nAlfred\nHenry\nRalph\nLeonard\nLouis\nAnthony\nVictor\nAlexander\nLawrence\nArthur\nDonald\nEarl\nBenjamin\nErnest\nFrederick\nHerbert\nRoland\nStephen\nWarren\nAlvin\nAndrew\nDaniel\nElmer\nHarvey\nWallace\nFranklin\nFred\nLeroy\nLester\nMelvin\nVincent\nWillard\nWilson\nBernard\nCalvin\nCarl\nChester\nEdgar\nEdwin\nElwood\nGranville\nLewis\nLloyd\nNicholas\nWesley\nAllen\nClifford\nDominick\nEugene\nHerman\nJoshua\nLeon\nMorris\nPeter\nPhilip\nPreston\nRoy\nWilliam\nJohn\nJames\nCharles\nJoseph\nRobert\nGeorge\nEdward\nFrancis\nFrank\nPaul\nThomas\nWalter\nRalph\nHarry\nSamuel\nHoward\nRichard\nStanley\nHarold\nAlbert\nHenry\nRaymond\nAlfred\nLouis\nArthur\nEarl\nNorman\nBenjamin\nClarence\nHerbert\nDavid\nErnest\nEugene\nLeon\nAlexander\nJack\nAnthony\nDaniel\nDonald\nMichael\nOliver\nAndrew\nCarl\nClinton\nElmer\nElwood\nFred\nHarvey\nMelvin\nRoy\nTheodore\nLeonard\nLewis\nMilton\nWillard\nClifford\nClifton\nEdgar\nFranklin\nHerman\nLeo\nPreston\nWillis\nAlvin\nBernard\nEdwin\nFrederick\nGilbert\nIrvin\nLeroy\nMonroe\nPeter\nRussell\nStephen\nVaughn\nVincent\nVirgil\nWilliam\nJohn\nJoseph\nCharles\nJames\nRobert\nGeorge\nEdward\nThomas\nWalter\nFrancis\nFrank\nHarry\nHenry\nHoward\nPaul\nAlbert\nRichard\nRalph\nRaymond\nSamuel\nAlfred\nErnest\nLouis\nEugene\nMichael\nBenjamin\nAnthony\nArthur\nClarence\nHarold\nLeonard\nStanley\nDonald\nLeon\nEarl\nHarvey\nTheodore\nDaniel\nNorman\nVictor\nAndrew\nClifford\nDavid\nFrederick\nHerbert\nKenneth\nAlexander\nFranklin\nJack\nJesse\nLawrence\nRoy\nEdwin\nHorace\nLeroy\nLewis\nMartin\nMelvin\nPeter\nRussell\nVincent\nWarren\nEdgar\nElmer\nEverett\nFred\nHerman\nLester\nMilton\nPhilip\nRodney\nStephen\nWillard\nBernard\nDominick\nGilbert\nHarrison\nNorris\nOscar\nSidney\nVernon\nWilson\nWilliam\nJohn\nJames\nJoseph\nRobert\nCharles\nGeorge\nEdward\nWalter\nFrancis\nHarry\nPaul\nRichard\nThomas\nHenry\nClarence\nAlbert\nFrank\nHoward\nLouis\nRalph\nRaymond\nArthur\nHarold\nStanley\nDaniel\nAlfred\nMichael\nSamuel\nEarl\nDavid\nFred\nAndrew\nDonald\nJack\nKenneth\nLawrence\nNorman\nEverett\nHarvey\nHerbert\nLeon\nLeonard\nWillard\nAnthony\nElmer\nErnest\nGilbert\nHorace\nMelvin\nStephen\nWarren\nAlton\nBenjamin\nFranklin\nPeter\nRoy\nRussell\nAlvin\nBernard\nCarlton\nEdgar\nFrederick\nHerman\nLester\nMartin\nMarvin\nMilton\nPreston\nRoscoe\nArchie\nDominick\nElwood\nEugene\nJesse\nJoshua\nMillard\nNicholas\nRoland\nTheodore\nWilliam\nJohn\nJames\nCharles\nGeorge\nRobert\nJoseph\nEdward\nPaul\nWalter\nFrank\nHarry\nThomas\nFrancis\nRichard\nHenry\nAlbert\nRalph\nArthur\nDonald\nHoward\nRaymond\nAlfred\nAnthony\nDavid\nNorman\nHarold\nFrederick\nStanley\nEarl\nLawrence\nCarl\nClarence\nEugene\nLeonard\nLouis\nSamuel\nBernard\nDaniel\nWarren\nHerman\nMichael\nStephen\nEdwin\nHerbert\nHorace\nMilton\nClifford\nKenneth\nLewis\nTheodore\nElwood\nHarvey\nMelvin\nNicholas\nPeter\nWillard\nAngelo\nBenjamin\nLee\nLester\nMartin\nRay\nRodney\nRoland\nVincent\nAllen\nCarroll\nChester\nErnest\nEverett\nGordon\nLeon\nLeroy\nLloyd\nMarvin\nWilliam\nJohn\nJames\nCharles\nRobert\nJoseph\nGeorge\nEdward\nFrancis\nWalter\nThomas\nHarry\nPaul\nFrank\nHoward\nRaymond\nRichard\nSamuel\nHenry\nAnthony\nDonald\nRalph\nAlbert\nAlfred\nArthur\nClarence\nHarold\nDavid\nLouis\nStanley\nErnest\nLeonard\nCalvin\nFred\nKenneth\nLawrence\nLeon\nWillard\nAlvin\nFranklin\nHerbert\nMartin\nTheodore\nDaniel\nEarl\nFrederick\nLeroy\nRoland\nAndrew\nBenjamin\nEugene\nJack\nNorman\nAllen\nCarl\nElmer\nElwood\nHarvey\nHorace\nLayton\nLester\nLewis\nPreston\nRodney\nStephen\nVernon\nVincent\nEdgar\nHerman\nHomer\nJacob\nNelson\nVictor\nWilliam\nJohn\nJames\nRobert\nCharles\nJoseph\nGeorge\nEdward\nThomas\nRichard\nPaul\nFrank\nWalter\nDonald\nFrancis\nRalph\nHoward\nNorman\nClarence\nHarry\nAlbert\nSamuel\nDavid\nHarold\nLouis\nWillard\nHenry\nRaymond\nStanley\nEugene\nLewis\nAlfred\nElmer\nLeon\nAnthony\nFred\nLawrence\nPhilip\nPreston\nAndrew\nEarl\nErnest\nFranklin\nRussell\nBernard\nCarl\nHarvey\nHerbert\nOliver\nRoland\nStephen\nAlexander\nArthur\nBenjamin\nDaniel\nElwood\nJack\nKenneth\nLeroy\nMelvin\nMichael\nMilton\nTheodore\nVincent\nCarmen\nClayton\nEdwin\nJacob\nLeslie\nVictor\nWilliam\nJohn\nJames\nRobert\nJoseph\nCharles\nGeorge\nEdward\nFrancis\nPaul\nHarry\nRichard\nThomas\nFrank\nWalter\nAlbert\nHarold\nHenry\nRaymond\nSamuel\nHoward\nAnthony\nClarence\nDavid\nLouis\nLeroy\nArthur\nErnest\nStanley\nBernard\nEugene\nDonald\nRalph\nAlfred\nEarl\nRoland\nDaniel\nElmer\nLeonard\nFrederick\nHarvey\nJack\nKenneth\nLeon\nNorman\nRussell\nWillard\nBenjamin\nCalvin\nEdwin\nFranklin\nHerman\nLawrence\nOscar\nTheodore\nCarl\nDominick\nElwood\nGerald\nIrvin\nPeter\nPhilip\nAlvin\nByron\nClifford\nFred\nGranville\nHerbert\nJesse\nMelvin\nVictor\nWarren\nWilson\nWilliam\nJohn\nRobert\nJames\nJoseph\nCharles\nGeorge\nEdward\nRichard\nThomas\nFrancis\nPaul\nFrank\nDonald\nHarry\nHarold\nClarence\nWalter\nRalph\nAlbert\nRaymond\nSamuel\nAlfred\nDavid\nStanley\nEarl\nLouis\nNorman\nWillard\nHarvey\nHoward\nLeon\nHenry\nAnthony\nArthur\nCarl\nLawrence\nCalvin\nDaniel\nFred\nJack\nLeroy\nLewis\nEdwin\nErnest\nEugene\nFloyd\nFranklin\nGilbert\nLester\nRussell\nElwood\nFrederick\nGranville\nHerman\nJesse\nKenneth\nLeo\nOscar\nRoland\nTheodore\nAlton\nAlvin\nBernard\nHerbert\nLeonard\nMarion\nMichael\nRodney\nRoy\nVincent\nWallace\nWilliam\nJohn\nJames\nRobert\nCharles\nJoseph\nGeorge\nEdward\nHarry\nThomas\nRichard\nPaul\nHoward\nFrancis\nHenry\nWalter\nAnthony\nDavid\nDonald\nHarold\nRalph\nAlbert\nAlfred\nSamuel\nNorman\nRaymond\nFrank\nLeon\nStanley\nArthur\nEarl\nErnest\nEugene\nElmer\nLeroy\nAlvin\nDaniel\nHarvey\nTheodore\nClarence\nFrederick\nJack\nLeonard\nPreston\nCarlton\nClifford\nFranklin\nFred\nLouis\nPhilip\nRussell\nWillard\nAlexander\nBernard\nKenneth\nLee\nLewis\nMarvin\nRay\nCarl\nGerald\nJesse\nLawrence\nMarion\nRoland\nRoy\nWilliam\nJohn\nRobert\nJames\nJoseph\nCharles\nGeorge\nThomas\nEdward\nDonald\nFrancis\nPaul\nHarry\nHoward\nFrank\nRichard\nAlfred\nClarence\nWalter\nRalph\nAlbert\nEugene\nHenry\nAnthony\nEarl\nRaymond\nSamuel\nLeon\nLouis\nArthur\nDaniel\nDavid\nHarold\nHerbert\nLeonard\nStanley\nJack\nFranklin\nLeroy\nVernon\nAlvin\nCalvin\nElmer\nKenneth\nNorman\nBernard\nClifford\nErnest\nMorris\nTheodore\nArnold\nCarl\nCarlton\nHarvey\nLawrence\nLeslie\nLewis\nNicholas\nWillard\nAllen\nAndrew\nClyde\nElwood\nFloyd\nFred\nHerman\nMarvin\nMelvin\nPeter\nPhilip\nRoger\nRoland\nRussell\nVictor\nVincent\nJohn\nWilliam\nRobert\nJames\nCharles\nJoseph\nGeorge\nRichard\nDonald\nFrank\nPaul\nEdward\nThomas\nHarry\nHenry\nWalter\nFrancis\nAlbert\nRaymond\nAlfred\nClarence\nRalph\nEugene\nDavid\nSamuel\nLawrence\nEarl\nHarold\nCarl\nLouis\nRoland\nStanley\nArthur\nAnthony\nBernard\nErnest\nJack\nLeonard\nLewis\nAndrew\nBenjamin\nDaniel\nFred\nHarvey\nHerbert\nNorman\nTheodore\nAllen\nClifford\nElmer\nHoward\nLee\nMichael\nRoy\nCarlton\nEdwin\nFranklin\nIrvin\nKenneth\nLeon\nLeroy\nMartin\nMarvin\nWarren\nWilliam\nJohn\nJames\nRobert\nCharles\nRichard\nJoseph\nGeorge\nEdward\nDonald\nHarry\nFrancis\nThomas\nPaul\nNorman\nRaymond\nFrank\nLouis\nRalph\nAlbert\nClarence\nDavid\nHoward\nHarold\nSamuel\nWalter\nArthur\nCarl\nLawrence\nRoland\nAndrew\nEugene\nAlfred\nStanley\nAnthony\nDaniel\nHenry\nEarl\nElwood\nHarvey\nVincent\nBernard\nFrederick\nElmer\nFloyd\nHerbert\nLeon\nLeonard\nLeroy\nLester\nPhilip\nRonald\nTheodore\nWillard\nCurtis\nErnest\nFred\nHerman\nMichael\nPeter\nRoy\nVernon\nBenjamin\nClifton\nGerald\nJack\nKenneth\nLewis\nMartin\nMelvin\nRay\nRussell\nVictor\nWilson\nWilliam\nJohn\nRobert\nJames\nCharles\nDonald\nGeorge\nJoseph\nRichard\nThomas\nEdward\nRaymond\nHarry\nFrank\nPaul\nFrancis\nDavid\nRalph\nLouis\nNorman\nEugene\nAlbert\nHoward\nSamuel\nWalter\nEarl\nKenneth\nRonald\nJack\nStanley\nHarold\nAlfred\nDaniel\nFred\nAnthony\nArthur\nCarl\nEdwin\nHarvey\nHenry\nLeon\nLeonard\nTheodore\nLawrence\nLester\nBenjamin\nGerald\nHerbert\nLeroy\nWillard\nAllen\nErnest\nFrederick\nHerman\nLewis\nNicholas\nRoland\nRussell\nAndrew\nDouglas\nFranklin\nMartin\nNelson\nPreston\nVictor\nWilliam\nRobert\nJohn\nJames\nRichard\nDonald\nJoseph\nCharles\nGeorge\nEdward\nPaul\nFrancis\nThomas\nDavid\nHarry\nHoward\nAlbert\nFrank\nRalph\nRaymond\nWalter\nLouis\nNorman\nAlfred\nHenry\nErnest\nDaniel\nHarold\nLeonard\nSamuel\nEarl\nAnthony\nFranklin\nRonald\nCarl\nKenneth\nCalvin\nClarence\nFrederick\nHerbert\nEugene\nHarvey\nTheodore\nBenjamin\nFred\nPreston\nVernon\nAlvin\nArthur\nHerman\nJack\nPeter\nPhilip\nStanley\nWillard\nAndrew\nClifford\nElmer\nGerald\nLawrence\nLeon\nLewis\nMartin\nOliver\nPhillip\nRussell\nWallace\nWilson\nWilliam\nJohn\nRobert\nJames\nCharles\nDonald\nRichard\nGeorge\nJoseph\nEdward\nThomas\nHarry\nDavid\nPaul\nFrancis\nWalter\nHoward\nRonald\nHarold\nHenry\nRalph\nFrank\nFranklin\nRaymond\nAlbert\nDaniel\nEugene\nKenneth\nNorman\nAlfred\nAnthony\nArthur\nClarence\nEarl\nLewis\nLouis\nClifford\nErnest\nHorace\nRoland\nStanley\nCarl\nGerald\nHarvey\nJack\nLawrence\nLeonard\nSamuel\nBernard\nFloyd\nMarvin\nVictor\nWillard\nCalvin\nCarlton\nFrederick\nPhilip\nDominick\nFred\nHerbert\nHerman\nLeon\nNicholas\nPreston\nJohn\nWilliam\nJames\nRobert\nRichard\nCharles\nJoseph\nDonald\nGeorge\nEdward\nThomas\nFrancis\nPaul\nRonald\nDavid\nHarry\nHoward\nRalph\nWalter\nErnest\nEugene\nHarold\nKenneth\nNorman\nAlfred\nRaymond\nFrank\nAlbert\nArthur\nCarl\nDaniel\nFranklin\nGerald\nHarvey\nHenry\nLawrence\nLeonard\nRoland\nAnthony\nClarence\nHerbert\nMelvin\nSamuel\nStanley\nTheodore\nBernard\nEarl\nElmer\nLouis\nRussell\nWillard\nFloyd\nFred\nMichael\nAllen\nAndrew\nClifford\nHerman\nJerry\nLee\nMartin\nMorris\nRoger\nWilson\nWilliam\nJohn\nRobert\nJames\nCharles\nRichard\nDonald\nGeorge\nJoseph\nRonald\nEdward\nFrancis\nDavid\nPaul\nThomas\nWalter\nHoward\nLouis\nRaymond\nKenneth\nArthur\nClarence\nEugene\nFrank\nDaniel\nHenry\nJack\nSamuel\nAnthony\nHarold\nHarry\nNorman\nCarl\nElwood\nWayne\nAlbert\nAlfred\nEarl\nFrederick\nGerald\nHarvey\nLawrence\nRalph\nErnest\nFloyd\nFranklin\nFred\nStanley\nBernard\nHerbert\nJay\nLewis\nMartin\nMilton\nWillard\nAlvin\nAndrew\nArnold\nBill\nGene\nLeroy\nLester\nPhilip\nRoger\nRoland\nRussell\nRobert\nJohn\nJames\nWilliam\nRichard\nCharles\nDonald\nJoseph\nThomas\nGeorge\nEdward\nDavid\nPaul\nFrank\nFrancis\nRaymond\nLawrence\nAlbert\nRalph\nRonald\nWalter\nEarl\nHarry\nKenneth\nSamuel\nFred\nGerald\nAnthony\nDaniel\nEugene\nFranklin\nHoward\nRoger\nHarold\nHenry\nLouis\nAlfred\nHerbert\nMelvin\nCarl\nClarence\nFrederick\nLeonard\nNorman\nEdgar\nErnest\nGary\nHerman\nLeroy\nLewis\nPhilip\nRussell\nStanley\nAndrew\nArthur\nBenjamin\nBernard\nJack\nTheodore\nWayne\nClifford\nDale\nDouglas\nEdwin\nHarvey\nMartin\nPeter\nRoland\nRoy\nWarren\nWilliam\nRobert\nJohn\nJames\nCharles\nDonald\nRichard\nGeorge\nJoseph\nEdward\nDavid\nPaul\nRonald\nThomas\nHarry\nRaymond\nFrancis\nWalter\nRalph\nFrank\nGerald\nHoward\nJack\nAnthony\nCarl\nFrederick\nHenry\nArthur\nEugene\nKenneth\nLawrence\nWayne\nAllen\nEarl\nFranklin\nLouis\nPeter\nWillard\nDaniel\nHarold\nMelvin\nMichael\nAlfred\nClarence\nPhilip\nBruce\nErnest\nHorace\nLeroy\nSamuel\nHarvey\nStanley\nTheodore\nAlbert\nBernard\nFred\nIrvin\nJerry\nPreston\nClayton\nDale\nGary\nIra\nLeon\nMarvin\nNelson\nNorman\nRoland\nRoy\nRussell\nVincent\nWilliam\nRobert\nJohn\nJames\nCharles\nRichard\nDonald\nGeorge\nJoseph\nEdward\nThomas\nDavid\nPaul\nFrancis\nRonald\nKenneth\nWalter\nHoward\nMichael\nSamuel\nCarl\nHenry\nClarence\nFrank\nHarold\nLawrence\nNorman\nRaymond\nAlbert\nGerald\nErnest\nEugene\nLouis\nArthur\nHarry\nLeonard\nRalph\nWayne\nJack\nBernard\nRoger\nStanley\nTheodore\nAlan\nAlfred\nAnthony\nDaniel\nFred\nLewis\nPhilip\nBenjamin\nBruce\nHarvey\nHerbert\nJay\nLarry\nLeon\nPeter\nRussell\nStephen\nAllen\nCarlton\nEarl\nElmer\nHerman\nLee\nLeroy\nVictor\nVincent\nArnold\nCalvin\nJerry\nLeslie\nMartin\nMarvin\nMelvin\nRoland\nJohn\nRobert\nWilliam\nJames\nCharles\nRichard\nDavid\nJoseph\nGeorge\nThomas\nRonald\nEdward\nDonald\nFrancis\nPaul\nHarry\nKenneth\nWalter\nMichael\nWayne\nDaniel\nGerald\nHoward\nLawrence\nRaymond\nFrank\nAlbert\nHarold\nAlfred\nCarl\nClarence\nEugene\nLarry\nLouis\nArthur\nHenry\nRoger\nSamuel\nAnthony\nEarl\nClifford\nJay\nLeroy\nRalph\nAllen\nEdwin\nHarvey\nHerbert\nJerome\nLeonard\nNorman\nRussell\nAlvin\nBernard\nFred\nStanley\nTheodore\nVincent\nAndrew\nBenjamin\nBruce\nCalvin\nDelbert\nDennis\nElwood\nFloyd\nFrederick\nGary\nGilbert\nJack\nJerry\nLester\nOtis\nPhilip\nRodney\nRoy\nWillard\nWilliam\nRobert\nJohn\nJames\nCharles\nRichard\nJoseph\nGeorge\nThomas\nDonald\nRonald\nDavid\nRaymond\nEdward\nKenneth\nHarry\nFrank\nPaul\nFrancis\nWalter\nMichael\nDaniel\nLawrence\nHenry\nLouis\nRalph\nAlbert\nAnthony\nEugene\nHoward\nNorman\nHarold\nWayne\nJack\nPeter\nCarl\nErnest\nRoger\nGene\nGerald\nStephen\nArthur\nClarence\nHarvey\nFranklin\nFred\nFrederick\nLarry\nSamuel\nTheodore\nVictor\nAlfred\nAlvin\nAndrew\nJerry\nAllen\nBenjamin\nClifford\nEarl\nBruce\nGary\nHerbert\nLee\nLewis\nStanley\nBarry\nDale\nEdgar\nEdwin\nJerome\nJon\nLeonard\nMarvin\nMelvin\nNelson\nPhilip\nRoland\nRoy\nTimothy\nJohn\nRobert\nWilliam\nJames\nRichard\nCharles\nGeorge\nThomas\nDavid\nJoseph\nRonald\nDonald\nEdward\nPaul\nHarry\nFrancis\nMichael\nKenneth\nWayne\nAnthony\nHoward\nFrank\nHenry\nLouis\nRaymond\nWalter\nAlbert\nArthur\nHarold\nLarry\nRalph\nStephen\nNorman\nDaniel\nLawrence\nAlfred\nGerald\nBernard\nFred\nFrederick\nPeter\nBruce\nGary\nPhilip\nSamuel\nCarl\nClarence\nFranklin\nHorace\nJerry\nLeroy\nEugene\nJay\nRoger\nStanley\nAllen\nEarl\nGene\nHerbert\nJack\nAlvin\nBenjamin\nPreston\nRoy\nRussell\nDouglas\nErnest\nGlenn\nHarvey\nLeonard\nLewis\nMark\nMartin\nRoland\nWillard\nCarlton\nClifford\nMelvin\nNelson\nRodney\nRonnie\nSylvester\nTheodore\nJohn\nWilliam\nRobert\nJames\nRichard\nCharles\nDavid\nJoseph\nThomas\nGeorge\nRonald\nEdward\nMichael\nDonald\nFrancis\nPaul\nWayne\nRaymond\nHarry\nFrank\nKenneth\nWalter\nEugene\nRalph\nLawrence\nPeter\nSamuel\nDouglas\nHenry\nHoward\nFrederick\nAlbert\nGerald\nArthur\nLarry\nMartin\nNorman\nBruce\nEarl\nLouis\nAnthony\nGary\nErnest\nFred\nHarold\nDennis\nStanley\nCarl\nJerry\nLeonard\nClarence\nDaniel\nPhilip\nBenjamin\nBernard\nHerbert\nLeon\nMark\nMelvin\nRoger\nAlan\nAllen\nBarry\nBill\nCalvin\nClifford\nFranklin\nGilbert\nGlen\nGordon\nRoland\nStephen\nVernon\nArnold\nGlenn\nHarvey\nHerman\nJay\nLeroy\nPhillip\nTerry\nAlfred\nAllan\nClark\nLeslie\nRoy\nTheodore\nVictor\nWilbur\nWilmer\nWilliam\nJohn\nRobert\nJames\nCharles\nJoseph\nRichard\nThomas\nRonald\nDavid\nEdward\nGeorge\nDonald\nPaul\nKenneth\nFrancis\nFrank\nMichael\nRaymond\nHarry\nWalter\nGerald\nHoward\nWayne\nArthur\nDaniel\nNorman\nEugene\nHenry\nRalph\nAlbert\nAnthony\nLouis\nDennis\nLarry\nEarl\nGary\nPhilip\nStephen\nDouglas\nHarold\nSamuel\nAllen\nErnest\nJack\nJerry\nLawrence\nLeonard\nAlfred\nAlvin\nCarl\nRoland\nBruce\nFrederick\nMartin\nMelvin\nRoger\nRoy\nSteven\nTerry\nAndrew\nBenjamin\nClarence\nHarvey\nStanley\nHerbert\nLee\nLewis\nPeter\nPhillip\nRonnie\nBernard\nFred\nJoe\nVincent\nBarry\nEdgar\nEdwin\nFranklin\nGlenn\nJimmy\nJon\nLeon\nLeroy\nMark\nPreston\nRussell\nTheodore\nAlan\nAllan\nCalvin\nClifford\nElwood\nEverett\nJay\nLester\nMilton\nNelson\nVictor\nWarren\nWillard\nWilmer\nWilliam\nJames\nRobert\nJohn\nRichard\nCharles\nJoseph\nDavid\nThomas\nDonald\nGeorge\nRonald\nEdward\nPaul\nKenneth\nWayne\nMichael\nRaymond\nWalter\nFrancis\nHoward\nHenry\nFrank\nHarry\nDaniel\nLarry\nLawrence\nLouis\nAlbert\nGary\nHarold\nSamuel\nAlfred\nClarence\nRalph\nDennis\nGerald\nStanley\nStephen\nAlan\nAllen\nPeter\nDouglas\nNorman\nAndrew\nAnthony\nErnest\nEugene\nRoland\nEdwin\nFranklin\nLeonard\nArthur\nEarl\nRoy\nBernard\nJeffrey\nMartin\nPhilip\nCarl\nLeroy\nLewis\nRoger\nVictor\nBruce\nFrederick\nHarvey\nHerbert\nJay\nLeon\nMelvin\nSteven\nTheodore\nVincent\nWillard\nWillie\nEddie\nGilbert\nJack\nJerry\nNicholas\nPhillip\nRay\nRodney\nBenjamin\nClifford\nElmer\nFred\nGlenn\nJoe\nLester\nMarvin\nMilton\nPatrick\nPreston\nRandall\nRonnie\nRussell\nRobert\nJohn\nWilliam\nJames\nRichard\nJoseph\nCharles\nThomas\nDavid\nGeorge\nDonald\nEdward\nMichael\nRonald\nPaul\nKenneth\nWalter\nAlbert\nFrank\nGerald\nHarry\nLawrence\nWayne\nFrancis\nStephen\nRalph\nGary\nHoward\nRoger\nAnthony\nEugene\nSamuel\nArthur\nDaniel\nHarold\nAllen\nDennis\nStanley\nErnest\nHenry\nLarry\nNorman\nRaymond\nAlan\nBruce\nEarl\nAndrew\nFranklin\nFred\nPeter\nDouglas\nEdwin\nFrederick\nLeon\nLouis\nCarl\nClarence\nHarvey\nMarvin\nPhillip\nRoy\nBarry\nMelvin\nTheodore\nJerome\nJerry\nLester\nWarren\nAlfred\nArnold\nLeslie\nLewis\nMartin\nPhilip\nTimothy\nCurtis\nFloyd\nHerbert\nJeffrey\nLeonard\nLeroy\nNicholas\nOliver\nRonnie\nVictor\nVincent\nBenjamin\nBernard\nCarlton\nElwood\nEverett\nGordon\nJack\nJay\nJoe\nLee\nMark\nOtis\nPatrick\nRodney\nSteve\nSteven\nVernon\nWillie\nJohn\nRobert\nWilliam\nJames\nRichard\nDavid\nCharles\nJoseph\nThomas\nDonald\nRonald\nGeorge\nMichael\nEdward\nKenneth\nPaul\nFrancis\nFrank\nWayne\nGary\nStephen\nRalph\nBruce\nHoward\nLarry\nDaniel\nHenry\nWalter\nHarry\nEugene\nAlan\nAlbert\nDouglas\nFrederick\nDennis\nStanley\nJerry\nLouis\nRoger\nBarry\nLawrence\nPeter\nSamuel\nCarl\nGerald\nLeroy\nRaymond\nAnthony\nEarl\nAlfred\nErnest\nGregory\nHarold\nPhilip\nArthur\nRonnie\nTerry\nAllen\nClarence\nJack\nLeonard\nReginald\nSteven\nTimothy\nDon\nJay\nJerome\nLeon\nLewis\nMark\nTheodore\nAndrew\nFred\nJeffrey\nWillard\nBrian\nDale\nFranklin\nMartin\nNorman\nChristopher\nHerbert\nJacob\nKarl\nMaurice\nNicholas\nVernon\nVictor\nWillie\nAlvin\nBenjamin\nEdwin\nGlenn\nJesse\nJoe\nJon\nPatrick\nPreston\nRandall\nRoland\nRoy\nRussell\nWarren\nWilliam\nJohn\nRobert\nJames\nDavid\nRichard\nCharles\nThomas\nJoseph\nGeorge\nRonald\nMichael\nEdward\nPaul\nDonald\nKenneth\nWayne\nDaniel\nBruce\nHarry\nLarry\nWalter\nGary\nDennis\nGerald\nFrank\nHenry\nArthur\nRalph\nRaymond\nStephen\nFrancis\nCarl\nRoger\nAlfred\nHoward\nLawrence\nSamuel\nSteven\nBarry\nEugene\nLouis\nDouglas\nAlan\nAnthony\nMark\nFranklin\nPeter\nAlbert\nLeonard\nGlenn\nJerry\nMartin\nRoy\nNorman\nTerry\nAllen\nGregory\nJeffrey\nPhilip\nPhillip\nRay\nClarence\nRussell\nVincent\nClifford\nHarold\nRoland\nDale\nFred\nLeroy\nTimothy\nBrian\nEarl\nFrederick\nGene\nLeon\nStanley\nVictor\nAlexander\nBenjamin\nBernard\nCarlton\nDon\nErnest\nHarvey\nHerbert\nIrvin\nJay\nMarvin\nPatrick\nWillie\nArnold\nChristopher\nCurtis\nEdwin\nGilbert\nGordon\nJack\nNelson\nNicholas\nRandall\nRonnie\nCalvin\nEdgar\nElton\nHerman\nKeith\nLee\nMorris\nNorris\nReginald\nSteve\nTom\nWillard\nJames\nRobert\nJohn\nWilliam\nCharles\nRichard\nDavid\nThomas\nJoseph\nMichael\nGeorge\nRonald\nEdward\nDonald\nPaul\nWayne\nGary\nLarry\nBruce\nKenneth\nStephen\nRaymond\nDaniel\nFrank\nFrancis\nEugene\nHarry\nLawrence\nWalter\nDennis\nGerald\nHenry\nAlbert\nAnthony\nHoward\nArthur\nSteven\nDouglas\nHarold\nAndrew\nBarry\nMark\nStanley\nPeter\nSamuel\nTheodore\nPhilip\nRalph\nFrederick\nHerbert\nRoger\nAlfred\nCarl\nDale\nGlenn\nJeffrey\nPhillip\nAlan\nBernard\nClarence\nLouis\nEarl\nGregory\nJerry\nMartin\nChristopher\nMelvin\nNorman\nAllen\nJay\nLeonard\nLewis\nRoy\nCraig\nEdwin\nErnest\nFranklin\nFred\nPatrick\nSteve\nArnold\nBrian\nClifford\nElmer\nHugh\nJackie\nJerome\nJon\nRodney\nTerry\nTimothy\nAlvin\nBenjamin\nCalvin\nJack\nMarvin\nRoland\nVaughn\nWesley\nWilson\nHerman\nKevin\nLeon\nLeslie\nPreston\nVernon\nVictor\nVincent\nWarren\nJohn\nJames\nWilliam\nRobert\nRichard\nThomas\nCharles\nDavid\nJoseph\nMichael\nRonald\nDonald\nPaul\nGeorge\nStephen\nEdward\nKenneth\nGary\nLarry\nFrancis\nLawrence\nSteven\nGerald\nDaniel\nDennis\nRaymond\nHarry\nWayne\nBruce\nAnthony\nHenry\nSamuel\nDouglas\nFrank\nAlbert\nGlenn\nStanley\nAndrew\nArthur\nFrederick\nWalter\nPeter\nGregory\nBarry\nHoward\nRoger\nAlan\nChristopher\nHarold\nJeffrey\nAlfred\nErnest\nKeith\nNorman\nPhilip\nRalph\nJerry\nMark\nVincent\nCarl\nEugene\nFranklin\nKevin\nMarvin\nPhillip\nRoland\nBenjamin\nEarl\nJerome\nJesse\nLeon\nLeonard\nLeroy\nMartin\nNicholas\nClarence\nDale\nEric\nLouis\nRoy\nTheodore\nWillie\nCarlton\nEdmund\nGilbert\nJack\nJay\nLewis\nPatrick\nSteve\nTyrone\nWarren\nAllen\nAlvin\nEdwin\nHarvey\nHerbert\nLeslie\nMelvin\nPreston\nRodger\nRodney\nTimothy\nAllan\nAlton\nBrian\nCalvin\nClifford\nDon\nJonathan\nLee\nLester\nMaurice\nRandolph\nRonnie\nRussell\nTerry\nVictor\nWallace\nWesley\nWilliam\nJohn\nRobert\nJames\nDavid\nRichard\nMichael\nThomas\nJoseph\nCharles\nGeorge\nRonald\nDonald\nPaul\nStephen\nEdward\nKenneth\nLarry\nWayne\nGary\nDaniel\nBruce\nHarry\nDennis\nSteven\nFrancis\nArthur\nAnthony\nFrank\nLawrence\nRalph\nGerald\nRaymond\nDouglas\nWalter\nHoward\nJeffrey\nGregory\nMark\nRoger\nPeter\nPhilip\nEarl\nAlfred\nCarl\nEugene\nHenry\nAlan\nAllen\nDale\nFrederick\nGlenn\nAlbert\nClifford\nJerry\nLouis\nNorman\nRussell\nErnest\nSamuel\nKevin\nChristopher\nClarence\nHarold\nJack\nLester\nPhillip\nBrian\nCalvin\nEric\nFranklin\nKeith\nLeroy\nPatrick\nRoy\nTimothy\nVictor\nBarry\nEdwin\nJay\nRoland\nTerry\nBernard\nCurtis\nFred\nHarvey\nMartin\nPreston\nStanley\nAndrew\nLee\nLeonard\nMaurice\nMelvin\nRay\nTheodore\nVincent\nWillie\nCarlton\nCecil\nJerome\nLewis\nMarvin\nReginald\nRodney\nScott\nVernon\nWarren\nAlexander\nArnold\nBenjamin\nEdgar\nGene\nGordon\nHerbert\nJesse\nJoel\nJohnny\nLonnie\nMike\nNicholas\nRandy\nJohn\nRobert\nWilliam\nJames\nMichael\nRichard\nDavid\nThomas\nJoseph\nCharles\nDonald\nEdward\nGeorge\nRonald\nGary\nStephen\nPaul\nSteven\nKenneth\nLarry\nBruce\nDaniel\nWayne\nDennis\nLawrence\nAnthony\nMark\nRaymond\nWalter\nDouglas\nFrancis\nCarl\nHarry\nGregory\nAlbert\nGerald\nFrank\nRoger\nArthur\nPeter\nJeffrey\nStanley\nBarry\nGlenn\nHoward\nChristopher\nRussell\nAndrew\nEric\nRalph\nTerry\nTimothy\nErnest\nAlan\nBernard\nEugene\nHarold\nJay\nLouis\nMartin\nNorman\nPhilip\nRoy\nFred\nHenry\nKevin\nPatrick\nTheodore\nAlfred\nClarence\nEarl\nFrederick\nNicholas\nBenjamin\nHerbert\nLee\nLewis\nAllen\nFranklin\nJack\nJerome\nRodney\nSamuel\nBrian\nCurtis\nDon\nGilbert\nJerry\nKeith\nLeonard\nLeroy\nLester\nRandolph\nTyrone\nVictor\nDale\nElwood\nGene\nJonathan\nPerry\nPhillip\nWarren\nAlexander\nClifford\nDana\nDwight\nElmer\nGeoffrey\nLeon\nMarc\nMilton\nScott\nVernon\nVincent\nWillard\nArnold\nCarlton\nCraig\nDanny\nDarryl\nFloyd\nGordon\nHarvey\nJoel\nJon\nLeslie\nMarvin\nNelson\nRandall\nRudolph\nWilliam\nRobert\nJohn\nJames\nDavid\nRichard\nMichael\nJoseph\nThomas\nCharles\nGary\nDonald\nStephen\nKenneth\nRonald\nPaul\nGeorge\nBruce\nEdward\nSteven\nDaniel\nMark\nWayne\nJeffrey\nFrancis\nFrank\nDennis\nLarry\nAnthony\nRalph\nGregory\nLawrence\nPeter\nTimothy\nCarl\nDouglas\nWalter\nFrederick\nSamuel\nClarence\nKeith\nKevin\nPhilip\nRaymond\nAlbert\nEugene\nHenry\nStanley\nChristopher\nGerald\nHarold\nHarry\nHoward\nMartin\nDale\nGlenn\nAlan\nErnest\nAndrew\nEric\nJerry\nPatrick\nAllen\nNorman\nAlfred\nArthur\nLewis\nLouis\nBarry\nBernard\nCraig\nEarl\nJay\nScott\nLeonard\nRussell\nBenjamin\nBrian\nDwight\nFranklin\nLee\nLeon\nNicholas\nRandy\nRay\nRoger\nTerry\nTheodore\nWarren\nAlexander\nRoland\nWillard\nCurtis\nFredrick\nJack\nJerome\nKarl\nLeroy\nLester\nVictor\nVincent\nHarvey\nHerbert\nJan\nJonathan\nLloyd\nMelvin\nReginald\nRoy\nWallace\nWillie\nCarlton\nChester\nClifford\nClifton\nDean\nEdgar\nFloyd\nGerard\nGlen\nHerman\nJon\nKirk\nPreston\nRandall\nRodney\nSidney\nSteve\nTyrone\nJohn\nRobert\nJames\nWilliam\nDavid\nMichael\nRichard\nThomas\nJoseph\nCharles\nDonald\nGary\nPaul\nStephen\nGeorge\nEdward\nRonald\nSteven\nMark\nLarry\nBruce\nDennis\nJeffrey\nKenneth\nDaniel\nWayne\nDouglas\nKevin\nLawrence\nGregory\nFrancis\nWalter\nRalph\nAnthony\nArthur\nBarry\nRoger\nFrank\nHarry\nKeith\nTimothy\nGerald\nAndrew\nBrian\nChristopher\nGlenn\nRaymond\nSamuel\nDale\nHarold\nMartin\nPeter\nAlan\nFrederick\nAllen\nEric\nHenry\nHoward\nLouis\nScott\nStanley\nTerry\nTheodore\nJay\nJerry\nPatrick\nPhilip\nCarl\nCraig\nEugene\nRandall\nAlbert\nCarlton\nClarence\nErnest\nHerbert\nPreston\nAlfred\nEdwin\nNorman\nRussell\nBenjamin\nFred\nGordon\nLee\nMitchell\nRandy\nClayton\nClifford\nEarl\nJerome\nLester\nPhillip\nRay\nRobin\nRoland\nVictor\nFranklin\nHarvey\nLeonard\nNicholas\nRodney\nRoy\nAlvin\nCalvin\nCurtis\nGene\nJeffery\nLeon\nLewis\nMarvin\nTerrence\nTyrone\nDon\nGilbert\nGuy\nLeslie\nNeil\nStewart\nStuart\nVincent\nClinton\nGarry\nKarl\nLeroy\nLloyd\nMarc\nMatthew\nMelvin\nNathan\nReginald\nRicky\nWarren\nWesley\nWillard\nJohn\nRobert\nJames\nWilliam\nDavid\nMichael\nRichard\nThomas\nCharles\nJoseph\nGary\nGeorge\nDonald\nPaul\nMark\nStephen\nSteven\nRonald\nEdward\nKenneth\nJeffrey\nDaniel\nBruce\nKevin\nWayne\nAnthony\nGregory\nTimothy\nLarry\nRaymond\nFrancis\nRalph\nWalter\nDennis\nHarry\nLawrence\nPeter\nFrank\nHoward\nAlan\nKeith\nRoger\nArthur\nEugene\nHarold\nJay\nPatrick\nSamuel\nAndrew\nErnest\nGlenn\nAlbert\nFrederick\nGerald\nHenry\nChristopher\nJonathan\nPhilip\nMartin\nRussell\nDouglas\nEric\nNorman\nBarry\nCarl\nDale\nScott\nClarence\nCraig\nCurtis\nTerry\nBenjamin\nLeonard\nRandall\nStanley\nVictor\nEdwin\nFranklin\nClifford\nHerbert\nJerry\nLeon\nMelvin\nRicky\nSteve\nHarvey\nJon\nLouis\nMarvin\nPhillip\nRandy\nRobin\nVernon\nAllan\nArnold\nBernard\nGordon\nGuy\nJesse\nJimmy\nAlfred\nBrian\nCalvin\nGlen\nLee\nLeroy\nLewis\nReginald\nRoy\nTheodore\nWillis\nAlvin\nBobby\nClifton\nDwight\nEarl\nFloyd\nFred\nJack\nJerome\nMarc\nMarcus\nRonnie\nVincent\nWillard\nAlexander\nAllen\nBradford\nBryan\nCarlton\nDana\nJeffery\nLester\nMatthew\nNathan\nNicholas\nRodney\nWarren\nJohn\nDavid\nJames\nMichael\nWilliam\nRobert\nJoseph\nRichard\nThomas\nCharles\nDonald\nStephen\nMark\nPaul\nGary\nEdward\nSteven\nKenneth\nRonald\nKevin\nGeorge\nJeffrey\nDennis\nBruce\nDaniel\nAnthony\nKeith\nWayne\nRaymond\nLarry\nTimothy\nWalter\nGregory\nDouglas\nFrancis\nHarry\nEugene\nFrank\nGlenn\nGerald\nChristopher\nLawrence\nPeter\nAlan\nEric\nAndrew\nCarl\nPhilip\nBrian\nSamuel\nRalph\nBarry\nCraig\nScott\nPatrick\nArthur\nHarold\nAlbert\nFrederick\nTerry\nRoger\nVictor\nWarren\nClifford\nVincent\nAlfred\nClarence\nFranklin\nHenry\nJonathan\nMartin\nNorman\nRoy\nRussell\nStanley\nBenjamin\nBernard\nCurtis\nEarl\nFred\nHoward\nLewis\nMarvin\nRodney\nAllen\nDale\nMaurice\nRandall\nRicky\nArnold\nChris\nErnest\nJack\nJay\nJerome\nJerry\nLee\nLouis\nMatthew\nRobin\nSteve\nLeonard\nLeroy\nNicholas\nTheodore\nTyrone\nDean\nDon\nJeffery\nJoe\nLeon\nMarshall\nPreston\nRandy\nRay\nReginald\nAlexander\nAllan\nCalvin\nCarlton\nElmer\nGerard\nGordon\nGuy\nKarl\nLeslie\nLester\nMelvin\nNathaniel\nNeal\nPhillip\nRonnie\nTerrence\nWillard\nAndre\nCarson\nDarrell\nDominick\nEdwin\nElwood\nGregg\nJesse\nMarc\nNorris\nRandolph\nWade\nWesley\nJohn\nRobert\nJames\nMichael\nDavid\nWilliam\nRichard\nThomas\nJoseph\nMark\nCharles\nDonald\nGary\nJeffrey\nStephen\nPaul\nRonald\nSteven\nGeorge\nKenneth\nBruce\nDaniel\nEdward\nKevin\nGregory\nAnthony\nDennis\nFrank\nDouglas\nKeith\nTimothy\nRaymond\nWalter\nFrancis\nWayne\nBrian\nLarry\nAndrew\nGerald\nBarry\nLawrence\nPeter\nSamuel\nCarl\nFrederick\nJerry\nScott\nTerry\nChristopher\nHenry\nRussell\nAlan\nEugene\nGlenn\nHoward\nHarold\nJeffery\nMatthew\nPatrick\nStanley\nAlbert\nJonathan\nMartin\nArthur\nEric\nTheodore\nLouis\nNorman\nPhilip\nRalph\nRoger\nRoy\nErnest\nJay\nRandall\nAllen\nBenjamin\nCraig\nCurtis\nDale\nHarry\nMarvin\nRandy\nCarlton\nClarence\nEarl\nLee\nLeonard\nPhillip\nWillard\nBryan\nEdwin\nElwood\nGlen\nHarvey\nKarl\nLeon\nVictor\nAlfred\nBernard\nDean\nFranklin\nGarry\nJerome\nMelvin\nAaron\nClifton\nDanny\nGregg\nGuy\nJesse\nJohnny\nJon\nMaurice\nNicholas\nRay\nRicky\nRodney\nRonnie\nClyde\nKurt\nMike\nRickey\nRobin\nTyrone\nVincent\nCalvin\nDon\nEdgar\nEverett\nGene\nLeslie\nMicheal\nReginald\nRoland\nStuart\nSylvester\nVernon\nAllan\nAlvin\nBradford\nClaude\nClifford\nDonnie\nElmer\nGerard\nGordon\nJeff\nJimmy\nKim\nLaurence\nLester\nSteve\nTommy\nWilson\nJohn\nJames\nRobert\nMichael\nDavid\nWilliam\nRichard\nMark\nCharles\nJoseph\nThomas\nKevin\nGeorge\nDonald\nJeffrey\nPaul\nRonald\nKenneth\nGary\nDaniel\nEdward\nSteven\nStephen\nGregory\nWayne\nBruce\nDouglas\nAnthony\nKeith\nBrian\nLarry\nEugene\nRaymond\nTimothy\nFrank\nLawrence\nScott\nChristopher\nPeter\nAndrew\nFrancis\nPatrick\nDennis\nEric\nHarry\nGlenn\nRoger\nWalter\nAlan\nGerald\nCarl\nSamuel\nBarry\nCurtis\nPhilip\nAlbert\nDale\nJonathan\nVincent\nJeffery\nErnest\nArthur\nJay\nRussell\nSteve\nCraig\nHerbert\nLouis\nNorman\nRobin\nDanny\nJerry\nMartin\nFrederick\nHenry\nLeonard\nMicheal\nRalph\nRandall\nRandy\nRicky\nTyrone\nAllen\nBernard\nLester\nPhillip\nBenjamin\nClarence\nHarold\nHoward\nNicholas\nTodd\nVictor\nAlfred\nDan\nDean\nGlen\nGordon\nGuy\nJack\nJon\nLeroy\nMarvin\nMatthew\nRoy\nTerry\nJeff\nJerome\nLeslie\nLewis\nRay\nRonnie\nTheodore\nAllan\nBryan\nCarlton\nDana\nDarrell\nEarl\nFranklin\nHarvey\nKarl\nLeon\nMike\nTom\nVernon\nAndy\nCalvin\nChester\nChris\nDarryl\nDrew\nDwight\nEdwin\nFred\nJoe\nKim\nNathan\nNathaniel\nRodney\nRoland\nStanley\nSylvester\nAlvin\nDallas\nDuane\nEddie\nForrest\nLee\nMarcus\nMarshall\nMelvin\nMilton\nReginald\nTerrance\nTerrence\nTony\nWarren\nWilbur\nWillard\nMichael\nJohn\nJames\nWilliam\nDavid\nRobert\nMark\nRichard\nThomas\nJoseph\nCharles\nSteven\nDonald\nJeffrey\nKevin\nPaul\nKenneth\nDaniel\nRonald\nStephen\nEdward\nWayne\nGeorge\nGary\nAnthony\nBruce\nBrian\nKeith\nTimothy\nGregory\nFrank\nChristopher\nRaymond\nDouglas\nPeter\nAndrew\nScott\nDennis\nLarry\nPatrick\nLawrence\nEric\nCarl\nHarry\nWalter\nTerry\nBarry\nGerald\nJerry\nJay\nAlan\nEugene\nGlenn\nDale\nRalph\nAllen\nFrancis\nHoward\nSteve\nVincent\nRicky\nRoy\nRussell\nStanley\nAlbert\nArthur\nCraig\nErnest\nHarold\nJeffery\nMatthew\nSamuel\nTony\nMartin\nNorman\nRoger\nRonnie\nJonathan\nLouis\nTheodore\nAlfred\nAlvin\nRandall\nDean\nBernard\nBryan\nCurtis\nGuy\nLewis\nMike\nPhillip\nRodney\nBilly\nBob\nChris\nClifford\nFranklin\nFred\nFrederick\nHenry\nJerome\nLee\nPhilip\nWillie\nBenjamin\nGordon\nLeonard\nLeroy\nMelvin\nRandy\nReginald\nRobin\nTim\nTyrone\nBill\nCalvin\nJack\nMicheal\nNicholas\nRick\nAlexander\nAndre\nBobby\nDarrell\nDarryl\nHerbert\nTerrence\nClarence\nClifton\nDerrick\nEarl\nEverett\nGilbert\nGlen\nHugh\nJoe\nRay\nVictor\nAubrey\nBret\nBrett\nCarlton\nCarmen\nDanny\nDuane\nEmanuel\nGarry\nGeoffrey\nHerman\nJeff\nJim\nJohnny\nJon\nKirk\nLeon\nLester\nNeal\nRoland\nTom\nJohn\nDavid\nMichael\nJames\nRobert\nWilliam\nRichard\nMark\nThomas\nJoseph\nCharles\nSteven\nJeffrey\nKevin\nDonald\nGeorge\nKenneth\nEdward\nTimothy\nAnthony\nStephen\nPaul\nDaniel\nRonald\nGary\nGregory\nWayne\nBrian\nChristopher\nBruce\nDennis\nScott\nDouglas\nLarry\nKeith\nPatrick\nAndrew\nMatthew\nRaymond\nFrank\nPhilip\nAlan\nFrancis\nHarry\nHoward\nWalter\nCraig\nPeter\nEugene\nJerry\nEric\nLawrence\nRandall\nCarl\nCurtis\nDale\nGlenn\nMike\nRicky\nSamuel\nHenry\nRalph\nRussell\nTyrone\nFrederick\nJay\nJeffery\nSteve\nGerald\nJonathan\nLouis\nVictor\nAllen\nNicholas\nStanley\nTerry\nVincent\nAlbert\nArthur\nBarry\nDean\nGene\nRandy\nDanny\nFred\nJerome\nMartin\nPhillip\nCalvin\nClarence\nDarrell\nHarold\nJack\nJeff\nJoe\nLee\nRoger\nBill\nChris\nDuane\nEarl\nKirk\nNorman\nRobin\nDarryl\nDave\nLeonard\nMelvin\nRodney\nRoy\nShawn\nTheodore\nBernard\nBobby\nBryan\nElmer\nErnest\nHerbert\nKenny\nMicheal\nRonnie\nTodd\nVernon\nAndre\nClifford\nDwayne\nGlen\nHerman\nLeroy\nMarvin\nPerry\nTony\nWarren\nWesley\nWillie\nAaron\nAlfred\nAngelo\nBenjamin\nBrett\nDon\nEddie\nGarry\nHarvey\nIvan\nJim\nJon\nKarl\nReginald\nStuart\nTerrence\nClyde\nEdwin\nElwood\nJimmy\nJohnny\nKen\nLeon\nLinwood\nMaurice\nMitchell\nNathan\nNathaniel\nPat\nRandolph\nRay\nRoland\nTerence\nWallace\nDavid\nMichael\nJohn\nRobert\nJames\nWilliam\nMark\nThomas\nRichard\nJoseph\nKenneth\nCharles\nSteven\nJeffrey\nKevin\nDonald\nPaul\nEdward\nGeorge\nTimothy\nGregory\nAnthony\nDaniel\nChristopher\nBrian\nRonald\nDouglas\nGary\nStephen\nBruce\nKeith\nDennis\nRaymond\nLarry\nEric\nPatrick\nGerald\nHarry\nMatthew\nFrancis\nWalter\nAndrew\nGlenn\nFrank\nPeter\nRicky\nWayne\nScott\nCraig\nDale\nPhilip\nRoger\nCarl\nCurtis\nFrederick\nJerry\nAlan\nChris\nArthur\nEugene\nMartin\nBarry\nLawrence\nVincent\nHenry\nJay\nMike\nJeffery\nDwayne\nRandy\nSteve\nTyrone\nAlbert\nHoward\nRalph\nRussell\nAlfred\nJeff\nLeonard\nRandall\nSamuel\nTerry\nBenjamin\nBryan\nErnest\nHarold\nJerome\nJoe\nNicholas\nNorman\nTom\nBill\nDean\nGene\nLewis\nPhillip\nRonnie\nRoy\nTheodore\nAaron\nBilly\nDanny\nHugh\nJohnny\nJonathan\nLouis\nRandolph\nShawn\nAllen\nDan\nDarrell\nEddie\nGreg\nJim\nJon\nKarl\nMarvin\nRoland\nSean\nVictor\nWillie\nAlvin\nAndre\nClarence\nDuane\nFranklin\nFred\nJack\nJimmy\nKenny\nLeon\nLeroy\nMelvin\nRodney\nTodd\nTony\nAlexander\nAndy\nBob\nBrett\nClifton\nDarryl\nEdgar\nElwood\nGordon\nGregg\nKirk\nMarc\nMarshall\nRay\nReginald\nWade\nWarren\nWilbert\nBernard\nBret\nCalvin\nChristian\nClark\nDrew\nEarl\nGuy\nJesse\nJoel\nKurt\nMaurice\nSheldon\nTed\nVernon\nJohn\nDavid\nMichael\nRobert\nJames\nWilliam\nMark\nRichard\nJoseph\nThomas\nKevin\nJeffrey\nCharles\nSteven\nDaniel\nKenneth\nDonald\nPaul\nAnthony\nTimothy\nChristopher\nGary\nBrian\nGregory\nStephen\nGeorge\nEdward\nRonald\nBruce\nDouglas\nAndrew\nWayne\nKeith\nRaymond\nScott\nFrancis\nAlan\nMatthew\nDennis\nPeter\nDale\nGlenn\nPatrick\nCarl\nEric\nLarry\nWalter\nRicky\nTerry\nBarry\nJeff\nVincent\nFrank\nHarry\nLawrence\nLouis\nSamuel\nAlbert\nDean\nGerald\nRalph\nHoward\nJeffery\nStanley\nVictor\nCraig\nMartin\nNorman\nPhilip\nRoger\nRussell\nCurtis\nHenry\nJonathan\nRandy\nBill\nDarryl\nEugene\nJay\nJerry\nKarl\nTodd\nAllen\nBryan\nDwayne\nFrederick\nBenjamin\nDuane\nErnest\nMike\nCalvin\nDanny\nFred\nSteve\nTroy\nAlvin\nArthur\nBernard\nChris\nFranklin\nGreg\nHarold\nHerbert\nJim\nRoy\nTom\nWarren\nBilly\nDarren\nJerome\nLeon\nRandall\nRobin\nVernon\nClarence\nJack\nJesse\nJon\nLeonard\nMelvin\nNicholas\nPhillip\nRoland\nTheodore\nTyrone\nAntonio\nBobby\nClaude\nDarrell\nGlen\nGuy\nKim\nRodney\nShawn\nTony\nAlfred\nBob\nEarl\nEdwin\nFloyd\nGeoffrey\nGerard\nHugh\nJoe\nJohnny\nMarc\nMarvin\nPreston\nSean\nWillie\nAaron\nAlexander\nBradley\nBrett\nChester\nClifton\nEddie\nGarry\nGordon\nJoel\nLewis\nMaurice\nMillard\nMilton\nMitchell\nNathaniel\nNeal\nNelson\nRandal\nReginald\nRick\nRonnie\nSam\nSidney\nStewart\nTim\nTracy\nWade\nWesley\nJohn\nDavid\nMichael\nRobert\nJames\nWilliam\nMark\nThomas\nRichard\nJoseph\nJeffrey\nSteven\nKevin\nCharles\nKenneth\nChristopher\nDaniel\nPaul\nTimothy\nAnthony\nGary\nBrian\nEdward\nScott\nDonald\nGeorge\nStephen\nDouglas\nGregory\nRonald\nEric\nBruce\nAndrew\nGlenn\nKeith\nPatrick\nLarry\nAlan\nVincent\nDarryl\nJeff\nPeter\nWayne\nDennis\nFrancis\nCraig\nRaymond\nLawrence\nMatthew\nChris\nJeffery\nLouis\nSteve\nWalter\nFrank\nFrederick\nRalph\nRoger\nTerry\nCarl\nEugene\nHarry\nJonathan\nRandall\nBryan\nDale\nHenry\nHoward\nJerry\nMike\nRicky\nCurtis\nMartin\nBarry\nBenjamin\nMicheal\nPhilip\nSamuel\nTodd\nTroy\nAllen\nClarence\nDean\nDwayne\nGerald\nGreg\nRandy\nAlbert\nArthur\nErnest\nLeroy\nReginald\nShawn\nTracy\nFred\nJack\nJay\nJimmy\nLee\nTony\nAlfred\nBill\nBob\nCalvin\nDanny\nJon\nMarvin\nMelvin\nTheodore\nWesley\nBilly\nBobby\nBradley\nDon\nGlen\nHarold\nJerome\nLewis\nNathan\nNicholas\nPhillip\nSean\nEarl\nEddie\nJohnny\nLeonard\nNorman\nOrlando\nRonnie\nVictor\nAaron\nAdam\nDana\nDarrell\nDuane\nJim\nJoe\nKelly\nKenny\nLeslie\nRandolph\nRobin\nStanley\nTom\nVernon\nBernard\nClifford\nEdwin\nEverett\nGarry\nHerbert\nKent\nLance\nLeon\nMarcus\nMaurice\nMilton\nMyron\nPerry\nRodney\nRoy\nRussell\nStuart\nTyrone\nWillis\nDavid\nJohn\nMichael\nRobert\nJames\nWilliam\nMark\nRichard\nJoseph\nThomas\nCharles\nJeffrey\nKevin\nBrian\nPaul\nAnthony\nChristopher\nSteven\nGregory\nKenneth\nTimothy\nScott\nRonald\nDonald\nStephen\nEdward\nGary\nDaniel\nAndrew\nGeorge\nEric\nKeith\nPatrick\nBruce\nRaymond\nDennis\nWayne\nDouglas\nMatthew\nWalter\nHoward\nLarry\nFrank\nGlenn\nPeter\nCarl\nGerald\nPhilip\nSteve\nLouis\nRoger\nDean\nFrancis\nPhillip\nRandy\nTodd\nAlan\nDale\nErnest\nHarry\nJonathan\nVincent\nBryan\nCurtis\nDarryl\nHenry\nJeffery\nJerry\nRussell\nTroy\nAllen\nLawrence\nMike\nSamuel\nEugene\nFrederick\nRalph\nCraig\nDanny\nDerrick\nMartin\nTerry\nArthur\nBarry\nChris\nDwayne\nJay\nNorman\nVictor\nAlbert\nGreg\nJeff\nRandall\nRicky\nWarren\nBobby\nClarence\nDon\nJerome\nMicheal\nTim\nAndre\nBill\nGordon\nKurt\nLee\nMarvin\nMelvin\nShawn\nWillie\nAaron\nAlfred\nBrent\nBrett\nDarren\nEdwin\nFranklin\nHarold\nJohnny\nLeon\nLeonard\nLewis\nMaurice\nSean\nStanley\nStewart\nTom\nClifford\nDuane\nJesse\nJoe\nMarc\nNathaniel\nNelson\nNicholas\nRodney\nRoy\nTheodore\nTommy\nBenjamin\nCalvin\nClifton\nDarrell\nEarl\nEdgar\nFred\nGlen\nHerbert\nJack\nJody\nJon\nLeroy\nMario\nTony\nVernon\nClinton\nDana\nDarin\nEddie\nEdmund\nGuy\nJessie\nKendall\nKirk\nLester\nOrlando\nPreston\nReginald\nRick\nRoland\nTerrence\nWendell\nWillard\nJohn\nMichael\nRobert\nDavid\nJames\nWilliam\nMark\nRichard\nJeffrey\nThomas\nKevin\nCharles\nJoseph\nKenneth\nPaul\nBrian\nDaniel\nChristopher\nSteven\nTimothy\nAnthony\nGeorge\nScott\nEdward\nDonald\nStephen\nAndrew\nRonald\nGregory\nKeith\nGary\nEric\nDouglas\nPatrick\nTodd\nBruce\nWayne\nFrank\nCurtis\nLawrence\nPeter\nWalter\nAlan\nFrancis\nMatthew\nRaymond\nHarry\nVincent\nCarl\nBryan\nDennis\nLarry\nSamuel\nBarry\nCraig\nDean\nShawn\nGerald\nAlfred\nDarryl\nHenry\nLee\nRoger\nArthur\nDale\nDanny\nDwayne\nGlenn\nJeffery\nJerry\nRalph\nTerry\nAndre\nJack\nJeff\nRandall\nRandy\nChris\nJonathan\nLouis\nRussell\nSteve\nHoward\nJoel\nMarvin\nNicholas\nPhilip\nRodney\nTony\nAlbert\nAllen\nDarrell\nEarl\nErnest\nEugene\nFranklin\nLewis\nMartin\nMike\nVernon\nBenjamin\nDarren\nHarold\nMaurice\nVictor\nDerrick\nErik\nJay\nJoe\nJohnny\nAlexander\nBernard\nBradley\nDerek\nDominick\nDuane\nEdwin\nJamie\nKurt\nLeonard\nPhillip\nReginald\nRicky\nRoy\nSean\nTheodore\nTim\nTroy\nTyrone\nWillie\nAaron\nArnold\nBobby\nChristian\nFrederick\nGlen\nGreg\nJerome\nMicheal\nNeil\nTerence\nTerrence\nTracy\nBill\nBlair\nBrent\nClarence\nClinton\nDaryl\nEddie\nGordon\nGregg\nGuy\nHugh\nJason\nKarl\nKen\nKirk\nLeon\nNathan\nNathaniel\nNorman\nRay\nRoland\nRonnie\nStanley\nStuart\nWendell\nJohn\nDavid\nMichael\nRobert\nJames\nWilliam\nThomas\nRichard\nCharles\nMark\nJoseph\nJeffrey\nChristopher\nKevin\nSteven\nPaul\nBrian\nScott\nTimothy\nEdward\nStephen\nDaniel\nEric\nAnthony\nRonald\nKenneth\nDonald\nAndrew\nGregory\nGary\nGeorge\nKeith\nDouglas\nMatthew\nBruce\nPatrick\nFrank\nPeter\nRodney\nVincent\nWayne\nBryan\nFrancis\nRaymond\nShawn\nCarl\nPhilip\nWalter\nCraig\nRussell\nTodd\nAlan\nAllen\nDennis\nHoward\nLarry\nHarry\nJeffery\nJerry\nMarvin\nSean\nArthur\nBarry\nEugene\nNicholas\nRoger\nAlbert\nDarrin\nJonathan\nRandy\nRoy\nAaron\nDarren\nDarryl\nGlenn\nHenry\nLeonard\nRicky\nTyrone\nWarren\nCalvin\nDale\nDwayne\nLouis\nMartin\nRandall\nWillie\nDanny\nJon\nLawrence\nMelvin\nPhillip\nTerry\nTheodore\nTroy\nClarence\nEarl\nFrederick\nHerbert\nLeroy\nSteve\nVictor\nBernard\nBilly\nDerek\nHarold\nJay\nJerome\nMicheal\nRalph\nRoland\nStuart\nTony\nAlfred\nAntonio\nChris\nCurtis\nErnest\nFranklin\nGerald\nGordon\nMaurice\nNorman\nPreston\nSamuel\nAlexander\nBobby\nDean\nDuane\nErik\nEverett\nFred\nGlen\nJason\nJohnny\nJose\nLeon\nMitchell\nTerence\nAdam\nAndre\nAngelo\nBrad\nDana\nDarnell\nGuy\nHarvey\nHerman\nJesse\nJoe\nJoel\nKelly\nKurt\nLewis\nMarc\nMorris\nNick\nRandolph\nRonnie\nStanley\nMichael\nRobert\nJohn\nDavid\nJames\nWilliam\nMark\nJoseph\nRichard\nChristopher\nJeffrey\nThomas\nBrian\nCharles\nKevin\nTimothy\nSteven\nAnthony\nKenneth\nPaul\nEric\nScott\nStephen\nDaniel\nGeorge\nMatthew\nEdward\nAndrew\nGregory\nDonald\nRonald\nKeith\nPeter\nDouglas\nFrank\nCarl\nPatrick\nGary\nRodney\nSamuel\nShawn\nBryan\nDarryl\nFrancis\nTodd\nVincent\nCraig\nCurtis\nDennis\nGerald\nSean\nBruce\nRoger\nEugene\nRaymond\nGlenn\nHoward\nLarry\nRalph\nLawrence\nHarold\nJeffery\nJon\nMarvin\nRandy\nRussell\nWalter\nWayne\nAlan\nBarry\nDarrin\nDean\nHarry\nHenry\nTheodore\nTroy\nAlbert\nAlfred\nDale\nMartin\nArthur\nClarence\nDarren\nEdwin\nPhilip\nWarren\nWillie\nChris\nLee\nMaurice\nRoy\nAllen\nAngelo\nGlen\nJerry\nJonathan\nMelvin\nRicky\nVictor\nAdam\nAndre\nDon\nDwayne\nFranklin\nFrederick\nJack\nJason\nJimmy\nLeonard\nLeroy\nLouis\nNicholas\nTracy\nTyrone\nBernard\nBradley\nDuane\nJerome\nJoe\nLeon\nLester\nRandall\nRonnie\nTim\nWesley\nAlexander\nBrett\nCalvin\nDana\nDanny\nDarin\nEarl\nErnest\nFred\nJay\nJeff\nJohnny\nLewis\nNorman\nReginald\nSteve\nStuart\nTerrance\nTerry\nWade\nMichael\nJohn\nJames\nDavid\nRobert\nWilliam\nMark\nJoseph\nRichard\nChristopher\nBrian\nThomas\nKevin\nCharles\nSteven\nJeffrey\nDaniel\nPaul\nTimothy\nAnthony\nDonald\nKenneth\nMatthew\nStephen\nAndrew\nScott\nRonald\nGeorge\nEdward\nEric\nDouglas\nKeith\nGregory\nGary\nPatrick\nPeter\nWayne\nBryan\nCraig\nShawn\nBruce\nSean\nTroy\nWalter\nDean\nDennis\nFrancis\nFrederick\nJonathan\nNorman\nRussell\nDarren\nEugene\nGlenn\nPhillip\nVincent\nRodney\nJeffery\nLarry\nMarvin\nSamuel\nAlan\nCurtis\nFrank\nLawrence\nPhilip\nRoger\nTodd\nAndre\nCarl\nHarry\nHenry\nJerry\nMaurice\nAlbert\nJon\nLeonard\nMartin\nRalph\nAllen\nDale\nDarryl\nErnest\nJay\nJesse\nLouis\nReginald\nRoy\nBarry\nDwayne\nFranklin\nFred\nMike\nNicholas\nRaymond\nSteve\nTheodore\nVictor\nBenjamin\nCalvin\nCarlton\nDerrick\nHoward\nJeff\nJohnny\nKent\nKirk\nKurt\nMarcus\nNathaniel\nPreston\nRandall\nTracy\nTyrone\nAdam\nAlvin\nArthur\nChris\nGerald\nJerome\nJimmy\nJoe\nKarl\nLewis\nRandy\nStanley\nBrett\nClarence\nDarrell\nGuy\nHarold\nJack\nJason\nJoshua\nLuis\nMarc\nMario\nMelvin\nRoland\nStuart\nTim\nTimmy\nTony\nWillie\nMichael\nRobert\nJohn\nJames\nDavid\nWilliam\nChristopher\nMark\nThomas\nRichard\nJoseph\nBrian\nCharles\nJeffrey\nScott\nStephen\nKevin\nSteven\nAnthony\nMatthew\nRonald\nPaul\nKenneth\nDaniel\nEric\nTimothy\nEdward\nGregory\nDonald\nGeorge\nKeith\nDouglas\nAndrew\nPatrick\nPeter\nJonathan\nDennis\nFrank\nSean\nPhillip\nShawn\nWayne\nBryan\nLarry\nRaymond\nJay\nRussell\nBruce\nFrancis\nGary\nSamuel\nTodd\nVincent\nCraig\nRodney\nDean\nGerald\nRalph\nDwayne\nHenry\nHoward\nTroy\nAlbert\nEugene\nLawrence\nTheodore\nWalter\nAaron\nAlfred\nBarry\nMarvin\nRandall\nAllen\nClarence\nCurtis\nDarren\nFrederick\nPhilip\nAlan\nAndre\nBrent\nCarl\nEarl\nHarry\nJohnny\nLee\nNathan\nTony\nChristian\nDale\nErnest\nJason\nJeffery\nJoel\nKelly\nMartin\nRandy\nReginald\nRoger\nTerry\nVernon\nVictor\nBenjamin\nChris\nDarrell\nDarryl\nDerek\nGlen\nJerome\nJimmy\nJose\nLouis\nNorman\nRyan\nArthur\nBobby\nBrett\nCarlos\nDarnell\nDuane\nFranklin\nFred\nGlenn\nJerry\nKyle\nLester\nLuke\nMelvin\nNicholas\nRoy\nStanley\nArnold\nBernard\nCalvin\nChad\nClifford\nDaryl\nEdwin\nErik\nGeoffrey\nGordon\nHarold\nHarvey\nJesse\nKarl\nKirk\nLeonard\nMarshall\nPerry\nPreston\nRay\nRicky\nSteve\nTerrence\nWallace\nMichael\nJohn\nRobert\nDavid\nWilliam\nJames\nChristopher\nBrian\nMark\nRichard\nJeffrey\nJoseph\nCharles\nThomas\nScott\nDaniel\nKevin\nSteven\nTimothy\nPaul\nStephen\nAnthony\nEric\nGregory\nMatthew\nRonald\nEdward\nAndrew\nKenneth\nGeorge\nPatrick\nDonald\nDouglas\nKeith\nWayne\nGary\nPeter\nCraig\nFrank\nSean\nShawn\nTodd\nJonathan\nLarry\nRaymond\nTroy\nBryan\nJason\nWalter\nBruce\nFrancis\nCarl\nLouis\nMarc\nVincent\nAlan\nJerry\nMartin\nRussell\nAaron\nAlbert\nAndre\nDale\nDennis\nJeffery\nLawrence\nPhilip\nCurtis\nEugene\nGerald\nRalph\nStanley\nChris\nFrederick\nMarvin\nRodney\nSamuel\nAllen\nBarry\nBenjamin\nCorey\nGlenn\nMicheal\nTyrone\nWillie\nBilly\nBobby\nDerrick\nDwayne\nFranklin\nGlen\nHarry\nHenry\nMelvin\nNicholas\nNorman\nRandall\nRoger\nTerry\nTheodore\nAlfred\nBradley\nDarrin\nDerek\nErik\nErnest\nGeoffrey\nJay\nRoy\nAdam\nArthur\nClarence\nDarren\nDean\nDuane\nJerome\nKarl\nLee\nLeon\nLeroy\nNathan\nTony\nAlex\nAlvin\nAntonio\nBrent\nCarlton\nChad\nDarnell\nDemetrius\nEddie\nHerbert\nHoward\nJesse\nJoel\nKent\nLance\nMilton\nPhillip\nRandy\nTerrence\nWade\nAlexander\nBrett\nDarin\nDarryl\nEarl\nJamie\nJohnnie\nJoshua\nLewis\nLuis\nMaurice\nNeil\nOrlando\nReginald\nShannon\nSteve\nVictor\nWallace\nMichael\nJohn\nRobert\nJames\nDavid\nWilliam\nChristopher\nJoseph\nMark\nRichard\nJeffrey\nThomas\nBrian\nCharles\nKevin\nMatthew\nStephen\nDaniel\nAnthony\nScott\nSteven\nDonald\nEric\nPaul\nTimothy\nAndrew\nEdward\nGregory\nRonald\nKeith\nKenneth\nGeorge\nPatrick\nShawn\nCraig\nSean\nJason\nWayne\nDouglas\nDennis\nRaymond\nLarry\nTodd\nGary\nHarry\nJonathan\nLawrence\nGerald\nMarcus\nMarc\nAaron\nTroy\nWalter\nBryan\nCarl\nFrank\nBruce\nFrancis\nJeffery\nRussell\nAndre\nDarren\nFrederick\nHenry\nJerry\nVincent\nAlbert\nDean\nJeremy\nPeter\nRalph\nRoger\nTerry\nAdam\nChris\nCurtis\nFred\nMartin\nSamuel\nAlan\nArthur\nBenjamin\nBrent\nDerek\nDerrick\nDwayne\nLouis\nRodney\nBarry\nCorey\nEarl\nEdwin\nErik\nGlenn\nJon\nKarl\nLance\nPhillip\nStanley\nVictor\nWesley\nAlfred\nAlvin\nBrett\nChad\nJay\nJesse\nJose\nLeroy\nMaurice\nRandall\nRicky\nTravis\nBrandon\nChristian\nGene\nGlen\nJerome\nJimmy\nJoel\nJoshua\nNorman\nRoy\nWarren\nAlexander\nAllen\nAntonio\nBradley\nCalvin\nClinton\nDale\nDanny\nDarrell\nDuane\nHoward\nLee\nMelvin\nNathan\nNeil\nPhilip\nShannon\nTheodore\nTony\nTyrone\nClarence\nClifford\nDaryl\nErnest\nForrest\nGeoffrey\nHarold\nJamie\nLeon\nMarvin\nMike\nPreston\nRoland\nTerrance\nWillie\nMichael\nJohn\nDavid\nJames\nRobert\nWilliam\nBrian\nChristopher\nJoseph\nThomas\nRichard\nScott\nJeffrey\nSteven\nMatthew\nCharles\nEric\nMark\nDaniel\nKevin\nTimothy\nJason\nGregory\nEdward\nPaul\nStephen\nRonald\nSean\nJonathan\nKeith\nShawn\nAnthony\nKenneth\nAndrew\nDonald\nWayne\nGeorge\nDouglas\nAaron\nPatrick\nPeter\nGary\nRaymond\nTodd\nBryan\nAdam\nWalter\nCarl\nCraig\nFrank\nVincent\nChad\nDennis\nChristian\nLarry\nLawrence\nSamuel\nTroy\nAlbert\nGerald\nMartin\nAntonio\nJerry\nMarc\nBruce\nDerrick\nErik\nVictor\nCorey\nDarren\nHarry\nLeonard\nRussell\nAlan\nArthur\nBenjamin\nDwayne\nJose\nRodney\nRoger\nTheodore\nAlvin\nCurtis\nDerek\nErnest\nFrancis\nFrederick\nGlenn\nJack\nJeremy\nJermaine\nJesse\nLeroy\nNicholas\nPhilip\nPhillip\nRalph\nTerry\nAndre\nBrent\nDwight\nEarl\nJoshua\nMarcus\nMarvin\nNathan\nRoy\nRyan\nTyrone\nAlexander\nBrad\nClarence\nDarryl\nDuane\nHenry\nJoel\nKyle\nNathaniel\nNeil\nNorman\nRoland\nStanley\nTerrence\nAlfred\nAllen\nBarry\nDean\nEdwin\nEugene\nGarrett\nGeoffrey\nJohnny\nLee\nLouis\nMaurice\nRandall\nSeth\nWarren\nCalvin\nChris\nCornelius\nDale\nDaryl\nErick\nFranklin\nHarvey\nJamie\nJay\nJeffery\nJerome\nKelly\nLester\nLewis\nPreston\nRandy\nShane\nStuart\nTravis\nWade\nWillie\nMichael\nJohn\nRobert\nChristopher\nJames\nDavid\nWilliam\nBrian\nJoseph\nCharles\nScott\nEric\nJeffrey\nRichard\nThomas\nMark\nMatthew\nJason\nSteven\nDaniel\nAnthony\nKevin\nStephen\nAndrew\nKeith\nShawn\nGregory\nKenneth\nDonald\nJonathan\nEdward\nSean\nPaul\nRonald\nTimothy\nCraig\nDouglas\nGeorge\nGary\nPeter\nRyan\nBenjamin\nChad\nMarc\nAdam\nDennis\nLarry\nPhillip\nShane\nBruce\nTodd\nTroy\nFrank\nSamuel\nVincent\nAaron\nAllen\nBryan\nJoshua\nPatrick\nCarl\nDerek\nJeremy\nJesse\nLawrence\nRodney\nBrandon\nErik\nGerald\nLouis\nRaymond\nArthur\nBrent\nHoward\nJamie\nJerry\nPhilip\nTyrone\nWayne\nAlbert\nChristian\nDuane\nFrederick\nHarry\nVictor\nBarry\nBrett\nDarren\nDerrick\nJermaine\nJoel\nJon\nLee\nMarcus\nMarvin\nNicholas\nRalph\nRoy\nRussell\nShannon\nWalter\nAlexander\nCurtis\nEugene\nGlenn\nLewis\nNathan\nReginald\nTheodore\nAlfred\nAndre\nChester\nClarence\nDale\nHenry\nHerbert\nJeffery\nJoe\nJustin\nMartin\nMaurice\nRay\nRicky\nWillie\nAlan\nBilly\nCorey\nDarrell\nDean\nFrancis\nGabriel\nIsaac\nIvan\nJacob\nJose\nMarlon\nRamon\nRandall\nRoger\nRonnie\nTony\nTravis\nWade\nWesley\nMichael\nChristopher\nJames\nDavid\nWilliam\nBrian\nRobert\nJohn\nJason\nThomas\nJoseph\nMark\nRichard\nMatthew\nDaniel\nEric\nScott\nKevin\nJeffrey\nCharles\nAnthony\nSteven\nSean\nAndrew\nPaul\nEdward\nShawn\nTimothy\nKenneth\nStephen\nGregory\nDonald\nRonald\nJonathan\nKeith\nRaymond\nDouglas\nJoshua\nRyan\nGeorge\nBryan\nCraig\nGary\nPatrick\nAdam\nLarry\nPeter\nRalph\nBenjamin\nPhillip\nTodd\nAaron\nJermaine\nChad\nFrancis\nFrank\nJeremy\nShane\nAlbert\nHenry\nMarc\nSamuel\nFrederick\nJerry\nTyrone\nAllen\nDerek\nErnest\nHarold\nBrent\nCarl\nJeffery\nNathaniel\nWayne\nAndre\nBrett\nChristian\nJamie\nJustin\nLawrence\nLuis\nNicholas\nRoy\nShannon\nTroy\nWalter\nBarry\nBruce\nClarence\nCurtis\nDennis\nDerrick\nEugene\nGerald\nHarry\nMarcus\nPhilip\nRandy\nRicky\nVincent\nAlfred\nDamon\nGeoffrey\nHoward\nJay\nJerome\nJesse\nJohnny\nMarvin\nMaurice\nNathan\nNorman\nRodney\nTerry\nWesley\nBrandon\nDale\nDarrell\nDuane\nEdwin\nErik\nGlenn\nHarvey\nJon\nJose\nJuan\nLee\nMartin\nMelvin\nMicheal\nRandall\nTerrance\nTony\nVictor\nMichael\nJohn\nChristopher\nJames\nDavid\nBrian\nRobert\nWilliam\nJason\nMatthew\nDaniel\nMark\nCharles\nEric\nJoseph\nKevin\nJeffrey\nThomas\nTimothy\nRichard\nAnthony\nSteven\nScott\nStephen\nSean\nEdward\nAndrew\nPaul\nGregory\nJonathan\nShawn\nDonald\nKenneth\nGeorge\nDennis\nKeith\nRonald\nTodd\nAaron\nBenjamin\nBryan\nJoshua\nAdam\nRyan\nCarl\nDouglas\nPeter\nPhillip\nSamuel\nGary\nJeremy\nHarry\nPatrick\nTroy\nAlexander\nDamon\nJermaine\nLouis\nRaymond\nChad\nCraig\nShane\nAndre\nErik\nHoward\nLarry\nMarvin\nTheodore\nWayne\nDwayne\nHenry\nJamie\nJerry\nJustin\nLawrence\nPhilip\nRussell\nShannon\nAlbert\nDale\nFrank\nIan\nJose\nMartin\nVincent\nBruce\nCameron\nChristian\nClarence\nFrancis\nJay\nJoel\nMarc\nPreston\nTravis\nAllen\nBarry\nCorey\nDarius\nDerek\nEarl\nJacob\nJeffery\nLeon\nLeonard\nNicholas\nTyrone\nVictor\nWalter\nWesley\nBrent\nBrett\nCurtis\nErnest\nRalph\nTerrence\nTerry\nAlan\nAlfred\nArthur\nBrandon\nDarrell\nDerrick\nDrew\nDwight\nEdwin\nFranklin\nGeoffrey\nGlenn\nJesse\nJohnny\nJon\nLeroy\nLuis\nMarcus\nNakia\nRandall\nReginald\nRoy\nSeth\nShaun\nMichael\nChristopher\nJames\nDavid\nRobert\nJohn\nWilliam\nBrian\nJason\nMatthew\nJoseph\nDaniel\nMark\nEric\nThomas\nKevin\nRichard\nJeffrey\nCharles\nAnthony\nAndrew\nTimothy\nGregory\nScott\nShawn\nEdward\nRonald\nSteven\nDonald\nJoshua\nBenjamin\nJonathan\nKenneth\nPaul\nStephen\nGary\nKeith\nAaron\nPatrick\nRyan\nTodd\nGeorge\nBryan\nJeremy\nFrank\nLarry\nNathan\nSean\nJamie\nRaymond\nChad\nCraig\nDennis\nPeter\nSamuel\nWayne\nDouglas\nJerry\nAdam\nJerome\nArthur\nBrandon\nRoger\nWalter\nAndre\nBruce\nCarl\nDwayne\nLawrence\nPhilip\nRodney\nShane\nAlbert\nAllen\nBrett\nDamon\nFrederick\nHarold\nIan\nNicholas\nRandy\nChristian\nCorey\nEdwin\nGerald\nHarry\nJesse\nJustin\nMaurice\nAlexander\nErik\nErnest\nJohnny\nLeonard\nMarc\nNeil\nRussell\nStanley\nBarry\nBradley\nBrent\nClifford\nDerek\nEugene\nFrancis\nFranklin\nJacob\nJermaine\nJose\nLee\nMicheal\nVictor\nVincent\nAlfred\nBernard\nBilly\nCarlos\nCarlton\nClifton\nDion\nDuane\nGeoffrey\nGordon\nHenry\nJackie\nJay\nKurt\nLouis\nNathaniel\nNeal\nPhillip\nRonnie\nTrevor\nTroy\nWade\nMichael\nChristopher\nJohn\nDavid\nJason\nJames\nRobert\nBrian\nWilliam\nMatthew\nDaniel\nMark\nKevin\nThomas\nJoseph\nCharles\nRichard\nEric\nJeffrey\nAnthony\nStephen\nAndrew\nSteven\nScott\nTimothy\nShawn\nRyan\nGregory\nPaul\nJoshua\nJonathan\nKenneth\nAaron\nBryan\nEdward\nKeith\nRonald\nJeremy\nSean\nBenjamin\nGeorge\nSamuel\nAdam\nDonald\nGary\nChad\nRaymond\nPeter\nCraig\nNicholas\nPhilip\nNathan\nShane\nPatrick\nTodd\nDouglas\nFrederick\nFrank\nHenry\nLarry\nMartin\nAndre\nDamon\nDwayne\nFrancis\nJustin\nLouis\nTravis\nVincent\nBrad\nDennis\nJamie\nJuan\nRoger\nTerry\nBrandon\nErik\nErnest\nHarold\nJeffery\nJoel\nKyle\nRussell\nWayne\nAlexander\nBradley\nBrett\nBruce\nCarlton\nClifford\nJerry\nJesse\nJohnny\nJose\nLance\nLawrence\nLee\nRandall\nWalter\nZachary\nAlbert\nArthur\nChristian\nDarnell\nEugene\nGeoffrey\nGlenn\nJermaine\nKristopher\nNathaniel\nSeth\nTroy\nAllen\nAntonio\nAntwine\nArnold\nBrent\nCarl\nCory\nCurtis\nDanny\nDarren\nDerrick\nEdwin\nHarry\nHarvey\nIan\nIsaac\nJacob\nJerome\nLuke\nMarvin\nNorman\nRodney\nTheodore\nTony\nMichael\nJason\nJohn\nChristopher\nRobert\nJames\nDavid\nBrian\nMatthew\nWilliam\nJoseph\nCharles\nDaniel\nJeffrey\nKevin\nThomas\nTimothy\nRichard\nEric\nAndrew\nMark\nRyan\nSteven\nJonathan\nJoshua\nShawn\nGregory\nKenneth\nStephen\nPaul\nJeremy\nAaron\nAnthony\nGeorge\nScott\nAdam\nBryan\nRonald\nEdward\nDonald\nKeith\nPeter\nBenjamin\nCraig\nSamuel\nSean\nDouglas\nTodd\nChad\nFrank\nJustin\nNathan\nPhillip\nGary\nRaymond\nWalter\nFrancis\nPhilip\nTroy\nBrandon\nDwayne\nLarry\nLawrence\nNicholas\nTerry\nWesley\nBradley\nHenry\nPatrick\nAllen\nBrad\nBrent\nBruce\nClifford\nCorey\nDamon\nErik\nJose\nAlan\nAndre\nCory\nDennis\nDuane\nEdwin\nJamie\nJermaine\nJesse\nJuan\nMarc\nShane\nWayne\nAntonio\nCarl\nCarlos\nChristian\nDevon\nFrederick\nHoward\nJacob\nJeremiah\nJerry\nLeon\nRodney\nShaun\nWarren\nAlexander\nBarry\nDerrick\nDwight\nErnest\nJared\nJoel\nMarcus\nMicheal\nNathaniel\nRicky\nRoger\nShannon\nTravis\nAdrian\nAlex\nArnold\nDamian\nDarnell\nDarren\nDarryl\nDean\nGeoffrey\nKurt\nLamar\nLuke\nNorman\nRussell\nTerrance\nTyler\nTyrone\nVincent\nMichael\nChristopher\nJohn\nRobert\nJames\nDavid\nMatthew\nJason\nBrian\nWilliam\nJoseph\nThomas\nKevin\nJeffrey\nDaniel\nAndrew\nAnthony\nEric\nSteven\nTimothy\nRichard\nCharles\nNicholas\nStephen\nPaul\nMark\nJeremy\nAdam\nJoshua\nRonald\nScott\nGeorge\nRyan\nSean\nShawn\nGregory\nEdward\nJonathan\nBenjamin\nDonald\nKeith\nKenneth\nAaron\nPatrick\nPeter\nPhillip\nCraig\nDouglas\nFrancis\nGary\nJustin\nLarry\nJesse\nNathan\nBryan\nChad\nJermaine\nKyle\nSamuel\nBrandon\nDerek\nAlexander\nRaymond\nShaun\nWayne\nDennis\nFrank\nMarcus\nTodd\nAndre\nChristian\nClarence\nDerrick\nHarry\nLawrence\nLouis\nAllen\nBrett\nCorey\nErnest\nFranklin\nIan\nJeffery\nJoel\nLuis\nPhilip\nBrent\nCarl\nJerome\nJerry\nMartin\nNathaniel\nRoland\nSeth\nShane\nWalter\nZachary\nArthur\nBarry\nBilly\nBradley\nBruce\nCurtis\nHenry\nJay\nJon\nJuan\nLuke\nTyrone\nVincent\nAntonio\nBernard\nDamon\nDanny\nErik\nFrederick\nHarold\nJamie\nJohnny\nLee\nShannon\nTravis\nAlbert\nAntoine\nBrendan\nCameron\nDale\nDuane\nDwayne\nEugene\nJack\nJamar\nJared\nLeon\nLeonard\nMarc\nMaurice\nNelson\nNorman\nRalph\nReginald\nRoger\nRonnie\nRoy\nRussell\nTerrence\nTheodore\nVictor\nMichael\nJames\nRobert\nChristopher\nDavid\nJohn\nJason\nWilliam\nMatthew\nBrian\nJoseph\nDaniel\nAndrew\nJeffrey\nKevin\nCharles\nJoshua\nThomas\nMark\nEric\nRichard\nSteven\nNicholas\nRyan\nTimothy\nAnthony\nJonathan\nScott\nStephen\nAdam\nPaul\nJustin\nAaron\nPatrick\nGregory\nJeremy\nKenneth\nBryan\nGeorge\nDonald\nShawn\nKeith\nSean\nGary\nJesse\nBenjamin\nBrandon\nEdward\nRonald\nWayne\nLarry\nPhillip\nSamuel\nBruce\nRaymond\nShaun\nChad\nJose\nTravis\nErik\nChristian\nCurtis\nDennis\nNathan\nPeter\nPhilip\nWalter\nJerry\nJon\nLawrence\nRalph\nTodd\nZachary\nCorey\nIan\nKyle\nMicheal\nTroy\nTyrone\nVincent\nAlexander\nAntonio\nDean\nDouglas\nFrancis\nFrank\nJacob\nLamar\nLouis\nLuis\nMarcus\nMaurice\nNathaniel\nRussell\nAlbert\nArthur\nCarl\nDerek\nDerrick\nKristopher\nLee\nRoy\nBarry\nBrent\nCraig\nDamien\nDwayne\nErnest\nJamie\nJoel\nMartin\nShane\nAlan\nAngel\nBilly\nBrad\nBradley\nBrett\nCasey\nDevin\nFrederick\nGeoffrey\nGlenn\nHarry\nJayson\nLeonard\nLucas\nMarc\nSeth\nAndre\nAntoine\nCalvin\nCarlos\nCory\nDanny\nEdwin\nEvan\nFranklin\nGerald\nHenry\nHoward\nJeremiah\nJimmy\nJordan\nKarl\nNeil\nRandy\nRoger\nTerence\nTyler\nWillis\nMichael\nJason\nJohn\nJames\nRobert\nChristopher\nWilliam\nMatthew\nDavid\nBrian\nJoseph\nDaniel\nKevin\nAndrew\nJeffrey\nAnthony\nJoshua\nTimothy\nEric\nRichard\nThomas\nRyan\nJonathan\nJustin\nCharles\nMark\nSteven\nPatrick\nNicholas\nPaul\nStephen\nJeremy\nKenneth\nAdam\nScott\nAaron\nBrandon\nGeorge\nJesse\nShawn\nBryan\nDonald\nGregory\nSean\nBenjamin\nKeith\nRonald\nChad\nPeter\nDouglas\nEdward\nShaun\nJamie\nRaymond\nDerrick\nGary\nNathan\nAndre\nBradley\nBruce\nDerek\nDwayne\nErik\nFrank\nJermaine\nLarry\nPhillip\nWayne\nAlexander\nCurtis\nDennis\nFrederick\nLawrence\nSamuel\nTravis\nCarl\nEugene\nJacob\nJeremiah\nJose\nWesley\nChristian\nCorey\nCraig\nDale\nDustin\nIan\nJoel\nRussell\nVincent\nWalter\nArthur\nCory\nFrancis\nJared\nJeffery\nJerry\nLouis\nMarcus\nPhilip\nRalph\nAlan\nAntoine\nBrent\nBrett\nDarren\nEdwin\nErnest\nHarry\nJon\nLucas\nMarvin\nRandy\nTheodore\nAlfred\nBrad\nCasey\nDominick\nEarl\nFranklin\nGerald\nHarold\nKyle\nLamar\nMario\nNicolas\nTodd\nTroy\nVernon\nZachary\nBernard\nCarlos\nDamien\nDarnell\nGlenn\nHarvey\nHenry\nJay\nJoe\nLee\nLuke\nMaurice\nRicky\nRoger\nShane\nTony\nTyrone\nVictor\nMichael\nJames\nChristopher\nMatthew\nJohn\nJason\nDavid\nRobert\nWilliam\nBrian\nJoseph\nDaniel\nKevin\nRyan\nThomas\nJoshua\nJonathan\nAndrew\nEric\nMark\nBrandon\nRichard\nJustin\nCharles\nJeffrey\nAnthony\nStephen\nSteven\nNicholas\nAaron\nTimothy\nAdam\nJeremy\nSean\nShawn\nGregory\nPaul\nScott\nKeith\nEdward\nJesse\nKenneth\nDonald\nPatrick\nGary\nBenjamin\nBryan\nGeorge\nSamuel\nBrett\nLarry\nVincent\nAndre\nDouglas\nPeter\nPhilip\nKyle\nRonald\nTodd\nTroy\nCarl\nWalter\nDennis\nDwayne\nJamie\nNathan\nAlbert\nIan\nMarcus\nWayne\nFrank\nJacob\nJose\nLawrence\nRaymond\nAlan\nBrent\nCurtis\nDerek\nDerrick\nErnest\nJared\nJerome\nPhillip\nTravis\nAllen\nAntonio\nBradley\nBruce\nChad\nCraig\nEarl\nEdwin\nErik\nHarry\nJay\nNathaniel\nZachary\nAdrian\nBrad\nCameron\nCorey\nHenry\nJack\nJeffery\nJermaine\nMicheal\nShaun\nTerrance\nWesley\nAlexander\nCasey\nClarence\nCory\nDale\nDustin\nEugene\nGerald\nHoward\nJoel\nNeil\nRandy\nRonnie\nShane\nTyrone\nDamien\nDana\nDanny\nDarrell\nDarryl\nElijah\nFrancis\nGabriel\nJamar\nJeremiah\nJordan\nLloyd\nLouis\nLuke\nMarvin\nRoger\nRussell\nSeth\nTerry\nTony\nTyler\nMichael\nChristopher\nRobert\nJames\nJohn\nMatthew\nDavid\nJason\nJoseph\nWilliam\nAndrew\nBrian\nDaniel\nMark\nRichard\nJoshua\nJustin\nKevin\nEric\nRyan\nThomas\nJonathan\nJeffrey\nTimothy\nAnthony\nCharles\nNicholas\nStephen\nBrandon\nSteven\nSean\nAdam\nGregory\nScott\nPatrick\nEdward\nKenneth\nKeith\nPaul\nDonald\nBryan\nJeremy\nKyle\nShawn\nNathan\nRonald\nAaron\nBenjamin\nDouglas\nJesse\nJacob\nPhilip\nTravis\nGary\nRaymond\nAlexander\nVincent\nIan\nLarry\nPeter\nZachary\nGeorge\nMarcus\nShaun\nDerrick\nFrank\nHarry\nAllen\nChad\nCorey\nDennis\nDerek\nJermaine\nJerome\nRussell\nSamuel\nTheodore\nBrent\nDustin\nLawrence\nWayne\nArthur\nBruce\nDwayne\nMarc\nMaurice\nPhillip\nRandy\nShane\nTyrone\nAndre\nBrad\nBradley\nErik\nGerald\nJared\nJeremiah\nJose\nLamar\nLewis\nBilly\nBlake\nBrett\nChristian\nCurtis\nDevon\nFrancis\nJeffery\nJordan\nOrlando\nRoger\nTodd\nTroy\nVictor\nCarl\nCraig\nDale\nDarius\nEarl\nEvan\nGabriel\nGlenn\nJon\nJulian\nNathaniel\nRicky\nTony\nWalter\nWesley\nAlbert\nBarry\nCory\nDamien\nDarrell\nDominic\nEdwin\nErnest\nEugene\nGeoffrey\nGlen\nJamie\nJay\nLeonard\nLuis\nMathew\nMicah\nMicheal\nNoah\nOmar\nRamon\nMichael\nChristopher\nMatthew\nRobert\nDavid\nJohn\nJames\nWilliam\nBrian\nJoseph\nJason\nDaniel\nJoshua\nKevin\nJustin\nAndrew\nJonathan\nJeffrey\nRyan\nSteven\nThomas\nBrandon\nRichard\nTimothy\nMark\nEric\nAnthony\nAdam\nCharles\nSean\nStephen\nAaron\nKyle\nGregory\nScott\nNicholas\nPatrick\nShawn\nBenjamin\nPaul\nKenneth\nDonald\nJeremy\nBryan\nSamuel\nKeith\nTravis\nZachary\nGeorge\nIan\nBradley\nJacob\nNathan\nRonald\nVincent\nCarl\nEdward\nHarry\nAlexander\nCurtis\nJared\nPhilip\nRaymond\nDouglas\nGary\nAntonio\nJordan\nBrett\nDustin\nJesse\nAndre\nEvan\nCorey\nFrank\nJermaine\nLarry\nLawrence\nNathaniel\nPeter\nShannon\nShaun\nTyler\nWayne\nAlbert\nBruce\nChad\nCraig\nDennis\nDerek\nEarl\nErnest\nFrancis\nJeffery\nMaurice\nRandall\nRussell\nShane\nTroy\nTyrone\nAntoine\nBrent\nClayton\nLamar\nMarcus\nWesley\nAllen\nArthur\nBlake\nBradford\nDarnell\nDerrick\nDevin\nDominic\nGerald\nGlenn\nHenry\nJamie\nJoel\nJose\nMartin\nMarvin\nPhillip\nRodney\nRoss\nTrevor\nVictor\nWalter\nBrad\nBranden\nChase\nClarence\nClifton\nDwayne\nEdwin\nEugene\nFrederick\nJack\nJay\nJulius\nLance\nLucas\nLuke\nRandy\nReginald\nRicky\nRoger\nRoland\nRoy\nMichael\nMatthew\nChristopher\nJohn\nDavid\nJoshua\nRobert\nWilliam\nJames\nJoseph\nAndrew\nBrian\nDaniel\nJason\nEric\nRyan\nAnthony\nRichard\nCharles\nJonathan\nJustin\nKevin\nThomas\nAdam\nBrandon\nJeffrey\nMark\nTimothy\nNicholas\nSean\nPatrick\nSteven\nStephen\nPaul\nGregory\nBryan\nZachary\nShawn\nBenjamin\nKenneth\nJeremy\nAaron\nScott\nKyle\nGary\nKeith\nSamuel\nDustin\nGeorge\nNathan\nPhilip\nTravis\nRonald\nDonald\nPeter\nTyler\nJacob\nRaymond\nBruce\nChad\nEdward\nIan\nJesse\nMarcus\nAndre\nErik\nVincent\nAlan\nAlexander\nCraig\nDouglas\nEvan\nFranklin\nJordan\nTyrone\nBradley\nBrett\nDerek\nFrank\nPhillip\nRoss\nTrevor\nAllen\nClifton\nCory\nJose\nLouis\nRussell\nWayne\nAntonio\nBrent\nCarl\nCarlos\nCurtis\nDerrick\nDrew\nJamar\nJerry\nLamar\nLarry\nMaurice\nQuinton\nTodd\nTroy\nWalter\nBlake\nCorey\nDale\nDanny\nErnest\nFrancis\nGerald\nHenry\nJared\nLee\nLeonard\nLewis\nNathaniel\nOmar\nRoger\nWesley\nAlbert\nAlfred\nCameron\nCasey\nChase\nChristian\nDarius\nDarnell\nDennis\nDevin\nDwayne\nHarold\nIvan\nJohnathan\nJohnny\nKarl\nLawrence\nLuke\nMarc\nNorman\nSeth\nShane\nShannon\nTheodore\nVictor\nMichael\nMatthew\nChristopher\nJames\nDavid\nJohn\nRobert\nJoseph\nWilliam\nAndrew\nJoshua\nRyan\nDaniel\nBrian\nJason\nAnthony\nBrandon\nThomas\nEric\nKevin\nJustin\nSteven\nTimothy\nJonathan\nMark\nKyle\nStephen\nRichard\nJeffrey\nSean\nNicholas\nCharles\nAdam\nBenjamin\nGregory\nPatrick\nAaron\nZachary\nPaul\nJeremy\nScott\nShawn\nAlexander\nBryan\nEdward\nKenneth\nNathan\nRaymond\nDonald\nJesse\nKeith\nDouglas\nGary\nMarcus\nSamuel\nChad\nGeorge\nNathaniel\nCraig\nDennis\nPeter\nPhillip\nTyler\nDustin\nVincent\nBrett\nWayne\nAllen\nJared\nLarry\nBrad\nCory\nDerek\nErik\nIan\nJacob\nMarc\nTodd\nTravis\nBradley\nBrent\nBruce\nDarren\nEvan\nFrancis\nJeremiah\nLouis\nRussell\nShane\nWalter\nAndre\nCorey\nFrank\nHarry\nLamar\nTyrell\nTyrone\nVictor\nCarl\nCurtis\nDevin\nDevon\nDominick\nJeffery\nJermaine\nJoel\nJordan\nLawrence\nLee\nPhilip\nRonald\nTony\nTrevor\nWesley\nAlan\nAntonio\nBranden\nBrendan\nCody\nDrew\nDwayne\nEugene\nFranklin\nGabriel\nJerome\nLuis\nRandall\nStephan\nAlbert\nAlvin\nAustin\nCarlos\nClarence\nColin\nDarius\nDarnell\nDarrell\nDion\nJohnathan\nLuke\nMartin\nRicky\nRoss\nSeth\nShaun\nTerrance\nTristan\nVernon\nWarren\nMichael\nChristopher\nMatthew\nAndrew\nJohn\nJames\nRyan\nJoseph\nRobert\nDavid\nJoshua\nDaniel\nWilliam\nBrian\nKevin\nBrandon\nJason\nKyle\nThomas\nRichard\nAnthony\nJustin\nCharles\nTimothy\nEric\nJeffrey\nSteven\nStephen\nJonathan\nSean\nNicholas\nMark\nZachary\nPatrick\nGregory\nJeremy\nPaul\nAaron\nBenjamin\nAdam\nBryan\nEdward\nJordan\nAlexander\nShawn\nKeith\nScott\nNathan\nJacob\nDustin\nGary\nIan\nKenneth\nRonald\nDouglas\nTyler\nGeorge\nJesse\nPhillip\nSamuel\nBradley\nDonald\nRaymond\nCorey\nJeffery\nPeter\nVincent\nBrent\nAndre\nDarryl\nHenry\nMarcus\nPhilip\nShane\nTravis\nCarl\nEvan\nNathaniel\nChristian\nCory\nCurtis\nDale\nDarrell\nJoel\nRussell\nWayne\nAlex\nAntonio\nArthur\nAustin\nChad\nJared\nTerry\nTodd\nVictor\nAlbert\nCasey\nDennis\nDerek\nDevin\nJohnathan\nLouis\nMartin\nMarvin\nRandy\nTrevor\nAdrian\nAlan\nAllen\nAntoine\nBrett\nCaleb\nColin\nDeshawn\nEdwin\nEugene\nFrancis\nJose\nJuan\nKarl\nLuis\nMarc\nRodney\nTroy\nWesley\nBrad\nBradford\nCody\nCraig\nDarius\nDarren\nFrank\nHoward\nLamar\nLance\nLarry\nLawrence\nLee\nMarquis\nMathew\nNorman\nRicky\nTyrone\nMichael\nChristopher\nMatthew\nDavid\nJames\nJohn\nAndrew\nRobert\nDaniel\nJustin\nJoshua\nRyan\nWilliam\nJoseph\nJason\nThomas\nBrandon\nKyle\nBrian\nRichard\nAnthony\nCharles\nEric\nKevin\nMark\nNicholas\nSteven\nJeffrey\nSean\nJonathan\nTimothy\nBryan\nPaul\nZachary\nBenjamin\nAaron\nAdam\nStephen\nJeremy\nShawn\nPatrick\nAlexander\nGregory\nJacob\nDonald\nPeter\nScott\nEdward\nJesse\nKenneth\nJordan\nTyler\nDouglas\nPhilip\nPhillip\nBrett\nDerek\nRonald\nSamuel\nBradley\nDustin\nNathaniel\nCorey\nFrank\nNathan\nGeorge\nIan\nTravis\nCory\nFrancis\nRaymond\nShane\nVincent\nChad\nKeith\nLuke\nAlex\nCraig\nEvan\nJared\nAntonio\nCarl\nDennis\nDevon\nGary\nJamar\nJose\nMarcus\nAlan\nCody\nDarrell\nErnest\nGlenn\nJeffery\nLamar\nRussell\nWalter\nWayne\nWesley\nAllen\nCameron\nDerrick\nEugene\nJerome\nJoel\nLarry\nLawrence\nLouis\nTodd\nAndre\nArthur\nBruce\nChristian\nDarius\nDwight\nErik\nGeoffrey\nHenry\nIsaiah\nJay\nLee\nLuis\nMartin\nMelvin\nRodney\nTroy\nVictor\nAdrian\nAustin\nCarlos\nClifford\nCurtis\nDarren\nGerald\nGrant\nJack\nJerry\nKarl\nKristopher\nMiguel\nMitchell\nRalph\nRoy\nSeth\nTrevor\nTyrell\nTyrone\nVernon\nMichael\nMatthew\nChristopher\nJohn\nJoshua\nAndrew\nDavid\nJames\nRobert\nDaniel\nWilliam\nJustin\nJoseph\nRyan\nKyle\nBrian\nAnthony\nNicholas\nBrandon\nKevin\nThomas\nSean\nSteven\nEric\nTimothy\nCharles\nStephen\nMark\nZachary\nJonathan\nAdam\nRichard\nJason\nJeffrey\nScott\nGregory\nAaron\nAlexander\nBenjamin\nJeremy\nKenneth\nPaul\nTyler\nPatrick\nBryan\nKeith\nDustin\nJacob\nSamuel\nVincent\nDonald\nPhillip\nShawn\nJesse\nCorey\nGeorge\nEdward\nNathan\nDerek\nBrett\nDouglas\nTravis\nCameron\nShane\nBradley\nCraig\nRonald\nAlex\nCody\nGary\nJordan\nRandall\nCarl\nErik\nJose\nMarcus\nNathaniel\nPeter\nPhilip\nAndre\nBrent\nDennis\nEvan\nJared\nTyrone\nBruce\nChristian\nColin\nDevin\nFrancis\nFrank\nJoel\nRaymond\nSeth\nAustin\nChad\nDylan\nHenry\nIan\nLarry\nShaun\nTodd\nTrevor\nAlan\nArthur\nBrad\nCory\nCurtis\nGerald\nHarry\nJeffery\nLouis\nMartin\nWesley\nBlake\nBrendan\nBryant\nDale\nDarren\nEmmanuel\nGarrett\nLuis\nMathew\nMitchell\nRoger\nRussell\nAlbert\nAllen\nAntoine\nAntonio\nBranden\nCasey\nDarryl\nDevon\nDominic\nErnest\nFranklin\nJamal\nJulius\nLee\nMaurice\nTerrence\nTheodore\nBarry\nBernard\nCaleb\nCarlos\nDamien\nDarius\nDarnell\nDeshawn\nEdwin\nGlenn\nHunter\nJamar\nJon\nJuan\nLamar\nLeroy\nMarquis\nRashad\nStanley\nTerrance\nTroy\nTyrell\nWalter\nMichael\nChristopher\nMatthew\nJoshua\nJames\nAndrew\nDavid\nRobert\nJoseph\nRyan\nJohn\nKevin\nDaniel\nWilliam\nJustin\nBrandon\nThomas\nKyle\nNicholas\nAnthony\nTimothy\nJonathan\nBrian\nSteven\nZachary\nBenjamin\nEric\nAdam\nAaron\nJeffrey\nRichard\nSean\nMark\nStephen\nPatrick\nCharles\nJason\nPaul\nAlexander\nJacob\nKenneth\nTravis\nTyler\nJordan\nGregory\nBryan\nScott\nDonald\nShawn\nVincent\nDustin\nJeremy\nNathan\nDerek\nEdward\nRaymond\nSamuel\nShane\nCorey\nDouglas\nGeorge\nPeter\nChad\nJesse\nRonald\nEvan\nIan\nBrett\nCory\nBradley\nFrank\nPhilip\nTaylor\nBrendan\nColin\nDylan\nErik\nWesley\nCody\nMarcus\nRussell\nTroy\nWayne\nAlex\nCameron\nDerrick\nGarrett\nJared\nPhillip\nCarl\nCurtis\nDominique\nFrancis\nIsaiah\nAllen\nAntonio\nEthan\nJamar\nJeffery\nKeith\nAlan\nAndre\nBruce\nChristian\nDale\nDennis\nGary\nHarry\nLogan\nMarc\nTrevor\nAngel\nBrent\nBryant\nDarnell\nDevon\nErnest\nJerry\nJose\nLarry\nMartin\nRandy\nTodd\nWalter\nByron\nDarius\nDevin\nDrew\nElijah\nHenry\nIsaac\nIsiah\nLawrence\nMaurice\nOmar\nRandall\nTheodore\nVictor\nAdrian\nArthur\nAustin\nBlake\nCasey\nChase\nClifford\nCraig\nDamian\nDarrell\nDarren\nDarryl\nDominic\nGerald\nHakeem\nJamal\nJohnathan\nKristopher\nLance\nLouis\nLucas\nLuis\nLuke\nMathew\nMiguel\nMitchell\nNathaniel\nNeil\nNorman\nSeth\nShannon\nTyrone\nMichael\nChristopher\nMatthew\nRobert\nAndrew\nJohn\nJoshua\nDavid\nDaniel\nJames\nRyan\nWilliam\nJoseph\nKyle\nJustin\nEric\nNicholas\nAnthony\nZachary\nBrandon\nKevin\nBrian\nSteven\nSean\nThomas\nJonathan\nRichard\nStephen\nPatrick\nCharles\nJordan\nTyler\nAdam\nAlexander\nTimothy\nMark\nAaron\nBenjamin\nJeffrey\nGregory\nJason\nJacob\nDonald\nKenneth\nShane\nShawn\nEdward\nJeremy\nNathan\nSamuel\nCody\nScott\nTravis\nBryan\nGeorge\nPaul\nIan\nRonald\nJose\nKeith\nEvan\nCory\nJesse\nDustin\nPeter\nCorey\nDylan\nMarcus\nCameron\nCraig\nVincent\nAustin\nChristian\nAndre\nChad\nColin\nBradley\nDerek\nDouglas\nPhillip\nCarl\nDennis\nTroy\nEthan\nJerry\nAllen\nCurtis\nDarius\nErik\nGarrett\nGary\nIsaiah\nJohnathan\nLouis\nNathaniel\nRaymond\nAntonio\nArthur\nJeremiah\nJulian\nMartin\nMaurice\nPhilip\nRussell\nSeth\nSpencer\nTyrone\nAlan\nBrett\nCasey\nDerrick\nDominic\nDominique\nGabriel\nJeffery\nJoel\nLamar\nLarry\nLawrence\nRandy\nTaylor\nWalter\nAlex\nBrendan\nDale\nDeandre\nDevin\nDevon\nFrancis\nHenry\nMalcolm\nMarvin\nNoah\nRaheem\nTrevor\nVictor\nWayne\nAntoine\nBruce\nChase\nClayton\nConnor\nDamon\nFrank\nGeoffrey\nHoward\nIsaac\nJay\nJermaine\nLee\nLucas\nLuis\nMarquis\nRoss\nVernon\nWesley\nAdrian\nBrent\nBryant\nCaleb\nDwayne\nElijah\nErnest\nFranklin\nJamil\nJohnny\nKristopher\nLogan\nMitchell\nRashad\nShaun\nTheodore\nWillis\nMichael\nChristopher\nMatthew\nJoshua\nRobert\nRyan\nAndrew\nJames\nDavid\nNicholas\nJohn\nWilliam\nKyle\nTyler\nDaniel\nJoseph\nAnthony\nBrandon\nJustin\nEric\nThomas\nZachary\nKevin\nBrian\nJonathan\nTimothy\nPatrick\nSteven\nSean\nMark\nAdam\nCharles\nRichard\nAaron\nBenjamin\nJacob\nJeffrey\nJordan\nAlexander\nStephen\nGregory\nJason\nCody\nPaul\nDylan\nIan\nKenneth\nSamuel\nJeremy\nJesse\nBryan\nNathan\nEvan\nKeith\nShane\nAlex\nGeorge\nScott\nTravis\nDonald\nPeter\nShawn\nBradley\nPhilip\nPhillip\nAustin\nCameron\nEthan\nGary\nDerek\nEdward\nBrett\nRonald\nChristian\nMarcus\nVincent\nCorey\nDustin\nTaylor\nCaleb\nChad\nCraig\nErik\nGerald\nCory\nDerrick\nDouglas\nFrank\nNathaniel\nRaymond\nSeth\nWesley\nBlake\nDennis\nJose\nAntonio\nCasey\nHenry\nJulian\nLuis\nSpencer\nTevin\nTrevor\nAlan\nCarlos\nChase\nColin\nDashawn\nFrancis\nJack\nLarry\nLuke\nTroy\nUnknown\nWayne\nBryant\nDakota\nDevin\nDevon\nDominic\nJared\nJeffery\nJonathon\nLawrence\nLogan\nLucas\nManuel\nReginald\nTyree\nAdrian\nAngel\nBrendan\nByron\nCurtis\nDale\nDamien\nDarius\nDarren\nDeandre\nEdwin\nElijah\nGabriel\nHarry\nHunter\nIsaiah\nJamal\nJeremiah\nJoel\nKeenan\nLevi\nMalcolm\nMarc\nMaxwell\nMorgan\nRalph\nWalter\nWillie\nXavier\nZachery\nAllen\nArthur\nColby\nDillon\nDominique\nEugene\nFrederick\nGarrett\nGeoffrey\nHayden\nIsaac\nIvan\nJamil\nJavon\nJermaine\nJuan\nLouis\nMarquis\nMartin\nMaurice\nNicolas\nOmar\nPreston\nRodney\nShaun\nTerrance\nTerry\nVictor\nWarren\nMichael\nMatthew\nChristopher\nJames\nAndrew\nTyler\nBrandon\nJoshua\nJohn\nRobert\nZachary\nRyan\nWilliam\nNicholas\nKyle\nJoseph\nDavid\nJustin\nDaniel\nBrian\nJonathan\nThomas\nKevin\nEric\nAlexander\nAnthony\nJacob\nMark\nRichard\nSteven\nStephen\nCody\nPatrick\nSean\nBenjamin\nDylan\nTimothy\nCharles\nSamuel\nAaron\nAdam\nJordan\nJeffrey\nChristian\nJason\nBryan\nCorey\nEdward\nJesse\nShane\nShawn\nTaylor\nGregory\nIan\nKeith\nTrevor\nJeremy\nPaul\nTravis\nAustin\nNathan\nScott\nVincent\nCameron\nGeorge\nKenneth\nBradley\nConnor\nMarcus\nAlex\nEvan\nDerek\nDustin\nPeter\nRaymond\nWesley\nCurtis\nJared\nLuke\nAndre\nChad\nDevon\nHunter\nJose\nNathaniel\nTevin\nBrendan\nBrett\nEthan\nIsaiah\nMartin\nPhilip\nSeth\nXavier\nAlan\nDonald\nDouglas\nErik\nJohnathan\nLogan\nMalcolm\nPhillip\nRonald\nTroy\nAllen\nAngel\nDakota\nDevante\nDevin\nDillon\nErnest\nGary\nLucas\nUnknown\nVictor\nBrent\nCarl\nColin\nCory\nCraig\nDominic\nFrancis\nHarry\nJulian\nLarry\nMaurice\nNicolas\nShaun\nSpencer\nTerrance\nTheodore\nTony\nZachery\nAlec\nBarry\nCalvin\nChase\nClayton\nDalton\nDean\nDeandre\nDerrick\nDeshawn\nFrank\nFrederick\nGabriel\nJamie\nMarquis\nMicheal\nMiguel\nNolan\nWalter\nWayne\nAlbert\nAntonio\nCaleb\nColby\nCollin\nDarin\nDennis\nDrew\nDwayne\nEdwin\nHoward\nJack\nJake\nJamal\nJavier\nJeffery\nJoel\nKeenan\nKristofer\nLance\nLuis\nManuel\nMarshall\nMarvin\nRandall\nReginald\nRodney\nShannon\nTodd\nVernon\nMichael\nMatthew\nChristopher\nJohn\nJames\nAndrew\nBrandon\nWilliam\nRyan\nZachary\nTyler\nKyle\nRobert\nDaniel\nDavid\nJoseph\nNicholas\nJoshua\nAnthony\nKevin\nJacob\nJustin\nAlexander\nEric\nThomas\nBenjamin\nJonathan\nJordan\nBrian\nSean\nAaron\nCody\nStephen\nSteven\nSamuel\nMark\nTimothy\nAdam\nCharles\nDylan\nPatrick\nShawn\nEvan\nRichard\nAustin\nShane\nJeremy\nJason\nJeffrey\nJesse\nPaul\nAlex\nIan\nGregory\nNathan\nDonald\nBrett\nChristian\nConnor\nKenneth\nEdward\nBradley\nScott\nTrevor\nGeorge\nPeter\nTravis\nVincent\nBryan\nColin\nCory\nKeith\nLuke\nTaylor\nCorey\nDustin\nMarcus\nNathaniel\nJared\nJose\nMax\nPhilip\nShaquille\nAndre\nChad\nChase\nRonald\nCameron\nGarrett\nHunter\nLucas\nBrendan\nCollin\nDouglas\nDrew\nIsaiah\nJuan\nLogan\nTroy\nXavier\nZachery\nAlan\nCaleb\nDakota\nDerek\nDevin\nDevon\nElijah\nFrank\nJoel\nJulian\nLarry\nUnknown\nAntonio\nBryce\nCasey\nCurtis\nDaquan\nDennis\nDominique\nErik\nEthan\nGary\nHarry\nJay\nLance\nLuis\nMartin\nOmar\nSeth\nAlvin\nAvery\nColby\nColton\nDalton\nDarnell\nDarrell\nDarren\nDerrick\nGabriel\nJohnathan\nLouis\nMalik\nMiguel\nPhillip\nRaymond\nRussell\nSebastian\nTanner\nWesley\nBrent\nConor\nCraig\nDale\nDillon\nGordon\nJamal\nJarrett\nJohnny\nKristopher\nLee\nLewis\nMason\nMicah\nMiles\nRandy\nSpencer\nTerrance\nTony\nTyrone\nMichael\nMatthew\nChristopher\nTyler\nJames\nRyan\nJoseph\nWilliam\nJoshua\nBrandon\nJohn\nNicholas\nAndrew\nZachary\nRobert\nKyle\nJacob\nDavid\nDaniel\nAlexander\nCody\nAnthony\nThomas\nJordan\nJustin\nEric\nSamuel\nPatrick\nAaron\nKevin\nRichard\nAustin\nDylan\nCharles\nSean\nStephen\nSteven\nJonathan\nBenjamin\nAdam\nBrian\nChristian\nTimothy\nGregory\nJeremy\nMark\nShane\nMarcus\nCorey\nHunter\nKenneth\nNathan\nConnor\nJason\nScott\nJeffrey\nJesse\nTaylor\nTravis\nRonald\nBrett\nCory\nDerek\nDonald\nEvan\nKeith\nBradley\nChad\nDevon\nIan\nNathaniel\nAndre\nCameron\nDouglas\nPaul\nShawn\nAlex\nDevin\nEdward\nEthan\nLogan\nLuke\nTrevor\nVincent\nCaleb\nChase\nJose\nSeth\nShaquille\nBrendan\nColin\nCollin\nDarren\nDustin\nGary\nGeorge\nPhillip\nRaymond\nTodd\nUnknown\nWayne\nAlec\nBryan\nDennis\nLucas\nMitchell\nTroy\nXavier\nCarlos\nDakota\nDalton\nDominique\nErik\nFrancis\nKeenan\nNicolas\nPeter\nSpencer\nWalter\nClayton\nDerrick\nGarrett\nJack\nJake\nJavon\nJeremiah\nLawrence\nLouis\nMarc\nPhilip\nZachery\nAllen\nAngelo\nAntonio\nBrendon\nColton\nDallas\nDamian\nGabriel\nHarrison\nIsaac\nJaleel\nJalen\nJared\nJermaine\nJonathon\nJuan\nLarry\nLiam\nMorgan\nMyles\nRandall\nTanner\nWyatt\nArthur\nBranden\nBryant\nCalvin\nCasey\nCole\nConner\nCurtis\nDanny\nDillon\nDominic\nDrew\nFrank\nHenry\nIsaiah\nJoel\nJohnathan\nMackenzie\nMathew\nMiguel\nNoah\nNolan\nRandy\nRoger\nMichael\nMatthew\nTyler\nBrandon\nJohn\nZachary\nAndrew\nKyle\nJames\nRyan\nNicholas\nJacob\nChristopher\nJoshua\nWilliam\nDaniel\nDavid\nJoseph\nAnthony\nAlexander\nJustin\nRobert\nAustin\nThomas\nJonathan\nCody\nSean\nBenjamin\nKevin\nEric\nDylan\nJordan\nMark\nAaron\nBrian\nCharles\nSamuel\nSteven\nPatrick\nAdam\nTimothy\nConnor\nIan\nJeffrey\nRichard\nStephen\nHunter\nNathan\nChristian\nEvan\nJason\nEthan\nLogan\nJeremy\nKenneth\nBryan\nVincent\nBradley\nIsaiah\nPaul\nShawn\nAlex\nCasey\nColin\nCorey\nDakota\nRonald\nSeth\nTrevor\nBrendan\nCory\nEdward\nElijah\nJesse\nLuke\nMalik\nPeter\nTravis\nDevon\nDonald\nDustin\nJared\nJoel\nLucas\nNathaniel\nTroy\nUnknown\nDalton\nDillon\nCaleb\nCameron\nChad\nCole\nDevin\nDominic\nFrank\nGregory\nLiam\nLuis\nShane\nAntonio\nDwayne\nErik\nGarrett\nIsaac\nJack\nKeith\nWesley\nAlan\nBrendon\nBrent\nDerrick\nGeorge\nHenry\nIsiah\nJesus\nLawrence\nMarcus\nTaylor\nTristan\nAlec\nArthur\nBrett\nCarlos\nChandler\nDarren\nDennis\nFrancis\nGabriel\nGrant\nJohnathan\nJose\nJuan\nMalcolm\nMarquis\nMason\nNoah\nPhilip\nRaymond\nRodney\nTyrone\nWyatt\nAvery\nCalvin\nChase\nColby\nCollin\nDominick\nJackson\nJavon\nMiguel\nPhillip\nRaekwon\nScott\nVictor\nAdrian\nAndre\nAngel\nAngelo\nBlake\nBrady\nBret\nBryce\nConor\nCraig\nCurtis\nDallas\nDamon\nDarius\nDerek\nDouglas\nErnest\nFrederick\nGavin\nJeremiah\nJorge\nMelvin\nMyles\nNicolas\nSpencer\nTanner\nTheodore\nMichael\nMatthew\nChristopher\nTyler\nRyan\nZachary\nBrandon\nJohn\nJoshua\nNicholas\nJames\nWilliam\nJacob\nThomas\nAndrew\nDaniel\nJoseph\nAnthony\nKyle\nRobert\nDavid\nJustin\nAlexander\nAustin\nJonathan\nEric\nKevin\nBenjamin\nPatrick\nDylan\nJordan\nSamuel\nSean\nCody\nMark\nShane\nBrian\nChristian\nCharles\nLogan\nStephen\nTimothy\nRichard\nSteven\nJason\nAdam\nConnor\nNathan\nJeffrey\nAlex\nCameron\nGregory\nJared\nLuke\nAaron\nEdward\nIan\nEthan\nJeremy\nMalik\nPeter\nBryan\nShawn\nTravis\nColin\nDevon\nElijah\nMarcus\nSeth\nVincent\nNathaniel\nEvan\nKenneth\nBrett\nCorey\nCory\nDerek\nJack\nJesse\nJuan\nPaul\nRonald\nTrevor\nCollin\nHunter\nJose\nLiam\nScott\nBradley\nChad\nCole\nDillon\nDonald\nGarrett\nAdrian\nChase\nGrant\nKeith\nNoah\nCaleb\nDaquan\nDarius\nDerrick\nDustin\nIsaiah\nJake\nOmar\nAlec\nAntonio\nBrendan\nDominic\nGeorge\nHenry\nLucas\nMitchell\nPhilip\nAngel\nConor\nDennis\nDrew\nErik\nFrank\nGabriel\nJulian\nLuis\nTanner\nTristan\nTroy\nWyatt\nArthur\nCraig\nDevin\nDouglas\nFrederick\nJavon\nJoel\nJohnny\nMartin\nMason\nMathew\nSpencer\nWayne\nBruce\nBryce\nCarl\nCarlos\nChandler\nColby\nDalton\nDonte\nEdwin\nFranklin\nGary\nGerald\nJamie\nJamier\nJosiah\nKristopher\nLamar\nMarvin\nMaurice\nMiles\nNikolas\nOwen\nPhillip\nRaymond\nRicardo\nShaquille\nTaylor\nVictor\nZackary\nMichael\nMatthew\nTyler\nJoshua\nChristopher\nNicholas\nAndrew\nJacob\nZachary\nRyan\nJohn\nJames\nBrandon\nDaniel\nAustin\nAnthony\nDavid\nRobert\nJoseph\nKyle\nWilliam\nJustin\nThomas\nJordan\nSamuel\nDylan\nKevin\nAlexander\nJonathan\nBrian\nChristian\nBenjamin\nIsaiah\nPatrick\nAaron\nConnor\nNathan\nSean\nTimothy\nAdam\nEric\nIan\nRichard\nSteven\nCody\nJason\nLogan\nJeremy\nJeffrey\nMark\nCameron\nStephen\nCharles\nElijah\nEvan\nJared\nHunter\nLuke\nDominic\nGeorge\nCole\nCorey\nDustin\nEthan\nTrevor\nBrendan\nPaul\nCaleb\nSeth\nShane\nShawn\nJulian\nNathaniel\nPeter\nAlex\nEdward\nGregory\nNoah\nBradley\nBrett\nChase\nColin\nDerek\nDevin\nGabriel\nKenneth\nLuis\nWyatt\nLiam\nMarcus\nTroy\nVincent\nAlec\nBryan\nCalvin\nDakota\nDevon\nJuan\nScott\nTravis\nColton\nDaquan\nGarrett\nJack\nJose\nMalik\nWesley\nXavier\nAndre\nBrady\nFrancis\nGrant\nJake\nJesse\nLucas\nMaxwell\nRussell\nTanner\nAmir\nCarlos\nColby\nCory\nDalton\nDeandre\nEdgar\nGavin\nHenry\nJonah\nJosiah\nLouis\nMason\nOwen\nPhillip\nShakur\nTristan\nAdrian\nAlejandro\nAntonio\nConner\nConor\nDante\nDerrick\nDillon\nErik\nJackson\nJerry\nMalachi\nMartin\nMyles\nQuinn\nRiley\nSpencer\nVictor\nAidan\nBlake\nBryant\nCarl\nChandler\nCurtis\nDarius\nDavon\nDemetrius\nDouglas\nFrank\nGriffin\nHarrison\nIsaac\nIsiah\nJeremiah\nMarquise\nMax\nMitchell\nNelson\nNickolas\nPhilip\nRandy\nRoss\nShamar\nTaylor\nZachery\nZackary\nZane\nMichael\nTyler\nMatthew\nJoshua\nChristopher\nRyan\nWilliam\nNicholas\nJames\nJacob\nBrandon\nZachary\nJohn\nJustin\nJoseph\nRobert\nAndrew\nKyle\nDaniel\nDavid\nJordan\nAlexander\nAnthony\nDylan\nAustin\nSean\nKevin\nThomas\nJonathan\nSamuel\nBenjamin\nEric\nCharles\nNathan\nNoah\nHunter\nCody\nBrian\nMark\nSteven\nAaron\nConnor\nRichard\nChristian\nTimothy\nJason\nPatrick\nShane\nEthan\nEvan\nShawn\nKenneth\nNathaniel\nChase\nIsaiah\nJared\nAdam\nBrendan\nElijah\nJack\nBryan\nCaleb\nColin\nJeremy\nLogan\nAlex\nCameron\nJose\nJeffrey\nLuis\nLuke\nStephen\nAntonio\nDonald\nEdward\nIan\nScott\nOwen\nGavin\nTrevor\nBrady\nDalton\nMarcus\nPeter\nCole\nGarrett\nLiam\nVincent\nChad\nDominic\nGabriel\nGregory\nJake\nJesse\nPaul\nSeth\nTanner\nAndre\nBradley\nBrett\nIsaac\nJeremiah\nRaymond\nRonald\nXavier\nBryce\nCalvin\nDakota\nDerek\nDillon\nDustin\nGary\nKeith\nKhalil\nMalik\nMason\nMiguel\nSpencer\nTravis\nAidan\nAngel\nCorey\nDarius\nDevin\nDevon\nGeorge\nGrant\nJavon\nLarry\nMitchell\nParker\nPhillip\nTristan\nVictor\nWyatt\nAdrian\nBailey\nBrennan\nBrock\nCarlos\nDarren\nDemetrius\nHarrison\nHayden\nJermaine\nJoel\nJorge\nJulian\nKristopher\nMarquise\nNicolas\nOmar\nRiley\nBlake\nBrenden\nBrent\nCarl\nCurtis\nDamon\nDouglas\nFrancis\nFrederick\nGage\nIsiah\nJamar\nJayson\nJosiah\nMarquis\nNolan\nPreston\nTrent\nTrevon\nZachery\nMichael\nJoshua\nRyan\nMatthew\nAndrew\nNicholas\nTyler\nJacob\nZachary\nJohn\nWilliam\nJames\nDavid\nDaniel\nChristopher\nKyle\nAnthony\nAlexander\nBrandon\nDylan\nThomas\nJoseph\nRobert\nJordan\nJustin\nAustin\nNoah\nJonathan\nKevin\nNathan\nBenjamin\nJason\nSean\nEric\nSamuel\nEthan\nBrian\nHunter\nPatrick\nConnor\nIsaiah\nLogan\nAaron\nCharles\nChristian\nCameron\nLuke\nSteven\nTimothy\nChase\nGabriel\nCody\nTrevor\nAdam\nCole\nRichard\nStephen\nJared\nJeffrey\nBryce\nEvan\nGarrett\nJuan\nShane\nJesse\nJose\nMark\nSeth\nAlex\nDevon\nElijah\nBryan\nColin\nNathaniel\nShawn\nCaleb\nCorey\nGeorge\nIan\nKenneth\nTravis\nTristan\nJack\nJake\nBrendan\nCarlos\nCollin\nDalton\nEdward\nEdwin\nGregory\nJeremy\nJulian\nLuis\nOwen\nAmir\nBrent\nCory\nGavin\nHenry\nLiam\nLucas\nPaul\nVincent\nAidan\nBlake\nDominic\nGrant\nIsaac\nJaden\nMarcus\nMason\nMaxwell\nPhillip\nScott\nAntonio\nBradley\nDante\nDerek\nDonovan\nDouglas\nDrew\nErik\nJaquan\nJarrett\nJeremiah\nKeith\nMalik\nRonald\nZion\nAlexis\nBrett\nColby\nCurtis\nDakota\nEmmanuel\nHarrison\nJavon\nVictor\nWesley\nAdrian\nBruce\nCarter\nDarren\nDesmond\nDevin\nDonald\nFrancis\nJalen\nJavier\nJayson\nJohnathan\nMaurice\nMitchell\nNasir\nPhilip\nRaymond\nTroy\nTyree\nWayne\nAlec\nAndre\nAngelo\nBrendon\nCarson\nCasey\nColton\nDarius\nDean\nDillon\nDustin\nJamal\nJoel\nJohnny\nJonathon\nJorge\nKhalil\nKristopher\nLarry\nMarc\nMateo\nMyles\nNicolas\nNolan\nOmar\nPeter\nRandy\nSebastian\nSpencer\nTodd\nTymere\nTyrese\nMichael\nMatthew\nJacob\nJoshua\nNicholas\nChristopher\nWilliam\nJohn\nRyan\nJoseph\nAndrew\nTyler\nKyle\nBenjamin\nBrandon\nJustin\nDavid\nRobert\nDaniel\nJames\nZachary\nAnthony\nAlexander\nThomas\nDylan\nJonathan\nNoah\nSamuel\nChristian\nNathan\nJordan\nKevin\nLuke\nEthan\nCameron\nBrian\nSteven\nElijah\nEric\nPatrick\nSean\nTimothy\nAdam\nGabriel\nHunter\nAustin\nCharles\nEvan\nJason\nColin\nIsaiah\nConnor\nJared\nAaron\nJack\nRichard\nJeremy\nMark\nCole\nGarrett\nCaleb\nLuis\nSeth\nJeffrey\nChase\nJose\nLogan\nShane\nBrendan\nNathaniel\nGavin\nBradley\nKenneth\nLiam\nPaul\nShawn\nVincent\nCollin\nErik\nMason\nTrevor\nXavier\nAlex\nAndre\nCody\nCorey\nDominic\nJackson\nJeremiah\nJulian\nWyatt\nBryan\nEdward\nEdwin\nGregory\nJake\nPeter\nStephen\nVictor\nAntonio\nDalton\nHayden\nIan\nIsaac\nMaxwell\nOwen\nRiley\nScott\nCarson\nDevon\nJakob\nJalen\nJoel\nNicolas\nWesley\nAidan\nAvery\nBrett\nBryce\nDarius\nEduardo\nFrancis\nGeorge\nHenry\nLarry\nLucas\nMiguel\nMitchell\nTanner\nZion\nBrenden\nClayton\nConner\nDonald\nDustin\nIvan\nJarrett\nJosiah\nLawrence\nNolan\nParker\nRussell\nSpencer\nAdrian\nAlec\nBlake\nCarter\nChance\nConor\nCristian\nCurtis\nDamon\nDawson\nGary\nJavon\nJesse\nJesus\nJorge\nKeith\nMalik\nMicah\nTravis\nTrent\nTrey\nTroy\nAlexis\nAngel\nBrady\nCade\nChad\nColby\nDakota\nDamien\nDean\nDerek\nDeshawn\nDevin\nDillon\nDonovan\nDwayne\nEli\nGrant\nHarrison\nJaden\nJamir\nJeffery\nKeegan\nKieran\nManuel\nMarcus\nMartin\nMekhi\nPedro\nRonald\nTheodore\nZackary\nMichael\nJacob\nMatthew\nZachary\nRyan\nChristopher\nJames\nJoshua\nNicholas\nJohn\nAndrew\nJoseph\nTyler\nAnthony\nWilliam\nThomas\nDaniel\nJustin\nNathan\nDavid\nDylan\nBenjamin\nBrandon\nAlexander\nRobert\nKyle\nLogan\nCameron\nNoah\nEthan\nChristian\nSamuel\nEric\nHunter\nLuke\nAustin\nJonathan\nSean\nElijah\nConnor\nJason\nJordan\nKevin\nBrian\nIsaiah\nJared\nColin\nSteven\nAaron\nGavin\nIan\nAdam\nEvan\nGabriel\nMason\nNathaniel\nPatrick\nTimothy\nAidan\nCharles\nPaul\nRichard\nSeth\nCaleb\nDominic\nKenneth\nAlex\nJose\nAntonio\nDevin\nJack\nLiam\nLuis\nStephen\nTrevor\nBrendan\nColby\nGarrett\nJaden\nJulian\nMark\nPeter\nCody\nEdward\nJackson\nJeffrey\nJeremiah\nJeremy\nJuan\nShane\nBryan\nMalik\nMarcus\nShawn\nCarlos\nChase\nCole\nDakota\nGeorge\nHarrison\nVincent\nCarter\nEmmanuel\nLucas\nMax\nOwen\nScott\nWyatt\nAngel\nDante\nGregory\nHayden\nIsaac\nJake\nKeith\nNicolas\nRonald\nSpencer\nXavier\nAlejandro\nAlexis\nBlake\nBradley\nBryce\nCollin\nJakob\nJavon\nMarquis\nMaxwell\nRaymond\nTravis\nTristan\nTroy\nAmir\nAxel\nBrett\nCorey\nCristian\nDalton\nDerek\nJayden\nJohnathan\nJosiah\nKaleb\nMiguel\nNickolas\nOmar\nOscar\nPhilip\nAdrian\nCarl\nCesar\nConor\nDeandre\nDerrick\nDouglas\nGage\nGiovanni\nGrant\nGriffin\nHenry\nIvan\nJesus\nKobe\nMalachi\nNasir\nSebastian\nShamar\nTaylor\nVictor\nZion\nBrady\nCaden\nCalvin\nDamien\nDillon\nDominick\nDonovan\nEdwin\nFrank\nHector\nJalen\nJavier\nJerome\nLawrence\nMelvin\nShaun\nTanner\nTrey\nTyree\nWesley\nZane\nMatthew\nNicholas\nMichael\nJacob\nJohn\nRyan\nWilliam\nAndrew\nJoshua\nJoseph\nChristopher\nJames\nAnthony\nTyler\nDaniel\nBrandon\nJustin\nJordan\nZachary\nDavid\nBenjamin\nDylan\nRobert\nAlexander\nLogan\nEthan\nNathan\nChristian\nSamuel\nAustin\nKyle\nThomas\nJason\nKevin\nEvan\nLuke\nCameron\nJonathan\nJose\nCharles\nConnor\nElijah\nCole\nIsaiah\nSean\nJack\nMason\nNoah\nAidan\nTimothy\nHunter\nPatrick\nBrian\nCaleb\nGabriel\nMark\nSeth\nXavier\nEric\nGavin\nSteven\nJaden\nJulian\nAdam\nShane\nCollin\nEdward\nJackson\nJared\nAaron\nChase\nEdwin\nNathaniel\nAlex\nJuan\nKenneth\nRichard\nAiden\nCody\nColin\nIan\nJeremiah\nOwen\nColby\nLuis\nStephen\nBlake\nGregory\nJayden\nTrevor\nBrett\nDominic\nLiam\nShawn\nAmir\nAndre\nAngel\nBryan\nCarlos\nHayden\nJake\nJeffrey\nJeremy\nNasir\nPeter\nTristan\nAdrian\nAntonio\nBryce\nGarrett\nKeith\nLucas\nRiley\nScott\nBrendan\nDevon\nErik\nFrank\nIvan\nJesus\nJoel\nJosiah\nMaxwell\nSebastian\nVictor\nDerek\nDonald\nEmmanuel\nGeorge\nIsaac\nJavier\nJesse\nShaun\nSpencer\nTrey\nWyatt\nAlec\nCarter\nDamian\nDarius\nDawson\nDonovan\nJorge\nKameron\nLouis\nMarvin\nMax\nMyles\nOscar\nPaul\nQuincy\nRicardo\nRonald\nSavion\nWesley\nAlberto\nAlexis\nAvery\nCasey\nDevin\nDominick\nDrew\nGage\nHenry\nJakob\nJalen\nJavon\nJerry\nKody\nMalik\nMarcus\nMaurice\nMicah\nMiguel\nMiles\nNolan\nOmar\nTravis\nTrent\nVincent\nWalter\nAshton\nBrady\nBrayden\nBrenden\nBrody\nBryant\nChad\nConner\nDamon\nDerrick\nDouglas\nElliott\nGary\nGiovanni\nGriffin\nHarry\nHector\nJaheim\nJaquan\nJerome\nKai\nKaleb\nLandon\nManuel\nMarco\nMario\nMaximus\nOliver\nRoberto\nTerrance\nMichael\nAndrew\nMatthew\nRyan\nJohn\nJoshua\nJacob\nChristopher\nJoseph\nJames\nWilliam\nAnthony\nDaniel\nZachary\nNicholas\nTyler\nAlexander\nBenjamin\nDavid\nChristian\nEthan\nJonathan\nDylan\nNathan\nJordan\nLogan\nSean\nBrandon\nRobert\nThomas\nJason\nJustin\nGabriel\nKevin\nSamuel\nElijah\nMason\nAidan\nCaleb\nCharles\nHunter\nAustin\nEvan\nAaron\nCameron\nConnor\nIan\nNoah\nJack\nJackson\nJaden\nGavin\nBrian\nKyle\nOwen\nAdam\nEric\nIsaiah\nLuke\nNathaniel\nTimothy\nAiden\nJose\nMark\nColin\nEdward\nJayden\nJulian\nBryan\nDominic\nJuan\nChase\nCole\nJared\nShane\nPatrick\nAlex\nJeremiah\nSteven\nHayden\nIsaac\nJeffrey\nJosiah\nRichard\nXavier\nAlan\nAntonio\nKenneth\nLiam\nShawn\nLuis\nCarter\nSeth\nHenry\nJeremy\nLucas\nRonald\nVincent\nAngel\nBryce\nGrant\nNasir\nCarlos\nCarson\nColby\nDevon\nPeter\nStephen\nTravis\nTrevor\nTristan\nAlejandro\nAndre\nAshton\nCollin\nConor\nDalton\nDante\nGarrett\nGiovanni\nJavier\nJesse\nMaxwell\nMekhi\nMiguel\nRiley\nAmir\nBlake\nBrayden\nBrendan\nBrett\nCody\nEdgar\nEdwin\nElias\nGregory\nJake\nMitchell\nPaul\nZane\nZion\nBradley\nChad\nCorey\nDakota\nDamien\nDarnell\nDonovan\nErik\nGeorge\nJaiden\nJalen\nJayson\nJermaine\nJesus\nJohnathan\nMax\nSebastian\nTrent\nTroy\nXander\nArthur\nAyden\nDarren\nEnrique\nEugene\nGerald\nJerry\nLandon\nMalachi\nMarco\nOmar\nParker\nPhillip\nRaymond\nWesley\nAlexis\nAndy\nAvery\nAxel\nBailey\nBranden\nCaden\nConner\nConrad\nDillon\nDominick\nDonald\nDrew\nFrank\nGordon\nGriffin\nGustavo\nHarrison\nHector\nJamar\nJoel\nJonah\nKaden\nLane\nLawrence\nLeon\nMarc\nMarquis\nMicah\nNicolas\nNolan\nPreston\nSkyler\nSpencer\nTy\nVictor\nRyan\nMichael\nJoshua\nMatthew\nNicholas\nAnthony\nWilliam\nJacob\nTyler\nJoseph\nAndrew\nJohn\nChristopher\nChristian\nNathan\nDaniel\nDylan\nZachary\nEthan\nAlexander\nThomas\nBenjamin\nJames\nRobert\nLogan\nLuke\nKevin\nDavid\nElijah\nJonathan\nNoah\nBrandon\nJayden\nConnor\nEvan\nJordan\nSamuel\nSean\nAiden\nCameron\nAidan\nAustin\nJack\nJustin\nMason\nJason\nJose\nAaron\nKyle\nGavin\nCaleb\nCharles\nJeremiah\nOwen\nGabriel\nIsaiah\nAdam\nEric\nBrian\nColin\nChase\nCole\nTimothy\nAlex\nBryan\nSeth\nIan\nJeremy\nJulian\nLiam\nRichard\nWyatt\nNathaniel\nAngel\nHunter\nJaden\nPatrick\nVincent\nDominic\nIsaac\nSteven\nJackson\nAlexis\nAntonio\nBlake\nJeffrey\nJuan\nShane\nXavier\nCody\nEdward\nGage\nMark\nGarrett\nHenry\nJared\nShawn\nAlan\nAndre\nBrendan\nDante\nEdwin\nLuis\nCarter\nDevin\nDonovan\nJake\nJosiah\nKaden\nKaleb\nLucas\nNasir\nPaul\nRiley\nStephen\nTrevor\nBrett\nBryce\nDonald\nGrant\nHayden\nJavier\nJesus\nKenneth\nMalachi\nMarcus\nMekhi\nNicolas\nPeyton\nWesley\nAmir\nAshton\nBrayden\nCarlos\nConner\nDerek\nGiovanni\nJoel\nLandon\nRonald\nShaun\nCollin\nDarius\nDiego\nFrank\nKanye\nLukas\nMiguel\nMiles\nOmar\nParker\nSebastian\nTravis\nTristan\nAlejandro\nBrenden\nCaden\nCarson\nClayton\nColby\nDevon\nDillon\nDominick\nEduardo\nErik\nFrancis\nGeorge\nHarrison\nJaiden\nJalen\nJohnathan\nMaurice\nMyles\nNolan\nOscar\nPeter\nPhilip\nZackary\nZion\nAbraham\nAdrian\nBrady\nBrennan\nCamron\nColton\nDalton\nDarian\nDrake\nGregory\nJaime\nJamar\nJaylen\nJayson\nJerome\nKai\nKhalil\nMakhi\nMarvin\nRicardo\nScott\nSpencer\nTheodore\nTyree\nVictor\nMichael\nMatthew\nRyan\nJoshua\nJacob\nAnthony\nNicholas\nAlexander\nAndrew\nWilliam\nJames\nJohn\nNathan\nJoseph\nBrandon\nDavid\nDaniel\nTyler\nChristopher\nRobert\nChristian\nLuke\nElijah\nEthan\nThomas\nLogan\nSamuel\nAiden\nSean\nZachary\nOwen\nDylan\nAidan\nBenjamin\nJonathan\nJustin\nJason\nCameron\nConnor\nGavin\nIsaiah\nJayden\nKevin\nNoah\nBrian\nKyle\nAngel\nCharles\nNathaniel\nJackson\nJordan\nMason\nGabriel\nJack\nLucas\nAaron\nAustin\nHunter\nChase\nCaleb\nEvan\nIan\nJose\nPatrick\nBryan\nJuan\nCole\nEric\nLiam\nTimothy\nCody\nDominic\nEdwin\nJeremiah\nTrevor\nAdam\nAlex\nMalachi\nPaul\nBryce\nCarlos\nColin\nGarrett\nNasir\nRichard\nShane\nStephen\nJoel\nKenneth\nSteven\nGiovanni\nIsaac\nJaden\nVincent\nAntonio\nEdward\nNolan\nXavier\nAmir\nBrayden\nBrendan\nJesus\nOmar\nZion\nHayden\nJeremy\nJesse\nLandon\nLuis\nMark\nSeth\nWyatt\nBlake\nBradley\nBrady\nCarter\nCollin\nDevin\nDiego\nDominick\nEmmanuel\nJaiden\nJake\nJulian\nJulius\nKaden\nMicah\nRiley\nRoman\nShawn\nAyden\nCarl\nCristian\nFrank\nGeorge\nGregory\nJared\nJavier\nJosiah\nKai\nMarcus\nRonald\nScott\nAvery\nBraden\nDakota\nDevon\nEli\nIvan\nJalen\nJude\nMax\nParker\nPedro\nPeter\nRaymond\nTravis\nTristan\nTy\nAlejandro\nAlexis\nAlijah\nAshton\nBraeden\nCaden\nDonald\nDrew\nHenry\nJosue\nMaxwell\nMiguel\nNicolas\nPreston\nShaun\nTrey\nTroy\nAdrian\nBrent\nBrody\nCalvin\nCamren\nCarson\nCasey\nChandler\nCooper\nDamien\nDarius\nGary\nGustavo\nJace\nJakob\nJaylen\nJeffrey\nJohnny\nJorge\nKeith\nLance\nMakhi\nMario\nMaurice\nNehemiah\nPhilip\nQuinn\nRocco\nSebastian\nStanley\nTanner\nTodd\nTyree\nVictor\nWesley\nRyan\nMichael\nJacob\nJohn\nMatthew\nNicholas\nChristopher\nJoshua\nAnthony\nJames\nEthan\nAlexander\nWilliam\nLogan\nAndrew\nNathan\nIsaiah\nChristian\nJoseph\nCameron\nJonathan\nNoah\nAiden\nElijah\nSamuel\nTyler\nThomas\nDaniel\nDavid\nDylan\nJayden\nRobert\nBenjamin\nBrandon\nLuke\nAidan\nConnor\nEvan\nGabriel\nAustin\nChase\nCaleb\nGavin\nJustin\nMason\nBrian\nJason\nAaron\nZachary\nJulian\nSean\nCharles\nJackson\nJordan\nKevin\nXavier\nNathaniel\nJack\nKyle\nJaden\nShane\nColin\nDominic\nAngel\nLucas\nOwen\nRichard\nSteven\nEric\nJose\nJuan\nBryce\nEdward\nJeremiah\nLiam\nCarter\nCole\nHunter\nLuis\nWyatt\nAdam\nBrady\nIan\nPatrick\nTrevor\nAlex\nHayden\nHenry\nIsaac\nJake\nMark\nAntonio\nBryan\nJosiah\nKenneth\nLandon\nMalachi\nNasir\nVincent\nBrayden\nJesus\nPaul\nRiley\nShawn\nTimothy\nTristan\nCarlos\nStephen\nBraden\nBradley\nConner\nDiego\nDominick\nEduardo\nEmmanuel\nGarrett\nJeffrey\nJeremy\nMarcus\nNolan\nTanner\nBraeden\nCorey\nDonald\nEdwin\nGrant\nJorge\nKaden\nMalik\nMaxwell\nSeth\nAdrian\nAndres\nBrody\nCollin\nCooper\nGage\nGiovanni\nGregory\nJaxon\nJesse\nJoel\nKeith\nMiguel\nOliver\nScott\nTravis\nYahir\nAlan\nAmir\nAndre\nBrendan\nCaden\nCody\nColby\nDante\nDrew\nErik\nFrancisco\nGeorge\nHarrison\nJaiden\nJared\nMekhi\nMelvin\nMiles\nSawyer\nSebastian\nVictor\nWesley\nAndy\nAvery\nCamron\nDamien\nDevin\nEdgar\nEnrique\nGianni\nHugo\nMyles\nOrion\nParker\nPeter\nPeyton\nQuentin\nRaymond\nTroy\nAden\nAlejandro\nAlexis\nAsher\nAshton\nCasey\nClayton\nCristian\nCurtis\nDerek\nEli\nEmanuel\nFrank\nJalen\nJaylen\nJayson\nJonah\nJosue\nKareem\nMarco\nMicah\nMitchell\nNaim\nNehemiah\nNickolas\nNicolas\nOscar\nPablo\nPhilip\nRoman\nRonald\nSincere\nTerrence\nTony\nZion\nZyaire\nMichael\nRyan\nAlexander\nChristopher\nJoshua\nJohn\nMatthew\nJacob\nAnthony\nJames\nWilliam\nNicholas\nJayden\nEthan\nJoseph\nDavid\nAiden\nLogan\nDaniel\nJason\nGavin\nNoah\nChristian\nAndrew\nJordan\nChase\nZachary\nNathan\nBenjamin\nCameron\nKevin\nLuke\nMason\nJonathan\nDylan\nGabriel\nJustin\nTyler\nAidan\nBrandon\nConnor\nEvan\nElijah\nJackson\nSamuel\nThomas\nBrian\nIsaiah\nJose\nOwen\nRobert\nXavier\nAaron\nJeremiah\nKyle\nCharles\nSean\nCole\nJack\nJosiah\nLiam\nDiego\nAustin\nIan\nJulian\nAngel\nJaden\nJeremy\nLucas\nNathaniel\nAdam\nCaleb\nCarlos\nEric\nHunter\nShane\nBryan\nColin\nDominic\nTimothy\nVincent\nAntonio\nBrady\nJared\nLandon\nBrayden\nLuis\nMalachi\nRichard\nShawn\nAlex\nBryce\nCaden\nIsaac\nMark\nDevon\nJuan\nPaul\nTrevor\nTristan\nEdward\nEdwin\nHayden\nHenry\nNasir\nQuinn\nVictor\nZion\nAyden\nBrody\nCody\nCollin\nSteven\nBraden\nPatrick\nPeyton\nWyatt\nAlan\nAlexis\nBlake\nBrayan\nBrendan\nCarson\nCarter\nDante\nJeffrey\nJesus\nKaleb\nLeo\nMalik\nMaxwell\nMiguel\nOmar\nRiley\nStephen\nDennis\nDonovan\nEdgar\nElias\nMarcus\nMax\nMicah\nNolan\nScott\nTanner\nAdrian\nAshton\nAvery\nBradley\nCristian\nDerek\nDevin\nDillon\nEduardo\nGiovanni\nJaylen\nJayson\nJesse\nJoel\nJonah\nKaden\nOscar\nPreston\nRicardo\nAndre\nAndres\nAngelo\nCayden\nChad\nConner\nCooper\nDamien\nDane\nEli\nEmmanuel\nGary\nGrady\nGrayson\nJakai\nJake\nJakob\nJavon\nJulius\nKai\nKenneth\nLincoln\nMartin\nNehemiah\nParker\nPeter\nRohan\nSeth\nSincere\nTravis\nTrey\nWalter\nAmir\nBrett\nCesar\nChance\nCorey\nCraig\nDavis\nDeclan\nDominick\nDonald\nGage\nGeorge\nGregory\nIsrael\nIvan\nJaiden\nJavier\nJaxon\nJeffery\nJermaine\nJorge\nJosue\nKameron\nKayden\nKeegan\nKeith\nKieran\nMekhi\nRandy\nRoman\nRonald\nSawyer\nTalan\nTheodore\nWesley\nZyaire\nMichael\nWilliam\nJacob\nChristopher\nJoshua\nJayden\nAnthony\nJames\nJohn\nMatthew\nRyan\nChase\nDaniel\nJoseph\nAndrew\nAlexander\nNoah\nEthan\nChristian\nJonathan\nElijah\nNathan\nLogan\nGabriel\nRobert\nAidan\nTyler\nDavid\nAiden\nBrandon\nBenjamin\nDylan\nMason\nGavin\nJustin\nNicholas\nThomas\nAustin\nJordan\nSamuel\nCameron\nLuke\nOwen\nAaron\nBrian\nJackson\nCharles\nEvan\nIsaiah\nJason\nZachary\nConnor\nKevin\nDominic\nJack\nJeremiah\nJulian\nWyatt\nLandon\nLiam\nBrady\nCaleb\nXavier\nAngel\nCarter\nCole\nNathaniel\nAdam\nBrayden\nJose\nShane\nRichard\nAyden\nEric\nHunter\nIan\nIsaac\nJosiah\nKyle\nSean\nJaden\nLuis\nBrody\nHenry\nJaiden\nJeffrey\nPatrick\nSteven\nAlex\nBryce\nEdward\nGeorge\nJuan\nLucas\nTimothy\nCarlos\nCristian\nGage\nEdwin\nLanden\nMaxwell\nStephen\nVincent\nAntonio\nBrennan\nBryan\nCaden\nColin\nColton\nDevin\nGrant\nJeremy\nKaleb\nMarcus\nMicah\nPaul\nAlan\nAshton\nDiego\nDominick\nGarrett\nHayden\nPreston\nTanner\nAvery\nBlake\nBraeden\nCarson\nChris\nJosue\nJude\nKayden\nMark\nNasir\nTrent\nAdrian\nAmir\nBrendan\nCooper\nDerek\nDevon\nEmmanuel\nJake\nKaden\nRiley\nSeth\nVictor\nZion\nAlexis\nCayden\nCollin\nDonovan\nGiovanni\nJaxon\nJoel\nJonah\nJulius\nKai\nKameron\nLuca\nNolan\nRafael\nSebastian\nShawn\nSincere\nSpencer\nTheodore\nTravis\nTrevor\nBradley\nDamien\nDonald\nErik\nEugene\nJesus\nJohnathan\nJorge\nKenneth\nLevi\nMekhi\nMitchell\nOscar\nParker\nPeter\nRicardo\nTristan\nZyaire\nAngelo\nAxel\nBraden\nCalvin\nCasey\nChance\nConner\nCorey\nDallas\nDarren\nDerrick\nEdgar\nErick\nFernando\nGary\nGianni\nGraham\nGriffin\nHarrison\nIsrael\nJalen\nJared\nJavier\nJaxson\nJonas\nKareem\nLincoln\nMalachi\nPeyton\nQuinn\nScott\nSergio\nTroy\nTucker\nAlexander\nMichael\nJames\nJayden\nEthan\nWilliam\nMatthew\nLogan\nAiden\nChase\nJacob\nJoshua\nAnthony\nGavin\nJoseph\nRyan\nChristian\nDaniel\nBenjamin\nChristopher\nNicholas\nTyler\nCameron\nJohn\nNoah\nNathan\nCharles\nDavid\nJordan\nJonathan\nGabriel\nRobert\nCarter\nJustin\nCaleb\nDylan\nLiam\nAndrew\nKevin\nBrandon\nCole\nElijah\nLandon\nZachary\nBrayden\nEvan\nJackson\nLucas\nIsaiah\nJason\nLuke\nSean\nAidan\nKyle\nThomas\nAaron\nAustin\nJeremiah\nMason\nConnor\nOwen\nDominic\nIan\nAdam\nNathaniel\nSamuel\nHunter\nShane\nGeorge\nJack\nTristan\nBryce\nRichard\nAngel\nBryan\nColin\nEric\nRiley\nAntonio\nBrian\nBrody\nJulian\nJaden\nMalachi\nXavier\nBrady\nJesus\nJose\nMiguel\nPaul\nAlex\nAmir\nJeremy\nJosiah\nStephen\nSteven\nWyatt\nBlake\nCarlos\nGrayson\nKaden\nMarcus\nNasir\nCooper\nJaiden\nMark\nPatrick\nSebastian\nSpencer\nTrevor\nVictor\nVincent\nBrendan\nCaden\nGiovanni\nIsaac\nJoel\nJude\nLarry\nMax\nMaxwell\nOliver\nTimothy\nZion\nAvery\nAyden\nCollin\nColton\nConner\nCristian\nDalton\nEdward\nEdwin\nHenry\nJonah\nJuan\nKameron\nLevi\nRonald\nSincere\nAdrian\nBradley\nDamien\nEduardo\nElias\nGriffin\nJake\nJared\nJaylen\nJeffrey\nKaiden\nKenneth\nMicah\nNolan\nTrent\nTrey\nWesley\nArmando\nBraden\nCesar\nChance\nCody\nCorey\nDante\nDerrick\nEmmanuel\nGage\nGregory\nHayden\nHolden\nJesse\nKaleb\nKeith\nKristopher\nLeonardo\nNicolas\nOscar\nPeter\nRandy\nRicardo\nSeth\nSilas\nSkyler\nAaden\nAhmad\nAlejandro\nAngelo\nBraydon\nBrenden\nBrennan\nCaiden\nCarson\nDakota\nDarius\nDarren\nDerek\nDiego\nDustin\nEli\nFrancis\nGarrett\nGrady\nIbrahim\nJavon\nJaxon\nJaxson\nJudah\nKieran\nKobe\nLeo\nLincoln\nMaurice\nMiles\nMyles\nParker\nRaymond\nShawn\nTanner\nTroy\nMichael\nWilliam\nAlexander\nJames\nAnthony\nJoshua\nMason\nGavin\nJacob\nRyan\nLogan\nAiden\nAndrew\nElijah\nEthan\nNoah\nChristopher\nJohn\nJayden\nCameron\nTyler\nBenjamin\nChase\nMatthew\nDaniel\nDavid\nNicholas\nGabriel\nJackson\nJoseph\nLiam\nNathan\nChristian\nLuke\nCaleb\nJustin\nJeremiah\nBrayden\nJonathan\nDylan\nKevin\nSamuel\nZachary\nCarter\nJordan\nLucas\nAustin\nJason\nAngel\nBrandon\nCole\nConnor\nCharles\nJack\nLandon\nColin\nDominic\nEvan\nJaden\nOwen\nThomas\nColton\nIsaiah\nJosiah\nRobert\nKyle\nWyatt\nAdrian\nHenry\nRichard\nTimothy\nAaron\nIan\nTristan\nBrian\nIsaac\nSean\nBryce\nJulian\nNathaniel\nCarlos\nEli\nXavier\nAntonio\nBlake\nCody\nCooper\nHunter\nJose\nKaleb\nMark\nShane\nVincent\nAidan\nEdward\nEric\nGrayson\nJaxon\nJeremy\nLuis\nMalachi\nOliver\nPatrick\nAdam\nJoel\nMicah\nAyden\nBryson\nCarson\nKaden\nMax\nParker\nStephen\nAlan\nAlex\nHayden\nJake\nJaxson\nJuan\nKayden\nMiguel\nNasir\nNolan\nTravis\nAvery\nBrendan\nBrody\nDeclan\nDiego\nGage\nGiovanni\nLeo\nLevi\nSteven\nBryan\nCaden\nChance\nConner\nDominick\nGeorge\nGrant\nHudson\nIsrael\nJaiden\nJorge\nJude\nKeegan\nKenneth\nRonald\nTy\nAlejandro\nAlexis\nAsher\nBraiden\nCayden\nDallas\nDalton\nDamien\nDean\nDevin\nEmmanuel\nFinn\nIvan\nJavier\nJesse\nJesus\nJohnathan\nJulius\nJustice\nKingston\nLeonardo\nMaxwell\nPeyton\nQuentin\nSebastian\nShawn\nVictor\nVincenzo\nWesley\nZion\nAhmad\nColby\nCollin\nCullen\nCyrus\nDamian\nDarius\nDonald\nEduardo\nEdwin\nElias\nFrank\nGarrett\nJaylen\nJeffrey\nJonah\nKai\nKellan\nLanden\nLawrence\nLouis\nLuca\nMarshall\nMaximilian\nMiles\nMyles\nNicolas\nPedro\nPreston\nQuinn\nRandy\nRhys\nRowan\nSantiago\nSemaj\nTanner\nTyrone\nWeston\nMichael\nMason\nRyan\nWilliam\nNoah\nEthan\nJacob\nAnthony\nAiden\nJayden\nChristopher\nJoshua\nLiam\nChase\nLogan\nDaniel\nElijah\nJoseph\nJames\nAlexander\nDavid\nCameron\nDylan\nNathan\nChristian\nJohn\nJeremiah\nAndrew\nBenjamin\nGavin\nMatthew\nTyler\nJonathan\nLuke\nOwen\nGabriel\nKevin\nSamuel\nAustin\nBrayden\nCarter\nLucas\nNicholas\nIsaiah\nThomas\nCole\nCaleb\nJulian\nJustin\nAyden\nJackson\nJordan\nRobert\nCharles\nLandon\nEvan\nAaron\nEli\nIan\nJosiah\nAidan\nBlake\nBrandon\nJaxon\nKyle\nZachary\nDominic\nHenry\nJack\nBrian\nJason\nLevi\nRichard\nTimothy\nVincent\nHunter\nNolan\nPatrick\nWyatt\nAdam\nColton\nConnor\nJaden\nSteven\nXavier\nBentley\nBrady\nBryce\nCaden\nColin\nEric\nIsaac\nJeffrey\nMarcus\nParker\nAlex\nBrody\nCarlos\nJose\nLuis\nMalachi\nMiles\nNathaniel\nShane\nAngel\nDeclan\nKaden\nOliver\nRyder\nSean\nBryson\nHayden\nJuan\nKaiden\nKenneth\nRaymond\nTravis\nTristan\nZion\nAdrian\nAvery\nCollin\nDamien\nDante\nElias\nGrayson\nKaleb\nMaxwell\nNasir\nNehemiah\nRiley\nAlan\nAxel\nConner\nEdward\nEmmanuel\nGeorge\nGiovanni\nJalen\nJared\nJeremy\nLanden\nLane\nPreston\nStephen\nAlejandro\nAmir\nAntonio\nBradley\nBrycen\nCullen\nDarius\nDerek\nEdwin\nGregory\nGreyson\nJace\nJesus\nJoel\nJude\nKayden\nKhalil\nMark\nMicah\nMiguel\nOmar\nPeter\nSebastian\nTrenton\nWesley\nAndre\nAsher\nAshton\nBryan\nCarson\nCayden\nCody\nCooper\nCurtis\nDanny\nElliot\nEzra\nFinn\nHarrison\nJake\nJaylen\nJesse\nJosue\nKeegan\nMax\nMaximus\nNicolas\nPaul\nRonald\nShawn\nSilas\nTanner\nVictor\nAlexis\nAmare\nAmari\nAndy\nBraden\nCarl\nCorey\nDerrick\nDevon\nDiego\nDominick\nDrew\nGianni\nGraham\nIvan\nJasir\nLincoln\nMaddox\nMarshall\nQuinn\nRoman\nRylan\nRyland\nSpencer\nTroy\nMichael\nAnthony\nLiam\nMason\nChristopher\nAlexander\nEthan\nWilliam\nElijah\nLogan\nJohn\nJacob\nJayden\nDaniel\nNoah\nAiden\nJackson\nJames\nJoseph\nJoshua\nChase\nAndrew\nCaleb\nChristian\nLuke\nDavid\nRyan\nGabriel\nCameron\nLucas\nBrayden\nCarter\nRobert\nTyler\nBrandon\nJordan\nLandon\nNathan\nOwen\nJeremiah\nMatthew\nSamuel\nDominic\nNicholas\nThomas\nAustin\nBenjamin\nCharles\nEvan\nJulian\nIsaiah\nJonathan\nAaron\nDylan\nGavin\nJaxon\nCole\nConnor\nParker\nXavier\nWyatt\nColton\nHenry\nHunter\nDeclan\nKevin\nAdam\nAdrian\nAlex\nGrayson\nIan\nJace\nJack\nBryce\nIsaac\nJustin\nPatrick\nShane\nTristan\nAngel\nBlake\nJason\nJose\nKayden\nZachary\nAidan\nAyden\nBrody\nCaden\nColin\nHayden\nMaxwell\nSean\nSebastian\nSteven\nTimothy\nVincent\nZion\nEli\nKenneth\nMark\nRoman\nVictor\nAvery\nBradley\nBryan\nBryson\nCarson\nEdward\nEric\nGiovanni\nKaden\nKameron\nMiles\nAsher\nDominick\nEdwin\nElias\nJosiah\nKaiden\nKaleb\nLevi\nNathaniel\nBennett\nBrian\nCooper\nKyle\nLincoln\nLuis\nMalachi\nMyles\nNolan\nPreston\nRichard\nSeth\nSilas\nAmir\nAshton\nDamian\nJaden\nJake\nJonah\nKingston\nMaddox\nOliver\nRaymond\nRiley\nRyder\nTrevor\nBentley\nBruce\nCayden\nColby\nCollin\nDante\nDarren\nGael\nGeorge\nIker\nJesus\nMicah\nPeter\nTheodore\nAmari\nAndre\nAngelo\nBrady\nCarlos\nCristian\nDerrick\nEmmanuel\nFinn\nHarrison\nJoel\nJuan\nJudah\nKellan\nLarry\nLeon\nMarcus\nNehemiah\nShawn\nTravis\nAlexis\nAnderson\nAryan\nAxel\nBraeden\nDalton\nDean\nDevon\nDiego\nEaston\nEmmett\nErick\nEverett\nGreyson\nJaiden\nJared\nJasiah\nJayce\nJude\nKai\nLayton\nMalcolm\nMarco\nMax\nMekhi\nMessiah\nMiguel\nNicolas\nNiko\nOscar\nPeyton\nReid\nRocco\nRonan\nSimon\nSpencer\nStephen\nTroy\nWesley\nZayden\nMichael\nMason\nLiam\nAiden\nWilliam\nJackson\nJoseph\nAlexander\nNoah\nJohn\nBenjamin\nEthan\nLogan\nJacob\nJayden\nJames\nAndrew\nAnthony\nRyan\nJoshua\nChristopher\nDaniel\nDavid\nLuke\nCameron\nChristian\nLucas\nNicholas\nCaleb\nDylan\nElijah\nBrayden\nLandon\nChase\nOwen\nGabriel\nHenry\nGavin\nIsaac\nJordan\nRobert\nCarter\nJulian\nNathan\nJaxon\nJeremiah\nJustin\nWyatt\nIsaiah\nJonathan\nMatthew\nSamuel\nTyler\nZachary\nThomas\nJack\nJose\nJosiah\nDeclan\nOliver\nVincent\nAustin\nAyden\nBrandon\nColton\nHunter\nJason\nKaiden\nBlake\nCharles\nConnor\nDominic\nJace\nJase\nParker\nMaxwell\nAaron\nAdam\nBryce\nCole\nXavier\nEdward\nEvan\nGiovanni\nIan\nKevin\nLeo\nLevi\nTristan\nAidan\nCayden\nGrayson\nJaxson\nLincoln\nRoman\nRyder\nTimothy\nAdrian\nBrian\nBryson\nGeorge\nKayden\nMalachi\nNolan\nPatrick\nZion\nAlex\nBrody\nJoel\nKaden\nLuis\nMiguel\nAndre\nAntonio\nAvery\nEli\nShane\nStephen\nTheodore\nVictor\nAsher\nBentley\nBryan\nCarson\nColin\nDiego\nEmmanuel\nGarrett\nJaiden\nJude\nKing\nMicah\nMiles\nTanner\nAlexis\nAngel\nAxel\nCarlos\nChance\nDamian\nGage\nHarrison\nJayce\nJeremy\nJonah\nKai\nKyle\nMark\nReid\nSteven\nXander\nAshton\nBradley\nBrantley\nCollin\nCooper\nDean\nGregory\nHayden\nJameson\nKaleb\nLarry\nLeonardo\nMax\nNathaniel\nNehemiah\nOmar\nRichard\nRiley\nRowan\nRylan\nSebastian\nSeth\nAarav\nAlan\nAmir\nBrendan\nCody\nDamien\nDominick\nEric\nGrant\nIvan\nJaden\nJayceon\nLukas\nMarcus\nMaverick\nMyles\nPaul\nPeter\nPhilip\nSilas\nWesley\nZayden\nAbel\nCristian\nDante\nDavion\nEduardo\nElias\nEmerson\nEmilio\nEverett\nFabian\nGideon\nHudson\nJamison\nJavier\nJermaine\nJerome\nJesus\nJorge\nJudah\nJulius\nKane\nKeith\nKenneth\nLanden\nLouis\nMaddox\nMarco\nMessiah\nNasir\nOscar\nPeyton\nScott\nShaun\nShawn\nTroy\nLiam\nMichael\nMason\nJacob\nLogan\nWilliam\nJames\nCaleb\nCarter\nJackson\nAlexander\nNoah\nAnthony\nMatthew\nElijah\nEthan\nAiden\nLuke\nDylan\nJohn\nLucas\nAaron\nChristopher\nJoseph\nAndrew\nBenjamin\nColton\nEvan\nDaniel\nOwen\nAustin\nJayden\nTyler\nBrayden\nGabriel\nGavin\nJoshua\nDavid\nChase\nCameron\nJace\nLandon\nNicholas\nRyan\nSamuel\nEli\nJaxson\nJonathan\nRobert\nConnor\nThomas\nHenry\nJordan\nOliver\nChristian\nDominic\nJack\nKayden\nNathaniel\nWyatt\nHunter\nJase\nJaxon\nJeremiah\nNathan\nJulian\nCharles\nKevin\nLevi\nParker\nTristan\nBrandon\nIsaiah\nKaiden\nSebastian\nAyden\nBrian\nGrayson\nJason\nJustin\nVincent\nJosiah\nZachary\nAdrian\nBlake\nColin\nIsaac\nKyle\nCarson\nIan\nKarter\nPatrick\nDeclan\nEzra\nNolan\nShane\nXavier\nCole\nHarrison\nLuca\nRichard\nRyder\nAdam\nAmir\nAntonio\nCaden\nJake\nKaden\nMalachi\nRoman\nSean\nTheodore\nTimothy\nWesley\nAvery\nBrody\nCalvin\nEric\nGage\nJayceon\nLincoln\nMaxwell\nRowan\nTravis\nVictor\nAngel\nAxel\nBentley\nBrady\nBryce\nCooper\nDalton\nElias\nEmmanuel\nGeorge\nGraham\nHudson\nJaden\nJax\nJoel\nJude\nKenneth\nKhalil\nKing\nLuis\nMark\nMiles\nMuhammad\nSteven\nAlex\nAlexis\nBraxton\nCaiden\nChance\nColby\nEdward\nGarrett\nGiovanni\nIvan\nJaiden\nJayce\nJeremy\nJorge\nJosue\nKingston\nLanden\nMicah\nMiguel\nRiley\nAidan\nAlejandro\nAnderson\nAndy\nAsher\nAshton\nBryson\nCorey\nDean\nDominick\nHayden\nJeffrey\nJesus\nKai\nLeo\nMateo\nMaximus\nMilo\nMyles\nPaul\nPreston\nTerrance\nZane\nAbel\nAndre\nAngelo\nBeau\nBrantley\nBrycen\nCamden\nCody\nConner\nCristian\nDamon\nDanny\nDesmond\nEaston\nEzekiel\nGreyson\nGriffin\nIsrael\nJonah\nJose\nKasai\nKolton\nLandyn\nLorenzo\nMaddox\nMarcus\nMario\nOmar\nQuinn\nReed\nReid\nRhys\nRory\nRyker\nSantiago\nSawyer\nSilas\nSimon\nSpencer\nStephen\nTyson\nWalter\nZander\nZion\nMary\nAnnie\nEthel\nWillie\nLouise\nLillie\nRuby\nThelma\nGladys\nRuth\nBessie\nMarie\nAlice\nMargaret\nRosa\nEdna\nBeatrice\nCarrie\nElizabeth\nDorothy\nIda\nAlma\nEssie\nMildred\nMyrtle\nMinnie\nMaggie\nMattie\nHelen\nMartha\nSarah\nMae\nLucille\nCora\nEmma\nEva\nEvelyn\nLillian\nLula\nMabel\nMamie\nIrene\nJosephine\nPearl\nViola\nBertha\nElla\nDaisy\nAnna\nFlorence\nGrace\nJessie\nCatherine\nClara\nFannie\nFrances\nHattie\nSusie\nVirginia\nAlberta\nNellie\nRose\nVera\nBernice\nGertrude\nJuanita\nLaura\nLois\nInez\nJulia\nAgnes\nLucy\nEdith\nEula\nAda\nChristine\nHazel\nLucile\nBeulah\nEsther\nFlora\nGussie\nKatherine\nLena\nSadie\nEllen\nKatie\nLeola\nMable\nMarion\nMaude\nPauline\nSallie\nEstelle\nGeorgia\nLottie\nMaria\nJanie\nJennie\nLeona\nLizzie\nMarguerite\nNancy\nRebecca\nViolet\nAddie\nBetty\nDoris\nEunice\nFlossie\nNettie\nOla\nTheresa\nVivian\nDora\nEleanor\nEtta\nKathleen\nLela\nLessie\nLola\nOllie\nRosetta\nCharlotte\nFlorida\nNora\nRachel\nAllie\nCallie\nCarmen\nChristina\nElsie\nEmily\nErma\nEstella\nGeneva\nHester\nHilda\nIsabel\nNaomi\nRoberta\nVerna\nVictoria\nAnn\nAnne\nBertie\nBlanche\nErnestine\nFreddie\nGracie\nHenrietta\nIdella\nRosalie\nStella\nAllene\nAmanda\nAmelia\nBonnie\nEliza\nEloise\nHallie\nHettie\nIrma\nIva\nJannie\nJewell\nLeila\nLily\nMarjorie\nMaxine\nMollie\nPansy\nPearlie\nRosie\nSally\nSara\nSue\nSybil\nWilhelmina\nWinifred\nAudrey\nBelle\nCaroline\nCarolyn\nCassie\nCelia\nClaudia\nCorinne\nDelia\nEffie\nElease\nElnora\nFrancis\nGeraldine\nIdell\nJane\nJean\nJoan\nKathryn\nLenora\nMatilda\nMaud\nMay\nMillie\nMyrtice\nOra\nPatricia\nRena\nMary\nAnnie\nWillie\nElizabeth\nLouise\nRuby\nRuth\nLillie\nFrances\nMargaret\nEthel\nThelma\nDorothy\nEdna\nLucille\nAlice\nHelen\nMarie\nRosa\nMildred\nFlorence\nLillian\nMinnie\nBessie\nGladys\nClara\nEmma\nIda\nJulia\nLois\nBertha\nBeatrice\nMartha\nCarrie\nEvelyn\nGrace\nJessie\nMattie\nAlberta\nJosephine\nMamie\nSarah\nElla\nEva\nNellie\nPearl\nViola\nHazel\nAlma\nLaura\nAnna\nHattie\nSusie\nGertrude\nIrene\nFannie\nLula\nRose\nCora\nEdith\nMabel\nVirginia\nDaisy\nEssie\nMae\nMyrtle\nInez\nPauline\nCatherine\nEunice\nBernice\nBeulah\nGussie\nDora\nStella\nAda\nAgnes\nEsther\nKatie\nLeola\nVera\nBetty\nDoris\nLeona\nLucy\nAddie\nEllen\nEloise\nGeorgia\nJennie\nMaggie\nEmily\nFlora\nIdella\nJuanita\nLucile\nMarion\nNancy\nAnn\nBlanche\nChristine\nElsie\nEstelle\nJohnnie\nLena\nLessie\nLottie\nMarguerite\nNaomi\nSallie\nAnne\nEula\nJanie\nJewel\nKatherine\nMaria\nNettie\nSadie\nAudrey\nBertie\nCallie\nEleanor\nEstella\nLenora\nLola\nMable\nMillie\nRebecca\nRoxie\nFlossie\nJane\nJosie\nMarjorie\nMay\nRoberta\nRosetta\nSylvia\nVivian\nAlbertha\nAmanda\nAmelia\nCarolyn\nCharlotte\nGeneva\nGracie\nMaude\nMiriam\nMyrtice\nOla\nOllie\nRachel\nWilma\nWinnie\nAllie\nClyde\nConstance\nCorine\nDelia\nDella\nEffie\nErma\nHannah\nHenrietta\nIrma\nIvory\nJewell\nLela\nMercedes\nOphelia\nQueen\nRena\nZella\nBonnie\nCaroline\nConnie\nCorrine\nDollie\nEliza\nElouise\nEtta\nFlorida\nGenevieve\nHortense\nIsabell\nIva\nJannie\nLilly\nLizzie\nNina\nNora\nOlga\nPatricia\nPearlie\nRosalie\nSara\nShirley\nVelma\nViolet\nZelma\nMary\nAnnie\nRuby\nDorothy\nRuth\nWillie\nMargaret\nElizabeth\nLouise\nThelma\nHelen\nMildred\nGladys\nMarie\nEthel\nLillie\nEdna\nFrances\nEva\nFlorence\nAlice\nLillian\nMinnie\nBeatrice\nRosa\nMyrtle\nAlma\nGertrude\nEmma\nMattie\nEvelyn\nHazel\nPearl\nBessie\nMartha\nSarah\nClara\nLucille\nRose\nIda\nCarrie\nEdith\nGrace\nAlberta\nCatherine\nJosephine\nAnna\nBertha\nDaisy\nElla\nInez\nJessie\nLois\nMaggie\nNellie\nEssie\nIrene\nPauline\nHattie\nMamie\nEunice\nLaura\nBernice\nSusie\nLula\nMae\nVirginia\nDoris\nAgnes\nLucile\nElsie\nMable\nAda\nFannie\nGeneva\nJulia\nViola\nCora\nEsther\nJuanita\nLeola\nMarjorie\nOla\nRebecca\nEula\nLena\nMabel\nMarguerite\nVera\nBlanche\nFlora\nKatie\nSallie\nEstelle\nLucy\nMaude\nVivian\nMarion\nEleanor\nJanie\nKatherine\nLeona\nSadie\nDora\nErma\nGeraldine\nJohnnie\nLola\nAddie\nBetty\nChristine\nGeorgia\nHilda\nNaomi\nTheresa\nEffie\nEloise\nJennie\nLottie\nNancy\nPearlie\nRosie\nAllie\nEllen\nIrma\nLeila\nLela\nSara\nAnn\nAnne\nCleo\nGracie\nOllie\nRosalie\nViolet\nWilma\nCarmen\nDella\nDollie\nEstella\nIva\nKathleen\nNell\nNora\nAudrey\nBarbara\nBeulah\nCorine\nElnora\nFlorida\nFlossie\nHarriet\nJewell\nOlive\nOra\nPeggy\nSally\nAmelia\nElma\nErnestine\nGenevieve\nGussie\nIris\nLizzie\nLorene\nMaria\nMarian\nNettie\nRachel\nStella\nSylvia\nVelma\nWilhelmina\nWinifred\nBertie\nCornelia\nEliza\nElouise\nHenrietta\nHortense\nIdella\nJane\nLenora\nLila\nLilly\nLorena\nLoretta\nLorraine\nMadeline\nMay\nMiriam\nOpal\nAmanda\nCaroline\nDelia\nEdythe\nEmily\nEtta\nFrankie\nIra\nIsabell\nJean\nJulie\nKathryn\nLily\nMittie\nNina\nPansy\nPinkie\nRubye\nSusan\nWinnie\nAdelina\nAlbertha\nAlthea\nCarolyn\nClarice\nEarnestine\nEddie\nFrancis\nHester\nJeanette\nJosie\nKate\nLee\nLessie\nLilla\nMargie\nMaxine\nMerle\nMillie\nOdessa\nOfelia\nPhyllis\nQueen\nRosetta\nRoxie\nMary\nAnnie\nRuth\nElizabeth\nLouise\nThelma\nMargaret\nMildred\nMarie\nRuby\nDorothy\nWillie\nHelen\nEdna\nAlice\nEvelyn\nFrances\nGladys\nEthel\nRosa\nLillie\nEdith\nVirginia\nMattie\nLillian\nEva\nJulia\nJosephine\nMartha\nMyrtle\nLucille\nBeatrice\nBessie\nGrace\nHazel\nAnna\nFlorence\nInez\nMinnie\nIda\nAlma\nEmma\nJessie\nViola\nDoris\nIrene\nVera\nCarrie\nGertrude\nHattie\nMamie\nCatherine\nSarah\nBertha\nRose\nMae\nAgnes\nDaisy\nElla\nLois\nSusie\nBernice\nEunice\nNellie\nCora\nMaggie\nAlberta\nClara\nElsie\nPearl\nLaura\nBetty\nGeneva\nLucile\nLula\nFannie\nMabel\nEssie\nPauline\nAda\nKatie\nLeola\nJuanita\nJanie\nKathryn\nBlanche\nEstelle\nEsther\nMarjorie\nBeulah\nEloise\nNancy\nOllie\nVivian\nAddie\nAnn\nChristine\nEstella\nEula\nFlora\nJennie\nLena\nMable\nRachel\nSara\nJohnnie\nLottie\nStella\nBonnie\nEffie\nEmily\nErnestine\nFlossie\nJean\nKatherine\nLizzie\nMarguerite\nMarion\nSallie\nDora\nEleanor\nGeorgia\nHilda\nIris\nIrma\nLucy\nMaude\nNettie\nRebecca\nSadie\nWilma\nEllen\nLeona\nLola\nMillie\nNaomi\nOla\nOlivia\nRoberta\nAlbertha\nAnne\nCarmen\nLela\nPearlie\nAlta\nAudrey\nCharlotte\nEliza\nErma\nGracie\nGussie\nJane\nJewell\nNell\nWinifred\nBarbara\nBertie\nCarolyn\nHarriet\nKathleen\nLydia\nMercedes\nMiriam\nMuriel\nNora\nRosie\nSally\nSylvia\nViolet\nWilhelmina\nAngelina\nDella\nDorothea\nHannah\nHenrietta\nJoyce\nLenora\nLessie\nMadeline\nMyra\nNorma\nOlive\nOpal\nRobbie\nRosetta\nShirley\nSusan\nVelma\nVictoria\nAdele\nBirdie\nClarice\nCorine\nDolores\nElnora\nFlorida\nIdella\nIva\nJeannette\nJewel\nJohn\nLeila\nLou\nMargie\nMaria\nMaud\nMaxine\nMyrtis\nQueen\nRhoda\nRosalee\nTeresa\nTheresa\nVerna\nAbbie\nAllie\nAmanda\nAngela\nArrie\nCallie\nCleo\nDoretha\nElaine\nElise\nElma\nElouise\nElva\nFrancis\nGenevieve\nGeraldine\nIla\nIna\nLeatha\nMarian\nMay\nMollie\nMyrtice\nOdessa\nPatricia\nRegina\nRetha\nRosalie\nSybil\nVerdell\nMary\nAnnie\nDorothy\nRuby\nMargaret\nHelen\nThelma\nRuth\nLouise\nMildred\nElizabeth\nEdna\nEvelyn\nWillie\nEthel\nGladys\nLillie\nFrances\nBeatrice\nMarie\nRosa\nLillian\nLucille\nAlice\nIrene\nNellie\nJosephine\nMartha\nLois\nAlma\nBernice\nSarah\nEva\nHazel\nJessie\nDaisy\nFlorence\nIda\nMamie\nInez\nMyrtle\nEmma\nGertrude\nBertha\nDoris\nEdith\nMinnie\nAnna\nBessie\nCatherine\nRose\nClara\nCarrie\nMaggie\nGrace\nCora\nElla\nVirginia\nMabel\nMattie\nLula\nPearl\nVera\nEssie\nHattie\nJulia\nSusie\nEunice\nLaura\nElsie\nFannie\nVivian\nAgnes\nMae\nViola\nEmily\nEsther\nJuanita\nLena\nBlanche\nKatherine\nLottie\nPauline\nAlberta\nEleanor\nFlossie\nKatie\nLucile\nMable\nEula\nNettie\nLeola\nLucy\nMarion\nEllen\nEloise\nAnne\nBarbara\nCorine\nDora\nMarguerite\nSadie\nEstelle\nLola\nMarjorie\nRebecca\nRosalie\nViolet\nBetty\nFlora\nHilda\nJanie\nNancy\nCarmen\nChristine\nGeorgia\nGussie\nKathleen\nMaude\nNaomi\nAda\nAnn\nGeneva\nJennie\nOla\nSara\nCharlotte\nErnestine\nIdella\nJohnnie\nCleo\nHenrietta\nIris\nLela\nOllie\nAddie\nBeulah\nCarolyn\nLeona\nLessie\nNina\nSallie\nAllie\nEffie\nErma\nFlorida\nGracie\nRosie\nWinifred\nJune\nKathryn\nMaria\nRoberta\nStella\nVelma\nVerna\nWilma\nClaudia\nEstella\nIrma\nJewell\nLenora\nLorene\nRachel\nDella\nFrankie\nIsabelle\nJean\nJewel\nLydia\nMuriel\nOlga\nOpal\nShirley\nTheresa\nWinnie\nBillie\nBonnie\nGenevieve\nHarriet\nJosie\nMay\nNell\nNorma\nRosetta\nSally\nSylvia\nBertie\nDolores\nDonnie\nElouise\nEugenia\nGeraldine\nIsabel\nJeanette\nLee\nLilly\nLizzie\nMarian\nNora\nOdessa\nOlive\nOra\nAnita\nAudrey\nCallie\nCassie\nCelia\nCornelia\nEdythe\nEstell\nIna\nJane\nLeila\nMadeline\nMollie\nPearlie\nPeggy\nPhyllis\nRita\nSybil\nVictoria\nWilla\nAlta\nAmelia\nAmy\nCarol\nDessie\nDollie\nDoretha\nElma\nElnora\nEtha\nHannah\nIona\nJannie\nMaudie\nMercedes\nMerle\nMiriam\nOphelia\nQueen\nRena\nRubye\nSophie\nAlbertha\nAline\nAmanda\nAntonia\nClarice\nConstance\nCorinne\nEddie\nElaine\nFrancis\nGloria\nGwendolyn\nHarriett\nHester\nIva\nJeannette\nJoyce\nLily\nLucretia\nLuella\nMargie\nMaxine\nMelba\nMozelle\nMyra\nNona\nOssie\nPatricia\nReba\nRhoda\nRosalee\nVida\nWilhelmina\nMary\nAnnie\nDorothy\nMargaret\nRuth\nElizabeth\nHelen\nEdna\nWillie\nMildred\nFrances\nRuby\nEvelyn\nLouise\nThelma\nGladys\nAlice\nHazel\nMarie\nEthel\nJosephine\nLillian\nBessie\nRosa\nLillie\nEdith\nMartha\nSarah\nVirginia\nDoris\nClara\nJulia\nLois\nMinnie\nMyrtle\nLucille\nBeatrice\nEva\nBernice\nIda\nAlma\nFlorence\nAnna\nEmma\nElla\nGrace\nIrene\nVera\nInez\nPauline\nCatherine\nGertrude\nNellie\nPearl\nCarrie\nMamie\nJuanita\nBertha\nHattie\nLula\nMattie\nLaura\nLucile\nRose\nAgnes\nEsther\nFannie\nMaggie\nVivian\nEssie\nEunice\nMabel\nViola\nDaisy\nElsie\nMae\nMable\nAlberta\nMarjorie\nEula\nMarion\nEstelle\nKatherine\nViolet\nJessie\nLeola\nSadie\nAddie\nCora\nJane\nLeona\nSara\nBetty\nErnestine\nKatie\nJean\nNaomi\nEloise\nGeneva\nLena\nMarguerite\nRebecca\nAda\nBarbara\nGeorgia\nSusie\nCarmen\nDora\nEleanor\nFlora\nIrma\nNancy\nOllie\nAudrey\nBlanche\nEllen\nJanie\nKathleen\nKathryn\nMaxine\nHilda\nMarian\nNettie\nTheresa\nAnn\nLucy\nMaria\nWilma\nBeulah\nCharlotte\nEmily\nJennie\nRosie\nSallie\nAnne\nCarolyn\nChristine\nCleo\nEstella\nJohnnie\nLeila\nRosalie\nWinifred\nBonnie\nIris\nLee\nLela\nLessie\nLottie\nAnita\nCelia\nFlorida\nLily\nMiriam\nOphelia\nStella\nVelma\nBertie\nClyde\nErma\nGeraldine\nGracie\nHenrietta\nJeanette\nLizzie\nLola\nMay\nVerna\nAllie\nDelia\nEarnestine\nElnora\nGenevieve\nGussie\nIsabel\nJosie\nMaude\nNora\nPatricia\nSue\nCorine\nEffie\nEtta\nFlossie\nIdella\nJewell\nMelba\nMyrtice\nPhyllis\nRoberta\nShirley\nVictoria\nAngelina\nBillie\nCallie\nElaine\nEliza\nFlorine\nIva\nLorena\nMollie\nNell\nNorma\nOla\nOra\nRachel\nRita\nAlbertha\nAntonia\nCorinne\nEdythe\nFrancis\nFrankie\nJannie\nJoyce\nLenora\nLila\nMargie\nMillie\nMuriel\nOlga\nPeggy\nQueen\nReba\nRena\nSylvia\nAlthea\nBettie\nClaudia\nDella\nDolly\nEddie\nElma\nElouise\nGwendolyn\nHannah\nIsabelle\nLorraine\nLou\nLovie\nPearlie\nSusan\nWinnie\nYvonne\nAida\nAlva\nAmy\nArtie\nCharity\nConstance\nDessie\nElisabeth\nEmilia\nFreda\nJewel\nJimmie\nJune\nLinnie\nLoretta\nMadie\nMaud\nNeva\nOlive\nOpal\nRosalee\nRoxie\nVermell\nAbbie\nAdele\nAdeline\nAlene\nAmanda\nAmelia\nBennie\nCecelia\nClifford\nDelma\nDollie\nDonnie\nEartha\nGloria\nGoldie\nHarriett\nHester\nIla\nIna\nIona\nJanice\nKate\nLeatha\nLettie\nLilly\nLorene\nLura\nLydia\nMercedes\nMyrtie\nNina\nOveda\nPansy\nSally\nVeda\nVesta\nMary\nDorothy\nAnnie\nMargaret\nRuth\nLouise\nMildred\nThelma\nElizabeth\nWillie\nHelen\nRuby\nEdna\nMarie\nAlice\nEvelyn\nEthel\nFrances\nGladys\nLillie\nLillian\nDoris\nLucille\nEdith\nHazel\nJulia\nLois\nEmma\nMartha\nSarah\nBessie\nPauline\nRosa\nVirginia\nBernice\nBeatrice\nNellie\nJessie\nIda\nEva\nClara\nCatherine\nJosephine\nFlorence\nAlma\nMamie\nJuanita\nMinnie\nElla\nAnna\nBertha\nMattie\nEsther\nMyrtle\nViola\nGrace\nMae\nIrene\nBetty\nMarguerite\nCarrie\nInez\nKatherine\nVera\nDaisy\nEunice\nRose\nGertrude\nMabel\nSusie\nLaura\nFannie\nLucile\nEssie\nCora\nGeneva\nHattie\nElsie\nMarjorie\nEstelle\nMarion\nMable\nPearl\nLena\nSara\nAgnes\nLeona\nAlberta\nDora\nLula\nMaggie\nOllie\nSallie\nVivian\nKatie\nLucy\nBarbara\nBlanche\nEleanor\nLottie\nSadie\nWilma\nAllie\nAnn\nFlora\nGeorgia\nJean\nJennie\nEffie\nHilda\nKathryn\nNancy\nNaomi\nVelma\nJewel\nRebecca\nAudrey\nEloise\nErnestine\nJane\nLeola\nCharlotte\nJohnnie\nMaude\nBeulah\nCarmen\nChristine\nEula\nGeraldine\nMercedes\nGenevieve\nRachel\nAddie\nCleo\nEmily\nHenrietta\nLola\nNettie\nNorma\nRoberta\nWinifred\nMarian\nAda\nAmy\nEstella\nHarriet\nIrma\nJanie\nKathleen\nLee\nMyrtice\nPearlie\nRosetta\nVerna\nCarolyn\nGloria\nGussie\nLeila\nLessie\nLizzie\nStella\nTheresa\nWinnie\nEllen\nElouise\nFrancis\nIris\nMaria\nNina\nOpal\nRosalie\nCorine\nFlorida\nIva\nMaxine\nMiriam\nViolet\nDelia\nDolores\nFlossie\nJeanette\nLela\nLetha\nNora\nOra\nPhyllis\nSylvia\nVictoria\nAngelina\nAngie\nBertie\nBonnie\nErma\nIdella\nJeannette\nLinnie\nMatilda\nNell\nOlivia\nPansy\nSybil\nAline\nAnita\nCaroline\nCassie\nCelia\nCorinne\nDollie\nElva\nIna\nJune\nLily\nMargarita\nMargie\nMelba\nMillie\nMuriel\nOlga\nOlive\nPatricia\nRosie\nSusan\nTommie\nAmelia\nCallie\nCelestine\nConstance\nDixie\nDoretha\nDorthy\nDovie\nElnora\nEtta\nEzell\nFaye\nFrankie\nJimmie\nJoyce\nLeo\nLila\nLilly\nLydia\nMay\nOuida\nPeggy\nRosalee\nSally\nAllene\nAnnette\nBillie\nClarice\nClaudia\nDessie\nFlorine\nFreddie\nGeorgie\nGwendolyn\nHester\nIona\nIsabelle\nJanet\nJeanne\nJewell\nJosie\nKate\nLavada\nLorraine\nLuella\nMadeline\nMaudie\nMavis\nOdessa\nOla\nOphelia\nRuthie\nShirley\nSue\nTheda\nVina\nAdele\nAlbertha\nAlthea\nAnne\nArlene\nArtie\nCarol\nCecilia\nCornelia\nDalia\nDella\nEarline\nEddie\nEdwina\nElaine\nElease\nElise\nGeorgina\nJannie\nJaunita\nLeatha\nLorena\nLorene\nLou\nMazie\nMerle\nQueen\nRamona\nRena\nRita\nRobbie\nYvonne\nZora\nMary\nMargaret\nAnnie\nDorothy\nHelen\nRuth\nThelma\nMildred\nElizabeth\nEdna\nLouise\nAlice\nWillie\nFrances\nRuby\nHazel\nMartha\nMarie\nGladys\nEvelyn\nVirginia\nRosa\nLillie\nEthel\nDoris\nEdith\nLucille\nBeatrice\nMyrtle\nSarah\nLillian\nLois\nMinnie\nMattie\nJulia\nBernice\nJosephine\nFlorence\nInez\nAlma\nBessie\nClara\nIrene\nJuanita\nElla\nEmma\nJessie\nEva\nIda\nCarrie\nEssie\nHattie\nAnna\nBertha\nGertrude\nCatherine\nRose\nGrace\nNellie\nSusie\nAlberta\nMarjorie\nAgnes\nEsther\nMae\nMamie\nMarguerite\nPauline\nVera\nViola\nBetty\nDaisy\nLaura\nPearl\nEunice\nKatherine\nCora\nLula\nMable\nMarion\nJohnnie\nMabel\nMaggie\nNancy\nEleanor\nSara\nElsie\nEula\nLeola\nBarbara\nBlanche\nDora\nEffie\nErnestine\nEstelle\nJennie\nNaomi\nAudrey\nGeraldine\nKathryn\nLeona\nRoberta\nAda\nAnne\nCharlotte\nHilda\nEloise\nGeneva\nRebecca\nVivian\nWilma\nCleo\nKathleen\nOra\nVelma\nCarolyn\nEllen\nFannie\nFlora\nGeorgia\nKatie\nLottie\nLucile\nGracie\nJane\nLena\nSallie\nEmily\nJean\nLucy\nSadie\nViolet\nBeulah\nJewell\nMercedes\nMiriam\nNettie\nNora\nAnn\nErma\nEstella\nGussie\nLizzie\nLola\nMaxine\nMelba\nOpal\nElouise\nIris\nJanie\nLydia\nMargie\nMaude\nNorma\nPearlie\nRachel\nStella\nCarmen\nChristine\nHenrietta\nIrma\nJoyce\nLorena\nMarian\nMyrtice\nNell\nOla\nQueen\nTheresa\nAllie\nAnita\nDolores\nFlossie\nFrancis\nJewel\nLetha\nLorene\nNina\nRosalie\nRosie\nBonnie\nIla\nJimmie\nJune\nMaria\nOlga\nOlive\nRosetta\nShirley\nVerna\nAmanda\nClaudia\nCorine\nEtta\nFrankie\nMazie\nMittie\nMyra\nOphelia\nPatricia\nSylvia\nAddie\nAnnette\nCallie\nEddie\nGwendolyn\nHarriet\nIona\nIsabel\nIva\nLeila\nLenora\nMillie\nMuriel\nReba\nRosalee\nAurora\nEliza\nElnora\nElvira\nFaye\nGenevieve\nHortense\nJeannette\nJoan\nLorraine\nMadeline\nMyrtis\nOllie\nWinifred\nWinnie\nAlbertha\nAline\nBertie\nCarol\nConstance\nEarnestine\nElaine\nElinor\nHarriett\nIdella\nJeanette\nLela\nLessie\nMay\nRetha\nRita\nRubie\nSophie\nVictoria\nWilla\nAdele\nAlene\nAlthea\nAmelia\nAmy\nAngeline\nCaroline\nCassie\nCelestine\nCharlie\nChristina\nClyde\nCornelia\nDixie\nEileen\nElma\nJosie\nLettie\nLila\nMarietta\nOnelia\nOuida\nPeggy\nPhoebe\nRubye\nSybil\nTeresa\nAdelaide\nAlfreda\nAllean\nAllene\nAltamease\nBerta\nClarice\nClydie\nConnie\nDalia\nDelia\nDella\nDonna\nDonnie\nElease\nEmilia\nEvalyn\nFlorida\nFreddie\nGail\nGeorge\nHelena\nHester\nIola\nIsabelle\nJanice\nJannie\nLeonora\nLilly\nLora\nLou\nLuella\nMaudie\nMaybelle\nMina\nNadine\nNannie\nOlivia\nRuthie\nSelma\nSue\nTessie\nVesta\nVirgie\nMary\nDorothy\nAnnie\nMargaret\nRuth\nElizabeth\nWillie\nLouise\nMildred\nHelen\nThelma\nRuby\nFrances\nEdna\nEvelyn\nMarie\nDoris\nAlice\nLillie\nEthel\nGladys\nRosa\nHazel\nEdith\nEmma\nVirginia\nJosephine\nLucille\nMyrtle\nAlma\nBessie\nCatherine\nBeatrice\nLillian\nMartha\nSarah\nEva\nLois\nFlorence\nIda\nMinnie\nGrace\nJessie\nBertha\nIrene\nJuanita\nAnna\nNellie\nLaura\nClara\nEssie\nJulia\nLucile\nMamie\nMarjorie\nAgnes\nBernice\nGertrude\nLula\nInez\nCarrie\nDaisy\nElla\nFannie\nMae\nViola\nMattie\nVera\nEsther\nLena\nMarguerite\nBetty\nHattie\nPearl\nRose\nSusie\nElsie\nEula\nMable\nPauline\nDora\nEunice\nVivian\nEleanor\nKatherine\nEloise\nKathryn\nSara\nMabel\nLeola\nLeona\nMaggie\nCora\nJean\nLola\nNancy\nWilma\nAlberta\nEllen\nHilda\nLucy\nMarion\nAda\nErnestine\nBarbara\nGeneva\nJanie\nJohnnie\nKatie\nRebecca\nSallie\nAnn\nBlanche\nCharlotte\nEmily\nEstella\nLottie\nErma\nEstelle\nViolet\nChristine\nCleo\nGeorgia\nOllie\nRoberta\nSadie\nCarolyn\nGussie\nNettie\nVelma\nFlora\nGeraldine\nIris\nJane\nJennie\nLessie\nTheresa\nBonnie\nEddie\nPatricia\nJeanette\nKathleen\nLizzie\nNaomi\nStella\nAnne\nAudrey\nBeulah\nFlossie\nGenevieve\nJosie\nLorene\nMarian\nMaude\nMyrtice\nOlive\nOra\nWinifred\nAddie\nEliza\nGwendolyn\nJewel\nLorraine\nOla\nQueen\nRosalie\nDolores\nJewell\nMiriam\nOpal\nPearlie\nWilla\nFrankie\nJoyce\nLila\nMargie\nMaxine\nMyrtis\nPansy\nSybil\nSylvia\nCarmen\nCelia\nEffie\nJune\nLily\nMaria\nMelba\nMillie\nNina\nNorma\nRachel\nSue\nVerna\nVictoria\nAllie\nBertie\nBillie\nCaroline\nClarice\nDelia\nGracie\nHenrietta\nIsabel\nIva\nJanet\nLuella\nMay\nNell\nWinnie\nAline\nAmanda\nAmelia\nAmy\nBennie\nBobbie\nCallie\nCorine\nDollie\nFlorida\nGloria\nLee\nLeila\nLenora\nMercedes\nMuriel\nNora\nSally\nAida\nClaudia\nDorthy\nEaster\nElnora\nElouise\nJimmie\nLora\nOdessa\nOphelia\nOuida\nRita\nRosie\nShirley\nAlbertha\nCassie\nDella\nDolly\nElma\nFlorine\nFrancis\nHortense\nLorena\nLydia\nOlivia\nPhyllis\nRena\nRetha\nRosalee\nRosetta\nSusan\nVida\nAngelina\nAnita\nAnnette\nCarol\nClyde\nCornelia\nEtta\nHettie\nIdella\nIna\nInell\nIrma\nJacqueline\nJannie\nJeanne\nJeannette\nJoan\nLela\nMagnolia\nMollie\nNona\nOlga\nRubye\nTommie\nAdeline\nAdell\nAlthea\nAvis\nBerniece\nBurnice\nCherry\nCynthia\nDoreatha\nDoretha\nEarnestine\nElaine\nElizebeth\nFaith\nFaye\nGoldie\nHannah\nHarriet\nIona\nIsabelle\nJohnie\nLelia\nLetha\nLettie\nLorine\nLou\nLouisa\nLucie\nMargarette\nMina\nMittie\nNadine\nNeva\nPeggy\nRobbie\nShellie\nVernice\nVesta\nYvonne\nMary\nDorothy\nAnnie\nRuth\nMargaret\nMildred\nHelen\nRuby\nElizabeth\nWillie\nLouise\nEvelyn\nGladys\nThelma\nEdna\nMarie\nFrances\nHazel\nDoris\nLillie\nEthel\nAlice\nEdith\nBessie\nVirginia\nRosa\nMartha\nLillian\nJuanita\nBernice\nGrace\nLucille\nEmma\nClara\nLois\nCatherine\nEunice\nJessie\nMattie\nBetty\nIrene\nFlorence\nElla\nMyrtle\nNellie\nEva\nJosephine\nSarah\nBeatrice\nMinnie\nJulia\nPauline\nMarjorie\nVera\nMamie\nAnna\nInez\nPearl\nAlma\nEssie\nAgnes\nGertrude\nLula\nHattie\nMae\nMaggie\nBertha\nKatherine\nFannie\nSusie\nDaisy\nIda\nCarrie\nRose\nBarbara\nCora\nEstelle\nMabel\nViola\nMarguerite\nLaura\nSara\nNancy\nEleanor\nLucile\nVivian\nGeneva\nHilda\nMable\nAlberta\nNaomi\nAudrey\nBlanche\nDora\nErnestine\nLena\nChristine\nJohnnie\nElsie\nVelma\nEsther\nGeorgia\nKatie\nLeola\nLeona\nCorine\nJean\nJeanette\nKathryn\nLucy\nMarion\nAnn\nBeulah\nGeraldine\nJanie\nSadie\nStella\nEloise\nEula\nHenrietta\nJennie\nOllie\nViolet\nWilma\nAnne\nFlossie\nJoyce\nNora\nAda\nEllen\nEmily\nJane\nLorraine\nMargie\nAllie\nJewel\nLizzie\nLottie\nBonnie\nCarolyn\nCharlotte\nErma\nGloria\nKathleen\nMiriam\nGussie\nIris\nLeila\nLydia\nOla\nRoberta\nVictoria\nAddie\nFlora\nJimmie\nLola\nPatricia\nRachel\nWinifred\nDolores\nEffie\nIsabel\nJewell\nLila\nLorene\nMaude\nOlga\nOra\nSallie\nCarmen\nEstella\nIrma\nMuriel\nNettie\nQueen\nRosetta\nShirley\nAmy\nAnita\nJune\nMarian\nNorma\nOdessa\nRebecca\nSybil\nTheresa\nBillie\nChristina\nIdella\nMyrtice\nOphelia\nPearlie\nSusan\nSylvia\nWinnie\nClarice\nCleo\nElouise\nHarriet\nHortense\nJosie\nLela\nMyra\nRosalie\nCallie\nClifford\nEarnestine\nEddie\nEliza\nIna\nIva\nLenora\nMaria\nMatilda\nMercedes\nOlive\nOuida\nPriscilla\nDella\nDoretha\nElma\nFay\nFrankie\nGwendolyn\nJacqueline\nJannie\nJeannette\nLilly\nLily\nMadeline\nMelba\nPhyllis\nRetha\nWilhelmina\nWilla\nAlbertha\nAline\nAlta\nCorinne\nEtta\nFlorida\nFreda\nLee\nMerle\nMollie\nNadine\nOpal\nReba\nRosie\nSally\nVirgie\nAdele\nAmanda\nAmelia\nArrie\nCaroline\nClaudia\nDollie\nDolly\nElnora\nGenevieve\nImogene\nIsabelle\nMazie\nMillie\nPatsy\nRena\nRita\nRuthie\nYvonne\nAdeline\nAlva\nAngeline\nAngie\nCharlie\nDelia\nElaine\nFlorine\nFrancis\nHannah\nIra\nLouvenia\nMarina\nMay\nNona\nOlivia\nOnelia\nPolly\nRosalee\nTheo\nTommie\nVernell\nAlene\nAntonia\nAurora\nAvis\nBennie\nBertie\nBettie\nCarol\nCassie\nConnie\nCornelia\nDessie\nDorothea\nDorthy\nEdwina\nEdythe\nElise\nElvie\nEstell\nEster\nFaith\nGracie\nIdell\nIla\nIona\nIsabell\nJaunita\nJeanne\nJoan\nJohnie\nKate\nKeturah\nLaurette\nLetha\nLinnie\nLorine\nLuella\nMarcella\nMargarette\nMaud\nMaxine\nMozelle\nMyrtis\nNina\nNita\nOrene\nPeggy\nPinkie\nRobbie\nRosemary\nRuther\nTillie\nVerdie\nVernice\nVina\nZelma\nMary\nDorothy\nMargaret\nAnnie\nHelen\nRuth\nMildred\nElizabeth\nFrances\nWillie\nDoris\nEvelyn\nLouise\nAlice\nThelma\nLillian\nEdna\nRuby\nMarie\nVirginia\nGladys\nHazel\nEdith\nSarah\nLillie\nRosa\nEthel\nBernice\nLucille\nMartha\nBetty\nJuanita\nLois\nBessie\nFlorence\nBertha\nMattie\nNellie\nClara\nMarjorie\nBeatrice\nInez\nMinnie\nElla\nJosephine\nEmma\nCatherine\nIda\nMyrtle\nEunice\nGrace\nJessie\nLaura\nEva\nMamie\nAlma\nEssie\nKatherine\nMaggie\nJulia\nLula\nPauline\nVera\nAnna\nCarrie\nGertrude\nViola\nIrene\nDaisy\nHattie\nBarbara\nVivian\nJean\nAlberta\nNancy\nAgnes\nEloise\nEsther\nHilda\nAnn\nCora\nWilma\nLucile\nDora\nMae\nMarguerite\nNorma\nPearl\nSusie\nBlanche\nEleanor\nElsie\nEula\nJune\nLucy\nRose\nFannie\nJane\nMabel\nAddie\nFlora\nJanie\nKatie\nMarion\nNettie\nErnestine\nGeneva\nAudrey\nEllen\nEstelle\nIris\nJohnnie\nLeona\nSara\nLola\nNaomi\nJoyce\nLeola\nNell\nOla\nViolet\nChristine\nGeraldine\nJennie\nKathleen\nKathryn\nMable\nAnne\nBeulah\nCharlotte\nOllie\nPatricia\nGwendolyn\nLena\nMaude\nCleo\nErma\nJeanette\nMargie\nVelma\nCarmen\nLottie\nMaxine\nOlga\nRebecca\nRosalie\nVictoria\nGussie\nJewel\nCarolyn\nClaudia\nDoretha\nElouise\nFlossie\nGeorgia\nGracie\nJewell\nLeila\nLenora\nMelba\nMuriel\nMyrtice\nElnora\nIrma\nMadeline\nNora\nOlivia\nSybil\nCorine\nEddie\nEmily\nGenevieve\nGloria\nLela\nLessie\nLorene\nOpal\nRosetta\nStella\nSylvia\nTheresa\nAda\nEarnestine\nMerle\nMiriam\nRachel\nSadie\nAnita\nEffie\nFrankie\nHenrietta\nJeanne\nJoan\nLydia\nMaria\nMarian\nOlive\nPhyllis\nSally\nAllie\nBonnie\nConstance\nElma\nHarriet\nIsabel\nLila\nMollie\nOra\nQueen\nRoberta\nShirley\nVerna\nWinnie\nBillie\nClarice\nDolores\nEtta\nEugenia\nIsabelle\nJosie\nMay\nMercedes\nMyra\nAdelaide\nCassie\nCornelia\nEstella\nIdella\nLily\nLinnie\nMillie\nOdessa\nPeggy\nWinifred\nAlbertha\nAmelia\nBertie\nCaroline\nCoretha\nDella\nDorthy\nFlorida\nIna\nIva\nJanet\nJannie\nLelia\nLilly\nRena\nRosalee\nRosie\nSophie\nSusan\nWilhelmina\nWilla\nAdele\nAdeline\nAmanda\nAnnette\nBobbie\nCorinne\nDalia\nDelia\nDollie\nEileen\nElaine\nElva\nIla\nImogene\nJimmie\nLeatha\nLee\nMatilda\nMyrtis\nNina\nPearlie\nRhoda\nRita\nRoxie\nSallie\nVida\nAngelina\nBeverly\nClyde\nElise\nErie\nFlorine\nFrancis\nHortense\nInell\nIra\nJoe\nJulie\nLilla\nLizzie\nLoretta\nLorraine\nMazie\nNona\nOphelia\nOuida\nPriscilla\nRobbie\nRosebud\nRutha\nRuthie\nSue\nAlfreda\nAlthea\nAlva\nAra\nArlene\nBerniece\nBettie\nCelia\nCharity\nChristina\nDorothea\nDorris\nElease\nFay\nFreddie\nHarriett\nIona\nLaverne\nLeonora\nLou\nLouisa\nLovie\nLucinda\nMarcella\nMariah\nMittie\nMozell\nNeva\nPerry\nPolly\nRosemary\nRossie\nSelma\nVeronica\nMary\nDorothy\nMargaret\nHelen\nAnnie\nMildred\nRuth\nElizabeth\nLouise\nFrances\nDoris\nWillie\nEvelyn\nThelma\nVirginia\nEdna\nRuby\nGladys\nAlice\nHazel\nBernice\nLillian\nJuanita\nEthel\nEdith\nLillie\nLois\nMarie\nMarjorie\nFlorence\nMartha\nLucille\nSarah\nIrene\nBetty\nInez\nMinnie\nCatherine\nGrace\nBertha\nEmma\nIda\nMyrtle\nJessie\nBeatrice\nBessie\nEva\nAlma\nJosephine\nVera\nMattie\nRosa\nClara\nAnna\nCarrie\nDaisy\nJulia\nPauline\nKatherine\nLula\nElsie\nNellie\nEssie\nViola\nGeraldine\nRose\nAgnes\nEloise\nVivian\nGertrude\nLaura\nMamie\nCora\nPearl\nMargie\nElla\nEunice\nMaggie\nSara\nJean\nMarion\nHattie\nKathryn\nNorma\nSusie\nErnestine\nMarguerite\nEleanor\nJune\nLucy\nWilma\nDora\nFannie\nAlberta\nBarbara\nEstelle\nEsther\nGloria\nJohnnie\nLucile\nMae\nNancy\nAudrey\nOllie\nKathleen\nRebecca\nViolet\nChristine\nHilda\nBeulah\nJewel\nKatie\nPatricia\nCarolyn\nCleo\nFlora\nJanie\nMabel\nVelma\nBlanche\nCharlotte\nGeneva\nLena\nLottie\nNaomi\nAnn\nBonnie\nGeorgia\nIris\nLeona\nLorene\nMarian\nOpal\nEula\nJane\nLeola\nMable\nMiriam\nEllen\nCarmen\nEmily\nFrankie\nNettie\nAnne\nBillie\nOla\nRachel\nSallie\nShirley\nDolores\nGwendolyn\nIdella\nLorraine\nMercedes\nOuida\nPeggy\nRosie\nSybil\nAda\nEffie\nMaxine\nSadie\nSylvia\nFlossie\nJewell\nLenora\nLola\nStella\nVerna\nWanda\nAnita\nIrma\nJeanne\nLeila\nNell\nNina\nOlga\nOlive\nRosalie\nRosetta\nWinifred\nAmanda\nCorine\nElnora\nEstella\nHarriet\nHenrietta\nJennie\nLessie\nMaria\nMaude\nMerle\nMyrtice\nTheresa\nAddie\nAlbertha\nClarice\nErma\nGracie\nJeanette\nJosie\nLizzie\nLydia\nRoberta\nAllie\nAmelia\nDoretha\nEtta\nEugenia\nGenevieve\nMatilda\nMelba\nPearlie\nWilla\nCallie\nCarol\nCornelia\nElouise\nJoyce\nLila\nOra\nQueen\nRobbie\nRuthie\nVirgie\nEarnestine\nFaye\nIla\nIna\nIsabell\nLaverne\nLee\nLela\nLetha\nLilla\nLuella\nMay\nMuriel\nMyra\nMyrtis\nNelda\nNora\nOphelia\nPhyllis\nPriscilla\nRosemary\nSally\nTommie\nAline\nBette\nBettie\nBirdie\nCaroline\nClaudia\nDella\nDorothea\nEddie\nEliza\nFrancis\nGussie\nJeannette\nJimmie\nLily\nMavis\nRena\nRutha\nSusan\nTrudie\nVictoria\nYvonne\nAida\nAlthea\nBeverly\nCelia\nConstance\nFlorida\nHortense\nIola\nIsabel\nIsabelle\nMadge\nMargery\nMarilyn\nOdessa\nPinkie\nRita\nVida\nWinnie\nAgatha\nAlta\nBettye\nClifford\nCorrine\nDollie\nElinor\nElma\nFlorine\nFreddie\nHarriette\nImogene\nIra\nJacqueline\nJannie\nJohnie\nLoraine\nLorena\nMadeline\nMargarette\nMariah\nMyrtie\nRetha\nRoxie\nRubye\nSue\nZelma\nZenaida\nAdelaide\nAlicia\nAllene\nAlyce\nAmy\nAngie\nAnnette\nCassie\nCharlie\nChristina\nClaire\nClaudie\nDolly\nDonnie\nElaine\nElease\nElvira\nFay\nHarriett\nInell\nJames\nJanet\nJanice\nJoan\nJonnie\nLelia\nLinnie\nLoretta\nMadie\nMarcia\nMargarita\nMarietta\nOfelia\nOnie\nPhoebe\nSavannah\nSyble\nVerdell\nVesta\nMary\nDorothy\nMargaret\nRuth\nAnnie\nHelen\nMildred\nLouise\nElizabeth\nEvelyn\nDoris\nRuby\nFrances\nVirginia\nEdna\nWillie\nThelma\nEthel\nBetty\nAlice\nGladys\nMartha\nEdith\nLillie\nLillian\nJuanita\nLois\nHazel\nBernice\nRosa\nSarah\nMarie\nMarjorie\nIda\nInez\nBertha\nIrene\nClara\nLucille\nCatherine\nBessie\nMinnie\nJosephine\nPauline\nAnna\nFlorence\nGrace\nMyrtle\nLaura\nJulia\nGeraldine\nJessie\nVera\nVivian\nEssie\nNellie\nAlma\nMattie\nEva\nGertrude\nNorma\nRose\nBeatrice\nEmma\nGloria\nKatherine\nMae\nMamie\nJean\nViola\nWilma\nDaisy\nLula\nPearl\nAgnes\nCarrie\nElsie\nElla\nMarguerite\nEsther\nBarbara\nChristine\nEloise\nAlberta\nEleanor\nKathryn\nMable\nMargie\nViolet\nEunice\nJohnnie\nRebecca\nAudrey\nDora\nHattie\nLucy\nMaggie\nSara\nAnn\nLucile\nFannie\nNancy\nPatricia\nErnestine\nGeorgia\nNaomi\nCharlotte\nGeneva\nJoyce\nKathleen\nMarion\nSusie\nOla\nBlanche\nCora\nEllen\nFlora\nMabel\nEmily\nEstelle\nEula\nMarian\nBonnie\nJane\nMaude\nWinifred\nAddie\nFlossie\nHilda\nLorene\nOlga\nShirley\nBeulah\nJennie\nJewel\nJune\nCorine\nEffie\nIris\nKatie\nMyrtice\nCarolyn\nHenrietta\nLola\nRachel\nGussie\nHarriet\nLena\nLottie\nPeggy\nStella\nTheresa\nLily\nMuriel\nOra\nSadie\nSallie\nAnita\nDolores\nEtta\nFrankie\nGwendolyn\nIrma\nJanie\nLeila\nLeola\nOpal\nSylvia\nVelma\nVictoria\nAda\nAnne\nElouise\nIdella\nJewell\nOlive\nOllie\nPearlie\nAllie\nEddie\nEstella\nJeanette\nMiriam\nNell\nLeona\nLorraine\nLydia\nMaria\nMaxine\nNettie\nPhyllis\nRita\nSally\nCallie\nCarmen\nCleo\nFlorida\nNina\nNora\nRosetta\nDoretha\nElnora\nErma\nJacqueline\nLizzie\nMerle\nWanda\nCassie\nConstance\nEarnestine\nGracie\nIla\nJosie\nMercedes\nOphelia\nRena\nSue\nVida\nWinnie\nAnnette\nBillie\nDella\nDessie\nFrancis\nGenevieve\nJeannette\nLenora\nMadeline\nMelba\nRosalie\nCarol\nElease\nElise\nFay\nHettie\nJanice\nJeanne\nJimmie\nJoan\nMarilyn\nMay\nNadine\nOdessa\nQueen\nRosie\nBertie\nCathryn\nCelia\nCharlie\nClarice\nConnie\nEdwina\nFaye\nIsabel\nJanet\nJannie\nLetha\nLettie\nLou\nOuida\nRetha\nRobbie\nRoberta\nSusan\nBette\nClaudia\nClyde\nEarline\nEdythe\nEliza\nElmira\nFloy\nFreda\nIola\nLee\nLela\nLenore\nLila\nLilly\nLoretta\nMazie\nMillie\nMyra\nNola\nOlivia\nRuthie\nSybil\nVerna\nVirgie\nVoncile\nWilhelmina\nWilla\nAline\nAltamese\nAlva\nAretha\nAurora\nBelle\nCaroline\nClaudie\nCorrine\nDelores\nDorthy\nEileen\nElva\nElvira\nHester\nIsabelle\nIva\nJames\nJaunita\nJudy\nLessie\nLilla\nLinnie\nLora\nMadge\nMaudie\nMavis\nMollie\nNita\nOma\nRosemary\nRubye\nYvonne\nAbbie\nAdelaide\nAlbertha\nAlyce\nAmelia\nAmy\nAntoinette\nBetsy\nBettie\nBettye\nCamilla\nCatharine\nCecilia\nCelestine\nClaire\nDelia\nDollie\nDonnie\nDorothea\nElena\nEugenia\nFreddie\nImogene\nJacquelyn\nKate\nLelia\nLina\nLuella\nLura\nLuvenia\nMadelyn\nMarcia\nMittie\nMozelle\nNeva\nOdell\nOretha\nPansy\nPaula\nReatha\nRossie\nSelma\nTheola\nVada\nVelia\nVerdie\nMary\nDorothy\nMargaret\nHelen\nMildred\nAnnie\nRuth\nElizabeth\nDoris\nLouise\nBetty\nWillie\nRuby\nEvelyn\nThelma\nAlice\nFrances\nMartha\nVirginia\nLillian\nEdna\nJuanita\nEdith\nGladys\nMarie\nMarjorie\nHazel\nEthel\nRosa\nCatherine\nBernice\nLois\nEmma\nSarah\nLillie\nGrace\nEva\nJosephine\nJulia\nClara\nFlorence\nIda\nAlma\nBeatrice\nJessie\nBertha\nMyrtle\nInez\nLucille\nNellie\nRose\nAnna\nBarbara\nBessie\nCarrie\nElla\nJean\nIrene\nMinnie\nNorma\nPauline\nAgnes\nDaisy\nGloria\nKatherine\nMattie\nVera\nPearl\nViola\nVivian\nEunice\nGeraldine\nMae\nElsie\nEsther\nMargie\nEleanor\nHattie\nMamie\nViolet\nWilma\nAudrey\nLaura\nEmily\nEssie\nFannie\nCora\nJohnnie\nLucile\nMarguerite\nSara\nCharlotte\nChristine\nJoyce\nLula\nGertrude\nKathryn\nMable\nMarion\nNaomi\nEloise\nJune\nMabel\nMarian\nShirley\nCarolyn\nNancy\nAlberta\nAnn\nLucy\nSusie\nBonnie\nErnestine\nRebecca\nEula\nLottie\nPatricia\nBeulah\nDora\nGeorgia\nHilda\nKathleen\nMaggie\nGeneva\nVelma\nEllen\nFlossie\nIris\nJewel\nJewell\nOlga\nSallie\nVerna\nBlanche\nCleo\nFlora\nJennie\nLeola\nLeona\nMyrtice\nOpal\nErma\nJane\nKatie\nSylvia\nAnne\nElouise\nLena\nLizzie\nNina\nAda\nOllie\nAnita\nEstella\nEstelle\nJacqueline\nLola\nRoberta\nTheresa\nVictoria\nHenrietta\nIrma\nNell\nPhyllis\nStella\nWanda\nDolores\nGracie\nMaxine\nNettie\nRosetta\nFaye\nFrankie\nGwendolyn\nHarriet\nJeanette\nJeanne\nPeggy\nQueen\nAddie\nLilly\nMarilyn\nMiriam\nOlive\nOuida\nRosalie\nSadie\nSybil\nBette\nCarmen\nCarol\nConstance\nDelores\nEarnestine\nMercedes\nNora\nYvonne\nClaudia\nDella\nIdella\nLenora\nLorraine\nOla\nRachel\nBillie\nCaroline\nClarice\nCorine\nDoretha\nEffie\nFrancis\nGussie\nIva\nJanet\nLila\nLorene\nMaude\nMerle\nMyra\nNadine\nSally\nWilla\nAllie\nAltamese\nClyde\nDorothea\nElaine\nJanie\nJeannette\nJimmie\nJoan\nLaverne\nLeila\nLettie\nLucinda\nLuella\nRetha\nRosemary\nAmanda\nClaire\nDeloris\nDollie\nDonna\nEddie\nEliza\nIsabel\nJannie\nLily\nLou\nOdessa\nOphelia\nVida\nWinifred\nWinnie\nAlene\nAlta\nCallie\nCynthia\nElnora\nGenevieve\nIsabelle\nLela\nLydia\nMarcia\nMay\nOlivia\nOra\nPansy\nRita\nSue\nTheola\nAdell\nAlbertha\nAmelia\nAmy\nArlene\nBettye\nBobbie\nCharlie\nConnie\nDorris\nEtta\nFay\nFlorine\nFreda\nLessie\nMadeline\nMadge\nMaria\nMavis\nMuriel\nPearlie\nRuthie\nVerdell\nAileen\nAllene\nAngie\nAnnabelle\nAnnette\nCorinne\nDelia\nDorthy\nEarline\nEdwina\nElease\nFlorida\nFreddie\nHannah\nHarriett\nHarriette\nHortense\nJacquelyn\nJoy\nLoretta\nLouvenia\nMazie\nMelba\nOcie\nReba\nSusan\nTheda\nTommie\nAlicia\nAltha\nArrie\nBertie\nBettie\nBeverly\nCarmela\nClifford\nCoral\nCorene\nCornelia\nCorrine\nDixie\nDolly\nEileen\nElise\nEllie\nElvia\nEnid\nEthelyn\nIla\nIna\nJackie\nJanice\nJaunita\nJerry\nJo\nJoe\nJohnie\nJonnie\nJosie\nJudith\nLelia\nLetha\nLinda\nMargarette\nMillie\nMollie\nMozelle\nMyrtis\nNita\nPatsy\nRosie\nRubie\nSelma\nVirgie\nWilhelmina\nZelma\nMary\nDorothy\nMargaret\nBetty\nHelen\nMildred\nRuth\nElizabeth\nAnnie\nDoris\nFrances\nLouise\nWillie\nEvelyn\nThelma\nRuby\nAlice\nVirginia\nMartha\nGladys\nEdna\nJuanita\nLillian\nMarie\nMarjorie\nHazel\nLois\nBernice\nEdith\nEthel\nSarah\nLillie\nFlorence\nRosa\nCatherine\nBessie\nBertha\nEva\nIda\nMyrtle\nAlma\nJosephine\nVera\nLucille\nAnna\nMinnie\nJessie\nJulia\nBarbara\nJean\nClara\nGloria\nGrace\nKatherine\nAgnes\nIrene\nPatricia\nElsie\nLula\nMattie\nGeraldine\nHattie\nDaisy\nEmma\nLaura\nNaomi\nVivian\nBeatrice\nEsther\nPauline\nViola\nElla\nEloise\nInez\nRose\nNellie\nEunice\nMarion\nNancy\nAnn\nKathryn\nCarrie\nEssie\nPearl\nViolet\nJohnnie\nNorma\nSara\nShirley\nMaggie\nPeggy\nCarolyn\nEleanor\nFlora\nJoyce\nMae\nGertrude\nJane\nRebecca\nAudrey\nChristine\nJune\nGeneva\nMamie\nAlberta\nCharlotte\nKatie\nMabel\nMarguerite\nMarian\nBlanche\nLucy\nMargie\nSusie\nErnestine\nElouise\nHilda\nCora\nDora\nEllen\nEula\nGeorgia\nRoberta\nBonnie\nEstelle\nFannie\nJennie\nLucile\nKathleen\nOlga\nRachel\nBeulah\nIris\nMable\nOllie\nSallie\nJewel\nLottie\nNettie\nPhyllis\nElnora\nIrma\nJewell\nLola\nOla\nWilma\nCleo\nMiriam\nNina\nBette\nBobbie\nDoretha\nHarriet\nJacqueline\nLorraine\nOra\nQueen\nStella\nSylvia\nWanda\nAnne\nCarol\nEmily\nFrankie\nJeanette\nLena\nLeola\nLeona\nMyrtice\nVelma\nVictoria\nAda\nBillie\nGwendolyn\nJoan\nLenora\nLorene\nMaxine\nMercedes\nOpal\nTheresa\nAnita\nCarmen\nNora\nRosalie\nWinifred\nEddie\nErma\nFaye\nLily\nNell\nConstance\nJanie\nJeanne\nVerna\nAllie\nBettie\nConnie\nCorine\nDolores\nEtta\nEugenia\nLee\nLeila\nLila\nMerle\nRosetta\nRutha\nSadie\nYvonne\nClaudia\nElaine\nElma\nEstella\nGussie\nJanet\nLessie\nMadeline\nMavis\nMuriel\nOuida\nRuthie\nAddie\nCaroline\nEffie\nEileen\nGenevieve\nHarriett\nLizzie\nLuella\nRosie\nSusan\nAmanda\nDonna\nFlorine\nFrancis\nHenrietta\nIdella\nJanice\nJosie\nMay\nOlive\nOphelia\nReba\nRosemary\nSybil\nAlbertha\nCallie\nDelores\nEarline\nFlossie\nFreddie\nGracie\nIna\nIva\nLaverne\nLydia\nMelba\nRita\nRoxie\nVida\nAlthea\nAmy\nBertie\nCelia\nDollie\nFlorida\nHortense\nJacquelyn\nJo\nJoy\nLela\nLetha\nLorine\nMyra\nNadine\nTommie\nAline\nAlta\nAngelina\nClaire\nClarice\nClyde\nDeloris\nDolly\nDorthy\nEarnestine\nImogene\nJimmie\nJohn\nJohnie\nLoretta\nMarilyn\nMyrtis\nPatsy\nRubye\nSelma\nSue\nAdeline\nAdell\nAngie\nAnnette\nBettye\nCassie\nCharlie\nClementine\nColleen\nDelia\nEartha\nFloy\nHester\nJeannette\nKate\nLettie\nLilly\nLoretha\nLucinda\nMaebell\nMaude\nOdessa\nPearlie\nRetha\nRosalee\nArlene\nArtie\nBeverly\nBirdie\nCecelia\nCornelia\nDalia\nEdwina\nEliza\nElvira\nEvangeline\nFreida\nIra\nJames\nLelia\nLora\nLouvenia\nMaria\nMillie\nPearly\nPriscilla\nReva\nRobbie\nSally\nSibyl\nTeresa\nVernell\nAllene\nAmelia\nAugusta\nCaridad\nCathryn\nCoretha\nCorinne\nDella\nDessie\nDoreatha\nDovie\nEarlene\nEaster\nEdythe\nElois\nEvie\nIla\nIsabel\nJerry\nLeatha\nLiza\nLonnie\nLoyce\nMarcia\nMillicent\nMyrtie\nNatalie\nOfelia\nOlivia\nOssie\nReather\nRegina\nRena\nRhoda\nSandra\nSophia\nVallie\nVerda\nVoncile\nWilla\nWinnie\nWinnifred\nWinona\nMary\nDorothy\nBetty\nMargaret\nHelen\nAnnie\nRuth\nElizabeth\nDoris\nMildred\nEvelyn\nLouise\nRuby\nFrances\nEdna\nMartha\nThelma\nAlice\nVirginia\nJuanita\nWillie\nLillie\nGladys\nGloria\nRosa\nBarbara\nLois\nMarjorie\nHazel\nSarah\nBernice\nMarie\nEthel\nEdith\nCatherine\nEmma\nLillian\nPatricia\nClara\nJulia\nLucille\nJessie\nAnna\nMinnie\nGrace\nBertha\nJean\nMattie\nVera\nPauline\nIrene\nEva\nIda\nJosephine\nBessie\nElla\nInez\nJoyce\nFlorence\nCarrie\nMae\nBeatrice\nMyrtle\nJune\nCarolyn\nChristine\nMamie\nRose\nAlma\nEleanor\nElsie\nMarian\nEssie\nNellie\nVivian\nAnn\nJohnnie\nKatherine\nPearl\nViola\nEloise\nLaura\nFannie\nShirley\nGeraldine\nJane\nMarion\nHilda\nMargie\nWilma\nAgnes\nDaisy\nEsther\nNorma\nSara\nEunice\nGertrude\nCharlotte\nLula\nKathleen\nNancy\nAlberta\nGeneva\nAudrey\nHattie\nMable\nMiriam\nViolet\nEmily\nLucile\nRebecca\nBonnie\nKatie\nPeggy\nCora\nFlora\nMarguerite\nNaomi\nWinifred\nGwendolyn\nKathryn\nMaxine\nOllie\nGeorgia\nAnne\nJacqueline\nLucy\nMabel\nOpal\nBeulah\nEula\nHarriet\nJanie\nJeanne\nMaggie\nSusie\nErnestine\nJennie\nDora\nJewell\nSylvia\nAda\nBillie\nRachel\nIris\nMarilyn\nNettie\nOra\nErma\nEstelle\nGracie\nLizzie\nSadie\nAddie\nBlanche\nElouise\nHenrietta\nJoan\nLola\nMaude\nNell\nWanda\nLena\nLessie\nLorene\nMuriel\nMyrtice\nOlga\nPhyllis\nVictoria\nBobbie\nCleo\nFaye\nFrankie\nJewel\nRoberta\nSallie\nVelma\nAllie\nCorine\nDolores\nJeanette\nLeola\nLorraine\nLottie\nLydia\nMadeline\nQueen\nRutha\nAnita\nEddie\nFlossie\nLeona\nMyra\nNina\nOphelia\nStella\nCarol\nClarice\nGenevieve\nLenora\nMercedes\nMerle\nNora\nOla\nTheresa\nVernell\nBettie\nDonna\nFlorida\nJanet\nJanice\nJosie\nLoretta\nOuida\nRita\nRoxie\nConstance\nEffie\nElaine\nEstella\nIrma\nIva\nOdessa\nOlive\nRosalie\nRosetta\nVerna\nWilla\nAmelia\nBette\nDollie\nEarline\nEtta\nJames\nJeannette\nLee\nLila\nRobbie\nRosie\nYvonne\nAlbertha\nCelia\nColleen\nDelia\nEarnestine\nElma\nGussie\nIdella\nIna\nJimmie\nLela\nMollie\nPriscilla\nSybil\nAngie\nCarmen\nCornelia\nDella\nDelores\nDolly\nEdythe\nFrancis\nJacquelyn\nJannie\nMavis\nMay\nMelba\nPatsy\nPaula\nSally\nVida\nCelestine\nClaudia\nDorothea\nEaster\nEliza\nEllen\nElnora\nEugenia\nFay\nFreddie\nJohn\nJoy\nLaverne\nNadine\nOssie\nSue\nAida\nAllene\nAlthea\nAmanda\nAnnette\nBettye\nChristina\nCorinne\nDonnie\nEartha\nFlorine\nFlorrie\nHester\nHettie\nLily\nLinda\nLou\nMaria\nMazie\nPearlie\nPolly\nReba\nRubye\nRuthie\nZelda\nAdelaide\nAline\nBennie\nBertie\nClaire\nDoretha\nEileen\nElva\nHannah\nIsabel\nIsabell\nJaunita\nJerry\nJudy\nLeatrice\nLeila\nLettie\nLorine\nMadge\nOlivia\nSelma\nSusan\nWilhelmina\nAnnabelle\nBeverly\nBloneva\nCallie\nCaroline\nCassie\nCecelia\nCecil\nCharlie\nClaudie\nConnie\nElinor\nEster\nGene\nGoldie\nHortense\nIra\nIsabelle\nKathrine\nLetha\nLinnie\nLovie\nMarjory\nMillie\nNita\nRhoda\nRosemary\nRuther\nTommie\nVerdie\nVirgie\nAbbie\nAlene\nAlfreda\nAlmeda\nAmy\nAretha\nBeaulah\nBerniece\nClyde\nCoretha\nDalia\nDoreatha\nDorris\nDorthy\nElease\nEllouise\nEmilie\nEvangeline\nEvie\nFanny\nGeorgina\nHallie\nHenry\nIla\nImogene\nJackie\nJoe\nJohnie\nLeonora\nLilly\nLonnie\nLorena\nLouvenia\nLuella\nMammie\nMarietta\nMatilda\nNelda\nOnelia\nRena\nRosalee\nRudolph\nTerry\nTessie\nWinona\nMary\nDorothy\nBetty\nMargaret\nHelen\nDoris\nMildred\nFrances\nRuth\nAnnie\nElizabeth\nLouise\nEvelyn\nVirginia\nAlice\nBarbara\nThelma\nMartha\nEdna\nWillie\nGloria\nRuby\nJuanita\nHazel\nLillian\nLois\nMarjorie\nJean\nRosa\nGladys\nCatherine\nEdith\nBernice\nEthel\nLillie\nMarie\nPatricia\nSarah\nPauline\nJoyce\nIda\nKatherine\nFlorence\nJosephine\nBertha\nMattie\nLucille\nJulia\nMarion\nAnna\nMyrtle\nNancy\nEmma\nIrene\nShirley\nElla\nClara\nGrace\nGeraldine\nMinnie\nRose\nBeatrice\nEleanor\nBessie\nAnn\nEva\nNorma\nVivian\nEssie\nLaura\nVera\nInez\nLula\nCarrie\nAlma\nJane\nCarolyn\nJessie\nKathryn\nMargie\nCharlotte\nJohnnie\nJune\nNellie\nSara\nAudrey\nGeneva\nMae\nPeggy\nWilma\nCora\nEloise\nErnestine\nMamie\nHilda\nMarian\nChristine\nMaggie\nEunice\nEsther\nGertrude\nDaisy\nElsie\nAgnes\nKathleen\nPearl\nIris\nJacqueline\nSusie\nViolet\nHattie\nViola\nAnne\nFannie\nJeanne\nEmily\nMable\nDolores\nDora\nJoan\nMaxine\nOllie\nMarilyn\nAlberta\nGeorgia\nLucile\nOla\nRachel\nElouise\nEstelle\nFlora\nKatie\nLucy\nMarguerite\nSylvia\nEllen\nPhyllis\nRebecca\nAda\nBlanche\nJeanette\nJennie\nNaomi\nSadie\nSallie\nSally\nEula\nGwendolyn\nJewel\nNettie\nVelma\nYvonne\nBettie\nLeona\nBeverly\nBillie\nLena\nConstance\nJanie\nBonnie\nLenora\nMabel\nNina\nTheresa\nBeulah\nIrma\nLola\nOlga\nPatsy\nWanda\nWinifred\nErma\nFrankie\nLaverne\nMyrtice\nAddie\nEstella\nMaude\nOpal\nRosalie\nVerna\nFaye\nHarriet\nJewell\nLorraine\nNell\nNora\nRoberta\nRosemary\nSusan\nAllie\nAnita\nDoretha\nFrancis\nLorene\nPearlie\nSybil\nBettye\nCarol\nFay\nMyra\nNadine\nRosetta\nBobbie\nCynthia\nElaine\nJeannette\nJoy\nLottie\nMiriam\nMuriel\nReba\nStella\nBette\nCarmen\nEarnestine\nElnora\nHenrietta\nRita\nWilla\nColleen\nDella\nImogene\nJanet\nJannie\nLeola\nLessie\nMercedes\nOlive\nAltamese\nClarice\nFlossie\nGussie\nJacquelyn\nJo\nLydia\nOlivia\nRutha\nCleo\nCorine\nEffie\nIna\nIva\nMadeline\nMelba\nMerle\nOdessa\nRuthie\nAlbertha\nAlene\nCharlie\nClaudia\nConnie\nDolly\nEdwina\nEileen\nElease\nEugenia\nGenevieve\nJackie\nJimmie\nJoanne\nJosie\nLelia\nMillie\nVictoria\nAllene\nClaire\nDelores\nEddie\nEliza\nEtta\nFlorida\nFlorine\nLela\nLila\nLily\nMyrtis\nPansy\nRena\nWinnie\nAline\nAngie\nAnnette\nCaroline\nClifford\nDalia\nDollie\nDorthy\nIsabelle\nLetha\nLorine\nMargarette\nMaria\nNona\nOra\nPriscilla\nQueen\nRetha\nTommie\nAileen\nAlthea\nAmy\nAngeline\nArlene\nCallie\nCarmel\nCecelia\nDessie\nDonna\nDonnie\nEaster\nGracie\nIdella\nIla\nJanice\nJaunita\nJoann\nJudy\nLee\nLizzie\nLoretta\nMolly\nOphelia\nOuida\nPolly\nRobbie\nRosie\nSuzanne\nTessie\nWilliam\nAbbie\nAmanda\nAmelia\nBertie\nCassie\nCharlene\nCorrine\nDixie\nDorris\nElinor\nElise\nFlorene\nFreddie\nGlenna\nIsabel\nIsabella\nLilla\nMaud\nMay\nRenee\nRubye\nSue\nVernell\nVeronica\nAlfreda\nAlicia\nCecil\nChristina\nDaphne\nDona\nEarlene\nEdythe\nElvira\nFreda\nIola\nKathleene\nLeila\nLouvenia\nLucinda\nLuella\nLulu\nMarcia\nMargarita\nMollie\nRichard\nRobert\nRubie\nSyble\nTeresa\nVoncile\nAlethia\nAlyce\nAretha\nBerniece\nBirdie\nBlanch\nCelia\nCorinne\nDovie\nEarline\nElva\nEvelyne\nFaith\nGeorgie\nHannah\nHarriett\nHelena\nHope\nHortense\nJames\nJoe\nJohnie\nJonnie\nJudith\nJunita\nKatrina\nLeah\nMadelyn\nMadge\nMargery\nMavis\nMona\nMozelle\nNatalie\nRachael\nReatha\nRosalee\nSharon\nSophia\nTheo\nVida\nWilda\nYolanda\nZenaida\nMary\nDorothy\nBetty\nMargaret\nMildred\nHelen\nDoris\nFrances\nAnnie\nRuth\nEvelyn\nVirginia\nLouise\nElizabeth\nBarbara\nMartha\nThelma\nAlice\nJuanita\nRuby\nWillie\nEdna\nLois\nGloria\nMarie\nGladys\nCatherine\nSarah\nBernice\nJean\nPatricia\nEthel\nHazel\nRosa\nShirley\nLillian\nMarjorie\nJoyce\nEdith\nLillie\nBeatrice\nRose\nIrene\nMarion\nEmma\nInez\nBertha\nFlorence\nAlma\nBessie\nClara\nMattie\nIda\nLucille\nNancy\nPauline\nCarrie\nJosephine\nGrace\nNorma\nVera\nEva\nAnn\nAnna\nJune\nNellie\nGeraldine\nMamie\nCarolyn\nMinnie\nElla\nJulia\nKatherine\nLaura\nLula\nMyrtle\nJane\nJessie\nPeggy\nEleanor\nJohnnie\nAgnes\nVivian\nEunice\nIris\nMarian\nEloise\nEsther\nGertrude\nHattie\nChristine\nMae\nViola\nDaisy\nViolet\nAudrey\nEssie\nWilma\nElsie\nKathryn\nMargie\nMaggie\nCharlotte\nNaomi\nSusie\nCora\nEula\nJacqueline\nRoberta\nEmily\nGeneva\nJewel\nMable\nPearl\nErnestine\nHilda\nJeanette\nJeanne\nBlanche\nDora\nEllen\nMarilyn\nPhyllis\nDolores\nFlora\nKathleen\nSara\nGwendolyn\nKatie\nFannie\nVelma\nErma\nJewell\nJoan\nLola\nMabel\nMaxine\nAda\nAnne\nBillie\nElouise\nLena\nLeola\nLucile\nRebecca\nWanda\nBettye\nMiriam\nSally\nAlberta\nJanet\nMarguerite\nNell\nOlga\nOpal\nBeverly\nBonnie\nJanie\nLottie\nOllie\nSallie\nSylvia\nBettie\nElaine\nJennie\nMyra\nEstelle\nLeona\nLucy\nOra\nPatsy\nAnita\nBeulah\nFaye\nIrma\nJoy\nStella\nVerna\nWinifred\nCarmen\nCarol\nGeorgia\nLizzie\nOla\nRachel\nRosemary\nAddie\nDoretha\nMavis\nMercedes\nNora\nQueen\nRosalie\nBobbie\nEffie\nElnora\nEstella\nLila\nMuriel\nSadie\nTheresa\nYvonne\nConnie\nConstance\nGracie\nHenrietta\nMaude\nMay\nNina\nPearlie\nClaire\nDella\nEarnestine\nFrancis\nFrankie\nIva\nLenora\nLorene\nLydia\nMelba\nRita\nRosetta\nSusan\nBette\nCleo\nDonna\nGussie\nJackie\nJacquelyn\nJimmie\nLeila\nLorraine\nMyrtice\nVictoria\nWilla\nAllie\nCharlie\nImogene\nJaunita\nMadeline\nOphelia\nRosie\nAnnette\nCaroline\nEddie\nIna\nJannie\nJoanne\nOuida\nRuthie\nSybil\nAngie\nClarice\nDalia\nDelores\nFlossie\nFreddie\nHarriet\nHarriett\nLaverne\nLessie\nLily\nOdessa\nOlive\nSue\nBennie\nBertie\nClaudia\nColleen\nCorine\nDorthy\nEartha\nFlorida\nHannah\nJanice\nJeannette\nLinda\nMaria\nMollie\nAltamese\nDolly\nEarline\nElinor\nElois\nElvira\nEugenia\nFlorine\nGenevieve\nIdella\nJo\nLelia\nMillie\nPriscilla\nRobert\nWinnie\nAngelina\nAvis\nCelia\nEarlene\nElva\nEtta\nFay\nIona\nIsabel\nJonnie\nJosie\nMadge\nMarcia\nPolly\nRetha\nSuzanne\nTommie\nVernell\nWilhelmina\nZelma\nAileen\nAlfreda\nAmelia\nCornelia\nCorrine\nCynthia\nDelia\nDorothea\nElma\nFloy\nHope\nIola\nKay\nLee\nLilly\nLora\nLorine\nLou\nMazie\nNettie\nPansy\nPaula\nRosalee\nSophie\nTheodora\nAdell\nAlthea\nArlene\nBernessia\nBobby\nCallie\nCleopatra\nDollie\nEileen\nGoldie\nHortense\nIsabelle\nJames\nLela\nMargret\nMerle\nMyrle\nNadine\nNita\nOsie\nRegina\nRena\nRuther\nSelma\nSyble\nAbbie\nAdrienne\nAida\nAmy\nCecil\nChristina\nClyde\nCorinne\nDonnie\nDoreatha\nEdwina\nEliza\nEvangeline\nFaith\nFreda\nHelene\nHester\nJudy\nKatheryn\nKathrine\nLorena\nLoretta\nLouisa\nLouvenia\nLuella\nMargarette\nMaryland\nMaud\nMaudie\nMelvina\nMillicent\nMolly\nMona\nNatalie\nNelda\nPat\nReatha\nReba\nRenee\nRoxie\nSidney\nTeresa\nVirgie\nMary\nDorothy\nBetty\nMargaret\nHelen\nAnnie\nDoris\nRuth\nMildred\nBarbara\nEvelyn\nMartha\nFrances\nElizabeth\nLouise\nVirginia\nAlice\nRuby\nPatricia\nWillie\nEdna\nThelma\nGloria\nJuanita\nLois\nSarah\nGladys\nJoyce\nLillian\nBernice\nCatherine\nJean\nShirley\nMarjorie\nRosa\nMarie\nHazel\nEthel\nBertha\nLillie\nEdith\nJohnnie\nGeraldine\nNancy\nElla\nFlorence\nMyrtle\nGrace\nPauline\nLucille\nAnn\nLaura\nNorma\nVera\nBessie\nIrene\nIda\nPeggy\nAnna\nEmma\nCarolyn\nClara\nRose\nAlma\nBeatrice\nJosephine\nJune\nCarrie\nEva\nInez\nMinnie\nErnestine\nMae\nMarion\nAudrey\nJulia\nMarian\nVivian\nSara\nElsie\nNaomi\nHattie\nPearl\nWilma\nLula\nMattie\nNellie\nCharlotte\nChristine\nKatherine\nEsther\nIris\nMargie\nEleanor\nJessie\nKathryn\nMamie\nJane\nDaisy\nRoberta\nWanda\nDora\nBillie\nJoan\nViola\nDolores\nEssie\nGertrude\nHilda\nGwendolyn\nMaggie\nMaxine\nBlanche\nEunice\nYvonne\nGeneva\nKathleen\nLucy\nAgnes\nBeulah\nEloise\nJewel\nOllie\nSusie\nBeverly\nEmily\nFannie\nMarilyn\nAlberta\nErma\nMable\nNina\nPatsy\nPhyllis\nVelma\nJeanette\nJeanne\nLorraine\nDelores\nEula\nLola\nTheresa\nBonnie\nMabel\nKatie\nMelba\nRamona\nSylvia\nCora\nJanet\nLucile\nMyrtice\nRutha\nWinifred\nAnne\nBettie\nFlora\nGeorgia\nJacqueline\nLeona\nMarguerite\nMiriam\nSadie\nAda\nAnita\nEllen\nLeola\nLottie\nOpal\nAddie\nFlossie\nLena\nNell\nRebecca\nRosemary\nSallie\nCarol\nCynthia\nEddie\nElouise\nJanie\nPearlie\nImogene\nJoy\nNettie\nSusan\nGussie\nIrma\nJoanne\nLeila\nLorene\nOlga\nOlive\nRuthie\nViolet\nEarnestine\nEstelle\nFrancis\nFrankie\nHarriet\nJanice\nJennie\nJewell\nLizzie\nQueen\nRachel\nRosalie\nRosetta\nSally\nWilhelmina\nCarmen\nClarice\nDeloris\nEstella\nFlorida\nGenevieve\nJames\nAllene\nBette\nBettye\nBobbie\nDorthy\nElaine\nElnora\nFaye\nJackie\nJeannette\nMyra\nOra\nVerna\nAnnette\nCleo\nColleen\nLenora\nLessie\nNora\nPaula\nReba\nStella\nClaudia\nDalia\nDonna\nDoretha\nEarlene\nEffie\nGracie\nIva\nMerle\nMuriel\nOla\nOphelia\nAllie\nAmelia\nBennie\nCaroline\nConstance\nCorine\nDelia\nDella\nJacquelyn\nJimmie\nJo\nLaverne\nLoretta\nMadeline\nMaude\nSybil\nCharlie\nConnie\nDolly\nEarline\nEileen\nHortense\nJannie\nJoann\nJosie\nLee\nLinda\nLorine\nLou\nLuella\nOdessa\nPansy\nRita\nRosie\nSuzanne\nTommie\nWilla\nAngie\nBlanch\nCassie\nDessie\nDorris\nEdwina\nEdythe\nElma\nEtta\nHarriett\nJerry\nJoanna\nKatharine\nMaria\nMavis\nMay\nThomas\nVirgie\nAlbertha\nAltamease\nAmy\nCelia\nCharles\nDonnie\nEartha\nEugenia\nFreddie\nGlenna\nIsabelle\nJudy\nLetha\nLily\nLue\nMargarette\nMillie\nMolly\nMyrna\nMyrtis\nOfelia\nOlivia\nOssie\nOuida\nPriscilla\nRena\nRossie\nSharon\nSue\nWilliam\nAdele\nAlene\nAltamese\nAvis\nBerta\nBertie\nBobby\nCelestine\nCorrine\nDaphne\nDixie\nDollie\nFlorine\nFreida\nHannah\nIdell\nJoe\nJohn\nJulie\nKathrine\nLelia\nLila\nLilla\nLilly\nLoraine\nLouella\nMadge\nMarcia\nMazie\nMollie\nMozell\nOcie\nOmega\nPat\nPatty\nPeggie\nPhoebe\nPinkie\nRichard\nRoxie\nRubye\nSelma\nTheola\nVeda\nVerdell\nVernice\nVida\nVoncile\nWinona\nZula\nMary\nBetty\nDorothy\nHelen\nDoris\nMargaret\nMildred\nBarbara\nAnnie\nFrances\nRuth\nElizabeth\nLouise\nVirginia\nEvelyn\nMartha\nWillie\nJoyce\nThelma\nJuanita\nRuby\nAlice\nHazel\nPatricia\nEdna\nLois\nRosa\nJean\nMarjorie\nGloria\nBernice\nGeraldine\nGladys\nEthel\nCatherine\nShirley\nSarah\nClara\nLillian\nEmma\nRose\nEdith\nIrene\nLucille\nJoan\nNancy\nMarie\nMattie\nLillie\nMinnie\nAlma\nAnn\nVivian\nCarolyn\nIda\nJulia\nNorma\nMarion\nPauline\nPeggy\nAnna\nCarrie\nElla\nBertha\nDolores\nFlorence\nVera\nGrace\nNellie\nJosephine\nLaura\nKatherine\nAudrey\nMyrtle\nEva\nJohnnie\nJune\nJessie\nLula\nSara\nBessie\nChristine\nInez\nJane\nMamie\nMargie\nAlberta\nBeatrice\nMae\nViola\nCharlotte\nGertrude\nKathryn\nCora\nErnestine\nEssie\nEsther\nEunice\nJacqueline\nAnne\nElsie\nGeneva\nAgnes\nWilma\nBillie\nDora\nDaisy\nHattie\nMarian\nEloise\nHilda\nKatie\nMaxine\nPearl\nViolet\nPhyllis\nFannie\nLeola\nNaomi\nIris\nLeona\nLucy\nBobbie\nEllen\nJeanne\nMable\nMarilyn\nPatsy\nRoberta\nWanda\nBeulah\nBonnie\nErma\nGwendolyn\nLena\nLucile\nBeverly\nFlora\nLottie\nEleanor\nEstelle\nEula\nKathleen\nSadie\nCarol\nFaye\nGeorgia\nJeanette\nMaggie\nSue\nCarmen\nElouise\nJennie\nJewel\nNettie\nOpal\nRebecca\nSusie\nAddie\nElnora\nEmily\nJoanne\nSallie\nSylvia\nYvonne\nAda\nDelores\nGracie\nJanie\nMabel\nMiriam\nRachel\nSusan\nVelma\nWinifred\nHarriet\nJewell\nRita\nRosemary\nBettie\nLola\nLorraine\nMyrtice\nRamona\nSally\nTheresa\nJimmie\nMarguerite\nNina\nRuthie\nVerna\nBlanche\nCleo\nEarnestine\nIna\nJannie\nJoann\nMyra\nOla\nOlga\nRutha\nCharlie\nDella\nEddie\nEstella\nJo\nJoy\nSybil\nVictoria\nBettye\nCorine\nElaine\nJackie\nLorene\nOllie\nPearlie\nQueen\nRosetta\nAlbertha\nDollie\nDoretha\nEtta\nFrankie\nIdella\nJacquelyn\nLee\nLizzie\nLoretta\nMaude\nMuriel\nNell\nOra\nWilhelmina\nWilla\nAnita\nAnnette\nClaire\nClarice\nConnie\nDeloris\nFlossie\nIona\nIrma\nIsabel\nJosie\nLonnie\nLydia\nMargarette\nBertie\nBette\nCecelia\nColleen\nDonna\nEaster\nEdwina\nFlorida\nFreddie\nGenevieve\nJanet\nJanice\nJeannine\nLeila\nLelia\nLila\nLily\nMaria\nMavis\nMercedes\nMillie\nNora\nOphelia\nPatty\nPriscilla\nReba\nRosalie\nVoncile\nAngie\nBennie\nCaroline\nClaudia\nConstance\nEarlene\nElva\nFay\nFrancis\nGussie\nIva\nJames\nLessie\nLinnie\nLoraine\nMadeline\nMargery\nMerle\nOdessa\nRobbie\nVernell\nWinnie\nAlthea\nAmy\nCelia\nChristina\nDonnie\nDorothea\nDorris\nDorthy\nEarline\nEffie\nFern\nFlorrie\nGeorge\nHenrietta\nIla\nIola\nJeannette\nJohnie\nLela\nLenora\nLilly\nLorine\nLuella\nMay\nOfelia\nOuida\nRosie\nStella\nVeda\nVilma\nAline\nAllie\nAltamese\nAltha\nAmelia\nBetsy\nCarole\nCeleste\nCelestine\nCoretha\nCynthia\nDolly\nDoreatha\nDoreen\nEileen\nEliza\nElma\nElmira\nElna\nElvira\nEster\nEugenia\nGearldine\nHarriette\nHester\nImogene\nJaunita\nJudith\nJulie\nLeatha\nLettie\nLilla\nLou\nLucinda\nLue\nMadie\nMelba\nMolly\nMyrna\nMyrtis\nNadine\nOlive\nOlivia\nOna\nOssie\nPansy\nRegina\nReva\nSharon\nTheola\nTommie\nVerdell\nVirgie\nWilhelmena\nYolanda\nMary\nBetty\nDorothy\nBarbara\nMargaret\nDoris\nHelen\nMildred\nFrances\nEvelyn\nElizabeth\nRuth\nAnnie\nMartha\nJoyce\nThelma\nLouise\nAlice\nRuby\nWillie\nGloria\nPatricia\nVirginia\nJean\nEdna\nJuanita\nShirley\nGladys\nSarah\nLois\nCatherine\nRosa\nMarjorie\nLillie\nBernice\nLillian\nMarie\nNancy\nHazel\nEthel\nIda\nVivian\nGeraldine\nCarolyn\nEdith\nEmma\nJoan\nClara\nLaura\nRose\nLucille\nElla\nMinnie\nPauline\nDolores\nGrace\nAnn\nNorma\nJane\nJosephine\nJulia\nVera\nEleanor\nEva\nIrene\nJessie\nMae\nMyrtle\nPeggy\nBertha\nJune\nMarilyn\nAnna\nChristine\nErnestine\nInez\nMarion\nAudrey\nCharlotte\nEunice\nNellie\nKatherine\nDelores\nViola\nWanda\nElsie\nMattie\nSara\nFlorence\nBessie\nAgnes\nEllen\nLucy\nCarrie\nElouise\nAlma\nJohnnie\nViolet\nDaisy\nEloise\nJeanette\nLula\nWilma\nEssie\nEsther\nMarian\nCora\nKathryn\nMamie\nGeneva\nHattie\nMargie\nSally\nAlberta\nEula\nHilda\nJanie\nKatie\nBillie\nJoanne\nLena\nSusie\nAnne\nBeatrice\nBobbie\nJacqueline\nErma\nFlora\nGeorgia\nMaggie\nPearl\nVelma\nBettie\nBeverly\nFannie\nGertrude\nMaxine\nFaye\nJo\nLorraine\nRebecca\nDora\nIris\nNaomi\nNettie\nNora\nAnita\nEmily\nJeanne\nPhyllis\nRachel\nRita\nJoann\nKathleen\nLenora\nLucile\nMyra\nPatsy\nTheresa\nBettye\nEarnestine\nIrma\nJanice\nLorine\nRoberta\nJanet\nJewel\nLeola\nLeona\nVerna\nBlanche\nCarol\nCorine\nElaine\nHarriet\nMable\nMiriam\nOlga\nSylvia\nConstance\nDollie\nRosemary\nBonnie\nDeloris\nEddie\nEstelle\nJackie\nJeannette\nJewell\nLoretta\nMercedes\nRosie\nSadie\nYvonne\nDonna\nFlossie\nGwendolyn\nLeila\nLydia\nOla\nOllie\nOpal\nQueen\nWinifred\nEliza\nFrankie\nFreddie\nJacquelyn\nJoy\nLila\nLola\nLottie\nNell\nNina\nOphelia\nAddie\nAlbertha\nBeulah\nCarmen\nLorene\nMabel\nNadine\nPearlie\nReba\nRuthie\nSue\nSusan\nAda\nAlene\nAnnette\nCaroline\nDolly\nEarlene\nElma\nEstella\nEtta\nGracie\nLetha\nMavis\nOra\nRena\nSuzanne\nVictoria\nAltamese\nBette\nCharlie\nClaudia\nHenrietta\nJosie\nJudith\nLinda\nMaxie\nMerle\nPansy\nPriscilla\nRamona\nStella\nCleo\nDoretha\nDorothea\nEileen\nElnora\nJennie\nJohn\nLee\nLily\nLizzie\nMarguerite\nMona\nMyrtice\nNona\nRosetta\nRutha\nSallie\nAllie\nAmelia\nCallie\nClarice\nDella\nDonnie\nDorthy\nEffie\nFrancis\nGussie\nIona\nJerry\nJimmie\nLela\nLessie\nLonnie\nLucinda\nMarcia\nMaria\nMelba\nNeva\nOdessa\nOlive\nOlivia\nRosalie\nSharon\nSheila\nVoncile\nZelma\nAline\nBennie\nConnie\nCornelia\nCynthia\nFlorine\nGenevieve\nGeorge\nHarriett\nIna\nIsabel\nJames\nJoe\nLona\nMay\nMillie\nMollie\nMuriel\nPat\nPaula\nRobbie\nVida\nWinnie\nAlicia\nAllene\nAngie\nAntoinette\nBobby\nBonita\nCathryn\nCecilia\nCelia\nCherry\nChristina\nClaire\nDaphne\nDeborah\nDelphine\nEdwina\nEstell\nFay\nGay\nGlenda\nImogene\nInell\nJanis\nJeannine\nJenny\nLilly\nLouvenia\nLoyce\nLulu\nMadeline\nMadge\nMargarette\nMyrna\nPhoebe\nSammie\nSelma\nSybil\nTeresa\nVerdell\nVernell\nWilhelmina\nZella\nMary\nBetty\nDorothy\nBarbara\nMargaret\nHelen\nElizabeth\nDoris\nFrances\nAnnie\nMildred\nMartha\nPatricia\nRuth\nEvelyn\nJoyce\nVirginia\nShirley\nGloria\nAlice\nWillie\nThelma\nLouise\nJuanita\nJoan\nLois\nRuby\nHazel\nCatherine\nEdna\nBernice\nLillian\nNancy\nJean\nCarolyn\nClara\nSarah\nMarjorie\nPeggy\nEdith\nEthel\nNorma\nRosa\nJune\nMarie\nAnn\nGladys\nJosephine\nEmma\nVivian\nJohnnie\nLillie\nLucille\nMarilyn\nIda\nCarrie\nGeraldine\nJulia\nNellie\nAnna\nElla\nLaura\nMattie\nAlma\nBessie\nPauline\nBertha\nChristine\nGrace\nMargie\nMarian\nVera\nDelores\nJessie\nDolores\nFlorence\nMinnie\nInez\nKatherine\nMyrtle\nRose\nIrene\nJane\nAudrey\nJeanette\nBeatrice\nEleanor\nEunice\nElsie\nErnestine\nJoanne\nMarion\nDaisy\nEloise\nJacqueline\nPhyllis\nEva\nMae\nSara\nWanda\nGwendolyn\nHattie\nHilda\nBeverly\nKathleen\nMaggie\nMamie\nPatsy\nSylvia\nAgnes\nAlberta\nBobbie\nBonnie\nCharlotte\nEssie\nEsther\nGeneva\nJo\nViolet\nWilma\nAnne\nBillie\nLula\nMable\nCarol\nJoann\nPearl\nTheresa\nFlora\nGeorgia\nKatie\nJanice\nKathryn\nLucy\nMaxine\nViola\nDora\nEllen\nImogene\nJoy\nLeola\nNaomi\nIrma\nJanie\nRebecca\nAnita\nCora\nJanet\nNettie\nSallie\nSally\nVelma\nAda\nDonna\nEmily\nEula\nFaye\nJeanne\nLoretta\nMarguerite\nOlga\nPearlie\nRoberta\nBettie\nBettye\nIris\nJimmie\nLeona\nSusie\nYvonne\nAddie\nConstance\nDoretha\nEarnestine\nFannie\nLola\nOllie\nOpal\nVernell\nCarmen\nElouise\nJacquelyn\nLena\nLucile\nMarlene\nOla\nRita\nRuthie\nSue\nBeulah\nConnie\nEstelle\nFay\nFrankie\nGertrude\nJackie\nJeannette\nJewel\nLessie\nLizzie\nMabel\nMelba\nMiriam\nNina\nBlanche\nCorine\nDeloris\nElaine\nJennie\nLetha\nLottie\nQueen\nRachel\nRosemary\nRutha\nStella\nCaroline\nCecelia\nCharlie\nCleo\nEffie\nErma\nFlossie\nLorraine\nMercedes\nMollie\nMuriel\nReba\nRosetta\nSadie\nBette\nClarice\nClaudia\nDolly\nGracie\nJewell\nLeila\nLila\nLydia\nMyra\nRosie\nSusan\nVerna\nAmelia\nAnnette\nElma\nEstella\nGussie\nHarriet\nIdella\nLelia\nLorene\nMyrtice\nOdessa\nOra\nWilhelmina\nZelma\nAllie\nElnora\nFreddie\nHenrietta\nInell\nIsabella\nJaunita\nJerry\nJudy\nLouvenia\nMavis\nNell\nNora\nOlivia\nPatty\nPaula\nAdell\nAlbertha\nDelia\nDella\nEddie\nIna\nJoe\nLenora\nLettie\nMyrtis\nPansy\nRamona\nRetha\nRosalie\nRoxie\nSyble\nVictoria\nAlene\nAline\nBertie\nCallie\nClaire\nDorthy\nElease\nElinor\nGlenda\nJoycelyn\nLee\nLuella\nMaria\nNadine\nNelda\nNella\nOphelia\nPat\nRena\nWilla\nWinifred\nWinona\nAlthea\nAmanda\nArlene\nBennie\nCarole\nCelia\nCharlene\nColleen\nConchita\nDalia\nDorcas\nEartha\nFlorida\nFrancena\nFrancis\nGenevieve\nHarriett\nIsabel\nJames\nJannie\nJosie\nKay\nLaverne\nLoretha\nLorine\nLovie\nMarcia\nMatilda\nMazie\nMittie\nMona\nNita\nOuida\nOvida\nPolly\nPriscilla\nRobbie\nSharon\nTeresa\nTillie\nVerlie\nVoncile\nMary\nBetty\nDorothy\nBarbara\nMargaret\nHelen\nPatricia\nMartha\nAnnie\nElizabeth\nDoris\nJoyce\nFrances\nVirginia\nEvelyn\nRuth\nGloria\nMildred\nShirley\nAlice\nRuby\nLouise\nJuanita\nWillie\nNancy\nJoan\nSarah\nCarolyn\nEdna\nCatherine\nThelma\nRosa\nLois\nGladys\nLillie\nHazel\nNorma\nJean\nPeggy\nVera\nEdith\nEthel\nMarjorie\nBernice\nEmma\nMarie\nLillian\nAnn\nAnna\nDolores\nPauline\nVivian\nMinnie\nIda\nJulia\nRose\nBertha\nFlorence\nGeraldine\nBessie\nClara\nDelores\nLaura\nLucille\nCarrie\nIrene\nAlma\nEunice\nJohnnie\nMattie\nSara\nDaisy\nEleanor\nEva\nAnne\nConstance\nJeanette\nMyrtle\nChristine\nElla\nJune\nNellie\nPatsy\nBeatrice\nBonnie\nJosephine\nBeverly\nCarol\nCharlotte\nGrace\nJessie\nAgnes\nInez\nMae\nMarilyn\nWilma\nEllen\nElsie\nJoanne\nKathryn\nMaxine\nCora\nGeneva\nKatherine\nBobbie\nEssie\nGwendolyn\nJane\nJo\nMargie\nMarian\nErnestine\nJoann\nLula\nJacqueline\nDora\nVelma\nAudrey\nFannie\nSylvia\nIris\nMarion\nEloise\nElouise\nEsther\nFaye\nJanet\nPhyllis\nHilda\nIrma\nKathleen\nMaggie\nNaomi\nOllie\nTheresa\nHattie\nLucy\nSally\nAlberta\nAnita\nKatie\nRachel\nRebecca\nViolet\nWanda\nBillie\nErma\nFrankie\nGertrude\nJoy\nSusie\nYvonne\nEmily\nLeola\nMamie\nRoberta\nAda\nBettye\nBeulah\nBlanche\nEarnestine\nFlora\nGeorgia\nLena\nNettie\nPearl\nRuthie\nDonna\nJacquelyn\nLoretta\nMable\nOla\nViola\nElaine\nJanie\nLottie\nMelba\nElnora\nJewel\nJewell\nLola\nLucile\nMavis\nMyrtice\nNora\nOpal\nPearlie\nBettie\nCorine\nDoretha\nEtta\nIna\nJackie\nJeanne\nJennie\nLeila\nLeona\nLizzie\nQueen\nRosetta\nSallie\nHarriet\nJimmie\nMarlene\nMiriam\nMyra\nNina\nReba\nSadie\nSue\nWilhelmina\nAnnette\nCharlene\nEffie\nGracie\nJanice\nKay\nLorene\nRutha\nTommie\nAddie\nBette\nCarmen\nClarice\nDiane\nEddie\nImogene\nLaverne\nLydia\nMarguerite\nMuriel\nNadine\nOra\nRosemary\nVernell\nConnie\nCynthia\nEugenia\nHenrietta\nJeannette\nLee\nLorraine\nNell\nSusan\nSybil\nAlbertha\nDorthy\nEarlene\nEstelle\nEula\nIva\nJerry\nJosie\nLinda\nOlga\nStella\nAmanda\nBertie\nCaroline\nCelia\nCharlie\nClaudia\nDella\nEarline\nEdwina\nElma\nFlossie\nFrancis\nFreddie\nGussie\nLenora\nLouvenia\nMabel\nPolly\nRamona\nAllie\nAlthea\nCarole\nDalia\nDeloris\nDollie\nEstella\nFay\nGenevieve\nGreta\nHellen\nHortense\nJames\nJudith\nJudy\nLila\nLily\nLou\nMarcia\nMaria\nMaud\nMona\nOlivia\nPat\nRena\nRita\nSheila\nSuzanne\nVerdell\nWinnie\nAlta\nAltamese\nAlva\nAngie\nArlene\nBennie\nCleo\nEdythe\nElease\nFlorine\nHarriett\nIola\nJanette\nLela\nLetha\nLinnie\nLuella\nMadeline\nMargarita\nMercedes\nOuida\nPearline\nVerna\nVictoria\nWilla\nWinifred\nWinona\nBobby\nCecelia\nCelestine\nColleen\nCornelia\nDiana\nDolly\nDorothea\nEaster\nEileen\nElinor\nEmmie\nFaith\nGail\nGeorgie\nGwen\nHallie\nIdella\nIla\nIra\nJannie\nJeannie\nLessie\nLettie\nLilly\nLora\nLuvenia\nMarietta\nMaude\nMyrna\nNelda\nNita\nOlive\nOphelia\nPatty\nReatha\nRetha\nRobert\nRosalie\nRosie\nSyble\nWilliam\nMary\nBetty\nDorothy\nBarbara\nMargaret\nPatricia\nHelen\nAnnie\nJoyce\nShirley\nMartha\nDoris\nElizabeth\nFrances\nRuth\nAlice\nMildred\nCarolyn\nGloria\nNancy\nEvelyn\nVirginia\nJean\nJoan\nLouise\nJuanita\nEdna\nNorma\nSarah\nPeggy\nRuby\nLois\nWillie\nHazel\nClara\nBernice\nGladys\nThelma\nAnn\nLillian\nLillie\nRosa\nMarjorie\nCatherine\nGeraldine\nEthel\nSylvia\nVivian\nIda\nEmma\nEleanor\nVera\nJosephine\nFlorence\nMarie\nNellie\nEdith\nKatherine\nAnna\nChristine\nJune\nBeverly\nMarilyn\nCarol\nJohnnie\nBobbie\nGeneva\nJulia\nMattie\nDolores\nEunice\nJane\nJo\nLucille\nJoanne\nBertha\nBessie\nDelores\nIrene\nMargie\nMae\nMinnie\nElla\nLaura\nPauline\nBettye\nCarrie\nLula\nPatsy\nSara\nAlma\nJessie\nJanet\nMarian\nPhyllis\nRose\nCharlotte\nEsther\nHattie\nInez\nMarlene\nMyrtle\nNaomi\nKathryn\nMamie\nAudrey\nElsie\nErnestine\nGrace\nKatie\nAnne\nCora\nFaye\nBeatrice\nElouise\nEva\nFannie\nMarion\nMaxine\nWilma\nDaisy\nMable\nYvonne\nAgnes\nConstance\nJeanette\nJoann\nBillie\nJanie\nJewel\nEloise\nGwendolyn\nJacqueline\nLucy\nAlberta\nBonnie\nEmily\nFrankie\nMiriam\nPearl\nHilda\nIris\nJacquelyn\nJanice\nKathleen\nRebecca\nSally\nAnita\nConnie\nJimmie\nVerna\nWanda\nAda\nElaine\nGertrude\nImogene\nLorene\nMaggie\nMarguerite\nQueen\nSue\nDora\nEllen\nErma\nEssie\nGeorgia\nJoy\nLeola\nSusie\nAnnette\nRachel\nRoberta\nViolet\nDeloris\nElnora\nEula\nFlora\nIrma\nJewell\nLessie\nLoretta\nMyrtice\nNettie\nOla\nPearlie\nSadie\nTheresa\nBettie\nBlanche\nDonna\nGracie\nJeannette\nLeona\nLottie\nMyra\nNora\nOllie\nOpal\nPat\nSandra\nVelma\nViola\nAddie\nAllie\nCorine\nCynthia\nDiane\nEdwina\nEstelle\nFreddie\nGussie\nMelba\nNina\nOlga\nOlive\nRosetta\nHarriet\nHenrietta\nJeanne\nJudith\nLee\nLenora\nLorraine\nRosemary\nRuthie\nBette\nBeulah\nClaudia\nDiana\nEarnestine\nEddie\nEugenia\nGenevieve\nJennie\nLola\nLucile\nNadine\nSallie\nSusan\nSybil\nWinifred\nCallie\nCarmen\nCarole\nCharlene\nFay\nJackie\nJanette\nLinda\nMillie\nNell\nOuida\nPolly\nReba\nStella\nTommie\nAlene\nCaroline\nCharlie\nEarline\nElva\nIva\nJerry\nJoe\nLena\nLila\nMadeline\nMercedes\nOra\nRosie\nRutha\nSheila\nWilliam\nAldonia\nAmelia\nBertie\nClaretha\nClarice\nCleo\nCornelia\nDolly\nDoretha\nEartha\nEstella\nEtta\nFaith\nFlorida\nGlenda\nIdella\nJoanna\nLizzie\nMarcia\nMavis\nOlivia\nPatty\nRubye\nVictoria\nWilla\nWinnie\nAlva\nArlene\nCecil\nDella\nDelma\nDollie\nElease\nElizebeth\nElvira\nHarriett\nIona\nJudy\nKay\nLaverne\nLoretha\nLorine\nLouvenia\nMabel\nMarcella\nMaria\nMuriel\nNira\nPansy\nPriscilla\nRamona\nRita\nVirgie\nVoncile\nWilda\nAlfreda\nAlta\nAltamese\nAngela\nBobby\nCecelia\nCelestine\nClaire\nDaphne\nDarlene\nDorthy\nEarlene\nEaster\nFrancis\nGail\nGreta\nGwen\nIna\nJanis\nJosie\nJulie\nKatharine\nKatrina\nLeah\nLeila\nLela\nLoraine\nLydia\nMolly\nMona\nMozell\nMyrtis\nNelda\nOdessa\nPearline\nPhoebe\nRena\nRosalie\nSuzanne\nTeresa\nVernell\nYolanda\nMary\nBetty\nBarbara\nDorothy\nShirley\nPatricia\nHelen\nMargaret\nMartha\nFrances\nAnnie\nJoyce\nEvelyn\nDoris\nCarolyn\nVirginia\nElizabeth\nJoan\nNancy\nMildred\nJuanita\nGloria\nAlice\nJean\nLouise\nRuby\nCatherine\nRuth\nNorma\nEdna\nThelma\nWillie\nLois\nPeggy\nBernice\nGeraldine\nSylvia\nAnn\nGladys\nCarol\nClara\nLillian\nMarjorie\nSarah\nIda\nRosa\nMarie\nEdith\nRose\nEmma\nHazel\nJune\nBertha\nEthel\nMinnie\nLillie\nAnna\nVera\nChristine\nDolores\nFlorence\nJoann\nAlma\nBessie\nAudrey\nBeatrice\nBeverly\nCharlotte\nJosephine\nLaura\nMae\nIrene\nJeanette\nJo\nJoanne\nMamie\nMarion\nDelores\nEva\nJessie\nLucille\nMargie\nSara\nWanda\nErnestine\nGwendolyn\nElla\nKatherine\nMarilyn\nSally\nJulia\nMattie\nAgnes\nEloise\nJohnnie\nEsther\nFaye\nGrace\nMyrtle\nJanet\nKathryn\nEleanor\nPhyllis\nCora\nHattie\nJane\nKathleen\nDaisy\nMaggie\nPauline\nSandra\nWilma\nBobbie\nMarian\nNellie\nYvonne\nDonna\nElsie\nFlora\nFrankie\nGeneva\nInez\nMaxine\nPatsy\nAlberta\nCarrie\nJanie\nLula\nDeloris\nEllen\nHilda\nViola\nBettye\nGeorgia\nIris\nAnne\nErma\nEunice\nLucy\nNaomi\nVivian\nEmily\nLoretta\nMiriam\nBonnie\nCarole\nOllie\nPearl\nBettie\nConstance\nDora\nElouise\nJacqueline\nJacquelyn\nJanice\nBillie\nConnie\nJackie\nNell\nNora\nSusie\nViolet\nAda\nBeulah\nCynthia\nEssie\nEula\nJudith\nLola\nOpal\nPat\nVelma\nFannie\nLena\nMable\nRachel\nRoberta\nSadie\nTheresa\nEstelle\nHarriet\nKatie\nLeola\nRita\nRosemary\nRutha\nSue\nImogene\nJeanne\nLeona\nLinda\nLizzie\nLottie\nMyrtice\nNina\nRuthie\nVerna\nAltamese\nGail\nJewell\nLila\nPearlie\nRebecca\nSusan\nElinor\nGertrude\nOra\nPaula\nRosetta\nAnita\nEarnestine\nGlenda\nIrma\nJennie\nJoy\nKay\nLorraine\nLucile\nMarlene\nMelba\nMyra\nNettie\nSuzanne\nAnnette\nClaudette\nClaudia\nDoretha\nEddie\nEileen\nFreddie\nJeannette\nRobbie\nAddie\nBette\nCarmen\nCharlene\nClarice\nDiane\nElnora\nIdella\nJewel\nJoanna\nLela\nLorene\nLou\nMabel\nMarguerite\nMillie\nPriscilla\nSallie\nVictoria\nCaroline\nCharlie\nCornelia\nEarlene\nEstella\nJimmie\nLaverne\nLydia\nMarcia\nMavis\nRosie\nVernell\nCleo\nColleen\nDollie\nFay\nFlorine\nGwen\nHenrietta\nIla\nMaria\nMyrna\nOdessa\nOla\nQueen\nRamona\nReatha\nRetha\nRubye\nAllene\nAllie\nArlene\nBennie\nClaretha\nDella\nDiana\nDolly\nDorthy\nEffie\nGoldie\nGracie\nIna\nJaunita\nJudy\nLessie\nLora\nMona\nMuriel\nNelda\nOlivia\nOuida\nPatty\nRhoda\nRosella\nSharon\nSheila\nStella\nToni\nVilma\nWinifred\nAlthea\nAmanda\nBertie\nBlanche\nCallie\nCorrine\nDalia\nDelois\nDixie\nEartha\nElaine\nElvira\nFlossie\nFrancis\nGenevieve\nGussie\nHannah\nHortense\nIsabel\nIva\nJames\nJoe\nJosie\nJulie\nLeah\nLee\nMadeline\nMatilda\nMaude\nMercedes\nMerle\nMittie\nMolly\nNadine\nNan\nOphelia\nPearly\nPeggie\nRegina\nRobert\nRosalee\nRosalie\nSybil\nTheola\nTommie\nVerdell\nVida\nVoncile\nWilla\nZelda\nMary\nBetty\nShirley\nBarbara\nDorothy\nPatricia\nMargaret\nFrances\nMartha\nHelen\nAnnie\nJoyce\nDoris\nElizabeth\nEvelyn\nGloria\nVirginia\nNancy\nCarolyn\nJoan\nMildred\nRuth\nAlice\nJuanita\nRuby\nLouise\nWillie\nSarah\nNorma\nAnn\nCarol\nCatherine\nEdna\nBernice\nMarie\nSylvia\nHazel\nLois\nThelma\nLillie\nJean\nGladys\nPeggy\nMarilyn\nRosa\nEthel\nJune\nGeraldine\nDelores\nLillian\nSandra\nClara\nJoann\nIrene\nAnna\nJo\nLucille\nMarjorie\nYvonne\nChristine\nElla\nEmma\nMinnie\nPauline\nVera\nBessie\nCharlotte\nIda\nJulia\nLaura\nBeverly\nInez\nJohnnie\nMarion\nBeatrice\nBertha\nJosephine\nRose\nSally\nEleanor\nGrace\nGwendolyn\nDolores\nJeanette\nMargie\nSara\nJanet\nVivian\nBobbie\nBonnie\nEdith\nJane\nKatherine\nMae\nNaomi\nAnnette\nDonna\nMarian\nMarlene\nPatsy\nPhyllis\nCarrie\nEssie\nJessie\nMyrtle\nWanda\nAlma\nGeneva\nJoanne\nLula\nNellie\nAudrey\nEva\nMattie\nAnne\nCora\nErnestine\nJacqueline\nWilma\nAgnes\nDaisy\nJanice\nLoretta\nFlorence\nKathleen\nRoberta\nAlberta\nRebecca\nEarnestine\nElsie\nEunice\nGertrude\nHattie\nKathryn\nMable\nMamie\nBettye\nDeloris\nErma\nGeorgia\nJanie\nSusie\nVelma\nBillie\nConstance\nEllen\nEsther\nLucy\nMaxine\nMelba\nRachel\nCarole\nElouise\nEmily\nJacquelyn\nMaggie\nAda\nEloise\nFannie\nJeannette\nJudith\nPearl\nSusan\nViola\nDora\nFaye\nJoy\nLola\nJennie\nNina\nPat\nSue\nConnie\nFlora\nIris\nIrma\nLinda\nNell\nPearlie\nRosemary\nViolet\nAnita\nMyrna\nOllie\nClaudia\nEula\nGail\nHilda\nImogene\nJackie\nJudy\nLorraine\nBettie\nEarline\nElnora\nFrankie\nJewel\nKay\nLena\nLeola\nOpal\nBeulah\nLeona\nLou\nLucile\nMiriam\nOra\nQueen\nRuthie\nSadie\nSuzanne\nTheresa\nArlene\nGwen\nHarriet\nJeanne\nNettie\nOdessa\nStella\nVictoria\nAllie\nAmelia\nCarmen\nCelia\nCharlene\nClaudette\nCleo\nEddie\nEstella\nFrancis\nHenrietta\nJimmie\nLeila\nLottie\nMabel\nMerle\nNadine\nPriscilla\nRosetta\nSallie\nSharon\nSybil\nCharlie\nCorine\nCynthia\nDiane\nDollie\nDorthy\nElaine\nLee\nMarcia\nNora\nOuida\nRetha\nVerdell\nBlanche\nDella\nEffie\nFreida\nGeorgie\nGracie\nGussie\nIna\nJewell\nJoanna\nKatie\nLaverne\nLela\nLessie\nLorene\nMarguerite\nMavis\nMillie\nMyra\nOla\nOlivia\nPaula\nRena\nRutha\nSheila\nTommie\nAlene\nBetsy\nClarice\nEstelle\nEtta\nFlorine\nFlossie\nFreddie\nGenevieve\nGlenda\nGoldie\nLouvenia\nLydia\nMaria\nMarva\nMercedes\nMona\nRamona\nRita\nTeresa\nVerna\nAddie\nAltamese\nAngie\nBette\nCarlene\nClaire\nClaretha\nCorene\nCornelia\nDarlene\nDelia\nDelois\nDiana\nEileen\nGay\nIla\nJerry\nLila\nLily\nLizzie\nLuella\nMarianne\nMay\nMelvina\nMollie\nMyrtice\nNita\nRosie\nSherry\nWilla\nWinnie\nAdrienne\nAlmeta\nAvis\nBennie\nBlondell\nCarla\nCaroline\nCelestine\nClyde\nDonnie\nDoretha\nEarlene\nEartha\nFlorida\nFreda\nGayle\nGinger\nHarriette\nHester\nIdella\nIsabel\nJanette\nJanis\nJoe\nLorena\nLue\nMadeline\nMaye\nMolly\nMonica\nMuriel\nOlga\nReba\nRobbie\nSonia\nTillie\nVernell\nVernice\nWinifred\nMary\nBetty\nBarbara\nShirley\nDorothy\nPatricia\nMargaret\nMartha\nJoyce\nCarolyn\nAnnie\nFrances\nHelen\nJoan\nElizabeth\nNancy\nDoris\nGloria\nVirginia\nMildred\nEvelyn\nAlice\nRuth\nSylvia\nJean\nRuby\nLouise\nPeggy\nJuanita\nThelma\nWillie\nGeraldine\nCatherine\nAnn\nSarah\nLois\nNorma\nBernice\nMarie\nEdna\nLillie\nCarol\nHazel\nJanice\nRose\nJo\nMarilyn\nBeverly\nGladys\nLillian\nClara\nJohnnie\nEmma\nEthel\nRosa\nSandra\nYvonne\nJune\nMarjorie\nEdith\nMinnie\nEleanor\nDelores\nCarrie\nGwendolyn\nJane\nJeanette\nVivian\nBessie\nJoann\nLaura\nLula\nSara\nAlma\nIda\nBertha\nElla\nMargie\nPhyllis\nCora\nJanet\nPatsy\nSally\nAnnette\nBeatrice\nBobbie\nGail\nJosephine\nMattie\nJacqueline\nMarion\nVera\nAudrey\nGrace\nJulia\nMarian\nAnne\nBonnie\nDeloris\nLucille\nPauline\nCharlotte\nChristine\nDonna\nJoanne\nKatherine\nNellie\nGeneva\nRoberta\nBettye\nDolores\nEllen\nEva\nJudith\nKathryn\nMamie\nFaye\nFlorence\nLinda\nWilma\nDaisy\nElsie\nEssie\nIrene\nAnna\nKathleen\nNaomi\nErnestine\nGlenda\nKay\nLoretta\nMarlene\nMelba\nAda\nAnita\nEarnestine\nElouise\nIris\nJeannette\nMyrtle\nSue\nWanda\nAgnes\nConnie\nAlberta\nEloise\nGeorgia\nInez\nMable\nRebecca\nConstance\nEsther\nHattie\nJacquelyn\nJudy\nSusan\nElaine\nEunice\nJanie\nJoy\nKatie\nLorene\nMae\nMyra\nRuthie\nBlanche\nLola\nLucy\nMaxine\nSusie\nViola\nCarole\nClaudia\nFrankie\nJessie\nMaggie\nMyrna\nNina\nOra\nBillie\nCharlene\nDora\nEula\nGracie\nLeola\nPaula\nRosetta\nSharon\nSuzanne\nTommie\nVelma\nGertrude\nHarriet\nJennie\nJewel\nLena\nNell\nNettie\nOla\nOllie\nViolet\nDiane\nHilda\nIrma\nMarguerite\nPat\nRachel\nEtta\nLeona\nMabel\nPearl\nSadie\nSybil\nVerna\nWinifred\nAmy\nBette\nBettie\nEmily\nFannie\nJackie\nMiriam\nPearlie\nPolly\nRita\nRutha\nSallie\nAlbertha\nBeulah\nCarmen\nCynthia\nDoretha\nEartha\nErma\nLydia\nMadeline\nPatty\nReba\nTheresa\nCallie\nClaudette\nDelois\nDiana\nEstella\nGussie\nGwen\nHarriett\nHenrietta\nIla\nJeanne\nJimmie\nLizzie\nLottie\nMyrtice\nOpal\nSyble\nAddie\nAltamese\nArlene\nCharlie\nEarline\nEddie\nFay\nFreddie\nGayle\nIna\nLessie\nLorraine\nMaria\nMaude\nMaureen\nNadine\nOlivia\nRosemary\nStella\nVoncile\nBobby\nFlora\nJanette\nJaunita\nJewell\nJosie\nLou\nMarcia\nMarva\nMerle\nMona\nQueen\nVerdell\nWilla\nAllie\nAltamease\nCassie\nDarlene\nElinor\nElva\nFaith\nFlossie\nJoe\nJohn\nLee\nLeila\nLela\nLenora\nLonnie\nLucile\nMagdalene\nMarsha\nNora\nRobbie\nRosie\nSonia\nAlpha\nAlta\nAlthea\nAngeline\nBeth\nCelestine\nChristene\nCornelia\nDorothea\nElease\nElnora\nEstelle\nFrancis\nFreda\nGenevieve\nGeorge\nHannah\nHarriette\nIva\nJannie\nJerry\nJoanna\nKaren\nLaverne\nLorine\nLouvenia\nMuriel\nOdessa\nRegina\nRosalind\nShelby\nTeresa\nVernell\nVictoria\nZelma\nAdele\nAline\nAretha\nBennie\nBetsy\nCarlene\nCaroline\nCecile\nCecilia\nCleo\nDale\nDalia\nDeborah\nDixie\nDolly\nDonnie\nEarlene\nEileen\nElise\nGeorgie\nJames\nJeannie\nJeraldine\nJonnie\nKitty\nLelia\nLila\nLynn\nMay\nMeredith\nMerlene\nMollie\nOphelia\nOuida\nRena\nWinnie\nMary\nBetty\nBarbara\nShirley\nDorothy\nPatricia\nMartha\nMargaret\nCarolyn\nFrances\nJoyce\nNancy\nAnnie\nHelen\nElizabeth\nJoan\nDoris\nGloria\nSylvia\nEvelyn\nVirginia\nJean\nJuanita\nSandra\nCarol\nAlice\nRuth\nPeggy\nWillie\nSarah\nRuby\nAnn\nThelma\nLillie\nEdna\nLois\nLouise\nJeanette\nEthel\nNorma\nRosa\nMildred\nYvonne\nBeverly\nEmma\nCatherine\nBertha\nDelores\nJo\nMinnie\nAnnette\nHazel\nMarilyn\nRose\nVivian\nMarjorie\nBernice\nGladys\nMarie\nGeraldine\nJanice\nJune\nJohnnie\nJulia\nFlorence\nJane\nLillian\nNellie\nPatsy\nCharlotte\nMattie\nIda\nLaura\nDaisy\nJosephine\nKatherine\nSara\nVera\nWanda\nBobbie\nGwendolyn\nJanet\nSue\nAnna\nBonnie\nEdith\nDolores\nJacqueline\nMae\nPhyllis\nBessie\nElla\nEva\nIrene\nJessie\nMargie\nBettye\nJoann\nChristine\nEleanor\nGrace\nJoanne\nKay\nAlma\nCarrie\nClara\nLoretta\nLucille\nAgnes\nAudrey\nBeatrice\nJudith\nLinda\nWilma\nLula\nSally\nDonna\nGeneva\nInez\nErnestine\nFaye\nKathryn\nMyrtle\nAnne\nGail\nAnita\nCora\nElsie\nEsther\nMarian\nMarion\nNaomi\nElaine\nEllen\nEmily\nEunice\nMarlene\nAda\nJudy\nPauline\nVelma\nConstance\nRachel\nCarole\nEloise\nIris\nFlora\nHattie\nRoberta\nSusan\nDora\nGlenda\nRebecca\nTheresa\nBillie\nFannie\nGertrude\nEarnestine\nGeorgia\nJacquelyn\nJeannette\nAlberta\nDeloris\nEssie\nJackie\nJoy\nKatie\nMaxine\nRita\nDoretha\nImogene\nLucy\nMarcia\nMelba\nPearlie\nSusie\nVerna\nConnie\nCynthia\nHilda\nJanie\nJewel\nKathleen\nLottie\nMyrna\nNettie\nOla\nViola\nClaudia\nDella\nErma\nIrma\nLena\nRosemary\nRosetta\nRuthie\nBlanche\nDiana\nMaggie\nMarva\nMavis\nMiriam\nSharon\nBettie\nDianne\nFay\nJimmie\nLeola\nMamie\nMona\nPat\nPearl\nAddie\nCharlene\nDiane\nEarlene\nEula\nLeila\nMable\nNadine\nNina\nArlene\nBeulah\nDorthy\nElouise\nFrankie\nGayle\nHarriett\nLenora\nLorine\nLorraine\nMyra\nOpal\nPriscilla\nQueen\nSallie\nSuzanne\nAmelia\nCarmen\nCharlie\nClarice\nFrancis\nLaverne\nLeona\nLorene\nLydia\nMabel\nOra\nCecelia\nDeanna\nEileen\nFlossie\nGenevieve\nHarriet\nJennie\nJewell\nJulie\nLola\nLou\nMarguerite\nOllie\nPaula\nRosalie\nRosie\nSadie\nSheila\nSonya\nViolet\nCecilia\nCorine\nDixie\nEstella\nFreda\nGussie\nIva\nJames\nJoanna\nLela\nLessie\nMarcella\nMarsha\nMyrtice\nRamona\nRhoda\nRobbie\nTommie\nValerie\nVictoria\nWinifred\nBobby\nClaudette\nDeanne\nDelois\nDorothea\nEffie\nFlorida\nFreida\nGracie\nHenrietta\nIdella\nJanette\nJeanne\nJeannine\nLee\nLila\nLizzie\nLucile\nLucinda\nMadeline\nMay\nMerle\nNora\nReba\nRutha\nAlene\nAltamese\nAlthea\nAlyce\nAngela\nAntoinette\nBecky\nBette\nCallie\nClaretha\nCleo\nDelia\nEddie\nElnora\nEtta\nFreddie\nJannie\nJosie\nLeah\nLelia\nLynn\nMaria\nMarianne\nMercedes\nMolly\nOdessa\nOuida\nPatti\nPatty\nPolly\nRegina\nRena\nSonja\nSyble\nTeresa\nVerdell\nVernell\nVoncile\nWilla\nWinnie\nAbbie\nAllie\nAmanda\nAmy\nBennie\nBertie\nCaroline\nCelia\nCornelia\nEartha\nFaith\nGay\nGinger\nJanis\nJaunita\nJerry\nJohnie\nKaren\nKathy\nLoretha\nNeva\nOlive\nOlivia\nRoxie\nRubye\nSherry\nSonia\nStella\nYolanda\nMary\nBarbara\nBetty\nShirley\nPatricia\nDorothy\nMartha\nCarolyn\nMargaret\nFrances\nAnnie\nHelen\nNancy\nJoyce\nElizabeth\nSandra\nEvelyn\nGloria\nVirginia\nCarol\nSylvia\nAlice\nDoris\nLouise\nJoan\nSarah\nMildred\nJuanita\nAnn\nRuth\nRuby\nPeggy\nBeverly\nNorma\nWillie\nEdna\nCatherine\nGeraldine\nRosa\nThelma\nJean\nDelores\nRose\nGladys\nHazel\nJanice\nJudith\nJulia\nAnnette\nLillian\nLillie\nLinda\nPatsy\nVivian\nMarjorie\nLaura\nEthel\nJane\nLois\nVera\nEmma\nJeanette\nMarie\nMarilyn\nMinnie\nDonna\nYvonne\nAlma\nGwendolyn\nSara\nCharlotte\nClara\nJo\nJoann\nBettye\nJudy\nMargie\nBertha\nPhyllis\nSusan\nBobbie\nEleanor\nElla\nIda\nJohnnie\nSally\nAnna\nBernice\nBonnie\nIrene\nChristine\nEdith\nJacqueline\nJune\nWanda\nCarrie\nAudrey\nJosephine\nLoretta\nMae\nNellie\nEva\nKatherine\nDolores\nGlenda\nJanet\nRoberta\nBeatrice\nLula\nAnne\nCora\nEsther\nKay\nBessie\nFaye\nFlorence\nGrace\nPauline\nJessie\nJoanne\nMattie\nMaxine\nSue\nViola\nEllen\nCarole\nElsie\nErnestine\nJacquelyn\nKathleen\nLucille\nLucy\nMyrna\nRebecca\nSharon\nAnita\nEmily\nInez\nMamie\nMarian\nAgnes\nBillie\nConstance\nGail\nTheresa\nAlberta\nEloise\nElouise\nEssie\nFannie\nFlora\nHattie\nJanie\nMarcia\nMyrtle\nWilma\nConnie\nJoy\nKathryn\nNaomi\nPearl\nDaisy\nDiane\nEarnestine\nErma\nGeneva\nJeannette\nCharlene\nDeloris\nDiana\nMarion\nMyra\nElaine\nHarriet\nNina\nRachel\nRosalie\nClaudette\nClaudia\nDeanna\nIrma\nJimmie\nMarlene\nOllie\nPriscilla\nSallie\nBettie\nEddie\nEunice\nFrankie\nHilda\nIris\nJackie\nRuthie\nViolet\nDora\nGeorgia\nMelba\nRosetta\nVelma\nVerna\nCynthia\nGertrude\nLottie\nMaggie\nMyrtice\nSadie\nSusie\nJeanne\nKatie\nLeola\nMabel\nPat\nPatty\nSonja\nSuzanne\nAda\nDoretha\nDorthy\nGracie\nImogene\nKaren\nMable\nNettie\nArlene\nBlanche\nCarmen\nFay\nGayle\nLaverne\nLeona\nLydia\nOra\nPearlie\nRita\nAddie\nBennie\nBeulah\nCorine\nDixie\nEarline\nJosie\nLola\nLorraine\nLucile\nLynda\nNora\nPaula\nQueen\nRosemary\nShelby\nCelia\nJewell\nLena\nMaria\nMuriel\nNadine\nNell\nOla\nReba\nSybil\nAmelia\nBobby\nCornelia\nDarlene\nEarlene\nEffie\nGwen\nHarriett\nJannie\nLizzie\nMadeline\nMarva\nMavis\nMiriam\nRamona\nTommie\nVernell\nVictoria\nCaroline\nCharlie\nEileen\nElnora\nEula\nGenevieve\nGretchen\nGussie\nHenrietta\nIna\nLila\nLorene\nSonia\nAlene\nAllie\nAlthea\nAmy\nAngela\nBertie\nCarla\nCecelia\nClaire\nDianne\nEaster\nEliza\nEstelle\nFlossie\nFreddie\nFreida\nJan\nJanette\nJennie\nJerry\nJulie\nLeah\nLenora\nLetha\nMarguerite\nMaureen\nOpal\nSheila\nVerdell\nWilla\nWinifred\nAvis\nBetsy\nBette\nBrenda\nCallie\nCelestine\nDella\nDottie\nElma\nEtta\nEugenia\nFlorine\nIdella\nIsabelle\nIva\nJanis\nJewel\nJoe\nLeila\nLessie\nMarianne\nMercedes\nMerle\nMillie\nMollie\nMona\nMyrtis\nOlivia\nPhoebe\nRhoda\nRoxie\nRutha\nSondra\nVoncile\nAlbertha\nAltamese\nAngie\nAretha\nCassie\nClaretha\nClyde\nDollie\nDorothea\nEartha\nEdwina\nEstella\nGearldine\nInell\nJaunita\nJeanie\nJoanna\nKaye\nLee\nLinnie\nLoraine\nLou\nLynn\nMarsha\nMaude\nNelda\nOlga\nOlive\nPatti\nPeggie\nRobbie\nRochelle\nRosie\nSherry\nSonya\nSusanne\nWinnie\nMary\nBarbara\nBetty\nPatricia\nShirley\nDorothy\nMartha\nMargaret\nNancy\nCarolyn\nJoyce\nFrances\nElizabeth\nHelen\nSandra\nAnnie\nLinda\nCarol\nVirginia\nGloria\nAlice\nDoris\nEvelyn\nSylvia\nRuth\nJudith\nRuby\nJoan\nSarah\nJudy\nMildred\nNorma\nCatherine\nWillie\nJanice\nMarilyn\nJean\nJuanita\nLillian\nGeraldine\nPeggy\nAnn\nJeanette\nJoann\nLouise\nEdna\nJacqueline\nThelma\nBeverly\nEmma\nJanet\nCharlotte\nMarie\nAnnette\nLois\nYvonne\nDonna\nRose\nVivian\nBertha\nDelores\nHazel\nWanda\nJo\nMae\nPhyllis\nIrene\nLaura\nSharon\nMarjorie\nMinnie\nEthel\nEleanor\nGlenda\nJulia\nElla\nJane\nLoretta\nBernice\nClara\nGladys\nGwendolyn\nLillie\nRosa\nGrace\nMargie\nSara\nJosephine\nPatsy\nBonnie\nJune\nAlma\nMaxine\nRebecca\nSally\nVera\nAnita\nEdith\nEva\nIda\nMattie\nWilma\nAnna\nChristine\nKatherine\nDaisy\nFlorence\nGail\nNaomi\nBettye\nCarole\nAudrey\nBessie\nIris\nEsther\nKay\nAnne\nCarrie\nEllen\nElsie\nJessie\nJohnnie\nBobbie\nKathryn\nMarcia\nBeatrice\nDeloris\nMamie\nMarian\nMarion\nMyrtle\nNellie\nCynthia\nDiana\nElaine\nRoberta\nVelma\nAlberta\nEunice\nFaye\nLucille\nPat\nSusan\nErnestine\nHattie\nJanie\nJoanne\nKatie\nLucy\nElouise\nFlora\nIrma\nJackie\nPauline\nClaudia\nConnie\nDiane\nEmily\nGertrude\nHilda\nKathleen\nTheresa\nAgnes\nHarriet\nLula\nMelba\nMyrna\nPriscilla\nSusie\nBillie\nConstance\nEula\nMaggie\nSue\nEssie\nFreddie\nMable\nSheila\nDora\nErma\nJeannette\nJoy\nKaren\nLenora\nLeola\nMyra\nOllie\nSuzanne\nViolet\nDolores\nFannie\nGayle\nGeneva\nJacquelyn\nMarlene\nNora\nBettie\nEloise\nGeorgia\nInez\nNina\nRita\nSonja\nCecelia\nCora\nJewel\nViola\nJimmie\nLeona\nLola\nMiriam\nEarnestine\nFay\nLorraine\nMarva\nRosetta\nRuthie\nSondra\nArlene\nCarmen\nCorine\nFrankie\nHenrietta\nJennie\nReba\nRosemary\nSadie\nStella\nWinifred\nAda\nBlanche\nBrenda\nCaroline\nCharlene\nCharlie\nClaudette\nDella\nEarlene\nJeanne\nJosie\nLaverne\nMavis\nMercedes\nNettie\nSherry\nTommie\nVerna\nAndrea\nCornelia\nDixie\nGwen\nLucile\nMabel\nMarianne\nMarsha\nOla\nOlivia\nPearl\nRachel\nRosalie\nBetsy\nEddie\nElnora\nFrancis\nImogene\nJerry\nJewell\nLena\nMona\nMyrtice\nOra\nPatty\nQueen\nRamona\nRobbie\nSelma\nTerry\nWilla\nWinnie\nBeulah\nCecilia\nDarlene\nDeanna\nDianne\nEartha\nEstella\nGracie\nJohn\nLorene\nLorine\nMyrtis\nPenelope\nVernell\nAddie\nAlbertha\nAlfreda\nAlyce\nBennie\nBertie\nBette\nClaretha\nCleo\nEtta\nEugenia\nGenevieve\nJulie\nLizzie\nLottie\nLuella\nMarguerite\nMerle\nOpal\nPaula\nRhoda\nRutha\nSaundra\nVerdell\nVictoria\nZelma\nAbbie\nAmy\nAntoinette\nCelia\nDeborah\nDoretha\nEarline\nEstelle\nGussie\nIna\nJaunita\nJoe\nLeah\nLeila\nLila\nLora\nLou\nLucretia\nMaria\nMillie\nMollie\nMonica\nNadine\nNelda\nNell\nPearlie\nPeggie\nRobert\nSallie\nSybil\nWilda\nWilhelmina\nAltamese\nAlthea\nBobby\nBonita\nCherry\nClarice\nDelia\nDorothea\nDorthy\nEdwina\nElinor\nEliza\nEvangeline\nFlossie\nFrancina\nFrancine\nGale\nGay\nGaye\nGeorge\nGinger\nHarriett\nIra\nIsabel\nJannie\nJeannie\nJill\nLee\nLeslie\nLessie\nLydia\nLynda\nLynn\nMarcella\nMargarett\nMaureen\nMazie\nMolly\nNita\nOdessa\nOlga\nPenny\nRegina\nRena\nRetha\nRosie\nSherron\nSyble\nTeresa\nVirgie\nVoncile\nWilliam\nYolanda\nMary\nBetty\nBarbara\nPatricia\nDorothy\nShirley\nLinda\nCarolyn\nJoyce\nMargaret\nSandra\nFrances\nNancy\nMartha\nGloria\nAnnie\nElizabeth\nHelen\nVirginia\nJudith\nCarol\nEvelyn\nAlice\nDoris\nJudy\nJoan\nSylvia\nSarah\nPeggy\nMarilyn\nRuby\nAnn\nJanice\nNorma\nCatherine\nJuanita\nMildred\nWillie\nEmma\nRuth\nLouise\nJean\nJeanette\nYvonne\nBeverly\nGeraldine\nThelma\nMarie\nRosa\nAnnette\nWanda\nEdna\nSally\nDelores\nBernice\nLillie\nBonnie\nLois\nVivian\nDonna\nCharlotte\nJoann\nPhyllis\nEdith\nRose\nJosephine\nJulia\nLillian\nSusan\nDiane\nEthel\nJo\nEleanor\nGlenda\nChristine\nHazel\nJane\nKatherine\nBrenda\nGladys\nJanet\nClara\nJune\nMarion\nMarjorie\nSharon\nCarrie\nJohnnie\nMaxine\nMarian\nBertha\nJacqueline\nPatsy\nSara\nBeatrice\nGail\nBobbie\nDeloris\nElla\nIrene\nPauline\nLaura\nAnita\nGwendolyn\nMargie\nAudrey\nKathleen\nRebecca\nAnna\nAlma\nBettye\nJessie\nLoretta\nNellie\nEva\nFlorence\nIda\nKay\nDolores\nFaye\nMae\nMinnie\nPriscilla\nRoberta\nWilma\nElaine\nHattie\nSue\nJacquelyn\nLucille\nBessie\nConstance\nDiana\nJanie\nVera\nKathryn\nMarcia\nMattie\nAgnes\nAnne\nClaudia\nCynthia\nEllen\nErnestine\nGrace\nMyrtle\nDaisy\nElsie\nMamie\nConnie\nHarriet\nJoanne\nMyrna\nCarole\nEsther\nInez\nLucy\nBettie\nNina\nVelma\nDora\nEarnestine\nGertrude\nNaomi\nRita\nBillie\nCora\nEunice\nGayle\nGeneva\nPearl\nEloise\nGeorgia\nJackie\nMarlene\nPearlie\nSuzanne\nTheresa\nGracie\nIris\nIrma\nLynda\nMyra\nRosemary\nFlora\nJoy\nKaren\nLeola\nPat\nVictoria\nJennie\nLula\nMaggie\nMiriam\nRuthie\nSallie\nAlberta\nGussie\nLorraine\nMable\nMarva\nArlene\nEmily\nFrankie\nJeannette\nNettie\nRachel\nSheila\nStella\nElouise\nFannie\nJimmie\nKatie\nPaula\nRosetta\nVerna\nBeulah\nClaudette\nDianne\nEstella\nHilda\nIna\nJewell\nLizzie\nLola\nMarsha\nReba\nViola\nBlanche\nDeanna\nDixie\nFay\nFrancis\nLaverne\nNora\nOllie\nRutha\nShelby\nSusie\nYolanda\nAda\nCarmen\nCharlene\nDarlene\nEddie\nEssie\nEula\nJeanne\nJoe\nNadine\nNell\nOlivia\nSherry\nBecky\nBennie\nCaroline\nCleo\nDolly\nEugenia\nFreddie\nHenrietta\nLucile\nMercedes\nOpal\nRosie\nSondra\nSonja\nAmanda\nCarla\nCharlie\nCorine\nEarline\nEstelle\nHarriett\nJan\nJeanie\nJewel\nJulie\nLenora\nMadeline\nMarianne\nOla\nSandy\nSybil\nValerie\nViolet\nAngela\nCelia\nClaire\nDella\nDorthy\nEartha\nEtta\nFaith\nIdella\nKaye\nLana\nLoretha\nMelba\nNelda\nPatty\nQueen\nRosalie\nSonia\nWinifred\nAddie\nAndrea\nAntoinette\nCecelia\nCelestine\nCornelia\nDale\nDawn\nDelia\nDelois\nDollie\nElvira\nErma\nGlenna\nGwen\nHarriette\nIra\nJannie\nLena\nLorna\nMabel\nMaureen\nOlga\nOra\nPeggie\nSadie\nSonya\nTeresa\nVernell\nAlbertha\nAline\nAllie\nAlyce\nAmelia\nAmy\nCherry\nClarice\nDoretha\nEarlene\nEileen\nElnora\nFlossie\nJanis\nJeannie\nJosie\nKathy\nLee\nLelia\nLessie\nLila\nLorine\nLottie\nLucretia\nLydia\nMarguerite\nMaria\nMavis\nMuriel\nMyrtice\nNan\nOdessa\nOuida\nPenny\nRamona\nRegina\nRena\nTerry\nTommie\nVerdell\nWilhelmina\nAdeline\nAltamese\nBertie\nCamilla\nCecilia\nColleen\nDottie\nEdwina\nEster\nIva\nJacquline\nJamie\nJanette\nJerry\nJohanna\nJohn\nLeona\nLorena\nLouvenia\nLynn\nMarcella\nMarilynn\nMelanie\nMelinda\nMerry\nMona\nOphelia\nPamela\nPatti\nPenelope\nRobbie\nSharron\nToni\nTrudy\nVeronica\nWendy\nWilhelmenia\nWinnie\nMary\nBarbara\nBetty\nPatricia\nLinda\nShirley\nDorothy\nCarolyn\nSandra\nJoyce\nMargaret\nGloria\nMartha\nNancy\nFrances\nJudith\nElizabeth\nHelen\nAnnie\nCarol\nVirginia\nJudy\nAlice\nSharon\nEvelyn\nJoan\nSarah\nSylvia\nDoris\nJanice\nRuth\nBeverly\nCatherine\nJuanita\nAnn\nBrenda\nPeggy\nCharlotte\nNorma\nMildred\nRuby\nGeraldine\nJean\nDonna\nDelores\nYvonne\nBonnie\nEmma\nLouise\nWanda\nMarilyn\nMarie\nJanet\nEthel\nJulia\nLois\nThelma\nJo\nSusan\nVivian\nEdna\nBernice\nRosa\nWillie\nGlenda\nGwendolyn\nPatsy\nRose\nJeanette\nJosephine\nLillie\nEdith\nAnnette\nElla\nHazel\nPhyllis\nJacqueline\nMarjorie\nLaura\nClara\nDeloris\nGladys\nAnna\nLillian\nEleanor\nAudrey\nGail\nMinnie\nBertha\nJoann\nBobbie\nEva\nKatherine\nMargie\nMattie\nJohnnie\nJune\nSally\nSara\nDiana\nFlorence\nKathryn\nRebecca\nCarole\nChristine\nIrene\nMae\nBettye\nIda\nJane\nLoretta\nDiane\nSue\nWilma\nJoanne\nKaren\nGrace\nMarion\nAlma\nConnie\nCynthia\nEllen\nLucille\nRoberta\nElaine\nMaxine\nVera\nErnestine\nGeneva\nBeatrice\nBessie\nCarrie\nKay\nAnita\nBillie\nEmily\nEsther\nFaye\nMyrtle\nDolores\nAgnes\nAnne\nPriscilla\nDaisy\nCora\nEunice\nLucy\nLynda\nNellie\nRachel\nTheresa\nHarriet\nJoy\nMarian\nClaudia\nEloise\nIris\nJacquelyn\nAlberta\nHattie\nMamie\nMarcia\nEarnestine\nElsie\nGeorgia\nInez\nJanie\nJeannette\nJessie\nKathleen\nPat\nRosemary\nSheila\nSuzanne\nCharlene\nConstance\nJulie\nLorraine\nOllie\nPaula\nPauline\nPearl\nSherry\nDianne\nMable\nMaggie\nNina\nPamela\nRita\nFlora\nGayle\nRuthie\nErma\nMarsha\nMelba\nOla\nAda\nArlene\nEssie\nLola\nLula\nMarlene\nMyra\nMyrna\nNaomi\nVelma\nDeanna\nDora\nElouise\nGertrude\nGracie\nJackie\nLeola\nMaria\nMarva\nRosetta\nSybil\nAddie\nCaroline\nDarlene\nEula\nJeanne\nKatie\nMarguerite\nMiriam\nSonja\nSusie\nWinifred\nBeth\nHilda\nJewel\nNettie\nVerna\nCecilia\nHenrietta\nJennie\nJimmie\nLizzie\nOlivia\nPenelope\nViolet\nBettie\nBeulah\nCelia\nEarlene\nFrankie\nFreddie\nLaverne\nLottie\nLydia\nMabel\nMadeline\nMavis\nNadine\nPearlie\nQueen\nTerry\nEarline\nIrma\nLana\nLena\nRutha\nVicki\nViola\nBette\nCarlene\nClaretha\nClaudette\nDixie\nEdwina\nGussie\nHarriett\nLee\nLela\nLorene\nMargo\nMona\nNora\nOpal\nPenny\nRena\nSallie\nSaundra\nShelby\nTeresa\nTommie\nAllie\nAndrea\nBecky\nBlanche\nCarmen\nEddie\nEileen\nEstella\nEstelle\nGinger\nIva\nLenora\nLila\nLou\nMollie\nNelda\nPeggie\nRobin\nRosie\nSadie\nSharron\nVictoria\nBetsy\nBurma\nCecelia\nCelestine\nCharlie\nClaire\nCorine\nCornelia\nDelois\nDenise\nEffie\nElinor\nFannie\nFlossie\nFreida\nGwen\nJan\nJewell\nJoe\nKathy\nLeila\nLorine\nNell\nOra\nPolly\nRamona\nRhoda\nStella\nVernell\nWinnie\nAlta\nAltamese\nAlthea\nAmanda\nCassie\nCherry\nClarice\nDawn\nDolly\nDona\nDonnie\nDorothea\nElisabeth\nEugenia\nIdella\nIna\nJeanie\nJeannie\nJosie\nLucretia\nMaryann\nMay\nMazie\nMelinda\nNona\nOlga\nReba\nRegina\nRosalind\nSheron\nSondra\nStephanie\nAlbertha\nAntoinette\nCallie\nChristina\nDale\nDeborah\nDoretha\nDottie\nEster\nEvie\nFrancis\nGale\nImogene\nJames\nJanette\nJeraldine\nJerry\nJuliette\nKate\nLeslie\nLinnie\nMarilee\nMolly\nMuriel\nMyrtice\nOdessa\nPatti\nPearline\nRochelle\nRosalie\nSelma\nSophia\nSusanne\nToni\nValerie\nVeronica\nVoncile\nWilla\nYolanda\nZelma\nMary\nBarbara\nBetty\nPatricia\nLinda\nSandra\nCarolyn\nShirley\nDorothy\nMargaret\nMartha\nNancy\nJoyce\nGloria\nElizabeth\nCarol\nJudith\nFrances\nSharon\nVirginia\nAnnie\nHelen\nJudy\nJoan\nAlice\nRuth\nEvelyn\nDoris\nSylvia\nDonna\nBeverly\nSusan\nSarah\nJanice\nMarie\nBrenda\nCatherine\nWillie\nCharlotte\nJuanita\nMildred\nPeggy\nAnn\nRuby\nNorma\nBonnie\nJanet\nGeraldine\nJean\nJulia\nMarilyn\nGlenda\nDelores\nEmma\nJo\nLillie\nDiane\nEdith\nJacqueline\nLouise\nJeanette\nRosa\nWanda\nJoann\nKatherine\nKaren\nLois\nCarole\nThelma\nClara\nRose\nYvonne\nEdna\nPhyllis\nBernice\nVivian\nEthel\nAnnette\nGwendolyn\nMinnie\nEllen\nHazel\nCynthia\nChristine\nLillian\nGladys\nJane\nAlma\nAnita\nAnna\nKathryn\nLaura\nMarion\nMarjorie\nPatsy\nKathleen\nLynda\nMae\nSara\nDiana\nLoretta\nBertha\nErnestine\nGail\nJohnnie\nDolores\nIda\nMattie\nRebecca\nBobbie\nMargie\nEva\nJessie\nFlorence\nAnne\nCarrie\nEleanor\nJosephine\nSally\nVera\nAudrey\nElaine\nIrene\nMaxine\nBettye\nGrace\nJune\nKay\nElla\nBillie\nConstance\nFaye\nJacquelyn\nJoanne\nJoy\nMarian\nClaudia\nPriscilla\nRita\nAlberta\nCharlene\nDaisy\nEmily\nGeneva\nNellie\nSuzanne\nTheresa\nBeatrice\nLucille\nRoberta\nSue\nDeloris\nHattie\nPearl\nDianne\nInez\nBessie\nHarriet\nMyra\nBettie\nElsie\nGertrude\nMamie\nPaula\nSheila\nEarnestine\nGeorgia\nLula\nPauline\nSherry\nWilma\nEunice\nVictoria\nCora\nPamela\nAgnes\nConnie\nIris\nMarcia\nCaroline\nElouise\nKatie\nLena\nLucy\nRachel\nVelma\nEsther\nFrankie\nMarsha\nNaomi\nOlivia\nPearlie\nHenrietta\nHilda\nJanie\nJeannette\nMyrtle\nRosetta\nArlene\nErma\nFannie\nGayle\nLorraine\nLynn\nMable\nPaulette\nViola\nJackie\nJewell\nLeona\nMadeline\nMaria\nMarlene\nMelba\nNettie\nRosemary\nSadie\nSallie\nSaundra\nVerna\nDeanna\nEstella\nLeola\nMaggie\nCarmen\nEileen\nFlora\nJeanne\nJimmie\nLydia\nSusie\nDora\nHarriett\nJulie\nLola\nMiriam\nVeronica\nBette\nDarlene\nEarlene\nEddie\nElnora\nEloise\nEssie\nGinger\nJanette\nLaverne\nLeslie\nMavis\nMay\nPatty\nRosalie\nSonja\nTeresa\nViolet\nAda\nAmelia\nAngela\nIrma\nLee\nLizzie\nLorine\nNina\nOllie\nQueen\nRamona\nRuthie\nSybil\nTommie\nToni\nDella\nDixie\nGracie\nGussie\nJerry\nJewel\nNora\nPolly\nReba\nRobbie\nAddie\nAndrea\nBonita\nCleo\nEarline\nEdwina\nEula\nFrancis\nJennie\nLana\nMaryann\nMelanie\nMyrna\nNadine\nOla\nPenelope\nPenny\nWinnie\nBennie\nClaire\nCornelia\nDollie\nFlorine\nIna\nLenora\nLottie\nLynne\nNell\nOra\nOuida\nRosalind\nSharron\nSyble\nVicki\nYolanda\nAmanda\nBecky\nBeth\nBeulah\nBlanche\nCecelia\nCecilia\nEffie\nEstelle\nFay\nFreda\nGenevieve\nIdella\nImogene\nJan\nJayne\nJill\nKathy\nLeila\nLucretia\nMarguerite\nOdessa\nPat\nSonia\nTerry\nAlbertha\nBelinda\nClaudette\nDee\nDelma\nDolly\nEugenia\nFreddie\nJames\nJanis\nJeraldine\nJohn\nKaye\nLettie\nLorene\nLucinda\nMabel\nMarva\nMaude\nMaureen\nMelinda\nMercedes\nPansy\nRegina\nRetha\nRobin\nRutha\nWinifred\nAlfreda\nAmy\nCallie\nCelestine\nCharlie\nCherry\nClaretha\nClarice\nDenise\nDoretha\nDorothea\nDottie\nEartha\nElease\nElma\nElois\nEtta\nEvangeline\nFlossie\nHarriette\nHortense\nJannie\nJeannie\nLela\nMarcella\nMarilou\nMuriel\nNelda\nOlive\nRosie\nStella\nValerie\nVerdell\nVernell\nWilla\nAllie\nAlpha\nAlthea\nAngeline\nApril\nAva\nBetsy\nCarla\nCarlene\nCathy\nCelia\nDeborah\nDonnie\nDorris\nDorthy\nElinor\nEyvonne\nFrancine\nFreida\nGay\nGeorge\nGeorgiana\nGwen\nJamie\nJenny\nJoanna\nJonnie\nLeah\nLessie\nLila\nLilly\nLily\nLoraine\nLucile\nLuvenia\nMarianne\nMarietta\nMazie\nMelva\nMillie\nMona\nMyrtice\nNan\nRobert\nSandy\nShelia\nSondra\nSonya\nTina\nVilma\nVonnie\nWilda\nMary\nBarbara\nLinda\nPatricia\nBetty\nSandra\nCarolyn\nShirley\nDorothy\nSharon\nMargaret\nJoyce\nCarol\nNancy\nMartha\nFrances\nJudith\nGloria\nElizabeth\nJudy\nHelen\nVirginia\nAnnie\nSusan\nEvelyn\nAlice\nDonna\nDoris\nJanice\nBeverly\nJoan\nAnn\nSarah\nBrenda\nDiane\nBonnie\nCharlotte\nSylvia\nPeggy\nJuanita\nRuth\nKaren\nMildred\nMarie\nJo\nJanet\nRuby\nGeraldine\nMarilyn\nCatherine\nJean\nLouise\nPhyllis\nPamela\nGwendolyn\nGlenda\nKathleen\nGail\nWillie\nRosa\nKatherine\nWanda\nEdna\nJoann\nChristine\nJacqueline\nLillie\nNorma\nRose\nVivian\nYvonne\nCarole\nDelores\nEmma\nHazel\nLois\nDiana\nJane\nJulia\nPatsy\nRebecca\nElaine\nBobbie\nMarjorie\nSally\nAnna\nMargie\nAnnette\nCynthia\nAnne\nEthel\nConnie\nJeanette\nPaula\nLynda\nAnita\nEdith\nJosephine\nLillian\nSara\nClara\nElla\nGladys\nMattie\nRoberta\nBernice\nSue\nConstance\nEllen\nErnestine\nLaura\nVera\nBettye\nLoretta\nMinnie\nBertha\nDeloris\nIrene\nGrace\nJacquelyn\nLucille\nSuzanne\nThelma\nEleanor\nKathryn\nPauline\nRita\nClaudia\nDianne\nJanie\nKay\nMarion\nMarsha\nMaxine\nAudrey\nCheryl\nGeorgia\nIda\nMarcia\nSherry\nJohnnie\nNellie\nWilma\nCarrie\nJoy\nMarian\nFaye\nJoanne\nRachel\nBessie\nFlorence\nJune\nPriscilla\nSheila\nVictoria\nMae\nEloise\nElouise\nGeneva\nJackie\nRosemary\nTheresa\nBillie\nDaisy\nHarriet\nJulie\nBeatrice\nElsie\nLorraine\nLucy\nMamie\nPaulette\nEva\nJessie\nJimmie\nTerry\nDarlene\nDolores\nEunice\nMyra\nPat\nAndrea\nErma\nEsther\nJennie\nSusie\nBettie\nEmily\nFrankie\nHilda\nJeanne\nRosetta\nCharlene\nEileen\nKathy\nLena\nVeronica\nAlberta\nAlma\nDeanna\nDora\nEarnestine\nFannie\nLola\nOllie\nEarline\nFlora\nGayle\nIris\nLeslie\nViola\nArlene\nCecelia\nGertrude\nHattie\nLeona\nLynn\nSaundra\nAgnes\nJeannette\nJerry\nMadeline\nMelba\nMiriam\nMyrtle\nPearlie\nSharron\nHenrietta\nInez\nJill\nNaomi\nNina\nRosalind\nRuthie\nCecilia\nClaudette\nCora\nDeborah\nEarlene\nEddie\nEssie\nJanette\nJannie\nJewel\nKatie\nMable\nMaggie\nMarlene\nMarva\nRobin\nTeresa\nBette\nCarla\nCarmen\nCorine\nDixie\nFreddie\nHarriett\nJan\nLana\nLenora\nLila\nMyrna\nOlivia\nPearl\nVelma\nVerna\nVernell\nAmanda\nBlanche\nLottie\nLynne\nMarguerite\nMaria\nPenny\nSondra\nTommie\nCaroline\nCathy\nDoretha\nEula\nGracie\nIrma\nJeannie\nJenny\nMelinda\nNettie\nOpal\nQueen\nRegina\nSadie\nSonia\nStella\nAda\nAddie\nAntoinette\nBennie\nDollie\nDottie\nFay\nFrancis\nGale\nJennifer\nLaverne\nLee\nLydia\nMarianne\nMaureen\nMavis\nMercedes\nMerle\nMichele\nMichelle\nNadine\nNelda\nOla\nRamona\nReba\nSallie\nSonja\nStephanie\nVicki\nViolet\nWilla\nAlbertha\nApril\nBeulah\nCelia\nClarice\nEstella\nGinger\nJanis\nLessie\nMaryann\nNell\nNora\nRobbie\nRosalie\nAngie\nBeth\nBetsy\nCamille\nCharlie\nClaire\nDiann\nDona\nEdwina\nEugenia\nFreda\nGwen\nJoanna\nLeila\nLeola\nLorene\nLula\nMabel\nMelva\nMyrtice\nNan\nOphelia\nSandy\nShelby\nSheryl\nSybil\nToni\nWinifred\nAltamese\nAmy\nAngela\nAngeline\nBecky\nChristina\nCornelia\nDella\nFreida\nGenevieve\nIna\nJewell\nJoe\nLucretia\nMay\nMuriel\nNita\nOra\nPatti\nRenee\nTanya\nTina\nVickie\nWinnie\nYolanda\nAlta\nAmelia\nBonita\nCandace\nCeleste\nDinah\nElinor\nElnora\nElsa\nElva\nEtta\nFaith\nImogene\nJames\nJeanie\nJeraldine\nJohn\nKatharine\nLonnie\nLoraine\nMelanie\nNedra\nOuida\nPortia\nRoxie\nTrudy\nValeria\nAllie\nAltamease\nArthur\nBertie\nCherry\nCindy\nClaretha\nClyde\nColleen\nDale\nDelois\nDenise\nDian\nDolly\nDonnie\nDorris\nEartha\nEdythe\nEffie\nEstelle\nFlorine\nGay\nGeorge\nGretchen\nGussie\nHannah\nHelene\nHope\nIla\nJamie\nJosie\nJudi\nKatrina\nLeah\nLelia\nLora\nLorena\nLorine\nLouella\nLucile\nLucinda\nMargret\nMariah\nMelissa\nMerry\nMichael\nMillie\nMyrtis\nNona\nOdessa\nPatty\nPenelope\nPhylis\nPolly\nRetha\nRosalyn\nSelma\nSherrie\nSophia\nSusanne\nValerie\nVerdell\nVoncile\nWendy\nMary\nBarbara\nLinda\nPatricia\nBetty\nSandra\nCarolyn\nCarol\nShirley\nNancy\nDorothy\nSharon\nJudith\nMargaret\nJoyce\nGloria\nElizabeth\nJudy\nSusan\nMartha\nDonna\nFrances\nHelen\nKaren\nAlice\nJanice\nVirginia\nAnnie\nBrenda\nJoan\nDiane\nJanet\nBeverly\nMarilyn\nSarah\nAnn\nCheryl\nEvelyn\nBonnie\nDoris\nKathleen\nCatherine\nJean\nCarole\nSylvia\nPamela\nRuby\nPeggy\nRuth\nCharlotte\nGeraldine\nJacqueline\nLois\nGlenda\nPhyllis\nRose\nLouise\nGwendolyn\nMildred\nCynthia\nJo\nJuanita\nMarie\nJane\nKatherine\nDelores\nKathryn\nWanda\nNorma\nLaura\nWillie\nEmma\nLillie\nLynda\nEdith\nEthel\nVivian\nJoann\nPatsy\nChristine\nEdna\nGail\nRosa\nRebecca\nDiana\nGladys\nJulia\nMarjorie\nConnie\nJeanette\nElaine\nYvonne\nAnne\nClaudia\nMarcia\nEllen\nAnnette\nDianne\nJohnnie\nMarion\nMarsha\nSheila\nSue\nGrace\nMinnie\nSara\nAnita\nBernice\nSuzanne\nFlorence\nElla\nEva\nIrene\nLoretta\nSally\nAnna\nBobbie\nConstance\nKay\nMargie\nTheresa\nClara\nHazel\nRita\nJosephine\nMaxine\nPriscilla\nJoanne\nVera\nBettye\nLillian\nSherry\nJacquelyn\nJanie\nPaula\nBertha\nMamie\nPauline\nEsther\nGeorgia\nRoberta\nEmily\nLorraine\nCharlene\nJessie\nJoy\nLynn\nMae\nThelma\nCora\nDaisy\nDeloris\nAndrea\nEileen\nEleanor\nFaye\nMattie\nNaomi\nDarlene\nEunice\nGeneva\nMarian\nBessie\nJeanne\nWilma\nAlma\nBillie\nDora\nRosemary\nAudrey\nDolores\nArlene\nHattie\nTerry\nVelma\nBeatrice\nHarriet\nVictoria\nGayle\nIris\nJune\nLula\nPaulette\nSusie\nErnestine\nIda\nTeresa\nVicki\nCarrie\nLucille\nRachel\nRosetta\nDeborah\nKathy\nNellie\nNina\nAgnes\nEarnestine\nJeannette\nMaggie\nMyrtle\nOla\nOlivia\nAlberta\nAngela\nErma\nFrankie\nLeslie\nMaria\nPat\nPenny\nCaroline\nElsie\nHilda\nJackie\nLana\nLeola\nAda\nEula\nFannie\nInez\nMarlene\nPearl\nPenelope\nJanis\nLee\nMarianne\nMaureen\nMelba\nMiriam\nMyra\nRegina\nSharron\nStephanie\nToni\nVeronica\nFlora\nIrma\nJulie\nCarmen\nCharlie\nEddie\nElouise\nGracie\nLola\nLucy\nNadine\nOllie\nRobin\nBecky\nCecelia\nDixie\nGwen\nHenrietta\nJewel\nJill\nJimmie\nLynne\nNora\nDianna\nEssie\nFreddie\nMarva\nSallie\nSheryl\nSybil\nBetsy\nDana\nDeanna\nEarlene\nEloise\nGertrude\nJan\nJannie\nJennifer\nKatie\nNettie\nSandy\nValerie\nViola\nAntoinette\nBeth\nBette\nBonita\nDella\nFrancine\nJennie\nLaverne\nLeona\nLottie\nLou\nLydia\nMable\nMargo\nMarguerite\nMelinda\nMyrna\nSaundra\nCathy\nCelia\nDale\nDoretha\nGale\nHarriett\nJohanna\nLena\nLila\nMichele\nStella\nViolet\nAlyce\nBennie\nBettie\nBlanche\nChristina\nClaudette\nEarline\nEffie\nEtta\nJeannie\nJerry\nLenora\nLetha\nMona\nMuriel\nOpal\nQueen\nRamona\nTommie\nVerna\nAlicia\nApril\nBeulah\nCarlene\nCassandra\nCecilia\nCherry\nClaretha\nCornelia\nDee\nEartha\nFaith\nFlossie\nGay\nGussie\nJanette\nJonnie\nJosie\nLeila\nLoraine\nMabel\nMolly\nMyrtice\nRena\nRosie\nRutha\nSadie\nSonja\nTrudy\nVickie\nWilhelmina\nCamille\nClaire\nDenise\nDonnie\nEstelle\nFrancis\nFrieda\nHelene\nJeanie\nLizzie\nLorene\nLucinda\nMavis\nMay\nMercedes\nMichelle\nNelda\nOra\nPatty\nPearlie\nPeggie\nPolly\nReatha\nRosalie\nWilhelmenia\nYolanda\nAlexis\nAlta\nAmanda\nAmy\nCecile\nCelestine\nDaphne\nDollie\nDorinda\nDorthy\nEdwina\nElinor\nElois\nFrancina\nHannah\nHellen\nIna\nJayne\nJewell\nJoanna\nJudie\nKatharine\nKatheryn\nLela\nLilly\nLisa\nMadeline\nMalinda\nMaryann\nMerle\nNona\nPatti\nRobbie\nRosalind\nRuthie\nSherrie\nTina\nVernell\nVilma\nVoncile\nWilla\nWinifred\nWinnie\nZelda\nAddie\nAlene\nAltamease\nAltamese\nAmelia\nAngie\nAva\nAvis\nCorrine\nCrystal\nDelois\nDolly\nEliza\nElnora\nEstella\nFay\nFlorine\nFreda\nGretchen\nHelena\nHope\nImogene\nIva\nJacklyn\nJohnny\nJudi\nKathie\nKatrina\nKitty\nLeah\nLelia\nLessie\nLettie\nLora\nLoretha\nLorine\nMarilynn\nMelody\nNell\nReba\nRenee\nRobert\nRosella\nRosemarie\nSheron\nSondra\nSonia\nTerri\nWilda\nWilliam\nMary\nLinda\nPatricia\nBarbara\nSandra\nBetty\nCarol\nShirley\nCarolyn\nSharon\nMargaret\nNancy\nGloria\nDorothy\nJoyce\nSusan\nJudith\nJudy\nMartha\nDonna\nFrances\nElizabeth\nVirginia\nKaren\nDiane\nJanice\nAnnie\nHelen\nAlice\nJanet\nBonnie\nBeverly\nBrenda\nCheryl\nEvelyn\nPeggy\nAnn\nRuth\nJoan\nKathleen\nDoris\nPamela\nMarilyn\nSarah\nCatherine\nJean\nSylvia\nWillie\nGlenda\nJuanita\nMildred\nDiana\nSuzanne\nMarie\nRuby\nGeraldine\nLaura\nPhyllis\nCharlotte\nGail\nJacqueline\nJulia\nLouise\nWanda\nGwendolyn\nJane\nVivian\nJo\nRose\nCynthia\nLillie\nRosa\nCarole\nRebecca\nKatherine\nYvonne\nNorma\nKathryn\nLynda\nPaula\nLillian\nEmma\nAnne\nConnie\nJeanette\nMarcia\nDelores\nEdna\nIrene\nSherry\nElaine\nEllen\nSheila\nJoann\nMarjorie\nChristine\nLois\nSue\nDianne\nPatsy\nAnnette\nKay\nAnita\nTheresa\nAnna\nRoberta\nThelma\nVictoria\nClara\nEdith\nJosephine\nMinnie\nClaudia\nMarsha\nVera\nDeloris\nSara\nJoanne\nLynn\nRita\nSally\nMae\nMargie\nBettye\nConstance\nAlma\nElla\nEthel\nGrace\nJanie\nJessie\nMaxine\nAudrey\nBessie\nLoretta\nGeorgia\nGladys\nRosemary\nJune\nMarian\nHazel\nJacquelyn\nBertha\nEmily\nEva\nIda\nJeanne\nLucy\nBernice\nBillie\nCharlene\nHarriet\nBobbie\nKathy\nMattie\nAndrea\nFlorence\nLula\nMarion\nNellie\nWilma\nDarlene\nDolores\nErnestine\nPauline\nVicki\nJackie\nJoy\nPaulette\nSusie\nEleanor\nJan\nMarlene\nArlene\nCora\nGeneva\nIris\nJohnnie\nPriscilla\nRachel\nSheryl\nDeborah\nEsther\nHattie\nRosetta\nEloise\nFaye\nLorraine\nMamie\nMyra\nNaomi\nAngela\nCarrie\nErma\nJewel\nLeslie\nTerry\nCarmen\nCaroline\nEileen\nJulie\nLucille\nMaureen\nVelma\nBeatrice\nDaisy\nFannie\nHenrietta\nJeannette\nLynne\nMaria\nMichele\nEarnestine\nElouise\nFrankie\nGayle\nRegina\nViola\nAgnes\nPat\nPearl\nToni\nAlberta\nJennie\nLaverne\nLena\nLeona\nSonja\nTeresa\nVeronica\nAda\nJennifer\nJill\nMyrtle\nOla\nPenny\nSaundra\nValerie\nCecilia\nDale\nHilda\nJeannie\nKatie\nMaggie\nMiriam\nNora\nSallie\nBettie\nCathy\nDawn\nEunice\nRobin\nSadie\nBeth\nCarla\nDelois\nDiann\nEssie\nEula\nLana\nLenora\nLeola\nLydia\nMarva\nMyrna\nNina\nOra\nSharron\nVickie\nDora\nElsie\nHarriett\nIrma\nJewell\nLola\nPatty\nStella\nCassandra\nDianna\nGracie\nInez\nMarianne\nOlivia\nRosie\nWilla\nBecky\nClaudette\nFlora\nFrancine\nGertrude\nLorene\nMarguerite\nOllie\nPearlie\nRhonda\nRobbie\nSherrie\nSusanne\nTina\nTrudy\nVerna\nAmy\nBette\nBeverley\nCallie\nCandace\nCornelia\nDana\nDeanna\nEarlene\nEtta\nJanis\nLaurie\nLee\nLoraine\nLottie\nMaryann\nMelinda\nOphelia\nQueen\nSandy\nStephanie\nAmelia\nBetsy\nCecelia\nCelestine\nCherie\nCherry\nDoretha\nEarline\nEddie\nEugenia\nFreddie\nGale\nGinger\nIva\nJerry\nJimmie\nLou\nMargo\nNadine\nOpal\nRuthie\nSharyn\nViolet\nAntoinette\nBlanche\nBonita\nChristina\nCindy\nDella\nDixie\nDottie\nEstella\nHarriette\nJamie\nJeanie\nJenny\nLessie\nLilla\nMable\nMadeline\nMay\nMelba\nMichelle\nMillie\nMollie\nMolly\nNettie\nRosalie\nRutha\nVicky\nAddie\nAmanda\nBeulah\nDenise\nDonnie\nDrucilla\nEdwina\nEffie\nFay\nGenevieve\nJessica\nKatharine\nKaye\nLeah\nLela\nLila\nLora\nLucinda\nLynette\nMelody\nNelda\nPatti\nPenelope\nPolly\nRochelle\nWendy\nWinifred\nAlicia\nAltamese\nAlthea\nAlyce\nCandy\nCathleen\nCelia\nCharla\nCheryle\nClaire\nColleen\nDaphne\nDian\nDona\nEdythe\nElma\nElnora\nFaith\nGay\nHelene\nIna\nJannie\nJaunita\nJayne\nJoanna\nJosie\nLeila\nLonnie\nMarcella\nMavis\nMelanie\nMuriel\nMyrtice\nNell\nOdessa\nPattie\nRena\nRosalind\nSondra\nSuzan\nSybil\nSydney\nVerdell\nVoncile\nWillene\nYolanda\nZelma\nAlene\nBobby\nCathrine\nClementine\nCorine\nDarla\nFreida\nFrieda\nGerry\nGlinda\nGretchen\nGwen\nHannah\nHope\nIdella\nImogene\nJacquline\nJames\nJonnie\nLani\nLavern\nLawanda\nLily\nLisa\nLizzie\nLouella\nMargarett\nMonica\nNan\nNanette\nNatalie\nNikki\nPatrica\nRamona\nRenee\nRhoda\nRonnie\nSherri\nSonya\nSuellen\nThomasina\nTommie\nWilliam\nWinnie\nMary\nLinda\nPatricia\nBarbara\nSandra\nBetty\nCarolyn\nCarol\nSharon\nShirley\nSusan\nNancy\nMargaret\nDorothy\nGloria\nJoyce\nMartha\nDonna\nJudith\nJudy\nElizabeth\nJanice\nBrenda\nFrances\nHelen\nAlice\nDiane\nVirginia\nCynthia\nPamela\nCheryl\nBeverly\nKaren\nAnnie\nCatherine\nKathleen\nJanet\nJoan\nMarilyn\nBonnie\nEvelyn\nSarah\nSylvia\nDoris\nAnn\nJane\nPeggy\nLaura\nWanda\nRuth\nCharlotte\nGeraldine\nJo\nJulia\nGwendolyn\nJean\nRose\nGlenda\nRebecca\nPhyllis\nGail\nKathryn\nChristine\nConnie\nMildred\nDiana\nVivian\nWillie\nMarie\nSheila\nJacqueline\nKatherine\nLouise\nNorma\nPaula\nSuzanne\nJuanita\nSherry\nDelores\nPatsy\nRuby\nYvonne\nJoann\nLois\nLynda\nSue\nSara\nDianne\nMarsha\nCarole\nRoberta\nSally\nEdith\nJacquelyn\nJeanette\nEdna\nMarcia\nElaine\nEllen\nRita\nClara\nEmma\nTheresa\nAnnette\nJune\nLillian\nConstance\nThelma\nAnita\nRosa\nClaudia\nDeloris\nLillie\nMargie\nMaxine\nPriscilla\nAnne\nElla\nJackie\nGladys\nHazel\nMarjorie\nVera\nJeanne\nJoanne\nFaye\nKathy\nMarion\nBernice\nEthel\nMinnie\nAudrey\nCarrie\nEmily\nLoretta\nJennifer\nMae\nBertha\nBettye\nCharlene\nDarlene\nJessie\nJohnnie\nLorraine\nPauline\nRosemary\nDolores\nErnestine\nIda\nMattie\nKay\nVicki\nVictoria\nBobbie\nEva\nGeorgia\nIrene\nTerry\nWilma\nAnna\nPaulette\nJanie\nLynn\nEleanor\nJulie\nBessie\nDeborah\nHattie\nMarian\nAlma\nGrace\nLucille\nBeatrice\nDaisy\nHarriet\nJeannette\nMamie\nNellie\nEarnestine\nPat\nSheryl\nBillie\nEsther\nGayle\nJanis\nJosephine\nLeslie\nEileen\nEunice\nAgnes\nCandace\nCathy\nFlorence\nGeneva\nLana\nVeronica\nCecilia\nCora\nIris\nRuthie\nTeresa\nToni\nMaria\nMelba\nMyra\nRachel\nStephanie\nAda\nAlberta\nCecelia\nElsie\nJoy\nLucy\nMyrtle\nVelma\nArlene\nBettie\nCaroline\nInez\nKatie\nLena\nMaureen\nMichele\nRosetta\nDenise\nLenora\nMaggie\nAngela\nCarmen\nFannie\nFlora\nFrankie\nLynne\nNaomi\nQueen\nSallie\nValerie\nVerna\nCarla\nElouise\nErma\nLee\nSusie\nHenrietta\nHilda\nJill\nLola\nNina\nNora\nRegina\nSaundra\nChristina\nGertrude\nGilda\nGracie\nGwen\nLula\nRobin\nSandy\nAmy\nEarlene\nEssie\nEugenia\nIrma\nJeannie\nMarlene\nMiriam\nSadie\nTanya\nVickie\nAndrea\nCassandra\nDale\nJan\nJennie\nJewel\nMarianne\nNadine\nCheri\nCherry\nDawn\nDeanna\nEloise\nHarriett\nLaverne\nLeona\nLou\nOllie\nPenny\nPolly\nSharron\nShelia\nSonia\nViola\nAntoinette\nCindy\nClaudette\nDianna\nDixie\nEstelle\nLottie\nLydia\nMable\nPearl\nRosalind\nSharyn\nSherrie\nSonja\nTina\nWinifred\nApril\nBernadette\nClaire\nCleo\nCorine\nDebra\nFaith\nGale\nJanette\nLeola\nMadeline\nMarva\nMay\nOlivia\nRosie\nSondra\nStella\nSusanne\nViolet\nAlicia\nBennie\nBeth\nBette\nBlanche\nBonita\nClaretha\nDana\nDora\nDoretha\nEddie\nElnora\nGretchen\nJerry\nJoe\nLaurie\nLizzie\nMarguerite\nMelody\nOra\nPenelope\nRobbie\nSybil\nAmelia\nBecky\nBetsy\nBobby\nCelia\nCharlie\nDarla\nDollie\nEarline\nEstella\nEtta\nEula\nFay\nGinny\nHope\nJewell\nJimmie\nKitty\nLaurel\nLeila\nLessie\nLora\nMavis\nMichelle\nMuriel\nNettie\nOla\nOpal\nPam\nPearlie\nRosalie\nRutha\nSherri\nTommie\nVernell\nYolanda\nAlbertha\nAlfreda\nAltamese\nAmanda\nBeulah\nEdwina\nFlorine\nFrancine\nFrieda\nGay\nHolly\nIdella\nJannie\nJaunita\nJeanie\nJoanna\nKaye\nLauren\nLelia\nLibby\nLoraine\nLorene\nLorine\nMargo\nMaude\nMelanie\nMerle\nMerry\nMillie\nMyrna\nMyrtis\nNell\nPatti\nRamona\nRetha\nRhonda\nRosalyn\nTerri\nWendy\nAddie\nAdrienne\nAlthea\nCeleste\nCherie\nCrystal\nDelia\nDian\nDiann\nDona\nEffie\nFlossie\nGenevieve\nGussie\nImogene\nJeraldine\nJohn\nJudi\nLouvenia\nLucile\nMazie\nMona\nOdessa\nOlga\nPatty\nReatha\nReba\nRenee\nRhoda\nRoxie\nShelley\nTonya\nWilla\nZelma\nBelva\nCamille\nCandice\nCarlene\nCaryl\nCheryle\nChris\nCorliss\nDanna\nDaphne\nDarleen\nDebbie\nDelois\nDolly\nEaster\nElisabeth\nEliza\nEnid\nEvie\nFrancis\nFreda\nGlenn\nGlenna\nIngrid\nIva\nJacquline\nJosie\nKatrina\nKattie\nKim\nLeigh\nLisa\nLucia\nLucinda\nLura\nLuvenia\nLynette\nMabel\nMadelyn\nMaryann\nMelissa\nMercedes\nMollie\nMolly\nMyrtice\nNelda\nPattie\nPortia\nRosalee\nRoslyn\nSheri\nSherrill\nShirlene\nTracy\nTrudy\nVerdell\nVicky\nLinda\nMary\nPatricia\nBarbara\nSandra\nBetty\nCarolyn\nSharon\nCarol\nShirley\nNancy\nSusan\nGloria\nDonna\nDorothy\nMargaret\nJudy\nBrenda\nMartha\nElizabeth\nJanice\nJoyce\nJudith\nCynthia\nKaren\nDiane\nPamela\nHelen\nBeverly\nAlice\nJanet\nFrances\nAnnie\nPeggy\nCheryl\nVirginia\nMarilyn\nCatherine\nBonnie\nJoan\nJo\nSylvia\nKathleen\nPhyllis\nWanda\nGail\nAnn\nEvelyn\nGlenda\nGwendolyn\nChristine\nRuth\nKathryn\nJane\nSarah\nDelores\nRebecca\nJacqueline\nJean\nCharlotte\nDoris\nConnie\nSuzanne\nLaura\nJulia\nRose\nSheila\nLynda\nMarsha\nDiana\nDeborah\nKatherine\nSherry\nVivian\nMarie\nNorma\nPaula\nRosa\nLouise\nConstance\nJuanita\nWillie\nJacquelyn\nGeraldine\nRuby\nJoann\nYvonne\nElaine\nEllen\nDianne\nAnita\nSara\nAnne\nAnnette\nKathy\nMildred\nTheresa\nLois\nHazel\nJeanette\nJoanne\nCarole\nMarcia\nEmma\nGladys\nKay\nMargie\nPriscilla\nDarlene\nEthel\nMarjorie\nSally\nAnna\nTeresa\nVera\nClara\nEdith\nEva\nPatsy\nClaudia\nSue\nThelma\nEdna\nElla\nRita\nCharlene\nIrene\nLillie\nLoretta\nLynn\nBertha\nJune\nDeloris\nGayle\nJanis\nJohnnie\nJulie\nBernice\nJosephine\nVictoria\nRosemary\nMarian\nAlma\nJanie\nLillian\nRoberta\nJeanne\nMae\nMarion\nVicki\nCarrie\nFaye\nJoy\nMaria\nMattie\nWilma\nJessie\nSheryl\nTerry\nAudrey\nJan\nRachel\nEleanor\nLeslie\nMinnie\nPaulette\nCecelia\nEmily\nLucille\nPenny\nBettye\nFlorence\nJeannette\nLula\nNellie\nAndrea\nEileen\nEsther\nGeorgia\nIda\nToni\nBobbie\nJackie\nLorraine\nBillie\nCathy\nEarnestine\nGrace\nBeatrice\nJennifer\nMyra\nSusie\nIrma\nMichele\nRosetta\nAngela\nCarla\nFannie\nHarriet\nIris\nLydia\nMaggie\nPauline\nBessie\nHenrietta\nLucy\nMaureen\nMaxine\nStella\nVeronica\nVickie\nDora\nGeneva\nRobin\nSaundra\nErnestine\nPat\nViola\nCora\nDaisy\nEloise\nJill\nRegina\nSharyn\nAgnes\nCherry\nMable\nMadeline\nMargo\nMyrtle\nPearl\nSandy\nDianna\nErma\nMamie\nMarlene\nNora\nQueen\nSallie\nStephanie\nAlberta\nCecilia\nChristina\nDolores\nElouise\nEssie\nGinger\nHilda\nKatie\nSharron\nVerna\nFrankie\nHattie\nInez\nJeannie\nLeola\nNadine\nOlivia\nRutha\nTrudy\nBonita\nCandace\nCaroline\nEula\nGale\nGilda\nJewel\nNettie\nNina\nPatty\nRosie\nSybil\nValerie\nVelma\nArlene\nBettie\nDawn\nDenise\nJimmie\nMarguerite\nMarva\nMelody\nRuthie\nSonja\nBeth\nBette\nClaudette\nDiann\nHarriett\nLee\nLola\nLorene\nMelba\nMichelle\nOllie\nViolet\nAlicia\nBecky\nBobby\nCarmen\nDella\nFlora\nFreddie\nLana\nLottie\nOla\nPearlie\nPenelope\nShelia\nTina\nWinifred\nApril\nCheri\nCindy\nClaire\nColleen\nCrystal\nEarlene\nEugenia\nFrancine\nGertrude\nJessica\nLena\nLenora\nLessie\nLorine\nMiriam\nWendy\nAmelia\nAntoinette\nBeulah\nBlanche\nDebbie\nDelois\nDixie\nEunice\nGracie\nHolly\nHope\nIna\nJennie\nJenny\nLizzie\nLynne\nMeredith\nMerry\nMillie\nPatti\nRobyn\nSadie\nAda\nAddie\nCassandra\nCheryle\nClarice\nEarline\nEddie\nJanette\nJeri\nJoanna\nLoraine\nLou\nNaomi\nPolly\nRena\nRhonda\nSherrie\nTerri\nCandy\nDale\nDeanna\nEffie\nElsie\nGay\nGretchen\nGwen\nJeanie\nJosie\nLela\nMarianne\nMavis\nMelinda\nMyrna\nOuida\nPam\nReba\nRosalind\nSherrill\nAdrienne\nAmy\nCelia\nCharlie\nCherie\nCorine\nDana\nDebra\nDoreen\nDorthy\nEartha\nFaith\nFay\nFrancis\nFreda\nGlynda\nHelena\nImogene\nJames\nJannie\nJeraldine\nJerry\nKathie\nKaye\nLeila\nLucinda\nMadelyn\nMarcella\nMaryann\nMolly\nNelda\nNona\nOlive\nPatrica\nRoxie\nSondra\nSusanne\nTanya\nVernell\nVicky\nWilla\nAlfreda\nAmanda\nAretha\nAva\nBernadette\nBetsy\nCandice\nCarlene\nCelestine\nDee\nDollie\nDolly\nDoretha\nDottie\nEstella\nFreida\nGerry\nGina\nGinny\nHarriette\nJeanine\nJewell\nJoe\nJohn\nJudie\nLaverne\nLeah\nLeona\nLetha\nLynette\nMelissa\nMona\nMyrtice\nNell\nNikki\nOlga\nPearline\nRenee\nSonya\nSuzette\nTamara\nTommie\nVerdell\nWinnie\nAdrian\nAlexis\nAltamese\nAlva\nAurora\nBelinda\nCamilla\nCecile\nCharleen\nCherrie\nClementine\nCleo\nDaphne\nDorinda\nDrucilla\nFlorine\nFran\nGene\nHeidi\nHelene\nHettie\nIngrid\nIona\nIra\nIsabel\nIva\nJamie\nJanine\nJannette\nJayne\nJerelene\nJohanna\nJonnie\nJudi\nKaron\nKathrine\nKitty\nLaurie\nLeilani\nLila\nLouisa\nLouvenia\nLoyce\nLyn\nMabel\nMarcelle\nMari\nMarilynn\nMarla\nMay\nMelanie\nMollie\nMonica\nMuriel\nOdessa\nOphelia\nPortia\nRetha\nRhoda\nRobbie\nRobert\nRochelle\nRonda\nRosalyn\nRoslyn\nSandi\nShannon\nSherlyn\nSuzan\nUnknown\nYolanda\nLinda\nMary\nPatricia\nBarbara\nSandra\nBetty\nSharon\nCarolyn\nSusan\nNancy\nShirley\nCarol\nBrenda\nGloria\nMargaret\nDonna\nDorothy\nMartha\nJoyce\nCynthia\nJudy\nElizabeth\nJanice\nKaren\nPamela\nJudith\nCheryl\nBeverly\nDiane\nFrances\nHelen\nDeborah\nPeggy\nVirginia\nAnnie\nKathleen\nCatherine\nJanet\nAlice\nJoan\nEvelyn\nJo\nMarilyn\nBonnie\nDoris\nGail\nWanda\nGwendolyn\nSarah\nSylvia\nJacqueline\nSherry\nGlenda\nAnn\nCharlotte\nKathryn\nPhyllis\nChristine\nJane\nRose\nRuth\nLynda\nKatherine\nLaura\nRebecca\nJean\nSheila\nVivian\nDiana\nGeraldine\nJuanita\nMildred\nRuby\nConnie\nYvonne\nPaula\nSuzanne\nMarie\nTheresa\nEthel\nDelores\nElaine\nMarsha\nWillie\nJulia\nMarjorie\nJoann\nLois\nEllen\nRosa\nTeresa\nLillie\nJacquelyn\nLouise\nConstance\nDarlene\nEdna\nNorma\nAnna\nEmma\nKathy\nEdith\nMarcia\nVicki\nClaudia\nPatsy\nLynn\nGladys\nVictoria\nCharlene\nRita\nAnita\nJeanette\nSally\nAnne\nAnnette\nCarrie\nClara\nDianne\nHazel\nMinnie\nThelma\nIrene\nJune\nSue\nDeloris\nJanis\nLillian\nMargie\nCarole\nElla\nIda\nJoanne\nMarion\nJosephine\nPaulette\nSara\nJoy\nJulie\nRoberta\nBobbie\nEva\nRegina\nMae\nLoretta\nToni\nVera\nAudrey\nVeronica\nDolores\nEsther\nKay\nMarian\nPriscilla\nAndrea\nCathy\nGeorgia\nJohnnie\nMattie\nDaisy\nJeanne\nJennifer\nLorraine\nRosemary\nBernice\nBertha\nJanie\nMamie\nMarlene\nAlma\nBettye\nSheryl\nTerry\nEleanor\nGeneva\nJackie\nLeslie\nMaxine\nGrace\nFaye\nJan\nStephanie\nValerie\nCandace\nBeatrice\nBessie\nGayle\nMyra\nSusie\nMelanie\nNora\nPauline\nRosetta\nErnestine\nIris\nMaria\nBillie\nCora\nFlorence\nLula\nPenny\nRobin\nEmily\nJill\nLucille\nCassandra\nGertrude\nHattie\nNaomi\nWendy\nCecelia\nEileen\nNina\nBecky\nDora\nHarriet\nJeannette\nJessie\nLucy\nMelody\nSharyn\nAgnes\nCaroline\nDale\nEarlene\nKatie\nMaggie\nVelma\nViola\nAngela\nArlene\nChristina\nDebbie\nDianna\nEarnestine\nFrankie\nGale\nHarriett\nHilda\nLydia\nMarva\nMaureen\nMichele\nNellie\nOlivia\nWilma\nAntoinette\nCarmen\nDenise\nElouise\nInez\nLola\nNettie\nOllie\nSonja\nDoretha\nEssie\nHenrietta\nJannie\nJennie\nJewel\nLenora\nTrudy\nCarla\nCecilia\nErma\nEunice\nJeannie\nLaverne\nLee\nMable\nMelba\nMichelle\nAlfreda\nCherry\nClaudette\nDawn\nElsie\nGracie\nJoanna\nRenee\nVerna\nWinifred\nYolanda\nBettie\nBlanche\nCindy\nClaretha\nDebra\nDella\nEloise\nGinger\nLaurie\nMadeline\nMarianne\nMiriam\nPat\nSandy\nSaundra\nStella\nUnknown\nAddie\nBetsy\nJanette\nJessica\nLana\nLora\nLucile\nMelinda\nMelissa\nMyrtle\nQueen\nReba\nRhonda\nRosalind\nRutha\nSallie\nSharron\nTerri\nTommie\nViolet\nBonita\nCheri\nClaire\nDoreen\nEula\nFrancine\nGilda\nLeona\nLynne\nPearl\nRosie\nVernell\nAda\nAlberta\nAlicia\nColleen\nDelois\nEstella\nFlora\nFreddie\nLeila\nLeola\nMay\nMona\nNelda\nPatty\nPenelope\nPolly\nRachel\nShelia\nSonia\nTina\nAmelia\nCarlene\nCharlie\nDana\nDiann\nElnora\nGay\nGretchen\nGussie\nGwen\nIna\nIrma\nJimmie\nJosie\nMarguerite\nNadine\nNatalie\nNikki\nRegenia\nRosalyn\nShelley\nSherrie\nWilliam\nAdrienne\nAlthea\nBeulah\nCelia\nDeanna\nDeidre\nDixie\nDolly\nDorthy\nEarline\nEddie\nEffie\nEstelle\nEtta\nHannah\nIva\nJeanie\nLena\nLila\nLisa\nLuvenia\nLyndia\nLynette\nMerry\nMuriel\nPearlie\nPeggie\nRobbie\nRuthie\nSadie\nSonya\nSusanne\nSybil\nTanya\nVicky\nApril\nBelinda\nBennie\nBernadette\nCandice\nChristy\nClarice\nDottie\nFannie\nFlorine\nGlinda\nHolly\nJacklyn\nJamie\nJenny\nJeraldine\nKaye\nLela\nLessie\nLorene\nLucinda\nLucretia\nMavis\nMercedes\nNita\nOdessa\nOla\nOphelia\nPatti\nPortia\nRamona\nRosalie\nSheri\nShirlene\nValeria\nAllie\nAva\nBeth\nCarlotta\nCasandra\nCorine\nCornelia\nDona\nEdwina\nElvira\nFreda\nGeorge\nHelene\nIlene\nJerry\nJudie\nKimberly\nLelia\nLeta\nLizzie\nMadelyn\nMaryann\nMaude\nMillie\nMollie\nMolly\nMyrna\nOpal\nOuida\nPam\nReatha\nRhoda\nRicki\nRobert\nRoslyn\nSandi\nSheron\nSherrill\nStarr\nSuzan\nTrudie\nVickie\nWinnie\nZelma\nAlene\nAmanda\nAntonia\nCamilla\nCarrol\nCherie\nCleo\nDeana\nDebby\nDeena\nDollie\nDonnie\nEartha\nEliza\nElois\nElva\nEugenia\nFay\nFelicia\nFlossie\nFrancis\nFreida\nGeorgianna\nGerry\nGina\nHortense\nIla\nJames\nJerri\nJewell\nKaron\nKatharine\nKristine\nLauren\nLea\nLibby\nLorine\nLorna\nMargo\nMarilynn\nMartina\nMerle\nNoreen\nOlive\nOra\nPatrica\nRetha\nRonnie\nShari\nShawn\nShelly\nSherri\nSondra\nSyble\nTherese\nValorie\nVeda\nVerdell\nVoncile\nWilla\nYvette\nLinda\nMary\nPatricia\nBarbara\nSandra\nSharon\nShirley\nSusan\nBetty\nBrenda\nCarolyn\nNancy\nGloria\nCarol\nMargaret\nDonna\nDeborah\nElizabeth\nCynthia\nJoyce\nDorothy\nJudy\nJanice\nMartha\nKaren\nDiane\nPamela\nBeverly\nCheryl\nBonnie\nKathleen\nFrances\nCatherine\nJudith\nVirginia\nPeggy\nJanet\nWanda\nHelen\nGwendolyn\nChristine\nAnnie\nAlice\nCharlotte\nJo\nDoris\nRebecca\nJoan\nSylvia\nKathryn\nGail\nSarah\nTheresa\nGlenda\nEvelyn\nJacqueline\nMarilyn\nJane\nRuth\nAnn\nKatherine\nMarsha\nPhyllis\nSherry\nLaura\nJuanita\nKathy\nYvonne\nGeraldine\nJean\nMildred\nConnie\nSheila\nElaine\nRose\nSuzanne\nVivian\nJacquelyn\nMarie\nDiana\nPaula\nRuby\nJoann\nDianne\nJulia\nCathy\nDelores\nRita\nWillie\nEmma\nConstance\nMarcia\nDarlene\nEthel\nJune\nLois\nLynda\nPatsy\nTeresa\nEdna\nLynn\nJosephine\nJeanette\nDeloris\nEdith\nEllen\nNorma\nPriscilla\nAnita\nCharlene\nLouise\nRosa\nSally\nThelma\nMarjorie\nJennifer\nVicki\nJanie\nHazel\nJohnnie\nLillian\nMargie\nVera\nLoretta\nAnne\nAudrey\nGladys\nMae\nSue\nRosemary\nAnnette\nMinnie\nPaulette\nAnna\nBelinda\nBernice\nClaudia\nIrene\nLillie\nMarion\nStephanie\nVictoria\nGayle\nRhonda\nSara\nBobbie\nDolores\nGrace\nMaxine\nAngela\nClara\nFaye\nMaria\nRoberta\nBertha\nCarole\nCassandra\nMattie\nCarrie\nJoanne\nJoy\nJulie\nLeslie\nMarian\nElla\nSheryl\nEleanor\nVeronica\nJanis\nValerie\nDebbie\nJackie\nJan\nKay\nPauline\nRegina\nCecelia\nJeanne\nMichele\nTerry\nWilma\nAlma\nEmily\nCora\nLorraine\nMarlene\nRenee\nEsther\nEunice\nEva\nHarriet\nCandace\nCaroline\nDebra\nLucy\nMelinda\nRobin\nRosetta\nAndrea\nCarmen\nDaisy\nDale\nFlorence\nGeorgia\nJessie\nLucille\nShelia\nSusie\nViola\nBeatrice\nBessie\nHattie\nIda\nNina\nOlivia\nRachel\nVickie\nAlberta\nEileen\nHilda\nInez\nLaverne\nBecky\nBettye\nGeneva\nGinger\nMelanie\nRuthie\nToni\nArlene\nGertrude\nLula\nMarguerite\nMyra\nRosalyn\nFrankie\nJill\nLana\nLorene\nMamie\nNora\nPenny\nWendy\nBillie\nChristina\nDora\nErnestine\nEssie\nIris\nLynne\nMarva\nVelma\nBeth\nCindy\nDenise\nHenrietta\nLola\nMelissa\nNaomi\nPearlie\nQueen\nCarla\nCecilia\nDana\nIrma\nJennie\nLydia\nMargo\nMelody\nMichelle\nPolly\nSandy\nDella\nEarnestine\nGale\nJeannie\nMable\nMadeline\nMaureen\nMiriam\nPam\nStella\nAmy\nElouise\nErma\nEula\nFlora\nJeannette\nLee\nLeona\nPatty\nSadie\nSallie\nTina\nBetsy\nCelestine\nDianna\nEloise\nElsie\nJenny\nLena\nLeola\nMyrtle\nNellie\nNettie\nOla\nRutha\nSaundra\nSharron\nShelley\nAgnes\nColleen\nCornelia\nEarline\nFannie\nFay\nFrancine\nKatie\nRosie\nTrudy\nWinifred\nBette\nCharlie\nClaire\nClaretha\nClaudette\nEarlene\nEtta\nHarriett\nJannie\nRosalind\nTerri\nValarie\nYolanda\nAddie\nAmanda\nAmelia\nCherie\nCherry\nEstella\nHope\nJayne\nJimmie\nLila\nLucinda\nLynette\nMolly\nNita\nPat\nRoslyn\nSharyn\nSonia\nVicky\nViolet\nAntoinette\nBlanche\nCathleen\nClementine\nDawn\nDeanna\nDoretha\nFreddie\nJamie\nLaurie\nLeila\nMarcella\nNadine\nOllie\nPenelope\nRosemarie\nVerna\nAlicia\nCandice\nCathryn\nDelois\nDiann\nDona\nFlossie\nFrancis\nGeorgette\nGilda\nJeanie\nJewel\nJoanna\nLizzie\nLorine\nLottie\nMadelyn\nMickey\nMona\nMuriel\nPatti\nRena\nRosalie\nSondra\nSonya\nUnknown\nWilhelmina\nAda\nAlfreda\nAltamese\nAlyce\nBettie\nCassie\nCathie\nCeleste\nCharles\nDorthy\nEddie\nElnora\nFlorine\nGay\nGenevieve\nGracie\nGretchen\nHolly\nIna\nJaunita\nJewell\nJoe\nJohn\nJuliette\nKathie\nKaye\nKristin\nLenora\nLisa\nLoretha\nMargarett\nMarianne\nMaryann\nMollie\nMonica\nMyrna\nNona\nPeggie\nRobbie\nSherrie\nSherrill\nSonja\nSusanne\nWilla\nAlexis\nAntionette\nApril\nBeulah\nCallie\nCandy\nCarlene\nCelia\nClarice\nCleo\nDebby\nDelorise\nDixie\nDrucilla\nElinor\nEstelle\nEugenia\nFelicia\nFrieda\nHeather\nJana\nJanette\nJessica\nKimberly\nKristine\nLaurel\nLeatha\nLora\nLou\nLucretia\nMalinda\nMarilynn\nMillie\nMyrtice\nOra\nPearl\nPortia\nRochelle\nRoxie\nTara\nTerrie\nWinnie\nYvette\nAlbertha\nAlthea\nAndra\nAngeline\nAva\nBernadette\nBonita\nCathrine\nCharmaine\nChristie\nChristy\nDarleen\nDebora\nDelia\nDell\nDollie\nEdwina\nEffie\nFlorida\nGearldine\nGwen\nIdella\nIsabel\nJacquline\nJerri\nJody\nJohnny\nJonnie\nJulianne\nKatharine\nKerry\nKristina\nLauren\nLeah\nLeigh\nLela\nLelia\nLetha\nLily\nLucile\nLyndia\nMaggie\nMarla\nMavis\nMay\nMichael\nNanette\nNola\nOlga\nPatrica\nPatrice\nRamona\nReatha\nSharleen\nSherryl\nShirlene\nSybil\nTherese\nVernell\nLinda\nMary\nPatricia\nBarbara\nSandra\nSusan\nDeborah\nBrenda\nShirley\nNancy\nSharon\nBetty\nCarol\nCarolyn\nCynthia\nDonna\nGloria\nKaren\nMargaret\nJoyce\nMartha\nPamela\nElizabeth\nJanice\nDorothy\nJudy\nBeverly\nKathleen\nJanet\nDiane\nWanda\nGwendolyn\nJudith\nCheryl\nCatherine\nKathy\nGail\nBonnie\nAnnie\nRebecca\nFrances\nMarilyn\nPeggy\nVirginia\nHelen\nAlice\nJoan\nSheila\nCharlotte\nGlenda\nDoris\nAnn\nEvelyn\nKathryn\nLaura\nChristine\nSherry\nJacqueline\nDiana\nJo\nSarah\nPhyllis\nSylvia\nRose\nPaula\nKatherine\nMarsha\nTheresa\nYvonne\nConnie\nDebra\nRuth\nSuzanne\nMarcia\nCathy\nJuanita\nDianne\nJane\nJoann\nVivian\nDelores\nJacquelyn\nMarie\nTeresa\nGeraldine\nConstance\nJean\nRuby\nElaine\nEllen\nWillie\nLois\nJulia\nNorma\nRita\nLouise\nLynda\nIrene\nEthel\nMildred\nAnne\nCharlene\nPatsy\nEdna\nTerry\nLynn\nSally\nLillie\nJeanette\nSara\nElla\nEmma\nValerie\nDeloris\nLillian\nSue\nVicki\nAnnette\nDarlene\nJoanne\nVickie\nAnita\nJune\nLorraine\nBelinda\nEdith\nPriscilla\nAngela\nJohnnie\nVictoria\nJennifer\nJulie\nRosa\nRhonda\nRobin\nLoretta\nThelma\nClaudia\nDebbie\nEileen\nEva\nBertha\nClara\nMarjorie\nRoberta\nAnna\nMaxine\nSheryl\nJackie\nJoy\nMarian\nPaulette\nRosemary\nAlma\nGayle\nKay\nMae\nMarion\nFaye\nMarlene\nMattie\nBobbie\nColleen\nDenise\nAudrey\nJill\nJosephine\nBernice\nJanis\nRegina\nVera\nCarrie\nErnestine\nHazel\nIris\nStephanie\nCandace\nChristina\nLeslie\nPauline\nCarole\nDaisy\nGladys\nGrace\nJessie\nMargie\nMichele\nShelia\nCassandra\nMinnie\nRosetta\nCarla\nCarmen\nMichelle\nVeronica\nEarnestine\nEmily\nFlorence\nHilda\nJan\nJeanne\nMyra\nRachel\nAgnes\nAmy\nAndrea\nLucy\nSusie\nToni\nViola\nWendy\nGeorgia\nJanie\nPenny\nArlene\nDolores\nHattie\nJeannette\nMaureen\nMelanie\nMelinda\nAlthea\nBecky\nCecilia\nCora\nEsther\nMaria\nRenee\nRuthie\nShelley\nWilma\nBeth\nLena\nMyrtle\nNaomi\nBeatrice\nBillie\nDale\nErma\nHarriett\nIda\nLula\nNora\nVelma\nAlberta\nDianna\nEssie\nFlora\nJeannie\nMamie\nMona\nNellie\nOlivia\nVerna\nBettye\nCindy\nClaudette\nFrancine\nGinger\nLana\nLola\nRamona\nBessie\nEleanor\nGale\nHenrietta\nInez\nMarva\nMelissa\nNina\nStella\nEunice\nFrankie\nGeneva\nLee\nLucille\nLynne\nPatti\nPatty\nSandy\nBeulah\nBonita\nCandice\nEarlene\nEloise\nFannie\nGertrude\nKatie\nLaverne\nMelody\nNadine\nRosalyn\nTrudy\nVicky\nCecelia\nCherry\nDiann\nGracie\nHarriet\nIrma\nLisa\nMiriam\nPam\nAntoinette\nDawn\nJamie\nLydia\nMerry\nOllie\nPearlie\nQueen\nSherrie\nBetsy\nDella\nDora\nEula\nFreda\nJanette\nLaurie\nLeola\nLorene\nLucinda\nMadeline\nRetha\nRosalind\nSharron\nTerri\nTina\nCelia\nDeanna\nDelia\nFrancina\nJeanie\nJennie\nJenny\nLenora\nLynette\nMarguerite\nMaryann\nOla\nPearl\nValarie\nAddie\nAmanda\nBlanche\nCandy\nCaroline\nClaire\nDana\nDebora\nDoretha\nFaith\nGay\nHolly\nMaggie\nMuriel\nPat\nPenelope\nRhoda\nRosie\nShari\nSusanne\nVernell\nViolet\nAdrienne\nAlbertha\nApril\nCarlene\nCathleen\nCherie\nClaretha\nCornelia\nDixie\nFay\nFrancis\nGussie\nJannette\nJeri\nJewel\nJimmie\nJosie\nKarla\nKaron\nKristine\nLaurel\nMable\nMalinda\nMarta\nMolly\nPatrice\nPolly\nRutha\nSallie\nShannon\nTanya\nTommie\nAlfreda\nAlicia\nBettie\nCeleste\nCheri\nEddie\nElouise\nElsie\nEugenia\nGilda\nGwen\nIdella\nJannie\nJessica\nLeona\nLottie\nMabel\nMargo\nMarla\nMelba\nMercedes\nMollie\nMonica\nPansy\nReba\nRena\nRosalie\nRoslyn\nSaundra\nSonya\nAda\nAlva\nAlyce\nBette\nClementine\nCleo\nDollie\nEarline\nEffie\nEstella\nFelicia\nHeather\nJewell\nKatharine\nKatheryn\nKatrina\nLetha\nLizzie\nLouvenia\nMadelyn\nMarianne\nMarilynn\nMillie\nNell\nNettie\nOphelia\nSadie\nSherri\nSonja\nSybil\nUnknown\nValorie\nWinifred\nYolanda\nYvette\nBernadette\nCallie\nCathryn\nCelestine\nChris\nChristie\nDebby\nDee\nDelois\nDona\nDoreen\nElma\nElnora\nFreddie\nGeorge\nGlenna\nHelene\nIlene\nJeraldine\nJoanna\nJuana\nKitty\nLelia\nLessie\nLonnie\nLucile\nMarcella\nNita\nNola\nOra\nRoseann\nRoxanne\nSheri\nTeri\nWilhelmina\nWilla\nAida\nAlison\nAltamease\nAmelia\nAva\nBarbra\nBobby\nCaryn\nClarice\nDian\nDinah\nDolly\nDorothea\nDorthy\nDottie\nDrucilla\nElena\nFlossie\nFreida\nGeorgina\nGretchen\nIna\nIvy\nJacquelin\nJacquelyne\nJoe\nKathie\nKathrine\nKim\nKimberly\nKristina\nLavern\nLavonne\nLeila\nLela\nLou\nLucretia\nMargery\nMavis\nMay\nMillicent\nMyrna\nNanette\nNatalie\nNelda\nPortia\nRobbie\nRonnie\nSharyn\nSherrill\nTeressa\nVernita\nVoncille\nWinnie\nLinda\nMary\nPatricia\nDeborah\nBarbara\nSandra\nSusan\nBrenda\nSharon\nNancy\nCynthia\nDonna\nCarolyn\nShirley\nKaren\nCarol\nPamela\nGloria\nBetty\nDebra\nMargaret\nDorothy\nJanice\nElizabeth\nMartha\nJoyce\nDiane\nJudy\nKathleen\nJanet\nWanda\nBeverly\nCatherine\nGail\nCheryl\nJudith\nChristine\nRebecca\nPeggy\nKathryn\nKathy\nVirginia\nAlice\nGwendolyn\nHelen\nBonnie\nJacqueline\nPhyllis\nFrances\nMarilyn\nAnnie\nJo\nGlenda\nKatherine\nSylvia\nYvonne\nMarsha\nSarah\nEvelyn\nLaura\nJoan\nPaula\nConnie\nJane\nTheresa\nCharlotte\nSheila\nCathy\nRuth\nTeresa\nVicki\nAnn\nSherry\nDiana\nJacquelyn\nVivian\nRose\nConstance\nDelores\nRuby\nDoris\nRita\nJuanita\nElaine\nEllen\nNorma\nMarcia\nMarie\nLynn\nVictoria\nCharlene\nGeraldine\nJean\nBelinda\nJeanette\nDarlene\nDenise\nJoanne\nMildred\nJan\nSuzanne\nAnita\nEdith\nJulia\nAnnette\nEdna\nLynda\nRhonda\nAnne\nSally\nPriscilla\nRosa\nSara\nEthel\nDianne\nJanis\nJoann\nJulie\nPaulette\nVeronica\nPatsy\nRobin\nRosemary\nValerie\nWillie\nJennifer\nLouise\nAnna\nClara\nDeloris\nLillie\nLoretta\nTerry\nAngela\nClaudia\nGladys\nHazel\nLois\nVickie\nIrene\nJeanne\nJune\nLillian\nLorraine\nRoberta\nAudrey\nBobbie\nCandace\nGayle\nJoy\nSue\nVera\nCassandra\nJanie\nKay\nThelma\nWendy\nDebbie\nEmma\nMarion\nGrace\nMarjorie\nSheryl\nMarian\nFaye\nMichelle\nStephanie\nLeslie\nEsther\nMichele\nCarla\nMargie\nCarrie\nRegina\nAlma\nElla\nBeatrice\nBernice\nBertha\nEleanor\nJosephine\nMae\nMaxine\nCarole\nColleen\nEva\nIris\nMarlene\nShelia\nMattie\nNora\nEmily\nGeorgia\nMaria\nMaureen\nAndrea\nArlene\nBeth\nCecelia\nHarriet\nJohnnie\nMelody\nShelley\nIda\nMona\nPauline\nDolores\nErma\nJill\nNina\nPenny\nErnestine\nEunice\nMelissa\nMyra\nRachel\nCindy\nFlorence\nJackie\nJessie\nPatti\nTerri\nVelma\nChristina\nMelanie\nMelinda\nDaisy\nGale\nLula\nLynne\nRenee\nRosetta\nBillie\nCecilia\nDale\nDora\nLaurie\nMamie\nVicky\nAmy\nBetsy\nBettye\nFrankie\nGinger\nLisa\nLucille\nOlivia\nWilma\nAlthea\nBessie\nJanette\nJeannie\nMarianne\nMinnie\nRosalind\nSusie\nViola\nAlberta\nCarmen\nEileen\nGeneva\nHolly\nLeola\nRoxanne\nCheri\nDana\nEssie\nHattie\nJenny\nLee\nPatrice\nRuthie\nToni\nVerna\nAlicia\nEarnestine\nJeannette\nLorene\nLucy\nMay\nMolly\nPatty\nRosalyn\nAmelia\nClaudette\nCora\nDebora\nDiann\nDoretha\nElsie\nFannie\nInez\nLana\nLaverne\nLenora\nMarva\nNaomi\nOla\nOllie\nTina\nViolet\nAlfreda\nDianna\nFrancine\nHenrietta\nHilda\nIrma\nJennie\nLena\nMaggie\nMargo\nNadine\nPearl\nPearlie\nRamona\nStella\nBecky\nBonita\nCrystal\nDawn\nKatie\nLynette\nMadeline\nQueen\nSallie\nAda\nAntoinette\nEarline\nElouise\nFlora\nGay\nGertrude\nGilda\nHarriett\nJimmie\nKatrina\nKim\nLola\nMable\nMarcella\nMarguerite\nMelba\nMindy\nMonica\nNellie\nOra\nReba\nRoslyn\nAgnes\nBernadette\nCandice\nEula\nFay\nGwen\nJessica\nKristine\nLeona\nLora\nMiriam\nNettie\nSonya\nUnknown\nValarie\nAva\nBettie\nCathleen\nCelia\nCherry\nDeanna\nDona\nFaith\nGracie\nJayne\nJerry\nJewel\nLila\nLucinda\nMuriel\nPortia\nRobyn\nRosie\nTanya\nTeri\nWinifred\nApril\nCandy\nCeleste\nChristy\nClaretha\nDixie\nFreddie\nGretchen\nGussie\nJanine\nJerri\nLori\nNona\nPolly\nSaundra\nTommie\nYvette\nAllison\nAngeline\nBlanche\nCheryle\nDella\nEarlene\nEddie\nFrieda\nIlene\nJeri\nJoe\nKarla\nKimberly\nLeila\nLetitia\nMadelyn\nMelodie\nMyrtle\nPatrica\nRobbie\nRobert\nRosalie\nRosemarie\nSadie\nSharron\nTonya\nTrudy\nWilhelmina\nAddie\nBeulah\nCarlene\nCathie\nCharlie\nCharolette\nCorine\nDorthy\nDottie\nEaster\nEdwina\nElise\nElnora\nEloise\nEnid\nEstella\nEugenia\nGenevieve\nGlynda\nHelene\nJames\nJana\nJeannine\nJewell\nKarol\nKate\nLizzie\nLydia\nMarta\nMaryann\nNelda\nNell\nPam\nPenelope\nSelma\nShawn\nSherrie\nSonja\nSusanne\nSuzette\nSybil\nVernell\nWilla\nYolanda\nAdrienne\nAgatha\nBette\nBeverley\nCatharine\nCherie\nClarice\nCorinne\nDarla\nDelois\nEtta\nFreida\nIra\nJamie\nJanna\nJannette\nJeanie\nJoanna\nJody\nJohn\nJosie\nKaye\nLaurel\nLeatha\nLoretha\nLorna\nLou\nLucretia\nMarleen\nMavis\nMeredith\nOphelia\nRhoda\nRutha\nSandy\nShari\nSharlene\nShelly\nStacey\nTerrie\nTherese\nVelda\nVernita\nWinnie\nAbigail\nAdele\nAileen\nAna\nAngelia\nCallie\nCaroline\nCecile\nCelestine\nChris\nClaire\nClementine\nCornelia\nDaryl\nDee\nDelia\nDena\nDenice\nDoreen\nDorothea\nElvira\nFrancina\nFreda\nHannah\nHope\nIla\nImogene\nIsabel\nIva\nIvory\nJanelle\nKatharine\nKitty\nLavonia\nLela\nLona\nLonnie\nLorine\nLutricia\nMabel\nMarla\nMercedes\nMillie\nMyrtice\nNan\nNatalie\nOlga\nPamala\nPansy\nRena\nRetha\nRochelle\nRonnie\nSheryll\nSondra\nSonia\nVerdell\nLinda\nMary\nPatricia\nDeborah\nBarbara\nSusan\nDebra\nSandra\nBrenda\nNancy\nCynthia\nSharon\nKaren\nDonna\nCarolyn\nCarol\nBetty\nShirley\nPamela\nElizabeth\nJanice\nGloria\nDiane\nJanet\nMargaret\nKathleen\nJudy\nJoyce\nMartha\nBeverly\nCatherine\nDorothy\nCheryl\nWanda\nGail\nChristine\nRebecca\nJudith\nKathy\nVirginia\nKathryn\nGwendolyn\nMarilyn\nPeggy\nBonnie\nAnnie\nFrances\nJacqueline\nLaura\nSheila\nJoan\nHelen\nPaula\nCathy\nAnn\nPhyllis\nAlice\nKatherine\nConnie\nJo\nRose\nEvelyn\nTeresa\nGlenda\nDenise\nSarah\nMarsha\nTheresa\nJane\nCharlotte\nDiana\nVictoria\nSylvia\nEllen\nSherry\nDoris\nVivian\nYvonne\nJean\nElaine\nRuth\nJulia\nRita\nSuzanne\nRhonda\nCharlene\nDianne\nVicki\nJacquelyn\nConstance\nLynn\nMarie\nAnita\nDarlene\nMarcia\nValerie\nBelinda\nJulie\nNorma\nRosa\nVickie\nRuby\nGeraldine\nJennifer\nLeslie\nMildred\nEdith\nJoann\nDelores\nJuanita\nWillie\nEthel\nAngela\nAnna\nDebbie\nJeanette\nLois\nSally\nThelma\nAnnette\nEdna\nEmma\nLoretta\nMaria\nAnne\nPatsy\nSara\nSue\nRobin\nJanis\nJoanne\nJoy\nLillie\nMarjorie\nAudrey\nClara\nEsther\nLaurie\nMelinda\nRoberta\nStephanie\nJan\nLisa\nSheryl\nTerry\nMarion\nJeanne\nJill\nJune\nMarlene\nMichelle\nPriscilla\nVeronica\nWendy\nClaudia\nElla\nMargie\nLillian\nLynda\nBeatrice\nGrace\nLouise\nMae\nRosemary\nToni\nBernice\nDeloris\nLorraine\nPenny\nRegina\nBertha\nBobbie\nCindy\nFaye\nGladys\nJanie\nJosephine\nMichele\nPaulette\nCarla\nCarmen\nMarian\nMelissa\nArlene\nCassandra\nMaureen\nColleen\nMelanie\nGayle\nHazel\nLucy\nCandace\nCarrie\nIris\nEmily\nEva\nGeorgia\nHarriet\nJohnnie\nNora\nIrene\nKay\nBonita\nJackie\nJessie\nNina\nRenee\nTina\nVera\nAndrea\nDale\nDawn\nIda\nLynne\nMattie\nShelley\nAlma\nEunice\nKatie\nMyra\nOlivia\nTerri\nCarole\nFlorence\nHolly\nWilma\nChristina\nEileen\nGale\nLydia\nPauline\nDolores\nEarnestine\nErnestine\nLucille\nMaxine\nBeth\nMinnie\nRachel\nAlicia\nDebora\nDora\nEleanor\nKim\nNellie\nRosetta\nShelia\nSusie\nAgnes\nCandice\nFrankie\nMelody\nNettie\nPatti\nCecilia\nFrancine\nHattie\nJeannette\nUnknown\nAmy\nBessie\nBillie\nErma\nEssie\nGinger\nMarianne\nMona\nSherrie\nAlthea\nAntoinette\nCecelia\nClaudette\nDaisy\nMolly\nPatty\nSonya\nVicky\nBettye\nCora\nDana\nJeannie\nJenny\nLee\nLucinda\nMarguerite\nStella\nVelma\nCaroline\nCrystal\nDiann\nEugenia\nJanette\nLana\nLaverne\nNaomi\nRosalind\nRoxanne\nVerna\nWinifred\nAmelia\nBetsy\nDianna\nElouise\nGeneva\nJewel\nKristine\nLenora\nLeona\nMiriam\nMonica\nNadine\nPatrice\nPearlie\nQueen\nRosalyn\nTanya\nViola\nAda\nAlberta\nFaith\nJennie\nLaurel\nLeola\nMarcella\nMyrtle\nRuthie\nYvette\nBecky\nEula\nIrma\nJody\nMable\nMadeline\nMamie\nMarva\nRamona\nCharmaine\nCheri\nClaire\nDoretha\nFlora\nInez\nKerry\nLeah\nLora\nReba\nSallie\nSharron\nSherri\nTrudy\nAdrienne\nAlexis\nAlfreda\nBlanche\nCherry\nDeanna\nDixie\nFannie\nFreda\nHenrietta\nHilda\nJerri\nLila\nLola\nLori\nMargo\nMarta\nMyrna\nNita\nPolly\nValeria\nAlbertha\nApril\nBette\nCathleen\nCeleste\nCharlie\nGertrude\nHeidi\nJamie\nJeanie\nKatrina\nLula\nNanette\nNelda\nOla\nPeggie\nRoslyn\nSaundra\nShelly\nSherrill\nSonja\nTommie\nViolet\nCassie\nClaretha\nDelilah\nDella\nDoreen\nEarline\nEloise\nFreddie\nGay\nGina\nHarriett\nHarriette\nHeather\nJannie\nKathie\nKathrine\nKimberly\nLeila\nLela\nLena\nLottie\nMalinda\nMay\nMeredith\nMollie\nNola\nOllie\nPenelope\nShannon\nShari\nSybil\nTherese\nVanessa\nYolanda\nAlison\nAllison\nAmanda\nAngelia\nAva\nCandy\nChristie\nChristy\nDinah\nDonnie\nEarlene\nEddie\nElsie\nFay\nFreida\nGilda\nGracie\nGwen\nHope\nJeri\nJimmie\nJosie\nJulianne\nLizzie\nLou\nMercedes\nMerry\nNona\nOphelia\nPearl\nRobbie\nSheri\nSonia\nSusanne\nTeri\nTerrie\nVernell\nAileen\nBernadette\nBridget\nCarlene\nCathryn\nCelestine\nCelia\nCorliss\nDavid\nDona\nFlorine\nGlenna\nIsabel\nJessica\nKaron\nKatheryn\nLauren\nLoraine\nLorene\nLucile\nLyn\nMelba\nMindy\nMuriel\nOpal\nPatrica\nRhoda\nRosie\nRowena\nSondra\nTracy\nValorie\nAbigail\nAngie\nBernadine\nBrinda\nCherie\nClarice\nCleo\nDollie\nDorothea\nElnora\nFrancis\nGlory\nHelena\nHelene\nIna\nIra\nJacquline\nJames\nJanine\nJoanna\nKarin\nKristina\nLea\nLinnie\nLorna\nLucia\nMadelyn\nMaggie\nMelva\nMercy\nRochelle\nRoseanna\nRoxann\nSydney\nTamara\nWinnie\nAddie\nAlana\nAlene\nAntonia\nArlinda\nArnita\nAvis\nBabette\nBarbra\nBennie\nBeulah\nBeverley\nCathie\nClementine\nDee\nDeidre\nDolly\nEdwina\nEffie\nElise\nEstella\nEster\nFelecia\nGayla\nGinny\nGlynda\nGretchen\nIla\nImogene\nIvy\nJacqulyn\nJanell\nJannette\nJerry\nKarla\nKatharine\nKathi\nKaye\nKristi\nKristin\nLadonna\nLarry\nLesley\nLettie\nLolita\nLona\nLonnie\nLoretha\nLorie\nLynette\nMarcie\nMarilynn\nMaryann\nMatilda\nMavis\nMimi\nNan\nNatalie\nNeva\nOdessa\nOlga\nOlive\nOuida\nPandora\nPortia\nRetha\nRosanne\nRosemarie\nRubye\nSandy\nSyble\nTheodora\nValarie\nVeda\nVerdell\nVida\nVoncile\nZandra\nLinda\nMary\nDeborah\nPatricia\nSusan\nBarbara\nDebra\nBrenda\nSandra\nCynthia\nPamela\nNancy\nSharon\nKaren\nDonna\nCarol\nShirley\nCarolyn\nJanet\nJanice\nElizabeth\nBetty\nDiane\nGloria\nMargaret\nBeverly\nRebecca\nKathleen\nJoyce\nDorothy\nCatherine\nJudy\nWanda\nMartha\nKathy\nMarilyn\nGail\nCheryl\nBonnie\nTeresa\nLaura\nPeggy\nKathryn\nChristine\nJudith\nPaula\nGwendolyn\nVirginia\nFrances\nSheila\nRobin\nHelen\nCathy\nJacqueline\nJo\nAlice\nTheresa\nAnnie\nDenise\nKatherine\nPhyllis\nGlenda\nConnie\nJoan\nMarsha\nRose\nVictoria\nMarcia\nSylvia\nRhonda\nAnn\nEvelyn\nRuth\nDarlene\nVivian\nSarah\nElaine\nJane\nSuzanne\nValerie\nDoris\nDiana\nSherry\nAngela\nRita\nVicki\nYvonne\nConstance\nCharlotte\nJulie\nLeslie\nJean\nJennifer\nAnnette\nLynn\nJulia\nDebbie\nRuby\nMarie\nCharlene\nJacquelyn\nGeraldine\nLisa\nAnita\nEllen\nVickie\nTerry\nAnne\nSally\nRoberta\nLouise\nStephanie\nJeanette\nJoy\nEmma\nJuanita\nBelinda\nVeronica\nJune\nPriscilla\nSue\nDelores\nAudrey\nLynda\nDianne\nLoretta\nMildred\nSheryl\nTerri\nWendy\nRegina\nPatsy\nWillie\nBobbie\nClara\nAnna\nJoanne\nSara\nEdna\nMae\nJeanne\nLaurie\nNorma\nLois\nRosa\nJan\nMarion\nMarjorie\nMelissa\nRosemary\nCandace\nJill\nEva\nJoann\nMichelle\nCindy\nGayle\nHazel\nClaudia\nDawn\nDeloris\nLillie\nEdith\nPaulette\nCarrie\nKay\nKim\nMelinda\nShelia\nLillian\nLorraine\nAndrea\nCarla\nEthel\nJanis\nMelanie\nToni\nJosephine\nPatti\nEleanor\nMaria\nMichele\nVanessa\nCassandra\nColleen\nGladys\nIris\nLucy\nRachel\nThelma\nAlma\nBertha\nHolly\nVera\nJackie\nMinnie\nRenee\nArlene\nMarlene\nMelody\nPenny\nCarmen\nElla\nGrace\nMargie\nNina\nUnknown\nDaisy\nDale\nFlorence\nMaureen\nMaxine\nSherri\nBonita\nCarole\nGeorgia\nMarian\nMonica\nAmy\nBeth\nGinger\nIda\nIrene\nTina\nWilma\nBeatrice\nChristina\nEsther\nFrankie\nGale\nJohnnie\nMyra\nRoxanne\nShelley\nVicky\nEmily\nHilda\nJanie\nPauline\nCecelia\nDolores\nEileen\nJeannette\nJessie\nNora\nBecky\nDianna\nJeannie\nPatrice\nBernice\nCelia\nDebora\nDora\nHarriet\nLee\nMamie\nNadine\nSusie\nAgnes\nApril\nFaye\nGeneva\nLou\nLucille\nAlberta\nBillie\nDana\nLydia\nNaomi\nNellie\nRosalind\nFrancine\nHattie\nJennie\nLynne\nMona\nBetsy\nCora\nCrystal\nEunice\nLori\nRobyn\nClaire\nDixie\nJamie\nKatie\nSherrie\nYvette\nCecilia\nErnestine\nFannie\nJenny\nJody\nLana\nLucinda\nLynette\nPearl\nRosalyn\nSallie\nViola\nAva\nCaroline\nGertrude\nHarriett\nHenrietta\nJoni\nLaverne\nMattie\nMiriam\nVelma\nAlicia\nBessie\nDiann\nFlora\nIrma\nKatrina\nLola\nLula\nMable\nReba\nShelly\nStella\nAdele\nAlfreda\nCathleen\nEarnestine\nElsie\nInez\nJeanie\nJeri\nKarla\nLena\nMelba\nMyrtice\nPatty\nRamona\nRuthie\nBernadette\nCandice\nCeleste\nCherie\nErma\nKimberly\nLeah\nNona\nRosetta\nSheri\nSuzette\nTrudy\nAlthea\nAmanda\nElouise\nEssie\nJana\nLaurel\nLeila\nLora\nLorna\nMarguerite\nMarla\nMarva\nMyrtle\nOphelia\nPatrica\nRosanne\nRoslyn\nVelda\nViolet\nAmelia\nCandy\nCarlene\nCheri\nCherry\nDella\nDoretha\nGenevieve\nGeorgette\nJewel\nJoanna\nKatharine\nLauren\nLenora\nLeola\nLuann\nMaggie\nMarcie\nMavis\nMerry\nPenelope\nSharron\nSonja\nVerna\nWinifred\nYolanda\nAddie\nAngelia\nEarlene\nEddie\nEstella\nFay\nJoe\nKathi\nMargo\nMolly\nRobbie\nShannon\nSonya\nSusanne\nAntoinette\nBettye\nClaudette\nDoreen\nEloise\nEugenia\nEula\nFaith\nFreda\nGay\nGracie\nIvy\nJanette\nKathie\nKitty\nLeanne\nLeona\nLorena\nLottie\nMarcella\nMarianne\nOlivia\nRutha\nSadie\nSandy\nSaundra\nSherryl\nSonia\nSybil\nTeri\nWilliam\nBette\nBeverley\nBlanche\nCamille\nChristie\nDebrah\nDollie\nEdwina\nElnora\nGayla\nGina\nGlinda\nGwen\nIngrid\nJerri\nKarol\nKristine\nLyn\nMadeline\nMarietta\nMarilynn\nMaryann\nMerle\nMichael\nMindy\nPolly\nPortia\nQueen\nRhoda\nRosie\nTonya\nWilhelmina\nAntionette\nCathryn\nCelestine\nCharmaine\nChris\nDee\nEarline\nFreddie\nJames\nJayne\nJerry\nJessica\nJewell\nJosie\nJulianne\nKarin\nKristin\nLibby\nLorene\nLoretha\nMarcy\nNanette\nOla\nOlga\nOllie\nRena\nRonda\nRosemarie\nSondra\nStacey\nSuzan\nTamara\nTanya\nTerrie\nTherese\nValarie\nWilla\nAbigail\nAda\nAlison\nAvis\nBettie\nCallie\nCecile\nChristy\nClaretha\nClarice\nClementine\nCorinne\nDeanna\nDebby\nDelia\nDolly\nElena\nElise\nFelice\nFrancina\nGwenda\nHeidi\nHope\nIlene\nJacqulyn\nJannie\nJocelyn\nJohanna\nJohn\nKerry\nLadonna\nLelia\nLesley\nLessie\nLila\nLilly\nLizabeth\nMalinda\nMargret\nMari\nMarta\nMay\nMelodie\nMollie\nMuriel\nNoreen\nOdessa\nOpal\nPattie\nPearlie\nRonnie\nRoxann\nShawn\nShirleen\nTracy\nValencia\nValorie\nVerdell\nVernell\nWynell\nAdrianne\nAdrienne\nAlva\nArleen\nBari\nBeryl\nBonny\nCaron\nCathie\nCecily\nCharlie\nCheryll\nColette\nCornelia\nDarla\nDebroah\nDelorise\nDelphine\nDonnie\nDrucilla\nElisa\nElisabeth\nEstelle\nEster\nEtta\nFelecia\nFrancis\nFreida\nGaye\nGena\nGretchen\nHarriette\nHelene\nHollie\nIla\nIna\nIra\nJacquelin\nJacquline\nJanelle\nJanine\nJimmie\nJohnny\nJonnie\nJuliette\nKathrine\nLani\nLeatha\nLela\nLizzie\nLorie\nLorine\nLuanne\nLucretia\nMargery\nMatilda\nMitzi\nNannette\nNatalie\nNedra\nNettie\nNeva\nNicki\nNorene\nOssie\nPamelia\nPansy\nPat\nRegenia\nRene\nRetha\nRobbin\nRochelle\nRoseann\nScarlett\nSelina\nSelma\nSheilah\nShelby\nSherrill\nShirlene\nStacy\nTwila\nValeria\nVeda\nVernita\nVikki\nLinda\nDeborah\nMary\nPatricia\nDebra\nSusan\nBarbara\nSandra\nCynthia\nKaren\nBrenda\nDonna\nSharon\nPamela\nNancy\nCarol\nShirley\nCarolyn\nElizabeth\nJanet\nJanice\nBeverly\nGloria\nBetty\nDiane\nCheryl\nMargaret\nCatherine\nKathy\nJoyce\nRebecca\nWanda\nKathleen\nJudy\nMarilyn\nTeresa\nDorothy\nMartha\nGail\nTheresa\nRobin\nPeggy\nDenise\nBonnie\nJudith\nPaula\nRose\nGwendolyn\nVirginia\nLaura\nKathryn\nKatherine\nJo\nConnie\nCathy\nHelen\nSylvia\nFrances\nAlice\nSarah\nVicki\nPhyllis\nJoan\nJacqueline\nGlenda\nAnn\nDebbie\nChristine\nLisa\nSheila\nAnnie\nSherry\nRhonda\nDiana\nRuth\nEvelyn\nTerry\nValerie\nElaine\nVictoria\nCharlotte\nMarsha\nDarlene\nAngela\nJane\nJean\nJulia\nVivian\nJennifer\nMarcia\nSuzanne\nEllen\nYvonne\nLynn\nJan\nJulie\nMaria\nRegina\nRita\nDianne\nVickie\nDoris\nCharlene\nLeslie\nConstance\nSally\nStephanie\nTerri\nJeanette\nMichelle\nJuanita\nAnita\nJoanne\nMarie\nNorma\nCindy\nRosa\nPriscilla\nAnna\nLois\nAnnette\nDelores\nEmma\nEdna\nMelanie\nRoberta\nAnne\nSue\nAudrey\nJoy\nLoretta\nLaurie\nMelissa\nWillie\nSheryl\nJacquelyn\nPatsy\nVeronica\nBelinda\nJill\nRuby\nCassandra\nDawn\nLillian\nLynda\nVanessa\nVera\nKim\nLouise\nMildred\nPenny\nGeraldine\nWendy\nShelia\nThelma\nLori\nMarian\nPaulette\nEdith\nLillie\nToni\nSara\nDeloris\nMarjorie\nCandace\nCarrie\nClaudia\nEva\nIrene\nJune\nLorraine\nMichele\nFaye\nHolly\nMargie\nMelody\nJosephine\nPatti\nRenee\nCarla\nEthel\nHazel\nJoann\nMarlene\nUnknown\nBertha\nJackie\nJeanne\nKay\nKimberly\nAndrea\nMaxine\nAmy\nWilma\nBernice\nBobbie\nEileen\nIris\nArlene\nElla\nGrace\nMelinda\nGladys\nJanis\nLou\nMae\nAlma\nClara\nColleen\nEmily\nGayle\nMarion\nPauline\nRosemary\nVicky\nLucy\nMona\nDale\nDebora\nJohnnie\nLynne\nNadine\nNina\nEsther\nGeorgia\nLydia\nMaureen\nMonica\nJanie\nMyra\nNora\nTina\nBeth\nEleanor\nErnestine\nJessie\nSherri\nBecky\nCarmen\nFlorence\nLucille\nLucinda\nShelley\nSherrie\nFannie\nIda\nJamie\nMinnie\nPatrice\nRamona\nSusie\nHarriet\nPatty\nVelma\nAlicia\nBeatrice\nBetsy\nDianna\nDolores\nGale\nGeneva\nJennie\nLee\nMarguerite\nRachel\nRoxanne\nAlthea\nBillie\nCarole\nHarriett\nJeannie\nMattie\nStella\nYolanda\nAntoinette\nJeannette\nLola\nNaomi\nOlivia\nRosalind\nBessie\nBonita\nCora\nFrankie\nGinger\nViola\nCathleen\nCrystal\nDiann\nEarnestine\nHilda\nJoni\nMamie\nMiriam\nRobyn\nTracy\nAlberta\nCheri\nDaisy\nDana\nEssie\nGay\nHenrietta\nLynette\nRosetta\nSheree\nSondra\nTerrie\nApril\nBettye\nCecilia\nElouise\nEula\nFaith\nFrancine\nHattie\nLeola\nLuann\nMaggie\nMarva\nNellie\nSonja\nSonya\nTrudy\nValarie\nCaroline\nClaire\nDaphne\nEloise\nGina\nInez\nJanette\nJody\nKatie\nLaurel\nLula\nMarianne\nReba\nSuzan\nFelicia\nFlora\nJana\nJenny\nLena\nMerry\nMyrtle\nPenelope\nRosalyn\nSonia\nVerna\nViolet\nWinifred\nAgnes\nAva\nBernadette\nChristy\nDolly\nElsie\nGwen\nJannie\nLenora\nLeona\nNettie\nTanya\nYvette\nAlison\nAmanda\nBettie\nCecelia\nDella\nGretchen\nHeather\nIrma\nJanine\nLaverne\nLorene\nMercedes\nMuriel\nRena\nRobbie\nRuthie\nShannon\nAda\nAdrienne\nCandice\nCandy\nCherry\nDora\nDoretha\nErma\nEugenia\nFreda\nJoanna\nKarla\nKatharine\nKathi\nMargo\nMarla\nMitzi\nPatrica\nPearl\nRosanne\nSharron\nSusanne\nValeria\nVernita\nBlanche\nCathryn\nChristina\nEarlene\nGayla\nHeidi\nJeanie\nJeri\nJulianne\nLeah\nLizzie\nLora\nMindy\nNatalie\nQueen\nRachael\nTeri\nAddie\nAmelia\nBridget\nCeleste\nCelia\nClarice\nDebrah\nDena\nDona\nEtta\nEve\nGertrude\nGlenna\nHarriette\nIna\nJerry\nJoe\nJonnie\nKathie\nKatrina\nLauren\nLavern\nLeila\nLessie\nLila\nMarcella\nMyrna\nOla\nRosemarie\nSadie\nSallie\nSaundra\nSheri\nSybil\nTheodora\nValorie\nVelda\nWinnie\nAllison\nBridgett\nCharlie\nChris\nCorine\nDixie\nDollie\nDoreen\nDorothea\nElise\nEunice\nFran\nGeorgette\nHelena\nIvy\nJacalyn\nJayne\nJewel\nKerry\nLetha\nLouvenia\nLuella\nMadeline\nMargret\nOdessa\nSharlene\nShelby\nAdele\nAlisa\nAngelia\nAvis\nBobbi\nCassie\nCathi\nClaudette\nCornelia\nDanielle\nDarla\nDelois\nDesiree\nEdwina\nErin\nEvangeline\nFay\nFrancis\nGeorgie\nGracie\nHester\nIva\nJessica\nJosie\nKelly\nKristine\nLucia\nLucretia\nLuvenia\nMadelyn\nMarcie\nMolly\nNeva\nNita\nOlga\nPearlie\nRebekah\nRetha\nRonald\nRonna\nSuzette\nTracey\nValinda\nVerdell\nVida\nWilla\nAletha\nAllene\nAngeline\nBeverley\nCarlene\nCelestine\nCherie\nClaretha\nDeanna\nDonnie\nDorene\nEarline\nEartha\nEffie\nElisa\nElvira\nEstella\nFrancina\nFrieda\nGaynell\nGlinda\nHallie\nHope\nJann\nJoanie\nJodi\nKarin\nKaron\nKaye\nLana\nLaureen\nLeigh\nLibby\nLona\nLoretha\nLorna\nLottie\nLuanne\nMable\nMarcy\nMarietta\nMarilynn\nMarta\nMay\nMelba\nMelodie\nNola\nOphelia\nPam\nPat\nPeggie\nRobbin\nRonda\nRoxie\nSandy\nShelly\nSherryl\nStacy\nTara\nTeressa\nTherese\nTrina\nVernell\nWinona\nAlecia\nAlene\nAlfreda\nAltamese\nAngie\nAnnetta\nBarbra\nBernita\nBeulah\nCaren\nCheryle\nChristi\nClaudine\nColeen\nCorinne\nCorliss\nCorrine\nDeana\nDebi\nDee\nDeirdre\nDelia\nDelorise\nDinah\nFlossie\nFreddie\nGaye\nGeorge\nGilda\nGlynda\nIlene\nIsabell\nJacquline\nJacqulyn\nJeannine\nJocelyn\nJodie\nJolene\nJoycelyn\nKarol\nKathrine\nKitty\nKrista\nLawanda\nLeatha\nLolita\nLorena\nLu\nLucile\nLynnette\nMargarett\nMeredith\nMerrie\nMichael\nNanette\nNelda\nNikki\nOllie\nOra\nPandora\nPrudence\nRachelle\nRosita\nRubye\nSabrina\nScarlet\nShawn\nSydney\nToby\nTonya\nVernice\nVikki\nMary\nDeborah\nLinda\nDebra\nPatricia\nSusan\nBarbara\nCynthia\nBrenda\nSandra\nDonna\nKaren\nSharon\nPamela\nNancy\nCarol\nCheryl\nElizabeth\nDiane\nCarolyn\nJanet\nBetty\nShirley\nJanice\nGloria\nKathy\nBeverly\nTeresa\nWanda\nMargaret\nJoyce\nKathleen\nDenise\nDorothy\nTheresa\nCatherine\nRobin\nRebecca\nGail\nMartha\nJudy\nLaura\nMarilyn\nJudith\nConnie\nBonnie\nKathryn\nSherry\nCathy\nDebbie\nJo\nLisa\nVirginia\nPaula\nRose\nSheila\nGwendolyn\nPhyllis\nPeggy\nKatherine\nVicki\nVictoria\nJacqueline\nValerie\nHelen\nDiana\nRhonda\nChristine\nTerry\nAlice\nAnn\nSylvia\nAngela\nSarah\nEvelyn\nGlenda\nLynn\nElaine\nJoan\nJulie\nTerri\nJane\nJennifer\nRuth\nAnnie\nDoris\nKim\nFrances\nYvonne\nAnita\nSuzanne\nJean\nCindy\nDarlene\nVivian\nStephanie\nLeslie\nJacquelyn\nMarie\nSheryl\nConstance\nRita\nJuanita\nLoretta\nMarcia\nMarsha\nJulia\nMelanie\nCharlene\nAudrey\nCharlotte\nEllen\nRegina\nVanessa\nMaria\nRuby\nAnnette\nDawn\nLori\nBelinda\nMichelle\nVickie\nSally\nWendy\nAnne\nRenee\nJan\nJeanette\nTina\nDelores\nDianne\nRoberta\nLaurie\nEmma\nAndrea\nEdna\nJill\nJoy\nShelia\nAnna\nMelinda\nNorma\nSue\nDebora\nEva\nJeanne\nMelody\nMildred\nJoann\nLynda\nWillie\nFaye\nGeraldine\nLois\nSara\nGayle\nPenny\nPriscilla\nAmy\nJoanne\nMelissa\nPatti\nRosa\nToni\nClara\nLillie\nLorraine\nVicky\nCarmen\nEdith\nHolly\nKimberly\nMarjorie\nPatsy\nEthel\nLillian\nVeronica\nJanis\nLee\nMichele\nJosephine\nVera\nCandace\nCarla\nJohnnie\nJune\nKay\nMarion\nSabrina\nLouise\nMarian\nGladys\nIris\nMaxine\nThelma\nBeth\nClaudia\nIrene\nCassandra\nMaureen\nGeorgia\nMarlene\nColleen\nJackie\nLynne\nArlene\nBobbie\nEleanor\nLydia\nElla\nHarriet\nRachel\nCarole\nJanie\nNina\nPaulette\nSherri\nTeri\nBeatrice\nBernice\nCarrie\nJeannie\nLucy\nMattie\nBertha\nEmily\nFlorence\nHazel\nSusie\nChristina\nMarla\nSheree\nAlicia\nGina\nMyra\nIda\nJamie\nJoni\nLucille\nMae\nBecky\nEileen\nEsther\nGrace\nLaverne\nSherrie\nUnknown\nAlma\nDale\nDesiree\nJeannette\nLauren\nLou\nMargie\nMiriam\nMona\nWilma\nBonita\nDana\nMarianne\nOlivia\nRamona\nRosemary\nTracy\nVelma\nBillie\nCherie\nDeloris\nErma\nFaith\nGinger\nJessie\nRoxanne\nSheri\nYolanda\nCathleen\nCora\nDaisy\nFlora\nPatty\nApril\nCaroline\nDolores\nDora\nNadine\nPauline\nCelia\nMitzi\nSuzan\nBessie\nCecelia\nHattie\nLucinda\nMinnie\nMonica\nNora\nPatrice\nRosalyn\nShelley\nSonja\nTerrie\nViola\nAva\nCheri\nDianna\nGeneva\nHilda\nJennie\nLena\nLenora\nRobbie\nRosetta\nEarnestine\nJenny\nJessica\nNaomi\nQueen\nShannon\nValarie\nWinifred\nAgnes\nAlberta\nBetsy\nEssie\nFreda\nLaurel\nLeah\nMamie\nTanya\nAmanda\nAngelia\nDixie\nErnestine\nHeather\nJana\nKathie\nMerry\nRobyn\nAmelia\nCecilia\nDella\nFrankie\nHeidi\nHenrietta\nInez\nLeigh\nLola\nMaggie\nMarva\nRosalind\nSallie\nSandy\nSonya\nStella\nTherese\nVerna\nAntoinette\nBridget\nCrystal\nDoretha\nDorothea\nGale\nIrma\nJayne\nLana\nMelba\nSonia\nTara\nViolet\nAlfreda\nBernadette\nBlanche\nCandy\nCeleste\nChristy\nClaudette\nEarlene\nEddie\nElnora\nElsie\nGwen\nJeanie\nKatie\nLorna\nLynette\nMable\nMolly\nNettie\nNita\nRobbin\nSharron\nTamara\nAllison\nAlthea\nBonny\nCandice\nClaire\nDeanna\nDena\nDoreen\nEarline\nEunice\nGertrude\nIvy\nJanette\nJoanna\nKarla\nMargo\nMarguerite\nMercedes\nMindy\nPearlie\nPenelope\nReba\nRosanne\nRosie\nRoslyn\nSybil\nTracey\nYvette\nAlison\nAvis\nCelestine\nElise\nEloise\nEugenia\nFrancine\nGracie\nHope\nJannie\nJeri\nJerri\nJody\nKatharine\nKathi\nLessie\nLuann\nLuanne\nLula\nNellie\nOlga\nRena\nRutha\nAda\nAdrienne\nAngie\nBette\nCaren\nClare\nCorinne\nDarla\nDolly\nDona\nDonnie\nFreddie\nHarriett\nJeannine\nKaye\nKelly\nLeona\nLila\nLottie\nNelda\nOllie\nOra\nPattie\nPolly\nRonda\nShelby\nTonia\nAntionette\nBettie\nCarlene\nCharlie\nCherry\nChris\nClarissa\nDebby\nDeena\nDiann\nElouise\nEstella\nEtta\nFelecia\nFelicia\nGilda\nJacquline\nJewel\nJodi\nKarin\nLeila\nLora\nMay\nMyrna\nMyrtle\nNatalie\nNeva\nNola\nPatrica\nPearl\nPeggie\nSuzette\nTonya\nTrudy\nValeria\nBenita\nBennie\nBettye\nBeverley\nBobbi\nCamille\nClarice\nDelilah\nDollie\nEdwina\nEffie\nElena\nEliza\nFannie\nFay\nGay\nGlinda\nIsabel\nJenifer\nJerry\nJocelyn\nJoe\nKatrina\nKitty\nLavern\nLea\nLeola\nLorene\nLucretia\nMadeline\nMarilynn\nMeredith\nMichael\nNanette\nOla\nRobert\nRosemarie\nRoxann\nShari\nSondra\nStacey\nTommie\nValorie\nZandra\nArleen\nBarbra\nBethany\nBeulah\nBobby\nCallie\nCharleen\nCharmaine\nCheryll\nColette\nCornelia\nDanielle\nDeirdre\nDelia\nDenice\nElisa\nEster\nEula\nEvangeline\nEve\nFrancina\nGeorge\nGeorgina\nGreta\nGretchen\nHelene\nIlene\nJacalyn\nJames\nJannette\nJeanine\nKathrine\nKristi\nLesa\nLetha\nLonnie\nLoretha\nLouvenia\nLu\nMarcella\nMatilda\nMillie\nPam\nPandora\nRae\nRandi\nRenita\nRuthie\nSebrina\nSharlene\nSheron\nSophia\nTheodora\nVernell\nWillene\nYasmin\nAlfredia\nAlisa\nAllie\nAna\nAntonia\nArnita\nAthena\nBambi\nBeryl\nCamilla\nCecile\nChristie\nClementine\nCleo\nDarby\nDeana\nDebrah\nDenese\nDinah\nFran\nFrancis\nFreida\nGenevieve\nGeorgette\nGinny\nGlenna\nGwyn\nHannah\nHettie\nIrish\nIva\nJacqulyn\nJanine\nJanna\nJoellen\nJohanna\nJohn\nJosie\nJoycelyn\nJulianne\nJuliet\nKathe\nKris\nKristie\nKristina\nKristine\nLaureen\nLavonne\nLawana\nLelia\nLesley\nLibby\nLizzie\nLorena\nLue\nMabel\nMara\nMargarita\nMarta\nMegan\nMelodie\nMelonie\nMerrie\nMillicent\nMissy\nMollie\nMuriel\nNikki\nPamella\nPennie\nRosalee\nSabrena\nSaundra\nSelina\nSherrill\nStarr\nSydney\nTeena\nTerese\nThomasina\nTony\nTrina\nValencia\nVelda\nVickey\nWilhelmina\nWillette\nZelda\nMary\nDeborah\nLinda\nPatricia\nDebra\nSusan\nCynthia\nBarbara\nKaren\nSharon\nBrenda\nPamela\nSandra\nDonna\nCheryl\nNancy\nCarol\nKathy\nDiane\nCarolyn\nTeresa\nElizabeth\nShirley\nJanet\nJanice\nWanda\nJoyce\nBetty\nGloria\nBeverly\nRobin\nMargaret\nKathleen\nCatherine\nLisa\nDenise\nDorothy\nMartha\nTheresa\nRebecca\nDebbie\nJudy\nGail\nBonnie\nLaura\nCathy\nGwendolyn\nAngela\nKathryn\nJo\nSheila\nPhyllis\nSherry\nConnie\nPaula\nJacqueline\nRose\nJudith\nKim\nKatherine\nMarilyn\nVirginia\nDarlene\nRhonda\nVicki\nValerie\nLynn\nPeggy\nFrances\nKimberly\nTina\nJulie\nTerry\nAnita\nDiana\nAlice\nVivian\nHelen\nAnn\nJennifer\nSarah\nTerri\nVictoria\nYvonne\nCindy\nDoris\nSylvia\nChristine\nAnnie\nVickie\nEvelyn\nGlenda\nStephanie\nRuth\nSuzanne\nAnnette\nJulia\nElaine\nLeslie\nJane\nJoan\nMelanie\nMichelle\nEllen\nBelinda\nRita\nCharlene\nMarsha\nVanessa\nSheryl\nLaurie\nJoy\nCharlotte\nDawn\nJean\nLoretta\nMaria\nMarcia\nDebora\nMarie\nRuby\nWendy\nJuanita\nSally\nAudrey\nAndrea\nAnne\nCarla\nMelissa\nAnna\nJan\nLori\nRenee\nMichele\nNorma\nRoberta\nConstance\nMelody\nMildred\nDianne\nJeanne\nRegina\nMelinda\nRosa\nSabrina\nShelia\nDelores\nToni\nCassandra\nJill\nLois\nVeronica\nEdith\nKay\nJacquelyn\nHolly\nLorraine\nWillie\nLynda\nSue\nGayle\nPenny\nPriscilla\nGeraldine\nLynne\nSara\nGladys\nLillian\nCarrie\nEmma\nJoanne\nLouise\nJeanette\nApril\nJanis\nColleen\nEdna\nEthel\nEva\nJackie\nCandace\nGrace\nPatsy\nPatti\nMaureen\nSheree\nCarmen\nClara\nDeloris\nEileen\nLee\nPaulette\nLucy\nMarjorie\nMonica\nYvette\nBeth\nLillie\nFaye\nIrene\nJoni\nVera\nJune\nAmy\nJosephine\nSheri\nSherri\nGina\nIris\nJoann\nMarion\nMarlene\nMiriam\nClaudia\nHarriet\nMarian\nRoxanne\nGale\nRosalind\nTanya\nDana\nEsther\nVelma\nBetsy\nBobbie\nCherie\nElla\nJohnnie\nLydia\nArlene\nBeatrice\nBecky\nJanie\nJeannie\nMattie\nEmily\nMargie\nRosalyn\nRosemary\nSherrie\nBernice\nHazel\nMae\nNina\nSandy\nVicky\nEleanor\nSusie\nTracy\nDaisy\nNaomi\nTeri\nAlma\nCarole\nChristina\nErnestine\nGeorgia\nGinger\nMaxine\nNora\nShelley\nYolanda\nCandy\nLou\nMarianne\nPauline\nRamona\nCaroline\nCecilia\nDale\nDesiree\nKatie\nLucinda\nPatty\nRobyn\nThelma\nAlicia\nAlthea\nCheri\nCrystal\nIda\nJeannette\nLynette\nVerna\nBertha\nClaire\nJenny\nLaurel\nLeigh\nLucille\nRachel\nSharron\nBonita\nFrancine\nJody\nKarla\nMinnie\nAmanda\nBillie\nDoreen\nFlora\nFlorence\nFrankie\nGeneva\nHilda\nJamie\nJennie\nJeri\nLaverne\nShannon\nAlfreda\nBessie\nCathleen\nCelia\nDianna\nFaith\nGwen\nHattie\nNadine\nRosetta\nTerrie\nTracey\nWilma\nAmelia\nAngelia\nAva\nDolores\nDora\nEarnestine\nEunice\nFannie\nJessie\nKelly\nLula\nMargo\nMarla\nMindy\nMona\nMyra\nValarie\nGay\nJayne\nKathi\nPatrice\nTonya\nAntoinette\nCandice\nCora\nDeanna\nEula\nKatrina\nLenora\nMamie\nNatalie\nOlivia\nRuthie\nSonia\nCeleste\nEloise\nErma\nLeah\nMarguerite\nMarva\nMerry\nNellie\nReba\nSallie\nStacey\nUnknown\nAgnes\nCecelia\nInez\nJannie\nLora\nLorene\nMaggie\nMalinda\nMolly\nNettie\nRobbin\nRonda\nRosie\nStacy\nVelda\nBernadette\nChristy\nDiann\nHeidi\nKimberley\nLauren\nLeola\nMillie\nNanette\nPearl\nRena\nShari\nShawn\nSonya\nStella\nSuzan\nValeria\nAlberta\nEssie\nIna\nJessica\nKarin\nKathie\nLena\nMitzi\nRobbie\nTrudy\nAlisa\nAvis\nBlanche\nCathryn\nChandra\nCheryle\nDella\nDixie\nEtta\nFelicia\nHarriett\nJana\nKerry\nLeesa\nLela\nLoraine\nLorna\nLorrie\nLuanne\nNita\nPearline\nRoslyn\nSaundra\nSuzette\nViola\nWinifred\nBettye\nCaryl\nClaudette\nFay\nFelecia\nFreda\nGeorgette\nHenrietta\nJanelle\nJewel\nJoanna\nJocelyn\nLeona\nLola\nLorie\nLucia\nMable\nMelodie\nMercedes\nPatrica\nPolly\nQueen\nRandi\nRene\nSonja\nTamara\nTherese\nAda\nAdrienne\nAllison\nAngelina\nAngeline\nBridget\nCathrine\nDaphne\nDebrah\nDena\nDenice\nDoretha\nDorthy\nElise\nEstella\nEve\nGenevieve\nJames\nJanine\nLuann\nMarcie\nMelba\nOlga\nPat\nRetha\nSondra\nSusanne\nTara\nTrina\nVernell\nViolet\nBambi\nBenita\nCharlie\nDarla\nDebby\nDee\nDeena\nEdwina\nElisa\nElouise\nEugenia\nFran\nFreddie\nGreta\nHannah\nHeather\nIrma\nJanette\nJeanie\nJeannine\nJerry\nJoe\nJuliet\nKaye\nKitty\nLauri\nLavern\nLila\nMadeline\nMargret\nMarilynn\nNona\nOllie\nPam\nRobert\nRutha\nSharlene\nValorie\nWilla\nZelda\nZelma\nAdele\nAntionette\nBette\nCamille\nCaren\nCassie\nCharles\nCherry\nClaretha\nDaryl\nDeidre\nDinah\nEarlene\nElena\nFrancina\nGracie\nHope\nIra\nIsabel\nIva\nJerri\nJodi\nKandy\nKari\nKaron\nKatharine\nKimberlee\nLana\nLawanna\nLoretha\nLucretia\nMarcella\nMay\nMelva\nMollie\nMyrna\nNannette\nNell\nPattie\nRenita\nRochelle\nRonnie\nSerena\nShelby\nShelly\nSherie\nShirlene\nSybil\nTonie\nVernetta\nVoncile\nVonda\nAdrianne\nAida\nAlbertha\nAlfredia\nAngel\nAnthony\nBernadine\nBeverley\nBobbi\nCathie\nChris\nCleo\nColette\nDanita\nDolly\nDorothea\nDottie\nEddie\nFrancis\nGayla\nGertrude\nGilda\nGlenna\nGlynis\nGussie\nHarriette\nIdella\nIlene\nKaryn\nKate\nKristina\nLottie\nMarcy\nMarta\nMavis\nMuriel\nMyrtice\nMyrtle\nNena\nPamala\nPearlie\nPeggie\nPenelope\nRebekah\nRoxann\nScarlett\nSelma\nSheena\nTangela\nTeena\nWilliam\nAlana\nAlison\nAlyce\nAna\nAngie\nBeulah\nBobby\nBridgett\nBunny\nCandis\nCarey\nCarlene\nCaron\nCharmaine\nClare\nCorinne\nDara\nDebbra\nDedra\nDelia\nDelilah\nDelois\nDenese\nDian\nDona\nDori\nDorinda\nElnora\nElsie\nErin\nFredia\nGaye\nGena\nGerri\nGinny\nGretchen\nHilary\nIvy\nJanell\nJeanine\nJeanna\nJodie\nJohn\nJoycelyn\nJuliana\nJustine\nKathey\nKathrine\nKristine\nLaurette\nLea\nLeanne\nLelia\nLeonora\nLesley\nLissa\nLizzie\nLouvenia\nLuella\nLynnette\nMadonna\nMargarett\nMarietta\nMarisa\nMaryann\nMatilda\nMelonie\nMeredith\nMerri\nMichael\nMimi\nNan\nOpal\nOra\nOuida\nPandora\nPricilla\nPrincess\nReva\nRise\nRosalie\nRoxane\nRoxie\nSadie\nSandi\nSherree\nSydney\nTerese\nTonda\nTonia\nUrsula\nVeda\nVelinda\nVenetia\nVenita\nVerdell\nVernita\nWendi\nWilhelmina\nMary\nLinda\nDeborah\nCynthia\nPatricia\nDebra\nSusan\nKaren\nBarbara\nBrenda\nSharon\nDonna\nSandra\nPamela\nNancy\nCheryl\nKathy\nCarol\nElizabeth\nTeresa\nCarolyn\nCindy\nLisa\nDiane\nJanice\nShirley\nJanet\nRobin\nWanda\nBetty\nTheresa\nCatherine\nBeverly\nJoyce\nGloria\nLaura\nMargaret\nKathleen\nDebbie\nRebecca\nDenise\nJulie\nGail\nMartha\nDorothy\nKim\nCathy\nJudy\nValerie\nVicki\nKatherine\nSheila\nRhonda\nDarlene\nKathryn\nTerri\nKimberly\nSherry\nVirginia\nAngela\nGwendolyn\nPaula\nBonnie\nConnie\nRose\nJacqueline\nSylvia\nPhyllis\nJo\nJudith\nDiana\nHelen\nAnita\nLynn\nTina\nTerry\nMarilyn\nVictoria\nPeggy\nLeslie\nLori\nChristine\nJane\nJennifer\nJoan\nAnn\nEvelyn\nSarah\nVickie\nAlice\nAnnette\nFrances\nBelinda\nGlenda\nLaurie\nSheryl\nCharlotte\nRuth\nSuzanne\nJulia\nJean\nAnnie\nCharlene\nMichelle\nYvonne\nVivian\nElaine\nMarie\nRita\nMaria\nEllen\nStephanie\nTammy\nDoris\nAnne\nVanessa\nLoretta\nDawn\nCarla\nRegina\nMelanie\nJan\nMarsha\nAmy\nAudrey\nMichele\nRenee\nJoy\nAndrea\nDelores\nAnna\nHolly\nJuanita\nMelinda\nMelody\nWendy\nSally\nGeraldine\nJacquelyn\nMarcia\nNorma\nRoberta\nRuby\nSara\nVeronica\nCassandra\nDianne\nJeanette\nJeanne\nMelissa\nConstance\nPenny\nDana\nCarrie\nTracy\nBecky\nLorraine\nJoann\nPriscilla\nShelia\nSue\nLillian\nMildred\nToni\nRosa\nJill\nDebora\nLillie\nVicky\nEdith\nJackie\nSherri\nLouise\nLynda\nEdna\nGayle\nEva\nMarian\nGina\nJoanne\nPatti\nIrene\nKelly\nLynne\nMaureen\nSusie\nBobbie\nChristina\nKay\nThelma\nWillie\nCarmen\nElla\nLee\nMarion\nSandy\nBeth\nLydia\nMarjorie\nTanya\nGeorgia\nJanis\nVera\nFaye\nGladys\nJune\nPatsy\nRachel\nClaudia\nGinger\nJoni\nLois\nMargie\nPatty\nEmma\nGrace\nRamona\nCandace\nColleen\nMonica\nPaulette\nTeri\nMyra\nNina\nSabrina\nSheri\nSherrie\nVelma\nApril\nBernice\nCecelia\nPam\nGale\nEileen\nJanie\nMarlene\nMarianne\nRosemary\nCandy\nMaxine\nMiriam\nSheree\nAlma\nClara\nIris\nJosephine\nUnknown\nYolanda\nAlicia\nBeatrice\nBertha\nJamie\nJeannie\nTamara\nCheri\nCrystal\nDeloris\nHazel\nIda\nMattie\nTerrie\nWilma\nCaroline\nFelicia\nJenny\nRoxanne\nBonita\nCathleen\nEthel\nGeneva\nLauren\nLucille\nLucinda\nNatalie\nNora\nPauline\nSonia\nArlene\nDianna\nHeidi\nJohnnie\nKatie\nKatrina\nLucy\nTracey\nAlberta\nAngelia\nBernadette\nEleanor\nEmily\nEsther\nMae\nPatrice\nAlthea\nAntoinette\nKarla\nMarla\nMona\nCora\nErnestine\nFlorence\nJeanie\nJessie\nLou\nValarie\nBetsy\nDale\nErin\nFrancine\nMinnie\nPatrica\nRobyn\nRosalind\nStella\nBernadine\nCecilia\nChristy\nClaire\nDaisy\nDolores\nGwen\nJody\nLaverne\nLenora\nLola\nOlivia\nShawn\nTami\nTammie\nVerna\nVikki\nAdrienne\nCarole\nFannie\nJayne\nJeannette\nLavern\nLora\nSonja\nAmanda\nAva\nBessie\nCherie\nDoreen\nFaith\nHarriet\nHattie\nJanette\nSharron\nBillie\nDesiree\nElsie\nHilda\nMaggie\nPat\nRuthie\nShelley\nViolet\nElisabeth\nElouise\nFelecia\nFlora\nFrankie\nJoanna\nJodi\nLena\nLynette\nRene\nShannon\nSonya\nTonya\nAlfreda\nBlanche\nDora\nErma\nGay\nInez\nLaurel\nRobbie\nRosalyn\nRosetta\nRoslyn\nTara\nValorie\nYvette\nAlison\nAmelia\nChris\nCindi\nDeanna\nDella\nEula\nGertrude\nGracie\nHeather\nJennie\nLeah\nLeigh\nLula\nMarguerite\nMelodie\nMindy\nNadine\nNanette\nNaomi\nRonda\nAda\nAllison\nBenita\nDorothea\nEarnestine\nKatharine\nLucretia\nMamie\nMolly\nQueen\nRosie\nSallie\nShari\nShelly\nSuzette\nCheryle\nDaphne\nDarla\nDiann\nDorinda\nEunice\nHope\nJana\nJerri\nJuliet\nKarin\nLarry\nMarcella\nPenelope\nPolly\nRena\nRosemarie\nSaundra\nSondra\nStacey\nStacy\nSuzan\nSybil\nTrudy\nAgnes\nAvis\nBeryl\nBridget\nCaren\nCelia\nCherry\nDanita\nDelia\nEarline\nGilda\nIrma\nIvy\nKerry\nKristina\nLorna\nMelba\nNellie\nPearl\nPearlie\nReba\nValeria\nVickey\nCamille\nChristie\nClaudette\nDanette\nDebby\nDebi\nDee\nDenice\nDixie\nElnora\nFreda\nHarriett\nJannie\nJessica\nJohn\nKathie\nKimberlee\nKimberley\nLeisa\nLorrie\nLuann\nMalinda\nMargo\nMaryann\nMichael\nRenita\nRobbin\nSherree\nVernell\nViola\nWilliam\nWinifred\nAna\nAngie\nBette\nBettye\nCandice\nCeleste\nDena\nDolly\nDoretha\nEarlene\nFran\nFreida\nGreta\nGretchen\nJames\nJanine\nJeannine\nJerry\nKaron\nLawanda\nLesley\nMyrtle\nNona\nOllie\nPhoebe\nSerena\nSharlene\nShelby\nTherese\nVelda\nBettie\nBeverley\nCathryn\nCharles\nClarice\nCornelia\nDebrah\nDeena\nDinah\nEartha\nEloise\nEssie\nEtta\nEve\nFrancis\nGeorgette\nGinny\nJeri\nJuliana\nKathi\nKristin\nLeola\nLila\nLorene\nLynnette\nMadeline\nMarilynn\nMarina\nMarva\nMelva\nMerry\nNena\nNettie\nNola\nOra\nPennie\nRhoda\nRonnie\nRoxie\nShirlene\nSusanna\nTena\nTia\nTracie\nVernita\nAlbertha\nAlva\nBeulah\nCamilla\nCandi\nCelestine\nChandra\nDarby\nDorthy\nEddie\nEdwina\nElise\nGeri\nHenrietta\nIdella\nIla\nIna\nIva\nJocelyn\nJodie\nJosie\nJoycelyn\nKarol\nKathrine\nKitty\nKristy\nLadonna\nLana\nLauri\nLeila\nLizzie\nLoraine\nLorena\nLottie\nMable\nMargarett\nMatilda\nMelonie\nNannette\nNita\nReva\nRobert\nRutha\nSpring\nTeressa\nTommie\nTraci\nTrina\nZelda\nZelma\nAdele\nAlexis\nAlisa\nAltamese\nAngel\nAnnetta\nAntonia\nArleen\nBambi\nBarbra\nBernita\nBettina\nCarroll\nCathi\nCathie\nClare\nClaretha\nClementine\nColette\nDavid\nDina\nElease\nFay\nHelena\nIsabel\nJacki\nJanelle\nJanna\nJewel\nJoe\nJudi\nJulianne\nKaryn\nKaye\nKenneth\nKristie\nLaureen\nLeanne\nLesa\nLessie\nLuanne\nLyn\nMarcy\nMari\nMarisa\nMaritza\nMelvina\nMeredith\nNelda\nNeva\nOla\nPattie\nSandi\nSelma\nStarr\nTamera\nTerese\nValencia\nWilhelmina\nWillette\nAbbie\nAbigail\nAimee\nAlfredia\nAnastasia\nAthena\nBobbi\nBridgett\nCallie\nCara\nCarlene\nCarlotta\nCaron\nCasandra\nCatharine\nCheryll\nChristi\nCinda\nDebbra\nDeirdre\nEdie\nEldora\nElisa\nElsa\nErica\nEugenia\nEvon\nFlossie\nFrancina\nGaye\nGena\nGisele\nHelene\nHester\nHolli\nIlene\nIngrid\nIra\nJacquelin\nJacquline\nJaye\nJeanine\nJenifer\nJewell\nJudie\nKandy\nKathyrn\nKaty\nKelley\nKerri\nLanette\nLarita\nLea\nLela\nLelia\nLetha\nLetitia\nLibby\nLindy\nLoretha\nLorie\nLorri\nLu\nLucile\nMadelyn\nMargarita\nMarietta\nMarta\nMaurine\nMerrie\nMimi\nMollie\nMyrna\nMyrtis\nNiki\nNoreen\nOlga\nOpal\nOphelia\nRae\nRandi\nRebekah\nRenae\nRetha\nRochelle\nRona\nRoseann\nRoselyn\nSherilyn\nSheron\nSherron\nSindy\nStacie\nSusanne\nSuzy\nTammi\nTheressa\nWinnie\nZoe\nMary\nPatricia\nLinda\nCynthia\nDeborah\nSusan\nDebra\nKaren\nBarbara\nDonna\nBrenda\nPamela\nSandra\nCheryl\nSharon\nKathy\nLisa\nNancy\nCarol\nTeresa\nElizabeth\nDebbie\nDiane\nJanice\nCindy\nCarolyn\nTheresa\nBeverly\nLaura\nJulie\nRobin\nShirley\nJanet\nKathleen\nCatherine\nJoyce\nDenise\nCathy\nMargaret\nWanda\nGloria\nRebecca\nBetty\nJudy\nValerie\nPeggy\nTammy\nDarlene\nKimberly\nDorothy\nLori\nRhonda\nAngela\nSheila\nKim\nKathryn\nTerri\nKatherine\nTina\nMartha\nPhyllis\nBonnie\nRose\nPaula\nGail\nVicki\nLeslie\nSherry\nAnnette\nConnie\nDiana\nTerry\nGwendolyn\nJacqueline\nJennifer\nLynn\nMarilyn\nMichelle\nVirginia\nChristine\nSylvia\nAnn\nAnita\nHelen\nJo\nBelinda\nAlice\nJudith\nStephanie\nFrances\nSheryl\nGlenda\nSarah\nSuzanne\nJulia\nElaine\nVickie\nVictoria\nVivian\nJoan\nJane\nRuth\nYvonne\nCharlotte\nMaria\nEvelyn\nDoris\nLaurie\nRita\nDawn\nEllen\nRenee\nRegina\nVanessa\nJean\nMarie\nCharlene\nJoy\nMelanie\nAnna\nLoretta\nBeth\nWendy\nPatti\nPenny\nAmy\nSally\nAnne\nAnnie\nToni\nAudrey\nMichele\nMelissa\nJoanne\nRosa\nJill\nKelly\nMelinda\nHolly\nVeronica\nCarrie\nMarcia\nShelia\nJuanita\nDianne\nJackie\nMarsha\nSue\nBecky\nJeanne\nSara\nConstance\nMelody\nPam\nAndrea\nPriscilla\nCassandra\nJeanette\nVicky\nCarla\nSherri\nTracy\nLorraine\nJacquelyn\nGina\nJune\nRoberta\nLee\nRuby\nMyra\nTamara\nColleen\nDana\nLillian\nLynda\nNorma\nJoann\nJan\nLois\nTeri\nApril\nDelores\nSusie\nCarmen\nKay\nSabrina\nDebora\nGeraldine\nGrace\nLouise\nCarole\nFaye\nMarian\nSheri\nMaureen\nMildred\nPatty\nSandy\nVera\nEdith\nEdna\nJody\nClaudia\nEsther\nGladys\nLydia\nTami\nBobbie\nMonica\nHeidi\nIris\nJosephine\nMargie\nYolanda\nBeatrice\nEmma\nLillie\nRachel\nWillie\nAlicia\nJoni\nKarla\nMaxine\nPatrice\nTanya\nThelma\nEthel\nEva\nGinger\nMarlene\nNatalie\nEileen\nGayle\nHazel\nMarianne\nPatsy\nPaulette\nRosemary\nEmily\nIrene\nJanie\nMarion\nSherrie\nStacy\nChristina\nJeannie\nKatrina\nMarjorie\nTammie\nArlene\nCandy\nCecelia\nGeorgia\nRamona\nFrankie\nSonia\nChristy\nClara\nJanis\nLenora\nMiriam\nAmanda\nBetsy\nCrystal\nDeanna\nDora\nDoreen\nFlorence\nGale\nHarriet\nJodi\nLaverne\nLynne\nNora\nRosalind\nStacey\nDianna\nDolores\nLynette\nTracey\nYvette\nCaroline\nCheri\nFelicia\nJeanie\nJohnnie\nShannon\nSonya\nTerrie\nAllison\nBertha\nBonita\nDaisy\nEunice\nShelley\nValarie\nVelma\nBernice\nCecilia\nChris\nDeloris\nLaurel\nLauren\nLucinda\nMattie\nNina\nShari\nAlison\nAntoinette\nCandace\nElla\nGeneva\nJamie\nJana\nLena\nLucy\nPat\nPauline\nRobyn\nSonja\nTherese\nValeria\nAdrienne\nHilda\nJayne\nJeannette\nKerry\nPenelope\nRosetta\nShelly\nAlisa\nDaphne\nDella\nFrancine\nGwen\nIda\nJenny\nKathi\nMarla\nBillie\nCarlene\nCathleen\nEleanor\nFaith\nGay\nJennie\nLora\nLucille\nNita\nRosalyn\nRoxanne\nAlfreda\nDanette\nErin\nHeather\nKelley\nMae\nMarguerite\nMinnie\nMolly\nTonya\nValencia\nWilma\nAngelia\nDelphine\nDena\nEarnestine\nHenrietta\nJessie\nKelli\nLeigh\nNellie\nOlga\nWinifred\nCeleste\nChristie\nDebby\nDesiree\nFlora\nInez\nJeri\nJewel\nKimberley\nLou\nLula\nMaryann\nNadine\nNaomi\nReba\nRena\nShawn\nTammi\nCherry\nJoanna\nLea\nLola\nMaggie\nMamie\nMona\nTamra\nTara\nTonia\nViolet\nAda\nAlma\nAva\nCandice\nClaire\nDale\nErnestine\nHope\nIrma\nKatie\nLesa\nMalinda\nMargo\nMelodie\nOlivia\nRene\nRobbie\nRochelle\nRonda\nAlthea\nBernadette\nChandra\nCherie\nClaudette\nColeen\nCora\nDoretha\nEssie\nFay\nGracie\nHarriett\nIngrid\nJeannine\nJodie\nMarcella\nMelba\nMitzi\nOra\nSandi\nUnknown\nValorie\nVerna\nAlberta\nAngie\nAntionette\nBernadine\nCheryle\nDee\nHattie\nIvy\nJames\nJerri\nJewell\nKathrine\nKellie\nLeah\nMercedes\nPattie\nPolly\nRuthie\nSelena\nSharron\nStella\nTrina\nVelda\nAgnes\nBessie\nCelia\nDarla\nDolly\nElouise\nFelecia\nGretchen\nJocelyn\nLana\nLila\nLizzie\nLuann\nLuanne\nMable\nMindy\nSheree\nSusanne\nSuzette\nTrudy\nVernita\nAlecia\nBenita\nBettye\nBobbi\nCathie\nCorine\nDiann\nDinah\nDollie\nDona\nElnora\nElsie\nErma\nEstella\nGeorgette\nGertrude\nJerry\nJessica\nLauri\nLavern\nLeisa\nLeola\nMadeline\nMarva\nNan\nRachelle\nTangela\nViola\nAlfredia\nAmelia\nAnnetta\nAvis\nBettie\nCindi\nColette\nDarleen\nDeana\nDenice\nDixie\nEarline\nEffie\nElisabeth\nEugenia\nFern\nFreda\nHelene\nJuliette\nKris\nKristina\nLawanda\nLeatha\nLeila\nLibby\nLucretia\nMarina\nMarta\nOllie\nPatrica\nRobbin\nRosie\nRoslyn\nSuzan\nSybil\nTamela\nTricia\nVickey\nVonda\nAbigail\nAdrian\nAllyson\nAngelita\nBambi\nBeulah\nCandi\nClare\nDanita\nDara\nDarcy\nDorothea\nEdwina\nEloise\nFreddie\nFreida\nGerri\nGinny\nGreta\nIlene\nJanelle\nJanette\nKatharine\nKristin\nLadonna\nLindy\nMarisa\nMeredith\nMerri\nMerry\nMyrna\nNanette\nPamala\nSallie\nSelina\nShelby\nSondra\nTania\nTraci\nAngel\nAngelina\nArleen\nBette\nBeverley\nBonny\nBridget\nBridgett\nBridgette\nCathryn\nCecile\nClaretha\nClarice\nCornelia\nDarby\nDebi\nDeena\nDelia\nDottie\nElise\nEula\nGenevieve\nGeorge\nJannie\nJuliet\nKarol\nKaron\nKrista\nLavonne\nLessie\nLetitia\nLorie\nLorna\nLorrie\nLouann\nMari\nMaritza\nMayra\nMichael\nOdessa\nOla\nPeggie\nRandi\nRobert\nRoxie\nSadie\nScarlett\nSheron\nSophia\nTeena\nVernell\nWilliam\nAdele\nAdrianne\nAletha\nAlexis\nAna\nAndra\nArnita\nAthena\nBobby\nCamilla\nCamille\nCassie\nCelestine\nCorlis\nCristina\nDeanne\nDebrah\nDelilah\nDina\nDorene\nEddie\nElisa\nErica\nEstelle\nEvette\nEvon\nFlorine\nGaye\nGeorgie\nGilda\nGisele\nJanine\nJenifer\nJohn\nJolene\nJosie\nJulianne\nKaran\nKari\nKathie\nKaye\nKimberlee\nKitty\nKristie\nLatanya\nLeona\nLily\nLoren\nLorene\nLottie\nLyn\nLynnette\nMara\nMarcy\nMegan\nMuriel\nMyrtle\nNeva\nNola\nPearl\nPearlie\nQueen\nRenita\nRosalie\nRosemarie\nRoxann\nSelma\nSharlene\nSherron\nSilvia\nVenetia\nWilda\nWilla\nZenobia\nAlbertha\nAlexandra\nAlyce\nAngeline\nAntonia\nBarbra\nBettina\nCary\nCasandra\nCharlie\nCheryll\nCorinne\nCorrine\nDamaris\nDannette\nDaryl\nDavid\nDebbi\nDeedee\nElena\nElvira\nEtta\nFannie\nGlenna\nGriselda\nHarriette\nIva\nJanna\nJaye\nJerilyn\nJerrie\nJohanna\nJudi\nKarin\nKatheryn\nKathey\nKristi\nKristy\nKrystal\nLanita\nLarry\nLeann\nLizabeth\nLoraine\nMandy\nMarcelle\nMargret\nMarilee\nMarti\nMechelle\nMickey\nMillicent\nMiranda\nNettie\nNicole\nPhylis\nRhoda\nRosanne\nRoxane\nSaundra\nSerena\nSheena\nSherrell\nShirlene\nSusanna\nSuzanna\nSuzy\nTamera\nTena\nTommie\nTracie\nTwila\nVannessa\nVikki\nMary\nCynthia\nLinda\nDonna\nPatricia\nSusan\nDebra\nDeborah\nKaren\nBarbara\nBrenda\nSharon\nLisa\nPamela\nSandra\nCheryl\nKathy\nDebbie\nElizabeth\nTeresa\nNancy\nCarol\nCindy\nCarolyn\nDiane\nRobin\nTammy\nBeverly\nLaura\nJanet\nJanice\nDenise\nCathy\nTheresa\nWanda\nKimberly\nJulie\nShirley\nAngela\nLori\nValerie\nRhonda\nBetty\nSheila\nCatherine\nKathleen\nRebecca\nTina\nKim\nJudy\nMargaret\nTerri\nJoyce\nGloria\nSherry\nBonnie\nVicki\nMichelle\nConnie\nPeggy\nGail\nMartha\nAnnette\nPhyllis\nDarlene\nDawn\nKatherine\nDiana\nDorothy\nVirginia\nKathryn\nPaula\nTerry\nLeslie\nJennifer\nRose\nChristine\nLynn\nGwendolyn\nLaurie\nSuzanne\nWendy\nAnn\nJacqueline\nAnita\nKelly\nSylvia\nHelen\nBelinda\nAnna\nMarie\nMarilyn\nStephanie\nVanessa\nRita\nBeth\nCharlotte\nJoan\nMelanie\nSarah\nAlice\nMaria\nEllen\nFrances\nElaine\nLoretta\nAmy\nJudith\nVivian\nGlenda\nRegina\nVickie\nJean\nJulia\nVictoria\nMelissa\nSheryl\nJane\nJo\nAndrea\nGina\nMichele\nEvelyn\nJill\nRuth\nYvonne\nTracy\nAnne\nPam\nShelia\nJoy\nPenny\nAnnie\nCassandra\nMarcia\nRenee\nToni\nMelinda\nHolly\nJackie\nTami\nVeronica\nAudrey\nCarla\nCharlene\nJoanne\nJoann\nConstance\nMelody\nRuby\nCarrie\nDana\nDoris\nSally\nLorraine\nSherri\nBecky\nDelores\nPriscilla\nSandy\nJacquelyn\nLois\nPatti\nPatty\nVicky\nDianne\nMarsha\nSue\nJan\nNorma\nJeanette\nCarmen\nJeanne\nJuanita\nColleen\nTanya\nLynda\nSara\nRosa\nTamara\nEileen\nLouise\nMyra\nRoberta\nApril\nArlene\nJamie\nLillian\nMarjorie\nEva\nMonica\nSabrina\nEdith\nFaye\nLillie\nTeri\nYolanda\nGrace\nTammie\nWillie\nBetsy\nCrystal\nNatalie\nFelicia\nJune\nAlicia\nEdna\nNina\nRosemary\nLee\nMildred\nGeraldine\nSusie\nEmma\nAllison\nBobbie\nHeidi\nKay\nLydia\nMaureen\nEmily\nJeannie\nRachel\nStacy\nCheri\nKatrina\nMarion\nCarole\nDebora\nEleanor\nGayle\nGwen\nRamona\nSonia\nVera\nMargie\nSherrie\nSonya\nRobyn\nTerrie\nIrene\nIris\nLynne\nMona\nRosalind\nSonja\nAmanda\nGinger\nJohnnie\nMaxine\nMiriam\nPatrice\nShelley\nSheri\nTracey\nYvette\nEsther\nShari\nJenny\nJoni\nKathi\nKatie\nPatsy\nAlison\nDeanna\nLucinda\nPauline\nShelly\nDora\nElla\nEthel\nGay\nGeorgia\nGladys\nJosephine\nMarian\nPaulette\nCaroline\nCecelia\nClaudia\nMarianne\nAlma\nChristina\nDolores\nFlorence\nHarriet\nHazel\nMae\nMarlene\nNora\nThelma\nCherie\nIda\nKarla\nLauren\nRoxanne\nStacey\nAna\nBernadette\nCandace\nChristy\nErin\nErnestine\nLaverne\nLeah\nPat\nRene\nTonya\nValarie\nAngelia\nAntoinette\nBillie\nClara\nDaisy\nDella\nDeloris\nDesiree\nLeigh\nLucy\nDianna\nEunice\nJanis\nJennie\nJeri\nKelli\nLou\nMinnie\nRosalyn\nShawn\nCandy\nDale\nFaith\nFrancine\nHope\nMattie\nValeria\nAlfreda\nAngie\nBernice\nBonita\nCelia\nDoreen\nFelecia\nGale\nJeannette\nLola\nLynette\nTherese\nClaire\nHeather\nJessica\nLorrie\nMarcy\nRonda\nShannon\nSheree\nSophia\nVelma\nBridgette\nCecilia\nGeneva\nHattie\nHenrietta\nJody\nLora\nPenelope\nRobbie\nVerna\nBeatrice\nBertha\nBridget\nDena\nElisa\nJessie\nJodi\nKelley\nLeanne\nMarguerite\nNadine\nOllie\nRena\nWilma\nAlberta\nDebby\nFlora\nLauri\nMindy\nOlivia\nShelby\nTangela\nTara\nTraci\nAlisa\nBessie\nChris\nFrankie\nGigi\nJanie\nMarcella\nNanette\nNellie\nPolly\nRosemarie\nRosetta\nRosie\nRuthie\nSusanne\nTrina\nTrudy\nZelda\nAntionette\nCindi\nDaphne\nDarla\nDebi\nDelphine\nJeanie\nJoanna\nKatharine\nKimberley\nKristin\nLiz\nMalinda\nMamie\nMarla\nNaomi\nRobbin\nSelena\nSondra\nSuzette\nTammi\nTamra\nAmelia\nAva\nBobbi\nDeena\nGinny\nGracie\nGretchen\nIrma\nJana\nJanine\nJayne\nJeanine\nKerry\nKimberlee\nKristine\nLadonna\nLana\nLaurel\nLenora\nMaryann\nQueen\nSaundra\nSharron\nStella\nAda\nAdrienne\nCathleen\nClaudette\nDanette\nDolly\nElisabeth\nGeorgette\nJerri\nJohn\nLeila\nLuz\nMadeline\nMerry\nPatrica\nRoslyn\nTamela\nTricia\nWinifred\nAlthea\nAmber\nAvis\nCathie\nCeleste\nCherry\nCora\nDoretha\nElnora\nFreda\nIlene\nJoe\nKarin\nKathie\nLena\nLetha\nLula\nMarva\nMitzi\nMonique\nReba\nValencia\nAgnes\nBrigitte\nCharmaine\nCheryle\nChrista\nDee\nDeirdre\nErma\nEugenia\nFreida\nGreta\nHarriett\nHelene\nJeanna\nJudi\nKaran\nKitty\nLawanda\nLea\nLorna\nLucille\nNatasha\nSelina\nSuzy\nTamera\nTamie\nVenus\nVickey\nAbigail\nArleen\nBambi\nCarey\nCassie\nCorinne\nDiann\nDona\nDorene\nEarlene\nElise\nEssie\nEve\nGlenna\nIngrid\nIva\nIvy\nJeannine\nJerry\nJewel\nKandi\nKerri\nKrista\nLeola\nLesa\nLessie\nLindy\nLizzie\nLottie\nLuann\nMabel\nMargarita\nMarilynn\nMelodie\nMolly\nMyrna\nNita\nOla\nRenita\nSharlene\nTonia\nTwila\nWilla\nBenita\nCandice\nClaretha\nColette\nDeana\nDebrah\nDeidra\nDixie\nEartha\nEdwina\nGaye\nGerri\nHilda\nJacquelin\nJames\nJanette\nJocelyn\nJulianne\nJuliette\nKaye\nLeona\nLesia\nLiza\nLorene\nLucretia\nMaggie\nMargo\nMarta\nMichael\nNola\nPattie\nPearlie\nRochelle\nRomona\nSheron\nTommie\nTracie\nUnknown\nViola\nAlbertha\nAlecia\nBettye\nBeulah\nCamille\nCarlene\nCarolynn\nCarrol\nCelestine\nCharla\nChristie\nDarline\nDinah\nDorian\nDottie\nEarnestine\nEddie\nElouise\nElsie\nEstelle\nFran\nFrancis\nGayla\nGertrude\nHelena\nInez\nIsabel\nJannie\nJoanie\nJohanna\nKaron\nKris\nKristi\nKristina\nLavern\nLeisa\nLeta\nLyn\nLynnette\nMarietta\nMarisa\nMegan\nMerrie\nMillie\nMissy\nNelda\nOra\nRandy\nSallie\nShirlene\nSusanna\nSybil\nTaryn\nTori\nVonnie\nAdrian\nAllyson\nAndra\nAngel\nBarbra\nBette\nBettie\nBlanche\nCara\nCaron\nCaryn\nClarissa\nDebbi\nDeedee\nDenice\nDina\nDorthy\nElena\nEloise\nElsa\nElvira\nEnid\nEstella\nEtta\nEula\nEvon\nFannie\nFrancina\nGaynell\nGlory\nHarriette\nHester\nJacqulyn\nJodie\nJoetta\nJoycelyn\nJustine\nKarol\nKaryn\nKathrine\nKellie\nKristen\nKristie\nLela\nLesley\nLetitia\nLilly\nLita\nLonnie\nLorie\nMable\nMarci\nMarcie\nMarybeth\nMelba\nMichell\nMollie\nMuriel\nPortia\nRandi\nRetha\nRichard\nRobert\nRoxann\nRoxie\nSammie\nSerena\nShauna\nTania\nTheodora\nValorie\nVeda\nVenita\nVerdell\nViolet\nAimee\nAletha\nAlexandra\nAnnemarie\nBarrie\nBridgett\nCathey\nCathryn\nCecile\nChandra\nChristi\nCollette\nCornelia\nDanna\nDara\nDavid\nDeann\nDedra\nDeidre\nDelia\nDonnie\nDori\nDorothea\nEdie\nEster\nFern\nFreddie\nFredericka\nGenevieve\nGisele\nHannah\nIrish\nJaneen\nJosie\nKari\nKendra\nKenneth\nLatanya\nLaureen\nLauretta\nLila\nLina\nLona\nLoraine\nLorri\nLucile\nMadonna\nMarina\nMay\nMelonie\nMercedes\nMeredith\nMyrtle\nNicole\nOphelia\nPearl\nPennie\nPeri\nPerri\nPrincess\nRae\nRebekah\nSandi\nSherryl\nSheryll\nStarla\nStarr\nSuzan\nTeena\nTerrye\nValery\nVelda\nVernita\nVikki\nWilliam\nZoe\nMary\nDonna\nLinda\nCynthia\nSusan\nPatricia\nLisa\nKaren\nDebra\nSandra\nDeborah\nBrenda\nSharon\nBarbara\nTeresa\nPamela\nCheryl\nKathy\nDebbie\nNancy\nElizabeth\nKimberly\nLaura\nCarol\nRobin\nCindy\nAngela\nTammy\nLori\nJanet\nCarolyn\nDiane\nTheresa\nJanice\nKim\nDenise\nWanda\nBeverly\nTerri\nJulie\nShirley\nTina\nMargaret\nRebecca\nSheila\nValerie\nRhonda\nGloria\nCathy\nSherry\nConnie\nMichelle\nBetty\nKathleen\nCatherine\nDorothy\nJudy\nAnnette\nJoyce\nLaurie\nKelly\nJennifer\nAnita\nDarlene\nBonnie\nDiana\nMartha\nPaula\nVicki\nKathryn\nWendy\nJacqueline\nSuzanne\nVirginia\nGwendolyn\nStephanie\nKatherine\nTerry\nPhyllis\nChristine\nGail\nMelanie\nRose\nPeggy\nTracy\nDawn\nLeslie\nVictoria\nAnn\nAmy\nMarilyn\nMaria\nVickie\nMelissa\nEvelyn\nBelinda\nRegina\nLynn\nRita\nSarah\nSylvia\nJulia\nYvonne\nMarie\nElaine\nHelen\nRuth\nJudith\nCarla\nPenny\nAlice\nCharlotte\nAndrea\nJill\nFrances\nAnne\nSherri\nPam\nRenee\nMelody\nCharlene\nMichele\nGlenda\nVanessa\nLoretta\nBeth\nJackie\nCassandra\nJoy\nAnnie\nGina\nSheryl\nJoan\nJeanette\nJo\nJane\nMelinda\nJoann\nAnna\nAudrey\nSandy\nVeronica\nHolly\nVivian\nDoris\nEllen\nDelores\nToni\nBecky\nJean\nLorraine\nPatti\nShelia\nTammie\nApril\nDana\nJoanne\nCarrie\nPatty\nJan\nLynda\nSabrina\nSonya\nJeanne\nJuanita\nSue\nMarsha\nNorma\nJacquelyn\nRosa\nPriscilla\nRoberta\nTami\nEdna\nJune\nVicky\nAlicia\nJamie\nLydia\nTeri\nDianne\nLee\nSally\nColleen\nMarcia\nTanya\nSheri\nTamara\nConstance\nRuby\nChristina\nDeanna\nCarmen\nEdith\nKatrina\nSara\nFelicia\nYolanda\nGayle\nLillian\nMonica\nShari\nEva\nNatalie\nTracey\nCrystal\nEileen\nEmma\nGeraldine\nLouise\nRosemary\nTonya\nCheri\nJoni\nMarjorie\nMaureen\nRachel\nAngie\nKay\nValarie\nDebora\nFaye\nHeidi\nMildred\nRobyn\nYvette\nGladys\nLillie\nWillie\nGrace\nAllison\nArlene\nLois\nMargie\nNina\nRonda\nClara\nDianna\nLynne\nMiriam\nRamona\nShelly\nSherrie\nSonia\nAlison\nCandy\nErin\nGinger\nIrene\nJeannie\nMarion\nVera\nCaroline\nHazel\nIris\nJody\nLora\nMattie\nMyra\nAngelia\nCarole\nJanine\nMona\nPaulette\nBobbie\nBridget\nJosephine\nLauren\nLorrie\nRoxanne\nDeloris\nHarriet\nJanie\nMarian\nMarlene\nPatrice\nPauline\nRosalind\nSonja\nAmanda\nBetsy\nEmily\nEthel\nGwen\nKatie\nMaxine\nSusie\nTerrie\nThelma\nBeatrice\nCecilia\nClaudia\nJeannette\nRene\nShelley\nStacy\nDora\nJenny\nKarla\nNora\nShannon\nChris\nAntoinette\nFelecia\nGretchen\nMarianne\nAlma\nBernice\nIda\nLucinda\nLucy\nLynette\nNadine\nTara\nVelma\nAna\nBonita\nFrancine\nGeorgia\nJoanna\nJohnnie\nPatsy\nDolores\nElla\nErnestine\nHeather\nJanis\nLorri\nShawn\nWilma\nBertha\nDesiree\nEleanor\nEsther\nJennie\nJodi\nKathi\nLeigh\nRena\nBridgette\nCherie\nChristy\nDebby\nJessie\nKelley\nMarcella\nMinnie\nNaomi\nOlga\nRosetta\nStacey\nTammi\nAlfreda\nBenita\nCeleste\nLauri\nMarla\nTracie\nTrina\nDina\nDoreen\nElisa\nFaith\nFrankie\nGay\nKerry\nLeah\nLorna\nLucille\nMolly\nSuzette\nTraci\nVerna\nAmelia\nBernadette\nCandace\nCecelia\nDarla\nJerri\nLorie\nRobbie\nSondra\nAntionette\nAva\nBrigitte\nDena\nEunice\nKimberley\nLaverne\nLesa\nLucretia\nPat\nRosalyn\nTangela\nAlesia\nDee\nDixie\nEarnestine\nHilda\nIngrid\nJeanie\nJewel\nMae\nOlivia\nRuthie\nSelena\nViola\nAdrienne\nAlisa\nBillie\nCindi\nDaphne\nDeirdre\nGena\nHattie\nJayne\nKellie\nLana\nLena\nLola\nSharron\nTamela\nTonia\nBessie\nCathleen\nCora\nDaisy\nDella\nFlorence\nHope\nJana\nJanette\nJohn\nKelli\nLaurel\nLenora\nLiz\nLuann\nMadeline\nMamie\nMargo\nRosemarie\nStella\nTherese\nValorie\nBridgett\nColette\nDale\nDolly\nElise\nEloise\nGeneva\nJudi\nKarin\nLesia\nMarguerite\nMindy\nMonique\nRenea\nSallie\nSophia\nTrudy\nVickey\nViolet\nWinifred\nAbby\nCelia\nDeana\nDiann\nEssie\nFreda\nHarriett\nKaron\nMarisa\nNellie\nPolly\nQueen\nRandi\nReba\nRhoda\nShelby\nAgnes\nAlthea\nCherry\nChristie\nDelphine\nDinah\nDona\nDoretha\nEarlene\nEdwina\nEugenia\nFay\nGale\nGayla\nGracie\nJeanine\nJeannine\nJeri\nJuliet\nKathie\nKimberlee\nKitty\nLeila\nLou\nLuanne\nMarina\nMarva\nMaryann\nMelodie\nPaige\nPearl\nRosie\nRoslyn\nSharlene\nShellie\nSusanne\nValencia\nAlberta\nCathryn\nClaire\nCornelia\nDanielle\nDeanne\nErma\nGigi\nHenrietta\nInez\nJacquline\nJessica\nLadonna\nLeola\nLeona\nLisha\nNanette\nNelda\nNita\nPatrica\nPearlie\nRenita\nSuzan\nValeria\nVikki\nZelda\nAvis\nBettina\nBlanche\nCheryle\nDeidre\nDelia\nEarline\nEve\nFlora\nGreta\nIsabel\nJannette\nJoanie\nJohanna\nKrista\nKristi\nKristy\nLatanya\nLawanda\nLea\nLorene\nLory\nLula\nLynnette\nMaggie\nMalinda\nMichael\nMitzi\nMyrna\nPamala\nPenelope\nRoxanna\nSelina\nSybil\nTamie\nTeressa\nVenita\nAdele\nAileen\nBambi\nBlanca\nCassie\nCathi\nChandra\nCherri\nChrista\nColeen\nDenice\nDori\nEdie\nElena\nFawn\nIrma\nJannie\nKandi\nKari\nKarrie\nKerri\nLeanne\nMari\nMay\nMelonie\nMelony\nMeredith\nMichell\nRae\nRobbin\nRobert\nRochelle\nSandi\nSheree\nStacie\nTamera\nVenus\nAda\nBobbi\nCaron\nCharmaine\nCherrie\nClare\nClarissa\nClaudette\nDanette\nDarcy\nDebrah\nDedra\nDorinda\nElnora\nEula\nEvette\nFrancina\nGaye\nGeri\nGertrude\nGlenna\nGlinda\nIlene\nIna\nIvy\nJacquelin\nJodie\nJulianna\nKathey\nKeri\nKristina\nLawana\nLourdes\nLyn\nMarcie\nMarilynn\nMarta\nMeg\nMiranda\nMisty\nMuriel\nMyrtle\nNeva\nOllie\nOra\nPhoebe\nRoxane\nSadie\nSheena\nShelli\nSheron\nStarr\nSusanna\nTamra\nToby\nTricia\nVelda\nVernessa\nVernita\nWilliam\nAdrian\nAlexis\nAllyson\nAmber\nAngel\nAnnetta\nAntonia\nBunny\nCandice\nCarey\nCasandra\nClarice\nCorinne\nCorrine\nDayna\nDebi\nDelinda\nDelois\nDorothea\nDottie\nDrusilla\nElisha\nErica\nEstella\nEstelle\nEster\nEtta\nFran\nJames\nJanelle\nJanna\nJeffery\nJewell\nJosie\nJuliette\nKarol\nKristin\nLanita\nLaquita\nLaurette\nLeann\nLela\nLelia\nLesley\nLetha\nLibby\nLinnie\nLoraine\nLoretha\nLottie\nLucia\nLuz\nMandy\nMarietta\nMavis\nMelisa\nMerrie\nMerry\nMimi\nNoreen\nOla\nPortia\nRenae\nRetha\nRosanne\nSabrena\nSherrill\nShirlene\nSidney\nSuzie\nThomas\nThomasina\nThresa\nTreva\nWendi\nZandra\nAletha\nAlexandra\nBarrie\nBethany\nBettie\nBobby\nBonni\nBonny\nCamilla\nCara\nCarleen\nCarlene\nCarroll\nCathie\nCelestine\nChana\nCharise\nCharity\nCharlie\nClaretha\nDarby\nDavid\nDebbi\nDede\nDeedee\nDeidra\nDelilah\nDetra\nElana\nElisabeth\nElma\nElsie\nEvie\nFreida\nGenevieve\nGilda\nGinny\nHelene\nIva\nJami\nJeana\nJenni\nJeraldine\nJerry\nJulianne\nJustina\nJustine\nKate\nKristine\nLanette\nLatricia\nLeatha\nLeesa\nLeisa\nLenita\nLissa\nLiza\nLorelei\nLorena\nLorinda\nMable\nMahalia\nMargret\nMaritza\nMaryellen\nMegan\nMercedes\nMigdalia\nMillicent\nNanci\nNettie\nOdessa\nOna\nPamelia\nPandora\nPennie\nPhylis\nRachelle\nRebekah\nRegena\nRonna\nRoseann\nRoxana\nRoxann\nRoxie\nScarlett\nShana\nSherryl\nSimone\nStefanie\nSuzy\nTeena\nTia\nTonda\nTresa\nVerlinda\nVirgie\nVonnie\nMary\nLisa\nLinda\nPatricia\nSusan\nCynthia\nKaren\nBrenda\nDonna\nSandra\nSharon\nDeborah\nDebra\nPamela\nBarbara\nTeresa\nCheryl\nElizabeth\nTammy\nLaura\nNancy\nDebbie\nRobin\nKathy\nLori\nAngela\nKimberly\nCarol\nDenise\nCindy\nJanet\nCarolyn\nTheresa\nTina\nJulie\nJanice\nKim\nWanda\nJacqueline\nMichelle\nDiane\nRhonda\nBeverly\nSherry\nSheila\nCathy\nValerie\nConnie\nTerri\nCatherine\nKathleen\nRebecca\nMargaret\nJudy\nShirley\nJennifer\nTracy\nGloria\nLaurie\nBetty\nKelly\nDorothy\nMaria\nJoyce\nStephanie\nPaula\nLeslie\nVicki\nSuzanne\nChristine\nMartha\nMelissa\nAnita\nAnnette\nDawn\nBonnie\nCarla\nKatherine\nSylvia\nPeggy\nPhyllis\nWendy\nDarlene\nMelanie\nJackie\nBelinda\nMichele\nKathryn\nRegina\nDiana\nRose\nGail\nAmy\nTerry\nFrances\nGwendolyn\nAnn\nJulia\nLynn\nVickie\nVictoria\nCharlotte\nVirginia\nRenee\nSherri\nAndrea\nBeth\nGina\nJudith\nPenny\nSarah\nElaine\nCassandra\nMelinda\nJill\nLoretta\nShari\nEvelyn\nJoy\nPam\nMarilyn\nRuth\nGlenda\nHelen\nAnna\nJoan\nAlice\nRita\nDana\nYvonne\nMarie\nVanessa\nAnne\nSheryl\nVivian\nJean\nSandy\nColleen\nToni\nCharlene\nPatty\nVeronica\nCarrie\nChristina\nCarmen\nHolly\nBecky\nMelody\nShelia\nJeanette\nSonya\nTonya\nTammie\nAnnie\nDoris\nJo\nMarcia\nMonica\nTamara\nEllen\nJane\nTracey\nSally\nFelicia\nLorraine\nJoanne\nDelores\nJeanne\nJamie\nMarsha\nSue\nVicky\nAudrey\nRosa\nJacquelyn\nJoann\nSheri\nTeri\nTanya\nAlicia\nRosemary\nCrystal\nJan\nJuanita\nMaureen\nRoberta\nPriscilla\nRuby\nCaroline\nAna\nEdith\nPatti\nTami\nYolanda\nYvette\nKatrina\nApril\nConstance\nDianne\nLynda\nSherrie\nHeidi\nDeanna\nJune\nRobyn\nSara\nAlison\nCheri\nEileen\nSabrina\nLillian\nMarlene\nArlene\nLois\nMarjorie\nShelly\nLydia\nNorma\nValarie\nGeraldine\nPatsy\nSusie\nAllison\nAngie\nCarole\nEva\nRachel\nDebora\nKay\nLynne\nShelley\nJenny\nLucy\nMyra\nLee\nAlma\nEmma\nKelley\nChris\nEmily\nGayle\nBonita\nGinger\nGwen\nMildred\nStacy\nGeorgia\nGladys\nGrace\nJanine\nJodi\nLorie\nRamona\nShannon\nSonia\nTerrie\nAlisa\nAngelia\nEthel\nJana\nKarla\nLillie\nRene\nSonja\nBobbie\nChristy\nEsther\nJosephine\nLeigh\nLora\nMargie\nStacey\nVera\nAmanda\nBetsy\nCecilia\nDena\nElla\nIris\nJody\nNatalie\nRonda\nWillie\nClara\nEdna\nFaye\nLenora\nNina\nRosalind\nThelma\nClaudia\nDaisy\nDaphne\nLouise\nTammi\nBridgette\nDianna\nHarriet\nJoni\nLola\nMarian\nBernadette\nBridget\nFaith\nIda\nIrene\nJoanna\nJohnnie\nPaulette\nPauline\nTangela\nTraci\nBernice\nDolores\nLorrie\nMarion\nAdrienne\nAlfreda\nHazel\nHeather\nJanie\nJeannie\nLana\nMae\nAngel\nMattie\nMiriam\nMona\nWilma\nEunice\nGay\nLauren\nLucinda\nLynette\nMarianne\nMarla\nShawn\nTara\nVelma\nDarla\nEleanor\nJeannette\nKimberley\nLaverne\nPatrice\nSuzette\nCandy\nCathleen\nDeirdre\nDora\nDoreen\nErin\nJanis\nKelli\nMaryann\nMinnie\nRosetta\nSharron\nAmelia\nBeatrice\nCeleste\nDella\nDeloris\nHilda\nKristi\nLaurel\nMamie\nMonique\nPolly\nRobbin\nRosalyn\nRoxanne\nSelina\nAlesia\nAntoinette\nBenita\nBertha\nBillie\nCecelia\nDale\nDesiree\nElisa\nKellie\nLauri\nLorri\nLucille\nNanette\nNaomi\nNora\nOlga\nSelena\nCandace\nDina\nFlorence\nJacquline\nJeri\nJessica\nMaxine\nNadine\nPat\nReba\nRena\nSophia\nAvis\nDeidre\nFelecia\nFlora\nGale\nGigi\nHope\nJennie\nSallie\nSondra\nTracie\nViolet\nAmber\nBessie\nCherie\nClaire\nErnestine\nJeanine\nKatie\nLawanda\nLeah\nLena\nLesa\nLucretia\nRobbie\nRochelle\nRosemarie\nVelvet\nCelia\nChandra\nDebby\nEssie\nJeanie\nJohnna\nKarin\nKarol\nLeanne\nLiz\nMarcella\nPamala\nValencia\nValeria\nDenice\nFrankie\nKimberlee\nLeola\nLorene\nLou\nMargarita\nValorie\nVerna\nAlina\nBridgett\nCherry\nCindi\nDelia\nFrancine\nHarriett\nIsabel\nJanette\nJayne\nJessie\nKaron\nKathi\nKristina\nKristy\nLetitia\nMarguerite\nMitzi\nMolly\nSaundra\nShelby\nViola\nAbby\nAlthea\nBambi\nCora\nDiann\nDoretha\nElena\nEugenia\nEula\nFannie\nFreda\nGeneva\nGretchen\nHattie\nHelene\nLea\nLorena\nLorna\nLula\nMalinda\nMarta\nMichael\nPaige\nPearl\nQueen\nSandi\nSusanne\nTrina\nTrudy\nVenita\nAdriana\nBrigitte\nClaudette\nDanette\nDavid\nDeana\nDeanne\nDori\nEloise\nEtta\nFay\nGinny\nIngrid\nIrma\nJanna\nJeannine\nJerri\nJudi\nKerri\nLeila\nLesia\nLibby\nLila\nLucia\nNellie\nNita\nOlivia\nPennie\nSilvia\nTamela\nTamra\nTherese\nTricia\nVikki\nWinifred\nWinona\nAda\nAdrianne\nAntionette\nArleen\nAva\nCaren\nChristie\nDelphine\nDollie\nDona\nDrucilla\nEarlene\nElise\nElsie\nFran\nFrancis\nJacquelin\nJames\nJodie\nJulianne\nKara\nKaye\nKerry\nKristin\nLeisa\nLesley\nMadeline\nMaggie\nMarcie\nMarcy\nMerry\nMyrna\nNikki\nNoreen\nPatrica\nPenelope\nRoslyn\nRuthie\nSherie\nStella\nTamera\nTonja\nAgnes\nAllyson\nAntonia\nAretha\nBlanche\nBrigette\nBrinda\nCara\nCorinne\nCyndi\nDarby\nDarcy\nDee\nDeena\nDeidra\nEarnestine\nEdwina\nErma\nEstella\nGreta\nHelena\nHenrietta\nIva\nIvy\nJenifer\nJoanie\nJohanna\nJohn\nJuliet\nKathie\nKrista\nLadonna\nLatanya\nLisette\nLoria\nLourdes\nLuanne\nMable\nMindy\nNicole\nRachael\nRegenia\nRhoda\nRobert\nRosie\nRosita\nRoxann\nSusana\nTena\nTeresita\nVernell\nAileen\nAlexis\nAshley\nAurora\nBeatriz\nBethany\nBettie\nBettina\nCandice\nCari\nCherri\nChrista\nDanita\nDebi\nDedra\nDinah\nDonald\nDorothea\nFonda\nGena\nInez\nIvonne\nJimmie\nJoe\nJolene\nJuliana\nKatharine\nKris\nLatricia\nLela\nLeona\nLeonor\nLessie\nLetha\nLindy\nLynnette\nMargo\nMari\nMarilynn\nMarina\nMarva\nMelisa\nMelodie\nMyrtle\nNanci\nPamelia\nPattie\nRae\nRenita\nRetha\nSebrina\nSybil\nTonia\nWilliam\nAdele\nAida\nAlana\nAlberta\nAletha\nBabette\nBette\nBobby\nCamilla\nCamille\nCaprice\nCassie\nCathryn\nCharity\nCharla\nCharmaine\nCristina\nDamita\nDarleen\nDebroah\nDelilah\nDenita\nDixie\nDolly\nDorcas\nEartha\nEdie\nElisabeth\nElouise\nEstelle\nEster\nEvette\nFrederica\nGerri\nIlene\nJacki\nJami\nJanene\nJewel\nJewell\nJuana\nJuli\nJuliette\nKandi\nKandy\nKari\nKitty\nKristine\nKyle\nLanita\nLavonne\nLeann\nLeesa\nLesli\nLeticia\nLiane\nLizzie\nLuisa\nMarietta\nMegan\nMelonie\nMinerva\nMissy\nMyrtice\nNettie\nPandora\nPearlie\nRandi\nRomona\nRosalie\nSelma\nSerena\nSherrill\nSuzie\nSuzy\nTamie\nTawanda\nTeressa\nThomasina\nVernita\nVonda\nAdrian\nAdriane\nAlbertha\nAlethea\nAlyson\nAngeline\nAnnetta\nAundrea\nBarbra\nCaridad\nCarolann\nCarolynn\nCaryn\nCathie\nCathrine\nCelestine\nChristi\nClarissa\nColeen\nCoral\nCornelia\nCorrine\nCourtney\nCyndee\nDanielle\nDannette\nDaryl\nDayna\nDenese\nDonnie\nEarline\nEve\nFern\nFreida\nGenevieve\nGeorge\nGeorgette\nGeorgina\nGilda\nGracie\nGregory\nHannah\nIvette\nJannette\nJeana\nJerry\nJohnny\nJoseph\nJoycelyn\nJustine\nKatheryn\nKimberlyn\nKrystal\nLavonda\nLawanna\nLeeann\nLezlie\nLilly\nLily\nLizette\nLuann\nMargarette\nMarisa\nMarnita\nMarshall\nMarti\nMaura\nMavis\nMelba\nMilagros\nMisty\nNannette\nNatasha\nNona\nOctavia\nOdessa\nParis\nPearline\nPilar\nRachelle\nRenae\nRonnie\nRoselyn\nRowena\nRoxanna\nSandee\nSheree\nSherryl\nSimone\nStarla\nSuzan\nSynthia\nTanja\nTaryn\nTeena\nThea\nTheodora\nThomas\nTommie\nTwanda\nTwila\nTwyla\nVannessa\nZelda\nLisa\nMary\nKaren\nCynthia\nLinda\nPatricia\nSusan\nDeborah\nSharon\nBrenda\nDonna\nSandra\nPamela\nDebra\nBarbara\nTeresa\nKimberly\nTammy\nElizabeth\nAngela\nLori\nCheryl\nRobin\nDebbie\nKathy\nTina\nLaura\nNancy\nCarol\nCindy\nJanet\nJulie\nMichelle\nDenise\nTheresa\nJacqueline\nCarolyn\nRhonda\nWanda\nKim\nJennifer\nSheila\nTerri\nDiane\nJanice\nSherry\nRebecca\nMaria\nBeverly\nValerie\nConnie\nKelly\nCatherine\nMargaret\nShirley\nTracy\nLaurie\nBonnie\nCathy\nGloria\nStephanie\nSuzanne\nKathleen\nJoyce\nDawn\nMelissa\nBetty\nJudy\nAnita\nRegina\nDiana\nLeslie\nMelanie\nWendy\nChristine\nSherri\nAnnette\nVicki\nCarla\nGwendolyn\nKatherine\nPaula\nAmy\nDorothy\nPhyllis\nTerry\nMartha\nMelinda\nMichele\nPenny\nAnn\nVirginia\nGail\nSylvia\nSarah\nBelinda\nDarlene\nPeggy\nRenee\nRose\nVickie\nMarilyn\nVictoria\nAndrea\nLynn\nKathryn\nVeronica\nJulia\nJackie\nBeth\nHelen\nSheryl\nDana\nGina\nCassandra\nCharlotte\nEvelyn\nAnna\nVivian\nGlenda\nJudith\nLoretta\nBecky\nMonica\nPam\nToni\nRuth\nTonya\nYvonne\nAnnie\nFrances\nMarie\nRita\nSonya\nJill\nCharlene\nFelicia\nJacquelyn\nJoan\nJane\nJoy\nElaine\nTracey\nChristina\nHolly\nMarsha\nShelia\nAnne\nTamara\nCarmen\nCarrie\nMelody\nSheri\nAlice\nJeanette\nVanessa\nAudrey\nJamie\nDianne\nJo\nYolanda\nApril\nDeanna\nShari\nJuanita\nAna\nKatrina\nTammie\nAlicia\nPatti\nEllen\nSandy\nJean\nTami\nHeidi\nNatalie\nMarcia\nPatty\nRosa\nDoris\nJoann\nSara\nVicky\nSabrina\nSue\nColleen\nJoanne\nNorma\nRuby\nJan\nJeanne\nSally\nPriscilla\nTeri\nConstance\nSusie\nKay\nLynda\nBridget\nNina\nRosemary\nYvette\nCrystal\nKarla\nMargie\nRachel\nRobyn\nStacey\nAngelia\nCheri\nLee\nLois\nCaroline\nJune\nStacy\nTanya\nRoberta\nShelly\nGrace\nIrene\nKimberley\nLillian\nShelley\nAllison\nSherrie\nAlison\nDelores\nLorraine\nMarlene\nRamona\nEdna\nMarjorie\nMiriam\nTara\nAngie\nBonita\nDaphne\nJana\nLydia\nCecilia\nEsther\nAmanda\nArlene\nEdith\nEva\nSophia\nClara\nMildred\nTerrie\nAntoinette\nHeather\nLynne\nMyra\nShannon\nBridgette\nEmma\nGeraldine\nLeah\nMona\nJenny\nLorie\nLynette\nMarian\nSonia\nSonja\nTangela\nGladys\nJosephine\nMaureen\nWillie\nBeatrice\nClaudia\nEmily\nJanine\nLauren\nLourdes\nMarianne\nBernice\nBetsy\nBobbie\nDebora\nFelecia\nIris\nJeannie\nKelley\nKelli\nLora\nMarion\nValarie\nCarole\nElla\nFaith\nRene\nRonda\nShawn\nThelma\nDianna\nJodi\nJoni\nMarla\nNora\nCherie\nDarla\nDena\nDina\nGayle\nGinger\nJanie\nJody\nLillie\nTraci\nAlisa\nBertha\nCandace\nChris\nEleanor\nElisa\nErnestine\nLorrie\nNaomi\nTracie\nCandy\nCora\nDoreen\nJessica\nJessie\nLeigh\nPatrice\nRosalind\nTonia\nDolores\nGwen\nJeannette\nKristine\nPauline\nRosemarie\nVera\nAlma\nDaisy\nJoanna\nKara\nLenora\nLouise\nLucinda\nLucy\nMolly\nPaige\nVelma\nChristy\nDesiree\nJeri\nKerry\nLauri\nMaxine\nNadine\nNanette\nPatsy\nPaulette\nTammi\nTrina\nAlesia\nBernadette\nCeleste\nEthel\nFaye\nMonique\nRobbie\nTamela\nAva\nDella\nDeloris\nEileen\nGeorgia\nHarriet\nHilda\nIsabel\nKristi\nLesa\nMadeline\nNicole\nRobbin\nRoxanne\nVerna\nAngel\nBillie\nCara\nErin\nHenrietta\nHope\nJerri\nKatie\nMae\nOlga\nOlivia\nRochelle\nRosalyn\nAda\nCecelia\nCelia\nFlorence\nGay\nJanette\nMalinda\nMattie\nSelena\nValeria\nAmelia\nAntionette\nBridgett\nDeirdre\nGretchen\nHazel\nJeanine\nLea\nLiz\nLola\nPat\nRenae\nSondra\nVelvet\nDeana\nDee\nDeena\nDora\nElena\nIda\nIleana\nKimberlee\nLaurel\nLaverne\nLeanne\nLolita\nLorri\nMarcella\nMaritza\nMindy\nRosie\nTeressa\nAdrienne\nAlfreda\nAvis\nDanielle\nDebi\nEunice\nGeorgina\nHelena\nJacquline\nJohnnie\nKarin\nKathrine\nKellie\nLana\nLatonya\nLena\nMaggie\nMarcy\nMavis\nSelina\nStella\nSuzette\nTherese\nWhitney\nWilma\nAlberta\nAmber\nArleen\nBenita\nBessie\nBobbi\nCherry\nClaire\nClarissa\nClaudette\nCristina\nDale\nElise\nFlora\nFrancine\nGeneva\nHarriett\nIngrid\nIrma\nJames\nJeanie\nJeannine\nKarol\nKerri\nLawanda\nLeila\nLorene\nLorna\nMarnita\nMarva\nMaryann\nMinnie\nMisty\nPearl\nPolly\nRuthie\nSybil\nTamra\nTeresita\nTwila\nZelda\nAimee\nAretha\nCaren\nCaridad\nDeedee\nDorothea\nErma\nFrankie\nGena\nGeorgette\nGigi\nGinny\nJayne\nJennie\nLeisa\nLeona\nLetitia\nMandy\nMarcie\nMyrna\nSharlene\nSherrill\nTricia\nValorie\nViola\nCathleen\nCharla\nColette\nConchita\nDedra\nEdwina\nErica\nEugenia\nEve\nFay\nHattie\nHelene\nKaron\nKaye\nKristina\nLizette\nLyn\nMable\nMamie\nMargarita\nMelodie\nNoreen\nPenelope\nShellie\nTeena\nTrudy\nValencia\nVenus\nViolet\nAbby\nAlina\nBrigitte\nCheryle\nChristi\nColeen\nDanita\nDebby\nEarlene\nEarnestine\nEdie\nEvangeline\nFonda\nGale\nGerri\nJohanna\nJudi\nKari\nKathie\nKitty\nKristen\nKristin\nLadonna\nLatanya\nLesley\nLisha\nLoraine\nLou\nMarisa\nMelba\nMercedes\nMichael\nNannette\nNellie\nNikki\nPatrica\nRena\nRobert\nSandi\nSaundra\nShelby\nSheree\nSuzy\nTwanda\nWilliam\nWinifred\nAida\nAllyson\nAngeline\nAnthony\nCandi\nCandice\nCassie\nCathryn\nChandra\nCorinne\nCornelia\nDavid\nDeanne\nDeidra\nElsie\nGaye\nGenevieve\nIlene\nJanis\nJoseph\nJosie\nJuliette\nJustine\nKaryn\nKathi\nKristy\nLucille\nLynnette\nMerry\nMitzi\nMuriel\nMyrtle\nNita\nPennie\nRandi\nReba\nRenita\nRhoda\nRoslyn\nSilvia\nSuzie\nTawana\nVonda\nAbigail\nAdrian\nAdrianne\nAileen\nAntonia\nBarbie\nBethany\nCarlene\nCathie\nCelestine\nCharmaine\nChristie\nDarby\nDayna\nDeidre\nDelia\nDemetria\nDinah\nDorinda\nElnora\nElouise\nElsa\nFannie\nFreda\nGeri\nGiselle\nIdella\nJanna\nJeanna\nJosefina\nJuliet\nLavonne\nLeola\nLesia\nLila\nLoretha\nMachelle\nMargo\nMarlena\nMay\nMayra\nMelonie\nMillie\nMollie\nPrincess\nRetha\nRoxanna\nSarita\nScarlet\nSharla\nSharron\nShirlene\nStacie\nSuzan\nTana\nTania\nTena\nTiffany\nTonja\nZina\nAdriana\nAgnes\nAlexandra\nAlthea\nArnetta\nBarbra\nBernadine\nBettina\nBlanche\nCherrie\nClare\nClarice\nCleo\nDorene\nDottie\nEartha\nEloise\nEula\nFrancina\nGenia\nGertrude\nGlynis\nGracie\nIla\nIsabell\nJocelyn\nJohnna\nJoycelyn\nJuana\nJuliana\nJulianne\nKaran\nKarrie\nKate\nKatharine\nKenneth\nKris\nLavern\nLibby\nLorelei\nLoria\nLorinda\nLula\nLuz\nMabel\nMarci\nMarguerite\nMari\nMarietta\nMarta\nMelony\nMia\nMiranda\nNan\nNettie\nPattie\nPearlie\nPortia\nRachael\nRaquel\nRenea\nRosalie\nRosanne\nRosetta\nSallie\nSandie\nSerena\nSheron\nSheryll\nSusana\nTambra\nThea\nTori\nVernita\nWendi\nAdele\nAlana\nAlexis\nAline\nAltamese\nAlyson\nAngelique\nAntonette\nArline\nBabette\nBeatriz\nBernita\nBette\nBlanca\nCamille\nCarey\nCaryn\nCathi\nClaretha\nCorliss\nCristal\nDanette\nDanna\nDarci\nDarleen\nDawna\nDeann\nDebrah\nDede\nDelana\nDelinda\nDelphine\nDixie\nDolly\nDoretha\nDori\nEarline\nEddie\nElana\nEsperanza\nEvette\nFran\nFreddie\nGabrielle\nGregory\nGreta\nGretta\nHannah\nHilary\nHillary\nInez\nIsabelle\nIvette\nIvonne\nIvy\nJacki\nJacquelin\nJanell\nJanelle\nJannie\nJenifer\nJerrie\nJewel\nJimmie\nJoanie\nJodie\nJohn\nJustina\nKandi\nKatheryn\nKathyrn\nKelle\nKendra\nKerrie\nKevin\nKimberli\nLanita\nLaureen\nLawanna\nLeeann\nLetha\nLeticia\nLiana\nLily\nLisette\nLoren\nLucretia\nMadeleine\nMadelyn\nMaribel\nMarquita\nMegan\nMeredith\nMimi\nMissy\nOdalys\nOdessa\nOuida\nPamala\nPamelia\nPamella\nPandora\nPhoebe\nPilar\nQueen\nRae\nRandy\nReta\nReva\nRonnie\nRowena\nRoxann\nSabra\nSabrena\nSamantha\nSebrina\nShanna\nSherrell\nTamie\nThomasina\nTrish\nTroy\nTwyla\nValrie\nVenetia\nVickey\nVikki\nVonnie\nWilla\nWindy\nZena\nLisa\nMary\nKaren\nSusan\nCynthia\nLinda\nDonna\nPatricia\nDeborah\nKimberly\nTammy\nSandra\nSharon\nPamela\nBrenda\nLori\nDebra\nTeresa\nAngela\nBarbara\nElizabeth\nLaura\nRobin\nCheryl\nNancy\nTina\nMichelle\nKathy\nCindy\nKim\nTheresa\nDebbie\nCarol\nRhonda\nJulie\nJennifer\nDenise\nKelly\nDiane\nTerri\nSheila\nWanda\nSherry\nCarolyn\nTracy\nJacqueline\nValerie\nJanet\nPaula\nStephanie\nJanice\nCathy\nRebecca\nChristine\nLaurie\nMaria\nMelissa\nBeverly\nMargaret\nConnie\nCatherine\nAnita\nKathleen\nShirley\nSherri\nBetty\nAnnette\nCarla\nMichele\nGloria\nWendy\nSuzanne\nMelanie\nDawn\nJudy\nAmy\nBonnie\nDarlene\nLeslie\nDiana\nRegina\nDana\nMartha\nVirginia\nKatherine\nJoyce\nGwendolyn\nDorothy\nTerry\nAndrea\nVicki\nBeth\nRenee\nSarah\nBelinda\nGina\nKathryn\nSylvia\nLynn\nMelinda\nAnn\nJill\nPenny\nSheryl\nMarilyn\nPhyllis\nRose\nCharlotte\nJulia\nTracey\nHelen\nPeggy\nVeronica\nVickie\nAnna\nGail\nCharlene\nRuth\nSheri\nJudith\nChristina\nVictoria\nApril\nJackie\nAlicia\nCassandra\nAnne\nTonya\nSandy\nMarie\nRita\nAlice\nMelody\nVivian\nElaine\nCarmen\nEllen\nFelicia\nMonica\nJoan\nLoretta\nPam\nJean\nSonya\nFrances\nJane\nTamara\nStacy\nBecky\nHolly\nJuanita\nShelia\nVanessa\nSara\nEvelyn\nYvonne\nDeanna\nTammie\nToni\nYolanda\nTami\nCarrie\nCrystal\nYvette\nDoris\nStacey\nNorma\nGlenda\nJamie\nJoy\nShari\nTanya\nAudrey\nSally\nLorraine\nNatalie\nSabrina\nMarcia\nKatrina\nJoanne\nMarsha\nAnnie\nShannon\nPatty\nVicky\nAngelia\nConstance\nDelores\nDianne\nJacquelyn\nAna\nColleen\nPriscilla\nJoann\nSonia\nTara\nCheri\nHeidi\nShelly\nTeri\nCaroline\nLora\nRamona\nLynda\nShelley\nSherrie\nCherie\nEva\nKelley\nLillian\nPatti\nRosa\nJeanne\nJo\nLorrie\nRuby\nAllison\nDarla\nJeanette\nJodi\nLauren\nRachel\nDaphne\nJan\nKelli\nRoberta\nTangela\nAngie\nMargie\nMaureen\nRonda\nTraci\nDianna\nBridget\nEileen\nMona\nAlisa\nCarole\nJoni\nRosemary\nValarie\nLee\nLeigh\nLorie\nLynette\nMarion\nMarlene\nRobyn\nSonja\nArlene\nIrene\nKimberley\nLois\nLourdes\nSue\nAlison\nEsther\nGinger\nHeather\nKarla\nLeah\nMarian\nMarjorie\nMyra\nPatsy\nPaulette\nAmanda\nDesiree\nSophia\nJanie\nLaurel\nRosalind\nClaudia\nEmily\nGladys\nJana\nJune\nTerrie\nWillie\nClara\nDena\nDoreen\nMiriam\nNina\nThelma\nCandace\nFaye\nGayle\nJessica\nLydia\nShawn\nSusie\nZina\nBobbie\nCecilia\nDora\nEdith\nElla\nJeannette\nKellie\nKristine\nLynne\nMildred\nNanette\nAntoinette\nBernice\nBonita\nGeorgia\nGretchen\nBetsy\nIda\nKay\nLucinda\nAdrienne\nBeatrice\nBridgette\nCecelia\nDaisy\nDebora\nDolores\nJosephine\nLaverne\nMarla\nPatrice\nRoxanne\nTracie\nVera\nFaith\nFlorence\nJenny\nJoanna\nLouise\nPaige\nBernadette\nDeirdre\nEdna\nEmma\nErnestine\nJanis\nKerry\nTrina\nAngel\nCeleste\nDee\nEleanor\nGrace\nKara\nKatie\nLucille\nNadine\nRene\nSondra\nChris\nDina\nElisa\nEthel\nEunice\nFelecia\nJohnnie\nKristina\nMargarita\nMisty\nNicole\nStella\nChristy\nHazel\nMae\nMaggie\nRena\nRosalyn\nCelia\nErica\nLana\nNaomi\nOlga\nPauline\nPolly\nSusanne\nAlesia\nAmelia\nGeraldine\nIris\nJennie\nLeona\nLillie\nMaxine\nMindy\nMonique\nBenita\nBertha\nBillie\nCandy\nCara\nChristie\nErin\nIngrid\nJanine\nJeannie\nLolita\nMarianne\nMattie\nSelina\nAvis\nDanielle\nDeana\nDedra\nDeidre\nEugenia\nGay\nGwen\nKari\nKathi\nKristen\nMercedes\nSaundra\nSuzette\nBridgett\nDella\nHilda\nHope\nIsabel\nJeri\nKristin\nLauri\nLola\nMinnie\nNora\nRoslyn\nSelena\nValeria\nWilma\nWinifred\nAva\nBessie\nCamille\nClaire\nDeloris\nElise\nHarriet\nJames\nJerri\nKristi\nLenora\nNannette\nTammi\nTherese\nViola\nBobbi\nCaren\nFrancine\nHattie\nJodie\nLawanda\nLea\nLucy\nMarguerite\nMarta\nMelodie\nMolly\nRandi\nValencia\nZelda\nAntionette\nCaridad\nCathleen\nChrista\nDale\nDeena\nDeidra\nFlora\nGena\nGlynis\nHenrietta\nIvy\nJannie\nJessie\nJuliet\nKarin\nKerri\nLetitia\nLila\nLorri\nLynnette\nMarcie\nMarcy\nSebrina\nSerena\nTamela\nTamra\nAda\nAllyson\nBethany\nCamilla\nChristi\nDebby\nEdwina\nElisabeth\nGale\nHelene\nJayne\nJeanine\nJody\nLawanna\nLeisa\nMichael\nPenelope\nRaquel\nRobbin\nRobert\nRochelle\nRosemarie\nRosie\nSandi\nSharlene\nVelma\nWendi\nAlexandra\nBeatriz\nBettina\nClaudette\nColette\nDarcy\nDixie\nDorothea\nErma\nFay\nFrankie\nGayla\nGreta\nIrma\nIvette\nJacquline\nKristy\nLena\nLesa\nLibby\nLizzie\nLoraine\nLuann\nMamie\nMaryann\nMelisa\nMuriel\nNoreen\nOlivia\nOllie\nPamala\nRobbie\nRuthie\nStacie\nTania\nTeresita\nTiffany\nTrudy\nVenus\nVerna\nAlecia\nAlthea\nAlyson\nAmber\nCherry\nCora\nDanette\nDeanne\nDeedee\nElena\nElsie\nEssie\nEtta\nFrancina\nGeneva\nHelena\nJanna\nJewel\nJohnna\nJudi\nKaryn\nLashawn\nLetha\nLiz\nLorena\nLorene\nLou\nMadeline\nMarcella\nMaritza\nMay\nMelonie\nReba\nRosetta\nSabra\nShelby\nTonia\nTwila\nVonda\nAbby\nAlberta\nAlina\nAlma\nBrigette\nCallie\nCaryn\nCornelia\nDavid\nDayna\nDelia\nEloise\nGeorgette\nHarriett\nIvonne\nJewell\nJimmie\nJocelyn\nLadonna\nLeann\nLeila\nLorna\nMandy\nMara\nMarci\nMarisa\nMavis\nMeredith\nMitzi\nNellie\nPat\nPatrica\nPhoebe\nQueen\nSharron\nShawna\nShellie\nSilvia\nStefanie\nTricia\nTrisha\nValorie\nVikki\nAbigail\nAdriane\nAgnes\nAlexis\nAndra\nArletha\nBambi\nBonny\nBrigitte\nCandi\nCarolina\nCassie\nCathryn\nCindi\nConsuelo\nCristina\nDanita\nDarby\nDeann\nDebbi\nDetra\nDori\nEarnestine\nElissa\nEve\nFreda\nGenevieve\nGertrude\nGigi\nGinny\nGracie\nJacquelin\nJacqulyn\nJeannine\nJohanna\nJuli\nJustine\nKirsten\nKris\nLeesa\nLela\nLiza\nLizette\nLucia\nLucretia\nLuz\nMalinda\nMechelle\nMelba\nOpal\nPennie\nRenita\nSallie\nSheree\nStaci\nSusanna\nSuzy\nTamala\nTamera\nToby\nTresa\nVelvet\nVernell\nVickey\nAdriana\nAdrianne\nAileen\nAimee\nAlana\nAlethea\nAnnetta\nAnthony\nAntonia\nArleen\nAthena\nAurelia\nCarey\nCarlene\nChandra\nCharles\nCharlie\nCharmaine\nClarissa\nDede\nDelinda\nDenese\nDenice\nDolly\nDona\nDottie\nEarline\nElvira\nErika\nEstelle\nFran\nGwyn\nHilary\nHillary\nHolli\nHollie\nIleana\nIna\nInez\nJanette\nJeffrey\nJenifer\nJohn\nJuliana\nKaron\nKarrie\nKatharine\nKaty\nKendra\nKeri\nKimberlee\nKristie\nKrystal\nKym\nLeeann\nLindy\nLisette\nLuisa\nLula\nMachelle\nMargo\nMari\nMayra\nMerry\nNell\nPortia\nRebeca\nRomona\nRoxane\nShanda\nSharen\nSherie\nShiela\nShirlene\nSuzan\nSybil\nTana\nTawana\nTeressa\nThomas\nTorri\nViolet\nWindy\nAletha\nAlfreda\nAngelique\nAshley\nBabette\nBernadine\nBrooke\nCandice\nCarletha\nCarmella\nCecile\nCelestine\nCharla\nCheryle\nChevelle\nClare\nConchita\nDamita\nDebi\nDeedra\nDelphine\nDinah\nEarlene\nElsa\nElyse\nFlorine\nFrancis\nGenie\nGeorge\nGerri\nGregory\nIliana\nJackeline\nJenna\nJennette\nJerry\nJosefina\nJuliette\nKandy\nKarol\nKatheryn\nKathie\nKathrine\nKerrie\nLanette\nLanita\nLatanya\nLatonya\nLavonne\nLeanne\nLessie\nLeticia\nLily\nLizabeth\nLottie\nLuanne\nLura\nLuvenia\nMable\nMalissa\nMarva\nMaura\nMegan\nMelynda\nMercy\nMilagros\nMinerva\nMissy\nNan\nNanci\nNettie\nNilsa\nNita\nNola\nPage\nPattie\nPearl\nPearlie\nPenni\nPrecious\nRachael\nRachelle\nRenae\nRenea\nRhoda\nRichelle\nRisa\nRonnie\nRosanna\nRoselyn\nRoxanna\nRoxie\nSarita\nSheron\nSidney\nSoraya\nStarr\nSuzie\nTamie\nTanja\nTeena\nTommie\nTreasa\nTrena\nTwanda\nUrsula\nValinda\nZena\nLisa\nMary\nKaren\nPatricia\nKimberly\nSusan\nCynthia\nTammy\nPamela\nAngela\nLinda\nDonna\nSharon\nDeborah\nSandra\nTeresa\nLaura\nBrenda\nElizabeth\nDebra\nBarbara\nRobin\nMichelle\nLori\nTina\nCheryl\nJacqueline\nJennifer\nJulie\nTheresa\nCarol\nDenise\nNancy\nKelly\nRhonda\nCindy\nKathy\nTracy\nKim\nSheila\nSherry\nDawn\nStephanie\nMaria\nJanet\nDebbie\nMargaret\nValerie\nRebecca\nCarolyn\nChristine\nWanda\nTerri\nDiane\nMelissa\nKathleen\nCatherine\nPaula\nJanice\nWendy\nConnie\nDana\nCathy\nMichele\nBeverly\nGloria\nCarla\nDarlene\nLeslie\nMelanie\nAmy\nLaurie\nAnnette\nRegina\nDiana\nSherri\nShirley\nSuzanne\nAnita\nKatherine\nAndrea\nDorothy\nJudy\nSarah\nRenee\nJill\nBonnie\nJoyce\nMelinda\nTonya\nGina\nKathryn\nSylvia\nMartha\nLynn\nPenny\nAnn\nBetty\nBeth\nCharlene\nPeggy\nPhyllis\nRose\nVicki\nVickie\nCassandra\nTracey\nChristina\nJackie\nVirginia\nAnna\nGail\nHolly\nJudith\nMonica\nApril\nRuth\nBelinda\nGwendolyn\nSheri\nSheryl\nCharlotte\nHelen\nJulia\nMarilyn\nTammie\nVeronica\nVivian\nDeanna\nVanessa\nFrances\nTerry\nJoy\nSonya\nCrystal\nTamara\nToni\nAlice\nMarie\nShelia\nJuanita\nVictoria\nCarmen\nYolanda\nYvonne\nElaine\nFelicia\nAlicia\nYvette\nColleen\nEvelyn\nStacey\nJane\nJoan\nLoretta\nNatalie\nRita\nStacy\nBecky\nCarrie\nJean\nSara\nEllen\nPatty\nTanya\nJeanette\nMelody\nConstance\nKatrina\nRachel\nShelly\nLorraine\nAllison\nAudrey\nGlenda\nAnnie\nHeather\nLynda\nPriscilla\nRosa\nShannon\nAna\nPam\nJacquelyn\nSandy\nShawn\nTraci\nNorma\nAnne\nDoris\nJoanne\nKarla\nSonja\nJodi\nShari\nTara\nMarcia\nVicky\nAngelia\nDianna\nHeidi\nSally\nTami\nCaroline\nMarsha\nHope\nJamie\nTeri\nAmanda\nAngie\nMaureen\nPatti\nSabrina\nSherrie\nTangela\nGeraldine\nLillian\nDianne\nJeanne\nRoberta\nJoann\nDarla\nDeneen\nJo\nLora\nLydia\nRosemary\nTerrie\nDora\nJune\nKelli\nShelley\nKimberley\nLynette\nRonda\nAlisa\nCandace\nJessica\nMarjorie\nDelores\nKellie\nNina\nRamona\nBridget\nCheri\nJoanna\nKelley\nMiriam\nTrina\nAntoinette\nEva\nGrace\nJan\nLeah\nMarlene\nRobyn\nRuby\nSonia\nTracie\nValarie\nAlison\nEmma\nKristine\nZina\nBetsy\nClara\nLois\nMarian\nChristy\nEdith\nEsther\nFaye\nGinger\nJana\nMargie\nMarion\nEdna\nIda\nArlene\nClaudia\nDebora\nEleanor\nFelecia\nKristina\nNora\nSue\nWillie\nBeatrice\nCarole\nFrancine\nKay\nKristi\nVera\nCandy\nCecilia\nDaphne\nEileen\nGayle\nGladys\nJenny\nLillie\nLorie\nMolly\nPaige\nVonda\nBillie\nChris\nEmily\nGeorgia\nJanie\nLauren\nLynne\nMildred\nMonique\nThelma\nBertha\nBridgette\nDanielle\nDesiree\nJeannie\nKerry\nLauri\nLee\nLorrie\nLucinda\nLucy\nMyra\nPatrice\nAlma\nDoreen\nErin\nLouise\nMona\nSophia\nSusie\nValeria\nBobbie\nBridgett\nIrene\nJacquline\nMarianne\nSuzette\nAdrienne\nBernice\nBonita\nCherie\nDena\nElisa\nJeannette\nPaulette\nPauline\nCara\nDeloris\nGeneva\nKristin\nLana\nLourdes\nNadine\nPolly\nRosalyn\nAmber\nAmelia\nCeleste\nDina\nFaith\nKarin\nKatie\nSondra\nTammi\nVelma\nVerna\nDeidre\nGretchen\nMarla\nRosalind\nRoxanne\nTrudy\nValencia\nAlesia\nAngelina\nAva\nDeana\nEthel\nGena\nJerri\nJohnnie\nJoni\nKara\nLeigh\nMaxine\nMisty\nNicole\nPatsy\nSharron\nTonia\nColette\nDeena\nDeirdre\nDolores\nHenrietta\nIris\nJosephine\nKristy\nLaverne\nLenora\nMitzi\nNaomi\nPearl\nRene\nBeatriz\nDaisy\nDee\nDella\nEdwina\nErma\nFlorence\nGwen\nHilda\nJanine\nJody\nLeanne\nLena\nLesley\nLola\nMaryann\nMelodie\nPamala\nRobbie\nSamantha\nStefanie\nAlfreda\nBenita\nElena\nIngrid\nJames\nJanis\nJodie\nKari\nMarcy\nMinnie\nNanette\nPatrica\nTherese\nWendi\nAlina\nBobbi\nCelia\nDale\nDarcy\nDawna\nFrankie\nJacquelin\nJeannine\nJeri\nKaryn\nKristen\nLawanda\nLorri\nMargarita\nMarta\nSandi\nSelina\nTamela\nTrisha\nAlthea\nCandi\nCathleen\nChandra\nCharmaine\nClaire\nDixie\nElise\nElla\nJeanine\nKarol\nKimberlee\nLadonna\nLatonya\nLeona\nMelonie\nMia\nRena\nRochelle\nRosemarie\nRosie\nSelena\nStaci\nTania\nBessie\nBettina\nChristie\nEugenia\nEunice\nHarriet\nIsabel\nJennie\nLaurel\nLeisa\nLesa\nLetitia\nLynnette\nMarcella\nPrincess\nRobbin\nTiffany\nWhitney\nWinifred\nAngel\nBabette\nBernadette\nDanette\nDori\nErica\nGale\nGay\nGlynis\nHelene\nKecia\nKerri\nLolita\nLorene\nLorna\nMamie\nMelisa\nMercedes\nPat\nSharlene\nSilvia\nSimone\nTresa\nTwyla\nValorie\nWilma\nAbigail\nAllyson\nAntionette\nAvis\nBrigitte\nCaren\nCora\nCristina\nDebby\nDeidra\nDelia\nDiann\nElisabeth\nErnestine\nGeri\nHazel\nIrma\nIvette\nJanette\nJeanna\nKendall\nKris\nKrista\nLea\nLeila\nLiz\nLucille\nMadeline\nMalinda\nMari\nMarisa\nMattie\nMichael\nMillie\nRandi\nRobert\nTonja\nViola\nAdrian\nAshley\nBethany\nBlanca\nBobby\nBonny\nCecelia\nCherry\nCourtney\nDanita\nDavid\nDebi\nEarlene\nEvette\nFlora\nGeorgette\nGigi\nGinny\nHattie\nJewel\nJewell\nJuliette\nKathie\nKaye\nLottie\nMae\nMarcie\nMarva\nMindy\nMyrna\nOlivia\nRenea\nRhoda\nSaundra\nShellie\nSybil\nTamera\nTamra\nAda\nAlberta\nAlecia\nCamille\nCari\nCaridad\nCindi\nClarissa\nCyndi\nDeanne\nDedra\nDemetria\nDorothea\nEddie\nErika\nEvangeline\nEve\nFannie\nFreda\nGayla\nGracie\nIna\nJolene\nJuliet\nKatharine\nKristie\nLesli\nLucia\nLucretia\nLula\nLyn\nMarguerite\nMarisol\nMaritza\nMaryellen\nMayra\nNannette\nOlga\nPenelope\nRonnie\nRosetta\nRuthie\nSabra\nShana\nShelby\nSheree\nShirl\nStella\nSusanne\nSuzan\nSydney\nTanja\nTeresita\nViolet\nZelda\nZena\nAida\nAileen\nAmie\nAngelica\nAngeline\nArnita\nBarbie\nCarman\nCathi\nCathryn\nCharleen\nCheryle\nChiquita\nChrista\nClaudette\nDanna\nDara\nDenice\nDiedra\nDjuna\nDorene\nDorinda\nGaye\nHarriett\nHelena\nHilary\nHollie\nIlene\nInez\nJanelle\nJayne\nJessie\nJocelyn\nKaty\nLashon\nLatanya\nLavern\nLawana\nLawanna\nLeann\nLesia\nLibby\nLoraine\nLory\nMaura\nMiranda\nMissy\nNita\nOctavia\nPearlie\nRachelle\nRandy\nRegena\nRenita\nRisa\nRoslyn\nSerena\nShaun\nShawna\nShiela\nStacie\nSusana\nSuzy\nTena\nTeressa\nTobi\nAgnes\nAimee\nAlexandra\nAlisha\nAnjanette\nAnnemarie\nArleen\nBernita\nCarolina\nCaryn\nCathie\nCathrine\nCharlie\nClaretha\nCleo\nColeen\nCorinne\nDarby\nDebrah\nDona\nDorthy\nEarline\nFay\nGenevieve\nGeorgina\nGwyn\nIvy\nJoe\nJohn\nJuliana\nJulianne\nJustine\nKathi\nKathrine\nKayla\nKerrie\nKirsten\nKitty\nKrystal\nLanette\nLanita\nLavonda\nLessie\nLetha\nLily\nLisette\nLorelei\nLou\nLuanne\nLuz\nMadelyn\nMaggie\nMalissa\nMargo\nMartina\nMatilda\nMeredith\nNoreen\nPennie\nPhoebe\nPortia\nQueen\nRenae\nRoni\nSallie\nScarlett\nSheena\nSherrill\nStacia\nSusanna\nTangie\nTasha\nTawanna\nThomasina\nTrena\nTricia\nVickey\nVikki\nYolonda\nAbby\nAdele\nAllen\nAlyce\nAngelique\nAngelita\nAurora\nBeverley\nCarletta\nCarmela\nCharles\nCornelia\nDania\nDaria\nDarleen\nDarlena\nDeedee\nDelphine\nDenna\nDiedre\nDolly\nDottie\nEarnestine\nElouise\nElsie\nElvira\nElyse\nEric\nEssie\nFrancina\nFrancis\nGertrude\nGlenna\nGreta\nGuadalupe\nGussie\nHannah\nIleana\nImogene\nInes\nInger\nIra\nIrish\nJacki\nJackqueline\nJami\nJeanie\nJerry\nJohanna\nJoye\nJuana\nJudi\nKandy\nKendra\nKenna\nKym\nLajuana\nLashawn\nLatasha\nLatricia\nLeeann\nLela\nLeola\nLila\nLina\nLiza\nLona\nLoretha\nLuci\nLuisa\nMarci\nMarina\nMelony\nMerry\nMichell\nMimi\nMindi\nMollie\nMuriel\nNellie\nNereida\nNeva\nNikki\nOdessa\nPandora\nPattie\nRachael\nRosalie\nRosanne\nRoseann\nRoseanne\nRoxie\nSarita\nSharri\nShirlene\nShonda\nStarla\nSuzie\nTamala\nTawanda\nTeena\nTracee\nTwanna\nTwila\nVannessa\nVeda\nVelvet\nVernice\nLisa\nKimberly\nMary\nKaren\nAngela\nPatricia\nCynthia\nTammy\nSusan\nSharon\nLinda\nPamela\nDeborah\nDonna\nElizabeth\nBrenda\nTeresa\nSandra\nBarbara\nCheryl\nLaura\nTina\nDebra\nMichelle\nRobin\nJennifer\nRhonda\nLori\nStephanie\nCarol\nJulie\nMelissa\nDawn\nKelly\nTheresa\nTracy\nDenise\nRebecca\nWendy\nSheila\nNancy\nJacqueline\nKim\nCarolyn\nChristine\nAmy\nSherry\nValerie\nCindy\nMaria\nWanda\nKathy\nDiane\nJanet\nTerri\nMichele\nDebbie\nCatherine\nJanice\nMargaret\nKathleen\nLeslie\nAndrea\nRegina\nCarla\nConnie\nPaula\nBetty\nBeverly\nSuzanne\nGina\nTonya\nJoyce\nJill\nShirley\nKatherine\nAnnette\nBonnie\nCathy\nLaurie\nSherri\nApril\nGloria\nMonica\nDarlene\nDorothy\nDana\nDiana\nSonya\nFelicia\nCharlotte\nChristina\nKathryn\nMartha\nRenee\nJudy\nMelinda\nMelanie\nSylvia\nPhyllis\nTracey\nAnn\nStacey\nGwendolyn\nSheri\nAnita\nSarah\nVicki\nVirginia\nBeth\nCassandra\nVictoria\nAllison\nPenny\nVeronica\nYolanda\nHolly\nBelinda\nJulia\nAnne\nVickie\nAnna\nHelen\nToni\nDeanna\nCharlene\nAlicia\nTerry\nJudith\nMarie\nShannon\nRose\nSheryl\nLynn\nPeggy\nStacy\nYvonne\nMarilyn\nFrances\nVanessa\nJamie\nKatrina\nGail\nShelia\nJackie\nKimberley\nRita\nTanya\nTraci\nMelody\nHeather\nJuanita\nLoretta\nRuth\nSamantha\nEvelyn\nGlenda\nJane\nNatalie\nVivian\nAlice\nConstance\nJodi\nRonda\nTamara\nCarmen\nSandy\nYvette\nLynda\nEllen\nSherrie\nCrystal\nAna\nColleen\nPriscilla\nSonja\nAudrey\nHeidi\nLee\nJean\nJoan\nJoy\nRachel\nTammie\nCarrie\nMarsha\nAngie\nBecky\nTami\nAmanda\nElaine\nJoann\nPam\nTara\nBridget\nNorma\nRosa\nSabrina\nShawn\nJacquelyn\nPatti\nPatty\nCandace\nJeanette\nLorraine\nMarcia\nRuby\nShari\nKarla\nMaureen\nShelly\nAngelia\nJoanne\nLora\nVonda\nJo\nAlison\nSonia\nDoris\nEva\nRoberta\nRobyn\nSally\nTangela\nKristine\nAnnie\nBobbie\nCaroline\nCherie\nValarie\nBetsy\nDarla\nIrene\nKelley\nLois\nRamona\nDianna\nJune\nKristin\nLynette\nMia\nMonique\nPatrice\nSue\nVicky\nAlisa\nTeri\nGinger\nKelli\nLillian\nRosemary\nSara\nDianne\nErin\nJoanna\nLeah\nShelley\nSophia\nDesiree\nEdith\nJeanne\nMarjorie\nNina\nTracie\nWillie\nEsther\nGladys\nHope\nIris\nJan\nLeigh\nMarion\nMyra\nTerrie\nThelma\nAntoinette\nBridgette\nCarole\nGrace\nDena\nJessica\nKellie\nBeatrice\nBonita\nJosephine\nKristina\nLauren\nLouise\nDaphne\nDelores\nSelena\nDebora\nEdna\nEthel\nJeannie\nMildred\nMona\nPaige\nPaulette\nArlene\nBridgett\nCara\nCheri\nNadine\nSelina\nBobbi\nDina\nEileen\nEleanor\nFaith\nGeorgia\nKimberlee\nLawanda\nLenora\nMarianne\nNora\nBertha\nCeleste\nClara\nDeana\nEmma\nNicole\nPolly\nRosalind\nTonja\nAlthea\nCandy\nChristy\nGeraldine\nJana\nJanie\nJody\nLorie\nLynne\nMattie\nMiriam\nPauline\nSondra\nTrina\nCecilia\nChris\nDoreen\nJoni\nKay\nLetitia\nLillie\nLorrie\nLydia\nMarian\nMarlene\nNaomi\nSuzette\nBernice\nBillie\nKristi\nLucy\nPatsy\nSilvia\nTammi\nTiffany\nAlma\nEmily\nEugenia\nFelecia\nHilda\nJenny\nLatonya\nLena\nLesley\nLourdes\nMarla\nMisty\nRosalyn\nAllyson\nCristina\nDanielle\nElena\nElisa\nGayle\nKrista\nMargie\nSusie\nTonia\nWilma\nAdrienne\nAlfreda\nAshley\nAva\nChandra\nClaudia\nErica\nFaye\nJodie\nKarin\nKatie\nLesa\nLucinda\nAlesia\nAmber\nAmelia\nBenita\nEunice\nGretchen\nHarriet\nJanine\nJeannette\nJeri\nJerri\nLana\nLaurel\nLorri\nMalinda\nMaxine\nMolly\nRoxanne\nVera\nAngel\nElisabeth\nElla\nFrankie\nGena\nKara\nKecia\nNanette\nSharron\nValeria\nZina\nBeatriz\nDolores\nDora\nErnestine\nIsabel\nIvy\nJacquline\nJames\nJanette\nJeannine\nJennie\nJessie\nKarol\nKerri\nLea\nLeanne\nMarcella\nMinnie\nOlivia\nRochelle\nSandi\nSusanne\nTherese\nTrisha\nAlberta\nBernadette\nCathleen\nCelia\nDaisy\nDiann\nGeneva\nKerry\nKris\nKristen\nMaggie\nMari\nMegan\nMelisa\nNellie\nRaquel\nRene\nRosemarie\nShawna\nShelby\nValencia\nWendi\nAdriana\nAimee\nBessie\nChristie\nDeirdre\nDelia\nDeloris\nFlorence\nJami\nLadonna\nLola\nLucretia\nMarisa\nMarnie\nMercedes\nMeredith\nMindy\nMiranda\nPearlie\nPenelope\nRoslyn\nStella\nUrsula\nValorie\nViola\nAurora\nAvis\nCaryn\nCecelia\nCora\nDella\nDorinda\nEdwina\nElise\nFrancine\nGale\nGwen\nHelene\nIda\nIrma\nJeanie\nJohanna\nJulianne\nKaryn\nLashawn\nLaverne\nLesia\nLolita\nLorna\nLynnette\nMarguerite\nMartina\nOlga\nRobbie\nRosie\nSaundra\nSerena\nTricia\nAlina\nAnthony\nAntonia\nChiquita\nChristi\nDarcy\nDee\nDeena\nDeidre\nDorene\nDorothea\nErika\nEssie\nEstelle\nFay\nInez\nJeanine\nJohnnie\nJudi\nKristy\nMadeline\nMalissa\nMarina\nMarta\nNanci\nPatrica\nRhoda\nRobbin\nSherie\nStaci\nStacie\nSybil\nTania\nTrudy\nVelma\nVenus\nVernita\nAngelina\nBabette\nCandice\nCindi\nDanette\nDeann\nDeedee\nDeidra\nDixie\nGayla\nGreta\nHattie\nIleana\nIvette\nJanis\nJannie\nJewell\nJohn\nKenneth\nKeri\nKevin\nLauri\nLeona\nLucille\nMae\nMarcie\nMargo\nMarissa\nMarva\nMichael\nMitzi\nSarita\nSharlene\nShirlene\nTamela\nTawana\nTeresita\nTia\nVerna\nWinifred\nZena\nAbby\nAileen\nAlexandra\nAlisha\nAngeline\nAngelique\nAngelita\nAnnemarie\nAntionette\nArnette\nCamilla\nCaren\nCasandra\nCathryn\nCharmaine\nChrista\nColeen\nDale\nDania\nDayna\nDedra\nDetra\nDionne\nFrancina\nGay\nHarriett\nIngrid\nIva\nJewel\nJimmie\nKandi\nKatharine\nLatanya\nLatricia\nLavette\nLavonne\nLeatha\nLetha\nLiz\nLorinda\nLory\nMamie\nMarci\nMelonie\nNita\nPamala\nPatrina\nPrincess\nRachael\nReba\nRebekah\nRena\nRobert\nRoxie\nScarlett\nShellie\nSheron\nStefanie\nSusanna\nSuzan\nTeressa\nWhitney\nAlyson\nAndra\nAndre\nBethany\nBettina\nBrandi\nCassie\nCatrina\nCharles\nCherry\nClaire\nClaretha\nClaudette\nCorinne\nCornelia\nDanita\nDannette\nDemetrice\nDenice\nDiedra\nDolly\nDorcas\nElisha\nEllie\nEtta\nEula\nEve\nFreda\nGerald\nGeri\nGlynis\nHenrietta\nIvonne\nJada\nJayne\nJenifer\nJocelyn\nJoycelyn\nJuliet\nKari\nKathie\nKeli\nKendra\nKimberli\nLavon\nLeann\nLeila\nLela\nLeticia\nLoraine\nLorene\nLyn\nMandy\nMargarita\nMaryann\nMechelle\nMellissa\nMelva\nMissy\nNannette\nNoreen\nOctavia\nPattie\nPennie\nRae\nRenae\nRomona\nRosanne\nRosetta\nRoxane\nRoxanna\nSadie\nSamanthia\nShana\nShanna\nSharonda\nShauna\nSherrill\nSonji\nSusana\nThea\nTowanda\nVelda\nVikki\nViolet\nAbbie\nAda\nAdriane\nAdrianne\nAgnes\nAida\nAlecia\nAlexis\nAlyce\nAngelica\nAretha\nArleen\nBarbra\nBrenna\nBrigitte\nCamille\nCarlene\nCelestine\nCheryle\nCheryll\nClarissa\nConchita\nDarby\nDarleen\nDeanne\nDebby\nDelinda\nDominique\nEarline\nEarnestine\nEden\nElnora\nElsa\nElsie\nEsperanza\nEugena\nEvangeline\nFern\nFlora\nFrancis\nGenevieve\nGeorgette\nGeorgina\nGerri\nGertrude\nGracie\nGregory\nHazel\nJaime\nJena\nJoanie\nJoe\nJoelle\nJosie\nKathi\nKirsten\nKristie\nLara\nLatrenda\nLavonda\nLeeann\nLilia\nLina\nLindy\nLisette\nLisha\nLoretha\nMabel\nMarcy\nMargret\nMavis\nMayra\nMelodee\nMelodie\nMelony\nMelynda\nMercy\nMerri\nMilagros\nMollie\nMuriel\nMylinda\nNoelle\nOla\nRachelle\nRandi\nRhea\nRoxana\nSallie\nShanda\nShonna\nStarla\nSynthia\nTamie\nTamra\nTana\nTangie\nTeena\nTessa\nThomasina\nTimothy\nTommie\nTrena\nTresa\nTwanna\nTwila\nUnknown\nVelvet\nWillette\nYolonda\nZelda\nLisa\nKimberly\nMary\nAngela\nMichelle\nKaren\nPatricia\nCynthia\nTammy\nPamela\nSusan\nSharon\nDeborah\nDonna\nMelissa\nTeresa\nElizabeth\nLinda\nSandra\nJennifer\nTina\nBarbara\nLaura\nBrenda\nLori\nStephanie\nJulie\nCheryl\nDebra\nTracy\nKelly\nRhonda\nDawn\nRobin\nNancy\nSheila\nChristine\nTheresa\nAmy\nDenise\nMichele\nWendy\nCarol\nKim\nRebecca\nCatherine\nAndrea\nMaria\nJacqueline\nSherry\nCindy\nMargaret\nJanet\nDiane\nCarolyn\nWanda\nTerri\nKathy\nKathleen\nValerie\nDebbie\nJanice\nCarla\nPaula\nLeslie\nSonya\nChristina\nSuzanne\nConnie\nBeverly\nShirley\nApril\nGina\nDana\nLaurie\nAnita\nKatherine\nMelanie\nRegina\nJill\nSherri\nTonya\nDiana\nTracey\nCathy\nMonica\nSheri\nFelicia\nDarlene\nGloria\nRenee\nBetty\nBonnie\nMelinda\nJoyce\nAnnette\nJudy\nDorothy\nSylvia\nShannon\nLynn\nVeronica\nKathryn\nYolanda\nVicki\nSarah\nCassandra\nAnn\nDeanna\nMartha\nVirginia\nAmanda\nBeth\nCharlotte\nJoy\nVictoria\nStacey\nAnna\nAnne\nBelinda\nTamara\nToni\nGwendolyn\nFrances\nRose\nAlicia\nHelen\nJulia\nHeather\nHolly\nPhyllis\nSabrina\nSheryl\nTraci\nKatrina\nPeggy\nSonja\nVickie\nHeidi\nPenny\nJudith\nRuth\nTanya\nMarie\nMelody\nEvelyn\nYvette\nAlice\nNatalie\nShelia\nKimberley\nEllen\nYvonne\nGail\nAudrey\nRachel\nCarmen\nCarrie\nCharlene\nDoris\nTerry\nGlenda\nHope\nSamantha\nVivian\nJamie\nMarilyn\nRosa\nSara\nJackie\nSandy\nStacy\nLoretta\nVanessa\nCrystal\nAllison\nMarcia\nTiffany\nAna\nCandace\nJacquelyn\nJoann\nKarla\nKristin\nNicole\nTammie\nRita\nShari\nJeanette\nJoanne\nColleen\nConstance\nGinger\nShawn\nAngelia\nAngie\nBecky\nMarsha\nBridget\nEva\nJean\nJoan\nKelli\nMonique\nSherrie\nSonia\nTangela\nLauren\nLynda\nElaine\nDianna\nJessica\nJodi\nKristine\nPriscilla\nRamona\nRonda\nDelores\nLee\nLillian\nNina\nNorma\nShelley\nTami\nVicky\nJuanita\nKellie\nTara\nAnnie\nErin\nLesley\nRoberta\nSally\nJo\nTeri\nChristy\nJane\nJune\nMaureen\nRobyn\nRuby\nValarie\nCheri\nEdith\nJeanne\nLorraine\nMona\nTia\nKelley\nLeah\nMarlene\nShelly\nAlisa\nDianne\nKristen\nLorie\nMiriam\nClaudia\nJanine\nJeannie\nKristi\nLourdes\nPam\nTracie\nAlison\nCaroline\nDesiree\nKristina\nLeigh\nLora\nSophia\nBobbie\nDarla\nMildred\nEmily\nEmma\nJoanna\nSue\nTonia\nVonda\nDaphne\nEileen\nFaith\nKendra\nMarjorie\nPatrice\nCeleste\nCherie\nClara\nLatonya\nLynette\nMarian\nNora\nPatty\nBonita\nCara\nDena\nDina\nFelecia\nGrace\nGretchen\nIris\nJody\nJosephine\nSonji\nAdrienne\nCarole\nElena\nEsther\nGeorgia\nIda\nSuzette\nAntoinette\nArlene\nDebora\nGayle\nLois\nLynne\nTrina\nBridgette\nCecilia\nDeidre\nElisa\nLydia\nMarion\nPaige\nWillie\nBillie\nDanielle\nIrene\nJan\nJeanine\nMarla\nMolly\nPauline\nRene\nRosemary\nSelina\nSusie\nBernice\nCandy\nDee\nJana\nLeanne\nLorrie\nMargie\nPatti\nValorie\nAlma\nBernadette\nBertha\nBetsy\nBobbi\nChris\nDora\nGeraldine\nIngrid\nJanette\nJessie\nMia\nMitzi\nPaulette\nTamela\nThelma\nAngelina\nAudra\nBridgett\nCristina\nEdna\nElla\nGladys\nGreta\nLawanda\nLucille\nMargarita\nRochelle\nRoxanne\nStefanie\nTonja\nAimee\nAmber\nAshley\nIvette\nKirsten\nKris\nLetitia\nLillie\nLorri\nLouise\nMeredith\nMisty\nMyra\nOlga\nPolly\nSilvia\nTammi\nTerrie\nAlesia\nBeatrice\nChristi\nDanette\nDeirdre\nDolores\nDoreen\nEthel\nFlorence\nGwen\nJames\nJennie\nJenny\nJerri\nKatie\nSelena\nTabitha\nWendi\nAda\nAlthea\nBeatriz\nDeana\nDeidra\nInez\nKerri\nKerry\nLana\nLucinda\nMadeline\nMarianne\nMercedes\nNadine\nPenelope\nRosalind\nRosetta\nTabatha\nUrsula\nVerna\nAlina\nAmelia\nAva\nCasandra\nCecelia\nChristie\nDaisy\nFrancine\nJanie\nKara\nLucy\nMarcy\nMichael\nMinnie\nMissy\nNaomi\nRena\nRobbie\nRosalyn\nStella\nSybil\nTania\nValeria\nVelma\nAngel\nDella\nEdwina\nGena\nGeneva\nGidget\nHilda\nIsabel\nIvonne\nLaurel\nMarcie\nMarva\nMaxine\nShawna\nSondra\nStaci\nTrudy\nVera\nAileen\nBethany\nChandra\nColette\nCora\nDeena\nErica\nHarriet\nHazel\nJacquline\nJanis\nJohnnie\nKimberlee\nKrista\nKristy\nLadonna\nLatonia\nLeann\nLeisa\nLeona\nLola\nShonda\nStacie\nSusana\nSusanne\nTamra\nAlberta\nAlexandra\nDelia\nDeloris\nDetra\nDona\nElise\nEstella\nEugenia\nHattie\nHelena\nIleana\nJeannette\nJeannine\nJeri\nJoelle\nKarin\nKatharine\nLaverne\nLea\nLenora\nLesa\nLisette\nLorene\nLuz\nMarta\nMattie\nMechelle\nMerry\nOlivia\nRandi\nRobbin\nSandi\nShauna\nTawana\nValencia\nViolet\nWilma\nZina\nAdrian\nAntonia\nAvis\nCandice\nCassie\nClaire\nClarissa\nClaudette\nDarcy\nEleanor\nElsie\nErnestine\nEunice\nGay\nJohn\nJosie\nLara\nLashawn\nLeila\nLynnette\nMandy\nMarcella\nMargo\nMelisa\nNanette\nPatsy\nPortia\nReba\nRomona\nRosemarie\nSaundra\nShanda\nShelby\nTwanda\nVickey\nAbby\nAlexis\nAndria\nAnthony\nBlanca\nBrooke\nCelia\nDiann\nElvira\nFrankie\nFreda\nGale\nGeorgina\nHelene\nJannie\nJodie\nJoni\nJulianne\nJustine\nKathie\nKimberlie\nLena\nLesia\nLeticia\nMalinda\nMarguerite\nMaritza\nMaryann\nMegan\nMichell\nMyrna\nNikki\nRae\nRaquel\nRebekah\nRenea\nRobert\nSabrena\nSallie\nSebrina\nSerena\nSharlene\nSharonda\nTamera\nTangie\nThomasina\nTonda\nTricia\nTrisha\nTwila\nVenus\nWilla\nAbigail\nArletha\nBarbra\nCamille\nCaridad\nCathryn\nChantel\nCharla\nCherri\nCherry\nChristian\nDawna\nElisabeth\nErika\nEvangeline\nFaye\nGia\nIrma\nJanna\nJenifer\nJocelyn\nJoycelyn\nJudi\nJuli\nKatheryn\nKay\nKecia\nLauri\nLou\nLouisa\nLucretia\nMaggie\nMalissa\nMari\nNannette\nPamala\nPearlie\nRachael\nRhoda\nRichard\nRonna\nRosalie\nSheron\nTawanda\nTeresita\nTherese\nWilliam\nWinifred\nZoe\nAdrianne\nAgnes\nAida\nAlfreda\nAlissa\nAllyson\nAntonette\nArnita\nBernita\nBonny\nCaren\nCarlette\nCourtney\nDayna\nDeanne\nDebbi\nDedra\nDionne\nDolly\nDorothea\nEdie\nEve\nFreddie\nGayla\nGeorgette\nGeri\nGertrude\nGracie\nIvy\nJacquelin\nJayne\nJewel\nJohanna\nJuliette\nKandace\nKarol\nKaryn\nKeli\nKristie\nLatanya\nLatrenda\nLatricia\nLavonda\nLesli\nLolita\nLoren\nLorna\nLory\nLula\nMae\nMamie\nMaribel\nMarina\nMarisa\nMelodie\nMelonie\nMelony\nMigdalia\nMindy\nMiranda\nNanci\nNichole\nOctavia\nPatrica\nRachelle\nRegena\nReginia\nRenae\nRoni\nRosie\nRoslyn\nShana\nSharron\nShellie\nSheree\nSusanna\nTasha\nTeressa\nWhitney\nWindy\nAbbie\nAlecia\nAleta\nAlisha\nAnglea\nArleen\nArnetta\nBenita\nBettina\nBobby\nBrandi\nBridgitte\nBrigitte\nCallie\nCarey\nCarmella\nCarroll\nCaryn\nCathleen\nCelestine\nCharita\nChiquita\nChrista\nCorinna\nDanita\nDavid\nDemetria\nErma\nEssie\nEtta\nEula\nFatima\nFelisha\nFontella\nFrancina\nFrancis\nGigi\nHilary\nIva\nJackeline\nJaime\nJeanie\nJeanna\nJosefina\nJuliet\nKandi\nKandy\nKari\nKasey\nKathlyn\nKaye\nKeri\nKrystal\nLeola\nLessie\nLetha\nLila\nLindy\nLissette\nLiz\nLizabeth\nLottie\nMadelyn\nMalisa\nMalvina\nMarchelle\nMarci\nMarlena\nMarlo\nMarni\nMarnie\nMarybeth\nMayra\nMellissa\nMelva\nMercy\nMuriel\nNicola\nNita\nNoelle\nPattie\nPaul\nPennie\nPrincess\nQueen\nRolanda\nRoseanne\nRuthie\nSadie\nScarlett\nSebrena\nShenita\nShirlene\nSophie\nSoraya\nSunday\nSuzanna\nTatia\nTawnya\nTerresa\nTobi\nTracee\nTrudi\nTuesday\nWende\nWillette\nZelda\nLisa\nKimberly\nMichelle\nMary\nAngela\nTammy\nMelissa\nKaren\nCynthia\nSusan\nPatricia\nPamela\nStephanie\nJennifer\nElizabeth\nSandra\nTina\nLaura\nDeborah\nTeresa\nSharon\nLinda\nDonna\nBarbara\nCheryl\nTracy\nAmy\nBrenda\nKelly\nWendy\nJulie\nDawn\nDebra\nLori\nChristine\nCarol\nTheresa\nRebecca\nRobin\nNancy\nDenise\nRhonda\nApril\nJacqueline\nMichele\nAndrea\nPaula\nKim\nChristina\nSheila\nTonya\nCarolyn\nMaria\nSherry\nSabrina\nLeslie\nValerie\nKathy\nDana\nMargaret\nTerri\nCatherine\nJanet\nWanda\nKatherine\nKathleen\nRegina\nCindy\nSuzanne\nJill\nCarla\nDiane\nGina\nJanice\nConnie\nStacey\nHeather\nSonya\nSherri\nBeverly\nDebbie\nTracey\nDiana\nBonnie\nDarlene\nFelicia\nMelinda\nDorothy\nLaurie\nKathryn\nMonica\nBetty\nMelanie\nRenee\nAnnette\nBeth\nSheri\nVirginia\nCathy\nYolanda\nShannon\nStacy\nShirley\nTamara\nTanya\nVictoria\nYvette\nAnita\nCharlotte\nVicki\nCassandra\nGloria\nLynn\nVeronica\nMartha\nSheryl\nKatrina\nJoyce\nAnna\nSarah\nVanessa\nDeanna\nJudy\nVickie\nAnn\nCarrie\nPenny\nGwendolyn\nRachel\nBelinda\nTraci\nAlicia\nNicole\nHolly\nLoretta\nJulia\nKelli\nMarie\nAmanda\nJudith\nPeggy\nHeidi\nSonja\nVivian\nAudrey\nHelen\nAnne\nCarmen\nCharlene\nShelia\nAlice\nJuanita\nMarilyn\nCrystal\nJodi\nSylvia\nJamie\nYvonne\nToni\nRuth\nMelody\nSamantha\nSara\nRose\nTerry\nTonia\nEvelyn\nKristin\nTammie\nTangela\nAllison\nAna\nFrances\nPhyllis\nEllen\nKimberley\nTiffany\nSonia\nDoris\nGail\nElaine\nShawn\nBridget\nJeanette\nJoy\nKelley\nKristine\nMarsha\nJessica\nNatalie\nRita\nCandace\nColleen\nConstance\nMonique\nShelly\nTara\nKristina\nPriscilla\nAngelia\nBecky\nGinger\nRosa\nShelley\nSophia\nLynda\nMia\nVicky\nJeanne\nNorma\nTami\nDaphne\nDesiree\nEmily\nJacquelyn\nLara\nLeah\nLorraine\nSherrie\nTeri\nErika\nMarlene\nValarie\nDianna\nGlenda\nKristen\nRobyn\nSally\nEva\nHope\nJean\nJoan\nLillian\nLora\nAngie\nMaureen\nShari\nCaroline\nLee\nSandy\nAlisa\nArlene\nBobbie\nBridgette\nJane\nKendra\nLynette\nMiriam\nAnnie\nCheri\nDena\nDina\nIrene\nJo\nKarla\nRonda\nTrina\nAdrienne\nChristie\nJackie\nJeannie\nKristi\nLeigh\nPaige\nAntoinette\nCherie\nDanielle\nDelores\nJoanne\nBernadette\nChristy\nLourdes\nMarcia\nRamona\nStefanie\nAudra\nEmma\nJoann\nLauren\nMarjorie\nSue\nTracie\nEdith\nErin\nLydia\nMisty\nEileen\nLatonya\nAlison\nDarla\nGladys\nPatti\nRoberta\nRuby\nTonja\nAretha\nCeleste\nClara\nGrace\nJana\nKellie\nMarla\nEdna\nFaith\nIris\nJeri\nJody\nKerry\nLorrie\nNina\nDebora\nJoanna\nKara\nLorie\nLucy\nMarian\nRosemary\nAimee\nAshley\nBertha\nDaisy\nErica\nMargarita\nPatrice\nPaulette\nRosalind\nWendi\nAngel\nBridgett\nCristina\nDeirdre\nDianne\nElena\nEsther\nGeorgia\nGreta\nJanine\nJerri\nJodie\nKari\nKay\nLenora\nLillie\nPam\nPatty\nRoxanne\nTrudy\nBillie\nCandy\nCecilia\nClaudia\nDeana\nEleanor\nEthel\nGeraldine\nJohnnie\nJosephine\nKerri\nLois\nMarianne\nTammi\nAmber\nCandice\nDee\nFaye\nJan\nJune\nLana\nLouise\nMelisa\nMolly\nOlga\nPauline\nTabatha\nTamela\nTia\nValencia\nValeria\nVera\nAlma\nDionne\nGretchen\nJanie\nKrista\nLesley\nLynne\nNikki\nRene\nRosalyn\nStaci\nWillie\nAlina\nBeatrice\nCecelia\nFelecia\nHarriet\nJanette\nKristy\nMarcy\nSebrina\nSuzette\nUrsula\nAlberta\nCara\nCathleen\nDeidre\nDora\nElisa\nKatie\nKirsten\nLadonna\nLatonia\nLauri\nLawanda\nLea\nLeanne\nLesa\nMeredith\nNaomi\nNora\nRena\nStacie\nTerrie\nThelma\nAlthea\nBetsy\nBobbi\nChristi\nDeena\nDeloris\nElla\nGena\nIda\nKimberlee\nLaurel\nMarion\nMichell\nMyra\nOlivia\nPatsy\nRochelle\nSondra\nStella\nSusanne\nBernice\nCamille\nCora\nDara\nDella\nDolores\nDoreen\nFlorence\nGayle\nGeneva\nHilda\nJenny\nKarin\nKristie\nMarcella\nMarta\nMercedes\nMildred\nMissy\nRachelle\nSaundra\nTabitha\nTeresita\nTricia\nAda\nAdriene\nBarbra\nBenita\nBonita\nCasandra\nChris\nEunice\nFrankie\nIngrid\nIvette\nJessie\nJoni\nKarrie\nKathie\nKeri\nLynnette\nMattie\nMichael\nNadine\nNanette\nRae\nRandi\nRosemarie\nSabrena\nSelena\nSerena\nValorie\nAdriana\nAlexandra\nAlisha\nAngelina\nBeatriz\nBessie\nCarole\nColette\nCourtney\nDeanne\nDemetria\nGabrielle\nJames\nLashawn\nMalinda\nMalissa\nNichelle\nOctavia\nShana\nShanda\nSharlene\nSharron\nSilvia\nTania\nTwila\nViola\nWilma\nAgnes\nAlesia\nAmelia\nAntionette\nAvis\nCarey\nChandra\nChiquita\nChrista\nClaudette\nDarcy\nDavid\nDeann\nDolly\nEugenia\nIlene\nIsabel\nJanelle\nJanis\nKaryn\nKris\nLaverne\nLena\nLisette\nLorri\nLucille\nMadeline\nMaggie\nMarci\nMargie\nMarisa\nMaxine\nMiranda\nMitzi\nNatasha\nPenelope\nPrincess\nRaquel\nRobert\nSelina\nShonda\nSusana\nSusie\nSybil\nTamra\nTawanda\nTowanda\nVikki\nViolet\nAbigail\nAileen\nAlana\nAndra\nAnissa\nBrandy\nDixie\nDorothea\nElisabeth\nErnestine\nHattie\nIrma\nJacquelin\nJami\nJanna\nJeannette\nJeannine\nJennie\nJocelyn\nKarie\nLatanya\nLiza\nLorena\nLou\nMara\nMarguerite\nMarnie\nMaryann\nMayra\nMechelle\nMegan\nMeri\nNoelle\nPolly\nRachael\nReba\nRobbin\nShauna\nShawna\nShelby\nSonji\nSusanna\nTamatha\nTamera\nTasha\nTracee\nVelma\nVernita\nVonda\nWilliam\nZandra\nAdrian\nAdrianne\nAlecia\nAlfreda\nAutumn\nBethany\nBlanca\nBrandi\nBrooke\nBuffy\nCamilla\nCarolina\nCarroll\nCaryn\nCharmaine\nDale\nDanita\nDona\nEstella\nFrancine\nGale\nGeorgianna\nHelena\nHilary\nHillary\nJacki\nJacquline\nJeanie\nJeanine\nJenifer\nJosette\nJudi\nKatharine\nKathrine\nKaye\nKimberli\nKrystal\nLeann\nLeona\nLesia\nLetha\nLetitia\nLila\nLissette\nLizzie\nLolita\nLorna\nLucinda\nMandy\nMargo\nMimi\nMinnie\nNellie\nPortia\nPrecious\nRenita\nRoslyn\nSheree\nTawana\nTijuana\nTrisha\nVenus\nAdriane\nAllyson\nAmie\nAndria\nAngeline\nAnnetta\nAntonia\nAundrea\nBeverley\nCandi\nCaren\nCasey\nCelestine\nCharles\nCharlette\nChristopher\nClaire\nDanelle\nDanette\nDania\nDaniel\nDawne\nDeidra\nDollie\nDorinda\nEstelle\nEvette\nFrancis\nGeorgina\nGraciela\nHarriett\nIvy\nJanell\nJeana\nJewell\nJohn\nJuliana\nJustina\nKarol\nKecia\nKristal\nLatricia\nLavette\nLeila\nLesli\nLeticia\nLibby\nLinette\nMadelyn\nMadonna\nMarlo\nMarva\nMavis\nMelissia\nMellissa\nMindy\nMona\nMyrtle\nNoel\nOpal\nPamala\nPetra\nPhoebe\nQueen\nRetha\nRobbie\nRuthie\nSharonda\nShellie\nSherryl\nSimone\nSusannah\nSuzanna\nTanja\nTosha\nTwanda\nWhitney\nWilla\nWillette\nWindy\nAlissa\nAngelica\nAngella\nAnjanette\nAnnmarie\nArlisa\nAva\nBettina\nBlanche\nBonny\nBrigette\nBrigitte\nCallie\nCammie\nCaridad\nCarlotta\nCaron\nCelia\nCharla\nCharleen\nChenita\nCindi\nConsuelo\nDavina\nDayna\nDeedee\nDemetra\nDenice\nDiann\nDonald\nEdie\nElicia\nElise\nElsie\nElyse\nEricka\nEvangeline\nEve\nGigi\nGlenna\nGwen\nIlona\nIvonne\nJamey\nJannie\nJerrie\nJewel\nJoelle\nJohanna\nJon\nJuana\nJuli\nJulianne\nJuliet\nJuliette\nKatrice\nKerrie\nKimberlie\nLanora\nLarissa\nLeeann\nLeisa\nLela\nLeola\nLola\nLoren\nLoria\nLuz\nLyn\nMadeleine\nMae\nMagda\nMamie\nMaribel\nMarina\nMaritza\nMarlen\nMartina\nMelodie\nMelonie\nMelony\nMelynda\nMollie\nMyla\nNanci\nNannette\nNatalia\nNiki\nPennie\nQuanda\nRegena\nReginald\nRenae\nRonna\nRonnie\nRosetta\nRosie\nRoxann\nSadie\nSandi\nShea\nSherie\nSonjia\nSubrina\nTana\nTawanna\nTena\nTeressa\nTessa\nThalia\nTisha\nTonda\nValery\nVerna\nVickey\nWinifred\nYolonda\nLisa\nKimberly\nMichelle\nTammy\nMelissa\nJennifer\nAngela\nMary\nCynthia\nKaren\nPamela\nLaura\nPatricia\nElizabeth\nSusan\nStephanie\nTina\nKelly\nTracy\nDonna\nSharon\nDeborah\nSandra\nDawn\nTeresa\nBarbara\nLinda\nLori\nChristine\nJulie\nAmy\nCheryl\nWendy\nBrenda\nRebecca\nRobin\nDenise\nTheresa\nMichele\nRhonda\nCarol\nDebra\nTonya\nNancy\nChristina\nShannon\nAndrea\nMaria\nSherry\nJacqueline\nPaula\nSheila\nCatherine\nLeslie\nStacey\nApril\nKatherine\nRegina\nYolanda\nCarolyn\nMargaret\nKathleen\nHeather\nDana\nKathy\nValerie\nStacy\nCindy\nKim\nMonica\nMelanie\nCarla\nSuzanne\nWanda\nJill\nTerri\nVictoria\nGina\nSonya\nTracey\nJanet\nDiane\nDiana\nTanya\nSamantha\nFelicia\nSabrina\nAlicia\nMelinda\nSherri\nAnn\nBeverly\nJanice\nConnie\nRenee\nDeanna\nGloria\nTammie\nRachel\nAnnette\nSarah\nKathryn\nCassandra\nTamara\nBonnie\nLaurie\nVicki\nKatrina\nAnita\nCarrie\nNatalie\nAnna\nVeronica\nVirginia\nMartha\nAmanda\nHolly\nSheryl\nBelinda\nBeth\nDebbie\nDarlene\nJoyce\nBetty\nTara\nTraci\nDorothy\nJulia\nJoy\nLynn\nRuth\nShirley\nCarmen\nCharlene\nNicole\nSheri\nVanessa\nYvonne\nSylvia\nAnne\nVickie\nHelen\nJudith\nAllison\nFrances\nKelli\nCathy\nToni\nKristin\nSonja\nHeidi\nJodi\nKristen\nGwendolyn\nYvette\nCharlotte\nChristy\nEvelyn\nKimberley\nKristina\nVivian\nJudy\nMarie\nDanielle\nShelly\nBridget\nJacquelyn\nJuanita\nPenny\nTerry\nKellie\nMelody\nTiffany\nAna\nCrystal\nLoretta\nMarilyn\nRose\nShawn\nErika\nLatonya\nSara\nSherrie\nSonia\nAngie\nJamie\nKelley\nAlice\nCandace\nConstance\nLara\nPeggy\nRita\nRonda\nShelia\nJane\nKristine\nMarlene\nPhyllis\nPriscilla\nTonia\nAngelia\nDoris\nJackie\nSandy\nTami\nGail\nJo\nRobyn\nAudrey\nColleen\nDaphne\nElaine\nErin\nTracie\nDina\nLee\nTeri\nAlisa\nBecky\nCheri\nLeigh\nLora\nShari\nGlenda\nJoann\nLeah\nLorraine\nShelley\nTangela\nAdrienne\nCristina\nJeanette\nJoanne\nKerry\nVicky\nCaroline\nJean\nJessica\nJoanna\nLaurel\nRoberta\nEmily\nLauren\nMaureen\nMonique\nRosa\nTammi\nChristie\nDianne\nEllen\nMarcia\nLorie\nLynda\nMia\nValarie\nEdith\nJoan\nKristi\nNorma\nStaci\nAlison\nDianna\nHope\nLillian\nCandy\nDena\nGinger\nMisty\nChandra\nIrene\nMarsha\nMiriam\nPaige\nPatrice\nSophia\nTabatha\nTrina\nBridgette\nDesiree\nFaith\nJeanne\nJody\nLesley\nRaquel\nRuby\nTabitha\nAnnie\nBillie\nBobbie\nElisa\nKarin\nKerri\nPauline\nTricia\nAntoinette\nAudra\nClaudia\nDarla\nDeana\nGrace\nLynette\nPam\nTonja\nEva\nJanie\nJeannie\nKarla\nLois\nLourdes\nAmber\nGeraldine\nJosephine\nJune\nKrista\nPatty\nAngel\nArlene\nBernadette\nCandice\nCherie\nIris\nJana\nKristie\nLadonna\nMarjorie\nMarla\nMelisa\nRosemary\nSally\nTerrie\nCecilia\nGladys\nKari\nLydia\nPatti\nRamona\nSue\nSuzette\nCourtney\nErica\nEsther\nGeorgia\nJeri\nLawanda\nMercedes\nPaulette\nStacie\nSusanne\nTamatha\nAshley\nDebora\nDionne\nJenny\nKendra\nKristy\nLenora\nMarion\nNatasha\nNina\nUrsula\nEdna\nElena\nEmma\nGayle\nGretchen\nJodie\nKara\nKirsten\nRene\nWendi\nAimee\nAretha\nBonita\nBridgett\nChrista\nChristi\nClara\nDella\nDelores\nEileen\nFlorence\nJanine\nMechelle\nMolly\nSilvia\nTania\nAngelique\nAnissa\nCathleen\nIda\nIsabel\nKatie\nLana\nLeanne\nPenelope\nRachael\nRosalind\nRosalyn\nSusie\nVera\nVonda\nWillie\nBeatrice\nBertha\nBetsy\nCara\nClarissa\nDaisy\nFelecia\nLashawn\nLeann\nMarian\nMarlo\nMaryann\nMeredith\nMyra\nNanette\nOlga\nRena\nRochelle\nAlma\nAva\nCasandra\nCeleste\nDeanne\nDeena\nElla\nIvette\nJames\nJennie\nJerri\nLea\nLissette\nLorrie\nLouise\nLucinda\nLucy\nMarcy\nMarta\nMona\nRobbin\nSerena\nTamera\nTawana\nAileen\nAngelina\nBethany\nBrandy\nCarole\nCecelia\nColette\nCoretta\nDanita\nDora\nGena\nJocelyn\nKay\nMargie\nMaxine\nMitzi\nNaomi\nNichelle\nNikki\nRosemarie\nShana\nSondra\nValencia\nWilliam\nAdrian\nAlina\nBenita\nBernice\nBobbi\nCaridad\nHenrietta\nJulianne\nKeri\nKimberlee\nLesa\nLillie\nMargarita\nMarisa\nMarnie\nMegan\nMichael\nMichell\nNora\nPolly\nRenita\nSelena\nShonda\nWindy\nAdriana\nAmelia\nCari\nChris\nEleanor\nFrancine\nIleana\nJanelle\nJeannette\nJeannine\nKris\nLisette\nLorri\nMalissa\nMarci\nMarcie\nMarianne\nMildred\nStacia\nTasha\nTrisha\nVikki\nAdriane\nAlexandra\nAllyson\nAlthea\nAntonia\nBrandi\nBuffy\nCaren\nDoreen\nElisabeth\nElise\nEricka\nGeneva\nIngrid\nJami\nJan\nJeanie\nJeanine\nLetitia\nLizette\nLolita\nLynne\nMadeline\nMandy\nMiranda\nPatrica\nRebekah\nRoxanne\nSusana\nTamela\nTamiko\nTamra\nTawanna\nTrudy\nValorie\nAda\nAlberta\nAnnmarie\nAntionette\nCarolina\nCaryn\nCinnamon\nClaudine\nDarcy\nDemetria\nDoretha\nEunice\nFaye\nGay\nGwen\nHazel\nJenifer\nJolie\nKathrine\nLatanya\nLaverne\nLeona\nLeticia\nMalinda\nMarcella\nMaritza\nMattie\nMissy\nOlivia\nRobbie\nRosie\nSabrena\nSallie\nSebrina\nSelina\nShanda\nShawna\nThelma\nTia\nVelma\nWhitney\nWinifred\nAlesia\nAlexis\nAnastasia\nAnjanette\nBrigette\nBrigitte\nCathryn\nCelia\nDanna\nDavina\nDedra\nDeirdre\nDelia\nDorinda\nEstelle\nEugenia\nFlora\nGale\nGeorgina\nHelena\nIrma\nIvy\nJanis\nJewel\nKaron\nLahoma\nLatonia\nLuz\nMilagros\nMindy\nMinnie\nNedra\nPamala\nRae\nRobert\nSaundra\nShelby\nStefanie\nSuzy\nAbby\nAdrianne\nAlfreda\nBeatriz\nCharity\nCora\nDeidra\nDeidre\nDorothea\nEdie\nElissa\nEssie\nEstella\nFrankie\nGreta\nHarriet\nIvonne\nJacquelin\nJohnnie\nJoni\nJuana\nJudi\nJuli\nKenneth\nLashan\nLasonya\nLatasha\nLatricia\nLeanna\nLeila\nLorena\nLucille\nMachelle\nMargo\nNadine\nNannette\nNatalia\nNoelle\nPatsy\nRichelle\nRoxana\nSharlene\nSharron\nShaun\nTamika\nTarsha\nTawanda\nTowanda\nTreva\nValeria\nVernita\nWilma\nZelda\nAbigail\nAlisha\nAlycia\nAlysia\nAnnemarie\nAvis\nBlanca\nCameron\nCarey\nCarmel\nCassie\nCatrina\nChanda\nCharisse\nCharles\nCherry\nCindi\nClaudette\nConsuelo\nCorinna\nDale\nDanette\nDania\nDara\nDayna\nDee\nDeloris\nDona\nElvira\nElyse\nErma\nEthel\nEtta\nEvette\nFannie\nFrancis\nGerri\nHannah\nHilary\nHollie\nIna\nInez\nJanel\nJanell\nJeanna\nJena\nJessie\nJoelle\nJoycelyn\nKandi\nKarlene\nKaryn\nKecia\nKevin\nKrystal\nLashaun\nLauri\nLavonda\nLenore\nLesia\nLoren\nLorene\nLucretia\nMabel\nMaggie\nMamie\nMara\nMari\nMarisol\nMayra\nMellissa\nMollie\nNellie\nNicola\nNoel\nPage\nPortia\nRachelle\nRoni\nRonnie\nRosetta\nRoslyn\nSarita\nShanon\nShauna\nShawanda\nSherie\nSonji\nStella\nTena\nTerra\nTess\nThea\nTimothy\nVenus\nVerna\nWillette\nAdrianna\nAlecia\nAlyssa\nAmie\nAngeline\nAnnetta\nAntonette\nAurora\nBette\nBrenna\nBrian\nBrooke\nBuffie\nCarin\nCarlene\nCary\nCasey\nCelina\nChantel\nCharla\nChrissy\nColeen\nCristal\nDallas\nDannielle\nDavid\nDawna\nDeedee\nDelisa\nDemetra\nDenice\nDolores\nEdwina\nElsie\nEve\nGabrielle\nGennifer\nGeorgette\nHarriett\nHattie\nHelene\nHilda\nIdella\nJacquline\nJacqulyn\nJanette\nJanna\nJaqueline\nJoey\nJohanna\nJohnna\nJosie\nJulianna\nJuliet\nJuliette\nKarrie\nKatharine\nKatheryn\nKatina\nKaty\nKerrie\nLacey\nLashon\nLasonja\nLatarsha\nLatrice\nLeeann\nLela\nLena\nLiana\nLiza\nLola\nLory\nLou\nLuann\nLynnette\nMarcelle\nMarguerite\nMarni\nMarva\nMarybeth\nMelissia\nMellisa\nMelodie\nNichole\nNilda\nNoemi\nOctavia\nOretha\nPetra\nPhaedra\nReba\nRenea\nRhoda\nRonald\nRosanna\nScarlett\nShalonda\nShane\nShannan\nShellie\nSusanna\nSuzan\nSybil\nTabetha\nTamie\nTereasa\nTeresita\nTeressa\nTerrell\nTessa\nTherese\nThresa\nTony\nTosha\nTowanna\nTwanda\nViolet\nWilla\nLisa\nKimberly\nMichelle\nJennifer\nAngela\nTammy\nMelissa\nMary\nLaura\nKaren\nTracy\nStephanie\nPamela\nElizabeth\nCynthia\nKelly\nPatricia\nAmy\nSusan\nSandra\nJulie\nDonna\nShannon\nDeborah\nChristine\nTeresa\nTina\nSharon\nLori\nWendy\nDawn\nBarbara\nRebecca\nLinda\nRhonda\nHeather\nChristina\nTonya\nCheryl\nMichele\nBrenda\nRobin\nTheresa\nDebra\nDenise\nAndrea\nCatherine\nNicole\nNancy\nCarol\nSherry\nJacqueline\nLeslie\nApril\nStacey\nMaria\nPaula\nRegina\nCarolyn\nSheila\nDana\nKatherine\nValerie\nStacy\nTracey\nKathleen\nMonica\nSabrina\nSuzanne\nVictoria\nYolanda\nMelinda\nCarla\nKathy\nSherri\nMelanie\nKim\nRachel\nCindy\nMargaret\nTanya\nJanet\nLaurie\nWanda\nGina\nDiana\nTerri\nAnn\nJulia\nTamara\nTraci\nSarah\nHolly\nKathryn\nSonya\nCassandra\nTara\nConnie\nSamantha\nDeanna\nJill\nBonnie\nAnita\nRenee\nFelicia\nVirginia\nAlicia\nDiane\nJanice\nAnna\nCarrie\nMartha\nSheri\nVeronica\nVicki\nAnnette\nNatalie\nBeth\nKatrina\nTammie\nCharlotte\nVanessa\nAmanda\nBeverly\nKellie\nJodi\nJoyce\nFrances\nCathy\nKristin\nShawn\nAnne\nChristy\nHeidi\nBetty\nShirley\nTiffany\nToni\nDorothy\nKelli\nCrystal\nDarlene\nGloria\nDebbie\nYvonne\nCarmen\nCharlene\nPenny\nAlice\nHelen\nPeggy\nTricia\nKristen\nRobyn\nJudy\nSheryl\nSylvia\nBelinda\nLynn\nShelly\nYvette\nAudrey\nTrina\nJessica\nJoy\nAllison\nErika\nShelia\nErin\nJamie\nKristina\nMarie\nDanielle\nErica\nSara\nVickie\nDina\nLatonya\nRita\nGwendolyn\nRuth\nCandace\nLeigh\nTami\nCaroline\nGlenda\nKara\nLoretta\nEvelyn\nKimberley\nPriscilla\nSonia\nElaine\nKristine\nSonja\nTangela\nTonia\nJacquelyn\nMarilyn\nJean\nShelley\nJuanita\nJudith\nKelley\nMelody\nRonda\nTerry\nMarlene\nColleen\nJackie\nLora\nSandy\nTabitha\nAna\nBobbie\nKristi\nLara\nLeah\nRosa\nTracie\nGinger\nKarla\nKerry\nRose\nAngelia\nBridget\nCheri\nDeana\nLillian\nMarsha\nAshley\nJoanna\nAngie\nLauren\nRoberta\nStaci\nAdrienne\nDena\nEdith\nJeanette\nJo\nSherrie\nVivian\nAlisa\nBecky\nCandy\nDaphne\nDoris\nEllen\nEmily\nEva\nLorrie\nLynda\nStacie\nIris\nJeanne\nJoan\nJoann\nLourdes\nMonique\nPhyllis\nSophia\nAlison\nCherie\nHope\nKerri\nMarcia\nSally\nCristina\nDianna\nJane\nPaige\nValarie\nAimee\nAngel\nAnnie\nChandra\nConstance\nJoanne\nLorraine\nRachael\nShari\nTammi\nVicky\nLee\nMaureen\nNorma\nSerena\nShana\nChristie\nMarla\nNina\nClaudia\nGail\nLashawn\nLorie\nElena\nIrene\nJody\nLucinda\nMeredith\nMisty\nCandice\nLaurel\nLesley\nMiriam\nTabatha\nTania\nTeri\nAntoinette\nAudra\nBeatrice\nEileen\nRoxanne\nTrisha\nArlene\nBridgett\nBridgette\nJeannie\nLouise\nNatasha\nRaquel\nRuby\nDesiree\nKristy\nRamona\nAngelique\nBeatriz\nDianne\nGretchen\nJenny\nKendra\nKeri\nLawanda\nMarlo\nPatrice\nPaulette\nSue\nAmber\nBillie\nElisa\nKari\nKirsten\nKrista\nMarjorie\nPatty\nShawna\nSusie\nAnissa\nBernadette\nCara\nChristi\nDionne\nFelecia\nJana\nJenifer\nJune\nLana\nLisette\nMolly\nRosalind\nSebrina\nWillie\nDarla\nDebora\nEleanor\nFaith\nGladys\nKatie\nLynette\nMichael\nNichole\nRochelle\nSelena\nAlexandra\nAngelina\nCarole\nCecilia\nJan\nJodie\nKarin\nLatonia\nLucy\nLydia\nMargarita\nMindy\nRosemary\nSilvia\nSondra\nValencia\nVera\nAlina\nBethany\nCasandra\nClara\nEmma\nJanette\nKatharine\nLynne\nMia\nMildred\nMona\nRachelle\nShanna\nTerrie\nTonja\nAdriana\nDeena\nDeirdre\nEdna\nEricka\nEugenia\nIngrid\nIvette\nJeri\nJerri\nKimberlee\nKristie\nMarcy\nOlga\nRene\nTamatha\nTia\nWendi\nAmelia\nBertha\nChris\nCoretta\nCourtney\nDelores\nGeorgia\nJeanine\nJosephine\nLena\nMadeline\nMargie\nMarianne\nStefanie\nSusanne\nSuzette\nUrsula\nBobbi\nBonita\nChiquita\nDeidra\nDeidre\nElisabeth\nGeraldine\nHilary\nIda\nJanie\nJanine\nJeannette\nJessie\nLatasha\nLauri\nLissette\nMaggie\nRena\nRosalyn\nShauna\nTamela\nTamra\nTasha\nAretha\nBrooke\nCamille\nCathleen\nCeleste\nDara\nDora\nEsther\nGabrielle\nGrace\nIsabel\nJennie\nJuliet\nLadonna\nLatanya\nMercedes\nMyra\nNaomi\nNikki\nNora\nAdrian\nClaire\nDania\nDeann\nGena\nJoni\nLenora\nLesa\nLillie\nLorna\nLynnette\nMalinda\nMarci\nMelisa\nMellissa\nNoelle\nRebekah\nSaundra\nSharonda\nSharron\nShelby\nBernice\nBrandi\nCarey\nCaridad\nCatrina\nClaudine\nDee\nDoreen\nElla\nEthel\nGeneva\nGwen\nJames\nJohn\nJulianne\nKay\nKeisha\nLatricia\nLucretia\nMarian\nMarion\nMarisol\nMissy\nPamala\nPatti\nPauline\nPenelope\nRobert\nTamera\nTawana\nTeresita\nTisha\nValeria\nWilma\nAlana\nAlma\nAnnmarie\nAvis\nCharity\nClarissa\nDanita\nEunice\nFaye\nFlorence\nHelena\nHilda\nIrma\nIvy\nJocelyn\nKaryn\nLea\nLorri\nMalissa\nMarcella\nMargo\nMarni\nMarva\nMayra\nMegan\nNadine\nRenita\nSandi\nShannan\nSheree\nShonda\nStacia\nTarsha\nTwyla\nAbby\nAdrianne\nAileen\nAlisha\nAlthea\nAnastasia\nBrandy\nChrista\nDaisy\nDeanne\nDeloris\nEdwina\nErnestine\nFrankie\nGayle\nIna\nJohnnie\nKenya\nLanette\nLetitia\nLizette\nLolita\nMarcie\nMari\nMaritza\nMarnie\nMaryann\nMellisa\nNanette\nPatsy\nRosetta\nThelma\nValorie\nVikki\nWhitney\nAbigail\nAda\nAlecia\nAlissa\nAmie\nBetsy\nBuffy\nCarolina\nCecelia\nCharlette\nChelsea\nChristal\nDale\nDanna\nDavid\nDedra\nDemetria\nDona\nElsa\nFrancine\nGeorgette\nHarriet\nHazel\nHillary\nJacquline\nJami\nJanis\nJohanna\nLashon\nLatrice\nLeanne\nLeona\nLibby\nLiza\nLois\nMindi\nMiranda\nMyrna\nOlivia\nPam\nRichelle\nRobbie\nRosalinda\nSelina\nShanon\nShawanda\nSimone\nTamika\nTracee\nTresa\nWilliam\nWindy\nYolonda\nZandra\nAntionette\nBenita\nBessie\nCamilla\nCandi\nCarlene\nCaryn\nCasey\nCornelia\nDawna\nDebrah\nDenice\nDixie\nGeri\nJaime\nJanel\nJanelle\nJoelle\nJosette\nJoycelyn\nJuli\nJuliette\nKandi\nKimberely\nLashanda\nLatosha\nLeann\nLeila\nLeticia\nLidia\nLola\nLula\nLuz\nMandy\nMara\nMattie\nMelodie\nMichell\nMillicent\nMimi\nMitzi\nPatrica\nPatrina\nPennie\nRae\nRosemarie\nRosie\nRuthie\nSallie\nSebrena\nShane\nShani\nSharlene\nShawanna\nStarla\nStella\nStephaine\nStephenie\nTawanna\nTeressa\nTrudy\nTwila\nVerna\nVonda\nAdina\nAlexandria\nAlycia\nAndria\nAngella\nAnglea\nAnnemarie\nAnthony\nAntonia\nAthena\nAundrea\nCaren\nCary\nCharisse\nCharles\nCherry\nCristy\nDanette\nDarby\nDarcy\nDayna\nDelia\nDione\nDolores\nDominique\nDonald\nDorothea\nElsie\nEvette\nGenevieve\nGeorgianna\nGia\nGilda\nGiselle\nGreta\nHattie\nHelene\nIleana\nIlene\nInga\nIvonne\nJaneen\nJeannine\nJena\nJoetta\nKathrine\nKimberli\nKrystal\nLaronda\nLashonda\nLaticia\nLatrina\nLenore\nLinette\nLonnie\nLory\nLottie\nLou\nMaura\nMaxine\nMeg\nMelba\nMelony\nMercy\nMisti\nNichelle\nNoel\nPetrina\nPhoebe\nPortia\nRandi\nRetha\nRomona\nRonna\nRosanna\nSabrena\nSerina\nShiela\nSusana\nSybil\nTangie\nTess\nTisa\nTrena\nTrish\nTwanda\nVernita\nYolando\nYulonda\nAdriane\nAgnes\nAlberta\nAllyson\nAlyson\nAndra\nAngelita\nArnita\nAva\nBarbra\nBettina\nBobby\nBonny\nBrenna\nBrigitte\nCalandra\nCandance\nCari\nCatharine\nCharlie\nChristopher\nCinnamon\nColette\nCollette\nCorrina\nCory\nDella\nDinah\nDonya\nEliza\nEna\nEvangeline\nEve\nFlora\nHarriett\nHenrietta\nJoseph\nJuliana\nKarey\nKasandra\nKaye\nKayla\nKecia\nKenneth\nKevin\nKimberlie\nKimmy\nKris\nKristal\nKristyn\nLarae\nLavetta\nLeeann\nLetha\nLoraine\nLorene\nMagaly\nMamie\nMarguerite\nMartina\nMarty\nMechelle\nMeri\nMerrilee\nMerry\nMichaela\nMollie\nNannette\nNiki\nOdessa\nPearl\nRegena\nRhea\nSadie\nSandie\nSarita\nShanda\nSharman\nSherria\nShondra\nStephany\nSusanna\nSuzan\nSydney\nTawanda\nThea\nTherese\nThomasina\nTish\nTori\nTreva\nViola\nViolet\nWendie\nJennifer\nKimberly\nLisa\nMichelle\nAngela\nMelissa\nTammy\nMary\nTracy\nStephanie\nAmy\nElizabeth\nPatricia\nKaren\nPamela\nShannon\nDawn\nLaura\nJulie\nCynthia\nSusan\nTina\nKelly\nChristine\nHeather\nLori\nWendy\nDonna\nSandra\nTeresa\nDeborah\nSharon\nBarbara\nRebecca\nTonya\nMichele\nChristina\nNicole\nRobin\nCheryl\nRhonda\nSabrina\nLinda\nBrenda\nAndrea\nTheresa\nDebra\nDenise\nStacey\nStacy\nNancy\nSherry\nApril\nJacqueline\nMaria\nTara\nTracey\nPaula\nCatherine\nKatherine\nLeslie\nDana\nMonica\nCarolyn\nRegina\nCarla\nCarol\nTanya\nTiffany\nVictoria\nKathleen\nYolanda\nCindy\nKathy\nAmanda\nHolly\nRachel\nTraci\nGina\nJill\nAlicia\nWanda\nCarrie\nMelanie\nDeanna\nTamara\nFelicia\nSheila\nMargaret\nCassandra\nKim\nValerie\nDiana\nKathryn\nMelinda\nRenee\nKatrina\nSuzanne\nAnn\nAllison\nLaurie\nSarah\nSheri\nSonya\nSherri\nAnita\nTerri\nJanet\nJessica\nKelli\nSamantha\nVicki\nDiane\nVanessa\nVirginia\nBeverly\nJanice\nConnie\nCrystal\nTammie\nErin\nChristy\nVeronica\nDorothy\nBonnie\nKristin\nJulia\nBeth\nAnna\nKristina\nCathy\nDebbie\nAnnette\nErika\nLynn\nShawn\nCharlotte\nJoyce\nNatalie\nJodi\nDanielle\nGloria\nHeidi\nKristen\nDarlene\nJoy\nMartha\nTracie\nSylvia\nToni\nAnne\nCarmen\nFrances\nShelley\nShirley\nTricia\nJamie\nBetty\nErica\nGwendolyn\nKristi\nTrina\nCandace\nYvonne\nPeggy\nShelly\nCharlene\nJeanette\nPenny\nSheryl\nStacie\nKellie\nMelody\nKimberley\nLeigh\nSonia\nSonja\nHelen\nMarie\nVickie\nBecky\nColleen\nDena\nRobyn\nKristine\nAlice\nCheri\nEvelyn\nKelley\nKrista\nRuth\nYvette\nAna\nAlison\nBelinda\nDina\nJacquelyn\nTonia\nAshley\nLoretta\nMarsha\nMeredith\nSara\nKristie\nVivian\nAngel\nAudrey\nEmily\nJackie\nLatonya\nPriscilla\nPatrice\nRonda\nBobbie\nBridget\nKerry\nLara\nMarilyn\nAngelia\nJean\nKendra\nTangela\nTerry\nDeana\nGinger\nMonique\nSandy\nTabitha\nAimee\nConstance\nKarla\nLourdes\nRose\nStaci\nTami\nElaine\nJody\nJudy\nLeah\nShelia\nAdrienne\nCaroline\nJeannie\nJoanne\nKara\nKristy\nMarcia\nNatasha\nCristina\nHope\nJeanne\nLashawn\nLorraine\nWendi\nAngelique\nBridgette\nEllen\nKerri\nPhyllis\nRita\nAlisa\nAntoinette\nDoris\nJudith\nBillie\nChrista\nJenny\nNorma\nAngie\nCandy\nDianne\nIris\nJoanna\nLora\nClaudia\nJane\nJoann\nJuanita\nPaulette\nRosa\nDaphne\nSherrie\nEva\nJo\nLauren\nMaureen\nSophia\nAmber\nChristie\nLee\nMarlene\nShari\nTammi\nBrandy\nChandra\nGlenda\nJoan\nKeri\nLaurel\nLawanda\nLorie\nRuby\nShana\nStefanie\nVicky\nArlene\nGretchen\nMisty\nRamona\nRoberta\nRochelle\nSuzette\nJenifer\nKari\nLynda\nNina\nShawna\nValarie\nAngelina\nAnissa\nCandice\nCecilia\nEricka\nJanie\nLesley\nRaquel\nSally\nTeri\nCherie\nDesiree\nDionne\nGail\nIngrid\nJana\nKarin\nLydia\nMarla\nRachael\nShanna\nSusana\nAnnie\nAudra\nDora\nSondra\nTabatha\nTasha\nVera\nDianna\nEileen\nGrace\nIsabel\nLatonia\nLillian\nLissette\nLucinda\nLynette\nMarcy\nNichole\nPaige\nRachelle\nSebrina\nAlexandra\nBrooke\nJodie\nMarjorie\nMegan\nMildred\nMolly\nNikki\nRosemary\nBobbi\nBridgett\nCamille\nCeleste\nEdna\nJeannette\nJune\nKatie\nKirsten\nMelisa\nMiriam\nNadine\nBeatrice\nDeidre\nEdith\nElena\nIvette\nLenora\nMarion\nMarlo\nSerena\nShonda\nSusie\nTrisha\nCarole\nCaryn\nEmma\nJeanine\nJeri\nLatanya\nLena\nOlga\nSelena\nTania\nAmie\nBernadette\nDeena\nElisa\nFaith\nKeisha\nLatasha\nLeticia\nMarianne\nMichael\nSandi\nAretha\nBeatriz\nCasey\nDavid\nDelores\nEsther\nIrene\nJanine\nJeannine\nLashonda\nLorrie\nMalissa\nMarcella\nMyra\nNanette\nRebekah\nRene\nRosalind\nRosalyn\nSharonda\nShauna\nTamatha\nTamela\nAileen\nAlina\nCarey\nChristi\nClara\nCourtney\nDebora\nDoreen\nElisabeth\nFlorence\nGeraldine\nHillary\nJessie\nLana\nLea\nLeanne\nLisette\nMargie\nMercedes\nMindy\nVonda\nBuffy\nCatrina\nDara\nDarcy\nEleanor\nEugenia\nFelecia\nGayle\nJohanna\nKrystal\nMarci\nMargarita\nMarnie\nMissy\nPatti\nRandi\nRoxanne\nShelby\nTeresita\nTia\nTisha\nTonja\nValencia\nWindy\nAbigail\nAdriana\nAmelia\nAnnmarie\nCara\nCasandra\nCassie\nChanda\nDanette\nDarla\nDeanne\nDeloris\nJames\nJanette\nJeanie\nJerri\nJosephine\nJuliet\nLeann\nLynne\nMadeline\nMarcie\nMarisol\nMaryann\nOlivia\nThelma\nTrena\nWhitney\nBertha\nBethany\nBrandi\nCandi\nCoretta\nDaisy\nDeidra\nGeorgina\nGladys\nGreta\nJuliette\nKay\nKenya\nKimberlee\nLatrice\nLizbeth\nLouise\nMichell\nNaomi\nOctavia\nRena\nSilvia\nTerra\nTobi\nVikki\nAda\nAdrian\nAdrianne\nAlexis\nAnastasia\nAva\nBetsy\nCathleen\nCecelia\nClaudine\nGabrielle\nHarriet\nIleana\nIndia\nJami\nKerrie\nLois\nMaritza\nMia\nPatsy\nPauline\nPolly\nPrecious\nRobert\nRosetta\nShanda\nSharron\nShellie\nSue\nTerrie\nTwanda\nUrsula\nValeria\nAntionette\nBenita\nBernice\nCaridad\nCelia\nCharity\nChristian\nChristopher\nColette\nDeirdre\nDona\nFrancine\nFrankie\nInga\nJanna\nJeana\nJocelyn\nJosette\nKatharine\nKecia\nLillie\nLorri\nLory\nMarva\nMercy\nMona\nNoelle\nNora\nPamala\nPenelope\nSelina\nShanon\nStacia\nTamika\nTarsha\nTeressa\nAdriane\nAlisha\nAlthea\nAlyssa\nAmi\nBobby\nDedra\nDolores\nDori\nElissa\nEthel\nGena\nGenevieve\nHazel\nIda\nIrma\nJeanna\nJennie\nKarrie\nKesha\nLetitia\nLucretia\nLucy\nLuisa\nLynnette\nMaggie\nMalinda\nMaxine\nMechelle\nMellissa\nMisti\nMollie\nRenae\nRobbie\nShannan\nTamra\nTawanda\nTomeka\nValorie\nYolonda\nAdria\nAlana\nAlecia\nAlexa\nAlfreda\nAlissa\nBonita\nCari\nCharmaine\nChelsea\nChris\nChrystal\nClaire\nDania\nDarby\nDella\nDemetria\nEdwina\nElla\nErma\nErnestine\nEve\nEvette\nFelisha\nGeorgette\nGeorgia\nHelena\nJan\nJanel\nJanelle\nJohnnie\nJolie\nJuli\nKathrine\nKimberlie\nLadonna\nLashanda\nLatina\nLauri\nLeona\nLeslee\nLiza\nLola\nLucille\nMargo\nMaribel\nMerry\nPam\nPatrica\nSerina\nShani\nShiela\nShonna\nSpring\nSusanne\nTawana\nTosha\nVelma\nWilliam\nAbby\nAlexandria\nAllyson\nAlyson\nAndria\nAngelica\nAntonia\nBettina\nBrigitte\nCallie\nCary\nCharisse\nCharles\nCherry\nCristal\nCristin\nDale\nDayna\nDee\nDeedee\nDeedra\nDelia\nDixie\nDorothea\nEsmeralda\nEunice\nFaye\nFlora\nFonda\nHarriett\nHilary\nHilda\nHolli\nIvonne\nIvy\nJade\nJaneen\nJohn\nKassandra\nLanette\nLarhonda\nLarissa\nLashon\nLatarsha\nLatisha\nLatosha\nLatricia\nLavette\nLesli\nLuz\nMagaly\nMamie\nMandy\nMarian\nMartina\nNathalie\nPatty\nRebeca\nRenita\nRosalinda\nRosie\nRoxann\nRuthie\nSabrena\nSaundra\nShalonda\nShantel\nSharlene\nSheree\nTabetha\nTarra\nTessa\nTiffani\nTonda\nTrinette\nTyra\nWillette\nAliza\nAngeline\nBessie\nBlanca\nBrian\nBronwyn\nCaren\nCarissa\nCarolina\nCathryn\nCharissa\nCharla\nChiquita\nChristal\nClarissa\nConsuela\nCora\nDelilah\nDenice\nDonya\nEarnestine\nElsie\nFannie\nFelita\nGeneva\nGerri\nHenrietta\nJada\nJaime\nJanene\nJanis\nJannette\nJasmine\nJoseph\nJosie\nJuana\nJulissa\nJustine\nKandy\nKaryn\nKate\nKenyatta\nKevin\nKrysta\nLaronda\nLashunda\nLasonya\nLatonja\nLawanna\nLeila\nLenore\nLesa\nLiz\nLizette\nMachelle\nMarguerite\nMarni\nMattie\nMaya\nMayra\nMillie\nMiranda\nMonika\nNellie\nNilda\nNoel\nPhoebe\nPortia\nRae\nRegena\nRhoda\nRichard\nRona\nRosanna\nRosita\nRoslyn\nShaunda\nShawanda\nShena\nSheronda\nSimone\nStephaine\nSummer\nSuzanna\nTamala\nTawanna\nTawnya\nThomasina\nTommie\nTracee\nTreena\nTrudy\nTwyla\nZandra\nAgnes\nAlberta\nAnnemarie\nAnthony\nBuffie\nCalandra\nCarlene\nCathrine\nCatrice\nCelina\nCelinda\nCher\nCherly\nCherri\nCorinne\nCristy\nDallas\nDeann\nDemetra\nDominique\nEdie\nElise\nElsa\nElyse\nEric\nFawn\nFreda\nGwen\nInez\nJacklyn\nJacquelynn\nJeniffer\nJoelle\nJoi\nJolene\nJoni\nJoycelyn\nJuliana\nJuliane\nJulianne\nKandi\nKarey\nKasey\nKathie\nKelle\nKenneth\nKimberely\nKris\nLacey\nLarry\nLashan\nLaticia\nLatoya\nLatrina\nLauretta\nLavinia\nLavonda\nLeanna\nLeatrice\nLeeann\nLeisa\nLetha\nLilly\nLisbeth\nLoren\nLorretta\nLuann\nLucia\nLula\nMarisa\nMarta\nMaryjo\nMayte\nMeghan\nMelaine\nMelba\nMelissia\nMellisa\nMerri\nMilagros\nMinnie\nNicola\nNicolle\nOdalys\nPenni\nRegenia\nRosalie\nSabina\nSallie\nSandee\nScott\nShandra\nShane\nShanta\nSharmon\nShay\nShelli\nStarla\nStefani\nStella\nSynthia\nTamera\nTerrilyn\nTess\nTherese\nTiffney\nTimothy\nTisa\nToby\nTona\nTony\nTori\nToya\nTresa\nTressa\nTreva\nTwila\nViola\nWende\nWillie\nWilma\nJennifer\nKimberly\nMichelle\nLisa\nAngela\nMelissa\nTammy\nAmy\nMary\nTracy\nShannon\nStephanie\nHeather\nCynthia\nKaren\nElizabeth\nPatricia\nTina\nDawn\nLaura\nPamela\nSusan\nJulie\nChristine\nKelly\nChristina\nLori\nWendy\nTeresa\nRebecca\nDeborah\nDonna\nSandra\nTonya\nBarbara\nStacy\nApril\nSharon\nNicole\nRhonda\nTiffany\nLinda\nTara\nMichele\nMaria\nDana\nAndrea\nStacey\nRobin\nBrenda\nCheryl\nDenise\nSherry\nMonica\nCatherine\nMelanie\nTheresa\nDebra\nYolanda\nSabrina\nTanya\nLeslie\nVictoria\nJacqueline\nRachel\nNancy\nCindy\nPaula\nKatrina\nSheila\nJessica\nAlicia\nRegina\nKatherine\nMargaret\nCarrie\nSuzanne\nMelinda\nTracey\nTamara\nFelicia\nErica\nHolly\nCarol\nSonya\nAmanda\nCarla\nGina\nSarah\nChristy\nCarolyn\nRenee\nDiana\nSherri\nKathleen\nWanda\nValerie\nVanessa\nDeanna\nKathy\nKim\nKristin\nJanet\nAllison\nAnna\nSamantha\nAnn\nCassandra\nDiane\nJill\nTerri\nKathryn\nKristina\nTraci\nHeidi\nConnie\nErin\nCharlene\nErika\nLaurie\nAnita\nBonnie\nVeronica\nTracie\nKristen\nCharlotte\nNatalie\nCrystal\nDorothy\nTammie\nJulia\nJodi\nShawn\nVirginia\nDebbie\nSheri\nBelinda\nJanice\nCathy\nDarlene\nLatonya\nAnnette\nNatasha\nDanielle\nJamie\nMartha\nAnne\nBeverly\nCarmen\nBetty\nGinger\nKristi\nYvonne\nBeth\nShelley\nKristine\nSara\nStacie\nSylvia\nTricia\nYvette\nKristy\nPenny\nShelly\nPeggy\nVicki\nGloria\nJenny\nAlison\nSonja\nTrina\nCandace\nHope\nShirley\nToni\nKelli\nBridget\nLeigh\nJudy\nAlice\nAngel\nGwendolyn\nHelen\nJoanna\nJoyce\nKrista\nAshley\nJean\nJoy\nKelley\nMeredith\nAmber\nBecky\nCristina\nAna\nFrances\nMonique\nLatasha\nRobyn\nRose\nShelia\nDena\nLynn\nPriscilla\nTonia\nAimee\nAngelia\nAudrey\nJoann\nKendra\nKimberley\nMarcia\nRuth\nSheryl\nCaroline\nKerri\nLoretta\nVivian\nJacquelyn\nMarie\nColleen\nTangela\nChrista\nEmily\nGail\nMarsha\nMisty\nSandy\nJeanette\nJeanne\nKellie\nKerry\nMarla\nNichole\nTabitha\nCandice\nMarilyn\nMelody\nTami\nBobbie\nEvelyn\nJudith\nRosa\nChristie\nDina\nEsther\nGlenda\nSonia\nTasha\nTeri\nAngie\nLashawn\nVickie\nAdrienne\nDaphne\nRita\nAlisa\nKristie\nLora\nRaquel\nTerry\nMarcy\nPatrice\nDoris\nEva\nJuanita\nLara\nLee\nTabatha\nBillie\nJenifer\nRoberta\nRonda\nSophia\nCheri\nDionne\nEricka\nKara\nSelena\nAntoinette\nChandra\nJackie\nJoan\nLeah\nLourdes\nMelisa\nShari\nSherrie\nElaine\nJoanne\nLawanda\nMarlene\nShawna\nAlisha\nAnissa\nBridgett\nCeleste\nDeana\nLorie\nNikki\nCherie\nJody\nKarla\nLynda\nLynette\nNina\nPaige\nStaci\nTammi\nClaudia\nEllen\nJennie\nKeisha\nLillian\nMarjorie\nRachael\nTarsha\nTisha\nBrooke\nDianna\nElena\nJana\nJane\nJo\nKatie\nLorraine\nLydia\nNorma\nSerena\nStefanie\nWendi\nAngelique\nAudra\nConstance\nElisa\nGeorgia\nJeannie\nKari\nLesley\nRuby\nShelby\nArlene\nDesiree\nIvette\nLatanya\nLissette\nRosemary\nSally\nBridgette\nCamille\nCecilia\nKeri\nLana\nLashonda\nLauren\nMia\nBeatriz\nBetsy\nCandy\nFelecia\nGretchen\nIris\nJodie\nKarin\nKirsten\nNaomi\nRamona\nShana\nChristi\nMiriam\nRebekah\nTrisha\nAlexandra\nFaith\nKimberlee\nLatrice\nMarci\nPaulette\nTania\nAdrian\nBobbi\nBrandy\nCara\nDaisy\nEdith\nEmma\nIrene\nJeannette\nJeri\nLatosha\nLena\nMarcie\nNora\nOctavia\nPatty\nPhyllis\nSelina\nSuzette\nVicky\nBrandi\nDarcy\nDarla\nRochelle\nSusanne\nTawanda\nTerrie\nAnnie\nDeena\nDora\nEileen\nLatonia\nLucretia\nMarlo\nMaureen\nMegan\nMindy\nRachelle\nAmelia\nBeatrice\nBernadette\nBethany\nBonita\nCourtney\nDara\nDianne\nGena\nGrace\nIsabel\nKerrie\nKrystal\nLatricia\nLorrie\nLouise\nMargarita\nPatti\nPauline\nShanna\nShauna\nThelma\nAmie\nCatrina\nDeirdre\nDemetria\nElla\nJanie\nJeannine\nJune\nLenora\nLeticia\nLillie\nLucinda\nMaggie\nMona\nRobert\nSue\nTia\nValarie\nWindy\nYolonda\nAdriana\nAngelina\nCarole\nCaryn\nCathleen\nChanda\nFlorence\nGabrielle\nHollie\nJanette\nJosephine\nJosie\nKesha\nLadonna\nLois\nLorri\nMarianne\nMarion\nMaryann\nMercedes\nMichael\nMyra\nOlga\nRosalind\nRoxanne\nSusana\nSusie\nTawanna\nTerra\nTonja\nUrsula\nValencia\nWilliam\nAlecia\nAlina\nBernice\nBlanca\nCecelia\nDeidra\nEdna\nGayle\nIngrid\nJanine\nKaryn\nLarissa\nMarcella\nMargie\nMarisa\nMarnie\nPenelope\nSondra\nTiffani\nAlma\nBuffy\nCarey\nCari\nCaridad\nCarolina\nEleanor\nJan\nJohanna\nJuliet\nLashanda\nLisette\nLynne\nMarisol\nMonika\nNoelle\nShannan\nSharonda\nStacia\nVera\nAileen\nAlexis\nAllyson\nAngelica\nAretha\nAva\nBenita\nCindi\nDanette\nDavina\nDeidre\nDolores\nEthel\nEugenia\nEve\nFrancine\nGeraldine\nIleana\nJames\nJeanine\nLatisha\nLetitia\nMarta\nMellisa\nRosemarie\nRoxana\nSharron\nShonda\nTwana\nAbigail\nAlyssa\nCarie\nCasandra\nCristy\nDella\nDoreen\nDori\nElsa\nGreta\nHilda\nIda\nJanelle\nJohnnie\nKay\nKecia\nKimberli\nLakisha\nLauri\nMadeline\nMargo\nMellissa\nMichell\nMildred\nNadine\nOlivia\nPamala\nPatsy\nRene\nRosalyn\nSerina\nSimone\nTamela\nTawana\nTera\nAbby\nAlysia\nAngelita\nAnthony\nBrigitte\nCarissa\nCassie\nCherry\nChiquita\nChrystal\nClara\nClaudine\nEric\nFelisa\nGayla\nGwen\nIndia\nInez\nIrma\nIvy\nJanna\nJessie\nKarrie\nKasey\nKenya\nLatrina\nLea\nLeanne\nMalissa\nMayra\nMolly\nNiki\nPatrica\nRena\nRichard\nRichelle\nRobbin\nSandi\nSebrina\nSharlene\nShellie\nSusannah\nTamala\nTamra\nTosha\nTrena\nTwanda\nVelma\nVerna\nViola\nWhitney\nWillie\nYesenia\nZandra\nAngeline\nAnglea\nAnjanette\nAntionette\nCarletta\nCelena\nCelia\nChantel\nCharisse\nCharity\nChristian\nChristin\nChristopher\nConsuela\nCora\nDawna\nDeanne\nDebora\nDee\nElise\nElissa\nFlora\nGenevieve\nGeorgina\nHelena\nHilary\nHolley\nIvonne\nJanell\nJanis\nJason\nJeana\nJeanie\nJerri\nJolie\nJuliette\nKimberely\nKristal\nLarhonda\nLashawnda\nLatarsha\nLaurel\nLorena\nLorinda\nLynnette\nMara\nMarian\nMaribel\nMeghan\nMilissa\nMiranda\nMitzi\nPam\nPrincess\nRenae\nRolanda\nShanda\nShani\nShawana\nShawanda\nShelli\nSilvia\nTamatha\nTherese\nTiffanie\nTowanda\nTrista\nVenus\nAda\nAlexandria\nAlfreda\nAli\nAlthea\nAlyson\nAmi\nAnastasia\nAthena\nAutumn\nBarbra\nBernadine\nBrigette\nBrittany\nCasey\nChanel\nChantal\nChantelle\nCharles\nCher\nChris\nClaire\nClarissa\nConsuelo\nCoretta\nCorrie\nCrista\nDebby\nDelia\nDenice\nDona\nDorene\nDorothea\nEdwina\nEstela\nEunice\nFrankie\nGeneva\nGladys\nHarriet\nHazel\nHillary\nInes\nJacquline\nJena\nJenna\nJewell\nJocelyn\nJuli\nJulissa\nKandi\nKendall\nKisha\nKrysta\nLashaun\nLashon\nLasonya\nLatoya\nLucia\nMandy\nMarguerite\nMaritza\nMattie\nMechelle\nMelodie\nMelonie\nMerry\nMillie\nMissy\nNanette\nNatacha\nNichelle\nPrecious\nRebeca\nRosie\nSalena\nSalina\nSaundra\nShalanda\nShawnda\nShayla\nSheena\nSheronda\nShiela\nTanisha\nTessa\nTonda\nViolet\nVonda\nAdria\nAdriane\nAdrianna\nAdrianne\nAgnes\nAlana\nAlberta\nAlena\nAlissa\nAnnmarie\nCandida\nCaprice\nCaren\nCarri\nCary\nCharla\nChristal\nColeen\nColette\nDavid\nDawne\nDedra\nElvira\nEvette\nFawn\nFrancesca\nGeorgette\nGinny\nHattie\nHenrietta\nHolli\nJackeline\nJami\nJeanna\nJerry\nJohn\nKarma\nKatharine\nKathi\nKathie\nKeli\nLasandra\nLaverne\nLeann\nLeeann\nLeila\nLeona\nLiza\nLorna\nLucy\nLuz\nMalinda\nMarva\nMichaela\nMilagros\nNicolette\nNicolle\nNikita\nPatrina\nPhaedra\nPolly\nPrudence\nRacheal\nRae\nRandi\nRhoda\nRobbie\nSabrena\nSallie\nSaprina\nShea\nStephaine\nStephenie\nSusanna\nTeresita\nTresa\nTressa\nTwyla\nTyra\nValeria\nVikki\nAaron\nAngella\nAntonette\nAntonia\nBessie\nBonny\nCalandra\nCarmel\nCarroll\nCharlette\nCherri\nChristiane\nCori\nCorina\nCorinne\nCory\nDacia\nDanita\nDanya\nDeedee\nDeedra\nDelicia\nDelilah\nDeloris\nDelphine\nDemetrice\nDenita\nDiedra\nEbony\nElisabeth\nElisha\nEster\nEvangeline\nFay\nHaley\nInga\nInger\nIva\nJanene\nJannette\nJayne\nJeanene\nJeanetta\nJoelle\nJohnetta\nJoni\nJonna\nJosette\nJuana\nJulianne\nJustine\nKarie\nKarina\nKatheryn\nKathrine\nKatrice\nKelsey\nKris\nLacheryl\nLajuana\nLakesha\nLani\nLarina\nLaronda\nLatashia\nLatoshia\nLatrell\nLatunya\nLawanna\nLesa\nLilia\nLina\nLola\nLolita\nLoraine\nLou\nLucille\nLula\nMadelyn\nMarina\nMarlena\nMarquita\nMartina\nMaura\nMaya\nMeridith\nMerri\nMollie\nNannette\nNerissa\nNoel\nPatience\nPennie\nPhoebe\nPortia\nPricilla\nRaina\nRana\nReva\nRhea\nRosanne\nRoseann\nRosetta\nScarlett\nShalonda\nShandra\nShane\nShanita\nShanon\nSharri\nShawnee\nShawnna\nShay\nShonna\nShontel\nStarla\nStarr\nStephany\nSummer\nSunday\nSuzanna\nTajuana\nTameka\nTana\nTangi\nTari\nTena\nTeressa\nTijuana\nTori\nToya\nTracee\nTrellany\nTwalla\nTywanda\nValentina\nVannessa\nWenona\nWilma\nYoland\nJennifer\nKimberly\nMichelle\nLisa\nAngela\nMelissa\nStephanie\nAmy\nTammy\nHeather\nMary\nElizabeth\nShannon\nChristina\nDawn\nTracy\nTina\nCynthia\nNicole\nJulie\nRebecca\nKaren\nLaura\nPatricia\nKelly\nChristine\nSusan\nPamela\nTonya\nTeresa\nWendy\nKatina\nSandra\nAndrea\nLori\nApril\nDonna\nBarbara\nMaria\nDana\nMelanie\nTara\nStacy\nDeborah\nSharon\nTanya\nTiffany\nStacey\nCheryl\nMonica\nRhonda\nLinda\nMichele\nDenise\nBrenda\nSherry\nDebra\nRobin\nKatrina\nJessica\nCatherine\nRachel\nTheresa\nYolanda\nAmanda\nLeslie\nVictoria\nNancy\nHolly\nJacqueline\nAlicia\nCarrie\nSabrina\nKatherine\nFelicia\nPaula\nMelinda\nRegina\nCrystal\nCarolyn\nKristin\nSamantha\nSonya\nTamara\nChristy\nCarol\nCarla\nKathryn\nNatasha\nTracey\nSarah\nCassandra\nErika\nGina\nKathleen\nSheila\nTerri\nAllison\nVeronica\nCindy\nJanet\nErica\nKristina\nLaurie\nHeidi\nMargaret\nJill\nRenee\nTraci\nAngel\nJenny\nKathy\nDiana\nValerie\nCatina\nDeanna\nSherri\nSuzanne\nErin\nWanda\nAnna\nDiane\nAnita\nMisty\nDanielle\nKelli\nLatonya\nJulia\nJamie\nJodi\nAnn\nKim\nLatasha\nVanessa\nVirginia\nBelinda\nBeverly\nTammie\nDorothy\nMonique\nSonja\nAimee\nCharlotte\nShawn\nNatalie\nHope\nKristi\nShelley\nSheri\nKristen\nYvette\nSara\nDebbie\nShirley\nAna\nBeth\nBridget\nEvelyn\nGloria\nJanice\nNichole\nShelly\nLynn\nSylvia\nAshley\nBonnie\nCharlene\nDarlene\nJoy\nKristine\nCathy\nChristie\nConnie\nAlison\nNikki\nAnnette\nFrances\nMartha\nTabitha\nTonia\nBetty\nCarmen\nEmily\nTricia\nVicki\nKelley\nYvonne\nAmber\nCandace\nMarie\nKimberley\nRobyn\nJeanette\nJoanna\nKristie\nTracie\nAlice\nBrandy\nKara\nAdrienne\nGwendolyn\nKristy\nSonia\nToni\nTrina\nBrandi\nColleen\nKrista\nMeredith\nPeggy\nStacie\nVickie\nAnne\nMarsha\nPenny\nTami\nTangela\nAudrey\nChristi\nRosa\nCandice\nCherie\nChrista\nHelen\nJoyce\nSheryl\nBillie\nBobbie\nGinger\nJeannie\nLara\nLeigh\nRose\nRuth\nKerry\nMarilyn\nStaci\nBecky\nEricka\nGail\nShelby\nIvette\nKellie\nKendra\nTasha\nKerri\nTeri\nEva\nJane\nJudy\nLoretta\nCandy\nCheri\nJackie\nJean\nLashawn\nLawanda\nLynette\nMelody\nShelia\nAngelia\nDesiree\nDoris\nJacquelyn\nJudith\nLeah\nMarlene\nVivian\nCaroline\nDina\nElaine\nLillian\nMolly\nShana\nShawna\nTerry\nDena\nJody\nKeisha\nKeri\nTabatha\nAudra\nCristina\nKari\nAlexandra\nAngelique\nChandra\nClaudia\nEllen\nJoann\nMiriam\nTanisha\nChiquita\nConstance\nGlenda\nLauren\nMarcia\nPriscilla\nDeana\nJuanita\nKarla\nLashonda\nLissette\nLora\nPatrice\nRachael\nRoberta\nArlene\nGretchen\nJodie\nNorma\nTrisha\nWendi\nYesenia\nAngie\nBridgette\nRonda\nTania\nAlisha\nFaith\nIrene\nJana\nKenya\nLatanya\nLeticia\nLorraine\nMelisa\nRamona\nRuby\nSandy\nSelena\nAmelia\nAnnie\nBernadette\nCatrina\nContina\nElisa\nGrace\nJeanne\nJoan\nKatie\nLana\nLourdes\nLydia\nMindy\nNina\nSophia\nAntoinette\nBeatriz\nBobbi\nCecilia\nEileen\nElena\nEsther\nHollie\nJoanne\nKarin\nLatosha\nLucy\nMegan\nRaquel\nRita\nShari\nTammi\nTonja\nJames\nKirsten\nLatisha\nLesley\nLorie\nMercedes\nPhyllis\nSerena\nTawana\nTerra\nAlisa\nBridgett\nCourtney\nDianna\nFelecia\nIris\nMarla\nSherrie\nCara\nCeleste\nCharity\nConsuelo\nDeena\nDionne\nEdith\nGeorgia\nJenifer\nJennie\nMarcy\nOctavia\nPaige\nTawanda\nAngelina\nCarey\nIngrid\nJo\nKimberlee\nLaurel\nLouise\nMarjorie\nRene\nSally\nValarie\nAmie\nAnissa\nBrooke\nCasey\nJanette\nLee\nMargarita\nMichael\nRobert\nRoxanne\nSharonda\nStefanie\nTarsha\nBrandie\nChristian\nCristy\nDemetria\nLashanda\nLatonia\nLatoya\nLayla\nMaribel\nMarion\nNora\nPauline\nSondra\nTamika\nTera\nTisha\nUrsula\nAlexis\nAlina\nAngelica\nBernice\nBetsy\nBrigitte\nCassie\nDianne\nEdna\nGena\nIsabel\nIvy\nJeannette\nJohanna\nJosephine\nLisette\nMarcella\nMarci\nMona\nPatty\nRochelle\nRosemary\nShalonda\nShanna\nTameka\nWhitney\nWindy\nAngeline\nBeatrice\nCathleen\nEugenia\nIndia\nJenna\nKrystal\nLena\nLillie\nLucretia\nLynda\nMaggie\nNiki\nOlga\nRacheal\nRachelle\nRena\nShonda\nSuzette\nTerrie\nVicky\nAdriana\nAlfreda\nAlyson\nCasandra\nClara\nDaphne\nEmma\nJanie\nJanine\nJerri\nJohn\nJune\nKasey\nKatharine\nLadonna\nLatarsha\nLatina\nLeanne\nLorrie\nLucinda\nMarian\nMarisol\nMaritza\nMarta\nMildred\nMiranda\nMitzi\nNikita\nOlivia\nPaulette\nRosalyn\nSusana\nSusanna\nTia\nValencia\nAdrian\nAlecia\nAlthea\nChantel\nCharla\nChrystal\nClarissa\nColette\nCrissy\nDara\nDarcy\nDarla\nDayna\nDeidra\nFelisha\nFreda\nGabrielle\nIda\nKatrena\nKerrie\nKeysha\nLakeisha\nLatricia\nLeona\nLetitia\nLois\nLucille\nLynne\nMalinda\nMalissa\nMara\nMargie\nMaureen\nMaxine\nMia\nShanda\nShauna\nShellie\nSue\nSummer\nSuzanna\nTiffani\nVikki\nWillie\nZandra\nAlissa\nAllyson\nAyanna\nBenita\nBethany\nBonita\nCamille\nCamisha\nChanda\nCherry\nChristopher\nCristi\nDee\nDelores\nEbony\nElisabeth\nEthel\nFelisa\nFrancesca\nGeneva\nGeorgina\nJami\nKesha\nLakesha\nLakisha\nLatashia\nLatrice\nLea\nLenora\nLiza\nLynnette\nMadeline\nMarianne\nMarlo\nMaryann\nMinnie\nMissy\nNadine\nNanette\nNaomi\nPatrica\nPenelope\nRebekah\nRichard\nRosalind\nShannan\nSusanne\nTamra\nVera\nAbigail\nAdriane\nAlana\nAlberta\nAlma\nAntonia\nAutumn\nBertha\nCalandra\nCaridad\nCarole\nCecelia\nClaire\nClaudine\nConsuela\nDaisy\nDeann\nDedra\nDelia\nDella\nEleanor\nGayle\nHelena\nHolli\nInga\nJeannine\nJeri\nJessie\nLorena\nLory\nMabel\nMarina\nMichell\nMyra\nRobbin\nRosalinda\nRoslyn\nSebrina\nShane\nShanon\nShantel\nShea\nStephaine\nSteven\nTamala\nTeressa\nTessa\nTosha\nTracee\nTressa\nTrista\nVenus\nVeronique\nAileen\nAlyssa\nAnastasia\nAngelic\nAngelita\nAnnemarie\nAretha\nBlanca\nBuffy\nCari\nCarie\nCarin\nChelsea\nCotina\nDavina\nDebora\nDeidre\nDeirdre\nDinah\nElla\nFrancine\nGayla\nGeorgette\nGwen\nHarriet\nHillary\nJanel\nJanis\nJanna\nJeanine\nJenni\nJocelyn\nJosie\nJuliet\nKevin\nKristal\nMamie\nMarisa\nMilissa\nPearl\nPrecious\nRandi\nSalena\nShandra\nShelli\nStella\nTanesha\nTatanisha\nTeresita\nTesha\nTyra\nYolonda\nAdina\nAdria\nAida\nAntionette\nAshlee\nAva\nBobby\nBrittany\nCary\nChristal\nCora\nCorina\nCorinne\nDanita\nDavid\nDeanne\nEsperanza\nEureka\nFaye\nGenevieve\nGeri\nHannah\nHilda\nJan\nJeanie\nJoelle\nJohnnie\nJoseph\nJustine\nKami\nKarrie\nKatrice\nKeena\nLamonica\nLasandra\nLashawnda\nLavonne\nLeann\nLizette\nMagaly\nMarcie\nMarguerite\nMaya\nMayra\nMechelle\nMelba\nMelissia\nMellissa\nMerry\nNoel\nPam\nPatti\nPrincess\nRenita\nRosanna\nRoxana\nSandi\nSasha\nShalanda\nSharron\nShawanda\nShenita\nSilvia\nStephany\nSusannah\nSusie\nTawanna\nThelma\nTimothy\nTonda\nTresa\nTwanda\nAdrianne\nAlexandria\nAli\nAmi\nAndria\nAnthony\nAthena\nBettina\nBilly\nBrigette\nCamilla\nCandida\nCaren\nCarissa\nCelena\nCharmin\nChastity\nCher\nCori\nDamaris\nDarcie\nDeedee\nDeloris\nDetra\nDetrice\nDolores\nDora\nDoreen\nDoretha\nDori\nEliza\nElsa\nEssie\nFelica\nGeraldine\nGladys\nGreta\nIleana\nJacquline\nJada\nJade\nJanell\nJanelle\nJannette\nJeana\nJeanna\nJewel\nJoellen\nJuliana\nLashunda\nLasonya\nLatrina\nLeandra\nLela\nLolita\nLoren\nLorene\nLucia\nMandy\nMarissa\nMarni\nMelodie\nMelonie\nMelony\nNatacha\nNichol\nNicola\nNoelle\nOllie\nPatrina\nPebbles\nPetra\nRosemarie\nSalina\nShanita\nShantell\nSharlene\nSheree\nSherie\nSheronda\nSimona\nSofia\nStephenie\nSuzan\nTamera\nTanja\nTarra\nTashara\nTelisa\nThea\nTwanna\nValorie\nViola\nYulanda\nAda\nAleshia\nAndra\nAnglea\nAnnmarie\nAurora\nCallie\nCaryn\nCelia\nCharles\nChasity\nChris\nChristin\nCoretta\nCorey\nCorie\nCorinna\nCrista\nDale\nDelilah\nDenna\nDeon\nDerrick\nDevon\nDonald\nDusty\nEdie\nElizebeth\nEric\nEunice\nEvette\nFatima\nFlorence\nFrancis\nFrankie\nGabriela\nGerri\nGilda\nHayley\nIliana\nIrma\nIvonne\nJoey\nJosette\nJuli\nJulianne\nKarena\nKarina\nKarri\nKaryn\nKate\nKateena\nKayla\nKecia\nKena\nKenyetta\nKetina\nKisha\nKyra\nLakeshia\nLashandra\nLaticia\nLatrica\nLeesa\nLenore\nLily\nLinette\nLorianne\nLorri\nLuz\nMadelyn\nMargo\nMarnie\nMendy\nMercy\nMichaela\nMilagros\nMisti\nMollie\nMonika\nMorgan\nNellie\nNicki\nNickole\nReba\nRolanda\nRosetta\nRuthie\nSamara\nSaundra\nScarlett\nShani\nShanta\nShawnda\nShawnee\nShay\nShayna\nSheena\nShonna\nStacia\nTamatha\nTawnya\nTherese\nTiffiny\nTijuana\nToya\nTreva\nTrudy\nTwyla\nVelma\nVerna\nVonda\nYamile\nYulonda\nJennifer\nKimberly\nMichelle\nMelissa\nAngela\nLisa\nAmy\nStephanie\nHeather\nChristina\nRebecca\nMary\nTammy\nElizabeth\nShannon\nNicole\nTina\nDawn\nCynthia\nKelly\nJulie\nPatricia\nChristine\nTracy\nWendy\nApril\nLaura\nKaren\nTonya\nSusan\nLori\nAndrea\nTiffany\nStacy\nPamela\nBarbara\nTara\nMichele\nMonica\nSandra\nTeresa\nStacey\nMaria\nMelanie\nDonna\nTanya\nDeborah\nDenise\nKatina\nSharon\nJessica\nRobin\nCatherine\nKatrina\nAlicia\nRachel\nAmanda\nDana\nRhonda\nTheresa\nCarrie\nSherry\nLinda\nTamara\nBrenda\nHolly\nMelinda\nDanielle\nKristen\nYolanda\nKatherine\nCheryl\nCrystal\nLeslie\nChristy\nErica\nKristina\nAllison\nCarol\nNancy\nSabrina\nNatasha\nJacqueline\nDebra\nGina\nRegina\nDiana\nBrandy\nSarah\nVictoria\nTracey\nRenee\nFelicia\nSamantha\nKathryn\nKristin\nSuzanne\nCarla\nErika\nErin\nAnna\nHeidi\nVeronica\nMisty\nAngel\nMargaret\nSonya\nVanessa\nCindy\nValerie\nJanet\nPaula\nJill\nSheila\nLatasha\nCassandra\nKathleen\nShelly\nDeanna\nLaurie\nShelley\nCarolyn\nBonnie\nBelinda\nVirginia\nAnn\nKathy\nKelli\nWanda\nEmily\nJamie\nBrandi\nJoy\nTerri\nDiane\nLatonya\nTraci\nSherri\nCarmen\nCharlotte\nKerry\nKristi\nAshley\nKim\nSheri\nAimee\nBridget\nAna\nCathy\nJodi\nAmber\nBeverly\nJoanna\nShawn\nGloria\nNichole\nDorothy\nJenny\nCatina\nMarie\nAnnette\nJulia\nTasha\nConnie\nAlison\nBeth\nNikki\nBetty\nMeredith\nShirley\nMonique\nKerri\nMelody\nNatalie\nTammie\nCristina\nFrances\nKristine\nPenny\nYvonne\nKristie\nLeah\nMartha\nSylvia\nAnita\nAnne\nSonia\nTonia\nDarlene\nKelley\nPriscilla\nTricia\nVicki\nCandace\nChristie\nEvelyn\nKrista\nSara\nCharlene\nJanice\nMarcia\nMarsha\nSelena\nHelen\nKenya\nKimberley\nAudrey\nEricka\nJoyce\nKristy\nLynn\nSheryl\nTracie\nJeanette\nStacie\nKara\nRobyn\nTangela\nBillie\nChandra\nChiquita\nDebbie\nLoretta\nSonja\nGwendolyn\nToni\nColleen\nKeri\nLauren\nPeggy\nLatoya\nYvette\nAlice\nBecky\nJean\nJudy\nLashawn\nJody\nLeigh\nRose\nAdrienne\nCheri\nLorraine\nTabitha\nCharity\nHope\nKendra\nLawanda\nLorie\nMegan\nAngelia\nChrista\nElaine\nGinger\nKeisha\nLissette\nRebekah\nRosa\nShelia\nBobbie\nCeleste\nJacquelyn\nJenifer\nJuanita\nKarla\nMarilyn\nRoberta\nSherrie\nCandice\nCaroline\nJoanne\nLesley\nNaomi\nRonda\nRuby\nShawna\nStaci\nTameka\nCherie\nChristi\nKellie\nRita\nVivian\nCourtney\nEllen\nJudith\nMelisa\nTerry\nVickie\nAngie\nKari\nLatanya\nMarlene\nRaquel\nSandy\nSophia\nCatrina\nDaphne\nDemetria\nIris\nJane\nRachael\nRuth\nAlisa\nBrandie\nCarey\nDena\nEva\nGretchen\nLillian\nMarla\nBethany\nCandy\nCasey\nChastity\nDionne\nGail\nJackie\nJennie\nLashonda\nMarcy\nPhyllis\nShelby\nTrina\nBridgette\nClaudia\nDesiree\nElisa\nJoann\nJodie\nLatonia\nLatosha\nMindy\nNorma\nOlivia\nShana\nTamika\nAlexandra\nAntoinette\nCecilia\nDina\nDoris\nHollie\nIrene\nJeanne\nKatie\nLara\nMarjorie\nMercedes\nNina\nPatrice\nSerena\nTami\nTammi\nKimberlee\nMaribel\nMiriam\nMolly\nPaige\nRosemary\nShanna\nAngelina\nBridgett\nEsther\nFaith\nGlenda\nJana\nKrystal\nMichael\nSally\nTabatha\nAnnie\nLadonna\nLakesha\nMaggie\nMargie\nOlga\nRamona\nRochelle\nRoxanne\nSelina\nShari\nTerra\nWendi\nAlina\nAmelia\nAngelique\nDeana\nDianne\nEileen\nIvette\nJeannette\nJeannie\nJessie\nLaurel\nLeticia\nLetitia\nLynette\nStefanie\nTania\nTrisha\nVicky\nAdrian\nAmie\nChasity\nConstance\nDaisy\nLashanda\nLiza\nLora\nLourdes\nShanda\nSusie\nAlisha\nArlene\nAudra\nBrooke\nClara\nDianna\nIda\nJoan\nJohanna\nKarrie\nKesha\nLakisha\nLydia\nMarisa\nOctavia\nRachelle\nRobert\nTawanda\nTera\nAlana\nAlexis\nBernadette\nCaridad\nCassie\nDora\nGrace\nIngrid\nJanette\nJeanie\nJo\nLatarsha\nMarci\nMargarita\nMarisol\nMaureen\nMiranda\nRena\nSharonda\nSondra\nTisha\nValencia\nBertha\nCara\nChristopher\nDelia\nElena\nFelecia\nFlorence\nJames\nJanie\nKarin\nKisha\nLakeisha\nLana\nLatricia\nLeanne\nLee\nLynda\nMalinda\nMandy\nMarion\nMona\nPaulette\nTeri\nTosha\nUrsula\nAda\nAdriana\nAntonia\nChelsea\nDeidra\nEbony\nLatisha\nLatoshia\nLorena\nLucy\nMarian\nMarianne\nMyra\nNadine\nNora\nShauna\nShonda\nSilvia\nStephenie\nSusanne\nTawana\nTiffani\nVonetta\nWindy\nYesenia\nAbigail\nBobbi\nCathleen\nChantel\nDarcy\nDavina\nHazel\nJosephine\nLorrie\nMalissa\nMaritza\nMellissa\nMisti\nSasha\nShantel\nSusanna\nTerrie\nTessa\nVikki\nAngelica\nBetsy\nClaire\nDarla\nEdith\nEleanor\nGeorgette\nGeraldine\nGladys\nHilary\nHilda\nJami\nJanna\nJeri\nJocelyn\nJolie\nKaryn\nLashawnda\nLatrice\nMari\nMarissa\nMarta\nMia\nNatosha\nNichol\nPatrica\nPenelope\nStacia\nSuzanna\nSuzette\nTanisha\nTarsha\nTia\nTracee\nWhitney\nAlyssa\nAmi\nAnastasia\nBeatriz\nBernice\nCasandra\nChantelle\nClarissa\nConsuelo\nDanette\nDara\nDenice\nEugenia\nGena\nIsabel\nJena\nJohn\nJune\nLaronda\nLashon\nLela\nLesli\nLois\nLucinda\nLucretia\nMeghan\nMelynda\nMitzi\nNiki\nPetrina\nRene\nShandra\nShanita\nShellie\nShenita\nSue\nSummer\nTawanna\nTomeka\nWilliam\nAileen\nAlethea\nAnitra\nAntionette\nAthena\nBettina\nBrigitte\nCamille\nCarole\nCelena\nCelina\nChanda\nCharmaine\nChristal\nDamaris\nDebora\nDelores\nDixie\nDori\nGenevieve\nIvy\nLaquita\nLayla\nLena\nLindy\nMarcella\nMichell\nNikita\nNoel\nPauline\nShalonda\nShawanna\nShawnda\nStarla\nTherese\nTowanda\nTyra\nVenus\nAdria\nAnglea\nBuffy\nCandi\nCarri\nCelia\nChris\nClaudette\nColeen\nDania\nDeanne\nDeena\nDella\nElisabeth\nEmma\nEunice\nGidget\nHelena\nHillary\nIleana\nJan\nJanis\nJenna\nJerri\nJillian\nJuliet\nKasey\nKerrie\nKyla\nLarissa\nLatrina\nLillie\nLisette\nMarni\nMellisa\nMildred\nMollie\nPatrina\nPatty\nRenita\nRhoda\nRosalyn\nSandi\nShane\nSheree\nStella\nStephaine\nSusana\nToya\nTressa\nValarie\nAfrica\nAlecia\nAlexandria\nAlyson\nAngelic\nBarbie\nBianca\nCari\nCarie\nCarly\nCherry\nChrystal\nCicely\nClaudine\nConsuela\nCorey\nCorinne\nDanyell\nDavid\nDedra\nDeidre\nDoreen\nElisha\nElla\nElsa\nErnestine\nEthel\nFatima\nFaye\nFelice\nFrancine\nGayle\nHolley\nIrma\nJada\nJanine\nJeanine\nJeanna\nJeannine\nJenniffer\nJewel\nKandi\nKay\nKeshia\nKirsten\nLakeshia\nLamonica\nLarhonda\nLarry\nLasonya\nLea\nMarguerite\nMarnie\nMattie\nMilagros\nMilissa\nPamala\nPetra\nRandi\nRosalind\nRosie\nRoxann\nShonna\nShonta\nSpring\nSunshine\nTamela\nTawnya\nTeresita\nThelma\nTonja\nYolonda\nZandra\nAdriane\nAdrianne\nAida\nAlethia\nAllyson\nAndria\nAngeline\nAnjanette\nApryl\nAva\nBlanca\nBriana\nBritt\nCamilla\nCary\nCecelia\nCharisse\nCharlette\nCher\nColette\nCori\nCorina\nCorinna\nCrista\nDaniele\nDeirdre\nDemetrice\nDusty\nEdna\nEdwina\nEstella\nFawn\nFrancesca\nGeorgia\nGeri\nGreta\nGrisel\nGwen\nJackeline\nJanel\nJanelle\nJenni\nJohnnie\nJoni\nJosie\nJuliette\nKami\nKandy\nKarena\nKatrice\nKecia\nKeli\nKenyatta\nKia\nLashaunda\nLashunda\nLauri\nLavonda\nLeila\nLizette\nLory\nMadeline\nMara\nMarcie\nMargo\nMarlo\nMaryann\nMelodie\nMinnie\nMonika\nNatacha\nNicola\nNita\nPatsy\nRacheal\nRochell\nRosalinda\nRoslyn\nSalena\nSaundra\nShanon\nShawanda\nShea\nSheria\nSimone\nStacee\nSybil\nSyreeta\nTamica\nTatiana\nTeressa\nTessie\nThea\nTijuana\nTiki\nTori\nTravis\nTresa\nTrudy\nVelma\nViola\nZenobia\nAaron\nAbby\nAlanna\nAlejandra\nAlesia\nAlissa\nAlycia\nAlysia\nAnnmarie\nAnthony\nAntonio\nAutumn\nAyanna\nBeatrice\nBelkys\nBessie\nBrigette\nBrittany\nCalandra\nCallie\nCandida\nCaren\nCarissa\nCarlos\nCarlotta\nCarolina\nCaryn\nChantell\nChenita\nCherri\nChristian\nCleopatra\nCotina\nCristin\nCristy\nDaniela\nDarby\nDee\nDeedee\nDeedra\nDeirdra\nDestiny\nDinah\nEarlene\nEdie\nElise\nElissa\nElvira\nEric\nEsmeralda\nFelisha\nGenea\nGeorgina\nGinny\nGriselda\nHattie\nIna\nIndia\nIvonne\nJacklyn\nJacquelin\nJannette\nJasmine\nJason\nJayne\nJeana\nJoelle\nJoey\nJolene\nJustine\nKarina\nKarmen\nKassandra\nKatonya\nKeesha\nKendall\nKenneth\nKeva\nKimberely\nKimberli\nKinya\nKris\nKristan\nLakeesha\nLasandra\nLatashia\nLatina\nLawanna\nLeann\nLenora\nLeona\nLesia\nLidia\nLola\nLolita\nLonna\nLorinda\nLorna\nLouise\nLucille\nMabel\nMariah\nMarti\nMartine\nMarva\nMayra\nMelina\nMissy\nMorgan\nNanette\nNatarsha\nNecole\nNena\nNikole\nNoelle\nOdessa\nOla\nPatti\nPearl\nPhoebe\nPrecious\nRichelle\nRobbie\nRonnie\nRoxana\nSamara\nScarlett\nSharlene\nShawana\nShawnee\nSherita\nStephani\nStephen\nStephine\nTabetha\nTamala\nTamera\nTamiko\nTarra\nTelisa\nTenisha\nTeria\nThomas\nTiffanie\nTrenise\nTreva\nTrinette\nTwana\nTwanda\nTwila\nVenessa\nVera\nVernita\nWillie\nZoe\nJennifer\nKimberly\nMichelle\nAngela\nHeather\nMelissa\nAmy\nStephanie\nLisa\nChristina\nShannon\nRebecca\nMary\nElizabeth\nNicole\nTammy\nApril\nKelly\nTracy\nJulie\nPatricia\nDawn\nTina\nChristine\nTiffany\nLaura\nJessica\nWendy\nCynthia\nTonya\nKaren\nTara\nAmanda\nLori\nPamela\nRachel\nSusan\nMonica\nSandra\nTeresa\nMaria\nTanya\nBarbara\nAndrea\nStacy\nTamara\nStacey\nKatrina\nErin\nCrystal\nDana\nKristen\nSarah\nMichele\nHolly\nMelanie\nRobin\nDanielle\nSharon\nLinda\nDonna\nCarrie\nDeborah\nDenise\nLeslie\nTheresa\nBrandy\nJacqueline\nBrenda\nCatherine\nKatherine\nAlicia\nErica\nChristy\nCheryl\nJoy\nRhonda\nYolanda\nMisty\nFelicia\nMelinda\nSamantha\nNancy\nDebra\nErika\nSherry\nEmily\nNatasha\nSabrina\nValerie\nVictoria\nAllison\nMargaret\nAnna\nBrandi\nChristie\nTracey\nPaula\nVanessa\nKristina\nCarla\nCindy\nDiana\nKathryn\nKristin\nRegina\nNatalie\nLatasha\nAmber\nJill\nAshley\nHeidi\nSonya\nVeronica\nGina\nRenee\nDeanna\nSara\nAngel\nCassandra\nSuzanne\nCarolyn\nBeverly\nKatina\nShelly\nJenny\nKathleen\nLatonya\nAlison\nJamie\nVirginia\nWanda\nAnita\nJodi\nSheila\nAnn\nCarmen\nRobyn\nJanet\nLaurie\nBonnie\nKristi\nCarol\nJulia\nTerri\nCristina\nHope\nBridget\nCourtney\nMartha\nSylvia\nYvonne\nKristy\nJoanna\nKristie\nShelley\nTraci\nMeredith\nBetty\nDiane\nKathy\nSherri\nTracie\nDorothy\nKelley\nAna\nJanice\nKim\nNichole\nShawn\nBeth\nKelli\nKrista\nNakia\nAimee\nAnne\nCharity\nConnie\nFrances\nCharlene\nLatoya\nMarie\nRachael\nSheri\nStacie\nTasha\nLauren\nPriscilla\nTammie\nAudrey\nJeanette\nLeah\nGinger\nTricia\nBelinda\nBobbie\nCathy\nGloria\nMegan\nMelody\nTabitha\nYvette\nColleen\nJody\nKara\nSonia\nToni\nTrina\nVicki\nAnnette\nCharlotte\nKendra\nAngie\nDebbie\nEvelyn\nNikki\nCandace\nDarlene\nKari\nKeisha\nKimberley\nRose\nCaroline\nJackie\nKerri\nLoretta\nMindy\nSonja\nCasey\nKristine\nShawna\nShirley\nTameka\nCara\nEricka\nGwendolyn\nKenya\nKerry\nLeigh\nMarcia\nRosa\nAdrienne\nClaudia\nDena\nJuanita\nJudy\nKellie\nKeri\nPenny\nShelby\nTania\nAlice\nChandra\nChastity\nHelen\nJenifer\nLakesha\nLynn\nMarilyn\nMarlene\nCheri\nJoanne\nLawanda\nMarsha\nTamika\nBethany\nBillie\nDina\nJoyce\nLashonda\nLesley\nTonia\nCandice\nChristi\nDaphne\nJeannie\nKarla\nLatanya\nVivian\nBecky\nCeleste\nElaine\nEva\nIris\nMonique\nPeggy\nRebekah\nSheryl\nBrooke\nEileen\nJeannette\nJudith\nLatisha\nLissette\nRaquel\nTami\nKatie\nLydia\nMelisa\nMolly\nPatrice\nSelena\nAntoinette\nChrista\nShanna\nWendi\nAngelina\nCatina\nElena\nEllen\nGlenda\nJana\nJean\nLakeisha\nLashawn\nSally\nAlexis\nAlisa\nAngelia\nCandy\nDesiree\nIrene\nJeanne\nKirsten\nLakisha\nLatosha\nLourdes\nRoberta\nRuth\nTerry\nVickie\nCarey\nJoann\nKrystal\nLara\nLashanda\nMiriam\nNaomi\nNina\nOlivia\nShelia\nTammi\nTangela\nTawana\nAileen\nAlisha\nChelsea\nMercedes\nAlexandra\nBrandie\nCherie\nEsther\nJodie\nMichael\nStefanie\nTerra\nAlina\nGrace\nJacquelyn\nLena\nMarcy\nMarisol\nMiranda\nRita\nRonda\nSandy\nShana\nTrisha\nVicky\nArlene\nDeana\nJohanna\nLetitia\nMargarita\nMyra\nOctavia\nSherrie\nStaci\nTeri\nBridgette\nChiquita\nConstance\nDoris\nIngrid\nJames\nJo\nLucretia\nLynette\nMarjorie\nRachelle\nRamona\nRochelle\nRoxanne\nSophia\nTanisha\nTia\nYesenia\nAngelica\nBobbi\nBridgett\nCecilia\nDaisy\nDemetria\nFelecia\nIsabel\nJanie\nJoan\nKesha\nLora\nMarianne\nMarion\nPaige\nShonda\nSue\nAbigail\nAnitra\nAudra\nCicely\nDianna\nJane\nLillian\nLorrie\nMaureen\nMia\nRuby\nShari\nTabatha\nTisha\nAlexa\nAngelique\nAnnie\nBeatriz\nFaith\nGail\nGladys\nIvette\nJennie\nLatricia\nLayla\nMandy\nMarla\nNatalia\nRosemary\nSharonda\nShauna\nSummer\nTosha\nAdriana\nCatrina\nJolene\nKimberlee\nLatonia\nLeticia\nMaggie\nMarisa\nNora\nNorma\nSusana\nSusanna\nTera\nTiffani\nWindy\nAllyson\nAlma\nAmie\nAutumn\nCamille\nChasity\nChrystal\nEdith\nIda\nJenna\nJocelyn\nLee\nLois\nMadeline\nMarcie\nMaribel\nMichell\nNia\nShellie\nShenika\nTarsha\nToya\nUrsula\nBetsy\nCaren\nCassie\nClaire\nEbony\nGretchen\nHollie\nIvy\nJerri\nLadonna\nLatrice\nLiza\nLouise\nMargie\nMercy\nOlga\nPatty\nShalonda\nShantell\nSheree\nValarie\nWhitney\nAlyssa\nAntionette\nBonita\nBrandee\nCharmaine\nDarcy\nDora\nElisa\nEugenia\nIleana\nJessie\nJune\nLea\nLorie\nLorraine\nMarissa\nNikia\nSelina\nSerena\nShanda\nSunshine\nTawanda\nTawanna\nAlyson\nCari\nCaridad\nChantel\nChristian\nChristopher\nDeidra\nDeidre\nDeirdre\nDelia\nElsa\nEmma\nEthel\nEve\nGabrielle\nGenevieve\nJan\nJena\nKarina\nKatrice\nKisha\nLatarsha\nLisette\nMildred\nMisti\nPhyllis\nRandi\nSilvia\nSusie\nTonja\nValencia\nVera\nAdrianne\nAida\nAlana\nAmelia\nBeatrice\nCandida\nCarly\nCaryn\nClara\nDaniel\nDanita\nDianne\nDionne\nDolores\nEdna\nElisabeth\nElisha\nGeorgia\nGeorgina\nHannah\nHazel\nHilary\nHilda\nHillary\nJanette\nJeanie\nLana\nLatesha\nLeanne\nLuciana\nLucy\nMalinda\nMara\nMarcella\nMaritza\nMarlo\nMaryann\nMeghan\nMonika\nRosalind\nSebrina\nShenita\nThelma\nTijuana\nTomeka\nViolet\nAdrian\nAlecia\nAlissa\nAmi\nBarbra\nBernadette\nBianca\nBrigette\nBuffy\nCarie\nCelena\nChanda\nChantell\nClarissa\nCorey\nDania\nDanyell\nDara\nDarla\nEleanor\nGayle\nGiselle\nHarmony\nIrma\nIvonne\nJeannine\nJolie\nJosephine\nKarrie\nKenyatta\nLauri\nLila\nLynda\nMargo\nMelodie\nMitzi\nNikita\nPolly\nRobert\nShanita\nShannan\nShawanda\nSimone\nStephenie\nSusanne\nSuzette\nYolonda\nAlexia\nAngeline\nAntonia\nAurora\nBertha\nBettina\nBlanca\nCasandra\nChris\nChristel\nCorina\nCorrie\nCrista\nCristie\nDayna\nDeann\nDeena\nDenice\nDixie\nDominique\nElla\nEric\nEsmeralda\nEunice\nFlorence\nFrancine\nGena\nGidget\nHelena\nJanine\nJohn\nJosie\nJustina\nKami\nKarin\nKathrine\nKayla\nKristal\nLashon\nLeeann\nLeila\nLela\nLenora\nLesli\nLillie\nLorena\nLory\nMalissa\nMarian\nMarta\nNadine\nPatrina\nRena\nRoxana\nSandi\nShantel\nSharla\nShay\nStella\nTakisha\nTamisha\nTammara\nTeena\nTessa\nToshiba\nValorie\nWilliam\nYashica\nAlfreda\nAlthea\nAngelita\nAnglea\nAva\nBrande\nBrittany\nCandi\nCarissa\nCarole\nCarolina\nCathleen\nCherry\nChristen\nConsuelo\nCristine\nDanelle\nDarby\nFaye\nFelisha\nFrancis\nHolley\nInez\nJaime\nJami\nJanis\nJanna\nJasmine\nJason\nJayme\nJenniffer\nJeri\nJohnetta\nKate\nKatharine\nKatisha\nKeshia\nLakeshia\nLakiesha\nLashunda\nLasonya\nLatoshia\nLaurel\nLawanna\nLeandra\nLeona\nLily\nLindsay\nLucinda\nLynnette\nMabel\nMadelyn\nMarci\nMilagros\nNathalie\nPatti\nPauline\nPrecious\nRana\nRene\nRenita\nRichelle\nRobbin\nRolanda\nRyan\nSasha\nScott\nShanon\nShanta\nSondra\nStacia\nSyreeta\nTamala\nTamela\nTamera\nTemeka\nTeresita\nTerrie\nTiffaney\nTori\nTressa\nTrinity\nVenus\nWillie\nZoraida\nAdelaida\nAdria\nAlethea\nAlexandria\nAmina\nAmity\nAnastasia\nAndria\nAnnmarie\nAntonette\nAshlee\nAundrea\nBenita\nBernice\nCallie\nCarmon\nCathryn\nCelia\nChristal\nChristin\nCorinne\nCornelia\nCristal\nDamaris\nDavid\nDawna\nDelilah\nDelta\nDestiny\nDoreen\nEbonie\nFatima\nFrankie\nGerri\nGuadalupe\nHenrietta\nJacquline\nJanel\nJanell\nJanelle\nJeana\nJeanine\nJeanna\nJeniffer\nJoi\nJoni\nJosette\nJuliet\nJulissa\nKandy\nKaryn\nKasey\nKatrena\nKay\nKecia\nKeli\nKendall\nKerrie\nKia\nKimberlie\nKris\nLakeysha\nLaronda\nLatina\nLeann\nLeanna\nLindsey\nLoren\nLuz\nMariah\nMarva\nMaxine\nMellissa\nMelony\nMerry\nMinnie\nNellie\nNeva\nNichelle\nPatsy\nPaulette\nPrincess\nRosalie\nRosemarie\nSalena\nSamatha\nSaundra\nShalanda\nShameka\nShane\nShanika\nSharhonda\nSharlene\nShawana\nShawnda\nShea\nShemeka\nStephaine\nTamar\nTamesha\nTatiana\nTiffanie\nTommie\nTwanda\nVerna\nViola\nVonetta\nAbby\nAda\nAngelic\nAngella\nAnnemarie\nAnsley\nApryl\nAretha\nArleen\nAthena\nBritt\nCalandra\nCandie\nCarisa\nCarlie\nCarri\nCary\nCasie\nChanel\nCharnissa\nCharron\nCherilyn\nCherise\nCicily\nClaudine\nColeen\nConsuela\nCora\nCorie\nCorrina\nCristy\nDalia\nDanette\nDaniele\nDanyel\nDavina\nDedra\nDelicia\nDella\nDelores\nDenisha\nDennise\nDorie\nDorothea\nElyse\nFawn\nFlora\nFrancina\nGwen\nHarriet\nHolli\nJoycelyn\nJuana\nJulianne\nKary\nKasandra\nKaty\nKeturah\nKimberlea\nKimberli\nKristan\nLakeesha\nLarhonda\nLarissa\nLashawnda\nLashondra\nLatara\nLatrina\nLavonda\nLenore\nLeola\nLesa\nLiana\nLiliana\nMae\nMaite\nMakisha\nMamie\nMarguerite\nMari\nMarina\nMarty\nMatthew\nMechelle\nMelonie\nMendy\nMilissa\nMillicent\nMillie\nMollie\nMona\nNatarsha\nNiki\nNikkia\nNissa\nNoel\nNova\nPatience\nPenelope\nRacheal\nReva\nRosanna\nRoseann\nSalina\nSamara\nShante\nShantrell\nSharron\nShayne\nSheronda\nSofia\nStephany\nSuzanna\nTalisa\nTalisha\nTanesha\nTangie\nTanika\nTaylor\nTequila\nTerrance\nTherese\nThomasina\nTiffiny\nTiffney\nTimitra\nToinette\nTowanda\nTracee\nTrinette\nTrista\nTwana\nVenessa\nWilma\nJennifer\nAmy\nHeather\nKimberly\nMelissa\nMichelle\nAngela\nStephanie\nLisa\nChristina\nAmanda\nRebecca\nMary\nElizabeth\nNicole\nShannon\nJessica\nKelly\nDawn\nJulie\nApril\nTiffany\nLaura\nTammy\nChristine\nPatricia\nWendy\nKaren\nSusan\nTina\nTracy\nCynthia\nRachel\nTara\nAndrea\nTonya\nStacey\nCarrie\nLori\nStacy\nMaria\nTeresa\nBrandy\nSarah\nChristy\nCrystal\nDana\nMelanie\nErin\nBarbara\nMonica\nHolly\nDanielle\nSandra\nKatherine\nTamara\nErica\nMisty\nMichele\nKatrina\nPamela\nTanya\nYolanda\nAlicia\nRobin\nJacqueline\nVictoria\nDenise\nDonna\nSamantha\nLeslie\nFelicia\nCatherine\nAmber\nSharon\nLinda\nEmily\nDeborah\nTheresa\nKristen\nKristina\nBrenda\nAllison\nCheryl\nJill\nRhonda\nAnna\nBrandi\nSherry\nAshley\nVanessa\nTamika\nValerie\nNatalie\nJamie\nKathleen\nHeidi\nJoy\nMelinda\nNatasha\nCarla\nChristie\nNancy\nRegina\nKristin\nLatasha\nKathryn\nCarolyn\nGina\nPaula\nSara\nAlison\nErika\nJodi\nDiana\nMargaret\nRenee\nSonya\nVeronica\nAngel\nMegan\nVirginia\nDeanna\nCindy\nJanet\nAngie\nLatoya\nMandy\nTracey\nCassandra\nCarol\nLatonya\nSabrina\nSuzanne\nCourtney\nCristina\nLaurie\nKendra\nTerri\nCharity\nJenny\nTameka\nAnn\nDebra\nLeah\nAdrienne\nBridget\nCarmen\nJulia\nMarie\nAnita\nShelly\nMeredith\nSheila\nAimee\nMartha\nKristi\nAnnette\nHope\nKristie\nTraci\nCandace\nJoanna\nKathy\nLakisha\nKelley\nMonique\nSheri\nSonia\nBetty\nLauren\nNichole\nShelley\nStacie\nAnne\nBeth\nJoyce\nKeri\nRobyn\nShirley\nKristy\nShawn\nSummer\nTricia\nBobbie\nKara\nRachael\nTrisha\nCharlene\nDiane\nKari\nNikki\nAna\nEvelyn\nGloria\nJeanette\nKelli\nTasha\nWanda\nMindy\nBonnie\nKristine\nLawanda\nLissette\nMelody\nCandice\nKerry\nKim\nLoretta\nNakia\nPenny\nCaroline\nCharlotte\nDorothy\nKenya\nSherri\nSylvia\nToni\nDarlene\nFrances\nJacquelyn\nJanice\nLatisha\nRebekah\nConnie\nGwendolyn\nLakesha\nRosa\nShana\nTami\nBeverly\nKatina\nKerri\nRuth\nTracie\nTrina\nBelinda\nHelen\nOlivia\nYvonne\nBrooke\nCathy\nMarsha\nPriscilla\nAlice\nAudrey\nBrandie\nCasey\nCheri\nKellie\nKimberley\nTonia\nYvette\nCara\nChandra\nKeisha\nLashonda\nLeigh\nTangela\nJudith\nKrista\nShawna\nStaci\nChristi\nGinger\nMarcia\nNina\nPeggy\nSandy\nSonja\nTammie\nAlisha\nChrista\nClaudia\nGretchen\nJudy\nKarla\nMarilyn\nMiranda\nNorma\nSelena\nColleen\nJeannie\nVivian\nAlexandra\nAlexis\nDebbie\nEricka\nLynn\nRaquel\nRose\nSerena\nShelby\nTabitha\nTamiko\nAngelia\nAngelica\nAngelina\nAutumn\nIvette\nJaime\nJenifer\nJoanne\nKatie\nLatosha\nLee\nMichael\nSheryl\nWendi\nCandy\nCherie\nElaine\nJackie\nJana\nJuanita\nLakeisha\nLena\nLourdes\nOctavia\nPaige\nRochelle\nTania\nAngelique\nAnitra\nBethany\nBillie\nChasity\nLeticia\nMelisa\nNaomi\nSherrie\nTeri\nVicki\nAbigail\nAllyson\nAntoinette\nDemetria\nEileen\nEsther\nJanette\nJean\nMolly\nRuby\nShanna\nTawana\nTomika\nDesiree\nDianna\nEbony\nMaggie\nMiriam\nTabatha\nTia\nAnnie\nDena\nJennie\nKerrie\nLisette\nShalonda\nTanisha\nTomeka\nVickie\nAileen\nAmie\nBecky\nChastity\nEllen\nIris\nJeanne\nJoann\nJody\nJohanna\nKenyatta\nLatarsha\nLesley\nLetitia\nPatrice\nRita\nRoxanne\nTawanna\nAlisa\nBridgette\nElena\nFelecia\nGail\nJami\nJane\nKirsten\nLorraine\nLydia\nMarisa\nMarisol\nMarjorie\nMarlene\nRoberta\nShonda\nYesenia\nAudra\nBobbi\nCatrina\nChanda\nDaphne\nDora\nEva\nGrace\nIvy\nKarrie\nLara\nMargarita\nSally\nSharonda\nSophia\nTerra\nVicky\nAmelia\nCarey\nCaridad\nGena\nJodie\nLashawn\nLeanne\nMarcie\nMarla\nMaureen\nPauline\nRachelle\nShenika\nTanika\nTerry\nTosha\nAlana\nAnika\nChiquita\nConstance\nDina\nEdna\nFaith\nGladys\nHilary\nIrene\nJo\nJune\nKrystal\nMia\nRonda\nShauna\nShawanda\nSunshine\nTawanda\nAdriana\nBridgett\nCari\nCarissa\nCecilia\nDaisy\nElisabeth\nIsabel\nJenna\nKimberlee\nLakeshia\nLana\nLorie\nLuciana\nLynette\nMalinda\nMandi\nMisti\nPhyllis\nRamona\nShelia\nSue\nAlina\nAlyson\nAlyssa\nBetsy\nBrittany\nCasandra\nCassie\nChristopher\nClara\nDayanara\nEdith\nElisa\nElisha\nIda\nJosephine\nLatanya\nLatrice\nLillian\nLindsay\nLora\nLynnette\nMaribel\nMarion\nMichell\nShalanda\nShantel\nShari\nStefanie\nTera\nTisha\nTori\nVera\nZandra\nAisha\nArlene\nCaryn\nCeleste\nChantel\nChristal\nDarcy\nDarla\nDeana\nDionne\nEmma\nGlenda\nIngrid\nIrma\nJames\nJanelle\nJoan\nKisha\nLashanda\nMarci\nOlga\nRene\nShantell\nShellie\nSunny\nTaryn\nWindy\nAlissa\nCallie\nCamille\nCarolina\nCecelia\nDanette\nDara\nDeena\nDeidre\nDoris\nEve\nHannah\nHillary\nJolene\nKarin\nKesha\nLatonia\nLatricia\nLayla\nLynda\nMarcy\nMarian\nMarianne\nMarlo\nMeghan\nMercedes\nMildred\nNora\nPrecious\nShanda\nSilvia\nTammi\nTemeka\nValarie\nVenus\nAbby\nAdrianne\nAndria\nAngelita\nCarie\nCarly\nJanie\nJanna\nJasmine\nKami\nKasey\nLakiesha\nLatrina\nLaurel\nLindsey\nMitzi\nNoelle\nRolanda\nRosemary\nSasha\nShandra\nShayna\nSondra\nSpring\nSusanne\nTamekia\nTamela\nTemika\nTiffani\nTiffanie\nUrsula\nAdria\nAlexa\nAnastasia\nChris\nChrystal\nClarissa\nConsuelo\nDemetrice\nGabrielle\nGeorgia\nGwen\nHollie\nJason\nJeanie\nJeanna\nJeannette\nJeri\nJessie\nLeanna\nLenore\nLois\nMaryann\nMercy\nPaulette\nPenelope\nPhoebe\nRobert\nSandi\nShameka\nShamika\nShanika\nSharron\nShawana\nTarsha\nTerrie\nAlaina\nAli\nAmi\nAurora\nAva\nBarbra\nBeatrice\nBernadette\nBianca\nBritt\nCaren\nCarin\nCarlotta\nCatalina\nCelia\nCharmaine\nChelsea\nCindi\nDavina\nDelia\nDianne\nEsmeralda\nFaye\nFelisha\nGenevieve\nGeorgina\nIleana\nJamila\nJeana\nJeanine\nJohn\nJoni\nJoseph\nJuliet\nKarri\nKatharine\nKay\nKristal\nLacy\nLakita\nLaquita\nLaronda\nLashunda\nLatesha\nLeann\nLeeann\nLenora\nLiza\nLola\nLory\nMalissa\nMamie\nNadine\nPatti\nRandi\nRosalind\nSallie\nStacia\nStephenie\nSusana\nSusie\nTakesha\nThelma\nTonja\nTrudy\nWhitney\nAdrian\nAlecia\nAlma\nAngeline\nAthena\nBeatriz\nBertha\nBonita\nCelena\nCharles\nCher\nChristin\nClaudette\nCorey\nDavid\nDeanne\nDelicia\nDeloris\nDemetra\nDenice\nDestiny\nDixie\nDolores\nDoreen\nElise\nEugenia\nFatima\nFrancis\nGiselle\nHarriet\nHolley\nJan\nJeannine\nJocelyn\nKacey\nKandice\nKarina\nLacey\nLadonna\nLeona\nLillie\nLorrie\nLucretia\nMadeline\nMarcella\nMarissa\nMaritza\nMarta\nMayra\nMellisa\nMelony\nMissy\nMona\nNellie\nNiki\nNikia\nNikita\nPatty\nRacheal\nRegan\nRobbie\nRosemarie\nRosetta\nRyan\nSean\nSebrina\nShani\nShawanna\nSusanna\nTakisha\nTanesha\nTeresita\nTherese\nThomasina\nTreva\nTurkessa\nValencia\nAda\nAlejandra\nAlysia\nAnnmarie\nAntionette\nAyana\nBambi\nBuffy\nCarmelita\nCatina\nCherilyn\nChristian\nChristiana\nCinnamon\nClaire\nConsuela\nCordelia\nCorinne\nCristy\nDamaris\nDaniele\nDedra\nDeidra\nDeirdre\nDominique\nDorian\nElsa\nElsie\nEthel\nEunice\nFrancine\nFrankie\nGeneva\nGeorgette\nGisela\nGrisel\nGuadalupe\nHarmony\nHelena\nJanel\nJanine\nJerri\nJimmie\nJobina\nJoi\nJuana\nJuliette\nKacy\nKaryn\nKate\nKeshia\nKia\nKiesha\nLakesia\nLaquanda\nLarissa\nLashon\nLauri\nLily\nLorena\nLouise\nLucia\nLucy\nLuz\nMagdalena\nMargo\nMarguerite\nMarlen\nMartina\nMelissia\nMicah\nMichel\nMilagros\nMollie\nMyra\nNakisha\nNatalia\nNekia\nNicolle\nPepper\nPolly\nRena\nRenae\nRhoda\nRosalyn\nRosario\nRosita\nSalina\nSerina\nShannan\nShanon\nShanta\nSharla\nSharlene\nSheree\nSherie\nSherita\nTamala\nTamera\nTamica\nTamisha\nTaneka\nTashia\nTashika\nTequila\nTiana\nTimeka\nToby\nTommie\nToshiba\nYulanda\nAdriene\nAlexia\nAltovise\nAngella\nAnnemarie\nAretha\nAshleigh\nAubrey\nAudrea\nAugusta\nAurelia\nBecki\nBenita\nBernice\nBilly\nBobbijo\nBrande\nBrandon\nBree\nBrianna\nBrigitte\nBrook\nCalandra\nCandi\nCarli\nCarmel\nCathryn\nChanel\nCharis\nChrissy\nCicely\nClarice\nCora\nCrista\nCristal\nDanyel\nDarby\nDarci\nDawna\nDeedra\nDemetris\nDusty\nElissa\nEliza\nElla\nEmilie\nFelica\nFelicity\nFlorence\nFrancesca\nFreda\nGabriela\nGayle\nGinny\nGreta\nHolli\nIsis\nJacinta\nJade\nJanean\nJaneen\nJanis\nJanuary\nJena\nJeni\nJeniffer\nJenniffer\nJoey\nJoycelyn\nJuan\nJuli\nJuliana\nKanika\nKarie\nKelsey\nKenyetta\nKutana\nLaila\nLakenya\nLakeysha\nLakia\nLamonica\nLashandra\nLatara\nLatashia\nLatishia\nLatonja\nLavonda\nLea\nLekisha\nLiana\nLolita\nLorna\nLucille\nLucinda\nManda\nMara\nMaranda\nMarcus\nMargie\nMari\nMariana\nMark\nMarti\nMelodie\nMilissa\nMyrna\nNakita\nNatosha\nNoel\nOdalys\nOpal\nPatrick\nPatrina\nPatsy\nPhaedra\nRayna\nRebeca\nRebecka\nReina\nRichelle\nRicky\nRobbin\nRonald\nRoshanda\nRoxana\nSadie\nSaundra\nShane\nShaneka\nShanetta\nShanita\nShantrell\nSharee\nShea\nSheena\nShekita\nSheneka\nSofia\nStar\nStarr\nStella\nSteven\nSuzanna\nSuzette\nSybil\nTalisa\nTalitha\nTameeka\nTamesha\nTamra\nTenika\nTequilla\nTessa\nTiki\nTobi\nTorrie\nToshia\nTracee\nTressa\nTwana\nValorie\nVerna\nViolet\nVonda\nWilliam\nYamile\nYashica\nJennifer\nAmy\nHeather\nMelissa\nKimberly\nAngela\nMichelle\nChristina\nLisa\nJessica\nStephanie\nAmanda\nShannon\nElizabeth\nRebecca\nMary\nNicole\nKelly\nTiffany\nLaura\nJamie\nApril\nChristine\nDawn\nJulie\nSarah\nKaren\nRachel\nJaime\nAndrea\nCynthia\nTammy\nSusan\nTracy\nErin\nCarrie\nStacy\nMaria\nPatricia\nWendy\nTina\nTara\nDanielle\nTonya\nErica\nTanya\nSandra\nBrandy\nKatherine\nStacey\nCrystal\nChristy\nLori\nSamantha\nTeresa\nMonica\nSara\nDana\nAllison\nAlicia\nKatrina\nMelanie\nHolly\nMisty\nSharon\nMichele\nTheresa\nLeslie\nCatherine\nNatalie\nBarbara\nPamela\nAmber\nLatoya\nFelicia\nRobin\nJacqueline\nVictoria\nTamara\nJill\nEmily\nDenise\nKristina\nNatasha\nRegina\nAshley\nLinda\nSabrina\nYolanda\nNancy\nVanessa\nKristin\nValerie\nBrenda\nCourtney\nBrandi\nErika\nCheryl\nDonna\nKristen\nDeborah\nMargaret\nCarla\nAnna\nKathryn\nSherry\nMelinda\nTamika\nJoy\nLatasha\nAngel\nMegan\nVeronica\nKathleen\nLauren\nCristina\nVirginia\nCindy\nDiana\nGina\nTameka\nTracey\nRenee\nRhonda\nAlison\nChristie\nSuzanne\nCarmen\nDebra\nAimee\nJanet\nCarolyn\nHeidi\nJodi\nSonya\nTerri\nKelli\nMandy\nDeanna\nJenny\nPaula\nJoanna\nSheila\nMarie\nNichole\nCandace\nCarol\nKristy\nSummer\nAdrienne\nCharity\nJulia\nAngie\nLatonya\nMartha\nAnita\nKristi\nToni\nLaurie\nSylvia\nTasha\nCandice\nConnie\nKendra\nLeah\nCassandra\nCharlene\nHope\nLindsay\nMelody\nShelley\nAnnette\nKenya\nTabitha\nAna\nCaroline\nDiane\nJanice\nShelly\nBetty\nKellie\nTraci\nYvette\nAnn\nAnne\nBelinda\nEbony\nKathy\nKristie\nMarsha\nRose\nDorothy\nKara\nMarilyn\nMonique\nOlivia\nBeth\nFrances\nJeanette\nKeri\nNikki\nShana\nSheri\nKerry\nBonnie\nKerri\nLakeisha\nLakisha\nSonia\nSherri\nShirley\nTracie\nGloria\nShawn\nBeverly\nKari\nKrista\nRobyn\nLakesha\nRachael\nTennille\nAudrey\nBridget\nMeredith\nRuth\nAlisha\nBrooke\nColleen\nKim\nBethany\nHelen\nJacquelyn\nKatie\nKrystal\nLissette\nPeggy\nRebekah\nShawna\nAlice\nAnitra\nBillie\nKelley\nKristine\nLatisha\nMindy\nTrina\nBobbie\nChastity\nEvelyn\nJami\nJoanne\nJody\nMiranda\nStacie\nCara\nChandra\nChrista\nJoyce\nLawanda\nWanda\nAlexandra\nEricka\nFaith\nLynn\nPriscilla\nStaci\nAlexis\nGwendolyn\nKarla\nLashonda\nLatosha\nMelisa\nNaomi\nRaquel\nYvonne\nDesiree\nGretchen\nJuanita\nJudith\nMarisol\nMolly\nSonja\nTania\nVickie\nAngelia\nGinger\nJeannie\nLeticia\nNadia\nPenny\nRosa\nTammie\nTomeka\nAutumn\nCasey\nClaudia\nDarlene\nJean\nKatina\nLeigh\nLoretta\nMarcia\nTrisha\nAmie\nChasity\nDaphne\nFarrah\nKeisha\nTori\nAlisa\nElena\nJana\nJenifer\nKimberley\nMarlene\nRita\nSelena\nShanna\nSheryl\nTia\nBecky\nCharlotte\nEsther\nLee\nMiriam\nNorma\nShelby\nTabatha\nTonia\nBrandie\nCarey\nChristi\nFelecia\nIris\nJackie\nJennie\nJoann\nLindsey\nLourdes\nMarisa\nSally\nSandy\nSharonda\nTangela\nVivian\nAntoinette\nArlene\nCarissa\nElisabeth\nLesley\nLorraine\nMandi\nTami\nTomika\nTricia\nAngelica\nCathy\nCeleste\nLatanya\nLydia\nMargarita\nMarla\nMichael\nShari\nCheri\nDena\nDoris\nEileen\nElaine\nEva\nGlenda\nHollie\nJane\nJodie\nLatarsha\nMaggie\nOctavia\nPaige\nTanika\nTanisha\nAisha\nAngelique\nBeatriz\nCecilia\nDebbie\nEdith\nGrace\nMarissa\nNakia\nRoberta\nRoxanne\nSherrie\nAngelina\nBridgett\nIvette\nJanette\nJeannette\nJocelyn\nJohanna\nKesha\nKirsten\nLana\nLara\nLiberty\nMalinda\nMarcy\nNora\nPatrice\nRosemary\nShalonda\nShanika\nSophia\nStefanie\nTawanda\nTerry\nWendi\nAllyson\nBobbi\nBrittany\nCarly\nChanda\nClara\nIngrid\nIvy\nJessie\nJoni\nKimberlee\nRochelle\nSasha\nSelina\nSerena\nShellie\nSunshine\nVicki\nAbigail\nAudra\nBetsy\nBridgette\nDeana\nElisa\nGabrielle\nJoan\nJolene\nLashawn\nLisette\nLynette\nMarianne\nMaribel\nMaureen\nShameka\nShayna\nShenika\nSunny\nTakisha\nTarsha\nTawana\nUrsula\nAdrian\nAmelia\nBianca\nCari\nCaridad\nCarolina\nConstance\nEdna\nHilary\nIrene\nIsabel\nJayme\nJena\nLakeshia\nLashanda\nLiza\nLora\nMarjorie\nMaryann\nMercedes\nMyra\nNina\nRosalyn\nShandra\nTaryn\nValencia\nVicky\nYashica\nAileen\nAlina\nAlyson\nAnastasia\nAnnmarie\nChantel\nChelsea\nCherie\nClaire\nDeidra\nDeidre\nDora\nGenevieve\nHilda\nJanie\nJudy\nKarin\nKarina\nLatrice\nLea\nLillian\nLucy\nMarci\nMisti\nOlga\nRachelle\nRamona\nSalina\nShauna\nShayla\nSusana\nSusie\nYesenia\nAlana\nAlma\nAmi\nAnnie\nAshlee\nAva\nBernadette\nBlanca\nCamille\nCatrina\nChiquita\nChrystal\nCicely\nDemetria\nEric\nEsmeralda\nEve\nFarah\nHelena\nKenyatta\nKisha\nLarissa\nLatonia\nLetitia\nMadeline\nMarion\nPauline\nPhyllis\nShakira\nShantel\nSusanne\nTemeka\nTerra\nTosha\nWindy\nAdrianne\nAlecia\nBeatrice\nCandy\nCaryn\nCharmaine\nClarissa\nCristy\nDania\nDeena\nDionne\nFelisha\nGeorgia\nGinny\nIsis\nJaimie\nJan\nJasmine\nJenna\nJolie\nJosephine\nKhalilah\nLaquita\nLayla\nLeann\nLorena\nLorie\nMarian\nMeagan\nOpal\nRonda\nShawanda\nSherika\nShonda\nTera\nTiffani\nTisha\nToya\nValarie\nWhitney\nAda\nAdria\nAlissa\nChaka\nChristen\nChristopher\nConsuelo\nDaisy\nDina\nEllen\nElsa\nEmma\nGeneva\nInez\nIrma\nJames\nJanell\nJanelle\nJanna\nJeanine\nJo\nKatharine\nKatrice\nLakeesha\nLakeysha\nLaquanda\nLashawnda\nLatoria\nLatoyia\nLaurel\nLola\nLuciana\nLucinda\nLynda\nMarta\nMona\nNatalia\nNoelle\nPatty\nRene\nRobert\nRuby\nScarlett\nShamika\nShanell\nShannan\nShanon\nShantell\nShonta\nSue\nSuzette\nTammi\nTeri\nTiana\nTiffanie\nTonja\nTurkessa\nTwanna\nVonda\nYolonda\nAdriana\nBobby\nCassie\nCathleen\nCelena\nCheyenne\nContessa\nCora\nCorey\nCorrie\nCory\nDanna\nDavid\nDolores\nEdwina\nElisha\nFlorence\nFrancis\nHarmony\nHillary\nIndia\nJaclyn\nJamila\nJeanne\nJosie\nKerrie\nLatesha\nLatrina\nLatrisha\nLeanne\nLena\nLenora\nLizette\nLouise\nLucille\nLucretia\nMaya\nMeghan\nMelony\nMia\nMildred\nNiki\nNikia\nPatrica\nRebeca\nSheneka\nSilvia\nTamala\nTameika\nTamiko\nTawanna\nTeresita\nThelma\nViolet\nAdriane\nAlejandra\nAlycia\nAlyssa\nAndria\nAnissa\nAthena\nAyana\nBernice\nBessie\nBrandee\nChantal\nCherish\nChris\nCortney\nDara\nDavina\nDemetra\nDemetrice\nDianne\nDominique\nDoreen\nEleanor\nElise\nElvira\nFelica\nGeorgette\nGiselle\nGladys\nHolley\nIleana\nJammie\nJanuary\nJoanie\nJuana\nKia\nLatricia\nLia\nLillie\nLorrie\nMarcella\nMari\nMayra\nMellisa\nMitzi\nMonika\nPepper\nPrecious\nQuintina\nRandi\nRena\nRosalind\nSandi\nShaneka\nShea\nSheena\nSheree\nSpring\nStephaine\nStephenie\nSusanna\nSydney\nTamekia\nTamera\nTessa\nTiffiny\nTorie\nToshiba\nTracee\nWilliam\nAmee\nAntonia\nBuffy\nCalandra\nCallie\nCaren\nCasandra\nCelina\nChanel\nCher\nChristal\nColette\nCori\nCorina\nCourtenay\nCristie\nDamaris\nDanelle\nDarcie\nDedra\nDeirdre\nDelia\nDelores\nDemetrius\nDestiny\nDusty\nEugenia\nFrankie\nGail\nGraciela\nGuadalupe\nHannah\nHattie\nJade\nJanine\nJeana\nJeanie\nJeanna\nJerri\nJohnnie\nJuliana\nJulianne\nJune\nJustina\nKandy\nKaryn\nKasey\nKathrine\nKay\nKeli\nKenisha\nKira\nKyla\nLacey\nLashandra\nLashunda\nLatavia\nLaticia\nLeila\nLekisha\nLela\nLeona\nLois\nLynnette\nMachelle\nMackenzie\nMalissa\nMaranda\nMarcie\nMarguerite\nMarina\nMaritza\nMarlo\nMartina\nMellissa\nMelonie\nMistie\nMorgan\nNadine\nNakesha\nNanette\nNicolle\nNikita\nNiya\nPenelope\nPrincess\nRana\nReagan\nReina\nRenita\nRhiannon\nRolanda\nRosario\nSabra\nSalena\nSamara\nSerenity\nShanda\nShane\nShara\nShasta\nShelia\nShemika\nShenita\nShona\nSimone\nSondra\nStarr\nStephany\nTalisa\nTamatha\nTamica\nTaneshia\nTenisha\nTequila\nTherese\nTimothy\nTora\nTory\nTreva\nTrudy\nViola\nAdela\nAlesha\nAlethea\nAlexia\nAlishia\nAnetra\nAnette\nAnsley\nAntionette\nAntonio\nAretha\nAubrey\nBambi\nBarbra\nBenita\nBertha\nBrianna\nBrigitte\nBrook\nCandi\nCarmelita\nCasie\nCassaundra\nChana\nChantelle\nCharmain\nChristel\nChristin\nCinnamon\nConsuela\nCornelia\nCristin\nDanette\nDaniela\nDanita\nDayanara\nDebora\nDolly\nDulce\nEliza\nFara\nFrancesca\nFrancine\nFreda\nGeraldine\nGillian\nGlenna\nGwen\nHarriet\nHazel\nIvonne\nJamee\nJamey\nJason\nJeffrey\nJeri\nJoelle\nJohn\nJosefina\nJudi\nJuliet\nKai\nKanika\nKarie\nKate\nKecia\nKimberlea\nKristal\nLakenya\nLamonica\nLarhonda\nLatara\nLatashia\nLatina\nLatoshia\nLeanna\nLeeann\nLeilani\nLorelei\nLorene\nMaite\nMarlena\nMarquita\nMaryanne\nMattie\nMaxine\nMayte\nMichell\nMilagros\nMina\nMinnie\nNatara\nNathalie\nNatosha\nNekia\nNicky\nNicola\nNikole\nNoel\nPaulette\nPortia\nQuanda\nRacheal\nRashida\nRayna\nRebecka\nRenae\nRhea\nRichard\nRosalinda\nRosalynn\nRoshonda\nRyan\nSamatha\nSarai\nSeason\nShakita\nSharhonda\nSharron\nShawanna\nSheba\nSherie\nSherina\nSherita\nSherrell\nSunni\nTakiyah\nTamesha\nTamra\nTaneka\nTarra\nTashara\nTashika\nTawnya\nTeneka\nTenika\nTequilla\nThomas\nTierra\nTimika\nToria\nValorie\nVenessa\nWillie\nZenobia\nJennifer\nMelissa\nHeather\nMichelle\nJessica\nAmy\nAngela\nKimberly\nChristina\nAmanda\nLisa\nKelly\nStephanie\nElizabeth\nShannon\nNicole\nRebecca\nSarah\nMary\nJamie\nLaura\nTiffany\nApril\nAndrea\nJulie\nChristine\nCrystal\nPatricia\nErin\nRachel\nKaren\nCarrie\nTara\nDanielle\nDawn\nErica\nMonica\nMaria\nTammy\nMelanie\nTina\nCynthia\nSabrina\nWendy\nSara\nTracy\nAmber\nMisty\nKatherine\nSusan\nStacy\nBrandy\nJaime\nAlicia\nLatoya\nHolly\nTonya\nNatalie\nStacey\nLori\nSandra\nKristina\nCatherine\nBarbara\nDana\nSummer\nVanessa\nAllison\nChristy\nLeslie\nAshley\nTamara\nEmily\nNatasha\nSamantha\nTanya\nDonna\nJill\nAngel\nSharon\nVictoria\nTeresa\nMichele\nErika\nAnna\nRobin\nYolanda\nJacqueline\nFelicia\nKristen\nValerie\nKathryn\nCourtney\nPamela\nDiana\nLinda\nLauren\nSuzanne\nDenise\nKatrina\nDeborah\nVeronica\nKristin\nCheryl\nRhonda\nTheresa\nMegan\nBrenda\nSherry\nCassandra\nLeah\nBrandi\nGina\nDeanna\nJoy\nTamika\nLatasha\nMelinda\nRegina\nCarolyn\nKristy\nKelli\nChristie\nAimee\nNancy\nRenee\nDebra\nCarla\nMargaret\nKathleen\nMarie\nTameka\nCindy\nNichole\nJenny\nKizzy\nKristi\nMandy\nCristina\nLakisha\nEbony\nShana\nBrooke\nHeidi\nAlison\nJanet\nLindsay\nSheila\nBonnie\nJodi\nMelody\nAdrienne\nAnn\nAnne\nPaula\nTabitha\nKara\nCharlene\nJoanna\nJulia\nSonya\nFarrah\nTracey\nVirginia\nDiane\nKelley\nMonique\nShawna\nCarmen\nJaclyn\nMartha\nRobyn\nKatie\nShanna\nBeth\nCarol\nFrances\nMeredith\nRuth\nShelly\nTasha\nCharlotte\nKrista\nLaurie\nAna\nKathy\nKristie\nKristine\nLatonya\nTerri\nKendra\nMarisa\nAnnette\nRachael\nAnita\nBelinda\nCandice\nColleen\nJanice\nGloria\nKari\nKellie\nDorothy\nHope\nKenya\nRebekah\nSheri\nSylvia\nAlisha\nMolly\nLawanda\nBetty\nBeverly\nEricka\nLakesha\nLashonda\nEva\nEvelyn\nKim\nNikki\nSonia\nAisha\nBethany\nBobbie\nBridget\nCaroline\nJacquelyn\nJami\nLakeisha\nLynn\nMindy\nToni\nAngie\nCara\nJeanette\nLatisha\nOlivia\nPriscilla\nAlisa\nAutumn\nCandace\nCharity\nConnie\nGinger\nKeri\nNadia\nSherri\nTraci\nTrisha\nDarlene\nFaith\nJoyce\nJuanita\nLesley\nMiranda\nNaomi\nShawn\nStacie\nJenifer\nKerry\nLindsey\nKarla\nKerri\nTrina\nAlexis\nCasey\nJana\nPenny\nShelley\nTania\nTonia\nYvette\nYvonne\nChrista\nJocelyn\nJody\nKeisha\nMarsha\nMelisa\nRosa\nRose\nShelby\nStefanie\nAudrey\nChandra\nEllen\nHelen\nIris\nJohanna\nLissette\nMarilyn\nMarlene\nSally\nSharonda\nShayla\nStaci\nAlice\nCandy\nCathy\nClaudia\nJudith\nKimberley\nKrystal\nMarissa\nRuby\nSandy\nTori\nChasity\nElena\nLatosha\nLeigh\nLeticia\nMarcia\nTabatha\nTeri\nTia\nTricia\nAlexandra\nAmie\nBillie\nBobbi\nDesiree\nLara\nLydia\nMichael\nNina\nShirley\nVicki\nAngelica\nBecky\nEileen\nEsther\nJackie\nJennie\nJillian\nLakeshia\nLoretta\nMarisol\nMia\nMiriam\nSelena\nShameka\nShauna\nTracie\nAbigail\nAdriana\nDianna\nElaine\nGwendolyn\nJoanne\nKarrie\nPeggy\nRaquel\nTanika\nVivian\nAngelina\nAntoinette\nCarey\nDeana\nIsabel\nJeannie\nLashanda\nLatanya\nMeghan\nNorma\nOctavia\nShalonda\nSophia\nTomeka\nWanda\nWhitney\nAnitra\nAnnie\nBrandie\nBridgette\nChiquita\nJeannette\nKizzie\nLee\nRamona\nSonja\nCarissa\nChanda\nDoris\nEmma\nGrace\nHillary\nJean\nJoann\nKesha\nLora\nLourdes\nNakia\nRita\nRochelle\nShanta\nVickie\nYesenia\nAlina\nChelsea\nChristi\nConstance\nElisa\nFelecia\nGlenda\nHannah\nJanette\nJasmine\nJodie\nKatina\nShellie\nSommer\nTerra\nCari\nCherie\nDaisy\nDebbie\nHollie\nKarin\nKhalilah\nMara\nMarion\nMarjorie\nTammie\nTanisha\nTawana\nTequila\nAmelia\nAshlee\nAudra\nBrittany\nDena\nElisabeth\nGretchen\nIvette\nJenna\nJosephine\nMandi\nMaribel\nPatrice\nRachelle\nRonda\nRosemary\nTami\nTawanna\nTennille\nAlyssa\nAngelia\nBridgett\nCharmaine\nChastity\nCheri\nDaphne\nDemetria\nGenevieve\nIngrid\nJamila\nJane\nJanelle\nJason\nJessie\nKisha\nLatrice\nMalinda\nMarla\nNoelle\nShelia\nSherrie\nTakisha\nTaryn\nBianca\nCallie\nCaridad\nCarolina\nCatrina\nCorey\nCori\nDelia\nDina\nDionne\nHaley\nJoan\nLadonna\nLashawn\nLaurel\nLena\nLynda\nMellissa\nMercedes\nRoxanne\nShamika\nShanika\nShawnta\nSheryl\nSpring\nTammi\nTangela\nAlecia\nAlyson\nBernadette\nCarly\nCecilia\nChristopher\nDeidre\nElisha\nGena\nGeorgia\nJoni\nJudy\nKate\nKeli\nKirsten\nLatonia\nLiana\nLisette\nLiza\nLorena\nMaryann\nMisti\nRosalind\nRosalyn\nRyan\nSelina\nSerena\nShani\nShante\nShenika\nSuhaill\nSunshine\nTamekia\nUrsula\nAlissa\nChantel\nChrystal\nDominique\nGail\nJames\nJanie\nJolene\nKarina\nKenisha\nLatarsha\nLatoria\nLorie\nLorraine\nMarianne\nMilagros\nNora\nRobert\nRoberta\nSalena\nSamara\nSandi\nShantel\nShawanda\nSheree\nTamera\nTosha\nValarie\nVicky\nWindy\nAllyson\nAngelique\nBambi\nCasandra\nCassie\nChristin\nDanette\nEdith\nEdna\nEsmeralda\nJanel\nJeanne\nJune\nKasey\nKatharine\nLakeysha\nMaggie\nMarcie\nMarcy\nMargarita\nMarlena\nMaureen\nMeagan\nMona\nRashida\nRaven\nRhiannon\nShawnte\nTawanda\nYolonda\nAileen\nAlana\nAlma\nAthena\nAyanna\nBeatriz\nBetsy\nCaryn\nChristal\nChristian\nCristal\nCristy\nDanita\nDestiny\nEric\nEugenia\nHilary\nIrene\nLaquanda\nLaquita\nLatesha\nLatricia\nLayla\nLeann\nMelodie\nMinnie\nNikia\nPhyllis\nPrecious\nRandi\nRene\nScarlett\nShannan\nShantell\nSusana\nTalia\nTanesha\nTera\nTiffani\nTwanna\nValencia\nAdria\nAdrian\nAndria\nCharla\nCicely\nCorinne\nDeena\nDeirdre\nDevon\nDixie\nFawn\nHolli\nIleana\nIsis\nJaimie\nJammie\nJan\nJanell\nJanna\nKimberlee\nLana\nLatashia\nLeila\nLindy\nLynette\nMalissa\nMaranda\nMargie\nPaige\nPaulette\nPenelope\nShari\nShawana\nStacia\nStephaine\nTamica\nTamra\nTarsha\nTisha\nVenus\nWendi\nWilliam\nAmi\nAnnmarie\nAntionette\nArlene\nAubrey\nAvis\nBree\nBriana\nBrianna\nBrook\nCamille\nCathleen\nCatina\nCelena\nCeleste\nClaire\nClarissa\nDamaris\nDarcie\nDayna\nDeidra\nDelores\nDianne\nElla\nFarah\nFelisha\nGabrielle\nGladys\nIrma\nIvy\nJacklyn\nJanuary\nJayme\nJeanie\nJoey\nJosie\nJulianne\nKamilah\nLakita\nLarissa\nLeanne\nLenora\nMariah\nMartina\nMaya\nMelonie\nMichell\nMyra\nNatalia\nNicolle\nOlga\nSalina\nShakita\nShanita\nSharlene\nShaunta\nShayna\nSondra\nSusie\nTakesha\nTarah\nTarra\nTemeka\nTerrie\nTerry\nThelma\nYashica\nAdriane\nAdrianne\nAngella\nAntonia\nAshleigh\nAyesha\nBlanca\nBrittney\nCandida\nCelina\nChanel\nClara\nColette\nConsuelo\nDania\nDeanne\nDenice\nElaina\nElissa\nErnestine\nEunice\nFlorence\nHazel\nHelena\nHolley\nJada\nJanis\nJenniffer\nJeri\nJo\nJolie\nKacey\nKami\nKeely\nKerrie\nLashunda\nLatina\nLetitia\nLillian\nLois\nLolita\nLouise\nLucy\nMadeline\nMarcella\nMarta\nMildred\nMitzi\nMonika\nNadine\nNakisha\nNatosha\nNikita\nPiper\nRacheal\nRikki\nRosie\nRoxana\nSabrena\nShanda\nShanon\nSharika\nShawnna\nSheena\nSheria\nSherika\nShonna\nSimone\nStar\nStephenie\nSunny\nSuzette\nTameika\nTamiko\nTemika\nTeresita\nTomika\nTorri\nTory\nTrinity\nTrish\nTwila\nValeria\nViola\nAlexia\nAntonette\nAraceli\nAva\nBenita\nBonita\nBreanne\nBuffy\nCalandra\nCandi\nCarl\nCarri\nCecelia\nChantelle\nCharissa\nCharles\nChristen\nCorrie\nDallas\nDanelle\nDaniel\nDarcy\nDarla\nDavid\nDeloris\nDemetra\nDemetrice\nDevona\nDora\nDusty\nElise\nEvette\nFatima\nFelisa\nFrancesca\nFrancine\nFrancis\nFreda\nGracie\nHenrietta\nIda\nJamey\nJeanna\nJeniffer\nJohn\nJohnnie\nJoi\nJuana\nKenna\nKenyatta\nKeshia\nKia\nKirstin\nKristal\nLacey\nLakeesha\nLakenya\nLakishia\nLashawna\nLashawnda\nLashondra\nLatara\nLaticia\nLatoyia\nLatrina\nLea\nLeeann\nLela\nLidia\nLillie\nLola\nLorna\nLuciana\nLucinda\nLucretia\nLuz\nMaite\nMalika\nMarci\nMariela\nMarisela\nMarlo\nMattie\nMaura\nMellisa\nMollie\nMorgan\nNatacha\nNoel\nPepper\nQiana\nRana\nRena\nRenae\nRobbie\nRosalynn\nRosanna\nRosemarie\nRoshanda\nSacha\nSasha\nSeason\nShandra\nShane\nShaneka\nShantae\nSharhonda\nShasta\nShea\nShemeka\nSofia\nStarla\nStella\nSue\nTabetha\nTamesha\nTammara\nTarrah\nTatiana\nTobi\nTorrie\nTynisha\nVera\nYalonda\nYasmin\nAda\nAddie\nAlejandra\nAlthea\nAlysia\nAngeline\nAntonio\nAriane\nAriel\nAshlie\nAutum\nBilliejo\nBobbijo\nBrandee\nCandis\nCarisa\nCarole\nCelia\nChasidy\nContessa\nCora\nCorrina\nCortney\nCristi\nDale\nDara\nDarby\nDedra\nDella\nDolly\nDonya\nDorian\nEve\nFaye\nFeather\nFelica\nGayle\nGeneva\nGeorgette\nHarmony\nHarriet\nJacquelin\nJade\nJeannine\nJerri\nJesenia\nJesse\nJulianna\nJuliet\nJustina\nKanika\nKanisha\nKaryn\nKatheryn\nKathrine\nKatia\nKayla\nKenyetta\nKiki\nKori\nKrysta\nLakecia\nLaquisha\nLashay\nLashon\nLatavia\nLawana\nLeanna\nLila\nLizette\nLoren\nLorinda\nLorrie\nLyndsay\nLynne\nMarilu\nMark\nMarysol\nMayte\nMelynda\nMicah\nNathalie\nNekesha\nNerissa\nNila\nPatrica\nPatty\nPauline\nRasheeda\nRhea\nRichelle\nRolanda\nRonica\nSallie\nSebrina\nShalanda\nShalandra\nShalon\nShamekia\nShantrell\nShawnda\nShawntae\nShena\nSherell\nSheronda\nShira\nShonda\nShondra\nShonte\nSilvia\nStarr\nSugey\nTakiyah\nTamala\nTamarra\nTamisha\nTelisha\nTequilla\nTerica\nTiana\nTiffaney\nToya\nTrudy\nTwana\nVenessa\nYarnell\nJennifer\nMelissa\nJessica\nHeather\nKimberly\nMichelle\nChristina\nAngela\nAmanda\nAmy\nKelly\nStephanie\nLisa\nNicole\nElizabeth\nCrystal\nSarah\nShannon\nRebecca\nTiffany\nMary\nApril\nLaura\nAndrea\nJamie\nErin\nRachel\nErica\nJulie\nBrandy\nDanielle\nChristine\nCarrie\nTara\nMonica\nPatricia\nKaren\nCynthia\nTina\nAmber\nSara\nMaria\nTracy\nVanessa\nAshley\nHolly\nDawn\nKatherine\nAlicia\nNatalie\nStacy\nEmily\nSamantha\nWendy\nMelanie\nStacey\nChristy\nKristina\nMisty\nTammy\nLeslie\nSusan\nSabrina\nJacqueline\nLauren\nBrandi\nTonya\nKristy\nAllison\nTeresa\nDana\nTanya\nCatherine\nKathryn\nKristen\nLatoya\nRobin\nNatasha\nSandra\nBarbara\nDeborah\nTamara\nVictoria\nKatrina\nMichele\nJill\nMelinda\nCheryl\nFelicia\nLori\nTheresa\nAnna\nDenise\nErika\nCourtney\nSharon\nYolanda\nKristin\nLinda\nSummer\nDonna\nMegan\nValerie\nVeronica\nJoy\nMargaret\nNancy\nPamela\nTabitha\nCassandra\nJaime\nKathleen\nRegina\nAlison\nNichole\nDeanna\nLatasha\nRenee\nAngel\nCarolyn\nDiana\nGina\nLeah\nMeredith\nHeidi\nTamika\nKendra\nCarla\nSuzanne\nDebra\nEbony\nLindsay\nMandy\nBrooke\nRhonda\nAimee\nKristi\nKatie\nCristina\nVirginia\nCandice\nJulia\nKelli\nJenny\nTameka\nJanet\nSherry\nPaula\nShanna\nBrenda\nShana\nBeth\nChristie\nMarie\nAdrienne\nJodi\nMonique\nCasey\nKelley\nLakesha\nAna\nKara\nToni\nAnne\nCarmen\nColleen\nLakisha\nRebekah\nDorothy\nMelody\nCindy\nTasha\nAnn\nDesiree\nJaclyn\nOlivia\nTracey\nKrista\nShelly\nBonnie\nCarol\nLatonya\nSylvia\nCharlene\nConnie\nKristine\nMarilyn\nAudrey\nJanelle\nLindsey\nSonya\nTraci\nBethany\nBridget\nDiane\nKellie\nYvette\nAnnette\nTrisha\nCandace\nEvelyn\nGloria\nSheila\nAngie\nAnita\nCara\nMarsha\nShawna\nJanice\nKeri\nKristie\nKrystal\nMartha\nMeghan\nBeverly\nCharity\nLakeisha\nLeigh\nMarisa\nMiranda\nSherri\nTricia\nAlisha\nCaroline\nJeanette\nKari\nLaurie\nPriscilla\nShauna\nAlexis\nKeisha\nFrances\nKizzy\nRita\nAlexandra\nHope\nLawanda\nMolly\nRachael\nSonia\nTerri\nAutumn\nDarlene\nKerry\nLatisha\nMarcia\nRosa\nRuth\nJuanita\nYvonne\nBecky\nBetty\nBillie\nJenifer\nKenya\nMindy\nEricka\nLashonda\nRose\nShanika\nShayla\nSheri\nEsther\nJacquelyn\nJana\nKathy\nMarissa\nRobyn\nSelena\nStacie\nAngelina\nBobbie\nFaith\nJoanna\nMelisa\nShameka\nShelley\nShirley\nTori\nAisha\nChandra\nJody\nKim\nNaomi\nTia\nDevon\nEva\nHillary\nAmelia\nCorinne\nGrace\nJessie\nJillian\nJoni\nKerri\nLatanya\nLora\nLourdes\nNadia\nPenny\nRaquel\nSommer\nTiffani\nWhitney\nAdriana\nAmie\nAngelique\nAudra\nClaudia\nElisa\nGabrielle\nIris\nJocelyn\nJudith\nNikki\nAlice\nAntoinette\nChrista\nChristi\nEileen\nElaine\nLesley\nLydia\nMandi\nMarisol\nMercedes\nSerena\nStaci\nTabatha\nAdrian\nBelinda\nCarly\nDebbie\nFarrah\nJami\nKarla\nLatosha\nMalinda\nSharonda\nShawn\nTammie\nTanisha\nVivian\nAlyson\nHelen\nIvette\nJeannie\nKarrie\nLee\nTrina\nAbigail\nAlyssa\nAngelia\nChrystal\nDena\nElisha\nGinger\nGwendolyn\nHollie\nJasmine\nJoanne\nJohanna\nKarina\nLacey\nLorraine\nLynn\nNakisha\nNorma\nSandy\nTomeka\nTonia\nAllyson\nBridgette\nBrittany\nCarey\nCassie\nCharlotte\nChelsea\nDoris\nGlenda\nHilary\nJackie\nJennie\nKenisha\nKimberley\nKirsten\nLakeshia\nLeticia\nRyan\nSophia\nTracie\nYesenia\nCarolina\nChasity\nGretchen\nHannah\nIrene\nJoann\nJodie\nKenyatta\nLena\nLissette\nLoretta\nNora\nShanta\nTawanna\nTeri\nVicki\nVickie\nWanda\nAlissa\nBianca\nCeleste\nElena\nIvy\nJanette\nJean\nJoyce\nKimberlee\nMarla\nMarta\nNina\nSelina\nStefanie\nTangela\nTemeka\nTosha\nAthena\nCarissa\nConstance\nCristy\nJane\nJanine\nJeanne\nJolene\nLana\nLeanne\nMargarita\nMia\nRachelle\nShantel\nSusana\nTaryn\nTawana\nVenus\nAbby\nAlana\nAlisa\nAnitra\nAntonia\nAubrey\nBobbi\nBrandie\nCaryn\nCherie\nDeana\nDianna\nEdna\nJames\nJanuary\nJenna\nLara\nLea\nLynda\nMiriam\nNatalia\nOctavia\nRoberta\nShamika\nSilvia\nAlecia\nAngelica\nAnnie\nBeatriz\nCathy\nCheri\nChiquita\nClaire\nElisabeth\nEugenia\nJamila\nLashanda\nLatrice\nMaureen\nMichael\nNoelle\nOlga\nPaulette\nPeggy\nRandi\nRosemary\nRoxanne\nSally\nSasha\nShalanda\nShalonda\nTania\nTawanda\nAileen\nAja\nArlene\nBernadette\nBridgett\nCandy\nCatrina\nChantel\nCharmaine\nChastity\nDaisy\nDaphne\nEllen\nEsmeralda\nFelecia\nGail\nHaley\nJo\nKarin\nKatina\nKesha\nKia\nKylie\nLashawn\nLynette\nMarlene\nMisti\nNoemi\nPatrice\nPhyllis\nPrecious\nRhiannon\nShari\nSheree\nTequila\nTerra\nWendi\nAdrianne\nAndria\nBetsy\nDionne\nIngrid\nIsabel\nJammie\nJanel\nJoan\nJudy\nKaryn\nKasey\nKristal\nLashunda\nLatarsha\nLatricia\nLeila\nLetitia\nLisette\nMarci\nMaribel\nMaritza\nMarlena\nMilagros\nNadine\nNikita\nRobert\nRuby\nShaneka\nShayna\nShenika\nSonja\nTakesha\nTamekia\nTami\nTerry\nValarie\nYolonda\nAdriane\nAlma\nAmi\nCari\nCasandra\nCecilia\nCicely\nClara\nDina\nElise\nEmma\nIsis\nJaimie\nJune\nKatharine\nKisha\nLatoria\nLeona\nMarcie\nMarianne\nMarjorie\nMyra\nPauline\nRena\nRochelle\nShawanda\nShelby\nSherrie\nSheryl\nSpring\nStella\nSunshine\nTameika\nTamica\nTisha\nTomika\nAdria\nAlina\nAshlie\nAyesha\nBambi\nCaridad\nDara\nDavina\nDeidra\nDeidre\nDestiny\nDixie\nHayley\nHelena\nJena\nKizzie\nKrissy\nLeanna\nLillian\nLiza\nMeagan\nMelony\nMonika\nNakia\nRae\nRamona\nSalina\nSebrina\nShavon\nShavonda\nSherika\nSunny\nSusanne\nSuzette\nTakisha\nTalia\nTamiko\nTanika\nTarah\nWindy\nAlysia\nAngeline\nAnissa\nBlanca\nChanda\nChrissy\nChristal\nDarcy\nDayna\nDominique\nElaina\nElissa\nFelisha\nGiselle\nIrma\nJanell\nJanie\nJanna\nJohn\nJosephine\nKayla\nLacy\nLatonia\nLatoyia\nLeann\nLorie\nMadelyn\nMaggie\nMarcella\nMariela\nMeghann\nMellissa\nNikia\nQiana\nRacheal\nRebeca\nRonda\nRosalind\nShameika\nShawana\nShawnta\nStar\nTanesha\nTenisha\nTessa\nTiana\nTiffanie\nVicky\nWillie\nAdrianna\nAnastasia\nAriane\nCalandra\nCamille\nChristen\nChristopher\nCora\nDeandra\nDemetria\nDevin\nDianne\nGayle\nGena\nJan\nJason\nJeanna\nJeannette\nJoelle\nJoi\nJordan\nKandi\nKarri\nKate\nKeely\nKellee\nKhalilah\nLakenya\nLashaunda\nLashawnda\nLucretia\nLucy\nMalissa\nMaranda\nMariah\nMarion\nMartina\nMaya\nMorgan\nNatacha\nNatosha\nPaige\nRaven\nRene\nRosalyn\nShane\nShawnte\nShellie\nShemeka\nSimone\nSomer\nSondra\nSue\nSusanna\nTammi\nTaneka\nToya\nTressa\nTwanna\nUrsula\nValencia\nValeria\nViola\nAnnmarie\nBenita\nBettina\nBrian\nBriana\nCarisa\nCarlotta\nCasie\nCheyenne\nClarissa\nCorey\nCorina\nCory\nDacia\nDanita\nDelores\nDione\nDora\nEboni\nEleanor\nEric\nGeneva\nGenevieve\nGillian\nGladys\nHarmony\nIda\nIleana\nJayme\nJeanine\nJeannine\nJuliana\nJulissa\nKacey\nKarey\nKathrine\nKeli\nKerrie\nKitty\nLaquanda\nLaquita\nLarissa\nLatina\nLatrell\nLaurel\nLeilani\nLizette\nLolita\nLorrie\nLouise\nLucinda\nMarcy\nMarlana\nMarni\nMelodie\nMichell\nNakesha\nNatashia\nNiki\nPatience\nQuiana\nRaina\nRegan\nRenae\nSamatha\nShakita\nShandra\nShantae\nSharee\nShaunna\nShena\nShonda\nStarr\nStephaine\nTedra\nTera\nThomas\nTwyla\nTynisha\nAlberta\nAlfreda\nAlycia\nAnsley\nAnthony\nAntionette\nAretha\nAriana\nAshleigh\nAva\nBernice\nBrandee\nBrenna\nBrianne\nCallie\nCameron\nCaron\nCassidy\nCathleen\nCathryn\nCelena\nChanel\nChris\nChristel\nClaudine\nCoral\nCortney\nDamaris\nDannielle\nDelana\nDinah\nDolores\nEthel\nEve\nFaye\nFrancesca\nFrancine\nFreda\nHallie\nHilda\nHolley\nJada\nJade\nJeanie\nJesica\nJohnnie\nJoshua\nJuli\nJustin\nJustine\nKarie\nKawana\nKeturah\nKiley\nKourtney\nKyla\nLatesha\nLatrese\nLatrina\nLayla\nLekisha\nLetisha\nLois\nMadeline\nMae\nMamie\nMara\nMargo\nMaryann\nMelba\nMellisa\nMelonie\nMendy\nMildred\nMyrna\nNicola\nPolly\nRashonda\nRichard\nRichelle\nRosemarie\nShanda\nShani\nShanita\nShante\nSharla\nShasta\nShaun\nShaunte\nShawntae\nShelia\nSheneka\nSherell\nSherita\nShona\nShonna\nStacia\nTamesha\nTamra\nTatiana\nTaylor\nTemika\nTeresita\nThelma\nTrinity\nTyra\nYashica\nYasmin\nAbbie\nAdina\nAida\nAlexa\nAlexia\nAlishia\nAmalia\nAnika\nAnnemarie\nAshanti\nAvis\nBeatrice\nBonita\nBrianna\nBrook\nCaren\nCary\nChante\nCharissa\nCharlie\nChristiana\nConsuela\nCorrie\nCorrine\nCrissy\nCrista\nCristin\nCybil\nDaneen\nDanette\nDanna\nDaria\nDarla\nDeann\nDeirdre\nDelicia\nDelilah\nDella\nElsa\nElsie\nElyse\nEunice\nFrancis\nFrankie\nGabriela\nGeorgette\nGeorgia\nGeorgina\nGinny\nGwen\nHazel\nHolli\nIlene\nIvey\nIvory\nJacki\nJacklyn\nJacqulyn\nJanene\nJannette\nJasmin\nJeniffer\nJeri\nJerri\nJessi\nJovanna\nJuana\nJulianne\nJuliette\nJustina\nKami\nKamilah\nKandice\nKanisha\nKasie\nKatheryn\nKaty\nKissy\nLadonna\nLakendra\nLarhonda\nLashawna\nLashawndra\nLaticia\nLatronda\nLavonda\nLeana\nLeeanne\nLenora\nLidia\nLoren\nLucia\nLynsey\nMabel\nMahogany\nMaite\nMarina\nMarquita\nMatthew\nMckenzie\nMicheal\nNatisha\nNedra\nNikisha\nNoel\nPatrick\nPatty\nPenelope\nPortia\nPrincess\nPriscila\nRashanda\nReagan\nRoxana\nSalena\nSamara\nSandi\nSarina\nScarlett\nSeason\nSerina\nShamekia\nShanekia\nShanequa\nShannan\nShanon\nShantell\nSharhonda\nSharlene\nShavonne\nShawanna\nShawnda\nSherrell\nShunta\nSofia\nStarla\nStephany\nStephenie\nSusie\nSydney\nTabetha\nTalisha\nTalitha\nTamisha\nTammara\nTanzania\nTarsha\nTavia\nTawnya\nTequilla\nTerika\nTerrica\nTherese\nTiffiny\nTimeka\nTimika\nTory\nTracee\nTrish\nTrudy\nVera\nViviana\nYulonda\nJennifer\nMelissa\nAmanda\nJessica\nChristina\nHeather\nMichelle\nKimberly\nAngela\nNicole\nStephanie\nAmy\nLisa\nElizabeth\nKelly\nSarah\nTiffany\nRebecca\nApril\nCrystal\nShannon\nLaura\nMary\nJamie\nErica\nErin\nAndrea\nRachel\nAmber\nDanielle\nJulie\nChristine\nPatricia\nBrandy\nTracy\nKatherine\nMaria\nMonica\nSamantha\nSara\nAlicia\nTara\nAshley\nDana\nHolly\nDawn\nCarrie\nSusan\nEmily\nLauren\nVanessa\nMisty\nCynthia\nTina\nJacqueline\nTammy\nKaren\nMelanie\nStacey\nKristina\nStacy\nMegan\nNatalie\nWendy\nLeslie\nAllison\nBrandi\nChristy\nNatasha\nSabrina\nSandra\nPamela\nKathryn\nKristy\nTamara\nBarbara\nTonya\nCatherine\nCourtney\nCheryl\nErika\nLatoya\nTheresa\nKatrina\nAnna\nLori\nKristen\nTeresa\nDenise\nKristin\nTanya\nMelinda\nLeah\nSharon\nRobin\nBrooke\nFelicia\nMichele\nYolanda\nVeronica\nKatie\nMindy\nLinda\nJill\nHeidi\nLatasha\nSummer\nDonna\nKathleen\nVictoria\nValerie\nAlison\nNichole\nJaime\nJoy\nRegina\nAimee\nNancy\nBonnie\nCristina\nLindsey\nKendra\nCassandra\nGina\nRenee\nAngel\nJenny\nLindsay\nMonique\nMandy\nMarie\nJaclyn\nRhonda\nBrenda\nCarla\nCarolyn\nDiana\nMargaret\nSuzanne\nCandice\nCindy\nDeanna\nJulia\nKristi\nEbony\nKara\nVirginia\nAdrienne\nLakisha\nCarmen\nChristie\nMelody\nTamika\nDeborah\nSherry\nAna\nDebra\nJanet\nTabitha\nCasey\nKrista\nOlivia\nCandace\nMeredith\nGloria\nRebekah\nShanna\nPaula\nPriscilla\nRachael\nShana\nTameka\nJanice\nKelli\nAnne\nMeghan\nDesiree\nJacquelyn\nNaomi\nRobyn\nTrisha\nJodi\nBeth\nCharity\nKelley\nKellie\nLakeisha\nBridget\nToni\nAnn\nBethany\nJoanna\nMartha\nShawna\nAlexandra\nTracey\nCara\nColleen\nAlisha\nAutumn\nBrianne\nCharlene\nKristie\nMiranda\nShanika\nTerri\nAudrey\nDorothy\nMarissa\nSheila\nLatonya\nLaurie\nLeigh\nAngie\nHelen\nHope\nCarol\nJana\nKari\nStacie\nTasha\nTraci\nAlissa\nBelinda\nJanelle\nShelley\nSonya\nTabatha\nCaroline\nChrista\nEricka\nFrances\nSylvia\nAlexis\nAnnette\nKeri\nKristine\nLatisha\nNikki\nNina\nShelly\nSherri\nKerri\nKerry\nRosa\nShauna\nSonia\nTricia\nAnita\nEvelyn\nJeanette\nJillian\nJuanita\nLakesha\nLesley\nMiriam\nShalonda\nAngelina\nDiane\nJasmine\nPatrice\nRose\nRuth\nViviana\nAudra\nJudith\nMarsha\nVivian\nYvonne\nAlyssa\nCharlotte\nConnie\nFaith\nGrace\nKarla\nKathy\nKrystal\nMarilyn\nMia\nTania\nYvette\nAmie\nAntoinette\nCarly\nCarolina\nEva\nGinger\nKenya\nSandy\nAisha\nAlice\nAmelia\nCathy\nLashonda\nLynn\nMarcia\nMarisa\nShameka\nTia\nBetty\nBrandie\nBrittany\nElisha\nEsther\nGwendolyn\nIris\nLatosha\nLawanda\nMarisol\nMarlene\nRyan\nSharonda\nSheri\nBobbie\nBrianna\nChandra\nJackie\nJami\nLydia\nRaquel\nShayla\nAbigail\nBeverly\nClaudia\nIrene\nJenifer\nJoyce\nKimberley\nLashanda\nShaneka\nSherrie\nYesenia\nBillie\nElaine\nHannah\nJocelyn\nLeticia\nMarjorie\nPenny\nStaci\nTammie\nBecky\nCecilia\nChasity\nDarlene\nDena\nElena\nJennie\nJodie\nKim\nMolly\nShirley\nAnnie\nBianca\nCheri\nCorinne\nDaphne\nDeana\nHilary\nJoann\nKeisha\nLakeshia\nLatanya\nLea\nNadia\nPeggy\nRuby\nSelena\nTonia\nWhitney\nAlana\nAngelique\nGabrielle\nGiselle\nHillary\nHollie\nJean\nJoanne\nKatharine\nKatina\nKristal\nLara\nLissette\nLoretta\nLourdes\nMaya\nMelisa\nMichael\nRita\nRoxanne\nShantell\nTawana\nAngelica\nAshlee\nChristi\nDebbie\nDianna\nJohanna\nKarina\nLora\nLynette\nMaggie\nMaribel\nPrecious\nShari\nAdrian\nCherie\nClara\nEboni\nElisa\nEllen\nFarrah\nHarmony\nIvette\nJane\nJeanne\nJeannie\nKate\nMarlena\nNoelle\nRachelle\nRoberta\nSerena\nShawn\nTanisha\nTracie\nAlecia\nAlisa\nAllyson\nAngelia\nCarissa\nChelsea\nJenna\nJolene\nKirsten\nLaurel\nLorraine\nMarci\nMorgan\nRochelle\nShamika\nShantel\nSheryl\nSophia\nTami\nTangela\nAbby\nAshleigh\nAubrey\nBridgette\nCassie\nCatrina\nChastity\nChristal\nClarissa\nDoris\nJada\nJanette\nJeannette\nJody\nLana\nMercedes\nNatalia\nNorma\nOctavia\nShanta\nSheree\nTerry\nTomeka\nTrina\nWendi\nAdriana\nAdrianne\nCallie\nChiquita\nConstance\nDaisy\nDevin\nDevon\nEileen\nEmma\nIsabel\nJoni\nKasey\nKyla\nLadonna\nLatrice\nLeanne\nLee\nMarcie\nMarianne\nPaige\nShelby\nShenika\nStefanie\nTerra\nAlyson\nCamille\nCandy\nChristian\nEdith\nGenevieve\nGretchen\nIvy\nKarrie\nKimberlee\nKizzy\nMandi\nMarcella\nQuiana\nRobert\nShemeka\nSpring\nTawanna\nVicki\nBernadette\nBriana\nChristopher\nDamaris\nDominique\nFelecia\nGail\nGlenda\nHolli\nJames\nJanell\nJoan\nJohn\nKylie\nMara\nMargarita\nMaryann\nNora\nRebeca\nRena\nRenata\nRene\nSally\nSandi\nShanita\nSusana\nTeri\nBambi\nBettina\nCandi\nCaryn\nCeleste\nChanda\nChristen\nDemetria\nElisabeth\nJanna\nKarin\nLacey\nLeann\nLeanna\nLena\nLillian\nLisette\nLorie\nMarla\nMaureen\nMeagan\nMellissa\nMisti\nNoel\nNoemi\nSasha\nShante\nShelia\nTanika\nTera\nTosha\nWanda\nAdria\nArlene\nAthena\nBeatrice\nBobbi\nBridgett\nCarey\nChanel\nCrissy\nDeidra\nDeirdre\nDestiny\nDina\nElissa\nEsmeralda\nGena\nGeorgina\nJan\nJanine\nJeri\nJudy\nKathrine\nKiley\nLashawn\nLiza\nMalinda\nMalissa\nMarcy\nMari\nMariah\nMeghann\nNicolette\nRosalyn\nSilvia\nStephaine\nSusanna\nTaryn\nTiffani\nTori\nValarie\nVera\nWindy\nAdriane\nAileen\nAlesha\nBetsy\nCasandra\nCasie\nCecelia\nCharmaine\nChristin\nDarcy\nDavid\nDeidre\nDelores\nGeneva\nHaley\nJaimie\nJanessa\nJanuary\nJeanine\nJeannine\nJenelle\nJo\nJordan\nJuliet\nKamilah\nKellee\nKisha\nLatarsha\nLily\nLorena\nLuisa\nNadine\nNakia\nNakisha\nOlga\nRhiannon\nScarlett\nShakita\nShanon\nShawanda\nSherita\nShonda\nSofia\nSondra\nSonja\nSunshine\nSusie\nTalia\nTammi\nTiana\nWillie\nAlina\nAndria\nApryl\nCari\nCarisa\nChrissy\nChrystal\nCortney\nCristy\nDianne\nFaye\nGeraldine\nHilda\nIngrid\nJacklyn\nJanel\nJanie\nJason\nJuliana\nJune\nKaty\nKenisha\nKizzie\nLaquanda\nLarissa\nLatricia\nLeeann\nLinsey\nLucy\nMaranda\nMarina\nMayra\nMilagros\nMyesha\nPrincess\nRandi\nRaven\nRonda\nRosemary\nSharhonda\nShunta\nSiobhan\nSusanne\nTamra\nTashara\nTessa\nThelma\nTomika\nToya\nAda\nAlberta\nAlysia\nAnastasia\nAndra\nAnitra\nBernice\nBreanne\nCaridad\nCelina\nChanelle\nChantel\nCharlie\nClaire\nDania\nDara\nDayna\nEdna\nElise\nEugenia\nGinny\nGuadalupe\nHayley\nHelena\nIda\nIndia\nJanis\nJasmin\nJeanie\nJeanna\nJuana\nKacey\nKeely\nKeli\nLashaunda\nLashawnda\nLatonia\nLatoria\nLeila\nLeilani\nLetisha\nLetitia\nLillie\nLindy\nLoren\nMadeline\nMae\nMarian\nMariel\nMaritza\nMarlana\nMeaghan\nMercy\nMindi\nMonika\nPatti\nPauline\nQiana\nRae\nRamona\nRichard\nSarina\nSelina\nShannan\nSheneka\nSherika\nSue\nTakeisha\nTamekia\nTarsha\nTatiana\nTequilla\nTrinity\nTrista\nTyra\nVickie\nYashica\nYolonda\nAbbie\nAlanna\nAlejandra\nAlexia\nAnnmarie\nAnthony\nAntonia\nAsia\nBenita\nBrandee\nBrittney\nCelena\nCelia\nChantal\nCory\nDanica\nDaniela\nDeanne\nElana\nElicia\nElla\nEvie\nFawn\nFrancesca\nFrancine\nFrancis\nGayla\nGladys\nIrma\nJamila\nJammie\nKacy\nKayla\nKeesha\nKeturah\nKyra\nLani\nLaquita\nLatashia\nLatesha\nLavonda\nLidia\nLina\nLuz\nMaren\nMellisa\nMelodie\nMildred\nMollie\nMona\nNakesha\nNathalie\nNatisha\nNikia\nNikita\nNikkia\nNova\nRegan\nShakira\nShanda\nShanell\nShani\nShantae\nSharee\nShavon\nShawana\nSommer\nSparkle\nStarr\nStephany\nStephenie\nSteven\nTameika\nTamera\nTashika\nTawanda\nTemeka\nTequila\nTiara\nUrsula\nAaron\nAja\nAmberly\nAmi\nAngeline\nAnika\nAntionette\nAshanti\nAshlie\nAurora\nBertha\nBlanca\nCamilla\nCarina\nCarole\nCathleen\nCharles\nChristel\nColette\nCoral\nCorey\nCorine\nCorrie\nCristal\nCristin\nDaniel\nDaniele\nDaniella\nDarla\nDee\nDeena\nDonald\nDonya\nElaina\nEleanor\nElsie\nEric\nFrankie\nGeorgette\nGrisel\nInga\nJade\nJaimee\nJeniffer\nJerri\nJesica\nJesse\nJessi\nJessie\nJoseph\nJosephine\nJuliette\nKaryn\nKatheryn\nKati\nKay\nKeila\nKesha\nKori\nKyle\nKylee\nKylene\nLacie\nLacy\nLakia\nLanette\nLaquisha\nLaronda\nLatorria\nLayla\nLenora\nLetoya\nLizette\nLorrie\nLucinda\nLynda\nMadelyn\nMargie\nMariam\nMarion\nMartina\nMinnie\nNathan\nNia\nNichelle\nNickie\nNiya\nPatrina\nPaulette\nRacheal\nRachele\nReina\nRhianna\nRichelle\nRisa\nRobbin\nRosanna\nRosetta\nRoxanna\nSalina\nSamatha\nSebrina\nShalanda\nShaneika\nSharell\nSharita\nShasta\nShaunna\nShaunta\nShavonda\nShawanna\nShayna\nShellie\nSuzette\nTabetha\nTakisha\nTakita\nTanesha\nTangie\nTarra\nTeneka\nTimothy\nValencia\nVicky\nWinter\nYamile\nAbbey\nAlexa\nAlexandria\nAli\nAllie\nAshly\nBeatriz\nBelkis\nBelkys\nBonny\nBree\nCandis\nCandra\nCarie\nCarlene\nCathryn\nChantelle\nCharla\nCharline\nChimere\nChisa\nChris\nConsuelo\nCora\nCorrine\nDanette\nDanita\nDanna\nDannette\nDarby\nDavina\nDawna\nDelia\nDelilah\nDeven\nDoreen\nDori\nElsa\nEureka\nFelisha\nFlorence\nFredricka\nGabriela\nGeorgia\nHazel\nHenrietta\nIvonne\nJacquline\nJaneen\nJannette\nJayne\nJazmin\nJeana\nJennafer\nJenniffer\nJewel\nJoshua\nJovan\nJulianne\nJustina\nKandace\nKatisha\nKatrena\nKatrice\nKenneth\nKia\nKiana\nKourtney\nLakevia\nLarhonda\nLashay\nLatara\nLatavia\nLaticia\nLatoyia\nLeona\nLeslee\nLianne\nLila\nLucia\nLucretia\nLynne\nLynnette\nMakesha\nMalisa\nMarguerite\nMariela\nMarni\nMarta\nMaryanne\nMattie\nMelissia\nMelynda\nMicah\nMitzi\nNatarsha\nNatashia\nNellie\nNiccole\nNicki\nNikole\nOpal\nPatty\nPetrina\nPhoebe\nPolly\nRashida\nRebbecca\nRenae\nRhea\nRisha\nRolanda\nRosalind\nRoxana\nSallie\nSaundra\nShaina\nShamekia\nShanelle\nShara\nShareka\nSharika\nSharmaine\nShatara\nShavonne\nShay\nShea\nShelli\nShereka\nSierra\nStarla\nStephani\nSunny\nSybil\nSydney\nSyreeta\nTajuana\nTamela\nTamesha\nTameshia\nTaneka\nTaneshia\nTaylor\nTemika\nTenisha\nTennille\nTiffanie\nTiffiny\nTisa\nTomekia\nTorri\nTrudy\nTwanna\nVelma\nVenessa\nViolet\nYasmin\nJennifer\nAmanda\nJessica\nMelissa\nKimberly\nChristina\nHeather\nMichelle\nTiffany\nNicole\nSarah\nAngela\nElizabeth\nStephanie\nAmy\nCrystal\nKelly\nRebecca\nLisa\nApril\nMary\nShannon\nErin\nLaura\nAmber\nDanielle\nRachel\nJamie\nAshley\nErica\nAndrea\nJulie\nLauren\nBrandy\nSara\nKristin\nChristine\nMaria\nKristen\nKatherine\nMonica\nAlicia\nPatricia\nVanessa\nSamantha\nLeslie\nTara\nKaren\nLatoya\nCourtney\nDawn\nKristina\nHolly\nNatalie\nCarrie\nMegan\nTracy\nEmily\nKatrina\nMisty\nDana\nBrandi\nAllison\nStacy\nTina\nBrooke\nNatasha\nCynthia\nKathryn\nJacqueline\nSandra\nMelanie\nSabrina\nSusan\nCatherine\nBarbara\nStacey\nPamela\nAnna\nTeresa\nMonique\nChristy\nVeronica\nTanya\nKatie\nWendy\nLori\nTamara\nErika\nKristy\nTammy\nVictoria\nLinda\nTonya\nRobin\nDenise\nCandice\nLatasha\nLeah\nCheryl\nLindsey\nMelinda\nValerie\nAlison\nGina\nJulia\nSharon\nDiana\nTheresa\nDonna\nKathleen\nLindsay\nYolanda\nRenee\nSummer\nMargaret\nCasey\nTasha\nDeanna\nNichole\nCassandra\nCristina\nCarolyn\nJaime\nRegina\nJenny\nNancy\nAngel\nDeborah\nMichele\nNina\nEbony\nHeidi\nCindy\nJill\nJoy\nMiranda\nSuzanne\nBonnie\nFelicia\nKrista\nBrenda\nMarie\nTabitha\nVirginia\nCarla\nKelli\nKara\nBethany\nCandace\nCarmen\nMeredith\nTamika\nAlisha\nAimee\nDebra\nRhonda\nToni\nJaclyn\nMelody\nRachael\nTia\nLatonya\nMeghan\nMindy\nSherry\nAdrienne\nColleen\nJoanna\nKendra\nMandy\nCharlene\nShanna\nTracey\nAudrey\nPaula\nKristi\nAlexis\nJanet\nKelley\nCarol\nLatisha\nRebekah\nShana\nTameka\nAna\nAnne\nAutumn\nPriscilla\nFrances\nChristie\nKellie\nSheila\nBeth\nCaroline\nSylvia\nShameka\nDesiree\nRobyn\nAlexandra\nFaith\nMartha\nNaomi\nShelly\nAmie\nAnn\nBrittany\nJodi\nKari\nKerry\nTabatha\nBridget\nJacquelyn\nRuth\nShelley\nShirley\nCara\nEvelyn\nJasmine\nRenata\nCharity\nGloria\nMolly\nBetty\nDorothy\nEricka\nEsther\nJanice\nJeanette\nJenna\nTrisha\nJennie\nLakisha\nMarissa\nSonya\nStefanie\nBeverly\nDiane\nJenifer\nMarilyn\nSelena\nYvette\nClaudia\nLaurie\nLeigh\nMorgan\nShauna\nAlana\nHelen\nLesley\nOlivia\nRose\nTerri\nTraci\nAnita\nHope\nJana\nJillian\nKenya\nKrystal\nMelisa\nShawna\nSonia\nStacie\nAnnette\nBecky\nConnie\nKerri\nLakesha\nLydia\nMichael\nPatrice\nAngelina\nChrista\nIris\nKathy\nLissette\nMarcia\nMaribel\nAdriana\nJanelle\nJeannie\nJoyce\nKristine\nLakeisha\nShayla\nSherri\nSophia\nWhitney\nAnnie\nBianca\nKate\nKeisha\nKristie\nLashonda\nLatosha\nHannah\nJudith\nKeri\nTracie\nAmelia\nBelinda\nCarolina\nElaine\nElisabeth\nEva\nMarsha\nMeagan\nRosa\nSasha\nYvonne\nAlissa\nCecilia\nDarlene\nLawanda\nSandy\nAngie\nAntoinette\nCarly\nKarla\nLynn\nMia\nNikki\nTami\nTanisha\nAlyssa\nBillie\nBrianne\nChandra\nDara\nElena\nJackie\nJami\nJoann\nKasey\nRita\nRuby\nSharonda\nShawn\nAdrianne\nBobbie\nCeleste\nCharlotte\nChrystal\nElisa\nGrace\nJean\nJoan\nLatrice\nNadia\nOctavia\nRachelle\nRaquel\nRyan\nShanika\nWanda\nAbigail\nAngelica\nAngelique\nCarissa\nCassie\nJohanna\nJuanita\nMarisa\nPrecious\nRoxanne\nTania\nTerra\nVivian\nAisha\nBrandie\nChasity\nDionne\nJessie\nJoanne\nLaurel\nLee\nLorena\nMiriam\nShamika\nVicki\nCherie\nCristy\nDaisy\nDena\nGretchen\nIngrid\nIsabel\nJoni\nKim\nKirsten\nLashanda\nLashawn\nLourdes\nTrina\nYesenia\nAnya\nAudra\nCamille\nDevon\nElisha\nEllen\nHillary\nIrene\nKatina\nLara\nMarlene\nMaureen\nNicolette\nNoelle\nSerena\nSheri\nAdrian\nAubrey\nChristen\nDeidra\nGinger\nJordan\nLeticia\nLillian\nLoretta\nMarjorie\nMercedes\nNorma\nRandi\nRochelle\nRosemary\nAntonia\nBobbi\nCatrina\nChristopher\nDeana\nEboni\nJeanne\nKimberley\nLea\nLeanne\nMarianne\nRoberta\nShanta\nShari\nSusana\nTammie\nTonia\nTricia\nValencia\nAlice\nBriana\nBrook\nDebbie\nDemetria\nDina\nHaley\nJeannette\nJocelyn\nJody\nJolene\nKatharine\nLacey\nLiza\nMarcella\nNora\nSally\nShaneka\nShelby\nTangela\nTori\nVicky\nAngelia\nCathy\nCharmaine\nCheri\nIvette\nIvy\nJane\nKarina\nMaggie\nMarisol\nNatalia\nPeggy\nShalonda\nTawanda\nTiffani\nViviana\nWendi\nAileen\nAlaina\nAlexandria\nAlexia\nAlina\nBeatriz\nCecelia\nChanel\nChrissy\nChristi\nClara\nConstance\nDaphne\nEdith\nEileen\nEmma\nGabrielle\nJanette\nJudy\nKarissa\nLatoria\nLena\nLynda\nMarcie\nSebrina\nShayna\nStaci\nStella\nAlisa\nAllyson\nAlyson\nCasandra\nChristin\nCorinne\nDeidre\nDestiny\nDora\nFelecia\nGabriela\nLucinda\nMaranda\nMaritza\nMarla\nPrincess\nRenada\nRene\nRhiannon\nRonda\nShawanda\nShenika\nSherrie\nYashica\nAbby\nAnastasia\nAndria\nArlene\nAshlee\nBridgett\nCandi\nChantel\nChelsea\nChristian\nCortney\nCristin\nDixie\nDominique\nDoris\nGenevieve\nGwendolyn\nIleana\nJade\nJames\nJanie\nKimberlee\nKristal\nLakeshia\nLatanya\nLiana\nLisette\nMarci\nMariah\nMariel\nMarta\nPaige\nPhyllis\nShantel\nSondra\nStephenie\nTalia\nTeri\nTiana\nTiffanie\nTosha\nAlma\nAshanti\nAshleigh\nBlanca\nBrianna\nBridgette\nCandy\nChastity\nChimere\nDianna\nGeorgia\nGlenda\nHilda\nHollie\nJason\nLadonna\nLeanna\nMargarita\nMilagros\nNakia\nNoel\nPauline\nRacheal\nRosemarie\nShanon\nShemeka\nSheneka\nTawana\nThelma\nWilliam\nAlena\nAthena\nBambi\nBeatrice\nBetsy\nBrittney\nCandis\nClarissa\nDallas\nDaniela\nDavid\nDeirdre\nFlorence\nFrancesca\nHelena\nIrma\nJena\nJodie\nKaryn\nKesha\nLeann\nLeeann\nLetitia\nLoren\nLucy\nNiya\nRegan\nShakira\nShantell\nShara\nSonja\nStarla\nSyreeta\nTatiana\nTemeka\nTequila\nTessa\nTomeka\nValarie\nAda\nAdria\nAnnmarie\nAriana\nBernadette\nCallie\nCasie\nChanda\nChristal\nClaire\nDalia\nDayna\nGeneva\nHilary\nIndia\nJaimie\nJammie\nJanna\nJeanna\nJohn\nJosephine\nJosie\nJuliana\nKandice\nKarin\nKizzie\nLana\nLarissa\nLashawnda\nLatarsha\nLatesha\nMadeline\nMarcy\nMaryann\nMellissa\nMisti\nQuiana\nRaven\nRena\nShasta\nSheree\nSheryl\nStacia\nSue\nSusie\nTana\nTerrie\nTerry\nVickie\nYolonda\nAja\nAntionette\nArielle\nAvis\nBrenna\nCaitlin\nCarey\nCelina\nCheyenne\nChiquita\nCorey\nDaniella\nDarla\nDelia\nDevin\nGail\nGuadalupe\nJanell\nJanine\nJeanine\nJoshua\nKami\nKenisha\nKenyatta\nLacy\nLakeysha\nLarhonda\nLashunda\nLola\nLoni\nLorie\nLorraine\nLucia\nLynette\nMadelyn\nMalinda\nMandi\nMarian\nMarlena\nMeaghan\nMildred\nMyra\nNikole\nNoemi\nOlga\nPenny\nRayna\nRebeca\nSamara\nShavon\nShawana\nShelia\nSierra\nSilvia\nSimone\nSofia\nSunshine\nTanika\nTarra\nTaryn\nTennille\nTreva\nYamile\nAbbey\nAlanna\nAlecia\nAlesha\nAngelita\nAretha\nAshlea\nAsia\nAurora\nBenita\nBernice\nBreanna\nCari\nCharissa\nColette\nCoral\nCori\nDawna\nDolores\nDori\nDorian\nEleanor\nElise\nEnjoli\nEsmeralda\nFarrah\nFrancis\nGena\nGeorgina\nHarmony\nHolli\nIliana\nJerri\nJesica\nJo\nJohnna\nJoseph\nJuana\nJuliet\nJustine\nKaci\nKatheryn\nKisha\nKristan\nKyla\nKylie\nLaquanda\nLaquita\nLatonia\nLayla\nLeila\nLora\nLouise\nMamie\nMaya\nMayra\nMelodie\nMichaela\nNadine\nNikita\nPaola\nRamona\nRosetta\nShandra\nSharee\nShareka\nSheena\nShemika\nSherita\nSommer\nStephany\nTamesha\nTammi\nTamra\nTanesha\nTera\nTomika\nVenessa\nWindy\nYadira\nAdrianna\nAmi\nAngeline\nAntonette\nAriel\nAsha\nAva\nAyesha\nBettina\nBreanne\nCameron\nCaryn\nCelia\nChantal\nChantell\nCrissy\nCristal\nDamaris\nDaniel\nDaniele\nDavina\nDeena\nDelores\nDesirae\nDianne\nEbonie\nElaina\nEve\nFarah\nGabriella\nIvonne\nJamila\nJanessa\nJasmin\nJayme\nJeana\nJeri\nJonathan\nJosefina\nJune\nKandi\nKati\nKaty\nKendall\nKenneth\nKhalilah\nKristyn\nLatia\nLatoyia\nLatricia\nLauri\nLekisha\nLeona\nLiane\nLillie\nLina\nLucille\nLynne\nMargo\nMartina\nMercy\nMonika\nNakisha\nNatisha\nNatosha\nNellie\nNicki\nNicola\nNikia\nRashonda\nRenarda\nRoxana\nSalena\nShaina\nShakita\nShanelle\nShanita\nShante\nShantrell\nSharhonda\nSharika\nShaunna\nShawnta\nShonda\nShonta\nSunny\nSuzanna\nTakia\nTakisha\nTalisha\nTamela\nTiffaney\nTowanda\nTramaine\nUrsula\nValeria\nVenus\nYasmin\nAddie\nAdriane\nAleisha\nAlejandra\nAlysia\nAmberly\nAnitra\nBertha\nBlair\nBrandee\nBree\nCamilla\nCaridad\nCherry\nChristel\nCorrine\nCrista\nDanna\nDarcy\nDeanne\nDedra\nDella\nElissa\nEliza\nEster\nEugenia\nEunice\nFatima\nFrancine\nFrankie\nGeorgette\nGladys\nHazel\nIda\nJanel\nJanis\nJeanie\nJessenia\nJohana\nJoi\nJulissa\nJustin\nKarisa\nKathrine\nKatia\nKayla\nKellee\nKelsey\nKerline\nKeturah\nKeya\nKia\nKira\nKourtney\nLakenya\nLaquisha\nLashana\nLatorya\nLidia\nLila\nLinsey\nLucretia\nLynnette\nMariana\nMarina\nMarisela\nMarlo\nMatthew\nMay\nMellisa\nMelynda\nMisha\nNichelle\nNichol\nNiki\nNikisha\nPaulette\nRachell\nRenae\nRichelle\nRobbie\nRosalinda\nRosalyn\nRosanna\nRoshanda\nSanjuanita\nScarlett\nSerina\nShalanda\nShanda\nSharita\nSherika\nShira\nSirena\nStephaine\nSuzette\nTamera\nTaneshia\nTashara\nTawanna\nTequilla\nTeresita\nTherese\nTracee\nTravis\nTyra\nValentina\nViola\nAleshia\nAlesia\nAlexa\nAndrew\nAnglea\nAnika\nAnisha\nAnsley\nAnthony\nAntonio\nArianna\nArianne\nAundrea\nBarbra\nBobby\nBrian\nBrigette\nBritt\nBuffy\nCarina\nCarl\nCatharine\nCathrine\nCecile\nCerissa\nChanelle\nCheree\nChianti\nChristinia\nClarice\nCollette\nCorina\nCorrie\nCristi\nDanica\nDanya\nDebora\nDemetra\nEdna\nElla\nElvira\nEthel\nEureka\nFawn\nFelisha\nGayle\nGia\nGiselle\nGoldie\nGraciela\nHanna\nHarriet\nHayley\nIlana\nJacklyn\nJacquline\nJada\nJaimee\nJamey\nJan\nJannette\nJenell\nJenelle\nJeniffer\nJenniffer\nJewel\nJoannie\nJoleen\nJulianne\nKacey\nKarly\nKeli\nKeona\nKerrie\nKimberely\nKizzy\nKori\nLakevia\nLaquana\nLashaunda\nLashondra\nLashundra\nLasonya\nLatavia\nLaterica\nLateshia\nLavonda\nLawanna\nLeeanna\nLeilani\nLia\nLogan\nLuz\nLyndsey\nMahogany\nMalisa\nMarcelle\nMargie\nMargot\nMarianna\nMarquita\nMinerva\nMitzi\nNatacha\nNathalie\nNathan\nNiccole\nNickole\nOfelia\nPeter\nPricilla\nQiana\nRacquel\nRashida\nRikki\nRobert\nRoselyn\nRoshonda\nRosie\nRoslyn\nRyann\nShamica\nShani\nShannan\nShanreka\nShanti\nShaundra\nShaunte\nShawanna\nShawnda\nShea\nShellie\nShenita\nSherena\nSherese\nSiobhan\nSkye\nSomer\nStar\nStarr\nStephen\nSteven\nSusanna\nSybil\nTahisha\nTakesha\nTameika\nTamica\nTamisha\nTaneisha\nTarah\nTashia\nTaylor\nTenisha\nThea\nTheodora\nThomas\nTiara\nTomekia\nTrista\nTwanna\nXiomara\nYajaira\nYashika\nJennifer\nJessica\nAmanda\nMelissa\nTiffany\nChristina\nStephanie\nSarah\nHeather\nMichelle\nKimberly\nNicole\nCrystal\nElizabeth\nAmy\nRebecca\nAngela\nLisa\nKelly\nApril\nMary\nErin\nDanielle\nAshley\nRachel\nAmber\nShannon\nAndrea\nLaura\nLauren\nKristin\nJamie\nKristen\nSara\nErica\nLatoya\nBrandy\nSamantha\nKatherine\nAlicia\nTara\nEmily\nCourtney\nMaria\nChristine\nPatricia\nJulie\nMonica\nVanessa\nBrandi\nMegan\nNatalie\nJacqueline\nKatrina\nKristina\nCynthia\nNatasha\nKaren\nCarrie\nLeslie\nStacy\nCatherine\nBrooke\nLindsay\nVictoria\nBarbara\nKathryn\nDana\nChristy\nDiana\nDawn\nMelanie\nAllison\nTracy\nVeronica\nMisty\nSandra\nPamela\nTeresa\nCandice\nSusan\nHolly\nTanya\nLindsey\nSabrina\nTina\nLatasha\nMonique\nKrystal\nCassandra\nErika\nLeah\nStacey\nTonya\nLinda\nKatie\nNancy\nAnna\nJulia\nWendy\nDenise\nTammy\nCristina\nKathleen\nRenee\nLori\nRobin\nJaime\nNichole\nValerie\nTamara\nCheryl\nCandace\nMichele\nDonna\nHeidi\nTheresa\nBrenda\nKristy\nMelinda\nYolanda\nGina\nCasey\nMargaret\nSharon\nAngel\nTasha\nJill\nKelli\nAlexis\nKara\nMarie\nTabitha\nAlisha\nEbony\nAna\nBrittany\nCarolyn\nFelicia\nCarla\nSophia\nDeanna\nJoy\nSummer\nVirginia\nAlison\nDeborah\nJenny\nMeghan\nRachael\nRegina\nSuzanne\nPriscilla\nBonnie\nMandy\nRebekah\nJaclyn\nShanna\nJanet\nAdrienne\nMeredith\nMiranda\nToni\nBethany\nJoanna\nPaula\nAnne\nCindy\nKrista\nAimee\nCarmen\nRhonda\nAlexandra\nAudrey\nTia\nDebra\nMorgan\nRuth\nEvelyn\nNina\nAutumn\nJacquelyn\nLatisha\nWhitney\nCharlene\nDesiree\nDiane\nJillian\nKendra\nLatonya\nTamika\nCaroline\nColleen\nFrances\nKristi\nShameka\nTameka\nJodi\nSheila\nJanice\nRose\nLacey\nMartha\nRobyn\nEricka\nJasmine\nBeth\nBridget\nDorothy\nJenna\nStefanie\nAnn\nKristine\nAngelina\nCarly\nLeigh\nMindy\nSherry\nAnnette\nChristie\nGloria\nNaomi\nNikki\nTrisha\nYvonne\nBeverly\nFaith\nKellie\nMarissa\nShirley\nSonya\nHope\nMelody\nShawna\nCharlotte\nKari\nSylvia\nCara\nLaurie\nShayla\nAbigail\nCassie\nConstance\nHelen\nJami\nOlivia\nRosa\nShelly\nStacie\nAnita\nJohanna\nLakisha\nTabatha\nTerri\nAdriana\nAngelica\nBillie\nKristie\nLakesha\nMarsha\nSelena\nCarolina\nKeri\nMarilyn\nShelley\nToccara\nBianca\nEva\nJenifer\nJuanita\nLynn\nMolly\nRandi\nSheri\nTracey\nAngie\nAnnie\nJana\nJean\nJeanette\nJoyce\nKelley\nPatrice\nAntoinette\nBelinda\nBrandie\nCecilia\nDarlene\nEsther\nHannah\nJennie\nMarisa\nAlice\nBetty\nCharity\nChasity\nJoanne\nKeisha\nKenya\nKerri\nLissette\nSonia\nYesenia\nBecky\nCarol\nChrista\nChristen\nGrace\nJessie\nKasey\nShana\nVivian\nAlissa\nClaudia\nLashonda\nLydia\nTraci\nChristin\nGenevieve\nGinger\nJanelle\nJudy\nKathy\nMarcia\nRaquel\nSerena\nShamika\nSonja\nTeri\nAlyssa\nElaine\nMeagan\nRyan\nShauna\nSherri\nAlana\nCari\nCarissa\nChrystal\nIvette\nJoann\nJocelyn\nKate\nKerry\nPaige\nRita\nTricia\nYvette\nAisha\nChandra\nDaisy\nJudith\nMargarita\nMelisa\nRoxanne\nSandy\nTiffani\nAdrian\nBobbie\nDianna\nIris\nJolene\nJoni\nKarla\nKatharine\nLeticia\nLorraine\nNadia\nRoberta\nShanika\nSherika\nAshlee\nAshleigh\nBobbi\nBridgette\nCathy\nHaley\nJackie\nLena\nLesley\nMichael\nNatalia\nPrecious\nShaneka\nAlexandria\nCatrina\nConnie\nGabrielle\nGwendolyn\nJeannie\nLakeisha\nNoelle\nStaci\nTania\nAmelia\nAmie\nAudra\nCandy\nChelsea\nClarissa\nCortney\nDebbie\nDeidre\nDionne\nEboni\nElena\nEllen\nIngrid\nJodie\nLatosha\nLawanda\nLee\nLoretta\nMaggie\nOctavia\nRachelle\nSimone\nTami\nTanisha\nWanda\nAllyson\nAubrey\nBlair\nChimere\nDoris\nElisa\nHillary\nJeannette\nKirsten\nLara\nMarisol\nMiriam\nNiki\nRochelle\nSharonda\nSheena\nTatiana\nAlaina\nAlisa\nAngelique\nDara\nDavid\nDevon\nGeneva\nIsabel\nJade\nKarina\nKimberley\nKristal\nLatoria\nLisette\nLorena\nMia\nPenny\nRosemary\nSasha\nShelby\nTomeka\nWendi\nAdrianne\nChantal\nChristian\nDemetria\nDena\nJeanne\nJody\nLacy\nLucinda\nMargo\nMarjorie\nNora\nRuby\nSally\nTiffanie\nAbby\nAlyson\nAriana\nBeatrice\nCasandra\nClaire\nDaphne\nElisabeth\nElisha\nIvy\nJanie\nLatanya\nLiza\nLora\nLynette\nNicolette\nPrincess\nShantel\nShari\nSusana\nTanesha\nTrina\nVicki\nViviana\nBrianna\nBrittney\nBrook\nChantel\nCheri\nDaniela\nDeidra\nJanette\nLea\nLeann\nLetitia\nLourdes\nMarta\nMaureen\nNadine\nShantell\nTangela\nAileen\nAlina\nCaryn\nCristy\nHilary\nJacklyn\nJoshua\nKim\nLakeshia\nLashanda\nLaurel\nLucy\nMarlene\nMellisa\nNorma\nRebeca\nRene\nShanta\nSheryl\nTammie\nTawanda\nTawanna\nTracie\nValarie\nAlma\nAndria\nArlene\nAthena\nBeatriz\nBetsy\nCamille\nCeleste\nCharmaine\nChastity\nCherie\nChristopher\nCora\nDestiny\nEileen\nFrancesca\nGillian\nGiselle\nGlenda\nGretchen\nIrene\nJane\nJeri\nJoan\nJordan\nKrystle\nLiliana\nLillian\nLoni\nMarcie\nMartina\nMaryann\nMercedes\nNikia\nPeggy\nRena\nShelia\nSofia\nAlexia\nAngelia\nBriana\nBrianne\nCory\nCristin\nDevin\nDina\nEmma\nEugenia\nGeraldine\nHayley\nJanessa\nJuliet\nJuliette\nKaty\nKerline\nKesha\nKyla\nLana\nLashawn\nLeanne\nLeeann\nLynda\nMaranda\nMarianne\nMaribel\nMarion\nNoemi\nRenita\nRhiannon\nSherrie\nSommer\nStacia\nSue\nTalia\nTaryn\nTequila\nTerra\nAlecia\nAlthea\nAurora\nBridgett\nCaridad\nCorinne\nDayna\nElise\nElissa\nEvita\nJanell\nJanine\nJayme\nJo\nJoi\nJosephine\nKia\nKizzy\nLeilani\nLina\nLogan\nLoren\nMaritza\nMonika\nNakia\nSharita\nShavon\nShenika\nSheree\nSilvia\nStar\nTarah\nTawana\nTaylor\nTonia\nWilliam\nAdria\nAnastasia\nAnnmarie\nAntionette\nBettina\nCaitlin\nCandi\nCelia\nChanel\nChantell\nCheyenne\nCorey\nDalia\nDianne\nDominique\nEdith\nEdna\nElicia\nEsmeralda\nFawn\nGail\nGeorgina\nIsis\nJames\nJamila\nJanna\nJena\nKami\nLashunda\nLatavia\nLucretia\nMarcella\nMarlena\nNakisha\nNatacha\nNiya\nOlga\nOlympia\nPhyllis\nRosemarie\nRosie\nRoxanna\nSelina\nShalonda\nShandra\nShanita\nShawn\nShayna\nShemika\nSherita\nTanika\nTess\nTiara\nUrsula\nAlanna\nAngeline\nAriel\nBambi\nBernadette\nBrandee\nChrissy\nChristiana\nDarla\nDelores\nDixie\nDolores\nFallon\nFarah\nFelecia\nFrancine\nGeorgia\nHilda\nHollie\nJaneen\nJerri\nJessi\nJoelle\nJoseph\nJune\nJustine\nKira\nKristan\nLadonna\nLaquanda\nLatarsha\nLatrice\nLouise\nMadeline\nMartine\nMildred\nMisti\nNadege\nNicola\nNikole\nPaulette\nSamara\nSharika\nShawanda\nTabetha\nTamica\nTerry\nTessa\nTisha\nTramaine\nTshwanda\nValeria\nYashica\nAaron\nAdriane\nAdrianna\nAja\nAlejandra\nAlysia\nBrenna\nCelina\nChiquita\nChristi\nCicely\nClara\nCoral\nDaniel\nDeana\nDeanne\nDeirdre\nEbonie\nFaye\nFlorence\nFrancis\nGeorgette\nGladys\nIda\nIrma\nJammie\nJasmin\nJeanie\nJeanine\nJesica\nJesse\nJohn\nJuliana\nKacey\nKarrie\nKatina\nKerrie\nKhalilah\nKimberlee\nKisha\nLarhonda\nLarissa\nLaronda\nLeanna\nLeia\nMandi\nMarci\nMariana\nMarla\nMatthew\nMaya\nMichell\nNathalie\nPearl\nRamona\nRasheeda\nRashonda\nRenada\nRenata\nRobert\nRosalyn\nRoxana\nSamatha\nShakita\nShanreka\nShara\nSharee\nShaun\nShonda\nSiobhan\nStarla\nStephany\nSunny\nTakisha\nTamesha\nTamra\nTemeka\nTera\nThomas\nTierra\nTiffaney\nTiffiny\nYalonda\nYamile\nYasmin\nAida\nAlishia\nAlysha\nAnitra\nArielle\nBrigitte\nCandis\nCarie\nCassidy\nCathleen\nCecelia\nCecily\nCrista\nCristal\nDania\nDarcy\nDavida\nEdwina\nEleanor\nElsa\nFarrah\nFatima\nGabriela\nGraciela\nGwen\nHelena\nIleana\nJacinta\nJacquelynn\nJanel\nJayne\nJenilee\nJosie\nJulianne\nJustin\nKacie\nKandace\nKandi\nKandice\nKarissa\nKayla\nKeely\nKendall\nKevin\nLakeysha\nLani\nLashundra\nLatonia\nLatoyia\nLatrina\nLillie\nLily\nLinsey\nLucia\nLuz\nMargie\nMari\nMayra\nMeaghan\nMellissa\nMelony\nMichaela\nMilagros\nMona\nNakesha\nQuiana\nRaina\nRaven\nRhea\nRichard\nRosario\nSalena\nShaina\nShakira\nShaquanda\nShay\nShemeka\nStefani\nSunshine\nSusanne\nSuzanna\nSyreeta\nTamela\nTiffiany\nTori\nVicky\nWindy\nYessenia\nAbbie\nAdeline\nAlesha\nAlesia\nAlexa\nAlycia\nAmi\nAndra\nAnthony\nAntonette\nAntonia\nAsha\nAshanti\nAva\nBernice\nBlanca\nBrandice\nBreanne\nBrian\nBritt\nCarey\nCary\nCathryn\nChantelle\nCherline\nChloe\nChristal\nCiara\nCori\nCristine\nDallas\nDanica\nDaniella\nDemetrice\nDenisse\nDesirae\nDesire\nDione\nElaina\nEliza\nElla\nElsie\nEmilie\nEmmy\nEric\nEryn\nEstelle\nEunice\nEve\nFelica\nFelisha\nFiona\nGena\nGisela\nGreta\nGuadalupe\nHarmony\nHazel\nHolli\nIesha\nJada\nJannelle\nJanuary\nJaqueline\nJason\nJeanelle\nJeniffer\nJenni\nJonathan\nJosette\nJulissa\nKatheryn\nKatrice\nKenneth\nKourtney\nKrissy\nKristyn\nKrysten\nKyle\nLacresha\nLakendra\nLatara\nLatesha\nLatia\nLatoiya\nLauri\nLavonda\nLeslee\nLorie\nLorrie\nLucie\nLyndsey\nMackenzie\nMamie\nMandie\nMarcela\nMarcy\nMarian\nMaricela\nMarina\nMarnie\nMarquita\nMattie\nMelina\nMelodie\nMercy\nMinnie\nNoel\nOdalys\nPortia\nQuintina\nRacheal\nRayna\nRenae\nRonda\nRoseline\nRoshanda\nRoshonda\nSabine\nSadie\nScarlett\nShanell\nShaniqua\nShanon\nShareka\nShaunna\nShaunte\nShea\nShellie\nSheneka\nShira\nShyla\nTakesha\nTamekia\nTaneisha\nTashara\nTequesta\nTequilla\nTherese\nTiffini\nValencia\nViolet\nWillie\nAbbey\nAbra\nAfton\nAgnes\nAlethia\nAline\nAngelic\nAngelita\nAnsley\nArianna\nAshlie\nAundrea\nAvery\nAyanna\nAyesha\nBenita\nBenjamin\nBilly\nBrea\nBreanna\nBree\nCamilla\nCarli\nCarline\nCarole\nCatalina\nChanda\nChanell\nCharise\nCharissa\nCharles\nChassidy\nCherly\nCherry\nClaudette\nColette\nCorrie\nDanna\nDannielle\nDavina\nDeena\nDella\nDeondra\nDori\nDorian\nElana\nEsperanza\nEstela\nEster\nEthel\nEvette\nGabriella\nGeri\nGerri\nGracie\nHolley\nInes\nIvey\nJackelyn\nJacquelyne\nJameka\nJamey\nJan\nJaney\nJeannine\nJessika\nJohana\nJolie\nJordana\nJosefina\nKaitlin\nKanesha\nKanisha\nKarly\nKarri\nKaryn\nKassie\nKathrine\nKatisha\nKeesha\nKenisha\nKenyata\nKenyatta\nKenyetta\nKeshia\nKimiko\nKinsey\nLakenya\nLakiesha\nLashandra\nLashaunda\nLashawndra\nLashira\nLatangela\nLatashia\nLaticia\nLatina\nLatoia\nLatorya\nLatresa\nLayla\nLeila\nLeona\nLila\nLovely\nLuisa\nLynsey\nMalisha\nMara\nMarguerite\nMariela\nMatilda\nMaxine\nMechelle\nMelaine\nMollie\nMyra\nNatarsha\nNatashia\nNatosha\nNicki\nNicolle\nNikisha\nPatience\nPauline\nPenelope\nPetra\nQiana\nQueen\nRagan\nRashida\nRebecka\nRian\nRina\nRocio\nRolanda\nRosalind\nScarlet\nShamara\nShamekia\nShamica\nShandi\nShannan\nSharhonda\nShasta\nShatara\nShawana\nShawnna\nShawntrell\nSherrina\nSomer\nSondra\nSpring\nStarr\nStella\nStephani\nStormy\nSusie\nSuzie\nSybil\nSydney\nTalitha\nTemika\nTenesha\nTerah\nTiffiney\nTimothy\nTonisha\nTosha\nTracee\nTravis\nTrenise\nTressa\nTreva\nTrinity\nVenessa\nVenus\nYadira\nYolonda\nZulema\nJennifer\nJessica\nAmanda\nMelissa\nNicole\nCrystal\nTiffany\nMichelle\nStephanie\nSarah\nChristina\nAshley\nElizabeth\nKimberly\nHeather\nAmy\nAngela\nRebecca\nAmber\nKelly\nRachel\nErin\nLauren\nLisa\nDanielle\nMary\nApril\nShannon\nLaura\nJamie\nKristen\nKristin\nErica\nKatherine\nAndrea\nVanessa\nSamantha\nSara\nEmily\nJacqueline\nBrandy\nTara\nChristine\nMaria\nCourtney\nLindsey\nMegan\nMonica\nBrandi\nLindsay\nNatalie\nJulie\nPatricia\nKristina\nAlicia\nLatoya\nNatasha\nLeslie\nAllison\nKatrina\nDana\nCynthia\nKaren\nCarrie\nKathryn\nSandra\nDiana\nHolly\nVictoria\nKrystal\nCandice\nCatherine\nTracy\nCassandra\nMelanie\nPamela\nAnna\nSabrina\nValerie\nErika\nAlexis\nDawn\nStacey\nStacy\nBarbara\nEbony\nBrittany\nLinda\nCandace\nKatie\nTina\nNichole\nMisty\nLeah\nVeronica\nTeresa\nRobin\nSusan\nMonique\nKathleen\nChristy\nDenise\nJulia\nBrooke\nCristina\nRachael\nLatasha\nMargaret\nTamara\nWendy\nRenee\nHeidi\nKristy\nTonya\nMiranda\nSheena\nYolanda\nCheryl\nTammy\nTanya\nCasey\nJillian\nSharon\nKelli\nMichele\nNancy\nMelinda\nRebekah\nAlison\nGina\nMarie\nLori\nTheresa\nTabitha\nAlexandra\nVirginia\nDeanna\nDeborah\nCarolyn\nJacquelyn\nCindy\nAna\nCaroline\nTasha\nFelicia\nJoanna\nMeghan\nBrenda\nCarla\nLacey\nSummer\nAngel\nDesiree\nJaime\nRegina\nEvelyn\nSophia\nChristie\nShawna\nTia\nJenny\nJill\nPriscilla\nKara\nMorgan\nBonnie\nCassie\nBridget\nJanet\nJoy\nKayla\nKrista\nCharlene\nDonna\nMelody\nMeredith\nWhitney\nAudrey\nAutumn\nCharity\nChelsea\nAdrienne\nAlisha\nToccara\nCarmen\nKendra\nStefanie\nJaclyn\nRose\nSuzanne\nAngelica\nBethany\nColleen\nDiane\nTamika\nToni\nPaula\nSherry\nAimee\nKristi\nRuth\nAnn\nAnne\nAdriana\nClaudia\nJanice\nSheila\nSonya\nKari\nNaomi\nNina\nRosa\nJasmine\nMarissa\nRhonda\nCarly\nMandy\nMarilyn\nRobyn\nAnnie\nJessie\nKelley\nRaquel\nTameka\nAbigail\nBetty\nCarol\nDebra\nGloria\nJodi\nLaurie\nMiriam\nTerri\nAngie\nBeth\nDorothy\nHannah\nMartha\nSandy\nHelen\nJanelle\nLatonya\nAriel\nEva\nKeri\nShelley\nJeanette\nKathy\nOlivia\nPatrice\nHaley\nBeverly\nFaith\nKenya\nKristine\nLydia\nMeagan\nShanika\nShayla\nYvonne\nEricka\nEsther\nJoyce\nRandi\nShauna\nAntoinette\nConstance\nDaisy\nFrances\nJean\nJenna\nKellie\nLacy\nLakeisha\nLakisha\nLeigh\nMindy\nSylvia\nBobbie\nBrandie\nCharlotte\nJudith\nTracey\nTraci\nYvette\nAshlee\nGrace\nKerri\nLatisha\nShanna\nShelly\nAlexandria\nJuanita\nKarla\nKira\nKristie\nLillian\nMolly\nNatalia\nTrisha\nChrista\nDevon\nElaine\nJami\nJocelyn\nKrystle\nLesley\nMarisa\nSonia\nAlyssa\nAmie\nChrystal\nJeannie\nKate\nLynn\nShirley\nTatiana\nAlana\nAmelia\nCara\nJade\nJohanna\nKasey\nLakesha\nMarjorie\nNikki\nPrecious\nRachelle\nShameka\nTaylor\nCarolina\nFallon\nGenevieve\nKerry\nKristal\nLourdes\nAnnette\nBianca\nBrittney\nDaphne\nJeannette\nStacie\nTabatha\nChristen\nClaire\nElisabeth\nIrene\nJennie\nLeanne\nMichael\nRoxanne\nAngelina\nGinger\nHope\nJane\nJenifer\nKarina\nLeticia\nLissette\nMaureen\nRyan\nSasha\nSerena\nSherri\nAlissa\nCarissa\nEboni\nElena\nIris\nKimberley\nLara\nRita\nRosemary\nShana\nShenika\nVivian\nAdrianne\nAubrey\nCecilia\nChandra\nDestiny\nGabrielle\nGiselle\nHillary\nKeisha\nLashonda\nNadia\nOctavia\nArlene\nAudra\nBrianna\nChristian\nChristin\nClarissa\nMarlene\nNorma\nPeggy\nTangela\nAisha\nAlaina\nAlina\nBridgette\nCaitlin\nCamille\nCathy\nDara\nJanette\nJoni\nKatharine\nLatrice\nMarianne\nNoelle\nPaige\nShelby\nSheryl\nStaci\nTanisha\nTricia\nAlice\nAllyson\nAnita\nBecky\nDominique\nElisa\nEllen\nEmma\nIsabel\nIvette\nJackie\nJoanne\nLatosha\nLora\nLorraine\nPrincess\nRochelle\nShaneka\nTanika\nTeri\nTiffani\nAshleigh\nBeatrice\nBelinda\nCeleste\nConnie\nDarlene\nGretchen\nJanna\nLoretta\nShamika\nSharonda\nWanda\nAileen\nAlexia\nAlyson\nCortney\nDaniel\nEileen\nGeorgia\nGwendolyn\nJana\nJoann\nJordan\nJudy\nMaggie\nMandi\nMelisa\nMercedes\nMia\nNora\nSelena\nSheri\nTammie\nYesenia\nAbby\nAlanna\nAngelique\nBernadette\nBillie\nBobbi\nCallie\nCaridad\nChantel\nChasity\nChristopher\nDionne\nHollie\nJanine\nKassandra\nKirsten\nLiza\nMarisol\nMarsha\nRuby\nSelina\nShantel\nTami\nTania\nAdrian\nAlisa\nAnastasia\nBeatriz\nCari\nDebbie\nEdna\nGail\nGlenda\nJayme\nLucy\nMarcia\nNadine\nBriana\nBrianne\nChiquita\nChristal\nDeidre\nEdith\nGeraldine\nGladys\nIvy\nJanell\nKacey\nLatara\nLea\nLucinda\nLyndsey\nNicolette\nRacheal\nRene\nShawn\nSherika\nTaryn\nTawana\nTera\nTessa\nTracie\nTrina\nAja\nAlejandra\nAlma\nCandi\nChastity\nCheri\nCherie\nCori\nCorinne\nDaniela\nHayley\nJeanine\nJoan\nKendall\nLakeshia\nLarissa\nLashanda\nLashawn\nLeann\nLee\nLynda\nMarian\nMaribel\nSally\nSimone\nArielle\nAshlie\nCandy\nCatrina\nChantal\nChristi\nIleana\nIngrid\nIrma\nJanie\nJeanie\nJohn\nKerline\nLatoyia\nLawanda\nLena\nLisette\nLorena\nLynette\nMargarita\nOlga\nPenny\nRhiannon\nRonda\nShalonda\nShantell\nShari\nSonja\nTanesha\nTerra\nTiara\nAntonia\nCandis\nCarey\nCelina\nCharmaine\nDena\nDixie\nElisha\nElsa\nHelena\nJodie\nJosephine\nKandice\nKarin\nLadonna\nLoren\nMadeline\nMarina\nMaritza\nMaya\nMyra\nPortia\nRena\nRenata\nRoberta\nShaina\nShakira\nShanta\nShemeka\nSherrie\nSofia\nTiffanie\nWilliam\nAdriane\nBlair\nBreanna\nBridgett\nClara\nDianna\nDoris\nFarah\nFrancesca\nFrancine\nJames\nJesica\nJody\nJustin\nKim\nKristyn\nLois\nLoni\nMargo\nMariah\nMarla\nMarquita\nMartina\nMeaghan\nMichell\nMonika\nNathalie\nNikia\nRoxana\nSharika\nShena\nSheree\nShonda\nSommer\nStacia\nSue\nTerry\nTomeka\nWendi\nAriana\nCasie\nChanel\nDavid\nDeena\nDeidra\nDeirdre\nDevin\nDianne\nDina\nGeneva\nGeorgina\nIvory\nJason\nJeanne\nJeannine\nJustina\nKacie\nKaleena\nKandi\nKia\nKimberlee\nLarhonda\nLaurel\nLeeann\nLina\nLola\nLucia\nMalinda\nMalissa\nMara\nMaranda\nMellissa\nMilagros\nMildred\nNakia\nRaven\nRichard\nRobert\nRosalie\nShanon\nShawanna\nShelli\nSherly\nSondra\nSusana\nTakisha\nTalia\nTammi\nTenika\nTocarra\nTosha\nValeria\nVicky\nViviana\nAngeline\nApryl\nArianna\nAthena\nCasandra\nCassidy\nChantelle\nChloe\nCorey\nCristin\nDora\nEmilie\nHarmony\nHilary\nJamila\nJanessa\nJena\nJeri\nJolene\nJonathan\nJonelle\nJosie\nJuliana\nJune\nKali\nKarissa\nKaryn\nKenyatta\nKiara\nKristan\nLatia\nLeila\nLeona\nLilly\nLouise\nLynnette\nMarcella\nMarta\nMartine\nMaryann\nMisti\nNatacha\nRichelle\nShante\nSharee\nShawanda\nShayna\nStarr\nSunny\nSunshine\nTacara\nTameika\nTarah\nTenisha\nTiana\nTonia\nValarie\nVickie\nWilma\nAida\nAlecia\nAlena\nAlesha\nAndria\nAngelia\nAshely\nAshlea\nAshli\nBrynn\nCameron\nCarlie\nCassondra\nCelia\nCharles\nChristiana\nColette\nCristal\nCristen\nDaniella\nDeana\nDeanne\nDelores\nDemetria\nEleanor\nElise\nElissa\nEsmeralda\nFlorence\nGabriella\nGraciela\nHilda\nIda\nJacquelin\nJanae\nJeanna\nJenilee\nJeremy\nJo\nJoanie\nJoi\nJulianna\nKaci\nKatia\nKeely\nKelsey\nKyra\nLaci\nLana\nLashawna\nLatavia\nLenora\nLiliana\nLindy\nLorie\nLuisa\nLuz\nMadelyn\nMarion\nMaura\nNakisha\nNiki\nPaola\nRamona\nRebeca\nRosanna\nRoseline\nRoshonda\nRosie\nRoxanna\nShameika\nShanell\nShaquanda\nShavonda\nSheneka\nSiobhan\nStephany\nStephenie\nTabetha\nTawanda\nTemeka\nTierra\nTonisha\nVenessa\nAdria\nAfton\nAlesia\nAlexa\nAlysia\nAnais\nAntionette\nAnya\nBambi\nBettina\nBlanca\nBrandee\nBrandon\nCarin\nCassi\nCathryn\nCecelia\nChaquita\nCharis\nChimere\nClaudette\nCoretta\nCorrie\nCory\nCrissy\nDamaris\nDania\nDaniele\nDarcy\nEugenia\nFabiola\nFalon\nGillian\nGinny\nIndia\nIsis\nJackeline\nJackelyn\nJamese\nJammie\nJasmin\nJayne\nJeniffer\nJenniffer\nJesseca\nJessi\nJoelle\nJuana\nKarri\nKarrie\nKenisha\nKeosha\nKerrie\nKeturah\nKisha\nKristian\nKyla\nKyle\nKylee\nLaquisha\nLasheena\nLashunda\nLatanya\nLatarsha\nLatesha\nLatrese\nLatrina\nLeanna\nLiana\nLila\nLinsey\nMagdalena\nMarcy\nMarlana\nMarlena\nMaxine\nMayra\nMellisa\nMollie\nNakeisha\nNatosha\nNichol\nNiesha\nPhyllis\nQuiana\nRoseanna\nRosemarie\nSarina\nShalanda\nShandra\nShara\nSharhonda\nSherica\nSierra\nSophie\nStefani\nTaccara\nTamisha\nTequila\nThelma\nTiffaney\nVicki\nWilda\nAaron\nAbbey\nAbbie\nAda\nAlia\nAlthea\nAndrew\nAnthony\nArianne\nArica\nAstrid\nAva\nBenjamin\nBetsy\nBreanne\nBritni\nBrook\nCaressa\nCassey\nCatalina\nChelsey\nCiara\nCorina\nCorrine\nCristy\nDaphney\nDarla\nDayna\nDelilah\nDesire\nDonielle\nEster\nFarrah\nFawn\nFelecia\nFelisha\nGena\nGiovanna\nGuadalupe\nGuerline\nHazel\nIliana\nJacinta\nJacklyn\nJada\nJaimee\nJan\nJenise\nJenni\nJesenia\nJesse\nJessika\nJihan\nJohnna\nJoseph\nJosette\nJulianne\nJuliette\nJulissa\nKala\nKarly\nKatina\nKatrice\nKenia\nKenyetta\nKiana\nKirstin\nKori\nKortney\nLanita\nLaquanda\nLaquinta\nLaquita\nLashawnda\nLatonia\nLatoria\nLetitia\nLizette\nMagda\nMamie\nMarcie\nMargie\nMarguerite\nMariana\nMarlyn\nMatthew\nMeghann\nMelina\nMicheline\nMona\nMyesha\nNakesha\nNicola\nNoel\nNydia\nParis\nPauline\nRachele\nRaisa\nRayna\nRosalind\nRoslyn\nRyann\nSamara\nSarita\nScarlett\nShandi\nShani\nShanita\nShantia\nShasta\nShawnta\nShemika\nSherita\nSherley\nSilvia\nStar\nSybil\nSyreeta\nTamala\nTamekia\nTamesha\nTawanna\nTeneshia\nTerika\nTisha\nTomika\nTori\nTyler\nValencia\nVelma\nVera\nXiomara\nYamile\nAdam\nAdeline\nAdrianna\nAlethea\nAlfreda\nAlishia\nAmalia\nAmee\nAmi\nAmiee\nAngelena\nAngelita\nAnika\nAnnamarie\nAundrea\nAyesha\nAymee\nBertha\nBrian\nBrie\nBrigitte\nCandance\nCarlee\nCary\nCassaundra\nCassy\nCathleen\nChanelle\nCharlie\nCharline\nClare\nConsuelo\nContessa\nCora\nCristine\nDanica\nDanyell\nDanyelle\nDavina\nDedra\nDelia\nDenisse\nDolores\nEbonee\nEdeline\nElaina\nElla\nEmerald\nEric\nEunice\nEve\nEvette\nFaye\nGabriela\nGenie\nGeorgette\nGeri\nGerline\nGlenna\nHailey\nHallie\nHolli\nIdalmis\nIlana\nJacquelynn\nJaimi\nJamey\nJaneen\nJayna\nJazmin\nJeana\nJoshua\nJovan\nJuliann\nJunie\nJustine\nKacy\nKarie\nKarli\nKathrine\nKellee\nKenyada\nKenyata\nKesha\nKeshia\nKeyonda\nKylie\nLacie\nLacresha\nLaine\nLakenya\nLakesia\nLakiesha\nLani\nLaronda\nLashaun\nLashondra\nLateisha\nLatorya\nLatricia\nLatrisha\nLayla\nLekesha\nLia\nLinette\nLoreal\nLorna\nLorrie\nLouisa\nLucille\nLura\nLyndsay\nMahogany\nMarcela\nMargot\nMariela\nMarlina\nMarysol\nMaude\nMelodie\nMerline\nMichaela\nMindi\nMirlande\nMuriel\nNadege\nNaomie\nNastassia\nNatashia\nNecole\nNicholas\nNickie\nNikole\nNoemi\nPatrica\nPatsy\nPaul\nPaulette\nPaulina\nRenae\nRolanda\nRosalyn\nRosita\nShacara\nShakia\nShanae\nShanda\nShane\nShanetta\nShantay\nShareka\nSharron\nShatara\nShaunna\nShavon\nShawntavia\nShellie\nSherell\nSherline\nShyla\nSidney\nSophonie\nStella\nStephaine\nStephani\nStormy\nSusanne\nSusie\nTakeia\nTalisa\nTamar\nTamela\nTamera\nTashara\nTelicia\nTequilla\nTeresita\nTerrica\nTess\nThomas\nTiffiany\nTimeka\nTyechia\nUrsula\nVerna\nVianca\nViolet\nWillie\nYasmin\nYasmine\nYuliana\nJennifer\nJessica\nAshley\nAmanda\nMelissa\nHeather\nStephanie\nChristina\nSarah\nNicole\nCrystal\nTiffany\nMichelle\nElizabeth\nKimberly\nAmy\nLauren\nRebecca\nRachel\nAmber\nAngela\nDanielle\nKelly\nLisa\nErin\nMegan\nLaura\nVanessa\nJamie\nErica\nAndrea\nMary\nShannon\nKristen\nAlicia\nApril\nKatherine\nSamantha\nChristine\nLindsey\nKristin\nSara\nJacqueline\nEmily\nVictoria\nLindsay\nMaria\nNatalie\nTara\nBrandy\nCourtney\nHolly\nBrandi\nBrittany\nPatricia\nLatoya\nNatasha\nMonica\nKathryn\nJulie\nDiana\nKristina\nVeronica\nCatherine\nKrystal\nAllison\nLeslie\nAlexis\nStacy\nCynthia\nMarquita\nCarrie\nKatie\nDana\nSandra\nEbony\nErika\nStacey\nBarbara\nPamela\nAnna\nCassandra\nTracy\nSabrina\nLeah\nCandice\nDesiree\nKaren\nDenise\nMeghan\nKatrina\nMelanie\nLinda\nNichole\nKathleen\nCandace\nMonique\nSusan\nTamara\nValerie\nCristina\nDawn\nJulia\nSheena\nKayla\nTina\nAlisha\nMiranda\nCasey\nGina\nKara\nMargaret\nTeresa\nTheresa\nMarie\nRobin\nTonya\nMisty\nStefanie\nDeanna\nLatasha\nLori\nBrooke\nJenny\nTanya\nKristy\nChristy\nRebekah\nMelinda\nVirginia\nTammy\nAlexandra\nRachael\nHeidi\nCheryl\nJacquelyn\nMichele\nChelsea\nJaclyn\nTabitha\nWendy\nCarolyn\nAlison\nNancy\nFelicia\nJoanna\nKelli\nKrista\nMorgan\nRenee\nJillian\nSophia\nAimee\nSummer\nTasha\nBrenda\nAdrienne\nYolanda\nKari\nDonna\nJanet\nSharon\nAna\nMarissa\nCarla\nAngel\nDeborah\nJoy\nPriscilla\nAudrey\nBethany\nAnne\nMeagan\nNina\nAshlee\nCharlene\nTia\nToni\nCaroline\nJasmine\nRobyn\nDiane\nEvelyn\nJaime\nKristine\nLacey\nWhitney\nRegina\nShawna\nChristie\nMeredith\nCarmen\nSuzanne\nMartha\nCarly\nTameka\nCindy\nHannah\nKendra\nKristi\nRhonda\nBonnie\nSherry\nAutumn\nTabatha\nDorothy\nJohanna\nNaomi\nShanna\nTamika\nAdriana\nAriel\nDebra\nJill\nAnn\nCara\nCarol\nClaudia\nColleen\nSylvia\nBridget\nJessie\nMarilyn\nMelody\nOlivia\nSandy\nShirley\nTraci\nBianca\nEricka\nRosa\nShayla\nAnita\nCassie\nFrances\nGloria\nGrace\nRose\nShelly\nAbigail\nNikki\nPaula\nBeth\nKathy\nKelley\nKrystle\nRuth\nSheila\nAngelica\nAshleigh\nBrandie\nCaitlin\nLatonya\nCharlotte\nLatisha\nLydia\nMindy\nShana\nTracey\nAlyssa\nCecilia\nCharity\nConstance\nElaine\nJanice\nJeanette\nKellie\nRaquel\nRyan\nTerri\nTrista\nCarolina\nJudith\nLaurie\nMandy\nStaci\nEva\nJanelle\nJodi\nRoxanne\nSonya\nChristen\nSonia\nVivian\nAmelia\nBeverly\nBobbie\nChrista\nKate\nLakisha\nOctavia\nSasha\nAntoinette\nEileen\nEsther\nJade\nKasey\nMiriam\nShauna\nTaylor\nYvonne\nBelinda\nBetty\nChrystal\nHelen\nJenifer\nJenna\nKenya\nKerri\nLeigh\nMarisol\nNatalia\nChristin\nHillary\nJane\nLynn\nMarisa\nMichael\nSheri\nSherri\nStacie\nAnastasia\nJackie\nJacklyn\nJordan\nJuanita\nLakesha\nLashonda\nMercedes\nRachelle\nSharonda\nAnnette\nChantel\nConnie\nHaley\nJean\nJoyce\nKeri\nLourdes\nPatrice\nShelley\nTatiana\nTrisha\nAlexandria\nAlice\nAngelina\nCamille\nChanel\nDestiny\nHope\nLacy\nLara\nLesley\nMolly\nPaige\nPrecious\nTanisha\nTiara\nYvette\nAdrian\nAmie\nClaire\nClarissa\nDarlene\nGabrielle\nIrene\nJami\nKarina\nKatharine\nLakeisha\nLillian\nNadia\nTiffanie\nAbby\nAlana\nChasity\nChristopher\nElena\nJanine\nKarla\nKerry\nMallory\nMarsha\nRochelle\nRuby\nShawn\nTania\nToccara\nAnnie\nBrianna\nBrittney\nChristi\nDaphne\nElisha\nHollie\nIsabel\nJeannie\nKelsey\nMaggie\nMargarita\nMarjorie\nSally\nShanika\nYesenia\nAngie\nCaridad\nDaisy\nFaith\nFallon\nHilary\nKia\nLissette\nLoretta\nMarianne\nPrincess\nRandi\nShelby\nTeri\nAshlie\nAudra\nBobbi\nCeleste\nDevin\nDina\nIngrid\nJocelyn\nJodie\nKeisha\nKristal\nLatoria\nLeann\nLeticia\nLorraine\nSelena\nShamika\nShari\nTaryn\nTricia\nAileen\nAlissa\nAlyson\nAntonia\nBrianne\nBridgette\nDena\nDianna\nDwan\nElisa\nElisabeth\nGwendolyn\nJanette\nLarissa\nMarcia\nNathalie\nShantel\nTracie\nAlejandra\nAlisa\nBridgett\nDaniela\nDavid\nDevon\nJana\nJeannette\nLyndsey\nMariah\nMarla\nMaureen\nRhiannon\nRita\nShalonda\nTiffani\nAja\nBeatrice\nBriana\nCortney\nDara\nDominique\nEmma\nGinger\nIris\nIvette\nJustine\nLatrice\nMandi\nMaranda\nMarina\nMelisa\nNadine\nRacheal\nSerena\nShameka\nSimone\nSusana\nTami\nAlecia\nBecky\nBillie\nCelia\nCherie\nDeidre\nEllen\nIvy\nJames\nJoann\nJoanne\nJosephine\nKimberley\nKira\nKristie\nLaurel\nLeanne\nMyra\nNora\nOlga\nSavannah\nAisha\nAlexia\nArielle\nBrenna\nCorey\nDania\nElise\nFrancesca\nGenevieve\nGiselle\nHayley\nJoni\nJustin\nKaty\nLakeshia\nLatavia\nLeeann\nLena\nLisette\nMaritza\nShakira\nShaneka\nShayna\nTanesha\nAbbey\nAlesha\nAntionette\nArlene\nBlair\nCarissa\nCharmaine\nDaniella\nDeana\nDebbie\nDoris\nFelecia\nGeorgia\nJennie\nJolene\nKirsten\nKyla\nLatosha\nLucy\nLynda\nMarlene\nMeaghan\nPeggy\nRosanna\nTangela\nTanika\nTerra\nValencia\nWanda\nAlaina\nBritney\nCandy\nCarey\nCari\nChandra\nChelsey\nCheri\nChiquita\nChristian\nCiji\nDaniel\nDelia\nJanna\nJayme\nJoan\nJudy\nJune\nLaquita\nLea\nLee\nLiza\nLora\nLoren\nMari\nNoelle\nRene\nRoxana\nSilvia\nTalia\nTequila\nAshli\nAubrey\nBertha\nCallie\nCaryn\nCassidy\nChantelle\nDannielle\nDayna\nGabriela\nGail\nGretchen\nJeanne\nJuliana\nKendall\nLaquanda\nLawanda\nMadeline\nMarlena\nMayra\nMia\nRobert\nSherika\nStephaine\nViviana\nAlma\nAngelique\nBailey\nBeatriz\nBetsy\nBrandon\nCandi\nChantal\nChristal\nCristy\nDeidra\nDelores\nGeneva\nGladys\nGlenda\nIvory\nJody\nKaleena\nLadonna\nLatoyia\nLorena\nMarcie\nMarguita\nMartine\nMaya\nMelina\nMildred\nMisti\nMollie\nNorma\nRaven\nRebeca\nRonda\nShantell\nSharika\nShavon\nSofia\nSommer\nTarah\nTessa\nThomas\nTosha\nTyesha\nVickie\nAdrianne\nAndria\nAsia\nBreanna\nCasandra\nCorrie\nDionne\nDora\nEboni\nIleana\nJackeline\nJanie\nJohn\nKarin\nKaryn\nKassandra\nKristyn\nLashanda\nLeanna\nLyndsay\nLynette\nMaryann\nMatthew\nMeghann\nNatacha\nNikole\nPaola\nRosemary\nSarai\nSelina\nShanon\nShatoya\nSheree\nSonja\nTabetha\nTenisha\nTera\nTeresita\nUrsula\nAida\nAlesia\nAlexa\nAngelia\nAnthony\nAshely\nAthena\nAyesha\nBernadette\nChastity\nClara\nCrissy\nDanelle\nDemetria\nEleanor\nElyse\nEmilee\nEmilie\nGeorgina\nIvonne\nJamila\nJeannine\nJenelle\nJesica\nJesse\nJohana\nJosie\nJoycelyn\nJulianne\nKacey\nKala\nKandace\nKandi\nKenyatta\nKevin\nKyle\nLashunda\nLatanya\nLeila\nLetitia\nLillie\nLinsey\nLouise\nMarkita\nMattie\nMellisa\nMellissa\nNakisha\nNicki\nNicolette\nNoemi\nRoberta\nShaina\nShanta\nShanteria\nShaquita\nShawanda\nShenika\nSherrie\nShonda\nSusanna\nSuzette\nSuzie\nTamar\nTaneisha\nTess\nValeria\nVenessa\nWendi\nWilliam\nAdrianna\nAlanna\nAlexander\nAlina\nAnnemarie\nAriana\nArianna\nAshlei\nAshly\nBettina\nBlanca\nBreanne\nCarole\nCathryn\nCathy\nDarby\nEbonie\nEdna\nElissa\nEugenia\nFrancine\nGillian\nGinny\nGuadalupe\nHarmony\nHolli\nJaqueline\nJasmin\nJonathan\nJoshua\nKaitlyn\nKarissa\nKarrie\nKathrine\nKenisha\nKerline\nKyra\nLana\nLatora\nLatricia\nLeighann\nLiliana\nLoni\nLuz\nMabel\nMarci\nMargie\nMaribel\nMartina\nMichell\nNatashia\nNatosha\nNicolle\nNikia\nPatty\nPenny\nPhyllis\nRaina\nRashida\nRosalyn\nShameika\nShanda\nShanel\nShantavia\nShara\nSharhonda\nShemika\nSheryl\nShira\nSiobhan\nStefani\nStevie\nSusannah\nTamekia\nTashara\nTerry\nTherese\nTiana\nTierra\nTiesha\nTisha\nTocarra\nTrina\nValarie\nAdriane\nAlisia\nAllyson\nAmberly\nAmi\nAsha\nAvis\nBrian\nBrigette\nCatrina\nCecelia\nCelina\nCharline\nCicely\nColby\nColette\nContessa\nCori\nCorina\nCorinne\nDamaris\nDarcie\nDarcy\nDarla\nDavina\nDeena\nDella\nDolores\nEve\nGenie\nGuerline\nHelena\nHolley\nInes\nIsis\nJacquelin\nJameka\nJammie\nJason\nJeana\nJeanie\nJenni\nJessi\nJohnnie\nJordana\nJoseph\nJulissa\nJustina\nKatina\nKiara\nKiley\nKirby\nKori\nLaci\nLatesha\nLatia\nLela\nLeona\nLina\nLois\nLucia\nLucretia\nMalissa\nMarcella\nMarquitta\nMercy\nMilagros\nMindi\nNakia\nNatassia\nNiki\nNoel\nParis\nRamona\nRena\nRichelle\nRosalind\nRoxanna\nSalina\nShanita\nShannan\nShante\nShelli\nShemeka\nStar\nStarr\nStephenie\nStephine\nSue\nSunshine\nSusie\nSuzanna\nTacara\nTalisha\nTammie\nTawana\nThelma\nTori\nVanesa\nVicki\nWillie\nYamile\nYashica\nYessenia\nAlberta\nAleisha\nAlfreda\nAnais\nAndrew\nAnissa\nAshanti\nAurora\nBarbra\nBrandee\nCandis\nCarie\nCarina\nCarline\nCasie\nCelisse\nChanda\nChaquita\nCharles\nCherish\nChloe\nChrissy\nCiara\nCorrine\nCristen\nDeirdre\nDeloris\nDesirae\nDianne\nDixie\nEbonee\nEcho\nElana\nElsa\nEmilia\nEssence\nEunice\nFabiola\nFalon\nFarah\nFarrah\nGisela\nHanna\nIda\nInez\nJan\nJannette\nJeanine\nJeanna\nJena\nJeniffer\nJesenia\nJoelle\nJulienne\nJuliet\nKacie\nKaila\nKarie\nKassie\nKera\nKeturah\nKeyana\nKim\nKimberlee\nLacie\nLarhonda\nLashandra\nLashaunda\nLashawnda\nLeandra\nLeeanne\nLia\nLiana\nLidia\nLilian\nLorie\nLuisa\nMadelin\nMaegan\nMagan\nMahogany\nMandie\nMara\nMarcy\nMarion\nMarkesha\nMarta\nMoriah\nNicholas\nNicola\nNoelia\nPorscha\nRegine\nRisa\nRosario\nRosemarie\nSamatha\nShakita\nShala\nShandra\nShanell\nShaquanda\nSharee\nShareka\nShasta\nShaunna\nShaunte\nShena\nShenita\nSherica\nSydney\nTakeisha\nTamera\nTamra\nTaneka\nTawanna\nTemeka\nTimothy\nTomika\nTravis\nTrudy\nValentina\nYadira\nYolonda\nAda\nAkira\nAlea\nAleshia\nAlethea\nAli\nAngeline\nBambi\nBarbie\nBenita\nBilan\nBryan\nCameron\nCandie\nCarl\nCarlisa\nCary\nCassy\nChanell\nChantell\nCharise\nClare\nCoretta\nCristine\nCrystall\nDalia\nDallas\nDamarys\nDanica\nDanika\nDayana\nDeann\nDesire\nDominque\nDrew\nEboney\nElaina\nElishia\nEric\nEsmeralda\nEstrella\nEvelyne\nEvette\nFatima\nFawn\nFelica\nFelisha\nFlorence\nFrancis\nFrancoise\nFreda\nFrederica\nGayle\nGiovanna\nIndia\nIrma\nJaimee\nJaimie\nJamey\nJamika\nJanae\nJanel\nJanell\nJanessa\nJazmine\nJennette\nJenniffer\nJessenia\nJoleen\nJourdan\nJuana\nJuliette\nJunie\nKacy\nKaitlin\nKatelyn\nKathlene\nKatia\nKendal\nKenia\nKeosha\nKesha\nKhalilah\nKiana\nKimberely\nKrystel\nKrystina\nLakenya\nLakia\nLakiesha\nLasheena\nLatara\nLaticia\nLeilani\nLetesha\nLetisha\nLissa\nLory\nLucinda\nLuisana\nLynsey\nMadelyn\nMagen\nMalena\nMalinda\nMarcus\nMaren\nMargaux\nMarguerite\nMariam\nMarian\nMaricela\nMarietta\nMaryanne\nMelaine\nMeryl\nMiesha\nMilca\nMona\nMonika\nMyriam\nNadege\nNastassia\nPaul\nPaulette\nPauline\nPerla\nPiper\nRashonda\nRhea\nRosana\nRoseline\nRoxann\nSamara\nSarina\nShakena\nShakeya\nShantoria\nSharita\nSharlene\nShavonda\nShawanna\nSherell\nSherley\nSierra\nSophie\nTakeshia\nTakisha\nTamela\nTamica\nTana\nTasheka\nTashina\nTavia\nTemika\nTeneshia\nTenika\nTerica\nTerrica\nTerrie\nTiera\nTonisha\nTyler\nVenus\nVicky\nWilda\nXiomara\nYamila\nYasmin\nJennifer\nJessica\nAshley\nAmanda\nStephanie\nNicole\nHeather\nMelissa\nSarah\nChristina\nTiffany\nCrystal\nElizabeth\nDanielle\nMichelle\nKimberly\nRachel\nAmber\nLauren\nMegan\nAmy\nRebecca\nKelly\nLaura\nAngela\nErin\nShannon\nErica\nLisa\nBrittany\nKatherine\nLatoya\nKristen\nSamantha\nJamie\nApril\nVanessa\nChristine\nAndrea\nMary\nKristin\nSara\nLindsey\nAlicia\nJacqueline\nTara\nEmily\nVictoria\nCourtney\nLindsay\nPatricia\nMonica\nNatalie\nBrandy\nKristina\nJulie\nMaria\nBrandi\nJenna\nHolly\nAllison\nKatie\nCynthia\nAlexis\nDiana\nSheena\nKathryn\nKrystal\nCassandra\nMeghan\nNatasha\nCatherine\nStacy\nKatrina\nAlexandra\nVeronica\nKathleen\nSandra\nValerie\nDana\nAnna\nErika\nMelanie\nCandice\nKaren\nStacey\nJoanna\nSabrina\nCandace\nTina\nNichole\nTracy\nBarbara\nCarrie\nMisty\nRachael\nTeresa\nLeslie\nTamara\nMorgan\nMonique\nMargaret\nCasey\nLeah\nGina\nJulia\nCristina\nEbony\nPamela\nChelsea\nJillian\nDawn\nDenise\nMarquita\nMelinda\nTheresa\nBrooke\nDesiree\nSusan\nJenny\nKara\nRenee\nTabitha\nMiranda\nTonya\nWhitney\nShana\nTanya\nJasmine\nLinda\nDeanna\nKristy\nAlison\nLacey\nChristy\nMichele\nVirginia\nAlisha\nCarolyn\nNancy\nRebekah\nLatasha\nLori\nTammy\nAna\nPriscilla\nKelli\nRegina\nDominique\nFelicia\nHeidi\nRobin\nStefanie\nCaroline\nCindy\nAngel\nJacquelyn\nMeredith\nJaclyn\nKayla\nKristine\nMarie\nCarly\nKrista\nCarla\nOlivia\nTabatha\nTasha\nAudrey\nBonnie\nCassie\nMeagan\nSharon\nSummer\nBrenda\nJanet\nWendy\nAshlee\nColleen\nDeborah\nBethany\nJaime\nBridget\nRhonda\nAdrienne\nCheryl\nShanna\nAimee\nAlexandria\nKendra\nSophia\nBrittney\nCarmen\nAnne\nEvelyn\nKari\nKristi\nYolanda\nDonna\nMarissa\nShawna\nGrace\nHannah\nKeri\nCharlene\nMindy\nAmelia\nJill\nKrystle\nMallory\nAnn\nAutumn\nFrances\nNina\nShauna\nShelby\nSuzanne\nTia\nDiane\nRobyn\nRose\nTaylor\nCarol\nDorothy\nRuth\nTatiana\nRachelle\nSylvia\nKellie\nMelody\nShelly\nToni\nBeth\nCaitlin\nChristie\nJanice\nJoy\nSheila\nTameka\nDebra\nJodi\nJohanna\nNaomi\nStacie\nCarolina\nCharlotte\nLeigh\nAriel\nCara\nJudith\nLydia\nRosa\nSonya\nAlyssa\nChrista\nClaudia\nGabrielle\nJenifer\nSherry\nTamika\nAbigail\nEricka\nJade\nJoyce\nPaula\nShayla\nCecilia\nHilary\nKasey\nNatalia\nAdriana\nAshleigh\nChristin\nHelen\nJana\nKelley\nAudra\nBeverly\nBianca\nHope\nLacy\nMiriam\nRaquel\nGloria\nJessie\nMandy\nAntoinette\nChristen\nFaith\nHillary\nKira\nLara\nLatisha\nMaggie\nTrista\nYvonne\nElena\nKate\nKatharine\nLesley\nMartha\nPrecious\nSandy\nSavannah\nSherri\nTracey\nAngelica\nCharity\nChrystal\nElaine\nEllen\nEsther\nEva\nKarina\nKarla\nKeisha\nLakesha\nMolly\nShelley\nTraci\nAubrey\nChantel\nLaurie\nNathalie\nNikki\nBriana\nBrianna\nCarissa\nJeanette\nJordan\nKathy\nOctavia\nPatrice\nTiffani\nAileen\nBelinda\nBridgette\nLashonda\nLatonya\nLatoria\nRoxanne\nTiara\nValencia\nVivian\nAlana\nAnnette\nChristian\nClaire\nClarissa\nConstance\nElise\nHaley\nJocelyn\nKelsey\nLakeisha\nLeanne\nLissette\nMaureen\nNorma\nRandi\nRita\nShayna\nTanisha\nTerra\nTerri\nAbby\nConnie\nIsabel\nJanelle\nKerry\nMarilyn\nTrisha\nAdrian\nBrandie\nChasity\nDena\nDestiny\nGiselle\nIndia\nJami\nJennie\nKristal\nKristie\nLakisha\nNadia\nSally\nSasha\nSelena\nShari\nShirley\nTiffanie\nAlice\nAnastasia\nArielle\nBetty\nDaisy\nDaniela\nDaphne\nJoann\nJuanita\nLatrice\nLynn\nMarisa\nRacheal\nRochelle\nAlyson\nAngelina\nCassidy\nJanine\nJena\nKerri\nLeticia\nLyndsey\nPaige\nSerena\nShameka\nStaci\nAlissa\nAmie\nAshlie\nBillie\nBreanna\nJackie\nJean\nJoan\nKenya\nKirsten\nMia\nRyan\nSheri\nSonia\nTeri\nAngie\nAnnie\nAntonia\nBetsy\nBrenna\nCaridad\nChandra\nChristopher\nCori\nDevon\nElisa\nFallon\nJoanne\nShaina\nShantell\nYesenia\nAlejandra\nAnita\nCeleste\nCelia\nChiquita\nEileen\nElisabeth\nHollie\nJeannie\nJolene\nJoni\nLena\nLillian\nMercedes\nPrincess\nShanika\nTessa\nTrina\nAisha\nAllyson\nChanel\nChristi\nCortney\nDaniel\nDarlene\nDianna\nJayme\nLashawn\nLaurel\nLoren\nLourdes\nMaritza\nTaryn\nTera\nWanda\nAlesha\nAlina\nAlma\nBecky\nCallie\nChelsey\nGinger\nHayley\nIngrid\nIris\nJames\nJulianne\nLarissa\nLeann\nMarjorie\nOlga\nRuby\nShantel\nSheryl\nTania\nTricia\nYvette\nBlair\nBobbie\nBrianne\nBritney\nDebbie\nEboni\nEmma\nIrene\nJacklyn\nJanette\nJosephine\nJudy\nKaty\nKim\nLee\nLora\nLorraine\nMaryann\nMichael\nNoel\nRobert\nAshely\nBeatriz\nCari\nCharmaine\nDoris\nIvette\nJanie\nJeannette\nKali\nLucia\nMargarita\nMarsha\nNadine\nNoelle\nNora\nShalonda\nShamika\nSharonda\nAdrianne\nAsia\nBeatrice\nCameron\nChantal\nChristal\nCorey\nCorinne\nDaniella\nDemetria\nElisha\nFrancesca\nGenevieve\nJane\nJody\nJuliana\nJustine\nKacie\nKassandra\nLashawnda\nLiza\nMarcia\nMeaghan\nPeggy\nPenny\nShakira\nShaneka\nShawn\nSherika\nSimone\nAlanna\nAndria\nAriana\nArlene\nBrittani\nCandy\nCathy\nCecelia\nCherie\nDeana\nDevin\nElissa\nGwendolyn\nJasmin\nJoshua\nKatelyn\nKendall\nLacie\nLatosha\nLeeann\nLoretta\nLyndsay\nMadeline\nMarcella\nMaribel\nMarina\nMatthew\nMichaela\nNicolette\nRaven\nRhiannon\nShanell\nShara\nShellie\nSherrie\nStephany\nTammie\nTierra\nAlisa\nAshly\nCheri\nClara\nDara\nDavid\nDianne\nDina\nElyse\nEugenia\nFelecia\nFrancine\nGabriela\nGeorgette\nGretchen\nJanell\nJeri\nJohn\nJuliette\nJustina\nKandice\nKathrine\nKatia\nKimberley\nKristian\nLaci\nLashanda\nLea\nLeilani\nLynette\nMandi\nMarkita\nMarla\nMelisa\nMollie\nNakia\nPaola\nSelina\nShenna\nShonda\nStephaine\nTabetha\nTangela\nTawanna\nYasmin\nAbbey\nAngelique\nAva\nBobbi\nBrian\nBridgett\nCandi\nCarina\nDixie\nGail\nGeorgia\nGlenda\nIvy\nJenni\nJodie\nKandace\nKristyn\nLana\nLaquanda\nLaquisha\nLatavia\nLatricia\nLawanda\nLeanna\nLinsey\nMagen\nMara\nMaranda\nMariana\nMarianne\nMarlene\nMarta\nNikia\nNoemi\nRena\nRoberta\nRoxana\nTeela\nTori\nTracie\nValarie\nAlecia\nAnais\nAthena\nCarey\nCasandra\nCathryn\nCherish\nDarcy\nDarla\nDionne\nFarah\nGeraldine\nIleana\nJeanne\nJonathan\nKaitlyn\nKalyn\nKeely\nLayla\nLizette\nLorena\nMarian\nMarlena\nMarquitta\nMartina\nMayra\nNatosha\nNiki\nPhyllis\nRebeca\nRhea\nRikki\nRosemary\nShanta\nSharina\nShenika\nSheree\nSilvia\nSofia\nSusana\nTakara\nTalia\nTami\nTarah\nToccara\nVanesa\nVera\nVicky\nWendi\nAdriane\nAlaina\nAmalia\nAntionette\nAshlea\nAurora\nBailey\nBrandee\nBrandon\nBreanne\nBrett\nBrynn\nCandis\nDaphney\nDesirae\nDorian\nDulce\nEdna\nEleanor\nElicia\nFelisha\nGabriella\nGayle\nGeneva\nGillian\nHelena\nHilda\nHolley\nJamila\nJanel\nJanessa\nJohana\nJoseph\nJune\nJustin\nKacey\nKami\nKarin\nKatina\nKenyatta\nKimberlee\nKirby\nLaquita\nLina\nLisette\nMackenzie\nMaegan\nMari\nMaya\nMilagros\nNatacha\nNikita\nRoxanna\nSantana\nSarina\nShante\nShaquita\nShareka\nShena\nTawanda\nTyler\nViviana\nAaron\nAdria\nAlexia\nAli\nAnnmarie\nAnthony\nBernadette\nBritni\nCarley\nCarlie\nCarlos\nCaryn\nCatalina\nChantelle\nChastity\nCheyenne\nCiara\nCody\nCory\nCrista\nCristin\nCristine\nCristy\nDalia\nDeanne\nDeena\nDora\nEdith\nEliza\nEmilia\nEmilie\nEmmanuela\nEryn\nFarrah\nGuadalupe\nIvory\nJackelyn\nJesse\nJessi\nJewel\nKaitlin\nKaley\nKarrie\nKatheryn\nKati\nKristan\nKrystin\nKyla\nLashay\nLatesha\nLorna\nLuz\nLynda\nMalissa\nMarisol\nMellisa\nMildred\nMonika\nNichelle\nRamona\nRosalinda\nRosalyn\nRosanna\nSandi\nSarai\nShatoya\nShavon\nShawana\nSierra\nSonja\nStarla\nStephani\nStevie\nTamra\nTanika\nTegan\nTemeka\nTosha\nVickie\nXiomara\nAda\nAja\nAlycia\nAlyse\nAmi\nAndrew\nAngeline\nAnya\nAsha\nBernice\nBlanca\nCandie\nCarolann\nCasie\nCelisse\nChanell\nChanelle\nCharissa\nChelsie\nCherrelle\nChimere\nCiji\nColette\nCora\nCristal\nDamaris\nDanelle\nDania\nDaniell\nDanyell\nDeidre\nDenisha\nDominque\nEbonie\nElaina\nFatima\nFlorence\nFrancis\nHanna\nHarmony\nJaqueline\nJason\nJerri\nJonelle\nJosie\nJoycelyn\nJuana\nJulissa\nKacy\nKayce\nKenneth\nKenyetta\nKevin\nKourtney\nKyle\nKylie\nLatia\nLiana\nLucinda\nLucy\nLynnette\nLynsey\nMalinda\nMargo\nMaricela\nMariel\nMarquetta\nMattie\nMeggan\nMeghann\nMelina\nNataly\nPaulette\nPauline\nPorsha\nRacquel\nReina\nRosalie\nRosalind\nSavanna\nShakelia\nShandra\nShannan\nSharla\nShawanda\nShea\nSheneka\nShira\nSommer\nSondra\nStefani\nStephenie\nSue\nSuzanna\nSydney\nTakia\nTammi\nTenesha\nTenisha\nTequila\nTequilla\nTherese\nTiana\nTiffaney\nTiffiny\nTracee\nTreva\nValeria\nVenessa\nWindy\nYajaira\nYamile\nAdeline\nAlessandra\nAlysha\nAngelia\nApollonia\nApryl\nAshanti\nAshlei\nAshli\nAstrid\nAyana\nBenita\nBettina\nBrittny\nBryan\nCamille\nCarli\nCatrina\nCelina\nChantell\nCharlee\nConsuelo\nCoral\nCorrie\nDallas\nDanise\nDanyel\nDayna\nDelia\nDelores\nDenice\nDevan\nDonielle\nEmerald\nFabiola\nFranchesca\nGeorgina\nGisselle\nGracie\nHarriet\nIda\nIsabelle\nIsis\nIvonne\nJanna\nJeana\nJeanine\nJenelle\nJenise\nJesica\nJessika\nJo\nJoana\nJoanie\nJohnnie\nJosette\nJulianna\nKanesha\nKanisha\nKarli\nKaryn\nKasandra\nKay\nKeeley\nKeosha\nKera\nKerrie\nKeyona\nKori\nKylene\nLaila\nLakeshia\nLashaunda\nLatoyia\nLatrell\nLatrina\nLavonda\nLeandra\nLeighann\nLeila\nLela\nLilia\nLiliana\nLogan\nLoni\nLucretia\nLuisa\nMabel\nMagan\nMagdala\nMailyn\nMarci\nMarcy\nMarion\nMartine\nMaxine\nMerissa\nMerline\nMeryl\nNastassia\nNedra\nNicholas\nPortia\nRene\nRenita\nRina\nRonda\nRosanne\nSalena\nSalina\nSarita\nScarlett\nShakina\nShakita\nShala\nShamira\nShanae\nShani\nShaniqua\nShanita\nShanon\nShantelle\nShaquana\nShaquanda\nSharell\nSharika\nSharita\nShaunna\nShelia\nSiobhan\nSkye\nSpring\nStacia\nStarr\nSteffanie\nSunshine\nSusanne\nTamar\nTamica\nTaneisha\nTanesha\nTasia\nTerry\nThelma\nThomas\nTiesha\nTocarra\nTomeka\nTonia\nAdela\nAdina\nAida\nAleshia\nAlex\nAlexander\nAlishia\nAlisia\nAllyssa\nAlvina\nAlysia\nAnitra\nAnnemarie\nAyasha\nBertha\nBlaine\nBlaire\nBlythe\nBreana\nBrigette\nBrigitte\nCamilla\nCarie\nCarline\nCarlyn\nCarole\nChanta\nCharis\nCheree\nChina\nChloe\nChrissy\nChristan\nClaudine\nCornelia\nCorrine\nCristen\nCyrstal\nDanae\nDaniele\nDavina\nDeandra\nDeandrea\nDeidra\nDeirdre\nDella\nDemetrice\nDesarae\nDesire\nDiandra\nEcho\nEdwina\nElana\nElda\nElla\nEric\nEthel\nEunice\nFlora\nFredricka\nGia\nGladys\nHallie\nHazel\nIesha\nIliana\nInes\nJackeline\nJada\nJamesha\nJammie\nJan\nJanae\nJannette\nJasmyne\nJeffrey\nJeniffer\nJesseca\nJoelle\nJoi\nJolie\nJosefina\nJoslyn\nKaci\nKandis\nKarissa\nKatarina\nKatelin\nKatlyn\nKatrice\nKaylan\nKellee\nKellyn\nKesha\nKiara\nKylee\nKymberly\nKyra\nLadonna\nLakendra\nLarhonda\nLatoia\nLazara\nLidia\nLillie\nLindy\nLolita\nLouise\nMadelyn\nMagda\nManda\nMarcela\nMarguerite\nMariah\nMariam\nMarilee\nMayte\nMelba\nMiesha\nMilissa\nNakisha\nNatali\nNathalia\nNena\nNichol\nNicki\nPatti\nPaulina\nPearl\nRashida\nRashonda\nRichard\nRisa\nRonald\nRoseanna\nRoshonda\nSabine\nSabrena\nShakeila\nShaketa\nShanee\nShaneika\nShantavia\nSharena\nSharmaine\nSharyl\nShatara\nShawntavia\nShawnte\nShelli\nShenita\nSherica\nSherita\nSomer\nStefany\nStella\nStevi\nStormy\nSusie\nSuzette\nTacarra\nTamekia\nTanishia\nTashara\nTashia\nTavia\nTawny\nTenika\nThomasina\nThuy\nTonika\nTristan\nUrsula\nVelma\nWilla\nWillie\nYadira\nYamilet\nYecenia\nYessenia\nJessica\nAshley\nJennifer\nAmanda\nStephanie\nHeather\nNicole\nMelissa\nChristina\nSarah\nTiffany\nBrittany\nCrystal\nElizabeth\nDanielle\nLauren\nMegan\nAmber\nRachel\nMichelle\nKimberly\nLaura\nSamantha\nAmy\nRebecca\nJamie\nKelly\nErica\nKristen\nShannon\nAngela\nVanessa\nSara\nKatherine\nMary\nErin\nLisa\nLindsey\nAndrea\nApril\nChristine\nAlicia\nEmily\nKristina\nNatalie\nCourtney\nKrystal\nKristin\nVictoria\nLatoya\nLindsay\nTara\nAllison\nJacqueline\nKathryn\nJenna\nMonica\nJulie\nMaria\nKatie\nPatricia\nBrandy\nDominique\nBrandi\nHolly\nMeghan\nNatasha\nKatrina\nStacy\nAnna\nCatherine\nAlexandra\nCynthia\nWhitney\nDiana\nAlexis\nSheena\nBrittney\nErika\nVeronica\nKathleen\nCandice\nLeah\nCassandra\nMelanie\nRachael\nPamela\nLeslie\nSandra\nDana\nCandace\nNichole\nBarbara\nKaren\nJulia\nTina\nValerie\nChelsea\nCristina\nFelicia\nStacey\nSabrina\nCasey\nJasmine\nKrystle\nTracy\nCarrie\nDenise\nMargaret\nTabitha\nMelinda\nLinda\nMeagan\nMorgan\nMonique\nSummer\nAngel\nTamara\nBrooke\nDesiree\nGina\nAlison\nCaitlin\nKara\nEbony\nAshlee\nNancy\nSusan\nDeanna\nDawn\nMisty\nTonya\nJaclyn\nJacquelyn\nJillian\nTeresa\nChristy\nRenee\nBethany\nCaroline\nJoanna\nAlisha\nMarie\nPriscilla\nTanya\nCarolyn\nChristie\nLacey\nRobin\nMiranda\nCindy\nRegina\nAna\nTheresa\nKristy\nMallory\nSharon\nDeborah\nJaime\nKristi\nMarissa\nJenny\nHannah\nKari\nCheryl\nKayla\nMichele\nKrista\nRebekah\nBrenda\nKendra\nLatasha\nSierra\nCarmen\nSophia\nVirginia\nAimee\nAudrey\nCarly\nNina\nShanna\nYolanda\nJoy\nShana\nTasha\nCarla\nKelli\nKristine\nDonna\nRaquel\nStefanie\nToni\nAlyssa\nCassie\nCharlene\nWendy\nAlexandria\nBridget\nLori\nMeredith\nPaula\nTammy\nAdrienne\nBonnie\nCara\nOlivia\nColleen\nHeidi\nDebra\nIndia\nJocelyn\nShawna\nTaylor\nTia\nSherry\nAbigail\nAlana\nCharlotte\nElena\nGloria\nJanelle\nJanet\nJessie\nMandy\nSavannah\nAutumn\nAnn\nKeri\nAnne\nClaudia\nDorothy\nMolly\nRachelle\nRobyn\nAngelica\nCierra\nJill\nNaomi\nSylvia\nDiane\nHaley\nHope\nNikki\nTamika\nAdriana\nAshleigh\nCharity\nEvelyn\nFrances\nJudith\nMindy\nSasha\nShelly\nTabatha\nTrisha\nAmelia\nCarol\nKate\nKatelyn\nSheila\nChiquita\nHelen\nJeanette\nKerri\nTraci\nBianca\nCiara\nElise\nJodi\nJohanna\nLakeisha\nMelody\nPatrice\nRose\nRuth\nTerri\nEricka\nJenifer\nRandi\nShayla\nSuzanne\nBetty\nChrista\nGrace\nLydia\nMarquita\nPrecious\nAubrey\nGabrielle\nJanice\nJordan\nKelley\nMartha\nRhonda\nRosa\nShirley\nCarolina\nClaire\nHilary\nKeisha\nLeigh\nLissette\nShauna\nTatiana\nAntoinette\nBrandie\nBrianna\nChristopher\nLatisha\nShelby\nAngelina\nEsther\nLaurel\nMercedes\nNathalie\nRita\nShayna\nFallon\nHillary\nKarla\nSade\nShari\nSonia\nBritney\nCortney\nKristie\nLillian\nLourdes\nPaige\nRosemary\nTameka\nTaryn\nAshlie\nBobbie\nElaine\nFaith\nHayley\nJustine\nLacy\nLaurie\nRochelle\nAnnette\nAnnie\nBeverly\nBrittani\nCarissa\nChristen\nChristin\nIrene\nJade\nKathy\nKellie\nShantel\nStaci\nAllyson\nBeth\nBlair\nConnie\nFrancesca\nJana\nKaitlin\nMarjorie\nTanisha\nTiffani\nAdrian\nConstance\nKasey\nKendall\nLakisha\nLara\nLyndsey\nMarilyn\nMichael\nRoxanne\nShelley\nSonya\nTracey\nVivian\nAlisa\nAngie\nCecilia\nChantal\nChrystal\nCorey\nDaphne\nDarlene\nJeannie\nKaley\nKarina\nKaty\nKelsey\nKristal\nValencia\nYvette\nAlyson\nBelinda\nIsabel\nJami\nJasmin\nJena\nJuanita\nKaitlyn\nKira\nLakesha\nLatonya\nMarisa\nNadia\nNoelle\nAlissa\nAriel\nChantel\nDebbie\nDeidre\nEva\nJackie\nJean\nMeaghan\nMelisa\nRyan\nSandy\nTierra\nAlice\nAmie\nAudra\nBriana\nBridgette\nChristian\nDevin\nGabriela\nGenevieve\nIris\nJanette\nKatharine\nKirsten\nLoren\nMarianne\nMiriam\nSerena\nStacie\nYvonne\nAbby\nAileen\nAlina\nCiera\nDaniela\nDaniella\nEileen\nJulianne\nLakeshia\nLynn\nMackenzie\nOctavia\nSantana\nAdrianne\nAlecia\nAnita\nBillie\nChanel\nDavid\nDayna\nDianna\nElisa\nElisabeth\nEmma\nHollie\nJayme\nKristan\nMaggie\nMaureen\nRacheal\nSelena\nShawn\nSherri\nTiffanie\nBeatrice\nBrenna\nChloe\nDominque\nJoann\nJosephine\nKimberley\nLesley\nMicaela\nSally\nShameka\nShanika\nShante\nTracie\nAshely\nBritni\nChasity\nChristi\nIvette\nJane\nJanine\nJennie\nJodie\nKerry\nKrystina\nLucy\nMarisol\nNatalia\nNorma\nRuby\nSheri\nYesenia\nAnastasia\nBeatriz\nBrianne\nCallie\nChristal\nDaisy\nDestiny\nJames\nJoan\nJudy\nKenya\nKia\nLatoria\nLawanda\nLena\nLorena\nLoretta\nLucia\nMaranda\nMarcia\nMargarita\nPauline\nShaina\nTania\nTessa\nTiara\nTricia\nTrista\nViviana\nAnais\nCamille\nClarissa\nCorinne\nDevon\nEboni\nJoanne\nJolene\nJoyce\nJuliana\nLana\nLashonda\nLiliana\nLorraine\nMarlene\nMarsha\nOlga\nPrincess\nTerra\nAlejandra\nArlene\nBlanca\nBridgett\nCasandra\nChandra\nChelsey\nCherie\nDoris\nElyse\nGeorgia\nGinger\nGwendolyn\nJustina\nKassie\nKristyn\nLeann\nLora\nLuz\nMayra\nRobert\nShakita\nShamika\nSharonda\nSofia\nSydney\nVicky\nAshli\nAshly\nBreanna\nCathy\nCelia\nClara\nCori\nCristy\nEdith\nGiselle\nJanna\nJeannette\nKacey\nKassandra\nKerrie\nKeshia\nLashanda\nLatrice\nLeanne\nMatthew\nMellissa\nNadine\nRebeca\nShakira\nShantavia\nShaquita\nSusana\nWanda\nAlaina\nAriana\nArielle\nBritany\nCari\nCeleste\nCharmaine\nDaniel\nDannielle\nDeandra\nDena\nDionne\nEdna\nElisha\nEllen\nGeneva\nJacklyn\nJanessa\nJanie\nJessenia\nKeosha\nLashawn\nLisette\nLucinda\nMagen\nMariana\nMeghann\nMia\nNoemi\nRoberta\nSelina\nShardae\nSherrie\nTalia\nTangela\nTeri\nTiana\nBecky\nBobbi\nBrandee\nCatrina\nChantelle\nCristin\nDania\nDelilah\nDemetria\nEric\nGena\nGretchen\nJesica\nJuliette\nKacy\nKatheryn\nKathrine\nKatina\nKyla\nKyle\nLadonna\nLarissa\nLee\nLeeann\nLyndsay\nMarisela\nMaryann\nNakia\nPeggy\nPenny\nRene\nRosanna\nShandra\nShea\nSherika\nSilvia\nSonja\nStephany\nTami\nTammie\nTarah\nTrina\nYarenis\nAisha\nAmberly\nAmi\nAntonia\nAthena\nBrandon\nCelina\nDara\nDeidra\nDina\nDolores\nElaina\nFelisha\nGabriella\nGeraldine\nGladys\nHailey\nIvy\nJason\nJody\nJune\nKati\nKayleigh\nKourtney\nLaquanda\nLaquita\nLatavia\nLatesha\nLea\nLeanna\nMichaela\nNataly\nNicholas\nNicolle\nPaulette\nRhiannon\nRosalyn\nRosemarie\nRoxana\nShaneka\nShareka\nSuzanna\nTabetha\nTanika\nTasia\nTiera\nTonia\nValeria\nAlia\nAlona\nAlyse\nAndria\nBetsy\nCameron\nCandyce\nCarey\nCasie\nCecelia\nCorrie\nDanyelle\nDeana\nDeena\nDenisha\nFalon\nFelecia\nGlenda\nJoni\nJoseph\nJustin\nKandice\nKaryn\nLatoyia\nLeighann\nLily\nLinsey\nLynsey\nMadeline\nMariah\nMarta\nMollie\nNiki\nNikole\nNoel\nNora\nPaola\nPorsha\nRaven\nShannan\nShantrell\nShena\nSimone\nSuzette\nTawanna\nTera\nTosha\nWendi\nAlena\nAlysia\nAnika\nAnnmarie\nCandi\nCandy\nCaridad\nCarley\nCarlie\nCary\nCassidy\nCody\nCyrstal\nDamaris\nDeann\nDesirae\nDomonique\nDrew\nEleanor\nElicia\nElissa\nFarah\nFlorence\nGail\nHelena\nHolli\nIleana\nJazmin\nJeanna\nJenni\nJoshua\nKacie\nKatia\nKesha\nLashawnda\nLatosha\nLois\nMaegan\nMagdalena\nMandi\nMargo\nMaribel\nMaricela\nMaritza\nMarla\nMisti\nNicolette\nOdalys\nRonda\nSadie\nShanta\nShantell\nShavon\nShawanda\nShawnta\nSiobhan\nStefani\nStephenie\nTameika\nTamra\nTaneisha\nAlanna\nAlexander\nAlexia\nAlma\nAlycia\nAlysha\nAntionette\nAubree\nAundrea\nBailey\nBernadette\nBessie\nBreanne\nBrittaney\nBrittni\nCaitlyn\nCamilla\nCandis\nCarina\nCathleen\nCheyenne\nColby\nCristal\nCyndi\nDalia\nDarcy\nDarla\nDiandra\nDulce\nEthel\nFawn\nFrancis\nGeorgette\nGeorgina\nGianna\nGillian\nGraciela\nGuadalupe\nHarmony\nHolley\nIsis\nJaimie\nJeanine\nJenniffer\nJerrica\nJohana\nJonathan\nKarin\nKarissa\nKeely\nKerline\nKiara\nKimberlee\nKrystin\nKylie\nLaci\nLacie\nLeticia\nLorna\nLuisa\nMagan\nMalinda\nMarcie\nMarina\nMarlena\nMartina\nMaura\nMerline\nMilagros\nPearl\nPortia\nRamona\nRichelle\nRikki\nSarai\nSavanna\nShanice\nShanita\nShantae\nShaquana\nSharday\nSharhonda\nSharina\nShawntavia\nShenika\nShenna\nSheryl\nShonda\nSommer\nSteven\nSusie\nTanesha\nTenisha\nTerry\nTheodora\nToya\nTristan\nTyler\nTyra\nValentina\nValorie\nVickie\nWilliam\nAbbey\nAlesha\nAlexa\nAlexandrea\nAlfreda\nAngeline\nAngelita\nAshton\nBernice\nBettina\nBrett\nBrittanie\nCali\nCarline\nCarole\nCaryn\nCharisse\nChassity\nCheri\nCherise\nClarice\nCoral\nCorie\nCrystle\nDayana\nDixie\nDora\nEliza\nEmilee\nEsperanza\nFrancine\nGisela\nIliana\nIngrid\nJacinda\nJackelyn\nJamila\nJanis\nJaqueline\nJesse\nJessika\nJoana\nJuana\nJulianna\nJulissa\nKaleigh\nKali\nKarrie\nKasandra\nKeila\nKeli\nKenyetta\nKeturah\nKiley\nKirby\nKristian\nKrysten\nLeandra\nLeila\nLila\nLogan\nLynette\nMalorie\nMarcella\nMarian\nMarion\nMeggan\nMellisa\nMelodie\nMicah\nMonika\nNatacha\nNicki\nNikia\nPilar\nQuiana\nRacquel\nRayna\nRenae\nRenata\nRenita\nSalena\nSamatha\nScarlett\nShalonda\nShanell\nShara\nSharde\nSharena\nSharika\nShawana\nShelia\nShellie\nShera\nSheree\nSherilyn\nStarla\nSunny\nTacara\nTamera\nTana\nTaren\nTarra\nThelma\nTiffiny\nUrsula\nValarie\nVanna\nVenessa\nVicki\nAaron\nAdam\nAlishia\nAllie\nAndrew\nAngelia\nAngelique\nApollonia\nArianne\nAsia\nAurora\nAva\nBarbie\nBertha\nBlake\nBobby\nBrian\nBrigette\nBrigitte\nBritteny\nBrittny\nBrook\nCamila\nCarli\nCarlyn\nCatalina\nCatlin\nCharles\nChastity\nChelsy\nChristinia\nCora\nCory\nCristen\nDanica\nDaniele\nDedra\nDeondra\nDevan\nDianne\nDionna\nElsa\nElysia\nEugenia\nEunice\nEve\nFabiola\nFatima\nFelica\nFiona\nFranchesca\nFrancisca\nGinny\nGiovanna\nHalley\nIda\nInfant\nIvonne\nJada\nJameka\nJamika\nJanell\nJaymie\nJeana\nJenelle\nJeniffer\nJennefer\nJessalyn\nJohn\nJonelle\nJosie\nJuliann\nJuliet\nKallie\nKandace\nKandis\nKay\nKenisha\nKenyatta\nKevin\nKhristina\nKiera\nKiesha\nKim\nKimberli\nLaquisha\nLarhonda\nLaronda\nLashannon\nLashundra\nLatashia\nLeona\nLizbeth\nLoni\nLotoya\nMadeleine\nMadonna\nMarcy\nMargie\nMari\nMartine\nMaxine\nMaya\nMeagen\nMelaine\nMichell\nMirlande\nMyra\nNatashia\nNatavia\nNatosha\nNichol\nNikita\nParis\nPhoebe\nPhyllis\nRachal\nRachell\nRaina\nRashida\nReva\nReyna\nRoxanna\nSalina\nSandi\nSarina\nShakia\nShanon\nShantia\nShasta\nShatoya\nShavonda\nShawanna\nSheana\nShelli\nSomer\nSophie\nStephen\nStevie\nStormy\nSue\nSusannah\nSusanne\nTakesha\nTamar\nTamesha\nTashara\nTeela\nTeena\nThomas\nTisha\nToccara\nTori\nVanesa\nVera\nXiomara\nYamile\nYasmin\nYessenia\nZoe\nAdrianna\nAfton\nAlessandra\nAlisia\nAllana\nAllegra\nAmaris\nAnanda\nAndreia\nAnissa\nAnnemarie\nAnsley\nArianna\nArleen\nAryn\nAshlea\nAutum\nBenjamin\nBritt\nBrittan\nCammie\nCasi\nCassaundra\nCassi\nCathryn\nCayce\nChanelle\nChelsi\nChelsie\nChris\nChristan\nCinthia\nCinthya\nClaudette\nCleo\nColeen\nColette\nCollette\nCourtenay\nCristie\nDaniell\nDanyel\nDavida\nDeanne\nDelores\nDorian\nEbonie\nEden\nEmilie\nEnjoli\nErnestina\nEryn\nEsmeralda\nEvette\nFarrah\nFlora\nGlenna\nGracie\nHallie\nIesha\nIlana\nIvory\nJackeline\nJacquelin\nJamia\nJanely\nJanita\nJayne\nJeanie\nJeanne\nJeannine\nJenise\nJeri\nJesenia\nJosefina\nJunia\nKaci\nKadie\nKailey\nKalie\nKalyn\nKandi\nKatara\nKaylie\nKedra\nKeena\nKeira\nKeith\nKellee\nKeondra\nKiana\nKori\nKortney\nKristel\nKrizia\nKrystel\nKyra\nLaila\nLaken\nLashondra\nLashunda\nLatanya\nLatarsha\nLateshia\nLatia\nLaticia\nLayla\nLeeanne\nLia\nLiana\nLillie\nLizette\nLola\nLouise\nLucretia\nLynda\nLynne\nMadison\nMakeda\nMallary\nMarcela\nMarci\nMaren\nMargaux\nMarkita\nMaryanne\nMayte\nMicheal\nMikaela\nMindi\nMinnie\nMuriel\nMyesha\nMyrlande\nNakisha\nNastassia\nNelly\nNiccole\nNikesha\nNova\nPhillip\nPia\nRae\nRashonda\nReba\nRebbecca\nRolanda\nRoshonda\nRosie\nSamara\nScarlet\nShakeria\nShala\nShane\nShanequa\nShantay\nShantelle\nShanteria\nSharee\nSharell\nSharita\nSharlene\nShatavia\nShaunte\nShavonne\nShemika\nSherena\nSheria\nShira\nShontae\nSiara\nSirena\nSkye\nStacia\nStephaine\nTakia\nTalitha\nTamela\nTaneka\nTasheena\nTashina\nTawana\nTawanda\nTegan\nTemeka\nTeneshia\nTequila\nTerrica\nTiarra\nTifany\nTocarra\nTonisha\nTory\nWhittney\nWindy\nYolonda\nZachary\nJessica\nAshley\nAmanda\nJennifer\nBrittany\nSarah\nStephanie\nHeather\nNicole\nTiffany\nMelissa\nAmber\nDanielle\nChristina\nLauren\nElizabeth\nMegan\nSamantha\nCrystal\nKimberly\nRachel\nMichelle\nAmy\nRebecca\nKelly\nLaura\nKatherine\nShannon\nVanessa\nWhitney\nCourtney\nErica\nJamie\nSara\nAngela\nKristen\nLindsey\nErin\nEmily\nAndrea\nMary\nChristine\nLisa\nNatalie\nAlicia\nVictoria\nKristina\nKristin\nKrystal\nKatie\nJacqueline\nApril\nPatricia\nAllison\nLindsay\nMonica\nKathryn\nJenna\nBrittney\nMaria\nBrandy\nTara\nAlexandra\nHolly\nCassandra\nCatherine\nErika\nJulie\nNatasha\nBrandi\nDiana\nAnna\nChelsea\nLatoya\nCynthia\nCasey\nKatrina\nDominique\nKathleen\nMeghan\nCristina\nFelicia\nAlexis\nStacy\nVeronica\nLeslie\nSabrina\nLeah\nKayla\nJasmine\nRachael\nValerie\nDana\nKrista\nBrooke\nCaitlin\nStacey\nSandra\nMelanie\nEbony\nKendra\nTracy\nMorgan\nKaren\nCandice\nKrystle\nCandace\nGina\nCarrie\nMallory\nBarbara\nAlyssa\nTamara\nJulia\nMonique\nKara\nPamela\nTabitha\nAshlee\nNichole\nMeagan\nMargaret\nRobin\nSierra\nMarie\nAlisha\nCaroline\nSusan\nBethany\nDenise\nNancy\nRenee\nCarla\nJoanna\nMelinda\nVirginia\nBritney\nJordan\nChrista\nJaclyn\nNikita\nJillian\nTeresa\nAna\nLinda\nSharon\nAngel\nMeredith\nMiranda\nSheena\nSummer\nAlison\nTina\nMarissa\nSade\nDeanna\nHannah\nRebekah\nDesiree\nKristy\nTonya\nChristy\nPriscilla\nTheresa\nKelli\nCarolyn\nAngelica\nMisty\nCiara\nDeborah\nKristi\nMichele\nBrenda\nKristine\nBrianna\nJacquelyn\nLacey\nSavannah\nTatiana\nChristie\nLatasha\nRegina\nStefanie\nAimee\nAshleigh\nShana\nJaime\nKelsey\nTasha\nAudrey\nOlivia\nSuzanne\nTanya\nDawn\nKatelyn\nSasha\nCindy\nCara\nCassie\nJessie\nTaylor\nWendy\nYolanda\nJenny\nKari\nAbigail\nCarmen\nDonna\nJeanette\nNikki\nAdriana\nAlexandria\nJoy\nRandi\nTammy\nHeidi\nKaitlin\nKeri\nMandy\nRobyn\nJade\nJanet\nCarolina\nMolly\nSophia\nAdrienne\nEvelyn\nHaley\nHope\nKasey\nNaomi\nSheila\nAnne\nBonnie\nFrances\nGabrielle\nRaquel\nShawna\nAnn\nGloria\nKellie\nCarly\nCharity\nElena\nLydia\nTabatha\nAmelia\nAntoinette\nCheryl\nCierra\nColleen\nPrecious\nRose\nTia\nBianca\nBridget\nBrittani\nCharlene\nEva\nKelley\nMelody\nShanna\nAshton\nCarol\nGrace\nJanelle\nLori\nAutumn\nCharlotte\nIndia\nJocelyn\nKarina\nKate\nToni\nRachelle\nTrisha\nAllyson\nElise\nHayley\nKarla\nLyndsey\nNathalie\nNina\nRoxanne\nSherry\nYesenia\nChiquita\nDorothy\nJill\nKatharine\nRuth\nDiane\nEsther\nKaley\nRhonda\nShaina\nShirley\nTraci\nBriana\nClarissa\nClaudia\nKayleigh\nKerri\nShelby\nStacie\nSylvia\nAriel\nEmma\nFrancesca\nHillary\nLatisha\nMarilyn\nMarisa\nMartha\nNatalia\nTiara\nTiffani\nAngelina\nBeth\nJohanna\nKerry\nKristie\nLeigh\nShelly\nSonia\nVivian\nFaith\nJoanne\nJoyce\nMindy\nTerri\nChantel\nChristian\nCiera\nElyse\nEricka\nJenifer\nJuanita\nJudith\nMaggie\nMichael\nPatrice\nRyan\nShantel\nShelley\nTanisha\nAnita\nChasity\nChristen\nDaniella\nElaine\nJustine\nLatonya\nNadia\nYvonne\nBrandie\nBrianne\nCarissa\nDevin\nElisabeth\nJanice\nKeisha\nLakeisha\nSandy\nTania\nTracey\nJena\nJodi\nKathy\nLillian\nMercedes\nShayla\nTierra\nAlaina\nAlana\nBelinda\nCecilia\nChloe\nDaniela\nEileen\nGabriela\nJana\nLucy\nMadison\nMiriam\nPaula\nPrincess\nRosa\nSally\nShayna\nYvette\nAlyson\nAnnie\nBeverly\nChristopher\nDaisy\nEllen\nGabriella\nGenevieve\nKristal\nLaurie\nMarisol\nPaige\nShari\nShauna\nSheri\nAileen\nAlma\nAnnette\nAubrey\nChanel\nChelsey\nClaire\nCortney\nDebra\nElisha\nGwendolyn\nHelen\nIrene\nJulianne\nLynn\nOctavia\nStaci\nStephany\nValencia\nArielle\nAshely\nAudra\nBridgette\nChristin\nChrystal\nConstance\nCory\nDarlene\nGiselle\nJami\nKaitlyn\nLakisha\nLara\nMarquita\nSerena\nShameka\nSonya\nTamika\nTerra\nAbby\nAlexa\nAlice\nAlissa\nBeatrice\nBlair\nCallie\nDaphne\nHilary\nIngrid\nIsabel\nJennie\nLatavia\nLissette\nLorena\nTameka\nAngie\nAshlie\nBetty\nBrenna\nChantelle\nConnie\nDeidra\nJames\nJane\nJanine\nJasmin\nKassandra\nKeshia\nKira\nMaegan\nMariah\nMarjorie\nMia\nTiffanie\nAsia\nBobbie\nFallon\nHollie\nJaimie\nKacie\nKaty\nMarcia\nMaritza\nSharonda\nSheryl\nTessa\nTricia\nCamille\nFelisha\nJesse\nJoshua\nKaylee\nKendall\nKristan\nLakeshia\nLatoria\nLatrice\nMadeline\nMarlene\nRacheal\nAlejandra\nAli\nAlysia\nBobbi\nBridgett\nBritany\nCasandra\nCeleste\nChantal\nCorey\nDamaris\nDestiny\nGuadalupe\nIris\nIvy\nJoann\nKirsten\nKyla\nKyle\nLesley\nLorraine\nShanika\nSherri\nSofia\nYasmin\nAlexander\nAriana\nBetsy\nBreanna\nCaitlyn\nCaridad\nCarley\nCherie\nDebbie\nDina\nDomonique\nJackie\nJosephine\nJudy\nKaleigh\nLacy\nLeanne\nMandi\nMeaghan\nNakita\nParis\nRita\nRuby\nShawn\nTalia\nTrista\nAdrianne\nAisha\nAlisa\nAmie\nAnais\nAnastasia\nAshly\nBeatriz\nBernadette\nBrittanie\nChristal\nDemetria\nElisa\nFelecia\nGeneva\nJacklyn\nJayme\nJuliana\nKimberley\nKristyn\nKrysta\nKrystina\nLana\nLeila\nLinsey\nLourdes\nLynette\nMagen\nMarsha\nMaureen\nMayra\nNoelle\nPeggy\nRochelle\nSantana\nShakira\nSharday\nShatara\nSydney\nTori\nTrina\nAlexia\nBrigitte\nCari\nCarlie\nCassidy\nDara\nDeidre\nDianna\nGinger\nJanessa\nJeannette\nJoelle\nJustina\nKala\nKenya\nKimberlee\nKourtney\nLashanda\nLashonda\nLena\nLoren\nMackenzie\nMarianne\nMarina\nNadine\nSelena\nShamika\nShaneka\nTracie\nAlina\nAngelique\nBailey\nBritni\nBrittaney\nCameron\nChandra\nChantell\nClara\nCori\nCorinne\nDaniel\nDesirae\nFabiola\nIvette\nJanette\nJanie\nJesica\nKatheryn\nKathia\nKierra\nLeticia\nLora\nLoretta\nLucia\nOlga\nPaola\nSavanna\nShantell\nShardae\nShenika\nStevie\nTeri\nAntionette\nArlene\nAsha\nAshli\nBecky\nBillie\nCathy\nCelia\nCharmaine\nChastity\nCherrelle\nChristi\nCora\nDena\nDevon\nDoris\nGretchen\nHailey\nJamila\nJeannie\nJoan\nJody\nJoni\nKia\nLakendra\nLaurel\nLeann\nLiza\nLyndsay\nLynsey\nMaranda\nMarcy\nMargarita\nNakia\nNatacha\nNoel\nPenny\nPorsha\nRikki\nSable\nShante\nSusanna\nSuzette\nTaryn\nUrsula\nAlecia\nAlishia\nAlycia\nAnnmarie\nBrandon\nCasie\nCatrina\nCheri\nCherish\nCheyenne\nCorina\nDeanne\nDelia\nDominque\nEdith\nFarrah\nFranchesca\nHelena\nHilda\nHolli\nIleana\nJanell\nJanna\nJazmin\nJodie\nJonathan\nKaci\nKarissa\nKassie\nKati\nKim\nKori\nLakesha\nLiana\nLynda\nMarcella\nMarion\nMarla\nMartina\nMollie\nNorma\nRosemary\nShareka\nSilvia\nSonja\nSusana\nSuzanna\nTangela\nVenessa\nWilliam\nAja\nAmi\nAngeline\nAntonia\nBrittni\nCarina\nCristal\nCristin\nDania\nDeana\nEboni\nEliza\nEstefania\nGeorgia\nGladys\nJune\nJustin\nKalyn\nKenneth\nLea\nLeanna\nLiane\nLiberty\nLily\nLois\nLuz\nMaryann\nMelisa\nMonika\nNicolette\nNiki\nNora\nRacquel\nRaven\nRoberta\nSaundra\nScarlett\nShakia\nShanita\nShantae\nShaquita\nSharde\nSherita\nSherrie\nTiera\nTiffiny\nValarie\nValeria\nVicky\nYamile\nAhsley\nAmberly\nCandis\nCandy\nCecelia\nChanell\nChelsie\nCiarra\nCodi\nCody\nColby\nDanyelle\nDayna\nDeirdre\nEve\nFelica\nFrancine\nGail\nGeraldine\nGillian\nIliana\nJacquelynn\nJanel\nJazmine\nJean\nJeanne\nJessi\nJessika\nJoseph\nKacey\nKaila\nKandace\nKasie\nKathrine\nKaylin\nKiera\nKortney\nKristian\nLaci\nLaquisha\nLaquita\nLarissa\nLeeann\nLizbeth\nLucinda\nLuisa\nMadelyn\nMalinda\nMargo\nMarkita\nMerline\nNatashia\nRachell\nRebeca\nReina\nRene\nRosanna\nRoxana\nRoxanna\nSarina\nSelina\nShalonda\nShanell\nShantavia\nShatoya\nShavon\nShea\nShena\nShontae\nSimone\nStefani\nTabetha\nTakia\nTami\nTamra\nTanesha\nTarah\nTequila\nTera\nTosha\nVanesa\nViviana\nAlanna\nAlena\nAlyse\nAva\nAyla\nBlanca\nBrittny\nCatalina\nCathryn\nChristiana\nDanna\nDominic\nDora\nDulce\nElaina\nElla\nEmilee\nEsmeralda\nEvette\nFalon\nFrancis\nGena\nGlenda\nHalley\nJerrica\nJessenia\nJo\nJohana\nJohn\nJolene\nJulianna\nJuliette\nKarmen\nKaylyn\nKeli\nKiara\nKrystel\nKrysten\nKylie\nKyra\nKyrie\nLakia\nLatosha\nLeona\nLina\nLisette\nLizette\nLorin\nLorna\nMara\nMarisela\nMarlana\nMarlena\nMatthew\nMeggan\nMeghann\nMellissa\nMichaela\nMilagros\nMildred\nMona\nNadege\nPhyllis\nPorsche\nPortia\nRashida\nRhiannon\nRichard\nRosalinda\nRosana\nSalena\nShacara\nShaquana\nShera\nSherell\nSophie\nStacia\nTamera\nTareva\nThomas\nTyler\nValentina\nVicki\nWanda\nXiomara\nAdrian\nAdrianna\nAlessandra\nAlex\nAllie\nAndria\nAnsley\nAnthony\nAshtin\nAthena\nBreanne\nBrett\nBritteny\nCandi\nCandra\nCathleen\nCharlie\nCherelle\nColette\nCoral\nCrista\nCristen\nDanelle\nDaniele\nDannielle\nDarcy\nDavid\nDianne\nDionne\nEbonie\nEden\nEdna\nElana\nElicia\nEssence\nEugenia\nFaren\nFaye\nFlorence\nGayle\nHanna\nHarmony\nIsabelle\nJackeline\nJammie\nJaqueline\nJenni\nJerica\nJesseca\nJoana\nJohnna\nJosie\nKali\nKarin\nKaycee\nKenyatta\nKera\nKirby\nKrystin\nKylee\nLacie\nLadonna\nLashawn\nLatia\nLawanda\nLee\nLeighann\nLeilani\nLetitia\nLiliana\nMagdalena\nMalissa\nMarcus\nMariana\nMaribel\nMarta\nMartine\nMckenzie\nMelonie\nMicaela\nMyriam\nNatosha\nNikkita\nPaulette\nPorcha\nRashonda\nReva\nRhea\nRobert\nRonda\nRosemarie\nSalina\nSean\nShanta\nShanteria\nShantia\nShantoria\nShaquanda\nSharika\nSharlene\nStephaine\nTamesha\nTasia\nTawanna\nTenisha\nThelma\nAdriane\nAmaris\nAndra\nAraceli\nAsheley\nAustin\nAvery\nAyesha\nBaby\nBrittnay\nBrittnie\nBrook\nBrynn\nCandyce\nCarey\nCassondra\nCassy\nCelena\nCelina\nChardae\nCharisse\nChimere\nChrissy\nCorrie\nCristy\nCrystle\nDakota\nDanae\nDanica\nDanyell\nDavina\nEbonee\nEleanor\nEliana\nElissa\nElsa\nEmilia\nEmilie\nFarah\nFrancheska\nFredricka\nGenna\nGisela\nHali\nIda\nIrma\nIvonne\nJacinta\nJacquelin\nJada\nJamee\nJamey\nJason\nJeannine\nJenae\nJeniffer\nJenilee\nJennette\nJeri\nJesenia\nJoleen\nJuana\nJulienne\nKandice\nKatia\nKatina\nKatlyn\nKay\nKeely\nKeren\nKevin\nKirstin\nLaquanda\nLatanya\nLatara\nLatrisha\nLayla\nLidia\nLindy\nLogan\nLouise\nLovely\nLucretia\nLynne\nMabel\nMallorie\nMarcie\nMari\nMaura\nMaxine\nMisti\nMyra\nNaomie\nNatali\nNoemi\nPhoebe\nPhylicia\nPorscha\nPriscila\nRaina\nRena\nRenata\nRiley\nRosalyn\nRoseanne\nRoxann\nShadae\nShakera\nShakita\nShanelle\nSharda\nSharina\nShaunte\nShawanna\nShemeka\nShequita\nSherika\nSherina\nShira\nShonte\nSommer\nStarr\nStephenie\nSteven\nTakiyah\nTamar\nTammie\nTaneisha\nTerica\nTerry\nTiffaney\nTrenise\nTristan\nTyisha\nVanna\nWesley\nYadira\nZoe\nAbbey\nAda\nAdria\nAida\nAkilah\nAlea\nAlesha\nAlfreda\nAlisia\nAlysha\nAndre\nAnika\nAnjelica\nAnnamarie\nAntonio\nApryl\nArica\nAshlyn\nAurora\nBreana\nBrielle\nCarlee\nChanelle\nChanning\nChante\nChaquita\nCharla\nClare\nClarice\nDallas\nDanika\nDarla\nDaryl\nDeena\nDonielle\nElsie\nEric\nFarren\nFatima\nFrankie\nGianna\nGiovanna\nGregory\nHazel\nHolley\nIesha\nIlana\nIvory\nJacinda\nJacquline\nJameka\nJamilah\nJan\nJaymie\nJayna\nJayne\nJeana\nJeanine\nJeanna\nJenelle\nJennafer\nJessic\nJovan\nJuliann\nJullian\nKacy\nKailey\nKamaria\nKarah\nKarly\nKarrie\nKasandra\nKasha\nKatelynn\nKeosha\nKerrie\nKesha\nKiana\nKiesha\nKindra\nKory\nKrysti\nLakiesha\nLashaundra\nLashera\nLatashia\nLateria\nLatesha\nLatora\nLatoyia\nLatricia\nLauran\nLaureen\nLeandra\nLilia\nLisandra\nLoreal\nLorrie\nMadelin\nMagan\nMallori\nMargot\nMarguerite\nMariel\nMarilee\nMark\nMaya\nMelaine\nMelina\nMelony\nMercy\nMilissa\nMitzi\nMonet\nNastassia\nNathaly\nNatisha\nNellie\nNia\nNicki\nNicolle\nNikia\nNoelia\nPriya\nQuanisha\nRamona\nRayna\nReba\nRosalie\nSequoia\nSerina\nShaday\nShalanda\nShanae\nShandi\nShane\nShaneika\nShanel\nShanese\nShaniqua\nShanon\nShanti\nShaunna\nShavonne\nShawanda\nShawnna\nShawntavia\nShawntay\nShelia\nShellie\nShemika\nSheneka\nSheree\nSherelle\nSiera\nSomer\nStar\nTacarra\nTakara\nTakeisha\nTalisa\nTamela\nTamisha\nTaneshia\nTegan\nTeneshia\nTerika\nTess\nTiarra\nTonie\nVera\nVickie\nWendi\nZandra\nJessica\nAshley\nAmanda\nJennifer\nBrittany\nStephanie\nSarah\nHeather\nDanielle\nMelissa\nTiffany\nNicole\nAmber\nChristina\nSamantha\nLauren\nMegan\nElizabeth\nMichelle\nRachel\nKimberly\nCrystal\nRebecca\nKelly\nLaura\nAmy\nVanessa\nSara\nKatherine\nShannon\nErica\nWhitney\nCourtney\nEmily\nAngela\nKristen\nKayla\nJamie\nMary\nAndrea\nErin\nVictoria\nLindsey\nChelsea\nChristine\nBrittney\nKristina\nLisa\nKatie\nAlicia\nJacqueline\nNatalie\nAllison\nAlexandra\nApril\nMonica\nLindsay\nKathryn\nKrystal\nJenna\nKristin\nNatasha\nPatricia\nMaria\nKendra\nJulie\nTara\nCaitlin\nBrandy\nErika\nBrandi\nCassandra\nCasey\nAnna\nDana\nKathleen\nDominique\nLatoya\nKatrina\nCynthia\nYesenia\nVeronica\nAlexis\nCatherine\nHolly\nAlyssa\nJasmine\nSabrina\nMeghan\nLeah\nLeslie\nRachael\nBrooke\nStacey\nDiana\nJulia\nCandace\nSandra\nAshlee\nCristina\nHannah\nKelli\nMorgan\nNichole\nJillian\nStacy\nFelicia\nEbony\nMelanie\nDesiree\nKelsey\nMeagan\nTabitha\nMallory\nBarbara\nMonique\nValerie\nAngelica\nMargaret\nSusan\nSasha\nKaren\nKara\nAlison\nCandice\nAlexandria\nNancy\nKrista\nSierra\nTamara\nTracy\nBethany\nPamela\nBritney\nJoanna\nAlisha\nTaylor\nMarissa\nTeresa\nCarrie\nGina\nJacquelyn\nRebekah\nRobin\nJaclyn\nMiranda\nCaroline\nCarolyn\nLinda\nAngel\nLacey\nPriscilla\nAna\nMelinda\nJordan\nAimee\nDenise\nJenny\nRenee\nMarie\nTina\nTonya\nVirginia\nCiara\nMisty\nRegina\nCarly\nCassie\nCindy\nGabrielle\nTheresa\nAshleigh\nAudrey\nDawn\nMichele\nDeanna\nLatasha\nSummer\nBriana\nJanay\nKristine\nKristy\nTatiana\nBrianna\nDeborah\nMolly\nAutumn\nBrenda\nJessie\nKasey\nNikita\nOlivia\nRaquel\nAdrienne\nDonna\nKristi\nTanya\nAmelia\nCharlene\nKatelyn\nToni\nSavannah\nSheena\nWendy\nChrista\nCarolina\nChristy\nColleen\nHaley\nKrystle\nKaitlin\nMeredith\nAnne\nCierra\nHeidi\nKari\nNina\nPaige\nSharon\nShawna\nSophia\nTasha\nAlexa\nShelby\nJocelyn\nNikki\nSade\nStefanie\nBonnie\nChantel\nJanet\nKelley\nChelsey\nJoy\nSuzanne\nAbigail\nCarla\nCarmen\nCheryl\nElise\nGrace\nKellie\nRobyn\nKeri\nAngelina\nAntoinette\nChristie\nCiera\nJaime\nJanelle\nBianca\nFrances\nGloria\nKeisha\nRandi\nBrittani\nEricka\nJade\nKaitlyn\nMartha\nMindy\nShaina\nTabatha\nAdriana\nCara\nClaudia\nRhonda\nShayla\nSheila\nAllyson\nAnastasia\nAshton\nBridget\nJeanette\nJustine\nKate\nFrancesca\nGabriela\nLydia\nRuth\nShana\nYolanda\nConstance\nJaimie\nRosa\nStaci\nCharlotte\nCortney\nKarla\nMercedes\nNathalie\nTrisha\nCharity\nLori\nMandy\nRachelle\nAnn\nAnnette\nEvelyn\nHillary\nKirsten\nMelody\nShanna\nAnita\nCarol\nKaley\nKarina\nKendall\nRochelle\nRoxanne\nShantel\nSylvia\nTammy\nDorothy\nEmma\nHelen\nHope\nNatalia\nPrecious\nRose\nJodi\nKristie\nTia\nAubrey\nCecilia\nEsther\nHayley\nKaty\nOctavia\nPaula\nStacie\nAriel\nAshely\nJena\nJoyce\nLyndsey\nMarisa\nNaomi\nTerri\nElena\nJill\nTaryn\nTraci\nAlyson\nChiquita\nDiane\nGabriella\nLacy\nMaggie\nShanika\nShirley\nTania\nTiara\nTierra\nTracey\nAyla\nCamille\nDestiny\nEva\nJuanita\nKerri\nLaurie\nSandy\nBeverly\nDebra\nElyse\nHilary\nJuliana\nLeigh\nMichael\nRyan\nBridgette\nDaniela\nEileen\nIsabel\nJohanna\nMadeline\nMia\nPatrice\nPrincess\nShayna\nShelly\nBelinda\nBrandie\nCarissa\nJana\nJoann\nLatisha\nMarilyn\nShauna\nSimone\nYessenia\nAshlie\nBeth\nJasmin\nJayme\nKayleigh\nMayra\nAlana\nAngie\nBobbi\nFaith\nKatharine\nKerry\nLoren\nMackenzie\nMadison\nMaegan\nMiriam\nNadia\nRita\nSherry\nTameka\nTiffani\nAnnie\nAshly\nChanning\nChristian\nKathy\nKaylee\nKrystina\nLakeisha\nShelley\nSonya\nYvette\nAudra\nBlair\nBreanna\nCaitlyn\nChanel\nChristen\nClaire\nDaisy\nEllen\nIndia\nIngrid\nJessika\nJoanne\nJudith\nLatonya\nMarlene\nNoelle\nVivian\nAlecia\nBrianne\nCori\nDaniella\nDarlene\nDevon\nDianna\nElisabeth\nHailey\nIris\nJane\nJanice\nLeila\nSherri\nSonia\nYvonne\nAlice\nAlina\nArielle\nChandra\nChasity\nCherie\nGuadalupe\nKaleigh\nKeshia\nLakesha\nLea\nMaribel\nRuby\nSavanna\nShameka\nTamika\nTanisha\nTricia\nValencia\nAbby\nAisha\nAlisa\nBailey\nCeleste\nChelsie\nChloe\nConnie\nElaine\nFarrah\nGiselle\nGwendolyn\nJackie\nJesenia\nJessenia\nJoelle\nLakeshia\nLara\nLena\nLeticia\nLourdes\nOlga\nSydney\nTiffanie\nChantal\nElisha\nJanine\nJenifer\nJudy\nKimberlee\nKira\nLesley\nLissette\nMarjorie\nMarquita\nNorma\nPaola\nShaneka\nAlaina\nAlejandra\nAlexia\nAlissa\nBetty\nCassidy\nCheyenne\nChristin\nJeannette\nJoan\nJulianne\nKali\nKenya\nKim\nLakisha\nLatoria\nMichaela\nPortia\nRacheal\nSerena\nStephany\nAdrian\nAmie\nAnthony\nAriana\nBillie\nBlanca\nBrenna\nCelia\nClara\nDaphne\nDavid\nDeidre\nGeorgia\nKyla\nKyle\nLakendra\nLaurel\nLeanne\nLillian\nNakita\nRoxana\nSally\nSelina\nShalonda\nShari\nAlex\nAngelique\nArlene\nBrigitte\nCallie\nCaryn\nChantelle\nClarissa\nCorey\nElisa\nJacklyn\nJami\nJanette\nJerrica\nJoshua\nKacie\nLarissa\nLatrice\nLorena\nLynette\nLynn\nMarina\nMarisol\nNora\nParis\nRacquel\nRobert\nSofia\nTessa\nAileen\nAlysia\nBecky\nChristal\nChristopher\nChrystal\nDara\nDeana\nDomonique\nFallon\nFarah\nFawn\nFelisha\nFrancis\nGenesis\nHollie\nIrene\nJennie\nJoseph\nKacey\nKalyn\nKarissa\nKristyn\nLashonda\nLisette\nLorraine\nLuz\nLyndsay\nLynsey\nMarsha\nNoel\nPorsha\nRoberta\nSheri\nSheryl\nSusana\nTiana\nTyler\nWanda\nAlessandra\nAntonia\nAshlea\nBobbie\nBritni\nBrittaney\nCaridad\nCayla\nDaniel\nDannielle\nDesirae\nDianne\nElissa\nFabiola\nGlenda\nJazmine\nJeanne\nJosie\nJustina\nKandice\nKarli\nKassandra\nLeann\nLee\nLiliana\nMagan\nMandi\nMarcia\nMaritza\nMaryann\nMeaghan\nNadine\nNicolette\nSamatha\nShantell\nShantrell\nTalia\nTiera\nTori\nTyesha\nValeria\nWilliam\nYasmin\nAdrianna\nAdrianne\nAlexander\nAli\nAlyse\nAlysha\nAmi\nBetsy\nCamila\nCheri\nCristal\nDebbie\nDina\nElaina\nFranchesca\nGenevieve\nGinger\nIvy\nJanae\nJanie\nJanna\nKailey\nKrystin\nKylie\nLadonna\nLashawn\nLinsey\nLora\nMallorie\nMaureen\nMelisa\nMonika\nPeggy\nRichelle\nRosanna\nShakira\nShantoria\nSharonda\nShatavia\nSherell\nSonja\nStevie\nTosha\nTracie\nTrista\nAlesha\nAngeline\nAsha\nBeatrice\nBernadette\nBritany\nBrittanie\nCameron\nCandis\nCari\nCasandra\nCody\nCristy\nDanna\nDemetria\nDevin\nDoris\nEboni\nEden\nEmely\nFatima\nJamila\nJeannie\nJesica\nJessi\nJosephine\nKalie\nKati\nKaycee\nLana\nLaquita\nLatia\nLawanda\nLeandra\nLeanna\nLoretta\nLynnette\nMarcela\nMariah\nMarla\nNoemi\nShakera\nShanay\nShanta\nShanteria\nSilvia\nSommer\nStefani\nTrina\nAda\nAllie\nAlycia\nAnnemarie\nAntionette\nAshlyn\nBrittni\nCassondra\nCharmaine\nChristi\nCorinne\nDanyelle\nDenisha\nDiamond\nDominque\nGillian\nJanel\nJanell\nJanessa\nJazmin\nJeanna\nJuana\nJuliet\nJustin\nKasie\nKatelynn\nKatheryn\nKathrine\nKelsie\nKera\nKristal\nKyra\nLarhonda\nLatricia\nLina\nLucy\nMartina\nMatthew\nMilagros\nNatacha\nReva\nRosemary\nSantana\nSarina\nShakia\nShanon\nShante\nShantelle\nShaquita\nShardae\nSharika\nShawn\nSophie\nTanesha\nTangela\nAnjelica\nAshanti\nAsia\nAubree\nBaby\nBeatriz\nCarley\nCarli\nCarole\nCasie\nCatrina\nCherish\nDallas\nDaniele\nDarline\nDeandra\nDelia\nDesire\nDolores\nEdith\nEliza\nEsperanza\nFelecia\nGeorgina\nGeraldine\nGretchen\nHolley\nIda\nIleana\nJaqueline\nJayne\nJean\nJeri\nJesse\nJodie\nKaylie\nKiera\nKierra\nKourtney\nLaquisha\nLatavia\nLatosha\nLucia\nMarcy\nMarianne\nMattie\nMicaela\nMona\nPauline\nRamona\nRebeca\nRoxanna\nSarai\nShanice\nShatara\nShea\nStephani\nTami\nTaneshia\nTarah\nTashara\nTeri\nTerry\nUrsula\nVickie\nVicky\nAlanna\nAnais\nAndria\nAriane\nBlake\nBrandee\nBrett\nBria\nBritteny\nBrittnee\nBrittnie\nCarina\nCarlee\nChante\nCorina\nCorrine\nCory\nDanelle\nDani\nDena\nGianna\nGrecia\nHanna\nHelena\nHilda\nJackeline\nJames\nJeanine\nJesseca\nJody\nJohn\nJulianna\nKaci\nKacy\nKarin\nKarly\nKassie\nKaylyn\nKeely\nKenisha\nKimberley\nKristan\nKrizia\nKrysten\nKymberly\nLaquanda\nLashawnda\nLashay\nLatara\nLenora\nLizette\nLucille\nLucinda\nLuisa\nMadelyn\nMaranda\nMarcella\nMargie\nMargo\nMarian\nMellissa\nNakia\nNicholas\nNicolle\nNiki\nPenny\nPhylicia\nPorscha\nRosalyn\nRosemarie\nSable\nScarlett\nShakita\nShamika\nShandra\nShanita\nShaquanda\nShenika\nSiobhan\nSkylar\nStephenie\nSusannah\nSuzette\nSuzie\nTabetha\nTatyana\nTempestt\nVicki\nAbbie\nAleshia\nAmaris\nAngelika\nAthena\nAva\nBarbie\nBertha\nBrandon\nBrielle\nCathy\nCecelia\nCecily\nCharli\nChelsy\nCherise\nChristiana\nCora\nCorie\nCristine\nDalia\nDamaris\nDania\nDanyell\nDavina\nDeidra\nDeirdre\nDenice\nDenielle\nEbone\nEmilie\nEryn\nEugenia\nFarren\nGabriel\nGeneva\nGiovanna\nHali\nHaylee\nHazel\nHolli\nIvonne\nJada\nJanina\nJeanie\nJenise\nJeree\nJerica\nJonathan\nJulissa\nKala\nKandace\nKandi\nKarie\nKaryn\nKathryne\nKatia\nKatrice\nKeara\nKendal\nKerline\nKia\nKiara\nKirby\nKirstie\nKrysta\nLakita\nLaporsha\nLashana\nLayla\nLeeann\nLeighann\nLiana\nLogan\nLynda\nMabel\nMadeleine\nMagen\nMariana\nMarisela\nMarkita\nMarta\nMaura\nMaya\nMeghann\nMindi\nMollie\nMoriah\nMyesha\nNikia\nNikole\nPaulette\nRashonda\nRaychel\nRayna\nRenae\nSean\nSelena\nShakeria\nShantavia\nShantia\nSharhonda\nSharita\nSheree\nSherika\nSherrie\nSondra\nStephaine\nSteven\nSusie\nTamra\nTana\nTawana\nTenisha\nTequila\nTerrika\nThomas\nTianna\nTomeka\nTory\nValentina\nYasmine\nZoe\nAaron\nAdriane\nAlayna\nAlise\nAlma\nAlyce\nAmberly\nAnabel\nAndrew\nAnisha\nAnsley\nAshli\nBernice\nBreanne\nBridgett\nBrittnay\nCandyce\nCarlos\nCathleen\nCharis\nCharline\nCherrelle\nCherri\nClare\nCodi\nColby\nCoretta\nCristen\nDanae\nDarcy\nDayna\nDeena\nDeloris\nDenisse\nDestini\nDiandra\nDixie\nDominica\nElyssa\nEmilee\nEsmeralda\nEunice\nEvette\nFalon\nFlorence\nGenna\nHalley\nIliana\nIsis\nJacinda\nJaimee\nJaleesa\nJamesha\nJeana\nJeniffer\nJoi\nJolene\nJoni\nKaela\nKandis\nKatlin\nKay\nKayce\nKeila\nKenyatta\nKeosha\nKesha\nKhadija\nKori\nKristian\nLaci\nLacie\nLeia\nLeigha\nLeilani\nLeona\nLeondra\nLidia\nLorin\nLorna\nMagaly\nMagda\nMalissa\nMara\nMarci\nMarguerite\nMarion\nMarquetta\nMeggan\nMelani\nMelodie\nMicah\nNatesha\nNatosha\nNichelle\nPatsy\nPerla\nPetra\nPorsche\nRae\nRaven\nReba\nRegan\nRegine\nRhiannon\nRonisha\nRosalinda\nRosita\nSadie\nShandreka\nShanell\nShareka\nSharell\nSharisse\nShaunna\nShawanda\nShawanna\nShontae\nSiera\nSkye\nStephane\nStephania\nSunny\nSusanna\nTakia\nTaneisha\nTanika\nTeaira\nTempest\nTerra\nTerrica\nTierney\nTrinity\nTyeisha\nValarie\nVanna\nVannessa\nVenessa\nViviana\nWhittney\nYazmin\nZena\nAbbey\nAlexandrea\nAlia\nAmbria\nAngelena\nAnnika\nAnnmarie\nAntonette\nArianna\nArtavia\nAsheley\nAstrid\nAustin\nAyesha\nBonita\nBreana\nBrian\nBrigette\nBrittiany\nBryan\nBryanna\nCalla\nCamelia\nCandi\nCandy\nCaressa\nCarri\nChanda\nChanelle\nChantell\nChara\nCharise\nCharissa\nCharla\nCharlie\nChelsi\nCherelle\nCoral\nCrystall\nDalila\nDaniell\nDanni\nDanyel\nDarryl\nDavida\nDayana\nDebora\nDedra\nDelana\nDelilah\nDella\nDoreen\nDusty\nEdna\nElana\nEleanor\nElla\nElsa\nElvia\nEmmanuela\nEric\nErinn\nEvan\nEve\nFaye\nFrancheska\nFrancine\nGail\nGayle\nGeorgette\nGia\nGisselle\nGladys\nGraciela\nGriselda\nHailee\nHallie\nIesha\nIlana\nIman\nIrma\nIsabella\nIsabelle\nIvette\nIvey\nJaneen\nJanika\nJannet\nJaquita\nJason\nJaymie\nJayna\nJenay\nJenee\nJenelle\nJeremy\nJerika\nJewel\nJo\nJoana\nJoanie\nJohnna\nJuliann\nJune\nKaila\nKaitlynn\nKalee\nKaleena\nKalli\nKallie\nKanisha\nKarlie\nKasandra\nKatelin\nKatey\nKatina\nKatlyn\nKayley\nKelcie\nKenia\nKenyetta\nKevin\nKiley\nKimber\nKiri\nKisha\nKrystyna\nKylee\nKymberli\nLaila\nLaquinta\nLashanda\nLashara\nLatonia\nLatoyia\nLauryn\nLeana\nLeatrice\nLetitia\nLia\nLilia\nLily\nLois\nLoni\nLuciana\nMakenzie\nMalinda\nMarcus\nMaricela\nMario\nMarkia\nMarlena\nMarybeth\nMeagen\nMechelle\nMelina\nMerry\nMichell\nMina\nMiracle\nMisti\nMuriel\nMyranda\nNatashia\nNelly\nNichol\nNicki\nNisha\nPatience\nPatrick\nPatrisha\nPhyllis\nPilar\nRashunda\nRena\nReyna\nRoseanna\nRoshanda\nRosie\nRyann\nSari\nScott\nSeana\nSebrina\nSequoia\nShakari\nShanae\nShandi\nShani\nShantay\nShantrel\nShara\nSharde\nSharee\nShatoya\nShaunta\nShaunte\nShawnta\nShawntel\nShella\nShellie\nShena\nShenna\nSherley\nSherrell\nShonta\nSkyler\nStephen\nTakara\nTamera\nTamesha\nTammi\nTawanda\nTera\nThelma\nTiffney\nTimothy\nTonia\nTonisha\nTristan\nTyra\nVanesa\nXiomara\nYaritza\nZaneta\nAshley\nJessica\nAmanda\nBrittany\nJennifer\nStephanie\nSarah\nNicole\nTiffany\nLauren\nHeather\nAmber\nSamantha\nMelissa\nDanielle\nChristina\nElizabeth\nMegan\nMichelle\nRachel\nCourtney\nKimberly\nCrystal\nRebecca\nKayla\nErica\nKatherine\nChelsea\nLaura\nEmily\nSara\nKelly\nAlexandra\nAmy\nBrittney\nAngela\nVanessa\nVictoria\nAndrea\nKristen\nJamie\nShannon\nJasmine\nMary\nCaitlin\nChristine\nErin\nLindsey\nWhitney\nNatalie\nKristin\nAlicia\nKatie\nJacqueline\nKristina\nLisa\nAllison\nKathryn\nMaria\nKrystal\nAlyssa\nNatasha\nLindsay\nPatricia\nCatherine\nTara\nApril\nCassandra\nMonica\nJenna\nAnna\nAlexis\nErika\nBrandy\nKathleen\nVeronica\nJulie\nKendra\nDana\nBrandi\nMorgan\nBianca\nLeah\nHolly\nCasey\nHannah\nKelsey\nCynthia\nBrooke\nFelicia\nLatoya\nDiana\nCristina\nRachael\nSabrina\nDominique\nKatrina\nMarissa\nJulia\nLeslie\nKara\nMeghan\nValerie\nNichole\nMelanie\nSandra\nBritney\nKatelyn\nDesiree\nJillian\nCandace\nKaitlin\nKaren\nMeagan\nPriscilla\nBarbara\nCandice\nCaroline\nKaitlyn\nAlexandria\nStacey\nStacy\nAshlee\nKrista\nMonique\nGina\nTaylor\nBethany\nMargaret\nSierra\nCarrie\nMelinda\nTabitha\nAngelica\nAlison\nOlivia\nEbony\nJordan\nJoanna\nRobin\nSasha\nBriana\nDeanna\nAdriana\nDenise\nJacquelyn\nAngel\nGabrielle\nTamara\nAutumn\nLacey\nRebekah\nCarolyn\nMiranda\nCarly\nBrianna\nJaclyn\nMallory\nAudrey\nYesenia\nAlisha\nCarolina\nLinda\nMarie\nVirginia\nHaley\nSusan\nAna\nKelli\nKristi\nKristy\nNancy\nRenee\nTracy\nTeresa\nTiara\nTina\nCarla\nCiara\nGrace\nKelley\nMichele\nChelsey\nKarina\nTanya\nChrista\nChristy\nRaquel\nPamela\nTheresa\nPaige\nAshleigh\nCarmen\nEricka\nLatasha\nMolly\nSavannah\nSummer\nBrenda\nMartha\nTonya\nAbigail\nKristine\nMeredith\nShaina\nCassie\nJanelle\nNikki\nPrecious\nRegina\nKari\nRoxanne\nTatiana\nAngelina\nAriel\nJenny\nMisty\nSophia\nJoy\nKrystle\nHillary\nRobyn\nBridget\nCindy\nKasey\nSharon\nToni\nBonnie\nElise\nJustine\nShawna\nAimee\nBrittani\nCara\nChristie\nClaudia\nDonna\nJaime\nMelody\nNina\nSheena\nDawn\nEvelyn\nKaley\nMarisa\nJessie\nJocelyn\nMercedes\nShelby\nAlexa\nDeborah\nNaomi\nSimone\nSuzanne\nTabatha\nYolanda\nAdrienne\nCharlene\nHeidi\nKellie\nRuth\nShanice\nTasha\nAnne\nCortney\nLydia\nRachelle\nStefanie\nCaitlyn\nColleen\nEmma\nGloria\nShana\nWendy\nFrances\nLori\nCiera\nDiane\nYessenia\nAnn\nCharity\nHope\nJanet\nJeanette\nUnknown\nAllyson\nChantel\nCheryl\nDestiny\nJade\nJanay\nJessenia\nKate\nNatalia\nNathalie\nRosa\nCharlotte\nMadison\nAnastasia\nAntoinette\nCierra\nEllen\nJanice\nKeri\nKristie\nTierra\nAmelia\nGabriela\nMindy\nNikita\nRhonda\nRose\nAlana\nArielle\nBreanna\nCecilia\nKendall\nNadia\nShayla\nSheila\nSonia\nBrandie\nBrianne\nCarissa\nElyse\nJena\nJill\nKirsten\nPaula\nSade\nSydney\nSylvia\nTia\nTiffani\nAshton\nCarol\nJaimie\nKaylee\nKayleigh\nLeigh\nLissette\nMaggie\nMarilyn\nRandi\nShantel\nSonya\nTaryn\nDaniella\nEsther\nKatharine\nLakeisha\nMandy\nTrisha\nVivian\nAnita\nBeth\nChasity\nDorothy\nGiselle\nJaleesa\nKarla\nPrincess\nShayna\nStaci\nTammy\nAlice\nAlyson\nCamille\nChristin\nDaniela\nElisabeth\nFrancesca\nHayley\nKerri\nKerry\nKylie\nOctavia\nTraci\nAriana\nChelsie\nClaire\nHilary\nJodi\nJohanna\nLatonya\nPaola\nPatrice\nRochelle\nShanna\nTanisha\nTerri\nAnnette\nDaisy\nEileen\nFaith\nGabriella\nJana\nLesley\nLyndsey\nStephany\nTiffanie\nYvette\nAlexia\nAubrey\nBelinda\nBridgette\nChristian\nDebra\nElaine\nElena\nElisa\nLatisha\nJudy\nSherry\nTamika\nBrittni\nClarissa\nConstance\nIrene\nJoanne\nMia\nNadine\nSally\nShauna\nShirley\nTania\nAlisa\nAlissa\nAshely\nAshlie\nAshly\nBailey\nChristen\nJasmin\nJudith\nKeisha\nLacy\nMadeline\nMaritza\nMichael\nSandy\nBlair\nCayla\nCherie\nChloe\nDaphne\nDevin\nEva\nJerrica\nLeanne\nAlejandra\nAlexander\nAngie\nAnnie\nAshli\nChantal\nCori\nJami\nJuliana\nKenya\nKiara\nLara\nLeticia\nMaribel\nMarjorie\nMeaghan\nNoelle\nOlga\nRyan\nStacie\nAbby\nAileen\nBrittny\nDarlene\nGenesis\nGenevieve\nIris\nJacklyn\nJalisa\nJayme\nJosephine\nJuanita\nKala\nKaleigh\nKassandra\nKristyn\nLea\nLillian\nMackenzie\nMarlene\nShelley\nTameka\nTracey\nAlycia\nBeverly\nChanel\nHelen\nHollie\nIndia\nKira\nKourtney\nLeann\nLorraine\nMaegan\nMiriam\nPorsha\nRuby\nAdrian\nAlaina\nAntonia\nBeatriz\nBetty\nBillie\nCallie\nConnie\nDemetria\nDiamond\nIsabel\nJazmine\nKali\nKatelin\nKyla\nLoren\nMayra\nShakira\nShanika\nValencia\nAdrianna\nAlessandra\nAlysha\nBeatrice\nBobbie\nChristi\nJanae\nJoyce\nJustina\nKaila\nKathy\nKatlyn\nKierra\nKrysten\nLatrice\nLourdes\nLynn\nNicolette\nNorma\nPortia\nRacheal\nRita\nShelly\nTricia\nWhitley\nYvonne\nAlyse\nAngelique\nAudra\nAyla\nChiquita\nDeandra\nDevon\nDomonique\nEboni\nJane\nJanine\nJenifer\nJoshua\nKacie\nKailey\nKimber\nKimberlee\nLashonda\nLeanna\nMaureen\nShari\nTiana\nAdrianne\nAja\nCameron\nCarley\nCecily\nChrystal\nDiandra\nDina\nDominque\nEsmeralda\nJackie\nJazmin\nJennie\nKathrine\nKiera\nLaurie\nLena\nLorena\nMagen\nMargarita\nMariah\nMariana\nMarina\nMichaela\nRaven\nRosemary\nRoxanna\nSelina\nShalonda\nShameka\nShamika\nShante\nSilvia\nSofia\nAlanna\nAlesha\nAlina\nBrenna\nBritni\nChantelle\nCheyenne\nClara\nCorey\nCorinne\nDoris\nEleanor\nEmilie\nGlenda\nGuadalupe\nJanel\nJanie\nJean\nJulianna\nJuliette\nKasie\nKristal\nKrysta\nKrystina\nLakendra\nLaurel\nLeila\nLynette\nMarcella\nMarcia\nSerena\nShaneka\nSheri\nStefani\nTaja\nYasmin\nAisha\nAmie\nAnnmarie\nBlanca\nBritany\nCari\nCeleste\nCelia\nChristopher\nDianna\nFallon\nGeneva\nGeorgia\nHailey\nHanna\nJanell\nJerica\nJessika\nJoann\nKalyn\nKandice\nKarissa\nKaylin\nKelsie\nKimberley\nKristian\nKyra\nLuz\nMarisol\nNoel\nRebeca\nSavanna\nSuzette\nValeria\nWanda\nAlex\nAlysia\nChandra\nCharmaine\nDaniel\nEden\nElisha\nEryn\nFatima\nIrma\nJanna\nJeanna\nJeannie\nJulianne\nKatelynn\nKeshia\nKirstin\nLakesha\nLana\nLaquanda\nLee\nLeighann\nLinsey\nLiza\nLogan\nLucy\nMandi\nMarianne\nMelisa\nMyra\nNataly\nRaina\nRosalinda\nShatara\nSonja\nSusana\nTalia\nUrsula\nAlesia\nAlexandrea\nAli\nArlene\nAshlyn\nAsia\nBetsy\nBrittaney\nCasandra\nCassidy\nCatalina\nCecelia\nChristiana\nDebbie\nEstefania\nGeraldine\nHali\nKacey\nKaela\nKalee\nKandis\nKaty\nKaycee\nKyle\nLacie\nLakeshia\nLatoria\nLeeann\nLyndsay\nMarquita\nPhylicia\nReva\nSamatha\nTanesha\nTerra\nTiera\nTosha\nBernadette\nChanning\nCody\nCristal\nDania\nDavina\nDayna\nDeidra\nDeidre\nDelia\nDena\nElyssa\nGabriel\nGwendolyn\nIleana\nIngrid\nIvy\nJanessa\nJesica\nJuana\nJulissa\nKaci\nKarly\nKatina\nKatlin\nKaylyn\nKrystin\nLarissa\nLashanda\nLatavia\nLiliana\nLily\nLizette\nLucia\nMarlena\nMaya\nMonika\nNora\nPeggy\nRacquel\nSelena\nSharonda\nSherri\nSusanna\nTalisha\nTera\nTessa\nTyler\nVenessa\nAlma\nAngeline\nAurora\nBreanne\nBridgett\nBrigitte\nBrittanie\nBrittnay\nCamila\nCarina\nCatrina\nCherish\nDara\nEdith\nFarrah\nGeorgina\nGladys\nIsabella\nJanette\nJoan\nJolene\nJonathan\nJuliet\nKarrie\nKasi\nKaylynn\nKim\nLaquita\nLayla\nLisette\nLizbeth\nMalinda\nMara\nMaranda\nMari\nMckenzie\nMelina\nMiracle\nPorsche\nRaechel\nRonda\nRosalie\nScarlett\nShanda\nShantell\nShaquita\nShenika\nSheree\nShira\nStephaine\nTarah\nTenisha\nTisha\nTracie\nTrinity\nVania\nVicky\nAbbey\nAlecia\nAllie\nAlysa\nAndrew\nAntionette\nAshlea\nAthena\nBrittnee\nCandy\nCaryn\nCasie\nChantale\nChastity\nChristal\nCornelia\nCory\nCristy\nDanyel\nDarcy\nElaina\nEunice\nFrancisca\nGinger\nHolley\nIvette\nJacquelynn\nJalessa\nJames\nJamesha\nJammie\nJoana\nJoelle\nKacy\nKaterina\nKenia\nKerrie\nKylee\nLaporsha\nLaquisha\nLashawn\nLatosha\nLeandra\nLia\nLina\nLoretta\nLucinda\nLynda\nLynnette\nMaricela\nMariel\nMarisela\nMarta\nMartina\nMartine\nMeghann\nNatacha\nPorscha\nRhiannon\nRichelle\nRobert\nSamone\nSarina\nShakia\nShanell\nShaniece\nShanteria\nShawanda\nShea\nShelia\nSherika\nSiobhan\nSommer\nSophie\nStevie\nSusannah\nTakara\nTerrica\nTerry\nTiarra\nTonisha\nTori\nTrista\nWendi\nAleshia\nAlishia\nAmbar\nAmberly\nAnabel\nAnais\nAnjelica\nAnsley\nAnthony\nAsha\nAshlynn\nAvery\nBobbi\nBrandee\nCali\nCarey\nCaridad\nCarli\nCarole\nCathy\nCelina\nChantell\nChaya\nCherelle\nCorina\nCorinna\nCorrie\nDeana\nDestini\nElissa\nElla\nEmilee\nFabiola\nFarah\nGretchen\nHilda\nHolli\nIlana\nJackeline\nJamila\nJanee\nJeniffer\nJesenia\nJody\nJohnna\nJosie\nKarli\nKasandra\nKatheryn\nKaylie\nKrizia\nKrystine\nLakia\nLatoyia\nLauryn\nLora\nMarcie\nMarcy\nMarkesha\nMichell\nMildred\nMollie\nNichelle\nNikole\nNoemi\nPerla\nPricilla\nQuanisha\nRegan\nReina\nRenae\nRoberta\nRosemarie\nRosie\nSantana\nSarai\nShakeria\nShamara\nShantoria\nSheryl\nSunny\nTaneisha\nTangela\nTeri\nTerrie\nTiffini\nTimothy\nTrina\nViola\nViviana\nYamile\nYanira\nYasmine\nAlia\nAllyssa\nAmi\nAnnemarie\nArianna\nBelen\nBlake\nBrandice\nBrandon\nBreann\nBrittnie\nCandi\nCandis\nCassi\nChanda\nChanell\nChante\nChaquita\nClarice\nDamaris\nDanica\nDanika\nDeanne\nDeja\nDelores\nDenisha\nDestinee\nDianne\nDonielle\nElana\nEmerald\nEugenia\nFlor\nFlorence\nGillian\nGuerline\nHarmony\nJamee\nJannie\nJaquelyn\nJeannette\nJenniffer\nJo\nJohn\nJoni\nJonna\nKaryn\nKatarina\nKatey\nKatlynn\nKaylan\nKaylen\nKeely\nKelcie\nKelsi\nKenisha\nKenyatta\nKia\nKiersten\nKiley\nKirby\nKori\nKristan\nLakisha\nLeilani\nLiana\nLillie\nLilly\nLiz\nLucretia\nLuisa\nLynsey\nMargie\nMargo\nMarion\nMarsha\nMaxine\nMerissa\nMicaela\nMilagros\nNakita\nNastassia\nPaulette\nPhoebe\nReba\nRene\nRocio\nRonni\nRosanna\nSable\nShaneice\nShanelle\nShanta\nShantae\nShantal\nShantavia\nShantelle\nShantia\nShardae\nShatavia\nShatoya\nShaunte\nShawn\nShekinah\nShera\nSherita\nShonda\nSimona\nSondra\nStarla\nStarr\nStephani\nStephenie\nStormy\nSusie\nTacara\nTakia\nTamar\nTamela\nTamesha\nTawana\nThea\nAbbie\nAda\nAddie\nAlena\nAlyssia\nAmethyst\nAndria\nAnya\nAraceli\nAshanti\nAshlei\nAustin\nAyesha\nBecky\nBernice\nBertha\nBrie\nBritnee\nBritny\nBryanna\nCandance\nCandra\nCathryn\nChanelle\nChannel\nChanta\nCheyanne\nChiara\nCorie\nCourtnie\nCristen\nCristin\nCristine\nDanette\nDaniele\nDannielle\nDarby\nDeondra\nDionne\nDora\nEbonie\nEleni\nEliza\nElsa\nElsie\nEmber\nEmilia\nFabienne\nFelecia\nFrankie\nGail\nGenna\nGiovanna\nGrecia\nHaydee\nHaylee\nIda\nIsis\nIvonne\nJacquelin\nJaimee\nJanis\nJaqueline\nJeannine\nJeri\nJesika\nJesse\nJewel\nJoia\nKathlyn\nKatiana\nKattie\nKeandra\nKelci\nKeli\nKeyanna\nLaquesha\nLarhonda\nLatanya\nLatesha\nLeona\nLetitia\nLilia\nLouise\nMadelyn\nMagdalena\nMarah\nMarcela\nMarguita\nMarian\nMaricruz\nMariela\nMarkita\nMarla\nMarlee\nMarline\nMaryann\nMaryanne\nMatthew\nMattie\nMellissa\nMelyssa\nMicah\nMiesha\nMontana\nNellie\nNicola\nNicolle\nNiki\nNikkita\nNoelia\nPauline\nPenny\nQuintina\nRaisa\nRenita\nReyna\nRosalyn\nRosetta\nSadie\nSapphire\nShae\nShakendra\nShakita\nShanae\nShanon\nSharita\nSharmaine\nShaunta\nSherell\nSheria\nSherrell\nSidney\nSirena\nStorm\nTalisa\nTami\nTamia\nTarra\nTawanna\nTiffaney\nVanity\nVicki\nAleisha\nAline\nAlise\nAlisia\nAlixandra\nAnisha\nAnnabel\nAnnamarie\nAntwanette\nAracely\nAubree\nAubri\nAura\nBelkis\nBianka\nBlaire\nBree\nBritani\nBritnie\nBryana\nCalandra\nCally\nCaren\nCasi\nCassondra\nCathleen\nCaylee\nCharisse\nChassity\nChelsa\nChelsi\nCheri\nCherise\nCherry\nChristel\nCiarra\nClare\nColby\nConsuelo\nCora\nCoral\nCorrine\nCrystle\nDakota\nDalila\nDallas\nDanae\nDasha\nDavid\nDavida\nDelilah\nDesirae\nDiondra\nDoreen\nElicia\nEric\nEssence\nEvette\nFalon\nFranchesca\nGiana\nGisselle\nGrisel\nIbis\nInfant\nJacinda\nJada\nJalissa\nJazma\nJeanie\nJeanine\nJeanne\nJelisa\nJenae\nJenee\nJenelle\nJeremy\nJerika\nJessi\nJessyca\nJodie\nJohana\nJoi\nJoleen\nJoselyn\nJoseph\nJustin\nKaitlynn\nKami\nKamilah\nKamisha\nKandace\nKarie\nKarin\nKassie\nKatherin\nKati\nKatia\nKayce\nKayleen\nKayli\nKendal\nKeondra\nKevin\nKeyonna\nKiana\nKiran\nKirstie\nKisha\nLaci\nLadonna\nLakenya\nLakiesha\nLani\nLaquinta\nLaronda\nLashay\nLateshia\nLatrina\nLawanda\nLeana\nLeigha\nLeighanna\nLenora\nLeslee\nLidia\nLindy\nLolita\nLoreal\nLorna\nMadeleine\nMagaly\nMagan\nMalissa\nMallorie\nMalorie\nManda\nMarchelle\nMarci\nMarkie\nMarnie\nMarti\nMarybeth\nMechelle\nMeighan\nMikaela\nMilagro\nMirna\nMissy\nMisti\nMoriah\nNakisha\nNathaly\nNekia\nNiccole\nNicholas\nNikkia\nOprah\nPatsy\nPorcha\nRachal\nRamona\nRandee\nRashonda\nRayna\nRebbecca\nRenea\nRichard\nRomina\nRosalind\nRoseanne\nRossana\nRoxana\nSaundra\nSavanah\nSebrina\nSerenity\nShakevia\nShalanda\nShanay\nShanea\nShantrel\nShantrell\nShareka\nSharell\nSharice\nSharika\nSharnice\nShawanna\nShawnta\nShawntavia\nShay\nShelbi\nSherley\nSherrie\nSiedah\nSolana\nSoraya\nStella\nStephania\nSuzanna\nTacarra\nTamekia\nTammi\nTamra\nTaneshia\nTanika\nTashika\nTawny\nTeal\nTegan\nTerrell\nTess\nTianna\nTierney\nTory\nTravis\nTristan\nValarie\nValentina\nVanesa\nVickie\nXiomara\nYalonda\nYanelys\nZana\nAshley\nJessica\nBrittany\nAmanda\nStephanie\nJennifer\nSarah\nSamantha\nLauren\nTiffany\nHeather\nAmber\nNicole\nChristina\nMegan\nElizabeth\nDanielle\nMelissa\nMichelle\nRachel\nKayla\nChelsea\nCourtney\nRebecca\nCrystal\nKatherine\nKimberly\nEmily\nJasmine\nAlexandra\nBrittney\nSara\nErica\nVictoria\nLaura\nKristen\nKelly\nAndrea\nMary\nVanessa\nAmy\nLindsey\nKristin\nJamie\nCaitlin\nKristina\nShannon\nChristine\nNatalie\nAngela\nErin\nAlicia\nAlyssa\nLisa\nKatie\nMaria\nWhitney\nKelsey\nCassandra\nJacqueline\nKrystal\nAllison\nKathryn\nApril\nCatherine\nAlexis\nTara\nAnna\nBianca\nPatricia\nMonica\nJordan\nLindsay\nKiara\nMorgan\nHannah\nTaylor\nNatasha\nErika\nVeronica\nBrooke\nHolly\nMarissa\nCynthia\nBrandi\nAlexandria\nJenna\nKathleen\nLeah\nBritney\nCristina\nKatrina\nSabrina\nDiana\nJulie\nBrandy\nFelicia\nRachael\nCasey\nBrianna\nMelanie\nMeagan\nMeghan\nKara\nKatelyn\nLatoya\nDana\nGabrielle\nKaitlyn\nSandra\nKaitlin\nDesiree\nKendra\nCaroline\nJulia\nOlivia\nCandace\nJillian\nLeslie\nAngelica\nBarbara\nAshlee\nDeanna\nPaige\nValerie\nKaren\nJaclyn\nMargaret\nSierra\nAdriana\nMonique\nCandice\nEbony\nTabitha\nAlisha\nGina\nStacey\nDenise\nSasha\nBethany\nNichole\nAna\nAngel\nMiranda\nChelsey\nKrista\nPriscilla\nRebekah\nBriana\nCarolina\nMallory\nTiara\nDominique\nAlexa\nJoanna\nLinda\nMolly\nRobin\nMelinda\nArielle\nCarrie\nAbigail\nKelli\nTamara\nAlison\nClaudia\nSavannah\nYesenia\nHaley\nKarina\nLacey\nNancy\nMercedes\nCarly\nCarolyn\nJacquelyn\nGrace\nAudrey\nKristine\nRenee\nTracy\nCindy\nMarie\nSummer\nAutumn\nKasey\nMichele\nCaitlyn\nKari\nPamela\nStacy\nVirginia\nSusan\nCiara\nDawn\nAriel\nRaquel\nAshleigh\nGabriela\nNadia\nAmelia\nJade\nKellie\nMadison\nBrittani\nJanelle\nKristi\nNatalia\nCierra\nRegina\nSharon\nShelby\nNina\nTatiana\nWendy\nDeborah\nKylie\nNikki\nRosa\nTina\nCassie\nCortney\nKirsten\nMeredith\nAshton\nChristy\nJoy\nKaley\nKaylee\nMarilyn\nMisty\nShawna\nStefanie\nBrenda\nHeidi\nLydia\nSophia\nSydney\nAngelina\nAnne\nBreanna\nCharlotte\nColleen\nKristy\nMartha\nTheresa\nYolanda\nChloe\nJenny\nRose\nDestiny\nCara\nEvelyn\nRuth\nAimee\nHillary\nTeresa\nAntoinette\nBridget\nCheryl\nDaniela\nKrystle\nToni\nBailey\nCarmen\nChristie\nJaleesa\nPrecious\nCarol\nCharlene\nJanet\nJasmin\nKristie\nMelody\nRobyn\nSandy\nDonna\nEmma\nGabriella\nTasha\nLillian\nNathalie\nTanya\nAdrianna\nAllyson\nEsther\nHelen\nHilary\nJessie\nRoxanne\nSimone\nSuzanne\nCarla\nFrances\nGloria\nLatasha\nMadeline\nSheena\nStaci\nTabatha\nTonya\nAnastasia\nChantel\nClaire\nElaine\nJustine\nLori\nMarisa\nShaina\nSylvia\nTia\nAdrienne\nBritni\nDiane\nHope\nJaime\nJeanette\nKala\nKarla\nKeri\nMeaghan\nShana\nBritany\nCamille\nEricka\nEva\nGenesis\nKelley\nRochelle\nAlejandra\nFaith\nJudith\nKendall\nMiriam\nNaomi\nPaula\nRandi\nTierra\nAlexia\nBrianne\nBrittni\nCecilia\nChristin\nCiera\nDorothy\nJocelyn\nSheila\nBonnie\nCarissa\nDaisy\nDevon\nJanice\nKayleigh\nKeisha\nLea\nLissette\nMayra\nShayna\nTrisha\nChelsie\nDaniella\nElise\nJuliana\nKaleigh\nKierra\nSonia\nBelinda\nElisabeth\nJaimie\nJohanna\nMaegan\nMindy\nRachelle\nRuby\nShantel\nAriana\nGiselle\nIsabel\nJalisa\nMaggie\nMaritza\nMia\nPatrice\nShanika\nSonya\nTiffani\nYessenia\nBetty\nCallie\nFrancesca\nNikita\nShanna\nAlisa\nAnita\nChantal\nChrista\nChristen\nHayley\nLeanne\nLyndsey\nNorma\nAlice\nAubrey\nBrittny\nChristian\nElisa\nKassandra\nKate\nKiera\nMichaela\nShayla\nShelly\nTracey\nAbby\nAlina\nAlyson\nBeth\nCayla\nIrene\nJami\nLacy\nLatisha\nShanice\nShauna\nShirley\nTanisha\nTaryn\nAnn\nAshlie\nBeatriz\nBridgette\nCeleste\nDebra\nIndia\nIris\nJoanne\nKenya\nKyla\nLaurie\nMarisol\nMarlene\nStacie\nTameka\nTammy\nTraci\nAlissa\nCecily\nDiamond\nJanay\nJena\nJennie\nJosephine\nJulianne\nKali\nKaty\nKerri\nNadine\nRacheal\nYvette\nAngie\nAnnette\nBrittaney\nChanel\nChrystal\nClarissa\nDevin\nJanae\nJane\nKatharine\nKristyn\nLana\nLara\nLeanna\nLogan\nMarina\nOctavia\nRyan\nShelley\nSilvia\nTessa\nAnnie\nArlene\nCameron\nChasity\nEden\nElisha\nJazmin\nJazmine\nJenifer\nJill\nKathy\nKelsie\nLorena\nMandy\nMaranda\nSofia\nTamika\nTori\nTyler\nAileen\nAlana\nAsia\nCasandra\nChandra\nElena\nJerrica\nKarissa\nKatelin\nPrincess\nStephany\nVivian\nYvonne\nAlaina\nAlysia\nBeverly\nBlanca\nBrandie\nBrittanie\nClara\nConnie\nConstance\nJana\nJerica\nLakeisha\nLatonya\nLeticia\nMarsha\nNataly\nNoel\nSelina\nTequila\nTerri\nAisha\nAlessandra\nAshli\nAshly\nAudra\nBeatrice\nBlair\nBobbi\nCassidy\nCatalina\nChiquita\nDesirae\nEboni\nEllen\nGlenda\nHanna\nJoann\nJuanita\nKatelynn\nKatlyn\nKira\nKrystina\nKylee\nLarissa\nLeigh\nLourdes\nLucia\nMackenzie\nMargarita\nSerena\nShanteria\nSherry\nTalia\nTania\nAdrianne\nAlexander\nAlycia\nCarina\nCharity\nDaphne\nDarlene\nEmilie\nGeorgia\nHailey\nJackie\nJacklyn\nJoan\nKaila\nKerry\nKori\nKourtney\nKrysten\nLacie\nLashonda\nLena\nLorraine\nLynn\nNoelle\nNora\nSade\nSadie\nShakira\nTanika\nTiffanie\nAlma\nAlyse\nAlysha\nAnais\nAshlyn\nCorinne\nDayna\nElyse\nGwendolyn\nJodi\nJosie\nJoyce\nJuliet\nKathrine\nKimberlee\nKimberley\nKristal\nKristian\nKyra\nLakeshia\nLynette\nMara\nParis\nPorsha\nRoxanna\nShantavia\nTiana\nAbbey\nAshanti\nBobbie\nBrigitte\nBrittnie\nCristal\nIngrid\nJanette\nJanine\nJayme\nKaci\nKacie\nKailey\nKandace\nKelsea\nLaurel\nLeann\nLoren\nLuz\nMaribel\nPorscha\nRhonda\nRita\nShantell\nShea\nWanda\nYasmin\nAdrian\nAlesha\nAlexandrea\nArianna\nBreanne\nCorey\nDeja\nDemetria\nDina\nEileen\nGenevieve\nHollie\nIvy\nJordyn\nJulianna\nJustina\nKatheryn\nKeshia\nLakisha\nLashay\nLiana\nLucy\nMaryann\nRacquel\nSavanna\nSelena\nVenessa\nAntionette\nAraceli\nBridgett\nCarli\nCatrina\nChantelle\nDianna\nElissa\nEsmeralda\nIvette\nJenelle\nJesenia\nJessenia\nJuana\nJulissa\nKailyn\nKiana\nKiersten\nKirstin\nKrysta\nLee\nLiza\nMandi\nMarisela\nMarjorie\nMarquita\nMartika\nMaureen\nMildred\nPaulina\nRichelle\nShante\nShaquita\nStevie\nValencia\nAlanna\nAnquette\nAshely\nBrittnee\nCandis\nCora\nCoral\nDoris\nFallon\nFrancis\nGabriel\nHallie\nJanessa\nJeannie\nJuliette\nKalyn\nKasandra\nKimber\nKortney\nLatrice\nLeeann\nLesley\nLoretta\nMariah\nMaya\nMollie\nNoemi\nPaola\nPortia\nRoxana\nScarlett\nShalonda\nSharonda\nSheryl\nTanesha\nValeria\nYadira\nAlecia\nAlysa\nAngelia\nAngelique\nBrenna\nBritteny\nBrittnay\nCaley\nCari\nCaridad\nCharmaine\nCheyenne\nDara\nEdith\nEmerald\nFrancisca\nGillian\nGiovanna\nGuadalupe\nJeanne\nJeri\nJohana\nKacey\nKaela\nKalee\nKandice\nKaylyn\nKelsi\nKenisha\nKirstie\nLaquisha\nLatoria\nLeilani\nLily\nLisette\nLouise\nLuisa\nMarcela\nMargie\nMariana\nMartina\nMeghann\nMonika\nNikole\nOlga\nRaven\nRebeca\nRosalinda\nRosemary\nSally\nSarai\nShameka\nShanita\nSherika\nSusana\nTracie\nTricia\nWhitley\nZoe\nAmaris\nAsha\nAthena\nAudriana\nBritny\nCarlee\nCarley\nCheri\nCherry\nChristal\nChristi\nCori\nCory\nDamaris\nDania\nDebbie\nDeidra\nDena\nDenisse\nFabiola\nGladys\nGretchen\nHali\nIvana\nJaqueline\nJodie\nJoelle\nJudy\nKacy\nKasie\nKiley\nLatia\nLauryn\nLeeanna\nLia\nLina\nLora\nMarlena\nMckenzie\nMichael\nMyesha\nNatacha\nNicolette\nPauline\nReyna\nRoberta\nShatara\nSkye\nSoraya\nStefani\nTaja\nTeri\nTrista\nTristan\nVanesa\nAja\nAmie\nAnjelica\nAntonia\nBrandee\nBrigette\nCathleen\nCelina\nChastity\nDanica\nDannielle\nDixie\nEleanor\nFarrah\nGeneva\nIleana\nIsabella\nJacquelin\nJames\nJean\nJessi\nKarin\nKassie\nKatia\nKatina\nKatlin\nKeira\nLaci\nLakesha\nLaquanda\nLaquita\nLiliana\nMagan\nMalissa\nMarcia\nMarion\nMaura\nMelisa\nMicaela\nMikayla\nMyra\nPaulette\nPeggy\nQuanisha\nRachele\nRaina\nRhiannon\nRobert\nRosemarie\nRyann\nSable\nSamatha\nSamone\nShamika\nShanae\nShanelle\nShari\nShawn\nSkylar\nSonja\nSophie\nTamisha\nTarah\nTera\nTyesha\nYasmine\nAlesia\nAllie\nAyanna\nAyla\nBernadette\nBree\nCamila\nCaryn\nCecelia\nCherelle\nClare\nCorina\nCourtnie\nDaniele\nDarcy\nDelia\nDella\nDenisha\nDevan\nEdna\nElsie\nEster\nEunice\nFelisha\nGianna\nGinger\nHazel\nHeaven\nIesha\nJacquelynn\nJaimee\nJanel\nJanna\nJeanna\nJeannette\nJeniffer\nJesse\nJessika\nJewel\nJolene\nKaitlynn\nKatrice\nKaylie\nKaylin\nKeandra\nKeely\nKenia\nKenyetta\nKia\nLeigha\nLeila\nMaricela\nNakia\nNatosha\nNellie\nNicolle\nNiki\nPenny\nPhylicia\nRashida\nReina\nRena\nRenae\nRene\nRikki\nRonisha\nSalena\nSalina\nSantana\nSarina\nShacara\nShantia\nSharika\nStarr\nStephani\nTana\nTerra\nTess\nVannessa\nVera\nViviana\nYajaira\nAlex\nAmberly\nAndriana\nAnnamarie\nAurielle\nAva\nAvery\nBetsy\nBillie\nBlaire\nBreana\nBritani\nCasie\nCelia\nChelsi\nCherish\nCherrelle\nCorrie\nDarla\nDeana\nDianne\nDominque\nElvia\nEmilee\nEstefania\nFarah\nFelecia\nHaleigh\nHolley\nIvonne\nJada\nJamesha\nJamila\nJanee\nJasmyn\nJody\nJolisa\nJoni\nKalie\nKallie\nKarie\nKaterina\nKaycee\nKaylan\nKayli\nKeona\nKirby\nKrystyna\nKyle\nLashawn\nLatoyia\nLeandra\nLillie\nLizette\nLynda\nMagdalena\nMarcella\nMarcy\nMarguerite\nMarian\nMarla\nMartine\nMatthew\nMinerva\nPhoebe\nRamona\nReva\nSherri\nTalisa\nTamra\nTaneisha\nTayler\nTiarra\nTiera\nTrinity\nVicki\nAbbie\nAda\nAhsley\nAlba\nAlix\nAmerica\nAngeline\nAnissa\nApryl\nAshlea\nAshlynn\nAustin\nBertha\nBryanna\nBrynne\nCamilla\nCarlene\nCassaundra\nCathy\nChanell\nChina\nChristianne\nChynna\nCodi\nColby\nCourteney\nCrista\nCristian\nDaniel\nDarci\nDeidre\nDemi\nDominica\nDomonique\nDulce\nElana\nElyssa\nEthel\nEugenia\nFatima\nFranchesca\nGeraldine\nHilda\nIliana\nIrma\nIsabelle\nJammie\nJanell\nJeanine\nJerika\nJoi\nJoshua\nJoycelyn\nKalynn\nKandis\nKanisha\nKeosha\nKristyna\nKrizia\nLakendra\nLashanda\nLatara\nLatesha\nLatricia\nLeighann\nLenora\nLianne\nLidia\nLinsey\nLois\nLorna\nLyndsay\nMagen\nMarianne\nMariela\nMattie\nMaxine\nMilagros\nMisti\nNatalee\nNichelle\nPage\nPorshia\nQuanesha\nRana\nRegan\nRomina\nRosalie\nRubi\nSamara\nSammantha\nSandi\nShakara\nShakera\nShaniece\nShaniqua\nShanique\nShanta\nShantrell\nSharelle\nSheree\nSheri\nSherita\nSherrie\nStefany\nStephenie\nTabetha\nTamela\nTawny\nTeaira\nTelisha\nTiesha\nUnique\nValarie\nVicky\nYazmin\nAdeline\nAdria\nAida\nAlena\nAleshia\nAli\nAlisia\nAnabel\nAnamaria\nAndreina\nAngelita\nAnnemarie\nAnsley\nAntwanette\nAshlei\nBaby\nBecky\nBernice\nBlake\nBrittiany\nBrook\nCaitlynn\nCandance\nCandida\nCarey\nChanelle\nCharisma\nCharissa\nCharnele\nChassidy\nCherie\nChristopher\nChyna\nCollette\nCorinna\nCortni\nCristin\nCristine\nDalia\nDanika\nDaphney\nDeandra\nDelilah\nDionne\nDora\nDrew\nEliana\nEliza\nElora\nElsa\nErinn\nEsperanza\nEssence\nEstela\nEvan\nFelica\nFrancheska\nGisselle\nHelena\nHolli\nInfant\nIvory\nJackeline\nJamee\nJameshia\nJamey\nJanea\nJanie\nJaquelyn\nJasmaine\nJenae\nJennica\nJessyca\nJoana\nJoselyn\nKacee\nKailee\nKami\nKarol\nKarrie\nKati\nKayle\nKaylen\nKeara\nKendell\nKenyatta\nKerrie\nKerstin\nKiarra\nKristan\nKrystin\nKyara\nLaila\nLakia\nLaporsha\nLashae\nLashawnda\nLaticia\nLatosha\nLavonda\nLayla\nLilian\nLilly\nLoni\nMadeleine\nMalinda\nMalisa\nMari\nMarilee\nMarlana\nMeagen\nMercy\nMeylin\nMikaela\nMikala\nMiracle\nMisha\nMoriah\nNadeige\nNicholas\nPatience\nPricilla\nRaechel\nRania\nReba\nSari\nSequoia\nShadae\nShakayla\nShalanda\nShaneka\nShani\nShannan\nShantae\nShatavia\nShavon\nShawnta\nSiedah\nSkyler\nSommer\nStella\nSteven\nSunny\nSusanna\nSymone\nTakia\nTashara\nTatianna\nTempest\nTempestt\nTenesha\nTenisha\nTerica\nTerrica\nTianna\nTrina\nTyeisha\nValentina\nVickie\nWinnie\nYanira\nAgnes\nAleisha\nAlia\nAlishia\nAmarilys\nAmethyst\nAnisha\nAnnmarie\nAnthony\nAnya\nAryn\nAshante\nAstrid\nAubrie\nAudreana\nAudrianna\nBarbie\nBionca\nBrandon\nBrett\nBrittini\nCali\nCaprice\nCasee\nCassi\nCassondra\nCatlin\nCherise\nChristianna\nCody\nColette\nConsuelo\nCristy\nDanae\nDanna\nDanyelle\nDavida\nDayana\nDebora\nDedra\nDeena\nDeirdre\nDelores\nDeneisha\nDeona\nDestany\nDestiney\nDiandra\nDorian\nEbonie\nEcho\nElaina\nElla\nEmilia\nEryn\nEstrella\nFawn\nFernanda\nFlor\nFlora\nFlorence\nGail\nGena\nGigi\nGisel\nGisela\nIlana\nImani\nIndira\nIsis\nJaclynn\nJacquline\nJael\nJalessa\nJamara\nJamia\nJanina\nJanis\nJasmyne\nJazma\nJazmyn\nJeanie\nJelisa\nJennah\nJenni\nJenniffer\nJesica\nJessa\nJo\nJohnna\nJoseph\nJosette\nJourdan\nJulee\nJulian\nJulisa\nKaelyn\nKamisha\nKarena\nKarlee\nKarly\nKaroline\nKasha\nKaylene\nKaytlyn\nKeaira\nKenesha\nKenna\nKesha\nKeturah\nKeyana\nKiaya\nKim\nKindra\nKisha\nKristiana\nKrysti\nLaquandra\nLatavia\nLeyla\nLissa\nLiz\nLizbeth\nLorin\nLucerito\nMadalyn\nMadelyn\nMaite\nMallorie\nMarcie\nMariel\nMarkesha\nMarkeshia\nMarkia\nMarta\nMaylin\nMellisa\nMellissa\nMelyssa\nMercedez\nMeridith\nMicah\nMichell\nMiesha\nMimi\nMindi\nMona\nMonet\nMontana\nNakita\nNastassia\nNatali\nNatalya\nNatashia\nNicki\nNiesha\nNilda\nPorche\nPriya\nRae\nRiley\nRocio\nRonnisha\nRosalia\nRosalyn\nRosanna\nRosario\nRosetta\nSabine\nSada\nSage\nSaudia\nSaundra\nSebrina\nSelene\nShakeira\nShaketa\nShakia\nShala\nShamara\nShamekia\nShandra\nShandrea\nShanequa\nShanise\nShantal\nShantelle\nSharda\nSharron\nShaunna\nShavonna\nShena\nSheneka\nSherell\nSheridan\nShiloh\nShyla\nSiobhan\nSky\nSloane\nStephaine\nStephania\nSusie\nSuzette\nTacara\nTamia\nTequilla\nTerria\nTerry\nThelma\nTierney\nTisha\nTonia\nTracee\nTyisha\nTyra\nUrsula\nValery\nVania\nVeronique\nVianca\nVilma\nWhittney\nWinter\nXiomara\nZipporah\nZuri\nAshley\nJessica\nBrittany\nAmanda\nStephanie\nSamantha\nSarah\nJennifer\nLauren\nNicole\nAmber\nTiffany\nElizabeth\nMegan\nKayla\nCourtney\nDanielle\nHeather\nMelissa\nChelsea\nChristina\nMichelle\nRachel\nRebecca\nEmily\nJasmine\nKimberly\nAlexandra\nKatherine\nVictoria\nKristen\nCrystal\nSara\nAlyssa\nBrittney\nErica\nLaura\nKelly\nVanessa\nCaitlin\nAlexis\nMary\nTaylor\nAndrea\nErin\nNatalie\nAmy\nJamie\nKelsey\nLindsey\nMaria\nChristine\nAngela\nShannon\nHannah\nAlicia\nCassandra\nKristina\nKathryn\nKatie\nJordan\nMorgan\nKristin\nJacqueline\nAllison\nLisa\nMonica\nBrianna\nWhitney\nBianca\nBrooke\nLindsay\nPatricia\nErika\nAnna\nCatherine\nAlexandria\nKrystal\nMarissa\nApril\nTara\nBrandi\nMelanie\nAriel\nCasey\nKaitlyn\nJenna\nJulia\nOlivia\nSabrina\nShelby\nVeronica\nGabrielle\nJulie\nKaitlin\nKatelyn\nDiana\nKathleen\nCynthia\nLeah\nPaige\nMeghan\nNatasha\nBrandy\nCristina\nBritney\nHolly\nKatrina\nFelicia\nBriana\nDesiree\nRachael\nKara\nLeslie\nMeagan\nDana\nMiranda\nCaroline\nMargaret\nMonique\nCandace\nAngelica\nGina\nSierra\nKiara\nAlexa\nHaley\nAna\nAshlee\nDominique\nBethany\nBreanna\nMolly\nCandice\nYesenia\nKaren\nValerie\nChelsey\nCarolina\nMercedes\nRebekah\nKendra\nDeanna\nTatiana\nAdriana\nPriscilla\nSandra\nTabitha\nAbigail\nLatoya\nGrace\nStacey\nJaclyn\nArielle\nBrittani\nNancy\nSasha\nAlison\nKrista\nNichole\nAlisha\nAshleigh\nBarbara\nKirsten\nTamara\nRaquel\nSummer\nEbony\nJillian\nCaitlyn\nJoanna\nCarly\nLacey\nSydney\nGabriela\nSavannah\nCiara\nAutumn\nAngel\nGabriella\nPamela\nStacy\nKelli\nBrenda\nJanelle\nKarina\nVirginia\nRobin\nAmelia\nCarrie\nMichele\nLinda\nTeresa\nDenise\nKaley\nMarie\nSusan\nKasey\nCindy\nKristy\nMallory\nChristy\nDestiny\nEmma\nDeborah\nClaudia\nAngelina\nCierra\nSophia\nCarolyn\nCarmen\nCortney\nRaven\nRenee\nChloe\nJacquelyn\nKristine\nTiara\nCara\nKristi\nBridget\nEricka\nGloria\nHillary\nJenny\nShaniqua\nAudrey\nMadison\nMelinda\nTina\nAllyson\nAnne\nStefanie\nTracy\nAdrienne\nHope\nJade\nJocelyn\nRegina\nJanet\nToni\nKarla\nWendy\nJasmin\nMelody\nNina\nTheresa\nLydia\nKaylee\nKierra\nRachelle\nTierra\nAimee\nCassie\nChristie\nColleen\nJustine\nKari\nKylie\nBailey\nClaire\nHeidi\nMarisa\nRosa\nAriana\nHayley\nMadeline\nPaula\nCiera\nKellie\nPrecious\nSharon\nTia\nAntoinette\nCamille\nCarla\nCharlene\nDaniella\nJeanette\nNatalia\nBrittni\nCarol\nCharlotte\nJaime\nKeri\nMeredith\nAubrey\nHilary\nJessie\nLillian\nTrisha\nAlejandra\nAnn\nAshton\nCarissa\nDaniela\nDawn\nDevin\nEllen\nEvelyn\nJoy\nKatlyn\nMartha\nRuby\nChantel\nChelsie\nMargarita\nRobyn\nRuth\nAsia\nDevon\nGenesis\nNikki\nPatrice\nRose\nShawna\nSimone\nTabatha\nYolanda\nAdrianna\nFrancesca\nKate\nNaomi\nTanya\nTonya\nAbby\nAlexia\nCallie\nCassidy\nDonna\nFrances\nGiselle\nKaleigh\nMeaghan\nMia\nShaina\nShanna\nShayla\nSuzanne\nAlissa\nCayla\nDorothy\nElisabeth\nKarissa\nKelley\nMiriam\nMisty\nCecilia\nShayna\nTaryn\nAlana\nAnastasia\nJazmine\nJudith\nMackenzie\nNathalie\nShantel\nSheena\nTiffani\nAlyson\nClarissa\nElise\nEsther\nFaith\nLori\nMarilyn\nMichaela\nRandi\nStacie\nYessenia\nChristian\nElena\nEva\nKassandra\nKourtney\nLakeisha\nLena\nNadia\nAngelia\nChrista\nElisa\nIsabel\nKristie\nKrystle\nMariah\nRoxanne\nShauna\nTori\nBonnie\nDebra\nHailey\nIris\nJanice\nJazmin\nMarina\nSandy\nSonia\nAlanna\nChantal\nDaisy\nKatelynn\nKendall\nKristian\nKrystina\nMayra\nNoelle\nShana\nTammy\nTasha\nBrandie\nDiane\nElaine\nJerrica\nKiera\nKyla\nLacy\nLissette\nSally\nSheila\nBetty\nBreana\nCheryl\nGenevieve\nJohanna\nKaila\nKeisha\nKerry\nLyndsey\nMaranda\nRacheal\nRochelle\nSylvia\nTerri\nAnnie\nBelinda\nHelen\nIndia\nJalisa\nJana\nKailey\nKira\nKirstie\nLucy\nMarisol\nRosemary\nSavanna\nShirley\nBeverly\nBritni\nChrystal\nJane\nJill\nKala\nKristyn\nLeanna\nLoren\nMaggie\nPaola\nStephany\nAdrian\nAlisa\nArianna\nChanel\nJena\nJenifer\nJessenia\nJoanne\nJuliana\nKatharine\nKirstin\nLatasha\nLeticia\nLorena\nRhonda\nTamika\nYvette\nAlesha\nAlycia\nBritany\nCarina\nDianna\nJanae\nJuanita\nJulianne\nKerri\nMandy\nMaritza\nOctavia\nSonya\nTanisha\nTiffanie\nTraci\nTyler\nAisha\nAlice\nAlysha\nAngie\nAshlie\nBridgett\nCharity\nConstance\nDaphne\nHanna\nIesha\nJessika\nKatelin\nMindy\nNikita\nSerena\nShelly\nSkylar\nTessa\nValencia\nBeth\nBrianne\nBridgette\nCheyenne\nDarlene\nEileen\nGuadalupe\nIsabella\nJami\nJodi\nJustina\nKaylyn\nKristal\nMarla\nMarlene\nMollie\nPrincess\nShanika\nSherry\nStaci\nTania\nTracey\nAlaina\nAlina\nAnita\nBeatriz\nBlanca\nBrittaney\nBrittanie\nChristin\nCoral\nCristal\nDiamond\nIrene\nJanette\nKacie\nKayleigh\nKenya\nKrysten\nLiliana\nLynn\nMarjorie\nNicolette\nSade\nStefani\nTalia\nValeria\nAileen\nAlessandra\nAnnette\nBlair\nBritny\nCasandra\nChiquita\nCorey\nIngrid\nIsamar\nIvana\nJacklyn\nJaleesa\nJoan\nJuana\nKali\nKanisha\nKaylin\nKiersten\nKimberlee\nLacie\nLeanne\nLeigh\nLorraine\nLucia\nMaegan\nMarsha\nMaya\nRita\nShameka\nShante\nSofia\nTameka\nVivian\nYvonne\nAlecia\nAlma\nAshely\nAshlyn\nElyse\nEsmeralda\nJaimie\nJosephine\nKaitlynn\nKanesha\nKelsi\nKenisha\nKeshia\nKyra\nLaquita\nLarissa\nLauryn\nLogan\nMaribel\nMonika\nNadine\nNorma\nSymone\nAli\nBrittny\nChristen\nCori\nFatima\nJanay\nJanine\nJerica\nJoyce\nKaci\nKalyn\nKathy\nKelsie\nLatonya\nMacy\nMara\nMarcella\nSilvia\nTiera\nTricia\nViviana\nAlysia\nBrenna\nCamila\nCeleste\nCelia\nChasity\nConnie\nDakota\nDemetria\nDevan\nGeraldine\nJamila\nKalie\nLatifah\nLatrice\nLaurel\nLeandra\nLeila\nLuz\nMari\nOlga\nShantell\nZoe\nAlexandrea\nAllie\nAngelique\nAshly\nBillie\nDanica\nDestinee\nEmilee\nGeorgia\nHaleigh\nJayme\nJesse\nKia\nLana\nLea\nMariana\nMarisela\nRebeca\nSadie\nShantavia\nShea\nShelley\nTerra\nTiana\nAlyse\nAmie\nAnais\nBeatrice\nBryanna\nClara\nDanyelle\nDeana\nDesirae\nElyssa\nGabriel\nGretchen\nIvy\nJackie\nJennie\nJesenia\nJohana\nJulissa\nKacey\nKaneisha\nKaty\nKaylie\nKim\nMandi\nMarcia\nMaura\nNakita\nNataly\nParis\nPorsche\nSarai\nShakira\nShaneka\nShaquita\nVanesa\nWanda\nYasmin\nAshli\nBlake\nBreanne\nBrittnay\nCecily\nChandra\nCherie\nCorinne\nDara\nDayna\nDebbie\nDeidra\nDominque\nEboni\nEdith\nElisha\nElissa\nEmilie\nFarah\nGladys\nHollie\nJanie\nJanna\nJoelle\nKandice\nKaryn\nKatlin\nKaycee\nKimberley\nLashonda\nLesley\nLiza\nMarcela\nMaricela\nMarlena\nMckenzie\nNoemi\nPorsha\nRyan\nSelena\nSharonda\nSonja\nTianna\nAbbey\nAda\nBaby\nBrittnee\nCameron\nChantelle\nCharmaine\nChastity\nChristi\nCody\nCory\nCristine\nDanae\nDaniele\nDeja\nDeondra\nDevyn\nDina\nEleanor\nEliza\nFelisha\nGinger\nHolli\nJesica\nJordyn\nJosie\nJulianna\nKacy\nKandace\nKati\nKeeley\nKiana\nKiarra\nKrysta\nKrystin\nLakeshia\nLatavia\nLatisha\nLatoria\nLaurie\nLeann\nLeeann\nLisette\nLoretta\nLyndsay\nMaureen\nMelisa\nMicaela\nMichael\nNia\nNikole\nPeggy\nPortia\nRhiannon\nShanequa\nShantrell\nSheri\nStefany\nSusana\nTamesha\nYasmine\nAlannah\nAlesia\nAlex\nAnabel\nAntionette\nAudra\nAustin\nBecky\nBobbie\nChantell\nChelsy\nCherish\nDamaris\nDanna\nDenisha\nEden\nFallon\nGeneva\nGwendolyn\nHelena\nJean\nJeanine\nJeannie\nJelisa\nKaela\nKathrine\nKathryne\nKatlynn\nKeely\nKenia\nKeondra\nKylee\nLaci\nLaporsha\nLashawn\nLatosha\nLillie\nMadelyn\nMagdalena\nMagen\nMakayla\nMaryann\nMilagros\nMyra\nReyna\nShanice\nShanique\nShanteria\nShari\nShawn\nSkye\nSkyler\nSuzette\nTashara\nAdrianne\nAlia\nAllyssa\nAntonia\nArlene\nAsha\nAshanti\nAthena\nBrielle\nCarlie\nCatalina\nCathryn\nCelina\nChanelle\nCheri\nChristal\nDanisha\nDomonique\nEmerald\nEstefania\nFabiola\nFarrah\nFlor\nFrancis\nGiovanna\nHeaven\nIda\nIvette\nIvory\nJanel\nJolene\nJoselyn\nKallie\nKaneesha\nKatherin\nKatheryn\nKenyatta\nKimber\nKristan\nLeigha\nLina\nLizbeth\nLourdes\nLucero\nLynette\nMadeleine\nMargo\nMarion\nMarkeisha\nMarquita\nRebeka\nReina\nRyann\nSage\nScarlett\nSharlene\nSiera\nStevie\nSuzanna\nTaneisha\nTaneshia\nTonisha\nTristan\nVicky\nAbbie\nAshlynn\nAubrie\nBernice\nBetsy\nCathy\nCecelia\nChelsi\nDannielle\nDarcy\nDeidre\nDemi\nDiandra\nEdna\nEliana\nEssence\nGlenda\nHazel\nIliana\nIsabelle\nJackeline\nJaimee\nJanee\nJasmyne\nJeannette\nJoann\nJordana\nJourdan\nKasandra\nKaylah\nKayley\nKortney\nLakesha\nLakisha\nLara\nLiana\nLily\nLora\nMalissa\nMallorie\nMarcie\nMarcy\nMarlee\nMaxine\nMelina\nMellissa\nMerissa\nMona\nNatali\nNicolle\nPaulette\nPauline\nPhylicia\nQuanisha\nRosalinda\nRosalyn\nRubi\nSequoia\nShalonda\nShamika\nShani\nShantal\nShatara\nShelbi\nSheryl\nSophie\nSpencer\nTakara\nTarah\nTayler\nTera\nTrina\nTrinity\nVannessa\nWhitley\nAja\nAleshia\nAlexi\nAlishia\nAlyssia\nAmberly\nAriell\nAriella\nAshliegh\nAudriana\nAvery\nAyla\nBrandee\nBreonna\nBria\nBritnee\nBrittnie\nBryana\nCari\nCarley\nCassondra\nCatrina\nCheyanne\nChina\nChristiana\nChynna\nColby\nCorrine\nCrista\nDanika\nDixie\nElana\nEleni\nFrancine\nGeorgina\nGianna\nGillian\nHaylee\nHilda\nIlana\nIvonne\nJalissa\nJanell\nJaqueline\nJasmyn\nJeana\nJeanne\nJenelle\nJeniffer\nJessi\nJewel\nJoana\nJody\nJudy\nJuliette\nKaitlan\nKalynn\nKamilah\nKandyce\nKarin\nKasie\nKaylan\nKeandra\nKeanna\nKelsea\nKesha\nKiley\nKirstyn\nKrizia\nKyle\nLaquisha\nLawanda\nLayla\nLeilani\nLia\nLindy\nLisbeth\nLizette\nLucille\nMalika\nMarianne\nMarta\nMartika\nMicah\nMilagro\nMisti\nMoriah\nNatalya\nRachele\nRashida\nRena\nRichelle\nRoberta\nRoxanna\nSantana\nSelina\nShakita\nShamara\nShanae\nShanelle\nShaniece\nShanita\nShanta\nShantae\nSharita\nShena\nShenika\nSherika\nSherri\nSommer\nSoraya\nSunny\nSusanna\nTanesha\nTequila\nTeri\nTess\nTiarra\nTrista\nYanira\nAlayna\nAlena\nAlora\nAlyshia\nAmerica\nAnjelica\nAraceli\nAriela\nArika\nAshia\nAshlea\nAurora\nBailee\nBernadette\nBionca\nBobbi\nBrigitte\nCady\nCaitlan\nCaley\nCaylee\nChanda\nCiarra\nCinthia\nClare\nCodi\nCristin\nDaniell\nDora\nElaina\nElsa\nEstela\nEugenia\nFrancina\nGisselle\nGraciela\nGriselda\nHallie\nHarley\nIleana\nJada\nJalesa\nJamesha\nJanessa\nJazmyn\nJazmyne\nJuliet\nKadie\nKady\nKarisa\nKarly\nKarri\nKaterina\nKatia\nKaylen\nKelcie\nKenyetta\nKeosha\nKeyla\nKori\nKourtni\nKyrie\nLakendra\nLakia\nLaquinta\nLashanda\nLatesha\nLatia\nLatravia\nLee\nLeondra\nLeonor\nLinsey\nLissa\nLynda\nMarah\nMarianna\nMaricruz\nMarkita\nMechelle\nMeisha\nMeranda\nNakia\nNatalee\nNiesha\nNoel\nNora\nPaulina\nRaisa\nRenae\nReva\nRosalind\nRoxana\nShanell\nShantelle\nShantoria\nShay\nShelbie\nSheree\nSusannah\nSydni\nTaniesha\nTanika\nTeal\nTynisha\nValentina\nVanity\nVicki\nAlba\nAlberta\nAleisha\nAlexsandra\nAlica\nAlysa\nAnissa\nAnnabel\nAnnabelle\nAnnemarie\nAnnmarie\nAnquette\nAria\nAshlei\nAva\nAyana\nBrieanna\nBrionna\nBritteny\nBrittiany\nCandy\nCarli\nCera\nChannel\nChanteria\nChantrell\nCharlie\nCorie\nCourtnie\nCristian\nDania\nDanyell\nDarby\nDarci\nDelicia\nDelilah\nDena\nDesire\nDestini\nDianne\nDionne\nDoris\nElia\nElla\nEmilia\nEunice\nFelecia\nFranchesca\nFrancisca\nGia\nHalie\nIrma\nIsabela\nIsis\nJacquelin\nJamia\nJamilah\nJanielle\nJenise\nJeri\nJessa\nJesseca\nJohnisha\nJolie\nKailee\nKailyn\nKami\nKassie\nKatarina\nKatiana\nKatina\nKayli\nKaytlin\nKerstin\nKeturah\nKeyanna\nKeyera\nKhadijah\nKiah\nKianna\nKirby\nKyrstin\nLaquanda\nLaquandra\nLianna\nLilia\nLilian\nLinnette\nLorna\nLouise\nLovely\nLucinda\nLuisa\nMabel\nMahogany\nMariam\nMarian\nMariela\nMarti\nMelodie\nMichell\nMikaela\nMildred\nMiracle\nMisha\nMya\nMyranda\nNatacha\nNatascha\nNatosha\nNereida\nNija\nPatience\nPatsy\nPorscha\nQuanesha\nRacquel\nRamona\nRanisha\nRasheeda\nRhea\nRiley\nRocio\nRosalie\nRosario\nSalina\nSamara\nShanay\nShantia\nShaquilla\nSharee\nSharell\nSharika\nSharnell\nShawanda\nShira\nSindy\nStacia\nStephenie\nStormie\nTalisha\nTami\nTamra\nTawny\nTenesha\nTenisha\nTequilla\nTerrica\nTheodora\nTierney\nTimesha\nTorrie\nTyesha\nTyneshia\nVianca\nVickie\nViolet\nVioleta\nWhittney\nYadira\nYecenia\nZara\nAdina\nAdriane\nAkira\nAlaura\nAlexus\nAliza\nAmalia\nAmara\nAndreina\nAngelene\nAngeline\nAngelita\nAubree\nBaylee\nBertha\nBrea\nBree\nBriauna\nBritnie\nBrittiney\nBrittiny\nBrook\nBryce\nBrynn\nCali\nCandis\nCaridad\nCarlita\nCaryn\nCassey\nCathleen\nCathrine\nChandler\nChanning\nChaquita\nChardae\nCharissa\nCharisse\nChelsee\nCherise\nChristopher\nCinthya\nCorinna\nCristen\nDallas\nDaphney\nDarielle\nDaryl\nDayana\nDeandra\nDelaney\nDenisse\nDolores\nDulce\nEbonie\nElicia\nElisabet\nEmmanuela\nEryn\nEsperanza\nEve\nFiona\nFlorence\nFrancheska\nGail\nGisel\nGracie\nHali\nIman\nInes\nIvanna\nIvis\nJaimi\nJannette\nJayla\nJeannine\nJenae\nJennyfer\nJessalyn\nJesselyn\nJoane\nJodie\nJordon\nJoshua\nKai\nKalee\nKalen\nKandi\nKarah\nKarena\nKarlie\nKasi\nKatey\nKathlyn\nKatrice\nKatya\nKayle\nKaylea\nKeirra\nKeirsten\nKenesha\nKeona\nKhadija\nKisha\nKourtnie\nKrystine\nKrystyna\nLashavia\nLashawnda\nLatara\nLatricia\nLaurin\nLeighann\nLetitia\nLidia\nLila\nLilly\nLindsy\nLoni\nLorie\nLyndsi\nLynsey\nMacey\nMadalyn\nMadelaine\nMagaly\nMaia\nMaira\nMakeda\nMakenzie\nMalinda\nMargaux\nMarkia\nMarlana\nMattie\nMaygan\nMeagen\nMellanie\nMellisa\nMelonie\nMercedez\nMerline\nMeryl\nMikayla\nMimi\nMirna\nMirtha\nMonet\nMontana\nMyriam\nNatashia\nNatassia\nNehemie\nNichelle\nNisha\nNyssa\nPhoebe\nPorcha\nPorshia\nPricilla\nQuinisha\nRaechel\nRaina\nRainey\nReanna\nRebecka\nRicki\nRina\nRoneisha\nRosemarie\nSacha\nSaundra\nSavanah\nShae\nShakari\nShakera\nShakeria\nShanetta\nShanterria\nShaquana\nShaquanda\nSharda\nSharmaine\nShatavia\nShatoria\nShellie\nShereka\nShyla\nSiobhan\nSophonie\nStarla\nStarr\nSteffanie\nSteffany\nStella\nStephani\nSunshine\nSydnee\nTabetha\nTakia\nTamekia\nTamisha\nTangela\nTatianna\nTatum\nTawana\nTerria\nTerry\nThea\nTiesha\nTimeka\nTonia\nTory\nTracie\nTristen\nTynesha\nTyra\nValery\nVenus\nVilma\nWendi\nWilda\nWilma\nYajaira\nYazmin\nZena\nAshley\nJessica\nBrittany\nAmanda\nStephanie\nSamantha\nSarah\nJennifer\nKayla\nLauren\nNicole\nMegan\nChelsea\nElizabeth\nAmber\nDanielle\nEmily\nTiffany\nRachel\nMichelle\nMelissa\nHeather\nChristina\nCourtney\nJasmine\nVictoria\nRebecca\nAlexandra\nShelby\nKatherine\nTaylor\nAlexis\nKimberly\nCrystal\nSara\nAlyssa\nAndrea\nKelly\nMary\nKristen\nKelsey\nErica\nLindsey\nMaria\nLaura\nCaitlin\nHannah\nVanessa\nNatalie\nJamie\nAmy\nBrittney\nAriel\nBrianna\nKatie\nMorgan\nBrooke\nCassandra\nErin\nShannon\nKathryn\nAllison\nAlicia\nKristina\nChristine\nAngela\nCatherine\nOlivia\nJacqueline\nBianca\nLindsay\nKaitlyn\nJulia\nAlexandria\nKristin\nAnna\nWhitney\nErika\nJordan\nMariah\nMonica\nKrystal\nMarissa\nBrandi\nKatelyn\nPatricia\nJenna\nLisa\nVeronica\nMelanie\nBriana\nGabrielle\nPaige\nLeah\nKaitlin\nDesiree\nMiranda\nKathleen\nApril\nDiana\nTara\nCasey\nKara\nCynthia\nHaley\nRachael\nAlexa\nCristina\nJulie\nHolly\nCaroline\nDominique\nIesha\nKatrina\nMeghan\nFelicia\nSabrina\nAna\nArielle\nMolly\nBrandy\nCarly\nMeagan\nNatasha\nKiara\nDeanna\nAdriana\nTabitha\nMercedes\nSavannah\nValerie\nKaren\nLeslie\nMargaret\nMonique\nAbigail\nDana\nKirsten\nSierra\nBreanna\nRaven\nSandra\nAshlee\nGabriela\nRebekah\nChelsey\nGina\nMadison\nCandace\nBritney\nEbony\nGabriella\nChloe\nPriscilla\nCarolina\nJillian\nLacey\nAshleigh\nBrenda\nAlisha\nAngelica\nMallory\nSydney\nCaitlyn\nJade\nBethany\nKendra\nCiara\nAngel\nJoanna\nKrista\nKaley\nLinda\nNancy\nSasha\nDestiny\nKaylee\nAutumn\nBarbara\nJaclyn\nJacquelyn\nKarina\nCandice\nCheyenne\nGrace\nHillary\nNichole\nCindy\nKasey\nYesenia\nCarrie\nCarolyn\nKelli\nSummer\nTatiana\nToni\nAlison\nStacey\nStacy\nEmma\nAudrey\nKristi\nLatoya\nMelinda\nHayley\nCierra\nClaudia\nCortney\nDevon\nBrittani\nDenise\nFaith\nJanelle\nKristine\nTeresa\nMarie\nAngelina\nRaquel\nRobin\nAmelia\nHope\nJessie\nSusan\nTheresa\nBridget\nNina\nSophia\nMadeline\nAriana\nSimone\nTia\nCara\nDevin\nJasmin\nTamara\nWendy\nDaniela\nNatalia\nRenee\nDeborah\nKarla\nCarla\nPamela\nShawna\nJenny\nRegina\nVirginia\nGloria\nNaomi\nGenesis\nHailey\nKari\nShaniqua\nZoe\nLydia\nMartha\nMelody\nRosa\nCarmen\nCassie\nMackenzie\nMichele\nPaula\nShana\nTina\nEvelyn\nTiara\nTierra\nColleen\nMeredith\nTracy\nAlissa\nFrances\nJazmine\nKeri\nKierra\nPrecious\nSharon\nBailey\nCecilia\nFrancesca\nKellie\nNadia\nAlejandra\nAubrey\nChelsie\nChristy\nMisty\nNathalie\nRuth\nShayna\nTori\nCallie\nEricka\nJudith\nKayleigh\nKristy\nKylie\nAimee\nAlexia\nAllyson\nCamille\nCiera\nHeidi\nJalisa\nJuliana\nKailey\nRobyn\nAdrianna\nJanet\nJoy\nJustine\nKassandra\nShayla\nTonya\nAnnie\nCharlotte\nDiamond\nJazmin\nJocelyn\nKatlyn\nKelley\nStefanie\nAdrienne\nAnita\nElisabeth\nHilary\nKaila\nKendall\nKenya\nVivian\nAlana\nAshton\nCarissa\nChristian\nDaphne\nMayra\nPatrice\nRachelle\nSonia\nTabatha\nTyler\nBrianne\nChanel\nChantel\nDaisy\nDakota\nEsther\nIris\nJanae\nKiera\nLori\nMarisa\nNikki\nTanya\nAlice\nCeleste\nDonna\nJacklyn\nJeanette\nJoanne\nLillian\nSofia\nSuzanne\nAnn\nAsia\nBonnie\nCarol\nCassidy\nClaire\nElise\nEva\nHanna\nJulianne\nKate\nKyla\nMaranda\nMiriam\nShaina\nTanisha\nTiffani\nAshlie\nCorinne\nDawn\nEllen\nJenifer\nJessenia\nJohanna\nKristie\nMaegan\nMaggie\nMia\nNikita\nRoxanne\nAisha\nCayla\nJanay\nKourtney\nLyndsey\nRandi\nSerena\nShantel\nSheila\nTasha\nChrista\nGiselle\nJaime\nJaimie\nJane\nKelsie\nKira\nLatasha\nLeanna\nLorena\nMeaghan\nAlina\nAnastasia\nAntoinette\nBeatriz\nBrittni\nCharlene\nCheryl\nChristen\nChristie\nDaniella\nElena\nHelen\nOctavia\nRose\nShakira\nAnne\nDemi\nIsabel\nJanice\nJoyce\nKali\nKeisha\nKenisha\nRochelle\nShirley\nStacie\nAbby\nAlanna\nArianna\nDesirae\nKaleigh\nKatharine\nKristyn\nLakeisha\nNorma\nRuby\nShanice\nShanika\nStaci\nStephany\nSylvia\nTania\nTessa\nYessenia\nAlisa\nAngelique\nAshlyn\nBeatrice\nBetty\nDiane\nJami\nLatisha\nMarilyn\nNoelle\nSandy\nTaryn\nAudra\nBlair\nCharity\nClarissa\nDeidre\nIeshia\nJamesha\nLacy\nLucy\nMaribel\nMichaela\nMollie\nRebeca\nTayler\nTracey\nAlexandrea\nAlysha\nBridgette\nEileen\nEmilie\nIsabella\nKaci\nKarissa\nKatelynn\nLarissa\nMacy\nMargarita\nMarina\nShanna\nShauna\nShelly\nTamika\nYolanda\nAshely\nBrenna\nElisa\nGenevieve\nIndia\nKirstie\nKrystle\nLeigh\nMarlene\nTammy\nBritni\nCasandra\nChantal\nCoral\nDorothy\nJana\nJosephine\nKathy\nKaty\nKaylin\nRita\nShelbi\nSherry\nSilvia\nTiana\nAlyson\nAngie\nBeverly\nBlanca\nDianna\nElissa\nGianna\nJena\nJessika\nJodi\nJustina\nKacie\nKalyn\nLaquisha\nLaurie\nLogan\nMandy\nMaritza\nNadine\nTerri\nTiffanie\nYvette\nAlaina\nAshli\nAshly\nBritany\nCarley\nChasity\nChristin\nCristal\nDebra\nDemetria\nDestinee\nDevan\nIvette\nJackie\nJanine\nJordyn\nJulianna\nKatlin\nKaylyn\nKelsi\nKiersten\nLacie\nLakendra\nLily\nMariana\nMarjorie\nMarsha\nMaya\nPrincess\nRhiannon\nStefani\nSusana\nViviana\nAileen\nAlycia\nAmie\nAyla\nCamila\nClara\nCorey\nEsmeralda\nJuanita\nKalie\nKerri\nLeanne\nLena\nLissette\nLoren\nMarcia\nMarisol\nMelina\nNora\nPaola\nPaulina\nRacheal\nRebeccah\nSharonda\nSymone\nTraci\nTrisha\nYvonne\nAlecia\nAlessandra\nAli\nAndria\nArlene\nBreanne\nBrittaney\nBrittnee\nCarina\nDara\nEunice\nGiovanna\nJaleesa\nJuana\nKerry\nKrystina\nLatesha\nLeticia\nLidia\nMckenzie\nMoriah\nNoemi\nRosemary\nSavanna\nShameka\nShanae\nShea\nSheena\nSonya\nStevie\nTanesha\nTiera\nAlexus\nAllyssa\nAnnette\nBelinda\nBeth\nChelsi\nChrystal\nCori\nDina\nEboni\nElaine\nEstefania\nGretchen\nGuadalupe\nHollie\nJanie\nJean\nJennie\nJerica\nJesenia\nJill\nKacey\nKaitlynn\nKala\nKanesha\nKimberley\nLatifah\nLaurel\nLea\nMaryann\nNicolette\nPorsha\nRhonda\nShaquita\nTracie\nValencia\nValeria\nAlesha\nAllie\nAlysia\nAnjelica\nAthena\nBobbi\nBrandie\nCarlee\nCatalina\nChristiana\nConnie\nDarlene\nDomonique\nElyse\nGwendolyn\nHeaven\nJanna\nJeniffer\nJessi\nJoelle\nJulissa\nKarly\nKatelin\nKaylie\nKenyatta\nKimberlee\nKyra\nLauryn\nLorraine\nMara\nMarisela\nMarla\nMyra\nSally\nShelbie\nSkye\nSkylar\nTalia\nTameka\nTkeyah\nAdrian\nAnais\nAurora\nBobbie\nBridgett\nBrigitte\nBrittanie\nBrittny\nCarlie\nCelia\nCelina\nChantelle\nChiquita\nCorina\nDayna\nDeandra\nDeidra\nEmilee\nFranchesca\nGeneva\nHalie\nIngrid\nJaimee\nJanessa\nJesse\nJoan\nJosie\nJuliette\nKarli\nKathrine\nKelsea\nKirstin\nKrysten\nLakesha\nLatrice\nLesley\nLiliana\nLizbeth\nLourdes\nLucia\nLynn\nMelisa\nMindy\nNicollette\nNoel\nQuanisha\nSade\nSarai\nSelena\nShanteria\nTess\nTiarra\nTyesha\nYasmin\nAerial\nAlex\nAlma\nAnabel\nBecky\nBreonna\nBria\nBrook\nBryanna\nCameron\nCasie\nCheyanne\nCristine\nDoris\nDulce\nEden\nEdith\nElaina\nElisha\nFarah\nFatima\nGeorgia\nGeraldine\nGladys\nImani\nIrene\nJanel\nJesica\nJohnna\nKasandra\nKasie\nKaterina\nKaycee\nKayley\nKeandra\nKeila\nKristal\nKrizia\nLana\nLaquita\nLatia\nLeigha\nMadeleine\nMadelyn\nMarian\nNikole\nParis\nRocio\nScarlett\nShakia\nShantell\nTeri\nVanesa\nVicky\nWhitley\nAbbey\nAnnmarie\nAsha\nBaby\nBillie\nBlake\nCaley\nCandy\nCari\nCaridad\nCherish\nChristi\nChynna\nCorrie\nCorrine\nDania\nDeja\nDevyn\nEliana\nFabiola\nGlenda\nHailee\nIlana\nIsabelle\nIsamar\nIvana\nJamila\nJanell\nJanette\nJeanne\nJerrica\nJewel\nJuliet\nKacy\nKeosha\nKiana\nKori\nLakeshia\nLashay\nLeila\nLuz\nLyndsay\nLynsey\nMaira\nMarcela\nMarcella\nMaura\nMaureen\nOlga\nPaulette\nRiley\nRyan\nSamara\nSelina\nShalonda\nShamika\nShani\nShantavia\nSidney\nSiobhan\nTangela\nTenisha\nTianna\nVannessa\nWhittney\nYasmine\nAdrianne\nAlia\nAshlynn\nAubree\nAvery\nAyana\nBetsy\nBreana\nBrielle\nBryana\nCarline\nCathryn\nCeara\nChandra\nCherie\nChina\nCiarra\nDeana\nDesire\nDolores\nEsperanza\nGeorgina\nHaleigh\nHali\nHallie\nHana\nHarley\nIrma\nIsis\nIvory\nJeannette\nJeannie\nJoann\nJolie\nKailyn\nKalee\nKassie\nKati\nKayle\nLaquesha\nLeandra\nLouise\nMandi\nMarkeisha\nMarlena\nMartine\nMiracle\nMonika\nNataly\nNia\nNikia\nPerla\nRacquel\nRikki\nSadie\nShakeria\nShanequa\nShelley\nSonja\nStarr\nStormy\nTamra\nTerra\nAlysa\nAnissa\nAntonia\nAryn\nAstrid\nBrea\nBritnee\nCandis\nCecelia\nChristal\nCorrina\nDanica\nDannielle\nDarcy\nFlor\nFrancheska\nFrancis\nGabriel\nIleana\nJacquelin\nJazzmine\nJoana\nJodie\nJudy\nKarlee\nKatarina\nKatheryn\nKaylan\nKeira\nKeyonna\nKiesha\nKortney\nKrysta\nKrystin\nKyle\nLaci\nLara\nLashonda\nLatonya\nLawanda\nLiana\nLiz\nLynette\nMagdalena\nMagen\nMalorie\nMarianna\nMarquita\nMartika\nMeranda\nMyeisha\nNiesha\nPauline\nPhylicia\nRene\nRichelle\nRoneisha\nRosemarie\nRoxana\nSage\nSamira\nSarina\nShakayla\nShaquana\nShari\nShatavia\nSherika\nSiera\nSkyler\nSusannah\nTatyana\nThalia\nTiesha\nTricia\nValarie\nVania\nAinsley\nAllysa\nAlyssia\nAngelia\nAraceli\nAriella\nAshlea\nAyanna\nAyesha\nBrittnay\nBrooklyn\nCarey\nCarli\nCarson\nCathy\nCecily\nChanelle\nChantell\nCharnelle\nCherelle\nCheri\nCristin\nEbonie\nEdna\nEleanor\nEssence\nFalon\nFelecia\nFrancisca\nHilda\nIliana\nInfant\nJalissa\nJasmyn\nJayme\nJelisa\nJerika\nJohana\nJuliann\nKaela\nKailee\nKarlie\nKendal\nKenesha\nKenia\nKeondra\nKia\nKiley\nKristian\nKylee\nLacee\nLaken\nLeann\nLia\nLillie\nLisbeth\nMadalyn\nMargo\nMariel\nMarion\nMarkie\nMarta\nMartina\nMellisa\nMellissa\nMelyssa\nMichael\nMikaela\nMilagros\nMona\nNakia\nNatalya\nNichelle\nNicolle\nPatience\nPhoebe\nPorsche\nRachele\nRachell\nReva\nRonisha\nRosalie\nRoxanna\nSamatha\nShanelle\nShanique\nShatoya\nShawn\nSherri\nSinead\nStacia\nStefany\nTabetha\nTawny\nTierney\nTrista\nVicki\nXiomara\nYadira\nAbril\nAja\nAlesia\nAlli\nAlyse\nAmalia\nAmaris\nAngelita\nAnnika\nAracely\nAshlei\nAysia\nBernice\nBlaire\nBreona\nBrionna\nBritani\nCamisha\nCarole\nCaryn\nCassondra\nChandler\nChannel\nCharmaine\nChastity\nChyna\nCodie\nCody\nColby\nConstance\nCourtnee\nDamaris\nDanika\nDanisha\nDelaney\nDelia\nDenisha\nDenisse\nDestini\nEbonee\nElla\nElyssa\nEmerald\nEmilia\nEstrella\nEugenia\nEve\nFallon\nFarrah\nFelisha\nGia\nGillian\nHarmony\nHelena\nJackeline\nJada\nJaymie\nJayna\nJeanine\nJesika\nJody\nKaneisha\nKanisha\nKeara\nKelcie\nKeren\nKinsey\nKirsty\nKirstyn\nKristan\nLakevia\nLakisha\nLaquanda\nLashawnda\nLatavia\nLeeann\nLeeanna\nLeilani\nLesly\nLexi\nLila\nLinsey\nLoretta\nMaricela\nMicah\nMildred\nMiriah\nMisti\nMontana\nMyranda\nMyriah\nNandi\nNathaly\nOdalys\nPetra\nReba\nRebekka\nRenita\nRoberta\nSelene\nShaneka\nShanell\nShantoria\nShatara\nShateria\nShatoria\nShawanda\nShawnee\nShay\nSheree\nSloane\nSommer\nSophie\nSpencer\nSusanne\nTamesha\nTaneisha\nTashara\nTequila\nTisha\nTyiesha\nValentina\nYajaira\nYanelis\nAda\nAkilah\nAkira\nAlannah\nAleshia\nAlise\nAnamaria\nAnnabel\nAnsley\nAria\nAriell\nArika\nAshanti\nAubrie\nAundrea\nBarbie\nBecca\nBelkis\nBertha\nBrandee\nBreeanna\nBrieanna\nBrigette\nBrittini\nCali\nCalli\nCamilla\nCassaundra\nCassia\nCatrina\nChanell\nCharlie\nChaya\nChelsee\nChelsy\nChrissy\nClare\nCorissa\nCory\nCrista\nDanelle\nDanna\nDanyel\nDanyelle\nDarielle\nDayana\nDena\nDeondra\nDestinie\nDiandra\nDixie\nDominque\nDrew\nElia\nElsa\nElvira\nEster\nEvette\nFiona\nGeena\nGiuliana\nGracie\nGraciela\nGriselda\nHalley\nHazel\nIeisha\nInez\nIvonne\nIvy\nJanea\nJannette\nJayne\nJazlyn\nJazmen\nJazmyne\nJeana\nJenelle\nJovanna\nKaelyn\nKandace\nKandice\nKatlynn\nKayleen\nKaylen\nKayli\nKeely\nKelci\nKelsy\nKerstin\nKeturah\nKeyondra\nKiarra\nKierstin\nKirsti\nKodi\nKrystel\nLanisha\nLeeanne\nLina\nLindy\nLisandra\nLisette\nLiza\nLizeth\nLizzette\nLoni\nLuciana\nMakeda\nMarah\nMariam\nMarianne\nMarielle\nMarkesha\nMaxine\nMelonie\nMicaela\nMikayla\nMina\nNastassia\nNatacha\nNatali\nNatisha\nNiki\nNoelia\nPaloma\nPassion\nPearl\nPortia\nPricilla\nPriya\nRebeka\nRenae\nRhea\nRiana\nRoneshia\nRubi\nSabina\nSallie\nSammantha\nSamone\nShakara\nShakiyla\nShannel\nShante\nShantia\nShantrell\nShaquanda\nSharhonda\nSheri\nSheryl\nSkyla\nStella\nStephenie\nSuzette\nTakisha\nTamera\nTanika\nTaylar\nTera\nTyanna\nTyra\nVianca\nYael\nYamilet\nYazmin\nZakia\nZoraida\nAdria\nAiesha\nAlayna\nAlba\nAlberta\nAleah\nAlexsis\nAlexys\nAlisia\nAlivia\nAlix\nAllisha\nAlyxandra\nAmara\nAmari\nAmberly\nAmi\nAndie\nAnisha\nAnnabelle\nAnnemarie\nAquila\nAudriana\nAustin\nAva\nAysha\nBabygirl\nBaylee\nBernadette\nBionca\nBreann\nBree\nBriona\nBritny\nBritteny\nCarlene\nCassey\nCatarina\nCelena\nCharley\nCherokee\nCindi\nCinnamon\nConsuelo\nCora\nCorneisha\nCristian\nCristy\nCrystle\nCyndi\nDanae\nDaniele\nDaphney\nDavina\nDebbie\nDeloris\nDionne\nElana\nEleni\nEliza\nEmmanuela\nEryn\nEulalia\nFlorence\nFrankie\nFredricka\nGisselle\nGrecia\nHailie\nHaylee\nHolli\nImari\nImelda\nIndigo\nJaclynn\nJacquelynn\nJalesa\nJalessa\nJamia\nJammie\nJanaye\nJanielle\nJazmyn\nJeanna\nJenae\nJenniffer\nJeri\nJerri\nJessyca\nJohnisha\nJordon\nJoselyn\nJosette\nJoslyn\nJourdan\nKady\nKami\nKaryn\nKasi\nKatia\nKaylea\nKeaira\nKeiona\nKeirra\nKeneisha\nKeneshia\nKeyana\nKhadija\nKiah\nKianna\nKorey\nKristel\nKristyne\nKyara\nLakia\nLakin\nLaporsha\nLatosha\nLeondra\nLois\nLora\nLoriann\nLorna\nLucero\nLucinda\nLuisa\nMacey\nMaci\nMacie\nMagan\nMalika\nMalinda\nMallorie\nMarci\nMarcy\nMargaux\nMarguerite\nMariela\nMarilu\nMarley\nMarquisha\nMarshae\nMarybeth\nMattie\nMayte\nMckenna\nMelia\nMelodie\nMerissa\nMiesha\nMisha\nNajee\nNisha\nNissa\nPhilicia\nPolly\nPorscha\nQuaneisha\nQuanesha\nQuinn\nRamona\nRanisha\nRayna\nReanna\nRebecka\nReema\nReina\nRhoda\nRodneshia\nRomina\nSable\nSamaria\nSarena\nShakendra\nShakera\nShambria\nShanay\nShandricka\nShanea\nShara\nSharla\nSharmaine\nShavonda\nShenika\nSiara\nSky\nSpring\nSteffany\nStephane\nStephani\nTakia\nTalisha\nTana\nTaneka\nTarah\nTarra\nTatianna\nTempest\nTerika\nTerry\nTesla\nTherese\nTiffiny\nToria\nTristan\nTyeisha\nUnique\nVannesa\nWanda\nYaritza\nYu\nZenaida\nZoey\nAshley\nJessica\nBrittany\nAmanda\nSamantha\nStephanie\nSarah\nJennifer\nNicole\nLauren\nChelsea\nKayla\nEmily\nMegan\nDanielle\nVictoria\nElizabeth\nAmber\nTaylor\nRachel\nCourtney\nAlexandra\nMichelle\nMelissa\nRebecca\nTiffany\nChristina\nAlexis\nHeather\nJasmine\nKatherine\nShelby\nAndrea\nKimberly\nKelsey\nAlyssa\nSara\nHannah\nBrianna\nNatalie\nKelly\nErica\nMary\nVanessa\nMorgan\nCrystal\nLindsey\nKaitlyn\nKristen\nMaria\nLaura\nShannon\nBrooke\nCaitlin\nAllison\nKatie\nCassandra\nJamie\nAmy\nBrittney\nKathryn\nJordan\nErin\nOlivia\nAlexandria\nAlicia\nGabrielle\nAriel\nJenna\nMonica\nAngela\nHaley\nBriana\nChristine\nKristina\nKatelyn\nBianca\nKristin\nCatherine\nJacqueline\nErika\nMarissa\nPaige\nAnna\nLindsay\nLisa\nJulia\nMelanie\nCaroline\nVeronica\nMariah\nLeah\nDominique\nBrandi\nSabrina\nRachael\nCasey\nNatasha\nApril\nMadison\nKathleen\nKrystal\nPatricia\nHolly\nTara\nSavannah\nCynthia\nJulie\nMeghan\nShanice\nAlexa\nAngelica\nDestiny\nWhitney\nKaitlin\nKatrina\nMiranda\nBreanna\nDesiree\nKara\nMargaret\nCristina\nBrandy\nSierra\nKiara\nMeagan\nKaren\nMonique\nGabriela\nSydney\nCaitlyn\nKaylee\nValerie\nAbigail\nPriscilla\nChelsey\nTabitha\nCiara\nDeanna\nAna\nGina\nMolly\nAdriana\nHayley\nKaley\nGabriella\nSandra\nRebekah\nDiana\nLeslie\nCarly\nKarina\nAshleigh\nAlisha\nAshlee\nGrace\nBritney\nJade\nMercedes\nAngel\nBethany\nMallory\nTatiana\nAutumn\nCandice\nCindy\nEbony\nRaven\nKirsten\nKrista\nChloe\nMackenzie\nCheyenne\nCarolina\nDana\nYesenia\nEmma\nHailey\nHillary\nArielle\nJaclyn\nAmelia\nRaquel\nBarbara\nAlison\nBrenda\nFelicia\nJillian\nKendra\nSummer\nJoanna\nNichole\nCandace\nTamara\nAudrey\nVirginia\nTeresa\nCarrie\nKasey\nKassandra\nLacey\nCarolyn\nAllyson\nMadeline\nTia\nDenise\nEvelyn\nStacey\nAriana\nDaniela\nDevin\nDiamond\nMelinda\nGenesis\nJacquelyn\nSophia\nKendall\nNina\nBrittani\nTori\nLinda\nRenee\nRobin\nStacy\nToni\nNancy\nAsia\nAubrey\nFaith\nGloria\nTiara\nClaudia\nJocelyn\nSasha\nClaire\nKelli\nMarie\nAngelina\nCarmen\nCierra\nJasmin\nLydia\nMarisa\nCamille\nDeborah\nDonna\nJanelle\nFrancesca\nNathalie\nPamela\nTheresa\nAnne\nCara\nCarissa\nKierra\nPrecious\nTyler\nAlejandra\nColleen\nJanet\nKiera\nNatalia\nAimee\nCharlotte\nKellie\nKristy\nBridget\nDaniella\nJessie\nNikki\nRegina\nRose\nShaina\nTracy\nAngelique\nAshton\nBailey\nCarla\nChelsie\nKarla\nMartha\nAdrianna\nChristy\nHilary\nKayleigh\nKristi\nKylie\nRobyn\nRuth\nTierra\nAlexia\nCassidy\nKaleigh\nKelley\nShawna\nSusan\nTina\nBria\nCortney\nNaomi\nShayla\nCassie\nElise\nLogan\nMelody\nMeredith\nNicolette\nRachelle\nRandi\nShayna\nTiffani\nChrista\nHanna\nIesha\nIsabel\nKristine\nShakira\nZoe\nAntoinette\nChristie\nDevon\nHeidi\nJazmine\nMarina\nTessa\nAnn\nElisabeth\nEsther\nHope\nJazmin\nKatlyn\nSharon\nStefanie\nAdrienne\nDaisy\nJaime\nJustine\nKari\nSimone\nAshlyn\nKelsie\nKiana\nLacy\nLatoya\nCarol\nEricka\nKailey\nAlana\nAlissa\nCayla\nCiera\nFrances\nKaila\nKira\nShirley\nSylvia\nTanisha\nTanya\nBrenna\nBridgette\nBrittni\nChristian\nJenny\nJoy\nKala\nKatelynn\nKenya\nKiersten\nLillian\nPaola\nPatrice\nRosa\nWendy\nBonnie\nIndia\nIsabella\nKarissa\nKourtney\nMia\nMichele\nSheila\nSonia\nSuzanne\nCecilia\nClarissa\nElena\nKaylyn\nKelsea\nMarilyn\nNadia\nShanna\nTalia\nTiana\nValeria\nCarley\nEllen\nJami\nJessenia\nLorena\nLyndsey\nParis\nRochelle\nShana\nSofia\nTracey\nCasandra\nChanel\nEva\nJoanne\nKatharine\nKyla\nLeanne\nPaula\nSavanna\nYvonne\nAshlie\nCharlene\nDawn\nDorothy\nGiselle\nIrene\nJalisa\nJanice\nJenifer\nJordyn\nLatisha\nMarjorie\nMiriam\nRoxanne\nRuby\nYessenia\nAlice\nAnnie\nArianna\nChantel\nCharity\nJeanette\nJohanna\nKelsi\nKirstie\nMaya\nNoelle\nRebeca\nTaryn\nAbby\nAlexus\nAlyson\nAngie\nBritany\nCheryl\nClara\nDevan\nElisa\nHelen\nJana\nJuliana\nLatifah\nLeticia\nLexus\nMaggie\nMckenzie\nMeaghan\nPeyton\nSandy\nShauna\nVivian\nAlaina\nAlysha\nBeatrice\nBeatriz\nBrianne\nCallie\nChasity\nConstance\nCristal\nDiane\nHeaven\nJanae\nJudith\nKacie\nKaitlynn\nKori\nMacy\nMelisa\nStaci\nTayler\nTianna\nAnastasia\nCeleste\nDelaney\nHarley\nHollie\nJacklyn\nJulianne\nKali\nKaty\nKristyn\nLatasha\nMadelyn\nMayra\nMisty\nNikita\nOctavia\nTasha\nYolanda\nAlexandrea\nAlina\nBrittanie\nDallas\nEmilee\nGeorgia\nHali\nJanay\nJena\nJuanita\nJudy\nKaylin\nKeisha\nKyra\nLori\nMichaela\nNadine\nShaniqua\nShelbi\nYasmine\nYvette\nAlessandra\nAnita\nBrandie\nBreanne\nCarina\nChantal\nCorinne\nDebra\nHaleigh\nIris\nIvana\nKacey\nKirstin\nLeila\nLena\nLiliana\nLissette\nLucia\nMaranda\nMollie\nShantel\nShea\nTabatha\nBelinda\nBryanna\nChelsi\nCoral\nDakota\nGianna\nJesenia\nJill\nJosephine\nKatlin\nKristian\nMarisol\nMaritza\nNoemi\nRonisha\nShelbie\nSusana\nTerri\nAshly\nBeverly\nBreana\nCatalina\nCatrina\nChandler\nCharmaine\nChrystal\nDemi\nElyse\nJanine\nJoann\nKate\nKeri\nKerri\nKrystina\nLarissa\nLiana\nMariana\nMarianne\nMarisela\nMarlena\nMoriah\nRosemary\nShameka\nStephany\nTania\nTricia\nYasmin\nBillie\nBlair\nCarlie\nChristen\nJane\nKasie\nKatelin\nLaurie\nLauryn\nLeigh\nLily\nLoren\nMandy\nMara\nMargarita\nNorma\nSarai\nScarlett\nSelena\nSkye\nSophie\nSymone\nTatyana\nTonya\nTrisha\nTyesha\nAileen\nAvery\nBetty\nCamila\nChristin\nCorey\nDarian\nEboni\nEileen\nFatima\nGenevieve\nIvette\nJaimie\nJanna\nJennie\nJessika\nJoyce\nJuliet\nKathrine\nKaylie\nKristie\nKrysta\nLakeisha\nRacheal\nSally\nTammy\nAlanna\nAnnette\nBobbie\nCameron\nCarlee\nCarson\nCelia\nCheyanne\nDamaris\nDaphne\nDeidra\nDestinee\nJanell\nJanie\nJazmyn\nKatarina\nKenia\nKrysten\nLayla\nLea\nLeanna\nLesley\nLucy\nNakia\nNikole\nPrincess\nSerena\nShaniece\nSheena\nSilvia\nSkylar\nStacie\nStevie\nTamika\nTraci\nValencia\nAbbey\nAlecia\nAlycia\nAshanti\nBritni\nCory\nDevyn\nDina\nDoris\nEdith\nElaine\nElisha\nElissa\nEstefania\nFranchesca\nHaylee\nIngrid\nJanessa\nJayme\nJesse\nJoan\nJodi\nJulianna\nJustina\nKaela\nKarly\nKeira\nKrystle\nLara\nLeann\nLizbeth\nMarcia\nMarta\nMindy\nNataly\nNoel\nNora\nRhonda\nRita\nShakia\nShanique\nSidney\nSkyler\nTatianna\nThalia\nTiffanie\nTkeyah\nAisha\nAli\nAlma\nAlysia\nAnais\nAnsley\nAntonia\nBlanca\nBrigitte\nCasie\nDara\nDesirae\nDomonique\nEmilie\nGabriel\nIvy\nJaimee\nJamila\nJerica\nKaci\nKarlee\nKasandra\nKathy\nKristal\nLynette\nLynn\nMaegan\nMarla\nMarlee\nMarsha\nPayton\nRaina\nRoxana\nSade\nShanika\nShaquille\nSherry\nTanesha\nTiera\nTrinity\nAlyssia\nAngelia\nAraceli\nAshely\nAudra\nAva\nBrittaney\nBrook\nBrooklyn\nCori\nDanyelle\nEden\nEleni\nEsmeralda\nFallon\nGeraldine\nGladys\nGwendolyn\nIliana\nIsis\nJamesha\nJasmyn\nJuliette\nKalie\nKaycee\nKayley\nKylee\nLakendra\nLourdes\nLucero\nLuz\nLyndsay\nMaribel\nMarlene\nMaureen\nMonika\nNia\nReina\nShakera\nShanequa\nShanise\nShantell\nSharonda\nShelley\nTequila\nTeri\nViviana\nAlesha\nAlex\nAllie\nAmie\nAnnmarie\nAsha\nAstrid\nChina\nChiquita\nChristi\nChristiana\nCody\nConnie\nCorrine\nDarlene\nDeandra\nDeidre\nFrancheska\nHallie\nHolli\nHunter\nImani\nIsabelle\nIvanna\nJaleesa\nJaqueline\nJeanine\nJerrica\nJodie\nJuana\nKalyn\nKaterina\nKenisha\nKirby\nLacie\nLana\nLaquisha\nLatavia\nLaurel\nLee\nLina\nLynsey\nMadeleine\nMallorie\nMelina\nMikaela\nMiracle\nMontana\nNikia\nQuanisha\nRyan\nSamara\nShanae\nShaneka\nShantavia\nShari\nShelly\nTess\nValentina\nVanesa\nAdrianne\nAlisa\nAlysa\nAngeline\nAnjelica\nArianne\nBecky\nBernice\nBeth\nBrandee\nBreann\nBree\nBrittnie\nCady\nCali\nCari\nCassondra\nCathleen\nChantelle\nCherish\nChynna\nDania\nDeja\nDemetria\nDesire\nDianna\nEllie\nEmilia\nFelisha\nFrancis\nGeorgina\nGuadalupe\nIeshia\nJanette\nJeannie\nJoelle\nJoselyn\nKacy\nKailyn\nKarlie\nKarrie\nKatia\nKaylynn\nKeandra\nKeara\nKeely\nKeosha\nKerry\nLisette\nLora\nMagen\nMakenzie\nMarcela\nMarcella\nMariel\nMyra\nNichelle\nPauline\nPerla\nQuanesha\nSadie\nSelina\nShakeria\nSonya\nTerra\nAdrian\nAja\nAlayna\nAlba\nAlesia\nAmaris\nAnnamarie\nAshli\nAshlynn\nAurora\nAyanna\nAyla\nBaby\nBrea\nBridgett\nCarli\nCelina\nCodi\nCorina\nDarcy\nDelia\nDestini\nFelecia\nGillian\nGraciela\nIleana\nIman\nJackelyn\nJada\nJanee\nJasmyne\nJody\nJulissa\nKailee\nKalynn\nKanisha\nKarah\nKarli\nKatheryn\nKati\nKenesha\nKenyatta\nKeyanna\nKimberley\nLeandra\nLia\nLinsey\nLizette\nMaddison\nMagan\nMicaela\nMikayla\nNicolle\nPatience\nPaulina\nPortia\nPricilla\nRegan\nRene\nRikki\nRiley\nRoberta\nRosalyn\nSamatha\nShakara\nShante\nSterling\nStormy\nTamesha\nTawny\nTierney\nTonisha\nViolet\nWanda\nAleah\nAllyssa\nAnabel\nAndreina\nAnnabel\nAnnabelle\nAriella\nAshlea\nAshlei\nAustin\nAyesha\nBethanie\nBetsy\nBrieanna\nBrielle\nBritny\nBryana\nCassey\nCathryn\nCecelia\nChanning\nChelsy\nCherie\nColby\nColette\nCydney\nDanica\nDelana\nDenisse\nDonielle\nDora\nEbonee\nEleanor\nElle\nEugenia\nFantasia\nFarrah\nFlor\nGinger\nGiovanna\nGlenda\nHalie\nHaylie\nHolley\nIvonne\nJacinda\nJalissa\nJanel\nJean\nJeanna\nJenelle\nJesica\nJewel\nKalee\nKallie\nKandace\nKandice\nKaylan\nKelsy\nKia\nKiandra\nKiley\nKimberlee\nKinsey\nLaci\nLanie\nLaporsha\nLatonya\nLatrice\nLeeann\nLidia\nLilian\nLouisa\nLouise\nMandi\nMariam\nMarianna\nMaricela\nMariela\nMarion\nMarquita\nMartika\nMaryann\nMaxine\nMeghann\nMicah\nMilagros\nNakita\nNandi\nPaloma\nPilar\nPorscha\nPorsche\nPorsha\nRacquel\nReba\nRhiannon\nRosio\nRubi\nSamone\nSavanah\nShani\nSonja\nStefani\nStella\nStephani\nSusanna\nSusannah\nTaisha\nTaneisha\nTanika\nTashara\nTrista\nVicky\nWhitley\nYasmeen\nAda\nAleshia\nAlexander\nAlisia\nAmberly\nAndria\nAngelic\nAnnemarie\nArelys\nArika\nArlene\nAyana\nBobbi\nBrittny\nCarey\nCassy\nChandra\nChanelle\nChante\nCharley\nCharlie\nChassidy\nCheri\nChristal\nCiarra\nCodie\nCorine\nCourtnee\nDannielle\nDeana\nDrew\nDulce\nElsa\nElyssa\nEmely\nEunice\nGeneva\nGenna\nGisselle\nGrecia\nHana\nJazmyne\nJeannette\nJeannine\nJeniffer\nJeri\nJessalyn\nJessi\nJohana\nJonisha\nJordon\nJosefina\nJosie\nJourdan\nKacee\nKarisa\nKarley\nKarson\nKassie\nKatiana\nKaylah\nKayli\nKeiana\nKeona\nKeyla\nKianna\nKierstin\nKimber\nLacee\nLaken\nLashay\nLashonda\nLatesha\nLatoria\nLeona\nLiza\nLoni\nLuisa\nMabel\nMacie\nMadalyn\nMakayla\nManuela\nMarian\nMarielena\nMarkeisha\nMarkesha\nMarkita\nMarquisha\nMayte\nMelonie\nMireya\nMona\nMyia\nMyranda\nNatacha\nNisha\nOlga\nPaulette\nPhoebe\nRaechel\nReanna\nRhianna\nSamaria\nShakayla\nShanay\nShannan\nSharika\nShawn\nShawnee\nSheri\nSherrie\nSky\nSloane\nSommer\nStacia\nTameka\nTempest\nTesla\nTrina\nVeronique\nYamile\nYanira\nZakiya\nAdria\nAleisha\nAlexi\nAlix\nAllegra\nAlly\nAlondra\nAlyse\nAmalia\nAnnelise\nAthena\nAubrie\nAudrianna\nAundrea\nBernadette\nBrianda\nBrionna\nBritnie\nBrittnee\nCaitlynn\nCamisha\nCarline\nCeara\nChantell\nCharlee\nCharmayne\nChelcie\nCherelle\nCinthia\nClare\nConner\nConnor\nCorissa\nCrysta\nDakotah\nDanelle\nDaniel\nDanisha\nDaria\nDarien\nDayana\nDaysha\nDeena\nDeirdre\nDelicia\nDenisha\nDeondra\nDestiney\nDianne\nDominque\nEdna\nEdwina\nElana\nEliza\nEmerald\nEssence\nEstela\nEvan\nGabriele\nGena\nGeorgette\nGracie\nGretchen\nGriselda\nHaven\nHilda\nIlana\nImari\nJackie\nJacy\nJakira\nJalesa\nJamecia\nJameka\nJanaye\nJanea\nJayla\nJenee\nJesika\nJolene\nJoslyn\nJulienne\nJulisa\nJune\nKamilah\nKaneisha\nKaylen\nKelby\nKelcie\nKeturah\nKim\nKindra\nKirsti\nKirstyn\nKorina\nKortney\nKrizia\nKrystin\nKyrsten\nLakeshia\nLakisha\nLaquanda\nLatia\nLatricia\nLeia\nLeilani\nLexie\nLilly\nLynnette\nMagda\nMaia\nMalia\nMalika\nMargie\nMarley\nMckayla\nMellissa\nMelony\nMercedez\nMerissa\nMiesha\nMika\nMonet\nNaomie\nNathaly\nNelly\nNicola\nNicollette\nPetra\nQuaneisha\nRachele\nRamona\nRaneisha\nRashida\nReagan\nRena\nRenae\nRichelle\nRocio\nRoneisha\nSamira\nSammantha\nSarina\nSerina\nShamari\nShanell\nShanelle\nShanese\nShannen\nShanteria\nShantoria\nShantrell\nSharice\nShauni\nShauntavia\nShelbey\nShenequa\nShenika\nShericka\nSherri\nSindy\nSkyla\nSoraya\nSpencer\nStefania\nStephania\nStephannie\nStorm\nSydnie\nTabetha\nTarra\nTenisha\nTerry\nThea\nTiare\nTiesha\nTracie\nTreasure\nTyana\nTyeisha\nTyra\nVicki\nWendi\nYazmin\nYuri\nAbrianna\nAkilah\nAlena\nAlia\nAlivia\nAliya\nAllysa\nAmani\nAmara\nAmira\nAnamaria\nAnastacia\nAndriana\nAngelena\nAngelita\nAria\nAriane\nAubree\nAubry\nBlake\nBonita\nBreauna\nBritnee\nBrittnay\nBrynn\nCaley\nCalli\nCandis\nCaressa\nCarolann\nCasi\nCatelyn\nCayleigh\nCharnelle\nChaya\nChristianna\nChristopher\nChyna\nCora\nCorie\nCorinna\nCrista\nCristin\nCristine\nDalia\nDanae\nDarby\nDaryl\nDavid\nDavina\nDebbie\nDelores\nDena\nDeonna\nDeshawn\nDesiray\nDestany\nDiandra\nDolores\nElexis\nEliana\nElla\nEloisa\nElysa\nEmelia\nEmiley\nEmmanuella\nEpiphany\nErikka\nErinn\nEryn\nEsperanza\nEstefany\nEstephanie\nEulalia\nEve\nFabiola\nFalon\nFarah\nFaye\nFrancine\nGeena\nGiuliana\nHailee\nHalle\nHayden\nHazel\nHelena\nIda\nIrma\nIvory\nJacquelin\nJacquelynn\nJakia\nJalecia\nJamey\nJamia\nJaneen\nJaymi\nJazzmen\nJazzmine\nJeanne\nJelisa\nJelissa\nJenniffer\nJessa\nJessy\nJohanne\nJohnisha\nJohnna\nJoselin\nJuliann\nKalisha\nKalli\nKanesha\nKarena\nKarmen\nKarolina\nKaryn\nKatey\nKatheryne\nKaytlyn\nKeanna\nKeiara\nKelci\nKeneisha\nKenyetta\nKenzie\nKeondra\nKeonna\nKera\nKeshia\nKeyana\nKhadijah\nKhristina\nKiarra\nKieara\nKrystyna\nKyara\nKyle\nKyleigh\nLaila\nLakeitha\nLashae\nLashawnda\nLatosha\nLeigha\nLenora\nLexi\nLianna\nLillie\nLinnea\nLiz\nLucinda\nMacey\nMagaly\nMaira\nMalissa\nMallori\nMargot\nMari\nMartina\nMarybeth\nMattie\nMaura\nMeagen\nMechelle\nMeggan\nMelodie\nMeranda\nMichael\nMichell\nMiriah\nMisti\nMyriah\nNakisha\nNatali\nNateria\nNathalia\nNefertiti\nNichol\nNiesha\nNiki\nNikkita\nNisa\nOdalys\nParris\nPhylicia\nPhyllis\nPorche\nQuaneshia\nRachell\nRana\nRebeccah\nRebeka\nReem\nRenesha\nRenisha\nReyna\nRonnesha\nRoseline\nSage\nSamia\nSantana\nSarafina\nSascha\nSchyler\nSeaira\nShabria\nShae\nShakeila\nShakila\nShamira\nShandrea\nShanea\nShanel\nShanon\nShantal\nShantelle\nShatara\nShavontae\nShawanda\nShay\nShelia\nSherell\nShyla\nSiera\nSigourney\nSolange\nStar\nSteffanie\nSteffany\nStormie\nTakira\nTalisha\nTameshia\nTamra\nTanasia\nTaquila\nTarah\nTasia\nTawanna\nTaylar\nTegan\nTherese\nTiarra\nTiona\nTorri\nTyanna\nValarie\nValery\nVannessa\nVera\nXiomara\nYanelis\nYarelis\nYashira\nYessica\nAshley\nJessica\nBrittany\nSamantha\nSarah\nAmanda\nStephanie\nTaylor\nEmily\nNicole\nAmber\nDanielle\nVictoria\nKayla\nJennifer\nElizabeth\nLauren\nRachel\nAlexis\nMegan\nChelsea\nCourtney\nJasmine\nAlexandra\nRebecca\nMelissa\nMichelle\nChristina\nTiffany\nKatherine\nAlyssa\nHeather\nHannah\nBrianna\nMorgan\nSara\nShelby\nKelsey\nKaitlyn\nNatalie\nAndrea\nShannon\nErica\nKimberly\nMary\nBrooke\nKelly\nLindsey\nCrystal\nVanessa\nAllison\nHaley\nLaura\nMaria\nCaitlin\nKristen\nErin\nAlexandria\nOlivia\nKatelyn\nSavannah\nJordan\nMarissa\nBriana\nBrittney\nAlicia\nPaige\nAmy\nCassandra\nKathryn\nGabrielle\nCatherine\nAnna\nJamie\nKatie\nJenna\nJulia\nAngela\nBianca\nKristina\nJacqueline\nMadison\nMonica\nErika\nAlexa\nKassandra\nSabrina\nChristine\nAriel\nBreanna\nKrystal\nCaroline\nCasey\nDominique\nBrandi\nVeronica\nMelanie\nKristin\nLindsay\nAbigail\nWhitney\nLisa\nMariah\nMeghan\nSierra\nNatasha\nRachael\nPatricia\nKaitlin\nCynthia\nDiana\nAngelica\nApril\nKathleen\nSydney\nCheyenne\nLeah\nDestiny\nHolly\nMiranda\nSummer\nDeanna\nCristina\nGabriela\nGabriella\nJulie\nCarly\nKarina\nMolly\nRebekah\nJade\nMeagan\nTara\nKara\nTori\nAna\nMargaret\nShanice\nTatiana\nBethany\nHayley\nKaley\nKatrina\nAdriana\nAshleigh\nKiara\nEmma\nCaitlyn\nCiara\nAudrey\nHailey\nMercedes\nJillian\nLeslie\nAshlee\nCarolina\nCindy\nGina\nRaven\nDesiree\nKaren\nMonique\nAutumn\nDaniela\nFelicia\nBrandy\nChelsey\nCierra\nTabitha\nYesenia\nAlisha\nKaylee\nSophia\nBritney\nDana\nBria\nPriscilla\nBailey\nKendra\nNichole\nSandra\nChloe\nJaclyn\nMackenzie\nAlison\nDiamond\nGrace\nAngel\nJacquelyn\nClaudia\nLacey\nValerie\nKendall\nAlexia\nKirsten\nBrenda\nJoanna\nMarisa\nRaquel\nJessie\nMarie\nTamara\nTiara\nAmelia\nBarbara\nKasey\nMadeline\nMallory\nNatalia\nSavanna\nAnastasia\nAngelina\nEbony\nJasmin\nNikki\nAriana\nJazmine\nKatelynn\nNancy\nSasha\nAshlyn\nCarolyn\nColleen\nJazmin\nTierra\nBrittani\nCarrie\nJocelyn\nMarina\nDevin\nKatlyn\nMelinda\nStacey\nSusan\nCandice\nDaniella\nFaith\nTessa\nCandace\nCiera\nJanelle\nKelli\nKristine\nIsabella\nKristy\nNaomi\nRobin\nVirginia\nAsia\nKrista\nLinda\nRosa\nSofia\nZoe\nAlexus\nAlissa\nAllyson\nBridget\nCarissa\nPamela\nAlana\nAlejandra\nRenee\nTeresa\nGenesis\nKarla\nLogan\nMichaela\nDakota\nKenya\nLydia\nNicolette\nSharon\nGloria\nKierra\nMaya\nCara\nCassidy\nCassie\nCharlotte\nChelsie\nClaire\nDenise\nKarissa\nTia\nTyler\nArielle\nCarmen\nNina\nJoy\nKelsie\nMichele\nNathalie\nAubrey\nChandler\nDaisy\nFrances\nKaitlynn\nKelley\nToni\nAdrienne\nAngelique\nMeredith\nMia\nNadia\nRuth\nShayla\nTiffani\nAdrianna\nDeborah\nEvelyn\nHarley\nHope\nKristi\nCamille\nChristy\nElisabeth\nJeanette\nKayleigh\nMelody\nChanel\nHanna\nJenny\nJordyn\nKellie\nRuby\nTrisha\nDonna\nEva\nMariana\nPrecious\nRachelle\nRegina\nRobyn\nShawna\nStacy\nCarla\nCecilia\nHeidi\nIsabel\nLeticia\nTanya\nTheresa\nDorothy\nGiselle\nShaina\nStephany\nThalia\nDevon\nEsther\nKailey\nKiana\nKylie\nMckenzie\nRose\nTasha\nArianna\nAshton\nChristian\nElisa\nIesha\nJaime\nJanet\nJohanna\nJudith\nKaila\nMaggie\nPaula\nPeyton\nTina\nAimee\nCarina\nCortney\nEllen\nEricka\nHelen\nHillary\nKali\nMartha\nMikayla\nPaola\nStefanie\nTiana\nAlyson\nAnn\nBryanna\nCayla\nFrancesca\nHaylee\nKira\nMaegan\nRochelle\nShirley\nSkyler\nTayler\nAnne\nBridgette\nElise\nGuadalupe\nJuliana\nLorena\nValeria\nAnissa\nBrenna\nChrista\nChristie\nClarissa\nLatoya\nSade\nShayna\nSimone\nTanisha\nTiera\nAnnie\nBeatriz\nCeleste\nCelina\nCharity\nKadijah\nKaleigh\nKari\nLillian\nMeaghan\nPayton\nShantel\nSonia\nTracy\nVivian\nAntoinette\nKaylin\nKiersten\nMarilyn\nMayra\nAllie\nBrianne\nCarley\nChasity\nDawn\nIvana\nJane\nJustine\nKatarina\nLyndsey\nMarisol\nWendy\nAileen\nAlina\nAlisa\nBreana\nCarol\nIvy\nJaimie\nJoanne\nKatharine\nKyra\nMisty\nRebeca\nAlice\nAshlynn\nCamila\nDemi\nDiane\nElaine\nHaleigh\nHunter\nIndia\nJanae\nJessenia\nKiera\nKyla\nLacy\nLayla\nLiliana\nLoren\nTalia\nYessenia\nBritany\nChante\nElena\nJena\nJill\nJoyce\nKalyn\nKate\nKeri\nKhadijah\nLori\nMarjorie\nNoelle\nRandi\nShaniqua\nAnnette\nCallie\nCheyanne\nJacklyn\nJanice\nKasandra\nMaranda\nNadine\nParis\nRoxanne\nSelena\nShanna\nSkylar\nStaci\nStacie\nTaryn\nYolanda\nAlanna\nBonnie\nCasandra\nChristen\nCorinne\nDarian\nEmilee\nIrene\nJuliette\nKatelin\nPatrice\nSymone\nTania\nYaritza\nAnita\nCelia\nDallas\nDebra\nGianna\nGiovanna\nIris\nJesse\nJulianne\nKatlin\nKaty\nKristal\nKristie\nLarissa\nLatasha\nLeigh\nMaribel\nMicaela\nPrincess\nRosemary\nScarlett\nSelina\nShana\nSheila\nSherry\nViviana\nAbby\nAlysha\nBlanca\nBrittni\nChantel\nChantelle\nClara\nCoral\nDevan\nEsmeralda\nFatima\nImani\nKelsea\nKori\nKristyn\nLakeisha\nLatisha\nLea\nLena\nMacy\nMiriam\nPaulina\nRacheal\nRyan\nSadie\nShakeria\nShakira\nShannen\nSuzanne\nTabatha\nYvette\nYvonne\nAlaina\nAshanti\nBetty\nBeverly\nBrandie\nChantal\nCharlene\nCori\nDarlene\nDianna\nDomonique\nElisha\nJanay\nJasmyne\nJennie\nJoselyn\nJulianna\nKaterina\nLeanna\nLeanne\nLizbeth\nMadeleine\nMaritza\nMollie\nNia\nRhiannon\nShelbie\nShelly\nStefani\nSylvia\nTkeyah\nTyesha\nAshli\nAvery\nCorey\nDestinee\nHallie\nJamila\nJesenia\nKala\nKarli\nLeeann\nLily\nLourdes\nMarcela\nMoriah\nSerena\nTess\nYasmin\nAngeline\nAngie\nAnjelica\nBlair\nBlake\nBreanne\nCameron\nCheryl\nChristiana\nChrystal\nCristal\nDenisha\nDesirae\nFallon\nGladys\nJenifer\nJessika\nJosephine\nKrysta\nLaquita\nMadelyn\nMakayla\nMandy\nMarlene\nMelisa\nNorma\nRacquel\nSandy\nSusana\nTammy\nTatyana\nTonya\nTraci\nVianca\nYasmine\nAisha\nAmaris\nAntonia\nAva\nBeatrice\nBobbi\nBreonna\nBrittnee\nCarli\nConstance\nCrysta\nDanisha\nDeandra\nDeja\nDelaney\nGeorgia\nJalisa\nJana\nJazmyne\nKacie\nKalie\nKayley\nKia\nLara\nLaurel\nNataly\nNiki\nNikita\nNora\nOctavia\nShea\nShelbi\nShelley\nSophie\nTatianna\nTerri\nTracey\nTyra\nAlessandra\nAlexandrea\nArlene\nAshlie\nAyla\nBrittanie\nCarlee\nDaphne\nDulce\nEden\nEmilie\nJazmyn\nKanisha\nKatheryn\nKaylyn\nKeosha\nKourtney\nLeandra\nLexus\nLissette\nLucy\nNoel\nQuanisha\nRoxana\nShanteria\nSidney\nSilvia\nSkye\nTiffanie\nYazmin\nAlayna\nAnabel\nAnsley\nAshely\nAshly\nAustin\nBobbie\nBrionna\nBrittny\nCarson\nCeline\nChina\nCoraima\nDayana\nDeidra\nDelia\nEmerald\nFabiola\nHali\nJada\nJamesha\nJami\nJanie\nJanine\nJoann\nJuanita\nJulissa\nKarly\nKathy\nKenisha\nLashawn\nLauryn\nLorraine\nLucia\nLuz\nLyndsay\nMarcia\nMargarita\nMarlena\nNakia\nNikole\nRiley\nSage\nSarai\nShanika\nShauna\nSheena\nSonya\nValentina\nYadira\nAlecia\nAlma\nAlycia\nAnais\nAnnemarie\nCarlie\nCharmaine\nChelsy\nConnie\nDanae\nDayna\nDestiney\nDevyn\nEboni\nElissa\nEstefania\nFrancheska\nGwendolyn\nHilary\nIsis\nKacey\nKandace\nKandice\nKaycee\nKaytlin\nKelsi\nKenyatta\nKimberlee\nKirstin\nLacie\nLana\nLina\nLiza\nMacey\nMariela\nMaryann\nMontana\nMyra\nNoemi\nRocio\nSally\nShante\nShaquita\nTamika\nTerra\nTrinity\nValencia\nVanesa\nAdrianne\nAja\nAntionette\nAraceli\nBelinda\nBrea\nBridgett\nBrook\nBrooklyn\nCaridad\nCatalina\nChelsi\nChristal\nCodi\nDalia\nDara\nDeana\nDemetria\nDestinie\nEileen\nElaina\nElyse\nEryn\nFelisha\nGenevieve\nGriselda\nHailee\nHollie\nJackie\nJean\nJodi\nJosie\nKaci\nKarlie\nKaylynn\nKerry\nKrystina\nLatrice\nLaurie\nLesley\nLillie\nLucero\nLynsey\nMakenzie\nMara\nMarcella\nMarlee\nMerissa\nMikaela\nMilagros\nMonika\nShakia\nSiera\nAdrian\nAriella\nAshlea\nAubrie\nAudra\nAurora\nAyanna\nBaby\nBrittaney\nCody\nCora\nDarby\nDarrian\nEdith\nEleanor\nEmely\nGabriel\nGenna\nGlenda\nHalie\nHana\nIngrid\nJaleesa\nJeanna\nJeannette\nJeniffer\nJerrica\nJesica\nJoan\nKadejah\nKaneisha\nKatia\nKatlynn\nKayli\nKaylie\nKeana\nKendal\nKhadija\nKirstie\nKristian\nLaquisha\nLatonya\nLynn\nMagen\nMarian\nMarla\nMartina\nMindy\nPauline\nShanelle\nSommer\nTracie\nAbbey\nAlannah\nAlex\nAli\nAlia\nAstrid\nBecky\nBeth\nBreann\nBreona\nBritni\nCecelia\nChantell\nCherie\nCorrine\nDamaris\nDarcy\nDasha\nDestini\nDianne\nDina\nDixie\nDylan\nEunice\nGeorgina\nHalle\nHeaven\nIvette\nJamika\nJaqueline\nJody\nJohana\nJohnna\nJustina\nKadie\nKaela\nKailyn\nKeisha\nKelcie\nKeren\nKerri\nKeyana\nKeyanna\nKianna\nKortney\nKrysten\nKylee\nLakesha\nLateisha\nLeilani\nLia\nLiana\nMadalyn\nMalika\nMariel\nMarquita\nMelina\nMercedez\nMiesha\nMyesha\nNatalee\nPaulette\nPerla\nRhonda\nRubi\nSalina\nSamara\nShae\nShakara\nShamika\nShanell\nShanique\nShannan\nSloane\nTarah\nTera\nTerrica\nTiarra\nTricia\nTrina\nWanda\nAda\nAdela\nAdria\nAlena\nAleshia\nAlly\nAllyssa\nAlysa\nAlysia\nAmie\nAnika\nAspen\nAthena\nBetsy\nBrigitte\nCasie\nCatarina\nChandra\nChanelle\nCherish\nCodie\nCrista\nDania\nDanica\nDeidre\nDenisse\nDesiray\nDiandra\nDominque\nEleni\nElexis\nElsa\nFarah\nFrancis\nFrancisca\nGillian\nGisela\nGretchen\nHaven\nHazel\nIsamar\nJameka\nJeannie\nJeri\nJoelle\nJourdan\nJuana\nJudy\nKalene\nKalynn\nKarin\nKarlee\nKassidy\nKathrine\nKatrice\nKaylen\nKeely\nKeila\nKendyl\nKeona\nKierstin\nKimberlie\nKimberlyn\nKyle\nLaila\nLee\nLeila\nLexie\nLinsey\nLuisa\nMaira\nMarianne\nMaureen\nMaxine\nMaylin\nNakita\nNathaly\nPatience\nRaechel\nRayna\nReagan\nRegan\nRhianna\nRoneshia\nRoxanna\nRyann\nShakera\nShanise\nShantavia\nSharonda\nSheree\nShontavia\nShyann\nSonja\nStephenie\nTawny\nTayla\nTenisha\nTeri\nTianna\nTierney\nTonisha\nXiomara\nAlea\nAlexzandria\nAlix\nAmerica\nAsha\nAshia\nBertha\nBillie\nBrittnie\nBryana\nCali\nCari\nChanice\nCharissa\nChastity\nChristin\nColby\nCorina\nCory\nCydney\nDaria\nDarien\nDayanara\nDeondra\nDestany\nDionna\nEbone\nEbonie\nEliana\nEliza\nElla\nElyssa\nEmmy\nFarrah\nGail\nHaily\nHalley\nHilda\nJackelyn\nJacquelynn\nJaimee\nJakia\nJanessa\nJanette\nJanna\nJayde\nJazzmine\nJazzmyn\nJeana\nJeanine\nJensen\nJessi\nJessyca\nJodie\nJohnisha\nJoslyn\nJuliet\nKacy\nKalee\nKanesha\nKarley\nKaylan\nKayle\nKayleen\nKeira\nKeirsten\nKenna\nKiley\nKim\nKimber\nKirstyn\nKrystin\nKrystle\nKyleigh\nLakeshia\nLaquanda\nLatesha\nLayne\nLilia\nLynnette\nMagdalena\nMalia\nMarisela\nMiya\nNicolle\nPhoebe\nPriscila\nRachell\nRegine\nReyna\nRichelle\nRonisha\nRosanna\nSabine\nSavana\nShakayla\nShani\nShaniece\nShantell\nShaquana\nShaquille\nShari\nShavon\nShawn\nShekinah\nSherika\nShyanne\nStacia\nStevie\nSuzanna\nTamisha\nTaylar\nTisha\nTyeisha\nVera\nViolet\nYamilet\nYanelis\nYasmeen\nZhane\nAddie\nAida\nAkilah\nAkira\nAlesha\nAlexsandra\nAlishia\nAlyssia\nAlyx\nAmani\nAmina\nAndria\nAnjali\nAnnelise\nAnnika\nAnnmarie\nArden\nAria\nAshtyn\nAyesha\nBionca\nBrigette\nBrooklynn\nBryanne\nBrynna\nCalli\nCamilla\nCandy\nCarisa\nCarleigh\nCassaundra\nCathryn\nCatrina\nChelse\nCherelle\nCheri\nChrissy\nChristi\nChynna\nCristy\nDaisha\nDanyelle\nDavina\nDavisha\nDeasia\nDebbie\nDelilah\nDeyanira\nDolores\nDonisha\nDoris\nEdna\nFabienne\nFantasia\nFelicity\nGeraldine\nGiana\nGinger\nHalee\nHayden\nHolli\nIleana\nIman\nIsabela\nIsabelle\nJacey\nJalissa\nJamecia\nJamee\nJamia\nJamilah\nJanea\nJanee\nJayme\nJenniffer\nJerica\nJessa\nJewel\nJordana\nJoselin\nJulisa\nJustice\nKadedra\nKaitlynne\nKalin\nKathryne\nKattie\nKeandra\nKeanna\nKelcey\nKeondra\nKeyla\nKeyona\nKeyonna\nKiah\nKiandra\nKimberley\nKyndal\nLashanda\nLatavia\nLateria\nLatia\nLatricia\nLawanda\nLeann\nLeeanna\nLeighann\nLesly\nLilian\nLisette\nLizabeth\nLizette\nLovely\nLyndsie\nLynette\nMagan\nMarena\nMargaux\nMariam\nMaricela\nMarielena\nMarsha\nMaryam\nMaura\nMeghann\nMercy\nMicah\nMichael\nMiracle\nNandi\nNatacha\nNichelle\nNoelia\nNoor\nNyesha\nOlga\nPatsy\nPeggy\nPorscha\nPorsha\nRasheka\nReba\nRebecka\nRikki\nSahara\nSavanah\nShakita\nShanequa\nShanita\nShantelle\nShantia\nShantoria\nSharlene\nShawnee\nSheryl\nShiloh\nSirena\nSky\nSteffi\nStormy\nSusannah\nSydni\nTakia\nTameka\nTamra\nTaneisha\nTaniqua\nTatum\nTerry\nTesia\nTorey\nTorie\nTyla\nUniqua\nValarie\nValery\nVenessa\nVenus\nVicky\nYajaira\nYanira\nZoey\nZuleika\nAiesha\nAlba\nAlberta\nAlisia\nAllegra\nAlora\nAmberlynn\nAnnamarie\nAnyssa\nAracely\nArianne\nArtavia\nAshante\nAubree\nAundrea\nAurelia\nAutum\nAyana\nBailee\nBecca\nBerenice\nBrennan\nBrieana\nBrieanna\nBrielle\nBritnee\nBritny\nBrittnay\nBrynn\nCaitlynn\nCamry\nCandis\nCapri\nCaprice\nCarey\nCarlisha\nCarrissa\nCaryn\nCassondra\nCathleen\nCathrine\nCeara\nCelene\nChannel\nCharlee\nChassity\nChelsee\nCherise\nCheyene\nChiquita\nChyanne\nChyenne\nCiarra\nCinthya\nClare\nCoty\nCourtnie\nCurtisha\nDanesha\nDanika\nDanyell\nDeandrea\nDesaray\nDionne\nDora\nElle\nEllie\nElysia\nEmmalee\nEmmanuela\nErinn\nEsperanza\nEssence\nEstefani\nEstephanie\nFelecia\nFlor\nFranchesca\nGemma\nGeneva\nGisselle\nGlory\nGracie\nGrecia\nHanah\nHarlie\nHarmony\nHaylie\nIliana\nIrma\nIvanna\nIvey\nIzabella\nJackeline\nJalyn\nJamilla\nJamisha\nJanelly\nJanisha\nJasmyn\nJaymee\nJayne\nJazzmin\nJelisa\nJenelle\nJermeka\nJoana\nJohn\nJolene\nJoni\nKadeidra\nKadeja\nKai\nKaili\nKaitlan\nKalen\nKalli\nKallie\nKaris\nKasie\nKatherin\nKati\nKatiana\nKaylah\nKayte\nKeaundra\nKebrina\nKeiara\nKeli\nKelsy\nKenia\nKera\nKezia\nKhristina\nKieara\nKierstyn\nKiyana\nKorey\nKorie\nKyanna\nKyndall\nLadonna\nLakia\nLaporsha\nLaquesha\nLarisa\nLatifah\nLatoria\nLenora\nLexi\nLisbeth\nLynda\nMaci\nMacie\nMakeda\nManuela\nMarcy\nMari\nMarianna\nMarion\nMarkeisha\nMarkesha\nMarkevia\nMarkia\nMarkie\nMarley\nMattie\nMelany\nMelyssa\nMichell\nMinnie\nMonet\nNada\nNatali\nNikia\nNyasia\nOriana\nPaisley\nPenny\nQuinn\nRaina\nRanisha\nRayven\nRebekka\nReina\nRenae\nRita\nRoberta\nRonesha\nRosangelica\nRowan\nRylee\nSamira\nSantana\nSapphire\nSariah\nSequoia\nShadai\nShakiera\nShameka\nShanae\nShaneka\nShanta\nShantay\nShaquia\nSharice\nSharika\nSharmaine\nShatavia\nShay\nShayne\nShenika\nShereen\nSherrell\nSherri\nShoshana\nSpencer\nStarla\nStarr\nStephani\nStormi\nSunny\nSusanna\nTaelor\nTamar\nTamera\nTanesha\nTangela\nTavia\nTequila\nThea\nTiona\nTorri\nTorrie\nTristan\nVannessa\nVioleta\nWendi\nWillow\nYanely\nYanet\nZakia\nAshley\nJessica\nSamantha\nAmanda\nBrittany\nTaylor\nSarah\nEmily\nNicole\nKayla\nStephanie\nAlexis\nVictoria\nMegan\nRachel\nLauren\nElizabeth\nJasmine\nDanielle\nAmber\nJennifer\nCourtney\nAlexandra\nRebecca\nHannah\nTiffany\nBrianna\nMichelle\nChristina\nMelissa\nAlyssa\nChelsea\nKatherine\nMorgan\nKimberly\nShelby\nHeather\nKaitlyn\nKelsey\nSavannah\nNatalie\nSara\nMary\nHaley\nBrooke\nAllison\nKristen\nAndrea\nCrystal\nShannon\nKelly\nJordan\nMaria\nErica\nErin\nGabrielle\nLaura\nVanessa\nMadison\nOlivia\nBriana\nJacqueline\nLindsey\nMarissa\nKatelyn\nAlexandria\nAbigail\nAnna\nDestiny\nKathryn\nSydney\nCaitlin\nSierra\nJulia\nKatie\nAngela\nCassandra\nMiranda\nJamie\nJenna\nCatherine\nBrittney\nAlexa\nCheyenne\nMonica\nBianca\nMariah\nAlicia\nPaige\nCaroline\nKristina\nAmy\nSabrina\nSummer\nChristine\nBreanna\nErika\nKaitlin\nPatricia\nKristin\nVeronica\nLeah\nGabriella\nMelanie\nCynthia\nGabriela\nDominique\nLindsay\nMeghan\nRachael\nCassidy\nBrandi\nCasey\nNatasha\nCaitlyn\nAriel\nLisa\nAngelica\nDiana\nAdriana\nKarina\nDeanna\nAutumn\nCristina\nKhadijah\nDesiree\nChloe\nEmma\nTara\nKrystal\nBethany\nHolly\nWhitney\nKara\nTatiana\nKaylee\nKassandra\nTori\nCarly\nCiara\nHayley\nJade\nApril\nMargaret\nMeagan\nHailey\nCarolina\nAna\nMackenzie\nBailey\nGrace\nAriana\nKatrina\nKiara\nMichaela\nRebekah\nSandra\nGina\nKendall\nIsabella\nMarisa\nMercedes\nKaley\nRaven\nAlexus\nJasmin\nKaren\nNancy\nAshlee\nDana\nDiamond\nKrista\nTabitha\nValerie\nMolly\nYesenia\nKathleen\nPriscilla\nSophia\nAngel\nAshleigh\nKendra\nJulie\nMallory\nAlisha\nBrenda\nGenesis\nAaliyah\nLeslie\nMadeline\nChelsey\nCindy\nAlison\nMonique\nNichole\nAudrey\nClaudia\nJocelyn\nKiana\nNatalia\nDaniela\nCarolyn\nFelicia\nJazmine\nKasey\nSavanna\nAlexia\nTia\nZoe\nCierra\nJazmin\nNathalie\nBrandy\nJessie\nShanice\nAlejandra\nAshlyn\nAubrey\nBarbara\nKirsten\nLacey\nNikki\nBridget\nSasha\nBritney\nAllyson\nNaomi\nRaquel\nDaniella\nTamara\nToni\nJoanna\nKierra\nKylie\nFaith\nIsabel\nJillian\nMarina\nRosa\nBria\nDaisy\nFrancesca\nJanelle\nKelli\nLinda\nVirginia\nAngelina\nDevin\nKatlyn\nMaya\nMikayla\nAnne\nJacquelyn\nRenee\nTyler\nDenise\nCara\nHope\nKarla\nTheresa\nArielle\nLydia\nNina\nRuth\nTiana\nTiara\nColleen\nKatelynn\nAimee\nAmelia\nNicolette\nSusan\nDeborah\nJaclyn\nJenny\nMeredith\nMia\nStacey\nClaire\nHelen\nShayla\nValeria\nAdrianna\nAlissa\nAsia\nBrenna\nCandace\nCandice\nEvelyn\nKenya\nPrecious\nTessa\nHunter\nMelinda\nPamela\nAlana\nCarmen\nCarrie\nEbony\nLillian\nAnastasia\nCamille\nCarla\nCassie\nCecilia\nTierra\nAshton\nCarissa\nCarol\nCeleste\nDarian\nElena\nEsther\nGiselle\nHanna\nJordyn\nJustice\nKaleigh\nKristy\nMckenzie\nPaola\nSelena\nSofia\nTiffani\nCamila\nDevon\nFrances\nGloria\nHarley\nMarie\nSharon\nSylvia\nTania\nWendy\nBreana\nKadijah\nKayleigh\nKristi\nKristine\nCayla\nDakota\nDonna\nJanet\nRegina\nArianna\nCallie\nChristy\nRachelle\nShayna\nStacy\nYolanda\nAlina\nAnnie\nHaleigh\nLogan\nPaula\nSkylar\nCharlotte\nDelaney\nHeidi\nIvy\nMarilyn\nRose\nTayler\nBrittani\nChasity\nJustine\nKelsie\nKourtney\nKyra\nMichele\nPeyton\nRobin\nTalia\nTanisha\nTeresa\nCharlene\nEmilee\nEricka\nJosie\nJoy\nKailey\nKali\nKatarina\nMadeleine\nMikaela\nRiley\nAlessandra\nAliyah\nBryanna\nChantel\nElisabeth\nEva\nImani\nLyndsey\nMakayla\nMartha\nMeaghan\nSerena\nTracy\nCharity\nChelsie\nKaitlynn\nKari\nKiera\nLily\nVivian\nAllie\nCarley\nCiera\nClarissa\nEllen\nGianna\nJudith\nKyla\nMayra\nSelina\nShaina\nShirley\nSimone\nDestinee\nJuliana\nKiersten\nLeticia\nMaggie\nMaranda\nMelody\nShawna\nSheila\nTaryn\nZhane\nAlexandrea\nCarina\nChanel\nChrista\nIesha\nJaime\nJanice\nJessenia\nKaila\nKarissa\nKelley\nKira\nMiriam\nNadia\nSadie\nSonia\nStefanie\nAdrienne\nAlyson\nCelina\nChristian\nElise\nGenevieve\nLexus\nMacy\nMariana\nMarisol\nTabatha\nTanya\nYasmin\nAbby\nAileen\nBridgette\nCarlie\nCoral\nElisa\nHaylee\nJanae\nJane\nJeanette\nKassidy\nKaylin\nKellie\nShana\nTina\nYasmine\nAngelique\nBrianne\nChandler\nCortney\nDiane\nEden\nElaine\nJada\nJosephine\nKatharine\nKaylyn\nLena\nNoelle\nRebeca\nSandy\nStephany\nAnnette\nBonnie\nDorothy\nHillary\nLatoya\nLorena\nMaribel\nMisty\nParis\nShakira\nAisha\nAlanna\nAlisa\nAnissa\nBrittni\nChristie\nJena\nKala\nKatelin\nKristal\nKylee\nLeigh\nLourdes\nNorma\nOctavia\nPatrice\nPayton\nSade\nShaniqua\nTyra\nAlma\nAntonia\nAshanti\nAshlynn\nAyla\nBeatriz\nBlair\nBlanca\nCheyanne\nCorinne\nDallas\nGiovanna\nIsabelle\nJesse\nKori\nLori\nLucia\nMargarita\nPaulina\nQuanisha\nRandi\nRobyn\nRuby\nSarai\nSavanah\nAngie\nAntoinette\nBelinda\nBeverly\nDenisha\nFabiola\nIngrid\nJohanna\nJoyce\nKacie\nKendal\nKeri\nKristyn\nLea\nLeanna\nLiana\nLissette\nLoren\nMontana\nMoriah\nScarlett\nShantel\nSkyler\nDarby\nDayana\nElaina\nEmerald\nIris\nJanell\nJenifer\nJodi\nJulianne\nKimberley\nLatisha\nLeanne\nMaegan\nMollie\nNora\nRacheal\nRegan\nRochelle\nShauna\nShelbi\nSidney\nStaci\nSusana\nSuzanne\nTammy\nTess\nTonya\nYadira\nYaritza\nYessenia\nYvonne\nAlaina\nAlesha\nAlice\nAshlie\nAshly\nAudra\nBlake\nBobbi\nBritany\nCristal\nDebra\nEboni\nEmilie\nEsmeralda\nGuadalupe\nIndia\nJacklyn\nJanie\nJasmyn\nJazmyn\nJesenia\nJuana\nKalyn\nKristie\nLarissa\nMaritza\nStevie\nTasha\nTrisha\nAnn\nBrook\nCameron\nClara\nDaphne\nDeandra\nDesirae\nDevyn\nJazmyne\nJoselyn\nKailee\nKalie\nKanisha\nKarly\nKate\nKaterina\nKatlin\nKennedy\nKirstie\nLacie\nLynn\nMariela\nMckenna\nMiracle\nNicolle\nPrincess\nShanna\nSkye\nTatianna\nTianna\nTrinity\nViviana\nAbbey\nAlecia\nAvery\nBrigitte\nBrittanie\nCarli\nCatalina\nChristen\nChristiana\nCorina\nDalia\nDarlene\nDawn\nDayna\nDeja\nGwendolyn\nIliana\nJamesha\nJana\nJanessa\nJuanita\nKacy\nKeandra\nKenia\nLaurel\nLeandra\nLiliana\nNadine\nNia\nNikita\nShakeria\nShannen\nShea\nTatyana\nTracey\nZana\nAlysha\nAlysia\nAnnabelle\nAyana\nBrielle\nBrionna\nCasandra\nCheryl\nChina\nDara\nDeidra\nDestini\nEdith\nElsa\nGeorgia\nIman\nIrene\nJaimie\nJill\nJuliette\nJulissa\nKayli\nKeisha\nKinsey\nLacy\nLara\nLatasha\nLauryn\nLayla\nLesley\nLizbeth\nMelina\nMicaela\nNoemi\nRegine\nRoxana\nShanteria\nSheena\nShelly\nSilvia\nThalia\nTraci\nAleah\nAllyssa\nAnais\nBeatrice\nBrandie\nBrigette\nCora\nDania\nDanyelle\nDomonique\nElyssa\nEmely\nEssence\nFrancheska\nGabriel\nHalle\nHallie\nHilda\nHollie\nItzel\nJanay\nJennie\nJessika\nJoanne\nJulianna\nKasandra\nKaycee\nKayley\nKelsea\nKerri\nKortney\nLuisa\nMadelyn\nMagdalena\nMarjorie\nMarlene\nMarley\nRikki\nSonya\nTanesha\nValencia\nVanesa\nWhitley\nAlex\nAnnamarie\nAraceli\nAspen\nAva\nCamilla\nCaylee\nCecelia\nChantal\nCourtnie\nDoris\nHailee\nHali\nHalie\nJalisa\nJean\nJodie\nKacey\nKarlee\nKarley\nKaylan\nKeondra\nKeyanna\nKhadejah\nKristian\nLisette\nMara\nMarcella\nNikole\nNoel\nRhiannon\nSarina\nShanika\nShianne\nSophie\nStefani\nAdrian\nAli\nAndria\nAnnmarie\nAnsley\nBobbie\nBritni\nBryana\nCarlee\nCarson\nCeline\nChelsy\nChristin\nCydney\nDanae\nDarien\nDemi\nDevan\nDianna\nDixie\nEileen\nGeneva\nGlenda\nGraciela\nIvana\nIvey\nJanel\nJoan\nKadejah\nKarlie\nKathy\nKaylynn\nKeona\nKerry\nKianna\nKimberlyn\nKirstin\nKrysta\nKrystina\nLana\nLaquisha\nLatrice\nLeeza\nMadalyn\nMaryann\nMyranda\nNataly\nRacquel\nSally\nShanell\nSommer\nStacie\nSuzette\nSydnie\nTerra\nTiffanie\nTkeyah\nTricia\nValentina\nYasmeen\nAdrianne\nAmberly\nAngelika\nBetty\nBrandee\nBreanne\nBrooklyn\nCari\nCiarra\nClarisa\nCorey\nCorinna\nDamaris\nDanica\nDestiney\nEdna\nEmmalee\nEstefania\nFatima\nFrancine\nGeena\nGladys\nHazel\nIsis\nIvette\nJanette\nJayme\nJewel\nJoann\nJoycelyn\nJuliet\nJustina\nKaci\nKailyn\nKarli\nKaylie\nKeila\nKenzie\nKeyana\nKiley\nKrystle\nLeeann\nLeilani\nLexi\nLexis\nLia\nLorraine\nLucy\nLuz\nMarcia\nMarian\nMarianna\nMarianne\nMarlena\nMattie\nMaxine\nMyesha\nPhoebe\nPorsha\nRaina\nReagan\nRebeka\nRhonda\nRosemary\nRoxanne\nRyan\nSage\nSharonda\nShelbie\nShiann\nSiera\nSky\nTesla\nTyesha\nYvette\nAddison\nAlayna\nAlexys\nAlisia\nAmaris\nAnjelica\nAnnemarie\nAsha\nAshely\nAshli\nAyanna\nBreonna\nBridgett\nBrittnie\nCaley\nChantelle\nChastity\nChelsi\nCodie\nDanesha\nDannielle\nDelia\nDeonna\nDominque\nDrew\nElla\nFarrah\nFernanda\nFredricka\nIvanna\nJackeline\nJalyn\nJamila\nJanine\nJaqueline\nJayde\nJensen\nJerica\nJessi\nJoelle\nJudy\nKassie\nKatia\nKaty\nKeanna\nKelsi\nKenisha\nKeyona\nKyana\nLashay\nLaurie\nLina\nLyndsay\nMandy\nMarcela\nMaryanne\nMaylin\nMindy\nMonika\nMyra\nRicki\nRita\nRocio\nRosalinda\nShantavia\nShante\nShantell\nSherry\nSonja\nSumer\nTameka\nTequila\nTerri\nTonisha\nUnique\nXiomara\nAja\nAlena\nAlycia\nAlysa\nAlyse\nAnabel\nAnika\nAnisa\nAnita\nAntonisha\nAnya\nAshtyn\nAstrid\nAubrie\nAurora\nBaby\nBailee\nBecky\nBernadette\nBeth\nBillie\nBlaire\nBreann\nBrittny\nBrynn\nCaitlynn\nCaridad\nCelia\nChante\nChassidy\nCherokee\nChrystal\nConnie\nConstance\nCori\nCorrina\nDebbie\nDemetria\nDestinie\nElissa\nEliza\nEllie\nElyse\nFallon\nFranchesca\nGeorgina\nGillian\nHadley\nInfant\nJaimee\nJaleesa\nJalissa\nJeana\nJeanine\nJeannie\nJeniffer\nJerrica\nJessy\nJulisa\nKaela\nKarah\nKathrine\nKati\nKatlynn\nKaylen\nKeara\nKelsy\nKeren\nKhadija\nKim\nKrysten\nMacie\nMaddison\nMagen\nMakala\nMakenzie\nMallorie\nMaricela\nMarisela\nMarkia\nMelisa\nNatalee\nPatience\nPaulette\nPeggy\nPriscila\nQuanesha\nReina\nRichelle\nSabina\nShala\nShaquilla\nShaquita\nShay\nShelley\nShyanne\nStormy\nSunny\nSydni\nTeri\nTiarra\nTiera\nTyisha\nVianca\nVioleta\nYajaira\nYazmin\nAbagail\nAbbie\nAlexcia\nAlexi\nAmi\nAmie\nAngeline\nAracely\nAshtin\nAthena\nAubree\nAundrea\nBaylee\nBree\nBrieanna\nCailey\nCailin\nCaylie\nCherish\nChiara\nChristal\nCinthia\nCody\nColette\nConnor\nCooper\nCrista\nDahlia\nDanisha\nDarcy\nDarrian\nDenisse\nDesirea\nDestany\nDeyanira\nDianne\nDolores\nDora\nDulce\nDylan\nEleanor\nElexis\nEliana\nEunice\nFelisha\nFiona\nGriselda\nHarmony\nHaylie\nHelena\nIsabela\nJacquelynn\nJanna\nJazzmin\nJesica\nJohana\nJohnna\nJolene\nKandice\nKarena\nKarisa\nKarolina\nKaryna\nKatya\nKaylah\nKaytlin\nKeely\nKeira\nKenyetta\nKeonna\nKeyonna\nKristan\nKrystin\nKyndal\nKyndall\nLakendra\nLatifah\nLeann\nLee\nLindy\nLinette\nLiz\nLiza\nLois\nLora\nLouise\nLynette\nLynsey\nMabel\nMaia\nMaira\nMakenna\nMarena\nMariel\nMarkesha\nMarlee\nMarquisha\nMarquita\nMarsha\nMartina\nMercedez\nMiesha\nMonet\nMyriam\nNakia\nOlga\nPaloma\nPassion\nPhyllis\nPresley\nRaegan\nReem\nRene\nReyna\nRolanda\nRolonda\nRonesha\nRosalie\nRoxanna\nSalena\nSalina\nSamara\nShameka\nShanise\nStefania\nSteffany\nSydnee\nSynthia\nTabetha\nTamika\nTaneisha\nTatum\nTichina\nTierney\nTisha\nTracie\nValery\nZayna\nAleisha\nAlia\nAlishia\nAlivia\nAllegra\nAlliyah\nAllysa\nAlyssia\nAmairani\nAmari\nAmbria\nAmethyst\nAngelia\nAnisha\nAnnabel\nAnyssa\nAriella\nArlene\nAshia\nAshlea\nAsya\nAundria\nAyesha\nAysha\nBernice\nBertha\nBianka\nBreona\nBrett\nBrie\nBritnee\nBrittnay\nBrooklynn\nBryce\nCarey\nCarleigh\nCecily\nChanice\nCharmaine\nChasidy\nCinthya\nCorrie\nCristine\nDaisha\nDaneshia\nDanna\nDarla\nDasha\nDayanara\nDeana\nDelicia\nDeneshia\nDesiray\nDesire\nEbone\nElana\nEleni\nElexus\nElisha\nElle\nEryn\nEstrella\nEulalia\nEvan\nEvelin\nFabienne\nFlorence\nFrancis\nFrancisca\nGinger\nGisselle\nGretchen\nHalley\nHana\nHeaven\nHolli\nIlana\nIleana\nIvonne\nJakia\nJameka\nJami\nJamika\nJanee\nJaylyn\nJazmen\nJeanne\nJelisa\nJenelle\nJoi\nJordana\nJoslyn\nKadedra\nKadeidra\nKadesha\nKaelyn\nKalin\nKandace\nKatryna\nKaytlyn\nKeana\nKelcie\nKendyl\nKia\nKiarra\nKisha\nKya\nLakisha\nLane\nLaporsha\nLashonda\nLatonya\nLatoria\nLeeanne\nLeigha\nLesly\nLidia\nLinsey\nLizette\nLorelei\nMandi\nMarguerite\nMari\nMarkisha\nMarykate\nMaureen\nMichaella\nMikala\nMilena\nMireya\nMona\nMyisha\nNatacha\nNatali\nNatalya\nNathaly\nNikia\nPerla\nPetra\nPricilla\nRayna\nRena\nReva\nRianna\nRoberta\nRosemarie\nSapphire\nShae\nShakayla\nShakera\nShanelle\nShani\nShanique\nShannan\nShantae\nShantoria\nShaquanda\nShaquila\nShyann\nShyla\nSiara\nSpencer\nStar\nStella\nSydne\nSymone\nTaelor\nTakia\nTala\nTashara\nTawny\nTera\nTiesha\nTrina\nVenessa\nVicky\nViolet\nYakira\nZahra\nZakiya\nAdreanna\nAkira\nAleia\nAlesia\nAlexanderia\nAlexius\nAlix\nAliya\nAmani\nAmira\nAndi\nAndriana\nAngelic\nAnnelise\nApryl\nArika\nArin\nArissa\nAubrianna\nBreeana\nBreeanna\nBriona\nBritani\nBritny\nBrittnee\nCaleigh\nCali\nCarlisha\nCaterina\nCathleen\nCathrine\nCathryn\nChanelle\nChantell\nCharline\nCherie\nCheyene\nChyanne\nClarice\nClaudine\nCodi\nConsuelo\nCory\nCrissy\nCrysta\nCurtisha\nDaphnie\nDaryl\nDavina\nDeasia\nDeidre\nDelaina\nDenesha\nDeondra\nDezirae\nDionna\nDorian\nElsie\nEmber\nEmelia\nEmili\nEmilia\nEstefany\nFabiana\nFelecia\nFelicity\nFrancina\nGena\nGisel\nGisela\nGizelle\nHalee\nIeshia\nJacey\nJackie\nJacquline\nJacqulyn\nJamecia\nJamelia\nJames\nJamesia\nJanai\nJanely\nJanis\nJanisha\nJanissa\nJaquelin\nJasmyne\nJayla\nJaymee\nJazlyn\nJeannette\nJenni\nJocelin\nJohnetta\nJonisha\nJordin\nJosefina\nJustyce\nKadeshia\nKadie\nKaelin\nKaitlynne\nKalee\nKalynn\nKamilah\nKaneisha\nKanesha\nKarin\nKasie\nKay\nKayci\nKayle\nKaylene\nKelci\nKeosha\nKera\nKerrie\nKeyla\nKhadeja\nKimberlee\nKodi\nKorie\nKyara\nKyrsten\nLaila\nLakeisha\nLakesha\nLakia\nLanie\nLashae\nLashawn\nLatesha\nLatia\nLawanda\nLeana\nLeila\nLibby\nLiberty\nLila\nLillie\nLisandra\nLisbeth\nLismary\nLizzette\nLoretta\nLynda\nMacey\nMaci\nMadelaine\nMaiya\nMalia\nMargo\nMarielle\nMarimar\nMarla\nMarline\nMckayla\nMeg\nMeghann\nMelany\nMelia\nMicah\nMichell\nMickayla\nMikeshia\nMina\nMishelle\nMorganne\nNelly\nNicholas\nNicholle\nNickole\nNiki\nNykia\nNyla\nOriana\nPatsy\nPauline\nPorcha\nPriya\nQuaneisha\nQuaneshia\nQueen\nQuiana\nQuinn\nRachell\nRain\nRamona\nRashonda\nReba\nRebekka\nRhianna\nRoneshia\nRonisha\nRyley\nSalma\nSamaria\nSamatha\nSammantha\nScarlet\nSelene\nSequoia\nShade\nShai\nShaila\nShakara\nShakia\nShalonda\nShania\nShaquana\nShawanda\nShaylyn\nShekinah\nShenika\nSherline\nSheyenne\nSienna\nSindy\nSirena\nStacia\nSusannah\nTakeria\nTakeya\nTalisa\nTalisha\nTamera\nTamisha\nTammi\nTangela\nTaquisha\nTarah\nTeanna\nThania\nThelma\nTimesha\nTorie\nTorri\nTorrie\nTynesha\nTyresha\nVashti\nVicki\nWinter\nYaneli\nYanely\nZoey\nAshley\nJessica\nSarah\nEmily\nSamantha\nTaylor\nBrittany\nAmanda\nKayla\nAlexis\nStephanie\nRachel\nVictoria\nNicole\nMegan\nLauren\nCourtney\nJennifer\nElizabeth\nJasmine\nBrianna\nDanielle\nHannah\nAmber\nAlexandra\nMorgan\nChristina\nAlyssa\nMelissa\nMichelle\nKaitlyn\nRebecca\nTiffany\nMadison\nKatherine\nChelsea\nNatalie\nSavannah\nShelby\nBrooke\nHaley\nKimberly\nSydney\nHeather\nJordan\nOlivia\nKelsey\nMaria\nKristen\nSara\nAllison\nMary\nSierra\nDestiny\nAndrea\nGabrielle\nErin\nMarissa\nBriana\nShannon\nVanessa\nCaitlin\nKelly\nLaura\nErica\nAnna\nKatelyn\nMiranda\nAbigail\nAlexandria\nLindsey\nJenna\nJulia\nCheyenne\nCrystal\nAngela\nMonica\nBreanna\nPaige\nJacqueline\nAlexa\nKatie\nAmy\nGabriela\nAlicia\nCatherine\nKaitlin\nCassidy\nKathryn\nJamie\nCaroline\nGabriella\nCassandra\nMariah\nAngelica\nBianca\nSabrina\nMelanie\nBrandi\nKarina\nSelena\nBrittney\nCaitlyn\nKaylee\nErika\nAriel\nKristina\nSummer\nPatricia\nAutumn\nEmma\nChristine\nCasey\nLeah\nRachael\nCarly\nCiara\nMackenzie\nMeghan\nBailey\nCynthia\nAna\nDiana\nValerie\nDesiree\nKrystal\nKylie\nVeronica\nDominique\nHolly\nRebekah\nChloe\nIsabella\nHayley\nKristin\nMolly\nCarolina\nJade\nTatiana\nDeanna\nLindsay\nLisa\nMadeline\nApril\nGrace\nNatasha\nAriana\nMichaela\nMonique\nTara\nHailey\nBethany\nJulie\nTori\nCristina\nFaith\nSophia\nKathleen\nKendall\nKiana\nRaven\nAdriana\nWhitney\nAlison\nMargaret\nMarisa\nAaliyah\nKaren\nNatalia\nZoe\nAshleigh\nJazmine\nDaniela\nKaley\nMeagan\nGina\nKiara\nAlexus\nAshlee\nKassandra\nKara\nKrista\nAshlyn\nCierra\nBrandy\nClaudia\nHope\nTabitha\nDeja\nFelicia\nMallory\nMercedes\nKatrina\nSavanna\nCindy\nLeslie\nSandra\nAngel\nKasey\nKendra\nDiamond\nKatelynn\nLydia\nMakayla\nAlexia\nJasmin\nJoanna\nBrenda\nGenesis\nPriscilla\nAudrey\nTiara\nYesenia\nAlejandra\nJazmin\nKirsten\nNathalie\nChelsey\nJocelyn\nRaquel\nDelaney\nDenise\nNina\nDana\nAsia\nJacquelyn\nJessie\nJillian\nKatlyn\nNancy\nTatyana\nDaisy\nTia\nDakota\nFrancesca\nNichole\nArianna\nNaomi\nAmelia\nCara\nJordyn\nJustice\nRenee\nTiana\nToni\nImani\nIsabel\nBridget\nCamille\nTamara\nBritney\nCandace\nDaniella\nRosa\nSasha\nShanice\nAlana\nAllyson\nAubrey\nEvelyn\nKarla\nMikayla\nAlisha\nBarbara\nEbony\nKierra\nLacey\nSharon\nTiffani\nHanna\nMckenzie\nPaola\nAnne\nCeleste\nTeresa\nGianna\nMarina\nSofia\nTheresa\nTyler\nKenya\nMaya\nMia\nPrecious\nRuth\nTierra\nAngelina\nCarissa\nCarla\nCarolyn\nJada\nLogan\nAshton\nDevon\nJenny\nAdrianna\nCarmen\nHunter\nJanelle\nKailey\nKaitlynn\nThalia\nArielle\nCharity\nClarissa\nDevin\nKelsie\nPamela\nRiley\nTessa\nVirginia\nAimee\nClaire\nDestinee\nElena\nJuliana\nStacey\nEsther\nKelli\nKennedy\nLily\nMarie\nRegina\nSelina\nSusan\nCharlotte\nDallas\nEricka\nHelen\nLillian\nLinda\nAbby\nCecilia\nSerena\nAnastasia\nBria\nCheyanne\nCiera\nEllen\nGiselle\nKira\nRose\nBryanna\nCarrie\nChantel\nColleen\nDeborah\nGloria\nJaclyn\nMaranda\nMeredith\nNadia\nYasmin\nBrittani\nDemi\nTina\nValeria\nAliyah\nAlyson\nCayla\nDarian\nHarley\nHaylee\nJanae\nJanet\nKarissa\nMelody\nNikki\nShayla\nAlissa\nCandice\nKellie\nKristine\nKyra\nMakenzie\nMeaghan\nMelinda\nSimone\nTianna\nVivian\nAisha\nAnnie\nBrenna\nBridgette\nCarina\nCassie\nChandler\nChantal\nChristy\nKaleigh\nKayleigh\nKristy\nLiliana\nMaggie\nRachelle\nStephany\nAnn\nDarby\nElise\nEva\nHeidi\nKassidy\nMadeleine\nMichele\nNicolette\nPaula\nPeyton\nRobyn\nSade\nSidney\nSylvia\nTayler\nBrianne\nCallie\nKali\nLexus\nMariana\nMarilyn\nMayra\nRobin\nRuby\nSadie\nTanisha\nTracy\nYasmine\nAlina\nAlondra\nBaylee\nBreana\nElisabeth\nJosie\nJulianna\nJustine\nKhadijah\nKylee\nMikaela\nNoelle\nPayton\nSkye\nTyra\nChristian\nElaine\nEmilee\nEsmeralda\nIvy\nJulianne\nLeanna\nQuanisha\nScarlett\nSkyler\nStacy\nStefanie\nTalia\nTania\nTaryn\nAlaina\nAntonia\nAshanti\nCortney\nDestiney\nJesse\nJoy\nKaylyn\nKourtney\nKyla\nMacy\nParis\nCamila\nCarley\nCarol\nDaphne\nDestini\nGuadalupe\nJaime\nKaila\nKala\nKatarina\nMaribel\nMartha\nRochelle\nShakira\nTasha\nWendy\nAdrienne\nAngelique\nChanel\nFrances\nHaleigh\nIndia\nJohanna\nJuana\nKari\nKatlin\nKaylin\nKianna\nKiersten\nLaurel\nLea\nLorena\nRosemary\nShaina\nShawna\nShayna\nSkylar\nSonia\nYolanda\nAllie\nBeatriz\nBreanne\nChelsie\nChrista\nElisa\nHillary\nIris\nJosephine\nKiera\nLoren\nRebeca\nRhiannon\nShirley\nTrinity\nAshlie\nEssence\nGiovanna\nIesha\nIsabelle\nJenifer\nKaylie\nLyndsey\nMarlene\nMiriam\nNora\nTanya\nDenisha\nIrene\nJanay\nJudith\nKori\nLacy\nLena\nLucy\nMelina\nMontana\nNia\nShantel\nSophie\nTabatha\nAbbey\nAlisa\nAnnette\nAntoinette\nBlanca\nCameron\nCarlie\nClara\nDaisha\nDawn\nJane\nKelsi\nKristi\nLissette\nMarisol\nSandy\nTrisha\nTristan\nAngie\nBlair\nCarlee\nCatalina\nCelina\nCeline\nCoral\nEileen\nJanice\nJazmyn\nKelley\nKristyn\nLeticia\nLyric\nMindy\nNataly\nAlice\nBobbi\nBonnie\nBreann\nBrigitte\nCharlene\nCristal\nDiane\nEmilie\nHeaven\nJami\nJasmyne\nJesenia\nJessenia\nJoyce\nJuliette\nJulissa\nKarly\nKaterina\nKayli\nKeana\nKristal\nLucia\nMaritza\nMisty\nNadine\nRacheal\nSamara\nShauna\nShelbie\nAddison\nAlanna\nAlayna\nAnais\nAvery\nBetty\nBrionna\nCasandra\nDamaris\nDonna\nFranchesca\nHalie\nHelena\nJalisa\nJoanne\nJodi\nKaelyn\nKalyn\nLizbeth\nLourdes\nMadelyn\nMargarita\nMarley\nMicaela\nMoriah\nMyranda\nPerla\nRoxana\nShana\nShania\nShelbi\nTerri\nYessenia\nYvette\nAnita\nAshli\nBeatrice\nBrandie\nBrittni\nBrooklyn\nCarli\nCelia\nChante\nChelsi\nChristie\nCorinne\nDayana\nDejah\nEmely\nGenevieve\nIsis\nJasmyn\nKarlie\nKatelin\nKeyana\nKirstin\nLeanne\nLori\nLynn\nMarcella\nMelisa\nMiracle\nMollie\nNoel\nPatrice\nReagan\nRegan\nSally\nSarai\nShea\nSheila\nTamera\nTiffanie\nTyesha\nYvonne\nAlessandra\nAli\nAlia\nAlysa\nAshlynn\nAthena\nAyanna\nBeverly\nBryana\nDrew\nFabiola\nHallie\nIvana\nJacklyn\nJaqueline\nJessika\nKalee\nKathy\nKenia\nKeri\nKeyla\nLexis\nLisette\nMckenna\nMonika\nOctavia\nRoxanne\nSavanah\nShanteria\nStacie\nSymone\nTonya\nValentina\nZhane\nAileen\nAlesha\nAlex\nAlysha\nAnabel\nArlene\nAyla\nBailee\nBelinda\nBrittaney\nCamilla\nCiarra\nConstance\nCora\nDalia\nDasia\nEden\nEdith\nFrancis\nHana\nIliana\nJazmyne\nJeannette\nKasandra\nKatharine\nKatlynn\nKierstin\nKimberley\nKinsey\nKrysta\nLara\nLeandra\nLinsey\nMaddison\nMarcia\nMartina\nNoemi\nPrincess\nRandi\nSage\nSavana\nSheena\nShyanne\nSonya\nSuzanne\nSydnee\nSydni\nZoey\nAlecia\nAlivia\nAnnabelle\nAudra\nAyana\nBlake\nBobbie\nBreonna\nBrieanna\nBrielle\nCecelia\nCourteney\nCydney\nDaija\nDarien\nDayna\nDevan\nDina\nElaina\nElana\nEliza\nHarmony\nJaimie\nJanine\nJean\nJeanette\nJerrica\nJoi\nKaela\nKailee\nKarlee\nKate\nKatia\nKerri\nKeyonna\nKiley\nLatisha\nLaurie\nLexi\nLia\nLiana\nMadalyn\nMara\nMichael\nNathalia\nNathaly\nNikole\nStevie\nTayla\nYadira\nYaritza\nAdrian\nAja\nAlexandrea\nAllyssa\nAmie\nAustin\nBeth\nChantelle\nChasity\nCheryl\nChristen\nConnie\nDeandra\nDomonique\nDorothy\nEboni\nEleanor\nEryn\nGeorgia\nHailee\nJamesha\nJanel\nJanessa\nJanie\nJayla\nJensen\nJewel\nJoelle\nKaylynn\nKerry\nKeyanna\nKimberlee\nLatasha\nLidia\nLizette\nLorraine\nMaegan\nMarla\nNorma\nRikki\nShianne\nSilvia\nSusana\nTammy\nTatyanna\nTess\nTonisha\nViviana\nWanda\nYasmeen\nAlycia\nAlyssia\nAshely\nAstrid\nBridgett\nCarson\nChristiana\nCorey\nCori\nDannielle\nDebra\nDesirae\nFatima\nGabriel\nGillian\nHalee\nJazzmin\nJena\nJessi\nJocelyne\nJodie\nJolene\nJustina\nKacey\nKacie\nKarley\nKathrine\nKatiana\nKaty\nKeara\nKeely\nKendal\nKenisha\nKrystin\nLakeisha\nLarissa\nLatavia\nLeigh\nLeila\nLeilani\nLuz\nMarcela\nMarianna\nMarjorie\nMichaella\nMorganne\nPaulina\nReanna\nRene\nRicki\nRylee\nShakeria\nShameka\nShantell\nStaci\nTamika\nTerra\nVanesa\nXiomara\nAlma\nAlysia\nAmaris\nAngelia\nAria\nAundrea\nBillie\nBreeanna\nBrigette\nBrook\nCarleigh\nChelsy\nDaijah\nDaja\nDajah\nDanyelle\nDaysha\nDeidra\nDemetria\nDulce\nEliana\nElla\nEllie\nElyse\nElyssa\nEstefania\nEster\nFallon\nFelisha\nGeneva\nGeraldine\nGriselda\nHali\nHarlie\nInfant\nJacquelin\nJailene\nJamila\nJanna\nJayde\nJazlyn\nJennie\nJohana\nJuanita\nKady\nKaliyah\nKayley\nKeila\nKeyona\nKia\nKim\nKristian\nKristie\nKrysten\nLeondra\nLesley\nMacey\nMariam\nMaricela\nMarisela\nMaxine\nMckayla\nMelany\nNatalya\nOriana\nPhoebe\nPriya\nRacquel\nRaegan\nRegine\nReina\nRita\nRocio\nRoselyn\nRyan\nShakera\nShanelle\nShaniqua\nShanna\nShaquanda\nShelly\nSommer\nSuzette\nTanesha\nTatianna\nTiarra\nTichina\nTraci\nXena\nYazmin\nAbbigail\nAda\nAkira\nAlexys\nAlliyah\nAmani\nAnnmarie\nAnsley\nAntonella\nAraceli\nAriella\nAshly\nAubrie\nAurora\nAva\nBrittanie\nCary\nCasie\nCherish\nChristin\nClarice\nCorina\nDania\nDara\nDayanara\nDeana\nDeidre\nDelilah\nDestany\nDiandra\nDianna\nDixie\nDominque\nElsa\nFarrah\nGabriele\nGladys\nGlenda\nGwendolyn\nHilda\nHollie\nIsabela\nIvanna\nIvette\nJazzmine\nJewell\nJill\nJordin\nJosey\nJudy\nKacy\nKaelin\nKalie\nKanisha\nKarli\nKasie\nKeisha\nKelsea\nKenzie\nKeosha\nKrystina\nLacie\nLana\nLisbeth\nLiza\nLuisa\nLyndsay\nMaiya\nMakala\nMakenna\nMandy\nMarianne\nMarielena\nMarlena\nMarsha\nMarta\nMattie\nMaura\nMeranda\nMicah\nMicayla\nMona\nNatori\nNikita\nReyna\nRhianna\nRichelle\nRowan\nRyann\nScarlet\nShanika\nShatavia\nSienna\nSoraya\nSusanna\nSydnie\nTaylar\nTracey\nTrista\nUnique\nValencia\nWidline\nYanira\nYessica\nAida\nAlena\nAlessia\nAlexander\nAlexcia\nAlisia\nAmara\nAmbar\nAndria\nAnnemarie\nAriela\nAshante\nAshlea\nAubree\nBella\nBernadette\nBertha\nBrandee\nBriona\nBrittnee\nBrooklynn\nBryce\nCecily\nCelena\nCharlie\nChase\nChrystal\nCodi\nDanna\nDaphney\nDarlene\nDelanie\nDena\nDeondra\nDeonna\nDesire\nDestinie\nDevyn\nDoris\nElexus\nEmber\nEmerald\nEmmalee\nEriel\nEstefani\nEvie\nFarah\nGeena\nGinger\nGretchen\nHalle\nHarlee\nHaven\nHazel\nHilary\nIngrid\nIvory\nJackeline\nJackie\nJameka\nJanee\nJanette\nJanina\nJanisha\nJayme\nJennah\nJessy\nJoana\nJoann\nJordana\nJoselyn\nKalynn\nKatalina\nKatheryn\nKaycee\nKaylah\nKaytlyn\nKeandra\nKeanna\nKendyl\nKeondra\nKimber\nKyana\nKyndall\nLakia\nLatoya\nLianna\nLibby\nLilia\nLilibeth\nLina\nLouise\nMagan\nMagdalena\nMakeda\nMari\nMariel\nMaryann\nMelodie\nMichell\nMikaila\nMikala\nMikesha\nMya\nNatali\nNicolle\nOlga\nQuanesha\nQuiana\nRachele\nReba\nRhea\nRolanda\nRonni\nSabine\nSalena\nSamaria\nShakayla\nShamika\nShante\nShari\nSheridan\nSherley\nSheyenne\nShiloh\nStella\nTamar\nTameka\nTristin\nTynesha\nTytiana\nUnknown\nVannessa\nYamilet\nYesica\nAaron\nAbbie\nAbigayle\nAdrianne\nAkilah\nAlexi\nAlexsis\nAlyse\nAmerica\nAndie\nAndreana\nAndreina\nAnika\nAnitra\nAnjelica\nAnnalise\nAnnamarie\nAntionette\nArin\nBreona\nBreyanna\nBriann\nBritany\nBritni\nBryn\nCailey\nCailin\nCamisha\nCandy\nCaridad\nCatelyn\nCathryn\nCaylee\nChanelle\nCharla\nCharmaine\nChastity\nCherie\nCherokee\nChyna\nCinnamon\nClarisa\nColby\nColette\nCorie\nCornelia\nCorrie\nCorrine\nDanae\nDarcy\nDeandrea\nDeasia\nDeyanira\nDianne\nDionna\nDonisha\nDora\nElisha\nEmani\nEvan\nFabienne\nFiona\nFrancheska\nFrancisca\nFrankie\nGiana\nGrecia\nHaylie\nIman\nImari\nIridian\nIzabella\nJacey\nJael\nJaliyah\nJalyn\nJamecia\nJana\nJanai\nJanell\nJayda\nJennyfer\nJerica\nJesica\nJoan\nJohn\nJorden\nJoslyn\nKaci\nKadesha\nKailah\nKaile\nKailyn\nKami\nKatelynne\nKati\nKatilyn\nKattie\nKaytlin\nKelsy\nKenna\nKeonna\nKeturah\nKirby\nKirstie\nKortney\nKymberly\nLaken\nLakendra\nLakisha\nLaquisha\nLaquita\nLatesha\nLatrice\nLauryn\nLawanda\nLayla\nLeana\nLeia\nLila\nLiz\nLucero\nLynsey\nMagaly\nMagen\nMaira\nMakia\nMalia\nMalika\nMandi\nMarcy\nMarguerite\nMariajose\nMarimar\nMarion\nMarkesha\nMarlee\nMartine\nMekayla\nMiya\nMonet\nMyra\nMyriah\nNakia\nNelly\nNichelle\nNickole\nNiya\nPassion\nPatience\nPorsha\nPresley\nRae\nRaeann\nRaychel\nRayne\nRayven\nRena\nRenata\nRhonda\nRianna\nRisa\nRonesha\nRosalinda\nRosalyn\nRoslyn\nRoxanna\nSelene\nSerenity\nShae\nSharlene\nSharonda\nShekinah\nShelley\nShyann\nStar\nStephani\nSunshine\nSuzanna\nTabetha\nTatiyana\nTatum\nTherese\nTkeyah\nTristen\nVicky\nWillow\nYazmine\nAbriana\nAbrianna\nAdelina\nAdina\nAkila\nAlea\nAleah\nAlexzandra\nAlishia\nAlix\nAlixandra\nAliya\nAlora\nAmalia\nAnamaria\nAnastacia\nAnesia\nAnisha\nAnissa\nAnnabel\nAnnalee\nAnnika\nAntwonette\nAnya\nAnyssa\nAshtyn\nAspen\nAsya\nAudrianna\nAurelia\nAya\nBaleigh\nBerenice\nBetsy\nBianka\nBrea\nBreeana\nBrie\nBrittnay\nBrittnie\nCailyn\nCaleigh\nCarey\nCari\nCassaundra\nCaterina\nChantell\nCharline\nChassidy\nChiara\nChyanne\nCinthia\nClare\nCorrina\nCory\nCrista\nDakotah\nDaria\nDasha\nDebbie\nDenisse\nDesree\nDeven\nDylan\nDymond\nEdna\nElicia\nEmilia\nEmmie\nEmory\nEstefany\nEstrella\nEugenia\nEulalia\nEunice\nFelicity\nFlora\nGena\nGilda\nGisela\nGisselle\nGraciela\nGreer\nHalley\nHeidy\nHolley\nIlana\nIleana\nIsamar\nJacquelyne\nJakeria\nJalissa\nJaylin\nJayne\nJeanine\nJenniffer\nJesika\nJessalyn\nJohnna\nJohnnie\nJoseline\nJoshua\nJourney\nJulian\nJulisa\nKadijah\nKailani\nKaitlan\nKalena\nKallie\nKaroline\nKaryna\nKaterin\nKaylan\nKayleen\nKeionna\nKelcey\nKeona\nKeyara\nKeysha\nKhalia\nKiarra\nKristiana\nKrystle\nKrystyna\nKyara\nKyle\nKyrsten\nLaci\nLaila\nLainey\nLakayla\nLaney\nLashay\nLatricia\nLayne\nLeeann\nLeigha\nLesli\nLexie\nLilly\nLinette\nLoni\nLora\nLovely\nLucille\nMaia\nMalikah\nMallorie\nMalory\nMarena\nMariela\nMarkia\nMarkisha\nMarquisha\nMaryam\nMaryssa\nMaureen\nMellisa\nMercy\nMiesha\nMika\nMisha\nMyiesha\nMyriam\nNakisha\nNala\nNandi\nNatacha\nNautica\nNicollette\nNigeria\nNiki\nNisa\nNohely\nNyesha\nNykia\nOdette\nPauline\nPenelope\nPilar\nPooja\nPortia\nPrisca\nQuinn\nRaina\nRebeka\nRodnesha\nRoseanna\nRosemarie\nSabina\nSaige\nSalina\nSari\nSchyler\nSeaira\nSerina\nShakyra\nShambria\nShandrika\nShanell\nShantal\nShanterria\nShantoria\nShelbey\nShelsea\nSherry\nShyan\nShyla\nSierrah\nSirena\nSky\nSloane\nSpencer\nStefany\nStephenie\nSumer\nTahlia\nTakia\nTalya\nTamisha\nTera\nTiera\nTory\nTreasure\nTrina\nTyanna\nTyneisha\nTynisha\nValarie\nWaverly\nWhitley\nXenia\nYamilex\nYarelis\nYoana\nZakia\nZakiya\nZaria\nZuri\nAshley\nJessica\nEmily\nTaylor\nSarah\nSamantha\nAlexis\nKayla\nBrittany\nAmanda\nRachel\nVictoria\nStephanie\nElizabeth\nBrianna\nMegan\nNicole\nHannah\nJennifer\nJasmine\nLauren\nMadison\nAlexandra\nCourtney\nAmber\nSavannah\nDanielle\nRebecca\nAlyssa\nMorgan\nKatherine\nShelby\nHaley\nTiffany\nMelissa\nNatalie\nChristina\nBrooke\nChelsea\nKaitlyn\nSydney\nMichelle\nSabrina\nGabrielle\nVanessa\nCheyenne\nKelsey\nSara\nJordan\nKimberly\nAbigail\nMaria\nOlivia\nDestiny\nBriana\nAndrea\nAllison\nSierra\nAnna\nJulia\nMary\nShannon\nErin\nHeather\nKristen\nKelly\nAlexandria\nLaura\nLindsey\nKatelyn\nMarissa\nCaitlin\nMariah\nErica\nCaroline\nCrystal\nBreanna\nKatie\nMelanie\nAlexa\nJenna\nGabriella\nMonica\nAmy\nAngelica\nJacqueline\nMiranda\nGabriela\nKathryn\nPaige\nAngela\nCassandra\nJamie\nMackenzie\nCasey\nCatherine\nVeronica\nAlicia\nKaitlin\nBianca\nEmma\nKarina\nCassidy\nSummer\nIsabella\nDominique\nHailey\nTatiana\nBrittney\nCynthia\nBailey\nKaylee\nErika\nJade\nBrandi\nAdriana\nLindsay\nCaitlyn\nChloe\nKristina\nHolly\nNatasha\nSophia\nDiana\nAutumn\nGrace\nKristin\nMadeline\nMeghan\nLeah\nRachael\nAngel\nAna\nCarolina\nAriel\nJulie\nMichaela\nDesiree\nRebekah\nCarly\nHayley\nKiana\nDeja\nZoe\nFaith\nPatricia\nCiara\nDaniela\nSelena\nAriana\nNatalia\nChristine\nKathleen\nKendall\nBethany\nDiamond\nMarisa\nAlexus\nTabitha\nCierra\nClaudia\nCristina\nTara\nValerie\nLisa\nWhitney\nKiara\nKylie\nMolly\nKassandra\nLeslie\nGenesis\nKaren\nMia\nApril\nAlexia\nMeagan\nCindy\nDana\nDeanna\nKrystal\nMaya\nMonique\nNina\nGina\nBrenda\nDelaney\nArianna\nAshlee\nDaniella\nJocelyn\nKirsten\nBrandy\nAlana\nAsia\nHope\nMikayla\nSavanna\nJada\nKaley\nMargaret\nAlejandra\nJasmin\nTori\nShania\nAshlyn\nKara\nLydia\nKasey\nAshleigh\nFrancesca\nKatrina\nMallory\nMakayla\nAdrianna\nAlison\nKrista\nAllyson\nAlondra\nSandra\nChelsey\nKendra\nTiara\nCarolyn\nNaomi\nYesenia\nDestinee\nImani\nJazmine\nMckenzie\nPriscilla\nAubrey\nIsabel\nDakota\nTamara\nTyra\nJillian\nLacey\nRaquel\nTeresa\nTia\nAlisha\nEbony\nKarla\nKierra\nNancy\nSharon\nAaliyah\nCheyanne\nJazmin\nJessie\nAudrey\nMarina\nMercedes\nNathalie\nRaven\nTatyana\nToni\nClaire\nDenise\nHanna\nElena\nKali\nVirginia\nAmelia\nCeleste\nShayla\nSofia\nAbby\nTiana\nAngelina\nPeyton\nDaisy\nLogan\nNikki\nBarbara\nJacquelyn\nLinda\nPamela\nSasha\nEvelyn\nLily\nTiffani\nCamille\nKatelynn\nLillian\nMarisol\nPaola\nThalia\nAshton\nBryanna\nKaitlynn\nKelsie\nKyra\nNadia\nPrecious\nRuth\nSerena\nAliyah\nAnastasia\nCara\nJordyn\nPayton\nArielle\nBridget\nJenny\nMoesha\nCarrie\nHarley\nKaila\nKailey\nKatlyn\nKyla\nRenee\nRiley\nShanice\nSkylar\nYasmine\nCarla\nCarmen\nJoanna\nNia\nTamia\nTessa\nValeria\nAngelique\nGloria\nJuliana\nKaleigh\nKenya\nKiersten\nLiliana\nTyler\nAimee\nBritney\nCecilia\nDevin\nJaclyn\nJanelle\nKate\nKira\nMelody\nSimone\nTalia\nTierra\nMeredith\nRobyn\nTheresa\nBrenna\nCarissa\nEmilee\nFelicia\nGiselle\nJustice\nMartha\nAisha\nCallie\nCandace\nDallas\nJaime\nJoy\nJustine\nKristi\nMarie\nRobin\nRose\nTianna\nAnnie\nCamila\nCarina\nElise\nHeidi\nIsabelle\nJohanna\nJosie\nJulianna\nKayleigh\nKristy\nLorena\nMikaela\nPaula\nRachelle\nRosa\nSadie\nVivian\nAlina\nAnne\nAshanti\nCharlotte\nEricka\nGianna\nHaylee\nJuliette\nKelli\nKristine\nShyanne\nSidney\nValentina\nCatalina\nDeborah\nElisabeth\nEva\nHaleigh\nIndia\nKari\nRuby\nShaina\nTina\nAlissa\nBria\nBrianne\nChristy\nCiera\nClarissa\nColleen\nHelen\nKennedy\nKylee\nLeanna\nSonia\nStephany\nBaylee\nCayla\nChristian\nEllen\nEsther\nHunter\nKatarina\nLexus\nMariana\nMarilyn\nNicolette\nShayna\nStacy\nTania\nTaryn\nTayler\nTracy\nCarley\nCharity\nChrista\nDemi\nIrene\nIvy\nJayla\nKellie\nMadeleine\nMaggie\nSkye\nSkyler\nStacey\nYolanda\nBreana\nCandice\nCoral\nDaisha\nEden\nKourtney\nRegina\nShakira\nTanisha\nDarby\nDevon\nGuadalupe\nJane\nJosephine\nLea\nNichole\nSophie\nCassie\nCelina\nChantel\nHalle\nInfant\nJanae\nJanet\nLoren\nMelinda\nShana\nWendy\nAlyson\nAngie\nAntonia\nChanel\nCharlene\nClara\nDestini\nElisa\nFrances\nHailee\nJalisa\nJoselyn\nKelsi\nMakenzie\nMargarita\nMoriah\nViviana\nZaria\nAlessandra\nAntoinette\nBrittani\nDaphne\nElaine\nEmely\nEmilie\nJudith\nKarissa\nKatlin\nKiera\nMacy\nMaribel\nMeaghan\nMicaela\nMiracle\nNoelle\nRegan\nTatianna\nTristan\nZoey\nChandler\nDarian\nKasandra\nKassidy\nKathy\nKaylie\nLissette\nMiriam\nRebeca\nRochelle\nSelina\nStefanie\nSusan\nValencia\nYasmin\nAlaina\nAvery\nAyana\nCameron\nChristie\nDeandra\nHallie\nJamesha\nKaylin\nLucia\nMckenna\nPrincess\nSade\nAdrienne\nAlice\nAnita\nAnn\nAntonella\nAshli\nAshly\nBeatriz\nDesirae\nDevyn\nEstefania\nGillian\nKaterina\nMadelyn\nScarlett\nShantel\nSheila\nShelbi\nYasmeen\nAlisa\nBrooklyn\nCarli\nCarlie\nChasity\nChristen\nDiane\nJulianne\nLacy\nLarissa\nMichele\nNorma\nPaulina\nShauna\nShirley\nSylvia\nTess\nAlanna\nAlayna\nAleah\nAlysha\nAmani\nAshlynn\nBrieanna\nCasandra\nChantal\nChristiana\nCristal\nDaijah\nDonna\nEleanor\nElla\nEsmeralda\nEssence\nFabiola\nIesha\nJanessa\nJayme\nJulissa\nKaela\nKaylyn\nKelley\nKeondra\nLucy\nLyric\nMayra\nParis\nQuanisha\nSandy\nShyann\nSonya\nSuzanne\nTanya\nAbbey\nAlysa\nAmari\nBobbie\nBonnie\nBridgette\nBrielle\nBrionna\nBrook\nEliza\nHelena\nIvana\nJacklyn\nJoyce\nKacie\nKailee\nKatharine\nKeri\nLauryn\nLena\nLidia\nLizbeth\nMaranda\nNadine\nSarai\nSusana\nTerri\nAnais\nAnnette\nBreanne\nCarol\nChelsie\nChyanne\nCortney\nCydney\nDasia\nDemetria\nGenevieve\nGeorgia\nGwendolyn\nJaqueline\nJoann\nJoanne\nKala\nKalyn\nKarli\nKarly\nKianna\nLaurel\nLexis\nLiana\nLyndsey\nMandy\nMelany\nNoemi\nRoxanne\nSavanah\nShaniya\nShawna\nShea\nShelly\nTrinity\nTristen\nAileen\nAlyssia\nAnabel\nAraceli\nAshely\nAthena\nAva\nBeverly\nBlair\nBrea\nBreeanna\nBryana\nChyenne\nCorina\nDamaris\nEileen\nEmerald\nGisselle\nHalie\nJailene\nJeanette\nJeanna\nJena\nJennie\nJuliet\nKaelyn\nKayley\nKayli\nKeely\nKelsea\nKrystina\nLexi\nLexie\nMacie\nMarcela\nMarlene\nMelisa\nNora\nReagan\nShanna\nShianne\nAlecia\nAlexandrea\nAllyssa\nAnissa\nAnnamarie\nAnnemarie\nAshlie\nAustin\nAyanna\nCaylee\nCaylin\nCeline\nChase\nChynna\nConstance\nDaija\nDania\nDawn\nDejah\nDorothy\nEboni\nElexis\nFiona\nFranchesca\nGiovanna\nHali\nHeaven\nIngrid\nJaimie\nJanice\nJanie\nJasmyne\nJazmyn\nJazmyne\nJenifer\nJessenia\nJill\nJodi\nJoslyn\nKalie\nKarlee\nKarlie\nKatlynn\nKaylan\nKendal\nKerri\nKeyana\nKhadijah\nKirstin\nLayla\nLeandra\nLesley\nLynn\nMaddison\nMagdalena\nMireya\nMollie\nNataly\nRacheal\nRoxana\nShelbie\nStacie\nSydni\nTamera\nTiarra\nUnique\nYessenia\nAja\nAlanis\nAlena\nAli\nAlia\nAllie\nAlliyah\nAlycia\nAnika\nArmani\nAurora\nAyla\nBailee\nBeatrice\nBlanca\nBrandie\nBreonna\nCarson\nCelena\nCheryl\nChyna\nDaja\nDeana\nDianna\nElyse\nEryn\nGraciela\nIsis\nJanine\nJasmyn\nJesenia\nJuanita\nKatia\nKiley\nKristian\nLatoya\nMaegan\nMarkia\nMckayla\nMicah\nMindy\nMyranda\nNatalya\nNoel\nReba\nRebecka\nRosemary\nSage\nSally\nSilvia\nStevie\nTabatha\nTammy\nXena\nZena\nAlisia\nAlma\nAlysia\nAmaris\nAsha\nAubree\nBreona\nCamilla\nCarlee\nCecelia\nCheyanna\nChina\nChrystal\nCinthia\nDanisha\nDarlene\nDenisha\nDulce\nEdith\nEliana\nElsa\nEunice\nFrancis\nJackie\nJanay\nJazlyn\nJensen\nJessi\nJuana\nKailyn\nKatelin\nKaycee\nKaylen\nKeisha\nKia\nKimberlee\nLatisha\nLeeann\nLisette\nLizette\nLourdes\nMacey\nMalika\nMarianna\nMaricela\nMariela\nMaritza\nMarjorie\nMarlena\nMaxine\nMonet\nMonika\nNathaly\nNikole\nPatrice\nPhoebe\nRhiannon\nRichelle\nRyan\nShiloh\nShyla\nTatyanna\nTrisha\nTyesha\nXiomara\nYvonne\nAmara\nAnisa\nAnnmarie\nAria\nBelinda\nBetty\nBlake\nBritany\nBrittni\nBrooklynn\nCathleen\nCathryn\nCiarra\nCourtnie\nDalia\nDaphney\nDeidra\nDestiney\nDina\nDominque\nDomonique\nElissa\nEstefany\nEstrella\nFarrah\nFrancheska\nGracie\nHarlee\nIleana\nIsabela\nIvette\nJana\nJaycie\nJessika\nJocelyne\nJustina\nKacy\nKarley\nKatheryn\nKaylah\nKaytlyn\nKerry\nLeanne\nLeigh\nLeila\nLesly\nLuz\nMadalyn\nManuela\nMarley\nMaureen\nMelina\nMisty\nMontana\nOctavia\nOdalys\nPerla\nPriya\nRikki\nRita\nRocio\nSarina\nShameka\nShantell\nSiera\nSky\nTamika\nTasha\nTiera\nTonya\nTricia\nYvette\nAbbigail\nAlesha\nAlexys\nAlize\nAmalia\nAmie\nAnisha\nAriella\nArlene\nAshante\nBeth\nBrittanie\nBrittny\nCarleigh\nCatrina\nCelia\nChristal\nChristin\nClare\nConnie\nCora\nCori\nCourteney\nDaysha\nDestany\nDylan\nElaina\nElexus\nFatima\nGinger\nHayden\nHilda\nHillary\nIdalis\nIman\nIvanna\nJamila\nJanel\nJazzmin\nJesica\nKaci\nKathrine\nKaty\nKaylynn\nKaytlin\nKeana\nKenyatta\nKristie\nKristyn\nKrysten\nLakesha\nLara\nLilia\nLilly\nLina\nLiz\nLoretta\nLori\nLucero\nLuisa\nMalia\nMara\nMarcia\nMarianne\nMarsha\nMikala\nMya\nNakia\nNyla\nOdalis\nRandi\nReina\nSalina\nSavana\nSerina\nShae\nShanteria\nSonja\nSuzette\nSydnee\nSymone\nTegan\nTerra\nTraci\nAbbie\nAbrianna\nAddison\nAdrian\nAkasha\nAleena\nAliah\nAliya\nAndria\nAngeline\nAshlei\nAspen\nAstrid\nBaby\nBernadette\nBianka\nBridgett\nBrigitte\nCali\nCamisha\nCharis\nChaya\nCherokee\nConnor\nDajah\nDanika\nDanyelle\nDeasia\nDenisse\nDerricka\nDrew\nDynasty\nElana\nElisha\nEsperanza\nFarah\nFernanda\nGiana\nGretchen\nHalee\nHana\nHarlie\nHolli\nIris\nJackeline\nJanna\nJayde\nJaylin\nJenae\nJoan\nJoana\nJoelle\nJohana\nJoseline\nJudy\nKatiana\nKeeley\nKennedi\nKeyona\nKristal\nKrysta\nLacie\nLatasha\nLatrice\nLaurie\nLeann\nLeilani\nLila\nLuna\nLynsey\nMaci\nMadisen\nMadyson\nMaia\nMaiya\nMariel\nMarlee\nMarlen\nMartina\nMaryann\nMeranda\nMichael\nMilagros\nMyesha\nNandi\nNikia\nPaloma\nPassion\nPatience\nRayna\nRene\nRylee\nSahar\nSamara\nSamone\nShakayla\nShakera\nShaniah\nShanika\nSharmaine\nSheridan\nSherry\nSiobhan\nSommer\nStefani\nSuzanna\nTakara\nTashara\nTatum\nTherese\nTiffanie\nTracey\nVeronika\nVianca\nYamilex\nYazmin\nYessica\nZoie\nAdeline\nAkia\nAkira\nAlex\nAlivia\nAlyse\nAmira\nAnamaria\nAngelika\nAnnabelle\nAnnelise\nAnsley\nAracely\nAshtyn\nBayleigh\nBreyana\nBrittnee\nBrittnie\nCaitlynn\nCaleigh\nCatarina\nCaterina\nChastity\nChelsi\nChelsy\nChristi\nCody\nCorey\nCorinne\nDahlia\nDanesha\nDaniele\nDanna\nDavina\nDevan\nDora\nEdna\nEmani\nFallon\nGeneva\nGeraldine\nGianni\nGladys\nHaven\nHeidy\nJacey\nJacquline\nJalissa\nJayda\nJazzmine\nJean\nJeanne\nJennyfer\nJerica\nJesse\nJewel\nJodie\nJohnisha\nJorden\nJosefina\nJoshua\nKalee\nKarinna\nKassie\nKenisha\nKenzie\nKeosha\nKeren\nKeyonna\nKimberley\nKori\nKylah\nKyndall\nLakeisha\nLana\nLaquisha\nLatavia\nLindy\nLiza\nLyndsay\nMagen\nMari\nMarta\nMiah\nMiesha\nMika\nMyah\nNathalia\nNehemie\nNereida\nNichelle\nNicolle\nOlga\nOriana\nPauline\nRacquel\nRicki\nRolanda\nRoselyn\nSamira\nSerenity\nShaelyn\nShani\nShay\nShaye\nShekinah\nSheyenne\nShiann\nShoshana\nShyan\nSienna\nStormy\nSydnie\nTabetha\nTeagan\nTrista\nTyeisha\nAida\nAleesha\nAlexander\nAliza\nAllegra\nAllissa\nAmaya\nAnnabel\nAnnalee\nAnnalisa\nAnnalise\nAnthony\nAntonisha\nArden\nArianne\nAshlan\nAudra\nAya\nAyah\nAzaria\nBella\nBobbi\nBreann\nBree\nBrett\nBriahna\nBriann\nBriauna\nBrigette\nChantelle\nCharmaine\nCorinna\nCorrine\nDanica\nDara\nDarcy\nDarrian\nDavid\nDayna\nDebbie\nDeidre\nDelanie\nDelia\nDeondra\nDesire\nDiamonique\nEleni\nEllie\nEmber\nEmilia\nEmmalee\nEugenia\nFelisha\nFlor\nFlorence\nFrancine\nGeorgina\nGreta\nHadley\nHarmony\nHilary\nIlana\nIrma\nJacinda\nJailyn\nJaimee\nJakayla\nJamecia\nJameka\nJami\nJamia\nJaylene\nJayna\nJeanine\nJeannie\nJeniffer\nJessalyn\nJody\nJohnesha\nJohnna\nJonathan\nKacey\nKaelin\nKallie\nKanesha\nKeaira\nKeanna\nKeila\nKeirsten\nKelci\nKenna\nKeturah\nKiandra\nKimber\nKinsey\nKristiana\nKrizia\nKya\nKyanna\nKyleigh\nLadeja\nLaila\nLatonya\nLeondra\nLeticia\nLia\nLilian\nLinsey\nLizabeth\nLora\nLorin\nLouise\nLynette\nMacayla\nMadelaine\nMakaela\nMakala\nMalorie\nMalory\nMandi\nMargo\nMariam\nMarielle\nMarisela\nMarla\nMaura\nMaylin\nMercedez\nMicayla\nMicheala\nMina\nMykala\nNadja\nNastasia\nNikita\nNya\nPenelope\nPhoenix\nPilar\nPorsha\nRaisa\nRaychel\nReanna\nRianna\nRonisha\nRosanna\nRosemarie\nRyann\nRylie\nSalena\nSantana\nSariah\nShakia\nShalonda\nShanell\nShanelle\nShaniqua\nShari\nShyanna\nSirena\nSkyla\nSomer\nStar\nTaelor\nTakia\nTaliah\nTichina\nTimara\nTorie\nTreasure\nTyana\nTykeria\nTykia\nTyla\nValarie\nVanesa\nWilliam\nXenia\nXochitl\nYadira\nYanelis\nYaritza\nZahra\nZara\nZuri\nAbigale\nAda\nAdele\nAdrianne\nAide\nAiesha\nAislinn\nAlandra\nAleisha\nAlexi\nAlexsandra\nAlexxis\nAllana\nAlora\nAmairani\nAmbar\nAmberlyn\nAmirah\nAnia\nAnjelica\nAnnastasia\nAnya\nAraseli\nAriane\nArleen\nAryn\nAshlin\nAshlyne\nAubrie\nAudriana\nAudrianna\nAundrea\nAustyn\nAutum\nAyesha\nAyleen\nBabygirl\nBailie\nBrie\nBritni\nBriyana\nBryce\nBryn\nCailey\nCailin\nCarline\nCarrington\nChabeli\nChanelle\nChante\nCharlie\nCinnamon\nCodi\nConstanza\nCristine\nCrysta\nCurtisha\nDanae\nDasha\nDashia\nDayana\nDeanne\nDebra\nDedra\nDeonna\nDesha\nDestani\nDevorah\nDezirae\nDiandra\nDianne\nDinah\nDomenica\nEmery\nEmmanuella\nEstella\nFiorella\nFrancisca\nGabriele\nGail\nGiuliana\nHalley\nHanah\nHarleigh\nHattie\nHazel\nHonesty\nHosanna\nHydeia\nIyanna\nIzabella\nJackelyn\nJacquelin\nJakeria\nJakia\nJalyssa\nJameisha\nJameshia\nJamesia\nJanai\nJanette\nJannelle\nJasmina\nJayleen\nJaymee\nJenica\nJenni\nJerika\nJerrica\nJessa\nJesslyn\nJo\nJonisha\nJordin\nJoselin\nJuliann\nKacee\nKady\nKaitlan\nKalli\nKambria\nKandace\nKandice\nKanisha\nKarleigh\nKayle\nKayleen\nKeara\nKelcie\nKeshawna\nKhalia\nKhayla\nKiani\nKiarah\nKiarra\nKierstin\nKim\nKlarissa\nKortney\nKrystin\nKrystle\nKyara\nLabria\nLaci\nLaken\nLane\nLaquita\nLashawn\nLeana\nLee\nLilyan\nLindsy\nLinette\nLovely\nMakaila\nMarcella\nMaren\nMarian\nMariella\nMarion\nMaryah\nMason\nMattie\nMellissa\nMercy\nMichaella\nMikela\nMira\nMisha\nMona\nMyra\nNala\nNatassia\nNatia\nNeha\nNicollette\nNidia\nNiesha\nNijah\nNiya\nNoor\nNyesha\nParker\nPenny\nPhylicia\nQuiana\nQuinn\nRaegan\nRaina\nRamona\nRanesha\nRavin\nRayne\nRebeka\nRegine\nReyna\nRhianna\nRosalee\nRosalia\nRosalie\nRosario\nRosie\nRowan\nSabina\nSabra\nSapphire\nSequoia\nShantavia\nShantelle\nShantoria\nShara\nShaylin\nShelley\nSloane\nSoraya\nSpencer\nStefany\nSterling\nStormie\nSumer\nTamesha\nTami\nTanika\nTanner\nTarah\nTasia\nTeressa\nTerry\nTiandra\nTierney\nTiesha\nTiona\nTonisha\nTrina\nTristin\nVania\nVicky\nWillow\nYamilet\nYanira\nYanitza\nYesica\nYuri\nZahria\nZaida\nZakiya\nZana\nZaynah\nZharia\nZoraida\nAshley\nJessica\nEmily\nSamantha\nTaylor\nSarah\nAlexis\nHannah\nKayla\nAmanda\nVictoria\nBrittany\nBrianna\nNicole\nMegan\nLauren\nAlyssa\nElizabeth\nRachel\nMadison\nStephanie\nJennifer\nJasmine\nAmber\nAlexandra\nDanielle\nMorgan\nCourtney\nRebecca\nSavannah\nBrooke\nKatherine\nHaley\nShelby\nSabrina\nSydney\nOlivia\nKaitlyn\nTiffany\nNatalie\nDestiny\nMelissa\nJordan\nChristina\nSara\nVanessa\nMichelle\nJulia\nGabrielle\nCheyenne\nAbigail\nChelsea\nKimberly\nMaria\nSierra\nBriana\nAndrea\nAllison\nKelsey\nAnna\nMary\nLaura\nErin\nGabriella\nAlexandria\nKristen\nEmma\nMarissa\nMonica\nSophia\nLindsey\nGabriela\nErica\nKatelyn\nAlexa\nBailey\nHeather\nShannon\nJenna\nIsabella\nJamie\nKelly\nMiranda\nAngelica\nCatherine\nAngela\nAdriana\nCaroline\nBreanna\nSummer\nDominique\nCaitlin\nKaylee\nAlicia\nJade\nMelanie\nMariah\nPaige\nAmy\nGrace\nCrystal\nKathryn\nJacqueline\nDiana\nMackenzie\nHailey\nKatie\nChloe\nCassidy\nAutumn\nBianca\nMadeline\nCassandra\nCasey\nBrittney\nCaitlyn\nKaitlin\nKarina\nAriel\nLeah\nMeghan\nMichaela\nVeronica\nAaliyah\nAriana\nErika\nFaith\nMia\nTatiana\nValerie\nJada\nSofia\nKristina\nCiara\nKylie\nZoe\nCierra\nCynthia\nLindsay\nAna\nHayley\nMikayla\nMakayla\nCarly\nDesiree\nBethany\nRebekah\nDaniela\nAdrianna\nRachael\nAngel\nPatricia\nRaven\nClaudia\nSelena\nTara\nGenesis\nCarolina\nChristine\nJulie\nMargaret\nNatasha\nDaniella\nJocelyn\nLeslie\nMolly\nDiamond\nKiana\nMaya\nKassandra\nKiara\nKrystal\nArianna\nAshlee\nBrandi\nKendall\nAlexus\nKara\nLisa\nCristina\nNatalia\nSavanna\nDeanna\nIsabel\nNina\nKaley\nKirsten\nMeagan\nGina\nHope\nKristin\nAsia\nDeja\nJasmin\nDana\nHolly\nKyla\nMallory\nAmelia\nKathleen\nNaomi\nJillian\nKyra\nLillian\nDelaney\nKaren\nWhitney\nKatlyn\nAlexia\nBrenda\nRiley\nTabitha\nTyra\nMarisa\nDakota\nHanna\nAlison\nAubrey\nClaire\nJoanna\nAlana\nCheyanne\nDaisy\nJulissa\nKasey\nAudrey\nJuliana\nKatrina\nMercedes\nNadia\nAlondra\nApril\nTori\nChelsey\nPamela\nPayton\nTamara\nAliyah\nAngelina\nBarbara\nJessie\nKendra\nSandra\nAshlyn\nKarla\nLacey\nLydia\nNancy\nPeyton\nAlejandra\nAlisha\nAlissa\nCamille\nLinda\nMckenzie\nCindy\nFrancesca\nJordyn\nImani\nKrista\nLogan\nMarina\nSasha\nAnastasia\nJazmin\nKennedy\nLily\nRaquel\nYesenia\nAllyson\nIsabelle\nJulianna\nBrandy\nBryanna\nCarmen\nCeleste\nJazmine\nMarie\nTatyana\nTiara\nAshleigh\nDestinee\nJacquelyn\nKailey\nShayla\nCarolyn\nCarrie\nMonique\nSerena\nTia\nArielle\nElisabeth\nMadeleine\nNathalie\nPriscilla\nEvelyn\nKierra\nMikaela\nSidney\nGiselle\nKatelynn\nPaola\nCara\nCarla\nKira\nAnne\nDeborah\nElena\nGianna\nSkylar\nToni\nCamila\nJenny\nTalia\nTheresa\nTyler\nCameron\nNichole\nTiana\nVirginia\nYasmin\nBridget\nMadelyn\nReagan\nSimone\nTeresa\nVivian\nBaylee\nCiera\nClarissa\nJanelle\nJuliette\nValeria\nAbby\nAimee\nDenise\nEbony\nJustine\nKali\nKayleigh\nMakenzie\nMariana\nNoelle\nPrecious\nChanel\nEmilee\nJohanna\nKaila\nMelody\nTamia\nTierra\nYulissa\nAvery\nAyanna\nCallie\nGloria\nHaylee\nHelen\nJaclyn\nKassidy\nNia\nRuth\nShania\nTessa\nBreana\nKaitlynn\nMarilyn\nMartha\nMelinda\nRenee\nRose\nSkyler\nTayler\nThalia\nValentina\nColleen\nJanae\nKylee\nLexus\nMaribel\nPaula\nRuby\nSadie\nSharon\nYasmine\nZaria\nAnn\nHunter\nKaleigh\nLorena\nMaggie\nSophie\nChristian\nEsmeralda\nEsther\nKatarina\nKaylin\nKelsie\nMarisol\nMckenna\nAshton\nBritney\nChristy\nEmilie\nFelicia\nIvy\nKelli\nMeredith\nSkye\nStacey\nSusan\nAntonia\nCharlotte\nEva\nGillian\nGisselle\nHeidi\nJosie\nJuliet\nJustice\nKiersten\nLiliana\nMontana\nTracy\nCarissa\nCarley\nCelina\nCeline\nChrista\nElisa\nElise\nHarley\nJosephine\nJudith\nKate\nAlina\nAngelique\nAnnette\nCassie\nCayla\nCecilia\nEllen\nEmely\nEricka\nJailene\nMiriam\nNikki\nRosa\nShayna\nTania\nAshanti\nCandace\nDestini\nFrances\nHaleigh\nJaime\nJoy\nKaylyn\nKellie\nKianna\nNicolette\nNikita\nParis\nShakira\nSonia\nTiffani\nAmari\nCarina\nCarli\nCristal\nHeaven\nJanet\nJulianne\nKeely\nKiera\nKourtney\nKristy\nLeanna\nLucia\nLuz\nLyric\nMaranda\nMicaela\nNadine\nNataly\nAlaina\nAlessandra\nAlyson\nBrenna\nBrooklyn\nCharlene\nDasia\nDemi\nEden\nJayla\nJazmyn\nKaylie\nKenya\nLaurel\nLyndsey\nRegina\nRobin\nRobyn\nSelina\nShaina\nShanice\nShirley\nWendy\nAllie\nAngie\nBria\nChantel\nErykah\nKacie\nKristine\nLarissa\nLoren\nMiracle\nPrincess\nRachelle\nStacy\nSylvia\nTrinity\nAnnie\nAnsley\nBeatriz\nBlanca\nDallas\nGiovanna\nHalie\nIsis\nKaela\nKari\nLena\nLourdes\nMaddison\nMariela\nMichele\nMoesha\nMoriah\nSavanah\nShawna\nAileen\nAntoinette\nBrittani\nCandice\nDayana\nEssence\nGenevieve\nKarli\nKendal\nLauryn\nLeticia\nLiana\nLizbeth\nMacy\nSarai\nShyanne\nSusana\nTanisha\nTaryn\nAlice\nAlysa\nAshlynn\nBailee\nBrianne\nBridgette\nChasity\nChristen\nChristie\nCortney\nDevin\nJane\nJanessa\nJazlyn\nJazmyne\nJuanita\nKailyn\nKarissa\nKayli\nRochelle\nShianne\nAddison\nAnais\nChandler\nEstefania\nJakayla\nKacey\nKatlin\nLilly\nMara\nPaulina\nShana\nStephany\nTina\nAnika\nAnita\nChase\nClara\nDarby\nDarian\nDorothy\nGeorgia\nIndia\nIrene\nIvana\nJessenia\nKaelyn\nKaycee\nKaylynn\nKeri\nLissette\nMaegan\nMaritza\nMireya\nRylee\nSage\nSheila\nStarr\nTamera\nTanya\nYasmeen\nZoey\nAbbey\nAdrienne\nAisha\nAleah\nCarlie\nCasandra\nDeana\nDonna\nEileen\nEleanor\nFabiola\nJesenia\nKailee\nKathy\nKelsi\nKristi\nLea\nLeann\nMandy\nMayra\nPhoebe\nRegan\nReyna\nShauna\nShea\nStefanie\nTammy\nTatianna\nTianna\nTrisha\nViviana\nYadira\nYessenia\nYolanda\nAli\nAllyssa\nAshly\nAurora\nChelsie\nDaija\nDaisha\nHallie\nIleana\nJena\nKatelin\nKiley\nKristal\nLacy\nLori\nShyann\nAlisa\nAlize\nAlysia\nAlyssia\nAshli\nAyana\nBeverly\nBryana\nCecelia\nCharity\nChyna\nDaphne\nDawn\nHalle\nJasmyne\nJesse\nJill\nJoann\nJuana\nKasandra\nKaterina\nKatia\nKirstin\nMargarita\nMaxine\nMollie\nNorma\nReilly\nSandy\nTasha\nUnique\nXena\nYvette\nAlanna\nAlayna\nAlma\nAlysha\nAnissa\nAstrid\nBreanne\nBrook\nCarlee\nCoral\nDaja\nDayna\nDestiney\nDevon\nDina\nEboni\nEliza\nElla\nEryn\nFiona\nGuadalupe\nGwendolyn\nHelena\nIris\nJanice\nJeanette\nKalie\nKalyn\nKaylan\nKenia\nKerri\nKrysten\nLeanne\nLesley\nMadalyn\nMarcella\nMarian\nMckayla\nMeaghan\nNiya\nNoel\nRebeca\nRosemary\nShantel\nSommer\nTabatha\nTess\nAlanis\nAlena\nAlesha\nAlia\nAlliyah\nAmaris\nAthena\nBeth\nBetsy\nBonnie\nBrandie\nBrielle\nCaitlynn\nCamilla\nCarol\nCarson\nCatalina\nChristiana\nCorina\nDeandra\nDiane\nElaina\nElissa\nFallon\nHaylie\nJaida\nJoanne\nJoyce\nJulisa\nKatharine\nKaty\nKeila\nKelsea\nKerry\nKeyla\nLeilani\nLexi\nLilian\nLucy\nMaia\nMakala\nMarlena\nMarlene\nMelina\nNora\nPatrice\nRaegan\nRyan\nSade\nSarina\nShelbi\nShelbie\nShyla\nStevie\nSuzanne\nSydni\nSydnie\nTatum\nValencia\nAlecia\nAlexandrea\nAlycia\nAngeline\nAnnamarie\nAyla\nBrittanie\nChina\nConnor\nConstance\nCori\nDaysha\nDevyn\nEdith\nElexis\nEmani\nFarrah\nHana\nIsabela\nJacklyn\nJamesha\nJayda\nKatheryn\nKayley\nKelley\nKelsy\nKori\nLesly\nLisette\nMakenna\nMarianne\nMarley\nMelany\nMonika\nMyra\nMyranda\nNautica\nNicolle\nRyann\nSienna\nTaya\nTracey\nTristan\nYazmin\nYulisa\nAja\nAmani\nAnjelica\nArianne\nAsha\nAshlie\nBreonna\nBrooklynn\nChantal\nDamaris\nDaria\nDebra\nDelanie\nDelia\nDesirae\nDomonique\nEllie\nEstrella\nHali\nIesha\nIliana\nJamia\nJanay\nJanie\nJanine\nJensen\nJerrica\nJessika\nJewel\nJodi\nJoselyn\nKalee\nKarlie\nKarly\nKeyana\nKia\nKimberley\nLacie\nLara\nLexis\nLia\nMadisyn\nMadyson\nNakia\nOlga\nRayna\nRhiannon\nSavana\nShanteria\nShay\nShelley\nStar\nSymone\nTristen\nTyana\nYahaira\nZakiya\nAbigale\nAda\nAmie\nAmira\nAnabel\nAnnabelle\nAspen\nAudra\nBelinda\nBetty\nBobbie\nBrandon\nBriauna\nCamryn\nCelia\nChante\nChristal\nClare\nCora\nDahlia\nDanae\nDianna\nDulce\nElyssa\nEmerald\nFranchesca\nGabriel\nGraciela\nHailee\nHillary\nJanna\nJasmyn\nJaylene\nJeanne\nJocelyne\nJoelle\nJohana\nJustina\nKallie\nKarlee\nKarley\nKatiana\nKeana\nKeyonna\nKortney\nKrysta\nLaila\nLakeisha\nLakia\nLatisha\nLatoya\nLaurie\nLilliana\nMalika\nMari\nMarianna\nMarjorie\nMarsha\nMartina\nMicah\nMicayla\nMichael\nMichayla\nMya\nMyesha\nMykala\nOctavia\nRacheal\nRhianna\nSaige\nSally\nScarlett\nSonya\nSusanna\nTarah\nTeagan\nTonya\nYanelis\nYaritza\nZoie\nAbigayle\nAdrian\nAida\nAislinn\nAllana\nAlly\nAnahi\nAnnmarie\nAriella\nAshely\nBaby\nBerenice\nBreann\nBritany\nCathryn\nCheyann\nChristin\nCiarra\nCorinne\nCorrine\nCydney\nDajah\nDania\nDara\nDarcy\nDarlene\nDebbie\nDemetria\nDestany\nDevan\nElyse\nEmilia\nEsperanza\nFatima\nGianni\nGretchen\nIngrid\nJackie\nJaliyah\nJanel\nJayme\nJenifer\nJolene\nKady\nKaelin\nKaliyah\nKatlynn\nKaylah\nKayleen\nKaytlyn\nKeanna\nKeisha\nKendia\nKenzie\nKierstin\nKyndall\nLeeann\nLeila\nMagdalena\nMarkeisha\nMarkia\nMattie\nMikala\nMilagros\nNatalee\nNikole\nPaloma\nPauline\nPhoenix\nPorsha\nPriya\nRaina\nRebeka\nReina\nRoxana\nShae\nShanna\nShardae\nSiera\nSky\nTaelor\nTanesha\nTatyanna\nTaylar\nTiffanie\nTraci\nTyanna\nTyesha\nTykeria\nVanesa\nYvonne\nAbagail\nAlexsis\nAlexys\nAlexzandria\nAliah\nAllysa\nAmara\nAmethyst\nAndreina\nAnnabel\nArlene\nAshtyn\nAurelia\nAysia\nBeatrice\nBecky\nBlake\nBrieanna\nBrigitte\nCailyn\nCali\nCarleigh\nChelsi\nChyanne\nChyenne\nCinthia\nConnie\nDaijah\nDalia\nDanisha\nDarien\nDeasia\nDeidre\nDrew\nElaine\nElisha\nEmmalee\nFarah\nGlenda\nHazel\nIlana\nIman\nIvanna\nIvey\nJakia\nJami\nJana\nJanette\nJaqueline\nJean\nJesica\nJodie\nJohnna\nKaci\nKathrine\nKayle\nKeandra\nKeara\nKimberlee\nKyleigh\nLeigh\nLillie\nLizette\nMadelin\nMagali\nManuela\nMarla\nMelisa\nMilan\nMindy\nMisty\nNathalia\nNathaly\nNyla\nPeggy\nPiper\nQuanisha\nRandi\nRebecka\nRhea\nRickia\nRosalie\nRosalyn\nRowan\nSamara\nShaniqua\nShantavia\nSilvia\nSoraya\nStefani\nTaliyah\nTatiyana\nTea\nTerra\nTiera\nTiyana\nTyla\nAbbie\nAbbigail\nAlex\nAlexander\nAlexi\nAlisia\nAliya\nAmbar\nAmberly\nAnabelle\nAniyah\nAnnika\nAnya\nArmani\nAustin\nAutum\nAva\nBaylie\nBillie\nBlaire\nBreeanna\nBridgett\nBrittni\nBrynn\nCaleigh\nChelsy\nCheryl\nColette\nCorey\nDeondra\nDestinie\nDora\nDoris\nDymond\nElexus\nEliana\nElsa\nEmoni\nEstefani\nEvangeline\nFabiana\nFrancis\nGeneva\nGiana\nGinger\nGladys\nHilary\nImari\nJacey\nJaden\nJailyn\nJalyn\nJamecia\nJameshia\nJanai\nJanell\nJayde\nJeanine\nJeannie\nJeniffer\nJessi\nJoan\nJoana\nJordin\nKala\nKalei\nKarah\nKarolina\nKaytlin\nKeeley\nKenna\nKennisha\nKeyanna\nKeyona\nKhadijah\nKristie\nKristyn\nLaney\nLayne\nLeia\nLeigha\nLeondra\nLoretta\nLynn\nMadisen\nMarcela\nMelodie\nMichala\nMikaila\nMilena\nMiriah\nMykayla\nNala\nNatali\nNelly\nNiki\nNikia\nNyasia\nOriana\nPatience\nPilar\nPriscila\nRayven\nReanna\nReese\nRegine\nRianna\nRocio\nRosemarie\nSalma\nSamaria\nSantana\nSerina\nShanelle\nShanise\nShari\nShatoria\nSheena\nShelly\nShiloh\nSiobhan\nSophonie\nSydnee\nTaja\nTamika\nTasia\nTichina\nTytiana\nYakira\nYanira\nZara\nAdilene\nAilyn\nAkira\nAlanah\nAlesia\nAlexcia\nAlexius\nAlexsandra\nAlora\nAlyse\nAlyx\nAmalia\nAmbria\nAmi\nAmina\nAnalise\nAngelena\nAngelika\nAnneliese\nAraceli\nAryn\nAshlin\nAubree\nAundrea\nAzia\nBayley\nBayli\nBelle\nBernadette\nBethanie\nBianka\nBrandee\nBreauna\nBreona\nBrionna\nBritni\nBryce\nCailey\nCalyn\nCandelaria\nCassia\nCaylee\nCaylin\nCelena\nChristi\nChrystal\nCidney\nCrista\nDanica\nDaniele\nDanna\nDavida\nDeandrea\nDena\nDenisha\nDenisse\nDericka\nDestanie\nDixie\nDominque\nElana\nElsie\nElysia\nEstefany\nFernanda\nGeena\nGeraldine\nGrecia\nHadley\nHaily\nHalley\nHarmony\nHaven\nIrma\nItzel\nJacalyn\nJackeline\nJackelyn\nJaelyn\nJames\nJania\nJanique\nJaycee\nJayna\nJennah\nJennie\nJolie\nJonelle\nJoslyn\nJourdan\nJune\nKalli\nKameron\nKaya\nKaylea\nKaylen\nKeaira\nKeira\nKelcey\nKeshana\nKeturah\nKeyondra\nKristian\nLexie\nLiberty\nLidia\nLila\nLilia\nLina\nLisset\nLiza\nLondon\nLorraine\nLucero\nLuna\nMacayla\nMacey\nMacie\nMackenzi\nMaiya\nMakaela\nMalia\nMaliyah\nMariam\nMariel\nMarion\nMarkayla\nMarlee\nMason\nMaura\nMickayla\nMimi\nMina\nMira\nMiya\nNatalya\nNoemi\nOdalis\nOdalys\nPage\nPassion\nPetra\nQuiana\nQuinn\nRachell\nRacquel\nRaeven\nRamona\nRanesha\nRaquelle\nRavyn\nRebekkah\nRikki\nRosie\nSabryna\nSamira\nSammantha\nSarena\nShakayla\nShakeria\nShalonda\nShamika\nShawn\nSheree\nSheridan\nSherry\nSilver\nSomer\nStephania\nTakia\nTala\nTalitha\nTanner\nTayla\nTierney\nTory\nTrista\nVania\nVannessa\nVicky\nWinter\nXenia\nXiomara\nYessica\nZena\nZhane\nZharia\nAbrianna\nAdela\nAidan\nAjaysia\nAkilah\nAlani\nAleigha\nAlessia\nAlix\nAliza\nAlkeria\nAllegra\nAmarilys\nAmberlyn\nAnabella\nAnai\nAnamaria\nAnanda\nAnastacia\nAndie\nAndria\nAngelic\nAnia\nAnisa\nAnnalise\nAnnelise\nAntonella\nAracely\nAriela\nAshia\nAsya\nAubrie\nAudrianna\nAyesha\nAylin\nAysha\nAzaria\nBayleigh\nBlair\nBrea\nBritani\nCailin\nCaley\nCambria\nCamisha\nCaridad\nCarlyn\nCarmela\nCassaundra\nCatera\nCayley\nCeara\nCera\nChana\nChanelle\nChantelle\nCharissa\nCharlie\nCharmaine\nChastity\nChenelle\nChiara\nChristelle\nCiana\nCloe\nCorrie\nCorrin\nCortnie\nCory\nDalila\nDamari\nDani\nDaniel\nDaphney\nDarielle\nDarrian\nDasha\nDeidra\nDejah\nDelilah\nDenae\nDerica\nDerricka\nDesire\nDestynee\nDiandra\nDolores\nDonisha\nDori\nElicia\nElisheva\nElle\nEmylee\nEriana\nEugenia\nEvita\nFantasia\nFiorella\nFlora\nGabriele\nGisel\nGisela\nGracie\nHalee\nHarlee\nHayden\nHayli\nIdalis\nImelda\nInes\nIvette\nIvonne\nIvory\nIyana\nIzabella\nJacie\nJacinda\nJadyn\nJael\nJaileen\nJaimie\nJakeria\nJakira\nJalisa\nJameka\nJamelia\nJamiya\nJanee\nJaquasha\nJaslyn\nJasmaine\nJatoria\nJaycie\nJenelle\nJocelynn\nJoni\nJosefina\nJosselyn\nJudy\nJulienne\nKaeli\nKalia\nKalin\nKamille\nKamryn\nKanisha\nKarena\nKaris\nKaryna\nKasie\nKassie\nKaydee\nKenda\nKendyl\nKenisha\nKeona\nKeonna\nKeren\nKeyera\nKezia\nKeziah\nKiarra\nKimberleigh\nKinsey\nKristiana\nKrystin\nKyana\nKyesha\nKyle\nKymberly\nKyrsten\nLaci\nLakayla\nLashay\nLatia\nLatoria\nLayla\nLeighann\nLianna\nLivia\nLynda\nLynne\nLynsey\nMagen\nMakaila\nMalissa\nMallorie\nMarah\nMarkeria\nMarlo\nMarquita\nMaryam\nMaryann\nMatilda\nMelyssa\nMercy\nMichaella\nMichela\nMillie\nMirella\nMirian\nMiyah\nMonae\nMonet\nMyeshia\nNatori\nNaya\nNeena\nNeva\nNika\nNiyah\nNoelia\nNykeria\nOcean\nPaulette\nPaxton\nPayten\nPearl\nPenelope\nPerla\nPortia\nRain\nRana\nRawan\nReem\nRhonda\nRichelle\nRita\nRosalinda\nRoxanne\nRyleigh\nSabine\nSalena\nSalwa\nSamia\nSean\nSerenity\nShai\nShakyra\nShaniece\nShaniya\nShante\nShanterria\nShekinah\nShelbey\nSheyenne\nSheyla\nShivani\nShoshana\nSiara\nSierrah\nSinead\nSkyla\nSkylynn\nSonja\nStaci\nStarla\nStorm\nSunni\nSusannah\nSuzanna\nSuzette\nTahlia\nTaleah\nTamar\nTamisha\nTaniyah\nTashana\nTashara\nTatayana\nTerri\nTiarra\nTonisha\nTreasure\nTyresha\nTytianna\nValery\nViolet\nVioleta\nWanda\nYajaira\nYara\nYenifer\nYennifer\nZariah\nEmily\nAshley\nAlexis\nSamantha\nJessica\nTaylor\nSarah\nHannah\nKayla\nMadison\nAmanda\nVictoria\nBrianna\nElizabeth\nAlyssa\nNicole\nJasmine\nMegan\nBrittany\nLauren\nRachel\nAlexandra\nJennifer\nStephanie\nSavannah\nDanielle\nDestiny\nAmber\nKaitlyn\nMorgan\nRebecca\nAbigail\nCourtney\nOlivia\nSabrina\nHaley\nJordan\nNatalie\nBrooke\nKatherine\nJulia\nVanessa\nMaria\nSydney\nTiffany\nShelby\nGabrielle\nMichelle\nAllison\nSierra\nCheyenne\nEmma\nSara\nChristina\nBriana\nAndrea\nKimberly\nAnna\nMelissa\nGabriella\nIsabella\nMary\nGabriela\nKatelyn\nSophia\nJenna\nKelsey\nAlexa\nChelsea\nBreanna\nCaitlin\nBailey\nMariah\nAlexandria\nErin\nKaylee\nMadeline\nLaura\nHailey\nJada\nMackenzie\nSummer\nAutumn\nCatherine\nAngelica\nGrace\nMarissa\nMiranda\nAlicia\nHeather\nMelanie\nKelly\nMakayla\nCaitlyn\nDiana\nCaroline\nChloe\nCassandra\nLindsey\nShannon\nCassidy\nMonica\nTatiana\nCrystal\nFaith\nJacqueline\nBianca\nAngela\nKristen\nVeronica\nAmy\nErica\nKathryn\nPaige\nJamie\nMikayla\nKatie\nAriel\nAdriana\nJade\nMia\nAriana\nBrittney\nErika\nDaniela\nLeah\nSelena\nKaitlin\nMichaela\nZoe\nAna\nKiara\nKarina\nAngel\nCynthia\nMeghan\nMaya\nSofia\nBethany\nDiamond\nIsabel\nChristine\nDominique\nAlexus\nCarly\nCarolina\nRebekah\nKylie\nNatasha\nCristina\nCasey\nCiara\nKiana\nSkylar\nAlexia\nDelaney\nJulie\nValerie\nNaomi\nJillian\nNatalia\nAdrianna\nLeslie\nEsmeralda\nKendall\nLindsay\nTatyana\nAaliyah\nHanna\nMolly\nCameron\nDesiree\nJasmin\nKristin\nClaudia\nKristina\nArianna\nHope\nDana\nDaniella\nHolly\nMeagan\nSavanna\nCierra\nAshlyn\nHayley\nJocelyn\nMargaret\nPatricia\nAnastasia\nAsia\nBrenda\nClaire\nRaven\nKathleen\nMckenzie\nTara\nAlejandra\nLillian\nGenesis\nJazmine\nAllyson\nRiley\nKirsten\nKrystal\nPriscilla\nAlana\nDeja\nImani\nRachael\nAudrey\nKassandra\nMya\nCindy\nJuliana\nKaren\nKendra\nKyra\nJulianna\nKara\nNina\nPeyton\nTiana\nDeanna\nJordyn\nNathalie\nAlissa\nFrancesca\nMallory\nDaisy\nKatlyn\nTabitha\nApril\nBrandy\nLily\nSerena\nAngelina\nAshlee\nKarla\nLogan\nLydia\nRaquel\nBrandi\nGianna\nIsabelle\nKasey\nKatelynn\nKira\nAmelia\nGiselle\nKaley\nKyla\nShayla\nJazmin\nKatrina\nSkyler\nValeria\nLisa\nTyra\nCheyanne\nMercedes\nTamara\nDakota\nTori\nEvelyn\nBryanna\nCamille\nCarmen\nKierra\nSandra\nAliyah\nAshleigh\nJulissa\nMonique\nTia\nAubrey\nAlison\nArielle\nGina\nKennedy\nMarisa\nPayton\nTamia\nCeleste\nHunter\nKaitlynn\nKayleigh\nNadia\nWhitney\nKailey\nKrista\nPrecious\nYesenia\nTeresa\nToni\nEsther\nMadelyn\nMariana\nNancy\nPaola\nTessa\nYasmin\nDeborah\nEbony\nEva\nMikaela\nShania\nTiara\nAvery\nBritney\nElena\nMarisol\nRosa\nTierra\nCarla\nHeaven\nJacquelyn\nJailene\nKylee\nSadie\nSasha\nZaria\nBridget\nCarolyn\nCassie\nDevin\nJanelle\nJoanna\nLacey\nNia\nSophie\nGillian\nHarley\nKelli\nMarina\nSharon\nCamila\nJayla\nLinda\nYasmine\nAbby\nAnne\nDestinee\nEmilee\nLiliana\nSidney\nAlina\nCecilia\nDestini\nElise\nIvy\nKate\nMelody\nPaula\nRhiannon\nRose\nVirginia\nAmari\nAngie\nAshlynn\nBrooklyn\nCharlotte\nHelen\nMarie\nRenee\nRuth\nAlisha\nAllie\nElisa\nJanae\nMadeleine\nMakenzie\nNichole\nTheresa\nCallie\nCamryn\nJaclyn\nKaleigh\nMeredith\nPamela\nRuby\nSimone\nVivian\nAlaina\nAshton\nAyanna\nBreana\nCara\nCeline\nGloria\nJanet\nJessie\nKassidy\nKenya\nThalia\nAlondra\nAntonia\nChelsey\nKaylie\nKaylyn\nMckenna\nParis\nRobin\nShayna\nStephany\nValentina\nBaylee\nHaleigh\nHaylee\nKiersten\nMayra\nAlyson\nAva\nBrenna\nJenny\nJuliette\nKaila\nKali\nNoelle\nSkye\nTania\nTianna\nAimee\nAlessandra\nBarbara\nCiera\nEmely\nFelicia\nGuadalupe\nKelsie\nKianna\nMaggie\nMarilyn\nReagan\nTaryn\nAthena\nBria\nElisabeth\nJoy\nJulianne\nLena\nNikki\nRachelle\nTayler\nCayla\nChanel\nJosephine\nJustice\nJustine\nLarissa\nLeticia\nSavanah\nTalia\nAlisa\nAyana\nCarissa\nCarrie\nCharity\nClarissa\nDenise\nJazmyn\nJewel\nKacey\nKelsi\nLauryn\nLexi\nLuz\nMicaela\nShyanne\nAnnie\nBaby\nChasity\nCoral\nJazlyn\nKiera\nLeanna\nLissette\nMartha\nMontana\nRobyn\nShakira\nTyler\nAisha\nAlly\nAlysia\nBeatriz\nCarley\nCarol\nChristy\nEileen\nEllie\nGisselle\nKatarina\nLeann\nMelinda\nRegan\nRylee\nTatianna\nWendy\nYasmeen\nAileen\nAngelique\nBrianne\nBrittani\nClara\nEricka\nHeidi\nJaime\nJanice\nJayda\nJosie\nJudith\nKarissa\nKayley\nKaylin\nLilly\nRegina\nShaina\nShanice\nBryana\nCandace\nCarlie\nCarson\nColleen\nDonna\nEssence\nGenevieve\nGeorgia\nIndia\nJanessa\nJena\nKacie\nKatelin\nKaterina\nKyleigh\nLucia\nMeaghan\nMiracle\nMiriam\nPrincess\nShawna\nSienna\nTanisha\nTina\nZoey\nAbbigail\nAshanti\nBrook\nCarina\nChrista\nCortney\nDarian\nDayana\nDiane\nJesse\nJuliet\nKailyn\nKelsea\nLexie\nLyndsey\nMoriah\nNataly\nSarai\nYolanda\nAlanna\nAlice\nBailee\nCatalina\nCelina\nChristiana\nDamaris\nDaphne\nDemi\nElaine\nEliana\nEmilie\nHalie\nJohanna\nKailee\nKasandra\nLea\nLexus\nMacy\nMichele\nSage\nSheila\nSonia\nStacey\nSusan\nSydnee\nAlycia\nAnita\nCalista\nChristian\nCora\nDemetria\nDestiney\nEden\nFrances\nFranchesca\nIris\nIsabela\nJazmyne\nKatia\nKourtney\nKristy\nLesley\nLourdes\nLucy\nMadalyn\nMaranda\nMariela\nNoemi\nSarina\nShirley\nTatum\nTrinity\nViviana\nAleah\nAmani\nAnsley\nBrooklynn\nCarli\nCasandra\nDallas\nDawn\nDevon\nErykah\nIsis\nIvana\nKatlynn\nKellie\nKristi\nLorena\nMoesha\nRandi\nSelina\nTatiyana\nUnique\nAlexys\nAlma\nAntoinette\nArmani\nAurora\nBrionna\nCharlene\nChyna\nCristal\nDesirae\nElaina\nElla\nEllen\nFatima\nIrene\nIzabella\nJane\nKarlee\nKiley\nLara\nLaurel\nLeilani\nMadisyn\nMargarita\nMckayla\nMikala\nNyla\nPerla\nReanna\nRebeca\nSade\nShyann\nTammy\nTyanna\nAlayna\nAlize\nAnn\nBrielle\nEstefania\nHailee\nHarmony\nIliana\nIreland\nJaylene\nKaelyn\nKalie\nKarli\nKarly\nKeisha\nLizbeth\nMaddison\nMadisen\nMadyson\nMaegan\nMaia\nNathaly\nNikita\nPaulina\nScarlett\nShaniya\nTiffani\nTracy\nTristan\nYessenia\nAddison\nAdrienne\nAlysa\nBeverly\nBreanne\nCandice\nCarlee\nChase\nCori\nDaija\nDeasia\nElisha\nEliza\nFiona\nGiovanna\nGladys\nGraciela\nHillary\nIvette\nJaida\nJalisa\nJamesha\nJana\nJessenia\nJoyce\nJulisa\nKeely\nKeri\nLaurie\nLesly\nLiana\nMaribel\nMicah\nMisty\nMyah\nNakia\nReilly\nReyna\nSandy\nShelbie\nSilvia\nSydnie\nSylvia\nTanya\nAbbey\nAja\nAlexi\nAnais\nAnnabelle\nBlanca\nBobbi\nBreeanna\nChantal\nChantel\nDaisha\nDarby\nDasia\nEleanor\nJaelyn\nJakayla\nJaqueline\nJasmyn\nJeanette\nJesenia\nJoanne\nKaela\nKamryn\nKarlie\nKayli\nKelsy\nLeila\nMaxine\nMelisa\nMyranda\nRhianna\nRochelle\nSalma\nStacy\nTatyanna\nAlexandrea\nAliya\nAlyssia\nAmaris\nAnahi\nAnjelica\nAnnette\nAsha\nAstrid\nBonnie\nBridgette\nChelsie\nChristin\nConstance\nDenisha\nDina\nDylan\nEboni\nElissa\nFallon\nHalle\nJamila\nJoselyn\nJuanita\nKaci\nKarley\nKathy\nKatlin\nKenzie\nKerri\nKerry\nKirstin\nKristine\nKristyn\nLayla\nLidia\nLoren\nLuisa\nLuna\nLyndsay\nLyric\nMagdalena\nNicolette\nRacheal\nRyan\nSamira\nShana\nSkyla\nStarr\nStefanie\nSydni\nTamera\nAlivia\nAmara\nAngeles\nAnissa\nAntonella\nArlene\nAyla\nBreonna\nCelia\nChristal\nCiarra\nCorinne\nDanyelle\nDeandra\nElyse\nElyssa\nGabriel\nHana\nJailyn\nJanai\nJanie\nJessika\nJoann\nJodi\nJoelle\nKatharine\nKeila\nKeira\nKendal\nKeyana\nKinsey\nLilian\nLynn\nMacey\nMadelynn\nMakenna\nMalia\nMara\nMarcella\nMaritza\nMelina\nMicayla\nNicolle\nNoelia\nRylie\nSerenity\nSherry\nStevie\nTabatha\nTea\nWillow\nYvette\nYvonne\nAlex\nAmira\nAnabel\nAnnabel\nAraceli\nAubree\nBreann\nCailin\nCaitlynn\nCatera\nChandler\nChantelle\nChynna\nClare\nDaja\nDalia\nDanna\nDebra\nDejah\nDestany\nDorothy\nDrew\nElexis\nEmerald\nEmilia\nEryn\nGeneva\nGwendolyn\nHelena\nIleana\nJami\nJanay\nJasmyne\nJaylin\nJensen\nJustina\nKeanna\nKeyla\nKhadijah\nKori\nKortney\nKristal\nMyra\nNathalia\nNaya\nNayeli\nNikole\nNoel\nNorma\nOctavia\nOlga\nParker\nPatience\nQuinn\nRosemary\nSamara\nSavana\nShea\nShianne\nSonya\nSusana\nSymone\nTaliyah\nTasia\nTytiana\nValencia\nYadira\nYaritza\nZoie\nAda\nAida\nAkira\nAlea\nAmalia\nAnika\nAniya\nAnnamarie\nAnya\nAshly\nAspen\nBella\nBlair\nBrandie\nBrieanna\nCali\nCydney\nDaijah\nDaria\nDayna\nDenisse\nDevyn\nElsa\nEstefany\nEunice\nFelicity\nFrancheska\nGretchen\nHallie\nHollie\nJaimie\nJanel\nJanell\nJolie\nKala\nKalli\nKallie\nKarena\nKaylan\nKaylea\nKelley\nKenia\nKeren\nLatavia\nLeandra\nLeeann\nLinsey\nMakala\nMariam\nMarianna\nMarjorie\nMarkia\nMarlene\nMilagros\nMireya\nMiya\nMollie\nNadine\nPhoebe\nPriscila\nRaegan\nShanna\nShelbi\nShiann\nShyla\nSky\nSommer\nStefani\nStella\nSuzanne\nTayla\nTehya\nTerra\nTess\nTracey\nTrisha\nYazmin\nZariah\nAlysha\nAngelika\nAngeline\nArianne\nAriella\nAutum\nBlake\nBrittni\nBrynn\nCamilla\nCelena\nChelsy\nCherish\nChristie\nChyenne\nConnie\nDania\nDeondra\nDestinie\nEdith\nEmmalee\nEsperanza\nFabiola\nFrancis\nGia\nGissel\nGiuliana\nHalee\nHali\nHaylie\nIndira\nJenifer\nKatiana\nKaylen\nKeara\nKia\nKim\nKristie\nKrysten\nKrystina\nKyndal\nLexis\nLillie\nLiza\nLori\nMarlena\nMarley\nMaureen\nMina\nNora\nRaina\nRocio\nRoxana\nSariah\nSerina\nShae\nShantel\nShantell\nShaye\nSirena\nTonya\nTristen\nWinter\nXena\nAbigale\nAdela\nAkia\nAlannah\nAlena\nAlesha\nAllyssa\nAnamaria\nAnaya\nAngely\nAnnelise\nAnnemarie\nAnnika\nAnnmarie\nAshely\nAshli\nAshlie\nBeatrice\nBetty\nBobbie\nBrandee\nBrittanie\nCailey\nCaleigh\nCaylee\nCaylin\nChantell\nChastity\nChristen\nChrystal\nChyanne\nDaniel\nDarlene\nDeana\nDestanie\nDoris\nDymond\nFarah\nFarrah\nGeraldine\nGrayson\nHadley\nHaven\nHeidy\nIda\nImari\nIrma\nJakeria\nJamia\nJamya\nJayde\nJazzmin\nJean\nJennie\nJewell\nJill\nKalyn\nKameron\nKamila\nKari\nKaty\nKaya\nKaycee\nKaylah\nKendyl\nKenisha\nKeyanna\nKeyona\nKiandra\nKimberley\nKristiana\nLeanne\nLeigha\nLeighann\nLianna\nLilliana\nLisbeth\nLisette\nLorraine\nLynette\nMaiya\nManuela\nMarcela\nMargaux\nMaricela\nMarquisha\nMason\nMelany\nMichayla\nMira\nNikia\nPenelope\nPiper\nRayna\nRegine\nRosemarie\nSalena\nShantrell\nShay\nSiera\nSonja\nSoraya\nSpencer\nStefany\nTahlia\nTasha\nTyesha\nValery\nVanesa\nYajaira\nYazmine\nYulisa\nYulissa\nAbigayle\nAdrian\nAlani\nAleena\nAleksandra\nAlesia\nAlexsandra\nAlexzandra\nAlliyah\nAllysa\nAndria\nAniyah\nAracely\nAryana\nAryanna\nAubrie\nAudra\nAyesha\nBernadette\nBernice\nBethanie\nBrea\nBreona\nBriona\nCache\nCailyn\nCassia\nCathleen\nCecelia\nChanelle\nChassidy\nChaya\nCorrina\nDahlia\nDanae\nDara\nDarla\nDaysha\nDelanie\nDelia\nDiamonique\nDiandra\nDinah\nEstrella\nFrankie\nGabriele\nGisell\nGwyneth\nHolley\nIlana\nIman\nIngrid\nIsha\nIvanna\nJackie\nJacquelin\nJaden\nJaide\nJaileen\nJaliyah\nJaniya\nJaquelin\nJayme\nJenesis\nJesica\nJoana\nJohana\nJohnna\nJorden\nJourdan\nKalee\nKatera\nKayle\nKaylynn\nKaytlin\nKeiana\nKimberlee\nKiyana\nKrysta\nLakin\nLaney\nLatisha\nLeondra\nLila\nLondon\nLoretta\nMacayla\nMaci\nMadilyn\nMandy\nMarisela\nMarta\nMartina\nMilan\nMonae\nMyesha\nMykayla\nNaja\nNastassja\nNatalya\nNykeria\nNylah\nOdalis\nPaloma\nRavyn\nRemi\nRiana\nRonisha\nRosalie\nSaige\nSally\nSana\nSarahi\nShakeria\nShanteria\nShanya\nShauna\nShelly\nSiena\nSusanna\nTakeria\nTeagan\nTracie\nYael\nYailin\nYailyn\nYessica\nZahria\nZakiya\nAbbie\nAbigael\nAbriana\nAdelina\nAlanis\nAlecia\nAleisha\nAliana\nAliza\nAlli\nAmbar\nAnnalise\nAreli\nAria\nAriyon\nAsya\nAyleen\nAysha\nBayleigh\nBeth\nBetsy\nBianka\nBillie\nBreasia\nBreyanna\nBrigitte\nBritany\nBryce\nCami\nCandy\nCari\nCathryn\nCatrina\nCheryl\nCheyene\nCianna\nCinthia\nCorina\nCristy\nDajah\nDarien\nDevan\nDharma\nDianna\nDixie\nDomonique\nDyanna\nElicia\nEmani\nEryka\nEstefani\nEve\nGiana\nGianni\nGisel\nGlenda\nGracie\nHalley\nHarlee\nHilda\nHolland\nImelda\nInfinity\nIsela\nIvory\nIyana\nJacey\nJael\nJailine\nJalissa\nJamecia\nJameshia\nJamisha\nJanee\nJanelly\nJaylynn\nJazzmine\nJeanne\nJeannette\nJennyfer\nJoan\nJocelin\nJordana\nJosefina\nJudy\nKaili\nKalista\nKalynn\nKami\nKamia\nKassie\nKatey\nKathlyn\nKatya\nKaytlyn\nKeana\nKeandra\nKeegan\nKeeley\nKeiara\nKennedi\nKenyatta\nKera\nKeturah\nKeyonna\nKiarra\nKinley\nKiran\nKrystin\nKyanna\nKyara\nKyndall\nKyrsten\nLacy\nLakayla\nLana\nLane\nLashay\nLatoya\nLatricia\nLeigh\nLeona\nLianne\nLilah\nLillianna\nLiz\nLois\nLucille\nMacie\nMalika\nMallorie\nMarianne\nMarion\nMarkeisha\nMarla\nMarlee\nMattie\nMercy\nMerissa\nMichaella\nMiesha\nMika\nMilagro\nMirella\nMonet\nNandi\nNautica\nNiki\nNisha\nNiyah\nNya\nNyah\nOcean\nOriana\nPatrice\nPricilla\nPriya\nQuanisha\nRachell\nRayven\nRebecka\nReina\nRheanna\nRita\nRonesha\nRoselyn\nRyanne\nRyleigh\nSabine\nSamaria\nScarlet\nSequoia\nShaila\nShantoria\nShayne\nShekinah\nSheyla\nShiloh\nShivani\nSyanne\nTaina\nTalya\nTana\nTaniya\nTaya\nTerri\nTimesha\nTinesha\nTreasure\nTristin\nTytianna\nValarie\nVianca\nXiomara\nYanelis\nYanet\nZena\nZhane\nZipporah\nZuri\nAbril\nAcacia\nAdreanna\nAerial\nAiyana\nAlanah\nAlexsis\nAlisia\nAlissia\nAlora\nAmaya\nAmie\nAmina\nAnabelle\nAnalise\nAndie\nAngeli\nAngelia\nAngelic\nAnisha\nAnnabeth\nAnnalee\nAnyssa\nArden\nAriane\nAriyana\nArlette\nArmoni\nAubrianna\nAundria\nAurelia\nAvianna\nAya\nAysia\nAzaria\nAzariah\nBaylie\nBelinda\nBenita\nBertha\nBreauna\nBriahna\nBrittnee\nBronwyn\nBrookelyn\nCalli\nCameryn\nCamry\nCarey\nCaridad\nCarleigh\nCarrissa\nCarter\nCassey\nCassi\nCatlin\nCaylie\nCharisma\nCharissa\nCharlee\nChasidy\nCherise\nCheyanna\nChiara\nChiquita\nCiana\nContessa\nCorey\nCristen\nDanesha\nDanica\nDaniele\nDanisha\nDarbi\nDavina\nDelilah\nDesire\nDestanee\nDestyni\nDeziree\nDomenica\nDorian\nDulce\nDyamond\nDynasty\nElana\nElayna\nElisabet\nEmalee\nEmelie\nEmelyn\nEmery\nEmiley\nEmilly\nEriel\nEstela\nEvangeline\nFlor\nFlora\nFrancine\nGeena\nGemma\nGena\nGinger\nGracen\nHayden\nHayle\nHayleigh\nIesha\nIvelisse\nJackeline\nJacklyn\nJacquelynn\nJadelyn\nJaeda\nJakia\nJameisha\nJamesia\nJamey\nJanaya\nJanine\nJanna\nJaylah\nJaymie\nJazlynn\nJocelyne\nJohnnie\nJoi\nJonathan\nJordin\nJoseline\nJoycelyn\nJuana\nJuliann\nKacee\nKai\nKailah\nKaira\nKalei\nKalen\nKamiyah\nKarin\nKarishma\nKarmen\nKasi\nKatalina\nKatheryn\nKatilyn\nKayleen\nKaylene\nKeilah\nKenna\nKeona\nKerstin\nKeshawna\nKierstin\nKiona\nKirstyn\nKristian\nKrystle\nKyana\nKylah\nLacee\nLaila\nLaken\nLakeria\nLatasha\nLatia\nLeia\nLeslye\nLiberty\nLilli\nLina\nLizette\nLovely\nLucero\nMadelyne\nMadysen\nMahogany\nMakiya\nMaleena\nMarena\nMarian\nMarielena\nMarisha\nMarlen\nMarly\nMarsha\nMarshay\nMaryam\nMaryann\nMaryjane\nMichael\nMisha\nMona\nMyriam\nNaiya\nNaomie\nNatalee\nNeda\nNelly\nNicola\nNigeria\nNila\nNour\nOceana\nOneisha\nPearl\nPresley\nRaeanne\nRayanna\nRayne\nRebeka\nRichelle\nRoseline\nRoxanna\nSabryna\nSaray\nSaskia\nSeanna\nShaelyn\nShakia\nShalyn\nShani\nShaniah\nShaniece\nShanika\nShanise\nShantavia\nShatavia\nShauntavia\nShaylin\nShealyn\nSheyenne\nShoshana\nSiobhan\nStacie\nStar\nStephani\nStephania\nSusanne\nTakia\nTaleah\nTaliah\nTamika\nTangela\nTaylar\nTeaira\nTegan\nTerrianna\nThais\nThania\nThelma\nTheodora\nTiarra\nTiera\nTiesha\nTionna\nTopaz\nTorri\nTraci\nTriana\nTricia\nTristyn\nTyana\nTyla\nValeska\nVannessa\nVenus\nVera\nViolet\nVivica\nWynter\nYaileen\nYamileth\nYara\nYesica\nYuri\nZahra\nZainab\nZara\nZariyah\nEmily\nAshley\nSamantha\nSarah\nAlexis\nHannah\nTaylor\nVictoria\nKayla\nJessica\nBrianna\nMadison\nAlyssa\nLauren\nElizabeth\nAmanda\nNicole\nJasmine\nRachel\nDestiny\nAlexandra\nJennifer\nMegan\nBrittany\nOlivia\nStephanie\nAbigail\nJulia\nSavannah\nSydney\nMorgan\nNatalie\nAmber\nDanielle\nHaley\nBrooke\nKaitlyn\nGabrielle\nKatherine\nIsabella\nEmma\nCourtney\nRebecca\nMaria\nSierra\nGrace\nSophia\nAnna\nJordan\nSabrina\nVanessa\nKiara\nSara\nGabriela\nAndrea\nMichelle\nGabriella\nChristina\nMelissa\nBriana\nMackenzie\nMary\nHailey\nTiffany\nShelby\nBreanna\nChloe\nAllison\nCheyenne\nJenna\nKimberly\nKaylee\nLaura\nAlexa\nKatelyn\nAngela\nFaith\nJada\nVeronica\nErin\nMarissa\nAlexandria\nMakayla\nChelsea\nMariah\nJade\nCaroline\nAutumn\nZoe\nIsabel\nMelanie\nDiana\nKelly\nCatherine\nKelsey\nSofia\nHeather\nMikayla\nCassidy\nKristen\nCaitlin\nTatiana\nLeah\nBailey\nBianca\nLindsey\nPaige\nAdriana\nAngelica\nJacqueline\nAlicia\nKatie\nAmy\nShannon\nAngel\nSummer\nSkylar\nKathryn\nMaya\nDaniela\nMia\nMiranda\nCassandra\nMadeline\nArianna\nCrystal\nAriana\nAlexia\nCasey\nErica\nBrittney\nJamie\nSelena\nAna\nTatyana\nDiamond\nNatalia\nValerie\nAriel\nKylie\nErika\nCaitlyn\nMeghan\nDaniella\nMolly\nCierra\nRiley\nCarolina\nJulie\nDominique\nKaitlin\nPatricia\nCarly\nHayley\nRebekah\nShania\nCynthia\nDesiree\nHanna\nHope\nKarina\nLillian\nChristine\nClaudia\nBritney\nLeslie\nMonica\nJillian\nIsabelle\nJazmine\nKendall\nMichaela\nSavanna\nLindsay\nDelaney\nCamryn\nMya\nTrinity\nHolly\nNaomi\nJocelyn\nJuliana\nClaire\nAshlyn\nBethany\nGenesis\nLauryn\nCameron\nKristina\nKiana\nLydia\nMargaret\nNatasha\nGianna\nDaisy\nDeja\nNina\nRaven\nMckenzie\nMeagan\nRachael\nAsia\nKrystal\nValeria\nAudrey\nCindy\nFrancesca\nCheyanne\nAdrianna\nCristina\nCamila\nCiara\nKassandra\nNathalie\nSkyler\nJayla\nKara\nAlana\nAlexus\nKaren\nSophie\nAllyson\nEvelyn\nGiselle\nKyla\nPaola\nAaliyah\nAngelina\nApril\nDakota\nDana\nKendra\nJordyn\nDestinee\nJulianna\nKatelynn\nKatrina\nKristin\nAliyah\nAmelia\nJasmin\nKira\nEsmeralda\nKathleen\nLily\nTiana\nDeanna\nKyra\nValentina\nYesenia\nKaley\nWhitney\nCecilia\nElena\nFelicity\nKirsten\nMakenzie\nAlissa\nBrenda\nBryanna\nGina\nJazmin\nKylee\nMadelyn\nMallory\nMariana\nAbby\nPriscilla\nBrandi\nSerena\nTabitha\nTessa\nAlejandra\nSandra\nTara\nAnastasia\nJoanna\nKarla\nMarisa\nRuth\nShayla\nTamara\nYasmine\nEmilee\nKasey\nAshlynn\nLogan\nAshlee\nMonique\nKailey\nLisa\nPeyton\nRosa\nTalia\nBrandy\nImani\nSidney\nGillian\nMercedes\nKaitlynn\nMarina\nSasha\nTori\nAlison\nCamille\nCeleste\nLacey\nRaquel\nRose\nAshleigh\nCassie\nZaria\nBarbara\nCarla\nCarolyn\nEva\nJailene\nPayton\nArielle\nAubrey\nBrooklyn\nHaylee\nHunter\nJessie\nNancy\nAva\nJulissa\nKatlyn\nLinda\nAmari\nKierra\nMadeleine\nMarie\nNadia\nNia\nTia\nToni\nYasmin\nEbony\nElise\nKaylin\nPrecious\nRenee\nShanice\nTeresa\nVirginia\nAlaina\nAlanna\nAlina\nAvery\nAyanna\nCarissa\nTiara\nCallie\nDestini\nJanelle\nKate\nKaylie\nKrista\nPaula\nSharon\nTania\nTianna\nAlondra\nBrenna\nCarmen\nDeborah\nJacquelyn\nJuliette\nKassidy\nKiera\nLexi\nLiliana\nMarisol\nNichole\nAmaya\nBreana\nCayla\nKaila\nKayleigh\nKianna\nMacy\nMckenna\nMelody\nMeredith\nMikaela\nNoelle\nPamela\nVivian\nEmely\nEsther\nFrances\nJenny\nKaleigh\nKali\nKennedy\nAlisha\nAllie\nCarley\nElisabeth\nIsabela\nKamryn\nTamia\nTheresa\nTyra\nAngie\nAnnabelle\nBridget\nChasity\nChelsey\nDenise\nFelicia\nGisselle\nHallie\nAnais\nAnne\nAnnie\nAshton\nGloria\nKenya\nMiriam\nTierra\nAlessandra\nBaylee\nCara\nCiera\nHaleigh\nHeaven\nHelen\nJohanna\nRhiannon\nRylee\nShayna\nShyanne\nTatianna\nCharlotte\nGeorgia\nJanet\nJazmyn\nJulianne\nKarissa\nLyric\nReagan\nRuby\nSimone\nTyler\nWendy\nAntonia\nDestiney\nEssence\nKiersten\nMakenna\nSadie\nSage\nSusan\nAlice\nAngelique\nChrista\nFatima\nGuadalupe\nIvy\nJanae\nJosephine\nShakira\nStacey\nAbbey\nBrielle\nChanel\nCharity\nEmilie\nHeidi\nIsis\nJoy\nJudith\nRegan\nSonia\nAnn\nBailee\nChristy\nCoral\nHailee\nKourtney\nKyara\nMayra\nMicaela\nRachelle\nSkye\nThalia\nViviana\nBeatriz\nCarrie\nChyna\nClarissa\nHalle\nHarley\nJasmyne\nJuliet\nKayley\nKaylyn\nMiracle\nParis\nTatyanna\nTayler\nZoey\nAlisa\nBrianne\nColleen\nElyssa\nEricka\nGiovanna\nIndia\nJaclyn\nJazlyn\nJenifer\nKacie\nKailee\nMaggie\nMelinda\nNicolette\nRegina\nRobyn\nSandy\nSelina\nAlayna\nAlyson\nAurora\nCatalina\nClara\nDejah\nEileen\nEliana\nElisa\nJaime\nJosie\nKatia\nKelli\nLesly\nLisette\nLissette\nLuz\nMaegan\nMarilyn\nMckayla\nNikki\nNoelia\nSheila\nBeverly\nCarol\nCeline\nChristian\nDamaris\nDevin\nGenevieve\nJaden\nJanessa\nJuanita\nLayla\nMara\nMarianna\nMaribel\nPrincess\nRebeca\nSerenity\nStella\nStephany\nTatum\nAniya\nAshanti\nBaby\nCarina\nChristiana\nEve\nIris\nJayda\nJewel\nLucy\nShyann\nAddison\nAnnette\nAntoinette\nAnya\nAthena\nCandace\nDianna\nFabiola\nJane\nJasmyn\nJoyce\nKacey\nKatarina\nKellie\nLena\nMaranda\nMelany\nMontana\nPhoebe\nRobin\nSavanah\nSusana\nTracy\nValery\nAbbie\nAimee\nAisha\nDaija\nDasia\nDevon\nDonna\nEden\nGracie\nIrene\nJaida\nJoanne\nKailyn\nKelsie\nKiarra\nLara\nLarissa\nLaurel\nLeanna\nLeticia\nLiana\nLucia\nMaddison\nMadisyn\nMargarita\nNataly\nNora\nSienna\nStacy\nUnique\nAdrienne\nAileen\nAlycia\nAmira\nAnsley\nArlene\nArmani\nBlanca\nBria\nBridgette\nCandice\nCelina\nCharlene\nDarby\nDorothy\nFranchesca\nHana\nJanice\nJaniya\nJesenia\nJesse\nKaylah\nKendal\nKiley\nLeanne\nLeila\nLeilani\nLexie\nLilly\nLizbeth\nLorena\nLourdes\nLyndsey\nMarcela\nMariela\nMarlee\nMelina\nMoriah\nNikita\nPiper\nShae\nSydni\nSylvia\nTess\nZoie\nAbigayle\nAnika\nAyla\nBreonna\nBrittani\nBryana\nCarlie\nCasandra\nDaphne\nDrew\nEllen\nFiona\nHalley\nHelena\nIvana\nJamya\nJustine\nKristine\nKyleigh\nLexus\nMaia\nMaritza\nMarley\nMartha\nNadine\nNathaly\nPatrice\nRochelle\nSarai\nSarina\nSavana\nScarlett\nShianne\nSkyla\nSoraya\nTaryn\nAleah\nAlma\nAmani\nAyana\nCalista\nChyanne\nCristal\nDelilah\nDevyn\nDiane\nJamesha\nKaela\nKeanna\nLaney\nLia\nLuisa\nMadisen\nMarlene\nNoemi\nNorma\nOlga\nOriana\nPaulina\nRayna\nReanna\nRyan\nShana\nShaniya\nShea\nStefanie\nTyanna\nYolanda\nAlexys\nAnaya\nAnissa\nAshly\nBobbi\nCali\nCarli\nCarson\nChantel\nDaisha\nDalia\nDallas\nDaria\nDarlene\nElaina\nEmerald\nEstefania\nGabriel\nGiana\nGraciela\nHadley\nIliana\nJamia\nJuana\nJulisa\nJustice\nKaelyn\nKalie\nKallie\nKarlee\nKarli\nKaterina\nKatharine\nKayle\nKeana\nKeara\nKristi\nLesley\nLila\nLoren\nMadalyn\nMadyson\nMicah\nMiya\nMykayla\nNakia\nNoel\nRaina\nRandi\nRoxanne\nShaina\nShawna\nTamera\nTanisha\nAja\nAlanis\nAlex\nAlly\nAnabel\nAstrid\nCameryn\nChandler\nChantal\nCortney\nDaijah\nDayana\nDebra\nElaine\nEstrella\nFarrah\nGwendolyn\nHalie\nHaylie\nIleana\nJalyn\nJaqueline\nJoselyn\nKala\nKari\nKasandra\nKatelin\nKeely\nKenzie\nKeri\nKortney\nLea\nMeaghan\nMyah\nParker\nReilly\nRosemary\nRowan\nSalma\nShakayla\nShanna\nTanya\nTeagan\nTrisha\nWillow\nXiomara\nYazmin\nAiyana\nAleena\nAlexandrea\nAlivia\nAllyssa\nAlysa\nAlysha\nAnabelle\nAngeline\nAryana\nAshli\nAubrie\nCailyn\nCelia\nChelsie\nCori\nCorinne\nDina\nDulce\nEboni\nEdith\nElexus\nEliza\nErykah\nFernanda\nGriselda\nHillary\nItzel\nJacey\nJackie\nJakayla\nJanie\nJayde\nJazmyne\nJessenia\nJodi\nKaci\nKalyn\nKarley\nKatlynn\nKatya\nKayli\nKaylynn\nKeisha\nKeyla\nKrysten\nLacie\nLana\nLizeth\nLizette\nLynn\nMacey\nMagdalena\nMaiya\nMalia\nMariam\nMiah\nMicayla\nNikole\nNyasia\nPerla\nSaige\nSamaria\nSariah\nShantel\nShelbie\nSilvia\nSonya\nStarr\nSuzanne\nSydnee\nTatiyana\nAbigale\nAlia\nAlysia\nAmara\nAnabella\nAnnamarie\nAnnika\nAnnmarie\nAshlie\nAudra\nBonnie\nBrea\nBridgett\nCaitlynn\nCaleigh\nCheryl\nCiarra\nCora\nDania\nDarian\nDawn\nDeasia\nDemi\nElissa\nEllie\nElyse\nEsperanza\nFabiana\nFallon\nHaven\nJana\nJanay\nJaylene\nJeniffer\nJocelyne\nJustina\nKarlie\nKeila\nKeira\nKelley\nKinsey\nKirstin\nKristal\nKristy\nLeandra\nLillie\nMollie\nNicolle\nOdalys\nPaloma\nQuinn\nRacquel\nReese\nSapphire\nShanya\nShelbi\nSydnie\nTamya\nTiffani\nTina\nYasmeen\nYessenia\nAkira\nAlena\nAlexi\nAlexie\nAlyssia\nAmaris\nAnjali\nAnnalisa\nAriella\nAryanna\nAylin\nBayleigh\nBianka\nBreanne\nBrionna\nBrooklynn\nBrynn\nCaterina\nCaylee\nChante\nChristal\nChristen\nDaniel\nDaphney\nDasha\nDayna\nDaysha\nDeandra\nDestine\nElla\nEmilia\nEmmalee\nFarah\nGeneva\nGianni\nGissel\nGiulia\nHalee\nHarmony\nJamaya\nJamila\nJayleen\nJayme\nJazzmine\nJessi\nJoelle\nKathy\nKatlin\nKaylan\nKelsi\nKeyanna\nKeyona\nKimberlee\nLeeann\nLilian\nLondon\nMacie\nMahogany\nMakeda\nMarisela\nMartina\nMichele\nMoesha\nNathalia\nOctavia\nPauline\nReina\nRene\nRhea\nRyleigh\nSally\nShelly\nSiara\nSommer\nStar\nTaliyah\nYazmine\nYvonne\nZhane\nAida\nAliya\nAlize\nAlora\nAnita\nAntonella\nArden\nAshtyn\nAspen\nBerenice\nBlair\nBlake\nBreona\nBrieanna\nCarleigh\nCecelia\nChase\nChristelle\nChristie\nClare\nConstance\nCydney\nDajah\nDanisha\nDelia\nDemetria\nDesirae\nDestyni\nDionna\nDora\nDylan\nElisha\nEunice\nHayleigh\nHazel\nIesha\nIsabell\nJadyn\nJaelyn\nJala\nJaslyn\nJaylynn\nJeanette\nJohana\nJolie\nKaia\nKarly\nKatheryn\nKelsy\nKeren\nKia\nKristie\nKyana\nLacy\nLatoya\nLaurie\nLeann\nLilliana\nLina\nLiz\nMandy\nMarcella\nMarjorie\nMarkayla\nMaryann\nMaura\nMikala\nMilagros\nMireya\nMonet\nMyra\nNatali\nNya\nNyla\nOdalis\nPriscila\nRachell\nReyna\nRhianna\nRianna\nRita\nRosalie\nSade\nSarena\nShaelyn\nShamya\nShanelle\nShyla\nSky\nSophonie\nStormy\nTabatha\nTaina\nTaliah\nTammy\nTaniya\nTiera\nTiffanie\nTionna\nTionne\nTyana\nTyla\nViolet\nWhitley\nWinter\nYaritza\nYessica\nZahria\nAbbigail\nAbriana\nAbrianna\nAdeline\nAdrian\nAdrianne\nAinsley\nAlexcia\nAlliyah\nAmbria\nAmie\nAmya\nAnnemarie\nAsha\nAshely\nAubree\nAyleen\nAysia\nAzaria\nBeatrice\nBernice\nCathryn\nChaya\nChiara\nChristin\nCloe\nDaja\nDanae\nDarcy\nDayanara\nDesire\nDestani\nDomonique\nEleanor\nElexis\nEmber\nFrancisca\nGiavanna\nHadeel\nHollie\nIlana\nIngrid\nIreland\nIyanna\nJackeline\nJaimie\nJakeria\nJania\nJanna\nJaylin\nJayna\nJensen\nJesica\nJoana\nJoann\nJoi\nJosefina\nKaili\nKayleen\nKaytlin\nKenna\nKennedi\nKeyana\nKierstin\nKimberley\nKyndall\nLashay\nLatisha\nLeigha\nLidia\nLori\nLuciana\nLuna\nLynette\nMalaysia\nMalika\nMarkeisha\nMelisa\nMichaella\nMyranda\nNadya\nNigeria\nNiya\nPatience\nRamona\nRikki\nRyann\nSalina\nSamara\nShaniah\nShaniyah\nShauna\nShay\nSheridan\nSloan\nStefany\nStevie\nTaja\nTamar\nTasha\nTayla\nTea\nTehya\nTykeria\nTytiana\nTytianna\nXena\nYvette\nZariah\nAbagail\nAdia\nAlea\nAlexander\nAliana\nAlona\nAnalise\nAnnabel\nAracely\nBaily\nBelen\nBillie\nBreeanna\nBritany\nBrook\nCallista\nCarlee\nCelena\nChastity\nChrystal\nChynna\nCourteney\nCyan\nDanyelle\nDavina\nDelanie\nDenesha\nDestany\nDestinie\nDixie\nDorian\nDyani\nElle\nEmery\nFrancis\nGisela\nGladys\nGlory\nHeidy\nHolley\nIndya\nIvette\nIvory\nIyana\nIzabella\nJaiden\nJaileen\nJailyn\nJaleah\nJami\nJamiya\nJaniece\nJaquelin\nJaylen\nJaylyn\nJean\nJeannie\nJessika\nJodie\nJohnna\nJonathan\nJoslyn\nKai\nKaliyah\nKathrine\nKatiana\nKayce\nKaycee\nKaycie\nKaylene\nKenia\nKeondra\nKhadijah\nKinley\nKiyah\nKristyn\nKylah\nLaila\nLatavia\nLeena\nLeona\nLili\nLisbeth\nLissa\nLiza\nLucero\nLyla\nLynsey\nMacayla\nMaeve\nMagaly\nMaira\nMakala\nManuela\nMarian\nMariella\nMariyah\nMaureen\nMichael\nMickayla\nMikaila\nMira\nMonika\nMyia\nMyriam\nNatalya\nNayeli\nPenelope\nRemi\nRocio\nRosalinda\nSahara\nSana\nShaila\nShaye\nShekinah\nShirley\nShivani\nSiera\nStefani\nTakira\nTanaya\nTaylar\nTerra\nTerri\nTonya\nTracey\nTristan\nTristin\nValencia\nVanesa\nYadira\nYailin\nYanelis\nYasmina\nYesica\nYulisa\nYulissa\nZipporah\nAidan\nAjah\nAlecia\nAlessia\nAlexius\nAliah\nAliza\nAlyse\nAmbar\nAmberly\nAnahi\nAnai\nAnalisa\nAnastacia\nAndie\nAnisa\nAolani\nAraceli\nAreli\nArmoni\nAsya\nAyah\nAzia\nBetty\nBlaire\nBrandee\nBrandie\nBrittnay\nBrittnee\nBryn\nCailey\nCarsyn\nCatarina\nCatharine\nChannel\nChardonnay\nCharlie\nChina\nChristianna\nChyenne\nCiana\nCinthia\nColby\nConnor\nCorrine\nCourtnee\nDahlia\nDanica\nDanika\nDara\nDebbie\nDebora\nDeirdre\nDerricka\nDoris\nDyamond\nDymond\nElysa\nEryn\nEstefani\nEster\nEvangeline\nEvelin\nFlora\nGalilea\nGemma\nGeraldine\nGinger\nGwyneth\nHanan\nHiba\nInfant\nIrma\nIvanna\nIvon\nIyanla\nJacquelin\nJacy\nJadah\nJaela\nJakira\nJalisa\nJaliyah\nJalynn\nJameshia\nJayden\nJena\nJennah\nJennie\nJessy\nJordana\nJordin\nJose\nJoseph\nJosette\nJulieta\nJurnee\nKalee\nKalli\nKameryn\nKami\nKarrie\nKarrington\nKarsen\nKarson\nKassie\nKateria\nKaty\nKaya\nKaylea\nKaylen\nKeaira\nKeandra\nKeirra\nKelsea\nKenisha\nKerry\nKerstyn\nKimora\nKirstyn\nKori\nKristian\nLatrice\nLeia\nLeigh\nLeonor\nLexia\nLexis\nLianne\nLilith\nLisandra\nLisset\nLovely\nMaci\nMadelynn\nMakaela\nMarcia\nMargo\nMariajose\nMarianne\nMaricela\nMarielena\nMarielle\nMarlena\nMaryam\nMattie\nMay\nMekayla\nMercedez\nMicheala\nMichela\nMikeria\nMildred\nMilena\nMiyah\nMyla\nNajah\nNatacha\nNiki\nNoa\nOdessa\nPilar\nRacheal\nRenata\nRhonda\nRosemarie\nRoxanna\nRylie\nSallie\nSelah\nSelma\nSerina\nShanaya\nShanika\nShaylyn\nSonja\nStacie\nStefania\nSterling\nSunny\nTamaya\nTaya\nTiyana\nTristen\nTristyn\nValarie\nVicky\nYamilex\nYarelis\nYsabella\nZion\nAdamaris\nAdria\nAiyanna\nAlannah\nAlesha\nAlexsandra\nAli\nAlise\nAlthea\nAmberlyn\nAmerica\nAnayeli\nAnecia\nAniyah\nAnnabella\nAnnaliese\nAnnamaria\nAnyssa\nArely\nArianne\nArionna\nAriyana\nAshante\nAsheley\nAshlin\nAustin\nAysha\nBaleigh\nBayley\nBella\nBeth\nBetsy\nBobbie\nBreasia\nBree\nBreyana\nBrigitte\nBritni\nBrittanie\nBrittni\nBrittnie\nBryce\nBryonna\nCalysta\nCambria\nCamilla\nCapri\nCarey\nCaridad\nCarmella\nCassey\nCatera\nCathy\nChance\nChantell\nCharisma\nChesney\nCheyanna\nChristi\nChristiane\nCodi\nColette\nCorey\nCornelia\nCorrie\nCosette\nDakotah\nDanesha\nDani\nDaniele\nDanna\nDenisha\nDenisse\nDeonna\nDesirea\nDestynee\nDiamonique\nEleni\nElia\nElianna\nEliya\nElly\nElsa\nElvia\nElysia\nEmalee\nEmmaline\nEryka\nErynn\nFayth\nFiorella\nFlor\nGabriell\nGia\nGianella\nGlenda\nGrayson\nGreta\nGretchen\nHailie\nHaily\nHali\nHarlee\nHayden\nHilda\nHolli\nIdalis\nIman\nJacara\nJacinda\nJacklyn\nJakia\nJalen\nJamara\nJamiah\nJamilah\nJanai\nJanaya\nJanea\nJanee\nJanell\nJanesha\nJaniah\nJanina\nJaniyah\nJaya\nJayci\nJaylan\nJazlynn\nJenica\nJessalyn\nJill\nJoan\nJoie\nJolene\nJoselin\nJoseline\nJourney\nJudy\nJulieann\nKaeli\nKailah\nKaira\nKaliah\nKalista\nKameron\nKamiyah\nKarolina\nKassi\nKatey\nKatherin\nKaytlyn\nKaytlynn\nKeasia\nKeiana\nKeonna\nKerri\nKeyonna\nKeziah\nKhalia\nKhayla\nKierstyn\nKim\nKrystin\nKyndal\nKyrah\nKyrsten\nLaina\nLamaria\nLanaya\nLanie\nLela\nLeondra\nLeyla\nLiberty\nLilia\nLilibeth\nLiset\nLizabeth\nLizbet\nLora\nLorelei\nLorin\nLorna\nLorraine\nLucille\nMackenzi\nMadelyne\nMadilyn\nMaisie\nMakenzi\nMason\nMelodie\nMilagro\nMillie\nMindy\nNaila\nNaisha\nNaja\nNakayla\nNaya\nNiah\nNoor\nNyia\nParris\nPassion\nQuanesha\nQuanisha\nRaelyn\nRaini\nRaychel\nRebekka\nRemington\nRemy\nRenae\nRenisha\nRickia\nRosalynn\nRosie\nRoxana\nRubi\nRyley\nSabra\nSalome\nSamari\nSamaya\nSamuel\nSaray\nSawyer\nSaylor\nSeanna\nShacoria\nShamari\nShamia\nShanel\nShanequa\nShani\nShanti\nShari\nShawn\nShawnee\nShaylee\nShaylin\nSheryl\nSheyla\nShreya\nShyra\nSkylynn\nSloane\nSoleil\nStephania\nSusannah\nTakara\nTamiya\nTanzania\nThais\nTimya\nTraci\nTracie\nTynesha\nVannessa\nVenessa\nVenus\nVianca\nWynter\nYahaira\nYamilet\nYaquelin\nYelitza\nZaida\nZakiya\nZara\nZayna\nEmily\nAshley\nHannah\nSamantha\nSarah\nAlexis\nMadison\nTaylor\nKayla\nBrianna\nJessica\nAlyssa\nVictoria\nLauren\nElizabeth\nDestiny\nNicole\nAmanda\nJasmine\nAbigail\nOlivia\nRachel\nAlexandra\nMegan\nJennifer\nIsabella\nHaley\nNatalie\nSydney\nSavannah\nEmma\nKaitlyn\nStephanie\nMorgan\nAmber\nHailey\nKatherine\nDanielle\nJulia\nChloe\nSophia\nBrooke\nRebecca\nAnna\nMaria\nGrace\nBrittany\nGabrielle\nAndrea\nJordan\nChristina\nGabriela\nGabriella\nMichelle\nSierra\nFaith\nSabrina\nVanessa\nMackenzie\nSara\nTrinity\nMelissa\nCourtney\nAllison\nBriana\nJada\nShelby\nAlexa\nJenna\nMary\nKatelyn\nCaroline\nCheyenne\nCaitlin\nSofia\nTiffany\nMia\nKaylee\nAutumn\nMelanie\nJade\nAngela\nKiara\nKimberly\nCatherine\nErin\nMarissa\nBailey\nAlexandria\nAriana\nDaniela\nJacqueline\nLaura\nZoe\nBreanna\nBianca\nLindsey\nMakayla\nCassidy\nKatie\nIsabel\nAdriana\nLeah\nErica\nSummer\nCassandra\nTatiana\nBritney\nMariah\nCaitlyn\nSkylar\nMadeline\nAngel\nArianna\nDiana\nVeronica\nPaige\nKelly\nMaya\nAna\nChelsea\nCrystal\nKathryn\nAlexia\nKelsey\nMiranda\nAmy\nNatalia\nAlicia\nMikayla\nHeather\nAngelica\nErika\nJillian\nCarolina\nHayley\nKristen\nAngelina\nBrittney\nLillian\nKylie\nKendall\nDiamond\nDaniella\nMeghan\nRiley\nValerie\nHope\nKarina\nAaliyah\nLily\nKaitlin\nShannon\nAriel\nJocelyn\nHanna\nJamie\nMichaela\nMolly\nNaomi\nAdrianna\nCarly\nCierra\nLeslie\nAlejandra\nAsia\nCristina\nGenesis\nMonica\nMya\nMadelyn\nShania\nKristina\nRaven\nAmaya\nKaren\nMargaret\nMckenzie\nNadia\nValeria\nBethany\nCiara\nAshlyn\nCameron\nDesiree\nJuliana\nSkyler\nNina\nRebekah\nSelena\nCynthia\nJulie\nSavanna\nClaudia\nDaisy\nPatricia\nDelaney\nSophie\nPeyton\nCamryn\nHolly\nIsabelle\nCasey\nKara\nKylee\nLindsay\nKathleen\nKiana\nAudrey\nChristine\nElena\nLauryn\nPayton\nRachael\nClaire\nGianna\nJazmine\nAva\nCamila\nAlana\nImani\nKendra\nYesenia\nEsmeralda\nJasmin\nBrenda\nKyra\nRaquel\nAliyah\nDominique\nJayla\nJordyn\nTatyana\nValentina\nDeanna\nJulianna\nKatelynn\nLydia\nTara\nAubrey\nPriscilla\nAlexus\nJazmin\nKatrina\nKirsten\nNathalie\nEvelyn\nKennedy\nKarla\nKira\nKyla\nPaola\nLisa\nAnastasia\nNatasha\nSandra\nAvery\nMallory\nAmelia\nMakenzie\nTamara\nZaria\nApril\nGiselle\nKristin\nSasha\nBryanna\nKailey\nNia\nSerena\nCindy\nGina\nShayla\nAshlee\nDeja\nDestinee\nEva\nHaylee\nTiara\nHaleigh\nJoanna\nKrystal\nMarisa\nReagan\nAlison\nDakota\nKassandra\nAllyson\nCheyanne\nElise\nEmilee\nGeorgia\nAbby\nAshleigh\nCamille\nCharlotte\nGillian\nMarina\nMercedes\nRylee\nWhitney\nAlissa\nHelen\nHunter\nMariana\nSidney\nTiana\nTori\nAmari\nBarbara\nCeleste\nKayleigh\nYasmin\nAlondra\nArielle\nAshlynn\nDana\nKrista\nLayla\nMeagan\nYasmine\nFrancesca\nKaylin\nLogan\nNancy\nBrandi\nGracie\nTamia\nTeresa\nAyanna\nDenise\nEsther\nKaley\nVirginia\nCallie\nCarmen\nJuliette\nLiliana\nRosa\nRose\nRuth\nJenny\nKate\nTabitha\nTessa\nVivian\nCarolyn\nGisselle\nHallie\nKaleigh\nMarie\nMarisol\nPamela\nPrecious\nTia\nCassie\nCecilia\nJulissa\nKaylie\nKiersten\nLinda\nRenee\nSadie\nSkye\nTyler\nAngelique\nDeborah\nJohanna\nKassidy\nMelody\nMonique\nTania\nBrooklyn\nJanae\nKaitlynn\nKamryn\nKatlyn\nCarina\nDestini\nHailee\nJacquelyn\nJayda\nLucia\nMckenna\nTalia\nAshton\nElisa\nHeaven\nIndia\nIvy\nJanelle\nLacey\nNoelle\nRuby\nTyra\nWendy\nAlaina\nAleah\nBridget\nEden\nJaqueline\nKenya\nKierra\nMiriam\nPaula\nSerenity\nSharon\nTatianna\nAngie\nAnne\nBaby\nBrandy\nChyna\nFatima\nFelicity\nJaden\nJessie\nJosephine\nAimee\nAlayna\nAnnie\nArmani\nChristy\nElla\nJulianne\nKiley\nLexi\nPaulina\nToni\nBreana\nCayla\nCiera\nElisabeth\nEssence\nJanet\nJustice\nKasey\nLeticia\nLuz\nSusan\nAlisha\nEmely\nEmilie\nFelicia\nMadisyn\nRosalinda\nAddison\nBrenna\nCara\nCarissa\nCarla\nCatalina\nEliana\nGloria\nJazlyn\nKelli\nKianna\nLitzy\nMacy\nMadeleine\nMikaela\nParis\nTheresa\nAlanna\nAlessandra\nAthena\nBaylee\nCarlie\nChelsey\nFrances\nGuadalupe\nHeidi\nIris\nIsabela\nLeilani\nMaggie\nMakenna\nMalia\nRhiannon\nSarai\nThalia\nTianna\nAlina\nDasia\nEricka\nHalie\nKaila\nKali\nLilly\nMaddison\nSavanah\nShyanne\nTierra\nAileen\nAlisa\nAntonia\nBrianne\nCarley\nEbony\nGenevieve\nGiovanna\nHarley\nIsis\nJoy\nMartha\nMiracle\nShayna\nSimone\nAisha\nAllie\nAlma\nAlyson\nAyana\nBeatriz\nCarrie\nCeline\nCharity\nClarissa\nDaija\nDaphne\nEliza\nJazmyn\nJosie\nJuliet\nKarissa\nKaylyn\nKellie\nLena\nLorena\nMarilyn\nMelany\nMelina\nNataly\nNichole\nRachelle\nShakira\nShyann\nStacey\nSylvia\nTaryn\nZoey\nAlice\nAnais\nAnnabelle\nEve\nFiona\nHalle\nHarmony\nJanice\nLesley\nLexie\nMaia\nMayra\nMeredith\nPrincess\nYolanda\nAiyana\nAniya\nCalista\nCarson\nChanel\nChristian\nDarby\nDevin\nElissa\nHailie\nJaelyn\nKaterina\nKayli\nKyleigh\nLaila\nLoren\nMicaela\nRosemary\nSandy\nShaniya\nStephany\nAbbey\nAlysa\nAnahi\nCasandra\nChasity\nClara\nDevyn\nIrene\nIvana\nJaclyn\nJakayla\nJustine\nKailee\nKatarina\nKiera\nLizbeth\nMelinda\nMontana\nPhoebe\nSage\nSheila\nTanya\nAbbie\nAlia\nAlivia\nAlysha\nAnn\nAnsley\nAshanti\nBlanca\nBreonna\nCandace\nDesirae\nJaida\nJaniya\nJoselyn\nKatia\nLea\nLeila\nLia\nLourdes\nMacey\nNatalya\nRegan\nShianne\nSonia\nStacy\nViviana\nAliya\nAlly\nAnaya\nAnnika\nCarlee\nChristiana\nCoral\nDonna\nGraciela\nJayden\nKaylah\nKayley\nKeyla\nKristal\nLarissa\nMadalyn\nNikki\nPiper\nRebeca\nReese\nRobyn\nSelina\nShanice\nSky\nTaniya\nTracy\nWillow\nYessenia\nAmya\nAria\nAryanna\nAurora\nDestiney\nEileen\nGabriel\nHelena\nJadyn\nKarli\nKatelin\nKatharine\nKelsie\nKristine\nLaurel\nLesly\nLiana\nLyndsey\nNicolette\nNoemi\nRobin\nSavana\nShaina\nShawna\nShirley\nSusana\nTabatha\nTatiyana\nAdrienne\nAlena\nAniyah\nAyla\nBailee\nBrisa\nCaitlynn\nCamilla\nDaijah\nDarian\nDejah\nEdith\nFernanda\nJewel\nJoanne\nKacie\nKaelyn\nKasandra\nKatiana\nKenzie\nMadisen\nMadyson\nMarian\nMarley\nMckayla\nRaegan\nRocio\nSamara\nScarlett\nSkyla\nZoie\nBella\nBlake\nBrionna\nCarli\nCelina\nChyanne\nDeasia\nImari\nJaime\nJalyn\nJamya\nJessenia\nJudith\nKayle\nKaylynn\nKendal\nLeanne\nNikita\nNya\nNyah\nRegina\nReyna\nSienna\nSuzanne\nSydni\nYazmin\nAja\nAlani\nAnissa\nAntoinette\nAntonella\nBreanne\nBrielle\nBrook\nChandler\nChristie\nColleen\nCora\nCortney\nCristal\nDamaris\nDevon\nDixie\nElaina\nEllie\nFabiola\nFranchesca\nIvanna\nJaquelin\nJean\nKari\nKeara\nKristy\nLeann\nLeanna\nLexus\nLillie\nLucy\nLuna\nMarcella\nMarianne\nMollie\nNaya\nNora\nRyan\nSaige\nSydnee\nTamya\nTionne\nYamilet\nAlexys\nAliza\nAlyssia\nAnya\nAryana\nAubree\nBeyonce\nBryana\nCameryn\nCelia\nCloe\nDaisha\nDania\nDariana\nDestinie\nElyssa\nEmani\nEsperanza\nEstrella\nGwendolyn\nHana\nHaylie\nJazmyne\nJolie\nJuana\nKailyn\nKarlie\nKaya\nKeyana\nKourtney\nLissette\nMacie\nMaegan\nMargarita\nMaritza\nNatalee\nNathaly\nNoelia\nParker\nPriscila\nRandi\nShamya\nSilvia\nStefanie\nSydnie\nTess\nUnique\nAbagail\nAbbigail\nAkira\nAlycia\nAmaris\nAngeline\nAnnabel\nAnnabella\nAraceli\nBonnie\nBria\nCailyn\nChina\nCydney\nDallas\nDayana\nDestany\nEleanor\nEllen\nEmilia\nGladys\nHayden\nIngrid\nJacklyn\nJamesha\nJanessa\nJanya\nJesse\nJessika\nKaliyah\nKalyn\nKarlee\nKatlynn\nKeyanna\nLara\nMarcela\nMarianna\nMartina\nMoriah\nNadine\nNathalia\nOlga\nRyleigh\nSally\nSalma\nSamaria\nShana\nStella\nTaliyah\nTammy\nTanisha\nTatum\nTayler\nXiomara\nYadira\nAlanis\nAllyssa\nAnika\nAnita\nAnjali\nAracely\nAshly\nAubrie\nBeatrice\nBelen\nBridgette\nCaley\nCali\nCarol\nCharlene\nChelsie\nChynna\nConnie\nDajah\nDaria\nDemetria\nDianna\nElisha\nEstefania\nFlor\nHalley\nIvette\nIyana\nJayde\nKacey\nKaela\nKassie\nKaycee\nKendyl\nKiarra\nKirstin\nLorraine\nLuciana\nLyric\nMaci\nMadelynn\nMarlene\nMeaghan\nMichayla\nMichele\nMikala\nMilagros\nNiya\nNyasia\nPerla\nRylie\nSade\nShamari\nShanya\nShea\nShelly\nStar\nTaina\nTina\nTyanna\nVanesa\nAlex\nAliah\nAlliyah\nAmalia\nAmara\nAnabel\nAnabelle\nAnnamarie\nAnnelise\nBayleigh\nBaylie\nBeverly\nBobbie\nCharisma\nChase\nDeana\nDebbie\nDemi\nDenisse\nDiane\nDorothy\nEmerald\nGia\nHaven\nIliana\nJacey\nJackelyn\nJaiden\nJalisa\nJamila\nJanay\nJanaya\nJane\nJasmyn\nJeanette\nJenifer\nJesenia\nJoelle\nJoyce\nKaia\nKaiya\nKalista\nKathrine\nKeisha\nKeren\nKeyara\nKierstin\nKori\nLila\nLilian\nLilliana\nMara\nMariela\nMarkayla\nMaryann\nMisty\nMyah\nNoor\nNyla\nPaloma\nRashel\nRayna\nSarina\nSheridan\nStarr\nTayla\nTristin\nTyesha\nYaritza\nYasmeen\nZahria\nZariah\nAbrianna\nAda\nAlessia\nAlexandrea\nAlysia\nAmani\nAmiya\nAnnalise\nAnnette\nAsha\nAshtyn\nAyleen\nBrooklynn\nCailey\nCaleigh\nCandice\nCarrington\nChantal\nChantel\nCharlize\nChrista\nDawn\nDayna\nDeandra\nDevan\nDina\nDrew\nDulce\nDyamond\nElaine\nFarah\nGeraldine\nGisel\nHalee\nHayleigh\nHazel\nIesha\nIvonne\nJacquelin\nJailene\nJana\nJanasia\nJasmyne\nJaylah\nJayna\nJessalyn\nJohana\nJovanna\nJustina\nKaci\nKai\nKrysta\nKyana\nLatavia\nLynn\nManuela\nMaranda\nMaribel\nMattie\nMaureen\nMina\nNorma\nOctavia\nReilly\nRenata\nRhea\nRita\nRochelle\nRoxanne\nShakayla\nShekinah\nSommer\nSonya\nTalya\nTamera\nTatyanna\nTykeria\nTyla\nZion\nAlannah\nAlecia\nAleisha\nAliana\nAmaiya\nAmaria\nAnabella\nAndie\nAndriana\nAnia\nAnisa\nAnnemarie\nArianne\nAshante\nAshlie\nAspen\nAysia\nBrynn\nCathryn\nCherish\nChristen\nClare\nCloey\nCori\nDanyelle\nDara\nDomonique\nEboni\nErykah\nEryn\nEvangelina\nFrancis\nFrancisca\nGianella\nGwyneth\nHarper\nJackeline\nJadah\nJayleen\nJaylin\nJena\nJennie\nJuanita\nJulisa\nKala\nKalei\nKalie\nKarly\nKatheryn\nKaty\nKaytlin\nKeely\nKelis\nKelley\nKenna\nKeona\nKerri\nKimberlee\nKinsey\nKiya\nKristi\nKyrsten\nLeeann\nLeia\nLina\nLisette\nLynette\nMackenna\nMagali\nMandy\nMariam\nMariel\nMarielle\nMarlee\nMarlena\nMckinley\nMeadow\nMiah\nMicah\nNatali\nNeha\nNigeria\nNorah\nNykeria\nOriana\nPatience\nQuinn\nRaelyn\nRhianna\nRoxanna\nSamira\nSarahi\nShaniah\nShauna\nShyla\nTaya\nTerri\nTionna\nTonya\nTytiana\nValencia\nViolet\nYesica\nYvette\nZara\nZharia\nZykeria\nAbigale\nAdela\nAiyanna\nAlanah\nAlaysha\nAllana\nAmethyst\nAnisha\nAnnmarie\nAreli\nArlene\nAstrid\nAundrea\nBayley\nBlair\nBreann\nBridgett\nBryn\nCarleigh\nCaylee\nCaylin\nCharlie\nChristin\nCitlalli\nCodi\nColette\nCorina\nCorinne\nCorrine\nDanae\nDanasia\nDarlene\nDelanie\nDelia\nDynasty\nElexis\nFrancheska\nGiulia\nHadley\nHillary\nHollie\nIlana\nIyanna\nIzabella\nJakiya\nJalen\nJalynn\nJanette\nJaniece\nJaniyah\nJaylen\nJazlynn\nJoana\nKamaria\nKayleen\nKeana\nKeandra\nKeeley\nKelsea\nKelsi\nKenia\nKerry\nKeyonna\nKim\nKristian\nKyara\nLacie\nLakeria\nLeana\nLeigh\nLeondra\nLexis\nLivia\nLorelei\nLouise\nLuana\nLyla\nMahogany\nMaliyah\nMarla\nMaura\nMaxine\nMicayla\nMichaella\nMika\nMikeria\nMilan\nMilena\nMireya\nMyra\nNayeli\nNicolle\nNikole\nOdalys\nParris\nPassion\nPatrice\nRacheal\nRacquel\nReina\nRena\nRyann\nShantavia\nShreya\nSusanna\nSymone\nTakiyah\nTeagan\nTierney\nTreasure\nTrinitee\nTriniti\nValarie\nValery\nYael\nYamile\nYamileth\nYanely\nYulisa\nYulissa\nZakiya\nAbril\nAdamaris\nAdeline\nAdrian\nAislinn\nAlea\nAlesha\nAlexi\nAlize\nAlyse\nAmiah\nAmiyah\nAmyah\nAnanda\nAngelika\nAnnalisa\nAshely\nAura\nAzaria\nBetsy\nBianka\nBrea\nBree\nBreona\nBriauna\nBrittani\nBryanne\nBryce\nChassidy\nChastity\nChristelle\nChrystal\nCianna\nCiarra\nCielo\nConstance\nDahlia\nDaja\nDarien\nDenisha\nDesire\nDora\nEleni\nElle\nElsa\nEmerson\nEmmalee\nEstefany\nEster\nEunice\nGeorgina\nGiavanna\nGlenda\nGriselda\nHaile\nHarleigh\nHosanna\nIvey\nJailyn\nJakia\nJaliyah\nJamaya\nJamia\nJamiah\nJamiya\nJania\nJaniah\nJanie\nJaylyn\nJaylynn\nJeniffer\nJennah\nJoann\nJocelynn\nJodie\nJoely\nJordin\nJordon\nJudy\nKaileigh\nKalee\nKamia\nKaniya\nKaryn\nKathy\nKatlin\nKaylen\nKeanna\nKeasia\nKeegan\nKeiara\nKeila\nKeira\nKiandra\nKimberlyn\nKylah\nLacy\nLana\nLeigha\nLeighann\nLiz\nLizeth\nLizette\nLondon\nLori\nLucero\nLynda\nMagaly\nMariajose\nMarion\nMariyah\nMarta\nMekenzie\nMelisa\nMichael\nMira\nMonet\nMonika\nNadya\nNevaeh\nNoel\nRaina\nRayne\nReanna\nRianna\nRomina\nSapphire\nShani\nShaniyah\nShantell\nShelbi\nShiane\nShiloh\nStacie\nStarla\nSumer\nTamiya\nTaniyah\nTrisha\nTristen\nTyonna\nVeronika\nYaileen\nYanet\nYoselin\nZaira\nZaniya\nAbigayle\nAdelaide\nAdilene\nAdrianne\nAiden\nAjah\nAlara\nAlba\nAllysa\nAlyah\nAmie\nAmina\nAmirah\nAmoni\nAnamaria\nAntonique\nAriela\nAshli\nAudra\nAudrianna\nAyesha\nAylin\nAysha\nBeth\nBethanie\nBreasia\nBritany\nCandy\nCarolynn\nCasie\nCatarina\nCayleigh\nCheyanna\nChiara\nChole\nCiana\nColby\nCollette\nDalia\nDaniel\nDanika\nDaphney\nDasani\nDayanna\nDaysha\nDebra\nDeena\nDelilah\nDeondra\nDeonna\nDerricka\nDiamonique\nElana\nElliana\nEllise\nElvira\nElysa\nEmilly\nEmmy\nEmoni\nEstefani\nEvelin\nFallon\nFarrah\nGena\nGeneva\nGenna\nGisell\nGretchen\nHadassah\nHali\nHanah\nHarlee\nHayli\nHeavenly\nHonesty\nIman\nIreland\nIsabell\nIsaura\nIsha\nJackie\nJaelynn\nJakerria\nJamecia\nJanea\nJanee\nJanel\nJaslyn\nJaycee\nJenae\nJensen\nJill\nJoan\nJodi\nJosefina\nJoslyn\nKaelin\nKaili\nKalia\nKallie\nKamiya\nKarley\nKarsen\nKatelynne\nKeonna\nKeri\nKerstin\nKhadijah\nKortney\nKrysten\nKrystina\nKyah\nKyler\nKyndall\nLane\nLani\nLanie\nLaurie\nLazaria\nLeilany\nLexia\nLeyla\nLiberty\nLilibeth\nLinsey\nLisbeth\nLovely\nLuisa\nLuiza\nMagdalena\nMakeda\nMalaysia\nMalena\nMallorie\nMari\nMarin\nMarlen\nMaryam\nMaylin\nMekayla\nMichel\nMichela\nMikaila\nMila\nMindy\nMoesha\nMykayla\nMyranda\nNala\nNatavia\nNiyah\nNohemi\nOcean\nPaisley\nPauline\nPilar\nPresley\nPriya\nRaeanne\nRaelin\nRavyn\nRaya\nRenae\nRheanna\nRhonda\nRiya\nRoselyn\nRoxana\nSalena\nSamiya\nSana\nSantana\nSera\nSerina\nShae\nShaelyn\nShanna\nShante\nShantel\nShay\nShelley\nSheryl\nSheyla\nSkylynn\nSoleil\nSonja\nSoraya\nStefany\nStevie\nSusannah\nSuzannah\nTaijah\nTamar\nTamyra\nTeaira\nTiera\nTory\nTracey\nTricia\nTrina\nTristan\nTyana\nVicky\nViktoria\nYaneli\nYara\nYareli\nYazmine\nYessica\nYvonne\nZada\nZahra\nZipporah\nAcacia\nAidan\nAilyn\nAlayah\nAlaysia\nAleena\nAleigha\nAlesia\nAlexcia\nAlexsandra\nAlexsis\nAleyna\nAlora\nAlysse\nAlyze\nAmaia\nAmal\nAmbar\nAmerica\nAnaiya\nAnalia\nAnalisa\nAnastacia\nAnayah\nAndreana\nAngelia\nAntasia\nArely\nAriyana\nAriyanna\nArmoni\nAubry\nAutum\nAveri\nAverie\nAviana\nAya\nAyah\nBaileigh\nBetty\nBobbi\nBranda\nBrandon\nBriannah\nBrieanna\nBritni\nBrittanee\nBrittaney\nBrittnie\nBrookelyn\nBruna\nCalli\nCaridad\nCarlisha\nCelena\nChana\nChanelle\nCharlee\nCharli\nCharmaine\nCheryl\nChristianna\nChyenne\nConnor\nCornelia\nDanelle\nDanesha\nDanica\nDanisha\nDanya\nDasha\nDayanara\nDaysi\nDena\nDenia\nDestanee\nDiandra\nDiondra\nDivine\nDivya\nDonisha\nDoris\nDyani\nDymond\nEdna\nElicia\nElyse\nElysia\nEmiley\nEvangeline\nFay\nFiorela\nGaelle\nGiana\nGisele\nGiuliana\nGiulianna\nGizelle\nGrayson\nHaili\nHaille\nHaily\nHarlie\nHaydee\nHeidy\nHilda\nIda\nIndira\nInes\nInez\nIrma\nJabria\nJacy\nJaila\nJailah\nJailine\nJaimie\nJalesia\nJalissa\nJami\nJamyra\nJanai\nJanell\nJanely\nJanine\nJaquelyn\nJaya\nJaylene\nJeanna\nJemima\nJerica\nJerrica\nJesica\nJewelia\nJohannah\nJordana\nJoselin\nJoseline\nJosette\nJosey\nJoshlyn\nJourney\nJules\nJulieta\nJune\nKacy\nKaeli\nKailani\nKaily\nKalynn\nKameron\nKami\nKamya\nKandace\nKaniyah\nKarah\nKarena\nKarime\nKaris\nKarleigh\nKarsyn\nKassidi\nKayana\nKaydee\nKaylea\nKeirra\nKelsy\nKendell\nKeniya\nKennedi\nKeondra\nKeshawna\nKeziah\nKia\nKiah\nKimberley\nKimora\nKionna\nKirstyn\nKitana\nKristie\nKya\nKyanna\nKyle\nLacee\nLaci\nLaine\nLainey\nLaisha\nLaken\nLanae\nLaney\nLaurin\nLayne\nLeasia\nLeona\nLexy\nLianne\nLilah\nLinette\nLisandra\nLisbet\nLiset\nLola\nLora\nLoretta\nLorna\nLorrie\nLucille\nMackayla\nMackenzy\nMadilyn\nMadilynn\nMagnolia\nMaiya\nMakaela\nMaleah\nMallori\nManal\nMarcia\nMargaux\nMaricela\nMarlie\nMason\nMay\nMichal\nMickayla\nMiesha\nMikaylah\nMiya\nMyisha\nNailah\nNanci\nNaomy\nNayah\nNiah\nNijah\nNour\nNubia\nNyesha\nOdalis\nPhoenix\nQuiana\nRaechelle\nRaena\nRamona\nRaneisha\nReba\nRegine\nRia\nRichelle\nRikki\nRoberta\nRosy\nSahara\nSalina\nSamia\nShakeria\nShanaya\nShanelle\nShaniece\nShanterria\nShatavia\nShaunice\nShaylee\nSheyenne\nShyanna\nSiara\nSiena\nSiera\nSinai\nSloan\nSolimar\nSteffany\nStormy\nSunni\nTali\nTaliah\nTasha\nTasia\nTeanna\nTera\nTiandra\nTiffani\nTiona\nTraci\nTrista\nVannessa\nVera\nVianca\nVivianna\nWanda\nWhitley\nWinter\nXena\nYenifer\nYisel\nZainab\nZena\nZhane\nZuleika\nEmily\nMadison\nAshley\nHannah\nSamantha\nAlexis\nSarah\nBrianna\nJessica\nTaylor\nAlyssa\nKayla\nVictoria\nElizabeth\nLauren\nIsabella\nNicole\nJasmine\nDestiny\nAbigail\nOlivia\nAmanda\nMegan\nRachel\nJennifer\nAlexandra\nJulia\nSavannah\nMorgan\nSophia\nGrace\nHailey\nKaitlyn\nNatalie\nKatherine\nChloe\nStephanie\nHaley\nEmma\nSydney\nMaria\nAnna\nAmber\nGabriella\nRebecca\nAndrea\nJordan\nGabrielle\nMackenzie\nBrooke\nMichelle\nGabriela\nFaith\nJada\nTrinity\nDanielle\nChristina\nJenna\nSierra\nVanessa\nCourtney\nAaliyah\nSabrina\nAlexa\nBriana\nSara\nCaroline\nMelissa\nMelanie\nZoe\nShelby\nAllison\nJade\nMary\nAngelina\nSofia\nKatelyn\nAriana\nMakayla\nMia\nLaura\nKaylee\nJacqueline\nAngela\nCheyenne\nKiara\nNatalia\nArianna\nKimberly\nAdriana\nErin\nBianca\nAna\nAngel\nDiana\nCatherine\nDaniela\nLeah\nLindsey\nCaitlin\nMadeline\nAlexandria\nCassidy\nBrittany\nTiffany\nAngelica\nKelsey\nVeronica\nBreanna\nSummer\nJuliana\nMikayla\nSkylar\nIsabel\nMaya\nBailey\nMarissa\nAlicia\nAutumn\nKelly\nTatiana\nErica\nMariah\nCassandra\nPaige\nChelsea\nCrystal\nLily\nKylie\nKarina\nAlexia\nCaitlyn\nMya\nMiranda\nRiley\nErika\nJulianna\nBritney\nCarolina\nJamie\nKathryn\nKatie\nAmy\nValerie\nIsabelle\nHeather\nJocelyn\nShannon\nJayla\nJillian\nGenesis\nHope\nNaomi\nAriel\nDaniella\nGianna\nLillian\nMadelyn\nKendall\nAdrianna\nHayley\nAshlyn\nDelaney\nDiamond\nJazmine\nMolly\nDesiree\nValeria\nMonica\nValentina\nMckenzie\nRebekah\nSelena\nKristen\nSavanna\nAva\nJasmin\nAliyah\nAudrey\nCamila\nHanna\nBrittney\nCarly\nEvelyn\nPeyton\nCynthia\nMeghan\nSkyler\nJulie\nPayton\nAlana\nBethany\nCristina\nKaren\nKyra\nKristina\nAlejandra\nAubrey\nKaitlin\nLeslie\nAvery\nLindsay\nPatricia\nCasey\nLydia\nMargaret\nNayeli\nJordyn\nDaisy\nClaire\nHolly\nCamryn\nCierra\nJoanna\nMakenzie\nPriscilla\nKyla\nMariana\nMichaela\nCiara\nAsia\nChristine\nRaven\nBryanna\nNatasha\nAlexus\nShayla\nSophie\nCameron\nClaudia\nFrancesca\nIndia\nKaley\nKathleen\nKatrina\nDominique\nNathalie\nAmelia\nKarla\nPaola\nRaquel\nNia\nApril\nJazmin\nKennedy\nKylee\nMelody\nTamia\nAlissa\nCamille\nKara\nNina\nSandra\nAlondra\nElena\nMallory\nKrystal\nLauryn\nRachael\nRylee\nAshleigh\nImani\nMercedes\nShania\nTatyana\nAbby\nHaylee\nKira\nReagan\nTabitha\nTiana\nAmaya\nBrenda\nEsmeralda\nKate\nNadia\nAngie\nKirsten\nSerena\nAnastasia\nCeleste\nAmari\nCindy\nDakota\nElise\nKiana\nNevaeh\nSadie\nSasha\nYasmine\nZaria\nAllyson\nAshlee\nCarmen\nGiselle\nKatelynn\nDeja\nEsther\nLiliana\nMacy\nRosa\nRose\nAyanna\nBarbara\nElisabeth\nLayla\nLogan\nTalia\nCharlotte\nDestinee\nHeaven\nJaden\nRuth\nYesenia\nJulissa\nKaitlynn\nLisa\nTori\nCarolyn\nCecilia\nGracie\nMarina\nMckenna\nTia\nJayda\nKassandra\nKristin\nYasmin\nEva\nHailee\nKailey\nLeilani\nMaggie\nCarla\nJosie\nKendra\nTeresa\nAshlynn\nCatalina\nGillian\nJanelle\nKatlyn\nKayleigh\nTamara\nTara\nAlaina\nAlanna\nAntonia\nEmely\nEmilee\nGina\nHunter\nJuliet\nKaylin\nMarisa\nMonique\nBridget\nDeanna\nElisa\nElla\nFatima\nIsabela\nJaniya\nJenny\nJolie\nAngelique\nAniya\nDana\nDenise\nEden\nHaleigh\nKamryn\nKaylie\nLacey\nMeagan\nPrecious\nRenee\nVirginia\nWhitney\nZoey\nAlison\nBrooklyn\nCharity\nIzabella\nLucia\nNyah\nSonia\nTyler\nAnnabelle\nAnne\nAurora\nLinda\nPaulina\nTiara\nDeborah\nGisselle\nKasey\nKassidy\nMarisol\nRuby\nSidney\nSkyla\nTessa\nVivian\nAnahi\nCallie\nCayla\nGloria\nJulianne\nMakenna\nMarie\nNancy\nSage\nSkye\nTaryn\nThalia\nAddison\nAlisha\nAshton\nBrandi\nCheyanne\nHeidi\nKiley\nMadisyn\nMelina\nNoelle\nPhoebe\nSerenity\nSharon\nStephany\nAinsley\nAlina\nAnnie\nArielle\nBrenna\nJuliette\nLexi\nPamela\nShaniya\nSimone\nAlyson\nAthena\nAyana\nCarissa\nChelsey\nDestiney\nEmilie\nGiovanna\nJanae\nJohanna\nJosephine\nJustice\nKarissa\nKenya\nKianna\nKiera\nLeila\nShyanne\nTianna\nEliana\nGeorgia\nHallie\nIvy\nJayden\nKaila\nKailyn\nKaleigh\nLeticia\nMadyson\nMiracle\nTheresa\nBeatriz\nBrandy\nCiera\nFelicia\nJaida\nKiersten\nKrista\nLuz\nTaina\nViviana\nAnn\nGenevieve\nJazmyn\nLaila\nLucy\nMadeleine\nMikaela\nSade\nStacey\nSusan\nTania\nTayler\nToni\nTyra\nBailee\nCarley\nCeline\nClara\nJacquelyn\nJanet\nKyleigh\nPaula\nPiper\nWendy\nAniyah\nAnsley\nBeyonce\nDestini\nEve\nGia\nHarley\nJuanita\nLizbeth\nMeredith\nMicaela\nNichole\nNoemi\nNya\nNyasia\nParis\nRegina\nSarai\nTatianna\nAbbey\nAllie\nCara\nCassie\nChanel\nChristian\nDamaris\nGuadalupe\nIrene\nIris\nJalyn\nKayley\nKierra\nLilly\nMarley\nMiriam\nRebeca\nShyann\nTaliyah\nTierra\nAbbigail\nAiyana\nAlessandra\nAliya\nAmani\nArmani\nBaby\nCarlee\nChasity\nHelen\nJessie\nLeanna\nNataly\nNora\nRegan\nShaina\nTina\nAnnette\nBella\nBreana\nBria\nChyna\nClarissa\nDaphne\nFelicity\nGiuliana\nJaelyn\nJoana\nJoy\nKacey\nKatarina\nKaterina\nLesly\nMaddison\nMaritza\nNatalya\nSydni\nZoie\nAileen\nAimee\nAlyssia\nAnnika\nAnya\nBaylee\nBrielle\nEileen\nElaine\nHayden\nKaliyah\nKasandra\nKaya\nLea\nLexie\nLyndsey\nMadelynn\nMckayla\nNaya\nRobin\nSavana\nShawna\nSylvia\nTaniya\nAlayna\nAlice\nAmya\nAnabelle\nAnais\nAngeline\nCandace\nCarlie\nDaisha\nEdith\nEllie\nEssence\nGiana\nHana\nHaven\nIsis\nJaclyn\nJadyn\nJakayla\nJanessa\nJaniyah\nJazlyn\nJewel\nJuana\nKarly\nKatia\nKaylah\nLillie\nMacey\nMacie\nMadalyn\nMaia\nMarcela\nMayra\nMelany\nNyla\nShakira\nStacy\nTanya\nAlivia\nAlly\nCamilla\nCandice\nCarina\nCarrie\nCora\nFiona\nJania\nKya\nLara\nLesley\nMara\nRaegan\nReyna\nRyan\nSarina\nShanice\nShirley\nValery\nAbbie\nAlani\nAlisa\nAlma\nAlysha\nAlysia\nAracely\nAshanti\nAyla\nCalista\nColleen\nDayana\nDelilah\nDulce\nEbony\nFernanda\nJaliyah\nJaqueline\nJayleen\nJoyce\nJudith\nKali\nKayli\nKelsie\nLia\nLuna\nNathaly\nAnika\nBrianne\nBrooklynn\nChristiana\nCoral\nCristal\nDianna\nEleanor\nElissa\nEllen\nEstefania\nGraciela\nHarmony\nJaiden\nJamesha\nJana\nJanay\nJaylen\nJenifer\nJesenia\nKeila\nKellie\nLissette\nLourdes\nMalia\nMartina\nMoriah\nMyah\nNicolle\nNikki\nParker\nPerla\nReanna\nRhiannon\nRyleigh\nSavanah\nSusana\nTanisha\nTracy\nYuliana\nAisha\nAleah\nAlexys\nAlize\nAnjali\nCali\nCarson\nCelina\nDallas\nDeandra\nDesirae\nDonna\nElana\nEliza\nEricka\nFabiola\nHalle\nHaylie\nIyana\nIyanna\nJamya\nJeanette\nJena\nJustine\nKaylynn\nKelli\nKiya\nKyara\nLila\nLorena\nLyric\nMaribel\nMartha\nMeadow\nMontana\nMyra\nNayely\nNicolette\nReina\nRocio\nShayna\nTeagan\nYolanda\nYvette\nAdrienne\nAkira\nAlanis\nAlena\nAlia\nAnabel\nBeverly\nBlanca\nBrionna\nCarol\nCasandra\nChristy\nDaija\nDaijah\nDarby\nDayanara\nDeasia\nEmani\nEmmalee\nFabiana\nFallon\nGabriel\nHelena\nIvanna\nIvette\nJackeline\nJane\nJanice\nJasmyn\nJoselyn\nKaela\nKyndall\nLaney\nLarissa\nLaurel\nMadilyn\nMaegan\nMarilyn\nNorma\nPrincess\nRhianna\nSamya\nSheila\nSheyla\nSydnie\nTamya\nTatum\nTreasure\nZariah\nAbigayle\nAllyssa\nAmara\nAnaya\nAnnalise\nAnnamarie\nAraceli\nBrisa\nBrook\nDaysha\nDejah\nDevin\nDorothy\nDrew\nElaina\nElyssa\nEmilia\nEryn\nEstrella\nFrances\nFranchesca\nFrancheska\nJaniah\nKaia\nKalyn\nKarli\nKatharine\nKathy\nKeira\nKenzie\nKristine\nLeann\nLena\nLexus\nLisette\nMadisen\nMakaila\nMakiya\nMaleah\nMargarita\nMariela\nMelisa\nMollie\nNadine\nNatali\nPatience\nPenelope\nRosalinda\nRosemary\nRoxana\nSamara\nShamya\nStefanie\nTristen\nWillow\nYamilet\nAlannah\nAliza\nAlysa\nAria\nAshly\nCarli\nChantel\nCharisma\nChyanne\nDania\nDevyn\nIngrid\nIvana\nJailyn\nJamia\nJesse\nJimena\nJulisa\nKailee\nKaiya\nKatherin\nKatheryn\nKylah\nLeanne\nLiana\nLitzy\nLoren\nMariam\nMattie\nMilagros\nNikita\nOdalys\nOlga\nQuinn\nRachelle\nRayna\nSamaria\nSelina\nSerina\nShyla\nSky\nSydnee\nTamar\nTristan\nUnique\nYadira\nAlaysia\nAnissa\nAnita\nAnnabella\nAntonella\nArely\nAryana\nAryanna\nAudra\nCameryn\nChastity\nClare\nDara\nDasia\nDebra\nDelanie\nDixie\nHazel\nHillary\nIliana\nJackie\nJailene\nJaime\nJamiah\nJaylah\nJaylin\nJaylynn\nJayme\nJazmyne\nJessika\nJoanne\nKaelyn\nKaylyn\nKeyla\nKourtney\nKrysta\nLeeann\nLiz\nManuela\nMarian\nMarlee\nMarlene\nMikaila\nMilena\nNathalia\nNoelia\nRaina\nRashel\nReilly\nRianna\nRobyn\nRylie\nScarlett\nShaniyah\nSoraya\nTabatha\nTyana\nYaire\nYasmeen\nYessica\nAbbigale\nAmira\nAmiya\nAnayeli\nAntoinette\nAriadna\nAya\nBonnie\nBreanne\nBreeanna\nBreonna\nBridgette\nBrieanna\nCelia\nDawn\nDayna\nFarrah\nGwendolyn\nHayleigh\nIreland\nJacey\nJacklyn\nJakiya\nJanai\nKalee\nKameron\nKamya\nKari\nKarley\nKatlynn\nKayle\nKeara\nKeren\nKeyara\nKristy\nLana\nLilian\nLilliana\nLivia\nLola\nMarcella\nMeaghan\nMelinda\nMiya\nMykayla\nNakia\nNayelis\nNiya\nOriana\nRochelle\nSabine\nShekinah\nStella\nTammy\nTrina\nTriniti\nYaritza\nAja\nAlexandrea\nAnabella\nAngelika\nAnnabel\nAspen\nAstrid\nAsya\nAubree\nAutum\nAyah\nBelen\nBelinda\nBryana\nCaitlynn\nCaylee\nCecelia\nChantal\nCharlize\nChelsie\nCheryl\nChrista\nDaja\nDanae\nDanasia\nDiane\nFiorella\nHadassah\nHaileigh\nHailie\nHalie\nIsabell\nJanya\nJayna\nJeniffer\nJohana\nJoslyn\nJourney\nKalina\nKamila\nKarsyn\nKatelin\nKelsea\nKenisha\nLaurie\nLexis\nLiberty\nLuisa\nMalaysia\nMarianna\nMarla\nMaxine\nMicah\nMoesha\nNakiya\nNoel\nPatrice\nRacheal\nRileigh\nRosemarie\nRyley\nSalma\nShana\nShaniah\nShanna\nShea\nShelbi\nShianne\nSilvia\nSuzanne\nTatyanna\nTerri\nXimena\nXiomara\nYazmin\nYessenia\nZaida\nZaniya\nAbrianna\nAbril\nAida\nAiyanna\nAlba\nAlex\nAmerica\nAmina\nAngeles\nAngelic\nAriyanna\nAshely\nAshtyn\nAubrie\nAzaria\nBlake\nBrynna\nCarleigh\nCathryn\nChiara\nChristie\nCiarra\nConstance\nCorina\nDaria\nDarlene\nDasani\nDasha\nDayanna\nDemetria\nDestinie\nDina\nDymond\nEmerald\nEsperanza\nGiavanna\nGladys\nHonesty\nIesha\nJaidyn\nJala\nJalynn\nJanelly\nJanely\nJanie\nJasmyne\nJayde\nJaylene\nJaylyn\nJoelle\nKacie\nKala\nKarisma\nKarlie\nKatya\nKaylen\nKelley\nKendal\nKendyl\nKeyana\nKeyanna\nKeyonna\nKierstin\nKimberlee\nLacy\nLeyla\nLina\nLisbeth\nLiza\nLucero\nMagaly\nMahogany\nMakiyah\nMalena\nMaliyah\nMaranda\nMari\nMarta\nMaura\nMikala\nMyranda\nNeyda\nNoor\nOctavia\nRhea\nSally\nSamira\nSanaa\nSandy\nSelah\nShanelle\nShaylee\nSheridan\nShreya\nSianna\nSoleil\nStefany\nTamera\nTaniyah\nTess\nThais\nTiarra\nVanesa\nYazmine\nAbbygail\nAdamaris\nAdrian\nAlaysha\nAlecia\nAlesha\nAlexi\nAllana\nAmalia\nAmaria\nAmia\nAngelie\nAnneliese\nAnnmarie\nArmoni\nAverie\nAylin\nCaleigh\nCatarina\nChandler\nCharlene\nChase\nCorinne\nCosette\nDajah\nDarcy\nDerricka\nDevon\nDreama\nDylan\nEboni\nElyse\nElysia\nEmerson\nEvelin\nFarah\nFlorencia\nGeneva\nGissell\nGiulianna\nHali\nHalley\nIlana\nIleana\nIsha\nJacinda\nJadah\nJalisa\nJamiya\nJaycee\nJoey\nJoi\nJovana\nKamari\nKamiyah\nKarime\nKaty\nKaycee\nKaylan\nKeana\nKeasia\nKeely\nKhloe\nKiandra\nKiarra\nKirstin\nKristal\nKristyn\nKyndal\nLianna\nLisandra\nLyla\nLynn\nLynsey\nMakenzi\nMalika\nMandy\nMarielle\nMarisela\nMarjorie\nMarlena\nMaryam\nMason\nMercy\nMiah\nMicayla\nMichele\nMira\nMonet\nMyla\nNayla\nPhoenix\nPriya\nRachell\nRain\nRandi\nRayanna\nRita\nSabina\nSahara\nSalena\nSana\nSariah\nShakayla\nShanell\nShanya\nShauna\nShira\nSiera\nSloane\nStar\nSunshine\nSymone\nTakayla\nTatiyana\nTera\nTiffani\nTracey\nTyanna\nVeronika\nVicky\nViridiana\nWinter\nYael\nYanelis\nZahria\nZaniyah\nZion\nAbagail\nAbrielle\nAdamari\nAdeline\nAislinn\nAleisha\nAliana\nAlliyah\nAmaris\nAmbar\nAmethyst\nAnai\nAnamaria\nAnanda\nAnia\nAnisa\nAnnaliese\nAnyah\nAreli\nArianne\nAriella\nArlene\nAshante\nAyleen\nAysha\nAysia\nBaleigh\nBeatrice\nBecky\nBerenice\nBetty\nBreann\nBree\nBridgett\nBrigitte\nBryn\nCamden\nChante\nCharlee\nChelsi\nCherish\nCheyann\nCiana\nCianna\nColby\nDahlia\nDemi\nDesiray\nDesire\nDestany\nDinah\nDyamond\nDyani\nElisha\nElle\nFrida\nGabriele\nGeraldine\nGinger\nGrayson\nHollie\nImari\nIndya\nIrina\nIvey\nIzabel\nIzabelle\nJacquelin\nJaela\nJakeria\nJakyra\nJalen\nJalia\nJalissa\nJanine\nJaslyn\nJennie\nJessenia\nJoan\nJodi\nJoselin\nJovanna\nJustina\nKaeli\nKai\nKalli\nKaniya\nKarah\nKarin\nKaytlyn\nKelsi\nKenia\nKim\nKinsey\nKodi\nKristi\nKyanna\nLakeisha\nLaysha\nLeia\nLeigha\nLilith\nLori\nLynette\nMacayla\nMaci\nMadelaine\nMadelin\nMaiya\nMalorie\nMichaella\nMilan\nMindy\nMireya\nMisty\nMonserrat\nNailah\nNaisha\nNallely\nNeha\nNikole\nNykeria\nOdalis\nOlyvia\nRaelin\nRayven\nRebeka\nReese\nRene\nRiver\nRomy\nRory\nRowan\nRyanna\nSamiya\nSapphire\nScarlet\nShaelyn\nShelbie\nSommer\nSonya\nSophonie\nStarr\nStevie\nSumer\nTaliah\nTasha\nTea\nThelma\nTiera\nTrisha\nTristin\nTytianna\nValencia\nYulianna\nYvonne\nZakiya\nZaniah\nZara\nZharia\nZykeria\nAda\nAdelaide\nAdia\nAdrianne\nAidan\nAlanah\nAlaya\nAlayah\nAlisia\nAlycia\nAmirah\nAndreina\nAndrew\nAnijah\nAnjolie\nAnnelise\nAsha\nAshlin\nAundrea\nAustin\nAyonna\nBaylie\nBertha\nBetsy\nBillie\nBlessing\nBriyanna\nCailey\nCailyn\nCandy\nCarsyn\nCatrina\nCaylie\nCaylin\nChanelle\nChantelle\nCharley\nChaya\nChelsy\nChina\nChristal\nChristelle\nChristianna\nChyenne\nCielo\nCitlalli\nCloe\nDaeja\nDaejah\nDalia\nDaphney\nDarian\nDarla\nDestyni\nDevan\nEdna\nElayna\nEleni\nEmalee\nEmmanuelle\nEriana\nEstefani\nEstefany\nEstella\nEvangelina\nFayth\nFelisha\nFlor\nFrancis\nFrancisca\nFrankie\nGaelle\nGalilea\nGenna\nGianni\nGiulia\nGretchen\nGwyneth\nHaily\nHarlie\nHeavenly\nHeidy\nIana\nIman\nInes\nIrma\nItalia\nIvelisse\nJacelyn\nJaeda\nJael\nJakira\nJamari\nJanaya\nJanee\nJanel\nJanyah\nJaquelin\nJaycie\nJazlynn\nJazzmine\nJazzmyn\nJeanna\nJeannie\nJenelle\nJianna\nJill\nJoann\nJordana\nJosefina\nJourdyn\nJulieta\nKaci\nKaelin\nKaily\nKalani\nKaliah\nKalie\nKalista\nKalysta\nKamilah\nKamille\nKarizma\nKarlee\nKarmen\nKaryna\nKatelynne\nKatharina\nKatiana\nKatina\nKatlin\nKayana\nKaytlin\nKenna\nKenyatta\nKeona\nKerri\nKhadijah\nKhalia\nKortney\nKristian\nKyah\nKyana\nKyrah\nLainey\nLanie\nLaniya\nLeandra\nLeena\nLeonela\nLesli\nLexy\nLili\nLilia\nLilianna\nLillianna\nLinsey\nLisset\nLiyah\nLorna\nMadalynn\nMaeve\nMagali\nMagnolia\nMakyla\nMalina\nMarah\nMariajose\nMarianne\nMaricela\nMarkia\nMarlana\nMaryah\nMaryssa\nMercedez\nMichala\nMorghan\nNakiyah\nNalleli\nNatalee\nNautica\nNiyah\nNova\nNylah\nOcean\nPauline\nPresley\nPriscila\nRaelyn\nRena\nRomina\nRoneisha\nRosalyn\nRoxanne\nSaige\nSailor\nSalina\nSaniya\nSarena\nSequoia\nShae\nShakeria\nShakia\nShakyra\nShamaria\nShiann\nShivani\nShyanna\nSimran\nSofie\nStacie\nStephania\nStorm\nTahlia\nTeanna\nTonya\nTraci\nValarie\nViolet\nVivianna\nWynter\nYesica\nYoana\nYoselin\nZada\nZainab\nZarria\nAbigael\nAbigale\nAbriana\nAdilene\nAdina\nAdria\nAjah\nAlea\nAleksandra\nAlessia\nAlexas\nAlexcia\nAlexie\nAllissa\nAlyia\nAmariah\nAmi\nAmie\nAmiyah\nAnalise\nAnayah\nAndrianna\nAngelia\nAngelita\nAniah\nAnisha\nAnjelina\nAnnalisa\nAnnemarie\nAraya\nAriadne\nAriyana\nArleth\nArrianna\nAshia\nAshli\nAsiah\nAvigail\nAyanah\nAzalea\nAzariah\nAzucena\nBayleigh\nBelle\nBentley\nBeyounce\nBianka\nBlair\nBrea\nBreyana\nBreyanna\nBrianda\nBrianny\nBriauna\nBritni\nBrynn\nCaila\nCallista\nCampbell\nCarole\nCecily\nChana\nChassidy\nCheyanna\nCheyene\nChole\nChynna\nCinthia\nCitlaly\nClaudine\nColette\nConnie\nCori\nCorrine\nCortney\nCydney\nDanisha\nDanya\nDariana\nDarien\nDashia\nDaylin\nDeana\nDeisy\nDelia\nDenisse\nDestanee\nDianelys\nDianne\nDivine\nDora\nDoreen\nDoris\nDynasty\nEbonie\nElexia\nElexis\nEmmanuela\nEmmy\nEmoni\nEryka\nErykah\nEvangeline\nFlora\nFreya\nGemma\nGianella\nGisell\nGwenyth\nHanah\nHarli\nHayle\nImelda\nInfant\nItzel\nIyonna\nJabria\nJaelynn\nJaila\nJaileen\nJaimie\nJakiyah\nJakya\nJamaya\nJami\nJamiyah\nJanaye\nJaneliz\nJanise\nJaydah\nJean\nJeannette\nJennah\nJesica\nJiselle\nJolee\nJorden\nJosselyn\nJuliann\nJulysa\nKaili\nKalei\nKalena\nKallie\nKalynn\nKameryn\nKandace\nKarlyn\nKassie\nKatalina\nKathia\nKaylei\nKeaira\nKeeley\nKeily\nKeonna\nKerrigan\nKiarah\nKisha\nKiyanna\nKyrsten\nLaci\nLaisha\nLani\nLaniyah\nLaynee\nLazaria\nLeighann\nLeilany\nLela\nLeonor\nLeslye\nLidia\nLilyana\nLizette\nLondon\nLorelei\nLuciana\nLucila\nMabel\nMackenzy\nMadaline\nMaddalena\nMadysen\nMae\nMagdalena\nMakala\nMalak\nMarielena\nMariella\nMarkayla\nMarlen\nMaryann\nMayah\nMayte\nMelani\nMelonie\nMerritt\nMichayla\nMickayla\nMickenzie\nMikyla\nMillie\nMona\nMyesha\nMyriam\nNajah\nNakya\nNalani\nNatania\nNehemie\nNicola\nNoa\nNovalee\nPaloma\nPeri\nPetra\nPilar\nRacquel\nRaelynn\nRagan\nRaine\nRania\nRaniyah\nRebecka\nReece\nRenae\nRhyan\nRia\nRichelle\nRiya\nRoxanna\nRubi\nSaira\nSamanta\nSamiyah\nSantana\nSarahi\nSaray\nSelma\nShamaya\nShamiya\nShannah\nShantel\nShantrell\nShay\nShaylin\nShaylyn\nSheena\nShelsey\nShelsy\nSherry\nShoshana\nSilvana\nStarla\nStefani\nStephane\nSusanna\nSuzette\nTaisha\nTala\nTamesha\nTamiah\nTamiyah\nTaniah\nTanija\nTarah\nTasia\nTeah\nTegan\nTerra\nTerria\nTerrica\nTionna\nTobi\nTory\nTrinidy\nVenus\nYamile\nYanet\nYareli\nYulisa\nZayna\nZenobia\nZipporah\nEmily\nMadison\nAshley\nIsabella\nHannah\nBrianna\nSarah\nSamantha\nAlexis\nAlyssa\nKayla\nVictoria\nAbigail\nElizabeth\nTaylor\nOlivia\nJessica\nNicole\nLauren\nJasmine\nEmma\nSophia\nJennifer\nAlexandra\nRachel\nChloe\nNatalie\nAmanda\nGrace\nMegan\nHailey\nDestiny\nKaitlyn\nSavannah\nMaria\nSydney\nMorgan\nKatherine\nHaley\nJulia\nAnna\nStephanie\nJordan\nGabriella\nMia\nAaliyah\nBrooke\nAndrea\nGabriela\nMackenzie\nFaith\nAmber\nSofia\nVanessa\nGabrielle\nAlexa\nJada\nMelanie\nJade\nSierra\nSara\nRebecca\nMakayla\nAshanti\nJenna\nAngelina\nKaylee\nSabrina\nAllison\nTrinity\nDanielle\nChristina\nZoe\nBriana\nMichelle\nDaniela\nKimberly\nKylie\nKatelyn\nMelissa\nPaige\nCaroline\nMary\nShelby\nCourtney\nRiley\nArianna\nAutumn\nAriana\nIsabel\nAdriana\nAna\nAngela\nLaura\nAlexandria\nBreanna\nJacqueline\nAngel\nMaya\nMadeline\nAlicia\nBianca\nCheyenne\nLily\nBailey\nNatalia\nAlexia\nTiffany\nCatherine\nLeah\nAngelica\nValerie\nKelly\nErin\nKiara\nIsabelle\nMikayla\nAmy\nCassandra\nKatie\nJuliana\nCaitlin\nJocelyn\nGianna\nLindsey\nMarissa\nTatiana\nSummer\nDiana\nCassidy\nAva\nVeronica\nJillian\nAmelia\nErica\nSkylar\nCarolina\nDaniella\nKelsey\nKarina\nValeria\nMya\nCamila\nKyla\nCaitlyn\nGenesis\nLillian\nKathryn\nDelaney\nMadelyn\nValentina\nJordyn\nMariah\nHope\nErika\nChelsea\nCrystal\nHanna\nElla\nJulianna\nMiranda\nBrittany\nHeather\nJamie\nJasmin\nKristen\nAdrianna\nKendall\nMonica\nAliyah\nAudrey\nAvery\nNaomi\nKaren\nAshlyn\nDesiree\nDiamond\nMeghan\nLizbeth\nSophie\nEvelyn\nHayley\nJayla\nMolly\nShannon\nLeslie\nNadia\nAlana\nJulie\nLydia\nMckenzie\nNevaeh\nCynthia\nDaisy\nJazmine\nNina\nAubrey\nKaitlin\nAlejandra\nCameron\nGracie\nSavanna\nMariana\nAngie\nCierra\nKylee\nRylee\nJoanna\nRebekah\nAmaya\nKarla\nKassandra\nNatasha\nAriel\nKiana\nKate\nNathalie\nBryanna\nMargaret\nMichaela\nKennedy\nKristina\nPriscilla\nCharlotte\nClaudia\nHaylee\nAshleigh\nBrenda\nCiara\nClaire\nHolly\nMakenzie\nCarly\nRaven\nAsia\nBritney\nCheyanne\nHeaven\nJazmin\nLayla\nNia\nPeyton\nAbby\nAnastasia\nAnnabelle\nYesenia\nJaden\nKara\nMacy\nPayton\nEva\nGiselle\nMelody\nSkyler\nYasmin\nCasey\nKailey\nKaley\nPaola\nSerena\nAlissa\nImani\nAlexus\nEsmeralda\nReagan\nSandra\nZaria\nCamryn\nCarla\nKatelynn\nKatrina\nKyra\nPatricia\nRachael\nShayla\nKathleen\nMallory\nBethany\nChristine\nCristina\nLogan\nTiana\nAmari\nAniyah\nCecilia\nKirsten\nNayeli\nRaquel\nBrittney\nDakota\nElena\nElise\nFrancesca\nZoey\nLindsay\nSasha\nSerenity\nAlina\nDominique\nMckenna\nTori\nVivian\nAlison\nCindy\nDeanna\nSelena\nLisa\nMarisa\nSadie\nTalia\nCamille\nEsther\nFatima\nKrystal\nLiliana\nMakenna\nRuth\nAlisha\nDana\nEmely\nHaleigh\nJadyn\nLeila\nAniya\nCarmen\nJanae\nEmilee\nEmilie\nGeorgia\nIndia\nKayleigh\nMarina\nSkye\nTamia\nTara\nBella\nDeja\nJayda\nKira\nNyla\nRenee\nRuby\nSarai\nAlondra\nAshlee\nDeborah\nEden\nKendra\nLaila\nPrecious\nShania\nYasmine\nAddison\nAlaina\nAshlynn\nBridget\nIsabela\nLilly\nMarisol\nRosa\nRose\nShakira\nCarolyn\nGloria\nJaniya\nJuliette\nKamryn\nLeilani\nTatyana\nAlanna\nBrooklyn\nCeleste\nDenise\nIzabella\nJayden\nJulissa\nKassidy\nWhitney\nCatalina\nJazlyn\nJustice\nKaitlynn\nKaylie\nLauryn\nLexi\nMckayla\nMiracle\nPaulina\nVirginia\nBarbara\nEllie\nGuadalupe\nLinda\nLorena\nLucia\nMaggie\nMarie\nMeagan\nMelany\nTamara\nTia\nAllyson\nAngelique\nAnsley\nApril\nCarissa\nHalle\nJaniyah\nKristin\nMercedes\nSharon\nAnnie\nGina\nJoy\nLucy\nMadeleine\nNancy\nSidney\nTessa\nTyra\nAlessandra\nArielle\nAyanna\nBrandi\nClara\nHailee\nJenny\nJuliet\nKaila\nNichole\nSage\nSimone\nTheresa\nElisa\nGiovanna\nHeidi\nMadisyn\nMaia\nMonique\nParis\nTeresa\nTyler\nAbbey\nJosephine\nKiersten\nKrista\nKyleigh\nMalia\nMelina\nNoelle\nPamela\nPaula\nShyanne\nSonia\nTaliyah\nThalia\nTianna\nAyana\nDasia\nFelicity\nJewel\nKarissa\nSusan\nWendy\nAshton\nChasity\nClarissa\nEliana\nGisselle\nIris\nJacquelyn\nJaelyn\nJaida\nJanelle\nJohanna\nKaia\nKailyn\nKaleigh\nLacey\nNya\nShaniya\nTabitha\nTania\nTiara\nAnnette\nAntonia\nBreana\nEliza\nFelicia\nHelen\nKasey\nLara\nMiriam\nRyleigh\nViviana\nAinsley\nCharity\nDayana\nDestinee\nElisabeth\nJaliyah\nJessie\nKatlyn\nKiera\nLyric\nReese\nRegan\nStacey\nTatianna\nWillow\nAlysa\nAnabella\nAnn\nBrandy\nBrenna\nCeline\nEstefania\nGenevieve\nGwendolyn\nJanet\nJosie\nRhiannon\nAisha\nAlice\nAlyson\nAnaya\nCallie\nEricka\nFiona\nHarley\nIrene\nJakayla\nKaylin\nKierra\nKiley\nLarissa\nMadalyn\nNathaly\nAlivia\nAllie\nAmani\nAnne\nAntonella\nAnya\nBrielle\nBryana\nHelena\nHunter\nJulianne\nKianna\nLiberty\nLisbeth\nNora\nNyah\nRobyn\nTaryn\nAileen\nAmya\nCelina\nIsis\nIvy\nJamya\nJanessa\nJazmyn\nKali\nKendal\nLea\nLena\nLuz\nPerla\nSade\nShayna\nSkyla\nAdrienne\nAimee\nAlisa\nAliya\nAnabelle\nAnahi\nAraceli\nCara\nCiera\nDevin\nEmilia\nFarah\nHallie\nIyana\nJesenia\nLola\nLourdes\nMadyson\nMarilyn\nMayra\nNoemi\nPenelope\nPiper\nSamara\nSheila\nStephany\nTaniya\nTayler\nToni\nZoie\nAngeline\nAria\nBaylee\nBeatriz\nCarlie\nCassie\nCayla\nEileen\nHarmony\nHayden\nIliana\nJolie\nJoyce\nKaya\nMicaela\nNataly\nPriscila\nShea\nStacy\nTierra\nAlexandrea\nAnabel\nAnnabella\nArmani\nAryanna\nAurora\nCarina\nChanel\nChristy\nDamaris\nDeasia\nFabiola\nGillian\nHalie\nHaylie\nJaiden\nJasmyn\nKaliyah\nLuna\nMaddison\nMaegan\nMarianna\nMeredith\nMontana\nShyann\nSylvia\nTeagan\nAbbie\nAbbigail\nAlayna\nAthena\nDestiney\nDestini\nEleanor\nFernanda\nJane\nJanice\nJena\nJoselyn\nJuana\nJustine\nKenya\nNathalia\nPhoebe\nReyna\nRylie\nSanaa\nValery\nXiomara\nYadira\nZariah\nAleah\nAnika\nAubree\nBaby\nCarlee\nCarrie\nCecelia\nDaphne\nEve\nGiana\nGiuliana\nItzel\nJalynn\nJaniah\nJaqueline\nKathy\nKeyla\nLeanna\nLiana\nLilian\nLillie\nMiah\nNatalya\nPrincess\nRayna\nRebeca\nSamira\nSandy\nSavana\nTanya\nUnique\nAdeline\nAiyana\nAnais\nAnnika\nAriyana\nBrionna\nCarley\nChelsey\nCoral\nDonna\nEbony\nElisha\nEsperanza\nJaclyn\nJimena\nJudith\nKailee\nKaiya\nKaterina\nKaylah\nKayley\nKeisha\nKelli\nLaurel\nLesley\nLissette\nManuela\nMarley\nMartina\nMikaela\nMilagros\nNicolette\nRaegan\nSienna\nSusana\nSydni\nTaniyah\nAustin\nAyla\nBailee\nCandace\nCelia\nChiara\nChristian\nChristie\nDorothy\nEmmalee\nFabiana\nGia\nHaven\nIyanna\nJanay\nJaylene\nJazmyne\nKaylyn\nLana\nLesly\nMarcela\nMaribel\nMariela\nMeadow\nRegina\nShawna\nTristen\nAbigayle\nAgustina\nAlexys\nAlly\nAmaris\nAnissa\nAracely\nAshly\nAzaria\nCarson\nChyna\nDaija\nDaisha\nDanae\nDenisse\nElle\nElyssa\nEssence\nFrances\nHailie\nJeniffer\nKatarina\nKeely\nKeila\nKelsie\nKyara\nLeticia\nLia\nMadelynn\nMara\nNikki\nNorma\nRobin\nSalma\nScarlett\nSelina\nShirley\nSilvia\nSydnee\nTaina\nTracy\nXimena\nAlize\nAlycia\nAmira\nAshante\nAstrid\nBria\nCamilla\nCasandra\nColleen\nDajah\nElaina\nElissa\nEllen\nJadah\nJayde\nJaylah\nJoelle\nJulisa\nKai\nKamila\nKarlee\nKeyonna\nKourtney\nKristine\nLexie\nMadilyn\nMariam\nMarlee\nMyah\nNiya\nOdalys\nReina\nRosalinda\nSarina\nSavanah\nSelah\nShaniah\nShanice\nShaniyah\nSydnie\nTanisha\nTyanna\nViolet\nZaniyah\nAliana\nAlliyah\nBelen\nChrista\nChyanne\nDallas\nDejah\nDesirae\nDiane\nDulce\nFallon\nIngrid\nIvette\nJackeline\nJailyn\nJamia\nJaylin\nJenifer\nJoana\nJoanne\nKaris\nKarlie\nKasandra\nKatharine\nKayle\nKaylynn\nKeira\nKenna\nKiya\nKristy\nLeandra\nLiz\nLyndsey\nMacey\nMaci\nMakaila\nMiya\nNakiya\nNicolle\nNikita\nNoel\nNoelia\nRavyn\nReilly\nRochelle\nRosemary\nRoxana\nRyan\nShaina\nShamya\nShaylee\nSky\nYazmin\nYessenia\nYuliana\nZakiya\nAidan\nAlani\nAllana\nAlma\nAnastacia\nAnnabel\nAnnamarie\nAryana\nCali\nCarli\nCorinne\nCristal\nDaja\nDarian\nDarlene\nDawn\nDayanara\nDesire\nDevon\nDina\nEdith\nEmerson\nFranchesca\nHana\nJalyn\nJania\nJashanti\nJasmyne\nJazlynn\nJourney\nKarli\nKatia\nKenia\nKennedi\nKeyanna\nKirstin\nKiyah\nKyndall\nLeann\nLila\nLina\nLisbet\nLisette\nMacie\nMadisen\nMakena\nMaleah\nMilena\nNyasia\nOriana\nRaina\nReanna\nRocio\nSamaria\nSequoia\nShanya\nSoleil\nStar\nStefanie\nStella\nTatum\nYolanda\nAlena\nAlexi\nAlia\nAliah\nAliza\nAlysha\nAnjali\nAnnalise\nArely\nAsha\nAspen\nBreonna\nBrianne\nCalista\nCandice\nCaylee\nChantal\nDaijah\nDalia\nDarby\nDelia\nDianna\nEmani\nEstrella\nHaily\nIsabell\nIvana\nIvanna\nJaime\nJanna\nJaylyn\nJodi\nJoslyn\nKalyn\nKamya\nKaylen\nKellie\nKenzie\nKeziah\nKierstin\nLaney\nLilliana\nLizbet\nMartha\nMicah\nMoriah\nMyla\nMyra\nNadine\nNikole\nPresley\nRachelle\nRashel\nSabina\nShyla\nSonya\nTamya\nTristan\nYvonne\nZaniya\nAbriana\nAja\nAleena\nAlisia\nAlysia\nAmerica\nAmiyah\nAnamaria\nAnanda\nAngelia\nAnisa\nAnita\nBrook\nChantel\nCora\nDayna\nDelanie\nDelilah\nDemetria\nDevyn\nDrew\nDylan\nEboni\nElaine\nEmerald\nEryn\nFiorella\nFlor\nHarper\nHazel\nHeidy\nInfant\nJacklyn\nJaela\nJaila\nJalissa\nJamila\nJamiya\nJanya\nJayme\nJeanette\nJeanna\nJoann\nJovanna\nJuanita\nKacie\nKaela\nKaelyn\nKailah\nKalani\nKamaria\nKayleen\nKeara\nKiah\nKimberlee\nKinsey\nKylah\nLani\nLashanti\nLeanne\nLexus\nLidia\nLuana\nMakiya\nMargarita\nMarianne\nMaritza\nMarlene\nMaxine\nMichele\nMina\nMollie\nMonet\nMykayla\nNatalee\nNayla\nOctavia\nRhianna\nRita\nRosalie\nRosemarie\nRowan\nSaniya\nShelbie\nShyanna\nSiera\nTaya\nTayla\nTea\nTyana\nVanesa\nWinter\nAbigale\nAda\nAiyanna\nAlannah\nAllyssa\nAmara\nAmaria\nAmina\nAnjelica\nAnnabell\nAnnmarie\nAriadna\nBeatrice\nBianka\nBlake\nBonnie\nBrea\nBreyanna\nBridgette\nCailyn\nCaitlynn\nCami\nCampbell\nCarol\nCharisma\nChelsie\nChristen\nChristiana\nDahlia\nDestany\nEstefani\nGiulia\nGwyneth\nHalee\nHayleigh\nIlana\nImari\nIndya\nJaleah\nJana\nJanaya\nJaneth\nJayleen\nJaylynn\nJennie\nJensen\nJohana\nJulieta\nKacey\nKalei\nKalina\nKameron\nKarley\nKarolina\nKayli\nKeily\nKeri\nKerry\nKiarra\nKinsley\nKya\nLatavia\nLeigha\nLeyla\nLilah\nLivia\nLorraine\nMagdalena\nMakala\nMarcella\nMarian\nMaricela\nMaryam\nMireya\nOlga\nParker\nPatrice\nQuinn\nRenata\nRianna\nSaige\nSamaya\nSamya\nSaniah\nSapphire\nShana\nShanel\nShanna\nTatiyana\nTess\nTreasure\nYasmeen\nYazmine\nZykeria\nAbagail\nAbrianna\nAbril\nAdela\nAkira\nAlecia\nAleigha\nAlex\nAlexcia\nAlexzandria\nAmerie\nAnaiya\nAreli\nAylin\nAzariah\nBayleigh\nBeverly\nBrieanna\nBrooklynn\nCallista\nCharlize\nCheyann\nDara\nDarla\nDebra\nElianna\nElyse\nEndia\nEstefany\nFarrah\nGeorgina\nGladys\nGlory\nGriselda\nHadley\nJackie\nJaelynn\nJaidyn\nJakiya\nJanie\nJaquelin\nJaycee\nJaylen\nJayna\nJennah\nJessenia\nJessika\nJodie\nJosey\nKalia\nKaniya\nKarly\nKatelin\nKatherin\nKatiana\nKatlin\nKatlynn\nKaty\nKatya\nKaycee\nKaytlin\nKeyona\nKhaliyah\nKori\nKrysta\nLaniya\nLazaria\nLeeann\nLeena\nLitzy\nLizeth\nLori\nLuisa\nMaliyah\nMandy\nMarkayla\nMason\nMattie\nMaura\nMelinda\nMelisa\nMila\nMindy\nMonserrat\nNaiya\nNaya\nNeha\nNelly\nNoa\nNoor\nRacheal\nRia\nSariah\nScarlet\nShekinah\nSheridan\nShianne\nSiena\nSilvana\nSymone\nTabatha\nTamar\nTamera\nTerra\nTimia\nTina\nTiyana\nTrinitee\nTykeria\nYamilet\nYanet\nYaquelin\nYoselin\nAdreanna\nAdria\nAdrian\nAida\nAislinn\nAlanis\nAlaya\nAlaysia\nAlexander\nAmiracle\nAnalise\nAnayah\nAnayeli\nAndie\nAniah\nAnja\nAnnalisa\nAnyssa\nAshari\nAshia\nAshlie\nAshtyn\nAutum\nBeyonce\nBlanca\nBree\nBreyonna\nBridgett\nCadence\nCameryn\nCarleigh\nCelena\nChandler\nCharlene\nCitlaly\nCloe\nDania\nDanisha\nDanna\nDanyelle\nDaphney\nDeandra\nDeena\nDemi\nDena\nDestinie\nDixie\nElana\nElia\nEmalee\nEmelie\nEunice\nGeorgette\nGianni\nGissel\nGraciela\nHillary\nJacey\nJacinda\nJacquelin\nJaedyn\nJakeria\nJalisa\nJanely\nJaquelyn\nJaslyn\nJessi\nJoan\nJoi\nJordana\nJordynn\nJoselin\nKaci\nKailynn\nKaleah\nKalie\nKaniyah\nKarsyn\nKatalina\nKatheryn\nKaytlyn\nKeanna\nKeasia\nKeeley\nKelsea\nKelsi\nKimora\nKristi\nKyndal\nLacie\nLainey\nLeana\nLexy\nLilia\nLiyah\nLiza\nLove\nLuciana\nLynn\nLynsey\nMacayla\nMakenzi\nMalaysia\nMariajose\nMaryann\nMicayla\nMilan\nMira\nNadya\nNalani\nNiyah\nNydia\nPaloma\nPatience\nQueen\nRaelyn\nRhonda\nRiana\nRichelle\nRiya\nRoberta\nRory\nRyann\nSalome\nSamia\nSamiyah\nShae\nShaelyn\nShakayla\nShamaria\nShantel\nShantell\nShelly\nShreya\nSiara\nSkyy\nSneha\nStormy\nTaelor\nTai\nTamiya\nTammy\nTera\nTerri\nTionna\nTracey\nTraci\nTrista\nTristin\nTyesha\nTyla\nVianna\nYaire\nYakira\nYaritza\nYulianna\nYulissa\nYvette\nZahria\nZaniah\nZion\nAdamari\nAdamaris\nAdelina\nAdina\nAilyn\nAlba\nAlyssia\nAmalia\nAmariah\nAmberlyn\nAmbria\nAmelie\nAmia\nAmie\nAmirah\nAmiya\nAnabell\nAnamarie\nAnanya\nAneesa\nAngely\nAnnaliese\nAnnamaria\nAnnemarie\nAntoinette\nArden\nAriella\nArlene\nAshaunti\nAshely\nAshli\nAya\nAyleen\nAysia\nAzucena\nBaleigh\nBelinda\nBernadette\nBetty\nBibiana\nBillie\nBreeanna\nBriannah\nBriauna\nBrigitte\nBriley\nBrisa\nBritany\nBriyanna\nBrynn\nBryonna\nCaliyah\nCasie\nCassidi\nCathryn\nChana\nChantelle\nCharlie\nChassity\nChaya\nCherish\nChristal\nChristelle\nChyenne\nCiarra\nCitlali\nClare\nColby\nConstance\nCori\nCortney\nDanasia\nDanesha\nDani\nDarcy\nDasani\nDasha\nDayanna\nDenisha\nDeven\nDiamonique\nDianne\nDivya\nDyamond\nElayna\nElicia\nElsa\nElysia\nEmber\nEmiliana\nEmmanuela\nEmmy\nEmory\nEriana\nFrancisca\nGabriel\nGabriele\nGiavanna\nGisel\nGissell\nGrayson\nHaile\nHaileigh\nHali\nHarli\nHarmoni\nIleana\nIreland\nIvory\nJael\nJaileen\nJailynn\nJaimee\nJakhia\nJakira\nJameria\nJamiah\nJanai\nJanette\nJaya\nJaycie\nJazzmine\nJosefina\nJoseline\nJourdyn\nJournee\nJudy\nKadence\nKaelynn\nKaili\nKala\nKaliah\nKamari\nKamia\nKamiyah\nKari\nKarol\nKelley\nKeren\nKerri\nKortney\nKristian\nKyah\nKyana\nKyrsten\nLacy\nLaurie\nLee\nLeeanna\nWilliam\nJames\nCharles\nGeorge\nFrank\nJoseph\nThomas\nHenry\nRobert\nEdward\nHarry\nWalter\nArthur\nFred\nAlbert\nSamuel\nDavid\nLouis\nJoe\nCharlie\nClarence\nRichard\nAndrew\nDaniel\nErnest\nWill\nJesse\nOscar\nLewis\nPeter\nBenjamin\nFrederick\nWillie\nAlfred\nSam\nRoy\nHerbert\nJacob\nTom\nElmer\nCarl\nLee\nHoward\nMartin\nMichael\nBert\nHerman\nJim\nFrancis\nHarvey\nEarl\nEugene\nRalph\nEd\nClaude\nEdwin\nBen\nCharley\nPaul\nEdgar\nIsaac\nOtto\nLuther\nLawrence\nIra\nPatrick\nGuy\nOliver\nTheodore\nHugh\nClyde\nAlexander\nAugust\nFloyd\nHomer\nJack\nLeonard\nHorace\nMarion\nPhilip\nAllen\nArchie\nStephen\nChester\nWillis\nRaymond\nRufus\nWarren\nJessie\nMilton\nAlex\nLeo\nJulius\nRay\nSidney\nBernard\nDan\nJerry\nCalvin\nPerry\nDave\nAnthony\nEddie\nAmos\nDennis\nClifford\nLeroy\nWesley\nAlonzo\nGarfield\nFranklin\nEmil\nLeon\nNathan\nHarold\nMatthew\nLevi\nMoses\nEverett\nLester\nWinfield\nAdam\nLloyd\nMack\nFredrick\nJay\nJess\nMelvin\nNoah\nAaron\nAlvin\nNorman\nGilbert\nElijah\nVictor\nGus\nNelson\nJasper\nSilas\nChristopher\nJake\nMike\nPercy\nAdolph\nMaurice\nCornelius\nFelix\nReuben\nWallace\nClaud\nRoscoe\nSylvester\nEarnest\nHiram\nOtis\nSimon\nWillard\nIrvin\nMark\nJose\nWilbur\nAbraham\nVirgil\nClinton\nElbert\nLeslie\nMarshall\nOwen\nWiley\nAnton\nMorris\nManuel\nPhillip\nAugustus\nEmmett\nEli\nNicholas\nWilson\nAlva\nHarley\nNewton\nTimothy\nMarvin\nRoss\nCurtis\nEdmund\nJeff\nElias\nHarrison\nStanley\nColumbus\nLon\nOra\nOllie\nRussell\nPearl\nSolomon\nArch\nAsa\nClayton\nEnoch\nIrving\nMathew\nNathaniel\nScott\nHubert\nLemuel\nAndy\nEllis\nEmanuel\nJoshua\nMillard\nVernon\nWade\nCyrus\nMiles\nRudolph\nSherman\nAustin\nBill\nChas\nLonnie\nMonroe\nByron\nEdd\nEmery\nGrant\nJerome\nMax\nMose\nSteve\nGordon\nAbe\nPete\nChris\nClark\nGustave\nOrville\nLorenzo\nBruce\nMarcus\nPreston\nBob\nDock\nDonald\nJackson\nCecil\nBarney\nDelbert\nEdmond\nAnderson\nChristian\nGlenn\nJefferson\nLuke\nNeal\nBurt\nIke\nMyron\nTony\nConrad\nJoel\nMatt\nRiley\nVincent\nEmory\nIsaiah\nNick\nEzra\nGreen\nJuan\nClifton\nLucius\nPorter\nArnold\nBud\nJeremiah\nTaylor\nForrest\nRoland\nSpencer\nBurton\nDon\nEmmet\nGustav\nLouie\nMorgan\nNed\nVan\nAmbrose\nChauncey\nElisha\nFerdinand\nGeneral\nJulian\nKenneth\nMitchell\nAllie\nJosh\nJudson\nLyman\nNapoleon\nPedro\nBerry\nDewitt\nErvin\nForest\nLynn\nPink\nRuben\nSanford\nWard\nDouglas\nOle\nOmer\nUlysses\nWalker\nWilbert\nAdelbert\nBenjiman\nIvan\nJonas\nMajor\nAbner\nArchibald\nCaleb\nClint\nDudley\nGranville\nKing\nMary\nMerton\nAntonio\nBennie\nCarroll\nFreeman\nJosiah\nMilo\nRoyal\nDick\nEarle\nElza\nEmerson\nFletcher\nJudge\nLaurence\nNeil\nRoger\nSeth\nGlen\nHugo\nJimmie\nJohnnie\nWashington\nElwood\nGust\nHarmon\nJordan\nSimeon\nWayne\nWilber\nClem\nEvan\nFrederic\nIrwin\nJunius\nLafayette\nLoren\nMadison\nMason\nOrval\nAbram\nAubrey\nElliott\nHans\nKarl\nMinor\nWash\nWilfred\nAllan\nAlphonse\nDallas\nDee\nIsiah\nJason\nJohnny\nLawson\nLew\nMicheal\nOrin\nAddison\nCal\nErastus\nFrancisco\nHardy\nLucien\nRandolph\nStewart\nVern\nWilmer\nEMILY\nASHLEY\nSAMANTHA\nISABELLA\nMIA\nNATALIE\nSOPHIA\nEMMA\nALYSSA\nMADISON\nJASMINE\nELIZABETH\nJESSICA\nKIMBERLY\nABIGAIL\nBRIANNA\nJENNIFER\nAVA\nHANNAH\nSARAH\nALEXIS\nANDREA\nANGELINA\nSTEPHANIE\nVANESSA\nDANIEL\nANTHONY\nANGEL\nDAVID\nJOSHUA\nJOSE\nANDREW\nJACOB\nMATTHEW\nMICHAEL\nJONATHAN\nCHRISTOPHER\nJOSEPH\nALEXANDER\nNATHAN\nETHAN\nRYAN\nDIEGO\nJUAN\nKEVIN\nBRANDON\nCHRISTIAN\nLUIS\nJESUS\nGABRIEL\nEMILY\nISABELLA\nASHLEY\nMIA\nSAMANTHA\nNATALIE\nSOPHIA\nEMMA\nABIGAIL\nAVA\nMADISON\nELIZABETH\nALYSSA\nBRIANNA\nKIMBERLY\nJASMINE\nANDREA\nJESSICA\nALEXA\nOLIVIA\nHANNAH\nVALERIA\nANGELINA\nSARAH\nJOCELYN\nDANIEL\nANTHONY\nANGEL\nJACOB\nDAVID\nANDREW\nJOSE\nJOSHUA\nCHRISTOPHER\nMATTHEW\nDIEGO\nMICHAEL\nJONATHAN\nALEXANDER\nNATHAN\nETHAN\nJOSEPH\nCHRISTIAN\nADRIAN\nJUAN\nBRANDON\nLUIS\nKEVIN\nRYAN\nJESUS\nEMILY\nISABELLA\nSOPHIA\nASHLEY\nSAMANTHA\nMIA\nNATALIE\nEMMA\nALYSSA\nJOCELYN\nELIZABETH\nAVA\nABIGAIL\nKIMBERLY\nMADISON\nOLIVIA\nBRIANNA\nSOFIA\nJASMINE\nANDREA\nVANESSA\nHANNAH\nCHLOE\nALEXA\nVICTORIA\nDANIEL\nANTHONY\nANGEL\nJACOB\nDAVID\nANDREW\nCHRISTOPHER\nJOSHUA\nJOSE\nALEXANDER\nDIEGO\nMATTHEW\nMICHAEL\nETHAN\nJONATHAN\nNATHAN\nJOSEPH\nADRIAN\nBRANDON\nKEVIN\nCHRISTIAN\nLUIS\nISAAC\nRYAN\nNOAH\nEMILY\nISABELLA\nSOPHIA\nSAMANTHA\nASHLEY\nNATALIE\nMIA\nEMMA\nABIGAIL\nAVA\nOLIVIA\nELIZABETH\nMADISON\nVALERIA\nALYSSA\nCHLOE\nKIMBERLY\nSOFIA\nBRIANNA\nVICTORIA\nANDREA\nCAMILA\nJOCELYN\nJASMINE\nVANESSA\nDANIEL\nANTHONY\nANGEL\nJACOB\nDAVID\nALEXANDER\nANDREW\nJOSHUA\nCHRISTOPHER\nJOSE\nMATTHEW\nETHAN\nNATHAN\nMICHAEL\nJONATHAN\nJOSEPH\nADRIAN\nDIEGO\nJAYDEN\nBRANDON\nISAAC\nNOAH\nKEVIN\nCHRISTIAN\nRYAN\nISABELLA\nSOPHIA\nEMILY\nMIA\nSAMANTHA\nNATALIE\nEMMA\nASHLEY\nABIGAIL\nOLIVIA\nAVA\nELIZABETH\nCHLOE\nVALERIA\nSOFIA\nMADISON\nALYSSA\nBRIANNA\nKIMBERLY\nANDREA\nCAMILA\nALEXA\nVICTORIA\nALEXIS\nEVELYN\nDANIEL\nANTHONY\nANGEL\nJACOB\nALEXANDER\nETHAN\nDAVID\nANDREW\nMATTHEW\nJOSHUA\nCHRISTOPHER\nMICHAEL\nNATHAN\nJAYDEN\nJOSE\nADRIAN\nJOSEPH\nJONATHAN\nNOAH\nISAAC\nAIDEN\nCHRISTIAN\nJULIAN\nDIEGO\nBRANDON\nISABELLA\nSOPHIA\nEMILY\nMIA\nEMMA\nSAMANTHA\nOLIVIA\nABIGAIL\nNATALIE\nAVA\nSOFIA\nCHLOE\nASHLEY\nCAMILA\nELIZABETH\nALYSSA\nVICTORIA\nBRIANNA\nMADISON\nKIMBERLY\nEVELYN\nALEXA\nVALERIA\nHAILEY\nBELLA\nJACOB\nDANIEL\nANTHONY\nALEXANDER\nANGEL\nETHAN\nJAYDEN\nDAVID\nANDREW\nNATHAN\nMATTHEW\nJOSHUA\nNOAH\nMICHAEL\nCHRISTOPHER\nJONATHAN\nADRIAN\nAIDEN\nJOSE\nJULIAN\nJOSEPH\nISAAC\nGABRIEL\nCHRISTIAN\nBRANDON\nSOPHIA\nISABELLA\nEMILY\nMIA\nEMMA\nOLIVIA\nSOFIA\nABIGAIL\nSAMANTHA\nNATALIE\nCAMILA\nAVA\nCHLOE\nVICTORIA\nELIZABETH\nASHLEY\nMADISON\nEVELYN\nKIMBERLY\nALYSSA\nHAILEY\nANDREA\nELLA\nALEXA\nZOE\nJACOB\nDANIEL\nJAYDEN\nANTHONY\nMATTHEW\nALEXANDER\nETHAN\nDAVID\nANDREW\nNATHAN\nNOAH\nANGEL\nMICHAEL\nJULIAN\nAIDEN\nJOSHUA\nJONATHAN\nISAAC\nMASON\nADRIAN\nCHRISTOPHER\nJOSEPH\nJOSE\nBENJAMIN\nAARON\nSOPHIA\nISABELLA\nEMMA\nEMILY\nMIA\nOLIVIA\nSOFIA\nABIGAIL\nSAMANTHA\nAVA\nCAMILA\nVICTORIA\nNATALIE\nELIZABETH\nCHLOE\nEVELYN\nGENESIS\nASHLEY\nMADISON\nZOE\nCHARLOTTE\nHAILEY\nMELANIE\nAUDREY\nKIMBERLY\nJACOB\nJAYDEN\nETHAN\nDANIEL\nMATTHEW\nNOAH\nALEXANDER\nANTHONY\nNATHAN\nANDREW\nDAVID\nMICHAEL\nAIDEN\nANGEL\nISAAC\nJULIAN\nMASON\nADRIAN\nJONATHAN\nJOSHUA\nCHRISTOPHER\nBENJAMIN\nJOSEPH\nLIAM\nDYLAN\nSOPHIA\nISABELLA\nMIA\nEMMA\nEMILY\nOLIVIA\nSOFIA\nABIGAIL\nCAMILA\nSAMANTHA\nVICTORIA\nAVA\nNATALIE\nELIZABETH\nCHARLOTTE\nCHLOE\nGENESIS\nAUDREY\nMADISON\nEVELYN\nZOE\nMELANIE\nGRACE\nALEXA\nSCARLETT\nJACOB\nETHAN\nDANIEL\nJAYDEN\nMATTHEW\nNOAH\nALEXANDER\nANTHONY\nNATHAN\nDAVID\nMICHAEL\nANDREW\nJULIAN\nBENJAMIN\nAIDEN\nISAAC\nANGEL\nMASON\nLIAM\nADRIAN\nSEBASTIAN\nDYLAN\nJOSHUA\nJOSEPH\nAARON\nSOPHIA\nISABELLA\nEMMA\nMIA\nOLIVIA\nEMILY\nSOFIA\nVICTORIA\nABIGAIL\nCAMILA\nAVA\nSAMANTHA\nCHARLOTTE\nEVELYN\nELIZABETH\nNATALIE\nCHLOE\nMADISON\nGENESIS\nSCARLETT\nGRACE\nZOE\nMELANIE\nALLISON\nAUDREY\nNOAH\nJACOB\nETHAN\nDANIEL\nALEXANDER\nMATTHEW\nJAYDEN\nANTHONY\nSEBASTIAN\nDAVID\nMICHAEL\nANDREW\nJULIAN\nBENJAMIN\nAIDEN\nNATHAN\nLIAM\nMASON\nISAAC\nAARON\nANGEL\nDYLAN\nJAMES\nADRIAN\nLOGAN\nSOPHIA\nMIA\nEMMA\nOLIVIA\nISABELLA\nEMILY\nSOFIA\nABIGAIL\nVICTORIA\nAVA\nALEXA\nCAMILA\nCHARLOTTE\nSAMANTHA\nEVELYN\nSCARLETT\nMADISON\nELIZABETH\nPENELOPE\nZOE\nCHLOE\nNATALIE\nAVERY\nALLISON\nARIA\nGRACE\nNOAH\nJACOB\nETHAN\nDANIEL\nMATTHEW\nALEXANDER\nJAYDEN\nSEBASTIAN\nLIAM\nDAVID\nJULIAN\nAIDEN\nMICHAEL\nNATHAN\nBENJAMIN\nANTHONY\nISAAC\nMASON\nDYLAN\nANDREW\nJAMES\nANGEL\nADRIAN\nJOSEPH\nELIJAH\nMIA\nSOPHIA\nEMMA\nOLIVIA\nISABELLA\nEMILY\nSOFIA\nCAMILA\nAVA\nABIGAIL\nVICTORIA\nCHARLOTTE\nEVELYN\nSCARLETT\nPENELOPE\nAMELIA\nALEXA\nELIZABETH\nSAMANTHA\nARIA\nCHLOE\nAVERY\nMADISON\nZOE\nGENESIS\nNOAH\nMATTHEW\nETHAN\nDANIEL\nJACOB\nSEBASTIAN\nALEXANDER\nJULIAN\nLIAM\nBENJAMIN\nJAYDEN\nMATEO\nMICHAEL\nAIDEN\nDAVID\nNATHAN\nANTHONY\nLUCAS\nJAMES\nELIJAH\nISAAC\nAARON\nOLIVER\nDYLAN\nMASON\nEMMA\nMIA\nOLIVIA\nSOPHIA\nISABELLA\nEMILY\nCAMILA\nSOFIA\nABIGAIL\nAVA\nVICTORIA\nCHARLOTTE\nEVELYN\nLUNA\nSCARLETT\nPENELOPE\nAMELIA\nARIA\nMILA\nELIZABETH\nCHLOE\nZOE\nGRACE\nSAMANTHA\nGENESIS\nNOAH\nSEBASTIAN\nLIAM\nETHAN\nMATTHEW\nDANIEL\nJACOB\nMATEO\nALEXANDER\nJULIAN\nBENJAMIN\nLOGAN\nJAYDEN\nLUCAS\nAIDEN\nOLIVER\nDAVID\nAARON\nNATHAN\nDYLAN\nJAMES\nMICHAEL\nELIJAH\nANTHONY\nISAAC\nnamn\nAnna\nAnita\nAstrid\nAnnika\nAlice\nAmanda\nAnn\nAgneta\nAnette\nAlexandra\nAnneli\nAgnes\nAnne\nAlva\nAlma\nAngelica\nAlicia\nAnnie\nAnnelie\nAnn-Marie\nAnn-Charlotte\nAnnette\nAina\nAnn-Christin\nAndrea\nAnna-Karin\nAnna-Lena\nAnne-Marie\nAnnica\nAnn-Sofie\nAnn-Kristin\nAnn-Mari\nAnn-Britt\nAsta\nAli\nAhmed\nAnn-Louise\nAnja\nAnn-Christine\nAurora\nAngela\nAnna-Lisa\nAnn-Sofi\nAnnikki\nAmina\nAna\nAngelina\nAmelia\nAlina\nAmelie\nAnn-Charlott\nAntonia\nAnna-Maria\nAmalia\nAngelika\nAnn-Katrin\nAbdi\nAdele\nAnn-Margret\nAleksandra\nAnna-Greta\nAgnieszka\nAugusta\nAino\nAida\nAnny\nAisha\nAmal\nAmira\nAnna-Carin\nAnastasia\nAdina\nAnni\nAdriana\nAya\nAmy\nAnne-Charlotte\nAnna-Stina\nAbdullahi\nAdela\nAlfhild\nAhmad\nAda\nAgnetha\nAdÃ©le\nAlejandra\nAlbertina\nAlaa\nAlida\nAndrÃ©a\nAnders\nAlexander\nAndreas\nAxel\nArne\nAnton\nAdam\nAli\nArvid\nAlbin\nAlf\nAllan\nAhmed\nAlfred\nAndrÃ©\nAdrian\nAhmad\nAlbert\nAugust\nAlex\nAlvar\nArtur\nAlvin\nAntonio\nAntero\nAlgot\nArnold\nArthur\nAron\nAmir\nAgne\nAbdi\nAbdullah\nAlfons\nAbdul\nAnthony\nAdnan\nAbdullahi\nAndrÃ©as\nAbdirahman\nAbbas\nAssar\nAdolf\nAndrzej\nAndrew\nAlejandro\nAlan\nAmin\nAndres\nAlberto\nAlexis\nAri\nAmadeus\nAnas\nAlve\nAdel\nAziz\nAaron\nAbraham\nAbdulrahman\nAmer\nAmmar\nAlaa\nAleksander\nAngelo\nAleksandar\nAston\nAbdulkadir\nArmin\nAlrik\nAbbe\nAhmet\nArmas\nAndrÃ©s\nAngel\nAstor\nAkram\nAbd\nAntti\nAyman\nAnwar\nAndrei\nAbdallah\nAram\nAndre\nAmar\nAaa\nAttila\nAdem\nArian\nBirgitta\nBarbro\nBritt\nBerit\nBirgit\nBritt-Marie\nBritta\nBeatrice\nBrita\nBodil\nBarbara\nBeata\nBianca\nBritt-Mari\nBoel\nBetty\nBritt-Inger\nBella\nBerta\nBritt-Louise\nBerith\nBenita\nBelinda\nBonnie\nBrigitte\nBozena\nBelle\nBirthe\nBeatriz\nBente\nBjÃ¶rnsdotter\nBibbi\nBettina\nBirgitte\nBeate\nBritt Marie\nBritt Inger\nBibi\nBiljana\nBjÃ¶rg\nBlenda\nBushra\nBengtsdotter\nBent\nBeda\nBahar\nBritten\nBashir\nBayan\nBlanca\nBillie\nBitte\nBernice\nBertha\nBeatrix\nBeth\nBatoul\nBea\nBernadette\nBojan\nBeryl\nBorghild\nBerivan\nBerna\nBelma\nBertilsdotter\nBranka\nBasma\nBrith\nBlanche\nBerfin\nBlanka\nBernhardina\nBrenda\nBrigitta\nBosdotter\nBirgith\nBogumila\nBritt-Lis\nBengta\nBenedicte\nBim\nBrittmarie\nBan\nBich\nBerhane\nBojana\nBjÃ¶rk\nBo\nBaraa\nBengt\nBo\nBjÃ¶rn\nBertil\nBÃ¶rje\nBernt\nBror\nBirger\nBenjamin\nBenny\nBert\nBernhard\nBruno\nBerndt\nBilly\nBjarne\nBen\nBill\nBoris\nBilal\nBrian\nBengt-Ã…ke\nBerne\nBashir\nBerth\nBernard\nBassam\nBastian\nBob\nBengt-Olof\nBosse\nBogdan\nBashar\nBengt-GÃ¶ran\nBengt-Erik\nBrynolf\nBernth\nBent\nBobby\nBasel\nBirk\nBo-GÃ¶ran\nBoo\nBengt Ã…ke\nBruce\nBranko\nBuster\nBartosz\nBojan\nBerthold\nBerhane\nBengt-Arne\nBobo\nBonde\nBereket\nBarry\nBelal\nBernd\nBesim\nBabak\nBaran\nBaltzar\nBurhan\nBrandon\nBÃ¶rge\nBiniam\nBengt-Olov\nBryan\nBartlomiej\nBasem\nBin\nBahram\nBengt GÃ¶ran\nBenno\nBertel\nBajram\nBekim\nBrage\nBerat\nBasim\nBo GÃ¶ran\nBehnam\nBengt-Ove\nBjÃ¶rne\nBeppe\nBesnik\nBasil\nBenyamin\nBaker\nBahman\nChristina\nCecilia\nCarina\nCamilla\nCaroline\nCharlotte\nCharlotta\nCarolina\nChristine\nCarin\nClara\nCatharina\nCornelia\nCatarina\nCarola\nChristin\nChristel\nCristina\nCatrin\nCarmen\nCarolin\nCassandra\nCharlott\nClaudia\nCathrine\nCajsa\nCarita\nCeline\nCatherine\nCatrine\nClary\nChatarina\nCarla\nCathrin\nCelina\nCharlie\nCindy\nConstance\nCÃ©line\nClaire\nChrista\nCaisa\nCleo\nCarol\nConnie\nChris\nCatalina\nChanel\nChatrine\nCelia\nChloÃ©\nChelsea\nChloe\nCorinne\nCynthia\nCecilie\nCamila\nCristin\nCeleste\nChristiane\nChatrin\nCristine\nChantal\nCorina\nCasandra\nChanelle\nCarlsdotter\nChiara\nCarine\nCia\nCamille\nChristelle\nCicilia\nCordelia\nCarolyn\nCarole\nCherie\nCharina\nCilla\nChi\nCim\nClaesdotter\nCina\nCatrina\nClarissa\nCamelia\nCaterina\nCristel\nClaudine\nCaitlin\nCarl\nChrister\nChristian\nClaes\nChristoffer\nConny\nCharlie\nChristopher\nCasper\nCharles\nCurt\nClas\nCarlos\nChristofer\nCarl-Johan\nColin\nCristian\nClaes-GÃ¶ran\nCalle\nCrister\nCornelis\nCaspian\nChris\nCesar\nConrad\nCarl-Gustav\nCarl-Erik\nConstantin\nClarence\nCarl-Henrik\nCarsten\nCarl-Gustaf\nChristos\nClaudio\nCarl-Axel\nClaus\nCharbel\nCarl-Magnus\nCornelius\nCarl Johan\nCarl-Fredrik\nCarlo\nCaesar\nCristoffer\nCan\nCollin\nClas-GÃ¶ran\nCamilo\nCaspar\nClaude\nCarl-Olof\nCaj\nClifford\nClemens\nChristoph\nCarl-Eric\nCeasar\nCsaba\nChi\nCarl-Gunnar\nCliff\nCuong\nChristophe\nCarl-GÃ¶ran\nCasimir\nCameron\nCraig\nCatalin\nCarl-Ã…ke\nClaes GÃ¶ran\nCyril\nCzeslaw\nCurth\nCay\nCezary\nCedric\nCyrus\nCristopher\nCenneth\nCem\nClaes-HÃ¥kan\nCalvin\nCristofer\nCarl-Oscar\nConnie\nCai\nCarl Magnus\nCevin\nCarl-Anders\nChadi\nDoris\nDiana\nDagmar\nDagny\nDesirÃ©e\nDenise\nDaniela\nDaniella\nDel\nDisa\nDorotea\nDina\nDesirÃ©\nDaisy\nDe\nDanuta\nDorota\nDorothea\nDana\nDalia\nDanielle\nDÃ©sirÃ©e\nDesideria\nDesireÃ©\nDaga\nDolores\nDora\nDenice\nDaria\nDeborah\nDebora\nDorothy\nDania\nDragana\nDanijela\nDominika\nDragica\nDitte\nDesiree\nDima\nDalal\nDijana\nDahir\nDiane\nDilan\nDahlia\nDominique\nDanica\nDestiny\nDilara\nDeniz\nDonna\nDerya\nDimitra\nDavida\nDelia\nDonya\nDoaa\nDenize\nDaphne\nDawood\nDorrit\nDolly\nDunia\nDorthy\nDarya\nDilek\nDafina\nDelina\nDuaa\nDespina\nDenisa\nDunya\nDaniel\nDalila\nDonia\nDusanka\nDajana\nDawn\nDarin\nDorit\nDea\nDung\nDrita\nDa\nDesire\nDalya\nDagmara\nDanielsdotter\nDorina\nDaniel\nDavid\nDan\nDennis\nDick\nDouglas\nDag\nDante\nDonald\nDenis\nDidrik\nDragan\nDylan\nDariusz\nDanny\nDexter\nDimitrios\nDino\nDejan\nDamian\nDiego\nDawid\nDenny\nDominic\nDeniz\nDamir\nDominik\nDieter\nDevin\nDario\nDawit\nDarko\nDani\nDanilo\nDahir\nDarin\nDanial\nDean\nDanijel\nDusan\nDuc\nDamien\nDarius\nDe\nDimitri\nDawood\nDon\nDilan\nDiyar\nDana\nDirk\nDion\nDaoud\nDerek\nDenniz\nDominique\nDorian\nDalibor\nDavor\nDane\nDuy\nDinh\nDaud\nDung\nDara\nDiar\nDesmond\nDaniele\nDrago\nDumitru\nDriton\nDzevad\nDavide\nDong\nDamon\nDany\nDarian\nDimitris\nDjordje\nDarren\nDewin\nDetlef\nDardan\nDonny\nDuncan\nDemir\nDmitri\nDave\nDariush\nDavood\nElisabeth\nEva\nElisabet\nEmma\nElin\nElsa\nEmelie\nEmilia\nEbba\nEllen\nErika\nElla\nEvelina\nElvira\nEster\nElise\nEllinor\nEleonora\nEivor\nEwa\nElina\nEvy\nErica\nElsie\nEdith\nEmmy\nElizabeth\nEdit\nElena\nElna\nEleonor\nElsy\nElly\nElinor\nElvy\nEsther\nEllie\nEva-Lena\nEngla\nEmily\nEmilie\nEthel\nEvelyn\nElse\nElisa\nErna\nEila\nEva-Britt\nEmelia\nEira\nElenor\nElma\nElaine\nEleonore\nEstelle\nEugenia\nElzbieta\nEva-Lotta\nEva-Marie\nEmmie\nEmbla\nEsmeralda\nEmmelie\nEdla\nEija\nEmina\nEeva\nEstrid\nElvi\nEmy\nElse-Marie\nElli\nEnya\nEleni\nEriksdotter\nElida\nEllinore\nEllenor\nEjvor\nEwelina\nEmine\nEveline\nEva-Karin\nEliza\nEvelin\nEmeli\nElif\nEmmi\nEdina\nEva-Maria\nErik\nEmil\nEric\nEmanuel\nElias\nEdvin\nEvert\nEinar\nErnst\nElliot\nErland\nEdvard\nErling\nElis\nEdward\nEbbe\nEgon\nEskil\nEddie\nEvald\nEdwin\nElof\nEnar\nElton\nEugen\nEmilio\nElvis\nElvin\nEdgar\nElmer\nEsbjÃ¶rn\nEduardo\nEnrique\nErkki\nEnsio\nEmir\nEugÃ©n\nEmmanuel\nElliott\nEdmund\nElon\nEgil\nEdin\nEddy\nEino\nEje\nEero\nEjnar\nEsa\nErnesto\nEsko\nEnzo\nEmad\nEmin\nEilert\nEli\nEmrik\nEvan\nEnes\nEduard\nElving\nEmre\nElov\nElvir\nErich\nEve\nEsteban\nEfraim\nElia\nEbrahim\nErwin\nEddin\nEngelbrekt\nEhsan\nErhard\nEbbot\nEnver\nEl\nEnok\nErnest\nElie\nEllert\nErvin\nEldin\nElijah\nEsaias\nElwin\nEinari\nErick\nEivind\nFrida\nFelicia\nFanny\nFilippa\nFreja\nFredrika\nFatima\nFlorence\nFrideborg\nFatma\nFatemeh\nFarah\nFadumo\nFlora\nFia\nFreya\nFiona\nFatema\nFrances\nFrancesca\nFernanda\nFrancisca\nFarida\nFaten\nFatou\nFredrica\nFariba\nFartun\nFadia\nFranziska\nFaduma\nFatimah\nFahima\nFatime\nFlorentina\nFebe\nFaiza\nFideli\nFannie\nFelizia\nFrieda\nFredriksdotter\nFarhiya\nFarzaneh\nFelice\nFabiola\nFarideh\nFatuma\nFiliz\nFeven\nFaith\nFranciska\nFarhan\nFatme\nFardowsa\nFereshteh\nFadhil\nFadila\nFeride\nFaisal\nFina\nFouad\nFrancoise\nFarhiyo\nFarzana\nFathi\nFarhia\nFrancine\nFaisa\nFadime\nFerial\nFriederike\nFiras\nFrancis\nFreyja\nFatiha\nFarahnaz\nFikreta\nFaraj\nFranka\nFanni\nFatmire\nFawzi\nFlor\nFalah\nFaris\nFerida\nFlorina\nFreweini\nFehime\nFredrik\nFilip\nFolke\nFelix\nFrank\nFrans\nFabian\nFred\nFritz\nFredric\nFerdinand\nFadi\nFranz\nFernando\nFrancisco\nFreddy\nFinn\nFrancis\nFreddie\nFritiof\nFrej\nFelipe\nFiras\nFarhad\nFrederik\nFarid\nFaisal\nFouad\nFlorian\nFredrick\nFerenc\nFarhan\nFarah\nFriedrich\nFrancesco\nFuad\nFeras\nFritjof\nFares\nFlemming\nFrederick\nFridolf\nFaruk\nFaris\nFrode\nFlorin\nFahad\nFrancois\nFadil\nFranco\nFranciszek\nFadhil\nFederico\nFalah\nFilmon\nFingal\nFabio\nFawzi\nFrederic\nFiliph\nFatih\nFaraj\nFikret\nFarzad\nFadel\nFrits\nFaysal\nFranklin\nFarouk\nFirat\nFayez\nFride\nFrithiof\nFathi\nFatmir\nFaik\nFerhat\nFahed\nFehmi\nFahim\nFawaz\nFilipe\nFaiz\nFoad\nFahmi\nFurkan\nFerid\nFranciscus\nFrÃ©dÃ©ric\nFidel\nGunilla\nGun\nGunnel\nGerd\nGunvor\nGudrun\nGreta\nGabriella\nGunhild\nGertrud\nGunborg\nGun-Britt\nGerda\nGulli\nGisela\nGull-Britt\nGÃ¶ta\nGunn\nGunbritt\nGurli\nGabriela\nGullan\nGrace\nGÃ¶rel\nGabrielle\nGina\nGullvi\nGloria\nGunni\nGertie\nGull\nGrazyna\nGullbritt\nGry\nGit\nGunnarsdotter\nGÃ¤rd\nGordana\nGun-Marie\nGunn-Britt\nGitte\nGrethe\nGladys\nGill\nGeorgina\nGalina\nGhada\nGrete\nGunda\nGustava\nGabriele\nGunlÃ¶g\nGeorgia\nGÃ¶ransdotter\nGerty\nGunvi\nGullevi\nGhazal\nGunny\nGull-Maj\nGÃ¶rdis\nGraciela\nGith\nGretel\nGun-Mari\nGully\nGittan\nGenet\nGeraldine\nGiovanna\nGinger\nGeorgette\nGro\nGiulia\nGunnie\nGaby\nGuadalupe\nGeorge\nGun-Inger\nGita\nGerti\nGul\nGunnevi\nGilda\nGun-Lis\nGertrude\nGia\nGun Britt\nGemma\nGrethel\nGunnar\nGustav\nGÃ¶ran\nGustaf\nGÃ¶sta\nGeorg\nGabriel\nGÃ¶te\nGert\nGeorge\nGerhard\nGlenn\nGreger\nGottfrid\nGilbert\nGillis\nGeorgios\nGrzegorz\nGoran\nGordon\nGotthard\nGÃ¶rgen\nGeorges\nGideon\nGuy\nGiovanni\nGunder\nGary\nGusten\nGhassan\nGerry\nGuillermo\nGerard\nGregor\nGerth\nGudmund\nGustavo\nGÃ¼nter\nGÃ¶the\nGiuseppe\nGheorghe\nGÃ¼nther\nGabor\nGrim\nGlen\nGerald\nGregory\nGunnarsson\nGermund\nGonzalo\nGaston\nGino\nGholam\nGeir\nGhazi\nGunde\nGraham\nGyÃ¶rgy\nGhaith\nGunno\nGerardo\nGert-Ove\nGyula\nGabi\nGerman\nGeoffrey\nGuido\nGuled\nGunne\nGÃ¶khan\nGeorgi\nGiorgio\nGoitom\nGert-Inge\nGhulam\nGullmar\nGuillaume\nGavin\nGunvald\nGerardus\nGÃ¡bor\nGert-Ã…ke\nGhazwan\nGia\nGrant\nGerd\nGorm\nGaby\nGholamreza\nGarry\nHelena\nHanna\nHelen\nHelene\nHelÃ©n\nHarriet\nHilda\nHillevi\nHedvig\nHannah\nHelÃ©ne\nHilma\nHelga\nHannele\nHjÃ¶rdis\nHenrietta\nHeidi\nHedda\nHassan\nHildegard\nHussein\nHenny\nHildur\nHulda\nHanan\nHenriette\nHala\nHana\nHanne\nHasan\nHuda\nHiba\nHilkka\nHalina\nHalima\nHelmi\nHilde\nHolly\nHellevi\nHerta\nHailey\nHermine\nHelin\nHeli\nHeba\nHayat\nHamdi\nHansdotter\nHilja\nHelÃ©na\nHelle\nHawa\nHatice\nHong\nHani\nHelny\nHodan\nHelenÃ©\nHoda\nHanaa\nHÃ©lÃ©ne\nHavanna\nHuong\nHanin\nHafsa\nHabiba\nHedwig\nHelinÃ¤\nHelvi\nHenrika\nHee\nHellen\nHalimo\nHaji\nHamid\nHadi\nHind\nHelfrid\nHadil\nHa\nHope\nHertha\nHawo\nHibo\nHannelore\nHameed\nHaya\nHoa\nHouda\nHÃ¥kansdotter\nHans\nHenrik\nHÃ¥kan\nHugo\nHenry\nHarry\nHarald\nHampus\nHelge\nHjalmar\nHolger\nHerman\nHenning\nHassan\nHannes\nHussein\nHerbert\nHilding\nHelmer\nHasan\nHenric\nHamid\nHamza\nHasse\nHans-Erik\nHubert\nHeikki\nHadi\nHossein\nHannu\nHilmer\nHenri\nHarri\nHector\nHeinz\nHanna\nHabib\nHans-Olof\nHaris\nHussain\nHamed\nHani\nHardy\nHaidar\nHans-Ã…ke\nHermann\nHendrik\nHenryk\nHarley\nHaider\nHalvar\nHeinrich\nHans-GÃ¶ran\nHelmut\nHusein\nHashim\nHalvard\nHalil\nHussam\nHorst\nHÃ¼seyin\nHaitham\nHung\nHans-Olov\nHans Erik\nHernan\nHayder\nHaji\nHarun\nHazem\nHusam\nHisham\nHakim\nHaile\nHadar\nHoang\nHaydar\nHameed\nHakan\nHemming\nHenok\nHashem\nHartvig\nHumberto\nHamad\nHabtom\nHanad\nHhh\nHans Ã…ke\nHatem\nIngrid\nInger\nIda\nIrene\nIngegerd\nInga\nIngeborg\nIngela\nIngegÃ¤rd\nIsabelle\nIsabella\nIrÃ©ne\nIris\nInga-Lill\nIrma\nInez\nIsabell\nIngalill\nIsabel\nIng-Marie\nInga-Britt\nIng-Britt\nInes\nIlona\nIsa\nIbrahim\nIna\nIngvor\nIrina\nIzabella\nInkeri\nIrmeli\nIman\nIngbritt\nIng-Mari\nInga-Maj\nIrena\nIrja\nInga-Lisa\nIdun\nIlse\nIrenÃ©\nIzabelle\nInga-Lena\nIsolde\nIwona\nIvana\nIrÃ©n\nIzabela\nIsmail\nIngmarie\nIren\nIngMari\nIa\nIndra\nIza\nIsadora\nIngemo\nInge\nIzabell\nIsraa\nIva\nIsra\nIndira\nIrmgard\nIoana\nIlham\nIngar\nIfrah\nIbtisam\nIryna\nInna\nInga-Britta\nInga-Lis\nIsmael\nIldiko\nIda-Maria\nIssa\nIrmelin\nIdil\nImad\nIngemarsdotter\nIngert\nIvy\nInas\nIkram\nIoanna\nIngabritt\nIqra\nIvonne\nIngemar\nIngvar\nIvar\nInge\nIsak\nIvan\nIbrahim\nIngmar\nIsac\nIsmail\nIan\nIlmari\nIsaac\nIsidor\nIgor\nImad\nIssa\nIstvan\nIoannis\nIsmael\nIdris\nIsa\nImran\nIsmet\nImre\nIngvald\nIlyas\nIgnacio\nIoan\nIvo\nIssam\nIlias\nIshak\nIngolf\nIvica\nIslam\nIon\nImmanuel\nIlkka\nIrfan\nIlija\nIsam\nIsrael\nIhsan\nIb\nIsmo\nIhab\nIonut\nIyad\nIlir\nIngo\nIsse\nIngemund\nIwan\nIreneusz\nIman\nIlari\nIngeman\nIii\nIsaak\nIzet\nIlpo\nIlja\nIbraheem\nIulian\nIlhan\nIlia\nIvanov\nIzak\nIisakki\nIbrahem\nIlya\nIggy\nIshaq\nIlmar\nIlon\nIdriz\nIqbal\nIstvÃ¡n\nIrving\nIngbert\nIngevald\nIonel\nIraj\nIsaiah\nIosif\nIlie\nIve\nIain\nIskender\nJohanna\nJenny\nJulia\nJessica\nJosefin\nJosefine\nJeanette\nJennifer\nJennie\nJosefina\nJane\nJonna\nJoanna\nJosephine\nJasmine\nJanet\nJuni\nJudith\nJasmin\nJoline\nJill\nJulie\nJacqueline\nJanina\nJessika\nJudit\nJana\nJasmina\nJenni\nJaana\nJelena\nJolanta\nJuliana\nJoy\nJadwiga\nJohanne\nJustina\nJanette\nJune\nJamila\nJenna\nJean\nJuliette\nJeannette\nJannike\nJunie\nJustyna\nJamal\nJaqueline\nJanna\nJuno\nJoan\nJannica\nJessie\nJansdotter\nJoyce\nJeanne\nJohansdotter\nJolin\nJolie\nJulianna\nJama\nJunis\nJasim\nJasminka\nJabbar\nJade\nJuli\nJorunn\nJennica\nJannice\nJaneth\nJin\nJutta\nJing\nJolina\nJannika\nJackie\nJanni\nJuana\nJytte\nJonasdotter\nJovana\nJuliet\nJanine\nJolene\nJawad\nJunia\nJihan\nJung\nJohan\nJan\nJohn\nJonas\nJoakim\nJohannes\nJÃ¶rgen\nJonathan\nJesper\nJoel\nJens\nJimmy\nJakob\nJacob\nJohnny\nJosef\nJonny\nJuhani\nJonatan\nJack\nJan-Erik\nJames\nJulius\nJon\nJim\nJerry\nJoachim\nJan-Olof\nJoseph\nJulian\nJoacim\nJarl\nJean\nJerker\nJuan\nJari\nJan-Ã…ke\nJunior\nJosÃ©\nJimmie\nJamal\nJanne\nJuha\nJose\nJorge\nJan-Olov\nJan Erik\nJamie\nJoar\nJason\nJorma\nJavier\nJoshua\nJakub\nJarmo\nJerzy\nJozef\nJacek\nJohann\nJukka\nJan-Eric\nJani\nJamil\nJan-Ove\nJohny\nJaakko\nJÃ¼rgen\nJalal\nJanos\nJanusz\nJouni\nJawad\nJouko\nJaroslaw\nJan Olof\nJordan\nJan Ã…ke\nJasmin\nJustin\nJesus\nJÃ¶ns\nJulio\nJaime\nJeff\nJozsef\nJussi\nJosip\nJoe\nJacques\nJustus\nKristina\nKarin\nKerstin\nKatarina\nKarolina\nKristin\nKlara\nKajsa\nKatrin\nKarina\nKaarina\nKim\nKatharina\nKristine\nKatja\nKatarzyna\nKristiina\nKyllikki\nKersti\nKarolin\nKaroline\nKrystyna\nKate\nKarla\nKaren\nKaisa\nKirsti\nKatrine\nKatariina\nKhadija\nKatrina\nKirsten\nKelly\nKari\nKicki\nKamilla\nKirsi\nKatalin\nKetty\nKimberly\nKathrin\nKarola\nKatri\nKitty\nKaija\nKathrine\nKinga\nKamila\nKlaudia\nKatherine\nKhalid\nKornelia\nKjerstin\nKaterina\nKerttu\nKatriina\nKira\nKÃ¤the\nKathleen\nKia\nKaur\nKamal\nKhalil\nKatinka\nKhaled\nKarima\nKadhim\nKaroliina\nKareem\nKarim\nKarna\nKhadra\nKiara\nKarita\nKhalaf\nKatia\nKati\nKatie\nKobra\nKnutsdotter\nKathe\nKayla\nKirstine\nKristel\nKay\nKrista\nKarlsdotter\nKhadijeh\nKrisztina\nKkk\nKarl\nKjell\nKent\nKenneth\nKurt\nKrister\nKristian\nKnut\nKevin\nKlas\nKristoffer\nKim\nKaj\nKenth\nKennet\nKarl-Erik\nKristofer\nKalevi\nKalle\nKhaled\nKenny\nKasper\nKonrad\nKari\nKrzysztof\nKarim\nKhalid\nKarl-Johan\nKai\nKalervo\nKhalil\nKarl-Gustav\nKjell-Ã…ke\nKen\nKian\nKumar\nKamal\nKÃ¥re\nKamil\nKarl-Axel\nKonstantin\nKlaus\nKennert\nKarl Erik\nKonstantinos\nKenan\nKarl-Gunnar\nKeith\nKimmo\nKeijo\nKarol\nKaram\nKarl-Olof\nKlas-GÃ¶ran\nKemal\nKarl-Gustaf\nKay\nKareem\nKjell Ã…ke\nKarl-Ã…ke\nKacper\nKullervo\nKazimierz\nKarl-GÃ¶ran\nKennerth\nKarsten\nKauko\nKadhim\nKarl-Henrik\nKarl-Oskar\nKamel\nKaarlo\nKrystian\nKhan\nKid\nKhalaf\nKadir\nKidane\nKelvin\nKjell-Arne\nKjell-Ove\nKonny\nKarl Johan\nKamran\nKjell-Erik\nKewin\nKarl-Arne\nKerim\nKnud\nKarl-Magnus\nLinnÃ©a\nLena\nLinnea\nLouise\nLinda\nLovisa\nLisa\nLina\nLisbeth\nLilian\nLinn\nLilly\nLaila\nLillemor\nLiv\nLaura\nLotta\nLova\nLisbet\nLiselotte\nLucia\nLiselott\nLea\nLydia\nLiisa\nLeila\nLily\nLivia\nLise-Lotte\nLi\nLeia\nLeah\nLeena\nLise-Lott\nLo\nLykke\nLillian\nLuna\nLovis\nLeona\nLarsdotter\nLara\nLisette\nLill\nLana\nLiza\nLola\nLilja\nLee\nLisen\nLine\nLeonora\nLiz\nLouisa\nLeyla\nLis\nLizette\nLise\nLidia\nLejla\nLizzie\nLillie\nLia\nLotten\nLouice\nLuisa\nLynn\nLowa\nLiliana\nLorena\nLin\nLucy\nLayla\nLenita\nLove\nLou\nLili\nLilli\nLuz\nLene\nLjiljana\nLeonie\nLajla\nLuise\nLeen\nLinda-Marie\nLan\nLone\nLillan\nLarisa\nLars\nLennart\nLeif\nLinus\nLeo\nLudvig\nLucas\nLiam\nLukas\nLove\nLeon\nLars-Erik\nLudwig\nLeonard\nLars-GÃ¶ran\nLoke\nLars-Ã…ke\nLuis\nLars-Olof\nLeopold\nLevi\nLage\nLouis\nLasse\nLars-Gunnar\nLeonardo\nLee\nLowe\nLars Erik\nLukasz\nLars GÃ¶ran\nLillebror\nLorentz\nLoui\nLo\nLaszlo\nLars-Ove\nLars-Olov\nLouie\nLauri\nLars Ã…ke\nLeander\nLionel\nLars-Eric\nLennarth\nLars-Inge\nLuka\nLarry\nLÃ©on\nLennox\nLars Olof\nLuca\nLorenzo\nLiban\nLenny\nLion\nLaith\nLars Gunnar\nLeonel\nLuke\nLeandro\nLinnÃ©\nLeszek\nLamin\nLawrence\nLennie\nLoa\nLuciano\nLars-HÃ¥kan\nLewis\nLars-Johan\nLorenz\nLajos\nLatif\nLeonidas\nLars-Ola\nLennon\nLaban\nLuigi\nLong\nLave\nLias\nLeÃ³n\nLeslie\nLevin\nLars-Anders\nLex\nLazar\nLorens\nLambert\nMaria\nMargareta\nMarie\nMarianne\nMalin\nMonica\nMatilda\nMargaretha\nMaja\nMÃ¤rta\nMadeleine\nMona\nMagdalena\nMonika\nMaj\nMoa\nMarita\nMari\nMargit\nMartina\nMikaela\nMaud\nMaj-Britt\nMarina\nMarie-Louise\nMary\nMy\nMathilda\nMolly\nMadelene\nMia\nMariana\nMichelle\nMichaela\nMohamed\nMariann\nMarika\nMajken\nMarta\nMaya\nMarjatta\nMarlene\nMimmi\nMaj-Lis\nMelissa\nMiranda\nMinna\nMohammed\nMay\nMira\nMargot\nMiriam\nMariam\nMaryam\nMeja\nMarja\nMajvor\nMirjam\nMelina\nMaarit\nMÃ¤rtha\nMargret\nMargaret\nMarit\nMalgorzata\nMarielle\nMartha\nMina\nMelinda\nMargita\nMarion\nMarija\nMalva\nMilla\nMadelen\nMildred\nMajlis\nMercedes\nMicaela\nMariette\nMelanie\nMadelaine\nMirja\nMaija\nMohammad\nMari-Ann\nMai\nMalena\nMila\nMargareth\nMikael\nMagnus\nMartin\nMats\nMattias\nMichael\nMarcus\nMax\nMarkus\nMohamed\nMohammad\nMathias\nMohammed\nMorgan\nMalte\nMohamad\nMelker\nMelvin\nMÃ¥ns\nMÃ¥rten\nMustafa\nMicael\nMauritz\nMahmoud\nMaximilian\nMatti\nMilton\nMilo\nMuhammad\nManfred\nMichel\nManuel\nMarko\nMario\nMark\nMatias\nMio\nMatts\nMarco\nMelwin\nMika\nMahdi\nMarek\nMiguel\nMilan\nMehmet\nMarcin\nMickael\nMichal\nMarkku\nMatthias\nMarcel\nMehdi\nMuhammed\nMalcolm\nMatteus\nManne\nMarc\nMahamed\nMhd\nMarius\nMorris\nMostafa\nMatteo\nMohamud\nMattis\nMmm\nMaher\nMariusz\nMajid\nMartti\nMatthew\nMike\nMilad\nMille\nMaciej\nMilian\nMahmood\nMateusz\nMatheo\nMaximus\nMikko\nMohsen\nMusa\nMarian\nMauricio\nMuhamed\nMatz\nMarwan\nMd\nNina\nNathalie\nNora\nNatalie\nNova\nNellie\nNicole\nNelly\nNatalia\nNancy\nNadja\nNadia\nNanna\nNour\nNoomi\nNike\nNanny\nNoor\nNaemi\nNada\nNaima\nNinni\nNaomi\nNovalie\nNicolina\nNikki\nNadine\nNea\nNikita\nNatasha\nNoelle\nNikolina\nNgoc\nNur\nNorma\nNasrin\nNawal\nNatali\nNorah\nNilsdotter\nNilla\nNoelia\nNinnie\nNiki\nNeda\nNimo\nNatasa\nNesrin\nNelli\nNoura\nNajma\nNajah\nNahid\nNaya\nNarin\nNarges\nNoemi\nNajat\nNinja\nNor\nNasra\nNazanin\nNinna\nNiina\nNathalia\nNelia\nNermin\nNermina\nNomi\nNagham\nNahla\nNura\nNicola\nNatalija\nNadin\nNathali\nNicoline\nNoora\nNemi\nNaser\nNella\nNisa\nNabila\nNikola\nNell\nNatalja\nNorea\nNatacha\nNicki\nNicoleta\nNils\nNiklas\nNiclas\nNicklas\nNoah\nNoel\nNeo\nNicolas\nNatanael\nNicholas\nNils-Erik\nNikola\nNoa\nNabil\nNiels\nNaser\nNathan\nNathanael\nNelson\nNapoleon\nNikolaos\nNour\nNick\nNikolai\nNils-Olof\nNader\nNima\nNikolaj\nNikolaus\nNicolai\nNathaniel\nNenad\nNore\nNils Erik\nNils-Ã…ke\nNasser\nNoor\nNaim\nNorbert\nNemo\nNasir\nNino\nNur\nNikolas\nNico\nNils-GÃ¶ran\nNeil\nNestor\nNichlas\nNils-Gunnar\nNavid\nNermin\nNajib\nNisse\nNicolae\nNiilo\nNihad\nNinos\nNorton\nNicola\nNuur\nNazar\nNahom\nNgoc\nNatnael\nNaji\nNiko\nNorman\nNils-Olov\nNebojsa\nNilas\nNizar\nNilo\nNedim\nNedzad\nNikodemus\nNatan\nNabeel\nNikita\nNemanja\nNam\nNoak\nNidal\nNadim\nNils-Eric\nNuri\nNils Olof\nNadir\nNasim\nNikolay\nOlivia\nOlga\nOttilia\nOrvokki\nOmar\nOsman\nOfelia\nOlofsdotter\nOthilia\nOliwia\nOtilia\nOline\nOlena\nOksana\nOphelia\nOnerva\nOla\nOuti\nOmer\nOlivera\nOdette\nOili\nOthman\nOda\nOlympia\nOlovsdotter\nOana\nOxana\nOlly\nOlasdotter\nOona\nOsama\nOliva\nOk\nOriana\nOrsolya\nOanh\nOrawan\nOctavia\nOlina\nOlimpia\nOlive\nOrnina\nOlha\nOzra\nObaid\nOlava\nOlaug\nOrathai\nOday\nOttilie\nOmaima\nOrnella\nOula\nOdile\nOlu\nOssie\nOktavia\nOlea\nOddny\nOvesdotter\nOlgica\nOraha\nOleksandra\nÃ“sk\nOlegovna\nOudah\nOoo\nOnny\nOumie\nOdessa\nOurania\nOi\nOsk\nOskarsdotter\nOlesya\nOna\nOdelia\nOlinda\nOya\nOddveig\nOlesia\nOtti\nOttonie\nOmnia\nOttolina\nOlars\nOlla\nOscaria\nOscarsdotter\nOlof\nOskar\nOscar\nOlov\nOve\nOlle\nOliver\nOla\nOtto\nOmar\nOlavi\nOssian\nOwe\nOsman\nOle\nOlav\nOliwer\nOdd\nOsama\nOmer\nOrvar\nOmid\nOsvald\nOtis\nOrlando\nOlaf\nOlivier\nOthman\nOrhan\nOzzy\nOnni\nOdin\nOsmo\nOleg\nOden\nOskari\nOlli\nOlaus\nOwen\nOmran\nOswald\nOssi\nOsborn\nOsvaldo\nOlow\nOiva\nOday\nOlliver\nOnur\nOrion\nOddvar\nOusman\nOmed\nOleksandr\nOsborne\nOttar\nObada\nOvidiu\nOzan\nOctavio\nOliwier\nOdai\nOlofsson\nOsamah\nObaid\nOussama\nOktay\nOctavian\nObaida\nOgnjen\nOkan\nOssama\nOddbjÃ¶rn\nOswaldo\nOguzhan\nOusama\nOlafur\nOdal\nOrm\nOluf\nOumar\nOrla\nOrre\nObinna\nOdisho\nOred\nOudah\nOllie\nOtieno\nOlivÃ©r\nPia\nPernilla\nPetra\nPaulina\nPatricia\nPaula\nPauline\nPetronella\nPirjo\nPamela\nPirkko\nPÃ¤ivi\nPersdotter\nPaola\nPenny\nPhilippa\nPeggy\nPhuong\nPatrycja\nPilar\nParisa\nPetersdotter\nPauliina\nPolly\nParvin\nPerla\nPixie\nPÃ¤ivikki\nPernille\nPriscilla\nPaulin\nPaloma\nPaz\nPenelope\nPing\nPippi\nPanagiota\nPrincess\nPari\nParvaneh\nPolina\nPoppy\nPy\nPella\nPinar\nPearl\nPelin\nPim\nPi\nPhoebe\nPiroska\nPyret\nPriya\nParaskevi\nPranee\nPatrizia\nPiia\nPÃ¤rsdotter\nPatrice\nPegah\nPethra\nPÃ¤rla\nParis\nParwin\nPrecious\nPriyanka\nPia-Maria\nPetrea\nPia-Lena\nPerihan\nPuck\nPascale\nPaulette\nPatriksdotter\nPavlina\nPers\nPandora\nPetrine\nPayman\nParthena\nPhung\nPatience\nPola\nPantea\nPriscila\nPooja\nPiret\nPornthip\nPeri\nParveen\nPer\nPeter\nPatrik\nPaul\nPhilip\nPÃ¤r\nPontus\nPetter\nPierre\nPatrick\nPeder\nPer-Olof\nPer-Erik\nPatric\nPiotr\nPelle\nPekka\nPawel\nPer-Ã…ke\nPetri\nPetrus\nPer-Olov\nPercy\nPer-Arne\nPer-Anders\nPer-Ola\nPentti\nPer Olof\nPÃ¥l\nPablo\nPehr\nPedro\nPetteri\nPertti\nPauli\nPer Erik\nPatricio\nPascal\nPasi\nPavel\nPhilippe\nPetar\nPatryk\nPaavo\nPer-Gunnar\nPer-Ove\nPer Anders\nPer Arne\nPrzemyslaw\nPoul\nPer Ã…ke\nPer-Inge\nPanagiotis\nPrince\nPer-Eric\nPaolo\nPaulo\nPer Olov\nPerry\nPreben\nPer-Axel\nPer-Johan\nPetros\nPieter\nPredrag\nPether\nPhillip\nPaulus\nPer-GÃ¶ran\nPalle\nPer Ola\nPhilipp\nPutte\nPedram\nPer-Henrik\nPier\nParviz\nPer-HÃ¥kan\nPeo\nPal\nPeeter\nPer-Magnus\nPÃ©ter\nPÃ¤r-Ola\nPhoenix\nPietro\nPer Ove\nPetru\nPer Gunnar\nPa\nQasim\nQamar\nQuynh\nQi\nQing\nQader\nQian\nQendresa\nQuyen\nQin\nQueen\nQays\nQusay\nQuan\nQaali\nQadir\nQais\nQasem\nQiong\nQadro\nQali\nQadra\nQamile\nQue\nQizi\nQahtan\nQueenie\nQassim\nQun\nQaryaqos\nQui\nQui\nQiu\nQuinn\nQudsia\nQiao\nQaasim\nQutaiba\nQasin\nQianqian\nQaid\nQingqing\nQadijo\nQefsere\nQÃ«ndresa\nQuy\nQadan\nQadiijo\nQassem\nQadar\nQalif\nQabas\nQuoc\nQurat\nQarin\nQuang\nQayssar\nQiuhong\nQiuping\nQristina\nQiuyue\nQendrese\nQadriya\nQuman\nQuyÃªn\nQuresh\nQiang\nQamilla\nQuilla\nQu\nQim\nQuinta\nQerime\nQaidar\nQiuxia\nQusai\nQianru\nQossay\nQuennie\nQamer\nQaiss\nQia\nQussay\nQiuyan\nQingyun\nQina\nQianyu\nQianyi\nQvist\nQandi\nQuang\nQasim\nQuoc\nQais\nQasem\nQader\nQuentin\nQusay\nQuan\nQusai\nQadir\nQays\nQendrim\nQiang\nQuy\nQahtan\nQuintus\nQi\nQazim\nQadar\nQvintus\nQutaiba\nQassim\nQuincy\nQuyen\nQamil\nQaisar\nQuinn\nQasin\nQalid\nQing\nQaiser\nQqq\nQassem\nQussay\nQui\nQamar\nQian\nQerim\nQaid\nQurban\nQudratullah\nQahraman\nQin\nQayssar\nQuintin\nQaasim\nQussai\nQosai\nQaalid\nQuinton\nQaed\nQani\nQaiss\nQuinten\nQaryaqos\nQaddoori\nQadeer\nQuyet\nQalif\nQossay\nQiao\nQorban\nQaro\nQuynh\nQvitt\nQÃ«ndrim\nQorane\nQudrat\nQemajl\nQeis\nQodrat\nQrt\nQinghua\nQuimey\nQazi\nQayyum\nQahar\nQalinle\nQanbar\nQue\nQadri\nQuirino\nQuÃ¢n\nQaseem\nQasm\nQim\nQun\nQuno\nQuirinus\nRut\nRebecca\nRebecka\nRuth\nRose-Marie\nRagnhild\nRonja\nRegina\nRita\nRosa\nRigmor\nRose\nRosita\nRitva\nRenÃ©e\nRos-Marie\nRiitta\nRakel\nRamona\nRaija\nRana\nRuna\nRenate\nRaili\nRenata\nRagna\nRos-Mari\nRania\nRima\nRosalie\nRachel\nRasha\nReem\nRosanna\nRama\nRosmarie\nRosemarie\nRandi\nRahma\nRim\nRosie\nRenÃ©\nReidun\nRoxana\nRoza\nRawan\nRahaf\nRayan\nRose-Mari\nRosario\nRashid\nRosmari\nRaquel\nReneÃ©\nRuby\nRoya\nRahel\nRaghad\nRebeca\nRobin\nRabia\nRanda\nRazan\nRadmila\nRolfsdotter\nRosina\nRina\nRoberta\nRomina\nRauni\nRonya\nRocio\nRuta\nRafaela\nRauha\nRand\nRoula\nRuzica\nRani\nRozalia\nRahwa\nRaad\nRanim\nRode\nRuba\nRiham\nRanya\nReham\nRojin\nRajaa\nRobert\nRolf\nRoland\nRoger\nRobin\nRune\nRickard\nRasmus\nRichard\nRagnar\nRonny\nRikard\nReinhold\nRoy\nRuben\nRonnie\nReza\nRudolf\nRalf\nRonald\nRaymond\nRafael\nReine\nRoberto\nRalph\nRami\nRoine\nReidar\nRaimo\nRainer\nRagnvald\nRenÃ©\nRoman\nRicardo\nRutger\nReijo\nReino\nRoberth\nRafal\nRashid\nRuno\nRodrigo\nRahman\nRyan\nRaul\nRisto\nRicky\nRayan\nRaoul\nRunar\nRomeo\nRyszard\nRaed\nRamon\nRamadan\nRay\nRoyne\nRaad\nRufus\nRobbin\nRahim\nRamin\nRobel\nRauno\nRicard\nRamazan\nRene\nRoni\nRiad\nRex\nRaphael\nRio\nRustan\nRadoslaw\nRamzi\nRamiz\nRachid\nRenato\nRikhard\nReda\nRiver\nRein\nRocky\nRudi\nRick\nRasim\nRadwan\nRyno\nReddy\nRuslan\nSofia\nSara\nSusanne\nSiv\nSandra\nSofie\nSonja\nStina\nSigne\nSolveig\nSaga\nSigrid\nSusanna\nSvea\nSanna\nSiri\nSelma\nSylvia\nSarah\nStella\nSophie\nSabina\nSophia\nSofi\nSusann\nSally\nSimone\nStephanie\nSuzanne\nSusan\nSolvig\nSamira\nSinikka\nSonia\nSynnÃ¶ve\nSmilla\nSari\nSeija\nSilvia\nSiw\nSabine\nSigbritt\nSalma\nSirpa\nSvetlana\nSignhild\nSol\nSisko\nSirkka\nSaid\nSahar\nSibylla\nSolbritt\nSamantha\nSabrina\nSatu\nSanne\nSabah\nShirin\nSimona\nSylwia\nSahra\nSilva\nSuzana\nSanja\nStefanie\nSolweig\nSelina\nSiham\nStigsdotter\nSuzan\nSana\nSavannah\nSamar\nSaba\nSaleh\nSanela\nSham\nSylvi\nSol-Britt\nSandy\nShukri\nSaida\nSilvana\nSafa\nSnezana\nSaeed\nSamia\nSusana\nSaad\nSven\nStefan\nStig\nSimon\nSebastian\nSten\nSamuel\nSÃ¶ren\nSture\nSune\nStaffan\nSixten\nSigvard\nSvante\nSam\nSigurd\nStellan\nSven-Erik\nSigge\nSaid\nSami\nSamir\nSigfrid\nSonny\nSivert\nSeth\nSven-Olof\nSverker\nSakari\nSven-Ã…ke\nSaleh\nStephan\nSalah\nSteve\nStanislaw\nSaad\nSamer\nSeppo\nSteven\nSven Erik\nSalim\nSeyed\nSean\nStephen\nSalih\nSaeed\nScott\nStanley\nSÃ¶lve\nSalman\nSabah\nSeverin\nSalem\nSander\nSergio\nSalomon\nSven-Olov\nSeved\nSingh\nSalam\nSaman\nSet\nSakarias\nSven Olof\nSammy\nSandor\nSenad\nSlawomir\nSverre\nSayed\nSolomon\nSaif\nSabri\nSven Ã…ke\nSilas\nSasa\nSylve\nSyed\nSten-Ã…ke\nSantiago\nSylvester\nSelim\nSharif\nSead\nSinan\nShadi\nSulaiman\nSuleiman\nStyrbjÃ¶rn\nSlobodan\nTherese\nTherÃ©se\nTina\nTyra\nTeresia\nTove\nTilda\nThea\nTindra\nTilde\nTuva\nTerese\nThi\nTeresa\nTheresia\nTova\nTuulikki\nTora\nTanja\nTheres\nTuula\nTea\nTellervo\nThyra\nTheresa\nTarja\nTatiana\nTamara\nTorborg\nTerttu\nTara\nTheresÃ©\nTerÃ©se\nTitti\nTiina\nTekla\nThÃ©rÃ©se\nTess\nThÃ©rese\nTatjana\nThelma\nThilde\nTeres\nThilda\nTeodora\nTheodora\nTania\nThuy\nThu\nTuija\nTintin\nThanh\nTowe\nTaina\nTanya\nTherÃ©s\nTone\nTiffany\nTurid\nTua\nToini\nTilly\nTeija\nTorun\nTala\nThÃ©rÃ¨se\nTowa\nTaimi\nThindra\nThomasdotter\nTrang\nTuva-Li\nTilia\nTasnim\nTuulia\nTuyet\nThora\nTrine\nTalia\nTahereh\nTuwa\nTyyne\nTaha\nTereza\nThao\nTesfay\nTine\nTu\nTimea\nToma\nThomas\nTommy\nTomas\nTobias\nTorbjÃ¶rn\nTore\nTony\nTorsten\nTage\nTim\nTord\nTheodor\nTom\nTheo\nTure\nTeodor\nTor\nTed\nTorgny\nTapani\nTapio\nThor\nThure\nThore\nTomasz\nTimo\nToni\nTimmy\nThord\nThorbjÃ¶rn\nTristan\nTimothy\nTeo\nTorvald\nTommie\nTonny\nThommy\nTheodore\nThorsten\nToivo\nTruls\nTarek\nTeddy\nTorkel\nTaha\nTryggve\nTerje\nTiger\nTadeusz\nTommi\nTexas\nThanh\nTarik\nTorben\nThom\nTibor\nTorleif\nThobias\nTaisto\nThorvald\nTaher\nTyko\nTroy\nTyrone\nTomislav\nTuan\nTalal\nTahir\nTotte\nTauno\nTintin\nTareq\nTomi\nTeuvo\nTitus\nTaim\nThim\nTimmie\nTero\nTuve\nTino\nTor-BjÃ¶rn\nThony\nTuomo\nTuomas\nToma\nTarmo\nTedros\nTamas\nTesfay\nXimena\nXenia\nXuan\nXin\nXiao\nXia\nXue\nXi\nXiomara\nXhemile\nXiaoyan\nXiu\nXinyi\nXhevrije\nXhevahire\nXiang\nXena\nXiaohong\nXiaoli\nXiaojing\nXing\nXiaoyu\nXu\nXandra\nXian\nXantippa\nXinyue\nXiaomei\nXiaoying\nXinyu\nXhejlane\nXiaowen\nXiaoqin\nXiaoxia\nXueying\nXiaoyun\nXuemei\nXiaoqing\nXanthi\nXiaoling\nXiaolu\nXiaodan\nXiaofeng\nXheneta\nXinxin\nXiaoxiao\nXhezide\nXiuli\nXasan\nXun\nXiaohua\nXiaohui\nXiaomin\nXiaoPing\nXiaomeng\nXiaoting\nXuyen\nXiaoyi\nXaviera\nXiaojie\nXochitl\nXiaofang\nXiaolei\nXintong\nXiaolan\nXiwen\nXiaochen\nXiaoming\nXiaoqian\nXufe\nXiaohan\nXiuying\nXiaoxue\nXueli\nXinhua\nXinmei\nXhyla\nXinran\nXuÃ¢n\nXiaodong\nXuseen\nXiaojun\nXiaoqi\nXiaowei\nXara\nXinyan\nXiaozhen\nXiumei\nXiaoxi\nXieu\nXavier\nXander\nXerxes\nXuan\nXin\nXhevat\nXiang\nXiao\nXhavit\nXi\nXhevdet\nXu\nXhafer\nXaver\nXavi\nXiaojun\nXuong\nXhelal\nXing\nXhemajl\nXiaofeng\nXiaodong\nXenofon\nXiaoming\nXiong\nXheladin\nXabier\nXamse\nXasan\nXiaolong\nXiaowei\nXue\nXia\nXiaolei\nXian\nXinyu\nXiaoyu\nXuÃ¢n\nXun\nXuseen\nXhemail\nXiaoyong\nXiangdong\nXiangyu\nXuefeng\nXiaolin\nXiaofei\nXhavid\nXuejun\nXiaogang\nXhemal\nXiaohua\nXiaoyi\nXxx\nXawery\nXiaobo\nXiaohu\nXiaochen\nXingyu\nXhemshir\nXiaotian\nXiaobing\nXiaonan\nXiyu\nXiaobin\nXiaohui\nXose\nXiaoliang\nXenophon\nXinyi\nXiwen\nXinjun\nXassan\nXinyuan\nXudong\nXinghua\nXan\nXiaokai\nXamza\nXiaoyuan\nXufeng\nXiangyang\nXirui\nXiaoqi\nXuecheng\nXiaozhong\nXolani\nXiaoxiao\nXhabir\nXhevit\nYvonne\nYlva\nYasmin\nYasmine\nYvette\nYara\nYusuf\nYousif\nYing\nYasemin\nYoung\nYusra\nYrsa\nYolanda\nYordanos\nYousef\nYan\nYen\nYasmina\nYwonne\nYi\nYu\nYodit\nYassin\nYulia\nYasin\nYemane\nYildiz\nYalda\nYun\nYee\nYlwa\nYoussef\nYvonn\nYohannes\nYang\nYahya\nYue\nYousuf\nYana\nYousra\nYin\nYohana\nYohanna\nYuan\nYoun\nYyy\nYuliya\nYonas\nYasamin\nYasmeen\nYael\nYaseen\nYosra\nYagmur\nYlva-Li\nYamina\nYaren\nYeliz\nYoko\nYasir\nYa\nYacoub\nYuusuf\nYosan\nYvonny\nYanina\nYrla\nYasaman\nYaser\nYong\nYeter\nYlvali\nYorsalem\nYussuf\nYoon\nYasna\nYe\nYounus\nYuk\nYounis\nYosief\nYuki\nYaqoob\nYÃ¼ksel\nYosef\nYanet\nYelena\nYounan\nYasar\nYngve\nYusuf\nYousef\nYoussef\nYasin\nYousif\nYahya\nYosef\nYassin\nYonas\nYazan\nYaser\nYohannes\nYounes\nYasser\nYasir\nYrjÃ¶\nYacoub\nYemane\nYousuf\nYunus\nYahye\nYonis\nYamen\nYahia\nYoung\nYakob\nYves\nYaseen\nYaman\nYong\nYakup\nYonatan\nYounis\nYang\nYu\nYosief\nYusef\nYilmaz\nYones\nYussuf\nYacob\nYassine\nYi\nYasar\nYoel\nYassir\nYounus\nYan\nYuusuf\nYared\nYashar\nYmer\nYannick\nYafet\nYehya\nÃœmit\nYounan\nYuri\nYehia\nYyy\nYosuf\nYad\nYann\nYaqoob\nYaqub\nYosif\nYalda\nYury\nYakoub\nYaw\nYngvar\nYonan\nYavuz\nYohanes\nYoucef\nYigit\nYuan\nYacqub\nYamin\nYlli\nYakub\nYvon\nYonathan\nYounas\nYacine\nYossef\nYoda\nYohan\nYoussouf\nZahra\nZainab\nZandra\nZara\nZofia\nZeinab\nZoe\nZelda\nZahraa\nZeynep\nZina\nZarah\nZuzanna\nZehra\nZorica\nZsuzsanna\nZenita\nZoey\nZanna\nZohra\nZohreh\nZena\nZaynab\nZaida\nZakia\nZeina\nZaid\nZita\nZlata\nZamzam\nZeynab\nZaneta\nZana\nZdenka\nZoÃ«\nZora\nZoÃ©\nZoi\nZozan\nZaga\nZiba\nZeljka\nZilan\nZenobia\nZabina\nZuhra\nZeliha\nZuzana\nZaki\nZinah\nZahida\nZiad\nZelma\nZorka\nZuhair\nZinab\nZarina\nZekiye\nZenab\nZineb\nZaklina\nZinita\nZeineb\nZelal\nZerina\nZinaida\nZeyad\nZoya\nZenitha\nZineta\nZin\nZaina\nZakaria\nZenta\nZaineb\nZÃ¼beyde\nZeyneb\nZinat\nZubaida\nZhen\nZdzislawa\nZebib\nZahide\nZa\nZdravka\nZhanna\nZoila\nZumreta\nZaman\nZlatka\nZacharias\nZakaria\nZoran\nZackarias\nZbigniew\nZakarias\nZaid\nZebastian\nZiad\nZack\nZoltan\nZeljko\nZeb\nZaki\nZion\nZeke\nZlatko\nZlatan\nZaher\nZain\nZsolt\nZakariya\nZander\nZeki\nZana\nZuhair\nZdzislaw\nZeyad\nZeth\nZakariye\nZygmunt\nZdravko\nZenon\nZiyad\nZoltÃ¡n\nZein\nZia\nZijad\nZahid\nZigge\nZachary\nZeid\nZaman\nZarko\nZebulon\nZac\nZvonko\nZafer\nZahir\nZubair\nZvonimir\nZaim\nZuher\nZiggy\nZimon\nZdenko\nZakir\nZeeshan\nZerny\nZiya\nZakk\nZeray\nZivko\nZafar\nZach\nZuheir\nZaya\nZdenek\nZhi\nZoher\nZheng\nZid\nZekeriya\nZayd\nZekarias\nZyad\nZackaria\nZaia\nZak\nZidane\nZin\nZakarie\nZed\nZzz\nZacarias\nZivorad\nZuhir\nZydrunas\nZeru\nZidan\nBrycen\nOakley\nIsabel\nEstella\nEnoch\nNatasha\nBrynn\nJayde\nKyla\nSophie\nSterling\nSydney\nMarilyn\nAndrew\nEvangeline\nRoyce\nRebekah\nChristian\nLyric\nCristiano\nJewel\nIsla\nRandy\nBoone\nHamza\nPedro\nKaylee\nJasmin\nJulianne\nDeborah\nLuke\nDarius\nKarson\nGiuliana\nGianni\nBlair\nCallan\nAzariah\nCaleb\nAnniston\nJaylen\nBexley\nStephen\nAddilyn\nAmirah\nJoyce\nRoyalty\nNicholas\nElisabeth\nCarter\nFernanda\nRoland\nLouisa\nValerie\nWalker\nVaughn\nMaximilian\nMaddux\nCaroline\nMicheal\nKolton\nPaislee\nBraydon\nHarris\nQuentin\nWill\nLogan\nAvi\nLiliana\nRoman\nIan\nEmmitt\nDalton\nNancy\nAndi\nThalia\nAhmir\nPayton\nAlaina\nAubri\nDexter\nHassan\nDante\nKrish\nLeanna\nAmiya\nMicah\nAlonzo\nNoelle\nCorinne\nCarter\nNataly\nIngrid\nChase\nHeather\nHezekiah\nBoston\nAndres\nHenrik\nJericho\nZendaya\nRudy\nDuke\nArmando\nJayce\nBriar\nDaxton\nTrevor\nGracelyn\nAdelynn\nGraham\nRiaan\nForrest\nBrysen\nKelly\nJerome\nRosalie\nPrince\nZuri\nBrody\nJohnny\nMaison\nRayna\nSkyler\nKyree\nBraelyn\nTyler\nRonin\nAntonella\nHuxley\nLawrence\nEmelia\nDanny\nKolby\nEmiliano\nOwen\nPhillip\nMayson\nKayleigh\nJeremias\nGreyson\nThaddeus\nAli\nBristol\nSaige\nAlberto\nKai\nJeremiah\nIker\nKyra\nTristian\nBlaise\nMiller\nMae\nBryleigh\nAmir\nHaylee\nReina\nMax\nMelissa\nAshlyn\nJedidiah\nAngela\nSam\nAlden\nMoshe\nLachlan\nNathaly\nBrayden\nAnders\nDayana\nKennedi\nShawn\nAngelica\nGustavo\nCara\nAlayna\nJesus\nLondon\nFinley\nMaria\nNehemiah\nKase\nMason\nJosiah\nIshaan\nRamona\nMemphis\nChloe\nIvy\nCorey\nDavis\nEddie\nMadelynn\nEdgar\nSelah\nZaiden\nEden\nRaegan\nLaila\nAurelia\nAnya\nLeonidas\nEmily\nAnastasia\nKamdyn\nSophia\nBraylee\nDelaney\nHunter\nAnnika\nPrinceton\nWynter\nEmely\nMaya\nKarina\nTanner\nKaliyah\nBrixton\nMaci\nKhloe\nVihaan\nGenesis\nAriana\nDawson\nJolie\nBlaze\nTyson\nLena\nJett\nEmber\nAugustus\nKaren\nOscar\nDesiree\nElias\nKarim\nJulio\nRayan\nFlynn\nKinley\nLondyn\nDallas\nAmare\nAnabella\nMakayla\nConnor\nHeaven\nWillow\nKole\nAmina\nCelia\nEileen\nErika\nAlisha\nTroy\nAndrea\nDax\nAverie\nKonnor\nFatima\nJaelynn\nGeorgia\nJazmin\nAdelaide\nRegina\nCamilo\nDonald\nCallen\nRolando\nAmayah\nGabriela\nMarjorie\nAna\nHarry\nLilah\nTrent\nCharlie\nTori\nEzra\nZariah\nPorter\nEthan\nLennox\nCamden\nDelilah\nAaron\nKhalid\nBlaire\nAlexander\nFelipe\nLeonardo\nSaul\nSarah\nTaliyah\nAudrey\nRaelyn\nKaiden\nRomina\nAlessandro\nBrianna\nSylvie\nJoey\nEugene\nJane\nWillie\nKymani\nJune\nEmanuel\nJulieta\nJanelle\nFarrah\nLillie\nHayley\nChaim\nDestiny\nAdalyn\nEmory\nZane\nGianna\nMckinley\nLaylah\nPaula\nJair\nShiloh\nJamarion\nHarley\nDaleyza\nZainab\nIssac\nHanna\nYahir\nEvalyn\nValentina\nKing\nKevin\nCora\nMaximiliano\nMarcelo\nAlly\nAidan\nDamon\nIgnacio\nElliott\nMicah\nBeatrice\nJonah\nSeamus\nEnzo\nDana\nEmerson\nEmery\nNikolai\nJaime\nDamari\nAnsley\nMaia\nKalani\nRemington\nElyse\nBrooks\nMustafa\nLorelai\nSarai\nAlfonso\nJulius\nBella\nMaurice\nRomeo\nScarlett\nNathaniel\nJenna\nMadden\nAmya\nEsperanza\nAlejandra\nMadilyn\nTinley\nIris\nMelody\nNadia\nMadelyn\nRaiden\nFrankie\nLindsey\nDeacon\nPerla\nMeilani\nErica\nLaney\nDuncan\nClementine\nZackary\nKaleb\nStetson\nFelicity\nXimena\nMauricio\nEllen\nBodhi\nAisha\nKaydence\nMohammed\nSadie\nSeth\nLilian\nGavin\nLylah\nBrent\nAleena\nMaliyah\nOlivia\nRaylan\nRodney\nRemington\nNora\nClayton\nKeira\nVance\nSylas\nHayden\nEmmeline\nCristian\nHank\nCharles\nAyana\nMisael\nBailey\nAyden\nXavier\nKarla\nVincent\nSean\nKane\nCurtis\nGregory\nSamson\nAndre\nDanielle\nAngelique\nFranklin\nAdeline\nKohen\nSullivan\nDwayne\nRylie\nStephanie\nMadeleine\nKenley\nErik\nJoelle\nElisa\nAmeer\nIsabella\nMonica\nRaina\nKayden\nDavid\nReuben\nHarlan\nImani\nAnn\nJace\nKonner\nEsme\nLyric\nMila\nLouie\nOmari\nKaysen\nKashton\nNikolas\nKarsyn\nKash\nCesar\nJimmy\nMarisol\nSloane\nKyle\nDeclan\nDaniella\nSalvatore\nRyker\nLawson\nBobby\nAlijah\nAdonis\nChelsea\nJudah\nArian\nFox\nTiffany\nAdele\nAhmed\nCooper\nAlana\nWestin\nDakota\nNalani\nRocco\nAmanda\nKailyn\nKinslee\nCamdyn\nElise\nTucker\nAmelie\nAnthony\nBraxton\nVienna\nAllison\nCorbin\nDennis\nKayson\nMallory\nJennifer\nMaylee\nZoie\nNash\nStevie\nAngelo\nChanning\nSkye\nBronson\nCiara\nFinn\nMitchell\nVictoria\nMadisyn\nJackson\nCastiel\nHarrison\nAldo\nJad\nBeckett\nAlia\nAliana\nBennett\nMadalynn\nRyland\nKobe\nBonnie\nCalvin\nViviana\nGiovanna\nLevi\nJamari\nEllison\nHailee\nTrace\nGiana\nJessa\nRaul\nEmmet\nGibson\nDariel\nPhoebe\nRyan\nJournee\nEmmett\nXzavier\nGreta\nOliver\nDarren\nDemetrius\nVivienne\nNeymar\nMateo\nMalakai\nMarco\nYisroel\nMohamed\nCasey\nAddyson\nKeegan\nEmery\nLandry\nVincenzo\nHannah\nGannon\nAndy\nMaxwell\nDorothy\nYasmin\nAutumn\nMarlon\nIsabela\nCharleigh\nFoster\nBenjamin\nCarmelo\nEsteban\nBryson\nSierra\nZain\nTabitha\nPaulina\nBridger\nPaola\nFrances\nZayden\nAbram\nHouston\nGabrielle\nHeavenly\nSerena\nLangston\nRosemary\nIrene\nSteve\nEduardo\nZayne\nZariyah\nEzequiel\nNayeli\nChristine\nEsmeralda\nVeda\nRonald\nArielle\nCarson\nJames\nKali\nJaxon\nAlianna\nHelen\nLauryn\nJessie\nJadiel\nLilianna\nEvan\nJoziah\nJamie\nScott\nMariah\nLandon\nMarc\nHakeem\nDerrick\nMikael\nTatum\nKaylynn\nEsther\nFinnley\nAislinn\nSonny\nMaliah\nAnson\nRivka\nThea\nNatalie\nCamila\nSolomon\nRodrigo\nJensen\nNathalia\nJohnathan\nMalachi\nGiovanni\nKameron\nChristopher\nMillie\nAmiyah\nMya\nZoey\nJermaine\nShayla\nSergio\nQuinn\nFrancesca\nLucian\nBrayan\nAmaris\nCheyenne\nLeia\nUriel\nLacey\nVanessa\nTerrence\nMark\nQuincy\nNia\nRose\nKamila\nJamal\nKenna\nLeah\nHugo\nKellan\nAugustine\nMuhammad\nMaxton\nLochlan\nSariyah\nAddison\nGemma\nZechariah\nMalcolm\nAmari\nMarkus\nKenia\nKimber\nKeyla\nSantana\nAshley\nDouglas\nIvan\nKyson\nLiberty\nHayden\nBrittany\nBrooke\nCherish\nNicole\nLewis\nLaura\nKathleen\nNyla\nKaden\nLivia\nMiguel\nTate\nVera\nAustin\nCatalina\nLilith\nKylan\nRyleigh\nRamiro\nSkyla\nEmerson\nDrew\nAyleen\nArjun\nJunior\nWade\nTiana\nKelvin\nMarcus\nLouise\nLamar\nEdwin\nLuciano\nAshton\nKhaleesi\nDakota\nAleah\nKieran\nElian\nZavier\nMelina\nMiranda\nCoen\nPriscilla\nAngie\nDiego\nJason\nZelda\nLennon\nAydin\nMaisie\nFrida\nCasen\nJasiah\nLana\nRiley\nAlexandria\nRowan\nGideon\nArlo\nChaya\nKelsey\nMarquis\nSimone\nJanessa\nAllie\nRohan\nClark\nAlexandra\nMalia\nSantiago\nDaisy\nElaine\nJuliet\nLeonard\nAlan\nAryana\nSantino\nRuby\nNickolas\nMilana\nCoraline\nMia\nEden\nDash\nMathias\nAlexa\nJacqueline\nCarla\nAvery\nTatiana\nJefferson\nNixon\nLilyanna\nAlaya\nMilo\nJacob\nMadison\nRenata\nCataleya\nBruno\nLiv\nEllianna\nBraelynn\nCynthia\nAlexis\nCharley\nMarley\nAngel\nWaylon\nWinston\nEmmy\nPeyton\nKimberly\nTinsley\nJacoby\nFord\nClyde\nLillianna\nWalter\nQuinn\nArthur\nAlani\nRaymond\nColin\nKarter\nBrenda\nDraven\nBailee\nCali\nHattie\nNathan\nCason\nMabel\nPaul\nAdalynn\nSalma\nKatie\nNala\nBrennan\nMarshall\nMaximo\nLeon\nSutton\nZander\nMariana\nWarren\nEliezer\nYosef\nRocky\nRachel\nBen\nPaisley\nAngelina\nMagnolia\nLennon\nKira\nMarvin\nJamar\nJohanna\nIsabelle\nIsrael\nBraiden\nCalliope\nLeyla\nPaityn\nGabriel\nBriella\nHailey\nLucille\nJoslyn\nCasey\nElliot\nKingston\nKaison\nRuben\nJonathon\nCayden\nNorah\nJaycee\nJulianna\nAveri\nArianna\nRiya\nWilson\nBriley\nMaeve\nCarly\nMichael\nAlvin\nEmilia\nJemma\nBrantlee\nLily\nLondon\nDarwin\nGus\nZara\nEllie\nJonathan\nJazlyn\nAntonio\nGael\nAdley\nBlakely\nWestley\nPhoenix\nBrylee\nChandler\nAliza\nArmani\nAshlynn\nKolten\nBriana\nLuis\nJordan\nLance\nKareem\nJairo\nThatcher\nRene\nLandyn\nRowen\nElaina\nHeath\nGracie\nKaylin\nAlejandro\nKara\nOtis\nAzaria\nHadleigh\nBrock\nPaloma\nAnna\nNicolas\nKarlee\nGrace\nJulian\nDustin\nPeyton\nAliya\nAlessia\nZoe\nMarley\nShepherd\nTripp\nNiko\nAnnalise\nAria\nAlyssa\nBrenden\nMaxim\nKinsley\nLarry\nAnne\nKyleigh\nZayn\nShaun\nKamden\nParker\nRogelio\nRobert\nMckenna\nEmerie\nPeter\nIzabella\nArely\nAniyah\nApril\nEaston\nKyrie\nAriyah\nBlake\nHolland\nTrey\nJayleen\nAstrid\nStanley\nAlexis\nVictor\nMohammad\nLilyana\nThomas\nEloise\nEllis\nJordan\nMakenna\nSantos\nBranson\nKamryn\nCassidy\nJack\nKristian\nJaylee\nJay\nJaxen\nIsaiah\nJaxson\nEvie\nNola\nAtticus\nRiver\nDane\nJudson\nMakai\nSamara\nJasmine\nLucia\nCruz\nAnnabel\nReyansh\nSincere\nBrynlee\nJordyn\nJabari\nReese\nMarcos\nMyah\nAriya\nSky\nApollo\nSamantha\nAlivia\nAri\nCallum\nJillian\nLila\nMary\nMariam\nEstrella\nByron\nSutton\nMaddox\nNoe\nLauren\nRay\nHolly\nLizbeth\nJeremy\nDamien\nImmanuel\nAubrie\nAnalia\nKynlee\nColton\nAliyah\nMercy\nEva\nJeffrey\nZaria\nSariah\nJose\nRhys\nAdaline\nCash\nSusan\nBrenna\nRaquel\nGarrett\nAinsley\nMiah\nTitan\nHector\nAlec\nMoriah\nSiena\nEverleigh\nFernando\nLeighton\nHalle\nKenneth\nDaniela\nJaylene\nGia\nTalia\nHunter\nAlexzander\nPatricia\nAmia\nAlyson\nDillon\nGrady\nEmersyn\nRory\nKeenan\nTegan\nAri\nCecelia\nSavannah\nJasper\nKalel\nKailey\nAlison\nKathryn\nMaleah\nMatteo\nMarlee\nSage\nCamille\nMusa\nNathalie\nLiana\nBruce\nIsmael\nKailee\nPrincess\nMack\nTrinity\nDalary\nAlex\nJustin\nAlyvia\nEvelynn\nTerry\nJayda\nElisha\nVicente\nRoger\nHarley\nDemi\nUrijah\nLeslie\nHarmony\nGilbert\nSawyer\nJazmine\nKarlie\nAmani\nIvory\nEdward\nBo\nFiona\nPaige\nJase\nAbraham\nGunnar\nAlistair\nVivaan\nZion\nErin\nDrake\nAileen\nMilania\nLeo\nNico\nLilliana\nFabian\nMichelle\nMatthew\nDominick\nMeredith\nLainey\nKiera\nLea\nGwendolyn\nAiden\nRey\nKensley\nCarolina\nCain\nAlayah\nIbrahim\nChad\nYareli\nMonroe\nAranza\nOphelia\nAmos\nLeif\nAnahi\nBradley\nMolly\nEmilio\nGreysen\nWyatt\nMario\nKallie\nZion\nAubrielle\nKeagan\nNina\nBrantley\nKendall\nQuinton\nElora\nJohan\nLuz\nMakenzie\nAlina\nSebastian\nReginald\nCourtney\nAriel\nWinter\nHarlow\nXander\nCayson\nConner\nKylee\nSara\nYusuf\nHarold\nLorelei\nLee\nMessiah\nWhitney\nSofia\nRyder\nItzayana\nKnox\nAnnabella\nKeanu\nJohn\nMarianna\nAnton\nAdrianna\nJax\nCamron\nLillian\nKaylani\nGracelynn\nBrayson\nJosie\nLucas\nRemy\nJayden\nAurora\nGiovani\nHope\nKamari\nErnesto\nAdriel\nJuliana\nBraden\nDylan\nScarlet\nKayla\nRuth\nSawyer\nDavina\nEnrique\nJuan\nRebecca\nJaniyah\nMichaela\nEstelle\nLeilani\nAdelyn\nCatherine\nEli\nMadyson\nWesley\nCharli\nTeagan\nSavanna\nMadilynn\nJorge\nAugust\nKylie\nMilan\nBrentley\nStefan\nJavon\nChristina\nJaxton\nCrosby\nCrew\nCaylee\nMavis\nTy\nJessie\nHarmoni\nBrielle\nTerrell\nJuliette\nBrooklynn\nNoa\nAlice\nJayson\nAriella\nAnnalee\nMyles\nSkylar\nLyla\nRylan\nToby\nAce\nPiper\nDaniel\nDayton\nAubree\nMalaysia\nPenelope\nAmaya\nCade\nCole\nFaith\nAmalia\nAlma\nLayton\nSkyler\nParis\nGauge\nMikaela\nRowan\nArabella\nStella\nVeronica\nSteven\nMelanie\nGerald\nOrion\nLucca\nAbigail\nElsie\nKenzie\nEric\nLuca\nAryanna\nFinley\nConor\nJamison\nMegan\nCameron\nJoy\nColeman\nChandler\nJoe\nLydia\nHudson\nSilas\nNathanael\nWilliam\nTaylor\nHarper\nJoselyn\nCeleste\nBenton\nOdin\nHarper\nHadassah\nPoppy\nErick\nEason\nEliseo\nYehuda\nMerrick\nCanaan\nKristina\nMckenzie\nTheodore\nRicardo\nRoberto\nHugh\nDevon\nCase\nCarmen\nLucy\nMalaya\nJulissa\nRylee\nBilly\nRiley\nJaden\nMaximus\nDarian\nGuadalupe\nPaxton\nCohen\nArden\nTessa\nCamryn\nRhea\nElena\nClaire\nBentley\nBodie\nMatias\nMyla\nScarlette\nIra\nJoaquin\nAxel\nGerardo\nAva\nCarl\nSabrina\nDominic\nLeonel\nRoyal\nJake\nJayla\nBrecken\nAntonia\nRonan\nMina\nHarleigh\nAngel\nTadeo\nMira\nMorgan\nWayne\nLyra\nKassidy\nJayden\nLeland\nCamilla\nAdrienne\nMartin\nDanna\nJameson\nFinnegan\nJonas\nJoanna\nDean\nKarter\nMiracle\nKadence\nSaylor\nNaomi\nLorenzo\nTomas\nWesson\nYaretzi\nRafael\nZaniyah\nKehlani\nJagger\nMelany\nLanden\nAddisyn\nNevaeh\nCadence\nBrooklyn\nOakley\nKate\nAnika\nKaia\nDallas\nRussell\nKade\nHaven\nKylo\nAlvaro\nYahya\nBrady\nMoses\nSoren\nMargot\nMagnus\nClare\nLexie\nKendall\nRex\nEverly\nIsaac\nAxl\nSelena\nAxton\nJaylah\nMadeline\nJoel\nJeffery\nAvalynn\nKody\nEmmanuel\nCarlee\nArya\nNovalee\nBlaine\nBentlee\nLola\nLeighton\nJamir\nCarolyn\nMilani\nColette\nEzekiel\nAhmad\nAiyana\nBraeden\nEmmaline\nOlive\nReese\nJaylynn\nBrandon\nAspen\nNasir\nIzaiah\nJayceon\nValentin\nHelena\nZachariah\nAlena\nJavion\nKatalina\nWilla\nAda\nRosie\nAvianna\nMiles\nMaren\nAzariah\nFranco\nPayton\nSienna\nValentino\nJon\nBrett\nKenya\nMaryam\nSage\nDerek\nSerenity\nFrank\nPresley\nMarissa\nKorbin\nColt\nRoyal\nMarie\nAniya\nRemy\nBode\nBria\nJesse\nJade\nRylan\nNova\nGrant\nHallie\nYousef\nRhett\nKaiya\nBethany\nElliott\nMekhi\nBryce\nAllyson\nLaurel\nBarrett\nDominik\nRemi\nJustice\nKaelyn\nConrad\nNolan\nRoselyn\nAvery\nJamie\nRonnie\nJared\nTrenton\nSkylar\nCarlos\nZachary\nAlaia\nClay\nLilia\nEdith\nWilder\nJavier\nWendy\nShane\nSamuel\nHaley\nJosue\nMacy\nKassandra\nCaiden\nDimitri\nKairi\nJerry\nJada\nAmber\nKailani\nJulia\nBenicio\nCallie\nMara\nCory\nJessica\nAviana\nCassius\nMiriam\nLyle\nRayden\nJoshua\nTurner\nCassandra\nMikayla\nZyaire\nMatthias\nTalon\nLiam\nZeke\nChris\nOtto\nBraylon\nErnest\nEmory\nGloria\nCharlee\nArcher\nNoel\nTitus\nLayla\nKannon\nHarvey\nJocelyn\nEliana\nKeaton\nAnabelle\nCairo\nHadley\nAddilynn\nElijah\nAllan\nFisher\nMyra\nAubriella\nReid\nLinda\nBelle\nClarissa\nWren\nAmy\nLouis\nMiya\nAthena\nTheo\nAriel\nAdilynn\nBarbara\nLegend\nRaphael\nVivian\nElin\nAlannah\nTristan\nJana\nAlfred\nAnaya\nSylvia\nHenley\nSasha\nGordon\nTristen\nTatum\nTobias\nLionel\nBriggs\nZaylee\nRory\nCannon\nEvelyn\nCrystal\nAryan\nHayes\nVan\nIsaias\nKyler\nBrendan\nLeandro\nEmilee\nKori\nPierce\nKaylie\nPatrick\nElliot\nCraig\nElle\nSamir\nFrancis\nAgustin\nJaliyah\nMargaret\nReed\nLexi\nZaire\nJuniper\nDulce\nGenevieve\nOmar\nAlbert\nKiana\nLuna\nEverett\nCody\nColby\nGalilea\nNelson\nItzel\nRayne\nElliana\nMaddison\nLilly\nKingsley\nSalvador\nAriadne\nReagan\nHoward\nMaverick\nLogan\nMariyah\nElianna\nCullen\nAres\nLane\nMajor\nTeresa\nBryant\nRidge\nReece\nDario\nLayne\nKai\nDamian\nNatalia\nOrlando\nIliana\nTony\nGraysen\nDeandre\nLukas\nCyrus\nAriah\nTimothy\nGary\nLeila\nMonserrat\nCollin\nVirginia\nBaylor\nJulie\nJustice\nSloan\nKatherine\nChana\nKellen\nAlfredo\nDiana\nBrian\nAlessandra\nBrinley\nKhalil\nAudrina\nCharlotte\nAlanna\nAlexia\nHolden\nGeorge\nJimena\nKennedy\nHazel\nAbel\nAylin\nAdelina\nLincoln\nMelvin\nNoor\nFreya\nMartha\nFrederick\nViolet\nCeline\nDangelo\nBelen\nAvah\nDavion\nKaya\nShiloh\nAsa\nChance\nDavian\nJakob\nBraylen\nDesmond\nAmira\nJustus\nLeona\nRoy\nAron\nBeckham\nAtlas\nNaya\nPablo\nKaitlyn\nRalph\nTaylor\nRosalyn\nNylah\nLeroy\nArmani\nKian\nWeston\nKoda\nRicky\nGwen\nPhilip\nJalen\nCharlie\nJude\nShelby\nUlises\nMontserrat\nJolene\nAchilles\nGabriella\nAlicia\nUriah\nGriffin\nMilan\nDenver\nKora\nKendra\nEllis\nAarav\nCollins\nAdriana\nMaggie\nDylan\nMackenzie\nDevin\nHeidi\nBowen\nVada\nSandra\nGrey\nEliza\nTravis\nKye\nFaye\nCedric\nAnakin\nTommy\nAnnie\nCaden\nRamon\nAaliyah\nMalik\nZaid\nBaylee\nCecilia\nEmmalyn\nEmma\nAitana\nLennox\nEleanor\nLina\nReign\nMadalyn\nAdrian\nRaelynn\nAmelia\nMathew\nSimon\nEdison\nMarina\nGage\nElla\nPreston\nGiselle\nAya\nAdam\nLara\nRosa\nFelix\nAilani\nAbdullah\nClaudia\nSharon\nJaiden\nDorian\nAlonso\nElizabeth\nLuciana\nAbril\nMatilda\nDominique\nCreed\nGiancarlo\nRyann\nBreanna\nGuillermo\nHana\nAdan\nBryan\nZahra\nGrayson\nKasen\nBlake\nReyna\nKiara\nNoemi\nRichard\nAbby\nAbdiel\nKamryn\nAyla\nJourney\nValeria\nClara\nRiver\nEve\nIvanna\nJaziel\nGunner\nDarrell\nFletcher\nAlondra\nMarleigh\nBianca\nDonovan\nLailah\nRyan\nLuka\nMarcel\nChanel\nAnnabelle\nBrodie\nJudith\nElsa\nAadhya\nJulien\nSpencer\nParker\nKendrick\nAdrien\nFrancisco\nKenny\nHenry\nDanica\nJazlynn\nEmmalynn\nAubrey\nEphraim\nJosephine\nCameron\nManuel\nKristopher\nThiago\nRaven\nBenson\nHarlee\nHendrix\nHadlee\nAyaan\nAllen\nColten\nBridget\nBeau\nEmmie\nLandry\nKatelyn\nMorgan\nTerrance\nAsher\nEmilie\nAmara\nPhoenix\nKillian\nKason\nMoises\nAmari\nJoseph\nAden\nSaoirse\nNoah\nTenley\nKeith\nLisa\nJaelyn\nAzalea\nAnderson\nLia\nJordy\nNeil\nDahlia\nMaxine\nPenny\nMeadow\nYamileth\nArturo\nDaphne\nMacie\nSummer\nMilena\nPearl"
  },
  {
    "path": "ML/Projects/text_generation_babynames/data/shakespeare_larger.txt",
    "content": "First Citizen:\nBefore we proceed any further, hear me speak.\n\nAll:\nSpeak, speak.\n\nFirst Citizen:\nYou are all resolved rather to die than to famish?\n\nAll:\nResolved. resolved.\n\nFirst Citizen:\nFirst, you know Caius Marcius is chief enemy to the people.\n\nAll:\nWe know't, we know't.\n\nFirst Citizen:\nLet us kill him, and we'll have corn at our own price.\nIs't a verdict?\n\nAll:\nNo more talking on't; let it be done: away, away!\n\nSecond Citizen:\nOne word, good citizens.\n\nFirst Citizen:\nWe are accounted poor citizens, the patricians good.\nWhat authority surfeits on would relieve us: if they\nwould yield us but the superfluity, while it were\nwholesome, we might guess they relieved us humanely;\nbut they think we are too dear: the leanness that\nafflicts us, the object of our misery, is as an\ninventory to particularise their abundance; our\nsufferance is a gain to them Let us revenge this with\nour pikes, ere we become rakes: for the gods know I\nspeak this in hunger for bread, not in thirst for revenge.\n\nSecond Citizen:\nWould you proceed especially against Caius Marcius?\n\nAll:\nAgainst him first: he's a very dog to the commonalty.\n\nSecond Citizen:\nConsider you what services he has done for his country?\n\nFirst Citizen:\nVery well; and could be content to give him good\nreport fort, but that he pays himself with being proud.\n\nSecond Citizen:\nNay, but speak not maliciously.\n\nFirst Citizen:\nI say unto you, what he hath done famously, he did\nit to that end: though soft-conscienced men can be\ncontent to say it was for his country he did it to\nplease his mother and to be partly proud; which he\nis, even till the altitude of his virtue.\n\nSecond Citizen:\nWhat he cannot help in his nature, you account a\nvice in him. You must in no way say he is covetous.\n\nFirst Citizen:\nIf I must not, I need not be barren of accusations;\nhe hath faults, with surplus, to tire in repetition.\nWhat shouts are these? The other side o' the city\nis risen: why stay we prating here? to the Capitol!\n\nAll:\nCome, come.\n\nFirst Citizen:\nSoft! who comes here?\n\nSecond Citizen:\nWorthy Menenius Agrippa; one that hath always loved\nthe people.\n\nFirst Citizen:\nHe's one honest enough: would all the rest were so!\n\nMENENIUS:\nWhat work's, my countrymen, in hand? where go you\nWith bats and clubs? The matter? speak, I pray you.\n\nFirst Citizen:\nOur business is not unknown to the senate; they have\nhad inkling this fortnight what we intend to do,\nwhich now we'll show 'em in deeds. They say poor\nsuitors have strong breaths: they shall know we\nhave strong arms too.\n\nMENENIUS:\nWhy, masters, my good friends, mine honest neighbours,\nWill you undo yourselves?\n\nFirst Citizen:\nWe cannot, sir, we are undone already.\n\nMENENIUS:\nI tell you, friends, most charitable care\nHave the patricians of you. For your wants,\nYour suffering in this dearth, you may as well\nStrike at the heaven with your staves as lift them\nAgainst the Roman state, whose course will on\nThe way it takes, cracking ten thousand curbs\nOf more strong link asunder than can ever\nAppear in your impediment. For the dearth,\nThe gods, not the patricians, make it, and\nYour knees to them, not arms, must help. Alack,\nYou are transported by calamity\nThither where more attends you, and you slander\nThe helms o' the state, who care for you like fathers,\nWhen you curse them as enemies.\n\nFirst Citizen:\nCare for us! True, indeed! They ne'er cared for us\nyet: suffer us to famish, and their store-houses\ncrammed with grain; make edicts for usury, to\nsupport usurers; repeal daily any wholesome act\nestablished against the rich, and provide more\npiercing statutes daily, to chain up and restrain\nthe poor. If the wars eat us not up, they will; and\nthere's all the love they bear us.\n\nMENENIUS:\nEither you must\nConfess yourselves wondrous malicious,\nOr be accused of folly. I shall tell you\nA pretty tale: it may be you have heard it;\nBut, since it serves my purpose, I will venture\nTo stale 't a little more.\n\nFirst Citizen:\nWell, I'll hear it, sir: yet you must not think to\nfob off our disgrace with a tale: but, an 't please\nyou, deliver.\n\nMENENIUS:\nThere was a time when all the body's members\nRebell'd against the belly, thus accused it:\nThat only like a gulf it did remain\nI' the midst o' the body, idle and unactive,\nStill cupboarding the viand, never bearing\nLike labour with the rest, where the other instruments\nDid see and hear, devise, instruct, walk, feel,\nAnd, mutually participate, did minister\nUnto the appetite and affection common\nOf the whole body. The belly answer'd--\n\nFirst Citizen:\nWell, sir, what answer made the belly?\n\nMENENIUS:\nSir, I shall tell you. With a kind of smile,\nWhich ne'er came from the lungs, but even thus--\nFor, look you, I may make the belly smile\nAs well as speak--it tauntingly replied\nTo the discontented members, the mutinous parts\nThat envied his receipt; even so most fitly\nAs you malign our senators for that\nThey are not such as you.\n\nFirst Citizen:\nYour belly's answer? What!\nThe kingly-crowned head, the vigilant eye,\nThe counsellor heart, the arm our soldier,\nOur steed the leg, the tongue our trumpeter.\nWith other muniments and petty helps\nIn this our fabric, if that they--\n\nMENENIUS:\nWhat then?\n'Fore me, this fellow speaks! What then? what then?\n\nFirst Citizen:\nShould by the cormorant belly be restrain'd,\nWho is the sink o' the body,--\n\nMENENIUS:\nWell, what then?\n\nFirst Citizen:\nThe former agents, if they did complain,\nWhat could the belly answer?\n\nMENENIUS:\nI will tell you\nIf you'll bestow a small--of what you have little--\nPatience awhile, you'll hear the belly's answer.\n\nFirst Citizen:\nYe're long about it.\n\nMENENIUS:\nNote me this, good friend;\nYour most grave belly was deliberate,\nNot rash like his accusers, and thus answer'd:\n'True is it, my incorporate friends,' quoth he,\n'That I receive the general food at first,\nWhich you do live upon; and fit it is,\nBecause I am the store-house and the shop\nOf the whole body: but, if you do remember,\nI send it through the rivers of your blood,\nEven to the court, the heart, to the seat o' the brain;\nAnd, through the cranks and offices of man,\nThe strongest nerves and small inferior veins\nFrom me receive that natural competency\nWhereby they live: and though that all at once,\nYou, my good friends,'--this says the belly, mark me,--\n\nFirst Citizen:\nAy, sir; well, well.\n\nMENENIUS:\n'Though all at once cannot\nSee what I do deliver out to each,\nYet I can make my audit up, that all\nFrom me do back receive the flour of all,\nAnd leave me but the bran.' What say you to't?\n\nFirst Citizen:\nIt was an answer: how apply you this?\n\nMENENIUS:\nThe senators of Rome are this good belly,\nAnd you the mutinous members; for examine\nTheir counsels and their cares, digest things rightly\nTouching the weal o' the common, you shall find\nNo public benefit which you receive\nBut it proceeds or comes from them to you\nAnd no way from yourselves. What do you think,\nYou, the great toe of this assembly?\n\nFirst Citizen:\nI the great toe! why the great toe?\n\nMENENIUS:\nFor that, being one o' the lowest, basest, poorest,\nOf this most wise rebellion, thou go'st foremost:\nThou rascal, that art worst in blood to run,\nLead'st first to win some vantage.\nBut make you ready your stiff bats and clubs:\nRome and her rats are at the point of battle;\nThe one side must have bale.\nHail, noble Marcius!\n\nMARCIUS:\nThanks. What's the matter, you dissentious rogues,\nThat, rubbing the poor itch of your opinion,\nMake yourselves scabs?\n\nFirst Citizen:\nWe have ever your good word.\n\nMARCIUS:\nHe that will give good words to thee will flatter\nBeneath abhorring. What would you have, you curs,\nThat like nor peace nor war? the one affrights you,\nThe other makes you proud. He that trusts to you,\nWhere he should find you lions, finds you hares;\nWhere foxes, geese: you are no surer, no,\nThan is the coal of fire upon the ice,\nOr hailstone in the sun. Your virtue is\nTo make him worthy whose offence subdues him\nAnd curse that justice did it.\nWho deserves greatness\nDeserves your hate; and your affections are\nA sick man's appetite, who desires most that\nWhich would increase his evil. He that depends\nUpon your favours swims with fins of lead\nAnd hews down oaks with rushes. Hang ye! Trust Ye?\nWith every minute you do change a mind,\nAnd call him noble that was now your hate,\nHim vile that was your garland. What's the matter,\nThat in these several places of the city\nYou cry against the noble senate, who,\nUnder the gods, keep you in awe, which else\nWould feed on one another? What's their seeking?\n\nMENENIUS:\nFor corn at their own rates; whereof, they say,\nThe city is well stored.\n\nMARCIUS:\nHang 'em! They say!\nThey'll sit by the fire, and presume to know\nWhat's done i' the Capitol; who's like to rise,\nWho thrives and who declines; side factions\nand give out\nConjectural marriages; making parties strong\nAnd feebling such as stand not in their liking\nBelow their cobbled shoes. They say there's\ngrain enough!\nWould the nobility lay aside their ruth,\nAnd let me use my sword, I'll make a quarry\nWith thousands of these quarter'd slaves, as high\nAs I could pick my lance.\n\nMENENIUS:\nNay, these are almost thoroughly persuaded;\nFor though abundantly they lack discretion,\nYet are they passing cowardly. But, I beseech you,\nWhat says the other troop?\n\nMARCIUS:\nThey are dissolved: hang 'em!\nThey said they were an-hungry; sigh'd forth proverbs,\nThat hunger broke stone walls, that dogs must eat,\nThat meat was made for mouths, that the gods sent not\nCorn for the rich men only: with these shreds\nThey vented their complainings; which being answer'd,\nAnd a petition granted them, a strange one--\nTo break the heart of generosity,\nAnd make bold power look pale--they threw their caps\nAs they would hang them on the horns o' the moon,\nShouting their emulation.\n\nMENENIUS:\nWhat is granted them?\n\nMARCIUS:\nFive tribunes to defend their vulgar wisdoms,\nOf their own choice: one's Junius Brutus,\nSicinius Velutus, and I know not--'Sdeath!\nThe rabble should have first unroof'd the city,\nEre so prevail'd with me: it will in time\nWin upon power and throw forth greater themes\nFor insurrection's arguing.\n\nMENENIUS:\nThis is strange.\n\nMARCIUS:\nGo, get you home, you fragments!\n\nMessenger:\nWhere's Caius Marcius?\n\nMARCIUS:\nHere: what's the matter?\n\nMessenger:\nThe news is, sir, the Volsces are in arms.\n\nMARCIUS:\nI am glad on 't: then we shall ha' means to vent\nOur musty superfluity. See, our best elders.\n\nFirst Senator:\nMarcius, 'tis true that you have lately told us;\nThe Volsces are in arms.\n\nMARCIUS:\nThey have a leader,\nTullus Aufidius, that will put you to 't.\nI sin in envying his nobility,\nAnd were I any thing but what I am,\nI would wish me only he.\n\nCOMINIUS:\nYou have fought together.\n\nMARCIUS:\nWere half to half the world by the ears and he.\nUpon my party, I'ld revolt to make\nOnly my wars with him: he is a lion\nThat I am proud to hunt.\n\nFirst Senator:\nThen, worthy Marcius,\nAttend upon Cominius to these wars.\n\nCOMINIUS:\nIt is your former promise.\n\nMARCIUS:\nSir, it is;\nAnd I am constant. Titus Lartius, thou\nShalt see me once more strike at Tullus' face.\nWhat, art thou stiff? stand'st out?\n\nTITUS:\nNo, Caius Marcius;\nI'll lean upon one crutch and fight with t'other,\nEre stay behind this business.\n\nMENENIUS:\nO, true-bred!\n\nFirst Senator:\nYour company to the Capitol; where, I know,\nOur greatest friends attend us.\n\nTITUS:\n\nCOMINIUS:\nNoble Marcius!\n\nFirst Senator:\n\nMARCIUS:\nNay, let them follow:\nThe Volsces have much corn; take these rats thither\nTo gnaw their garners. Worshipful mutiners,\nYour valour puts well forth: pray, follow.\n\nSICINIUS:\nWas ever man so proud as is this Marcius?\n\nBRUTUS:\nHe has no equal.\n\nSICINIUS:\nWhen we were chosen tribunes for the people,--\n\nBRUTUS:\nMark'd you his lip and eyes?\n\nSICINIUS:\nNay. but his taunts.\n\nBRUTUS:\nBeing moved, he will not spare to gird the gods.\n\nSICINIUS:\nBe-mock the modest moon.\n\nBRUTUS:\nThe present wars devour him: he is grown\nToo proud to be so valiant.\n\nSICINIUS:\nSuch a nature,\nTickled with good success, disdains the shadow\nWhich he treads on at noon: but I do wonder\nHis insolence can brook to be commanded\nUnder Cominius.\n\nBRUTUS:\nFame, at the which he aims,\nIn whom already he's well graced, can not\nBetter be held nor more attain'd than by\nA place below the first: for what miscarries\nShall be the general's fault, though he perform\nTo the utmost of a man, and giddy censure\nWill then cry out of Marcius 'O if he\nHad borne the business!'\n\nSICINIUS:\nBesides, if things go well,\nOpinion that so sticks on Marcius shall\nOf his demerits rob Cominius.\n\nBRUTUS:\nCome:\nHalf all Cominius' honours are to Marcius.\nThough Marcius earned them not, and all his faults\nTo Marcius shall be honours, though indeed\nIn aught he merit not.\n\nSICINIUS:\nLet's hence, and hear\nHow the dispatch is made, and in what fashion,\nMore than his singularity, he goes\nUpon this present action.\n\nBRUTUS:\nLets along.\n\nFirst Senator:\nSo, your opinion is, Aufidius,\nThat they of Rome are entered in our counsels\nAnd know how we proceed.\n\nAUFIDIUS:\nIs it not yours?\nWhat ever have been thought on in this state,\nThat could be brought to bodily act ere Rome\nHad circumvention? 'Tis not four days gone\nSince I heard thence; these are the words: I think\nI have the letter here; yes, here it is.\n'They have press'd a power, but it is not known\nWhether for east or west: the dearth is great;\nThe people mutinous; and it is rumour'd,\nCominius, Marcius your old enemy,\nWho is of Rome worse hated than of you,\nAnd Titus Lartius, a most valiant Roman,\nThese three lead on this preparation\nWhither 'tis bent: most likely 'tis for you:\nConsider of it.'\n\nFirst Senator:\nOur army's in the field\nWe never yet made doubt but Rome was ready\nTo answer us.\n\nAUFIDIUS:\nNor did you think it folly\nTo keep your great pretences veil'd till when\nThey needs must show themselves; which\nin the hatching,\nIt seem'd, appear'd to Rome. By the discovery.\nWe shall be shorten'd in our aim, which was\nTo take in many towns ere almost Rome\nShould know we were afoot.\n\nSecond Senator:\nNoble Aufidius,\nTake your commission; hie you to your bands:\nLet us alone to guard Corioli:\nIf they set down before 's, for the remove\nBring your army; but, I think, you'll find\nThey've not prepared for us.\n\nAUFIDIUS:\nO, doubt not that;\nI speak from certainties. Nay, more,\nSome parcels of their power are forth already,\nAnd only hitherward. I leave your honours.\nIf we and Caius Marcius chance to meet,\n'Tis sworn between us we shall ever strike\nTill one can do no more.\n\nAll:\nThe gods assist you!\n\nAUFIDIUS:\nAnd keep your honours safe!\n\nFirst Senator:\nFarewell.\n\nSecond Senator:\nFarewell.\n\nAll:\nFarewell.\n\nVOLUMNIA:\nI pray you, daughter, sing; or express yourself in a\nmore comfortable sort: if my son were my husband, I\nshould freelier rejoice in that absence wherein he\nwon honour than in the embracements of his bed where\nhe would show most love. When yet he was but\ntender-bodied and the only son of my womb, when\nyouth with comeliness plucked all gaze his way, when\nfor a day of kings' entreaties a mother should not\nsell him an hour from her beholding, I, considering\nhow honour would become such a person. that it was\nno better than picture-like to hang by the wall, if\nrenown made it not stir, was pleased to let him seek\ndanger where he was like to find fame. To a cruel\nwar I sent him; from whence he returned, his brows\nbound with oak. I tell thee, daughter, I sprang not\nmore in joy at first hearing he was a man-child\nthan now in first seeing he had proved himself a\nman.\n\nVIRGILIA:\nBut had he died in the business, madam; how then?\n\nVOLUMNIA:\nThen his good report should have been my son; I\ntherein would have found issue. Hear me profess\nsincerely: had I a dozen sons, each in my love\nalike and none less dear than thine and my good\nMarcius, I had rather had eleven die nobly for their\ncountry than one voluptuously surfeit out of action.\n\nGentlewoman:\nMadam, the Lady Valeria is come to visit you.\n\nVIRGILIA:\nBeseech you, give me leave to retire myself.\n\nVOLUMNIA:\nIndeed, you shall not.\nMethinks I hear hither your husband's drum,\nSee him pluck Aufidius down by the hair,\nAs children from a bear, the Volsces shunning him:\nMethinks I see him stamp thus, and call thus:\n'Come on, you cowards! you were got in fear,\nThough you were born in Rome:' his bloody brow\nWith his mail'd hand then wiping, forth he goes,\nLike to a harvest-man that's task'd to mow\nOr all or lose his hire.\n\nVIRGILIA:\nHis bloody brow! O Jupiter, no blood!\n\nVOLUMNIA:\nAway, you fool! it more becomes a man\nThan gilt his trophy: the breasts of Hecuba,\nWhen she did suckle Hector, look'd not lovelier\nThan Hector's forehead when it spit forth blood\nAt Grecian sword, contemning. Tell Valeria,\nWe are fit to bid her welcome.\n\nVIRGILIA:\nHeavens bless my lord from fell Aufidius!\n\nVOLUMNIA:\nHe'll beat Aufidius 'head below his knee\nAnd tread upon his neck.\n\nVALERIA:\nMy ladies both, good day to you.\n\nVOLUMNIA:\nSweet madam.\n\nVIRGILIA:\nI am glad to see your ladyship.\n\nVALERIA:\nHow do you both? you are manifest house-keepers.\nWhat are you sewing here? A fine spot, in good\nfaith. How does your little son?\n\nVIRGILIA:\nI thank your ladyship; well, good madam.\n\nVOLUMNIA:\nHe had rather see the swords, and hear a drum, than\nlook upon his school-master.\n\nVALERIA:\nO' my word, the father's son: I'll swear,'tis a\nvery pretty boy. O' my troth, I looked upon him o'\nWednesday half an hour together: has such a\nconfirmed countenance. I saw him run after a gilded\nbutterfly: and when he caught it, he let it go\nagain; and after it again; and over and over he\ncomes, and again; catched it again; or whether his\nfall enraged him, or how 'twas, he did so set his\nteeth and tear it; O, I warrant it, how he mammocked\nit!\n\nVOLUMNIA:\nOne on 's father's moods.\n\nVALERIA:\nIndeed, la, 'tis a noble child.\n\nVIRGILIA:\nA crack, madam.\n\nVALERIA:\nCome, lay aside your stitchery; I must have you play\nthe idle husewife with me this afternoon.\n\nVIRGILIA:\nNo, good madam; I will not out of doors.\n\nVALERIA:\nNot out of doors!\n\nVOLUMNIA:\nShe shall, she shall.\n\nVIRGILIA:\nIndeed, no, by your patience; I'll not over the\nthreshold till my lord return from the wars.\n\nVALERIA:\nFie, you confine yourself most unreasonably: come,\nyou must go visit the good lady that lies in.\n\nVIRGILIA:\nI will wish her speedy strength, and visit her with\nmy prayers; but I cannot go thither.\n\nVOLUMNIA:\nWhy, I pray you?\n\nVIRGILIA:\n'Tis not to save labour, nor that I want love.\n\nVALERIA:\nYou would be another Penelope: yet, they say, all\nthe yarn she spun in Ulysses' absence did but fill\nIthaca full of moths. Come; I would your cambric\nwere sensible as your finger, that you might leave\npricking it for pity. Come, you shall go with us.\n\nVIRGILIA:\nNo, good madam, pardon me; indeed, I will not forth.\n\nVALERIA:\nIn truth, la, go with me; and I'll tell you\nexcellent news of your husband.\n\nVIRGILIA:\nO, good madam, there can be none yet.\n\nVALERIA:\nVerily, I do not jest with you; there came news from\nhim last night.\n\nVIRGILIA:\nIndeed, madam?\n\nVALERIA:\nIn earnest, it's true; I heard a senator speak it.\nThus it is: the Volsces have an army forth; against\nwhom Cominius the general is gone, with one part of\nour Roman power: your lord and Titus Lartius are set\ndown before their city Corioli; they nothing doubt\nprevailing and to make it brief wars. This is true,\non mine honour; and so, I pray, go with us.\n\nVIRGILIA:\nGive me excuse, good madam; I will obey you in every\nthing hereafter.\n\nVOLUMNIA:\nLet her alone, lady: as she is now, she will but\ndisease our better mirth.\n\nVALERIA:\nIn troth, I think she would. Fare you well, then.\nCome, good sweet lady. Prithee, Virgilia, turn thy\nsolemness out o' door. and go along with us.\n\nVIRGILIA:\nNo, at a word, madam; indeed, I must not. I wish\nyou much mirth.\n\nVALERIA:\nWell, then, farewell.\n\nMARCIUS:\nYonder comes news. A wager they have met.\n\nLARTIUS:\nMy horse to yours, no.\n\nMARCIUS:\n'Tis done.\n\nLARTIUS:\nAgreed.\n\nMARCIUS:\nSay, has our general met the enemy?\n\nMessenger:\nThey lie in view; but have not spoke as yet.\n\nLARTIUS:\nSo, the good horse is mine.\n\nMARCIUS:\nI'll buy him of you.\n\nLARTIUS:\nNo, I'll nor sell nor give him: lend you him I will\nFor half a hundred years. Summon the town.\n\nMARCIUS:\nHow far off lie these armies?\n\nMessenger:\nWithin this mile and half.\n\nMARCIUS:\nThen shall we hear their 'larum, and they ours.\nNow, Mars, I prithee, make us quick in work,\nThat we with smoking swords may march from hence,\nTo help our fielded friends! Come, blow thy blast.\nTutus Aufidius, is he within your walls?\n\nFirst Senator:\nNo, nor a man that fears you less than he,\nThat's lesser than a little.\nHark! our drums\nAre bringing forth our youth. We'll break our walls,\nRather than they shall pound us up: our gates,\nWhich yet seem shut, we, have but pinn'd with rushes;\nThey'll open of themselves.\nHark you. far off!\nThere is Aufidius; list, what work he makes\nAmongst your cloven army.\n\nMARCIUS:\nO, they are at it!\n\nLARTIUS:\nTheir noise be our instruction. Ladders, ho!\n\nMARCIUS:\nThey fear us not, but issue forth their city.\nNow put your shields before your hearts, and fight\nWith hearts more proof than shields. Advance,\nbrave Titus:\nThey do disdain us much beyond our thoughts,\nWhich makes me sweat with wrath. Come on, my fellows:\nHe that retires I'll take him for a Volsce,\nAnd he shall feel mine edge.\n\nMARCIUS:\nAll the contagion of the south light on you,\nYou shames of Rome! you herd of--Boils and plagues\nPlaster you o'er, that you may be abhorr'd\nFurther than seen and one infect another\nAgainst the wind a mile! You souls of geese,\nThat bear the shapes of men, how have you run\nFrom slaves that apes would beat! Pluto and hell!\nAll hurt behind; backs red, and faces pale\nWith flight and agued fear! Mend and charge home,\nOr, by the fires of heaven, I'll leave the foe\nAnd make my wars on you: look to't: come on;\nIf you'll stand fast, we'll beat them to their wives,\nAs they us to our trenches followed.\nSo, now the gates are ope: now prove good seconds:\n'Tis for the followers fortune widens them,\nNot for the fliers: mark me, and do the like.\n\nFirst Soldier:\nFool-hardiness; not I.\n\nSecond Soldier:\nNor I.\n\nFirst Soldier:\nSee, they have shut him in.\n\nAll:\nTo the pot, I warrant him.\n\nLARTIUS:\nWhat is become of Marcius?\n\nAll:\nSlain, sir, doubtless.\n\nFirst Soldier:\nFollowing the fliers at the very heels,\nWith them he enters; who, upon the sudden,\nClapp'd to their gates: he is himself alone,\nTo answer all the city.\n\nLARTIUS:\nO noble fellow!\nWho sensibly outdares his senseless sword,\nAnd, when it bows, stands up. Thou art left, Marcius:\nA carbuncle entire, as big as thou art,\nWere not so rich a jewel. Thou wast a soldier\nEven to Cato's wish, not fierce and terrible\nOnly in strokes; but, with thy grim looks and\nThe thunder-like percussion of thy sounds,\nThou madst thine enemies shake, as if the world\nWere feverous and did tremble.\n\nFirst Soldier:\nLook, sir.\n\nLARTIUS:\nO,'tis Marcius!\nLet's fetch him off, or make remain alike.\n\nFirst Roman:\nThis will I carry to Rome.\n\nSecond Roman:\nAnd I this.\n\nThird Roman:\nA murrain on't! I took this for silver.\n\nMARCIUS:\nSee here these movers that do prize their hours\nAt a crack'd drachm! Cushions, leaden spoons,\nIrons of a doit, doublets that hangmen would\nBury with those that wore them, these base slaves,\nEre yet the fight be done, pack up: down with them!\nAnd hark, what noise the general makes! To him!\nThere is the man of my soul's hate, Aufidius,\nPiercing our Romans: then, valiant Titus, take\nConvenient numbers to make good the city;\nWhilst I, with those that have the spirit, will haste\nTo help Cominius.\n\nLARTIUS:\nWorthy sir, thou bleed'st;\nThy exercise hath been too violent for\nA second course of fight.\n\nMARCIUS:\nSir, praise me not;\nMy work hath yet not warm'd me: fare you well:\nThe blood I drop is rather physical\nThan dangerous to me: to Aufidius thus\nI will appear, and fight.\n\nLARTIUS:\nNow the fair goddess, Fortune,\nFall deep in love with thee; and her great charms\nMisguide thy opposers' swords! Bold gentleman,\nProsperity be thy page!\n\nMARCIUS:\nThy friend no less\nThan those she placeth highest! So, farewell.\n\nLARTIUS:\nThou worthiest Marcius!\nGo, sound thy trumpet in the market-place;\nCall thither all the officers o' the town,\nWhere they shall know our mind: away!\n\nCOMINIUS:\nBreathe you, my friends: well fought;\nwe are come off\nLike Romans, neither foolish in our stands,\nNor cowardly in retire: believe me, sirs,\nWe shall be charged again. Whiles we have struck,\nBy interims and conveying gusts we have heard\nThe charges of our friends. Ye Roman gods!\nLead their successes as we wish our own,\nThat both our powers, with smiling\nfronts encountering,\nMay give you thankful sacrifice.\nThy news?\n\nMessenger:\nThe citizens of Corioli have issued,\nAnd given to Lartius and to Marcius battle:\nI saw our party to their trenches driven,\nAnd then I came away.\n\nCOMINIUS:\nThough thou speak'st truth,\nMethinks thou speak'st not well.\nHow long is't since?\n\nMessenger:\nAbove an hour, my lord.\n\nCOMINIUS:\n'Tis not a mile; briefly we heard their drums:\nHow couldst thou in a mile confound an hour,\nAnd bring thy news so late?\n\nMessenger:\nSpies of the Volsces\nHeld me in chase, that I was forced to wheel\nThree or four miles about, else had I, sir,\nHalf an hour since brought my report.\n\nCOMINIUS:\nWho's yonder,\nThat does appear as he were flay'd? O gods\nHe has the stamp of Marcius; and I have\nBefore-time seen him thus.\n\nMARCIUS:\n\nCOMINIUS:\nThe shepherd knows not thunder from a tabour\nMore than I know the sound of Marcius' tongue\nFrom every meaner man.\n\nMARCIUS:\nCome I too late?\n\nCOMINIUS:\nAy, if you come not in the blood of others,\nBut mantled in your own.\n\nMARCIUS:\nO, let me clip ye\nIn arms as sound as when I woo'd, in heart\nAs merry as when our nuptial day was done,\nAnd tapers burn'd to bedward!\n\nCOMINIUS:\nFlower of warriors,\nHow is it with Titus Lartius?\n\nMARCIUS:\nAs with a man busied about decrees:\nCondemning some to death, and some to exile;\nRansoming him, or pitying, threatening the other;\nHolding Corioli in the name of Rome,\nEven like a fawning greyhound in the leash,\nTo let him slip at will.\n\nCOMINIUS:\nWhere is that slave\nWhich told me they had beat you to your trenches?\nWhere is he? call him hither.\n\nMARCIUS:\nLet him alone;\nHe did inform the truth: but for our gentlemen,\nThe common file--a plague! tribunes for them!--\nThe mouse ne'er shunn'd the cat as they did budge\nFrom rascals worse than they.\n\nCOMINIUS:\nBut how prevail'd you?\n\nMARCIUS:\nWill the time serve to tell? I do not think.\nWhere is the enemy? are you lords o' the field?\nIf not, why cease you till you are so?\n\nCOMINIUS:\nMarcius,\nWe have at disadvantage fought and did\nRetire to win our purpose.\n\nMARCIUS:\nHow lies their battle? know you on which side\nThey have placed their men of trust?\n\nCOMINIUS:\nAs I guess, Marcius,\nTheir bands i' the vaward are the Antiates,\nOf their best trust; o'er them Aufidius,\nTheir very heart of hope.\n\nMARCIUS:\nI do beseech you,\nBy all the battles wherein we have fought,\nBy the blood we have shed together, by the vows\nWe have made to endure friends, that you directly\nSet me against Aufidius and his Antiates;\nAnd that you not delay the present, but,\nFilling the air with swords advanced and darts,\nWe prove this very hour.\n\nCOMINIUS:\nThough I could wish\nYou were conducted to a gentle bath\nAnd balms applied to, you, yet dare I never\nDeny your asking: take your choice of those\nThat best can aid your action.\n\nMARCIUS:\nThose are they\nThat most are willing. If any such be here--\nAs it were sin to doubt--that love this painting\nWherein you see me smear'd; if any fear\nLesser his person than an ill report;\nIf any think brave death outweighs bad life\nAnd that his country's dearer than himself;\nLet him alone, or so many so minded,\nWave thus, to express his disposition,\nAnd follow Marcius.\nO, me alone! make you a sword of me?\nIf these shows be not outward, which of you\nBut is four Volsces? none of you but is\nAble to bear against the great Aufidius\nA shield as hard as his. A certain number,\nThough thanks to all, must I select\nfrom all: the rest\nShall bear the business in some other fight,\nAs cause will be obey'd. Please you to march;\nAnd four shall quickly draw out my command,\nWhich men are best inclined.\n\nCOMINIUS:\nMarch on, my fellows:\nMake good this ostentation, and you shall\nDivide in all with us.\n\nLARTIUS:\nSo, let the ports be guarded: keep your duties,\nAs I have set them down. If I do send, dispatch\nThose centuries to our aid: the rest will serve\nFor a short holding: if we lose the field,\nWe cannot keep the town.\n\nLieutenant:\nFear not our care, sir.\n\nLARTIUS:\nHence, and shut your gates upon's.\nOur guider, come; to the Roman camp conduct us.\n\nMARCIUS:\nI'll fight with none but thee; for I do hate thee\nWorse than a promise-breaker.\n\nAUFIDIUS:\nWe hate alike:\nNot Afric owns a serpent I abhor\nMore than thy fame and envy. Fix thy foot.\n\nMARCIUS:\nLet the first budger die the other's slave,\nAnd the gods doom him after!\n\nAUFIDIUS:\nIf I fly, Marcius,\nHolloa me like a hare.\n\nMARCIUS:\nWithin these three hours, Tullus,\nAlone I fought in your Corioli walls,\nAnd made what work I pleased: 'tis not my blood\nWherein thou seest me mask'd; for thy revenge\nWrench up thy power to the highest.\n\nAUFIDIUS:\nWert thou the Hector\nThat was the whip of your bragg'd progeny,\nThou shouldst not scape me here.\nOfficious, and not valiant, you have shamed me\nIn your condemned seconds.\n\nCOMINIUS:\nIf I should tell thee o'er this thy day's work,\nThou'ldst not believe thy deeds: but I'll report it\nWhere senators shall mingle tears with smiles,\nWhere great patricians shall attend and shrug,\nI' the end admire, where ladies shall be frighted,\nAnd, gladly quaked, hear more; where the\ndull tribunes,\nThat, with the fusty plebeians, hate thine honours,\nShall say against their hearts 'We thank the gods\nOur Rome hath such a soldier.'\nYet camest thou to a morsel of this feast,\nHaving fully dined before.\n\nLARTIUS:\nO general,\nHere is the steed, we the caparison:\nHadst thou beheld--\n\nMARCIUS:\nPray now, no more: my mother,\nWho has a charter to extol her blood,\nWhen she does praise me grieves me. I have done\nAs you have done; that's what I can; induced\nAs you have been; that's for my country:\nHe that has but effected his good will\nHath overta'en mine act.\n\nCOMINIUS:\nYou shall not be\nThe grave of your deserving; Rome must know\nThe value of her own: 'twere a concealment\nWorse than a theft, no less than a traducement,\nTo hide your doings; and to silence that,\nWhich, to the spire and top of praises vouch'd,\nWould seem but modest: therefore, I beseech you\nIn sign of what you are, not to reward\nWhat you have done--before our army hear me.\n\nMARCIUS:\nI have some wounds upon me, and they smart\nTo hear themselves remember'd.\n\nCOMINIUS:\nShould they not,\nWell might they fester 'gainst ingratitude,\nAnd tent themselves with death. Of all the horses,\nWhereof we have ta'en good and good store, of all\nThe treasure in this field achieved and city,\nWe render you the tenth, to be ta'en forth,\nBefore the common distribution, at\nYour only choice.\n\nMARCIUS:\nI thank you, general;\nBut cannot make my heart consent to take\nA bribe to pay my sword: I do refuse it;\nAnd stand upon my common part with those\nThat have beheld the doing.\n\nMARCIUS:\nMay these same instruments, which you profane,\nNever sound more! when drums and trumpets shall\nI' the field prove flatterers, let courts and cities be\nMade all of false-faced soothing!\nWhen steel grows soft as the parasite's silk,\nLet him be made a coverture for the wars!\nNo more, I say! For that I have not wash'd\nMy nose that bled, or foil'd some debile wretch.--\nWhich, without note, here's many else have done,--\nYou shout me forth\nIn acclamations hyperbolical;\nAs if I loved my little should be dieted\nIn praises sauced with lies.\n\nCOMINIUS:\nToo modest are you;\nMore cruel to your good report than grateful\nTo us that give you truly: by your patience,\nIf 'gainst yourself you be incensed, we'll put you,\nLike one that means his proper harm, in manacles,\nThen reason safely with you. Therefore, be it known,\nAs to us, to all the world, that Caius Marcius\nWears this war's garland: in token of the which,\nMy noble steed, known to the camp, I give him,\nWith all his trim belonging; and from this time,\nFor what he did before Corioli, call him,\nWith all the applause and clamour of the host,\nCAIUS MARCIUS CORIOLANUS! Bear\nThe addition nobly ever!\n\nAll:\nCaius Marcius Coriolanus!\n\nCORIOLANUS:\nI will go wash;\nAnd when my face is fair, you shall perceive\nWhether I blush or no: howbeit, I thank you.\nI mean to stride your steed, and at all times\nTo undercrest your good addition\nTo the fairness of my power.\n\nCOMINIUS:\nSo, to our tent;\nWhere, ere we do repose us, we will write\nTo Rome of our success. You, Titus Lartius,\nMust to Corioli back: send us to Rome\nThe best, with whom we may articulate,\nFor their own good and ours.\n\nLARTIUS:\nI shall, my lord.\n\nCORIOLANUS:\nThe gods begin to mock me. I, that now\nRefused most princely gifts, am bound to beg\nOf my lord general.\n\nCOMINIUS:\nTake't; 'tis yours. What is't?\n\nCORIOLANUS:\nI sometime lay here in Corioli\nAt a poor man's house; he used me kindly:\nHe cried to me; I saw him prisoner;\nBut then Aufidius was within my view,\nAnd wrath o'erwhelm'd my pity: I request you\nTo give my poor host freedom.\n\nCOMINIUS:\nO, well begg'd!\nWere he the butcher of my son, he should\nBe free as is the wind. Deliver him, Titus.\n\nLARTIUS:\nMarcius, his name?\n\nCORIOLANUS:\nBy Jupiter! forgot.\nI am weary; yea, my memory is tired.\nHave we no wine here?\n\nCOMINIUS:\nGo we to our tent:\nThe blood upon your visage dries; 'tis time\nIt should be look'd to: come.\n\nAUFIDIUS:\nThe town is ta'en!\n\nFirst Soldier:\n'Twill be deliver'd back on good condition.\n\nAUFIDIUS:\nCondition!\nI would I were a Roman; for I cannot,\nBeing a Volsce, be that I am. Condition!\nWhat good condition can a treaty find\nI' the part that is at mercy? Five times, Marcius,\nI have fought with thee: so often hast thou beat me,\nAnd wouldst do so, I think, should we encounter\nAs often as we eat. By the elements,\nIf e'er again I meet him beard to beard,\nHe's mine, or I am his: mine emulation\nHath not that honour in't it had; for where\nI thought to crush him in an equal force,\nTrue sword to sword, I'll potch at him some way\nOr wrath or craft may get him.\n\nFirst Soldier:\nHe's the devil.\n\nAUFIDIUS:\nBolder, though not so subtle. My valour's poison'd\nWith only suffering stain by him; for him\nShall fly out of itself: nor sleep nor sanctuary,\nBeing naked, sick, nor fane nor Capitol,\nThe prayers of priests nor times of sacrifice,\nEmbarquements all of fury, shall lift up\nTheir rotten privilege and custom 'gainst\nMy hate to Marcius: where I find him, were it\nAt home, upon my brother's guard, even there,\nAgainst the hospitable canon, would I\nWash my fierce hand in's heart. Go you to the city;\nLearn how 'tis held; and what they are that must\nBe hostages for Rome.\n\nFirst Soldier:\nWill not you go?\n\nAUFIDIUS:\nI am attended at the cypress grove: I pray you--\n'Tis south the city mills--bring me word thither\nHow the world goes, that to the pace of it\nI may spur on my journey.\n\nFirst Soldier:\nI shall, sir.\n\nMENENIUS:\nThe augurer tells me we shall have news to-night.\n\nBRUTUS:\nGood or bad?\n\nMENENIUS:\nNot according to the prayer of the people, for they\nlove not Marcius.\n\nSICINIUS:\nNature teaches beasts to know their friends.\n\nMENENIUS:\nPray you, who does the wolf love?\n\nSICINIUS:\nThe lamb.\n\nMENENIUS:\nAy, to devour him; as the hungry plebeians would the\nnoble Marcius.\n\nBRUTUS:\nHe's a lamb indeed, that baes like a bear.\n\nMENENIUS:\nHe's a bear indeed, that lives like a lamb. You two\nare old men: tell me one thing that I shall ask you.\n\nBoth:\nWell, sir.\n\nMENENIUS:\nIn what enormity is Marcius poor in, that you two\nhave not in abundance?\n\nBRUTUS:\nHe's poor in no one fault, but stored with all.\n\nSICINIUS:\nEspecially in pride.\n\nBRUTUS:\nAnd topping all others in boasting.\n\nMENENIUS:\nThis is strange now: do you two know how you are\ncensured here in the city, I mean of us o' the\nright-hand file? do you?\n\nBoth:\nWhy, how are we censured?\n\nMENENIUS:\nBecause you talk of pride now,--will you not be angry?\n\nBoth:\nWell, well, sir, well.\n\nMENENIUS:\nWhy, 'tis no great matter; for a very little thief of\noccasion will rob you of a great deal of patience:\ngive your dispositions the reins, and be angry at\nyour pleasures; at the least if you take it as a\npleasure to you in being so. You blame Marcius for\nbeing proud?\n\nBRUTUS:\nWe do it not alone, sir.\n\nMENENIUS:\nI know you can do very little alone; for your helps\nare many, or else your actions would grow wondrous\nsingle: your abilities are too infant-like for\ndoing much alone. You talk of pride: O that you\ncould turn your eyes toward the napes of your necks,\nand make but an interior survey of your good selves!\nO that you could!\n\nBRUTUS:\nWhat then, sir?\n\nMENENIUS:\nWhy, then you should discover a brace of unmeriting,\nproud, violent, testy magistrates, alias fools, as\nany in Rome.\n\nSICINIUS:\nMenenius, you are known well enough too.\n\nMENENIUS:\nI am known to be a humorous patrician, and one that\nloves a cup of hot wine with not a drop of allaying\nTiber in't; said to be something imperfect in\nfavouring the first complaint; hasty and tinder-like\nupon too trivial motion; one that converses more\nwith the buttock of the night than with the forehead\nof the morning: what I think I utter, and spend my\nmalice in my breath. Meeting two such wealsmen as\nyou are--I cannot call you Lycurguses--if the drink\nyou give me touch my palate adversely, I make a\ncrooked face at it. I can't say your worships have\ndelivered the matter well, when I find the ass in\ncompound with the major part of your syllables: and\nthough I must be content to bear with those that say\nyou are reverend grave men, yet they lie deadly that\ntell you you have good faces. If you see this in\nthe map of my microcosm, follows it that I am known\nwell enough too? what barm can your bisson\nconspectuities glean out of this character, if I be\nknown well enough too?\n\nBRUTUS:\nCome, sir, come, we know you well enough.\n\nMENENIUS:\nYou know neither me, yourselves nor any thing. You\nare ambitious for poor knaves' caps and legs: you\nwear out a good wholesome forenoon in hearing a\ncause between an orange wife and a fosset-seller;\nand then rejourn the controversy of three pence to a\nsecond day of audience. When you are hearing a\nmatter between party and party, if you chance to be\npinched with the colic, you make faces like\nmummers; set up the bloody flag against all\npatience; and, in roaring for a chamber-pot,\ndismiss the controversy bleeding the more entangled\nby your hearing: all the peace you make in their\ncause is, calling both the parties knaves. You are\na pair of strange ones.\n\nBRUTUS:\nCome, come, you are well understood to be a\nperfecter giber for the table than a necessary\nbencher in the Capitol.\n\nMENENIUS:\nOur very priests must become mockers, if they shall\nencounter such ridiculous subjects as you are. When\nyou speak best unto the purpose, it is not worth the\nwagging of your beards; and your beards deserve not\nso honourable a grave as to stuff a botcher's\ncushion, or to be entombed in an ass's pack-\nsaddle. Yet you must be saying, Marcius is proud;\nwho in a cheap estimation, is worth predecessors\nsince Deucalion, though peradventure some of the\nbest of 'em were hereditary hangmen. God-den to\nyour worships: more of your conversation would\ninfect my brain, being the herdsmen of the beastly\nplebeians: I will be bold to take my leave of you.\nHow now, my as fair as noble ladies,--and the moon,\nwere she earthly, no nobler,--whither do you follow\nyour eyes so fast?\n\nVOLUMNIA:\nHonourable Menenius, my boy Marcius approaches; for\nthe love of Juno, let's go.\n\nMENENIUS:\nHa! Marcius coming home!\n\nVOLUMNIA:\nAy, worthy Menenius; and with most prosperous\napprobation.\n\nMENENIUS:\nTake my cap, Jupiter, and I thank thee. Hoo!\nMarcius coming home!\n\nVOLUMNIA:\nNay,'tis true.\n\nVOLUMNIA:\nLook, here's a letter from him: the state hath\nanother, his wife another; and, I think, there's one\nat home for you.\n\nMENENIUS:\nI will make my very house reel tonight: a letter for\nme!\n\nVIRGILIA:\nYes, certain, there's a letter for you; I saw't.\n\nMENENIUS:\nA letter for me! it gives me an estate of seven\nyears' health; in which time I will make a lip at\nthe physician: the most sovereign prescription in\nGalen is but empiricutic, and, to this preservative,\nof no better report than a horse-drench. Is he\nnot wounded? he was wont to come home wounded.\n\nVIRGILIA:\nO, no, no, no.\n\nVOLUMNIA:\nO, he is wounded; I thank the gods for't.\n\nMENENIUS:\nSo do I too, if it be not too much: brings a'\nvictory in his pocket? the wounds become him.\n\nVOLUMNIA:\nOn's brows: Menenius, he comes the third time home\nwith the oaken garland.\n\nMENENIUS:\nHas he disciplined Aufidius soundly?\n\nVOLUMNIA:\nTitus Lartius writes, they fought together, but\nAufidius got off.\n\nMENENIUS:\nAnd 'twas time for him too, I'll warrant him that:\nan he had stayed by him, I would not have been so\nfidiused for all the chests in Corioli, and the gold\nthat's in them. Is the senate possessed of this?\n\nVOLUMNIA:\nGood ladies, let's go. Yes, yes, yes; the senate\nhas letters from the general, wherein he gives my\nson the whole name of the war: he hath in this\naction outdone his former deeds doubly\n\nVALERIA:\nIn troth, there's wondrous things spoke of him.\n\nMENENIUS:\nWondrous! ay, I warrant you, and not without his\ntrue purchasing.\n\nVIRGILIA:\nThe gods grant them true!\n\nVOLUMNIA:\nTrue! pow, wow.\n\nMENENIUS:\nTrue! I'll be sworn they are true.\nWhere is he wounded?\nGod save your good worships! Marcius is coming\nhome: he has more cause to be proud. Where is he wounded?\n\nVOLUMNIA:\nI' the shoulder and i' the left arm there will be\nlarge cicatrices to show the people, when he shall\nstand for his place. He received in the repulse of\nTarquin seven hurts i' the body.\n\nMENENIUS:\nOne i' the neck, and two i' the thigh,--there's\nnine that I know.\n\nVOLUMNIA:\nHe had, before this last expedition, twenty-five\nwounds upon him.\n\nMENENIUS:\nNow it's twenty-seven: every gash was an enemy's grave.\nHark! the trumpets.\n\nVOLUMNIA:\nThese are the ushers of Marcius: before him he\ncarries noise, and behind him he leaves tears:\nDeath, that dark spirit, in 's nervy arm doth lie;\nWhich, being advanced, declines, and then men die.\n\nHerald:\nKnow, Rome, that all alone Marcius did fight\nWithin Corioli gates: where he hath won,\nWith fame, a name to Caius Marcius; these\nIn honour follows Coriolanus.\nWelcome to Rome, renowned Coriolanus!\n\nAll:\nWelcome to Rome, renowned Coriolanus!\n\nCORIOLANUS:\nNo more of this; it does offend my heart:\nPray now, no more.\n\nCOMINIUS:\nLook, sir, your mother!\n\nCORIOLANUS:\nO,\nYou have, I know, petition'd all the gods\nFor my prosperity!\n\nVOLUMNIA:\nNay, my good soldier, up;\nMy gentle Marcius, worthy Caius, and\nBy deed-achieving honour newly named,--\nWhat is it?--Coriolanus must I call thee?--\nBut O, thy wife!\n\nCORIOLANUS:\nMy gracious silence, hail!\nWouldst thou have laugh'd had I come coffin'd home,\nThat weep'st to see me triumph? Ay, my dear,\nSuch eyes the widows in Corioli wear,\nAnd mothers that lack sons.\n\nMENENIUS:\nNow, the gods crown thee!\n\nCORIOLANUS:\nAnd live you yet?\nO my sweet lady, pardon.\n\nVOLUMNIA:\nI know not where to turn: O, welcome home:\nAnd welcome, general: and ye're welcome all.\n\nMENENIUS:\nA hundred thousand welcomes. I could weep\nAnd I could laugh, I am light and heavy. Welcome.\nA curse begin at very root on's heart,\nThat is not glad to see thee! You are three\nThat Rome should dote on: yet, by the faith of men,\nWe have some old crab-trees here\nat home that will not\nBe grafted to your relish. Yet welcome, warriors:\nWe call a nettle but a nettle and\nThe faults of fools but folly.\n\nCOMINIUS:\nEver right.\n\nCORIOLANUS:\nMenenius ever, ever.\n\nHerald:\nGive way there, and go on!\n\nCORIOLANUS:\n\nVOLUMNIA:\nI have lived\nTo see inherited my very wishes\nAnd the buildings of my fancy: only\nThere's one thing wanting, which I doubt not but\nOur Rome will cast upon thee.\n\nCORIOLANUS:\nKnow, good mother,\nI had rather be their servant in my way,\nThan sway with them in theirs.\n\nCOMINIUS:\nOn, to the Capitol!\n\nBRUTUS:\nAll tongues speak of him, and the bleared sights\nAre spectacled to see him: your prattling nurse\nInto a rapture lets her baby cry\nWhile she chats him: the kitchen malkin pins\nHer richest lockram 'bout her reechy neck,\nClambering the walls to eye him: stalls, bulks, windows,\nAre smother'd up, leads fill'd, and ridges horsed\nWith variable complexions, all agreeing\nIn earnestness to see him: seld-shown flamens\nDo press among the popular throngs and puff\nTo win a vulgar station: or veil'd dames\nCommit the war of white and damask in\nTheir nicely-gawded cheeks to the wanton spoil\nOf Phoebus' burning kisses: such a pother\nAs if that whatsoever god who leads him\nWere slily crept into his human powers\nAnd gave him graceful posture.\n\nSICINIUS:\nOn the sudden,\nI warrant him consul.\n\nBRUTUS:\nThen our office may,\nDuring his power, go sleep.\n\nSICINIUS:\nHe cannot temperately transport his honours\nFrom where he should begin and end, but will\nLose those he hath won.\n\nBRUTUS:\nIn that there's comfort.\n\nSICINIUS:\nDoubt not\nThe commoners, for whom we stand, but they\nUpon their ancient malice will forget\nWith the least cause these his new honours, which\nThat he will give them make I as little question\nAs he is proud to do't.\n\nBRUTUS:\nI heard him swear,\nWere he to stand for consul, never would he\nAppear i' the market-place nor on him put\nThe napless vesture of humility;\nNor showing, as the manner is, his wounds\nTo the people, beg their stinking breaths.\n\nSICINIUS:\n'Tis right.\n\nBRUTUS:\nIt was his word: O, he would miss it rather\nThan carry it but by the suit of the gentry to him,\nAnd the desire of the nobles.\n\nSICINIUS:\nI wish no better\nThan have him hold that purpose and to put it\nIn execution.\n\nBRUTUS:\n'Tis most like he will.\n\nSICINIUS:\nIt shall be to him then as our good wills,\nA sure destruction.\n\nBRUTUS:\nSo it must fall out\nTo him or our authorities. For an end,\nWe must suggest the people in what hatred\nHe still hath held them; that to's power he would\nHave made them mules, silenced their pleaders and\nDispropertied their freedoms, holding them,\nIn human action and capacity,\nOf no more soul nor fitness for the world\nThan camels in the war, who have their provand\nOnly for bearing burdens, and sore blows\nFor sinking under them.\n\nSICINIUS:\nThis, as you say, suggested\nAt some time when his soaring insolence\nShall touch the people--which time shall not want,\nIf he be put upon 't; and that's as easy\nAs to set dogs on sheep--will be his fire\nTo kindle their dry stubble; and their blaze\nShall darken him for ever.\n\nBRUTUS:\nWhat's the matter?\n\nMessenger:\nYou are sent for to the Capitol. 'Tis thought\nThat Marcius shall be consul:\nI have seen the dumb men throng to see him and\nThe blind to bear him speak: matrons flung gloves,\nLadies and maids their scarfs and handkerchers,\nUpon him as he pass'd: the nobles bended,\nAs to Jove's statue, and the commons made\nA shower and thunder with their caps and shouts:\nI never saw the like.\n\nBRUTUS:\nLet's to the Capitol;\nAnd carry with us ears and eyes for the time,\nBut hearts for the event.\n\nSICINIUS:\nHave with you.\n\nFirst Officer:\nCome, come, they are almost here. How many stand\nfor consulships?\n\nSecond Officer:\nThree, they say: but 'tis thought of every one\nCoriolanus will carry it.\n\nFirst Officer:\nThat's a brave fellow; but he's vengeance proud, and\nloves not the common people.\n\nSecond Officer:\nFaith, there had been many great men that have\nflattered the people, who ne'er loved them; and there\nbe many that they have loved, they know not\nwherefore: so that, if they love they know not why,\nthey hate upon no better a ground: therefore, for\nCoriolanus neither to care whether they love or hate\nhim manifests the true knowledge he has in their\ndisposition; and out of his noble carelessness lets\nthem plainly see't.\n\nFirst Officer:\nIf he did not care whether he had their love or no,\nhe waved indifferently 'twixt doing them neither\ngood nor harm: but he seeks their hate with greater\ndevotion than can render it him; and leaves\nnothing undone that may fully discover him their\nopposite. Now, to seem to affect the malice and\ndispleasure of the people is as bad as that which he\ndislikes, to flatter them for their love.\n\nSecond Officer:\nHe hath deserved worthily of his country: and his\nascent is not by such easy degrees as those who,\nhaving been supple and courteous to the people,\nbonneted, without any further deed to have them at\nan into their estimation and report: but he hath so\nplanted his honours in their eyes, and his actions\nin their hearts, that for their tongues to be\nsilent, and not confess so much, were a kind of\ningrateful injury; to report otherwise, were a\nmalice, that, giving itself the lie, would pluck\nreproof and rebuke from every ear that heard it.\n\nFirst Officer:\nNo more of him; he is a worthy man: make way, they\nare coming.\n\nMENENIUS:\nHaving determined of the Volsces and\nTo send for Titus Lartius, it remains,\nAs the main point of this our after-meeting,\nTo gratify his noble service that\nHath thus stood for his country: therefore,\nplease you,\nMost reverend and grave elders, to desire\nThe present consul, and last general\nIn our well-found successes, to report\nA little of that worthy work perform'd\nBy Caius Marcius Coriolanus, whom\nWe met here both to thank and to remember\nWith honours like himself.\n\nFirst Senator:\nSpeak, good Cominius:\nLeave nothing out for length, and make us think\nRather our state's defective for requital\nThan we to stretch it out.\nMasters o' the people,\nWe do request your kindest ears, and after,\nYour loving motion toward the common body,\nTo yield what passes here.\n\nSICINIUS:\nWe are convented\nUpon a pleasing treaty, and have hearts\nInclinable to honour and advance\nThe theme of our assembly.\n\nBRUTUS:\nWhich the rather\nWe shall be blest to do, if he remember\nA kinder value of the people than\nHe hath hereto prized them at.\n\nMENENIUS:\nThat's off, that's off;\nI would you rather had been silent. Please you\nTo hear Cominius speak?\n\nBRUTUS:\nMost willingly;\nBut yet my caution was more pertinent\nThan the rebuke you give it.\n\nMENENIUS:\nHe loves your people\nBut tie him not to be their bedfellow.\nWorthy Cominius, speak.\nNay, keep your place.\n\nFirst Senator:\nSit, Coriolanus; never shame to hear\nWhat you have nobly done.\n\nCORIOLANUS:\nYour horror's pardon:\nI had rather have my wounds to heal again\nThan hear say how I got them.\n\nBRUTUS:\nSir, I hope\nMy words disbench'd you not.\n\nCORIOLANUS:\nNo, sir: yet oft,\nWhen blows have made me stay, I fled from words.\nYou soothed not, therefore hurt not: but\nyour people,\nI love them as they weigh.\n\nMENENIUS:\nPray now, sit down.\n\nCORIOLANUS:\nI had rather have one scratch my head i' the sun\nWhen the alarum were struck than idly sit\nTo hear my nothings monster'd.\n\nMENENIUS:\nMasters of the people,\nYour multiplying spawn how can he flatter--\nThat's thousand to one good one--when you now see\nHe had rather venture all his limbs for honour\nThan one on's ears to hear it? Proceed, Cominius.\n\nCOMINIUS:\nI shall lack voice: the deeds of Coriolanus\nShould not be utter'd feebly. It is held\nThat valour is the chiefest virtue, and\nMost dignifies the haver: if it be,\nThe man I speak of cannot in the world\nBe singly counterpoised. At sixteen years,\nWhen Tarquin made a head for Rome, he fought\nBeyond the mark of others: our then dictator,\nWhom with all praise I point at, saw him fight,\nWhen with his Amazonian chin he drove\nThe bristled lips before him: be bestrid\nAn o'er-press'd Roman and i' the consul's view\nSlew three opposers: Tarquin's self he met,\nAnd struck him on his knee: in that day's feats,\nWhen he might act the woman in the scene,\nHe proved best man i' the field, and for his meed\nWas brow-bound with the oak. His pupil age\nMan-enter'd thus, he waxed like a sea,\nAnd in the brunt of seventeen battles since\nHe lurch'd all swords of the garland. For this last,\nBefore and in Corioli, let me say,\nI cannot speak him home: he stopp'd the fliers;\nAnd by his rare example made the coward\nTurn terror into sport: as weeds before\nA vessel under sail, so men obey'd\nAnd fell below his stem: his sword, death's stamp,\nWhere it did mark, it took; from face to foot\nHe was a thing of blood, whose every motion\nWas timed with dying cries: alone he enter'd\nThe mortal gate of the city, which he painted\nWith shunless destiny; aidless came off,\nAnd with a sudden reinforcement struck\nCorioli like a planet: now all's his:\nWhen, by and by, the din of war gan pierce\nHis ready sense; then straight his doubled spirit\nRe-quicken'd what in flesh was fatigate,\nAnd to the battle came he; where he did\nRun reeking o'er the lives of men, as if\n'Twere a perpetual spoil: and till we call'd\nBoth field and city ours, he never stood\nTo ease his breast with panting.\n\nMENENIUS:\nWorthy man!\n\nFirst Senator:\nHe cannot but with measure fit the honours\nWhich we devise him.\n\nCOMINIUS:\nOur spoils he kick'd at,\nAnd look'd upon things precious as they were\nThe common muck of the world: he covets less\nThan misery itself would give; rewards\nHis deeds with doing them, and is content\nTo spend the time to end it.\n\nMENENIUS:\nHe's right noble:\nLet him be call'd for.\n\nFirst Senator:\nCall Coriolanus.\n\nOfficer:\nHe doth appear.\n\nMENENIUS:\nThe senate, Coriolanus, are well pleased\nTo make thee consul.\n\nCORIOLANUS:\nI do owe them still\nMy life and services.\n\nMENENIUS:\nIt then remains\nThat you do speak to the people.\n\nCORIOLANUS:\nI do beseech you,\nLet me o'erleap that custom, for I cannot\nPut on the gown, stand naked and entreat them,\nFor my wounds' sake, to give their suffrage: please you\nThat I may pass this doing.\n\nSICINIUS:\nSir, the people\nMust have their voices; neither will they bate\nOne jot of ceremony.\n\nMENENIUS:\nPut them not to't:\nPray you, go fit you to the custom and\nTake to you, as your predecessors have,\nYour honour with your form.\n\nCORIOLANUS:\nIt is apart\nThat I shall blush in acting, and might well\nBe taken from the people.\n\nBRUTUS:\nMark you that?\n\nCORIOLANUS:\nTo brag unto them, thus I did, and thus;\nShow them the unaching scars which I should hide,\nAs if I had received them for the hire\nOf their breath only!\n\nMENENIUS:\nDo not stand upon't.\nWe recommend to you, tribunes of the people,\nOur purpose to them: and to our noble consul\nWish we all joy and honour.\n\nSenators:\nTo Coriolanus come all joy and honour!\n\nBRUTUS:\nYou see how he intends to use the people.\n\nSICINIUS:\nMay they perceive's intent! He will require them,\nAs if he did contemn what he requested\nShould be in them to give.\n\nBRUTUS:\nCome, we'll inform them\nOf our proceedings here: on the marketplace,\nI know, they do attend us.\n\nFirst Citizen:\nOnce, if he do require our voices, we ought not to deny him.\n\nSecond Citizen:\nWe may, sir, if we will.\n\nThird Citizen:\nWe have power in ourselves to do it, but it is a\npower that we have no power to do; for if he show us\nhis wounds and tell us his deeds, we are to put our\ntongues into those wounds and speak for them; so, if\nhe tell us his noble deeds, we must also tell him\nour noble acceptance of them. Ingratitude is\nmonstrous, and for the multitude to be ingrateful,\nwere to make a monster of the multitude: of the\nwhich we being members, should bring ourselves to be\nmonstrous members.\n\nFirst Citizen:\nAnd to make us no better thought of, a little help\nwill serve; for once we stood up about the corn, he\nhimself stuck not to call us the many-headed multitude.\n\nThird Citizen:\nWe have been called so of many; not that our heads\nare some brown, some black, some auburn, some bald,\nbut that our wits are so diversely coloured: and\ntruly I think if all our wits were to issue out of\none skull, they would fly east, west, north, south,\nand their consent of one direct way should be at\nonce to all the points o' the compass.\n\nSecond Citizen:\nThink you so? Which way do you judge my wit would\nfly?\n\nThird Citizen:\nNay, your wit will not so soon out as another man's\nwill;'tis strongly wedged up in a block-head, but\nif it were at liberty, 'twould, sure, southward.\n\nSecond Citizen:\nWhy that way?\n\nThird Citizen:\nTo lose itself in a fog, where being three parts\nmelted away with rotten dews, the fourth would return\nfor conscience sake, to help to get thee a wife.\n\nSecond Citizen:\nYou are never without your tricks: you may, you may.\n\nThird Citizen:\nAre you all resolved to give your voices? But\nthat's no matter, the greater part carries it. I\nsay, if he would incline to the people, there was\nnever a worthier man.\nHere he comes, and in the gown of humility: mark his\nbehavior. We are not to stay all together, but to\ncome by him where he stands, by ones, by twos, and\nby threes. He's to make his requests by\nparticulars; wherein every one of us has a single\nhonour, in giving him our own voices with our own\ntongues: therefore follow me, and I direct you how\nyou shall go by him.\n\nAll:\nContent, content.\n\nMENENIUS:\nO sir, you are not right: have you not known\nThe worthiest men have done't?\n\nCORIOLANUS:\nWhat must I say?\n'I Pray, sir'--Plague upon't! I cannot bring\nMy tongue to such a pace:--'Look, sir, my wounds!\nI got them in my country's service, when\nSome certain of your brethren roar'd and ran\nFrom the noise of our own drums.'\n\nMENENIUS:\nO me, the gods!\nYou must not speak of that: you must desire them\nTo think upon you.\n\nCORIOLANUS:\nThink upon me! hang 'em!\nI would they would forget me, like the virtues\nWhich our divines lose by 'em.\n\nMENENIUS:\nYou'll mar all:\nI'll leave you: pray you, speak to 'em, I pray you,\nIn wholesome manner.\n\nCORIOLANUS:\nBid them wash their faces\nAnd keep their teeth clean.\nSo, here comes a brace.\nYou know the cause, air, of my standing here.\n\nThird Citizen:\nWe do, sir; tell us what hath brought you to't.\n\nCORIOLANUS:\nMine own desert.\n\nSecond Citizen:\nYour own desert!\n\nCORIOLANUS:\nAy, but not mine own desire.\n\nThird Citizen:\nHow not your own desire?\n\nCORIOLANUS:\nNo, sir,'twas never my desire yet to trouble the\npoor with begging.\n\nThird Citizen:\nYou must think, if we give you any thing, we hope to\ngain by you.\n\nCORIOLANUS:\nWell then, I pray, your price o' the consulship?\n\nFirst Citizen:\nThe price is to ask it kindly.\n\nCORIOLANUS:\nKindly! Sir, I pray, let me ha't: I have wounds to\nshow you, which shall be yours in private. Your\ngood voice, sir; what say you?\n\nSecond Citizen:\nYou shall ha' it, worthy sir.\n\nCORIOLANUS:\nA match, sir. There's in all two worthy voices\nbegged. I have your alms: adieu.\n\nThird Citizen:\nBut this is something odd.\n\nSecond Citizen:\nAn 'twere to give again,--but 'tis no matter.\n\nCORIOLANUS:\nPray you now, if it may stand with the tune of your\nvoices that I may be consul, I have here the\ncustomary gown.\n\nFourth Citizen:\nYou have deserved nobly of your country, and you\nhave not deserved nobly.\n\nCORIOLANUS:\nYour enigma?\n\nFourth Citizen:\nYou have been a scourge to her enemies, you have\nbeen a rod to her friends; you have not indeed loved\nthe common people.\n\nCORIOLANUS:\nYou should account me the more virtuous that I have\nnot been common in my love. I will, sir, flatter my\nsworn brother, the people, to earn a dearer\nestimation of them; 'tis a condition they account\ngentle: and since the wisdom of their choice is\nrather to have my hat than my heart, I will practise\nthe insinuating nod and be off to them most\ncounterfeitly; that is, sir, I will counterfeit the\nbewitchment of some popular man and give it\nbountiful to the desirers. Therefore, beseech you,\nI may be consul.\n\nFifth Citizen:\nWe hope to find you our friend; and therefore give\nyou our voices heartily.\n\nFourth Citizen:\nYou have received many wounds for your country.\n\nCORIOLANUS:\nI will not seal your knowledge with showing them. I\nwill make much of your voices, and so trouble you no further.\n\nBoth Citizens:\nThe gods give you joy, sir, heartily!\n\nCORIOLANUS:\nMost sweet voices!\nBetter it is to die, better to starve,\nThan crave the hire which first we do deserve.\nWhy in this woolvish toge should I stand here,\nTo beg of Hob and Dick, that do appear,\nTheir needless vouches? Custom calls me to't:\nWhat custom wills, in all things should we do't,\nThe dust on antique time would lie unswept,\nAnd mountainous error be too highly heapt\nFor truth to o'er-peer. Rather than fool it so,\nLet the high office and the honour go\nTo one that would do thus. I am half through;\nThe one part suffer'd, the other will I do.\nHere come more voices.\nYour voices: for your voices I have fought;\nWatch'd for your voices; for Your voices bear\nOf wounds two dozen odd; battles thrice six\nI have seen and heard of; for your voices have\nDone many things, some less, some more your voices:\nIndeed I would be consul.\n\nSixth Citizen:\nHe has done nobly, and cannot go without any honest\nman's voice.\n\nSeventh Citizen:\nTherefore let him be consul: the gods give him joy,\nand make him good friend to the people!\n\nAll Citizens:\nAmen, amen. God save thee, noble consul!\n\nCORIOLANUS:\nWorthy voices!\n\nMENENIUS:\nYou have stood your limitation; and the tribunes\nEndue you with the people's voice: remains\nThat, in the official marks invested, you\nAnon do meet the senate.\n\nCORIOLANUS:\nIs this done?\n\nSICINIUS:\nThe custom of request you have discharged:\nThe people do admit you, and are summon'd\nTo meet anon, upon your approbation.\n\nCORIOLANUS:\nWhere? at the senate-house?\n\nSICINIUS:\nThere, Coriolanus.\n\nCORIOLANUS:\nMay I change these garments?\n\nSICINIUS:\nYou may, sir.\n\nCORIOLANUS:\nThat I'll straight do; and, knowing myself again,\nRepair to the senate-house.\n\nMENENIUS:\nI'll keep you company. Will you along?\n\nBRUTUS:\nWe stay here for the people.\n\nSICINIUS:\nFare you well.\nHe has it now, and by his looks methink\n'Tis warm at 's heart.\n\nBRUTUS:\nWith a proud heart he wore his humble weeds.\nwill you dismiss the people?\n\nSICINIUS:\nHow now, my masters! have you chose this man?\n\nFirst Citizen:\nHe has our voices, sir.\n\nBRUTUS:\nWe pray the gods he may deserve your loves.\n\nSecond Citizen:\nAmen, sir: to my poor unworthy notice,\nHe mock'd us when he begg'd our voices.\n\nThird Citizen:\nCertainly\nHe flouted us downright.\n\nFirst Citizen:\nNo,'tis his kind of speech: he did not mock us.\n\nSecond Citizen:\nNot one amongst us, save yourself, but says\nHe used us scornfully: he should have show'd us\nHis marks of merit, wounds received for's country.\n\nSICINIUS:\nWhy, so he did, I am sure.\n\nCitizens:\nNo, no; no man saw 'em.\n\nThird Citizen:\nHe said he had wounds, which he could show\nin private;\nAnd with his hat, thus waving it in scorn,\n'I would be consul,' says he: 'aged custom,\nBut by your voices, will not so permit me;\nYour voices therefore.' When we granted that,\nHere was 'I thank you for your voices: thank you:\nYour most sweet voices: now you have left\nyour voices,\nI have no further with you.' Was not this mockery?\n\nSICINIUS:\nWhy either were you ignorant to see't,\nOr, seeing it, of such childish friendliness\nTo yield your voices?\n\nBRUTUS:\nCould you not have told him\nAs you were lesson'd, when he had no power,\nBut was a petty servant to the state,\nHe was your enemy, ever spake against\nYour liberties and the charters that you bear\nI' the body of the weal; and now, arriving\nA place of potency and sway o' the state,\nIf he should still malignantly remain\nFast foe to the plebeii, your voices might\nBe curses to yourselves? You should have said\nThat as his worthy deeds did claim no less\nThan what he stood for, so his gracious nature\nWould think upon you for your voices and\nTranslate his malice towards you into love,\nStanding your friendly lord.\n\nSICINIUS:\nThus to have said,\nAs you were fore-advised, had touch'd his spirit\nAnd tried his inclination; from him pluck'd\nEither his gracious promise, which you might,\nAs cause had call'd you up, have held him to\nOr else it would have gall'd his surly nature,\nWhich easily endures not article\nTying him to aught; so putting him to rage,\nYou should have ta'en the advantage of his choler\nAnd pass'd him unelected.\n\nBRUTUS:\nDid you perceive\nHe did solicit you in free contempt\nWhen he did need your loves, and do you think\nThat his contempt shall not be bruising to you,\nWhen he hath power to crush? Why, had your bodies\nNo heart among you? or had you tongues to cry\nAgainst the rectorship of judgment?\n\nSICINIUS:\nHave you\nEre now denied the asker? and now again\nOf him that did not ask, but mock, bestow\nYour sued-for tongues?\n\nThird Citizen:\nHe's not confirm'd; we may deny him yet.\n\nSecond Citizen:\nAnd will deny him:\nI'll have five hundred voices of that sound.\n\nFirst Citizen:\nI twice five hundred and their friends to piece 'em.\n\nBRUTUS:\nGet you hence instantly, and tell those friends,\nThey have chose a consul that will from them take\nTheir liberties; make them of no more voice\nThan dogs that are as often beat for barking\nAs therefore kept to do so.\n\nSICINIUS:\nLet them assemble,\nAnd on a safer judgment all revoke\nYour ignorant election; enforce his pride,\nAnd his old hate unto you; besides, forget not\nWith what contempt he wore the humble weed,\nHow in his suit he scorn'd you; but your loves,\nThinking upon his services, took from you\nThe apprehension of his present portance,\nWhich most gibingly, ungravely, he did fashion\nAfter the inveterate hate he bears you.\n\nBRUTUS:\nLay\nA fault on us, your tribunes; that we laboured,\nNo impediment between, but that you must\nCast your election on him.\n\nSICINIUS:\nSay, you chose him\nMore after our commandment than as guided\nBy your own true affections, and that your minds,\nPreoccupied with what you rather must do\nThan what you should, made you against the grain\nTo voice him consul: lay the fault on us.\n\nBRUTUS:\nAy, spare us not. Say we read lectures to you.\nHow youngly he began to serve his country,\nHow long continued, and what stock he springs of,\nThe noble house o' the Marcians, from whence came\nThat Ancus Marcius, Numa's daughter's son,\nWho, after great Hostilius, here was king;\nOf the same house Publius and Quintus were,\nThat our beat water brought by conduits hither;\nAnd  \nTwice being  \nWas his great ancestor.\n\nSICINIUS:\nOne thus descended,\nThat hath beside well in his person wrought\nTo be set high in place, we did commend\nTo your remembrances: but you have found,\nScaling his present bearing with his past,\nThat he's your fixed enemy, and revoke\nYour sudden approbation.\n\nBRUTUS:\nSay, you ne'er had done't--\nHarp on that still--but by our putting on;\nAnd presently, when you have drawn your number,\nRepair to the Capitol.\n\nAll:\nWe will so: almost all\nRepent in their election.\n\nBRUTUS:\nLet them go on;\nThis mutiny were better put in hazard,\nThan stay, past doubt, for greater:\nIf, as his nature is, he fall in rage\nWith their refusal, both observe and answer\nThe vantage of his anger.\n\nSICINIUS:\nTo the Capitol, come:\nWe will be there before the stream o' the people;\nAnd this shall seem, as partly 'tis, their own,\nWhich we have goaded onward.\n\nCORIOLANUS:\nTullus Aufidius then had made new head?\n\nLARTIUS:\nHe had, my lord; and that it was which caused\nOur swifter composition.\n\nCORIOLANUS:\nSo then the Volsces stand but as at first,\nReady, when time shall prompt them, to make road.\nUpon's again.\n\nCOMINIUS:\nThey are worn, lord consul, so,\nThat we shall hardly in our ages see\nTheir banners wave again.\n\nCORIOLANUS:\nSaw you Aufidius?\n\nLARTIUS:\nOn safe-guard he came to me; and did curse\nAgainst the Volsces, for they had so vilely\nYielded the town: he is retired to Antium.\n\nCORIOLANUS:\nSpoke he of me?\n\nLARTIUS:\nHe did, my lord.\n\nCORIOLANUS:\nHow? what?\n\nLARTIUS:\nHow often he had met you, sword to sword;\nThat of all things upon the earth he hated\nYour person most, that he would pawn his fortunes\nTo hopeless restitution, so he might\nBe call'd your vanquisher.\n\nCORIOLANUS:\nAt Antium lives he?\n\nLARTIUS:\nAt Antium.\n\nCORIOLANUS:\nI wish I had a cause to seek him there,\nTo oppose his hatred fully. Welcome home.\nBehold, these are the tribunes of the people,\nThe tongues o' the common mouth: I do despise them;\nFor they do prank them in authority,\nAgainst all noble sufferance.\n\nSICINIUS:\nPass no further.\n\nCORIOLANUS:\nHa! what is that?\n\nBRUTUS:\nIt will be dangerous to go on: no further.\n\nCORIOLANUS:\nWhat makes this change?\n\nMENENIUS:\nThe matter?\n\nCOMINIUS:\nHath he not pass'd the noble and the common?\n\nBRUTUS:\nCominius, no.\n\nCORIOLANUS:\nHave I had children's voices?\n\nFirst Senator:\nTribunes, give way; he shall to the market-place.\n\nBRUTUS:\nThe people are incensed against him.\n\nSICINIUS:\nStop,\nOr all will fall in broil.\n\nCORIOLANUS:\nAre these your herd?\nMust these have voices, that can yield them now\nAnd straight disclaim their tongues? What are\nyour offices?\nYou being their mouths, why rule you not their teeth?\nHave you not set them on?\n\nMENENIUS:\nBe calm, be calm.\n\nCORIOLANUS:\nIt is a purposed thing, and grows by plot,\nTo curb the will of the nobility:\nSuffer't, and live with such as cannot rule\nNor ever will be ruled.\n\nBRUTUS:\nCall't not a plot:\nThe people cry you mock'd them, and of late,\nWhen corn was given them gratis, you repined;\nScandal'd the suppliants for the people, call'd them\nTime-pleasers, flatterers, foes to nobleness.\n\nCORIOLANUS:\nWhy, this was known before.\n\nBRUTUS:\nNot to them all.\n\nCORIOLANUS:\nHave you inform'd them sithence?\n\nBRUTUS:\nHow! I inform them!\n\nCORIOLANUS:\nYou are like to do such business.\n\nBRUTUS:\nNot unlike,\nEach way, to better yours.\n\nCORIOLANUS:\nWhy then should I be consul? By yond clouds,\nLet me deserve so ill as you, and make me\nYour fellow tribune.\n\nSICINIUS:\nYou show too much of that\nFor which the people stir: if you will pass\nTo where you are bound, you must inquire your way,\nWhich you are out of, with a gentler spirit,\nOr never be so noble as a consul,\nNor yoke with him for tribune.\n\nMENENIUS:\nLet's be calm.\n\nCOMINIUS:\nThe people are abused; set on. This paltering\nBecomes not Rome, nor has Coriolanus\nDeserved this so dishonour'd rub, laid falsely\nI' the plain way of his merit.\n\nCORIOLANUS:\nTell me of corn!\nThis was my speech, and I will speak't again--\n\nMENENIUS:\nNot now, not now.\n\nFirst Senator:\nNot in this heat, sir, now.\n\nCORIOLANUS:\nNow, as I live, I will. My nobler friends,\nI crave their pardons:\nFor the mutable, rank-scented many, let them\nRegard me as I do not flatter, and\nTherein behold themselves: I say again,\nIn soothing them, we nourish 'gainst our senate\nThe cockle of rebellion, insolence, sedition,\nWhich we ourselves have plough'd for, sow'd,\nand scatter'd,\nBy mingling them with us, the honour'd number,\nWho lack not virtue, no, nor power, but that\nWhich they have given to beggars.\n\nMENENIUS:\nWell, no more.\n\nFirst Senator:\nNo more words, we beseech you.\n\nCORIOLANUS:\nHow! no more!\nAs for my country I have shed my blood,\nNot fearing outward force, so shall my lungs\nCoin words till their decay against those measles,\nWhich we disdain should tatter us, yet sought\nThe very way to catch them.\n\nBRUTUS:\nYou speak o' the people,\nAs if you were a god to punish, not\nA man of their infirmity.\n\nSICINIUS:\n'Twere well\nWe let the people know't.\n\nMENENIUS:\nWhat, what? his choler?\n\nCORIOLANUS:\nCholer!\nWere I as patient as the midnight sleep,\nBy Jove, 'twould be my mind!\n\nSICINIUS:\nIt is a mind\nThat shall remain a poison where it is,\nNot poison any further.\n\nCORIOLANUS:\nShall remain!\nHear you this Triton of the minnows? mark you\nHis absolute 'shall'?\n\nCOMINIUS:\n'Twas from the canon.\n\nCORIOLANUS:\n'Shall'!\nO good but most unwise patricians! why,\nYou grave but reckless senators, have you thus\nGiven Hydra here to choose an officer,\nThat with his peremptory 'shall,' being but\nThe horn and noise o' the monster's, wants not spirit\nTo say he'll turn your current in a ditch,\nAnd make your channel his? If he have power\nThen vail your ignorance; if none, awake\nYour dangerous lenity. If you are learn'd,\nBe not as common fools; if you are not,\nLet them have cushions by you. You are plebeians,\nIf they be senators: and they are no less,\nWhen, both your voices blended, the great'st taste\nMost palates theirs. They choose their magistrate,\nAnd such a one as he, who puts his 'shall,'\nHis popular 'shall' against a graver bench\nThan ever frown in Greece. By Jove himself!\nIt makes the consuls base: and my soul aches\nTo know, when two authorities are up,\nNeither supreme, how soon confusion\nMay enter 'twixt the gap of both and take\nThe one by the other.\n\nCOMINIUS:\nWell, on to the market-place.\n\nCORIOLANUS:\nWhoever gave that counsel, to give forth\nThe corn o' the storehouse gratis, as 'twas used\nSometime in Greece,--\n\nMENENIUS:\nWell, well, no more of that.\n\nCORIOLANUS:\nThough there the people had more absolute power,\nI say, they nourish'd disobedience, fed\nThe ruin of the state.\n\nBRUTUS:\nWhy, shall the people give\nOne that speaks thus their voice?\n\nCORIOLANUS:\nI'll give my reasons,\nMore worthier than their voices. They know the corn\nWas not our recompense, resting well assured\nThat ne'er did service for't: being press'd to the war,\nEven when the navel of the state was touch'd,\nThey would not thread the gates. This kind of service\nDid not deserve corn gratis. Being i' the war\nTheir mutinies and revolts, wherein they show'd\nMost valour, spoke not for them: the accusation\nWhich they have often made against the senate,\nAll cause unborn, could never be the motive\nOf our so frank donation. Well, what then?\nHow shall this bisson multitude digest\nThe senate's courtesy? Let deeds express\nWhat's like to be their words: 'we did request it;\nWe are the greater poll, and in true fear\nThey gave us our demands.' Thus we debase\nThe nature of our seats and make the rabble\nCall our cares fears; which will in time\nBreak ope the locks o' the senate and bring in\nThe crows to peck the eagles.\n\nMENENIUS:\nCome, enough.\n\nBRUTUS:\nEnough, with over-measure.\n\nCORIOLANUS:\nNo, take more:\nWhat may be sworn by, both divine and human,\nSeal what I end withal! This double worship,\nWhere one part does disdain with cause, the other\nInsult without all reason, where gentry, title, wisdom,\nCannot conclude but by the yea and no\nOf general ignorance,--it must omit\nReal necessities, and give way the while\nTo unstable slightness: purpose so barr'd,\nit follows,\nNothing is done to purpose. Therefore, beseech you,--\nYou that will be less fearful than discreet,\nThat love the fundamental part of state\nMore than you doubt the change on't, that prefer\nA noble life before a long, and wish\nTo jump a body with a dangerous physic\nThat's sure of death without it, at once pluck out\nThe multitudinous tongue; let them not lick\nThe sweet which is their poison: your dishonour\nMangles true judgment and bereaves the state\nOf that integrity which should become't,\nNot having the power to do the good it would,\nFor the in which doth control't.\n\nBRUTUS:\nHas said enough.\n\nSICINIUS:\nHas spoken like a traitor, and shall answer\nAs traitors do.\n\nCORIOLANUS:\nThou wretch, despite o'erwhelm thee!\nWhat should the people do with these bald tribunes?\nOn whom depending, their obedience fails\nTo the greater bench: in a rebellion,\nWhen what's not meet, but what must be, was law,\nThen were they chosen: in a better hour,\nLet what is meet be said it must be meet,\nAnd throw their power i' the dust.\n\nBRUTUS:\nManifest treason!\n\nSICINIUS:\nThis a consul? no.\n\nBRUTUS:\nThe aediles, ho!\nLet him be apprehended.\n\nSICINIUS:\nGo, call the people:\nin whose name myself\nAttach thee as a traitorous innovator,\nA foe to the public weal: obey, I charge thee,\nAnd follow to thine answer.\n\nCORIOLANUS:\nHence, old goat!\n\nSenators, &C:\nWe'll surety him.\n\nCOMINIUS:\nAged sir, hands off.\n\nCORIOLANUS:\nHence, rotten thing! or I shall shake thy bones\nOut of thy garments.\n\nSICINIUS:\nHelp, ye citizens!\n\nMENENIUS:\nOn both sides more respect.\n\nSICINIUS:\nHere's he that would take from you all your power.\n\nBRUTUS:\nSeize him, AEdiles!\n\nCitizens:\nDown with him! down with him!\n\nSenators, &C:\nWeapons, weapons, weapons!\n'Tribunes!' 'Patricians!' 'Citizens!' 'What, ho!'\n'Sicinius!' 'Brutus!' 'Coriolanus!' 'Citizens!'\n'Peace, peace, peace!' 'Stay, hold, peace!'\n\nMENENIUS:\nWhat is about to be? I am out of breath;\nConfusion's near; I cannot speak. You, tribunes\nTo the people! Coriolanus, patience!\nSpeak, good Sicinius.\n\nSICINIUS:\nHear me, people; peace!\n\nCitizens:\nLet's hear our tribune: peace Speak, speak, speak.\n\nSICINIUS:\nYou are at point to lose your liberties:\nMarcius would have all from you; Marcius,\nWhom late you have named for consul.\n\nMENENIUS:\nFie, fie, fie!\nThis is the way to kindle, not to quench.\n\nFirst Senator:\nTo unbuild the city and to lay all flat.\n\nSICINIUS:\nWhat is the city but the people?\n\nCitizens:\nTrue,\nThe people are the city.\n\nBRUTUS:\nBy the consent of all, we were establish'd\nThe people's magistrates.\n\nCitizens:\nYou so remain.\n\nMENENIUS:\nAnd so are like to do.\n\nCOMINIUS:\nThat is the way to lay the city flat;\nTo bring the roof to the foundation,\nAnd bury all, which yet distinctly ranges,\nIn heaps and piles of ruin.\n\nSICINIUS:\nThis deserves death.\n\nBRUTUS:\nOr let us stand to our authority,\nOr let us lose it. We do here pronounce,\nUpon the part o' the people, in whose power\nWe were elected theirs, Marcius is worthy\nOf present death.\n\nSICINIUS:\nTherefore lay hold of him;\nBear him to the rock Tarpeian, and from thence\nInto destruction cast him.\n\nBRUTUS:\nAEdiles, seize him!\n\nCitizens:\nYield, Marcius, yield!\n\nMENENIUS:\nHear me one word;\nBeseech you, tribunes, hear me but a word.\n\nAEdile:\nPeace, peace!\n\nMENENIUS:\n\nBRUTUS:\nSir, those cold ways,\nThat seem like prudent helps, are very poisonous\nWhere the disease is violent. Lay hands upon him,\nAnd bear him to the rock.\n\nCORIOLANUS:\nNo, I'll die here.\nThere's some among you have beheld me fighting:\nCome, try upon yourselves what you have seen me.\n\nMENENIUS:\nDown with that sword! Tribunes, withdraw awhile.\n\nBRUTUS:\nLay hands upon him.\n\nCOMINIUS:\nHelp Marcius, help,\nYou that be noble; help him, young and old!\n\nCitizens:\nDown with him, down with him!\n\nMENENIUS:\nGo, get you to your house; be gone, away!\nAll will be naught else.\n\nSecond Senator:\nGet you gone.\n\nCOMINIUS:\nStand fast;\nWe have as many friends as enemies.\n\nMENENIUS:\nSham it be put to that?\n\nFirst Senator:\nThe gods forbid!\nI prithee, noble friend, home to thy house;\nLeave us to cure this cause.\n\nMENENIUS:\nFor 'tis a sore upon us,\nYou cannot tent yourself: be gone, beseech you.\n\nCOMINIUS:\nCome, sir, along with us.\n\nCORIOLANUS:\nI would they were barbarians--as they are,\nThough in Rome litter'd--not Romans--as they are not,\nThough calved i' the porch o' the Capitol--\n\nMENENIUS:\nBe gone;\nPut not your worthy rage into your tongue;\nOne time will owe another.\n\nCORIOLANUS:\nOn fair ground\nI could beat forty of them.\n\nCOMINIUS:\nI could myself\nTake up a brace o' the best of them; yea, the\ntwo tribunes:\nBut now 'tis odds beyond arithmetic;\nAnd manhood is call'd foolery, when it stands\nAgainst a falling fabric. Will you hence,\nBefore the tag return? whose rage doth rend\nLike interrupted waters and o'erbear\nWhat they are used to bear.\n\nMENENIUS:\nPray you, be gone:\nI'll try whether my old wit be in request\nWith those that have but little: this must be patch'd\nWith cloth of any colour.\n\nCOMINIUS:\nNay, come away.\n\nA Patrician:\nThis man has marr'd his fortune.\n\nMENENIUS:\nHis nature is too noble for the world:\nHe would not flatter Neptune for his trident,\nOr Jove for's power to thunder. His heart's his mouth:\nWhat his breast forges, that his tongue must vent;\nAnd, being angry, does forget that ever\nHe heard the name of death.\nHere's goodly work!\n\nSecond Patrician:\nI would they were abed!\n\nMENENIUS:\nI would they were in Tiber! What the vengeance!\nCould he not speak 'em fair?\n\nSICINIUS:\nWhere is this viper\nThat would depopulate the city and\nBe every man himself?\n\nMENENIUS:\nYou worthy tribunes,--\n\nSICINIUS:\nHe shall be thrown down the Tarpeian rock\nWith rigorous hands: he hath resisted law,\nAnd therefore law shall scorn him further trial\nThan the severity of the public power\nWhich he so sets at nought.\n\nFirst Citizen:\nHe shall well know\nThe noble tribunes are the people's mouths,\nAnd we their hands.\n\nCitizens:\nHe shall, sure on't.\n\nMENENIUS:\nSir, sir,--\n\nSICINIUS:\nPeace!\n\nMENENIUS:\nDo not cry havoc, where you should but hunt\nWith modest warrant.\n\nSICINIUS:\nSir, how comes't that you\nHave holp to make this rescue?\n\nMENENIUS:\nHear me speak:\nAs I do know the consul's worthiness,\nSo can I name his faults,--\n\nSICINIUS:\nConsul! what consul?\n\nMENENIUS:\nThe consul Coriolanus.\n\nBRUTUS:\nHe consul!\n\nCitizens:\nNo, no, no, no, no.\n\nMENENIUS:\nIf, by the tribunes' leave, and yours, good people,\nI may be heard, I would crave a word or two;\nThe which shall turn you to no further harm\nThan so much loss of time.\n\nSICINIUS:\nSpeak briefly then;\nFor we are peremptory to dispatch\nThis viperous traitor: to eject him hence\nWere but one danger, and to keep him here\nOur certain death: therefore it is decreed\nHe dies to-night.\n\nMENENIUS:\nNow the good gods forbid\nThat our renowned Rome, whose gratitude\nTowards her deserved children is enroll'd\nIn Jove's own book, like an unnatural dam\nShould now eat up her own!\n\nSICINIUS:\nHe's a disease that must be cut away.\n\nMENENIUS:\nO, he's a limb that has but a disease;\nMortal, to cut it off; to cure it, easy.\nWhat has he done to Rome that's worthy death?\nKilling our enemies, the blood he hath lost--\nWhich, I dare vouch, is more than that he hath,\nBy many an ounce--he dropp'd it for his country;\nAnd what is left, to lose it by his country,\nWere to us all, that do't and suffer it,\nA brand to the end o' the world.\n\nSICINIUS:\nThis is clean kam.\n\nBRUTUS:\nMerely awry: when he did love his country,\nIt honour'd him.\n\nMENENIUS:\nThe service of the foot\nBeing once gangrened, is not then respected\nFor what before it was.\n\nBRUTUS:\nWe'll hear no more.\nPursue him to his house, and pluck him thence:\nLest his infection, being of catching nature,\nSpread further.\n\nMENENIUS:\nOne word more, one word.\nThis tiger-footed rage, when it shall find\nThe harm of unscann'd swiftness, will too late\nTie leaden pounds to's heels. Proceed by process;\nLest parties, as he is beloved, break out,\nAnd sack great Rome with Romans.\n\nBRUTUS:\nIf it were so,--\n\nSICINIUS:\nWhat do ye talk?\nHave we not had a taste of his obedience?\nOur aediles smote? ourselves resisted? Come.\n\nMENENIUS:\nConsider this: he has been bred i' the wars\nSince he could draw a sword, and is ill school'd\nIn bolted language; meal and bran together\nHe throws without distinction. Give me leave,\nI'll go to him, and undertake to bring him\nWhere he shall answer, by a lawful form,\nIn peace, to his utmost peril.\n\nFirst Senator:\nNoble tribunes,\nIt is the humane way: the other course\nWill prove too bloody, and the end of it\nUnknown to the beginning.\n\nSICINIUS:\nNoble Menenius,\nBe you then as the people's officer.\nMasters, lay down your weapons.\n\nBRUTUS:\nGo not home.\n\nSICINIUS:\nMeet on the market-place. We'll attend you there:\nWhere, if you bring not Marcius, we'll proceed\nIn our first way.\n\nMENENIUS:\nI'll bring him to you.\nLet me desire your company: he must come,\nOr what is worst will follow.\n\nFirst Senator:\nPray you, let's to him.\n\nCORIOLANUS:\nLet them puff all about mine ears, present me\nDeath on the wheel or at wild horses' heels,\nOr pile ten hills on the Tarpeian rock,\nThat the precipitation might down stretch\nBelow the beam of sight, yet will I still\nBe thus to them.\n\nA Patrician:\nYou do the nobler.\n\nCORIOLANUS:\nI muse my mother\nDoes not approve me further, who was wont\nTo call them woollen vassals, things created\nTo buy and sell with groats, to show bare heads\nIn congregations, to yawn, be still and wonder,\nWhen one but of my ordinance stood up\nTo speak of peace or war.\nI talk of you:\nWhy did you wish me milder? would you have me\nFalse to my nature? Rather say I play\nThe man I am.\n\nVOLUMNIA:\nO, sir, sir, sir,\nI would have had you put your power well on,\nBefore you had worn it out.\n\nCORIOLANUS:\nLet go.\n\nVOLUMNIA:\nYou might have been enough the man you are,\nWith striving less to be so; lesser had been\nThe thwartings of your dispositions, if\nYou had not show'd them how ye were disposed\nEre they lack'd power to cross you.\n\nCORIOLANUS:\nLet them hang.\n\nA Patrician:\nAy, and burn too.\n\nMENENIUS:\nCome, come, you have been too rough, something\ntoo rough;\nYou must return and mend it.\n\nFirst Senator:\nThere's no remedy;\nUnless, by not so doing, our good city\nCleave in the midst, and perish.\n\nVOLUMNIA:\nPray, be counsell'd:\nI have a heart as little apt as yours,\nBut yet a brain that leads my use of anger\nTo better vantage.\n\nMENENIUS:\nWell said, noble woman?\nBefore he should thus stoop to the herd, but that\nThe violent fit o' the time craves it as physic\nFor the whole state, I would put mine armour on,\nWhich I can scarcely bear.\n\nCORIOLANUS:\nWhat must I do?\n\nMENENIUS:\nReturn to the tribunes.\n\nCORIOLANUS:\nWell, what then? what then?\n\nMENENIUS:\nRepent what you have spoke.\n\nCORIOLANUS:\nFor them! I cannot do it to the gods;\nMust I then do't to them?\n\nVOLUMNIA:\nYou are too absolute;\nThough therein you can never be too noble,\nBut when extremities speak. I have heard you say,\nHonour and policy, like unsever'd friends,\nI' the war do grow together: grant that, and tell me,\nIn peace what each of them by the other lose,\nThat they combine not there.\n\nCORIOLANUS:\nTush, tush!\n\nMENENIUS:\nA good demand.\n\nVOLUMNIA:\nIf it be honour in your wars to seem\nThe same you are not, which, for your best ends,\nYou adopt your policy, how is it less or worse,\nThat it shall hold companionship in peace\nWith honour, as in war, since that to both\nIt stands in like request?\n\nCORIOLANUS:\nWhy force you this?\n\nVOLUMNIA:\nBecause that now it lies you on to speak\nTo the people; not by your own instruction,\nNor by the matter which your heart prompts you,\nBut with such words that are but rooted in\nYour tongue, though but bastards and syllables\nOf no allowance to your bosom's truth.\nNow, this no more dishonours you at all\nThan to take in a town with gentle words,\nWhich else would put you to your fortune and\nThe hazard of much blood.\nI would dissemble with my nature where\nMy fortunes and my friends at stake required\nI should do so in honour: I am in this,\nYour wife, your son, these senators, the nobles;\nAnd you will rather show our general louts\nHow you can frown than spend a fawn upon 'em,\nFor the inheritance of their loves and safeguard\nOf what that want might ruin.\n\nMENENIUS:\nNoble lady!\nCome, go with us; speak fair: you may salve so,\nNot what is dangerous present, but the loss\nOf what is past.\n\nVOLUMNIA:\nI prithee now, my son,\nGo to them, with this bonnet in thy hand;\nAnd thus far having stretch'd it--here be with them--\nThy knee bussing the stones--for in such business\nAction is eloquence, and the eyes of the ignorant\nMore learned than the ears--waving thy head,\nWhich often, thus, correcting thy stout heart,\nNow humble as the ripest mulberry\nThat will not hold the handling: or say to them,\nThou art their soldier, and being bred in broils\nHast not the soft way which, thou dost confess,\nWere fit for thee to use as they to claim,\nIn asking their good loves, but thou wilt frame\nThyself, forsooth, hereafter theirs, so far\nAs thou hast power and person.\n\nMENENIUS:\nThis but done,\nEven as she speaks, why, their hearts were yours;\nFor they have pardons, being ask'd, as free\nAs words to little purpose.\n\nVOLUMNIA:\nPrithee now,\nGo, and be ruled: although I know thou hadst rather\nFollow thine enemy in a fiery gulf\nThan flatter him in a bower. Here is Cominius.\n\nCOMINIUS:\nI have been i' the market-place; and, sir,'tis fit\nYou make strong party, or defend yourself\nBy calmness or by absence: all's in anger.\n\nMENENIUS:\nOnly fair speech.\n\nCOMINIUS:\nI think 'twill serve, if he\nCan thereto frame his spirit.\n\nVOLUMNIA:\nHe must, and will\nPrithee now, say you will, and go about it.\n\nCORIOLANUS:\nMust I go show them my unbarbed sconce?\nMust I with base tongue give my noble heart\nA lie that it must bear? Well, I will do't:\nYet, were there but this single plot to lose,\nThis mould of Marcius, they to dust should grind it\nAnd throw't against the wind. To the market-place!\nYou have put me now to such a part which never\nI shall discharge to the life.\n\nCOMINIUS:\nCome, come, we'll prompt you.\n\nVOLUMNIA:\nI prithee now, sweet son, as thou hast said\nMy praises made thee first a soldier, so,\nTo have my praise for this, perform a part\nThou hast not done before.\n\nCORIOLANUS:\nWell, I must do't:\nAway, my disposition, and possess me\nSome harlot's spirit! my throat of war be turn'd,\nWhich quired with my drum, into a pipe\nSmall as an eunuch, or the virgin voice\nThat babies lulls asleep! the smiles of knaves\nTent in my cheeks, and schoolboys' tears take up\nThe glasses of my sight! a beggar's tongue\nMake motion through my lips, and my arm'd knees,\nWho bow'd but in my stirrup, bend like his\nThat hath received an alms! I will not do't,\nLest I surcease to honour mine own truth\nAnd by my body's action teach my mind\nA most inherent baseness.\n\nVOLUMNIA:\nAt thy choice, then:\nTo beg of thee, it is my more dishonour\nThan thou of them. Come all to ruin; let\nThy mother rather feel thy pride than fear\nThy dangerous stoutness, for I mock at death\nWith as big heart as thou. Do as thou list\nThy valiantness was mine, thou suck'dst it from me,\nBut owe thy pride thyself.\n\nCORIOLANUS:\nPray, be content:\nMother, I am going to the market-place;\nChide me no more. I'll mountebank their loves,\nCog their hearts from them, and come home beloved\nOf all the trades in Rome. Look, I am going:\nCommend me to my wife. I'll return consul;\nOr never trust to what my tongue can do\nI' the way of flattery further.\n\nVOLUMNIA:\nDo your will.\n\nCOMINIUS:\nAway! the tribunes do attend you: arm yourself\nTo answer mildly; for they are prepared\nWith accusations, as I hear, more strong\nThan are upon you yet.\n\nCORIOLANUS:\nThe word is 'mildly.' Pray you, let us go:\nLet them accuse me by invention, I\nWill answer in mine honour.\n\nMENENIUS:\nAy, but mildly.\n\nCORIOLANUS:\nWell, mildly be it then. Mildly!\n\nBRUTUS:\nIn this point charge him home, that he affects\nTyrannical power: if he evade us there,\nEnforce him with his envy to the people,\nAnd that the spoil got on the Antiates\nWas ne'er distributed.\nWhat, will he come?\n\nAEdile:\nHe's coming.\n\nBRUTUS:\nHow accompanied?\n\nAEdile:\nWith old Menenius, and those senators\nThat always favour'd him.\n\nSICINIUS:\nHave you a catalogue\nOf all the voices that we have procured\nSet down by the poll?\n\nAEdile:\nI have; 'tis ready.\n\nSICINIUS:\nHave you collected them by tribes?\n\nAEdile:\nI have.\n\nSICINIUS:\nAssemble presently the people hither;\nAnd when they bear me say 'It shall be so\nI' the right and strength o' the commons,' be it either\nFor death, for fine, or banishment, then let them\nIf I say fine, cry 'Fine;' if death, cry 'Death.'\nInsisting on the old prerogative\nAnd power i' the truth o' the cause.\n\nAEdile:\nI shall inform them.\n\nBRUTUS:\nAnd when such time they have begun to cry,\nLet them not cease, but with a din confused\nEnforce the present execution\nOf what we chance to sentence.\n\nAEdile:\nVery well.\n\nSICINIUS:\nMake them be strong and ready for this hint,\nWhen we shall hap to give 't them.\n\nBRUTUS:\nGo about it.\nPut him to choler straight: he hath been used\nEver to conquer, and to have his worth\nOf contradiction: being once chafed, he cannot\nBe rein'd again to temperance; then he speaks\nWhat's in his heart; and that is there which looks\nWith us to break his neck.\n\nSICINIUS:\nWell, here he comes.\n\nMENENIUS:\nCalmly, I do beseech you.\n\nCORIOLANUS:\nAy, as an ostler, that for the poorest piece\nWill bear the knave by the volume. The honour'd gods\nKeep Rome in safety, and the chairs of justice\nSupplied with worthy men! plant love among 's!\nThrong our large temples with the shows of peace,\nAnd not our streets with war!\n\nFirst Senator:\nAmen, amen.\n\nMENENIUS:\nA noble wish.\n\nSICINIUS:\nDraw near, ye people.\n\nAEdile:\nList to your tribunes. Audience: peace, I say!\n\nCORIOLANUS:\nFirst, hear me speak.\n\nBoth Tribunes:\nWell, say. Peace, ho!\n\nCORIOLANUS:\nShall I be charged no further than this present?\nMust all determine here?\n\nSICINIUS:\nI do demand,\nIf you submit you to the people's voices,\nAllow their officers and are content\nTo suffer lawful censure for such faults\nAs shall be proved upon you?\n\nCORIOLANUS:\nI am content.\n\nMENENIUS:\nLo, citizens, he says he is content:\nThe warlike service he has done, consider; think\nUpon the wounds his body bears, which show\nLike graves i' the holy churchyard.\n\nCORIOLANUS:\nScratches with briers,\nScars to move laughter only.\n\nMENENIUS:\nConsider further,\nThat when he speaks not like a citizen,\nYou find him like a soldier: do not take\nHis rougher accents for malicious sounds,\nBut, as I say, such as become a soldier,\nRather than envy you.\n\nCOMINIUS:\nWell, well, no more.\n\nCORIOLANUS:\nWhat is the matter\nThat being pass'd for consul with full voice,\nI am so dishonour'd that the very hour\nYou take it off again?\n\nSICINIUS:\nAnswer to us.\n\nCORIOLANUS:\nSay, then: 'tis true, I ought so.\n\nSICINIUS:\nWe charge you, that you have contrived to take\nFrom Rome all season'd office and to wind\nYourself into a power tyrannical;\nFor which you are a traitor to the people.\n\nCORIOLANUS:\nHow! traitor!\n\nMENENIUS:\nNay, temperately; your promise.\n\nCORIOLANUS:\nThe fires i' the lowest hell fold-in the people!\nCall me their traitor! Thou injurious tribune!\nWithin thine eyes sat twenty thousand deaths,\nIn thy hand clutch'd as many millions, in\nThy lying tongue both numbers, I would say\n'Thou liest' unto thee with a voice as free\nAs I do pray the gods.\n\nSICINIUS:\nMark you this, people?\n\nCitizens:\nTo the rock, to the rock with him!\n\nSICINIUS:\nPeace!\nWe need not put new matter to his charge:\nWhat you have seen him do and heard him speak,\nBeating your officers, cursing yourselves,\nOpposing laws with strokes and here defying\nThose whose great power must try him; even this,\nSo criminal and in such capital kind,\nDeserves the extremest death.\n\nBRUTUS:\nBut since he hath\nServed well for Rome,--\n\nCORIOLANUS:\nWhat do you prate of service?\n\nBRUTUS:\nI talk of that, that know it.\n\nCORIOLANUS:\nYou?\n\nMENENIUS:\nIs this the promise that you made your mother?\n\nCOMINIUS:\nKnow, I pray you,--\n\nCORIOLANUS:\nI know no further:\nLet them pronounce the steep Tarpeian death,\nVagabond exile, raying, pent to linger\nBut with a grain a day, I would not buy\nTheir mercy at the price of one fair word;\nNor cheque my courage for what they can give,\nTo have't with saying 'Good morrow.'\n\nSICINIUS:\nFor that he has,\nAs much as in him lies, from time to time\nEnvied against the people, seeking means\nTo pluck away their power, as now at last\nGiven hostile strokes, and that not in the presence\nOf dreaded justice, but on the ministers\nThat do distribute it; in the name o' the people\nAnd in the power of us the tribunes, we,\nEven from this instant, banish him our city,\nIn peril of precipitation\nFrom off the rock Tarpeian never more\nTo enter our Rome gates: i' the people's name,\nI say it shall be so.\n\nCitizens:\nIt shall be so, it shall be so; let him away:\nHe's banish'd, and it shall be so.\n\nCOMINIUS:\nHear me, my masters, and my common friends,--\n\nSICINIUS:\nHe's sentenced; no more hearing.\n\nCOMINIUS:\nLet me speak:\nI have been consul, and can show for Rome\nHer enemies' marks upon me. I do love\nMy country's good with a respect more tender,\nMore holy and profound, than mine own life,\nMy dear wife's estimate, her womb's increase,\nAnd treasure of my loins; then if I would\nSpeak that,--\n\nSICINIUS:\nWe know your drift: speak what?\n\nBRUTUS:\nThere's no more to be said, but he is banish'd,\nAs enemy to the people and his country:\nIt shall be so.\n\nCitizens:\nIt shall be so, it shall be so.\n\nCORIOLANUS:\nYou common cry of curs! whose breath I hate\nAs reek o' the rotten fens, whose loves I prize\nAs the dead carcasses of unburied men\nThat do corrupt my air, I banish you;\nAnd here remain with your uncertainty!\nLet every feeble rumour shake your hearts!\nYour enemies, with nodding of their plumes,\nFan you into despair! Have the power still\nTo banish your defenders; till at length\nYour ignorance, which finds not till it feels,\nMaking not reservation of yourselves,\nStill your own foes, deliver you as most\nAbated captives to some nation\nThat won you without blows! Despising,\nFor you, the city, thus I turn my back:\nThere is a world elsewhere.\n\nAEdile:\nThe people's enemy is gone, is gone!\n\nCitizens:\nOur enemy is banish'd! he is gone! Hoo! hoo!\n\nSICINIUS:\nGo, see him out at gates, and follow him,\nAs he hath followed you, with all despite;\nGive him deserved vexation. Let a guard\nAttend us through the city.\n\nCitizens:\nCome, come; let's see him out at gates; come.\nThe gods preserve our noble tribunes! Come.\n\nCORIOLANUS:\nCome, leave your tears: a brief farewell: the beast\nWith many heads butts me away. Nay, mother,\nWhere is your ancient courage? you were used\nTo say extremity was the trier of spirits;\nThat common chances common men could bear;\nThat when the sea was calm all boats alike\nShow'd mastership in floating; fortune's blows,\nWhen most struck home, being gentle wounded, craves\nA noble cunning: you were used to load me\nWith precepts that would make invincible\nThe heart that conn'd them.\n\nVIRGILIA:\nO heavens! O heavens!\n\nCORIOLANUS:\nNay! prithee, woman,--\n\nVOLUMNIA:\nNow the red pestilence strike all trades in Rome,\nAnd occupations perish!\n\nCORIOLANUS:\nWhat, what, what!\nI shall be loved when I am lack'd. Nay, mother.\nResume that spirit, when you were wont to say,\nIf you had been the wife of Hercules,\nSix of his labours you'ld have done, and saved\nYour husband so much sweat. Cominius,\nDroop not; adieu. Farewell, my wife, my mother:\nI'll do well yet. Thou old and true Menenius,\nThy tears are salter than a younger man's,\nAnd venomous to thine eyes. My sometime general,\nI have seen thee stem, and thou hast oft beheld\nHeart-hardening spectacles; tell these sad women\n'Tis fond to wail inevitable strokes,\nAs 'tis to laugh at 'em. My mother, you wot well\nMy hazards still have been your solace: and\nBelieve't not lightly--though I go alone,\nLike to a lonely dragon, that his fen\nMakes fear'd and talk'd of more than seen--your son\nWill or exceed the common or be caught\nWith cautelous baits and practise.\n\nVOLUMNIA:\nMy first son.\nWhither wilt thou go? Take good Cominius\nWith thee awhile: determine on some course,\nMore than a wild exposture to each chance\nThat starts i' the way before thee.\n\nCORIOLANUS:\nO the gods!\n\nCOMINIUS:\nI'll follow thee a month, devise with thee\nWhere thou shalt rest, that thou mayst hear of us\nAnd we of thee: so if the time thrust forth\nA cause for thy repeal, we shall not send\nO'er the vast world to seek a single man,\nAnd lose advantage, which doth ever cool\nI' the absence of the needer.\n\nCORIOLANUS:\nFare ye well:\nThou hast years upon thee; and thou art too full\nOf the wars' surfeits, to go rove with one\nThat's yet unbruised: bring me but out at gate.\nCome, my sweet wife, my dearest mother, and\nMy friends of noble touch, when I am forth,\nBid me farewell, and smile. I pray you, come.\nWhile I remain above the ground, you shall\nHear from me still, and never of me aught\nBut what is like me formerly.\n\nMENENIUS:\nThat's worthily\nAs any ear can hear. Come, let's not weep.\nIf I could shake off but one seven years\nFrom these old arms and legs, by the good gods,\nI'ld with thee every foot.\n\nCORIOLANUS:\nGive me thy hand: Come.\n\nSICINIUS:\nBid them all home; he's gone, and we'll no further.\nThe nobility are vex'd, whom we see have sided\nIn his behalf.\n\nBRUTUS:\nNow we have shown our power,\nLet us seem humbler after it is done\nThan when it was a-doing.\n\nSICINIUS:\nBid them home:\nSay their great enemy is gone, and they\nStand in their ancient strength.\n\nBRUTUS:\nDismiss them home.\nHere comes his mother.\n\nSICINIUS:\nLet's not meet her.\n\nBRUTUS:\nWhy?\n\nSICINIUS:\nThey say she's mad.\n\nBRUTUS:\nThey have ta'en note of us: keep on your way.\n\nVOLUMNIA:\nO, ye're well met: the hoarded plague o' the gods\nRequite your love!\n\nMENENIUS:\nPeace, peace; be not so loud.\n\nVOLUMNIA:\nIf that I could for weeping, you should hear,--\nNay, and you shall hear some.\nWill you be gone?\n\nVIRGILIA:\n\nSICINIUS:\nAre you mankind?\n\nVOLUMNIA:\nAy, fool; is that a shame? Note but this fool.\nWas not a man my father? Hadst thou foxship\nTo banish him that struck more blows for Rome\nThan thou hast spoken words?\n\nSICINIUS:\nO blessed heavens!\n\nVOLUMNIA:\nMore noble blows than ever thou wise words;\nAnd for Rome's good. I'll tell thee what; yet go:\nNay, but thou shalt stay too: I would my son\nWere in Arabia, and thy tribe before him,\nHis good sword in his hand.\n\nSICINIUS:\nWhat then?\n\nVIRGILIA:\nWhat then!\nHe'ld make an end of thy posterity.\n\nVOLUMNIA:\nBastards and all.\nGood man, the wounds that he does bear for Rome!\n\nMENENIUS:\nCome, come, peace.\n\nSICINIUS:\nI would he had continued to his country\nAs he began, and not unknit himself\nThe noble knot he made.\n\nBRUTUS:\nI would he had.\n\nVOLUMNIA:\n'I would he had'! 'Twas you incensed the rabble:\nCats, that can judge as fitly of his worth\nAs I can of those mysteries which heaven\nWill not have earth to know.\n\nBRUTUS:\nPray, let us go.\n\nVOLUMNIA:\nNow, pray, sir, get you gone:\nYou have done a brave deed. Ere you go, hear this:--\nAs far as doth the Capitol exceed\nThe meanest house in Rome, so far my son--\nThis lady's husband here, this, do you see--\nWhom you have banish'd, does exceed you all.\n\nBRUTUS:\nWell, well, we'll leave you.\n\nSICINIUS:\nWhy stay we to be baited\nWith one that wants her wits?\n\nVOLUMNIA:\nTake my prayers with you.\nI would the gods had nothing else to do\nBut to confirm my curses! Could I meet 'em\nBut once a-day, it would unclog my heart\nOf what lies heavy to't.\n\nMENENIUS:\nYou have told them home;\nAnd, by my troth, you have cause. You'll sup with me?\n\nVOLUMNIA:\nAnger's my meat; I sup upon myself,\nAnd so shall starve with feeding. Come, let's go:\nLeave this faint puling and lament as I do,\nIn anger, Juno-like. Come, come, come.\n\nMENENIUS:\nFie, fie, fie!\n\nRoman:\nI know you well, sir, and you know\nme: your name, I think, is Adrian.\n\nVolsce:\nIt is so, sir: truly, I have forgot you.\n\nRoman:\nI am a Roman; and my services are,\nas you are, against 'em: know you me yet?\n\nVolsce:\nNicanor? no.\n\nRoman:\nThe same, sir.\n\nVolsce:\nYou had more beard when I last saw you; but your\nfavour is well approved by your tongue. What's the\nnews in Rome? I have a note from the Volscian state,\nto find you out there: you have well saved me a\nday's journey.\n\nRoman:\nThere hath been in Rome strange insurrections; the\npeople against the senators, patricians, and nobles.\n\nVolsce:\nHath been! is it ended, then? Our state thinks not\nso: they are in a most warlike preparation, and\nhope to come upon them in the heat of their division.\n\nRoman:\nThe main blaze of it is past, but a small thing\nwould make it flame again: for the nobles receive\nso to heart the banishment of that worthy\nCoriolanus, that they are in a ripe aptness to take\nall power from the people and to pluck from them\ntheir tribunes for ever. This lies glowing, I can\ntell you, and is almost mature for the violent\nbreaking out.\n\nVolsce:\nCoriolanus banished!\n\nRoman:\nBanished, sir.\n\nVolsce:\nYou will be welcome with this intelligence, Nicanor.\n\nRoman:\nThe day serves well for them now. I have heard it\nsaid, the fittest time to corrupt a man's wife is\nwhen she's fallen out with her husband. Your noble\nTullus Aufidius will appear well in these wars, his\ngreat opposer, Coriolanus, being now in no request\nof his country.\n\nVolsce:\nHe cannot choose. I am most fortunate, thus\naccidentally to encounter you: you have ended my\nbusiness, and I will merrily accompany you home.\n\nRoman:\nI shall, between this and supper, tell you most\nstrange things from Rome; all tending to the good of\ntheir adversaries. Have you an army ready, say you?\n\nVolsce:\nA most royal one; the centurions and their charges,\ndistinctly billeted, already in the entertainment,\nand to be on foot at an hour's warning.\n\nRoman:\nI am joyful to hear of their readiness, and am the\nman, I think, that shall set them in present action.\nSo, sir, heartily well met, and most glad of your company.\n\nVolsce:\nYou take my part from me, sir; I have the most cause\nto be glad of yours.\n\nRoman:\nWell, let us go together.\n\nCORIOLANUS:\nA goodly city is this Antium. City,\n'Tis I that made thy widows: many an heir\nOf these fair edifices 'fore my wars\nHave I heard groan and drop: then know me not,\nLest that thy wives with spits and boys with stones\nIn puny battle slay me.\nSave you, sir.\n\nCitizen:\nAnd you.\n\nCORIOLANUS:\nDirect me, if it be your will,\nWhere great Aufidius lies: is he in Antium?\n\nCitizen:\nHe is, and feasts the nobles of the state\nAt his house this night.\n\nCORIOLANUS:\nWhich is his house, beseech you?\n\nCitizen:\nThis, here before you.\n\nCORIOLANUS:\nThank you, sir: farewell.\nO world, thy slippery turns! Friends now fast sworn,\nWhose double bosoms seem to wear one heart,\nWhose house, whose bed, whose meal, and exercise,\nAre still together, who twin, as 'twere, in love\nUnseparable, shall within this hour,\nOn a dissension of a doit, break out\nTo bitterest enmity: so, fellest foes,\nWhose passions and whose plots have broke their sleep,\nTo take the one the other, by some chance,\nSome trick not worth an egg, shall grow dear friends\nAnd interjoin their issues. So with me:\nMy birth-place hate I, and my love's upon\nThis enemy town. I'll enter: if he slay me,\nHe does fair justice; if he give me way,\nI'll do his country service.\n\nFirst Servingman:\nWine, wine, wine! What service\nis here! I think our fellows are asleep.\n\nSecond Servingman:\nWhere's Cotus? my master calls\nfor him. Cotus!\n\nCORIOLANUS:\nA goodly house: the feast smells well; but I\nAppear not like a guest.\n\nFirst Servingman:\nWhat would you have, friend? whence are you?\nHere's no place for you: pray, go to the door.\n\nCORIOLANUS:\nI have deserved no better entertainment,\nIn being Coriolanus.\n\nSecond Servingman:\nWhence are you, sir? Has the porter his eyes in his\nhead; that he gives entrance to such companions?\nPray, get you out.\n\nCORIOLANUS:\nAway!\n\nSecond Servingman:\nAway! get you away.\n\nCORIOLANUS:\nNow thou'rt troublesome.\n\nSecond Servingman:\nAre you so brave? I'll have you talked with anon.\n\nThird Servingman:\nWhat fellow's this?\n\nFirst Servingman:\nA strange one as ever I looked on: I cannot get him\nout of the house: prithee, call my master to him.\n\nThird Servingman:\nWhat have you to do here, fellow? Pray you, avoid\nthe house.\n\nCORIOLANUS:\nLet me but stand; I will not hurt your hearth.\n\nThird Servingman:\nWhat are you?\n\nCORIOLANUS:\nA gentleman.\n\nThird Servingman:\nA marvellous poor one.\n\nCORIOLANUS:\nTrue, so I am.\n\nThird Servingman:\nPray you, poor gentleman, take up some other\nstation; here's no place for you; pray you, avoid: come.\n\nCORIOLANUS:\nFollow your function, go, and batten on cold bits.\n\nThird Servingman:\nWhat, you will not? Prithee, tell my master what a\nstrange guest he has here.\n\nSecond Servingman:\nAnd I shall.\n\nThird Servingman:\nWhere dwellest thou?\n\nCORIOLANUS:\nUnder the canopy.\n\nThird Servingman:\nUnder the canopy!\n\nCORIOLANUS:\nAy.\n\nThird Servingman:\nWhere's that?\n\nCORIOLANUS:\nI' the city of kites and crows.\n\nThird Servingman:\nI' the city of kites and crows! What an ass it is!\nThen thou dwellest with daws too?\n\nCORIOLANUS:\nNo, I serve not thy master.\n\nThird Servingman:\nHow, sir! do you meddle with my master?\n\nCORIOLANUS:\nAy; 'tis an honester service than to meddle with thy\nmistress. Thou pratest, and pratest; serve with thy\ntrencher, hence!\n\nAUFIDIUS:\nWhere is this fellow?\n\nSecond Servingman:\nHere, sir: I'ld have beaten him like a dog, but for\ndisturbing the lords within.\n\nAUFIDIUS:\nWhence comest thou? what wouldst thou? thy name?\nWhy speak'st not? speak, man: what's thy name?\n\nCORIOLANUS:\nIf, Tullus,\nNot yet thou knowest me, and, seeing me, dost not\nThink me for the man I am, necessity\nCommands me name myself.\n\nAUFIDIUS:\nWhat is thy name?\n\nCORIOLANUS:\nA name unmusical to the Volscians' ears,\nAnd harsh in sound to thine.\n\nAUFIDIUS:\nSay, what's thy name?\nThou hast a grim appearance, and thy face\nBears a command in't; though thy tackle's torn.\nThou show'st a noble vessel: what's thy name?\n\nCORIOLANUS:\nPrepare thy brow to frown: know'st\nthou me yet?\n\nAUFIDIUS:\nI know thee not: thy name?\n\nCORIOLANUS:\nMy name is Caius Marcius, who hath done\nTo thee particularly and to all the Volsces\nGreat hurt and mischief; thereto witness may\nMy surname, Coriolanus: the painful service,\nThe extreme dangers and the drops of blood\nShed for my thankless country are requited\nBut with that surname; a good memory,\nAnd witness of the malice and displeasure\nWhich thou shouldst bear me: only that name remains;\nThe cruelty and envy of the people,\nPermitted by our dastard nobles, who\nHave all forsook me, hath devour'd the rest;\nAnd suffer'd me by the voice of slaves to be\nWhoop'd out of Rome. Now this extremity\nHath brought me to thy hearth; not out of hope--\nMistake me not--to save my life, for if\nI had fear'd death, of all the men i' the world\nI would have 'voided thee, but in mere spite,\nTo be full quit of those my banishers,\nStand I before thee here. Then if thou hast\nA heart of wreak in thee, that wilt revenge\nThine own particular wrongs and stop those maims\nOf shame seen through thy country, speed\nthee straight,\nAnd make my misery serve thy turn: so use it\nThat my revengeful services may prove\nAs benefits to thee, for I will fight\nAgainst my canker'd country with the spleen\nOf all the under fiends. But if so be\nThou darest not this and that to prove more fortunes\nThou'rt tired, then, in a word, I also am\nLonger to live most weary, and present\nMy throat to thee and to thy ancient malice;\nWhich not to cut would show thee but a fool,\nSince I have ever follow'd thee with hate,\nDrawn tuns of blood out of thy country's breast,\nAnd cannot live but to thy shame, unless\nIt be to do thee service.\n\nAUFIDIUS:\nO Marcius, Marcius!\nEach word thou hast spoke hath weeded from my heart\nA root of ancient envy. If Jupiter\nShould from yond cloud speak divine things,\nAnd say 'Tis true,' I'ld not believe them more\nThan thee, all noble Marcius. Let me twine\nMine arms about that body, where against\nMy grained ash an hundred times hath broke\nAnd scarr'd the moon with splinters: here I clip\nThe anvil of my sword, and do contest\nAs hotly and as nobly with thy love\nAs ever in ambitious strength I did\nContend against thy valour. Know thou first,\nI loved the maid I married; never man\nSigh'd truer breath; but that I see thee here,\nThou noble thing! more dances my rapt heart\nThan when I first my wedded mistress saw\nBestride my threshold. Why, thou Mars! I tell thee,\nWe have a power on foot; and I had purpose\nOnce more to hew thy target from thy brawn,\nOr lose mine arm fort: thou hast beat me out\nTwelve several times, and I have nightly since\nDreamt of encounters 'twixt thyself and me;\nWe have been down together in my sleep,\nUnbuckling helms, fisting each other's throat,\nAnd waked half dead with nothing. Worthy Marcius,\nHad we no quarrel else to Rome, but that\nThou art thence banish'd, we would muster all\nFrom twelve to seventy, and pouring war\nInto the bowels of ungrateful Rome,\nLike a bold flood o'er-bear. O, come, go in,\nAnd take our friendly senators by the hands;\nWho now are here, taking their leaves of me,\nWho am prepared against your territories,\nThough not for Rome itself.\n\nCORIOLANUS:\nYou bless me, gods!\n\nAUFIDIUS:\nTherefore, most absolute sir, if thou wilt have\nThe leading of thine own revenges, take\nThe one half of my commission; and set down--\nAs best thou art experienced, since thou know'st\nThy country's strength and weakness,--thine own ways;\nWhether to knock against the gates of Rome,\nOr rudely visit them in parts remote,\nTo fright them, ere destroy. But come in:\nLet me commend thee first to those that shall\nSay yea to thy desires. A thousand welcomes!\nAnd more a friend than e'er an enemy;\nYet, Marcius, that was much. Your hand: most welcome!\n\nFirst Servingman:\nHere's a strange alteration!\n\nSecond Servingman:\nBy my hand, I had thought to have strucken him with\na cudgel; and yet my mind gave me his clothes made a\nfalse report of him.\n\nFirst Servingman:\nWhat an arm he has! he turned me about with his\nfinger and his thumb, as one would set up a top.\n\nSecond Servingman:\nNay, I knew by his face that there was something in\nhim: he had, sir, a kind of face, methought,--I\ncannot tell how to term it.\n\nFirst Servingman:\nHe had so; looking as it were--would I were hanged,\nbut I thought there was more in him than I could think.\n\nSecond Servingman:\nSo did I, I'll be sworn: he is simply the rarest\nman i' the world.\n\nFirst Servingman:\nI think he is: but a greater soldier than he you wot on.\n\nSecond Servingman:\nWho, my master?\n\nFirst Servingman:\nNay, it's no matter for that.\n\nSecond Servingman:\nWorth six on him.\n\nFirst Servingman:\nNay, not so neither: but I take him to be the\ngreater soldier.\n\nSecond Servingman:\nFaith, look you, one cannot tell how to say that:\nfor the defence of a town, our general is excellent.\n\nFirst Servingman:\nAy, and for an assault too.\n\nThird Servingman:\nO slaves, I can tell you news,-- news, you rascals!\n\nFirst Servingman:\nWhat, what, what? let's partake.\n\nThird Servingman:\nI would not be a Roman, of all nations; I had as\nlieve be a condemned man.\n\nFirst Servingman:\nWherefore? wherefore?\n\nThird Servingman:\nWhy, here's he that was wont to thwack our general,\nCaius Marcius.\n\nFirst Servingman:\nWhy do you say 'thwack our general '?\n\nThird Servingman:\nI do not say 'thwack our general;' but he was always\ngood enough for him.\n\nSecond Servingman:\nCome, we are fellows and friends: he was ever too\nhard for him; I have heard him say so himself.\n\nFirst Servingman:\nHe was too hard for him directly, to say the troth\non't: before Corioli he scotched him and notched\nhim like a carbon ado.\n\nSecond Servingman:\nAn he had been cannibally given, he might have\nbroiled and eaten him too.\n\nFirst Servingman:\nBut, more of thy news?\n\nThird Servingman:\nWhy, he is so made on here within, as if he were son\nand heir to Mars; set at upper end o' the table; no\nquestion asked him by any of the senators, but they\nstand bald before him: our general himself makes a\nmistress of him: sanctifies himself with's hand and\nturns up the white o' the eye to his discourse. But\nthe bottom of the news is that our general is cut i'\nthe middle and but one half of what he was\nyesterday; for the other has half, by the entreaty\nand grant of the whole table. He'll go, he says,\nand sowl the porter of Rome gates by the ears: he\nwill mow all down before him, and leave his passage polled.\n\nSecond Servingman:\nAnd he's as like to do't as any man I can imagine.\n\nThird Servingman:\nDo't! he will do't; for, look you, sir, he has as\nmany friends as enemies; which friends, sir, as it\nwere, durst not, look you, sir, show themselves, as\nwe term it, his friends whilst he's in directitude.\n\nFirst Servingman:\nDirectitude! what's that?\n\nThird Servingman:\nBut when they shall see, sir, his crest up again,\nand the man in blood, they will out of their\nburrows, like conies after rain, and revel all with\nhim.\n\nFirst Servingman:\nBut when goes this forward?\n\nThird Servingman:\nTo-morrow; to-day; presently; you shall have the\ndrum struck up this afternoon: 'tis, as it were, a\nparcel of their feast, and to be executed ere they\nwipe their lips.\n\nSecond Servingman:\nWhy, then we shall have a stirring world again.\nThis peace is nothing, but to rust iron, increase\ntailors, and breed ballad-makers.\n\nFirst Servingman:\nLet me have war, say I; it exceeds peace as far as\nday does night; it's spritely, waking, audible, and\nfull of vent. Peace is a very apoplexy, lethargy;\nmulled, deaf, sleepy, insensible; a getter of more\nbastard children than war's a destroyer of men.\n\nSecond Servingman:\n'Tis so: and as war, in some sort, may be said to\nbe a ravisher, so it cannot be denied but peace is a\ngreat maker of cuckolds.\n\nFirst Servingman:\nAy, and it makes men hate one another.\n\nThird Servingman:\nReason; because they then less need one another.\nThe wars for my money. I hope to see Romans as cheap\nas Volscians. They are rising, they are rising.\n\nAll:\nIn, in, in, in!\n\nSICINIUS:\nWe hear not of him, neither need we fear him;\nHis remedies are tame i' the present peace\nAnd quietness of the people, which before\nWere in wild hurry. Here do we make his friends\nBlush that the world goes well, who rather had,\nThough they themselves did suffer by't, behold\nDissentious numbers pestering streets than see\nOur tradesmen with in their shops and going\nAbout their functions friendly.\n\nBRUTUS:\nWe stood to't in good time.\nIs this Menenius?\n\nSICINIUS:\n'Tis he,'tis he: O, he is grown most kind of late.\n\nBoth Tribunes:\nHail sir!\n\nMENENIUS:\nHail to you both!\n\nSICINIUS:\nYour Coriolanus\nIs not much miss'd, but with his friends:\nThe commonwealth doth stand, and so would do,\nWere he more angry at it.\n\nMENENIUS:\nAll's well; and might have been much better, if\nHe could have temporized.\n\nSICINIUS:\nWhere is he, hear you?\n\nMENENIUS:\nNay, I hear nothing: his mother and his wife\nHear nothing from him.\n\nCitizens:\nThe gods preserve you both!\n\nSICINIUS:\nGod-den, our neighbours.\n\nBRUTUS:\nGod-den to you all, god-den to you all.\n\nFirst Citizen:\nOurselves, our wives, and children, on our knees,\nAre bound to pray for you both.\n\nSICINIUS:\nLive, and thrive!\n\nBRUTUS:\nFarewell, kind neighbours: we wish'd Coriolanus\nHad loved you as we did.\n\nCitizens:\nNow the gods keep you!\n\nBoth Tribunes:\nFarewell, farewell.\n\nSICINIUS:\nThis is a happier and more comely time\nThan when these fellows ran about the streets,\nCrying confusion.\n\nBRUTUS:\nCaius Marcius was\nA worthy officer i' the war; but insolent,\nO'ercome with pride, ambitious past all thinking,\nSelf-loving,--\n\nSICINIUS:\nAnd affecting one sole throne,\nWithout assistance.\n\nMENENIUS:\nI think not so.\n\nSICINIUS:\nWe should by this, to all our lamentation,\nIf he had gone forth consul, found it so.\n\nBRUTUS:\nThe gods have well prevented it, and Rome\nSits safe and still without him.\n\nAEdile:\nWorthy tribunes,\nThere is a slave, whom we have put in prison,\nReports, the Volsces with two several powers\nAre enter'd in the Roman territories,\nAnd with the deepest malice of the war\nDestroy what lies before 'em.\n\nMENENIUS:\n'Tis Aufidius,\nWho, hearing of our Marcius' banishment,\nThrusts forth his horns again into the world;\nWhich were inshell'd when Marcius stood for Rome,\nAnd durst not once peep out.\n\nSICINIUS:\nCome, what talk you\nOf Marcius?\n\nBRUTUS:\nGo see this rumourer whipp'd. It cannot be\nThe Volsces dare break with us.\n\nMENENIUS:\nCannot be!\nWe have record that very well it can,\nAnd three examples of the like have been\nWithin my age. But reason with the fellow,\nBefore you punish him, where he heard this,\nLest you shall chance to whip your information\nAnd beat the messenger who bids beware\nOf what is to be dreaded.\n\nSICINIUS:\nTell not me:\nI know this cannot be.\n\nBRUTUS:\nNot possible.\n\nMessenger:\nThe nobles in great earnestness are going\nAll to the senate-house: some news is come\nThat turns their countenances.\n\nSICINIUS:\n'Tis this slave;--\nGo whip him, 'fore the people's eyes:--his raising;\nNothing but his report.\n\nMessenger:\nYes, worthy sir,\nThe slave's report is seconded; and more,\nMore fearful, is deliver'd.\n\nSICINIUS:\nWhat more fearful?\n\nMessenger:\nIt is spoke freely out of many mouths--\nHow probable I do not know--that Marcius,\nJoin'd with Aufidius, leads a power 'gainst Rome,\nAnd vows revenge as spacious as between\nThe young'st and oldest thing.\n\nSICINIUS:\nThis is most likely!\n\nBRUTUS:\nRaised only, that the weaker sort may wish\nGood Marcius home again.\n\nSICINIUS:\nThe very trick on't.\n\nMENENIUS:\nThis is unlikely:\nHe and Aufidius can no more atone\nThan violentest contrariety.\n\nSecond Messenger:\nYou are sent for to the senate:\nA fearful army, led by Caius Marcius\nAssociated with Aufidius, rages\nUpon our territories; and have already\nO'erborne their way, consumed with fire, and took\nWhat lay before them.\n\nCOMINIUS:\nO, you have made good work!\n\nMENENIUS:\nWhat news? what news?\n\nCOMINIUS:\nYou have holp to ravish your own daughters and\nTo melt the city leads upon your pates,\nTo see your wives dishonour'd to your noses,--\n\nMENENIUS:\nWhat's the news? what's the news?\n\nCOMINIUS:\nYour temples burned in their cement, and\nYour franchises, whereon you stood, confined\nInto an auger's bore.\n\nMENENIUS:\nPray now, your news?\nYou have made fair work, I fear me.--Pray, your news?--\nIf Marcius should be join'd with Volscians,--\n\nCOMINIUS:\nIf!\nHe is their god: he leads them like a thing\nMade by some other deity than nature,\nThat shapes man better; and they follow him,\nAgainst us brats, with no less confidence\nThan boys pursuing summer butterflies,\nOr butchers killing flies.\n\nMENENIUS:\nYou have made good work,\nYou and your apron-men; you that stood so up much\non the voice of occupation and\nThe breath of garlic-eaters!\n\nCOMINIUS:\nHe will shake\nYour Rome about your ears.\n\nMENENIUS:\nAs Hercules\nDid shake down mellow fruit.\nYou have made fair work!\n\nBRUTUS:\nBut is this true, sir?\n\nCOMINIUS:\nAy; and you'll look pale\nBefore you find it other. All the regions\nDo smilingly revolt; and who resist\nAre mock'd for valiant ignorance,\nAnd perish constant fools. Who is't can blame him?\nYour enemies and his find something in him.\n\nMENENIUS:\nWe are all undone, unless\nThe noble man have mercy.\n\nCOMINIUS:\nWho shall ask it?\nThe tribunes cannot do't for shame; the people\nDeserve such pity of him as the wolf\nDoes of the shepherds: for his best friends, if they\nShould say 'Be good to Rome,' they charged him even\nAs those should do that had deserved his hate,\nAnd therein show'd like enemies.\n\nMENENIUS:\n'Tis true:\nIf he were putting to my house the brand\nThat should consume it, I have not the face\nTo say 'Beseech you, cease.' You have made fair hands,\nYou and your crafts! you have crafted fair!\n\nCOMINIUS:\nYou have brought\nA trembling upon Rome, such as was never\nSo incapable of help.\n\nBoth Tribunes:\nSay not we brought it.\n\nMENENIUS:\nHow! Was it we? we loved him but, like beasts\nAnd cowardly nobles, gave way unto your clusters,\nWho did hoot him out o' the city.\n\nCOMINIUS:\nBut I fear\nThey'll roar him in again. Tullus Aufidius,\nThe second name of men, obeys his points\nAs if he were his officer: desperation\nIs all the policy, strength and defence,\nThat Rome can make against them.\n\nMENENIUS:\nHere come the clusters.\nAnd is Aufidius with him? You are they\nThat made the air unwholesome, when you cast\nYour stinking greasy caps in hooting at\nCoriolanus' exile. Now he's coming;\nAnd not a hair upon a soldier's head\nWhich will not prove a whip: as many coxcombs\nAs you threw caps up will he tumble down,\nAnd pay you for your voices. 'Tis no matter;\nif he could burn us all into one coal,\nWe have deserved it.\n\nCitizens:\nFaith, we hear fearful news.\n\nFirst Citizen:\nFor mine own part,\nWhen I said, banish him, I said 'twas pity.\n\nSecond Citizen:\nAnd so did I.\n\nThird Citizen:\nAnd so did I; and, to say the truth, so did very\nmany of us: that we did, we did for the best; and\nthough we willingly consented to his banishment, yet\nit was against our will.\n\nCOMINIUS:\nYe re goodly things, you voices!\n\nMENENIUS:\nYou have made\nGood work, you and your cry! Shall's to the Capitol?\n\nCOMINIUS:\nO, ay, what else?\n\nSICINIUS:\nGo, masters, get you home; be not dismay'd:\nThese are a side that would be glad to have\nThis true which they so seem to fear. Go home,\nAnd show no sign of fear.\n\nFirst Citizen:\nThe gods be good to us! Come, masters, let's home.\nI ever said we were i' the wrong when we banished\nhim.\n\nSecond Citizen:\nSo did we all. But, come, let's home.\n\nBRUTUS:\nI do not like this news.\n\nSICINIUS:\nNor I.\n\nBRUTUS:\nLet's to the Capitol. Would half my wealth\nWould buy this for a lie!\n\nSICINIUS:\nPray, let us go.\n\nAUFIDIUS:\nDo they still fly to the Roman?\n\nLieutenant:\nI do not know what witchcraft's in him, but\nYour soldiers use him as the grace 'fore meat,\nTheir talk at table, and their thanks at end;\nAnd you are darken'd in this action, sir,\nEven by your own.\n\nAUFIDIUS:\nI cannot help it now,\nUnless, by using means, I lame the foot\nOf our design. He bears himself more proudlier,\nEven to my person, than I thought he would\nWhen first I did embrace him: yet his nature\nIn that's no changeling; and I must excuse\nWhat cannot be amended.\n\nLieutenant:\nYet I wish, sir,--\nI mean for your particular,--you had not\nJoin'd in commission with him; but either\nHad borne the action of yourself, or else\nTo him had left it solely.\n\nAUFIDIUS:\nI understand thee well; and be thou sure,\nwhen he shall come to his account, he knows not\nWhat I can urge against him. Although it seems,\nAnd so he thinks, and is no less apparent\nTo the vulgar eye, that he bears all things fairly.\nAnd shows good husbandry for the Volscian state,\nFights dragon-like, and does achieve as soon\nAs draw his sword; yet he hath left undone\nThat which shall break his neck or hazard mine,\nWhene'er we come to our account.\n\nLieutenant:\nSir, I beseech you, think you he'll carry Rome?\n\nAUFIDIUS:\nAll places yield to him ere he sits down;\nAnd the nobility of Rome are his:\nThe senators and patricians love him too:\nThe tribunes are no soldiers; and their people\nWill be as rash in the repeal, as hasty\nTo expel him thence. I think he'll be to Rome\nAs is the osprey to the fish, who takes it\nBy sovereignty of nature. First he was\nA noble servant to them; but he could not\nCarry his honours even: whether 'twas pride,\nWhich out of daily fortune ever taints\nThe happy man; whether defect of judgment,\nTo fail in the disposing of those chances\nWhich he was lord of; or whether nature,\nNot to be other than one thing, not moving\nFrom the casque to the cushion, but commanding peace\nEven with the same austerity and garb\nAs he controll'd the war; but one of these--\nAs he hath spices of them all, not all,\nFor I dare so far free him--made him fear'd,\nSo hated, and so banish'd: but he has a merit,\nTo choke it in the utterance. So our virtues\nLie in the interpretation of the time:\nAnd power, unto itself most commendable,\nHath not a tomb so evident as a chair\nTo extol what it hath done.\nOne fire drives out one fire; one nail, one nail;\nRights by rights falter, strengths by strengths do fail.\nCome, let's away. When, Caius, Rome is thine,\nThou art poor'st of all; then shortly art thou mine.\n\nMENENIUS:\nNo, I'll not go: you hear what he hath said\nWhich was sometime his general; who loved him\nIn a most dear particular. He call'd me father:\nBut what o' that? Go, you that banish'd him;\nA mile before his tent fall down, and knee\nThe way into his mercy: nay, if he coy'd\nTo hear Cominius speak, I'll keep at home.\n\nCOMINIUS:\nHe would not seem to know me.\n\nMENENIUS:\nDo you hear?\n\nCOMINIUS:\nYet one time he did call me by my name:\nI urged our old acquaintance, and the drops\nThat we have bled together. Coriolanus\nHe would not answer to: forbad all names;\nHe was a kind of nothing, titleless,\nTill he had forged himself a name o' the fire\nOf burning Rome.\n\nMENENIUS:\nWhy, so: you have made good work!\nA pair of tribunes that have rack'd for Rome,\nTo make coals cheap,--a noble memory!\n\nCOMINIUS:\nI minded him how royal 'twas to pardon\nWhen it was less expected: he replied,\nIt was a bare petition of a state\nTo one whom they had punish'd.\n\nMENENIUS:\nVery well:\nCould he say less?\n\nCOMINIUS:\nI offer'd to awaken his regard\nFor's private friends: his answer to me was,\nHe could not stay to pick them in a pile\nOf noisome musty chaff: he said 'twas folly,\nFor one poor grain or two, to leave unburnt,\nAnd still to nose the offence.\n\nMENENIUS:\nFor one poor grain or two!\nI am one of those; his mother, wife, his child,\nAnd this brave fellow too, we are the grains:\nYou are the musty chaff; and you are smelt\nAbove the moon: we must be burnt for you.\n\nSICINIUS:\nNay, pray, be patient: if you refuse your aid\nIn this so never-needed help, yet do not\nUpbraid's with our distress. But, sure, if you\nWould be your country's pleader, your good tongue,\nMore than the instant army we can make,\nMight stop our countryman.\n\nMENENIUS:\nNo, I'll not meddle.\n\nSICINIUS:\nPray you, go to him.\n\nMENENIUS:\nWhat should I do?\n\nBRUTUS:\nOnly make trial what your love can do\nFor Rome, towards Marcius.\n\nMENENIUS:\nWell, and say that Marcius\nReturn me, as Cominius is return'd,\nUnheard; what then?\nBut as a discontented friend, grief-shot\nWith his unkindness? say't be so?\n\nSICINIUS:\nYet your good will\nmust have that thanks from Rome, after the measure\nAs you intended well.\n\nMENENIUS:\nI'll undertake 't:\nI think he'll hear me. Yet, to bite his lip\nAnd hum at good Cominius, much unhearts me.\nHe was not taken well; he had not dined:\nThe veins unfill'd, our blood is cold, and then\nWe pout upon the morning, are unapt\nTo give or to forgive; but when we have stuff'd\nThese and these conveyances of our blood\nWith wine and feeding, we have suppler souls\nThan in our priest-like fasts: therefore I'll watch him\nTill he be dieted to my request,\nAnd then I'll set upon him.\n\nBRUTUS:\nYou know the very road into his kindness,\nAnd cannot lose your way.\n\nMENENIUS:\nGood faith, I'll prove him,\nSpeed how it will. I shall ere long have knowledge\nOf my success.\n\nCOMINIUS:\nHe'll never hear him.\n\nSICINIUS:\nNot?\n\nCOMINIUS:\nI tell you, he does sit in gold, his eye\nRed as 'twould burn Rome; and his injury\nThe gaoler to his pity. I kneel'd before him;\n'Twas very faintly he said 'Rise;' dismiss'd me\nThus, with his speechless hand: what he would do,\nHe sent in writing after me; what he would not,\nBound with an oath to yield to his conditions:\nSo that all hope is vain.\nUnless his noble mother, and his wife;\nWho, as I hear, mean to solicit him\nFor mercy to his country. Therefore, let's hence,\nAnd with our fair entreaties haste them on.\n\nFirst Senator:\nStay: whence are you?\n\nSecond Senator:\nStand, and go back.\n\nMENENIUS:\nYou guard like men; 'tis well: but, by your leave,\nI am an officer of state, and come\nTo speak with Coriolanus.\n\nFirst Senator:\nFrom whence?\n\nMENENIUS:\nFrom Rome.\n\nFirst Senator:\nYou may not pass, you must return: our general\nWill no more hear from thence.\n\nSecond Senator:\nYou'll see your Rome embraced with fire before\nYou'll speak with Coriolanus.\n\nMENENIUS:\nGood my friends,\nIf you have heard your general talk of Rome,\nAnd of his friends there, it is lots to blanks,\nMy name hath touch'd your ears it is Menenius.\n\nFirst Senator:\nBe it so; go back: the virtue of your name\nIs not here passable.\n\nMENENIUS:\nI tell thee, fellow,\nThe general is my lover: I have been\nThe book of his good acts, whence men have read\nHis name unparallel'd, haply amplified;\nFor I have ever verified my friends,\nOf whom he's chief, with all the size that verity\nWould without lapsing suffer: nay, sometimes,\nLike to a bowl upon a subtle ground,\nI have tumbled past the throw; and in his praise\nHave almost stamp'd the leasing: therefore, fellow,\nI must have leave to pass.\n\nFirst Senator:\nFaith, sir, if you had told as many lies in his\nbehalf as you have uttered words in your own, you\nshould not pass here; no, though it were as virtuous\nto lie as to live chastely. Therefore, go back.\n\nMENENIUS:\nPrithee, fellow, remember my name is Menenius,\nalways factionary on the party of your general.\n\nSecond Senator:\nHowsoever you have been his liar, as you say you\nhave, I am one that, telling true under him, must\nsay, you cannot pass. Therefore, go back.\n\nMENENIUS:\nHas he dined, canst thou tell? for I would not\nspeak with him till after dinner.\n\nFirst Senator:\nYou are a Roman, are you?\n\nMENENIUS:\nI am, as thy general is.\n\nFirst Senator:\nThen you should hate Rome, as he does. Can you,\nwhen you have pushed out your gates the very\ndefender of them, and, in a violent popular\nignorance, given your enemy your shield, think to\nfront his revenges with the easy groans of old\nwomen, the virginal palms of your daughters, or with\nthe palsied intercession of such a decayed dotant as\nyou seem to be? Can you think to blow out the\nintended fire your city is ready to flame in, with\nsuch weak breath as this? No, you are deceived;\ntherefore, back to Rome, and prepare for your\nexecution: you are condemned, our general has sworn\nyou out of reprieve and pardon.\n\nMENENIUS:\nSirrah, if thy captain knew I were here, he would\nuse me with estimation.\n\nSecond Senator:\nCome, my captain knows you not.\n\nMENENIUS:\nI mean, thy general.\n\nFirst Senator:\nMy general cares not for you. Back, I say, go; lest\nI let forth your half-pint of blood; back,--that's\nthe utmost of your having: back.\n\nMENENIUS:\nNay, but, fellow, fellow,--\n\nCORIOLANUS:\nWhat's the matter?\n\nMENENIUS:\nNow, you companion, I'll say an errand for you:\nYou shall know now that I am in estimation; you shall\nperceive that a Jack guardant cannot office me from\nmy son Coriolanus: guess, but by my entertainment\nwith him, if thou standest not i' the state of\nhanging, or of some death more long in\nspectatorship, and crueller in suffering; behold now\npresently, and swoon for what's to come upon thee.\nThe glorious gods sit in hourly synod about thy\nparticular prosperity, and love thee no worse than\nthy old father Menenius does! O my son, my son!\nthou art preparing fire for us; look thee, here's\nwater to quench it. I was hardly moved to come to\nthee; but being assured none but myself could move\nthee, I have been blown out of your gates with\nsighs; and conjure thee to pardon Rome, and thy\npetitionary countrymen. The good gods assuage thy\nwrath, and turn the dregs of it upon this varlet\nhere,--this, who, like a block, hath denied my\naccess to thee.\n\nCORIOLANUS:\nAway!\n\nMENENIUS:\nHow! away!\n\nCORIOLANUS:\nWife, mother, child, I know not. My affairs\nAre servanted to others: though I owe\nMy revenge properly, my remission lies\nIn Volscian breasts. That we have been familiar,\nIngrate forgetfulness shall poison, rather\nThan pity note how much. Therefore, be gone.\nMine ears against your suits are stronger than\nYour gates against my force. Yet, for I loved thee,\nTake this along; I writ it for thy sake\nAnd would have rent it. Another word, Menenius,\nI will not hear thee speak. This man, Aufidius,\nWas my beloved in Rome: yet thou behold'st!\n\nAUFIDIUS:\nYou keep a constant temper.\n\nFirst Senator:\nNow, sir, is your name Menenius?\n\nSecond Senator:\n'Tis a spell, you see, of much power: you know the\nway home again.\n\nFirst Senator:\nDo you hear how we are shent for keeping your\ngreatness back?\n\nSecond Senator:\nWhat cause, do you think, I have to swoon?\n\nMENENIUS:\nI neither care for the world nor your general: for\nsuch things as you, I can scarce think there's any,\nye're so slight. He that hath a will to die by\nhimself fears it not from another: let your general\ndo his worst. For you, be that you are, long; and\nyour misery increase with your age! I say to you,\nas I was said to, Away!\n\nFirst Senator:\nA noble fellow, I warrant him.\n\nSecond Senator:\nThe worthy fellow is our general: he's the rock, the\noak not to be wind-shaken.\n\nCORIOLANUS:\nWe will before the walls of Rome tomorrow\nSet down our host. My partner in this action,\nYou must report to the Volscian lords, how plainly\nI have borne this business.\n\nAUFIDIUS:\nOnly their ends\nYou have respected; stopp'd your ears against\nThe general suit of Rome; never admitted\nA private whisper, no, not with such friends\nThat thought them sure of you.\n\nCORIOLANUS:\nThis last old man,\nWhom with a crack'd heart I have sent to Rome,\nLoved me above the measure of a father;\nNay, godded me, indeed. Their latest refuge\nWas to send him; for whose old love I have,\nThough I show'd sourly to him, once more offer'd\nThe first conditions, which they did refuse\nAnd cannot now accept; to grace him only\nThat thought he could do more, a very little\nI have yielded to: fresh embassies and suits,\nNor from the state nor private friends, hereafter\nWill I lend ear to. Ha! what shout is this?\nShall I be tempted to infringe my vow\nIn the same time 'tis made? I will not.\nMy wife comes foremost; then the honour'd mould\nWherein this trunk was framed, and in her hand\nThe grandchild to her blood. But, out, affection!\nAll bond and privilege of nature, break!\nLet it be virtuous to be obstinate.\nWhat is that curt'sy worth? or those doves' eyes,\nWhich can make gods forsworn? I melt, and am not\nOf stronger earth than others. My mother bows;\nAs if Olympus to a molehill should\nIn supplication nod: and my young boy\nHath an aspect of intercession, which\nGreat nature cries 'Deny not.' let the Volsces\nPlough Rome and harrow Italy: I'll never\nBe such a gosling to obey instinct, but stand,\nAs if a man were author of himself\nAnd knew no other kin.\n\nVIRGILIA:\nMy lord and husband!\n\nCORIOLANUS:\nThese eyes are not the same I wore in Rome.\n\nVIRGILIA:\nThe sorrow that delivers us thus changed\nMakes you think so.\n\nCORIOLANUS:\nLike a dull actor now,\nI have forgot my part, and I am out,\nEven to a full disgrace. Best of my flesh,\nForgive my tyranny; but do not say\nFor that 'Forgive our Romans.' O, a kiss\nLong as my exile, sweet as my revenge!\nNow, by the jealous queen of heaven, that kiss\nI carried from thee, dear; and my true lip\nHath virgin'd it e'er since. You gods! I prate,\nAnd the most noble mother of the world\nLeave unsaluted: sink, my knee, i' the earth;\nOf thy deep duty more impression show\nThan that of common sons.\n\nVOLUMNIA:\nO, stand up blest!\nWhilst, with no softer cushion than the flint,\nI kneel before thee; and unproperly\nShow duty, as mistaken all this while\nBetween the child and parent.\n\nCORIOLANUS:\nWhat is this?\nYour knees to me? to your corrected son?\nThen let the pebbles on the hungry beach\nFillip the stars; then let the mutinous winds\nStrike the proud cedars 'gainst the fiery sun;\nMurdering impossibility, to make\nWhat cannot be, slight work.\n\nVOLUMNIA:\nThou art my warrior;\nI holp to frame thee. Do you know this lady?\n\nCORIOLANUS:\nThe noble sister of Publicola,\nThe moon of Rome, chaste as the icicle\nThat's curdied by the frost from purest snow\nAnd hangs on Dian's temple: dear Valeria!\n\nVOLUMNIA:\nThis is a poor epitome of yours,\nWhich by the interpretation of full time\nMay show like all yourself.\n\nCORIOLANUS:\nThe god of soldiers,\nWith the consent of supreme Jove, inform\nThy thoughts with nobleness; that thou mayst prove\nTo shame unvulnerable, and stick i' the wars\nLike a great sea-mark, standing every flaw,\nAnd saving those that eye thee!\n\nVOLUMNIA:\nYour knee, sirrah.\n\nCORIOLANUS:\nThat's my brave boy!\n\nVOLUMNIA:\nEven he, your wife, this lady, and myself,\nAre suitors to you.\n\nCORIOLANUS:\nI beseech you, peace:\nOr, if you'ld ask, remember this before:\nThe thing I have forsworn to grant may never\nBe held by you denials. Do not bid me\nDismiss my soldiers, or capitulate\nAgain with Rome's mechanics: tell me not\nWherein I seem unnatural: desire not\nTo ally my rages and revenges with\nYour colder reasons.\n\nVOLUMNIA:\nO, no more, no more!\nYou have said you will not grant us any thing;\nFor we have nothing else to ask, but that\nWhich you deny already: yet we will ask;\nThat, if you fail in our request, the blame\nMay hang upon your hardness: therefore hear us.\n\nCORIOLANUS:\nAufidius, and you Volsces, mark; for we'll\nHear nought from Rome in private. Your request?\n\nVOLUMNIA:\nShould we be silent and not speak, our raiment\nAnd state of bodies would bewray what life\nWe have led since thy exile. Think with thyself\nHow more unfortunate than all living women\nAre we come hither: since that thy sight,\nwhich should\nMake our eyes flow with joy, hearts dance\nwith comforts,\nConstrains them weep and shake with fear and sorrow;\nMaking the mother, wife and child to see\nThe son, the husband and the father tearing\nHis country's bowels out. And to poor we\nThine enmity's most capital: thou barr'st us\nOur prayers to the gods, which is a comfort\nThat all but we enjoy; for how can we,\nAlas, how can we for our country pray.\nWhereto we are bound, together with thy victory,\nWhereto we are bound? alack, or we must lose\nThe country, our dear nurse, or else thy person,\nOur comfort in the country. We must find\nAn evident calamity, though we had\nOur wish, which side should win: for either thou\nMust, as a foreign recreant, be led\nWith manacles thorough our streets, or else\ntriumphantly tread on thy country's ruin,\nAnd bear the palm for having bravely shed\nThy wife and children's blood. For myself, son,\nI purpose not to wait on fortune till\nThese wars determine: if I cannot persuade thee\nRather to show a noble grace to both parts\nThan seek the end of one, thou shalt no sooner\nMarch to assault thy country than to tread--\nTrust to't, thou shalt not--on thy mother's womb,\nThat brought thee to this world.\n\nVIRGILIA:\nAy, and mine,\nThat brought you forth this boy, to keep your name\nLiving to time.\n\nYoung MARCIUS:\nA' shall not tread on me;\nI'll run away till I am bigger, but then I'll fight.\n\nCORIOLANUS:\nNot of a woman's tenderness to be,\nRequires nor child nor woman's face to see.\nI have sat too long.\n\nVOLUMNIA:\nNay, go not from us thus.\nIf it were so that our request did tend\nTo save the Romans, thereby to destroy\nThe Volsces whom you serve, you might condemn us,\nAs poisonous of your honour: no; our suit\nIs that you reconcile them: while the Volsces\nMay say 'This mercy we have show'd;' the Romans,\n'This we received;' and each in either side\nGive the all-hail to thee and cry 'Be blest\nFor making up this peace!' Thou know'st, great son,\nThe end of war's uncertain, but this certain,\nThat, if thou conquer Rome, the benefit\nWhich thou shalt thereby reap is such a name,\nWhose repetition will be dogg'd with curses;\nWhose chronicle thus writ: 'The man was noble,\nBut with his last attempt he wiped it out;\nDestroy'd his country, and his name remains\nTo the ensuing age abhorr'd.' Speak to me, son:\nThou hast affected the fine strains of honour,\nTo imitate the graces of the gods;\nTo tear with thunder the wide cheeks o' the air,\nAnd yet to charge thy sulphur with a bolt\nThat should but rive an oak. Why dost not speak?\nThink'st thou it honourable for a noble man\nStill to remember wrongs? Daughter, speak you:\nHe cares not for your weeping. Speak thou, boy:\nPerhaps thy childishness will move him more\nThan can our reasons. There's no man in the world\nMore bound to 's mother; yet here he lets me prate\nLike one i' the stocks. Thou hast never in thy life\nShow'd thy dear mother any courtesy,\nWhen she, poor hen, fond of no second brood,\nHas cluck'd thee to the wars and safely home,\nLoaden with honour. Say my request's unjust,\nAnd spurn me back: but if it be not so,\nThou art not honest; and the gods will plague thee,\nThat thou restrain'st from me the duty which\nTo a mother's part belongs. He turns away:\nDown, ladies; let us shame him with our knees.\nTo his surname Coriolanus 'longs more pride\nThan pity to our prayers. Down: an end;\nThis is the last: so we will home to Rome,\nAnd die among our neighbours. Nay, behold 's:\nThis boy, that cannot tell what he would have\nBut kneels and holds up bands for fellowship,\nDoes reason our petition with more strength\nThan thou hast to deny 't. Come, let us go:\nThis fellow had a Volscian to his mother;\nHis wife is in Corioli and his child\nLike him by chance. Yet give us our dispatch:\nI am hush'd until our city be a-fire,\nAnd then I'll speak a little.\n\nCORIOLANUS:\nO mother, mother!\nWhat have you done? Behold, the heavens do ope,\nThe gods look down, and this unnatural scene\nThey laugh at. O my mother, mother! O!\nYou have won a happy victory to Rome;\nBut, for your son,--believe it, O, believe it,\nMost dangerously you have with him prevail'd,\nIf not most mortal to him. But, let it come.\nAufidius, though I cannot make true wars,\nI'll frame convenient peace. Now, good Aufidius,\nWere you in my stead, would you have heard\nA mother less? or granted less, Aufidius?\n\nAUFIDIUS:\nI was moved withal.\n\nCORIOLANUS:\nI dare be sworn you were:\nAnd, sir, it is no little thing to make\nMine eyes to sweat compassion. But, good sir,\nWhat peace you'll make, advise me: for my part,\nI'll not to Rome, I'll back with you; and pray you,\nStand to me in this cause. O mother! wife!\n\nAUFIDIUS:\n\nCORIOLANUS:\nAy, by and by;\nBut we will drink together; and you shall bear\nA better witness back than words, which we,\nOn like conditions, will have counter-seal'd.\nCome, enter with us. Ladies, you deserve\nTo have a temple built you: all the swords\nIn Italy, and her confederate arms,\nCould not have made this peace.\n\nMENENIUS:\nSee you yond coign o' the Capitol, yond\ncorner-stone?\n\nSICINIUS:\nWhy, what of that?\n\nMENENIUS:\nIf it be possible for you to displace it with your\nlittle finger, there is some hope the ladies of\nRome, especially his mother, may prevail with him.\nBut I say there is no hope in't: our throats are\nsentenced and stay upon execution.\n\nSICINIUS:\nIs't possible that so short a time can alter the\ncondition of a man!\n\nMENENIUS:\nThere is differency between a grub and a butterfly;\nyet your butterfly was a grub. This Marcius is grown\nfrom man to dragon: he has wings; he's more than a\ncreeping thing.\n\nSICINIUS:\nHe loved his mother dearly.\n\nMENENIUS:\nSo did he me: and he no more remembers his mother\nnow than an eight-year-old horse. The tartness\nof his face sours ripe grapes: when he walks, he\nmoves like an engine, and the ground shrinks before\nhis treading: he is able to pierce a corslet with\nhis eye; talks like a knell, and his hum is a\nbattery. He sits in his state, as a thing made for\nAlexander. What he bids be done is finished with\nhis bidding. He wants nothing of a god but eternity\nand a heaven to throne in.\n\nSICINIUS:\nYes, mercy, if you report him truly.\n\nMENENIUS:\nI paint him in the character. Mark what mercy his\nmother shall bring from him: there is no more mercy\nin him than there is milk in a male tiger; that\nshall our poor city find: and all this is long of\nyou.\n\nSICINIUS:\nThe gods be good unto us!\n\nMENENIUS:\nNo, in such a case the gods will not be good unto\nus. When we banished him, we respected not them;\nand, he returning to break our necks, they respect not us.\n\nMessenger:\nSir, if you'ld save your life, fly to your house:\nThe plebeians have got your fellow-tribune\nAnd hale him up and down, all swearing, if\nThe Roman ladies bring not comfort home,\nThey'll give him death by inches.\n\nSICINIUS:\nWhat's the news?\n\nSecond Messenger:\nGood news, good news; the ladies have prevail'd,\nThe Volscians are dislodged, and Marcius gone:\nA merrier day did never yet greet Rome,\nNo, not the expulsion of the Tarquins.\n\nSICINIUS:\nFriend,\nArt thou certain this is true? is it most certain?\n\nSecond Messenger:\nAs certain as I know the sun is fire:\nWhere have you lurk'd, that you make doubt of it?\nNe'er through an arch so hurried the blown tide,\nAs the recomforted through the gates. Why, hark you!\nThe trumpets, sackbuts, psalteries and fifes,\nTabours and cymbals and the shouting Romans,\nMake the sun dance. Hark you!\n\nMENENIUS:\nThis is good news:\nI will go meet the ladies. This Volumnia\nIs worth of consuls, senators, patricians,\nA city full; of tribunes, such as you,\nA sea and land full. You have pray'd well to-day:\nThis morning for ten thousand of your throats\nI'd not have given a doit. Hark, how they joy!\n\nSICINIUS:\nFirst, the gods bless you for your tidings; next,\nAccept my thankfulness.\n\nSecond Messenger:\nSir, we have all\nGreat cause to give great thanks.\n\nSICINIUS:\nThey are near the city?\n\nSecond Messenger:\nAlmost at point to enter.\n\nSICINIUS:\nWe will meet them,\nAnd help the joy.\n\nFirst Senator:\nBehold our patroness, the life of Rome!\nCall all your tribes together, praise the gods,\nAnd make triumphant fires; strew flowers before them:\nUnshout the noise that banish'd Marcius,\nRepeal him with the welcome of his mother;\nCry 'Welcome, ladies, welcome!'\n\nAll:\nWelcome, ladies, Welcome!\n\nAUFIDIUS:\nGo tell the lords o' the city I am here:\nDeliver them this paper: having read it,\nBid them repair to the market place; where I,\nEven in theirs and in the commons' ears,\nWill vouch the truth of it. Him I accuse\nThe city ports by this hath enter'd and\nIntends to appear before the people, hoping\nTo purge herself with words: dispatch.\nMost welcome!\n\nFirst Conspirator:\nHow is it with our general?\n\nAUFIDIUS:\nEven so\nAs with a man by his own alms empoison'd,\nAnd with his charity slain.\n\nSecond Conspirator:\nMost noble sir,\nIf you do hold the same intent wherein\nYou wish'd us parties, we'll deliver you\nOf your great danger.\n\nAUFIDIUS:\nSir, I cannot tell:\nWe must proceed as we do find the people.\n\nThird Conspirator:\nThe people will remain uncertain whilst\n'Twixt you there's difference; but the fall of either\nMakes the survivor heir of all.\n\nAUFIDIUS:\nI know it;\nAnd my pretext to strike at him admits\nA good construction. I raised him, and I pawn'd\nMine honour for his truth: who being so heighten'd,\nHe water'd his new plants with dews of flattery,\nSeducing so my friends; and, to this end,\nHe bow'd his nature, never known before\nBut to be rough, unswayable and free.\n\nThird Conspirator:\nSir, his stoutness\nWhen he did stand for consul, which he lost\nBy lack of stooping,--\n\nAUFIDIUS:\nThat I would have spoke of:\nBeing banish'd for't, he came unto my hearth;\nPresented to my knife his throat: I took him;\nMade him joint-servant with me; gave him way\nIn all his own desires; nay, let him choose\nOut of my files, his projects to accomplish,\nMy best and freshest men; served his designments\nIn mine own person; holp to reap the fame\nWhich he did end all his; and took some pride\nTo do myself this wrong: till, at the last,\nI seem'd his follower, not partner, and\nHe waged me with his countenance, as if\nI had been mercenary.\n\nFirst Conspirator:\nSo he did, my lord:\nThe army marvell'd at it, and, in the last,\nWhen he had carried Rome and that we look'd\nFor no less spoil than glory,--\n\nAUFIDIUS:\nThere was it:\nFor which my sinews shall be stretch'd upon him.\nAt a few drops of women's rheum, which are\nAs cheap as lies, he sold the blood and labour\nOf our great action: therefore shall he die,\nAnd I'll renew me in his fall. But, hark!\n\nFirst Conspirator:\nYour native town you enter'd like a post,\nAnd had no welcomes home: but he returns,\nSplitting the air with noise.\n\nSecond Conspirator:\nAnd patient fools,\nWhose children he hath slain, their base throats tear\nWith giving him glory.\n\nThird Conspirator:\nTherefore, at your vantage,\nEre he express himself, or move the people\nWith what he would say, let him feel your sword,\nWhich we will second. When he lies along,\nAfter your way his tale pronounced shall bury\nHis reasons with his body.\n\nAUFIDIUS:\nSay no more:\nHere come the lords.\n\nAll The Lords:\nYou are most welcome home.\n\nAUFIDIUS:\nI have not deserved it.\nBut, worthy lords, have you with heed perused\nWhat I have written to you?\n\nLords:\nWe have.\n\nFirst Lord:\nAnd grieve to hear't.\nWhat faults he made before the last, I think\nMight have found easy fines: but there to end\nWhere he was to begin and give away\nThe benefit of our levies, answering us\nWith our own charge, making a treaty where\nThere was a yielding,--this admits no excuse.\n\nAUFIDIUS:\nHe approaches: you shall hear him.\n\nCORIOLANUS:\nHail, lords! I am return'd your soldier,\nNo more infected with my country's love\nThan when I parted hence, but still subsisting\nUnder your great command. You are to know\nThat prosperously I have attempted and\nWith bloody passage led your wars even to\nThe gates of Rome. Our spoils we have brought home\nDo more than counterpoise a full third part\nThe charges of the action. We have made peace\nWith no less honour to the Antiates\nThan shame to the Romans: and we here deliver,\nSubscribed by the consuls and patricians,\nTogether with the seal o' the senate, what\nWe have compounded on.\n\nAUFIDIUS:\nRead it not, noble lords;\nBut tell the traitor, in the high'st degree\nHe hath abused your powers.\n\nCORIOLANUS:\nTraitor! how now!\n\nAUFIDIUS:\nAy, traitor, Marcius!\n\nCORIOLANUS:\nMarcius!\n\nAUFIDIUS:\nAy, Marcius, Caius Marcius: dost thou think\nI'll grace thee with that robbery, thy stol'n name\nCoriolanus in Corioli?\nYou lords and heads o' the state, perfidiously\nHe has betray'd your business, and given up,\nFor certain drops of salt, your city Rome,\nI say 'your city,' to his wife and mother;\nBreaking his oath and resolution like\nA twist of rotten silk, never admitting\nCounsel o' the war, but at his nurse's tears\nHe whined and roar'd away your victory,\nThat pages blush'd at him and men of heart\nLook'd wondering each at other.\n\nCORIOLANUS:\nHear'st thou, Mars?\n\nAUFIDIUS:\nName not the god, thou boy of tears!\n\nCORIOLANUS:\nHa!\n\nAUFIDIUS:\nNo more.\n\nCORIOLANUS:\nMeasureless liar, thou hast made my heart\nToo great for what contains it. Boy! O slave!\nPardon me, lords, 'tis the first time that ever\nI was forced to scold. Your judgments, my grave lords,\nMust give this cur the lie: and his own notion--\nWho wears my stripes impress'd upon him; that\nMust bear my beating to his grave--shall join\nTo thrust the lie unto him.\n\nFirst Lord:\nPeace, both, and hear me speak.\n\nCORIOLANUS:\nCut me to pieces, Volsces; men and lads,\nStain all your edges on me. Boy! false hound!\nIf you have writ your annals true, 'tis there,\nThat, like an eagle in a dove-cote, I\nFlutter'd your Volscians in Corioli:\nAlone I did it. Boy!\n\nAUFIDIUS:\nWhy, noble lords,\nWill you be put in mind of his blind fortune,\nWhich was your shame, by this unholy braggart,\n'Fore your own eyes and ears?\n\nAll Conspirators:\nLet him die for't.\n\nAll The People:\n'Tear him to pieces.' 'Do it presently.' 'He kill'd\nmy son.' 'My daughter.' 'He killed my cousin\nMarcus.' 'He killed my father.'\n\nSecond Lord:\nPeace, ho! no outrage: peace!\nThe man is noble and his fame folds-in\nThis orb o' the earth. His last offences to us\nShall have judicious hearing. Stand, Aufidius,\nAnd trouble not the peace.\n\nCORIOLANUS:\nO that I had him,\nWith six Aufidiuses, or more, his tribe,\nTo use my lawful sword!\n\nAUFIDIUS:\nInsolent villain!\n\nAll Conspirators:\nKill, kill, kill, kill, kill him!\n\nLords:\nHold, hold, hold, hold!\n\nAUFIDIUS:\nMy noble masters, hear me speak.\n\nFirst Lord:\nO Tullus,--\n\nSecond Lord:\nThou hast done a deed whereat valour will weep.\n\nThird Lord:\nTread not upon him. Masters all, be quiet;\nPut up your swords.\n\nAUFIDIUS:\nMy lords, when you shall know--as in this rage,\nProvoked by him, you cannot--the great danger\nWhich this man's life did owe you, you'll rejoice\nThat he is thus cut off. Please it your honours\nTo call me to your senate, I'll deliver\nMyself your loyal servant, or endure\nYour heaviest censure.\n\nFirst Lord:\nBear from hence his body;\nAnd mourn you for him: let him be regarded\nAs the most noble corse that ever herald\nDid follow to his urn.\n\nSecond Lord:\nHis own impatience\nTakes from Aufidius a great part of blame.\nLet's make the best of it.\n\nAUFIDIUS:\nMy rage is gone;\nAnd I am struck with sorrow. Take him up.\nHelp, three o' the chiefest soldiers; I'll be one.\nBeat thou the drum, that it speak mournfully:\nTrail your steel pikes. Though in this city he\nHath widow'd and unchilded many a one,\nWhich to this hour bewail the injury,\nYet he shall have a noble memory. Assist.\n\nGLOUCESTER:\nNow is the winter of our discontent\nMade glorious summer by this sun of York;\nAnd all the clouds that lour'd upon our house\nIn the deep bosom of the ocean buried.\nNow are our brows bound with victorious wreaths;\nOur bruised arms hung up for monuments;\nOur stern alarums changed to merry meetings,\nOur dreadful marches to delightful measures.\nGrim-visaged war hath smooth'd his wrinkled front;\nAnd now, instead of mounting barded steeds\nTo fright the souls of fearful adversaries,\nHe capers nimbly in a lady's chamber\nTo the lascivious pleasing of a lute.\nBut I, that am not shaped for sportive tricks,\nNor made to court an amorous looking-glass;\nI, that am rudely stamp'd, and want love's majesty\nTo strut before a wanton ambling nymph;\nI, that am curtail'd of this fair proportion,\nCheated of feature by dissembling nature,\nDeformed, unfinish'd, sent before my time\nInto this breathing world, scarce half made up,\nAnd that so lamely and unfashionable\nThat dogs bark at me as I halt by them;\nWhy, I, in this weak piping time of peace,\nHave no delight to pass away the time,\nUnless to spy my shadow in the sun\nAnd descant on mine own deformity:\nAnd therefore, since I cannot prove a lover,\nTo entertain these fair well-spoken days,\nI am determined to prove a villain\nAnd hate the idle pleasures of these days.\nPlots have I laid, inductions dangerous,\nBy drunken prophecies, libels and dreams,\nTo set my brother Clarence and the king\nIn deadly hate the one against the other:\nAnd if King Edward be as true and just\nAs I am subtle, false and treacherous,\nThis day should Clarence closely be mew'd up,\nAbout a prophecy, which says that 'G'\nOf Edward's heirs the murderer shall be.\nDive, thoughts, down to my soul: here\nClarence comes.\nBrother, good day; what means this armed guard\nThat waits upon your grace?\n\nCLARENCE:\nHis majesty\nTendering my person's safety, hath appointed\nThis conduct to convey me to the Tower.\n\nGLOUCESTER:\nUpon what cause?\n\nCLARENCE:\nBecause my name is George.\n\nGLOUCESTER:\nAlack, my lord, that fault is none of yours;\nHe should, for that, commit your godfathers:\nO, belike his majesty hath some intent\nThat you shall be new-christen'd in the Tower.\nBut what's the matter, Clarence?  may I know?\n\nCLARENCE:\nYea, Richard, when I know; for I protest\nAs yet I do not: but, as I can learn,\nHe hearkens after prophecies and dreams;\nAnd from the cross-row plucks the letter G.\nAnd says a wizard told him that by G\nHis issue disinherited should be;\nAnd, for my name of George begins with G,\nIt follows in his thought that I am he.\nThese, as I learn, and such like toys as these\nHave moved his highness to commit me now.\n\nGLOUCESTER:\nWhy, this it is, when men are ruled by women:\n'Tis not the king that sends you to the Tower:\nMy Lady Grey his wife, Clarence, 'tis she\nThat tempers him to this extremity.\nWas it not she and that good man of worship,\nAnthony Woodville, her brother there,\nThat made him send Lord Hastings to the Tower,\nFrom whence this present day he is deliver'd?\nWe are not safe, Clarence; we are not safe.\n\nCLARENCE:\nBy heaven, I think there's no man is secure\nBut the queen's kindred and night-walking heralds\nThat trudge betwixt the king and Mistress Shore.\nHeard ye not what an humble suppliant\nLord hastings was to her for his delivery?\n\nGLOUCESTER:\nHumbly complaining to her deity\nGot my lord chamberlain his liberty.\nI'll tell you what; I think it is our way,\nIf we will keep in favour with the king,\nTo be her men and wear her livery:\nThe jealous o'erworn widow and herself,\nSince that our brother dubb'd them gentlewomen.\nAre mighty gossips in this monarchy.\n\nBRAKENBURY:\nI beseech your graces both to pardon me;\nHis majesty hath straitly given in charge\nThat no man shall have private conference,\nOf what degree soever, with his brother.\n\nGLOUCESTER:\nEven so; an't please your worship, Brakenbury,\nYou may partake of any thing we say:\nWe speak no treason, man: we say the king\nIs wise and virtuous, and his noble queen\nWell struck in years, fair, and not jealous;\nWe say that Shore's wife hath a pretty foot,\nA cherry lip, a bonny eye, a passing pleasing tongue;\nAnd that the queen's kindred are made gentle-folks:\nHow say you sir? Can you deny all this?\n\nBRAKENBURY:\nWith this, my lord, myself have nought to do.\n\nGLOUCESTER:\nNaught to do with mistress Shore! I tell thee, fellow,\nHe that doth naught with her, excepting one,\nWere best he do it secretly, alone.\n\nBRAKENBURY:\nWhat one, my lord?\n\nGLOUCESTER:\nHer husband, knave: wouldst thou betray me?\n\nBRAKENBURY:\nI beseech your grace to pardon me, and withal\nForbear your conference with the noble duke.\n\nCLARENCE:\nWe know thy charge, Brakenbury, and will obey.\n\nGLOUCESTER:\nWe are the queen's abjects, and must obey.\nBrother, farewell: I will unto the king;\nAnd whatsoever you will employ me in,\nWere it to call King Edward's widow sister,\nI will perform it to enfranchise you.\nMeantime, this deep disgrace in brotherhood\nTouches me deeper than you can imagine.\n\nCLARENCE:\nI know it pleaseth neither of us well.\n\nGLOUCESTER:\nWell, your imprisonment shall not be long;\nMeantime, have patience.\n\nCLARENCE:\nI must perforce. Farewell.\n\nGLOUCESTER:\nGo, tread the path that thou shalt ne'er return.\nSimple, plain Clarence! I do love thee so,\nThat I will shortly send thy soul to heaven,\nIf heaven will take the present at our hands.\nBut who comes here? the new-deliver'd Hastings?\n\nHASTINGS:\nGood time of day unto my gracious lord!\n\nGLOUCESTER:\nAs much unto my good lord chamberlain!\nWell are you welcome to the open air.\nHow hath your lordship brook'd imprisonment?\n\nHASTINGS:\nWith patience, noble lord, as prisoners must:\nBut I shall live, my lord, to give them thanks\nThat were the cause of my imprisonment.\n\nGLOUCESTER:\nNo doubt, no doubt; and so shall Clarence too;\nFor they that were your enemies are his,\nAnd have prevail'd as much on him as you.\n\nHASTINGS:\nMore pity that the eagle should be mew'd,\nWhile kites and buzzards prey at liberty.\n\nGLOUCESTER:\nWhat news abroad?\n\nHASTINGS:\nNo news so bad abroad as this at home;\nThe King is sickly, weak and melancholy,\nAnd his physicians fear him mightily.\n\nGLOUCESTER:\nNow, by Saint Paul, this news is bad indeed.\nO, he hath kept an evil diet long,\nAnd overmuch consumed his royal person:\n'Tis very grievous to be thought upon.\nWhat, is he in his bed?\n\nHASTINGS:\nHe is.\n\nGLOUCESTER:\nGo you before, and I will follow you.\nHe cannot live, I hope; and must not die\nTill George be pack'd with post-horse up to heaven.\nI'll in, to urge his hatred more to Clarence,\nWith lies well steel'd with weighty arguments;\nAnd, if I fall not in my deep intent,\nClarence hath not another day to live:\nWhich done, God take King Edward to his mercy,\nAnd leave the world for me to bustle in!\nFor then I'll marry Warwick's youngest daughter.\nWhat though I kill'd her husband and her father?\nThe readiest way to make the wench amends\nIs to become her husband and her father:\nThe which will I; not all so much for love\nAs for another secret close intent,\nBy marrying her which I must reach unto.\nBut yet I run before my horse to market:\nClarence still breathes; Edward still lives and reigns:\nWhen they are gone, then must I count my gains.\n\nLADY ANNE:\nSet down, set down your honourable load,\nIf honour may be shrouded in a hearse,\nWhilst I awhile obsequiously lament\nThe untimely fall of virtuous Lancaster.\nPoor key-cold figure of a holy king!\nPale ashes of the house of Lancaster!\nThou bloodless remnant of that royal blood!\nBe it lawful that I invocate thy ghost,\nTo hear the lamentations of Poor Anne,\nWife to thy Edward, to thy slaughter'd son,\nStabb'd by the selfsame hand that made these wounds!\nLo, in these windows that let forth thy life,\nI pour the helpless balm of my poor eyes.\nCursed be the hand that made these fatal holes!\nCursed be the heart that had the heart to do it!\nCursed the blood that let this blood from hence!\nMore direful hap betide that hated wretch,\nThat makes us wretched by the death of thee,\nThan I can wish to adders, spiders, toads,\nOr any creeping venom'd thing that lives!\nIf ever he have child, abortive be it,\nProdigious, and untimely brought to light,\nWhose ugly and unnatural aspect\nMay fright the hopeful mother at the view;\nAnd that be heir to his unhappiness!\nIf ever he have wife, let her he made\nA miserable by the death of him\nAs I am made by my poor lord and thee!\nCome, now towards Chertsey with your holy load,\nTaken from Paul's to be interred there;\nAnd still, as you are weary of the weight,\nRest you, whiles I lament King Henry's corse.\n\nGLOUCESTER:\nStay, you that bear the corse, and set it down.\n\nLADY ANNE:\nWhat black magician conjures up this fiend,\nTo stop devoted charitable deeds?\n\nGLOUCESTER:\nVillains, set down the corse; or, by Saint Paul,\nI'll make a corse of him that disobeys.\n\nGentleman:\nMy lord, stand back, and let the coffin pass.\n\nGLOUCESTER:\nUnmanner'd dog! stand thou, when I command:\nAdvance thy halbert higher than my breast,\nOr, by Saint Paul, I'll strike thee to my foot,\nAnd spurn upon thee, beggar, for thy boldness.\n\nLADY ANNE:\nWhat, do you tremble? are you all afraid?\nAlas, I blame you not; for you are mortal,\nAnd mortal eyes cannot endure the devil.\nAvaunt, thou dreadful minister of hell!\nThou hadst but power over his mortal body,\nHis soul thou canst not have; therefore be gone.\n\nGLOUCESTER:\nSweet saint, for charity, be not so curst.\n\nLADY ANNE:\nFoul devil, for God's sake, hence, and trouble us not;\nFor thou hast made the happy earth thy hell,\nFill'd it with cursing cries and deep exclaims.\nIf thou delight to view thy heinous deeds,\nBehold this pattern of thy butcheries.\nO, gentlemen, see, see! dead Henry's wounds\nOpen their congeal'd mouths and bleed afresh!\nBlush, Blush, thou lump of foul deformity;\nFor 'tis thy presence that exhales this blood\nFrom cold and empty veins, where no blood dwells;\nThy deed, inhuman and unnatural,\nProvokes this deluge most unnatural.\nO God, which this blood madest, revenge his death!\nO earth, which this blood drink'st revenge his death!\nEither heaven with lightning strike the\nmurderer dead,\nOr earth, gape open wide and eat him quick,\nAs thou dost swallow up this good king's blood\nWhich his hell-govern'd arm hath butchered!\n\nGLOUCESTER:\nLady, you know no rules of charity,\nWhich renders good for bad, blessings for curses.\n\nLADY ANNE:\nVillain, thou know'st no law of God nor man:\nNo beast so fierce but knows some touch of pity.\n\nGLOUCESTER:\nBut I know none, and therefore am no beast.\n\nLADY ANNE:\nO wonderful, when devils tell the truth!\n\nGLOUCESTER:\nMore wonderful, when angels are so angry.\nVouchsafe, divine perfection of a woman,\nOf these supposed-evils, to give me leave,\nBy circumstance, but to acquit myself.\n\nLADY ANNE:\nVouchsafe, defused infection of a man,\nFor these known evils, but to give me leave,\nBy circumstance, to curse thy cursed self.\n\nGLOUCESTER:\nFairer than tongue can name thee, let me have\nSome patient leisure to excuse myself.\n\nLADY ANNE:\nFouler than heart can think thee, thou canst make\nNo excuse current, but to hang thyself.\n\nGLOUCESTER:\nBy such despair, I should accuse myself.\n\nLADY ANNE:\nAnd, by despairing, shouldst thou stand excused;\nFor doing worthy vengeance on thyself,\nWhich didst unworthy slaughter upon others.\n\nGLOUCESTER:\nSay that I slew them not?\n\nLADY ANNE:\nWhy, then they are not dead:\nBut dead they are, and devilish slave, by thee.\n\nGLOUCESTER:\nI did not kill your husband.\n\nLADY ANNE:\nWhy, then he is alive.\n\nGLOUCESTER:\nNay, he is dead; and slain by Edward's hand.\n\nLADY ANNE:\nIn thy foul throat thou liest: Queen Margaret saw\nThy murderous falchion smoking in his blood;\nThe which thou once didst bend against her breast,\nBut that thy brothers beat aside the point.\n\nGLOUCESTER:\nI was provoked by her slanderous tongue,\nwhich laid their guilt upon my guiltless shoulders.\n\nLADY ANNE:\nThou wast provoked by thy bloody mind.\nWhich never dreamt on aught but butcheries:\nDidst thou not kill this king?\n\nGLOUCESTER:\nI grant ye.\n\nLADY ANNE:\nDost grant me, hedgehog? then, God grant me too\nThou mayst be damned for that wicked deed!\nO, he was gentle, mild, and virtuous!\n\nGLOUCESTER:\nThe fitter for the King of heaven, that hath him.\n\nLADY ANNE:\nHe is in heaven, where thou shalt never come.\n\nGLOUCESTER:\nLet him thank me, that holp to send him thither;\nFor he was fitter for that place than earth.\n\nLADY ANNE:\nAnd thou unfit for any place but hell.\n\nGLOUCESTER:\nYes, one place else, if you will hear me name it.\n\nLADY ANNE:\nSome dungeon.\n\nGLOUCESTER:\nYour bed-chamber.\n\nLADY ANNE:\nI'll rest betide the chamber where thou liest!\n\nGLOUCESTER:\nSo will it, madam till I lie with you.\n\nLADY ANNE:\nI hope so.\n\nGLOUCESTER:\nI know so. But, gentle Lady Anne,\nTo leave this keen encounter of our wits,\nAnd fall somewhat into a slower method,\nIs not the causer of the timeless deaths\nOf these Plantagenets, Henry and Edward,\nAs blameful as the executioner?\n\nLADY ANNE:\nThou art the cause, and most accursed effect.\n\nGLOUCESTER:\nYour beauty was the cause of that effect;\nYour beauty: which did haunt me in my sleep\nTo undertake the death of all the world,\nSo I might live one hour in your sweet bosom.\n\nLADY ANNE:\nIf I thought that, I tell thee, homicide,\nThese nails should rend that beauty from my cheeks.\n\nGLOUCESTER:\nThese eyes could never endure sweet beauty's wreck;\nYou should not blemish it, if I stood by:\nAs all the world is cheered by the sun,\nSo I by that; it is my day, my life.\n\nLADY ANNE:\nBlack night o'ershade thy day, and death thy life!\n\nGLOUCESTER:\nCurse not thyself, fair creature thou art both.\n\nLADY ANNE:\nI would I were, to be revenged on thee.\n\nGLOUCESTER:\nIt is a quarrel most unnatural,\nTo be revenged on him that loveth you.\n\nLADY ANNE:\nIt is a quarrel just and reasonable,\nTo be revenged on him that slew my husband.\n\nGLOUCESTER:\nHe that bereft thee, lady, of thy husband,\nDid it to help thee to a better husband.\n\nLADY ANNE:\nHis better doth not breathe upon the earth.\n\nGLOUCESTER:\nHe lives that loves thee better than he could.\n\nLADY ANNE:\nName him.\n\nGLOUCESTER:\nPlantagenet.\n\nLADY ANNE:\nWhy, that was he.\n\nGLOUCESTER:\nThe selfsame name, but one of better nature.\n\nLADY ANNE:\nWhere is he?\n\nGLOUCESTER:\nHere.\nWhy dost thou spit at me?\n\nLADY ANNE:\nWould it were mortal poison, for thy sake!\n\nGLOUCESTER:\nNever came poison from so sweet a place.\n\nLADY ANNE:\nNever hung poison on a fouler toad.\nOut of my sight! thou dost infect my eyes.\n\nGLOUCESTER:\nThine eyes, sweet lady, have infected mine.\n\nLADY ANNE:\nWould they were basilisks, to strike thee dead!\n\nGLOUCESTER:\nI would they were, that I might die at once;\nFor now they kill me with a living death.\nThose eyes of thine from mine have drawn salt tears,\nShamed their aspect with store of childish drops:\nThese eyes that never shed remorseful tear,\nNo, when my father York and Edward wept,\nTo hear the piteous moan that Rutland made\nWhen black-faced Clifford shook his sword at him;\nNor when thy warlike father, like a child,\nTold the sad story of my father's death,\nAnd twenty times made pause to sob and weep,\nThat all the standers-by had wet their cheeks\nLike trees bedash'd with rain: in that sad time\nMy manly eyes did scorn an humble tear;\nAnd what these sorrows could not thence exhale,\nThy beauty hath, and made them blind with weeping.\nI never sued to friend nor enemy;\nMy tongue could never learn sweet smoothing word;\nBut now thy beauty is proposed my fee,\nMy proud heart sues, and prompts my tongue to speak.\nTeach not thy lips such scorn, for they were made\nFor kissing, lady, not for such contempt.\nIf thy revengeful heart cannot forgive,\nLo, here I lend thee this sharp-pointed sword;\nWhich if thou please to hide in this true bosom.\nAnd let the soul forth that adoreth thee,\nI lay it naked to the deadly stroke,\nAnd humbly beg the death upon my knee.\nNay, do not pause; for I did kill King Henry,\nBut 'twas thy beauty that provoked me.\nNay, now dispatch; 'twas I that stabb'd young Edward,\nBut 'twas thy heavenly face that set me on.\nTake up the sword again, or take up me.\n\nLADY ANNE:\nArise, dissembler: though I wish thy death,\nI will not be the executioner.\n\nGLOUCESTER:\nThen bid me kill myself, and I will do it.\n\nLADY ANNE:\nI have already.\n\nGLOUCESTER:\nTush, that was in thy rage:\nSpeak it again, and, even with the word,\nThat hand, which, for thy love, did kill thy love,\nShall, for thy love, kill a far truer love;\nTo both their deaths thou shalt be accessary.\n\nLADY ANNE:\nI would I knew thy heart.\n\nGLOUCESTER:\n'Tis figured in my tongue.\n\nLADY ANNE:\nI fear me both are false.\n\nGLOUCESTER:\nThen never man was true.\n\nLADY ANNE:\nWell, well, put up your sword.\n\nGLOUCESTER:\nSay, then, my peace is made.\n\nLADY ANNE:\nThat shall you know hereafter.\n\nGLOUCESTER:\nBut shall I live in hope?\n\nLADY ANNE:\nAll men, I hope, live so.\n\nGLOUCESTER:\nVouchsafe to wear this ring.\n\nLADY ANNE:\nTo take is not to give.\n\nGLOUCESTER:\nLook, how this ring encompasseth finger.\nEven so thy breast encloseth my poor heart;\nWear both of them, for both of them are thine.\nAnd if thy poor devoted suppliant may\nBut beg one favour at thy gracious hand,\nThou dost confirm his happiness for ever.\n\nLADY ANNE:\nWhat is it?\n\nGLOUCESTER:\nThat it would please thee leave these sad designs\nTo him that hath more cause to be a mourner,\nAnd presently repair to Crosby Place;\nWhere, after I have solemnly interr'd\nAt Chertsey monastery this noble king,\nAnd wet his grave with my repentant tears,\nI will with all expedient duty see you:\nFor divers unknown reasons. I beseech you,\nGrant me this boon.\n\nLADY ANNE:\nWith all my heart; and much it joys me too,\nTo see you are become so penitent.\nTressel and Berkeley, go along with me.\n\nGLOUCESTER:\nBid me farewell.\n\nLADY ANNE:\n'Tis more than you deserve;\nBut since you teach me how to flatter you,\nImagine I have said farewell already.\n\nGLOUCESTER:\nSirs, take up the corse.\n\nGENTLEMEN:\nTowards Chertsey, noble lord?\n\nGLOUCESTER:\nNo, to White-Friars; there attend my coining.\nWas ever woman in this humour woo'd?\nWas ever woman in this humour won?\nI'll have her; but I will not keep her long.\nWhat! I, that kill'd her husband and his father,\nTo take her in her heart's extremest hate,\nWith curses in her mouth, tears in her eyes,\nThe bleeding witness of her hatred by;\nHaving God, her conscience, and these bars\nagainst me,\nAnd I nothing to back my suit at all,\nBut the plain devil and dissembling looks,\nAnd yet to win her, all the world to nothing!\nHa!\nHath she forgot already that brave prince,\nEdward, her lord, whom I, some three months since,\nStabb'd in my angry mood at Tewksbury?\nA sweeter and a lovelier gentleman,\nFramed in the prodigality of nature,\nYoung, valiant, wise, and, no doubt, right royal,\nThe spacious world cannot again afford\nAnd will she yet debase her eyes on me,\nThat cropp'd the golden prime of this sweet prince,\nAnd made her widow to a woful bed?\nOn me, whose all not equals Edward's moiety?\nOn me, that halt and am unshapen thus?\nMy dukedom to a beggarly denier,\nI do mistake my person all this while:\nUpon my life, she finds, although I cannot,\nMyself to be a marvellous proper man.\nI'll be at charges for a looking-glass,\nAnd entertain some score or two of tailors,\nTo study fashions to adorn my body:\nSince I am crept in favour with myself,\nWill maintain it with some little cost.\nBut first I'll turn yon fellow in his grave;\nAnd then return lamenting to my love.\nShine out, fair sun, till I have bought a glass,\nThat I may see my shadow as I pass.\n\nRIVERS:\nHave patience, madam: there's no doubt his majesty\nWill soon recover his accustom'd health.\n\nGREY:\nIn that you brook it in, it makes him worse:\nTherefore, for God's sake, entertain good comfort,\nAnd cheer his grace with quick and merry words.\n\nQUEEN ELIZABETH:\nIf he were dead, what would betide of me?\n\nRIVERS:\nNo other harm but loss of such a lord.\n\nQUEEN ELIZABETH:\nThe loss of such a lord includes all harm.\n\nGREY:\nThe heavens have bless'd you with a goodly son,\nTo be your comforter when he is gone.\n\nQUEEN ELIZABETH:\nOh, he is young and his minority\nIs put unto the trust of Richard Gloucester,\nA man that loves not me, nor none of you.\n\nRIVERS:\nIs it concluded that he shall be protector?\n\nQUEEN ELIZABETH:\nIt is determined, not concluded yet:\nBut so it must be, if the king miscarry.\n\nGREY:\nHere come the lords of Buckingham and Derby.\n\nBUCKINGHAM:\nGood time of day unto your royal grace!\n\nDERBY:\nGod make your majesty joyful as you have been!\n\nQUEEN ELIZABETH:\nThe Countess Richmond, good my Lord of Derby.\nTo your good prayers will scarcely say amen.\nYet, Derby, notwithstanding she's your wife,\nAnd loves not me, be you, good lord, assured\nI hate not you for her proud arrogance.\n\nDERBY:\nI do beseech you, either not believe\nThe envious slanders of her false accusers;\nOr, if she be accused in true report,\nBear with her weakness, which, I think proceeds\nFrom wayward sickness, and no grounded malice.\n\nRIVERS:\nSaw you the king to-day, my Lord of Derby?\n\nDERBY:\nBut now the Duke of Buckingham and I\nAre come from visiting his majesty.\n\nQUEEN ELIZABETH:\nWhat likelihood of his amendment, lords?\n\nBUCKINGHAM:\nMadam, good hope; his grace speaks cheerfully.\n\nQUEEN ELIZABETH:\nGod grant him health! Did you confer with him?\n\nBUCKINGHAM:\nMadam, we did: he desires to make atonement\nBetwixt the Duke of Gloucester and your brothers,\nAnd betwixt them and my lord chamberlain;\nAnd sent to warn them to his royal presence.\n\nQUEEN ELIZABETH:\nWould all were well! but that will never be\nI fear our happiness is at the highest.\n\nGLOUCESTER:\nThey do me wrong, and I will not endure it:\nWho are they that complain unto the king,\nThat I, forsooth, am stern, and love them not?\nBy holy Paul, they love his grace but lightly\nThat fill his ears with such dissentious rumours.\nBecause I cannot flatter and speak fair,\nSmile in men's faces, smooth, deceive and cog,\nDuck with French nods and apish courtesy,\nI must be held a rancorous enemy.\nCannot a plain man live and think no harm,\nBut thus his simple truth must be abused\nBy silken, sly, insinuating Jacks?\n\nRIVERS:\nTo whom in all this presence speaks your grace?\n\nGLOUCESTER:\nTo thee, that hast nor honesty nor grace.\nWhen have I injured thee? when done thee wrong?\nOr thee? or thee? or any of your faction?\nA plague upon you all! His royal person,--\nWhom God preserve better than you would wish!--\nCannot be quiet scarce a breathing-while,\nBut you must trouble him with lewd complaints.\n\nQUEEN ELIZABETH:\nBrother of Gloucester, you mistake the matter.\nThe king, of his own royal disposition,\nAnd not provoked by any suitor else;\nAiming, belike, at your interior hatred,\nWhich in your outward actions shows itself\nAgainst my kindred, brothers, and myself,\nMakes him to send; that thereby he may gather\nThe ground of your ill-will, and so remove it.\n\nGLOUCESTER:\nI cannot tell: the world is grown so bad,\nThat wrens make prey where eagles dare not perch:\nSince every Jack became a gentleman\nThere's many a gentle person made a Jack.\n\nQUEEN ELIZABETH:\nCome, come, we know your meaning, brother\nGloucester;\nYou envy my advancement and my friends':\nGod grant we never may have need of you!\n\nGLOUCESTER:\nMeantime, God grants that we have need of you:\nYour brother is imprison'd by your means,\nMyself disgraced, and the nobility\nHeld in contempt; whilst many fair promotions\nAre daily given to ennoble those\nThat scarce, some two days since, were worth a noble.\n\nQUEEN ELIZABETH:\nBy Him that raised me to this careful height\nFrom that contented hap which I enjoy'd,\nI never did incense his majesty\nAgainst the Duke of Clarence, but have been\nAn earnest advocate to plead for him.\nMy lord, you do me shameful injury,\nFalsely to draw me in these vile suspects.\n\nGLOUCESTER:\nYou may deny that you were not the cause\nOf my Lord Hastings' late imprisonment.\n\nRIVERS:\nShe may, my lord, for--\n\nGLOUCESTER:\nShe may, Lord Rivers! why, who knows not so?\nShe may do more, sir, than denying that:\nShe may help you to many fair preferments,\nAnd then deny her aiding hand therein,\nAnd lay those honours on your high deserts.\nWhat may she not? She may, yea, marry, may she--\n\nRIVERS:\nWhat, marry, may she?\n\nGLOUCESTER:\nWhat, marry, may she! marry with a king,\nA bachelor, a handsome stripling too:\nI wis your grandam had a worser match.\n\nQUEEN ELIZABETH:\nMy Lord of Gloucester, I have too long borne\nYour blunt upbraidings and your bitter scoffs:\nBy heaven, I will acquaint his majesty\nWith those gross taunts I often have endured.\nI had rather be a country servant-maid\nThan a great queen, with this condition,\nTo be thus taunted, scorn'd, and baited at:\nSmall joy have I in being England's queen.\n\nQUEEN MARGARET:\nAnd lessen'd be that small, God, I beseech thee!\nThy honour, state and seat is due to me.\n\nGLOUCESTER:\nWhat! threat you me with telling of the king?\nTell him, and spare not: look, what I have said\nI will avouch in presence of the king:\nI dare adventure to be sent to the Tower.\n'Tis time to speak; my pains are quite forgot.\n\nQUEEN MARGARET:\nOut, devil! I remember them too well:\nThou slewest my husband Henry in the Tower,\nAnd Edward, my poor son, at Tewksbury.\n\nGLOUCESTER:\nEre you were queen, yea, or your husband king,\nI was a pack-horse in his great affairs;\nA weeder-out of his proud adversaries,\nA liberal rewarder of his friends:\nTo royalize his blood I spilt mine own.\n\nQUEEN MARGARET:\nYea, and much better blood than his or thine.\n\nGLOUCESTER:\nIn all which time you and your husband Grey\nWere factious for the house of Lancaster;\nAnd, Rivers, so were you. Was not your husband\nIn Margaret's battle at Saint Alban's slain?\nLet me put in your minds, if you forget,\nWhat you have been ere now, and what you are;\nWithal, what I have been, and what I am.\n\nQUEEN MARGARET:\nA murderous villain, and so still thou art.\n\nGLOUCESTER:\nPoor Clarence did forsake his father, Warwick;\nYea, and forswore himself,--which Jesu pardon!--\n\nQUEEN MARGARET:\nWhich God revenge!\n\nGLOUCESTER:\nTo fight on Edward's party for the crown;\nAnd for his meed, poor lord, he is mew'd up.\nI would to God my heart were flint, like Edward's;\nOr Edward's soft and pitiful, like mine\nI am too childish-foolish for this world.\n\nQUEEN MARGARET:\nHie thee to hell for shame, and leave the world,\nThou cacodemon! there thy kingdom is.\n\nRIVERS:\nMy Lord of Gloucester, in those busy days\nWhich here you urge to prove us enemies,\nWe follow'd then our lord, our lawful king:\nSo should we you, if you should be our king.\n\nGLOUCESTER:\nIf I should be! I had rather be a pedlar:\nFar be it from my heart, the thought of it!\n\nQUEEN ELIZABETH:\nAs little joy, my lord, as you suppose\nYou should enjoy, were you this country's king,\nAs little joy may you suppose in me.\nThat I enjoy, being the queen thereof.\n\nQUEEN MARGARET:\nA little joy enjoys the queen thereof;\nFor I am she, and altogether joyless.\nI can no longer hold me patient.\nHear me, you wrangling pirates, that fall out\nIn sharing that which you have pill'd from me!\nWhich of you trembles not that looks on me?\nIf not, that, I being queen, you bow like subjects,\nYet that, by you deposed, you quake like rebels?\nO gentle villain, do not turn away!\n\nGLOUCESTER:\nFoul wrinkled witch, what makest thou in my sight?\n\nQUEEN MARGARET:\nBut repetition of what thou hast marr'd;\nThat will I make before I let thee go.\n\nGLOUCESTER:\nWert thou not banished on pain of death?\n\nQUEEN MARGARET:\nI was; but I do find more pain in banishment\nThan death can yield me here by my abode.\nA husband and a son thou owest to me;\nAnd thou a kingdom; all of you allegiance:\nThe sorrow that I have, by right is yours,\nAnd all the pleasures you usurp are mine.\n\nGLOUCESTER:\nThe curse my noble father laid on thee,\nWhen thou didst crown his warlike brows with paper\nAnd with thy scorns drew'st rivers from his eyes,\nAnd then, to dry them, gavest the duke a clout\nSteep'd in the faultless blood of pretty Rutland--\nHis curses, then from bitterness of soul\nDenounced against thee, are all fall'n upon thee;\nAnd God, not we, hath plagued thy bloody deed.\n\nQUEEN ELIZABETH:\nSo just is God, to right the innocent.\n\nHASTINGS:\nO, 'twas the foulest deed to slay that babe,\nAnd the most merciless that e'er was heard of!\n\nRIVERS:\nTyrants themselves wept when it was reported.\n\nDORSET:\nNo man but prophesied revenge for it.\n\nBUCKINGHAM:\nNorthumberland, then present, wept to see it.\n\nQUEEN MARGARET:\nWhat were you snarling all before I came,\nReady to catch each other by the throat,\nAnd turn you all your hatred now on me?\nDid York's dread curse prevail so much with heaven?\nThat Henry's death, my lovely Edward's death,\nTheir kingdom's loss, my woful banishment,\nCould all but answer for that peevish brat?\nCan curses pierce the clouds and enter heaven?\nWhy, then, give way, dull clouds, to my quick curses!\nIf not by war, by surfeit die your king,\nAs ours by murder, to make him a king!\nEdward thy son, which now is Prince of Wales,\nFor Edward my son, which was Prince of Wales,\nDie in his youth by like untimely violence!\nThyself a queen, for me that was a queen,\nOutlive thy glory, like my wretched self!\nLong mayst thou live to wail thy children's loss;\nAnd see another, as I see thee now,\nDeck'd in thy rights, as thou art stall'd in mine!\nLong die thy happy days before thy death;\nAnd, after many lengthen'd hours of grief,\nDie neither mother, wife, nor England's queen!\nRivers and Dorset, you were standers by,\nAnd so wast thou, Lord Hastings, when my son\nWas stabb'd with bloody daggers: God, I pray him,\nThat none of you may live your natural age,\nBut by some unlook'd accident cut off!\n\nGLOUCESTER:\nHave done thy charm, thou hateful wither'd hag!\n\nQUEEN MARGARET:\nAnd leave out thee? stay, dog, for thou shalt hear me.\nIf heaven have any grievous plague in store\nExceeding those that I can wish upon thee,\nO, let them keep it till thy sins be ripe,\nAnd then hurl down their indignation\nOn thee, the troubler of the poor world's peace!\nThe worm of conscience still begnaw thy soul!\nThy friends suspect for traitors while thou livest,\nAnd take deep traitors for thy dearest friends!\nNo sleep close up that deadly eye of thine,\nUnless it be whilst some tormenting dream\nAffrights thee with a hell of ugly devils!\nThou elvish-mark'd, abortive, rooting hog!\nThou that wast seal'd in thy nativity\nThe slave of nature and the son of hell!\nThou slander of thy mother's heavy womb!\nThou loathed issue of thy father's loins!\nThou rag of honour! thou detested--\n\nGLOUCESTER:\nMargaret.\n\nQUEEN MARGARET:\nRichard!\n\nGLOUCESTER:\nHa!\n\nQUEEN MARGARET:\nI call thee not.\n\nGLOUCESTER:\nI cry thee mercy then, for I had thought\nThat thou hadst call'd me all these bitter names.\n\nQUEEN MARGARET:\nWhy, so I did; but look'd for no reply.\nO, let me make the period to my curse!\n\nGLOUCESTER:\n'Tis done by me, and ends in 'Margaret.'\n\nQUEEN ELIZABETH:\nThus have you breathed your curse against yourself.\n\nQUEEN MARGARET:\nPoor painted queen, vain flourish of my fortune!\nWhy strew'st thou sugar on that bottled spider,\nWhose deadly web ensnareth thee about?\nFool, fool! thou whet'st a knife to kill thyself.\nThe time will come when thou shalt wish for me\nTo help thee curse that poisonous bunchback'd toad.\n\nHASTINGS:\nFalse-boding woman, end thy frantic curse,\nLest to thy harm thou move our patience.\n\nQUEEN MARGARET:\nFoul shame upon you! you have all moved mine.\n\nRIVERS:\nWere you well served, you would be taught your duty.\n\nQUEEN MARGARET:\nTo serve me well, you all should do me duty,\nTeach me to be your queen, and you my subjects:\nO, serve me well, and teach yourselves that duty!\n\nDORSET:\nDispute not with her; she is lunatic.\n\nQUEEN MARGARET:\nPeace, master marquess, you are malapert:\nYour fire-new stamp of honour is scarce current.\nO, that your young nobility could judge\nWhat 'twere to lose it, and be miserable!\nThey that stand high have many blasts to shake them;\nAnd if they fall, they dash themselves to pieces.\n\nGLOUCESTER:\nGood counsel, marry: learn it, learn it, marquess.\n\nDORSET:\nIt toucheth you, my lord, as much as me.\n\nGLOUCESTER:\nYea, and much more: but I was born so high,\nOur aery buildeth in the cedar's top,\nAnd dallies with the wind and scorns the sun.\n\nQUEEN MARGARET:\nAnd turns the sun to shade; alas! alas!\nWitness my son, now in the shade of death;\nWhose bright out-shining beams thy cloudy wrath\nHath in eternal darkness folded up.\nYour aery buildeth in our aery's nest.\nO God, that seest it, do not suffer it!\nAs it was won with blood, lost be it so!\n\nBUCKINGHAM:\nHave done! for shame, if not for charity.\n\nQUEEN MARGARET:\nUrge neither charity nor shame to me:\nUncharitably with me have you dealt,\nAnd shamefully by you my hopes are butcher'd.\nMy charity is outrage, life my shame\nAnd in that shame still live my sorrow's rage.\n\nBUCKINGHAM:\nHave done, have done.\n\nQUEEN MARGARET:\nO princely Buckingham I'll kiss thy hand,\nIn sign of league and amity with thee:\nNow fair befal thee and thy noble house!\nThy garments are not spotted with our blood,\nNor thou within the compass of my curse.\n\nBUCKINGHAM:\nNor no one here; for curses never pass\nThe lips of those that breathe them in the air.\n\nQUEEN MARGARET:\nI'll not believe but they ascend the sky,\nAnd there awake God's gentle-sleeping peace.\nO Buckingham, take heed of yonder dog!\nLook, when he fawns, he bites; and when he bites,\nHis venom tooth will rankle to the death:\nHave not to do with him, beware of him;\nSin, death, and hell have set their marks on him,\nAnd all their ministers attend on him.\n\nGLOUCESTER:\nWhat doth she say, my Lord of Buckingham?\n\nBUCKINGHAM:\nNothing that I respect, my gracious lord.\n\nQUEEN MARGARET:\nWhat, dost thou scorn me for my gentle counsel?\nAnd soothe the devil that I warn thee from?\nO, but remember this another day,\nWhen he shall split thy very heart with sorrow,\nAnd say poor Margaret was a prophetess!\nLive each of you the subjects to his hate,\nAnd he to yours, and all of you to God's!\n\nHASTINGS:\nMy hair doth stand on end to hear her curses.\n\nRIVERS:\nAnd so doth mine: I muse why she's at liberty.\n\nGLOUCESTER:\nI cannot blame her: by God's holy mother,\nShe hath had too much wrong; and I repent\nMy part thereof that I have done to her.\n\nQUEEN ELIZABETH:\nI never did her any, to my knowledge.\n\nGLOUCESTER:\nBut you have all the vantage of her wrong.\nI was too hot to do somebody good,\nThat is too cold in thinking of it now.\nMarry, as for Clarence, he is well repaid,\nHe is frank'd up to fatting for his pains\nGod pardon them that are the cause of it!\n\nRIVERS:\nA virtuous and a Christian-like conclusion,\nTo pray for them that have done scathe to us.\n\nGLOUCESTER:\nSo do I ever:\nbeing well-advised.\nFor had I cursed now, I had cursed myself.\n\nCATESBY:\nMadam, his majesty doth call for you,\nAnd for your grace; and you, my noble lords.\n\nQUEEN ELIZABETH:\nCatesby, we come. Lords, will you go with us?\n\nRIVERS:\nMadam, we will attend your grace.\n\nGLOUCESTER:\nI do the wrong, and first begin to brawl.\nThe secret mischiefs that I set abroach\nI lay unto the grievous charge of others.\nClarence, whom I, indeed, have laid in darkness,\nI do beweep to many simple gulls\nNamely, to Hastings, Derby, Buckingham;\nAnd say it is the queen and her allies\nThat stir the king against the duke my brother.\nNow, they believe it; and withal whet me\nTo be revenged on Rivers, Vaughan, Grey:\nBut then I sigh; and, with a piece of scripture,\nTell them that God bids us do good for evil:\nAnd thus I clothe my naked villany\nWith old odd ends stolen out of holy writ;\nAnd seem a saint, when most I play the devil.\nBut, soft! here come my executioners.\nHow now, my hardy, stout resolved mates!\nAre you now going to dispatch this deed?\n\nFirst Murderer:\nWe are, my lord; and come to have the warrant\nThat we may be admitted where he is.\n\nGLOUCESTER:\nWell thought upon; I have it here about me.\nWhen you have done, repair to Crosby Place.\nBut, sirs, be sudden in the execution,\nWithal obdurate, do not hear him plead;\nFor Clarence is well-spoken, and perhaps\nMay move your hearts to pity if you mark him.\n\nFirst Murderer:\nTush!\nFear not, my lord, we will not stand to prate;\nTalkers are no good doers: be assured\nWe come to use our hands and not our tongues.\n\nGLOUCESTER:\nYour eyes drop millstones, when fools' eyes drop tears:\nI like you, lads; about your business straight;\nGo, go, dispatch.\n\nFirst Murderer:\nWe will, my noble lord.\n\nBRAKENBURY:\nWhy looks your grace so heavily today?\n\nCLARENCE:\nO, I have pass'd a miserable night,\nSo full of ugly sights, of ghastly dreams,\nThat, as I am a Christian faithful man,\nI would not spend another such a night,\nThough 'twere to buy a world of happy days,\nSo full of dismal terror was the time!\n\nBRAKENBURY:\nWhat was your dream? I long to hear you tell it.\n\nCLARENCE:\nMethoughts that I had broken from the Tower,\nAnd was embark'd to cross to Burgundy;\nAnd, in my company, my brother Gloucester;\nWho from my cabin tempted me to walk\nUpon the hatches: thence we looked toward England,\nAnd cited up a thousand fearful times,\nDuring the wars of York and Lancaster\nThat had befall'n us. As we paced along\nUpon the giddy footing of the hatches,\nMethought that Gloucester stumbled; and, in falling,\nStruck me, that thought to stay him, overboard,\nInto the tumbling billows of the main.\nLord, Lord! methought, what pain it was to drown!\nWhat dreadful noise of waters in mine ears!\nWhat ugly sights of death within mine eyes!\nMethought I saw a thousand fearful wrecks;\nTen thousand men that fishes gnaw'd upon;\nWedges of gold, great anchors, heaps of pearl,\nInestimable stones, unvalued jewels,\nAll scatter'd in the bottom of the sea:\nSome lay in dead men's skulls; and, in those holes\nWhere eyes did once inhabit, there were crept,\nAs 'twere in scorn of eyes, reflecting gems,\nWhich woo'd the slimy bottom of the deep,\nAnd mock'd the dead bones that lay scatter'd by.\n\nBRAKENBURY:\nHad you such leisure in the time of death\nTo gaze upon the secrets of the deep?\n\nCLARENCE:\nMethought I had; and often did I strive\nTo yield the ghost: but still the envious flood\nKept in my soul, and would not let it forth\nTo seek the empty, vast and wandering air;\nBut smother'd it within my panting bulk,\nWhich almost burst to belch it in the sea.\n\nBRAKENBURY:\nAwaked you not with this sore agony?\n\nCLARENCE:\nO, no, my dream was lengthen'd after life;\nO, then began the tempest to my soul,\nWho pass'd, methought, the melancholy flood,\nWith that grim ferryman which poets write of,\nUnto the kingdom of perpetual night.\nThe first that there did greet my stranger soul,\nWas my great father-in-law, renowned Warwick;\nWho cried aloud, 'What scourge for perjury\nCan this dark monarchy afford false Clarence?'\nAnd so he vanish'd: then came wandering by\nA shadow like an angel, with bright hair\nDabbled in blood; and he squeak'd out aloud,\n'Clarence is come; false, fleeting, perjured Clarence,\nThat stabb'd me in the field by Tewksbury;\nSeize on him, Furies, take him to your torments!'\nWith that, methoughts, a legion of foul fiends\nEnviron'd me about, and howled in mine ears\nSuch hideous cries, that with the very noise\nI trembling waked, and for a season after\nCould not believe but that I was in hell,\nSuch terrible impression made the dream.\n\nBRAKENBURY:\nNo marvel, my lord, though it affrighted you;\nI promise, I am afraid to hear you tell it.\n\nCLARENCE:\nO Brakenbury, I have done those things,\nWhich now bear evidence against my soul,\nFor Edward's sake; and see how he requites me!\nO God! if my deep prayers cannot appease thee,\nBut thou wilt be avenged on my misdeeds,\nYet execute thy wrath in me alone,\nO, spare my guiltless wife and my poor children!\nI pray thee, gentle keeper, stay by me;\nMy soul is heavy, and I fain would sleep.\n\nBRAKENBURY:\nI will, my lord: God give your grace good rest!\nSorrow breaks seasons and reposing hours,\nMakes the night morning, and the noon-tide night.\nPrinces have but their tides for their glories,\nAn outward honour for an inward toil;\nAnd, for unfelt imagination,\nThey often feel a world of restless cares:\nSo that, betwixt their tides and low names,\nThere's nothing differs but the outward fame.\n\nFirst Murderer:\nHo! who's here?\n\nBRAKENBURY:\nIn God's name what are you, and how came you hither?\n\nFirst Murderer:\nI would speak with Clarence, and I came hither on my legs.\n\nBRAKENBURY:\nYea, are you so brief?\n\nSecond Murderer:\nO sir, it is better to be brief than tedious. Show\nhim our commission; talk no more.\n\nBRAKENBURY:\nI am, in this, commanded to deliver\nThe noble Duke of Clarence to your hands:\nI will not reason what is meant hereby,\nBecause I will be guiltless of the meaning.\nHere are the keys, there sits the duke asleep:\nI'll to the king; and signify to him\nThat thus I have resign'd my charge to you.\n\nFirst Murderer:\nDo so, it is a point of wisdom: fare you well.\n\nSecond Murderer:\nWhat, shall we stab him as he sleeps?\n\nFirst Murderer:\nNo; then he will say 'twas done cowardly, when he wakes.\n\nSecond Murderer:\nWhen he wakes! why, fool, he shall never wake till\nthe judgment-day.\n\nFirst Murderer:\nWhy, then he will say we stabbed him sleeping.\n\nSecond Murderer:\nThe urging of that word 'judgment' hath bred a kind\nof remorse in me.\n\nFirst Murderer:\nWhat, art thou afraid?\n\nSecond Murderer:\nNot to kill him, having a warrant for it; but to be\ndamned for killing him, from which no warrant can defend us.\n\nFirst Murderer:\nI thought thou hadst been resolute.\n\nSecond Murderer:\nSo I am, to let him live.\n\nFirst Murderer:\nBack to the Duke of Gloucester, tell him so.\n\nSecond Murderer:\nI pray thee, stay a while: I hope my holy humour\nwill change; 'twas wont to hold me but while one\nwould tell twenty.\n\nFirst Murderer:\nHow dost thou feel thyself now?\n\nSecond Murderer:\n'Faith, some certain dregs of conscience are yet\nwithin me.\n\nFirst Murderer:\nRemember our reward, when the deed is done.\n\nSecond Murderer:\n'Zounds, he dies: I had forgot the reward.\n\nFirst Murderer:\nWhere is thy conscience now?\n\nSecond Murderer:\nIn the Duke of Gloucester's purse.\n\nFirst Murderer:\nSo when he opens his purse to give us our reward,\nthy conscience flies out.\n\nSecond Murderer:\nLet it go; there's few or none will entertain it.\n\nFirst Murderer:\nHow if it come to thee again?\n\nSecond Murderer:\nI'll not meddle with it: it is a dangerous thing: it\nmakes a man a coward: a man cannot steal, but it\naccuseth him; he cannot swear, but it cheques him;\nhe cannot lie with his neighbour's wife, but it\ndetects him: 'tis a blushing shamefast spirit that\nmutinies in a man's bosom; it fills one full of\nobstacles: it made me once restore a purse of gold\nthat I found; it beggars any man that keeps it: it\nis turned out of all towns and cities for a\ndangerous thing; and every man that means to live\nwell endeavours to trust to himself and to live\nwithout it.\n\nFirst Murderer:\n'Zounds, it is even now at my elbow, persuading me\nnot to kill the duke.\n\nSecond Murderer:\nTake the devil in thy mind, and relieve him not: he\nwould insinuate with thee but to make thee sigh.\n\nFirst Murderer:\nTut, I am strong-framed, he cannot prevail with me,\nI warrant thee.\n\nSecond Murderer:\nSpoke like a tail fellow that respects his\nreputation. Come, shall we to this gear?\n\nFirst Murderer:\nTake him over the costard with the hilts of thy\nsword, and then we will chop him in the malmsey-butt\nin the next room.\n\nSecond Murderer:\nO excellent devise! make a sop of him.\n\nFirst Murderer:\nHark! he stirs: shall I strike?\n\nSecond Murderer:\nNo, first let's reason with him.\n\nCLARENCE:\nWhere art thou, keeper? give me a cup of wine.\n\nSecond murderer:\nYou shall have wine enough, my lord, anon.\n\nCLARENCE:\nIn God's name, what art thou?\n\nSecond Murderer:\nA man, as you are.\n\nCLARENCE:\nBut not, as I am, royal.\n\nSecond Murderer:\nNor you, as we are, loyal.\n\nCLARENCE:\nThy voice is thunder, but thy looks are humble.\n\nSecond Murderer:\nMy voice is now the king's, my looks mine own.\n\nCLARENCE:\nHow darkly and how deadly dost thou speak!\nYour eyes do menace me: why look you pale?\nWho sent you hither? Wherefore do you come?\n\nBoth:\nTo, to, to--\n\nCLARENCE:\nTo murder me?\n\nBoth:\nAy, ay.\n\nCLARENCE:\nYou scarcely have the hearts to tell me so,\nAnd therefore cannot have the hearts to do it.\nWherein, my friends, have I offended you?\n\nFirst Murderer:\nOffended us you have not, but the king.\n\nCLARENCE:\nI shall be reconciled to him again.\n\nSecond Murderer:\nNever, my lord; therefore prepare to die.\n\nCLARENCE:\nAre you call'd forth from out a world of men\nTo slay the innocent? What is my offence?\nWhere are the evidence that do accuse me?\nWhat lawful quest have given their verdict up\nUnto the frowning judge? or who pronounced\nThe bitter sentence of poor Clarence' death?\nBefore I be convict by course of law,\nTo threaten me with death is most unlawful.\nI charge you, as you hope to have redemption\nBy Christ's dear blood shed for our grievous sins,\nThat you depart and lay no hands on me\nThe deed you undertake is damnable.\n\nFirst Murderer:\nWhat we will do, we do upon command.\n\nSecond Murderer:\nAnd he that hath commanded is the king.\n\nCLARENCE:\nErroneous vassal! the great King of kings\nHath in the tables of his law commanded\nThat thou shalt do no murder: and wilt thou, then,\nSpurn at his edict and fulfil a man's?\nTake heed; for he holds vengeance in his hands,\nTo hurl upon their heads that break his law.\n\nSecond Murderer:\nAnd that same vengeance doth he hurl on thee,\nFor false forswearing and for murder too:\nThou didst receive the holy sacrament,\nTo fight in quarrel of the house of Lancaster.\n\nFirst Murderer:\nAnd, like a traitor to the name of God,\nDidst break that vow; and with thy treacherous blade\nUnrip'dst the bowels of thy sovereign's son.\n\nSecond Murderer:\nWhom thou wert sworn to cherish and defend.\n\nFirst Murderer:\nHow canst thou urge God's dreadful law to us,\nWhen thou hast broke it in so dear degree?\n\nCLARENCE:\nAlas! for whose sake did I that ill deed?\nFor Edward, for my brother, for his sake: Why, sirs,\nHe sends ye not to murder me for this\nFor in this sin he is as deep as I.\nIf God will be revenged for this deed.\nO, know you yet, he doth it publicly,\nTake not the quarrel from his powerful arm;\nHe needs no indirect nor lawless course\nTo cut off those that have offended him.\n\nFirst Murderer:\nWho made thee, then, a bloody minister,\nWhen gallant-springing brave Plantagenet,\nThat princely novice, was struck dead by thee?\n\nCLARENCE:\nMy brother's love, the devil, and my rage.\n\nFirst Murderer:\nThy brother's love, our duty, and thy fault,\nProvoke us hither now to slaughter thee.\n\nCLARENCE:\nOh, if you love my brother, hate not me;\nI am his brother, and I love him well.\nIf you be hired for meed, go back again,\nAnd I will send you to my brother Gloucester,\nWho shall reward you better for my life\nThan Edward will for tidings of my death.\n\nSecond Murderer:\nYou are deceived, your brother Gloucester hates you.\n\nCLARENCE:\nO, no, he loves me, and he holds me dear:\nGo you to him from me.\n\nBoth:\nAy, so we will.\n\nCLARENCE:\nTell him, when that our princely father York\nBless'd his three sons with his victorious arm,\nAnd charged us from his soul to love each other,\nHe little thought of this divided friendship:\nBid Gloucester think of this, and he will weep.\n\nFirst Murderer:\nAy, millstones; as be lesson'd us to weep.\n\nCLARENCE:\nO, do not slander him, for he is kind.\n\nFirst Murderer:\nRight,\nAs snow in harvest. Thou deceivest thyself:\n'Tis he that sent us hither now to slaughter thee.\n\nCLARENCE:\nIt cannot be; for when I parted with him,\nHe hugg'd me in his arms, and swore, with sobs,\nThat he would labour my delivery.\n\nSecond Murderer:\nWhy, so he doth, now he delivers thee\nFrom this world's thraldom to the joys of heaven.\n\nFirst Murderer:\nMake peace with God, for you must die, my lord.\n\nCLARENCE:\nHast thou that holy feeling in thy soul,\nTo counsel me to make my peace with God,\nAnd art thou yet to thy own soul so blind,\nThat thou wilt war with God by murdering me?\nAh, sirs, consider, he that set you on\nTo do this deed will hate you for the deed.\n\nSecond Murderer:\nWhat shall we do?\n\nCLARENCE:\nRelent, and save your souls.\n\nFirst Murderer:\nRelent! 'tis cowardly and womanish.\n\nCLARENCE:\nNot to relent is beastly, savage, devilish.\nWhich of you, if you were a prince's son,\nBeing pent from liberty, as I am now,\nif two such murderers as yourselves came to you,\nWould not entreat for life?\nMy friend, I spy some pity in thy looks:\nO, if thine eye be not a flatterer,\nCome thou on my side, and entreat for me,\nAs you would beg, were you in my distress\nA begging prince what beggar pities not?\n\nSecond Murderer:\nLook behind you, my lord.\n\nFirst Murderer:\nTake that, and that: if all this will not do,\nI'll drown you in the malmsey-butt within.\n\nSecond Murderer:\nA bloody deed, and desperately dispatch'd!\nHow fain, like Pilate, would I wash my hands\nOf this most grievous guilty murder done!\n\nFirst Murderer:\nHow now! what mean'st thou, that thou help'st me not?\nBy heavens, the duke shall know how slack thou art!\n\nSecond Murderer:\nI would he knew that I had saved his brother!\nTake thou the fee, and tell him what I say;\nFor I repent me that the duke is slain.\n\nFirst Murderer:\nSo do not I: go, coward as thou art.\nNow must I hide his body in some hole,\nUntil the duke take order for his burial:\nAnd when I have my meed, I must away;\nFor this will out, and here I must not stay.\n\nKING EDWARD IV:\nWhy, so: now have I done a good day's work:\nYou peers, continue this united league:\nI every day expect an embassage\nFrom my Redeemer to redeem me hence;\nAnd now in peace my soul shall part to heaven,\nSince I have set my friends at peace on earth.\nRivers and Hastings, take each other's hand;\nDissemble not your hatred, swear your love.\n\nRIVERS:\nBy heaven, my heart is purged from grudging hate:\nAnd with my hand I seal my true heart's love.\n\nHASTINGS:\nSo thrive I, as I truly swear the like!\n\nKING EDWARD IV:\nTake heed you dally not before your king;\nLest he that is the supreme King of kings\nConfound your hidden falsehood, and award\nEither of you to be the other's end.\n\nHASTINGS:\nSo prosper I, as I swear perfect love!\n\nRIVERS:\nAnd I, as I love Hastings with my heart!\n\nKING EDWARD IV:\nMadam, yourself are not exempt in this,\nNor your son Dorset, Buckingham, nor you;\nYou have been factious one against the other,\nWife, love Lord Hastings, let him kiss your hand;\nAnd what you do, do it unfeignedly.\n\nQUEEN ELIZABETH:\nHere, Hastings; I will never more remember\nOur former hatred, so thrive I and mine!\n\nKING EDWARD IV:\nDorset, embrace him; Hastings, love lord marquess.\n\nDORSET:\nThis interchange of love, I here protest,\nUpon my part shall be unviolable.\n\nHASTINGS:\nAnd so swear I, my lord\n\nKING EDWARD IV:\nNow, princely Buckingham, seal thou this league\nWith thy embracements to my wife's allies,\nAnd make me happy in your unity.\n\nBUCKINGHAM:\nWhenever Buckingham doth turn his hate\nOn you or yours,\nbut with all duteous love\nDoth cherish you and yours, God punish me\nWith hate in those where I expect most love!\nWhen I have most need to employ a friend,\nAnd most assured that he is a friend\nDeep, hollow, treacherous, and full of guile,\nBe he unto me! this do I beg of God,\nWhen I am cold in zeal to yours.\n\nKING EDWARD IV:\nA pleasing cordial, princely Buckingham,\nis this thy vow unto my sickly heart.\nThere wanteth now our brother Gloucester here,\nTo make the perfect period of this peace.\n\nBUCKINGHAM:\nAnd, in good time, here comes the noble duke.\n\nGLOUCESTER:\nGood morrow to my sovereign king and queen:\nAnd, princely peers, a happy time of day!\n\nKING EDWARD IV:\nHappy, indeed, as we have spent the day.\nBrother, we done deeds of charity;\nMade peace enmity, fair love of hate,\nBetween these swelling wrong-incensed peers.\n\nGLOUCESTER:\nA blessed labour, my most sovereign liege:\nAmongst this princely heap, if any here,\nBy false intelligence, or wrong surmise,\nHold me a foe;\nIf I unwittingly, or in my rage,\nHave aught committed that is hardly borne\nBy any in this presence, I desire\nTo reconcile me to his friendly peace:\n'Tis death to me to be at enmity;\nI hate it, and desire all good men's love.\nFirst, madam, I entreat true peace of you,\nWhich I will purchase with my duteous service;\nOf you, my noble cousin Buckingham,\nIf ever any grudge were lodged between us;\nOf you, Lord Rivers, and, Lord Grey, of you;\nThat without desert have frown'd on me;\nDukes, earls, lords, gentlemen; indeed, of all.\nI do not know that Englishman alive\nWith whom my soul is any jot at odds\nMore than the infant that is born to-night\nI thank my God for my humility.\n\nQUEEN ELIZABETH:\nA holy day shall this be kept hereafter:\nI would to God all strifes were well compounded.\nMy sovereign liege, I do beseech your majesty\nTo take our brother Clarence to your grace.\n\nGLOUCESTER:\nWhy, madam, have I offer'd love for this\nTo be so bouted in this royal presence?\nWho knows not that the noble duke is dead?\nYou do him injury to scorn his corse.\n\nRIVERS:\nWho knows not he is dead! who knows he is?\n\nQUEEN ELIZABETH:\nAll seeing heaven, what a world is this!\n\nBUCKINGHAM:\nLook I so pale, Lord Dorset, as the rest?\n\nDORSET:\nAy, my good lord; and no one in this presence\nBut his red colour hath forsook his cheeks.\n\nKING EDWARD IV:\nIs Clarence dead? the order was reversed.\n\nGLOUCESTER:\nBut he, poor soul, by your first order died,\nAnd that a winged Mercury did bear:\nSome tardy cripple bore the countermand,\nThat came too lag to see him buried.\nGod grant that some, less noble and less loyal,\nNearer in bloody thoughts, but not in blood,\nDeserve not worse than wretched Clarence did,\nAnd yet go current from suspicion!\n\nDORSET:\nA boon, my sovereign, for my service done!\n\nKING EDWARD IV:\nI pray thee, peace: my soul is full of sorrow.\n\nDORSET:\nI will not rise, unless your highness grant.\n\nKING EDWARD IV:\nThen speak at once what is it thou demand'st.\n\nDORSET:\nThe forfeit, sovereign, of my servant's life;\nWho slew to-day a righteous gentleman\nLately attendant on the Duke of Norfolk.\n\nKING EDWARD IV:\nHave a tongue to doom my brother's death,\nAnd shall the same give pardon to a slave?\nMy brother slew no man; his fault was thought,\nAnd yet his punishment was cruel death.\nWho sued to me for him? who, in my rage,\nKneel'd at my feet, and bade me be advised\nWho spake of brotherhood? who spake of love?\nWho told me how the poor soul did forsake\nThe mighty Warwick, and did fight for me?\nWho told me, in the field by Tewksbury\nWhen Oxford had me down, he rescued me,\nAnd said, 'Dear brother, live, and be a king'?\nWho told me, when we both lay in the field\nFrozen almost to death, how he did lap me\nEven in his own garments, and gave himself,\nAll thin and naked, to the numb cold night?\nAll this from my remembrance brutish wrath\nSinfully pluck'd, and not a man of you\nHad so much grace to put it in my mind.\nBut when your carters or your waiting-vassals\nHave done a drunken slaughter, and defaced\nThe precious image of our dear Redeemer,\nYou straight are on your knees for pardon, pardon;\nAnd I unjustly too, must grant it you\nBut for my brother not a man would speak,\nNor I, ungracious, speak unto myself\nFor him, poor soul. The proudest of you all\nHave been beholding to him in his life;\nYet none of you would once plead for his life.\nO God, I fear thy justice will take hold\nOn me, and you, and mine, and yours for this!\nCome, Hastings, help me to my closet.\nOh, poor Clarence!\n\nGLOUCESTER:\nThis is the fruit of rashness! Mark'd you not\nHow that the guilty kindred of the queen\nLook'd pale when they did hear of Clarence' death?\nO, they did urge it still unto the king!\nGod will revenge it. But come, let us in,\nTo comfort Edward with our company.\n\nBUCKINGHAM:\nWe wait upon your grace.\n\nBoy:\nTell me, good grandam, is our father dead?\n\nDUCHESS OF YORK:\nNo, boy.\n\nBoy:\nWhy do you wring your hands, and beat your breast,\nAnd cry 'O Clarence, my unhappy son!'\n\nGirl:\nWhy do you look on us, and shake your head,\nAnd call us wretches, orphans, castaways\nIf that our noble father be alive?\n\nDUCHESS OF YORK:\nMy pretty cousins, you mistake me much;\nI do lament the sickness of the king.\nAs loath to lose him, not your father's death;\nIt were lost sorrow to wail one that's lost.\n\nBoy:\nThen, grandam, you conclude that he is dead.\nThe king my uncle is to blame for this:\nGod will revenge it; whom I will importune\nWith daily prayers all to that effect.\n\nGirl:\nAnd so will I.\n\nDUCHESS OF YORK:\nPeace, children, peace! the king doth love you well:\nIncapable and shallow innocents,\nYou cannot guess who caused your father's death.\n\nBoy:\nGrandam, we can; for my good uncle Gloucester\nTold me, the king, provoked by the queen,\nDevised impeachments to imprison him :\nAnd when my uncle told me so, he wept,\nAnd hugg'd me in his arm, and kindly kiss'd my cheek;\nBade me rely on him as on my father,\nAnd he would love me dearly as his child.\n\nDUCHESS OF YORK:\nOh, that deceit should steal such gentle shapes,\nAnd with a virtuous vizard hide foul guile!\nHe is my son; yea, and therein my shame;\nYet from my dugs he drew not this deceit.\n\nBoy:\nThink you my uncle did dissemble, grandam?\n\nDUCHESS OF YORK:\nAy, boy.\n\nBoy:\nI cannot think it. Hark! what noise is this?\n\nQUEEN ELIZABETH:\nOh, who shall hinder me to wail and weep,\nTo chide my fortune, and torment myself?\nI'll join with black despair against my soul,\nAnd to myself become an enemy.\n\nDUCHESS OF YORK:\nWhat means this scene of rude impatience?\n\nQUEEN ELIZABETH:\nTo make an act of tragic violence:\nEdward, my lord, your son, our king, is dead.\nWhy grow the branches now the root is wither'd?\nWhy wither not the leaves the sap being gone?\nIf you will live, lament; if die, be brief,\nThat our swift-winged souls may catch the king's;\nOr, like obedient subjects, follow him\nTo his new kingdom of perpetual rest.\n\nDUCHESS OF YORK:\nAh, so much interest have I in thy sorrow\nAs I had title in thy noble husband!\nI have bewept a worthy husband's death,\nAnd lived by looking on his images:\nBut now two mirrors of his princely semblance\nAre crack'd in pieces by malignant death,\nAnd I for comfort have but one false glass,\nWhich grieves me when I see my shame in him.\nThou art a widow; yet thou art a mother,\nAnd hast the comfort of thy children left thee:\nBut death hath snatch'd my husband from mine arms,\nAnd pluck'd two crutches from my feeble limbs,\nEdward and Clarence. O, what cause have I,\nThine being but a moiety of my grief,\nTo overgo thy plaints and drown thy cries!\n\nBoy:\nGood aunt, you wept not for our father's death;\nHow can we aid you with our kindred tears?\n\nGirl:\nOur fatherless distress was left unmoan'd;\nYour widow-dolour likewise be unwept!\n\nQUEEN ELIZABETH:\nGive me no help in lamentation;\nI am not barren to bring forth complaints\nAll springs reduce their currents to mine eyes,\nThat I, being govern'd by the watery moon,\nMay send forth plenteous tears to drown the world!\nOh for my husband, for my dear lord Edward!\n\nChildren:\nOh for our father, for our dear lord Clarence!\n\nDUCHESS OF YORK:\nAlas for both, both mine, Edward and Clarence!\n\nQUEEN ELIZABETH:\nWhat stay had I but Edward? and he's gone.\n\nChildren:\nWhat stay had we but Clarence? and he's gone.\n\nDUCHESS OF YORK:\nWhat stays had I but they? and they are gone.\n\nQUEEN ELIZABETH:\nWas never widow had so dear a loss!\n\nChildren:\nWere never orphans had so dear a loss!\n\nDUCHESS OF YORK:\nWas never mother had so dear a loss!\nAlas, I am the mother of these moans!\nTheir woes are parcell'd, mine are general.\nShe for an Edward weeps, and so do I;\nI for a Clarence weep, so doth not she:\nThese babes for Clarence weep and so do I;\nI for an Edward weep, so do not they:\nAlas, you three, on me, threefold distress'd,\nPour all your tears! I am your sorrow's nurse,\nAnd I will pamper it with lamentations.\n\nDORSET:\nComfort, dear mother: God is much displeased\nThat you take with unthankfulness, his doing:\nIn common worldly things, 'tis call'd ungrateful,\nWith dull unwilligness to repay a debt\nWhich with a bounteous hand was kindly lent;\nMuch more to be thus opposite with heaven,\nFor it requires the royal debt it lent you.\n\nRIVERS:\nMadam, bethink you, like a careful mother,\nOf the young prince your son: send straight for him\nLet him be crown'd; in him your comfort lives:\nDrown desperate sorrow in dead Edward's grave,\nAnd plant your joys in living Edward's throne.\n\nGLOUCESTER:\nMadam, have comfort: all of us have cause\nTo wail the dimming of our shining star;\nBut none can cure their harms by wailing them.\nMadam, my mother, I do cry you mercy;\nI did not see your grace: humbly on my knee\nI crave your blessing.\n\nDUCHESS OF YORK:\nGod bless thee; and put meekness in thy mind,\nLove, charity, obedience, and true duty!\n\nGLOUCESTER:\n\nBUCKINGHAM:\nYou cloudy princes and heart-sorrowing peers,\nThat bear this mutual heavy load of moan,\nNow cheer each other in each other's love\nThough we have spent our harvest of this king,\nWe are to reap the harvest of his son.\nThe broken rancour of your high-swoln hearts,\nBut lately splinter'd, knit, and join'd together,\nMust gently be preserved, cherish'd, and kept:\nMe seemeth good, that, with some little train,\nForthwith from Ludlow the young prince be fetch'd\nHither to London, to be crown'd our king.\n\nRIVERS:\nWhy with some little train, my Lord of Buckingham?\n\nBUCKINGHAM:\nMarry, my lord, lest, by a multitude,\nThe new-heal'd wound of malice should break out,\nWhich would be so much the more dangerous\nBy how much the estate is green and yet ungovern'd:\nWhere every horse bears his commanding rein,\nAnd may direct his course as please himself,\nAs well the fear of harm, as harm apparent,\nIn my opinion, ought to be prevented.\n\nGLOUCESTER:\nI hope the king made peace with all of us\nAnd the compact is firm and true in me.\n\nRIVERS:\nAnd so in me; and so, I think, in all:\nYet, since it is but green, it should be put\nTo no apparent likelihood of breach,\nWhich haply by much company might be urged:\nTherefore I say with noble Buckingham,\nThat it is meet so few should fetch the prince.\n\nHASTINGS:\nAnd so say I.\n\nGLOUCESTER:\nThen be it so; and go we to determine\nWho they shall be that straight shall post to Ludlow.\nMadam, and you, my mother, will you go\nTo give your censures in this weighty business?\n\nQUEEN ELIZABETH:\nWith all our harts.\n\nBUCKINGHAM:\nMy lord, whoever journeys to the Prince,\nFor God's sake, let not us two be behind;\nFor, by the way, I'll sort occasion,\nAs index to the story we late talk'd of,\nTo part the queen's proud kindred from the king.\n\nGLOUCESTER:\nMy other self, my counsel's consistory,\nMy oracle, my prophet! My dear cousin,\nI, like a child, will go by thy direction.\nTowards Ludlow then, for we'll not stay behind.\n\nFirst Citizen:\nNeighbour, well met: whither away so fast?\n\nSecond Citizen:\nI promise you, I scarcely know myself:\nHear you the news abroad?\n\nFirst Citizen:\nAy, that the king is dead.\n\nSecond Citizen:\nBad news, by'r lady; seldom comes the better:\nI fear, I fear 'twill prove a troublous world.\n\nThird Citizen:\nNeighbours, God speed!\n\nFirst Citizen:\nGive you good morrow, sir.\n\nThird Citizen:\nDoth this news hold of good King Edward's death?\n\nSecond Citizen:\nAy, sir, it is too true; God help the while!\n\nThird Citizen:\nThen, masters, look to see a troublous world.\n\nFirst Citizen:\nNo, no; by God's good grace his son shall reign.\n\nThird Citizen:\nWoe to the land that's govern'd by a child!\n\nSecond Citizen:\nIn him there is a hope of government,\nThat in his nonage council under him,\nAnd in his full and ripen'd years himself,\nNo doubt, shall then and till then govern well.\n\nFirst Citizen:\nSo stood the state when Henry the Sixth\nWas crown'd in Paris but at nine months old.\n\nThird Citizen:\nStood the state so? No, no, good friends, God wot;\nFor then this land was famously enrich'd\nWith politic grave counsel; then the king\nHad virtuous uncles to protect his grace.\n\nFirst Citizen:\nWhy, so hath this, both by the father and mother.\n\nThird Citizen:\nBetter it were they all came by the father,\nOr by the father there were none at all;\nFor emulation now, who shall be nearest,\nWill touch us all too near, if God prevent not.\nO, full of danger is the Duke of Gloucester!\nAnd the queen's sons and brothers haught and proud:\nAnd were they to be ruled, and not to rule,\nThis sickly land might solace as before.\n\nFirst Citizen:\nCome, come, we fear the worst; all shall be well.\n\nThird Citizen:\nWhen clouds appear, wise men put on their cloaks;\nWhen great leaves fall, the winter is at hand;\nWhen the sun sets, who doth not look for night?\nUntimely storms make men expect a dearth.\nAll may be well; but, if God sort it so,\n'Tis more than we deserve, or I expect.\n\nSecond Citizen:\nTruly, the souls of men are full of dread:\nYe cannot reason almost with a man\nThat looks not heavily and full of fear.\n\nThird Citizen:\nBefore the times of change, still is it so:\nBy a divine instinct men's minds mistrust\nEnsuing dangers; as by proof, we see\nThe waters swell before a boisterous storm.\nBut leave it all to God. whither away?\n\nSecond Citizen:\nMarry, we were sent for to the justices.\n\nThird Citizen:\nAnd so was I: I'll bear you company.\n\nARCHBISHOP OF YORK:\nLast night, I hear, they lay at Northampton;\nAt Stony-Stratford will they be to-night:\nTo-morrow, or next day, they will be here.\n\nDUCHESS OF YORK:\nI long with all my heart to see the prince:\nI hope he is much grown since last I saw him.\n\nQUEEN ELIZABETH:\nBut I hear, no; they say my son of York\nHath almost overta'en him in his growth.\n\nYORK:\nAy, mother; but I would not have it so.\n\nDUCHESS OF YORK:\nWhy, my young cousin, it is good to grow.\n\nYORK:\nGrandam, one night, as we did sit at supper,\nMy uncle Rivers talk'd how I did grow\nMore than my brother: 'Ay,' quoth my uncle\nGloucester,\n'Small herbs have grace, great weeds do grow apace:'\nAnd since, methinks, I would not grow so fast,\nBecause sweet flowers are slow and weeds make haste.\n\nDUCHESS OF YORK:\nGood faith, good faith, the saying did not hold\nIn him that did object the same to thee;\nHe was the wretched'st thing when he was young,\nSo long a-growing and so leisurely,\nThat, if this rule were true, he should be gracious.\n\nARCHBISHOP OF YORK:\nWhy, madam, so, no doubt, he is.\n\nDUCHESS OF YORK:\nI hope he is; but yet let mothers doubt.\n\nYORK:\nNow, by my troth, if I had been remember'd,\nI could have given my uncle's grace a flout,\nTo touch his growth nearer than he touch'd mine.\n\nDUCHESS OF YORK:\nHow, my pretty York? I pray thee, let me hear it.\n\nYORK:\nMarry, they say my uncle grew so fast\nThat he could gnaw a crust at two hours old\n'Twas full two years ere I could get a tooth.\nGrandam, this would have been a biting jest.\n\nDUCHESS OF YORK:\nI pray thee, pretty York, who told thee this?\n\nYORK:\nGrandam, his nurse.\n\nDUCHESS OF YORK:\nHis nurse! why, she was dead ere thou wert born.\n\nYORK:\nIf 'twere not she, I cannot tell who told me.\n\nQUEEN ELIZABETH:\nA parlous boy: go to, you are too shrewd.\n\nARCHBISHOP OF YORK:\nGood madam, be not angry with the child.\n\nQUEEN ELIZABETH:\nPitchers have ears.\n\nARCHBISHOP OF YORK:\nHere comes a messenger. What news?\n\nMessenger:\nSuch news, my lord, as grieves me to unfold.\n\nQUEEN ELIZABETH:\nHow fares the prince?\n\nMessenger:\nWell, madam, and in health.\n\nDUCHESS OF YORK:\nWhat is thy news then?\n\nMessenger:\nLord Rivers and Lord Grey are sent to Pomfret,\nWith them Sir Thomas Vaughan, prisoners.\n\nDUCHESS OF YORK:\nWho hath committed them?\n\nMessenger:\nThe mighty dukes\nGloucester and Buckingham.\n\nQUEEN ELIZABETH:\nFor what offence?\n\nMessenger:\nThe sum of all I can, I have disclosed;\nWhy or for what these nobles were committed\nIs all unknown to me, my gracious lady.\n\nQUEEN ELIZABETH:\nAy me, I see the downfall of our house!\nThe tiger now hath seized the gentle hind;\nInsulting tyranny begins to jet\nUpon the innocent and aweless throne:\nWelcome, destruction, death, and massacre!\nI see, as in a map, the end of all.\n\nDUCHESS OF YORK:\nAccursed and unquiet wrangling days,\nHow many of you have mine eyes beheld!\nMy husband lost his life to get the crown;\nAnd often up and down my sons were toss'd,\nFor me to joy and weep their gain and loss:\nAnd being seated, and domestic broils\nClean over-blown, themselves, the conquerors.\nMake war upon themselves; blood against blood,\nSelf against self: O, preposterous\nAnd frantic outrage, end thy damned spleen;\nOr let me die, to look on death no more!\n\nQUEEN ELIZABETH:\nCome, come, my boy; we will to sanctuary.\nMadam, farewell.\n\nDUCHESS OF YORK:\nI'll go along with you.\n\nQUEEN ELIZABETH:\nYou have no cause.\n\nARCHBISHOP OF YORK:\nMy gracious lady, go;\nAnd thither bear your treasure and your goods.\nFor my part, I'll resign unto your grace\nThe seal I keep: and so betide to me\nAs well I tender you and all of yours!\nCome, I'll conduct you to the sanctuary.\n\nBUCKINGHAM:\nWelcome, sweet prince, to London, to your chamber.\n\nGLOUCESTER:\nWelcome, dear cousin, my thoughts' sovereign\nThe weary way hath made you melancholy.\n\nPRINCE EDWARD:\nNo, uncle; but our crosses on the way\nHave made it tedious, wearisome, and heavy\nI want more uncles here to welcome me.\n\nGLOUCESTER:\nSweet prince, the untainted virtue of your years\nHath not yet dived into the world's deceit\nNor more can you distinguish of a man\nThan of his outward show; which, God he knows,\nSeldom or never jumpeth with the heart.\nThose uncles which you want were dangerous;\nYour grace attended to their sugar'd words,\nBut look'd not on the poison of their hearts :\nGod keep you from them, and from such false friends!\n\nPRINCE EDWARD:\nGod keep me from false friends! but they were none.\n\nGLOUCESTER:\nMy lord, the mayor of London comes to greet you.\n\nLord Mayor:\nGod bless your grace with health and happy days!\n\nPRINCE EDWARD:\nI thank you, good my lord; and thank you all.\nI thought my mother, and my brother York,\nWould long ere this have met us on the way\nFie, what a slug is Hastings, that he comes not\nTo tell us whether they will come or no!\n\nBUCKINGHAM:\nAnd, in good time, here comes the sweating lord.\n\nPRINCE EDWARD:\nWelcome, my lord: what, will our mother come?\n\nHASTINGS:\nOn what occasion, God he knows, not I,\nThe queen your mother, and your brother York,\nHave taken sanctuary: the tender prince\nWould fain have come with me to meet your grace,\nBut by his mother was perforce withheld.\n\nBUCKINGHAM:\nFie, what an indirect and peevish course\nIs this of hers! Lord cardinal, will your grace\nPersuade the queen to send the Duke of York\nUnto his princely brother presently?\nIf she deny, Lord Hastings, go with him,\nAnd from her jealous arms pluck him perforce.\n\nCARDINAL:\nMy Lord of Buckingham, if my weak oratory\nCan from his mother win the Duke of York,\nAnon expect him here; but if she be obdurate\nTo mild entreaties, God in heaven forbid\nWe should infringe the holy privilege\nOf blessed sanctuary! not for all this land\nWould I be guilty of so deep a sin.\n\nBUCKINGHAM:\nYou are too senseless--obstinate, my lord,\nToo ceremonious and traditional\nWeigh it but with the grossness of this age,\nYou break not sanctuary in seizing him.\nThe benefit thereof is always granted\nTo those whose dealings have deserved the place,\nAnd those who have the wit to claim the place:\nThis prince hath neither claim'd it nor deserved it;\nAnd therefore, in mine opinion, cannot have it:\nThen, taking him from thence that is not there,\nYou break no privilege nor charter there.\nOft have I heard of sanctuary men;\nBut sanctuary children ne'er till now.\n\nCARDINAL:\nMy lord, you shall o'er-rule my mind for once.\nCome on, Lord Hastings, will you go with me?\n\nHASTINGS:\nI go, my lord.\n\nPRINCE EDWARD:\nGood lords, make all the speedy haste you may.\nSay, uncle Gloucester, if our brother come,\nWhere shall we sojourn till our coronation?\n\nGLOUCESTER:\nWhere it seems best unto your royal self.\nIf I may counsel you, some day or two\nYour highness shall repose you at the Tower:\nThen where you please, and shall be thought most fit\nFor your best health and recreation.\n\nPRINCE EDWARD:\nI do not like the Tower, of any place.\nDid Julius Caesar build that place, my lord?\n\nBUCKINGHAM:\nHe did, my gracious lord, begin that place;\nWhich, since, succeeding ages have re-edified.\n\nPRINCE EDWARD:\nIs it upon record, or else reported\nSuccessively from age to age, he built it?\n\nBUCKINGHAM:\nUpon record, my gracious lord.\n\nPRINCE EDWARD:\nBut say, my lord, it were not register'd,\nMethinks the truth should live from age to age,\nAs 'twere retail'd to all posterity,\nEven to the general all-ending day.\n\nGLOUCESTER:\n\nPRINCE EDWARD:\nWhat say you, uncle?\n\nGLOUCESTER:\nI say, without characters, fame lives long.\nThus, like the formal vice, Iniquity,\nI moralize two meanings in one word.\n\nPRINCE EDWARD:\nThat Julius Caesar was a famous man;\nWith what his valour did enrich his wit,\nHis wit set down to make his valour live\nDeath makes no conquest of this conqueror;\nFor now he lives in fame, though not in life.\nI'll tell you what, my cousin Buckingham,--\n\nBUCKINGHAM:\nWhat, my gracious lord?\n\nPRINCE EDWARD:\nAn if I live until I be a man,\nI'll win our ancient right in France again,\nOr die a soldier, as I lived a king.\n\nGLOUCESTER:\n\nBUCKINGHAM:\nNow, in good time, here comes the Duke of York.\n\nPRINCE EDWARD:\nRichard of York! how fares our loving brother?\n\nYORK:\nWell, my dread lord; so must I call you now.\n\nPRINCE EDWARD:\nAy, brother, to our grief, as it is yours:\nToo late he died that might have kept that title,\nWhich by his death hath lost much majesty.\n\nGLOUCESTER:\nHow fares our cousin, noble Lord of York?\n\nYORK:\nI thank you, gentle uncle. O, my lord,\nYou said that idle weeds are fast in growth\nThe prince my brother hath outgrown me far.\n\nGLOUCESTER:\nHe hath, my lord.\n\nYORK:\nAnd therefore is he idle?\n\nGLOUCESTER:\nO, my fair cousin, I must not say so.\n\nYORK:\nThen is he more beholding to you than I.\n\nGLOUCESTER:\nHe may command me as my sovereign;\nBut you have power in me as in a kinsman.\n\nYORK:\nI pray you, uncle, give me this dagger.\n\nGLOUCESTER:\nMy dagger, little cousin? with all my heart.\n\nPRINCE EDWARD:\nA beggar, brother?\n\nYORK:\nOf my kind uncle, that I know will give;\nAnd being but a toy, which is no grief to give.\n\nGLOUCESTER:\nA greater gift than that I'll give my cousin.\n\nYORK:\nA greater gift! O, that's the sword to it.\n\nGLOUCESTER:\nA gentle cousin, were it light enough.\n\nYORK:\nO, then, I see, you will part but with light gifts;\nIn weightier things you'll say a beggar nay.\n\nGLOUCESTER:\nIt is too heavy for your grace to wear.\n\nYORK:\nI weigh it lightly, were it heavier.\n\nGLOUCESTER:\nWhat, would you have my weapon, little lord?\n\nYORK:\nI would, that I might thank you as you call me.\n\nGLOUCESTER:\nHow?\n\nYORK:\nLittle.\n\nPRINCE EDWARD:\nMy Lord of York will still be cross in talk:\nUncle, your grace knows how to bear with him.\n\nYORK:\nYou mean, to bear me, not to bear with me:\nUncle, my brother mocks both you and me;\nBecause that I am little, like an ape,\nHe thinks that you should bear me on your shoulders.\n\nBUCKINGHAM:\nWith what a sharp-provided wit he reasons!\nTo mitigate the scorn he gives his uncle,\nHe prettily and aptly taunts himself:\nSo cunning and so young is wonderful.\n\nGLOUCESTER:\nMy lord, will't please you pass along?\nMyself and my good cousin Buckingham\nWill to your mother, to entreat of her\nTo meet you at the Tower and welcome you.\n\nYORK:\nWhat, will you go unto the Tower, my lord?\n\nPRINCE EDWARD:\nMy lord protector needs will have it so.\n\nYORK:\nI shall not sleep in quiet at the Tower.\n\nGLOUCESTER:\nWhy, what should you fear?\n\nYORK:\nMarry, my uncle Clarence' angry ghost:\nMy grandam told me he was murdered there.\n\nPRINCE EDWARD:\nI fear no uncles dead.\n\nGLOUCESTER:\nNor none that live, I hope.\n\nPRINCE EDWARD:\nAn if they live, I hope I need not fear.\nBut come, my lord; and with a heavy heart,\nThinking on them, go I unto the Tower.\n\nBUCKINGHAM:\nThink you, my lord, this little prating York\nWas not incensed by his subtle mother\nTo taunt and scorn you thus opprobriously?\n\nGLOUCESTER:\nNo doubt, no doubt; O, 'tis a parlous boy;\nBold, quick, ingenious, forward, capable\nHe is all the mother's, from the top to toe.\n\nBUCKINGHAM:\nWell, let them rest. Come hither, Catesby.\nThou art sworn as deeply to effect what we intend\nAs closely to conceal what we impart:\nThou know'st our reasons urged upon the way;\nWhat think'st thou? is it not an easy matter\nTo make William Lord Hastings of our mind,\nFor the instalment of this noble duke\nIn the seat royal of this famous isle?\n\nCATESBY:\nHe for his father's sake so loves the prince,\nThat he will not be won to aught against him.\n\nBUCKINGHAM:\nWhat think'st thou, then, of Stanley? what will he?\n\nCATESBY:\nHe will do all in all as Hastings doth.\n\nBUCKINGHAM:\nWell, then, no more but this: go, gentle Catesby,\nAnd, as it were far off sound thou Lord Hastings,\nHow doth he stand affected to our purpose;\nAnd summon him to-morrow to the Tower,\nTo sit about the coronation.\nIf thou dost find him tractable to us,\nEncourage him, and show him all our reasons:\nIf he be leaden, icy-cold, unwilling,\nBe thou so too; and so break off your talk,\nAnd give us notice of his inclination:\nFor we to-morrow hold divided councils,\nWherein thyself shalt highly be employ'd.\n\nGLOUCESTER:\nCommend me to Lord William: tell him, Catesby,\nHis ancient knot of dangerous adversaries\nTo-morrow are let blood at Pomfret-castle;\nAnd bid my friend, for joy of this good news,\nGive mistress Shore one gentle kiss the more.\n\nBUCKINGHAM:\nGood Catesby, go, effect this business soundly.\n\nCATESBY:\nMy good lords both, with all the heed I may.\n\nGLOUCESTER:\nShall we hear from you, Catesby, ere we sleep?\n\nCATESBY:\nYou shall, my lord.\n\nGLOUCESTER:\nAt Crosby Place, there shall you find us both.\n\nBUCKINGHAM:\nNow, my lord, what shall we do, if we perceive\nLord Hastings will not yield to our complots?\n\nGLOUCESTER:\nChop off his head, man; somewhat we will do:\nAnd, look, when I am king, claim thou of me\nThe earldom of Hereford, and the moveables\nWhereof the king my brother stood possess'd.\n\nBUCKINGHAM:\nI'll claim that promise at your grace's hands.\n\nGLOUCESTER:\nAnd look to have it yielded with all willingness.\nCome, let us sup betimes, that afterwards\nWe may digest our complots in some form.\n\nMessenger:\nWhat, ho! my lord!\n\nHASTINGS:\n\nMessenger:\nA messenger from the Lord Stanley.\n\nHASTINGS:\nWhat is't o'clock?\n\nMessenger:\nUpon the stroke of four.\n\nHASTINGS:\nCannot thy master sleep these tedious nights?\n\nMessenger:\nSo it should seem by that I have to say.\nFirst, he commends him to your noble lordship.\n\nHASTINGS:\nAnd then?\n\nMessenger:\nAnd then he sends you word\nHe dreamt to-night the boar had razed his helm:\nBesides, he says there are two councils held;\nAnd that may be determined at the one\nwhich may make you and him to rue at the other.\nTherefore he sends to know your lordship's pleasure,\nIf presently you will take horse with him,\nAnd with all speed post with him toward the north,\nTo shun the danger that his soul divines.\n\nHASTINGS:\nGo, fellow, go, return unto thy lord;\nBid him not fear the separated councils\nHis honour and myself are at the one,\nAnd at the other is my servant Catesby\nWhere nothing can proceed that toucheth us\nWhereof I shall not have intelligence.\nTell him his fears are shallow, wanting instance:\nAnd for his dreams, I wonder he is so fond\nTo trust the mockery of unquiet slumbers\nTo fly the boar before the boar pursues,\nWere to incense the boar to follow us\nAnd make pursuit where he did mean no chase.\nGo, bid thy master rise and come to me\nAnd we will both together to the Tower,\nWhere, he shall see, the boar will use us kindly.\n\nMessenger:\nMy gracious lord, I'll tell him what you say.\n\nCATESBY:\nMany good morrows to my noble lord!\n\nHASTINGS:\nGood morrow, Catesby; you are early stirring\nWhat news, what news, in this our tottering state?\n\nCATESBY:\nIt is a reeling world, indeed, my lord;\nAnd I believe twill never stand upright\nTim Richard wear the garland of the realm.\n\nHASTINGS:\nHow! wear the garland! dost thou mean the crown?\n\nCATESBY:\nAy, my good lord.\n\nHASTINGS:\nI'll have this crown of mine cut from my shoulders\nEre I will see the crown so foul misplaced.\nBut canst thou guess that he doth aim at it?\n\nCATESBY:\nAy, on my life; and hopes to find forward\nUpon his party for the gain thereof:\nAnd thereupon he sends you this good news,\nThat this same very day your enemies,\nThe kindred of the queen, must die at Pomfret.\n\nHASTINGS:\nIndeed, I am no mourner for that news,\nBecause they have been still mine enemies:\nBut, that I'll give my voice on Richard's side,\nTo bar my master's heirs in true descent,\nGod knows I will not do it, to the death.\n\nCATESBY:\nGod keep your lordship in that gracious mind!\n\nHASTINGS:\nBut I shall laugh at this a twelve-month hence,\nThat they who brought me in my master's hate\nI live to look upon their tragedy.\nI tell thee, Catesby--\n\nCATESBY:\nWhat, my lord?\n\nHASTINGS:\nEre a fortnight make me elder,\nI'll send some packing that yet think not on it.\n\nCATESBY:\n'Tis a vile thing to die, my gracious lord,\nWhen men are unprepared and look not for it.\n\nHASTINGS:\nO monstrous, monstrous! and so falls it out\nWith Rivers, Vaughan, Grey: and so 'twill do\nWith some men else, who think themselves as safe\nAs thou and I; who, as thou know'st, are dear\nTo princely Richard and to Buckingham.\n\nCATESBY:\nThe princes both make high account of you;\nFor they account his head upon the bridge.\n\nHASTINGS:\nI know they do; and I have well deserved it.\nCome on, come on; where is your boar-spear, man?\nFear you the boar, and go so unprovided?\n\nSTANLEY:\nMy lord, good morrow; good morrow, Catesby:\nYou may jest on, but, by the holy rood,\nI do not like these several councils, I.\n\nHASTINGS:\nMy lord,\nI hold my life as dear as you do yours;\nAnd never in my life, I do protest,\nWas it more precious to me than 'tis now:\nThink you, but that I know our state secure,\nI would be so triumphant as I am?\n\nSTANLEY:\nThe lords at Pomfret, when they rode from London,\nWere jocund, and supposed their state was sure,\nAnd they indeed had no cause to mistrust;\nBut yet, you see how soon the day o'ercast.\nThis sudden stag of rancour I misdoubt:\nPray God, I say, I prove a needless coward!\nWhat, shall we toward the Tower? the day is spent.\n\nHASTINGS:\nCome, come, have with you. Wot you what, my lord?\nTo-day the lords you talk of are beheaded.\n\nLORD STANLEY:\nThey, for their truth, might better wear their heads\nThan some that have accused them wear their hats.\nBut come, my lord, let us away.\n\nHASTINGS:\nGo on before; I'll talk with this good fellow.\nHow now, sirrah! how goes the world with thee?\n\nPursuivant:\nThe better that your lordship please to ask.\n\nHASTINGS:\nI tell thee, man, 'tis better with me now\nThan when I met thee last where now we meet:\nThen was I going prisoner to the Tower,\nBy the suggestion of the queen's allies;\nBut now, I tell thee--keep it to thyself--\nThis day those enemies are put to death,\nAnd I in better state than e'er I was.\n\nPursuivant:\nGod hold it, to your honour's good content!\n\nHASTINGS:\nGramercy, fellow: there, drink that for me.\n\nPursuivant:\nGod save your lordship!\n\nPriest:\nWell met, my lord; I am glad to see your honour.\n\nHASTINGS:\nI thank thee, good Sir John, with all my heart.\nI am in your debt for your last exercise;\nCome the next Sabbath, and I will content you.\n\nBUCKINGHAM:\nWhat, talking with a priest, lord chamberlain?\nYour friends at Pomfret, they do need the priest;\nYour honour hath no shriving work in hand.\n\nHASTINGS:\nGood faith, and when I met this holy man,\nThose men you talk of came into my mind.\nWhat, go you toward the Tower?\n\nBUCKINGHAM:\nI do, my lord; but long I shall not stay\nI shall return before your lordship thence.\n\nHASTINGS:\n'Tis like enough, for I stay dinner there.\n\nBUCKINGHAM:\n\nHASTINGS:\nI'll wait upon your lordship.\n\nRATCLIFF:\nCome, bring forth the prisoners.\n\nRIVERS:\nSir Richard Ratcliff, let me tell thee this:\nTo-day shalt thou behold a subject die\nFor truth, for duty, and for loyalty.\n\nGREY:\nGod keep the prince from all the pack of you!\nA knot you are of damned blood-suckers!\n\nVAUGHAN:\nYou live that shall cry woe for this after.\n\nRATCLIFF:\nDispatch; the limit of your lives is out.\n\nRIVERS:\nO Pomfret, Pomfret! O thou bloody prison,\nFatal and ominous to noble peers!\nWithin the guilty closure of thy walls\nRichard the second here was hack'd to death;\nAnd, for more slander to thy dismal seat,\nWe give thee up our guiltless blood to drink.\n\nGREY:\nNow Margaret's curse is fall'n upon our heads,\nFor standing by when Richard stabb'd her son.\n\nRIVERS:\nThen cursed she Hastings, then cursed she Buckingham,\nThen cursed she Richard. O, remember, God\nTo hear her prayers for them, as now for us\nAnd for my sister and her princely sons,\nBe satisfied, dear God, with our true blood,\nWhich, as thou know'st, unjustly must be spilt.\n\nRATCLIFF:\nMake haste; the hour of death is expiate.\n\nRIVERS:\nCome, Grey, come, Vaughan, let us all embrace:\nAnd take our leave, until we meet in heaven.\n\nHASTINGS:\nMy lords, at once: the cause why we are met\nIs, to determine of the coronation.\nIn God's name, speak: when is the royal day?\n\nBUCKINGHAM:\nAre all things fitting for that royal time?\n\nDERBY:\nIt is, and wants but nomination.\n\nBISHOP OF ELY:\nTo-morrow, then, I judge a happy day.\n\nBUCKINGHAM:\nWho knows the lord protector's mind herein?\nWho is most inward with the royal duke?\n\nBISHOP OF ELY:\nYour grace, we think, should soonest know his mind.\n\nBUCKINGHAM:\nWho, I, my lord I we know each other's faces,\nBut for our hearts, he knows no more of mine,\nThan I of yours;\nNor I no more of his, than you of mine.\nLord Hastings, you and he are near in love.\n\nHASTINGS:\nI thank his grace, I know he loves me well;\nBut, for his purpose in the coronation.\nI have not sounded him, nor he deliver'd\nHis gracious pleasure any way therein:\nBut you, my noble lords, may name the time;\nAnd in the duke's behalf I'll give my voice,\nWhich, I presume, he'll take in gentle part.\n\nBISHOP OF ELY:\nNow in good time, here comes the duke himself.\n\nGLOUCESTER:\nMy noble lords and cousins all, good morrow.\nI have been long a sleeper; but, I hope,\nMy absence doth neglect no great designs,\nWhich by my presence might have been concluded.\n\nBUCKINGHAM:\nHad not you come upon your cue, my lord\nWilliam Lord Hastings had pronounced your part,--\nI mean, your voice,--for crowning of the king.\n\nGLOUCESTER:\nThan my Lord Hastings no man might be bolder;\nHis lordship knows me well, and loves me well.\n\nHASTINGS:\nI thank your grace.\n\nGLOUCESTER:\nMy lord of Ely!\n\nBISHOP OF ELY:\nMy lord?\n\nGLOUCESTER:\nWhen I was last in Holborn,\nI saw good strawberries in your garden there\nI do beseech you send for some of them.\n\nBISHOP OF ELY:\nMarry, and will, my lord, with all my heart.\n\nGLOUCESTER:\nCousin of Buckingham, a word with you.\nCatesby hath sounded Hastings in our business,\nAnd finds the testy gentleman so hot,\nAs he will lose his head ere give consent\nHis master's son, as worshipful as he terms it,\nShall lose the royalty of England's throne.\n\nBUCKINGHAM:\nWithdraw you hence, my lord, I'll follow you.\n\nDERBY:\nWe have not yet set down this day of triumph.\nTo-morrow, in mine opinion, is too sudden;\nFor I myself am not so well provided\nAs else I would be, were the day prolong'd.\n\nBISHOP OF ELY:\nWhere is my lord protector? I have sent for these\nstrawberries.\n\nHASTINGS:\nHis grace looks cheerfully and smooth to-day;\nThere's some conceit or other likes him well,\nWhen he doth bid good morrow with such a spirit.\nI think there's never a man in Christendom\nThat can less hide his love or hate than he;\nFor by his face straight shall you know his heart.\n\nDERBY:\nWhat of his heart perceive you in his face\nBy any likelihood he show'd to-day?\n\nHASTINGS:\nMarry, that with no man here he is offended;\nFor, were he, he had shown it in his looks.\n\nDERBY:\nI pray God he be not, I say.\n\nGLOUCESTER:\nI pray you all, tell me what they deserve\nThat do conspire my death with devilish plots\nOf damned witchcraft, and that have prevail'd\nUpon my body with their hellish charms?\n\nHASTINGS:\nThe tender love I bear your grace, my lord,\nMakes me most forward in this noble presence\nTo doom the offenders, whatsoever they be\nI say, my lord, they have deserved death.\n\nGLOUCESTER:\nThen be your eyes the witness of this ill:\nSee how I am bewitch'd; behold mine arm\nIs, like a blasted sapling, wither'd up:\nAnd this is Edward's wife, that monstrous witch,\nConsorted with that harlot strumpet Shore,\nThat by their witchcraft thus have marked me.\n\nHASTINGS:\nIf they have done this thing, my gracious lord--\n\nGLOUCESTER:\nIf I thou protector of this damned strumpet--\nTellest thou me of 'ifs'?  Thou art a traitor:\nOff with his head! Now, by Saint Paul I swear,\nI will not dine until I see the same.\nLovel and Ratcliff, look that it be done:\nThe rest, that love me, rise and follow me.\n\nHASTINGS:\nWoe, woe for England! not a whit for me;\nFor I, too fond, might have prevented this.\nStanley did dream the boar did raze his helm;\nBut I disdain'd it, and did scorn to fly:\nThree times to-day my foot-cloth horse did stumble,\nAnd startled, when he look'd upon the Tower,\nAs loath to bear me to the slaughter-house.\nO, now I want the priest that spake to me:\nI now repent I told the pursuivant\nAs 'twere triumphing at mine enemies,\nHow they at Pomfret bloodily were butcher'd,\nAnd I myself secure in grace and favour.\nO Margaret, Margaret, now thy heavy curse\nIs lighted on poor Hastings' wretched head!\n\nRATCLIFF:\nDispatch, my lord; the duke would be at dinner:\nMake a short shrift; he longs to see your head.\n\nHASTINGS:\nO momentary grace of mortal men,\nWhich we more hunt for than the grace of God!\nWho builds his hopes in air of your good looks,\nLives like a drunken sailor on a mast,\nReady, with every nod, to tumble down\nInto the fatal bowels of the deep.\n\nLOVEL:\nCome, come, dispatch; 'tis bootless to exclaim.\n\nHASTINGS:\nO bloody Richard! miserable England!\nI prophesy the fearful'st time to thee\nThat ever wretched age hath look'd upon.\nCome, lead me to the block; bear him my head.\nThey smile at me that shortly shall be dead.\n\nGLOUCESTER:\nCome, cousin, canst thou quake, and change thy colour,\nMurder thy breath in the middle of a word,\nAnd then begin again, and stop again,\nAs if thou wert distraught and mad with terror?\n\nBUCKINGHAM:\nTut, I can counterfeit the deep tragedian;\nSpeak and look back, and pry on every side,\nTremble and start at wagging of a straw,\nIntending deep suspicion: ghastly looks\nAre at my service, like enforced smiles;\nAnd both are ready in their offices,\nAt any time, to grace my stratagems.\nBut what, is Catesby gone?\n\nGLOUCESTER:\nHe is; and, see, he brings the mayor along.\n\nBUCKINGHAM:\nLord mayor,--\n\nGLOUCESTER:\nLook to the drawbridge there!\n\nBUCKINGHAM:\nHark! a drum.\n\nGLOUCESTER:\nCatesby, o'erlook the walls.\n\nBUCKINGHAM:\nLord mayor, the reason we have sent--\n\nGLOUCESTER:\nLook back, defend thee, here are enemies.\n\nBUCKINGHAM:\nGod and our innocency defend and guard us!\n\nGLOUCESTER:\nBe patient, they are friends, Ratcliff and Lovel.\n\nLOVEL:\nHere is the head of that ignoble traitor,\nThe dangerous and unsuspected Hastings.\n\nGLOUCESTER:\nSo dear I loved the man, that I must weep.\nI took him for the plainest harmless creature\nThat breathed upon this earth a Christian;\nMade him my book wherein my soul recorded\nThe history of all her secret thoughts:\nSo smooth he daub'd his vice with show of virtue,\nThat, his apparent open guilt omitted,\nI mean, his conversation with Shore's wife,\nHe lived from all attainder of suspect.\n\nBUCKINGHAM:\nWell, well, he was the covert'st shelter'd traitor\nThat ever lived.\nWould you imagine, or almost believe,\nWere't not that, by great preservation,\nWe live to tell it you, the subtle traitor\nThis day had plotted, in the council-house\nTo murder me and my good Lord of Gloucester?\n\nLord Mayor:\nWhat, had he so?\n\nGLOUCESTER:\nWhat, think You we are Turks or infidels?\nOr that we would, against the form of law,\nProceed thus rashly to the villain's death,\nBut that the extreme peril of the case,\nThe peace of England and our persons' safety,\nEnforced us to this execution?\n\nLord Mayor:\nNow, fair befall you! he deserved his death;\nAnd you my good lords, both have well proceeded,\nTo warn false traitors from the like attempts.\nI never look'd for better at his hands,\nAfter he once fell in with Mistress Shore.\n\nGLOUCESTER:\nYet had not we determined he should die,\nUntil your lordship came to see his death;\nWhich now the loving haste of these our friends,\nSomewhat against our meaning, have prevented:\nBecause, my lord, we would have had you heard\nThe traitor speak, and timorously confess\nThe manner and the purpose of his treason;\nThat you might well have signified the same\nUnto the citizens, who haply may\nMisconstrue us in him and wail his death.\n\nLord Mayor:\nBut, my good lord, your grace's word shall serve,\nAs well as I had seen and heard him speak\nAnd doubt you not, right noble princes both,\nBut I'll acquaint our duteous citizens\nWith all your just proceedings in this cause.\n\nGLOUCESTER:\nAnd to that end we wish'd your lord-ship here,\nTo avoid the carping censures of the world.\n\nBUCKINGHAM:\nBut since you come too late of our intents,\nYet witness what you hear we did intend:\nAnd so, my good lord mayor, we bid farewell.\n\nGLOUCESTER:\nGo, after, after, cousin Buckingham.\nThe mayor towards Guildhall hies him in all post:\nThere, at your meet'st advantage of the time,\nInfer the bastardy of Edward's children:\nTell them how Edward put to death a citizen,\nOnly for saying he would make his son\nHeir to the crown; meaning indeed his house,\nWhich, by the sign thereof was termed so.\nMoreover, urge his hateful luxury\nAnd bestial appetite in change of lust;\nWhich stretched to their servants, daughters, wives,\nEven where his lustful eye or savage heart,\nWithout control, listed to make his prey.\nNay, for a need, thus far come near my person:\nTell them, when that my mother went with child\nOf that unsatiate Edward, noble York\nMy princely father then had wars in France\nAnd, by just computation of the time,\nFound that the issue was not his begot;\nWhich well appeared in his lineaments,\nBeing nothing like the noble duke my father:\nBut touch this sparingly, as 'twere far off,\nBecause you know, my lord, my mother lives.\n\nBUCKINGHAM:\nFear not, my lord, I'll play the orator\nAs if the golden fee for which I plead\nWere for myself: and so, my lord, adieu.\n\nGLOUCESTER:\nIf you thrive well, bring them to Baynard's Castle;\nWhere you shall find me well accompanied\nWith reverend fathers and well-learned bishops.\n\nBUCKINGHAM:\nI go: and towards three or four o'clock\nLook for the news that the Guildhall affords.\n\nGLOUCESTER:\nGo, Lovel, with all speed to Doctor Shaw;\nGo thou to Friar Penker; bid them both\nMeet me within this hour at Baynard's Castle.\nNow will I in, to take some privy order,\nTo draw the brats of Clarence out of sight;\nAnd to give notice, that no manner of person\nAt any time have recourse unto the princes.\n\nScrivener:\nThis is the indictment of the good Lord Hastings;\nWhich in a set hand fairly is engross'd,\nThat it may be this day read over in Paul's.\nAnd mark how well the sequel hangs together:\nEleven hours I spent to write it over,\nFor yesternight by Catesby was it brought me;\nThe precedent was full as long a-doing:\nAnd yet within these five hours lived Lord Hastings,\nUntainted, unexamined, free, at liberty\nHere's a good world the while! Why who's so gross,\nThat seeth not this palpable device?\nYet who's so blind, but says he sees it not?\nBad is the world; and all will come to nought,\nWhen such bad dealings must be seen in thought.\n\nGLOUCESTER:\nHow now, my lord, what say the citizens?\n\nBUCKINGHAM:\nNow, by the holy mother of our Lord,\nThe citizens are mum and speak not a word.\n\nGLOUCESTER:\nTouch'd you the bastardy of Edward's children?\n\nBUCKINGHAM:\nI did; with his contract with Lady Lucy,\nAnd his contract by deputy in France;\nThe insatiate greediness of his desires,\nAnd his enforcement of the city wives;\nHis tyranny for trifles; his own bastardy,\nAs being got, your father then in France,\nHis resemblance, being not like the duke;\nWithal I did infer your lineaments,\nBeing the right idea of your father,\nBoth in your form and nobleness of mind;\nLaid open all your victories in Scotland,\nYour dicipline in war, wisdom in peace,\nYour bounty, virtue, fair humility:\nIndeed, left nothing fitting for the purpose\nUntouch'd, or slightly handled, in discourse\nAnd when mine oratory grew to an end\nI bid them that did love their country's good\nCry 'God save Richard, England's royal king!'\n\nGLOUCESTER:\nAh! and did they so?\n\nBUCKINGHAM:\nNo, so God help me, they spake not a word;\nBut, like dumb statues or breathing stones,\nGazed each on other, and look'd deadly pale.\nWhich when I saw, I reprehended them;\nAnd ask'd the mayor what meant this wilful silence:\nHis answer was, the people were not wont\nTo be spoke to but by the recorder.\nThen he was urged to tell my tale again,\n'Thus saith the duke, thus hath the duke inferr'd;'\nBut nothing spake in warrant from himself.\nWhen he had done, some followers of mine own,\nAt the lower end of the hall, hurl'd up their caps,\nAnd some ten voices cried 'God save King Richard!'\nAnd thus I took the vantage of those few,\n'Thanks, gentle citizens and friends,' quoth I;\n'This general applause and loving shout\nArgues your wisdoms and your love to Richard:'\nAnd even here brake off, and came away.\n\nGLOUCESTER:\nWhat tongueless blocks were they! would not they speak?\n\nBUCKINGHAM:\nNo, by my troth, my lord.\n\nGLOUCESTER:\nWill not the mayor then and his brethren come?\n\nBUCKINGHAM:\nThe mayor is here at hand: intend some fear;\nBe not you spoke with, but by mighty suit:\nAnd look you get a prayer-book in your hand,\nAnd stand betwixt two churchmen, good my lord;\nFor on that ground I'll build a holy descant:\nAnd be not easily won to our request:\nPlay the maid's part, still answer nay, and take it.\n\nGLOUCESTER:\nI go; and if you plead as well for them\nAs I can say nay to thee for myself,\nNo doubt well bring it to a happy issue.\n\nBUCKINGHAM:\nGo, go, up to the leads; the lord mayor knocks.\nWelcome my lord; I dance attendance here;\nI think the duke will not be spoke withal.\nHere comes his servant: how now, Catesby,\nWhat says he?\n\nCATESBY:\nMy lord: he doth entreat your grace;\nTo visit him to-morrow or next day:\nHe is within, with two right reverend fathers,\nDivinely bent to meditation;\nAnd no worldly suit would he be moved,\nTo draw him from his holy exercise.\n\nBUCKINGHAM:\nReturn, good Catesby, to thy lord again;\nTell him, myself, the mayor and citizens,\nIn deep designs and matters of great moment,\nNo less importing than our general good,\nAre come to have some conference with his grace.\n\nCATESBY:\nI'll tell him what you say, my lord.\n\nBUCKINGHAM:\nAh, ha, my lord, this prince is not an Edward!\nHe is not lolling on a lewd day-bed,\nBut on his knees at meditation;\nNot dallying with a brace of courtezans,\nBut meditating with two deep divines;\nNot sleeping, to engross his idle body,\nBut praying, to enrich his watchful soul:\nHappy were England, would this gracious prince\nTake on himself the sovereignty thereof:\nBut, sure, I fear, we shall ne'er win him to it.\n\nLord Mayor:\nMarry, God forbid his grace should say us nay!\n\nBUCKINGHAM:\nI fear he will.\nHow now, Catesby, what says your lord?\n\nCATESBY:\nMy lord,\nHe wonders to what end you have assembled\nSuch troops of citizens to speak with him,\nHis grace not being warn'd thereof before:\nMy lord, he fears you mean no good to him.\n\nBUCKINGHAM:\nSorry I am my noble cousin should\nSuspect me, that I mean no good to him:\nBy heaven, I come in perfect love to him;\nAnd so once more return and tell his grace.\nWhen holy and devout religious men\nAre at their beads, 'tis hard to draw them thence,\nSo sweet is zealous contemplation.\n\nLord Mayor:\nSee, where he stands between two clergymen!\n\nBUCKINGHAM:\nTwo props of virtue for a Christian prince,\nTo stay him from the fall of vanity:\nAnd, see, a book of prayer in his hand,\nTrue ornaments to know a holy man.\nFamous Plantagenet, most gracious prince,\nLend favourable ears to our request;\nAnd pardon us the interruption\nOf thy devotion and right Christian zeal.\n\nGLOUCESTER:\nMy lord, there needs no such apology:\nI rather do beseech you pardon me,\nWho, earnest in the service of my God,\nNeglect the visitation of my friends.\nBut, leaving this, what is your grace's pleasure?\n\nBUCKINGHAM:\nEven that, I hope, which pleaseth God above,\nAnd all good men of this ungovern'd isle.\n\nGLOUCESTER:\nI do suspect I have done some offence\nThat seems disgracious in the city's eyes,\nAnd that you come to reprehend my ignorance.\n\nBUCKINGHAM:\nYou have, my lord: would it might please your grace,\nAt our entreaties, to amend that fault!\n\nGLOUCESTER:\nElse wherefore breathe I in a Christian land?\n\nBUCKINGHAM:\nThen know, it is your fault that you resign\nThe supreme seat, the throne majestical,\nThe scepter'd office of your ancestors,\nYour state of fortune and your due of birth,\nThe lineal glory of your royal house,\nTo the corruption of a blemished stock:\nWhilst, in the mildness of your sleepy thoughts,\nWhich here we waken to our country's good,\nThis noble isle doth want her proper limbs;\nHer face defaced with scars of infamy,\nHer royal stock graft with ignoble plants,\nAnd almost shoulder'd in the swallowing gulf\nOf blind forgetfulness and dark oblivion.\nWhich to recure, we heartily solicit\nYour gracious self to take on you the charge\nAnd kingly government of this your land,\nNot as protector, steward, substitute,\nOr lowly factor for another's gain;\nBut as successively from blood to blood,\nYour right of birth, your empery, your own.\nFor this, consorted with the citizens,\nYour very worshipful and loving friends,\nAnd by their vehement instigation,\nIn this just suit come I to move your grace.\n\nGLOUCESTER:\nI know not whether to depart in silence,\nOr bitterly to speak in your reproof.\nBest fitteth my degree or your condition\nIf not to answer, you might haply think\nTongue-tied ambition, not replying, yielded\nTo bear the golden yoke of sovereignty,\nWhich fondly you would here impose on me;\nIf to reprove you for this suit of yours,\nSo season'd with your faithful love to me.\nThen, on the other side, I cheque'd my friends.\nTherefore, to speak, and to avoid the first,\nAnd then, in speaking, not to incur the last,\nDefinitively thus I answer you.\nYour love deserves my thanks; but my desert\nUnmeritable shuns your high request.\nFirst if all obstacles were cut away,\nAnd that my path were even to the crown,\nAs my ripe revenue and due by birth\nYet so much is my poverty of spirit,\nSo mighty and so many my defects,\nAs I had rather hide me from my greatness,\nBeing a bark to brook no mighty sea,\nThan in my greatness covet to be hid,\nAnd in the vapour of my glory smother'd.\nBut, God be thank'd, there's no need of me,\nAnd much I need to help you, if need were;\nThe royal tree hath left us royal fruit,\nWhich, mellow'd by the stealing hours of time,\nWill well become the seat of majesty,\nAnd make, no doubt, us happy by his reign.\nOn him I lay what you would lay on me,\nThe right and fortune of his happy stars;\nWhich God defend that I should wring from him!\n\nBUCKINGHAM:\nMy lord, this argues conscience in your grace;\nBut the respects thereof are nice and trivial,\nAll circumstances well considered.\nYou say that Edward is your brother's son:\nSo say we too, but not by Edward's wife;\nFor first he was contract to Lady Lucy--\nYour mother lives a witness to that vow--\nAnd afterward by substitute betroth'd\nTo Bona, sister to the King of France.\nThese both put by a poor petitioner,\nA care-crazed mother of a many children,\nA beauty-waning and distressed widow,\nEven in the afternoon of her best days,\nMade prize and purchase of his lustful eye,\nSeduced the pitch and height of all his thoughts\nTo base declension and loathed bigamy\nBy her, in his unlawful bed, he got\nThis Edward, whom our manners term the prince.\nMore bitterly could I expostulate,\nSave that, for reverence to some alive,\nI give a sparing limit to my tongue.\nThen, good my lord, take to your royal self\nThis proffer'd benefit of dignity;\nIf non to bless us and the land withal,\nYet to draw forth your noble ancestry\nFrom the corruption of abusing times,\nUnto a lineal true-derived course.\n\nLord Mayor:\nDo, good my lord, your citizens entreat you.\n\nBUCKINGHAM:\nRefuse not, mighty lord, this proffer'd love.\n\nCATESBY:\nO, make them joyful, grant their lawful suit!\n\nGLOUCESTER:\nAlas, why would you heap these cares on me?\nI am unfit for state and majesty;\nI do beseech you, take it not amiss;\nI cannot nor I will not yield to you.\n\nBUCKINGHAM:\nIf you refuse it,--as, in love and zeal,\nLoath to depose the child, Your brother's son;\nAs well we know your tenderness of heart\nAnd gentle, kind, effeminate remorse,\nWhich we have noted in you to your kin,\nAnd egally indeed to all estates,--\nYet whether you accept our suit or no,\nYour brother's son shall never reign our king;\nBut we will plant some other in the throne,\nTo the disgrace and downfall of your house:\nAnd in this resolution here we leave you.--\nCome, citizens: 'zounds! I'll entreat no more.\n\nGLOUCESTER:\nO, do not swear, my lord of Buckingham.\n\nCATESBY:\nCall them again, my lord, and accept their suit.\n\nANOTHER:\nDo, good my lord, lest all the land do rue it.\n\nGLOUCESTER:\nWould you enforce me to a world of care?\nWell, call them again. I am not made of stone,\nBut penetrable to your. kind entreats,\nAlbeit against my conscience and my soul.\nCousin of Buckingham, and you sage, grave men,\nSince you will buckle fortune on my back,\nTo bear her burthen, whether I will or no,\nI must have patience to endure the load:\nBut if black scandal or foul-faced reproach\nAttend the sequel of your imposition,\nYour mere enforcement shall acquittance me\nFrom all the impure blots and stains thereof;\nFor God he knows, and you may partly see,\nHow far I am from the desire thereof.\n\nLord Mayor:\nGod bless your grace! we see it, and will say it.\n\nGLOUCESTER:\nIn saying so, you shall but say the truth.\n\nBUCKINGHAM:\nThen I salute you with this kingly title:\nLong live Richard, England's royal king!\n\nLord Mayor:\nAmen.\n\nBUCKINGHAM:\nTo-morrow will it please you to be crown'd?\n\nGLOUCESTER:\nEven when you please, since you will have it so.\n\nBUCKINGHAM:\nTo-morrow, then, we will attend your grace:\nAnd so most joyfully we take our leave.\n\nGLOUCESTER:\nCome, let us to our holy task again.\nFarewell, good cousin; farewell, gentle friends.\n\nDUCHESS OF YORK:\nWho meets us here?  my niece Plantagenet\nLed in the hand of her kind aunt of Gloucester?\nNow, for my life, she's wandering to the Tower,\nOn pure heart's love to greet the tender princes.\nDaughter, well met.\n\nLADY ANNE:\nGod give your graces both\nA happy and a joyful time of day!\n\nQUEEN ELIZABETH:\nAs much to you, good sister! Whither away?\n\nLADY ANNE:\nNo farther than the Tower; and, as I guess,\nUpon the like devotion as yourselves,\nTo gratulate the gentle princes there.\n\nQUEEN ELIZABETH:\nKind sister, thanks: we'll enter all together.\nAnd, in good time, here the lieutenant comes.\nMaster lieutenant, pray you, by your leave,\nHow doth the prince, and my young son of York?\n\nBRAKENBURY:\nRight well, dear madam. By your patience,\nI may not suffer you to visit them;\nThe king hath straitly charged the contrary.\n\nQUEEN ELIZABETH:\nThe king! why, who's that?\n\nBRAKENBURY:\nI cry you mercy: I mean the lord protector.\n\nQUEEN ELIZABETH:\nThe Lord protect him from that kingly title!\nHath he set bounds betwixt their love and me?\nI am their mother; who should keep me from them?\n\nDUCHESS OF YORK:\nI am their fathers mother; I will see them.\n\nLADY ANNE:\nTheir aunt I am in law, in love their mother:\nThen bring me to their sights; I'll bear thy blame\nAnd take thy office from thee, on my peril.\n\nBRAKENBURY:\nNo, madam, no; I may not leave it so:\nI am bound by oath, and therefore pardon me.\n\nLORD STANLEY:\nLet me but meet you, ladies, one hour hence,\nAnd I'll salute your grace of York as mother,\nAnd reverend looker on, of two fair queens.\nCome, madam, you must straight to Westminster,\nThere to be crowned Richard's royal queen.\n\nQUEEN ELIZABETH:\nO, cut my lace in sunder, that my pent heart\nMay have some scope to beat, or else I swoon\nWith this dead-killing news!\n\nLADY ANNE:\nDespiteful tidings! O unpleasing news!\n\nDORSET:\nBe of good cheer: mother, how fares your grace?\n\nQUEEN ELIZABETH:\nO Dorset, speak not to me, get thee hence!\nDeath and destruction dog thee at the heels;\nThy mother's name is ominous to children.\nIf thou wilt outstrip death, go cross the seas,\nAnd live with Richmond, from the reach of hell\nGo, hie thee, hie thee from this slaughter-house,\nLest thou increase the number of the dead;\nAnd make me die the thrall of Margaret's curse,\nNor mother, wife, nor England's counted queen.\n\nLORD STANLEY:\nFull of wise care is this your counsel, madam.\nTake all the swift advantage of the hours;\nYou shall have letters from me to my son\nTo meet you on the way, and welcome you.\nBe not ta'en tardy by unwise delay.\n\nDUCHESS OF YORK:\nO ill-dispersing wind of misery!\nO my accursed womb, the bed of death!\nA cockatrice hast thou hatch'd to the world,\nWhose unavoided eye is murderous.\n\nLORD STANLEY:\nCome, madam, come; I in all haste was sent.\n\nLADY ANNE:\nAnd I in all unwillingness will go.\nI would to God that the inclusive verge\nOf golden metal that must round my brow\nWere red-hot steel, to sear me to the brain!\nAnointed let me be with deadly venom,\nAnd die, ere men can say, God save the queen!\n\nQUEEN ELIZABETH:\nGo, go, poor soul, I envy not thy glory\nTo feed my humour, wish thyself no harm.\n\nLADY ANNE:\nNo! why?  When he that is my husband now\nCame to me, as I follow'd Henry's corse,\nWhen scarce the blood was well wash'd from his hands\nWhich issued from my other angel husband\nAnd that dead saint which then I weeping follow'd;\nO, when, I say, I look'd on Richard's face,\nThis was my wish: 'Be thou,' quoth I, ' accursed,\nFor making me, so young, so old a widow!\nAnd, when thou wed'st, let sorrow haunt thy bed;\nAnd be thy wife--if any be so mad--\nAs miserable by the life of thee\nAs thou hast made me by my dear lord's death!\nLo, ere I can repeat this curse again,\nEven in so short a space, my woman's heart\nGrossly grew captive to his honey words\nAnd proved the subject of my own soul's curse,\nWhich ever since hath kept my eyes from rest;\nFor never yet one hour in his bed\nHave I enjoy'd the golden dew of sleep,\nBut have been waked by his timorous dreams.\nBesides, he hates me for my father Warwick;\nAnd will, no doubt, shortly be rid of me.\n\nQUEEN ELIZABETH:\nPoor heart, adieu! I pity thy complaining.\n\nLADY ANNE:\nNo more than from my soul I mourn for yours.\n\nQUEEN ELIZABETH:\nFarewell, thou woful welcomer of glory!\n\nLADY ANNE:\nAdieu, poor soul, that takest thy leave of it!\n\nDUCHESS OF YORK:\n\nQUEEN ELIZABETH:\nStay, yet look back with me unto the Tower.\nPity, you ancient stones, those tender babes\nWhom envy hath immured within your walls!\nRough cradle for such little pretty ones!\nRude ragged nurse, old sullen playfellow\nFor tender princes, use my babies well!\nSo foolish sorrow bids your stones farewell.\n\nKING RICHARD III:\nStand all apart Cousin of Buckingham!\n\nBUCKINGHAM:\nMy gracious sovereign?\n\nKING RICHARD III:\nGive me thy hand.\nThus high, by thy advice\nAnd thy assistance, is King Richard seated;\nBut shall we wear these honours for a day?\nOr shall they last, and we rejoice in them?\n\nBUCKINGHAM:\nStill live they and for ever may they last!\n\nKING RICHARD III:\nO Buckingham, now do I play the touch,\nTo try if thou be current gold indeed\nYoung Edward lives: think now what I would say.\n\nBUCKINGHAM:\nSay on, my loving lord.\n\nKING RICHARD III:\nWhy, Buckingham, I say, I would be king,\n\nBUCKINGHAM:\nWhy, so you are, my thrice renowned liege.\n\nKING RICHARD III:\nHa! am I king? 'tis so: but Edward lives.\n\nBUCKINGHAM:\nTrue, noble prince.\n\nKING RICHARD III:\nO bitter consequence,\nThat Edward still should live! 'True, noble prince!'\nCousin, thou wert not wont to be so dull:\nShall I be plain? I wish the bastards dead;\nAnd I would have it suddenly perform'd.\nWhat sayest thou? speak suddenly; be brief.\n\nBUCKINGHAM:\nYour grace may do your pleasure.\n\nKING RICHARD III:\nTut, tut, thou art all ice, thy kindness freezeth:\nSay, have I thy consent that they shall die?\n\nBUCKINGHAM:\nGive me some breath, some little pause, my lord\nBefore I positively herein:\nI will resolve your grace immediately.\n\nCATESBY:\n\nKING RICHARD III:\nI will converse with iron-witted fools\nAnd unrespective boys: none are for me\nThat look into me with considerate eyes:\nHigh-reaching Buckingham grows circumspect.\nBoy!\n\nPage:\nMy lord?\n\nKING RICHARD III:\nKnow'st thou not any whom corrupting gold\nWould tempt unto a close exploit of death?\n\nPage:\nMy lord, I know a discontented gentleman,\nWhose humble means match not his haughty mind:\nGold were as good as twenty orators,\nAnd will, no doubt, tempt him to any thing.\n\nKING RICHARD III:\nWhat is his name?\n\nPage:\nHis name, my lord, is Tyrrel.\n\nKING RICHARD III:\nI partly know the man: go, call him hither.\nThe deep-revolving witty Buckingham\nNo more shall be the neighbour to my counsel:\nHath he so long held out with me untired,\nAnd stops he now for breath?\nHow now! what news with you?\n\nSTANLEY:\nMy lord, I hear the Marquis Dorset's fled\nTo Richmond, in those parts beyond the sea\nWhere he abides.\n\nKING RICHARD III:\nCatesby!\n\nCATESBY:\nMy lord?\n\nKING RICHARD III:\nRumour it abroad\nThat Anne, my wife, is sick and like to die:\nI will take order for her keeping close.\nInquire me out some mean-born gentleman,\nWhom I will marry straight to Clarence' daughter:\nThe boy is foolish, and I fear not him.\nLook, how thou dream'st! I say again, give out\nThat Anne my wife is sick and like to die:\nAbout it; for it stands me much upon,\nTo stop all hopes whose growth may damage me.\nI must be married to my brother's daughter,\nOr else my kingdom stands on brittle glass.\nMurder her brothers, and then marry her!\nUncertain way of gain! But I am in\nSo far in blood that sin will pluck on sin:\nTear-falling pity dwells not in this eye.\nIs thy name Tyrrel?\n\nTYRREL:\nJames Tyrrel, and your most obedient subject.\n\nKING RICHARD III:\nArt thou, indeed?\n\nTYRREL:\nProve me, my gracious sovereign.\n\nKING RICHARD III:\nDarest thou resolve to kill a friend of mine?\n\nTYRREL:\nAy, my lord;\nBut I had rather kill two enemies.\n\nKING RICHARD III:\nWhy, there thou hast it: two deep enemies,\nFoes to my rest and my sweet sleep's disturbers\nAre they that I would have thee deal upon:\nTyrrel, I mean those bastards in the Tower.\n\nTYRREL:\nLet me have open means to come to them,\nAnd soon I'll rid you from the fear of them.\n\nKING RICHARD III:\nThou sing'st sweet music. Hark, come hither, Tyrrel\nGo, by this token: rise, and lend thine ear:\nThere is no more but so: say it is done,\nAnd I will love thee, and prefer thee too.\n\nTYRREL:\n'Tis done, my gracious lord.\n\nKING RICHARD III:\nShall we hear from thee, Tyrrel, ere we sleep?\n\nTYRREL:\nYe shall, my Lord.\n\nBUCKINGHAM:\nMy Lord, I have consider'd in my mind\nThe late demand that you did sound me in.\n\nKING RICHARD III:\nWell, let that pass. Dorset is fled to Richmond.\n\nBUCKINGHAM:\nI hear that news, my lord.\n\nKING RICHARD III:\nStanley, he is your wife's son well, look to it.\n\nBUCKINGHAM:\nMy lord, I claim your gift, my due by promise,\nFor which your honour and your faith is pawn'd;\nThe earldom of Hereford and the moveables\nThe which you promised I should possess.\n\nKING RICHARD III:\nStanley, look to your wife; if she convey\nLetters to Richmond, you shall answer it.\n\nBUCKINGHAM:\nWhat says your highness to my just demand?\n\nKING RICHARD III:\nAs I remember, Henry the Sixth\nDid prophesy that Richmond should be king,\nWhen Richmond was a little peevish boy.\nA king, perhaps, perhaps,--\n\nBUCKINGHAM:\nMy lord!\n\nKING RICHARD III:\nHow chance the prophet could not at that time\nHave told me, I being by, that I should kill him?\n\nBUCKINGHAM:\nMy lord, your promise for the earldom,--\n\nKING RICHARD III:\nRichmond! When last I was at Exeter,\nThe mayor in courtesy show'd me the castle,\nAnd call'd it Rougemont: at which name I started,\nBecause a bard of Ireland told me once\nI should not live long after I saw Richmond.\n\nBUCKINGHAM:\nMy Lord!\n\nKING RICHARD III:\nAy, what's o'clock?\n\nBUCKINGHAM:\nI am thus bold to put your grace in mind\nOf what you promised me.\n\nKING RICHARD III:\nWell, but what's o'clock?\n\nBUCKINGHAM:\nUpon the stroke of ten.\n\nKING RICHARD III:\nWell, let it strike.\n\nBUCKINGHAM:\nWhy let it strike?\n\nKING RICHARD III:\nBecause that, like a Jack, thou keep'st the stroke\nBetwixt thy begging and my meditation.\nI am not in the giving vein to-day.\n\nBUCKINGHAM:\nWhy, then resolve me whether you will or no.\n\nKING RICHARD III:\nTut, tut,\nThou troublest me; am not in the vein.\n\nBUCKINGHAM:\nIs it even so? rewards he my true service\nWith such deep contempt made I him king for this?\nO, let me think on Hastings, and be gone\nTo Brecknock, while my fearful head is on!\n\nTYRREL:\nThe tyrannous and bloody deed is done.\nThe most arch of piteous massacre\nThat ever yet this land was guilty of.\nDighton and Forrest, whom I did suborn\nTo do this ruthless piece of butchery,\nAlthough they were flesh'd villains, bloody dogs,\nMelting with tenderness and kind compassion\nWept like two children in their deaths' sad stories.\n'Lo, thus' quoth Dighton, 'lay those tender babes:'\n'Thus, thus,' quoth Forrest, 'girdling one another\nWithin their innocent alabaster arms:\nTheir lips were four red roses on a stalk,\nWhich in their summer beauty kiss'd each other.\nA book of prayers on their pillow lay;\nWhich once,' quoth Forrest, 'almost changed my mind;\nBut O! the devil'--there the villain stopp'd\nWhilst Dighton thus told on: 'We smothered\nThe most replenished sweet work of nature,\nThat from the prime creation e'er she framed.'\nThus both are gone with conscience and remorse;\nThey could not speak; and so I left them both,\nTo bring this tidings to the bloody king.\nAnd here he comes.\nAll hail, my sovereign liege!\n\nKING RICHARD III:\nKind Tyrrel, am I happy in thy news?\n\nTYRREL:\nIf to have done the thing you gave in charge\nBeget your happiness, be happy then,\nFor it is done, my lord.\n\nKING RICHARD III:\nBut didst thou see them dead?\n\nTYRREL:\nI did, my lord.\n\nKING RICHARD III:\nAnd buried, gentle Tyrrel?\n\nTYRREL:\nThe chaplain of the Tower hath buried them;\nBut how or in what place I do not know.\n\nKING RICHARD III:\nCome to me, Tyrrel, soon at after supper,\nAnd thou shalt tell the process of their death.\nMeantime, but think how I may do thee good,\nAnd be inheritor of thy desire.\nFarewell till soon.\nThe son of Clarence have I pent up close;\nHis daughter meanly have I match'd in marriage;\nThe sons of Edward sleep in Abraham's bosom,\nAnd Anne my wife hath bid the world good night.\nNow, for I know the Breton Richmond aims\nAt young Elizabeth, my brother's daughter,\nAnd, by that knot, looks proudly o'er the crown,\nTo her I go, a jolly thriving wooer.\n\nCATESBY:\nMy lord!\n\nKING RICHARD III:\nGood news or bad, that thou comest in so bluntly?\n\nCATESBY:\nBad news, my lord: Ely is fled to Richmond;\nAnd Buckingham, back'd with the hardy Welshmen,\nIs in the field, and still his power increaseth.\n\nKING RICHARD III:\nEly with Richmond troubles me more near\nThan Buckingham and his rash-levied army.\nCome, I have heard that fearful commenting\nIs leaden servitor to dull delay;\nDelay leads impotent and snail-paced beggary\nThen fiery expedition be my wing,\nJove's Mercury, and herald for a king!\nCome, muster men: my counsel is my shield;\nWe must be brief when traitors brave the field.\n\nQUEEN MARGARET:\nSo, now prosperity begins to mellow\nAnd drop into the rotten mouth of death.\nHere in these confines slily have I lurk'd,\nTo watch the waning of mine adversaries.\nA dire induction am I witness to,\nAnd will to France, hoping the consequence\nWill prove as bitter, black, and tragical.\nWithdraw thee, wretched Margaret: who comes here?\n\nQUEEN ELIZABETH:\nAh, my young princes! ah, my tender babes!\nMy unblown flowers, new-appearing sweets!\nIf yet your gentle souls fly in the air\nAnd be not fix'd in doom perpetual,\nHover about me with your airy wings\nAnd hear your mother's lamentation!\n\nQUEEN MARGARET:\nHover about her; say, that right for right\nHath dimm'd your infant morn to aged night.\n\nDUCHESS OF YORK:\nSo many miseries have crazed my voice,\nThat my woe-wearied tongue is mute and dumb,\nEdward Plantagenet, why art thou dead?\n\nQUEEN MARGARET:\nPlantagenet doth quit Plantagenet.\nEdward for Edward pays a dying debt.\n\nQUEEN ELIZABETH:\nWilt thou, O God, fly from such gentle lambs,\nAnd throw them in the entrails of the wolf?\nWhen didst thou sleep when such a deed was done?\n\nQUEEN MARGARET:\nWhen holy Harry died, and my sweet son.\n\nDUCHESS OF YORK:\nBlind sight, dead life, poor mortal living ghost,\nWoe's scene, world's shame, grave's due by life usurp'd,\nBrief abstract and record of tedious days,\nRest thy unrest on England's lawful earth,\nUnlawfully made drunk with innocents' blood!\n\nQUEEN ELIZABETH:\nO, that thou wouldst as well afford a grave\nAs thou canst yield a melancholy seat!\nThen would I hide my bones, not rest them here.\nO, who hath any cause to mourn but I?\n\nQUEEN MARGARET:\nIf ancient sorrow be most reverend,\nGive mine the benefit of seniory,\nAnd let my woes frown on the upper hand.\nIf sorrow can admit society,\nTell o'er your woes again by viewing mine:\nI had an Edward, till a Richard kill'd him;\nI had a Harry, till a Richard kill'd him:\nThou hadst an Edward, till a Richard kill'd him;\nThou hadst a Richard, till a Richard killed him;\n\nDUCHESS OF YORK:\nI had a Richard too, and thou didst kill him;\nI had a Rutland too, thou holp'st to kill him.\n\nQUEEN MARGARET:\nThou hadst a Clarence too, and Richard kill'd him.\nFrom forth the kennel of thy womb hath crept\nA hell-hound that doth hunt us all to death:\nThat dog, that had his teeth before his eyes,\nTo worry lambs and lap their gentle blood,\nThat foul defacer of God's handiwork,\nThat excellent grand tyrant of the earth,\nThat reigns in galled eyes of weeping souls,\nThy womb let loose, to chase us to our graves.\nO upright, just, and true-disposing God,\nHow do I thank thee, that this carnal cur\nPreys on the issue of his mother's body,\nAnd makes her pew-fellow with others' moan!\n\nDUCHESS OF YORK:\nO Harry's wife, triumph not in my woes!\nGod witness with me, I have wept for thine.\n\nQUEEN MARGARET:\nBear with me; I am hungry for revenge,\nAnd now I cloy me with beholding it.\nThy Edward he is dead, that stabb'd my Edward:\nThy other Edward dead, to quit my Edward;\nYoung York he is but boot, because both they\nMatch not the high perfection of my loss:\nThy Clarence he is dead that kill'd my Edward;\nAnd the beholders of this tragic play,\nThe adulterate Hastings, Rivers, Vaughan, Grey,\nUntimely smother'd in their dusky graves.\nRichard yet lives, hell's black intelligencer,\nOnly reserved their factor, to buy souls\nAnd send them thither: but at hand, at hand,\nEnsues his piteous and unpitied end:\nEarth gapes, hell burns, fiends roar, saints pray.\nTo have him suddenly convey'd away.\nCancel his bond of life, dear God, I prey,\nThat I may live to say, The dog is dead!\n\nQUEEN ELIZABETH:\nO, thou didst prophesy the time would come\nThat I should wish for thee to help me curse\nThat bottled spider, that foul bunch-back'd toad!\n\nQUEEN MARGARET:\nI call'd thee then vain flourish of my fortune;\nI call'd thee then poor shadow, painted queen;\nThe presentation of but what I was;\nThe flattering index of a direful pageant;\nOne heaved a-high, to be hurl'd down below;\nA mother only mock'd with two sweet babes;\nA dream of what thou wert, a breath, a bubble,\nA sign of dignity, a garish flag,\nTo be the aim of every dangerous shot,\nA queen in jest, only to fill the scene.\nWhere is thy husband now? where be thy brothers?\nWhere are thy children? wherein dost thou, joy?\nWho sues to thee and cries 'God save the queen'?\nWhere be the bending peers that flatter'd thee?\nWhere be the thronging troops that follow'd thee?\nDecline all this, and see what now thou art:\nFor happy wife, a most distressed widow;\nFor joyful mother, one that wails the name;\nFor queen, a very caitiff crown'd with care;\nFor one being sued to, one that humbly sues;\nFor one that scorn'd at me, now scorn'd of me;\nFor one being fear'd of all, now fearing one;\nFor one commanding all, obey'd of none.\nThus hath the course of justice wheel'd about,\nAnd left thee but a very prey to time;\nHaving no more but thought of what thou wert,\nTo torture thee the more, being what thou art.\nThou didst usurp my place, and dost thou not\nUsurp the just proportion of my sorrow?\nNow thy proud neck bears half my burthen'd yoke;\nFrom which even here I slip my weary neck,\nAnd leave the burthen of it all on thee.\nFarewell, York's wife, and queen of sad mischance:\nThese English woes will make me smile in France.\n\nQUEEN ELIZABETH:\nO thou well skill'd in curses, stay awhile,\nAnd teach me how to curse mine enemies!\n\nQUEEN MARGARET:\nForbear to sleep the nights, and fast the days;\nCompare dead happiness with living woe;\nThink that thy babes were fairer than they were,\nAnd he that slew them fouler than he is:\nBettering thy loss makes the bad causer worse:\nRevolving this will teach thee how to curse.\n\nQUEEN ELIZABETH:\nMy words are dull; O, quicken them with thine!\n\nQUEEN MARGARET:\nThy woes will make them sharp, and pierce like mine.\n\nDUCHESS OF YORK:\nWhy should calamity be full of words?\n\nQUEEN ELIZABETH:\nWindy attorneys to their client woes,\nAiry succeeders of intestate joys,\nPoor breathing orators of miseries!\nLet them have scope: though what they do impart\nHelp not all, yet do they ease the heart.\n\nDUCHESS OF YORK:\nIf so, then be not tongue-tied: go with me.\nAnd in the breath of bitter words let's smother\nMy damned son, which thy two sweet sons smother'd.\nI hear his drum: be copious in exclaims.\n\nKING RICHARD III:\nWho intercepts my expedition?\n\nDUCHESS OF YORK:\nO, she that might have intercepted thee,\nBy strangling thee in her accursed womb\nFrom all the slaughters, wretch, that thou hast done!\n\nQUEEN ELIZABETH:\nHidest thou that forehead with a golden crown,\nWhere should be graven, if that right were right,\nThe slaughter of the prince that owed that crown,\nAnd the dire death of my two sons and brothers?\nTell me, thou villain slave, where are my children?\n\nDUCHESS OF YORK:\nThou toad, thou toad, where is thy brother Clarence?\nAnd little Ned Plantagenet, his son?\n\nQUEEN ELIZABETH:\nWhere is kind Hastings, Rivers, Vaughan, Grey?\n\nKING RICHARD III:\nA flourish, trumpets! strike alarum, drums!\nLet not the heavens hear these tell-tale women\nRail on the Lord's enointed: strike, I say!\nEither be patient, and entreat me fair,\nOr with the clamorous report of war\nThus will I drown your exclamations.\n\nDUCHESS OF YORK:\nArt thou my son?\n\nKING RICHARD III:\nAy, I thank God, my father, and yourself.\n\nDUCHESS OF YORK:\nThen patiently hear my impatience.\n\nKING RICHARD III:\nMadam, I have a touch of your condition,\nWhich cannot brook the accent of reproof.\n\nDUCHESS OF YORK:\nO, let me speak!\n\nKING RICHARD III:\nDo then: but I'll not hear.\n\nDUCHESS OF YORK:\nI will be mild and gentle in my speech.\n\nKING RICHARD III:\nAnd brief, good mother; for I am in haste.\n\nDUCHESS OF YORK:\nArt thou so hasty? I have stay'd for thee,\nGod knows, in anguish, pain and agony.\n\nKING RICHARD III:\nAnd came I not at last to comfort you?\n\nDUCHESS OF YORK:\nNo, by the holy rood, thou know'st it well,\nThou camest on earth to make the earth my hell.\nA grievous burthen was thy birth to me;\nTetchy and wayward was thy infancy;\nThy school-days frightful, desperate, wild, and furious,\nThy prime of manhood daring, bold, and venturous,\nThy age confirm'd, proud, subdued, bloody,\ntreacherous,\nMore mild, but yet more harmful, kind in hatred:\nWhat comfortable hour canst thou name,\nThat ever graced me in thy company?\n\nKING RICHARD III:\nFaith, none, but Humphrey Hour, that call'd\nyour grace\nTo breakfast once forth of my company.\nIf I be so disgracious in your sight,\nLet me march on, and not offend your grace.\nStrike the drum.\n\nDUCHESS OF YORK:\nI prithee, hear me speak.\n\nKING RICHARD III:\nYou speak too bitterly.\n\nDUCHESS OF YORK:\nHear me a word;\nFor I shall never speak to thee again.\n\nKING RICHARD III:\nSo.\n\nDUCHESS OF YORK:\nEither thou wilt die, by God's just ordinance,\nEre from this war thou turn a conqueror,\nOr I with grief and extreme age shall perish\nAnd never look upon thy face again.\nTherefore take with thee my most heavy curse;\nWhich, in the day of battle, tire thee more\nThan all the complete armour that thou wear'st!\nMy prayers on the adverse party fight;\nAnd there the little souls of Edward's children\nWhisper the spirits of thine enemies\nAnd promise them success and victory.\nBloody thou art, bloody will be thy end;\nShame serves thy life and doth thy death attend.\n\nQUEEN ELIZABETH:\nThough far more cause, yet much less spirit to curse\nAbides in me; I say amen to all.\n\nKING RICHARD III:\nStay, madam; I must speak a word with you.\n\nQUEEN ELIZABETH:\nI have no more sons of the royal blood\nFor thee to murder: for my daughters, Richard,\nThey shall be praying nuns, not weeping queens;\nAnd therefore level not to hit their lives.\n\nKING RICHARD III:\nYou have a daughter call'd Elizabeth,\nVirtuous and fair, royal and gracious.\n\nQUEEN ELIZABETH:\nAnd must she die for this? O, let her live,\nAnd I'll corrupt her manners, stain her beauty;\nSlander myself as false to Edward's bed;\nThrow over her the veil of infamy:\nSo she may live unscarr'd of bleeding slaughter,\nI will confess she was not Edward's daughter.\n\nKING RICHARD III:\nWrong not her birth, she is of royal blood.\n\nQUEEN ELIZABETH:\nTo save her life, I'll say she is not so.\n\nKING RICHARD III:\nHer life is only safest in her birth.\n\nQUEEN ELIZABETH:\nAnd only in that safety died her brothers.\n\nKING RICHARD III:\nLo, at their births good stars were opposite.\n\nQUEEN ELIZABETH:\nNo, to their lives bad friends were contrary.\n\nKING RICHARD III:\nAll unavoided is the doom of destiny.\n\nQUEEN ELIZABETH:\nTrue, when avoided grace makes destiny:\nMy babes were destined to a fairer death,\nIf grace had bless'd thee with a fairer life.\n\nKING RICHARD III:\nYou speak as if that I had slain my cousins.\n\nQUEEN ELIZABETH:\nCousins, indeed; and by their uncle cozen'd\nOf comfort, kingdom, kindred, freedom, life.\nWhose hand soever lanced their tender hearts,\nThy head, all indirectly, gave direction:\nNo doubt the murderous knife was dull and blunt\nTill it was whetted on thy stone-hard heart,\nTo revel in the entrails of my lambs.\nBut that still use of grief makes wild grief tame,\nMy tongue should to thy ears not name my boys\nTill that my nails were anchor'd in thine eyes;\nAnd I, in such a desperate bay of death,\nLike a poor bark, of sails and tackling reft,\nRush all to pieces on thy rocky bosom.\n\nKING RICHARD III:\nMadam, so thrive I in my enterprise\nAnd dangerous success of bloody wars,\nAs I intend more good to you and yours,\nThan ever you or yours were by me wrong'd!\n\nQUEEN ELIZABETH:\nWhat good is cover'd with the face of heaven,\nTo be discover'd, that can do me good?\n\nKING RICHARD III:\nThe advancement of your children, gentle lady.\n\nQUEEN ELIZABETH:\nUp to some scaffold, there to lose their heads?\n\nKING RICHARD III:\nNo, to the dignity and height of honour\nThe high imperial type of this earth's glory.\n\nQUEEN ELIZABETH:\nFlatter my sorrows with report of it;\nTell me what state, what dignity, what honour,\nCanst thou demise to any child of mine?\n\nKING RICHARD III:\nEven all I have; yea, and myself and all,\nWill I withal endow a child of thine;\nSo in the Lethe of thy angry soul\nThou drown the sad remembrance of those wrongs\nWhich thou supposest I have done to thee.\n\nQUEEN ELIZABETH:\nBe brief, lest that be process of thy kindness\nLast longer telling than thy kindness' date.\n\nKING RICHARD III:\nThen know, that from my soul I love thy daughter.\n\nQUEEN ELIZABETH:\nMy daughter's mother thinks it with her soul.\n\nKING RICHARD III:\nWhat do you think?\n\nQUEEN ELIZABETH:\nThat thou dost love my daughter from thy soul:\nSo from thy soul's love didst thou love her brothers;\nAnd from my heart's love I do thank thee for it.\n\nKING RICHARD III:\nBe not so hasty to confound my meaning:\nI mean, that with my soul I love thy daughter,\nAnd mean to make her queen of England.\n\nQUEEN ELIZABETH:\nSay then, who dost thou mean shall be her king?\n\nKING RICHARD III:\nEven he that makes her queen who should be else?\n\nQUEEN ELIZABETH:\nWhat, thou?\n\nKING RICHARD III:\nI, even I: what think you of it, madam?\n\nQUEEN ELIZABETH:\nHow canst thou woo her?\n\nKING RICHARD III:\nThat would I learn of you,\nAs one that are best acquainted with her humour.\n\nQUEEN ELIZABETH:\nAnd wilt thou learn of me?\n\nKING RICHARD III:\nMadam, with all my heart.\n\nQUEEN ELIZABETH:\nSend to her, by the man that slew her brothers,\nA pair of bleeding-hearts; thereon engrave\nEdward and York; then haply she will weep:\nTherefore present to her--as sometime Margaret\nDid to thy father, steep'd in Rutland's blood,--\nA handkerchief; which, say to her, did drain\nThe purple sap from her sweet brother's body\nAnd bid her dry her weeping eyes therewith.\nIf this inducement force her not to love,\nSend her a story of thy noble acts;\nTell her thou madest away her uncle Clarence,\nHer uncle Rivers; yea, and, for her sake,\nMadest quick conveyance with her good aunt Anne.\n\nKING RICHARD III:\nCome, come, you mock me; this is not the way\nTo win our daughter.\n\nQUEEN ELIZABETH:\nThere is no other way\nUnless thou couldst put on some other shape,\nAnd not be Richard that hath done all this.\n\nKING RICHARD III:\nSay that I did all this for love of her.\n\nQUEEN ELIZABETH:\nNay, then indeed she cannot choose but hate thee,\nHaving bought love with such a bloody spoil.\n\nKING RICHARD III:\nLook, what is done cannot be now amended:\nMen shall deal unadvisedly sometimes,\nWhich after hours give leisure to repent.\nIf I did take the kingdom from your sons,\nTo make amends, Ill give it to your daughter.\nIf I have kill'd the issue of your womb,\nTo quicken your increase, I will beget\nMine issue of your blood upon your daughter\nA grandam's name is little less in love\nThan is the doting title of a mother;\nThey are as children but one step below,\nEven of your mettle, of your very blood;\nOf an one pain, save for a night of groans\nEndured of her, for whom you bid like sorrow.\nYour children were vexation to your youth,\nBut mine shall be a comfort to your age.\nThe loss you have is but a son being king,\nAnd by that loss your daughter is made queen.\nI cannot make you what amends I would,\nTherefore accept such kindness as I can.\nDorset your son, that with a fearful soul\nLeads discontented steps in foreign soil,\nThis fair alliance quickly shall call home\nTo high promotions and great dignity:\nThe king, that calls your beauteous daughter wife.\nFamiliarly shall call thy Dorset brother;\nAgain shall you be mother to a king,\nAnd all the ruins of distressful times\nRepair'd with double riches of content.\nWhat! we have many goodly days to see:\nThe liquid drops of tears that you have shed\nShall come again, transform'd to orient pearl,\nAdvantaging their loan with interest\nOf ten times double gain of happiness.\nGo, then my mother, to thy daughter go\nMake bold her bashful years with your experience;\nPrepare her ears to hear a wooer's tale\nPut in her tender heart the aspiring flame\nOf golden sovereignty; acquaint the princess\nWith the sweet silent hours of marriage joys\nAnd when this arm of mine hath chastised\nThe petty rebel, dull-brain'd Buckingham,\nBound with triumphant garlands will I come\nAnd lead thy daughter to a conqueror's bed;\nTo whom I will retail my conquest won,\nAnd she shall be sole victress, Caesar's Caesar.\n\nQUEEN ELIZABETH:\nWhat were I best to say? her father's brother\nWould be her lord? or shall I say, her uncle?\nOr, he that slew her brothers and her uncles?\nUnder what title shall I woo for thee,\nThat God, the law, my honour and her love,\nCan make seem pleasing to her tender years?\n\nKING RICHARD III:\nInfer fair England's peace by this alliance.\n\nQUEEN ELIZABETH:\nWhich she shall purchase with still lasting war.\n\nKING RICHARD III:\nSay that the king, which may command, entreats.\n\nQUEEN ELIZABETH:\nThat at her hands which the king's King forbids.\n\nKING RICHARD III:\nSay, she shall be a high and mighty queen.\n\nQUEEN ELIZABETH:\nTo wail the tide, as her mother doth.\n\nKING RICHARD III:\nSay, I will love her everlastingly.\n\nQUEEN ELIZABETH:\nBut how long shall that title 'ever' last?\n\nKING RICHARD III:\nSweetly in force unto her fair life's end.\n\nQUEEN ELIZABETH:\nBut how long fairly shall her sweet lie last?\n\nKING RICHARD III:\nSo long as heaven and nature lengthens it.\n\nQUEEN ELIZABETH:\nSo long as hell and Richard likes of it.\n\nKING RICHARD III:\nSay, I, her sovereign, am her subject love.\n\nQUEEN ELIZABETH:\nBut she, your subject, loathes such sovereignty.\n\nKING RICHARD III:\nBe eloquent in my behalf to her.\n\nQUEEN ELIZABETH:\nAn honest tale speeds best being plainly told.\n\nKING RICHARD III:\nThen in plain terms tell her my loving tale.\n\nQUEEN ELIZABETH:\nPlain and not honest is too harsh a style.\n\nKING RICHARD III:\nYour reasons are too shallow and too quick.\n\nQUEEN ELIZABETH:\nO no, my reasons are too deep and dead;\nToo deep and dead, poor infants, in their grave.\n\nKING RICHARD III:\nHarp not on that string, madam; that is past.\n\nQUEEN ELIZABETH:\nHarp on it still shall I till heart-strings break.\n\nKING RICHARD III:\nNow, by my George, my garter, and my crown,--\n\nQUEEN ELIZABETH:\nProfaned, dishonour'd, and the third usurp'd.\n\nKING RICHARD III:\nI swear--\n\nQUEEN ELIZABETH:\nBy nothing; for this is no oath:\nThe George, profaned, hath lost his holy honour;\nThe garter, blemish'd, pawn'd his knightly virtue;\nThe crown, usurp'd, disgraced his kingly glory.\nif something thou wilt swear to be believed,\nSwear then by something that thou hast not wrong'd.\n\nKING RICHARD III:\nNow, by the world--\n\nQUEEN ELIZABETH:\n'Tis full of thy foul wrongs.\n\nKING RICHARD III:\nMy father's death--\n\nQUEEN ELIZABETH:\nThy life hath that dishonour'd.\n\nKING RICHARD III:\nThen, by myself--\n\nQUEEN ELIZABETH:\nThyself thyself misusest.\n\nKING RICHARD III:\nWhy then, by God--\n\nQUEEN ELIZABETH:\nGod's wrong is most of all.\nIf thou hadst fear'd to break an oath by Him,\nThe unity the king thy brother made\nHad not been broken, nor my brother slain:\nIf thou hadst fear'd to break an oath by Him,\nThe imperial metal, circling now thy brow,\nHad graced the tender temples of my child,\nAnd both the princes had been breathing here,\nWhich now, two tender playfellows to dust,\nThy broken faith hath made a prey for worms.\nWhat canst thou swear by now?\n\nKING RICHARD III:\nThe time to come.\n\nQUEEN ELIZABETH:\nThat thou hast wronged in the time o'erpast;\nFor I myself have many tears to wash\nHereafter time, for time past wrong'd by thee.\nThe children live, whose parents thou hast\nslaughter'd,\nUngovern'd youth, to wail it in their age;\nThe parents live, whose children thou hast butcher'd,\nOld wither'd plants, to wail it with their age.\nSwear not by time to come; for that thou hast\nMisused ere used, by time misused o'erpast.\n\nKING RICHARD III:\nAs I intend to prosper and repent,\nSo thrive I in my dangerous attempt\nOf hostile arms! myself myself confound!\nHeaven and fortune bar me happy hours!\nDay, yield me not thy light; nor, night, thy rest!\nBe opposite all planets of good luck\nTo my proceedings, if, with pure heart's love,\nImmaculate devotion, holy thoughts,\nI tender not thy beauteous princely daughter!\nIn her consists my happiness and thine;\nWithout her, follows to this land and me,\nTo thee, herself, and many a Christian soul,\nDeath, desolation, ruin and decay:\nIt cannot be avoided but by this;\nIt will not be avoided but by this.\nTherefore, good mother,--I must can you so--\nBe the attorney of my love to her:\nPlead what I will be, not what I have been;\nNot my deserts, but what I will deserve:\nUrge the necessity and state of times,\nAnd be not peevish-fond in great designs.\n\nQUEEN ELIZABETH:\nShall I be tempted of the devil thus?\n\nKING RICHARD III:\nAy, if the devil tempt thee to do good.\n\nQUEEN ELIZABETH:\nShall I forget myself to be myself?\n\nKING RICHARD III:\nAy, if yourself's remembrance wrong yourself.\n\nQUEEN ELIZABETH:\nBut thou didst kill my children.\n\nKING RICHARD III:\nBut in your daughter's womb I bury them:\nWhere in that nest of spicery they shall breed\nSelves of themselves, to your recomforture.\n\nQUEEN ELIZABETH:\nShall I go win my daughter to thy will?\n\nKING RICHARD III:\nAnd be a happy mother by the deed.\n\nQUEEN ELIZABETH:\nI go. Write to me very shortly.\nAnd you shall understand from me her mind.\n\nKING RICHARD III:\nBear her my true love's kiss; and so, farewell.\nRelenting fool, and shallow, changing woman!\nHow now! what news?\n\nRATCLIFF:\nMy gracious sovereign, on the western coast\nRideth a puissant navy; to the shore\nThrong many doubtful hollow-hearted friends,\nUnarm'd, and unresolved to beat them back:\n'Tis thought that Richmond is their admiral;\nAnd there they hull, expecting but the aid\nOf Buckingham to welcome them ashore.\n\nKING RICHARD III:\nSome light-foot friend post to the Duke of Norfolk:\nRatcliff, thyself, or Catesby; where is he?\n\nCATESBY:\nHere, my lord.\n\nKING RICHARD III:\nFly to the duke:\nPost thou to Salisbury\nWhen thou comest thither--\nDull, unmindful villain,\nWhy stand'st thou still, and go'st not to the duke?\n\nCATESBY:\nFirst, mighty sovereign, let me know your mind,\nWhat from your grace I shall deliver to him.\n\nKING RICHARD III:\nO, true, good Catesby: bid him levy straight\nThe greatest strength and power he can make,\nAnd meet me presently at Salisbury.\n\nCATESBY:\nI go.\n\nRATCLIFF:\nWhat is't your highness' pleasure I shall do at\nSalisbury?\n\nKING RICHARD III:\nWhy, what wouldst thou do there before I go?\n\nRATCLIFF:\nYour highness told me I should post before.\n\nKING RICHARD III:\nMy mind is changed, sir, my mind is changed.\nHow now, what news with you?\n\nSTANLEY:\nNone good, my lord, to please you with the hearing;\nNor none so bad, but it may well be told.\n\nKING RICHARD III:\nHoyday, a riddle! neither good nor bad!\nWhy dost thou run so many mile about,\nWhen thou mayst tell thy tale a nearer way?\nOnce more, what news?\n\nSTANLEY:\nRichmond is on the seas.\n\nKING RICHARD III:\nThere let him sink, and be the seas on him!\nWhite-liver'd runagate, what doth he there?\n\nSTANLEY:\nI know not, mighty sovereign, but by guess.\n\nKING RICHARD III:\nWell, sir, as you guess, as you guess?\n\nSTANLEY:\nStirr'd up by Dorset, Buckingham, and Ely,\nHe makes for England, there to claim the crown.\n\nKING RICHARD III:\nIs the chair empty? is the sword unsway'd?\nIs the king dead? the empire unpossess'd?\nWhat heir of York is there alive but we?\nAnd who is England's king but great York's heir?\nThen, tell me, what doth he upon the sea?\n\nSTANLEY:\nUnless for that, my liege, I cannot guess.\n\nKING RICHARD III:\nUnless for that he comes to be your liege,\nYou cannot guess wherefore the Welshman comes.\nThou wilt revolt, and fly to him, I fear.\n\nSTANLEY:\nNo, mighty liege; therefore mistrust me not.\n\nKING RICHARD III:\nWhere is thy power, then, to beat him back?\nWhere are thy tenants and thy followers?\nAre they not now upon the western shore.\nSafe-conducting the rebels from their ships!\n\nSTANLEY:\nNo, my good lord, my friends are in the north.\n\nKING RICHARD III:\nCold friends to Richard: what do they in the north,\nWhen they should serve their sovereign in the west?\n\nSTANLEY:\nThey have not been commanded, mighty sovereign:\nPlease it your majesty to give me leave,\nI'll muster up my friends, and meet your grace\nWhere and what time your majesty shall please.\n\nKING RICHARD III:\nAy, ay. thou wouldst be gone to join with Richmond:\nI will not trust you, sir.\n\nSTANLEY:\nMost mighty sovereign,\nYou have no cause to hold my friendship doubtful:\nI never was nor never will be false.\n\nKING RICHARD III:\nWell,\nGo muster men; but, hear you, leave behind\nYour son, George Stanley: look your faith be firm.\nOr else his head's assurance is but frail.\n\nSTANLEY:\nSo deal with him as I prove true to you.\n\nMessenger:\nMy gracious sovereign, now in Devonshire,\nAs I by friends am well advertised,\nSir Edward Courtney, and the haughty prelate\nBishop of Exeter, his brother there,\nWith many more confederates, are in arms.\n\nSecond Messenger:\nMy liege, in Kent the Guildfords are in arms;\nAnd every hour more competitors\nFlock to their aid, and still their power increaseth.\n\nThird Messenger:\nMy lord, the army of the Duke of Buckingham--\n\nKING RICHARD III:\nOut on you, owls! nothing but songs of death?\nTake that, until thou bring me better news.\n\nThird Messenger:\nThe news I have to tell your majesty\nIs, that by sudden floods and fall of waters,\nBuckingham's army is dispersed and scatter'd;\nAnd he himself wander'd away alone,\nNo man knows whither.\n\nKING RICHARD III:\nI cry thee mercy:\nThere is my purse to cure that blow of thine.\nHath any well-advised friend proclaim'd\nReward to him that brings the traitor in?\n\nThird Messenger:\nSuch proclamation hath been made, my liege.\n\nFourth Messenger:\nSir Thomas Lovel and Lord Marquis Dorset,\n'Tis said, my liege, in Yorkshire are in arms.\nYet this good comfort bring I to your grace,\nThe Breton navy is dispersed by tempest:\nRichmond, in Yorkshire, sent out a boat\nUnto the shore, to ask those on the banks\nIf they were his assistants, yea or no;\nWho answer'd him, they came from Buckingham.\nUpon his party: he, mistrusting them,\nHoisted sail and made away for Brittany.\n\nKING RICHARD III:\nMarch on, march on, since we are up in arms;\nIf not to fight with foreign enemies,\nYet to beat down these rebels here at home.\n\nCATESBY:\nMy liege, the Duke of Buckingham is taken;\nThat is the best news: that the Earl of Richmond\nIs with a mighty power landed at Milford,\nIs colder tidings, yet they must be told.\n\nKING RICHARD III:\nAway towards Salisbury! while we reason here,\nA royal battle might be won and lost\nSome one take order Buckingham be brought\nTo Salisbury; the rest march on with me.\n\nDERBY:\nSir Christopher, tell Richmond this from me:\nThat in the sty of this most bloody boar\nMy son George Stanley is frank'd up in hold:\nIf I revolt, off goes young George's head;\nThe fear of that withholds my present aid.\nBut, tell me, where is princely Richmond now?\n\nCHRISTOPHER:\nAt Pembroke, or at Harford-west, in Wales.\n\nDERBY:\nWhat men of name resort to him?\n\nCHRISTOPHER:\nSir Walter Herbert, a renowned soldier;\nSir Gilbert Talbot, Sir William Stanley;\nOxford, redoubted Pembroke, Sir James Blunt,\nAnd Rice ap Thomas with a valiant crew;\nAnd many more of noble fame and worth:\nAnd towards London they do bend their course,\nIf by the way they be not fought withal.\n\nDERBY:\nReturn unto thy lord; commend me to him:\nTell him the queen hath heartily consented\nHe shall espouse Elizabeth her daughter.\nThese letters will resolve him of my mind. Farewell.\n\nBUCKINGHAM:\nWill not King Richard let me speak with him?\n\nSheriff:\nNo, my good lord; therefore be patient.\n\nBUCKINGHAM:\nHastings, and Edward's children, Rivers, Grey,\nHoly King Henry, and thy fair son Edward,\nVaughan, and all that have miscarried\nBy underhand corrupted foul injustice,\nIf that your moody discontented souls\nDo through the clouds behold this present hour,\nEven for revenge mock my destruction!\nThis is All-Souls' day, fellows, is it not?\n\nSheriff:\nIt is, my lord.\n\nBUCKINGHAM:\nWhy, then All-Souls' day is my body's doomsday.\nThis is the day that, in King Edward's time,\nI wish't might fall on me, when I was found\nFalse to his children or his wife's allies\nThis is the day wherein I wish'd to fall\nBy the false faith of him I trusted most;\nThis, this All-Souls' day to my fearful soul\nIs the determined respite of my wrongs:\nThat high All-Seer that I dallied with\nHath turn'd my feigned prayer on my head\nAnd given in earnest what I begg'd in jest.\nThus doth he force the swords of wicked men\nTo turn their own points on their masters' bosoms:\nNow Margaret's curse is fallen upon my head;\n'When he,' quoth she, 'shall split thy heart with sorrow,\nRemember Margaret was a prophetess.'\nCome, sirs, convey me to the block of shame;\nWrong hath but wrong, and blame the due of blame.\n\nRICHMOND:\nFellows in arms, and my most loving friends,\nBruised underneath the yoke of tyranny,\nThus far into the bowels of the land\nHave we march'd on without impediment;\nAnd here receive we from our father Stanley\nLines of fair comfort and encouragement.\nThe wretched, bloody, and usurping boar,\nThat spoil'd your summer fields and fruitful vines,\nSwills your warm blood like wash, and makes his trough\nIn your embowell'd bosoms, this foul swine\nLies now even in the centre of this isle,\nNear to the town of Leicester, as we learn\nFrom Tamworth thither is but one day's march.\nIn God's name, cheerly on, courageous friends,\nTo reap the harvest of perpetual peace\nBy this one bloody trial of sharp war.\n\nOXFORD:\nEvery man's conscience is a thousand swords,\nTo fight against that bloody homicide.\n\nHERBERT:\nI doubt not but his friends will fly to us.\n\nBLUNT:\nHe hath no friends but who are friends for fear.\nWhich in his greatest need will shrink from him.\n\nRICHMOND:\nAll for our vantage. Then, in God's name, march:\nTrue hope is swift, and flies with swallow's wings:\nKings it makes gods, and meaner creatures kings.\n\nKING RICHARD III:\nHere pitch our tents, even here in Bosworth field.\nMy Lord of Surrey, why look you so sad?\n\nSURREY:\nMy heart is ten times lighter than my looks.\n\nKING RICHARD III:\nMy Lord of Norfolk,--\n\nNORFOLK:\nHere, most gracious liege.\n\nKING RICHARD III:\nNorfolk, we must have knocks; ha! must we not?\n\nNORFOLK:\nWe must both give and take, my gracious lord.\n\nKING RICHARD III:\nUp with my tent there! here will I lie tonight;\nBut where to-morrow?  Well, all's one for that.\nWho hath descried the number of the foe?\n\nNORFOLK:\nSix or seven thousand is their utmost power.\n\nKING RICHARD III:\nWhy, our battalion trebles that account:\nBesides, the king's name is a tower of strength,\nWhich they upon the adverse party want.\nUp with my tent there! Valiant gentlemen,\nLet us survey the vantage of the field\nCall for some men of sound direction\nLet's want no discipline, make no delay,\nFor, lords, to-morrow is a busy day.\n\nRICHMOND:\nThe weary sun hath made a golden set,\nAnd by the bright track of his fiery car,\nGives signal, of a goodly day to-morrow.\nSir William Brandon, you shall bear my standard.\nGive me some ink and paper in my tent\nI'll draw the form and model of our battle,\nLimit each leader to his several charge,\nAnd part in just proportion our small strength.\nMy Lord of Oxford, you, Sir William Brandon,\nAnd you, Sir Walter Herbert, stay with me.\nThe Earl of Pembroke keeps his regiment:\nGood Captain Blunt, bear my good night to him\nAnd by the second hour in the morning\nDesire the earl to see me in my tent:\nYet one thing more, good Blunt, before thou go'st,\nWhere is Lord Stanley quarter'd, dost thou know?\n\nBLUNT:\nUnless I have mista'en his colours much,\nWhich well I am assured I have not done,\nHis regiment lies half a mile at least\nSouth from the mighty power of the king.\n\nRICHMOND:\nIf without peril it be possible,\nGood Captain Blunt, bear my good-night to him,\nAnd give him from me this most needful scroll.\n\nBLUNT:\nUpon my life, my lord, I'll under-take it;\nAnd so, God give you quiet rest to-night!\n\nRICHMOND:\nGood night, good Captain Blunt. Come gentlemen,\nLet us consult upon to-morrow's business\nIn to our tent; the air is raw and cold.\n\nKING RICHARD III:\nWhat is't o'clock?\n\nCATESBY:\nIt's supper-time, my lord;\nIt's nine o'clock.\n\nKING RICHARD III:\nI will not sup to-night.\nGive me some ink and paper.\nWhat, is my beaver easier than it was?\nAnd all my armour laid into my tent?\n\nCATESBY:\nIf is, my liege; and all things are in readiness.\n\nKING RICHARD III:\nGood Norfolk, hie thee to thy charge;\nUse careful watch, choose trusty sentinels.\n\nNORFOLK:\nI go, my lord.\n\nKING RICHARD III:\nStir with the lark to-morrow, gentle Norfolk.\n\nNORFOLK:\nI warrant you, my lord.\n\nKING RICHARD III:\nCatesby!\n\nCATESBY:\nMy lord?\n\nKING RICHARD III:\nSend out a pursuivant at arms\nTo Stanley's regiment; bid him bring his power\nBefore sunrising, lest his son George fall\nInto the blind cave of eternal night.\nFill me a bowl of wine. Give me a watch.\nSaddle white Surrey for the field to-morrow.\nLook that my staves be sound, and not too heavy.\nRatcliff!\n\nRATCLIFF:\nMy lord?\n\nKING RICHARD III:\nSaw'st thou the melancholy Lord Northumberland?\n\nRATCLIFF:\nThomas the Earl of Surrey, and himself,\nMuch about cock-shut time, from troop to troop\nWent through the army, cheering up the soldiers.\n\nKING RICHARD III:\nSo, I am satisfied. Give me a bowl of wine:\nI have not that alacrity of spirit,\nNor cheer of mind, that I was wont to have.\nSet it down. Is ink and paper ready?\n\nRATCLIFF:\nIt is, my lord.\n\nKING RICHARD III:\nBid my guard watch; leave me.\nRatcliff, about the mid of night come to my tent\nAnd help to arm me. Leave me, I say.\n\nDERBY:\nFortune and victory sit on thy helm!\n\nRICHMOND:\nAll comfort that the dark night can afford\nBe to thy person, noble father-in-law!\nTell me, how fares our loving mother?\n\nDERBY:\nI, by attorney, bless thee from thy mother\nWho prays continually for Richmond's good:\nSo much for that. The silent hours steal on,\nAnd flaky darkness breaks within the east.\nIn brief,--for so the season bids us be,--\nPrepare thy battle early in the morning,\nAnd put thy fortune to the arbitrement\nOf bloody strokes and mortal-staring war.\nI, as I may--that which I would I cannot,--\nWith best advantage will deceive the time,\nAnd aid thee in this doubtful shock of arms:\nBut on thy side I may not be too forward\nLest, being seen, thy brother, tender George,\nBe executed in his father's sight.\nFarewell: the leisure and the fearful time\nCuts off the ceremonious vows of love\nAnd ample interchange of sweet discourse,\nWhich so long sunder'd friends should dwell upon:\nGod give us leisure for these rites of love!\nOnce more, adieu: be valiant, and speed well!\n\nRICHMOND:\nGood lords, conduct him to his regiment:\nI'll strive, with troubled thoughts, to take a nap,\nLest leaden slumber peise me down to-morrow,\nWhen I should mount with wings of victory:\nOnce more, good night, kind lords and gentlemen.\nO Thou, whose captain I account myself,\nLook on my forces with a gracious eye;\nPut in their hands thy bruising irons of wrath,\nThat they may crush down with a heavy fall\nThe usurping helmets of our adversaries!\nMake us thy ministers of chastisement,\nThat we may praise thee in the victory!\nTo thee I do commend my watchful soul,\nEre I let fall the windows of mine eyes:\nSleeping and waking, O, defend me still!\n\nGhost of Prince Edward:\n\nGhost of King Henry VI:\n\nGhost of CLARENCE:\n\nGhost of RIVERS:\n\nGhost of GREY:\n\nGhost of VAUGHAN:\n\nAll:\n\nGhost of HASTINGS:\n\nGhosts of young Princes:\n\nGhost of LADY ANNE:\n\nGhost of BUCKINGHAM:\n\nKING RICHARD III:\nGive me another horse: bind up my wounds.\nHave mercy, Jesu!--Soft! I did but dream.\nO coward conscience, how dost thou afflict me!\nThe lights burn blue. It is now dead midnight.\nCold fearful drops stand on my trembling flesh.\nWhat do I fear?  myself?  there's none else by:\nRichard loves Richard; that is, I am I.\nIs there a murderer here?  No. Yes, I am:\nThen fly. What, from myself?   Great reason why:\nLest I revenge. What, myself upon myself?\nAlack. I love myself. Wherefore?  for any good\nThat I myself have done unto myself?\nO, no! alas, I rather hate myself\nFor hateful deeds committed by myself!\nI am a villain: yet I lie. I am not.\nFool, of thyself speak well: fool, do not flatter.\nMy conscience hath a thousand several tongues,\nAnd every tongue brings in a several tale,\nAnd every tale condemns me for a villain.\nPerjury, perjury, in the high'st degree\nMurder, stem murder, in the direst degree;\nAll several sins, all used in each degree,\nThrong to the bar, crying all, Guilty! guilty!\nI shall despair. There is no creature loves me;\nAnd if I die, no soul shall pity me:\nNay, wherefore should they, since that I myself\nFind in myself no pity to myself?\nMethought the souls of all that I had murder'd\nCame to my tent; and every one did threat\nTo-morrow's vengeance on the head of Richard.\n\nRATCLIFF:\nMy lord!\n\nKING RICHARD III:\n'Zounds! who is there?\n\nRATCLIFF:\nRatcliff, my lord; 'tis I. The early village-cock\nHath twice done salutation to the morn;\nYour friends are up, and buckle on their armour.\n\nKING RICHARD III:\nO Ratcliff, I have dream'd a fearful dream!\nWhat thinkest thou, will our friends prove all true?\n\nRATCLIFF:\nNo doubt, my lord.\n\nKING RICHARD III:\nO Ratcliff, I fear, I fear,--\n\nRATCLIFF:\nNay, good my lord, be not afraid of shadows.\n\nKING RICHARD III:\nBy the apostle Paul, shadows to-night\nHave struck more terror to the soul of Richard\nThan can the substance of ten thousand soldiers\nArmed in proof, and led by shallow Richmond.\nIt is not yet near day. Come, go with me;\nUnder our tents I'll play the eaves-dropper,\nTo see if any mean to shrink from me.\n\nLORDS:\nGood morrow, Richmond!\n\nRICHMOND:\nCry mercy, lords and watchful gentlemen,\nThat you have ta'en a tardy sluggard here.\n\nLORDS:\nHow have you slept, my lord?\n\nRICHMOND:\nThe sweetest sleep, and fairest-boding dreams\nThat ever enter'd in a drowsy head,\nHave I since your departure had, my lords.\nMethought their souls, whose bodies Richard murder'd,\nCame to my tent, and cried on victory:\nI promise you, my soul is very jocund\nIn the remembrance of so fair a dream.\nHow far into the morning is it, lords?\n\nLORDS:\nUpon the stroke of four.\n\nRICHMOND:\nWhy, then 'tis time to arm and give direction.\nMore than I have said, loving countrymen,\nThe leisure and enforcement of the time\nForbids to dwell upon: yet remember this,\nGod and our good cause fight upon our side;\nThe prayers of holy saints and wronged souls,\nLike high-rear'd bulwarks, stand before our faces;\nRichard except, those whom we fight against\nHad rather have us win than him they follow:\nFor what is he they follow?  truly, gentlemen,\nA bloody tyrant and a homicide;\nOne raised in blood, and one in blood establish'd;\nOne that made means to come by what he hath,\nAnd slaughter'd those that were the means to help him;\nAbase foul stone, made precious by the foil\nOf England's chair, where he is falsely set;\nOne that hath ever been God's enemy:\nThen, if you fight against God's enemy,\nGod will in justice ward you as his soldiers;\nIf you do sweat to put a tyrant down,\nYou sleep in peace, the tyrant being slain;\nIf you do fight against your country's foes,\nYour country's fat shall pay your pains the hire;\nIf you do fight in safeguard of your wives,\nYour wives shall welcome home the conquerors;\nIf you do free your children from the sword,\nYour children's children quit it in your age.\nThen, in the name of God and all these rights,\nAdvance your standards, draw your willing swords.\nFor me, the ransom of my bold attempt\nShall be this cold corpse on the earth's cold face;\nBut if I thrive, the gain of my attempt\nThe least of you shall share his part thereof.\nSound drums and trumpets boldly and cheerfully;\nGod and Saint George! Richmond and victory!\n\nKING RICHARD III:\nWhat said Northumberland as touching Richmond?\n\nRATCLIFF:\nThat he was never trained up in arms.\n\nKING RICHARD III:\nHe said the truth: and what said Surrey then?\n\nRATCLIFF:\nHe smiled and said 'The better for our purpose.'\n\nKING RICHARD III:\nHe was in the right; and so indeed it is.\nTen the clock there. Give me a calendar.\nWho saw the sun to-day?\n\nRATCLIFF:\nNot I, my lord.\n\nKING RICHARD III:\nThen he disdains to shine; for by the book\nHe should have braved the east an hour ago\nA black day will it be to somebody. Ratcliff!\n\nRATCLIFF:\nMy lord?\n\nKING RICHARD III:\nThe sun will not be seen to-day;\nThe sky doth frown and lour upon our army.\nI would these dewy tears were from the ground.\nNot shine to-day! Why, what is that to me\nMore than to Richmond?  for the selfsame heaven\nThat frowns on me looks sadly upon him.\n\nNORFOLK:\nArm, arm, my lord; the foe vaunts in the field.\n\nKING RICHARD III:\nCome, bustle, bustle; caparison my horse.\nCall up Lord Stanley, bid him bring his power:\nI will lead forth my soldiers to the plain,\nAnd thus my battle shall be ordered:\nMy foreward shall be drawn out all in length,\nConsisting equally of horse and foot;\nOur archers shall be placed in the midst\nJohn Duke of Norfolk, Thomas Earl of Surrey,\nShall have the leading of this foot and horse.\nThey thus directed, we will follow\nIn the main battle, whose puissance on either side\nShall be well winged with our chiefest horse.\nThis, and Saint George to boot! What think'st thou, Norfolk?\n\nNORFOLK:\nA good direction, warlike sovereign.\nThis found I on my tent this morning.\n\nKING RICHARD III:\n\nMessenger:\nMy lord, he doth deny to come.\n\nKING RICHARD III:\nOff with his son George's head!\n\nNORFOLK:\nMy lord, the enemy is past the marsh\nAfter the battle let George Stanley die.\n\nKING RICHARD III:\nA thousand hearts are great within my bosom:\nAdvance our standards, set upon our foes\nOur ancient word of courage, fair Saint George,\nInspire us with the spleen of fiery dragons!\nUpon them! victory sits on our helms.\n\nCATESBY:\nRescue, my Lord of Norfolk, rescue, rescue!\nThe king enacts more wonders than a man,\nDaring an opposite to every danger:\nHis horse is slain, and all on foot he fights,\nSeeking for Richmond in the throat of death.\nRescue, fair lord, or else the day is lost!\n\nKING RICHARD III:\nA horse! a horse! my kingdom for a horse!\n\nCATESBY:\nWithdraw, my lord; I'll help you to a horse.\n\nKING RICHARD III:\nSlave, I have set my life upon a cast,\nAnd I will stand the hazard of the die:\nI think there be six Richmonds in the field;\nFive have I slain to-day instead of him.\nA horse! a horse! my kingdom for a horse!\n\nRICHMOND:\nGod and your arms be praised, victorious friends,\nThe day is ours, the bloody dog is dead.\n\nDERBY:\nCourageous Richmond, well hast thou acquit thee.\nLo, here, this long-usurped royalty\nFrom the dead temples of this bloody wretch\nHave I pluck'd off, to grace thy brows withal:\nWear it, enjoy it, and make much of it.\n\nRICHMOND:\nGreat God of heaven, say Amen to all!\nBut, tell me, is young George Stanley living?\n\nDERBY:\nHe is, my lord, and safe in Leicester town;\nWhither, if it please you, we may now withdraw us.\n\nRICHMOND:\nWhat men of name are slain on either side?\n\nDERBY:\nJohn Duke of Norfolk, Walter Lord Ferrers,\nSir Robert Brakenbury, and Sir William Brandon.\n\nRICHMOND:\nInter their bodies as becomes their births:\nProclaim a pardon to the soldiers fled\nThat in submission will return to us:\nAnd then, as we have ta'en the sacrament,\nWe will unite the white rose and the red:\nSmile heaven upon this fair conjunction,\nThat long have frown'd upon their enmity!\nWhat traitor hears me, and says not amen?\nEngland hath long been mad, and scarr'd herself;\nThe brother blindly shed the brother's blood,\nThe father rashly slaughter'd his own son,\nThe son, compell'd, been butcher to the sire:\nAll this divided York and Lancaster,\nDivided in their dire division,\nO, now, let Richmond and Elizabeth,\nThe true succeeders of each royal house,\nBy God's fair ordinance conjoin together!\nAnd let their heirs, God, if thy will be so.\nEnrich the time to come with smooth-faced peace,\nWith smiling plenty and fair prosperous days!\nAbate the edge of traitors, gracious Lord,\nThat would reduce these bloody days again,\nAnd make poor England weep in streams of blood!\nLet them not live to taste this land's increase\nThat would with treason wound this fair land's peace!\nNow civil wounds are stopp'd, peace lives again:\nThat she may long live here, God say amen!\n\nKING RICHARD II:\nOld John of Gaunt, time-honour'd Lancaster,\nHast thou, according to thy oath and band,\nBrought hither Henry Hereford thy bold son,\nHere to make good the boisterous late appeal,\nWhich then our leisure would not let us hear,\nAgainst the Duke of Norfolk, Thomas Mowbray?\n\nJOHN OF GAUNT:\nI have, my liege.\n\nKING RICHARD II:\nTell me, moreover, hast thou sounded him,\nIf he appeal the duke on ancient malice;\nOr worthily, as a good subject should,\nOn some known ground of treachery in him?\n\nJOHN OF GAUNT:\nAs near as I could sift him on that argument,\nOn some apparent danger seen in him\nAim'd at your highness, no inveterate malice.\n\nKING RICHARD II:\nThen call them to our presence; face to face,\nAnd frowning brow to brow, ourselves will hear\nThe accuser and the accused freely speak:\nHigh-stomach'd are they both, and full of ire,\nIn rage deaf as the sea, hasty as fire.\n\nHENRY BOLINGBROKE:\nMany years of happy days befal\nMy gracious sovereign, my most loving liege!\n\nTHOMAS MOWBRAY:\nEach day still better other's happiness;\nUntil the heavens, envying earth's good hap,\nAdd an immortal title to your crown!\n\nKING RICHARD II:\nWe thank you both: yet one but flatters us,\nAs well appeareth by the cause you come;\nNamely to appeal each other of high treason.\nCousin of Hereford, what dost thou object\nAgainst the Duke of Norfolk, Thomas Mowbray?\n\nHENRY BOLINGBROKE:\nFirst, heaven be the record to my speech!\nIn the devotion of a subject's love,\nTendering the precious safety of my prince,\nAnd free from other misbegotten hate,\nCome I appellant to this princely presence.\nNow, Thomas Mowbray, do I turn to thee,\nAnd mark my greeting well; for what I speak\nMy body shall make good upon this earth,\nOr my divine soul answer it in heaven.\nThou art a traitor and a miscreant,\nToo good to be so and too bad to live,\nSince the more fair and crystal is the sky,\nThe uglier seem the clouds that in it fly.\nOnce more, the more to aggravate the note,\nWith a foul traitor's name stuff I thy throat;\nAnd wish, so please my sovereign, ere I move,\nWhat my tongue speaks my right drawn sword may prove.\n\nTHOMAS MOWBRAY:\nLet not my cold words here accuse my zeal:\n'Tis not the trial of a woman's war,\nThe bitter clamour of two eager tongues,\nCan arbitrate this cause betwixt us twain;\nThe blood is hot that must be cool'd for this:\nYet can I not of such tame patience boast\nAs to be hush'd and nought at all to say:\nFirst, the fair reverence of your highness curbs me\nFrom giving reins and spurs to my free speech;\nWhich else would post until it had return'd\nThese terms of treason doubled down his throat.\nSetting aside his high blood's royalty,\nAnd let him be no kinsman to my liege,\nI do defy him, and I spit at him;\nCall him a slanderous coward and a villain:\nWhich to maintain I would allow him odds,\nAnd meet him, were I tied to run afoot\nEven to the frozen ridges of the Alps,\nOr any other ground inhabitable,\nWhere ever Englishman durst set his foot.\nMean time let this defend my loyalty,\nBy all my hopes, most falsely doth he lie.\n\nHENRY BOLINGBROKE:\nPale trembling coward, there I throw my gage,\nDisclaiming here the kindred of the king,\nAnd lay aside my high blood's royalty,\nWhich fear, not reverence, makes thee to except.\nIf guilty dread have left thee so much strength\nAs to take up mine honour's pawn, then stoop:\nBy that and all the rites of knighthood else,\nWill I make good against thee, arm to arm,\nWhat I have spoke, or thou canst worse devise.\n\nTHOMAS MOWBRAY:\nI take it up; and by that sword I swear\nWhich gently laid my knighthood on my shoulder,\nI'll answer thee in any fair degree,\nOr chivalrous design of knightly trial:\nAnd when I mount, alive may I not light,\nIf I be traitor or unjustly fight!\n\nKING RICHARD II:\nWhat doth our cousin lay to Mowbray's charge?\nIt must be great that can inherit us\nSo much as of a thought of ill in him.\n\nHENRY BOLINGBROKE:\nLook, what I speak, my life shall prove it true;\nThat Mowbray hath received eight thousand nobles\nIn name of lendings for your highness' soldiers,\nThe which he hath detain'd for lewd employments,\nLike a false traitor and injurious villain.\nBesides I say and will in battle prove,\nOr here or elsewhere to the furthest verge\nThat ever was survey'd by English eye,\nThat all the treasons for these eighteen years\nComplotted and contrived in this land\nFetch from false Mowbray their first head and spring.\nFurther I say and further will maintain\nUpon his bad life to make all this good,\nThat he did plot the Duke of Gloucester's death,\nSuggest his soon-believing adversaries,\nAnd consequently, like a traitor coward,\nSluiced out his innocent soul through streams of blood:\nWhich blood, like sacrificing Abel's, cries,\nEven from the tongueless caverns of the earth,\nTo me for justice and rough chastisement;\nAnd, by the glorious worth of my descent,\nThis arm shall do it, or this life be spent.\n\nKING RICHARD II:\nHow high a pitch his resolution soars!\nThomas of Norfolk, what say'st thou to this?\n\nTHOMAS MOWBRAY:\nO, let my sovereign turn away his face\nAnd bid his ears a little while be deaf,\nTill I have told this slander of his blood,\nHow God and good men hate so foul a liar.\n\nKING RICHARD II:\nMowbray, impartial are our eyes and ears:\nWere he my brother, nay, my kingdom's heir,\nAs he is but my father's brother's son,\nNow, by my sceptre's awe, I make a vow,\nSuch neighbour nearness to our sacred blood\nShould nothing privilege him, nor partialize\nThe unstooping firmness of my upright soul:\nHe is our subject, Mowbray; so art thou:\nFree speech and fearless I to thee allow.\n\nTHOMAS MOWBRAY:\nThen, Bolingbroke, as low as to thy heart,\nThrough the false passage of thy throat, thou liest.\nThree parts of that receipt I had for Calais\nDisbursed I duly to his highness' soldiers;\nThe other part reserved I by consent,\nFor that my sovereign liege was in my debt\nUpon remainder of a dear account,\nSince last I went to France to fetch his queen:\nNow swallow down that lie. For Gloucester's death,\nI slew him not; but to my own disgrace\nNeglected my sworn duty in that case.\nFor you, my noble Lord of Lancaster,\nThe honourable father to my foe\nOnce did I lay an ambush for your life,\nA trespass that doth vex my grieved soul\nBut ere I last received the sacrament\nI did confess it, and exactly begg'd\nYour grace's pardon, and I hope I had it.\nThis is my fault: as for the rest appeall'd,\nIt issues from the rancour of a villain,\nA recreant and most degenerate traitor\nWhich in myself I boldly will defend;\nAnd interchangeably hurl down my gage\nUpon this overweening traitor's foot,\nTo prove myself a loyal gentleman\nEven in the best blood chamber'd in his bosom.\nIn haste whereof, most heartily I pray\nYour highness to assign our trial day.\n\nKING RICHARD II:\nWrath-kindled gentlemen, be ruled by me;\nLet's purge this choler without letting blood:\nThis we prescribe, though no physician;\nDeep malice makes too deep incision;\nForget, forgive; conclude and be agreed;\nOur doctors say this is no month to bleed.\nGood uncle, let this end where it begun;\nWe'll calm the Duke of Norfolk, you your son.\n\nJOHN OF GAUNT:\nTo be a make-peace shall become my age:\nThrow down, my son, the Duke of Norfolk's gage.\n\nKING RICHARD II:\nAnd, Norfolk, throw down his.\n\nJOHN OF GAUNT:\nWhen, Harry, when?\nObedience bids I should not bid again.\n\nKING RICHARD II:\nNorfolk, throw down, we bid; there is no boot.\n\nTHOMAS MOWBRAY:\nMyself I throw, dread sovereign, at thy foot.\nMy life thou shalt command, but not my shame:\nThe one my duty owes; but my fair name,\nDespite of death that lives upon my grave,\nTo dark dishonour's use thou shalt not have.\nI am disgraced, impeach'd and baffled here,\nPierced to the soul with slander's venom'd spear,\nThe which no balm can cure but his heart-blood\nWhich breathed this poison.\n\nKING RICHARD II:\nRage must be withstood:\nGive me his gage: lions make leopards tame.\n\nTHOMAS MOWBRAY:\nYea, but not change his spots: take but my shame.\nAnd I resign my gage. My dear dear lord,\nThe purest treasure mortal times afford\nIs spotless reputation: that away,\nMen are but gilded loam or painted clay.\nA jewel in a ten-times-barr'd-up chest\nIs a bold spirit in a loyal breast.\nMine honour is my life; both grow in one:\nTake honour from me, and my life is done:\nThen, dear my liege, mine honour let me try;\nIn that I live and for that will I die.\n\nKING RICHARD II:\nCousin, throw up your gage; do you begin.\n\nHENRY BOLINGBROKE:\nO, God defend my soul from such deep sin!\nShall I seem crest-fall'n in my father's sight?\nOr with pale beggar-fear impeach my height\nBefore this out-dared dastard? Ere my tongue\nShall wound my honour with such feeble wrong,\nOr sound so base a parle, my teeth shall tear\nThe slavish motive of recanting fear,\nAnd spit it bleeding in his high disgrace,\nWhere shame doth harbour, even in Mowbray's face.\n\nKING RICHARD II:\nWe were not born to sue, but to command;\nWhich since we cannot do to make you friends,\nBe ready, as your lives shall answer it,\nAt Coventry, upon Saint Lambert's day:\nThere shall your swords and lances arbitrate\nThe swelling difference of your settled hate:\nSince we can not atone you, we shall see\nJustice design the victor's chivalry.\nLord marshal, command our officers at arms\nBe ready to direct these home alarms.\n\nJOHN OF GAUNT:\nAlas, the part I had in Woodstock's blood\nDoth more solicit me than your exclaims,\nTo stir against the butchers of his life!\nBut since correction lieth in those hands\nWhich made the fault that we cannot correct,\nPut we our quarrel to the will of heaven;\nWho, when they see the hours ripe on earth,\nWill rain hot vengeance on offenders' heads.\n\nDUCHESS:\nFinds brotherhood in thee no sharper spur?\nHath love in thy old blood no living fire?\nEdward's seven sons, whereof thyself art one,\nWere as seven vials of his sacred blood,\nOr seven fair branches springing from one root:\nSome of those seven are dried by nature's course,\nSome of those branches by the Destinies cut;\nBut Thomas, my dear lord, my life, my Gloucester,\nOne vial full of Edward's sacred blood,\nOne flourishing branch of his most royal root,\nIs crack'd, and all the precious liquor spilt,\nIs hack'd down, and his summer leaves all faded,\nBy envy's hand and murder's bloody axe.\nAh, Gaunt, his blood was thine! that bed, that womb,\nThat metal, that self-mould, that fashion'd thee\nMade him a man; and though thou livest and breathest,\nYet art thou slain in him: thou dost consent\nIn some large measure to thy father's death,\nIn that thou seest thy wretched brother die,\nWho was the model of thy father's life.\nCall it not patience, Gaunt; it is despair:\nIn suffering thus thy brother to be slaughter'd,\nThou showest the naked pathway to thy life,\nTeaching stern murder how to butcher thee:\nThat which in mean men we intitle patience\nIs pale cold cowardice in noble breasts.\nWhat shall I say? to safeguard thine own life,\nThe best way is to venge my Gloucester's death.\n\nJOHN OF GAUNT:\nGod's is the quarrel; for God's substitute,\nHis deputy anointed in His sight,\nHath caused his death: the which if wrongfully,\nLet heaven revenge; for I may never lift\nAn angry arm against His minister.\n\nDUCHESS:\nWhere then, alas, may I complain myself?\n\nJOHN OF GAUNT:\nTo God, the widow's champion and defence.\n\nDUCHESS:\nWhy, then, I will. Farewell, old Gaunt.\nThou goest to Coventry, there to behold\nOur cousin Hereford and fell Mowbray fight:\nO, sit my husband's wrongs on Hereford's spear,\nThat it may enter butcher Mowbray's breast!\nOr, if misfortune miss the first career,\nBe Mowbray's sins so heavy in his bosom,\nThey may break his foaming courser's back,\nAnd throw the rider headlong in the lists,\nA caitiff recreant to my cousin Hereford!\nFarewell, old Gaunt: thy sometimes brother's wife\nWith her companion grief must end her life.\n\nJOHN OF GAUNT:\nSister, farewell; I must to Coventry:\nAs much good stay with thee as go with me!\n\nDUCHESS:\nYet one word more: grief boundeth where it falls,\nNot with the empty hollowness, but weight:\nI take my leave before I have begun,\nFor sorrow ends not when it seemeth done.\nCommend me to thy brother, Edmund York.\nLo, this is all:--nay, yet depart not so;\nThough this be all, do not so quickly go;\nI shall remember more. Bid him--ah, what?--\nWith all good speed at Plashy visit me.\nAlack, and what shall good old York there see\nBut empty lodgings and unfurnish'd walls,\nUnpeopled offices, untrodden stones?\nAnd what hear there for welcome but my groans?\nTherefore commend me; let him not come there,\nTo seek out sorrow that dwells every where.\nDesolate, desolate, will I hence and die:\nThe last leave of thee takes my weeping eye.\n\nLord Marshal:\nMy Lord Aumerle, is Harry Hereford arm'd?\n\nDUKE OF AUMERLE:\nYea, at all points; and longs to enter in.\n\nLord Marshal:\nThe Duke of Norfolk, sprightfully and bold,\nStays but the summons of the appellant's trumpet.\n\nDUKE OF AUMERLE:\nWhy, then, the champions are prepared, and stay\nFor nothing but his majesty's approach.\n\nKING RICHARD II:\nMarshal, demand of yonder champion\nThe cause of his arrival here in arms:\nAsk him his name and orderly proceed\nTo swear him in the justice of his cause.\n\nLord Marshal:\nIn God's name and the king's, say who thou art\nAnd why thou comest thus knightly clad in arms,\nAgainst what man thou comest, and what thy quarrel:\nSpeak truly, on thy knighthood and thy oath;\nAs so defend thee heaven and thy valour!\n\nTHOMAS MOWBRAY:\nMy name is Thomas Mowbray, Duke of Norfolk;\nWho hither come engaged by my oath--\nWhich God defend a knight should violate!--\nBoth to defend my loyalty and truth\nTo God, my king and my succeeding issue,\nAgainst the Duke of Hereford that appeals me\nAnd, by the grace of God and this mine arm,\nTo prove him, in defending of myself,\nA traitor to my God, my king, and me:\nAnd as I truly fight, defend me heaven!\n\nKING RICHARD II:\nMarshal, ask yonder knight in arms,\nBoth who he is and why he cometh hither\nThus plated in habiliments of war,\nAnd formally, according to our law,\nDepose him in the justice of his cause.\n\nLord Marshal:\nWhat is thy name? and wherefore comest thou hither,\nBefore King Richard in his royal lists?\nAgainst whom comest thou? and what's thy quarrel?\nSpeak like a true knight, so defend thee heaven!\n\nHENRY BOLINGBROKE:\nHarry of Hereford, Lancaster and Derby\nAm I; who ready here do stand in arms,\nTo prove, by God's grace and my body's valour,\nIn lists, on Thomas Mowbray, Duke of Norfolk,\nThat he is a traitor, foul and dangerous,\nTo God of heaven, King Richard and to me;\nAnd as I truly fight, defend me heaven!\n\nLord Marshal:\nOn pain of death, no person be so bold\nOr daring-hardy as to touch the lists,\nExcept the marshal and such officers\nAppointed to direct these fair designs.\n\nHENRY BOLINGBROKE:\nLord marshal, let me kiss my sovereign's hand,\nAnd bow my knee before his majesty:\nFor Mowbray and myself are like two men\nThat vow a long and weary pilgrimage;\nThen let us take a ceremonious leave\nAnd loving farewell of our several friends.\n\nLord Marshal:\nThe appellant in all duty greets your highness,\nAnd craves to kiss your hand and take his leave.\n\nKING RICHARD II:\nWe will descend and fold him in our arms.\nCousin of Hereford, as thy cause is right,\nSo be thy fortune in this royal fight!\nFarewell, my blood; which if to-day thou shed,\nLament we may, but not revenge thee dead.\n\nHENRY BOLINGBROKE:\nO let no noble eye profane a tear\nFor me, if I be gored with Mowbray's spear:\nAs confident as is the falcon's flight\nAgainst a bird, do I with Mowbray fight.\nMy loving lord, I take my leave of you;\nOf you, my noble cousin, Lord Aumerle;\nNot sick, although I have to do with death,\nBut lusty, young, and cheerly drawing breath.\nLo, as at English feasts, so I regreet\nThe daintiest last, to make the end most sweet:\nO thou, the earthly author of my blood,\nWhose youthful spirit, in me regenerate,\nDoth with a twofold vigour lift me up\nTo reach at victory above my head,\nAdd proof unto mine armour with thy prayers;\nAnd with thy blessings steel my lance's point,\nThat it may enter Mowbray's waxen coat,\nAnd furbish new the name of John a Gaunt,\nEven in the lusty havior of his son.\n\nJOHN OF GAUNT:\nGod in thy good cause make thee prosperous!\nBe swift like lightning in the execution;\nAnd let thy blows, doubly redoubled,\nFall like amazing thunder on the casque\nOf thy adverse pernicious enemy:\nRouse up thy youthful blood, be valiant and live.\n\nHENRY BOLINGBROKE:\nMine innocency and Saint George to thrive!\n\nTHOMAS MOWBRAY:\nHowever God or fortune cast my lot,\nThere lives or dies, true to King Richard's throne,\nA loyal, just and upright gentleman:\nNever did captive with a freer heart\nCast off his chains of bondage and embrace\nHis golden uncontroll'd enfranchisement,\nMore than my dancing soul doth celebrate\nThis feast of battle with mine adversary.\nMost mighty liege, and my companion peers,\nTake from my mouth the wish of happy years:\nAs gentle and as jocund as to jest\nGo I to fight: truth hath a quiet breast.\n\nKING RICHARD II:\nFarewell, my lord: securely I espy\nVirtue with valour couched in thine eye.\nOrder the trial, marshal, and begin.\n\nLord Marshal:\nHarry of Hereford, Lancaster and Derby,\nReceive thy lance; and God defend the right!\n\nHENRY BOLINGBROKE:\nStrong as a tower in hope, I cry amen.\n\nLord Marshal:\nGo bear this lance to Thomas, Duke of Norfolk.\n\nFirst Herald:\nHarry of Hereford, Lancaster and Derby,\nStands here for God, his sovereign and himself,\nOn pain to be found false and recreant,\nTo prove the Duke of Norfolk, Thomas Mowbray,\nA traitor to his God, his king and him;\nAnd dares him to set forward to the fight.\n\nSecond Herald:\nHere standeth Thomas Mowbray, Duke of Norfolk,\nOn pain to be found false and recreant,\nBoth to defend himself and to approve\nHenry of Hereford, Lancaster, and Derby,\nTo God, his sovereign and to him disloyal;\nCourageously and with a free desire\nAttending but the signal to begin.\n\nLord Marshal:\nSound, trumpets; and set forward, combatants.\nStay, the king hath thrown his warder down.\n\nKING RICHARD II:\nLet them lay by their helmets and their spears,\nAnd both return back to their chairs again:\nWithdraw with us: and let the trumpets sound\nWhile we return these dukes what we decree.\nDraw near,\nAnd list what with our council we have done.\nFor that our kingdom's earth should not be soil'd\nWith that dear blood which it hath fostered;\nAnd for our eyes do hate the dire aspect\nOf civil wounds plough'd up with neighbours' sword;\nAnd for we think the eagle-winged pride\nOf sky-aspiring and ambitious thoughts,\nWith rival-hating envy, set on you\nTo wake our peace, which in our country's cradle\nDraws the sweet infant breath of gentle sleep;\nWhich so roused up with boisterous untuned drums,\nWith harsh resounding trumpets' dreadful bray,\nAnd grating shock of wrathful iron arms,\nMight from our quiet confines fright fair peace\nAnd make us wade even in our kindred's blood,\nTherefore, we banish you our territories:\nYou, cousin Hereford, upon pain of life,\nTill twice five summers have enrich'd our fields\nShall not regreet our fair dominions,\nBut tread the stranger paths of banishment.\n\nHENRY BOLINGBROKE:\nYour will be done: this must my comfort be,\nSun that warms you here shall shine on me;\nAnd those his golden beams to you here lent\nShall point on me and gild my banishment.\n\nKING RICHARD II:\nNorfolk, for thee remains a heavier doom,\nWhich I with some unwillingness pronounce:\nThe sly slow hours shall not determinate\nThe dateless limit of thy dear exile;\nThe hopeless word of 'never to return'\nBreathe I against thee, upon pain of life.\n\nTHOMAS MOWBRAY:\nA heavy sentence, my most sovereign liege,\nAnd all unlook'd for from your highness' mouth:\nA dearer merit, not so deep a maim\nAs to be cast forth in the common air,\nHave I deserved at your highness' hands.\nThe language I have learn'd these forty years,\nMy native English, now I must forego:\nAnd now my tongue's use is to me no more\nThan an unstringed viol or a harp,\nOr like a cunning instrument cased up,\nOr, being open, put into his hands\nThat knows no touch to tune the harmony:\nWithin my mouth you have engaol'd my tongue,\nDoubly portcullis'd with my teeth and lips;\nAnd dull unfeeling barren ignorance\nIs made my gaoler to attend on me.\nI am too old to fawn upon a nurse,\nToo far in years to be a pupil now:\nWhat is thy sentence then but speechless death,\nWhich robs my tongue from breathing native breath?\n\nKING RICHARD II:\nIt boots thee not to be compassionate:\nAfter our sentence plaining comes too late.\n\nTHOMAS MOWBRAY:\nThen thus I turn me from my country's light,\nTo dwell in solemn shades of endless night.\n\nKING RICHARD II:\nReturn again, and take an oath with thee.\nLay on our royal sword your banish'd hands;\nSwear by the duty that you owe to God--\nOur part therein we banish with yourselves--\nTo keep the oath that we administer:\nYou never shall, so help you truth and God!\nEmbrace each other's love in banishment;\nNor never look upon each other's face;\nNor never write, regreet, nor reconcile\nThis louring tempest of your home-bred hate;\nNor never by advised purpose meet\nTo plot, contrive, or complot any ill\n'Gainst us, our state, our subjects, or our land.\n\nHENRY BOLINGBROKE:\nI swear.\n\nTHOMAS MOWBRAY:\nAnd I, to keep all this.\n\nHENRY BOLINGBROKE:\nNorfolk, so far as to mine enemy:--\nBy this time, had the king permitted us,\nOne of our souls had wander'd in the air.\nBanish'd this frail sepulchre of our flesh,\nAs now our flesh is banish'd from this land:\nConfess thy treasons ere thou fly the realm;\nSince thou hast far to go, bear not along\nThe clogging burthen of a guilty soul.\n\nTHOMAS MOWBRAY:\nNo, Bolingbroke: if ever I were traitor,\nMy name be blotted from the book of life,\nAnd I from heaven banish'd as from hence!\nBut what thou art, God, thou, and I do know;\nAnd all too soon, I fear, the king shall rue.\nFarewell, my liege. Now no way can I stray;\nSave back to England, all the world's my way.\n\nKING RICHARD II:\nUncle, even in the glasses of thine eyes\nI see thy grieved heart: thy sad aspect\nHath from the number of his banish'd years\nPluck'd four away.\nSix frozen winter spent,\nReturn with welcome home from banishment.\n\nHENRY BOLINGBROKE:\nHow long a time lies in one little word!\nFour lagging winters and four wanton springs\nEnd in a word: such is the breath of kings.\n\nJOHN OF GAUNT:\nI thank my liege, that in regard of me\nHe shortens four years of my son's exile:\nBut little vantage shall I reap thereby;\nFor, ere the six years that he hath to spend\nCan change their moons and bring their times about\nMy oil-dried lamp and time-bewasted light\nShall be extinct with age and endless night;\nMy inch of taper will be burnt and done,\nAnd blindfold death not let me see my son.\n\nKING RICHARD II:\nWhy uncle, thou hast many years to live.\n\nJOHN OF GAUNT:\nBut not a minute, king, that thou canst give:\nShorten my days thou canst with sullen sorrow,\nAnd pluck nights from me, but not lend a morrow;\nThou canst help time to furrow me with age,\nBut stop no wrinkle in his pilgrimage;\nThy word is current with him for my death,\nBut dead, thy kingdom cannot buy my breath.\n\nKING RICHARD II:\nThy son is banish'd upon good advice,\nWhereto thy tongue a party-verdict gave:\nWhy at our justice seem'st thou then to lour?\n\nJOHN OF GAUNT:\nThings sweet to taste prove in digestion sour.\nYou urged me as a judge; but I had rather\nYou would have bid me argue like a father.\nO, had it been a stranger, not my child,\nTo smooth his fault I should have been more mild:\nA partial slander sought I to avoid,\nAnd in the sentence my own life destroy'd.\nAlas, I look'd when some of you should say,\nI was too strict to make mine own away;\nBut you gave leave to my unwilling tongue\nAgainst my will to do myself this wrong.\n\nKING RICHARD II:\nCousin, farewell; and, uncle, bid him so:\nSix years we banish him, and he shall go.\n\nDUKE OF AUMERLE:\nCousin, farewell: what presence must not know,\nFrom where you do remain let paper show.\n\nLord Marshal:\nMy lord, no leave take I; for I will ride,\nAs far as land will let me, by your side.\n\nJOHN OF GAUNT:\nO, to what purpose dost thou hoard thy words,\nThat thou return'st no greeting to thy friends?\n\nHENRY BOLINGBROKE:\nI have too few to take my leave of you,\nWhen the tongue's office should be prodigal\nTo breathe the abundant dolour of the heart.\n\nJOHN OF GAUNT:\nThy grief is but thy absence for a time.\n\nHENRY BOLINGBROKE:\nJoy absent, grief is present for that time.\n\nJOHN OF GAUNT:\nWhat is six winters? they are quickly gone.\n\nHENRY BOLINGBROKE:\nTo men in joy; but grief makes one hour ten.\n\nJOHN OF GAUNT:\nCall it a travel that thou takest for pleasure.\n\nHENRY BOLINGBROKE:\nMy heart will sigh when I miscall it so,\nWhich finds it an inforced pilgrimage.\n\nJOHN OF GAUNT:\nThe sullen passage of thy weary steps\nEsteem as foil wherein thou art to set\nThe precious jewel of thy home return.\n\nHENRY BOLINGBROKE:\nNay, rather, every tedious stride I make\nWill but remember me what a deal of world\nI wander from the jewels that I love.\nMust I not serve a long apprenticehood\nTo foreign passages, and in the end,\nHaving my freedom, boast of nothing else\nBut that I was a journeyman to grief?\n\nJOHN OF GAUNT:\nAll places that the eye of heaven visits\nAre to a wise man ports and happy havens.\nTeach thy necessity to reason thus;\nThere is no virtue like necessity.\nThink not the king did banish thee,\nBut thou the king. Woe doth the heavier sit,\nWhere it perceives it is but faintly borne.\nGo, say I sent thee forth to purchase honour\nAnd not the king exiled thee; or suppose\nDevouring pestilence hangs in our air\nAnd thou art flying to a fresher clime:\nLook, what thy soul holds dear, imagine it\nTo lie that way thou go'st, not whence thou comest:\nSuppose the singing birds musicians,\nThe grass whereon thou tread'st the presence strew'd,\nThe flowers fair ladies, and thy steps no more\nThan a delightful measure or a dance;\nFor gnarling sorrow hath less power to bite\nThe man that mocks at it and sets it light.\n\nHENRY BOLINGBROKE:\nO, who can hold a fire in his hand\nBy thinking on the frosty Caucasus?\nOr cloy the hungry edge of appetite\nBy bare imagination of a feast?\nOr wallow naked in December snow\nBy thinking on fantastic summer's heat?\nO, no! the apprehension of the good\nGives but the greater feeling to the worse:\nFell sorrow's tooth doth never rankle more\nThan when he bites, but lanceth not the sore.\n\nJOHN OF GAUNT:\nCome, come, my son, I'll bring thee on thy way:\nHad I thy youth and cause, I would not stay.\n\nHENRY BOLINGBROKE:\nThen, England's ground, farewell; sweet soil, adieu;\nMy mother, and my nurse, that bears me yet!\nWhere'er I wander, boast of this I can,\nThough banish'd, yet a trueborn Englishman.\n\nKING RICHARD II:\nWe did observe. Cousin Aumerle,\nHow far brought you high Hereford on his way?\n\nDUKE OF AUMERLE:\nI brought high Hereford, if you call him so,\nBut to the next highway, and there I left him.\n\nKING RICHARD II:\nAnd say, what store of parting tears were shed?\n\nDUKE OF AUMERLE:\nFaith, none for me; except the north-east wind,\nWhich then blew bitterly against our faces,\nAwaked the sleeping rheum, and so by chance\nDid grace our hollow parting with a tear.\n\nKING RICHARD II:\nWhat said our cousin when you parted with him?\n\nDUKE OF AUMERLE:\n'Farewell:'\nAnd, for my heart disdained that my tongue\nShould so profane the word, that taught me craft\nTo counterfeit oppression of such grief\nThat words seem'd buried in my sorrow's grave.\nMarry, would the word 'farewell' have lengthen'd hours\nAnd added years to his short banishment,\nHe should have had a volume of farewells;\nBut since it would not, he had none of me.\n\nKING RICHARD II:\nHe is our cousin, cousin; but 'tis doubt,\nWhen time shall call him home from banishment,\nWhether our kinsman come to see his friends.\nOurself and Bushy, Bagot here and Green\nObserved his courtship to the common people;\nHow he did seem to dive into their hearts\nWith humble and familiar courtesy,\nWhat reverence he did throw away on slaves,\nWooing poor craftsmen with the craft of smiles\nAnd patient underbearing of his fortune,\nAs 'twere to banish their affects with him.\nOff goes his bonnet to an oyster-wench;\nA brace of draymen bid God speed him well\nAnd had the tribute of his supple knee,\nWith 'Thanks, my countrymen, my loving friends;'\nAs were our England in reversion his,\nAnd he our subjects' next degree in hope.\n\nGREEN:\nWell, he is gone; and with him go these thoughts.\nNow for the rebels which stand out in Ireland,\nExpedient manage must be made, my liege,\nEre further leisure yield them further means\nFor their advantage and your highness' loss.\n\nKING RICHARD II:\nWe will ourself in person to this war:\nAnd, for our coffers, with too great a court\nAnd liberal largess, are grown somewhat light,\nWe are inforced to farm our royal realm;\nThe revenue whereof shall furnish us\nFor our affairs in hand: if that come short,\nOur substitutes at home shall have blank charters;\nWhereto, when they shall know what men are rich,\nThey shall subscribe them for large sums of gold\nAnd send them after to supply our wants;\nFor we will make for Ireland presently.\nBushy, what news?\n\nBUSHY:\nOld John of Gaunt is grievous sick, my lord,\nSuddenly taken; and hath sent post haste\nTo entreat your majesty to visit him.\n\nKING RICHARD II:\nWhere lies he?\n\nBUSHY:\nAt Ely House.\n\nKING RICHARD II:\nNow put it, God, in the physician's mind\nTo help him to his grave immediately!\nThe lining of his coffers shall make coats\nTo deck our soldiers for these Irish wars.\nCome, gentlemen, let's all go visit him:\nPray God we may make haste, and come too late!\n\nAll:\nAmen.\n\nJOHN OF GAUNT:\nWill the king come, that I may breathe my last\nIn wholesome counsel to his unstaid youth?\n\nDUKE OF YORK:\nVex not yourself, nor strive not with your breath;\nFor all in vain comes counsel to his ear.\n\nJOHN OF GAUNT:\nO, but they say the tongues of dying men\nEnforce attention like deep harmony:\nWhere words are scarce, they are seldom spent in vain,\nFor they breathe truth that breathe their words in pain.\nHe that no more must say is listen'd more\nThan they whom youth and ease have taught to glose;\nMore are men's ends mark'd than their lives before:\nThe setting sun, and music at the close,\nAs the last taste of sweets, is sweetest last,\nWrit in remembrance more than things long past:\nThough Richard my life's counsel would not hear,\nMy death's sad tale may yet undeaf his ear.\n\nDUKE OF YORK:\nNo; it is stopp'd with other flattering sounds,\nAs praises, of whose taste the wise are fond,\nLascivious metres, to whose venom sound\nThe open ear of youth doth always listen;\nReport of fashions in proud Italy,\nWhose manners still our tardy apish nation\nLimps after in base imitation.\nWhere doth the world thrust forth a vanity--\nSo it be new, there's no respect how vile--\nThat is not quickly buzzed into his ears?\nThen all too late comes counsel to be heard,\nWhere will doth mutiny with wit's regard.\nDirect not him whose way himself will choose:\n'Tis breath thou lack'st, and that breath wilt thou lose.\n\nJOHN OF GAUNT:\nMethinks I am a prophet new inspired\nAnd thus expiring do foretell of him:\nHis rash fierce blaze of riot cannot last,\nFor violent fires soon burn out themselves;\nSmall showers last long, but sudden storms are short;\nHe tires betimes that spurs too fast betimes;\nWith eager feeding food doth choke the feeder:\nLight vanity, insatiate cormorant,\nConsuming means, soon preys upon itself.\nThis royal throne of kings, this scepter'd isle,\nThis earth of majesty, this seat of Mars,\nThis other Eden, demi-paradise,\nThis fortress built by Nature for herself\nAgainst infection and the hand of war,\nThis happy breed of men, this little world,\nThis precious stone set in the silver sea,\nWhich serves it in the office of a wall,\nOr as a moat defensive to a house,\nAgainst the envy of less happier lands,\nThis blessed plot, this earth, this realm, this England,\nThis nurse, this teeming womb of royal kings,\nFear'd by their breed and famous by their birth,\nRenowned for their deeds as far from home,\nFor Christian service and true chivalry,\nAs is the sepulchre in stubborn Jewry,\nOf the world's ransom, blessed Mary's Son,\nThis land of such dear souls, this dear dear land,\nDear for her reputation through the world,\nIs now leased out, I die pronouncing it,\nLike to a tenement or pelting farm:\nEngland, bound in with the triumphant sea\nWhose rocky shore beats back the envious siege\nOf watery Neptune, is now bound in with shame,\nWith inky blots and rotten parchment bonds:\nThat England, that was wont to conquer others,\nHath made a shameful conquest of itself.\nAh, would the scandal vanish with my life,\nHow happy then were my ensuing death!\n\nDUKE OF YORK:\nThe king is come: deal mildly with his youth;\nFor young hot colts being raged do rage the more.\n\nQUEEN:\nHow fares our noble uncle, Lancaster?\n\nKING RICHARD II:\nWhat comfort, man? how is't with aged Gaunt?\n\nJOHN OF GAUNT:\nO how that name befits my composition!\nOld Gaunt indeed, and gaunt in being old:\nWithin me grief hath kept a tedious fast;\nAnd who abstains from meat that is not gaunt?\nFor sleeping England long time have I watch'd;\nWatching breeds leanness, leanness is all gaunt:\nThe pleasure that some fathers feed upon,\nIs my strict fast; I mean, my children's looks;\nAnd therein fasting, hast thou made me gaunt:\nGaunt am I for the grave, gaunt as a grave,\nWhose hollow womb inherits nought but bones.\n\nKING RICHARD II:\nCan sick men play so nicely with their names?\n\nJOHN OF GAUNT:\nNo, misery makes sport to mock itself:\nSince thou dost seek to kill my name in me,\nI mock my name, great king, to flatter thee.\n\nKING RICHARD II:\nShould dying men flatter with those that live?\n\nJOHN OF GAUNT:\nNo, no, men living flatter those that die.\n\nKING RICHARD II:\nThou, now a-dying, say'st thou flatterest me.\n\nJOHN OF GAUNT:\nO, no! thou diest, though I the sicker be.\n\nKING RICHARD II:\nI am in health, I breathe, and see thee ill.\n\nJOHN OF GAUNT:\nNow He that made me knows I see thee ill;\nIll in myself to see, and in thee seeing ill.\nThy death-bed is no lesser than thy land\nWherein thou liest in reputation sick;\nAnd thou, too careless patient as thou art,\nCommit'st thy anointed body to the cure\nOf those physicians that first wounded thee:\nA thousand flatterers sit within thy crown,\nWhose compass is no bigger than thy head;\nAnd yet, incaged in so small a verge,\nThe waste is no whit lesser than thy land.\nO, had thy grandsire with a prophet's eye\nSeen how his son's son should destroy his sons,\nFrom forth thy reach he would have laid thy shame,\nDeposing thee before thou wert possess'd,\nWhich art possess'd now to depose thyself.\nWhy, cousin, wert thou regent of the world,\nIt were a shame to let this land by lease;\nBut for thy world enjoying but this land,\nIs it not more than shame to shame it so?\nLandlord of England art thou now, not king:\nThy state of law is bondslave to the law; And thou--\n\nKING RICHARD II:\nA lunatic lean-witted fool,\nPresuming on an ague's privilege,\nDarest with thy frozen admonition\nMake pale our cheek, chasing the royal blood\nWith fury from his native residence.\nNow, by my seat's right royal majesty,\nWert thou not brother to great Edward's son,\nThis tongue that runs so roundly in thy head\nShould run thy head from thy unreverent shoulders.\n\nJOHN OF GAUNT:\nO, spare me not, my brother Edward's son,\nFor that I was his father Edward's son;\nThat blood already, like the pelican,\nHast thou tapp'd out and drunkenly caroused:\nMy brother Gloucester, plain well-meaning soul,\nWhom fair befal in heaven 'mongst happy souls!\nMay be a precedent and witness good\nThat thou respect'st not spilling Edward's blood:\nJoin with the present sickness that I have;\nAnd thy unkindness be like crooked age,\nTo crop at once a too long wither'd flower.\nLive in thy shame, but die not shame with thee!\nThese words hereafter thy tormentors be!\nConvey me to my bed, then to my grave:\nLove they to live that love and honour have.\n\nKING RICHARD II:\nAnd let them die that age and sullens have;\nFor both hast thou, and both become the grave.\n\nDUKE OF YORK:\nI do beseech your majesty, impute his words\nTo wayward sickliness and age in him:\nHe loves you, on my life, and holds you dear\nAs Harry Duke of Hereford, were he here.\n\nKING RICHARD II:\nRight, you say true: as Hereford's love, so his;\nAs theirs, so mine; and all be as it is.\n\nNORTHUMBERLAND:\nMy liege, old Gaunt commends him to your majesty.\n\nKING RICHARD II:\nWhat says he?\n\nNORTHUMBERLAND:\nNay, nothing; all is said\nHis tongue is now a stringless instrument;\nWords, life and all, old Lancaster hath spent.\n\nDUKE OF YORK:\nBe York the next that must be bankrupt so!\nThough death be poor, it ends a mortal woe.\n\nKING RICHARD II:\nThe ripest fruit first falls, and so doth he;\nHis time is spent, our pilgrimage must be.\nSo much for that. Now for our Irish wars:\nWe must supplant those rough rug-headed kerns,\nWhich live like venom where no venom else\nBut only they have privilege to live.\nAnd for these great affairs do ask some charge,\nTowards our assistance we do seize to us\nThe plate, corn, revenues and moveables,\nWhereof our uncle Gaunt did stand possess'd.\n\nDUKE OF YORK:\nHow long shall I be patient? ah, how long\nShall tender duty make me suffer wrong?\nNot Gloucester's death, nor Hereford's banishment\nNot Gaunt's rebukes, nor England's private wrongs,\nNor the prevention of poor Bolingbroke\nAbout his marriage, nor my own disgrace,\nHave ever made me sour my patient cheek,\nOr bend one wrinkle on my sovereign's face.\nI am the last of noble Edward's sons,\nOf whom thy father, Prince of Wales, was first:\nIn war was never lion raged more fierce,\nIn peace was never gentle lamb more mild,\nThan was that young and princely gentleman.\nHis face thou hast, for even so look'd he,\nAccomplish'd with the number of thy hours;\nBut when he frown'd, it was against the French\nAnd not against his friends; his noble hand\nDid will what he did spend and spent not that\nWhich his triumphant father's hand had won;\nHis hands were guilty of no kindred blood,\nBut bloody with the enemies of his kin.\nO Richard! York is too far gone with grief,\nOr else he never would compare between.\n\nKING RICHARD II:\nWhy, uncle, what's the matter?\n\nDUKE OF YORK:\nO my liege,\nPardon me, if you please; if not, I, pleased\nNot to be pardon'd, am content withal.\nSeek you to seize and gripe into your hands\nThe royalties and rights of banish'd Hereford?\nIs not Gaunt dead, and doth not Hereford live?\nWas not Gaunt just, and is not Harry true?\nDid not the one deserve to have an heir?\nIs not his heir a well-deserving son?\nTake Hereford's rights away, and take from Time\nHis charters and his customary rights;\nLet not to-morrow then ensue to-day;\nBe not thyself; for how art thou a king\nBut by fair sequence and succession?\nNow, afore God--God forbid I say true!--\nIf you do wrongfully seize Hereford's rights,\nCall in the letters patent that he hath\nBy his attorneys-general to sue\nHis livery, and deny his offer'd homage,\nYou pluck a thousand dangers on your head,\nYou lose a thousand well-disposed hearts\nAnd prick my tender patience, to those thoughts\nWhich honour and allegiance cannot think.\n\nKING RICHARD II:\nThink what you will, we seize into our hands\nHis plate, his goods, his money and his lands.\n\nDUKE OF YORK:\nI'll not be by the while: my liege, farewell:\nWhat will ensue hereof, there's none can tell;\nBut by bad courses may be understood\nThat their events can never fall out good.\n\nKING RICHARD II:\nGo, Bushy, to the Earl of Wiltshire straight:\nBid him repair to us to Ely House\nTo see this business. To-morrow next\nWe will for Ireland; and 'tis time, I trow:\nAnd we create, in absence of ourself,\nOur uncle York lord governor of England;\nFor he is just and always loved us well.\nCome on, our queen: to-morrow must we part;\nBe merry, for our time of stay is short\n\nNORTHUMBERLAND:\nWell, lords, the Duke of Lancaster is dead.\n\nLORD ROSS:\nAnd living too; for now his son is duke.\n\nLORD WILLOUGHBY:\nBarely in title, not in revenue.\n\nNORTHUMBERLAND:\nRichly in both, if justice had her right.\n\nLORD ROSS:\nMy heart is great; but it must break with silence,\nEre't be disburden'd with a liberal tongue.\n\nNORTHUMBERLAND:\nNay, speak thy mind; and let him ne'er speak more\nThat speaks thy words again to do thee harm!\n\nLORD WILLOUGHBY:\nTends that thou wouldst speak to the Duke of Hereford?\nIf it be so, out with it boldly, man;\nQuick is mine ear to hear of good towards him.\n\nLORD ROSS:\nNo good at all that I can do for him;\nUnless you call it good to pity him,\nBereft and gelded of his patrimony.\n\nNORTHUMBERLAND:\nNow, afore God, 'tis shame such wrongs are borne\nIn him, a royal prince, and many moe\nOf noble blood in this declining land.\nThe king is not himself, but basely led\nBy flatterers; and what they will inform,\nMerely in hate, 'gainst any of us all,\nThat will the king severely prosecute\n'Gainst us, our lives, our children, and our heirs.\n\nLORD ROSS:\nThe commons hath he pill'd with grievous taxes,\nAnd quite lost their hearts: the nobles hath he fined\nFor ancient quarrels, and quite lost their hearts.\n\nLORD WILLOUGHBY:\nAnd daily new exactions are devised,\nAs blanks, benevolences, and I wot not what:\nBut what, o' God's name, doth become of this?\n\nNORTHUMBERLAND:\nWars have not wasted it, for warr'd he hath not,\nBut basely yielded upon compromise\nThat which his noble ancestors achieved with blows:\nMore hath he spent in peace than they in wars.\n\nLORD ROSS:\nThe Earl of Wiltshire hath the realm in farm.\n\nLORD WILLOUGHBY:\nThe king's grown bankrupt, like a broken man.\n\nNORTHUMBERLAND:\nReproach and dissolution hangeth over him.\n\nLORD ROSS:\nHe hath not money for these Irish wars,\nHis burthenous taxations notwithstanding,\nBut by the robbing of the banish'd duke.\n\nNORTHUMBERLAND:\nHis noble kinsman: most degenerate king!\nBut, lords, we hear this fearful tempest sing,\nYet see no shelter to avoid the storm;\nWe see the wind sit sore upon our sails,\nAnd yet we strike not, but securely perish.\n\nLORD ROSS:\nWe see the very wreck that we must suffer;\nAnd unavoided is the danger now,\nFor suffering so the causes of our wreck.\n\nNORTHUMBERLAND:\nNot so; even through the hollow eyes of death\nI spy life peering; but I dare not say\nHow near the tidings of our comfort is.\n\nLORD WILLOUGHBY:\nNay, let us share thy thoughts, as thou dost ours.\n\nLORD ROSS:\nBe confident to speak, Northumberland:\nWe three are but thyself; and, speaking so,\nThy words are but as thoughts; therefore, be bold.\n\nNORTHUMBERLAND:\nThen thus: I have from Port le Blanc, a bay\nIn Brittany, received intelligence\nThat Harry Duke of Hereford, Rainold Lord Cobham,\nThat late broke from the Duke of Exeter,\nHis brother, Archbishop late of Canterbury,\nSir Thomas Erpingham, Sir John Ramston,\nSir John Norbery, Sir Robert Waterton and Francis Quoint,\nAll these well furnish'd by the Duke of Bretagne\nWith eight tall ships, three thousand men of war,\nAre making hither with all due expedience\nAnd shortly mean to touch our northern shore:\nPerhaps they had ere this, but that they stay\nThe first departing of the king for Ireland.\nIf then we shall shake off our slavish yoke,\nImp out our drooping country's broken wing,\nRedeem from broking pawn the blemish'd crown,\nWipe off the dust that hides our sceptre's gilt\nAnd make high majesty look like itself,\nAway with me in post to Ravenspurgh;\nBut if you faint, as fearing to do so,\nStay and be secret, and myself will go.\n\nLORD ROSS:\nTo horse, to horse! urge doubts to them that fear.\n\nLORD WILLOUGHBY:\nHold out my horse, and I will first be there.\n\nBUSHY:\nMadam, your majesty is too much sad:\nYou promised, when you parted with the king,\nTo lay aside life-harming heaviness\nAnd entertain a cheerful disposition.\n\nQUEEN:\nTo please the king I did; to please myself\nI cannot do it; yet I know no cause\nWhy I should welcome such a guest as grief,\nSave bidding farewell to so sweet a guest\nAs my sweet Richard: yet again, methinks,\nSome unborn sorrow, ripe in fortune's womb,\nIs coming towards me, and my inward soul\nWith nothing trembles: at some thing it grieves,\nMore than with parting from my lord the king.\n\nBUSHY:\nEach substance of a grief hath twenty shadows,\nWhich shows like grief itself, but is not so;\nFor sorrow's eye, glazed with blinding tears,\nDivides one thing entire to many objects;\nLike perspectives, which rightly gazed upon\nShow nothing but confusion, eyed awry\nDistinguish form: so your sweet majesty,\nLooking awry upon your lord's departure,\nFind shapes of grief, more than himself, to wail;\nWhich, look'd on as it is, is nought but shadows\nOf what it is not. Then, thrice-gracious queen,\nMore than your lord's departure weep not: more's not seen;\nOr if it be, 'tis with false sorrow's eye,\nWhich for things true weeps things imaginary.\n\nQUEEN:\nIt may be so; but yet my inward soul\nPersuades me it is otherwise: howe'er it be,\nI cannot but be sad; so heavy sad\nAs, though on thinking on no thought I think,\nMakes me with heavy nothing faint and shrink.\n\nBUSHY:\n'Tis nothing but conceit, my gracious lady.\n\nQUEEN:\n'Tis nothing less: conceit is still derived\nFrom some forefather grief; mine is not so,\nFor nothing had begot my something grief;\nOr something hath the nothing that I grieve:\n'Tis in reversion that I do possess;\nBut what it is, that is not yet known; what\nI cannot name; 'tis nameless woe, I wot.\n\nGREEN:\nGod save your majesty! and well met, gentlemen:\nI hope the king is not yet shipp'd for Ireland.\n\nQUEEN:\nWhy hopest thou so? 'tis better hope he is;\nFor his designs crave haste, his haste good hope:\nThen wherefore dost thou hope he is not shipp'd?\n\nGREEN:\nThat he, our hope, might have retired his power,\nAnd driven into despair an enemy's hope,\nWho strongly hath set footing in this land:\nThe banish'd Bolingbroke repeals himself,\nAnd with uplifted arms is safe arrived\nAt Ravenspurgh.\n\nQUEEN:\nNow God in heaven forbid!\n\nGREEN:\nAh, madam, 'tis too true: and that is worse,\nThe Lord Northumberland, his son young Henry Percy,\nThe Lords of Ross, Beaumond, and Willoughby,\nWith all their powerful friends, are fled to him.\n\nBUSHY:\nWhy have you not proclaim'd Northumberland\nAnd all the rest revolted faction traitors?\n\nGREEN:\nWe have: whereupon the Earl of Worcester\nHath broke his staff, resign'd his stewardship,\nAnd all the household servants fled with him\nTo Bolingbroke.\n\nQUEEN:\nSo, Green, thou art the midwife to my woe,\nAnd Bolingbroke my sorrow's dismal heir:\nNow hath my soul brought forth her prodigy,\nAnd I, a gasping new-deliver'd mother,\nHave woe to woe, sorrow to sorrow join'd.\n\nBUSHY:\nDespair not, madam.\n\nQUEEN:\nWho shall hinder me?\nI will despair, and be at enmity\nWith cozening hope: he is a flatterer,\nA parasite, a keeper back of death,\nWho gently would dissolve the bands of life,\nWhich false hope lingers in extremity.\n\nGREEN:\nHere comes the Duke of York.\n\nQUEEN:\nWith signs of war about his aged neck:\nO, full of careful business are his looks!\nUncle, for God's sake, speak comfortable words.\n\nDUKE OF YORK:\nShould I do so, I should belie my thoughts:\nComfort's in heaven; and we are on the earth,\nWhere nothing lives but crosses, cares and grief.\nYour husband, he is gone to save far off,\nWhilst others come to make him lose at home:\nHere am I left to underprop his land,\nWho, weak with age, cannot support myself:\nNow comes the sick hour that his surfeit made;\nNow shall he try his friends that flatter'd him.\n\nServant:\nMy lord, your son was gone before I came.\n\nDUKE OF YORK:\nHe was? Why, so! go all which way it will!\nThe nobles they are fled, the commons they are cold,\nAnd will, I fear, revolt on Hereford's side.\nSirrah, get thee to Plashy, to my sister Gloucester;\nBid her send me presently a thousand pound:\nHold, take my ring.\n\nServant:\nMy lord, I had forgot to tell your lordship,\nTo-day, as I came by, I called there;\nBut I shall grieve you to report the rest.\n\nDUKE OF YORK:\nWhat is't, knave?\n\nServant:\nAn hour before I came, the duchess died.\n\nDUKE OF YORK:\nGod for his mercy! what a tide of woes\nComes rushing on this woeful land at once!\nI know not what to do: I would to God,\nSo my untruth had not provoked him to it,\nThe king had cut off my head with my brother's.\nWhat, are there no posts dispatch'd for Ireland?\nHow shall we do for money for these wars?\nCome, sister,--cousin, I would say--pray, pardon me.\nGo, fellow, get thee home, provide some carts\nAnd bring away the armour that is there.\nGentlemen, will you go muster men?\nIf I know how or which way to order these affairs\nThus thrust disorderly into my hands,\nNever believe me. Both are my kinsmen:\nThe one is my sovereign, whom both my oath\nAnd duty bids defend; the other again\nIs my kinsman, whom the king hath wrong'd,\nWhom conscience and my kindred bids to right.\nWell, somewhat we must do. Come, cousin, I'll\nDispose of you.\nGentlemen, go, muster up your men,\nAnd meet me presently at Berkeley.\nI should to Plashy too;\nBut time will not permit: all is uneven,\nAnd every thing is left at six and seven.\n\nBUSHY:\nThe wind sits fair for news to go to Ireland,\nBut none returns. For us to levy power\nProportionable to the enemy\nIs all unpossible.\n\nGREEN:\nBesides, our nearness to the king in love\nIs near the hate of those love not the king.\n\nBAGOT:\nAnd that's the wavering commons: for their love\nLies in their purses, and whoso empties them\nBy so much fills their hearts with deadly hate.\n\nBUSHY:\nWherein the king stands generally condemn'd.\n\nBAGOT:\nIf judgement lie in them, then so do we,\nBecause we ever have been near the king.\n\nGREEN:\nWell, I will for refuge straight to Bristol castle:\nThe Earl of Wiltshire is already there.\n\nBUSHY:\nThither will I with you; for little office\nThe hateful commons will perform for us,\nExcept like curs to tear us all to pieces.\nWill you go along with us?\n\nBAGOT:\nNo; I will to Ireland to his majesty.\nFarewell: if heart's presages be not vain,\nWe three here art that ne'er shall meet again.\n\nBUSHY:\nThat's as York thrives to beat back Bolingbroke.\n\nGREEN:\nAlas, poor duke! the task he undertakes\nIs numbering sands and drinking oceans dry:\nWhere one on his side fights, thousands will fly.\nFarewell at once, for once, for all, and ever.\n\nBUSHY:\nWell, we may meet again.\n\nBAGOT:\nI fear me, never.\n\nHENRY BOLINGBROKE:\nHow far is it, my lord, to Berkeley now?\n\nNORTHUMBERLAND:\nBelieve me, noble lord,\nI am a stranger here in Gloucestershire:\nThese high wild hills and rough uneven ways\nDraws out our miles, and makes them wearisome,\nAnd yet your fair discourse hath been as sugar,\nMaking the hard way sweet and delectable.\nBut I bethink me what a weary way\nFrom Ravenspurgh to Cotswold will be found\nIn Ross and Willoughby, wanting your company,\nWhich, I protest, hath very much beguiled\nThe tediousness and process of my travel:\nBut theirs is sweetened with the hope to have\nThe present benefit which I possess;\nAnd hope to joy is little less in joy\nThan hope enjoy'd: by this the weary lords\nShall make their way seem short, as mine hath done\nBy sight of what I have, your noble company.\n\nHENRY BOLINGBROKE:\nOf much less value is my company\nThan your good words. But who comes here?\n\nNORTHUMBERLAND:\nIt is my son, young Harry Percy,\nSent from my brother Worcester, whencesoever.\nHarry, how fares your uncle?\n\nHENRY PERCY:\nI had thought, my lord, to have learn'd his health of you.\n\nNORTHUMBERLAND:\nWhy, is he not with the queen?\n\nHENRY PERCY:\nNo, my good Lord; he hath forsook the court,\nBroken his staff of office and dispersed\nThe household of the king.\n\nNORTHUMBERLAND:\nWhat was his reason?\nHe was not so resolved when last we spake together.\n\nHENRY PERCY:\nBecause your lordship was proclaimed traitor.\nBut he, my lord, is gone to Ravenspurgh,\nTo offer service to the Duke of Hereford,\nAnd sent me over by Berkeley, to discover\nWhat power the Duke of York had levied there;\nThen with directions to repair to Ravenspurgh.\n\nNORTHUMBERLAND:\nHave you forgot the Duke of Hereford, boy?\n\nHENRY PERCY:\nNo, my good lord, for that is not forgot\nWhich ne'er I did remember: to my knowledge,\nI never in my life did look on him.\n\nNORTHUMBERLAND:\nThen learn to know him now; this is the duke.\n\nHENRY PERCY:\nMy gracious lord, I tender you my service,\nSuch as it is, being tender, raw and young:\nWhich elder days shall ripen and confirm\nTo more approved service and desert.\n\nHENRY BOLINGBROKE:\nI thank thee, gentle Percy; and be sure\nI count myself in nothing else so happy\nAs in a soul remembering my good friends;\nAnd, as my fortune ripens with thy love,\nIt shall be still thy true love's recompense:\nMy heart this covenant makes, my hand thus seals it.\n\nNORTHUMBERLAND:\nHow far is it to Berkeley? and what stir\nKeeps good old York there with his men of war?\n\nHENRY PERCY:\nThere stands the castle, by yon tuft of trees,\nMann'd with three hundred men, as I have heard;\nAnd in it are the Lords of York, Berkeley, and Seymour;\nNone else of name and noble estimate.\n\nNORTHUMBERLAND:\nHere come the Lords of Ross and Willoughby,\nBloody with spurring, fiery-red with haste.\n\nHENRY BOLINGBROKE:\nWelcome, my lords. I wot your love pursues\nA banish'd traitor: all my treasury\nIs yet but unfelt thanks, which more enrich'd\nShall be your love and labour's recompense.\n\nLORD ROSS:\nYour presence makes us rich, most noble lord.\n\nLORD WILLOUGHBY:\nAnd far surmounts our labour to attain it.\n\nHENRY BOLINGBROKE:\nEvermore thanks, the exchequer of the poor;\nWhich, till my infant fortune comes to years,\nStands for my bounty. But who comes here?\n\nNORTHUMBERLAND:\nIt is my Lord of Berkeley, as I guess.\n\nLORD BERKELEY:\nMy Lord of Hereford, my message is to you.\n\nHENRY BOLINGBROKE:\nMy lord, my answer is--to Lancaster;\nAnd I am come to seek that name in England;\nAnd I must find that title in your tongue,\nBefore I make reply to aught you say.\n\nLORD BERKELEY:\nMistake me not, my lord; 'tis not my meaning\nTo raze one title of your honour out:\nTo you, my lord, I come, what lord you will,\nFrom the most gracious regent of this land,\nThe Duke of York, to know what pricks you on\nTo take advantage of the absent time\nAnd fright our native peace with self-born arms.\n\nHENRY BOLINGBROKE:\nI shall not need transport my words by you;\nHere comes his grace in person. My noble uncle!\n\nDUKE OF YORK:\nShow me thy humble heart, and not thy knee,\nWhose duty is deceiveable and false.\n\nHENRY BOLINGBROKE:\nMy gracious uncle--\n\nDUKE OF YORK:\nTut, tut!\nGrace me no grace, nor uncle me no uncle:\nI am no traitor's uncle; and that word 'grace.'\nIn an ungracious mouth is but profane.\nWhy have those banish'd and forbidden legs\nDared once to touch a dust of England's ground?\nBut then more 'why?' why have they dared to march\nSo many miles upon her peaceful bosom,\nFrighting her pale-faced villages with war\nAnd ostentation of despised arms?\nComest thou because the anointed king is hence?\nWhy, foolish boy, the king is left behind,\nAnd in my loyal bosom lies his power.\nWere I but now the lord of such hot youth\nAs when brave Gaunt, thy father, and myself\nRescued the Black Prince, that young Mars of men,\nFrom forth the ranks of many thousand French,\nO, then how quickly should this arm of mine.\nNow prisoner to the palsy, chastise thee\nAnd minister correction to thy fault!\n\nHENRY BOLINGBROKE:\nMy gracious uncle, let me know my fault:\nOn what condition stands it and wherein?\n\nDUKE OF YORK:\nEven in condition of the worst degree,\nIn gross rebellion and detested treason:\nThou art a banish'd man, and here art come\nBefore the expiration of thy time,\nIn braving arms against thy sovereign.\n\nHENRY BOLINGBROKE:\nAs I was banish'd, I was banish'd Hereford;\nBut as I come, I come for Lancaster.\nAnd, noble uncle, I beseech your grace\nLook on my wrongs with an indifferent eye:\nYou are my father, for methinks in you\nI see old Gaunt alive; O, then, my father,\nWill you permit that I shall stand condemn'd\nA wandering vagabond; my rights and royalties\nPluck'd from my arms perforce and given away\nTo upstart unthrifts? Wherefore was I born?\nIf that my cousin king be King of England,\nIt must be granted I am Duke of Lancaster.\nYou have a son, Aumerle, my noble cousin;\nHad you first died, and he been thus trod down,\nHe should have found his uncle Gaunt a father,\nTo rouse his wrongs and chase them to the bay.\nI am denied to sue my livery here,\nAnd yet my letters-patents give me leave:\nMy father's goods are all distrain'd and sold,\nAnd these and all are all amiss employ'd.\nWhat would you have me do? I am a subject,\nAnd I challenge law: attorneys are denied me;\nAnd therefore, personally I lay my claim\nTo my inheritance of free descent.\n\nNORTHUMBERLAND:\nThe noble duke hath been too much abused.\n\nLORD ROSS:\nIt stands your grace upon to do him right.\n\nLORD WILLOUGHBY:\nBase men by his endowments are made great.\n\nDUKE OF YORK:\nMy lords of England, let me tell you this:\nI have had feeling of my cousin's wrongs\nAnd laboured all I could to do him right;\nBut in this kind to come, in braving arms,\nBe his own carver and cut out his way,\nTo find out right with wrong, it may not be;\nAnd you that do abet him in this kind\nCherish rebellion and are rebels all.\n\nNORTHUMBERLAND:\nThe noble duke hath sworn his coming is\nBut for his own; and for the right of that\nWe all have strongly sworn to give him aid;\nAnd let him ne'er see joy that breaks that oath!\n\nDUKE OF YORK:\nWell, well, I see the issue of these arms:\nI cannot mend it, I must needs confess,\nBecause my power is weak and all ill left:\nBut if I could, by Him that gave me life,\nI would attach you all and make you stoop\nUnto the sovereign mercy of the king;\nBut since I cannot, be it known to you\nI do remain as neuter. So, fare you well;\nUnless you please to enter in the castle\nAnd there repose you for this night.\n\nHENRY BOLINGBROKE:\nAn offer, uncle, that we will accept:\nBut we must win your grace to go with us\nTo Bristol castle, which they say is held\nBy Bushy, Bagot and their complices,\nThe caterpillars of the commonwealth,\nWhich I have sworn to weed and pluck away.\n\nDUKE OF YORK:\nIt may be I will go with you: but yet I'll pause;\nFor I am loath to break our country's laws.\nNor friends nor foes, to me welcome you are:\nThings past redress are now with me past care.\n\nCaptain:\nMy lord of Salisbury, we have stay'd ten days,\nAnd hardly kept our countrymen together,\nAnd yet we hear no tidings from the king;\nTherefore we will disperse ourselves: farewell.\n\nEARL OF SALISBURY:\nStay yet another day, thou trusty Welshman:\nThe king reposeth all his confidence in thee.\n\nCaptain:\n'Tis thought the king is dead; we will not stay.\nThe bay-trees in our country are all wither'd\nAnd meteors fright the fixed stars of heaven;\nThe pale-faced moon looks bloody on the earth\nAnd lean-look'd prophets whisper fearful change;\nRich men look sad and ruffians dance and leap,\nThe one in fear to lose what they enjoy,\nThe other to enjoy by rage and war:\nThese signs forerun the death or fall of kings.\nFarewell: our countrymen are gone and fled,\nAs well assured Richard their king is dead.\n\nEARL OF SALISBURY:\nAh, Richard, with the eyes of heavy mind\nI see thy glory like a shooting star\nFall to the base earth from the firmament.\nThy sun sets weeping in the lowly west,\nWitnessing storms to come, woe and unrest:\nThy friends are fled to wait upon thy foes,\nAnd crossly to thy good all fortune goes.\n\nHENRY BOLINGBROKE:\nBring forth these men.\nBushy and Green, I will not vex your souls--\nSince presently your souls must part your bodies--\nWith too much urging your pernicious lives,\nFor 'twere no charity; yet, to wash your blood\nFrom off my hands, here in the view of men\nI will unfold some causes of your deaths.\nYou have misled a prince, a royal king,\nA happy gentleman in blood and lineaments,\nBy you unhappied and disfigured clean:\nYou have in manner with your sinful hours\nMade a divorce betwixt his queen and him,\nBroke the possession of a royal bed\nAnd stain'd the beauty of a fair queen's cheeks\nWith tears drawn from her eyes by your foul wrongs.\nMyself, a prince by fortune of my birth,\nNear to the king in blood, and near in love\nTill you did make him misinterpret me,\nHave stoop'd my neck under your injuries,\nAnd sigh'd my English breath in foreign clouds,\nEating the bitter bread of banishment;\nWhilst you have fed upon my signories,\nDispark'd my parks and fell'd my forest woods,\nFrom my own windows torn my household coat,\nRazed out my imprese, leaving me no sign,\nSave men's opinions and my living blood,\nTo show the world I am a gentleman.\nThis and much more, much more than twice all this,\nCondemns you to the death. See them deliver'd over\nTo execution and the hand of death.\n\nBUSHY:\nMore welcome is the stroke of death to me\nThan Bolingbroke to England. Lords, farewell.\n\nGREEN:\nMy comfort is that heaven will take our souls\nAnd plague injustice with the pains of hell.\n\nHENRY BOLINGBROKE:\nMy Lord Northumberland, see them dispatch'd.\nUncle, you say the queen is at your house;\nFor God's sake, fairly let her be entreated:\nTell her I send to her my kind commends;\nTake special care my greetings be deliver'd.\n\nDUKE OF YORK:\nA gentleman of mine I have dispatch'd\nWith letters of your love to her at large.\n\nHENRY BOLINGBROKE:\nThank, gentle uncle. Come, lords, away.\nTo fight with Glendower and his complices:\nAwhile to work, and after holiday.\n\nKING RICHARD II:\nBarkloughly castle call they this at hand?\n\nDUKE OF AUMERLE:\nYea, my lord. How brooks your grace the air,\nAfter your late tossing on the breaking seas?\n\nKING RICHARD II:\nNeeds must I like it well: I weep for joy\nTo stand upon my kingdom once again.\nDear earth, I do salute thee with my hand,\nThough rebels wound thee with their horses' hoofs:\nAs a long-parted mother with her child\nPlays fondly with her tears and smiles in meeting,\nSo, weeping, smiling, greet I thee, my earth,\nAnd do thee favours with my royal hands.\nFeed not thy sovereign's foe, my gentle earth,\nNor with thy sweets comfort his ravenous sense;\nBut let thy spiders, that suck up thy venom,\nAnd heavy-gaited toads lie in their way,\nDoing annoyance to the treacherous feet\nWhich with usurping steps do trample thee:\nYield stinging nettles to mine enemies;\nAnd when they from thy bosom pluck a flower,\nGuard it, I pray thee, with a lurking adder\nWhose double tongue may with a mortal touch\nThrow death upon thy sovereign's enemies.\nMock not my senseless conjuration, lords:\nThis earth shall have a feeling and these stones\nProve armed soldiers, ere her native king\nShall falter under foul rebellion's arms.\n\nBISHOP OF CARLISLE:\nFear not, my lord: that Power that made you king\nHath power to keep you king in spite of all.\nThe means that heaven yields must be embraced,\nAnd not neglected; else, if heaven would,\nAnd we will not, heaven's offer we refuse,\nThe proffer'd means of succor and redress.\n\nDUKE OF AUMERLE:\nHe means, my lord, that we are too remiss;\nWhilst Bolingbroke, through our security,\nGrows strong and great in substance and in power.\n\nKING RICHARD II:\nDiscomfortable cousin! know'st thou not\nThat when the searching eye of heaven is hid,\nBehind the globe, that lights the lower world,\nThen thieves and robbers range abroad unseen\nIn murders and in outrage, boldly here;\nBut when from under this terrestrial ball\nHe fires the proud tops of the eastern pines\nAnd darts his light through every guilty hole,\nThen murders, treasons and detested sins,\nThe cloak of night being pluck'd from off their backs,\nStand bare and naked, trembling at themselves?\nSo when this thief, this traitor, Bolingbroke,\nWho all this while hath revell'd in the night\nWhilst we were wandering with the antipodes,\nShall see us rising in our throne, the east,\nHis treasons will sit blushing in his face,\nNot able to endure the sight of day,\nBut self-affrighted tremble at his sin.\nNot all the water in the rough rude sea\nCan wash the balm off from an anointed king;\nThe breath of worldly men cannot depose\nThe deputy elected by the Lord:\nFor every man that Bolingbroke hath press'd\nTo lift shrewd steel against our golden crown,\nGod for his Richard hath in heavenly pay\nA glorious angel: then, if angels fight,\nWeak men must fall, for heaven still guards the right.\nWelcome, my lord how far off lies your power?\n\nEARL OF SALISBURY:\nNor near nor farther off, my gracious lord,\nThan this weak arm: discomfort guides my tongue\nAnd bids me speak of nothing but despair.\nOne day too late, I fear me, noble lord,\nHath clouded all thy happy days on earth:\nO, call back yesterday, bid time return,\nAnd thou shalt have twelve thousand fighting men!\nTo-day, to-day, unhappy day, too late,\nO'erthrows thy joys, friends, fortune and thy state:\nFor all the Welshmen, hearing thou wert dead.\nAre gone to Bolingbroke, dispersed and fled.\n\nDUKE OF AUMERLE:\nComfort, my liege; why looks your grace so pale?\n\nKING RICHARD II:\nBut now the blood of twenty thousand men\nDid triumph in my face, and they are fled;\nAnd, till so much blood thither come again,\nHave I not reason to look pale and dead?\nAll souls that will be safe fly from my side,\nFor time hath set a blot upon my pride.\n\nDUKE OF AUMERLE:\nComfort, my liege; remember who you are.\n\nKING RICHARD II:\nI had forgot myself; am I not king?\nAwake, thou coward majesty! thou sleepest.\nIs not the king's name twenty thousand names?\nArm, arm, my name! a puny subject strikes\nAt thy great glory. Look not to the ground,\nYe favourites of a king: are we not high?\nHigh be our thoughts: I know my uncle York\nHath power enough to serve our turn. But who comes here?\n\nSIR STEPHEN SCROOP:\nMore health and happiness betide my liege\nThan can my care-tuned tongue deliver him!\n\nKING RICHARD II:\nMine ear is open and my heart prepared;\nThe worst is worldly loss thou canst unfold.\nSay, is my kingdom lost? why, 'twas my care\nAnd what loss is it to be rid of care?\nStrives Bolingbroke to be as great as we?\nGreater he shall not be; if he serve God,\nWe'll serve Him too and be his fellow so:\nRevolt our subjects? that we cannot mend;\nThey break their faith to God as well as us:\nCry woe, destruction, ruin and decay:\nThe worst is death, and death will have his day.\n\nSIR STEPHEN SCROOP:\nGlad am I that your highness is so arm'd\nTo bear the tidings of calamity.\nLike an unseasonable stormy day,\nWhich makes the silver rivers drown their shores,\nAs if the world were all dissolved to tears,\nSo high above his limits swells the rage\nOf Bolingbroke, covering your fearful land\nWith hard bright steel and hearts harder than steel.\nWhite-beards have arm'd their thin and hairless scalps\nAgainst thy majesty; boys, with women's voices,\nStrive to speak big and clap their female joints\nIn stiff unwieldy arms against thy crown:\nThe very beadsmen learn to bend their bows\nOf double-fatal yew against thy state;\nYea, distaff-women manage rusty bills\nAgainst thy seat: both young and old rebel,\nAnd all goes worse than I have power to tell.\n\nKING RICHARD II:\nToo well, too well thou tell'st a tale so ill.\nWhere is the Earl of Wiltshire? where is Bagot?\nWhat is become of Bushy? where is Green?\nThat they have let the dangerous enemy\nMeasure our confines with such peaceful steps?\nIf we prevail, their heads shall pay for it:\nI warrant they have made peace with Bolingbroke.\n\nSIR STEPHEN SCROOP:\nPeace have they made with him indeed, my lord.\n\nKING RICHARD II:\nO villains, vipers, damn'd without redemption!\nDogs, easily won to fawn on any man!\nSnakes, in my heart-blood warm'd, that sting my heart!\nThree Judases, each one thrice worse than Judas!\nWould they make peace? terrible hell make war\nUpon their spotted souls for this offence!\n\nSIR STEPHEN SCROOP:\nSweet love, I see, changing his property,\nTurns to the sourest and most deadly hate:\nAgain uncurse their souls; their peace is made\nWith heads, and not with hands; those whom you curse\nHave felt the worst of death's destroying wound\nAnd lie full low, graved in the hollow ground.\n\nDUKE OF AUMERLE:\nIs Bushy, Green, and the Earl of Wiltshire dead?\n\nSIR STEPHEN SCROOP:\nAy, all of them at Bristol lost their heads.\n\nDUKE OF AUMERLE:\nWhere is the duke my father with his power?\n\nKING RICHARD II:\nNo matter where; of comfort no man speak:\nLet's talk of graves, of worms, and epitaphs;\nMake dust our paper and with rainy eyes\nWrite sorrow on the bosom of the earth,\nLet's choose executors and talk of wills:\nAnd yet not so, for what can we bequeath\nSave our deposed bodies to the ground?\nOur lands, our lives and all are Bolingbroke's,\nAnd nothing can we call our own but death\nAnd that small model of the barren earth\nWhich serves as paste and cover to our bones.\nFor God's sake, let us sit upon the ground\nAnd tell sad stories of the death of kings;\nHow some have been deposed; some slain in war,\nSome haunted by the ghosts they have deposed;\nSome poison'd by their wives: some sleeping kill'd;\nAll murder'd: for within the hollow crown\nThat rounds the mortal temples of a king\nKeeps Death his court and there the antic sits,\nScoffing his state and grinning at his pomp,\nAllowing him a breath, a little scene,\nTo monarchize, be fear'd and kill with looks,\nInfusing him with self and vain conceit,\nAs if this flesh which walls about our life,\nWere brass impregnable, and humour'd thus\nComes at the last and with a little pin\nBores through his castle wall, and farewell king!\nCover your heads and mock not flesh and blood\nWith solemn reverence: throw away respect,\nTradition, form and ceremonious duty,\nFor you have but mistook me all this while:\nI live with bread like you, feel want,\nTaste grief, need friends: subjected thus,\nHow can you say to me, I am a king?\n\nBISHOP OF CARLISLE:\nMy lord, wise men ne'er sit and wail their woes,\nBut presently prevent the ways to wail.\nTo fear the foe, since fear oppresseth strength,\nGives in your weakness strength unto your foe,\nAnd so your follies fight against yourself.\nFear and be slain; no worse can come to fight:\nAnd fight and die is death destroying death;\nWhere fearing dying pays death servile breath.\n\nDUKE OF AUMERLE:\nMy father hath a power; inquire of him\nAnd learn to make a body of a limb.\n\nKING RICHARD II:\nThou chidest me well: proud Bolingbroke, I come\nTo change blows with thee for our day of doom.\nThis ague fit of fear is over-blown;\nAn easy task it is to win our own.\nSay, Scroop, where lies our uncle with his power?\nSpeak sweetly, man, although thy looks be sour.\n\nSIR STEPHEN SCROOP:\nMen judge by the complexion of the sky\nThe state and inclination of the day:\nSo may you by my dull and heavy eye,\nMy tongue hath but a heavier tale to say.\nI play the torturer, by small and small\nTo lengthen out the worst that must be spoken:\nYour uncle York is join'd with Bolingbroke,\nAnd all your northern castles yielded up,\nAnd all your southern gentlemen in arms\nUpon his party.\n\nKING RICHARD II:\nThou hast said enough.\nBeshrew thee, cousin, which didst lead me forth\nOf that sweet way I was in to despair!\nWhat say you now? what comfort have we now?\nBy heaven, I'll hate him everlastingly\nThat bids me be of comfort any more.\nGo to Flint castle: there I'll pine away;\nA king, woe's slave, shall kingly woe obey.\nThat power I have, discharge; and let them go\nTo ear the land that hath some hope to grow,\nFor I have none: let no man speak again\nTo alter this, for counsel is but vain.\n\nDUKE OF AUMERLE:\nMy liege, one word.\n\nKING RICHARD II:\nHe does me double wrong\nThat wounds me with the flatteries of his tongue.\nDischarge my followers: let them hence away,\nFrom Richard's night to Bolingbroke's fair day.\n\nHENRY BOLINGBROKE:\nSo that by this intelligence we learn\nThe Welshmen are dispersed, and Salisbury\nIs gone to meet the king, who lately landed\nWith some few private friends upon this coast.\n\nNORTHUMBERLAND:\nThe news is very fair and good, my lord:\nRichard not far from hence hath hid his head.\n\nDUKE OF YORK:\nIt would beseem the Lord Northumberland\nTo say 'King Richard:' alack the heavy day\nWhen such a sacred king should hide his head.\n\nNORTHUMBERLAND:\nYour grace mistakes; only to be brief\nLeft I his title out.\n\nDUKE OF YORK:\nThe time hath been,\nWould you have been so brief with him, he would\nHave been so brief with you, to shorten you,\nFor taking so the head, your whole head's length.\n\nHENRY BOLINGBROKE:\nMistake not, uncle, further than you should.\n\nDUKE OF YORK:\nTake not, good cousin, further than you should.\nLest you mistake the heavens are o'er our heads.\n\nHENRY BOLINGBROKE:\nI know it, uncle, and oppose not myself\nAgainst their will. But who comes here?\nWelcome, Harry: what, will not this castle yield?\n\nHENRY PERCY:\nThe castle royally is mann'd, my lord,\nAgainst thy entrance.\n\nHENRY BOLINGBROKE:\nRoyally!\nWhy, it contains no king?\n\nHENRY PERCY:\nYes, my good lord,\nIt doth contain a king; King Richard lies\nWithin the limits of yon lime and stone:\nAnd with him are the Lord Aumerle, Lord Salisbury,\nSir Stephen Scroop, besides a clergyman\nOf holy reverence; who, I cannot learn.\n\nNORTHUMBERLAND:\nO, belike it is the Bishop of Carlisle.\n\nHENRY BOLINGBROKE:\nNoble lords,\nGo to the rude ribs of that ancient castle;\nThrough brazen trumpet send the breath of parley\nInto his ruin'd ears, and thus deliver:\nHenry Bolingbroke\nOn both his knees doth kiss King Richard's hand\nAnd sends allegiance and true faith of heart\nTo his most royal person, hither come\nEven at his feet to lay my arms and power,\nProvided that my banishment repeal'd\nAnd lands restored again be freely granted:\nIf not, I'll use the advantage of my power\nAnd lay the summer's dust with showers of blood\nRain'd from the wounds of slaughter'd Englishmen:\nThe which, how far off from the mind of Bolingbroke\nIt is, such crimson tempest should bedrench\nThe fresh green lap of fair King Richard's land,\nMy stooping duty tenderly shall show.\nGo, signify as much, while here we march\nUpon the grassy carpet of this plain.\nLet's march without the noise of threatening drum,\nThat from this castle's tatter'd battlements\nOur fair appointments may be well perused.\nMethinks King Richard and myself should meet\nWith no less terror than the elements\nOf fire and water, when their thundering shock\nAt meeting tears the cloudy cheeks of heaven.\nBe he the fire, I'll be the yielding water:\nThe rage be his, whilst on the earth I rain\nMy waters; on the earth, and not on him.\nMarch on, and mark King Richard how he looks.\nSee, see, King Richard doth himself appear,\nAs doth the blushing discontented sun\nFrom out the fiery portal of the east,\nWhen he perceives the envious clouds are bent\nTo dim his glory and to stain the track\nOf his bright passage to the occident.\n\nDUKE OF YORK:\nYet looks he like a king: behold, his eye,\nAs bright as is the eagle's, lightens forth\nControlling majesty: alack, alack, for woe,\nThat any harm should stain so fair a show!\n\nKING RICHARD II:\nWe are amazed; and thus long have we stood\nTo watch the fearful bending of thy knee,\nBecause we thought ourself thy lawful king:\nAnd if we be, how dare thy joints forget\nTo pay their awful duty to our presence?\nIf we be not, show us the hand of God\nThat hath dismissed us from our stewardship;\nFor well we know, no hand of blood and bone\nCan gripe the sacred handle of our sceptre,\nUnless he do profane, steal, or usurp.\nAnd though you think that all, as you have done,\nHave torn their souls by turning them from us,\nAnd we are barren and bereft of friends;\nYet know, my master, God omnipotent,\nIs mustering in his clouds on our behalf\nArmies of pestilence; and they shall strike\nYour children yet unborn and unbegot,\nThat lift your vassal hands against my head\nAnd threat the glory of my precious crown.\nTell Bolingbroke--for yond methinks he stands--\nThat every stride he makes upon my land\nIs dangerous treason: he is come to open\nThe purple testament of bleeding war;\nBut ere the crown he looks for live in peace,\nTen thousand bloody crowns of mothers' sons\nShall ill become the flower of England's face,\nChange the complexion of her maid-pale peace\nTo scarlet indignation and bedew\nHer pastures' grass with faithful English blood.\n\nNORTHUMBERLAND:\nThe king of heaven forbid our lord the king\nShould so with civil and uncivil arms\nBe rush'd upon! Thy thrice noble cousin\nHarry Bolingbroke doth humbly kiss thy hand;\nAnd by the honourable tomb he swears,\nThat stands upon your royal grandsire's bones,\nAnd by the royalties of both your bloods,\nCurrents that spring from one most gracious head,\nAnd by the buried hand of warlike Gaunt,\nAnd by the worth and honour of himself,\nComprising all that may be sworn or said,\nHis coming hither hath no further scope\nThan for his lineal royalties and to beg\nEnfranchisement immediate on his knees:\nWhich on thy royal party granted once,\nHis glittering arms he will commend to rust,\nHis barbed steeds to stables, and his heart\nTo faithful service of your majesty.\nThis swears he, as he is a prince, is just;\nAnd, as I am a gentleman, I credit him.\n\nKING RICHARD II:\nNorthumberland, say thus the king returns:\nHis noble cousin is right welcome hither;\nAnd all the number of his fair demands\nShall be accomplish'd without contradiction:\nWith all the gracious utterance thou hast\nSpeak to his gentle hearing kind commends.\nWe do debase ourselves, cousin, do we not,\nTo look so poorly and to speak so fair?\nShall we call back Northumberland, and send\nDefiance to the traitor, and so die?\n\nDUKE OF AUMERLE:\nNo, good my lord; let's fight with gentle words\nTill time lend friends and friends their helpful swords.\n\nKING RICHARD II:\nO God, O God! that e'er this tongue of mine,\nThat laid the sentence of dread banishment\nOn yon proud man, should take it off again\nWith words of sooth! O that I were as great\nAs is my grief, or lesser than my name!\nOr that I could forget what I have been,\nOr not remember what I must be now!\nSwell'st thou, proud heart? I'll give thee scope to beat,\nSince foes have scope to beat both thee and me.\n\nDUKE OF AUMERLE:\nNorthumberland comes back from Bolingbroke.\n\nKING RICHARD II:\nWhat must the king do now? must he submit?\nThe king shall do it: must he be deposed?\nThe king shall be contented: must he lose\nThe name of king? o' God's name, let it go:\nI'll give my jewels for a set of beads,\nMy gorgeous palace for a hermitage,\nMy gay apparel for an almsman's gown,\nMy figured goblets for a dish of wood,\nMy sceptre for a palmer's walking staff,\nMy subjects for a pair of carved saints\nAnd my large kingdom for a little grave,\nA little little grave, an obscure grave;\nOr I'll be buried in the king's highway,\nSome way of common trade, where subjects' feet\nMay hourly trample on their sovereign's head;\nFor on my heart they tread now whilst I live;\nAnd buried once, why not upon my head?\nAumerle, thou weep'st, my tender-hearted cousin!\nWe'll make foul weather with despised tears;\nOur sighs and they shall lodge the summer corn,\nAnd make a dearth in this revolting land.\nOr shall we play the wantons with our woes,\nAnd make some pretty match with shedding tears?\nAs thus, to drop them still upon one place,\nTill they have fretted us a pair of graves\nWithin the earth; and, therein laid,--there lies\nTwo kinsmen digg'd their graves with weeping eyes.\nWould not this ill do well? Well, well, I see\nI talk but idly, and you laugh at me.\nMost mighty prince, my Lord Northumberland,\nWhat says King Bolingbroke? will his majesty\nGive Richard leave to live till Richard die?\nYou make a leg, and Bolingbroke says ay.\n\nNORTHUMBERLAND:\nMy lord, in the base court he doth attend\nTo speak with you; may it please you to come down.\n\nKING RICHARD II:\nDown, down I come; like glistering Phaethon,\nWanting the manage of unruly jades.\nIn the base court? Base court, where kings grow base,\nTo come at traitors' calls and do them grace.\nIn the base court? Come down? Down, court!\ndown, king!\nFor night-owls shriek where mounting larks\nshould sing.\n\nHENRY BOLINGBROKE:\nWhat says his majesty?\n\nNORTHUMBERLAND:\nSorrow and grief of heart\nMakes him speak fondly, like a frantic man\nYet he is come.\n\nHENRY BOLINGBROKE:\nStand all apart,\nAnd show fair duty to his majesty.\nMy gracious lord,--\n\nKING RICHARD II:\nFair cousin, you debase your princely knee\nTo make the base earth proud with kissing it:\nMe rather had my heart might feel your love\nThan my unpleased eye see your courtesy.\nUp, cousin, up; your heart is up, I know,\nThus high at least, although your knee be low.\n\nHENRY BOLINGBROKE:\nMy gracious lord, I come but for mine own.\n\nKING RICHARD II:\nYour own is yours, and I am yours, and all.\n\nHENRY BOLINGBROKE:\nSo far be mine, my most redoubted lord,\nAs my true service shall deserve your love.\n\nKING RICHARD II:\nWell you deserve: they well deserve to have,\nThat know the strong'st and surest way to get.\nUncle, give me your hands: nay, dry your eyes;\nTears show their love, but want their remedies.\nCousin, I am too young to be your father,\nThough you are old enough to be my heir.\nWhat you will have, I'll give, and willing too;\nFor do we must what force will have us do.\nSet on towards London, cousin, is it so?\n\nHENRY BOLINGBROKE:\nYea, my good lord.\n\nKING RICHARD II:\nThen I must not say no.\n\nQUEEN:\nWhat sport shall we devise here in this garden,\nTo drive away the heavy thought of care?\n\nLady:\nMadam, we'll play at bowls.\n\nQUEEN:\n'Twill make me think the world is full of rubs,\nAnd that my fortune rubs against the bias.\n\nLady:\nMadam, we'll dance.\n\nQUEEN:\nMy legs can keep no measure in delight,\nWhen my poor heart no measure keeps in grief:\nTherefore, no dancing, girl; some other sport.\n\nLady:\nMadam, we'll tell tales.\n\nQUEEN:\nOf sorrow or of joy?\n\nLady:\nOf either, madam.\n\nQUEEN:\nOf neither, girl:\nFor of joy, being altogether wanting,\nIt doth remember me the more of sorrow;\nOr if of grief, being altogether had,\nIt adds more sorrow to my want of joy:\nFor what I have I need not to repeat;\nAnd what I want it boots not to complain.\n\nLady:\nMadam, I'll sing.\n\nQUEEN:\n'Tis well that thou hast cause\nBut thou shouldst please me better, wouldst thou weep.\n\nLady:\nI could weep, madam, would it do you good.\n\nQUEEN:\nAnd I could sing, would weeping do me good,\nAnd never borrow any tear of thee.\nBut stay, here come the gardeners:\nLet's step into the shadow of these trees.\nMy wretchedness unto a row of pins,\nThey'll talk of state; for every one doth so\nAgainst a change; woe is forerun with woe.\n\nGardener:\nGo, bind thou up yon dangling apricocks,\nWhich, like unruly children, make their sire\nStoop with oppression of their prodigal weight:\nGive some supportance to the bending twigs.\nGo thou, and like an executioner,\nCut off the heads of too fast growing sprays,\nThat look too lofty in our commonwealth:\nAll must be even in our government.\nYou thus employ'd, I will go root away\nThe noisome weeds, which without profit suck\nThe soil's fertility from wholesome flowers.\n\nServant:\nWhy should we in the compass of a pale\nKeep law and form and due proportion,\nShowing, as in a model, our firm estate,\nWhen our sea-walled garden, the whole land,\nIs full of weeds, her fairest flowers choked up,\nHer fruit-trees all upturned, her hedges ruin'd,\nHer knots disorder'd and her wholesome herbs\nSwarming with caterpillars?\n\nGardener:\nHold thy peace:\nHe that hath suffer'd this disorder'd spring\nHath now himself met with the fall of leaf:\nThe weeds which his broad-spreading leaves did shelter,\nThat seem'd in eating him to hold him up,\nAre pluck'd up root and all by Bolingbroke,\nI mean the Earl of Wiltshire, Bushy, Green.\n\nServant:\nWhat, are they dead?\n\nGardener:\nThey are; and Bolingbroke\nHath seized the wasteful king. O, what pity is it\nThat he had not so trimm'd and dress'd his land\nAs we this garden! We at time of year\nDo wound the bark, the skin of our fruit-trees,\nLest, being over-proud in sap and blood,\nWith too much riches it confound itself:\nHad he done so to great and growing men,\nThey might have lived to bear and he to taste\nTheir fruits of duty: superfluous branches\nWe lop away, that bearing boughs may live:\nHad he done so, himself had borne the crown,\nWhich waste of idle hours hath quite thrown down.\n\nServant:\nWhat, think you then the king shall be deposed?\n\nGardener:\nDepress'd he is already, and deposed\n'Tis doubt he will be: letters came last night\nTo a dear friend of the good Duke of York's,\nThat tell black tidings.\n\nQUEEN:\nO, I am press'd to death through want of speaking!\nThou, old Adam's likeness, set to dress this garden,\nHow dares thy harsh rude tongue sound this unpleasing news?\nWhat Eve, what serpent, hath suggested thee\nTo make a second fall of cursed man?\nWhy dost thou say King Richard is deposed?\nDarest thou, thou little better thing than earth,\nDivine his downfall? Say, where, when, and how,\nCamest thou by this ill tidings? speak, thou wretch.\n\nGardener:\nPardon me, madam: little joy have I\nTo breathe this news; yet what I say is true.\nKing Richard, he is in the mighty hold\nOf Bolingbroke: their fortunes both are weigh'd:\nIn your lord's scale is nothing but himself,\nAnd some few vanities that make him light;\nBut in the balance of great Bolingbroke,\nBesides himself, are all the English peers,\nAnd with that odds he weighs King Richard down.\nPost you to London, and you will find it so;\nI speak no more than every one doth know.\n\nQUEEN:\nNimble mischance, that art so light of foot,\nDoth not thy embassage belong to me,\nAnd am I last that knows it? O, thou think'st\nTo serve me last, that I may longest keep\nThy sorrow in my breast. Come, ladies, go,\nTo meet at London London's king in woe.\nWhat, was I born to this, that my sad look\nShould grace the triumph of great Bolingbroke?\nGardener, for telling me these news of woe,\nPray God the plants thou graft'st may never grow.\n\nGARDENER:\nPoor queen! so that thy state might be no worse,\nI would my skill were subject to thy curse.\nHere did she fall a tear; here in this place\nI'll set a bank of rue, sour herb of grace:\nRue, even for ruth, here shortly shall be seen,\nIn the remembrance of a weeping queen.\n\nHENRY BOLINGBROKE:\nCall forth Bagot.\nNow, Bagot, freely speak thy mind;\nWhat thou dost know of noble Gloucester's death,\nWho wrought it with the king, and who perform'd\nThe bloody office of his timeless end.\n\nBAGOT:\nThen set before my face the Lord Aumerle.\n\nHENRY BOLINGBROKE:\nCousin, stand forth, and look upon that man.\n\nBAGOT:\nMy Lord Aumerle, I know your daring tongue\nScorns to unsay what once it hath deliver'd.\nIn that dead time when Gloucester's death was plotted,\nI heard you say, 'Is not my arm of length,\nThat reacheth from the restful English court\nAs far as Calais, to mine uncle's head?'\nAmongst much other talk, that very time,\nI heard you say that you had rather refuse\nThe offer of an hundred thousand crowns\nThan Bolingbroke's return to England;\nAdding withal how blest this land would be\nIn this your cousin's death.\n\nDUKE OF AUMERLE:\nPrinces and noble lords,\nWhat answer shall I make to this base man?\nShall I so much dishonour my fair stars,\nOn equal terms to give him chastisement?\nEither I must, or have mine honour soil'd\nWith the attainder of his slanderous lips.\nThere is my gage, the manual seal of death,\nThat marks thee out for hell: I say, thou liest,\nAnd will maintain what thou hast said is false\nIn thy heart-blood, though being all too base\nTo stain the temper of my knightly sword.\n\nHENRY BOLINGBROKE:\nBagot, forbear; thou shalt not take it up.\n\nDUKE OF AUMERLE:\nExcepting one, I would he were the best\nIn all this presence that hath moved me so.\n\nLORD FITZWATER:\nIf that thy valour stand on sympathy,\nThere is my gage, Aumerle, in gage to thine:\nBy that fair sun which shows me where thou stand'st,\nI heard thee say, and vauntingly thou spakest it\nThat thou wert cause of noble Gloucester's death.\nIf thou deny'st it twenty times, thou liest;\nAnd I will turn thy falsehood to thy heart,\nWhere it was forged, with my rapier's point.\n\nDUKE OF AUMERLE:\nThou darest not, coward, live to see that day.\n\nLORD FITZWATER:\nNow by my soul, I would it were this hour.\n\nDUKE OF AUMERLE:\nFitzwater, thou art damn'd to hell for this.\n\nHENRY PERCY:\nAumerle, thou liest; his honour is as true\nIn this appeal as thou art all unjust;\nAnd that thou art so, there I throw my gage,\nTo prove it on thee to the extremest point\nOf mortal breathing: seize it, if thou darest.\n\nDUKE OF AUMERLE:\nAn if I do not, may my hands rot off\nAnd never brandish more revengeful steel\nOver the glittering helmet of my foe!\n\nLord:\nI task the earth to the like, forsworn Aumerle;\nAnd spur thee on with full as many lies\nAs may be holloa'd in thy treacherous ear\nFrom sun to sun: there is my honour's pawn;\nEngage it to the trial, if thou darest.\n\nDUKE OF AUMERLE:\nWho sets me else? by heaven, I'll throw at all:\nI have a thousand spirits in one breast,\nTo answer twenty thousand such as you.\n\nDUKE OF SURREY:\nMy Lord Fitzwater, I do remember well\nThe very time Aumerle and you did talk.\n\nLORD FITZWATER:\n'Tis very true: you were in presence then;\nAnd you can witness with me this is true.\n\nDUKE OF SURREY:\nAs false, by heaven, as heaven itself is true.\n\nLORD FITZWATER:\nSurrey, thou liest.\n\nDUKE OF SURREY:\nDishonourable boy!\nThat lie shall lie so heavy on my sword,\nThat it shall render vengeance and revenge\nTill thou the lie-giver and that lie do lie\nIn earth as quiet as thy father's skull:\nIn proof whereof, there is my honour's pawn;\nEngage it to the trial, if thou darest.\n\nLORD FITZWATER:\nHow fondly dost thou spur a forward horse!\nIf I dare eat, or drink, or breathe, or live,\nI dare meet Surrey in a wilderness,\nAnd spit upon him, whilst I say he lies,\nAnd lies, and lies: there is my bond of faith,\nTo tie thee to my strong correction.\nAs I intend to thrive in this new world,\nAumerle is guilty of my true appeal:\nBesides, I heard the banish'd Norfolk say\nThat thou, Aumerle, didst send two of thy men\nTo execute the noble duke at Calais.\n\nDUKE OF AUMERLE:\nSome honest Christian trust me with a gage\nThat Norfolk lies: here do I throw down this,\nIf he may be repeal'd, to try his honour.\n\nHENRY BOLINGBROKE:\nThese differences shall all rest under gage\nTill Norfolk be repeal'd: repeal'd he shall be,\nAnd, though mine enemy, restored again\nTo all his lands and signories: when he's return'd,\nAgainst Aumerle we will enforce his trial.\n\nBISHOP OF CARLISLE:\nThat honourable day shall ne'er be seen.\nMany a time hath banish'd Norfolk fought\nFor Jesu Christ in glorious Christian field,\nStreaming the ensign of the Christian cross\nAgainst black pagans, Turks, and Saracens:\nAnd toil'd with works of war, retired himself\nTo Italy; and there at Venice gave\nHis body to that pleasant country's earth,\nAnd his pure soul unto his captain Christ,\nUnder whose colours he had fought so long.\n\nHENRY BOLINGBROKE:\nWhy, bishop, is Norfolk dead?\n\nBISHOP OF CARLISLE:\nAs surely as I live, my lord.\n\nHENRY BOLINGBROKE:\nSweet peace conduct his sweet soul to the bosom\nOf good old Abraham! Lords appellants,\nYour differences shall all rest under gage\nTill we assign you to your days of trial.\n\nDUKE OF YORK:\nGreat Duke of Lancaster, I come to thee\nFrom plume-pluck'd Richard; who with willing soul\nAdopts thee heir, and his high sceptre yields\nTo the possession of thy royal hand:\nAscend his throne, descending now from him;\nAnd long live Henry, fourth of that name!\n\nHENRY BOLINGBROKE:\nIn God's name, I'll ascend the regal throne.\n\nBISHOP OF CARLISLE:\nMarry. God forbid!\nWorst in this royal presence may I speak,\nYet best beseeming me to speak the truth.\nWould God that any in this noble presence\nWere enough noble to be upright judge\nOf noble Richard! then true noblesse would\nLearn him forbearance from so foul a wrong.\nWhat subject can give sentence on his king?\nAnd who sits here that is not Richard's subject?\nThieves are not judged but they are by to hear,\nAlthough apparent guilt be seen in them;\nAnd shall the figure of God's majesty,\nHis captain, steward, deputy-elect,\nAnointed, crowned, planted many years,\nBe judged by subject and inferior breath,\nAnd he himself not present? O, forfend it, God,\nThat in a Christian climate souls refined\nShould show so heinous, black, obscene a deed!\nI speak to subjects, and a subject speaks,\nStirr'd up by God, thus boldly for his king:\nMy Lord of Hereford here, whom you call king,\nIs a foul traitor to proud Hereford's king:\nAnd if you crown him, let me prophesy:\nThe blood of English shall manure the ground,\nAnd future ages groan for this foul act;\nPeace shall go sleep with Turks and infidels,\nAnd in this seat of peace tumultuous wars\nShall kin with kin and kind with kind confound;\nDisorder, horror, fear and mutiny\nShall here inhabit, and this land be call'd\nThe field of Golgotha and dead men's skulls.\nO, if you raise this house against this house,\nIt will the woefullest division prove\nThat ever fell upon this cursed earth.\nPrevent it, resist it, let it not be so,\nLest child, child's children, cry against you woe!\n\nNORTHUMBERLAND:\nWell have you argued, sir; and, for your pains,\nOf capital treason we arrest you here.\nMy Lord of Westminster, be it your charge\nTo keep him safely till his day of trial.\nMay it please you, lords, to grant the commons' suit.\n\nHENRY BOLINGBROKE:\nFetch hither Richard, that in common view\nHe may surrender; so we shall proceed\nWithout suspicion.\n\nDUKE OF YORK:\nI will be his conduct.\n\nHENRY BOLINGBROKE:\nLords, you that here are under our arrest,\nProcure your sureties for your days of answer.\nLittle are we beholding to your love,\nAnd little look'd for at your helping hands.\n\nKING RICHARD II:\nAlack, why am I sent for to a king,\nBefore I have shook off the regal thoughts\nWherewith I reign'd? I hardly yet have learn'd\nTo insinuate, flatter, bow, and bend my limbs:\nGive sorrow leave awhile to tutor me\nTo this submission. Yet I well remember\nThe favours of these men: were they not mine?\nDid they not sometime cry, 'all hail!' to me?\nSo Judas did to Christ: but he, in twelve,\nFound truth in all but one: I, in twelve thousand, none.\nGod save the king! Will no man say amen?\nAm I both priest and clerk? well then, amen.\nGod save the king! although I be not he;\nAnd yet, amen, if heaven do think him me.\nTo do what service am I sent for hither?\n\nDUKE OF YORK:\nTo do that office of thine own good will\nWhich tired majesty did make thee offer,\nThe resignation of thy state and crown\nTo Henry Bolingbroke.\n\nKING RICHARD II:\nGive me the crown. Here, cousin, seize the crown;\nHere cousin:\nOn this side my hand, and on that side yours.\nNow is this golden crown like a deep well\nThat owes two buckets, filling one another,\nThe emptier ever dancing in the air,\nThe other down, unseen and full of water:\nThat bucket down and full of tears am I,\nDrinking my griefs, whilst you mount up on high.\n\nHENRY BOLINGBROKE:\nI thought you had been willing to resign.\n\nKING RICHARD II:\nMy crown I am; but still my griefs are mine:\nYou may my glories and my state depose,\nBut not my griefs; still am I king of those.\n\nHENRY BOLINGBROKE:\nPart of your cares you give me with your crown.\n\nKING RICHARD II:\nYour cares set up do not pluck my cares down.\nMy care is loss of care, by old care done;\nYour care is gain of care, by new care won:\nThe cares I give I have, though given away;\nThey tend the crown, yet still with me they stay.\n\nHENRY BOLINGBROKE:\nAre you contented to resign the crown?\n\nKING RICHARD II:\nAy, no; no, ay; for I must nothing be;\nTherefore no no, for I resign to thee.\nNow mark me, how I will undo myself;\nI give this heavy weight from off my head\nAnd this unwieldy sceptre from my hand,\nThe pride of kingly sway from out my heart;\nWith mine own tears I wash away my balm,\nWith mine own hands I give away my crown,\nWith mine own tongue deny my sacred state,\nWith mine own breath release all duty's rites:\nAll pomp and majesty I do forswear;\nMy manors, rents, revenues I forego;\nMy acts, decrees, and statutes I deny:\nGod pardon all oaths that are broke to me!\nGod keep all vows unbroke that swear to thee!\nMake me, that nothing have, with nothing grieved,\nAnd thou with all pleased, that hast all achieved!\nLong mayst thou live in Richard's seat to sit,\nAnd soon lie Richard in an earthly pit!\nGod save King Harry, unking'd Richard says,\nAnd send him many years of sunshine days!\nWhat more remains?\n\nNORTHUMBERLAND:\nNo more, but that you read\nThese accusations and these grievous crimes\nCommitted by your person and your followers\nAgainst the state and profit of this land;\nThat, by confessing them, the souls of men\nMay deem that you are worthily deposed.\n\nKING RICHARD II:\nMust I do so? and must I ravel out\nMy weaved-up folly? Gentle Northumberland,\nIf thy offences were upon record,\nWould it not shame thee in so fair a troop\nTo read a lecture of them? If thou wouldst,\nThere shouldst thou find one heinous article,\nContaining the deposing of a king\nAnd cracking the strong warrant of an oath,\nMark'd with a blot, damn'd in the book of heaven:\nNay, all of you that stand and look upon,\nWhilst that my wretchedness doth bait myself,\nThough some of you with Pilate wash your hands\nShowing an outward pity; yet you Pilates\nHave here deliver'd me to my sour cross,\nAnd water cannot wash away your sin.\n\nNORTHUMBERLAND:\nMy lord, dispatch; read o'er these articles.\n\nKING RICHARD II:\nMine eyes are full of tears, I cannot see:\nAnd yet salt water blinds them not so much\nBut they can see a sort of traitors here.\nNay, if I turn mine eyes upon myself,\nI find myself a traitor with the rest;\nFor I have given here my soul's consent\nTo undeck the pompous body of a king;\nMade glory base and sovereignty a slave,\nProud majesty a subject, state a peasant.\n\nNORTHUMBERLAND:\nMy lord,--\n\nKING RICHARD II:\nNo lord of thine, thou haught insulting man,\nNor no man's lord; I have no name, no title,\nNo, not that name was given me at the font,\nBut 'tis usurp'd: alack the heavy day,\nThat I have worn so many winters out,\nAnd know not now what name to call myself!\nO that I were a mockery king of snow,\nStanding before the sun of Bolingbroke,\nTo melt myself away in water-drops!\nGood king, great king, and yet not greatly good,\nAn if my word be sterling yet in England,\nLet it command a mirror hither straight,\nThat it may show me what a face I have,\nSince it is bankrupt of his majesty.\n\nHENRY BOLINGBROKE:\nGo some of you and fetch a looking-glass.\n\nNORTHUMBERLAND:\nRead o'er this paper while the glass doth come.\n\nKING RICHARD II:\nFiend, thou torment'st me ere I come to hell!\n\nHENRY BOLINGBROKE:\nUrge it no more, my Lord Northumberland.\n\nNORTHUMBERLAND:\nThe commons will not then be satisfied.\n\nKING RICHARD II:\nThey shall be satisfied: I'll read enough,\nWhen I do see the very book indeed\nWhere all my sins are writ, and that's myself.\nGive me the glass, and therein will I read.\nNo deeper wrinkles yet? hath sorrow struck\nSo many blows upon this face of mine,\nAnd made no deeper wounds? O flattering glass,\nLike to my followers in prosperity,\nThou dost beguile me! Was this face the face\nThat every day under his household roof\nDid keep ten thousand men? was this the face\nThat, like the sun, did make beholders wink?\nWas this the face that faced so many follies,\nAnd was at last out-faced by Bolingbroke?\nA brittle glory shineth in this face:\nAs brittle as the glory is the face;\nFor there it is, crack'd in a hundred shivers.\nMark, silent king, the moral of this sport,\nHow soon my sorrow hath destroy'd my face.\n\nHENRY BOLINGBROKE:\nThe shadow of your sorrow hath destroy'd\nThe shadow or your face.\n\nKING RICHARD II:\nSay that again.\nThe shadow of my sorrow! ha! let's see:\n'Tis very true, my grief lies all within;\nAnd these external manners of laments\nAre merely shadows to the unseen grief\nThat swells with silence in the tortured soul;\nThere lies the substance: and I thank thee, king,\nFor thy great bounty, that not only givest\nMe cause to wail but teachest me the way\nHow to lament the cause. I'll beg one boon,\nAnd then be gone and trouble you no more.\nShall I obtain it?\n\nHENRY BOLINGBROKE:\nName it, fair cousin.\n\nKING RICHARD II:\n'Fair cousin'? I am greater than a king:\nFor when I was a king, my flatterers\nWere then but subjects; being now a subject,\nI have a king here to my flatterer.\nBeing so great, I have no need to beg.\n\nHENRY BOLINGBROKE:\nYet ask.\n\nKING RICHARD II:\nAnd shall I have?\n\nHENRY BOLINGBROKE:\nYou shall.\n\nKING RICHARD II:\nThen give me leave to go.\n\nHENRY BOLINGBROKE:\nWhither?\n\nKING RICHARD II:\nWhither you will, so I were from your sights.\n\nHENRY BOLINGBROKE:\nGo, some of you convey him to the Tower.\n\nKING RICHARD II:\nO, good! convey? conveyers are you all,\nThat rise thus nimbly by a true king's fall.\n\nHENRY BOLINGBROKE:\nOn Wednesday next we solemnly set down\nOur coronation: lords, prepare yourselves.\n\nAbbot:\nA woeful pageant have we here beheld.\n\nBISHOP OF CARLISLE:\nThe woe's to come; the children yet unborn.\nShall feel this day as sharp to them as thorn.\n\nDUKE OF AUMERLE:\nYou holy clergymen, is there no plot\nTo rid the realm of this pernicious blot?\n\nAbbot:\nMy lord,\nBefore I freely speak my mind herein,\nYou shall not only take the sacrament\nTo bury mine intents, but also to effect\nWhatever I shall happen to devise.\nI see your brows are full of discontent,\nYour hearts of sorrow and your eyes of tears:\nCome home with me to supper; and I'll lay\nA plot shall show us all a merry day.\n\nQUEEN:\nThis way the king will come; this is the way\nTo Julius Caesar's ill-erected tower,\nTo whose flint bosom my condemned lord\nIs doom'd a prisoner by proud Bolingbroke:\nHere let us rest, if this rebellious earth\nHave any resting for her true king's queen.\nBut soft, but see, or rather do not see,\nMy fair rose wither: yet look up, behold,\nThat you in pity may dissolve to dew,\nAnd wash him fresh again with true-love tears.\nAh, thou, the model where old Troy did stand,\nThou map of honour, thou King Richard's tomb,\nAnd not King Richard; thou most beauteous inn,\nWhy should hard-favour'd grief be lodged in thee,\nWhen triumph is become an alehouse guest?\n\nKING RICHARD II:\nJoin not with grief, fair woman, do not so,\nTo make my end too sudden: learn, good soul,\nTo think our former state a happy dream;\nFrom which awaked, the truth of what we are\nShows us but this: I am sworn brother, sweet,\nTo grim Necessity, and he and I\nWill keep a league till death. Hie thee to France\nAnd cloister thee in some religious house:\nOur holy lives must win a new world's crown,\nWhich our profane hours here have stricken down.\n\nQUEEN:\nWhat, is my Richard both in shape and mind\nTransform'd and weaken'd? hath Bolingbroke deposed\nThine intellect? hath he been in thy heart?\nThe lion dying thrusteth forth his paw,\nAnd wounds the earth, if nothing else, with rage\nTo be o'erpower'd; and wilt thou, pupil-like,\nTake thy correction mildly, kiss the rod,\nAnd fawn on rage with base humility,\nWhich art a lion and a king of beasts?\n\nKING RICHARD II:\nA king of beasts, indeed; if aught but beasts,\nI had been still a happy king of men.\nGood sometime queen, prepare thee hence for France:\nThink I am dead and that even here thou takest,\nAs from my death-bed, thy last living leave.\nIn winter's tedious nights sit by the fire\nWith good old folks and let them tell thee tales\nOf woeful ages long ago betid;\nAnd ere thou bid good night, to quit their griefs,\nTell thou the lamentable tale of me\nAnd send the hearers weeping to their beds:\nFor why, the senseless brands will sympathize\nThe heavy accent of thy moving tongue\nAnd in compassion weep the fire out;\nAnd some will mourn in ashes, some coal-black,\nFor the deposing of a rightful king.\n\nNORTHUMBERLAND:\nMy lord, the mind of Bolingbroke is changed:\nYou must to Pomfret, not unto the Tower.\nAnd, madam, there is order ta'en for you;\nWith all swift speed you must away to France.\n\nKING RICHARD II:\nNorthumberland, thou ladder wherewithal\nThe mounting Bolingbroke ascends my throne,\nThe time shall not be many hours of age\nMore than it is ere foul sin gathering head\nShalt break into corruption: thou shalt think,\nThough he divide the realm and give thee half,\nIt is too little, helping him to all;\nAnd he shall think that thou, which know'st the way\nTo plant unrightful kings, wilt know again,\nBeing ne'er so little urged, another way\nTo pluck him headlong from the usurped throne.\nThe love of wicked men converts to fear;\nThat fear to hate, and hate turns one or both\nTo worthy danger and deserved death.\n\nNORTHUMBERLAND:\nMy guilt be on my head, and there an end.\nTake leave and part; for you must part forthwith.\n\nKING RICHARD II:\nDoubly divorced! Bad men, you violate\nA twofold marriage, 'twixt my crown and me,\nAnd then betwixt me and my married wife.\nLet me unkiss the oath 'twixt thee and me;\nAnd yet not so, for with a kiss 'twas made.\nPart us, Northumberland; I toward the north,\nWhere shivering cold and sickness pines the clime;\nMy wife to France: from whence, set forth in pomp,\nShe came adorned hither like sweet May,\nSent back like Hallowmas or short'st of day.\n\nQUEEN:\nAnd must we be divided? must we part?\n\nKING RICHARD II:\nAy, hand from hand, my love, and heart from heart.\n\nQUEEN:\nBanish us both and send the king with me.\n\nNORTHUMBERLAND:\nThat were some love but little policy.\n\nQUEEN:\nThen whither he goes, thither let me go.\n\nKING RICHARD II:\nSo two, together weeping, make one woe.\nWeep thou for me in France, I for thee here;\nBetter far off than near, be ne'er the near.\nGo, count thy way with sighs; I mine with groans.\n\nQUEEN:\nSo longest way shall have the longest moans.\n\nKING RICHARD II:\nTwice for one step I'll groan, the way being short,\nAnd piece the way out with a heavy heart.\nCome, come, in wooing sorrow let's be brief,\nSince, wedding it, there is such length in grief;\nOne kiss shall stop our mouths, and dumbly part;\nThus give I mine, and thus take I thy heart.\n\nQUEEN:\nGive me mine own again; 'twere no good part\nTo take on me to keep and kill thy heart.\nSo, now I have mine own again, be gone,\nThat I might strive to kill it with a groan.\n\nKING RICHARD II:\nWe make woe wanton with this fond delay:\nOnce more, adieu; the rest let sorrow say.\n\nDUCHESS OF YORK:\nMy lord, you told me you would tell the rest,\nWhen weeping made you break the story off,\nof our two cousins coming into London.\n\nDUKE OF YORK:\nWhere did I leave?\n\nDUCHESS OF YORK:\nAt that sad stop, my lord,\nWhere rude misgovern'd hands from windows' tops\nThrew dust and rubbish on King Richard's head.\n\nDUKE OF YORK:\nThen, as I said, the duke, great Bolingbroke,\nMounted upon a hot and fiery steed\nWhich his aspiring rider seem'd to know,\nWith slow but stately pace kept on his course,\nWhilst all tongues cried 'God save thee,\nBolingbroke!'\nYou would have thought the very windows spake,\nSo many greedy looks of young and old\nThrough casements darted their desiring eyes\nUpon his visage, and that all the walls\nWith painted imagery had said at once\n'Jesu preserve thee! welcome, Bolingbroke!'\nWhilst he, from the one side to the other turning,\nBareheaded, lower than his proud steed's neck,\nBespake them thus: 'I thank you, countrymen:'\nAnd thus still doing, thus he pass'd along.\n\nDUCHESS OF YORK:\nAlack, poor Richard! where rode he the whilst?\n\nDUKE OF YORK:\nAs in a theatre, the eyes of men,\nAfter a well-graced actor leaves the stage,\nAre idly bent on him that enters next,\nThinking his prattle to be tedious;\nEven so, or with much more contempt, men's eyes\nDid scowl on gentle Richard; no man cried 'God save him!'\nNo joyful tongue gave him his welcome home:\nBut dust was thrown upon his sacred head:\nWhich with such gentle sorrow he shook off,\nHis face still combating with tears and smiles,\nThe badges of his grief and patience,\nThat had not God, for some strong purpose, steel'd\nThe hearts of men, they must perforce have melted\nAnd barbarism itself have pitied him.\nBut heaven hath a hand in these events,\nTo whose high will we bound our calm contents.\nTo Bolingbroke are we sworn subjects now,\nWhose state and honour I for aye allow.\n\nDUCHESS OF YORK:\nHere comes my son Aumerle.\n\nDUKE OF YORK:\nAumerle that was;\nBut that is lost for being Richard's friend,\nAnd, madam, you must call him Rutland now:\nI am in parliament pledge for his truth\nAnd lasting fealty to the new-made king.\n\nDUCHESS OF YORK:\nWelcome, my son: who are the violets now\nThat strew the green lap of the new come spring?\n\nDUKE OF AUMERLE:\nMadam, I know not, nor I greatly care not:\nGod knows I had as lief be none as one.\n\nDUKE OF YORK:\nWell, bear you well in this new spring of time,\nLest you be cropp'd before you come to prime.\nWhat news from Oxford? hold those justs and triumphs?\n\nDUKE OF AUMERLE:\nFor aught I know, my lord, they do.\n\nDUKE OF YORK:\nYou will be there, I know.\n\nDUKE OF AUMERLE:\nIf God prevent not, I purpose so.\n\nDUKE OF YORK:\nWhat seal is that, that hangs without thy bosom?\nYea, look'st thou pale? let me see the writing.\n\nDUKE OF AUMERLE:\nMy lord, 'tis nothing.\n\nDUKE OF YORK:\nNo matter, then, who see it;\nI will be satisfied; let me see the writing.\n\nDUKE OF AUMERLE:\nI do beseech your grace to pardon me:\nIt is a matter of small consequence,\nWhich for some reasons I would not have seen.\n\nDUKE OF YORK:\nWhich for some reasons, sir, I mean to see.\nI fear, I fear,--\n\nDUCHESS OF YORK:\nWhat should you fear?\n'Tis nothing but some bond, that he is enter'd into\nFor gay apparel 'gainst the triumph day.\n\nDUKE OF YORK:\nBound to himself! what doth he with a bond\nThat he is bound to? Wife, thou art a fool.\nBoy, let me see the writing.\n\nDUKE OF AUMERLE:\nI do beseech you, pardon me; I may not show it.\n\nDUKE OF YORK:\nI will be satisfied; let me see it, I say.\nTreason! foul treason! Villain! traitor! slave!\n\nDUCHESS OF YORK:\nWhat is the matter, my lord?\n\nDUKE OF YORK:\nHo! who is within there?\nSaddle my horse.\nGod for his mercy, what treachery is here!\n\nDUCHESS OF YORK:\nWhy, what is it, my lord?\n\nDUKE OF YORK:\nGive me my boots, I say; saddle my horse.\nNow, by mine honour, by my life, by my troth,\nI will appeach the villain.\n\nDUCHESS OF YORK:\nWhat is the matter?\n\nDUKE OF YORK:\nPeace, foolish woman.\n\nDUCHESS OF YORK:\nI will not peace. What is the matter, Aumerle.\n\nDUKE OF AUMERLE:\nGood mother, be content; it is no more\nThan my poor life must answer.\n\nDUCHESS OF YORK:\nThy life answer!\n\nDUKE OF YORK:\nBring me my boots: I will unto the king.\n\nDUCHESS OF YORK:\nStrike him, Aumerle. Poor boy, thou art amazed.\nHence, villain! never more come in my sight.\n\nDUKE OF YORK:\nGive me my boots, I say.\n\nDUCHESS OF YORK:\nWhy, York, what wilt thou do?\nWilt thou not hide the trespass of thine own?\nHave we more sons? or are we like to have?\nIs not my teeming date drunk up with time?\nAnd wilt thou pluck my fair son from mine age,\nAnd rob me of a happy mother's name?\nIs he not like thee? is he not thine own?\n\nDUKE OF YORK:\nThou fond mad woman,\nWilt thou conceal this dark conspiracy?\nA dozen of them here have ta'en the sacrament,\nAnd interchangeably set down their hands,\nTo kill the king at Oxford.\n\nDUCHESS OF YORK:\nHe shall be none;\nWe'll keep him here: then what is that to him?\n\nDUKE OF YORK:\nAway, fond woman! were he twenty times my son,\nI would appeach him.\n\nDUCHESS OF YORK:\nHadst thou groan'd for him\nAs I have done, thou wouldst be more pitiful.\nBut now I know thy mind; thou dost suspect\nThat I have been disloyal to thy bed,\nAnd that he is a bastard, not thy son:\nSweet York, sweet husband, be not of that mind:\nHe is as like thee as a man may be,\nNot like to me, or any of my kin,\nAnd yet I love him.\n\nDUKE OF YORK:\nMake way, unruly woman!\n\nDUCHESS OF YORK:\nAfter, Aumerle! mount thee upon his horse;\nSpur post, and get before him to the king,\nAnd beg thy pardon ere he do accuse thee.\nI'll not be long behind; though I be old,\nI doubt not but to ride as fast as York:\nAnd never will I rise up from the ground\nTill Bolingbroke have pardon'd thee. Away, be gone!\n\nHENRY BOLINGBROKE:\nCan no man tell me of my unthrifty son?\n'Tis full three months since I did see him last;\nIf any plague hang over us, 'tis he.\nI would to God, my lords, he might be found:\nInquire at London, 'mongst the taverns there,\nFor there, they say, he daily doth frequent,\nWith unrestrained loose companions,\nEven such, they say, as stand in narrow lanes,\nAnd beat our watch, and rob our passengers;\nWhich he, young wanton and effeminate boy,\nTakes on the point of honour to support\nSo dissolute a crew.\n\nHENRY PERCY:\nMy lord, some two days since I saw the prince,\nAnd told him of those triumphs held at Oxford.\n\nHENRY BOLINGBROKE:\nAnd what said the gallant?\n\nHENRY PERCY:\nHis answer was, he would unto the stews,\nAnd from the common'st creature pluck a glove,\nAnd wear it as a favour; and with that\nHe would unhorse the lustiest challenger.\n\nHENRY BOLINGBROKE:\nAs dissolute as desperate; yet through both\nI see some sparks of better hope, which elder years\nMay happily bring forth. But who comes here?\n\nDUKE OF AUMERLE:\nWhere is the king?\n\nHENRY BOLINGBROKE:\nWhat means our cousin, that he stares and looks\nSo wildly?\n\nDUKE OF AUMERLE:\nGod save your grace! I do beseech your majesty,\nTo have some conference with your grace alone.\n\nHENRY BOLINGBROKE:\nWithdraw yourselves, and leave us here alone.\nWhat is the matter with our cousin now?\n\nDUKE OF AUMERLE:\nFor ever may my knees grow to the earth,\nMy tongue cleave to my roof within my mouth\nUnless a pardon ere I rise or speak.\n\nHENRY BOLINGBROKE:\nIntended or committed was this fault?\nIf on the first, how heinous e'er it be,\nTo win thy after-love I pardon thee.\n\nDUKE OF AUMERLE:\nThen give me leave that I may turn the key,\nThat no man enter till my tale be done.\n\nHENRY BOLINGBROKE:\nHave thy desire.\n\nDUKE OF YORK:\n\nHENRY BOLINGBROKE:\nVillain, I'll make thee safe.\n\nDUKE OF AUMERLE:\nStay thy revengeful hand; thou hast no cause to fear.\n\nDUKE OF YORK:\n\nHENRY BOLINGBROKE:\nWhat is the matter, uncle? speak;\nRecover breath; tell us how near is danger,\nThat we may arm us to encounter it.\n\nDUKE OF YORK:\nPeruse this writing here, and thou shalt know\nThe treason that my haste forbids me show.\n\nDUKE OF AUMERLE:\nRemember, as thou read'st, thy promise pass'd:\nI do repent me; read not my name there\nMy heart is not confederate with my hand.\n\nDUKE OF YORK:\nIt was, villain, ere thy hand did set it down.\nI tore it from the traitor's bosom, king;\nFear, and not love, begets his penitence:\nForget to pity him, lest thy pity prove\nA serpent that will sting thee to the heart.\n\nHENRY BOLINGBROKE:\nO heinous, strong and bold conspiracy!\nO loyal father of a treacherous son!\nThou sheer, immaculate and silver fountain,\nFrom when this stream through muddy passages\nHath held his current and defiled himself!\nThy overflow of good converts to bad,\nAnd thy abundant goodness shall excuse\nThis deadly blot in thy digressing son.\n\nDUKE OF YORK:\nSo shall my virtue be his vice's bawd;\nAnd he shall spend mine honour with his shame,\nAs thriftless sons their scraping fathers' gold.\nMine honour lives when his dishonour dies,\nOr my shamed life in his dishonour lies:\nThou kill'st me in his life; giving him breath,\nThe traitor lives, the true man's put to death.\n\nDUCHESS OF YORK:\n\nHENRY BOLINGBROKE:\nWhat shrill-voiced suppliant makes this eager cry?\n\nDUCHESS OF YORK:\nA woman, and thy aunt, great king; 'tis I.\nSpeak with me, pity me, open the door.\nA beggar begs that never begg'd before.\n\nHENRY BOLINGBROKE:\nOur scene is alter'd from a serious thing,\nAnd now changed to 'The Beggar and the King.'\nMy dangerous cousin, let your mother in:\nI know she is come to pray for your foul sin.\n\nDUKE OF YORK:\nIf thou do pardon, whosoever pray,\nMore sins for this forgiveness prosper may.\nThis fester'd joint cut off, the rest rest sound;\nThis let alone will all the rest confound.\n\nDUCHESS OF YORK:\nO king, believe not this hard-hearted man!\nLove loving not itself none other can.\n\nDUKE OF YORK:\nThou frantic woman, what dost thou make here?\nShall thy old dugs once more a traitor rear?\n\nDUCHESS OF YORK:\nSweet York, be patient. Hear me, gentle liege.\n\nHENRY BOLINGBROKE:\nRise up, good aunt.\n\nDUCHESS OF YORK:\nNot yet, I thee beseech:\nFor ever will I walk upon my knees,\nAnd never see day that the happy sees,\nTill thou give joy; until thou bid me joy,\nBy pardoning Rutland, my transgressing boy.\n\nDUKE OF AUMERLE:\nUnto my mother's prayers I bend my knee.\n\nDUKE OF YORK:\nAgainst them both my true joints bended be.\nIll mayst thou thrive, if thou grant any grace!\n\nDUCHESS OF YORK:\nPleads he in earnest? look upon his face;\nHis eyes do drop no tears, his prayers are in jest;\nHis words come from his mouth, ours from our breast:\nHe prays but faintly and would be denied;\nWe pray with heart and soul and all beside:\nHis weary joints would gladly rise, I know;\nOur knees shall kneel till to the ground they grow:\nHis prayers are full of false hypocrisy;\nOurs of true zeal and deep integrity.\nOur prayers do out-pray his; then let them have\nThat mercy which true prayer ought to have.\n\nHENRY BOLINGBROKE:\nGood aunt, stand up.\n\nDUCHESS OF YORK:\nNay, do not say, 'stand up;'\nSay, 'pardon' first, and afterwards 'stand up.'\nAnd if I were thy nurse, thy tongue to teach,\n'Pardon' should be the first word of thy speech.\nI never long'd to hear a word till now;\nSay 'pardon,' king; let pity teach thee how:\nThe word is short, but not so short as sweet;\nNo word like 'pardon' for kings' mouths so meet.\n\nDUKE OF YORK:\nSpeak it in French, king; say, 'pardonne moi.'\n\nDUCHESS OF YORK:\nDost thou teach pardon pardon to destroy?\nAh, my sour husband, my hard-hearted lord,\nThat set'st the word itself against the word!\nSpeak 'pardon' as 'tis current in our land;\nThe chopping French we do not understand.\nThine eye begins to speak; set thy tongue there;\nOr in thy piteous heart plant thou thine ear;\nThat hearing how our plaints and prayers do pierce,\nPity may move thee 'pardon' to rehearse.\n\nHENRY BOLINGBROKE:\nGood aunt, stand up.\n\nDUCHESS OF YORK:\nI do not sue to stand;\nPardon is all the suit I have in hand.\n\nHENRY BOLINGBROKE:\nI pardon him, as God shall pardon me.\n\nDUCHESS OF YORK:\nO happy vantage of a kneeling knee!\nYet am I sick for fear: speak it again;\nTwice saying 'pardon' doth not pardon twain,\nBut makes one pardon strong.\n\nHENRY BOLINGBROKE:\nWith all my heart\nI pardon him.\n\nDUCHESS OF YORK:\nA god on earth thou art.\n\nHENRY BOLINGBROKE:\nBut for our trusty brother-in-law and the abbot,\nWith all the rest of that consorted crew,\nDestruction straight shall dog them at the heels.\nGood uncle, help to order several powers\nTo Oxford, or where'er these traitors are:\nThey shall not live within this world, I swear,\nBut I will have them, if I once know where.\nUncle, farewell: and, cousin too, adieu:\nYour mother well hath pray'd, and prove you true.\n\nDUCHESS OF YORK:\nCome, my old son: I pray God make thee new.\n\nEXTON:\nDidst thou not mark the king, what words he spake,\n'Have I no friend will rid me of this living fear?'\nWas it not so?\n\nServant:\nThese were his very words.\n\nEXTON:\n'Have I no friend?' quoth he: he spake it twice,\nAnd urged it twice together, did he not?\n\nServant:\nHe did.\n\nEXTON:\nAnd speaking it, he wistly look'd on me,\nAnd who should say, 'I would thou wert the man'\nThat would divorce this terror from my heart;'\nMeaning the king at Pomfret. Come, let's go:\nI am the king's friend, and will rid his foe.\n\nKING RICHARD II:\nI have been studying how I may compare\nThis prison where I live unto the world:\nAnd for because the world is populous\nAnd here is not a creature but myself,\nI cannot do it; yet I'll hammer it out.\nMy brain I'll prove the female to my soul,\nMy soul the father; and these two beget\nA generation of still-breeding thoughts,\nAnd these same thoughts people this little world,\nIn humours like the people of this world,\nFor no thought is contented. The better sort,\nAs thoughts of things divine, are intermix'd\nWith scruples and do set the word itself\nAgainst the word:\nAs thus, 'Come, little ones,' and then again,\n'It is as hard to come as for a camel\nTo thread the postern of a small needle's eye.'\nThoughts tending to ambition, they do plot\nUnlikely wonders; how these vain weak nails\nMay tear a passage through the flinty ribs\nOf this hard world, my ragged prison walls,\nAnd, for they cannot, die in their own pride.\nThoughts tending to content flatter themselves\nThat they are not the first of fortune's slaves,\nNor shall not be the last; like silly beggars\nWho sitting in the stocks refuge their shame,\nThat many have and others must sit there;\nAnd in this thought they find a kind of ease,\nBearing their own misfortunes on the back\nOf such as have before endured the like.\nThus play I in one person many people,\nAnd none contented: sometimes am I king;\nThen treasons make me wish myself a beggar,\nAnd so I am: then crushing penury\nPersuades me I was better when a king;\nThen am I king'd again: and by and by\nThink that I am unking'd by Bolingbroke,\nAnd straight am nothing: but whate'er I be,\nNor I nor any man that but man is\nWith nothing shall be pleased, till he be eased\nWith being nothing. Music do I hear?\nHa, ha! keep time: how sour sweet music is,\nWhen time is broke and no proportion kept!\nSo is it in the music of men's lives.\nAnd here have I the daintiness of ear\nTo cheque time broke in a disorder'd string;\nBut for the concord of my state and time\nHad not an ear to hear my true time broke.\nI wasted time, and now doth time waste me;\nFor now hath time made me his numbering clock:\nMy thoughts are minutes; and with sighs they jar\nTheir watches on unto mine eyes, the outward watch,\nWhereto my finger, like a dial's point,\nIs pointing still, in cleansing them from tears.\nNow sir, the sound that tells what hour it is\nAre clamorous groans, which strike upon my heart,\nWhich is the bell: so sighs and tears and groans\nShow minutes, times, and hours: but my time\nRuns posting on in Bolingbroke's proud joy,\nWhile I stand fooling here, his Jack o' the clock.\nThis music mads me; let it sound no more;\nFor though it have holp madmen to their wits,\nIn me it seems it will make wise men mad.\nYet blessing on his heart that gives it me!\nFor 'tis a sign of love; and love to Richard\nIs a strange brooch in this all-hating world.\n\nGroom:\nHail, royal prince!\n\nKING RICHARD II:\nThanks, noble peer;\nThe cheapest of us is ten groats too dear.\nWhat art thou? and how comest thou hither,\nWhere no man never comes but that sad dog\nThat brings me food to make misfortune live?\n\nGroom:\nI was a poor groom of thy stable, king,\nWhen thou wert king; who, travelling towards York,\nWith much ado at length have gotten leave\nTo look upon my sometimes royal master's face.\nO, how it yearn'd my heart when I beheld\nIn London streets, that coronation-day,\nWhen Bolingbroke rode on roan Barbary,\nThat horse that thou so often hast bestrid,\nThat horse that I so carefully have dress'd!\n\nKING RICHARD II:\nRode he on Barbary? Tell me, gentle friend,\nHow went he under him?\n\nGroom:\nSo proudly as if he disdain'd the ground.\n\nKING RICHARD II:\nSo proud that Bolingbroke was on his back!\nThat jade hath eat bread from my royal hand;\nThis hand hath made him proud with clapping him.\nWould he not stumble? would he not fall down,\nSince pride must have a fall, and break the neck\nOf that proud man that did usurp his back?\nForgiveness, horse! why do I rail on thee,\nSince thou, created to be awed by man,\nWast born to bear? I was not made a horse;\nAnd yet I bear a burthen like an ass,\nSpurr'd, gall'd and tired by jouncing Bolingbroke.\n\nKeeper:\nFellow, give place; here is no longer stay.\n\nKING RICHARD II:\nIf thou love me, 'tis time thou wert away.\n\nGroom:\nWhat my tongue dares not, that my heart shall say.\n\nKeeper:\nMy lord, will't please you to fall to?\n\nKING RICHARD II:\nTaste of it first, as thou art wont to do.\n\nKeeper:\nMy lord, I dare not: Sir Pierce of Exton, who\nlately came from the king, commands the contrary.\n\nKING RICHARD II:\nThe devil take Henry of Lancaster and thee!\nPatience is stale, and I am weary of it.\n\nKeeper:\nHelp, help, help!\n\nKING RICHARD II:\nHow now! what means death in this rude assault?\nVillain, thy own hand yields thy death's instrument.\nGo thou, and fill another room in hell.\nThat hand shall burn in never-quenching fire\nThat staggers thus my person. Exton, thy fierce hand\nHath with the king's blood stain'd the king's own land.\nMount, mount, my soul! thy seat is up on high;\nWhilst my gross flesh sinks downward, here to die.\n\nEXTON:\nAs full of valour as of royal blood:\nBoth have I spill'd; O would the deed were good!\nFor now the devil, that told me I did well,\nSays that this deed is chronicled in hell.\nThis dead king to the living king I'll bear\nTake hence the rest, and give them burial here.\n\nHENRY BOLINGBROKE:\nKind uncle York, the latest news we hear\nIs that the rebels have consumed with fire\nOur town of Cicester in Gloucestershire;\nBut whether they be ta'en or slain we hear not.\nWelcome, my lord what is the news?\n\nNORTHUMBERLAND:\nFirst, to thy sacred state wish I all happiness.\nThe next news is, I have to London sent\nThe heads of Oxford, Salisbury, Blunt, and Kent:\nThe manner of their taking may appear\nAt large discoursed in this paper here.\n\nHENRY BOLINGBROKE:\nWe thank thee, gentle Percy, for thy pains;\nAnd to thy worth will add right worthy gains.\n\nLORD FITZWATER:\nMy lord, I have from Oxford sent to London\nThe heads of Brocas and Sir Bennet Seely,\nTwo of the dangerous consorted traitors\nThat sought at Oxford thy dire overthrow.\n\nHENRY BOLINGBROKE:\nThy pains, Fitzwater, shall not be forgot;\nRight noble is thy merit, well I wot.\n\nHENRY PERCY:\nThe grand conspirator, Abbot of Westminster,\nWith clog of conscience and sour melancholy\nHath yielded up his body to the grave;\nBut here is Carlisle living, to abide\nThy kingly doom and sentence of his pride.\n\nHENRY BOLINGBROKE:\nCarlisle, this is your doom:\nChoose out some secret place, some reverend room,\nMore than thou hast, and with it joy thy life;\nSo as thou livest in peace, die free from strife:\nFor though mine enemy thou hast ever been,\nHigh sparks of honour in thee have I seen.\n\nEXTON:\nGreat king, within this coffin I present\nThy buried fear: herein all breathless lies\nThe mightiest of thy greatest enemies,\nRichard of Bordeaux, by me hither brought.\n\nHENRY BOLINGBROKE:\nExton, I thank thee not; for thou hast wrought\nA deed of slander with thy fatal hand\nUpon my head and all this famous land.\n\nEXTON:\nFrom your own mouth, my lord, did I this deed.\n\nHENRY BOLINGBROKE:\nThey love not poison that do poison need,\nNor do I thee: though I did wish him dead,\nI hate the murderer, love him murdered.\nThe guilt of conscience take thou for thy labour,\nBut neither my good word nor princely favour:\nWith Cain go wander through shades of night,\nAnd never show thy head by day nor light.\nLords, I protest, my soul is full of woe,\nThat blood should sprinkle me to make me grow:\nCome, mourn with me for that I do lament,\nAnd put on sullen black incontinent:\nI'll make a voyage to the Holy Land,\nTo wash this blood off from my guilty hand:\nMarch sadly after; grace my mournings here;\nIn weeping after this untimely bier.\n\n\nSAMPSON:\nGregory, o' my word, we'll not carry coals.\n\nGREGORY:\nNo, for then we should be colliers.\n\nSAMPSON:\nI mean, an we be in choler, we'll draw.\n\nGREGORY:\nAy, while you live, draw your neck out o' the collar.\n\nSAMPSON:\nI strike quickly, being moved.\n\nGREGORY:\nBut thou art not quickly moved to strike.\n\nSAMPSON:\nA dog of the house of Montague moves me.\n\nGREGORY:\nTo move is to stir; and to be valiant is to stand:\ntherefore, if thou art moved, thou runn'st away.\n\nSAMPSON:\nA dog of that house shall move me to stand: I will\ntake the wall of any man or maid of Montague's.\n\nGREGORY:\nThat shows thee a weak slave; for the weakest goes\nto the wall.\n\nSAMPSON:\nTrue; and therefore women, being the weaker vessels,\nare ever thrust to the wall: therefore I will push\nMontague's men from the wall, and thrust his maids\nto the wall.\n\nGREGORY:\nThe quarrel is between our masters and us their men.\n\nSAMPSON:\n'Tis all one, I will show myself a tyrant: when I\nhave fought with the men, I will be cruel with the\nmaids, and cut off their heads.\n\nGREGORY:\nThe heads of the maids?\n\nSAMPSON:\nAy, the heads of the maids, or their maidenheads;\ntake it in what sense thou wilt.\n\nGREGORY:\nThey must take it in sense that feel it.\n\nSAMPSON:\nMe they shall feel while I am able to stand: and\n'tis known I am a pretty piece of flesh.\n\nGREGORY:\n'Tis well thou art not fish; if thou hadst, thou\nhadst been poor John. Draw thy tool! here comes\ntwo of the house of the Montagues.\n\nSAMPSON:\nMy naked weapon is out: quarrel, I will back thee.\n\nGREGORY:\nHow! turn thy back and run?\n\nSAMPSON:\nFear me not.\n\nGREGORY:\nNo, marry; I fear thee!\n\nSAMPSON:\nLet us take the law of our sides; let them begin.\n\nGREGORY:\nI will frown as I pass by, and let them take it as\nthey list.\n\nSAMPSON:\nNay, as they dare. I will bite my thumb at them;\nwhich is a disgrace to them, if they bear it.\n\nABRAHAM:\nDo you bite your thumb at us, sir?\n\nSAMPSON:\nI do bite my thumb, sir.\n\nABRAHAM:\nDo you bite your thumb at us, sir?\n\nSAMPSON:\n\nGREGORY:\nNo.\n\nSAMPSON:\nNo, sir, I do not bite my thumb at you, sir, but I\nbite my thumb, sir.\n\nGREGORY:\nDo you quarrel, sir?\n\nABRAHAM:\nQuarrel sir! no, sir.\n\nSAMPSON:\nIf you do, sir, I am for you: I serve as good a man as you.\n\nABRAHAM:\nNo better.\n\nSAMPSON:\nWell, sir.\n\nGREGORY:\nSay 'better:' here comes one of my master's kinsmen.\n\nSAMPSON:\nYes, better, sir.\n\nABRAHAM:\nYou lie.\n\nSAMPSON:\nDraw, if you be men. Gregory, remember thy swashing blow.\n\nBENVOLIO:\nPart, fools!\nPut up your swords; you know not what you do.\n\nTYBALT:\nWhat, art thou drawn among these heartless hinds?\nTurn thee, Benvolio, look upon thy death.\n\nBENVOLIO:\nI do but keep the peace: put up thy sword,\nOr manage it to part these men with me.\n\nTYBALT:\nWhat, drawn, and talk of peace! I hate the word,\nAs I hate hell, all Montagues, and thee:\nHave at thee, coward!\n\nFirst Citizen:\nClubs, bills, and partisans! strike! beat them down!\nDown with the Capulets! down with the Montagues!\n\nCAPULET:\nWhat noise is this? Give me my long sword, ho!\n\nLADY CAPULET:\nA crutch, a crutch! why call you for a sword?\n\nCAPULET:\nMy sword, I say! Old Montague is come,\nAnd flourishes his blade in spite of me.\n\nMONTAGUE:\nThou villain Capulet,--Hold me not, let me go.\n\nLADY MONTAGUE:\nThou shalt not stir a foot to seek a foe.\n\nPRINCE:\nRebellious subjects, enemies to peace,\nProfaners of this neighbour-stained steel,--\nWill they not hear? What, ho! you men, you beasts,\nThat quench the fire of your pernicious rage\nWith purple fountains issuing from your veins,\nOn pain of torture, from those bloody hands\nThrow your mistemper'd weapons to the ground,\nAnd hear the sentence of your moved prince.\nThree civil brawls, bred of an airy word,\nBy thee, old Capulet, and Montague,\nHave thrice disturb'd the quiet of our streets,\nAnd made Verona's ancient citizens\nCast by their grave beseeming ornaments,\nTo wield old partisans, in hands as old,\nCanker'd with peace, to part your canker'd hate:\nIf ever you disturb our streets again,\nYour lives shall pay the forfeit of the peace.\nFor this time, all the rest depart away:\nYou Capulet; shall go along with me:\nAnd, Montague, come you this afternoon,\nTo know our further pleasure in this case,\nTo old Free-town, our common judgment-place.\nOnce more, on pain of death, all men depart.\n\nMONTAGUE:\nWho set this ancient quarrel new abroach?\nSpeak, nephew, were you by when it began?\n\nBENVOLIO:\nHere were the servants of your adversary,\nAnd yours, close fighting ere I did approach:\nI drew to part them: in the instant came\nThe fiery Tybalt, with his sword prepared,\nWhich, as he breathed defiance to my ears,\nHe swung about his head and cut the winds,\nWho nothing hurt withal hiss'd him in scorn:\nWhile we were interchanging thrusts and blows,\nCame more and more and fought on part and part,\nTill the prince came, who parted either part.\n\nLADY MONTAGUE:\nO, where is Romeo? saw you him to-day?\nRight glad I am he was not at this fray.\n\nBENVOLIO:\nMadam, an hour before the worshipp'd sun\nPeer'd forth the golden window of the east,\nA troubled mind drave me to walk abroad;\nWhere, underneath the grove of sycamore\nThat westward rooteth from the city's side,\nSo early walking did I see your son:\nTowards him I made, but he was ware of me\nAnd stole into the covert of the wood:\nI, measuring his affections by my own,\nThat most are busied when they're most alone,\nPursued my humour not pursuing his,\nAnd gladly shunn'd who gladly fled from me.\n\nMONTAGUE:\nMany a morning hath he there been seen,\nWith tears augmenting the fresh morning dew.\nAdding to clouds more clouds with his deep sighs;\nBut all so soon as the all-cheering sun\nShould in the furthest east begin to draw\nThe shady curtains from Aurora's bed,\nAway from the light steals home my heavy son,\nAnd private in his chamber pens himself,\nShuts up his windows, locks far daylight out\nAnd makes himself an artificial night:\nBlack and portentous must this humour prove,\nUnless good counsel may the cause remove.\n\nBENVOLIO:\nMy noble uncle, do you know the cause?\n\nMONTAGUE:\nI neither know it nor can learn of him.\n\nBENVOLIO:\nHave you importuned him by any means?\n\nMONTAGUE:\nBoth by myself and many other friends:\nBut he, his own affections' counsellor,\nIs to himself--I will not say how true--\nBut to himself so secret and so close,\nSo far from sounding and discovery,\nAs is the bud bit with an envious worm,\nEre he can spread his sweet leaves to the air,\nOr dedicate his beauty to the sun.\nCould we but learn from whence his sorrows grow.\nWe would as willingly give cure as know.\n\nBENVOLIO:\nSee, where he comes: so please you, step aside;\nI'll know his grievance, or be much denied.\n\nMONTAGUE:\nI would thou wert so happy by thy stay,\nTo hear true shrift. Come, madam, let's away.\n\nBENVOLIO:\nGood-morrow, cousin.\n\nROMEO:\nIs the day so young?\n\nBENVOLIO:\nBut new struck nine.\n\nROMEO:\nAy me! sad hours seem long.\nWas that my father that went hence so fast?\n\nBENVOLIO:\nIt was. What sadness lengthens Romeo's hours?\n\nROMEO:\nNot having that, which, having, makes them short.\n\nBENVOLIO:\nIn love?\n\nROMEO:\nOut--\n\nBENVOLIO:\nOf love?\n\nROMEO:\nOut of her favour, where I am in love.\n\nBENVOLIO:\nAlas, that love, so gentle in his view,\nShould be so tyrannous and rough in proof!\n\nROMEO:\nAlas, that love, whose view is muffled still,\nShould, without eyes, see pathways to his will!\nWhere shall we dine? O me! What fray was here?\nYet tell me not, for I have heard it all.\nHere's much to do with hate, but more with love.\nWhy, then, O brawling love! O loving hate!\nO any thing, of nothing first create!\nO heavy lightness! serious vanity!\nMis-shapen chaos of well-seeming forms!\nFeather of lead, bright smoke, cold fire,\nsick health!\nStill-waking sleep, that is not what it is!\nThis love feel I, that feel no love in this.\nDost thou not laugh?\n\nBENVOLIO:\nNo, coz, I rather weep.\n\nROMEO:\nGood heart, at what?\n\nBENVOLIO:\nAt thy good heart's oppression.\n\nROMEO:\nWhy, such is love's transgression.\nGriefs of mine own lie heavy in my breast,\nWhich thou wilt propagate, to have it prest\nWith more of thine: this love that thou hast shown\nDoth add more grief to too much of mine own.\nLove is a smoke raised with the fume of sighs;\nBeing purged, a fire sparkling in lovers' eyes;\nBeing vex'd a sea nourish'd with lovers' tears:\nWhat is it else? a madness most discreet,\nA choking gall and a preserving sweet.\nFarewell, my coz.\n\nBENVOLIO:\nSoft! I will go along;\nAn if you leave me so, you do me wrong.\n\nROMEO:\nTut, I have lost myself; I am not here;\nThis is not Romeo, he's some other where.\n\nBENVOLIO:\nTell me in sadness, who is that you love.\n\nROMEO:\nWhat, shall I groan and tell thee?\n\nBENVOLIO:\nGroan! why, no.\nBut sadly tell me who.\n\nROMEO:\nBid a sick man in sadness make his will:\nAh, word ill urged to one that is so ill!\nIn sadness, cousin, I do love a woman.\n\nBENVOLIO:\nI aim'd so near, when I supposed you loved.\n\nROMEO:\nA right good mark-man! And she's fair I love.\n\nBENVOLIO:\nA right fair mark, fair coz, is soonest hit.\n\nROMEO:\nWell, in that hit you miss: she'll not be hit\nWith Cupid's arrow; she hath Dian's wit;\nAnd, in strong proof of chastity well arm'd,\nFrom love's weak childish bow she lives unharm'd.\nShe will not stay the siege of loving terms,\nNor bide the encounter of assailing eyes,\nNor ope her lap to saint-seducing gold:\nO, she is rich in beauty, only poor,\nThat when she dies with beauty dies her store.\n\nBENVOLIO:\nThen she hath sworn that she will still live chaste?\n\nROMEO:\nShe hath, and in that sparing makes huge waste,\nFor beauty starved with her severity\nCuts beauty off from all posterity.\nShe is too fair, too wise, wisely too fair,\nTo merit bliss by making me despair:\nShe hath forsworn to love, and in that vow\nDo I live dead that live to tell it now.\n\nBENVOLIO:\nBe ruled by me, forget to think of her.\n\nROMEO:\nO, teach me how I should forget to think.\n\nBENVOLIO:\nBy giving liberty unto thine eyes;\nExamine other beauties.\n\nROMEO:\n'Tis the way\nTo call hers exquisite, in question more:\nThese happy masks that kiss fair ladies' brows\nBeing black put us in mind they hide the fair;\nHe that is strucken blind cannot forget\nThe precious treasure of his eyesight lost:\nShow me a mistress that is passing fair,\nWhat doth her beauty serve, but as a note\nWhere I may read who pass'd that passing fair?\nFarewell: thou canst not teach me to forget.\n\nBENVOLIO:\nI'll pay that doctrine, or else die in debt.\n\nCAPULET:\nBut Montague is bound as well as I,\nIn penalty alike; and 'tis not hard, I think,\nFor men so old as we to keep the peace.\n\nPARIS:\nOf honourable reckoning are you both;\nAnd pity 'tis you lived at odds so long.\nBut now, my lord, what say you to my suit?\n\nCAPULET:\nBut saying o'er what I have said before:\nMy child is yet a stranger in the world;\nShe hath not seen the change of fourteen years,\nLet two more summers wither in their pride,\nEre we may think her ripe to be a bride.\n\nPARIS:\nYounger than she are happy mothers made.\n\nCAPULET:\nAnd too soon marr'd are those so early made.\nThe earth hath swallow'd all my hopes but she,\nShe is the hopeful lady of my earth:\nBut woo her, gentle Paris, get her heart,\nMy will to her consent is but a part;\nAn she agree, within her scope of choice\nLies my consent and fair according voice.\nThis night I hold an old accustom'd feast,\nWhereto I have invited many a guest,\nSuch as I love; and you, among the store,\nOne more, most welcome, makes my number more.\nAt my poor house look to behold this night\nEarth-treading stars that make dark heaven light:\nSuch comfort as do lusty young men feel\nWhen well-apparell'd April on the heel\nOf limping winter treads, even such delight\nAmong fresh female buds shall you this night\nInherit at my house; hear all, all see,\nAnd like her most whose merit most shall be:\nWhich on more view, of many mine being one\nMay stand in number, though in reckoning none,\nCome, go with me.\nGo, sirrah, trudge about\nThrough fair Verona; find those persons out\nWhose names are written there, and to them say,\nMy house and welcome on their pleasure stay.\n\nServant:\nFind them out whose names are written here! It is\nwritten, that the shoemaker should meddle with his\nyard, and the tailor with his last, the fisher with\nhis pencil, and the painter with his nets; but I am\nsent to find those persons whose names are here\nwrit, and can never find what names the writing\nperson hath here writ. I must to the learned.--In good time.\n\nBENVOLIO:\nTut, man, one fire burns out another's burning,\nOne pain is lessen'd by another's anguish;\nTurn giddy, and be holp by backward turning;\nOne desperate grief cures with another's languish:\nTake thou some new infection to thy eye,\nAnd the rank poison of the old will die.\n\nROMEO:\nYour plaintain-leaf is excellent for that.\n\nBENVOLIO:\nFor what, I pray thee?\n\nROMEO:\nFor your broken shin.\n\nBENVOLIO:\nWhy, Romeo, art thou mad?\n\nROMEO:\nNot mad, but bound more than a mad-man is;\nShut up in prison, kept without my food,\nWhipp'd and tormented and--God-den, good fellow.\n\nServant:\nGod gi' god-den. I pray, sir, can you read?\n\nROMEO:\nAy, mine own fortune in my misery.\n\nServant:\nPerhaps you have learned it without book: but, I\npray, can you read any thing you see?\n\nROMEO:\nAy, if I know the letters and the language.\n\nServant:\nYe say honestly: rest you merry!\n\nROMEO:\nStay, fellow; I can read.\n'Signior Martino and his wife and daughters;\nCounty Anselme and his beauteous sisters; the lady\nwidow of Vitravio; Signior Placentio and his lovely\nnieces; Mercutio and his brother Valentine; mine\nuncle Capulet, his wife and daughters; my fair niece\nRosaline; Livia; Signior Valentio and his cousin\nTybalt, Lucio and the lively Helena.' A fair\nassembly: whither should they come?\n\nServant:\nUp.\n\nROMEO:\nWhither?\n\nServant:\nTo supper; to our house.\n\nROMEO:\nWhose house?\n\nServant:\nMy master's.\n\nROMEO:\nIndeed, I should have ask'd you that before.\n\nServant:\nNow I'll tell you without asking: my master is the\ngreat rich Capulet; and if you be not of the house\nof Montagues, I pray, come and crush a cup of wine.\nRest you merry!\n\nBENVOLIO:\nAt this same ancient feast of Capulet's\nSups the fair Rosaline whom thou so lovest,\nWith all the admired beauties of Verona:\nGo thither; and, with unattainted eye,\nCompare her face with some that I shall show,\nAnd I will make thee think thy swan a crow.\n\nROMEO:\nWhen the devout religion of mine eye\nMaintains such falsehood, then turn tears to fires;\nAnd these, who often drown'd could never die,\nTransparent heretics, be burnt for liars!\nOne fairer than my love! the all-seeing sun\nNe'er saw her match since first the world begun.\n\nBENVOLIO:\nTut, you saw her fair, none else being by,\nHerself poised with herself in either eye:\nBut in that crystal scales let there be weigh'd\nYour lady's love against some other maid\nThat I will show you shining at this feast,\nAnd she shall scant show well that now shows best.\n\nROMEO:\nI'll go along, no such sight to be shown,\nBut to rejoice in splendor of mine own.\n\nLADY CAPULET:\nNurse, where's my daughter? call her forth to me.\n\nNurse:\nNow, by my maidenhead, at twelve year old,\nI bade her come. What, lamb! what, ladybird!\nGod forbid! Where's this girl? What, Juliet!\n\nJULIET:\nHow now! who calls?\n\nNurse:\nYour mother.\n\nJULIET:\nMadam, I am here.\nWhat is your will?\n\nLADY CAPULET:\nThis is the matter:--Nurse, give leave awhile,\nWe must talk in secret:--nurse, come back again;\nI have remember'd me, thou's hear our counsel.\nThou know'st my daughter's of a pretty age.\n\nNurse:\nFaith, I can tell her age unto an hour.\n\nLADY CAPULET:\nShe's not fourteen.\n\nNurse:\nI'll lay fourteen of my teeth,--\nAnd yet, to my teeth be it spoken, I have but four--\nShe is not fourteen. How long is it now\nTo Lammas-tide?\n\nLADY CAPULET:\nA fortnight and odd days.\n\nNurse:\nEven or odd, of all days in the year,\nCome Lammas-eve at night shall she be fourteen.\nSusan and she--God rest all Christian souls!--\nWere of an age: well, Susan is with God;\nShe was too good for me: but, as I said,\nOn Lammas-eve at night shall she be fourteen;\nThat shall she, marry; I remember it well.\n'Tis since the earthquake now eleven years;\nAnd she was wean'd,--I never shall forget it,--\nOf all the days of the year, upon that day:\nFor I had then laid wormwood to my dug,\nSitting in the sun under the dove-house wall;\nMy lord and you were then at Mantua:--\nNay, I do bear a brain:--but, as I said,\nWhen it did taste the wormwood on the nipple\nOf my dug and felt it bitter, pretty fool,\nTo see it tetchy and fall out with the dug!\nShake quoth the dove-house: 'twas no need, I trow,\nTo bid me trudge:\nAnd since that time it is eleven years;\nFor then she could stand alone; nay, by the rood,\nShe could have run and waddled all about;\nFor even the day before, she broke her brow:\nAnd then my husband--God be with his soul!\nA' was a merry man--took up the child:\n'Yea,' quoth he, 'dost thou fall upon thy face?\nThou wilt fall backward when thou hast more wit;\nWilt thou not, Jule?' and, by my holidame,\nThe pretty wretch left crying and said 'Ay.'\nTo see, now, how a jest shall come about!\nI warrant, an I should live a thousand years,\nI never should forget it: 'Wilt thou not, Jule?' quoth he;\nAnd, pretty fool, it stinted and said 'Ay.'\n\nLADY CAPULET:\nEnough of this; I pray thee, hold thy peace.\n\nNurse:\nYes, madam: yet I cannot choose but laugh,\nTo think it should leave crying and say 'Ay.'\nAnd yet, I warrant, it had upon its brow\nA bump as big as a young cockerel's stone;\nA parlous knock; and it cried bitterly:\n'Yea,' quoth my husband,'fall'st upon thy face?\nThou wilt fall backward when thou comest to age;\nWilt thou not, Jule?' it stinted and said 'Ay.'\n\nJULIET:\nAnd stint thou too, I pray thee, nurse, say I.\n\nNurse:\nPeace, I have done. God mark thee to his grace!\nThou wast the prettiest babe that e'er I nursed:\nAn I might live to see thee married once,\nI have my wish.\n\nLADY CAPULET:\nMarry, that 'marry' is the very theme\nI came to talk of. Tell me, daughter Juliet,\nHow stands your disposition to be married?\n\nJULIET:\nIt is an honour that I dream not of.\n\nNurse:\nAn honour! were not I thine only nurse,\nI would say thou hadst suck'd wisdom from thy teat.\n\nLADY CAPULET:\nWell, think of marriage now; younger than you,\nHere in Verona, ladies of esteem,\nAre made already mothers: by my count,\nI was your mother much upon these years\nThat you are now a maid. Thus then in brief:\nThe valiant Paris seeks you for his love.\n\nNurse:\nA man, young lady! lady, such a man\nAs all the world--why, he's a man of wax.\n\nLADY CAPULET:\nVerona's summer hath not such a flower.\n\nNurse:\nNay, he's a flower; in faith, a very flower.\n\nLADY CAPULET:\nWhat say you? can you love the gentleman?\nThis night you shall behold him at our feast;\nRead o'er the volume of young Paris' face,\nAnd find delight writ there with beauty's pen;\nExamine every married lineament,\nAnd see how one another lends content\nAnd what obscured in this fair volume lies\nFind written in the margent of his eyes.\nThis precious book of love, this unbound lover,\nTo beautify him, only lacks a cover:\nThe fish lives in the sea, and 'tis much pride\nFor fair without the fair within to hide:\nThat book in many's eyes doth share the glory,\nThat in gold clasps locks in the golden story;\nSo shall you share all that he doth possess,\nBy having him, making yourself no less.\n\nNurse:\nNo less! nay, bigger; women grow by men.\n\nLADY CAPULET:\nSpeak briefly, can you like of Paris' love?\n\nJULIET:\nI'll look to like, if looking liking move:\nBut no more deep will I endart mine eye\nThan your consent gives strength to make it fly.\n\nServant:\nMadam, the guests are come, supper served up, you\ncalled, my young lady asked for, the nurse cursed in\nthe pantry, and every thing in extremity. I must\nhence to wait; I beseech you, follow straight.\n\nLADY CAPULET:\nWe follow thee.\nJuliet, the county stays.\n\nNurse:\nGo, girl, seek happy nights to happy days.\n\nROMEO:\nWhat, shall this speech be spoke for our excuse?\nOr shall we on without a apology?\n\nBENVOLIO:\nThe date is out of such prolixity:\nWe'll have no Cupid hoodwink'd with a scarf,\nBearing a Tartar's painted bow of lath,\nScaring the ladies like a crow-keeper;\nNor no without-book prologue, faintly spoke\nAfter the prompter, for our entrance:\nBut let them measure us by what they will;\nWe'll measure them a measure, and be gone.\n\nROMEO:\nGive me a torch: I am not for this ambling;\nBeing but heavy, I will bear the light.\n\nMERCUTIO:\nNay, gentle Romeo, we must have you dance.\n\nROMEO:\nNot I, believe me: you have dancing shoes\nWith nimble soles: I have a soul of lead\nSo stakes me to the ground I cannot move.\n\nMERCUTIO:\nYou are a lover; borrow Cupid's wings,\nAnd soar with them above a common bound.\n\nROMEO:\nI am too sore enpierced with his shaft\nTo soar with his light feathers, and so bound,\nI cannot bound a pitch above dull woe:\nUnder love's heavy burden do I sink.\n\nMERCUTIO:\nAnd, to sink in it, should you burden love;\nToo great oppression for a tender thing.\n\nROMEO:\nIs love a tender thing? it is too rough,\nToo rude, too boisterous, and it pricks like thorn.\n\nMERCUTIO:\nIf love be rough with you, be rough with love;\nPrick love for pricking, and you beat love down.\nGive me a case to put my visage in:\nA visor for a visor! what care I\nWhat curious eye doth quote deformities?\nHere are the beetle brows shall blush for me.\n\nBENVOLIO:\nCome, knock and enter; and no sooner in,\nBut every man betake him to his legs.\n\nROMEO:\nA torch for me: let wantons light of heart\nTickle the senseless rushes with their heels,\nFor I am proverb'd with a grandsire phrase;\nI'll be a candle-holder, and look on.\nThe game was ne'er so fair, and I am done.\n\nMERCUTIO:\nTut, dun's the mouse, the constable's own word:\nIf thou art dun, we'll draw thee from the mire\nOf this sir-reverence love, wherein thou stick'st\nUp to the ears. Come, we burn daylight, ho!\n\nROMEO:\nNay, that's not so.\n\nMERCUTIO:\nI mean, sir, in delay\nWe waste our lights in vain, like lamps by day.\nTake our good meaning, for our judgment sits\nFive times in that ere once in our five wits.\n\nROMEO:\nAnd we mean well in going to this mask;\nBut 'tis no wit to go.\n\nMERCUTIO:\nWhy, may one ask?\n\nROMEO:\nI dream'd a dream to-night.\n\nMERCUTIO:\nAnd so did I.\n\nROMEO:\nWell, what was yours?\n\nMERCUTIO:\nThat dreamers often lie.\n\nROMEO:\nIn bed asleep, while they do dream things true.\n\nMERCUTIO:\nO, then, I see Queen Mab hath been with you.\nShe is the fairies' midwife, and she comes\nIn shape no bigger than an agate-stone\nOn the fore-finger of an alderman,\nDrawn with a team of little atomies\nAthwart men's noses as they lie asleep;\nHer wagon-spokes made of long spiders' legs,\nThe cover of the wings of grasshoppers,\nThe traces of the smallest spider's web,\nThe collars of the moonshine's watery beams,\nHer whip of cricket's bone, the lash of film,\nHer wagoner a small grey-coated gnat,\nNot so big as a round little worm\nPrick'd from the lazy finger of a maid;\nHer chariot is an empty hazel-nut\nMade by the joiner squirrel or old grub,\nTime out o' mind the fairies' coachmakers.\nAnd in this state she gallops night by night\nThrough lovers' brains, and then they dream of love;\nO'er courtiers' knees, that dream on court'sies straight,\nO'er lawyers' fingers, who straight dream on fees,\nO'er ladies ' lips, who straight on kisses dream,\nWhich oft the angry Mab with blisters plagues,\nBecause their breaths with sweetmeats tainted are:\nSometime she gallops o'er a courtier's nose,\nAnd then dreams he of smelling out a suit;\nAnd sometime comes she with a tithe-pig's tail\nTickling a parson's nose as a' lies asleep,\nThen dreams, he of another benefice:\nSometime she driveth o'er a soldier's neck,\nAnd then dreams he of cutting foreign throats,\nOf breaches, ambuscadoes, Spanish blades,\nOf healths five-fathom deep; and then anon\nDrums in his ear, at which he starts and wakes,\nAnd being thus frighted swears a prayer or two\nAnd sleeps again. This is that very Mab\nThat plats the manes of horses in the night,\nAnd bakes the elflocks in foul sluttish hairs,\nWhich once untangled, much misfortune bodes:\nThis is the hag, when maids lie on their backs,\nThat presses them and learns them first to bear,\nMaking them women of good carriage:\nThis is she--\n\nROMEO:\nPeace, peace, Mercutio, peace!\nThou talk'st of nothing.\n\nMERCUTIO:\nTrue, I talk of dreams,\nWhich are the children of an idle brain,\nBegot of nothing but vain fantasy,\nWhich is as thin of substance as the air\nAnd more inconstant than the wind, who wooes\nEven now the frozen bosom of the north,\nAnd, being anger'd, puffs away from thence,\nTurning his face to the dew-dropping south.\n\nBENVOLIO:\nThis wind, you talk of, blows us from ourselves;\nSupper is done, and we shall come too late.\n\nROMEO:\nI fear, too early: for my mind misgives\nSome consequence yet hanging in the stars\nShall bitterly begin his fearful date\nWith this night's revels and expire the term\nOf a despised life closed in my breast\nBy some vile forfeit of untimely death.\nBut He, that hath the steerage of my course,\nDirect my sail! On, lusty gentlemen.\n\nBENVOLIO:\nStrike, drum.\n\nFirst Servant:\nWhere's Potpan, that he helps not to take away? He\nshift a trencher? he scrape a trencher!\n\nSecond Servant:\nWhen good manners shall lie all in one or two men's\nhands and they unwashed too, 'tis a foul thing.\n\nFirst Servant:\nAway with the joint-stools, remove the\ncourt-cupboard, look to the plate. Good thou, save\nme a piece of marchpane; and, as thou lovest me, let\nthe porter let in Susan Grindstone and Nell.\nAntony, and Potpan!\n\nSecond Servant:\nAy, boy, ready.\n\nFirst Servant:\nYou are looked for and called for, asked for and\nsought for, in the great chamber.\n\nSecond Servant:\nWe cannot be here and there too. Cheerly, boys; be\nbrisk awhile, and the longer liver take all.\n\nCAPULET:\nWelcome, gentlemen! ladies that have their toes\nUnplagued with corns will have a bout with you.\nAh ha, my mistresses! which of you all\nWill now deny to dance? she that makes dainty,\nShe, I'll swear, hath corns; am I come near ye now?\nWelcome, gentlemen! I have seen the day\nThat I have worn a visor and could tell\nA whispering tale in a fair lady's ear,\nSuch as would please: 'tis gone, 'tis gone, 'tis gone:\nYou are welcome, gentlemen! come, musicians, play.\nA hall, a hall! give room! and foot it, girls.\nMore light, you knaves; and turn the tables up,\nAnd quench the fire, the room is grown too hot.\nAh, sirrah, this unlook'd-for sport comes well.\nNay, sit, nay, sit, good cousin Capulet;\nFor you and I are past our dancing days:\nHow long is't now since last yourself and I\nWere in a mask?\n\nSecond Capulet:\nBy'r lady, thirty years.\n\nCAPULET:\nWhat, man! 'tis not so much, 'tis not so much:\n'Tis since the nuptials of Lucentio,\nCome pentecost as quickly as it will,\nSome five and twenty years; and then we mask'd.\n\nSecond Capulet:\n'Tis more, 'tis more, his son is elder, sir;\nHis son is thirty.\n\nCAPULET:\nWill you tell me that?\nHis son was but a ward two years ago.\n\nROMEO:\n\nServant:\nI know not, sir.\n\nROMEO:\nO, she doth teach the torches to burn bright!\nIt seems she hangs upon the cheek of night\nLike a rich jewel in an Ethiope's ear;\nBeauty too rich for use, for earth too dear!\nSo shows a snowy dove trooping with crows,\nAs yonder lady o'er her fellows shows.\nThe measure done, I'll watch her place of stand,\nAnd, touching hers, make blessed my rude hand.\nDid my heart love till now? forswear it, sight!\nFor I ne'er saw true beauty till this night.\n\nTYBALT:\nThis, by his voice, should be a Montague.\nFetch me my rapier, boy. What dares the slave\nCome hither, cover'd with an antic face,\nTo fleer and scorn at our solemnity?\nNow, by the stock and honour of my kin,\nTo strike him dead, I hold it not a sin.\n\nCAPULET:\nWhy, how now, kinsman! wherefore storm you so?\n\nTYBALT:\nUncle, this is a Montague, our foe,\nA villain that is hither come in spite,\nTo scorn at our solemnity this night.\n\nCAPULET:\nYoung Romeo is it?\n\nTYBALT:\n'Tis he, that villain Romeo.\n\nCAPULET:\nContent thee, gentle coz, let him alone;\nHe bears him like a portly gentleman;\nAnd, to say truth, Verona brags of him\nTo be a virtuous and well-govern'd youth:\nI would not for the wealth of all the town\nHere in my house do him disparagement:\nTherefore be patient, take no note of him:\nIt is my will, the which if thou respect,\nShow a fair presence and put off these frowns,\nAnd ill-beseeming semblance for a feast.\n\nTYBALT:\nIt fits, when such a villain is a guest:\nI'll not endure him.\n\nCAPULET:\nHe shall be endured:\nWhat, goodman boy! I say, he shall: go to;\nAm I the master here, or you? go to.\nYou'll not endure him! God shall mend my soul!\nYou'll make a mutiny among my guests!\nYou will set cock-a-hoop! you'll be the man!\n\nTYBALT:\nWhy, uncle, 'tis a shame.\n\nCAPULET:\nGo to, go to;\nYou are a saucy boy: is't so, indeed?\nThis trick may chance to scathe you, I know what:\nYou must contrary me! marry, 'tis time.\nWell said, my hearts! You are a princox; go:\nBe quiet, or--More light, more light! For shame!\nI'll make you quiet. What, cheerly, my hearts!\n\nTYBALT:\nPatience perforce with wilful choler meeting\nMakes my flesh tremble in their different greeting.\nI will withdraw: but this intrusion shall\nNow seeming sweet convert to bitter gall.\n\nROMEO:\n\nJULIET:\nGood pilgrim, you do wrong your hand too much,\nWhich mannerly devotion shows in this;\nFor saints have hands that pilgrims' hands do touch,\nAnd palm to palm is holy palmers' kiss.\n\nROMEO:\nHave not saints lips, and holy palmers too?\n\nJULIET:\nAy, pilgrim, lips that they must use in prayer.\n\nROMEO:\nO, then, dear saint, let lips do what hands do;\nThey pray, grant thou, lest faith turn to despair.\n\nJULIET:\nSaints do not move, though grant for prayers' sake.\n\nROMEO:\nThen move not, while my prayer's effect I take.\nThus from my lips, by yours, my sin is purged.\n\nJULIET:\nThen have my lips the sin that they have took.\n\nROMEO:\nSin from thy lips? O trespass sweetly urged!\nGive me my sin again.\n\nJULIET:\nYou kiss by the book.\n\nNurse:\nMadam, your mother craves a word with you.\n\nROMEO:\nWhat is her mother?\n\nNurse:\nMarry, bachelor,\nHer mother is the lady of the house,\nAnd a good lady, and a wise and virtuous\nI nursed her daughter, that you talk'd withal;\nI tell you, he that can lay hold of her\nShall have the chinks.\n\nROMEO:\nIs she a Capulet?\nO dear account! my life is my foe's debt.\n\nBENVOLIO:\nAway, begone; the sport is at the best.\n\nROMEO:\nAy, so I fear; the more is my unrest.\n\nCAPULET:\nNay, gentlemen, prepare not to be gone;\nWe have a trifling foolish banquet towards.\nIs it e'en so? why, then, I thank you all\nI thank you, honest gentlemen; good night.\nMore torches here! Come on then, let's to bed.\nAh, sirrah, by my fay, it waxes late:\nI'll to my rest.\n\nJULIET:\nCome hither, nurse. What is yond gentleman?\n\nNurse:\nThe son and heir of old Tiberio.\n\nJULIET:\nWhat's he that now is going out of door?\n\nNurse:\nMarry, that, I think, be young Petrucio.\n\nJULIET:\nWhat's he that follows there, that would not dance?\n\nNurse:\nI know not.\n\nJULIET:\nGo ask his name: if he be married.\nMy grave is like to be my wedding bed.\n\nNurse:\nHis name is Romeo, and a Montague;\nThe only son of your great enemy.\n\nJULIET:\nMy only love sprung from my only hate!\nToo early seen unknown, and known too late!\nProdigious birth of love it is to me,\nThat I must love a loathed enemy.\n\nNurse:\nWhat's this? what's this?\n\nJULIET:\nA rhyme I learn'd even now\nOf one I danced withal.\n\nNurse:\nAnon, anon!\nCome, let's away; the strangers all are gone.\n\nChorus:\nNow old desire doth in his death-bed lie,\nAnd young affection gapes to be his heir;\nThat fair for which love groan'd for and would die,\nWith tender Juliet match'd, is now not fair.\nNow Romeo is beloved and loves again,\nAlike betwitched by the charm of looks,\nBut to his foe supposed he must complain,\nAnd she steal love's sweet bait from fearful hooks:\nBeing held a foe, he may not have access\nTo breathe such vows as lovers use to swear;\nAnd she as much in love, her means much less\nTo meet her new-beloved any where:\nBut passion lends them power, time means, to meet\nTempering extremities with extreme sweet.\n\nROMEO:\nCan I go forward when my heart is here?\nTurn back, dull earth, and find thy centre out.\n\nBENVOLIO:\nRomeo! my cousin Romeo!\n\nMERCUTIO:\nHe is wise;\nAnd, on my lie, hath stol'n him home to bed.\n\nBENVOLIO:\nHe ran this way, and leap'd this orchard wall:\nCall, good Mercutio.\n\nMERCUTIO:\nNay, I'll conjure too.\nRomeo! humours! madman! passion! lover!\nAppear thou in the likeness of a sigh:\nSpeak but one rhyme, and I am satisfied;\nCry but 'Ay me!' pronounce but 'love' and 'dove;'\nSpeak to my gossip Venus one fair word,\nOne nick-name for her purblind son and heir,\nYoung Adam Cupid, he that shot so trim,\nWhen King Cophetua loved the beggar-maid!\nHe heareth not, he stirreth not, he moveth not;\nThe ape is dead, and I must conjure him.\nI conjure thee by Rosaline's bright eyes,\nBy her high forehead and her scarlet lip,\nBy her fine foot, straight leg and quivering thigh\nAnd the demesnes that there adjacent lie,\nThat in thy likeness thou appear to us!\n\nBENVOLIO:\nAnd if he hear thee, thou wilt anger him.\n\nMERCUTIO:\nThis cannot anger him: 'twould anger him\nTo raise a spirit in his mistress' circle\nOf some strange nature, letting it there stand\nTill she had laid it and conjured it down;\nThat were some spite: my invocation\nIs fair and honest, and in his mistress' name\nI conjure only but to raise up him.\n\nBENVOLIO:\nCome, he hath hid himself among these trees,\nTo be consorted with the humorous night:\nBlind is his love and best befits the dark.\n\nMERCUTIO:\nIf love be blind, love cannot hit the mark.\nNow will he sit under a medlar tree,\nAnd wish his mistress were that kind of fruit\nAs maids call medlars, when they laugh alone.\nRomeo, that she were, O, that she were\nAn open et caetera, thou a poperin pear!\nRomeo, good night: I'll to my truckle-bed;\nThis field-bed is too cold for me to sleep:\nCome, shall we go?\n\nBENVOLIO:\nGo, then; for 'tis in vain\nTo seek him here that means not to be found.\n\nROMEO:\nHe jests at scars that never felt a wound.\nBut, soft! what light through yonder window breaks?\nIt is the east, and Juliet is the sun.\nArise, fair sun, and kill the envious moon,\nWho is already sick and pale with grief,\nThat thou her maid art far more fair than she:\nBe not her maid, since she is envious;\nHer vestal livery is but sick and green\nAnd none but fools do wear it; cast it off.\nIt is my lady, O, it is my love!\nO, that she knew she were!\nShe speaks yet she says nothing: what of that?\nHer eye discourses; I will answer it.\nI am too bold, 'tis not to me she speaks:\nTwo of the fairest stars in all the heaven,\nHaving some business, do entreat her eyes\nTo twinkle in their spheres till they return.\nWhat if her eyes were there, they in her head?\nThe brightness of her cheek would shame those stars,\nAs daylight doth a lamp; her eyes in heaven\nWould through the airy region stream so bright\nThat birds would sing and think it were not night.\nSee, how she leans her cheek upon her hand!\nO, that I were a glove upon that hand,\nThat I might touch that cheek!\n\nJULIET:\nAy me!\n\nROMEO:\nShe speaks:\nO, speak again, bright angel! for thou art\nAs glorious to this night, being o'er my head\nAs is a winged messenger of heaven\nUnto the white-upturned wondering eyes\nOf mortals that fall back to gaze on him\nWhen he bestrides the lazy-pacing clouds\nAnd sails upon the bosom of the air.\n\nJULIET:\nO Romeo, Romeo! wherefore art thou Romeo?\nDeny thy father and refuse thy name;\nOr, if thou wilt not, be but sworn my love,\nAnd I'll no longer be a Capulet.\n\nROMEO:\n\nJULIET:\n'Tis but thy name that is my enemy;\nThou art thyself, though not a Montague.\nWhat's Montague? it is nor hand, nor foot,\nNor arm, nor face, nor any other part\nBelonging to a man. O, be some other name!\nWhat's in a name? that which we call a rose\nBy any other name would smell as sweet;\nSo Romeo would, were he not Romeo call'd,\nRetain that dear perfection which he owes\nWithout that title. Romeo, doff thy name,\nAnd for that name which is no part of thee\nTake all myself.\n\nROMEO:\nI take thee at thy word:\nCall me but love, and I'll be new baptized;\nHenceforth I never will be Romeo.\n\nJULIET:\nWhat man art thou that thus bescreen'd in night\nSo stumblest on my counsel?\n\nROMEO:\nBy a name\nI know not how to tell thee who I am:\nMy name, dear saint, is hateful to myself,\nBecause it is an enemy to thee;\nHad I it written, I would tear the word.\n\nJULIET:\nMy ears have not yet drunk a hundred words\nOf that tongue's utterance, yet I know the sound:\nArt thou not Romeo and a Montague?\n\nROMEO:\nNeither, fair saint, if either thee dislike.\n\nJULIET:\nHow camest thou hither, tell me, and wherefore?\nThe orchard walls are high and hard to climb,\nAnd the place death, considering who thou art,\nIf any of my kinsmen find thee here.\n\nROMEO:\nWith love's light wings did I o'er-perch these walls;\nFor stony limits cannot hold love out,\nAnd what love can do that dares love attempt;\nTherefore thy kinsmen are no let to me.\n\nJULIET:\nIf they do see thee, they will murder thee.\n\nROMEO:\nAlack, there lies more peril in thine eye\nThan twenty of their swords: look thou but sweet,\nAnd I am proof against their enmity.\n\nJULIET:\nI would not for the world they saw thee here.\n\nROMEO:\nI have night's cloak to hide me from their sight;\nAnd but thou love me, let them find me here:\nMy life were better ended by their hate,\nThan death prorogued, wanting of thy love.\n\nJULIET:\nBy whose direction found'st thou out this place?\n\nROMEO:\nBy love, who first did prompt me to inquire;\nHe lent me counsel and I lent him eyes.\nI am no pilot; yet, wert thou as far\nAs that vast shore wash'd with the farthest sea,\nI would adventure for such merchandise.\n\nJULIET:\nThou know'st the mask of night is on my face,\nElse would a maiden blush bepaint my cheek\nFor that which thou hast heard me speak to-night\nFain would I dwell on form, fain, fain deny\nWhat I have spoke: but farewell compliment!\nDost thou love me? I know thou wilt say 'Ay,'\nAnd I will take thy word: yet if thou swear'st,\nThou mayst prove false; at lovers' perjuries\nThen say, Jove laughs. O gentle Romeo,\nIf thou dost love, pronounce it faithfully:\nOr if thou think'st I am too quickly won,\nI'll frown and be perverse an say thee nay,\nSo thou wilt woo; but else, not for the world.\nIn truth, fair Montague, I am too fond,\nAnd therefore thou mayst think my 'havior light:\nBut trust me, gentleman, I'll prove more true\nThan those that have more cunning to be strange.\nI should have been more strange, I must confess,\nBut that thou overheard'st, ere I was ware,\nMy true love's passion: therefore pardon me,\nAnd not impute this yielding to light love,\nWhich the dark night hath so discovered.\n\nROMEO:\nLady, by yonder blessed moon I swear\nThat tips with silver all these fruit-tree tops--\n\nJULIET:\nO, swear not by the moon, the inconstant moon,\nThat monthly changes in her circled orb,\nLest that thy love prove likewise variable.\n\nROMEO:\nWhat shall I swear by?\n\nJULIET:\nDo not swear at all;\nOr, if thou wilt, swear by thy gracious self,\nWhich is the god of my idolatry,\nAnd I'll believe thee.\n\nROMEO:\nIf my heart's dear love--\n\nJULIET:\nWell, do not swear: although I joy in thee,\nI have no joy of this contract to-night:\nIt is too rash, too unadvised, too sudden;\nToo like the lightning, which doth cease to be\nEre one can say 'It lightens.' Sweet, good night!\nThis bud of love, by summer's ripening breath,\nMay prove a beauteous flower when next we meet.\nGood night, good night! as sweet repose and rest\nCome to thy heart as that within my breast!\n\nROMEO:\nO, wilt thou leave me so unsatisfied?\n\nJULIET:\nWhat satisfaction canst thou have to-night?\n\nROMEO:\nThe exchange of thy love's faithful vow for mine.\n\nJULIET:\nI gave thee mine before thou didst request it:\nAnd yet I would it were to give again.\n\nROMEO:\nWouldst thou withdraw it? for what purpose, love?\n\nJULIET:\nBut to be frank, and give it thee again.\nAnd yet I wish but for the thing I have:\nMy bounty is as boundless as the sea,\nMy love as deep; the more I give to thee,\nThe more I have, for both are infinite.\nI hear some noise within; dear love, adieu!\nAnon, good nurse! Sweet Montague, be true.\nStay but a little, I will come again.\n\nROMEO:\nO blessed, blessed night! I am afeard.\nBeing in night, all this is but a dream,\nToo flattering-sweet to be substantial.\n\nJULIET:\nThree words, dear Romeo, and good night indeed.\nIf that thy bent of love be honourable,\nThy purpose marriage, send me word to-morrow,\nBy one that I'll procure to come to thee,\nWhere and what time thou wilt perform the rite;\nAnd all my fortunes at thy foot I'll lay\nAnd follow thee my lord throughout the world.\n\nNurse:\n\nJULIET:\nI come, anon.--But if thou mean'st not well,\nI do beseech thee--\n\nNurse:\n\nJULIET:\nBy and by, I come:--\nTo cease thy suit, and leave me to my grief:\nTo-morrow will I send.\n\nROMEO:\nSo thrive my soul--\n\nJULIET:\nA thousand times good night!\n\nROMEO:\nA thousand times the worse, to want thy light.\nLove goes toward love, as schoolboys from\ntheir books,\nBut love from love, toward school with heavy looks.\n\nJULIET:\nHist! Romeo, hist! O, for a falconer's voice,\nTo lure this tassel-gentle back again!\nBondage is hoarse, and may not speak aloud;\nElse would I tear the cave where Echo lies,\nAnd make her airy tongue more hoarse than mine,\nWith repetition of my Romeo's name.\n\nROMEO:\nIt is my soul that calls upon my name:\nHow silver-sweet sound lovers' tongues by night,\nLike softest music to attending ears!\n\nJULIET:\nRomeo!\n\nROMEO:\nMy dear?\n\nJULIET:\nAt what o'clock to-morrow\nShall I send to thee?\n\nROMEO:\nAt the hour of nine.\n\nJULIET:\nI will not fail: 'tis twenty years till then.\nI have forgot why I did call thee back.\n\nROMEO:\nLet me stand here till thou remember it.\n\nJULIET:\nI shall forget, to have thee still stand there,\nRemembering how I love thy company.\n\nROMEO:\nAnd I'll still stay, to have thee still forget,\nForgetting any other home but this.\n\nJULIET:\n'Tis almost morning; I would have thee gone:\nAnd yet no further than a wanton's bird;\nWho lets it hop a little from her hand,\nLike a poor prisoner in his twisted gyves,\nAnd with a silk thread plucks it back again,\nSo loving-jealous of his liberty.\n\nROMEO:\nI would I were thy bird.\n\nJULIET:\nSweet, so would I:\nYet I should kill thee with much cherishing.\nGood night, good night! parting is such\nsweet sorrow,\nThat I shall say good night till it be morrow.\n\nROMEO:\nSleep dwell upon thine eyes, peace in thy breast!\nWould I were sleep and peace, so sweet to rest!\nHence will I to my ghostly father's cell,\nHis help to crave, and my dear hap to tell.\n\nFRIAR LAURENCE:\nThe grey-eyed morn smiles on the frowning night,\nChequering the eastern clouds with streaks of light,\nAnd flecked darkness like a drunkard reels\nFrom forth day's path and Titan's fiery wheels:\nNow, ere the sun advance his burning eye,\nThe day to cheer and night's dank dew to dry,\nI must up-fill this osier cage of ours\nWith baleful weeds and precious-juiced flowers.\nThe earth that's nature's mother is her tomb;\nWhat is her burying grave that is her womb,\nAnd from her womb children of divers kind\nWe sucking on her natural bosom find,\nMany for many virtues excellent,\nNone but for some and yet all different.\nO, mickle is the powerful grace that lies\nIn herbs, plants, stones, and their true qualities:\nFor nought so vile that on the earth doth live\nBut to the earth some special good doth give,\nNor aught so good but strain'd from that fair use\nRevolts from true birth, stumbling on abuse:\nVirtue itself turns vice, being misapplied;\nAnd vice sometimes by action dignified.\nWithin the infant rind of this small flower\nPoison hath residence and medicine power:\nFor this, being smelt, with that part cheers each part;\nBeing tasted, slays all senses with the heart.\nTwo such opposed kings encamp them still\nIn man as well as herbs, grace and rude will;\nAnd where the worser is predominant,\nFull soon the canker death eats up that plant.\n\nROMEO:\nGood morrow, father.\n\nFRIAR LAURENCE:\nBenedicite!\nWhat early tongue so sweet saluteth me?\nYoung son, it argues a distemper'd head\nSo soon to bid good morrow to thy bed:\nCare keeps his watch in every old man's eye,\nAnd where care lodges, sleep will never lie;\nBut where unbruised youth with unstuff'd brain\nDoth couch his limbs, there golden sleep doth reign:\nTherefore thy earliness doth me assure\nThou art up-roused by some distemperature;\nOr if not so, then here I hit it right,\nOur Romeo hath not been in bed to-night.\n\nROMEO:\nThat last is true; the sweeter rest was mine.\n\nFRIAR LAURENCE:\nGod pardon sin! wast thou with Rosaline?\n\nROMEO:\nWith Rosaline, my ghostly father? no;\nI have forgot that name, and that name's woe.\n\nFRIAR LAURENCE:\nThat's my good son: but where hast thou been, then?\n\nROMEO:\nI'll tell thee, ere thou ask it me again.\nI have been feasting with mine enemy,\nWhere on a sudden one hath wounded me,\nThat's by me wounded: both our remedies\nWithin thy help and holy physic lies:\nI bear no hatred, blessed man, for, lo,\nMy intercession likewise steads my foe.\n\nFRIAR LAURENCE:\nBe plain, good son, and homely in thy drift;\nRiddling confession finds but riddling shrift.\n\nROMEO:\nThen plainly know my heart's dear love is set\nOn the fair daughter of rich Capulet:\nAs mine on hers, so hers is set on mine;\nAnd all combined, save what thou must combine\nBy holy marriage: when and where and how\nWe met, we woo'd and made exchange of vow,\nI'll tell thee as we pass; but this I pray,\nThat thou consent to marry us to-day.\n\nFRIAR LAURENCE:\nHoly Saint Francis, what a change is here!\nIs Rosaline, whom thou didst love so dear,\nSo soon forsaken? young men's love then lies\nNot truly in their hearts, but in their eyes.\nJesu Maria, what a deal of brine\nHath wash'd thy sallow cheeks for Rosaline!\nHow much salt water thrown away in waste,\nTo season love, that of it doth not taste!\nThe sun not yet thy sighs from heaven clears,\nThy old groans ring yet in my ancient ears;\nLo, here upon thy cheek the stain doth sit\nOf an old tear that is not wash'd off yet:\nIf e'er thou wast thyself and these woes thine,\nThou and these woes were all for Rosaline:\nAnd art thou changed? pronounce this sentence then,\nWomen may fall, when there's no strength in men.\n\nROMEO:\nThou chid'st me oft for loving Rosaline.\n\nFRIAR LAURENCE:\nFor doting, not for loving, pupil mine.\n\nROMEO:\nAnd bad'st me bury love.\n\nFRIAR LAURENCE:\nNot in a grave,\nTo lay one in, another out to have.\n\nROMEO:\nI pray thee, chide not; she whom I love now\nDoth grace for grace and love for love allow;\nThe other did not so.\n\nFRIAR LAURENCE:\nO, she knew well\nThy love did read by rote and could not spell.\nBut come, young waverer, come, go with me,\nIn one respect I'll thy assistant be;\nFor this alliance may so happy prove,\nTo turn your households' rancour to pure love.\n\nROMEO:\nO, let us hence; I stand on sudden haste.\n\nFRIAR LAURENCE:\nWisely and slow; they stumble that run fast.\n\nMERCUTIO:\nWhere the devil should this Romeo be?\nCame he not home to-night?\n\nBENVOLIO:\nNot to his father's; I spoke with his man.\n\nMERCUTIO:\nAh, that same pale hard-hearted wench, that Rosaline.\nTorments him so, that he will sure run mad.\n\nBENVOLIO:\nTybalt, the kinsman of old Capulet,\nHath sent a letter to his father's house.\n\nMERCUTIO:\nA challenge, on my life.\n\nBENVOLIO:\nRomeo will answer it.\n\nMERCUTIO:\nAny man that can write may answer a letter.\n\nBENVOLIO:\nNay, he will answer the letter's master, how he\ndares, being dared.\n\nMERCUTIO:\nAlas poor Romeo! he is already dead; stabbed with a\nwhite wench's black eye; shot through the ear with a\nlove-song; the very pin of his heart cleft with the\nblind bow-boy's butt-shaft: and is he a man to\nencounter Tybalt?\n\nBENVOLIO:\nWhy, what is Tybalt?\n\nMERCUTIO:\nMore than prince of cats, I can tell you. O, he is\nthe courageous captain of compliments. He fights as\nyou sing prick-song, keeps time, distance, and\nproportion; rests me his minim rest, one, two, and\nthe third in your bosom: the very butcher of a silk\nbutton, a duellist, a duellist; a gentleman of the\nvery first house, of the first and second cause:\nah, the immortal passado! the punto reverso! the\nhai!\n\nBENVOLIO:\nThe what?\n\nMERCUTIO:\nThe pox of such antic, lisping, affecting\nfantasticoes; these new tuners of accents! 'By Jesu,\na very good blade! a very tall man! a very good\nwhore!' Why, is not this a lamentable thing,\ngrandsire, that we should be thus afflicted with\nthese strange flies, these fashion-mongers, these\nperdona-mi's, who stand so much on the new form,\nthat they cannot at ease on the old bench? O, their\nbones, their bones!\n\nBENVOLIO:\nHere comes Romeo, here comes Romeo.\n\nMERCUTIO:\nWithout his roe, like a dried herring: flesh, flesh,\nhow art thou fishified! Now is he for the numbers\nthat Petrarch flowed in: Laura to his lady was but a\nkitchen-wench; marry, she had a better love to\nbe-rhyme her; Dido a dowdy; Cleopatra a gipsy;\nHelen and Hero hildings and harlots; Thisbe a grey\neye or so, but not to the purpose. Signior\nRomeo, bon jour! there's a French salutation\nto your French slop. You gave us the counterfeit\nfairly last night.\n\nROMEO:\nGood morrow to you both. What counterfeit did I give you?\n\nMERCUTIO:\nThe ship, sir, the slip; can you not conceive?\n\nROMEO:\nPardon, good Mercutio, my business was great; and in\nsuch a case as mine a man may strain courtesy.\n\nMERCUTIO:\nThat's as much as to say, such a case as yours\nconstrains a man to bow in the hams.\n\nROMEO:\nMeaning, to court'sy.\n\nMERCUTIO:\nThou hast most kindly hit it.\n\nROMEO:\nA most courteous exposition.\n\nMERCUTIO:\nNay, I am the very pink of courtesy.\n\nROMEO:\nPink for flower.\n\nMERCUTIO:\nRight.\n\nROMEO:\nWhy, then is my pump well flowered.\n\nMERCUTIO:\nWell said: follow me this jest now till thou hast\nworn out thy pump, that when the single sole of it\nis worn, the jest may remain after the wearing sole singular.\n\nROMEO:\nO single-soled jest, solely singular for the\nsingleness.\n\nMERCUTIO:\nCome between us, good Benvolio; my wits faint.\n\nROMEO:\nSwitch and spurs, switch and spurs; or I'll cry a match.\n\nMERCUTIO:\nNay, if thy wits run the wild-goose chase, I have\ndone, for thou hast more of the wild-goose in one of\nthy wits than, I am sure, I have in my whole five:\nwas I with you there for the goose?\n\nROMEO:\nThou wast never with me for any thing when thou wast\nnot there for the goose.\n\nMERCUTIO:\nI will bite thee by the ear for that jest.\n\nROMEO:\nNay, good goose, bite not.\n\nMERCUTIO:\nThy wit is a very bitter sweeting; it is a most\nsharp sauce.\n\nROMEO:\nAnd is it not well served in to a sweet goose?\n\nMERCUTIO:\nO here's a wit of cheveril, that stretches from an\ninch narrow to an ell broad!\n\nROMEO:\nI stretch it out for that word 'broad;' which added\nto the goose, proves thee far and wide a broad goose.\n\nMERCUTIO:\nWhy, is not this better now than groaning for love?\nnow art thou sociable, now art thou Romeo; now art\nthou what thou art, by art as well as by nature:\nfor this drivelling love is like a great natural,\nthat runs lolling up and down to hide his bauble in a hole.\n\nBENVOLIO:\nStop there, stop there.\n\nMERCUTIO:\nThou desirest me to stop in my tale against the hair.\n\nBENVOLIO:\nThou wouldst else have made thy tale large.\n\nMERCUTIO:\nO, thou art deceived; I would have made it short:\nfor I was come to the whole depth of my tale; and\nmeant, indeed, to occupy the argument no longer.\n\nROMEO:\nHere's goodly gear!\n\nMERCUTIO:\nA sail, a sail!\n\nBENVOLIO:\nTwo, two; a shirt and a smock.\n\nNurse:\nPeter!\n\nPETER:\nAnon!\n\nNurse:\nMy fan, Peter.\n\nMERCUTIO:\nGood Peter, to hide her face; for her fan's the\nfairer face.\n\nNurse:\nGod ye good morrow, gentlemen.\n\nMERCUTIO:\nGod ye good den, fair gentlewoman.\n\nNurse:\nIs it good den?\n\nMERCUTIO:\n'Tis no less, I tell you, for the bawdy hand of the\ndial is now upon the prick of noon.\n\nNurse:\nOut upon you! what a man are you!\n\nROMEO:\nOne, gentlewoman, that God hath made for himself to\nmar.\n\nNurse:\nBy my troth, it is well said; 'for himself to mar,'\nquoth a'? Gentlemen, can any of you tell me where I\nmay find the young Romeo?\n\nROMEO:\nI can tell you; but young Romeo will be older when\nyou have found him than he was when you sought him:\nI am the youngest of that name, for fault of a worse.\n\nNurse:\nYou say well.\n\nMERCUTIO:\nYea, is the worst well? very well took, i' faith;\nwisely, wisely.\n\nNurse:\nif you be he, sir, I desire some confidence with\nyou.\n\nBENVOLIO:\nShe will indite him to some supper.\n\nMERCUTIO:\nA bawd, a bawd, a bawd! so ho!\n\nROMEO:\nWhat hast thou found?\n\nMERCUTIO:\nNo hare, sir; unless a hare, sir, in a lenten pie,\nthat is something stale and hoar ere it be spent.\nAn old hare hoar,\nAnd an old hare hoar,\nIs very good meat in lent\nBut a hare that is hoar\nIs too much for a score,\nWhen it hoars ere it be spent.\nRomeo, will you come to your father's? we'll\nto dinner, thither.\n\nROMEO:\nI will follow you.\n\nMERCUTIO:\nFarewell, ancient lady; farewell,\n'lady, lady, lady.'\n\nNurse:\nMarry, farewell! I pray you, sir, what saucy\nmerchant was this, that was so full of his ropery?\n\nROMEO:\nA gentleman, nurse, that loves to hear himself talk,\nand will speak more in a minute than he will stand\nto in a month.\n\nNurse:\nAn a' speak any thing against me, I'll take him\ndown, an a' were lustier than he is, and twenty such\nJacks; and if I cannot, I'll find those that shall.\nScurvy knave! I am none of his flirt-gills; I am\nnone of his skains-mates. And thou must stand by\ntoo, and suffer every knave to use me at his pleasure?\n\nPETER:\nI saw no man use you a pleasure; if I had, my weapon\nshould quickly have been out, I warrant you: I dare\ndraw as soon as another man, if I see occasion in a\ngood quarrel, and the law on my side.\n\nNurse:\nNow, afore God, I am so vexed, that every part about\nme quivers. Scurvy knave! Pray you, sir, a word:\nand as I told you, my young lady bade me inquire you\nout; what she bade me say, I will keep to myself:\nbut first let me tell ye, if ye should lead her into\na fool's paradise, as they say, it were a very gross\nkind of behavior, as they say: for the gentlewoman\nis young; and, therefore, if you should deal double\nwith her, truly it were an ill thing to be offered\nto any gentlewoman, and very weak dealing.\n\nROMEO:\nNurse, commend me to thy lady and mistress. I\nprotest unto thee--\n\nNurse:\nGood heart, and, i' faith, I will tell her as much:\nLord, Lord, she will be a joyful woman.\n\nROMEO:\nWhat wilt thou tell her, nurse? thou dost not mark me.\n\nNurse:\nI will tell her, sir, that you do protest; which, as\nI take it, is a gentlemanlike offer.\n\nROMEO:\nBid her devise\nSome means to come to shrift this afternoon;\nAnd there she shall at Friar Laurence' cell\nBe shrived and married. Here is for thy pains.\n\nNurse:\nNo truly sir; not a penny.\n\nROMEO:\nGo to; I say you shall.\n\nNurse:\nThis afternoon, sir? well, she shall be there.\n\nROMEO:\nAnd stay, good nurse, behind the abbey wall:\nWithin this hour my man shall be with thee\nAnd bring thee cords made like a tackled stair;\nWhich to the high top-gallant of my joy\nMust be my convoy in the secret night.\nFarewell; be trusty, and I'll quit thy pains:\nFarewell; commend me to thy mistress.\n\nNurse:\nNow God in heaven bless thee! Hark you, sir.\n\nROMEO:\nWhat say'st thou, my dear nurse?\n\nNurse:\nIs your man secret? Did you ne'er hear say,\nTwo may keep counsel, putting one away?\n\nROMEO:\nI warrant thee, my man's as true as steel.\n\nNURSE:\nWell, sir; my mistress is the sweetest lady--Lord,\nLord! when 'twas a little prating thing:--O, there\nis a nobleman in town, one Paris, that would fain\nlay knife aboard; but she, good soul, had as lief\nsee a toad, a very toad, as see him. I anger her\nsometimes and tell her that Paris is the properer\nman; but, I'll warrant you, when I say so, she looks\nas pale as any clout in the versal world. Doth not\nrosemary and Romeo begin both with a letter?\n\nROMEO:\nAy, nurse; what of that? both with an R.\n\nNurse:\nAh. mocker! that's the dog's name; R is for\nthe--No; I know it begins with some other\nletter:--and she hath the prettiest sententious of\nit, of you and rosemary, that it would do you good\nto hear it.\n\nROMEO:\nCommend me to thy lady.\n\nNurse:\nAy, a thousand times.\nPeter!\n\nPETER:\nAnon!\n\nNurse:\nPeter, take my fan, and go before and apace.\n\nJULIET:\nThe clock struck nine when I did send the nurse;\nIn half an hour she promised to return.\nPerchance she cannot meet him: that's not so.\nO, she is lame! love's heralds should be thoughts,\nWhich ten times faster glide than the sun's beams,\nDriving back shadows over louring hills:\nTherefore do nimble-pinion'd doves draw love,\nAnd therefore hath the wind-swift Cupid wings.\nNow is the sun upon the highmost hill\nOf this day's journey, and from nine till twelve\nIs three long hours, yet she is not come.\nHad she affections and warm youthful blood,\nShe would be as swift in motion as a ball;\nMy words would bandy her to my sweet love,\nAnd his to me:\nBut old folks, many feign as they were dead;\nUnwieldy, slow, heavy and pale as lead.\nO God, she comes!\nO honey nurse, what news?\nHast thou met with him? Send thy man away.\n\nNurse:\nPeter, stay at the gate.\n\nJULIET:\nNow, good sweet nurse,--O Lord, why look'st thou sad?\nThough news be sad, yet tell them merrily;\nIf good, thou shamest the music of sweet news\nBy playing it to me with so sour a face.\n\nNurse:\nI am a-weary, give me leave awhile:\nFie, how my bones ache! what a jaunt have I had!\n\nJULIET:\nI would thou hadst my bones, and I thy news:\nNay, come, I pray thee, speak; good, good nurse, speak.\n\nNurse:\nJesu, what haste? can you not stay awhile?\nDo you not see that I am out of breath?\n\nJULIET:\nHow art thou out of breath, when thou hast breath\nTo say to me that thou art out of breath?\nThe excuse that thou dost make in this delay\nIs longer than the tale thou dost excuse.\nIs thy news good, or bad? answer to that;\nSay either, and I'll stay the circumstance:\nLet me be satisfied, is't good or bad?\n\nNurse:\nWell, you have made a simple choice; you know not\nhow to choose a man: Romeo! no, not he; though his\nface be better than any man's, yet his leg excels\nall men's; and for a hand, and a foot, and a body,\nthough they be not to be talked on, yet they are\npast compare: he is not the flower of courtesy,\nbut, I'll warrant him, as gentle as a lamb. Go thy\nways, wench; serve God. What, have you dined at home?\n\nJULIET:\nNo, no: but all this did I know before.\nWhat says he of our marriage? what of that?\n\nNurse:\nLord, how my head aches! what a head have I!\nIt beats as it would fall in twenty pieces.\nMy back o' t' other side,--O, my back, my back!\nBeshrew your heart for sending me about,\nTo catch my death with jaunting up and down!\n\nJULIET:\nI' faith, I am sorry that thou art not well.\nSweet, sweet, sweet nurse, tell me, what says my love?\n\nNurse:\nYour love says, like an honest gentleman, and a\ncourteous, and a kind, and a handsome, and, I\nwarrant, a virtuous,--Where is your mother?\n\nJULIET:\nWhere is my mother! why, she is within;\nWhere should she be? How oddly thou repliest!\n'Your love says, like an honest gentleman,\nWhere is your mother?'\n\nNurse:\nO God's lady dear!\nAre you so hot? marry, come up, I trow;\nIs this the poultice for my aching bones?\nHenceforward do your messages yourself.\n\nJULIET:\nHere's such a coil! come, what says Romeo?\n\nNurse:\nHave you got leave to go to shrift to-day?\n\nJULIET:\nI have.\n\nNurse:\nThen hie you hence to Friar Laurence' cell;\nThere stays a husband to make you a wife:\nNow comes the wanton blood up in your cheeks,\nThey'll be in scarlet straight at any news.\nHie you to church; I must another way,\nTo fetch a ladder, by the which your love\nMust climb a bird's nest soon when it is dark:\nI am the drudge and toil in your delight,\nBut you shall bear the burden soon at night.\nGo; I'll to dinner: hie you to the cell.\n\nJULIET:\nHie to high fortune! Honest nurse, farewell.\n\nFRIAR LAURENCE:\nSo smile the heavens upon this holy act,\nThat after hours with sorrow chide us not!\n\nROMEO:\nAmen, amen! but come what sorrow can,\nIt cannot countervail the exchange of joy\nThat one short minute gives me in her sight:\nDo thou but close our hands with holy words,\nThen love-devouring death do what he dare;\nIt is enough I may but call her mine.\n\nFRIAR LAURENCE:\nThese violent delights have violent ends\nAnd in their triumph die, like fire and powder,\nWhich as they kiss consume: the sweetest honey\nIs loathsome in his own deliciousness\nAnd in the taste confounds the appetite:\nTherefore love moderately; long love doth so;\nToo swift arrives as tardy as too slow.\nHere comes the lady: O, so light a foot\nWill ne'er wear out the everlasting flint:\nA lover may bestride the gossamer\nThat idles in the wanton summer air,\nAnd yet not fall; so light is vanity.\n\nJULIET:\nGood even to my ghostly confessor.\n\nFRIAR LAURENCE:\nRomeo shall thank thee, daughter, for us both.\n\nJULIET:\nAs much to him, else is his thanks too much.\n\nROMEO:\nAh, Juliet, if the measure of thy joy\nBe heap'd like mine and that thy skill be more\nTo blazon it, then sweeten with thy breath\nThis neighbour air, and let rich music's tongue\nUnfold the imagined happiness that both\nReceive in either by this dear encounter.\n\nJULIET:\nConceit, more rich in matter than in words,\nBrags of his substance, not of ornament:\nThey are but beggars that can count their worth;\nBut my true love is grown to such excess\nI cannot sum up sum of half my wealth.\n\nFRIAR LAURENCE:\nCome, come with me, and we will make short work;\nFor, by your leaves, you shall not stay alone\nTill holy church incorporate two in one.\n\nBENVOLIO:\nI pray thee, good Mercutio, let's retire:\nThe day is hot, the Capulets abroad,\nAnd, if we meet, we shall not scape a brawl;\nFor now, these hot days, is the mad blood stirring.\n\nMERCUTIO:\nThou art like one of those fellows that when he\nenters the confines of a tavern claps me his sword\nupon the table and says 'God send me no need of\nthee!' and by the operation of the second cup draws\nit on the drawer, when indeed there is no need.\n\nBENVOLIO:\nAm I like such a fellow?\n\nMERCUTIO:\nCome, come, thou art as hot a Jack in thy mood as\nany in Italy, and as soon moved to be moody, and as\nsoon moody to be moved.\n\nBENVOLIO:\nAnd what to?\n\nMERCUTIO:\nNay, an there were two such, we should have none\nshortly, for one would kill the other. Thou! why,\nthou wilt quarrel with a man that hath a hair more,\nor a hair less, in his beard, than thou hast: thou\nwilt quarrel with a man for cracking nuts, having no\nother reason but because thou hast hazel eyes: what\neye but such an eye would spy out such a quarrel?\nThy head is as fun of quarrels as an egg is full of\nmeat, and yet thy head hath been beaten as addle as\nan egg for quarrelling: thou hast quarrelled with a\nman for coughing in the street, because he hath\nwakened thy dog that hath lain asleep in the sun:\ndidst thou not fall out with a tailor for wearing\nhis new doublet before Easter? with another, for\ntying his new shoes with old riband? and yet thou\nwilt tutor me from quarrelling!\n\nBENVOLIO:\nAn I were so apt to quarrel as thou art, any man\nshould buy the fee-simple of my life for an hour and a quarter.\n\nMERCUTIO:\nThe fee-simple! O simple!\n\nBENVOLIO:\nBy my head, here come the Capulets.\n\nMERCUTIO:\nBy my heel, I care not.\n\nTYBALT:\nFollow me close, for I will speak to them.\nGentlemen, good den: a word with one of you.\n\nMERCUTIO:\nAnd but one word with one of us? couple it with\nsomething; make it a word and a blow.\n\nTYBALT:\nYou shall find me apt enough to that, sir, an you\nwill give me occasion.\n\nMERCUTIO:\nCould you not take some occasion without giving?\n\nTYBALT:\nMercutio, thou consort'st with Romeo,--\n\nMERCUTIO:\nConsort! what, dost thou make us minstrels? an\nthou make minstrels of us, look to hear nothing but\ndiscords: here's my fiddlestick; here's that shall\nmake you dance. 'Zounds, consort!\n\nBENVOLIO:\nWe talk here in the public haunt of men:\nEither withdraw unto some private place,\nAnd reason coldly of your grievances,\nOr else depart; here all eyes gaze on us.\n\nMERCUTIO:\nMen's eyes were made to look, and let them gaze;\nI will not budge for no man's pleasure, I.\n\nTYBALT:\nWell, peace be with you, sir: here comes my man.\n\nMERCUTIO:\nBut I'll be hanged, sir, if he wear your livery:\nMarry, go before to field, he'll be your follower;\nYour worship in that sense may call him 'man.'\n\nTYBALT:\nRomeo, the hate I bear thee can afford\nNo better term than this,--thou art a villain.\n\nROMEO:\nTybalt, the reason that I have to love thee\nDoth much excuse the appertaining rage\nTo such a greeting: villain am I none;\nTherefore farewell; I see thou know'st me not.\n\nTYBALT:\nBoy, this shall not excuse the injuries\nThat thou hast done me; therefore turn and draw.\n\nROMEO:\nI do protest, I never injured thee,\nBut love thee better than thou canst devise,\nTill thou shalt know the reason of my love:\nAnd so, good Capulet,--which name I tender\nAs dearly as my own,--be satisfied.\n\nMERCUTIO:\nO calm, dishonourable, vile submission!\nAlla stoccata carries it away.\nTybalt, you rat-catcher, will you walk?\n\nTYBALT:\nWhat wouldst thou have with me?\n\nMERCUTIO:\nGood king of cats, nothing but one of your nine\nlives; that I mean to make bold withal, and as you\nshall use me hereafter, drybeat the rest of the\neight. Will you pluck your sword out of his pitcher\nby the ears? make haste, lest mine be about your\nears ere it be out.\n\nTYBALT:\nI am for you.\n\nROMEO:\nGentle Mercutio, put thy rapier up.\n\nMERCUTIO:\nCome, sir, your passado.\n\nROMEO:\nDraw, Benvolio; beat down their weapons.\nGentlemen, for shame, forbear this outrage!\nTybalt, Mercutio, the prince expressly hath\nForbidden bandying in Verona streets:\nHold, Tybalt! good Mercutio!\n\nMERCUTIO:\nI am hurt.\nA plague o' both your houses! I am sped.\nIs he gone, and hath nothing?\n\nBENVOLIO:\nWhat, art thou hurt?\n\nMERCUTIO:\nAy, ay, a scratch, a scratch; marry, 'tis enough.\nWhere is my page? Go, villain, fetch a surgeon.\n\nROMEO:\nCourage, man; the hurt cannot be much.\n\nMERCUTIO:\nNo, 'tis not so deep as a well, nor so wide as a\nchurch-door; but 'tis enough,'twill serve: ask for\nme to-morrow, and you shall find me a grave man. I\nam peppered, I warrant, for this world. A plague o'\nboth your houses! 'Zounds, a dog, a rat, a mouse, a\ncat, to scratch a man to death! a braggart, a\nrogue, a villain, that fights by the book of\narithmetic! Why the devil came you between us? I\nwas hurt under your arm.\n\nROMEO:\nI thought all for the best.\n\nMERCUTIO:\nHelp me into some house, Benvolio,\nOr I shall faint. A plague o' both your houses!\nThey have made worms' meat of me: I have it,\nAnd soundly too: your houses!\n\nROMEO:\nThis gentleman, the prince's near ally,\nMy very friend, hath got his mortal hurt\nIn my behalf; my reputation stain'd\nWith Tybalt's slander,--Tybalt, that an hour\nHath been my kinsman! O sweet Juliet,\nThy beauty hath made me effeminate\nAnd in my temper soften'd valour's steel!\n\nBENVOLIO:\nO Romeo, Romeo, brave Mercutio's dead!\nThat gallant spirit hath aspired the clouds,\nWhich too untimely here did scorn the earth.\n\nROMEO:\nThis day's black fate on more days doth depend;\nThis but begins the woe, others must end.\n\nBENVOLIO:\nHere comes the furious Tybalt back again.\n\nROMEO:\nAlive, in triumph! and Mercutio slain!\nAway to heaven, respective lenity,\nAnd fire-eyed fury be my conduct now!\nNow, Tybalt, take the villain back again,\nThat late thou gavest me; for Mercutio's soul\nIs but a little way above our heads,\nStaying for thine to keep him company:\nEither thou, or I, or both, must go with him.\n\nTYBALT:\nThou, wretched boy, that didst consort him here,\nShalt with him hence.\n\nROMEO:\nThis shall determine that.\n\nBENVOLIO:\nRomeo, away, be gone!\nThe citizens are up, and Tybalt slain.\nStand not amazed: the prince will doom thee death,\nIf thou art taken: hence, be gone, away!\n\nROMEO:\nO, I am fortune's fool!\n\nBENVOLIO:\nWhy dost thou stay?\n\nFirst Citizen:\nWhich way ran he that kill'd Mercutio?\nTybalt, that murderer, which way ran he?\n\nBENVOLIO:\nThere lies that Tybalt.\n\nFirst Citizen:\nUp, sir, go with me;\nI charge thee in the princes name, obey.\n\nPRINCE:\nWhere are the vile beginners of this fray?\n\nBENVOLIO:\nO noble prince, I can discover all\nThe unlucky manage of this fatal brawl:\nThere lies the man, slain by young Romeo,\nThat slew thy kinsman, brave Mercutio.\n\nLADY CAPULET:\nTybalt, my cousin! O my brother's child!\nO prince! O cousin! husband! O, the blood is spilt\nO my dear kinsman! Prince, as thou art true,\nFor blood of ours, shed blood of Montague.\nO cousin, cousin!\n\nPRINCE:\nBenvolio, who began this bloody fray?\n\nBENVOLIO:\nTybalt, here slain, whom Romeo's hand did slay;\nRomeo that spoke him fair, bade him bethink\nHow nice the quarrel was, and urged withal\nYour high displeasure: all this uttered\nWith gentle breath, calm look, knees humbly bow'd,\nCould not take truce with the unruly spleen\nOf Tybalt deaf to peace, but that he tilts\nWith piercing steel at bold Mercutio's breast,\nWho all as hot, turns deadly point to point,\nAnd, with a martial scorn, with one hand beats\nCold death aside, and with the other sends\nIt back to Tybalt, whose dexterity,\nRetorts it: Romeo he cries aloud,\n'Hold, friends! friends, part!' and, swifter than\nhis tongue,\nHis agile arm beats down their fatal points,\nAnd 'twixt them rushes; underneath whose arm\nAn envious thrust from Tybalt hit the life\nOf stout Mercutio, and then Tybalt fled;\nBut by and by comes back to Romeo,\nWho had but newly entertain'd revenge,\nAnd to 't they go like lightning, for, ere I\nCould draw to part them, was stout Tybalt slain.\nAnd, as he fell, did Romeo turn and fly.\nThis is the truth, or let Benvolio die.\n\nLADY CAPULET:\nHe is a kinsman to the Montague;\nAffection makes him false; he speaks not true:\nSome twenty of them fought in this black strife,\nAnd all those twenty could but kill one life.\nI beg for justice, which thou, prince, must give;\nRomeo slew Tybalt, Romeo must not live.\n\nPRINCE:\nRomeo slew him, he slew Mercutio;\nWho now the price of his dear blood doth owe?\n\nMONTAGUE:\nNot Romeo, prince, he was Mercutio's friend;\nHis fault concludes but what the law should end,\nThe life of Tybalt.\n\nPRINCE:\nAnd for that offence\nImmediately we do exile him hence:\nI have an interest in your hate's proceeding,\nMy blood for your rude brawls doth lie a-bleeding;\nBut I'll amerce you with so strong a fine\nThat you shall all repent the loss of mine:\nI will be deaf to pleading and excuses;\nNor tears nor prayers shall purchase out abuses:\nTherefore use none: let Romeo hence in haste,\nElse, when he's found, that hour is his last.\nBear hence this body and attend our will:\nMercy but murders, pardoning those that kill.\n\nJULIET:\nGallop apace, you fiery-footed steeds,\nTowards Phoebus' lodging: such a wagoner\nAs Phaethon would whip you to the west,\nAnd bring in cloudy night immediately.\nSpread thy close curtain, love-performing night,\nThat runaway's eyes may wink and Romeo\nLeap to these arms, untalk'd of and unseen.\nLovers can see to do their amorous rites\nBy their own beauties; or, if love be blind,\nIt best agrees with night. Come, civil night,\nThou sober-suited matron, all in black,\nAnd learn me how to lose a winning match,\nPlay'd for a pair of stainless maidenhoods:\nHood my unmann'd blood, bating in my cheeks,\nWith thy black mantle; till strange love, grown bold,\nThink true love acted simple modesty.\nCome, night; come, Romeo; come, thou day in night;\nFor thou wilt lie upon the wings of night\nWhiter than new snow on a raven's back.\nCome, gentle night, come, loving, black-brow'd night,\nGive me my Romeo; and, when he shall die,\nTake him and cut him out in little stars,\nAnd he will make the face of heaven so fine\nThat all the world will be in love with night\nAnd pay no worship to the garish sun.\nO, I have bought the mansion of a love,\nBut not possess'd it, and, though I am sold,\nNot yet enjoy'd: so tedious is this day\nAs is the night before some festival\nTo an impatient child that hath new robes\nAnd may not wear them. O, here comes my nurse,\nAnd she brings news; and every tongue that speaks\nBut Romeo's name speaks heavenly eloquence.\nNow, nurse, what news? What hast thou there? the cords\nThat Romeo bid thee fetch?\n\nNurse:\nAy, ay, the cords.\n\nJULIET:\nAy me! what news? why dost thou wring thy hands?\n\nNurse:\nAh, well-a-day! he's dead, he's dead, he's dead!\nWe are undone, lady, we are undone!\nAlack the day! he's gone, he's kill'd, he's dead!\n\nJULIET:\nCan heaven be so envious?\n\nNurse:\nRomeo can,\nThough heaven cannot: O Romeo, Romeo!\nWho ever would have thought it? Romeo!\n\nJULIET:\nWhat devil art thou, that dost torment me thus?\nThis torture should be roar'd in dismal hell.\nHath Romeo slain himself? say thou but 'I,'\nAnd that bare vowel 'I' shall poison more\nThan the death-darting eye of cockatrice:\nI am not I, if there be such an I;\nOr those eyes shut, that make thee answer 'I.'\nIf he be slain, say 'I'; or if not, no:\nBrief sounds determine of my weal or woe.\n\nNurse:\nI saw the wound, I saw it with mine eyes,--\nGod save the mark!--here on his manly breast:\nA piteous corse, a bloody piteous corse;\nPale, pale as ashes, all bedaub'd in blood,\nAll in gore-blood; I swounded at the sight.\n\nJULIET:\nO, break, my heart! poor bankrupt, break at once!\nTo prison, eyes, ne'er look on liberty!\nVile earth, to earth resign; end motion here;\nAnd thou and Romeo press one heavy bier!\n\nNurse:\nO Tybalt, Tybalt, the best friend I had!\nO courteous Tybalt! honest gentleman!\nThat ever I should live to see thee dead!\n\nJULIET:\nWhat storm is this that blows so contrary?\nIs Romeo slaughter'd, and is Tybalt dead?\nMy dear-loved cousin, and my dearer lord?\nThen, dreadful trumpet, sound the general doom!\nFor who is living, if those two are gone?\n\nNurse:\nTybalt is gone, and Romeo banished;\nRomeo that kill'd him, he is banished.\n\nJULIET:\nO God! did Romeo's hand shed Tybalt's blood?\n\nNurse:\nIt did, it did; alas the day, it did!\n\nJULIET:\nO serpent heart, hid with a flowering face!\nDid ever dragon keep so fair a cave?\nBeautiful tyrant! fiend angelical!\nDove-feather'd raven! wolvish-ravening lamb!\nDespised substance of divinest show!\nJust opposite to what thou justly seem'st,\nA damned saint, an honourable villain!\nO nature, what hadst thou to do in hell,\nWhen thou didst bower the spirit of a fiend\nIn moral paradise of such sweet flesh?\nWas ever book containing such vile matter\nSo fairly bound? O that deceit should dwell\nIn such a gorgeous palace!\n\nNurse:\nThere's no trust,\nNo faith, no honesty in men; all perjured,\nAll forsworn, all naught, all dissemblers.\nAh, where's my man? give me some aqua vitae:\nThese griefs, these woes, these sorrows make me old.\nShame come to Romeo!\n\nJULIET:\nBlister'd be thy tongue\nFor such a wish! he was not born to shame:\nUpon his brow shame is ashamed to sit;\nFor 'tis a throne where honour may be crown'd\nSole monarch of the universal earth.\nO, what a beast was I to chide at him!\n\nNurse:\nWill you speak well of him that kill'd your cousin?\n\nJULIET:\nShall I speak ill of him that is my husband?\nAh, poor my lord, what tongue shall smooth thy name,\nWhen I, thy three-hours wife, have mangled it?\nBut, wherefore, villain, didst thou kill my cousin?\nThat villain cousin would have kill'd my husband:\nBack, foolish tears, back to your native spring;\nYour tributary drops belong to woe,\nWhich you, mistaking, offer up to joy.\nMy husband lives, that Tybalt would have slain;\nAnd Tybalt's dead, that would have slain my husband:\nAll this is comfort; wherefore weep I then?\nSome word there was, worser than Tybalt's death,\nThat murder'd me: I would forget it fain;\nBut, O, it presses to my memory,\nLike damned guilty deeds to sinners' minds:\n'Tybalt is dead, and Romeo--banished;'\nThat 'banished,' that one word 'banished,'\nHath slain ten thousand Tybalts. Tybalt's death\nWas woe enough, if it had ended there:\nOr, if sour woe delights in fellowship\nAnd needly will be rank'd with other griefs,\nWhy follow'd not, when she said 'Tybalt's dead,'\nThy father, or thy mother, nay, or both,\nWhich modern lamentations might have moved?\nBut with a rear-ward following Tybalt's death,\n'Romeo is banished,' to speak that word,\nIs father, mother, Tybalt, Romeo, Juliet,\nAll slain, all dead. 'Romeo is banished!'\nThere is no end, no limit, measure, bound,\nIn that word's death; no words can that woe sound.\nWhere is my father, and my mother, nurse?\n\nNurse:\nWeeping and wailing over Tybalt's corse:\nWill you go to them? I will bring you thither.\n\nJULIET:\nWash they his wounds with tears: mine shall be spent,\nWhen theirs are dry, for Romeo's banishment.\nTake up those cords: poor ropes, you are beguiled,\nBoth you and I; for Romeo is exiled:\nHe made you for a highway to my bed;\nBut I, a maid, die maiden-widowed.\nCome, cords, come, nurse; I'll to my wedding-bed;\nAnd death, not Romeo, take my maidenhead!\n\nNurse:\nHie to your chamber: I'll find Romeo\nTo comfort you: I wot well where he is.\nHark ye, your Romeo will be here at night:\nI'll to him; he is hid at Laurence' cell.\n\nJULIET:\nO, find him! give this ring to my true knight,\nAnd bid him come to take his last farewell.\n\nFRIAR LAURENCE:\nRomeo, come forth; come forth, thou fearful man:\nAffliction is enamour'd of thy parts,\nAnd thou art wedded to calamity.\n\nROMEO:\nFather, what news? what is the prince's doom?\nWhat sorrow craves acquaintance at my hand,\nThat I yet know not?\n\nFRIAR LAURENCE:\nToo familiar\nIs my dear son with such sour company:\nI bring thee tidings of the prince's doom.\n\nROMEO:\nWhat less than dooms-day is the prince's doom?\n\nFRIAR LAURENCE:\nA gentler judgment vanish'd from his lips,\nNot body's death, but body's banishment.\n\nROMEO:\nHa, banishment! be merciful, say 'death;'\nFor exile hath more terror in his look,\nMuch more than death: do not say 'banishment.'\n\nFRIAR LAURENCE:\nHence from Verona art thou banished:\nBe patient, for the world is broad and wide.\n\nROMEO:\nThere is no world without Verona walls,\nBut purgatory, torture, hell itself.\nHence-banished is banish'd from the world,\nAnd world's exile is death: then banished,\nIs death mis-term'd: calling death banishment,\nThou cutt'st my head off with a golden axe,\nAnd smilest upon the stroke that murders me.\n\nFRIAR LAURENCE:\nO deadly sin! O rude unthankfulness!\nThy fault our law calls death; but the kind prince,\nTaking thy part, hath rush'd aside the law,\nAnd turn'd that black word death to banishment:\nThis is dear mercy, and thou seest it not.\n\nROMEO:\n'Tis torture, and not mercy: heaven is here,\nWhere Juliet lives; and every cat and dog\nAnd little mouse, every unworthy thing,\nLive here in heaven and may look on her;\nBut Romeo may not: more validity,\nMore honourable state, more courtship lives\nIn carrion-flies than Romeo: they my seize\nOn the white wonder of dear Juliet's hand\nAnd steal immortal blessing from her lips,\nWho even in pure and vestal modesty,\nStill blush, as thinking their own kisses sin;\nBut Romeo may not; he is banished:\nFlies may do this, but I from this must fly:\nThey are free men, but I am banished.\nAnd say'st thou yet that exile is not death?\nHadst thou no poison mix'd, no sharp-ground knife,\nNo sudden mean of death, though ne'er so mean,\nBut 'banished' to kill me?--'banished'?\nO friar, the damned use that word in hell;\nHowlings attend it: how hast thou the heart,\nBeing a divine, a ghostly confessor,\nA sin-absolver, and my friend profess'd,\nTo mangle me with that word 'banished'?\n\nFRIAR LAURENCE:\nThou fond mad man, hear me but speak a word.\n\nROMEO:\nO, thou wilt speak again of banishment.\n\nFRIAR LAURENCE:\nI'll give thee armour to keep off that word:\nAdversity's sweet milk, philosophy,\nTo comfort thee, though thou art banished.\n\nROMEO:\nYet 'banished'? Hang up philosophy!\nUnless philosophy can make a Juliet,\nDisplant a town, reverse a prince's doom,\nIt helps not, it prevails not: talk no more.\n\nFRIAR LAURENCE:\nO, then I see that madmen have no ears.\n\nROMEO:\nHow should they, when that wise men have no eyes?\n\nFRIAR LAURENCE:\nLet me dispute with thee of thy estate.\n\nROMEO:\nThou canst not speak of that thou dost not feel:\nWert thou as young as I, Juliet thy love,\nAn hour but married, Tybalt murdered,\nDoting like me and like me banished,\nThen mightst thou speak, then mightst thou tear thy hair,\nAnd fall upon the ground, as I do now,\nTaking the measure of an unmade grave.\n\nFRIAR LAURENCE:\nArise; one knocks; good Romeo, hide thyself.\n\nROMEO:\nNot I; unless the breath of heartsick groans,\nMist-like, infold me from the search of eyes.\n\nFRIAR LAURENCE:\nHark, how they knock! Who's there? Romeo, arise;\nThou wilt be taken. Stay awhile! Stand up;\nRun to my study. By and by! God's will,\nWhat simpleness is this! I come, I come!\nWho knocks so hard? whence come you? what's your will?\n\nNurse:\n\nFRIAR LAURENCE:\nWelcome, then.\n\nNurse:\nO holy friar, O, tell me, holy friar,\nWhere is my lady's lord, where's Romeo?\n\nFRIAR LAURENCE:\nThere on the ground, with his own tears made drunk.\n\nNurse:\nO, he is even in my mistress' case,\nJust in her case! O woful sympathy!\nPiteous predicament! Even so lies she,\nBlubbering and weeping, weeping and blubbering.\nStand up, stand up; stand, and you be a man:\nFor Juliet's sake, for her sake, rise and stand;\nWhy should you fall into so deep an O?\n\nROMEO:\nNurse!\n\nNurse:\nAh sir! ah sir! Well, death's the end of all.\n\nROMEO:\nSpakest thou of Juliet? how is it with her?\nDoth she not think me an old murderer,\nNow I have stain'd the childhood of our joy\nWith blood removed but little from her own?\nWhere is she? and how doth she? and what says\nMy conceal'd lady to our cancell'd love?\n\nNurse:\nO, she says nothing, sir, but weeps and weeps;\nAnd now falls on her bed; and then starts up,\nAnd Tybalt calls; and then on Romeo cries,\nAnd then down falls again.\n\nROMEO:\nAs if that name,\nShot from the deadly level of a gun,\nDid murder her; as that name's cursed hand\nMurder'd her kinsman. O, tell me, friar, tell me,\nIn what vile part of this anatomy\nDoth my name lodge? tell me, that I may sack\nThe hateful mansion.\n\nFRIAR LAURENCE:\nHold thy desperate hand:\nArt thou a man? thy form cries out thou art:\nThy tears are womanish; thy wild acts denote\nThe unreasonable fury of a beast:\nUnseemly woman in a seeming man!\nOr ill-beseeming beast in seeming both!\nThou hast amazed me: by my holy order,\nI thought thy disposition better temper'd.\nHast thou slain Tybalt? wilt thou slay thyself?\nAnd stay thy lady too that lives in thee,\nBy doing damned hate upon thyself?\nWhy rail'st thou on thy birth, the heaven, and earth?\nSince birth, and heaven, and earth, all three do meet\nIn thee at once; which thou at once wouldst lose.\nFie, fie, thou shamest thy shape, thy love, thy wit;\nWhich, like a usurer, abound'st in all,\nAnd usest none in that true use indeed\nWhich should bedeck thy shape, thy love, thy wit:\nThy noble shape is but a form of wax,\nDigressing from the valour of a man;\nThy dear love sworn but hollow perjury,\nKilling that love which thou hast vow'd to cherish;\nThy wit, that ornament to shape and love,\nMisshapen in the conduct of them both,\nLike powder in a skitless soldier's flask,\nIs set afire by thine own ignorance,\nAnd thou dismember'd with thine own defence.\nWhat, rouse thee, man! thy Juliet is alive,\nFor whose dear sake thou wast but lately dead;\nThere art thou happy: Tybalt would kill thee,\nBut thou slew'st Tybalt; there are thou happy too:\nThe law that threaten'd death becomes thy friend\nAnd turns it to exile; there art thou happy:\nA pack of blessings lights up upon thy back;\nHappiness courts thee in her best array;\nBut, like a misbehaved and sullen wench,\nThou pout'st upon thy fortune and thy love:\nTake heed, take heed, for such die miserable.\nGo, get thee to thy love, as was decreed,\nAscend her chamber, hence and comfort her:\nBut look thou stay not till the watch be set,\nFor then thou canst not pass to Mantua;\nWhere thou shalt live, till we can find a time\nTo blaze your marriage, reconcile your friends,\nBeg pardon of the prince, and call thee back\nWith twenty hundred thousand times more joy\nThan thou went'st forth in lamentation.\nGo before, nurse: commend me to thy lady;\nAnd bid her hasten all the house to bed,\nWhich heavy sorrow makes them apt unto:\nRomeo is coming.\n\nNurse:\nO Lord, I could have stay'd here all the night\nTo hear good counsel: O, what learning is!\nMy lord, I'll tell my lady you will come.\n\nROMEO:\nDo so, and bid my sweet prepare to chide.\n\nNurse:\nHere, sir, a ring she bid me give you, sir:\nHie you, make haste, for it grows very late.\n\nROMEO:\nHow well my comfort is revived by this!\n\nFRIAR LAURENCE:\nGo hence; good night; and here stands all your state:\nEither be gone before the watch be set,\nOr by the break of day disguised from hence:\nSojourn in Mantua; I'll find out your man,\nAnd he shall signify from time to time\nEvery good hap to you that chances here:\nGive me thy hand; 'tis late: farewell; good night.\n\nROMEO:\nBut that a joy past joy calls out on me,\nIt were a grief, so brief to part with thee: Farewell.\n\nCAPULET:\nThings have fall'n out, sir, so unluckily,\nThat we have had no time to move our daughter:\nLook you, she loved her kinsman Tybalt dearly,\nAnd so did I:--Well, we were born to die.\n'Tis very late, she'll not come down to-night:\nI promise you, but for your company,\nI would have been a-bed an hour ago.\n\nPARIS:\nThese times of woe afford no time to woo.\nMadam, good night: commend me to your daughter.\n\nLADY CAPULET:\nI will, and know her mind early to-morrow;\nTo-night she is mew'd up to her heaviness.\n\nCAPULET:\nSir Paris, I will make a desperate tender\nOf my child's love: I think she will be ruled\nIn all respects by me; nay, more, I doubt it not.\nWife, go you to her ere you go to bed;\nAcquaint her here of my son Paris' love;\nAnd bid her, mark you me, on Wednesday next--\nBut, soft! what day is this?\n\nPARIS:\nMonday, my lord,\n\nCAPULET:\nMonday! ha, ha! Well, Wednesday is too soon,\nO' Thursday let it be: o' Thursday, tell her,\nShe shall be married to this noble earl.\nWill you be ready? do you like this haste?\nWe'll keep no great ado,--a friend or two;\nFor, hark you, Tybalt being slain so late,\nIt may be thought we held him carelessly,\nBeing our kinsman, if we revel much:\nTherefore we'll have some half a dozen friends,\nAnd there an end. But what say you to Thursday?\n\nPARIS:\nMy lord, I would that Thursday were to-morrow.\n\nCAPULET:\nWell get you gone: o' Thursday be it, then.\nGo you to Juliet ere you go to bed,\nPrepare her, wife, against this wedding-day.\nFarewell, my lord. Light to my chamber, ho!\nAfore me! it is so very very late,\nThat we may call it early by and by.\nGood night.\n\nJULIET:\nWilt thou be gone? it is not yet near day:\nIt was the nightingale, and not the lark,\nThat pierced the fearful hollow of thine ear;\nNightly she sings on yon pomegranate-tree:\nBelieve me, love, it was the nightingale.\n\nROMEO:\nIt was the lark, the herald of the morn,\nNo nightingale: look, love, what envious streaks\nDo lace the severing clouds in yonder east:\nNight's candles are burnt out, and jocund day\nStands tiptoe on the misty mountain tops.\nI must be gone and live, or stay and die.\n\nJULIET:\nYon light is not day-light, I know it, I:\nIt is some meteor that the sun exhales,\nTo be to thee this night a torch-bearer,\nAnd light thee on thy way to Mantua:\nTherefore stay yet; thou need'st not to be gone.\n\nROMEO:\nLet me be ta'en, let me be put to death;\nI am content, so thou wilt have it so.\nI'll say yon grey is not the morning's eye,\n'Tis but the pale reflex of Cynthia's brow;\nNor that is not the lark, whose notes do beat\nThe vaulty heaven so high above our heads:\nI have more care to stay than will to go:\nCome, death, and welcome! Juliet wills it so.\nHow is't, my soul? let's talk; it is not day.\n\nJULIET:\nIt is, it is: hie hence, be gone, away!\nIt is the lark that sings so out of tune,\nStraining harsh discords and unpleasing sharps.\nSome say the lark makes sweet division;\nThis doth not so, for she divideth us:\nSome say the lark and loathed toad change eyes,\nO, now I would they had changed voices too!\nSince arm from arm that voice doth us affray,\nHunting thee hence with hunt's-up to the day,\nO, now be gone; more light and light it grows.\n\nROMEO:\nMore light and light; more dark and dark our woes!\n\nNurse:\nMadam!\n\nJULIET:\nNurse?\n\nNurse:\nYour lady mother is coming to your chamber:\nThe day is broke; be wary, look about.\n\nJULIET:\nThen, window, let day in, and let life out.\n\nROMEO:\nFarewell, farewell! one kiss, and I'll descend.\n\nJULIET:\nArt thou gone so? love, lord, ay, husband, friend!\nI must hear from thee every day in the hour,\nFor in a minute there are many days:\nO, by this count I shall be much in years\nEre I again behold my Romeo!\n\nROMEO:\nFarewell!\nI will omit no opportunity\nThat may convey my greetings, love, to thee.\n\nJULIET:\nO think'st thou we shall ever meet again?\n\nROMEO:\nI doubt it not; and all these woes shall serve\nFor sweet discourses in our time to come.\n\nJULIET:\nO God, I have an ill-divining soul!\nMethinks I see thee, now thou art below,\nAs one dead in the bottom of a tomb:\nEither my eyesight fails, or thou look'st pale.\n\nROMEO:\nAnd trust me, love, in my eye so do you:\nDry sorrow drinks our blood. Adieu, adieu!\n\nJULIET:\nO fortune, fortune! all men call thee fickle:\nIf thou art fickle, what dost thou with him.\nThat is renown'd for faith? Be fickle, fortune;\nFor then, I hope, thou wilt not keep him long,\nBut send him back.\n\nLADY CAPULET:\n\nJULIET:\nWho is't that calls? is it my lady mother?\nIs she not down so late, or up so early?\nWhat unaccustom'd cause procures her hither?\n\nLADY CAPULET:\nWhy, how now, Juliet!\n\nJULIET:\nMadam, I am not well.\n\nLADY CAPULET:\nEvermore weeping for your cousin's death?\nWhat, wilt thou wash him from his grave with tears?\nAn if thou couldst, thou couldst not make him live;\nTherefore, have done: some grief shows much of love;\nBut much of grief shows still some want of wit.\n\nJULIET:\nYet let me weep for such a feeling loss.\n\nLADY CAPULET:\nSo shall you feel the loss, but not the friend\nWhich you weep for.\n\nJULIET:\nFeeling so the loss,\nCannot choose but ever weep the friend.\n\nLADY CAPULET:\nWell, girl, thou weep'st not so much for his death,\nAs that the villain lives which slaughter'd him.\n\nJULIET:\nWhat villain madam?\n\nLADY CAPULET:\nThat same villain, Romeo.\n\nJULIET:\n\nLADY CAPULET:\nThat is, because the traitor murderer lives.\n\nJULIET:\nAy, madam, from the reach of these my hands:\nWould none but I might venge my cousin's death!\n\nLADY CAPULET:\nWe will have vengeance for it, fear thou not:\nThen weep no more. I'll send to one in Mantua,\nWhere that same banish'd runagate doth live,\nShall give him such an unaccustom'd dram,\nThat he shall soon keep Tybalt company:\nAnd then, I hope, thou wilt be satisfied.\n\nJULIET:\nIndeed, I never shall be satisfied\nWith Romeo, till I behold him--dead--\nIs my poor heart for a kinsman vex'd.\nMadam, if you could find out but a man\nTo bear a poison, I would temper it;\nThat Romeo should, upon receipt thereof,\nSoon sleep in quiet. O, how my heart abhors\nTo hear him named, and cannot come to him.\nTo wreak the love I bore my cousin\nUpon his body that slaughter'd him!\n\nLADY CAPULET:\nFind thou the means, and I'll find such a man.\nBut now I'll tell thee joyful tidings, girl.\n\nJULIET:\nAnd joy comes well in such a needy time:\nWhat are they, I beseech your ladyship?\n\nLADY CAPULET:\nWell, well, thou hast a careful father, child;\nOne who, to put thee from thy heaviness,\nHath sorted out a sudden day of joy,\nThat thou expect'st not nor I look'd not for.\n\nJULIET:\nMadam, in happy time, what day is that?\n\nLADY CAPULET:\nMarry, my child, early next Thursday morn,\nThe gallant, young and noble gentleman,\nThe County Paris, at Saint Peter's Church,\nShall happily make thee there a joyful bride.\n\nJULIET:\nNow, by Saint Peter's Church and Peter too,\nHe shall not make me there a joyful bride.\nI wonder at this haste; that I must wed\nEre he, that should be husband, comes to woo.\nI pray you, tell my lord and father, madam,\nI will not marry yet; and, when I do, I swear,\nIt shall be Romeo, whom you know I hate,\nRather than Paris. These are news indeed!\n\nLADY CAPULET:\nHere comes your father; tell him so yourself,\nAnd see how he will take it at your hands.\n\nCAPULET:\nWhen the sun sets, the air doth drizzle dew;\nBut for the sunset of my brother's son\nIt rains downright.\nHow now! a conduit, girl? what, still in tears?\nEvermore showering? In one little body\nThou counterfeit'st a bark, a sea, a wind;\nFor still thy eyes, which I may call the sea,\nDo ebb and flow with tears; the bark thy body is,\nSailing in this salt flood; the winds, thy sighs;\nWho, raging with thy tears, and they with them,\nWithout a sudden calm, will overset\nThy tempest-tossed body. How now, wife!\nHave you deliver'd to her our decree?\n\nLADY CAPULET:\nAy, sir; but she will none, she gives you thanks.\nI would the fool were married to her grave!\n\nCAPULET:\nSoft! take me with you, take me with you, wife.\nHow! will she none? doth she not give us thanks?\nIs she not proud? doth she not count her blest,\nUnworthy as she is, that we have wrought\nSo worthy a gentleman to be her bridegroom?\n\nJULIET:\nNot proud, you have; but thankful, that you have:\nProud can I never be of what I hate;\nBut thankful even for hate, that is meant love.\n\nCAPULET:\nHow now, how now, chop-logic! What is this?\n'Proud,' and 'I thank you,' and 'I thank you not;'\nAnd yet 'not proud,' mistress minion, you,\nThank me no thankings, nor, proud me no prouds,\nBut fettle your fine joints 'gainst Thursday next,\nTo go with Paris to Saint Peter's Church,\nOr I will drag thee on a hurdle thither.\nOut, you green-sickness carrion! out, you baggage!\nYou tallow-face!\n\nLADY CAPULET:\nFie, fie! what, are you mad?\n\nJULIET:\nGood father, I beseech you on my knees,\nHear me with patience but to speak a word.\n\nCAPULET:\nHang thee, young baggage! disobedient wretch!\nI tell thee what: get thee to church o' Thursday,\nOr never after look me in the face:\nSpeak not, reply not, do not answer me;\nMy fingers itch. Wife, we scarce thought us blest\nThat God had lent us but this only child;\nBut now I see this one is one too much,\nAnd that we have a curse in having her:\nOut on her, hilding!\n\nNurse:\nGod in heaven bless her!\nYou are to blame, my lord, to rate her so.\n\nCAPULET:\nAnd why, my lady wisdom? hold your tongue,\nGood prudence; smatter with your gossips, go.\n\nNurse:\nI speak no treason.\n\nCAPULET:\nO, God ye god-den.\n\nNurse:\nMay not one speak?\n\nCAPULET:\nPeace, you mumbling fool!\nUtter your gravity o'er a gossip's bowl;\nFor here we need it not.\n\nLADY CAPULET:\nYou are too hot.\n\nCAPULET:\nGod's bread! it makes me mad:\nDay, night, hour, tide, time, work, play,\nAlone, in company, still my care hath been\nTo have her match'd: and having now provided\nA gentleman of noble parentage,\nOf fair demesnes, youthful, and nobly train'd,\nStuff'd, as they say, with honourable parts,\nProportion'd as one's thought would wish a man;\nAnd then to have a wretched puling fool,\nA whining mammet, in her fortune's tender,\nTo answer 'I'll not wed; I cannot love,\nI am too young; I pray you, pardon me.'\nBut, as you will not wed, I'll pardon you:\nGraze where you will you shall not house with me:\nLook to't, think on't, I do not use to jest.\nThursday is near; lay hand on heart, advise:\nAn you be mine, I'll give you to my friend;\nAnd you be not, hang, beg, starve, die in\nthe streets,\nFor, by my soul, I'll ne'er acknowledge thee,\nNor what is mine shall never do thee good:\nTrust to't, bethink you; I'll not be forsworn.\n\nJULIET:\nIs there no pity sitting in the clouds,\nThat sees into the bottom of my grief?\nO, sweet my mother, cast me not away!\nDelay this marriage for a month, a week;\nOr, if you do not, make the bridal bed\nIn that dim monument where Tybalt lies.\n\nLADY CAPULET:\nTalk not to me, for I'll not speak a word:\nDo as thou wilt, for I have done with thee.\n\nJULIET:\nO God!--O nurse, how shall this be prevented?\nMy husband is on earth, my faith in heaven;\nHow shall that faith return again to earth,\nUnless that husband send it me from heaven\nBy leaving earth? comfort me, counsel me.\nAlack, alack, that heaven should practise stratagems\nUpon so soft a subject as myself!\nWhat say'st thou? hast thou not a word of joy?\nSome comfort, nurse.\n\nNurse:\nFaith, here it is.\nRomeo is banish'd; and all the world to nothing,\nThat he dares ne'er come back to challenge you;\nOr, if he do, it needs must be by stealth.\nThen, since the case so stands as now it doth,\nI think it best you married with the county.\nO, he's a lovely gentleman!\nRomeo's a dishclout to him: an eagle, madam,\nHath not so green, so quick, so fair an eye\nAs Paris hath. Beshrew my very heart,\nI think you are happy in this second match,\nFor it excels your first: or if it did not,\nYour first is dead; or 'twere as good he were,\nAs living here and you no use of him.\n\nJULIET:\nSpeakest thou from thy heart?\n\nNurse:\nAnd from my soul too;\nOr else beshrew them both.\n\nJULIET:\nAmen!\n\nNurse:\nWhat?\n\nJULIET:\nWell, thou hast comforted me marvellous much.\nGo in: and tell my lady I am gone,\nHaving displeased my father, to Laurence' cell,\nTo make confession and to be absolved.\n\nNurse:\nMarry, I will; and this is wisely done.\n\nJULIET:\nAncient damnation! O most wicked fiend!\nIs it more sin to wish me thus forsworn,\nOr to dispraise my lord with that same tongue\nWhich she hath praised him with above compare\nSo many thousand times? Go, counsellor;\nThou and my bosom henceforth shall be twain.\nI'll to the friar, to know his remedy:\nIf all else fail, myself have power to die.\n\nFRIAR LAURENCE:\nOn Thursday, sir? the time is very short.\n\nPARIS:\nMy father Capulet will have it so;\nAnd I am nothing slow to slack his haste.\n\nFRIAR LAURENCE:\nYou say you do not know the lady's mind:\nUneven is the course, I like it not.\n\nPARIS:\nImmoderately she weeps for Tybalt's death,\nAnd therefore have I little talk'd of love;\nFor Venus smiles not in a house of tears.\nNow, sir, her father counts it dangerous\nThat she doth give her sorrow so much sway,\nAnd in his wisdom hastes our marriage,\nTo stop the inundation of her tears;\nWhich, too much minded by herself alone,\nMay be put from her by society:\nNow do you know the reason of this haste.\n\nFRIAR LAURENCE:\n\nPARIS:\nHappily met, my lady and my wife!\n\nJULIET:\nThat may be, sir, when I may be a wife.\n\nPARIS:\nThat may be must be, love, on Thursday next.\n\nJULIET:\nWhat must be shall be.\n\nFRIAR LAURENCE:\nThat's a certain text.\n\nPARIS:\nCome you to make confession to this father?\n\nJULIET:\nTo answer that, I should confess to you.\n\nPARIS:\nDo not deny to him that you love me.\n\nJULIET:\nI will confess to you that I love him.\n\nPARIS:\nSo will ye, I am sure, that you love me.\n\nJULIET:\nIf I do so, it will be of more price,\nBeing spoke behind your back, than to your face.\n\nPARIS:\nPoor soul, thy face is much abused with tears.\n\nJULIET:\nThe tears have got small victory by that;\nFor it was bad enough before their spite.\n\nPARIS:\nThou wrong'st it, more than tears, with that report.\n\nJULIET:\nThat is no slander, sir, which is a truth;\nAnd what I spake, I spake it to my face.\n\nPARIS:\nThy face is mine, and thou hast slander'd it.\n\nJULIET:\nIt may be so, for it is not mine own.\nAre you at leisure, holy father, now;\nOr shall I come to you at evening mass?\n\nFRIAR LAURENCE:\nMy leisure serves me, pensive daughter, now.\nMy lord, we must entreat the time alone.\n\nPARIS:\nGod shield I should disturb devotion!\nJuliet, on Thursday early will I rouse ye:\nTill then, adieu; and keep this holy kiss.\n\nJULIET:\nO shut the door! and when thou hast done so,\nCome weep with me; past hope, past cure, past help!\n\nFRIAR LAURENCE:\nAh, Juliet, I already know thy grief;\nIt strains me past the compass of my wits:\nI hear thou must, and nothing may prorogue it,\nOn Thursday next be married to this county.\n\nJULIET:\nTell me not, friar, that thou hear'st of this,\nUnless thou tell me how I may prevent it:\nIf, in thy wisdom, thou canst give no help,\nDo thou but call my resolution wise,\nAnd with this knife I'll help it presently.\nGod join'd my heart and Romeo's, thou our hands;\nAnd ere this hand, by thee to Romeo seal'd,\nShall be the label to another deed,\nOr my true heart with treacherous revolt\nTurn to another, this shall slay them both:\nTherefore, out of thy long-experienced time,\nGive me some present counsel, or, behold,\n'Twixt my extremes and me this bloody knife\nShall play the umpire, arbitrating that\nWhich the commission of thy years and art\nCould to no issue of true honour bring.\nBe not so long to speak; I long to die,\nIf what thou speak'st speak not of remedy.\n\nFRIAR LAURENCE:\nHold, daughter: I do spy a kind of hope,\nWhich craves as desperate an execution.\nAs that is desperate which we would prevent.\nIf, rather than to marry County Paris,\nThou hast the strength of will to slay thyself,\nThen is it likely thou wilt undertake\nA thing like death to chide away this shame,\nThat copest with death himself to scape from it:\nAnd, if thou darest, I'll give thee remedy.\n\nJULIET:\nO, bid me leap, rather than marry Paris,\nFrom off the battlements of yonder tower;\nOr walk in thievish ways; or bid me lurk\nWhere serpents are; chain me with roaring bears;\nOr shut me nightly in a charnel-house,\nO'er-cover'd quite with dead men's rattling bones,\nWith reeky shanks and yellow chapless skulls;\nOr bid me go into a new-made grave\nAnd hide me with a dead man in his shroud;\nThings that, to hear them told, have made me tremble;\nAnd I will do it without fear or doubt,\nTo live an unstain'd wife to my sweet love.\n\nFRIAR LAURENCE:\nHold, then; go home, be merry, give consent\nTo marry Paris: Wednesday is to-morrow:\nTo-morrow night look that thou lie alone;\nLet not thy nurse lie with thee in thy chamber:\nTake thou this vial, being then in bed,\nAnd this distilled liquor drink thou off;\nWhen presently through all thy veins shall run\nA cold and drowsy humour, for no pulse\nShall keep his native progress, but surcease:\nNo warmth, no breath, shall testify thou livest;\nThe roses in thy lips and cheeks shall fade\nTo paly ashes, thy eyes' windows fall,\nLike death, when he shuts up the day of life;\nEach part, deprived of supple government,\nShall, stiff and stark and cold, appear like death:\nAnd in this borrow'd likeness of shrunk death\nThou shalt continue two and forty hours,\nAnd then awake as from a pleasant sleep.\nNow, when the bridegroom in the morning comes\nTo rouse thee from thy bed, there art thou dead:\nThen, as the manner of our country is,\nIn thy best robes uncover'd on the bier\nThou shalt be borne to that same ancient vault\nWhere all the kindred of the Capulets lie.\nIn the mean time, against thou shalt awake,\nShall Romeo by my letters know our drift,\nAnd hither shall he come: and he and I\nWill watch thy waking, and that very night\nShall Romeo bear thee hence to Mantua.\nAnd this shall free thee from this present shame;\nIf no inconstant toy, nor womanish fear,\nAbate thy valour in the acting it.\n\nJULIET:\nGive me, give me! O, tell not me of fear!\n\nFRIAR LAURENCE:\nHold; get you gone, be strong and prosperous\nIn this resolve: I'll send a friar with speed\nTo Mantua, with my letters to thy lord.\n\nJULIET:\nLove give me strength! and strength shall help afford.\nFarewell, dear father!\n\nCAPULET:\nSo many guests invite as here are writ.\nSirrah, go hire me twenty cunning cooks.\n\nSecond Servant:\nYou shall have none ill, sir; for I'll try if they\ncan lick their fingers.\n\nCAPULET:\nHow canst thou try them so?\n\nSecond Servant:\nMarry, sir, 'tis an ill cook that cannot lick his\nown fingers: therefore he that cannot lick his\nfingers goes not with me.\n\nCAPULET:\nGo, be gone.\nWe shall be much unfurnished for this time.\nWhat, is my daughter gone to Friar Laurence?\n\nNurse:\nAy, forsooth.\n\nCAPULET:\nWell, he may chance to do some good on her:\nA peevish self-will'd harlotry it is.\n\nNurse:\nSee where she comes from shrift with merry look.\n\nCAPULET:\nHow now, my headstrong! where have you been gadding?\n\nJULIET:\nWhere I have learn'd me to repent the sin\nOf disobedient opposition\nTo you and your behests, and am enjoin'd\nBy holy Laurence to fall prostrate here,\nAnd beg your pardon: pardon, I beseech you!\nHenceforward I am ever ruled by you.\n\nCAPULET:\nSend for the county; go tell him of this:\nI'll have this knot knit up to-morrow morning.\n\nJULIET:\nI met the youthful lord at Laurence' cell;\nAnd gave him what becomed love I might,\nNot step o'er the bounds of modesty.\n\nCAPULET:\nWhy, I am glad on't; this is well: stand up:\nThis is as't should be. Let me see the county;\nAy, marry, go, I say, and fetch him hither.\nNow, afore God! this reverend holy friar,\nOur whole city is much bound to him.\n\nJULIET:\nNurse, will you go with me into my closet,\nTo help me sort such needful ornaments\nAs you think fit to furnish me to-morrow?\n\nLADY CAPULET:\nNo, not till Thursday; there is time enough.\n\nCAPULET:\nGo, nurse, go with her: we'll to church to-morrow.\n\nLADY  CAPULET:\nWe shall be short in our provision:\n'Tis now near night.\n\nCAPULET:\nTush, I will stir about,\nAnd all things shall be well, I warrant thee, wife:\nGo thou to Juliet, help to deck up her;\nI'll not to bed to-night; let me alone;\nI'll play the housewife for this once. What, ho!\nThey are all forth. Well, I will walk myself\nTo County Paris, to prepare him up\nAgainst to-morrow: my heart is wondrous light,\nSince this same wayward girl is so reclaim'd.\n\nJULIET:\nAy, those attires are best: but, gentle nurse,\nI pray thee, leave me to myself to-night,\nFor I have need of many orisons\nTo move the heavens to smile upon my state,\nWhich, well thou know'st, is cross, and full of sin.\n\nLADY CAPULET:\nWhat, are you busy, ho? need you my help?\n\nJULIET:\nNo, madam; we have cull'd such necessaries\nAs are behoveful for our state to-morrow:\nSo please you, let me now be left alone,\nAnd let the nurse this night sit up with you;\nFor, I am sure, you have your hands full all,\nIn this so sudden business.\n\nLADY CAPULET:\nGood night:\nGet thee to bed, and rest; for thou hast need.\n\nJULIET:\nFarewell! God knows when we shall meet again.\nI have a faint cold fear thrills through my veins,\nThat almost freezes up the heat of life:\nI'll call them back again to comfort me:\nNurse! What should she do here?\nMy dismal scene I needs must act alone.\nCome, vial.\nWhat if this mixture do not work at all?\nShall I be married then to-morrow morning?\nNo, no: this shall forbid it: lie thou there.\nWhat if it be a poison, which the friar\nSubtly hath minister'd to have me dead,\nLest in this marriage he should be dishonour'd,\nBecause he married me before to Romeo?\nI fear it is: and yet, methinks, it should not,\nFor he hath still been tried a holy man.\nHow if, when I am laid into the tomb,\nI wake before the time that Romeo\nCome to redeem me? there's a fearful point!\nShall I not, then, be stifled in the vault,\nTo whose foul mouth no healthsome air breathes in,\nAnd there die strangled ere my Romeo comes?\nOr, if I live, is it not very like,\nThe horrible conceit of death and night,\nTogether with the terror of the place,--\nAs in a vault, an ancient receptacle,\nWhere, for these many hundred years, the bones\nOf all my buried ancestors are packed:\nWhere bloody Tybalt, yet but green in earth,\nLies festering in his shroud; where, as they say,\nAt some hours in the night spirits resort;--\nAlack, alack, is it not like that I,\nSo early waking, what with loathsome smells,\nAnd shrieks like mandrakes' torn out of the earth,\nThat living mortals, hearing them, run mad:--\nO, if I wake, shall I not be distraught,\nEnvironed with all these hideous fears?\nAnd madly play with my forefather's joints?\nAnd pluck the mangled Tybalt from his shroud?\nAnd, in this rage, with some great kinsman's bone,\nAs with a club, dash out my desperate brains?\nO, look! methinks I see my cousin's ghost\nSeeking out Romeo, that did spit his body\nUpon a rapier's point: stay, Tybalt, stay!\nRomeo, I come! this do I drink to thee.\n\nLADY CAPULET:\nHold, take these keys, and fetch more spices, nurse.\n\nNurse:\nThey call for dates and quinces in the pastry.\n\nCAPULET:\nCome, stir, stir, stir! the second cock hath crow'd,\nThe curfew-bell hath rung, 'tis three o'clock:\nLook to the baked meats, good Angelica:\nSpare not for the cost.\n\nNurse:\nGo, you cot-quean, go,\nGet you to bed; faith, You'll be sick to-morrow\nFor this night's watching.\n\nCAPULET:\nNo, not a whit: what! I have watch'd ere now\nAll night for lesser cause, and ne'er been sick.\n\nLADY CAPULET:\nAy, you have been a mouse-hunt in your time;\nBut I will watch you from such watching now.\n\nCAPULET:\nA jealous hood, a jealous hood!\nNow, fellow,\nWhat's there?\n\nFirst Servant:\nThings for the cook, sir; but I know not what.\n\nCAPULET:\nMake haste, make haste.\nSirrah, fetch drier logs:\nCall Peter, he will show thee where they are.\n\nSecond Servant:\nI have a head, sir, that will find out logs,\nAnd never trouble Peter for the matter.\n\nCAPULET:\nMass, and well said; a merry whoreson, ha!\nThou shalt be logger-head. Good faith, 'tis day:\nThe county will be here with music straight,\nFor so he said he would: I hear him near.\nNurse! Wife! What, ho! What, nurse, I say!\nGo waken Juliet, go and trim her up;\nI'll go and chat with Paris: hie, make haste,\nMake haste; the bridegroom he is come already:\nMake haste, I say.\n\nNurse:\nMistress! what, mistress! Juliet! fast, I warrant her, she:\nWhy, lamb! why, lady! fie, you slug-a-bed!\nWhy, love, I say! madam! sweet-heart! why, bride!\nWhat, not a word? you take your pennyworths now;\nSleep for a week; for the next night, I warrant,\nThe County Paris hath set up his rest,\nThat you shall rest but little. God forgive me,\nMarry, and amen, how sound is she asleep!\nI must needs wake her. Madam, madam, madam!\nAy, let the county take you in your bed;\nHe'll fright you up, i' faith. Will it not be?\nWhat, dress'd! and in your clothes! and down again!\nI must needs wake you; Lady! lady! lady!\nAlas, alas! Help, help! my lady's dead!\nO, well-a-day, that ever I was born!\nSome aqua vitae, ho! My lord! my lady!\n\nLADY CAPULET:\nWhat noise is here?\n\nNurse:\nO lamentable day!\n\nLADY CAPULET:\nWhat is the matter?\n\nNurse:\nLook, look! O heavy day!\n\nLADY CAPULET:\nO me, O me! My child, my only life,\nRevive, look up, or I will die with thee!\nHelp, help! Call help.\n\nCAPULET:\nFor shame, bring Juliet forth; her lord is come.\n\nNurse:\nShe's dead, deceased, she's dead; alack the day!\n\nLADY CAPULET:\nAlack the day, she's dead, she's dead, she's dead!\n\nCAPULET:\nHa! let me see her: out, alas! she's cold:\nHer blood is settled, and her joints are stiff;\nLife and these lips have long been separated:\nDeath lies on her like an untimely frost\nUpon the sweetest flower of all the field.\n\nNurse:\nO lamentable day!\n\nLADY CAPULET:\nO woful time!\n\nCAPULET:\nDeath, that hath ta'en her hence to make me wail,\nTies up my tongue, and will not let me speak.\n\nFRIAR LAURENCE:\nCome, is the bride ready to go to church?\n\nCAPULET:\nReady to go, but never to return.\nO son! the night before thy wedding-day\nHath Death lain with thy wife. There she lies,\nFlower as she was, deflowered by him.\nDeath is my son-in-law, Death is my heir;\nMy daughter he hath wedded: I will die,\nAnd leave him all; life, living, all is Death's.\n\nPARIS:\nHave I thought long to see this morning's face,\nAnd doth it give me such a sight as this?\n\nLADY CAPULET:\nAccursed, unhappy, wretched, hateful day!\nMost miserable hour that e'er time saw\nIn lasting labour of his pilgrimage!\nBut one, poor one, one poor and loving child,\nBut one thing to rejoice and solace in,\nAnd cruel death hath catch'd it from my sight!\n\nNurse:\nO woe! O woful, woful, woful day!\nMost lamentable day, most woful day,\nThat ever, ever, I did yet behold!\nO day! O day! O day! O hateful day!\nNever was seen so black a day as this:\nO woful day, O woful day!\n\nPARIS:\nBeguiled, divorced, wronged, spited, slain!\nMost detestable death, by thee beguil'd,\nBy cruel cruel thee quite overthrown!\nO love! O life! not life, but love in death!\n\nCAPULET:\nDespised, distressed, hated, martyr'd, kill'd!\nUncomfortable time, why camest thou now\nTo murder, murder our solemnity?\nO child! O child! my soul, and not my child!\nDead art thou! Alack! my child is dead;\nAnd with my child my joys are buried.\n\nFRIAR LAURENCE:\nPeace, ho, for shame! confusion's cure lives not\nIn these confusions. Heaven and yourself\nHad part in this fair maid; now heaven hath all,\nAnd all the better is it for the maid:\nYour part in her you could not keep from death,\nBut heaven keeps his part in eternal life.\nThe most you sought was her promotion;\nFor 'twas your heaven she should be advanced:\nAnd weep ye now, seeing she is advanced\nAbove the clouds, as high as heaven itself?\nO, in this love, you love your child so ill,\nThat you run mad, seeing that she is well:\nShe's not well married that lives married long;\nBut she's best married that dies married young.\nDry up your tears, and stick your rosemary\nOn this fair corse; and, as the custom is,\nIn all her best array bear her to church:\nFor though fond nature bids us an lament,\nYet nature's tears are reason's merriment.\n\nCAPULET:\nAll things that we ordained festival,\nTurn from their office to black funeral;\nOur instruments to melancholy bells,\nOur wedding cheer to a sad burial feast,\nOur solemn hymns to sullen dirges change,\nOur bridal flowers serve for a buried corse,\nAnd all things change them to the contrary.\n\nFRIAR LAURENCE:\nSir, go you in; and, madam, go with him;\nAnd go, Sir Paris; every one prepare\nTo follow this fair corse unto her grave:\nThe heavens do lour upon you for some ill;\nMove them no more by crossing their high will.\n\nFirst Musician:\nFaith, we may put up our pipes, and be gone.\n\nNurse:\nHonest goodfellows, ah, put up, put up;\nFor, well you know, this is a pitiful case.\n\nFirst Musician:\nAy, by my troth, the case may be amended.\n\nPETER:\nMusicians, O, musicians, 'Heart's ease, Heart's\nease:' O, an you will have me live, play 'Heart's ease.'\n\nFirst Musician:\nWhy 'Heart's ease?'\n\nPETER:\nO, musicians, because my heart itself plays 'My\nheart is full of woe:' O, play me some merry dump,\nto comfort me.\n\nFirst Musician:\nNot a dump we; 'tis no time to play now.\n\nPETER:\nYou will not, then?\n\nFirst Musician:\nNo.\n\nPETER:\nI will then give it you soundly.\n\nFirst Musician:\nWhat will you give us?\n\nPETER:\nNo money, on my faith, but the gleek;\nI will give you the minstrel.\n\nFirst Musician:\nThen I will give you the serving-creature.\n\nPETER:\nThen will I lay the serving-creature's dagger on\nyour pate. I will carry no crotchets: I'll re you,\nI'll fa you; do you note me?\n\nFirst Musician:\nAn you re us and fa us, you note us.\n\nSecond Musician:\nPray you, put up your dagger, and put out your wit.\n\nPETER:\nThen have at you with my wit! I will dry-beat you\nwith an iron wit, and put up my iron dagger. Answer\nme like men:\n'When griping grief the heart doth wound,\nAnd doleful dumps the mind oppress,\nThen music with her silver sound'--\nwhy 'silver sound'? why 'music with her silver\nsound'? What say you, Simon Catling?\n\nMusician:\nMarry, sir, because silver hath a sweet sound.\n\nPETER:\nPretty! What say you, Hugh Rebeck?\n\nSecond Musician:\nI say 'silver sound,' because musicians sound for silver.\n\nPETER:\nPretty too! What say you, James Soundpost?\n\nThird Musician:\nFaith, I know not what to say.\n\nPETER:\nO, I cry you mercy; you are the singer: I will say\nfor you. It is 'music with her silver sound,'\nbecause musicians have no gold for sounding:\n'Then music with her silver sound\nWith speedy help doth lend redress.'\n\nFirst Musician:\nWhat a pestilent knave is this same!\n\nSecond Musician:\nHang him, Jack! Come, we'll in here; tarry for the\nmourners, and stay dinner.\n\nROMEO:\nIf I may trust the flattering truth of sleep,\nMy dreams presage some joyful news at hand:\nMy bosom's lord sits lightly in his throne;\nAnd all this day an unaccustom'd spirit\nLifts me above the ground with cheerful thoughts.\nI dreamt my lady came and found me dead--\nStrange dream, that gives a dead man leave\nto think!--\nAnd breathed such life with kisses in my lips,\nThat I revived, and was an emperor.\nAh me! how sweet is love itself possess'd,\nWhen but love's shadows are so rich in joy!\nNews from Verona!--How now, Balthasar!\nDost thou not bring me letters from the friar?\nHow doth my lady? Is my father well?\nHow fares my Juliet? that I ask again;\nFor nothing can be ill, if she be well.\n\nBALTHASAR:\nThen she is well, and nothing can be ill:\nHer body sleeps in Capel's monument,\nAnd her immortal part with angels lives.\nI saw her laid low in her kindred's vault,\nAnd presently took post to tell it you:\nO, pardon me for bringing these ill news,\nSince you did leave it for my office, sir.\n\nROMEO:\nIs it even so? then I defy you, stars!\nThou know'st my lodging: get me ink and paper,\nAnd hire post-horses; I will hence to-night.\n\nBALTHASAR:\nI do beseech you, sir, have patience:\nYour looks are pale and wild, and do import\nSome misadventure.\n\nROMEO:\nTush, thou art deceived:\nLeave me, and do the thing I bid thee do.\nHast thou no letters to me from the friar?\n\nBALTHASAR:\nNo, my good lord.\n\nROMEO:\nNo matter: get thee gone,\nAnd hire those horses; I'll be with thee straight.\nWell, Juliet, I will lie with thee to-night.\nLet's see for means: O mischief, thou art swift\nTo enter in the thoughts of desperate men!\nI do remember an apothecary,--\nAnd hereabouts he dwells,--which late I noted\nIn tatter'd weeds, with overwhelming brows,\nCulling of simples; meagre were his looks,\nSharp misery had worn him to the bones:\nAnd in his needy shop a tortoise hung,\nAn alligator stuff'd, and other skins\nOf ill-shaped fishes; and about his shelves\nA beggarly account of empty boxes,\nGreen earthen pots, bladders and musty seeds,\nRemnants of packthread and old cakes of roses,\nWere thinly scatter'd, to make up a show.\nNoting this penury, to myself I said\n'An if a man did need a poison now,\nWhose sale is present death in Mantua,\nHere lives a caitiff wretch would sell it him.'\nO, this same thought did but forerun my need;\nAnd this same needy man must sell it me.\nAs I remember, this should be the house.\nBeing holiday, the beggar's shop is shut.\nWhat, ho! apothecary!\n\nApothecary:\nWho calls so loud?\n\nROMEO:\nCome hither, man. I see that thou art poor:\nHold, there is forty ducats: let me have\nA dram of poison, such soon-speeding gear\nAs will disperse itself through all the veins\nThat the life-weary taker may fall dead\nAnd that the trunk may be discharged of breath\nAs violently as hasty powder fired\nDoth hurry from the fatal cannon's womb.\n\nApothecary:\nSuch mortal drugs I have; but Mantua's law\nIs death to any he that utters them.\n\nROMEO:\nArt thou so bare and full of wretchedness,\nAnd fear'st to die? famine is in thy cheeks,\nNeed and oppression starveth in thine eyes,\nContempt and beggary hangs upon thy back;\nThe world is not thy friend nor the world's law;\nThe world affords no law to make thee rich;\nThen be not poor, but break it, and take this.\n\nApothecary:\nMy poverty, but not my will, consents.\n\nROMEO:\nI pay thy poverty, and not thy will.\n\nApothecary:\nPut this in any liquid thing you will,\nAnd drink it off; and, if you had the strength\nOf twenty men, it would dispatch you straight.\n\nROMEO:\nThere is thy gold, worse poison to men's souls,\nDoing more murders in this loathsome world,\nThan these poor compounds that thou mayst not sell.\nI sell thee poison; thou hast sold me none.\nFarewell: buy food, and get thyself in flesh.\nCome, cordial and not poison, go with me\nTo Juliet's grave; for there must I use thee.\n\nFRIAR JOHN:\nHoly Franciscan friar! brother, ho!\n\nFRIAR LAURENCE:\nThis same should be the voice of Friar John.\nWelcome from Mantua: what says Romeo?\nOr, if his mind be writ, give me his letter.\n\nFRIAR JOHN:\nGoing to find a bare-foot brother out\nOne of our order, to associate me,\nHere in this city visiting the sick,\nAnd finding him, the searchers of the town,\nSuspecting that we both were in a house\nWhere the infectious pestilence did reign,\nSeal'd up the doors, and would not let us forth;\nSo that my speed to Mantua there was stay'd.\n\nFRIAR LAURENCE:\nWho bare my letter, then, to Romeo?\n\nFRIAR JOHN:\nI could not send it,--here it is again,--\nNor get a messenger to bring it thee,\nSo fearful were they of infection.\n\nFRIAR LAURENCE:\nUnhappy fortune! by my brotherhood,\nThe letter was not nice but full of charge\nOf dear import, and the neglecting it\nMay do much danger. Friar John, go hence;\nGet me an iron crow, and bring it straight\nUnto my cell.\n\nFRIAR JOHN:\nBrother, I'll go and bring it thee.\n\nFRIAR LAURENCE:\nNow must I to the monument alone;\nWithin three hours will fair Juliet wake:\nShe will beshrew me much that Romeo\nHath had no notice of these accidents;\nBut I will write again to Mantua,\nAnd keep her at my cell till Romeo come;\nPoor living corse, closed in a dead man's tomb!\n\nPARIS:\nGive me thy torch, boy: hence, and stand aloof:\nYet put it out, for I would not be seen.\nUnder yond yew-trees lay thee all along,\nHolding thine ear close to the hollow ground;\nSo shall no foot upon the churchyard tread,\nBeing loose, unfirm, with digging up of graves,\nBut thou shalt hear it: whistle then to me,\nAs signal that thou hear'st something approach.\nGive me those flowers. Do as I bid thee, go.\n\nPAGE:\n\nPARIS:\nSweet flower, with flowers thy bridal bed I strew,--\nO woe! thy canopy is dust and stones;--\nWhich with sweet water nightly I will dew,\nOr, wanting that, with tears distill'd by moans:\nThe obsequies that I for thee will keep\nNightly shall be to strew thy grave and weep.\nThe boy gives warning something doth approach.\nWhat cursed foot wanders this way to-night,\nTo cross my obsequies and true love's rite?\nWhat with a torch! muffle me, night, awhile.\n\nROMEO:\nGive me that mattock and the wrenching iron.\nHold, take this letter; early in the morning\nSee thou deliver it to my lord and father.\nGive me the light: upon thy life, I charge thee,\nWhate'er thou hear'st or seest, stand all aloof,\nAnd do not interrupt me in my course.\nWhy I descend into this bed of death,\nIs partly to behold my lady's face;\nBut chiefly to take thence from her dead finger\nA precious ring, a ring that I must use\nIn dear employment: therefore hence, be gone:\nBut if thou, jealous, dost return to pry\nIn what I further shall intend to do,\nBy heaven, I will tear thee joint by joint\nAnd strew this hungry churchyard with thy limbs:\nThe time and my intents are savage-wild,\nMore fierce and more inexorable far\nThan empty tigers or the roaring sea.\n\nBALTHASAR:\nI will be gone, sir, and not trouble you.\n\nROMEO:\nSo shalt thou show me friendship. Take thou that:\nLive, and be prosperous: and farewell, good fellow.\n\nBALTHASAR:\n\nROMEO:\nThou detestable maw, thou womb of death,\nGorged with the dearest morsel of the earth,\nThus I enforce thy rotten jaws to open,\nAnd, in despite, I'll cram thee with more food!\n\nPARIS:\nThis is that banish'd haughty Montague,\nThat murder'd my love's cousin, with which grief,\nIt is supposed, the fair creature died;\nAnd here is come to do some villanous shame\nTo the dead bodies: I will apprehend him.\nStop thy unhallow'd toil, vile Montague!\nCan vengeance be pursued further than death?\nCondemned villain, I do apprehend thee:\nObey, and go with me; for thou must die.\n\nROMEO:\nI must indeed; and therefore came I hither.\nGood gentle youth, tempt not a desperate man;\nFly hence, and leave me: think upon these gone;\nLet them affright thee. I beseech thee, youth,\nPut not another sin upon my head,\nBy urging me to fury: O, be gone!\nBy heaven, I love thee better than myself;\nFor I come hither arm'd against myself:\nStay not, be gone; live, and hereafter say,\nA madman's mercy bade thee run away.\n\nPARIS:\nI do defy thy conjurations,\nAnd apprehend thee for a felon here.\n\nROMEO:\nWilt thou provoke me? then have at thee, boy!\n\nPAGE:\nO Lord, they fight! I will go call the watch.\n\nPARIS:\nO, I am slain!\nIf thou be merciful,\nOpen the tomb, lay me with Juliet.\n\nROMEO:\nIn faith, I will. Let me peruse this face.\nMercutio's kinsman, noble County Paris!\nWhat said my man, when my betossed soul\nDid not attend him as we rode? I think\nHe told me Paris should have married Juliet:\nSaid he not so? or did I dream it so?\nOr am I mad, hearing him talk of Juliet,\nTo think it was so? O, give me thy hand,\nOne writ with me in sour misfortune's book!\nI'll bury thee in a triumphant grave;\nA grave? O no! a lantern, slaughter'd youth,\nFor here lies Juliet, and her beauty makes\nThis vault a feasting presence full of light.\nDeath, lie thou there, by a dead man interr'd.\nHow oft when men are at the point of death\nHave they been merry! which their keepers call\nA lightning before death: O, how may I\nCall this a lightning? O my love! my wife!\nDeath, that hath suck'd the honey of thy breath,\nHath had no power yet upon thy beauty:\nThou art not conquer'd; beauty's ensign yet\nIs crimson in thy lips and in thy cheeks,\nAnd death's pale flag is not advanced there.\nTybalt, liest thou there in thy bloody sheet?\nO, what more favour can I do to thee,\nThan with that hand that cut thy youth in twain\nTo sunder his that was thine enemy?\nForgive me, cousin! Ah, dear Juliet,\nWhy art thou yet so fair? shall I believe\nThat unsubstantial death is amorous,\nAnd that the lean abhorred monster keeps\nThee here in dark to be his paramour?\nFor fear of that, I still will stay with thee;\nAnd never from this palace of dim night\nDepart again: here, here will I remain\nWith worms that are thy chamber-maids; O, here\nWill I set up my everlasting rest,\nAnd shake the yoke of inauspicious stars\nFrom this world-wearied flesh. Eyes, look your last!\nArms, take your last embrace! and, lips, O you\nThe doors of breath, seal with a righteous kiss\nA dateless bargain to engrossing death!\nCome, bitter conduct, come, unsavoury guide!\nThou desperate pilot, now at once run on\nThe dashing rocks thy sea-sick weary bark!\nHere's to my love!\nO true apothecary!\nThy drugs are quick. Thus with a kiss I die.\n\nFRIAR LAURENCE:\nSaint Francis be my speed! how oft to-night\nHave my old feet stumbled at graves! Who's there?\n\nBALTHASAR:\nHere's one, a friend, and one that knows you well.\n\nFRIAR LAURENCE:\nBliss be upon you! Tell me, good my friend,\nWhat torch is yond, that vainly lends his light\nTo grubs and eyeless skulls? as I discern,\nIt burneth in the Capel's monument.\n\nBALTHASAR:\nIt doth so, holy sir; and there's my master,\nOne that you love.\n\nFRIAR LAURENCE:\nWho is it?\n\nBALTHASAR:\nRomeo.\n\nFRIAR LAURENCE:\nHow long hath he been there?\n\nBALTHASAR:\nFull half an hour.\n\nFRIAR LAURENCE:\nGo with me to the vault.\n\nBALTHASAR:\nI dare not, sir\nMy master knows not but I am gone hence;\nAnd fearfully did menace me with death,\nIf I did stay to look on his intents.\n\nFRIAR LAURENCE:\nStay, then; I'll go alone. Fear comes upon me:\nO, much I fear some ill unlucky thing.\n\nBALTHASAR:\nAs I did sleep under this yew-tree here,\nI dreamt my master and another fought,\nAnd that my master slew him.\n\nFRIAR LAURENCE:\nRomeo!\nAlack, alack, what blood is this, which stains\nThe stony entrance of this sepulchre?\nWhat mean these masterless and gory swords\nTo lie discolour'd by this place of peace?\nRomeo! O, pale! Who else? what, Paris too?\nAnd steep'd in blood? Ah, what an unkind hour\nIs guilty of this lamentable chance!\nThe lady stirs.\n\nJULIET:\nO comfortable friar! where is my lord?\nI do remember well where I should be,\nAnd there I am. Where is my Romeo?\n\nFRIAR LAURENCE:\nI hear some noise. Lady, come from that nest\nOf death, contagion, and unnatural sleep:\nA greater power than we can contradict\nHath thwarted our intents. Come, come away.\nThy husband in thy bosom there lies dead;\nAnd Paris too. Come, I'll dispose of thee\nAmong a sisterhood of holy nuns:\nStay not to question, for the watch is coming;\nCome, go, good Juliet,\nI dare no longer stay.\n\nJULIET:\nGo, get thee hence, for I will not away.\nWhat's here? a cup, closed in my true love's hand?\nPoison, I see, hath been his timeless end:\nO churl! drunk all, and left no friendly drop\nTo help me after? I will kiss thy lips;\nHaply some poison yet doth hang on them,\nTo make die with a restorative.\nThy lips are warm.\n\nFirst Watchman:\n\nJULIET:\nYea, noise? then I'll be brief. O happy dagger!\nThis is thy sheath;\nthere rust, and let me die.\n\nPAGE:\nThis is the place; there, where the torch doth burn.\n\nFirst Watchman:\nThe ground is bloody; search about the churchyard:\nGo, some of you, whoe'er you find attach.\nPitiful sight! here lies the county slain,\nAnd Juliet bleeding, warm, and newly dead,\nWho here hath lain these two days buried.\nGo, tell the prince: run to the Capulets:\nRaise up the Montagues: some others search:\nWe see the ground whereon these woes do lie;\nBut the true ground of all these piteous woes\nWe cannot without circumstance descry.\n\nSecond Watchman:\nHere's Romeo's man; we found him in the churchyard.\n\nFirst Watchman:\nHold him in safety, till the prince come hither.\n\nThird Watchman:\nHere is a friar, that trembles, sighs and weeps:\nWe took this mattock and this spade from him,\nAs he was coming from this churchyard side.\n\nFirst Watchman:\nA great suspicion: stay the friar too.\n\nPRINCE:\nWhat misadventure is so early up,\nThat calls our person from our morning's rest?\n\nCAPULET:\nWhat should it be, that they so shriek abroad?\n\nLADY CAPULET:\nThe people in the street cry Romeo,\nSome Juliet, and some Paris; and all run,\nWith open outcry toward our monument.\n\nPRINCE:\nWhat fear is this which startles in our ears?\n\nFirst Watchman:\nSovereign, here lies the County Paris slain;\nAnd Romeo dead; and Juliet, dead before,\nWarm and new kill'd.\n\nPRINCE:\nSearch, seek, and know how this foul murder comes.\n\nFirst Watchman:\nHere is a friar, and slaughter'd Romeo's man;\nWith instruments upon them, fit to open\nThese dead men's tombs.\n\nCAPULET:\nO heavens! O wife, look how our daughter bleeds!\nThis dagger hath mista'en--for, lo, his house\nIs empty on the back of Montague,--\nAnd it mis-sheathed in my daughter's bosom!\n\nLADY CAPULET:\nO me! this sight of death is as a bell,\nThat warns my old age to a sepulchre.\n\nPRINCE:\nCome, Montague; for thou art early up,\nTo see thy son and heir more early down.\n\nMONTAGUE:\nAlas, my liege, my wife is dead to-night;\nGrief of my son's exile hath stopp'd her breath:\nWhat further woe conspires against mine age?\n\nPRINCE:\nLook, and thou shalt see.\n\nMONTAGUE:\nO thou untaught! what manners is in this?\nTo press before thy father to a grave?\n\nPRINCE:\nSeal up the mouth of outrage for a while,\nTill we can clear these ambiguities,\nAnd know their spring, their head, their\ntrue descent;\nAnd then will I be general of your woes,\nAnd lead you even to death: meantime forbear,\nAnd let mischance be slave to patience.\nBring forth the parties of suspicion.\n\nFRIAR LAURENCE:\nI am the greatest, able to do least,\nYet most suspected, as the time and place\nDoth make against me of this direful murder;\nAnd here I stand, both to impeach and purge\nMyself condemned and myself excused.\n\nPRINCE:\nThen say at once what thou dost know in this.\n\nFRIAR LAURENCE:\nI will be brief, for my short date of breath\nIs not so long as is a tedious tale.\nRomeo, there dead, was husband to that Juliet;\nAnd she, there dead, that Romeo's faithful wife:\nI married them; and their stol'n marriage-day\nWas Tybalt's dooms-day, whose untimely death\nBanish'd the new-made bridegroom from the city,\nFor whom, and not for Tybalt, Juliet pined.\nYou, to remove that siege of grief from her,\nBetroth'd and would have married her perforce\nTo County Paris: then comes she to me,\nAnd, with wild looks, bid me devise some mean\nTo rid her from this second marriage,\nOr in my cell there would she kill herself.\nThen gave I her, so tutor'd by my art,\nA sleeping potion; which so took effect\nAs I intended, for it wrought on her\nThe form of death: meantime I writ to Romeo,\nThat he should hither come as this dire night,\nTo help to take her from her borrow'd grave,\nBeing the time the potion's force should cease.\nBut he which bore my letter, Friar John,\nWas stay'd by accident, and yesternight\nReturn'd my letter back. Then all alone\nAt the prefixed hour of her waking,\nCame I to take her from her kindred's vault;\nMeaning to keep her closely at my cell,\nTill I conveniently could send to Romeo:\nBut when I came, some minute ere the time\nOf her awaking, here untimely lay\nThe noble Paris and true Romeo dead.\nShe wakes; and I entreated her come forth,\nAnd bear this work of heaven with patience:\nBut then a noise did scare me from the tomb;\nAnd she, too desperate, would not go with me,\nBut, as it seems, did violence on herself.\nAll this I know; and to the marriage\nHer nurse is privy: and, if aught in this\nMiscarried by my fault, let my old life\nBe sacrificed, some hour before his time,\nUnto the rigour of severest law.\n\nPRINCE:\nWe still have known thee for a holy man.\nWhere's Romeo's man? what can he say in this?\n\nBALTHASAR:\nI brought my master news of Juliet's death;\nAnd then in post he came from Mantua\nTo this same place, to this same monument.\nThis letter he early bid me give his father,\nAnd threatened me with death, going in the vault,\nI departed not and left him there.\n\nPRINCE:\nGive me the letter; I will look on it.\nWhere is the county's page, that raised the watch?\nSirrah, what made your master in this place?\n\nPAGE:\nHe came with flowers to strew his lady's grave;\nAnd bid me stand aloof, and so I did:\nAnon comes one with light to ope the tomb;\nAnd by and by my master drew on him;\nAnd then I ran away to call the watch.\n\nPRINCE:\nThis letter doth make good the friar's words,\nTheir course of love, the tidings of her death:\nAnd here he writes that he did buy a poison\nOf a poor 'pothecary, and therewithal\nCame to this vault to die, and lie with Juliet.\nWhere be these enemies? Capulet! Montague!\nSee, what a scourge is laid upon your hate,\nThat heaven finds means to kill your joys with love.\nAnd I for winking at your discords too\nHave lost a brace of kinsmen: all are punish'd.\n\nCAPULET:\nO brother Montague, give me thy hand:\nThis is my daughter's jointure, for no more\nCan I demand.\n\nMONTAGUE:\nBut I can give thee more:\nFor I will raise her statue in pure gold;\nThat while Verona by that name is known,\nThere shall no figure at such rate be set\nAs that of true and faithful Juliet.\n\nCAPULET:\nAs rich shall Romeo's by his lady's lie;\nPoor sacrifices of our enmity!\n\nPRINCE:\nA glooming peace this morning with it brings;\nThe sun, for sorrow, will not show his head:\nGo hence, to have more talk of these sad things;\nSome shall be pardon'd, and some punished:\nFor never was a story of more woe\nThan this of Juliet and her Romeo.\n\nWARWICK:\nI wonder how the king escaped our hands.\n\nYORK:\nWhile we pursued the horsemen of the north,\nHe slily stole away and left his men:\nWhereat the great Lord of Northumberland,\nWhose warlike ears could never brook retreat,\nCheer'd up the drooping army; and himself,\nLord Clifford and Lord Stafford, all abreast,\nCharged our main battle's front, and breaking in\nWere by the swords of common soldiers slain.\n\nEDWARD:\nLord Stafford's father, Duke of Buckingham,\nIs either slain or wounded dangerously;\nI cleft his beaver with a downright blow:\nThat this is true, father, behold his blood.\n\nMONTAGUE:\nAnd, brother, here's the Earl of Wiltshire's blood,\nWhom I encounter'd as the battles join'd.\n\nRICHARD:\nSpeak thou for me and tell them what I did.\n\nYORK:\nRichard hath best deserved of all my sons.\nBut is your grace dead, my Lord of Somerset?\n\nNORFOLK:\nSuch hope have all the line of John of Gaunt!\n\nRICHARD:\nThus do I hope to shake King Henry's head.\n\nWARWICK:\nAnd so do I. Victorious Prince of York,\nBefore I see thee seated in that throne\nWhich now the house of Lancaster usurps,\nI vow by heaven these eyes shall never close.\nThis is the palace of the fearful king,\nAnd this the regal seat: possess it, York;\nFor this is thine and not King Henry's heirs'\n\nYORK:\nAssist me, then, sweet Warwick, and I will;\nFor hither we have broken in by force.\n\nNORFOLK:\nWe'll all assist you; he that flies shall die.\n\nYORK:\nThanks, gentle Norfolk: stay by me, my lords;\nAnd, soldiers, stay and lodge by me this night.\n\nWARWICK:\nAnd when the king comes, offer no violence,\nUnless he seek to thrust you out perforce.\n\nYORK:\nThe queen this day here holds her parliament,\nBut little thinks we shall be of her council:\nBy words or blows here let us win our right.\n\nRICHARD:\nArm'd as we are, let's stay within this house.\n\nWARWICK:\nThe bloody parliament shall this be call'd,\nUnless Plantagenet, Duke of York, be king,\nAnd bashful Henry deposed, whose cowardice\nHath made us by-words to our enemies.\n\nYORK:\nThen leave me not, my lords; be resolute;\nI mean to take possession of my right.\n\nWARWICK:\nNeither the king, nor he that loves him best,\nThe proudest he that holds up Lancaster,\nDares stir a wing, if Warwick shake his bells.\nI'll plant Plantagenet, root him up who dares:\nResolve thee, Richard; claim the English crown.\n\nKING HENRY VI:\nMy lords, look where the sturdy rebel sits,\nEven in the chair of state: belike he means,\nBack'd by the power of Warwick, that false peer,\nTo aspire unto the crown and reign as king.\nEarl of Northumberland, he slew thy father.\nAnd thine, Lord Clifford; and you both have vow'd revenge\nOn him, his sons, his favourites and his friends.\n\nNORTHUMBERLAND:\nIf I be not, heavens be revenged on me!\n\nCLIFFORD:\nThe hope thereof makes Clifford mourn in steel.\n\nWESTMORELAND:\nWhat, shall we suffer this? let's pluck him down:\nMy heart for anger burns; I cannot brook it.\n\nKING HENRY VI:\nBe patient, gentle Earl of Westmoreland.\n\nCLIFFORD:\nPatience is for poltroons, such as he:\nHe durst not sit there, had your father lived.\nMy gracious lord, here in the parliament\nLet us assail the family of York.\n\nNORTHUMBERLAND:\nWell hast thou spoken, cousin: be it so.\n\nKING HENRY VI:\nAh, know you not the city favours them,\nAnd they have troops of soldiers at their beck?\n\nEXETER:\nBut when the duke is slain, they'll quickly fly.\n\nKING HENRY VI:\nFar be the thought of this from Henry's heart,\nTo make a shambles of the parliament-house!\nCousin of Exeter, frowns, words and threats\nShall be the war that Henry means to use.\nThou factious Duke of York, descend my throne,\nand kneel for grace and mercy at my feet;\nI am thy sovereign.\n\nYORK:\nI am thine.\n\nEXETER:\nFor shame, come down: he made thee Duke of York.\n\nYORK:\n'Twas my inheritance, as the earldom was.\n\nEXETER:\nThy father was a traitor to the crown.\n\nWARWICK:\nExeter, thou art a traitor to the crown\nIn following this usurping Henry.\n\nCLIFFORD:\nWhom should he follow but his natural king?\n\nWARWICK:\nTrue, Clifford; and that's Richard Duke of York.\n\nKING HENRY VI:\nAnd shall I stand, and thou sit in my throne?\n\nYORK:\nIt must and shall be so: content thyself.\n\nWARWICK:\nBe Duke of Lancaster; let him be king.\n\nWESTMORELAND:\nHe is both king and Duke of Lancaster;\nAnd that the Lord of Westmoreland shall maintain.\n\nWARWICK:\nAnd Warwick shall disprove it. You forget\nThat we are those which chased you from the field\nAnd slew your fathers, and with colours spread\nMarch'd through the city to the palace gates.\n\nNORTHUMBERLAND:\nYes, Warwick, I remember it to my grief;\nAnd, by his soul, thou and thy house shall rue it.\n\nWESTMORELAND:\nPlantagenet, of thee and these thy sons,\nThy kinsman and thy friends, I'll have more lives\nThan drops of blood were in my father's veins.\n\nCLIFFORD:\nUrge it no more; lest that, instead of words,\nI send thee, Warwick, such a messenger\nAs shall revenge his death before I stir.\n\nWARWICK:\nPoor Clifford! how I scorn his worthless threats!\n\nYORK:\nWill you we show our title to the crown?\nIf not, our swords shall plead it in the field.\n\nKING HENRY VI:\nWhat title hast thou, traitor, to the crown?\nThy father was, as thou art, Duke of York;\nThy grandfather, Roger Mortimer, Earl of March:\nI am the son of Henry the Fifth,\nWho made the Dauphin and the French to stoop\nAnd seized upon their towns and provinces.\n\nWARWICK:\nTalk not of France, sith thou hast lost it all.\n\nKING HENRY VI:\nThe lord protector lost it, and not I:\nWhen I was crown'd I was but nine months old.\n\nRICHARD:\nYou are old enough now, and yet, methinks, you lose.\nFather, tear the crown from the usurper's head.\n\nEDWARD:\nSweet father, do so; set it on your head.\n\nMONTAGUE:\nGood brother, as thou lovest and honourest arms,\nLet's fight it out and not stand cavilling thus.\n\nRICHARD:\nSound drums and trumpets, and the king will fly.\n\nYORK:\nSons, peace!\n\nKING HENRY VI:\nPeace, thou! and give King Henry leave to speak.\n\nWARWICK:\nPlantagenet shall speak first: hear him, lords;\nAnd be you silent and attentive too,\nFor he that interrupts him shall not live.\n\nKING HENRY VI:\nThink'st thou that I will leave my kingly throne,\nWherein my grandsire and my father sat?\nNo: first shall war unpeople this my realm;\nAy, and their colours, often borne in France,\nAnd now in England to our heart's great sorrow,\nShall be my winding-sheet. Why faint you, lords?\nMy title's good, and better far than his.\n\nWARWICK:\nProve it, Henry, and thou shalt be king.\n\nKING HENRY VI:\nHenry the Fourth by conquest got the crown.\n\nYORK:\n'Twas by rebellion against his king.\n\nKING HENRY VI:\n\nYORK:\nWhat then?\n\nKING HENRY VI:\nAn if he may, then am I lawful king;\nFor Richard, in the view of many lords,\nResign'd the crown to Henry the Fourth,\nWhose heir my father was, and I am his.\n\nYORK:\nHe rose against him, being his sovereign,\nAnd made him to resign his crown perforce.\n\nWARWICK:\nSuppose, my lords, he did it unconstrain'd,\nThink you 'twere prejudicial to his crown?\n\nEXETER:\nNo; for he could not so resign his crown\nBut that the next heir should succeed and reign.\n\nKING HENRY VI:\nArt thou against us, Duke of Exeter?\n\nEXETER:\nHis is the right, and therefore pardon me.\n\nYORK:\nWhy whisper you, my lords, and answer not?\n\nEXETER:\nMy conscience tells me he is lawful king.\n\nKING HENRY VI:\n\nNORTHUMBERLAND:\nPlantagenet, for all the claim thou lay'st,\nThink not that Henry shall be so deposed.\n\nWARWICK:\nDeposed he shall be, in despite of all.\n\nNORTHUMBERLAND:\nThou art deceived: 'tis not thy southern power,\nOf Essex, Norfolk, Suffolk, nor of Kent,\nWhich makes thee thus presumptuous and proud,\nCan set the duke up in despite of me.\n\nCLIFFORD:\nKing Henry, be thy title right or wrong,\nLord Clifford vows to fight in thy defence:\nMay that ground gape and swallow me alive,\nWhere I shall kneel to him that slew my father!\n\nKING HENRY VI:\nO Clifford, how thy words revive my heart!\n\nYORK:\nHenry of Lancaster, resign thy crown.\nWhat mutter you, or what conspire you, lords?\n\nWARWICK:\nDo right unto this princely Duke of York,\nOr I will fill the house with armed men,\nAnd over the chair of state, where now he sits,\nWrite up his title with usurping blood.\n\nKING HENRY VI:\nMy Lord of Warwick, hear me but one word:\nLet me for this my life-time reign as king.\n\nYORK:\nConfirm the crown to me and to mine heirs,\nAnd thou shalt reign in quiet while thou livest.\n\nKING HENRY VI:\nI am content: Richard Plantagenet,\nEnjoy the kingdom after my decease.\n\nCLIFFORD:\nWhat wrong is this unto the prince your son!\n\nWARWICK:\nWhat good is this to England and himself!\n\nWESTMORELAND:\nBase, fearful and despairing Henry!\n\nCLIFFORD:\nHow hast thou injured both thyself and us!\n\nWESTMORELAND:\nI cannot stay to hear these articles.\n\nNORTHUMBERLAND:\nNor I.\n\nCLIFFORD:\nCome, cousin, let us tell the queen these news.\n\nWESTMORELAND:\nFarewell, faint-hearted and degenerate king,\nIn whose cold blood no spark of honour bides.\n\nNORTHUMBERLAND:\nBe thou a prey unto the house of York,\nAnd die in bands for this unmanly deed!\n\nCLIFFORD:\nIn dreadful war mayst thou be overcome,\nOr live in peace abandon'd and despised!\n\nWARWICK:\nTurn this way, Henry, and regard them not.\n\nEXETER:\nThey seek revenge and therefore will not yield.\n\nKING HENRY VI:\nAh, Exeter!\n\nWARWICK:\nWhy should you sigh, my lord?\n\nKING HENRY VI:\nNot for myself, Lord Warwick, but my son,\nWhom I unnaturally shall disinherit.\nBut be it as it may: I here entail\nThe crown to thee and to thine heirs for ever;\nConditionally, that here thou take an oath\nTo cease this civil war, and, whilst I live,\nTo honour me as thy king and sovereign,\nAnd neither by treason nor hostility\nTo seek to put me down and reign thyself.\n\nYORK:\nThis oath I willingly take and will perform.\n\nWARWICK:\nLong live King Henry! Plantagenet embrace him.\n\nKING HENRY VI:\nAnd long live thou and these thy forward sons!\n\nYORK:\nNow York and Lancaster are reconciled.\n\nEXETER:\nAccursed be he that seeks to make them foes!\n\nYORK:\nFarewell, my gracious lord; I'll to my castle.\n\nWARWICK:\nAnd I'll keep London with my soldiers.\n\nNORFOLK:\nAnd I to Norfolk with my followers.\n\nMONTAGUE:\nAnd I unto the sea from whence I came.\n\nKING HENRY VI:\nAnd I, with grief and sorrow, to the court.\n\nEXETER:\nHere comes the queen, whose looks bewray her anger:\nI'll steal away.\n\nKING HENRY VI:\nExeter, so will I.\n\nQUEEN MARGARET:\nNay, go not from me; I will follow thee.\n\nKING HENRY VI:\nBe patient, gentle queen, and I will stay.\n\nQUEEN MARGARET:\nWho can be patient in such extremes?\nAh, wretched man! would I had died a maid\nAnd never seen thee, never borne thee son,\nSeeing thou hast proved so unnatural a father\nHath he deserved to lose his birthright thus?\nHadst thou but loved him half so well as I,\nOr felt that pain which I did for him once,\nOr nourish'd him as I did with my blood,\nThou wouldst have left thy dearest heart-blood there,\nRather than have that savage duke thine heir\nAnd disinherited thine only son.\n\nPRINCE EDWARD:\nFather, you cannot disinherit me:\nIf you be king, why should not I succeed?\n\nKING HENRY VI:\nPardon me, Margaret; pardon me, sweet son:\nThe Earl of Warwick and the duke enforced me.\n\nQUEEN MARGARET:\nEnforced thee! art thou king, and wilt be forced?\nI shame to hear thee speak. Ah, timorous wretch!\nThou hast undone thyself, thy son and me;\nAnd given unto the house of York such head\nAs thou shalt reign but by their sufferance.\nTo entail him and his heirs unto the crown,\nWhat is it, but to make thy sepulchre\nAnd creep into it far before thy time?\nWarwick is chancellor and the lord of Calais;\nStern Falconbridge commands the narrow seas;\nThe duke is made protector of the realm;\nAnd yet shalt thou be safe? such safety finds\nThe trembling lamb environed with wolves.\nHad I been there, which am a silly woman,\nThe soldiers should have toss'd me on their pikes\nBefore I would have granted to that act.\nBut thou preferr'st thy life before thine honour:\nAnd seeing thou dost, I here divorce myself\nBoth from thy table, Henry, and thy bed,\nUntil that act of parliament be repeal'd\nWhereby my son is disinherited.\nThe northern lords that have forsworn thy colours\nWill follow mine, if once they see them spread;\nAnd spread they shall be, to thy foul disgrace\nAnd utter ruin of the house of York.\nThus do I leave thee. Come, son, let's away;\nOur army is ready; come, we'll after them.\n\nKING HENRY VI:\nStay, gentle Margaret, and hear me speak.\n\nQUEEN MARGARET:\nThou hast spoke too much already: get thee gone.\n\nKING HENRY VI:\nGentle son Edward, thou wilt stay with me?\n\nQUEEN MARGARET:\nAy, to be murder'd by his enemies.\n\nPRINCE EDWARD:\nWhen I return with victory from the field\nI'll see your grace: till then I'll follow her.\n\nQUEEN MARGARET:\nCome, son, away; we may not linger thus.\n\nKING HENRY VI:\nPoor queen! how love to me and to her son\nHath made her break out into terms of rage!\nRevenged may she be on that hateful duke,\nWhose haughty spirit, winged with desire,\nWill cost my crown, and like an empty eagle\nTire on the flesh of me and of my son!\nThe loss of those three lords torments my heart:\nI'll write unto them and entreat them fair.\nCome, cousin you shall be the messenger.\n\nEXETER:\nAnd I, I hope, shall reconcile them all.\n3 KING HENRY VI\n\nRICHARD:\nBrother, though I be youngest, give me leave.\n\nEDWARD:\nNo, I can better play the orator.\n\nMONTAGUE:\nBut I have reasons strong and forcible.\n\nYORK:\nWhy, how now, sons and brother! at a strife?\nWhat is your quarrel? how began it first?\n\nEDWARD:\nNo quarrel, but a slight contention.\n\nYORK:\nAbout what?\n\nRICHARD:\nAbout that which concerns your grace and us;\nThe crown of England, father, which is yours.\n\nYORK:\nMine boy? not till King Henry be dead.\n\nRICHARD:\nYour right depends not on his life or death.\n\nEDWARD:\nNow you are heir, therefore enjoy it now:\nBy giving the house of Lancaster leave to breathe,\nIt will outrun you, father, in the end.\n\nYORK:\nI took an oath that he should quietly reign.\n\nEDWARD:\nBut for a kingdom any oath may be broken:\nI would break a thousand oaths to reign one year.\n\nRICHARD:\nNo; God forbid your grace should be forsworn.\n\nYORK:\nI shall be, if I claim by open war.\n\nRICHARD:\nI'll prove the contrary, if you'll hear me speak.\n\nYORK:\nThou canst not, son; it is impossible.\n\nRICHARD:\nAn oath is of no moment, being not took\nBefore a true and lawful magistrate,\nThat hath authority over him that swears:\nHenry had none, but did usurp the place;\nThen, seeing 'twas he that made you to depose,\nYour oath, my lord, is vain and frivolous.\nTherefore, to arms! And, father, do but think\nHow sweet a thing it is to wear a crown;\nWithin whose circuit is Elysium\nAnd all that poets feign of bliss and joy.\nWhy do we finger thus? I cannot rest\nUntil the white rose that I wear be dyed\nEven in the lukewarm blood of Henry's heart.\n\nYORK:\nRichard, enough; I will be king, or die.\nBrother, thou shalt to London presently,\nAnd whet on Warwick to this enterprise.\nThou, Richard, shalt to the Duke of Norfolk,\nAnd tell him privily of our intent.\nYou Edward, shall unto my Lord Cobham,\nWith whom the Kentishmen will willingly rise:\nIn them I trust; for they are soldiers,\nWitty, courteous, liberal, full of spirit.\nWhile you are thus employ'd, what resteth more,\nBut that I seek occasion how to rise,\nAnd yet the king not privy to my drift,\nNor any of the house of Lancaster?\nBut, stay: what news? Why comest thou in such post?\n\nMessenger:\nThe queen with all the northern earls and lords\nIntend here to besiege you in your castle:\nShe is hard by with twenty thousand men;\nAnd therefore fortify your hold, my lord.\n\nYORK:\nAy, with my sword. What! think'st thou that we fear them?\nEdward and Richard, you shall stay with me;\nMy brother Montague shall post to London:\nLet noble Warwick, Cobham, and the rest,\nWhom we have left protectors of the king,\nWith powerful policy strengthen themselves,\nAnd trust not simple Henry nor his oaths.\n\nMONTAGUE:\nBrother, I go; I'll win them, fear it not:\nAnd thus most humbly I do take my leave.\nSir John and Sir Hugh Mortimer, mine uncles,\nYou are come to Sandal in a happy hour;\nThe army of the queen mean to besiege us.\n\nJOHN MORTIMER:\nShe shall not need; we'll meet her in the field.\n\nYORK:\nWhat, with five thousand men?\n\nRICHARD:\nAy, with five hundred, father, for a need:\nA woman's general; what should we fear?\n\nEDWARD:\nI hear their drums: let's set our men in order,\nAnd issue forth and bid them battle straight.\n\nYORK:\nFive men to twenty! though the odds be great,\nI doubt not, uncle, of our victory.\nMany a battle have I won in France,\nWhen as the enemy hath been ten to one:\nWhy should I not now have the like success?\n3 KING HENRY VI\n\nRUTLAND:\nAh, whither shall I fly to 'scape their hands?\nAh, tutor, look where bloody Clifford comes!\n\nCLIFFORD:\nChaplain, away! thy priesthood saves thy life.\nAs for the brat of this accursed duke,\nWhose father slew my father, he shall die.\n\nTutor:\nAnd I, my lord, will bear him company.\n\nCLIFFORD:\nSoldiers, away with him!\n\nTutor:\nAh, Clifford, murder not this innocent child,\nLest thou be hated both of God and man!\n\nCLIFFORD:\nHow now! is he dead already? or is it fear\nThat makes him close his eyes? I'll open them.\n\nRUTLAND:\nSo looks the pent-up lion o'er the wretch\nThat trembles under his devouring paws;\nAnd so he walks, insulting o'er his prey,\nAnd so he comes, to rend his limbs asunder.\nAh, gentle Clifford, kill me with thy sword,\nAnd not with such a cruel threatening look.\nSweet Clifford, hear me speak before I die.\nI am too mean a subject for thy wrath:\nBe thou revenged on men, and let me live.\n\nCLIFFORD:\nIn vain thou speak'st, poor boy; my father's blood\nHath stopp'd the passage where thy words should enter.\n\nRUTLAND:\nThen let my father's blood open it again:\nHe is a man, and, Clifford, cope with him.\n\nCLIFFORD:\nHad thy brethren here, their lives and thine\nWere not revenge sufficient for me;\nNo, if I digg'd up thy forefathers' graves\nAnd hung their rotten coffins up in chains,\nIt could not slake mine ire, nor ease my heart.\nThe sight of any of the house of York\nIs as a fury to torment my soul;\nAnd till I root out their accursed line\nAnd leave not one alive, I live in hell.\nTherefore--\n\nRUTLAND:\nO, let me pray before I take my death!\nTo thee I pray; sweet Clifford, pity me!\n\nCLIFFORD:\nSuch pity as my rapier's point affords.\n\nRUTLAND:\nI never did thee harm: why wilt thou slay me?\n\nCLIFFORD:\nThy father hath.\n\nRUTLAND:\nBut 'twas ere I was born.\nThou hast one son; for his sake pity me,\nLest in revenge thereof, sith God is just,\nHe be as miserably slain as I.\nAh, let me live in prison all my days;\nAnd when I give occasion of offence,\nThen let me die, for now thou hast no cause.\n\nCLIFFORD:\nNo cause!\nThy father slew my father; therefore, die.\n\nRUTLAND:\nDi faciant laudis summa sit ista tuae!\n\nCLIFFORD:\nPlantagenet! I come, Plantagenet!\nAnd this thy son's blood cleaving to my blade\nShall rust upon my weapon, till thy blood,\nCongeal'd with this, do make me wipe off both.\n3 KING HENRY VI\n\nYORK:\nThe army of the queen hath got the field:\nMy uncles both are slain in rescuing me;\nAnd all my followers to the eager foe\nTurn back and fly, like ships before the wind\nOr lambs pursued by hunger-starved wolves.\nMy sons, God knows what hath bechanced them:\nBut this I know, they have demean'd themselves\nLike men born to renown by life or death.\nThree times did Richard make a lane to me.\nAnd thrice cried 'Courage, father! fight it out!'\nAnd full as oft came Edward to my side,\nWith purple falchion, painted to the hilt\nIn blood of those that had encounter'd him:\nAnd when the hardiest warriors did retire,\nRichard cried 'Charge! and give no foot of ground!'\nAnd cried 'A crown, or else a glorious tomb!\nA sceptre, or an earthly sepulchre!'\nWith this, we charged again: but, out, alas!\nWe bodged again; as I have seen a swan\nWith bootless labour swim against the tide\nAnd spend her strength with over-matching waves.\nAh, hark! the fatal followers do pursue;\nAnd I am faint and cannot fly their fury:\nAnd were I strong, I would not shun their fury:\nThe sands are number'd that make up my life;\nHere must I stay, and here my life must end.\nCome, bloody Clifford, rough Northumberland,\nI dare your quenchless fury to more rage:\nI am your butt, and I abide your shot.\n\nNORTHUMBERLAND:\nYield to our mercy, proud Plantagenet.\n\nCLIFFORD:\nAy, to such mercy as his ruthless arm,\nWith downright payment, show'd unto my father.\nNow Phaethon hath tumbled from his car,\nAnd made an evening at the noontide prick.\n\nYORK:\nMy ashes, as the phoenix, may bring forth\nA bird that will revenge upon you all:\nAnd in that hope I throw mine eyes to heaven,\nScorning whate'er you can afflict me with.\nWhy come you not? what! multitudes, and fear?\n\nCLIFFORD:\nSo cowards fight when they can fly no further;\nSo doves do peck the falcon's piercing talons;\nSo desperate thieves, all hopeless of their lives,\nBreathe out invectives 'gainst the officers.\n\nYORK:\nO Clifford, but bethink thee once again,\nAnd in thy thought o'er-run my former time;\nAnd, if though canst for blushing, view this face,\nAnd bite thy tongue, that slanders him with cowardice\nWhose frown hath made thee faint and fly ere this!\n\nCLIFFORD:\nI will not bandy with thee word for word,\nBut buckle with thee blows, twice two for one.\n\nQUEEN MARGARET:\nHold, valiant Clifford! for a thousand causes\nI would prolong awhile the traitor's life.\nWrath makes him deaf: speak thou, Northumberland.\n\nNORTHUMBERLAND:\nHold, Clifford! do not honour him so much\nTo prick thy finger, though to wound his heart:\nWhat valour were it, when a cur doth grin,\nFor one to thrust his hand between his teeth,\nWhen he might spurn him with his foot away?\nIt is war's prize to take all vantages;\nAnd ten to one is no impeach of valour.\n\nCLIFFORD:\nAy, ay, so strives the woodcock with the gin.\n\nNORTHUMBERLAND:\nSo doth the cony struggle in the net.\n\nYORK:\nSo triumph thieves upon their conquer'd booty;\nSo true men yield, with robbers so o'ermatch'd.\n\nNORTHUMBERLAND:\nWhat would your grace have done unto him now?\n\nQUEEN MARGARET:\nBrave warriors, Clifford and Northumberland,\nCome, make him stand upon this molehill here,\nThat raught at mountains with outstretched arms,\nYet parted but the shadow with his hand.\nWhat! was it you that would be England's king?\nWas't you that revell'd in our parliament,\nAnd made a preachment of your high descent?\nWhere are your mess of sons to back you now?\nThe wanton Edward, and the lusty George?\nAnd where's that valiant crook-back prodigy,\nDicky your boy, that with his grumbling voice\nWas wont to cheer his dad in mutinies?\nOr, with the rest, where is your darling Rutland?\nLook, York: I stain'd this napkin with the blood\nThat valiant Clifford, with his rapier's point,\nMade issue from the bosom of the boy;\nAnd if thine eyes can water for his death,\nI give thee this to dry thy cheeks withal.\nAlas poor York! but that I hate thee deadly,\nI should lament thy miserable state.\nI prithee, grieve, to make me merry, York.\nWhat, hath thy fiery heart so parch'd thine entrails\nThat not a tear can fall for Rutland's death?\nWhy art thou patient, man? thou shouldst be mad;\nAnd I, to make thee mad, do mock thee thus.\nStamp, rave, and fret, that I may sing and dance.\nThou wouldst be fee'd, I see, to make me sport:\nYork cannot speak, unless he wear a crown.\nA crown for York! and, lords, bow low to him:\nHold you his hands, whilst I do set it on.\nAy, marry, sir, now looks he like a king!\nAy, this is he that took King Henry's chair,\nAnd this is he was his adopted heir.\nBut how is it that great Plantagenet\nIs crown'd so soon, and broke his solemn oath?\nAs I bethink me, you should not be king\nTill our King Henry had shook hands with death.\nAnd will you pale your head in Henry's glory,\nAnd rob his temples of the diadem,\nNow in his life, against your holy oath?\nO, 'tis a fault too too unpardonable!\nOff with the crown, and with the crown his head;\nAnd, whilst we breathe, take time to do him dead.\n\nCLIFFORD:\nThat is my office, for my father's sake.\n\nQUEEN MARGARET:\nNay, stay; lets hear the orisons he makes.\n\nYORK:\nShe-wolf of France, but worse than wolves of France,\nWhose tongue more poisons than the adder's tooth!\nHow ill-beseeming is it in thy sex\nTo triumph, like an Amazonian trull,\nUpon their woes whom fortune captivates!\nBut that thy face is, vizard-like, unchanging,\nMade impudent with use of evil deeds,\nI would assay, proud queen, to make thee blush.\nTo tell thee whence thou camest, of whom derived,\nWere shame enough to shame thee, wert thou not shameless.\nThy father bears the type of King of Naples,\nOf both the Sicils and Jerusalem,\nYet not so wealthy as an English yeoman.\nHath that poor monarch taught thee to insult?\nIt needs not, nor it boots thee not, proud queen,\nUnless the adage must be verified,\nThat beggars mounted run their horse to death.\n'Tis beauty that doth oft make women proud;\nBut, God he knows, thy share thereof is small:\n'Tis virtue that doth make them most admired;\nThe contrary doth make thee wonder'd at:\n'Tis government that makes them seem divine;\nThe want thereof makes thee abominable:\nThou art as opposite to every good\nAs the Antipodes are unto us,\nOr as the south to the septentrion.\nO tiger's heart wrapt in a woman's hide!\nHow couldst thou drain the life-blood of the child,\nTo bid the father wipe his eyes withal,\nAnd yet be seen to bear a woman's face?\nWomen are soft, mild, pitiful and flexible;\nThou stern, obdurate, flinty, rough, remorseless.\nBids't thou me rage? why, now thou hast thy wish:\nWouldst have me weep? why, now thou hast thy will:\nFor raging wind blows up incessant showers,\nAnd when the rage allays, the rain begins.\nThese tears are my sweet Rutland's obsequies:\nAnd every drop cries vengeance for his death,\n'Gainst thee, fell Clifford, and thee, false\nFrenchwoman.\n\nNORTHUMBERLAND:\nBeshrew me, but his passion moves me so\nThat hardly can I cheque my eyes from tears.\n\nYORK:\nThat face of his the hungry cannibals\nWould not have touch'd, would not have stain'd with blood:\nBut you are more inhuman, more inexorable,\nO, ten times more, than tigers of Hyrcania.\nSee, ruthless queen, a hapless father's tears:\nThis cloth thou dip'dst in blood of my sweet boy,\nAnd I with tears do wash the blood away.\nKeep thou the napkin, and go boast of this:\nAnd if thou tell'st the heavy story right,\nUpon my soul, the hearers will shed tears;\nYea even my foes will shed fast-falling tears,\nAnd say 'Alas, it was a piteous deed!'\nThere, take the crown, and, with the crown, my curse;\nAnd in thy need such comfort come to thee\nAs now I reap at thy too cruel hand!\nHard-hearted Clifford, take me from the world:\nMy soul to heaven, my blood upon your heads!\n\nNORTHUMBERLAND:\nHad he been slaughter-man to all my kin,\nI should not for my life but weep with him.\nTo see how inly sorrow gripes his soul.\n\nQUEEN MARGARET:\nWhat, weeping-ripe, my Lord Northumberland?\nThink but upon the wrong he did us all,\nAnd that will quickly dry thy melting tears.\n\nCLIFFORD:\nHere's for my oath, here's for my father's death.\n\nQUEEN MARGARET:\nAnd here's to right our gentle-hearted king.\n\nYORK:\nOpen Thy gate of mercy, gracious God!\nMy soul flies through these wounds to seek out Thee.\n\nQUEEN MARGARET:\nOff with his head, and set it on York gates;\nSo York may overlook the town of York.\n3 KING HENRY VI\n\nEDWARD:\nI wonder how our princely father 'scaped,\nOr whether he be 'scaped away or no\nFrom Clifford's and Northumberland's pursuit:\nHad he been ta'en, we should have heard the news;\nHad he been slain, we should have heard the news;\nOr had he 'scaped, methinks we should have heard\nThe happy tidings of his good escape.\nHow fares my brother? why is he so sad?\n\nRICHARD:\nI cannot joy, until I be resolved\nWhere our right valiant father is become.\nI saw him in the battle range about;\nAnd watch'd him how he singled Clifford forth.\nMethought he bore him in the thickest troop\nAs doth a lion in a herd of neat;\nOr as a bear, encompass'd round with dogs,\nWho having pinch'd a few and made them cry,\nThe rest stand all aloof, and bark at him.\nSo fared our father with his enemies;\nSo fled his enemies my warlike father:\nMethinks, 'tis prize enough to be his son.\nSee how the morning opes her golden gates,\nAnd takes her farewell of the glorious sun!\nHow well resembles it the prime of youth,\nTrimm'd like a younker prancing to his love!\n\nEDWARD:\nDazzle mine eyes, or do I see three suns?\n\nRICHARD:\nThree glorious suns, each one a perfect sun;\nNot separated with the racking clouds,\nBut sever'd in a pale clear-shining sky.\nSee, see! they join, embrace, and seem to kiss,\nAs if they vow'd some league inviolable:\nNow are they but one lamp, one light, one sun.\nIn this the heaven figures some event.\n\nEDWARD:\n'Tis wondrous strange, the like yet never heard of.\nI think it cites us, brother, to the field,\nThat we, the sons of brave Plantagenet,\nEach one already blazing by our meeds,\nShould notwithstanding join our lights together\nAnd over-shine the earth as this the world.\nWhate'er it bodes, henceforward will I bear\nUpon my target three fair-shining suns.\n\nRICHARD:\nNay, bear three daughters: by your leave I speak it,\nYou love the breeder better than the male.\nBut what art thou, whose heavy looks foretell\nSome dreadful story hanging on thy tongue?\n\nMessenger:\nAh, one that was a woful looker-on\nWhen as the noble Duke of York was slain,\nYour princely father and my loving lord!\n\nEDWARD:\nO, speak no more, for I have heard too much.\n\nRICHARD:\nSay how he died, for I will hear it all.\n\nMessenger:\nEnvironed he was with many foes,\nAnd stood against them, as the hope of Troy\nAgainst the Greeks that would have enter'd Troy.\nBut Hercules himself must yield to odds;\nAnd many strokes, though with a little axe,\nHew down and fell the hardest-timber'd oak.\nBy many hands your father was subdued;\nBut only slaughter'd by the ireful arm\nOf unrelenting Clifford and the queen,\nWho crown'd the gracious duke in high despite,\nLaugh'd in his face; and when with grief he wept,\nThe ruthless queen gave him to dry his cheeks\nA napkin steeped in the harmless blood\nOf sweet young Rutland, by rough Clifford slain:\nAnd after many scorns, many foul taunts,\nThey took his head, and on the gates of York\nThey set the same; and there it doth remain,\nThe saddest spectacle that e'er I view'd.\n\nEDWARD:\nSweet Duke of York, our prop to lean upon,\nNow thou art gone, we have no staff, no stay.\nO Clifford, boisterous Clifford! thou hast slain\nThe flower of Europe for his chivalry;\nAnd treacherously hast thou vanquish'd him,\nFor hand to hand he would have vanquish'd thee.\nNow my soul's palace is become a prison:\nAh, would she break from hence, that this my body\nMight in the ground be closed up in rest!\nFor never henceforth shall I joy again,\nNever, O never shall I see more joy!\n\nRICHARD:\nI cannot weep; for all my body's moisture\nScarce serves to quench my furnace-burning heart:\nNor can my tongue unload my heart's great burthen;\nFor selfsame wind that I should speak withal\nIs kindling coals that fires all my breast,\nAnd burns me up with flames that tears would quench.\nTo weep is to make less the depth of grief:\nTears then for babes; blows and revenge for me\nRichard, I bear thy name; I'll venge thy death,\nOr die renowned by attempting it.\n\nEDWARD:\nHis name that valiant duke hath left with thee;\nHis dukedom and his chair with me is left.\n\nRICHARD:\nNay, if thou be that princely eagle's bird,\nShow thy descent by gazing 'gainst the sun:\nFor chair and dukedom, throne and kingdom say;\nEither that is thine, or else thou wert not his.\n\nWARWICK:\nHow now, fair lords! What fare? what news abroad?\n\nRICHARD:\nGreat Lord of Warwick, if we should recount\nOur baleful news, and at each word's deliverance\nStab poniards in our flesh till all were told,\nThe words would add more anguish than the wounds.\nO valiant lord, the Duke of York is slain!\n\nEDWARD:\nO Warwick, Warwick! that Plantagenet,\nWhich held three dearly as his soul's redemption,\nIs by the stern Lord Clifford done to death.\n\nWARWICK:\nTen days ago I drown'd these news in tears;\nAnd now, to add more measure to your woes,\nI come to tell you things sith then befall'n.\nAfter the bloody fray at Wakefield fought,\nWhere your brave father breathed his latest gasp,\nTidings, as swiftly as the posts could run,\nWere brought me of your loss and his depart.\nI, then in London keeper of the king,\nMuster'd my soldiers, gather'd flocks of friends,\nAnd very well appointed, as I thought,\nMarch'd toward Saint Alban's to intercept the queen,\nBearing the king in my behalf along;\nFor by my scouts I was advertised\nThat she was coming with a full intent\nTo dash our late decree in parliament\nTouching King Henry's oath and your succession.\nShort tale to make, we at Saint Alban's met\nOur battles join'd, and both sides fiercely fought:\nBut whether 'twas the coldness of the king,\nWho look'd full gently on his warlike queen,\nThat robb'd my soldiers of their heated spleen;\nOr whether 'twas report of her success;\nOr more than common fear of Clifford's rigour,\nWho thunders to his captives blood and death,\nI cannot judge: but to conclude with truth,\nTheir weapons like to lightning came and went;\nOur soldiers', like the night-owl's lazy flight,\nOr like an idle thresher with a flail,\nFell gently down, as if they struck their friends.\nI cheer'd them up with justice of our cause,\nWith promise of high pay and great rewards:\nBut all in vain; they had no heart to fight,\nAnd we in them no hope to win the day;\nSo that we fled; the king unto the queen;\nLord George your brother, Norfolk and myself,\nIn haste, post-haste, are come to join with you:\nFor in the marches here we heard you were,\nMaking another head to fight again.\n\nEDWARD:\nWhere is the Duke of Norfolk, gentle Warwick?\nAnd when came George from Burgundy to England?\n\nWARWICK:\nSome six miles off the duke is with the soldiers;\nAnd for your brother, he was lately sent\nFrom your kind aunt, Duchess of Burgundy,\nWith aid of soldiers to this needful war.\n\nRICHARD:\n'Twas odds, belike, when valiant Warwick fled:\nOft have I heard his praises in pursuit,\nBut ne'er till now his scandal of retire.\n\nWARWICK:\nNor now my scandal, Richard, dost thou hear;\nFor thou shalt know this strong right hand of mine\nCan pluck the diadem from faint Henry's head,\nAnd wring the awful sceptre from his fist,\nWere he as famous and as bold in war\nAs he is famed for mildness, peace, and prayer.\n\nRICHARD:\nI know it well, Lord Warwick; blame me not:\n'Tis love I bear thy glories makes me speak.\nBut in this troublous time what's to be done?\nShall we go throw away our coats of steel,\nAnd wrap our bodies in black mourning gowns,\nNumbering our Ave-Maries with our beads?\nOr shall we on the helmets of our foes\nTell our devotion with revengeful arms?\nIf for the last, say ay, and to it, lords.\n\nWARWICK:\nWhy, therefore Warwick came to seek you out;\nAnd therefore comes my brother Montague.\nAttend me, lords. The proud insulting queen,\nWith Clifford and the haught Northumberland,\nAnd of their feather many more proud birds,\nHave wrought the easy-melting king like wax.\nHe swore consent to your succession,\nHis oath enrolled in the parliament;\nAnd now to London all the crew are gone,\nTo frustrate both his oath and what beside\nMay make against the house of Lancaster.\nTheir power, I think, is thirty thousand strong:\nNow, if the help of Norfolk and myself,\nWith all the friends that thou, brave Earl of March,\nAmongst the loving Welshmen canst procure,\nWill but amount to five and twenty thousand,\nWhy, Via! to London will we march amain,\nAnd once again bestride our foaming steeds,\nAnd once again cry 'Charge upon our foes!'\nBut never once again turn back and fly.\n\nRICHARD:\nAy, now methinks I hear great Warwick speak:\nNe'er may he live to see a sunshine day,\nThat cries 'Retire,' if Warwick bid him stay.\n\nEDWARD:\nLord Warwick, on thy shoulder will I lean;\nAnd when thou fail'st--as God forbid the hour!--\nMust Edward fall, which peril heaven forfend!\n\nWARWICK:\nNo longer Earl of March, but Duke of York:\nThe next degree is England's royal throne;\nFor King of England shalt thou be proclaim'd\nIn every borough as we pass along;\nAnd he that throws not up his cap for joy\nShall for the fault make forfeit of his head.\nKing Edward, valiant Richard, Montague,\nStay we no longer, dreaming of renown,\nBut sound the trumpets, and about our task.\n\nRICHARD:\nThen, Clifford, were thy heart as hard as steel,\nAs thou hast shown it flinty by thy deeds,\nI come to pierce it, or to give thee mine.\n\nEDWARD:\nThen strike up drums: God and Saint George for us!\n\nWARWICK:\nHow now! what news?\n\nMessenger:\nThe Duke of Norfolk sends you word by me,\nThe queen is coming with a puissant host;\nAnd craves your company for speedy counsel.\n\nWARWICK:\nWhy then it sorts, brave warriors, let's away.\n3 KING HENRY VI\n\nQUEEN MARGARET:\nWelcome, my lord, to this brave town of York.\nYonder's the head of that arch-enemy\nThat sought to be encompass'd with your crown:\nDoth not the object cheer your heart, my lord?\n\nKING HENRY VI:\nAy, as the rocks cheer them that fear their wreck:\nTo see this sight, it irks my very soul.\nWithhold revenge, dear God! 'tis not my fault,\nNor wittingly have I infringed my vow.\n\nCLIFFORD:\nMy gracious liege, this too much lenity\nAnd harmful pity must be laid aside.\nTo whom do lions cast their gentle looks?\nNot to the beast that would usurp their den.\nWhose hand is that the forest bear doth lick?\nNot his that spoils her young before her face.\nWho 'scapes the lurking serpent's mortal sting?\nNot he that sets his foot upon her back.\nThe smallest worm will turn being trodden on,\nAnd doves will peck in safeguard of their brood.\nAmbitious York doth level at thy crown,\nThou smiling while he knit his angry brows:\nHe, but a duke, would have his son a king,\nAnd raise his issue, like a loving sire;\nThou, being a king, blest with a goodly son,\nDidst yield consent to disinherit him,\nWhich argued thee a most unloving father.\nUnreasonable creatures feed their young;\nAnd though man's face be fearful to their eyes,\nYet, in protection of their tender ones,\nWho hath not seen them, even with those wings\nWhich sometime they have used with fearful flight,\nMake war with him that climb'd unto their nest,\nOffer their own lives in their young's defence?\nFor shame, my liege, make them your precedent!\nWere it not pity that this goodly boy\nShould lose his birthright by his father's fault,\nAnd long hereafter say unto his child,\n'What my great-grandfather and his grandsire got\nMy careless father fondly gave away'?\nAh, what a shame were this! Look on the boy;\nAnd let his manly face, which promiseth\nSuccessful fortune, steel thy melting heart\nTo hold thine own and leave thine own with him.\n\nKING HENRY VI:\nFull well hath Clifford play'd the orator,\nInferring arguments of mighty force.\nBut, Clifford, tell me, didst thou never hear\nThat things ill-got had ever bad success?\nAnd happy always was it for that son\nWhose father for his hoarding went to hell?\nI'll leave my son my virtuous deeds behind;\nAnd would my father had left me no more!\nFor all the rest is held at such a rate\nAs brings a thousand-fold more care to keep\nThan in possession and jot of pleasure.\nAh, cousin York! would thy best friends did know\nHow it doth grieve me that thy head is here!\n\nQUEEN MARGARET:\nMy lord, cheer up your spirits: our foes are nigh,\nAnd this soft courage makes your followers faint.\nYou promised knighthood to our forward son:\nUnsheathe your sword, and dub him presently.\nEdward, kneel down.\n\nKING HENRY VI:\nEdward Plantagenet, arise a knight;\nAnd learn this lesson, draw thy sword in right.\n\nPRINCE:\nMy gracious father, by your kingly leave,\nI'll draw it as apparent to the crown,\nAnd in that quarrel use it to the death.\n\nCLIFFORD:\nWhy, that is spoken like a toward prince.\n\nMessenger:\nRoyal commanders, be in readiness:\nFor with a band of thirty thousand men\nComes Warwick, backing of the Duke of York;\nAnd in the towns, as they do march along,\nProclaims him king, and many fly to him:\nDarraign your battle, for they are at hand.\n\nCLIFFORD:\nI would your highness would depart the field:\nThe queen hath best success when you are absent.\n\nQUEEN MARGARET:\nAy, good my lord, and leave us to our fortune.\n\nKING HENRY VI:\nWhy, that's my fortune too; therefore I'll stay.\n\nNORTHUMBERLAND:\nBe it with resolution then to fight.\n\nPRINCE EDWARD:\nMy royal father, cheer these noble lords\nAnd hearten those that fight in your defence:\nUnsheathe your sword, good father; cry 'Saint George!'\n\nEDWARD:\nNow, perjured Henry! wilt thou kneel for grace,\nAnd set thy diadem upon my head;\nOr bide the mortal fortune of the field?\n\nQUEEN MARGARET:\nGo, rate thy minions, proud insulting boy!\nBecomes it thee to be thus bold in terms\nBefore thy sovereign and thy lawful king?\n\nEDWARD:\nI am his king, and he should bow his knee;\nI was adopted heir by his consent:\nSince when, his oath is broke; for, as I hear,\nYou, that are king, though he do wear the crown,\nHave caused him, by new act of parliament,\nTo blot out me, and put his own son in.\n\nCLIFFORD:\nAnd reason too:\nWho should succeed the father but the son?\n\nRICHARD:\nAre you there, butcher? O, I cannot speak!\n\nCLIFFORD:\nAy, crook-back, here I stand to answer thee,\nOr any he the proudest of thy sort.\n\nRICHARD:\n'Twas you that kill'd young Rutland, was it not?\n\nCLIFFORD:\nAy, and old York, and yet not satisfied.\n\nRICHARD:\nFor God's sake, lords, give signal to the fight.\n\nWARWICK:\nWhat say'st thou, Henry, wilt thou yield the crown?\n\nQUEEN MARGARET:\nWhy, how now, long-tongued Warwick! dare you speak?\nWhen you and I met at Saint Alban's last,\nYour legs did better service than your hands.\n\nWARWICK:\nThen 'twas my turn to fly, and now 'tis thine.\n\nCLIFFORD:\nYou said so much before, and yet you fled.\n\nWARWICK:\n'Twas not your valour, Clifford, drove me thence.\n\nNORTHUMBERLAND:\nNo, nor your manhood that durst make you stay.\n\nRICHARD:\nNorthumberland, I hold thee reverently.\nBreak off the parley; for scarce I can refrain\nThe execution of my big-swoln heart\nUpon that Clifford, that cruel child-killer.\n\nCLIFFORD:\nI slew thy father, call'st thou him a child?\n\nRICHARD:\nAy, like a dastard and a treacherous coward,\nAs thou didst kill our tender brother Rutland;\nBut ere sunset I'll make thee curse the deed.\n\nKING HENRY VI:\nHave done with words, my lords, and hear me speak.\n\nQUEEN MARGARET:\nDefy them then, or else hold close thy lips.\n\nKING HENRY VI:\nI prithee, give no limits to my tongue:\nI am a king, and privileged to speak.\n\nCLIFFORD:\nMy liege, the wound that bred this meeting here\nCannot be cured by words; therefore be still.\n\nRICHARD:\nThen, executioner, unsheathe thy sword:\nBy him that made us all, I am resolved\nthat Clifford's manhood lies upon his tongue.\n\nEDWARD:\nSay, Henry, shall I have my right, or no?\nA thousand men have broke their fasts to-day,\nThat ne'er shall dine unless thou yield the crown.\n\nWARWICK:\nIf thou deny, their blood upon thy head;\nFor York in justice puts his armour on.\n\nPRINCE EDWARD:\nIf that be right which Warwick says is right,\nThere is no wrong, but every thing is right.\n\nRICHARD:\nWhoever got thee, there thy mother stands;\nFor, well I wot, thou hast thy mother's tongue.\n\nQUEEN MARGARET:\nBut thou art neither like thy sire nor dam;\nBut like a foul mis-shapen stigmatic,\nMark'd by the destinies to be avoided,\nAs venom toads, or lizards' dreadful stings.\n\nRICHARD:\nIron of Naples hid with English gilt,\nWhose father bears the title of a king,--\nAs if a channel should be call'd the sea,--\nShamest thou not, knowing whence thou art extraught,\nTo let thy tongue detect thy base-born heart?\n\nEDWARD:\nA wisp of straw were worth a thousand crowns,\nTo make this shameless callet know herself.\nHelen of Greece was fairer far than thou,\nAlthough thy husband may be Menelaus;\nAnd ne'er was Agamemnon's brother wrong'd\nBy that false woman, as this king by thee.\nHis father revell'd in the heart of France,\nAnd tamed the king, and made the dauphin stoop;\nAnd had he match'd according to his state,\nHe might have kept that glory to this day;\nBut when he took a beggar to his bed,\nAnd graced thy poor sire with his bridal-day,\nEven then that sunshine brew'd a shower for him,\nThat wash'd his father's fortunes forth of France,\nAnd heap'd sedition on his crown at home.\nFor what hath broach'd this tumult but thy pride?\nHadst thou been meek, our title still had slept;\nAnd we, in pity of the gentle king,\nHad slipp'd our claim until another age.\n\nGEORGE:\nBut when we saw our sunshine made thy spring,\nAnd that thy summer bred us no increase,\nWe set the axe to thy usurping root;\nAnd though the edge hath something hit ourselves,\nYet, know thou, since we have begun to strike,\nWe'll never leave till we have hewn thee down,\nOr bathed thy growing with our heated bloods.\n\nEDWARD:\nAnd, in this resolution, I defy thee;\nNot willing any longer conference,\nSince thou deniest the gentle king to speak.\nSound trumpets! let our bloody colours wave!\nAnd either victory, or else a grave.\n\nQUEEN MARGARET:\nStay, Edward.\n\nEDWARD:\nNo, wrangling woman, we'll no longer stay:\nThese words will cost ten thousand lives this day.\n3 KING HENRY VI\n\nWARWICK:\nForspent with toil, as runners with a race,\nI lay me down a little while to breathe;\nFor strokes received, and many blows repaid,\nHave robb'd my strong-knit sinews of their strength,\nAnd spite of spite needs must I rest awhile.\n\nEDWARD:\nSmile, gentle heaven! or strike, ungentle death!\nFor this world frowns, and Edward's sun is clouded.\n\nWARWICK:\nHow now, my lord! what hap? what hope of good?\n\nGEORGE:\nOur hap is loss, our hope but sad despair;\nOur ranks are broke, and ruin follows us:\nWhat counsel give you? whither shall we fly?\n\nEDWARD:\nBootless is flight, they follow us with wings;\nAnd weak we are and cannot shun pursuit.\n\nRICHARD:\nAh, Warwick, why hast thou withdrawn thyself?\nThy brother's blood the thirsty earth hath drunk,\nBroach'd with the steely point of Clifford's lance;\nAnd in the very pangs of death he cried,\nLike to a dismal clangour heard from far,\n'Warwick, revenge! brother, revenge my death!'\nSo, underneath the belly of their steeds,\nThat stain'd their fetlocks in his smoking blood,\nThe noble gentleman gave up the ghost.\n\nWARWICK:\nThen let the earth be drunken with our blood:\nI'll kill my horse, because I will not fly.\nWhy stand we like soft-hearted women here,\nWailing our losses, whiles the foe doth rage;\nAnd look upon, as if the tragedy\nWere play'd in jest by counterfeiting actors?\nHere on my knee I vow to God above,\nI'll never pause again, never stand still,\nTill either death hath closed these eyes of mine\nOr fortune given me measure of revenge.\n\nEDWARD:\nO Warwick, I do bend my knee with thine;\nAnd in this vow do chain my soul to thine!\nAnd, ere my knee rise from the earth's cold face,\nI throw my hands, mine eyes, my heart to thee,\nThou setter up and plucker down of kings,\nBeseeching thee, if with they will it stands\nThat to my foes this body must be prey,\nYet that thy brazen gates of heaven may ope,\nAnd give sweet passage to my sinful soul!\nNow, lords, take leave until we meet again,\nWhere'er it be, in heaven or in earth.\n\nRICHARD:\nBrother, give me thy hand; and, gentle Warwick,\nLet me embrace thee in my weary arms:\nI, that did never weep, now melt with woe\nThat winter should cut off our spring-time so.\n\nWARWICK:\nAway, away! Once more, sweet lords farewell.\n\nGEORGE:\nYet let us all together to our troops,\nAnd give them leave to fly that will not stay;\nAnd call them pillars that will stand to us;\nAnd, if we thrive, promise them such rewards\nAs victors wear at the Olympian games:\nThis may plant courage in their quailing breasts;\nFor yet is hope of life and victory.\nForslow no longer, make we hence amain.\n3 KING HENRY VI\n\nRICHARD:\nNow, Clifford, I have singled thee alone:\nSuppose this arm is for the Duke of York,\nAnd this for Rutland; both bound to revenge,\nWert thou environ'd with a brazen wall.\n\nCLIFFORD:\nNow, Richard, I am with thee here alone:\nThis is the hand that stabb'd thy father York;\nAnd this the hand that slew thy brother Rutland;\nAnd here's the heart that triumphs in their death\nAnd cheers these hands that slew thy sire and brother\nTo execute the like upon thyself;\nAnd so, have at thee!\n\nRICHARD:\nNay Warwick, single out some other chase;\nFor I myself will hunt this wolf to death.\n3 KING HENRY VI\n\nKING HENRY VI:\nThis battle fares like to the morning's war,\nWhen dying clouds contend with growing light,\nWhat time the shepherd, blowing of his nails,\nCan neither call it perfect day nor night.\nNow sways it this way, like a mighty sea\nForced by the tide to combat with the wind;\nNow sways it that way, like the selfsame sea\nForced to retire by fury of the wind:\nSometime the flood prevails, and then the wind;\nNow one the better, then another best;\nBoth tugging to be victors, breast to breast,\nYet neither conqueror nor conquered:\nSo is the equal of this fell war.\nHere on this molehill will I sit me down.\nTo whom God will, there be the victory!\nFor Margaret my queen, and Clifford too,\nHave chid me from the battle; swearing both\nThey prosper best of all when I am thence.\nWould I were dead! if God's good will were so;\nFor what is in this world but grief and woe?\nO God! methinks it were a happy life,\nTo be no better than a homely swain;\nTo sit upon a hill, as I do now,\nTo carve out dials quaintly, point by point,\nThereby to see the minutes how they run,\nHow many make the hour full complete;\nHow many hours bring about the day;\nHow many days will finish up the year;\nHow many years a mortal man may live.\nWhen this is known, then to divide the times:\nSo many hours must I tend my flock;\nSo many hours must I take my rest;\nSo many hours must I contemplate;\nSo many hours must I sport myself;\nSo many days my ewes have been with young;\nSo many weeks ere the poor fools will ean:\nSo many years ere I shall shear the fleece:\nSo minutes, hours, days, months, and years,\nPass'd over to the end they were created,\nWould bring white hairs unto a quiet grave.\nAh, what a life were this! how sweet! how lovely!\nGives not the hawthorn-bush a sweeter shade\nTo shepherds looking on their silly sheep,\nThan doth a rich embroider'd canopy\nTo kings that fear their subjects' treachery?\nO, yes, it doth; a thousand-fold it doth.\nAnd to conclude, the shepherd's homely curds,\nHis cold thin drink out of his leather bottle.\nHis wonted sleep under a fresh tree's shade,\nAll which secure and sweetly he enjoys,\nIs far beyond a prince's delicates,\nHis viands sparkling in a golden cup,\nHis body couched in a curious bed,\nWhen care, mistrust, and treason waits on him.\n\nSon:\nIll blows the wind that profits nobody.\nThis man, whom hand to hand I slew in fight,\nMay be possessed with some store of crowns;\nAnd I, that haply take them from him now,\nMay yet ere night yield both my life and them\nTo some man else, as this dead man doth me.\nWho's this? O God! it is my father's face,\nWhom in this conflict I unwares have kill'd.\nO heavy times, begetting such events!\nFrom London by the king was I press'd forth;\nMy father, being the Earl of Warwick's man,\nCame on the part of York, press'd by his master;\nAnd I, who at his hands received my life, him\nHave by my hands of life bereaved him.\nPardon me, God, I knew not what I did!\nAnd pardon, father, for I knew not thee!\nMy tears shall wipe away these bloody marks;\nAnd no more words till they have flow'd their fill.\n\nKING HENRY VI:\nO piteous spectacle! O bloody times!\nWhiles lions war and battle for their dens,\nPoor harmless lambs abide their enmity.\nWeep, wretched man, I'll aid thee tear for tear;\nAnd let our hearts and eyes, like civil war,\nBe blind with tears, and break o'ercharged with grief.\n\nFather:\nThou that so stoutly hast resisted me,\nGive me thy gold, if thou hast any gold:\nFor I have bought it with an hundred blows.\nBut let me see: is this our foeman's face?\nAh, no, no, no, it is mine only son!\nAh, boy, if any life be left in thee,\nThrow up thine eye! see, see what showers arise,\nBlown with the windy tempest of my heart,\nUpon thy words, that kill mine eye and heart!\nO, pity, God, this miserable age!\nWhat stratagems, how fell, how butcherly,\nErroneous, mutinous and unnatural,\nThis deadly quarrel daily doth beget!\nO boy, thy father gave thee life too soon,\nAnd hath bereft thee of thy life too late!\n\nKING HENRY VI:\nWoe above woe! grief more than common grief!\nO that my death would stay these ruthful deeds!\nO pity, pity, gentle heaven, pity!\nThe red rose and the white are on his face,\nThe fatal colours of our striving houses:\nThe one his purple blood right well resembles;\nThe other his pale cheeks, methinks, presenteth:\nWither one rose, and let the other flourish;\nIf you contend, a thousand lives must wither.\n\nSon:\nHow will my mother for a father's death\nTake on with me and ne'er be satisfied!\n\nFather:\nHow will my wife for slaughter of my son\nShed seas of tears and ne'er be satisfied!\n\nKING HENRY VI:\nHow will the country for these woful chances\nMisthink the king and not be satisfied!\n\nSon:\nWas ever son so rued a father's death?\n\nFather:\nWas ever father so bemoan'd his son?\n\nKING HENRY VI:\nWas ever king so grieved for subjects' woe?\nMuch is your sorrow; mine ten times so much.\n\nSon:\nI'll bear thee hence, where I may weep my fill.\n\nFather:\nThese arms of mine shall be thy winding-sheet;\nMy heart, sweet boy, shall be thy sepulchre,\nFor from my heart thine image ne'er shall go;\nMy sighing breast shall be thy funeral bell;\nAnd so obsequious will thy father be,\nEven for the loss of thee, having no more,\nAs Priam was for all his valiant sons.\nI'll bear thee hence; and let them fight that will,\nFor I have murdered where I should not kill.\n\nKING HENRY VI:\nSad-hearted men, much overgone with care,\nHere sits a king more woful than you are.\n\nPRINCE EDWARD:\nFly, father, fly! for all your friends are fled,\nAnd Warwick rages like a chafed bull:\nAway! for death doth hold us in pursuit.\n\nQUEEN MARGARET:\nMount you, my lord; towards Berwick post amain:\nEdward and Richard, like a brace of greyhounds\nHaving the fearful flying hare in sight,\nWith fiery eyes sparkling for very wrath,\nAnd bloody steel grasp'd in their ireful hands,\nAre at our backs; and therefore hence amain.\n\nEXETER:\nAway! for vengeance comes along with them:\nNay, stay not to expostulate, make speed;\nOr else come after: I'll away before.\n\nKING HENRY VI:\nNay, take me with thee, good sweet Exeter:\nNot that I fear to stay, but love to go\nWhither the queen intends. Forward; away!\n3 KING HENRY VI\n\nCLIFFORD:\nHere burns my candle out; ay, here it dies,\nWhich, whiles it lasted, gave King Henry light.\nO Lancaster, I fear thy overthrow\nMore than my body's parting with my soul!\nMy love and fear glued many friends to thee;\nAnd, now I fall, thy tough commixture melts.\nImpairing Henry, strengthening misproud York,\nThe common people swarm like summer flies;\nAnd whither fly the gnats but to the sun?\nAnd who shines now but Henry's enemies?\nO Phoebus, hadst thou never given consent\nThat Phaethon should cheque thy fiery steeds,\nThy burning car never had scorch'd the earth!\nAnd, Henry, hadst thou sway'd as kings should do,\nOr as thy father and his father did,\nGiving no ground unto the house of York,\nThey never then had sprung like summer flies;\nI and ten thousand in this luckless realm\nHad left no mourning widows for our death;\nAnd thou this day hadst kept thy chair in peace.\nFor what doth cherish weeds but gentle air?\nAnd what makes robbers bold but too much lenity?\nBootless are plaints, and cureless are my wounds;\nNo way to fly, nor strength to hold out flight:\nThe foe is merciless, and will not pity;\nFor at their hands I have deserved no pity.\nThe air hath got into my deadly wounds,\nAnd much effuse of blood doth make me faint.\nCome, York and Richard, Warwick and the rest;\nI stabb'd your fathers' bosoms, split my breast.\n\nEDWARD:\nNow breathe we, lords: good fortune bids us pause,\nAnd smooth the frowns of war with peaceful looks.\nSome troops pursue the bloody-minded queen,\nThat led calm Henry, though he were a king,\nAs doth a sail, fill'd with a fretting gust,\nCommand an argosy to stem the waves.\nBut think you, lords, that Clifford fled with them?\n\nWARWICK:\nNo, 'tis impossible he should escape,\nFor, though before his face I speak the words\nYour brother Richard mark'd him for the grave:\nAnd wheresoe'er he is, he's surely dead.\n\nEDWARD:\nWhose soul is that which takes her heavy leave?\n\nRICHARD:\nA deadly groan, like life and death's departing.\n\nEDWARD:\nSee who it is: and, now the battle's ended,\nIf friend or foe, let him be gently used.\n\nRICHARD:\nRevoke that doom of mercy, for 'tis Clifford;\nWho not contented that he lopp'd the branch\nIn hewing Rutland when his leaves put forth,\nBut set his murdering knife unto the root\nFrom whence that tender spray did sweetly spring,\nI mean our princely father, Duke of York.\n\nWARWICK:\nFrom off the gates of York fetch down the head,\nYour father's head, which Clifford placed there;\nInstead whereof let this supply the room:\nMeasure for measure must be answered.\n\nEDWARD:\nBring forth that fatal screech-owl to our house,\nThat nothing sung but death to us and ours:\nNow death shall stop his dismal threatening sound,\nAnd his ill-boding tongue no more shall speak.\n\nWARWICK:\nI think his understanding is bereft.\nSpeak, Clifford, dost thou know who speaks to thee?\nDark cloudy death o'ershades his beams of life,\nAnd he nor sees nor hears us what we say.\n\nRICHARD:\nO, would he did! and so perhaps he doth:\n'Tis but his policy to counterfeit,\nBecause he would avoid such bitter taunts\nWhich in the time of death he gave our father.\n\nGEORGE:\nIf so thou think'st, vex him with eager words.\n\nRICHARD:\nClifford, ask mercy and obtain no grace.\n\nEDWARD:\nClifford, repent in bootless penitence.\n\nWARWICK:\nClifford, devise excuses for thy faults.\n\nGEORGE:\nWhile we devise fell tortures for thy faults.\n\nRICHARD:\nThou didst love York, and I am son to York.\n\nEDWARD:\nThou pitied'st Rutland; I will pity thee.\n\nGEORGE:\nWhere's Captain Margaret, to fence you now?\n\nWARWICK:\nThey mock thee, Clifford: swear as thou wast wont.\n\nRICHARD:\nWhat, not an oath? nay, then the world goes hard\nWhen Clifford cannot spare his friends an oath.\nI know by that he's dead; and, by my soul,\nIf this right hand would buy two hour's life,\nThat I in all despite might rail at him,\nThis hand should chop it off, and with the\nissuing blood\nStifle the villain whose unstanched thirst\nYork and young Rutland could not satisfy.\n\nWARWICK:\nAy, but he's dead: off with the traitor's head,\nAnd rear it in the place your father's stands.\nAnd now to London with triumphant march,\nThere to be crowned England's royal king:\nFrom whence shall Warwick cut the sea to France,\nAnd ask the Lady Bona for thy queen:\nSo shalt thou sinew both these lands together;\nAnd, having France thy friend, thou shalt not dread\nThe scatter'd foe that hopes to rise again;\nFor though they cannot greatly sting to hurt,\nYet look to have them buzz to offend thine ears.\nFirst will I see the coronation;\nAnd then to Brittany I'll cross the sea,\nTo effect this marriage, so it please my lord.\n\nEDWARD:\nEven as thou wilt, sweet Warwick, let it be;\nFor in thy shoulder do I build my seat,\nAnd never will I undertake the thing\nWherein thy counsel and consent is wanting.\nRichard, I will create thee Duke of Gloucester,\nAnd George, of Clarence: Warwick, as ourself,\nShall do and undo as him pleaseth best.\n\nRICHARD:\nLet me be Duke of Clarence, George of Gloucester;\nFor Gloucester's dukedom is too ominous.\n\nWARWICK:\nTut, that's a foolish observation:\nRichard, be Duke of Gloucester. Now to London,\nTo see these honours in possession.\n3 KING HENRY VI\n\nFirst Keeper:\nUnder this thick-grown brake we'll shroud ourselves;\nFor through this laund anon the deer will come;\nAnd in this covert will we make our stand,\nCulling the principal of all the deer.\n\nSecond Keeper:\nI'll stay above the hill, so both may shoot.\n\nFirst Keeper:\nThat cannot be; the noise of thy cross-bow\nWill scare the herd, and so my shoot is lost.\nHere stand we both, and aim we at the best:\nAnd, for the time shall not seem tedious,\nI'll tell thee what befell me on a day\nIn this self-place where now we mean to stand.\n\nSecond Keeper:\nHere comes a man; let's stay till he be past.\n\nKING HENRY VI:\nFrom Scotland am I stol'n, even of pure love,\nTo greet mine own land with my wishful sight.\nNo, Harry, Harry, 'tis no land of thine;\nThy place is fill'd, thy sceptre wrung from thee,\nThy balm wash'd off wherewith thou wast anointed:\nNo bending knee will call thee Caesar now,\nNo humble suitors press to speak for right,\nNo, not a man comes for redress of thee;\nFor how can I help them, and not myself?\n\nFirst Keeper:\nAy, here's a deer whose skin's a keeper's fee:\nThis is the quondam king; let's seize upon him.\n\nKING HENRY VI:\nLet me embrace thee, sour adversity,\nFor wise men say it is the wisest course.\n\nSecond Keeper:\nWhy linger we? let us lay hands upon him.\n\nFirst Keeper:\nForbear awhile; we'll hear a little more.\n\nKING HENRY VI:\nMy queen and son are gone to France for aid;\nAnd, as I hear, the great commanding Warwick\nIs thither gone, to crave the French king's sister\nTo wife for Edward: if this news be true,\nPoor queen and son, your labour is but lost;\nFor Warwick is a subtle orator,\nAnd Lewis a prince soon won with moving words.\nBy this account then Margaret may win him;\nFor she's a woman to be pitied much:\nHer sighs will make a battery in his breast;\nHer tears will pierce into a marble heart;\nThe tiger will be mild whiles she doth mourn;\nAnd Nero will be tainted with remorse,\nTo hear and see her plaints, her brinish tears.\nAy, but she's come to beg, Warwick to give;\nShe, on his left side, craving aid for Henry,\nHe, on his right, asking a wife for Edward.\nShe weeps, and says her Henry is deposed;\nHe smiles, and says his Edward is install'd;\nThat she, poor wretch, for grief can speak no more;\nWhiles Warwick tells his title, smooths the wrong,\nInferreth arguments of mighty strength,\nAnd in conclusion wins the king from her,\nWith promise of his sister, and what else,\nTo strengthen and support King Edward's place.\nO Margaret, thus 'twill be; and thou, poor soul,\nArt then forsaken, as thou went'st forlorn!\n\nSecond Keeper:\nSay, what art thou that talk'st of kings and queens?\n\nKING HENRY VI:\nMore than I seem, and less than I was born to:\nA man at least, for less I should not be;\nAnd men may talk of kings, and why not I?\n\nSecond Keeper:\nAy, but thou talk'st as if thou wert a king.\n\nKING HENRY VI:\nWhy, so I am, in mind; and that's enough.\n\nSecond Keeper:\nBut, if thou be a king, where is thy crown?\n\nKING HENRY VI:\nMy crown is in my heart, not on my head;\nNot decked with diamonds and Indian stones,\nNor to be seen: my crown is called content:\nA crown it is that seldom kings enjoy.\n\nSecond Keeper:\nWell, if you be a king crown'd with content,\nYour crown content and you must be contented\nTo go along with us; for as we think,\nYou are the king King Edward hath deposed;\nAnd we his subjects sworn in all allegiance\nWill apprehend you as his enemy.\n\nKING HENRY VI:\nBut did you never swear, and break an oath?\n\nSecond Keeper:\nNo, never such an oath; nor will not now.\n\nKING HENRY VI:\nWhere did you dwell when I was King of England?\n\nSecond Keeper:\nHere in this country, where we now remain.\n\nKING HENRY VI:\nI was anointed king at nine months old;\nMy father and my grandfather were kings,\nAnd you were sworn true subjects unto me:\nAnd tell me, then, have you not broke your oaths?\n\nFirst Keeper:\nNo;\nFor we were subjects but while you were king.\n\nKING HENRY VI:\nWhy, am I dead? do I not breathe a man?\nAh, simple men, you know not what you swear!\nLook, as I blow this feather from my face,\nAnd as the air blows it to me again,\nObeying with my wind when I do blow,\nAnd yielding to another when it blows,\nCommanded always by the greater gust;\nSuch is the lightness of you common men.\nBut do not break your oaths; for of that sin\nMy mild entreaty shall not make you guilty.\nGo where you will, the king shall be commanded;\nAnd be you kings, command, and I'll obey.\n\nFirst Keeper:\nWe are true subjects to the king, King Edward.\n\nKING HENRY VI:\nSo would you be again to Henry,\nIf he were seated as King Edward is.\n\nFirst Keeper:\nWe charge you, in God's name, and the king's,\nTo go with us unto the officers.\n\nKING HENRY VI:\nIn God's name, lead; your king's name be obey'd:\nAnd what God will, that let your king perform;\nAnd what he will, I humbly yield unto.\n3 KING HENRY VI\n\nKING EDWARD IV:\nBrother of Gloucester, at Saint Alban's field\nThis lady's husband, Sir Richard Grey, was slain,\nHis lands then seized on by the conqueror:\nHer suit is now to repossess those lands;\nWhich we in justice cannot well deny,\nBecause in quarrel of the house of York\nThe worthy gentleman did lose his life.\n\nGLOUCESTER:\nYour highness shall do well to grant her suit;\nIt were dishonour to deny it her.\n\nKING EDWARD IV:\nIt were no less; but yet I'll make a pause.\n\nGLOUCESTER:\n\nCLARENCE:\n\nGLOUCESTER:\n\nKING EDWARD IV:\nWidow, we will consider of your suit;\nAnd come some other time to know our mind.\n\nLADY GREY:\nRight gracious lord, I cannot brook delay:\nMay it please your highness to resolve me now;\nAnd what your pleasure is, shall satisfy me.\n\nGLOUCESTER:\n\nCLARENCE:\n\nGLOUCESTER:\n\nKING EDWARD IV:\nHow many children hast thou, widow? tell me.\n\nCLARENCE:\n\nGLOUCESTER:\n\nLADY GREY:\nThree, my most gracious lord.\n\nGLOUCESTER:\n\nKING EDWARD IV:\n'Twere pity they should lose their father's lands.\n\nLADY GREY:\nBe pitiful, dread lord, and grant it then.\n\nKING EDWARD IV:\nLords, give us leave: I'll try this widow's wit.\n\nGLOUCESTER:\n\nKING EDWARD IV:\nNow tell me, madam, do you love your children?\n\nLADY GREY:\nAy, full as dearly as I love myself.\n\nKING EDWARD IV:\nAnd would you not do much to do them good?\n\nLADY GREY:\nTo do them good, I would sustain some harm.\n\nKING EDWARD IV:\nThen get your husband's lands, to do them good.\n\nLADY GREY:\nTherefore I came unto your majesty.\n\nKING EDWARD IV:\nI'll tell you how these lands are to be got.\n\nLADY GREY:\nSo shall you bind me to your highness' service.\n\nKING EDWARD IV:\nWhat service wilt thou do me, if I give them?\n\nLADY GREY:\nWhat you command, that rests in me to do.\n\nKING EDWARD IV:\nBut you will take exceptions to my boon.\n\nLADY GREY:\nNo, gracious lord, except I cannot do it.\n\nKING EDWARD IV:\nAy, but thou canst do what I mean to ask.\n\nLADY GREY:\nWhy, then I will do what your grace commands.\n\nGLOUCESTER:\n\nCLARENCE:\n\nLADY GREY:\nWhy stops my lord, shall I not hear my task?\n\nKING EDWARD IV:\nAn easy task; 'tis but to love a king.\n\nLADY GREY:\nThat's soon perform'd, because I am a subject.\n\nKING EDWARD IV:\nWhy, then, thy husband's lands I freely give thee.\n\nLADY GREY:\nI take my leave with many thousand thanks.\n\nGLOUCESTER:\n\nKING EDWARD IV:\nBut stay thee, 'tis the fruits of love I mean.\n\nLADY GREY:\nThe fruits of love I mean, my loving liege.\n\nKING EDWARD IV:\nAy, but, I fear me, in another sense.\nWhat love, think'st thou, I sue so much to get?\n\nLADY GREY:\nMy love till death, my humble thanks, my prayers;\nThat love which virtue begs and virtue grants.\n\nKING EDWARD IV:\nNo, by my troth, I did not mean such love.\n\nLADY GREY:\nWhy, then you mean not as I thought you did.\n\nKING EDWARD IV:\nBut now you partly may perceive my mind.\n\nLADY GREY:\nMy mind will never grant what I perceive\nYour highness aims at, if I aim aright.\n\nKING EDWARD IV:\nTo tell thee plain, I aim to lie with thee.\n\nLADY GREY:\nTo tell you plain, I had rather lie in prison.\n\nKING EDWARD IV:\nWhy, then thou shalt not have thy husband's lands.\n\nLADY GREY:\nWhy, then mine honesty shall be my dower;\nFor by that loss I will not purchase them.\n\nKING EDWARD IV:\nTherein thou wrong'st thy children mightily.\n\nLADY GREY:\nHerein your highness wrongs both them and me.\nBut, mighty lord, this merry inclination\nAccords not with the sadness of my suit:\nPlease you dismiss me either with 'ay' or 'no.'\n\nKING EDWARD IV:\nAy, if thou wilt say 'ay' to my request;\nNo if thou dost say 'no' to my demand.\n\nLADY GREY:\nThen, no, my lord. My suit is at an end.\n\nGLOUCESTER:\n\nCLARENCE:\n\nKING EDWARD IV:\n\nLADY GREY:\n'Tis better said than done, my gracious lord:\nI am a subject fit to jest withal,\nBut far unfit to be a sovereign.\n\nKING EDWARD IV:\nSweet widow, by my state I swear to thee\nI speak no more than what my soul intends;\nAnd that is, to enjoy thee for my love.\n\nLADY GREY:\nAnd that is more than I will yield unto:\nI know I am too mean to be your queen,\nAnd yet too good to be your concubine.\n\nKING EDWARD IV:\nYou cavil, widow: I did mean, my queen.\n\nLADY GREY:\n'Twill grieve your grace my sons should call you father.\n\nKING EDWARD IV:\nNo more than when my daughters call thee mother.\nThou art a widow, and thou hast some children;\nAnd, by God's mother, I, being but a bachelor,\nHave other some: why, 'tis a happy thing\nTo be the father unto many sons.\nAnswer no more, for thou shalt be my queen.\n\nGLOUCESTER:\n\nCLARENCE:\n\nKING EDWARD IV:\nBrothers, you muse what chat we two have had.\n\nGLOUCESTER:\nThe widow likes it not, for she looks very sad.\n\nKING EDWARD IV:\nYou'll think it strange if I should marry her.\n\nCLARENCE:\nTo whom, my lord?\n\nKING EDWARD IV:\nWhy, Clarence, to myself.\n\nGLOUCESTER:\nThat would be ten days' wonder at the least.\n\nCLARENCE:\nThat's a day longer than a wonder lasts.\n\nGLOUCESTER:\nBy so much is the wonder in extremes.\n\nKING EDWARD IV:\nWell, jest on, brothers: I can tell you both\nHer suit is granted for her husband's lands.\n\nNobleman:\nMy gracious lord, Henry your foe is taken,\nAnd brought your prisoner to your palace gate.\n\nKING EDWARD IV:\nSee that he be convey'd unto the Tower:\nAnd go we, brothers, to the man that took him,\nTo question of his apprehension.\nWidow, go you along. Lords, use her honourably.\n\nGLOUCESTER:\nAy, Edward will use women honourably.\nWould he were wasted, marrow, bones and all,\nThat from his loins no hopeful branch may spring,\nTo cross me from the golden time I look for!\nAnd yet, between my soul's desire and me--\nThe lustful Edward's title buried--\nIs Clarence, Henry, and his son young Edward,\nAnd all the unlook'd for issue of their bodies,\nTo take their rooms, ere I can place myself:\nA cold premeditation for my purpose!\nWhy, then, I do but dream on sovereignty;\nLike one that stands upon a promontory,\nAnd spies a far-off shore where he would tread,\nWishing his foot were equal with his eye,\nAnd chides the sea that sunders him from thence,\nSaying, he'll lade it dry to have his way:\nSo do I wish the crown, being so far off;\nAnd so I chide the means that keeps me from it;\nAnd so I say, I'll cut the causes off,\nFlattering me with impossibilities.\nMy eye's too quick, my heart o'erweens too much,\nUnless my hand and strength could equal them.\nWell, say there is no kingdom then for Richard;\nWhat other pleasure can the world afford?\nI'll make my heaven in a lady's lap,\nAnd deck my body in gay ornaments,\nAnd witch sweet ladies with my words and looks.\nO miserable thought! and more unlikely\nThan to accomplish twenty golden crowns!\nWhy, love forswore me in my mother's womb:\nAnd, for I should not deal in her soft laws,\nShe did corrupt frail nature with some bribe,\nTo shrink mine arm up like a wither'd shrub;\nTo make an envious mountain on my back,\nWhere sits deformity to mock my body;\nTo shape my legs of an unequal size;\nTo disproportion me in every part,\nLike to a chaos, or an unlick'd bear-whelp\nThat carries no impression like the dam.\nAnd am I then a man to be beloved?\nO monstrous fault, to harbour such a thought!\nThen, since this earth affords no joy to me,\nBut to command, to cheque, to o'erbear such\nAs are of better person than myself,\nI'll make my heaven to dream upon the crown,\nAnd, whiles I live, to account this world but hell,\nUntil my mis-shaped trunk that bears this head\nBe round impaled with a glorious crown.\nAnd yet I know not how to get the crown,\nFor many lives stand between me and home:\nAnd I,--like one lost in a thorny wood,\nThat rends the thorns and is rent with the thorns,\nSeeking a way and straying from the way;\nNot knowing how to find the open air,\nBut toiling desperately to find it out,--\nTorment myself to catch the English crown:\nAnd from that torment I will free myself,\nOr hew my way out with a bloody axe.\nWhy, I can smile, and murder whiles I smile,\nAnd cry 'Content' to that which grieves my heart,\nAnd wet my cheeks with artificial tears,\nAnd frame my face to all occasions.\nI'll drown more sailors than the mermaid shall;\nI'll slay more gazers than the basilisk;\nI'll play the orator as well as Nestor,\nDeceive more slily than Ulysses could,\nAnd, like a Sinon, take another Troy.\nI can add colours to the chameleon,\nChange shapes with Proteus for advantages,\nAnd set the murderous Machiavel to school.\nCan I do this, and cannot get a crown?\nTut, were it farther off, I'll pluck it down.\n3 KING HENRY VI\n\nKING LEWIS XI:\nFair Queen of England, worthy Margaret,\nSit down with us: it ill befits thy state\nAnd birth, that thou shouldst stand while Lewis doth sit.\n\nQUEEN MARGARET:\nNo, mighty King of France: now Margaret\nMust strike her sail and learn awhile to serve\nWhere kings command. I was, I must confess,\nGreat Albion's queen in former golden days:\nBut now mischance hath trod my title down,\nAnd with dishonour laid me on the ground;\nWhere I must take like seat unto my fortune,\nAnd to my humble seat conform myself.\n\nKING LEWIS XI:\nWhy, say, fair queen, whence springs this deep despair?\n\nQUEEN MARGARET:\nFrom such a cause as fills mine eyes with tears\nAnd stops my tongue, while heart is drown'd in cares.\n\nKING LEWIS XI:\nWhate'er it be, be thou still like thyself,\nAnd sit thee by our side:\nYield not thy neck\nTo fortune's yoke, but let thy dauntless mind\nStill ride in triumph over all mischance.\nBe plain, Queen Margaret, and tell thy grief;\nIt shall be eased, if France can yield relief.\n\nQUEEN MARGARET:\nThose gracious words revive my drooping thoughts\nAnd give my tongue-tied sorrows leave to speak.\nNow, therefore, be it known to noble Lewis,\nThat Henry, sole possessor of my love,\nIs of a king become a banish'd man,\nAnd forced to live in Scotland a forlorn;\nWhile proud ambitious Edward Duke of York\nUsurps the regal title and the seat\nOf England's true-anointed lawful king.\nThis is the cause that I, poor Margaret,\nWith this my son, Prince Edward, Henry's heir,\nAm come to crave thy just and lawful aid;\nAnd if thou fail us, all our hope is done:\nScotland hath will to help, but cannot help;\nOur people and our peers are both misled,\nOur treasures seized, our soldiers put to flight,\nAnd, as thou seest, ourselves in heavy plight.\n\nKING LEWIS XI:\nRenowned queen, with patience calm the storm,\nWhile we bethink a means to break it off.\n\nQUEEN MARGARET:\nThe more we stay, the stronger grows our foe.\n\nKING LEWIS XI:\nThe more I stay, the more I'll succor thee.\n\nQUEEN MARGARET:\nO, but impatience waiteth on true sorrow.\nAnd see where comes the breeder of my sorrow!\n\nKING LEWIS XI:\nWhat's he approacheth boldly to our presence?\n\nQUEEN MARGARET:\nOur Earl of Warwick, Edward's greatest friend.\n\nKING LEWIS XI:\nWelcome, brave Warwick! What brings thee to France?\n\nQUEEN MARGARET:\nAy, now begins a second storm to rise;\nFor this is he that moves both wind and tide.\n\nWARWICK:\nFrom worthy Edward, King of Albion,\nMy lord and sovereign, and thy vowed friend,\nI come, in kindness and unfeigned love,\nFirst, to do greetings to thy royal person;\nAnd then to crave a league of amity;\nAnd lastly, to confirm that amity\nWith a nuptial knot, if thou vouchsafe to grant\nThat virtuous Lady Bona, thy fair sister,\nTo England's king in lawful marriage.\n\nQUEEN MARGARET:\n\nWARWICK:\n\nQUEEN MARGARET:\nKing Lewis and Lady Bona, hear me speak,\nBefore you answer Warwick. His demand\nSprings not from Edward's well-meant honest love,\nBut from deceit bred by necessity;\nFor how can tyrants safely govern home,\nUnless abroad they purchase great alliance?\nTo prove him tyrant this reason may suffice,\nThat Henry liveth still: but were he dead,\nYet here Prince Edward stands, King Henry's son.\nLook, therefore, Lewis, that by this league and marriage\nThou draw not on thy danger and dishonour;\nFor though usurpers sway the rule awhile,\nYet heavens are just, and time suppresseth wrongs.\n\nWARWICK:\nInjurious Margaret!\n\nPRINCE EDWARD:\nAnd why not queen?\n\nWARWICK:\nBecause thy father Henry did usurp;\nAnd thou no more are prince than she is queen.\n\nOXFORD:\nThen Warwick disannuls great John of Gaunt,\nWhich did subdue the greatest part of Spain;\nAnd, after John of Gaunt, Henry the Fourth,\nWhose wisdom was a mirror to the wisest;\nAnd, after that wise prince, Henry the Fifth,\nWho by his prowess conquered all France:\nFrom these our Henry lineally descends.\n\nWARWICK:\nOxford, how haps it, in this smooth discourse,\nYou told not how Henry the Sixth hath lost\nAll that which Henry Fifth had gotten?\nMethinks these peers of France should smile at that.\nBut for the rest, you tell a pedigree\nOf threescore and two years; a silly time\nTo make prescription for a kingdom's worth.\n\nOXFORD:\nWhy, Warwick, canst thou speak against thy liege,\nWhom thou obeyed'st thirty and six years,\nAnd not bewray thy treason with a blush?\n\nWARWICK:\nCan Oxford, that did ever fence the right,\nNow buckler falsehood with a pedigree?\nFor shame! leave Henry, and call Edward king.\n\nOXFORD:\nCall him my king by whose injurious doom\nMy elder brother, the Lord Aubrey Vere,\nWas done to death? and more than so, my father,\nEven in the downfall of his mellow'd years,\nWhen nature brought him to the door of death?\nNo, Warwick, no; while life upholds this arm,\nThis arm upholds the house of Lancaster.\n\nWARWICK:\nAnd I the house of York.\n\nKING LEWIS XI:\nQueen Margaret, Prince Edward, and Oxford,\nVouchsafe, at our request, to stand aside,\nWhile I use further conference with Warwick.\n\nQUEEN MARGARET:\nHeavens grant that Warwick's words bewitch him not!\n\nKING LEWIS XI:\nNow Warwick, tell me, even upon thy conscience,\nIs Edward your true king? for I were loath\nTo link with him that were not lawful chosen.\n\nWARWICK:\nThereon I pawn my credit and mine honour.\n\nKING LEWIS XI:\nBut is he gracious in the people's eye?\n\nWARWICK:\nThe more that Henry was unfortunate.\n\nKING LEWIS XI:\nThen further, all dissembling set aside,\nTell me for truth the measure of his love\nUnto our sister Bona.\n\nWARWICK:\nSuch it seems\nAs may beseem a monarch like himself.\nMyself have often heard him say and swear\nThat this his love was an eternal plant,\nWhereof the root was fix'd in virtue's ground,\nThe leaves and fruit maintain'd with beauty's sun,\nExempt from envy, but not from disdain,\nUnless the Lady Bona quit his pain.\n\nKING LEWIS XI:\nNow, sister, let us hear your firm resolve.\n\nBONA:\nYour grant, or your denial, shall be mine:\nYet I confess that often ere this day,\nWhen I have heard your king's desert recounted,\nMine ear hath tempted judgment to desire.\n\nKING LEWIS XI:\nThen, Warwick, thus: our sister shall be Edward's;\nAnd now forthwith shall articles be drawn\nTouching the jointure that your king must make,\nWhich with her dowry shall be counterpoised.\nDraw near, Queen Margaret, and be a witness\nThat Bona shall be wife to the English king.\n\nPRINCE EDWARD:\nTo Edward, but not to the English king.\n\nQUEEN MARGARET:\nDeceitful Warwick! it was thy device\nBy this alliance to make void my suit:\nBefore thy coming Lewis was Henry's friend.\n\nKING LEWIS XI:\nAnd still is friend to him and Margaret:\nBut if your title to the crown be weak,\nAs may appear by Edward's good success,\nThen 'tis but reason that I be released\nFrom giving aid which late I promised.\nYet shall you have all kindness at my hand\nThat your estate requires and mine can yield.\n\nWARWICK:\nHenry now lives in Scotland at his ease,\nWhere having nothing, nothing can he lose.\nAnd as for you yourself, our quondam queen,\nYou have a father able to maintain you;\nAnd better 'twere you troubled him than France.\n\nQUEEN MARGARET:\nPeace, impudent and shameless Warwick, peace,\nProud setter up and puller down of kings!\nI will not hence, till, with my talk and tears,\nBoth full of truth, I make King Lewis behold\nThy sly conveyance and thy lord's false love;\nFor both of you are birds of selfsame feather.\n\nKING LEWIS XI:\nWarwick, this is some post to us or thee.\n\nPost:\n\nOXFORD:\nI like it well that our fair queen and mistress\nSmiles at her news, while Warwick frowns at his.\n\nPRINCE EDWARD:\nNay, mark how Lewis stamps, as he were nettled:\nI hope all's for the best.\n\nKING LEWIS XI:\nWarwick, what are thy news? and yours, fair queen?\n\nQUEEN MARGARET:\nMine, such as fill my heart with unhoped joys.\n\nWARWICK:\nMine, full of sorrow and heart's discontent.\n\nKING LEWIS XI:\nWhat! has your king married the Lady Grey!\nAnd now, to soothe your forgery and his,\nSends me a paper to persuade me patience?\nIs this the alliance that he seeks with France?\nDare he presume to scorn us in this manner?\n\nQUEEN MARGARET:\nI told your majesty as much before:\nThis proveth Edward's love and Warwick's honesty.\n\nWARWICK:\nKing Lewis, I here protest, in sight of heaven,\nAnd by the hope I have of heavenly bliss,\nThat I am clear from this misdeed of Edward's,\nNo more my king, for he dishonours me,\nBut most himself, if he could see his shame.\nDid I forget that by the house of York\nMy father came untimely to his death?\nDid I let pass the abuse done to my niece?\nDid I impale him with the regal crown?\nDid I put Henry from his native right?\nAnd am I guerdon'd at the last with shame?\nShame on himself! for my desert is honour:\nAnd to repair my honour lost for him,\nI here renounce him and return to Henry.\nMy noble queen, let former grudges pass,\nAnd henceforth I am thy true servitor:\nI will revenge his wrong to Lady Bona,\nAnd replant Henry in his former state.\n\nQUEEN MARGARET:\nWarwick, these words have turn'd my hate to love;\nAnd I forgive and quite forget old faults,\nAnd joy that thou becomest King Henry's friend.\n\nWARWICK:\nSo much his friend, ay, his unfeigned friend,\nThat, if King Lewis vouchsafe to furnish us\nWith some few bands of chosen soldiers,\nI'll undertake to land them on our coast\nAnd force the tyrant from his seat by war.\n'Tis not his new-made bride shall succor him:\nAnd as for Clarence, as my letters tell me,\nHe's very likely now to fall from him,\nFor matching more for wanton lust than honour,\nOr than for strength and safety of our country.\n\nBONA:\nDear brother, how shall Bona be revenged\nBut by thy help to this distressed queen?\n\nQUEEN MARGARET:\nRenowned prince, how shall poor Henry live,\nUnless thou rescue him from foul despair?\n\nBONA:\nMy quarrel and this English queen's are one.\n\nWARWICK:\nAnd mine, fair lady Bona, joins with yours.\n\nKING LEWIS XI:\nAnd mine with hers, and thine, and Margaret's.\nTherefore at last I firmly am resolved\nYou shall have aid.\n\nQUEEN MARGARET:\nLet me give humble thanks for all at once.\n\nKING LEWIS XI:\nThen, England's messenger, return in post,\nAnd tell false Edward, thy supposed king,\nThat Lewis of France is sending over masquers\nTo revel it with him and his new bride:\nThou seest what's past, go fear thy king withal.\n\nBONA:\nTell him, in hope he'll prove a widower shortly,\nI'll wear the willow garland for his sake.\n\nQUEEN MARGARET:\nTell him, my mourning weeds are laid aside,\nAnd I am ready to put armour on.\n\nWARWICK:\nTell him from me that he hath done me wrong,\nAnd therefore I'll uncrown him ere't be long.\nThere's thy reward: be gone.\n\nKING LEWIS XI:\nBut, Warwick,\nThou and Oxford, with five thousand men,\nShall cross the seas, and bid false Edward battle;\nAnd, as occasion serves, this noble queen\nAnd prince shall follow with a fresh supply.\nYet, ere thou go, but answer me one doubt,\nWhat pledge have we of thy firm loyalty?\n\nWARWICK:\nThis shall assure my constant loyalty,\nThat if our queen and this young prince agree,\nI'll join mine eldest daughter and my joy\nTo him forthwith in holy wedlock bands.\n\nQUEEN MARGARET:\nYes, I agree, and thank you for your motion.\nSon Edward, she is fair and virtuous,\nTherefore delay not, give thy hand to Warwick;\nAnd, with thy hand, thy faith irrevocable,\nThat only Warwick's daughter shall be thine.\n\nPRINCE EDWARD:\nYes, I accept her, for she well deserves it;\nAnd here, to pledge my vow, I give my hand.\n\nKING LEWIS XI:\nWhy stay we now? These soldiers shall be levied,\nAnd thou, Lord Bourbon, our high admiral,\nShalt waft them over with our royal fleet.\nI long till Edward fall by war's mischance,\nFor mocking marriage with a dame of France.\n\nWARWICK:\nI came from Edward as ambassador,\nBut I return his sworn and mortal foe:\nMatter of marriage was the charge he gave me,\nBut dreadful war shall answer his demand.\nHad he none else to make a stale but me?\nThen none but I shall turn his jest to sorrow.\nI was the chief that raised him to the crown,\nAnd I'll be chief to bring him down again:\nNot that I pity Henry's misery,\nBut seek revenge on Edward's mockery.\n3 KING HENRY VI\n\nGLOUCESTER:\nNow tell me, brother Clarence, what think you\nOf this new marriage with the Lady Grey?\nHath not our brother made a worthy choice?\n\nCLARENCE:\nAlas, you know, 'tis far from hence to France;\nHow could he stay till Warwick made return?\n\nSOMERSET:\nMy lords, forbear this talk; here comes the king.\n\nGLOUCESTER:\nAnd his well-chosen bride.\n\nCLARENCE:\nI mind to tell him plainly what I think.\n\nKING EDWARD IV:\nNow, brother of Clarence, how like you our choice,\nThat you stand pensive, as half malcontent?\n\nCLARENCE:\nAs well as Lewis of France, or the Earl of Warwick,\nWhich are so weak of courage and in judgment\nThat they'll take no offence at our abuse.\n\nKING EDWARD IV:\nSuppose they take offence without a cause,\nThey are but Lewis and Warwick: I am Edward,\nYour king and Warwick's, and must have my will.\n\nGLOUCESTER:\nAnd shall have your will, because our king:\nYet hasty marriage seldom proveth well.\n\nKING EDWARD IV:\nYea, brother Richard, are you offended too?\n\nGLOUCESTER:\nNot I:\nNo, God forbid that I should wish them sever'd\nWhom God hath join'd together; ay, and 'twere pity\nTo sunder them that yoke so well together.\n\nKING EDWARD IV:\nSetting your scorns and your mislike aside,\nTell me some reason why the Lady Grey\nShould not become my wife and England's queen.\nAnd you too, Somerset and Montague,\nSpeak freely what you think.\n\nCLARENCE:\nThen this is mine opinion: that King Lewis\nBecomes your enemy, for mocking him\nAbout the marriage of the Lady Bona.\n\nGLOUCESTER:\nAnd Warwick, doing what you gave in charge,\nIs now dishonoured by this new marriage.\n\nKING EDWARD IV:\nWhat if both Lewis and Warwick be appeased\nBy such invention as I can devise?\n\nMONTAGUE:\nYet, to have join'd with France in such alliance\nWould more have strengthen'd this our commonwealth\n'Gainst foreign storms than any home-bred marriage.\n\nHASTINGS:\nWhy, knows not Montague that of itself\nEngland is safe, if true within itself?\n\nMONTAGUE:\nBut the safer when 'tis back'd with France.\n\nHASTINGS:\n'Tis better using France than trusting France:\nLet us be back'd with God and with the seas\nWhich He hath given for fence impregnable,\nAnd with their helps only defend ourselves;\nIn them and in ourselves our safety lies.\n\nCLARENCE:\nFor this one speech Lord Hastings well deserves\nTo have the heir of the Lord Hungerford.\n\nKING EDWARD IV:\nAy, what of that? it was my will and grant;\nAnd for this once my will shall stand for law.\n\nGLOUCESTER:\nAnd yet methinks your grace hath not done well,\nTo give the heir and daughter of Lord Scales\nUnto the brother of your loving bride;\nShe better would have fitted me or Clarence:\nBut in your bride you bury brotherhood.\n\nCLARENCE:\nOr else you would not have bestow'd the heir\nOf the Lord Bonville on your new wife's son,\nAnd leave your brothers to go speed elsewhere.\n\nKING EDWARD IV:\nAlas, poor Clarence! is it for a wife\nThat thou art malcontent? I will provide thee.\n\nCLARENCE:\nIn choosing for yourself, you show'd your judgment,\nWhich being shallow, you give me leave\nTo play the broker in mine own behalf;\nAnd to that end I shortly mind to leave you.\n\nKING EDWARD IV:\nLeave me, or tarry, Edward will be king,\nAnd not be tied unto his brother's will.\n\nQUEEN ELIZABETH:\nMy lords, before it pleased his majesty\nTo raise my state to title of a queen,\nDo me but right, and you must all confess\nThat I was not ignoble of descent;\nAnd meaner than myself have had like fortune.\nBut as this title honours me and mine,\nSo your dislike, to whom I would be pleasing,\nDoth cloud my joys with danger and with sorrow.\n\nKING EDWARD IV:\nMy love, forbear to fawn upon their frowns:\nWhat danger or what sorrow can befall thee,\nSo long as Edward is thy constant friend,\nAnd their true sovereign, whom they must obey?\nNay, whom they shall obey, and love thee too,\nUnless they seek for hatred at my hands;\nWhich if they do, yet will I keep thee safe,\nAnd they shall feel the vengeance of my wrath.\n\nGLOUCESTER:\n\nKING EDWARD IV:\nNow, messenger, what letters or what news\nFrom France?\n\nPost:\nMy sovereign liege, no letters; and few words,\nBut such as I, without your special pardon,\nDare not relate.\n\nKING EDWARD IV:\nGo to, we pardon thee: therefore, in brief,\nTell me their words as near as thou canst guess them.\nWhat answer makes King Lewis unto our letters?\n\nPost:\nAt my depart, these were his very words:\n'Go tell false Edward, thy supposed king,\nThat Lewis of France is sending over masquers\nTo revel it with him and his new bride.'\n\nKING EDWARD IV:\nIs Lewis so brave? belike he thinks me Henry.\nBut what said Lady Bona to my marriage?\n\nPost:\nThese were her words, utter'd with mad disdain:\n'Tell him, in hope he'll prove a widower shortly,\nI'll wear the willow garland for his sake.'\n\nKING EDWARD IV:\nI blame not her, she could say little less;\nShe had the wrong. But what said Henry's queen?\nFor I have heard that she was there in place.\n\nPost:\n'Tell him,' quoth she, 'my mourning weeds are done,\nAnd I am ready to put armour on.'\n\nKING EDWARD IV:\nBelike she minds to play the Amazon.\nBut what said Warwick to these injuries?\n\nPost:\nHe, more incensed against your majesty\nThan all the rest, discharged me with these words:\n'Tell him from me that he hath done me wrong,\nAnd therefore I'll uncrown him ere't be long.'\n\nKING EDWARD IV:\nHa! durst the traitor breathe out so proud words?\nWell I will arm me, being thus forewarn'd:\nThey shall have wars and pay for their presumption.\nBut say, is Warwick friends with Margaret?\n\nPost:\nAy, gracious sovereign; they are so link'd in\nfriendship\nThat young Prince Edward marries Warwick's daughter.\n\nCLARENCE:\nBelike the elder; Clarence will have the younger.\nNow, brother king, farewell, and sit you fast,\nFor I will hence to Warwick's other daughter;\nThat, though I want a kingdom, yet in marriage\nI may not prove inferior to yourself.\nYou that love me and Warwick, follow me.\n\nGLOUCESTER:\n\nKING EDWARD IV:\nClarence and Somerset both gone to Warwick!\nYet am I arm'd against the worst can happen;\nAnd haste is needful in this desperate case.\nPembroke and Stafford, you in our behalf\nGo levy men, and make prepare for war;\nThey are already, or quickly will be landed:\nMyself in person will straight follow you.\nBut, ere I go, Hastings and Montague,\nResolve my doubt. You twain, of all the rest,\nAre near to Warwick by blood and by alliance:\nTell me if you love Warwick more than me?\nIf it be so, then both depart to him;\nI rather wish you foes than hollow friends:\nBut if you mind to hold your true obedience,\nGive me assurance with some friendly vow,\nThat I may never have you in suspect.\n\nMONTAGUE:\nSo God help Montague as he proves true!\n\nHASTINGS:\nAnd Hastings as he favours Edward's cause!\n\nKING EDWARD IV:\nNow, brother Richard, will you stand by us?\n\nGLOUCESTER:\nAy, in despite of all that shall withstand you.\n\nKING EDWARD IV:\nWhy, so! then am I sure of victory.\nNow therefore let us hence; and lose no hour,\nTill we meet Warwick with his foreign power.\n3 KING HENRY VI\n\nWARWICK:\nTrust me, my lord, all hitherto goes well;\nThe common people by numbers swarm to us.\nBut see where Somerset and Clarence come!\nSpeak suddenly, my lords, are we all friends?\n\nCLARENCE:\nFear not that, my lord.\n\nWARWICK:\nThen, gentle Clarence, welcome unto Warwick;\nAnd welcome, Somerset: I hold it cowardice\nTo rest mistrustful where a noble heart\nHath pawn'd an open hand in sign of love;\nElse might I think that Clarence, Edward's brother,\nWere but a feigned friend to our proceedings:\nBut welcome, sweet Clarence; my daughter shall be thine.\nAnd now what rests but, in night's coverture,\nThy brother being carelessly encamp'd,\nHis soldiers lurking in the towns about,\nAnd but attended by a simple guard,\nWe may surprise and take him at our pleasure?\nOur scouts have found the adventure very easy:\nThat as Ulysses and stout Diomede\nWith sleight and manhood stole to Rhesus' tents,\nAnd brought from thence the Thracian fatal steeds,\nSo we, well cover'd with the night's black mantle,\nAt unawares may beat down Edward's guard\nAnd seize himself; I say not, slaughter him,\nFor I intend but only to surprise him.\nYou that will follow me to this attempt,\nApplaud the name of Henry with your leader.\nWhy, then, let's on our way in silent sort:\nFor Warwick and his friends, God and Saint George!\n3 KING HENRY VI\n\nFirst Watchman:\nCome on, my masters, each man take his stand:\nThe king by this is set him down to sleep.\n\nSecond Watchman:\nWhat, will he not to bed?\n\nFirst Watchman:\nWhy, no; for he hath made a solemn vow\nNever to lie and take his natural rest\nTill Warwick or himself be quite suppress'd.\n\nSecond Watchman:\nTo-morrow then belike shall be the day,\nIf Warwick be so near as men report.\n\nThird Watchman:\nBut say, I pray, what nobleman is that\nThat with the king here resteth in his tent?\n\nFirst Watchman:\n'Tis the Lord Hastings, the king's chiefest friend.\n\nThird Watchman:\nO, is it so? But why commands the king\nThat his chief followers lodge in towns about him,\nWhile he himself keeps in the cold field?\n\nSecond Watchman:\n'Tis the more honour, because more dangerous.\n\nThird Watchman:\nAy, but give me worship and quietness;\nI like it better than a dangerous honour.\nIf Warwick knew in what estate he stands,\n'Tis to be doubted he would waken him.\n\nFirst Watchman:\nUnless our halberds did shut up his passage.\n\nSecond Watchman:\nAy, wherefore else guard we his royal tent,\nBut to defend his person from night-foes?\n\nWARWICK:\nThis is his tent; and see where stand his guard.\nCourage, my masters! honour now or never!\nBut follow me, and Edward shall be ours.\n\nFirst Watchman:\nWho goes there?\n\nSecond Watchman:\nStay, or thou diest!\n\nSOMERSET:\nWhat are they that fly there?\n\nWARWICK:\nRichard and Hastings: let them go; here is The duke.\n\nKING EDWARD IV:\nThe duke! Why, Warwick, when we parted,\nThou call'dst me king.\n\nWARWICK:\nAy, but the case is alter'd:\nWhen you disgraced me in my embassade,\nThen I degraded you from being king,\nAnd come now to create you Duke of York.\nAlas! how should you govern any kingdom,\nThat know not how to use ambassadors,\nNor how to be contented with one wife,\nNor how to use your brothers brotherly,\nNor how to study for the people's welfare,\nNor how to shroud yourself from enemies?\n\nKING EDWARD IV:\nYea, brother of Clarence, are thou here too?\nNay, then I see that Edward needs must down.\nYet, Warwick, in despite of all mischance,\nOf thee thyself and all thy complices,\nEdward will always bear himself as king:\nThough fortune's malice overthrow my state,\nMy mind exceeds the compass of her wheel.\n\nWARWICK:\nThen, for his mind, be Edward England's king:\nBut Henry now shall wear the English crown,\nAnd be true king indeed, thou but the shadow.\nMy Lord of Somerset, at my request,\nSee that forthwith Duke Edward be convey'd\nUnto my brother, Archbishop of York.\nWhen I have fought with Pembroke and his fellows,\nI'll follow you, and tell what answer\nLewis and the Lady Bona send to him.\nNow, for a while farewell, good Duke of York.\n\nKING EDWARD IV:\nWhat fates impose, that men must needs abide;\nIt boots not to resist both wind and tide.\n\nOXFORD:\nWhat now remains, my lords, for us to do\nBut march to London with our soldiers?\n\nWARWICK:\nAy, that's the first thing that we have to do;\nTo free King Henry from imprisonment\nAnd see him seated in the regal throne.\n3 KING HENRY VI\n\nRIVERS:\nMadam, what makes you in this sudden change?\n\nQUEEN ELIZABETH:\nWhy brother Rivers, are you yet to learn\nWhat late misfortune is befall'n King Edward?\n\nRIVERS:\nWhat! loss of some pitch'd battle against Warwick?\n\nQUEEN ELIZABETH:\nNo, but the loss of his own royal person.\n\nRIVERS:\nThen is my sovereign slain?\n\nQUEEN ELIZABETH:\nAy, almost slain, for he is taken prisoner,\nEither betray'd by falsehood of his guard\nOr by his foe surprised at unawares:\nAnd, as I further have to understand,\nIs new committed to the Bishop of York,\nFell Warwick's brother and by that our foe.\n\nRIVERS:\nThese news I must confess are full of grief;\nYet, gracious madam, bear it as you may:\nWarwick may lose, that now hath won the day.\n\nQUEEN ELIZABETH:\nTill then fair hope must hinder life's decay.\nAnd I the rather wean me from despair\nFor love of Edward's offspring in my womb:\nThis is it that makes me bridle passion\nAnd bear with mildness my misfortune's cross;\nAy, ay, for this I draw in many a tear\nAnd stop the rising of blood-sucking sighs,\nLest with my sighs or tears I blast or drown\nKing Edward's fruit, true heir to the English crown.\n\nRIVERS:\nBut, madam, where is Warwick then become?\n\nQUEEN ELIZABETH:\nI am inform'd that he comes towards London,\nTo set the crown once more on Henry's head:\nGuess thou the rest; King Edward's friends must down,\nBut, to prevent the tyrant's violence,--\nFor trust not him that hath once broken faith,--\nI'll hence forthwith unto the sanctuary,\nTo save at least the heir of Edward's right:\nThere shall I rest secure from force and fraud.\nCome, therefore, let us fly while we may fly:\nIf Warwick take us we are sure to die.\n3 KING HENRY VI\n\nGLOUCESTER:\nNow, my Lord Hastings and Sir William Stanley,\nLeave off to wonder why I drew you hither,\nInto this chiefest thicket of the park.\nThus stands the case: you know our king, my brother,\nIs prisoner to the bishop here, at whose hands\nHe hath good usage and great liberty,\nAnd, often but attended with weak guard,\nComes hunting this way to disport himself.\nI have advertised him by secret means\nThat if about this hour he make his way\nUnder the colour of his usual game,\nHe shall here find his friends with horse and men\nTo set him free from his captivity.\n\nHuntsman:\nThis way, my lord; for this way lies the game.\n\nKING EDWARD IV:\nNay, this way, man: see where the huntsmen stand.\nNow, brother of Gloucester, Lord Hastings, and the rest,\nStand you thus close, to steal the bishop's deer?\n\nGLOUCESTER:\nBrother, the time and case requireth haste:\nYour horse stands ready at the park-corner.\n\nKING EDWARD IV:\nBut whither shall we then?\n\nHASTINGS:\nTo Lynn, my lord,\nAnd ship from thence to Flanders.\n\nGLOUCESTER:\nWell guess'd, believe me; for that was my meaning.\n\nKING EDWARD IV:\nStanley, I will requite thy forwardness.\n\nGLOUCESTER:\nBut wherefore stay we? 'tis no time to talk.\n\nKING EDWARD IV:\nHuntsman, what say'st thou? wilt thou go along?\n\nHuntsman:\nBetter do so than tarry and be hang'd.\n\nGLOUCESTER:\nCome then, away; let's ha' no more ado.\n\nKING EDWARD IV:\nBishop, farewell: shield thee from Warwick's frown;\nAnd pray that I may repossess the crown.\n3 KING HENRY VI\n\nKING HENRY VI:\nMaster lieutenant, now that God and friends\nHave shaken Edward from the regal seat,\nAnd turn'd my captive state to liberty,\nMy fear to hope, my sorrows unto joys,\nAt our enlargement what are thy due fees?\n\nLieutenant:\nSubjects may challenge nothing of their sovereigns;\nBut if an humble prayer may prevail,\nI then crave pardon of your majesty.\n\nKING HENRY VI:\nFor what, lieutenant? for well using me?\nNay, be thou sure I'll well requite thy kindness,\nFor that it made my imprisonment a pleasure;\nAy, such a pleasure as incaged birds\nConceive when after many moody thoughts\nAt last by notes of household harmony\nThey quite forget their loss of liberty.\nBut, Warwick, after God, thou set'st me free,\nAnd chiefly therefore I thank God and thee;\nHe was the author, thou the instrument.\nTherefore, that I may conquer fortune's spite\nBy living low, where fortune cannot hurt me,\nAnd that the people of this blessed land\nMay not be punish'd with my thwarting stars,\nWarwick, although my head still wear the crown,\nI here resign my government to thee,\nFor thou art fortunate in all thy deeds.\n\nWARWICK:\nYour grace hath still been famed for virtuous;\nAnd now may seem as wise as virtuous,\nBy spying and avoiding fortune's malice,\nFor few men rightly temper with the stars:\nYet in this one thing let me blame your grace,\nFor choosing me when Clarence is in place.\n\nCLARENCE:\nNo, Warwick, thou art worthy of the sway,\nTo whom the heavens in thy nativity\nAdjudged an olive branch and laurel crown,\nAs likely to be blest in peace and war;\nAnd therefore I yield thee my free consent.\n\nWARWICK:\nAnd I choose Clarence only for protector.\n\nKING HENRY VI:\nWarwick and Clarence give me both your hands:\nNow join your hands, and with your hands your hearts,\nThat no dissension hinder government:\nI make you both protectors of this land,\nWhile I myself will lead a private life\nAnd in devotion spend my latter days,\nTo sin's rebuke and my Creator's praise.\n\nWARWICK:\nWhat answers Clarence to his sovereign's will?\n\nCLARENCE:\nThat he consents, if Warwick yield consent;\nFor on thy fortune I repose myself.\n\nWARWICK:\nWhy, then, though loath, yet must I be content:\nWe'll yoke together, like a double shadow\nTo Henry's body, and supply his place;\nI mean, in bearing weight of government,\nWhile he enjoys the honour and his ease.\nAnd, Clarence, now then it is more than needful\nForthwith that Edward be pronounced a traitor,\nAnd all his lands and goods be confiscate.\n\nCLARENCE:\nWhat else? and that succession be determined.\n\nWARWICK:\nAy, therein Clarence shall not want his part.\n\nKING HENRY VI:\nBut, with the first of all your chief affairs,\nLet me entreat, for I command no more,\nThat Margaret your queen and my son Edward\nBe sent for, to return from France with speed;\nFor, till I see them here, by doubtful fear\nMy joy of liberty is half eclipsed.\n\nCLARENCE:\nIt shall be done, my sovereign, with all speed.\n\nKING HENRY VI:\nMy Lord of Somerset, what youth is that,\nOf whom you seem to have so tender care?\n\nSOMERSET:\nMy liege, it is young Henry, earl of Richmond.\n\nKING HENRY VI:\nCome hither, England's hope.\nIf secret powers\nSuggest but truth to my divining thoughts,\nThis pretty lad will prove our country's bliss.\nHis looks are full of peaceful majesty,\nHis head by nature framed to wear a crown,\nHis hand to wield a sceptre, and himself\nLikely in time to bless a regal throne.\nMake much of him, my lords, for this is he\nMust help you more than you are hurt by me.\n\nWARWICK:\nWhat news, my friend?\n\nPost:\nThat Edward is escaped from your brother,\nAnd fled, as he hears since, to Burgundy.\n\nWARWICK:\nUnsavoury news! but how made he escape?\n\nPost:\nHe was convey'd by Richard Duke of Gloucester\nAnd the Lord Hastings, who attended him\nIn secret ambush on the forest side\nAnd from the bishop's huntsmen rescued him;\nFor hunting was his daily exercise.\n\nWARWICK:\nMy brother was too careless of his charge.\nBut let us hence, my sovereign, to provide\nA salve for any sore that may betide.\n\nSOMERSET:\nMy lord, I like not of this flight of Edward's;\nFor doubtless Burgundy will yield him help,\nAnd we shall have more wars before 't be long.\nAs Henry's late presaging prophecy\nDid glad my heart with hope of this young Richmond,\nSo doth my heart misgive me, in these conflicts\nWhat may befall him, to his harm and ours:\nTherefore, Lord Oxford, to prevent the worst,\nForthwith we'll send him hence to Brittany,\nTill storms be past of civil enmity.\n\nOXFORD:\nAy, for if Edward repossess the crown,\n'Tis like that Richmond with the rest shall down.\n\nSOMERSET:\nIt shall be so; he shall to Brittany.\nCome, therefore, let's about it speedily.\n3 KING HENRY VI\n\nKING EDWARD IV:\nNow, brother Richard, Lord Hastings, and the rest,\nYet thus far fortune maketh us amends,\nAnd says that once more I shall interchange\nMy waned state for Henry's regal crown.\nWell have we pass'd and now repass'd the seas\nAnd brought desired help from Burgundy:\nWhat then remains, we being thus arrived\nFrom Ravenspurgh haven before the gates of York,\nBut that we enter, as into our dukedom?\n\nGLOUCESTER:\nThe gates made fast! Brother, I like not this;\nFor many men that stumble at the threshold\nAre well foretold that danger lurks within.\n\nKING EDWARD IV:\nTush, man, abodements must not now affright us:\nBy fair or foul means we must enter in,\nFor hither will our friends repair to us.\n\nHASTINGS:\nMy liege, I'll knock once more to summon them.\n\nMayor:\nMy lords, we were forewarned of your coming,\nAnd shut the gates for safety of ourselves;\nFor now we owe allegiance unto Henry.\n\nKING EDWARD IV:\nBut, master mayor, if Henry be your king,\nYet Edward at the least is Duke of York.\n\nMayor:\nTrue, my good lord; I know you for no less.\n\nKING EDWARD IV:\nWhy, and I challenge nothing but my dukedom,\nAs being well content with that alone.\n\nGLOUCESTER:\n\nHASTINGS:\nWhy, master mayor, why stand you in a doubt?\nOpen the gates; we are King Henry's friends.\n\nMayor:\nAy, say you so? the gates shall then be open'd.\n\nGLOUCESTER:\nA wise stout captain, and soon persuaded!\n\nHASTINGS:\nThe good old man would fain that all were well,\nSo 'twere not 'long of him; but being enter'd,\nI doubt not, I, but we shall soon persuade\nBoth him and all his brothers unto reason.\n\nKING EDWARD IV:\nSo, master mayor: these gates must not be shut\nBut in the night or in the time of war.\nWhat! fear not, man, but yield me up the keys;\nFor Edward will defend the town and thee,\nAnd all those friends that deign to follow me.\n\nGLOUCESTER:\nBrother, this is Sir John Montgomery,\nOur trusty friend, unless I be deceived.\n\nKING EDWARD IV:\nWelcome, Sir John! But why come you in arms?\n\nMONTAGUE:\nTo help King Edward in his time of storm,\nAs every loyal subject ought to do.\n\nKING EDWARD IV:\nThanks, good Montgomery; but we now forget\nOur title to the crown and only claim\nOur dukedom till God please to send the rest.\n\nMONTAGUE:\nThen fare you well, for I will hence again:\nI came to serve a king and not a duke.\nDrummer, strike up, and let us march away.\n\nKING EDWARD IV:\nNay, stay, Sir John, awhile, and we'll debate\nBy what safe means the crown may be recover'd.\n\nMONTAGUE:\nWhat talk you of debating? in few words,\nIf you'll not here proclaim yourself our king,\nI'll leave you to your fortune and be gone\nTo keep them back that come to succor you:\nWhy shall we fight, if you pretend no title?\n\nGLOUCESTER:\nWhy, brother, wherefore stand you on nice points?\n\nKING EDWARD IV:\nWhen we grow stronger, then we'll make our claim:\nTill then, 'tis wisdom to conceal our meaning.\n\nHASTINGS:\nAway with scrupulous wit! now arms must rule.\n\nGLOUCESTER:\nAnd fearless minds climb soonest unto crowns.\nBrother, we will proclaim you out of hand:\nThe bruit thereof will bring you many friends.\n\nKING EDWARD IV:\nThen be it as you will; for 'tis my right,\nAnd Henry but usurps the diadem.\n\nMONTAGUE:\nAy, now my sovereign speaketh like himself;\nAnd now will I be Edward's champion.\n\nHASTINGS:\nSound trumpet; Edward shall be here proclaim'd:\nCome, fellow-soldier, make thou proclamation.\n\nSoldier:\nEdward the Fourth, by the grace of God, king of\nEngland and France, and lord of Ireland, &c.\n\nMONTAGUE:\nAnd whosoe'er gainsays King Edward's right,\nBy this I challenge him to single fight.\n\nAll:\nLong live Edward the Fourth!\n\nKING EDWARD IV:\nThanks, brave Montgomery; and thanks unto you all:\nIf fortune serve me, I'll requite this kindness.\nNow, for this night, let's harbour here in York;\nAnd when the morning sun shall raise his car\nAbove the border of this horizon,\nWe'll forward towards Warwick and his mates;\nFor well I wot that Henry is no soldier.\nAh, froward Clarence! how evil it beseems thee\nTo flatter Henry and forsake thy brother!\nYet, as we may, we'll meet both thee and Warwick.\nCome on, brave soldiers: doubt not of the day,\nAnd, that once gotten, doubt not of large pay.\n3 KING HENRY VI\n\nWARWICK:\nWhat counsel, lords? Edward from Belgia,\nWith hasty Germans and blunt Hollanders,\nHath pass'd in safety through the narrow seas,\nAnd with his troops doth march amain to London;\nAnd many giddy people flock to him.\n\nKING HENRY VI:\nLet's levy men, and beat him back again.\n\nCLARENCE:\nA little fire is quickly trodden out;\nWhich, being suffer'd, rivers cannot quench.\n\nWARWICK:\nIn Warwickshire I have true-hearted friends,\nNot mutinous in peace, yet bold in war;\nThose will I muster up: and thou, son Clarence,\nShalt stir up in Suffolk, Norfolk, and in Kent,\nThe knights and gentlemen to come with thee:\nThou, brother Montague, in Buckingham,\nNorthampton and in Leicestershire, shalt find\nMen well inclined to hear what thou command'st:\nAnd thou, brave Oxford, wondrous well beloved,\nIn Oxfordshire shalt muster up thy friends.\nMy sovereign, with the loving citizens,\nLike to his island girt in with the ocean,\nOr modest Dian circled with her nymphs,\nShall rest in London till we come to him.\nFair lords, take leave and stand not to reply.\nFarewell, my sovereign.\n\nKING HENRY VI:\nFarewell, my Hector, and my Troy's true hope.\n\nCLARENCE:\nIn sign of truth, I kiss your highness' hand.\n\nKING HENRY VI:\nWell-minded Clarence, be thou fortunate!\n\nMONTAGUE:\nComfort, my lord; and so I take my leave.\n\nOXFORD:\nAnd thus I seal my truth, and bid adieu.\n\nKING HENRY VI:\nSweet Oxford, and my loving Montague,\nAnd all at once, once more a happy farewell.\n\nWARWICK:\nFarewell, sweet lords: let's meet at Coventry.\n\nKING HENRY VI:\nHere at the palace I will rest awhile.\nCousin of Exeter, what thinks your lordship?\nMethinks the power that Edward hath in field\nShould not be able to encounter mine.\n\nEXETER:\nThe doubt is that he will seduce the rest.\n\nKING HENRY VI:\nThat's not my fear; my meed hath got me fame:\nI have not stopp'd mine ears to their demands,\nNor posted off their suits with slow delays;\nMy pity hath been balm to heal their wounds,\nMy mildness hath allay'd their swelling griefs,\nMy mercy dried their water-flowing tears;\nI have not been desirous of their wealth,\nNor much oppress'd them with great subsidies.\nNor forward of revenge, though they much err'd:\nThen why should they love Edward more than me?\nNo, Exeter, these graces challenge grace:\nAnd when the lion fawns upon the lamb,\nThe lamb will never cease to follow him.\n\nEXETER:\nHark, hark, my lord! what shouts are these?\n\nKING EDWARD IV:\nSeize on the shame-faced Henry, bear him hence;\nAnd once again proclaim us King of England.\nYou are the fount that makes small brooks to flow:\nNow stops thy spring; my sea sha$l suck them dry,\nAnd swell so much the higher by their ebb.\nHence with him to the Tower; let him not speak.\nAnd, lords, towards Coventry bend we our course\nWhere peremptory Warwick now remains:\nThe sun shines hot; and, if we use delay,\nCold biting winter mars our hoped-for hay.\n\nGLOUCESTER:\nAway betimes, before his forces join,\nAnd take the great-grown traitor unawares:\nBrave warriors, march amain towards Coventry.\n3 KING HENRY VI\n\nWARWICK:\nWhere is the post that came from valiant Oxford?\nHow far hence is thy lord, mine honest fellow?\n\nFirst Messenger:\nBy this at Dunsmore, marching hitherward.\n\nWARWICK:\nHow far off is our brother Montague?\nWhere is the post that came from Montague?\n\nSecond Messenger:\nBy this at Daintry, with a puissant troop.\n\nWARWICK:\nSay, Somerville, what says my loving son?\nAnd, by thy guess, how nigh is Clarence now?\n\nSOMERSET:\nAt Southam I did leave him with his forces,\nAnd do expect him here some two hours hence.\n\nWARWICK:\nThen Clarence is at hand, I hear his drum.\n\nSOMERSET:\nIt is not his, my lord; here Southam lies:\nThe drum your honour hears marcheth from Warwick.\n\nWARWICK:\nWho should that be? belike, unlook'd-for friends.\n\nSOMERSET:\nThey are at hand, and you shall quickly know.\n\nKING EDWARD IV:\nGo, trumpet, to the walls, and sound a parle.\n\nGLOUCESTER:\nSee how the surly Warwick mans the wall!\n\nWARWICK:\nO unbid spite! is sportful Edward come?\nWhere slept our scouts, or how are they seduced,\nThat we could hear no news of his repair?\n\nKING EDWARD IV:\nNow, Warwick, wilt thou ope the city gates,\nSpeak gentle words and humbly bend thy knee,\nCall Edward king and at his hands beg mercy?\nAnd he shall pardon thee these outrages.\n\nWARWICK:\nNay, rather, wilt thou draw thy forces hence,\nConfess who set thee up and pluck'd thee own,\nCall Warwick patron and be penitent?\nAnd thou shalt still remain the Duke of York.\n\nGLOUCESTER:\nI thought, at least, he would have said the king;\nOr did he make the jest against his will?\n\nWARWICK:\nIs not a dukedom, sir, a goodly gift?\n\nGLOUCESTER:\nAy, by my faith, for a poor earl to give:\nI'll do thee service for so good a gift.\n\nWARWICK:\n'Twas I that gave the kingdom to thy brother.\n\nKING EDWARD IV:\nWhy then 'tis mine, if but by Warwick's gift.\n\nWARWICK:\nThou art no Atlas for so great a weight:\nAnd weakling, Warwick takes his gift again;\nAnd Henry is my king, Warwick his subject.\n\nKING EDWARD IV:\nBut Warwick's king is Edward's prisoner:\nAnd, gallant Warwick, do but answer this:\nWhat is the body when the head is off?\n\nGLOUCESTER:\nAlas, that Warwick had no more forecast,\nBut, whiles he thought to steal the single ten,\nThe king was slily finger'd from the deck!\nYou left poor Henry at the Bishop's palace,\nAnd, ten to one, you'll meet him in the Tower.\n\nEDWARD:\n'Tis even so; yet you are Warwick still.\n\nGLOUCESTER:\nCome, Warwick, take the time; kneel down, kneel down:\nNay, when? strike now, or else the iron cools.\n\nWARWICK:\nI had rather chop this hand off at a blow,\nAnd with the other fling it at thy face,\nThan bear so low a sail, to strike to thee.\n\nKING EDWARD IV:\nSail how thou canst, have wind and tide thy friend,\nThis hand, fast wound about thy coal-black hair\nShall, whiles thy head is warm and new cut off,\nWrite in the dust this sentence with thy blood,\n'Wind-changing Warwick now can change no more.'\n\nWARWICK:\nO cheerful colours! see where Oxford comes!\n\nOXFORD:\nOxford, Oxford, for Lancaster!\n\nGLOUCESTER:\nThe gates are open, let us enter too.\n\nKING EDWARD IV:\nSo other foes may set upon our backs.\nStand we in good array; for they no doubt\nWill issue out again and bid us battle:\nIf not, the city being but of small defence,\nWe'll quickly rouse the traitors in the same.\n\nWARWICK:\nO, welcome, Oxford! for we want thy help.\n\nMONTAGUE:\nMontague, Montague, for Lancaster!\n\nGLOUCESTER:\nThou and thy brother both shall buy this treason\nEven with the dearest blood your bodies bear.\n\nKING EDWARD IV:\nThe harder match'd, the greater victory:\nMy mind presageth happy gain and conquest.\n\nSOMERSET:\nSomerset, Somerset, for Lancaster!\n\nGLOUCESTER:\nTwo of thy name, both Dukes of Somerset,\nHave sold their lives unto the house of York;\nAnd thou shalt be the third if this sword hold.\n\nWARWICK:\nAnd lo, where George of Clarence sweeps along,\nOf force enough to bid his brother battle;\nWith whom an upright zeal to right prevails\nMore than the nature of a brother's love!\nCome, Clarence, come; thou wilt, if Warwick call.\n\nCLARENCE:\nFather of Warwick, know you what this means?\nLook here, I throw my infamy at thee\nI will not ruinate my father's house,\nWho gave his blood to lime the stones together,\nAnd set up Lancaster. Why, trow'st thou, Warwick,\nThat Clarence is so harsh, so blunt, unnatural,\nTo bend the fatal instruments of war\nAgainst his brother and his lawful king?\nPerhaps thou wilt object my holy oath:\nTo keep that oath were more impiety\nThan Jephthah's, when he sacrificed his daughter.\nI am so sorry for my trespass made\nThat, to deserve well at my brother's hands,\nI here proclaim myself thy mortal foe,\nWith resolution, wheresoe'er I meet thee--\nAs I will meet thee, if thou stir abroad--\nTo plague thee for thy foul misleading me.\nAnd so, proud-hearted Warwick, I defy thee,\nAnd to my brother turn my blushing cheeks.\nPardon me, Edward, I will make amends:\nAnd, Richard, do not frown upon my faults,\nFor I will henceforth be no more unconstant.\n\nKING EDWARD IV:\nNow welcome more, and ten times more beloved,\nThan if thou never hadst deserved our hate.\n\nGLOUCESTER:\nWelcome, good Clarence; this is brotherlike.\n\nWARWICK:\nO passing traitor, perjured and unjust!\n\nKING EDWARD IV:\nWhat, Warwick, wilt thou leave the town and fight?\nOr shall we beat the stones about thine ears?\n\nWARWICK:\nAlas, I am not coop'd here for defence!\nI will away towards Barnet presently,\nAnd bid thee battle, Edward, if thou darest.\n\nKING EDWARD IV:\nYes, Warwick, Edward dares, and leads the way.\nLords, to the field; Saint George and victory!\n3 KING HENRY VI\n\nKING EDWARD IV:\nSo, lie thou there: die thou, and die our fear;\nFor Warwick was a bug that fear'd us all.\nNow, Montague, sit fast; I seek for thee,\nThat Warwick's bones may keep thine company.\n\nWARWICK:\nAh, who is nigh? come to me, friend or foe,\nAnd tell me who is victor, York or Warwick?\nWhy ask I that? my mangled body shows,\nMy blood, my want of strength, my sick heart shows.\nThat I must yield my body to the earth\nAnd, by my fall, the conquest to my foe.\nThus yields the cedar to the axe's edge,\nWhose arms gave shelter to the princely eagle,\nUnder whose shade the ramping lion slept,\nWhose top-branch overpeer'd Jove's spreading tree\nAnd kept low shrubs from winter's powerful wind.\nThese eyes, that now are dimm'd with death's black veil,\nHave been as piercing as the mid-day sun,\nTo search the secret treasons of the world:\nThe wrinkles in my brows, now filled with blood,\nWere liken'd oft to kingly sepulchres;\nFor who lived king, but I could dig his grave?\nAnd who durst mine when Warwick bent his brow?\nLo, now my glory smear'd in dust and blood!\nMy parks, my walks, my manors that I had.\nEven now forsake me, and of all my lands\nIs nothing left me but my body's length.\nWhy, what is pomp, rule, reign, but earth and dust?\nAnd, live we how we can, yet die we must.\n\nSOMERSET:\nAh, Warwick, Warwick! wert thou as we are.\nWe might recover all our loss again;\nThe queen from France hath brought a puissant power:\nEven now we heard the news: ah, could'st thou fly!\n\nWARWICK:\nWhy, then I would not fly. Ah, Montague,\nIf thou be there, sweet brother, take my hand.\nAnd with thy lips keep in my soul awhile!\nThou lovest me not; for, brother, if thou didst,\nThy tears would wash this cold congealed blood\nThat glues my lips and will not let me speak.\nCome quickly, Montague, or I am dead.\n\nSOMERSET:\nAh, Warwick! Montague hath breathed his last;\nAnd to the latest gasp cried out for Warwick,\nAnd said 'Commend me to my valiant brother.'\nAnd more he would have said, and more he spoke,\nWhich sounded like a clamour in a vault,\nThat mought not be distinguished; but at last\nI well might hear, delivered with a groan,\n'O, farewell, Warwick!'\n\nWARWICK:\nSweet rest his soul! Fly, lords, and save yourselves;\nFor Warwick bids you all farewell to meet in heaven.\n\nOXFORD:\nAway, away, to meet the queen's great power!\n3 KING HENRY VI\n\nKING EDWARD IV:\nThus far our fortune keeps an upward course,\nAnd we are graced with wreaths of victory.\nBut, in the midst of this bright-shining day,\nI spy a black, suspicious, threatening cloud,\nThat will encounter with our glorious sun,\nEre he attain his easeful western bed:\nI mean, my lords, those powers that the queen\nHath raised in Gallia have arrived our coast\nAnd, as we hear, march on to fight with us.\n\nCLARENCE:\nA little gale will soon disperse that cloud\nAnd blow it to the source from whence it came:\nThe very beams will dry those vapours up,\nFor every cloud engenders not a storm.\n\nGLOUCESTER:\nThe queen is valued thirty thousand strong,\nAnd Somerset, with Oxford fled to her:\nIf she have time to breathe be well assured\nHer faction will be full as strong as ours.\n\nKING EDWARD IV:\nWe are advertised by our loving friends\nThat they do hold their course toward Tewksbury:\nWe, having now the best at Barnet field,\nWill thither straight, for willingness rids way;\nAnd, as we march, our strength will be augmented\nIn every county as we go along.\nStrike up the drum; cry 'Courage!' and away.\n3 KING HENRY VI\n\nQUEEN MARGARET:\nGreat lords, wise men ne'er sit and wail their loss,\nBut cheerly seek how to redress their harms.\nWhat though the mast be now blown overboard,\nThe cable broke, the holding-anchor lost,\nAnd half our sailors swallow'd in the flood?\nYet lives our pilot still. Is't meet that he\nShould leave the helm and like a fearful lad\nWith tearful eyes add water to the sea\nAnd give more strength to that which hath too much,\nWhiles, in his moan, the ship splits on the rock,\nWhich industry and courage might have saved?\nAh, what a shame! ah, what a fault were this!\nSay Warwick was our anchor; what of that?\nAnd Montague our topmost; what of him?\nOur slaughter'd friends the tackles; what of these?\nWhy, is not Oxford here another anchor?\nAnd Somerset another goodly mast?\nThe friends of France our shrouds and tacklings?\nAnd, though unskilful, why not Ned and I\nFor once allow'd the skilful pilot's charge?\nWe will not from the helm to sit and weep,\nBut keep our course, though the rough wind say no,\nFrom shelves and rocks that threaten us with wreck.\nAs good to chide the waves as speak them fair.\nAnd what is Edward but ruthless sea?\nWhat Clarence but a quicksand of deceit?\nAnd Richard but a ragged fatal rock?\nAll these the enemies to our poor bark.\nSay you can swim; alas, 'tis but a while!\nTread on the sand; why, there you quickly sink:\nBestride the rock; the tide will wash you off,\nOr else you famish; that's a threefold death.\nThis speak I, lords, to let you understand,\nIf case some one of you would fly from us,\nThat there's no hoped-for mercy with the brothers\nMore than with ruthless waves, with sands and rocks.\nWhy, courage then! what cannot be avoided\n'Twere childish weakness to lament or fear.\n\nPRINCE EDWARD:\nMethinks a woman of this valiant spirit\nShould, if a coward heard her speak these words,\nInfuse his breast with magnanimity\nAnd make him, naked, foil a man at arms.\nI speak not this as doubting any here\nFor did I but suspect a fearful man\nHe should have leave to go away betimes,\nLest in our need he might infect another\nAnd make him of like spirit to himself.\nIf any such be here--as God forbid!--\nLet him depart before we need his help.\n\nOXFORD:\nWomen and children of so high a courage,\nAnd warriors faint! why, 'twere perpetual shame.\nO brave young prince! thy famous grandfather\nDoth live again in thee: long mayst thou live\nTo bear his image and renew his glories!\n\nSOMERSET:\nAnd he that will not fight for such a hope.\nGo home to bed, and like the owl by day,\nIf he arise, be mock'd and wonder'd at.\n\nQUEEN MARGARET:\nThanks, gentle Somerset; sweet Oxford, thanks.\n\nPRINCE EDWARD:\nAnd take his thanks that yet hath nothing else.\n\nMessenger:\nPrepare you, lords, for Edward is at hand.\nReady to fight; therefore be resolute.\n\nOXFORD:\nI thought no less: it is his policy\nTo haste thus fast, to find us unprovided.\n\nSOMERSET:\nBut he's deceived; we are in readiness.\n\nQUEEN MARGARET:\nThis cheers my heart, to see your forwardness.\n\nOXFORD:\nHere pitch our battle; hence we will not budge.\n\nKING EDWARD IV:\nBrave followers, yonder stands the thorny wood,\nWhich, by the heavens' assistance and your strength,\nMust by the roots be hewn up yet ere night.\nI need not add more fuel to your fire,\nFor well I wot ye blaze to burn them out\nGive signal to the fight, and to it, lords!\n\nQUEEN MARGARET:\nLords, knights, and gentlemen, what I should say\nMy tears gainsay; for every word I speak,\nYe see, I drink the water of mine eyes.\nTherefore, no more but this: Henry, your sovereign,\nIs prisoner to the foe; his state usurp'd,\nHis realm a slaughter-house, his subjects slain,\nHis statutes cancell'd and his treasure spent;\nAnd yonder is the wolf that makes this spoil.\nYou fight in justice: then, in God's name, lords,\nBe valiant and give signal to the fight.\n3 KING HENRY VI\n\nKING EDWARD IV:\nNow here a period of tumultuous broils.\nAway with Oxford to Hames Castle straight:\nFor Somerset, off with his guilty head.\nGo, bear them hence; I will not hear them speak.\n\nOXFORD:\nFor my part, I'll not trouble thee with words.\n\nSOMERSET:\nNor I, but stoop with patience to my fortune.\n\nQUEEN MARGARET:\nSo part we sadly in this troublous world,\nTo meet with joy in sweet Jerusalem.\n\nKING EDWARD IV:\nIs proclamation made, that who finds Edward\nShall have a high reward, and he his life?\n\nGLOUCESTER:\nIt is: and lo, where youthful Edward comes!\n\nKING EDWARD IV:\nBring forth the gallant, let us hear him speak.\nWhat! can so young a thorn begin to prick?\nEdward, what satisfaction canst thou make\nFor bearing arms, for stirring up my subjects,\nAnd all the trouble thou hast turn'd me to?\n\nPRINCE EDWARD:\nSpeak like a subject, proud ambitious York!\nSuppose that I am now my father's mouth;\nResign thy chair, and where I stand kneel thou,\nWhilst I propose the selfsame words to thee,\nWhich traitor, thou wouldst have me answer to.\n\nQUEEN MARGARET:\nAh, that thy father had been so resolved!\n\nGLOUCESTER:\nThat you might still have worn the petticoat,\nAnd ne'er have stol'n the breech from Lancaster.\n\nPRINCE EDWARD:\nLet AEsop fable in a winter's night;\nHis currish riddles sort not with this place.\n\nGLOUCESTER:\nBy heaven, brat, I'll plague ye for that word.\n\nQUEEN MARGARET:\nAy, thou wast born to be a plague to men.\n\nGLOUCESTER:\nFor God's sake, take away this captive scold.\n\nPRINCE EDWARD:\nNay, take away this scolding crookback rather.\n\nKING EDWARD IV:\nPeace, wilful boy, or I will charm your tongue.\n\nCLARENCE:\nUntutor'd lad, thou art too malapert.\n\nPRINCE EDWARD:\nI know my duty; you are all undutiful:\nLascivious Edward, and thou perjured George,\nAnd thou mis-shapen Dick, I tell ye all\nI am your better, traitors as ye are:\nAnd thou usurp'st my father's right and mine.\n\nKING EDWARD IV:\nTake that, thou likeness of this railer here.\n\nGLOUCESTER:\nSprawl'st thou? take that, to end thy agony.\n\nCLARENCE:\nAnd there's for twitting me with perjury.\n\nQUEEN MARGARET:\nO, kill me too!\n\nGLOUCESTER:\nMarry, and shall.\n\nKING EDWARD IV:\nHold, Richard, hold; for we have done too much.\n\nGLOUCESTER:\nWhy should she live, to fill the world with words?\n\nKING EDWARD IV:\nWhat, doth she swoon? use means for her recovery.\n\nGLOUCESTER:\nClarence, excuse me to the king my brother;\nI'll hence to London on a serious matter:\nEre ye come there, be sure to hear some news.\n\nCLARENCE:\nWhat? what?\n\nGLOUCESTER:\nThe Tower, the Tower.\n\nQUEEN MARGARET:\nO Ned, sweet Ned! speak to thy mother, boy!\nCanst thou not speak? O traitors! murderers!\nThey that stabb'd Caesar shed no blood at all,\nDid not offend, nor were not worthy blame,\nIf this foul deed were by to equal it:\nHe was a man; this, in respect, a child:\nAnd men ne'er spend their fury on a child.\nWhat's worse than murderer, that I may name it?\nNo, no, my heart will burst, and if I speak:\nAnd I will speak, that so my heart may burst.\nButchers and villains! bloody cannibals!\nHow sweet a plant have you untimely cropp'd!\nYou have no children, butchers! if you had,\nThe thought of them would have stirr'd up remorse:\nBut if you ever chance to have a child,\nLook in his youth to have him so cut off\nAs, deathmen, you have rid this sweet young prince!\n\nKING EDWARD IV:\nAway with her; go, bear her hence perforce.\n\nQUEEN MARGARET:\nNay, never bear me hence, dispatch me here,\nHere sheathe thy sword, I'll pardon thee my death:\nWhat, wilt thou not? then, Clarence, do it thou.\n\nCLARENCE:\nBy heaven, I will not do thee so much ease.\n\nQUEEN MARGARET:\nGood Clarence, do; sweet Clarence, do thou do it.\n\nCLARENCE:\nDidst thou not hear me swear I would not do it?\n\nQUEEN MARGARET:\nAy, but thou usest to forswear thyself:\n'Twas sin before, but now 'tis charity.\nWhat, wilt thou not? Where is that devil's butcher,\nHard-favour'd Richard? Richard, where art thou?\nThou art not here: murder is thy alms-deed;\nPetitioners for blood thou ne'er put'st back.\n\nKING EDWARD IV:\nAway, I say; I charge ye, bear her hence.\n\nQUEEN MARGARET:\nSo come to you and yours, as to this Prince!\n\nKING EDWARD IV:\nWhere's Richard gone?\n\nCLARENCE:\nTo London, all in post; and, as I guess,\nTo make a bloody supper in the Tower.\n\nKING EDWARD IV:\nHe's sudden, if a thing comes in his head.\nNow march we hence: discharge the common sort\nWith pay and thanks, and let's away to London\nAnd see our gentle queen how well she fares:\nBy this, I hope, she hath a son for me.\n3 KING HENRY VI\n\nGLOUCESTER:\nGood day, my lord. What, at your book so hard?\n\nKING HENRY VI:\nAy, my good lord:--my lord, I should say rather;\n'Tis sin to flatter; 'good' was little better:\n'Good Gloucester' and 'good devil' were alike,\nAnd both preposterous; therefore, not 'good lord.'\n\nGLOUCESTER:\nSirrah, leave us to ourselves: we must confer.\n\nKING HENRY VI:\nSo flies the reckless shepherd from the wolf;\nSo first the harmless sheep doth yield his fleece\nAnd next his throat unto the butcher's knife.\nWhat scene of death hath Roscius now to act?\n\nGLOUCESTER:\nSuspicion always haunts the guilty mind;\nThe thief doth fear each bush an officer.\n\nKING HENRY VI:\nThe bird that hath been limed in a bush,\nWith trembling wings misdoubteth every bush;\nAnd I, the hapless male to one sweet bird,\nHave now the fatal object in my eye\nWhere my poor young was limed, was caught and kill'd.\n\nGLOUCESTER:\nWhy, what a peevish fool was that of Crete,\nThat taught his son the office of a fowl!\nAn yet, for all his wings, the fool was drown'd.\n\nKING HENRY VI:\nI, Daedalus; my poor boy, Icarus;\nThy father, Minos, that denied our course;\nThe sun that sear'd the wings of my sweet boy\nThy brother Edward, and thyself the sea\nWhose envious gulf did swallow up his life.\nAh, kill me with thy weapon, not with words!\nMy breast can better brook thy dagger's point\nThan can my ears that tragic history.\nBut wherefore dost thou come? is't for my life?\n\nGLOUCESTER:\nThink'st thou I am an executioner?\n\nKING HENRY VI:\nA persecutor, I am sure, thou art:\nIf murdering innocents be executing,\nWhy, then thou art an executioner.\n\nGLOUCESTER:\nThy son I kill'd for his presumption.\n\nKING HENRY VI:\nHadst thou been kill'd when first thou didst presume,\nThou hadst not lived to kill a son of mine.\nAnd thus I prophesy, that many a thousand,\nWhich now mistrust no parcel of my fear,\nAnd many an old man's sigh and many a widow's,\nAnd many an orphan's water-standing eye--\nMen for their sons, wives for their husbands,\nAnd orphans for their parents timeless death--\nShall rue the hour that ever thou wast born.\nThe owl shriek'd at thy birth,--an evil sign;\nThe night-crow cried, aboding luckless time;\nDogs howl'd, and hideous tempest shook down trees;\nThe raven rook'd her on the chimney's top,\nAnd chattering pies in dismal discords sung.\nThy mother felt more than a mother's pain,\nAnd, yet brought forth less than a mother's hope,\nTo wit, an indigested and deformed lump,\nNot like the fruit of such a goodly tree.\nTeeth hadst thou in thy head when thou wast born,\nTo signify thou camest to bite the world:\nAnd, if the rest be true which I have heard,\nThou camest--\n\nGLOUCESTER:\nI'll hear no more: die, prophet in thy speech:\nFor this amongst the rest, was I ordain'd.\n\nKING HENRY VI:\nAy, and for much more slaughter after this.\nGod forgive my sins, and pardon thee!\n\nGLOUCESTER:\nWhat, will the aspiring blood of Lancaster\nSink in the ground? I thought it would have mounted.\nSee how my sword weeps for the poor king's death!\nO, may such purple tears be alway shed\nFrom those that wish the downfall of our house!\nIf any spark of life be yet remaining,\nDown, down to hell; and say I sent thee thither:\nI, that have neither pity, love, nor fear.\nIndeed, 'tis true that Henry told me of;\nFor I have often heard my mother say\nI came into the world with my legs forward:\nHad I not reason, think ye, to make haste,\nAnd seek their ruin that usurp'd our right?\nThe midwife wonder'd and the women cried\n'O, Jesus bless us, he is born with teeth!'\nAnd so I was; which plainly signified\nThat I should snarl and bite and play the dog.\nThen, since the heavens have shaped my body so,\nLet hell make crook'd my mind to answer it.\nI have no brother, I am like no brother;\nAnd this word 'love,' which graybeards call divine,\nBe resident in men like one another\nAnd not in me: I am myself alone.\nClarence, beware; thou keep'st me from the light:\nBut I will sort a pitchy day for thee;\nFor I will buz abroad such prophecies\nThat Edward shall be fearful of his life,\nAnd then, to purge his fear, I'll be thy death.\nKing Henry and the prince his son are gone:\nClarence, thy turn is next, and then the rest,\nCounting myself but bad till I be best.\nI'll throw thy body in another room\nAnd triumph, Henry, in thy day of doom.\n3 KING HENRY VI\n\nKING EDWARD IV:\nOnce more we sit in England's royal throne,\nRe-purchased with the blood of enemies.\nWhat valiant foemen, like to autumn's corn,\nHave we mow'd down, in tops of all their pride!\nThree Dukes of Somerset, threefold renown'd\nFor hardy and undoubted champions;\nTwo Cliffords, as the father and the son,\nAnd two Northumberlands; two braver men\nNe'er spurr'd their coursers at the trumpet's sound;\nWith them, the two brave bears, Warwick and Montague,\nThat in their chains fetter'd the kingly lion\nAnd made the forest tremble when they roar'd.\nThus have we swept suspicion from our seat\nAnd made our footstool of security.\nCome hither, Bess, and let me kiss my boy.\nYoung Ned, for thee, thine uncles and myself\nHave in our armours watch'd the winter's night,\nWent all afoot in summer's scalding heat,\nThat thou mightst repossess the crown in peace;\nAnd of our labours thou shalt reap the gain.\n\nGLOUCESTER:\n\nKING EDWARD IV:\nClarence and Gloucester, love my lovely queen;\nAnd kiss your princely nephew, brothers both.\n\nCLARENCE:\nThe duty that I owe unto your majesty\nI seal upon the lips of this sweet babe.\n\nQUEEN ELIZABETH:\nThanks, noble Clarence; worthy brother, thanks.\n\nGLOUCESTER:\nAnd, that I love the tree from whence thou sprang'st,\nWitness the loving kiss I give the fruit.\n\nKING EDWARD IV:\nNow am I seated as my soul delights,\nHaving my country's peace and brothers' loves.\n\nCLARENCE:\nWhat will your grace have done with Margaret?\nReignier, her father, to the king of France\nHath pawn'd the Sicils and Jerusalem,\nAnd hither have they sent it for her ransom.\n\nKING EDWARD IV:\nAway with her, and waft her hence to France.\nAnd now what rests but that we spend the time\nWith stately triumphs, mirthful comic shows,\nSuch as befits the pleasure of the court?\nSound drums and trumpets! farewell sour annoy!\nFor here, I hope, begins our lasting joy.\n\nARCHIDAMUS:\nIf you shall chance, Camillo, to visit Bohemia, on\nthe like occasion whereon my services are now on\nfoot, you shall see, as I have said, great\ndifference betwixt our Bohemia and your Sicilia.\n\nCAMILLO:\nI think, this coming summer, the King of Sicilia\nmeans to pay Bohemia the visitation which he justly owes him.\n\nARCHIDAMUS:\nWherein our entertainment shall shame us we will be\njustified in our loves; for indeed--\n\nCAMILLO:\nBeseech you,--\n\nARCHIDAMUS:\nVerily, I speak it in the freedom of my knowledge:\nwe cannot with such magnificence--in so rare--I know\nnot what to say. We will give you sleepy drinks,\nthat your senses, unintelligent of our insufficience,\nmay, though they cannot praise us, as little accuse\nus.\n\nCAMILLO:\nYou pay a great deal too dear for what's given freely.\n\nARCHIDAMUS:\nBelieve me, I speak as my understanding instructs me\nand as mine honesty puts it to utterance.\n\nCAMILLO:\nSicilia cannot show himself over-kind to Bohemia.\nThey were trained together in their childhoods; and\nthere rooted betwixt them then such an affection,\nwhich cannot choose but branch now. Since their\nmore mature dignities and royal necessities made\nseparation of their society, their encounters,\nthough not personal, have been royally attorneyed\nwith interchange of gifts, letters, loving\nembassies; that they have seemed to be together,\nthough absent, shook hands, as over a vast, and\nembraced, as it were, from the ends of opposed\nwinds. The heavens continue their loves!\n\nARCHIDAMUS:\nI think there is not in the world either malice or\nmatter to alter it. You have an unspeakable\ncomfort of your young prince Mamillius: it is a\ngentleman of the greatest promise that ever came\ninto my note.\n\nCAMILLO:\nI very well agree with you in the hopes of him: it\nis a gallant child; one that indeed physics the\nsubject, makes old hearts fresh: they that went on\ncrutches ere he was born desire yet their life to\nsee him a man.\n\nARCHIDAMUS:\nWould they else be content to die?\n\nCAMILLO:\nYes; if there were no other excuse why they should\ndesire to live.\n\nARCHIDAMUS:\nIf the king had no son, they would desire to live\non crutches till he had one.\n\nPOLIXENES:\nNine changes of the watery star hath been\nThe shepherd's note since we have left our throne\nWithout a burthen: time as long again\nWould be find up, my brother, with our thanks;\nAnd yet we should, for perpetuity,\nGo hence in debt: and therefore, like a cipher,\nYet standing in rich place, I multiply\nWith one 'We thank you' many thousands moe\nThat go before it.\n\nLEONTES:\nStay your thanks a while;\nAnd pay them when you part.\n\nPOLIXENES:\nSir, that's to-morrow.\nI am question'd by my fears, of what may chance\nOr breed upon our absence; that may blow\nNo sneaping winds at home, to make us say\n'This is put forth too truly:' besides, I have stay'd\nTo tire your royalty.\n\nLEONTES:\nWe are tougher, brother,\nThan you can put us to't.\n\nPOLIXENES:\nNo longer stay.\n\nLEONTES:\nOne seven-night longer.\n\nPOLIXENES:\nVery sooth, to-morrow.\n\nLEONTES:\nWe'll part the time between's then; and in that\nI'll no gainsaying.\n\nPOLIXENES:\nPress me not, beseech you, so.\nThere is no tongue that moves, none, none i' the world,\nSo soon as yours could win me: so it should now,\nWere there necessity in your request, although\n'Twere needful I denied it. My affairs\nDo even drag me homeward: which to hinder\nWere in your love a whip to me; my stay\nTo you a charge and trouble: to save both,\nFarewell, our brother.\n\nLEONTES:\nTongue-tied, our queen?\nspeak you.\n\nHERMIONE:\nI had thought, sir, to have held my peace until\nYou have drawn oaths from him not to stay. You, sir,\nCharge him too coldly. Tell him, you are sure\nAll in Bohemia's well; this satisfaction\nThe by-gone day proclaim'd: say this to him,\nHe's beat from his best ward.\n\nLEONTES:\nWell said, Hermione.\n\nHERMIONE:\nTo tell, he longs to see his son, were strong:\nBut let him say so then, and let him go;\nBut let him swear so, and he shall not stay,\nWe'll thwack him hence with distaffs.\nYet of your royal presence I'll adventure\nThe borrow of a week. When at Bohemia\nYou take my lord, I'll give him my commission\nTo let him there a month behind the gest\nPrefix'd for's parting: yet, good deed, Leontes,\nI love thee not a jar o' the clock behind\nWhat lady-she her lord. You'll stay?\n\nPOLIXENES:\nNo, madam.\n\nHERMIONE:\nNay, but you will?\n\nPOLIXENES:\nI may not, verily.\n\nHERMIONE:\nVerily!\nYou put me off with limber vows; but I,\nThough you would seek to unsphere the\nstars with oaths,\nShould yet say 'Sir, no going.' Verily,\nYou shall not go: a lady's 'Verily' 's\nAs potent as a lord's. Will you go yet?\nForce me to keep you as a prisoner,\nNot like a guest; so you shall pay your fees\nWhen you depart, and save your thanks. How say you?\nMy prisoner? or my guest? by your dread 'Verily,'\nOne of them you shall be.\n\nPOLIXENES:\nYour guest, then, madam:\nTo be your prisoner should import offending;\nWhich is for me less easy to commit\nThan you to punish.\n\nHERMIONE:\nNot your gaoler, then,\nBut your kind hostess. Come, I'll question you\nOf my lord's tricks and yours when you were boys:\nYou were pretty lordings then?\n\nPOLIXENES:\nWe were, fair queen,\nTwo lads that thought there was no more behind\nBut such a day to-morrow as to-day,\nAnd to be boy eternal.\n\nHERMIONE:\nWas not my lord\nThe verier wag o' the two?\n\nPOLIXENES:\nWe were as twinn'd lambs that did frisk i' the sun,\nAnd bleat the one at the other: what we changed\nWas innocence for innocence; we knew not\nThe doctrine of ill-doing, nor dream'd\nThat any did. Had we pursued that life,\nAnd our weak spirits ne'er been higher rear'd\nWith stronger blood, we should have answer'd heaven\nBoldly 'not guilty;' the imposition clear'd\nHereditary ours.\n\nHERMIONE:\nBy this we gather\nYou have tripp'd since.\n\nPOLIXENES:\nO my most sacred lady!\nTemptations have since then been born to's; for\nIn those unfledged days was my wife a girl;\nYour precious self had then not cross'd the eyes\nOf my young play-fellow.\n\nHERMIONE:\nGrace to boot!\nOf this make no conclusion, lest you say\nYour queen and I are devils: yet go on;\nThe offences we have made you do we'll answer,\nIf you first sinn'd with us and that with us\nYou did continue fault and that you slipp'd not\nWith any but with us.\n\nLEONTES:\nIs he won yet?\n\nHERMIONE:\nHe'll stay my lord.\n\nLEONTES:\nAt my request he would not.\nHermione, my dearest, thou never spokest\nTo better purpose.\n\nHERMIONE:\nNever?\n\nLEONTES:\nNever, but once.\n\nHERMIONE:\nWhat! have I twice said well? when was't before?\nI prithee tell me; cram's with praise, and make's\nAs fat as tame things: one good deed dying tongueless\nSlaughters a thousand waiting upon that.\nOur praises are our wages: you may ride's\nWith one soft kiss a thousand furlongs ere\nWith spur we beat an acre. But to the goal:\nMy last good deed was to entreat his stay:\nWhat was my first? it has an elder sister,\nOr I mistake you: O, would her name were Grace!\nBut once before I spoke to the purpose: when?\nNay, let me have't; I long.\n\nLEONTES:\nWhy, that was when\nThree crabbed months had sour'd themselves to death,\nEre I could make thee open thy white hand\nAnd clap thyself my love: then didst thou utter\n'I am yours for ever.'\n\nHERMIONE:\n'Tis grace indeed.\nWhy, lo you now, I have spoke to the purpose twice:\nThe one for ever earn'd a royal husband;\nThe other for some while a friend.\n\nLEONTES:\n\nMAMILLIUS:\nAy, my good lord.\n\nLEONTES:\nI' fecks!\nWhy, that's my bawcock. What, hast\nsmutch'd thy nose?\nThey say it is a copy out of mine. Come, captain,\nWe must be neat; not neat, but cleanly, captain:\nAnd yet the steer, the heifer and the calf\nAre all call'd neat.--Still virginalling\nUpon his palm!--How now, you wanton calf!\nArt thou my calf?\n\nMAMILLIUS:\nYes, if you will, my lord.\n\nLEONTES:\nThou want'st a rough pash and the shoots that I have,\nTo be full like me: yet they say we are\nAlmost as like as eggs; women say so,\nThat will say anything but were they false\nAs o'er-dyed blacks, as wind, as waters, false\nAs dice are to be wish'd by one that fixes\nNo bourn 'twixt his and mine, yet were it true\nTo say this boy were like me. Come, sir page,\nLook on me with your welkin eye: sweet villain!\nMost dear'st! my collop! Can thy dam?--may't be?--\nAffection! thy intention stabs the centre:\nThou dost make possible things not so held,\nCommunicatest with dreams;--how can this be?--\nWith what's unreal thou coactive art,\nAnd fellow'st nothing: then 'tis very credent\nThou mayst co-join with something; and thou dost,\nAnd that beyond commission, and I find it,\nAnd that to the infection of my brains\nAnd hardening of my brows.\n\nPOLIXENES:\nWhat means Sicilia?\n\nHERMIONE:\nHe something seems unsettled.\n\nPOLIXENES:\nHow, my lord!\nWhat cheer? how is't with you, best brother?\n\nHERMIONE:\nYou look as if you held a brow of much distraction\nAre you moved, my lord?\n\nLEONTES:\nNo, in good earnest.\nHow sometimes nature will betray its folly,\nIts tenderness, and make itself a pastime\nTo harder bosoms! Looking on the lines\nOf my boy's face, methoughts I did recoil\nTwenty-three years, and saw myself unbreech'd,\nIn my green velvet coat, my dagger muzzled,\nLest it should bite its master, and so prove,\nAs ornaments oft do, too dangerous:\nHow like, methought, I then was to this kernel,\nThis squash, this gentleman. Mine honest friend,\nWill you take eggs for money?\n\nMAMILLIUS:\nNo, my lord, I'll fight.\n\nLEONTES:\nYou will! why, happy man be's dole! My brother,\nAre you so fond of your young prince as we\nDo seem to be of ours?\n\nPOLIXENES:\nIf at home, sir,\nHe's all my exercise, my mirth, my matter,\nNow my sworn friend and then mine enemy,\nMy parasite, my soldier, statesman, all:\nHe makes a July's day short as December,\nAnd with his varying childness cures in me\nThoughts that would thick my blood.\n\nLEONTES:\nSo stands this squire\nOfficed with me: we two will walk, my lord,\nAnd leave you to your graver steps. Hermione,\nHow thou lovest us, show in our brother's welcome;\nLet what is dear in Sicily be cheap:\nNext to thyself and my young rover, he's\nApparent to my heart.\n\nHERMIONE:\nIf you would seek us,\nWe are yours i' the garden: shall's attend you there?\n\nLEONTES:\nTo your own bents dispose you: you'll be found,\nBe you beneath the sky.\nI am angling now,\nThough you perceive me not how I give line.\nGo to, go to!\nHow she holds up the neb, the bill to him!\nAnd arms her with the boldness of a wife\nTo her allowing husband!\nGone already!\nInch-thick, knee-deep, o'er head and\nears a fork'd one!\nGo, play, boy, play: thy mother plays, and I\nPlay too, but so disgraced a part, whose issue\nWill hiss me to my grave: contempt and clamour\nWill be my knell. Go, play, boy, play.\nThere have been,\nOr I am much deceived, cuckolds ere now;\nAnd many a man there is, even at this present,\nNow while I speak this, holds his wife by the arm,\nThat little thinks she has been sluiced in's absence\nAnd his pond fish'd by his next neighbour, by\nSir Smile, his neighbour: nay, there's comfort in't\nWhiles other men have gates and those gates open'd,\nAs mine, against their will. Should all despair\nThat have revolted wives, the tenth of mankind\nWould hang themselves. Physic for't there is none;\nIt is a bawdy planet, that will strike\nWhere 'tis predominant; and 'tis powerful, think it,\nFrom east, west, north and south: be it concluded,\nNo barricado for a belly; know't;\nIt will let in and out the enemy\nWith bag and baggage: many thousand on's\nHave the disease, and feel't not. How now, boy!\n\nMAMILLIUS:\nI am like you, they say.\n\nLEONTES:\nWhy that's some comfort. What, Camillo there?\n\nCAMILLO:\nAy, my good lord.\n\nLEONTES:\nGo play, Mamillius; thou'rt an honest man.\nCamillo, this great sir will yet stay longer.\n\nCAMILLO:\nYou had much ado to make his anchor hold:\nWhen you cast out, it still came home.\n\nLEONTES:\nDidst note it?\n\nCAMILLO:\nHe would not stay at your petitions: made\nHis business more material.\n\nLEONTES:\nDidst perceive it?\nThey're here with me already, whispering, rounding\n'Sicilia is a so-forth:' 'tis far gone,\nWhen I shall gust it last. How came't, Camillo,\nThat he did stay?\n\nCAMILLO:\nAt the good queen's entreaty.\n\nLEONTES:\nAt the queen's be't: 'good' should be pertinent\nBut, so it is, it is not. Was this taken\nBy any understanding pate but thine?\nFor thy conceit is soaking, will draw in\nMore than the common blocks: not noted, is't,\nBut of the finer natures? by some severals\nOf head-piece extraordinary? lower messes\nPerchance are to this business purblind? say.\n\nCAMILLO:\nBusiness, my lord! I think most understand\nBohemia stays here longer.\n\nLEONTES:\nHa!\n\nCAMILLO:\nStays here longer.\n\nLEONTES:\nAy, but why?\n\nCAMILLO:\nTo satisfy your highness and the entreaties\nOf our most gracious mistress.\n\nLEONTES:\nSatisfy!\nThe entreaties of your mistress! satisfy!\nLet that suffice. I have trusted thee, Camillo,\nWith all the nearest things to my heart, as well\nMy chamber-councils, wherein, priest-like, thou\nHast cleansed my bosom, I from thee departed\nThy penitent reform'd: but we have been\nDeceived in thy integrity, deceived\nIn that which seems so.\n\nCAMILLO:\nBe it forbid, my lord!\n\nLEONTES:\nTo bide upon't, thou art not honest, or,\nIf thou inclinest that way, thou art a coward,\nWhich hoxes honesty behind, restraining\nFrom course required; or else thou must be counted\nA servant grafted in my serious trust\nAnd therein negligent; or else a fool\nThat seest a game play'd home, the rich stake drawn,\nAnd takest it all for jest.\n\nCAMILLO:\nMy gracious lord,\nI may be negligent, foolish and fearful;\nIn every one of these no man is free,\nBut that his negligence, his folly, fear,\nAmong the infinite doings of the world,\nSometime puts forth. In your affairs, my lord,\nIf ever I were wilful-negligent,\nIt was my folly; if industriously\nI play'd the fool, it was my negligence,\nNot weighing well the end; if ever fearful\nTo do a thing, where I the issue doubted,\nWhere of the execution did cry out\nAgainst the non-performance, 'twas a fear\nWhich oft infects the wisest: these, my lord,\nAre such allow'd infirmities that honesty\nIs never free of. But, beseech your grace,\nBe plainer with me; let me know my trespass\nBy its own visage: if I then deny it,\n'Tis none of mine.\n\nLEONTES:\nHa' not you seen, Camillo,--\nBut that's past doubt, you have, or your eye-glass\nIs thicker than a cuckold's horn,--or heard,--\nFor to a vision so apparent rumour\nCannot be mute,--or thought,--for cogitation\nResides not in that man that does not think,--\nMy wife is slippery? If thou wilt confess,\nOr else be impudently negative,\nTo have nor eyes nor ears nor thought, then say\nMy wife's a hobby-horse, deserves a name\nAs rank as any flax-wench that puts to\nBefore her troth-plight: say't and justify't.\n\nCAMILLO:\nI would not be a stander-by to hear\nMy sovereign mistress clouded so, without\nMy present vengeance taken: 'shrew my heart,\nYou never spoke what did become you less\nThan this; which to reiterate were sin\nAs deep as that, though true.\n\nLEONTES:\nIs whispering nothing?\nIs leaning cheek to cheek? is meeting noses?\nKissing with inside lip? stopping the career\nOf laughing with a sigh?--a note infallible\nOf breaking honesty--horsing foot on foot?\nSkulking in corners? wishing clocks more swift?\nHours, minutes? noon, midnight? and all eyes\nBlind with the pin and web but theirs, theirs only,\nThat would unseen be wicked? is this nothing?\nWhy, then the world and all that's in't is nothing;\nThe covering sky is nothing; Bohemia nothing;\nMy wife is nothing; nor nothing have these nothings,\nIf this be nothing.\n\nCAMILLO:\nGood my lord, be cured\nOf this diseased opinion, and betimes;\nFor 'tis most dangerous.\n\nLEONTES:\nSay it be, 'tis true.\n\nCAMILLO:\nNo, no, my lord.\n\nLEONTES:\nIt is; you lie, you lie:\nI say thou liest, Camillo, and I hate thee,\nPronounce thee a gross lout, a mindless slave,\nOr else a hovering temporizer, that\nCanst with thine eyes at once see good and evil,\nInclining to them both: were my wife's liver\nInfected as her life, she would not live\nThe running of one glass.\n\nCAMILLO:\nWho does infect her?\n\nLEONTES:\nWhy, he that wears her like a medal, hanging\nAbout his neck, Bohemia: who, if I\nHad servants true about me, that bare eyes\nTo see alike mine honour as their profits,\nTheir own particular thrifts, they would do that\nWhich should undo more doing: ay, and thou,\nHis cupbearer,--whom I from meaner form\nHave benched and reared to worship, who mayst see\nPlainly as heaven sees earth and earth sees heaven,\nHow I am galled,--mightst bespice a cup,\nTo give mine enemy a lasting wink;\nWhich draught to me were cordial.\n\nCAMILLO:\nSir, my lord,\nI could do this, and that with no rash potion,\nBut with a lingering dram that should not work\nMaliciously like poison: but I cannot\nBelieve this crack to be in my dread mistress,\nSo sovereignly being honourable.\nI have loved thee,--\n\nLEONTES:\nMake that thy question, and go rot!\nDost think I am so muddy, so unsettled,\nTo appoint myself in this vexation, sully\nThe purity and whiteness of my sheets,\nWhich to preserve is sleep, which being spotted\nIs goads, thorns, nettles, tails of wasps,\nGive scandal to the blood o' the prince my son,\nWho I do think is mine and love as mine,\nWithout ripe moving to't? Would I do this?\nCould man so blench?\n\nCAMILLO:\nI must believe you, sir:\nI do; and will fetch off Bohemia for't;\nProvided that, when he's removed, your highness\nWill take again your queen as yours at first,\nEven for your son's sake; and thereby for sealing\nThe injury of tongues in courts and kingdoms\nKnown and allied to yours.\n\nLEONTES:\nThou dost advise me\nEven so as I mine own course have set down:\nI'll give no blemish to her honour, none.\n\nCAMILLO:\nMy lord,\nGo then; and with a countenance as clear\nAs friendship wears at feasts, keep with Bohemia\nAnd with your queen. I am his cupbearer:\nIf from me he have wholesome beverage,\nAccount me not your servant.\n\nLEONTES:\nThis is all:\nDo't and thou hast the one half of my heart;\nDo't not, thou split'st thine own.\n\nCAMILLO:\nI'll do't, my lord.\n\nLEONTES:\nI will seem friendly, as thou hast advised me.\n\nCAMILLO:\nO miserable lady! But, for me,\nWhat case stand I in? I must be the poisoner\nOf good Polixenes; and my ground to do't\nIs the obedience to a master, one\nWho in rebellion with himself will have\nAll that are his so too. To do this deed,\nPromotion follows. If I could find example\nOf thousands that had struck anointed kings\nAnd flourish'd after, I'ld not do't; but since\nNor brass nor stone nor parchment bears not one,\nLet villany itself forswear't. I must\nForsake the court: to do't, or no, is certain\nTo me a break-neck. Happy star, reign now!\nHere comes Bohemia.\n\nPOLIXENES:\nThis is strange: methinks\nMy favour here begins to warp. Not speak?\nGood day, Camillo.\n\nCAMILLO:\nHail, most royal sir!\n\nPOLIXENES:\nWhat is the news i' the court?\n\nCAMILLO:\nNone rare, my lord.\n\nPOLIXENES:\nThe king hath on him such a countenance\nAs he had lost some province and a region\nLoved as he loves himself: even now I met him\nWith customary compliment; when he,\nWafting his eyes to the contrary and falling\nA lip of much contempt, speeds from me and\nSo leaves me to consider what is breeding\nThat changeth thus his manners.\n\nCAMILLO:\nI dare not know, my lord.\n\nPOLIXENES:\nHow! dare not! do not. Do you know, and dare not?\nBe intelligent to me: 'tis thereabouts;\nFor, to yourself, what you do know, you must.\nAnd cannot say, you dare not. Good Camillo,\nYour changed complexions are to me a mirror\nWhich shows me mine changed too; for I must be\nA party in this alteration, finding\nMyself thus alter'd with 't.\n\nCAMILLO:\nThere is a sickness\nWhich puts some of us in distemper, but\nI cannot name the disease; and it is caught\nOf you that yet are well.\n\nPOLIXENES:\nHow! caught of me!\nMake me not sighted like the basilisk:\nI have look'd on thousands, who have sped the better\nBy my regard, but kill'd none so. Camillo,--\nAs you are certainly a gentleman, thereto\nClerk-like experienced, which no less adorns\nOur gentry than our parents' noble names,\nIn whose success we are gentle,--I beseech you,\nIf you know aught which does behove my knowledge\nThereof to be inform'd, imprison't not\nIn ignorant concealment.\n\nCAMILLO:\nI may not answer.\n\nPOLIXENES:\nA sickness caught of me, and yet I well!\nI must be answer'd. Dost thou hear, Camillo,\nI conjure thee, by all the parts of man\nWhich honour does acknowledge, whereof the least\nIs not this suit of mine, that thou declare\nWhat incidency thou dost guess of harm\nIs creeping toward me; how far off, how near;\nWhich way to be prevented, if to be;\nIf not, how best to bear it.\n\nCAMILLO:\nSir, I will tell you;\nSince I am charged in honour and by him\nThat I think honourable: therefore mark my counsel,\nWhich must be even as swiftly follow'd as\nI mean to utter it, or both yourself and me\nCry lost, and so good night!\n\nPOLIXENES:\nOn, good Camillo.\n\nCAMILLO:\nI am appointed him to murder you.\n\nPOLIXENES:\nBy whom, Camillo?\n\nCAMILLO:\nBy the king.\n\nPOLIXENES:\nFor what?\n\nCAMILLO:\nHe thinks, nay, with all confidence he swears,\nAs he had seen't or been an instrument\nTo vice you to't, that you have touch'd his queen\nForbiddenly.\n\nPOLIXENES:\nO, then my best blood turn\nTo an infected jelly and my name\nBe yoked with his that did betray the Best!\nTurn then my freshest reputation to\nA savour that may strike the dullest nostril\nWhere I arrive, and my approach be shunn'd,\nNay, hated too, worse than the great'st infection\nThat e'er was heard or read!\n\nCAMILLO:\nSwear his thought over\nBy each particular star in heaven and\nBy all their influences, you may as well\nForbid the sea for to obey the moon\nAs or by oath remove or counsel shake\nThe fabric of his folly, whose foundation\nIs piled upon his faith and will continue\nThe standing of his body.\n\nPOLIXENES:\nHow should this grow?\n\nCAMILLO:\nI know not: but I am sure 'tis safer to\nAvoid what's grown than question how 'tis born.\nIf therefore you dare trust my honesty,\nThat lies enclosed in this trunk which you\nShall bear along impawn'd, away to-night!\nYour followers I will whisper to the business,\nAnd will by twos and threes at several posterns\nClear them o' the city. For myself, I'll put\nMy fortunes to your service, which are here\nBy this discovery lost. Be not uncertain;\nFor, by the honour of my parents, I\nHave utter'd truth: which if you seek to prove,\nI dare not stand by; nor shall you be safer\nThan one condemn'd by the king's own mouth, thereon\nHis execution sworn.\n\nPOLIXENES:\nI do believe thee:\nI saw his heart in 's face. Give me thy hand:\nBe pilot to me and thy places shall\nStill neighbour mine. My ships are ready and\nMy people did expect my hence departure\nTwo days ago. This jealousy\nIs for a precious creature: as she's rare,\nMust it be great, and as his person's mighty,\nMust it be violent, and as he does conceive\nHe is dishonour'd by a man which ever\nProfess'd to him, why, his revenges must\nIn that be made more bitter. Fear o'ershades me:\nGood expedition be my friend, and comfort\nThe gracious queen, part of his theme, but nothing\nOf his ill-ta'en suspicion! Come, Camillo;\nI will respect thee as a father if\nThou bear'st my life off hence: let us avoid.\n\nCAMILLO:\nIt is in mine authority to command\nThe keys of all the posterns: please your highness\nTo take the urgent hour. Come, sir, away.\n\nHERMIONE:\nTake the boy to you: he so troubles me,\n'Tis past enduring.\n\nFirst Lady:\nCome, my gracious lord,\nShall I be your playfellow?\n\nMAMILLIUS:\nNo, I'll none of you.\n\nFirst Lady:\nWhy, my sweet lord?\n\nMAMILLIUS:\nYou'll kiss me hard and speak to me as if\nI were a baby still. I love you better.\n\nSecond Lady:\nAnd why so, my lord?\n\nMAMILLIUS:\nNot for because\nYour brows are blacker; yet black brows, they say,\nBecome some women best, so that there be not\nToo much hair there, but in a semicircle\nOr a half-moon made with a pen.\n\nSecond Lady:\nWho taught you this?\n\nMAMILLIUS:\nI learnt it out of women's faces. Pray now\nWhat colour are your eyebrows?\n\nFirst Lady:\nBlue, my lord.\n\nMAMILLIUS:\nNay, that's a mock: I have seen a lady's nose\nThat has been blue, but not her eyebrows.\n\nFirst Lady:\nHark ye;\nThe queen your mother rounds apace: we shall\nPresent our services to a fine new prince\nOne of these days; and then you'ld wanton with us,\nIf we would have you.\n\nSecond Lady:\nShe is spread of late\nInto a goodly bulk: good time encounter her!\n\nHERMIONE:\nWhat wisdom stirs amongst you? Come, sir, now\nI am for you again: pray you, sit by us,\nAnd tell 's a tale.\n\nMAMILLIUS:\nMerry or sad shall't be?\n\nHERMIONE:\nAs merry as you will.\n\nMAMILLIUS:\nA sad tale's best for winter: I have one\nOf sprites and goblins.\n\nHERMIONE:\nLet's have that, good sir.\nCome on, sit down: come on, and do your best\nTo fright me with your sprites; you're powerful at it.\n\nMAMILLIUS:\nThere was a man--\n\nHERMIONE:\nNay, come, sit down; then on.\n\nMAMILLIUS:\nDwelt by a churchyard: I will tell it softly;\nYond crickets shall not hear it.\n\nHERMIONE:\nCome on, then,\nAnd give't me in mine ear.\n\nLEONTES:\nWas he met there? his train? Camillo with him?\n\nFirst Lord:\nBehind the tuft of pines I met them; never\nSaw I men scour so on their way: I eyed them\nEven to their ships.\n\nLEONTES:\nHow blest am I\nIn my just censure, in my true opinion!\nAlack, for lesser knowledge! how accursed\nIn being so blest! There may be in the cup\nA spider steep'd, and one may drink, depart,\nAnd yet partake no venom, for his knowledge\nIs not infected: but if one present\nThe abhorr'd ingredient to his eye, make known\nHow he hath drunk, he cracks his gorge, his sides,\nWith violent hefts. I have drunk,\nand seen the spider.\nCamillo was his help in this, his pander:\nThere is a plot against my life, my crown;\nAll's true that is mistrusted: that false villain\nWhom I employ'd was pre-employ'd by him:\nHe has discover'd my design, and I\nRemain a pinch'd thing; yea, a very trick\nFor them to play at will. How came the posterns\nSo easily open?\n\nFirst Lord:\nBy his great authority;\nWhich often hath no less prevail'd than so\nOn your command.\n\nLEONTES:\nI know't too well.\nGive me the boy: I am glad you did not nurse him:\nThough he does bear some signs of me, yet you\nHave too much blood in him.\n\nHERMIONE:\nWhat is this? sport?\n\nLEONTES:\nBear the boy hence; he shall not come about her;\nAway with him! and let her sport herself\nWith that she's big with; for 'tis Polixenes\nHas made thee swell thus.\n\nHERMIONE:\nBut I'ld say he had not,\nAnd I'll be sworn you would believe my saying,\nHowe'er you lean to the nayward.\n\nLEONTES:\nYou, my lords,\nLook on her, mark her well; be but about\nTo say 'she is a goodly lady,' and\nThe justice of your bearts will thereto add\n'Tis pity she's not honest, honourable:'\nPraise her but for this her without-door form,\nWhich on my faith deserves high speech, and straight\nThe shrug, the hum or ha, these petty brands\nThat calumny doth use--O, I am out--\nThat mercy does, for calumny will sear\nVirtue itself: these shrugs, these hums and ha's,\nWhen you have said 'she's goodly,' come between\nEre you can say 'she's honest:' but be 't known,\nFrom him that has most cause to grieve it should be,\nShe's an adulteress.\n\nHERMIONE:\nShould a villain say so,\nThe most replenish'd villain in the world,\nHe were as much more villain: you, my lord,\nDo but mistake.\n\nLEONTES:\nYou have mistook, my lady,\nPolixenes for Leontes: O thou thing!\nWhich I'll not call a creature of thy place,\nLest barbarism, making me the precedent,\nShould a like language use to all degrees\nAnd mannerly distinguishment leave out\nBetwixt the prince and beggar: I have said\nShe's an adulteress; I have said with whom:\nMore, she's a traitor and Camillo is\nA federary with her, and one that knows\nWhat she should shame to know herself\nBut with her most vile principal, that she's\nA bed-swerver, even as bad as those\nThat vulgars give bold'st titles, ay, and privy\nTo this their late escape.\n\nHERMIONE:\nNo, by my life.\nPrivy to none of this. How will this grieve you,\nWhen you shall come to clearer knowledge, that\nYou thus have publish'd me! Gentle my lord,\nYou scarce can right me throughly then to say\nYou did mistake.\n\nLEONTES:\nNo; if I mistake\nIn those foundations which I build upon,\nThe centre is not big enough to bear\nA school-boy's top. Away with her! to prison!\nHe who shall speak for her is afar off guilty\nBut that he speaks.\n\nHERMIONE:\nThere's some ill planet reigns:\nI must be patient till the heavens look\nWith an aspect more favourable. Good my lords,\nI am not prone to weeping, as our sex\nCommonly are; the want of which vain dew\nPerchance shall dry your pities: but I have\nThat honourable grief lodged here which burns\nWorse than tears drown: beseech you all, my lords,\nWith thoughts so qualified as your charities\nShall best instruct you, measure me; and so\nThe king's will be perform'd!\n\nLEONTES:\nShall I be heard?\n\nHERMIONE:\nWho is't that goes with me? Beseech your highness,\nMy women may be with me; for you see\nMy plight requires it. Do not weep, good fools;\nThere is no cause: when you shall know your mistress\nHas deserved prison, then abound in tears\nAs I come out: this action I now go on\nIs for my better grace. Adieu, my lord:\nI never wish'd to see you sorry; now\nI trust I shall. My women, come; you have leave.\n\nLEONTES:\nGo, do our bidding; hence!\n\nFirst Lord:\nBeseech your highness, call the queen again.\n\nANTIGONUS:\nBe certain what you do, sir, lest your justice\nProve violence; in the which three great ones suffer,\nYourself, your queen, your son.\n\nFirst Lord:\nFor her, my lord,\nI dare my life lay down and will do't, sir,\nPlease you to accept it, that the queen is spotless\nI' the eyes of heaven and to you; I mean,\nIn this which you accuse her.\n\nANTIGONUS:\nIf it prove\nShe's otherwise, I'll keep my stables where\nI lodge my wife; I'll go in couples with her;\nThan when I feel and see her no farther trust her;\nFor every inch of woman in the world,\nAy, every dram of woman's flesh is false, If she be.\n\nLEONTES:\nHold your peaces.\n\nFirst Lord:\nGood my lord,--\n\nANTIGONUS:\nIt is for you we speak, not for ourselves:\nYou are abused and by some putter-on\nThat will be damn'd for't; would I knew the villain,\nI would land-damn him. Be she honour-flaw'd,\nI have three daughters; the eldest is eleven\nThe second and the third, nine, and some five;\nIf this prove true, they'll pay for't:\nby mine honour,\nI'll geld 'em all; fourteen they shall not see,\nTo bring false generations: they are co-heirs;\nAnd I had rather glib myself than they\nShould not produce fair issue.\n\nLEONTES:\nCease; no more.\nYou smell this business with a sense as cold\nAs is a dead man's nose: but I do see't and feel't\nAs you feel doing thus; and see withal\nThe instruments that feel.\n\nANTIGONUS:\nIf it be so,\nWe need no grave to bury honesty:\nThere's not a grain of it the face to sweeten\nOf the whole dungy earth.\n\nLEONTES:\nWhat! lack I credit?\n\nFirst Lord:\nI had rather you did lack than I, my lord,\nUpon this ground; and more it would content me\nTo have her honour true than your suspicion,\nBe blamed for't how you might.\n\nLEONTES:\nWhy, what need we\nCommune with you of this, but rather follow\nOur forceful instigation? Our prerogative\nCalls not your counsels, but our natural goodness\nImparts this; which if you, or stupefied\nOr seeming so in skill, cannot or will not\nRelish a truth like us, inform yourselves\nWe need no more of your advice: the matter,\nThe loss, the gain, the ordering on't, is all\nProperly ours.\n\nANTIGONUS:\nAnd I wish, my liege,\nYou had only in your silent judgment tried it,\nWithout more overture.\n\nLEONTES:\nHow could that be?\nEither thou art most ignorant by age,\nOr thou wert born a fool. Camillo's flight,\nAdded to their familiarity,\nWhich was as gross as ever touch'd conjecture,\nThat lack'd sight only, nought for approbation\nBut only seeing, all other circumstances\nMade up to the deed, doth push on this proceeding:\nYet, for a greater confirmation,\nFor in an act of this importance 'twere\nMost piteous to be wild, I have dispatch'd in post\nTo sacred Delphos, to Apollo's temple,\nCleomenes and Dion, whom you know\nOf stuff'd sufficiency: now from the oracle\nThey will bring all; whose spiritual counsel had,\nShall stop or spur me. Have I done well?\n\nFirst Lord:\nWell done, my lord.\n\nLEONTES:\nThough I am satisfied and need no more\nThan what I know, yet shall the oracle\nGive rest to the minds of others, such as he\nWhose ignorant credulity will not\nCome up to the truth. So have we thought it good\nFrom our free person she should be confined,\nLest that the treachery of the two fled hence\nBe left her to perform. Come, follow us;\nWe are to speak in public; for this business\nWill raise us all.\n\nANTIGONUS:\n\nPAULINA:\nThe keeper of the prison, call to him;\nlet him have knowledge who I am.\nGood lady,\nNo court in Europe is too good for thee;\nWhat dost thou then in prison?\nNow, good sir,\nYou know me, do you not?\n\nGaoler:\nFor a worthy lady\nAnd one whom much I honour.\n\nPAULINA:\nPray you then,\nConduct me to the queen.\n\nGaoler:\nI may not, madam:\nTo the contrary I have express commandment.\n\nPAULINA:\nHere's ado,\nTo lock up honesty and honour from\nThe access of gentle visitors!\nIs't lawful, pray you,\nTo see her women? any of them? Emilia?\n\nGaoler:\nSo please you, madam,\nTo put apart these your attendants, I\nShall bring Emilia forth.\n\nPAULINA:\nI pray now, call her.\nWithdraw yourselves.\n\nGaoler:\nAnd, madam,\nI must be present at your conference.\n\nPAULINA:\nWell, be't so, prithee.\nHere's such ado to make no stain a stain\nAs passes colouring.\nDear gentlewoman,\nHow fares our gracious lady?\n\nEMILIA:\nAs well as one so great and so forlorn\nMay hold together: on her frights and griefs,\nWhich never tender lady hath born greater,\nShe is something before her time deliver'd.\n\nPAULINA:\nA boy?\n\nEMILIA:\nA daughter, and a goodly babe,\nLusty and like to live: the queen receives\nMuch comfort in't; says 'My poor prisoner,\nI am innocent as you.'\n\nPAULINA:\nI dare be sworn\nThese dangerous unsafe lunes i' the king,\nbeshrew them!\nHe must be told on't, and he shall: the office\nBecomes a woman best; I'll take't upon me:\nIf I prove honey-mouth'd let my tongue blister\nAnd never to my red-look'd anger be\nThe trumpet any more. Pray you, Emilia,\nCommend my best obedience to the queen:\nIf she dares trust me with her little babe,\nI'll show't the king and undertake to be\nHer advocate to the loud'st. We do not know\nHow he may soften at the sight o' the child:\nThe silence often of pure innocence\nPersuades when speaking fails.\n\nEMILIA:\nMost worthy madam,\nYour honour and your goodness is so evident\nThat your free undertaking cannot miss\nA thriving issue: there is no lady living\nSo meet for this great errand. Please your ladyship\nTo visit the next room, I'll presently\nAcquaint the queen of your most noble offer;\nWho but to-day hammer'd of this design,\nBut durst not tempt a minister of honour,\nLest she should be denied.\n\nPAULINA:\nTell her, Emilia.\nI'll use that tongue I have: if wit flow from't\nAs boldness from my bosom, let 't not be doubted\nI shall do good.\n\nEMILIA:\nNow be you blest for it!\nI'll to the queen: please you,\ncome something nearer.\n\nGaoler:\nMadam, if't please the queen to send the babe,\nI know not what I shall incur to pass it,\nHaving no warrant.\n\nPAULINA:\nYou need not fear it, sir:\nThis child was prisoner to the womb and is\nBy law and process of great nature thence\nFreed and enfranchised, not a party to\nThe anger of the king nor guilty of,\nIf any be, the trespass of the queen.\n\nGaoler:\nI do believe it.\n\nPAULINA:\nDo not you fear: upon mine honour,\nI will stand betwixt you and danger.\n\nLEONTES:\nNor night nor day no rest: it is but weakness\nTo bear the matter thus; mere weakness. If\nThe cause were not in being,--part o' the cause,\nShe the adulteress; for the harlot king\nIs quite beyond mine arm, out of the blank\nAnd level of my brain, plot-proof; but she\nI can hook to me: say that she were gone,\nGiven to the fire, a moiety of my rest\nMight come to me again. Who's there?\n\nFirst Servant:\nMy lord?\n\nLEONTES:\nHow does the boy?\n\nFirst Servant:\nHe took good rest to-night;\n'Tis hoped his sickness is discharged.\n\nLEONTES:\nTo see his nobleness!\nConceiving the dishonour of his mother,\nHe straight declined, droop'd, took it deeply,\nFasten'd and fix'd the shame on't in himself,\nThrew off his spirit, his appetite, his sleep,\nAnd downright languish'd. Leave me solely: go,\nSee how he fares.\nFie, fie! no thought of him:\nThe thought of my revenges that way\nRecoil upon me: in himself too mighty,\nAnd in his parties, his alliance; let him be\nUntil a time may serve: for present vengeance,\nTake it on her. Camillo and Polixenes\nLaugh at me, make their pastime at my sorrow:\nThey should not laugh if I could reach them, nor\nShall she within my power.\n\nFirst Lord:\nYou must not enter.\n\nPAULINA:\nNay, rather, good my lords, be second to me:\nFear you his tyrannous passion more, alas,\nThan the queen's life? a gracious innocent soul,\nMore free than he is jealous.\n\nANTIGONUS:\nThat's enough.\n\nSecond Servant:\nMadam, he hath not slept tonight; commanded\nNone should come at him.\n\nPAULINA:\nNot so hot, good sir:\nI come to bring him sleep. 'Tis such as you,\nThat creep like shadows by him and do sigh\nAt each his needless heavings, such as you\nNourish the cause of his awaking: I\nDo come with words as medicinal as true,\nHonest as either, to purge him of that humour\nThat presses him from sleep.\n\nLEONTES:\nWhat noise there, ho?\n\nPAULINA:\nNo noise, my lord; but needful conference\nAbout some gossips for your highness.\n\nLEONTES:\nHow!\nAway with that audacious lady! Antigonus,\nI charged thee that she should not come about me:\nI knew she would.\n\nANTIGONUS:\nI told her so, my lord,\nOn your displeasure's peril and on mine,\nShe should not visit you.\n\nLEONTES:\nWhat, canst not rule her?\n\nPAULINA:\nFrom all dishonesty he can: in this,\nUnless he take the course that you have done,\nCommit me for committing honour, trust it,\nHe shall not rule me.\n\nANTIGONUS:\nLa you now, you hear:\nWhen she will take the rein I let her run;\nBut she'll not stumble.\n\nPAULINA:\nGood my liege, I come;\nAnd, I beseech you, hear me, who profess\nMyself your loyal servant, your physician,\nYour most obedient counsellor, yet that dare\nLess appear so in comforting your evils,\nThan such as most seem yours: I say, I come\nFrom your good queen.\n\nLEONTES:\nGood queen!\n\nPAULINA:\nGood queen, my lord,\nGood queen; I say good queen;\nAnd would by combat make her good, so were I\nA man, the worst about you.\n\nLEONTES:\nForce her hence.\n\nPAULINA:\nLet him that makes but trifles of his eyes\nFirst hand me: on mine own accord I'll off;\nBut first I'll do my errand. The good queen,\nFor she is good, hath brought you forth a daughter;\nHere 'tis; commends it to your blessing.\n\nLEONTES:\nOut!\nA mankind witch! Hence with her, out o' door:\nA most intelligencing bawd!\n\nPAULINA:\nNot so:\nI am as ignorant in that as you\nIn so entitling me, and no less honest\nThan you are mad; which is enough, I'll warrant,\nAs this world goes, to pass for honest.\n\nLEONTES:\nTraitors!\nWill you not push her out? Give her the bastard.\nThou dotard! thou art woman-tired, unroosted\nBy thy dame Partlet here. Take up the bastard;\nTake't up, I say; give't to thy crone.\n\nPAULINA:\nFor ever\nUnvenerable be thy hands, if thou\nTakest up the princess by that forced baseness\nWhich he has put upon't!\n\nLEONTES:\nHe dreads his wife.\n\nPAULINA:\nSo I would you did; then 'twere past all doubt\nYou'ld call your children yours.\n\nLEONTES:\nA nest of traitors!\n\nANTIGONUS:\nI am none, by this good light.\n\nPAULINA:\nNor I, nor any\nBut one that's here, and that's himself, for he\nThe sacred honour of himself, his queen's,\nHis hopeful son's, his babe's, betrays to slander,\nWhose sting is sharper than the sword's;\nand will not--\nFor, as the case now stands, it is a curse\nHe cannot be compell'd to't--once remove\nThe root of his opinion, which is rotten\nAs ever oak or stone was sound.\n\nLEONTES:\nA callat\nOf boundless tongue, who late hath beat her husband\nAnd now baits me! This brat is none of mine;\nIt is the issue of Polixenes:\nHence with it, and together with the dam\nCommit them to the fire!\n\nPAULINA:\nIt is yours;\nAnd, might we lay the old proverb to your charge,\nSo like you, 'tis the worse. Behold, my lords,\nAlthough the print be little, the whole matter\nAnd copy of the father, eye, nose, lip,\nThe trick of's frown, his forehead, nay, the valley,\nThe pretty dimples of his chin and cheek,\nHis smiles,\nThe very mould and frame of hand, nail, finger:\nAnd thou, good goddess Nature, which hast made it\nSo like to him that got it, if thou hast\nThe ordering of the mind too, 'mongst all colours\nNo yellow in't, lest she suspect, as he does,\nHer children not her husband's!\n\nLEONTES:\nA gross hag\nAnd, lozel, thou art worthy to be hang'd,\nThat wilt not stay her tongue.\n\nANTIGONUS:\nHang all the husbands\nThat cannot do that feat, you'll leave yourself\nHardly one subject.\n\nLEONTES:\nOnce more, take her hence.\n\nPAULINA:\nA most unworthy and unnatural lord\nCan do no more.\n\nLEONTES:\nI'll ha' thee burnt.\n\nPAULINA:\nI care not:\nIt is an heretic that makes the fire,\nNot she which burns in't. I'll not call you tyrant;\nBut this most cruel usage of your queen,\nNot able to produce more accusation\nThan your own weak-hinged fancy, something savours\nOf tyranny and will ignoble make you,\nYea, scandalous to the world.\n\nLEONTES:\nOn your allegiance,\nOut of the chamber with her! Were I a tyrant,\nWhere were her life? she durst not call me so,\nIf she did know me one. Away with her!\n\nPAULINA:\nI pray you, do not push me; I'll be gone.\nLook to your babe, my lord; 'tis yours:\nJove send her\nA better guiding spirit! What needs these hands?\nYou, that are thus so tender o'er his follies,\nWill never do him good, not one of you.\nSo, so: farewell; we are gone.\n\nLEONTES:\nThou, traitor, hast set on thy wife to this.\nMy child? away with't! Even thou, that hast\nA heart so tender o'er it, take it hence\nAnd see it instantly consumed with fire;\nEven thou and none but thou. Take it up straight:\nWithin this hour bring me word 'tis done,\nAnd by good testimony, or I'll seize thy life,\nWith what thou else call'st thine. If thou refuse\nAnd wilt encounter with my wrath, say so;\nThe bastard brains with these my proper hands\nShall I dash out. Go, take it to the fire;\nFor thou set'st on thy wife.\n\nANTIGONUS:\nI did not, sir:\nThese lords, my noble fellows, if they please,\nCan clear me in't.\n\nLords:\nWe can: my royal liege,\nHe is not guilty of her coming hither.\n\nLEONTES:\nYou're liars all.\n\nFirst Lord:\nBeseech your highness, give us better credit:\nWe have always truly served you, and beseech you\nSo to esteem of us, and on our knees we beg,\nAs recompense of our dear services\nPast and to come, that you do change this purpose,\nWhich being so horrible, so bloody, must\nLead on to some foul issue: we all kneel.\n\nLEONTES:\nI am a feather for each wind that blows:\nShall I live on to see this bastard kneel\nAnd call me father? better burn it now\nThan curse it then. But be it; let it live.\nIt shall not neither. You, sir, come you hither;\nYou that have been so tenderly officious\nWith Lady Margery, your midwife there,\nTo save this bastard's life,--for 'tis a bastard,\nSo sure as this beard's grey,\n--what will you adventure\nTo save this brat's life?\n\nANTIGONUS:\nAny thing, my lord,\nThat my ability may undergo\nAnd nobleness impose: at least thus much:\nI'll pawn the little blood which I have left\nTo save the innocent: any thing possible.\n\nLEONTES:\nIt shall be possible. Swear by this sword\nThou wilt perform my bidding.\n\nANTIGONUS:\nI will, my lord.\n\nLEONTES:\nMark and perform it, see'st thou! for the fail\nOf any point in't shall not only be\nDeath to thyself but to thy lewd-tongued wife,\nWhom for this time we pardon. We enjoin thee,\nAs thou art liege-man to us, that thou carry\nThis female bastard hence and that thou bear it\nTo some remote and desert place quite out\nOf our dominions, and that there thou leave it,\nWithout more mercy, to its own protection\nAnd favour of the climate. As by strange fortune\nIt came to us, I do in justice charge thee,\nOn thy soul's peril and thy body's torture,\nThat thou commend it strangely to some place\nWhere chance may nurse or end it. Take it up.\n\nANTIGONUS:\nI swear to do this, though a present death\nHad been more merciful. Come on, poor babe:\nSome powerful spirit instruct the kites and ravens\nTo be thy nurses! Wolves and bears, they say\nCasting their savageness aside have done\nLike offices of pity. Sir, be prosperous\nIn more than this deed does require! And blessing\nAgainst this cruelty fight on thy side,\nPoor thing, condemn'd to loss!\n\nLEONTES:\nNo, I'll not rear\nAnother's issue.\n\nServant:\nPlease your highness, posts\nFrom those you sent to the oracle are come\nAn hour since: Cleomenes and Dion,\nBeing well arrived from Delphos, are both landed,\nHasting to the court.\n\nFirst Lord:\nSo please you, sir, their speed\nHath been beyond account.\n\nLEONTES:\nTwenty-three days\nThey have been absent: 'tis good speed; foretells\nThe great Apollo suddenly will have\nThe truth of this appear. Prepare you, lords;\nSummon a session, that we may arraign\nOur most disloyal lady, for, as she hath\nBeen publicly accused, so shall she have\nA just and open trial. While she lives\nMy heart will be a burthen to me. Leave me,\nAnd think upon my bidding.\n\nCLEOMENES:\nThe climate's delicate, the air most sweet,\nFertile the isle, the temple much surpassing\nThe common praise it bears.\n\nDION:\nI shall report,\nFor most it caught me, the celestial habits,\nMethinks I so should term them, and the reverence\nOf the grave wearers. O, the sacrifice!\nHow ceremonious, solemn and unearthly\nIt was i' the offering!\n\nCLEOMENES:\nBut of all, the burst\nAnd the ear-deafening voice o' the oracle,\nKin to Jove's thunder, so surprised my sense.\nThat I was nothing.\n\nDION:\nIf the event o' the journey\nProve as successful to the queen,--O be't so!--\nAs it hath been to us rare, pleasant, speedy,\nThe time is worth the use on't.\n\nCLEOMENES:\nGreat Apollo\nTurn all to the best! These proclamations,\nSo forcing faults upon Hermione,\nI little like.\n\nDION:\nThe violent carriage of it\nWill clear or end the business: when the oracle,\nThus by Apollo's great divine seal'd up,\nShall the contents discover, something rare\nEven then will rush to knowledge. Go: fresh horses!\nAnd gracious be the issue!\n\nLEONTES:\nThis sessions, to our great grief we pronounce,\nEven pushes 'gainst our heart: the party tried\nThe daughter of a king, our wife, and one\nOf us too much beloved. Let us be clear'd\nOf being tyrannous, since we so openly\nProceed in justice, which shall have due course,\nEven to the guilt or the purgation.\nProduce the prisoner.\n\nOfficer:\nIt is his highness' pleasure that the queen\nAppear in person here in court. Silence!\n\nLEONTES:\nRead the indictment.\n\nOfficer:\n\nHERMIONE:\nSince what I am to say must be but that\nWhich contradicts my accusation and\nThe testimony on my part no other\nBut what comes from myself, it shall scarce boot me\nTo say 'not guilty:' mine integrity\nBeing counted falsehood, shall, as I express it,\nBe so received. But thus: if powers divine\nBehold our human actions, as they do,\nI doubt not then but innocence shall make\nFalse accusation blush and tyranny\nTremble at patience. You, my lord, best know,\nWho least will seem to do so, my past life\nHath been as continent, as chaste, as true,\nAs I am now unhappy; which is more\nThan history can pattern, though devised\nAnd play'd to take spectators. For behold me\nA fellow of the royal bed, which owe\nA moiety of the throne a great king's daughter,\nThe mother to a hopeful prince, here standing\nTo prate and talk for life and honour 'fore\nWho please to come and hear. For life, I prize it\nAs I weigh grief, which I would spare: for honour,\n'Tis a derivative from me to mine,\nAnd only that I stand for. I appeal\nTo your own conscience, sir, before Polixenes\nCame to your court, how I was in your grace,\nHow merited to be so; since he came,\nWith what encounter so uncurrent I\nHave strain'd to appear thus: if one jot beyond\nThe bound of honour, or in act or will\nThat way inclining, harden'd be the hearts\nOf all that hear me, and my near'st of kin\nCry fie upon my grave!\n\nLEONTES:\nI ne'er heard yet\nThat any of these bolder vices wanted\nLess impudence to gainsay what they did\nThan to perform it first.\n\nHERMIONE:\nThat's true enough;\nThrough 'tis a saying, sir, not due to me.\n\nLEONTES:\nYou will not own it.\n\nHERMIONE:\nMore than mistress of\nWhich comes to me in name of fault, I must not\nAt all acknowledge. For Polixenes,\nWith whom I am accused, I do confess\nI loved him as in honour he required,\nWith such a kind of love as might become\nA lady like me, with a love even such,\nSo and no other, as yourself commanded:\nWhich not to have done I think had been in me\nBoth disobedience and ingratitude\nTo you and toward your friend, whose love had spoke,\nEven since it could speak, from an infant, freely\nThat it was yours. Now, for conspiracy,\nI know not how it tastes; though it be dish'd\nFor me to try how: all I know of it\nIs that Camillo was an honest man;\nAnd why he left your court, the gods themselves,\nWotting no more than I, are ignorant.\n\nLEONTES:\nYou knew of his departure, as you know\nWhat you have underta'en to do in's absence.\n\nHERMIONE:\nSir,\nYou speak a language that I understand not:\nMy life stands in the level of your dreams,\nWhich I'll lay down.\n\nLEONTES:\nYour actions are my dreams;\nYou had a bastard by Polixenes,\nAnd I but dream'd it. As you were past all shame,--\nThose of your fact are so--so past all truth:\nWhich to deny concerns more than avails; for as\nThy brat hath been cast out, like to itself,\nNo father owning it,--which is, indeed,\nMore criminal in thee than it,--so thou\nShalt feel our justice, in whose easiest passage\nLook for no less than death.\n\nHERMIONE:\nSir, spare your threats:\nThe bug which you would fright me with I seek.\nTo me can life be no commodity:\nThe crown and comfort of my life, your favour,\nI do give lost; for I do feel it gone,\nBut know not how it went. My second joy\nAnd first-fruits of my body, from his presence\nI am barr'd, like one infectious. My third comfort\nStarr'd most unluckily, is from my breast,\nThe innocent milk in its most innocent mouth,\nHaled out to murder: myself on every post\nProclaimed a strumpet: with immodest hatred\nThe child-bed privilege denied, which 'longs\nTo women of all fashion; lastly, hurried\nHere to this place, i' the open air, before\nI have got strength of limit. Now, my liege,\nTell me what blessings I have here alive,\nThat I should fear to die? Therefore proceed.\nBut yet hear this: mistake me not; no life,\nI prize it not a straw, but for mine honour,\nWhich I would free, if I shall be condemn'd\nUpon surmises, all proofs sleeping else\nBut what your jealousies awake, I tell you\n'Tis rigor and not law. Your honours all,\nI do refer me to the oracle:\nApollo be my judge!\n\nFirst Lord:\nThis your request\nIs altogether just: therefore bring forth,\nAnd in Apollos name, his oracle.\n\nHERMIONE:\nThe Emperor of Russia was my father:\nO that he were alive, and here beholding\nHis daughter's trial! that he did but see\nThe flatness of my misery, yet with eyes\nOf pity, not revenge!\n\nOfficer:\nYou here shall swear upon this sword of justice,\nThat you, Cleomenes and Dion, have\nBeen both at Delphos, and from thence have brought\nThe seal'd-up oracle, by the hand deliver'd\nOf great Apollo's priest; and that, since then,\nYou have not dared to break the holy seal\nNor read the secrets in't.\n\nCLEOMENES:\nAll this we swear.\n\nLEONTES:\nBreak up the seals and read.\n\nOfficer:\n\nLords:\nNow blessed be the great Apollo!\n\nHERMIONE:\nPraised!\n\nLEONTES:\nHast thou read truth?\n\nOfficer:\nAy, my lord; even so\nAs it is here set down.\n\nLEONTES:\nThere is no truth at all i' the oracle:\nThe sessions shall proceed: this is mere falsehood.\n\nServant:\nMy lord the king, the king!\n\nLEONTES:\nWhat is the business?\n\nServant:\nO sir, I shall be hated to report it!\nThe prince your son, with mere conceit and fear\nOf the queen's speed, is gone.\n\nLEONTES:\nHow! gone!\n\nServant:\nIs dead.\n\nLEONTES:\nApollo's angry; and the heavens themselves\nDo strike at my injustice.\nHow now there!\n\nPAULINA:\nThis news is mortal to the queen: look down\nAnd see what death is doing.\n\nLEONTES:\nTake her hence:\nHer heart is but o'ercharged; she will recover:\nI have too much believed mine own suspicion:\nBeseech you, tenderly apply to her\nSome remedies for life.\nApollo, pardon\nMy great profaneness 'gainst thine oracle!\nI'll reconcile me to Polixenes,\nNew woo my queen, recall the good Camillo,\nWhom I proclaim a man of truth, of mercy;\nFor, being transported by my jealousies\nTo bloody thoughts and to revenge, I chose\nCamillo for the minister to poison\nMy friend Polixenes: which had been done,\nBut that the good mind of Camillo tardied\nMy swift command, though I with death and with\nReward did threaten and encourage him,\nNot doing 't and being done: he, most humane\nAnd fill'd with honour, to my kingly guest\nUnclasp'd my practise, quit his fortunes here,\nWhich you knew great, and to the hazard\nOf all encertainties himself commended,\nNo richer than his honour: how he glisters\nThorough my rust! and how his pity\nDoes my deeds make the blacker!\n\nPAULINA:\nWoe the while!\nO, cut my lace, lest my heart, cracking it,\nBreak too.\n\nFirst Lord:\nWhat fit is this, good lady?\n\nPAULINA:\nWhat studied torments, tyrant, hast for me?\nWhat wheels? racks? fires? what flaying? boiling?\nIn leads or oils? what old or newer torture\nMust I receive, whose every word deserves\nTo taste of thy most worst? Thy tyranny\nTogether working with thy jealousies,\nFancies too weak for boys, too green and idle\nFor girls of nine, O, think what they have done\nAnd then run mad indeed, stark mad! for all\nThy by-gone fooleries were but spices of it.\nThat thou betray'dst Polixenes,'twas nothing;\nThat did but show thee, of a fool, inconstant\nAnd damnable ingrateful: nor was't much,\nThou wouldst have poison'd good Camillo's honour,\nTo have him kill a king: poor trespasses,\nMore monstrous standing by: whereof I reckon\nThe casting forth to crows thy baby-daughter\nTo be or none or little; though a devil\nWould have shed water out of fire ere done't:\nNor is't directly laid to thee, the death\nOf the young prince, whose honourable thoughts,\nThoughts high for one so tender, cleft the heart\nThat could conceive a gross and foolish sire\nBlemish'd his gracious dam: this is not, no,\nLaid to thy answer: but the last,--O lords,\nWhen I have said, cry 'woe!' the queen, the queen,\nThe sweet'st, dear'st creature's dead,\nand vengeance for't\nNot dropp'd down yet.\n\nFirst Lord:\nThe higher powers forbid!\n\nPAULINA:\nI say she's dead; I'll swear't. If word nor oath\nPrevail not, go and see: if you can bring\nTincture or lustre in her lip, her eye,\nHeat outwardly or breath within, I'll serve you\nAs I would do the gods. But, O thou tyrant!\nDo not repent these things, for they are heavier\nThan all thy woes can stir; therefore betake thee\nTo nothing but despair. A thousand knees\nTen thousand years together, naked, fasting,\nUpon a barren mountain and still winter\nIn storm perpetual, could not move the gods\nTo look that way thou wert.\n\nLEONTES:\nGo on, go on\nThou canst not speak too much; I have deserved\nAll tongues to talk their bitterest.\n\nFirst Lord:\nSay no more:\nHowe'er the business goes, you have made fault\nI' the boldness of your speech.\n\nPAULINA:\nI am sorry for't:\nAll faults I make, when I shall come to know them,\nI do repent. Alas! I have show'd too much\nThe rashness of a woman: he is touch'd\nTo the noble heart. What's gone and what's past help\nShould be past grief: do not receive affliction\nAt my petition; I beseech you, rather\nLet me be punish'd, that have minded you\nOf what you should forget. Now, good my liege\nSir, royal sir, forgive a foolish woman:\nThe love I bore your queen--lo, fool again!--\nI'll speak of her no more, nor of your children;\nI'll not remember you of my own lord,\nWho is lost too: take your patience to you,\nAnd I'll say nothing.\n\nLEONTES:\nThou didst speak but well\nWhen most the truth; which I receive much better\nThan to be pitied of thee. Prithee, bring me\nTo the dead bodies of my queen and son:\nOne grave shall be for both: upon them shall\nThe causes of their death appear, unto\nOur shame perpetual. Once a day I'll visit\nThe chapel where they lie, and tears shed there\nShall be my recreation: so long as nature\nWill bear up with this exercise, so long\nI daily vow to use it. Come and lead me\nUnto these sorrows.\n\nANTIGONUS:\nThou art perfect then, our ship hath touch'd upon\nThe deserts of Bohemia?\n\nMariner:\nAy, my lord: and fear\nWe have landed in ill time: the skies look grimly\nAnd threaten present blusters. In my conscience,\nThe heavens with that we have in hand are angry\nAnd frown upon 's.\n\nANTIGONUS:\nTheir sacred wills be done! Go, get aboard;\nLook to thy bark: I'll not be long before\nI call upon thee.\n\nMariner:\nMake your best haste, and go not\nToo far i' the land: 'tis like to be loud weather;\nBesides, this place is famous for the creatures\nOf prey that keep upon't.\n\nANTIGONUS:\nGo thou away:\nI'll follow instantly.\n\nMariner:\nI am glad at heart\nTo be so rid o' the business.\n\nANTIGONUS:\nCome, poor babe:\nI have heard, but not believed,\nthe spirits o' the dead\nMay walk again: if such thing be, thy mother\nAppear'd to me last night, for ne'er was dream\nSo like a waking. To me comes a creature,\nSometimes her head on one side, some another;\nI never saw a vessel of like sorrow,\nSo fill'd and so becoming: in pure white robes,\nLike very sanctity, she did approach\nMy cabin where I lay; thrice bow'd before me,\nAnd gasping to begin some speech, her eyes\nBecame two spouts: the fury spent, anon\nDid this break-from her: 'Good Antigonus,\nSince fate, against thy better disposition,\nHath made thy person for the thrower-out\nOf my poor babe, according to thine oath,\nPlaces remote enough are in Bohemia,\nThere weep and leave it crying; and, for the babe\nIs counted lost for ever, Perdita,\nI prithee, call't. For this ungentle business\nPut on thee by my lord, thou ne'er shalt see\nThy wife Paulina more.' And so, with shrieks\nShe melted into air. Affrighted much,\nI did in time collect myself and thought\nThis was so and no slumber. Dreams are toys:\nYet for this once, yea, superstitiously,\nI will be squared by this. I do believe\nHermione hath suffer'd death, and that\nApollo would, this being indeed the issue\nOf King Polixenes, it should here be laid,\nEither for life or death, upon the earth\nOf its right father. Blossom, speed thee well!\nThere lie, and there thy character: there these;\nWhich may, if fortune please, both breed thee, pretty,\nAnd still rest thine. The storm begins; poor wretch,\nThat for thy mother's fault art thus exposed\nTo loss and what may follow! Weep I cannot,\nBut my heart bleeds; and most accursed am I\nTo be by oath enjoin'd to this. Farewell!\nThe day frowns more and more: thou'rt like to have\nA lullaby too rough: I never saw\nThe heavens so dim by day. A savage clamour!\nWell may I get aboard! This is the chase:\nI am gone for ever.\n\nShepherd:\nI would there were no age between sixteen and\nthree-and-twenty, or that youth would sleep out the\nrest; for there is nothing in the between but\ngetting wenches with child, wronging the ancientry,\nstealing, fighting--Hark you now! Would any but\nthese boiled brains of nineteen and two-and-twenty\nhunt this weather? They have scared away two of my\nbest sheep, which I fear the wolf will sooner find\nthan the master: if any where I have them, 'tis by\nthe seaside, browsing of ivy. Good luck, an't be thy\nwill what have we here! Mercy on 's, a barne a very\npretty barne! A boy or a child, I wonder? A\npretty one; a very pretty one: sure, some 'scape:\nthough I am not bookish, yet I can read\nwaiting-gentlewoman in the 'scape. This has been\nsome stair-work, some trunk-work, some\nbehind-door-work: they were warmer that got this\nthan the poor thing is here. I'll take it up for\npity: yet I'll tarry till my son come; he hallooed\nbut even now. Whoa, ho, hoa!\n\nClown:\nHilloa, loa!\n\nShepherd:\nWhat, art so near? If thou'lt see a thing to talk\non when thou art dead and rotten, come hither. What\nailest thou, man?\n\nClown:\nI have seen two such sights, by sea and by land!\nbut I am not to say it is a sea, for it is now the\nsky: betwixt the firmament and it you cannot thrust\na bodkin's point.\n\nShepherd:\nWhy, boy, how is it?\n\nClown:\nI would you did but see how it chafes, how it rages,\nhow it takes up the shore! but that's not the\npoint. O, the most piteous cry of the poor souls!\nsometimes to see 'em, and not to see 'em; now the\nship boring the moon with her main-mast, and anon\nswallowed with yest and froth, as you'ld thrust a\ncork into a hogshead. And then for the\nland-service, to see how the bear tore out his\nshoulder-bone; how he cried to me for help and said\nhis name was Antigonus, a nobleman. But to make an\nend of the ship, to see how the sea flap-dragoned\nit: but, first, how the poor souls roared, and the\nsea mocked them; and how the poor gentleman roared\nand the bear mocked him, both roaring louder than\nthe sea or weather.\n\nShepherd:\nName of mercy, when was this, boy?\n\nClown:\nNow, now: I have not winked since I saw these\nsights: the men are not yet cold under water, nor\nthe bear half dined on the gentleman: he's at it\nnow.\n\nShepherd:\nWould I had been by, to have helped the old man!\n\nClown:\nI would you had been by the ship side, to have\nhelped her: there your charity would have lacked footing.\n\nShepherd:\nHeavy matters! heavy matters! but look thee here,\nboy. Now bless thyself: thou mettest with things\ndying, I with things newborn. Here's a sight for\nthee; look thee, a bearing-cloth for a squire's\nchild! look thee here; take up, take up, boy;\nopen't. So, let's see: it was told me I should be\nrich by the fairies. This is some changeling:\nopen't. What's within, boy?\n\nClown:\nYou're a made old man: if the sins of your youth\nare forgiven you, you're well to live. Gold! all gold!\n\nShepherd:\nThis is fairy gold, boy, and 'twill prove so: up\nwith't, keep it close: home, home, the next way.\nWe are lucky, boy; and to be so still requires\nnothing but secrecy. Let my sheep go: come, good\nboy, the next way home.\n\nClown:\nGo you the next way with your findings. I'll go see\nif the bear be gone from the gentleman and how much\nhe hath eaten: they are never curst but when they\nare hungry: if there be any of him left, I'll bury\nit.\n\nShepherd:\nThat's a good deed. If thou mayest discern by that\nwhich is left of him what he is, fetch me to the\nsight of him.\n\nClown:\nMarry, will I; and you shall help to put him i' the ground.\n\nShepherd:\n'Tis a lucky day, boy, and we'll do good deeds on't.\n\nTime:\nI, that please some, try all, both joy and terror\nOf good and bad, that makes and unfolds error,\nNow take upon me, in the name of Time,\nTo use my wings. Impute it not a crime\nTo me or my swift passage, that I slide\nO'er sixteen years and leave the growth untried\nOf that wide gap, since it is in my power\nTo o'erthrow law and in one self-born hour\nTo plant and o'erwhelm custom. Let me pass\nThe same I am, ere ancient'st order was\nOr what is now received: I witness to\nThe times that brought them in; so shall I do\nTo the freshest things now reigning and make stale\nThe glistering of this present, as my tale\nNow seems to it. Your patience this allowing,\nI turn my glass and give my scene such growing\nAs you had slept between: Leontes leaving,\nThe effects of his fond jealousies so grieving\nThat he shuts up himself, imagine me,\nGentle spectators, that I now may be\nIn fair Bohemia, and remember well,\nI mentioned a son o' the king's, which Florizel\nI now name to you; and with speed so pace\nTo speak of Perdita, now grown in grace\nEqual with wondering: what of her ensues\nI list not prophecy; but let Time's news\nBe known when 'tis brought forth.\nA shepherd's daughter,\nAnd what to her adheres, which follows after,\nIs the argument of Time. Of this allow,\nIf ever you have spent time worse ere now;\nIf never, yet that Time himself doth say\nHe wishes earnestly you never may.\n\nPOLIXENES:\nI pray thee, good Camillo, be no more importunate:\n'tis a sickness denying thee any thing; a death to\ngrant this.\n\nCAMILLO:\nIt is fifteen years since I saw my country: though\nI have for the most part been aired abroad, I\ndesire to lay my bones there. Besides, the penitent\nking, my master, hath sent for me; to whose feeling\nsorrows I might be some allay, or I o'erween to\nthink so, which is another spur to my departure.\n\nPOLIXENES:\nAs thou lovest me, Camillo, wipe not out the rest of\nthy services by leaving me now: the need I have of\nthee thine own goodness hath made; better not to\nhave had thee than thus to want thee: thou, having\nmade me businesses which none without thee can\nsufficiently manage, must either stay to execute\nthem thyself or take away with thee the very\nservices thou hast done; which if I have not enough\nconsidered, as too much I cannot, to be more\nthankful to thee shall be my study, and my profit\ntherein the heaping friendships. Of that fatal\ncountry, Sicilia, prithee speak no more; whose very\nnaming punishes me with the remembrance of that\npenitent, as thou callest him, and reconciled king,\nmy brother; whose loss of his most precious queen\nand children are even now to be afresh lamented.\nSay to me, when sawest thou the Prince Florizel, my\nson? Kings are no less unhappy, their issue not\nbeing gracious, than they are in losing them when\nthey have approved their virtues.\n\nCAMILLO:\nSir, it is three days since I saw the prince. What\nhis happier affairs may be, are to me unknown: but I\nhave missingly noted, he is of late much retired\nfrom court and is less frequent to his princely\nexercises than formerly he hath appeared.\n\nPOLIXENES:\nI have considered so much, Camillo, and with some\ncare; so far that I have eyes under my service which\nlook upon his removedness; from whom I have this\nintelligence, that he is seldom from the house of a\nmost homely shepherd; a man, they say, that from\nvery nothing, and beyond the imagination of his\nneighbours, is grown into an unspeakable estate.\n\nCAMILLO:\nI have heard, sir, of such a man, who hath a\ndaughter of most rare note: the report of her is\nextended more than can be thought to begin from such a cottage.\n\nPOLIXENES:\nThat's likewise part of my intelligence; but, I\nfear, the angle that plucks our son thither. Thou\nshalt accompany us to the place; where we will, not\nappearing what we are, have some question with the\nshepherd; from whose simplicity I think it not\nuneasy to get the cause of my son's resort thither.\nPrithee, be my present partner in this business, and\nlay aside the thoughts of Sicilia.\n\nCAMILLO:\nI willingly obey your command.\n\nPOLIXENES:\nMy best Camillo! We must disguise ourselves.\n\nAUTOLYCUS:\nWhen daffodils begin to peer,\nWith heigh! the doxy over the dale,\nWhy, then comes in the sweet o' the year;\nFor the red blood reigns in the winter's pale.\nThe white sheet bleaching on the hedge,\nWith heigh! the sweet birds, O, how they sing!\nDoth set my pugging tooth on edge;\nFor a quart of ale is a dish for a king.\nThe lark, that tirra-lyra chants,\nWith heigh! with heigh! the thrush and the jay,\nAre summer songs for me and my aunts,\nWhile we lie tumbling in the hay.\nI have served Prince Florizel and in my time\nwore three-pile; but now I am out of service:\nBut shall I go mourn for that, my dear?\nThe pale moon shines by night:\nAnd when I wander here and there,\nI then do most go right.\nIf tinkers may have leave to live,\nAnd bear the sow-skin budget,\nThen my account I well may, give,\nAnd in the stocks avouch it.\nMy traffic is sheets; when the kite builds, look to\nlesser linen. My father named me Autolycus; who\nbeing, as I am, littered under Mercury, was likewise\na snapper-up of unconsidered trifles. With die and\ndrab I purchased this caparison, and my revenue is\nthe silly cheat. Gallows and knock are too powerful\non the highway: beating and hanging are terrors to\nme: for the life to come, I sleep out the thought\nof it. A prize! a prize!\n\nClown:\nLet me see: every 'leven wether tods; every tod\nyields pound and odd shilling; fifteen hundred\nshorn. what comes the wool to?\n\nAUTOLYCUS:\n\nClown:\nI cannot do't without counters. Let me see; what am\nI to buy for our sheep-shearing feast? Three pound\nof sugar, five pound of currants, rice,--what will\nthis sister of mine do with rice? But my father\nhath made her mistress of the feast, and she lays it\non. She hath made me four and twenty nose-gays for\nthe shearers, three-man-song-men all, and very good\nones; but they are most of them means and bases; but\none puritan amongst them, and he sings psalms to\nhorn-pipes. I must have saffron to colour the warden\npies; mace; dates?--none, that's out of my note;\nnutmegs, seven; a race or two of ginger, but that I\nmay beg; four pound of prunes, and as many of\nraisins o' the sun.\n\nAUTOLYCUS:\nO that ever I was born!\n\nClown:\nI' the name of me--\n\nAUTOLYCUS:\nO, help me, help me! pluck but off these rags; and\nthen, death, death!\n\nClown:\nAlack, poor soul! thou hast need of more rags to lay\non thee, rather than have these off.\n\nAUTOLYCUS:\nO sir, the loathsomeness of them offends me more\nthan the stripes I have received, which are mighty\nones and millions.\n\nClown:\nAlas, poor man! a million of beating may come to a\ngreat matter.\n\nAUTOLYCUS:\nI am robbed, sir, and beaten; my money and apparel\nta'en from me, and these detestable things put upon\nme.\n\nClown:\nWhat, by a horseman, or a footman?\n\nAUTOLYCUS:\nA footman, sweet sir, a footman.\n\nClown:\nIndeed, he should be a footman by the garments he\nhas left with thee: if this be a horseman's coat,\nit hath seen very hot service. Lend me thy hand,\nI'll help thee: come, lend me thy hand.\n\nAUTOLYCUS:\nO, good sir, tenderly, O!\n\nClown:\nAlas, poor soul!\n\nAUTOLYCUS:\nO, good sir, softly, good sir! I fear, sir, my\nshoulder-blade is out.\n\nClown:\nHow now! canst stand?\n\nAUTOLYCUS:\n\nClown:\nDost lack any money? I have a little money for thee.\n\nAUTOLYCUS:\nNo, good sweet sir; no, I beseech you, sir: I have\na kinsman not past three quarters of a mile hence,\nunto whom I was going; I shall there have money, or\nany thing I want: offer me no money, I pray you;\nthat kills my heart.\n\nClown:\nWhat manner of fellow was he that robbed you?\n\nAUTOLYCUS:\nA fellow, sir, that I have known to go about with\ntroll-my-dames; I knew him once a servant of the\nprince: I cannot tell, good sir, for which of his\nvirtues it was, but he was certainly whipped out of the court.\n\nClown:\nHis vices, you would say; there's no virtue whipped\nout of the court: they cherish it to make it stay\nthere; and yet it will no more but abide.\n\nAUTOLYCUS:\nVices, I would say, sir. I know this man well: he\nhath been since an ape-bearer; then a\nprocess-server, a bailiff; then he compassed a\nmotion of the Prodigal Son, and married a tinker's\nwife within a mile where my land and living lies;\nand, having flown over many knavish professions, he\nsettled only in rogue: some call him Autolycus.\n\nClown:\nOut upon him! prig, for my life, prig: he haunts\nwakes, fairs and bear-baitings.\n\nAUTOLYCUS:\nVery true, sir; he, sir, he; that's the rogue that\nput me into this apparel.\n\nClown:\nNot a more cowardly rogue in all Bohemia: if you had\nbut looked big and spit at him, he'ld have run.\n\nAUTOLYCUS:\nI must confess to you, sir, I am no fighter: I am\nfalse of heart that way; and that he knew, I warrant\nhim.\n\nClown:\nHow do you now?\n\nAUTOLYCUS:\nSweet sir, much better than I was; I can stand and\nwalk: I will even take my leave of you, and pace\nsoftly towards my kinsman's.\n\nClown:\nShall I bring thee on the way?\n\nAUTOLYCUS:\nNo, good-faced sir; no, sweet sir.\n\nClown:\nThen fare thee well: I must go buy spices for our\nsheep-shearing.\n\nAUTOLYCUS:\nProsper you, sweet sir!\nYour purse is not hot enough to purchase your spice.\nI'll be with you at your sheep-shearing too: if I\nmake not this cheat bring out another and the\nshearers prove sheep, let me be unrolled and my name\nput in the book of virtue!\nJog on, jog on, the foot-path way,\nAnd merrily hent the stile-a:\nA merry heart goes all the day,\nYour sad tires in a mile-a.\n\nFLORIZEL:\nThese your unusual weeds to each part of you\nDo give a life: no shepherdess, but Flora\nPeering in April's front. This your sheep-shearing\nIs as a meeting of the petty gods,\nAnd you the queen on't.\n\nPERDITA:\nSir, my gracious lord,\nTo chide at your extremes it not becomes me:\nO, pardon, that I name them! Your high self,\nThe gracious mark o' the land, you have obscured\nWith a swain's wearing, and me, poor lowly maid,\nMost goddess-like prank'd up: but that our feasts\nIn every mess have folly and the feeders\nDigest it with a custom, I should blush\nTo see you so attired, sworn, I think,\nTo show myself a glass.\n\nFLORIZEL:\nI bless the time\nWhen my good falcon made her flight across\nThy father's ground.\n\nPERDITA:\nNow Jove afford you cause!\nTo me the difference forges dread; your greatness\nHath not been used to fear. Even now I tremble\nTo think your father, by some accident,\nShould pass this way as you did: O, the Fates!\nHow would he look, to see his work so noble\nVilely bound up? What would he say? Or how\nShould I, in these my borrow'd flaunts, behold\nThe sternness of his presence?\n\nFLORIZEL:\nApprehend\nNothing but jollity. The gods themselves,\nHumbling their deities to love, have taken\nThe shapes of beasts upon them: Jupiter\nBecame a bull, and bellow'd; the green Neptune\nA ram, and bleated; and the fire-robed god,\nGolden Apollo, a poor humble swain,\nAs I seem now. Their transformations\nWere never for a piece of beauty rarer,\nNor in a way so chaste, since my desires\nRun not before mine honour, nor my lusts\nBurn hotter than my faith.\n\nPERDITA:\nO, but, sir,\nYour resolution cannot hold, when 'tis\nOpposed, as it must be, by the power of the king:\nOne of these two must be necessities,\nWhich then will speak, that you must\nchange this purpose,\nOr I my life.\n\nFLORIZEL:\nThou dearest Perdita,\nWith these forced thoughts, I prithee, darken not\nThe mirth o' the feast. Or I'll be thine, my fair,\nOr not my father's. For I cannot be\nMine own, nor any thing to any, if\nI be not thine. To this I am most constant,\nThough destiny say no. Be merry, gentle;\nStrangle such thoughts as these with any thing\nThat you behold the while. Your guests are coming:\nLift up your countenance, as it were the day\nOf celebration of that nuptial which\nWe two have sworn shall come.\n\nPERDITA:\nO lady Fortune,\nStand you auspicious!\n\nFLORIZEL:\nSee, your guests approach:\nAddress yourself to entertain them sprightly,\nAnd let's be red with mirth.\n\nShepherd:\nFie, daughter! when my old wife lived, upon\nThis day she was both pantler, butler, cook,\nBoth dame and servant; welcomed all, served all;\nWould sing her song and dance her turn; now here,\nAt upper end o' the table, now i' the middle;\nOn his shoulder, and his; her face o' fire\nWith labour and the thing she took to quench it,\nShe would to each one sip. You are retired,\nAs if you were a feasted one and not\nThe hostess of the meeting: pray you, bid\nThese unknown friends to's welcome; for it is\nA way to make us better friends, more known.\nCome, quench your blushes and present yourself\nThat which you are, mistress o' the feast: come on,\nAnd bid us welcome to your sheep-shearing,\nAs your good flock shall prosper.\n\nPERDITA:\n\nPOLIXENES:\nShepherdess,\nA fair one are you--well you fit our ages\nWith flowers of winter.\n\nPERDITA:\nSir, the year growing ancient,\nNot yet on summer's death, nor on the birth\nOf trembling winter, the fairest\nflowers o' the season\nAre our carnations and streak'd gillyvors,\nWhich some call nature's bastards: of that kind\nOur rustic garden's barren; and I care not\nTo get slips of them.\n\nPOLIXENES:\nWherefore, gentle maiden,\nDo you neglect them?\n\nPERDITA:\nFor I have heard it said\nThere is an art which in their piedness shares\nWith great creating nature.\n\nPOLIXENES:\nSay there be;\nYet nature is made better by no mean\nBut nature makes that mean: so, over that art\nWhich you say adds to nature, is an art\nThat nature makes. You see, sweet maid, we marry\nA gentler scion to the wildest stock,\nAnd make conceive a bark of baser kind\nBy bud of nobler race: this is an art\nWhich does mend nature, change it rather, but\nThe art itself is nature.\n\nPERDITA:\nSo it is.\n\nPOLIXENES:\nThen make your garden rich in gillyvors,\nAnd do not call them bastards.\n\nPERDITA:\nI'll not put\nThe dibble in earth to set one slip of them;\nNo more than were I painted I would wish\nThis youth should say 'twere well and only therefore\nDesire to breed by me. Here's flowers for you;\nHot lavender, mints, savoury, marjoram;\nThe marigold, that goes to bed wi' the sun\nAnd with him rises weeping: these are flowers\nOf middle summer, and I think they are given\nTo men of middle age. You're very welcome.\n\nCAMILLO:\nI should leave grazing, were I of your flock,\nAnd only live by gazing.\n\nPERDITA:\nOut, alas!\nYou'd be so lean, that blasts of January\nWould blow you through and through.\nNow, my fair'st friend,\nI would I had some flowers o' the spring that might\nBecome your time of day; and yours, and yours,\nThat wear upon your virgin branches yet\nYour maidenheads growing: O Proserpina,\nFor the flowers now, that frighted thou let'st fall\nFrom Dis's waggon! daffodils,\nThat come before the swallow dares, and take\nThe winds of March with beauty; violets dim,\nBut sweeter than the lids of Juno's eyes\nOr Cytherea's breath; pale primroses\nThat die unmarried, ere they can behold\nBight Phoebus in his strength--a malady\nMost incident to maids; bold oxlips and\nThe crown imperial; lilies of all kinds,\nThe flower-de-luce being one! O, these I lack,\nTo make you garlands of, and my sweet friend,\nTo strew him o'er and o'er!\n\nFLORIZEL:\nWhat, like a corse?\n\nPERDITA:\nNo, like a bank for love to lie and play on;\nNot like a corse; or if, not to be buried,\nBut quick and in mine arms. Come, take your flowers:\nMethinks I play as I have seen them do\nIn Whitsun pastorals: sure this robe of mine\nDoes change my disposition.\n\nFLORIZEL:\nWhat you do\nStill betters what is done. When you speak, sweet.\nI'ld have you do it ever: when you sing,\nI'ld have you buy and sell so, so give alms,\nPray so; and, for the ordering your affairs,\nTo sing them too: when you do dance, I wish you\nA wave o' the sea, that you might ever do\nNothing but that; move still, still so,\nAnd own no other function: each your doing,\nSo singular in each particular,\nCrowns what you are doing in the present deed,\nThat all your acts are queens.\n\nPERDITA:\nO Doricles,\nYour praises are too large: but that your youth,\nAnd the true blood which peepeth fairly through't,\nDo plainly give you out an unstain'd shepherd,\nWith wisdom I might fear, my Doricles,\nYou woo'd me the false way.\n\nFLORIZEL:\nI think you have\nAs little skill to fear as I have purpose\nTo put you to't. But come; our dance, I pray:\nYour hand, my Perdita: so turtles pair,\nThat never mean to part.\n\nPERDITA:\nI'll swear for 'em.\n\nPOLIXENES:\nThis is the prettiest low-born lass that ever\nRan on the green-sward: nothing she does or seems\nBut smacks of something greater than herself,\nToo noble for this place.\n\nCAMILLO:\nHe tells her something\nThat makes her blood look out: good sooth, she is\nThe queen of curds and cream.\n\nClown:\nCome on, strike up!\n\nDORCAS:\nMopsa must be your mistress: marry, garlic,\nTo mend her kissing with!\n\nMOPSA:\nNow, in good time!\n\nClown:\nNot a word, a word; we stand upon our manners.\nCome, strike up!\n\nPOLIXENES:\nPray, good shepherd, what fair swain is this\nWhich dances with your daughter?\n\nShepherd:\nThey call him Doricles; and boasts himself\nTo have a worthy feeding: but I have it\nUpon his own report and I believe it;\nHe looks like sooth. He says he loves my daughter:\nI think so too; for never gazed the moon\nUpon the water as he'll stand and read\nAs 'twere my daughter's eyes: and, to be plain.\nI think there is not half a kiss to choose\nWho loves another best.\n\nPOLIXENES:\nShe dances featly.\n\nShepherd:\nSo she does any thing; though I report it,\nThat should be silent: if young Doricles\nDo light upon her, she shall bring him that\nWhich he not dreams of.\n\nServant:\nO master, if you did but hear the pedlar at the\ndoor, you would never dance again after a tabour and\npipe; no, the bagpipe could not move you: he sings\nseveral tunes faster than you'll tell money; he\nutters them as he had eaten ballads and all men's\nears grew to his tunes.\n\nClown:\nHe could never come better; he shall come in. I\nlove a ballad but even too well, if it be doleful\nmatter merrily set down, or a very pleasant thing\nindeed and sung lamentably.\n\nServant:\nHe hath songs for man or woman, of all sizes; no\nmilliner can so fit his customers with gloves: he\nhas the prettiest love-songs for maids; so without\nbawdry, which is strange; with such delicate\nburthens of dildos and fadings, 'jump her and thump\nher;' and where some stretch-mouthed rascal would,\nas it were, mean mischief and break a foul gap into\nthe matter, he makes the maid to answer 'Whoop, do me\nno harm, good man;' puts him off, slights him, with\n'Whoop, do me no harm, good man.'\n\nPOLIXENES:\nThis is a brave fellow.\n\nClown:\nBelieve me, thou talkest of an admirable conceited\nfellow. Has he any unbraided wares?\n\nServant:\nHe hath ribbons of an the colours i' the rainbow;\npoints more than all the lawyers in Bohemia can\nlearnedly handle, though they come to him by the\ngross: inkles, caddisses, cambrics, lawns: why, he\nsings 'em over as they were gods or goddesses; you\nwould think a smock were a she-angel, he so chants\nto the sleeve-hand and the work about the square on't.\n\nClown:\nPrithee bring him in; and let him approach singing.\n\nPERDITA:\nForewarn him that he use no scurrilous words in 's tunes.\n\nClown:\nYou have of these pedlars, that have more in them\nthan you'ld think, sister.\n\nPERDITA:\nAy, good brother, or go about to think.\n\nAUTOLYCUS:\nLawn as white as driven snow;\nCyprus black as e'er was crow;\nGloves as sweet as damask roses;\nMasks for faces and for noses;\nBugle bracelet, necklace amber,\nPerfume for a lady's chamber;\nGolden quoifs and stomachers,\nFor my lads to give their dears:\nPins and poking-sticks of steel,\nWhat maids lack from head to heel:\nCome buy of me, come; come buy, come buy;\nBuy lads, or else your lasses cry: Come buy.\n\nClown:\nIf I were not in love with Mopsa, thou shouldst take\nno money of me; but being enthralled as I am, it\nwill also be the bondage of certain ribbons and gloves.\n\nMOPSA:\nI was promised them against the feast; but they come\nnot too late now.\n\nDORCAS:\nHe hath promised you more than that, or there be liars.\n\nMOPSA:\nHe hath paid you all he promised you; may be, he has\npaid you more, which will shame you to give him again.\n\nClown:\nIs there no manners left among maids? will they\nwear their plackets where they should bear their\nfaces? Is there not milking-time, when you are\ngoing to bed, or kiln-hole, to whistle off these\nsecrets, but you must be tittle-tattling before all\nour guests? 'tis well they are whispering: clamour\nyour tongues, and not a word more.\n\nMOPSA:\nI have done. Come, you promised me a tawdry-lace\nand a pair of sweet gloves.\n\nClown:\nHave I not told thee how I was cozened by the way\nand lost all my money?\n\nAUTOLYCUS:\nAnd indeed, sir, there are cozeners abroad;\ntherefore it behoves men to be wary.\n\nClown:\nFear not thou, man, thou shalt lose nothing here.\n\nAUTOLYCUS:\nI hope so, sir; for I have about me many parcels of charge.\n\nClown:\nWhat hast here? ballads?\n\nMOPSA:\nPray now, buy some: I love a ballad in print o'\nlife, for then we are sure they are true.\n\nAUTOLYCUS:\nHere's one to a very doleful tune, how a usurer's\nwife was brought to bed of twenty money-bags at a\nburthen and how she longed to eat adders' heads and\ntoads carbonadoed.\n\nMOPSA:\nIs it true, think you?\n\nAUTOLYCUS:\nVery true, and but a month old.\n\nDORCAS:\nBless me from marrying a usurer!\n\nAUTOLYCUS:\nHere's the midwife's name to't, one Mistress\nTale-porter, and five or six honest wives that were\npresent. Why should I carry lies abroad?\n\nMOPSA:\nPray you now, buy it.\n\nClown:\nCome on, lay it by: and let's first see moe\nballads; we'll buy the other things anon.\n\nAUTOLYCUS:\nHere's another ballad of a fish, that appeared upon\nthe coast on Wednesday the four-score of April,\nforty thousand fathom above water, and sung this\nballad against the hard hearts of maids: it was\nthought she was a woman and was turned into a cold\nfish for she would not exchange flesh with one that\nloved her: the ballad is very pitiful and as true.\n\nDORCAS:\nIs it true too, think you?\n\nAUTOLYCUS:\nFive justices' hands at it, and witnesses more than\nmy pack will hold.\n\nClown:\nLay it by too: another.\n\nAUTOLYCUS:\nThis is a merry ballad, but a very pretty one.\n\nMOPSA:\nLet's have some merry ones.\n\nAUTOLYCUS:\nWhy, this is a passing merry one and goes to\nthe tune of 'Two maids wooing a man:' there's\nscarce a maid westward but she sings it; 'tis in\nrequest, I can tell you.\n\nMOPSA:\nWe can both sing it: if thou'lt bear a part, thou\nshalt hear; 'tis in three parts.\n\nDORCAS:\nWe had the tune on't a month ago.\n\nAUTOLYCUS:\nI can bear my part; you must know 'tis my\noccupation; have at it with you.\n\nAUTOLYCUS:\nGet you hence, for I must go\nWhere it fits not you to know.\n\nDORCAS:\nWhither?\n\nMOPSA:\nO, whither?\n\nDORCAS:\nWhither?\n\nMOPSA:\nIt becomes thy oath full well,\nThou to me thy secrets tell.\n\nDORCAS:\nMe too, let me go thither.\n\nMOPSA:\nOr thou goest to the orange or mill.\n\nDORCAS:\nIf to either, thou dost ill.\n\nAUTOLYCUS:\nNeither.\n\nDORCAS:\nWhat, neither?\n\nAUTOLYCUS:\nNeither.\n\nDORCAS:\nThou hast sworn my love to be.\n\nMOPSA:\nThou hast sworn it more to me:\nThen whither goest? say, whither?\n\nClown:\nWe'll have this song out anon by ourselves: my\nfather and the gentlemen are in sad talk, and we'll\nnot trouble them. Come, bring away thy pack after\nme. Wenches, I'll buy for you both. Pedlar, let's\nhave the first choice. Follow me, girls.\n\nAUTOLYCUS:\nAnd you shall pay well for 'em.\nWill you buy any tape,\nOr lace for your cape,\nMy dainty duck, my dear-a?\nAny silk, any thread,\nAny toys for your head,\nOf the new'st and finest, finest wear-a?\nCome to the pedlar;\nMoney's a medler.\nThat doth utter all men's ware-a.\n\nServant:\nMaster, there is three carters, three shepherds,\nthree neat-herds, three swine-herds, that have made\nthemselves all men of hair, they call themselves\nSaltiers, and they have a dance which the wenches\nsay is a gallimaufry of gambols, because they are\nnot in't; but they themselves are o' the mind, if it\nbe not too rough for some that know little but\nbowling, it will please plentifully.\n\nShepherd:\nAway! we'll none on 't: here has been too much\nhomely foolery already. I know, sir, we weary you.\n\nPOLIXENES:\nYou weary those that refresh us: pray, let's see\nthese four threes of herdsmen.\n\nServant:\nOne three of them, by their own report, sir, hath\ndanced before the king; and not the worst of the\nthree but jumps twelve foot and a half by the squier.\n\nShepherd:\nLeave your prating: since these good men are\npleased, let them come in; but quickly now.\n\nServant:\nWhy, they stay at door, sir.\n\nPOLIXENES:\nO, father, you'll know more of that hereafter.\nIs it not too far gone? 'Tis time to part them.\nHe's simple and tells much.\nHow now, fair shepherd!\nYour heart is full of something that does take\nYour mind from feasting. Sooth, when I was young\nAnd handed love as you do, I was wont\nTo load my she with knacks: I would have ransack'd\nThe pedlar's silken treasury and have pour'd it\nTo her acceptance; you have let him go\nAnd nothing marted with him. If your lass\nInterpretation should abuse and call this\nYour lack of love or bounty, you were straited\nFor a reply, at least if you make a care\nOf happy holding her.\n\nFLORIZEL:\nOld sir, I know\nShe prizes not such trifles as these are:\nThe gifts she looks from me are pack'd and lock'd\nUp in my heart; which I have given already,\nBut not deliver'd. O, hear me breathe my life\nBefore this ancient sir, who, it should seem,\nHath sometime loved! I take thy hand, this hand,\nAs soft as dove's down and as white as it,\nOr Ethiopian's tooth, or the fann'd\nsnow that's bolted\nBy the northern blasts twice o'er.\n\nPOLIXENES:\nWhat follows this?\nHow prettily the young swain seems to wash\nThe hand was fair before! I have put you out:\nBut to your protestation; let me hear\nWhat you profess.\n\nFLORIZEL:\nDo, and be witness to 't.\n\nPOLIXENES:\nAnd this my neighbour too?\n\nFLORIZEL:\nAnd he, and more\nThan he, and men, the earth, the heavens, and all:\nThat, were I crown'd the most imperial monarch,\nThereof most worthy, were I the fairest youth\nThat ever made eye swerve, had force and knowledge\nMore than was ever man's, I would not prize them\nWithout her love; for her employ them all;\nCommend them and condemn them to her service\nOr to their own perdition.\n\nPOLIXENES:\nFairly offer'd.\n\nCAMILLO:\nThis shows a sound affection.\n\nShepherd:\nBut, my daughter,\nSay you the like to him?\n\nPERDITA:\nI cannot speak\nSo well, nothing so well; no, nor mean better:\nBy the pattern of mine own thoughts I cut out\nThe purity of his.\n\nShepherd:\nTake hands, a bargain!\nAnd, friends unknown, you shall bear witness to 't:\nI give my daughter to him, and will make\nHer portion equal his.\n\nFLORIZEL:\nO, that must be\nI' the virtue of your daughter: one being dead,\nI shall have more than you can dream of yet;\nEnough then for your wonder. But, come on,\nContract us 'fore these witnesses.\n\nShepherd:\nCome, your hand;\nAnd, daughter, yours.\n\nPOLIXENES:\nSoft, swain, awhile, beseech you;\nHave you a father?\n\nFLORIZEL:\nI have: but what of him?\n\nPOLIXENES:\nKnows he of this?\n\nFLORIZEL:\nHe neither does nor shall.\n\nPOLIXENES:\nMethinks a father\nIs at the nuptial of his son a guest\nThat best becomes the table. Pray you once more,\nIs not your father grown incapable\nOf reasonable affairs? is he not stupid\nWith age and altering rheums? can he speak? hear?\nKnow man from man? dispute his own estate?\nLies he not bed-rid? and again does nothing\nBut what he did being childish?\n\nFLORIZEL:\nNo, good sir;\nHe has his health and ampler strength indeed\nThan most have of his age.\n\nPOLIXENES:\nBy my white beard,\nYou offer him, if this be so, a wrong\nSomething unfilial: reason my son\nShould choose himself a wife, but as good reason\nThe father, all whose joy is nothing else\nBut fair posterity, should hold some counsel\nIn such a business.\n\nFLORIZEL:\nI yield all this;\nBut for some other reasons, my grave sir,\nWhich 'tis not fit you know, I not acquaint\nMy father of this business.\n\nPOLIXENES:\nLet him know't.\n\nFLORIZEL:\nHe shall not.\n\nPOLIXENES:\nPrithee, let him.\n\nFLORIZEL:\nNo, he must not.\n\nShepherd:\nLet him, my son: he shall not need to grieve\nAt knowing of thy choice.\n\nFLORIZEL:\nCome, come, he must not.\nMark our contract.\n\nPOLIXENES:\nMark your divorce, young sir,\nWhom son I dare not call; thou art too base\nTo be acknowledged: thou a sceptre's heir,\nThat thus affect'st a sheep-hook! Thou old traitor,\nI am sorry that by hanging thee I can\nBut shorten thy life one week. And thou, fresh piece\nOf excellent witchcraft, who of force must know\nThe royal fool thou copest with,--\n\nShepherd:\nO, my heart!\n\nPOLIXENES:\nI'll have thy beauty scratch'd with briers, and made\nMore homely than thy state. For thee, fond boy,\nIf I may ever know thou dost but sigh\nThat thou no more shalt see this knack, as never\nI mean thou shalt, we'll bar thee from succession;\nNot hold thee of our blood, no, not our kin,\nFar than Deucalion off: mark thou my words:\nFollow us to the court. Thou churl, for this time,\nThough full of our displeasure, yet we free thee\nFrom the dead blow of it. And you, enchantment.--\nWorthy enough a herdsman: yea, him too,\nThat makes himself, but for our honour therein,\nUnworthy thee,--if ever henceforth thou\nThese rural latches to his entrance open,\nOr hoop his body more with thy embraces,\nI will devise a death as cruel for thee\nAs thou art tender to't.\n\nPERDITA:\nEven here undone!\nI was not much afeard; for once or twice\nI was about to speak and tell him plainly,\nThe selfsame sun that shines upon his court\nHides not his visage from our cottage but\nLooks on alike. Will't please you, sir, be gone?\nI told you what would come of this: beseech you,\nOf your own state take care: this dream of mine,--\nBeing now awake, I'll queen it no inch farther,\nBut milk my ewes and weep.\n\nCAMILLO:\nWhy, how now, father!\nSpeak ere thou diest.\n\nShepherd:\nI cannot speak, nor think\nNor dare to know that which I know. O sir!\nYou have undone a man of fourscore three,\nThat thought to fill his grave in quiet, yea,\nTo die upon the bed my father died,\nTo lie close by his honest bones: but now\nSome hangman must put on my shroud and lay me\nWhere no priest shovels in dust. O cursed wretch,\nThat knew'st this was the prince,\nand wouldst adventure\nTo mingle faith with him! Undone! undone!\nIf I might die within this hour, I have lived\nTo die when I desire.\n\nFLORIZEL:\nWhy look you so upon me?\nI am but sorry, not afeard; delay'd,\nBut nothing alter'd: what I was, I am;\nMore straining on for plucking back, not following\nMy leash unwillingly.\n\nCAMILLO:\nGracious my lord,\nYou know your father's temper: at this time\nHe will allow no speech, which I do guess\nYou do not purpose to him; and as hardly\nWill he endure your sight as yet, I fear:\nThen, till the fury of his highness settle,\nCome not before him.\n\nFLORIZEL:\nI not purpose it.\nI think, Camillo?\n\nCAMILLO:\nEven he, my lord.\n\nPERDITA:\nHow often have I told you 'twould be thus!\nHow often said, my dignity would last\nBut till 'twere known!\n\nFLORIZEL:\nIt cannot fail but by\nThe violation of my faith; and then\nLet nature crush the sides o' the earth together\nAnd mar the seeds within! Lift up thy looks:\nFrom my succession wipe me, father; I\nAm heir to my affection.\n\nCAMILLO:\nBe advised.\n\nFLORIZEL:\nI am, and by my fancy: if my reason\nWill thereto be obedient, I have reason;\nIf not, my senses, better pleased with madness,\nDo bid it welcome.\n\nCAMILLO:\nThis is desperate, sir.\n\nFLORIZEL:\nSo call it: but it does fulfil my vow;\nI needs must think it honesty. Camillo,\nNot for Bohemia, nor the pomp that may\nBe thereat glean'd, for all the sun sees or\nThe close earth wombs or the profound sea hides\nIn unknown fathoms, will I break my oath\nTo this my fair beloved: therefore, I pray you,\nAs you have ever been my father's honour'd friend,\nWhen he shall miss me,--as, in faith, I mean not\nTo see him any more,--cast your good counsels\nUpon his passion; let myself and fortune\nTug for the time to come. This you may know\nAnd so deliver, I am put to sea\nWith her whom here I cannot hold on shore;\nAnd most opportune to our need I have\nA vessel rides fast by, but not prepared\nFor this design. What course I mean to hold\nShall nothing benefit your knowledge, nor\nConcern me the reporting.\n\nCAMILLO:\nO my lord!\nI would your spirit were easier for advice,\nOr stronger for your need.\n\nFLORIZEL:\nHark, Perdita\nI'll hear you by and by.\n\nCAMILLO:\nHe's irremoveable,\nResolved for flight. Now were I happy, if\nHis going I could frame to serve my turn,\nSave him from danger, do him love and honour,\nPurchase the sight again of dear Sicilia\nAnd that unhappy king, my master, whom\nI so much thirst to see.\n\nFLORIZEL:\nNow, good Camillo;\nI am so fraught with curious business that\nI leave out ceremony.\n\nCAMILLO:\nSir, I think\nYou have heard of my poor services, i' the love\nThat I have borne your father?\n\nFLORIZEL:\nVery nobly\nHave you deserved: it is my father's music\nTo speak your deeds, not little of his care\nTo have them recompensed as thought on.\n\nCAMILLO:\nWell, my lord,\nIf you may please to think I love the king\nAnd through him what is nearest to him, which is\nYour gracious self, embrace but my direction:\nIf your more ponderous and settled project\nMay suffer alteration, on mine honour,\nI'll point you where you shall have such receiving\nAs shall become your highness; where you may\nEnjoy your mistress, from the whom, I see,\nThere's no disjunction to be made, but by--\nAs heavens forefend!--your ruin; marry her,\nAnd, with my best endeavours in your absence,\nYour discontenting father strive to qualify\nAnd bring him up to liking.\n\nFLORIZEL:\nHow, Camillo,\nMay this, almost a miracle, be done?\nThat I may call thee something more than man\nAnd after that trust to thee.\n\nCAMILLO:\nHave you thought on\nA place whereto you'll go?\n\nFLORIZEL:\nNot any yet:\nBut as the unthought-on accident is guilty\nTo what we wildly do, so we profess\nOurselves to be the slaves of chance and flies\nOf every wind that blows.\n\nCAMILLO:\nThen list to me:\nThis follows, if you will not change your purpose\nBut undergo this flight, make for Sicilia,\nAnd there present yourself and your fair princess,\nFor so I see she must be, 'fore Leontes:\nShe shall be habited as it becomes\nThe partner of your bed. Methinks I see\nLeontes opening his free arms and weeping\nHis welcomes forth; asks thee the son forgiveness,\nAs 'twere i' the father's person; kisses the hands\nOf your fresh princess; o'er and o'er divides him\n'Twixt his unkindness and his kindness; the one\nHe chides to hell and bids the other grow\nFaster than thought or time.\n\nFLORIZEL:\nWorthy Camillo,\nWhat colour for my visitation shall I\nHold up before him?\n\nCAMILLO:\nSent by the king your father\nTo greet him and to give him comforts. Sir,\nThe manner of your bearing towards him, with\nWhat you as from your father shall deliver,\nThings known betwixt us three, I'll write you down:\nThe which shall point you forth at every sitting\nWhat you must say; that he shall not perceive\nBut that you have your father's bosom there\nAnd speak his very heart.\n\nFLORIZEL:\nI am bound to you:\nThere is some sap in this.\n\nCAMILLO:\nA cause more promising\nThan a wild dedication of yourselves\nTo unpath'd waters, undream'd shores, most certain\nTo miseries enough; no hope to help you,\nBut as you shake off one to take another;\nNothing so certain as your anchors, who\nDo their best office, if they can but stay you\nWhere you'll be loath to be: besides you know\nProsperity's the very bond of love,\nWhose fresh complexion and whose heart together\nAffliction alters.\n\nPERDITA:\nOne of these is true:\nI think affliction may subdue the cheek,\nBut not take in the mind.\n\nCAMILLO:\nYea, say you so?\nThere shall not at your father's house these\nseven years\nBe born another such.\n\nFLORIZEL:\nMy good Camillo,\nShe is as forward of her breeding as\nShe is i' the rear our birth.\n\nCAMILLO:\nI cannot say 'tis pity\nShe lacks instructions, for she seems a mistress\nTo most that teach.\n\nPERDITA:\nYour pardon, sir; for this\nI'll blush you thanks.\n\nFLORIZEL:\nMy prettiest Perdita!\nBut O, the thorns we stand upon! Camillo,\nPreserver of my father, now of me,\nThe medicine of our house, how shall we do?\nWe are not furnish'd like Bohemia's son,\nNor shall appear in Sicilia.\n\nCAMILLO:\nMy lord,\nFear none of this: I think you know my fortunes\nDo all lie there: it shall be so my care\nTo have you royally appointed as if\nThe scene you play were mine. For instance, sir,\nThat you may know you shall not want, one word.\n\nAUTOLYCUS:\nHa, ha! what a fool Honesty is! and Trust, his\nsworn brother, a very simple gentleman! I have sold\nall my trumpery; not a counterfeit stone, not a\nribbon, glass, pomander, brooch, table-book, ballad,\nknife, tape, glove, shoe-tie, bracelet, horn-ring,\nto keep my pack from fasting: they throng who\nshould buy first, as if my trinkets had been\nhallowed and brought a benediction to the buyer:\nby which means I saw whose purse was best in\npicture; and what I saw, to my good use I\nremembered. My clown, who wants but something to\nbe a reasonable man, grew so in love with the\nwenches' song, that he would not stir his pettitoes\ntill he had both tune and words; which so drew the\nrest of the herd to me that all their other senses\nstuck in ears: you might have pinched a placket, it\nwas senseless; 'twas nothing to geld a codpiece of a\npurse; I could have filed keys off that hung in\nchains: no hearing, no feeling, but my sir's song,\nand admiring the nothing of it. So that in this\ntime of lethargy I picked and cut most of their\nfestival purses; and had not the old man come in\nwith a whoo-bub against his daughter and the king's\nson and scared my choughs from the chaff, I had not\nleft a purse alive in the whole army.\n\nCAMILLO:\nNay, but my letters, by this means being there\nSo soon as you arrive, shall clear that doubt.\n\nFLORIZEL:\nAnd those that you'll procure from King Leontes--\n\nCAMILLO:\nShall satisfy your father.\n\nPERDITA:\nHappy be you!\nAll that you speak shows fair.\n\nCAMILLO:\nWho have we here?\nWe'll make an instrument of this, omit\nNothing may give us aid.\n\nAUTOLYCUS:\nIf they have overheard me now, why, hanging.\n\nCAMILLO:\nHow now, good fellow! why shakest thou so? Fear\nnot, man; here's no harm intended to thee.\n\nAUTOLYCUS:\nI am a poor fellow, sir.\n\nCAMILLO:\nWhy, be so still; here's nobody will steal that from\nthee: yet for the outside of thy poverty we must\nmake an exchange; therefore discase thee instantly,\n--thou must think there's a necessity in't,--and\nchange garments with this gentleman: though the\npennyworth on his side be the worst, yet hold thee,\nthere's some boot.\n\nAUTOLYCUS:\nI am a poor fellow, sir.\nI know ye well enough.\n\nCAMILLO:\nNay, prithee, dispatch: the gentleman is half\nflayed already.\n\nAUTOLYCUS:\nAre you in earnest, sir?\nI smell the trick on't.\n\nFLORIZEL:\nDispatch, I prithee.\n\nAUTOLYCUS:\nIndeed, I have had earnest: but I cannot with\nconscience take it.\n\nCAMILLO:\nUnbuckle, unbuckle.\nFortunate mistress,--let my prophecy\nCome home to ye!--you must retire yourself\nInto some covert: take your sweetheart's hat\nAnd pluck it o'er your brows, muffle your face,\nDismantle you, and, as you can, disliken\nThe truth of your own seeming; that you may--\nFor I do fear eyes over--to shipboard\nGet undescried.\n\nPERDITA:\nI see the play so lies\nThat I must bear a part.\n\nCAMILLO:\nNo remedy.\nHave you done there?\n\nFLORIZEL:\nShould I now meet my father,\nHe would not call me son.\n\nCAMILLO:\nNay, you shall have no hat.\nCome, lady, come. Farewell, my friend.\n\nAUTOLYCUS:\nAdieu, sir.\n\nFLORIZEL:\nO Perdita, what have we twain forgot!\nPray you, a word.\n\nCAMILLO:\n\nFLORIZEL:\nFortune speed us!\nThus we set on, Camillo, to the sea-side.\n\nCAMILLO:\nThe swifter speed the better.\n\nAUTOLYCUS:\nI understand the business, I hear it: to have an\nopen ear, a quick eye, and a nimble hand, is\nnecessary for a cut-purse; a good nose is requisite\nalso, to smell out work for the other senses. I see\nthis is the time that the unjust man doth thrive.\nWhat an exchange had this been without boot! What\na boot is here with this exchange! Sure the gods do\nthis year connive at us, and we may do any thing\nextempore. The prince himself is about a piece of\niniquity, stealing away from his father with his\nclog at his heels: if I thought it were a piece of\nhonesty to acquaint the king withal, I would not\ndo't: I hold it the more knavery to conceal it;\nand therein am I constant to my profession.\nAside, aside; here is more matter for a hot brain:\nevery lane's end, every shop, church, session,\nhanging, yields a careful man work.\n\nClown:\nSee, see; what a man you are now!\nThere is no other way but to tell the king\nshe's a changeling and none of your flesh and blood.\n\nShepherd:\nNay, but hear me.\n\nClown:\nNay, but hear me.\n\nShepherd:\nGo to, then.\n\nClown:\nShe being none of your flesh and blood, your flesh\nand blood has not offended the king; and so your\nflesh and blood is not to be punished by him. Show\nthose things you found about her, those secret\nthings, all but what she has with her: this being\ndone, let the law go whistle: I warrant you.\n\nShepherd:\nI will tell the king all, every word, yea, and his\nson's pranks too; who, I may say, is no honest man,\nneither to his father nor to me, to go about to make\nme the king's brother-in-law.\n\nClown:\nIndeed, brother-in-law was the farthest off you\ncould have been to him and then your blood had been\nthe dearer by I know how much an ounce.\n\nAUTOLYCUS:\n\nShepherd:\nWell, let us to the king: there is that in this\nfardel will make him scratch his beard.\n\nAUTOLYCUS:\n\nClown:\nPray heartily he be at palace.\n\nAUTOLYCUS:\n\nShepherd:\nTo the palace, an it like your worship.\n\nAUTOLYCUS:\nYour affairs there, what, with whom, the condition\nof that fardel, the place of your dwelling, your\nnames, your ages, of what having, breeding, and any\nthing that is fitting to be known, discover.\n\nClown:\nWe are but plain fellows, sir.\n\nAUTOLYCUS:\nA lie; you are rough and hairy. Let me have no\nlying: it becomes none but tradesmen, and they\noften give us soldiers the lie: but we pay them for\nit with stamped coin, not stabbing steel; therefore\nthey do not give us the lie.\n\nClown:\nYour worship had like to have given us one, if you\nhad not taken yourself with the manner.\n\nShepherd:\nAre you a courtier, an't like you, sir?\n\nAUTOLYCUS:\nWhether it like me or no, I am a courtier. Seest\nthou not the air of the court in these enfoldings?\nhath not my gait in it the measure of the court?\nreceives not thy nose court-odor from me? reflect I\nnot on thy baseness court-contempt? Thinkest thou,\nfor that I insinuate, or toaze from thee thy\nbusiness, I am therefore no courtier? I am courtier\ncap-a-pe; and one that will either push on or pluck\nback thy business there: whereupon I command thee to\nopen thy affair.\n\nShepherd:\nMy business, sir, is to the king.\n\nAUTOLYCUS:\nWhat advocate hast thou to him?\n\nShepherd:\nI know not, an't like you.\n\nClown:\nAdvocate's the court-word for a pheasant: say you\nhave none.\n\nShepherd:\nNone, sir; I have no pheasant, cock nor hen.\n\nAUTOLYCUS:\nHow blessed are we that are not simple men!\nYet nature might have made me as these are,\nTherefore I will not disdain.\n\nClown:\nThis cannot be but a great courtier.\n\nShepherd:\nHis garments are rich, but he wears\nthem not handsomely.\n\nClown:\nHe seems to be the more noble in being fantastical:\na great man, I'll warrant; I know by the picking\non's teeth.\n\nAUTOLYCUS:\nThe fardel there? what's i' the fardel?\nWherefore that box?\n\nShepherd:\nSir, there lies such secrets in this fardel and box,\nwhich none must know but the king; and which he\nshall know within this hour, if I may come to the\nspeech of him.\n\nAUTOLYCUS:\nAge, thou hast lost thy labour.\n\nShepherd:\nWhy, sir?\n\nAUTOLYCUS:\nThe king is not at the palace; he is gone aboard a\nnew ship to purge melancholy and air himself: for,\nif thou beest capable of things serious, thou must\nknow the king is full of grief.\n\nShepard:\nSo 'tis said, sir; about his son, that should have\nmarried a shepherd's daughter.\n\nAUTOLYCUS:\nIf that shepherd be not in hand-fast, let him fly:\nthe curses he shall have, the tortures he shall\nfeel, will break the back of man, the heart of monster.\n\nClown:\nThink you so, sir?\n\nAUTOLYCUS:\nNot he alone shall suffer what wit can make heavy\nand vengeance bitter; but those that are germane to\nhim, though removed fifty times, shall all come\nunder the hangman: which though it be great pity,\nyet it is necessary. An old sheep-whistling rogue a\nram-tender, to offer to have his daughter come into\ngrace! Some say he shall be stoned; but that death\nis too soft for him, say I draw our throne into a\nsheep-cote! all deaths are too few, the sharpest too easy.\n\nClown:\nHas the old man e'er a son, sir, do you hear. an't\nlike you, sir?\n\nAUTOLYCUS:\nHe has a son, who shall be flayed alive; then\n'nointed over with honey, set on the head of a\nwasp's nest; then stand till he be three quarters\nand a dram dead; then recovered again with\naqua-vitae or some other hot infusion; then, raw as\nhe is, and in the hottest day prognostication\nproclaims, shall be be set against a brick-wall, the\nsun looking with a southward eye upon him, where he\nis to behold him with flies blown to death. But what\ntalk we of these traitorly rascals, whose miseries\nare to be smiled at, their offences being so\ncapital? Tell me, for you seem to be honest plain\nmen, what you have to the king: being something\ngently considered, I'll bring you where he is\naboard, tender your persons to his presence,\nwhisper him in your behalfs; and if it be in man\nbesides the king to effect your suits, here is man\nshall do it.\n\nClown:\nHe seems to be of great authority: close with him,\ngive him gold; and though authority be a stubborn\nbear, yet he is oft led by the nose with gold: show\nthe inside of your purse to the outside of his hand,\nand no more ado. Remember 'stoned,' and 'flayed alive.'\n\nShepherd:\nAn't please you, sir, to undertake the business for\nus, here is that gold I have: I'll make it as much\nmore and leave this young man in pawn till I bring it you.\n\nAUTOLYCUS:\nAfter I have done what I promised?\n\nShepherd:\nAy, sir.\n\nAUTOLYCUS:\nWell, give me the moiety. Are you a party in this business?\n\nClown:\nIn some sort, sir: but though my case be a pitiful\none, I hope I shall not be flayed out of it.\n\nAUTOLYCUS:\nO, that's the case of the shepherd's son: hang him,\nhe'll be made an example.\n\nClown:\nComfort, good comfort! We must to the king and show\nour strange sights: he must know 'tis none of your\ndaughter nor my sister; we are gone else. Sir, I\nwill give you as much as this old man does when the\nbusiness is performed, and remain, as he says, your\npawn till it be brought you.\n\nAUTOLYCUS:\nI will trust you. Walk before toward the sea-side;\ngo on the right hand: I will but look upon the\nhedge and follow you.\n\nClown:\nWe are blest in this man, as I may say, even blest.\n\nShepherd:\nLet's before as he bids us: he was provided to do us good.\n\nAUTOLYCUS:\nIf I had a mind to be honest, I see Fortune would\nnot suffer me: she drops booties in my mouth. I am\ncourted now with a double occasion, gold and a means\nto do the prince my master good; which who knows how\nthat may turn back to my advancement? I will bring\nthese two moles, these blind ones, aboard him: if he\nthink it fit to shore them again and that the\ncomplaint they have to the king concerns him\nnothing, let him call me rogue for being so far\nofficious; for I am proof against that title and\nwhat shame else belongs to't. To him will I present\nthem: there may be matter in it.\n\nCLEOMENES:\nSir, you have done enough, and have perform'd\nA saint-like sorrow: no fault could you make,\nWhich you have not redeem'd; indeed, paid down\nMore penitence than done trespass: at the last,\nDo as the heavens have done, forget your evil;\nWith them forgive yourself.\n\nLEONTES:\nWhilst I remember\nHer and her virtues, I cannot forget\nMy blemishes in them, and so still think of\nThe wrong I did myself; which was so much,\nThat heirless it hath made my kingdom and\nDestroy'd the sweet'st companion that e'er man\nBred his hopes out of.\n\nPAULINA:\nTrue, too true, my lord:\nIf, one by one, you wedded all the world,\nOr from the all that are took something good,\nTo make a perfect woman, she you kill'd\nWould be unparallel'd.\n\nLEONTES:\nI think so. Kill'd!\nShe I kill'd! I did so: but thou strikest me\nSorely, to say I did; it is as bitter\nUpon thy tongue as in my thought: now, good now,\nSay so but seldom.\n\nCLEOMENES:\nNot at all, good lady:\nYou might have spoken a thousand things that would\nHave done the time more benefit and graced\nYour kindness better.\n\nPAULINA:\nYou are one of those\nWould have him wed again.\n\nDION:\nIf you would not so,\nYou pity not the state, nor the remembrance\nOf his most sovereign name; consider little\nWhat dangers, by his highness' fail of issue,\nMay drop upon his kingdom and devour\nIncertain lookers on. What were more holy\nThan to rejoice the former queen is well?\nWhat holier than, for royalty's repair,\nFor present comfort and for future good,\nTo bless the bed of majesty again\nWith a sweet fellow to't?\n\nPAULINA:\nThere is none worthy,\nRespecting her that's gone. Besides, the gods\nWill have fulfill'd their secret purposes;\nFor has not the divine Apollo said,\nIs't not the tenor of his oracle,\nThat King Leontes shall not have an heir\nTill his lost child be found? which that it shall,\nIs all as monstrous to our human reason\nAs my Antigonus to break his grave\nAnd come again to me; who, on my life,\nDid perish with the infant. 'Tis your counsel\nMy lord should to the heavens be contrary,\nOppose against their wills.\nCare not for issue;\nThe crown will find an heir: great Alexander\nLeft his to the worthiest; so his successor\nWas like to be the best.\n\nLEONTES:\nGood Paulina,\nWho hast the memory of Hermione,\nI know, in honour, O, that ever I\nHad squared me to thy counsel! then, even now,\nI might have look'd upon my queen's full eyes,\nHave taken treasure from her lips--\n\nPAULINA:\nAnd left them\nMore rich for what they yielded.\n\nLEONTES:\nThou speak'st truth.\nNo more such wives; therefore, no wife: one worse,\nAnd better used, would make her sainted spirit\nAgain possess her corpse, and on this stage,\nWhere we're offenders now, appear soul-vex'd,\nAnd begin, 'Why to me?'\n\nPAULINA:\nHad she such power,\nShe had just cause.\n\nLEONTES:\nShe had; and would incense me\nTo murder her I married.\n\nPAULINA:\nI should so.\nWere I the ghost that walk'd, I'ld bid you mark\nHer eye, and tell me for what dull part in't\nYou chose her; then I'ld shriek, that even your ears\nShould rift to hear me; and the words that follow'd\nShould be 'Remember mine.'\n\nLEONTES:\nStars, stars,\nAnd all eyes else dead coals! Fear thou no wife;\nI'll have no wife, Paulina.\n\nPAULINA:\nWill you swear\nNever to marry but by my free leave?\n\nLEONTES:\nNever, Paulina; so be blest my spirit!\n\nPAULINA:\nThen, good my lords, bear witness to his oath.\n\nCLEOMENES:\nYou tempt him over-much.\n\nPAULINA:\nUnless another,\nAs like Hermione as is her picture,\nAffront his eye.\n\nCLEOMENES:\nGood madam,--\n\nPAULINA:\nI have done.\nYet, if my lord will marry,--if you will, sir,\nNo remedy, but you will,--give me the office\nTo choose you a queen: she shall not be so young\nAs was your former; but she shall be such\nAs, walk'd your first queen's ghost,\nit should take joy\nTo see her in your arms.\n\nLEONTES:\nMy true Paulina,\nWe shall not marry till thou bid'st us.\n\nPAULINA:\nThat\nShall be when your first queen's again in breath;\nNever till then.\n\nGentleman:\nOne that gives out himself Prince Florizel,\nSon of Polixenes, with his princess, she\nThe fairest I have yet beheld, desires access\nTo your high presence.\n\nLEONTES:\nWhat with him? he comes not\nLike to his father's greatness: his approach,\nSo out of circumstance and sudden, tells us\n'Tis not a visitation framed, but forced\nBy need and accident. What train?\n\nGentleman:\nBut few,\nAnd those but mean.\n\nLEONTES:\nHis princess, say you, with him?\n\nGentleman:\nAy, the most peerless piece of earth, I think,\nThat e'er the sun shone bright on.\n\nPAULINA:\nO Hermione,\nAs every present time doth boast itself\nAbove a better gone, so must thy grave\nGive way to what's seen now! Sir, you yourself\nHave said and writ so, but your writing now\nIs colder than that theme, 'She had not been,\nNor was not to be equall'd;'--thus your verse\nFlow'd with her beauty once: 'tis shrewdly ebb'd,\nTo say you have seen a better.\n\nGentleman:\nPardon, madam:\nThe one I have almost forgot,--your pardon,--\nThe other, when she has obtain'd your eye,\nWill have your tongue too. This is a creature,\nWould she begin a sect, might quench the zeal\nOf all professors else, make proselytes\nOf who she but bid follow.\n\nPAULINA:\nHow! not women?\n\nGentleman:\nWomen will love her, that she is a woman\nMore worth than any man; men, that she is\nThe rarest of all women.\n\nLEONTES:\nGo, Cleomenes;\nYourself, assisted with your honour'd friends,\nBring them to our embracement. Still, 'tis strange\nHe thus should steal upon us.\n\nPAULINA:\nHad our prince,\nJewel of children, seen this hour, he had pair'd\nWell with this lord: there was not full a month\nBetween their births.\n\nLEONTES:\nPrithee, no more; cease; thou know'st\nHe dies to me again when talk'd of: sure,\nWhen I shall see this gentleman, thy speeches\nWill bring me to consider that which may\nUnfurnish me of reason. They are come.\nYour mother was most true to wedlock, prince;\nFor she did print your royal father off,\nConceiving you: were I but twenty-one,\nYour father's image is so hit in you,\nHis very air, that I should call you brother,\nAs I did him, and speak of something wildly\nBy us perform'd before. Most dearly welcome!\nAnd your fair princess,--goddess!--O, alas!\nI lost a couple, that 'twixt heaven and earth\nMight thus have stood begetting wonder as\nYou, gracious couple, do: and then I lost--\nAll mine own folly--the society,\nAmity too, of your brave father, whom,\nThough bearing misery, I desire my life\nOnce more to look on him.\n\nFLORIZEL:\nBy his command\nHave I here touch'd Sicilia and from him\nGive you all greetings that a king, at friend,\nCan send his brother: and, but infirmity\nWhich waits upon worn times hath something seized\nHis wish'd ability, he had himself\nThe lands and waters 'twixt your throne and his\nMeasured to look upon you; whom he loves--\nHe bade me say so--more than all the sceptres\nAnd those that bear them living.\n\nLEONTES:\nO my brother,\nGood gentleman! the wrongs I have done thee stir\nAfresh within me, and these thy offices,\nSo rarely kind, are as interpreters\nOf my behind-hand slackness. Welcome hither,\nAs is the spring to the earth. And hath he too\nExposed this paragon to the fearful usage,\nAt least ungentle, of the dreadful Neptune,\nTo greet a man not worth her pains, much less\nThe adventure of her person?\n\nFLORIZEL:\nGood my lord,\nShe came from Libya.\n\nLEONTES:\nWhere the warlike Smalus,\nThat noble honour'd lord, is fear'd and loved?\n\nFLORIZEL:\nMost royal sir, from thence; from him, whose daughter\nHis tears proclaim'd his, parting with her: thence,\nA prosperous south-wind friendly, we have cross'd,\nTo execute the charge my father gave me\nFor visiting your highness: my best train\nI have from your Sicilian shores dismiss'd;\nWho for Bohemia bend, to signify\nNot only my success in Libya, sir,\nBut my arrival and my wife's in safety\nHere where we are.\n\nLEONTES:\nThe blessed gods\nPurge all infection from our air whilst you\nDo climate here! You have a holy father,\nA graceful gentleman; against whose person,\nSo sacred as it is, I have done sin:\nFor which the heavens, taking angry note,\nHave left me issueless; and your father's blest,\nAs he from heaven merits it, with you\nWorthy his goodness. What might I have been,\nMight I a son and daughter now have look'd on,\nSuch goodly things as you!\n\nLord:\nMost noble sir,\nThat which I shall report will bear no credit,\nWere not the proof so nigh. Please you, great sir,\nBohemia greets you from himself by me;\nDesires you to attach his son, who has--\nHis dignity and duty both cast off--\nFled from his father, from his hopes, and with\nA shepherd's daughter.\n\nLEONTES:\nWhere's Bohemia? speak.\n\nLord:\nHere in your city; I now came from him:\nI speak amazedly; and it becomes\nMy marvel and my message. To your court\nWhiles he was hastening, in the chase, it seems,\nOf this fair couple, meets he on the way\nThe father of this seeming lady and\nHer brother, having both their country quitted\nWith this young prince.\n\nFLORIZEL:\nCamillo has betray'd me;\nWhose honour and whose honesty till now\nEndured all weathers.\n\nLord:\nLay't so to his charge:\nHe's with the king your father.\n\nLEONTES:\nWho? Camillo?\n\nLord:\nCamillo, sir; I spake with him; who now\nHas these poor men in question. Never saw I\nWretches so quake: they kneel, they kiss the earth;\nForswear themselves as often as they speak:\nBohemia stops his ears, and threatens them\nWith divers deaths in death.\n\nPERDITA:\nO my poor father!\nThe heaven sets spies upon us, will not have\nOur contract celebrated.\n\nLEONTES:\nYou are married?\n\nFLORIZEL:\nWe are not, sir, nor are we like to be;\nThe stars, I see, will kiss the valleys first:\nThe odds for high and low's alike.\n\nLEONTES:\nMy lord,\nIs this the daughter of a king?\n\nFLORIZEL:\nShe is,\nWhen once she is my wife.\n\nLEONTES:\nThat 'once' I see by your good father's speed\nWill come on very slowly. I am sorry,\nMost sorry, you have broken from his liking\nWhere you were tied in duty, and as sorry\nYour choice is not so rich in worth as beauty,\nThat you might well enjoy her.\n\nFLORIZEL:\nDear, look up:\nThough Fortune, visible an enemy,\nShould chase us with my father, power no jot\nHath she to change our loves. Beseech you, sir,\nRemember since you owed no more to time\nThan I do now: with thought of such affections,\nStep forth mine advocate; at your request\nMy father will grant precious things as trifles.\n\nLEONTES:\nWould he do so, I'ld beg your precious mistress,\nWhich he counts but a trifle.\n\nPAULINA:\nSir, my liege,\nYour eye hath too much youth in't: not a month\n'Fore your queen died, she was more worth such gazes\nThan what you look on now.\n\nLEONTES:\nI thought of her,\nEven in these looks I made.\nBut your petition\nIs yet unanswer'd. I will to your father:\nYour honour not o'erthrown by your desires,\nI am friend to them and you: upon which errand\nI now go toward him; therefore follow me\nAnd mark what way I make: come, good my lord.\n\nAUTOLYCUS:\nBeseech you, sir, were you present at this relation?\n\nFirst Gentleman:\nI was by at the opening of the fardel, heard the old\nshepherd deliver the manner how he found it:\nwhereupon, after a little amazedness, we were all\ncommanded out of the chamber; only this methought I\nheard the shepherd say, he found the child.\n\nAUTOLYCUS:\nI would most gladly know the issue of it.\n\nFirst Gentleman:\nI make a broken delivery of the business; but the\nchanges I perceived in the king and Camillo were\nvery notes of admiration: they seemed almost, with\nstaring on one another, to tear the cases of their\neyes; there was speech in their dumbness, language\nin their very gesture; they looked as they had heard\nof a world ransomed, or one destroyed: a notable\npassion of wonder appeared in them; but the wisest\nbeholder, that knew no more but seeing, could not\nsay if the importance were joy or sorrow; but in the\nextremity of the one, it must needs be.\nHere comes a gentleman that haply knows more.\nThe news, Rogero?\n\nSecond Gentleman:\nNothing but bonfires: the oracle is fulfilled; the\nking's daughter is found: such a deal of wonder is\nbroken out within this hour that ballad-makers\ncannot be able to express it.\nHere comes the Lady Paulina's steward: he can\ndeliver you more. How goes it now, sir? this news\nwhich is called true is so like an old tale, that\nthe verity of it is in strong suspicion: has the king\nfound his heir?\n\nThird Gentleman:\nMost true, if ever truth were pregnant by\ncircumstance: that which you hear you'll swear you\nsee, there is such unity in the proofs. The mantle\nof Queen Hermione's, her jewel about the neck of it,\nthe letters of Antigonus found with it which they\nknow to be his character, the majesty of the\ncreature in resemblance of the mother, the affection\nof nobleness which nature shows above her breeding,\nand many other evidences proclaim her with all\ncertainty to be the king's daughter. Did you see\nthe meeting of the two kings?\n\nSecond Gentleman:\nNo.\n\nThird Gentleman:\nThen have you lost a sight, which was to be seen,\ncannot be spoken of. There might you have beheld one\njoy crown another, so and in such manner that it\nseemed sorrow wept to take leave of them, for their\njoy waded in tears. There was casting up of eyes,\nholding up of hands, with countenances of such\ndistraction that they were to be known by garment,\nnot by favour. Our king, being ready to leap out of\nhimself for joy of his found daughter, as if that\njoy were now become a loss, cries 'O, thy mother,\nthy mother!' then asks Bohemia forgiveness; then\nembraces his son-in-law; then again worries he his\ndaughter with clipping her; now he thanks the old\nshepherd, which stands by like a weather-bitten\nconduit of many kings' reigns. I never heard of such\nanother encounter, which lames report to follow it\nand undoes description to do it.\n\nSecond Gentleman:\nWhat, pray you, became of Antigonus, that carried\nhence the child?\n\nThird Gentleman:\nLike an old tale still, which will have matter to\nrehearse, though credit be asleep and not an ear\nopen. He was torn to pieces with a bear: this\navouches the shepherd's son; who has not only his\ninnocence, which seems much, to justify him, but a\nhandkerchief and rings of his that Paulina knows.\n\nFirst Gentleman:\nWhat became of his bark and his followers?\n\nThird Gentleman:\nWrecked the same instant of their master's death and\nin the view of the shepherd: so that all the\ninstruments which aided to expose the child were\neven then lost when it was found. But O, the noble\ncombat that 'twixt joy and sorrow was fought in\nPaulina! She had one eye declined for the loss of\nher husband, another elevated that the oracle was\nfulfilled: she lifted the princess from the earth,\nand so locks her in embracing, as if she would pin\nher to her heart that she might no more be in danger\nof losing.\n\nFirst Gentleman:\nThe dignity of this act was worth the audience of\nkings and princes; for by such was it acted.\n\nThird Gentleman:\nOne of the prettiest touches of all and that which\nangled for mine eyes, caught the water though not\nthe fish, was when, at the relation of the queen's\ndeath, with the manner how she came to't bravely\nconfessed and lamented by the king, how\nattentiveness wounded his daughter; till, from one\nsign of dolour to another, she did, with an 'Alas,'\nI would fain say, bleed tears, for I am sure my\nheart wept blood. Who was most marble there changed\ncolour; some swooned, all sorrowed: if all the world\ncould have seen 't, the woe had been universal.\n\nFirst Gentleman:\nAre they returned to the court?\n\nThird Gentleman:\nNo: the princess hearing of her mother's statue,\nwhich is in the keeping of Paulina,--a piece many\nyears in doing and now newly performed by that rare\nItalian master, Julio Romano, who, had he himself\neternity and could put breath into his work, would\nbeguile Nature of her custom, so perfectly he is her\nape: he so near to Hermione hath done Hermione that\nthey say one would speak to her and stand in hope of\nanswer: thither with all greediness of affection\nare they gone, and there they intend to sup.\n\nSecond Gentleman:\nI thought she had some great matter there in hand;\nfor she hath privately twice or thrice a day, ever\nsince the death of Hermione, visited that removed\nhouse. Shall we thither and with our company piece\nthe rejoicing?\n\nFirst Gentleman:\nWho would be thence that has the benefit of access?\nevery wink of an eye some new grace will be born:\nour absence makes us unthrifty to our knowledge.\nLet's along.\n\nAUTOLYCUS:\nNow, had I not the dash of my former life in me,\nwould preferment drop on my head. I brought the old\nman and his son aboard the prince: told him I heard\nthem talk of a fardel and I know not what: but he\nat that time, overfond of the shepherd's daughter,\nso he then took her to be, who began to be much\nsea-sick, and himself little better, extremity of\nweather continuing, this mystery remained\nundiscovered. But 'tis all one to me; for had I\nbeen the finder out of this secret, it would not\nhave relished among my other discredits.\nHere come those I have done good to against my will,\nand already appearing in the blossoms of their fortune.\n\nShepherd:\nCome, boy; I am past moe children, but thy sons and\ndaughters will be all gentlemen born.\n\nClown:\nYou are well met, sir. You denied to fight with me\nthis other day, because I was no gentleman born.\nSee you these clothes? say you see them not and\nthink me still no gentleman born: you were best say\nthese robes are not gentlemen born: give me the\nlie, do, and try whether I am not now a gentleman born.\n\nAUTOLYCUS:\nI know you are now, sir, a gentleman born.\n\nClown:\nAy, and have been so any time these four hours.\n\nShepherd:\nAnd so have I, boy.\n\nClown:\nSo you have: but I was a gentleman born before my\nfather; for the king's son took me by the hand, and\ncalled me brother; and then the two kings called my\nfather brother; and then the prince my brother and\nthe princess my sister called my father father; and\nso we wept, and there was the first gentleman-like\ntears that ever we shed.\n\nShepherd:\nWe may live, son, to shed many more.\n\nClown:\nAy; or else 'twere hard luck, being in so\npreposterous estate as we are.\n\nAUTOLYCUS:\nI humbly beseech you, sir, to pardon me all the\nfaults I have committed to your worship and to give\nme your good report to the prince my master.\n\nShepherd:\nPrithee, son, do; for we must be gentle, now we are\ngentlemen.\n\nClown:\nThou wilt amend thy life?\n\nAUTOLYCUS:\nAy, an it like your good worship.\n\nClown:\nGive me thy hand: I will swear to the prince thou\nart as honest a true fellow as any is in Bohemia.\n\nShepherd:\nYou may say it, but not swear it.\n\nClown:\nNot swear it, now I am a gentleman? Let boors and\nfranklins say it, I'll swear it.\n\nShepherd:\nHow if it be false, son?\n\nClown:\nIf it be ne'er so false, a true gentleman may swear\nit in the behalf of his friend: and I'll swear to\nthe prince thou art a tall fellow of thy hands and\nthat thou wilt not be drunk; but I know thou art no\ntall fellow of thy hands and that thou wilt be\ndrunk: but I'll swear it, and I would thou wouldst\nbe a tall fellow of thy hands.\n\nAUTOLYCUS:\nI will prove so, sir, to my power.\n\nClown:\nAy, by any means prove a tall fellow: if I do not\nwonder how thou darest venture to be drunk, not\nbeing a tall fellow, trust me not. Hark! the kings\nand the princes, our kindred, are going to see the\nqueen's picture. Come, follow us: we'll be thy\ngood masters.\n\nLEONTES:\nO grave and good Paulina, the great comfort\nThat I have had of thee!\n\nPAULINA:\nWhat, sovereign sir,\nI did not well I meant well. All my services\nYou have paid home: but that you have vouchsafed,\nWith your crown'd brother and these your contracted\nHeirs of your kingdoms, my poor house to visit,\nIt is a surplus of your grace, which never\nMy life may last to answer.\n\nLEONTES:\nO Paulina,\nWe honour you with trouble: but we came\nTo see the statue of our queen: your gallery\nHave we pass'd through, not without much content\nIn many singularities; but we saw not\nThat which my daughter came to look upon,\nThe statue of her mother.\n\nPAULINA:\nAs she lived peerless,\nSo her dead likeness, I do well believe,\nExcels whatever yet you look'd upon\nOr hand of man hath done; therefore I keep it\nLonely, apart. But here it is: prepare\nTo see the life as lively mock'd as ever\nStill sleep mock'd death: behold, and say 'tis well.\nI like your silence, it the more shows off\nYour wonder: but yet speak; first, you, my liege,\nComes it not something near?\n\nLEONTES:\nHer natural posture!\nChide me, dear stone, that I may say indeed\nThou art Hermione; or rather, thou art she\nIn thy not chiding, for she was as tender\nAs infancy and grace. But yet, Paulina,\nHermione was not so much wrinkled, nothing\nSo aged as this seems.\n\nPOLIXENES:\nO, not by much.\n\nPAULINA:\nSo much the more our carver's excellence;\nWhich lets go by some sixteen years and makes her\nAs she lived now.\n\nLEONTES:\nAs now she might have done,\nSo much to my good comfort, as it is\nNow piercing to my soul. O, thus she stood,\nEven with such life of majesty, warm life,\nAs now it coldly stands, when first I woo'd her!\nI am ashamed: does not the stone rebuke me\nFor being more stone than it? O royal piece,\nThere's magic in thy majesty, which has\nMy evils conjured to remembrance and\nFrom thy admiring daughter took the spirits,\nStanding like stone with thee.\n\nPERDITA:\nAnd give me leave,\nAnd do not say 'tis superstition, that\nI kneel and then implore her blessing. Lady,\nDear queen, that ended when I but began,\nGive me that hand of yours to kiss.\n\nPAULINA:\nO, patience!\nThe statue is but newly fix'd, the colour's Not dry.\n\nCAMILLO:\nMy lord, your sorrow was too sore laid on,\nWhich sixteen winters cannot blow away,\nSo many summers dry; scarce any joy\nDid ever so long live; no sorrow\nBut kill'd itself much sooner.\n\nPOLIXENES:\nDear my brother,\nLet him that was the cause of this have power\nTo take off so much grief from you as he\nWill piece up in himself.\n\nPAULINA:\nIndeed, my lord,\nIf I had thought the sight of my poor image\nWould thus have wrought you,--for the stone is mine--\nI'ld not have show'd it.\n\nLEONTES:\nDo not draw the curtain.\n\nPAULINA:\nNo longer shall you gaze on't, lest your fancy\nMay think anon it moves.\n\nLEONTES:\nLet be, let be.\nWould I were dead, but that, methinks, already--\nWhat was he that did make it? See, my lord,\nWould you not deem it breathed? and that those veins\nDid verily bear blood?\n\nPOLIXENES:\nMasterly done:\nThe very life seems warm upon her lip.\n\nLEONTES:\nThe fixture of her eye has motion in't,\nAs we are mock'd with art.\n\nPAULINA:\nI'll draw the curtain:\nMy lord's almost so far transported that\nHe'll think anon it lives.\n\nLEONTES:\nO sweet Paulina,\nMake me to think so twenty years together!\nNo settled senses of the world can match\nThe pleasure of that madness. Let 't alone.\n\nPAULINA:\nI am sorry, sir, I have thus far stirr'd you: but\nI could afflict you farther.\n\nLEONTES:\nDo, Paulina;\nFor this affliction has a taste as sweet\nAs any cordial comfort. Still, methinks,\nThere is an air comes from her: what fine chisel\nCould ever yet cut breath? Let no man mock me,\nFor I will kiss her.\n\nPAULINA:\nGood my lord, forbear:\nThe ruddiness upon her lip is wet;\nYou'll mar it if you kiss it, stain your own\nWith oily painting. Shall I draw the curtain?\n\nLEONTES:\nNo, not these twenty years.\n\nPERDITA:\nSo long could I\nStand by, a looker on.\n\nPAULINA:\nEither forbear,\nQuit presently the chapel, or resolve you\nFor more amazement. If you can behold it,\nI'll make the statue move indeed, descend\nAnd take you by the hand; but then you'll think--\nWhich I protest against--I am assisted\nBy wicked powers.\n\nLEONTES:\nWhat you can make her do,\nI am content to look on: what to speak,\nI am content to hear; for 'tis as easy\nTo make her speak as move.\n\nPAULINA:\nIt is required\nYou do awake your faith. Then all stand still;\nOn: those that think it is unlawful business\nI am about, let them depart.\n\nLEONTES:\nProceed:\nNo foot shall stir.\n\nPAULINA:\nMusic, awake her; strike!\n'Tis time; descend; be stone no more; approach;\nStrike all that look upon with marvel. Come,\nI'll fill your grave up: stir, nay, come away,\nBequeath to death your numbness, for from him\nDear life redeems you. You perceive she stirs:\nStart not; her actions shall be holy as\nYou hear my spell is lawful: do not shun her\nUntil you see her die again; for then\nYou kill her double. Nay, present your hand:\nWhen she was young you woo'd her; now in age\nIs she become the suitor?\n\nLEONTES:\nO, she's warm!\nIf this be magic, let it be an art\nLawful as eating.\n\nPOLIXENES:\nShe embraces him.\n\nCAMILLO:\nShe hangs about his neck:\nIf she pertain to life let her speak too.\n\nPOLIXENES:\nAy, and make't manifest where she has lived,\nOr how stolen from the dead.\n\nPAULINA:\nThat she is living,\nWere it but told you, should be hooted at\nLike an old tale: but it appears she lives,\nThough yet she speak not. Mark a little while.\nPlease you to interpose, fair madam: kneel\nAnd pray your mother's blessing. Turn, good lady;\nOur Perdita is found.\n\nHERMIONE:\nYou gods, look down\nAnd from your sacred vials pour your graces\nUpon my daughter's head! Tell me, mine own.\nWhere hast thou been preserved? where lived? how found\nThy father's court? for thou shalt hear that I,\nKnowing by Paulina that the oracle\nGave hope thou wast in being, have preserved\nMyself to see the issue.\n\nPAULINA:\nThere's time enough for that;\nLest they desire upon this push to trouble\nYour joys with like relation. Go together,\nYou precious winners all; your exultation\nPartake to every one. I, an old turtle,\nWill wing me to some wither'd bough and there\nMy mate, that's never to be found again,\nLament till I am lost.\n\nLEONTES:\nO, peace, Paulina!\nThou shouldst a husband take by my consent,\nAs I by thine a wife: this is a match,\nAnd made between's by vows. Thou hast found mine;\nBut how, is to be question'd; for I saw her,\nAs I thought, dead, and have in vain said many\nA prayer upon her grave. I'll not seek far--\nFor him, I partly know his mind--to find thee\nAn honourable husband. Come, Camillo,\nAnd take her by the hand, whose worth and honesty\nIs richly noted and here justified\nBy us, a pair of kings. Let's from this place.\nWhat! look upon my brother: both your pardons,\nThat e'er I put between your holy looks\nMy ill suspicion. This is your son-in-law,\nAnd son unto the king, who, heavens directing,\nIs troth-plight to your daughter. Good Paulina,\nLead us from hence, where we may leisurely\nEach one demand an answer to his part\nPerform'd in this wide gap of time since first\nWe were dissever'd: hastily lead away.\n\nDUKE VINCENTIO:\nEscalus.\n\nESCALUS:\nMy lord.\n\nDUKE VINCENTIO:\nOf government the properties to unfold,\nWould seem in me to affect speech and discourse;\nSince I am put to know that your own science\nExceeds, in that, the lists of all advice\nMy strength can give you: then no more remains,\nBut that to your sufficiency, as your Worth is able,\nAnd let them work. The nature of our people,\nOur city's institutions, and the terms\nFor common justice, you're as pregnant in\nAs art and practise hath enriched any\nThat we remember. There is our commission,\nFrom which we would not have you warp. Call hither,\nI say, bid come before us Angelo.\nWhat figure of us think you he will bear?\nFor you must know, we have with special soul\nElected him our absence to supply,\nLent him our terror, dress'd him with our love,\nAnd given his deputation all the organs\nOf our own power: what think you of it?\n\nESCALUS:\nIf any in Vienna be of worth\nTo undergo such ample grace and honour,\nIt is Lord Angelo.\n\nDUKE VINCENTIO:\nLook where he comes.\n\nANGELO:\nAlways obedient to your grace's will,\nI come to know your pleasure.\n\nDUKE VINCENTIO:\nAngelo,\nThere is a kind of character in thy life,\nThat to the observer doth thy history\nFully unfold. Thyself and thy belongings\nAre not thine own so proper as to waste\nThyself upon thy virtues, they on thee.\nHeaven doth with us as we with torches do,\nNot light them for themselves; for if our virtues\nDid not go forth of us, 'twere all alike\nAs if we had them not. Spirits are not finely touch'd\nBut to fine issues, nor Nature never lends\nThe smallest scruple of her excellence\nBut, like a thrifty goddess, she determines\nHerself the glory of a creditor,\nBoth thanks and use. But I do bend my speech\nTo one that can my part in him advertise;\nHold therefore, Angelo:--\nIn our remove be thou at full ourself;\nMortality and mercy in Vienna\nLive in thy tongue and heart: old Escalus,\nThough first in question, is thy secondary.\nTake thy commission.\n\nANGELO:\nNow, good my lord,\nLet there be some more test made of my metal,\nBefore so noble and so great a figure\nBe stamp'd upon it.\n\nDUKE VINCENTIO:\nNo more evasion:\nWe have with a leaven'd and prepared choice\nProceeded to you; therefore take your honours.\nOur haste from hence is of so quick condition\nThat it prefers itself and leaves unquestion'd\nMatters of needful value. We shall write to you,\nAs time and our concernings shall importune,\nHow it goes with us, and do look to know\nWhat doth befall you here. So, fare you well;\nTo the hopeful execution do I leave you\nOf your commissions.\n\nANGELO:\nYet give leave, my lord,\nThat we may bring you something on the way.\n\nDUKE VINCENTIO:\nMy haste may not admit it;\nNor need you, on mine honour, have to do\nWith any scruple; your scope is as mine own\nSo to enforce or qualify the laws\nAs to your soul seems good. Give me your hand:\nI'll privily away. I love the people,\nBut do not like to stage me to their eyes:\nThrough it do well, I do not relish well\nTheir loud applause and Aves vehement;\nNor do I think the man of safe discretion\nThat does affect it. Once more, fare you well.\n\nANGELO:\nThe heavens give safety to your purposes!\n\nESCALUS:\nLead forth and bring you back in happiness!\n\nDUKE:\nI thank you. Fare you well.\n\nESCALUS:\nI shall desire you, sir, to give me leave\nTo have free speech with you; and it concerns me\nTo look into the bottom of my place:\nA power I have, but of what strength and nature\nI am not yet instructed.\n\nANGELO:\n'Tis so with me. Let us withdraw together,\nAnd we may soon our satisfaction have\nTouching that point.\n\nESCALUS:\nI'll wait upon your honour.\n\nLUCIO:\nIf the duke with the other dukes come not to\ncomposition with the King of Hungary, why then all\nthe dukes fall upon the king.\n\nFirst Gentleman:\nHeaven grant us its peace, but not the King of\nHungary's!\n\nSecond Gentleman:\nAmen.\n\nLUCIO:\nThou concludest like the sanctimonious pirate, that\nwent to sea with the Ten Commandments, but scraped\none out of the table.\n\nSecond Gentleman:\n'Thou shalt not steal'?\n\nLUCIO:\nAy, that he razed.\n\nFirst Gentleman:\nWhy, 'twas a commandment to command the captain and\nall the rest from their functions: they put forth\nto steal. There's not a soldier of us all, that, in\nthe thanksgiving before meat, do relish the petition\nwell that prays for peace.\n\nSecond Gentleman:\nI never heard any soldier dislike it.\n\nLUCIO:\nI believe thee; for I think thou never wast where\ngrace was said.\n\nSecond Gentleman:\nNo? a dozen times at least.\n\nFirst Gentleman:\nWhat, in metre?\n\nLUCIO:\nIn any proportion or in any language.\n\nFirst Gentleman:\nI think, or in any religion.\n\nLUCIO:\nAy, why not? Grace is grace, despite of all\ncontroversy: as, for example, thou thyself art a\nwicked villain, despite of all grace.\n\nFirst Gentleman:\nWell, there went but a pair of shears between us.\n\nLUCIO:\nI grant; as there may between the lists and the\nvelvet. Thou art the list.\n\nFirst Gentleman:\nAnd thou the velvet: thou art good velvet; thou'rt\na three-piled piece, I warrant thee: I had as lief\nbe a list of an English kersey as be piled, as thou\nart piled, for a French velvet. Do I speak\nfeelingly now?\n\nLUCIO:\nI think thou dost; and, indeed, with most painful\nfeeling of thy speech: I will, out of thine own\nconfession, learn to begin thy health; but, whilst I\nlive, forget to drink after thee.\n\nFirst Gentleman:\nI think I have done myself wrong, have I not?\n\nSecond Gentleman:\nYes, that thou hast, whether thou art tainted or free.\n\nLUCIO:\nBehold, behold. where Madam Mitigation comes! I\nhave purchased as many diseases under her roof as come to--\n\nSecond Gentleman:\nTo what, I pray?\n\nLUCIO:\nJudge.\n\nSecond Gentleman:\nTo three thousand dolours a year.\n\nFirst Gentleman:\nAy, and more.\n\nLUCIO:\nA French crown more.\n\nFirst Gentleman:\nThou art always figuring diseases in me; but thou\nart full of error; I am sound.\n\nLUCIO:\nNay, not as one would say, healthy; but so sound as\nthings that are hollow: thy bones are hollow;\nimpiety has made a feast of thee.\n\nFirst Gentleman:\nHow now! which of your hips has the most profound sciatica?\n\nMISTRESS OVERDONE:\nWell, well; there's one yonder arrested and carried\nto prison was worth five thousand of you all.\n\nSecond Gentleman:\nWho's that, I pray thee?\n\nMISTRESS OVERDONE:\nMarry, sir, that's Claudio, Signior Claudio.\n\nFirst Gentleman:\nClaudio to prison? 'tis not so.\n\nMISTRESS OVERDONE:\nNay, but I know 'tis so: I saw him arrested, saw\nhim carried away; and, which is more, within these\nthree days his head to be chopped off.\n\nLUCIO:\nBut, after all this fooling, I would not have it so.\nArt thou sure of this?\n\nMISTRESS OVERDONE:\nI am too sure of it: and it is for getting Madam\nJulietta with child.\n\nLUCIO:\nBelieve me, this may be: he promised to meet me two\nhours since, and he was ever precise in\npromise-keeping.\n\nSecond Gentleman:\nBesides, you know, it draws something near to the\nspeech we had to such a purpose.\n\nFirst Gentleman:\nBut, most of all, agreeing with the proclamation.\n\nLUCIO:\nAway! let's go learn the truth of it.\n\nMISTRESS OVERDONE:\nThus, what with the war, what with the sweat, what\nwith the gallows and what with poverty, I am\ncustom-shrunk.\nHow now! what's the news with you?\n\nPOMPEY:\nYonder man is carried to prison.\n\nMISTRESS OVERDONE:\nWell; what has he done?\n\nPOMPEY:\nA woman.\n\nMISTRESS OVERDONE:\nBut what's his offence?\n\nPOMPEY:\nGroping for trouts in a peculiar river.\n\nMISTRESS OVERDONE:\nWhat, is there a maid with child by him?\n\nPOMPEY:\nNo, but there's a woman with maid by him. You have\nnot heard of the proclamation, have you?\n\nMISTRESS OVERDONE:\nWhat proclamation, man?\n\nPOMPEY:\nAll houses in the suburbs of Vienna must be plucked down.\n\nMISTRESS OVERDONE:\nAnd what shall become of those in the city?\n\nPOMPEY:\nThey shall stand for seed: they had gone down too,\nbut that a wise burgher put in for them.\n\nMISTRESS OVERDONE:\nBut shall all our houses of resort in the suburbs be\npulled down?\n\nPOMPEY:\nTo the ground, mistress.\n\nMISTRESS OVERDONE:\nWhy, here's a change indeed in the commonwealth!\nWhat shall become of me?\n\nPOMPEY:\nCome; fear you not: good counsellors lack no\nclients: though you change your place, you need not\nchange your trade; I'll be your tapster still.\nCourage! there will be pity taken on you: you that\nhave worn your eyes almost out in the service, you\nwill be considered.\n\nMISTRESS OVERDONE:\nWhat's to do here, Thomas tapster? let's withdraw.\n\nPOMPEY:\nHere comes Signior Claudio, led by the provost to\nprison; and there's Madam Juliet.\n\nCLAUDIO:\nFellow, why dost thou show me thus to the world?\nBear me to prison, where I am committed.\n\nProvost:\nI do it not in evil disposition,\nBut from Lord Angelo by special charge.\n\nCLAUDIO:\nThus can the demigod Authority\nMake us pay down for our offence by weight\nThe words of heaven; on whom it will, it will;\nOn whom it will not, so; yet still 'tis just.\n\nLUCIO:\nWhy, how now, Claudio! whence comes this restraint?\n\nCLAUDIO:\nFrom too much liberty, my Lucio, liberty:\nAs surfeit is the father of much fast,\nSo every scope by the immoderate use\nTurns to restraint. Our natures do pursue,\nLike rats that ravin down their proper bane,\nA thirsty evil; and when we drink we die.\n\nLUCIO:\nIf could speak so wisely under an arrest, I would\nsend for certain of my creditors: and yet, to say\nthe truth, I had as lief have the foppery of freedom\nas the morality of imprisonment. What's thy\noffence, Claudio?\n\nCLAUDIO:\nWhat but to speak of would offend again.\n\nLUCIO:\nWhat, is't murder?\n\nCLAUDIO:\nNo.\n\nLUCIO:\nLechery?\n\nCLAUDIO:\nCall it so.\n\nProvost:\nAway, sir! you must go.\n\nCLAUDIO:\nOne word, good friend. Lucio, a word with you.\n\nLUCIO:\nA hundred, if they'll do you any good.\nIs lechery so look'd after?\n\nCLAUDIO:\nThus stands it with me: upon a true contract\nI got possession of Julietta's bed:\nYou know the lady; she is fast my wife,\nSave that we do the denunciation lack\nOf outward order: this we came not to,\nOnly for propagation of a dower\nRemaining in the coffer of her friends,\nFrom whom we thought it meet to hide our love\nTill time had made them for us. But it chances\nThe stealth of our most mutual entertainment\nWith character too gross is writ on Juliet.\n\nLUCIO:\nWith child, perhaps?\n\nCLAUDIO:\nUnhappily, even so.\nAnd the new deputy now for the duke--\nWhether it be the fault and glimpse of newness,\nOr whether that the body public be\nA horse whereon the governor doth ride,\nWho, newly in the seat, that it may know\nHe can command, lets it straight feel the spur;\nWhether the tyranny be in his place,\nOr in his emmence that fills it up,\nI stagger in:--but this new governor\nAwakes me all the enrolled penalties\nWhich have, like unscour'd armour, hung by the wall\nSo long that nineteen zodiacs have gone round\nAnd none of them been worn; and, for a name,\nNow puts the drowsy and neglected act\nFreshly on me: 'tis surely for a name.\n\nLUCIO:\nI warrant it is: and thy head stands so tickle on\nthy shoulders that a milkmaid, if she be in love,\nmay sigh it off. Send after the duke and appeal to\nhim.\n\nCLAUDIO:\nI have done so, but he's not to be found.\nI prithee, Lucio, do me this kind service:\nThis day my sister should the cloister enter\nAnd there receive her approbation:\nAcquaint her with the danger of my state:\nImplore her, in my voice, that she make friends\nTo the strict deputy; bid herself assay him:\nI have great hope in that; for in her youth\nThere is a prone and speechless dialect,\nSuch as move men; beside, she hath prosperous art\nWhen she will play with reason and discourse,\nAnd well she can persuade.\n\nLUCIO:\nI pray she may; as well for the encouragement of the\nlike, which else would stand under grievous\nimposition, as for the enjoying of thy life, who I\nwould be sorry should be thus foolishly lost at a\ngame of tick-tack. I'll to her.\n\nCLAUDIO:\nI thank you, good friend Lucio.\n\nLUCIO:\nWithin two hours.\n\nCLAUDIO:\nCome, officer, away!\n\nDUKE VINCENTIO:\nNo, holy father; throw away that thought;\nBelieve not that the dribbling dart of love\nCan pierce a complete bosom. Why I desire thee\nTo give me secret harbour, hath a purpose\nMore grave and wrinkled than the aims and ends\nOf burning youth.\n\nFRIAR THOMAS:\nMay your grace speak of it?\n\nDUKE VINCENTIO:\nMy holy sir, none better knows than you\nHow I have ever loved the life removed\nAnd held in idle price to haunt assemblies\nWhere youth, and cost, and witless bravery keeps.\nI have deliver'd to Lord Angelo,\nA man of stricture and firm abstinence,\nMy absolute power and place here in Vienna,\nAnd he supposes me travell'd to Poland;\nFor so I have strew'd it in the common ear,\nAnd so it is received. Now, pious sir,\nYou will demand of me why I do this?\n\nFRIAR THOMAS:\nGladly, my lord.\n\nDUKE VINCENTIO:\nWe have strict statutes and most biting laws.\nThe needful bits and curbs to headstrong weeds,\nWhich for this nineteen years we have let slip;\nEven like an o'ergrown lion in a cave,\nThat goes not out to prey. Now, as fond fathers,\nHaving bound up the threatening twigs of birch,\nOnly to stick it in their children's sight\nFor terror, not to use, in time the rod\nBecomes more mock'd than fear'd; so our decrees,\nDead to infliction, to themselves are dead;\nAnd liberty plucks justice by the nose;\nThe baby beats the nurse, and quite athwart\nGoes all decorum.\n\nFRIAR THOMAS:\nIt rested in your grace\nTo unloose this tied-up justice when you pleased:\nAnd it in you more dreadful would have seem'd\nThan in Lord Angelo.\n\nDUKE VINCENTIO:\nI do fear, too dreadful:\nSith 'twas my fault to give the people scope,\n'Twould be my tyranny to strike and gall them\nFor what I bid them do: for we bid this be done,\nWhen evil deeds have their permissive pass\nAnd not the punishment. Therefore indeed, my father,\nI have on Angelo imposed the office;\nWho may, in the ambush of my name, strike home,\nAnd yet my nature never in the fight\nTo do in slander. And to behold his sway,\nI will, as 'twere a brother of your order,\nVisit both prince and people: therefore, I prithee,\nSupply me with the habit and instruct me\nHow I may formally in person bear me\nLike a true friar. More reasons for this action\nAt our more leisure shall I render you;\nOnly, this one: Lord Angelo is precise;\nStands at a guard with envy; scarce confesses\nThat his blood flows, or that his appetite\nIs more to bread than stone: hence shall we see,\nIf power change purpose, what our seemers be.\n\nISABELLA:\nAnd have you nuns no farther privileges?\n\nFRANCISCA:\nAre not these large enough?\n\nISABELLA:\nYes, truly; I speak not as desiring more;\nBut rather wishing a more strict restraint\nUpon the sisterhood, the votarists of Saint Clare.\n\nLUCIO:\n\nISABELLA:\nWho's that which calls?\n\nFRANCISCA:\nIt is a man's voice. Gentle Isabella,\nTurn you the key, and know his business of him;\nYou may, I may not; you are yet unsworn.\nWhen you have vow'd, you must not speak with men\nBut in the presence of the prioress:\nThen, if you speak, you must not show your face,\nOr, if you show your face, you must not speak.\nHe calls again; I pray you, answer him.\n\nISABELLA:\nPeace and prosperity! Who is't that calls\n\nLUCIO:\nHail, virgin, if you be, as those cheek-roses\nProclaim you are no less! Can you so stead me\nAs bring me to the sight of Isabella,\nA novice of this place and the fair sister\nTo her unhappy brother Claudio?\n\nISABELLA:\nWhy 'her unhappy brother'? let me ask,\nThe rather for I now must make you know\nI am that Isabella and his sister.\n\nLUCIO:\nGentle and fair, your brother kindly greets you:\nNot to be weary with you, he's in prison.\n\nISABELLA:\nWoe me! for what?\n\nLUCIO:\nFor that which, if myself might be his judge,\nHe should receive his punishment in thanks:\nHe hath got his friend with child.\n\nISABELLA:\nSir, make me not your story.\n\nLUCIO:\nIt is true.\nI would not--though 'tis my familiar sin\nWith maids to seem the lapwing and to jest,\nTongue far from heart--play with all virgins so:\nI hold you as a thing ensky'd and sainted.\nBy your renouncement an immortal spirit,\nAnd to be talk'd with in sincerity,\nAs with a saint.\n\nISABELLA:\nYou do blaspheme the good in mocking me.\n\nLUCIO:\nDo not believe it. Fewness and truth, 'tis thus:\nYour brother and his lover have embraced:\nAs those that feed grow full, as blossoming time\nThat from the seedness the bare fallow brings\nTo teeming foison, even so her plenteous womb\nExpresseth his full tilth and husbandry.\n\nISABELLA:\nSome one with child by him? My cousin Juliet?\n\nLUCIO:\nIs she your cousin?\n\nISABELLA:\nAdoptedly; as school-maids change their names\nBy vain though apt affection.\n\nLUCIO:\nShe it is.\n\nISABELLA:\nO, let him marry her.\n\nLUCIO:\nThis is the point.\nThe duke is very strangely gone from hence;\nBore many gentlemen, myself being one,\nIn hand and hope of action: but we do learn\nBy those that know the very nerves of state,\nHis givings-out were of an infinite distance\nFrom his true-meant design. Upon his place,\nAnd with full line of his authority,\nGoverns Lord Angelo; a man whose blood\nIs very snow-broth; one who never feels\nThe wanton stings and motions of the sense,\nBut doth rebate and blunt his natural edge\nWith profits of the mind, study and fast.\nHe--to give fear to use and liberty,\nWhich have for long run by the hideous law,\nAs mice by lions--hath pick'd out an act,\nUnder whose heavy sense your brother's life\nFalls into forfeit: he arrests him on it;\nAnd follows close the rigour of the statute,\nTo make him an example. All hope is gone,\nUnless you have the grace by your fair prayer\nTo soften Angelo: and that's my pith of business\n'Twixt you and your poor brother.\n\nISABELLA:\nDoth he so seek his life?\n\nLUCIO:\nHas censured him\nAlready; and, as I hear, the provost hath\nA warrant for his execution.\n\nISABELLA:\nAlas! what poor ability's in me\nTo do him good?\n\nLUCIO:\nAssay the power you have.\n\nISABELLA:\nMy power? Alas, I doubt--\n\nLUCIO:\nOur doubts are traitors\nAnd make us lose the good we oft might win\nBy fearing to attempt. Go to Lord Angelo,\nAnd let him learn to know, when maidens sue,\nMen give like gods; but when they weep and kneel,\nAll their petitions are as freely theirs\nAs they themselves would owe them.\n\nISABELLA:\nI'll see what I can do.\n\nLUCIO:\nBut speedily.\n\nISABELLA:\nI will about it straight;\nNo longer staying but to give the mother\nNotice of my affair. I humbly thank you:\nCommend me to my brother: soon at night\nI'll send him certain word of my success.\n\nLUCIO:\nI take my leave of you.\n\nISABELLA:\nGood sir, adieu.\n\nANGELO:\nWe must not make a scarecrow of the law,\nSetting it up to fear the birds of prey,\nAnd let it keep one shape, till custom make it\nTheir perch and not their terror.\n\nESCALUS:\nAy, but yet\nLet us be keen, and rather cut a little,\nThan fall, and bruise to death. Alas, this gentleman\nWhom I would save, had a most noble father!\nLet but your honour know,\nWhom I believe to be most strait in virtue,\nThat, in the working of your own affections,\nHad time cohered with place or place with wishing,\nOr that the resolute acting of your blood\nCould have attain'd the effect of your own purpose,\nWhether you had not sometime in your life\nErr'd in this point which now you censure him,\nAnd pull'd the law upon you.\n\nANGELO:\n'Tis one thing to be tempted, Escalus,\nAnother thing to fall. I not deny,\nThe jury, passing on the prisoner's life,\nMay in the sworn twelve have a thief or two\nGuiltier than him they try. What's open made to justice,\nThat justice seizes: what know the laws\nThat thieves do pass on thieves? 'Tis very pregnant,\nThe jewel that we find, we stoop and take't\nBecause we see it; but what we do not see\nWe tread upon, and never think of it.\nYou may not so extenuate his offence\nFor I have had such faults; but rather tell me,\nWhen I, that censure him, do so offend,\nLet mine own judgment pattern out my death,\nAnd nothing come in partial. Sir, he must die.\n\nESCALUS:\nBe it as your wisdom will.\n\nANGELO:\nWhere is the provost?\n\nProvost:\nHere, if it like your honour.\n\nANGELO:\nSee that Claudio\nBe executed by nine to-morrow morning:\nBring him his confessor, let him be prepared;\nFor that's the utmost of his pilgrimage.\n\nESCALUS:\n\nELBOW:\nCome, bring them away: if these be good people in\na commonweal that do nothing but use their abuses in\ncommon houses, I know no law: bring them away.\n\nANGELO:\nHow now, sir! What's your name? and what's the matter?\n\nELBOW:\nIf it Please your honour, I am the poor duke's\nconstable, and my name is Elbow: I do lean upon\njustice, sir, and do bring in here before your good\nhonour two notorious benefactors.\n\nANGELO:\nBenefactors? Well; what benefactors are they? are\nthey not malefactors?\n\nELBOW:\nIf it? please your honour, I know not well what they\nare: but precise villains they are, that I am sure\nof; and void of all profanation in the world that\ngood Christians ought to have.\n\nESCALUS:\nThis comes off well; here's a wise officer.\n\nANGELO:\nGo to: what quality are they of? Elbow is your\nname? why dost thou not speak, Elbow?\n\nPOMPEY:\nHe cannot, sir; he's out at elbow.\n\nANGELO:\nWhat are you, sir?\n\nELBOW:\nHe, sir! a tapster, sir; parcel-bawd; one that\nserves a bad woman; whose house, sir, was, as they\nsay, plucked down in the suburbs; and now she\nprofesses a hot-house, which, I think, is a very ill house too.\n\nESCALUS:\nHow know you that?\n\nELBOW:\nMy wife, sir, whom I detest before heaven and your honour,--\n\nESCALUS:\nHow? thy wife?\n\nELBOW:\nAy, sir; whom, I thank heaven, is an honest woman,--\n\nESCALUS:\nDost thou detest her therefore?\n\nELBOW:\nI say, sir, I will detest myself also, as well as\nshe, that this house, if it be not a bawd's house,\nit is pity of her life, for it is a naughty house.\n\nESCALUS:\nHow dost thou know that, constable?\n\nELBOW:\nMarry, sir, by my wife; who, if she had been a woman\ncardinally given, might have been accused in\nfornication, adultery, and all uncleanliness there.\n\nESCALUS:\nBy the woman's means?\n\nELBOW:\nAy, sir, by Mistress Overdone's means: but as she\nspit in his face, so she defied him.\n\nPOMPEY:\nSir, if it please your honour, this is not so.\n\nELBOW:\nProve it before these varlets here, thou honourable\nman; prove it.\n\nESCALUS:\nDo you hear how he misplaces?\n\nPOMPEY:\nSir, she came in great with child; and longing,\nsaving your honour's reverence, for stewed prunes;\nsir, we had but two in the house, which at that very\ndistant time stood, as it were, in a fruit-dish, a\ndish of some three-pence; your honours have seen\nsuch dishes; they are not China dishes, but very\ngood dishes,--\n\nESCALUS:\nGo to, go to: no matter for the dish, sir.\n\nPOMPEY:\nNo, indeed, sir, not of a pin; you are therein in\nthe right: but to the point. As I say, this\nMistress Elbow, being, as I say, with child, and\nbeing great-bellied, and longing, as I said, for\nprunes; and having but two in the dish, as I said,\nMaster Froth here, this very man, having eaten the\nrest, as I said, and, as I say, paying for them very\nhonestly; for, as you know, Master Froth, I could\nnot give you three-pence again.\n\nFROTH:\nNo, indeed.\n\nPOMPEY:\nVery well: you being then, if you be remembered,\ncracking the stones of the foresaid prunes,--\n\nFROTH:\nAy, so I did indeed.\n\nPOMPEY:\nWhy, very well; I telling you then, if you be\nremembered, that such a one and such a one were past\ncure of the thing you wot of, unless they kept very\ngood diet, as I told you,--\n\nFROTH:\nAll this is true.\n\nPOMPEY:\nWhy, very well, then,--\n\nESCALUS:\nCome, you are a tedious fool: to the purpose. What\nwas done to Elbow's wife, that he hath cause to\ncomplain of? Come me to what was done to her.\n\nPOMPEY:\nSir, your honour cannot come to that yet.\n\nESCALUS:\nNo, sir, nor I mean it not.\n\nPOMPEY:\nSir, but you shall come to it, by your honour's\nleave. And, I beseech you, look into Master Froth\nhere, sir; a man of four-score pound a year; whose\nfather died at Hallowmas: was't not at Hallowmas,\nMaster Froth?\n\nFROTH:\nAll-hallond eve.\n\nPOMPEY:\nWhy, very well; I hope here be truths. He, sir,\nsitting, as I say, in a lower chair, sir; 'twas in\nthe Bunch of Grapes, where indeed you have a delight\nto sit, have you not?\n\nFROTH:\nI have so; because it is an open room and good for winter.\n\nPOMPEY:\nWhy, very well, then; I hope here be truths.\n\nANGELO:\nThis will last out a night in Russia,\nWhen nights are longest there: I'll take my leave.\nAnd leave you to the hearing of the cause;\nHoping you'll find good cause to whip them all.\n\nESCALUS:\nI think no less. Good morrow to your lordship.\nNow, sir, come on: what was done to Elbow's wife, once more?\n\nPOMPEY:\nOnce, sir? there was nothing done to her once.\n\nELBOW:\nI beseech you, sir, ask him what this man did to my wife.\n\nPOMPEY:\nI beseech your honour, ask me.\n\nESCALUS:\nWell, sir; what did this gentleman to her?\n\nPOMPEY:\nI beseech you, sir, look in this gentleman's face.\nGood Master Froth, look upon his honour; 'tis for a\ngood purpose. Doth your honour mark his face?\n\nESCALUS:\nAy, sir, very well.\n\nPOMPEY:\nNay; I beseech you, mark it well.\n\nESCALUS:\nWell, I do so.\n\nPOMPEY:\nDoth your honour see any harm in his face?\n\nESCALUS:\nWhy, no.\n\nPOMPEY:\nI'll be supposed upon a book, his face is the worst\nthing about him. Good, then; if his face be the\nworst thing about him, how could Master Froth do the\nconstable's wife any harm? I would know that of\nyour honour.\n\nESCALUS:\nHe's in the right. Constable, what say you to it?\n\nELBOW:\nFirst, an it like you, the house is a respected\nhouse; next, this is a respected fellow; and his\nmistress is a respected woman.\n\nPOMPEY:\nBy this hand, sir, his wife is a more respected\nperson than any of us all.\n\nELBOW:\nVarlet, thou liest; thou liest, wicked varlet! the\ntime has yet to come that she was ever respected\nwith man, woman, or child.\n\nPOMPEY:\nSir, she was respected with him before he married with her.\n\nESCALUS:\nWhich is the wiser here? Justice or Iniquity? Is\nthis true?\n\nELBOW:\nO thou caitiff! O thou varlet! O thou wicked\nHannibal! I respected with her before I was married\nto her! If ever I was respected with her, or she\nwith me, let not your worship think me the poor\nduke's officer. Prove this, thou wicked Hannibal, or\nI'll have mine action of battery on thee.\n\nESCALUS:\nIf he took you a box o' the ear, you might have your\naction of slander too.\n\nELBOW:\nMarry, I thank your good worship for it. What is't\nyour worship's pleasure I shall do with this wicked caitiff?\n\nESCALUS:\nTruly, officer, because he hath some offences in him\nthat thou wouldst discover if thou couldst, let him\ncontinue in his courses till thou knowest what they\nare.\n\nELBOW:\nMarry, I thank your worship for it. Thou seest, thou\nwicked varlet, now, what's come upon thee: thou art\nto continue now, thou varlet; thou art to continue.\n\nESCALUS:\nWhere were you born, friend?\n\nFROTH:\nHere in Vienna, sir.\n\nESCALUS:\nAre you of fourscore pounds a year?\n\nFROTH:\nYes, an't please you, sir.\n\nESCALUS:\nSo. What trade are you of, sir?\n\nPOMPHEY:\nTapster; a poor widow's tapster.\n\nESCALUS:\nYour mistress' name?\n\nPOMPHEY:\nMistress Overdone.\n\nESCALUS:\nHath she had any more than one husband?\n\nPOMPEY:\nNine, sir; Overdone by the last.\n\nESCALUS:\nNine! Come hither to me, Master Froth. Master\nFroth, I would not have you acquainted with\ntapsters: they will draw you, Master Froth, and you\nwill hang them. Get you gone, and let me hear no\nmore of you.\n\nFROTH:\nI thank your worship. For mine own part, I never\ncome into any room in a tap-house, but I am drawn\nin.\n\nESCALUS:\nWell, no more of it, Master Froth: farewell.\nCome you hither to me, Master tapster. What's your\nname, Master tapster?\n\nPOMPEY:\nPompey.\n\nESCALUS:\nWhat else?\n\nPOMPEY:\nBum, sir.\n\nESCALUS:\nTroth, and your bum is the greatest thing about you;\nso that in the beastliest sense you are Pompey the\nGreat. Pompey, you are partly a bawd, Pompey,\nhowsoever you colour it in being a tapster, are you\nnot? come, tell me true: it shall be the better for you.\n\nPOMPEY:\nTruly, sir, I am a poor fellow that would live.\n\nESCALUS:\nHow would you live, Pompey? by being a bawd? What\ndo you think of the trade, Pompey? is it a lawful trade?\n\nPOMPEY:\nIf the law would allow it, sir.\n\nESCALUS:\nBut the law will not allow it, Pompey; nor it shall\nnot be allowed in Vienna.\n\nPOMPEY:\nDoes your worship mean to geld and splay all the\nyouth of the city?\n\nESCALUS:\nNo, Pompey.\n\nPOMPEY:\nTruly, sir, in my poor opinion, they will to't then.\nIf your worship will take order for the drabs and\nthe knaves, you need not to fear the bawds.\n\nESCALUS:\nThere are pretty orders beginning, I can tell you:\nit is but heading and hanging.\n\nPOMPEY:\nIf you head and hang all that offend that way but\nfor ten year together, you'll be glad to give out a\ncommission for more heads: if this law hold in\nVienna ten year, I'll rent the fairest house in it\nafter three-pence a bay: if you live to see this\ncome to pass, say Pompey told you so.\n\nESCALUS:\nThank you, good Pompey; and, in requital of your\nprophecy, hark you: I advise you, let me not find\nyou before me again upon any complaint whatsoever;\nno, not for dwelling where you do: if I do, Pompey,\nI shall beat you to your tent, and prove a shrewd\nCaesar to you; in plain dealing, Pompey, I shall\nhave you whipt: so, for this time, Pompey, fare you well.\n\nPOMPEY:\nI thank your worship for your good counsel:\nbut I shall follow it as the flesh and fortune shall\nbetter determine.\nWhip me? No, no; let carman whip his jade:\nThe valiant heart is not whipt out of his trade.\n\nESCALUS:\nCome hither to me, Master Elbow; come hither, Master\nconstable. How long have you been in this place of constable?\n\nELBOW:\nSeven year and a half, sir.\n\nESCALUS:\nI thought, by your readiness in the office, you had\ncontinued in it some time. You say, seven years together?\n\nELBOW:\nAnd a half, sir.\n\nESCALUS:\nAlas, it hath been great pains to you. They do you\nwrong to put you so oft upon 't: are there not men\nin your ward sufficient to serve it?\n\nELBOW:\nFaith, sir, few of any wit in such matters: as they\nare chosen, they are glad to choose me for them; I\ndo it for some piece of money, and go through with\nall.\n\nESCALUS:\nLook you bring me in the names of some six or seven,\nthe most sufficient of your parish.\n\nELBOW:\nTo your worship's house, sir?\n\nESCALUS:\nTo my house. Fare you well.\nWhat's o'clock, think you?\n\nJustice:\nEleven, sir.\n\nESCALUS:\nI pray you home to dinner with me.\n\nJustice:\nI humbly thank you.\n\nESCALUS:\nIt grieves me for the death of Claudio;\nBut there's no remedy.\n\nJustice:\nLord Angelo is severe.\n\nESCALUS:\nIt is but needful:\nMercy is not itself, that oft looks so;\nPardon is still the nurse of second woe:\nBut yet,--poor Claudio! There is no remedy.\nCome, sir.\n\nServant:\nHe's hearing of a cause; he will come straight\nI'll tell him of you.\n\nProvost:\nPray you, do.\nI'll know\nHis pleasure; may be he will relent. Alas,\nHe hath but as offended in a dream!\nAll sects, all ages smack of this vice; and he\nTo die for't!\n\nANGELO:\nNow, what's the matter. Provost?\n\nProvost:\nIs it your will Claudio shall die tomorrow?\n\nANGELO:\nDid not I tell thee yea? hadst thou not order?\nWhy dost thou ask again?\n\nProvost:\nLest I might be too rash:\nUnder your good correction, I have seen,\nWhen, after execution, judgment hath\nRepented o'er his doom.\n\nANGELO:\nGo to; let that be mine:\nDo you your office, or give up your place,\nAnd you shall well be spared.\n\nProvost:\nI crave your honour's pardon.\nWhat shall be done, sir, with the groaning Juliet?\nShe's very near her hour.\n\nANGELO:\nDispose of her\nTo some more fitter place, and that with speed.\n\nServant:\nHere is the sister of the man condemn'd\nDesires access to you.\n\nANGELO:\nHath he a sister?\n\nProvost:\nAy, my good lord; a very virtuous maid,\nAnd to be shortly of a sisterhood,\nIf not already.\n\nANGELO:\nWell, let her be admitted.\nSee you the fornicatress be removed:\nLet have needful, but not lavish, means;\nThere shall be order for't.\n\nProvost:\nGod save your honour!\n\nANGELO:\nStay a little while.\nYou're welcome: what's your will?\n\nISABELLA:\nI am a woeful suitor to your honour,\nPlease but your honour hear me.\n\nANGELO:\nWell; what's your suit?\n\nISABELLA:\nThere is a vice that most I do abhor,\nAnd most desire should meet the blow of justice;\nFor which I would not plead, but that I must;\nFor which I must not plead, but that I am\nAt war 'twixt will and will not.\n\nANGELO:\nWell; the matter?\n\nISABELLA:\nI have a brother is condemn'd to die:\nI do beseech you, let it be his fault,\nAnd not my brother.\n\nProvost:\n\nANGELO:\nCondemn the fault and not the actor of it?\nWhy, every fault's condemn'd ere it be done:\nMine were the very cipher of a function,\nTo fine the faults whose fine stands in record,\nAnd let go by the actor.\n\nISABELLA:\nO just but severe law!\nI had a brother, then. Heaven keep your honour!\n\nLUCIO:\n\nISABELLA:\nMust he needs die?\n\nANGELO:\nMaiden, no remedy.\n\nISABELLA:\nYes; I do think that you might pardon him,\nAnd neither heaven nor man grieve at the mercy.\n\nANGELO:\nI will not do't.\n\nISABELLA:\nBut can you, if you would?\n\nANGELO:\nLook, what I will not, that I cannot do.\n\nISABELLA:\nBut might you do't, and do the world no wrong,\nIf so your heart were touch'd with that remorse\nAs mine is to him?\n\nANGELO:\nHe's sentenced; 'tis too late.\n\nLUCIO:\n\nISABELLA:\nToo late? why, no; I, that do speak a word.\nMay call it back again. Well, believe this,\nNo ceremony that to great ones 'longs,\nNot the king's crown, nor the deputed sword,\nThe marshal's truncheon, nor the judge's robe,\nBecome them with one half so good a grace\nAs mercy does.\nIf he had been as you and you as he,\nYou would have slipt like him; but he, like you,\nWould not have been so stern.\n\nANGELO:\nPray you, be gone.\n\nISABELLA:\nI would to heaven I had your potency,\nAnd you were Isabel! should it then be thus?\nNo; I would tell what 'twere to be a judge,\nAnd what a prisoner.\n\nLUCIO:\n\nANGELO:\nYour brother is a forfeit of the law,\nAnd you but waste your words.\n\nISABELLA:\nAlas, alas!\nWhy, all the souls that were were forfeit once;\nAnd He that might the vantage best have took\nFound out the remedy. How would you be,\nIf He, which is the top of judgment, should\nBut judge you as you are? O, think on that;\nAnd mercy then will breathe within your lips,\nLike man new made.\n\nANGELO:\nBe you content, fair maid;\nIt is the law, not I condemn your brother:\nWere he my kinsman, brother, or my son,\nIt should be thus with him: he must die tomorrow.\n\nISABELLA:\nTo-morrow! O, that's sudden! Spare him, spare him!\nHe's not prepared for death. Even for our kitchens\nWe kill the fowl of season: shall we serve heaven\nWith less respect than we do minister\nTo our gross selves? Good, good my lord, bethink you;\nWho is it that hath died for this offence?\nThere's many have committed it.\n\nLUCIO:\n\nANGELO:\nThe law hath not been dead, though it hath slept:\nThose many had not dared to do that evil,\nIf the first that did the edict infringe\nHad answer'd for his deed: now 'tis awake\nTakes note of what is done; and, like a prophet,\nLooks in a glass, that shows what future evils,\nEither new, or by remissness new-conceived,\nAnd so in progress to be hatch'd and born,\nAre now to have no successive degrees,\nBut, ere they live, to end.\n\nISABELLA:\nYet show some pity.\n\nANGELO:\nI show it most of all when I show justice;\nFor then I pity those I do not know,\nWhich a dismiss'd offence would after gall;\nAnd do him right that, answering one foul wrong,\nLives not to act another. Be satisfied;\nYour brother dies to-morrow; be content.\n\nISABELLA:\nSo you must be the first that gives this sentence,\nAnd he, that suffer's. O, it is excellent\nTo have a giant's strength; but it is tyrannous\nTo use it like a giant.\n\nLUCIO:\n\nISABELLA:\nCould great men thunder\nAs Jove himself does, Jove would ne'er be quiet,\nFor every pelting, petty officer\nWould use his heaven for thunder;\nNothing but thunder! Merciful Heaven,\nThou rather with thy sharp and sulphurous bolt\nSplit'st the unwedgeable and gnarled oak\nThan the soft myrtle: but man, proud man,\nDrest in a little brief authority,\nMost ignorant of what he's most assured,\nHis glassy essence, like an angry ape,\nPlays such fantastic tricks before high heaven\nAs make the angels weep; who, with our spleens,\nWould all themselves laugh mortal.\n\nLUCIO:\n\nProvost:\n\nISABELLA:\nWe cannot weigh our brother with ourself:\nGreat men may jest with saints; 'tis wit in them,\nBut in the less foul profanation.\n\nLUCIO:\nThou'rt i' the right, girl; more o, that.\n\nISABELLA:\nThat in the captain's but a choleric word,\nWhich in the soldier is flat blasphemy.\n\nLUCIO:\n\nANGELO:\nWhy do you put these sayings upon me?\n\nISABELLA:\nBecause authority, though it err like others,\nHath yet a kind of medicine in itself,\nThat skins the vice o' the top. Go to your bosom;\nKnock there, and ask your heart what it doth know\nThat's like my brother's fault: if it confess\nA natural guiltiness such as is his,\nLet it not sound a thought upon your tongue\nAgainst my brother's life.\n\nANGELO:\n\nISABELLA:\nGentle my lord, turn back.\n\nANGELO:\nI will bethink me: come again tomorrow.\n\nISABELLA:\nHark how I'll bribe you: good my lord, turn back.\n\nANGELO:\nHow! bribe me?\n\nISABELLA:\nAy, with such gifts that heaven shall share with you.\n\nLUCIO:\n\nISABELLA:\nNot with fond shekels of the tested gold,\nOr stones whose rates are either rich or poor\nAs fancy values them; but with true prayers\nThat shall be up at heaven and enter there\nEre sun-rise, prayers from preserved souls,\nFrom fasting maids whose minds are dedicate\nTo nothing temporal.\n\nANGELO:\nWell; come to me to-morrow.\n\nLUCIO:\n\nISABELLA:\nHeaven keep your honour safe!\n\nANGELO:\n\nISABELLA:\nAt what hour to-morrow\nShall I attend your lordship?\n\nANGELO:\nAt any time 'fore noon.\n\nISABELLA:\n'Save your honour!\n\nANGELO:\nFrom thee, even from thy virtue!\nWhat's this, what's this? Is this her fault or mine?\nThe tempter or the tempted, who sins most?\nHa!\nNot she: nor doth she tempt: but it is I\nThat, lying by the violet in the sun,\nDo as the carrion does, not as the flower,\nCorrupt with virtuous season. Can it be\nThat modesty may more betray our sense\nThan woman's lightness? Having waste ground enough,\nShall we desire to raze the sanctuary\nAnd pitch our evils there? O, fie, fie, fie!\nWhat dost thou, or what art thou, Angelo?\nDost thou desire her foully for those things\nThat make her good? O, let her brother live!\nThieves for their robbery have authority\nWhen judges steal themselves. What, do I love her,\nThat I desire to hear her speak again,\nAnd feast upon her eyes? What is't I dream on?\nO cunning enemy, that, to catch a saint,\nWith saints dost bait thy hook! Most dangerous\nIs that temptation that doth goad us on\nTo sin in loving virtue: never could the strumpet,\nWith all her double vigour, art and nature,\nOnce stir my temper; but this virtuous maid\nSubdues me quite. Even till now,\nWhen men were fond, I smiled and wonder'd how.\n\nDUKE VINCENTIO:\nHail to you, provost! so I think you are.\n\nProvost:\nI am the provost. What's your will, good friar?\n\nDUKE VINCENTIO:\nBound by my charity and my blest order,\nI come to visit the afflicted spirits\nHere in the prison. Do me the common right\nTo let me see them and to make me know\nThe nature of their crimes, that I may minister\nTo them accordingly.\n\nProvost:\nI would do more than that, if more were needful.\nLook, here comes one: a gentlewoman of mine,\nWho, falling in the flaws of her own youth,\nHath blister'd her report: she is with child;\nAnd he that got it, sentenced; a young man\nMore fit to do another such offence\nThan die for this.\n\nDUKE VINCENTIO:\nWhen must he die?\n\nProvost:\nAs I do think, to-morrow.\nI have provided for you: stay awhile,\nAnd you shall be conducted.\n\nDUKE VINCENTIO:\nRepent you, fair one, of the sin you carry?\n\nJULIET:\nI do; and bear the shame most patiently.\n\nDUKE VINCENTIO:\nI'll teach you how you shall arraign your conscience,\nAnd try your penitence, if it be sound,\nOr hollowly put on.\n\nJULIET:\nI'll gladly learn.\n\nDUKE VINCENTIO:\nLove you the man that wrong'd you?\n\nJULIET:\nYes, as I love the woman that wrong'd him.\n\nDUKE VINCENTIO:\nSo then it seems your most offenceful act\nWas mutually committed?\n\nJULIET:\nMutually.\n\nDUKE VINCENTIO:\nThen was your sin of heavier kind than his.\n\nJULIET:\nI do confess it, and repent it, father.\n\nDUKE VINCENTIO:\n'Tis meet so, daughter: but lest you do repent,\nAs that the sin hath brought you to this shame,\nWhich sorrow is always towards ourselves, not heaven,\nShowing we would not spare heaven as we love it,\nBut as we stand in fear,--\n\nJULIET:\nI do repent me, as it is an evil,\nAnd take the shame with joy.\n\nDUKE VINCENTIO:\nThere rest.\nYour partner, as I hear, must die to-morrow,\nAnd I am going with instruction to him.\nGrace go with you, Benedicite!\n\nJULIET:\nMust die to-morrow! O injurious love,\nThat respites me a life, whose very comfort\nIs still a dying horror!\n\nProvost:\n'Tis pity of him.\n\nANGELO:\nWhen I would pray and think, I think and pray\nTo several subjects. Heaven hath my empty words;\nWhilst my invention, hearing not my tongue,\nAnchors on Isabel: Heaven in my mouth,\nAs if I did but only chew his name;\nAnd in my heart the strong and swelling evil\nOf my conception. The state, whereon I studied\nIs like a good thing, being often read,\nGrown fear'd and tedious; yea, my gravity,\nWherein--let no man hear me--I take pride,\nCould I with boot change for an idle plume,\nWhich the air beats for vain. O place, O form,\nHow often dost thou with thy case, thy habit,\nWrench awe from fools and tie the wiser souls\nTo thy false seeming! Blood, thou art blood:\nLet's write good angel on the devil's horn:\n'Tis not the devil's crest.\nHow now! who's there?\n\nServant:\nOne Isabel, a sister, desires access to you.\n\nANGELO:\nTeach her the way.\nO heavens!\nWhy does my blood thus muster to my heart,\nMaking both it unable for itself,\nAnd dispossessing all my other parts\nOf necessary fitness?\nSo play the foolish throngs with one that swoons;\nCome all to help him, and so stop the air\nBy which he should revive: and even so\nThe general, subject to a well-wish'd king,\nQuit their own part, and in obsequious fondness\nCrowd to his presence, where their untaught love\nMust needs appear offence.\nHow now, fair maid?\n\nISABELLA:\nI am come to know your pleasure.\n\nANGELO:\nThat you might know it, would much better please me\nThan to demand what 'tis. Your brother cannot live.\n\nISABELLA:\nEven so. Heaven keep your honour!\n\nANGELO:\nYet may he live awhile; and, it may be,\nAs long as you or I yet he must die.\n\nISABELLA:\nUnder your sentence?\n\nANGELO:\nYea.\n\nISABELLA:\nWhen, I beseech you? that in his reprieve,\nLonger or shorter, he may be so fitted\nThat his soul sicken not.\n\nANGELO:\nHa! fie, these filthy vices! It were as good\nTo pardon him that hath from nature stolen\nA man already made, as to remit\nTheir saucy sweetness that do coin heaven's image\nIn stamps that are forbid: 'tis all as easy\nFalsely to take away a life true made\nAs to put metal in restrained means\nTo make a false one.\n\nISABELLA:\n'Tis set down so in heaven, but not in earth.\n\nANGELO:\nSay you so? then I shall pose you quickly.\nWhich had you rather, that the most just law\nNow took your brother's life; or, to redeem him,\nGive up your body to such sweet uncleanness\nAs she that he hath stain'd?\n\nISABELLA:\nSir, believe this,\nI had rather give my body than my soul.\n\nANGELO:\nI talk not of your soul: our compell'd sins\nStand more for number than for accompt.\n\nISABELLA:\nHow say you?\n\nANGELO:\nNay, I'll not warrant that; for I can speak\nAgainst the thing I say. Answer to this:\nI, now the voice of the recorded law,\nPronounce a sentence on your brother's life:\nMight there not be a charity in sin\nTo save this brother's life?\n\nISABELLA:\nPlease you to do't,\nI'll take it as a peril to my soul,\nIt is no sin at all, but charity.\n\nANGELO:\nPleased you to do't at peril of your soul,\nWere equal poise of sin and charity.\n\nISABELLA:\nThat I do beg his life, if it be sin,\nHeaven let me bear it! you granting of my suit,\nIf that be sin, I'll make it my morn prayer\nTo have it added to the faults of mine,\nAnd nothing of your answer.\n\nANGELO:\nNay, but hear me.\nYour sense pursues not mine: either you are ignorant,\nOr seem so craftily; and that's not good.\n\nISABELLA:\nLet me be ignorant, and in nothing good,\nBut graciously to know I am no better.\n\nANGELO:\nThus wisdom wishes to appear most bright\nWhen it doth tax itself; as these black masks\nProclaim an enshield beauty ten times louder\nThan beauty could, display'd. But mark me;\nTo be received plain, I'll speak more gross:\nYour brother is to die.\n\nISABELLA:\nSo.\n\nANGELO:\nAnd his offence is so, as it appears,\nAccountant to the law upon that pain.\n\nISABELLA:\nTrue.\n\nANGELO:\nAdmit no other way to save his life,--\nAs I subscribe not that, nor any other,\nBut in the loss of question,--that you, his sister,\nFinding yourself desired of such a person,\nWhose credit with the judge, or own great place,\nCould fetch your brother from the manacles\nOf the all-building law; and that there were\nNo earthly mean to save him, but that either\nYou must lay down the treasures of your body\nTo this supposed, or else to let him suffer;\nWhat would you do?\n\nISABELLA:\nAs much for my poor brother as myself:\nThat is, were I under the terms of death,\nThe impression of keen whips I'ld wear as rubies,\nAnd strip myself to death, as to a bed\nThat longing have been sick for, ere I'ld yield\nMy body up to shame.\n\nANGELO:\nThen must your brother die.\n\nISABELLA:\nAnd 'twere the cheaper way:\nBetter it were a brother died at once,\nThan that a sister, by redeeming him,\nShould die for ever.\n\nANGELO:\nWere not you then as cruel as the sentence\nThat you have slander'd so?\n\nISABELLA:\nIgnomy in ransom and free pardon\nAre of two houses: lawful mercy\nIs nothing kin to foul redemption.\n\nANGELO:\nYou seem'd of late to make the law a tyrant;\nAnd rather proved the sliding of your brother\nA merriment than a vice.\n\nISABELLA:\nO, pardon me, my lord; it oft falls out,\nTo have what we would have, we speak not what we mean:\nI something do excuse the thing I hate,\nFor his advantage that I dearly love.\n\nANGELO:\nWe are all frail.\n\nISABELLA:\nElse let my brother die,\nIf not a feodary, but only he\nOwe and succeed thy weakness.\n\nANGELO:\nNay, women are frail too.\n\nISABELLA:\nAy, as the glasses where they view themselves;\nWhich are as easy broke as they make forms.\nWomen! Help Heaven! men their creation mar\nIn profiting by them. Nay, call us ten times frail;\nFor we are soft as our complexions are,\nAnd credulous to false prints.\n\nANGELO:\nI think it well:\nAnd from this testimony of your own sex,--\nSince I suppose we are made to be no stronger\nThan faults may shake our frames,--let me be bold;\nI do arrest your words. Be that you are,\nThat is, a woman; if you be more, you're none;\nIf you be one, as you are well express'd\nBy all external warrants, show it now,\nBy putting on the destined livery.\n\nISABELLA:\nI have no tongue but one: gentle my lord,\nLet me entreat you speak the former language.\n\nANGELO:\nPlainly conceive, I love you.\n\nISABELLA:\nMy brother did love Juliet,\nAnd you tell me that he shall die for it.\n\nANGELO:\nHe shall not, Isabel, if you give me love.\n\nISABELLA:\nI know your virtue hath a licence in't,\nWhich seems a little fouler than it is,\nTo pluck on others.\n\nANGELO:\nBelieve me, on mine honour,\nMy words express my purpose.\n\nISABELLA:\nHa! little honour to be much believed,\nAnd most pernicious purpose! Seeming, seeming!\nI will proclaim thee, Angelo; look for't:\nSign me a present pardon for my brother,\nOr with an outstretch'd throat I'll tell the world aloud\nWhat man thou art.\n\nANGELO:\nWho will believe thee, Isabel?\nMy unsoil'd name, the austereness of my life,\nMy vouch against you, and my place i' the state,\nWill so your accusation overweigh,\nThat you shall stifle in your own report\nAnd smell of calumny. I have begun,\nAnd now I give my sensual race the rein:\nFit thy consent to my sharp appetite;\nLay by all nicety and prolixious blushes,\nThat banish what they sue for; redeem thy brother\nBy yielding up thy body to my will;\nOr else he must not only die the death,\nBut thy unkindness shall his death draw out\nTo lingering sufferance. Answer me to-morrow,\nOr, by the affection that now guides me most,\nI'll prove a tyrant to him. As for you,\nSay what you can, my false o'erweighs your true.\n\nISABELLA:\nTo whom should I complain? Did I tell this,\nWho would believe me? O perilous mouths,\nThat bear in them one and the self-same tongue,\nEither of condemnation or approof;\nBidding the law make court'sy to their will:\nHooking both right and wrong to the appetite,\nTo follow as it draws! I'll to my brother:\nThough he hath fallen by prompture of the blood,\nYet hath he in him such a mind of honour.\nThat, had he twenty heads to tender down\nOn twenty bloody blocks, he'ld yield them up,\nBefore his sister should her body stoop\nTo such abhorr'd pollution.\nThen, Isabel, live chaste, and, brother, die:\nMore than our brother is our chastity.\nI'll tell him yet of Angelo's request,\nAnd fit his mind to death, for his soul's rest.\n\nDUKE VINCENTIO:\nSo then you hope of pardon from Lord Angelo?\n\nCLAUDIO:\nThe miserable have no other medicine\nBut only hope:\nI've hope to live, and am prepared to die.\n\nDUKE VINCENTIO:\nBe absolute for death; either death or life\nShall thereby be the sweeter. Reason thus with life:\nIf I do lose thee, I do lose a thing\nThat none but fools would keep: a breath thou art,\nServile to all the skyey influences,\nThat dost this habitation, where thou keep'st,\nHourly afflict: merely, thou art death's fool;\nFor him thou labour'st by thy flight to shun\nAnd yet runn'st toward him still. Thou art not noble;\nFor all the accommodations that thou bear'st\nAre nursed by baseness. Thou'rt by no means valiant;\nFor thou dost fear the soft and tender fork\nOf a poor worm. Thy best of rest is sleep,\nAnd that thou oft provokest; yet grossly fear'st\nThy death, which is no more. Thou art not thyself;\nFor thou exist'st on many a thousand grains\nThat issue out of dust. Happy thou art not;\nFor what thou hast not, still thou strivest to get,\nAnd what thou hast, forget'st. Thou art not certain;\nFor thy complexion shifts to strange effects,\nAfter the moon. If thou art rich, thou'rt poor;\nFor, like an ass whose back with ingots bows,\nThou bear's thy heavy riches but a journey,\nAnd death unloads thee. Friend hast thou none;\nFor thine own bowels, which do call thee sire,\nThe mere effusion of thy proper loins,\nDo curse the gout, serpigo, and the rheum,\nFor ending thee no sooner. Thou hast nor youth nor age,\nBut, as it were, an after-dinner's sleep,\nDreaming on both; for all thy blessed youth\nBecomes as aged, and doth beg the alms\nOf palsied eld; and when thou art old and rich,\nThou hast neither heat, affection, limb, nor beauty,\nTo make thy riches pleasant. What's yet in this\nThat bears the name of life? Yet in this life\nLie hid moe thousand deaths: yet death we fear,\nThat makes these odds all even.\n\nCLAUDIO:\nI humbly thank you.\nTo sue to live, I find I seek to die;\nAnd, seeking death, find life: let it come on.\n\nISABELLA:\n\nProvost:\nWho's there? come in: the wish deserves a welcome.\n\nDUKE VINCENTIO:\nDear sir, ere long I'll visit you again.\n\nCLAUDIO:\nMost holy sir, I thank you.\n\nISABELLA:\nMy business is a word or two with Claudio.\n\nProvost:\nAnd very welcome. Look, signior, here's your sister.\n\nDUKE VINCENTIO:\nProvost, a word with you.\n\nProvost:\nAs many as you please.\n\nDUKE VINCENTIO:\nBring me to hear them speak, where I may be concealed.\n\nCLAUDIO:\nNow, sister, what's the comfort?\n\nISABELLA:\nWhy,\nAs all comforts are; most good, most good indeed.\nLord Angelo, having affairs to heaven,\nIntends you for his swift ambassador,\nWhere you shall be an everlasting leiger:\nTherefore your best appointment make with speed;\nTo-morrow you set on.\n\nCLAUDIO:\nIs there no remedy?\n\nISABELLA:\nNone, but such remedy as, to save a head,\nTo cleave a heart in twain.\n\nCLAUDIO:\nBut is there any?\n\nISABELLA:\nYes, brother, you may live:\nThere is a devilish mercy in the judge,\nIf you'll implore it, that will free your life,\nBut fetter you till death.\n\nCLAUDIO:\nPerpetual durance?\n\nISABELLA:\nAy, just; perpetual durance, a restraint,\nThough all the world's vastidity you had,\nTo a determined scope.\n\nCLAUDIO:\nBut in what nature?\n\nISABELLA:\nIn such a one as, you consenting to't,\nWould bark your honour from that trunk you bear,\nAnd leave you naked.\n\nCLAUDIO:\nLet me know the point.\n\nISABELLA:\nO, I do fear thee, Claudio; and I quake,\nLest thou a feverous life shouldst entertain,\nAnd six or seven winters more respect\nThan a perpetual honour. Darest thou die?\nThe sense of death is most in apprehension;\nAnd the poor beetle, that we tread upon,\nIn corporal sufferance finds a pang as great\nAs when a giant dies.\n\nCLAUDIO:\nWhy give you me this shame?\nThink you I can a resolution fetch\nFrom flowery tenderness? If I must die,\nI will encounter darkness as a bride,\nAnd hug it in mine arms.\n\nISABELLA:\nThere spake my brother; there my father's grave\nDid utter forth a voice. Yes, thou must die:\nThou art too noble to conserve a life\nIn base appliances. This outward-sainted deputy,\nWhose settled visage and deliberate word\nNips youth i' the head and follies doth emmew\nAs falcon doth the fowl, is yet a devil\nHis filth within being cast, he would appear\nA pond as deep as hell.\n\nCLAUDIO:\nThe prenzie Angelo!\n\nISABELLA:\nO, 'tis the cunning livery of hell,\nThe damned'st body to invest and cover\nIn prenzie guards! Dost thou think, Claudio?\nIf I would yield him my virginity,\nThou mightst be freed.\n\nCLAUDIO:\nO heavens! it cannot be.\n\nISABELLA:\nYes, he would give't thee, from this rank offence,\nSo to offend him still. This night's the time\nThat I should do what I abhor to name,\nOr else thou diest to-morrow.\n\nCLAUDIO:\nThou shalt not do't.\n\nISABELLA:\nO, were it but my life,\nI'ld throw it down for your deliverance\nAs frankly as a pin.\n\nCLAUDIO:\nThanks, dear Isabel.\n\nISABELLA:\nBe ready, Claudio, for your death tomorrow.\n\nCLAUDIO:\nYes. Has he affections in him,\nThat thus can make him bite the law by the nose,\nWhen he would force it? Sure, it is no sin,\nOr of the deadly seven, it is the least.\n\nISABELLA:\nWhich is the least?\n\nCLAUDIO:\nIf it were damnable, he being so wise,\nWhy would he for the momentary trick\nBe perdurably fined? O Isabel!\n\nISABELLA:\nWhat says my brother?\n\nCLAUDIO:\nDeath is a fearful thing.\n\nISABELLA:\nAnd shamed life a hateful.\n\nCLAUDIO:\nAy, but to die, and go we know not where;\nTo lie in cold obstruction and to rot;\nThis sensible warm motion to become\nA kneaded clod; and the delighted spirit\nTo bathe in fiery floods, or to reside\nIn thrilling region of thick-ribbed ice;\nTo be imprison'd in the viewless winds,\nAnd blown with restless violence round about\nThe pendent world; or to be worse than worst\nOf those that lawless and incertain thought\nImagine howling: 'tis too horrible!\nThe weariest and most loathed worldly life\nThat age, ache, penury and imprisonment\nCan lay on nature is a paradise\nTo what we fear of death.\n\nISABELLA:\nAlas, alas!\n\nCLAUDIO:\nSweet sister, let me live:\nWhat sin you do to save a brother's life,\nNature dispenses with the deed so far\nThat it becomes a virtue.\n\nISABELLA:\nO you beast!\nO faithless coward! O dishonest wretch!\nWilt thou be made a man out of my vice?\nIs't not a kind of incest, to take life\nFrom thine own sister's shame? What should I think?\nHeaven shield my mother play'd my father fair!\nFor such a warped slip of wilderness\nNe'er issued from his blood. Take my defiance!\nDie, perish! Might but my bending down\nReprieve thee from thy fate, it should proceed:\nI'll pray a thousand prayers for thy death,\nNo word to save thee.\n\nCLAUDIO:\nNay, hear me, Isabel.\n\nISABELLA:\nO, fie, fie, fie!\nThy sin's not accidental, but a trade.\nMercy to thee would prove itself a bawd:\n'Tis best thou diest quickly.\n\nCLAUDIO:\nO hear me, Isabella!\n\nDUKE VINCENTIO:\nVouchsafe a word, young sister, but one word.\n\nISABELLA:\nWhat is your will?\n\nDUKE VINCENTIO:\nMight you dispense with your leisure, I would by and\nby have some speech with you: the satisfaction I\nwould require is likewise your own benefit.\n\nISABELLA:\nI have no superfluous leisure; my stay must be\nstolen out of other affairs; but I will attend you awhile.\n\nDUKE VINCENTIO:\nSon, I have overheard what hath passed between you\nand your sister. Angelo had never the purpose to\ncorrupt her; only he hath made an essay of her\nvirtue to practise his judgment with the disposition\nof natures: she, having the truth of honour in her,\nhath made him that gracious denial which he is most\nglad to receive. I am confessor to Angelo, and I\nknow this to be true; therefore prepare yourself to\ndeath: do not satisfy your resolution with hopes\nthat are fallible: tomorrow you must die; go to\nyour knees and make ready.\n\nCLAUDIO:\nLet me ask my sister pardon. I am so out of love\nwith life that I will sue to be rid of it.\n\nDUKE VINCENTIO:\nHold you there: farewell.\nProvost, a word with you!\n\nProvost:\nWhat's your will, father\n\nDUKE VINCENTIO:\nThat now you are come, you will be gone. Leave me\nawhile with the maid: my mind promises with my\nhabit no loss shall touch her by my company.\n\nProvost:\nIn good time.\n\nDUKE VINCENTIO:\nThe hand that hath made you fair hath made you good:\nthe goodness that is cheap in beauty makes beauty\nbrief in goodness; but grace, being the soul of\nyour complexion, shall keep the body of it ever\nfair. The assault that Angelo hath made to you,\nfortune hath conveyed to my understanding; and, but\nthat frailty hath examples for his falling, I should\nwonder at Angelo. How will you do to content this\nsubstitute, and to save your brother?\n\nISABELLA:\nI am now going to resolve him: I had rather my\nbrother die by the law than my son should be\nunlawfully born. But, O, how much is the good duke\ndeceived in Angelo! If ever he return and I can\nspeak to him, I will open my lips in vain, or\ndiscover his government.\n\nDUKE VINCENTIO:\nThat shall not be much amiss: Yet, as the matter\nnow stands, he will avoid your accusation; he made\ntrial of you only. Therefore fasten your ear on my\nadvisings: to the love I have in doing good a\nremedy presents itself. I do make myself believe\nthat you may most uprighteously do a poor wronged\nlady a merited benefit; redeem your brother from\nthe angry law; do no stain to your own gracious\nperson; and much please the absent duke, if\nperadventure he shall ever return to have hearing of\nthis business.\n\nISABELLA:\nLet me hear you speak farther. I have spirit to do\nanything that appears not foul in the truth of my spirit.\n\nDUKE VINCENTIO:\nVirtue is bold, and goodness never fearful. Have\nyou not heard speak of Mariana, the sister of\nFrederick the great soldier who miscarried at sea?\n\nISABELLA:\nI have heard of the lady, and good words went with her name.\n\nDUKE VINCENTIO:\nShe should this Angelo have married; was affianced\nto her by oath, and the nuptial appointed: between\nwhich time of the contract and limit of the\nsolemnity, her brother Frederick was wrecked at sea,\nhaving in that perished vessel the dowry of his\nsister. But mark how heavily this befell to the\npoor gentlewoman: there she lost a noble and\nrenowned brother, in his love toward her ever most\nkind and natural; with him, the portion and sinew of\nher fortune, her marriage-dowry; with both, her\ncombinate husband, this well-seeming Angelo.\n\nISABELLA:\nCan this be so? did Angelo so leave her?\n\nDUKE VINCENTIO:\nLeft her in her tears, and dried not one of them\nwith his comfort; swallowed his vows whole,\npretending in her discoveries of dishonour: in few,\nbestowed her on her own lamentation, which she yet\nwears for his sake; and he, a marble to her tears,\nis washed with them, but relents not.\n\nISABELLA:\nWhat a merit were it in death to take this poor maid\nfrom the world! What corruption in this life, that\nit will let this man live! But how out of this can she avail?\n\nDUKE VINCENTIO:\nIt is a rupture that you may easily heal: and the\ncure of it not only saves your brother, but keeps\nyou from dishonour in doing it.\n\nISABELLA:\nShow me how, good father.\n\nDUKE VINCENTIO:\nThis forenamed maid hath yet in her the continuance\nof her first affection: his unjust unkindness, that\nin all reason should have quenched her love, hath,\nlike an impediment in the current, made it more\nviolent and unruly. Go you to Angelo; answer his\nrequiring with a plausible obedience; agree with\nhis demands to the point; only refer yourself to\nthis advantage, first, that your stay with him may\nnot be long; that the time may have all shadow and\nsilence in it; and the place answer to convenience.\nThis being granted in course,--and now follows\nall,--we shall advise this wronged maid to stead up\nyour appointment, go in your place; if the encounter\nacknowledge itself hereafter, it may compel him to\nher recompense: and here, by this, is your brother\nsaved, your honour untainted, the poor Mariana\nadvantaged, and the corrupt deputy scaled. The maid\nwill I frame and make fit for his attempt. If you\nthink well to carry this as you may, the doubleness\nof the benefit defends the deceit from reproof.\nWhat think you of it?\n\nISABELLA:\nThe image of it gives me content already; and I\ntrust it will grow to a most prosperous perfection.\n\nDUKE VINCENTIO:\nIt lies much in your holding up. Haste you speedily\nto Angelo: if for this night he entreat you to his\nbed, give him promise of satisfaction. I will\npresently to Saint Luke's: there, at the moated\ngrange, resides this dejected Mariana. At that\nplace call upon me; and dispatch with Angelo, that\nit may be quickly.\n\nISABELLA:\nI thank you for this comfort. Fare you well, good father.\n\nELBOW:\nNay, if there be no remedy for it, but that you will\nneeds buy and sell men and women like beasts, we\nshall have all the world drink brown and white bastard.\n\nDUKE VINCENTIO:\nO heavens! what stuff is here\n\nPOMPEY:\n'Twas never merry world since, of two usuries, the\nmerriest was put down, and the worser allowed by\norder of law a furred gown to keep him warm; and\nfurred with fox and lamb-skins too, to signify, that\ncraft, being richer than innocency, stands for the facing.\n\nELBOW:\nCome your way, sir. 'Bless you, good father friar.\n\nDUKE VINCENTIO:\nAnd you, good brother father. What offence hath\nthis man made you, sir?\n\nELBOW:\nMarry, sir, he hath offended the law: and, sir, we\ntake him to be a thief too, sir; for we have found\nupon him, sir, a strange picklock, which we have\nsent to the deputy.\n\nDUKE VINCENTIO:\nFie, sirrah! a bawd, a wicked bawd!\nThe evil that thou causest to be done,\nThat is thy means to live. Do thou but think\nWhat 'tis to cram a maw or clothe a back\nFrom such a filthy vice: say to thyself,\nFrom their abominable and beastly touches\nI drink, I eat, array myself, and live.\nCanst thou believe thy living is a life,\nSo stinkingly depending? Go mend, go mend.\n\nPOMPEY:\nIndeed, it does stink in some sort, sir; but yet,\nsir, I would prove--\n\nDUKE VINCENTIO:\nNay, if the devil have given thee proofs for sin,\nThou wilt prove his. Take him to prison, officer:\nCorrection and instruction must both work\nEre this rude beast will profit.\n\nELBOW:\nHe must before the deputy, sir; he has given him\nwarning: the deputy cannot abide a whoremaster: if\nhe be a whoremonger, and comes before him, he were\nas good go a mile on his errand.\n\nDUKE VINCENTIO:\nThat we were all, as some would seem to be,\nFrom our faults, as faults from seeming, free!\n\nELBOW:\nHis neck will come to your waist,--a cord, sir.\n\nPOMPEY:\nI spy comfort; I cry bail. Here's a gentleman and a\nfriend of mine.\n\nLUCIO:\nHow now, noble Pompey! What, at the wheels of\nCaesar? art thou led in triumph? What, is there\nnone of Pygmalion's images, newly made woman, to be\nhad now, for putting the hand in the pocket and\nextracting it clutch'd? What reply, ha? What\nsayest thou to this tune, matter and method? Is't\nnot drowned i' the last rain, ha? What sayest\nthou, Trot? Is the world as it was, man? Which is\nthe way? Is it sad, and few words? or how? The\ntrick of it?\n\nDUKE VINCENTIO:\nStill thus, and thus; still worse!\n\nLUCIO:\nHow doth my dear morsel, thy mistress? Procures she\nstill, ha?\n\nPOMPEY:\nTroth, sir, she hath eaten up all her beef, and she\nis herself in the tub.\n\nLUCIO:\nWhy, 'tis good; it is the right of it; it must be\nso: ever your fresh whore and your powdered bawd:\nan unshunned consequence; it must be so. Art going\nto prison, Pompey?\n\nPOMPEY:\nYes, faith, sir.\n\nLUCIO:\nWhy, 'tis not amiss, Pompey. Farewell: go, say I\nsent thee thither. For debt, Pompey? or how?\n\nELBOW:\nFor being a bawd, for being a bawd.\n\nLUCIO:\nWell, then, imprison him: if imprisonment be the\ndue of a bawd, why, 'tis his right: bawd is he\ndoubtless, and of antiquity too; bawd-born.\nFarewell, good Pompey. Commend me to the prison,\nPompey: you will turn good husband now, Pompey; you\nwill keep the house.\n\nPOMPEY:\nI hope, sir, your good worship will be my bail.\n\nLUCIO:\nNo, indeed, will I not, Pompey; it is not the wear.\nI will pray, Pompey, to increase your bondage: If\nyou take it not patiently, why, your mettle is the\nmore. Adieu, trusty Pompey. 'Bless you, friar.\n\nDUKE VINCENTIO:\nAnd you.\n\nLUCIO:\nDoes Bridget paint still, Pompey, ha?\n\nELBOW:\nCome your ways, sir; come.\n\nPOMPEY:\nYou will not bail me, then, sir?\n\nLUCIO:\nThen, Pompey, nor now. What news abroad, friar?\nwhat news?\n\nELBOW:\nCome your ways, sir; come.\n\nLUCIO:\nGo to kennel, Pompey; go.\nWhat news, friar, of the duke?\n\nDUKE VINCENTIO:\nI know none. Can you tell me of any?\n\nLUCIO:\nSome say he is with the Emperor of Russia; other\nsome, he is in Rome: but where is he, think you?\n\nDUKE VINCENTIO:\nI know not where; but wheresoever, I wish him well.\n\nLUCIO:\nIt was a mad fantastical trick of him to steal from\nthe state, and usurp the beggary he was never born\nto. Lord Angelo dukes it well in his absence; he\nputs transgression to 't.\n\nDUKE VINCENTIO:\nHe does well in 't.\n\nLUCIO:\nA little more lenity to lechery would do no harm in\nhim: something too crabbed that way, friar.\n\nDUKE VINCENTIO:\nIt is too general a vice, and severity must cure it.\n\nLUCIO:\nYes, in good sooth, the vice is of a great kindred;\nit is well allied: but it is impossible to extirp\nit quite, friar, till eating and drinking be put\ndown. They say this Angelo was not made by man and\nwoman after this downright way of creation: is it\ntrue, think you?\n\nDUKE VINCENTIO:\nHow should he be made, then?\n\nLUCIO:\nSome report a sea-maid spawned him; some, that he\nwas begot between two stock-fishes. But it is\ncertain that when he makes water his urine is\ncongealed ice; that I know to be true: and he is a\nmotion generative; that's infallible.\n\nDUKE VINCENTIO:\nYou are pleasant, sir, and speak apace.\n\nLUCIO:\nWhy, what a ruthless thing is this in him, for the\nrebellion of a codpiece to take away the life of a\nman! Would the duke that is absent have done this?\nEre he would have hanged a man for the getting a\nhundred bastards, he would have paid for the nursing\na thousand: he had some feeling of the sport: he\nknew the service, and that instructed him to mercy.\n\nDUKE VINCENTIO:\nI never heard the absent duke much detected for\nwomen; he was not inclined that way.\n\nLUCIO:\nO, sir, you are deceived.\n\nDUKE VINCENTIO:\n'Tis not possible.\n\nLUCIO:\nWho, not the duke? yes, your beggar of fifty; and\nhis use was to put a ducat in her clack-dish: the\nduke had crotchets in him. He would be drunk too;\nthat let me inform you.\n\nDUKE VINCENTIO:\nYou do him wrong, surely.\n\nLUCIO:\nSir, I was an inward of his. A shy fellow was the\nduke: and I believe I know the cause of his\nwithdrawing.\n\nDUKE VINCENTIO:\nWhat, I prithee, might be the cause?\n\nLUCIO:\nNo, pardon; 'tis a secret must be locked within the\nteeth and the lips: but this I can let you\nunderstand, the greater file of the subject held the\nduke to be wise.\n\nDUKE VINCENTIO:\nWise! why, no question but he was.\n\nLUCIO:\nA very superficial, ignorant, unweighing fellow.\n\nDUKE VINCENTIO:\nEither this is the envy in you, folly, or mistaking:\nthe very stream of his life and the business he hath\nhelmed must upon a warranted need give him a better\nproclamation. Let him be but testimonied in his own\nbringings-forth, and he shall appear to the\nenvious a scholar, a statesman and a soldier.\nTherefore you speak unskilfully: or if your\nknowledge be more it is much darkened in your malice.\n\nLUCIO:\nSir, I know him, and I love him.\n\nDUKE VINCENTIO:\nLove talks with better knowledge, and knowledge with\ndearer love.\n\nLUCIO:\nCome, sir, I know what I know.\n\nDUKE VINCENTIO:\nI can hardly believe that, since you know not what\nyou speak. But, if ever the duke return, as our\nprayers are he may, let me desire you to make your\nanswer before him. If it be honest you have spoke,\nyou have courage to maintain it: I am bound to call\nupon you; and, I pray you, your name?\n\nLUCIO:\nSir, my name is Lucio; well known to the duke.\n\nDUKE VINCENTIO:\nHe shall know you better, sir, if I may live to\nreport you.\n\nLUCIO:\nI fear you not.\n\nDUKE VINCENTIO:\nO, you hope the duke will return no more; or you\nimagine me too unhurtful an opposite. But indeed I\ncan do you little harm; you'll forswear this again.\n\nLUCIO:\nI'll be hanged first: thou art deceived in me,\nfriar. But no more of this. Canst thou tell if\nClaudio die to-morrow or no?\n\nDUKE VINCENTIO:\nWhy should he die, sir?\n\nLUCIO:\nWhy? For filling a bottle with a tundish. I would\nthe duke we talk of were returned again: the\nungenitured agent will unpeople the province with\ncontinency; sparrows must not build in his\nhouse-eaves, because they are lecherous. The duke\nyet would have dark deeds darkly answered; he would\nnever bring them to light: would he were returned!\nMarry, this Claudio is condemned for untrussing.\nFarewell, good friar: I prithee, pray for me. The\nduke, I say to thee again, would eat mutton on\nFridays. He's not past it yet, and I say to thee,\nhe would mouth with a beggar, though she smelt brown\nbread and garlic: say that I said so. Farewell.\n\nDUKE VINCENTIO:\nNo might nor greatness in mortality\nCan censure 'scape; back-wounding calumny\nThe whitest virtue strikes. What king so strong\nCan tie the gall up in the slanderous tongue?\nBut who comes here?\n\nESCALUS:\nGo; away with her to prison!\n\nMISTRESS OVERDONE:\nGood my lord, be good to me; your honour is accounted\na merciful man; good my lord.\n\nESCALUS:\nDouble and treble admonition, and still forfeit in\nthe same kind! This would make mercy swear and play\nthe tyrant.\n\nProvost:\nA bawd of eleven years' continuance, may it please\nyour honour.\n\nMISTRESS OVERDONE:\nMy lord, this is one Lucio's information against me.\nMistress Kate Keepdown was with child by him in the\nduke's time; he promised her marriage: his child\nis a year and a quarter old, come Philip and Jacob:\nI have kept it myself; and see how he goes about to abuse me!\n\nESCALUS:\nThat fellow is a fellow of much licence: let him be\ncalled before us. Away with her to prison! Go to;\nno more words.\nProvost, my brother Angelo will not be altered;\nClaudio must die to-morrow: let him be furnished\nwith divines, and have all charitable preparation.\nif my brother wrought by my pity, it should not be\nso with him.\n\nProvost:\nSo please you, this friar hath been with him, and\nadvised him for the entertainment of death.\n\nESCALUS:\nGood even, good father.\n\nDUKE VINCENTIO:\nBliss and goodness on you!\n\nESCALUS:\nOf whence are you?\n\nDUKE VINCENTIO:\nNot of this country, though my chance is now\nTo use it for my time: I am a brother\nOf gracious order, late come from the See\nIn special business from his holiness.\n\nESCALUS:\nWhat news abroad i' the world?\n\nDUKE VINCENTIO:\nNone, but that there is so great a fever on\ngoodness, that the dissolution of it must cure it:\nnovelty is only in request; and it is as dangerous\nto be aged in any kind of course, as it is virtuous\nto be constant in any undertaking. There is scarce\ntruth enough alive to make societies secure; but\nsecurity enough to make fellowships accurst: much\nupon this riddle runs the wisdom of the world. This\nnews is old enough, yet it is every day's news. I\npray you, sir, of what disposition was the duke?\n\nESCALUS:\nOne that, above all other strifes, contended\nespecially to know himself.\n\nDUKE VINCENTIO:\nWhat pleasure was he given to?\n\nESCALUS:\nRather rejoicing to see another merry, than merry at\nany thing which professed to make him rejoice: a\ngentleman of all temperance. But leave we him to\nhis events, with a prayer they may prove prosperous;\nand let me desire to know how you find Claudio\nprepared. I am made to understand that you have\nlent him visitation.\n\nDUKE VINCENTIO:\nHe professes to have received no sinister measure\nfrom his judge, but most willingly humbles himself\nto the determination of justice: yet had he framed\nto himself, by the instruction of his frailty, many\ndeceiving promises of life; which I by my good\nleisure have discredited to him, and now is he\nresolved to die.\n\nESCALUS:\nYou have paid the heavens your function, and the\nprisoner the very debt of your calling. I have\nlaboured for the poor gentleman to the extremest\nshore of my modesty: but my brother justice have I\nfound so severe, that he hath forced me to tell him\nhe is indeed Justice.\n\nDUKE VINCENTIO:\nIf his own life answer the straitness of his\nproceeding, it shall become him well; wherein if he\nchance to fail, he hath sentenced himself.\n\nESCALUS:\nI am going to visit the prisoner. Fare you well.\n\nDUKE VINCENTIO:\nPeace be with you!\nHe who the sword of heaven will bear\nShould be as holy as severe;\nPattern in himself to know,\nGrace to stand, and virtue go;\nMore nor less to others paying\nThan by self-offences weighing.\nShame to him whose cruel striking\nKills for faults of his own liking!\nTwice treble shame on Angelo,\nTo weed my vice and let his grow!\nO, what may man within him hide,\nThough angel on the outward side!\nHow may likeness made in crimes,\nMaking practise on the times,\nTo draw with idle spiders' strings\nMost ponderous and substantial things!\nCraft against vice I must apply:\nWith Angelo to-night shall lie\nHis old betrothed but despised;\nSo disguise shall, by the disguised,\nPay with falsehood false exacting,\nAnd perform an old contracting.\n\n\nMARIANA:\nBreak off thy song, and haste thee quick away:\nHere comes a man of comfort, whose advice\nHath often still'd my brawling discontent.\nI cry you mercy, sir; and well could wish\nYou had not found me here so musical:\nLet me excuse me, and believe me so,\nMy mirth it much displeased, but pleased my woe.\n\nDUKE VINCENTIO:\n'Tis good; though music oft hath such a charm\nTo make bad good, and good provoke to harm.\nI pray, you, tell me, hath any body inquired\nfor me here to-day? much upon this time have\nI promised here to meet.\n\nMARIANA:\nYou have not been inquired after:\nI have sat here all day.\n\nDUKE VINCENTIO:\nI do constantly believe you. The time is come even\nnow. I shall crave your forbearance a little: may\nbe I will call upon you anon, for some advantage to yourself.\n\nMARIANA:\nI am always bound to you.\n\nDUKE VINCENTIO:\nVery well met, and well come.\nWhat is the news from this good deputy?\n\nISABELLA:\nHe hath a garden circummured with brick,\nWhose western side is with a vineyard back'd;\nAnd to that vineyard is a planched gate,\nThat makes his opening with this bigger key:\nThis other doth command a little door\nWhich from the vineyard to the garden leads;\nThere have I made my promise\nUpon the heavy middle of the night\nTo call upon him.\n\nDUKE VINCENTIO:\nBut shall you on your knowledge find this way?\n\nISABELLA:\nI have ta'en a due and wary note upon't:\nWith whispering and most guilty diligence,\nIn action all of precept, he did show me\nThe way twice o'er.\n\nDUKE VINCENTIO:\nAre there no other tokens\nBetween you 'greed concerning her observance?\n\nISABELLA:\nNo, none, but only a repair i' the dark;\nAnd that I have possess'd him my most stay\nCan be but brief; for I have made him know\nI have a servant comes with me along,\nThat stays upon me, whose persuasion is\nI come about my brother.\n\nDUKE VINCENTIO:\n'Tis well borne up.\nI have not yet made known to Mariana\nA word of this. What, ho! within! come forth!\nI pray you, be acquainted with this maid;\nShe comes to do you good.\n\nISABELLA:\nI do desire the like.\n\nDUKE VINCENTIO:\nDo you persuade yourself that I respect you?\n\nMARIANA:\nGood friar, I know you do, and have found it.\n\nDUKE VINCENTIO:\nTake, then, this your companion by the hand,\nWho hath a story ready for your ear.\nI shall attend your leisure: but make haste;\nThe vaporous night approaches.\n\nMARIANA:\nWill't please you walk aside?\n\nDUKE VINCENTIO:\nO place and greatness! millions of false eyes\nAre stuck upon thee: volumes of report\nRun with these false and most contrarious quests\nUpon thy doings: thousand escapes of wit\nMake thee the father of their idle dreams\nAnd rack thee in their fancies.\nWelcome, how agreed?\n\nISABELLA:\nShe'll take the enterprise upon her, father,\nIf you advise it.\n\nDUKE VINCENTIO:\nIt is not my consent,\nBut my entreaty too.\n\nISABELLA:\nLittle have you to say\nWhen you depart from him, but, soft and low,\n'Remember now my brother.'\n\nMARIANA:\nFear me not.\n\nDUKE VINCENTIO:\nNor, gentle daughter, fear you not at all.\nHe is your husband on a pre-contract:\nTo bring you thus together, 'tis no sin,\nSith that the justice of your title to him\nDoth flourish the deceit. Come, let us go:\nOur corn's to reap, for yet our tithe's to sow.\n\nProvost:\nCome hither, sirrah. Can you cut off a man's head?\n\nPOMPEY:\nIf the man be a bachelor, sir, I can; but if he be a\nmarried man, he's his wife's head, and I can never\ncut off a woman's head.\n\nProvost:\nCome, sir, leave me your snatches, and yield me a\ndirect answer. To-morrow morning are to die Claudio\nand Barnardine. Here is in our prison a common\nexecutioner, who in his office lacks a helper: if\nyou will take it on you to assist him, it shall\nredeem you from your gyves; if not, you shall have\nyour full time of imprisonment and your deliverance\nwith an unpitied whipping, for you have been a\nnotorious bawd.\n\nPOMPEY:\nSir, I have been an unlawful bawd time out of mind;\nbut yet I will be content to be a lawful hangman. I\nwould be glad to receive some instruction from my\nfellow partner.\n\nProvost:\nWhat, ho! Abhorson! Where's Abhorson, there?\n\nABHORSON:\nDo you call, sir?\n\nProvost:\nSirrah, here's a fellow will help you to-morrow in\nyour execution. If you think it meet, compound with\nhim by the year, and let him abide here with you; if\nnot, use him for the present and dismiss him. He\ncannot plead his estimation with you; he hath been a bawd.\n\nABHORSON:\nA bawd, sir? fie upon him! he will discredit our mystery.\n\nProvost:\nGo to, sir; you weigh equally; a feather will turn\nthe scale.\n\nPOMPEY:\nPray, sir, by your good favour,--for surely, sir, a\ngood favour you have, but that you have a hanging\nlook,--do you call, sir, your occupation a mystery?\n\nABHORSON:\nAy, sir; a mystery\n\nPOMPEY:\nPainting, sir, I have heard say, is a mystery; and\nyour whores, sir, being members of my occupation,\nusing painting, do prove my occupation a mystery:\nbut what mystery there should be in hanging, if I\nshould be hanged, I cannot imagine.\n\nABHORSON:\nSir, it is a mystery.\n\nPOMPEY:\nProof?\n\nABHORSON:\nEvery true man's apparel fits your thief: if it be\ntoo little for your thief, your true man thinks it\nbig enough; if it be too big for your thief, your\nthief thinks it little enough: so every true man's\napparel fits your thief.\n\nProvost:\nAre you agreed?\n\nPOMPEY:\nSir, I will serve him; for I do find your hangman is\na more penitent trade than your bawd; he doth\noftener ask forgiveness.\n\nProvost:\nYou, sirrah, provide your block and your axe\nto-morrow four o'clock.\n\nABHORSON:\nCome on, bawd; I will instruct thee in my trade; follow.\n\nPOMPEY:\nI do desire to learn, sir: and I hope, if you have\noccasion to use me for your own turn, you shall find\nme yare; for truly, sir, for your kindness I owe you\na good turn.\n\nProvost:\nCall hither Barnardine and Claudio:\nThe one has my pity; not a jot the other,\nBeing a murderer, though he were my brother.\nLook, here's the warrant, Claudio, for thy death:\n'Tis now dead midnight, and by eight to-morrow\nThou must be made immortal. Where's Barnardine?\n\nCLAUDIO:\nAs fast lock'd up in sleep as guiltless labour\nWhen it lies starkly in the traveller's bones:\nHe will not wake.\n\nProvost:\nWho can do good on him?\nWell, go, prepare yourself.\nBut, hark, what noise?\nHeaven give your spirits comfort!\nBy and by.\nI hope it is some pardon or reprieve\nFor the most gentle Claudio.\nWelcome father.\n\nDUKE VINCENTIO:\nThe best and wholesomest spirts of the night\nEnvelope you, good Provost! Who call'd here of late?\n\nProvost:\nNone, since the curfew rung.\n\nDUKE VINCENTIO:\nNot Isabel?\n\nProvost:\nNo.\n\nDUKE VINCENTIO:\nThey will, then, ere't be long.\n\nProvost:\nWhat comfort is for Claudio?\n\nDUKE VINCENTIO:\nThere's some in hope.\n\nProvost:\nIt is a bitter deputy.\n\nDUKE VINCENTIO:\nNot so, not so; his life is parallel'd\nEven with the stroke and line of his great justice:\nHe doth with holy abstinence subdue\nThat in himself which he spurs on his power\nTo qualify in others: were he meal'd with that\nWhich he corrects, then were he tyrannous;\nBut this being so, he's just.\nNow are they come.\nThis is a gentle provost: seldom when\nThe steeled gaoler is the friend of men.\nHow now! what noise? That spirit's possessed with haste\nThat wounds the unsisting postern with these strokes.\n\nProvost:\nThere he must stay until the officer\nArise to let him in: he is call'd up.\n\nDUKE VINCENTIO:\nHave you no countermand for Claudio yet,\nBut he must die to-morrow?\n\nProvost:\nNone, sir, none.\n\nDUKE VINCENTIO:\nAs near the dawning, provost, as it is,\nYou shall hear more ere morning.\n\nProvost:\nHappily\nYou something know; yet I believe there comes\nNo countermand; no such example have we:\nBesides, upon the very siege of justice\nLord Angelo hath to the public ear\nProfess'd the contrary.\nThis is his lordship's man.\n\nDUKE VINCENTIO:\nAnd here comes Claudio's pardon.\n\nMessenger:\n\nProvost:\nI shall obey him.\n\nDUKE VINCENTIO:\n\nProvost:\nI told you. Lord Angelo, belike thinking me remiss\nin mine office, awakens me with this unwonted\nputting-on; methinks strangely, for he hath not used it before.\n\nDUKE VINCENTIO:\nPray you, let's hear.\n\nProvost:\n\nDUKE VINCENTIO:\nWhat is that Barnardine who is to be executed in the\nafternoon?\n\nProvost:\nA Bohemian born, but here nursed un and bred; one\nthat is a prisoner nine years old.\n\nDUKE VINCENTIO:\nHow came it that the absent duke had not either\ndelivered him to his liberty or executed him? I\nhave heard it was ever his manner to do so.\n\nProvost:\nHis friends still wrought reprieves for him: and,\nindeed, his fact, till now in the government of Lord\nAngelo, came not to an undoubtful proof.\n\nDUKE VINCENTIO:\nIt is now apparent?\n\nProvost:\nMost manifest, and not denied by himself.\n\nDUKE VINCENTIO:\nHath he born himself penitently in prison? how\nseems he to be touched?\n\nProvost:\nA man that apprehends death no more dreadfully but\nas a drunken sleep; careless, reckless, and fearless\nof what's past, present, or to come; insensible of\nmortality, and desperately mortal.\n\nDUKE VINCENTIO:\nHe wants advice.\n\nProvost:\nHe will hear none: he hath evermore had the liberty\nof the prison; give him leave to escape hence, he\nwould not: drunk many times a day, if not many days\nentirely drunk. We have very oft awaked him, as if\nto carry him to execution, and showed him a seeming\nwarrant for it: it hath not moved him at all.\n\nDUKE VINCENTIO:\nMore of him anon. There is written in your brow,\nprovost, honesty and constancy: if I read it not\ntruly, my ancient skill beguiles me; but, in the\nboldness of my cunning, I will lay myself in hazard.\nClaudio, whom here you have warrant to execute, is\nno greater forfeit to the law than Angelo who hath\nsentenced him. To make you understand this in a\nmanifested effect, I crave but four days' respite;\nfor the which you are to do me both a present and a\ndangerous courtesy.\n\nProvost:\nPray, sir, in what?\n\nDUKE VINCENTIO:\nIn the delaying death.\n\nProvost:\nA lack, how may I do it, having the hour limited,\nand an express command, under penalty, to deliver\nhis head in the view of Angelo? I may make my case\nas Claudio's, to cross this in the smallest.\n\nDUKE VINCENTIO:\nBy the vow of mine order I warrant you, if my\ninstructions may be your guide. Let this Barnardine\nbe this morning executed, and his head born to Angelo.\n\nProvost:\nAngelo hath seen them both, and will discover the favour.\n\nDUKE VINCENTIO:\nO, death's a great disguiser; and you may add to it.\nShave the head, and tie the beard; and say it was\nthe desire of the penitent to be so bared before his\ndeath: you know the course is common. If any thing\nfall to you upon this, more than thanks and good\nfortune, by the saint whom I profess, I will plead\nagainst it with my life.\n\nProvost:\nPardon me, good father; it is against my oath.\n\nDUKE VINCENTIO:\nWere you sworn to the duke, or to the deputy?\n\nProvost:\nTo him, and to his substitutes.\n\nDUKE VINCENTIO:\nYou will think you have made no offence, if the duke\navouch the justice of your dealing?\n\nProvost:\nBut what likelihood is in that?\n\nDUKE VINCENTIO:\nNot a resemblance, but a certainty. Yet since I see\nyou fearful, that neither my coat, integrity, nor\npersuasion can with ease attempt you, I will go\nfurther than I meant, to pluck all fears out of you.\nLook you, sir, here is the hand and seal of the\nduke: you know the character, I doubt not; and the\nsignet is not strange to you.\n\nProvost:\nI know them both.\n\nDUKE VINCENTIO:\nThe contents of this is the return of the duke: you\nshall anon over-read it at your pleasure; where you\nshall find, within these two days he will be here.\nThis is a thing that Angelo knows not; for he this\nvery day receives letters of strange tenor;\nperchance of the duke's death; perchance entering\ninto some monastery; but, by chance, nothing of what\nis writ. Look, the unfolding star calls up the\nshepherd. Put not yourself into amazement how these\nthings should be: all difficulties are but easy\nwhen they are known. Call your executioner, and off\nwith Barnardine's head: I will give him a present\nshrift and advise him for a better place. Yet you\nare amazed; but this shall absolutely resolve you.\nCome away; it is almost clear dawn.\n\nPOMPEY:\nI am as well acquainted here as I was in our house\nof profession: one would think it were Mistress\nOverdone's own house, for here be many of her old\ncustomers. First, here's young Master Rash; he's in\nfor a commodity of brown paper and old ginger,\nninescore and seventeen pounds; of which he made\nfive marks, ready money: marry, then ginger was not\nmuch in request, for the old women were all dead.\nThen is there here one Master Caper, at the suit of\nMaster Three-pile the mercer, for some four suits of\npeach-coloured satin, which now peaches him a\nbeggar. Then have we here young Dizy, and young\nMaster Deep-vow, and Master Copperspur, and Master\nStarve-lackey the rapier and dagger man, and young\nDrop-heir that killed lusty Pudding, and Master\nForthlight the tilter, and brave Master Shooty the\ngreat traveller, and wild Half-can that stabbed\nPots, and, I think, forty more; all great doers in\nour trade, and are now 'for the Lord's sake.'\n\nABHORSON:\nSirrah, bring Barnardine hither.\n\nPOMPEY:\nMaster Barnardine! you must rise and be hanged.\nMaster Barnardine!\n\nABHORSON:\nWhat, ho, Barnardine!\n\nBARNARDINE:\n\nPOMPEY:\nYour friends, sir; the hangman. You must be so\ngood, sir, to rise and be put to death.\n\nBARNARDINE:\n\nABHORSON:\nTell him he must awake, and that quickly too.\n\nPOMPEY:\nPray, Master Barnardine, awake till you are\nexecuted, and sleep afterwards.\n\nABHORSON:\nGo in to him, and fetch him out.\n\nPOMPEY:\nHe is coming, sir, he is coming; I hear his straw rustle.\n\nABHORSON:\nIs the axe upon the block, sirrah?\n\nPOMPEY:\nVery ready, sir.\n\nBARNARDINE:\nHow now, Abhorson? what's the news with you?\n\nABHORSON:\nTruly, sir, I would desire you to clap into your\nprayers; for, look you, the warrant's come.\n\nBARNARDINE:\nYou rogue, I have been drinking all night; I am not\nfitted for 't.\n\nPOMPEY:\nO, the better, sir; for he that drinks all night,\nand is hanged betimes in the morning, may sleep the\nsounder all the next day.\n\nABHORSON:\nLook you, sir; here comes your ghostly father: do\nwe jest now, think you?\n\nDUKE VINCENTIO:\nSir, induced by my charity, and hearing how hastily\nyou are to depart, I am come to advise you, comfort\nyou and pray with you.\n\nBARNARDINE:\nFriar, not I I have been drinking hard all night,\nand I will have more time to prepare me, or they\nshall beat out my brains with billets: I will not\nconsent to die this day, that's certain.\n\nDUKE VINCENTIO:\nO, sir, you must: and therefore I beseech you\nLook forward on the journey you shall go.\n\nBARNARDINE:\nI swear I will not die to-day for any man's\npersuasion.\n\nDUKE VINCENTIO:\nBut hear you.\n\nBARNARDINE:\nNot a word: if you have any thing to say to me,\ncome to my ward; for thence will not I to-day.\n\nDUKE VINCENTIO:\nUnfit to live or die: O gravel heart!\nAfter him, fellows; bring him to the block.\n\nProvost:\nNow, sir, how do you find the prisoner?\n\nDUKE VINCENTIO:\nA creature unprepared, unmeet for death;\nAnd to transport him in the mind he is\nWere damnable.\n\nProvost:\nHere in the prison, father,\nThere died this morning of a cruel fever\nOne Ragozine, a most notorious pirate,\nA man of Claudio's years; his beard and head\nJust of his colour. What if we do omit\nThis reprobate till he were well inclined;\nAnd satisfy the deputy with the visage\nOf Ragozine, more like to Claudio?\n\nDUKE VINCENTIO:\nO, 'tis an accident that heaven provides!\nDispatch it presently; the hour draws on\nPrefix'd by Angelo: see this be done,\nAnd sent according to command; whiles I\nPersuade this rude wretch willingly to die.\n\nProvost:\nThis shall be done, good father, presently.\nBut Barnardine must die this afternoon:\nAnd how shall we continue Claudio,\nTo save me from the danger that might come\nIf he were known alive?\n\nDUKE VINCENTIO:\nLet this be done.\nPut them in secret holds, both Barnardine and Claudio:\nEre twice the sun hath made his journal greeting\nTo the under generation, you shall find\nYour safety manifested.\n\nProvost:\nI am your free dependant.\n\nDUKE VINCENTIO:\nQuick, dispatch, and send the head to Angelo.\nNow will I write letters to Angelo,--\nThe provost, he shall bear them, whose contents\nShall witness to him I am near at home,\nAnd that, by great injunctions, I am bound\nTo enter publicly: him I'll desire\nTo meet me at the consecrated fount\nA league below the city; and from thence,\nBy cold gradation and well-balanced form,\nWe shall proceed with Angelo.\n\nProvost:\nHere is the head; I'll carry it myself.\n\nDUKE VINCENTIO:\nConvenient is it. Make a swift return;\nFor I would commune with you of such things\nThat want no ear but yours.\n\nProvost:\nI'll make all speed.\n\nISABELLA:\n\nDUKE VINCENTIO:\nThe tongue of Isabel. She's come to know\nIf yet her brother's pardon be come hither:\nBut I will keep her ignorant of her good,\nTo make her heavenly comforts of despair,\nWhen it is least expected.\n\nISABELLA:\nHo, by your leave!\n\nDUKE VINCENTIO:\nGood morning to you, fair and gracious daughter.\n\nISABELLA:\nThe better, given me by so holy a man.\nHath yet the deputy sent my brother's pardon?\n\nDUKE VINCENTIO:\nHe hath released him, Isabel, from the world:\nHis head is off and sent to Angelo.\n\nISABELLA:\nNay, but it is not so.\n\nDUKE VINCENTIO:\nIt is no other: show your wisdom, daughter,\nIn your close patience.\n\nISABELLA:\nO, I will to him and pluck out his eyes!\n\nDUKE VINCENTIO:\nYou shall not be admitted to his sight.\n\nISABELLA:\nUnhappy Claudio! wretched Isabel!\nInjurious world! most damned Angelo!\n\nDUKE VINCENTIO:\nThis nor hurts him nor profits you a jot;\nForbear it therefore; give your cause to heaven.\nMark what I say, which you shall find\nBy every syllable a faithful verity:\nThe duke comes home to-morrow; nay, dry your eyes;\nOne of our convent, and his confessor,\nGives me this instance: already he hath carried\nNotice to Escalus and Angelo,\nWho do prepare to meet him at the gates,\nThere to give up their power. If you can, pace your wisdom\nIn that good path that I would wish it go,\nAnd you shall have your bosom on this wretch,\nGrace of the duke, revenges to your heart,\nAnd general honour.\n\nISABELLA:\nI am directed by you.\n\nDUKE VINCENTIO:\nThis letter, then, to Friar Peter give;\n'Tis that he sent me of the duke's return:\nSay, by this token, I desire his company\nAt Mariana's house to-night. Her cause and yours\nI'll perfect him withal, and he shall bring you\nBefore the duke, and to the head of Angelo\nAccuse him home and home. For my poor self,\nI am combined by a sacred vow\nAnd shall be absent. Wend you with this letter:\nCommand these fretting waters from your eyes\nWith a light heart; trust not my holy order,\nIf I pervert your course. Who's here?\n\nLUCIO:\nGood even. Friar, where's the provost?\n\nDUKE VINCENTIO:\nNot within, sir.\n\nLUCIO:\nO pretty Isabella, I am pale at mine heart to see\nthine eyes so red: thou must be patient. I am fain\nto dine and sup with water and bran; I dare not for\nmy head fill my belly; one fruitful meal would set\nme to 't. But they say the duke will be here\nto-morrow. By my troth, Isabel, I loved thy brother:\nif the old fantastical duke of dark corners had been\nat home, he had lived.\n\nDUKE VINCENTIO:\nSir, the duke is marvellous little beholding to your\nreports; but the best is, he lives not in them.\n\nLUCIO:\nFriar, thou knowest not the duke so well as I do:\nhe's a better woodman than thou takest him for.\n\nDUKE VINCENTIO:\nWell, you'll answer this one day. Fare ye well.\n\nLUCIO:\nNay, tarry; I'll go along with thee\nI can tell thee pretty tales of the duke.\n\nDUKE VINCENTIO:\nYou have told me too many of him already, sir, if\nthey be true; if not true, none were enough.\n\nLUCIO:\nI was once before him for getting a wench with child.\n\nDUKE VINCENTIO:\nDid you such a thing?\n\nLUCIO:\nYes, marry, did I but I was fain to forswear it;\nthey would else have married me to the rotten medlar.\n\nDUKE VINCENTIO:\nSir, your company is fairer than honest. Rest you well.\n\nLUCIO:\nBy my troth, I'll go with thee to the lane's end:\nif bawdy talk offend you, we'll have very little of\nit. Nay, friar, I am a kind of burr; I shall stick.\n\nESCALUS:\nEvery letter he hath writ hath disvouched other.\n\nANGELO:\nIn most uneven and distracted manner. His actions\nshow much like to madness: pray heaven his wisdom be\nnot tainted! And why meet him at the gates, and\nredeliver our authorities there\n\nESCALUS:\nI guess not.\n\nANGELO:\nAnd why should we proclaim it in an hour before his\nentering, that if any crave redress of injustice,\nthey should exhibit their petitions in the street?\n\nESCALUS:\nHe shows his reason for that: to have a dispatch of\ncomplaints, and to deliver us from devices\nhereafter, which shall then have no power to stand\nagainst us.\n\nANGELO:\nWell, I beseech you, let it be proclaimed betimes\ni' the morn; I'll call you at your house: give\nnotice to such men of sort and suit as are to meet\nhim.\n\nESCALUS:\nI shall, sir. Fare you well.\n\nANGELO:\nGood night.\nThis deed unshapes me quite, makes me unpregnant\nAnd dull to all proceedings. A deflower'd maid!\nAnd by an eminent body that enforced\nThe law against it! But that her tender shame\nWill not proclaim against her maiden loss,\nHow might she tongue me! Yet reason dares her no;\nFor my authority bears of a credent bulk,\nThat no particular scandal once can touch\nBut it confounds the breather. He should have lived,\nSave that riotous youth, with dangerous sense,\nMight in the times to come have ta'en revenge,\nBy so receiving a dishonour'd life\nWith ransom of such shame. Would yet he had lived!\nA lack, when once our grace we have forgot,\nNothing goes right: we would, and we would not.\n\nDUKE VINCENTIO:\nThese letters at fit time deliver me\nThe provost knows our purpose and our plot.\nThe matter being afoot, keep your instruction,\nAnd hold you ever to our special drift;\nThough sometimes you do blench from this to that,\nAs cause doth minister. Go call at Flavius' house,\nAnd tell him where I stay: give the like notice\nTo Valentinus, Rowland, and to Crassus,\nAnd bid them bring the trumpets to the gate;\nBut send me Flavius first.\n\nFRIAR PETER:\nIt shall be speeded well.\n\nDUKE VINCENTIO:\nI thank thee, Varrius; thou hast made good haste:\nCome, we will walk. There's other of our friends\nWill greet us here anon, my gentle Varrius.\n\nISABELLA:\nTo speak so indirectly I am loath:\nI would say the truth; but to accuse him so,\nThat is your part: yet I am advised to do it;\nHe says, to veil full purpose.\n\nMARIANA:\nBe ruled by him.\n\nISABELLA:\nBesides, he tells me that, if peradventure\nHe speak against me on the adverse side,\nI should not think it strange; for 'tis a physic\nThat's bitter to sweet end.\n\nMARIANA:\nI would Friar Peter--\n\nISABELLA:\nO, peace! the friar is come.\n\nFRIAR PETER:\nCome, I have found you out a stand most fit,\nWhere you may have such vantage on the duke,\nHe shall not pass you. Twice have the trumpets sounded;\nThe generous and gravest citizens\nHave hent the gates, and very near upon\nThe duke is entering: therefore, hence, away!\n\nDUKE VINCENTIO:\nMy very worthy cousin, fairly met!\nOur old and faithful friend, we are glad to see you.\n\nANGELO:\nHappy return be to your royal grace!\n\nDUKE VINCENTIO:\nMany and hearty thankings to you both.\nWe have made inquiry of you; and we hear\nSuch goodness of your justice, that our soul\nCannot but yield you forth to public thanks,\nForerunning more requital.\n\nANGELO:\nYou make my bonds still greater.\n\nDUKE VINCENTIO:\nO, your desert speaks loud; and I should wrong it,\nTo lock it in the wards of covert bosom,\nWhen it deserves, with characters of brass,\nA forted residence 'gainst the tooth of time\nAnd razure of oblivion. Give me your hand,\nAnd let the subject see, to make them know\nThat outward courtesies would fain proclaim\nFavours that keep within. Come, Escalus,\nYou must walk by us on our other hand;\nAnd good supporters are you.\n\nFRIAR PETER:\nNow is your time: speak loud and kneel before him.\n\nISABELLA:\nJustice, O royal duke! Vail your regard\nUpon a wrong'd, I would fain have said, a maid!\nO worthy prince, dishonour not your eye\nBy throwing it on any other object\nTill you have heard me in my true complaint\nAnd given me justice, justice, justice, justice!\n\nDUKE VINCENTIO:\nRelate your wrongs; in what? by whom? be brief.\nHere is Lord Angelo shall give you justice:\nReveal yourself to him.\n\nISABELLA:\nO worthy duke,\nYou bid me seek redemption of the devil:\nHear me yourself; for that which I must speak\nMust either punish me, not being believed,\nOr wring redress from you. Hear me, O hear me, here!\n\nANGELO:\nMy lord, her wits, I fear me, are not firm:\nShe hath been a suitor to me for her brother\nCut off by course of justice,--\n\nISABELLA:\nBy course of justice!\n\nANGELO:\nAnd she will speak most bitterly and strange.\n\nISABELLA:\nMost strange, but yet most truly, will I speak:\nThat Angelo's forsworn; is it not strange?\nThat Angelo's a murderer; is 't not strange?\nThat Angelo is an adulterous thief,\nAn hypocrite, a virgin-violator;\nIs it not strange and strange?\n\nDUKE VINCENTIO:\nNay, it is ten times strange.\n\nISABELLA:\nIt is not truer he is Angelo\nThan this is all as true as it is strange:\nNay, it is ten times true; for truth is truth\nTo the end of reckoning.\n\nDUKE VINCENTIO:\nAway with her! Poor soul,\nShe speaks this in the infirmity of sense.\n\nISABELLA:\nO prince, I conjure thee, as thou believest\nThere is another comfort than this world,\nThat thou neglect me not, with that opinion\nThat I am touch'd with madness! Make not impossible\nThat which but seems unlike: 'tis not impossible\nBut one, the wicked'st caitiff on the ground,\nMay seem as shy, as grave, as just, as absolute\nAs Angelo; even so may Angelo,\nIn all his dressings, characts, titles, forms,\nBe an arch-villain; believe it, royal prince:\nIf he be less, he's nothing; but he's more,\nHad I more name for badness.\n\nDUKE VINCENTIO:\nBy mine honesty,\nIf she be mad,--as I believe no other,--\nHer madness hath the oddest frame of sense,\nSuch a dependency of thing on thing,\nAs e'er I heard in madness.\n\nISABELLA:\nO gracious duke,\nHarp not on that, nor do not banish reason\nFor inequality; but let your reason serve\nTo make the truth appear where it seems hid,\nAnd hide the false seems true.\n\nDUKE VINCENTIO:\nMany that are not mad\nHave, sure, more lack of reason. What would you say?\n\nISABELLA:\nI am the sister of one Claudio,\nCondemn'd upon the act of fornication\nTo lose his head; condemn'd by Angelo:\nI, in probation of a sisterhood,\nWas sent to by my brother; one Lucio\nAs then the messenger,--\n\nLUCIO:\nThat's I, an't like your grace:\nI came to her from Claudio, and desired her\nTo try her gracious fortune with Lord Angelo\nFor her poor brother's pardon.\n\nISABELLA:\nThat's he indeed.\n\nDUKE VINCENTIO:\nYou were not bid to speak.\n\nLUCIO:\nNo, my good lord;\nNor wish'd to hold my peace.\n\nDUKE VINCENTIO:\nI wish you now, then;\nPray you, take note of it: and when you have\nA business for yourself, pray heaven you then\nBe perfect.\n\nLUCIO:\nI warrant your honour.\n\nDUKE VINCENTIO:\nThe warrants for yourself; take heed to't.\n\nISABELLA:\nThis gentleman told somewhat of my tale,--\n\nLUCIO:\nRight.\n\nDUKE VINCENTIO:\nIt may be right; but you are i' the wrong\nTo speak before your time. Proceed.\n\nISABELLA:\nI went\nTo this pernicious caitiff deputy,--\n\nDUKE VINCENTIO:\nThat's somewhat madly spoken.\n\nISABELLA:\nPardon it;\nThe phrase is to the matter.\n\nDUKE VINCENTIO:\nMended again. The matter; proceed.\n\nISABELLA:\nIn brief, to set the needless process by,\nHow I persuaded, how I pray'd, and kneel'd,\nHow he refell'd me, and how I replied,--\nFor this was of much length,--the vile conclusion\nI now begin with grief and shame to utter:\nHe would not, but by gift of my chaste body\nTo his concupiscible intemperate lust,\nRelease my brother; and, after much debatement,\nMy sisterly remorse confutes mine honour,\nAnd I did yield to him: but the next morn betimes,\nHis purpose surfeiting, he sends a warrant\nFor my poor brother's head.\n\nDUKE VINCENTIO:\nThis is most likely!\n\nISABELLA:\nO, that it were as like as it is true!\n\nDUKE VINCENTIO:\nBy heaven, fond wretch, thou knowist not what thou speak'st,\nOr else thou art suborn'd against his honour\nIn hateful practise. First, his integrity\nStands without blemish. Next, it imports no reason\nThat with such vehemency he should pursue\nFaults proper to himself: if he had so offended,\nHe would have weigh'd thy brother by himself\nAnd not have cut him off. Some one hath set you on:\nConfess the truth, and say by whose advice\nThou camest here to complain.\n\nISABELLA:\nAnd is this all?\nThen, O you blessed ministers above,\nKeep me in patience, and with ripen'd time\nUnfold the evil which is here wrapt up\nIn countenance! Heaven shield your grace from woe,\nAs I, thus wrong'd, hence unbelieved go!\n\nDUKE VINCENTIO:\nI know you'ld fain be gone. An officer!\nTo prison with her! Shall we thus permit\nA blasting and a scandalous breath to fall\nOn him so near us? This needs must be a practise.\nWho knew of Your intent and coming hither?\n\nISABELLA:\nOne that I would were here, Friar Lodowick.\n\nDUKE VINCENTIO:\nA ghostly father, belike. Who knows that Lodowick?\n\nLUCIO:\nMy lord, I know him; 'tis a meddling friar;\nI do not like the man: had he been lay, my lord\nFor certain words he spake against your grace\nIn your retirement, I had swinged him soundly.\n\nDUKE VINCENTIO:\nWords against me? this is a good friar, belike!\nAnd to set on this wretched woman here\nAgainst our substitute! Let this friar be found.\n\nLUCIO:\nBut yesternight, my lord, she and that friar,\nI saw them at the prison: a saucy friar,\nA very scurvy fellow.\n\nFRIAR PETER:\nBlessed be your royal grace!\nI have stood by, my lord, and I have heard\nYour royal ear abused. First, hath this woman\nMost wrongfully accused your substitute,\nWho is as free from touch or soil with her\nAs she from one ungot.\n\nDUKE VINCENTIO:\nWe did believe no less.\nKnow you that Friar Lodowick that she speaks of?\n\nFRIAR PETER:\nI know him for a man divine and holy;\nNot scurvy, nor a temporary meddler,\nAs he's reported by this gentleman;\nAnd, on my trust, a man that never yet\nDid, as he vouches, misreport your grace.\n\nLUCIO:\nMy lord, most villanously; believe it.\n\nFRIAR PETER:\nWell, he in time may come to clear himself;\nBut at this instant he is sick my lord,\nOf a strange fever. Upon his mere request,\nBeing come to knowledge that there was complaint\nIntended 'gainst Lord Angelo, came I hither,\nTo speak, as from his mouth, what he doth know\nIs true and false; and what he with his oath\nAnd all probation will make up full clear,\nWhensoever he's convented. First, for this woman.\nTo justify this worthy nobleman,\nSo vulgarly and personally accused,\nHer shall you hear disproved to her eyes,\nTill she herself confess it.\n\nDUKE VINCENTIO:\nGood friar, let's hear it.\nDo you not smile at this, Lord Angelo?\nO heaven, the vanity of wretched fools!\nGive us some seats. Come, cousin Angelo;\nIn this I'll be impartial; be you judge\nOf your own cause. Is this the witness, friar?\nFirst, let her show her face, and after speak.\n\nMARIANA:\nPardon, my lord; I will not show my face\nUntil my husband bid me.\n\nDUKE VINCENTIO:\nWhat, are you married?\n\nMARIANA:\nNo, my lord.\n\nDUKE VINCENTIO:\nAre you a maid?\n\nMARIANA:\nNo, my lord.\n\nDUKE VINCENTIO:\nA widow, then?\n\nMARIANA:\nNeither, my lord.\n\nDUKE VINCENTIO:\nWhy, you are nothing then: neither maid, widow, nor wife?\n\nLUCIO:\nMy lord, she may be a punk; for many of them are\nneither maid, widow, nor wife.\n\nDUKE VINCENTIO:\nSilence that fellow: I would he had some cause\nTo prattle for himself.\n\nLUCIO:\nWell, my lord.\n\nMARIANA:\nMy lord; I do confess I ne'er was married;\nAnd I confess besides I am no maid:\nI have known my husband; yet my husband\nKnows not that ever he knew me.\n\nLUCIO:\nHe was drunk then, my lord: it can be no better.\n\nDUKE VINCENTIO:\nFor the benefit of silence, would thou wert so too!\n\nLUCIO:\nWell, my lord.\n\nDUKE VINCENTIO:\nThis is no witness for Lord Angelo.\n\nMARIANA:\nNow I come to't my lord\nShe that accuses him of fornication,\nIn self-same manner doth accuse my husband,\nAnd charges him my lord, with such a time\nWhen I'll depose I had him in mine arms\nWith all the effect of love.\n\nANGELO:\nCharges she more than me?\n\nMARIANA:\nNot that I know.\n\nDUKE VINCENTIO:\nNo? you say your husband.\n\nMARIANA:\nWhy, just, my lord, and that is Angelo,\nWho thinks he knows that he ne'er knew my body,\nBut knows he thinks that he knows Isabel's.\n\nANGELO:\nThis is a strange abuse. Let's see thy face.\n\nMARIANA:\nMy husband bids me; now I will unmask.\nThis is that face, thou cruel Angelo,\nWhich once thou sworest was worth the looking on;\nThis is the hand which, with a vow'd contract,\nWas fast belock'd in thine; this is the body\nThat took away the match from Isabel,\nAnd did supply thee at thy garden-house\nIn her imagined person.\n\nDUKE VINCENTIO:\nKnow you this woman?\n\nLUCIO:\nCarnally, she says.\n\nDUKE VINCENTIO:\nSirrah, no more!\n\nLUCIO:\nEnough, my lord.\n\nANGELO:\nMy lord, I must confess I know this woman:\nAnd five years since there was some speech of marriage\nBetwixt myself and her; which was broke off,\nPartly for that her promised proportions\nCame short of composition, but in chief\nFor that her reputation was disvalued\nIn levity: since which time of five years\nI never spake with her, saw her, nor heard from her,\nUpon my faith and honour.\n\nMARIANA:\nNoble prince,\nAs there comes light from heaven and words from breath,\nAs there is sense in truth and truth in virtue,\nI am affianced this man's wife as strongly\nAs words could make up vows: and, my good lord,\nBut Tuesday night last gone in's garden-house\nHe knew me as a wife. As this is true,\nLet me in safety raise me from my knees\nOr else for ever be confixed here,\nA marble monument!\n\nANGELO:\nI did but smile till now:\nNow, good my lord, give me the scope of justice\nMy patience here is touch'd. I do perceive\nThese poor informal women are no more\nBut instruments of some more mightier member\nThat sets them on: let me have way, my lord,\nTo find this practise out.\n\nDUKE VINCENTIO:\nAy, with my heart\nAnd punish them to your height of pleasure.\nThou foolish friar, and thou pernicious woman,\nCompact with her that's gone, think'st thou thy oaths,\nThough they would swear down each particular saint,\nWere testimonies against his worth and credit\nThat's seal'd in approbation? You, Lord Escalus,\nSit with my cousin; lend him your kind pains\nTo find out this abuse, whence 'tis derived.\nThere is another friar that set them on;\nLet him be sent for.\n\nFRIAR PETER:\nWould he were here, my lord! for he indeed\nHath set the women on to this complaint:\nYour provost knows the place where he abides\nAnd he may fetch him.\n\nDUKE VINCENTIO:\nGo do it instantly.\nAnd you, my noble and well-warranted cousin,\nWhom it concerns to hear this matter forth,\nDo with your injuries as seems you best,\nIn any chastisement: I for a while will leave you;\nBut stir not you till you have well determined\nUpon these slanderers.\n\nESCALUS:\nMy lord, we'll do it throughly.\nSignior Lucio, did not you say you knew that\nFriar Lodowick to be a dishonest person?\n\nLUCIO:\n'Cucullus non facit monachum:' honest in nothing\nbut in his clothes; and one that hath spoke most\nvillanous speeches of the duke.\n\nESCALUS:\nWe shall entreat you to abide here till he come and\nenforce them against him: we shall find this friar a\nnotable fellow.\n\nLUCIO:\nAs any in Vienna, on my word.\n\nESCALUS:\nCall that same Isabel here once again; I would speak with her.\nPray you, my lord, give me leave to question; you\nshall see how I'll handle her.\n\nLUCIO:\nNot better than he, by her own report.\n\nESCALUS:\nSay you?\n\nLUCIO:\nMarry, sir, I think, if you handled her privately,\nshe would sooner confess: perchance, publicly,\nshe'll be ashamed.\n\nESCALUS:\nI will go darkly to work with her.\n\nLUCIO:\nThat's the way; for women are light at midnight.\n\nESCALUS:\nCome on, mistress: here's a gentlewoman denies all\nthat you have said.\n\nLUCIO:\nMy lord, here comes the rascal I spoke of; here with\nthe provost.\n\nESCALUS:\nIn very good time: speak not you to him till we\ncall upon you.\n\nLUCIO:\nMum.\n\nESCALUS:\nCome, sir: did you set these women on to slander\nLord Angelo? they have confessed you did.\n\nDUKE VINCENTIO:\n'Tis false.\n\nESCALUS:\nHow! know you where you are?\n\nDUKE VINCENTIO:\nRespect to your great place! and let the devil\nBe sometime honour'd for his burning throne!\nWhere is the duke? 'tis he should hear me speak.\n\nESCALUS:\nThe duke's in us; and we will hear you speak:\nLook you speak justly.\n\nDUKE VINCENTIO:\nBoldly, at least. But, O, poor souls,\nCome you to seek the lamb here of the fox?\nGood night to your redress! Is the duke gone?\nThen is your cause gone too. The duke's unjust,\nThus to retort your manifest appeal,\nAnd put your trial in the villain's mouth\nWhich here you come to accuse.\n\nLUCIO:\nThis is the rascal; this is he I spoke of.\n\nESCALUS:\nWhy, thou unreverend and unhallow'd friar,\nIs't not enough thou hast suborn'd these women\nTo accuse this worthy man, but, in foul mouth\nAnd in the witness of his proper ear,\nTo call him villain? and then to glance from him\nTo the duke himself, to tax him with injustice?\nTake him hence; to the rack with him! We'll touse you\nJoint by joint, but we will know his purpose.\nWhat 'unjust'!\n\nDUKE VINCENTIO:\nBe not so hot; the duke\nDare no more stretch this finger of mine than he\nDare rack his own: his subject am I not,\nNor here provincial. My business in this state\nMade me a looker on here in Vienna,\nWhere I have seen corruption boil and bubble\nTill it o'er-run the stew; laws for all faults,\nBut faults so countenanced, that the strong statutes\nStand like the forfeits in a barber's shop,\nAs much in mock as mark.\n\nESCALUS:\nSlander to the state! Away with him to prison!\n\nANGELO:\nWhat can you vouch against him, Signior Lucio?\nIs this the man that you did tell us of?\n\nLUCIO:\n'Tis he, my lord. Come hither, goodman baldpate:\ndo you know me?\n\nDUKE VINCENTIO:\nI remember you, sir, by the sound of your voice: I\nmet you at the prison, in the absence of the duke.\n\nLUCIO:\nO, did you so? And do you remember what you said of the duke?\n\nDUKE VINCENTIO:\nMost notedly, sir.\n\nLUCIO:\nDo you so, sir? And was the duke a fleshmonger, a\nfool, and a coward, as you then reported him to be?\n\nDUKE VINCENTIO:\nYou must, sir, change persons with me, ere you make\nthat my report: you, indeed, spoke so of him; and\nmuch more, much worse.\n\nLUCIO:\nO thou damnable fellow! Did not I pluck thee by the\nnose for thy speeches?\n\nDUKE VINCENTIO:\nI protest I love the duke as I love myself.\n\nANGELO:\nHark, how the villain would close now, after his\ntreasonable abuses!\n\nESCALUS:\nSuch a fellow is not to be talked withal. Away with\nhim to prison! Where is the provost? Away with him\nto prison! lay bolts enough upon him: let him\nspeak no more. Away with those giglots too, and\nwith the other confederate companion!\n\nDUKE VINCENTIO:\n\nANGELO:\nWhat, resists he? Help him, Lucio.\n\nLUCIO:\nCome, sir; come, sir; come, sir; foh, sir! Why, you\nbald-pated, lying rascal, you must be hooded, must\nyou? Show your knave's visage, with a pox to you!\nshow your sheep-biting face, and be hanged an hour!\nWill't not off?\n\nDUKE VINCENTIO:\nThou art the first knave that e'er madest a duke.\nFirst, provost, let me bail these gentle three.\nSneak not away, sir; for the friar and you\nMust have a word anon. Lay hold on him.\n\nLUCIO:\nThis may prove worse than hanging.\n\nDUKE VINCENTIO:\n\nANGELO:\nO my dread lord,\nI should be guiltier than my guiltiness,\nTo think I can be undiscernible,\nWhen I perceive your grace, like power divine,\nHath look'd upon my passes. Then, good prince,\nNo longer session hold upon my shame,\nBut let my trial be mine own confession:\nImmediate sentence then and sequent death\nIs all the grace I beg.\n\nDUKE VINCENTIO:\nCome hither, Mariana.\nSay, wast thou e'er contracted to this woman?\n\nANGELO:\nI was, my lord.\n\nDUKE VINCENTIO:\nGo take her hence, and marry her instantly.\nDo you the office, friar; which consummate,\nReturn him here again. Go with him, provost.\n\nESCALUS:\nMy lord, I am more amazed at his dishonour\nThan at the strangeness of it.\n\nDUKE VINCENTIO:\nCome hither, Isabel.\nYour friar is now your prince: as I was then\nAdvertising and holy to your business,\nNot changing heart with habit, I am still\nAttorney'd at your service.\n\nISABELLA:\nO, give me pardon,\nThat I, your vassal, have employ'd and pain'd\nYour unknown sovereignty!\n\nDUKE VINCENTIO:\nYou are pardon'd, Isabel:\nAnd now, dear maid, be you as free to us.\nYour brother's death, I know, sits at your heart;\nAnd you may marvel why I obscured myself,\nLabouring to save his life, and would not rather\nMake rash remonstrance of my hidden power\nThan let him so be lost. O most kind maid,\nIt was the swift celerity of his death,\nWhich I did think with slower foot came on,\nThat brain'd my purpose. But, peace be with him!\nThat life is better life, past fearing death,\nThan that which lives to fear: make it your comfort,\nSo happy is your brother.\n\nISABELLA:\nI do, my lord.\n\nDUKE VINCENTIO:\nFor this new-married man approaching here,\nWhose salt imagination yet hath wrong'd\nYour well defended honour, you must pardon\nFor Mariana's sake: but as he adjudged your brother,--\nBeing criminal, in double violation\nOf sacred chastity and of promise-breach\nThereon dependent, for your brother's life,--\nThe very mercy of the law cries out\nMost audible, even from his proper tongue,\n'An Angelo for Claudio, death for death!'\nHaste still pays haste, and leisure answers leisure;\nLike doth quit like, and MEASURE still FOR MEASURE.\nThen, Angelo, thy fault's thus manifested;\nWhich, though thou wouldst deny, denies thee vantage.\nWe do condemn thee to the very block\nWhere Claudio stoop'd to death, and with like haste.\nAway with him!\n\nMARIANA:\nO my most gracious lord,\nI hope you will not mock me with a husband.\n\nDUKE VINCENTIO:\nIt is your husband mock'd you with a husband.\nConsenting to the safeguard of your honour,\nI thought your marriage fit; else imputation,\nFor that he knew you, might reproach your life\nAnd choke your good to come; for his possessions,\nAlthough by confiscation they are ours,\nWe do instate and widow you withal,\nTo buy you a better husband.\n\nMARIANA:\nO my dear lord,\nI crave no other, nor no better man.\n\nDUKE VINCENTIO:\nNever crave him; we are definitive.\n\nMARIANA:\nGentle my liege,--\n\nDUKE VINCENTIO:\nYou do but lose your labour.\nAway with him to death!\nNow, sir, to you.\n\nMARIANA:\nO my good lord! Sweet Isabel, take my part;\nLend me your knees, and all my life to come\nI'll lend you all my life to do you service.\n\nDUKE VINCENTIO:\nAgainst all sense you do importune her:\nShould she kneel down in mercy of this fact,\nHer brother's ghost his paved bed would break,\nAnd take her hence in horror.\n\nMARIANA:\nIsabel,\nSweet Isabel, do yet but kneel by me;\nHold up your hands, say nothing; I'll speak all.\nThey say, best men are moulded out of faults;\nAnd, for the most, become much more the better\nFor being a little bad: so may my husband.\nO Isabel, will you not lend a knee?\n\nDUKE VINCENTIO:\nHe dies for Claudio's death.\n\nISABELLA:\nMost bounteous sir,\nLook, if it please you, on this man condemn'd,\nAs if my brother lived: I partly think\nA due sincerity govern'd his deeds,\nTill he did look on me: since it is so,\nLet him not die. My brother had but justice,\nIn that he did the thing for which he died:\nFor Angelo,\nHis act did not o'ertake his bad intent,\nAnd must be buried but as an intent\nThat perish'd by the way: thoughts are no subjects;\nIntents but merely thoughts.\n\nMARIANA:\nMerely, my lord.\n\nDUKE VINCENTIO:\nYour suit's unprofitable; stand up, I say.\nI have bethought me of another fault.\nProvost, how came it Claudio was beheaded\nAt an unusual hour?\n\nProvost:\nIt was commanded so.\n\nDUKE VINCENTIO:\nHad you a special warrant for the deed?\n\nProvost:\nNo, my good lord; it was by private message.\n\nDUKE VINCENTIO:\nFor which I do discharge you of your office:\nGive up your keys.\n\nProvost:\nPardon me, noble lord:\nI thought it was a fault, but knew it not;\nYet did repent me, after more advice;\nFor testimony whereof, one in the prison,\nThat should by private order else have died,\nI have reserved alive.\n\nDUKE VINCENTIO:\nWhat's he?\n\nProvost:\nHis name is Barnardine.\n\nDUKE VINCENTIO:\nI would thou hadst done so by Claudio.\nGo fetch him hither; let me look upon him.\n\nESCALUS:\nI am sorry, one so learned and so wise\nAs you, Lord Angelo, have still appear'd,\nShould slip so grossly, both in the heat of blood.\nAnd lack of temper'd judgment afterward.\n\nANGELO:\nI am sorry that such sorrow I procure:\nAnd so deep sticks it in my penitent heart\nThat I crave death more willingly than mercy;\n'Tis my deserving, and I do entreat it.\n\nDUKE VINCENTIO:\nWhich is that Barnardine?\n\nProvost:\nThis, my lord.\n\nDUKE VINCENTIO:\nThere was a friar told me of this man.\nSirrah, thou art said to have a stubborn soul.\nThat apprehends no further than this world,\nAnd squarest thy life according. Thou'rt condemn'd:\nBut, for those earthly faults, I quit them all;\nAnd pray thee take this mercy to provide\nFor better times to come. Friar, advise him;\nI leave him to your hand. What muffled fellow's that?\n\nProvost:\nThis is another prisoner that I saved.\nWho should have died when Claudio lost his head;\nAs like almost to Claudio as himself.\n\nDUKE VINCENTIO:\n\nLUCIO:\n'Faith, my lord. I spoke it but according to the\ntrick. If you will hang me for it, you may; but I\nhad rather it would please you I might be whipt.\n\nDUKE VINCENTIO:\nWhipt first, sir, and hanged after.\nProclaim it, provost, round about the city.\nIs any woman wrong'd by this lewd fellow,\nAs I have heard him swear himself there's one\nWhom he begot with child, let her appear,\nAnd he shall marry her: the nuptial finish'd,\nLet him be whipt and hang'd.\n\nLUCIO:\nI beseech your highness, do not marry me to a whore.\nYour highness said even now, I made you a duke:\ngood my lord, do not recompense me in making me a cuckold.\n\nDUKE VINCENTIO:\nUpon mine honour, thou shalt marry her.\nThy slanders I forgive; and therewithal\nRemit thy other forfeits. Take him to prison;\nAnd see our pleasure herein executed.\n\nLUCIO:\nMarrying a punk, my lord, is pressing to death,\nwhipping, and hanging.\n\nDUKE VINCENTIO:\nSlandering a prince deserves it.\nShe, Claudio, that you wrong'd, look you restore.\nJoy to you, Mariana! Love her, Angelo:\nI have confess'd her and I know her virtue.\nThanks, good friend Escalus, for thy much goodness:\nThere's more behind that is more gratulate.\nThanks, provost, for thy care and secrecy:\nWe shill employ thee in a worthier place.\nForgive him, Angelo, that brought you home\nThe head of Ragozine for Claudio's:\nThe offence pardons itself. Dear Isabel,\nI have a motion much imports your good;\nWhereto if you'll a willing ear incline,\nWhat's mine is yours and what is yours is mine.\nSo, bring us to our palace; where we'll show\nWhat's yet behind, that's meet you all should know.\n\nSLY:\nI'll pheeze you, in faith.\n\nHostess:\nA pair of stocks, you rogue!\n\nSLY:\nYe are a baggage: the Slys are no rogues; look in\nthe chronicles; we came in with Richard Conqueror.\nTherefore paucas pallabris; let the world slide: sessa!\n\nHostess:\nYou will not pay for the glasses you have burst?\n\nSLY:\nNo, not a denier. Go by, Jeronimy: go to thy cold\nbed, and warm thee.\n\nHostess:\nI know my remedy; I must go fetch the\nthird--borough.\n\nSLY:\nThird, or fourth, or fifth borough, I'll answer him\nby law: I'll not budge an inch, boy: let him come,\nand kindly.\n\nLord:\nHuntsman, I charge thee, tender well my hounds:\nBrach Merriman, the poor cur is emboss'd;\nAnd couple Clowder with the deep--mouth'd brach.\nSaw'st thou not, boy, how Silver made it good\nAt the hedge-corner, in the coldest fault?\nI would not lose the dog for twenty pound.\n\nFirst Huntsman:\nWhy, Belman is as good as he, my lord;\nHe cried upon it at the merest loss\nAnd twice to-day pick'd out the dullest scent:\nTrust me, I take him for the better dog.\n\nLord:\nThou art a fool: if Echo were as fleet,\nI would esteem him worth a dozen such.\nBut sup them well and look unto them all:\nTo-morrow I intend to hunt again.\n\nFirst Huntsman:\nI will, my lord.\n\nLord:\nWhat's here? one dead, or drunk? See, doth he breathe?\n\nSecond Huntsman:\nHe breathes, my lord. Were he not warm'd with ale,\nThis were a bed but cold to sleep so soundly.\n\nLord:\nO monstrous beast! how like a swine he lies!\nGrim death, how foul and loathsome is thine image!\nSirs, I will practise on this drunken man.\nWhat think you, if he were convey'd to bed,\nWrapp'd in sweet clothes, rings put upon his fingers,\nA most delicious banquet by his bed,\nAnd brave attendants near him when he wakes,\nWould not the beggar then forget himself?\n\nFirst Huntsman:\nBelieve me, lord, I think he cannot choose.\n\nSecond Huntsman:\nIt would seem strange unto him when he waked.\n\nLord:\nEven as a flattering dream or worthless fancy.\nThen take him up and manage well the jest:\nCarry him gently to my fairest chamber\nAnd hang it round with all my wanton pictures:\nBalm his foul head in warm distilled waters\nAnd burn sweet wood to make the lodging sweet:\nProcure me music ready when he wakes,\nTo make a dulcet and a heavenly sound;\nAnd if he chance to speak, be ready straight\nAnd with a low submissive reverence\nSay 'What is it your honour will command?'\nLet one attend him with a silver basin\nFull of rose-water and bestrew'd with flowers,\nAnother bear the ewer, the third a diaper,\nAnd say 'Will't please your lordship cool your hands?'\nSome one be ready with a costly suit\nAnd ask him what apparel he will wear;\nAnother tell him of his hounds and horse,\nAnd that his lady mourns at his disease:\nPersuade him that he hath been lunatic;\nAnd when he says he is, say that he dreams,\nFor he is nothing but a mighty lord.\nThis do and do it kindly, gentle sirs:\nIt will be pastime passing excellent,\nIf it be husbanded with modesty.\n\nFirst Huntsman:\nMy lord, I warrant you we will play our part,\nAs he shall think by our true diligence\nHe is no less than what we say he is.\n\nLord:\nTake him up gently and to bed with him;\nAnd each one to his office when he wakes.\nSirrah, go see what trumpet 'tis that sounds:\nBelike, some noble gentleman that means,\nTravelling some journey, to repose him here.\nHow now! who is it?\n\nServant:\nAn't please your honour, players\nThat offer service to your lordship.\n\nLord:\nBid them come near.\nNow, fellows, you are welcome.\n\nPlayers:\nWe thank your honour.\n\nLord:\nDo you intend to stay with me tonight?\n\nA Player:\nSo please your lordship to accept our duty.\n\nLord:\nWith all my heart. This fellow I remember,\nSince once he play'd a farmer's eldest son:\n'Twas where you woo'd the gentlewoman so well:\nI have forgot your name; but, sure, that part\nWas aptly fitted and naturally perform'd.\n\nA Player:\nI think 'twas Soto that your honour means.\n\nLord:\n'Tis very true: thou didst it excellent.\nWell, you are come to me in a happy time;\nThe rather for I have some sport in hand\nWherein your cunning can assist me much.\nThere is a lord will hear you play to-night:\nBut I am doubtful of your modesties;\nLest over-eyeing of his odd behavior,--\nFor yet his honour never heard a play--\nYou break into some merry passion\nAnd so offend him; for I tell you, sirs,\nIf you should smile he grows impatient.\n\nA Player:\nFear not, my lord: we can contain ourselves,\nWere he the veriest antic in the world.\n\nLord:\nGo, sirrah, take them to the buttery,\nAnd give them friendly welcome every one:\nLet them want nothing that my house affords.\nSirrah, go you to Barthol'mew my page,\nAnd see him dress'd in all suits like a lady:\nThat done, conduct him to the drunkard's chamber;\nAnd call him 'madam,' do him obeisance.\nTell him from me, as he will win my love,\nHe bear himself with honourable action,\nSuch as he hath observed in noble ladies\nUnto their lords, by them accomplished:\nSuch duty to the drunkard let him do\nWith soft low tongue and lowly courtesy,\nAnd say 'What is't your honour will command,\nWherein your lady and your humble wife\nMay show her duty and make known her love?'\nAnd then with kind embracements, tempting kisses,\nAnd with declining head into his bosom,\nBid him shed tears, as being overjoy'd\nTo see her noble lord restored to health,\nWho for this seven years hath esteem'd him\nNo better than a poor and loathsome beggar:\nAnd if the boy have not a woman's gift\nTo rain a shower of commanded tears,\nAn onion will do well for such a shift,\nWhich in a napkin being close convey'd\nShall in despite enforce a watery eye.\nSee this dispatch'd with all the haste thou canst:\nAnon I'll give thee more instructions.\nI know the boy will well usurp the grace,\nVoice, gait and action of a gentlewoman:\nI long to hear him call the drunkard husband,\nAnd how my men will stay themselves from laughter\nWhen they do homage to this simple peasant.\nI'll in to counsel them; haply my presence\nMay well abate the over-merry spleen\nWhich otherwise would grow into extremes.\n\nSLY:\nFor God's sake, a pot of small ale.\n\nFirst Servant:\nWill't please your lordship drink a cup of sack?\n\nSecond Servant:\nWill't please your honour taste of these conserves?\n\nThird Servant:\nWhat raiment will your honour wear to-day?\n\nSLY:\nI am Christophero Sly; call not me 'honour' nor\n'lordship:' I ne'er drank sack in my life; and if\nyou give me any conserves, give me conserves of\nbeef: ne'er ask me what raiment I'll wear; for I\nhave no more doublets than backs, no more stockings\nthan legs, nor no more shoes than feet; nay,\nsometimes more feet than shoes, or such shoes as my\ntoes look through the over-leather.\n\nLord:\nHeaven cease this idle humour in your honour!\nO, that a mighty man of such descent,\nOf such possessions and so high esteem,\nShould be infused with so foul a spirit!\n\nSLY:\nWhat, would you make me mad? Am not I Christopher\nSly, old Sly's son of Burtonheath, by birth a\npedlar, by education a cardmaker, by transmutation a\nbear-herd, and now by present profession a tinker?\nAsk Marian Hacket, the fat ale-wife of Wincot, if\nshe know me not: if she say I am not fourteen pence\non the score for sheer ale, score me up for the\nlyingest knave in Christendom. What! I am not\nbestraught: here's--\n\nThird Servant:\nO, this it is that makes your lady mourn!\n\nSecond Servant:\nO, this is it that makes your servants droop!\n\nLord:\nHence comes it that your kindred shuns your house,\nAs beaten hence by your strange lunacy.\nO noble lord, bethink thee of thy birth,\nCall home thy ancient thoughts from banishment\nAnd banish hence these abject lowly dreams.\nLook how thy servants do attend on thee,\nEach in his office ready at thy beck.\nWilt thou have music? hark! Apollo plays,\nAnd twenty caged nightingales do sing:\nOr wilt thou sleep? we'll have thee to a couch\nSofter and sweeter than the lustful bed\nOn purpose trimm'd up for Semiramis.\nSay thou wilt walk; we will bestrew the ground:\nOr wilt thou ride? thy horses shall be trapp'd,\nTheir harness studded all with gold and pearl.\nDost thou love hawking? thou hast hawks will soar\nAbove the morning lark or wilt thou hunt?\nThy hounds shall make the welkin answer them\nAnd fetch shrill echoes from the hollow earth.\n\nFirst Servant:\nSay thou wilt course; thy greyhounds are as swift\nAs breathed stags, ay, fleeter than the roe.\n\nSecond Servant:\nDost thou love pictures? we will fetch thee straight\nAdonis painted by a running brook,\nAnd Cytherea all in sedges hid,\nWhich seem to move and wanton with her breath,\nEven as the waving sedges play with wind.\n\nLord:\nWe'll show thee Io as she was a maid,\nAnd how she was beguiled and surprised,\nAs lively painted as the deed was done.\n\nThird Servant:\nOr Daphne roaming through a thorny wood,\nScratching her legs that one shall swear she bleeds,\nAnd at that sight shall sad Apollo weep,\nSo workmanly the blood and tears are drawn.\n\nLord:\nThou art a lord, and nothing but a lord:\nThou hast a lady far more beautiful\nThan any woman in this waning age.\n\nFirst Servant:\nAnd till the tears that she hath shed for thee\nLike envious floods o'er-run her lovely face,\nShe was the fairest creature in the world;\nAnd yet she is inferior to none.\n\nSLY:\nAm I a lord? and have I such a lady?\nOr do I dream? or have I dream'd till now?\nI do not sleep: I see, I hear, I speak;\nI smell sweet savours and I feel soft things:\nUpon my life, I am a lord indeed\nAnd not a tinker nor Christophero Sly.\nWell, bring our lady hither to our sight;\nAnd once again, a pot o' the smallest ale.\n\nSecond Servant:\nWill't please your mightiness to wash your hands?\nO, how we joy to see your wit restored!\nO, that once more you knew but what you are!\nThese fifteen years you have been in a dream;\nOr when you waked, so waked as if you slept.\n\nSLY:\nThese fifteen years! by my fay, a goodly nap.\nBut did I never speak of all that time?\n\nFirst Servant:\nO, yes, my lord, but very idle words:\nFor though you lay here in this goodly chamber,\nYet would you say ye were beaten out of door;\nAnd rail upon the hostess of the house;\nAnd say you would present her at the leet,\nBecause she brought stone jugs and no seal'd quarts:\nSometimes you would call out for Cicely Hacket.\n\nSLY:\nAy, the woman's maid of the house.\n\nThird Servant:\nWhy, sir, you know no house nor no such maid,\nNor no such men as you have reckon'd up,\nAs Stephen Sly and did John Naps of Greece\nAnd Peter Turph and Henry Pimpernell\nAnd twenty more such names and men as these\nWhich never were nor no man ever saw.\n\nSLY:\nNow Lord be thanked for my good amends!\n\nALL:\nAmen.\n\nSLY:\nI thank thee: thou shalt not lose by it.\n\nPage:\nHow fares my noble lord?\n\nSLY:\nMarry, I fare well for here is cheer enough.\nWhere is my wife?\n\nPage:\nHere, noble lord: what is thy will with her?\n\nSLY:\nAre you my wife and will not call me husband?\nMy men should call me 'lord:' I am your goodman.\n\nPage:\nMy husband and my lord, my lord and husband;\nI am your wife in all obedience.\n\nSLY:\nI know it well. What must I call her?\n\nLord:\nMadam.\n\nSLY:\nAl'ce madam, or Joan madam?\n\nLord:\n'Madam,' and nothing else: so lords\ncall ladies.\n\nSLY:\nMadam wife, they say that I have dream'd\nAnd slept above some fifteen year or more.\n\nPage:\nAy, and the time seems thirty unto me,\nBeing all this time abandon'd from your bed.\n\nSLY:\n'Tis much. Servants, leave me and her alone.\nMadam, undress you and come now to bed.\n\nPage:\nThrice noble lord, let me entreat of you\nTo pardon me yet for a night or two,\nOr, if not so, until the sun be set:\nFor your physicians have expressly charged,\nIn peril to incur your former malady,\nThat I should yet absent me from your bed:\nI hope this reason stands for my excuse.\n\nSLY:\nAy, it stands so that I may hardly\ntarry so long. But I would be loath to fall into\nmy dreams again: I will therefore tarry in\ndespite of the flesh and the blood.\n\nMessenger:\nYour honour's players, heating your amendment,\nAre come to play a pleasant comedy;\nFor so your doctors hold it very meet,\nSeeing too much sadness hath congeal'd your blood,\nAnd melancholy is the nurse of frenzy:\nTherefore they thought it good you hear a play\nAnd frame your mind to mirth and merriment,\nWhich bars a thousand harms and lengthens life.\n\nSLY:\nMarry, I will, let them play it. Is not a\ncomondy a Christmas gambold or a tumbling-trick?\n\nPage:\nNo, my good lord; it is more pleasing stuff.\n\nSLY:\nWhat, household stuff?\n\nPage:\nIt is a kind of history.\n\nSLY:\nWell, well see't. Come, madam wife, sit by my side\nand let the world slip: we shall ne'er be younger.\n\nLUCENTIO:\nTranio, since for the great desire I had\nTo see fair Padua, nursery of arts,\nI am arrived for fruitful Lombardy,\nThe pleasant garden of great Italy;\nAnd by my father's love and leave am arm'd\nWith his good will and thy good company,\nMy trusty servant, well approved in all,\nHere let us breathe and haply institute\nA course of learning and ingenious studies.\nPisa renown'd for grave citizens\nGave me my being and my father first,\nA merchant of great traffic through the world,\nVincetino come of Bentivolii.\nVincetino's son brought up in Florence\nIt shall become to serve all hopes conceived,\nTo deck his fortune with his virtuous deeds:\nAnd therefore, Tranio, for the time I study,\nVirtue and that part of philosophy\nWill I apply that treats of happiness\nBy virtue specially to be achieved.\nTell me thy mind; for I have Pisa left\nAnd am to Padua come, as he that leaves\nA shallow plash to plunge him in the deep\nAnd with satiety seeks to quench his thirst.\n\nTRANIO:\nMi perdonato, gentle master mine,\nI am in all affected as yourself;\nGlad that you thus continue your resolve\nTo suck the sweets of sweet philosophy.\nOnly, good master, while we do admire\nThis virtue and this moral discipline,\nLet's be no stoics nor no stocks, I pray;\nOr so devote to Aristotle's cheques\nAs Ovid be an outcast quite abjured:\nBalk logic with acquaintance that you have\nAnd practise rhetoric in your common talk;\nMusic and poesy use to quicken you;\nThe mathematics and the metaphysics,\nFall to them as you find your stomach serves you;\nNo profit grows where is no pleasure ta'en:\nIn brief, sir, study what you most affect.\n\nLUCENTIO:\nGramercies, Tranio, well dost thou advise.\nIf, Biondello, thou wert come ashore,\nWe could at once put us in readiness,\nAnd take a lodging fit to entertain\nSuch friends as time in Padua shall beget.\nBut stay a while: what company is this?\n\nTRANIO:\nMaster, some show to welcome us to town.\n\nBAPTISTA:\nGentlemen, importune me no farther,\nFor how I firmly am resolved you know;\nThat is, not bestow my youngest daughter\nBefore I have a husband for the elder:\nIf either of you both love Katharina,\nBecause I know you well and love you well,\nLeave shall you have to court her at your pleasure.\n\nGREMIO:\n\nKATHARINA:\nI pray you, sir, is it your will\nTo make a stale of me amongst these mates?\n\nHORTENSIO:\nMates, maid! how mean you that? no mates for you,\nUnless you were of gentler, milder mould.\n\nKATHARINA:\nI'faith, sir, you shall never need to fear:\nI wis it is not half way to her heart;\nBut if it were, doubt not her care should be\nTo comb your noddle with a three-legg'd stool\nAnd paint your face and use you like a fool.\n\nHORTENSIA:\nFrom all such devils, good Lord deliver us!\n\nGREMIO:\nAnd me too, good Lord!\n\nTRANIO:\nHush, master! here's some good pastime toward:\nThat wench is stark mad or wonderful froward.\n\nLUCENTIO:\nBut in the other's silence do I see\nMaid's mild behavior and sobriety.\nPeace, Tranio!\n\nTRANIO:\nWell said, master; mum! and gaze your fill.\n\nBAPTISTA:\nGentlemen, that I may soon make good\nWhat I have said, Bianca, get you in:\nAnd let it not displease thee, good Bianca,\nFor I will love thee ne'er the less, my girl.\n\nKATHARINA:\nA pretty peat! it is best\nPut finger in the eye, an she knew why.\n\nBIANCA:\nSister, content you in my discontent.\nSir, to your pleasure humbly I subscribe:\nMy books and instruments shall be my company,\nOn them to took and practise by myself.\n\nLUCENTIO:\nHark, Tranio! thou may'st hear Minerva speak.\n\nHORTENSIO:\nSignior Baptista, will you be so strange?\nSorry am I that our good will effects\nBianca's grief.\n\nGREMIO:\nWhy will you mew her up,\nSignior Baptista, for this fiend of hell,\nAnd make her bear the penance of her tongue?\n\nBAPTISTA:\nGentlemen, content ye; I am resolved:\nGo in, Bianca:\nAnd for I know she taketh most delight\nIn music, instruments and poetry,\nSchoolmasters will I keep within my house,\nFit to instruct her youth. If you, Hortensio,\nOr Signior Gremio, you, know any such,\nPrefer them hither; for to cunning men\nI will be very kind, and liberal\nTo mine own children in good bringing up:\nAnd so farewell. Katharina, you may stay;\nFor I have more to commune with Bianca.\n\nKATHARINA:\nWhy, and I trust I may go too, may I not? What,\nshall I be appointed hours; as though, belike, I\nknew not what to take and what to leave, ha?\n\nGREMIO:\nYou may go to the devil's dam: your gifts are so\ngood, here's none will hold you. Their love is not\nso great, Hortensio, but we may blow our nails\ntogether, and fast it fairly out: our cakes dough on\nboth sides. Farewell: yet for the love I bear my\nsweet Bianca, if I can by any means light on a fit\nman to teach her that wherein she delights, I will\nwish him to her father.\n\nHORTENSIO:\nSo will I, Signior Gremio: but a word, I pray.\nThough the nature of our quarrel yet never brooked\nparle, know now, upon advice, it toucheth us both,\nthat we may yet again have access to our fair\nmistress and be happy rivals in Bianco's love, to\nlabour and effect one thing specially.\n\nGREMIO:\nWhat's that, I pray?\n\nHORTENSIO:\nMarry, sir, to get a husband for her sister.\n\nGREMIO:\nA husband! a devil.\n\nHORTENSIO:\nI say, a husband.\n\nGREMIO:\nI say, a devil. Thinkest thou, Hortensio, though\nher father be very rich, any man is so very a fool\nto be married to hell?\n\nHORTENSIO:\nTush, Gremio, though it pass your patience and mine\nto endure her loud alarums, why, man, there be good\nfellows in the world, an a man could light on them,\nwould take her with all faults, and money enough.\n\nGREMIO:\nI cannot tell; but I had as lief take her dowry with\nthis condition, to be whipped at the high cross\nevery morning.\n\nHORTENSIO:\nFaith, as you say, there's small choice in rotten\napples. But come; since this bar in law makes us\nfriends, it shall be so far forth friendly\nmaintained all by helping Baptista's eldest daughter\nto a husband we set his youngest free for a husband,\nand then have to't a fresh. Sweet Bianca! Happy man\nbe his dole! He that runs fastest gets the ring.\nHow say you, Signior Gremio?\n\nGREMIO:\nI am agreed; and would I had given him the best\nhorse in Padua to begin his wooing that would\nthoroughly woo her, wed her and bed her and rid the\nhouse of her! Come on.\n\nTRANIO:\nI pray, sir, tell me, is it possible\nThat love should of a sudden take such hold?\n\nLUCENTIO:\nO Tranio, till I found it to be true,\nI never thought it possible or likely;\nBut see, while idly I stood looking on,\nI found the effect of love in idleness:\nAnd now in plainness do confess to thee,\nThat art to me as secret and as dear\nAs Anna to the queen of Carthage was,\nTranio, I burn, I pine, I perish, Tranio,\nIf I achieve not this young modest girl.\nCounsel me, Tranio, for I know thou canst;\nAssist me, Tranio, for I know thou wilt.\n\nTRANIO:\nMaster, it is no time to chide you now;\nAffection is not rated from the heart:\nIf love have touch'd you, nought remains but so,\n'Redime te captum quam queas minimo.'\n\nLUCENTIO:\nGramercies, lad, go forward; this contents:\nThe rest will comfort, for thy counsel's sound.\n\nTRANIO:\nMaster, you look'd so longly on the maid,\nPerhaps you mark'd not what's the pith of all.\n\nLUCENTIO:\nO yes, I saw sweet beauty in her face,\nSuch as the daughter of Agenor had,\nThat made great Jove to humble him to her hand.\nWhen with his knees he kiss'd the Cretan strand.\n\nTRANIO:\nSaw you no more? mark'd you not how her sister\nBegan to scold and raise up such a storm\nThat mortal ears might hardly endure the din?\n\nLUCENTIO:\nTranio, I saw her coral lips to move\nAnd with her breath she did perfume the air:\nSacred and sweet was all I saw in her.\n\nTRANIO:\nNay, then, 'tis time to stir him from his trance.\nI pray, awake, sir: if you love the maid,\nBend thoughts and wits to achieve her. Thus it stands:\nHer eldest sister is so curst and shrewd\nThat till the father rid his hands of her,\nMaster, your love must live a maid at home;\nAnd therefore has he closely mew'd her up,\nBecause she will not be annoy'd with suitors.\n\nLUCENTIO:\nAh, Tranio, what a cruel father's he!\nBut art thou not advised, he took some care\nTo get her cunning schoolmasters to instruct her?\n\nTRANIO:\nAy, marry, am I, sir; and now 'tis plotted.\n\nLUCENTIO:\nI have it, Tranio.\n\nTRANIO:\nMaster, for my hand,\nBoth our inventions meet and jump in one.\n\nLUCENTIO:\nTell me thine first.\n\nTRANIO:\nYou will be schoolmaster\nAnd undertake the teaching of the maid:\nThat's your device.\n\nLUCENTIO:\nIt is: may it be done?\n\nTRANIO:\nNot possible; for who shall bear your part,\nAnd be in Padua here Vincentio's son,\nKeep house and ply his book, welcome his friends,\nVisit his countrymen and banquet them?\n\nLUCENTIO:\nBasta; content thee, for I have it full.\nWe have not yet been seen in any house,\nNor can we lie distinguish'd by our faces\nFor man or master; then it follows thus;\nThou shalt be master, Tranio, in my stead,\nKeep house and port and servants as I should:\nI will some other be, some Florentine,\nSome Neapolitan, or meaner man of Pisa.\n'Tis hatch'd and shall be so: Tranio, at once\nUncase thee; take my colour'd hat and cloak:\nWhen Biondello comes, he waits on thee;\nBut I will charm him first to keep his tongue.\n\nTRANIO:\nSo had you need.\nIn brief, sir, sith it your pleasure is,\nAnd I am tied to be obedient;\nFor so your father charged me at our parting,\n'Be serviceable to my son,' quoth he,\nAlthough I think 'twas in another sense;\nI am content to be Lucentio,\nBecause so well I love Lucentio.\n\nLUCENTIO:\nTranio, be so, because Lucentio loves:\nAnd let me be a slave, to achieve that maid\nWhose sudden sight hath thrall'd my wounded eye.\nHere comes the rogue.\nSirrah, where have you been?\n\nBIONDELLO:\nWhere have I been! Nay, how now! where are you?\nMaster, has my fellow Tranio stolen your clothes? Or\nyou stolen his? or both? pray, what's the news?\n\nLUCENTIO:\nSirrah, come hither: 'tis no time to jest,\nAnd therefore frame your manners to the time.\nYour fellow Tranio here, to save my life,\nPuts my apparel and my countenance on,\nAnd I for my escape have put on his;\nFor in a quarrel since I came ashore\nI kill'd a man and fear I was descried:\nWait you on him, I charge you, as becomes,\nWhile I make way from hence to save my life:\nYou understand me?\n\nBIONDELLO:\nI, sir! ne'er a whit.\n\nLUCENTIO:\nAnd not a jot of Tranio in your mouth:\nTranio is changed into Lucentio.\n\nBIONDELLO:\nThe better for him: would I were so too!\n\nTRANIO:\nSo could I, faith, boy, to have the next wish after,\nThat Lucentio indeed had Baptista's youngest daughter.\nBut, sirrah, not for my sake, but your master's, I advise\nYou use your manners discreetly in all kind of companies:\nWhen I am alone, why, then I am Tranio;\nBut in all places else your master Lucentio.\n\nLUCENTIO:\nTranio, let's go: one thing more rests, that\nthyself execute, to make one among these wooers: if\nthou ask me why, sufficeth, my reasons are both good\nand weighty.\n\nFirst Servant:\nMy lord, you nod; you do not mind the play.\n\nSLY:\nYes, by Saint Anne, do I. A good matter, surely:\ncomes there any more of it?\n\nPage:\nMy lord, 'tis but begun.\n\nSLY:\n'Tis a very excellent piece of work, madam lady:\nwould 'twere done!\n\nPETRUCHIO:\nVerona, for a while I take my leave,\nTo see my friends in Padua, but of all\nMy best beloved and approved friend,\nHortensio; and I trow this is his house.\nHere, sirrah Grumio; knock, I say.\n\nGRUMIO:\nKnock, sir! whom should I knock? is there man has\nrebused your worship?\n\nPETRUCHIO:\nVillain, I say, knock me here soundly.\n\nGRUMIO:\nKnock you here, sir! why, sir, what am I, sir, that\nI should knock you here, sir?\n\nPETRUCHIO:\nVillain, I say, knock me at this gate\nAnd rap me well, or I'll knock your knave's pate.\n\nGRUMIO:\nMy master is grown quarrelsome. I should knock\nyou first,\nAnd then I know after who comes by the worst.\n\nPETRUCHIO:\nWill it not be?\nFaith, sirrah, an you'll not knock, I'll ring it;\nI'll try how you can sol, fa, and sing it.\n\nGRUMIO:\nHelp, masters, help! my master is mad.\n\nPETRUCHIO:\nNow, knock when I bid you, sirrah villain!\n\nHORTENSIO:\nHow now! what's the matter? My old friend Grumio!\nand my good friend Petruchio! How do you all at Verona?\n\nPETRUCHIO:\nSignior Hortensio, come you to part the fray?\n'Con tutto il cuore, ben trovato,' may I say.\n\nHORTENSIO:\n'Alla nostra casa ben venuto, molto honorato signor\nmio Petruchio.' Rise, Grumio, rise: we will compound\nthis quarrel.\n\nGRUMIO:\nNay, 'tis no matter, sir, what he 'leges in Latin.\nif this be not a lawful case for me to leave his\nservice, look you, sir, he bid me knock him and rap\nhim soundly, sir: well, was it fit for a servant to\nuse his master so, being perhaps, for aught I see,\ntwo and thirty, a pip out? Whom would to God I had\nwell knock'd at first, Then had not Grumio come by the worst.\n\nPETRUCHIO:\nA senseless villain! Good Hortensio,\nI bade the rascal knock upon your gate\nAnd could not get him for my heart to do it.\n\nGRUMIO:\nKnock at the gate! O heavens! Spake you not these\nwords plain, 'Sirrah, knock me here, rap me here,\nknock me well, and knock me soundly'? And come you\nnow with, 'knocking at the gate'?\n\nPETRUCHIO:\nSirrah, be gone, or talk not, I advise you.\n\nHORTENSIO:\nPetruchio, patience; I am Grumio's pledge:\nWhy, this's a heavy chance 'twixt him and you,\nYour ancient, trusty, pleasant servant Grumio.\nAnd tell me now, sweet friend, what happy gale\nBlows you to Padua here from old Verona?\n\nPETRUCHIO:\nSuch wind as scatters young men through the world,\nTo seek their fortunes farther than at home\nWhere small experience grows. But in a few,\nSignior Hortensio, thus it stands with me:\nAntonio, my father, is deceased;\nAnd I have thrust myself into this maze,\nHaply to wive and thrive as best I may:\nCrowns in my purse I have and goods at home,\nAnd so am come abroad to see the world.\n\nHORTENSIO:\nPetruchio, shall I then come roundly to thee\nAnd wish thee to a shrewd ill-favour'd wife?\nThou'ldst thank me but a little for my counsel:\nAnd yet I'll promise thee she shall be rich\nAnd very rich: but thou'rt too much my friend,\nAnd I'll not wish thee to her.\n\nPETRUCHIO:\nSignior Hortensio, 'twixt such friends as we\nFew words suffice; and therefore, if thou know\nOne rich enough to be Petruchio's wife,\nAs wealth is burden of my wooing dance,\nBe she as foul as was Florentius' love,\nAs old as Sibyl and as curst and shrewd\nAs Socrates' Xanthippe, or a worse,\nShe moves me not, or not removes, at least,\nAffection's edge in me, were she as rough\nAs are the swelling Adriatic seas:\nI come to wive it wealthily in Padua;\nIf wealthily, then happily in Padua.\n\nGRUMIO:\nNay, look you, sir, he tells you flatly what his\nmind is: Why give him gold enough and marry him to\na puppet or an aglet-baby; or an old trot with ne'er\na tooth in her head, though she have as many diseases\nas two and fifty horses: why, nothing comes amiss,\nso money comes withal.\n\nHORTENSIO:\nPetruchio, since we are stepp'd thus far in,\nI will continue that I broach'd in jest.\nI can, Petruchio, help thee to a wife\nWith wealth enough and young and beauteous,\nBrought up as best becomes a gentlewoman:\nHer only fault, and that is faults enough,\nIs that she is intolerable curst\nAnd shrewd and froward, so beyond all measure\nThat, were my state far worser than it is,\nI would not wed her for a mine of gold.\n\nPETRUCHIO:\nHortensio, peace! thou know'st not gold's effect:\nTell me her father's name and 'tis enough;\nFor I will board her, though she chide as loud\nAs thunder when the clouds in autumn crack.\n\nHORTENSIO:\nHer father is Baptista Minola,\nAn affable and courteous gentleman:\nHer name is Katharina Minola,\nRenown'd in Padua for her scolding tongue.\n\nPETRUCHIO:\nI know her father, though I know not her;\nAnd he knew my deceased father well.\nI will not sleep, Hortensio, till I see her;\nAnd therefore let me be thus bold with you\nTo give you over at this first encounter,\nUnless you will accompany me thither.\n\nGRUMIO:\nI pray you, sir, let him go while the humour lasts.\nO' my word, an she knew him as well as I do, she\nwould think scolding would do little good upon him:\nshe may perhaps call him half a score knaves or so:\nwhy, that's nothing; an he begin once, he'll rail in\nhis rope-tricks. I'll tell you what sir, an she\nstand him but a little, he will throw a figure in\nher face and so disfigure her with it that she\nshall have no more eyes to see withal than a cat.\nYou know him not, sir.\n\nHORTENSIO:\nTarry, Petruchio, I must go with thee,\nFor in Baptista's keep my treasure is:\nHe hath the jewel of my life in hold,\nHis youngest daughter, beautiful Binaca,\nAnd her withholds from me and other more,\nSuitors to her and rivals in my love,\nSupposing it a thing impossible,\nFor those defects I have before rehearsed,\nThat ever Katharina will be woo'd;\nTherefore this order hath Baptista ta'en,\nThat none shall have access unto Bianca\nTill Katharina the curst have got a husband.\n\nGRUMIO:\nKatharina the curst!\nA title for a maid of all titles the worst.\n\nHORTENSIO:\nNow shall my friend Petruchio do me grace,\nAnd offer me disguised in sober robes\nTo old Baptista as a schoolmaster\nWell seen in music, to instruct Bianca;\nThat so I may, by this device, at least\nHave leave and leisure to make love to her\nAnd unsuspected court her by herself.\n\nGRUMIO:\nHere's no knavery! See, to beguile the old folks,\nhow the young folks lay their heads together!\nMaster, master, look about you: who goes there, ha?\n\nHORTENSIO:\nPeace, Grumio! it is the rival of my love.\nPetruchio, stand by a while.\n\nGRUMIO:\nA proper stripling and an amorous!\n\nGREMIO:\nO, very well; I have perused the note.\nHark you, sir: I'll have them very fairly bound:\nAll books of love, see that at any hand;\nAnd see you read no other lectures to her:\nYou understand me: over and beside\nSignior Baptista's liberality,\nI'll mend it with a largess. Take your paper too,\nAnd let me have them very well perfumed\nFor she is sweeter than perfume itself\nTo whom they go to. What will you read to her?\n\nLUCENTIO:\nWhate'er I read to her, I'll plead for you\nAs for my patron, stand you so assured,\nAs firmly as yourself were still in place:\nYea, and perhaps with more successful words\nThan you, unless you were a scholar, sir.\n\nGREMIO:\nO this learning, what a thing it is!\n\nGRUMIO:\nO this woodcock, what an ass it is!\n\nPETRUCHIO:\nPeace, sirrah!\n\nHORTENSIO:\nGrumio, mum! God save you, Signior Gremio.\n\nGREMIO:\nAnd you are well met, Signior Hortensio.\nTrow you whither I am going? To Baptista Minola.\nI promised to inquire carefully\nAbout a schoolmaster for the fair Bianca:\nAnd by good fortune I have lighted well\nOn this young man, for learning and behavior\nFit for her turn, well read in poetry\nAnd other books, good ones, I warrant ye.\n\nHORTENSIO:\n'Tis well; and I have met a gentleman\nHath promised me to help me to another,\nA fine musician to instruct our mistress;\nSo shall I no whit be behind in duty\nTo fair Bianca, so beloved of me.\n\nGREMIO:\nBeloved of me; and that my deeds shall prove.\n\nGRUMIO:\nAnd that his bags shall prove.\n\nHORTENSIO:\nGremio, 'tis now no time to vent our love:\nListen to me, and if you speak me fair,\nI'll tell you news indifferent good for either.\nHere is a gentleman whom by chance I met,\nUpon agreement from us to his liking,\nWill undertake to woo curst Katharina,\nYea, and to marry her, if her dowry please.\n\nGREMIO:\nSo said, so done, is well.\nHortensio, have you told him all her faults?\n\nPETRUCHIO:\nI know she is an irksome brawling scold:\nIf that be all, masters, I hear no harm.\n\nGREMIO:\nNo, say'st me so, friend? What countryman?\n\nPETRUCHIO:\nBorn in Verona, old Antonio's son:\nMy father dead, my fortune lives for me;\nAnd I do hope good days and long to see.\n\nGREMIO:\nO sir, such a life, with such a wife, were strange!\nBut if you have a stomach, to't i' God's name:\nYou shall have me assisting you in all.\nBut will you woo this wild-cat?\n\nPETRUCHIO:\nWill I live?\n\nGRUMIO:\nWill he woo her? ay, or I'll hang her.\n\nPETRUCHIO:\nWhy came I hither but to that intent?\nThink you a little din can daunt mine ears?\nHave I not in my time heard lions roar?\nHave I not heard the sea puff'd up with winds\nRage like an angry boar chafed with sweat?\nHave I not heard great ordnance in the field,\nAnd heaven's artillery thunder in the skies?\nHave I not in a pitched battle heard\nLoud 'larums, neighing steeds, and trumpets' clang?\nAnd do you tell me of a woman's tongue,\nThat gives not half so great a blow to hear\nAs will a chestnut in a farmer's fire?\nTush, tush! fear boys with bugs.\n\nGRUMIO:\nFor he fears none.\n\nGREMIO:\nHortensio, hark:\nThis gentleman is happily arrived,\nMy mind presumes, for his own good and ours.\n\nHORTENSIO:\nI promised we would be contributors\nAnd bear his charging of wooing, whatsoe'er.\n\nGREMIO:\nAnd so we will, provided that he win her.\n\nGRUMIO:\nI would I were as sure of a good dinner.\n\nTRANIO:\nGentlemen, God save you. If I may be bold,\nTell me, I beseech you, which is the readiest way\nTo the house of Signior Baptista Minola?\n\nBIONDELLO:\nHe that has the two fair daughters: is't he you mean?\n\nTRANIO:\nEven he, Biondello.\n\nGREMIO:\nHark you, sir; you mean not her to--\n\nTRANIO:\nPerhaps, him and her, sir: what have you to do?\n\nPETRUCHIO:\nNot her that chides, sir, at any hand, I pray.\n\nTRANIO:\nI love no chiders, sir. Biondello, let's away.\n\nLUCENTIO:\nWell begun, Tranio.\n\nHORTENSIO:\nSir, a word ere you go;\nAre you a suitor to the maid you talk of, yea or no?\n\nTRANIO:\nAnd if I be, sir, is it any offence?\n\nGREMIO:\nNo; if without more words you will get you hence.\n\nTRANIO:\nWhy, sir, I pray, are not the streets as free\nFor me as for you?\n\nGREMIO:\nBut so is not she.\n\nTRANIO:\nFor what reason, I beseech you?\n\nGREMIO:\nFor this reason, if you'll know,\nThat she's the choice love of Signior Gremio.\n\nHORTENSIO:\nThat she's the chosen of Signior Hortensio.\n\nTRANIO:\nSoftly, my masters! if you be gentlemen,\nDo me this right; hear me with patience.\nBaptista is a noble gentleman,\nTo whom my father is not all unknown;\nAnd were his daughter fairer than she is,\nShe may more suitors have and me for one.\nFair Leda's daughter had a thousand wooers;\nThen well one more may fair Bianca have:\nAnd so she shall; Lucentio shall make one,\nThough Paris came in hope to speed alone.\n\nGREMIO:\nWhat! this gentleman will out-talk us all.\n\nLUCENTIO:\nSir, give him head: I know he'll prove a jade.\n\nPETRUCHIO:\nHortensio, to what end are all these words?\n\nHORTENSIO:\nSir, let me be so bold as ask you,\nDid you yet ever see Baptista's daughter?\n\nTRANIO:\nNo, sir; but hear I do that he hath two,\nThe one as famous for a scolding tongue\nAs is the other for beauteous modesty.\n\nPETRUCHIO:\nSir, sir, the first's for me; let her go by.\n\nGREMIO:\nYea, leave that labour to great Hercules;\nAnd let it be more than Alcides' twelve.\n\nPETRUCHIO:\nSir, understand you this of me in sooth:\nThe youngest daughter whom you hearken for\nHer father keeps from all access of suitors,\nAnd will not promise her to any man\nUntil the elder sister first be wed:\nThe younger then is free and not before.\n\nTRANIO:\nIf it be so, sir, that you are the man\nMust stead us all and me amongst the rest,\nAnd if you break the ice and do this feat,\nAchieve the elder, set the younger free\nFor our access, whose hap shall be to have her\nWill not so graceless be to be ingrate.\n\nHORTENSIO:\nSir, you say well and well you do conceive;\nAnd since you do profess to be a suitor,\nYou must, as we do, gratify this gentleman,\nTo whom we all rest generally beholding.\n\nTRANIO:\nSir, I shall not be slack: in sign whereof,\nPlease ye we may contrive this afternoon,\nAnd quaff carouses to our mistress' health,\nAnd do as adversaries do in law,\nStrive mightily, but eat and drink as friends.\n\nGRUMIO:\nO excellent motion! Fellows, let's be gone.\n\nHORTENSIO:\nThe motion's good indeed and be it so,\nPetruchio, I shall be your ben venuto.\n\nBIANCA:\nGood sister, wrong me not, nor wrong yourself,\nTo make a bondmaid and a slave of me;\nThat I disdain: but for these other gawds,\nUnbind my hands, I'll pull them off myself,\nYea, all my raiment, to my petticoat;\nOr what you will command me will I do,\nSo well I know my duty to my elders.\n\nKATHARINA:\nOf all thy suitors, here I charge thee, tell\nWhom thou lovest best: see thou dissemble not.\n\nBIANCA:\nBelieve me, sister, of all the men alive\nI never yet beheld that special face\nWhich I could fancy more than any other.\n\nKATHARINA:\nMinion, thou liest. Is't not Hortensio?\n\nBIANCA:\nIf you affect him, sister, here I swear\nI'll plead for you myself, but you shall have\nhim.\n\nKATHARINA:\nO then, belike, you fancy riches more:\nYou will have Gremio to keep you fair.\n\nBIANCA:\nIs it for him you do envy me so?\nNay then you jest, and now I well perceive\nYou have but jested with me all this while:\nI prithee, sister Kate, untie my hands.\n\nKATHARINA:\nIf that be jest, then all the rest was so.\n\nBAPTISTA:\nWhy, how now, dame! whence grows this insolence?\nBianca, stand aside. Poor girl! she weeps.\nGo ply thy needle; meddle not with her.\nFor shame, thou helding of a devilish spirit,\nWhy dost thou wrong her that did ne'er wrong thee?\nWhen did she cross thee with a bitter word?\n\nKATHARINA:\nHer silence flouts me, and I'll be revenged.\n\nBAPTISTA:\nWhat, in my sight? Bianca, get thee in.\n\nKATHARINA:\nWhat, will you not suffer me? Nay, now I see\nShe is your treasure, she must have a husband;\nI must dance bare-foot on her wedding day\nAnd for your love to her lead apes in hell.\nTalk not to me: I will go sit and weep\nTill I can find occasion of revenge.\n\nBAPTISTA:\nWas ever gentleman thus grieved as I?\nBut who comes here?\n\nGREMIO:\nGood morrow, neighbour Baptista.\n\nBAPTISTA:\nGood morrow, neighbour Gremio.\nGod save you, gentlemen!\n\nPETRUCHIO:\nAnd you, good sir! Pray, have you not a daughter\nCall'd Katharina, fair and virtuous?\n\nBAPTISTA:\nI have a daughter, sir, called Katharina.\n\nGREMIO:\nYou are too blunt: go to it orderly.\n\nPETRUCHIO:\nYou wrong me, Signior Gremio: give me leave.\nI am a gentleman of Verona, sir,\nThat, hearing of her beauty and her wit,\nHer affability and bashful modesty,\nHer wondrous qualities and mild behavior,\nAm bold to show myself a forward guest\nWithin your house, to make mine eye the witness\nOf that report which I so oft have heard.\nAnd, for an entrance to my entertainment,\nI do present you with a man of mine,\nCunning in music and the mathematics,\nTo instruct her fully in those sciences,\nWhereof I know she is not ignorant:\nAccept of him, or else you do me wrong:\nHis name is Licio, born in Mantua.\n\nBAPTISTA:\nYou're welcome, sir; and he, for your good sake.\nBut for my daughter Katharina, this I know,\nShe is not for your turn, the more my grief.\n\nPETRUCHIO:\nI see you do not mean to part with her,\nOr else you like not of my company.\n\nBAPTISTA:\nMistake me not; I speak but as I find.\nWhence are you, sir? what may I call your name?\n\nPETRUCHIO:\nPetruchio is my name; Antonio's son,\nA man well known throughout all Italy.\n\nBAPTISTA:\nI know him well: you are welcome for his sake.\n\nGREMIO:\nSaving your tale, Petruchio, I pray,\nLet us, that are poor petitioners, speak too:\nBaccare! you are marvellous forward.\n\nPETRUCHIO:\nO, pardon me, Signior Gremio; I would fain be doing.\n\nGREMIO:\nI doubt it not, sir; but you will curse your\nwooing. Neighbour, this is a gift very grateful, I am\nsure of it. To express the like kindness, myself,\nthat have been more kindly beholding to you than\nany, freely give unto you this young scholar,\nthat hath been long studying at Rheims; as cunning\nin Greek, Latin, and other languages, as the other\nin music and mathematics: his name is Cambio; pray,\naccept his service.\n\nBAPTISTA:\nA thousand thanks, Signior Gremio.\nWelcome, good Cambio.\nBut, gentle sir, methinks you walk like a stranger:\nmay I be so bold to know the cause of your coming?\n\nTRANIO:\nPardon me, sir, the boldness is mine own,\nThat, being a stranger in this city here,\nDo make myself a suitor to your daughter,\nUnto Bianca, fair and virtuous.\nNor is your firm resolve unknown to me,\nIn the preferment of the eldest sister.\nThis liberty is all that I request,\nThat, upon knowledge of my parentage,\nI may have welcome 'mongst the rest that woo\nAnd free access and favour as the rest:\nAnd, toward the education of your daughters,\nI here bestow a simple instrument,\nAnd this small packet of Greek and Latin books:\nIf you accept them, then their worth is great.\n\nBAPTISTA:\nLucentio is your name; of whence, I pray?\n\nTRANIO:\nOf Pisa, sir; son to Vincentio.\n\nBAPTISTA:\nA mighty man of Pisa; by report\nI know him well: you are very welcome, sir,\nTake you the lute, and you the set of books;\nYou shall go see your pupils presently.\nHolla, within!\nSirrah, lead these gentlemen\nTo my daughters; and tell them both,\nThese are their tutors: bid them use them well.\nWe will go walk a little in the orchard,\nAnd then to dinner. You are passing welcome,\nAnd so I pray you all to think yourselves.\n\nPETRUCHIO:\nSignior Baptista, my business asketh haste,\nAnd every day I cannot come to woo.\nYou knew my father well, and in him me,\nLeft solely heir to all his lands and goods,\nWhich I have better'd rather than decreased:\nThen tell me, if I get your daughter's love,\nWhat dowry shall I have with her to wife?\n\nBAPTISTA:\nAfter my death the one half of my lands,\nAnd in possession twenty thousand crowns.\n\nPETRUCHIO:\nAnd, for that dowry, I'll assure her of\nHer widowhood, be it that she survive me,\nIn all my lands and leases whatsoever:\nLet specialties be therefore drawn between us,\nThat covenants may be kept on either hand.\n\nBAPTISTA:\nAy, when the special thing is well obtain'd,\nThat is, her love; for that is all in all.\n\nPETRUCHIO:\nWhy, that is nothing: for I tell you, father,\nI am as peremptory as she proud-minded;\nAnd where two raging fires meet together\nThey do consume the thing that feeds their fury:\nThough little fire grows great with little wind,\nYet extreme gusts will blow out fire and all:\nSo I to her and so she yields to me;\nFor I am rough and woo not like a babe.\n\nBAPTISTA:\nWell mayst thou woo, and happy be thy speed!\nBut be thou arm'd for some unhappy words.\n\nPETRUCHIO:\nAy, to the proof; as mountains are for winds,\nThat shake not, though they blow perpetually.\n\nBAPTISTA:\nHow now, my friend! why dost thou look so pale?\n\nHORTENSIO:\nFor fear, I promise you, if I look pale.\n\nBAPTISTA:\nWhat, will my daughter prove a good musician?\n\nHORTENSIO:\nI think she'll sooner prove a soldier\nIron may hold with her, but never lutes.\n\nBAPTISTA:\nWhy, then thou canst not break her to the lute?\n\nHORTENSIO:\nWhy, no; for she hath broke the lute to me.\nI did but tell her she mistook her frets,\nAnd bow'd her hand to teach her fingering;\nWhen, with a most impatient devilish spirit,\n'Frets, call you these?' quoth she; 'I'll fume\nwith them:'\nAnd, with that word, she struck me on the head,\nAnd through the instrument my pate made way;\nAnd there I stood amazed for a while,\nAs on a pillory, looking through the lute;\nWhile she did call me rascal fiddler\nAnd twangling Jack; with twenty such vile terms,\nAs had she studied to misuse me so.\n\nPETRUCHIO:\nNow, by the world, it is a lusty wench;\nI love her ten times more than e'er I did:\nO, how I long to have some chat with her!\n\nBAPTISTA:\nWell, go with me and be not so discomfited:\nProceed in practise with my younger daughter;\nShe's apt to learn and thankful for good turns.\nSignior Petruchio, will you go with us,\nOr shall I send my daughter Kate to you?\n\nPETRUCHIO:\nI pray you do.\nI will attend her here,\nAnd woo her with some spirit when she comes.\nSay that she rail; why then I'll tell her plain\nShe sings as sweetly as a nightingale:\nSay that she frown, I'll say she looks as clear\nAs morning roses newly wash'd with dew:\nSay she be mute and will not speak a word;\nThen I'll commend her volubility,\nAnd say she uttereth piercing eloquence:\nIf she do bid me pack, I'll give her thanks,\nAs though she bid me stay by her a week:\nIf she deny to wed, I'll crave the day\nWhen I shall ask the banns and when be married.\nBut here she comes; and now, Petruchio, speak.\nGood morrow, Kate; for that's your name, I hear.\n\nKATHARINA:\nWell have you heard, but something hard of hearing:\nThey call me Katharina that do talk of me.\n\nPETRUCHIO:\nYou lie, in faith; for you are call'd plain Kate,\nAnd bonny Kate and sometimes Kate the curst;\nBut Kate, the prettiest Kate in Christendom\nKate of Kate Hall, my super-dainty Kate,\nFor dainties are all Kates, and therefore, Kate,\nTake this of me, Kate of my consolation;\nHearing thy mildness praised in every town,\nThy virtues spoke of, and thy beauty sounded,\nYet not so deeply as to thee belongs,\nMyself am moved to woo thee for my wife.\n\nKATHARINA:\nMoved! in good time: let him that moved you hither\nRemove you hence: I knew you at the first\nYou were a moveable.\n\nPETRUCHIO:\nWhy, what's a moveable?\n\nKATHARINA:\nA join'd-stool.\n\nPETRUCHIO:\nThou hast hit it: come, sit on me.\n\nKATHARINA:\nAsses are made to bear, and so are you.\n\nPETRUCHIO:\nWomen are made to bear, and so are you.\n\nKATHARINA:\nNo such jade as you, if me you mean.\n\nPETRUCHIO:\nAlas! good Kate, I will not burden thee;\nFor, knowing thee to be but young and light--\n\nKATHARINA:\nToo light for such a swain as you to catch;\nAnd yet as heavy as my weight should be.\n\nPETRUCHIO:\nShould be! should--buzz!\n\nKATHARINA:\nWell ta'en, and like a buzzard.\n\nPETRUCHIO:\nO slow-wing'd turtle! shall a buzzard take thee?\n\nKATHARINA:\nAy, for a turtle, as he takes a buzzard.\n\nPETRUCHIO:\nCome, come, you wasp; i' faith, you are too angry.\n\nKATHARINA:\nIf I be waspish, best beware my sting.\n\nPETRUCHIO:\nMy remedy is then, to pluck it out.\n\nKATHARINA:\nAy, if the fool could find it where it lies,\n\nPETRUCHIO:\nWho knows not where a wasp does\nwear his sting? In his tail.\n\nKATHARINA:\nIn his tongue.\n\nPETRUCHIO:\nWhose tongue?\n\nKATHARINA:\nYours, if you talk of tails: and so farewell.\n\nPETRUCHIO:\nWhat, with my tongue in your tail? nay, come again,\nGood Kate; I am a gentleman.\n\nKATHARINA:\nThat I'll try.\n\nPETRUCHIO:\nI swear I'll cuff you, if you strike again.\n\nKATHARINA:\nSo may you lose your arms:\nIf you strike me, you are no gentleman;\nAnd if no gentleman, why then no arms.\n\nPETRUCHIO:\nA herald, Kate? O, put me in thy books!\n\nKATHARINA:\nWhat is your crest? a coxcomb?\n\nPETRUCHIO:\nA combless cock, so Kate will be my hen.\n\nKATHARINA:\nNo cock of mine; you crow too like a craven.\n\nPETRUCHIO:\nNay, come, Kate, come; you must not look so sour.\n\nKATHARINA:\nIt is my fashion, when I see a crab.\n\nPETRUCHIO:\nWhy, here's no crab; and therefore look not sour.\n\nKATHARINA:\nThere is, there is.\n\nPETRUCHIO:\nThen show it me.\n\nKATHARINA:\nHad I a glass, I would.\n\nPETRUCHIO:\nWhat, you mean my face?\n\nKATHARINA:\nWell aim'd of such a young one.\n\nPETRUCHIO:\nNow, by Saint George, I am too young for you.\n\nKATHARINA:\nYet you are wither'd.\n\nPETRUCHIO:\n'Tis with cares.\n\nKATHARINA:\nI care not.\n\nPETRUCHIO:\nNay, hear you, Kate: in sooth you scape not so.\n\nKATHARINA:\nI chafe you, if I tarry: let me go.\n\nPETRUCHIO:\nNo, not a whit: I find you passing gentle.\n'Twas told me you were rough and coy and sullen,\nAnd now I find report a very liar;\nFor thou are pleasant, gamesome, passing courteous,\nBut slow in speech, yet sweet as spring-time flowers:\nThou canst not frown, thou canst not look askance,\nNor bite the lip, as angry wenches will,\nNor hast thou pleasure to be cross in talk,\nBut thou with mildness entertain'st thy wooers,\nWith gentle conference, soft and affable.\nWhy does the world report that Kate doth limp?\nO slanderous world! Kate like the hazel-twig\nIs straight and slender and as brown in hue\nAs hazel nuts and sweeter than the kernels.\nO, let me see thee walk: thou dost not halt.\n\nKATHARINA:\nGo, fool, and whom thou keep'st command.\n\nPETRUCHIO:\nDid ever Dian so become a grove\nAs Kate this chamber with her princely gait?\nO, be thou Dian, and let her be Kate;\nAnd then let Kate be chaste and Dian sportful!\n\nKATHARINA:\nWhere did you study all this goodly speech?\n\nPETRUCHIO:\nIt is extempore, from my mother-wit.\n\nKATHARINA:\nA witty mother! witless else her son.\n\nPETRUCHIO:\nAm I not wise?\n\nKATHARINA:\nYes; keep you warm.\n\nPETRUCHIO:\nMarry, so I mean, sweet Katharina, in thy bed:\nAnd therefore, setting all this chat aside,\nThus in plain terms: your father hath consented\nThat you shall be my wife; your dowry 'greed on;\nAnd, Will you, nill you, I will marry you.\nNow, Kate, I am a husband for your turn;\nFor, by this light, whereby I see thy beauty,\nThy beauty, that doth make me like thee well,\nThou must be married to no man but me;\nFor I am he am born to tame you Kate,\nAnd bring you from a wild Kate to a Kate\nConformable as other household Kates.\nHere comes your father: never make denial;\nI must and will have Katharina to my wife.\n\nBAPTISTA:\nNow, Signior Petruchio, how speed you with my daughter?\n\nPETRUCHIO:\nHow but well, sir? how but well?\nIt were impossible I should speed amiss.\n\nBAPTISTA:\nWhy, how now, daughter Katharina! in your dumps?\n\nKATHARINA:\nCall you me daughter? now, I promise you\nYou have show'd a tender fatherly regard,\nTo wish me wed to one half lunatic;\nA mad-cup ruffian and a swearing Jack,\nThat thinks with oaths to face the matter out.\n\nPETRUCHIO:\nFather, 'tis thus: yourself and all the world,\nThat talk'd of her, have talk'd amiss of her:\nIf she be curst, it is for policy,\nFor she's not froward, but modest as the dove;\nShe is not hot, but temperate as the morn;\nFor patience she will prove a second Grissel,\nAnd Roman Lucrece for her chastity:\nAnd to conclude, we have 'greed so well together,\nThat upon Sunday is the wedding-day.\n\nKATHARINA:\nI'll see thee hang'd on Sunday first.\n\nGREMIO:\nHark, Petruchio; she says she'll see thee\nhang'd first.\n\nTRANIO:\nIs this your speeding? nay, then, good night our part!\n\nPETRUCHIO:\nBe patient, gentlemen; I choose her for myself:\nIf she and I be pleased, what's that to you?\n'Tis bargain'd 'twixt us twain, being alone,\nThat she shall still be curst in company.\nI tell you, 'tis incredible to believe\nHow much she loves me: O, the kindest Kate!\nShe hung about my neck; and kiss on kiss\nShe vied so fast, protesting oath on oath,\nThat in a twink she won me to her love.\nO, you are novices! 'tis a world to see,\nHow tame, when men and women are alone,\nA meacock wretch can make the curstest shrew.\nGive me thy hand, Kate: I will unto Venice,\nTo buy apparel 'gainst the wedding-day.\nProvide the feast, father, and bid the guests;\nI will be sure my Katharina shall be fine.\n\nBAPTISTA:\nI know not what to say: but give me your hands;\nGod send you joy, Petruchio! 'tis a match.\n\nGREMIO:\nAmen, say we: we will be witnesses.\n\nPETRUCHIO:\nFather, and wife, and gentlemen, adieu;\nI will to Venice; Sunday comes apace:\nWe will have rings and things and fine array;\nAnd kiss me, Kate, we will be married o'Sunday.\n\nGREMIO:\nWas ever match clapp'd up so suddenly?\n\nBAPTISTA:\nFaith, gentlemen, now I play a merchant's part,\nAnd venture madly on a desperate mart.\n\nTRANIO:\n'Twas a commodity lay fretting by you:\n'Twill bring you gain, or perish on the seas.\n\nBAPTISTA:\nThe gain I seek is, quiet in the match.\n\nGREMIO:\nNo doubt but he hath got a quiet catch.\nBut now, Baptists, to your younger daughter:\nNow is the day we long have looked for:\nI am your neighbour, and was suitor first.\n\nTRANIO:\nAnd I am one that love Bianca more\nThan words can witness, or your thoughts can guess.\n\nGREMIO:\nYoungling, thou canst not love so dear as I.\n\nTRANIO:\nGraybeard, thy love doth freeze.\n\nGREMIO:\nBut thine doth fry.\nSkipper, stand back: 'tis age that nourisheth.\n\nTRANIO:\nBut youth in ladies' eyes that flourisheth.\n\nBAPTISTA:\nContent you, gentlemen: I will compound this strife:\n'Tis deeds must win the prize; and he of both\nThat can assure my daughter greatest dower\nShall have my Bianca's love.\nSay, Signior Gremio, What can you assure her?\n\nGREMIO:\nFirst, as you know, my house within the city\nIs richly furnished with plate and gold;\nBasins and ewers to lave her dainty hands;\nMy hangings all of Tyrian tapestry;\nIn ivory coffers I have stuff'd my crowns;\nIn cypress chests my arras counterpoints,\nCostly apparel, tents, and canopies,\nFine linen, Turkey cushions boss'd with pearl,\nValance of Venice gold in needlework,\nPewter and brass and all things that belong\nTo house or housekeeping: then, at my farm\nI have a hundred milch-kine to the pail,\nSixscore fat oxen standing in my stalls,\nAnd all things answerable to this portion.\nMyself am struck in years, I must confess;\nAnd if I die to-morrow, this is hers,\nIf whilst I live she will be only mine.\n\nTRANIO:\nThat 'only' came well in. Sir, list to me:\nI am my father's heir and only son:\nIf I may have your daughter to my wife,\nI'll leave her houses three or four as good,\nWithin rich Pisa walls, as any one\nOld Signior Gremio has in Padua;\nBesides two thousand ducats by the year\nOf fruitful land, all which shall be her jointure.\nWhat, have I pinch'd you, Signior Gremio?\n\nGREMIO:\nTwo thousand ducats by the year of land!\nMy land amounts not to so much in all:\nThat she shall have; besides an argosy\nThat now is lying in Marseilles' road.\nWhat, have I choked you with an argosy?\n\nTRANIO:\nGremio, 'tis known my father hath no less\nThan three great argosies; besides two galliases,\nAnd twelve tight galleys: these I will assure her,\nAnd twice as much, whate'er thou offer'st next.\n\nGREMIO:\nNay, I have offer'd all, I have no more;\nAnd she can have no more than all I have:\nIf you like me, she shall have me and mine.\n\nTRANIO:\nWhy, then the maid is mine from all the world,\nBy your firm promise: Gremio is out-vied.\n\nBAPTISTA:\nI must confess your offer is the best;\nAnd, let your father make her the assurance,\nShe is your own; else, you must pardon me,\nif you should die before him, where's her dower?\n\nTRANIO:\nThat's but a cavil: he is old, I young.\n\nGREMIO:\nAnd may not young men die, as well as old?\n\nBAPTISTA:\nWell, gentlemen,\nI am thus resolved: on Sunday next you know\nMy daughter Katharina is to be married:\nNow, on the Sunday following, shall Bianca\nBe bride to you, if you this assurance;\nIf not, Signior Gremio:\nAnd so, I take my leave, and thank you both.\n\nGREMIO:\nAdieu, good neighbour.\nNow I fear thee not:\nSirrah young gamester, your father were a fool\nTo give thee all, and in his waning age\nSet foot under thy table: tut, a toy!\nAn old Italian fox is not so kind, my boy.\n\nTRANIO:\nA vengeance on your crafty wither'd hide!\nYet I have faced it with a card of ten.\n'Tis in my head to do my master good:\nI see no reason but supposed Lucentio\nMust get a father, call'd 'supposed Vincentio;'\nAnd that's a wonder: fathers commonly\nDo get their children; but in this case of wooing,\nA child shall get a sire, if I fail not of my cunning.\n\nLUCENTIO:\nFiddler, forbear; you grow too forward, sir:\nHave you so soon forgot the entertainment\nHer sister Katharina welcomed you withal?\n\nHORTENSIO:\nBut, wrangling pedant, this is\nThe patroness of heavenly harmony:\nThen give me leave to have prerogative;\nAnd when in music we have spent an hour,\nYour lecture shall have leisure for as much.\n\nLUCENTIO:\nPreposterous ass, that never read so far\nTo know the cause why music was ordain'd!\nWas it not to refresh the mind of man\nAfter his studies or his usual pain?\nThen give me leave to read philosophy,\nAnd while I pause, serve in your harmony.\n\nHORTENSIO:\nSirrah, I will not bear these braves of thine.\n\nBIANCA:\nWhy, gentlemen, you do me double wrong,\nTo strive for that which resteth in my choice:\nI am no breeching scholar in the schools;\nI'll not be tied to hours nor 'pointed times,\nBut learn my lessons as I please myself.\nAnd, to cut off all strife, here sit we down:\nTake you your instrument, play you the whiles;\nHis lecture will be done ere you have tuned.\n\nHORTENSIO:\nYou'll leave his lecture when I am in tune?\n\nLUCENTIO:\nThat will be never: tune your instrument.\n\nBIANCA:\nWhere left we last?\n\nLUCENTIO:\nHere, madam:\n'Hic ibat Simois; hic est Sigeia tellus;\nHic steterat Priami regia celsa senis.'\n\nBIANCA:\nConstrue them.\n\nLUCENTIO:\n'Hic ibat,' as I told you before, 'Simois,' I am\nLucentio, 'hic est,' son unto Vincentio of Pisa,\n'Sigeia tellus,' disguised thus to get your love;\n'Hic steterat,' and that Lucentio that comes\na-wooing, 'Priami,' is my man Tranio, 'regia,'\nbearing my port, 'celsa senis,' that we might\nbeguile the old pantaloon.\n\nHORTENSIO:\nMadam, my instrument's in tune.\n\nBIANCA:\nLet's hear. O fie! the treble jars.\n\nLUCENTIO:\nSpit in the hole, man, and tune again.\n\nBIANCA:\nNow let me see if I can construe it: 'Hic ibat\nSimois,' I know you not, 'hic est Sigeia tellus,' I\ntrust you not; 'Hic steterat Priami,' take heed\nhe hear us not, 'regia,' presume not, 'celsa senis,'\ndespair not.\n\nHORTENSIO:\nMadam, 'tis now in tune.\n\nLUCENTIO:\nAll but the base.\n\nHORTENSIO:\nThe base is right; 'tis the base knave that jars.\nHow fiery and forward our pedant is!\nNow, for my life, the knave doth court my love:\nPedascule, I'll watch you better yet.\n\nBIANCA:\nIn time I may believe, yet I mistrust.\n\nLUCENTIO:\nMistrust it not: for, sure, AEacides\nWas Ajax, call'd so from his grandfather.\n\nBIANCA:\nI must believe my master; else, I promise you,\nI should be arguing still upon that doubt:\nBut let it rest. Now, Licio, to you:\nGood masters, take it not unkindly, pray,\nThat I have been thus pleasant with you both.\n\nHORTENSIO:\nYou may go walk, and give me leave a while:\nMy lessons make no music in three parts.\n\nLUCENTIO:\nAre you so formal, sir? well, I must wait,\nAnd watch withal; for, but I be deceived,\nOur fine musician groweth amorous.\n\nHORTENSIO:\nMadam, before you touch the instrument,\nTo learn the order of my fingering,\nI must begin with rudiments of art;\nTo teach you gamut in a briefer sort,\nMore pleasant, pithy and effectual,\nThan hath been taught by any of my trade:\nAnd there it is in writing, fairly drawn.\n\nBIANCA:\nWhy, I am past my gamut long ago.\n\nHORTENSIO:\nYet read the gamut of Hortensio.\n\nBIANCA:\n\nServant:\nMistress, your father prays you leave your books\nAnd help to dress your sister's chamber up:\nYou know to-morrow is the wedding-day.\n\nBIANCA:\nFarewell, sweet masters both; I must be gone.\n\nLUCENTIO:\nFaith, mistress, then I have no cause to stay.\n\nHORTENSIO:\nBut I have cause to pry into this pedant:\nMethinks he looks as though he were in love:\nYet if thy thoughts, Bianca, be so humble\nTo cast thy wandering eyes on every stale,\nSeize thee that list: if once I find thee ranging,\nHortensio will be quit with thee by changing.\n\nBAPTISTA:\n\nKATHARINA:\nNo shame but mine: I must, forsooth, be forced\nTo give my hand opposed against my heart\nUnto a mad-brain rudesby full of spleen;\nWho woo'd in haste and means to wed at leisure.\nI told you, I, he was a frantic fool,\nHiding his bitter jests in blunt behavior:\nAnd, to be noted for a merry man,\nHe'll woo a thousand, 'point the day of marriage,\nMake feasts, invite friends, and proclaim the banns;\nYet never means to wed where he hath woo'd.\nNow must the world point at poor Katharina,\nAnd say, 'Lo, there is mad Petruchio's wife,\nIf it would please him come and marry her!'\n\nTRANIO:\nPatience, good Katharina, and Baptista too.\nUpon my life, Petruchio means but well,\nWhatever fortune stays him from his word:\nThough he be blunt, I know him passing wise;\nThough he be merry, yet withal he's honest.\n\nKATHARINA:\nWould Katharina had never seen him though!\n\nBAPTISTA:\nGo, girl; I cannot blame thee now to weep;\nFor such an injury would vex a very saint,\nMuch more a shrew of thy impatient humour.\n\nBIONDELLO:\nMaster, master! news, old news, and such news as\nyou never heard of!\n\nBAPTISTA:\nIs it new and old too? how may that be?\n\nBIONDELLO:\nWhy, is it not news, to hear of Petruchio's coming?\n\nBAPTISTA:\nIs he come?\n\nBIONDELLO:\nWhy, no, sir.\n\nBAPTISTA:\nWhat then?\n\nBIONDELLO:\nHe is coming.\n\nBAPTISTA:\nWhen will he be here?\n\nBIONDELLO:\nWhen he stands where I am and sees you there.\n\nTRANIO:\nBut say, what to thine old news?\n\nBIONDELLO:\nWhy, Petruchio is coming in a new hat and an old\njerkin, a pair of old breeches thrice turned, a pair\nof boots that have been candle-cases, one buckled,\nanother laced, an old rusty sword ta'en out of the\ntown-armory, with a broken hilt, and chapeless;\nwith two broken points: his horse hipped with an\nold mothy saddle and stirrups of no kindred;\nbesides, possessed with the glanders and like to mose\nin the chine; troubled with the lampass, infected\nwith the fashions, full of wingdalls, sped with\nspavins, rayed with yellows, past cure of the fives,\nstark spoiled with the staggers, begnawn with the\nbots, swayed in the back and shoulder-shotten;\nnear-legged before and with, a half-chequed bit\nand a head-stall of sheeps leather which, being\nrestrained to keep him from stumbling, hath been\noften burst and now repaired with knots; one girth\nsix time pieced and a woman's crupper of velure,\nwhich hath two letters for her name fairly set down\nin studs, and here and there pieced with packthread.\n\nBAPTISTA:\nWho comes with him?\n\nBIONDELLO:\nO, sir, his lackey, for all the world caparisoned\nlike the horse; with a linen stock on one leg and a\nkersey boot-hose on the other, gartered with a red\nand blue list; an old hat and 'the humour of forty\nfancies' pricked in't for a feather: a monster, a\nvery monster in apparel, and not like a Christian\nfootboy or a gentleman's lackey.\n\nTRANIO:\n'Tis some odd humour pricks him to this fashion;\nYet oftentimes he goes but mean-apparell'd.\n\nBAPTISTA:\nI am glad he's come, howsoe'er he comes.\n\nBIONDELLO:\nWhy, sir, he comes not.\n\nBAPTISTA:\nDidst thou not say he comes?\n\nBIONDELLO:\nWho? that Petruchio came?\n\nBAPTISTA:\nAy, that Petruchio came.\n\nBIONDELLO:\nNo, sir, I say his horse comes, with him on his back.\n\nBAPTISTA:\nWhy, that's all one.\n\nBIONDELLO:\nNay, by Saint Jamy,\nI hold you a penny,\nA horse and a man\nIs more than one,\nAnd yet not many.\n\nPETRUCHIO:\nCome, where be these gallants? who's at home?\n\nBAPTISTA:\nYou are welcome, sir.\n\nPETRUCHIO:\nAnd yet I come not well.\n\nBAPTISTA:\nAnd yet you halt not.\n\nTRANIO:\nNot so well apparell'd\nAs I wish you were.\n\nPETRUCHIO:\nWere it better, I should rush in thus.\nBut where is Kate? where is my lovely bride?\nHow does my father? Gentles, methinks you frown:\nAnd wherefore gaze this goodly company,\nAs if they saw some wondrous monument,\nSome comet or unusual prodigy?\n\nBAPTISTA:\nWhy, sir, you know this is your wedding-day:\nFirst were we sad, fearing you would not come;\nNow sadder, that you come so unprovided.\nFie, doff this habit, shame to your estate,\nAn eye-sore to our solemn festival!\n\nTRANIO:\nAnd tells us, what occasion of import\nHath all so long detain'd you from your wife,\nAnd sent you hither so unlike yourself?\n\nPETRUCHIO:\nTedious it were to tell, and harsh to hear:\nSufficeth I am come to keep my word,\nThough in some part enforced to digress;\nWhich, at more leisure, I will so excuse\nAs you shall well be satisfied withal.\nBut where is Kate? I stay too long from her:\nThe morning wears, 'tis time we were at church.\n\nTRANIO:\nSee not your bride in these unreverent robes:\nGo to my chamber; Put on clothes of mine.\n\nPETRUCHIO:\nNot I, believe me: thus I'll visit her.\n\nBAPTISTA:\nBut thus, I trust, you will not marry her.\n\nPETRUCHIO:\nGood sooth, even thus; therefore ha' done with words:\nTo me she's married, not unto my clothes:\nCould I repair what she will wear in me,\nAs I can change these poor accoutrements,\n'Twere well for Kate and better for myself.\nBut what a fool am I to chat with you,\nWhen I should bid good morrow to my bride,\nAnd seal the title with a lovely kiss!\n\nTRANIO:\nHe hath some meaning in his mad attire:\nWe will persuade him, be it possible,\nTo put on better ere he go to church.\n\nBAPTISTA:\nI'll after him, and see the event of this.\n\nTRANIO:\nBut to her love concerneth us to add\nHer father's liking: which to bring to pass,\nAs I before unparted to your worship,\nI am to get a man,--whate'er he be,\nIt skills not much. we'll fit him to our turn,--\nAnd he shall be Vincentio of Pisa;\nAnd make assurance here in Padua\nOf greater sums than I have promised.\nSo shall you quietly enjoy your hope,\nAnd marry sweet Bianca with consent.\n\nLUCENTIO:\nWere it not that my fellow-school-master\nDoth watch Bianca's steps so narrowly,\n'Twere good, methinks, to steal our marriage;\nWhich once perform'd, let all the world say no,\nI'll keep mine own, despite of all the world.\n\nTRANIO:\nThat by degrees we mean to look into,\nAnd watch our vantage in this business:\nWe'll over-reach the greybeard, Gremio,\nThe narrow-prying father, Minola,\nThe quaint musician, amorous Licio;\nAll for my master's sake, Lucentio.\nSignior Gremio, came you from the church?\n\nGREMIO:\nAs willingly as e'er I came from school.\n\nTRANIO:\nAnd is the bride and bridegroom coming home?\n\nGREMIO:\nA bridegroom say you? 'tis a groom indeed,\nA grumbling groom, and that the girl shall find.\n\nTRANIO:\nCurster than she? why, 'tis impossible.\n\nGREMIO:\nWhy he's a devil, a devil, a very fiend.\n\nTRANIO:\nWhy, she's a devil, a devil, the devil's dam.\n\nGREMIO:\nTut, she's a lamb, a dove, a fool to him!\nI'll tell you, Sir Lucentio: when the priest\nShould ask, if Katharina should be his wife,\n'Ay, by gogs-wouns,' quoth he; and swore so loud,\nThat, all-amazed, the priest let fall the book;\nAnd, as he stoop'd again to take it up,\nThe mad-brain'd bridegroom took him such a cuff\nThat down fell priest and book and book and priest:\n'Now take them up,' quoth he, 'if any list.'\n\nTRANIO:\nWhat said the wench when he rose again?\n\nGREMIO:\nTrembled and shook; for why, he stamp'd and swore,\nAs if the vicar meant to cozen him.\nBut after many ceremonies done,\nHe calls for wine: 'A health!' quoth he, as if\nHe had been aboard, carousing to his mates\nAfter a storm; quaff'd off the muscadel\nAnd threw the sops all in the sexton's face;\nHaving no other reason\nBut that his beard grew thin and hungerly\nAnd seem'd to ask him sops as he was drinking.\nThis done, he took the bride about the neck\nAnd kiss'd her lips with such a clamorous smack\nThat at the parting all the church did echo:\nAnd I seeing this came thence for very shame;\nAnd after me, I know, the rout is coming.\nSuch a mad marriage never was before:\nHark, hark! I hear the minstrels play.\n\nPETRUCHIO:\nGentlemen and friends, I thank you for your pains:\nI know you think to dine with me to-day,\nAnd have prepared great store of wedding cheer;\nBut so it is, my haste doth call me hence,\nAnd therefore here I mean to take my leave.\n\nBAPTISTA:\nIs't possible you will away to-night?\n\nPETRUCHIO:\nI must away to-day, before night come:\nMake it no wonder; if you knew my business,\nYou would entreat me rather go than stay.\nAnd, honest company, I thank you all,\nThat have beheld me give away myself\nTo this most patient, sweet and virtuous wife:\nDine with my father, drink a health to me;\nFor I must hence; and farewell to you all.\n\nTRANIO:\nLet us entreat you stay till after dinner.\n\nPETRUCHIO:\nIt may not be.\n\nGREMIO:\nLet me entreat you.\n\nPETRUCHIO:\nIt cannot be.\n\nKATHARINA:\nLet me entreat you.\n\nPETRUCHIO:\nI am content.\n\nKATHARINA:\nAre you content to stay?\n\nPETRUCHIO:\nI am content you shall entreat me stay;\nBut yet not stay, entreat me how you can.\n\nKATHARINA:\nNow, if you love me, stay.\n\nPETRUCHIO:\nGrumio, my horse.\n\nGRUMIO:\nAy, sir, they be ready: the oats have eaten the horses.\n\nKATHARINA:\nNay, then,\nDo what thou canst, I will not go to-day;\nNo, nor to-morrow, not till I please myself.\nThe door is open, sir; there lies your way;\nYou may be jogging whiles your boots are green;\nFor me, I'll not be gone till I please myself:\n'Tis like you'll prove a jolly surly groom,\nThat take it on you at the first so roundly.\n\nPETRUCHIO:\nO Kate, content thee; prithee, be not angry.\n\nKATHARINA:\nI will be angry: what hast thou to do?\nFather, be quiet; he shall stay my leisure.\n\nGREMIO:\nAy, marry, sir, now it begins to work.\n\nKATARINA:\nGentlemen, forward to the bridal dinner:\nI see a woman may be made a fool,\nIf she had not a spirit to resist.\n\nPETRUCHIO:\nThey shall go forward, Kate, at thy command.\nObey the bride, you that attend on her;\nGo to the feast, revel and domineer,\nCarouse full measure to her maidenhead,\nBe mad and merry, or go hang yourselves:\nBut for my bonny Kate, she must with me.\nNay, look not big, nor stamp, nor stare, nor fret;\nI will be master of what is mine own:\nShe is my goods, my chattels; she is my house,\nMy household stuff, my field, my barn,\nMy horse, my ox, my ass, my any thing;\nAnd here she stands, touch her whoever dare;\nI'll bring mine action on the proudest he\nThat stops my way in Padua. Grumio,\nDraw forth thy weapon, we are beset with thieves;\nRescue thy mistress, if thou be a man.\nFear not, sweet wench, they shall not touch\nthee, Kate:\nI'll buckler thee against a million.\n\nBAPTISTA:\nNay, let them go, a couple of quiet ones.\n\nGREMIO:\nWent they not quickly, I should die with laughing.\n\nTRANIO:\nOf all mad matches never was the like.\n\nLUCENTIO:\nMistress, what's your opinion of your sister?\n\nBIANCA:\nThat, being mad herself, she's madly mated.\n\nGREMIO:\nI warrant him, Petruchio is Kated.\n\nBAPTISTA:\nNeighbours and friends, though bride and\nbridegroom wants\nFor to supply the places at the table,\nYou know there wants no junkets at the feast.\nLucentio, you shall supply the bridegroom's place:\nAnd let Bianca take her sister's room.\n\nTRANIO:\nShall sweet Bianca practise how to bride it?\n\nBAPTISTA:\nShe shall, Lucentio. Come, gentlemen, let's go.\n\nGRUMIO:\nFie, fie on all tired jades, on all mad masters, and\nall foul ways! Was ever man so beaten? was ever\nman so rayed? was ever man so weary? I am sent\nbefore to make a fire, and they are coming after to\nwarm them. Now, were not I a little pot and soon\nhot, my very lips might freeze to my teeth, my\ntongue to the roof of my mouth, my heart in my\nbelly, ere I should come by a fire to thaw me: but\nI, with blowing the fire, shall warm myself; for,\nconsidering the weather, a taller man than I will\ntake cold. Holla, ho! Curtis.\n\nCURTIS:\nWho is that calls so coldly?\n\nGRUMIO:\nA piece of ice: if thou doubt it, thou mayst slide\nfrom my shoulder to my heel with no greater a run\nbut my head and my neck. A fire good Curtis.\n\nCURTIS:\nIs my master and his wife coming, Grumio?\n\nGRUMIO:\nO, ay, Curtis, ay: and therefore fire, fire; cast\non no water.\n\nCURTIS:\nIs she so hot a shrew as she's reported?\n\nGRUMIO:\nShe was, good Curtis, before this frost: but, thou\nknowest, winter tames man, woman and beast; for it\nhath tamed my old master and my new mistress and\nmyself, fellow Curtis.\n\nCURTIS:\nAway, you three-inch fool! I am no beast.\n\nGRUMIO:\nAm I but three inches? why, thy horn is a foot; and\nso long am I at the least. But wilt thou make a\nfire, or shall I complain on thee to our mistress,\nwhose hand, she being now at hand, thou shalt soon\nfeel, to thy cold comfort, for being slow in thy hot office?\n\nCURTIS:\nI prithee, good Grumio, tell me, how goes the world?\n\nGRUMIO:\nA cold world, Curtis, in every office but thine; and\ntherefore fire: do thy duty, and have thy duty; for\nmy master and mistress are almost frozen to death.\n\nCURTIS:\nThere's fire ready; and therefore, good Grumio, the news.\n\nGRUMIO:\nWhy, 'Jack, boy! ho! boy!' and as much news as\nwill thaw.\n\nCURTIS:\nCome, you are so full of cony-catching!\n\nGRUMIO:\nWhy, therefore fire; for I have caught extreme cold.\nWhere's the cook? is supper ready, the house\ntrimmed, rushes strewed, cobwebs swept; the\nserving-men in their new fustian, their white\nstockings, and every officer his wedding-garment on?\nBe the jacks fair within, the jills fair without,\nthe carpets laid, and every thing in order?\n\nCURTIS:\nAll ready; and therefore, I pray thee, news.\n\nGRUMIO:\nFirst, know, my horse is tired; my master and\nmistress fallen out.\n\nCURTIS:\nHow?\n\nGRUMIO:\nOut of their saddles into the dirt; and thereby\nhangs a tale.\n\nCURTIS:\nLet's ha't, good Grumio.\n\nGRUMIO:\nLend thine ear.\n\nCURTIS:\nHere.\n\nGRUMIO:\nThere.\n\nCURTIS:\nThis is to feel a tale, not to hear a tale.\n\nGRUMIO:\nAnd therefore 'tis called a sensible tale: and this\ncuff was but to knock at your ear, and beseech\nlistening. Now I begin: Imprimis, we came down a\nfoul hill, my master riding behind my mistress,--\n\nCURTIS:\nBoth of one horse?\n\nGRUMIO:\nWhat's that to thee?\n\nCURTIS:\nWhy, a horse.\n\nGRUMIO:\nTell thou the tale: but hadst thou not crossed me,\nthou shouldst have heard how her horse fell and she\nunder her horse; thou shouldst have heard in how\nmiry a place, how she was bemoiled, how he left her\nwith the horse upon her, how he beat me because\nher horse stumbled, how she waded through the dirt\nto pluck him off me, how he swore, how she prayed,\nthat never prayed before, how I cried, how the\nhorses ran away, how her bridle was burst, how I\nlost my crupper, with many things of worthy memory,\nwhich now shall die in oblivion and thou return\nunexperienced to thy grave.\n\nCURTIS:\nBy this reckoning he is more shrew than she.\n\nGRUMIO:\nAy; and that thou and the proudest of you all shall\nfind when he comes home. But what talk I of this?\nCall forth Nathaniel, Joseph, Nicholas, Philip,\nWalter, Sugarsop and the rest: let their heads be\nsleekly combed their blue coats brushed and their\ngarters of an indifferent knit: let them curtsy\nwith their left legs and not presume to touch a hair\nof my master's horse-tail till they kiss their\nhands. Are they all ready?\n\nCURTIS:\nThey are.\n\nGRUMIO:\nCall them forth.\n\nCURTIS:\nDo you hear, ho? you must meet my master to\ncountenance my mistress.\n\nGRUMIO:\nWhy, she hath a face of her own.\n\nCURTIS:\nWho knows not that?\n\nGRUMIO:\nThou, it seems, that calls for company to\ncountenance her.\n\nCURTIS:\nI call them forth to credit her.\n\nGRUMIO:\nWhy, she comes to borrow nothing of them.\n\nNATHANIEL:\nWelcome home, Grumio!\n\nPHILIP:\nHow now, Grumio!\n\nJOSEPH:\nWhat, Grumio!\n\nNICHOLAS:\nFellow Grumio!\n\nNATHANIEL:\nHow now, old lad?\n\nGRUMIO:\nWelcome, you;--how now, you;-- what, you;--fellow,\nyou;--and thus much for greeting. Now, my spruce\ncompanions, is all ready, and all things neat?\n\nNATHANIEL:\nAll things is ready. How near is our master?\n\nGRUMIO:\nE'en at hand, alighted by this; and therefore be\nnot--Cock's passion, silence! I hear my master.\n\nPETRUCHIO:\nWhere be these knaves? What, no man at door\nTo hold my stirrup nor to take my horse!\nWhere is Nathaniel, Gregory, Philip?\n\nALL SERVING-MEN:\nHere, here, sir; here, sir.\n\nPETRUCHIO:\nHere, sir! here, sir! here, sir! here, sir!\nYou logger-headed and unpolish'd grooms!\nWhat, no attendance? no regard? no duty?\nWhere is the foolish knave I sent before?\n\nGRUMIO:\nHere, sir; as foolish as I was before.\n\nPETRUCHIO:\nYou peasant swain! you whoreson malt-horse drudge!\nDid I not bid thee meet me in the park,\nAnd bring along these rascal knaves with thee?\n\nGRUMIO:\nNathaniel's coat, sir, was not fully made,\nAnd Gabriel's pumps were all unpink'd i' the heel;\nThere was no link to colour Peter's hat,\nAnd Walter's dagger was not come from sheathing:\nThere were none fine but Adam, Ralph, and Gregory;\nThe rest were ragged, old, and beggarly;\nYet, as they are, here are they come to meet you.\n\nPETRUCHIO:\nGo, rascals, go, and fetch my supper in.\nWhere is the life that late I led--\nWhere are those--Sit down, Kate, and welcome.--\nSound, sound, sound, sound!\nWhy, when, I say? Nay, good sweet Kate, be merry.\nOff with my boots, you rogues! you villains, when?\nIt was the friar of orders grey,\nAs he forth walked on his way:--\nOut, you rogue! you pluck my foot awry:\nTake that, and mend the plucking off the other.\nBe merry, Kate. Some water, here; what, ho!\nWhere's my spaniel Troilus? Sirrah, get you hence,\nAnd bid my cousin Ferdinand come hither:\nOne, Kate, that you must kiss, and be acquainted with.\nWhere are my slippers? Shall I have some water?\nCome, Kate, and wash, and welcome heartily.\nYou whoreson villain! will you let it fall?\n\nKATHARINA:\nPatience, I pray you; 'twas a fault unwilling.\n\nPETRUCHIO:\nA whoreson beetle-headed, flap-ear'd knave!\nCome, Kate, sit down; I know you have a stomach.\nWill you give thanks, sweet Kate; or else shall I?\nWhat's this? mutton?\n\nFirst Servant:\nAy.\n\nPETRUCHIO:\nWho brought it?\n\nPETER:\nI.\n\nPETRUCHIO:\n'Tis burnt; and so is all the meat.\nWhat dogs are these! Where is the rascal cook?\nHow durst you, villains, bring it from the dresser,\nAnd serve it thus to me that love it not?\nTheretake it to you, trenchers, cups, and all;\nYou heedless joltheads and unmanner'd slaves!\nWhat, do you grumble? I'll be with you straight.\n\nKATHARINA:\nI pray you, husband, be not so disquiet:\nThe meat was well, if you were so contented.\n\nPETRUCHIO:\nI tell thee, Kate, 'twas burnt and dried away;\nAnd I expressly am forbid to touch it,\nFor it engenders choler, planteth anger;\nAnd better 'twere that both of us did fast,\nSince, of ourselves, ourselves are choleric,\nThan feed it with such over-roasted flesh.\nBe patient; to-morrow 't shall be mended,\nAnd, for this night, we'll fast for company:\nCome, I will bring thee to thy bridal chamber.\n\nNATHANIEL:\nPeter, didst ever see the like?\n\nPETER:\nHe kills her in her own humour.\n\nGRUMIO:\nWhere is he?\n\nCURTIS:\nIn her chamber, making a sermon of continency to her;\nAnd rails, and swears, and rates, that she, poor soul,\nKnows not which way to stand, to look, to speak,\nAnd sits as one new-risen from a dream.\nAway, away! for he is coming hither.\n\nPETRUCHIO:\nThus have I politicly begun my reign,\nAnd 'tis my hope to end successfully.\nMy falcon now is sharp and passing empty;\nAnd till she stoop she must not be full-gorged,\nFor then she never looks upon her lure.\nAnother way I have to man my haggard,\nTo make her come and know her keeper's call,\nThat is, to watch her, as we watch these kites\nThat bate and beat and will not be obedient.\nShe eat no meat to-day, nor none shall eat;\nLast night she slept not, nor to-night she shall not;\nAs with the meat, some undeserved fault\nI'll find about the making of the bed;\nAnd here I'll fling the pillow, there the bolster,\nThis way the coverlet, another way the sheets:\nAy, and amid this hurly I intend\nThat all is done in reverend care of her;\nAnd in conclusion she shall watch all night:\nAnd if she chance to nod I'll rail and brawl\nAnd with the clamour keep her still awake.\nThis is a way to kill a wife with kindness;\nAnd thus I'll curb her mad and headstrong humour.\nHe that knows better how to tame a shrew,\nNow let him speak: 'tis charity to show.\n\nTRANIO:\nIs't possible, friend Licio, that Mistress Bianca\nDoth fancy any other but Lucentio?\nI tell you, sir, she bears me fair in hand.\n\nHORTENSIO:\nSir, to satisfy you in what I have said,\nStand by and mark the manner of his teaching.\n\nLUCENTIO:\nNow, mistress, profit you in what you read?\n\nBIANCA:\nWhat, master, read you? first resolve me that.\n\nLUCENTIO:\nI read that I profess, the Art to Love.\n\nBIANCA:\nAnd may you prove, sir, master of your art!\n\nLUCENTIO:\nWhile you, sweet dear, prove mistress of my heart!\n\nHORTENSIO:\nQuick proceeders, marry! Now, tell me, I pray,\nYou that durst swear at your mistress Bianca\nLoved none in the world so well as Lucentio.\n\nTRANIO:\nO despiteful love! unconstant womankind!\nI tell thee, Licio, this is wonderful.\n\nHORTENSIO:\nMistake no more: I am not Licio,\nNor a musician, as I seem to be;\nBut one that scorn to live in this disguise,\nFor such a one as leaves a gentleman,\nAnd makes a god of such a cullion:\nKnow, sir, that I am call'd Hortensio.\n\nTRANIO:\nSignior Hortensio, I have often heard\nOf your entire affection to Bianca;\nAnd since mine eyes are witness of her lightness,\nI will with you, if you be so contented,\nForswear Bianca and her love for ever.\n\nHORTENSIO:\nSee, how they kiss and court! Signior Lucentio,\nHere is my hand, and here I firmly vow\nNever to woo her no more, but do forswear her,\nAs one unworthy all the former favours\nThat I have fondly flatter'd her withal.\n\nTRANIO:\nAnd here I take the unfeigned oath,\nNever to marry with her though she would entreat:\nFie on her! see, how beastly she doth court him!\n\nHORTENSIO:\nWould all the world but he had quite forsworn!\nFor me, that I may surely keep mine oath,\nI will be married to a wealthy widow,\nEre three days pass, which hath as long loved me\nAs I have loved this proud disdainful haggard.\nAnd so farewell, Signior Lucentio.\nKindness in women, not their beauteous looks,\nShall win my love: and so I take my leave,\nIn resolution as I swore before.\n\nTRANIO:\nMistress Bianca, bless you with such grace\nAs 'longeth to a lover's blessed case!\nNay, I have ta'en you napping, gentle love,\nAnd have forsworn you with Hortensio.\n\nBIANCA:\nTranio, you jest: but have you both forsworn me?\n\nTRANIO:\nMistress, we have.\n\nLUCENTIO:\nThen we are rid of Licio.\n\nTRANIO:\nI' faith, he'll have a lusty widow now,\nThat shall be wood and wedded in a day.\n\nBIANCA:\nGod give him joy!\n\nTRANIO:\nAy, and he'll tame her.\n\nBIANCA:\nHe says so, Tranio.\n\nTRANIO:\nFaith, he is gone unto the taming-school.\n\nBIANCA:\nThe taming-school! what, is there such a place?\n\nTRANIO:\nAy, mistress, and Petruchio is the master;\nThat teacheth tricks eleven and twenty long,\nTo tame a shrew and charm her chattering tongue.\n\nBIONDELLO:\nO master, master, I have watch'd so long\nThat I am dog-weary: but at last I spied\nAn ancient angel coming down the hill,\nWill serve the turn.\n\nTRANIO:\nWhat is he, Biondello?\n\nBIONDELLO:\nMaster, a mercatante, or a pedant,\nI know not what; but format in apparel,\nIn gait and countenance surely like a father.\n\nLUCENTIO:\nAnd what of him, Tranio?\n\nTRANIO:\nIf he be credulous and trust my tale,\nI'll make him glad to seem Vincentio,\nAnd give assurance to Baptista Minola,\nAs if he were the right Vincentio\nTake in your love, and then let me alone.\n\nPedant:\nGod save you, sir!\n\nTRANIO:\nAnd you, sir! you are welcome.\nTravel you far on, or are you at the farthest?\n\nPedant:\nSir, at the farthest for a week or two:\nBut then up farther, and as for as Rome;\nAnd so to Tripoli, if God lend me life.\n\nTRANIO:\nWhat countryman, I pray?\n\nPedant:\nOf Mantua.\n\nTRANIO:\nOf Mantua, sir? marry, God forbid!\nAnd come to Padua, careless of your life?\n\nPedant:\nMy life, sir! how, I pray? for that goes hard.\n\nTRANIO:\n'Tis death for any one in Mantua\nTo come to Padua. Know you not the cause?\nYour ships are stay'd at Venice, and the duke,\nFor private quarrel 'twixt your duke and him,\nHath publish'd and proclaim'd it openly:\n'Tis, marvel, but that you are but newly come,\nYou might have heard it else proclaim'd about.\n\nPedant:\nAlas! sir, it is worse for me than so;\nFor I have bills for money by exchange\nFrom Florence and must here deliver them.\n\nTRANIO:\nWell, sir, to do you courtesy,\nThis will I do, and this I will advise you:\nFirst, tell me, have you ever been at Pisa?\n\nPedant:\nAy, sir, in Pisa have I often been,\nPisa renowned for grave citizens.\n\nTRANIO:\nAmong them know you one Vincentio?\n\nPedant:\nI know him not, but I have heard of him;\nA merchant of incomparable wealth.\n\nTRANIO:\nHe is my father, sir; and, sooth to say,\nIn countenance somewhat doth resemble you.\n\nBIONDELLO:\n\nTRANIO:\nTo save your life in this extremity,\nThis favour will I do you for his sake;\nAnd think it not the worst of an your fortunes\nThat you are like to Sir Vincentio.\nHis name and credit shall you undertake,\nAnd in my house you shall be friendly lodged:\nLook that you take upon you as you should;\nYou understand me, sir: so shall you stay\nTill you have done your business in the city:\nIf this be courtesy, sir, accept of it.\n\nPedant:\nO sir, I do; and will repute you ever\nThe patron of my life and liberty.\n\nTRANIO:\nThen go with me to make the matter good.\nThis, by the way, I let you understand;\nmy father is here look'd for every day,\nTo pass assurance of a dower in marriage\n'Twixt me and one Baptista's daughter here:\nIn all these circumstances I'll instruct you:\nGo with me to clothe you as becomes you.\n\nGRUMIO:\nNo, no, forsooth; I dare not for my life.\n\nKATHARINA:\nThe more my wrong, the more his spite appears:\nWhat, did he marry me to famish me?\nBeggars, that come unto my father's door,\nUpon entreaty have a present aims;\nIf not, elsewhere they meet with charity:\nBut I, who never knew how to entreat,\nNor never needed that I should entreat,\nAm starved for meat, giddy for lack of sleep,\nWith oath kept waking and with brawling fed:\nAnd that which spites me more than all these wants,\nHe does it under name of perfect love;\nAs who should say, if I should sleep or eat,\n'Twere deadly sickness or else present death.\nI prithee go and get me some repast;\nI care not what, so it be wholesome food.\n\nGRUMIO:\nWhat say you to a neat's foot?\n\nKATHARINA:\n'Tis passing good: I prithee let me have it.\n\nGRUMIO:\nI fear it is too choleric a meat.\nHow say you to a fat tripe finely broil'd?\n\nKATHARINA:\nI like it well: good Grumio, fetch it me.\n\nGRUMIO:\nI cannot tell; I fear 'tis choleric.\nWhat say you to a piece of beef and mustard?\n\nKATHARINA:\nA dish that I do love to feed upon.\n\nGRUMIO:\nAy, but the mustard is too hot a little.\n\nKATHARINA:\nWhy then, the beef, and let the mustard rest.\n\nGRUMIO:\nNay then, I will not: you shall have the mustard,\nOr else you get no beef of Grumio.\n\nKATHARINA:\nThen both, or one, or any thing thou wilt.\n\nGRUMIO:\nWhy then, the mustard without the beef.\n\nKATHARINA:\nGo, get thee gone, thou false deluding slave,\nThat feed'st me with the very name of meat:\nSorrow on thee and all the pack of you,\nThat triumph thus upon my misery!\nGo, get thee gone, I say.\n\nPETRUCHIO:\nHow fares my Kate? What, sweeting, all amort?\n\nHORTENSIO:\nMistress, what cheer?\n\nKATHARINA:\nFaith, as cold as can be.\n\nPETRUCHIO:\nPluck up thy spirits; look cheerfully upon me.\nHere love; thou see'st how diligent I am\nTo dress thy meat myself and bring it thee:\nI am sure, sweet Kate, this kindness merits thanks.\nWhat, not a word? Nay, then thou lovest it not;\nAnd all my pains is sorted to no proof.\nHere, take away this dish.\n\nKATHARINA:\nI pray you, let it stand.\n\nPETRUCHIO:\nThe poorest service is repaid with thanks;\nAnd so shall mine, before you touch the meat.\n\nKATHARINA:\nI thank you, sir.\n\nHORTENSIO:\nSignior Petruchio, fie! you are to blame.\nCome, mistress Kate, I'll bear you company.\n\nPETRUCHIO:\n\nHaberdasher:\nHere is the cap your worship did bespeak.\n\nPETRUCHIO:\nWhy, this was moulded on a porringer;\nA velvet dish: fie, fie! 'tis lewd and filthy:\nWhy, 'tis a cockle or a walnut-shell,\nA knack, a toy, a trick, a baby's cap:\nAway with it! come, let me have a bigger.\n\nKATHARINA:\nI'll have no bigger: this doth fit the time,\nAnd gentlewomen wear such caps as these\n\nPETRUCHIO:\nWhen you are gentle, you shall have one too,\nAnd not till then.\n\nHORTENSIO:\n\nKATHARINA:\nWhy, sir, I trust I may have leave to speak;\nAnd speak I will; I am no child, no babe:\nYour betters have endured me say my mind,\nAnd if you cannot, best you stop your ears.\nMy tongue will tell the anger of my heart,\nOr else my heart concealing it will break,\nAnd rather than it shall, I will be free\nEven to the uttermost, as I please, in words.\n\nPETRUCHIO:\nWhy, thou say'st true; it is a paltry cap,\nA custard-coffin, a bauble, a silken pie:\nI love thee well, in that thou likest it not.\n\nKATHARINA:\nLove me or love me not, I like the cap;\nAnd it I will have, or I will have none.\n\nPETRUCHIO:\nThy gown? why, ay: come, tailor, let us see't.\nO mercy, God! what masquing stuff is here?\nWhat's this? a sleeve? 'tis like a demi-cannon:\nWhat, up and down, carved like an apple-tart?\nHere's snip and nip and cut and slish and slash,\nLike to a censer in a barber's shop:\nWhy, what, i' devil's name, tailor, call'st thou this?\n\nHORTENSIO:\n\nTailor:\nYou bid me make it orderly and well,\nAccording to the fashion and the time.\n\nPETRUCHIO:\nMarry, and did; but if you be remember'd,\nI did not bid you mar it to the time.\nGo, hop me over every kennel home,\nFor you shall hop without my custom, sir:\nI'll none of it: hence! make your best of it.\n\nKATHARINA:\nI never saw a better-fashion'd gown,\nMore quaint, more pleasing, nor more commendable:\nBelike you mean to make a puppet of me.\n\nPETRUCHIO:\nWhy, true; he means to make a puppet of thee.\n\nTailor:\nShe says your worship means to make\na puppet of her.\n\nPETRUCHIO:\nO monstrous arrogance! Thou liest, thou thread,\nthou thimble,\nThou yard, three-quarters, half-yard, quarter, nail!\nThou flea, thou nit, thou winter-cricket thou!\nBraved in mine own house with a skein of thread?\nAway, thou rag, thou quantity, thou remnant;\nOr I shall so be-mete thee with thy yard\nAs thou shalt think on prating whilst thou livest!\nI tell thee, I, that thou hast marr'd her gown.\n\nTailor:\nYour worship is deceived; the gown is made\nJust as my master had direction:\nGrumio gave order how it should be done.\n\nGRUMIO:\nI gave him no order; I gave him the stuff.\n\nTailor:\nBut how did you desire it should be made?\n\nGRUMIO:\nMarry, sir, with needle and thread.\n\nTailor:\nBut did you not request to have it cut?\n\nGRUMIO:\nThou hast faced many things.\n\nTailor:\nI have.\n\nGRUMIO:\nFace not me: thou hast braved many men; brave not\nme; I will neither be faced nor braved. I say unto\nthee, I bid thy master cut out the gown; but I did\nnot bid him cut it to pieces: ergo, thou liest.\n\nTailor:\nWhy, here is the note of the fashion to testify\n\nPETRUCHIO:\nRead it.\n\nGRUMIO:\nThe note lies in's throat, if he say I said so.\n\nTailor:\n\nGRUMIO:\nMaster, if ever I said loose-bodied gown, sew me in\nthe skirts of it, and beat me to death with a bottom\nof brown thread: I said a gown.\n\nPETRUCHIO:\nProceed.\n\nTailor:\n\nGRUMIO:\nI confess the cape.\n\nTailor:\n\nGRUMIO:\nI confess two sleeves.\n\nTailor:\n\nPETRUCHIO:\nAy, there's the villany.\n\nGRUMIO:\nError i' the bill, sir; error i' the bill.\nI commanded the sleeves should be cut out and\nsewed up again; and that I'll prove upon thee,\nthough thy little finger be armed in a thimble.\n\nTailor:\nThis is true that I say: an I had thee\nin place where, thou shouldst know it.\n\nGRUMIO:\nI am for thee straight: take thou the\nbill, give me thy mete-yard, and spare not me.\n\nHORTENSIO:\nGod-a-mercy, Grumio! then he shall have no odds.\n\nPETRUCHIO:\nWell, sir, in brief, the gown is not for me.\n\nGRUMIO:\nYou are i' the right, sir: 'tis for my mistress.\n\nPETRUCHIO:\nGo, take it up unto thy master's use.\n\nGRUMIO:\nVillain, not for thy life: take up my mistress'\ngown for thy master's use!\n\nPETRUCHIO:\nWhy, sir, what's your conceit in that?\n\nGRUMIO:\nO, sir, the conceit is deeper than you think for:\nTake up my mistress' gown to his master's use!\nO, fie, fie, fie!\n\nPETRUCHIO:\n\nHORTENSIO:\nTailor, I'll pay thee for thy gown tomorrow:\nTake no unkindness of his hasty words:\nAway! I say; commend me to thy master.\n\nPETRUCHIO:\nWell, come, my Kate; we will unto your father's\nEven in these honest mean habiliments:\nOur purses shall be proud, our garments poor;\nFor 'tis the mind that makes the body rich;\nAnd as the sun breaks through the darkest clouds,\nSo honour peereth in the meanest habit.\nWhat is the jay more precious than the lark,\nBecause his fathers are more beautiful?\nOr is the adder better than the eel,\nBecause his painted skin contents the eye?\nO, no, good Kate; neither art thou the worse\nFor this poor furniture and mean array.\nif thou account'st it shame. lay it on me;\nAnd therefore frolic: we will hence forthwith,\nTo feast and sport us at thy father's house.\nGo, call my men, and let us straight to him;\nAnd bring our horses unto Long-lane end;\nThere will we mount, and thither walk on foot\nLet's see; I think 'tis now some seven o'clock,\nAnd well we may come there by dinner-time.\n\nKATHARINA:\nI dare assure you, sir, 'tis almost two;\nAnd 'twill be supper-time ere you come there.\n\nPETRUCHIO:\nIt shall be seven ere I go to horse:\nLook, what I speak, or do, or think to do,\nYou are still crossing it. Sirs, let't alone:\nI will not go to-day; and ere I do,\nIt shall be what o'clock I say it is.\n\nHORTENSIO:\n\nTRANIO:\nSir, this is the house: please it you that I call?\n\nPedant:\nAy, what else? and but I be deceived\nSignior Baptista may remember me,\nNear twenty years ago, in Genoa,\nWhere we were lodgers at the Pegasus.\n\nTRANIO:\n'Tis well; and hold your own, in any case,\nWith such austerity as 'longeth to a father.\n\nPedant:\nI warrant you.\nBut, sir, here comes your boy;\n'Twere good he were school'd.\n\nTRANIO:\nFear you not him. Sirrah Biondello,\nNow do your duty throughly, I advise you:\nImagine 'twere the right Vincentio.\n\nBIONDELLO:\nTut, fear not me.\n\nTRANIO:\nBut hast thou done thy errand to Baptista?\n\nBIONDELLO:\nI told him that your father was at Venice,\nAnd that you look'd for him this day in Padua.\n\nTRANIO:\nThou'rt a tall fellow: hold thee that to drink.\nHere comes Baptista: set your countenance, sir.\nSignior Baptista, you are happily met.\nSir, this is the gentleman I told you of:\nI pray you stand good father to me now,\nGive me Bianca for my patrimony.\n\nPedant:\nSoft son!\nSir, by your leave: having come to Padua\nTo gather in some debts, my son Lucentio\nMade me acquainted with a weighty cause\nOf love between your daughter and himself:\nAnd, for the good report I hear of you\nAnd for the love he beareth to your daughter\nAnd she to him, to stay him not too long,\nI am content, in a good father's care,\nTo have him match'd; and if you please to like\nNo worse than I, upon some agreement\nMe shall you find ready and willing\nWith one consent to have her so bestow'd;\nFor curious I cannot be with you,\nSignior Baptista, of whom I hear so well.\n\nBAPTISTA:\nSir, pardon me in what I have to say:\nYour plainness and your shortness please me well.\nRight true it is, your son Lucentio here\nDoth love my daughter and she loveth him,\nOr both dissemble deeply their affections:\nAnd therefore, if you say no more than this,\nThat like a father you will deal with him\nAnd pass my daughter a sufficient dower,\nThe match is made, and all is done:\nYour son shall have my daughter with consent.\n\nTRANIO:\nI thank you, sir. Where then do you know best\nWe be affied and such assurance ta'en\nAs shall with either part's agreement stand?\n\nBAPTISTA:\nNot in my house, Lucentio; for, you know,\nPitchers have ears, and I have many servants:\nBesides, old Gremio is hearkening still;\nAnd happily we might be interrupted.\n\nTRANIO:\nThen at my lodging, an it like you:\nThere doth my father lie; and there, this night,\nWe'll pass the business privately and well.\nSend for your daughter by your servant here:\nMy boy shall fetch the scrivener presently.\nThe worst is this, that, at so slender warning,\nYou are like to have a thin and slender pittance.\n\nBAPTISTA:\nIt likes me well. Biondello, hie you home,\nAnd bid Bianca make her ready straight;\nAnd, if you will, tell what hath happened,\nLucentio's father is arrived in Padua,\nAnd how she's like to be Lucentio's wife.\n\nBIONDELLO:\nI pray the gods she may with all my heart!\n\nTRANIO:\nDally not with the gods, but get thee gone.\nSignior Baptista, shall I lead the way?\nWelcome! one mess is like to be your cheer:\nCome, sir; we will better it in Pisa.\n\nBAPTISTA:\nI follow you.\n\nBIONDELLO:\nCambio!\n\nLUCENTIO:\nWhat sayest thou, Biondello?\n\nBIONDELLO:\nYou saw my master wink and laugh upon you?\n\nLUCENTIO:\nBiondello, what of that?\n\nBIONDELLO:\nFaith, nothing; but has left me here behind, to\nexpound the meaning or moral of his signs and tokens.\n\nLUCENTIO:\nI pray thee, moralize them.\n\nBIONDELLO:\nThen thus. Baptista is safe, talking with the\ndeceiving father of a deceitful son.\n\nLUCENTIO:\nAnd what of him?\n\nBIONDELLO:\nHis daughter is to be brought by you to the supper.\n\nLUCENTIO:\nAnd then?\n\nBIONDELLO:\nThe old priest of Saint Luke's church is at your\ncommand at all hours.\n\nLUCENTIO:\nAnd what of all this?\n\nBIONDELLO:\nI cannot tell; expect they are busied about a\ncounterfeit assurance: take you assurance of her,\n'cum privilegio ad imprimendum solum:' to the\nchurch; take the priest, clerk, and some sufficient\nhonest witnesses: If this be not that you look for,\nI have no more to say, But bid Bianca farewell for\never and a day.\n\nLUCENTIO:\nHearest thou, Biondello?\n\nBIONDELLO:\nI cannot tarry: I knew a wench married in an\nafternoon as she went to the garden for parsley to\nstuff a rabbit; and so may you, sir: and so, adieu,\nsir. My master hath appointed me to go to Saint\nLuke's, to bid the priest be ready to come against\nyou come with your appendix.\n\nLUCENTIO:\nI may, and will, if she be so contented:\nShe will be pleased; then wherefore should I doubt?\nHap what hap may, I'll roundly go about her:\nIt shall go hard if Cambio go without her.\n\nPETRUCHIO:\nCome on, i' God's name; once more toward our father's.\nGood Lord, how bright and goodly shines the moon!\n\nKATHARINA:\nThe moon! the sun: it is not moonlight now.\n\nPETRUCHIO:\nI say it is the moon that shines so bright.\n\nKATHARINA:\nI know it is the sun that shines so bright.\n\nPETRUCHIO:\nNow, by my mother's son, and that's myself,\nIt shall be moon, or star, or what I list,\nOr ere I journey to your father's house.\nGo on, and fetch our horses back again.\nEvermore cross'd and cross'd; nothing but cross'd!\n\nHORTENSIO:\nSay as he says, or we shall never go.\n\nKATHARINA:\nForward, I pray, since we have come so far,\nAnd be it moon, or sun, or what you please:\nAn if you please to call it a rush-candle,\nHenceforth I vow it shall be so for me.\n\nPETRUCHIO:\nI say it is the moon.\n\nKATHARINA:\nI know it is the moon.\n\nPETRUCHIO:\nNay, then you lie: it is the blessed sun.\n\nKATHARINA:\nThen, God be bless'd, it is the blessed sun:\nBut sun it is not, when you say it is not;\nAnd the moon changes even as your mind.\nWhat you will have it named, even that it is;\nAnd so it shall be so for Katharina.\n\nHORTENSIO:\nPetruchio, go thy ways; the field is won.\n\nPETRUCHIO:\nWell, forward, forward! thus the bowl should run,\nAnd not unluckily against the bias.\nBut, soft! company is coming here.\nGood morrow, gentle mistress: where away?\nTell me, sweet Kate, and tell me truly too,\nHast thou beheld a fresher gentlewoman?\nSuch war of white and red within her cheeks!\nWhat stars do spangle heaven with such beauty,\nAs those two eyes become that heavenly face?\nFair lovely maid, once more good day to thee.\nSweet Kate, embrace her for her beauty's sake.\n\nHORTENSIO:\nA' will make the man mad, to make a woman of him.\n\nKATHARINA:\nYoung budding virgin, fair and fresh and sweet,\nWhither away, or where is thy abode?\nHappy the parents of so fair a child;\nHappier the man, whom favourable stars\nAllot thee for his lovely bed-fellow!\n\nPETRUCHIO:\nWhy, how now, Kate! I hope thou art not mad:\nThis is a man, old, wrinkled, faded, wither'd,\nAnd not a maiden, as thou say'st he is.\n\nKATHARINA:\nPardon, old father, my mistaking eyes,\nThat have been so bedazzled with the sun\nThat everything I look on seemeth green:\nNow I perceive thou art a reverend father;\nPardon, I pray thee, for my mad mistaking.\n\nPETRUCHIO:\nDo, good old grandsire; and withal make known\nWhich way thou travellest: if along with us,\nWe shall be joyful of thy company.\n\nVINCENTIO:\nFair sir, and you my merry mistress,\nThat with your strange encounter much amazed me,\nMy name is call'd Vincentio; my dwelling Pisa;\nAnd bound I am to Padua; there to visit\nA son of mine, which long I have not seen.\n\nPETRUCHIO:\nWhat is his name?\n\nVINCENTIO:\nLucentio, gentle sir.\n\nPETRUCHIO:\nHappily we met; the happier for thy son.\nAnd now by law, as well as reverend age,\nI may entitle thee my loving father:\nThe sister to my wife, this gentlewoman,\nThy son by this hath married. Wonder not,\nNor be grieved: she is of good esteem,\nHer dowery wealthy, and of worthy birth;\nBeside, so qualified as may beseem\nThe spouse of any noble gentleman.\nLet me embrace with old Vincentio,\nAnd wander we to see thy honest son,\nWho will of thy arrival be full joyous.\n\nVINCENTIO:\nBut is it true? or else is it your pleasure,\nLike pleasant travellers, to break a jest\nUpon the company you overtake?\n\nHORTENSIO:\nI do assure thee, father, so it is.\n\nPETRUCHIO:\nCome, go along, and see the truth hereof;\nFor our first merriment hath made thee jealous.\n\nHORTENSIO:\nWell, Petruchio, this has put me in heart.\nHave to my widow! and if she be froward,\nThen hast thou taught Hortensio to be untoward.\n\nBIONDELLO:\nSoftly and swiftly, sir; for the priest is ready.\n\nLUCENTIO:\nI fly, Biondello: but they may chance to need thee\nat home; therefore leave us.\n\nBIONDELLO:\nNay, faith, I'll see the church o' your back; and\nthen come back to my master's as soon as I can.\n\nGREMIO:\nI marvel Cambio comes not all this while.\n\nPETRUCHIO:\nSir, here's the door, this is Lucentio's house:\nMy father's bears more toward the market-place;\nThither must I, and here I leave you, sir.\n\nVINCENTIO:\nYou shall not choose but drink before you go:\nI think I shall command your welcome here,\nAnd, by all likelihood, some cheer is toward.\n\nGREMIO:\nThey're busy within; you were best knock louder.\n\nPedant:\nWhat's he that knocks as he would beat down the gate?\n\nVINCENTIO:\nIs Signior Lucentio within, sir?\n\nPedant:\nHe's within, sir, but not to be spoken withal.\n\nVINCENTIO:\nWhat if a man bring him a hundred pound or two, to\nmake merry withal?\n\nPedant:\nKeep your hundred pounds to yourself: he shall\nneed none, so long as I live.\n\nPETRUCHIO:\nNay, I told you your son was well beloved in Padua.\nDo you hear, sir? To leave frivolous circumstances,\nI pray you, tell Signior Lucentio that his father is\ncome from Pisa, and is here at the door to speak with him.\n\nPedant:\nThou liest: his father is come from Padua and here\nlooking out at the window.\n\nVINCENTIO:\nArt thou his father?\n\nPedant:\nAy, sir; so his mother says, if I may believe her.\n\nPETRUCHIO:\n\nPedant:\nLay hands on the villain: I believe a' means to\ncozen somebody in this city under my countenance.\n\nBIONDELLO:\nI have seen them in the church together: God send\n'em good shipping! But who is here? mine old\nmaster Vincentio! now we are undone and brought to nothing.\n\nVINCENTIO:\n\nBIONDELLO:\nHope I may choose, sir.\n\nVINCENTIO:\nCome hither, you rogue. What, have you forgot me?\n\nBIONDELLO:\nForgot you! no, sir: I could not forget you, for I\nnever saw you before in all my life.\n\nVINCENTIO:\nWhat, you notorious villain, didst thou never see\nthy master's father, Vincentio?\n\nBIONDELLO:\nWhat, my old worshipful old master? yes, marry, sir:\nsee where he looks out of the window.\n\nVINCENTIO:\nIs't so, indeed.\n\nBIONDELLO:\nHelp, help, help! here's a madman will murder me.\n\nPedant:\nHelp, son! help, Signior Baptista!\n\nPETRUCHIO:\nPrithee, Kate, let's stand aside and see the end of\nthis controversy.\n\nTRANIO:\nSir, what are you that offer to beat my servant?\n\nVINCENTIO:\nWhat am I, sir! nay, what are you, sir? O immortal\ngods! O fine villain! A silken doublet! a velvet\nhose! a scarlet cloak! and a copatain hat! O, I\nam undone! I am undone! while I play the good\nhusband at home, my son and my servant spend all at\nthe university.\n\nTRANIO:\nHow now! what's the matter?\n\nBAPTISTA:\nWhat, is the man lunatic?\n\nTRANIO:\nSir, you seem a sober ancient gentleman by your\nhabit, but your words show you a madman. Why, sir,\nwhat 'cerns it you if I wear pearl and gold? I\nthank my good father, I am able to maintain it.\n\nVINCENTIO:\nThy father! O villain! he is a sailmaker in Bergamo.\n\nBAPTISTA:\nYou mistake, sir, you mistake, sir. Pray, what do\nyou think is his name?\n\nVINCENTIO:\nHis name! as if I knew not his name: I have brought\nhim up ever since he was three years old, and his\nname is Tranio.\n\nPedant:\nAway, away, mad ass! his name is Lucentio and he is\nmine only son, and heir to the lands of me, Signior Vincentio.\n\nVINCENTIO:\nLucentio! O, he hath murdered his master! Lay hold\non him, I charge you, in the duke's name. O, my\nson, my son! Tell me, thou villain, where is my son Lucentio?\n\nTRANIO:\nCall forth an officer.\nCarry this mad knave to the gaol. Father Baptista,\nI charge you see that he be forthcoming.\n\nVINCENTIO:\nCarry me to the gaol!\n\nGREMIO:\nStay, officer: he shall not go to prison.\n\nBAPTISTA:\nTalk not, Signior Gremio: I say he shall go to prison.\n\nGREMIO:\nTake heed, Signior Baptista, lest you be\ncony-catched in this business: I dare swear this\nis the right Vincentio.\n\nPedant:\nSwear, if thou darest.\n\nGREMIO:\nNay, I dare not swear it.\n\nTRANIO:\nThen thou wert best say that I am not Lucentio.\n\nGREMIO:\nYes, I know thee to be Signior Lucentio.\n\nBAPTISTA:\nAway with the dotard! to the gaol with him!\n\nVINCENTIO:\nThus strangers may be hailed and abused: O\nmonstrous villain!\n\nBIONDELLO:\nO! we are spoiled and--yonder he is: deny him,\nforswear him, or else we are all undone.\n\nLUCENTIO:\n\nVINCENTIO:\nLives my sweet son?\n\nBIANCA:\nPardon, dear father.\n\nBAPTISTA:\nHow hast thou offended?\nWhere is Lucentio?\n\nLUCENTIO:\nHere's Lucentio,\nRight son to the right Vincentio;\nThat have by marriage made thy daughter mine,\nWhile counterfeit supposes bleared thine eyne.\n\nGREMIO:\nHere's packing, with a witness to deceive us all!\n\nVINCENTIO:\nWhere is that damned villain Tranio,\nThat faced and braved me in this matter so?\n\nBAPTISTA:\nWhy, tell me, is not this my Cambio?\n\nBIANCA:\nCambio is changed into Lucentio.\n\nLUCENTIO:\nLove wrought these miracles. Bianca's love\nMade me exchange my state with Tranio,\nWhile he did bear my countenance in the town;\nAnd happily I have arrived at the last\nUnto the wished haven of my bliss.\nWhat Tranio did, myself enforced him to;\nThen pardon him, sweet father, for my sake.\n\nVINCENTIO:\nI'll slit the villain's nose, that would have sent\nme to the gaol.\n\nBAPTISTA:\nBut do you hear, sir? have you married my daughter\nwithout asking my good will?\n\nVINCENTIO:\nFear not, Baptista; we will content you, go to: but\nI will in, to be revenged for this villany.\n\nBAPTISTA:\nAnd I, to sound the depth of this knavery.\n\nLUCENTIO:\nLook not pale, Bianca; thy father will not frown.\n\nGREMIO:\nMy cake is dough; but I'll in among the rest,\nOut of hope of all, but my share of the feast.\n\nKATHARINA:\nHusband, let's follow, to see the end of this ado.\n\nPETRUCHIO:\nFirst kiss me, Kate, and we will.\n\nKATHARINA:\nWhat, in the midst of the street?\n\nPETRUCHIO:\nWhat, art thou ashamed of me?\n\nKATHARINA:\nNo, sir, God forbid; but ashamed to kiss.\n\nPETRUCHIO:\nWhy, then let's home again. Come, sirrah, let's away.\n\nKATHARINA:\nNay, I will give thee a kiss: now pray thee, love, stay.\n\nPETRUCHIO:\nIs not this well? Come, my sweet Kate:\nBetter once than never, for never too late.\n\nLUCENTIO:\nAt last, though long, our jarring notes agree:\nAnd time it is, when raging war is done,\nTo smile at scapes and perils overblown.\nMy fair Bianca, bid my father welcome,\nWhile I with self-same kindness welcome thine.\nBrother Petruchio, sister Katharina,\nAnd thou, Hortensio, with thy loving widow,\nFeast with the best, and welcome to my house:\nMy banquet is to close our stomachs up,\nAfter our great good cheer. Pray you, sit down;\nFor now we sit to chat as well as eat.\n\nPETRUCHIO:\nNothing but sit and sit, and eat and eat!\n\nBAPTISTA:\nPadua affords this kindness, son Petruchio.\n\nPETRUCHIO:\nPadua affords nothing but what is kind.\n\nHORTENSIO:\nFor both our sakes, I would that word were true.\n\nPETRUCHIO:\nNow, for my life, Hortensio fears his widow.\n\nWidow:\nThen never trust me, if I be afeard.\n\nPETRUCHIO:\nYou are very sensible, and yet you miss my sense:\nI mean, Hortensio is afeard of you.\n\nWidow:\nHe that is giddy thinks the world turns round.\n\nPETRUCHIO:\nRoundly replied.\n\nKATHARINA:\nMistress, how mean you that?\n\nWidow:\nThus I conceive by him.\n\nPETRUCHIO:\nConceives by me! How likes Hortensio that?\n\nHORTENSIO:\nMy widow says, thus she conceives her tale.\n\nPETRUCHIO:\nVery well mended. Kiss him for that, good widow.\n\nKATHARINA:\n'He that is giddy thinks the world turns round:'\nI pray you, tell me what you meant by that.\n\nWidow:\nYour husband, being troubled with a shrew,\nMeasures my husband's sorrow by his woe:\nAnd now you know my meaning,\n\nKATHARINA:\nA very mean meaning.\n\nWidow:\nRight, I mean you.\n\nKATHARINA:\nAnd I am mean indeed, respecting you.\n\nPETRUCHIO:\nTo her, Kate!\n\nHORTENSIO:\nTo her, widow!\n\nPETRUCHIO:\nA hundred marks, my Kate does put her down.\n\nHORTENSIO:\nThat's my office.\n\nPETRUCHIO:\nSpoke like an officer; ha' to thee, lad!\n\nBAPTISTA:\nHow likes Gremio these quick-witted folks?\n\nGREMIO:\nBelieve me, sir, they butt together well.\n\nBIANCA:\nHead, and butt! an hasty-witted body\nWould say your head and butt were head and horn.\n\nVINCENTIO:\nAy, mistress bride, hath that awaken'd you?\n\nBIANCA:\nAy, but not frighted me; therefore I'll sleep again.\n\nPETRUCHIO:\nNay, that you shall not: since you have begun,\nHave at you for a bitter jest or two!\n\nBIANCA:\nAm I your bird? I mean to shift my bush;\nAnd then pursue me as you draw your bow.\nYou are welcome all.\n\nPETRUCHIO:\nShe hath prevented me. Here, Signior Tranio.\nThis bird you aim'd at, though you hit her not;\nTherefore a health to all that shot and miss'd.\n\nTRANIO:\nO, sir, Lucentio slipp'd me like his greyhound,\nWhich runs himself and catches for his master.\n\nPETRUCHIO:\nA good swift simile, but something currish.\n\nTRANIO:\n'Tis well, sir, that you hunted for yourself:\n'Tis thought your deer does hold you at a bay.\n\nBAPTISTA:\nO ho, Petruchio! Tranio hits you now.\n\nLUCENTIO:\nI thank thee for that gird, good Tranio.\n\nHORTENSIO:\nConfess, confess, hath he not hit you here?\n\nPETRUCHIO:\nA' has a little gall'd me, I confess;\nAnd, as the jest did glance away from me,\n'Tis ten to one it maim'd you two outright.\n\nBAPTISTA:\nNow, in good sadness, son Petruchio,\nI think thou hast the veriest shrew of all.\n\nPETRUCHIO:\nWell, I say no: and therefore for assurance\nLet's each one send unto his wife;\nAnd he whose wife is most obedient\nTo come at first when he doth send for her,\nShall win the wager which we will propose.\n\nHORTENSIO:\nContent. What is the wager?\n\nLUCENTIO:\nTwenty crowns.\n\nPETRUCHIO:\nTwenty crowns!\nI'll venture so much of my hawk or hound,\nBut twenty times so much upon my wife.\n\nLUCENTIO:\nA hundred then.\n\nHORTENSIO:\nContent.\n\nPETRUCHIO:\nA match! 'tis done.\n\nHORTENSIO:\nWho shall begin?\n\nLUCENTIO:\nThat will I.\nGo, Biondello, bid your mistress come to me.\n\nBIONDELLO:\nI go.\n\nBAPTISTA:\nSon, I'll be your half, Bianca comes.\n\nLUCENTIO:\nI'll have no halves; I'll bear it all myself.\nHow now! what news?\n\nBIONDELLO:\nSir, my mistress sends you word\nThat she is busy and she cannot come.\n\nPETRUCHIO:\nHow! she is busy and she cannot come!\nIs that an answer?\n\nGREMIO:\nAy, and a kind one too:\nPray God, sir, your wife send you not a worse.\n\nPETRUCHIO:\nI hope better.\n\nHORTENSIO:\nSirrah Biondello, go and entreat my wife\nTo come to me forthwith.\n\nPETRUCHIO:\nO, ho! entreat her!\nNay, then she must needs come.\n\nHORTENSIO:\nI am afraid, sir,\nDo what you can, yours will not be entreated.\nNow, where's my wife?\n\nBIONDELLO:\nShe says you have some goodly jest in hand:\nShe will not come: she bids you come to her.\n\nPETRUCHIO:\nWorse and worse; she will not come! O vile,\nIntolerable, not to be endured!\nSirrah Grumio, go to your mistress;\nSay, I command her to come to me.\n\nHORTENSIO:\nI know her answer.\n\nPETRUCHIO:\nWhat?\n\nHORTENSIO:\nShe will not.\n\nPETRUCHIO:\nThe fouler fortune mine, and there an end.\n\nBAPTISTA:\nNow, by my holidame, here comes Katharina!\n\nKATHARINA:\nWhat is your will, sir, that you send for me?\n\nPETRUCHIO:\nWhere is your sister, and Hortensio's wife?\n\nKATHARINA:\nThey sit conferring by the parlor fire.\n\nPETRUCHIO:\nGo fetch them hither: if they deny to come.\nSwinge me them soundly forth unto their husbands:\nAway, I say, and bring them hither straight.\n\nLUCENTIO:\nHere is a wonder, if you talk of a wonder.\n\nHORTENSIO:\nAnd so it is: I wonder what it bodes.\n\nPETRUCHIO:\nMarry, peace it bodes, and love and quiet life,\nAnd awful rule and right supremacy;\nAnd, to be short, what not, that's sweet and happy?\n\nBAPTISTA:\nNow, fair befal thee, good Petruchio!\nThe wager thou hast won; and I will add\nUnto their losses twenty thousand crowns;\nAnother dowry to another daughter,\nFor she is changed, as she had never been.\n\nPETRUCHIO:\nNay, I will win my wager better yet\nAnd show more sign of her obedience,\nHer new-built virtue and obedience.\nSee where she comes and brings your froward wives\nAs prisoners to her womanly persuasion.\nKatharina, that cap of yours becomes you not:\nOff with that bauble, throw it under-foot.\n\nWidow:\nLord, let me never have a cause to sigh,\nTill I be brought to such a silly pass!\n\nBIANCA:\nFie! what a foolish duty call you this?\n\nLUCENTIO:\nI would your duty were as foolish too:\nThe wisdom of your duty, fair Bianca,\nHath cost me an hundred crowns since supper-time.\n\nBIANCA:\nThe more fool you, for laying on my duty.\n\nPETRUCHIO:\nKatharina, I charge thee, tell these headstrong women\nWhat duty they do owe their lords and husbands.\n\nWidow:\nCome, come, you're mocking: we will have no telling.\n\nPETRUCHIO:\nCome on, I say; and first begin with her.\n\nWidow:\nShe shall not.\n\nPETRUCHIO:\nI say she shall: and first begin with her.\n\nKATHARINA:\nFie, fie! unknit that threatening unkind brow,\nAnd dart not scornful glances from those eyes,\nTo wound thy lord, thy king, thy governor:\nIt blots thy beauty as frosts do bite the meads,\nConfounds thy fame as whirlwinds shake fair buds,\nAnd in no sense is meet or amiable.\nA woman moved is like a fountain troubled,\nMuddy, ill-seeming, thick, bereft of beauty;\nAnd while it is so, none so dry or thirsty\nWill deign to sip or touch one drop of it.\nThy husband is thy lord, thy life, thy keeper,\nThy head, thy sovereign; one that cares for thee,\nAnd for thy maintenance commits his body\nTo painful labour both by sea and land,\nTo watch the night in storms, the day in cold,\nWhilst thou liest warm at home, secure and safe;\nAnd craves no other tribute at thy hands\nBut love, fair looks and true obedience;\nToo little payment for so great a debt.\nSuch duty as the subject owes the prince\nEven such a woman oweth to her husband;\nAnd when she is froward, peevish, sullen, sour,\nAnd not obedient to his honest will,\nWhat is she but a foul contending rebel\nAnd graceless traitor to her loving lord?\nI am ashamed that women are so simple\nTo offer war where they should kneel for peace;\nOr seek for rule, supremacy and sway,\nWhen they are bound to serve, love and obey.\nWhy are our bodies soft and weak and smooth,\nUnapt to toil and trouble in the world,\nBut that our soft conditions and our hearts\nShould well agree with our external parts?\nCome, come, you froward and unable worms!\nMy mind hath been as big as one of yours,\nMy heart as great, my reason haply more,\nTo bandy word for word and frown for frown;\nBut now I see our lances are but straws,\nOur strength as weak, our weakness past compare,\nThat seeming to be most which we indeed least are.\nThen vail your stomachs, for it is no boot,\nAnd place your hands below your husband's foot:\nIn token of which duty, if he please,\nMy hand is ready; may it do him ease.\n\nPETRUCHIO:\nWhy, there's a wench! Come on, and kiss me, Kate.\n\nLUCENTIO:\nWell, go thy ways, old lad; for thou shalt ha't.\n\nVINCENTIO:\n'Tis a good hearing when children are toward.\n\nLUCENTIO:\nBut a harsh hearing when women are froward.\n\nPETRUCHIO:\nCome, Kate, we'll to bed.\nWe three are married, but you two are sped.\n'Twas I won the wager, though you hit the white;\nAnd, being a winner, God give you good night!\n\nHORTENSIO:\nNow, go thy ways; thou hast tamed a curst shrew.\n\nLUCENTIO:\n'Tis a wonder, by your leave, she will be tamed so.\n\nMaster:\nBoatswain!\n\nBoatswain:\nHere, master: what cheer?\n\nMaster:\nGood, speak to the mariners: fall to't, yarely,\nor we run ourselves aground: bestir, bestir.\n\nBoatswain:\nHeigh, my hearts! cheerly, cheerly, my hearts!\nyare, yare! Take in the topsail. Tend to the\nmaster's whistle. Blow, till thou burst thy wind,\nif room enough!\n\nALONSO:\nGood boatswain, have care. Where's the master?\nPlay the men.\n\nBoatswain:\nI pray now, keep below.\n\nANTONIO:\nWhere is the master, boatswain?\n\nBoatswain:\nDo you not hear him? You mar our labour: keep your\ncabins: you do assist the storm.\n\nGONZALO:\nNay, good, be patient.\n\nBoatswain:\nWhen the sea is. Hence! What cares these roarers\nfor the name of king? To cabin: silence! trouble us not.\n\nGONZALO:\nGood, yet remember whom thou hast aboard.\n\nBoatswain:\nNone that I more love than myself. You are a\ncounsellor; if you can command these elements to\nsilence, and work the peace of the present, we will\nnot hand a rope more; use your authority: if you\ncannot, give thanks you have lived so long, and make\nyourself ready in your cabin for the mischance of\nthe hour, if it so hap. Cheerly, good hearts! Out\nof our way, I say.\n\nGONZALO:\nI have great comfort from this fellow: methinks he\nhath no drowning mark upon him; his complexion is\nperfect gallows. Stand fast, good Fate, to his\nhanging: make the rope of his destiny our cable,\nfor our own doth little advantage. If he be not\nborn to be hanged, our case is miserable.\n\nBoatswain:\nDown with the topmast! yare! lower, lower! Bring\nher to try with main-course.\nA plague upon this howling! they are louder than\nthe weather or our office.\nYet again! what do you here? Shall we give o'er\nand drown? Have you a mind to sink?\n\nSEBASTIAN:\nA pox o' your throat, you bawling, blasphemous,\nincharitable dog!\n\nBoatswain:\nWork you then.\n\nANTONIO:\nHang, cur! hang, you whoreson, insolent noisemaker!\nWe are less afraid to be drowned than thou art.\n\nGONZALO:\nI'll warrant him for drowning; though the ship were\nno stronger than a nutshell and as leaky as an\nunstanched wench.\n\nBoatswain:\nLay her a-hold, a-hold! set her two courses off to\nsea again; lay her off.\n\nMariners:\nAll lost! to prayers, to prayers! all lost!\n\nBoatswain:\nWhat, must our mouths be cold?\n\nGONZALO:\nThe king and prince at prayers! let's assist them,\nFor our case is as theirs.\n\nSEBASTIAN:\nI'm out of patience.\n\nANTONIO:\nWe are merely cheated of our lives by drunkards:\nThis wide-chapp'd rascal--would thou mightst lie drowning\nThe washing of ten tides!\n\nGONZALO:\nHe'll be hang'd yet,\nThough every drop of water swear against it\nAnd gape at widest to glut him.\n\nANTONIO:\nLet's all sink with the king.\n\nSEBASTIAN:\nLet's take leave of him.\n\nGONZALO:\nNow would I give a thousand furlongs of sea for an\nacre of barren ground, long heath, brown furze, any\nthing. The wills above be done! but I would fain\ndie a dry death.\n\nMIRANDA:\nIf by your art, my dearest father, you have\nPut the wild waters in this roar, allay them.\nThe sky, it seems, would pour down stinking pitch,\nBut that the sea, mounting to the welkin's cheek,\nDashes the fire out. O, I have suffered\nWith those that I saw suffer: a brave vessel,\nWho had, no doubt, some noble creature in her,\nDash'd all to pieces. O, the cry did knock\nAgainst my very heart. Poor souls, they perish'd.\nHad I been any god of power, I would\nHave sunk the sea within the earth or ere\nIt should the good ship so have swallow'd and\nThe fraughting souls within her.\n\nPROSPERO:\nBe collected:\nNo more amazement: tell your piteous heart\nThere's no harm done.\n\nMIRANDA:\nO, woe the day!\n\nPROSPERO:\nNo harm.\nI have done nothing but in care of thee,\nOf thee, my dear one, thee, my daughter, who\nArt ignorant of what thou art, nought knowing\nOf whence I am, nor that I am more better\nThan Prospero, master of a full poor cell,\nAnd thy no greater father.\n\nMIRANDA:\nMore to know\nDid never meddle with my thoughts.\n\nPROSPERO:\n'Tis time\nI should inform thee farther. Lend thy hand,\nAnd pluck my magic garment from me. So:\nLie there, my art. Wipe thou thine eyes; have comfort.\nThe direful spectacle of the wreck, which touch'd\nThe very virtue of compassion in thee,\nI have with such provision in mine art\nSo safely ordered that there is no soul--\nNo, not so much perdition as an hair\nBetid to any creature in the vessel\nWhich thou heard'st cry, which thou saw'st sink. Sit down;\nFor thou must now know farther.\n\nMIRANDA:\nYou have often\nBegun to tell me what I am, but stopp'd\nAnd left me to a bootless inquisition,\nConcluding 'Stay: not yet.'\n\nPROSPERO:\nThe hour's now come;\nThe very minute bids thee ope thine ear;\nObey and be attentive. Canst thou remember\nA time before we came unto this cell?\nI do not think thou canst, for then thou wast not\nOut three years old.\n\nMIRANDA:\nCertainly, sir, I can.\n\nPROSPERO:\nBy what? by any other house or person?\nOf any thing the image tell me that\nHath kept with thy remembrance.\n\nMIRANDA:\n'Tis far off\nAnd rather like a dream than an assurance\nThat my remembrance warrants. Had I not\nFour or five women once that tended me?\n\nPROSPERO:\nThou hadst, and more, Miranda. But how is it\nThat this lives in thy mind? What seest thou else\nIn the dark backward and abysm of time?\nIf thou remember'st aught ere thou camest here,\nHow thou camest here thou mayst.\n\nMIRANDA:\nBut that I do not.\n\nPROSPERO:\nTwelve year since, Miranda, twelve year since,\nThy father was the Duke of Milan and\nA prince of power.\n\nMIRANDA:\nSir, are not you my father?\n\nPROSPERO:\nThy mother was a piece of virtue, and\nShe said thou wast my daughter; and thy father\nWas Duke of Milan; and thou his only heir\nAnd princess no worse issued.\n\nMIRANDA:\nO the heavens!\nWhat foul play had we, that we came from thence?\nOr blessed was't we did?\n\nPROSPERO:\nBoth, both, my girl:\nBy foul play, as thou say'st, were we heaved thence,\nBut blessedly holp hither.\n\nMIRANDA:\nO, my heart bleeds\nTo think o' the teen that I have turn'd you to,\nWhich is from my remembrance! Please you, farther.\n\nPROSPERO:\nMy brother and thy uncle, call'd Antonio--\nI pray thee, mark me--that a brother should\nBe so perfidious!--he whom next thyself\nOf all the world I loved and to him put\nThe manage of my state; as at that time\nThrough all the signories it was the first\nAnd Prospero the prime duke, being so reputed\nIn dignity, and for the liberal arts\nWithout a parallel; those being all my study,\nThe government I cast upon my brother\nAnd to my state grew stranger, being transported\nAnd rapt in secret studies. Thy false uncle--\nDost thou attend me?\n\nMIRANDA:\nSir, most heedfully.\n\nPROSPERO:\nBeing once perfected how to grant suits,\nHow to deny them, who to advance and who\nTo trash for over-topping, new created\nThe creatures that were mine, I say, or changed 'em,\nOr else new form'd 'em; having both the key\nOf officer and office, set all hearts i' the state\nTo what tune pleased his ear; that now he was\nThe ivy which had hid my princely trunk,\nAnd suck'd my verdure out on't. Thou attend'st not.\n\nMIRANDA:\nO, good sir, I do.\n\nPROSPERO:\nI pray thee, mark me.\nI, thus neglecting worldly ends, all dedicated\nTo closeness and the bettering of my mind\nWith that which, but by being so retired,\nO'er-prized all popular rate, in my false brother\nAwaked an evil nature; and my trust,\nLike a good parent, did beget of him\nA falsehood in its contrary as great\nAs my trust was; which had indeed no limit,\nA confidence sans bound. He being thus lorded,\nNot only with what my revenue yielded,\nBut what my power might else exact, like one\nWho having into truth, by telling of it,\nMade such a sinner of his memory,\nTo credit his own lie, he did believe\nHe was indeed the duke; out o' the substitution\nAnd executing the outward face of royalty,\nWith all prerogative: hence his ambition growing--\nDost thou hear?\n\nMIRANDA:\nYour tale, sir, would cure deafness.\n\nPROSPERO:\nTo have no screen between this part he play'd\nAnd him he play'd it for, he needs will be\nAbsolute Milan. Me, poor man, my library\nWas dukedom large enough: of temporal royalties\nHe thinks me now incapable; confederates--\nSo dry he was for sway--wi' the King of Naples\nTo give him annual tribute, do him homage,\nSubject his coronet to his crown and bend\nThe dukedom yet unbow'd--alas, poor Milan!--\nTo most ignoble stooping.\n\nMIRANDA:\nO the heavens!\n\nPROSPERO:\nMark his condition and the event; then tell me\nIf this might be a brother.\n\nMIRANDA:\nI should sin\nTo think but nobly of my grandmother:\nGood wombs have borne bad sons.\n\nPROSPERO:\nNow the condition.\nThe King of Naples, being an enemy\nTo me inveterate, hearkens my brother's suit;\nWhich was, that he, in lieu o' the premises\nOf homage and I know not how much tribute,\nShould presently extirpate me and mine\nOut of the dukedom and confer fair Milan\nWith all the honours on my brother: whereon,\nA treacherous army levied, one midnight\nFated to the purpose did Antonio open\nThe gates of Milan, and, i' the dead of darkness,\nThe ministers for the purpose hurried thence\nMe and thy crying self.\n\nMIRANDA:\nAlack, for pity!\nI, not remembering how I cried out then,\nWill cry it o'er again: it is a hint\nThat wrings mine eyes to't.\n\nPROSPERO:\nHear a little further\nAnd then I'll bring thee to the present business\nWhich now's upon's; without the which this story\nWere most impertinent.\n\nMIRANDA:\nWherefore did they not\nThat hour destroy us?\n\nPROSPERO:\nWell demanded, wench:\nMy tale provokes that question. Dear, they durst not,\nSo dear the love my people bore me, nor set\nA mark so bloody on the business, but\nWith colours fairer painted their foul ends.\nIn few, they hurried us aboard a bark,\nBore us some leagues to sea; where they prepared\nA rotten carcass of a boat, not rigg'd,\nNor tackle, sail, nor mast; the very rats\nInstinctively had quit it: there they hoist us,\nTo cry to the sea that roar'd to us, to sigh\nTo the winds whose pity, sighing back again,\nDid us but loving wrong.\n\nMIRANDA:\nAlack, what trouble\nWas I then to you!\n\nPROSPERO:\nO, a cherubim\nThou wast that did preserve me. Thou didst smile.\nInfused with a fortitude from heaven,\nWhen I have deck'd the sea with drops full salt,\nUnder my burthen groan'd; which raised in me\nAn undergoing stomach, to bear up\nAgainst what should ensue.\n\nMIRANDA:\nHow came we ashore?\n\nPROSPERO:\nBy Providence divine.\nSome food we had and some fresh water that\nA noble Neapolitan, Gonzalo,\nOut of his charity, being then appointed\nMaster of this design, did give us, with\nRich garments, linens, stuffs and necessaries,\nWhich since have steaded much; so, of his gentleness,\nKnowing I loved my books, he furnish'd me\nFrom mine own library with volumes that\nI prize above my dukedom.\n\nMIRANDA:\nWould I might\nBut ever see that man!\n\nPROSPERO:\nNow I arise:\nSit still, and hear the last of our sea-sorrow.\nHere in this island we arrived; and here\nHave I, thy schoolmaster, made thee more profit\nThan other princesses can that have more time\nFor vainer hours and tutors not so careful.\n\nMIRANDA:\nHeavens thank you for't! And now, I pray you, sir,\nFor still 'tis beating in my mind, your reason\nFor raising this sea-storm?\n\nPROSPERO:\nKnow thus far forth.\nBy accident most strange, bountiful Fortune,\nNow my dear lady, hath mine enemies\nBrought to this shore; and by my prescience\nI find my zenith doth depend upon\nA most auspicious star, whose influence\nIf now I court not but omit, my fortunes\nWill ever after droop. Here cease more questions:\nThou art inclined to sleep; 'tis a good dulness,\nAnd give it way: I know thou canst not choose.\nCome away, servant, come. I am ready now.\nApproach, my Ariel, come.\n\nARIEL:\nAll hail, great master! grave sir, hail! I come\nTo answer thy best pleasure; be't to fly,\nTo swim, to dive into the fire, to ride\nOn the curl'd clouds, to thy strong bidding task\nAriel and all his quality.\n\nPROSPERO:\nHast thou, spirit,\nPerform'd to point the tempest that I bade thee?\n\nARIEL:\nTo every article.\nI boarded the king's ship; now on the beak,\nNow in the waist, the deck, in every cabin,\nI flamed amazement: sometime I'ld divide,\nAnd burn in many places; on the topmast,\nThe yards and bowsprit, would I flame distinctly,\nThen meet and join. Jove's lightnings, the precursors\nO' the dreadful thunder-claps, more momentary\nAnd sight-outrunning were not; the fire and cracks\nOf sulphurous roaring the most mighty Neptune\nSeem to besiege and make his bold waves tremble,\nYea, his dread trident shake.\n\nPROSPERO:\nMy brave spirit!\nWho was so firm, so constant, that this coil\nWould not infect his reason?\n\nARIEL:\nNot a soul\nBut felt a fever of the mad and play'd\nSome tricks of desperation. All but mariners\nPlunged in the foaming brine and quit the vessel,\nThen all afire with me: the king's son, Ferdinand,\nWith hair up-staring,--then like reeds, not hair,--\nWas the first man that leap'd; cried, 'Hell is empty\nAnd all the devils are here.'\n\nPROSPERO:\nWhy that's my spirit!\nBut was not this nigh shore?\n\nARIEL:\nClose by, my master.\n\nPROSPERO:\nBut are they, Ariel, safe?\n\nARIEL:\nNot a hair perish'd;\nOn their sustaining garments not a blemish,\nBut fresher than before: and, as thou badest me,\nIn troops I have dispersed them 'bout the isle.\nThe king's son have I landed by himself;\nWhom I left cooling of the air with sighs\nIn an odd angle of the isle and sitting,\nHis arms in this sad knot.\n\nPROSPERO:\nOf the king's ship\nThe mariners say how thou hast disposed\nAnd all the rest o' the fleet.\n\nARIEL:\nSafely in harbour\nIs the king's ship; in the deep nook, where once\nThou call'dst me up at midnight to fetch dew\nFrom the still-vex'd Bermoothes, there she's hid:\nThe mariners all under hatches stow'd;\nWho, with a charm join'd to their suffer'd labour,\nI have left asleep; and for the rest o' the fleet\nWhich I dispersed, they all have met again\nAnd are upon the Mediterranean flote,\nBound sadly home for Naples,\nSupposing that they saw the king's ship wreck'd\nAnd his great person perish.\n\nPROSPERO:\nAriel, thy charge\nExactly is perform'd: but there's more work.\nWhat is the time o' the day?\n\nARIEL:\nPast the mid season.\n\nPROSPERO:\nAt least two glasses. The time 'twixt six and now\nMust by us both be spent most preciously.\n\nARIEL:\nIs there more toil? Since thou dost give me pains,\nLet me remember thee what thou hast promised,\nWhich is not yet perform'd me.\n\nPROSPERO:\nHow now? moody?\nWhat is't thou canst demand?\n\nARIEL:\nMy liberty.\n\nPROSPERO:\nBefore the time be out? no more!\n\nARIEL:\nI prithee,\nRemember I have done thee worthy service;\nTold thee no lies, made thee no mistakings, served\nWithout or grudge or grumblings: thou didst promise\nTo bate me a full year.\n\nPROSPERO:\nDost thou forget\nFrom what a torment I did free thee?\n\nARIEL:\nNo.\n\nPROSPERO:\nThou dost, and think'st it much to tread the ooze\nOf the salt deep,\nTo run upon the sharp wind of the north,\nTo do me business in the veins o' the earth\nWhen it is baked with frost.\n\nARIEL:\nI do not, sir.\n\nPROSPERO:\nThou liest, malignant thing! Hast thou forgot\nThe foul witch Sycorax, who with age and envy\nWas grown into a hoop? hast thou forgot her?\n\nARIEL:\nNo, sir.\n\nPROSPERO:\nThou hast. Where was she born? speak; tell me.\n\nARIEL:\nSir, in Argier.\n\nPROSPERO:\nO, was she so? I must\nOnce in a month recount what thou hast been,\nWhich thou forget'st. This damn'd witch Sycorax,\nFor mischiefs manifold and sorceries terrible\nTo enter human hearing, from Argier,\nThou know'st, was banish'd: for one thing she did\nThey would not take her life. Is not this true?\n\nARIEL:\nAy, sir.\n\nPROSPERO:\nThis blue-eyed hag was hither brought with child\nAnd here was left by the sailors. Thou, my slave,\nAs thou report'st thyself, wast then her servant;\nAnd, for thou wast a spirit too delicate\nTo act her earthy and abhorr'd commands,\nRefusing her grand hests, she did confine thee,\nBy help of her more potent ministers\nAnd in her most unmitigable rage,\nInto a cloven pine; within which rift\nImprison'd thou didst painfully remain\nA dozen years; within which space she died\nAnd left thee there; where thou didst vent thy groans\nAs fast as mill-wheels strike. Then was this island--\nSave for the son that she did litter here,\nA freckled whelp hag-born--not honour'd with\nA human shape.\n\nARIEL:\nYes, Caliban her son.\n\nPROSPERO:\nDull thing, I say so; he, that Caliban\nWhom now I keep in service. Thou best know'st\nWhat torment I did find thee in; thy groans\nDid make wolves howl and penetrate the breasts\nOf ever angry bears: it was a torment\nTo lay upon the damn'd, which Sycorax\nCould not again undo: it was mine art,\nWhen I arrived and heard thee, that made gape\nThe pine and let thee out.\n\nARIEL:\nI thank thee, master.\n\nPROSPERO:\nIf thou more murmur'st, I will rend an oak\nAnd peg thee in his knotty entrails till\nThou hast howl'd away twelve winters.\n\nARIEL:\nPardon, master;\nI will be correspondent to command\nAnd do my spiriting gently.\n\nPROSPERO:\nDo so, and after two days\nI will discharge thee.\n\nARIEL:\nThat's my noble master!\nWhat shall I do? say what; what shall I do?\n\nPROSPERO:\nGo make thyself like a nymph o' the sea: be subject\nTo no sight but thine and mine, invisible\nTo every eyeball else. Go take this shape\nAnd hither come in't: go, hence with diligence!\nAwake, dear heart, awake! thou hast slept well; Awake!\n\nMIRANDA:\nThe strangeness of your story put\nHeaviness in me.\n\nPROSPERO:\nShake it off. Come on;\nWe'll visit Caliban my slave, who never\nYields us kind answer.\n\nMIRANDA:\n'Tis a villain, sir,\nI do not love to look on.\n\nPROSPERO:\nBut, as 'tis,\nWe cannot miss him: he does make our fire,\nFetch in our wood and serves in offices\nThat profit us. What, ho! slave! Caliban!\nThou earth, thou! speak.\n\nCALIBAN:\n\nPROSPERO:\nCome forth, I say! there's other business for thee:\nCome, thou tortoise! when?\nFine apparition! My quaint Ariel,\nHark in thine ear.\n\nARIEL:\nMy lord it shall be done.\n\nPROSPERO:\nThou poisonous slave, got by the devil himself\nUpon thy wicked dam, come forth!\n\nCALIBAN:\nAs wicked dew as e'er my mother brush'd\nWith raven's feather from unwholesome fen\nDrop on you both! a south-west blow on ye\nAnd blister you all o'er!\n\nPROSPERO:\nFor this, be sure, to-night thou shalt have cramps,\nSide-stitches that shall pen thy breath up; urchins\nShall, for that vast of night that they may work,\nAll exercise on thee; thou shalt be pinch'd\nAs thick as honeycomb, each pinch more stinging\nThan bees that made 'em.\n\nCALIBAN:\nI must eat my dinner.\nThis island's mine, by Sycorax my mother,\nWhich thou takest from me. When thou camest first,\nThou strokedst me and madest much of me, wouldst give me\nWater with berries in't, and teach me how\nTo name the bigger light, and how the less,\nThat burn by day and night: and then I loved thee\nAnd show'd thee all the qualities o' the isle,\nThe fresh springs, brine-pits, barren place and fertile:\nCursed be I that did so! All the charms\nOf Sycorax, toads, beetles, bats, light on you!\nFor I am all the subjects that you have,\nWhich first was mine own king: and here you sty me\nIn this hard rock, whiles you do keep from me\nThe rest o' the island.\n\nPROSPERO:\nThou most lying slave,\nWhom stripes may move, not kindness! I have used thee,\nFilth as thou art, with human care, and lodged thee\nIn mine own cell, till thou didst seek to violate\nThe honour of my child.\n\nCALIBAN:\nO ho, O ho! would't had been done!\nThou didst prevent me; I had peopled else\nThis isle with Calibans.\n\nPROSPERO:\nAbhorred slave,\nWhich any print of goodness wilt not take,\nBeing capable of all ill! I pitied thee,\nTook pains to make thee speak, taught thee each hour\nOne thing or other: when thou didst not, savage,\nKnow thine own meaning, but wouldst gabble like\nA thing most brutish, I endow'd thy purposes\nWith words that made them known. But thy vile race,\nThough thou didst learn, had that in't which\ngood natures\nCould not abide to be with; therefore wast thou\nDeservedly confined into this rock,\nWho hadst deserved more than a prison.\n\nCALIBAN:\nYou taught me language; and my profit on't\nIs, I know how to curse. The red plague rid you\nFor learning me your language!\n\nPROSPERO:\nHag-seed, hence!\nFetch us in fuel; and be quick, thou'rt best,\nTo answer other business. Shrug'st thou, malice?\nIf thou neglect'st or dost unwillingly\nWhat I command, I'll rack thee with old cramps,\nFill all thy bones with aches, make thee roar\nThat beasts shall tremble at thy din.\n\nCALIBAN:\nNo, pray thee.\nI must obey: his art is of such power,\nIt would control my dam's god, Setebos,\nand make a vassal of him.\n\nPROSPERO:\nSo, slave; hence!\nCome unto these yellow sands,\nAnd then take hands:\nCourtsied when you have and kiss'd\nThe wild waves whist,\nFoot it featly here and there;\nAnd, sweet sprites, the burthen bear.\nHark, hark!\n\nFERDINAND:\nWhere should this music be? i' the air or the earth?\nIt sounds no more: and sure, it waits upon\nSome god o' the island. Sitting on a bank,\nWeeping again the king my father's wreck,\nThis music crept by me upon the waters,\nAllaying both their fury and my passion\nWith its sweet air: thence I have follow'd it,\nOr it hath drawn me rather. But 'tis gone.\nNo, it begins again.\nFull fathom five thy father lies;\nOf his bones are coral made;\nThose are pearls that were his eyes:\nNothing of him that doth fade\nBut doth suffer a sea-change\nInto something rich and strange.\nSea-nymphs hourly ring his knell\nHark! now I hear them,--Ding-dong, bell.\n\nFERDINAND:\nThe ditty does remember my drown'd father.\nThis is no mortal business, nor no sound\nThat the earth owes. I hear it now above me.\n\nPROSPERO:\nThe fringed curtains of thine eye advance\nAnd say what thou seest yond.\n\nMIRANDA:\nWhat is't? a spirit?\nLord, how it looks about! Believe me, sir,\nIt carries a brave form. But 'tis a spirit.\n\nPROSPERO:\nNo, wench; it eats and sleeps and hath such senses\nAs we have, such. This gallant which thou seest\nWas in the wreck; and, but he's something stain'd\nWith grief that's beauty's canker, thou mightst call him\nA goodly person: he hath lost his fellows\nAnd strays about to find 'em.\n\nMIRANDA:\nI might call him\nA thing divine, for nothing natural\nI ever saw so noble.\n\nPROSPERO:\n\nFERDINAND:\nMost sure, the goddess\nOn whom these airs attend! Vouchsafe my prayer\nMay know if you remain upon this island;\nAnd that you will some good instruction give\nHow I may bear me here: my prime request,\nWhich I do last pronounce, is, O you wonder!\nIf you be maid or no?\n\nMIRANDA:\nNo wonder, sir;\nBut certainly a maid.\n\nFERDINAND:\nMy language! heavens!\nI am the best of them that speak this speech,\nWere I but where 'tis spoken.\n\nPROSPERO:\nHow? the best?\nWhat wert thou, if the King of Naples heard thee?\n\nFERDINAND:\nA single thing, as I am now, that wonders\nTo hear thee speak of Naples. He does hear me;\nAnd that he does I weep: myself am Naples,\nWho with mine eyes, never since at ebb, beheld\nThe king my father wreck'd.\n\nMIRANDA:\nAlack, for mercy!\n\nFERDINAND:\nYes, faith, and all his lords; the Duke of Milan\nAnd his brave son being twain.\n\nPROSPERO:\n\nMIRANDA:\nWhy speaks my father so ungently? This\nIs the third man that e'er I saw, the first\nThat e'er I sigh'd for: pity move my father\nTo be inclined my way!\n\nFERDINAND:\nO, if a virgin,\nAnd your affection not gone forth, I'll make you\nThe queen of Naples.\n\nPROSPERO:\nSoft, sir! one word more.\nThey are both in either's powers; but this swift business\nI must uneasy make, lest too light winning\nMake the prize light.\nOne word more; I charge thee\nThat thou attend me: thou dost here usurp\nThe name thou owest not; and hast put thyself\nUpon this island as a spy, to win it\nFrom me, the lord on't.\n\nFERDINAND:\nNo, as I am a man.\n\nMIRANDA:\nThere's nothing ill can dwell in such a temple:\nIf the ill spirit have so fair a house,\nGood things will strive to dwell with't.\n\nPROSPERO:\nFollow me.\nSpeak not you for him; he's a traitor. Come;\nI'll manacle thy neck and feet together:\nSea-water shalt thou drink; thy food shall be\nThe fresh-brook muscles, wither'd roots and husks\nWherein the acorn cradled. Follow.\n\nFERDINAND:\nNo;\nI will resist such entertainment till\nMine enemy has more power.\n\nMIRANDA:\nO dear father,\nMake not too rash a trial of him, for\nHe's gentle and not fearful.\n\nPROSPERO:\nWhat? I say,\nMy foot my tutor? Put thy sword up, traitor;\nWho makest a show but darest not strike, thy conscience\nIs so possess'd with guilt: come from thy ward,\nFor I can here disarm thee with this stick\nAnd make thy weapon drop.\n\nMIRANDA:\nBeseech you, father.\n\nPROSPERO:\nHence! hang not on my garments.\n\nMIRANDA:\nSir, have pity;\nI'll be his surety.\n\nPROSPERO:\nSilence! one word more\nShall make me chide thee, if not hate thee. What!\nAn advocate for an imposter! hush!\nThou think'st there is no more such shapes as he,\nHaving seen but him and Caliban: foolish wench!\nTo the most of men this is a Caliban\nAnd they to him are angels.\n\nMIRANDA:\nMy affections\nAre then most humble; I have no ambition\nTo see a goodlier man.\n\nPROSPERO:\nCome on; obey:\nThy nerves are in their infancy again\nAnd have no vigour in them.\n\nFERDINAND:\nSo they are;\nMy spirits, as in a dream, are all bound up.\nMy father's loss, the weakness which I feel,\nThe wreck of all my friends, nor this man's threats,\nTo whom I am subdued, are but light to me,\nMight I but through my prison once a day\nBehold this maid: all corners else o' the earth\nLet liberty make use of; space enough\nHave I in such a prison.\n\nPROSPERO:\n\nMIRANDA:\nBe of comfort;\nMy father's of a better nature, sir,\nThan he appears by speech: this is unwonted\nWhich now came from him.\n\nPROSPERO:\nThou shalt be free\nAs mountain winds: but then exactly do\nAll points of my command.\n\nARIEL:\nTo the syllable.\n\nPROSPERO:\nCome, follow. Speak not for him.\n\nGONZALO:\nBeseech you, sir, be merry; you have cause,\nSo have we all, of joy; for our escape\nIs much beyond our loss. Our hint of woe\nIs common; every day some sailor's wife,\nThe masters of some merchant and the merchant\nHave just our theme of woe; but for the miracle,\nI mean our preservation, few in millions\nCan speak like us: then wisely, good sir, weigh\nOur sorrow with our comfort.\n\nALONSO:\nPrithee, peace.\n\nSEBASTIAN:\nHe receives comfort like cold porridge.\n\nANTONIO:\nThe visitor will not give him o'er so.\n\nSEBASTIAN:\nLook he's winding up the watch of his wit;\nby and by it will strike.\n\nGONZALO:\nSir,--\n\nSEBASTIAN:\nOne: tell.\n\nGONZALO:\nWhen every grief is entertain'd that's offer'd,\nComes to the entertainer--\n\nSEBASTIAN:\nA dollar.\n\nGONZALO:\nDolour comes to him, indeed: you\nhave spoken truer than you purposed.\n\nSEBASTIAN:\nYou have taken it wiselier than I meant you should.\n\nGONZALO:\nTherefore, my lord,--\n\nANTONIO:\nFie, what a spendthrift is he of his tongue!\n\nALONSO:\nI prithee, spare.\n\nGONZALO:\nWell, I have done: but yet,--\n\nSEBASTIAN:\nHe will be talking.\n\nANTONIO:\nWhich, of he or Adrian, for a good\nwager, first begins to crow?\n\nSEBASTIAN:\nThe old cock.\n\nANTONIO:\nThe cockerel.\n\nSEBASTIAN:\nDone. The wager?\n\nANTONIO:\nA laughter.\n\nSEBASTIAN:\nA match!\n\nADRIAN:\nThough this island seem to be desert,--\n\nSEBASTIAN:\nHa, ha, ha! So, you're paid.\n\nADRIAN:\nUninhabitable and almost inaccessible,--\n\nSEBASTIAN:\nYet,--\n\nADRIAN:\nYet,--\n\nANTONIO:\nHe could not miss't.\n\nADRIAN:\nIt must needs be of subtle, tender and delicate\ntemperance.\n\nANTONIO:\nTemperance was a delicate wench.\n\nSEBASTIAN:\nAy, and a subtle; as he most learnedly delivered.\n\nADRIAN:\nThe air breathes upon us here most sweetly.\n\nSEBASTIAN:\nAs if it had lungs and rotten ones.\n\nANTONIO:\nOr as 'twere perfumed by a fen.\n\nGONZALO:\nHere is everything advantageous to life.\n\nANTONIO:\nTrue; save means to live.\n\nSEBASTIAN:\nOf that there's none, or little.\n\nGONZALO:\nHow lush and lusty the grass looks! how green!\n\nANTONIO:\nThe ground indeed is tawny.\n\nSEBASTIAN:\nWith an eye of green in't.\n\nANTONIO:\nHe misses not much.\n\nSEBASTIAN:\nNo; he doth but mistake the truth totally.\n\nGONZALO:\nBut the rarity of it is,--which is indeed almost\nbeyond credit,--\n\nSEBASTIAN:\nAs many vouched rarities are.\n\nGONZALO:\nThat our garments, being, as they were, drenched in\nthe sea, hold notwithstanding their freshness and\nglosses, being rather new-dyed than stained with\nsalt water.\n\nANTONIO:\nIf but one of his pockets could speak, would it not\nsay he lies?\n\nSEBASTIAN:\nAy, or very falsely pocket up his report\n\nGONZALO:\nMethinks our garments are now as fresh as when we\nput them on first in Afric, at the marriage of\nthe king's fair daughter Claribel to the King of Tunis.\n\nSEBASTIAN:\n'Twas a sweet marriage, and we prosper well in our return.\n\nADRIAN:\nTunis was never graced before with such a paragon to\ntheir queen.\n\nGONZALO:\nNot since widow Dido's time.\n\nANTONIO:\nWidow! a pox o' that! How came that widow in?\nwidow Dido!\n\nSEBASTIAN:\nWhat if he had said 'widower AEneas' too? Good Lord,\nhow you take it!\n\nADRIAN:\n'Widow Dido' said you? you make me study of that:\nshe was of Carthage, not of Tunis.\n\nGONZALO:\nThis Tunis, sir, was Carthage.\n\nADRIAN:\nCarthage?\n\nGONZALO:\nI assure you, Carthage.\n\nSEBASTIAN:\nHis word is more than the miraculous harp; he hath\nraised the wall and houses too.\n\nANTONIO:\nWhat impossible matter will he make easy next?\n\nSEBASTIAN:\nI think he will carry this island home in his pocket\nand give it his son for an apple.\n\nANTONIO:\nAnd, sowing the kernels of it in the sea, bring\nforth more islands.\n\nGONZALO:\nAy.\n\nANTONIO:\nWhy, in good time.\n\nGONZALO:\nSir, we were talking that our garments seem now\nas fresh as when we were at Tunis at the marriage\nof your daughter, who is now queen.\n\nANTONIO:\nAnd the rarest that e'er came there.\n\nSEBASTIAN:\nBate, I beseech you, widow Dido.\n\nANTONIO:\nO, widow Dido! ay, widow Dido.\n\nGONZALO:\nIs not, sir, my doublet as fresh as the first day I\nwore it? I mean, in a sort.\n\nANTONIO:\nThat sort was well fished for.\n\nGONZALO:\nWhen I wore it at your daughter's marriage?\n\nALONSO:\nYou cram these words into mine ears against\nThe stomach of my sense. Would I had never\nMarried my daughter there! for, coming thence,\nMy son is lost and, in my rate, she too,\nWho is so far from Italy removed\nI ne'er again shall see her. O thou mine heir\nOf Naples and of Milan, what strange fish\nHath made his meal on thee?\n\nFRANCISCO:\nSir, he may live:\nI saw him beat the surges under him,\nAnd ride upon their backs; he trod the water,\nWhose enmity he flung aside, and breasted\nThe surge most swoln that met him; his bold head\n'Bove the contentious waves he kept, and oar'd\nHimself with his good arms in lusty stroke\nTo the shore, that o'er his wave-worn basis bow'd,\nAs stooping to relieve him: I not doubt\nHe came alive to land.\n\nALONSO:\nNo, no, he's gone.\n\nSEBASTIAN:\nSir, you may thank yourself for this great loss,\nThat would not bless our Europe with your daughter,\nBut rather lose her to an African;\nWhere she at least is banish'd from your eye,\nWho hath cause to wet the grief on't.\n\nALONSO:\nPrithee, peace.\n\nSEBASTIAN:\nYou were kneel'd to and importuned otherwise\nBy all of us, and the fair soul herself\nWeigh'd between loathness and obedience, at\nWhich end o' the beam should bow. We have lost your\nson,\nI fear, for ever: Milan and Naples have\nMore widows in them of this business' making\nThan we bring men to comfort them:\nThe fault's your own.\n\nALONSO:\nSo is the dear'st o' the loss.\n\nGONZALO:\nMy lord Sebastian,\nThe truth you speak doth lack some gentleness\nAnd time to speak it in: you rub the sore,\nWhen you should bring the plaster.\n\nSEBASTIAN:\nVery well.\n\nANTONIO:\nAnd most chirurgeonly.\n\nGONZALO:\nIt is foul weather in us all, good sir,\nWhen you are cloudy.\n\nSEBASTIAN:\nFoul weather?\n\nANTONIO:\nVery foul.\n\nGONZALO:\nHad I plantation of this isle, my lord,--\n\nANTONIO:\nHe'ld sow't with nettle-seed.\n\nSEBASTIAN:\nOr docks, or mallows.\n\nGONZALO:\nAnd were the king on't, what would I do?\n\nSEBASTIAN:\n'Scape being drunk for want of wine.\n\nGONZALO:\nI' the commonwealth I would by contraries\nExecute all things; for no kind of traffic\nWould I admit; no name of magistrate;\nLetters should not be known; riches, poverty,\nAnd use of service, none; contract, succession,\nBourn, bound of land, tilth, vineyard, none;\nNo use of metal, corn, or wine, or oil;\nNo occupation; all men idle, all;\nAnd women too, but innocent and pure;\nNo sovereignty;--\n\nSEBASTIAN:\nYet he would be king on't.\n\nANTONIO:\nThe latter end of his commonwealth forgets the\nbeginning.\n\nGONZALO:\nAll things in common nature should produce\nWithout sweat or endeavour: treason, felony,\nSword, pike, knife, gun, or need of any engine,\nWould I not have; but nature should bring forth,\nOf its own kind, all foison, all abundance,\nTo feed my innocent people.\n\nSEBASTIAN:\nNo marrying 'mong his subjects?\n\nANTONIO:\nNone, man; all idle: whores and knaves.\n\nGONZALO:\nI would with such perfection govern, sir,\nTo excel the golden age.\n\nSEBASTIAN:\nGod save his majesty!\n\nANTONIO:\nLong live Gonzalo!\n\nGONZALO:\nAnd,--do you mark me, sir?\n\nALONSO:\nPrithee, no more: thou dost talk nothing to me.\n\nGONZALO:\nI do well believe your highness; and\ndid it to minister occasion to these gentlemen,\nwho are of such sensible and nimble lungs that\nthey always use to laugh at nothing.\n\nANTONIO:\n'Twas you we laughed at.\n\nGONZALO:\nWho in this kind of merry fooling am nothing\nto you: so you may continue and laugh at\nnothing still.\n\nANTONIO:\nWhat a blow was there given!\n\nSEBASTIAN:\nAn it had not fallen flat-long.\n\nGONZALO:\nYou are gentlemen of brave metal; you would lift\nthe moon out of her sphere, if she would continue\nin it five weeks without changing.\n\nSEBASTIAN:\nWe would so, and then go a bat-fowling.\n\nANTONIO:\nNay, good my lord, be not angry.\n\nGONZALO:\nNo, I warrant you; I will not adventure\nmy discretion so weakly. Will you laugh\nme asleep, for I am very heavy?\n\nANTONIO:\nGo sleep, and hear us.\n\nALONSO:\nWhat, all so soon asleep! I wish mine eyes\nWould, with themselves, shut up my thoughts: I find\nThey are inclined to do so.\n\nSEBASTIAN:\nPlease you, sir,\nDo not omit the heavy offer of it:\nIt seldom visits sorrow; when it doth,\nIt is a comforter.\n\nANTONIO:\nWe two, my lord,\nWill guard your person while you take your rest,\nAnd watch your safety.\n\nALONSO:\nThank you. Wondrous heavy.\n\nSEBASTIAN:\nWhat a strange drowsiness possesses them!\n\nANTONIO:\nIt is the quality o' the climate.\n\nSEBASTIAN:\nWhy\nDoth it not then our eyelids sink? I find not\nMyself disposed to sleep.\n\nANTONIO:\nNor I; my spirits are nimble.\nThey fell together all, as by consent;\nThey dropp'd, as by a thunder-stroke. What might,\nWorthy Sebastian? O, what might?--No more:--\nAnd yet me thinks I see it in thy face,\nWhat thou shouldst be: the occasion speaks thee, and\nMy strong imagination sees a crown\nDropping upon thy head.\n\nSEBASTIAN:\nWhat, art thou waking?\n\nANTONIO:\nDo you not hear me speak?\n\nSEBASTIAN:\nI do; and surely\nIt is a sleepy language and thou speak'st\nOut of thy sleep. What is it thou didst say?\nThis is a strange repose, to be asleep\nWith eyes wide open; standing, speaking, moving,\nAnd yet so fast asleep.\n\nANTONIO:\nNoble Sebastian,\nThou let'st thy fortune sleep--die, rather; wink'st\nWhiles thou art waking.\n\nSEBASTIAN:\nThou dost snore distinctly;\nThere's meaning in thy snores.\n\nANTONIO:\nI am more serious than my custom: you\nMust be so too, if heed me; which to do\nTrebles thee o'er.\n\nSEBASTIAN:\nWell, I am standing water.\n\nANTONIO:\nI'll teach you how to flow.\n\nSEBASTIAN:\nDo so: to ebb\nHereditary sloth instructs me.\n\nANTONIO:\nO,\nIf you but knew how you the purpose cherish\nWhiles thus you mock it! how, in stripping it,\nYou more invest it! Ebbing men, indeed,\nMost often do so near the bottom run\nBy their own fear or sloth.\n\nSEBASTIAN:\nPrithee, say on:\nThe setting of thine eye and cheek proclaim\nA matter from thee, and a birth indeed\nWhich throes thee much to yield.\n\nANTONIO:\nThus, sir:\nAlthough this lord of weak remembrance, this,\nWho shall be of as little memory\nWhen he is earth'd, hath here almost persuade,--\nFor he's a spirit of persuasion, only\nProfesses to persuade,--the king his son's alive,\n'Tis as impossible that he's undrown'd\nAnd he that sleeps here swims.\n\nSEBASTIAN:\nI have no hope\nThat he's undrown'd.\n\nANTONIO:\nO, out of that 'no hope'\nWhat great hope have you! no hope that way is\nAnother way so high a hope that even\nAmbition cannot pierce a wink beyond,\nBut doubt discovery there. Will you grant with me\nThat Ferdinand is drown'd?\n\nSEBASTIAN:\nHe's gone.\n\nANTONIO:\nThen, tell me,\nWho's the next heir of Naples?\n\nSEBASTIAN:\nClaribel.\n\nANTONIO:\nShe that is queen of Tunis; she that dwells\nTen leagues beyond man's life; she that from Naples\nCan have no note, unless the sun were post--\nThe man i' the moon's too slow--till new-born chins\nBe rough and razorable; she that--from whom?\nWe all were sea-swallow'd, though some cast again,\nAnd by that destiny to perform an act\nWhereof what's past is prologue, what to come\nIn yours and my discharge.\n\nSEBASTIAN:\nWhat stuff is this! how say you?\n'Tis true, my brother's daughter's queen of Tunis;\nSo is she heir of Naples; 'twixt which regions\nThere is some space.\n\nANTONIO:\nA space whose every cubit\nSeems to cry out, 'How shall that Claribel\nMeasure us back to Naples? Keep in Tunis,\nAnd let Sebastian wake.' Say, this were death\nThat now hath seized them; why, they were no worse\nThan now they are. There be that can rule Naples\nAs well as he that sleeps; lords that can prate\nAs amply and unnecessarily\nAs this Gonzalo; I myself could make\nA chough of as deep chat. O, that you bore\nThe mind that I do! what a sleep were this\nFor your advancement! Do you understand me?\n\nSEBASTIAN:\nMethinks I do.\n\nANTONIO:\nAnd how does your content\nTender your own good fortune?\n\nSEBASTIAN:\nI remember\nYou did supplant your brother Prospero.\n\nANTONIO:\nTrue:\nAnd look how well my garments sit upon me;\nMuch feater than before: my brother's servants\nWere then my fellows; now they are my men.\n\nSEBASTIAN:\nBut, for your conscience?\n\nANTONIO:\nAy, sir; where lies that? if 'twere a kibe,\n'Twould put me to my slipper: but I feel not\nThis deity in my bosom: twenty consciences,\nThat stand 'twixt me and Milan, candied be they\nAnd melt ere they molest! Here lies your brother,\nNo better than the earth he lies upon,\nIf he were that which now he's like, that's dead;\nWhom I, with this obedient steel, three inches of it,\nCan lay to bed for ever; whiles you, doing thus,\nTo the perpetual wink for aye might put\nThis ancient morsel, this Sir Prudence, who\nShould not upbraid our course. For all the rest,\nThey'll take suggestion as a cat laps milk;\nThey'll tell the clock to any business that\nWe say befits the hour.\n\nSEBASTIAN:\nThy case, dear friend,\nShall be my precedent; as thou got'st Milan,\nI'll come by Naples. Draw thy sword: one stroke\nShall free thee from the tribute which thou payest;\nAnd I the king shall love thee.\n\nANTONIO:\nDraw together;\nAnd when I rear my hand, do you the like,\nTo fall it on Gonzalo.\n\nSEBASTIAN:\nO, but one word.\n\nARIEL:\nMy master through his art foresees the danger\nThat you, his friend, are in; and sends me forth--\nFor else his project dies--to keep them living.\nWhile you here do snoring lie,\nOpen-eyed conspiracy\nHis time doth take.\nIf of life you keep a care,\nShake off slumber, and beware:\nAwake, awake!\n\nANTONIO:\nThen let us both be sudden.\n\nGONZALO:\nNow, good angels\nPreserve the king.\n\nALONSO:\nWhy, how now? ho, awake! Why are you drawn?\nWherefore this ghastly looking?\n\nGONZALO:\nWhat's the matter?\n\nSEBASTIAN:\nWhiles we stood here securing your repose,\nEven now, we heard a hollow burst of bellowing\nLike bulls, or rather lions: did't not wake you?\nIt struck mine ear most terribly.\n\nALONSO:\nI heard nothing.\n\nANTONIO:\nO, 'twas a din to fright a monster's ear,\nTo make an earthquake! sure, it was the roar\nOf a whole herd of lions.\n\nALONSO:\nHeard you this, Gonzalo?\n\nGONZALO:\nUpon mine honour, sir, I heard a humming,\nAnd that a strange one too, which did awake me:\nI shaked you, sir, and cried: as mine eyes open'd,\nI saw their weapons drawn: there was a noise,\nThat's verily. 'Tis best we stand upon our guard,\nOr that we quit this place; let's draw our weapons.\n\nALONSO:\nLead off this ground; and let's make further search\nFor my poor son.\n\nGONZALO:\nHeavens keep him from these beasts!\nFor he is, sure, i' the island.\n\nALONSO:\nLead away.\n\nARIEL:\nProspero my lord shall know what I have done:\nSo, king, go safely on to seek thy son.\n\nCALIBAN:\nAll the infections that the sun sucks up\nFrom bogs, fens, flats, on Prosper fall and make him\nBy inch-meal a disease! His spirits hear me\nAnd yet I needs must curse. But they'll nor pinch,\nFright me with urchin--shows, pitch me i' the mire,\nNor lead me, like a firebrand, in the dark\nOut of my way, unless he bid 'em; but\nFor every trifle are they set upon me;\nSometime like apes that mow and chatter at me\nAnd after bite me, then like hedgehogs which\nLie tumbling in my barefoot way and mount\nTheir pricks at my footfall; sometime am I\nAll wound with adders who with cloven tongues\nDo hiss me into madness.\nLo, now, lo!\nHere comes a spirit of his, and to torment me\nFor bringing wood in slowly. I'll fall flat;\nPerchance he will not mind me.\n\nTRINCULO:\nHere's neither bush nor shrub, to bear off\nany weather at all, and another storm brewing;\nI hear it sing i' the wind: yond same black\ncloud, yond huge one, looks like a foul\nbombard that would shed his liquor. If it\nshould thunder as it did before, I know not\nwhere to hide my head: yond same cloud cannot\nchoose but fall by pailfuls. What have we\nhere? a man or a fish? dead or alive? A fish:\nhe smells like a fish; a very ancient and fish-\nlike smell; a kind of not of the newest Poor-\nJohn. A strange fish! Were I in England now,\nas once I was, and had but this fish painted,\nnot a holiday fool there but would give a piece\nof silver: there would this monster make a\nman; any strange beast there makes a man:\nwhen they will not give a doit to relieve a lame\nbeggar, they will lazy out ten to see a dead\nIndian. Legged like a man and his fins like\narms! Warm o' my troth! I do now let loose\nmy opinion; hold it no longer: this is no fish,\nbut an islander, that hath lately suffered by a\nthunderbolt.\nAlas, the storm is come again! my best way is to\ncreep under his gaberdine; there is no other\nshelter hereabouts: misery acquaints a man with\nstrange bed-fellows. I will here shroud till the\ndregs of the storm be past.\n\nSTEPHANO:\nI shall no more to sea, to sea,\nHere shall I die ashore--\nThis is a very scurvy tune to sing at a man's\nfuneral: well, here's my comfort. \nThe master, the swabber, the boatswain and I,\nThe gunner and his mate\nLoved Mall, Meg and Marian and Margery,\nBut none of us cared for Kate;\nFor she had a tongue with a tang,\nWould cry to a sailor, Go hang!\nShe loved not the savour of tar nor of pitch,\nYet a tailor might scratch her where'er she did itch:\nThen to sea, boys, and let her go hang!\nThis is a scurvy tune too: but here's my comfort.\n\nCALIBAN:\nDo not torment me: Oh!\n\nSTEPHANO:\nWhat's the matter? Have we devils here? Do you put\ntricks upon's with savages and men of Ind, ha? I\nhave not scaped drowning to be afeard now of your\nfour legs; for it hath been said, As proper a man as\never went on four legs cannot make him give ground;\nand it shall be said so again while Stephano\nbreathes at's nostrils.\n\nCALIBAN:\nThe spirit torments me; Oh!\n\nSTEPHANO:\nThis is some monster of the isle with four legs, who\nhath got, as I take it, an ague. Where the devil\nshould he learn our language? I will give him some\nrelief, if it be but for that. if I can recover him\nand keep him tame and get to Naples with him, he's a\npresent for any emperor that ever trod on neat's leather.\n\nCALIBAN:\nDo not torment me, prithee; I'll bring my wood home faster.\n\nSTEPHANO:\nHe's in his fit now and does not talk after the\nwisest. He shall taste of my bottle: if he have\nnever drunk wine afore will go near to remove his\nfit. If I can recover him and keep him tame, I will\nnot take too much for him; he shall pay for him that\nhath him, and that soundly.\n\nCALIBAN:\nThou dost me yet but little hurt; thou wilt anon, I\nknow it by thy trembling: now Prosper works upon thee.\n\nSTEPHANO:\nCome on your ways; open your mouth; here is that\nwhich will give language to you, cat: open your\nmouth; this will shake your shaking, I can tell you,\nand that soundly: you cannot tell who's your friend:\nopen your chaps again.\n\nTRINCULO:\nI should know that voice: it should be--but he is\ndrowned; and these are devils: O defend me!\n\nSTEPHANO:\nFour legs and two voices: a most delicate monster!\nHis forward voice now is to speak well of his\nfriend; his backward voice is to utter foul speeches\nand to detract. If all the wine in my bottle will\nrecover him, I will help his ague. Come. Amen! I\nwill pour some in thy other mouth.\n\nTRINCULO:\nStephano!\n\nSTEPHANO:\nDoth thy other mouth call me? Mercy, mercy! This is\na devil, and no monster: I will leave him; I have no\nlong spoon.\n\nTRINCULO:\nStephano! If thou beest Stephano, touch me and\nspeak to me: for I am Trinculo--be not afeard--thy\ngood friend Trinculo.\n\nSTEPHANO:\nIf thou beest Trinculo, come forth: I'll pull thee\nby the lesser legs: if any be Trinculo's legs,\nthese are they. Thou art very Trinculo indeed! How\ncamest thou to be the siege of this moon-calf? can\nhe vent Trinculos?\n\nTRINCULO:\nI took him to be killed with a thunder-stroke. But\nart thou not drowned, Stephano? I hope now thou art\nnot drowned. Is the storm overblown? I hid me\nunder the dead moon-calf's gaberdine for fear of\nthe storm. And art thou living, Stephano? O\nStephano, two Neapolitans 'scaped!\n\nSTEPHANO:\nPrithee, do not turn me about; my stomach is not constant.\n\nCALIBAN:\n\nSTEPHANO:\nHow didst thou 'scape? How camest thou hither?\nswear by this bottle how thou camest hither. I\nescaped upon a butt of sack which the sailors\nheaved o'erboard, by this bottle; which I made of\nthe bark of a tree with mine own hands since I was\ncast ashore.\n\nCALIBAN:\nI'll swear upon that bottle to be thy true subject;\nfor the liquor is not earthly.\n\nSTEPHANO:\nHere; swear then how thou escapedst.\n\nTRINCULO:\nSwum ashore. man, like a duck: I can swim like a\nduck, I'll be sworn.\n\nSTEPHANO:\nHere, kiss the book. Though thou canst swim like a\nduck, thou art made like a goose.\n\nTRINCULO:\nO Stephano. hast any more of this?\n\nSTEPHANO:\nThe whole butt, man: my cellar is in a rock by the\nsea-side where my wine is hid. How now, moon-calf!\nhow does thine ague?\n\nCALIBAN:\nHast thou not dropp'd from heaven?\n\nSTEPHANO:\nOut o' the moon, I do assure thee: I was the man i'\nthe moon when time was.\n\nCALIBAN:\nI have seen thee in her and I do adore thee:\nMy mistress show'd me thee and thy dog and thy bush.\n\nSTEPHANO:\nCome, swear to that; kiss the book: I will furnish\nit anon with new contents swear.\n\nTRINCULO:\nBy this good light, this is a very shallow monster!\nI afeard of him! A very weak monster! The man i'\nthe moon! A most poor credulous monster! Well\ndrawn, monster, in good sooth!\n\nCALIBAN:\nI'll show thee every fertile inch o' th' island;\nAnd I will kiss thy foot: I prithee, be my god.\n\nTRINCULO:\nBy this light, a most perfidious and drunken\nmonster! when 's god's asleep, he'll rob his bottle.\n\nCALIBAN:\nI'll kiss thy foot; I'll swear myself thy subject.\n\nSTEPHANO:\nCome on then; down, and swear.\n\nTRINCULO:\nI shall laugh myself to death at this puppy-headed\nmonster. A most scurvy monster! I could find in my\nheart to beat him,--\n\nSTEPHANO:\nCome, kiss.\n\nTRINCULO:\nBut that the poor monster's in drink: an abominable monster!\n\nCALIBAN:\nI'll show thee the best springs; I'll pluck thee berries;\nI'll fish for thee and get thee wood enough.\nA plague upon the tyrant that I serve!\nI'll bear him no more sticks, but follow thee,\nThou wondrous man.\n\nTRINCULO:\nA most ridiculous monster, to make a wonder of a\nPoor drunkard!\n\nCALIBAN:\nI prithee, let me bring thee where crabs grow;\nAnd I with my long nails will dig thee pignuts;\nShow thee a jay's nest and instruct thee how\nTo snare the nimble marmoset; I'll bring thee\nTo clustering filberts and sometimes I'll get thee\nYoung scamels from the rock. Wilt thou go with me?\n\nSTEPHANO:\nI prithee now, lead the way without any more\ntalking. Trinculo, the king and all our company\nelse being drowned, we will inherit here: here;\nbear my bottle: fellow Trinculo, we'll fill him by\nand by again.\n\nCALIBAN:\n\nTRINCULO:\nA howling monster: a drunken monster!\n\nCALIBAN:\nNo more dams I'll make for fish\nNor fetch in firing\nAt requiring;\nNor scrape trencher, nor wash dish\n'Ban, 'Ban, Cacaliban\nHas a new master: get a new man.\nFreedom, hey-day! hey-day, freedom! freedom,\nhey-day, freedom!\n\nSTEPHANO:\nO brave monster! Lead the way.\n\nFERDINAND:\nThere be some sports are painful, and their labour\nDelight in them sets off: some kinds of baseness\nAre nobly undergone and most poor matters\nPoint to rich ends. This my mean task\nWould be as heavy to me as odious, but\nThe mistress which I serve quickens what's dead\nAnd makes my labours pleasures: O, she is\nTen times more gentle than her father's crabbed,\nAnd he's composed of harshness. I must remove\nSome thousands of these logs and pile them up,\nUpon a sore injunction: my sweet mistress\nWeeps when she sees me work, and says, such baseness\nHad never like executor. I forget:\nBut these sweet thoughts do even refresh my labours,\nMost busy lest, when I do it.\n\nMIRANDA:\nAlas, now, pray you,\nWork not so hard: I would the lightning had\nBurnt up those logs that you are enjoin'd to pile!\nPray, set it down and rest you: when this burns,\n'Twill weep for having wearied you. My father\nIs hard at study; pray now, rest yourself;\nHe's safe for these three hours.\n\nFERDINAND:\nO most dear mistress,\nThe sun will set before I shall discharge\nWhat I must strive to do.\n\nMIRANDA:\nIf you'll sit down,\nI'll bear your logs the while: pray, give me that;\nI'll carry it to the pile.\n\nFERDINAND:\nNo, precious creature;\nI had rather crack my sinews, break my back,\nThan you should such dishonour undergo,\nWhile I sit lazy by.\n\nMIRANDA:\nIt would become me\nAs well as it does you: and I should do it\nWith much more ease; for my good will is to it,\nAnd yours it is against.\n\nPROSPERO:\nPoor worm, thou art infected!\nThis visitation shows it.\n\nMIRANDA:\nYou look wearily.\n\nFERDINAND:\nNo, noble mistress;'tis fresh morning with me\nWhen you are by at night. I do beseech you--\nChiefly that I might set it in my prayers--\nWhat is your name?\n\nMIRANDA:\nMiranda.--O my father,\nI have broke your hest to say so!\n\nFERDINAND:\nAdmired Miranda!\nIndeed the top of admiration! worth\nWhat's dearest to the world! Full many a lady\nI have eyed with best regard and many a time\nThe harmony of their tongues hath into bondage\nBrought my too diligent ear: for several virtues\nHave I liked several women; never any\nWith so fun soul, but some defect in her\nDid quarrel with the noblest grace she owed\nAnd put it to the foil: but you, O you,\nSo perfect and so peerless, are created\nOf every creature's best!\n\nMIRANDA:\nI do not know\nOne of my sex; no woman's face remember,\nSave, from my glass, mine own; nor have I seen\nMore that I may call men than you, good friend,\nAnd my dear father: how features are abroad,\nI am skilless of; but, by my modesty,\nThe jewel in my dower, I would not wish\nAny companion in the world but you,\nNor can imagination form a shape,\nBesides yourself, to like of. But I prattle\nSomething too wildly and my father's precepts\nI therein do forget.\n\nFERDINAND:\nI am in my condition\nA prince, Miranda; I do think, a king;\nI would, not so!--and would no more endure\nThis wooden slavery than to suffer\nThe flesh-fly blow my mouth. Hear my soul speak:\nThe very instant that I saw you, did\nMy heart fly to your service; there resides,\nTo make me slave to it; and for your sake\nAm I this patient log--man.\n\nMIRANDA:\nDo you love me?\n\nFERDINAND:\nO heaven, O earth, bear witness to this sound\nAnd crown what I profess with kind event\nIf I speak true! if hollowly, invert\nWhat best is boded me to mischief! I\nBeyond all limit of what else i' the world\nDo love, prize, honour you.\n\nMIRANDA:\nI am a fool\nTo weep at what I am glad of.\n\nPROSPERO:\nFair encounter\nOf two most rare affections! Heavens rain grace\nOn that which breeds between 'em!\n\nFERDINAND:\nWherefore weep you?\n\nMIRANDA:\nAt mine unworthiness that dare not offer\nWhat I desire to give, and much less take\nWhat I shall die to want. But this is trifling;\nAnd all the more it seeks to hide itself,\nThe bigger bulk it shows. Hence, bashful cunning!\nAnd prompt me, plain and holy innocence!\nI am your wife, it you will marry me;\nIf not, I'll die your maid: to be your fellow\nYou may deny me; but I'll be your servant,\nWhether you will or no.\n\nFERDINAND:\nMy mistress, dearest;\nAnd I thus humble ever.\n\nMIRANDA:\nMy husband, then?\n\nFERDINAND:\nAy, with a heart as willing\nAs bondage e'er of freedom: here's my hand.\n\nMIRANDA:\nAnd mine, with my heart in't; and now farewell\nTill half an hour hence.\n\nFERDINAND:\nA thousand thousand!\n\nPROSPERO:\nSo glad of this as they I cannot be,\nWho are surprised withal; but my rejoicing\nAt nothing can be more. I'll to my book,\nFor yet ere supper-time must I perform\nMuch business appertaining.\n\nSTEPHANO:\nTell not me; when the butt is out, we will drink\nwater; not a drop before: therefore bear up, and\nboard 'em. Servant-monster, drink to me.\n\nTRINCULO:\nServant-monster! the folly of this island! They\nsay there's but five upon this isle: we are three\nof them; if th' other two be brained like us, the\nstate totters.\n\nSTEPHANO:\nDrink, servant-monster, when I bid thee: thy eyes\nare almost set in thy head.\n\nTRINCULO:\nWhere should they be set else? he were a brave\nmonster indeed, if they were set in his tail.\n\nSTEPHANO:\nMy man-monster hath drown'd his tongue in sack:\nfor my part, the sea cannot drown me; I swam, ere I\ncould recover the shore, five and thirty leagues off\nand on. By this light, thou shalt be my lieutenant,\nmonster, or my standard.\n\nTRINCULO:\nYour lieutenant, if you list; he's no standard.\n\nSTEPHANO:\nWe'll not run, Monsieur Monster.\n\nTRINCULO:\nNor go neither; but you'll lie like dogs and yet say\nnothing neither.\n\nSTEPHANO:\nMoon-calf, speak once in thy life, if thou beest a\ngood moon-calf.\n\nCALIBAN:\nHow does thy honour? Let me lick thy shoe.\nI'll not serve him; he's not valiant.\n\nTRINCULO:\nThou liest, most ignorant monster: I am in case to\njustle a constable. Why, thou deboshed fish thou,\nwas there ever man a coward that hath drunk so much\nsack as I to-day? Wilt thou tell a monstrous lie,\nbeing but half a fish and half a monster?\n\nCALIBAN:\nLo, how he mocks me! wilt thou let him, my lord?\n\nTRINCULO:\n'Lord' quoth he! That a monster should be such a natural!\n\nCALIBAN:\nLo, lo, again! bite him to death, I prithee.\n\nSTEPHANO:\nTrinculo, keep a good tongue in your head: if you\nprove a mutineer,--the next tree! The poor monster's\nmy subject and he shall not suffer indignity.\n\nCALIBAN:\nI thank my noble lord. Wilt thou be pleased to\nhearken once again to the suit I made to thee?\n\nSTEPHANO:\nMarry, will I kneel and repeat it; I will stand,\nand so shall Trinculo.\n\nCALIBAN:\nAs I told thee before, I am subject to a tyrant, a\nsorcerer, that by his cunning hath cheated me of the island.\n\nARIEL:\nThou liest.\n\nCALIBAN:\nThou liest, thou jesting monkey, thou: I would my\nvaliant master would destroy thee! I do not lie.\n\nSTEPHANO:\nTrinculo, if you trouble him any more in's tale, by\nthis hand, I will supplant some of your teeth.\n\nTRINCULO:\nWhy, I said nothing.\n\nSTEPHANO:\nMum, then, and no more. Proceed.\n\nCALIBAN:\nI say, by sorcery he got this isle;\nFrom me he got it. if thy greatness will\nRevenge it on him,--for I know thou darest,\nBut this thing dare not,--\n\nSTEPHANO:\nThat's most certain.\n\nCALIBAN:\nThou shalt be lord of it and I'll serve thee.\n\nSTEPHANO:\nHow now shall this be compassed?\nCanst thou bring me to the party?\n\nCALIBAN:\nYea, yea, my lord: I'll yield him thee asleep,\nWhere thou mayst knock a nail into his bead.\n\nARIEL:\nThou liest; thou canst not.\n\nCALIBAN:\nWhat a pied ninny's this! Thou scurvy patch!\nI do beseech thy greatness, give him blows\nAnd take his bottle from him: when that's gone\nHe shall drink nought but brine; for I'll not show him\nWhere the quick freshes are.\n\nSTEPHANO:\nTrinculo, run into no further danger:\ninterrupt the monster one word further, and,\nby this hand, I'll turn my mercy out o' doors\nand make a stock-fish of thee.\n\nTRINCULO:\nWhy, what did I? I did nothing. I'll go farther\noff.\n\nSTEPHANO:\nDidst thou not say he lied?\n\nARIEL:\nThou liest.\n\nSTEPHANO:\nDo I so? take thou that.\nAs you like this, give me the lie another time.\n\nTRINCULO:\nI did not give the lie. Out o' your\nwits and bearing too? A pox o' your bottle!\nthis can sack and drinking do. A murrain on\nyour monster, and the devil take your fingers!\n\nCALIBAN:\nHa, ha, ha!\n\nSTEPHANO:\nNow, forward with your tale. Prithee, stand farther\noff.\n\nCALIBAN:\nBeat him enough: after a little time\nI'll beat him too.\n\nSTEPHANO:\nStand farther. Come, proceed.\n\nCALIBAN:\nWhy, as I told thee, 'tis a custom with him,\nI' th' afternoon to sleep: there thou mayst brain him,\nHaving first seized his books, or with a log\nBatter his skull, or paunch him with a stake,\nOr cut his wezand with thy knife. Remember\nFirst to possess his books; for without them\nHe's but a sot, as I am, nor hath not\nOne spirit to command: they all do hate him\nAs rootedly as I. Burn but his books.\nHe has brave utensils,--for so he calls them--\nWhich when he has a house, he'll deck withal\nAnd that most deeply to consider is\nThe beauty of his daughter; he himself\nCalls her a nonpareil: I never saw a woman,\nBut only Sycorax my dam and she;\nBut she as far surpasseth Sycorax\nAs great'st does least.\n\nSTEPHANO:\nIs it so brave a lass?\n\nCALIBAN:\nAy, lord; she will become thy bed, I warrant.\nAnd bring thee forth brave brood.\n\nSTEPHANO:\nMonster, I will kill this man: his daughter and I\nwill be king and queen--save our graces!--and\nTrinculo and thyself shall be viceroys. Dost thou\nlike the plot, Trinculo?\n\nTRINCULO:\nExcellent.\n\nSTEPHANO:\nGive me thy hand: I am sorry I beat thee; but,\nwhile thou livest, keep a good tongue in thy head.\n\nCALIBAN:\nWithin this half hour will he be asleep:\nWilt thou destroy him then?\n\nSTEPHANO:\nAy, on mine honour.\n\nARIEL:\nThis will I tell my master.\n\nCALIBAN:\nThou makest me merry; I am full of pleasure:\nLet us be jocund: will you troll the catch\nYou taught me but while-ere?\n\nSTEPHANO:\nAt thy request, monster, I will do reason, any\nreason. Come on, Trinculo, let us sing.\nFlout 'em and scout 'em\nAnd scout 'em and flout 'em\nThought is free.\n\nCALIBAN:\nThat's not the tune.\n\nSTEPHANO:\nWhat is this same?\n\nTRINCULO:\nThis is the tune of our catch, played by the picture\nof Nobody.\n\nSTEPHANO:\nIf thou beest a man, show thyself in thy likeness:\nif thou beest a devil, take't as thou list.\n\nTRINCULO:\nO, forgive me my sins!\n\nSTEPHANO:\nHe that dies pays all debts: I defy thee. Mercy upon us!\n\nCALIBAN:\nArt thou afeard?\n\nSTEPHANO:\nNo, monster, not I.\n\nCALIBAN:\nBe not afeard; the isle is full of noises,\nSounds and sweet airs, that give delight and hurt not.\nSometimes a thousand twangling instruments\nWill hum about mine ears, and sometime voices\nThat, if I then had waked after long sleep,\nWill make me sleep again: and then, in dreaming,\nThe clouds methought would open and show riches\nReady to drop upon me that, when I waked,\nI cried to dream again.\n\nSTEPHANO:\nThis will prove a brave kingdom to me, where I shall\nhave my music for nothing.\n\nCALIBAN:\nWhen Prospero is destroyed.\n\nSTEPHANO:\nThat shall be by and by: I remember the story.\n\nTRINCULO:\nThe sound is going away; let's follow it, and\nafter do our work.\n\nSTEPHANO:\nLead, monster; we'll follow. I would I could see\nthis tabourer; he lays it on.\n\nTRINCULO:\nWilt come? I'll follow, Stephano.\n\nGONZALO:\nBy'r lakin, I can go no further, sir;\nMy old bones ache: here's a maze trod indeed\nThrough forth-rights and meanders! By your patience,\nI needs must rest me.\n\nALONSO:\nOld lord, I cannot blame thee,\nWho am myself attach'd with weariness,\nTo the dulling of my spirits: sit down, and rest.\nEven here I will put off my hope and keep it\nNo longer for my flatterer: he is drown'd\nWhom thus we stray to find, and the sea mocks\nOur frustrate search on land. Well, let him go.\n\nANTONIO:\n\nSEBASTIAN:\n\nANTONIO:\n\nSEBASTIAN:\n\nALONSO:\nWhat harmony is this? My good friends, hark!\n\nGONZALO:\nMarvellous sweet music!\n\nALONSO:\nGive us kind keepers, heavens! What were these?\n\nSEBASTIAN:\nA living drollery. Now I will believe\nThat there are unicorns, that in Arabia\nThere is one tree, the phoenix' throne, one phoenix\nAt this hour reigning there.\n\nANTONIO:\nI'll believe both;\nAnd what does else want credit, come to me,\nAnd I'll be sworn 'tis true: travellers ne'er did\nlie,\nThough fools at home condemn 'em.\n\nGONZALO:\nIf in Naples\nI should report this now, would they believe me?\nIf I should say, I saw such islanders--\nFor, certes, these are people of the island--\nWho, though they are of monstrous shape, yet, note,\nTheir manners are more gentle-kind than of\nOur human generation you shall find\nMany, nay, almost any.\n\nPROSPERO:\n\nALONSO:\nI cannot too much muse\nSuch shapes, such gesture and such sound, expressing,\nAlthough they want the use of tongue, a kind\nOf excellent dumb discourse.\n\nPROSPERO:\n\nFRANCISCO:\nThey vanish'd strangely.\n\nSEBASTIAN:\nNo matter, since\nThey have left their viands behind; for we have stomachs.\nWill't please you taste of what is here?\n\nALONSO:\nNot I.\n\nGONZALO:\nFaith, sir, you need not fear. When we were boys,\nWho would believe that there were mountaineers\nDew-lapp'd like bulls, whose throats had hanging at 'em\nWallets of flesh? or that there were such men\nWhose heads stood in their breasts? which now we find\nEach putter-out of five for one will bring us\nGood warrant of.\n\nALONSO:\nI will stand to and feed,\nAlthough my last: no matter, since I feel\nThe best is past. Brother, my lord the duke,\nStand to and do as we.\n\nARIEL:\nYou are three men of sin, whom Destiny,\nThat hath to instrument this lower world\nAnd what is in't, the never-surfeited sea\nHath caused to belch up you; and on this island\nWhere man doth not inhabit; you 'mongst men\nBeing most unfit to live. I have made you mad;\nAnd even with such-like valour men hang and drown\nTheir proper selves.\nYou fools! I and my fellows\nAre ministers of Fate: the elements,\nOf whom your swords are temper'd, may as well\nWound the loud winds, or with bemock'd-at stabs\nKill the still-closing waters, as diminish\nOne dowle that's in my plume: my fellow-ministers\nAre like invulnerable. If you could hurt,\nYour swords are now too massy for your strengths\nAnd will not be uplifted. But remember--\nFor that's my business to you--that you three\nFrom Milan did supplant good Prospero;\nExposed unto the sea, which hath requit it,\nHim and his innocent child: for which foul deed\nThe powers, delaying, not forgetting, have\nIncensed the seas and shores, yea, all the creatures,\nAgainst your peace. Thee of thy son, Alonso,\nThey have bereft; and do pronounce by me:\nLingering perdition, worse than any death\nCan be at once, shall step by step attend\nYou and your ways; whose wraths to guard you from--\nWhich here, in this most desolate isle, else falls\nUpon your heads--is nothing but heart-sorrow\nAnd a clear life ensuing.\n\nPROSPERO:\nBravely the figure of this harpy hast thou\nPerform'd, my Ariel; a grace it had, devouring:\nOf my instruction hast thou nothing bated\nIn what thou hadst to say: so, with good life\nAnd observation strange, my meaner ministers\nTheir several kinds have done. My high charms work\nAnd these mine enemies are all knit up\nIn their distractions; they now are in my power;\nAnd in these fits I leave them, while I visit\nYoung Ferdinand, whom they suppose is drown'd,\nAnd his and mine loved darling.\n\nGONZALO:\nI' the name of something holy, sir, why stand you\nIn this strange stare?\n\nALONSO:\nO, it is monstrous, monstrous:\nMethought the billows spoke and told me of it;\nThe winds did sing it to me, and the thunder,\nThat deep and dreadful organ-pipe, pronounced\nThe name of Prosper: it did bass my trespass.\nTherefore my son i' the ooze is bedded, and\nI'll seek him deeper than e'er plummet sounded\nAnd with him there lie mudded.\n\nSEBASTIAN:\nBut one fiend at a time,\nI'll fight their legions o'er.\n\nANTONIO:\nI'll be thy second.\n\nGONZALO:\nAll three of them are desperate: their great guilt,\nLike poison given to work a great time after,\nNow 'gins to bite the spirits. I do beseech you\nThat are of suppler joints, follow them swiftly\nAnd hinder them from what this ecstasy\nMay now provoke them to.\n\nADRIAN:\nFollow, I pray you.\n\nPROSPERO:\nIf I have too austerely punish'd you,\nYour compensation makes amends, for I\nHave given you here a third of mine own life,\nOr that for which I live; who once again\nI tender to thy hand: all thy vexations\nWere but my trials of thy love and thou\nHast strangely stood the test here, afore Heaven,\nI ratify this my rich gift. O Ferdinand,\nDo not smile at me that I boast her off,\nFor thou shalt find she will outstrip all praise\nAnd make it halt behind her.\n\nFERDINAND:\nI do believe it\nAgainst an oracle.\n\nPROSPERO:\nThen, as my gift and thine own acquisition\nWorthily purchased take my daughter: but\nIf thou dost break her virgin-knot before\nAll sanctimonious ceremonies may\nWith full and holy rite be minister'd,\nNo sweet aspersion shall the heavens let fall\nTo make this contract grow: but barren hate,\nSour-eyed disdain and discord shall bestrew\nThe union of your bed with weeds so loathly\nThat you shall hate it both: therefore take heed,\nAs Hymen's lamps shall light you.\n\nFERDINAND:\nAs I hope\nFor quiet days, fair issue and long life,\nWith such love as 'tis now, the murkiest den,\nThe most opportune place, the strong'st suggestion.\nOur worser genius can, shall never melt\nMine honour into lust, to take away\nThe edge of that day's celebration\nWhen I shall think: or Phoebus' steeds are founder'd,\nOr Night kept chain'd below.\n\nPROSPERO:\nFairly spoke.\nSit then and talk with her; she is thine own.\nWhat, Ariel! my industrious servant, Ariel!\n\nARIEL:\nWhat would my potent master? here I am.\n\nPROSPERO:\nThou and thy meaner fellows your last service\nDid worthily perform; and I must use you\nIn such another trick. Go bring the rabble,\nO'er whom I give thee power, here to this place:\nIncite them to quick motion; for I must\nBestow upon the eyes of this young couple\nSome vanity of mine art: it is my promise,\nAnd they expect it from me.\n\nARIEL:\nPresently?\n\nPROSPERO:\nAy, with a twink.\n\nARIEL:\nBefore you can say 'come' and 'go,'\nAnd breathe twice and cry 'so, so,'\nEach one, tripping on his toe,\nWill be here with mop and mow.\nDo you love me, master? no?\n\nPROSPERO:\nDearly my delicate Ariel. Do not approach\nTill thou dost hear me call.\n\nARIEL:\nWell, I conceive.\n\nPROSPERO:\nLook thou be true; do not give dalliance\nToo much the rein: the strongest oaths are straw\nTo the fire i' the blood: be more abstemious,\nOr else, good night your vow!\n\nFERDINAND:\nI warrant you sir;\nThe white cold virgin snow upon my heart\nAbates the ardour of my liver.\n\nPROSPERO:\nWell.\nNow come, my Ariel! bring a corollary,\nRather than want a spirit: appear and pertly!\nNo tongue! all eyes! be silent.\n\nIRIS:\nCeres, most bounteous lady, thy rich leas\nOf wheat, rye, barley, vetches, oats and pease;\nThy turfy mountains, where live nibbling sheep,\nAnd flat meads thatch'd with stover, them to keep;\nThy banks with pioned and twilled brims,\nWhich spongy April at thy hest betrims,\nTo make cold nymphs chaste crowns; and thy broom -groves,\nWhose shadow the dismissed bachelor loves,\nBeing lass-lorn: thy pole-clipt vineyard;\nAnd thy sea-marge, sterile and rocky-hard,\nWhere thou thyself dost air;--the queen o' the sky,\nWhose watery arch and messenger am I,\nBids thee leave these, and with her sovereign grace,\nHere on this grass-plot, in this very place,\nTo come and sport: her peacocks fly amain:\nApproach, rich Ceres, her to entertain.\n\nCERES:\nHail, many-colour'd messenger, that ne'er\nDost disobey the wife of Jupiter;\nWho with thy saffron wings upon my flowers\nDiffusest honey-drops, refreshing showers,\nAnd with each end of thy blue bow dost crown\nMy bosky acres and my unshrubb'd down,\nRich scarf to my proud earth; why hath thy queen\nSummon'd me hither, to this short-grass'd green?\n\nIRIS:\nA contract of true love to celebrate;\nAnd some donation freely to estate\nOn the blest lovers.\n\nCERES:\nTell me, heavenly bow,\nIf Venus or her son, as thou dost know,\nDo now attend the queen? Since they did plot\nThe means that dusky Dis my daughter got,\nHer and her blind boy's scandal'd company\nI have forsworn.\n\nIRIS:\nOf her society\nBe not afraid: I met her deity\nCutting the clouds towards Paphos and her son\nDove-drawn with her. Here thought they to have done\nSome wanton charm upon this man and maid,\nWhose vows are, that no bed-right shall be paid\nTill Hymen's torch be lighted: but vain;\nMars's hot minion is returned again;\nHer waspish-headed son has broke his arrows,\nSwears he will shoot no more but play with sparrows\nAnd be a boy right out.\n\nCERES:\nHigh'st queen of state,\nGreat Juno, comes; I know her by her gait.\n\nJUNO:\nHow does my bounteous sister? Go with me\nTo bless this twain, that they may prosperous be\nAnd honour'd in their issue.\n\nJUNO:\nHonour, riches, marriage-blessing,\nLong continuance, and increasing,\nHourly joys be still upon you!\nJuno sings her blessings upon you.\n\nCERES:\nEarth's increase, foison plenty,\nBarns and garners never empty,\nVines and clustering bunches growing,\nPlants with goodly burthen bowing;\nSpring come to you at the farthest\nIn the very end of harvest!\nScarcity and want shall shun you;\nCeres' blessing so is on you.\n\nFERDINAND:\nThis is a most majestic vision, and\nHarmoniously charmingly. May I be bold\nTo think these spirits?\n\nPROSPERO:\nSpirits, which by mine art\nI have from their confines call'd to enact\nMy present fancies.\n\nFERDINAND:\nLet me live here ever;\nSo rare a wonder'd father and a wife\nMakes this place Paradise.\n\nPROSPERO:\nSweet, now, silence!\nJuno and Ceres whisper seriously;\nThere's something else to do: hush, and be mute,\nOr else our spell is marr'd.\n\nIRIS:\nYou nymphs, call'd Naiads, of the windring brooks,\nWith your sedged crowns and ever-harmless looks,\nLeave your crisp channels and on this green land\nAnswer your summons; Juno does command:\nCome, temperate nymphs, and help to celebrate\nA contract of true love; be not too late.\nYou sunburnt sicklemen, of August weary,\nCome hither from the furrow and be merry:\nMake holiday; your rye-straw hats put on\nAnd these fresh nymphs encounter every one\nIn country footing.\n\nPROSPERO:\n\nFERDINAND:\nThis is strange: your father's in some passion\nThat works him strongly.\n\nMIRANDA:\nNever till this day\nSaw I him touch'd with anger so distemper'd.\n\nPROSPERO:\nYou do look, my son, in a moved sort,\nAs if you were dismay'd: be cheerful, sir.\nOur revels now are ended. These our actors,\nAs I foretold you, were all spirits and\nAre melted into air, into thin air:\nAnd, like the baseless fabric of this vision,\nThe cloud-capp'd towers, the gorgeous palaces,\nThe solemn temples, the great globe itself,\nYe all which it inherit, shall dissolve\nAnd, like this insubstantial pageant faded,\nLeave not a rack behind. We are such stuff\nAs dreams are made on, and our little life\nIs rounded with a sleep. Sir, I am vex'd;\nBear with my weakness; my, brain is troubled:\nBe not disturb'd with my infirmity:\nIf you be pleased, retire into my cell\nAnd there repose: a turn or two I'll walk,\nTo still my beating mind.\n\nFERDINAND:\nWe wish your peace.\n\nPROSPERO:\nCome with a thought I thank thee, Ariel: come.\n\nARIEL:\nThy thoughts I cleave to. What's thy pleasure?\n\nPROSPERO:\nSpirit,\nWe must prepare to meet with Caliban.\n\nARIEL:\nAy, my commander: when I presented Ceres,\nI thought to have told thee of it, but I fear'd\nLest I might anger thee.\n\nPROSPERO:\nSay again, where didst thou leave these varlets?\n\nARIEL:\nI told you, sir, they were red-hot with drinking;\nSo fun of valour that they smote the air\nFor breathing in their faces; beat the ground\nFor kissing of their feet; yet always bending\nTowards their project. Then I beat my tabour;\nAt which, like unback'd colts, they prick'd\ntheir ears,\nAdvanced their eyelids, lifted up their noses\nAs they smelt music: so I charm'd their ears\nThat calf-like they my lowing follow'd through\nTooth'd briers, sharp furzes, pricking goss and thorns,\nWhich entered their frail shins: at last I left them\nI' the filthy-mantled pool beyond your cell,\nThere dancing up to the chins, that the foul lake\nO'erstunk their feet.\n\nPROSPERO:\nThis was well done, my bird.\nThy shape invisible retain thou still:\nThe trumpery in my house, go bring it hither,\nFor stale to catch these thieves.\n\nARIEL:\nI go, I go.\n\nPROSPERO:\nA devil, a born devil, on whose nature\nNurture can never stick; on whom my pains,\nHumanely taken, all, all lost, quite lost;\nAnd as with age his body uglier grows,\nSo his mind cankers. I will plague them all,\nEven to roaring.\nCome, hang them on this line.\n\nCALIBAN:\nPray you, tread softly, that the blind mole may not\nHear a foot fall: we now are near his cell.\n\nSTEPHANO:\nMonster, your fairy, which you say is\na harmless fairy, has done little better than\nplayed the Jack with us.\n\nTRINCULO:\nMonster, I do smell all horse-piss; at\nwhich my nose is in great indignation.\n\nSTEPHANO:\nSo is mine. Do you hear, monster? If I should take\na displeasure against you, look you,--\n\nTRINCULO:\nThou wert but a lost monster.\n\nCALIBAN:\nGood my lord, give me thy favour still.\nBe patient, for the prize I'll bring thee to\nShall hoodwink this mischance: therefore speak softly.\nAll's hush'd as midnight yet.\n\nTRINCULO:\nAy, but to lose our bottles in the pool,--\n\nSTEPHANO:\nThere is not only disgrace and dishonour in that,\nmonster, but an infinite loss.\n\nTRINCULO:\nThat's more to me than my wetting: yet this is your\nharmless fairy, monster.\n\nSTEPHANO:\nI will fetch off my bottle, though I be o'er ears\nfor my labour.\n\nCALIBAN:\nPrithee, my king, be quiet. Seest thou here,\nThis is the mouth o' the cell: no noise, and enter.\nDo that good mischief which may make this island\nThine own for ever, and I, thy Caliban,\nFor aye thy foot-licker.\n\nSTEPHANO:\nGive me thy hand. I do begin to have bloody thoughts.\n\nTRINCULO:\nO king Stephano! O peer! O worthy Stephano! look\nwhat a wardrobe here is for thee!\n\nCALIBAN:\nLet it alone, thou fool; it is but trash.\n\nTRINCULO:\nO, ho, monster! we know what belongs to a frippery.\nO king Stephano!\n\nSTEPHANO:\nPut off that gown, Trinculo; by this hand, I'll have\nthat gown.\n\nTRINCULO:\nThy grace shall have it.\n\nCALIBAN:\nThe dropsy drown this fool I what do you mean\nTo dote thus on such luggage? Let's alone\nAnd do the murder first: if he awake,\nFrom toe to crown he'll fill our skins with pinches,\nMake us strange stuff.\n\nSTEPHANO:\nBe you quiet, monster. Mistress line,\nis not this my jerkin? Now is the jerkin under\nthe line: now, jerkin, you are like to lose your\nhair and prove a bald jerkin.\n\nTRINCULO:\nDo, do: we steal by line and level, an't like your grace.\n\nSTEPHANO:\nI thank thee for that jest; here's a garment for't:\nwit shall not go unrewarded while I am king of this\ncountry. 'Steal by line and level' is an excellent\npass of pate; there's another garment for't.\n\nTRINCULO:\nMonster, come, put some lime upon your fingers, and\naway with the rest.\n\nCALIBAN:\nI will have none on't: we shall lose our time,\nAnd all be turn'd to barnacles, or to apes\nWith foreheads villanous low.\n\nSTEPHANO:\nMonster, lay-to your fingers: help to bear this\naway where my hogshead of wine is, or I'll turn you\nout of my kingdom: go to, carry this.\n\nTRINCULO:\nAnd this.\n\nSTEPHANO:\nAy, and this.\n\nPROSPERO:\nHey, Mountain, hey!\n\nARIEL:\nSilver I there it goes, Silver!\n\nPROSPERO:\nFury, Fury! there, Tyrant, there! hark! hark!\nGo charge my goblins that they grind their joints\nWith dry convulsions, shorten up their sinews\nWith aged cramps, and more pinch-spotted make them\nThan pard or cat o' mountain.\n\nARIEL:\nHark, they roar!\n\nPROSPERO:\nLet them be hunted soundly. At this hour\nLie at my mercy all mine enemies:\nShortly shall all my labours end, and thou\nShalt have the air at freedom: for a little\nFollow, and do me service.\n\nPROSPERO:\nNow does my project gather to a head:\nMy charms crack not; my spirits obey; and time\nGoes upright with his carriage. How's the day?\n\nARIEL:\nOn the sixth hour; at which time, my lord,\nYou said our work should cease.\n\nPROSPERO:\nI did say so,\nWhen first I raised the tempest. Say, my spirit,\nHow fares the king and's followers?\n\nARIEL:\nConfined together\nIn the same fashion as you gave in charge,\nJust as you left them; all prisoners, sir,\nIn the line-grove which weather-fends your cell;\nThey cannot budge till your release. The king,\nHis brother and yours, abide all three distracted\nAnd the remainder mourning over them,\nBrimful of sorrow and dismay; but chiefly\nHim that you term'd, sir, 'The good old lord Gonzalo;'\nHis tears run down his beard, like winter's drops\nFrom eaves of reeds. Your charm so strongly works 'em\nThat if you now beheld them, your affections\nWould become tender.\n\nPROSPERO:\nDost thou think so, spirit?\n\nARIEL:\nMine would, sir, were I human.\n\nPROSPERO:\nAnd mine shall.\nHast thou, which art but air, a touch, a feeling\nOf their afflictions, and shall not myself,\nOne of their kind, that relish all as sharply,\nPassion as they, be kindlier moved than thou art?\nThough with their high wrongs I am struck to the quick,\nYet with my nobler reason 'gaitist my fury\nDo I take part: the rarer action is\nIn virtue than in vengeance: they being penitent,\nThe sole drift of my purpose doth extend\nNot a frown further. Go release them, Ariel:\nMy charms I'll break, their senses I'll restore,\nAnd they shall be themselves.\n\nARIEL:\nI'll fetch them, sir.\n\nPROSPERO:\nYe elves of hills, brooks, standing lakes and groves,\nAnd ye that on the sands with printless foot\nDo chase the ebbing Neptune and do fly him\nWhen he comes back; you demi-puppets that\nBy moonshine do the green sour ringlets make,\nWhereof the ewe not bites, and you whose pastime\nIs to make midnight mushrooms, that rejoice\nTo hear the solemn curfew; by whose aid,\nWeak masters though ye be, I have bedimm'd\nThe noontide sun, call'd forth the mutinous winds,\nAnd 'twixt the green sea and the azured vault\nSet roaring war: to the dread rattling thunder\nHave I given fire and rifted Jove's stout oak\nWith his own bolt; the strong-based promontory\nHave I made shake and by the spurs pluck'd up\nThe pine and cedar: graves at my command\nHave waked their sleepers, oped, and let 'em forth\nBy my so potent art. But this rough magic\nI here abjure, and, when I have required\nSome heavenly music, which even now I do,\nTo work mine end upon their senses that\nThis airy charm is for, I'll break my staff,\nBury it certain fathoms in the earth,\nAnd deeper than did ever plummet sound\nI'll drown my book.\nA solemn air and the best comforter\nTo an unsettled fancy cure thy brains,\nNow useless, boil'd within thy skull! There stand,\nFor you are spell-stopp'd.\nHoly Gonzalo, honourable man,\nMine eyes, even sociable to the show of thine,\nFall fellowly drops. The charm dissolves apace,\nAnd as the morning steals upon the night,\nMelting the darkness, so their rising senses\nBegin to chase the ignorant fumes that mantle\nTheir clearer reason. O good Gonzalo,\nMy true preserver, and a loyal sir\nTo him you follow'st! I will pay thy graces\nHome both in word and deed. Most cruelly\nDidst thou, Alonso, use me and my daughter:\nThy brother was a furtherer in the act.\nThou art pinch'd fort now, Sebastian. Flesh and blood,\nYou, brother mine, that entertain'd ambition,\nExpell'd remorse and nature; who, with Sebastian,\nWhose inward pinches therefore are most strong,\nWould here have kill'd your king; I do forgive thee,\nUnnatural though thou art. Their understanding\nBegins to swell, and the approaching tide\nWill shortly fill the reasonable shore\nThat now lies foul and muddy. Not one of them\nThat yet looks on me, or would know me Ariel,\nFetch me the hat and rapier in my cell:\nI will discase me, and myself present\nAs I was sometime Milan: quickly, spirit;\nThou shalt ere long be free.\nWhere the bee sucks. there suck I:\nIn a cowslip's bell I lie;\nThere I couch when owls do cry.\nOn the bat's back I do fly\nAfter summer merrily.\nMerrily, merrily shall I live now\nUnder the blossom that hangs on the bough.\n\nPROSPERO:\nWhy, that's my dainty Ariel! I shall miss thee:\nBut yet thou shalt have freedom: so, so, so.\nTo the king's ship, invisible as thou art:\nThere shalt thou find the mariners asleep\nUnder the hatches; the master and the boatswain\nBeing awake, enforce them to this place,\nAnd presently, I prithee.\n\nARIEL:\nI drink the air before me, and return\nOr ere your pulse twice beat.\n\nGONZALO:\nAll torment, trouble, wonder and amazement\nInhabits here: some heavenly power guide us\nOut of this fearful country!\n\nPROSPERO:\nBehold, sir king,\nThe wronged Duke of Milan, Prospero:\nFor more assurance that a living prince\nDoes now speak to thee, I embrace thy body;\nAnd to thee and thy company I bid\nA hearty welcome.\n\nALONSO:\nWhether thou best he or no,\nOr some enchanted trifle to abuse me,\nAs late I have been, I not know: thy pulse\nBeats as of flesh and blood; and, since I saw thee,\nThe affliction of my mind amends, with which,\nI fear, a madness held me: this must crave,\nAn if this be at all, a most strange story.\nThy dukedom I resign and do entreat\nThou pardon me my wrongs. But how should Prospero\nBe living and be here?\n\nPROSPERO:\nFirst, noble friend,\nLet me embrace thine age, whose honour cannot\nBe measured or confined.\n\nGONZALO:\nWhether this be\nOr be not, I'll not swear.\n\nPROSPERO:\nYou do yet taste\nSome subtilties o' the isle, that will not let you\nBelieve things certain. Welcome, my friends all!\nBut you, my brace of lords, were I so minded,\nI here could pluck his highness' frown upon you\nAnd justify you traitors: at this time\nI will tell no tales.\n\nSEBASTIAN:\n\nPROSPERO:\nNo.\nFor you, most wicked sir, whom to call brother\nWould even infect my mouth, I do forgive\nThy rankest fault; all of them; and require\nMy dukedom of thee, which perforce, I know,\nThou must restore.\n\nALONSO:\nIf thou be'st Prospero,\nGive us particulars of thy preservation;\nHow thou hast met us here, who three hours since\nWere wreck'd upon this shore; where I have lost--\nHow sharp the point of this remembrance is!--\nMy dear son Ferdinand.\n\nPROSPERO:\nI am woe for't, sir.\n\nALONSO:\nIrreparable is the loss, and patience\nSays it is past her cure.\n\nPROSPERO:\nI rather think\nYou have not sought her help, of whose soft grace\nFor the like loss I have her sovereign aid\nAnd rest myself content.\n\nALONSO:\nYou the like loss!\n\nPROSPERO:\nAs great to me as late; and, supportable\nTo make the dear loss, have I means much weaker\nThan you may call to comfort you, for I\nHave lost my daughter.\n\nALONSO:\nA daughter?\nO heavens, that they were living both in Naples,\nThe king and queen there! that they were, I wish\nMyself were mudded in that oozy bed\nWhere my son lies. When did you lose your daughter?\n\nPROSPERO:\nIn this last tempest. I perceive these lords\nAt this encounter do so much admire\nThat they devour their reason and scarce think\nTheir eyes do offices of truth, their words\nAre natural breath: but, howsoe'er you have\nBeen justled from your senses, know for certain\nThat I am Prospero and that very duke\nWhich was thrust forth of Milan, who most strangely\nUpon this shore, where you were wreck'd, was landed,\nTo be the lord on't. No more yet of this;\nFor 'tis a chronicle of day by day,\nNot a relation for a breakfast nor\nBefitting this first meeting. Welcome, sir;\nThis cell's my court: here have I few attendants\nAnd subjects none abroad: pray you, look in.\nMy dukedom since you have given me again,\nI will requite you with as good a thing;\nAt least bring forth a wonder, to content ye\nAs much as me my dukedom.\n\nMIRANDA:\nSweet lord, you play me false.\n\nFERDINAND:\nNo, my dear'st love,\nI would not for the world.\n\nMIRANDA:\nYes, for a score of kingdoms you should wrangle,\nAnd I would call it, fair play.\n\nALONSO:\nIf this prove\nA vision of the Island, one dear son\nShall I twice lose.\n\nSEBASTIAN:\nA most high miracle!\n\nFERDINAND:\nThough the seas threaten, they are merciful;\nI have cursed them without cause.\n\nALONSO:\nNow all the blessings\nOf a glad father compass thee about!\nArise, and say how thou camest here.\n\nMIRANDA:\nO, wonder!\nHow many goodly creatures are there here!\nHow beauteous mankind is! O brave new world,\nThat has such people in't!\n\nPROSPERO:\n'Tis new to thee.\n\nALONSO:\nWhat is this maid with whom thou wast at play?\nYour eld'st acquaintance cannot be three hours:\nIs she the goddess that hath sever'd us,\nAnd brought us thus together?\n\nFERDINAND:\nSir, she is mortal;\nBut by immortal Providence she's mine:\nI chose her when I could not ask my father\nFor his advice, nor thought I had one. She\nIs daughter to this famous Duke of Milan,\nOf whom so often I have heard renown,\nBut never saw before; of whom I have\nReceived a second life; and second father\nThis lady makes him to me.\n\nALONSO:\nI am hers:\nBut, O, how oddly will it sound that I\nMust ask my child forgiveness!\n\nPROSPERO:\nThere, sir, stop:\nLet us not burthen our remembrance with\nA heaviness that's gone.\n\nGONZALO:\nI have inly wept,\nOr should have spoke ere this. Look down, you god,\nAnd on this couple drop a blessed crown!\nFor it is you that have chalk'd forth the way\nWhich brought us hither.\n\nALONSO:\nI say, Amen, Gonzalo!\n\nGONZALO:\nWas Milan thrust from Milan, that his issue\nShould become kings of Naples? O, rejoice\nBeyond a common joy, and set it down\nWith gold on lasting pillars: In one voyage\nDid Claribel her husband find at Tunis,\nAnd Ferdinand, her brother, found a wife\nWhere he himself was lost, Prospero his dukedom\nIn a poor isle and all of us ourselves\nWhen no man was his own.\n\nALONSO:\n\nGONZALO:\nBe it so! Amen!\nO, look, sir, look, sir! here is more of us:\nI prophesied, if a gallows were on land,\nThis fellow could not drown. Now, blasphemy,\nThat swear'st grace o'erboard, not an oath on shore?\nHast thou no mouth by land? What is the news?\n\nBoatswain:\nThe best news is, that we have safely found\nOur king and company; the next, our ship--\nWhich, but three glasses since, we gave out split--\nIs tight and yare and bravely rigg'd as when\nWe first put out to sea.\n\nARIEL:\n\nPROSPERO:\n\nALONSO:\nThese are not natural events; they strengthen\nFrom strange to stranger. Say, how came you hither?\n\nBoatswain:\nIf I did think, sir, I were well awake,\nI'ld strive to tell you. We were dead of sleep,\nAnd--how we know not--all clapp'd under hatches;\nWhere but even now with strange and several noises\nOf roaring, shrieking, howling, jingling chains,\nAnd more diversity of sounds, all horrible,\nWe were awaked; straightway, at liberty;\nWhere we, in all her trim, freshly beheld\nOur royal, good and gallant ship, our master\nCapering to eye her: on a trice, so please you,\nEven in a dream, were we divided from them\nAnd were brought moping hither.\n\nARIEL:\n\nPROSPERO:\n\nALONSO:\nThis is as strange a maze as e'er men trod\nAnd there is in this business more than nature\nWas ever conduct of: some oracle\nMust rectify our knowledge.\n\nPROSPERO:\nSir, my liege,\nDo not infest your mind with beating on\nThe strangeness of this business; at pick'd leisure\nWhich shall be shortly, single I'll resolve you,\nWhich to you shall seem probable, of every\nThese happen'd accidents; till when, be cheerful\nAnd think of each thing well.\nCome hither, spirit:\nSet Caliban and his companions free;\nUntie the spell.\nHow fares my gracious sir?\nThere are yet missing of your company\nSome few odd lads that you remember not.\n\nSTEPHANO:\nEvery man shift for all the rest, and\nlet no man take care for himself; for all is\nbut fortune. Coragio, bully-monster, coragio!\n\nTRINCULO:\nIf these be true spies which I wear in my head,\nhere's a goodly sight.\n\nCALIBAN:\nO Setebos, these be brave spirits indeed!\nHow fine my master is! I am afraid\nHe will chastise me.\n\nSEBASTIAN:\nHa, ha!\nWhat things are these, my lord Antonio?\nWill money buy 'em?\n\nANTONIO:\nVery like; one of them\nIs a plain fish, and, no doubt, marketable.\n\nPROSPERO:\nMark but the badges of these men, my lords,\nThen say if they be true. This mis-shapen knave,\nHis mother was a witch, and one so strong\nThat could control the moon, make flows and ebbs,\nAnd deal in her command without her power.\nThese three have robb'd me; and this demi-devil--\nFor he's a bastard one--had plotted with them\nTo take my life. Two of these fellows you\nMust know and own; this thing of darkness!\nAcknowledge mine.\n\nCALIBAN:\nI shall be pinch'd to death.\n\nALONSO:\nIs not this Stephano, my drunken butler?\n\nSEBASTIAN:\nHe is drunk now: where had he wine?\n\nALONSO:\nAnd Trinculo is reeling ripe: where should they\nFind this grand liquor that hath gilded 'em?\nHow camest thou in this pickle?\n\nTRINCULO:\nI have been in such a pickle since I\nsaw you last that, I fear me, will never out of\nmy bones: I shall not fear fly-blowing.\n\nSEBASTIAN:\nWhy, how now, Stephano!\n\nSTEPHANO:\nO, touch me not; I am not Stephano, but a cramp.\n\nPROSPERO:\nYou'ld be king o' the isle, sirrah?\n\nSTEPHANO:\nI should have been a sore one then.\n\nALONSO:\nThis is a strange thing as e'er I look'd on.\n\nPROSPERO:\nHe is as disproportion'd in his manners\nAs in his shape. Go, sirrah, to my cell;\nTake with you your companions; as you look\nTo have my pardon, trim it handsomely.\n\nCALIBAN:\nAy, that I will; and I'll be wise hereafter\nAnd seek for grace. What a thrice-double ass\nWas I, to take this drunkard for a god\nAnd worship this dull fool!\n\nPROSPERO:\nGo to; away!\n\nALONSO:\nHence, and bestow your luggage where you found it.\n\nSEBASTIAN:\nOr stole it, rather.\n\nPROSPERO:\nSir, I invite your highness and your train\nTo my poor cell, where you shall take your rest\nFor this one night; which, part of it, I'll waste\nWith such discourse as, I not doubt, shall make it\nGo quick away; the story of my life\nAnd the particular accidents gone by\nSince I came to this isle: and in the morn\nI'll bring you to your ship and so to Naples,\nWhere I have hope to see the nuptial\nOf these our dear-beloved solemnized;\nAnd thence retire me to my Milan, where\nEvery third thought shall be my grave.\n\nALONSO:\nI long\nTo hear the story of your life, which must\nTake the ear strangely.\n\nPROSPERO:\nI'll deliver all;\nAnd promise you calm seas, auspicious gales\nAnd sail so expeditious that shall catch\nYour royal fleet far off.\nMy Ariel, chick,\nThat is thy charge: then to the elements\nBe free, and fare thou well! Please you, draw near.\n\n[PROSPERO]:\nNow my charms are all o'erthrown,\nAnd what strength I have's mine own,\nWhich is most faint: now, 'tis true,\nI must be here confined by you,\nOr sent to Naples. Let me not,\nSince I have my dukedom got\nAnd pardon'd the deceiver, dwell\nIn this bare island by your spell;\nBut release me from my bands\nWith the help of your good hands:\nGentle breath of yours my sails\nMust fill, or else my project fails,\nWhich was to please. Now I want\nSpirits to enforce, art to enchant,\nAnd my ending is despair,\nUnless I be relieved by prayer,\nWhich pierces so that it assaults\nMercy itself and frees all faults.\nAs you from crimes would pardon'd be,\nLet your indulgence set me free.\n\nLEONATO:\nI learn in this letter that Don Peter of Arragon\ncomes this night to Messina.\n\nMessenger:\nHe is very near by this: he was not three leagues off\nwhen I left him.\n\nLEONATO:\nHow many gentlemen have you lost in this action?\n\nMessenger:\nBut few of any sort, and none of name.\n\nLEONATO:\nA victory is twice itself when the achiever brings\nhome full numbers. I find here that Don Peter hath\nbestowed much honour on a young Florentine called Claudio.\n\nMessenger:\nMuch deserved on his part and equally remembered by\nDon Pedro: he hath borne himself beyond the\npromise of his age, doing, in the figure of a lamb,\nthe feats of a lion: he hath indeed better\nbettered expectation than you must expect of me to\ntell you how.\n\nLEONATO:\nHe hath an uncle here in Messina will be very much\nglad of it.\n\nMessenger:\nI have already delivered him letters, and there\nappears much joy in him; even so much that joy could\nnot show itself modest enough without a badge of\nbitterness.\n\nLEONATO:\nDid he break out into tears?\n\nMessenger:\nIn great measure.\n\nLEONATO:\nA kind overflow of kindness: there are no faces\ntruer than those that are so washed. How much\nbetter is it to weep at joy than to joy at weeping!\n\nBEATRICE:\nI pray you, is Signior Mountanto returned from the\nwars or no?\n\nMessenger:\nI know none of that name, lady: there was none such\nin the army of any sort.\n\nLEONATO:\nWhat is he that you ask for, niece?\n\nHERO:\nMy cousin means Signior Benedick of Padua.\n\nMessenger:\nO, he's returned; and as pleasant as ever he was.\n\nBEATRICE:\nHe set up his bills here in Messina and challenged\nCupid at the flight; and my uncle's fool, reading\nthe challenge, subscribed for Cupid, and challenged\nhim at the bird-bolt. I pray you, how many hath he\nkilled and eaten in these wars? But how many hath\nhe killed? for indeed I promised to eat all of his killing.\n\nLEONATO:\nFaith, niece, you tax Signior Benedick too much;\nbut he'll be meet with you, I doubt it not.\n\nMessenger:\nHe hath done good service, lady, in these wars.\n\nBEATRICE:\nYou had musty victual, and he hath holp to eat it:\nhe is a very valiant trencherman; he hath an\nexcellent stomach.\n\nMessenger:\nAnd a good soldier too, lady.\n\nBEATRICE:\nAnd a good soldier to a lady: but what is he to a lord?\n\nMessenger:\nA lord to a lord, a man to a man; stuffed with all\nhonourable virtues.\n\nBEATRICE:\nIt is so, indeed; he is no less than a stuffed man:\nbut for the stuffing,--well, we are all mortal.\n\nLEONATO:\nYou must not, sir, mistake my niece. There is a\nkind of merry war betwixt Signior Benedick and her:\nthey never meet but there's a skirmish of wit\nbetween them.\n\nBEATRICE:\nAlas! he gets nothing by that. In our last\nconflict four of his five wits went halting off, and\nnow is the whole man governed with one: so that if\nhe have wit enough to keep himself warm, let him\nbear it for a difference between himself and his\nhorse; for it is all the wealth that he hath left,\nto be known a reasonable creature. Who is his\ncompanion now? He hath every month a new sworn brother.\n\nMessenger:\nIs't possible?\n\nBEATRICE:\nVery easily possible: he wears his faith but as\nthe fashion of his hat; it ever changes with the\nnext block.\n\nMessenger:\nI see, lady, the gentleman is not in your books.\n\nBEATRICE:\nNo; an he were, I would burn my study. But, I pray\nyou, who is his companion? Is there no young\nsquarer now that will make a voyage with him to the devil?\n\nMessenger:\nHe is most in the company of the right noble Claudio.\n\nBEATRICE:\nO Lord, he will hang upon him like a disease: he\nis sooner caught than the pestilence, and the taker\nruns presently mad. God help the noble Claudio! if\nhe have caught the Benedick, it will cost him a\nthousand pound ere a' be cured.\n\nMessenger:\nI will hold friends with you, lady.\n\nBEATRICE:\nDo, good friend.\n\nLEONATO:\nYou will never run mad, niece.\n\nBEATRICE:\nNo, not till a hot January.\n\nMessenger:\nDon Pedro is approached.\n\nDON PEDRO:\nGood Signior Leonato, you are come to meet your\ntrouble: the fashion of the world is to avoid\ncost, and you encounter it.\n\nLEONATO:\nNever came trouble to my house in the likeness of\nyour grace: for trouble being gone, comfort should\nremain; but when you depart from me, sorrow abides\nand happiness takes his leave.\n\nDON PEDRO:\nYou embrace your charge too willingly. I think this\nis your daughter.\n\nLEONATO:\nHer mother hath many times told me so.\n\nBENEDICK:\nWere you in doubt, sir, that you asked her?\n\nLEONATO:\nSignior Benedick, no; for then were you a child.\n\nDON PEDRO:\nYou have it full, Benedick: we may guess by this\nwhat you are, being a man. Truly, the lady fathers\nherself. Be happy, lady; for you are like an\nhonourable father.\n\nBENEDICK:\nIf Signior Leonato be her father, she would not\nhave his head on her shoulders for all Messina, as\nlike him as she is.\n\nBEATRICE:\nI wonder that you will still be talking, Signior\nBenedick: nobody marks you.\n\nBENEDICK:\nWhat, my dear Lady Disdain! are you yet living?\n\nBEATRICE:\nIs it possible disdain should die while she hath\nsuch meet food to feed it as Signior Benedick?\nCourtesy itself must convert to disdain, if you come\nin her presence.\n\nBENEDICK:\nThen is courtesy a turncoat. But it is certain I\nam loved of all ladies, only you excepted: and I\nwould I could find in my heart that I had not a hard\nheart; for, truly, I love none.\n\nBEATRICE:\nA dear happiness to women: they would else have\nbeen troubled with a pernicious suitor. I thank God\nand my cold blood, I am of your humour for that: I\nhad rather hear my dog bark at a crow than a man\nswear he loves me.\n\nBENEDICK:\nGod keep your ladyship still in that mind! so some\ngentleman or other shall 'scape a predestinate\nscratched face.\n\nBEATRICE:\nScratching could not make it worse, an 'twere such\na face as yours were.\n\nBENEDICK:\nWell, you are a rare parrot-teacher.\n\nBEATRICE:\nA bird of my tongue is better than a beast of yours.\n\nBENEDICK:\nI would my horse had the speed of your tongue, and\nso good a continuer. But keep your way, i' God's\nname; I have done.\n\nBEATRICE:\nYou always end with a jade's trick: I know you of old.\n\nDON PEDRO:\nThat is the sum of all, Leonato. Signior Claudio\nand Signior Benedick, my dear friend Leonato hath\ninvited you all. I tell him we shall stay here at\nthe least a month; and he heartily prays some\noccasion may detain us longer. I dare swear he is no\nhypocrite, but prays from his heart.\n\nLEONATO:\nIf you swear, my lord, you shall not be forsworn.\nLet me bid you welcome, my lord: being reconciled to\nthe prince your brother, I owe you all duty.\n\nDON JOHN:\nI thank you: I am not of many words, but I thank\nyou.\n\nLEONATO:\nPlease it your grace lead on?\n\nDON PEDRO:\nYour hand, Leonato; we will go together.\n\nCLAUDIO:\nBenedick, didst thou note the daughter of Signior Leonato?\n\nBENEDICK:\nI noted her not; but I looked on her.\n\nCLAUDIO:\nIs she not a modest young lady?\n\nBENEDICK:\nDo you question me, as an honest man should do, for\nmy simple true judgment; or would you have me speak\nafter my custom, as being a professed tyrant to their sex?\n\nCLAUDIO:\nNo; I pray thee speak in sober judgment.\n\nBENEDICK:\nWhy, i' faith, methinks she's too low for a high\npraise, too brown for a fair praise and too little\nfor a great praise: only this commendation I can\nafford her, that were she other than she is, she\nwere unhandsome; and being no other but as she is, I\ndo not like her.\n\nCLAUDIO:\nThou thinkest I am in sport: I pray thee tell me\ntruly how thou likest her.\n\nBENEDICK:\nWould you buy her, that you inquire after her?\n\nCLAUDIO:\nCan the world buy such a jewel?\n\nBENEDICK:\nYea, and a case to put it into. But speak you this\nwith a sad brow? or do you play the flouting Jack,\nto tell us Cupid is a good hare-finder and Vulcan a\nrare carpenter? Come, in what key shall a man take\nyou, to go in the song?\n\nCLAUDIO:\nIn mine eye she is the sweetest lady that ever I\nlooked on.\n\nBENEDICK:\nI can see yet without spectacles and I see no such\nmatter: there's her cousin, an she were not\npossessed with a fury, exceeds her as much in beauty\nas the first of May doth the last of December. But I\nhope you have no intent to turn husband, have you?\n\nCLAUDIO:\nI would scarce trust myself, though I had sworn the\ncontrary, if Hero would be my wife.\n\nBENEDICK:\nIs't come to this? In faith, hath not the world\none man but he will wear his cap with suspicion?\nShall I never see a bachelor of three-score again?\nGo to, i' faith; an thou wilt needs thrust thy neck\ninto a yoke, wear the print of it and sigh away\nSundays. Look Don Pedro is returned to seek you.\n\nDON PEDRO:\nWhat secret hath held you here, that you followed\nnot to Leonato's?\n\nBENEDICK:\nI would your grace would constrain me to tell.\n\nDON PEDRO:\nI charge thee on thy allegiance.\n\nBENEDICK:\nYou hear, Count Claudio: I can be secret as a dumb\nman; I would have you think so; but, on my\nallegiance, mark you this, on my allegiance. He is\nin love. With who? now that is your grace's part.\nMark how short his answer is;--With Hero, Leonato's\nshort daughter.\n\nCLAUDIO:\nIf this were so, so were it uttered.\n\nBENEDICK:\nLike the old tale, my lord: 'it is not so, nor\n'twas not so, but, indeed, God forbid it should be\nso.'\n\nCLAUDIO:\nIf my passion change not shortly, God forbid it\nshould be otherwise.\n\nDON PEDRO:\nAmen, if you love her; for the lady is very well worthy.\n\nCLAUDIO:\nYou speak this to fetch me in, my lord.\n\nDON PEDRO:\nBy my troth, I speak my thought.\n\nCLAUDIO:\nAnd, in faith, my lord, I spoke mine.\n\nBENEDICK:\nAnd, by my two faiths and troths, my lord, I spoke mine.\n\nCLAUDIO:\nThat I love her, I feel.\n\nDON PEDRO:\nThat she is worthy, I know.\n\nBENEDICK:\nThat I neither feel how she should be loved nor\nknow how she should be worthy, is the opinion that\nfire cannot melt out of me: I will die in it at the stake.\n\nDON PEDRO:\nThou wast ever an obstinate heretic in the despite\nof beauty.\n\nCLAUDIO:\nAnd never could maintain his part but in the force\nof his will.\n\nBENEDICK:\nThat a woman conceived me, I thank her; that she\nbrought me up, I likewise give her most humble\nthanks: but that I will have a recheat winded in my\nforehead, or hang my bugle in an invisible baldrick,\nall women shall pardon me. Because I will not do\nthem the wrong to mistrust any, I will do myself the\nright to trust none; and the fine is, for the which\nI may go the finer, I will live a bachelor.\n\nDON PEDRO:\nI shall see thee, ere I die, look pale with love.\n\nBENEDICK:\nWith anger, with sickness, or with hunger, my lord,\nnot with love: prove that ever I lose more blood\nwith love than I will get again with drinking, pick\nout mine eyes with a ballad-maker's pen and hang me\nup at the door of a brothel-house for the sign of\nblind Cupid.\n\nDON PEDRO:\nWell, if ever thou dost fall from this faith, thou\nwilt prove a notable argument.\n\nBENEDICK:\nIf I do, hang me in a bottle like a cat and shoot\nat me; and he that hits me, let him be clapped on\nthe shoulder, and called Adam.\n\nDON PEDRO:\nWell, as time shall try: 'In time the savage bull\ndoth bear the yoke.'\n\nBENEDICK:\nThe savage bull may; but if ever the sensible\nBenedick bear it, pluck off the bull's horns and set\nthem in my forehead: and let me be vilely painted,\nand in such great letters as they write 'Here is\ngood horse to hire,' let them signify under my sign\n'Here you may see Benedick the married man.'\n\nCLAUDIO:\nIf this should ever happen, thou wouldst be horn-mad.\n\nDON PEDRO:\nNay, if Cupid have not spent all his quiver in\nVenice, thou wilt quake for this shortly.\n\nBENEDICK:\nI look for an earthquake too, then.\n\nDON PEDRO:\nWell, you temporize with the hours. In the\nmeantime, good Signior Benedick, repair to\nLeonato's: commend me to him and tell him I will\nnot fail him at supper; for indeed he hath made\ngreat preparation.\n\nBENEDICK:\nI have almost matter enough in me for such an\nembassage; and so I commit you--\n\nCLAUDIO:\nTo the tuition of God: From my house, if I had it,--\n\nDON PEDRO:\nThe sixth of July: Your loving friend, Benedick.\n\nBENEDICK:\nNay, mock not, mock not. The body of your\ndiscourse is sometime guarded with fragments, and\nthe guards are but slightly basted on neither: ere\nyou flout old ends any further, examine your\nconscience: and so I leave you.\n\nCLAUDIO:\nMy liege, your highness now may do me good.\n\nDON PEDRO:\nMy love is thine to teach: teach it but how,\nAnd thou shalt see how apt it is to learn\nAny hard lesson that may do thee good.\n\nCLAUDIO:\nHath Leonato any son, my lord?\n\nDON PEDRO:\nNo child but Hero; she's his only heir.\nDost thou affect her, Claudio?\n\nCLAUDIO:\nO, my lord,\nWhen you went onward on this ended action,\nI look'd upon her with a soldier's eye,\nThat liked, but had a rougher task in hand\nThan to drive liking to the name of love:\nBut now I am return'd and that war-thoughts\nHave left their places vacant, in their rooms\nCome thronging soft and delicate desires,\nAll prompting me how fair young Hero is,\nSaying, I liked her ere I went to wars.\n\nDON PEDRO:\nThou wilt be like a lover presently\nAnd tire the hearer with a book of words.\nIf thou dost love fair Hero, cherish it,\nAnd I will break with her and with her father,\nAnd thou shalt have her. Was't not to this end\nThat thou began'st to twist so fine a story?\n\nCLAUDIO:\nHow sweetly you do minister to love,\nThat know love's grief by his complexion!\nBut lest my liking might too sudden seem,\nI would have salved it with a longer treatise.\n\nDON PEDRO:\nWhat need the bridge much broader than the flood?\nThe fairest grant is the necessity.\nLook, what will serve is fit: 'tis once, thou lovest,\nAnd I will fit thee with the remedy.\nI know we shall have revelling to-night:\nI will assume thy part in some disguise\nAnd tell fair Hero I am Claudio,\nAnd in her bosom I'll unclasp my heart\nAnd take her hearing prisoner with the force\nAnd strong encounter of my amorous tale:\nThen after to her father will I break;\nAnd the conclusion is, she shall be thine.\nIn practise let us put it presently.\n\nLEONATO:\nHow now, brother! Where is my cousin, your son?\nhath he provided this music?\n\nANTONIO:\nHe is very busy about it. But, brother, I can tell\nyou strange news that you yet dreamt not of.\n\nLEONATO:\nAre they good?\n\nANTONIO:\nAs the event stamps them: but they have a good\ncover; they show well outward. The prince and Count\nClaudio, walking in a thick-pleached alley in mine\norchard, were thus much overheard by a man of mine:\nthe prince discovered to Claudio that he loved my\nniece your daughter and meant to acknowledge it\nthis night in a dance: and if he found her\naccordant, he meant to take the present time by the\ntop and instantly break with you of it.\n\nLEONATO:\nHath the fellow any wit that told you this?\n\nANTONIO:\nA good sharp fellow: I will send for him; and\nquestion him yourself.\n\nLEONATO:\nNo, no; we will hold it as a dream till it appear\nitself: but I will acquaint my daughter withal,\nthat she may be the better prepared for an answer,\nif peradventure this be true. Go you and tell her of it.\nCousins, you know what you have to do. O, I cry you\nmercy, friend; go you with me, and I will use your\nskill. Good cousin, have a care this busy time.\n\nCONRADE:\nWhat the good-year, my lord! why are you thus out\nof measure sad?\n\nDON JOHN:\nThere is no measure in the occasion that breeds;\ntherefore the sadness is without limit.\n\nCONRADE:\nYou should hear reason.\n\nDON JOHN:\nAnd when I have heard it, what blessing brings it?\n\nCONRADE:\nIf not a present remedy, at least a patient\nsufferance.\n\nDON JOHN:\nI wonder that thou, being, as thou sayest thou art,\nborn under Saturn, goest about to apply a moral\nmedicine to a mortifying mischief. I cannot hide\nwhat I am: I must be sad when I have cause and smile\nat no man's jests, eat when I have stomach and wait\nfor no man's leisure, sleep when I am drowsy and\ntend on no man's business, laugh when I am merry and\nclaw no man in his humour.\n\nCONRADE:\nYea, but you must not make the full show of this\ntill you may do it without controlment. You have of\nlate stood out against your brother, and he hath\nta'en you newly into his grace; where it is\nimpossible you should take true root but by the\nfair weather that you make yourself: it is needful\nthat you frame the season for your own harvest.\n\nDON JOHN:\nI had rather be a canker in a hedge than a rose in\nhis grace, and it better fits my blood to be\ndisdained of all than to fashion a carriage to rob\nlove from any: in this, though I cannot be said to\nbe a flattering honest man, it must not be denied\nbut I am a plain-dealing villain. I am trusted with\na muzzle and enfranchised with a clog; therefore I\nhave decreed not to sing in my cage. If I had my\nmouth, I would bite; if I had my liberty, I would do\nmy liking: in the meantime let me be that I am and\nseek not to alter me.\n\nCONRADE:\nCan you make no use of your discontent?\n\nDON JOHN:\nI make all use of it, for I use it only.\nWho comes here?\nWhat news, Borachio?\n\nBORACHIO:\nI came yonder from a great supper: the prince your\nbrother is royally entertained by Leonato: and I\ncan give you intelligence of an intended marriage.\n\nDON JOHN:\nWill it serve for any model to build mischief on?\nWhat is he for a fool that betroths himself to\nunquietness?\n\nBORACHIO:\nMarry, it is your brother's right hand.\n\nDON JOHN:\nWho? the most exquisite Claudio?\n\nBORACHIO:\nEven he.\n\nDON JOHN:\nA proper squire! And who, and who? which way looks\nhe?\n\nBORACHIO:\nMarry, on Hero, the daughter and heir of Leonato.\n\nDON JOHN:\nA very forward March-chick! How came you to this?\n\nBORACHIO:\nBeing entertained for a perfumer, as I was smoking a\nmusty room, comes me the prince and Claudio, hand\nin hand in sad conference: I whipt me behind the\narras; and there heard it agreed upon that the\nprince should woo Hero for himself, and having\nobtained her, give her to Count Claudio.\n\nDON JOHN:\nCome, come, let us thither: this may prove food to\nmy displeasure. That young start-up hath all the\nglory of my overthrow: if I can cross him any way, I\nbless myself every way. You are both sure, and will assist me?\n\nCONRADE:\nTo the death, my lord.\n\nDON JOHN:\nLet us to the great supper: their cheer is the\ngreater that I am subdued. Would the cook were of\nmy mind! Shall we go prove what's to be done?\n\nBORACHIO:\nWe'll wait upon your lordship.\n\nLEONATO:\nWas not Count John here at supper?\n\nANTONIO:\nI saw him not.\n\nBEATRICE:\nHow tartly that gentleman looks! I never can see\nhim but I am heart-burned an hour after.\n\nHERO:\nHe is of a very melancholy disposition.\n\nBEATRICE:\nHe were an excellent man that were made just in the\nmidway between him and Benedick: the one is too\nlike an image and says nothing, and the other too\nlike my lady's eldest son, evermore tattling.\n\nLEONATO:\nThen half Signior Benedick's tongue in Count John's\nmouth, and half Count John's melancholy in Signior\nBenedick's face,--\n\nBEATRICE:\nWith a good leg and a good foot, uncle, and money\nenough in his purse, such a man would win any woman\nin the world, if a' could get her good-will.\n\nLEONATO:\nBy my troth, niece, thou wilt never get thee a\nhusband, if thou be so shrewd of thy tongue.\n\nANTONIO:\nIn faith, she's too curst.\n\nBEATRICE:\nToo curst is more than curst: I shall lessen God's\nsending that way; for it is said, 'God sends a curst\ncow short horns;' but to a cow too curst he sends none.\n\nLEONATO:\nSo, by being too curst, God will send you no horns.\n\nBEATRICE:\nJust, if he send me no husband; for the which\nblessing I am at him upon my knees every morning and\nevening. Lord, I could not endure a husband with a\nbeard on his face: I had rather lie in the woollen.\n\nLEONATO:\nYou may light on a husband that hath no beard.\n\nBEATRICE:\nWhat should I do with him? dress him in my apparel\nand make him my waiting-gentlewoman? He that hath a\nbeard is more than a youth, and he that hath no\nbeard is less than a man: and he that is more than\na youth is not for me, and he that is less than a\nman, I am not for him: therefore, I will even take\nsixpence in earnest of the bear-ward, and lead his\napes into hell.\n\nLEONATO:\nWell, then, go you into hell?\n\nBEATRICE:\nNo, but to the gate; and there will the devil meet\nme, like an old cuckold, with horns on his head, and\nsay 'Get you to heaven, Beatrice, get you to\nheaven; here's no place for you maids:' so deliver\nI up my apes, and away to Saint Peter for the\nheavens; he shows me where the bachelors sit, and\nthere live we as merry as the day is long.\n\nANTONIO:\n\nBEATRICE:\nYes, faith; it is my cousin's duty to make curtsy\nand say 'Father, as it please you.' But yet for all\nthat, cousin, let him be a handsome fellow, or else\nmake another curtsy and say 'Father, as it please\nme.'\n\nLEONATO:\nWell, niece, I hope to see you one day fitted with a husband.\n\nBEATRICE:\nNot till God make men of some other metal than\nearth. Would it not grieve a woman to be\novermastered with a pierce of valiant dust? to make\nan account of her life to a clod of wayward marl?\nNo, uncle, I'll none: Adam's sons are my brethren;\nand, truly, I hold it a sin to match in my kindred.\n\nLEONATO:\nDaughter, remember what I told you: if the prince\ndo solicit you in that kind, you know your answer.\n\nBEATRICE:\nThe fault will be in the music, cousin, if you be\nnot wooed in good time: if the prince be too\nimportant, tell him there is measure in every thing\nand so dance out the answer. For, hear me, Hero:\nwooing, wedding, and repenting, is as a Scotch jig,\na measure, and a cinque pace: the first suit is hot\nand hasty, like a Scotch jig, and full as\nfantastical; the wedding, mannerly-modest, as a\nmeasure, full of state and ancientry; and then comes\nrepentance and, with his bad legs, falls into the\ncinque pace faster and faster, till he sink into his grave.\n\nLEONATO:\nCousin, you apprehend passing shrewdly.\n\nBEATRICE:\nI have a good eye, uncle; I can see a church by daylight.\n\nLEONATO:\nThe revellers are entering, brother: make good room.\n\nDON PEDRO:\nLady, will you walk about with your friend?\n\nHERO:\nSo you walk softly and look sweetly and say nothing,\nI am yours for the walk; and especially when I walk away.\n\nDON PEDRO:\nWith me in your company?\n\nHERO:\nI may say so, when I please.\n\nDON PEDRO:\nAnd when please you to say so?\n\nHERO:\nWhen I like your favour; for God defend the lute\nshould be like the case!\n\nDON PEDRO:\nMy visor is Philemon's roof; within the house is Jove.\n\nHERO:\nWhy, then, your visor should be thatched.\n\nDON PEDRO:\nSpeak low, if you speak love.\n\nBALTHASAR:\nWell, I would you did like me.\n\nMARGARET:\nSo would not I, for your own sake; for I have many\nill-qualities.\n\nBALTHASAR:\nWhich is one?\n\nMARGARET:\nI say my prayers aloud.\n\nBALTHASAR:\nI love you the better: the hearers may cry, Amen.\n\nMARGARET:\nGod match me with a good dancer!\n\nBALTHASAR:\nAmen.\n\nMARGARET:\nAnd God keep him out of my sight when the dance is\ndone! Answer, clerk.\n\nBALTHASAR:\nNo more words: the clerk is answered.\n\nURSULA:\nI know you well enough; you are Signior Antonio.\n\nANTONIO:\nAt a word, I am not.\n\nURSULA:\nI know you by the waggling of your head.\n\nANTONIO:\nTo tell you true, I counterfeit him.\n\nURSULA:\nYou could never do him so ill-well, unless you were\nthe very man. Here's his dry hand up and down: you\nare he, you are he.\n\nANTONIO:\nAt a word, I am not.\n\nURSULA:\nCome, come, do you think I do not know you by your\nexcellent wit? can virtue hide itself? Go to,\nmum, you are he: graces will appear, and there's an\nend.\n\nBEATRICE:\nWill you not tell me who told you so?\n\nBENEDICK:\nNo, you shall pardon me.\n\nBEATRICE:\nNor will you not tell me who you are?\n\nBENEDICK:\nNot now.\n\nBEATRICE:\nThat I was disdainful, and that I had my good wit\nout of the 'Hundred Merry Tales:'--well this was\nSignior Benedick that said so.\n\nBENEDICK:\nWhat's he?\n\nBEATRICE:\nI am sure you know him well enough.\n\nBENEDICK:\nNot I, believe me.\n\nBEATRICE:\nDid he never make you laugh?\n\nBENEDICK:\nI pray you, what is he?\n\nBEATRICE:\nWhy, he is the prince's jester: a very dull fool;\nonly his gift is in devising impossible slanders:\nnone but libertines delight in him; and the\ncommendation is not in his wit, but in his villany;\nfor he both pleases men and angers them, and then\nthey laugh at him and beat him. I am sure he is in\nthe fleet: I would he had boarded me.\n\nBENEDICK:\nWhen I know the gentleman, I'll tell him what you say.\n\nBEATRICE:\nDo, do: he'll but break a comparison or two on me;\nwhich, peradventure not marked or not laughed at,\nstrikes him into melancholy; and then there's a\npartridge wing saved, for the fool will eat no\nsupper that night.\nWe must follow the leaders.\n\nBENEDICK:\nIn every good thing.\n\nBEATRICE:\nNay, if they lead to any ill, I will leave them at\nthe next turning.\n\nDON JOHN:\nSure my brother is amorous on Hero and hath\nwithdrawn her father to break with him about it.\nThe ladies follow her and but one visor remains.\n\nBORACHIO:\nAnd that is Claudio: I know him by his bearing.\n\nDON JOHN:\nAre not you Signior Benedick?\n\nCLAUDIO:\nYou know me well; I am he.\n\nDON JOHN:\nSignior, you are very near my brother in his love:\nhe is enamoured on Hero; I pray you, dissuade him\nfrom her: she is no equal for his birth: you may\ndo the part of an honest man in it.\n\nCLAUDIO:\nHow know you he loves her?\n\nDON JOHN:\nI heard him swear his affection.\n\nBORACHIO:\nSo did I too; and he swore he would marry her to-night.\n\nDON JOHN:\nCome, let us to the banquet.\n\nCLAUDIO:\nThus answer I in the name of Benedick,\nBut hear these ill news with the ears of Claudio.\n'Tis certain so; the prince wooes for himself.\nFriendship is constant in all other things\nSave in the office and affairs of love:\nTherefore, all hearts in love use their own tongues;\nLet every eye negotiate for itself\nAnd trust no agent; for beauty is a witch\nAgainst whose charms faith melteth into blood.\nThis is an accident of hourly proof,\nWhich I mistrusted not. Farewell, therefore, Hero!\n\nBENEDICK:\nCount Claudio?\n\nCLAUDIO:\nYea, the same.\n\nBENEDICK:\nCome, will you go with me?\n\nCLAUDIO:\nWhither?\n\nBENEDICK:\nEven to the next willow, about your own business,\ncounty. What fashion will you wear the garland of?\nabout your neck, like an usurer's chain? or under\nyour arm, like a lieutenant's scarf? You must wear\nit one way, for the prince hath got your Hero.\n\nCLAUDIO:\nI wish him joy of her.\n\nBENEDICK:\nWhy, that's spoken like an honest drovier: so they\nsell bullocks. But did you think the prince would\nhave served you thus?\n\nCLAUDIO:\nI pray you, leave me.\n\nBENEDICK:\nHo! now you strike like the blind man: 'twas the\nboy that stole your meat, and you'll beat the post.\n\nCLAUDIO:\nIf it will not be, I'll leave you.\n\nBENEDICK:\nAlas, poor hurt fowl! now will he creep into sedges.\nBut that my Lady Beatrice should know me, and not\nknow me! The prince's fool! Ha? It may be I go\nunder that title because I am merry. Yea, but so I\nam apt to do myself wrong; I am not so reputed: it\nis the base, though bitter, disposition of Beatrice\nthat puts the world into her person and so gives me\nout. Well, I'll be revenged as I may.\n\nDON PEDRO:\nNow, signior, where's the count? did you see him?\n\nBENEDICK:\nTroth, my lord, I have played the part of Lady Fame.\nI found him here as melancholy as a lodge in a\nwarren: I told him, and I think I told him true,\nthat your grace had got the good will of this young\nlady; and I offered him my company to a willow-tree,\neither to make him a garland, as being forsaken, or\nto bind him up a rod, as being worthy to be whipped.\n\nDON PEDRO:\nTo be whipped! What's his fault?\n\nBENEDICK:\nThe flat transgression of a schoolboy, who, being\noverjoyed with finding a birds' nest, shows it his\ncompanion, and he steals it.\n\nDON PEDRO:\nWilt thou make a trust a transgression? The\ntransgression is in the stealer.\n\nBENEDICK:\nYet it had not been amiss the rod had been made,\nand the garland too; for the garland he might have\nworn himself, and the rod he might have bestowed on\nyou, who, as I take it, have stolen his birds' nest.\n\nDON PEDRO:\nI will but teach them to sing, and restore them to\nthe owner.\n\nBENEDICK:\nIf their singing answer your saying, by my faith,\nyou say honestly.\n\nDON PEDRO:\nThe Lady Beatrice hath a quarrel to you: the\ngentleman that danced with her told her she is much\nwronged by you.\n\nBENEDICK:\nO, she misused me past the endurance of a block!\nan oak but with one green leaf on it would have\nanswered her; my very visor began to assume life and\nscold with her. She told me, not thinking I had been\nmyself, that I was the prince's jester, that I was\nduller than a great thaw; huddling jest upon jest\nwith such impossible conveyance upon me that I stood\nlike a man at a mark, with a whole army shooting at\nme. She speaks poniards, and every word stabs:\nif her breath were as terrible as her terminations,\nthere were no living near her; she would infect to\nthe north star. I would not marry her, though she\nwere endowed with all that Adam bad left him before\nhe transgressed: she would have made Hercules have\nturned spit, yea, and have cleft his club to make\nthe fire too. Come, talk not of her: you shall find\nher the infernal Ate in good apparel. I would to God\nsome scholar would conjure her; for certainly, while\nshe is here, a man may live as quiet in hell as in a\nsanctuary; and people sin upon purpose, because they\nwould go thither; so, indeed, all disquiet, horror\nand perturbation follows her.\n\nDON PEDRO:\nLook, here she comes.\n\nBENEDICK:\nWill your grace command me any service to the\nworld's end? I will go on the slightest errand now\nto the Antipodes that you can devise to send me on;\nI will fetch you a tooth-picker now from the\nfurthest inch of Asia, bring you the length of\nPrester John's foot, fetch you a hair off the great\nCham's beard, do you any embassage to the Pigmies,\nrather than hold three words' conference with this\nharpy. You have no employment for me?\n\nDON PEDRO:\nNone, but to desire your good company.\n\nBENEDICK:\nO God, sir, here's a dish I love not: I cannot\nendure my Lady Tongue.\n\nDON PEDRO:\nCome, lady, come; you have lost the heart of\nSignior Benedick.\n\nBEATRICE:\nIndeed, my lord, he lent it me awhile; and I gave\nhim use for it, a double heart for his single one:\nmarry, once before he won it of me with false dice,\ntherefore your grace may well say I have lost it.\n\nDON PEDRO:\nYou have put him down, lady, you have put him down.\n\nBEATRICE:\nSo I would not he should do me, my lord, lest I\nshould prove the mother of fools. I have brought\nCount Claudio, whom you sent me to seek.\n\nDON PEDRO:\nWhy, how now, count! wherefore are you sad?\n\nCLAUDIO:\nNot sad, my lord.\n\nDON PEDRO:\nHow then? sick?\n\nCLAUDIO:\nNeither, my lord.\n\nBEATRICE:\nThe count is neither sad, nor sick, nor merry, nor\nwell; but civil count, civil as an orange, and\nsomething of that jealous complexion.\n\nDON PEDRO:\nI' faith, lady, I think your blazon to be true;\nthough, I'll be sworn, if he be so, his conceit is\nfalse. Here, Claudio, I have wooed in thy name, and\nfair Hero is won: I have broke with her father,\nand his good will obtained: name the day of\nmarriage, and God give thee joy!\n\nLEONATO:\nCount, take of me my daughter, and with her my\nfortunes: his grace hath made the match, and an\ngrace say Amen to it.\n\nBEATRICE:\nSpeak, count, 'tis your cue.\n\nCLAUDIO:\nSilence is the perfectest herald of joy: I were\nbut little happy, if I could say how much. Lady, as\nyou are mine, I am yours: I give away myself for\nyou and dote upon the exchange.\n\nBEATRICE:\nSpeak, cousin; or, if you cannot, stop his mouth\nwith a kiss, and let not him speak neither.\n\nDON PEDRO:\nIn faith, lady, you have a merry heart.\n\nBEATRICE:\nYea, my lord; I thank it, poor fool, it keeps on\nthe windy side of care. My cousin tells him in his\near that he is in her heart.\n\nCLAUDIO:\nAnd so she doth, cousin.\n\nBEATRICE:\nGood Lord, for alliance! Thus goes every one to the\nworld but I, and I am sunburnt; I may sit in a\ncorner and cry heigh-ho for a husband!\n\nDON PEDRO:\nLady Beatrice, I will get you one.\n\nBEATRICE:\nI would rather have one of your father's getting.\nHath your grace ne'er a brother like you? Your\nfather got excellent husbands, if a maid could come by them.\n\nDON PEDRO:\nWill you have me, lady?\n\nBEATRICE:\nNo, my lord, unless I might have another for\nworking-days: your grace is too costly to wear\nevery day. But, I beseech your grace, pardon me: I\nwas born to speak all mirth and no matter.\n\nDON PEDRO:\nYour silence most offends me, and to be merry best\nbecomes you; for, out of question, you were born in\na merry hour.\n\nBEATRICE:\nNo, sure, my lord, my mother cried; but then there\nwas a star danced, and under that was I born.\nCousins, God give you joy!\n\nLEONATO:\nNiece, will you look to those things I told you of?\n\nBEATRICE:\nI cry you mercy, uncle. By your grace's pardon.\n\nDON PEDRO:\nBy my troth, a pleasant-spirited lady.\n\nLEONATO:\nThere's little of the melancholy element in her, my\nlord: she is never sad but when she sleeps, and\nnot ever sad then; for I have heard my daughter say,\nshe hath often dreamed of unhappiness and waked\nherself with laughing.\n\nDON PEDRO:\nShe cannot endure to hear tell of a husband.\n\nLEONATO:\nO, by no means: she mocks all her wooers out of suit.\n\nDON PEDRO:\nShe were an excellent wife for Benedict.\n\nLEONATO:\nO Lord, my lord, if they were but a week married,\nthey would talk themselves mad.\n\nDON PEDRO:\nCounty Claudio, when mean you to go to church?\n\nCLAUDIO:\nTo-morrow, my lord: time goes on crutches till love\nhave all his rites.\n\nLEONATO:\nNot till Monday, my dear son, which is hence a just\nseven-night; and a time too brief, too, to have all\nthings answer my mind.\n\nDON PEDRO:\nCome, you shake the head at so long a breathing:\nbut, I warrant thee, Claudio, the time shall not go\ndully by us. I will in the interim undertake one of\nHercules' labours; which is, to bring Signior\nBenedick and the Lady Beatrice into a mountain of\naffection the one with the other. I would fain have\nit a match, and I doubt not but to fashion it, if\nyou three will but minister such assistance as I\nshall give you direction.\n\nLEONATO:\nMy lord, I am for you, though it cost me ten\nnights' watchings.\n\nCLAUDIO:\nAnd I, my lord.\n\nDON PEDRO:\nAnd you too, gentle Hero?\n\nHERO:\nI will do any modest office, my lord, to help my\ncousin to a good husband.\n\nDON PEDRO:\nAnd Benedick is not the unhopefullest husband that\nI know. Thus far can I praise him; he is of a noble\nstrain, of approved valour and confirmed honesty. I\nwill teach you how to humour your cousin, that she\nshall fall in love with Benedick; and I, with your\ntwo helps, will so practise on Benedick that, in\ndespite of his quick wit and his queasy stomach, he\nshall fall in love with Beatrice. If we can do this,\nCupid is no longer an archer: his glory shall be\nours, for we are the only love-gods. Go in with me,\nand I will tell you my drift.\n\nDON JOHN:\nIt is so; the Count Claudio shall marry the\ndaughter of Leonato.\n\nBORACHIO:\nYea, my lord; but I can cross it.\n\nDON JOHN:\nAny bar, any cross, any impediment will be\nmedicinable to me: I am sick in displeasure to him,\nand whatsoever comes athwart his affection ranges\nevenly with mine. How canst thou cross this marriage?\n\nBORACHIO:\nNot honestly, my lord; but so covertly that no\ndishonesty shall appear in me.\n\nDON JOHN:\nShow me briefly how.\n\nBORACHIO:\nI think I told your lordship a year since, how much\nI am in the favour of Margaret, the waiting\ngentlewoman to Hero.\n\nDON JOHN:\nI remember.\n\nBORACHIO:\nI can, at any unseasonable instant of the night,\nappoint her to look out at her lady's chamber window.\n\nDON JOHN:\nWhat life is in that, to be the death of this marriage?\n\nBORACHIO:\nThe poison of that lies in you to temper. Go you to\nthe prince your brother; spare not to tell him that\nhe hath wronged his honour in marrying the renowned\nClaudio--whose estimation do you mightily hold\nup--to a contaminated stale, such a one as Hero.\n\nDON JOHN:\nWhat proof shall I make of that?\n\nBORACHIO:\nProof enough to misuse the prince, to vex Claudio,\nto undo Hero and kill Leonato. Look you for any\nother issue?\n\nDON JOHN:\nOnly to despite them, I will endeavour any thing.\n\nBORACHIO:\nGo, then; find me a meet hour to draw Don Pedro and\nthe Count Claudio alone: tell them that you know\nthat Hero loves me; intend a kind of zeal both to the\nprince and Claudio, as,--in love of your brother's\nhonour, who hath made this match, and his friend's\nreputation, who is thus like to be cozened with the\nsemblance of a maid,--that you have discovered\nthus. They will scarcely believe this without trial:\noffer them instances; which shall bear no less\nlikelihood than to see me at her chamber-window,\nhear me call Margaret Hero, hear Margaret term me\nClaudio; and bring them to see this the very night\nbefore the intended wedding,--for in the meantime I\nwill so fashion the matter that Hero shall be\nabsent,--and there shall appear such seeming truth\nof Hero's disloyalty that jealousy shall be called\nassurance and all the preparation overthrown.\n\nDON JOHN:\nGrow this to what adverse issue it can, I will put\nit in practise. Be cunning in the working this, and\nthy fee is a thousand ducats.\n\nBORACHIO:\nBe you constant in the accusation, and my cunning\nshall not shame me.\n\nDON JOHN:\nI will presently go learn their day of marriage.\n\nBENEDICK:\nBoy!\n\nBoy:\nSignior?\n\nBENEDICK:\nIn my chamber-window lies a book: bring it hither\nto me in the orchard.\n\nBoy:\nI am here already, sir.\n\nBENEDICK:\nI know that; but I would have thee hence, and here again.\nI do much wonder that one man, seeing how much\nanother man is a fool when he dedicates his\nbehaviors to love, will, after he hath laughed at\nsuch shallow follies in others, become the argument\nof his own scorn by failing in love: and such a man\nis Claudio. I have known when there was no music\nwith him but the drum and the fife; and now had he\nrather hear the tabour and the pipe: I have known\nwhen he would have walked ten mile a-foot to see a\ngood armour; and now will he lie ten nights awake,\ncarving the fashion of a new doublet. He was wont to\nspeak plain and to the purpose, like an honest man\nand a soldier; and now is he turned orthography; his\nwords are a very fantastical banquet, just so many\nstrange dishes. May I be so converted and see with\nthese eyes? I cannot tell; I think not: I will not\nbe sworn, but love may transform me to an oyster; but\nI'll take my oath on it, till he have made an oyster\nof me, he shall never make me such a fool. One woman\nis fair, yet I am well; another is wise, yet I am\nwell; another virtuous, yet I am well; but till all\ngraces be in one woman, one woman shall not come in\nmy grace. Rich she shall be, that's certain; wise,\nor I'll none; virtuous, or I'll never cheapen her;\nfair, or I'll   never look on her; mild, or come not\nnear me; noble, or not I for an angel; of good\ndiscourse, an excellent musician, and her hair shall\nbe of what colour it please God. Ha! the prince and\nMonsieur Love! I will hide me in the arbour.\n\nDON PEDRO:\nCome, shall we hear this music?\n\nCLAUDIO:\nYea, my good lord. How still the evening is,\nAs hush'd on purpose to grace harmony!\n\nDON PEDRO:\nSee you where Benedick hath hid himself?\n\nCLAUDIO:\nO, very well, my lord: the music ended,\nWe'll fit the kid-fox with a pennyworth.\n\nDON PEDRO:\nCome, Balthasar, we'll hear that song again.\n\nBALTHASAR:\nO, good my lord, tax not so bad a voice\nTo slander music any more than once.\n\nDON PEDRO:\nIt is the witness still of excellency\nTo put a strange face on his own perfection.\nI pray thee, sing, and let me woo no more.\n\nBALTHASAR:\nBecause you talk of wooing, I will sing;\nSince many a wooer doth commence his suit\nTo her he thinks not worthy, yet he wooes,\nYet will he swear he loves.\n\nDON PEDRO:\nNow, pray thee, come;\nOr, if thou wilt hold longer argument,\nDo it in notes.\n\nBALTHASAR:\nNote this before my notes;\nThere's not a note of mine that's worth the noting.\n\nDON PEDRO:\nWhy, these are very crotchets that he speaks;\nNote, notes, forsooth, and nothing.\n\nBENEDICK:\nNow, divine air! now is his soul ravished! Is it\nnot strange that sheeps' guts should hale souls out\nof men's bodies? Well, a horn for my money, when\nall's done.\n\nBALTHASAR:\nSigh no more, ladies, sigh no more,\nMen were deceivers ever,\nOne foot in sea and one on shore,\nTo one thing constant never:\nThen sigh not so, but let them go,\nAnd be you blithe and bonny,\nConverting all your sounds of woe\nInto Hey nonny, nonny.\nSing no more ditties, sing no moe,\nOf dumps so dull and heavy;\nThe fraud of men was ever so,\nSince summer first was leafy:\nThen sigh not so, &c.\n\nDON PEDRO:\nBy my troth, a good song.\n\nBALTHASAR:\nAnd an ill singer, my lord.\n\nDON PEDRO:\nHa, no, no, faith; thou singest well enough for a shift.\n\nBENEDICK:\nAn he had been a dog that should have howled thus,\nthey would have hanged him: and I pray God his bad\nvoice bode no mischief. I had as lief have heard the\nnight-raven, come what plague could have come after\nit.\n\nDON PEDRO:\nYea, marry, dost thou hear, Balthasar? I pray thee,\nget us some excellent music; for to-morrow night we\nwould have it at the Lady Hero's chamber-window.\n\nBALTHASAR:\nThe best I can, my lord.\n\nDON PEDRO:\nDo so: farewell.\nCome hither, Leonato. What was it you told me of\nto-day, that your niece Beatrice was in love with\nSignior Benedick?\n\nCLAUDIO:\nO, ay: stalk on. stalk on; the fowl sits. I did\nnever think that lady would have loved any man.\n\nLEONATO:\nNo, nor I neither; but most wonderful that she\nshould so dote on Signior Benedick, whom she hath in\nall outward behaviors seemed ever to abhor.\n\nBENEDICK:\nIs't possible? Sits the wind in that corner?\n\nLEONATO:\nBy my troth, my lord, I cannot tell what to think\nof it but that she loves him with an enraged\naffection: it is past the infinite of thought.\n\nDON PEDRO:\nMay be she doth but counterfeit.\n\nCLAUDIO:\nFaith, like enough.\n\nLEONATO:\nO God, counterfeit! There was never counterfeit of\npassion came so near the life of passion as she\ndiscovers it.\n\nDON PEDRO:\nWhy, what effects of passion shows she?\n\nCLAUDIO:\nBait the hook well; this fish will bite.\n\nLEONATO:\nWhat effects, my lord? She will sit you, you heard\nmy daughter tell you how.\n\nCLAUDIO:\nShe did, indeed.\n\nDON PEDRO:\nHow, how, pray you? You amaze me: I would have I\nthought her spirit had been invincible against all\nassaults of affection.\n\nLEONATO:\nI would have sworn it had, my lord; especially\nagainst Benedick.\n\nBENEDICK:\nI should think this a gull, but that the\nwhite-bearded fellow speaks it: knavery cannot,\nsure, hide himself in such reverence.\n\nCLAUDIO:\nHe hath ta'en the infection: hold it up.\n\nDON PEDRO:\nHath she made her affection known to Benedick?\n\nLEONATO:\nNo; and swears she never will: that's her torment.\n\nCLAUDIO:\n'Tis true, indeed; so your daughter says: 'Shall\nI,' says she, 'that have so oft encountered him\nwith scorn, write to him that I love him?'\n\nLEONATO:\nThis says she now when she is beginning to write to\nhim; for she'll be up twenty times a night, and\nthere will she sit in her smock till she have writ a\nsheet of paper: my daughter tells us all.\n\nCLAUDIO:\nNow you talk of a sheet of paper, I remember a\npretty jest your daughter told us of.\n\nLEONATO:\nO, when she had writ it and was reading it over, she\nfound Benedick and Beatrice between the sheet?\n\nCLAUDIO:\nThat.\n\nLEONATO:\nO, she tore the letter into a thousand halfpence;\nrailed at herself, that she should be so immodest\nto write to one that she knew would flout her; 'I\nmeasure him,' says she, 'by my own spirit; for I\nshould flout him, if he writ to me; yea, though I\nlove him, I should.'\n\nCLAUDIO:\nThen down upon her knees she falls, weeps, sobs,\nbeats her heart, tears her hair, prays, curses; 'O\nsweet Benedick! God give me patience!'\n\nLEONATO:\nShe doth indeed; my daughter says so: and the\necstasy hath so much overborne her that my daughter\nis sometime afeared she will do a desperate outrage\nto herself: it is very true.\n\nDON PEDRO:\nIt were good that Benedick knew of it by some\nother, if she will not discover it.\n\nCLAUDIO:\nTo what end? He would make but a sport of it and\ntorment the poor lady worse.\n\nDON PEDRO:\nAn he should, it were an alms to hang him. She's an\nexcellent sweet lady; and, out of all suspicion,\nshe is virtuous.\n\nCLAUDIO:\nAnd she is exceeding wise.\n\nDON PEDRO:\nIn every thing but in loving Benedick.\n\nLEONATO:\nO, my lord, wisdom and blood combating in so tender\na body, we have ten proofs to one that blood hath\nthe victory. I am sorry for her, as I have just\ncause, being her uncle and her guardian.\n\nDON PEDRO:\nI would she had bestowed this dotage on me: I would\nhave daffed all other respects and made her half\nmyself. I pray you, tell Benedick of it, and hear\nwhat a' will say.\n\nLEONATO:\nWere it good, think you?\n\nCLAUDIO:\nHero thinks surely she will die; for she says she\nwill die, if he love her not, and she will die, ere\nshe make her love known, and she will die, if he woo\nher, rather than she will bate one breath of her\naccustomed crossness.\n\nDON PEDRO:\nShe doth well: if she should make tender of her\nlove, 'tis very possible he'll scorn it; for the\nman, as you know all, hath a contemptible spirit.\n\nCLAUDIO:\nHe is a very proper man.\n\nDON PEDRO:\nHe hath indeed a good outward happiness.\n\nCLAUDIO:\nBefore God! and, in my mind, very wise.\n\nDON PEDRO:\nHe doth indeed show some sparks that are like wit.\n\nCLAUDIO:\nAnd I take him to be valiant.\n\nDON PEDRO:\nAs Hector, I assure you: and in the managing of\nquarrels you may say he is wise; for either he\navoids them with great discretion, or undertakes\nthem with a most Christian-like fear.\n\nLEONATO:\nIf he do fear God, a' must necessarily keep peace:\nif he break the peace, he ought to enter into a\nquarrel with fear and trembling.\n\nDON PEDRO:\nAnd so will he do; for the man doth fear God,\nhowsoever it seems not in him by some large jests\nhe will make. Well I am sorry for your niece. Shall\nwe go seek Benedick, and tell him of her love?\n\nCLAUDIO:\nNever tell him, my lord: let her wear it out with\ngood counsel.\n\nLEONATO:\nNay, that's impossible: she may wear her heart out first.\n\nDON PEDRO:\nWell, we will hear further of it by your daughter:\nlet it cool the while. I love Benedick well; and I\ncould wish he would modestly examine himself, to see\nhow much he is unworthy so good a lady.\n\nLEONATO:\nMy lord, will you walk? dinner is ready.\n\nCLAUDIO:\nIf he do not dote on her upon this, I will never\ntrust my expectation.\n\nDON PEDRO:\nLet there be the same net spread for her; and that\nmust your daughter and her gentlewomen carry. The\nsport will be, when they hold one an opinion of\nanother's dotage, and no such matter: that's the\nscene that I would see, which will be merely a\ndumb-show. Let us send her to call him in to dinner.\n\nBENEDICK:\n\nBEATRICE:\nAgainst my will I am sent to bid you come in to dinner.\n\nBENEDICK:\nFair Beatrice, I thank you for your pains.\n\nBEATRICE:\nI took no more pains for those thanks than you take\npains to thank me: if it had been painful, I would\nnot have come.\n\nBENEDICK:\nYou take pleasure then in the message?\n\nBEATRICE:\nYea, just so much as you may take upon a knife's\npoint and choke a daw withal. You have no stomach,\nsignior: fare you well.\n\nBENEDICK:\nHa! 'Against my will I am sent to bid you come in\nto dinner;' there's a double meaning in that 'I took\nno more pains for those thanks than you took pains\nto thank me.' that's as much as to say, Any pains\nthat I take for you is as easy as thanks. If I do\nnot take pity of her, I am a villain; if I do not\nlove her, I am a Jew. I will go get her picture.\n\nHERO:\nGood Margaret, run thee to the parlor;\nThere shalt thou find my cousin Beatrice\nProposing with the prince and Claudio:\nWhisper her ear and tell her, I and Ursula\nWalk in the orchard and our whole discourse\nIs all of her; say that thou overheard'st us;\nAnd bid her steal into the pleached bower,\nWhere honeysuckles, ripen'd by the sun,\nForbid the sun to enter, like favourites,\nMade proud by princes, that advance their pride\nAgainst that power that bred it: there will she hide her,\nTo listen our purpose.  This is thy office;\nBear thee well in it and leave us alone.\n\nMARGARET:\nI'll make her come, I warrant you, presently.\n\nHERO:\nNow, Ursula, when Beatrice doth come,\nAs we do trace this alley up and down,\nOur talk must only be of Benedick.\nWhen I do name him, let it be thy part\nTo praise him more than ever man did merit:\nMy talk to thee must be how Benedick\nIs sick in love with Beatrice. Of this matter\nIs little Cupid's crafty arrow made,\nThat only wounds by hearsay.\nNow begin;\nFor look where Beatrice, like a lapwing, runs\nClose by the ground, to hear our conference.\n\nURSULA:\nThe pleasant'st angling is to see the fish\nCut with her golden oars the silver stream,\nAnd greedily devour the treacherous bait:\nSo angle we for Beatrice; who even now\nIs couched in the woodbine coverture.\nFear you not my part of the dialogue.\n\nHERO:\nThen go we near her, that her ear lose nothing\nOf the false sweet bait that we lay for it.\nNo, truly, Ursula, she is too disdainful;\nI know her spirits are as coy and wild\nAs haggerds of the rock.\n\nURSULA:\nBut are you sure\nThat Benedick loves Beatrice so entirely?\n\nHERO:\nSo says the prince and my new-trothed lord.\n\nURSULA:\nAnd did they bid you tell her of it, madam?\n\nHERO:\nThey did entreat me to acquaint her of it;\nBut I persuaded them, if they loved Benedick,\nTo wish him wrestle with affection,\nAnd never to let Beatrice know of it.\n\nURSULA:\nWhy did you so? Doth not the gentleman\nDeserve as full as fortunate a bed\nAs ever Beatrice shall couch upon?\n\nHERO:\nO god of love! I know he doth deserve\nAs much as may be yielded to a man:\nBut Nature never framed a woman's heart\nOf prouder stuff than that of Beatrice;\nDisdain and scorn ride sparkling in her eyes,\nMisprising what they look on, and her wit\nValues itself so highly that to her\nAll matter else seems weak: she cannot love,\nNor take no shape nor project of affection,\nShe is so self-endeared.\n\nURSULA:\nSure, I think so;\nAnd therefore certainly it were not good\nShe knew his love, lest she make sport at it.\n\nHERO:\nWhy, you speak truth. I never yet saw man,\nHow wise, how noble, young, how rarely featured,\nBut she would spell him backward: if fair-faced,\nShe would swear the gentleman should be her sister;\nIf black, why, Nature, drawing of an antique,\nMade a foul blot; if tall, a lance ill-headed;\nIf low, an agate very vilely cut;\nIf speaking, why, a vane blown with all winds;\nIf silent, why, a block moved with none.\nSo turns she every man the wrong side out\nAnd never gives to truth and virtue that\nWhich simpleness and merit purchaseth.\n\nURSULA:\nSure, sure, such carping is not commendable.\n\nHERO:\nNo, not to be so odd and from all fashions\nAs Beatrice is, cannot be commendable:\nBut who dare tell her so? If I should speak,\nShe would mock me into air; O, she would laugh me\nOut of myself, press me to death with wit.\nTherefore let Benedick, like cover'd fire,\nConsume away in sighs, waste inwardly:\nIt were a better death than die with mocks,\nWhich is as bad as die with tickling.\n\nURSULA:\nYet tell her of it: hear what she will say.\n\nHERO:\nNo; rather I will go to Benedick\nAnd counsel him to fight against his passion.\nAnd, truly, I'll devise some honest slanders\nTo stain my cousin with: one doth not know\nHow much an ill word may empoison liking.\n\nURSULA:\nO, do not do your cousin such a wrong.\nShe cannot be so much without true judgment--\nHaving so swift and excellent a wit\nAs she is prized to have--as to refuse\nSo rare a gentleman as Signior Benedick.\n\nHERO:\nHe is the only man of Italy.\nAlways excepted my dear Claudio.\n\nURSULA:\nI pray you, be not angry with me, madam,\nSpeaking my fancy: Signior Benedick,\nFor shape, for bearing, argument and valour,\nGoes foremost in report through Italy.\n\nHERO:\nIndeed, he hath an excellent good name.\n\nURSULA:\nHis excellence did earn it, ere he had it.\nWhen are you married, madam?\n\nHERO:\nWhy, every day, to-morrow. Come, go in:\nI'll show thee some attires, and have thy counsel\nWhich is the best to furnish me to-morrow.\n\nURSULA:\nShe's limed, I warrant you: we have caught her, madam.\n\nHERO:\nIf it proves so, then loving goes by haps:\nSome Cupid kills with arrows, some with traps.\n\nBEATRICE:\n\nDON PEDRO:\nI do but stay till your marriage be consummate, and\nthen go I toward Arragon.\n\nCLAUDIO:\nI'll bring you thither, my lord, if you'll\nvouchsafe me.\n\nDON PEDRO:\nNay, that would be as great a soil in the new gloss\nof your marriage as to show a child his new coat\nand forbid him to wear it. I will only be bold\nwith Benedick for his company; for, from the crown\nof his head to the sole of his foot, he is all\nmirth: he hath twice or thrice cut Cupid's\nbow-string and the little hangman dare not shoot at\nhim; he hath a heart as sound as a bell and his\ntongue is the clapper, for what his heart thinks his\ntongue speaks.\n\nBENEDICK:\nGallants, I am not as I have been.\n\nLEONATO:\nSo say I methinks you are sadder.\n\nCLAUDIO:\nI hope he be in love.\n\nDON PEDRO:\nHang him, truant! there's no true drop of blood in\nhim, to be truly touched with love: if he be sad,\nhe wants money.\n\nBENEDICK:\nI have the toothache.\n\nDON PEDRO:\nDraw it.\n\nBENEDICK:\nHang it!\n\nCLAUDIO:\nYou must hang it first, and draw it afterwards.\n\nDON PEDRO:\nWhat! sigh for the toothache?\n\nLEONATO:\nWhere is but a humour or a worm.\n\nBENEDICK:\nWell, every one can master a grief but he that has\nit.\n\nCLAUDIO:\nYet say I, he is in love.\n\nDON PEDRO:\nThere is no appearance of fancy in him, unless it be\na fancy that he hath to strange disguises; as, to be\na Dutchman today, a Frenchman to-morrow, or in the\nshape of two countries at once, as, a German from\nthe waist downward, all slops, and a Spaniard from\nthe hip upward, no doublet. Unless he have a fancy\nto this foolery, as it appears he hath, he is no\nfool for fancy, as you would have it appear he is.\n\nCLAUDIO:\nIf he be not in love with some woman, there is no\nbelieving old signs: a' brushes his hat o'\nmornings; what should that bode?\n\nDON PEDRO:\nHath any man seen him at the barber's?\n\nCLAUDIO:\nNo, but the barber's man hath been seen with him,\nand the old ornament of his cheek hath already\nstuffed tennis-balls.\n\nLEONATO:\nIndeed, he looks younger than he did, by the loss of a beard.\n\nDON PEDRO:\nNay, a' rubs himself with civet: can you smell him\nout by that?\n\nCLAUDIO:\nThat's as much as to say, the sweet youth's in love.\n\nDON PEDRO:\nThe greatest note of it is his melancholy.\n\nCLAUDIO:\nAnd when was he wont to wash his face?\n\nDON PEDRO:\nYea, or to paint himself? for the which, I hear\nwhat they say of him.\n\nCLAUDIO:\nNay, but his jesting spirit; which is now crept into\na lute-string and now governed by stops.\n\nDON PEDRO:\nIndeed, that tells a heavy tale for him: conclude,\nconclude he is in love.\n\nCLAUDIO:\nNay, but I know who loves him.\n\nDON PEDRO:\nThat would I know too: I warrant, one that knows him not.\n\nCLAUDIO:\nYes, and his ill conditions; and, in despite of\nall, dies for him.\n\nDON PEDRO:\nShe shall be buried with her face upwards.\n\nBENEDICK:\nYet is this no charm for the toothache. Old\nsignior, walk aside with me: I have studied eight\nor nine wise words to speak to you, which these\nhobby-horses must not hear.\n\nDON PEDRO:\nFor my life, to break with him about Beatrice.\n\nCLAUDIO:\n'Tis even so. Hero and Margaret have by this\nplayed their parts with Beatrice; and then the two\nbears will not bite one another when they meet.\n\nDON JOHN:\nMy lord and brother, God save you!\n\nDON PEDRO:\nGood den, brother.\n\nDON JOHN:\nIf your leisure served, I would speak with you.\n\nDON PEDRO:\nIn private?\n\nDON JOHN:\nIf it please you: yet Count Claudio may hear; for\nwhat I would speak of concerns him.\n\nDON PEDRO:\nWhat's the matter?\n\nDON JOHN:\n\nDON PEDRO:\nYou know he does.\n\nDON JOHN:\nI know not that, when he knows what I know.\n\nCLAUDIO:\nIf there be any impediment, I pray you discover it.\n\nDON JOHN:\nYou may think I love you not: let that appear\nhereafter, and aim better at me by that I now will\nmanifest. For my brother, I think he holds you\nwell, and in dearness of heart hath holp to effect\nyour ensuing marriage;--surely suit ill spent and\nlabour ill bestowed.\n\nDON PEDRO:\nWhy, what's the matter?\n\nDON JOHN:\nI came hither to tell you; and, circumstances\nshortened, for she has been too long a talking of,\nthe lady is disloyal.\n\nCLAUDIO:\nWho, Hero?\n\nDON PEDRO:\nEven she; Leonato's Hero, your Hero, every man's Hero:\n\nCLAUDIO:\nDisloyal?\n\nDON JOHN:\nThe word is too good to paint out her wickedness; I\ncould say she were worse: think you of a worse\ntitle, and I will fit her to it. Wonder not till\nfurther warrant: go but with me to-night, you shall\nsee her chamber-window entered, even the night\nbefore her wedding-day: if you love her then,\nto-morrow wed her; but it would better fit your honour\nto change your mind.\n\nCLAUDIO:\nMay this be so?\n\nDON PEDRO:\nI will not think it.\n\nDON JOHN:\nIf you dare not trust that you see, confess not\nthat you know: if you will follow me, I will show\nyou enough; and when you have seen more and heard\nmore, proceed accordingly.\n\nCLAUDIO:\nIf I see any thing to-night why I should not marry\nher to-morrow in the congregation, where I should\nwed, there will I shame her.\n\nDON PEDRO:\nAnd, as I wooed for thee to obtain her, I will join\nwith thee to disgrace her.\n\nDON JOHN:\nI will disparage her no farther till you are my\nwitnesses: bear it coldly but till midnight, and\nlet the issue show itself.\n\nDON PEDRO:\nO day untowardly turned!\n\nCLAUDIO:\nO mischief strangely thwarting!\n\nDON JOHN:\nO plague right well prevented! so will you say when\nyou have seen the sequel.\n\nDOGBERRY:\nAre you good men and true?\n\nVERGES:\nYea, or else it were pity but they should suffer\nsalvation, body and soul.\n\nDOGBERRY:\nNay, that were a punishment too good for them, if\nthey should have any allegiance in them, being\nchosen for the prince's watch.\n\nVERGES:\nWell, give them their charge, neighbour Dogberry.\n\nDOGBERRY:\nFirst, who think you the most desertless man to be\nconstable?\n\nFirst Watchman:\nHugh Otecake, sir, or George Seacole; for they can\nwrite and read.\n\nDOGBERRY:\nCome hither, neighbour Seacole. God hath blessed\nyou with a good name: to be a well-favoured man is\nthe gift of fortune; but to write and read comes by nature.\n\nSecond Watchman:\nBoth which, master constable,--\n\nDOGBERRY:\nYou have: I knew it would be your answer. Well,\nfor your favour, sir, why, give God thanks, and make\nno boast of it; and for your writing and reading,\nlet that appear when there is no need of such\nvanity. You are thought here to be the most\nsenseless and fit man for the constable of the\nwatch; therefore bear you the lantern. This is your\ncharge: you shall comprehend all vagrom men; you are\nto bid any man stand, in the prince's name.\n\nSecond Watchman:\nHow if a' will not stand?\n\nDOGBERRY:\nWhy, then, take no note of him, but let him go; and\npresently call the rest of the watch together and\nthank God you are rid of a knave.\n\nVERGES:\nIf he will not stand when he is bidden, he is none\nof the prince's subjects.\n\nDOGBERRY:\nTrue, and they are to meddle with none but the\nprince's subjects. You shall also make no noise in\nthe streets; for, for the watch to babble and to\ntalk is most tolerable and not to be endured.\n\nWatchman:\nWe will rather sleep than talk: we know what\nbelongs to a watch.\n\nDOGBERRY:\nWhy, you speak like an ancient and most quiet\nwatchman; for I cannot see how sleeping should\noffend: only, have a care that your bills be not\nstolen. Well, you are to call at all the\nale-houses, and bid those that are drunk get them to bed.\n\nWatchman:\nHow if they will not?\n\nDOGBERRY:\nWhy, then, let them alone till they are sober: if\nthey make you not then the better answer, you may\nsay they are not the men you took them for.\n\nWatchman:\nWell, sir.\n\nDOGBERRY:\nIf you meet a thief, you may suspect him, by virtue\nof your office, to be no true man; and, for such\nkind of men, the less you meddle or make with them,\nwhy the more is for your honesty.\n\nWatchman:\nIf we know him to be a thief, shall we not lay\nhands on him?\n\nDOGBERRY:\nTruly, by your office, you may; but I think they\nthat touch pitch will be defiled: the most peaceable\nway for you, if you do take a thief, is to let him\nshow himself what he is and steal out of your company.\n\nVERGES:\nYou have been always called a merciful man, partner.\n\nDOGBERRY:\nTruly, I would not hang a dog by my will, much more\na man who hath any honesty in him.\n\nVERGES:\nIf you hear a child cry in the night, you must call\nto the nurse and bid her still it.\n\nWatchman:\nHow if the nurse be asleep and will not hear us?\n\nDOGBERRY:\nWhy, then, depart in peace, and let the child wake\nher with crying; for the ewe that will not hear her\nlamb when it baes will never answer a calf when he bleats.\n\nVERGES:\n'Tis very true.\n\nDOGBERRY:\nThis is the end of the charge:--you, constable, are\nto present the prince's own person: if you meet the\nprince in the night, you may stay him.\n\nVERGES:\nNay, by'r our lady, that I think a' cannot.\n\nDOGBERRY:\nFive shillings to one on't, with any man that knows\nthe statutes, he may stay him: marry, not without\nthe prince be willing; for, indeed, the watch ought\nto offend no man; and it is an offence to stay a\nman against his will.\n\nVERGES:\nBy'r lady, I think it be so.\n\nDOGBERRY:\nHa, ha, ha! Well, masters, good night: an there be\nany matter of weight chances, call up me: keep your\nfellows' counsels and your own; and good night.\nCome, neighbour.\n\nWatchman:\nWell, masters, we hear our charge: let us go sit here\nupon the church-bench till two, and then all to bed.\n\nDOGBERRY:\nOne word more, honest neighbours. I pray you watch\nabout Signior Leonato's door; for the wedding being\nthere to-morrow, there is a great coil to-night.\nAdieu: be vigitant, I beseech you.\n\nBORACHIO:\nWhat Conrade!\n\nWatchman:\n\nBORACHIO:\nConrade, I say!\n\nCONRADE:\nHere, man; I am at thy elbow.\n\nBORACHIO:\nMass, and my elbow itched; I thought there would a\nscab follow.\n\nCONRADE:\nI will owe thee an answer for that: and now forward\nwith thy tale.\n\nBORACHIO:\nStand thee close, then, under this pent-house, for\nit drizzles rain; and I will, like a true drunkard,\nutter all to thee.\n\nWatchman:\n\nBORACHIO:\nTherefore know I have earned of Don John a thousand ducats.\n\nCONRADE:\nIs it possible that any villany should be so dear?\n\nBORACHIO:\nThou shouldst rather ask if it were possible any\nvillany should be so rich; for when rich villains\nhave need of poor ones, poor ones may make what\nprice they will.\n\nCONRADE:\nI wonder at it.\n\nBORACHIO:\nThat shows thou art unconfirmed. Thou knowest that\nthe fashion of a doublet, or a hat, or a cloak, is\nnothing to a man.\n\nCONRADE:\nYes, it is apparel.\n\nBORACHIO:\nI mean, the fashion.\n\nCONRADE:\nYes, the fashion is the fashion.\n\nBORACHIO:\nTush! I may as well say the fool's the fool. But\nseest thou not what a deformed thief this fashion\nis?\n\nWatchman:\n\nBORACHIO:\nDidst thou not hear somebody?\n\nCONRADE:\nNo; 'twas the vane on the house.\n\nBORACHIO:\nSeest thou not, I say, what a deformed thief this\nfashion is? how giddily a' turns about all the hot\nbloods between fourteen and five-and-thirty?\nsometimes fashioning them like Pharaoh's soldiers\nin the reeky painting, sometime like god Bel's\npriests in the old church-window, sometime like the\nshaven Hercules in the smirched worm-eaten tapestry,\nwhere his codpiece seems as massy as his club?\n\nCONRADE:\nAll this I see; and I see that the fashion wears\nout more apparel than the man. But art not thou\nthyself giddy with the fashion too, that thou hast\nshifted out of thy tale into telling me of the fashion?\n\nBORACHIO:\nNot so, neither: but know that I have to-night\nwooed Margaret, the Lady Hero's gentlewoman, by the\nname of Hero: she leans me out at her mistress'\nchamber-window, bids me a thousand times good\nnight,--I tell this tale vilely:--I should first\ntell thee how the prince, Claudio and my master,\nplanted and placed and possessed by my master Don\nJohn, saw afar off in the orchard this amiable encounter.\n\nCONRADE:\nAnd thought they Margaret was Hero?\n\nBORACHIO:\nTwo of them did, the prince and Claudio; but the\ndevil my master knew she was Margaret; and partly\nby his oaths, which first possessed them, partly by\nthe dark night, which did deceive them, but chiefly\nby my villany, which did confirm any slander that\nDon John had made, away went Claudio enraged; swore\nhe would meet her, as he was appointed, next morning\nat the temple, and there, before the whole\ncongregation, shame her with what he saw o'er night\nand send her home again without a husband.\n\nFirst Watchman:\nWe charge you, in the prince's name, stand!\n\nSecond Watchman:\nCall up the right master constable. We have here\nrecovered the most dangerous piece of lechery that\never was known in the commonwealth.\n\nFirst Watchman:\nAnd one Deformed is one of them: I know him; a'\nwears a lock.\n\nCONRADE:\nMasters, masters,--\n\nSecond Watchman:\nYou'll be made bring Deformed forth, I warrant you.\n\nCONRADE:\nMasters,--\n\nFirst Watchman:\nNever speak: we charge you let us obey you to go with us.\n\nBORACHIO:\nWe are like to prove a goodly commodity, being taken\nup of these men's bills.\n\nCONRADE:\nA commodity in question, I warrant you. Come, we'll obey you.\n\nHERO:\nGood Ursula, wake my cousin Beatrice, and desire\nher to rise.\n\nURSULA:\nI will, lady.\n\nHERO:\nAnd bid her come hither.\n\nURSULA:\nWell.\n\nMARGARET:\nTroth, I think your other rabato were better.\n\nHERO:\nNo, pray thee, good Meg, I'll wear this.\n\nMARGARET:\nBy my troth, 's not so good; and I warrant your\ncousin will say so.\n\nHERO:\nMy cousin's a fool, and thou art another: I'll wear\nnone but this.\n\nMARGARET:\nI like the new tire within excellently, if the hair\nwere a thought browner; and your gown's a most rare\nfashion, i' faith. I saw the Duchess of Milan's\ngown that they praise so.\n\nHERO:\nO, that exceeds, they say.\n\nMARGARET:\nBy my troth, 's but a night-gown in respect of\nyours: cloth o' gold, and cuts, and laced with\nsilver, set with pearls, down sleeves, side sleeves,\nand skirts, round underborne with a bluish tinsel:\nbut for a fine, quaint, graceful and excellent\nfashion, yours is worth ten on 't.\n\nHERO:\nGod give me joy to wear it! for my heart is\nexceeding heavy.\n\nMARGARET:\n'Twill be heavier soon by the weight of a man.\n\nHERO:\nFie upon thee! art not ashamed?\n\nMARGARET:\nOf what, lady? of speaking honourably? Is not\nmarriage honourable in a beggar? Is not your lord\nhonourable without marriage? I think you would have\nme say, 'saving your reverence, a husband:' and bad\nthinking do not wrest true speaking, I'll offend\nnobody: is there any harm in 'the heavier for a\nhusband'? None, I think, and it be the right husband\nand the right wife; otherwise 'tis light, and not\nheavy: ask my Lady Beatrice else; here she comes.\n\nHERO:\nGood morrow, coz.\n\nBEATRICE:\nGood morrow, sweet Hero.\n\nHERO:\nWhy how now? do you speak in the sick tune?\n\nBEATRICE:\nI am out of all other tune, methinks.\n\nMARGARET:\nClap's into 'Light o' love;' that goes without a\nburden: do you sing it, and I'll dance it.\n\nBEATRICE:\nYe light o' love, with your heels! then, if your\nhusband have stables enough, you'll see he shall\nlack no barns.\n\nMARGARET:\nO illegitimate construction! I scorn that with my heels.\n\nBEATRICE:\n'Tis almost five o'clock, cousin; tis time you were\nready. By my troth, I am exceeding ill: heigh-ho!\n\nMARGARET:\nFor a hawk, a horse, or a husband?\n\nBEATRICE:\nFor the letter that begins them all, H.\n\nMARGARET:\nWell, and you be not turned Turk, there's no more\nsailing by the star.\n\nBEATRICE:\nWhat means the fool, trow?\n\nMARGARET:\nNothing I; but God send every one their heart's desire!\n\nHERO:\nThese gloves the count sent me; they are an\nexcellent perfume.\n\nBEATRICE:\nI am stuffed, cousin; I cannot smell.\n\nMARGARET:\nA maid, and stuffed! there's goodly catching of cold.\n\nBEATRICE:\nO, God help me! God help me! how long have you\nprofessed apprehension?\n\nMARGARET:\nEven since you left it. Doth not my wit become me rarely?\n\nBEATRICE:\nIt is not seen enough, you should wear it in your\ncap. By my troth, I am sick.\n\nMARGARET:\nGet you some of this distilled Carduus Benedictus,\nand lay it to your heart: it is the only thing for a qualm.\n\nHERO:\nThere thou prickest her with a thistle.\n\nBEATRICE:\nBenedictus! why Benedictus? you have some moral in\nthis Benedictus.\n\nMARGARET:\nMoral! no, by my troth, I have no moral meaning; I\nmeant, plain holy-thistle. You may think perchance\nthat I think you are in love: nay, by'r lady, I am\nnot such a fool to think what I list, nor I list\nnot to think what I can, nor indeed I cannot think,\nif I would think my heart out of thinking, that you\nare in love or that you will be in love or that you\ncan be in love. Yet Benedick was such another, and\nnow is he become a man: he swore he would never\nmarry, and yet now, in despite of his heart, he eats\nhis meat without grudging: and how you may be\nconverted I know not, but methinks you look with\nyour eyes as other women do.\n\nBEATRICE:\nWhat pace is this that thy tongue keeps?\n\nMARGARET:\nNot a false gallop.\n\nURSULA:\nMadam, withdraw: the prince, the count, Signior\nBenedick, Don John, and all the gallants of the\ntown, are come to fetch you to church.\n\nHERO:\nHelp to dress me, good coz, good Meg, good Ursula.\n\nLEONATO:\nWhat would you with me, honest neighbour?\n\nDOGBERRY:\nMarry, sir, I would have some confidence with you\nthat decerns you nearly.\n\nLEONATO:\nBrief, I pray you; for you see it is a busy time with me.\n\nDOGBERRY:\nMarry, this it is, sir.\n\nVERGES:\nYes, in truth it is, sir.\n\nLEONATO:\nWhat is it, my good friends?\n\nDOGBERRY:\nGoodman Verges, sir, speaks a little off the\nmatter: an old man, sir, and his wits are not so\nblunt as, God help, I would desire they were; but,\nin faith, honest as the skin between his brows.\n\nVERGES:\nYes, I thank God I am as honest as any man living\nthat is an old man and no honester than I.\n\nDOGBERRY:\nComparisons are odorous: palabras, neighbour Verges.\n\nLEONATO:\nNeighbours, you are tedious.\n\nDOGBERRY:\nIt pleases your worship to say so, but we are the\npoor duke's officers; but truly, for mine own part,\nif I were as tedious as a king, I could find it in\nmy heart to bestow it all of your worship.\n\nLEONATO:\nAll thy tediousness on me, ah?\n\nDOGBERRY:\nYea, an 'twere a thousand pound more than 'tis; for\nI hear as good exclamation on your worship as of any\nman in the city; and though I be but a poor man, I\nam glad to hear it.\n\nVERGES:\nAnd so am I.\n\nLEONATO:\nI would fain know what you have to say.\n\nVERGES:\nMarry, sir, our watch to-night, excepting your\nworship's presence, ha' ta'en a couple of as arrant\nknaves as any in Messina.\n\nDOGBERRY:\nA good old man, sir; he will be talking: as they\nsay, when the age is in, the wit is out: God help\nus! it is a world to see. Well said, i' faith,\nneighbour Verges: well, God's a good man; an two men\nride of a horse, one must ride behind. An honest\nsoul, i' faith, sir; by my troth he is, as ever\nbroke bread; but God is to be worshipped; all men\nare not alike; alas, good neighbour!\n\nLEONATO:\nIndeed, neighbour, he comes too short of you.\n\nDOGBERRY:\nGifts that God gives.\n\nLEONATO:\nI must leave you.\n\nDOGBERRY:\nOne word, sir: our watch, sir, have indeed\ncomprehended two aspicious persons, and we would\nhave them this morning examined before your worship.\n\nLEONATO:\nTake their examination yourself and bring it me: I\nam now in great haste, as it may appear unto you.\n\nDOGBERRY:\nIt shall be suffigance.\n\nLEONATO:\nDrink some wine ere you go: fare you well.\n\nMessenger:\nMy lord, they stay for you to give your daughter to\nher husband.\n\nLEONATO:\nI'll wait upon them: I am ready.\n\nDOGBERRY:\nGo, good partner, go, get you to Francis Seacole;\nbid him bring his pen and inkhorn to the gaol: we\nare now to examination these men.\n\nVERGES:\nAnd we must do it wisely.\n\nDOGBERRY:\nWe will spare for no wit, I warrant you; here's\nthat shall drive some of them to a non-come: only\nget the learned writer to set down our\nexcommunication and meet me at the gaol.\n\nLEONATO:\nCome, Friar Francis, be brief; only to the plain\nform of marriage, and you shall recount their\nparticular duties afterwards.\n\nFRIAR FRANCIS:\nYou come hither, my lord, to marry this lady.\n\nCLAUDIO:\nNo.\n\nLEONATO:\nTo be married to her: friar, you come to marry her.\n\nFRIAR FRANCIS:\nLady, you come hither to be married to this count.\n\nHERO:\nI do.\n\nFRIAR FRANCIS:\nIf either of you know any inward impediment why you\nshould not be conjoined, charge you, on your souls,\nto utter it.\n\nCLAUDIO:\nKnow you any, Hero?\n\nHERO:\nNone, my lord.\n\nFRIAR FRANCIS:\nKnow you any, count?\n\nLEONATO:\nI dare make his answer, none.\n\nCLAUDIO:\nO, what men dare do! what men may do! what men daily\ndo, not knowing what they do!\n\nBENEDICK:\nHow now! interjections? Why, then, some be of\nlaughing, as, ah, ha, he!\n\nCLAUDIO:\nStand thee by, friar. Father, by your leave:\nWill you with free and unconstrained soul\nGive me this maid, your daughter?\n\nLEONATO:\nAs freely, son, as God did give her me.\n\nCLAUDIO:\nAnd what have I to give you back, whose worth\nMay counterpoise this rich and precious gift?\n\nDON PEDRO:\nNothing, unless you render her again.\n\nCLAUDIO:\nSweet prince, you learn me noble thankfulness.\nThere, Leonato, take her back again:\nGive not this rotten orange to your friend;\nShe's but the sign and semblance of her honour.\nBehold how like a maid she blushes here!\nO, what authority and show of truth\nCan cunning sin cover itself withal!\nComes not that blood as modest evidence\nTo witness simple virtue? Would you not swear,\nAll you that see her, that she were a maid,\nBy these exterior shows? But she is none:\nShe knows the heat of a luxurious bed;\nHer blush is guiltiness, not modesty.\n\nLEONATO:\nWhat do you mean, my lord?\n\nCLAUDIO:\nNot to be married,\nNot to knit my soul to an approved wanton.\n\nLEONATO:\nDear my lord, if you, in your own proof,\nHave vanquish'd the resistance of her youth,\nAnd made defeat of her virginity,--\n\nCLAUDIO:\nI know what you would say: if I have known her,\nYou will say she did embrace me as a husband,\nAnd so extenuate the 'forehand sin:\nNo, Leonato,\nI never tempted her with word too large;\nBut, as a brother to his sister, show'd\nBashful sincerity and comely love.\n\nHERO:\nAnd seem'd I ever otherwise to you?\n\nCLAUDIO:\nOut on thee! Seeming! I will write against it:\nYou seem to me as Dian in her orb,\nAs chaste as is the bud ere it be blown;\nBut you are more intemperate in your blood\nThan Venus, or those pamper'd animals\nThat rage in savage sensuality.\n\nHERO:\nIs my lord well, that he doth speak so wide?\n\nLEONATO:\nSweet prince, why speak not you?\n\nDON PEDRO:\nWhat should I speak?\nI stand dishonour'd, that have gone about\nTo link my dear friend to a common stale.\n\nLEONATO:\nAre these things spoken, or do I but dream?\n\nDON JOHN:\nSir, they are spoken, and these things are true.\n\nBENEDICK:\nThis looks not like a nuptial.\n\nHERO:\nTrue! O God!\n\nCLAUDIO:\nLeonato, stand I here?\nIs this the prince? is this the prince's brother?\nIs this face Hero's? are our eyes our own?\n\nLEONATO:\nAll this is so: but what of this, my lord?\n\nCLAUDIO:\nLet me but move one question to your daughter;\nAnd, by that fatherly and kindly power\nThat you have in her, bid her answer truly.\n\nLEONATO:\nI charge thee do so, as thou art my child.\n\nHERO:\nO, God defend me! how am I beset!\nWhat kind of catechising call you this?\n\nCLAUDIO:\nTo make you answer truly to your name.\n\nHERO:\nIs it not Hero? Who can blot that name\nWith any just reproach?\n\nCLAUDIO:\nMarry, that can Hero;\nHero itself can blot out Hero's virtue.\nWhat man was he talk'd with you yesternight\nOut at your window betwixt twelve and one?\nNow, if you are a maid, answer to this.\n\nHERO:\nI talk'd with no man at that hour, my lord.\n\nDON PEDRO:\nWhy, then are you no maiden. Leonato,\nI am sorry you must hear: upon mine honour,\nMyself, my brother and this grieved count\nDid see her, hear her, at that hour last night\nTalk with a ruffian at her chamber-window\nWho hath indeed, most like a liberal villain,\nConfess'd the vile encounters they have had\nA thousand times in secret.\n\nDON JOHN:\nFie, fie! they are not to be named, my lord,\nNot to be spoke of;\nThere is not chastity enough in language\nWithout offence to utter them. Thus, pretty lady,\nI am sorry for thy much misgovernment.\n\nCLAUDIO:\nO Hero, what a Hero hadst thou been,\nIf half thy outward graces had been placed\nAbout thy thoughts and counsels of thy heart!\nBut fare thee well, most foul, most fair! farewell,\nThou pure impiety and impious purity!\nFor thee I'll lock up all the gates of love,\nAnd on my eyelids shall conjecture hang,\nTo turn all beauty into thoughts of harm,\nAnd never shall it more be gracious.\n\nLEONATO:\nHath no man's dagger here a point for me?\n\nBEATRICE:\nWhy, how now, cousin! wherefore sink you down?\n\nDON JOHN:\nCome, let us go. These things, come thus to light,\nSmother her spirits up.\n\nBENEDICK:\nHow doth the lady?\n\nBEATRICE:\nDead, I think. Help, uncle!\nHero! why, Hero! Uncle! Signior Benedick! Friar!\n\nLEONATO:\nO Fate! take not away thy heavy hand.\nDeath is the fairest cover for her shame\nThat may be wish'd for.\n\nBEATRICE:\nHow now, cousin Hero!\n\nFRIAR FRANCIS:\nHave comfort, lady.\n\nLEONATO:\nDost thou look up?\n\nFRIAR FRANCIS:\nYea, wherefore should she not?\n\nLEONATO:\nWherefore! Why, doth not every earthly thing\nCry shame upon her? Could she here deny\nThe story that is printed in her blood?\nDo not live, Hero; do not ope thine eyes:\nFor, did I think thou wouldst not quickly die,\nThought I thy spirits were stronger than thy shames,\nMyself would, on the rearward of reproaches,\nStrike at thy life. Grieved I, I had but one?\nChid I for that at frugal nature's frame?\nO, one too much by thee! Why had I one?\nWhy ever wast thou lovely in my eyes?\nWhy had I not with charitable hand\nTook up a beggar's issue at my gates,\nWho smirch'd thus and mired with infamy,\nI might have said 'No part of it is mine;\nThis shame derives itself from unknown loins'?\nBut mine and mine I loved and mine I praised\nAnd mine that I was proud on, mine so much\nThat I myself was to myself not mine,\nValuing of her,--why, she, O, she is fallen\nInto a pit of ink, that the wide sea\nHath drops too few to wash her clean again\nAnd salt too little which may season give\nTo her foul-tainted flesh!\n\nBENEDICK:\nSir, sir, be patient.\nFor my part, I am so attired in wonder,\nI know not what to say.\n\nBEATRICE:\nO, on my soul, my cousin is belied!\n\nBENEDICK:\nLady, were you her bedfellow last night?\n\nBEATRICE:\nNo, truly not; although, until last night,\nI have this twelvemonth been her bedfellow.\n\nLEONATO:\nConfirm'd, confirm'd! O, that is stronger made\nWhich was before barr'd up with ribs of iron!\nWould the two princes lie, and Claudio lie,\nWho loved her so, that, speaking of her foulness,\nWash'd it with tears? Hence from her! let her die.\n\nFRIAR FRANCIS:\nHear me a little; for I have only been\nSilent so long and given way unto\nThis course of fortune\nBy noting of the lady. I have mark'd\nA thousand blushing apparitions\nTo start into her face, a thousand innocent shames\nIn angel whiteness beat away those blushes;\nAnd in her eye there hath appear'd a fire,\nTo burn the errors that these princes hold\nAgainst her maiden truth. Call me a fool;\nTrust not my reading nor my observations,\nWhich with experimental seal doth warrant\nThe tenor of my book; trust not my age,\nMy reverence, calling, nor divinity,\nIf this sweet lady lie not guiltless here\nUnder some biting error.\n\nLEONATO:\nFriar, it cannot be.\nThou seest that all the grace that she hath left\nIs that she will not add to her damnation\nA sin of perjury; she not denies it:\nWhy seek'st thou then to cover with excuse\nThat which appears in proper nakedness?\n\nFRIAR FRANCIS:\nLady, what man is he you are accused of?\n\nHERO:\nThey know that do accuse me; I know none:\nIf I know more of any man alive\nThan that which maiden modesty doth warrant,\nLet all my sins lack mercy! O my father,\nProve you that any man with me conversed\nAt hours unmeet, or that I yesternight\nMaintain'd the change of words with any creature,\nRefuse me, hate me, torture me to death!\n\nFRIAR FRANCIS:\nThere is some strange misprision in the princes.\n\nBENEDICK:\nTwo of them have the very bent of honour;\nAnd if their wisdoms be misled in this,\nThe practise of it lives in John the bastard,\nWhose spirits toil in frame of villanies.\n\nLEONATO:\nI know not. If they speak but truth of her,\nThese hands shall tear her; if they wrong her honour,\nThe proudest of them shall well hear of it.\nTime hath not yet so dried this blood of mine,\nNor age so eat up my invention,\nNor fortune made such havoc of my means,\nNor my bad life reft me so much of friends,\nBut they shall find, awaked in such a kind,\nBoth strength of limb and policy of mind,\nAbility in means and choice of friends,\nTo quit me of them throughly.\n\nFRIAR FRANCIS:\nPause awhile,\nAnd let my counsel sway you in this case.\nYour daughter here the princes left for dead:\nLet her awhile be secretly kept in,\nAnd publish it that she is dead indeed;\nMaintain a mourning ostentation\nAnd on your family's old monument\nHang mournful epitaphs and do all rites\nThat appertain unto a burial.\n\nLEONATO:\nWhat shall become of this? what will this do?\n\nFRIAR FRANCIS:\nMarry, this well carried shall on her behalf\nChange slander to remorse; that is some good:\nBut not for that dream I on this strange course,\nBut on this travail look for greater birth.\nShe dying, as it must so be maintain'd,\nUpon the instant that she was accused,\nShall be lamented, pitied and excused\nOf every hearer: for it so falls out\nThat what we have we prize not to the worth\nWhiles we enjoy it, but being lack'd and lost,\nWhy, then we rack the value, then we find\nThe virtue that possession would not show us\nWhiles it was ours. So will it fare with Claudio:\nWhen he shall hear she died upon his words,\nThe idea of her life shall sweetly creep\nInto his study of imagination,\nAnd every lovely organ of her life\nShall come apparell'd in more precious habit,\nMore moving-delicate and full of life,\nInto the eye and prospect of his soul,\nThan when she lived indeed; then shall he mourn,\nIf ever love had interest in his liver,\nAnd wish he had not so accused her,\nNo, though he thought his accusation true.\nLet this be so, and doubt not but success\nWill fashion the event in better shape\nThan I can lay it down in likelihood.\nBut if all aim but this be levell'd false,\nThe supposition of the lady's death\nWill quench the wonder of her infamy:\nAnd if it sort not well, you may conceal her,\nAs best befits her wounded reputation,\nIn some reclusive and religious life,\nOut of all eyes, tongues, minds and injuries.\n\nBENEDICK:\nSignior Leonato, let the friar advise you:\nAnd though you know my inwardness and love\nIs very much unto the prince and Claudio,\nYet, by mine honour, I will deal in this\nAs secretly and justly as your soul\nShould with your body.\n\nLEONATO:\nBeing that I flow in grief,\nThe smallest twine may lead me.\n\nFRIAR FRANCIS:\n'Tis well consented: presently away;\nFor to strange sores strangely they strain the cure.\nCome, lady, die to live: this wedding-day\nPerhaps is but prolong'd: have patience and endure.\n\nBENEDICK:\nLady Beatrice, have you wept all this while?\n\nBEATRICE:\nYea, and I will weep a while longer.\n\nBENEDICK:\nI will not desire that.\n\nBEATRICE:\nYou have no reason; I do it freely.\n\nBENEDICK:\nSurely I do believe your fair cousin is wronged.\n\nBEATRICE:\nAh, how much might the man deserve of me that would right her!\n\nBENEDICK:\nIs there any way to show such friendship?\n\nBEATRICE:\nA very even way, but no such friend.\n\nBENEDICK:\nMay a man do it?\n\nBEATRICE:\nIt is a man's office, but not yours.\n\nBENEDICK:\nI do love nothing in the world so well as you: is\nnot that strange?\n\nBEATRICE:\nAs strange as the thing I know not. It were as\npossible for me to say I loved nothing so well as\nyou: but believe me not; and yet I lie not; I\nconfess nothing, nor I deny nothing. I am sorry for my cousin.\n\nBENEDICK:\nBy my sword, Beatrice, thou lovest me.\n\nBEATRICE:\nDo not swear, and eat it.\n\nBENEDICK:\nI will swear by it that you love me; and I will make\nhim eat it that says I love not you.\n\nBEATRICE:\nWill you not eat your word?\n\nBENEDICK:\nWith no sauce that can be devised to it. I protest\nI love thee.\n\nBEATRICE:\nWhy, then, God forgive me!\n\nBENEDICK:\nWhat offence, sweet Beatrice?\n\nBEATRICE:\nYou have stayed me in a happy hour: I was about to\nprotest I loved you.\n\nBENEDICK:\nAnd do it with all thy heart.\n\nBEATRICE:\nI love you with so much of my heart that none is\nleft to protest.\n\nBENEDICK:\nCome, bid me do any thing for thee.\n\nBEATRICE:\nKill Claudio.\n\nBENEDICK:\nHa! not for the wide world.\n\nBEATRICE:\nYou kill me to deny it. Farewell.\n\nBENEDICK:\nTarry, sweet Beatrice.\n\nBEATRICE:\nI am gone, though I am here: there is no love in\nyou: nay, I pray you, let me go.\n\nBENEDICK:\nBeatrice,--\n\nBEATRICE:\nIn faith, I will go.\n\nBENEDICK:\nWe'll be friends first.\n\nBEATRICE:\nYou dare easier be friends with me than fight with mine enemy.\n\nBENEDICK:\nIs Claudio thine enemy?\n\nBEATRICE:\nIs he not approved in the height a villain, that\nhath slandered, scorned, dishonoured my kinswoman? O\nthat I were a man! What, bear her in hand until they\ncome to take hands; and then, with public\naccusation, uncovered slander, unmitigated rancour,\n--O God, that I were a man! I would eat his heart\nin the market-place.\n\nBENEDICK:\nHear me, Beatrice,--\n\nBEATRICE:\nTalk with a man out at a window! A proper saying!\n\nBENEDICK:\nNay, but, Beatrice,--\n\nBEATRICE:\nSweet Hero! She is wronged, she is slandered, she is undone.\n\nBENEDICK:\nBeat--\n\nBEATRICE:\nPrinces and counties! Surely, a princely testimony,\na goodly count, Count Comfect; a sweet gallant,\nsurely! O that I were a man for his sake! or that I\nhad any friend would be a man for my sake! But\nmanhood is melted into courtesies, valour into\ncompliment, and men are only turned into tongue, and\ntrim ones too: he is now as valiant as Hercules\nthat only tells a lie and swears it. I cannot be a\nman with wishing, therefore I will die a woman with grieving.\n\nBENEDICK:\nTarry, good Beatrice. By this hand, I love thee.\n\nBEATRICE:\nUse it for my love some other way than swearing by it.\n\nBENEDICK:\nThink you in your soul the Count Claudio hath wronged Hero?\n\nBEATRICE:\nYea, as sure as I have a thought or a soul.\n\nBENEDICK:\nEnough, I am engaged; I will challenge him. I will\nkiss your hand, and so I leave you. By this hand,\nClaudio shall render me a dear account. As you\nhear of me, so think of me. Go, comfort your\ncousin: I must say she is dead: and so, farewell.\n\nDOGBERRY:\nIs our whole dissembly appeared?\n\nVERGES:\nO, a stool and a cushion for the sexton.\n\nSexton:\nWhich be the malefactors?\n\nDOGBERRY:\nMarry, that am I and my partner.\n\nVERGES:\nNay, that's certain; we have the exhibition to examine.\n\nSexton:\nBut which are the offenders that are to be\nexamined? let them come before master constable.\n\nDOGBERRY:\nYea, marry, let them come before me. What is your\nname, friend?\n\nBORACHIO:\nBorachio.\n\nDOGBERRY:\nPray, write down, Borachio. Yours, sirrah?\n\nCONRADE:\nI am a gentleman, sir, and my name is Conrade.\n\nDOGBERRY:\nWrite down, master gentleman Conrade. Masters, do\nyou serve God?\n\nCONRADE:\nYea, sir, we hope.\n\nDOGBERRY:\nWrite down, that they hope they serve God: and\nwrite God first; for God defend but God should go\nbefore such villains! Masters, it is proved already\nthat you are little better than false knaves; and it\nwill go near to be thought so shortly. How answer\nyou for yourselves?\n\nCONRADE:\nMarry, sir, we say we are none.\n\nDOGBERRY:\nA marvellous witty fellow, I assure you: but I\nwill go about with him. Come you hither, sirrah; a\nword in your ear: sir, I say to you, it is thought\nyou are false knaves.\n\nBORACHIO:\nSir, I say to you we are none.\n\nDOGBERRY:\nWell, stand aside. 'Fore God, they are both in a\ntale. Have you writ down, that they are none?\n\nSexton:\nMaster constable, you go not the way to examine:\nyou must call forth the watch that are their accusers.\n\nDOGBERRY:\nYea, marry, that's the eftest way. Let the watch\ncome forth. Masters, I charge you, in the prince's\nname, accuse these men.\n\nFirst Watchman:\nThis man said, sir, that Don John, the prince's\nbrother, was a villain.\n\nDOGBERRY:\nWrite down Prince John a villain. Why, this is flat\nperjury, to call a prince's brother villain.\n\nBORACHIO:\nMaster constable,--\n\nDOGBERRY:\nPray thee, fellow, peace: I do not like thy look,\nI promise thee.\n\nSexton:\nWhat heard you him say else?\n\nSecond Watchman:\nMarry, that he had received a thousand ducats of\nDon John for accusing the Lady Hero wrongfully.\n\nDOGBERRY:\nFlat burglary as ever was committed.\n\nVERGES:\nYea, by mass, that it is.\n\nSexton:\nWhat else, fellow?\n\nFirst Watchman:\nAnd that Count Claudio did mean, upon his words, to\ndisgrace Hero before the whole assembly. and not marry her.\n\nDOGBERRY:\nO villain! thou wilt be condemned into everlasting\nredemption for this.\n\nSexton:\nWhat else?\n\nWatchman:\nThis is all.\n\nSexton:\nAnd this is more, masters, than you can deny.\nPrince John is this morning secretly stolen away;\nHero was in this manner accused, in this very manner\nrefused, and upon the grief of this suddenly died.\nMaster constable, let these men be bound, and\nbrought to Leonato's: I will go before and show\nhim their examination.\n\nDOGBERRY:\nCome, let them be opinioned.\n\nVERGES:\nLet them be in the hands--\n\nCONRADE:\nOff, coxcomb!\n\nDOGBERRY:\nGod's my life, where's the sexton? let him write\ndown the prince's officer coxcomb. Come, bind them.\nThou naughty varlet!\n\nCONRADE:\nAway! you are an ass, you are an ass.\n\nDOGBERRY:\nDost thou not suspect my place? dost thou not\nsuspect my years? O that he were here to write me\ndown an ass! But, masters, remember that I am an\nass; though it be not written down, yet forget not\nthat I am an ass. No, thou villain, thou art full of\npiety, as shall be proved upon thee by good witness.\nI am a wise fellow, and, which is more, an officer,\nand, which is more, a householder, and, which is\nmore, as pretty a piece of flesh as any is in\nMessina, and one that knows the law, go to; and a\nrich fellow enough, go to; and a fellow that hath\nhad losses, and one that hath two gowns and every\nthing handsome about him. Bring him away. O that\nI had been writ down an ass!\n\nANTONIO:\nIf you go on thus, you will kill yourself:\nAnd 'tis not wisdom thus to second grief\nAgainst yourself.\n\nLEONATO:\nI pray thee, cease thy counsel,\nWhich falls into mine ears as profitless\nAs water in a sieve: give not me counsel;\nNor let no comforter delight mine ear\nBut such a one whose wrongs do suit with mine.\nBring me a father that so loved his child,\nWhose joy of her is overwhelm'd like mine,\nAnd bid him speak of patience;\nMeasure his woe the length and breadth of mine\nAnd let it answer every strain for strain,\nAs thus for thus and such a grief for such,\nIn every lineament, branch, shape, and form:\nIf such a one will smile and stroke his beard,\nBid sorrow wag, cry 'hem!' when he should groan,\nPatch grief with proverbs, make misfortune drunk\nWith candle-wasters; bring him yet to me,\nAnd I of him will gather patience.\nBut there is no such man: for, brother, men\nCan counsel and speak comfort to that grief\nWhich they themselves not feel; but, tasting it,\nTheir counsel turns to passion, which before\nWould give preceptial medicine to rage,\nFetter strong madness in a silken thread,\nCharm ache with air and agony with words:\nNo, no; 'tis all men's office to speak patience\nTo those that wring under the load of sorrow,\nBut no man's virtue nor sufficiency\nTo be so moral when he shall endure\nThe like himself. Therefore give me no counsel:\nMy griefs cry louder than advertisement.\n\nANTONIO:\nTherein do men from children nothing differ.\n\nLEONATO:\nI pray thee, peace. I will be flesh and blood;\nFor there was never yet philosopher\nThat could endure the toothache patiently,\nHowever they have writ the style of gods\nAnd made a push at chance and sufferance.\n\nANTONIO:\nYet bend not all the harm upon yourself;\nMake those that do offend you suffer too.\n\nLEONATO:\nThere thou speak'st reason: nay, I will do so.\nMy soul doth tell me Hero is belied;\nAnd that shall Claudio know; so shall the prince\nAnd all of them that thus dishonour her.\n\nANTONIO:\nHere comes the prince and Claudio hastily.\n\nDON PEDRO:\nGood den, good den.\n\nCLAUDIO:\nGood day to both of you.\n\nLEONATO:\nHear you. my lords,--\n\nDON PEDRO:\nWe have some haste, Leonato.\n\nLEONATO:\nSome haste, my lord! well, fare you well, my lord:\nAre you so hasty now? well, all is one.\n\nDON PEDRO:\nNay, do not quarrel with us, good old man.\n\nANTONIO:\nIf he could right himself with quarreling,\nSome of us would lie low.\n\nCLAUDIO:\nWho wrongs him?\n\nLEONATO:\nMarry, thou dost wrong me; thou dissembler, thou:--\nNay, never lay thy hand upon thy sword;\nI fear thee not.\n\nCLAUDIO:\nMarry, beshrew my hand,\nIf it should give your age such cause of fear:\nIn faith, my hand meant nothing to my sword.\n\nLEONATO:\nTush, tush, man; never fleer and jest at me:\nI speak not like a dotard nor a fool,\nAs under privilege of age to brag\nWhat I have done being young, or what would do\nWere I not old. Know, Claudio, to thy head,\nThou hast so wrong'd mine innocent child and me\nThat I am forced to lay my reverence by\nAnd, with grey hairs and bruise of many days,\nDo challenge thee to trial of a man.\nI say thou hast belied mine innocent child;\nThy slander hath gone through and through her heart,\nAnd she lies buried with her ancestors;\nO, in a tomb where never scandal slept,\nSave this of hers, framed by thy villany!\n\nCLAUDIO:\nMy villany?\n\nLEONATO:\nThine, Claudio; thine, I say.\n\nDON PEDRO:\nYou say not right, old man.\n\nLEONATO:\nMy lord, my lord,\nI'll prove it on his body, if he dare,\nDespite his nice fence and his active practise,\nHis May of youth and bloom of lustihood.\n\nCLAUDIO:\nAway! I will not have to do with you.\n\nLEONATO:\nCanst thou so daff me? Thou hast kill'd my child:\nIf thou kill'st me, boy, thou shalt kill a man.\n\nANTONIO:\nHe shall kill two of us, and men indeed:\nBut that's no matter; let him kill one first;\nWin me and wear me; let him answer me.\nCome, follow me, boy; come, sir boy, come, follow me:\nSir boy, I'll whip you from your foining fence;\nNay, as I am a gentleman, I will.\n\nLEONATO:\nBrother,--\n\nANTONIO:\nContent yourself. God knows I loved my niece;\nAnd she is dead, slander'd to death by villains,\nThat dare as well answer a man indeed\nAs I dare take a serpent by the tongue:\nBoys, apes, braggarts, Jacks, milksops!\n\nLEONATO:\nBrother Antony,--\n\nANTONIO:\nHold you content. What, man! I know them, yea,\nAnd what they weigh, even to the utmost scruple,--\nScrambling, out-facing, fashion-monging boys,\nThat lie and cog and flout, deprave and slander,\nGo anticly, show outward hideousness,\nAnd speak off half a dozen dangerous words,\nHow they might hurt their enemies, if they durst;\nAnd this is all.\n\nLEONATO:\nBut, brother Antony,--\n\nANTONIO:\nCome, 'tis no matter:\nDo not you meddle; let me deal in this.\n\nDON PEDRO:\nGentlemen both, we will not wake your patience.\nMy heart is sorry for your daughter's death:\nBut, on my honour, she was charged with nothing\nBut what was true and very full of proof.\n\nLEONATO:\nMy lord, my lord,--\n\nDON PEDRO:\nI will not hear you.\n\nLEONATO:\nNo? Come, brother; away! I will be heard.\n\nANTONIO:\nAnd shall, or some of us will smart for it.\n\nDON PEDRO:\nSee, see; here comes the man we went to seek.\n\nCLAUDIO:\nNow, signior, what news?\n\nBENEDICK:\nGood day, my lord.\n\nDON PEDRO:\nWelcome, signior: you are almost come to part\nalmost a fray.\n\nCLAUDIO:\nWe had like to have had our two noses snapped off\nwith two old men without teeth.\n\nDON PEDRO:\nLeonato and his brother. What thinkest thou? Had\nwe fought, I doubt we should have been too young for them.\n\nBENEDICK:\nIn a false quarrel there is no true valour. I came\nto seek you both.\n\nCLAUDIO:\nWe have been up and down to seek thee; for we are\nhigh-proof melancholy and would fain have it beaten\naway. Wilt thou use thy wit?\n\nBENEDICK:\nIt is in my scabbard: shall I draw it?\n\nDON PEDRO:\nDost thou wear thy wit by thy side?\n\nCLAUDIO:\nNever any did so, though very many have been beside\ntheir wit. I will bid thee draw, as we do the\nminstrels; draw, to pleasure us.\n\nDON PEDRO:\nAs I am an honest man, he looks pale. Art thou\nsick, or angry?\n\nCLAUDIO:\nWhat, courage, man! What though care killed a cat,\nthou hast mettle enough in thee to kill care.\n\nBENEDICK:\nSir, I shall meet your wit in the career, and you\ncharge it against me. I pray you choose another subject.\n\nCLAUDIO:\nNay, then, give him another staff: this last was\nbroke cross.\n\nDON PEDRO:\nBy this light, he changes more and more: I think\nhe be angry indeed.\n\nCLAUDIO:\nIf he be, he knows how to turn his girdle.\n\nBENEDICK:\nShall I speak a word in your ear?\n\nCLAUDIO:\nGod bless me from a challenge!\n\nBENEDICK:\n\nCLAUDIO:\nWell, I will meet you, so I may have good cheer.\n\nDON PEDRO:\nWhat, a feast, a feast?\n\nCLAUDIO:\nI' faith, I thank him; he hath bid me to a calf's\nhead and a capon; the which if I do not carve most\ncuriously, say my knife's naught. Shall I not find\na woodcock too?\n\nBENEDICK:\nSir, your wit ambles well; it goes easily.\n\nDON PEDRO:\nI'll tell thee how Beatrice praised thy wit the\nother day. I said, thou hadst a fine wit: 'True,'\nsaid she, 'a fine little one.' 'No,' said I, 'a\ngreat wit:' 'Right,' says she, 'a great gross one.'\n'Nay,' said I, 'a good wit:' 'Just,' said she, 'it\nhurts nobody.' 'Nay,' said I, 'the gentleman\nis wise:' 'Certain,' said she, 'a wise gentleman.'\n'Nay,' said I, 'he hath the tongues:' 'That I\nbelieve,' said she, 'for he swore a thing to me on\nMonday night, which he forswore on Tuesday morning;\nthere's a double tongue; there's two tongues.' Thus\ndid she, an hour together, transshape thy particular\nvirtues: yet at last she concluded with a sigh, thou\nwast the properest man in Italy.\n\nCLAUDIO:\nFor the which she wept heartily and said she cared\nnot.\n\nDON PEDRO:\nYea, that she did: but yet, for all that, an if she\ndid not hate him deadly, she would love him dearly:\nthe old man's daughter told us all.\n\nCLAUDIO:\nAll, all; and, moreover, God saw him when he was\nhid in the garden.\n\nDON PEDRO:\nBut when shall we set the savage bull's horns on\nthe sensible Benedick's head?\n\nCLAUDIO:\nYea, and text underneath, 'Here dwells Benedick the\nmarried man'?\n\nBENEDICK:\nFare you well, boy: you know my mind. I will leave\nyou now to your gossip-like humour: you break jests\nas braggarts do their blades, which God be thanked,\nhurt not. My lord, for your many courtesies I thank\nyou: I must discontinue your company: your brother\nthe bastard is fled from Messina: you have among\nyou killed a sweet and innocent lady. For my Lord\nLackbeard there, he and I shall meet: and, till\nthen, peace be with him.\n\nDON PEDRO:\nHe is in earnest.\n\nCLAUDIO:\nIn most profound earnest; and, I'll warrant you, for\nthe love of Beatrice.\n\nDON PEDRO:\nAnd hath challenged thee.\n\nCLAUDIO:\nMost sincerely.\n\nDON PEDRO:\nWhat a pretty thing man is when he goes in his\ndoublet and hose and leaves off his wit!\n\nCLAUDIO:\nHe is then a giant to an ape; but then is an ape a\ndoctor to such a man.\n\nDON PEDRO:\nBut, soft you, let me be: pluck up, my heart, and\nbe sad. Did he not say, my brother was fled?\n\nDOGBERRY:\nCome you, sir: if justice cannot tame you, she\nshall ne'er weigh more reasons in her balance: nay,\nan you be a cursing hypocrite once, you must be looked to.\n\nDON PEDRO:\nHow now? two of my brother's men bound! Borachio\none!\n\nCLAUDIO:\nHearken after their offence, my lord.\n\nDON PEDRO:\nOfficers, what offence have these men done?\n\nDOGBERRY:\nMarry, sir, they have committed false report;\nmoreover, they have spoken untruths; secondarily,\nthey are slanders; sixth and lastly, they have\nbelied a lady; thirdly, they have verified unjust\nthings; and, to conclude, they are lying knaves.\n\nDON PEDRO:\nFirst, I ask thee what they have done; thirdly, I\nask thee what's their offence; sixth and lastly, why\nthey are committed; and, to conclude, what you lay\nto their charge.\n\nCLAUDIO:\nRightly reasoned, and in his own division: and, by\nmy troth, there's one meaning well suited.\n\nDON PEDRO:\nWho have you offended, masters, that you are thus\nbound to your answer? this learned constable is\ntoo cunning to be understood: what's your offence?\n\nBORACHIO:\nSweet prince, let me go no farther to mine answer:\ndo you hear me, and let this count kill me. I have\ndeceived even your very eyes: what your wisdoms\ncould not discover, these shallow fools have brought\nto light: who in the night overheard me confessing\nto this man how Don John your brother incensed me\nto slander the Lady Hero, how you were brought into\nthe orchard and saw me court Margaret in Hero's\ngarments, how you disgraced her, when you should\nmarry her: my villany they have upon record; which\nI had rather seal with my death than repeat over\nto my shame. The lady is dead upon mine and my\nmaster's false accusation; and, briefly, I desire\nnothing but the reward of a villain.\n\nDON PEDRO:\nRuns not this speech like iron through your blood?\n\nCLAUDIO:\nI have drunk poison whiles he utter'd it.\n\nDON PEDRO:\nBut did my brother set thee on to this?\n\nBORACHIO:\nYea, and paid me richly for the practise of it.\n\nDON PEDRO:\nHe is composed and framed of treachery:\nAnd fled he is upon this villany.\n\nCLAUDIO:\nSweet Hero! now thy image doth appear\nIn the rare semblance that I loved it first.\n\nDOGBERRY:\nCome, bring away the plaintiffs: by this time our\nsexton hath reformed Signior Leonato of the matter:\nand, masters, do not forget to specify, when time\nand place shall serve, that I am an ass.\n\nVERGES:\nHere, here comes master Signior Leonato, and the\nSexton too.\n\nLEONATO:\nWhich is the villain? let me see his eyes,\nThat, when I note another man like him,\nI may avoid him: which of these is he?\n\nBORACHIO:\nIf you would know your wronger, look on me.\n\nLEONATO:\nArt thou the slave that with thy breath hast kill'd\nMine innocent child?\n\nBORACHIO:\nYea, even I alone.\n\nLEONATO:\nNo, not so, villain; thou beliest thyself:\nHere stand a pair of honourable men;\nA third is fled, that had a hand in it.\nI thank you, princes, for my daughter's death:\nRecord it with your high and worthy deeds:\n'Twas bravely done, if you bethink you of it.\n\nCLAUDIO:\nI know not how to pray your patience;\nYet I must speak. Choose your revenge yourself;\nImpose me to what penance your invention\nCan lay upon my sin: yet sinn'd I not\nBut in mistaking.\n\nDON PEDRO:\nBy my soul, nor I:\nAnd yet, to satisfy this good old man,\nI would bend under any heavy weight\nThat he'll enjoin me to.\n\nLEONATO:\nI cannot bid you bid my daughter live;\nThat were impossible: but, I pray you both,\nPossess the people in Messina here\nHow innocent she died; and if your love\nCan labour ought in sad invention,\nHang her an epitaph upon her tomb\nAnd sing it to her bones, sing it to-night:\nTo-morrow morning come you to my house,\nAnd since you could not be my son-in-law,\nBe yet my nephew: my brother hath a daughter,\nAlmost the copy of my child that's dead,\nAnd she alone is heir to both of us:\nGive her the right you should have given her cousin,\nAnd so dies my revenge.\n\nCLAUDIO:\nO noble sir,\nYour over-kindness doth wring tears from me!\nI do embrace your offer; and dispose\nFor henceforth of poor Claudio.\n\nLEONATO:\nTo-morrow then I will expect your coming;\nTo-night I take my leave. This naughty man\nShall face to face be brought to Margaret,\nWho I believe was pack'd in all this wrong,\nHired to it by your brother.\n\nBORACHIO:\nNo, by my soul, she was not,\nNor knew not what she did when she spoke to me,\nBut always hath been just and virtuous\nIn any thing that I do know by her.\n\nDOGBERRY:\nMoreover, sir, which indeed is not under white and\nblack, this plaintiff here, the offender, did call\nme ass: I beseech you, let it be remembered in his\npunishment. And also, the watch heard them talk of\none Deformed: they say be wears a key in his ear and\na lock hanging by it, and borrows money in God's\nname, the which he hath used so long and never paid\nthat now men grow hard-hearted and will lend nothing\nfor God's sake: pray you, examine him upon that point.\n\nLEONATO:\nI thank thee for thy care and honest pains.\n\nDOGBERRY:\nYour worship speaks like a most thankful and\nreverend youth; and I praise God for you.\n\nLEONATO:\nThere's for thy pains.\n\nDOGBERRY:\nGod save the foundation!\n\nLEONATO:\nGo, I discharge thee of thy prisoner, and I thank thee.\n\nDOGBERRY:\nI leave an arrant knave with your worship; which I\nbeseech your worship to correct yourself, for the\nexample of others. God keep your worship! I wish\nyour worship well; God restore you to health! I\nhumbly give you leave to depart; and if a merry\nmeeting may be wished, God prohibit it! Come, neighbour.\n\nLEONATO:\nUntil to-morrow morning, lords, farewell.\n\nANTONIO:\nFarewell, my lords: we look for you to-morrow.\n\nDON PEDRO:\nWe will not fail.\n\nCLAUDIO:\nTo-night I'll mourn with Hero.\n\nLEONATO:\n\nBENEDICK:\nPray thee, sweet Mistress Margaret, deserve well at\nmy hands by helping me to the speech of Beatrice.\n\nMARGARET:\nWill you then write me a sonnet in praise of my beauty?\n\nBENEDICK:\nIn so high a style, Margaret, that no man living\nshall come over it; for, in most comely truth, thou\ndeservest it.\n\nMARGARET:\nTo have no man come over me! why, shall I always\nkeep below stairs?\n\nBENEDICK:\nThy wit is as quick as the greyhound's mouth; it catches.\n\nMARGARET:\nAnd yours as blunt as the fencer's foils, which hit,\nbut hurt not.\n\nBENEDICK:\nA most manly wit, Margaret; it will not hurt a\nwoman: and so, I pray thee, call Beatrice: I give\nthee the bucklers.\n\nMARGARET:\nGive us the swords; we have bucklers of our own.\n\nBENEDICK:\nIf you use them, Margaret, you must put in the\npikes with a vice; and they are dangerous weapons for maids.\n\nMARGARET:\nWell, I will call Beatrice to you, who I think hath legs.\n\nBENEDICK:\nAnd therefore will come.\nThe god of love,\nThat sits above,\nAnd knows me, and knows me,\nHow pitiful I deserve,--\nI mean in singing; but in loving, Leander the good\nswimmer, Troilus the first employer of panders, and\na whole bookful of these quondam carpet-mangers,\nwhose names yet run smoothly in the even road of a\nblank verse, why, they were never so truly turned\nover and over as my poor self in love. Marry, I\ncannot show it in rhyme; I have tried: I can find\nout no rhyme to 'lady' but 'baby,' an innocent\nrhyme; for 'scorn,' 'horn,' a hard rhyme; for,\n'school,' 'fool,' a babbling rhyme; very ominous\nendings: no, I was not born under a rhyming planet,\nnor I cannot woo in festival terms.\nSweet Beatrice, wouldst thou come when I called thee?\n\nBEATRICE:\nYea, signior, and depart when you bid me.\n\nBENEDICK:\nO, stay but till then!\n\nBEATRICE:\n'Then' is spoken; fare you well now: and yet, ere\nI go, let me go with that I came; which is, with\nknowing what hath passed between you and Claudio.\n\nBENEDICK:\nOnly foul words; and thereupon I will kiss thee.\n\nBEATRICE:\nFoul words is but foul wind, and foul wind is but\nfoul breath, and foul breath is noisome; therefore I\nwill depart unkissed.\n\nBENEDICK:\nThou hast frighted the word out of his right sense,\nso forcible is thy wit. But I must tell thee\nplainly, Claudio undergoes my challenge; and either\nI must shortly hear from him, or I will subscribe\nhim a coward. And, I pray thee now, tell me for\nwhich of my bad parts didst thou first fall in love with me?\n\nBEATRICE:\nFor them all together; which maintained so politic\na state of evil that they will not admit any good\npart to intermingle with them. But for which of my\ngood parts did you first suffer love for me?\n\nBENEDICK:\nSuffer love! a good epithet! I do suffer love\nindeed, for I love thee against my will.\n\nBEATRICE:\nIn spite of your heart, I think; alas, poor heart!\nIf you spite it for my sake, I will spite it for\nyours; for I will never love that which my friend hates.\n\nBENEDICK:\nThou and I are too wise to woo peaceably.\n\nBEATRICE:\nIt appears not in this confession: there's not one\nwise man among twenty that will praise himself.\n\nBENEDICK:\nAn old, an old instance, Beatrice, that lived in\nthe lime of good neighbours. If a man do not erect\nin this age his own tomb ere he dies, he shall live\nno longer in monument than the bell rings and the\nwidow weeps.\n\nBEATRICE:\nAnd how long is that, think you?\n\nBENEDICK:\nQuestion: why, an hour in clamour and a quarter in\nrheum: therefore is it most expedient for the\nwise, if Don Worm, his conscience, find no\nimpediment to the contrary, to be the trumpet of his\nown virtues, as I am to myself. So much for\npraising myself, who, I myself will bear witness, is\npraiseworthy: and now tell me, how doth your cousin?\n\nBEATRICE:\nVery ill.\n\nBENEDICK:\nAnd how do you?\n\nBEATRICE:\nVery ill too.\n\nBENEDICK:\nServe God, love me and mend. There will I leave\nyou too, for here comes one in haste.\n\nURSULA:\nMadam, you must come to your uncle. Yonder's old\ncoil at home: it is proved my Lady Hero hath been\nfalsely accused, the prince and Claudio mightily\nabused; and Don John is the author of all, who is\nfed and gone. Will you come presently?\n\nBEATRICE:\nWill you go hear this news, signior?\n\nBENEDICK:\nI will live in thy heart, die in thy lap, and be\nburied in thy eyes; and moreover I will go with\nthee to thy uncle's.\n\nCLAUDIO:\nIs this the monument of Leonato?\n\nLord:\nIt is, my lord.\n\nCLAUDIO:\n\nCLAUDIO:\nNow, unto thy bones good night!\nYearly will I do this rite.\n\nDON PEDRO:\nGood morrow, masters; put your torches out:\nThe wolves have prey'd; and look, the gentle day,\nBefore the wheels of Phoebus, round about\nDapples the drowsy east with spots of grey.\nThanks to you all, and leave us: fare you well.\n\nCLAUDIO:\nGood morrow, masters: each his several way.\n\nDON PEDRO:\nCome, let us hence, and put on other weeds;\nAnd then to Leonato's we will go.\n\nCLAUDIO:\nAnd Hymen now with luckier issue speed's\nThan this for whom we render'd up this woe.\n\nFRIAR FRANCIS:\nDid I not tell you she was innocent?\n\nLEONATO:\nSo are the prince and Claudio, who accused her\nUpon the error that you heard debated:\nBut Margaret was in some fault for this,\nAlthough against her will, as it appears\nIn the true course of all the question.\n\nANTONIO:\nWell, I am glad that all things sort so well.\n\nBENEDICK:\nAnd so am I, being else by faith enforced\nTo call young Claudio to a reckoning for it.\n\nLEONATO:\nWell, daughter, and you gentle-women all,\nWithdraw into a chamber by yourselves,\nAnd when I send for you, come hither mask'd.\nThe prince and Claudio promised by this hour\nTo visit me. You know your office, brother:\nYou must be father to your brother's daughter\nAnd give her to young Claudio.\n\nANTONIO:\nWhich I will do with confirm'd countenance.\n\nBENEDICK:\nFriar, I must entreat your pains, I think.\n\nFRIAR FRANCIS:\nTo do what, signior?\n\nBENEDICK:\nTo bind me, or undo me; one of them.\nSignior Leonato, truth it is, good signior,\nYour niece regards me with an eye of favour.\n\nLEONATO:\nThat eye my daughter lent her: 'tis most true.\n\nBENEDICK:\nAnd I do with an eye of love requite her.\n\nLEONATO:\nThe sight whereof I think you had from me,\nFrom Claudio and the prince: but what's your will?\n\nBENEDICK:\nYour answer, sir, is enigmatical:\nBut, for my will, my will is your good will\nMay stand with ours, this day to be conjoin'd\nIn the state of honourable marriage:\nIn which, good friar, I shall desire your help.\n\nLEONATO:\nMy heart is with your liking.\n\nFRIAR FRANCIS:\nAnd my help.\nHere comes the prince and Claudio.\n\nDON PEDRO:\nGood morrow to this fair assembly.\n\nLEONATO:\nGood morrow, prince; good morrow, Claudio:\nWe here attend you. Are you yet determined\nTo-day to marry with my brother's daughter?\n\nCLAUDIO:\nI'll hold my mind, were she an Ethiope.\n\nLEONATO:\nCall her forth, brother; here's the friar ready.\n\nDON PEDRO:\nGood morrow, Benedick. Why, what's the matter,\nThat you have such a February face,\nSo full of frost, of storm and cloudiness?\n\nCLAUDIO:\nI think he thinks upon the savage bull.\nTush, fear not, man; we'll tip thy horns with gold\nAnd all Europa shall rejoice at thee,\nAs once Europa did at lusty Jove,\nWhen he would play the noble beast in love.\n\nBENEDICK:\nBull Jove, sir, had an amiable low;\nAnd some such strange bull leap'd your father's cow,\nAnd got a calf in that same noble feat\nMuch like to you, for you have just his bleat.\n\nCLAUDIO:\nFor this I owe you: here comes other reckonings.\nWhich is the lady I must seize upon?\n\nANTONIO:\nThis same is she, and I do give you her.\n\nCLAUDIO:\nWhy, then she's mine. Sweet, let me see your face.\n\nLEONATO:\nNo, that you shall not, till you take her hand\nBefore this friar and swear to marry her.\n\nCLAUDIO:\nGive me your hand: before this holy friar,\nI am your husband, if you like of me.\n\nHERO:\nAnd when I lived, I was your other wife:\nAnd when you loved, you were my other husband.\n\nCLAUDIO:\nAnother Hero!\n\nHERO:\nNothing certainer:\nOne Hero died defiled, but I do live,\nAnd surely as I live, I am a maid.\n\nDON PEDRO:\nThe former Hero! Hero that is dead!\n\nLEONATO:\nShe died, my lord, but whiles her slander lived.\n\nFRIAR FRANCIS:\nAll this amazement can I qualify:\nWhen after that the holy rites are ended,\nI'll tell you largely of fair Hero's death:\nMeantime let wonder seem familiar,\nAnd to the chapel let us presently.\n\nBENEDICK:\nSoft and fair, friar. Which is Beatrice?\n\nBEATRICE:\n\nBENEDICK:\nDo not you love me?\n\nBEATRICE:\nWhy, no; no more than reason.\n\nBENEDICK:\nWhy, then your uncle and the prince and Claudio\nHave been deceived; they swore you did.\n\nBEATRICE:\nDo not you love me?\n\nBENEDICK:\nTroth, no; no more than reason.\n\nBEATRICE:\nWhy, then my cousin Margaret and Ursula\nAre much deceived; for they did swear you did.\n\nBENEDICK:\nThey swore that you were almost sick for me.\n\nBEATRICE:\nThey swore that you were well-nigh dead for me.\n\nBENEDICK:\n'Tis no such matter. Then you do not love me?\n\nBEATRICE:\nNo, truly, but in friendly recompense.\n\nLEONATO:\nCome, cousin, I am sure you love the gentleman.\n\nCLAUDIO:\nAnd I'll be sworn upon't that he loves her;\nFor here's a paper written in his hand,\nA halting sonnet of his own pure brain,\nFashion'd to Beatrice.\n\nHERO:\nAnd here's another\nWrit in my cousin's hand, stolen from her pocket,\nContaining her affection unto Benedick.\n\nBENEDICK:\nA miracle! here's our own hands against our hearts.\nCome, I will have thee; but, by this light, I take\nthee for pity.\n\nBEATRICE:\nI would not deny you; but, by this good day, I yield\nupon great persuasion; and partly to save your life,\nfor I was told you were in a consumption.\n\nBENEDICK:\nPeace! I will stop your mouth.\n\nDON PEDRO:\nHow dost thou, Benedick, the married man?\n\nBENEDICK:\nI'll tell thee what, prince; a college of\nwit-crackers cannot flout me out of my humour. Dost\nthou think I  care for a satire or an epigram? No:\nif a man will be beaten with brains, a' shall wear\nnothing handsome about him. In brief, since I do\npurpose to marry, I will think nothing to any\npurpose that the world can say against it; and\ntherefore never flout at me for what I have said\nagainst it; for man is a giddy thing, and this is my\nconclusion. For thy part, Claudio, I did think to\nhave beaten thee, but in that thou art like to be my\nkinsman, live unbruised and love my cousin.\n\nCLAUDIO:\nI had well hoped thou wouldst have denied Beatrice,\nthat I might have cudgelled thee out of thy single\nlife, to make thee a double-dealer; which, out of\nquestion, thou wilt be, if my cousin do not look\nexceedingly narrowly to thee.\n\nBENEDICK:\nCome, come, we are friends: let's have a dance ere\nwe are married, that we may lighten our own hearts\nand our wives' heels.\n\nLEONATO:\nWe'll have dancing afterward.\n\nBENEDICK:\nFirst, of my word; therefore play, music. Prince,\nthou art sad; get thee a wife, get thee a wife:\nthere is no staff more reverend than one tipped with horn.\n\nMessenger:\nMy lord, your brother John is ta'en in flight,\nAnd brought with armed men back to Messina.\n\nBENEDICK:\nThink not on him till to-morrow:\nI'll devise thee brave punishments for him.\nStrike up, pipers.\n\nKENT:\nI thought the king had more affected the Duke of\nAlbany than Cornwall.\n\nGLOUCESTER:\nIt did always seem so to us: but now, in the\ndivision of the kingdom, it appears not which of\nthe dukes he values most; for equalities are so\nweighed, that curiosity in neither can make choice\nof either's moiety.\n\nKENT:\nIs not this your son, my lord?\n\nGLOUCESTER:\nHis breeding, sir, hath been at my charge: I have\nso often blushed to acknowledge him, that now I am\nbrazed to it.\n\nKENT:\nI cannot conceive you.\n\nGLOUCESTER:\nSir, this young fellow's mother could: whereupon\nshe grew round-wombed, and had, indeed, sir, a son\nfor her cradle ere she had a husband for her bed.\nDo you smell a fault?\n\nKENT:\nI cannot wish the fault undone, the issue of it\nbeing so proper.\n\nGLOUCESTER:\nBut I have, sir, a son by order of law, some year\nelder than this, who yet is no dearer in my account:\nthough this knave came something saucily into the\nworld before he was sent for, yet was his mother\nfair; there was good sport at his making, and the\nwhoreson must be acknowledged. Do you know this\nnoble gentleman, Edmund?\n\nEDMUND:\nNo, my lord.\n\nGLOUCESTER:\nMy lord of Kent: remember him hereafter as my\nhonourable friend.\n\nEDMUND:\nMy services to your lordship.\n\nKENT:\nI must love you, and sue to know you better.\n\nEDMUND:\nSir, I shall study deserving.\n\nGLOUCESTER:\nHe hath been out nine years, and away he shall\nagain. The king is coming.\n\nKING LEAR:\nAttend the lords of France and Burgundy, Gloucester.\n\nGLOUCESTER:\nI shall, my liege.\n\nKING LEAR:\nMeantime we shall express our darker purpose.\nGive me the map there. Know that we have divided\nIn three our kingdom: and 'tis our fast intent\nTo shake all cares and business from our age;\nConferring them on younger strengths, while we\nUnburthen'd crawl toward death. Our son of Cornwall,\nAnd you, our no less loving son of Albany,\nWe have this hour a constant will to publish\nOur daughters' several dowers, that future strife\nMay be prevented now. The princes, France and Burgundy,\nGreat rivals in our youngest daughter's love,\nLong in our court have made their amorous sojourn,\nAnd here are to be answer'd. Tell me, my daughters,--\nSince now we will divest us both of rule,\nInterest of territory, cares of state,--\nWhich of you shall we say doth love us most?\nThat we our largest bounty may extend\nWhere nature doth with merit challenge. Goneril,\nOur eldest-born, speak first.\n\nGONERIL:\nSir, I love you more than words can wield the matter;\nDearer than eye-sight, space, and liberty;\nBeyond what can be valued, rich or rare;\nNo less than life, with grace, health, beauty, honour;\nAs much as child e'er loved, or father found;\nA love that makes breath poor, and speech unable;\nBeyond all manner of so much I love you.\n\nCORDELIA:\n\nLEAR:\nOf all these bounds, even from this line to this,\nWith shadowy forests and with champains rich'd,\nWith plenteous rivers and wide-skirted meads,\nWe make thee lady: to thine and Albany's issue\nBe this perpetual. What says our second daughter,\nOur dearest Regan, wife to Cornwall? Speak.\n\nREGAN:\nSir, I am made\nOf the self-same metal that my sister is,\nAnd prize me at her worth. In my true heart\nI find she names my very deed of love;\nOnly she comes too short: that I profess\nMyself an enemy to all other joys,\nWhich the most precious square of sense possesses;\nAnd find I am alone felicitate\nIn your dear highness' love.\n\nCORDELIA:\n\nKING LEAR:\nTo thee and thine hereditary ever\nRemain this ample third of our fair kingdom;\nNo less in space, validity, and pleasure,\nThan that conferr'd on Goneril. Now, our joy,\nAlthough the last, not least; to whose young love\nThe vines of France and milk of Burgundy\nStrive to be interess'd; what can you say to draw\nA third more opulent than your sisters? Speak.\n\nCORDELIA:\nNothing, my lord.\n\nKING LEAR:\nNothing!\n\nCORDELIA:\nNothing.\n\nKING LEAR:\nNothing will come of nothing: speak again.\n\nCORDELIA:\nUnhappy that I am, I cannot heave\nMy heart into my mouth: I love your majesty\nAccording to my bond; nor more nor less.\n\nKING LEAR:\nHow, how, Cordelia! mend your speech a little,\nLest it may mar your fortunes.\n\nCORDELIA:\nGood my lord,\nYou have begot me, bred me, loved me: I\nReturn those duties back as are right fit,\nObey you, love you, and most honour you.\nWhy have my sisters husbands, if they say\nThey love you all? Haply, when I shall wed,\nThat lord whose hand must take my plight shall carry\nHalf my love with him, half my care and duty:\nSure, I shall never marry like my sisters,\nTo love my father all.\n\nKING LEAR:\nBut goes thy heart with this?\n\nCORDELIA:\nAy, good my lord.\n\nKING LEAR:\nSo young, and so untender?\n\nCORDELIA:\nSo young, my lord, and true.\n\nKING LEAR:\nLet it be so; thy truth, then, be thy dower:\nFor, by the sacred radiance of the sun,\nThe mysteries of Hecate, and the night;\nBy all the operation of the orbs\nFrom whom we do exist, and cease to be;\nHere I disclaim all my paternal care,\nPropinquity and property of blood,\nAnd as a stranger to my heart and me\nHold thee, from this, for ever. The barbarous Scythian,\nOr he that makes his generation messes\nTo gorge his appetite, shall to my bosom\nBe as well neighbour'd, pitied, and relieved,\nAs thou my sometime daughter.\n\nKENT:\nGood my liege,--\n\nKING LEAR:\nPeace, Kent!\nCome not between the dragon and his wrath.\nI loved her most, and thought to set my rest\nOn her kind nursery. Hence, and avoid my sight!\nSo be my grave my peace, as here I give\nHer father's heart from her! Call France; who stirs?\nCall Burgundy. Cornwall and Albany,\nWith my two daughters' dowers digest this third:\nLet pride, which she calls plainness, marry her.\nI do invest you jointly with my power,\nPre-eminence, and all the large effects\nThat troop with majesty. Ourself, by monthly course,\nWith reservation of an hundred knights,\nBy you to be sustain'd, shall our abode\nMake with you by due turns. Only we still retain\nThe name, and all the additions to a king;\nThe sway, revenue, execution of the rest,\nBeloved sons, be yours: which to confirm,\nThis coronet part betwixt you.\n\nKENT:\nRoyal Lear,\nWhom I have ever honour'd as my king,\nLoved as my father, as my master follow'd,\nAs my great patron thought on in my prayers,--\n\nKING LEAR:\nThe bow is bent and drawn, make from the shaft.\n\nKENT:\nLet it fall rather, though the fork invade\nThe region of my heart: be Kent unmannerly,\nWhen Lear is mad. What wilt thou do, old man?\nThink'st thou that duty shall have dread to speak,\nWhen power to flattery bows? To plainness honour's bound,\nWhen majesty stoops to folly. Reverse thy doom;\nAnd, in thy best consideration, cheque\nThis hideous rashness: answer my life my judgment,\nThy youngest daughter does not love thee least;\nNor are those empty-hearted whose low sound\nReverbs no hollowness.\n\nKING LEAR:\nKent, on thy life, no more.\n\nKENT:\nMy life I never held but as a pawn\nTo wage against thy enemies; nor fear to lose it,\nThy safety being the motive.\n\nKING LEAR:\nOut of my sight!\n\nKENT:\nSee better, Lear; and let me still remain\nThe true blank of thine eye.\n\nKING LEAR:\nNow, by Apollo,--\n\nKENT:\nNow, by Apollo, king,\nThou swear'st thy gods in vain.\n\nKING LEAR:\nO, vassal! miscreant!\n\nALBANY:\nDear sir, forbear.\n\nKENT:\nDo:\nKill thy physician, and the fee bestow\nUpon thy foul disease. Revoke thy doom;\nOr, whilst I can vent clamour from my throat,\nI'll tell thee thou dost evil.\n\nKING LEAR:\nHear me, recreant!\nOn thine allegiance, hear me!\nSince thou hast sought to make us break our vow,\nWhich we durst never yet, and with strain'd pride\nTo come between our sentence and our power,\nWhich nor our nature nor our place can bear,\nOur potency made good, take thy reward.\nFive days we do allot thee, for provision\nTo shield thee from diseases of the world;\nAnd on the sixth to turn thy hated back\nUpon our kingdom: if, on the tenth day following,\nThy banish'd trunk be found in our dominions,\nThe moment is thy death. Away! by Jupiter,\nThis shall not be revoked.\n\nKENT:\nFare thee well, king: sith thus thou wilt appear,\nFreedom lives hence, and banishment is here.\nThe gods to their dear shelter take thee, maid,\nThat justly think'st, and hast most rightly said!\nAnd your large speeches may your deeds approve,\nThat good effects may spring from words of love.\nThus Kent, O princes, bids you all adieu;\nHe'll shape his old course in a country new.\n\nGLOUCESTER:\nHere's France and Burgundy, my noble lord.\n\nKING LEAR:\nMy lord of Burgundy.\nWe first address towards you, who with this king\nHath rivall'd for our daughter: what, in the least,\nWill you require in present dower with her,\nOr cease your quest of love?\n\nBURGUNDY:\nMost royal majesty,\nI crave no more than what your highness offer'd,\nNor will you tender less.\n\nKING LEAR:\nRight noble Burgundy,\nWhen she was dear to us, we did hold her so;\nBut now her price is fall'n. Sir, there she stands:\nIf aught within that little seeming substance,\nOr all of it, with our displeasure pieced,\nAnd nothing more, may fitly like your grace,\nShe's there, and she is yours.\n\nBURGUNDY:\nI know no answer.\n\nKING LEAR:\nWill you, with those infirmities she owes,\nUnfriended, new-adopted to our hate,\nDower'd with our curse, and stranger'd with our oath,\nTake her, or leave her?\n\nBURGUNDY:\nPardon me, royal sir;\nElection makes not up on such conditions.\n\nKING LEAR:\nThen leave her, sir; for, by the power that made me,\nI tell you all her wealth.\nFor you, great king,\nI would not from your love make such a stray,\nTo match you where I hate; therefore beseech you\nTo avert your liking a more worthier way\nThan on a wretch whom nature is ashamed\nAlmost to acknowledge hers.\n\nKING OF FRANCE:\nThis is most strange,\nThat she, that even but now was your best object,\nThe argument of your praise, balm of your age,\nMost best, most dearest, should in this trice of time\nCommit a thing so monstrous, to dismantle\nSo many folds of favour. Sure, her offence\nMust be of such unnatural degree,\nThat monsters it, or your fore-vouch'd affection\nFall'n into taint: which to believe of her,\nMust be a faith that reason without miracle\nCould never plant in me.\n\nCORDELIA:\nI yet beseech your majesty,--\nIf for I want that glib and oily art,\nTo speak and purpose not; since what I well intend,\nI'll do't before I speak,--that you make known\nIt is no vicious blot, murder, or foulness,\nNo unchaste action, or dishonour'd step,\nThat hath deprived me of your grace and favour;\nBut even for want of that for which I am richer,\nA still-soliciting eye, and such a tongue\nAs I am glad I have not, though not to have it\nHath lost me in your liking.\n\nKING LEAR:\nBetter thou\nHadst not been born than not to have pleased me better.\n\nKING OF FRANCE:\nIs it but this,--a tardiness in nature\nWhich often leaves the history unspoke\nThat it intends to do? My lord of Burgundy,\nWhat say you to the lady? Love's not love\nWhen it is mingled with regards that stand\nAloof from the entire point. Will you have her?\nShe is herself a dowry.\n\nBURGUNDY:\nRoyal Lear,\nGive but that portion which yourself proposed,\nAnd here I take Cordelia by the hand,\nDuchess of Burgundy.\n\nKING LEAR:\nNothing: I have sworn; I am firm.\n\nBURGUNDY:\nI am sorry, then, you have so lost a father\nThat you must lose a husband.\n\nCORDELIA:\nPeace be with Burgundy!\nSince that respects of fortune are his love,\nI shall not be his wife.\n\nKING OF FRANCE:\nFairest Cordelia, that art most rich, being poor;\nMost choice, forsaken; and most loved, despised!\nThee and thy virtues here I seize upon:\nBe it lawful I take up what's cast away.\nGods, gods! 'tis strange that from their cold'st neglect\nMy love should kindle to inflamed respect.\nThy dowerless daughter, king, thrown to my chance,\nIs queen of us, of ours, and our fair France:\nNot all the dukes of waterish Burgundy\nCan buy this unprized precious maid of me.\nBid them farewell, Cordelia, though unkind:\nThou losest here, a better where to find.\n\nKING LEAR:\nThou hast her, France: let her be thine; for we\nHave no such daughter, nor shall ever see\nThat face of hers again. Therefore be gone\nWithout our grace, our love, our benison.\nCome, noble Burgundy.\n\nKING OF FRANCE:\nBid farewell to your sisters.\n\nCORDELIA:\nThe jewels of our father, with wash'd eyes\nCordelia leaves you: I know you what you are;\nAnd like a sister am most loath to call\nYour faults as they are named. Use well our father:\nTo your professed bosoms I commit him\nBut yet, alas, stood I within his grace,\nI would prefer him to a better place.\nSo, farewell to you both.\n\nREGAN:\nPrescribe not us our duties.\n\nGONERIL:\nLet your study\nBe to content your lord, who hath received you\nAt fortune's alms. You have obedience scanted,\nAnd well are worth the want that you have wanted.\n\nCORDELIA:\nTime shall unfold what plaited cunning hides:\nWho cover faults, at last shame them derides.\nWell may you prosper!\n\nKING OF FRANCE:\nCome, my fair Cordelia.\n\nGONERIL:\nSister, it is not a little I have to say of what\nmost nearly appertains to us both. I think our\nfather will hence to-night.\n\nREGAN:\nThat's most certain, and with you; next month with us.\n\nGONERIL:\nYou see how full of changes his age is; the\nobservation we have made of it hath not been\nlittle: he always loved our sister most; and\nwith what poor judgment he hath now cast her off\nappears too grossly.\n\nREGAN:\n'Tis the infirmity of his age: yet he hath ever\nbut slenderly known himself.\n\nGONERIL:\nThe best and soundest of his time hath been but\nrash; then must we look to receive from his age,\nnot alone the imperfections of long-engraffed\ncondition, but therewithal the unruly waywardness\nthat infirm and choleric years bring with them.\n\nREGAN:\nSuch unconstant starts are we like to have from\nhim as this of Kent's banishment.\n\nGONERIL:\nThere is further compliment of leavetaking\nbetween France and him. Pray you, let's hit\ntogether: if our father carry authority with\nsuch dispositions as he bears, this last\nsurrender of his will but offend us.\n\nREGAN:\nWe shall further think on't.\n\nGONERIL:\nWe must do something, and i' the heat.\n\nEDMUND:\nThou, nature, art my goddess; to thy law\nMy services are bound. Wherefore should I\nStand in the plague of custom, and permit\nThe curiosity of nations to deprive me,\nFor that I am some twelve or fourteen moon-shines\nLag of a brother? Why bastard? wherefore base?\nWhen my dimensions are as well compact,\nMy mind as generous, and my shape as true,\nAs honest madam's issue? Why brand they us\nWith base? with baseness? bastardy? base, base?\nWho, in the lusty stealth of nature, take\nMore composition and fierce quality\nThan doth, within a dull, stale, tired bed,\nGo to the creating a whole tribe of fops,\nGot 'tween asleep and wake? Well, then,\nLegitimate Edgar, I must have your land:\nOur father's love is to the bastard Edmund\nAs to the legitimate: fine word,--legitimate!\nWell, my legitimate, if this letter speed,\nAnd my invention thrive, Edmund the base\nShall top the legitimate. I grow; I prosper:\nNow, gods, stand up for bastards!\n\nGLOUCESTER:\nKent banish'd thus! and France in choler parted!\nAnd the king gone to-night! subscribed his power!\nConfined to exhibition! All this done\nUpon the gad! Edmund, how now! what news?\n\nEDMUND:\nSo please your lordship, none.\n\nGLOUCESTER:\nWhy so earnestly seek you to put up that letter?\n\nEDMUND:\nI know no news, my lord.\n\nGLOUCESTER:\nWhat paper were you reading?\n\nEDMUND:\nNothing, my lord.\n\nGLOUCESTER:\nNo? What needed, then, that terrible dispatch of\nit into your pocket? the quality of nothing hath\nnot such need to hide itself. Let's see: come,\nif it be nothing, I shall not need spectacles.\n\nEDMUND:\nI beseech you, sir, pardon me: it is a letter\nfrom my brother, that I have not all o'er-read;\nand for so much as I have perused, I find it not\nfit for your o'er-looking.\n\nGLOUCESTER:\nGive me the letter, sir.\n\nEDMUND:\nI shall offend, either to detain or give it. The\ncontents, as in part I understand them, are to blame.\n\nGLOUCESTER:\nLet's see, let's see.\n\nEDMUND:\nI hope, for my brother's justification, he wrote\nthis but as an essay or taste of my virtue.\n\nGLOUCESTER:\n\nEDMUND:\nIt was not brought me, my lord; there's the\ncunning of it; I found it thrown in at the\ncasement of my closet.\n\nGLOUCESTER:\nYou know the character to be your brother's?\n\nEDMUND:\nIf the matter were good, my lord, I durst swear\nit were his; but, in respect of that, I would\nfain think it were not.\n\nGLOUCESTER:\nIt is his.\n\nEDMUND:\nIt is his hand, my lord; but I hope his heart is\nnot in the contents.\n\nGLOUCESTER:\nHath he never heretofore sounded you in this business?\n\nEDMUND:\nNever, my lord: but I have heard him oft\nmaintain it to be fit, that, sons at perfect age,\nand fathers declining, the father should be as\nward to the son, and the son manage his revenue.\n\nGLOUCESTER:\nO villain, villain! His very opinion in the\nletter! Abhorred villain! Unnatural, detested,\nbrutish villain! worse than brutish! Go, sirrah,\nseek him; I'll apprehend him: abominable villain!\nWhere is he?\n\nEDMUND:\nI do not well know, my lord. If it shall please\nyou to suspend your indignation against my\nbrother till you can derive from him better\ntestimony of his intent, you shall run a certain\ncourse; where, if you violently proceed against\nhim, mistaking his purpose, it would make a great\ngap in your own honour, and shake in pieces the\nheart of his obedience. I dare pawn down my life\nfor him, that he hath wrote this to feel my\naffection to your honour, and to no further\npretence of danger.\n\nGLOUCESTER:\nThink you so?\n\nEDMUND:\nIf your honour judge it meet, I will place you\nwhere you shall hear us confer of this, and by an\nauricular assurance have your satisfaction; and\nthat without any further delay than this very evening.\n\nGLOUCESTER:\nHe cannot be such a monster--\n\nEDMUND:\nNor is not, sure.\n\nGLOUCESTER:\nTo his father, that so tenderly and entirely\nloves him. Heaven and earth! Edmund, seek him\nout: wind me into him, I pray you: frame the\nbusiness after your own wisdom. I would unstate\nmyself, to be in a due resolution.\n\nEDMUND:\nI will seek him, sir, presently: convey the\nbusiness as I shall find means and acquaint you withal.\n\nGLOUCESTER:\nThese late eclipses in the sun and moon portend\nno good to us: though the wisdom of nature can\nreason it thus and thus, yet nature finds itself\nscourged by the sequent effects: love cools,\nfriendship falls off, brothers divide: in\ncities, mutinies; in countries, discord; in\npalaces, treason; and the bond cracked 'twixt son\nand father. This villain of mine comes under the\nprediction; there's son against father: the king\nfalls from bias of nature; there's father against\nchild. We have seen the best of our time:\nmachinations, hollowness, treachery, and all\nruinous disorders, follow us disquietly to our\ngraves. Find out this villain, Edmund; it shall\nlose thee nothing; do it carefully. And the\nnoble and true-hearted Kent banished! his\noffence, honesty! 'Tis strange.\n\nEDMUND:\nThis is the excellent foppery of the world, that,\nwhen we are sick in fortune,--often the surfeit\nof our own behavior,--we make guilty of our\ndisasters the sun, the moon, and the stars: as\nif we were villains by necessity; fools by\nheavenly compulsion; knaves, thieves, and\ntreachers, by spherical predominance; drunkards,\nliars, and adulterers, by an enforced obedience of\nplanetary influence; and all that we are evil in,\nby a divine thrusting on: an admirable evasion\nof whoremaster man, to lay his goatish\ndisposition to the charge of a star! My\nfather compounded with my mother under the\ndragon's tail; and my nativity was under Ursa\nmajor; so that it follows, I am rough and\nlecherous. Tut, I should have been that I am,\nhad the maidenliest star in the firmament\ntwinkled on my bastardizing. Edgar--\nAnd pat he comes like the catastrophe of the old\ncomedy: my cue is villanous melancholy, with a\nsigh like Tom o' Bedlam. O, these eclipses do\nportend these divisions! fa, sol, la, mi.\n\nEDGAR:\nHow now, brother Edmund! what serious\ncontemplation are you in?\n\nEDMUND:\nI am thinking, brother, of a prediction I read\nthis other day, what should follow these eclipses.\n\nEDGAR:\nDo you busy yourself about that?\n\nEDMUND:\nI promise you, the effects he writes of succeed\nunhappily; as of unnaturalness between the child\nand the parent; death, dearth, dissolutions of\nancient amities; divisions in state, menaces and\nmaledictions against king and nobles; needless\ndiffidences, banishment of friends, dissipation\nof cohorts, nuptial breaches, and I know not what.\n\nEDGAR:\nHow long have you been a sectary astronomical?\n\nEDMUND:\nCome, come; when saw you my father last?\n\nEDGAR:\nWhy, the night gone by.\n\nEDMUND:\nSpake you with him?\n\nEDGAR:\nAy, two hours together.\n\nEDMUND:\nParted you in good terms? Found you no\ndispleasure in him by word or countenance?\n\nEDGAR:\nNone at all.\n\nEDMUND:\nBethink yourself wherein you may have offended\nhim: and at my entreaty forbear his presence\ntill some little time hath qualified the heat of\nhis displeasure; which at this instant so rageth\nin him, that with the mischief of your person it\nwould scarcely allay.\n\nEDGAR:\nSome villain hath done me wrong.\n\nEDMUND:\nThat's my fear. I pray you, have a continent\nforbearance till the spied of his rage goes\nslower; and, as I say, retire with me to my\nlodging, from whence I will fitly bring you to\nhear my lord speak: pray ye, go; there's my key:\nif you do stir abroad, go armed.\n\nEDGAR:\nArmed, brother!\n\nEDMUND:\nBrother, I advise you to the best; go armed: I\nam no honest man if there be any good meaning\ntowards you: I have told you what I have seen\nand heard; but faintly, nothing like the image\nand horror of it: pray you, away.\n\nEDGAR:\nShall I hear from you anon?\n\nEDMUND:\nI do serve you in this business.\nA credulous father! and a brother noble,\nWhose nature is so far from doing harms,\nThat he suspects none: on whose foolish honesty\nMy practises ride easy! I see the business.\nLet me, if not by birth, have lands by wit:\nAll with me's meet that I can fashion fit.\n\nGONERIL:\nDid my father strike my gentleman for chiding of his fool?\n\nOSWALD:\nYes, madam.\n\nGONERIL:\nBy day and night he wrongs me; every hour\nHe flashes into one gross crime or other,\nThat sets us all at odds: I'll not endure it:\nHis knights grow riotous, and himself upbraids us\nOn every trifle. When he returns from hunting,\nI will not speak with him; say I am sick:\nIf you come slack of former services,\nYou shall do well; the fault of it I'll answer.\n\nOSWALD:\nHe's coming, madam; I hear him.\n\nGONERIL:\nPut on what weary negligence you please,\nYou and your fellows; I'll have it come to question:\nIf he dislike it, let him to our sister,\nWhose mind and mine, I know, in that are one,\nNot to be over-ruled. Idle old man,\nThat still would manage those authorities\nThat he hath given away! Now, by my life,\nOld fools are babes again; and must be used\nWith cheques as flatteries,--when they are seen abused.\nRemember what I tell you.\n\nOSWALD:\nWell, madam.\n\nGONERIL:\nAnd let his knights have colder looks among you;\nWhat grows of it, no matter; advise your fellows so:\nI would breed from hence occasions, and I shall,\nThat I may speak: I'll write straight to my sister,\nTo hold my very course. Prepare for dinner.\n\nKENT:\nIf but as well I other accents borrow,\nThat can my speech defuse, my good intent\nMay carry through itself to that full issue\nFor which I razed my likeness. Now, banish'd Kent,\nIf thou canst serve where thou dost stand condemn'd,\nSo may it come, thy master, whom thou lovest,\nShall find thee full of labours.\n\nKING LEAR:\nLet me not stay a jot for dinner; go get it ready.\nHow now! what art thou?\n\nKENT:\nA man, sir.\n\nKING LEAR:\nWhat dost thou profess? what wouldst thou with us?\n\nKENT:\nI do profess to be no less than I seem; to serve\nhim truly that will put me in trust: to love him\nthat is honest; to converse with him that is wise,\nand says little; to fear judgment; to fight when I\ncannot choose; and to eat no fish.\n\nKING LEAR:\nWhat art thou?\n\nKENT:\nA very honest-hearted fellow, and as poor as the king.\n\nKING LEAR:\nIf thou be as poor for a subject as he is for a\nking, thou art poor enough. What wouldst thou?\n\nKENT:\nService.\n\nKING LEAR:\nWho wouldst thou serve?\n\nKENT:\nYou.\n\nKING LEAR:\nDost thou know me, fellow?\n\nKENT:\nNo, sir; but you have that in your countenance\nwhich I would fain call master.\n\nKING LEAR:\nWhat's that?\n\nKENT:\nAuthority.\n\nKING LEAR:\nWhat services canst thou do?\n\nKENT:\nI can keep honest counsel, ride, run, mar a curious\ntale in telling it, and deliver a plain message\nbluntly: that which ordinary men are fit for, I am\nqualified in; and the best of me is diligence.\n\nKING LEAR:\nHow old art thou?\n\nKENT:\nNot so young, sir, to love a woman for singing, nor\nso old to dote on her for any thing: I have years\non my back forty eight.\n\nKING LEAR:\nFollow me; thou shalt serve me: if I like thee no\nworse after dinner, I will not part from thee yet.\nDinner, ho, dinner! Where's my knave? my fool?\nGo you, and call my fool hither.\nYou, you, sirrah, where's my daughter?\n\nOSWALD:\nSo please you,--\n\nKING LEAR:\nWhat says the fellow there? Call the clotpoll back.\nWhere's my fool, ho? I think the world's asleep.\nHow now! where's that mongrel?\n\nKnight:\nHe says, my lord, your daughter is not well.\n\nKING LEAR:\nWhy came not the slave back to me when I called him.\n\nKnight:\nSir, he answered me in the roundest manner, he would\nnot.\n\nKING LEAR:\nHe would not!\n\nKnight:\nMy lord, I know not what the matter is; but, to my\njudgment, your highness is not entertained with that\nceremonious affection as you were wont; there's a\ngreat abatement of kindness appears as well in the\ngeneral dependants as in the duke himself also and\nyour daughter.\n\nKING LEAR:\nHa! sayest thou so?\n\nKnight:\nI beseech you, pardon me, my lord, if I be mistaken;\nfor my duty cannot be silent when I think your\nhighness wronged.\n\nKING LEAR:\nThou but rememberest me of mine own conception: I\nhave perceived a most faint neglect of late; which I\nhave rather blamed as mine own jealous curiosity\nthan as a very pretence and purpose of unkindness:\nI will look further into't. But where's my fool? I\nhave not seen him this two days.\n\nKnight:\nSince my young lady's going into France, sir, the\nfool hath much pined away.\n\nKING LEAR:\nNo more of that; I have noted it well. Go you, and\ntell my daughter I would speak with her.\nGo you, call hither my fool.\nO, you sir, you, come you hither, sir: who am I,\nsir?\n\nOSWALD:\nMy lady's father.\n\nKING LEAR:\n'My lady's father'! my lord's knave: your\nwhoreson dog! you slave! you cur!\n\nOSWALD:\nI am none of these, my lord; I beseech your pardon.\n\nKING LEAR:\nDo you bandy looks with me, you rascal?\n\nOSWALD:\nI'll not be struck, my lord.\n\nKENT:\nNor tripped neither, you base football player.\n\nKING LEAR:\nI thank thee, fellow; thou servest me, and I'll\nlove thee.\n\nKENT:\nCome, sir, arise, away! I'll teach you differences:\naway, away! if you will measure your lubber's\nlength again, tarry: but away! go to; have you\nwisdom? so.\n\nKING LEAR:\nNow, my friendly knave, I thank thee: there's\nearnest of thy service.\n\nFool:\nLet me hire him too: here's my coxcomb.\n\nKING LEAR:\nHow now, my pretty knave! how dost thou?\n\nFool:\nSirrah, you were best take my coxcomb.\n\nKENT:\nWhy, fool?\n\nFool:\nWhy, for taking one's part that's out of favour:\nnay, an thou canst not smile as the wind sits,\nthou'lt catch cold shortly: there, take my coxcomb:\nwhy, this fellow has banished two on's daughters,\nand did the third a blessing against his will; if\nthou follow him, thou must needs wear my coxcomb.\nHow now, nuncle! Would I had two coxcombs and two daughters!\n\nKING LEAR:\nWhy, my boy?\n\nFool:\nIf I gave them all my living, I'ld keep my coxcombs\nmyself. There's mine; beg another of thy daughters.\n\nKING LEAR:\nTake heed, sirrah; the whip.\n\nFool:\nTruth's a dog must to kennel; he must be whipped\nout, when Lady the brach may stand by the fire and stink.\n\nKING LEAR:\nA pestilent gall to me!\n\nFool:\nSirrah, I'll teach thee a speech.\n\nKING LEAR:\nDo.\n\nFool:\nMark it, nuncle:\nHave more than thou showest,\nSpeak less than thou knowest,\nLend less than thou owest,\nRide more than thou goest,\nLearn more than thou trowest,\nSet less than thou throwest;\nLeave thy drink and thy whore,\nAnd keep in-a-door,\nAnd thou shalt have more\nThan two tens to a score.\n\nKENT:\nThis is nothing, fool.\n\nFool:\nThen 'tis like the breath of an unfee'd lawyer; you\ngave me nothing for't. Can you make no use of\nnothing, nuncle?\n\nKING LEAR:\nWhy, no, boy; nothing can be made out of nothing.\n\nFool:\n\nKING LEAR:\nA bitter fool!\n\nFool:\nDost thou know the difference, my boy, between a\nbitter fool and a sweet fool?\n\nKING LEAR:\nNo, lad; teach me.\n\nFool:\nThat lord that counsell'd thee\nTo give away thy land,\nCome place him here by me,\nDo thou for him stand:\nThe sweet and bitter fool\nWill presently appear;\nThe one in motley here,\nThe other found out there.\n\nKING LEAR:\nDost thou call me fool, boy?\n\nFool:\nAll thy other titles thou hast given away; that\nthou wast born with.\n\nKENT:\nThis is not altogether fool, my lord.\n\nFool:\nNo, faith, lords and great men will not let me; if\nI had a monopoly out, they would have part on't:\nand ladies too, they will not let me have all fool\nto myself; they'll be snatching. Give me an egg,\nnuncle, and I'll give thee two crowns.\n\nKING LEAR:\nWhat two crowns shall they be?\n\nFool:\nWhy, after I have cut the egg i' the middle, and eat\nup the meat, the two crowns of the egg. When thou\nclovest thy crown i' the middle, and gavest away\nboth parts, thou borest thy ass on thy back o'er\nthe dirt: thou hadst little wit in thy bald crown,\nwhen thou gavest thy golden one away. If I speak\nlike myself in this, let him be whipped that first\nfinds it so.\nFools had ne'er less wit in a year;\nFor wise men are grown foppish,\nThey know not how their wits to wear,\nTheir manners are so apish.\n\nKING LEAR:\nWhen were you wont to be so full of songs, sirrah?\n\nFool:\nI have used it, nuncle, ever since thou madest thy\ndaughters thy mothers: for when thou gavest them\nthe rod, and put'st down thine own breeches,\nThen they for sudden joy did weep,\nAnd I for sorrow sung,\nThat such a king should play bo-peep,\nAnd go the fools among.\nPrithee, nuncle, keep a schoolmaster that can teach\nthy fool to lie: I would fain learn to lie.\n\nKING LEAR:\nAn you lie, sirrah, we'll have you whipped.\n\nFool:\nI marvel what kin thou and thy daughters are:\nthey'll have me whipped for speaking true, thou'lt\nhave me whipped for lying; and sometimes I am\nwhipped for holding my peace. I had rather be any\nkind o' thing than a fool: and yet I would not be\nthee, nuncle; thou hast pared thy wit o' both sides,\nand left nothing i' the middle: here comes one o'\nthe parings.\n\nKING LEAR:\nHow now, daughter! what makes that frontlet on?\nMethinks you are too much of late i' the frown.\n\nFool:\nThou wast a pretty fellow when thou hadst no need to\ncare for her frowning; now thou art an O without a\nfigure: I am better than thou art now; I am a fool,\nthou art nothing.\nYes, forsooth, I will hold my tongue; so your face\nbids me, though you say nothing. Mum, mum,\nHe that keeps nor crust nor crum,\nWeary of all, shall want some.\nThat's a shealed peascod.\n\nGONERIL:\nNot only, sir, this your all-licensed fool,\nBut other of your insolent retinue\nDo hourly carp and quarrel; breaking forth\nIn rank and not-to-be endured riots. Sir,\nI had thought, by making this well known unto you,\nTo have found a safe redress; but now grow fearful,\nBy what yourself too late have spoke and done.\nThat you protect this course, and put it on\nBy your allowance; which if you should, the fault\nWould not 'scape censure, nor the redresses sleep,\nWhich, in the tender of a wholesome weal,\nMight in their working do you that offence,\nWhich else were shame, that then necessity\nWill call discreet proceeding.\n\nFool:\nFor, you trow, nuncle,\nThe hedge-sparrow fed the cuckoo so long,\nThat it's had it head bit off by it young.\nSo, out went the candle, and we were left darkling.\n\nKING LEAR:\nAre you our daughter?\n\nGONERIL:\nCome, sir,\nI would you would make use of that good wisdom,\nWhereof I know you are fraught; and put away\nThese dispositions, that of late transform you\nFrom what you rightly are.\n\nFool:\nMay not an ass know when the cart\ndraws the horse? Whoop, Jug! I love thee.\n\nKING LEAR:\nDoth any here know me? This is not Lear:\nDoth Lear walk thus? speak thus? Where are his eyes?\nEither his notion weakens, his discernings\nAre lethargied--Ha! waking? 'tis not so.\nWho is it that can tell me who I am?\n\nFool:\nLear's shadow.\n\nKING LEAR:\nI would learn that; for, by the\nmarks of sovereignty, knowledge, and reason,\nI should be false persuaded I had daughters.\n\nFool:\nWhich they will make an obedient father.\n\nKING LEAR:\nYour name, fair gentlewoman?\n\nGONERIL:\nThis admiration, sir, is much o' the savour\nOf other your new pranks. I do beseech you\nTo understand my purposes aright:\nAs you are old and reverend, you should be wise.\nHere do you keep a hundred knights and squires;\nMen so disorder'd, so debosh'd and bold,\nThat this our court, infected with their manners,\nShows like a riotous inn: epicurism and lust\nMake it more like a tavern or a brothel\nThan a graced palace. The shame itself doth speak\nFor instant remedy: be then desired\nBy her, that else will take the thing she begs,\nA little to disquantity your train;\nAnd the remainder, that shall still depend,\nTo be such men as may besort your age,\nAnd know themselves and you.\n\nKING LEAR:\nDarkness and devils!\nSaddle my horses; call my train together:\nDegenerate bastard! I'll not trouble thee.\nYet have I left a daughter.\n\nGONERIL:\nYou strike my people; and your disorder'd rabble\nMake servants of their betters.\n\nKING LEAR:\nWoe, that too late repents,--\nO, sir, are you come?\nIs it your will? Speak, sir. Prepare my horses.\nIngratitude, thou marble-hearted fiend,\nMore hideous when thou show'st thee in a child\nThan the sea-monster!\n\nALBANY:\nPray, sir, be patient.\n\nKING LEAR:\n\nALBANY:\nMy lord, I am guiltless, as I am ignorant\nOf what hath moved you.\n\nKING LEAR:\nIt may be so, my lord.\nHear, nature, hear; dear goddess, hear!\nSuspend thy purpose, if thou didst intend\nTo make this creature fruitful!\nInto her womb convey sterility!\nDry up in her the organs of increase;\nAnd from her derogate body never spring\nA babe to honour her! If she must teem,\nCreate her child of spleen; that it may live,\nAnd be a thwart disnatured torment to her!\nLet it stamp wrinkles in her brow of youth;\nWith cadent tears fret channels in her cheeks;\nTurn all her mother's pains and benefits\nTo laughter and contempt; that she may feel\nHow sharper than a serpent's tooth it is\nTo have a thankless child! Away, away!\n\nALBANY:\nNow, gods that we adore, whereof comes this?\n\nGONERIL:\nNever afflict yourself to know the cause;\nBut let his disposition have that scope\nThat dotage gives it.\n\nKING LEAR:\nWhat, fifty of my followers at a clap!\nWithin a fortnight!\n\nALBANY:\nWhat's the matter, sir?\n\nKING LEAR:\nI'll tell thee:\nLife and death! I am ashamed\nThat thou hast power to shake my manhood thus;\nThat these hot tears, which break from me perforce,\nShould make thee worth them. Blasts and fogs upon thee!\nThe untented woundings of a father's curse\nPierce every sense about thee! Old fond eyes,\nBeweep this cause again, I'll pluck ye out,\nAnd cast you, with the waters that you lose,\nTo temper clay. Yea, it is come to this?\nLet is be so: yet have I left a daughter,\nWho, I am sure, is kind and comfortable:\nWhen she shall hear this of thee, with her nails\nShe'll flay thy wolvish visage. Thou shalt find\nThat I'll resume the shape which thou dost think\nI have cast off for ever: thou shalt,\nI warrant thee.\n\nGONERIL:\nDo you mark that, my lord?\n\nALBANY:\nI cannot be so partial, Goneril,\nTo the great love I bear you,--\n\nGONERIL:\nPray you, content. What, Oswald, ho!\nYou, sir, more knave than fool, after your master.\n\nFool:\nNuncle Lear, nuncle Lear, tarry and take the fool\nwith thee.\nA fox, when one has caught her,\nAnd such a daughter,\nShould sure to the slaughter,\nIf my cap would buy a halter:\nSo the fool follows after.\n\nGONERIL:\nThis man hath had good counsel:--a hundred knights!\n'Tis politic and safe to let him keep\nAt point a hundred knights: yes, that, on every dream,\nEach buzz, each fancy, each complaint, dislike,\nHe may enguard his dotage with their powers,\nAnd hold our lives in mercy. Oswald, I say!\n\nALBANY:\nWell, you may fear too far.\n\nGONERIL:\nSafer than trust too far:\nLet me still take away the harms I fear,\nNot fear still to be taken: I know his heart.\nWhat he hath utter'd I have writ my sister\nIf she sustain him and his hundred knights\nWhen I have show'd the unfitness,--\nHow now, Oswald!\nWhat, have you writ that letter to my sister?\n\nOSWALD:\nYes, madam.\n\nGONERIL:\nTake you some company, and away to horse:\nInform her full of my particular fear;\nAnd thereto add such reasons of your own\nAs may compact it more. Get you gone;\nAnd hasten your return.\nNo, no, my lord,\nThis milky gentleness and course of yours\nThough I condemn not, yet, under pardon,\nYou are much more attask'd for want of wisdom\nThan praised for harmful mildness.\n\nALBANY:\nHow far your eyes may pierce I can not tell:\nStriving to better, oft we mar what's well.\n\nGONERIL:\nNay, then--\n\nALBANY:\nWell, well; the event.\n\nKING LEAR:\nGo you before to Gloucester with these letters.\nAcquaint my daughter no further with any thing you\nknow than comes from her demand out of the letter.\nIf your diligence be not speedy, I shall be there afore you.\n\nKENT:\nI will not sleep, my lord, till I have delivered\nyour letter.\n\nFool:\nIf a man's brains were in's heels, were't not in\ndanger of kibes?\n\nKING LEAR:\nAy, boy.\n\nFool:\nThen, I prithee, be merry; thy wit shall ne'er go\nslip-shod.\n\nKING LEAR:\nHa, ha, ha!\n\nFool:\nShalt see thy other daughter will use thee kindly;\nfor though she's as like this as a crab's like an\napple, yet I can tell what I can tell.\n\nKING LEAR:\nWhy, what canst thou tell, my boy?\n\nFool:\nShe will taste as like this as a crab does to a\ncrab. Thou canst tell why one's nose stands i'\nthe middle on's face?\n\nKING LEAR:\nNo.\n\nFool:\nWhy, to keep one's eyes of either side's nose; that\nwhat a man cannot smell out, he may spy into.\n\nKING LEAR:\nI did her wrong--\n\nFool:\nCanst tell how an oyster makes his shell?\n\nKING LEAR:\nNo.\n\nFool:\nNor I neither; but I can tell why a snail has a house.\n\nKING LEAR:\nWhy?\n\nFool:\nWhy, to put his head in; not to give it away to his\ndaughters, and leave his horns without a case.\n\nKING LEAR:\nI will forget my nature. So kind a father! Be my\nhorses ready?\n\nFool:\nThy asses are gone about 'em. The reason why the\nseven stars are no more than seven is a pretty reason.\n\nKING LEAR:\nBecause they are not eight?\n\nFool:\nYes, indeed: thou wouldst make a good fool.\n\nKING LEAR:\nTo take 't again perforce! Monster ingratitude!\n\nFool:\nIf thou wert my fool, nuncle, I'ld have thee beaten\nfor being old before thy time.\n\nKING LEAR:\nHow's that?\n\nFool:\nThou shouldst not have been old till thou hadst\nbeen wise.\n\nKING LEAR:\nO, let me not be mad, not mad, sweet heaven\nKeep me in temper: I would not be mad!\nHow now! are the horses ready?\n\nGentleman:\nReady, my lord.\n\nKING LEAR:\nCome, boy.\n\nFool:\nShe that's a maid now, and laughs at my departure,\nShall not be a maid long, unless things be cut shorter.\n\nEDMUND:\nSave thee, Curan.\n\nCURAN:\nAnd you, sir. I have been with your father, and\ngiven him notice that the Duke of Cornwall and Regan\nhis duchess will be here with him this night.\n\nEDMUND:\nHow comes that?\n\nCURAN:\nNay, I know not. You have heard of the news abroad;\nI mean the whispered ones, for they are yet but\near-kissing arguments?\n\nEDMUND:\nNot I pray you, what are they?\n\nCURAN:\nHave you heard of no likely wars toward, 'twixt the\nDukes of Cornwall and Albany?\n\nEDMUND:\nNot a word.\n\nCURAN:\nYou may do, then, in time. Fare you well, sir.\n\nEDMUND:\nThe duke be here to-night? The better! best!\nThis weaves itself perforce into my business.\nMy father hath set guard to take my brother;\nAnd I have one thing, of a queasy question,\nWhich I must act: briefness and fortune, work!\nBrother, a word; descend: brother, I say!\nMy father watches: O sir, fly this place;\nIntelligence is given where you are hid;\nYou have now the good advantage of the night:\nHave you not spoken 'gainst the Duke of Cornwall?\nHe's coming hither: now, i' the night, i' the haste,\nAnd Regan with him: have you nothing said\nUpon his party 'gainst the Duke of Albany?\nAdvise yourself.\n\nEDGAR:\nI am sure on't, not a word.\n\nEDMUND:\nI hear my father coming: pardon me:\nIn cunning I must draw my sword upon you\nDraw; seem to defend yourself; now quit you well.\nYield: come before my father. Light, ho, here!\nFly, brother. Torches, torches! So, farewell.\nSome blood drawn on me would beget opinion.\nOf my more fierce endeavour: I have seen drunkards\nDo more than this in sport. Father, father!\nStop, stop! No help?\n\nGLOUCESTER:\nNow, Edmund, where's the villain?\n\nEDMUND:\nHere stood he in the dark, his sharp sword out,\nMumbling of wicked charms, conjuring the moon\nTo stand auspicious mistress,--\n\nGLOUCESTER:\nBut where is he?\n\nEDMUND:\nLook, sir, I bleed.\n\nGLOUCESTER:\nWhere is the villain, Edmund?\n\nEDMUND:\nFled this way, sir. When by no means he could--\n\nGLOUCESTER:\nPursue him, ho! Go after.\nBy no means what?\n\nEDMUND:\nPersuade me to the murder of your lordship;\nBut that I told him, the revenging gods\n'Gainst parricides did all their thunders bend;\nSpoke, with how manifold and strong a bond\nThe child was bound to the father; sir, in fine,\nSeeing how loathly opposite I stood\nTo his unnatural purpose, in fell motion,\nWith his prepared sword, he charges home\nMy unprovided body, lanced mine arm:\nBut when he saw my best alarum'd spirits,\nBold in the quarrel's right, roused to the encounter,\nOr whether gasted by the noise I made,\nFull suddenly he fled.\n\nGLOUCESTER:\nLet him fly far:\nNot in this land shall he remain uncaught;\nAnd found--dispatch. The noble duke my master,\nMy worthy arch and patron, comes to-night:\nBy his authority I will proclaim it,\nThat he which finds him shall deserve our thanks,\nBringing the murderous coward to the stake;\nHe that conceals him, death.\n\nEDMUND:\nWhen I dissuaded him from his intent,\nAnd found him pight to do it, with curst speech\nI threaten'd to discover him: he replied,\n'Thou unpossessing bastard! dost thou think,\nIf I would stand against thee, would the reposal\nOf any trust, virtue, or worth in thee\nMake thy words faith'd? No: what I should deny,--\nAs this I would: ay, though thou didst produce\nMy very character,--I'ld turn it all\nTo thy suggestion, plot, and damned practise:\nAnd thou must make a dullard of the world,\nIf they not thought the profits of my death\nWere very pregnant and potential spurs\nTo make thee seek it.'\n\nGLOUCESTER:\nStrong and fasten'd villain\nWould he deny his letter? I never got him.\nHark, the duke's trumpets! I know not why he comes.\nAll ports I'll bar; the villain shall not 'scape;\nThe duke must grant me that: besides, his picture\nI will send far and near, that all the kingdom\nMay have the due note of him; and of my land,\nLoyal and natural boy, I'll work the means\nTo make thee capable.\n\nCORNWALL:\nHow now, my noble friend! since I came hither,\nWhich I can call but now, I have heard strange news.\n\nREGAN:\nIf it be true, all vengeance comes too short\nWhich can pursue the offender. How dost, my lord?\n\nGLOUCESTER:\nO, madam, my old heart is crack'd, it's crack'd!\n\nREGAN:\nWhat, did my father's godson seek your life?\nHe whom my father named? your Edgar?\n\nGLOUCESTER:\nO, lady, lady, shame would have it hid!\n\nREGAN:\nWas he not companion with the riotous knights\nThat tend upon my father?\n\nGLOUCESTER:\nI know not, madam: 'tis too bad, too bad.\n\nEDMUND:\nYes, madam, he was of that consort.\n\nREGAN:\nNo marvel, then, though he were ill affected:\n'Tis they have put him on the old man's death,\nTo have the expense and waste of his revenues.\nI have this present evening from my sister\nBeen well inform'd of them; and with such cautions,\nThat if they come to sojourn at my house,\nI'll not be there.\n\nCORNWALL:\nNor I, assure thee, Regan.\nEdmund, I hear that you have shown your father\nA child-like office.\n\nEDMUND:\n'Twas my duty, sir.\n\nGLOUCESTER:\nHe did bewray his practise; and received\nThis hurt you see, striving to apprehend him.\n\nCORNWALL:\nIs he pursued?\n\nGLOUCESTER:\nAy, my good lord.\n\nCORNWALL:\nIf he be taken, he shall never more\nBe fear'd of doing harm: make your own purpose,\nHow in my strength you please. For you, Edmund,\nWhose virtue and obedience doth this instant\nSo much commend itself, you shall be ours:\nNatures of such deep trust we shall much need;\nYou we first seize on.\n\nEDMUND:\nI shall serve you, sir,\nTruly, however else.\n\nGLOUCESTER:\nFor him I thank your grace.\n\nCORNWALL:\nYou know not why we came to visit you,--\n\nREGAN:\nThus out of season, threading dark-eyed night:\nOccasions, noble Gloucester, of some poise,\nWherein we must have use of your advice:\nOur father he hath writ, so hath our sister,\nOf differences, which I least thought it fit\nTo answer from our home; the several messengers\nFrom hence attend dispatch. Our good old friend,\nLay comforts to your bosom; and bestow\nYour needful counsel to our business,\nWhich craves the instant use.\n\nGLOUCESTER:\nI serve you, madam:\nYour graces are right welcome.\n\nOSWALD:\nGood dawning to thee, friend: art of this house?\n\nKENT:\nAy.\n\nOSWALD:\nWhere may we set our horses?\n\nKENT:\nI' the mire.\n\nOSWALD:\nPrithee, if thou lovest me, tell me.\n\nKENT:\nI love thee not.\n\nOSWALD:\nWhy, then, I care not for thee.\n\nKENT:\nIf I had thee in Lipsbury pinfold, I would make thee\ncare for me.\n\nOSWALD:\nWhy dost thou use me thus? I know thee not.\n\nKENT:\nFellow, I know thee.\n\nOSWALD:\nWhat dost thou know me for?\n\nKENT:\nA knave; a rascal; an eater of broken meats; a\nbase, proud, shallow, beggarly, three-suited,\nhundred-pound, filthy, worsted-stocking knave; a\nlily-livered, action-taking knave, a whoreson,\nglass-gazing, super-serviceable finical rogue;\none-trunk-inheriting slave; one that wouldst be a\nbawd, in way of good service, and art nothing but\nthe composition of a knave, beggar, coward, pandar,\nand the son and heir of a mongrel bitch: one whom I\nwill beat into clamorous whining, if thou deniest\nthe least syllable of thy addition.\n\nOSWALD:\nWhy, what a monstrous fellow art thou, thus to rail\non one that is neither known of thee nor knows thee!\n\nKENT:\nWhat a brazen-faced varlet art thou, to deny thou\nknowest me! Is it two days ago since I tripped up\nthy heels, and beat thee before the king? Draw, you\nrogue: for, though it be night, yet the moon\nshines; I'll make a sop o' the moonshine of you:\ndraw, you whoreson cullionly barber-monger, draw.\n\nOSWALD:\nAway! I have nothing to do with thee.\n\nKENT:\nDraw, you rascal: you come with letters against the\nking; and take vanity the puppet's part against the\nroyalty of her father: draw, you rogue, or I'll so\ncarbonado your shanks: draw, you rascal; come your ways.\n\nOSWALD:\nHelp, ho! murder! help!\n\nKENT:\nStrike, you slave; stand, rogue, stand; you neat\nslave, strike.\n\nOSWALD:\nHelp, ho! murder! murder!\n\nEDMUND:\nHow now! What's the matter?\n\nKENT:\nWith you, goodman boy, an you please: come, I'll\nflesh ye; come on, young master.\n\nGLOUCESTER:\nWeapons! arms! What 's the matter here?\n\nCORNWALL:\nKeep peace, upon your lives:\nHe dies that strikes again. What is the matter?\n\nREGAN:\nThe messengers from our sister and the king.\n\nCORNWALL:\nWhat is your difference? speak.\n\nOSWALD:\nI am scarce in breath, my lord.\n\nKENT:\nNo marvel, you have so bestirred your valour. You\ncowardly rascal, nature disclaims in thee: a\ntailor made thee.\n\nCORNWALL:\nThou art a strange fellow: a tailor make a man?\n\nKENT:\nAy, a tailor, sir: a stone-cutter or painter could\nnot have made him so ill, though he had been but two\nhours at the trade.\n\nCORNWALL:\nSpeak yet, how grew your quarrel?\n\nOSWALD:\nThis ancient ruffian, sir, whose life I have spared\nat suit of his gray beard,--\n\nKENT:\nThou whoreson zed! thou unnecessary letter! My\nlord, if you will give me leave, I will tread this\nunbolted villain into mortar, and daub the wall of\na jakes with him. Spare my gray beard, you wagtail?\n\nCORNWALL:\nPeace, sirrah!\nYou beastly knave, know you no reverence?\n\nKENT:\nYes, sir; but anger hath a privilege.\n\nCORNWALL:\nWhy art thou angry?\n\nKENT:\nThat such a slave as this should wear a sword,\nWho wears no honesty. Such smiling rogues as these,\nLike rats, oft bite the holy cords a-twain\nWhich are too intrinse t' unloose; smooth every passion\nThat in the natures of their lords rebel;\nBring oil to fire, snow to their colder moods;\nRenege, affirm, and turn their halcyon beaks\nWith every gale and vary of their masters,\nKnowing nought, like dogs, but following.\nA plague upon your epileptic visage!\nSmile you my speeches, as I were a fool?\nGoose, if I had you upon Sarum plain,\nI'ld drive ye cackling home to Camelot.\n\nCORNWALL:\nWhy, art thou mad, old fellow?\n\nGLOUCESTER:\nHow fell you out? say that.\n\nKENT:\nNo contraries hold more antipathy\nThan I and such a knave.\n\nCORNWALL:\nWhy dost thou call him a knave?  What's his offence?\n\nKENT:\nHis countenance likes me not.\n\nCORNWALL:\nNo more, perchance, does mine, nor his, nor hers.\n\nKENT:\nSir, 'tis my occupation to be plain:\nI have seen better faces in my time\nThan stands on any shoulder that I see\nBefore me at this instant.\n\nCORNWALL:\nThis is some fellow,\nWho, having been praised for bluntness, doth affect\nA saucy roughness, and constrains the garb\nQuite from his nature: he cannot flatter, he,\nAn honest mind and plain, he must speak truth!\nAn they will take it, so; if not, he's plain.\nThese kind of knaves I know, which in this plainness\nHarbour more craft and more corrupter ends\nThan twenty silly ducking observants\nThat stretch their duties nicely.\n\nKENT:\nSir, in good sooth, in sincere verity,\nUnder the allowance of your great aspect,\nWhose influence, like the wreath of radiant fire\nOn flickering Phoebus' front,--\n\nCORNWALL:\nWhat mean'st by this?\n\nKENT:\nTo go out of my dialect, which you\ndiscommend so much. I know, sir, I am no\nflatterer: he that beguiled you in a plain\naccent was a plain knave; which for my part\nI will not be, though I should win your displeasure\nto entreat me to 't.\n\nCORNWALL:\nWhat was the offence you gave him?\n\nOSWALD:\nI never gave him any:\nIt pleased the king his master very late\nTo strike at me, upon his misconstruction;\nWhen he, conjunct and flattering his displeasure,\nTripp'd me behind; being down, insulted, rail'd,\nAnd put upon him such a deal of man,\nThat worthied him, got praises of the king\nFor him attempting who was self-subdued;\nAnd, in the fleshment of this dread exploit,\nDrew on me here again.\n\nKENT:\nNone of these rogues and cowards\nBut Ajax is their fool.\n\nCORNWALL:\nFetch forth the stocks!\nYou stubborn ancient knave, you reverend braggart,\nWe'll teach you--\n\nKENT:\nSir, I am too old to learn:\nCall not your stocks for me: I serve the king;\nOn whose employment I was sent to you:\nYou shall do small respect, show too bold malice\nAgainst the grace and person of my master,\nStocking his messenger.\n\nCORNWALL:\nFetch forth the stocks! As I have life and honour,\nThere shall he sit till noon.\n\nREGAN:\nTill noon! till night, my lord; and all night too.\n\nKENT:\nWhy, madam, if I were your father's dog,\nYou should not use me so.\n\nREGAN:\nSir, being his knave, I will.\n\nCORNWALL:\nThis is a fellow of the self-same colour\nOur sister speaks of. Come, bring away the stocks!\n\nGLOUCESTER:\nLet me beseech your grace not to do so:\nHis fault is much, and the good king his master\nWill cheque him for 't: your purposed low correction\nIs such as basest and contemned'st wretches\nFor pilferings and most common trespasses\nAre punish'd with: the king must take it ill,\nThat he's so slightly valued in his messenger,\nShould have him thus restrain'd.\n\nCORNWALL:\nI'll answer that.\n\nREGAN:\nMy sister may receive it much more worse,\nTo have her gentleman abused, assaulted,\nFor following her affairs. Put in his legs.\nCome, my good lord, away.\n\nGLOUCESTER:\nI am sorry for thee, friend; 'tis the duke's pleasure,\nWhose disposition, all the world well knows,\nWill not be rubb'd nor stopp'd: I'll entreat for thee.\n\nKENT:\nPray, do not, sir: I have watched and travell'd hard;\nSome time I shall sleep out, the rest I'll whistle.\nA good man's fortune may grow out at heels:\nGive you good morrow!\n\nGLOUCESTER:\nThe duke's to blame in this; 'twill be ill taken.\n\nKENT:\nGood king, that must approve the common saw,\nThou out of heaven's benediction comest\nTo the warm sun!\nApproach, thou beacon to this under globe,\nThat by thy comfortable beams I may\nPeruse this letter! Nothing almost sees miracles\nBut misery: I know 'tis from Cordelia,\nWho hath most fortunately been inform'd\nOf my obscured course; and shall find time\nFrom this enormous state, seeking to give\nLosses their remedies. All weary and o'erwatch'd,\nTake vantage, heavy eyes, not to behold\nThis shameful lodging.\nFortune, good night: smile once more: turn thy wheel!\n\nEDGAR:\nI heard myself proclaim'd;\nAnd by the happy hollow of a tree\nEscaped the hunt. No port is free; no place,\nThat guard, and most unusual vigilance,\nDoes not attend my taking. Whiles I may 'scape,\nI will preserve myself: and am bethought\nTo take the basest and most poorest shape\nThat ever penury, in contempt of man,\nBrought near to beast: my face I'll grime with filth;\nBlanket my loins: elf all my hair in knots;\nAnd with presented nakedness out-face\nThe winds and persecutions of the sky.\nThe country gives me proof and precedent\nOf Bedlam beggars, who, with roaring voices,\nStrike in their numb'd and mortified bare arms\nPins, wooden pricks, nails, sprigs of rosemary;\nAnd with this horrible object, from low farms,\nPoor pelting villages, sheep-cotes, and mills,\nSometime with lunatic bans, sometime with prayers,\nEnforce their charity. Poor Turlygod! poor Tom!\nThat's something yet: Edgar I nothing am.\n\nKING LEAR:\n'Tis strange that they should so depart from home,\nAnd not send back my messenger.\n\nGentleman:\nAs I learn'd,\nThe night before there was no purpose in them\nOf this remove.\n\nKENT:\nHail to thee, noble master!\n\nKING LEAR:\nHa!\nMakest thou this shame thy pastime?\n\nKENT:\nNo, my lord.\n\nFool:\nHa, ha! he wears cruel garters. Horses are tied\nby the heads, dogs and bears by the neck, monkeys by\nthe loins, and men by the legs: when a man's\nover-lusty at legs, then he wears wooden\nnether-stocks.\n\nKING LEAR:\nWhat's he that hath so much thy place mistook\nTo set thee here?\n\nKENT:\nIt is both he and she;\nYour son and daughter.\n\nKING LEAR:\nNo.\n\nKENT:\nYes.\n\nKING LEAR:\nNo, I say.\n\nKENT:\nI say, yea.\n\nKING LEAR:\nNo, no, they would not.\n\nKENT:\nYes, they have.\n\nKING LEAR:\nBy Jupiter, I swear, no.\n\nKENT:\nBy Juno, I swear, ay.\n\nKING LEAR:\nThey durst not do 't;\nThey could not, would not do 't; 'tis worse than murder,\nTo do upon respect such violent outrage:\nResolve me, with all modest haste, which way\nThou mightst deserve, or they impose, this usage,\nComing from us.\n\nKENT:\nMy lord, when at their home\nI did commend your highness' letters to them,\nEre I was risen from the place that show'd\nMy duty kneeling, came there a reeking post,\nStew'd in his haste, half breathless, panting forth\nFrom Goneril his mistress salutations;\nDeliver'd letters, spite of intermission,\nWhich presently they read: on whose contents,\nThey summon'd up their meiny, straight took horse;\nCommanded me to follow, and attend\nThe leisure of their answer; gave me cold looks:\nAnd meeting here the other messenger,\nWhose welcome, I perceived, had poison'd mine,--\nBeing the very fellow that of late\nDisplay'd so saucily against your highness,--\nHaving more man than wit about me, drew:\nHe raised the house with loud and coward cries.\nYour son and daughter found this trespass worth\nThe shame which here it suffers.\n\nFool:\nWinter's not gone yet, if the wild-geese fly that way.\nFathers that wear rags\nDo make their children blind;\nBut fathers that bear bags\nShall see their children kind.\nFortune, that arrant whore,\nNe'er turns the key to the poor.\nBut, for all this, thou shalt have as many dolours\nfor thy daughters as thou canst tell in a year.\n\nKING LEAR:\nO, how this mother swells up toward my heart!\nHysterica passio, down, thou climbing sorrow,\nThy element's below! Where is this daughter?\n\nKENT:\nWith the earl, sir, here within.\n\nKING LEAR:\nFollow me not;\nStay here.\n\nGentleman:\nMade you no more offence but what you speak of?\n\nKENT:\nNone.\nHow chance the king comes with so small a train?\n\nFool:\nAnd thou hadst been set i' the stocks for that\nquestion, thou hadst well deserved it.\n\nKENT:\nWhy, fool?\n\nFool:\nWe'll set thee to school to an ant, to teach thee\nthere's no labouring i' the winter. All that follow\ntheir noses are led by their eyes but blind men; and\nthere's not a nose among twenty but can smell him\nthat's stinking. Let go thy hold when a great wheel\nruns down a hill, lest it break thy neck with\nfollowing it: but the great one that goes up the\nhill, let him draw thee after. When a wise man\ngives thee better counsel, give me mine again: I\nwould have none but knaves follow it, since a fool gives it.\nThat sir which serves and seeks for gain,\nAnd follows but for form,\nWill pack when it begins to rain,\nAnd leave thee in the storm,\nBut I will tarry; the fool will stay,\nAnd let the wise man fly:\nThe knave turns fool that runs away;\nThe fool no knave, perdy.\n\nKENT:\nWhere learned you this, fool?\n\nFool:\nNot i' the stocks, fool.\n\nKING LEAR:\nDeny to speak with me? They are sick? they are weary?\nThey have travell'd all the night? Mere fetches;\nThe images of revolt and flying off.\nFetch me a better answer.\n\nGLOUCESTER:\nMy dear lord,\nYou know the fiery quality of the duke;\nHow unremoveable and fix'd he is\nIn his own course.\n\nKING LEAR:\nVengeance! plague! death! confusion!\nFiery? what quality? Why, Gloucester, Gloucester,\nI'ld speak with the Duke of Cornwall and his wife.\n\nGLOUCESTER:\nWell, my good lord, I have inform'd them so.\n\nKING LEAR:\nInform'd them! Dost thou understand me, man?\n\nGLOUCESTER:\nAy, my good lord.\n\nKING LEAR:\nThe king would speak with Cornwall; the dear father\nWould with his daughter speak, commands her service:\nAre they inform'd of this? My breath and blood!\nFiery? the fiery duke? Tell the hot duke that--\nNo, but not yet: may be he is not well:\nInfirmity doth still neglect all office\nWhereto our health is bound; we are not ourselves\nWhen nature, being oppress'd, commands the mind\nTo suffer with the body: I'll forbear;\nAnd am fall'n out with my more headier will,\nTo take the indisposed and sickly fit\nFor the sound man. Death on my state! wherefore\nShould he sit here? This act persuades me\nThat this remotion of the duke and her\nIs practise only. Give me my servant forth.\nGo tell the duke and 's wife I'ld speak with them,\nNow, presently: bid them come forth and hear me,\nOr at their chamber-door I'll beat the drum\nTill it cry sleep to death.\n\nGLOUCESTER:\nI would have all well betwixt you.\n\nKING LEAR:\nO me, my heart, my rising heart! but, down!\n\nFool:\nCry to it, nuncle, as the cockney did to the eels\nwhen she put 'em i' the paste alive; she knapped 'em\no' the coxcombs with a stick, and cried 'Down,\nwantons, down!' 'Twas her brother that, in pure\nkindness to his horse, buttered his hay.\n\nKING LEAR:\nGood morrow to you both.\n\nCORNWALL:\nHail to your grace!\n\nREGAN:\nI am glad to see your highness.\n\nKING LEAR:\nRegan, I think you are; I know what reason\nI have to think so: if thou shouldst not be glad,\nI would divorce me from thy mother's tomb,\nSepulchring an adultress.\nO, are you free?\nSome other time for that. Beloved Regan,\nThy sister's naught: O Regan, she hath tied\nSharp-tooth'd unkindness, like a vulture, here:\nI can scarce speak to thee; thou'lt not believe\nWith how depraved a quality--O Regan!\n\nREGAN:\nI pray you, sir, take patience: I have hope.\nYou less know how to value her desert\nThan she to scant her duty.\n\nKING LEAR:\nSay, how is that?\n\nREGAN:\nI cannot think my sister in the least\nWould fail her obligation: if, sir, perchance\nShe have restrain'd the riots of your followers,\n'Tis on such ground, and to such wholesome end,\nAs clears her from all blame.\n\nKING LEAR:\nMy curses on her!\n\nREGAN:\nO, sir, you are old.\nNature in you stands on the very verge\nOf her confine: you should be ruled and led\nBy some discretion, that discerns your state\nBetter than you yourself. Therefore, I pray you,\nThat to our sister you do make return;\nSay you have wrong'd her, sir.\n\nKING LEAR:\nAsk her forgiveness?\nDo you but mark how this becomes the house:\n'Dear daughter, I confess that I am old;\nAge is unnecessary: on my knees I beg\nThat you'll vouchsafe me raiment, bed, and food.'\n\nREGAN:\nGood sir, no more; these are unsightly tricks:\nReturn you to my sister.\n\nKING LEAR:\n\nCORNWALL:\nFie, sir, fie!\n\nKING LEAR:\nYou nimble lightnings, dart your blinding flames\nInto her scornful eyes! Infect her beauty,\nYou fen-suck'd fogs, drawn by the powerful sun,\nTo fall and blast her pride!\n\nREGAN:\nO the blest gods! so will you wish on me,\nWhen the rash mood is on.\n\nKING LEAR:\nNo, Regan, thou shalt never have my curse:\nThy tender-hefted nature shall not give\nThee o'er to harshness: her eyes are fierce; but thine\nDo comfort and not burn. 'Tis not in thee\nTo grudge my pleasures, to cut off my train,\nTo bandy hasty words, to scant my sizes,\nAnd in conclusion to oppose the bolt\nAgainst my coming in: thou better know'st\nThe offices of nature, bond of childhood,\nEffects of courtesy, dues of gratitude;\nThy half o' the kingdom hast thou not forgot,\nWherein I thee endow'd.\n\nREGAN:\nGood sir, to the purpose.\n\nKING LEAR:\nWho put my man i' the stocks?\n\nCORNWALL:\nWhat trumpet's that?\n\nREGAN:\nI know't, my sister's: this approves her letter,\nThat she would soon be here.\nIs your lady come?\n\nKING LEAR:\nThis is a slave, whose easy-borrow'd pride\nDwells in the fickle grace of her he follows.\nOut, varlet, from my sight!\n\nCORNWALL:\nWhat means your grace?\n\nKING LEAR:\nWho stock'd my servant? Regan, I have good hope\nThou didst not know on't. Who comes here? O heavens,\nIf you do love old men, if your sweet sway\nAllow obedience, if yourselves are old,\nMake it your cause; send down, and take my part!\nArt not ashamed to look upon this beard?\nO Regan, wilt thou take her by the hand?\n\nGONERIL:\nWhy not by the hand, sir? How have I offended?\nAll's not offence that indiscretion finds\nAnd dotage terms so.\n\nKING LEAR:\nO sides, you are too tough;\nWill you yet hold? How came my man i' the stocks?\n\nCORNWALL:\nI set him there, sir: but his own disorders\nDeserved much less advancement.\n\nKING LEAR:\nYou! did you?\n\nREGAN:\nI pray you, father, being weak, seem so.\nIf, till the expiration of your month,\nYou will return and sojourn with my sister,\nDismissing half your train, come then to me:\nI am now from home, and out of that provision\nWhich shall be needful for your entertainment.\n\nKING LEAR:\nReturn to her, and fifty men dismiss'd?\nNo, rather I abjure all roofs, and choose\nTo wage against the enmity o' the air;\nTo be a comrade with the wolf and owl,--\nNecessity's sharp pinch! Return with her?\nWhy, the hot-blooded France, that dowerless took\nOur youngest born, I could as well be brought\nTo knee his throne, and, squire-like; pension beg\nTo keep base life afoot. Return with her?\nPersuade me rather to be slave and sumpter\nTo this detested groom.\n\nGONERIL:\nAt your choice, sir.\n\nKING LEAR:\nI prithee, daughter, do not make me mad:\nI will not trouble thee, my child; farewell:\nWe'll no more meet, no more see one another:\nBut yet thou art my flesh, my blood, my daughter;\nOr rather a disease that's in my flesh,\nWhich I must needs call mine: thou art a boil,\nA plague-sore, an embossed carbuncle,\nIn my corrupted blood. But I'll not chide thee;\nLet shame come when it will, I do not call it:\nI do not bid the thunder-bearer shoot,\nNor tell tales of thee to high-judging Jove:\nMend when thou canst; be better at thy leisure:\nI can be patient; I can stay with Regan,\nI and my hundred knights.\n\nREGAN:\nNot altogether so:\nI look'd not for you yet, nor am provided\nFor your fit welcome. Give ear, sir, to my sister;\nFor those that mingle reason with your passion\nMust be content to think you old, and so--\nBut she knows what she does.\n\nKING LEAR:\nIs this well spoken?\n\nREGAN:\nI dare avouch it, sir: what, fifty followers?\nIs it not well? What should you need of more?\nYea, or so many, sith that both charge and danger\nSpeak 'gainst so great a number? How, in one house,\nShould many people, under two commands,\nHold amity? 'Tis hard; almost impossible.\n\nGONERIL:\nWhy might not you, my lord, receive attendance\nFrom those that she calls servants or from mine?\n\nREGAN:\nWhy not, my lord? If then they chanced to slack you,\nWe could control them. If you will come to me,--\nFor now I spy a danger,--I entreat you\nTo bring but five and twenty: to no more\nWill I give place or notice.\n\nKING LEAR:\nI gave you all--\n\nREGAN:\nAnd in good time you gave it.\n\nKING LEAR:\nMade you my guardians, my depositaries;\nBut kept a reservation to be follow'd\nWith such a number. What, must I come to you\nWith five and twenty, Regan? said you so?\n\nREGAN:\nAnd speak't again, my lord; no more with me.\n\nKING LEAR:\nThose wicked creatures yet do look well-favour'd,\nWhen others are more wicked: not being the worst\nStands in some rank of praise.\nI'll go with thee:\nThy fifty yet doth double five and twenty,\nAnd thou art twice her love.\n\nGONERIL:\nHear me, my lord;\nWhat need you five and twenty, ten, or five,\nTo follow in a house where twice so many\nHave a command to tend you?\n\nREGAN:\nWhat need one?\n\nKING LEAR:\nO, reason not the need: our basest beggars\nAre in the poorest thing superfluous:\nAllow not nature more than nature needs,\nMan's life's as cheap as beast's: thou art a lady;\nIf only to go warm were gorgeous,\nWhy, nature needs not what thou gorgeous wear'st,\nWhich scarcely keeps thee warm. But, for true need,--\nYou heavens, give me that patience, patience I need!\nYou see me here, you gods, a poor old man,\nAs full of grief as age; wretched in both!\nIf it be you that stir these daughters' hearts\nAgainst their father, fool me not so much\nTo bear it tamely; touch me with noble anger,\nAnd let not women's weapons, water-drops,\nStain my man's cheeks! No, you unnatural hags,\nI will have such revenges on you both,\nThat all the world shall--I will do such things,--\nWhat they are, yet I know not: but they shall be\nThe terrors of the earth. You think I'll weep\nNo, I'll not weep:\nI have full cause of weeping; but this heart\nShall break into a hundred thousand flaws,\nOr ere I'll weep. O fool, I shall go mad!\n\nCORNWALL:\nLet us withdraw; 'twill be a storm.\n\nREGAN:\nThis house is little: the old man and his people\nCannot be well bestow'd.\n\nGONERIL:\n'Tis his own blame; hath put himself from rest,\nAnd must needs taste his folly.\n\nREGAN:\nFor his particular, I'll receive him gladly,\nBut not one follower.\n\nGONERIL:\nSo am I purposed.\nWhere is my lord of Gloucester?\n\nCORNWALL:\nFollow'd the old man forth: he is return'd.\n\nGLOUCESTER:\nThe king is in high rage.\n\nCORNWALL:\nWhither is he going?\n\nGLOUCESTER:\nHe calls to horse; but will I know not whither.\n\nCORNWALL:\n'Tis best to give him way; he leads himself.\n\nGONERIL:\nMy lord, entreat him by no means to stay.\n\nGLOUCESTER:\nAlack, the night comes on, and the bleak winds\nDo sorely ruffle; for many miles about\nThere's scarce a bush.\n\nREGAN:\nO, sir, to wilful men,\nThe injuries that they themselves procure\nMust be their schoolmasters. Shut up your doors:\nHe is attended with a desperate train;\nAnd what they may incense him to, being apt\nTo have his ear abused, wisdom bids fear.\n\nCORNWALL:\nShut up your doors, my lord; 'tis a wild night:\nMy Regan counsels well; come out o' the storm.\n\nKENT:\nWho's there, besides foul weather?\n\nGentleman:\nOne minded like the weather, most unquietly.\n\nKENT:\nI know you. Where's the king?\n\nGentleman:\nContending with the fretful element:\nBids the winds blow the earth into the sea,\nOr swell the curled water 'bove the main,\nThat things might change or cease; tears his white hair,\nWhich the impetuous blasts, with eyeless rage,\nCatch in their fury, and make nothing of;\nStrives in his little world of man to out-scorn\nThe to-and-fro-conflicting wind and rain.\nThis night, wherein the cub-drawn bear would couch,\nThe lion and the belly-pinched wolf\nKeep their fur dry, unbonneted he runs,\nAnd bids what will take all.\n\nKENT:\nBut who is with him?\n\nGentleman:\nNone but the fool; who labours to out-jest\nHis heart-struck injuries.\n\nKENT:\nSir, I do know you;\nAnd dare, upon the warrant of my note,\nCommend a dear thing to you. There is division,\nAlthough as yet the face of it be cover'd\nWith mutual cunning, 'twixt Albany and Cornwall;\nWho have--as who have not, that their great stars\nThroned and set high?--servants, who seem no less,\nWhich are to France the spies and speculations\nIntelligent of our state; what hath been seen,\nEither in snuffs and packings of the dukes,\nOr the hard rein which both of them have borne\nAgainst the old kind king; or something deeper,\nWhereof perchance these are but furnishings;\nBut, true it is, from France there comes a power\nInto this scatter'd kingdom; who already,\nWise in our negligence, have secret feet\nIn some of our best ports, and are at point\nTo show their open banner. Now to you:\nIf on my credit you dare build so far\nTo make your speed to Dover, you shall find\nSome that will thank you, making just report\nOf how unnatural and bemadding sorrow\nThe king hath cause to plain.\nI am a gentleman of blood and breeding;\nAnd, from some knowledge and assurance, offer\nThis office to you.\n\nGentleman:\nI will talk further with you.\n\nKENT:\nNo, do not.\nFor confirmation that I am much more\nThan my out-wall, open this purse, and take\nWhat it contains. If you shall see Cordelia,--\nAs fear not but you shall,--show her this ring;\nAnd she will tell you who your fellow is\nThat yet you do not know. Fie on this storm!\nI will go seek the king.\n\nGentleman:\nGive me your hand: have you no more to say?\n\nKENT:\nFew words, but, to effect, more than all yet;\nThat, when we have found the king,--in which your pain\nThat way, I'll this,--he that first lights on him\nHolla the other.\n\nKING LEAR:\nBlow, winds, and crack your cheeks! rage! blow!\nYou cataracts and hurricanoes, spout\nTill you have drench'd our steeples, drown'd the cocks!\nYou sulphurous and thought-executing fires,\nVaunt-couriers to oak-cleaving thunderbolts,\nSinge my white head! And thou, all-shaking thunder,\nSmite flat the thick rotundity o' the world!\nCrack nature's moulds, an germens spill at once,\nThat make ingrateful man!\n\nFool:\nO nuncle, court holy-water in a dry\nhouse is better than this rain-water out o' door.\nGood nuncle, in, and ask thy daughters' blessing:\nhere's a night pities neither wise man nor fool.\n\nKING LEAR:\nRumble thy bellyful! Spit, fire! spout, rain!\nNor rain, wind, thunder, fire, are my daughters:\nI tax not you, you elements, with unkindness;\nI never gave you kingdom, call'd you children,\nYou owe me no subscription: then let fall\nYour horrible pleasure: here I stand, your slave,\nA poor, infirm, weak, and despised old man:\nBut yet I call you servile ministers,\nThat have with two pernicious daughters join'd\nYour high engender'd battles 'gainst a head\nSo old and white as this. O! O! 'tis foul!\n\nFool:\nHe that has a house to put's head in has a good\nhead-piece.\nThe cod-piece that will house\nBefore the head has any,\nThe head and he shall louse;\nSo beggars marry many.\nThe man that makes his toe\nWhat he his heart should make\nShall of a corn cry woe,\nAnd turn his sleep to wake.\nFor there was never yet fair woman but she made\nmouths in a glass.\n\nKING LEAR:\nNo, I will be the pattern of all patience;\nI will say nothing.\n\nKENT:\nWho's there?\n\nFool:\nMarry, here's grace and a cod-piece; that's a wise\nman and a fool.\n\nKENT:\nAlas, sir, are you here? things that love night\nLove not such nights as these; the wrathful skies\nGallow the very wanderers of the dark,\nAnd make them keep their caves: since I was man,\nSuch sheets of fire, such bursts of horrid thunder,\nSuch groans of roaring wind and rain, I never\nRemember to have heard: man's nature cannot carry\nThe affliction nor the fear.\n\nKING LEAR:\nLet the great gods,\nThat keep this dreadful pother o'er our heads,\nFind out their enemies now. Tremble, thou wretch,\nThat hast within thee undivulged crimes,\nUnwhipp'd of justice: hide thee, thou bloody hand;\nThou perjured, and thou simular man of virtue\nThat art incestuous: caitiff, to pieces shake,\nThat under covert and convenient seeming\nHast practised on man's life: close pent-up guilts,\nRive your concealing continents, and cry\nThese dreadful summoners grace. I am a man\nMore sinn'd against than sinning.\n\nKENT:\nAlack, bare-headed!\nGracious my lord, hard by here is a hovel;\nSome friendship will it lend you 'gainst the tempest:\nRepose you there; while I to this hard house--\nMore harder than the stones whereof 'tis raised;\nWhich even but now, demanding after you,\nDenied me to come in--return, and force\nTheir scanted courtesy.\n\nKING LEAR:\nMy wits begin to turn.\nCome on, my boy: how dost, my boy? art cold?\nI am cold myself. Where is this straw, my fellow?\nThe art of our necessities is strange,\nThat can make vile things precious. Come,\nyour hovel.\nPoor fool and knave, I have one part in my heart\nThat's sorry yet for thee.\n\nFool:\n\nKING LEAR:\nTrue, my good boy. Come, bring us to this hovel.\n\nFool:\nThis is a brave night to cool a courtezan.\nI'll speak a prophecy ere I go:\nWhen priests are more in word than matter;\nWhen brewers mar their malt with water;\nWhen nobles are their tailors' tutors;\nNo heretics burn'd, but wenches' suitors;\nWhen every case in law is right;\nNo squire in debt, nor no poor knight;\nWhen slanders do not live in tongues;\nNor cutpurses come not to throngs;\nWhen usurers tell their gold i' the field;\nAnd bawds and whores do churches build;\nThen shall the realm of Albion\nCome to great confusion:\nThen comes the time, who lives to see't,\nThat going shall be used with feet.\nThis prophecy Merlin shall make; for I live before his time.\n\nGLOUCESTER:\nAlack, alack, Edmund, I like not this unnatural\ndealing. When I desire their leave that I might\npity him, they took from me the use of mine own\nhouse; charged me, on pain of their perpetual\ndispleasure, neither to speak of him, entreat for\nhim, nor any way sustain him.\n\nEDMUND:\nMost savage and unnatural!\n\nGLOUCESTER:\nGo to; say you nothing. There's a division betwixt\nthe dukes; and a worse matter than that: I have\nreceived a letter this night; 'tis dangerous to be\nspoken; I have locked the letter in my closet:\nthese injuries the king now bears will be revenged\nhome; there's part of a power already footed: we\nmust incline to the king. I will seek him, and\nprivily relieve him: go you and maintain talk with\nthe duke, that my charity be not of him perceived:\nif he ask for me. I am ill, and gone to bed.\nThough I die for it, as no less is threatened me,\nthe king my old master must be relieved. There is\nsome strange thing toward, Edmund; pray you, be careful.\n\nEDMUND:\nThis courtesy, forbid thee, shall the duke\nInstantly know; and of that letter too:\nThis seems a fair deserving, and must draw me\nThat which my father loses; no less than all:\nThe younger rises when the old doth fall.\n\nKENT:\nHere is the place, my lord; good my lord, enter:\nThe tyranny of the open night's too rough\nFor nature to endure.\n\nKING LEAR:\nLet me alone.\n\nKENT:\nGood my lord, enter here.\n\nKING LEAR:\nWilt break my heart?\n\nKENT:\nI had rather break mine own. Good my lord, enter.\n\nKING LEAR:\nThou think'st 'tis much that this contentious storm\nInvades us to the skin: so 'tis to thee;\nBut where the greater malady is fix'd,\nThe lesser is scarce felt. Thou'ldst shun a bear;\nBut if thy flight lay toward the raging sea,\nThou'ldst meet the bear i' the mouth. When the\nmind's free,\nThe body's delicate: the tempest in my mind\nDoth from my senses take all feeling else\nSave what beats there. Filial ingratitude!\nIs it not as this mouth should tear this hand\nFor lifting food to't? But I will punish home:\nNo, I will weep no more. In such a night\nTo shut me out! Pour on; I will endure.\nIn such a night as this! O Regan, Goneril!\nYour old kind father, whose frank heart gave all,--\nO, that way madness lies; let me shun that;\nNo more of that.\n\nKENT:\nGood my lord, enter here.\n\nKING LEAR:\nPrithee, go in thyself: seek thine own ease:\nThis tempest will not give me leave to ponder\nOn things would hurt me more. But I'll go in.\nIn, boy; go first. You houseless poverty,--\nNay, get thee in. I'll pray, and then I'll sleep.\nPoor naked wretches, whereso'er you are,\nThat bide the pelting of this pitiless storm,\nHow shall your houseless heads and unfed sides,\nYour loop'd and window'd raggedness, defend you\nFrom seasons such as these? O, I have ta'en\nToo little care of this! Take physic, pomp;\nExpose thyself to feel what wretches feel,\nThat thou mayst shake the superflux to them,\nAnd show the heavens more just.\n\nEDGAR:\n\nFool:\nCome not in here, nuncle, here's a spirit\nHelp me, help me!\n\nKENT:\nGive me thy hand. Who's there?\n\nFool:\nA spirit, a spirit: he says his name's poor Tom.\n\nKENT:\nWhat art thou that dost grumble there i' the straw?\nCome forth.\n\nEDGAR:\nAway! the foul fiend follows me!\nThrough the sharp hawthorn blows the cold wind.\nHum! go to thy cold bed, and warm thee.\n\nKING LEAR:\nHast thou given all to thy two daughters?\nAnd art thou come to this?\n\nEDGAR:\nWho gives any thing to poor Tom? whom the foul\nfiend hath led through fire and through flame, and\nthrough ford and whirlipool e'er bog and quagmire;\nthat hath laid knives under his pillow, and halters\nin his pew; set ratsbane by his porridge; made film\nproud of heart, to ride on a bay trotting-horse over\nfour-inched bridges, to course his own shadow for a\ntraitor. Bless thy five wits! Tom's a-cold,--O, do\nde, do de, do de. Bless thee from whirlwinds,\nstar-blasting, and taking! Do poor Tom some\ncharity, whom the foul fiend vexes: there could I\nhave him now,--and there,--and there again, and there.\n\nKING LEAR:\nWhat, have his daughters brought him to this pass?\nCouldst thou save nothing? Didst thou give them all?\n\nFool:\nNay, he reserved a blanket, else we had been all shamed.\n\nKING LEAR:\nNow, all the plagues that in the pendulous air\nHang fated o'er men's faults light on thy daughters!\n\nKENT:\nHe hath no daughters, sir.\n\nKING LEAR:\nDeath, traitor! nothing could have subdued nature\nTo such a lowness but his unkind daughters.\nIs it the fashion, that discarded fathers\nShould have thus little mercy on their flesh?\nJudicious punishment! 'twas this flesh begot\nThose pelican daughters.\n\nEDGAR:\nPillicock sat on Pillicock-hill:\nHalloo, halloo, loo, loo!\n\nFool:\nThis cold night will turn us all to fools and madmen.\n\nEDGAR:\nTake heed o' the foul fiend: obey thy parents;\nkeep thy word justly; swear not; commit not with\nman's sworn spouse; set not thy sweet heart on proud\narray. Tom's a-cold.\n\nKING LEAR:\nWhat hast thou been?\n\nEDGAR:\nA serving-man, proud in heart and mind; that curled\nmy hair; wore gloves in my cap; served the lust of\nmy mistress' heart, and did the act of darkness with\nher; swore as many oaths as I spake words, and\nbroke them in the sweet face of heaven: one that\nslept in the contriving of lust, and waked to do it:\nwine loved I deeply, dice dearly: and in woman\nout-paramoured the Turk: false of heart, light of\near, bloody of hand; hog in sloth, fox in stealth,\nwolf in greediness, dog in madness, lion in prey.\nLet not the creaking of shoes nor the rustling of\nsilks betray thy poor heart to woman: keep thy foot\nout of brothels, thy hand out of plackets, thy pen\nfrom lenders' books, and defy the foul fiend.\nStill through the hawthorn blows the cold wind:\nSays suum, mun, ha, no, nonny.\nDolphin my boy, my boy, sessa! let him trot by.\n\nKING LEAR:\nWhy, thou wert better in thy grave than to answer\nwith thy uncovered body this extremity of the skies.\nIs man no more than this? Consider him well. Thou\nowest the worm no silk, the beast no hide, the sheep\nno wool, the cat no perfume. Ha! here's three on\n's are sophisticated! Thou art the thing itself:\nunaccommodated man is no more but such a poor bare,\nforked animal as thou art. Off, off, you lendings!\ncome unbutton here.\n\nFool:\nPrithee, nuncle, be contented; 'tis a naughty night\nto swim in. Now a little fire in a wild field were\nlike an old lecher's heart; a small spark, all the\nrest on's body cold. Look, here comes a walking fire.\n\nEDGAR:\nThis is the foul fiend Flibbertigibbet: he begins\nat curfew, and walks till the first cock; he gives\nthe web and the pin, squints the eye, and makes the\nhare-lip; mildews the white wheat, and hurts the\npoor creature of earth.\nS. Withold footed thrice the old;\nHe met the night-mare, and her nine-fold;\nBid her alight,\nAnd her troth plight,\nAnd, aroint thee, witch, aroint thee!\n\nKENT:\nHow fares your grace?\n\nKING LEAR:\nWhat's he?\n\nKENT:\nWho's there? What is't you seek?\n\nGLOUCESTER:\nWhat are you there? Your names?\n\nEDGAR:\nPoor Tom; that eats the swimming frog, the toad,\nthe tadpole, the wall-newt and the water; that in\nthe fury of his heart, when the foul fiend rages,\neats cow-dung for sallets; swallows the old rat and\nthe ditch-dog; drinks the green mantle of the\nstanding pool; who is whipped from tithing to\ntithing, and stock- punished, and imprisoned; who\nhath had three suits to his back, six shirts to his\nbody, horse to ride, and weapon to wear;\nBut mice and rats, and such small deer,\nHave been Tom's food for seven long year.\nBeware my follower. Peace, Smulkin; peace, thou fiend!\n\nGLOUCESTER:\nWhat, hath your grace no better company?\n\nEDGAR:\nThe prince of darkness is a gentleman:\nModo he's call'd, and Mahu.\n\nGLOUCESTER:\nOur flesh and blood is grown so vile, my lord,\nThat it doth hate what gets it.\n\nEDGAR:\nPoor Tom's a-cold.\n\nGLOUCESTER:\nGo in with me: my duty cannot suffer\nTo obey in all your daughters' hard commands:\nThough their injunction be to bar my doors,\nAnd let this tyrannous night take hold upon you,\nYet have I ventured to come seek you out,\nAnd bring you where both fire and food is ready.\n\nKING LEAR:\nFirst let me talk with this philosopher.\nWhat is the cause of thunder?\n\nKENT:\nGood my lord, take his offer; go into the house.\n\nKING LEAR:\nI'll talk a word with this same learned Theban.\nWhat is your study?\n\nEDGAR:\nHow to prevent the fiend, and to kill vermin.\n\nKING LEAR:\nLet me ask you one word in private.\n\nKENT:\nImportune him once more to go, my lord;\nHis wits begin to unsettle.\n\nGLOUCESTER:\nCanst thou blame him?\nHis daughters seek his death: ah, that good Kent!\nHe said it would be thus, poor banish'd man!\nThou say'st the king grows mad; I'll tell thee, friend,\nI am almost mad myself: I had a son,\nNow outlaw'd from my blood; he sought my life,\nBut lately, very late: I loved him, friend;\nNo father his son dearer: truth to tell thee,\nThe grief hath crazed my wits. What a night's this!\nI do beseech your grace,--\n\nKING LEAR:\nO, cry your mercy, sir.\nNoble philosopher, your company.\n\nEDGAR:\nTom's a-cold.\n\nGLOUCESTER:\nIn, fellow, there, into the hovel: keep thee warm.\n\nKING LEAR:\nCome let's in all.\n\nKENT:\nThis way, my lord.\n\nKING LEAR:\nWith him;\nI will keep still with my philosopher.\n\nKENT:\nGood my lord, soothe him; let him take the fellow.\n\nGLOUCESTER:\nTake him you on.\n\nKENT:\nSirrah, come on; go along with us.\n\nKING LEAR:\nCome, good Athenian.\n\nGLOUCESTER:\nNo words, no words: hush.\n\nEDGAR:\nChild Rowland to the dark tower came,\nHis word was still,--Fie, foh, and fum,\nI smell the blood of a British man.\n\nCORNWALL:\nI will have my revenge ere I depart his house.\n\nEDMUND:\nHow, my lord, I may be censured, that nature thus\ngives way to loyalty, something fears me to think\nof.\n\nCORNWALL:\nI now perceive, it was not altogether your\nbrother's evil disposition made him seek his death;\nbut a provoking merit, set a-work by a reprovable\nbadness in himself.\n\nEDMUND:\nHow malicious is my fortune, that I must repent to\nbe just! This is the letter he spoke of, which\napproves him an intelligent party to the advantages\nof France: O heavens! that this treason were not,\nor not I the detector!\n\nCORNWALL:\no with me to the duchess.\n\nEDMUND:\nIf the matter of this paper be certain, you have\nmighty business in hand.\n\nCORNWALL:\nTrue or false, it hath made thee earl of\nGloucester. Seek out where thy father is, that he\nmay be ready for our apprehension.\n\nEDMUND:\n\nCORNWALL:\nI will lay trust upon thee; and thou shalt find a\ndearer father in my love.\n\nGLOUCESTER:\nHere is better than the open air; take it\nthankfully. I will piece out the comfort with what\naddition I can: I will not be long from you.\n\nKENT:\nAll the power of his wits have given way to his\nimpatience: the gods reward your kindness!\n\nEDGAR:\nFrateretto calls me; and tells me\nNero is an angler in the lake of darkness.\nPray, innocent, and beware the foul fiend.\n\nFool:\nPrithee, nuncle, tell me whether a madman be a\ngentleman or a yeoman?\n\nKING LEAR:\nA king, a king!\n\nFool:\nNo, he's a yeoman that has a gentleman to his son;\nfor he's a mad yeoman that sees his son a gentleman\nbefore him.\n\nKING LEAR:\nTo have a thousand with red burning spits\nCome hissing in upon 'em,--\n\nEDGAR:\nThe foul fiend bites my back.\n\nFool:\nHe's mad that trusts in the tameness of a wolf, a\nhorse's health, a boy's love, or a whore's oath.\n\nKING LEAR:\nIt shall be done; I will arraign them straight.\nCome, sit thou here, most learned justicer;\nThou, sapient sir, sit here. Now, you she foxes!\n\nEDGAR:\nLook, where he stands and glares!\nWantest thou eyes at trial, madam?\nCome o'er the bourn, Bessy, to me,--\n\nFool:\nHer boat hath a leak,\nAnd she must not speak\nWhy she dares not come over to thee.\n\nEDGAR:\nThe foul fiend haunts poor Tom in the voice of a\nnightingale. Hopdance cries in Tom's belly for two\nwhite herring. Croak not, black angel; I have no\nfood for thee.\n\nKENT:\nHow do you, sir? Stand you not so amazed:\nWill you lie down and rest upon the cushions?\n\nKING LEAR:\nI'll see their trial first. Bring in the evidence.\nThou robed man of justice, take thy place;\nAnd thou, his yoke-fellow of equity,\nBench by his side:\nyou are o' the commission,\nSit you too.\n\nEDGAR:\nLet us deal justly.\nSleepest or wakest thou, jolly shepherd?\nThy sheep be in the corn;\nAnd for one blast of thy minikin mouth,\nThy sheep shall take no harm.\nPur! the cat is gray.\n\nKING LEAR:\nArraign her first; 'tis Goneril. I here take my\noath before this honourable assembly, she kicked the\npoor king her father.\n\nFool:\nCome hither, mistress. Is your name Goneril?\n\nKING LEAR:\nShe cannot deny it.\n\nFool:\nCry you mercy, I took you for a joint-stool.\n\nKING LEAR:\nAnd here's another, whose warp'd looks proclaim\nWhat store her heart is made on. Stop her there!\nArms, arms, sword, fire! Corruption in the place!\nFalse justicer, why hast thou let her 'scape?\n\nEDGAR:\nBless thy five wits!\n\nKENT:\nO pity! Sir, where is the patience now,\nThat thou so oft have boasted to retain?\n\nEDGAR:\n\nKING LEAR:\nThe little dogs and all, Tray, Blanch, and\nSweet-heart, see, they bark at me.\n\nEDGAR:\nTom will throw his head at them. Avaunt, you curs!\nBe thy mouth or black or white,\nTooth that poisons if it bite;\nMastiff, grey-hound, mongrel grim,\nHound or spaniel, brach or lym,\nOr bobtail tike or trundle-tail,\nTom will make them weep and wail:\nFor, with throwing thus my head,\nDogs leap the hatch, and all are fled.\nDo de, de, de. Sessa! Come, march to wakes and\nfairs and market-towns. Poor Tom, thy horn is dry.\n\nKING LEAR:\nThen let them anatomize Regan; see what breeds\nabout her heart. Is there any cause in nature that\nmakes these hard hearts?\nYou, sir, I entertain for one of my hundred; only I\ndo not like the fashion of your garments: you will\nsay they are Persian attire: but let them be changed.\n\nKENT:\nNow, good my lord, lie here and rest awhile.\n\nKING LEAR:\nMake no noise, make no noise; draw the curtains:\nso, so, so. We'll go to supper i' he morning. So, so, so.\n\nFool:\nAnd I'll go to bed at noon.\n\nGLOUCESTER:\nCome hither, friend: where is the king my master?\n\nKENT:\nHere, sir; but trouble him not, his wits are gone.\n\nGLOUCESTER:\nGood friend, I prithee, take him in thy arms;\nI have o'erheard a plot of death upon him:\nThere is a litter ready; lay him in 't,\nAnd drive towards Dover, friend, where thou shalt meet\nBoth welcome and protection. Take up thy master:\nIf thou shouldst dally half an hour, his life,\nWith thine, and all that offer to defend him,\nStand in assured loss: take up, take up;\nAnd follow me, that will to some provision\nGive thee quick conduct.\n\nKENT:\nOppressed nature sleeps:\nThis rest might yet have balm'd thy broken senses,\nWhich, if convenience will not allow,\nStand in hard cure.\nCome, help to bear thy master;\nThou must not stay behind.\n\nGLOUCESTER:\nCome, come, away.\n\nEDGAR:\nWhen we our betters see bearing our woes,\nWe scarcely think our miseries our foes.\nWho alone suffers suffers most i' the mind,\nLeaving free things and happy shows behind:\nBut then the mind much sufferance doth o'er skip,\nWhen grief hath mates, and bearing fellowship.\nHow light and portable my pain seems now,\nWhen that which makes me bend makes the king bow,\nHe childed as I father'd! Tom, away!\nMark the high noises; and thyself bewray,\nWhen false opinion, whose wrong thought defiles thee,\nIn thy just proof, repeals and reconciles thee.\nWhat will hap more to-night, safe 'scape the king!\nLurk, lurk.\n\nCORNWALL:\nPost speedily to my lord your husband; show him\nthis letter: the army of France is landed. Seek\nout the villain Gloucester.\n\nREGAN:\nHang him instantly.\n\nGONERIL:\nPluck out his eyes.\n\nCORNWALL:\nLeave him to my displeasure. Edmund, keep you our\nsister company: the revenges we are bound to take\nupon your traitorous father are not fit for your\nbeholding. Advise the duke, where you are going, to\na most festinate preparation: we are bound to the\nlike. Our posts shall be swift and intelligent\nbetwixt us. Farewell, dear sister: farewell, my\nlord of Gloucester.\nHow now! where's the king?\n\nOSWALD:\nMy lord of Gloucester hath convey'd him hence:\nSome five or six and thirty of his knights,\nHot questrists after him, met him at gate;\nWho, with some other of the lords dependants,\nAre gone with him towards Dover; where they boast\nTo have well-armed friends.\n\nCORNWALL:\nGet horses for your mistress.\n\nGONERIL:\nFarewell, sweet lord, and sister.\n\nCORNWALL:\nEdmund, farewell.\nGo seek the traitor Gloucester,\nPinion him like a thief, bring him before us.\nThough well we may not pass upon his life\nWithout the form of justice, yet our power\nShall do a courtesy to our wrath, which men\nMay blame, but not control. Who's there? the traitor?\n\nREGAN:\nIngrateful fox! 'tis he.\n\nCORNWALL:\nBind fast his corky arms.\n\nGLOUCESTER:\nWhat mean your graces? Good my friends, consider\nYou are my guests: do me no foul play, friends.\n\nCORNWALL:\nBind him, I say.\n\nREGAN:\nHard, hard. O filthy traitor!\n\nGLOUCESTER:\nUnmerciful lady as you are, I'm none.\n\nCORNWALL:\nTo this chair bind him. Villain, thou shalt find--\n\nGLOUCESTER:\nBy the kind gods, 'tis most ignobly done\nTo pluck me by the beard.\n\nREGAN:\nSo white, and such a traitor!\n\nGLOUCESTER:\nNaughty lady,\nThese hairs, which thou dost ravish from my chin,\nWill quicken, and accuse thee: I am your host:\nWith robbers' hands my hospitable favours\nYou should not ruffle thus. What will you do?\n\nCORNWALL:\nCome, sir, what letters had you late from France?\n\nREGAN:\nBe simple answerer, for we know the truth.\n\nCORNWALL:\nAnd what confederacy have you with the traitors\nLate footed in the kingdom?\n\nREGAN:\nTo whose hands have you sent the lunatic king? Speak.\n\nGLOUCESTER:\nI have a letter guessingly set down,\nWhich came from one that's of a neutral heart,\nAnd not from one opposed.\n\nCORNWALL:\nCunning.\n\nREGAN:\nAnd false.\n\nCORNWALL:\nWhere hast thou sent the king?\n\nGLOUCESTER:\nTo Dover.\n\nREGAN:\nWherefore to Dover? Wast thou not charged at peril--\n\nCORNWALL:\nWherefore to Dover? Let him first answer that.\n\nGLOUCESTER:\nI am tied to the stake, and I must stand the course.\n\nREGAN:\nWherefore to Dover, sir?\n\nGLOUCESTER:\nBecause I would not see thy cruel nails\nPluck out his poor old eyes; nor thy fierce sister\nIn his anointed flesh stick boarish fangs.\nThe sea, with such a storm as his bare head\nIn hell-black night endured, would have buoy'd up,\nAnd quench'd the stelled fires:\nYet, poor old heart, he holp the heavens to rain.\nIf wolves had at thy gate howl'd that stern time,\nThou shouldst have said 'Good porter, turn the key,'\nAll cruels else subscribed: but I shall see\nThe winged vengeance overtake such children.\n\nCORNWALL:\nSee't shalt thou never. Fellows, hold the chair.\nUpon these eyes of thine I'll set my foot.\n\nGLOUCESTER:\nHe that will think to live till he be old,\nGive me some help! O cruel! O you gods!\n\nREGAN:\nOne side will mock another; the other too.\n\nCORNWALL:\nIf you see vengeance,--\n\nFirst Servant:\nHold your hand, my lord:\nI have served you ever since I was a child;\nBut better service have I never done you\nThan now to bid you hold.\n\nREGAN:\nHow now, you dog!\n\nFirst Servant:\nIf you did wear a beard upon your chin,\nI'd shake it on this quarrel. What do you mean?\n\nCORNWALL:\nMy villain!\n\nFirst Servant:\nNay, then, come on, and take the chance of anger.\n\nREGAN:\nGive me thy sword. A peasant stand up thus!\n\nFirst Servant:\nO, I am slain! My lord, you have one eye left\nTo see some mischief on him. O!\n\nCORNWALL:\nLest it see more, prevent it. Out, vile jelly!\nWhere is thy lustre now?\n\nGLOUCESTER:\nAll dark and comfortless. Where's my son Edmund?\nEdmund, enkindle all the sparks of nature,\nTo quit this horrid act.\n\nREGAN:\nOut, treacherous villain!\nThou call'st on him that hates thee: it was he\nThat made the overture of thy treasons to us;\nWho is too good to pity thee.\n\nGLOUCESTER:\nO my follies! then Edgar was abused.\nKind gods, forgive me that, and prosper him!\n\nREGAN:\nGo thrust him out at gates, and let him smell\nHis way to Dover.\nHow is't, my lord? how look you?\n\nCORNWALL:\nI have received a hurt: follow me, lady.\nTurn out that eyeless villain; throw this slave\nUpon the dunghill. Regan, I bleed apace:\nUntimely comes this hurt: give me your arm.\n\nSecond Servant:\nI'll never care what wickedness I do,\nIf this man come to good.\n\nThird Servant:\nIf she live long,\nAnd in the end meet the old course of death,\nWomen will all turn monsters.\n\nSecond Servant:\nLet's follow the old earl, and get the Bedlam\nTo lead him where he would: his roguish madness\nAllows itself to any thing.\n\nThird Servant:\nGo thou: I'll fetch some flax and whites of eggs\nTo apply to his bleeding face. Now, heaven help him!\n\nEDGAR:\nYet better thus, and known to be contemn'd,\nThan still contemn'd and flatter'd. To be worst,\nThe lowest and most dejected thing of fortune,\nStands still in esperance, lives not in fear:\nThe lamentable change is from the best;\nThe worst returns to laughter. Welcome, then,\nThou unsubstantial air that I embrace!\nThe wretch that thou hast blown unto the worst\nOwes nothing to thy blasts. But who comes here?\nMy father, poorly led? World, world, O world!\nBut that thy strange mutations make us hate thee,\nLie would not yield to age.\n\nOld Man:\nO, my good lord, I have been your tenant, and\nyour father's tenant, these fourscore years.\n\nGLOUCESTER:\nAway, get thee away; good friend, be gone:\nThy comforts can do me no good at all;\nThee they may hurt.\n\nOld Man:\nAlack, sir, you cannot see your way.\n\nGLOUCESTER:\nI have no way, and therefore want no eyes;\nI stumbled when I saw: full oft 'tis seen,\nOur means secure us, and our mere defects\nProve our commodities. O dear son Edgar,\nThe food of thy abused father's wrath!\nMight I but live to see thee in my touch,\nI'ld say I had eyes again!\n\nOld Man:\nHow now! Who's there?\n\nEDGAR:\n\nOld Man:\n'Tis poor mad Tom.\n\nEDGAR:\n\nOld Man:\nFellow, where goest?\n\nGLOUCESTER:\nIs it a beggar-man?\n\nOld Man:\nMadman and beggar too.\n\nGLOUCESTER:\nHe has some reason, else he could not beg.\nI' the last night's storm I such a fellow saw;\nWhich made me think a man a worm: my son\nCame then into my mind; and yet my mind\nWas then scarce friends with him: I have heard\nmore since.\nAs flies to wanton boys, are we to the gods.\nThey kill us for their sport.\n\nEDGAR:\n\nGLOUCESTER:\nIs that the naked fellow?\n\nOld Man:\nAy, my lord.\n\nGLOUCESTER:\nThen, prithee, get thee gone: if, for my sake,\nThou wilt o'ertake us, hence a mile or twain,\nI' the way toward Dover, do it for ancient love;\nAnd bring some covering for this naked soul,\nWho I'll entreat to lead me.\n\nOld Man:\nAlack, sir, he is mad.\n\nGLOUCESTER:\n'Tis the times' plague, when madmen lead the blind.\nDo as I bid thee, or rather do thy pleasure;\nAbove the rest, be gone.\n\nOld Man:\nI'll bring him the best 'parel that I have,\nCome on't what will.\n\nGLOUCESTER:\nSirrah, naked fellow,--\n\nEDGAR:\nPoor Tom's a-cold.\nI cannot daub it further.\n\nGLOUCESTER:\nCome hither, fellow.\n\nEDGAR:\n\nGLOUCESTER:\nKnow'st thou the way to Dover?\n\nEDGAR:\nBoth stile and gate, horse-way and foot-path. Poor\nTom hath been scared out of his good wits: bless\nthee, good man's son, from the foul fiend! five\nfiends have been in poor Tom at once; of lust, as\nObidicut; Hobbididence, prince of dumbness; Mahu, of\nstealing; Modo, of murder; Flibbertigibbet, of\nmopping and mowing, who since possesses chambermaids\nand waiting-women. So, bless thee, master!\n\nGLOUCESTER:\nHere, take this purse, thou whom the heavens' plagues\nHave humbled to all strokes: that I am wretched\nMakes thee the happier: heavens, deal so still!\nLet the superfluous and lust-dieted man,\nThat slaves your ordinance, that will not see\nBecause he doth not feel, feel your power quickly;\nSo distribution should undo excess,\nAnd each man have enough. Dost thou know Dover?\n\nEDGAR:\nAy, master.\n\nGLOUCESTER:\nThere is a cliff, whose high and bending head\nLooks fearfully in the confined deep:\nBring me but to the very brim of it,\nAnd I'll repair the misery thou dost bear\nWith something rich about me: from that place\nI shall no leading need.\n\nEDGAR:\nGive me thy arm:\nPoor Tom shall lead thee.\n\nGONERIL:\nWelcome, my lord: I marvel our mild husband\nNot met us on the way.\nNow, where's your master'?\n\nOSWALD:\nMadam, within; but never man so changed.\nI told him of the army that was landed;\nHe smiled at it: I told him you were coming:\nHis answer was 'The worse:' of Gloucester's treachery,\nAnd of the loyal service of his son,\nWhen I inform'd him, then he call'd me sot,\nAnd told me I had turn'd the wrong side out:\nWhat most he should dislike seems pleasant to him;\nWhat like, offensive.\n\nGONERIL:\n\nEDMUND:\nYours in the ranks of death.\n\nGONERIL:\nMy most dear Gloucester!\nO, the difference of man and man!\nTo thee a woman's services are due:\nMy fool usurps my body.\n\nOSWALD:\nMadam, here comes my lord.\n\nGONERIL:\nI have been worth the whistle.\n\nALBANY:\nO Goneril!\nYou are not worth the dust which the rude wind\nBlows in your face. I fear your disposition:\nThat nature, which contemns its origin,\nCannot be border'd certain in itself;\nShe that herself will sliver and disbranch\nFrom her material sap, perforce must wither\nAnd come to deadly use.\n\nGONERIL:\nNo more; the text is foolish.\n\nALBANY:\nWisdom and goodness to the vile seem vile:\nFilths savour but themselves. What have you done?\nTigers, not daughters, what have you perform'd?\nA father, and a gracious aged man,\nWhose reverence even the head-lugg'd bear would lick,\nMost barbarous, most degenerate! have you madded.\nCould my good brother suffer you to do it?\nA man, a prince, by him so benefited!\nIf that the heavens do not their visible spirits\nSend quickly down to tame these vile offences,\nIt will come,\nHumanity must perforce prey on itself,\nLike monsters of the deep.\n\nGONERIL:\nMilk-liver'd man!\nThat bear'st a cheek for blows, a head for wrongs;\nWho hast not in thy brows an eye discerning\nThine honour from thy suffering; that not know'st\nFools do those villains pity who are punish'd\nEre they have done their mischief. Where's thy drum?\nFrance spreads his banners in our noiseless land;\nWith plumed helm thy slayer begins threats;\nWhiles thou, a moral fool, sit'st still, and criest\n'Alack, why does he so?'\n\nALBANY:\nSee thyself, devil!\nProper deformity seems not in the fiend\nSo horrid as in woman.\n\nGONERIL:\nO vain fool!\n\nALBANY:\nThou changed and self-cover'd thing, for shame,\nBe-monster not thy feature. Were't my fitness\nTo let these hands obey my blood,\nThey are apt enough to dislocate and tear\nThy flesh and bones: howe'er thou art a fiend,\nA woman's shape doth shield thee.\n\nGONERIL:\nMarry, your manhood now--\n\nALBANY:\nWhat news?\n\nMessenger:\nO, my good lord, the Duke of Cornwall's dead:\nSlain by his servant, going to put out\nThe other eye of Gloucester.\n\nALBANY:\nGloucester's eye!\n\nMessenger:\nA servant that he bred, thrill'd with remorse,\nOpposed against the act, bending his sword\nTo his great master; who, thereat enraged,\nFlew on him, and amongst them fell'd him dead;\nBut not without that harmful stroke, which since\nHath pluck'd him after.\n\nALBANY:\nThis shows you are above,\nYou justicers, that these our nether crimes\nSo speedily can venge! But, O poor Gloucester!\nLost he his other eye?\n\nMessenger:\nBoth, both, my lord.\nThis letter, madam, craves a speedy answer;\n'Tis from your sister.\n\nGONERIL:\n\nALBANY:\nWhere was his son when they did take his eyes?\n\nMessenger:\nCome with my lady hither.\n\nALBANY:\nHe is not here.\n\nMessenger:\nNo, my good lord; I met him back again.\n\nALBANY:\nKnows he the wickedness?\n\nMessenger:\nAy, my good lord; 'twas he inform'd against him;\nAnd quit the house on purpose, that their punishment\nMight have the freer course.\n\nALBANY:\nGloucester, I live\nTo thank thee for the love thou show'dst the king,\nAnd to revenge thine eyes. Come hither, friend:\nTell me what more thou know'st.\n\nKENT:\nWhy the King of France is so suddenly gone back\nknow you the reason?\n\nGentleman:\nSomething he left imperfect in the\nstate, which since his coming forth is thought\nof; which imports to the kingdom so much\nfear and danger, that his personal return was\nmost required and necessary.\n\nKENT:\nWho hath he left behind him general?\n\nGentleman:\nThe Marshal of France, Monsieur La Far.\n\nKENT:\nDid your letters pierce the queen to any\ndemonstration of grief?\n\nGentleman:\nAy, sir; she took them, read them in my presence;\nAnd now and then an ample tear trill'd down\nHer delicate cheek: it seem'd she was a queen\nOver her passion; who, most rebel-like,\nSought to be king o'er her.\n\nKENT:\nO, then it moved her.\n\nGentleman:\nNot to a rage: patience and sorrow strove\nWho should express her goodliest. You have seen\nSunshine and rain at once: her smiles and tears\nWere like a better way: those happy smilets,\nThat play'd on her ripe lip, seem'd not to know\nWhat guests were in her eyes; which parted thence,\nAs pearls from diamonds dropp'd. In brief,\nSorrow would be a rarity most beloved,\nIf all could so become it.\n\nKENT:\nMade she no verbal question?\n\nGentleman:\n'Faith, once or twice she heaved the name of 'father'\nPantingly forth, as if it press'd her heart:\nCried 'Sisters! sisters! Shame of ladies! sisters!\nKent! father! sisters! What, i' the storm? i' the night?\nLet pity not be believed!' There she shook\nThe holy water from her heavenly eyes,\nAnd clamour moisten'd: then away she started\nTo deal with grief alone.\n\nKENT:\nIt is the stars,\nThe stars above us, govern our conditions;\nElse one self mate and mate could not beget\nSuch different issues. You spoke not with her since?\n\nGentleman:\nNo.\n\nKENT:\nWas this before the king return'd?\n\nGentleman:\nNo, since.\n\nKENT:\nWell, sir, the poor distressed Lear's i' the town;\nWho sometime, in his better tune, remembers\nWhat we are come about, and by no means\nWill yield to see his daughter.\n\nGentleman:\nWhy, good sir?\n\nKENT:\nA sovereign shame so elbows him: his own unkindness,\nThat stripp'd her from his benediction, turn'd her\nTo foreign casualties, gave her dear rights\nTo his dog-hearted daughters, these things sting\nHis mind so venomously, that burning shame\nDetains him from Cordelia.\n\nGentleman:\nAlack, poor gentleman!\n\nKENT:\nOf Albany's and Cornwall's powers you heard not?\n\nGentleman:\n'Tis so, they are afoot.\n\nKENT:\nWell, sir, I'll bring you to our master Lear,\nAnd leave you to attend him: some dear cause\nWill in concealment wrap me up awhile;\nWhen I am known aright, you shall not grieve\nLending me this acquaintance. I pray you, go\nAlong with me.\n\nCORDELIA:\nAlack, 'tis he: why, he was met even now\nAs mad as the vex'd sea; singing aloud;\nCrown'd with rank fumiter and furrow-weeds,\nWith bur-docks, hemlock, nettles, cuckoo-flowers,\nDarnel, and all the idle weeds that grow\nIn our sustaining corn. A century send forth;\nSearch every acre in the high-grown field,\nAnd bring him to our eye.\nWhat can man's wisdom\nIn the restoring his bereaved sense?\nHe that helps him take all my outward worth.\n\nDoctor:\nThere is means, madam:\nOur foster-nurse of nature is repose,\nThe which he lacks; that to provoke in him,\nAre many simples operative, whose power\nWill close the eye of anguish.\n\nCORDELIA:\nAll blest secrets,\nAll you unpublish'd virtues of the earth,\nSpring with my tears! be aidant and remediate\nIn the good man's distress! Seek, seek for him;\nLest his ungovern'd rage dissolve the life\nThat wants the means to lead it.\n\nMessenger:\nNews, madam;\nThe British powers are marching hitherward.\n\nCORDELIA:\n'Tis known before; our preparation stands\nIn expectation of them. O dear father,\nIt is thy business that I go about;\nTherefore great France\nMy mourning and important tears hath pitied.\nNo blown ambition doth our arms incite,\nBut love, dear love, and our aged father's right:\nSoon may I hear and see him!\n\nREGAN:\nBut are my brother's powers set forth?\n\nOSWALD:\nAy, madam.\n\nREGAN:\nHimself in person there?\n\nOSWALD:\nMadam, with much ado:\nYour sister is the better soldier.\n\nREGAN:\nLord Edmund spake not with your lord at home?\n\nOSWALD:\nNo, madam.\n\nREGAN:\nWhat might import my sister's letter to him?\n\nOSWALD:\nI know not, lady.\n\nREGAN:\n'Faith, he is posted hence on serious matter.\nIt was great ignorance, Gloucester's eyes being out,\nTo let him live: where he arrives he moves\nAll hearts against us: Edmund, I think, is gone,\nIn pity of his misery, to dispatch\nHis nighted life: moreover, to descry\nThe strength o' the enemy.\n\nOSWALD:\nI must needs after him, madam, with my letter.\n\nREGAN:\nOur troops set forth to-morrow: stay with us;\nThe ways are dangerous.\n\nOSWALD:\nI may not, madam:\nMy lady charged my duty in this business.\n\nREGAN:\nWhy should she write to Edmund? Might not you\nTransport her purposes by word? Belike,\nSomething--I know not what: I'll love thee much,\nLet me unseal the letter.\n\nOSWALD:\nMadam, I had rather--\n\nREGAN:\nI know your lady does not love her husband;\nI am sure of that: and at her late being here\nShe gave strange oeillades and most speaking looks\nTo noble Edmund. I know you are of her bosom.\n\nOSWALD:\nI, madam?\n\nREGAN:\nI speak in understanding; you are; I know't:\nTherefore I do advise you, take this note:\nMy lord is dead; Edmund and I have talk'd;\nAnd more convenient is he for my hand\nThan for your lady's: you may gather more.\nIf you do find him, pray you, give him this;\nAnd when your mistress hears thus much from you,\nI pray, desire her call her wisdom to her.\nSo, fare you well.\nIf you do chance to hear of that blind traitor,\nPreferment falls on him that cuts him off.\n\nOSWALD:\nWould I could meet him, madam! I should show\nWhat party I do follow.\n\nREGAN:\nFare thee well.\n\nGLOUCESTER:\nWhen shall we come to the top of that same hill?\n\nEDGAR:\nYou do climb up it now: look, how we labour.\n\nGLOUCESTER:\nMethinks the ground is even.\n\nEDGAR:\nHorrible steep.\nHark, do you hear the sea?\n\nGLOUCESTER:\nNo, truly.\n\nEDGAR:\nWhy, then, your other senses grow imperfect\nBy your eyes' anguish.\n\nGLOUCESTER:\nSo may it be, indeed:\nMethinks thy voice is alter'd; and thou speak'st\nIn better phrase and matter than thou didst.\n\nEDGAR:\nYou're much deceived: in nothing am I changed\nBut in my garments.\n\nGLOUCESTER:\nMethinks you're better spoken.\n\nEDGAR:\nCome on, sir; here's the place: stand still. How fearful\nAnd dizzy 'tis, to cast one's eyes so low!\nThe crows and choughs that wing the midway air\nShow scarce so gross as beetles: half way down\nHangs one that gathers samphire, dreadful trade!\nMethinks he seems no bigger than his head:\nThe fishermen, that walk upon the beach,\nAppear like mice; and yond tall anchoring bark,\nDiminish'd to her cock; her cock, a buoy\nAlmost too small for sight: the murmuring surge,\nThat on the unnumber'd idle pebbles chafes,\nCannot be heard so high. I'll look no more;\nLest my brain turn, and the deficient sight\nTopple down headlong.\n\nGLOUCESTER:\nSet me where you stand.\n\nEDGAR:\nGive me your hand: you are now within a foot\nOf the extreme verge: for all beneath the moon\nWould I not leap upright.\n\nGLOUCESTER:\nLet go my hand.\nHere, friend, 's another purse; in it a jewel\nWell worth a poor man's taking: fairies and gods\nProsper it with thee! Go thou farther off;\nBid me farewell, and let me hear thee going.\n\nEDGAR:\nNow fare you well, good sir.\n\nGLOUCESTER:\nWith all my heart.\n\nEDGAR:\nWhy I do trifle thus with his despair\nIs done to cure it.\n\nGLOUCESTER:\n\nEDGAR:\nGone, sir: farewell.\nAnd yet I know not how conceit may rob\nThe treasury of life, when life itself\nYields to the theft: had he been where he thought,\nBy this, had thought been past. Alive or dead?\nHo, you sir! friend! Hear you, sir! speak!\nThus might he pass indeed: yet he revives.\nWhat are you, sir?\n\nGLOUCESTER:\nAway, and let me die.\n\nEDGAR:\nHadst thou been aught but gossamer, feathers, air,\nSo many fathom down precipitating,\nThou'dst shiver'd like an egg: but thou dost breathe;\nHast heavy substance; bleed'st not; speak'st; art sound.\nTen masts at each make not the altitude\nWhich thou hast perpendicularly fell:\nThy life's a miracle. Speak yet again.\n\nGLOUCESTER:\nBut have I fall'n, or no?\n\nEDGAR:\nFrom the dread summit of this chalky bourn.\nLook up a-height; the shrill-gorged lark so far\nCannot be seen or heard: do but look up.\n\nGLOUCESTER:\nAlack, I have no eyes.\nIs wretchedness deprived that benefit,\nTo end itself by death? 'Twas yet some comfort,\nWhen misery could beguile the tyrant's rage,\nAnd frustrate his proud will.\n\nEDGAR:\nGive me your arm:\nUp: so. How is 't? Feel you your legs? You stand.\n\nGLOUCESTER:\nToo well, too well.\n\nEDGAR:\nThis is above all strangeness.\nUpon the crown o' the cliff, what thing was that\nWhich parted from you?\n\nGLOUCESTER:\nA poor unfortunate beggar.\n\nEDGAR:\nAs I stood here below, methought his eyes\nWere two full moons; he had a thousand noses,\nHorns whelk'd and waved like the enridged sea:\nIt was some fiend; therefore, thou happy father,\nThink that the clearest gods, who make them honours\nOf men's impossibilities, have preserved thee.\n\nGLOUCESTER:\nI do remember now: henceforth I'll bear\nAffliction till it do cry out itself\n'Enough, enough,' and die. That thing you speak of,\nI took it for a man; often 'twould say\n'The fiend, the fiend:' he led me to that place.\n\nEDGAR:\nBear free and patient thoughts. But who comes here?\nThe safer sense will ne'er accommodate\nHis master thus.\n\nKING LEAR:\nNo, they cannot touch me for coining; I am the\nking himself.\n\nEDGAR:\nO thou side-piercing sight!\n\nKING LEAR:\nNature's above art in that respect. There's your\npress-money. That fellow handles his bow like a\ncrow-keeper: draw me a clothier's yard. Look,\nlook, a mouse! Peace, peace; this piece of toasted\ncheese will do 't. There's my gauntlet; I'll prove\nit on a giant. Bring up the brown bills. O, well\nflown, bird! i' the clout, i' the clout: hewgh!\nGive the word.\n\nEDGAR:\nSweet marjoram.\n\nKING LEAR:\nPass.\n\nGLOUCESTER:\nI know that voice.\n\nKING LEAR:\nHa! Goneril, with a white beard! They flattered\nme like a dog; and told me I had white hairs in my\nbeard ere the black ones were there. To say 'ay'\nand 'no' to every thing that I said!--'Ay' and 'no'\ntoo was no good divinity. When the rain came to\nwet me once, and the wind to make me chatter; when\nthe thunder would not peace at my bidding; there I\nfound 'em, there I smelt 'em out. Go to, they are\nnot men o' their words: they told me I was every\nthing; 'tis a lie, I am not ague-proof.\n\nGLOUCESTER:\nThe trick of that voice I do well remember:\nIs 't not the king?\n\nKING LEAR:\nAy, every inch a king:\nWhen I do stare, see how the subject quakes.\nI pardon that man's life. What was thy cause? Adultery?\nThou shalt not die: die for adultery! No:\nThe wren goes to 't, and the small gilded fly\nDoes lecher in my sight.\nLet copulation thrive; for Gloucester's bastard son\nWas kinder to his father than my daughters\nGot 'tween the lawful sheets.\nTo 't, luxury, pell-mell! for I lack soldiers.\nBehold yond simpering dame,\nWhose face between her forks presages snow;\nThat minces virtue, and does shake the head\nTo hear of pleasure's name;\nThe fitchew, nor the soiled horse, goes to 't\nWith a more riotous appetite.\nDown from the waist they are Centaurs,\nThough women all above:\nBut to the girdle do the gods inherit,\nBeneath is all the fiends';\nThere's hell, there's darkness, there's the\nsulphurous pit,\nBurning, scalding, stench, consumption; fie,\nfie, fie! pah, pah! Give me an ounce of civet,\ngood apothecary, to sweeten my imagination:\nthere's money for thee.\n\nGLOUCESTER:\nO, let me kiss that hand!\n\nKING LEAR:\nLet me wipe it first; it smells of mortality.\n\nGLOUCESTER:\nO ruin'd piece of nature! This great world\nShall so wear out to nought. Dost thou know me?\n\nKING LEAR:\nI remember thine eyes well enough. Dost thou squiny\nat me? No, do thy worst, blind Cupid! I'll not\nlove. Read thou this challenge; mark but the\npenning of it.\n\nGLOUCESTER:\nWere all the letters suns, I could not see one.\n\nEDGAR:\nI would not take this from report; it is,\nAnd my heart breaks at it.\n\nKING LEAR:\nRead.\n\nGLOUCESTER:\nWhat, with the case of eyes?\n\nKING LEAR:\nO, ho, are you there with me? No eyes in your\nhead, nor no money in your purse? Your eyes are in\na heavy case, your purse in a light; yet you see how\nthis world goes.\n\nGLOUCESTER:\nI see it feelingly.\n\nKING LEAR:\nWhat, art mad? A man may see how this world goes\nwith no eyes. Look with thine ears: see how yond\njustice rails upon yond simple thief. Hark, in\nthine ear: change places; and, handy-dandy, which\nis the justice, which is the thief? Thou hast seen\na farmer's dog bark at a beggar?\n\nGLOUCESTER:\nAy, sir.\n\nKING LEAR:\nAnd the creature run from the cur? There thou\nmightst behold the great image of authority: a\ndog's obeyed in office.\nThou rascal beadle, hold thy bloody hand!\nWhy dost thou lash that whore? Strip thine own back;\nThou hotly lust'st to use her in that kind\nFor which thou whipp'st her. The usurer hangs the cozener.\nThrough tatter'd clothes small vices do appear;\nRobes and furr'd gowns hide all. Plate sin with gold,\nAnd the strong lance of justice hurtless breaks:\nArm it in rags, a pigmy's straw does pierce it.\nNone does offend, none, I say, none; I'll able 'em:\nTake that of me, my friend, who have the power\nTo seal the accuser's lips. Get thee glass eyes;\nAnd like a scurvy politician, seem\nTo see the things thou dost not. Now, now, now, now:\nPull off my boots: harder, harder: so.\n\nEDGAR:\nO, matter and impertinency mix'd! Reason in madness!\n\nKING LEAR:\nIf thou wilt weep my fortunes, take my eyes.\nI know thee well enough; thy name is Gloucester:\nThou must be patient; we came crying hither:\nThou know'st, the first time that we smell the air,\nWe wawl and cry. I will preach to thee: mark.\n\nGLOUCESTER:\nAlack, alack the day!\n\nKING LEAR:\nWhen we are born, we cry that we are come\nTo this great stage of fools: this a good block;\nIt were a delicate stratagem, to shoe\nA troop of horse with felt: I'll put 't in proof;\nAnd when I have stol'n upon these sons-in-law,\nThen, kill, kill, kill, kill, kill, kill!\n\nGentleman:\nO, here he is: lay hand upon him. Sir,\nYour most dear daughter--\n\nKING LEAR:\nNo rescue? What, a prisoner? I am even\nThe natural fool of fortune. Use me well;\nYou shall have ransom. Let me have surgeons;\nI am cut to the brains.\n\nGentleman:\nYou shall have any thing.\n\nKING LEAR:\nNo seconds? all myself?\nWhy, this would make a man a man of salt,\nTo use his eyes for garden water-pots,\nAy, and laying autumn's dust.\n\nGentleman:\nGood sir,--\n\nKING LEAR:\nI will die bravely, like a bridegroom. What!\nI will be jovial: come, come; I am a king,\nMy masters, know you that.\n\nGentleman:\nYou are a royal one, and we obey you.\n\nKING LEAR:\nThen there's life in't. Nay, if you get it, you\nshall get it with running. Sa, sa, sa, sa.\n\nGentleman:\nA sight most pitiful in the meanest wretch,\nPast speaking of in a king! Thou hast one daughter,\nWho redeems nature from the general curse\nWhich twain have brought her to.\n\nEDGAR:\nHail, gentle sir.\n\nGentleman:\nSir, speed you: what's your will?\n\nEDGAR:\nDo you hear aught, sir, of a battle toward?\n\nGentleman:\nMost sure and vulgar: every one hears that,\nWhich can distinguish sound.\n\nEDGAR:\nBut, by your favour,\nHow near's the other army?\n\nGentleman:\nNear and on speedy foot; the main descry\nStands on the hourly thought.\n\nEDGAR:\nI thank you, sir: that's all.\n\nGentleman:\nThough that the queen on special cause is here,\nHer army is moved on.\n\nEDGAR:\nI thank you, sir.\n\nGLOUCESTER:\nYou ever-gentle gods, take my breath from me:\nLet not my worser spirit tempt me again\nTo die before you please!\n\nEDGAR:\nWell pray you, father.\n\nGLOUCESTER:\nNow, good sir, what are you?\n\nEDGAR:\nA most poor man, made tame to fortune's blows;\nWho, by the art of known and feeling sorrows,\nAm pregnant to good pity. Give me your hand,\nI'll lead you to some biding.\n\nGLOUCESTER:\nHearty thanks:\nThe bounty and the benison of heaven\nTo boot, and boot!\n\nOSWALD:\nA proclaim'd prize! Most happy!\nThat eyeless head of thine was first framed flesh\nTo raise my fortunes. Thou old unhappy traitor,\nBriefly thyself remember: the sword is out\nThat must destroy thee.\n\nGLOUCESTER:\nNow let thy friendly hand\nPut strength enough to't.\n\nOSWALD:\nWherefore, bold peasant,\nDarest thou support a publish'd traitor? Hence;\nLest that the infection of his fortune take\nLike hold on thee. Let go his arm.\n\nEDGAR:\nCh'ill not let go, zir, without vurther 'casion.\n\nOSWALD:\nLet go, slave, or thou diest!\n\nEDGAR:\nGood gentleman, go your gait, and let poor volk\npass. An chud ha' bin zwaggered out of my life,\n'twould not ha' bin zo long as 'tis by a vortnight.\nNay, come not near th' old man; keep out, che vor\nye, or ise try whether your costard or my ballow be\nthe harder: ch'ill be plain with you.\n\nOSWALD:\nOut, dunghill!\n\nEDGAR:\nCh'ill pick your teeth, zir: come; no matter vor\nyour foins.\n\nOSWALD:\nSlave, thou hast slain me: villain, take my purse:\nIf ever thou wilt thrive, bury my body;\nAnd give the letters which thou find'st about me\nTo Edmund earl of Gloucester; seek him out\nUpon the British party: O, untimely death!\n\nEDGAR:\nI know thee well: a serviceable villain;\nAs duteous to the vices of thy mistress\nAs badness would desire.\n\nGLOUCESTER:\nWhat, is he dead?\n\nEDGAR:\nSit you down, father; rest you\nLet's see these pockets: the letters that he speaks of\nMay be my friends. He's dead; I am only sorry\nHe had no other death's-man. Let us see:\nLeave, gentle wax; and, manners, blame us not:\nTo know our enemies' minds, we'ld rip their hearts;\nTheir papers, is more lawful.\n'Let our reciprocal vows be remembered. You have\nmany opportunities to cut him off: if your will\nwant not, time and place will be fruitfully offered.\nThere is nothing done, if he return the conqueror:\nthen am I the prisoner, and his bed my goal; from\nthe loathed warmth whereof deliver me, and supply\nthe place for your labour.\n'Your--wife, so I would say--\n'Affectionate servant,\n'GONERIL.'\nO undistinguish'd space of woman's will!\nA plot upon her virtuous husband's life;\nAnd the exchange my brother! Here, in the sands,\nThee I'll rake up, the post unsanctified\nOf murderous lechers: and in the mature time\nWith this ungracious paper strike the sight\nOf the death practised duke: for him 'tis well\nThat of thy death and business I can tell.\n\nGLOUCESTER:\nThe king is mad: how stiff is my vile sense,\nThat I stand up, and have ingenious feeling\nOf my huge sorrows! Better I were distract:\nSo should my thoughts be sever'd from my griefs,\nAnd woes by wrong imaginations lose\nThe knowledge of themselves.\n\nEDGAR:\nGive me your hand:\nFar off, methinks, I hear the beaten drum:\nCome, father, I'll bestow you with a friend.\n\nCORDELIA:\nO thou good Kent, how shall I live and work,\nTo match thy goodness? My life will be too short,\nAnd every measure fail me.\n\nKENT:\nTo be acknowledged, madam, is o'erpaid.\nAll my reports go with the modest truth;\nNor more nor clipp'd, but so.\n\nCORDELIA:\nBe better suited:\nThese weeds are memories of those worser hours:\nI prithee, put them off.\n\nKENT:\nPardon me, dear madam;\nYet to be known shortens my made intent:\nMy boon I make it, that you know me not\nTill time and I think meet.\n\nCORDELIA:\nThen be't so, my good lord.\nHow does the king?\n\nDoctor:\nMadam, sleeps still.\n\nCORDELIA:\nO you kind gods,\nCure this great breach in his abused nature!\nThe untuned and jarring senses, O, wind up\nOf this child-changed father!\n\nDoctor:\nSo please your majesty\nThat we may wake the king: he hath slept long.\n\nCORDELIA:\nBe govern'd by your knowledge, and proceed\nI' the sway of your own will. Is he array'd?\n\nGentleman:\nAy, madam; in the heaviness of his sleep\nWe put fresh garments on him.\n\nDoctor:\nBe by, good madam, when we do awake him;\nI doubt not of his temperance.\n\nCORDELIA:\nVery well.\n\nDoctor:\nPlease you, draw near. Louder the music there!\n\nCORDELIA:\nO my dear father! Restoration hang\nThy medicine on my lips; and let this kiss\nRepair those violent harms that my two sisters\nHave in thy reverence made!\n\nKENT:\nKind and dear princess!\n\nCORDELIA:\nHad you not been their father, these white flakes\nHad challenged pity of them. Was this a face\nTo be opposed against the warring winds?\nTo stand against the deep dread-bolted thunder?\nIn the most terrible and nimble stroke\nOf quick, cross lightning? to watch--poor perdu!--\nWith this thin helm? Mine enemy's dog,\nThough he had bit me, should have stood that night\nAgainst my fire; and wast thou fain, poor father,\nTo hovel thee with swine, and rogues forlorn,\nIn short and musty straw? Alack, alack!\n'Tis wonder that thy life and wits at once\nHad not concluded all. He wakes; speak to him.\n\nDoctor:\nMadam, do you; 'tis fittest.\n\nCORDELIA:\nHow does my royal lord? How fares your majesty?\n\nKING LEAR:\nYou do me wrong to take me out o' the grave:\nThou art a soul in bliss; but I am bound\nUpon a wheel of fire, that mine own tears\nDo scald like moulten lead.\n\nCORDELIA:\nSir, do you know me?\n\nKING LEAR:\nYou are a spirit, I know: when did you die?\n\nCORDELIA:\nStill, still, far wide!\n\nDoctor:\nHe's scarce awake: let him alone awhile.\n\nKING LEAR:\nWhere have I been? Where am I? Fair daylight?\nI am mightily abused. I should e'en die with pity,\nTo see another thus. I know not what to say.\nI will not swear these are my hands: let's see;\nI feel this pin prick. Would I were assured\nOf my condition!\n\nCORDELIA:\nO, look upon me, sir,\nAnd hold your hands in benediction o'er me:\nNo, sir, you must not kneel.\n\nKING LEAR:\nPray, do not mock me:\nI am a very foolish fond old man,\nFourscore and upward, not an hour more nor less;\nAnd, to deal plainly,\nI fear I am not in my perfect mind.\nMethinks I should know you, and know this man;\nYet I am doubtful for I am mainly ignorant\nWhat place this is; and all the skill I have\nRemembers not these garments; nor I know not\nWhere I did lodge last night. Do not laugh at me;\nFor, as I am a man, I think this lady\nTo be my child Cordelia.\n\nCORDELIA:\nAnd so I am, I am.\n\nKING LEAR:\nBe your tears wet? yes, 'faith. I pray, weep not:\nIf you have poison for me, I will drink it.\nI know you do not love me; for your sisters\nHave, as I do remember, done me wrong:\nYou have some cause, they have not.\n\nCORDELIA:\nNo cause, no cause.\n\nKING LEAR:\nAm I in France?\n\nKENT:\nIn your own kingdom, sir.\n\nKING LEAR:\nDo not abuse me.\n\nDoctor:\nBe comforted, good madam: the great rage,\nYou see, is kill'd in him: and yet it is danger\nTo make him even o'er the time he has lost.\nDesire him to go in; trouble him no more\nTill further settling.\n\nCORDELIA:\nWill't please your highness walk?\n\nKING LEAR:\nYou must bear with me:\nPray you now, forget and forgive: I am old and foolish.\n\nGentleman:\nHolds it true, sir, that the Duke of Cornwall was so slain?\n\nKENT:\nMost certain, sir.\n\nGentleman:\nWho is conductor of his people?\n\nKENT:\nAs 'tis said, the bastard son of Gloucester.\n\nGentleman:\nThey say Edgar, his banished son, is with the Earl\nof Kent in Germany.\n\nKENT:\nReport is changeable. 'Tis time to look about; the\npowers of the kingdom approach apace.\n\nGentleman:\nThe arbitrement is like to be bloody. Fare you\nwell, sir.\n\nKENT:\nMy point and period will be throughly wrought,\nOr well or ill, as this day's battle's fought.\n\nREGAN:\nOur sister's man is certainly miscarried.\n\nEDMUND:\n'Tis to be doubted, madam.\n\nREGAN:\nNow, sweet lord,\nYou know the goodness I intend upon you:\nTell me--but truly--but then speak the truth,\nDo you not love my sister?\n\nEDMUND:\nIn honour'd love.\n\nREGAN:\nBut have you never found my brother's way\nTo the forfended place?\n\nEDMUND:\nThat thought abuses you.\n\nREGAN:\nI am doubtful that you have been conjunct\nAnd bosom'd with her, as far as we call hers.\n\nEDMUND:\nNo, by mine honour, madam.\n\nREGAN:\nI never shall endure her: dear my lord,\nBe not familiar with her.\n\nEDMUND:\nFear me not:\nShe and the duke her husband!\n\nGONERIL:\n\nALBANY:\nOur very loving sister, well be-met.\nSir, this I hear; the king is come to his daughter,\nWith others whom the rigor of our state\nForced to cry out. Where I could not be honest,\nI never yet was valiant: for this business,\nIt toucheth us, as France invades our land,\nNot bolds the king, with others, whom, I fear,\nMost just and heavy causes make oppose.\n\nEDMUND:\nSir, you speak nobly.\n\nREGAN:\nWhy is this reason'd?\n\nGONERIL:\nCombine together 'gainst the enemy;\nFor these domestic and particular broils\nAre not the question here.\n\nALBANY:\nLet's then determine\nWith the ancient of war on our proceedings.\n\nEDMUND:\nI shall attend you presently at your tent.\n\nREGAN:\nSister, you'll go with us?\n\nGONERIL:\nNo.\n\nREGAN:\n'Tis most convenient; pray you, go with us.\n\nGONERIL:\n\nEDGAR:\nIf e'er your grace had speech with man so poor,\nHear me one word.\n\nALBANY:\nI'll overtake you. Speak.\n\nEDGAR:\nBefore you fight the battle, ope this letter.\nIf you have victory, let the trumpet sound\nFor him that brought it: wretched though I seem,\nI can produce a champion that will prove\nWhat is avouched there. If you miscarry,\nYour business of the world hath so an end,\nAnd machination ceases. Fortune love you.\n\nALBANY:\nStay till I have read the letter.\n\nEDGAR:\nI was forbid it.\nWhen time shall serve, let but the herald cry,\nAnd I'll appear again.\n\nALBANY:\nWhy, fare thee well: I will o'erlook thy paper.\n\nEDMUND:\nThe enemy's in view; draw up your powers.\nHere is the guess of their true strength and forces\nBy diligent discovery; but your haste\nIs now urged on you.\n\nALBANY:\nWe will greet the time.\n\nEDMUND:\nTo both these sisters have I sworn my love;\nEach jealous of the other, as the stung\nAre of the adder. Which of them shall I take?\nBoth? one? or neither? Neither can be enjoy'd,\nIf both remain alive: to take the widow\nExasperates, makes mad her sister Goneril;\nAnd hardly shall I carry out my side,\nHer husband being alive. Now then we'll use\nHis countenance for the battle; which being done,\nLet her who would be rid of him devise\nHis speedy taking off. As for the mercy\nWhich he intends to Lear and to Cordelia,\nThe battle done, and they within our power,\nShall never see his pardon; for my state\nStands on me to defend, not to debate.\n\nEDGAR:\nHere, father, take the shadow of this tree\nFor your good host; pray that the right may thrive:\nIf ever I return to you again,\nI'll bring you comfort.\n\nGLOUCESTER:\nGrace go with you, sir!\n\nEDGAR:\nAway, old man; give me thy hand; away!\nKing Lear hath lost, he and his daughter ta'en:\nGive me thy hand; come on.\n\nGLOUCESTER:\nNo farther, sir; a man may rot even here.\n\nEDGAR:\nWhat, in ill thoughts again? Men must endure\nTheir going hence, even as their coming hither;\nRipeness is all: come on.\n\nGLOUCESTER:\nAnd that's true too.\n\nEDMUND:\nSome officers take them away: good guard,\nUntil their greater pleasures first be known\nThat are to censure them.\n\nCORDELIA:\nWe are not the first\nWho, with best meaning, have incurr'd the worst.\nFor thee, oppressed king, am I cast down;\nMyself could else out-frown false fortune's frown.\nShall we not see these daughters and these sisters?\n\nKING LEAR:\nNo, no, no, no! Come, let's away to prison:\nWe two alone will sing like birds i' the cage:\nWhen thou dost ask me blessing, I'll kneel down,\nAnd ask of thee forgiveness: so we'll live,\nAnd pray, and sing, and tell old tales, and laugh\nAt gilded butterflies, and hear poor rogues\nTalk of court news; and we'll talk with them too,\nWho loses and who wins; who's in, who's out;\nAnd take upon's the mystery of things,\nAs if we were God's spies: and we'll wear out,\nIn a wall'd prison, packs and sects of great ones,\nThat ebb and flow by the moon.\n\nEDMUND:\nTake them away.\n\nKING LEAR:\nUpon such sacrifices, my Cordelia,\nThe gods themselves throw incense. Have I caught thee?\nHe that parts us shall bring a brand from heaven,\nAnd fire us hence like foxes. Wipe thine eyes;\nThe good-years shall devour them, flesh and fell,\nEre they shall make us weep: we'll see 'em starve\nfirst. Come.\n\nEDMUND:\nCome hither, captain; hark.\nTake thou this note;\ngo follow them to prison:\nOne step I have advanced thee; if thou dost\nAs this instructs thee, thou dost make thy way\nTo noble fortunes: know thou this, that men\nAre as the time is: to be tender-minded\nDoes not become a sword: thy great employment\nWill not bear question; either say thou'lt do 't,\nOr thrive by other means.\n\nCaptain:\nI'll do 't, my lord.\n\nEDMUND:\nAbout it; and write happy when thou hast done.\nMark, I say, instantly; and carry it so\nAs I have set it down.\n\nCaptain:\nI cannot draw a cart, nor eat dried oats;\nIf it be man's work, I'll do 't.\n\nALBANY:\nSir, you have shown to-day your valiant strain,\nAnd fortune led you well: you have the captives\nThat were the opposites of this day's strife:\nWe do require them of you, so to use them\nAs we shall find their merits and our safety\nMay equally determine.\n\nEDMUND:\nSir, I thought it fit\nTo send the old and miserable king\nTo some retention and appointed guard;\nWhose age has charms in it, whose title more,\nTo pluck the common bosom on his side,\nAn turn our impress'd lances in our eyes\nWhich do command them. With him I sent the queen;\nMy reason all the same; and they are ready\nTo-morrow, or at further space, to appear\nWhere you shall hold your session. At this time\nWe sweat and bleed: the friend hath lost his friend;\nAnd the best quarrels, in the heat, are cursed\nBy those that feel their sharpness:\nThe question of Cordelia and her father\nRequires a fitter place.\n\nALBANY:\nSir, by your patience,\nI hold you but a subject of this war,\nNot as a brother.\n\nREGAN:\nThat's as we list to grace him.\nMethinks our pleasure might have been demanded,\nEre you had spoke so far. He led our powers;\nBore the commission of my place and person;\nThe which immediacy may well stand up,\nAnd call itself your brother.\n\nGONERIL:\nNot so hot:\nIn his own grace he doth exalt himself,\nMore than in your addition.\n\nREGAN:\nIn my rights,\nBy me invested, he compeers the best.\n\nGONERIL:\nThat were the most, if he should husband you.\n\nREGAN:\nJesters do oft prove prophets.\n\nGONERIL:\nHolla, holla!\nThat eye that told you so look'd but a-squint.\n\nREGAN:\nLady, I am not well; else I should answer\nFrom a full-flowing stomach. General,\nTake thou my soldiers, prisoners, patrimony;\nDispose of them, of me; the walls are thine:\nWitness the world, that I create thee here\nMy lord and master.\n\nGONERIL:\nMean you to enjoy him?\n\nALBANY:\nThe let-alone lies not in your good will.\n\nEDMUND:\nNor in thine, lord.\n\nALBANY:\nHalf-blooded fellow, yes.\n\nREGAN:\n\nALBANY:\nStay yet; hear reason. Edmund, I arrest thee\nOn capital treason; and, in thine attaint,\nThis gilded serpent\nFor your claim, fair sister,\nI bar it in the interest of my wife:\n'Tis she is sub-contracted to this lord,\nAnd I, her husband, contradict your bans.\nIf you will marry, make your loves to me,\nMy lady is bespoke.\n\nGONERIL:\nAn interlude!\n\nALBANY:\nThou art arm'd, Gloucester: let the trumpet sound:\nIf none appear to prove upon thy head\nThy heinous, manifest, and many treasons,\nThere is my pledge;\nI'll prove it on thy heart,\nEre I taste bread, thou art in nothing less\nThan I have here proclaim'd thee.\n\nREGAN:\nSick, O, sick!\n\nGONERIL:\n\nEDMUND:\nThere's my exchange:\nwhat in the world he is\nThat names me traitor, villain-like he lies:\nCall by thy trumpet: he that dares approach,\nOn him, on you, who not? I will maintain\nMy truth and honour firmly.\n\nALBANY:\nA herald, ho!\n\nEDMUND:\nA herald, ho, a herald!\n\nALBANY:\nTrust to thy single virtue; for thy soldiers,\nAll levied in my name, have in my name\nTook their discharge.\n\nREGAN:\nMy sickness grows upon me.\n\nALBANY:\nShe is not well; convey her to my tent.\nCome hither, herald,--Let the trumpet sound,\nAnd read out this.\n\nCaptain:\nSound, trumpet!\n\nHerald:\n\nEDMUND:\nSound!\n\nHerald:\nAgain!\n\nHerald:\nAgain!\n\nALBANY:\nAsk him his purposes, why he appears\nUpon this call o' the trumpet.\n\nHerald:\nWhat are you?\nYour name, your quality? and why you answer\nThis present summons?\n\nEDGAR:\nKnow, my name is lost;\nBy treason's tooth bare-gnawn and canker-bit:\nYet am I noble as the adversary\nI come to cope.\n\nALBANY:\nWhich is that adversary?\n\nEDGAR:\nWhat's he that speaks for Edmund Earl of Gloucester?\n\nEDMUND:\nHimself: what say'st thou to him?\n\nEDGAR:\nDraw thy sword,\nThat, if my speech offend a noble heart,\nThy arm may do thee justice: here is mine.\nBehold, it is the privilege of mine honours,\nMy oath, and my profession: I protest,\nMaugre thy strength, youth, place, and eminence,\nDespite thy victor sword and fire-new fortune,\nThy valour and thy heart, thou art a traitor;\nFalse to thy gods, thy brother, and thy father;\nConspirant 'gainst this high-illustrious prince;\nAnd, from the extremest upward of thy head\nTo the descent and dust below thy foot,\nA most toad-spotted traitor. Say thou 'No,'\nThis sword, this arm, and my best spirits, are bent\nTo prove upon thy heart, whereto I speak,\nThou liest.\n\nEDMUND:\nIn wisdom I should ask thy name;\nBut, since thy outside looks so fair and warlike,\nAnd that thy tongue some say of breeding breathes,\nWhat safe and nicely I might well delay\nBy rule of knighthood, I disdain and spurn:\nBack do I toss these treasons to thy head;\nWith the hell-hated lie o'erwhelm thy heart;\nWhich, for they yet glance by and scarcely bruise,\nThis sword of mine shall give them instant way,\nWhere they shall rest for ever. Trumpets, speak!\n\nALBANY:\nSave him, save him!\n\nGONERIL:\nThis is practise, Gloucester:\nBy the law of arms thou wast not bound to answer\nAn unknown opposite; thou art not vanquish'd,\nBut cozen'd and beguiled.\n\nALBANY:\nShut your mouth, dame,\nOr with this paper shall I stop it: Hold, sir:\nThou worse than any name, read thine own evil:\nNo tearing, lady: I perceive you know it.\n\nGONERIL:\nSay, if I do, the laws are mine, not thine:\nWho can arraign me for't.\n\nALBANY:\nMost monstrous! oh!\nKnow'st thou this paper?\n\nGONERIL:\nAsk me not what I know.\n\nALBANY:\nGo after her: she's desperate; govern her.\n\nEDMUND:\nWhat you have charged me with, that have I done;\nAnd more, much more; the time will bring it out:\n'Tis past, and so am I. But what art thou\nThat hast this fortune on me? If thou'rt noble,\nI do forgive thee.\n\nEDGAR:\nLet's exchange charity.\nI am no less in blood than thou art, Edmund;\nIf more, the more thou hast wrong'd me.\nMy name is Edgar, and thy father's son.\nThe gods are just, and of our pleasant vices\nMake instruments to plague us:\nThe dark and vicious place where thee he got\nCost him his eyes.\n\nEDMUND:\nThou hast spoken right, 'tis true;\nThe wheel is come full circle: I am here.\n\nALBANY:\nMethought thy very gait did prophesy\nA royal nobleness: I must embrace thee:\nLet sorrow split my heart, if ever I\nDid hate thee or thy father!\n\nEDGAR:\nWorthy prince, I know't.\n\nALBANY:\nWhere have you hid yourself?\nHow have you known the miseries of your father?\n\nEDGAR:\nBy nursing them, my lord. List a brief tale;\nAnd when 'tis told, O, that my heart would burst!\nThe bloody proclamation to escape,\nThat follow'd me so near,--O, our lives' sweetness!\nThat we the pain of death would hourly die\nRather than die at once!--taught me to shift\nInto a madman's rags; to assume a semblance\nThat very dogs disdain'd: and in this habit\nMet I my father with his bleeding rings,\nTheir precious stones new lost: became his guide,\nLed him, begg'd for him, saved him from despair;\nNever,--O fault!--reveal'd myself unto him,\nUntil some half-hour past, when I was arm'd:\nNot sure, though hoping, of this good success,\nI ask'd his blessing, and from first to last\nTold him my pilgrimage: but his flaw'd heart,\nAlack, too weak the conflict to support!\n'Twixt two extremes of passion, joy and grief,\nBurst smilingly.\n\nEDMUND:\nThis speech of yours hath moved me,\nAnd shall perchance do good: but speak you on;\nYou look as you had something more to say.\n\nALBANY:\nIf there be more, more woeful, hold it in;\nFor I am almost ready to dissolve,\nHearing of this.\n\nEDGAR:\nThis would have seem'd a period\nTo such as love not sorrow; but another,\nTo amplify too much, would make much more,\nAnd top extremity.\nWhilst I was big in clamour came there in a man,\nWho, having seen me in my worst estate,\nShunn'd my abhorr'd society; but then, finding\nWho 'twas that so endured, with his strong arms\nHe fastened on my neck, and bellow'd out\nAs he'ld burst heaven; threw him on my father;\nTold the most piteous tale of Lear and him\nThat ever ear received: which in recounting\nHis grief grew puissant and the strings of life\nBegan to crack: twice then the trumpets sounded,\nAnd there I left him tranced.\n\nALBANY:\nBut who was this?\n\nEDGAR:\nKent, sir, the banish'd Kent; who in disguise\nFollow'd his enemy king, and did him service\nImproper for a slave.\n\nGentleman:\nHelp, help, O, help!\n\nEDGAR:\nWhat kind of help?\n\nALBANY:\nSpeak, man.\n\nEDGAR:\nWhat means that bloody knife?\n\nGentleman:\n'Tis hot, it smokes;\nIt came even from the heart of--O, she's dead!\n\nALBANY:\nWho dead? speak, man.\n\nGentleman:\nYour lady, sir, your lady: and her sister\nBy her is poisoned; she hath confess'd it.\n\nEDMUND:\nI was contracted to them both: all three\nNow marry in an instant.\n\nEDGAR:\nHere comes Kent.\n\nALBANY:\nProduce their bodies, be they alive or dead:\nThis judgment of the heavens, that makes us tremble,\nTouches us not with pity.\nO, is this he?\nThe time will not allow the compliment\nWhich very manners urges.\n\nKENT:\nI am come\nTo bid my king and master aye good night:\nIs he not here?\n\nALBANY:\nGreat thing of us forgot!\nSpeak, Edmund, where's the king? and where's Cordelia?\nSee'st thou this object, Kent?\n\nKENT:\nAlack, why thus?\n\nEDMUND:\nYet Edmund was beloved:\nThe one the other poison'd for my sake,\nAnd after slew herself.\n\nALBANY:\nEven so. Cover their faces.\n\nEDMUND:\nI pant for life: some good I mean to do,\nDespite of mine own nature. Quickly send,\nBe brief in it, to the castle; for my writ\nIs on the life of Lear and on Cordelia:\nNay, send in time.\n\nALBANY:\nRun, run, O, run!\n\nEDGAR:\nTo who, my lord? Who hath the office? send\nThy token of reprieve.\n\nEDMUND:\nWell thought on: take my sword,\nGive it the captain.\n\nALBANY:\nHaste thee, for thy life.\n\nEDMUND:\nHe hath commission from thy wife and me\nTo hang Cordelia in the prison, and\nTo lay the blame upon her own despair,\nThat she fordid herself.\n\nALBANY:\nThe gods defend her! Bear him hence awhile.\n\nKING LEAR:\nHowl, howl, howl, howl! O, you are men of stones:\nHad I your tongues and eyes, I'ld use them so\nThat heaven's vault should crack. She's gone for ever!\nI know when one is dead, and when one lives;\nShe's dead as earth. Lend me a looking-glass;\nIf that her breath will mist or stain the stone,\nWhy, then she lives.\n\nKENT:\nIs this the promised end\n\nEDGAR:\nOr image of that horror?\n\nALBANY:\nFall, and cease!\n\nKING LEAR:\nThis feather stirs; she lives! if it be so,\nIt is a chance which does redeem all sorrows\nThat ever I have felt.\n\nKENT:\n\nKING LEAR:\nPrithee, away.\n\nEDGAR:\n'Tis noble Kent, your friend.\n\nKING LEAR:\nA plague upon you, murderers, traitors all!\nI might have saved her; now she's gone for ever!\nCordelia, Cordelia! stay a little. Ha!\nWhat is't thou say'st? Her voice was ever soft,\nGentle, and low, an excellent thing in woman.\nI kill'd the slave that was a-hanging thee.\n\nCaptain:\n'Tis true, my lords, he did.\n\nKING LEAR:\nDid I not, fellow?\nI have seen the day, with my good biting falchion\nI would have made them skip: I am old now,\nAnd these same crosses spoil me. Who are you?\nMine eyes are not o' the best: I'll tell you straight.\n\nKENT:\nIf fortune brag of two she loved and hated,\nOne of them we behold.\n\nKING LEAR:\nThis is a dull sight. Are you not Kent?\n\nKENT:\nThe same,\nYour servant Kent: Where is your servant Caius?\n\nKING LEAR:\nHe's a good fellow, I can tell you that;\nHe'll strike, and quickly too: he's dead and rotten.\n\nKENT:\nNo, my good lord; I am the very man,--\n\nKING LEAR:\nI'll see that straight.\n\nKENT:\nThat, from your first of difference and decay,\nHave follow'd your sad steps.\n\nKING LEAR:\nYou are welcome hither.\n\nKENT:\nNor no man else: all's cheerless, dark, and deadly.\nYour eldest daughters have fordone them selves,\nAnd desperately are dead.\n\nKING LEAR:\nAy, so I think.\n\nALBANY:\nHe knows not what he says: and vain it is\nThat we present us to him.\n\nEDGAR:\nVery bootless.\n\nCaptain:\nEdmund is dead, my lord.\n\nALBANY:\nThat's but a trifle here.\nYou lords and noble friends, know our intent.\nWhat comfort to this great decay may come\nShall be applied: for us we will resign,\nDuring the life of this old majesty,\nTo him our absolute power:\nyou, to your rights:\nWith boot, and such addition as your honours\nHave more than merited. All friends shall taste\nThe wages of their virtue, and all foes\nThe cup of their deservings. O, see, see!\n\nKING LEAR:\nAnd my poor fool is hang'd! No, no, no life!\nWhy should a dog, a horse, a rat, have life,\nAnd thou no breath at all? Thou'lt come no more,\nNever, never, never, never, never!\nPray you, undo this button: thank you, sir.\nDo you see this? Look on her, look, her lips,\nLook there, look there!\n\nEDGAR:\nHe faints! My lord, my lord!\n\nKENT:\nBreak, heart; I prithee, break!\n\nEDGAR:\nLook up, my lord.\n\nKENT:\nVex not his ghost: O, let him pass! he hates him much\nThat would upon the rack of this tough world\nStretch him out longer.\n\nEDGAR:\nHe is gone, indeed.\n\nKENT:\nThe wonder is, he hath endured so long:\nHe but usurp'd his life.\n\nALBANY:\nBear them from hence. Our present business\nIs general woe.\nFriends of my soul, you twain\nRule in this realm, and the gored state sustain.\n\nKENT:\nI have a journey, sir, shortly to go;\nMy master calls me, I must not say no.\n\nALBANY:\nThe weight of this sad time we must obey;\nSpeak what we feel, not what we ought to say.\nThe oldest hath borne most: we that are young\nShall never see so much, nor live so long.\n\nPHILO:\nNay, but this dotage of our general's\nO'erflows the measure: those his goodly eyes,\nThat o'er the files and musters of the war\nHave glow'd like plated Mars, now bend, now turn,\nThe office and devotion of their view\nUpon a tawny front: his captain's heart,\nWhich in the scuffles of great fights hath burst\nThe buckles on his breast, reneges all temper,\nAnd is become the bellows and the fan\nTo cool a gipsy's lust.\nLook, where they come:\nTake but good note, and you shall see in him.\nThe triple pillar of the world transform'd\nInto a strumpet's fool: behold and see.\n\nCLEOPATRA:\nIf it be love indeed, tell me how much.\n\nMARK ANTONY:\nThere's beggary in the love that can be reckon'd.\n\nCLEOPATRA:\nI'll set a bourn how far to be beloved.\n\nMARK ANTONY:\nThen must thou needs find out new heaven, new earth.\n\nAttendant:\nNews, my good lord, from Rome.\n\nMARK ANTONY:\nGrates me: the sum.\n\nCLEOPATRA:\nNay, hear them, Antony:\nFulvia perchance is angry; or, who knows\nIf the scarce-bearded Caesar have not sent\nHis powerful mandate to you, 'Do this, or this;\nTake in that kingdom, and enfranchise that;\nPerform 't, or else we damn thee.'\n\nMARK ANTONY:\nHow, my love!\n\nCLEOPATRA:\nPerchance! nay, and most like:\nYou must not stay here longer, your dismission\nIs come from Caesar; therefore hear it, Antony.\nWhere's Fulvia's process? Caesar's I would say? both?\nCall in the messengers. As I am Egypt's queen,\nThou blushest, Antony; and that blood of thine\nIs Caesar's homager: else so thy cheek pays shame\nWhen shrill-tongued Fulvia scolds. The messengers!\n\nMARK ANTONY:\nLet Rome in Tiber melt, and the wide arch\nOf the ranged empire fall! Here is my space.\nKingdoms are clay: our dungy earth alike\nFeeds beast as man: the nobleness of life\nIs to do thus; when such a mutual pair\nAnd such a twain can do't, in which I bind,\nOn pain of punishment, the world to weet\nWe stand up peerless.\n\nCLEOPATRA:\nExcellent falsehood!\nWhy did he marry Fulvia, and not love her?\nI'll seem the fool I am not; Antony\nWill be himself.\n\nMARK ANTONY:\nBut stirr'd by Cleopatra.\nNow, for the love of Love and her soft hours,\nLet's not confound the time with conference harsh:\nThere's not a minute of our lives should stretch\nWithout some pleasure now. What sport tonight?\n\nCLEOPATRA:\nHear the ambassadors.\n\nMARK ANTONY:\nFie, wrangling queen!\nWhom every thing becomes, to chide, to laugh,\nTo weep; whose every passion fully strives\nTo make itself, in thee, fair and admired!\nNo messenger, but thine; and all alone\nTo-night we'll wander through the streets and note\nThe qualities of people. Come, my queen;\nLast night you did desire it: speak not to us.\n\nDEMETRIUS:\nIs Caesar with Antonius prized so slight?\n\nPHILO:\nSir, sometimes, when he is not Antony,\nHe comes too short of that great property\nWhich still should go with Antony.\n\nDEMETRIUS:\nI am full sorry\nThat he approves the common liar, who\nThus speaks of him at Rome: but I will hope\nOf better deeds to-morrow. Rest you happy!\n\nCHARMIAN:\nLord Alexas, sweet Alexas, most any thing Alexas,\nalmost most absolute Alexas, where's the soothsayer\nthat you praised so to the queen? O, that I knew\nthis husband, which, you say, must charge his horns\nwith garlands!\n\nALEXAS:\nSoothsayer!\n\nSoothsayer:\nYour will?\n\nCHARMIAN:\nIs this the man? Is't you, sir, that know things?\n\nSoothsayer:\nIn nature's infinite book of secrecy\nA little I can read.\n\nALEXAS:\nShow him your hand.\n\nDOMITIUS ENOBARBUS:\nBring in the banquet quickly; wine enough\nCleopatra's health to drink.\n\nCHARMIAN:\nGood sir, give me good fortune.\n\nSoothsayer:\nI make not, but foresee.\n\nCHARMIAN:\nPray, then, foresee me one.\n\nSoothsayer:\nYou shall be yet far fairer than you are.\n\nCHARMIAN:\nHe means in flesh.\n\nIRAS:\nNo, you shall paint when you are old.\n\nCHARMIAN:\nWrinkles forbid!\n\nALEXAS:\nVex not his prescience; be attentive.\n\nCHARMIAN:\nHush!\n\nSoothsayer:\nYou shall be more beloving than beloved.\n\nCHARMIAN:\nI had rather heat my liver with drinking.\n\nALEXAS:\nNay, hear him.\n\nCHARMIAN:\nGood now, some excellent fortune! Let me be married\nto three kings in a forenoon, and widow them all:\nlet me have a child at fifty, to whom Herod of Jewry\nmay do homage: find me to marry me with Octavius\nCaesar, and companion me with my mistress.\n\nSoothsayer:\nYou shall outlive the lady whom you serve.\n\nCHARMIAN:\nO excellent! I love long life better than figs.\n\nSoothsayer:\nYou have seen and proved a fairer former fortune\nThan that which is to approach.\n\nCHARMIAN:\nThen belike my children shall have no names:\nprithee, how many boys and wenches must I have?\n\nSoothsayer:\nIf every of your wishes had a womb.\nAnd fertile every wish, a million.\n\nCHARMIAN:\nOut, fool! I forgive thee for a witch.\n\nALEXAS:\nYou think none but your sheets are privy to your wishes.\n\nCHARMIAN:\nNay, come, tell Iras hers.\n\nALEXAS:\nWe'll know all our fortunes.\n\nDOMITIUS ENOBARBUS:\nMine, and most of our fortunes, to-night, shall\nbe--drunk to bed.\n\nIRAS:\nThere's a palm presages chastity, if nothing else.\n\nCHARMIAN:\nE'en as the o'erflowing Nilus presageth famine.\n\nIRAS:\nGo, you wild bedfellow, you cannot soothsay.\n\nCHARMIAN:\nNay, if an oily palm be not a fruitful\nprognostication, I cannot scratch mine ear. Prithee,\ntell her but a worky-day fortune.\n\nSoothsayer:\nYour fortunes are alike.\n\nIRAS:\nBut how, but how? give me particulars.\n\nSoothsayer:\nI have said.\n\nIRAS:\nAm I not an inch of fortune better than she?\n\nCHARMIAN:\nWell, if you were but an inch of fortune better than\nI, where would you choose it?\n\nIRAS:\nNot in my husband's nose.\n\nCHARMIAN:\nOur worser thoughts heavens mend! Alexas,--come,\nhis fortune, his fortune! O, let him marry a woman\nthat cannot go, sweet Isis, I beseech thee! and let\nher die too, and give him a worse! and let worst\nfollow worse, till the worst of all follow him\nlaughing to his grave, fifty-fold a cuckold! Good\nIsis, hear me this prayer, though thou deny me a\nmatter of more weight; good Isis, I beseech thee!\n\nIRAS:\nAmen. Dear goddess, hear that prayer of the people!\nfor, as it is a heartbreaking to see a handsome man\nloose-wived, so it is a deadly sorrow to behold a\nfoul knave uncuckolded: therefore, dear Isis, keep\ndecorum, and fortune him accordingly!\n\nCHARMIAN:\nAmen.\n\nALEXAS:\nLo, now, if it lay in their hands to make me a\ncuckold, they would make themselves whores, but\nthey'ld do't!\n\nDOMITIUS ENOBARBUS:\nHush! here comes Antony.\n\nCHARMIAN:\nNot he; the queen.\n\nCLEOPATRA:\nSaw you my lord?\n\nDOMITIUS ENOBARBUS:\nNo, lady.\n\nCLEOPATRA:\nWas he not here?\n\nCHARMIAN:\nNo, madam.\n\nCLEOPATRA:\nHe was disposed to mirth; but on the sudden\nA Roman thought hath struck him. Enobarbus!\n\nDOMITIUS ENOBARBUS:\nMadam?\n\nCLEOPATRA:\nSeek him, and bring him hither.\nWhere's Alexas?\n\nALEXAS:\nHere, at your service. My lord approaches.\n\nCLEOPATRA:\nWe will not look upon him: go with us.\n\nMessenger:\nFulvia thy wife first came into the field.\n\nMARK ANTONY:\nAgainst my brother Lucius?\n\nMessenger:\nAy:\nBut soon that war had end, and the time's state\nMade friends of them, joining their force 'gainst Caesar;\nWhose better issue in the war, from Italy,\nUpon the first encounter, drave them.\n\nMARK ANTONY:\nWell, what worst?\n\nMessenger:\nThe nature of bad news infects the teller.\n\nMARK ANTONY:\nWhen it concerns the fool or coward. On:\nThings that are past are done with me. 'Tis thus:\nWho tells me true, though in his tale lie death,\nI hear him as he flatter'd.\n\nMessenger:\nLabienus--\nThis is stiff news--hath, with his Parthian force,\nExtended Asia from Euphrates;\nHis conquering banner shook from Syria\nTo Lydia and to Ionia; Whilst--\n\nMARK ANTONY:\nAntony, thou wouldst say,--\n\nMessenger:\nO, my lord!\n\nMARK ANTONY:\nSpeak to me home, mince not the general tongue:\nName Cleopatra as she is call'd in Rome;\nRail thou in Fulvia's phrase; and taunt my faults\nWith such full licence as both truth and malice\nHave power to utter. O, then we bring forth weeds,\nWhen our quick minds lie still; and our ills told us\nIs as our earing. Fare thee well awhile.\n\nMessenger:\nAt your noble pleasure.\n\nMARK ANTONY:\nFrom Sicyon, ho, the news! Speak there!\n\nFirst Attendant:\nThe man from Sicyon,--is there such an one?\n\nSecond Attendant:\nHe stays upon your will.\n\nMARK ANTONY:\nLet him appear.\nThese strong Egyptian fetters I must break,\nOr lose myself in dotage.\nWhat are you?\n\nSecond Messenger:\nFulvia thy wife is dead.\n\nMARK ANTONY:\nWhere died she?\n\nSecond Messenger:\nIn Sicyon:\nHer length of sickness, with what else more serious\nImporteth thee to know, this bears.\n\nMARK ANTONY:\nForbear me.\nThere's a great spirit gone! Thus did I desire it:\nWhat our contempt doth often hurl from us,\nWe wish it ours again; the present pleasure,\nBy revolution lowering, does become\nThe opposite of itself: she's good, being gone;\nThe hand could pluck her back that shoved her on.\nI must from this enchanting queen break off:\nTen thousand harms, more than the ills I know,\nMy idleness doth hatch. How now! Enobarbus!\n\nDOMITIUS ENOBARBUS:\nWhat's your pleasure, sir?\n\nMARK ANTONY:\nI must with haste from hence.\n\nDOMITIUS ENOBARBUS:\nWhy, then, we kill all our women:\nwe see how mortal an unkindness is to them;\nif they suffer our departure, death's the word.\n\nMARK ANTONY:\nI must be gone.\n\nDOMITIUS ENOBARBUS:\nUnder a compelling occasion, let women die; it were\npity to cast them away for nothing; though, between\nthem and a great cause, they should be esteemed\nnothing. Cleopatra, catching but the least noise of\nthis, dies instantly; I have seen her die twenty\ntimes upon far poorer moment: I do think there is\nmettle in death, which commits some loving act upon\nher, she hath such a celerity in dying.\n\nMARK ANTONY:\nShe is cunning past man's thought.\n\nDOMITIUS ENOBARBUS:\nAlack, sir, no; her passions are made of nothing but\nthe finest part of pure love: we cannot call her\nwinds and waters sighs and tears; they are greater\nstorms and tempests than almanacs can report: this\ncannot be cunning in her; if it be, she makes a\nshower of rain as well as Jove.\n\nMARK ANTONY:\nWould I had never seen her.\n\nDOMITIUS ENOBARBUS:\nO, sir, you had then left unseen a wonderful piece\nof work; which not to have been blest withal would\nhave discredited your travel.\n\nMARK ANTONY:\nFulvia is dead.\n\nDOMITIUS ENOBARBUS:\nSir?\n\nMARK ANTONY:\nFulvia is dead.\n\nDOMITIUS ENOBARBUS:\nFulvia!\n\nMARK ANTONY:\nDead.\n\nDOMITIUS ENOBARBUS:\nWhy, sir, give the gods a thankful sacrifice. When\nit pleaseth their deities to take the wife of a man\nfrom him, it shows to man the tailors of the earth;\ncomforting therein, that when old robes are worn\nout, there are members to make new. If there were\nno more women but Fulvia, then had you indeed a cut,\nand the case to be lamented: this grief is crowned\nwith consolation; your old smock brings forth a new\npetticoat: and indeed the tears live in an onion\nthat should water this sorrow.\n\nMARK ANTONY:\nThe business she hath broached in the state\nCannot endure my absence.\n\nDOMITIUS ENOBARBUS:\nAnd the business you have broached here cannot be\nwithout you; especially that of Cleopatra's, which\nwholly depends on your abode.\n\nMARK ANTONY:\nNo more light answers. Let our officers\nHave notice what we purpose. I shall break\nThe cause of our expedience to the queen,\nAnd get her leave to part. For not alone\nThe death of Fulvia, with more urgent touches,\nDo strongly speak to us; but the letters too\nOf many our contriving friends in Rome\nPetition us at home: Sextus Pompeius\nHath given the dare to Caesar, and commands\nThe empire of the sea: our slippery people,\nWhose love is never link'd to the deserver\nTill his deserts are past, begin to throw\nPompey the Great and all his dignities\nUpon his son; who, high in name and power,\nHigher than both in blood and life, stands up\nFor the main soldier: whose quality, going on,\nThe sides o' the world may danger: much is breeding,\nWhich, like the courser's hair, hath yet but life,\nAnd not a serpent's poison. Say, our pleasure,\nTo such whose place is under us, requires\nOur quick remove from hence.\n\nDOMITIUS ENOBARBUS:\nI shall do't.\n\nCLEOPATRA:\nWhere is he?\n\nCHARMIAN:\nI did not see him since.\n\nCLEOPATRA:\nSee where he is, who's with him, what he does:\nI did not send you: if you find him sad,\nSay I am dancing; if in mirth, report\nThat I am sudden sick: quick, and return.\n\nCHARMIAN:\nMadam, methinks, if you did love him dearly,\nYou do not hold the method to enforce\nThe like from him.\n\nCLEOPATRA:\nWhat should I do, I do not?\n\nCHARMIAN:\nIn each thing give him way, cross him nothing.\n\nCLEOPATRA:\nThou teachest like a fool; the way to lose him.\n\nCHARMIAN:\nTempt him not so too far; I wish, forbear:\nIn time we hate that which we often fear.\nBut here comes Antony.\n\nCLEOPATRA:\nI am sick and sullen.\n\nMARK ANTONY:\nI am sorry to give breathing to my purpose,--\n\nCLEOPATRA:\nHelp me away, dear Charmian; I shall fall:\nIt cannot be thus long, the sides of nature\nWill not sustain it.\n\nMARK ANTONY:\nNow, my dearest queen,--\n\nCLEOPATRA:\nPray you, stand further from me.\n\nMARK ANTONY:\nWhat's the matter?\n\nCLEOPATRA:\nI know, by that same eye, there's some good news.\nWhat says the married woman? You may go:\nWould she had never given you leave to come!\nLet her not say 'tis I that keep you here:\nI have no power upon you; hers you are.\n\nMARK ANTONY:\nThe gods best know,--\n\nCLEOPATRA:\nO, never was there queen\nSo mightily betray'd! yet at the first\nI saw the treasons planted.\n\nMARK ANTONY:\nCleopatra,--\n\nCLEOPATRA:\nWhy should I think you can be mine and true,\nThough you in swearing shake the throned gods,\nWho have been false to Fulvia? Riotous madness,\nTo be entangled with those mouth-made vows,\nWhich break themselves in swearing!\n\nMARK ANTONY:\nMost sweet queen,--\n\nCLEOPATRA:\nNay, pray you, seek no colour for your going,\nBut bid farewell, and go: when you sued staying,\nThen was the time for words: no going then;\nEternity was in our lips and eyes,\nBliss in our brows' bent; none our parts so poor,\nBut was a race of heaven: they are so still,\nOr thou, the greatest soldier of the world,\nArt turn'd the greatest liar.\n\nMARK ANTONY:\nHow now, lady!\n\nCLEOPATRA:\nI would I had thy inches; thou shouldst know\nThere were a heart in Egypt.\n\nMARK ANTONY:\nHear me, queen:\nThe strong necessity of time commands\nOur services awhile; but my full heart\nRemains in use with you. Our Italy\nShines o'er with civil swords: Sextus Pompeius\nMakes his approaches to the port of Rome:\nEquality of two domestic powers\nBreed scrupulous faction: the hated, grown to strength,\nAre newly grown to love: the condemn'd Pompey,\nRich in his father's honour, creeps apace,\nInto the hearts of such as have not thrived\nUpon the present state, whose numbers threaten;\nAnd quietness, grown sick of rest, would purge\nBy any desperate change: my more particular,\nAnd that which most with you should safe my going,\nIs Fulvia's death.\n\nCLEOPATRA:\nThough age from folly could not give me freedom,\nIt does from childishness: can Fulvia die?\n\nMARK ANTONY:\nShe's dead, my queen:\nLook here, and at thy sovereign leisure read\nThe garboils she awaked; at the last, best:\nSee when and where she died.\n\nCLEOPATRA:\nO most false love!\nWhere be the sacred vials thou shouldst fill\nWith sorrowful water? Now I see, I see,\nIn Fulvia's death, how mine received shall be.\n\nMARK ANTONY:\nQuarrel no more, but be prepared to know\nThe purposes I bear; which are, or cease,\nAs you shall give the advice. By the fire\nThat quickens Nilus' slime, I go from hence\nThy soldier, servant; making peace or war\nAs thou affect'st.\n\nCLEOPATRA:\nCut my lace, Charmian, come;\nBut let it be: I am quickly ill, and well,\nSo Antony loves.\n\nMARK ANTONY:\nMy precious queen, forbear;\nAnd give true evidence to his love, which stands\nAn honourable trial.\n\nCLEOPATRA:\nSo Fulvia told me.\nI prithee, turn aside and weep for her,\nThen bid adieu to me, and say the tears\nBelong to Egypt: good now, play one scene\nOf excellent dissembling; and let it look\nLife perfect honour.\n\nMARK ANTONY:\nYou'll heat my blood: no more.\n\nCLEOPATRA:\nYou can do better yet; but this is meetly.\n\nMARK ANTONY:\nNow, by my sword,--\n\nCLEOPATRA:\nAnd target. Still he mends;\nBut this is not the best. Look, prithee, Charmian,\nHow this Herculean Roman does become\nThe carriage of his chafe.\n\nMARK ANTONY:\nI'll leave you, lady.\n\nCLEOPATRA:\nCourteous lord, one word.\nSir, you and I must part, but that's not it:\nSir, you and I have loved, but there's not it;\nThat you know well: something it is I would,\nO, my oblivion is a very Antony,\nAnd I am all forgotten.\n\nMARK ANTONY:\nBut that your royalty\nHolds idleness your subject, I should take you\nFor idleness itself.\n\nCLEOPATRA:\n'Tis sweating labour\nTo bear such idleness so near the heart\nAs Cleopatra this. But, sir, forgive me;\nSince my becomings kill me, when they do not\nEye well to you: your honour calls you hence;\nTherefore be deaf to my unpitied folly.\nAnd all the gods go with you! upon your sword\nSit laurel victory! and smooth success\nBe strew'd before your feet!\n\nMARK ANTONY:\nLet us go. Come;\nOur separation so abides, and flies,\nThat thou, residing here, go'st yet with me,\nAnd I, hence fleeting, here remain with thee. Away!\n\nOCTAVIUS CAESAR:\nYou may see, Lepidus, and henceforth know,\nIt is not Caesar's natural vice to hate\nOur great competitor: from Alexandria\nThis is the news: he fishes, drinks, and wastes\nThe lamps of night in revel; is not more man-like\nThan Cleopatra; nor the queen of Ptolemy\nMore womanly than he; hardly gave audience, or\nVouchsafed to think he had partners: you shall find there\nA man who is the abstract of all faults\nThat all men follow.\n\nLEPIDUS:\nI must not think there are\nEvils enow to darken all his goodness:\nHis faults in him seem as the spots of heaven,\nMore fiery by night's blackness; hereditary,\nRather than purchased; what he cannot change,\nThan what he chooses.\n\nOCTAVIUS CAESAR:\nYou are too indulgent. Let us grant, it is not\nAmiss to tumble on the bed of Ptolemy;\nTo give a kingdom for a mirth; to sit\nAnd keep the turn of tippling with a slave;\nTo reel the streets at noon, and stand the buffet\nWith knaves that smell of sweat: say this\nbecomes him,--\nAs his composure must be rare indeed\nWhom these things cannot blemish,--yet must Antony\nNo way excuse his soils, when we do bear\nSo great weight in his lightness. If he fill'd\nHis vacancy with his voluptuousness,\nFull surfeits, and the dryness of his bones,\nCall on him for't: but to confound such time,\nThat drums him from his sport, and speaks as loud\nAs his own state and ours,--'tis to be chid\nAs we rate boys, who, being mature in knowledge,\nPawn their experience to their present pleasure,\nAnd so rebel to judgment.\n\nLEPIDUS:\nHere's more news.\n\nMessenger:\nThy biddings have been done; and every hour,\nMost noble Caesar, shalt thou have report\nHow 'tis abroad. Pompey is strong at sea;\nAnd it appears he is beloved of those\nThat only have fear'd Caesar: to the ports\nThe discontents repair, and men's reports\nGive him much wrong'd.\n\nOCTAVIUS CAESAR:\nI should have known no less.\nIt hath been taught us from the primal state,\nThat he which is was wish'd until he were;\nAnd the ebb'd man, ne'er loved till ne'er worth love,\nComes dear'd by being lack'd. This common body,\nLike to a vagabond flag upon the stream,\nGoes to and back, lackeying the varying tide,\nTo rot itself with motion.\n\nMessenger:\nCaesar, I bring thee word,\nMenecrates and Menas, famous pirates,\nMake the sea serve them, which they ear and wound\nWith keels of every kind: many hot inroads\nThey make in Italy; the borders maritime\nLack blood to think on't, and flush youth revolt:\nNo vessel can peep forth, but 'tis as soon\nTaken as seen; for Pompey's name strikes more\nThan could his war resisted.\n\nOCTAVIUS CAESAR:\nAntony,\nLeave thy lascivious wassails. When thou once\nWast beaten from Modena, where thou slew'st\nHirtius and Pansa, consuls, at thy heel\nDid famine follow; whom thou fought'st against,\nThough daintily brought up, with patience more\nThan savages could suffer: thou didst drink\nThe stale of horses, and the gilded puddle\nWhich beasts would cough at: thy palate then did deign\nThe roughest berry on the rudest hedge;\nYea, like the stag, when snow the pasture sheets,\nThe barks of trees thou browsed'st; on the Alps\nIt is reported thou didst eat strange flesh,\nWhich some did die to look on: and all this--\nIt wounds thine honour that I speak it now--\nWas borne so like a soldier, that thy cheek\nSo much as lank'd not.\n\nLEPIDUS:\n'Tis pity of him.\n\nOCTAVIUS CAESAR:\nLet his shames quickly\nDrive him to Rome: 'tis time we twain\nDid show ourselves i' the field; and to that end\nAssemble we immediate council: Pompey\nThrives in our idleness.\n\nLEPIDUS:\nTo-morrow, Caesar,\nI shall be furnish'd to inform you rightly\nBoth what by sea and land I can be able\nTo front this present time.\n\nOCTAVIUS CAESAR:\nTill which encounter,\nIt is my business too. Farewell.\n\nLEPIDUS:\nFarewell, my lord: what you shall know meantime\nOf stirs abroad, I shall beseech you, sir,\nTo let me be partaker.\n\nOCTAVIUS CAESAR:\nDoubt not, sir;\nI knew it for my bond.\n\nCLEOPATRA:\nCharmian!\n\nCHARMIAN:\nMadam?\n\nCLEOPATRA:\nHa, ha!\nGive me to drink mandragora.\n\nCHARMIAN:\nWhy, madam?\n\nCLEOPATRA:\nThat I might sleep out this great gap of time\nMy Antony is away.\n\nCHARMIAN:\nYou think of him too much.\n\nCLEOPATRA:\nO, 'tis treason!\n\nCHARMIAN:\nMadam, I trust, not so.\n\nCLEOPATRA:\nThou, eunuch Mardian!\n\nMARDIAN:\nWhat's your highness' pleasure?\n\nCLEOPATRA:\nNot now to hear thee sing; I take no pleasure\nIn aught an eunuch has: 'tis well for thee,\nThat, being unseminar'd, thy freer thoughts\nMay not fly forth of Egypt. Hast thou affections?\n\nMARDIAN:\nYes, gracious madam.\n\nCLEOPATRA:\nIndeed!\n\nMARDIAN:\nNot in deed, madam; for I can do nothing\nBut what indeed is honest to be done:\nYet have I fierce affections, and think\nWhat Venus did with Mars.\n\nCLEOPATRA:\nO Charmian,\nWhere think'st thou he is now? Stands he, or sits he?\nOr does he walk? or is he on his horse?\nO happy horse, to bear the weight of Antony!\nDo bravely, horse! for wot'st thou whom thou movest?\nThe demi-Atlas of this earth, the arm\nAnd burgonet of men. He's speaking now,\nOr murmuring 'Where's my serpent of old Nile?'\nFor so he calls me: now I feed myself\nWith most delicious poison. Think on me,\nThat am with Phoebus' amorous pinches black,\nAnd wrinkled deep in time? Broad-fronted Caesar,\nWhen thou wast here above the ground, I was\nA morsel for a monarch: and great Pompey\nWould stand and make his eyes grow in my brow;\nThere would he anchor his aspect and die\nWith looking on his life.\n\nALEXAS:\nSovereign of Egypt, hail!\n\nCLEOPATRA:\nHow much unlike art thou Mark Antony!\nYet, coming from him, that great medicine hath\nWith his tinct gilded thee.\nHow goes it with my brave Mark Antony?\n\nALEXAS:\nLast thing he did, dear queen,\nHe kiss'd,--the last of many doubled kisses,--\nThis orient pearl. His speech sticks in my heart.\n\nCLEOPATRA:\nMine ear must pluck it thence.\n\nALEXAS:\n'Good friend,' quoth he,\n'Say, the firm Roman to great Egypt sends\nThis treasure of an oyster; at whose foot,\nTo mend the petty present, I will piece\nHer opulent throne with kingdoms; all the east,\nSay thou, shall call her mistress.' So he nodded,\nAnd soberly did mount an arm-gaunt steed,\nWho neigh'd so high, that what I would have spoke\nWas beastly dumb'd by him.\n\nCLEOPATRA:\nWhat, was he sad or merry?\n\nALEXAS:\nLike to the time o' the year between the extremes\nOf hot and cold, he was nor sad nor merry.\n\nCLEOPATRA:\nO well-divided disposition! Note him,\nNote him good Charmian, 'tis the man; but note him:\nHe was not sad, for he would shine on those\nThat make their looks by his; he was not merry,\nWhich seem'd to tell them his remembrance lay\nIn Egypt with his joy; but between both:\nO heavenly mingle! Be'st thou sad or merry,\nThe violence of either thee becomes,\nSo does it no man else. Met'st thou my posts?\n\nALEXAS:\nAy, madam, twenty several messengers:\nWhy do you send so thick?\n\nCLEOPATRA:\nWho's born that day\nWhen I forget to send to Antony,\nShall die a beggar. Ink and paper, Charmian.\nWelcome, my good Alexas. Did I, Charmian,\nEver love Caesar so?\n\nCHARMIAN:\nO that brave Caesar!\n\nCLEOPATRA:\nBe choked with such another emphasis!\nSay, the brave Antony.\n\nCHARMIAN:\nThe valiant Caesar!\n\nCLEOPATRA:\nBy Isis, I will give thee bloody teeth,\nIf thou with Caesar paragon again\nMy man of men.\n\nCHARMIAN:\nBy your most gracious pardon,\nI sing but after you.\n\nCLEOPATRA:\nMy salad days,\nWhen I was green in judgment: cold in blood,\nTo say as I said then! But, come, away;\nGet me ink and paper:\nHe shall have every day a several greeting,\nOr I'll unpeople Egypt.\n\nPOMPEY:\nIf the great gods be just, they shall assist\nThe deeds of justest men.\n\nMENECRATES:\nKnow, worthy Pompey,\nThat what they do delay, they not deny.\n\nPOMPEY:\nWhiles we are suitors to their throne, decays\nThe thing we sue for.\n\nMENECRATES:\nWe, ignorant of ourselves,\nBeg often our own harms, which the wise powers\nDeny us for our good; so find we profit\nBy losing of our prayers.\n\nPOMPEY:\nI shall do well:\nThe people love me, and the sea is mine;\nMy powers are crescent, and my auguring hope\nSays it will come to the full. Mark Antony\nIn Egypt sits at dinner, and will make\nNo wars without doors: Caesar gets money where\nHe loses hearts: Lepidus flatters both,\nOf both is flatter'd; but he neither loves,\nNor either cares for him.\n\nMENAS:\nCaesar and Lepidus\nAre in the field: a mighty strength they carry.\n\nPOMPEY:\nWhere have you this? 'tis false.\n\nMENAS:\nFrom Silvius, sir.\n\nPOMPEY:\nHe dreams: I know they are in Rome together,\nLooking for Antony. But all the charms of love,\nSalt Cleopatra, soften thy waned lip!\nLet witchcraft join with beauty, lust with both!\nTie up the libertine in a field of feasts,\nKeep his brain fuming; Epicurean cooks\nSharpen with cloyless sauce his appetite;\nThat sleep and feeding may prorogue his honour\nEven till a Lethe'd dulness!\nHow now, Varrius!\n\nVARRIUS:\nThis is most certain that I shall deliver:\nMark Antony is every hour in Rome\nExpected: since he went from Egypt 'tis\nA space for further travel.\n\nPOMPEY:\nI could have given less matter\nA better ear. Menas, I did not think\nThis amorous surfeiter would have donn'd his helm\nFor such a petty war: his soldiership\nIs twice the other twain: but let us rear\nThe higher our opinion, that our stirring\nCan from the lap of Egypt's widow pluck\nThe ne'er-lust-wearied Antony.\n\nMENAS:\nI cannot hope\nCaesar and Antony shall well greet together:\nHis wife that's dead did trespasses to Caesar;\nHis brother warr'd upon him; although, I think,\nNot moved by Antony.\n\nPOMPEY:\nI know not, Menas,\nHow lesser enmities may give way to greater.\nWere't not that we stand up against them all,\n'Twere pregnant they should square between\nthemselves;\nFor they have entertained cause enough\nTo draw their swords: but how the fear of us\nMay cement their divisions and bind up\nThe petty difference, we yet not know.\nBe't as our gods will have't! It only stands\nOur lives upon to use our strongest hands.\nCome, Menas.\n\nLEPIDUS:\nGood Enobarbus, 'tis a worthy deed,\nAnd shall become you well, to entreat your captain\nTo soft and gentle speech.\n\nDOMITIUS ENOBARBUS:\nI shall entreat him\nTo answer like himself: if Caesar move him,\nLet Antony look over Caesar's head\nAnd speak as loud as Mars. By Jupiter,\nWere I the wearer of Antonius' beard,\nI would not shave't to-day.\n\nLEPIDUS:\n'Tis not a time\nFor private stomaching.\n\nDOMITIUS ENOBARBUS:\nEvery time\nServes for the matter that is then born in't.\n\nLEPIDUS:\nBut small to greater matters must give way.\n\nDOMITIUS ENOBARBUS:\nNot if the small come first.\n\nLEPIDUS:\nYour speech is passion:\nBut, pray you, stir no embers up. Here comes\nThe noble Antony.\n\nDOMITIUS ENOBARBUS:\nAnd yonder, Caesar.\n\nMARK ANTONY:\nIf we compose well here, to Parthia:\nHark, Ventidius.\n\nOCTAVIUS CAESAR:\nI do not know,\nMecaenas; ask Agrippa.\n\nLEPIDUS:\nNoble friends,\nThat which combined us was most great, and let not\nA leaner action rend us. What's amiss,\nMay it be gently heard: when we debate\nOur trivial difference loud, we do commit\nMurder in healing wounds: then, noble partners,\nThe rather, for I earnestly beseech,\nTouch you the sourest points with sweetest terms,\nNor curstness grow to the matter.\n\nMARK ANTONY:\n'Tis spoken well.\nWere we before our armies, and to fight.\nI should do thus.\n\nOCTAVIUS CAESAR:\nWelcome to Rome.\n\nMARK ANTONY:\nThank you.\n\nOCTAVIUS CAESAR:\nSit.\n\nMARK ANTONY:\nSit, sir.\n\nOCTAVIUS CAESAR:\nNay, then.\n\nMARK ANTONY:\nI learn, you take things ill which are not so,\nOr being, concern you not.\n\nOCTAVIUS CAESAR:\nI must be laugh'd at,\nIf, or for nothing or a little, I\nShould say myself offended, and with you\nChiefly i' the world; more laugh'd at, that I should\nOnce name you derogately, when to sound your name\nIt not concern'd me.\n\nMARK ANTONY:\nMy being in Egypt, Caesar,\nWhat was't to you?\n\nOCTAVIUS CAESAR:\nNo more than my residing here at Rome\nMight be to you in Egypt: yet, if you there\nDid practise on my state, your being in Egypt\nMight be my question.\n\nMARK ANTONY:\nHow intend you, practised?\n\nOCTAVIUS CAESAR:\nYou may be pleased to catch at mine intent\nBy what did here befal me. Your wife and brother\nMade wars upon me; and their contestation\nWas theme for you, you were the word of war.\n\nMARK ANTONY:\nYou do mistake your business; my brother never\nDid urge me in his act: I did inquire it;\nAnd have my learning from some true reports,\nThat drew their swords with you. Did he not rather\nDiscredit my authority with yours;\nAnd make the wars alike against my stomach,\nHaving alike your cause? Of this my letters\nBefore did satisfy you. If you'll patch a quarrel,\nAs matter whole you have not to make it with,\nIt must not be with this.\n\nOCTAVIUS CAESAR:\nYou praise yourself\nBy laying defects of judgment to me; but\nYou patch'd up your excuses.\n\nMARK ANTONY:\nNot so, not so;\nI know you could not lack, I am certain on't,\nVery necessity of this thought, that I,\nYour partner in the cause 'gainst which he fought,\nCould not with graceful eyes attend those wars\nWhich fronted mine own peace. As for my wife,\nI would you had her spirit in such another:\nThe third o' the world is yours; which with a snaffle\nYou may pace easy, but not such a wife.\n\nDOMITIUS ENOBARBUS:\nWould we had all such wives, that the men might go\nto wars with the women!\n\nMARK ANTONY:\nSo much uncurbable, her garboils, Caesar\nMade out of her impatience, which not wanted\nShrewdness of policy too, I grieving grant\nDid you too much disquiet: for that you must\nBut say, I could not help it.\n\nOCTAVIUS CAESAR:\nI wrote to you\nWhen rioting in Alexandria; you\nDid pocket up my letters, and with taunts\nDid gibe my missive out of audience.\n\nMARK ANTONY:\nSir,\nHe fell upon me ere admitted: then\nThree kings I had newly feasted, and did want\nOf what I was i' the morning: but next day\nI told him of myself; which was as much\nAs to have ask'd him pardon. Let this fellow\nBe nothing of our strife; if we contend,\nOut of our question wipe him.\n\nOCTAVIUS CAESAR:\nYou have broken\nThe article of your oath; which you shall never\nHave tongue to charge me with.\n\nLEPIDUS:\nSoft, Caesar!\n\nMARK ANTONY:\nNo,\nLepidus, let him speak:\nThe honour is sacred which he talks on now,\nSupposing that I lack'd it. But, on, Caesar;\nThe article of my oath.\n\nOCTAVIUS CAESAR:\nTo lend me arms and aid when I required them;\nThe which you both denied.\n\nMARK ANTONY:\nNeglected, rather;\nAnd then when poison'd hours had bound me up\nFrom mine own knowledge. As nearly as I may,\nI'll play the penitent to you: but mine honesty\nShall not make poor my greatness, nor my power\nWork without it. Truth is, that Fulvia,\nTo have me out of Egypt, made wars here;\nFor which myself, the ignorant motive, do\nSo far ask pardon as befits mine honour\nTo stoop in such a case.\n\nLEPIDUS:\n'Tis noble spoken.\n\nMECAENAS:\nIf it might please you, to enforce no further\nThe griefs between ye: to forget them quite\nWere to remember that the present need\nSpeaks to atone you.\n\nLEPIDUS:\nWorthily spoken, Mecaenas.\n\nDOMITIUS ENOBARBUS:\nOr, if you borrow one another's love for the\ninstant, you may, when you hear no more words of\nPompey, return it again: you shall have time to\nwrangle in when you have nothing else to do.\n\nMARK ANTONY:\nThou art a soldier only: speak no more.\n\nDOMITIUS ENOBARBUS:\nThat truth should be silent I had almost forgot.\n\nMARK ANTONY:\nYou wrong this presence; therefore speak no more.\n\nDOMITIUS ENOBARBUS:\nGo to, then; your considerate stone.\n\nOCTAVIUS CAESAR:\nI do not much dislike the matter, but\nThe manner of his speech; for't cannot be\nWe shall remain in friendship, our conditions\nSo differing in their acts. Yet if I knew\nWhat hoop should hold us stanch, from edge to edge\nO' the world I would pursue it.\n\nAGRIPPA:\nGive me leave, Caesar,--\n\nOCTAVIUS CAESAR:\nSpeak, Agrippa.\n\nAGRIPPA:\nThou hast a sister by the mother's side,\nAdmired Octavia: great Mark Antony\nIs now a widower.\n\nOCTAVIUS CAESAR:\nSay not so, Agrippa:\nIf Cleopatra heard you, your reproof\nWere well deserved of rashness.\n\nMARK ANTONY:\nI am not married, Caesar: let me hear\nAgrippa further speak.\n\nAGRIPPA:\nTo hold you in perpetual amity,\nTo make you brothers, and to knit your hearts\nWith an unslipping knot, take Antony\nOctavia to his wife; whose beauty claims\nNo worse a husband than the best of men;\nWhose virtue and whose general graces speak\nThat which none else can utter. By this marriage,\nAll little jealousies, which now seem great,\nAnd all great fears, which now import their dangers,\nWould then be nothing: truths would be tales,\nWhere now half tales be truths: her love to both\nWould, each to other and all loves to both,\nDraw after her. Pardon what I have spoke;\nFor 'tis a studied, not a present thought,\nBy duty ruminated.\n\nMARK ANTONY:\nWill Caesar speak?\n\nOCTAVIUS CAESAR:\nNot till he hears how Antony is touch'd\nWith what is spoke already.\n\nMARK ANTONY:\nWhat power is in Agrippa,\nIf I would say, 'Agrippa, be it so,'\nTo make this good?\n\nOCTAVIUS CAESAR:\nThe power of Caesar, and\nHis power unto Octavia.\n\nMARK ANTONY:\nMay I never\nTo this good purpose, that so fairly shows,\nDream of impediment! Let me have thy hand:\nFurther this act of grace: and from this hour\nThe heart of brothers govern in our loves\nAnd sway our great designs!\n\nOCTAVIUS CAESAR:\nThere is my hand.\nA sister I bequeath you, whom no brother\nDid ever love so dearly: let her live\nTo join our kingdoms and our hearts; and never\nFly off our loves again!\n\nLEPIDUS:\nHappily, amen!\n\nMARK ANTONY:\nI did not think to draw my sword 'gainst Pompey;\nFor he hath laid strange courtesies and great\nOf late upon me: I must thank him only,\nLest my remembrance suffer ill report;\nAt heel of that, defy him.\n\nLEPIDUS:\nTime calls upon's:\nOf us must Pompey presently be sought,\nOr else he seeks out us.\n\nMARK ANTONY:\nWhere lies he?\n\nOCTAVIUS CAESAR:\nAbout the mount Misenum.\n\nMARK ANTONY:\nWhat is his strength by land?\n\nOCTAVIUS CAESAR:\nGreat and increasing: but by sea\nHe is an absolute master.\n\nMARK ANTONY:\nSo is the fame.\nWould we had spoke together! Haste we for it:\nYet, ere we put ourselves in arms, dispatch we\nThe business we have talk'd of.\n\nOCTAVIUS CAESAR:\nWith most gladness:\nAnd do invite you to my sister's view,\nWhither straight I'll lead you.\n\nMARK ANTONY:\nLet us, Lepidus,\nNot lack your company.\n\nLEPIDUS:\nNoble Antony,\nNot sickness should detain me.\n\nMECAENAS:\nWelcome from Egypt, sir.\n\nDOMITIUS ENOBARBUS:\nHalf the heart of Caesar, worthy Mecaenas! My\nhonourable friend, Agrippa!\n\nAGRIPPA:\nGood Enobarbus!\n\nMECAENAS:\nWe have cause to be glad that matters are so well\ndigested. You stayed well by 't in Egypt.\n\nDOMITIUS ENOBARBUS:\nAy, sir; we did sleep day out of countenance, and\nmade the night light with drinking.\n\nMECAENAS:\nEight wild-boars roasted whole at a breakfast, and\nbut twelve persons there; is this true?\n\nDOMITIUS ENOBARBUS:\nThis was but as a fly by an eagle: we had much more\nmonstrous matter of feast, which worthily deserved noting.\n\nMECAENAS:\nShe's a most triumphant lady, if report be square to\nher.\n\nDOMITIUS ENOBARBUS:\nWhen she first met Mark Antony, she pursed up\nhis heart, upon the river of Cydnus.\n\nAGRIPPA:\nThere she appeared indeed; or my reporter devised\nwell for her.\n\nDOMITIUS ENOBARBUS:\nI will tell you.\nThe barge she sat in, like a burnish'd throne,\nBurn'd on the water: the poop was beaten gold;\nPurple the sails, and so perfumed that\nThe winds were love-sick with them; the oars were silver,\nWhich to the tune of flutes kept stroke, and made\nThe water which they beat to follow faster,\nAs amorous of their strokes. For her own person,\nIt beggar'd all description: she did lie\nIn her pavilion--cloth-of-gold of tissue--\nO'er-picturing that Venus where we see\nThe fancy outwork nature: on each side her\nStood pretty dimpled boys, like smiling Cupids,\nWith divers-colour'd fans, whose wind did seem\nTo glow the delicate cheeks which they did cool,\nAnd what they undid did.\n\nAGRIPPA:\nO, rare for Antony!\n\nDOMITIUS ENOBARBUS:\nHer gentlewomen, like the Nereides,\nSo many mermaids, tended her i' the eyes,\nAnd made their bends adornings: at the helm\nA seeming mermaid steers: the silken tackle\nSwell with the touches of those flower-soft hands,\nThat yarely frame the office. From the barge\nA strange invisible perfume hits the sense\nOf the adjacent wharfs. The city cast\nHer people out upon her; and Antony,\nEnthroned i' the market-place, did sit alone,\nWhistling to the air; which, but for vacancy,\nHad gone to gaze on Cleopatra too,\nAnd made a gap in nature.\n\nAGRIPPA:\nRare Egyptian!\n\nDOMITIUS ENOBARBUS:\nUpon her landing, Antony sent to her,\nInvited her to supper: she replied,\nIt should be better he became her guest;\nWhich she entreated: our courteous Antony,\nWhom ne'er the word of 'No' woman heard speak,\nBeing barber'd ten times o'er, goes to the feast,\nAnd for his ordinary pays his heart\nFor what his eyes eat only.\n\nAGRIPPA:\nRoyal wench!\nShe made great Caesar lay his sword to bed:\nHe plough'd her, and she cropp'd.\n\nDOMITIUS ENOBARBUS:\nI saw her once\nHop forty paces through the public street;\nAnd having lost her breath, she spoke, and panted,\nThat she did make defect perfection,\nAnd, breathless, power breathe forth.\n\nMECAENAS:\nNow Antony must leave her utterly.\n\nDOMITIUS ENOBARBUS:\nNever; he will not:\nAge cannot wither her, nor custom stale\nHer infinite variety: other women cloy\nThe appetites they feed: but she makes hungry\nWhere most she satisfies; for vilest things\nBecome themselves in her: that the holy priests\nBless her when she is riggish.\n\nMECAENAS:\nIf beauty, wisdom, modesty, can settle\nThe heart of Antony, Octavia is\nA blessed lottery to him.\n\nAGRIPPA:\nLet us go.\nGood Enobarbus, make yourself my guest\nWhilst you abide here.\n\nDOMITIUS ENOBARBUS:\nHumbly, sir, I thank you.\n\nMARK ANTONY:\nThe world and my great office will sometimes\nDivide me from your bosom.\n\nOCTAVIA:\nAll which time\nBefore the gods my knee shall bow my prayers\nTo them for you.\n\nMARK ANTONY:\nGood night, sir. My Octavia,\nRead not my blemishes in the world's report:\nI have not kept my square; but that to come\nShall all be done by the rule. Good night, dear lady.\nGood night, sir.\n\nOCTAVIUS CAESAR:\nGood night.\n\nMARK ANTONY:\nNow, sirrah; you do wish yourself in Egypt?\n\nSoothsayer:\nWould I had never come from thence, nor you Thither!\n\nMARK ANTONY:\nIf you can, your reason?\n\nSoothsayer:\nI see it in\nMy motion, have it not in my tongue: but yet\nHie you to Egypt again.\n\nMARK ANTONY:\nSay to me,\nWhose fortunes shall rise higher, Caesar's or mine?\n\nSoothsayer:\nCaesar's.\nTherefore, O Antony, stay not by his side:\nThy demon, that's thy spirit which keeps thee, is\nNoble, courageous high, unmatchable,\nWhere Caesar's is not; but, near him, thy angel\nBecomes a fear, as being o'erpower'd: therefore\nMake space enough between you.\n\nMARK ANTONY:\nSpeak this no more.\n\nSoothsayer:\nTo none but thee; no more, but when to thee.\nIf thou dost play with him at any game,\nThou art sure to lose; and, of that natural luck,\nHe beats thee 'gainst the odds: thy lustre thickens,\nWhen he shines by: I say again, thy spirit\nIs all afraid to govern thee near him;\nBut, he away, 'tis noble.\n\nMARK ANTONY:\nGet thee gone:\nSay to Ventidius I would speak with him:\nHe shall to Parthia. Be it art or hap,\nHe hath spoken true: the very dice obey him;\nAnd in our sports my better cunning faints\nUnder his chance: if we draw lots, he speeds;\nHis cocks do win the battle still of mine,\nWhen it is all to nought; and his quails ever\nBeat mine, inhoop'd, at odds. I will to Egypt:\nAnd though I make this marriage for my peace,\nI' the east my pleasure lies.\nO, come, Ventidius,\nYou must to Parthia: your commission's ready;\nFollow me, and receive't.\n\nLEPIDUS:\nTrouble yourselves no further: pray you, hasten\nYour generals after.\n\nAGRIPPA:\nSir, Mark Antony\nWill e'en but kiss Octavia, and we'll follow.\n\nLEPIDUS:\nTill I shall see you in your soldier's dress,\nWhich will become you both, farewell.\n\nMECAENAS:\nWe shall,\nAs I conceive the journey, be at the Mount\nBefore you, Lepidus.\n\nLEPIDUS:\nYour way is shorter;\nMy purposes do draw me much about:\nYou'll win two days upon me.\n\nMECAENAS:\nSir, good success!\n\nLEPIDUS:\nFarewell.\n\nCLEOPATRA:\nGive me some music; music, moody food\nOf us that trade in love.\n\nAttendants:\nThe music, ho!\n\nCLEOPATRA:\nLet it alone; let's to billiards: come, Charmian.\n\nCHARMIAN:\nMy arm is sore; best play with Mardian.\n\nCLEOPATRA:\nAs well a woman with an eunuch play'd\nAs with a woman. Come, you'll play with me, sir?\n\nMARDIAN:\nAs well as I can, madam.\n\nCLEOPATRA:\nAnd when good will is show'd, though't come\ntoo short,\nThe actor may plead pardon. I'll none now:\nGive me mine angle; we'll to the river: there,\nMy music playing far off, I will betray\nTawny-finn'd fishes; my bended hook shall pierce\nTheir slimy jaws; and, as I draw them up,\nI'll think them every one an Antony,\nAnd say 'Ah, ha! you're caught.'\n\nCHARMIAN:\n'Twas merry when\nYou wager'd on your angling; when your diver\nDid hang a salt-fish on his hook, which he\nWith fervency drew up.\n\nCLEOPATRA:\nThat time,--O times!--\nI laugh'd him out of patience; and that night\nI laugh'd him into patience; and next morn,\nEre the ninth hour, I drunk him to his bed;\nThen put my tires and mantles on him, whilst\nI wore his sword Philippan.\nO, from Italy\nRam thou thy fruitful tidings in mine ears,\nThat long time have been barren.\n\nMessenger:\nMadam, madam,--\n\nCLEOPATRA:\nAntonius dead!--If thou say so, villain,\nThou kill'st thy mistress: but well and free,\nIf thou so yield him, there is gold, and here\nMy bluest veins to kiss; a hand that kings\nHave lipp'd, and trembled kissing.\n\nMessenger:\nFirst, madam, he is well.\n\nCLEOPATRA:\nWhy, there's more gold.\nBut, sirrah, mark, we use\nTo say the dead are well: bring it to that,\nThe gold I give thee will I melt and pour\nDown thy ill-uttering throat.\n\nMessenger:\nGood madam, hear me.\n\nCLEOPATRA:\nWell, go to, I will;\nBut there's no goodness in thy face: if Antony\nBe free and healthful,--so tart a favour\nTo trumpet such good tidings! If not well,\nThou shouldst come like a Fury crown'd with snakes,\nNot like a formal man.\n\nMessenger:\nWill't please you hear me?\n\nCLEOPATRA:\nI have a mind to strike thee ere thou speak'st:\nYet if thou say Antony lives, is well,\nOr friends with Caesar, or not captive to him,\nI'll set thee in a shower of gold, and hail\nRich pearls upon thee.\n\nMessenger:\nMadam, he's well.\n\nCLEOPATRA:\nWell said.\n\nMessenger:\nAnd friends with Caesar.\n\nCLEOPATRA:\nThou'rt an honest man.\n\nMessenger:\nCaesar and he are greater friends than ever.\n\nCLEOPATRA:\nMake thee a fortune from me.\n\nMessenger:\nBut yet, madam,--\n\nCLEOPATRA:\nI do not like 'But yet,' it does allay\nThe good precedence; fie upon 'But yet'!\n'But yet' is as a gaoler to bring forth\nSome monstrous malefactor. Prithee, friend,\nPour out the pack of matter to mine ear,\nThe good and bad together: he's friends with Caesar:\nIn state of health thou say'st; and thou say'st free.\n\nMessenger:\nFree, madam! no; I made no such report:\nHe's bound unto Octavia.\n\nCLEOPATRA:\nFor what good turn?\n\nMessenger:\nFor the best turn i' the bed.\n\nCLEOPATRA:\nI am pale, Charmian.\n\nMessenger:\nMadam, he's married to Octavia.\n\nCLEOPATRA:\nThe most infectious pestilence upon thee!\n\nMessenger:\nGood madam, patience.\n\nCLEOPATRA:\nWhat say you? Hence,\nHorrible villain! or I'll spurn thine eyes\nLike balls before me; I'll unhair thy head:\nThou shalt be whipp'd with wire, and stew'd in brine,\nSmarting in lingering pickle.\n\nMessenger:\nGracious madam,\nI that do bring the news made not the match.\n\nCLEOPATRA:\nSay 'tis not so, a province I will give thee,\nAnd make thy fortunes proud: the blow thou hadst\nShall make thy peace for moving me to rage;\nAnd I will boot thee with what gift beside\nThy modesty can beg.\n\nMessenger:\nHe's married, madam.\n\nCLEOPATRA:\nRogue, thou hast lived too long.\n\nMessenger:\nNay, then I'll run.\nWhat mean you, madam? I have made no fault.\n\nCHARMIAN:\nGood madam, keep yourself within yourself:\nThe man is innocent.\n\nCLEOPATRA:\nSome innocents 'scape not the thunderbolt.\nMelt Egypt into Nile! and kindly creatures\nTurn all to serpents! Call the slave again:\nThough I am mad, I will not bite him: call.\n\nCHARMIAN:\nHe is afeard to come.\n\nCLEOPATRA:\nI will not hurt him.\nThese hands do lack nobility, that they strike\nA meaner than myself; since I myself\nHave given myself the cause.\nCome hither, sir.\nThough it be honest, it is never good\nTo bring bad news: give to a gracious message.\nAn host of tongues; but let ill tidings tell\nThemselves when they be felt.\n\nMessenger:\nI have done my duty.\n\nCLEOPATRA:\nIs he married?\nI cannot hate thee worser than I do,\nIf thou again say 'Yes.'\n\nMessenger:\nHe's married, madam.\n\nCLEOPATRA:\nThe gods confound thee! dost thou hold there still?\n\nMessenger:\nShould I lie, madam?\n\nCLEOPATRA:\nO, I would thou didst,\nSo half my Egypt were submerged and made\nA cistern for scaled snakes! Go, get thee hence:\nHadst thou Narcissus in thy face, to me\nThou wouldst appear most ugly. He is married?\n\nMessenger:\nI crave your highness' pardon.\n\nCLEOPATRA:\nHe is married?\n\nMessenger:\nTake no offence that I would not offend you:\nTo punish me for what you make me do.\nSeems much unequal: he's married to Octavia.\n\nCLEOPATRA:\nO, that his fault should make a knave of thee,\nThat art not what thou'rt sure of! Get thee hence:\nThe merchandise which thou hast brought from Rome\nAre all too dear for me: lie they upon thy hand,\nAnd be undone by 'em!\n\nCHARMIAN:\nGood your highness, patience.\n\nCLEOPATRA:\nIn praising Antony, I have dispraised Caesar.\n\nCHARMIAN:\nMany times, madam.\n\nCLEOPATRA:\nI am paid for't now.\nLead me from hence:\nI faint: O Iras, Charmian! 'tis no matter.\nGo to the fellow, good Alexas; bid him\nReport the feature of Octavia, her years,\nHer inclination, let him not leave out\nThe colour of her hair: bring me word quickly.\nLet him for ever go:--let him not--Charmian,\nThough he be painted one way like a Gorgon,\nThe other way's a Mars. Bid you Alexas\nBring me word how tall she is. Pity me, Charmian,\nBut do not speak to me. Lead me to my chamber.\n\nPOMPEY:\nYour hostages I have, so have you mine;\nAnd we shall talk before we fight.\n\nOCTAVIUS CAESAR:\nMost meet\nThat first we come to words; and therefore have we\nOur written purposes before us sent;\nWhich, if thou hast consider'd, let us know\nIf 'twill tie up thy discontented sword,\nAnd carry back to Sicily much tall youth\nThat else must perish here.\n\nPOMPEY:\nTo you all three,\nThe senators alone of this great world,\nChief factors for the gods, I do not know\nWherefore my father should revengers want,\nHaving a son and friends; since Julius Caesar,\nWho at Philippi the good Brutus ghosted,\nThere saw you labouring for him. What was't\nThat moved pale Cassius to conspire; and what\nMade the all-honour'd, honest Roman, Brutus,\nWith the arm'd rest, courtiers and beauteous freedom,\nTo drench the Capitol; but that they would\nHave one man but a man? And that is it\nHath made me rig my navy; at whose burthen\nThe anger'd ocean foams; with which I meant\nTo scourge the ingratitude that despiteful Rome\nCast on my noble father.\n\nOCTAVIUS CAESAR:\nTake your time.\n\nMARK ANTONY:\nThou canst not fear us, Pompey, with thy sails;\nWe'll speak with thee at sea: at land, thou know'st\nHow much we do o'er-count thee.\n\nPOMPEY:\nAt land, indeed,\nThou dost o'er-count me of my father's house:\nBut, since the cuckoo builds not for himself,\nRemain in't as thou mayst.\n\nLEPIDUS:\nBe pleased to tell us--\nFor this is from the present--how you take\nThe offers we have sent you.\n\nOCTAVIUS CAESAR:\nThere's the point.\n\nMARK ANTONY:\nWhich do not be entreated to, but weigh\nWhat it is worth embraced.\n\nOCTAVIUS CAESAR:\nAnd what may follow,\nTo try a larger fortune.\n\nPOMPEY:\nYou have made me offer\nOf Sicily, Sardinia; and I must\nRid all the sea of pirates; then, to send\nMeasures of wheat to Rome; this 'greed upon\nTo part with unhack'd edges, and bear back\nOur targes undinted.\n\nOCTAVIUS CAESAR:\nThat's our offer.\n\nPOMPEY:\nKnow, then,\nI came before you here a man prepared\nTo take this offer: but Mark Antony\nPut me to some impatience: though I lose\nThe praise of it by telling, you must know,\nWhen Caesar and your brother were at blows,\nYour mother came to Sicily and did find\nHer welcome friendly.\n\nMARK ANTONY:\nI have heard it, Pompey;\nAnd am well studied for a liberal thanks\nWhich I do owe you.\n\nPOMPEY:\nLet me have your hand:\nI did not think, sir, to have met you here.\n\nMARK ANTONY:\nThe beds i' the east are soft; and thanks to you,\nThat call'd me timelier than my purpose hither;\nFor I have gain'd by 't.\n\nOCTAVIUS CAESAR:\nSince I saw you last,\nThere is a change upon you.\n\nPOMPEY:\nWell, I know not\nWhat counts harsh fortune casts upon my face;\nBut in my bosom shall she never come,\nTo make my heart her vassal.\n\nLEPIDUS:\nWell met here.\n\nPOMPEY:\nI hope so, Lepidus. Thus we are agreed:\nI crave our composition may be written,\nAnd seal'd between us.\n\nOCTAVIUS CAESAR:\nThat's the next to do.\n\nPOMPEY:\nWe'll feast each other ere we part; and let's\nDraw lots who shall begin.\n\nMARK ANTONY:\nThat will I, Pompey.\n\nPOMPEY:\nNo, Antony, take the lot: but, first\nOr last, your fine Egyptian cookery\nShall have the fame. I have heard that Julius Caesar\nGrew fat with feasting there.\n\nMARK ANTONY:\nYou have heard much.\n\nPOMPEY:\nI have fair meanings, sir.\n\nMARK ANTONY:\nAnd fair words to them.\n\nPOMPEY:\nThen so much have I heard:\nAnd I have heard, Apollodorus carried--\n\nDOMITIUS ENOBARBUS:\nNo more of that: he did so.\n\nPOMPEY:\nWhat, I pray you?\n\nDOMITIUS ENOBARBUS:\nA certain queen to Caesar in a mattress.\n\nPOMPEY:\nI know thee now: how farest thou, soldier?\n\nDOMITIUS ENOBARBUS:\nWell;\nAnd well am like to do; for, I perceive,\nFour feasts are toward.\n\nPOMPEY:\nLet me shake thy hand;\nI never hated thee: I have seen thee fight,\nWhen I have envied thy behavior.\n\nDOMITIUS ENOBARBUS:\nSir,\nI never loved you much; but I ha' praised ye,\nWhen you have well deserved ten times as much\nAs I have said you did.\n\nPOMPEY:\nEnjoy thy plainness,\nIt nothing ill becomes thee.\nAboard my galley I invite you all:\nWill you lead, lords?\n\nOCTAVIUS CAESAR:\nShow us the way, sir.\n\nPOMPEY:\nCome.\n\nMENAS:\n\nDOMITIUS ENOBARBUS:\nAt sea, I think.\n\nMENAS:\nWe have, sir.\n\nDOMITIUS ENOBARBUS:\nYou have done well by water.\n\nMENAS:\nAnd you by land.\n\nDOMITIUS ENOBARBUS:\nI will praise any man that will praise me; though it\ncannot be denied what I have done by land.\n\nMENAS:\nNor what I have done by water.\n\nDOMITIUS ENOBARBUS:\nYes, something you can deny for your own\nsafety: you have been a great thief by sea.\n\nMENAS:\nAnd you by land.\n\nDOMITIUS ENOBARBUS:\nThere I deny my land service. But give me your\nhand, Menas: if our eyes had authority, here they\nmight take two thieves kissing.\n\nMENAS:\nAll men's faces are true, whatsome'er their hands are.\n\nDOMITIUS ENOBARBUS:\nBut there is never a fair woman has a true face.\n\nMENAS:\nNo slander; they steal hearts.\n\nDOMITIUS ENOBARBUS:\nWe came hither to fight with you.\n\nMENAS:\nFor my part, I am sorry it is turned to a drinking.\nPompey doth this day laugh away his fortune.\n\nDOMITIUS ENOBARBUS:\nIf he do, sure, he cannot weep't back again.\n\nMENAS:\nYou've said, sir. We looked not for Mark Antony\nhere: pray you, is he married to Cleopatra?\n\nDOMITIUS ENOBARBUS:\nCaesar's sister is called Octavia.\n\nMENAS:\nTrue, sir; she was the wife of Caius Marcellus.\n\nDOMITIUS ENOBARBUS:\nBut she is now the wife of Marcus Antonius.\n\nMENAS:\nPray ye, sir?\n\nDOMITIUS ENOBARBUS:\n'Tis true.\n\nMENAS:\nThen is Caesar and he for ever knit together.\n\nDOMITIUS ENOBARBUS:\nIf I were bound to divine of this unity, I would\nnot prophesy so.\n\nMENAS:\nI think the policy of that purpose made more in the\nmarriage than the love of the parties.\n\nDOMITIUS ENOBARBUS:\nI think so too. But you shall find, the band that\nseems to tie their friendship together will be the\nvery strangler of their amity: Octavia is of a\nholy, cold, and still conversation.\n\nMENAS:\nWho would not have his wife so?\n\nDOMITIUS ENOBARBUS:\nNot he that himself is not so; which is Mark Antony.\nHe will to his Egyptian dish again: then shall the\nsighs of Octavia blow the fire up in Caesar; and, as\nI said before, that which is the strength of their\namity shall prove the immediate author of their\nvariance. Antony will use his affection where it is:\nhe married but his occasion here.\n\nMENAS:\nAnd thus it may be. Come, sir, will you aboard?\nI have a health for you.\n\nDOMITIUS ENOBARBUS:\nI shall take it, sir: we have used our throats in Egypt.\n\nMENAS:\nCome, let's away.\n\nFirst Servant:\nHere they'll be, man. Some o' their plants are\nill-rooted already: the least wind i' the world\nwill blow them down.\n\nSecond Servant:\nLepidus is high-coloured.\n\nFirst Servant:\nThey have made him drink alms-drink.\n\nSecond Servant:\nAs they pinch one another by the disposition, he\ncries out 'No more;' reconciles them to his\nentreaty, and himself to the drink.\n\nFirst Servant:\nBut it raises the greater war between him and\nhis discretion.\n\nSecond Servant:\nWhy, this is to have a name in great men's\nfellowship: I had as lief have a reed that will do\nme no service as a partisan I could not heave.\n\nFirst Servant:\nTo be called into a huge sphere, and not to be seen\nto move in't, are the holes where eyes should be,\nwhich pitifully disaster the cheeks.\n\nMARK ANTONY:\n\nLEPIDUS:\nYou've strange serpents there.\n\nMARK ANTONY:\nAy, Lepidus.\n\nLEPIDUS:\nYour serpent of Egypt is bred now of your mud by the\noperation of your sun: so is your crocodile.\n\nMARK ANTONY:\nThey are so.\n\nPOMPEY:\nSit,--and some wine! A health to Lepidus!\n\nLEPIDUS:\nI am not so well as I should be, but I'll ne'er out.\n\nDOMITIUS ENOBARBUS:\nNot till you have slept; I fear me you'll be in till then.\n\nLEPIDUS:\nNay, certainly, I have heard the Ptolemies'\npyramises are very goodly things; without\ncontradiction, I have heard that.\n\nMENAS:\n\nPOMPEY:\n\nMENAS:\n\nPOMPEY:\n\nLEPIDUS:\nWhat manner o' thing is your crocodile?\n\nMARK ANTONY:\nIt is shaped, sir, like itself; and it is as broad\nas it hath breadth: it is just so high as it is,\nand moves with its own organs: it lives by that\nwhich nourisheth it; and the elements once out of\nit, it transmigrates.\n\nLEPIDUS:\nWhat colour is it of?\n\nMARK ANTONY:\nOf it own colour too.\n\nLEPIDUS:\n'Tis a strange serpent.\n\nMARK ANTONY:\n'Tis so. And the tears of it are wet.\n\nOCTAVIUS CAESAR:\nWill this description satisfy him?\n\nMARK ANTONY:\nWith the health that Pompey gives him, else he is a\nvery epicure.\n\nPOMPEY:\n\nMENAS:\n\nPOMPEY:\n\nMENAS:\nI have ever held my cap off to thy fortunes.\n\nPOMPEY:\nThou hast served me with much faith. What's else to say?\nBe jolly, lords.\n\nMARK ANTONY:\nThese quick-sands, Lepidus,\nKeep off them, for you sink.\n\nMENAS:\nWilt thou be lord of all the world?\n\nPOMPEY:\nWhat say'st thou?\n\nMENAS:\nWilt thou be lord of the whole world? That's twice.\n\nPOMPEY:\nHow should that be?\n\nMENAS:\nBut entertain it,\nAnd, though thou think me poor, I am the man\nWill give thee all the world.\n\nPOMPEY:\nHast thou drunk well?\n\nMENAS:\nNow, Pompey, I have kept me from the cup.\nThou art, if thou darest be, the earthly Jove:\nWhate'er the ocean pales, or sky inclips,\nIs thine, if thou wilt ha't.\n\nPOMPEY:\nShow me which way.\n\nMENAS:\nThese three world-sharers, these competitors,\nAre in thy vessel: let me cut the cable;\nAnd, when we are put off, fall to their throats:\nAll there is thine.\n\nPOMPEY:\nAh, this thou shouldst have done,\nAnd not have spoke on't! In me 'tis villany;\nIn thee't had been good service. Thou must know,\n'Tis not my profit that does lead mine honour;\nMine honour, it. Repent that e'er thy tongue\nHath so betray'd thine act: being done unknown,\nI should have found it afterwards well done;\nBut must condemn it now. Desist, and drink.\n\nMENAS:\n\nPOMPEY:\nThis health to Lepidus!\n\nMARK ANTONY:\nBear him ashore. I'll pledge it for him, Pompey.\n\nDOMITIUS ENOBARBUS:\nHere's to thee, Menas!\n\nMENAS:\nEnobarbus, welcome!\n\nPOMPEY:\nFill till the cup be hid.\n\nDOMITIUS ENOBARBUS:\nThere's a strong fellow, Menas.\n\nMENAS:\nWhy?\n\nDOMITIUS ENOBARBUS:\nA' bears the third part of the world, man; see'st\nnot?\n\nMENAS:\nThe third part, then, is drunk: would it were all,\nThat it might go on wheels!\n\nDOMITIUS ENOBARBUS:\nDrink thou; increase the reels.\n\nMENAS:\nCome.\n\nPOMPEY:\nThis is not yet an Alexandrian feast.\n\nMARK ANTONY:\nIt ripens towards it. Strike the vessels, ho?\nHere is to Caesar!\n\nOCTAVIUS CAESAR:\nI could well forbear't.\nIt's monstrous labour, when I wash my brain,\nAnd it grows fouler.\n\nMARK ANTONY:\nBe a child o' the time.\n\nOCTAVIUS CAESAR:\nPossess it, I'll make answer:\nBut I had rather fast from all four days\nThan drink so much in one.\n\nDOMITIUS ENOBARBUS:\nHa, my brave emperor!\nShall we dance now the Egyptian Bacchanals,\nAnd celebrate our drink?\n\nPOMPEY:\nLet's ha't, good soldier.\n\nMARK ANTONY:\nCome, let's all take hands,\nTill that the conquering wine hath steep'd our sense\nIn soft and delicate Lethe.\n\nDOMITIUS ENOBARBUS:\nAll take hands.\nMake battery to our ears with the loud music:\nThe while I'll place you: then the boy shall sing;\nThe holding every man shall bear as loud\nAs his strong sides can volley.\nCome, thou monarch of the vine,\nPlumpy Bacchus with pink eyne!\nIn thy fats our cares be drown'd,\nWith thy grapes our hairs be crown'd:\nCup us, till the world go round,\nCup us, till the world go round!\n\nOCTAVIUS CAESAR:\nWhat would you more? Pompey, good night. Good brother,\nLet me request you off: our graver business\nFrowns at this levity. Gentle lords, let's part;\nYou see we have burnt our cheeks: strong Enobarb\nIs weaker than the wine; and mine own tongue\nSplits what it speaks: the wild disguise hath almost\nAntick'd us all. What needs more words? Good night.\nGood Antony, your hand.\n\nPOMPEY:\nI'll try you on the shore.\n\nMARK ANTONY:\nAnd shall, sir; give's your hand.\n\nPOMPEY:\nO Antony,\nYou have my father's house,--But, what? we are friends.\nCome, down into the boat.\n\nDOMITIUS ENOBARBUS:\nTake heed you fall not.\nMenas, I'll not on shore.\n\nMENAS:\nNo, to my cabin.\nThese drums! these trumpets, flutes! what!\nLet Neptune hear we bid a loud farewell\nTo these great fellows: sound and be hang'd, sound out!\n\nDOMITIUS ENOBARBUS:\nHo! says a' There's my cap.\n\nMENAS:\nHo! Noble captain, come.\n\nVENTIDIUS:\nNow, darting Parthia, art thou struck; and now\nPleased fortune does of Marcus Crassus' death\nMake me revenger. Bear the king's son's body\nBefore our army. Thy Pacorus, Orodes,\nPays this for Marcus Crassus.\n\nSILIUS:\nNoble Ventidius,\nWhilst yet with Parthian blood thy sword is warm,\nThe fugitive Parthians follow; spur through Media,\nMesopotamia, and the shelters whither\nThe routed fly: so thy grand captain Antony\nShall set thee on triumphant chariots and\nPut garlands on thy head.\n\nVENTIDIUS:\nO Silius, Silius,\nI have done enough; a lower place, note well,\nMay make too great an act: for learn this, Silius;\nBetter to leave undone, than by our deed\nAcquire too high a fame when him we serve's away.\nCaesar and Antony have ever won\nMore in their officer than person: Sossius,\nOne of my place in Syria, his lieutenant,\nFor quick accumulation of renown,\nWhich he achieved by the minute, lost his favour.\nWho does i' the wars more than his captain can\nBecomes his captain's captain: and ambition,\nThe soldier's virtue, rather makes choice of loss,\nThan gain which darkens him.\nI could do more to do Antonius good,\nBut 'twould offend him; and in his offence\nShould my performance perish.\n\nSILIUS:\nThou hast, Ventidius,\nthat\nWithout the which a soldier, and his sword,\nGrants scarce distinction. Thou wilt write to Antony!\n\nVENTIDIUS:\nI'll humbly signify what in his name,\nThat magical word of war, we have effected;\nHow, with his banners and his well-paid ranks,\nThe ne'er-yet-beaten horse of Parthia\nWe have jaded out o' the field.\n\nSILIUS:\nWhere is he now?\n\nVENTIDIUS:\nHe purposeth to Athens: whither, with what haste\nThe weight we must convey with's will permit,\nWe shall appear before him. On there; pass along!\n\nAGRIPPA:\nWhat, are the brothers parted?\n\nDOMITIUS ENOBARBUS:\nThey have dispatch'd with Pompey, he is gone;\nThe other three are sealing. Octavia weeps\nTo part from Rome; Caesar is sad; and Lepidus,\nSince Pompey's feast, as Menas says, is troubled\nWith the green sickness.\n\nAGRIPPA:\n'Tis a noble Lepidus.\n\nDOMITIUS ENOBARBUS:\nA very fine one: O, how he loves Caesar!\n\nAGRIPPA:\nNay, but how dearly he adores Mark Antony!\n\nDOMITIUS ENOBARBUS:\nCaesar? Why, he's the Jupiter of men.\n\nAGRIPPA:\nWhat's Antony? The god of Jupiter.\n\nDOMITIUS ENOBARBUS:\nSpake you of Caesar? How! the non-pareil!\n\nAGRIPPA:\nO Antony! O thou Arabian bird!\n\nDOMITIUS ENOBARBUS:\nWould you praise Caesar, say 'Caesar:' go no further.\n\nAGRIPPA:\nIndeed, he plied them both with excellent praises.\n\nDOMITIUS ENOBARBUS:\nBut he loves Caesar best; yet he loves Antony:\nHo! hearts, tongues, figures, scribes, bards,\npoets, cannot\nThink, speak, cast, write, sing, number, ho!\nHis love to Antony. But as for Caesar,\nKneel down, kneel down, and wonder.\n\nAGRIPPA:\nBoth he loves.\n\nDOMITIUS ENOBARBUS:\nThey are his shards, and he their beetle.\nSo;\nThis is to horse. Adieu, noble Agrippa.\n\nAGRIPPA:\nGood fortune, worthy soldier; and farewell.\n\nMARK ANTONY:\nNo further, sir.\n\nOCTAVIUS CAESAR:\nYou take from me a great part of myself;\nUse me well in 't. Sister, prove such a wife\nAs my thoughts make thee, and as my farthest band\nShall pass on thy approof. Most noble Antony,\nLet not the piece of virtue, which is set\nBetwixt us as the cement of our love,\nTo keep it builded, be the ram to batter\nThe fortress of it; for better might we\nHave loved without this mean, if on both parts\nThis be not cherish'd.\n\nMARK ANTONY:\nMake me not offended\nIn your distrust.\n\nOCTAVIUS CAESAR:\nI have said.\n\nMARK ANTONY:\nYou shall not find,\nThough you be therein curious, the least cause\nFor what you seem to fear: so, the gods keep you,\nAnd make the hearts of Romans serve your ends!\nWe will here part.\n\nOCTAVIUS CAESAR:\nFarewell, my dearest sister, fare thee well:\nThe elements be kind to thee, and make\nThy spirits all of comfort! fare thee well.\n\nOCTAVIA:\nMy noble brother!\n\nMARK ANTONY:\nThe April 's in her eyes: it is love's spring,\nAnd these the showers to bring it on. Be cheerful.\n\nOCTAVIA:\nSir, look well to my husband's house; and--\n\nOCTAVIUS CAESAR:\nWhat, Octavia?\n\nOCTAVIA:\nI'll tell you in your ear.\n\nMARK ANTONY:\nHer tongue will not obey her heart, nor can\nHer heart inform her tongue,--the swan's\ndown-feather,\nThat stands upon the swell at full of tide,\nAnd neither way inclines.\n\nDOMITIUS ENOBARBUS:\n\nAGRIPPA:\n\nDOMITIUS ENOBARBUS:\n\nAGRIPPA:\n\nDOMITIUS ENOBARBUS:\n\nOCTAVIUS CAESAR:\nNo, sweet Octavia,\nYou shall hear from me still; the time shall not\nOut-go my thinking on you.\n\nMARK ANTONY:\nCome, sir, come;\nI'll wrestle with you in my strength of love:\nLook, here I have you; thus I let you go,\nAnd give you to the gods.\n\nOCTAVIUS CAESAR:\nAdieu; be happy!\n\nLEPIDUS:\nLet all the number of the stars give light\nTo thy fair way!\n\nOCTAVIUS CAESAR:\nFarewell, farewell!\n\nMARK ANTONY:\nFarewell!\n\nCLEOPATRA:\nWhere is the fellow?\n\nALEXAS:\nHalf afeard to come.\n\nCLEOPATRA:\nGo to, go to.\nCome hither, sir.\n\nALEXAS:\nGood majesty,\nHerod of Jewry dare not look upon you\nBut when you are well pleased.\n\nCLEOPATRA:\nThat Herod's head\nI'll have: but how, when Antony is gone\nThrough whom I might command it? Come thou near.\n\nMessenger:\nMost gracious majesty,--\n\nCLEOPATRA:\nDidst thou behold Octavia?\n\nMessenger:\nAy, dread queen.\n\nCLEOPATRA:\nWhere?\n\nMessenger:\nMadam, in Rome;\nI look'd her in the face, and saw her led\nBetween her brother and Mark Antony.\n\nCLEOPATRA:\nIs she as tall as me?\n\nMessenger:\nShe is not, madam.\n\nCLEOPATRA:\nDidst hear her speak? is she shrill-tongued or low?\n\nMessenger:\nMadam, I heard her speak; she is low-voiced.\n\nCLEOPATRA:\nThat's not so good: he cannot like her long.\n\nCHARMIAN:\nLike her! O Isis! 'tis impossible.\n\nCLEOPATRA:\nI think so, Charmian: dull of tongue, and dwarfish!\nWhat majesty is in her gait? Remember,\nIf e'er thou look'dst on majesty.\n\nMessenger:\nShe creeps:\nHer motion and her station are as one;\nShe shows a body rather than a life,\nA statue than a breather.\n\nCLEOPATRA:\nIs this certain?\n\nMessenger:\nOr I have no observance.\n\nCHARMIAN:\nThree in Egypt\nCannot make better note.\n\nCLEOPATRA:\nHe's very knowing;\nI do perceive't: there's nothing in her yet:\nThe fellow has good judgment.\n\nCHARMIAN:\nExcellent.\n\nCLEOPATRA:\nGuess at her years, I prithee.\n\nMessenger:\nMadam,\nShe was a widow,--\n\nCLEOPATRA:\nWidow! Charmian, hark.\n\nMessenger:\nAnd I do think she's thirty.\n\nCLEOPATRA:\nBear'st thou her face in mind? is't long or round?\n\nMessenger:\nRound even to faultiness.\n\nCLEOPATRA:\nFor the most part, too, they are foolish that are so.\nHer hair, what colour?\n\nMessenger:\nBrown, madam: and her forehead\nAs low as she would wish it.\n\nCLEOPATRA:\nThere's gold for thee.\nThou must not take my former sharpness ill:\nI will employ thee back again; I find thee\nMost fit for business: go make thee ready;\nOur letters are prepared.\n\nCHARMIAN:\nA proper man.\n\nCLEOPATRA:\nIndeed, he is so: I repent me much\nThat so I harried him. Why, methinks, by him,\nThis creature's no such thing.\n\nCHARMIAN:\nNothing, madam.\n\nCLEOPATRA:\nThe man hath seen some majesty, and should know.\n\nCHARMIAN:\nHath he seen majesty? Isis else defend,\nAnd serving you so long!\n\nCLEOPATRA:\nI have one thing more to ask him yet, good Charmian:\nBut 'tis no matter; thou shalt bring him to me\nWhere I will write. All may be well enough.\n\nCHARMIAN:\nI warrant you, madam.\n\nMARK ANTONY:\nNay, nay, Octavia, not only that,--\nThat were excusable, that, and thousands more\nOf semblable import,--but he hath waged\nNew wars 'gainst Pompey; made his will, and read it\nTo public ear:\nSpoke scantly of me: when perforce he could not\nBut pay me terms of honour, cold and sickly\nHe vented them; most narrow measure lent me:\nWhen the best hint was given him, he not took't,\nOr did it from his teeth.\n\nOCTAVIA:\nO my good lord,\nBelieve not all; or, if you must believe,\nStomach not all. A more unhappy lady,\nIf this division chance, ne'er stood between,\nPraying for both parts:\nThe good gods me presently,\nWhen I shall pray, 'O bless my lord and husband!'\nUndo that prayer, by crying out as loud,\n'O, bless my brother!' Husband win, win brother,\nPrays, and destroys the prayer; no midway\n'Twixt these extremes at all.\n\nMARK ANTONY:\nGentle Octavia,\nLet your best love draw to that point, which seeks\nBest to preserve it: if I lose mine honour,\nI lose myself: better I were not yours\nThan yours so branchless. But, as you requested,\nYourself shall go between 's: the mean time, lady,\nI'll raise the preparation of a war\nShall stain your brother: make your soonest haste;\nSo your desires are yours.\n\nOCTAVIA:\nThanks to my lord.\nThe Jove of power make me most weak, most weak,\nYour reconciler! Wars 'twixt you twain would be\nAs if the world should cleave, and that slain men\nShould solder up the rift.\n\nMARK ANTONY:\nWhen it appears to you where this begins,\nTurn your displeasure that way: for our faults\nCan never be so equal, that your love\nCan equally move with them. Provide your going;\nChoose your own company, and command what cost\nYour heart has mind to.\n\nDOMITIUS ENOBARBUS:\nHow now, friend Eros!\n\nEROS:\nThere's strange news come, sir.\n\nDOMITIUS ENOBARBUS:\nWhat, man?\n\nEROS:\nCaesar and Lepidus have made wars upon Pompey.\n\nDOMITIUS ENOBARBUS:\nThis is old: what is the success?\n\nEROS:\nCaesar, having made use of him in the wars 'gainst\nPompey, presently denied him rivality; would not let\nhim partake in the glory of the action: and not\nresting here, accuses him of letters he had formerly\nwrote to Pompey; upon his own appeal, seizes him: so\nthe poor third is up, till death enlarge his confine.\n\nDOMITIUS ENOBARBUS:\nThen, world, thou hast a pair of chaps, no more;\nAnd throw between them all the food thou hast,\nThey'll grind the one the other. Where's Antony?\n\nEROS:\nHe's walking in the garden--thus; and spurns\nThe rush that lies before him; cries, 'Fool Lepidus!'\nAnd threats the throat of that his officer\nThat murder'd Pompey.\n\nDOMITIUS ENOBARBUS:\nOur great navy's rigg'd.\n\nEROS:\nFor Italy and Caesar. More, Domitius;\nMy lord desires you presently: my news\nI might have told hereafter.\n\nDOMITIUS ENOBARBUS:\n'Twill be naught:\nBut let it be. Bring me to Antony.\n\nEROS:\nCome, sir.\n\nOCTAVIUS CAESAR:\nContemning Rome, he has done all this, and more,\nIn Alexandria: here's the manner of 't:\nI' the market-place, on a tribunal silver'd,\nCleopatra and himself in chairs of gold\nWere publicly enthroned: at the feet sat\nCaesarion, whom they call my father's son,\nAnd all the unlawful issue that their lust\nSince then hath made between them. Unto her\nHe gave the stablishment of Egypt; made her\nOf lower Syria, Cyprus, Lydia,\nAbsolute queen.\n\nMECAENAS:\nThis in the public eye?\n\nOCTAVIUS CAESAR:\nI' the common show-place, where they exercise.\nHis sons he there proclaim'd the kings of kings:\nGreat Media, Parthia, and Armenia.\nHe gave to Alexander; to Ptolemy he assign'd\nSyria, Cilicia, and Phoenicia: she\nIn the habiliments of the goddess Isis\nThat day appear'd; and oft before gave audience,\nAs 'tis reported, so.\n\nMECAENAS:\nLet Rome be thus Inform'd.\n\nAGRIPPA:\nWho, queasy with his insolence\nAlready, will their good thoughts call from him.\n\nOCTAVIUS CAESAR:\nThe people know it; and have now received\nHis accusations.\n\nAGRIPPA:\nWho does he accuse?\n\nOCTAVIUS CAESAR:\nCaesar: and that, having in Sicily\nSextus Pompeius spoil'd, we had not rated him\nHis part o' the isle: then does he say, he lent me\nSome shipping unrestored: lastly, he frets\nThat Lepidus of the triumvirate\nShould be deposed; and, being, that we detain\nAll his revenue.\n\nAGRIPPA:\nSir, this should be answer'd.\n\nOCTAVIUS CAESAR:\n'Tis done already, and the messenger gone.\nI have told him, Lepidus was grown too cruel;\nThat he his high authority abused,\nAnd did deserve his change: for what I have conquer'd,\nI grant him part; but then, in his Armenia,\nAnd other of his conquer'd kingdoms, I\nDemand the like.\n\nMECAENAS:\nHe'll never yield to that.\n\nOCTAVIUS CAESAR:\nNor must not then be yielded to in this.\n\nOCTAVIA:\nHail, Caesar, and my lord! hail, most dear Caesar!\n\nOCTAVIUS CAESAR:\nThat ever I should call thee castaway!\n\nOCTAVIA:\nYou have not call'd me so, nor have you cause.\n\nOCTAVIUS CAESAR:\nWhy have you stol'n upon us thus! You come not\nLike Caesar's sister: the wife of Antony\nShould have an army for an usher, and\nThe neighs of horse to tell of her approach\nLong ere she did appear; the trees by the way\nShould have borne men; and expectation fainted,\nLonging for what it had not; nay, the dust\nShould have ascended to the roof of heaven,\nRaised by your populous troops: but you are come\nA market-maid to Rome; and have prevented\nThe ostentation of our love, which, left unshown,\nIs often left unloved; we should have met you\nBy sea and land; supplying every stage\nWith an augmented greeting.\n\nOCTAVIA:\nGood my lord,\nTo come thus was I not constrain'd, but did\nOn my free will. My lord, Mark Antony,\nHearing that you prepared for war, acquainted\nMy grieved ear withal; whereon, I begg'd\nHis pardon for return.\n\nOCTAVIUS CAESAR:\nWhich soon he granted,\nBeing an obstruct 'tween his lust and him.\n\nOCTAVIA:\nDo not say so, my lord.\n\nOCTAVIUS CAESAR:\nI have eyes upon him,\nAnd his affairs come to me on the wind.\nWhere is he now?\n\nOCTAVIA:\nMy lord, in Athens.\n\nOCTAVIUS CAESAR:\nNo, my most wronged sister; Cleopatra\nHath nodded him to her. He hath given his empire\nUp to a whore; who now are levying\nThe kings o' the earth for war; he hath assembled\nBocchus, the king of Libya; Archelaus,\nOf Cappadocia; Philadelphos, king\nOf Paphlagonia; the Thracian king, Adallas;\nKing Malchus of Arabia; King of Pont;\nHerod of Jewry; Mithridates, king\nOf Comagene; Polemon and Amyntas,\nThe kings of Mede and Lycaonia,\nWith a more larger list of sceptres.\n\nOCTAVIA:\nAy me, most wretched,\nThat have my heart parted betwixt two friends\nThat do afflict each other!\n\nOCTAVIUS CAESAR:\nWelcome hither:\nYour letters did withhold our breaking forth;\nTill we perceived, both how you were wrong led,\nAnd we in negligent danger. Cheer your heart;\nBe you not troubled with the time, which drives\nO'er your content these strong necessities;\nBut let determined things to destiny\nHold unbewail'd their way. Welcome to Rome;\nNothing more dear to me. You are abused\nBeyond the mark of thought: and the high gods,\nTo do you justice, make them ministers\nOf us and those that love you. Best of comfort;\nAnd ever welcome to us.\n\nAGRIPPA:\nWelcome, lady.\n\nMECAENAS:\nWelcome, dear madam.\nEach heart in Rome does love and pity you:\nOnly the adulterous Antony, most large\nIn his abominations, turns you off;\nAnd gives his potent regiment to a trull,\nThat noises it against us.\n\nOCTAVIA:\nIs it so, sir?\n\nOCTAVIUS CAESAR:\nMost certain. Sister, welcome: pray you,\nBe ever known to patience: my dear'st sister!\n\nCLEOPATRA:\nI will be even with thee, doubt it not.\n\nDOMITIUS ENOBARBUS:\nBut why, why, why?\n\nCLEOPATRA:\nThou hast forspoke my being in these wars,\nAnd say'st it is not fit.\n\nDOMITIUS ENOBARBUS:\nWell, is it, is it?\n\nCLEOPATRA:\nIf not denounced against us, why should not we\nBe there in person?\n\nDOMITIUS ENOBARBUS:\n\nCLEOPATRA:\nWhat is't you say?\n\nDOMITIUS ENOBARBUS:\nYour presence needs must puzzle Antony;\nTake from his heart, take from his brain,\nfrom's time,\nWhat should not then be spared. He is already\nTraduced for levity; and 'tis said in Rome\nThat Photinus an eunuch and your maids\nManage this war.\n\nCLEOPATRA:\nSink Rome, and their tongues rot\nThat speak against us! A charge we bear i' the war,\nAnd, as the president of my kingdom, will\nAppear there for a man. Speak not against it:\nI will not stay behind.\n\nDOMITIUS ENOBARBUS:\nNay, I have done.\nHere comes the emperor.\n\nMARK ANTONY:\nIs it not strange, Canidius,\nThat from Tarentum and Brundusium\nHe could so quickly cut the Ionian sea,\nAnd take in Toryne? You have heard on't, sweet?\n\nCLEOPATRA:\nCelerity is never more admired\nThan by the negligent.\n\nMARK ANTONY:\nA good rebuke,\nWhich might have well becomed the best of men,\nTo taunt at slackness. Canidius, we\nWill fight with him by sea.\n\nCLEOPATRA:\nBy sea! what else?\n\nCANIDIUS:\nWhy will my lord do so?\n\nMARK ANTONY:\nFor that he dares us to't.\n\nDOMITIUS ENOBARBUS:\nSo hath my lord dared him to single fight.\n\nCANIDIUS:\nAy, and to wage this battle at Pharsalia.\nWhere Caesar fought with Pompey: but these offers,\nWhich serve not for his vantage, be shakes off;\nAnd so should you.\n\nDOMITIUS ENOBARBUS:\nYour ships are not well mann'd;\nYour mariners are muleters, reapers, people\nIngross'd by swift impress; in Caesar's fleet\nAre those that often have 'gainst Pompey fought:\nTheir ships are yare; yours, heavy: no disgrace\nShall fall you for refusing him at sea,\nBeing prepared for land.\n\nMARK ANTONY:\nBy sea, by sea.\n\nDOMITIUS ENOBARBUS:\nMost worthy sir, you therein throw away\nThe absolute soldiership you have by land;\nDistract your army, which doth most consist\nOf war-mark'd footmen; leave unexecuted\nYour own renowned knowledge; quite forego\nThe way which promises assurance; and\nGive up yourself merely to chance and hazard,\nFrom firm security.\n\nMARK ANTONY:\nI'll fight at sea.\n\nCLEOPATRA:\nI have sixty sails, Caesar none better.\n\nMARK ANTONY:\nOur overplus of shipping will we burn;\nAnd, with the rest full-mann'd, from the head of Actium\nBeat the approaching Caesar. But if we fail,\nWe then can do't at land.\nThy business?\n\nMessenger:\nThe news is true, my lord; he is descried;\nCaesar has taken Toryne.\n\nMARK ANTONY:\nCan he be there in person? 'tis impossible;\nStrange that power should be. Canidius,\nOur nineteen legions thou shalt hold by land,\nAnd our twelve thousand horse. We'll to our ship:\nAway, my Thetis!\nHow now, worthy soldier?\n\nSoldier:\nO noble emperor, do not fight by sea;\nTrust not to rotten planks: do you misdoubt\nThis sword and these my wounds? Let the Egyptians\nAnd the Phoenicians go a-ducking; we\nHave used to conquer, standing on the earth,\nAnd fighting foot to foot.\n\nMARK ANTONY:\nWell, well: away!\n\nSoldier:\nBy Hercules, I think I am i' the right.\n\nCANIDIUS:\nSoldier, thou art: but his whole action grows\nNot in the power on't: so our leader's led,\nAnd we are women's men.\n\nSoldier:\nYou keep by land\nThe legions and the horse whole, do you not?\n\nCANIDIUS:\nMarcus Octavius, Marcus Justeius,\nPublicola, and Caelius, are for sea:\nBut we keep whole by land. This speed of Caesar's\nCarries beyond belief.\n\nSoldier:\nWhile he was yet in Rome,\nHis power went out in such distractions as\nBeguiled all spies.\n\nCANIDIUS:\nWho's his lieutenant, hear you?\n\nSoldier:\nThey say, one Taurus.\n\nCANIDIUS:\nWell I know the man.\n\nMessenger:\nThe emperor calls Canidius.\n\nCANIDIUS:\nWith news the time's with labour, and throes forth,\nEach minute, some.\n\nOCTAVIUS CAESAR:\nTaurus!\n\nTAURUS:\nMy lord?\n\nOCTAVIUS CAESAR:\nStrike not by land; keep whole: provoke not battle,\nTill we have done at sea. Do not exceed\nThe prescript of this scroll: our fortune lies\nUpon this jump.\n\nMARK ANTONY:\nSet we our squadrons on yond side o' the hill,\nIn eye of Caesar's battle; from which place\nWe may the number of the ships behold,\nAnd so proceed accordingly.\n\nDOMITIUS ENOBARBUS:\nNaught, naught all, naught! I can behold no longer:\nThe Antoniad, the Egyptian admiral,\nWith all their sixty, fly and turn the rudder:\nTo see't mine eyes are blasted.\n\nSCARUS:\nGods and goddesses,\nAll the whole synod of them!\n\nDOMITIUS ENOBARBUS:\nWhat's thy passion!\n\nSCARUS:\nThe greater cantle of the world is lost\nWith very ignorance; we have kiss'd away\nKingdoms and provinces.\n\nDOMITIUS ENOBARBUS:\nHow appears the fight?\n\nSCARUS:\nOn our side like the token'd pestilence,\nWhere death is sure. Yon ribaudred nag of Egypt,--\nWhom leprosy o'ertake!--i' the midst o' the fight,\nWhen vantage like a pair of twins appear'd,\nBoth as the same, or rather ours the elder,\nThe breese upon her, like a cow in June,\nHoists sails and flies.\n\nDOMITIUS ENOBARBUS:\nThat I beheld:\nMine eyes did sicken at the sight, and could not\nEndure a further view.\n\nSCARUS:\nShe once being loof'd,\nThe noble ruin of her magic, Antony,\nClaps on his sea-wing, and, like a doting mallard,\nLeaving the fight in height, flies after her:\nI never saw an action of such shame;\nExperience, manhood, honour, ne'er before\nDid violate so itself.\n\nDOMITIUS ENOBARBUS:\nAlack, alack!\n\nCANIDIUS:\nOur fortune on the sea is out of breath,\nAnd sinks most lamentably. Had our general\nBeen what he knew himself, it had gone well:\nO, he has given example for our flight,\nMost grossly, by his own!\n\nDOMITIUS ENOBARBUS:\nAy, are you thereabouts?\nWhy, then, good night indeed.\n\nCANIDIUS:\nToward Peloponnesus are they fled.\n\nSCARUS:\n'Tis easy to't; and there I will attend\nWhat further comes.\n\nCANIDIUS:\nTo Caesar will I render\nMy legions and my horse: six kings already\nShow me the way of yielding.\n\nDOMITIUS ENOBARBUS:\nI'll yet follow\nThe wounded chance of Antony, though my reason\nSits in the wind against me.\n\nMARK ANTONY:\nHark! the land bids me tread no more upon't;\nIt is ashamed to bear me! Friends, come hither:\nI am so lated in the world, that I\nHave lost my way for ever: I have a ship\nLaden with gold; take that, divide it; fly,\nAnd make your peace with Caesar.\n\nAll:\nFly! not we.\n\nMARK ANTONY:\nI have fled myself; and have instructed cowards\nTo run and show their shoulders. Friends, be gone;\nI have myself resolved upon a course\nWhich has no need of you; be gone:\nMy treasure's in the harbour, take it. O,\nI follow'd that I blush to look upon:\nMy very hairs do mutiny; for the white\nReprove the brown for rashness, and they them\nFor fear and doting. Friends, be gone: you shall\nHave letters from me to some friends that will\nSweep your way for you. Pray you, look not sad,\nNor make replies of loathness: take the hint\nWhich my despair proclaims; let that be left\nWhich leaves itself: to the sea-side straightway:\nI will possess you of that ship and treasure.\nLeave me, I pray, a little: pray you now:\nNay, do so; for, indeed, I have lost command,\nTherefore I pray you: I'll see you by and by.\n\nEROS:\nNay, gentle madam, to him, comfort him.\n\nIRAS:\nDo, most dear queen.\n\nCHARMIAN:\nDo! why: what else?\n\nCLEOPATRA:\nLet me sit down. O Juno!\n\nMARK ANTONY:\nNo, no, no, no, no.\n\nEROS:\nSee you here, sir?\n\nMARK ANTONY:\nO fie, fie, fie!\n\nCHARMIAN:\nMadam!\n\nIRAS:\nMadam, O good empress!\n\nEROS:\nSir, sir,--\n\nMARK ANTONY:\nYes, my lord, yes; he at Philippi kept\nHis sword e'en like a dancer; while I struck\nThe lean and wrinkled Cassius; and 'twas I\nThat the mad Brutus ended: he alone\nDealt on lieutenantry, and no practise had\nIn the brave squares of war: yet now--No matter.\n\nCLEOPATRA:\nAh, stand by.\n\nEROS:\nThe queen, my lord, the queen.\n\nIRAS:\nGo to him, madam, speak to him:\nHe is unqualitied with very shame.\n\nCLEOPATRA:\nWell then, sustain him: O!\n\nEROS:\nMost noble sir, arise; the queen approaches:\nHer head's declined, and death will seize her, but\nYour comfort makes the rescue.\n\nMARK ANTONY:\nI have offended reputation,\nA most unnoble swerving.\n\nEROS:\nSir, the queen.\n\nMARK ANTONY:\nO, whither hast thou led me, Egypt? See,\nHow I convey my shame out of thine eyes\nBy looking back what I have left behind\n'Stroy'd in dishonour.\n\nCLEOPATRA:\nO my lord, my lord,\nForgive my fearful sails! I little thought\nYou would have follow'd.\n\nMARK ANTONY:\nEgypt, thou knew'st too well\nMy heart was to thy rudder tied by the strings,\nAnd thou shouldst tow me after: o'er my spirit\nThy full supremacy thou knew'st, and that\nThy beck might from the bidding of the gods\nCommand me.\n\nCLEOPATRA:\nO, my pardon!\n\nMARK ANTONY:\nNow I must\nTo the young man send humble treaties, dodge\nAnd palter in the shifts of lowness; who\nWith half the bulk o' the world play'd as I pleased,\nMaking and marring fortunes. You did know\nHow much you were my conqueror; and that\nMy sword, made weak by my affection, would\nObey it on all cause.\n\nCLEOPATRA:\nPardon, pardon!\n\nMARK ANTONY:\nFall not a tear, I say; one of them rates\nAll that is won and lost: give me a kiss;\nEven this repays me. We sent our schoolmaster;\nIs he come back? Love, I am full of lead.\nSome wine, within there, and our viands! Fortune knows\nWe scorn her most when most she offers blows.\n\nOCTAVIUS CAESAR:\nLet him appear that's come from Antony.\nKnow you him?\n\nDOLABELLA:\nCaesar, 'tis his schoolmaster:\nAn argument that he is pluck'd, when hither\nHe sends so poor a pinion off his wing,\nWhich had superfluous kings for messengers\nNot many moons gone by.\n\nOCTAVIUS CAESAR:\nApproach, and speak.\n\nEUPHRONIUS:\nSuch as I am, I come from Antony:\nI was of late as petty to his ends\nAs is the morn-dew on the myrtle-leaf\nTo his grand sea.\n\nOCTAVIUS CAESAR:\nBe't so: declare thine office.\n\nEUPHRONIUS:\nLord of his fortunes he salutes thee, and\nRequires to live in Egypt: which not granted,\nHe lessens his requests; and to thee sues\nTo let him breathe between the heavens and earth,\nA private man in Athens: this for him.\nNext, Cleopatra does confess thy greatness;\nSubmits her to thy might; and of thee craves\nThe circle of the Ptolemies for her heirs,\nNow hazarded to thy grace.\n\nOCTAVIUS CAESAR:\nFor Antony,\nI have no ears to his request. The queen\nOf audience nor desire shall fail, so she\nFrom Egypt drive her all-disgraced friend,\nOr take his life there: this if she perform,\nShe shall not sue unheard. So to them both.\n\nEUPHRONIUS:\nFortune pursue thee!\n\nOCTAVIUS CAESAR:\nBring him through the bands.\n\nTHYREUS:\nCaesar, I go.\n\nOCTAVIUS CAESAR:\nObserve how Antony becomes his flaw,\nAnd what thou think'st his very action speaks\nIn every power that moves.\n\nTHYREUS:\nCaesar, I shall.\n\nCLEOPATRA:\nWhat shall we do, Enobarbus?\n\nDOMITIUS ENOBARBUS:\nThink, and die.\n\nCLEOPATRA:\nIs Antony or we in fault for this?\n\nDOMITIUS ENOBARBUS:\nAntony only, that would make his will\nLord of his reason. What though you fled\nFrom that great face of war, whose several ranges\nFrighted each other? why should he follow?\nThe itch of his affection should not then\nHave nick'd his captainship; at such a point,\nWhen half to half the world opposed, he being\nThe meered question: 'twas a shame no less\nThan was his loss, to course your flying flags,\nAnd leave his navy gazing.\n\nCLEOPATRA:\nPrithee, peace.\n\nMARK ANTONY:\nIs that his answer?\n\nEUPHRONIUS:\nAy, my lord.\n\nMARK ANTONY:\nThe queen shall then have courtesy, so she\nWill yield us up.\n\nEUPHRONIUS:\nHe says so.\n\nMARK ANTONY:\nLet her know't.\nTo the boy Caesar send this grizzled head,\nAnd he will fill thy wishes to the brim\nWith principalities.\n\nCLEOPATRA:\nThat head, my lord?\n\nMARK ANTONY:\nTo him again: tell him he wears the rose\nOf youth upon him; from which the world should note\nSomething particular: his coin, ships, legions,\nMay be a coward's; whose ministers would prevail\nUnder the service of a child as soon\nAs i' the command of Caesar: I dare him therefore\nTo lay his gay comparisons apart,\nAnd answer me declined, sword against sword,\nOurselves alone. I'll write it: follow me.\n\nDOMITIUS ENOBARBUS:\n\nAttendant:\nA messenger from CAESAR.\n\nCLEOPATRA:\nWhat, no more ceremony? See, my women!\nAgainst the blown rose may they stop their nose\nThat kneel'd unto the buds. Admit him, sir.\n\nDOMITIUS ENOBARBUS:\n\nCLEOPATRA:\nCaesar's will?\n\nTHYREUS:\nHear it apart.\n\nCLEOPATRA:\nNone but friends: say boldly.\n\nTHYREUS:\nSo, haply, are they friends to Antony.\n\nDOMITIUS ENOBARBUS:\nHe needs as many, sir, as Caesar has;\nOr needs not us. If Caesar please, our master\nWill leap to be his friend: for us, you know,\nWhose he is we are, and that is, Caesar's.\n\nTHYREUS:\nSo.\nThus then, thou most renown'd: Caesar entreats,\nNot to consider in what case thou stand'st,\nFurther than he is Caesar.\n\nCLEOPATRA:\nGo on: right royal.\n\nTHYREUS:\nHe knows that you embrace not Antony\nAs you did love, but as you fear'd him.\n\nCLEOPATRA:\nO!\n\nTHYREUS:\nThe scars upon your honour, therefore, he\nDoes pity, as constrained blemishes,\nNot as deserved.\n\nCLEOPATRA:\nHe is a god, and knows\nWhat is most right: mine honour was not yielded,\nBut conquer'd merely.\n\nDOMITIUS ENOBARBUS:\n\nTHYREUS:\nShall I say to Caesar\nWhat you require of him? for he partly begs\nTo be desired to give. It much would please him,\nThat of his fortunes you should make a staff\nTo lean upon: but it would warm his spirits,\nTo hear from me you had left Antony,\nAnd put yourself under his shrowd,\nThe universal landlord.\n\nCLEOPATRA:\nWhat's your name?\n\nTHYREUS:\nMy name is Thyreus.\n\nCLEOPATRA:\nMost kind messenger,\nSay to great Caesar this: in deputation\nI kiss his conquering hand: tell him, I am prompt\nTo lay my crown at 's feet, and there to kneel:\nTell him from his all-obeying breath I hear\nThe doom of Egypt.\n\nTHYREUS:\n'Tis your noblest course.\nWisdom and fortune combating together,\nIf that the former dare but what it can,\nNo chance may shake it. Give me grace to lay\nMy duty on your hand.\n\nCLEOPATRA:\nYour Caesar's father oft,\nWhen he hath mused of taking kingdoms in,\nBestow'd his lips on that unworthy place,\nAs it rain'd kisses.\n\nMARK ANTONY:\nFavours, by Jove that thunders!\nWhat art thou, fellow?\n\nTHYREUS:\nOne that but performs\nThe bidding of the fullest man, and worthiest\nTo have command obey'd.\n\nDOMITIUS ENOBARBUS:\n\nMARK ANTONY:\nApproach, there! Ah, you kite! Now, gods\nand devils!\nAuthority melts from me: of late, when I cried 'Ho!'\nLike boys unto a muss, kings would start forth,\nAnd cry 'Your will?' Have you no ears? I am\nAntony yet.\nTake hence this Jack, and whip him.\n\nDOMITIUS ENOBARBUS:\n\nMARK ANTONY:\nMoon and stars!\nWhip him. Were't twenty of the greatest tributaries\nThat do acknowledge Caesar, should I find them\nSo saucy with the hand of she here,--what's her name,\nSince she was Cleopatra? Whip him, fellows,\nTill, like a boy, you see him cringe his face,\nAnd whine aloud for mercy: take him hence.\n\nTHYREUS:\nMark Antony!\n\nMARK ANTONY:\nTug him away: being whipp'd,\nBring him again: this Jack of Caesar's shall\nBear us an errand to him.\nYou were half blasted ere I knew you: ha!\nHave I my pillow left unpress'd in Rome,\nForborne the getting of a lawful race,\nAnd by a gem of women, to be abused\nBy one that looks on feeders?\n\nCLEOPATRA:\nGood my lord,--\n\nMARK ANTONY:\nYou have been a boggler ever:\nBut when we in our viciousness grow hard--\nO misery on't!--the wise gods seel our eyes;\nIn our own filth drop our clear judgments; make us\nAdore our errors; laugh at's, while we strut\nTo our confusion.\n\nCLEOPATRA:\nO, is't come to this?\n\nMARK ANTONY:\nI found you as a morsel cold upon\nDead Caesar's trencher; nay, you were a fragment\nOf Cneius Pompey's; besides what hotter hours,\nUnregister'd in vulgar fame, you have\nLuxuriously pick'd out: for, I am sure,\nThough you can guess what temperance should be,\nYou know not what it is.\n\nCLEOPATRA:\nWherefore is this?\n\nMARK ANTONY:\nTo let a fellow that will take rewards\nAnd say 'God quit you!' be familiar with\nMy playfellow, your hand; this kingly seal\nAnd plighter of high hearts! O, that I were\nUpon the hill of Basan, to outroar\nThe horned herd! for I have savage cause;\nAnd to proclaim it civilly, were like\nA halter'd neck which does the hangman thank\nFor being yare about him.\nIs he whipp'd?\n\nFirst Attendant:\nSoundly, my lord.\n\nMARK ANTONY:\nCried he? and begg'd a' pardon?\n\nFirst Attendant:\nHe did ask favour.\n\nMARK ANTONY:\nIf that thy father live, let him repent\nThou wast not made his daughter; and be thou sorry\nTo follow Caesar in his triumph, since\nThou hast been whipp'd for following him: henceforth\nThe white hand of a lady fever thee,\nShake thou to look on 't. Get thee back to Caesar,\nTell him thy entertainment: look, thou say\nHe makes me angry with him; for he seems\nProud and disdainful, harping on what I am,\nNot what he knew I was: he makes me angry;\nAnd at this time most easy 'tis to do't,\nWhen my good stars, that were my former guides,\nHave empty left their orbs, and shot their fires\nInto the abysm of hell. If he mislike\nMy speech and what is done, tell him he has\nHipparchus, my enfranched bondman, whom\nHe may at pleasure whip, or hang, or torture,\nAs he shall like, to quit me: urge it thou:\nHence with thy stripes, begone!\n\nCLEOPATRA:\nHave you done yet?\n\nMARK ANTONY:\nAlack, our terrene moon\nIs now eclipsed; and it portends alone\nThe fall of Antony!\n\nCLEOPATRA:\nI must stay his time.\n\nMARK ANTONY:\nTo flatter Caesar, would you mingle eyes\nWith one that ties his points?\n\nCLEOPATRA:\nNot know me yet?\n\nMARK ANTONY:\nCold-hearted toward me?\n\nCLEOPATRA:\nAh, dear, if I be so,\nFrom my cold heart let heaven engender hail,\nAnd poison it in the source; and the first stone\nDrop in my neck: as it determines, so\nDissolve my life! The next Caesarion smite!\nTill by degrees the memory of my womb,\nTogether with my brave Egyptians all,\nBy the discandying of this pelleted storm,\nLie graveless, till the flies and gnats of Nile\nHave buried them for prey!\n\nMARK ANTONY:\nI am satisfied.\nCaesar sits down in Alexandria; where\nI will oppose his fate. Our force by land\nHath nobly held; our sever'd navy too\nHave knit again, and fleet, threatening most sea-like.\nWhere hast thou been, my heart? Dost thou hear, lady?\nIf from the field I shall return once more\nTo kiss these lips, I will appear in blood;\nI and my sword will earn our chronicle:\nThere's hope in't yet.\n\nCLEOPATRA:\nThat's my brave lord!\n\nMARK ANTONY:\nI will be treble-sinew'd, hearted, breathed,\nAnd fight maliciously: for when mine hours\nWere nice and lucky, men did ransom lives\nOf me for jests; but now I'll set my teeth,\nAnd send to darkness all that stop me. Come,\nLet's have one other gaudy night: call to me\nAll my sad captains; fill our bowls once more;\nLet's mock the midnight bell.\n\nCLEOPATRA:\nIt is my birth-day:\nI had thought to have held it poor: but, since my lord\nIs Antony again, I will be Cleopatra.\n\nMARK ANTONY:\nWe will yet do well.\n\nCLEOPATRA:\nCall all his noble captains to my lord.\n\nMARK ANTONY:\nDo so, we'll speak to them; and to-night I'll force\nThe wine peep through their scars. Come on, my queen;\nThere's sap in't yet. The next time I do fight,\nI'll make death love me; for I will contend\nEven with his pestilent scythe.\n\nDOMITIUS ENOBARBUS:\nNow he'll outstare the lightning. To be furious,\nIs to be frighted out of fear; and in that mood\nThe dove will peck the estridge; and I see still,\nA diminution in our captain's brain\nRestores his heart: when valour preys on reason,\nIt eats the sword it fights with. I will seek\nSome way to leave him.\n\nOCTAVIUS CAESAR:\nHe calls me boy; and chides, as he had power\nTo beat me out of Egypt; my messenger\nHe hath whipp'd with rods; dares me to personal combat,\nCaesar to Antony: let the old ruffian know\nI have many other ways to die; meantime\nLaugh at his challenge.\n\nMECAENAS:\nCaesar must think,\nWhen one so great begins to rage, he's hunted\nEven to falling. Give him no breath, but now\nMake boot of his distraction: never anger\nMade good guard for itself.\n\nOCTAVIUS CAESAR:\nLet our best heads\nKnow, that to-morrow the last of many battles\nWe mean to fight: within our files there are,\nOf those that served Mark Antony but late,\nEnough to fetch him in. See it done:\nAnd feast the army; we have store to do't,\nAnd they have earn'd the waste. Poor Antony!\n\nMARK ANTONY:\nHe will not fight with me, Domitius.\n\nDOMITIUS ENOBARBUS:\nNo.\n\nMARK ANTONY:\nWhy should he not?\n\nDOMITIUS ENOBARBUS:\nHe thinks, being twenty times of better fortune,\nHe is twenty men to one.\n\nMARK ANTONY:\nTo-morrow, soldier,\nBy sea and land I'll fight: or I will live,\nOr bathe my dying honour in the blood\nShall make it live again. Woo't thou fight well?\n\nDOMITIUS ENOBARBUS:\nI'll strike, and cry 'Take all.'\n\nMARK ANTONY:\nWell said; come on.\nCall forth my household servants: let's to-night\nBe bounteous at our meal.\nGive me thy hand,\nThou hast been rightly honest;--so hast thou;--\nThou,--and thou,--and thou:--you have served me well,\nAnd kings have been your fellows.\n\nCLEOPATRA:\n\nDOMITIUS ENOBARBUS:\n\nMARK ANTONY:\nAnd thou art honest too.\nI wish I could be made so many men,\nAnd all of you clapp'd up together in\nAn Antony, that I might do you service\nSo good as you have done.\n\nAll:\nThe gods forbid!\n\nMARK ANTONY:\nWell, my good fellows, wait on me to-night:\nScant not my cups; and make as much of me\nAs when mine empire was your fellow too,\nAnd suffer'd my command.\n\nCLEOPATRA:\n\nDOMITIUS ENOBARBUS:\n\nMARK ANTONY:\nTend me to-night;\nMay be it is the period of your duty:\nHaply you shall not see me more; or if,\nA mangled shadow: perchance to-morrow\nYou'll serve another master. I look on you\nAs one that takes his leave. Mine honest friends,\nI turn you not away; but, like a master\nMarried to your good service, stay till death:\nTend me to-night two hours, I ask no more,\nAnd the gods yield you for't!\n\nDOMITIUS ENOBARBUS:\nWhat mean you, sir,\nTo give them this discomfort? Look, they weep;\nAnd I, an ass, am onion-eyed: for shame,\nTransform us not to women.\n\nMARK ANTONY:\nHo, ho, ho!\nNow the witch take me, if I meant it thus!\nGrace grow where those drops fall!\nMy hearty friends,\nYou take me in too dolorous a sense;\nFor I spake to you for your comfort; did desire you\nTo burn this night with torches: know, my hearts,\nI hope well of to-morrow; and will lead you\nWhere rather I'll expect victorious life\nThan death and honour. Let's to supper, come,\nAnd drown consideration.\n\nFirst Soldier:\nBrother, good night: to-morrow is the day.\n\nSecond Soldier:\nIt will determine one way: fare you well.\nHeard you of nothing strange about the streets?\n\nFirst Soldier:\nNothing. What news?\n\nSecond Soldier:\nBelike 'tis but a rumour. Good night to you.\n\nFirst Soldier:\nWell, sir, good night.\n\nSecond Soldier:\nSoldiers, have careful watch.\n\nThird Soldier:\nAnd you. Good night, good night.\n\nFourth Soldier:\nHere we: and if to-morrow\nOur navy thrive, I have an absolute hope\nOur landmen will stand up.\n\nThird Soldier:\n'Tis a brave army,\nAnd full of purpose.\n\nFourth Soldier:\nPeace! what noise?\n\nFirst Soldier:\nList, list!\n\nSecond Soldier:\nHark!\n\nFirst Soldier:\nMusic i' the air.\n\nThird Soldier:\nUnder the earth.\n\nFourth Soldier:\nIt signs well, does it not?\n\nThird Soldier:\nNo.\n\nFirst Soldier:\nPeace, I say!\nWhat should this mean?\n\nSecond Soldier:\n'Tis the god Hercules, whom Antony loved,\nNow leaves him.\n\nFirst Soldier:\nWalk; let's see if other watchmen\nDo hear what we do?\n\nSecond Soldier:\nHow now, masters!\n\nAll:\n\nFirst Soldier:\nAy; is't not strange?\n\nThird Soldier:\nDo you hear, masters? do you hear?\n\nFirst Soldier:\nFollow the noise so far as we have quarter;\nLet's see how it will give off.\n\nAll:\nContent. 'Tis strange.\n\nMARK ANTONY:\nEros! mine armour, Eros!\n\nCLEOPATRA:\nSleep a little.\n\nMARK ANTONY:\nNo, my chuck. Eros, come; mine armour, Eros!\nCome good fellow, put mine iron on:\nIf fortune be not ours to-day, it is\nBecause we brave her: come.\n\nCLEOPATRA:\nNay, I'll help too.\nWhat's this for?\n\nMARK ANTONY:\nAh, let be, let be! thou art\nThe armourer of my heart: false, false; this, this.\n\nCLEOPATRA:\nSooth, la, I'll help: thus it must be.\n\nMARK ANTONY:\nWell, well;\nWe shall thrive now. Seest thou, my good fellow?\nGo put on thy defences.\n\nEROS:\nBriefly, sir.\n\nCLEOPATRA:\nIs not this buckled well?\n\nMARK ANTONY:\nRarely, rarely:\nHe that unbuckles this, till we do please\nTo daff't for our repose, shall hear a storm.\nThou fumblest, Eros; and my queen's a squire\nMore tight at this than thou: dispatch. O love,\nThat thou couldst see my wars to-day, and knew'st\nThe royal occupation! thou shouldst see\nA workman in't.\nGood morrow to thee; welcome:\nThou look'st like him that knows a warlike charge:\nTo business that we love we rise betime,\nAnd go to't with delight.\n\nSoldier:\nA thousand, sir,\nEarly though't be, have on their riveted trim,\nAnd at the port expect you.\n\nCaptain:\nThe morn is fair. Good morrow, general.\n\nAll:\nGood morrow, general.\n\nMARK ANTONY:\n'Tis well blown, lads:\nThis morning, like the spirit of a youth\nThat means to be of note, begins betimes.\nSo, so; come, give me that: this way; well said.\nFare thee well, dame, whate'er becomes of me:\nThis is a soldier's kiss: rebukeable\nAnd worthy shameful cheque it were, to stand\nOn more mechanic compliment; I'll leave thee\nNow, like a man of steel. You that will fight,\nFollow me close; I'll bring you to't. Adieu.\n\nCHARMIAN:\nPlease you, retire to your chamber.\n\nCLEOPATRA:\nLead me.\nHe goes forth gallantly. That he and Caesar might\nDetermine this great war in single fight!\nThen Antony,--but now--Well, on.\n\nSoldier:\nThe gods make this a happy day to Antony!\n\nMARK ANTONY:\nWould thou and those thy scars had once prevail'd\nTo make me fight at land!\n\nSoldier:\nHadst thou done so,\nThe kings that have revolted, and the soldier\nThat has this morning left thee, would have still\nFollow'd thy heels.\n\nMARK ANTONY:\nWho's gone this morning?\n\nSoldier:\nWho!\nOne ever near thee: call for Enobarbus,\nHe shall not hear thee; or from Caesar's camp\nSay 'I am none of thine.'\n\nMARK ANTONY:\nWhat say'st thou?\n\nSoldier:\nSir,\nHe is with Caesar.\n\nEROS:\nSir, his chests and treasure\nHe has not with him.\n\nMARK ANTONY:\nIs he gone?\n\nSoldier:\nMost certain.\n\nMARK ANTONY:\nGo, Eros, send his treasure after; do it;\nDetain no jot, I charge thee: write to him--\nI will subscribe--gentle adieus and greetings;\nSay that I wish he never find more cause\nTo change a master. O, my fortunes have\nCorrupted honest men! Dispatch.--Enobarbus!\n\nOCTAVIUS CAESAR:\nGo forth, Agrippa, and begin the fight:\nOur will is Antony be took alive;\nMake it so known.\n\nAGRIPPA:\nCaesar, I shall.\n\nOCTAVIUS CAESAR:\nThe time of universal peace is near:\nProve this a prosperous day, the three-nook'd world\nShall bear the olive freely.\n\nMessenger:\nAntony\nIs come into the field.\n\nOCTAVIUS CAESAR:\nGo charge Agrippa\nPlant those that have revolted in the van,\nThat Antony may seem to spend his fury\nUpon himself.\n\nDOMITIUS ENOBARBUS:\nAlexas did revolt; and went to Jewry on\nAffairs of Antony; there did persuade\nGreat Herod to incline himself to Caesar,\nAnd leave his master Antony: for this pains\nCaesar hath hang'd him. Canidius and the rest\nThat fell away have entertainment, but\nNo honourable trust. I have done ill;\nOf which I do accuse myself so sorely,\nThat I will joy no more.\n\nSoldier:\nEnobarbus, Antony\nHath after thee sent all thy treasure, with\nHis bounty overplus: the messenger\nCame on my guard; and at thy tent is now\nUnloading of his mules.\n\nDOMITIUS ENOBARBUS:\nI give it you.\n\nSoldier:\nMock not, Enobarbus.\nI tell you true: best you safed the bringer\nOut of the host; I must attend mine office,\nOr would have done't myself. Your emperor\nContinues still a Jove.\n\nDOMITIUS ENOBARBUS:\nI am alone the villain of the earth,\nAnd feel I am so most. O Antony,\nThou mine of bounty, how wouldst thou have paid\nMy better service, when my turpitude\nThou dost so crown with gold! This blows my heart:\nIf swift thought break it not, a swifter mean\nShall outstrike thought: but thought will do't, I feel.\nI fight against thee! No: I will go seek\nSome ditch wherein to die; the foul'st best fits\nMy latter part of life.\n\nAGRIPPA:\nRetire, we have engaged ourselves too far:\nCaesar himself has work, and our oppression\nExceeds what we expected.\n\nSCARUS:\nO my brave emperor, this is fought indeed!\nHad we done so at first, we had droven them home\nWith clouts about their heads.\n\nMARK ANTONY:\nThou bleed'st apace.\n\nSCARUS:\nI had a wound here that was like a T,\nBut now 'tis made an H.\n\nMARK ANTONY:\nThey do retire.\n\nSCARUS:\nWe'll beat 'em into bench-holes: I have yet\nRoom for six scotches more.\n\nEROS:\nThey are beaten, sir, and our advantage serves\nFor a fair victory.\n\nSCARUS:\nLet us score their backs,\nAnd snatch 'em up, as we take hares, behind:\n'Tis sport to maul a runner.\n\nMARK ANTONY:\nI will reward thee\nOnce for thy spritely comfort, and ten-fold\nFor thy good valour. Come thee on.\n\nSCARUS:\nI'll halt after.\n\nMARK ANTONY:\nWe have beat him to his camp: run one before,\nAnd let the queen know of our gests. To-morrow,\nBefore the sun shall see 's, we'll spill the blood\nThat has to-day escaped. I thank you all;\nFor doughty-handed are you, and have fought\nNot as you served the cause, but as 't had been\nEach man's like mine; you have shown all Hectors.\nEnter the city, clip your wives, your friends,\nTell them your feats; whilst they with joyful tears\nWash the congealment from your wounds, and kiss\nThe honour'd gashes whole.\nGive me thy hand\nTo this great fairy I'll commend thy acts,\nMake her thanks bless thee.\nO thou day o' the world,\nChain mine arm'd neck; leap thou, attire and all,\nThrough proof of harness to my heart, and there\nRide on the pants triumphing!\n\nCLEOPATRA:\nLord of lords!\nO infinite virtue, comest thou smiling from\nThe world's great snare uncaught?\n\nMARK ANTONY:\nMy nightingale,\nWe have beat them to their beds. What, girl!\nthough grey\nDo something mingle with our younger brown, yet ha' we\nA brain that nourishes our nerves, and can\nGet goal for goal of youth. Behold this man;\nCommend unto his lips thy favouring hand:\nKiss it, my warrior: he hath fought to-day\nAs if a god, in hate of mankind, had\nDestroy'd in such a shape.\n\nCLEOPATRA:\nI'll give thee, friend,\nAn armour all of gold; it was a king's.\n\nMARK ANTONY:\nHe has deserved it, were it carbuncled\nLike holy Phoebus' car. Give me thy hand:\nThrough Alexandria make a jolly march;\nBear our hack'd targets like the men that owe them:\nHad our great palace the capacity\nTo camp this host, we all would sup together,\nAnd drink carouses to the next day's fate,\nWhich promises royal peril. Trumpeters,\nWith brazen din blast you the city's ear;\nMake mingle with rattling tabourines;\nThat heaven and earth may strike their sounds together,\nApplauding our approach.\n\nFirst Soldier:\nIf we be not relieved within this hour,\nWe must return to the court of guard: the night\nIs shiny; and they say we shall embattle\nBy the second hour i' the morn.\n\nSecond Soldier:\nThis last day was\nA shrewd one to's.\n\nDOMITIUS ENOBARBUS:\nO, bear me witness, night,--\n\nThird Soldier:\nWhat man is this?\n\nSecond Soldier:\nStand close, and list him.\n\nDOMITIUS ENOBARBUS:\nBe witness to me, O thou blessed moon,\nWhen men revolted shall upon record\nBear hateful memory, poor Enobarbus did\nBefore thy face repent!\n\nFirst Soldier:\nEnobarbus!\n\nThird Soldier:\nPeace!\nHark further.\n\nDOMITIUS ENOBARBUS:\nO sovereign mistress of true melancholy,\nThe poisonous damp of night disponge upon me,\nThat life, a very rebel to my will,\nMay hang no longer on me: throw my heart\nAgainst the flint and hardness of my fault:\nWhich, being dried with grief, will break to powder,\nAnd finish all foul thoughts. O Antony,\nNobler than my revolt is infamous,\nForgive me in thine own particular;\nBut let the world rank me in register\nA master-leaver and a fugitive:\nO Antony! O Antony!\n\nSecond Soldier:\nLet's speak To him.\n\nFirst Soldier:\nLet's hear him, for the things he speaks\nMay concern Caesar.\n\nThird Soldier:\nLet's do so. But he sleeps.\n\nFirst Soldier:\nSwoons rather; for so bad a prayer as his\nWas never yet for sleep.\n\nSecond Soldier:\nGo we to him.\n\nThird Soldier:\nAwake, sir, awake; speak to us.\n\nSecond Soldier:\nHear you, sir?\n\nFirst Soldier:\nThe hand of death hath raught him.\nHark! the drums\nDemurely wake the sleepers. Let us bear him\nTo the court of guard; he is of note: our hour\nIs fully out.\n\nThird Soldier:\nCome on, then;\nHe may recover yet.\n\nMARK ANTONY:\nTheir preparation is to-day by sea;\nWe please them not by land.\n\nSCARUS:\nFor both, my lord.\n\nMARK ANTONY:\nI would they'ld fight i' the fire or i' the air;\nWe'ld fight there too. But this it is; our foot\nUpon the hills adjoining to the city\nShall stay with us: order for sea is given;\nThey have put forth the haven\nWhere their appointment we may best discover,\nAnd look on their endeavour.\n\nOCTAVIUS CAESAR:\nBut being charged, we will be still by land,\nWhich, as I take't, we shall; for his best force\nIs forth to man his galleys. To the vales,\nAnd hold our best advantage.\n\nMARK ANTONY:\nYet they are not join'd: where yond pine\ndoes stand,\nI shall discover all: I'll bring thee word\nStraight, how 'tis like to go.\n\nSCARUS:\nSwallows have built\nIn Cleopatra's sails their nests: the augurers\nSay they know not, they cannot tell; look grimly,\nAnd dare not speak their knowledge. Antony\nIs valiant, and dejected; and, by starts,\nHis fretted fortunes give him hope, and fear,\nOf what he has, and has not.\n\nMARK ANTONY:\nAll is lost;\nThis foul Egyptian hath betrayed me:\nMy fleet hath yielded to the foe; and yonder\nThey cast their caps up and carouse together\nLike friends long lost. Triple-turn'd whore!\n'tis thou\nHast sold me to this novice; and my heart\nMakes only wars on thee. Bid them all fly;\nFor when I am revenged upon my charm,\nI have done all. Bid them all fly; begone.\nO sun, thy uprise shall I see no more:\nFortune and Antony part here; even here\nDo we shake hands. All come to this? The hearts\nThat spaniel'd me at heels, to whom I gave\nTheir wishes, do discandy, melt their sweets\nOn blossoming Caesar; and this pine is bark'd,\nThat overtopp'd them all. Betray'd I am:\nO this false soul of Egypt! this grave charm,--\nWhose eye beck'd forth my wars, and call'd them home;\nWhose bosom was my crownet, my chief end,--\nLike a right gipsy, hath, at fast and loose,\nBeguiled me to the very heart of loss.\nWhat, Eros, Eros!\nAh, thou spell! Avaunt!\n\nCLEOPATRA:\nWhy is my lord enraged against his love?\n\nMARK ANTONY:\nVanish, or I shall give thee thy deserving,\nAnd blemish Caesar's triumph. Let him take thee,\nAnd hoist thee up to the shouting plebeians:\nFollow his chariot, like the greatest spot\nOf all thy sex; most monster-like, be shown\nFor poor'st diminutives, for doits; and let\nPatient Octavia plough thy visage up\nWith her prepared nails.\n'Tis well thou'rt gone,\nIf it be well to live; but better 'twere\nThou fell'st into my fury, for one death\nMight have prevented many. Eros, ho!\nThe shirt of Nessus is upon me: teach me,\nAlcides, thou mine ancestor, thy rage:\nLet me lodge Lichas on the horns o' the moon;\nAnd with those hands, that grasp'd the heaviest club,\nSubdue my worthiest self. The witch shall die:\nTo the young Roman boy she hath sold me, and I fall\nUnder this plot; she dies for't. Eros, ho!\n\nCLEOPATRA:\nHelp me, my women! O, he is more mad\nThan Telamon for his shield; the boar of Thessaly\nWas never so emboss'd.\n\nCHARMIAN:\nTo the monument!\nThere lock yourself, and send him word you are dead.\nThe soul and body rive not more in parting\nThan greatness going off.\n\nCLEOPATRA:\nTo the monument!\nMardian, go tell him I have slain myself;\nSay, that the last I spoke was 'Antony,'\nAnd word it, prithee, piteously: hence, Mardian,\nAnd bring me how he takes my death.\nTo the monument!\n\nMARK ANTONY:\nEros, thou yet behold'st me?\n\nEROS:\nAy, noble lord.\n\nMARK ANTONY:\nSometimes we see a cloud that's dragonish;\nA vapour sometime like a bear or lion,\nA tower'd citadel, a pendent rock,\nA forked mountain, or blue promontory\nWith trees upon't, that nod unto the world,\nAnd mock our eyes with air: thou hast seen\nthese signs;\nThey are black vesper's pageants.\n\nEROS:\nAy, my lord,\n\nMARK ANTONY:\nThat which is now a horse, even with a thought\nThe rack dislimns, and makes it indistinct,\nAs water is in water.\n\nEROS:\nIt does, my lord.\n\nMARK ANTONY:\nMy good knave Eros, now thy captain is\nEven such a body: here I am Antony:\nYet cannot hold this visible shape, my knave.\nI made these wars for Egypt: and the queen,--\nWhose heart I thought I had, for she had mine;\nWhich whilst it was mine had annex'd unto't\nA million more, now lost,--she, Eros, has\nPack'd cards with Caesar, and false-play'd my glory\nUnto an enemy's triumph.\nNay, weep not, gentle Eros; there is left us\nOurselves to end ourselves.\nO! thy vile lady!\nShe has robb'd me of my sword.\n\nMARDIAN:\nNo, Antony;\nMy mistress loved thee, and her fortunes mingled\nWith thine entirely.\n\nMARK ANTONY:\nHence, saucy eunuch; peace!\nShe hath betray'd me and shall die the death.\n\nMARDIAN:\nDeath of one person can be paid but once,\nAnd that she has discharged: what thou wouldst do\nIs done unto thy hand: the last she spake\nWas 'Antony! most noble Antony!'\nThen in the midst a tearing groan did break\nThe name of Antony; it was divided\nBetween her heart and lips: she render'd life,\nThy name so buried in her.\n\nMARK ANTONY:\nDead, then?\n\nMARDIAN:\nDead.\n\nMARK ANTONY:\nUnarm, Eros; the long day's task is done,\nAnd we must sleep.\nThat thou depart'st hence safe,\nDoes pay thy labour richly; go.\nOff, pluck off:\nThe seven-fold shield of Ajax cannot keep\nThe battery from my heart. O, cleave, my sides!\nHeart, once be stronger than thy continent,\nCrack thy frail case! Apace, Eros, apace.\nNo more a soldier: bruised pieces, go;\nYou have been nobly borne. From me awhile.\nI will o'ertake thee, Cleopatra, and\nWeep for my pardon. So it must be, for now\nAll length is torture: since the torch is out,\nLie down, and stray no farther: now all labour\nMars what it does; yea, very force entangles\nItself with strength: seal then, and all is done.\nEros!--I come, my queen:--Eros!--Stay for me:\nWhere souls do couch on flowers, we'll hand in hand,\nAnd with our sprightly port make the ghosts gaze:\nDido and her AEneas shall want troops,\nAnd all the haunt be ours. Come, Eros, Eros!\n\nEROS:\nWhat would my lord?\n\nMARK ANTONY:\nSince Cleopatra died,\nI have lived in such dishonour, that the gods\nDetest my baseness. I, that with my sword\nQuarter'd the world, and o'er green Neptune's back\nWith ships made cities, condemn myself to lack\nThe courage of a woman; less noble mind\nThan she which by her death our Caesar tells\n'I am conqueror of myself.' Thou art sworn, Eros,\nThat, when the exigent should come, which now\nIs come indeed, when I should see behind me\nThe inevitable prosecution of\nDisgrace and horror, that, on my command,\nThou then wouldst kill me: do't; the time is come:\nThou strikest not me, 'tis Caesar thou defeat'st.\nPut colour in thy cheek.\n\nEROS:\nThe gods withhold me!\nShall I do that which all the Parthian darts,\nThough enemy, lost aim, and could not?\n\nMARK ANTONY:\nEros,\nWouldst thou be window'd in great Rome and see\nThy master thus with pleach'd arms, bending down\nHis corrigible neck, his face subdued\nTo penetrative shame, whilst the wheel'd seat\nOf fortunate Caesar, drawn before him, branded\nHis baseness that ensued?\n\nEROS:\nI would not see't.\n\nMARK ANTONY:\nCome, then; for with a wound I must be cured.\nDraw that thy honest sword, which thou hast worn\nMost useful for thy country.\n\nEROS:\nO, sir, pardon me!\n\nMARK ANTONY:\nWhen I did make thee free, sworest thou not then\nTo do this when I bade thee? Do it at once;\nOr thy precedent services are all\nBut accidents unpurposed. Draw, and come.\n\nEROS:\nTurn from me, then, that noble countenance,\nWherein the worship of the whole world lies.\n\nMARK ANTONY:\nLo thee!\n\nEROS:\nMy sword is drawn.\n\nMARK ANTONY:\nThen let it do at once\nThe thing why thou hast drawn it.\n\nEROS:\nMy dear master,\nMy captain, and my emperor, let me say,\nBefore I strike this bloody stroke, farewell.\n\nMARK ANTONY:\n'Tis said, man; and farewell.\n\nEROS:\nFarewell, great chief. Shall I strike now?\n\nMARK ANTONY:\nNow, Eros.\n\nEROS:\nWhy, there then: thus I do escape the sorrow\nOf Antony's death.\n\nMARK ANTONY:\nThrice-nobler than myself!\nThou teachest me, O valiant Eros, what\nI should, and thou couldst not. My queen and Eros\nHave by their brave instruction got upon me\nA nobleness in record: but I will be\nA bridegroom in my death, and run into't\nAs to a lover's bed. Come, then; and, Eros,\nThy master dies thy scholar: to do thus\nI learn'd of thee. How! not dead? not dead?\nThe guard, ho! O, dispatch me!\n\nFirst Guard:\nWhat's the noise?\n\nMARK ANTONY:\nI have done my work in, friends: O, make an end\nOf what I have begun.\n\nSecond Guard:\nThe star is fall'n.\n\nFirst Guard:\nAnd time is at his period.\n\nAll:\nAlas, and woe!\n\nMARK ANTONY:\nLet him that loves me strike me dead.\n\nFirst Guard:\nNot I.\n\nSecond Guard:\nNor I.\n\nThird Guard:\nNor any one.\n\nDERCETAS:\nThy death and fortunes bid thy followers fly.\nThis sword but shown to Caesar, with this tidings,\nShall enter me with him.\n\nDIOMEDES:\nWhere's Antony?\n\nDERCETAS:\nThere, Diomed there.\n\nDIOMEDES:\nLives he?\nWilt thou not answer, man?\n\nMARK ANTONY:\nArt thou there, Diomed? Draw thy sword, and give me\nSufficing strokes for death.\n\nDIOMEDES:\nMost absolute lord,\nMy mistress Cleopatra sent me to thee.\n\nMARK ANTONY:\nWhen did she send thee?\n\nDIOMEDES:\nNow, my lord.\n\nMARK ANTONY:\nWhere is she?\n\nDIOMEDES:\nLock'd in her monument. She had a prophesying fear\nOf what hath come to pass: for when she saw--\nWhich never shall be found--you did suspect\nShe had disposed with Caesar, and that your rage\nWould not be purged, she sent you word she was dead;\nBut, fearing since how it might work, hath sent\nMe to proclaim the truth; and I am come,\nI dread, too late.\n\nMARK ANTONY:\nToo late, good Diomed: call my guard, I prithee.\n\nDIOMEDES:\nWhat, ho, the emperor's guard! The guard, what, ho!\nCome, your lord calls!\n\nMARK ANTONY:\nBear me, good friends, where Cleopatra bides;\n'Tis the last service that I shall command you.\n\nFirst Guard:\nWoe, woe are we, sir, you may not live to wear\nAll your true followers out.\n\nAll:\nMost heavy day!\n\nMARK ANTONY:\nNay, good my fellows, do not please sharp fate\nTo grace it with your sorrows: bid that welcome\nWhich comes to punish us, and we punish it\nSeeming to bear it lightly. Take me up:\nI have led you oft: carry me now, good friends,\nAnd have my thanks for all.\n\nCLEOPATRA:\nO Charmian, I will never go from hence.\n\nCHARMIAN:\nBe comforted, dear madam.\n\nCLEOPATRA:\nNo, I will not:\nAll strange and terrible events are welcome,\nBut comforts we despise; our size of sorrow,\nProportion'd to our cause, must be as great\nAs that which makes it.\nHow now! is he dead?\n\nDIOMEDES:\nHis death's upon him, but not dead.\nLook out o' the other side your monument;\nHis guard have brought him thither.\n\nCLEOPATRA:\nO sun,\nBurn the great sphere thou movest in!\ndarkling stand\nThe varying shore o' the world. O Antony,\nAntony, Antony! Help, Charmian, help, Iras, help;\nHelp, friends below; let's draw him hither.\n\nMARK ANTONY:\nPeace!\nNot Caesar's valour hath o'erthrown Antony,\nBut Antony's hath triumph'd on itself.\n\nCLEOPATRA:\nSo it should be, that none but Antony\nShould conquer Antony; but woe 'tis so!\n\nMARK ANTONY:\nI am dying, Egypt, dying; only\nI here importune death awhile, until\nOf many thousand kisses the poor last\nI lay up thy lips.\n\nCLEOPATRA:\nI dare not, dear,--\nDear my lord, pardon,--I dare not,\nLest I be taken: not the imperious show\nOf the full-fortuned Caesar ever shall\nBe brooch'd with me; if knife, drugs,\nserpents, have\nEdge, sting, or operation, I am safe:\nYour wife Octavia, with her modest eyes\nAnd still conclusion, shall acquire no honour\nDemuring upon me. But come, come, Antony,--\nHelp me, my women,--we must draw thee up:\nAssist, good friends.\n\nMARK ANTONY:\nO, quick, or I am gone.\n\nCLEOPATRA:\nHere's sport indeed! How heavy weighs my lord!\nOur strength is all gone into heaviness,\nThat makes the weight: had I great Juno's power,\nThe strong-wing'd Mercury should fetch thee up,\nAnd set thee by Jove's side. Yet come a little,--\nWishes were ever fools,--O, come, come, come;\nAnd welcome, welcome! die where thou hast lived:\nQuicken with kissing: had my lips that power,\nThus would I wear them out.\n\nAll:\nA heavy sight!\n\nMARK ANTONY:\nI am dying, Egypt, dying:\nGive me some wine, and let me speak a little.\n\nCLEOPATRA:\nNo, let me speak; and let me rail so high,\nThat the false housewife Fortune break her wheel,\nProvoked by my offence.\n\nMARK ANTONY:\nOne word, sweet queen:\nOf Caesar seek your honour, with your safety. O!\n\nCLEOPATRA:\nThey do not go together.\n\nMARK ANTONY:\nGentle, hear me:\nNone about Caesar trust but Proculeius.\n\nCLEOPATRA:\nMy resolution and my hands I'll trust;\nNone about Caesar.\n\nMARK ANTONY:\nThe miserable change now at my end\nLament nor sorrow at; but please your thoughts\nIn feeding them with those my former fortunes\nWherein I lived, the greatest prince o' the world,\nThe noblest; and do now not basely die,\nNot cowardly put off my helmet to\nMy countryman,--a Roman by a Roman\nValiantly vanquish'd. Now my spirit is going;\nI can no more.\n\nCLEOPATRA:\nNoblest of men, woo't die?\nHast thou no care of me? shall I abide\nIn this dull world, which in thy absence is\nNo better than a sty? O, see, my women,\nThe crown o' the earth doth melt. My lord!\nO, wither'd is the garland of the war,\nThe soldier's pole is fall'n: young boys and girls\nAre level now with men; the odds is gone,\nAnd there is nothing left remarkable\nBeneath the visiting moon.\n\nCHARMIAN:\nO, quietness, lady!\n\nIRAS:\nShe is dead too, our sovereign.\n\nCHARMIAN:\nLady!\n\nIRAS:\nMadam!\n\nCHARMIAN:\nO madam, madam, madam!\n\nIRAS:\nRoyal Egypt, Empress!\n\nCHARMIAN:\nPeace, peace, Iras!\n\nCLEOPATRA:\nNo more, but e'en a woman, and commanded\nBy such poor passion as the maid that milks\nAnd does the meanest chares. It were for me\nTo throw my sceptre at the injurious gods;\nTo tell them that this world did equal theirs\nTill they had stol'n our jewel. All's but naught;\nPatience is scottish, and impatience does\nBecome a dog that's mad: then is it sin\nTo rush into the secret house of death,\nEre death dare come to us? How do you, women?\nWhat, what! good cheer! Why, how now, Charmian!\nMy noble girls! Ah, women, women, look,\nOur lamp is spent, it's out! Good sirs, take heart:\nWe'll bury him; and then, what's brave,\nwhat's noble,\nLet's do it after the high Roman fashion,\nAnd make death proud to take us. Come, away:\nThis case of that huge spirit now is cold:\nAh, women, women! come; we have no friend\nBut resolution, and the briefest end.\n\nOCTAVIUS CAESAR:\nGo to him, Dolabella, bid him yield;\nBeing so frustrate, tell him he mocks\nThe pauses that he makes.\n\nDOLABELLA:\nCaesar, I shall.\n\nOCTAVIUS CAESAR:\nWherefore is that? and what art thou that darest\nAppear thus to us?\n\nDERCETAS:\nI am call'd Dercetas;\nMark Antony I served, who best was worthy\nBest to be served: whilst he stood up and spoke,\nHe was my master; and I wore my life\nTo spend upon his haters. If thou please\nTo take me to thee, as I was to him\nI'll be to Caesar; if thou pleasest not,\nI yield thee up my life.\n\nOCTAVIUS CAESAR:\nWhat is't thou say'st?\n\nDERCETAS:\nI say, O Caesar, Antony is dead.\n\nOCTAVIUS CAESAR:\nThe breaking of so great a thing should make\nA greater crack: the round world\nShould have shook lions into civil streets,\nAnd citizens to their dens: the death of Antony\nIs not a single doom; in the name lay\nA moiety of the world.\n\nDERCETAS:\nHe is dead, Caesar:\nNot by a public minister of justice,\nNor by a hired knife; but that self hand,\nWhich writ his honour in the acts it did,\nHath, with the courage which the heart did lend it,\nSplitted the heart. This is his sword;\nI robb'd his wound of it; behold it stain'd\nWith his most noble blood.\n\nOCTAVIUS CAESAR:\nLook you sad, friends?\nThe gods rebuke me, but it is tidings\nTo wash the eyes of kings.\n\nAGRIPPA:\nAnd strange it is,\nThat nature must compel us to lament\nOur most persisted deeds.\n\nMECAENAS:\nHis taints and honours\nWaged equal with him.\n\nAGRIPPA:\nA rarer spirit never\nDid steer humanity: but you, gods, will give us\nSome faults to make us men. Caesar is touch'd.\n\nMECAENAS:\nWhen such a spacious mirror's set before him,\nHe needs must see himself.\n\nOCTAVIUS CAESAR:\nO Antony!\nI have follow'd thee to this; but we do lance\nDiseases in our bodies: I must perforce\nHave shown to thee such a declining day,\nOr look on thine; we could not stall together\nIn the whole world: but yet let me lament,\nWith tears as sovereign as the blood of hearts,\nThat thou, my brother, my competitor\nIn top of all design, my mate in empire,\nFriend and companion in the front of war,\nThe arm of mine own body, and the heart\nWhere mine his thoughts did kindle,--that our stars,\nUnreconciliable, should divide\nOur equalness to this. Hear me, good friends--\nBut I will tell you at some meeter season:\nThe business of this man looks out of him;\nWe'll hear him what he says. Whence are you?\n\nEgyptian:\nA poor Egyptian yet. The queen my mistress,\nConfined in all she has, her monument,\nOf thy intents desires instruction,\nThat she preparedly may frame herself\nTo the way she's forced to.\n\nOCTAVIUS CAESAR:\nBid her have good heart:\nShe soon shall know of us, by some of ours,\nHow honourable and how kindly we\nDetermine for her; for Caesar cannot live\nTo be ungentle.\n\nEgyptian:\nSo the gods preserve thee!\n\nOCTAVIUS CAESAR:\nCome hither, Proculeius. Go and say,\nWe purpose her no shame: give her what comforts\nThe quality of her passion shall require,\nLest, in her greatness, by some mortal stroke\nShe do defeat us; for her life in Rome\nWould be eternal in our triumph: go,\nAnd with your speediest bring us what she says,\nAnd how you find of her.\n\nPROCULEIUS:\nCaesar, I shall.\n\nOCTAVIUS CAESAR:\nGallus, go you along.\nWhere's Dolabella,\nTo second Proculeius?\n\nAll:\nDolabella!\n\nOCTAVIUS CAESAR:\nLet him alone, for I remember now\nHow he's employ'd: he shall in time be ready.\nGo with me to my tent; where you shall see\nHow hardly I was drawn into this war;\nHow calm and gentle I proceeded still\nIn all my writings: go with me, and see\nWhat I can show in this.\n\nCLEOPATRA:\nMy desolation does begin to make\nA better life. 'Tis paltry to be Caesar;\nNot being Fortune, he's but Fortune's knave,\nA minister of her will: and it is great\nTo do that thing that ends all other deeds;\nWhich shackles accidents and bolts up change;\nWhich sleeps, and never palates more the dug,\nThe beggar's nurse and Caesar's.\n\nPROCULEIUS:\nCaesar sends greeting to the Queen of Egypt;\nAnd bids thee study on what fair demands\nThou mean'st to have him grant thee.\n\nCLEOPATRA:\nWhat's thy name?\n\nPROCULEIUS:\nMy name is Proculeius.\n\nCLEOPATRA:\nAntony\nDid tell me of you, bade me trust you; but\nI do not greatly care to be deceived,\nThat have no use for trusting. If your master\nWould have a queen his beggar, you must tell him,\nThat majesty, to keep decorum, must\nNo less beg than a kingdom: if he please\nTo give me conquer'd Egypt for my son,\nHe gives me so much of mine own, as I\nWill kneel to him with thanks.\n\nPROCULEIUS:\nBe of good cheer;\nYou're fall'n into a princely hand, fear nothing:\nMake your full reference freely to my lord,\nWho is so full of grace, that it flows over\nOn all that need: let me report to him\nYour sweet dependency; and you shall find\nA conqueror that will pray in aid for kindness,\nWhere he for grace is kneel'd to.\n\nCLEOPATRA:\nPray you, tell him\nI am his fortune's vassal, and I send him\nThe greatness he has got. I hourly learn\nA doctrine of obedience; and would gladly\nLook him i' the face.\n\nPROCULEIUS:\nThis I'll report, dear lady.\nHave comfort, for I know your plight is pitied\nOf him that caused it.\n\nGALLUS:\nYou see how easily she may be surprised:\nGuard her till Caesar come.\n\nIRAS:\nRoyal queen!\n\nCHARMIAN:\nO Cleopatra! thou art taken, queen:\n\nCLEOPATRA:\nQuick, quick, good hands.\n\nPROCULEIUS:\nHold, worthy lady, hold:\nDo not yourself such wrong, who are in this\nRelieved, but not betray'd.\n\nCLEOPATRA:\nWhat, of death too,\nThat rids our dogs of languish?\n\nPROCULEIUS:\nCleopatra,\nDo not abuse my master's bounty by\nThe undoing of yourself: let the world see\nHis nobleness well acted, which your death\nWill never let come forth.\n\nCLEOPATRA:\nWhere art thou, death?\nCome hither, come! come, come, and take a queen\nWorthy many babes and beggars!\n\nPROCULEIUS:\nO, temperance, lady!\n\nCLEOPATRA:\nSir, I will eat no meat, I'll not drink, sir;\nIf idle talk will once be necessary,\nI'll not sleep neither: this mortal house I'll ruin,\nDo Caesar what he can. Know, sir, that I\nWill not wait pinion'd at your master's court;\nNor once be chastised with the sober eye\nOf dull Octavia. Shall they hoist me up\nAnd show me to the shouting varletry\nOf censuring Rome? Rather a ditch in Egypt\nBe gentle grave unto me! rather on Nilus' mud\nLay me stark naked, and let the water-flies\nBlow me into abhorring! rather make\nMy country's high pyramides my gibbet,\nAnd hang me up in chains!\n\nPROCULEIUS:\nYou do extend\nThese thoughts of horror further than you shall\nFind cause in Caesar.\n\nDOLABELLA:\nProculeius,\nWhat thou hast done thy master Caesar knows,\nAnd he hath sent for thee: for the queen,\nI'll take her to my guard.\n\nPROCULEIUS:\nSo, Dolabella,\nIt shall content me best: be gentle to her.\nTo Caesar I will speak what you shall please,\nIf you'll employ me to him.\n\nCLEOPATRA:\nSay, I would die.\n\nDOLABELLA:\nMost noble empress, you have heard of me?\n\nCLEOPATRA:\nI cannot tell.\n\nDOLABELLA:\nAssuredly you know me.\n\nCLEOPATRA:\nNo matter, sir, what I have heard or known.\nYou laugh when boys or women tell their dreams;\nIs't not your trick?\n\nDOLABELLA:\nI understand not, madam.\n\nCLEOPATRA:\nI dream'd there was an Emperor Antony:\nO, such another sleep, that I might see\nBut such another man!\n\nDOLABELLA:\nIf it might please ye,--\n\nCLEOPATRA:\nHis face was as the heavens; and therein stuck\nA sun and moon, which kept their course,\nand lighted\nThe little O, the earth.\n\nDOLABELLA:\nMost sovereign creature,--\n\nCLEOPATRA:\nHis legs bestrid the ocean: his rear'd arm\nCrested the world: his voice was propertied\nAs all the tuned spheres, and that to friends;\nBut when he meant to quail and shake the orb,\nHe was as rattling thunder. For his bounty,\nThere was no winter in't; an autumn 'twas\nThat grew the more by reaping: his delights\nWere dolphin-like; they show'd his back above\nThe element they lived in: in his livery\nWalk'd crowns and crownets; realms and islands were\nAs plates dropp'd from his pocket.\n\nDOLABELLA:\nCleopatra!\n\nCLEOPATRA:\nThink you there was, or might be, such a man\nAs this I dream'd of?\n\nDOLABELLA:\nGentle madam, no.\n\nCLEOPATRA:\nYou lie, up to the hearing of the gods.\nBut, if there be, or ever were, one such,\nIt's past the size of dreaming: nature wants stuff\nTo vie strange forms with fancy; yet, to imagine\nAnd Antony, were nature's piece 'gainst fancy,\nCondemning shadows quite.\n\nDOLABELLA:\nHear me, good madam.\nYour loss is as yourself, great; and you bear it\nAs answering to the weight: would I might never\nO'ertake pursued success, but I do feel,\nBy the rebound of yours, a grief that smites\nMy very heart at root.\n\nCLEOPATRA:\nI thank you, sir,\nKnow you what Caesar means to do with me?\n\nDOLABELLA:\nI am loath to tell you what I would you knew.\n\nCLEOPATRA:\nNay, pray you, sir,--\n\nDOLABELLA:\nThough he be honourable,--\n\nCLEOPATRA:\nHe'll lead me, then, in triumph?\n\nDOLABELLA:\nMadam, he will; I know't.\n\nOCTAVIUS CAESAR:\nWhich is the Queen of Egypt?\n\nDOLABELLA:\nIt is the emperor, madam.\n\nOCTAVIUS CAESAR:\nArise, you shall not kneel:\nI pray you, rise; rise, Egypt.\n\nCLEOPATRA:\nSir, the gods\nWill have it thus; my master and my lord\nI must obey.\n\nOCTAVIUS CAESAR:\nTake to you no hard thoughts:\nThe record of what injuries you did us,\nThough written in our flesh, we shall remember\nAs things but done by chance.\n\nCLEOPATRA:\nSole sir o' the world,\nI cannot project mine own cause so well\nTo make it clear; but do confess I have\nBeen laden with like frailties which before\nHave often shamed our sex.\n\nOCTAVIUS CAESAR:\nCleopatra, know,\nWe will extenuate rather than enforce:\nIf you apply yourself to our intents,\nWhich towards you are most gentle, you shall find\nA benefit in this change; but if you seek\nTo lay on me a cruelty, by taking\nAntony's course, you shall bereave yourself\nOf my good purposes, and put your children\nTo that destruction which I'll guard them from,\nIf thereon you rely. I'll take my leave.\n\nCLEOPATRA:\nAnd may, through all the world: 'tis yours; and we,\nYour scutcheons and your signs of conquest, shall\nHang in what place you please. Here, my good lord.\n\nOCTAVIUS CAESAR:\nYou shall advise me in all for Cleopatra.\n\nCLEOPATRA:\nThis is the brief of money, plate, and jewels,\nI am possess'd of: 'tis exactly valued;\nNot petty things admitted. Where's Seleucus?\n\nSELEUCUS:\nHere, madam.\n\nCLEOPATRA:\nThis is my treasurer: let him speak, my lord,\nUpon his peril, that I have reserved\nTo myself nothing. Speak the truth, Seleucus.\n\nSELEUCUS:\nMadam,\nI had rather seal my lips, than, to my peril,\nSpeak that which is not.\n\nCLEOPATRA:\nWhat have I kept back?\n\nSELEUCUS:\nEnough to purchase what you have made known.\n\nOCTAVIUS CAESAR:\nNay, blush not, Cleopatra; I approve\nYour wisdom in the deed.\n\nCLEOPATRA:\nSee, Caesar! O, behold,\nHow pomp is follow'd! mine will now be yours;\nAnd, should we shift estates, yours would be mine.\nThe ingratitude of this Seleucus does\nEven make me wild: O slave, of no more trust\nThan love that's hired! What, goest thou back? thou shalt\nGo back, I warrant thee; but I'll catch thine eyes,\nThough they had wings: slave, soulless villain, dog!\nO rarely base!\n\nOCTAVIUS CAESAR:\nGood queen, let us entreat you.\n\nCLEOPATRA:\nO Caesar, what a wounding shame is this,\nThat thou, vouchsafing here to visit me,\nDoing the honour of thy lordliness\nTo one so meek, that mine own servant should\nParcel the sum of my disgraces by\nAddition of his envy! Say, good Caesar,\nThat I some lady trifles have reserved,\nImmoment toys, things of such dignity\nAs we greet modern friends withal; and say,\nSome nobler token I have kept apart\nFor Livia and Octavia, to induce\nTheir mediation; must I be unfolded\nWith one that I have bred? The gods! it smites me\nBeneath the fall I have.\nPrithee, go hence;\nOr I shall show the cinders of my spirits\nThrough the ashes of my chance: wert thou a man,\nThou wouldst have mercy on me.\n\nOCTAVIUS CAESAR:\nForbear, Seleucus.\n\nCLEOPATRA:\nBe it known, that we, the greatest, are misthought\nFor things that others do; and, when we fall,\nWe answer others' merits in our name,\nAre therefore to be pitied.\n\nOCTAVIUS CAESAR:\nCleopatra,\nNot what you have reserved, nor what acknowledged,\nPut we i' the roll of conquest: still be't yours,\nBestow it at your pleasure; and believe,\nCaesar's no merchant, to make prize with you\nOf things that merchants sold. Therefore be cheer'd;\nMake not your thoughts your prisons: no, dear queen;\nFor we intend so to dispose you as\nYourself shall give us counsel. Feed, and sleep:\nOur care and pity is so much upon you,\nThat we remain your friend; and so, adieu.\n\nCLEOPATRA:\nMy master, and my lord!\n\nOCTAVIUS CAESAR:\nNot so. Adieu.\n\nCLEOPATRA:\nHe words me, girls, he words me, that I should not\nBe noble to myself: but, hark thee, Charmian.\n\nIRAS:\nFinish, good lady; the bright day is done,\nAnd we are for the dark.\n\nCLEOPATRA:\nHie thee again:\nI have spoke already, and it is provided;\nGo put it to the haste.\n\nCHARMIAN:\nMadam, I will.\n\nDOLABELLA:\nWhere is the queen?\n\nCHARMIAN:\nBehold, sir.\n\nCLEOPATRA:\nDolabella!\n\nDOLABELLA:\nMadam, as thereto sworn by your command,\nWhich my love makes religion to obey,\nI tell you this: Caesar through Syria\nIntends his journey; and within three days\nYou with your children will he send before:\nMake your best use of this: I have perform'd\nYour pleasure and my promise.\n\nCLEOPATRA:\nDolabella,\nI shall remain your debtor.\n\nDOLABELLA:\nI your servant,\nAdieu, good queen; I must attend on Caesar.\n\nCLEOPATRA:\nFarewell, and thanks.\nNow, Iras, what think'st thou?\nThou, an Egyptian puppet, shalt be shown\nIn Rome, as well as I mechanic slaves\nWith greasy aprons, rules, and hammers, shall\nUplift us to the view; in their thick breaths,\nRank of gross diet, shall be enclouded,\nAnd forced to drink their vapour.\n\nIRAS:\nThe gods forbid!\n\nCLEOPATRA:\nNay, 'tis most certain, Iras: saucy lictors\nWill catch at us, like strumpets; and scald rhymers\nBallad us out o' tune: the quick comedians\nExtemporally will stage us, and present\nOur Alexandrian revels; Antony\nShall be brought drunken forth, and I shall see\nSome squeaking Cleopatra boy my greatness\nI' the posture of a whore.\n\nIRAS:\nO the good gods!\n\nCLEOPATRA:\nNay, that's certain.\n\nIRAS:\nI'll never see 't; for, I am sure, my nails\nAre stronger than mine eyes.\n\nCLEOPATRA:\nWhy, that's the way\nTo fool their preparation, and to conquer\nTheir most absurd intents.\nNow, Charmian!\nShow me, my women, like a queen: go fetch\nMy best attires: I am again for Cydnus,\nTo meet Mark Antony: sirrah Iras, go.\nNow, noble Charmian, we'll dispatch indeed;\nAnd, when thou hast done this chare, I'll give thee leave\nTo play till doomsday. Bring our crown and all.\nWherefore's this noise?\n\nGuard:\nHere is a rural fellow\nThat will not be denied your highness presence:\nHe brings you figs.\n\nCLEOPATRA:\nLet him come in.\nWhat poor an instrument\nMay do a noble deed! he brings me liberty.\nMy resolution's placed, and I have nothing\nOf woman in me: now from head to foot\nI am marble-constant; now the fleeting moon\nNo planet is of mine.\n\nGuard:\nThis is the man.\n\nCLEOPATRA:\nAvoid, and leave him.\nHast thou the pretty worm of Nilus there,\nThat kills and pains not?\n\nClown:\nTruly, I have him: but I would not be the party\nthat should desire you to touch him, for his biting\nis immortal; those that do die of it do seldom or\nnever recover.\n\nCLEOPATRA:\nRememberest thou any that have died on't?\n\nClown:\nVery many, men and women too. I heard of one of\nthem no longer than yesterday: a very honest woman,\nbut something given to lie; as a woman should not\ndo, but in the way of honesty: how she died of the\nbiting of it, what pain she felt: truly, she makes\na very good report o' the worm; but he that will\nbelieve all that they say, shall never be saved by\nhalf that they do: but this is most fallible, the\nworm's an odd worm.\n\nCLEOPATRA:\nGet thee hence; farewell.\n\nClown:\nI wish you all joy of the worm.\n\nCLEOPATRA:\nFarewell.\n\nClown:\nYou must think this, look you, that the worm will\ndo his kind.\n\nCLEOPATRA:\nAy, ay; farewell.\n\nClown:\nLook you, the worm is not to be trusted but in the\nkeeping of wise people; for, indeed, there is no\ngoodness in worm.\n\nCLEOPATRA:\nTake thou no care; it shall be heeded.\n\nClown:\nVery good. Give it nothing, I pray you, for it is\nnot worth the feeding.\n\nCLEOPATRA:\nWill it eat me?\n\nClown:\nYou must not think I am so simple but I know the\ndevil himself will not eat a woman: I know that a\nwoman is a dish for the gods, if the devil dress her\nnot. But, truly, these same whoreson devils do the\ngods great harm in their women; for in every ten\nthat they make, the devils mar five.\n\nCLEOPATRA:\nWell, get thee gone; farewell.\n\nClown:\nYes, forsooth: I wish you joy o' the worm.\n\nCLEOPATRA:\nGive me my robe, put on my crown; I have\nImmortal longings in me: now no more\nThe juice of Egypt's grape shall moist this lip:\nYare, yare, good Iras; quick. Methinks I hear\nAntony call; I see him rouse himself\nTo praise my noble act; I hear him mock\nThe luck of Caesar, which the gods give men\nTo excuse their after wrath: husband, I come:\nNow to that name my courage prove my title!\nI am fire and air; my other elements\nI give to baser life. So; have you done?\nCome then, and take the last warmth of my lips.\nFarewell, kind Charmian; Iras, long farewell.\nHave I the aspic in my lips? Dost fall?\nIf thou and nature can so gently part,\nThe stroke of death is as a lover's pinch,\nWhich hurts, and is desired. Dost thou lie still?\nIf thus thou vanishest, thou tell'st the world\nIt is not worth leave-taking.\n\nCHARMIAN:\nDissolve, thick cloud, and rain; that I may say,\nThe gods themselves do weep!\n\nCLEOPATRA:\nThis proves me base:\nIf she first meet the curled Antony,\nHe'll make demand of her, and spend that kiss\nWhich is my heaven to have. Come, thou\nmortal wretch,\nWith thy sharp teeth this knot intrinsicate\nOf life at once untie: poor venomous fool\nBe angry, and dispatch. O, couldst thou speak,\nThat I might hear thee call great Caesar ass\nUnpolicied!\n\nCHARMIAN:\nO eastern star!\n\nCLEOPATRA:\nPeace, peace!\nDost thou not see my baby at my breast,\nThat sucks the nurse asleep?\n\nCHARMIAN:\nO, break! O, break!\n\nCLEOPATRA:\nAs sweet as balm, as soft as air, as gentle,--\nO Antony!--Nay, I will take thee too.\nWhat should I stay--\n\nCHARMIAN:\nIn this vile world? So, fare thee well.\nNow boast thee, death, in thy possession lies\nA lass unparallel'd. Downy windows, close;\nAnd golden Phoebus never be beheld\nOf eyes again so royal! Your crown's awry;\nI'll mend it, and then play.\n\nFirst Guard:\nWhere is the queen?\n\nCHARMIAN:\nSpeak softly, wake her not.\n\nFirst Guard:\nCaesar hath sent--\n\nCHARMIAN:\nToo slow a messenger.\nO, come apace, dispatch! I partly feel thee.\n\nFirst Guard:\nApproach, ho! All's not well: Caesar's beguiled.\n\nSecond Guard:\nThere's Dolabella sent from Caesar; call him.\n\nFirst Guard:\nWhat work is here! Charmian, is this well done?\n\nCHARMIAN:\nIt is well done, and fitting for a princess\nDescended of so many royal kings.\nAh, soldier!\n\nDOLABELLA:\nHow goes it here?\n\nSecond Guard:\nAll dead.\n\nDOLABELLA:\nCaesar, thy thoughts\nTouch their effects in this: thyself art coming\nTo see perform'd the dreaded act which thou\nSo sought'st to hinder.\n\nDOLABELLA:\nO sir, you are too sure an augurer;\nThat you did fear is done.\n\nOCTAVIUS CAESAR:\nBravest at the last,\nShe levell'd at our purposes, and, being royal,\nTook her own way. The manner of their deaths?\nI do not see them bleed.\n\nDOLABELLA:\nWho was last with them?\n\nFirst Guard:\nA simple countryman, that brought her figs:\nThis was his basket.\n\nOCTAVIUS CAESAR:\nPoison'd, then.\n\nFirst Guard:\nO Caesar,\nThis Charmian lived but now; she stood and spake:\nI found her trimming up the diadem\nOn her dead mistress; tremblingly she stood\nAnd on the sudden dropp'd.\n\nOCTAVIUS CAESAR:\nO noble weakness!\nIf they had swallow'd poison, 'twould appear\nBy external swelling: but she looks like sleep,\nAs she would catch another Antony\nIn her strong toil of grace.\n\nDOLABELLA:\nHere, on her breast,\nThere is a vent of blood and something blown:\nThe like is on her arm.\n\nFirst Guard:\nThis is an aspic's trail: and these fig-leaves\nHave slime upon them, such as the aspic leaves\nUpon the caves of Nile.\n\nOCTAVIUS CAESAR:\nMost probable\nThat so she died; for her physician tells me\nShe hath pursued conclusions infinite\nOf easy ways to die. Take up her bed;\nAnd bear her women from the monument:\nShe shall be buried by her Antony:\nNo grave upon the earth shall clip in it\nA pair so famous. High events as these\nStrike those that make them; and their story is\nNo less in pity than his glory which\nBrought them to be lamented. Our army shall\nIn solemn show attend this funeral;\nAnd then to Rome. Come, Dolabella, see\nHigh order in this great solemnity.\n\nORLANDO:\nAs I remember, Adam, it was upon this fashion\nbequeathed me by will but poor a thousand crowns,\nand, as thou sayest, charged my brother, on his\nblessing, to breed me well: and there begins my\nsadness. My brother Jaques he keeps at school, and\nreport speaks goldenly of his profit: for my part,\nhe keeps me rustically at home, or, to speak more\nproperly, stays me here at home unkept; for call you\nthat keeping for a gentleman of my birth, that\ndiffers not from the stalling of an ox? His horses\nare bred better; for, besides that they are fair\nwith their feeding, they are taught their manage,\nand to that end riders dearly hired: but I, his\nbrother, gain nothing under him but growth; for the\nwhich his animals on his dunghills are as much\nbound to him as I. Besides this nothing that he so\nplentifully gives me, the something that nature gave\nme his countenance seems to take from me: he lets\nme feed with his hinds, bars me the place of a\nbrother, and, as much as in him lies, mines my\ngentility with my education. This is it, Adam, that\ngrieves me; and the spirit of my father, which I\nthink is within me, begins to mutiny against this\nservitude: I will no longer endure it, though yet I\nknow no wise remedy how to avoid it.\n\nADAM:\nYonder comes my master, your brother.\n\nORLANDO:\nGo apart, Adam, and thou shalt hear how he will\nshake me up.\n\nOLIVER:\nNow, sir! what make you here?\n\nORLANDO:\nNothing: I am not taught to make any thing.\n\nOLIVER:\nWhat mar you then, sir?\n\nORLANDO:\nMarry, sir, I am helping you to mar that which God\nmade, a poor unworthy brother of yours, with idleness.\n\nOLIVER:\nMarry, sir, be better employed, and be naught awhile.\n\nORLANDO:\nShall I keep your hogs and eat husks with them?\nWhat prodigal portion have I spent, that I should\ncome to such penury?\n\nOLIVER:\nKnow you where your are, sir?\n\nORLANDO:\nO, sir, very well; here in your orchard.\n\nOLIVER:\nKnow you before whom, sir?\n\nORLANDO:\nAy, better than him I am before knows me. I know\nyou are my eldest brother; and, in the gentle\ncondition of blood, you should so know me. The\ncourtesy of nations allows you my better, in that\nyou are the first-born; but the same tradition\ntakes not away my blood, were there twenty brothers\nbetwixt us: I have as much of my father in me as\nyou; albeit, I confess, your coming before me is\nnearer to his reverence.\n\nOLIVER:\nWhat, boy!\n\nORLANDO:\nCome, come, elder brother, you are too young in this.\n\nOLIVER:\nWilt thou lay hands on me, villain?\n\nORLANDO:\nI am no villain; I am the youngest son of Sir\nRowland de Boys; he was my father, and he is thrice\na villain that says such a father begot villains.\nWert thou not my brother, I would not take this hand\nfrom thy throat till this other had pulled out thy\ntongue for saying so: thou hast railed on thyself.\n\nADAM:\nSweet masters, be patient: for your father's\nremembrance, be at accord.\n\nOLIVER:\nLet me go, I say.\n\nORLANDO:\nI will not, till I please: you shall hear me. My\nfather charged you in his will to give me good\neducation: you have trained me like a peasant,\nobscuring and hiding from me all gentleman-like\nqualities. The spirit of my father grows strong in\nme, and I will no longer endure it: therefore allow\nme such exercises as may become a gentleman, or\ngive me the poor allottery my father left me by\ntestament; with that I will go buy my fortunes.\n\nOLIVER:\nAnd what wilt thou do? beg, when that is spent?\nWell, sir, get you in: I will not long be troubled\nwith you; you shall have some part of your will: I\npray you, leave me.\n\nORLANDO:\nI will no further offend you than becomes me for my good.\n\nOLIVER:\nGet you with him, you old dog.\n\nADAM:\nIs 'old dog' my reward? Most true, I have lost my\nteeth in your service. God be with my old master!\nhe would not have spoke such a word.\n\nOLIVER:\nIs it even so? begin you to grow upon me? I will\nphysic your rankness, and yet give no thousand\ncrowns neither. Holla, Dennis!\n\nDENNIS:\nCalls your worship?\n\nOLIVER:\nWas not Charles, the duke's wrestler, here to speak with me?\n\nDENNIS:\nSo please you, he is here at the door and importunes\naccess to you.\n\nOLIVER:\nCall him in.\n'Twill be a good way; and to-morrow the wrestling is.\n\nCHARLES:\nGood morrow to your worship.\n\nOLIVER:\nGood Monsieur Charles, what's the new news at the\nnew court?\n\nCHARLES:\nThere's no news at the court, sir, but the old news:\nthat is, the old duke is banished by his younger\nbrother the new duke; and three or four loving lords\nhave put themselves into voluntary exile with him,\nwhose lands and revenues enrich the new duke;\ntherefore he gives them good leave to wander.\n\nOLIVER:\nCan you tell if Rosalind, the duke's daughter, be\nbanished with her father?\n\nCHARLES:\nO, no; for the duke's daughter, her cousin, so loves\nher, being ever from their cradles bred together,\nthat she would have followed her exile, or have died\nto stay behind her. She is at the court, and no\nless beloved of her uncle than his own daughter; and\nnever two ladies loved as they do.\n\nOLIVER:\nWhere will the old duke live?\n\nCHARLES:\nThey say he is already in the forest of Arden, and\na many merry men with him; and there they live like\nthe old Robin Hood of England: they say many young\ngentlemen flock to him every day, and fleet the time\ncarelessly, as they did in the golden world.\n\nOLIVER:\nWhat, you wrestle to-morrow before the new duke?\n\nCHARLES:\nMarry, do I, sir; and I came to acquaint you with a\nmatter. I am given, sir, secretly to understand\nthat your younger brother Orlando hath a disposition\nto come in disguised against me to try a fall.\nTo-morrow, sir, I wrestle for my credit; and he that\nescapes me without some broken limb shall acquit him\nwell. Your brother is but young and tender; and,\nfor your love, I would be loath to foil him, as I\nmust, for my own honour, if he come in: therefore,\nout of my love to you, I came hither to acquaint you\nwithal, that either you might stay him from his\nintendment or brook such disgrace well as he shall\nrun into, in that it is a thing of his own search\nand altogether against my will.\n\nOLIVER:\nCharles, I thank thee for thy love to me, which\nthou shalt find I will most kindly requite. I had\nmyself notice of my brother's purpose herein and\nhave by underhand means laboured to dissuade him from\nit, but he is resolute. I'll tell thee, Charles:\nit is the stubbornest young fellow of France, full\nof ambition, an envious emulator of every man's\ngood parts, a secret and villanous contriver against\nme his natural brother: therefore use thy\ndiscretion; I had as lief thou didst break his neck\nas his finger. And thou wert best look to't; for if\nthou dost him any slight disgrace or if he do not\nmightily grace himself on thee, he will practise\nagainst thee by poison, entrap thee by some\ntreacherous device and never leave thee till he\nhath ta'en thy life by some indirect means or other;\nfor, I assure thee, and almost with tears I speak\nit, there is not one so young and so villanous this\nday living. I speak but brotherly of him; but\nshould I anatomize him to thee as he is, I must\nblush and weep and thou must look pale and wonder.\n\nCHARLES:\nI am heartily glad I came hither to you. If he come\nto-morrow, I'll give him his payment: if ever he go\nalone again, I'll never wrestle for prize more: and\nso God keep your worship!\n\nOLIVER:\nFarewell, good Charles.\nNow will I stir this gamester: I hope I shall see\nan end of him; for my soul, yet I know not why,\nhates nothing more than he. Yet he's gentle, never\nschooled and yet learned, full of noble device, of\nall sorts enchantingly beloved, and indeed so much\nin the heart of the world, and especially of my own\npeople, who best know him, that I am altogether\nmisprised: but it shall not be so long; this\nwrestler shall clear all: nothing remains but that\nI kindle the boy thither; which now I'll go about.\n\nCELIA:\nI pray thee, Rosalind, sweet my coz, be merry.\n\nROSALIND:\nDear Celia, I show more mirth than I am mistress of;\nand would you yet I were merrier? Unless you could\nteach me to forget a banished father, you must not\nlearn me how to remember any extraordinary pleasure.\n\nCELIA:\nHerein I see thou lovest me not with the full weight\nthat I love thee. If my uncle, thy banished father,\nhad banished thy uncle, the duke my father, so thou\nhadst been still with me, I could have taught my\nlove to take thy father for mine: so wouldst thou,\nif the truth of thy love to me were so righteously\ntempered as mine is to thee.\n\nROSALIND:\nWell, I will forget the condition of my estate, to\nrejoice in yours.\n\nCELIA:\nYou know my father hath no child but I, nor none is\nlike to have: and, truly, when he dies, thou shalt\nbe his heir, for what he hath taken away from thy\nfather perforce, I will render thee again in\naffection; by mine honour, I will; and when I break\nthat oath, let me turn monster: therefore, my\nsweet Rose, my dear Rose, be merry.\n\nROSALIND:\nFrom henceforth I will, coz, and devise sports. Let\nme see; what think you of falling in love?\n\nCELIA:\nMarry, I prithee, do, to make sport withal: but\nlove no man in good earnest; nor no further in sport\nneither than with safety of a pure blush thou mayst\nin honour come off again.\n\nROSALIND:\nWhat shall be our sport, then?\n\nCELIA:\nLet us sit and mock the good housewife Fortune from\nher wheel, that her gifts may henceforth be bestowed equally.\n\nROSALIND:\nI would we could do so, for her benefits are\nmightily misplaced, and the bountiful blind woman\ndoth most mistake in her gifts to women.\n\nCELIA:\n'Tis true; for those that she makes fair she scarce\nmakes honest, and those that she makes honest she\nmakes very ill-favouredly.\n\nROSALIND:\nNay, now thou goest from Fortune's office to\nNature's: Fortune reigns in gifts of the world,\nnot in the lineaments of Nature.\n\nCELIA:\nNo? when Nature hath made a fair creature, may she\nnot by Fortune fall into the fire? Though Nature\nhath given us wit to flout at Fortune, hath not\nFortune sent in this fool to cut off the argument?\n\nROSALIND:\nIndeed, there is Fortune too hard for Nature, when\nFortune makes Nature's natural the cutter-off of\nNature's wit.\n\nCELIA:\nPeradventure this is not Fortune's work neither, but\nNature's; who perceiveth our natural wits too dull\nto reason of such goddesses and hath sent this\nnatural for our whetstone; for always the dulness of\nthe fool is the whetstone of the wits. How now,\nwit! whither wander you?\n\nTOUCHSTONE:\nMistress, you must come away to your father.\n\nCELIA:\nWere you made the messenger?\n\nTOUCHSTONE:\nNo, by mine honour, but I was bid to come for you.\n\nROSALIND:\nWhere learned you that oath, fool?\n\nTOUCHSTONE:\nOf a certain knight that swore by his honour they\nwere good pancakes and swore by his honour the\nmustard was naught: now I'll stand to it, the\npancakes were naught and the mustard was good, and\nyet was not the knight forsworn.\n\nCELIA:\nHow prove you that, in the great heap of your\nknowledge?\n\nROSALIND:\nAy, marry, now unmuzzle your wisdom.\n\nTOUCHSTONE:\nStand you both forth now: stroke your chins, and\nswear by your beards that I am a knave.\n\nCELIA:\nBy our beards, if we had them, thou art.\n\nTOUCHSTONE:\nBy my knavery, if I had it, then I were; but if you\nswear by that that is not, you are not forsworn: no\nmore was this knight swearing by his honour, for he\nnever had any; or if he had, he had sworn it away\nbefore ever he saw those pancakes or that mustard.\n\nCELIA:\nPrithee, who is't that thou meanest?\n\nTOUCHSTONE:\nOne that old Frederick, your father, loves.\n\nCELIA:\nMy father's love is enough to honour him: enough!\nspeak no more of him; you'll be whipped for taxation\none of these days.\n\nTOUCHSTONE:\nThe more pity, that fools may not speak wisely what\nwise men do foolishly.\n\nCELIA:\nBy my troth, thou sayest true; for since the little\nwit that fools have was silenced, the little foolery\nthat wise men have makes a great show. Here comes\nMonsieur Le Beau.\n\nROSALIND:\nWith his mouth full of news.\n\nCELIA:\nWhich he will put on us, as pigeons feed their young.\n\nROSALIND:\nThen shall we be news-crammed.\n\nCELIA:\nAll the better; we shall be the more marketable.\nBon jour, Monsieur Le Beau: what's the news?\n\nLE BEAU:\nFair princess, you have lost much good sport.\n\nCELIA:\nSport! of what colour?\n\nLE BEAU:\nWhat colour, madam! how shall I answer you?\n\nROSALIND:\nAs wit and fortune will.\n\nTOUCHSTONE:\nOr as the Destinies decree.\n\nCELIA:\nWell said: that was laid on with a trowel.\n\nTOUCHSTONE:\nNay, if I keep not my rank,--\n\nROSALIND:\nThou losest thy old smell.\n\nLE BEAU:\nYou amaze me, ladies: I would have told you of good\nwrestling, which you have lost the sight of.\n\nROSALIND:\nYou tell us the manner of the wrestling.\n\nLE BEAU:\nI will tell you the beginning; and, if it please\nyour ladyships, you may see the end; for the best is\nyet to do; and here, where you are, they are coming\nto perform it.\n\nCELIA:\nWell, the beginning, that is dead and buried.\n\nLE BEAU:\nThere comes an old man and his three sons,--\n\nCELIA:\nI could match this beginning with an old tale.\n\nLE BEAU:\nThree proper young men, of excellent growth and presence.\n\nROSALIND:\nWith bills on their necks, 'Be it known unto all men\nby these presents.'\n\nLE BEAU:\nThe eldest of the three wrestled with Charles, the\nduke's wrestler; which Charles in a moment threw him\nand broke three of his ribs, that there is little\nhope of life in him: so he served the second, and\nso the third. Yonder they lie; the poor old man,\ntheir father, making such pitiful dole over them\nthat all the beholders take his part with weeping.\n\nROSALIND:\nAlas!\n\nTOUCHSTONE:\nBut what is the sport, monsieur, that the ladies\nhave lost?\n\nLE BEAU:\nWhy, this that I speak of.\n\nTOUCHSTONE:\nThus men may grow wiser every day: it is the first\ntime that ever I heard breaking of ribs was sport\nfor ladies.\n\nCELIA:\nOr I, I promise thee.\n\nROSALIND:\nBut is there any else longs to see this broken music\nin his sides? is there yet another dotes upon\nrib-breaking? Shall we see this wrestling, cousin?\n\nLE BEAU:\nYou must, if you stay here; for here is the place\nappointed for the wrestling, and they are ready to\nperform it.\n\nCELIA:\nYonder, sure, they are coming: let us now stay and see it.\n\nDUKE FREDERICK:\nCome on: since the youth will not be entreated, his\nown peril on his forwardness.\n\nROSALIND:\nIs yonder the man?\n\nLE BEAU:\nEven he, madam.\n\nCELIA:\nAlas, he is too young! yet he looks successfully.\n\nDUKE FREDERICK:\nHow now, daughter and cousin! are you crept hither\nto see the wrestling?\n\nROSALIND:\nAy, my liege, so please you give us leave.\n\nDUKE FREDERICK:\nYou will take little delight in it, I can tell you;\nthere is such odds in the man. In pity of the\nchallenger's youth I would fain dissuade him, but he\nwill not be entreated. Speak to him, ladies; see if\nyou can move him.\n\nCELIA:\nCall him hither, good Monsieur Le Beau.\n\nDUKE FREDERICK:\nDo so: I'll not be by.\n\nLE BEAU:\nMonsieur the challenger, the princesses call for you.\n\nORLANDO:\nI attend them with all respect and duty.\n\nROSALIND:\nYoung man, have you challenged Charles the wrestler?\n\nORLANDO:\nNo, fair princess; he is the general challenger: I\ncome but in, as others do, to try with him the\nstrength of my youth.\n\nCELIA:\nYoung gentleman, your spirits are too bold for your\nyears. You have seen cruel proof of this man's\nstrength: if you saw yourself with your eyes or\nknew yourself with your judgment, the fear of your\nadventure would counsel you to a more equal\nenterprise. We pray you, for your own sake, to\nembrace your own safety and give over this attempt.\n\nROSALIND:\nDo, young sir; your reputation shall not therefore\nbe misprised: we will make it our suit to the duke\nthat the wrestling might not go forward.\n\nORLANDO:\nI beseech you, punish me not with your hard\nthoughts; wherein I confess me much guilty, to deny\nso fair and excellent ladies any thing. But let\nyour fair eyes and gentle wishes go with me to my\ntrial: wherein if I be foiled, there is but one\nshamed that was never gracious; if killed, but one\ndead that was willing to be so: I shall do my\nfriends no wrong, for I have none to lament me, the\nworld no injury, for in it I have nothing; only in\nthe world I fill up a place, which may be better\nsupplied when I have made it empty.\n\nROSALIND:\nThe little strength that I have, I would it were with you.\n\nCELIA:\nAnd mine, to eke out hers.\n\nROSALIND:\nFare you well: pray heaven I be deceived in you!\n\nCELIA:\nYour heart's desires be with you!\n\nCHARLES:\nCome, where is this young gallant that is so\ndesirous to lie with his mother earth?\n\nORLANDO:\nReady, sir; but his will hath in it a more modest working.\n\nDUKE FREDERICK:\nYou shall try but one fall.\n\nCHARLES:\nNo, I warrant your grace, you shall not entreat him\nto a second, that have so mightily persuaded him\nfrom a first.\n\nORLANDO:\nAn you mean to mock me after, you should not have\nmocked me before: but come your ways.\n\nROSALIND:\nNow Hercules be thy speed, young man!\n\nCELIA:\nI would I were invisible, to catch the strong\nfellow by the leg.\n\nROSALIND:\nO excellent young man!\n\nCELIA:\nIf I had a thunderbolt in mine eye, I can tell who\nshould down.\n\nDUKE FREDERICK:\nNo more, no more.\n\nORLANDO:\nYes, I beseech your grace: I am not yet well breathed.\n\nDUKE FREDERICK:\nHow dost thou, Charles?\n\nLE BEAU:\nHe cannot speak, my lord.\n\nDUKE FREDERICK:\nBear him away. What is thy name, young man?\n\nORLANDO:\nOrlando, my liege; the youngest son of Sir Rowland de Boys.\n\nDUKE FREDERICK:\nI would thou hadst been son to some man else:\nThe world esteem'd thy father honourable,\nBut I did find him still mine enemy:\nThou shouldst have better pleased me with this deed,\nHadst thou descended from another house.\nBut fare thee well; thou art a gallant youth:\nI would thou hadst told me of another father.\n\nCELIA:\nWere I my father, coz, would I do this?\n\nORLANDO:\nI am more proud to be Sir Rowland's son,\nHis youngest son; and would not change that calling,\nTo be adopted heir to Frederick.\n\nROSALIND:\nMy father loved Sir Rowland as his soul,\nAnd all the world was of my father's mind:\nHad I before known this young man his son,\nI should have given him tears unto entreaties,\nEre he should thus have ventured.\n\nCELIA:\nGentle cousin,\nLet us go thank him and encourage him:\nMy father's rough and envious disposition\nSticks me at heart. Sir, you have well deserved:\nIf you do keep your promises in love\nBut justly, as you have exceeded all promise,\nYour mistress shall be happy.\n\nROSALIND:\nGentleman,\nWear this for me, one out of suits with fortune,\nThat could give more, but that her hand lacks means.\nShall we go, coz?\n\nCELIA:\nAy. Fare you well, fair gentleman.\n\nORLANDO:\nCan I not say, I thank you? My better parts\nAre all thrown down, and that which here stands up\nIs but a quintain, a mere lifeless block.\n\nROSALIND:\nHe calls us back: my pride fell with my fortunes;\nI'll ask him what he would. Did you call, sir?\nSir, you have wrestled well and overthrown\nMore than your enemies.\n\nCELIA:\nWill you go, coz?\n\nROSALIND:\nHave with you. Fare you well.\n\nORLANDO:\nWhat passion hangs these weights upon my tongue?\nI cannot speak to her, yet she urged conference.\nO poor Orlando, thou art overthrown!\nOr Charles or something weaker masters thee.\n\nLE BEAU:\nGood sir, I do in friendship counsel you\nTo leave this place. Albeit you have deserved\nHigh commendation, true applause and love,\nYet such is now the duke's condition\nThat he misconstrues all that you have done.\nThe duke is humorous; what he is indeed,\nMore suits you to conceive than I to speak of.\n\nORLANDO:\nI thank you, sir: and, pray you, tell me this:\nWhich of the two was daughter of the duke\nThat here was at the wrestling?\n\nLE BEAU:\nNeither his daughter, if we judge by manners;\nBut yet indeed the lesser is his daughter\nThe other is daughter to the banish'd duke,\nAnd here detain'd by her usurping uncle,\nTo keep his daughter company; whose loves\nAre dearer than the natural bond of sisters.\nBut I can tell you that of late this duke\nHath ta'en displeasure 'gainst his gentle niece,\nGrounded upon no other argument\nBut that the people praise her for her virtues\nAnd pity her for her good father's sake;\nAnd, on my life, his malice 'gainst the lady\nWill suddenly break forth. Sir, fare you well:\nHereafter, in a better world than this,\nI shall desire more love and knowledge of you.\n\nORLANDO:\nI rest much bounden to you: fare you well.\nThus must I from the smoke into the smother;\nFrom tyrant duke unto a tyrant brother:\nBut heavenly Rosalind!\n\nCELIA:\nWhy, cousin! why, Rosalind! Cupid have mercy! not a word?\n\nROSALIND:\nNot one to throw at a dog.\n\nCELIA:\nNo, thy words are too precious to be cast away upon\ncurs; throw some of them at me; come, lame me with reasons.\n\nROSALIND:\nThen there were two cousins laid up; when the one\nshould be lamed with reasons and the other mad\nwithout any.\n\nCELIA:\nBut is all this for your father?\n\nROSALIND:\nNo, some of it is for my child's father. O, how\nfull of briers is this working-day world!\n\nCELIA:\nThey are but burs, cousin, thrown upon thee in\nholiday foolery: if we walk not in the trodden\npaths our very petticoats will catch them.\n\nROSALIND:\nI could shake them off my coat: these burs are in my heart.\n\nCELIA:\nHem them away.\n\nROSALIND:\nI would try, if I could cry 'hem' and have him.\n\nCELIA:\nCome, come, wrestle with thy affections.\n\nROSALIND:\nO, they take the part of a better wrestler than myself!\n\nCELIA:\nO, a good wish upon you! you will try in time, in\ndespite of a fall. But, turning these jests out of\nservice, let us talk in good earnest: is it\npossible, on such a sudden, you should fall into so\nstrong a liking with old Sir Rowland's youngest son?\n\nROSALIND:\nThe duke my father loved his father dearly.\n\nCELIA:\nDoth it therefore ensue that you should love his son\ndearly? By this kind of chase, I should hate him,\nfor my father hated his father dearly; yet I hate\nnot Orlando.\n\nROSALIND:\nNo, faith, hate him not, for my sake.\n\nCELIA:\nWhy should I not? doth he not deserve well?\n\nROSALIND:\nLet me love him for that, and do you love him\nbecause I do. Look, here comes the duke.\n\nCELIA:\nWith his eyes full of anger.\n\nDUKE FREDERICK:\nMistress, dispatch you with your safest haste\nAnd get you from our court.\n\nROSALIND:\nMe, uncle?\n\nDUKE FREDERICK:\nYou, cousin\nWithin these ten days if that thou be'st found\nSo near our public court as twenty miles,\nThou diest for it.\n\nROSALIND:\nI do beseech your grace,\nLet me the knowledge of my fault bear with me:\nIf with myself I hold intelligence\nOr have acquaintance with mine own desires,\nIf that I do not dream or be not frantic,--\nAs I do trust I am not--then, dear uncle,\nNever so much as in a thought unborn\nDid I offend your highness.\n\nDUKE FREDERICK:\nThus do all traitors:\nIf their purgation did consist in words,\nThey are as innocent as grace itself:\nLet it suffice thee that I trust thee not.\n\nROSALIND:\nYet your mistrust cannot make me a traitor:\nTell me whereon the likelihood depends.\n\nDUKE FREDERICK:\nThou art thy father's daughter; there's enough.\n\nROSALIND:\nSo was I when your highness took his dukedom;\nSo was I when your highness banish'd him:\nTreason is not inherited, my lord;\nOr, if we did derive it from our friends,\nWhat's that to me? my father was no traitor:\nThen, good my liege, mistake me not so much\nTo think my poverty is treacherous.\n\nCELIA:\nDear sovereign, hear me speak.\n\nDUKE FREDERICK:\nAy, Celia; we stay'd her for your sake,\nElse had she with her father ranged along.\n\nCELIA:\nI did not then entreat to have her stay;\nIt was your pleasure and your own remorse:\nI was too young that time to value her;\nBut now I know her: if she be a traitor,\nWhy so am I; we still have slept together,\nRose at an instant, learn'd, play'd, eat together,\nAnd wheresoever we went, like Juno's swans,\nStill we went coupled and inseparable.\n\nDUKE FREDERICK:\nShe is too subtle for thee; and her smoothness,\nHer very silence and her patience\nSpeak to the people, and they pity her.\nThou art a fool: she robs thee of thy name;\nAnd thou wilt show more bright and seem more virtuous\nWhen she is gone. Then open not thy lips:\nFirm and irrevocable is my doom\nWhich I have pass'd upon her; she is banish'd.\n\nCELIA:\nPronounce that sentence then on me, my liege:\nI cannot live out of her company.\n\nDUKE FREDERICK:\nYou are a fool. You, niece, provide yourself:\nIf you outstay the time, upon mine honour,\nAnd in the greatness of my word, you die.\n\nCELIA:\nO my poor Rosalind, whither wilt thou go?\nWilt thou change fathers? I will give thee mine.\nI charge thee, be not thou more grieved than I am.\n\nROSALIND:\nI have more cause.\n\nCELIA:\nThou hast not, cousin;\nPrithee be cheerful: know'st thou not, the duke\nHath banish'd me, his daughter?\n\nROSALIND:\nThat he hath not.\n\nCELIA:\nNo, hath not? Rosalind lacks then the love\nWhich teacheth thee that thou and I am one:\nShall we be sunder'd? shall we part, sweet girl?\nNo: let my father seek another heir.\nTherefore devise with me how we may fly,\nWhither to go and what to bear with us;\nAnd do not seek to take your change upon you,\nTo bear your griefs yourself and leave me out;\nFor, by this heaven, now at our sorrows pale,\nSay what thou canst, I'll go along with thee.\n\nROSALIND:\nWhy, whither shall we go?\n\nCELIA:\nTo seek my uncle in the forest of Arden.\n\nROSALIND:\nAlas, what danger will it be to us,\nMaids as we are, to travel forth so far!\nBeauty provoketh thieves sooner than gold.\n\nCELIA:\nI'll put myself in poor and mean attire\nAnd with a kind of umber smirch my face;\nThe like do you: so shall we pass along\nAnd never stir assailants.\n\nROSALIND:\nWere it not better,\nBecause that I am more than common tall,\nThat I did suit me all points like a man?\nA gallant curtle-axe upon my thigh,\nA boar-spear in my hand; and--in my heart\nLie there what hidden woman's fear there will--\nWe'll have a swashing and a martial outside,\nAs many other mannish cowards have\nThat do outface it with their semblances.\n\nCELIA:\nWhat shall I call thee when thou art a man?\n\nROSALIND:\nI'll have no worse a name than Jove's own page;\nAnd therefore look you call me Ganymede.\nBut what will you be call'd?\n\nCELIA:\nSomething that hath a reference to my state\nNo longer Celia, but Aliena.\n\nROSALIND:\nBut, cousin, what if we assay'd to steal\nThe clownish fool out of your father's court?\nWould he not be a comfort to our travel?\n\nCELIA:\nHe'll go along o'er the wide world with me;\nLeave me alone to woo him. Let's away,\nAnd get our jewels and our wealth together,\nDevise the fittest time and safest way\nTo hide us from pursuit that will be made\nAfter my flight. Now go we in content\nTo liberty and not to banishment.\n\nDUKE SENIOR:\nNow, my co-mates and brothers in exile,\nHath not old custom made this life more sweet\nThan that of painted pomp? Are not these woods\nMore free from peril than the envious court?\nHere feel we but the penalty of Adam,\nThe seasons' difference, as the icy fang\nAnd churlish chiding of the winter's wind,\nWhich, when it bites and blows upon my body,\nEven till I shrink with cold, I smile and say\n'This is no flattery: these are counsellors\nThat feelingly persuade me what I am.'\nSweet are the uses of adversity,\nWhich, like the toad, ugly and venomous,\nWears yet a precious jewel in his head;\nAnd this our life exempt from public haunt\nFinds tongues in trees, books in the running brooks,\nSermons in stones and good in every thing.\nI would not change it.\n\nAMIENS:\nHappy is your grace,\nThat can translate the stubbornness of fortune\nInto so quiet and so sweet a style.\n\nDUKE SENIOR:\nCome, shall we go and kill us venison?\nAnd yet it irks me the poor dappled fools,\nBeing native burghers of this desert city,\nShould in their own confines with forked heads\nHave their round haunches gored.\n\nFirst Lord:\nIndeed, my lord,\nThe melancholy Jaques grieves at that,\nAnd, in that kind, swears you do more usurp\nThan doth your brother that hath banish'd you.\nTo-day my Lord of Amiens and myself\nDid steal behind him as he lay along\nUnder an oak whose antique root peeps out\nUpon the brook that brawls along this wood:\nTo the which place a poor sequester'd stag,\nThat from the hunter's aim had ta'en a hurt,\nDid come to languish, and indeed, my lord,\nThe wretched animal heaved forth such groans\nThat their discharge did stretch his leathern coat\nAlmost to bursting, and the big round tears\nCoursed one another down his innocent nose\nIn piteous chase; and thus the hairy fool\nMuch marked of the melancholy Jaques,\nStood on the extremest verge of the swift brook,\nAugmenting it with tears.\n\nDUKE SENIOR:\nBut what said Jaques?\nDid he not moralize this spectacle?\n\nFirst Lord:\nO, yes, into a thousand similes.\nFirst, for his weeping into the needless stream;\n'Poor deer,' quoth he, 'thou makest a testament\nAs worldlings do, giving thy sum of more\nTo that which had too much:' then, being there alone,\nLeft and abandon'd of his velvet friends,\n''Tis right:' quoth he; 'thus misery doth part\nThe flux of company:' anon a careless herd,\nFull of the pasture, jumps along by him\nAnd never stays to greet him; 'Ay' quoth Jaques,\n'Sweep on, you fat and greasy citizens;\n'Tis just the fashion: wherefore do you look\nUpon that poor and broken bankrupt there?'\nThus most invectively he pierceth through\nThe body of the country, city, court,\nYea, and of this our life, swearing that we\nAre mere usurpers, tyrants and what's worse,\nTo fright the animals and to kill them up\nIn their assign'd and native dwelling-place.\n\nDUKE SENIOR:\nAnd did you leave him in this contemplation?\n\nSecond Lord:\nWe did, my lord, weeping and commenting\nUpon the sobbing deer.\n\nDUKE SENIOR:\nShow me the place:\nI love to cope him in these sullen fits,\nFor then he's full of matter.\n\nFirst Lord:\nI'll bring you to him straight.\n\nDUKE FREDERICK:\nCan it be possible that no man saw them?\nIt cannot be: some villains of my court\nAre of consent and sufferance in this.\n\nFirst Lord:\nI cannot hear of any that did see her.\nThe ladies, her attendants of her chamber,\nSaw her abed, and in the morning early\nThey found the bed untreasured of their mistress.\n\nSecond Lord:\nMy lord, the roynish clown, at whom so oft\nYour grace was wont to laugh, is also missing.\nHisperia, the princess' gentlewoman,\nConfesses that she secretly o'erheard\nYour daughter and her cousin much commend\nThe parts and graces of the wrestler\nThat did but lately foil the sinewy Charles;\nAnd she believes, wherever they are gone,\nThat youth is surely in their company.\n\nDUKE FREDERICK:\nSend to his brother; fetch that gallant hither;\nIf he be absent, bring his brother to me;\nI'll make him find him: do this suddenly,\nAnd let not search and inquisition quail\nTo bring again these foolish runaways.\n\nORLANDO:\nWho's there?\n\nADAM:\nWhat, my young master? O, my gentle master!\nO my sweet master! O you memory\nOf old Sir Rowland! why, what make you here?\nWhy are you virtuous? why do people love you?\nAnd wherefore are you gentle, strong and valiant?\nWhy would you be so fond to overcome\nThe bonny priser of the humorous duke?\nYour praise is come too swiftly home before you.\nKnow you not, master, to some kind of men\nTheir graces serve them but as enemies?\nNo more do yours: your virtues, gentle master,\nAre sanctified and holy traitors to you.\nO, what a world is this, when what is comely\nEnvenoms him that bears it!\n\nORLANDO:\nWhy, what's the matter?\n\nADAM:\nO unhappy youth!\nCome not within these doors; within this roof\nThe enemy of all your graces lives:\nYour brother--no, no brother; yet the son--\nYet not the son, I will not call him son\nOf him I was about to call his father--\nHath heard your praises, and this night he means\nTo burn the lodging where you use to lie\nAnd you within it: if he fail of that,\nHe will have other means to cut you off.\nI overheard him and his practises.\nThis is no place; this house is but a butchery:\nAbhor it, fear it, do not enter it.\n\nORLANDO:\nWhy, whither, Adam, wouldst thou have me go?\n\nADAM:\nNo matter whither, so you come not here.\n\nORLANDO:\nWhat, wouldst thou have me go and beg my food?\nOr with a base and boisterous sword enforce\nA thievish living on the common road?\nThis I must do, or know not what to do:\nYet this I will not do, do how I can;\nI rather will subject me to the malice\nOf a diverted blood and bloody brother.\n\nADAM:\nBut do not so. I have five hundred crowns,\nThe thrifty hire I saved under your father,\nWhich I did store to be my foster-nurse\nWhen service should in my old limbs lie lame\nAnd unregarded age in corners thrown:\nTake that, and He that doth the ravens feed,\nYea, providently caters for the sparrow,\nBe comfort to my age! Here is the gold;\nAnd all this I give you. Let me be your servant:\nThough I look old, yet I am strong and lusty;\nFor in my youth I never did apply\nHot and rebellious liquors in my blood,\nNor did not with unbashful forehead woo\nThe means of weakness and debility;\nTherefore my age is as a lusty winter,\nFrosty, but kindly: let me go with you;\nI'll do the service of a younger man\nIn all your business and necessities.\n\nORLANDO:\nO good old man, how well in thee appears\nThe constant service of the antique world,\nWhen service sweat for duty, not for meed!\nThou art not for the fashion of these times,\nWhere none will sweat but for promotion,\nAnd having that, do choke their service up\nEven with the having: it is not so with thee.\nBut, poor old man, thou prunest a rotten tree,\nThat cannot so much as a blossom yield\nIn lieu of all thy pains and husbandry\nBut come thy ways; well go along together,\nAnd ere we have thy youthful wages spent,\nWe'll light upon some settled low content.\n\nADAM:\nMaster, go on, and I will follow thee,\nTo the last gasp, with truth and loyalty.\nFrom seventeen years till now almost fourscore\nHere lived I, but now live here no more.\nAt seventeen years many their fortunes seek;\nBut at fourscore it is too late a week:\nYet fortune cannot recompense me better\nThan to die well and not my master's debtor.\n\nROSALIND:\nO Jupiter, how weary are my spirits!\n\nTOUCHSTONE:\nI care not for my spirits, if my legs were not weary.\n\nROSALIND:\nI could find in my heart to disgrace my man's\napparel and to cry like a woman; but I must comfort\nthe weaker vessel, as doublet and hose ought to show\nitself courageous to petticoat: therefore courage,\ngood Aliena!\n\nCELIA:\nI pray you, bear with me; I cannot go no further.\n\nTOUCHSTONE:\nFor my part, I had rather bear with you than bear\nyou; yet I should bear no cross if I did bear you,\nfor I think you have no money in your purse.\n\nROSALIND:\nWell, this is the forest of Arden.\n\nTOUCHSTONE:\nAy, now am I in Arden; the more fool I; when I was\nat home, I was in a better place: but travellers\nmust be content.\n\nROSALIND:\nAy, be so, good Touchstone.\nLook you, who comes here; a young man and an old in\nsolemn talk.\n\nCORIN:\nThat is the way to make her scorn you still.\n\nSILVIUS:\nO Corin, that thou knew'st how I do love her!\n\nCORIN:\nI partly guess; for I have loved ere now.\n\nSILVIUS:\nNo, Corin, being old, thou canst not guess,\nThough in thy youth thou wast as true a lover\nAs ever sigh'd upon a midnight pillow:\nBut if thy love were ever like to mine--\nAs sure I think did never man love so--\nHow many actions most ridiculous\nHast thou been drawn to by thy fantasy?\n\nCORIN:\nInto a thousand that I have forgotten.\n\nSILVIUS:\nO, thou didst then ne'er love so heartily!\nIf thou remember'st not the slightest folly\nThat ever love did make thee run into,\nThou hast not loved:\nOr if thou hast not sat as I do now,\nWearying thy hearer in thy mistress' praise,\nThou hast not loved:\nOr if thou hast not broke from company\nAbruptly, as my passion now makes me,\nThou hast not loved.\nO Phebe, Phebe, Phebe!\n\nROSALIND:\nAlas, poor shepherd! searching of thy wound,\nI have by hard adventure found mine own.\n\nTOUCHSTONE:\nAnd I mine. I remember, when I was in love I broke\nmy sword upon a stone and bid him take that for\ncoming a-night to Jane Smile; and I remember the\nkissing of her batlet and the cow's dugs that her\npretty chopt hands had milked; and I remember the\nwooing of a peascod instead of her, from whom I took\ntwo cods and, giving her them again, said with\nweeping tears 'Wear these for my sake.' We that are\ntrue lovers run into strange capers; but as all is\nmortal in nature, so is all nature in love mortal in folly.\n\nROSALIND:\nThou speakest wiser than thou art ware of.\n\nTOUCHSTONE:\nNay, I shall ne'er be ware of mine own wit till I\nbreak my shins against it.\n\nROSALIND:\nJove, Jove! this shepherd's passion\nIs much upon my fashion.\n\nTOUCHSTONE:\nAnd mine; but it grows something stale with me.\n\nCELIA:\nI pray you, one of you question yond man\nIf he for gold will give us any food:\nI faint almost to death.\n\nTOUCHSTONE:\nHolla, you clown!\n\nROSALIND:\nPeace, fool: he's not thy kinsman.\n\nCORIN:\nWho calls?\n\nTOUCHSTONE:\nYour betters, sir.\n\nCORIN:\nElse are they very wretched.\n\nROSALIND:\nPeace, I say. Good even to you, friend.\n\nCORIN:\nAnd to you, gentle sir, and to you all.\n\nROSALIND:\nI prithee, shepherd, if that love or gold\nCan in this desert place buy entertainment,\nBring us where we may rest ourselves and feed:\nHere's a young maid with travel much oppress'd\nAnd faints for succor.\n\nCORIN:\nFair sir, I pity her\nAnd wish, for her sake more than for mine own,\nMy fortunes were more able to relieve her;\nBut I am shepherd to another man\nAnd do not shear the fleeces that I graze:\nMy master is of churlish disposition\nAnd little recks to find the way to heaven\nBy doing deeds of hospitality:\nBesides, his cote, his flocks and bounds of feed\nAre now on sale, and at our sheepcote now,\nBy reason of his absence, there is nothing\nThat you will feed on; but what is, come see.\nAnd in my voice most welcome shall you be.\n\nROSALIND:\nWhat is he that shall buy his flock and pasture?\n\nCORIN:\nThat young swain that you saw here but erewhile,\nThat little cares for buying any thing.\n\nROSALIND:\nI pray thee, if it stand with honesty,\nBuy thou the cottage, pasture and the flock,\nAnd thou shalt have to pay for it of us.\n\nCELIA:\nAnd we will mend thy wages. I like this place.\nAnd willingly could waste my time in it.\n\nCORIN:\nAssuredly the thing is to be sold:\nGo with me: if you like upon report\nThe soil, the profit and this kind of life,\nI will your very faithful feeder be\nAnd buy it with your gold right suddenly.\n\nAMIENS:\nUnder the greenwood tree\nWho loves to lie with me,\nAnd turn his merry note\nUnto the sweet bird's throat,\nCome hither, come hither, come hither:\nHere shall he see No enemy\nBut winter and rough weather.\n\nJAQUES:\nMore, more, I prithee, more.\n\nAMIENS:\nIt will make you melancholy, Monsieur Jaques.\n\nJAQUES:\nI thank it. More, I prithee, more. I can suck\nmelancholy out of a song, as a weasel sucks eggs.\nMore, I prithee, more.\n\nAMIENS:\nMy voice is ragged: I know I cannot please you.\n\nJAQUES:\nI do not desire you to please me; I do desire you to\nsing. Come, more; another stanzo: call you 'em stanzos?\n\nAMIENS:\nWhat you will, Monsieur Jaques.\n\nJAQUES:\nNay, I care not for their names; they owe me\nnothing. Will you sing?\n\nAMIENS:\nMore at your request than to please myself.\n\nJAQUES:\nWell then, if ever I thank any man, I'll thank you;\nbut that they call compliment is like the encounter\nof two dog-apes, and when a man thanks me heartily,\nmethinks I have given him a penny and he renders me\nthe beggarly thanks. Come, sing; and you that will\nnot, hold your tongues.\n\nAMIENS:\nWell, I'll end the song. Sirs, cover the while; the\nduke will drink under this tree. He hath been all\nthis day to look you.\n\nJAQUES:\nAnd I have been all this day to avoid him. He is\ntoo disputable for my company: I think of as many\nmatters as he, but I give heaven thanks and make no\nboast of them. Come, warble, come.\nWho doth ambition shun\nAnd loves to live i' the sun,\nSeeking the food he eats\nAnd pleased with what he gets,\nCome hither, come hither, come hither:\nHere shall he see No enemy\nBut winter and rough weather.\n\nJAQUES:\nI'll give you a verse to this note that I made\nyesterday in despite of my invention.\n\nAMIENS:\nAnd I'll sing it.\n\nJAQUES:\nThus it goes:--\nIf it do come to pass\nThat any man turn ass,\nLeaving his wealth and ease,\nA stubborn will to please,\nDucdame, ducdame, ducdame:\nHere shall he see\nGross fools as he,\nAn if he will come to me.\n\nAMIENS:\nWhat's that 'ducdame'?\n\nJAQUES:\n'Tis a Greek invocation, to call fools into a\ncircle. I'll go sleep, if I can; if I cannot, I'll\nrail against all the first-born of Egypt.\n\nAMIENS:\nAnd I'll go seek the duke: his banquet is prepared.\n\nADAM:\nDear master, I can go no further. O, I die for food!\nHere lie I down, and measure out my grave. Farewell,\nkind master.\n\nORLANDO:\nWhy, how now, Adam! no greater heart in thee? Live\na little; comfort a little; cheer thyself a little.\nIf this uncouth forest yield any thing savage, I\nwill either be food for it or bring it for food to\nthee. Thy conceit is nearer death than thy powers.\nFor my sake be comfortable; hold death awhile at\nthe arm's end: I will here be with thee presently;\nand if I bring thee not something to eat, I will\ngive thee leave to die: but if thou diest before I\ncome, thou art a mocker of my labour. Well said!\nthou lookest cheerly, and I'll be with thee quickly.\nYet thou liest in the bleak air: come, I will bear\nthee to some shelter; and thou shalt not die for\nlack of a dinner, if there live any thing in this\ndesert. Cheerly, good Adam!\n\nDUKE SENIOR:\nI think he be transform'd into a beast;\nFor I can no where find him like a man.\n\nFirst Lord:\nMy lord, he is but even now gone hence:\nHere was he merry, hearing of a song.\n\nDUKE SENIOR:\nIf he, compact of jars, grow musical,\nWe shall have shortly discord in the spheres.\nGo, seek him: tell him I would speak with him.\n\nFirst Lord:\nHe saves my labour by his own approach.\n\nDUKE SENIOR:\nWhy, how now, monsieur! what a life is this,\nThat your poor friends must woo your company?\nWhat, you look merrily!\n\nJAQUES:\nA fool, a fool! I met a fool i' the forest,\nA motley fool; a miserable world!\nAs I do live by food, I met a fool\nWho laid him down and bask'd him in the sun,\nAnd rail'd on Lady Fortune in good terms,\nIn good set terms and yet a motley fool.\n'Good morrow, fool,' quoth I. 'No, sir,' quoth he,\n'Call me not fool till heaven hath sent me fortune:'\nAnd then he drew a dial from his poke,\nAnd, looking on it with lack-lustre eye,\nSays very wisely, 'It is ten o'clock:\nThus we may see,' quoth he, 'how the world wags:\n'Tis but an hour ago since it was nine,\nAnd after one hour more 'twill be eleven;\nAnd so, from hour to hour, we ripe and ripe,\nAnd then, from hour to hour, we rot and rot;\nAnd thereby hangs a tale.' When I did hear\nThe motley fool thus moral on the time,\nMy lungs began to crow like chanticleer,\nThat fools should be so deep-contemplative,\nAnd I did laugh sans intermission\nAn hour by his dial. O noble fool!\nA worthy fool! Motley's the only wear.\n\nDUKE SENIOR:\nWhat fool is this?\n\nJAQUES:\nO worthy fool! One that hath been a courtier,\nAnd says, if ladies be but young and fair,\nThey have the gift to know it: and in his brain,\nWhich is as dry as the remainder biscuit\nAfter a voyage, he hath strange places cramm'd\nWith observation, the which he vents\nIn mangled forms. O that I were a fool!\nI am ambitious for a motley coat.\n\nDUKE SENIOR:\nThou shalt have one.\n\nJAQUES:\nIt is my only suit;\nProvided that you weed your better judgments\nOf all opinion that grows rank in them\nThat I am wise. I must have liberty\nWithal, as large a charter as the wind,\nTo blow on whom I please; for so fools have;\nAnd they that are most galled with my folly,\nThey most must laugh. And why, sir, must they so?\nThe 'why' is plain as way to parish church:\nHe that a fool doth very wisely hit\nDoth very foolishly, although he smart,\nNot to seem senseless of the bob: if not,\nThe wise man's folly is anatomized\nEven by the squandering glances of the fool.\nInvest me in my motley; give me leave\nTo speak my mind, and I will through and through\nCleanse the foul body of the infected world,\nIf they will patiently receive my medicine.\n\nDUKE SENIOR:\nFie on thee! I can tell what thou wouldst do.\n\nJAQUES:\nWhat, for a counter, would I do but good?\n\nDUKE SENIOR:\nMost mischievous foul sin, in chiding sin:\nFor thou thyself hast been a libertine,\nAs sensual as the brutish sting itself;\nAnd all the embossed sores and headed evils,\nThat thou with licence of free foot hast caught,\nWouldst thou disgorge into the general world.\n\nJAQUES:\nWhy, who cries out on pride,\nThat can therein tax any private party?\nDoth it not flow as hugely as the sea,\nTill that the weary very means do ebb?\nWhat woman in the city do I name,\nWhen that I say the city-woman bears\nThe cost of princes on unworthy shoulders?\nWho can come in and say that I mean her,\nWhen such a one as she such is her neighbour?\nOr what is he of basest function\nThat says his bravery is not of my cost,\nThinking that I mean him, but therein suits\nHis folly to the mettle of my speech?\nThere then; how then? what then? Let me see wherein\nMy tongue hath wrong'd him: if it do him right,\nThen he hath wrong'd himself; if he be free,\nWhy then my taxing like a wild-goose flies,\nUnclaim'd of any man. But who comes here?\n\nORLANDO:\nForbear, and eat no more.\n\nJAQUES:\nWhy, I have eat none yet.\n\nORLANDO:\nNor shalt not, till necessity be served.\n\nJAQUES:\nOf what kind should this cock come of?\n\nDUKE SENIOR:\nArt thou thus bolden'd, man, by thy distress,\nOr else a rude despiser of good manners,\nThat in civility thou seem'st so empty?\n\nORLANDO:\nYou touch'd my vein at first: the thorny point\nOf bare distress hath ta'en from me the show\nOf smooth civility: yet am I inland bred\nAnd know some nurture. But forbear, I say:\nHe dies that touches any of this fruit\nTill I and my affairs are answered.\n\nJAQUES:\nAn you will not be answered with reason, I must die.\n\nDUKE SENIOR:\nWhat would you have? Your gentleness shall force\nMore than your force move us to gentleness.\n\nORLANDO:\nI almost die for food; and let me have it.\n\nDUKE SENIOR:\nSit down and feed, and welcome to our table.\n\nORLANDO:\nSpeak you so gently? Pardon me, I pray you:\nI thought that all things had been savage here;\nAnd therefore put I on the countenance\nOf stern commandment. But whate'er you are\nThat in this desert inaccessible,\nUnder the shade of melancholy boughs,\nLose and neglect the creeping hours of time\nIf ever you have look'd on better days,\nIf ever been where bells have knoll'd to church,\nIf ever sat at any good man's feast,\nIf ever from your eyelids wiped a tear\nAnd know what 'tis to pity and be pitied,\nLet gentleness my strong enforcement be:\nIn the which hope I blush, and hide my sword.\n\nDUKE SENIOR:\nTrue is it that we have seen better days,\nAnd have with holy bell been knoll'd to church\nAnd sat at good men's feasts and wiped our eyes\nOf drops that sacred pity hath engender'd:\nAnd therefore sit you down in gentleness\nAnd take upon command what help we have\nThat to your wanting may be minister'd.\n\nORLANDO:\nThen but forbear your food a little while,\nWhiles, like a doe, I go to find my fawn\nAnd give it food. There is an old poor man,\nWho after me hath many a weary step\nLimp'd in pure love: till he be first sufficed,\nOppress'd with two weak evils, age and hunger,\nI will not touch a bit.\n\nDUKE SENIOR:\nGo find him out,\nAnd we will nothing waste till you return.\n\nORLANDO:\nI thank ye; and be blest for your good comfort!\n\nDUKE SENIOR:\nThou seest we are not all alone unhappy:\nThis wide and universal theatre\nPresents more woeful pageants than the scene\nWherein we play in.\n\nJAQUES:\nAll the world's a stage,\nAnd all the men and women merely players:\nThey have their exits and their entrances;\nAnd one man in his time plays many parts,\nHis acts being seven ages. At first the infant,\nMewling and puking in the nurse's arms.\nAnd then the whining school-boy, with his satchel\nAnd shining morning face, creeping like snail\nUnwillingly to school. And then the lover,\nSighing like furnace, with a woeful ballad\nMade to his mistress' eyebrow. Then a soldier,\nFull of strange oaths and bearded like the pard,\nJealous in honour, sudden and quick in quarrel,\nSeeking the bubble reputation\nEven in the cannon's mouth. And then the justice,\nIn fair round belly with good capon lined,\nWith eyes severe and beard of formal cut,\nFull of wise saws and modern instances;\nAnd so he plays his part. The sixth age shifts\nInto the lean and slipper'd pantaloon,\nWith spectacles on nose and pouch on side,\nHis youthful hose, well saved, a world too wide\nFor his shrunk shank; and his big manly voice,\nTurning again toward childish treble, pipes\nAnd whistles in his sound. Last scene of all,\nThat ends this strange eventful history,\nIs second childishness and mere oblivion,\nSans teeth, sans eyes, sans taste, sans everything.\n\nDUKE SENIOR:\nWelcome. Set down your venerable burthen,\nAnd let him feed.\n\nORLANDO:\nI thank you most for him.\n\nADAM:\nSo had you need:\nI scarce can speak to thank you for myself.\n\nDUKE SENIOR:\nWelcome; fall to: I will not trouble you\nAs yet, to question you about your fortunes.\nGive us some music; and, good cousin, sing.\n\nAMIENS:\nBlow, blow, thou winter wind.\nThou art not so unkind\nAs man's ingratitude;\nThy tooth is not so keen,\nBecause thou art not seen,\nAlthough thy breath be rude.\nHeigh-ho! sing, heigh-ho! unto the green holly:\nMost friendship is feigning, most loving mere folly:\nThen, heigh-ho, the holly!\nThis life is most jolly.\nFreeze, freeze, thou bitter sky,\nThat dost not bite so nigh\nAs benefits forgot:\nThough thou the waters warp,\nThy sting is not so sharp\nAs friend remember'd not.\nHeigh-ho! sing, &c.\n\nDUKE SENIOR:\nIf that you were the good Sir Rowland's son,\nAs you have whisper'd faithfully you were,\nAnd as mine eye doth his effigies witness\nMost truly limn'd and living in your face,\nBe truly welcome hither: I am the duke\nThat loved your father: the residue of your fortune,\nGo to my cave and tell me. Good old man,\nThou art right welcome as thy master is.\nSupport him by the arm. Give me your hand,\nAnd let me all your fortunes understand.\n\nDUKE FREDERICK:\nNot see him since? Sir, sir, that cannot be:\nBut were I not the better part made mercy,\nI should not seek an absent argument\nOf my revenge, thou present. But look to it:\nFind out thy brother, wheresoe'er he is;\nSeek him with candle; bring him dead or living\nWithin this twelvemonth, or turn thou no more\nTo seek a living in our territory.\nThy lands and all things that thou dost call thine\nWorth seizure do we seize into our hands,\nTill thou canst quit thee by thy brothers mouth\nOf what we think against thee.\n\nOLIVER:\nO that your highness knew my heart in this!\nI never loved my brother in my life.\n\nDUKE FREDERICK:\nMore villain thou. Well, push him out of doors;\nAnd let my officers of such a nature\nMake an extent upon his house and lands:\nDo this expediently and turn him going.\n\nORLANDO:\nHang there, my verse, in witness of my love:\nAnd thou, thrice-crowned queen of night, survey\nWith thy chaste eye, from thy pale sphere above,\nThy huntress' name that my full life doth sway.\nO Rosalind! these trees shall be my books\nAnd in their barks my thoughts I'll character;\nThat every eye which in this forest looks\nShall see thy virtue witness'd every where.\nRun, run, Orlando; carve on every tree\nThe fair, the chaste and unexpressive she.\n\nCORIN:\nAnd how like you this shepherd's life, Master Touchstone?\n\nTOUCHSTONE:\nTruly, shepherd, in respect of itself, it is a good\nlife, but in respect that it is a shepherd's life,\nit is naught. In respect that it is solitary, I\nlike it very well; but in respect that it is\nprivate, it is a very vile life. Now, in respect it\nis in the fields, it pleaseth me well; but in\nrespect it is not in the court, it is tedious. As\nis it a spare life, look you, it fits my humour well;\nbut as there is no more plenty in it, it goes much\nagainst my stomach. Hast any philosophy in thee, shepherd?\n\nCORIN:\nNo more but that I know the more one sickens the\nworse at ease he is; and that he that wants money,\nmeans and content is without three good friends;\nthat the property of rain is to wet and fire to\nburn; that good pasture makes fat sheep, and that a\ngreat cause of the night is lack of the sun; that\nhe that hath learned no wit by nature nor art may\ncomplain of good breeding or comes of a very dull kindred.\n\nTOUCHSTONE:\nSuch a one is a natural philosopher. Wast ever in\ncourt, shepherd?\n\nCORIN:\nNo, truly.\n\nTOUCHSTONE:\nThen thou art damned.\n\nCORIN:\nNay, I hope.\n\nTOUCHSTONE:\nTruly, thou art damned like an ill-roasted egg, all\non one side.\n\nCORIN:\nFor not being at court? Your reason.\n\nTOUCHSTONE:\nWhy, if thou never wast at court, thou never sawest\ngood manners; if thou never sawest good manners,\nthen thy manners must be wicked; and wickedness is\nsin, and sin is damnation. Thou art in a parlous\nstate, shepherd.\n\nCORIN:\nNot a whit, Touchstone: those that are good manners\nat the court are as ridiculous in the country as the\nbehavior of the country is most mockable at the\ncourt. You told me you salute not at the court, but\nyou kiss your hands: that courtesy would be\nuncleanly, if courtiers were shepherds.\n\nTOUCHSTONE:\nInstance, briefly; come, instance.\n\nCORIN:\nWhy, we are still handling our ewes, and their\nfells, you know, are greasy.\n\nTOUCHSTONE:\nWhy, do not your courtier's hands sweat? and is not\nthe grease of a mutton as wholesome as the sweat of\na man? Shallow, shallow. A better instance, I say; come.\n\nCORIN:\nBesides, our hands are hard.\n\nTOUCHSTONE:\nYour lips will feel them the sooner. Shallow again.\nA more sounder instance, come.\n\nCORIN:\nAnd they are often tarred over with the surgery of\nour sheep: and would you have us kiss tar? The\ncourtier's hands are perfumed with civet.\n\nTOUCHSTONE:\nMost shallow man! thou worms-meat, in respect of a\ngood piece of flesh indeed! Learn of the wise, and\nperpend: civet is of a baser birth than tar, the\nvery uncleanly flux of a cat. Mend the instance, shepherd.\n\nCORIN:\nYou have too courtly a wit for me: I'll rest.\n\nTOUCHSTONE:\nWilt thou rest damned? God help thee, shallow man!\nGod make incision in thee! thou art raw.\n\nCORIN:\nSir, I am a true labourer: I earn that I eat, get\nthat I wear, owe no man hate, envy no man's\nhappiness, glad of other men's good, content with my\nharm, and the greatest of my pride is to see my ewes\ngraze and my lambs suck.\n\nTOUCHSTONE:\nThat is another simple sin in you, to bring the ewes\nand the rams together and to offer to get your\nliving by the copulation of cattle; to be bawd to a\nbell-wether, and to betray a she-lamb of a\ntwelvemonth to a crooked-pated, old, cuckoldly ram,\nout of all reasonable match. If thou beest not\ndamned for this, the devil himself will have no\nshepherds; I cannot see else how thou shouldst\n'scape.\n\nCORIN:\nHere comes young Master Ganymede, my new mistress's brother.\n\nROSALIND:\nFrom the east to western Ind,\nNo jewel is like Rosalind.\nHer worth, being mounted on the wind,\nThrough all the world bears Rosalind.\nAll the pictures fairest lined\nAre but black to Rosalind.\nLet no fair be kept in mind\nBut the fair of Rosalind.\n\nTOUCHSTONE:\nI'll rhyme you so eight years together, dinners and\nsuppers and sleeping-hours excepted: it is the\nright butter-women's rank to market.\n\nROSALIND:\nOut, fool!\n\nTOUCHSTONE:\nFor a taste:\nIf a hart do lack a hind,\nLet him seek out Rosalind.\nIf the cat will after kind,\nSo be sure will Rosalind.\nWinter garments must be lined,\nSo must slender Rosalind.\nThey that reap must sheaf and bind;\nThen to cart with Rosalind.\nSweetest nut hath sourest rind,\nSuch a nut is Rosalind.\nHe that sweetest rose will find\nMust find love's prick and Rosalind.\nThis is the very false gallop of verses: why do you\ninfect yourself with them?\n\nROSALIND:\nPeace, you dull fool! I found them on a tree.\n\nTOUCHSTONE:\nTruly, the tree yields bad fruit.\n\nROSALIND:\nI'll graff it with you, and then I shall graff it\nwith a medlar: then it will be the earliest fruit\ni' the country; for you'll be rotten ere you be half\nripe, and that's the right virtue of the medlar.\n\nTOUCHSTONE:\nYou have said; but whether wisely or no, let the\nforest judge.\n\nROSALIND:\nPeace! Here comes my sister, reading: stand aside.\n\nCELIA:\n\nROSALIND:\nO most gentle pulpiter! what tedious homily of love\nhave you wearied your parishioners withal, and never\ncried 'Have patience, good people!'\n\nCELIA:\nHow now! back, friends! Shepherd, go off a little.\nGo with him, sirrah.\n\nTOUCHSTONE:\nCome, shepherd, let us make an honourable retreat;\nthough not with bag and baggage, yet with scrip and scrippage.\n\nCELIA:\nDidst thou hear these verses?\n\nROSALIND:\nO, yes, I heard them all, and more too; for some of\nthem had in them more feet than the verses would bear.\n\nCELIA:\nThat's no matter: the feet might bear the verses.\n\nROSALIND:\nAy, but the feet were lame and could not bear\nthemselves without the verse and therefore stood\nlamely in the verse.\n\nCELIA:\nBut didst thou hear without wondering how thy name\nshould be hanged and carved upon these trees?\n\nROSALIND:\nI was seven of the nine days out of the wonder\nbefore you came; for look here what I found on a\npalm-tree. I was never so be-rhymed since\nPythagoras' time, that I was an Irish rat, which I\ncan hardly remember.\n\nCELIA:\nTrow you who hath done this?\n\nROSALIND:\nIs it a man?\n\nCELIA:\nAnd a chain, that you once wore, about his neck.\nChange you colour?\n\nROSALIND:\nI prithee, who?\n\nCELIA:\nO Lord, Lord! it is a hard matter for friends to\nmeet; but mountains may be removed with earthquakes\nand so encounter.\n\nROSALIND:\nNay, but who is it?\n\nCELIA:\nIs it possible?\n\nROSALIND:\nNay, I prithee now with most petitionary vehemence,\ntell me who it is.\n\nCELIA:\nO wonderful, wonderful, and most wonderful\nwonderful! and yet again wonderful, and after that,\nout of all hooping!\n\nROSALIND:\nGood my complexion! dost thou think, though I am\ncaparisoned like a man, I have a doublet and hose in\nmy disposition? One inch of delay more is a\nSouth-sea of discovery; I prithee, tell me who is it\nquickly, and speak apace. I would thou couldst\nstammer, that thou mightst pour this concealed man\nout of thy mouth, as wine comes out of a narrow-\nmouthed bottle, either too much at once, or none at\nall. I prithee, take the cork out of thy mouth that\nmay drink thy tidings.\n\nCELIA:\nSo you may put a man in your belly.\n\nROSALIND:\nIs he of God's making? What manner of man? Is his\nhead worth a hat, or his chin worth a beard?\n\nCELIA:\nNay, he hath but a little beard.\n\nROSALIND:\nWhy, God will send more, if the man will be\nthankful: let me stay the growth of his beard, if\nthou delay me not the knowledge of his chin.\n\nCELIA:\nIt is young Orlando, that tripped up the wrestler's\nheels and your heart both in an instant.\n\nROSALIND:\nNay, but the devil take mocking: speak, sad brow and\ntrue maid.\n\nCELIA:\nI' faith, coz, 'tis he.\n\nROSALIND:\nOrlando?\n\nCELIA:\nOrlando.\n\nROSALIND:\nAlas the day! what shall I do with my doublet and\nhose? What did he when thou sawest him? What said\nhe? How looked he? Wherein went he? What makes\nhim here? Did he ask for me? Where remains he?\nHow parted he with thee? and when shalt thou see\nhim again? Answer me in one word.\n\nCELIA:\nYou must borrow me Gargantua's mouth first: 'tis a\nword too great for any mouth of this age's size. To\nsay ay and no to these particulars is more than to\nanswer in a catechism.\n\nROSALIND:\nBut doth he know that I am in this forest and in\nman's apparel? Looks he as freshly as he did the\nday he wrestled?\n\nCELIA:\nIt is as easy to count atomies as to resolve the\npropositions of a lover; but take a taste of my\nfinding him, and relish it with good observance.\nI found him under a tree, like a dropped acorn.\n\nROSALIND:\nIt may well be called Jove's tree, when it drops\nforth such fruit.\n\nCELIA:\nGive me audience, good madam.\n\nROSALIND:\nProceed.\n\nCELIA:\nThere lay he, stretched along, like a wounded knight.\n\nROSALIND:\nThough it be pity to see such a sight, it well\nbecomes the ground.\n\nCELIA:\nCry 'holla' to thy tongue, I prithee; it curvets\nunseasonably. He was furnished like a hunter.\n\nROSALIND:\nO, ominous! he comes to kill my heart.\n\nCELIA:\nI would sing my song without a burden: thou bringest\nme out of tune.\n\nROSALIND:\nDo you not know I am a woman? when I think, I must\nspeak. Sweet, say on.\n\nCELIA:\nYou bring me out. Soft! comes he not here?\n\nROSALIND:\n'Tis he: slink by, and note him.\n\nJAQUES:\nI thank you for your company; but, good faith, I had\nas lief have been myself alone.\n\nORLANDO:\nAnd so had I; but yet, for fashion sake, I thank you\ntoo for your society.\n\nJAQUES:\nGod be wi' you: let's meet as little as we can.\n\nORLANDO:\nI do desire we may be better strangers.\n\nJAQUES:\nI pray you, mar no more trees with writing\nlove-songs in their barks.\n\nORLANDO:\nI pray you, mar no more of my verses with reading\nthem ill-favouredly.\n\nJAQUES:\nRosalind is your love's name?\n\nORLANDO:\nYes, just.\n\nJAQUES:\nI do not like her name.\n\nORLANDO:\nThere was no thought of pleasing you when she was\nchristened.\n\nJAQUES:\nWhat stature is she of?\n\nORLANDO:\nJust as high as my heart.\n\nJAQUES:\nYou are full of pretty answers. Have you not been\nacquainted with goldsmiths' wives, and conned them\nout of rings?\n\nORLANDO:\nNot so; but I answer you right painted cloth, from\nwhence you have studied your questions.\n\nJAQUES:\nYou have a nimble wit: I think 'twas made of\nAtalanta's heels. Will you sit down with me? and\nwe two will rail against our mistress the world and\nall our misery.\n\nORLANDO:\nI will chide no breather in the world but myself,\nagainst whom I know most faults.\n\nJAQUES:\nThe worst fault you have is to be in love.\n\nORLANDO:\n'Tis a fault I will not change for your best virtue.\nI am weary of you.\n\nJAQUES:\nBy my troth, I was seeking for a fool when I found\nyou.\n\nORLANDO:\nHe is drowned in the brook: look but in, and you\nshall see him.\n\nJAQUES:\nThere I shall see mine own figure.\n\nORLANDO:\nWhich I take to be either a fool or a cipher.\n\nJAQUES:\nI'll tarry no longer with you: farewell, good\nSignior Love.\n\nORLANDO:\nI am glad of your departure: adieu, good Monsieur\nMelancholy.\n\nROSALIND:\n\nORLANDO:\nVery well: what would you?\n\nROSALIND:\nI pray you, what is't o'clock?\n\nORLANDO:\nYou should ask me what time o' day: there's no clock\nin the forest.\n\nROSALIND:\nThen there is no true lover in the forest; else\nsighing every minute and groaning every hour would\ndetect the lazy foot of Time as well as a clock.\n\nORLANDO:\nAnd why not the swift foot of Time? had not that\nbeen as proper?\n\nROSALIND:\nBy no means, sir: Time travels in divers paces with\ndivers persons. I'll tell you who Time ambles\nwithal, who Time trots withal, who Time gallops\nwithal and who he stands still withal.\n\nORLANDO:\nI prithee, who doth he trot withal?\n\nROSALIND:\nMarry, he trots hard with a young maid between the\ncontract of her marriage and the day it is\nsolemnized: if the interim be but a se'nnight,\nTime's pace is so hard that it seems the length of\nseven year.\n\nORLANDO:\nWho ambles Time withal?\n\nROSALIND:\nWith a priest that lacks Latin and a rich man that\nhath not the gout, for the one sleeps easily because\nhe cannot study, and the other lives merrily because\nhe feels no pain, the one lacking the burden of lean\nand wasteful learning, the other knowing no burden\nof heavy tedious penury; these Time ambles withal.\n\nORLANDO:\nWho doth he gallop withal?\n\nROSALIND:\nWith a thief to the gallows, for though he go as\nsoftly as foot can fall, he thinks himself too soon there.\n\nORLANDO:\nWho stays it still withal?\n\nROSALIND:\nWith lawyers in the vacation, for they sleep between\nterm and term and then they perceive not how Time moves.\n\nORLANDO:\nWhere dwell you, pretty youth?\n\nROSALIND:\nWith this shepherdess, my sister; here in the\nskirts of the forest, like fringe upon a petticoat.\n\nORLANDO:\nAre you native of this place?\n\nROSALIND:\nAs the cony that you see dwell where she is kindled.\n\nORLANDO:\nYour accent is something finer than you could\npurchase in so removed a dwelling.\n\nROSALIND:\nI have been told so of many: but indeed an old\nreligious uncle of mine taught me to speak, who was\nin his youth an inland man; one that knew courtship\ntoo well, for there he fell in love. I have heard\nhim read many lectures against it, and I thank God\nI am not a woman, to be touched with so many\ngiddy offences as he hath generally taxed their\nwhole sex withal.\n\nORLANDO:\nCan you remember any of the principal evils that he\nlaid to the charge of women?\n\nROSALIND:\nThere were none principal; they were all like one\nanother as half-pence are, every one fault seeming\nmonstrous till his fellow fault came to match it.\n\nORLANDO:\nI prithee, recount some of them.\n\nROSALIND:\nNo, I will not cast away my physic but on those that\nare sick. There is a man haunts the forest, that\nabuses our young plants with carving 'Rosalind' on\ntheir barks; hangs odes upon hawthorns and elegies\non brambles, all, forsooth, deifying the name of\nRosalind: if I could meet that fancy-monger I would\ngive him some good counsel, for he seems to have the\nquotidian of love upon him.\n\nORLANDO:\nI am he that is so love-shaked: I pray you tell me\nyour remedy.\n\nROSALIND:\nThere is none of my uncle's marks upon you: he\ntaught me how to know a man in love; in which cage\nof rushes I am sure you are not prisoner.\n\nORLANDO:\nWhat were his marks?\n\nROSALIND:\nA lean cheek, which you have not, a blue eye and\nsunken, which you have not, an unquestionable\nspirit, which you have not, a beard neglected,\nwhich you have not; but I pardon you for that, for\nsimply your having in beard is a younger brother's\nrevenue: then your hose should be ungartered, your\nbonnet unbanded, your sleeve unbuttoned, your shoe\nuntied and every thing about you demonstrating a\ncareless desolation; but you are no such man; you\nare rather point-device in your accoutrements as\nloving yourself than seeming the lover of any other.\n\nORLANDO:\nFair youth, I would I could make thee believe I love.\n\nROSALIND:\nMe believe it! you may as soon make her that you\nlove believe it; which, I warrant, she is apter to\ndo than to confess she does: that is one of the\npoints in the which women still give the lie to\ntheir consciences. But, in good sooth, are you he\nthat hangs the verses on the trees, wherein Rosalind\nis so admired?\n\nORLANDO:\nI swear to thee, youth, by the white hand of\nRosalind, I am that he, that unfortunate he.\n\nROSALIND:\nBut are you so much in love as your rhymes speak?\n\nORLANDO:\nNeither rhyme nor reason can express how much.\n\nROSALIND:\nLove is merely a madness, and, I tell you, deserves\nas well a dark house and a whip as madmen do: and\nthe reason why they are not so punished and cured\nis, that the lunacy is so ordinary that the whippers\nare in love too. Yet I profess curing it by counsel.\n\nORLANDO:\nDid you ever cure any so?\n\nROSALIND:\nYes, one, and in this manner. He was to imagine me\nhis love, his mistress; and I set him every day to\nwoo me: at which time would I, being but a moonish\nyouth, grieve, be effeminate, changeable, longing\nand liking, proud, fantastical, apish, shallow,\ninconstant, full of tears, full of smiles, for every\npassion something and for no passion truly any\nthing, as boys and women are for the most part\ncattle of this colour; would now like him, now loathe\nhim; then entertain him, then forswear him; now weep\nfor him, then spit at him; that I drave my suitor\nfrom his mad humour of love to a living humour of\nmadness; which was, to forswear the full stream of\nthe world, and to live in a nook merely monastic.\nAnd thus I cured him; and this way will I take upon\nme to wash your liver as clean as a sound sheep's\nheart, that there shall not be one spot of love in't.\n\nORLANDO:\nI would not be cured, youth.\n\nROSALIND:\nI would cure you, if you would but call me Rosalind\nand come every day to my cote and woo me.\n\nORLANDO:\nNow, by the faith of my love, I will: tell me\nwhere it is.\n\nROSALIND:\nGo with me to it and I'll show it you and by the way\nyou shall tell me where in the forest you live.\nWill you go?\n\nORLANDO:\nWith all my heart, good youth.\n\nROSALIND:\nNay you must call me Rosalind. Come, sister, will you go?\n\nTOUCHSTONE:\nCome apace, good Audrey: I will fetch up your\ngoats, Audrey. And how, Audrey? am I the man yet?\ndoth my simple feature content you?\n\nAUDREY:\nYour features! Lord warrant us! what features!\n\nTOUCHSTONE:\nI am here with thee and thy goats, as the most\ncapricious poet, honest Ovid, was among the Goths.\n\nJAQUES:\n\nTOUCHSTONE:\nWhen a man's verses cannot be understood, nor a\nman's good wit seconded with the forward child\nUnderstanding, it strikes a man more dead than a\ngreat reckoning in a little room. Truly, I would\nthe gods had made thee poetical.\n\nAUDREY:\nI do not know what 'poetical' is: is it honest in\ndeed and word? is it a true thing?\n\nTOUCHSTONE:\nNo, truly; for the truest poetry is the most\nfeigning; and lovers are given to poetry, and what\nthey swear in poetry may be said as lovers they do feign.\n\nAUDREY:\nDo you wish then that the gods had made me poetical?\n\nTOUCHSTONE:\nI do, truly; for thou swearest to me thou art\nhonest: now, if thou wert a poet, I might have some\nhope thou didst feign.\n\nAUDREY:\nWould you not have me honest?\n\nTOUCHSTONE:\nNo, truly, unless thou wert hard-favoured; for\nhonesty coupled to beauty is to have honey a sauce to sugar.\n\nJAQUES:\n\nAUDREY:\nWell, I am not fair; and therefore I pray the gods\nmake me honest.\n\nTOUCHSTONE:\nTruly, and to cast away honesty upon a foul slut\nwere to put good meat into an unclean dish.\n\nAUDREY:\nI am not a slut, though I thank the gods I am foul.\n\nTOUCHSTONE:\nWell, praised be the gods for thy foulness!\nsluttishness may come hereafter. But be it as it may\nbe, I will marry thee, and to that end I have been\nwith Sir Oliver Martext, the vicar of the next\nvillage, who hath promised to meet me in this place\nof the forest and to couple us.\n\nJAQUES:\n\nAUDREY:\nWell, the gods give us joy!\n\nTOUCHSTONE:\nAmen. A man may, if he were of a fearful heart,\nstagger in this attempt; for here we have no temple\nbut the wood, no assembly but horn-beasts. But what\nthough? Courage! As horns are odious, they are\nnecessary. It is said, 'many a man knows no end of\nhis goods:' right; many a man has good horns, and\nknows no end of them. Well, that is the dowry of\nhis wife; 'tis none of his own getting. Horns?\nEven so. Poor men alone? No, no; the noblest deer\nhath them as huge as the rascal. Is the single man\ntherefore blessed? No: as a walled town is more\nworthier than a village, so is the forehead of a\nmarried man more honourable than the bare brow of a\nbachelor; and by how much defence is better than no\nskill, by so much is a horn more precious than to\nwant. Here comes Sir Oliver.\nSir Oliver Martext, you are well met: will you\ndispatch us here under this tree, or shall we go\nwith you to your chapel?\n\nSIR OLIVER MARTEXT:\nIs there none here to give the woman?\n\nTOUCHSTONE:\nI will not take her on gift of any man.\n\nSIR OLIVER MARTEXT:\nTruly, she must be given, or the marriage is not lawful.\n\nJAQUES:\n\nTOUCHSTONE:\nGood even, good Master What-ye-call't: how do you,\nsir? You are very well met: God 'ild you for your\nlast company: I am very glad to see you: even a\ntoy in hand here, sir: nay, pray be covered.\n\nJAQUES:\nWill you be married, motley?\n\nTOUCHSTONE:\nAs the ox hath his bow, sir, the horse his curb and\nthe falcon her bells, so man hath his desires; and\nas pigeons bill, so wedlock would be nibbling.\n\nJAQUES:\nAnd will you, being a man of your breeding, be\nmarried under a bush like a beggar? Get you to\nchurch, and have a good priest that can tell you\nwhat marriage is: this fellow will but join you\ntogether as they join wainscot; then one of you will\nprove a shrunk panel and, like green timber, warp, warp.\n\nTOUCHSTONE:\n\nJAQUES:\nGo thou with me, and let me counsel thee.\n\nTOUCHSTONE:\n'Come, sweet Audrey:\nWe must be married, or we must live in bawdry.\nFarewell, good Master Oliver: not,--\nO sweet Oliver,\nO brave Oliver,\nLeave me not behind thee: but,--\nWind away,\nBegone, I say,\nI will not to wedding with thee.\n\nSIR OLIVER MARTEXT:\n'Tis no matter: ne'er a fantastical knave of them\nall shall flout me out of my calling.\n\nROSALIND:\nNever talk to me; I will weep.\n\nCELIA:\nDo, I prithee; but yet have the grace to consider\nthat tears do not become a man.\n\nROSALIND:\nBut have I not cause to weep?\n\nCELIA:\nAs good cause as one would desire; therefore weep.\n\nROSALIND:\nHis very hair is of the dissembling colour.\n\nCELIA:\nSomething browner than Judas's marry, his kisses are\nJudas's own children.\n\nROSALIND:\nI' faith, his hair is of a good colour.\n\nCELIA:\nAn excellent colour: your chestnut was ever the only colour.\n\nROSALIND:\nAnd his kissing is as full of sanctity as the touch\nof holy bread.\n\nCELIA:\nHe hath bought a pair of cast lips of Diana: a nun\nof winter's sisterhood kisses not more religiously;\nthe very ice of chastity is in them.\n\nROSALIND:\nBut why did he swear he would come this morning, and\ncomes not?\n\nCELIA:\nNay, certainly, there is no truth in him.\n\nROSALIND:\nDo you think so?\n\nCELIA:\nYes; I think he is not a pick-purse nor a\nhorse-stealer, but for his verity in love, I do\nthink him as concave as a covered goblet or a\nworm-eaten nut.\n\nROSALIND:\nNot true in love?\n\nCELIA:\nYes, when he is in; but I think he is not in.\n\nROSALIND:\nYou have heard him swear downright he was.\n\nCELIA:\n'Was' is not 'is:' besides, the oath of a lover is\nno stronger than the word of a tapster; they are\nboth the confirmer of false reckonings. He attends\nhere in the forest on the duke your father.\n\nROSALIND:\nI met the duke yesterday and had much question with\nhim: he asked me of what parentage I was; I told\nhim, of as good as he; so he laughed and let me go.\nBut what talk we of fathers, when there is such a\nman as Orlando?\n\nCELIA:\nO, that's a brave man! he writes brave verses,\nspeaks brave words, swears brave oaths and breaks\nthem bravely, quite traverse, athwart the heart of\nhis lover; as a puisny tilter, that spurs his horse\nbut on one side, breaks his staff like a noble\ngoose: but all's brave that youth mounts and folly\nguides. Who comes here?\n\nCORIN:\nMistress and master, you have oft inquired\nAfter the shepherd that complain'd of love,\nWho you saw sitting by me on the turf,\nPraising the proud disdainful shepherdess\nThat was his mistress.\n\nCELIA:\nWell, and what of him?\n\nCORIN:\nIf you will see a pageant truly play'd,\nBetween the pale complexion of true love\nAnd the red glow of scorn and proud disdain,\nGo hence a little and I shall conduct you,\nIf you will mark it.\n\nROSALIND:\nO, come, let us remove:\nThe sight of lovers feedeth those in love.\nBring us to this sight, and you shall say\nI'll prove a busy actor in their play.\n\nSILVIUS:\nSweet Phebe, do not scorn me; do not, Phebe;\nSay that you love me not, but say not so\nIn bitterness. The common executioner,\nWhose heart the accustom'd sight of death makes hard,\nFalls not the axe upon the humbled neck\nBut first begs pardon: will you sterner be\nThan he that dies and lives by bloody drops?\n\nPHEBE:\nI would not be thy executioner:\nI fly thee, for I would not injure thee.\nThou tell'st me there is murder in mine eye:\n'Tis pretty, sure, and very probable,\nThat eyes, that are the frail'st and softest things,\nWho shut their coward gates on atomies,\nShould be call'd tyrants, butchers, murderers!\nNow I do frown on thee with all my heart;\nAnd if mine eyes can wound, now let them kill thee:\nNow counterfeit to swoon; why now fall down;\nOr if thou canst not, O, for shame, for shame,\nLie not, to say mine eyes are murderers!\nNow show the wound mine eye hath made in thee:\nScratch thee but with a pin, and there remains\nSome scar of it; lean but upon a rush,\nThe cicatrice and capable impressure\nThy palm some moment keeps; but now mine eyes,\nWhich I have darted at thee, hurt thee not,\nNor, I am sure, there is no force in eyes\nThat can do hurt.\n\nSILVIUS:\nO dear Phebe,\nIf ever,--as that ever may be near,--\nYou meet in some fresh cheek the power of fancy,\nThen shall you know the wounds invisible\nThat love's keen arrows make.\n\nPHEBE:\nBut till that time\nCome not thou near me: and when that time comes,\nAfflict me with thy mocks, pity me not;\nAs till that time I shall not pity thee.\n\nROSALIND:\nAnd why, I pray you? Who might be your mother,\nThat you insult, exult, and all at once,\nOver the wretched? What though you have no beauty,--\nAs, by my faith, I see no more in you\nThan without candle may go dark to bed--\nMust you be therefore proud and pitiless?\nWhy, what means this? Why do you look on me?\nI see no more in you than in the ordinary\nOf nature's sale-work. 'Od's my little life,\nI think she means to tangle my eyes too!\nNo, faith, proud mistress, hope not after it:\n'Tis not your inky brows, your black silk hair,\nYour bugle eyeballs, nor your cheek of cream,\nThat can entame my spirits to your worship.\nYou foolish shepherd, wherefore do you follow her,\nLike foggy south puffing with wind and rain?\nYou are a thousand times a properer man\nThan she a woman: 'tis such fools as you\nThat makes the world full of ill-favour'd children:\n'Tis not her glass, but you, that flatters her;\nAnd out of you she sees herself more proper\nThan any of her lineaments can show her.\nBut, mistress, know yourself: down on your knees,\nAnd thank heaven, fasting, for a good man's love:\nFor I must tell you friendly in your ear,\nSell when you can: you are not for all markets:\nCry the man mercy; love him; take his offer:\nFoul is most foul, being foul to be a scoffer.\nSo take her to thee, shepherd: fare you well.\n\nPHEBE:\nSweet youth, I pray you, chide a year together:\nI had rather hear you chide than this man woo.\n\nROSALIND:\nHe's fallen in love with your foulness and she'll\nfall in love with my anger. If it be so, as fast as\nshe answers thee with frowning looks, I'll sauce her\nwith bitter words. Why look you so upon me?\n\nPHEBE:\nFor no ill will I bear you.\n\nROSALIND:\nI pray you, do not fall in love with me,\nFor I am falser than vows made in wine:\nBesides, I like you not. If you will know my house,\n'Tis at the tuft of olives here hard by.\nWill you go, sister? Shepherd, ply her hard.\nCome, sister. Shepherdess, look on him better,\nAnd be not proud: though all the world could see,\nNone could be so abused in sight as he.\nCome, to our flock.\n\nPHEBE:\nDead Shepherd, now I find thy saw of might,\n'Who ever loved that loved not at first sight?'\n\nSILVIUS:\nSweet Phebe,--\n\nPHEBE:\nHa, what say'st thou, Silvius?\n\nSILVIUS:\nSweet Phebe, pity me.\n\nPHEBE:\nWhy, I am sorry for thee, gentle Silvius.\n\nSILVIUS:\nWherever sorrow is, relief would be:\nIf you do sorrow at my grief in love,\nBy giving love your sorrow and my grief\nWere both extermined.\n\nPHEBE:\nThou hast my love: is not that neighbourly?\n\nSILVIUS:\nI would have you.\n\nPHEBE:\nWhy, that were covetousness.\nSilvius, the time was that I hated thee,\nAnd yet it is not that I bear thee love;\nBut since that thou canst talk of love so well,\nThy company, which erst was irksome to me,\nI will endure, and I'll employ thee too:\nBut do not look for further recompense\nThan thine own gladness that thou art employ'd.\n\nSILVIUS:\nSo holy and so perfect is my love,\nAnd I in such a poverty of grace,\nThat I shall think it a most plenteous crop\nTo glean the broken ears after the man\nThat the main harvest reaps: loose now and then\nA scatter'd smile, and that I'll live upon.\n\nPHEBE:\nKnow'st now the youth that spoke to me erewhile?\n\nSILVIUS:\nNot very well, but I have met him oft;\nAnd he hath bought the cottage and the bounds\nThat the old carlot once was master of.\n\nPHEBE:\nThink not I love him, though I ask for him:\n'Tis but a peevish boy; yet he talks well;\nBut what care I for words? yet words do well\nWhen he that speaks them pleases those that hear.\nIt is a pretty youth: not very pretty:\nBut, sure, he's proud, and yet his pride becomes him:\nHe'll make a proper man: the best thing in him\nIs his complexion; and faster than his tongue\nDid make offence his eye did heal it up.\nHe is not very tall; yet for his years he's tall:\nHis leg is but so so; and yet 'tis well:\nThere was a pretty redness in his lip,\nA little riper and more lusty red\nThan that mix'd in his cheek; 'twas just the difference\nBetween the constant red and mingled damask.\nThere be some women, Silvius, had they mark'd him\nIn parcels as I did, would have gone near\nTo fall in love with him; but, for my part,\nI love him not nor hate him not; and yet\nI have more cause to hate him than to love him:\nFor what had he to do to chide at me?\nHe said mine eyes were black and my hair black:\nAnd, now I am remember'd, scorn'd at me:\nI marvel why I answer'd not again:\nBut that's all one; omittance is no quittance.\nI'll write to him a very taunting letter,\nAnd thou shalt bear it: wilt thou, Silvius?\n\nSILVIUS:\nPhebe, with all my heart.\n\nPHEBE:\nI'll write it straight;\nThe matter's in my head and in my heart:\nI will be bitter with him and passing short.\nGo with me, Silvius.\n\nJAQUES:\nI prithee, pretty youth, let me be better acquainted\nwith thee.\n\nROSALIND:\nThey say you are a melancholy fellow.\n\nJAQUES:\nI am so; I do love it better than laughing.\n\nROSALIND:\nThose that are in extremity of either are abominable\nfellows and betray themselves to every modern\ncensure worse than drunkards.\n\nJAQUES:\nWhy, 'tis good to be sad and say nothing.\n\nROSALIND:\nWhy then, 'tis good to be a post.\n\nJAQUES:\nI have neither the scholar's melancholy, which is\nemulation, nor the musician's, which is fantastical,\nnor the courtier's, which is proud, nor the\nsoldier's, which is ambitious, nor the lawyer's,\nwhich is politic, nor the lady's, which is nice, nor\nthe lover's, which is all these: but it is a\nmelancholy of mine own, compounded of many simples,\nextracted from many objects, and indeed the sundry's\ncontemplation of my travels, in which my often\nrumination wraps me m a most humorous sadness.\n\nROSALIND:\nA traveller! By my faith, you have great reason to\nbe sad: I fear you have sold your own lands to see\nother men's; then, to have seen much and to have\nnothing, is to have rich eyes and poor hands.\n\nJAQUES:\nYes, I have gained my experience.\n\nROSALIND:\nAnd your experience makes you sad: I had rather have\na fool to make me merry than experience to make me\nsad; and to travel for it too!\n\nORLANDO:\nGood day and happiness, dear Rosalind!\n\nJAQUES:\nNay, then, God be wi' you, an you talk in blank verse.\n\nROSALIND:\nFarewell, Monsieur Traveller: look you lisp and\nwear strange suits, disable all the benefits of your\nown country, be out of love with your nativity and\nalmost chide God for making you that countenance you\nare, or I will scarce think you have swam in a\ngondola. Why, how now, Orlando! where have you been\nall this while? You a lover! An you serve me such\nanother trick, never come in my sight more.\n\nORLANDO:\nMy fair Rosalind, I come within an hour of my promise.\n\nROSALIND:\nBreak an hour's promise in love! He that will\ndivide a minute into a thousand parts and break but\na part of the thousandth part of a minute in the\naffairs of love, it may be said of him that Cupid\nhath clapped him o' the shoulder, but I'll warrant\nhim heart-whole.\n\nORLANDO:\nPardon me, dear Rosalind.\n\nROSALIND:\nNay, an you be so tardy, come no more in my sight: I\nhad as lief be wooed of a snail.\n\nORLANDO:\nOf a snail?\n\nROSALIND:\nAy, of a snail; for though he comes slowly, he\ncarries his house on his head; a better jointure,\nI think, than you make a woman: besides he brings\nhis destiny with him.\n\nORLANDO:\nWhat's that?\n\nROSALIND:\nWhy, horns, which such as you are fain to be\nbeholding to your wives for: but he comes armed in\nhis fortune and prevents the slander of his wife.\n\nORLANDO:\nVirtue is no horn-maker; and my Rosalind is virtuous.\n\nROSALIND:\nAnd I am your Rosalind.\n\nCELIA:\nIt pleases him to call you so; but he hath a\nRosalind of a better leer than you.\n\nROSALIND:\nCome, woo me, woo me, for now I am in a holiday\nhumour and like enough to consent. What would you\nsay to me now, an I were your very very Rosalind?\n\nORLANDO:\nI would kiss before I spoke.\n\nROSALIND:\nNay, you were better speak first, and when you were\ngravelled for lack of matter, you might take\noccasion to kiss. Very good orators, when they are\nout, they will spit; and for lovers lacking--God\nwarn us!--matter, the cleanliest shift is to kiss.\n\nORLANDO:\nHow if the kiss be denied?\n\nROSALIND:\nThen she puts you to entreaty, and there begins new matter.\n\nORLANDO:\nWho could be out, being before his beloved mistress?\n\nROSALIND:\nMarry, that should you, if I were your mistress, or\nI should think my honesty ranker than my wit.\n\nORLANDO:\nWhat, of my suit?\n\nROSALIND:\nNot out of your apparel, and yet out of your suit.\nAm not I your Rosalind?\n\nORLANDO:\nI take some joy to say you are, because I would be\ntalking of her.\n\nROSALIND:\nWell in her person I say I will not have you.\n\nORLANDO:\nThen in mine own person I die.\n\nROSALIND:\nNo, faith, die by attorney. The poor world is\nalmost six thousand years old, and in all this time\nthere was not any man died in his own person,\nvidelicit, in a love-cause. Troilus had his brains\ndashed out with a Grecian club; yet he did what he\ncould to die before, and he is one of the patterns\nof love. Leander, he would have lived many a fair\nyear, though Hero had turned nun, if it had not been\nfor a hot midsummer night; for, good youth, he went\nbut forth to wash him in the Hellespont and being\ntaken with the cramp was drowned and the foolish\ncoroners of that age found it was 'Hero of Sestos.'\nBut these are all lies: men have died from time to\ntime and worms have eaten them, but not for love.\n\nORLANDO:\nI would not have my right Rosalind of this mind,\nfor, I protest, her frown might kill me.\n\nROSALIND:\nBy this hand, it will not kill a fly. But come, now\nI will be your Rosalind in a more coming-on\ndisposition, and ask me what you will. I will grant\nit.\n\nORLANDO:\nThen love me, Rosalind.\n\nROSALIND:\nYes, faith, will I, Fridays and Saturdays and all.\n\nORLANDO:\nAnd wilt thou have me?\n\nROSALIND:\nAy, and twenty such.\n\nORLANDO:\nWhat sayest thou?\n\nROSALIND:\nAre you not good?\n\nORLANDO:\nI hope so.\n\nROSALIND:\nWhy then, can one desire too much of a good thing?\nCome, sister, you shall be the priest and marry us.\nGive me your hand, Orlando. What do you say, sister?\n\nORLANDO:\nPray thee, marry us.\n\nCELIA:\nI cannot say the words.\n\nROSALIND:\nYou must begin, 'Will you, Orlando--'\n\nCELIA:\nGo to. Will you, Orlando, have to wife this Rosalind?\n\nORLANDO:\nI will.\n\nROSALIND:\nAy, but when?\n\nORLANDO:\nWhy now; as fast as she can marry us.\n\nROSALIND:\nThen you must say 'I take thee, Rosalind, for wife.'\n\nORLANDO:\nI take thee, Rosalind, for wife.\n\nROSALIND:\nI might ask you for your commission; but I do take\nthee, Orlando, for my husband: there's a girl goes\nbefore the priest; and certainly a woman's thought\nruns before her actions.\n\nORLANDO:\nSo do all thoughts; they are winged.\n\nROSALIND:\nNow tell me how long you would have her after you\nhave possessed her.\n\nORLANDO:\nFor ever and a day.\n\nROSALIND:\nSay 'a day,' without the 'ever.' No, no, Orlando;\nmen are April when they woo, December when they wed:\nmaids are May when they are maids, but the sky\nchanges when they are wives. I will be more jealous\nof thee than a Barbary cock-pigeon over his hen,\nmore clamorous than a parrot against rain, more\nnew-fangled than an ape, more giddy in my desires\nthan a monkey: I will weep for nothing, like Diana\nin the fountain, and I will do that when you are\ndisposed to be merry; I will laugh like a hyen, and\nthat when thou art inclined to sleep.\n\nORLANDO:\nBut will my Rosalind do so?\n\nROSALIND:\nBy my life, she will do as I do.\n\nORLANDO:\nO, but she is wise.\n\nROSALIND:\nOr else she could not have the wit to do this: the\nwiser, the waywarder: make the doors upon a woman's\nwit and it will out at the casement; shut that and\n'twill out at the key-hole; stop that, 'twill fly\nwith the smoke out at the chimney.\n\nORLANDO:\nA man that had a wife with such a wit, he might say\n'Wit, whither wilt?'\n\nROSALIND:\nNay, you might keep that cheque for it till you met\nyour wife's wit going to your neighbour's bed.\n\nORLANDO:\nAnd what wit could wit have to excuse that?\n\nROSALIND:\nMarry, to say she came to seek you there. You shall\nnever take her without her answer, unless you take\nher without her tongue. O, that woman that cannot\nmake her fault her husband's occasion, let her\nnever nurse her child herself, for she will breed\nit like a fool!\n\nORLANDO:\nFor these two hours, Rosalind, I will leave thee.\n\nROSALIND:\nAlas! dear love, I cannot lack thee two hours.\n\nORLANDO:\nI must attend the duke at dinner: by two o'clock I\nwill be with thee again.\n\nROSALIND:\nAy, go your ways, go your ways; I knew what you\nwould prove: my friends told me as much, and I\nthought no less: that flattering tongue of yours\nwon me: 'tis but one cast away, and so, come,\ndeath! Two o'clock is your hour?\n\nORLANDO:\nAy, sweet Rosalind.\n\nROSALIND:\nBy my troth, and in good earnest, and so God mend\nme, and by all pretty oaths that are not dangerous,\nif you break one jot of your promise or come one\nminute behind your hour, I will think you the most\npathetical break-promise and the most hollow lover\nand the most unworthy of her you call Rosalind that\nmay be chosen out of the gross band of the\nunfaithful: therefore beware my censure and keep\nyour promise.\n\nORLANDO:\nWith no less religion than if thou wert indeed my\nRosalind: so adieu.\n\nROSALIND:\nWell, Time is the old justice that examines all such\noffenders, and let Time try: adieu.\n\nCELIA:\nYou have simply misused our sex in your love-prate:\nwe must have your doublet and hose plucked over your\nhead, and show the world what the bird hath done to\nher own nest.\n\nROSALIND:\nO coz, coz, coz, my pretty little coz, that thou\ndidst know how many fathom deep I am in love! But\nit cannot be sounded: my affection hath an unknown\nbottom, like the bay of Portugal.\n\nCELIA:\nOr rather, bottomless, that as fast as you pour\naffection in, it runs out.\n\nROSALIND:\nNo, that same wicked bastard of Venus that was begot\nof thought, conceived of spleen and born of madness,\nthat blind rascally boy that abuses every one's eyes\nbecause his own are out, let him be judge how deep I\nam in love. I'll tell thee, Aliena, I cannot be out\nof the sight of Orlando: I'll go find a shadow and\nsigh till he come.\n\nCELIA:\nAnd I'll sleep.\n\nJAQUES:\nWhich is he that killed the deer?\n\nA Lord:\nSir, it was I.\n\nJAQUES:\nLet's present him to the duke, like a Roman\nconqueror; and it would do well to set the deer's\nhorns upon his head, for a branch of victory. Have\nyou no song, forester, for this purpose?\n\nForester:\nYes, sir.\n\nJAQUES:\nSing it: 'tis no matter how it be in tune, so it\nmake noise enough.\n\nForester:\nWhat shall he have that kill'd the deer?\nHis leather skin and horns to wear.\nThen sing him home;\nTake thou no scorn to wear the horn;\nIt was a crest ere thou wast born:\nThy father's father wore it,\nAnd thy father bore it:\nThe horn, the horn, the lusty horn\nIs not a thing to laugh to scorn.\n\nROSALIND:\nHow say you now? Is it not past two o'clock? and\nhere much Orlando!\n\nCELIA:\nI warrant you, with pure love and troubled brain, he\nhath ta'en his bow and arrows and is gone forth to\nsleep. Look, who comes here.\n\nSILVIUS:\nMy errand is to you, fair youth;\nMy gentle Phebe bid me give you this:\nI know not the contents; but, as I guess\nBy the stern brow and waspish action\nWhich she did use as she was writing of it,\nIt bears an angry tenor: pardon me:\nI am but as a guiltless messenger.\n\nROSALIND:\nPatience herself would startle at this letter\nAnd play the swaggerer; bear this, bear all:\nShe says I am not fair, that I lack manners;\nShe calls me proud, and that she could not love me,\nWere man as rare as phoenix. 'Od's my will!\nHer love is not the hare that I do hunt:\nWhy writes she so to me? Well, shepherd, well,\nThis is a letter of your own device.\n\nSILVIUS:\nNo, I protest, I know not the contents:\nPhebe did write it.\n\nROSALIND:\nCome, come, you are a fool\nAnd turn'd into the extremity of love.\nI saw her hand: she has a leathern hand.\nA freestone-colour'd hand; I verily did think\nThat her old gloves were on, but 'twas her hands:\nShe has a huswife's hand; but that's no matter:\nI say she never did invent this letter;\nThis is a man's invention and his hand.\n\nSILVIUS:\nSure, it is hers.\n\nROSALIND:\nWhy, 'tis a boisterous and a cruel style.\nA style for-challengers; why, she defies me,\nLike Turk to Christian: women's gentle brain\nCould not drop forth such giant-rude invention\nSuch Ethiope words, blacker in their effect\nThan in their countenance. Will you hear the letter?\n\nSILVIUS:\nSo please you, for I never heard it yet;\nYet heard too much of Phebe's cruelty.\n\nROSALIND:\nShe Phebes me: mark how the tyrant writes.\nArt thou god to shepherd turn'd,\nThat a maiden's heart hath burn'd?\nCan a woman rail thus?\n\nSILVIUS:\nCall you this railing?\n\nROSALIND:\n\nSILVIUS:\nCall you this chiding?\n\nCELIA:\nAlas, poor shepherd!\n\nROSALIND:\nDo you pity him? no, he deserves no pity. Wilt\nthou love such a woman? What, to make thee an\ninstrument and play false strains upon thee! not to\nbe endured! Well, go your way to her, for I see\nlove hath made thee a tame snake, and say this to\nher: that if she love me, I charge her to love\nthee; if she will not, I will never have her unless\nthou entreat for her. If you be a true lover,\nhence, and not a word; for here comes more company.\n\nOLIVER:\nGood morrow, fair ones: pray you, if you know,\nWhere in the purlieus of this forest stands\nA sheep-cote fenced about with olive trees?\n\nCELIA:\nWest of this place, down in the neighbour bottom:\nThe rank of osiers by the murmuring stream\nLeft on your right hand brings you to the place.\nBut at this hour the house doth keep itself;\nThere's none within.\n\nOLIVER:\nIf that an eye may profit by a tongue,\nThen should I know you by description;\nSuch garments and such years: 'The boy is fair,\nOf female favour, and bestows himself\nLike a ripe sister: the woman low\nAnd browner than her brother.' Are not you\nThe owner of the house I did inquire for?\n\nCELIA:\nIt is no boast, being ask'd, to say we are.\n\nOLIVER:\nOrlando doth commend him to you both,\nAnd to that youth he calls his Rosalind\nHe sends this bloody napkin. Are you he?\n\nROSALIND:\nI am: what must we understand by this?\n\nOLIVER:\nSome of my shame; if you will know of me\nWhat man I am, and how, and why, and where\nThis handkercher was stain'd.\n\nCELIA:\nI pray you, tell it.\n\nOLIVER:\nWhen last the young Orlando parted from you\nHe left a promise to return again\nWithin an hour, and pacing through the forest,\nChewing the food of sweet and bitter fancy,\nLo, what befell! he threw his eye aside,\nAnd mark what object did present itself:\nUnder an oak, whose boughs were moss'd with age\nAnd high top bald with dry antiquity,\nA wretched ragged man, o'ergrown with hair,\nLay sleeping on his back: about his neck\nA green and gilded snake had wreathed itself,\nWho with her head nimble in threats approach'd\nThe opening of his mouth; but suddenly,\nSeeing Orlando, it unlink'd itself,\nAnd with indented glides did slip away\nInto a bush: under which bush's shade\nA lioness, with udders all drawn dry,\nLay couching, head on ground, with catlike watch,\nWhen that the sleeping man should stir; for 'tis\nThe royal disposition of that beast\nTo prey on nothing that doth seem as dead:\nThis seen, Orlando did approach the man\nAnd found it was his brother, his elder brother.\n\nCELIA:\nO, I have heard him speak of that same brother;\nAnd he did render him the most unnatural\nThat lived amongst men.\n\nOLIVER:\nAnd well he might so do,\nFor well I know he was unnatural.\n\nROSALIND:\nBut, to Orlando: did he leave him there,\nFood to the suck'd and hungry lioness?\n\nOLIVER:\nTwice did he turn his back and purposed so;\nBut kindness, nobler ever than revenge,\nAnd nature, stronger than his just occasion,\nMade him give battle to the lioness,\nWho quickly fell before him: in which hurtling\nFrom miserable slumber I awaked.\n\nCELIA:\nAre you his brother?\n\nROSALIND:\nWast you he rescued?\n\nCELIA:\nWas't you that did so oft contrive to kill him?\n\nOLIVER:\n'Twas I; but 'tis not I I do not shame\nTo tell you what I was, since my conversion\nSo sweetly tastes, being the thing I am.\n\nROSALIND:\nBut, for the bloody napkin?\n\nOLIVER:\nBy and by.\nWhen from the first to last betwixt us two\nTears our recountments had most kindly bathed,\nAs how I came into that desert place:--\nIn brief, he led me to the gentle duke,\nWho gave me fresh array and entertainment,\nCommitting me unto my brother's love;\nWho led me instantly unto his cave,\nThere stripp'd himself, and here upon his arm\nThe lioness had torn some flesh away,\nWhich all this while had bled; and now he fainted\nAnd cried, in fainting, upon Rosalind.\nBrief, I recover'd him, bound up his wound;\nAnd, after some small space, being strong at heart,\nHe sent me hither, stranger as I am,\nTo tell this story, that you might excuse\nHis broken promise, and to give this napkin\nDyed in his blood unto the shepherd youth\nThat he in sport doth call his Rosalind.\n\nCELIA:\nWhy, how now, Ganymede! sweet Ganymede!\n\nOLIVER:\nMany will swoon when they do look on blood.\n\nCELIA:\nThere is more in it. Cousin Ganymede!\n\nOLIVER:\nLook, he recovers.\n\nROSALIND:\nI would I were at home.\n\nCELIA:\nWe'll lead you thither.\nI pray you, will you take him by the arm?\n\nOLIVER:\nBe of good cheer, youth: you a man! you lack a\nman's heart.\n\nROSALIND:\nI do so, I confess it. Ah, sirrah, a body would\nthink this was well counterfeited! I pray you, tell\nyour brother how well I counterfeited. Heigh-ho!\n\nOLIVER:\nThis was not counterfeit: there is too great\ntestimony in your complexion that it was a passion\nof earnest.\n\nROSALIND:\nCounterfeit, I assure you.\n\nOLIVER:\nWell then, take a good heart and counterfeit to be a man.\n\nROSALIND:\nSo I do: but, i' faith, I should have been a woman by right.\n\nCELIA:\nCome, you look paler and paler: pray you, draw\nhomewards. Good sir, go with us.\n\nOLIVER:\nThat will I, for I must bear answer back\nHow you excuse my brother, Rosalind.\n\nROSALIND:\nI shall devise something: but, I pray you, commend\nmy counterfeiting to him. Will you go?\n\nTOUCHSTONE:\nWe shall find a time, Audrey; patience, gentle Audrey.\n\nAUDREY:\nFaith, the priest was good enough, for all the old\ngentleman's saying.\n\nTOUCHSTONE:\nA most wicked Sir Oliver, Audrey, a most vile\nMartext. But, Audrey, there is a youth here in the\nforest lays claim to you.\n\nAUDREY:\nAy, I know who 'tis; he hath no interest in me in\nthe world: here comes the man you mean.\n\nTOUCHSTONE:\nIt is meat and drink to me to see a clown: by my\ntroth, we that have good wits have much to answer\nfor; we shall be flouting; we cannot hold.\n\nWILLIAM:\nGood even, Audrey.\n\nAUDREY:\nGod ye good even, William.\n\nWILLIAM:\nAnd good even to you, sir.\n\nTOUCHSTONE:\nGood even, gentle friend. Cover thy head, cover thy\nhead; nay, prithee, be covered. How old are you, friend?\n\nWILLIAM:\nFive and twenty, sir.\n\nTOUCHSTONE:\nA ripe age. Is thy name William?\n\nWILLIAM:\nWilliam, sir.\n\nTOUCHSTONE:\nA fair name. Wast born i' the forest here?\n\nWILLIAM:\nAy, sir, I thank God.\n\nTOUCHSTONE:\n'Thank God;' a good answer. Art rich?\n\nWILLIAM:\nFaith, sir, so so.\n\nTOUCHSTONE:\n'So so' is good, very good, very excellent good; and\nyet it is not; it is but so so. Art thou wise?\n\nWILLIAM:\nAy, sir, I have a pretty wit.\n\nTOUCHSTONE:\nWhy, thou sayest well. I do now remember a saying,\n'The fool doth think he is wise, but the wise man\nknows himself to be a fool.' The heathen\nphilosopher, when he had a desire to eat a grape,\nwould open his lips when he put it into his mouth;\nmeaning thereby that grapes were made to eat and\nlips to open. You do love this maid?\n\nWILLIAM:\nI do, sir.\n\nTOUCHSTONE:\nGive me your hand. Art thou learned?\n\nWILLIAM:\nNo, sir.\n\nTOUCHSTONE:\nThen learn this of me: to have, is to have; for it\nis a figure in rhetoric that drink, being poured out\nof a cup into a glass, by filling the one doth empty\nthe other; for all your writers do consent that ipse\nis he: now, you are not ipse, for I am he.\n\nWILLIAM:\nWhich he, sir?\n\nTOUCHSTONE:\nHe, sir, that must marry this woman. Therefore, you\nclown, abandon,--which is in the vulgar leave,--the\nsociety,--which in the boorish is company,--of this\nfemale,--which in the common is woman; which\ntogether is, abandon the society of this female, or,\nclown, thou perishest; or, to thy better\nunderstanding, diest; or, to wit I kill thee, make\nthee away, translate thy life into death, thy\nliberty into bondage: I will deal in poison with\nthee, or in bastinado, or in steel; I will bandy\nwith thee in faction; I will o'errun thee with\npolicy; I will kill thee a hundred and fifty ways:\ntherefore tremble and depart.\n\nAUDREY:\nDo, good William.\n\nWILLIAM:\nGod rest you merry, sir.\n\nCORIN:\nOur master and mistress seeks you; come, away, away!\n\nTOUCHSTONE:\nTrip, Audrey! trip, Audrey! I attend, I attend.\n\nORLANDO:\nIs't possible that on so little acquaintance you\nshould like her? that but seeing you should love\nher? and loving woo? and, wooing, she should\ngrant? and will you persever to enjoy her?\n\nOLIVER:\nNeither call the giddiness of it in question, the\npoverty of her, the small acquaintance, my sudden\nwooing, nor her sudden consenting; but say with me,\nI love Aliena; say with her that she loves me;\nconsent with both that we may enjoy each other: it\nshall be to your good; for my father's house and all\nthe revenue that was old Sir Rowland's will I\nestate upon you, and here live and die a shepherd.\n\nORLANDO:\nYou have my consent. Let your wedding be to-morrow:\nthither will I invite the duke and all's contented\nfollowers. Go you and prepare Aliena; for look\nyou, here comes my Rosalind.\n\nROSALIND:\nGod save you, brother.\n\nOLIVER:\nAnd you, fair sister.\n\nROSALIND:\nO, my dear Orlando, how it grieves me to see thee\nwear thy heart in a scarf!\n\nORLANDO:\nIt is my arm.\n\nROSALIND:\nI thought thy heart had been wounded with the claws\nof a lion.\n\nORLANDO:\nWounded it is, but with the eyes of a lady.\n\nROSALIND:\nDid your brother tell you how I counterfeited to\nswoon when he showed me your handkerchief?\n\nORLANDO:\nAy, and greater wonders than that.\n\nROSALIND:\nO, I know where you are: nay, 'tis true: there was\nnever any thing so sudden but the fight of two rams\nand Caesar's thrasonical brag of 'I came, saw, and\novercame:' for your brother and my sister no sooner\nmet but they looked, no sooner looked but they\nloved, no sooner loved but they sighed, no sooner\nsighed but they asked one another the reason, no\nsooner knew the reason but they sought the remedy;\nand in these degrees have they made a pair of stairs\nto marriage which they will climb incontinent, or\nelse be incontinent before marriage: they are in\nthe very wrath of love and they will together; clubs\ncannot part them.\n\nORLANDO:\nThey shall be married to-morrow, and I will bid the\nduke to the nuptial. But, O, how bitter a thing it\nis to look into happiness through another man's\neyes! By so much the more shall I to-morrow be at\nthe height of heart-heaviness, by how much I shall\nthink my brother happy in having what he wishes for.\n\nROSALIND:\nWhy then, to-morrow I cannot serve your turn for Rosalind?\n\nORLANDO:\nI can live no longer by thinking.\n\nROSALIND:\nI will weary you then no longer with idle talking.\nKnow of me then, for now I speak to some purpose,\nthat I know you are a gentleman of good conceit: I\nspeak not this that you should bear a good opinion\nof my knowledge, insomuch I say I know you are;\nneither do I labour for a greater esteem than may in\nsome little measure draw a belief from you, to do\nyourself good and not to grace me. Believe then, if\nyou please, that I can do strange things: I have,\nsince I was three year old, conversed with a\nmagician, most profound in his art and yet not\ndamnable. If you do love Rosalind so near the heart\nas your gesture cries it out, when your brother\nmarries Aliena, shall you marry her: I know into\nwhat straits of fortune she is driven; and it is\nnot impossible to me, if it appear not inconvenient\nto you, to set her before your eyes tomorrow human\nas she is and without any danger.\n\nORLANDO:\nSpeakest thou in sober meanings?\n\nROSALIND:\nBy my life, I do; which I tender dearly, though I\nsay I am a magician. Therefore, put you in your\nbest array: bid your friends; for if you will be\nmarried to-morrow, you shall, and to Rosalind, if you will.\nLook, here comes a lover of mine and a lover of hers.\n\nPHEBE:\nYouth, you have done me much ungentleness,\nTo show the letter that I writ to you.\n\nROSALIND:\nI care not if I have: it is my study\nTo seem despiteful and ungentle to you:\nYou are there followed by a faithful shepherd;\nLook upon him, love him; he worships you.\n\nPHEBE:\nGood shepherd, tell this youth what 'tis to love.\n\nSILVIUS:\nIt is to be all made of sighs and tears;\nAnd so am I for Phebe.\n\nPHEBE:\nAnd I for Ganymede.\n\nORLANDO:\nAnd I for Rosalind.\n\nROSALIND:\nAnd I for no woman.\n\nSILVIUS:\nIt is to be all made of faith and service;\nAnd so am I for Phebe.\n\nPHEBE:\nAnd I for Ganymede.\n\nORLANDO:\nAnd I for Rosalind.\n\nROSALIND:\nAnd I for no woman.\n\nSILVIUS:\nIt is to be all made of fantasy,\nAll made of passion and all made of wishes,\nAll adoration, duty, and observance,\nAll humbleness, all patience and impatience,\nAll purity, all trial, all observance;\nAnd so am I for Phebe.\n\nPHEBE:\nAnd so am I for Ganymede.\n\nORLANDO:\nAnd so am I for Rosalind.\n\nROSALIND:\nAnd so am I for no woman.\n\nPHEBE:\nIf this be so, why blame you me to love you?\n\nSILVIUS:\nIf this be so, why blame you me to love you?\n\nORLANDO:\nIf this be so, why blame you me to love you?\n\nROSALIND:\nWho do you speak to, 'Why blame you me to love you?'\n\nORLANDO:\nTo her that is not here, nor doth not hear.\n\nROSALIND:\nPray you, no more of this; 'tis like the howling\nof Irish wolves against the moon.\nI will help you, if I can:\nI would love you, if I could. To-morrow meet me all together.\nI will marry you, if ever I marry woman, and I'll be\nmarried to-morrow:\nI will satisfy you, if ever I satisfied man, and you\nshall be married to-morrow:\nI will content you, if what pleases you contents\nyou, and you shall be married to-morrow.\nAs you love Rosalind, meet:\nas you love Phebe, meet: and as I love no woman,\nI'll meet. So fare you well: I have left you commands.\n\nSILVIUS:\nI'll not fail, if I live.\n\nPHEBE:\nNor I.\n\nORLANDO:\nNor I.\n\nTOUCHSTONE:\nTo-morrow is the joyful day, Audrey; to-morrow will\nwe be married.\n\nAUDREY:\nI do desire it with all my heart; and I hope it is\nno dishonest desire to desire to be a woman of the\nworld. Here comes two of the banished duke's pages.\n\nFirst Page:\nWell met, honest gentleman.\n\nTOUCHSTONE:\nBy my troth, well met. Come, sit, sit, and a song.\n\nSecond Page:\nWe are for you: sit i' the middle.\n\nFirst Page:\nShall we clap into't roundly, without hawking or\nspitting or saying we are hoarse, which are the only\nprologues to a bad voice?\n\nSecond Page:\nI'faith, i'faith; and both in a tune, like two\ngipsies on a horse.\nIt was a lover and his lass,\nWith a hey, and a ho, and a hey nonino,\nThat o'er the green corn-field did pass\nIn the spring time, the only pretty ring time,\nWhen birds do sing, hey ding a ding, ding:\nSweet lovers love the spring.\nBetween the acres of the rye,\nWith a hey, and a ho, and a hey nonino\nThese pretty country folks would lie,\nIn spring time, &c.\nThis carol they began that hour,\nWith a hey, and a ho, and a hey nonino,\nHow that a life was but a flower\nIn spring time, &c.\nAnd therefore take the present time,\nWith a hey, and a ho, and a hey nonino;\nFor love is crowned with the prime\nIn spring time, &c.\n\nTOUCHSTONE:\nTruly, young gentlemen, though there was no great\nmatter in the ditty, yet the note was very\nuntuneable.\n\nFirst Page:\nYou are deceived, sir: we kept time, we lost not our time.\n\nTOUCHSTONE:\nBy my troth, yes; I count it but time lost to hear\nsuch a foolish song. God be wi' you; and God mend\nyour voices! Come, Audrey.\n\nDUKE SENIOR:\nDost thou believe, Orlando, that the boy\nCan do all this that he hath promised?\n\nORLANDO:\nI sometimes do believe, and sometimes do not;\nAs those that fear they hope, and know they fear.\n\nROSALIND:\nPatience once more, whiles our compact is urged:\nYou say, if I bring in your Rosalind,\nYou will bestow her on Orlando here?\n\nDUKE SENIOR:\nThat would I, had I kingdoms to give with her.\n\nROSALIND:\nAnd you say, you will have her, when I bring her?\n\nORLANDO:\nThat would I, were I of all kingdoms king.\n\nROSALIND:\nYou say, you'll marry me, if I be willing?\n\nPHEBE:\nThat will I, should I die the hour after.\n\nROSALIND:\nBut if you do refuse to marry me,\nYou'll give yourself to this most faithful shepherd?\n\nPHEBE:\nSo is the bargain.\n\nROSALIND:\nYou say, that you'll have Phebe, if she will?\n\nSILVIUS:\nThough to have her and death were both one thing.\n\nROSALIND:\nI have promised to make all this matter even.\nKeep you your word, O duke, to give your daughter;\nYou yours, Orlando, to receive his daughter:\nKeep your word, Phebe, that you'll marry me,\nOr else refusing me, to wed this shepherd:\nKeep your word, Silvius, that you'll marry her.\nIf she refuse me: and from hence I go,\nTo make these doubts all even.\n\nDUKE SENIOR:\nI do remember in this shepherd boy\nSome lively touches of my daughter's favour.\n\nORLANDO:\nMy lord, the first time that I ever saw him\nMethought he was a brother to your daughter:\nBut, my good lord, this boy is forest-born,\nAnd hath been tutor'd in the rudiments\nOf many desperate studies by his uncle,\nWhom he reports to be a great magician,\nObscured in the circle of this forest.\n\nJAQUES:\nThere is, sure, another flood toward, and these\ncouples are coming to the ark. Here comes a pair of\nvery strange beasts, which in all tongues are called fools.\n\nTOUCHSTONE:\nSalutation and greeting to you all!\n\nJAQUES:\nGood my lord, bid him welcome: this is the\nmotley-minded gentleman that I have so often met in\nthe forest: he hath been a courtier, he swears.\n\nTOUCHSTONE:\nIf any man doubt that, let him put me to my\npurgation. I have trod a measure; I have flattered\na lady; I have been politic with my friend, smooth\nwith mine enemy; I have undone three tailors; I have\nhad four quarrels, and like to have fought one.\n\nJAQUES:\nAnd how was that ta'en up?\n\nTOUCHSTONE:\nFaith, we met, and found the quarrel was upon the\nseventh cause.\n\nJAQUES:\nHow seventh cause? Good my lord, like this fellow.\n\nDUKE SENIOR:\nI like him very well.\n\nTOUCHSTONE:\nGod 'ild you, sir; I desire you of the like. I\npress in here, sir, amongst the rest of the country\ncopulatives, to swear and to forswear: according as\nmarriage binds and blood breaks: a poor virgin,\nsir, an ill-favoured thing, sir, but mine own; a poor\nhumour of mine, sir, to take that that no man else\nwill: rich honesty dwells like a miser, sir, in a\npoor house; as your pearl in your foul oyster.\n\nDUKE SENIOR:\nBy my faith, he is very swift and sententious.\n\nTOUCHSTONE:\nAccording to the fool's bolt, sir, and such dulcet diseases.\n\nJAQUES:\nBut, for the seventh cause; how did you find the\nquarrel on the seventh cause?\n\nTOUCHSTONE:\nUpon a lie seven times removed:--bear your body more\nseeming, Audrey:--as thus, sir. I did dislike the\ncut of a certain courtier's beard: he sent me word,\nif I said his beard was not cut well, he was in the\nmind it was: this is called the Retort Courteous.\nIf I sent him word again 'it was not well cut,' he\nwould send me word, he cut it to please himself:\nthis is called the Quip Modest. If again 'it was\nnot well cut,' he disabled my judgment: this is\ncalled the Reply Churlish. If again 'it was not\nwell cut,' he would answer, I spake not true: this\nis called the Reproof Valiant. If again 'it was not\nwell cut,' he would say I lied: this is called the\nCounter-cheque Quarrelsome: and so to the Lie\nCircumstantial and the Lie Direct.\n\nJAQUES:\nAnd how oft did you say his beard was not well cut?\n\nTOUCHSTONE:\nI durst go no further than the Lie Circumstantial,\nnor he durst not give me the Lie Direct; and so we\nmeasured swords and parted.\n\nJAQUES:\nCan you nominate in order now the degrees of the lie?\n\nTOUCHSTONE:\nO sir, we quarrel in print, by the book; as you have\nbooks for good manners: I will name you the degrees.\nThe first, the Retort Courteous; the second, the\nQuip Modest; the third, the Reply Churlish; the\nfourth, the Reproof Valiant; the fifth, the\nCountercheque Quarrelsome; the sixth, the Lie with\nCircumstance; the seventh, the Lie Direct. All\nthese you may avoid but the Lie Direct; and you may\navoid that too, with an If. I knew when seven\njustices could not take up a quarrel, but when the\nparties were met themselves, one of them thought but\nof an If, as, 'If you said so, then I said so;' and\nthey shook hands and swore brothers. Your If is the\nonly peacemaker; much virtue in If.\n\nJAQUES:\nIs not this a rare fellow, my lord? he's as good at\nany thing and yet a fool.\n\nDUKE SENIOR:\nHe uses his folly like a stalking-horse and under\nthe presentation of that he shoots his wit.\n\nHYMEN:\nThen is there mirth in heaven,\nWhen earthly things made even\nAtone together.\nGood duke, receive thy daughter\nHymen from heaven brought her,\nYea, brought her hither,\nThat thou mightst join her hand with his\nWhose heart within his bosom is.\n\nROSALIND:\n\nDUKE SENIOR:\nIf there be truth in sight, you are my daughter.\n\nORLANDO:\nIf there be truth in sight, you are my Rosalind.\n\nPHEBE:\nIf sight and shape be true,\nWhy then, my love adieu!\n\nROSALIND:\nI'll have no father, if you be not he:\nI'll have no husband, if you be not he:\nNor ne'er wed woman, if you be not she.\n\nHYMEN:\nPeace, ho! I bar confusion:\n'Tis I must make conclusion\nOf these most strange events:\nHere's eight that must take hands\nTo join in Hymen's bands,\nIf truth holds true contents.\nYou and you no cross shall part:\nYou and you are heart in heart\nYou to his love must accord,\nOr have a woman to your lord:\nYou and you are sure together,\nAs the winter to foul weather.\nWhiles a wedlock-hymn we sing,\nFeed yourselves with questioning;\nThat reason wonder may diminish,\nHow thus we met, and these things finish.\nWedding is great Juno's crown:\nO blessed bond of board and bed!\n'Tis Hymen peoples every town;\nHigh wedlock then be honoured:\nHonour, high honour and renown,\nTo Hymen, god of every town!\n\nDUKE SENIOR:\nO my dear niece, welcome thou art to me!\nEven daughter, welcome, in no less degree.\n\nPHEBE:\nI will not eat my word, now thou art mine;\nThy faith my fancy to thee doth combine.\n\nJAQUES DE BOYS:\nLet me have audience for a word or two:\nI am the second son of old Sir Rowland,\nThat bring these tidings to this fair assembly.\nDuke Frederick, hearing how that every day\nMen of great worth resorted to this forest,\nAddress'd a mighty power; which were on foot,\nIn his own conduct, purposely to take\nHis brother here and put him to the sword:\nAnd to the skirts of this wild wood he came;\nWhere meeting with an old religious man,\nAfter some question with him, was converted\nBoth from his enterprise and from the world,\nHis crown bequeathing to his banish'd brother,\nAnd all their lands restored to them again\nThat were with him exiled. This to be true,\nI do engage my life.\n\nDUKE SENIOR:\nWelcome, young man;\nThou offer'st fairly to thy brothers' wedding:\nTo one his lands withheld, and to the other\nA land itself at large, a potent dukedom.\nFirst, in this forest, let us do those ends\nThat here were well begun and well begot:\nAnd after, every of this happy number\nThat have endured shrewd days and nights with us\nShall share the good of our returned fortune,\nAccording to the measure of their states.\nMeantime, forget this new-fall'n dignity\nAnd fall into our rustic revelry.\nPlay, music! And you, brides and bridegrooms all,\nWith measure heap'd in joy, to the measures fall.\n\nJAQUES:\nSir, by your patience. If I heard you rightly,\nThe duke hath put on a religious life\nAnd thrown into neglect the pompous court?\n\nJAQUES DE BOYS:\nHe hath.\n\nJAQUES:\nTo him will I : out of these convertites\nThere is much matter to be heard and learn'd.\nYou to your former honour I bequeath;\nYour patience and your virtue well deserves it:\nYou to a love that your true faith doth merit:\nYou to your land and love and great allies:\nYou to a long and well-deserved bed:\nAnd you to wrangling; for thy loving voyage\nIs but for two months victuall'd. So, to your pleasures:\nI am for other than for dancing measures.\n\nDUKE SENIOR:\nStay, Jaques, stay.\n\nJAQUES:\nTo see no pastime I what you would have\nI'll stay to know at your abandon'd cave.\n\nDUKE SENIOR:\nProceed, proceed: we will begin these rites,\nAs we do trust they'll end, in true delights.\n\nROSALIND:\nIt is not the fashion to see the lady the epilogue;\nbut it is no more unhandsome than to see the lord\nthe prologue. If it be true that good wine needs\nno bush, 'tis true that a good play needs no\nepilogue; yet to good wine they do use good bushes,\nand good plays prove the better by the help of good\nepilogues. What a case am I in then, that am\nneither a good epilogue nor cannot insinuate with\nyou in the behalf of a good play! I am not\nfurnished like a beggar, therefore to beg will not\nbecome me: my way is to conjure you; and I'll begin\nwith the women. I charge you, O women, for the love\nyou bear to men, to like as much of this play as\nplease you: and I charge you, O men, for the love\nyou bear to women--as I perceive by your simpering,\nnone of you hates them--that between you and the\nwomen the play may please. If I were a woman I\nwould kiss as many of you as had beards that pleased\nme, complexions that liked me and breaths that I\ndefied not: and, I am sure, as many as have good\nbeards or good faces or sweet breaths will, for my\nkind offer, when I make curtsy, bid me farewell.\n\nVALENTINE:\nCease to persuade, my loving Proteus:\nHome-keeping youth have ever homely wits.\nWere't not affection chains thy tender days\nTo the sweet glances of thy honour'd love,\nI rather would entreat thy company\nTo see the wonders of the world abroad,\nThan, living dully sluggardized at home,\nWear out thy youth with shapeless idleness.\nBut since thou lovest, love still and thrive therein,\nEven as I would when I to love begin.\n\nPROTEUS:\nWilt thou be gone? Sweet Valentine, adieu!\nThink on thy Proteus, when thou haply seest\nSome rare note-worthy object in thy travel:\nWish me partaker in thy happiness\nWhen thou dost meet good hap; and in thy danger,\nIf ever danger do environ thee,\nCommend thy grievance to my holy prayers,\nFor I will be thy beadsman, Valentine.\n\nVALENTINE:\nAnd on a love-book pray for my success?\n\nPROTEUS:\nUpon some book I love I'll pray for thee.\n\nVALENTINE:\nThat's on some shallow story of deep love:\nHow young Leander cross'd the Hellespont.\n\nPROTEUS:\nThat's a deep story of a deeper love:\nFor he was more than over shoes in love.\n\nVALENTINE:\n'Tis true; for you are over boots in love,\nAnd yet you never swum the Hellespont.\n\nPROTEUS:\nOver the boots? nay, give me not the boots.\n\nVALENTINE:\nNo, I will not, for it boots thee not.\n\nPROTEUS:\nWhat?\n\nVALENTINE:\nTo be in love, where scorn is bought with groans;\nCoy looks with heart-sore sighs; one fading moment's mirth\nWith twenty watchful, weary, tedious nights:\nIf haply won, perhaps a hapless gain;\nIf lost, why then a grievous labour won;\nHowever, but a folly bought with wit,\nOr else a wit by folly vanquished.\n\nPROTEUS:\nSo, by your circumstance, you call me fool.\n\nVALENTINE:\nSo, by your circumstance, I fear you'll prove.\n\nPROTEUS:\n'Tis love you cavil at: I am not Love.\n\nVALENTINE:\nLove is your master, for he masters you:\nAnd he that is so yoked by a fool,\nMethinks, should not be chronicled for wise.\n\nPROTEUS:\nYet writers say, as in the sweetest bud\nThe eating canker dwells, so eating love\nInhabits in the finest wits of all.\n\nVALENTINE:\nAnd writers say, as the most forward bud\nIs eaten by the canker ere it blow,\nEven so by love the young and tender wit\nIs turn'd to folly, blasting in the bud,\nLosing his verdure even in the prime\nAnd all the fair effects of future hopes.\nBut wherefore waste I time to counsel thee,\nThat art a votary to fond desire?\nOnce more adieu! my father at the road\nExpects my coming, there to see me shipp'd.\n\nPROTEUS:\nAnd thither will I bring thee, Valentine.\n\nVALENTINE:\nSweet Proteus, no; now let us take our leave.\nTo Milan let me hear from thee by letters\nOf thy success in love, and what news else\nBetideth here in absence of thy friend;\nAnd likewise will visit thee with mine.\n\nPROTEUS:\nAll happiness bechance to thee in Milan!\n\nVALENTINE:\nAs much to you at home! and so, farewell.\n\nPROTEUS:\nHe after honour hunts, I after love:\nHe leaves his friends to dignify them more,\nI leave myself, my friends and all, for love.\nThou, Julia, thou hast metamorphosed me,\nMade me neglect my studies, lose my time,\nWar with good counsel, set the world at nought;\nMade wit with musing weak, heart sick with thought.\n\nSPEED:\nSir Proteus, save you! Saw you my master?\n\nPROTEUS:\nBut now he parted hence, to embark for Milan.\n\nSPEED:\nTwenty to one then he is shipp'd already,\nAnd I have play'd the sheep in losing him.\n\nPROTEUS:\nIndeed, a sheep doth very often stray,\nAn if the shepherd be a while away.\n\nSPEED:\nYou conclude that my master is a shepherd, then,\nand I a sheep?\n\nPROTEUS:\nI do.\n\nSPEED:\nWhy then, my horns are his horns, whether I wake or sleep.\n\nPROTEUS:\nA silly answer and fitting well a sheep.\n\nSPEED:\nThis proves me still a sheep.\n\nPROTEUS:\nTrue; and thy master a shepherd.\n\nSPEED:\nNay, that I can deny by a circumstance.\n\nPROTEUS:\nIt shall go hard but I'll prove it by another.\n\nSPEED:\nThe shepherd seeks the sheep, and not the sheep the\nshepherd; but I seek my master, and my master seeks\nnot me: therefore I am no sheep.\n\nPROTEUS:\nThe sheep for fodder follow the shepherd; the\nshepherd for food follows not the sheep: thou for\nwages followest thy master; thy master for wages\nfollows not thee: therefore thou art a sheep.\n\nSPEED:\nSuch another proof will make me cry 'baa.'\n\nPROTEUS:\nBut, dost thou hear? gavest thou my letter to Julia?\n\nSPEED:\nAy sir: I, a lost mutton, gave your letter to her,\na laced mutton, and she, a laced mutton, gave me, a\nlost mutton, nothing for my labour.\n\nPROTEUS:\nHere's too small a pasture for such store of muttons.\n\nSPEED:\nIf the ground be overcharged, you were best stick her.\n\nPROTEUS:\nNay: in that you are astray, 'twere best pound you.\n\nSPEED:\nNay, sir, less than a pound shall serve me for\ncarrying your letter.\n\nPROTEUS:\nYou mistake; I mean the pound,--a pinfold.\n\nSPEED:\nFrom a pound to a pin? fold it over and over,\n'Tis threefold too little for carrying a letter to\nyour lover.\n\nPROTEUS:\nBut what said she?\n\nSPEED:\n\nPROTEUS:\nNod--Ay--why, that's noddy.\n\nSPEED:\nYou mistook, sir; I say, she did nod: and you ask\nme if she did nod; and I say, 'Ay.'\n\nPROTEUS:\nAnd that set together is noddy.\n\nSPEED:\nNow you have taken the pains to set it together,\ntake it for your pains.\n\nPROTEUS:\nNo, no; you shall have it for bearing the letter.\n\nSPEED:\nWell, I perceive I must be fain to bear with you.\n\nPROTEUS:\nWhy sir, how do you bear with me?\n\nSPEED:\nMarry, sir, the letter, very orderly; having nothing\nbut the word 'noddy' for my pains.\n\nPROTEUS:\nBeshrew me, but you have a quick wit.\n\nSPEED:\nAnd yet it cannot overtake your slow purse.\n\nPROTEUS:\nCome come, open the matter in brief: what said she?\n\nSPEED:\nOpen your purse, that the money and the matter may\nbe both at once delivered.\n\nPROTEUS:\nWell, sir, here is for your pains. What said she?\n\nSPEED:\nTruly, sir, I think you'll hardly win her.\n\nPROTEUS:\nWhy, couldst thou perceive so much from her?\n\nSPEED:\nSir, I could perceive nothing at all from her; no,\nnot so much as a ducat for delivering your letter:\nand being so hard to me that brought your mind, I\nfear she'll prove as hard to you in telling your\nmind. Give her no token but stones; for she's as\nhard as steel.\n\nPROTEUS:\nWhat said she? nothing?\n\nSPEED:\nNo, not so much as 'Take this for thy pains.' To\ntestify your bounty, I thank you, you have testerned\nme; in requital whereof, henceforth carry your\nletters yourself: and so, sir, I'll commend you to my master.\n\nPROTEUS:\nGo, go, be gone, to save your ship from wreck,\nWhich cannot perish having thee aboard,\nBeing destined to a drier death on shore.\nI must go send some better messenger:\nI fear my Julia would not deign my lines,\nReceiving them from such a worthless post.\n\nJULIA:\nBut say, Lucetta, now we are alone,\nWouldst thou then counsel me to fall in love?\n\nLUCETTA:\nAy, madam, so you stumble not unheedfully.\n\nJULIA:\nOf all the fair resort of gentlemen\nThat every day with parle encounter me,\nIn thy opinion which is worthiest love?\n\nLUCETTA:\nPlease you repeat their names, I'll show my mind\nAccording to my shallow simple skill.\n\nJULIA:\nWhat think'st thou of the fair Sir Eglamour?\n\nLUCETTA:\nAs of a knight well-spoken, neat and fine;\nBut, were I you, he never should be mine.\n\nJULIA:\nWhat think'st thou of the rich Mercatio?\n\nLUCETTA:\nWell of his wealth; but of himself, so so.\n\nJULIA:\nWhat think'st thou of the gentle Proteus?\n\nLUCETTA:\nLord, Lord! to see what folly reigns in us!\n\nJULIA:\nHow now! what means this passion at his name?\n\nLUCETTA:\nPardon, dear madam: 'tis a passing shame\nThat I, unworthy body as I am,\nShould censure thus on lovely gentlemen.\n\nJULIA:\nWhy not on Proteus, as of all the rest?\n\nLUCETTA:\nThen thus: of many good I think him best.\n\nJULIA:\nYour reason?\n\nLUCETTA:\nI have no other, but a woman's reason;\nI think him so because I think him so.\n\nJULIA:\nAnd wouldst thou have me cast my love on him?\n\nLUCETTA:\nAy, if you thought your love not cast away.\n\nJULIA:\nWhy he, of all the rest, hath never moved me.\n\nLUCETTA:\nYet he, of all the rest, I think, best loves ye.\n\nJULIA:\nHis little speaking shows his love but small.\n\nLUCETTA:\nFire that's closest kept burns most of all.\n\nJULIA:\nThey do not love that do not show their love.\n\nLUCETTA:\nO, they love least that let men know their love.\n\nJULIA:\nI would I knew his mind.\n\nLUCETTA:\nPeruse this paper, madam.\n\nJULIA:\n'To Julia.' Say, from whom?\n\nLUCETTA:\nThat the contents will show.\n\nJULIA:\nSay, say, who gave it thee?\n\nLUCETTA:\nValentine's page; and sent, I think, from Proteus.\nHe would have given it you; but I, being in the way,\nDid in your name receive it: pardon the\nfault I pray.\n\nJULIA:\nNow, by my modesty, a goodly broker!\nDare you presume to harbour wanton lines?\nTo whisper and conspire against my youth?\nNow, trust me, 'tis an office of great worth\nAnd you an officer fit for the place.\nOr else return no more into my sight.\n\nLUCETTA:\nTo plead for love deserves more fee than hate.\n\nJULIA:\nWill ye be gone?\n\nLUCETTA:\nThat you may ruminate.\n\nJULIA:\nAnd yet I would I had o'erlooked the letter:\nIt were a shame to call her back again\nAnd pray her to a fault for which I chid her.\nWhat a fool is she, that knows I am a maid,\nAnd would not force the letter to my view!\nSince maids, in modesty, say 'no' to that\nWhich they would have the profferer construe 'ay.'\nFie, fie, how wayward is this foolish love\nThat, like a testy babe, will scratch the nurse\nAnd presently all humbled kiss the rod!\nHow churlishly I chid Lucetta hence,\nWhen willingly I would have had her here!\nHow angerly I taught my brow to frown,\nWhen inward joy enforced my heart to smile!\nMy penance is to call Lucetta back\nAnd ask remission for my folly past.\nWhat ho! Lucetta!\n\nLUCETTA:\nWhat would your ladyship?\n\nJULIA:\nIs't near dinner-time?\n\nLUCETTA:\nI would it were,\nThat you might kill your stomach on your meat\nAnd not upon your maid.\n\nJULIA:\nWhat is't that you took up so gingerly?\n\nLUCETTA:\nNothing.\n\nJULIA:\nWhy didst thou stoop, then?\n\nLUCETTA:\nTo take a paper up that I let fall.\n\nJULIA:\nAnd is that paper nothing?\n\nLUCETTA:\nNothing concerning me.\n\nJULIA:\nThen let it lie for those that it concerns.\n\nLUCETTA:\nMadam, it will not lie where it concerns\nUnless it have a false interpeter.\n\nJULIA:\nSome love of yours hath writ to you in rhyme.\n\nLUCETTA:\nThat I might sing it, madam, to a tune.\nGive me a note: your ladyship can set.\n\nJULIA:\nAs little by such toys as may be possible.\nBest sing it to the tune of 'Light o' love.'\n\nLUCETTA:\nIt is too heavy for so light a tune.\n\nJULIA:\nHeavy! belike it hath some burden then?\n\nLUCETTA:\nAy, and melodious were it, would you sing it.\n\nJULIA:\nAnd why not you?\n\nLUCETTA:\nI cannot reach so high.\n\nJULIA:\nLet's see your song. How now, minion!\n\nLUCETTA:\nKeep tune there still, so you will sing it out:\nAnd yet methinks I do not like this tune.\n\nJULIA:\nYou do not?\n\nLUCETTA:\nNo, madam; it is too sharp.\n\nJULIA:\nYou, minion, are too saucy.\n\nLUCETTA:\nNay, now you are too flat\nAnd mar the concord with too harsh a descant:\nThere wanteth but a mean to fill your song.\n\nJULIA:\nThe mean is drown'd with your unruly bass.\n\nLUCETTA:\nIndeed, I bid the base for Proteus.\n\nJULIA:\nThis babble shall not henceforth trouble me.\nHere is a coil with protestation!\nGo get you gone, and let the papers lie:\nYou would be fingering them, to anger me.\n\nLUCETTA:\nShe makes it strange; but she would be best pleased\nTo be so anger'd with another letter.\n\nJULIA:\nNay, would I were so anger'd with the same!\nO hateful hands, to tear such loving words!\nInjurious wasps, to feed on such sweet honey\nAnd kill the bees that yield it with your stings!\nI'll kiss each several paper for amends.\nLook, here is writ 'kind Julia.' Unkind Julia!\nAs in revenge of thy ingratitude,\nI throw thy name against the bruising stones,\nTrampling contemptuously on thy disdain.\nAnd here is writ 'love-wounded Proteus.'\nPoor wounded name! my bosom as a bed\nShall lodge thee till thy wound be thoroughly heal'd;\nAnd thus I search it with a sovereign kiss.\nBut twice or thrice was 'Proteus' written down.\nBe calm, good wind, blow not a word away\nTill I have found each letter in the letter,\nExcept mine own name: that some whirlwind bear\nUnto a ragged fearful-hanging rock\nAnd throw it thence into the raging sea!\nLo, here in one line is his name twice writ,\n'Poor forlorn Proteus, passionate Proteus,\nTo the sweet Julia:' that I'll tear away.\nAnd yet I will not, sith so prettily\nHe couples it to his complaining names.\nThus will I fold them one on another:\nNow kiss, embrace, contend, do what you will.\n\nLUCETTA:\nMadam,\nDinner is ready, and your father stays.\n\nJULIA:\nWell, let us go.\n\nLUCETTA:\nWhat, shall these papers lie like tell-tales here?\n\nJULIA:\nIf you respect them, best to take them up.\n\nLUCETTA:\nNay, I was taken up for laying them down:\nYet here they shall not lie, for catching cold.\n\nJULIA:\nI see you have a month's mind to them.\n\nLUCETTA:\nAy, madam, you may say what sights you see;\nI see things too, although you judge I wink.\n\nJULIA:\nCome, come; will't please you go?\n\nANTONIO:\nTell me, Panthino, what sad talk was that\nWherewith my brother held you in the cloister?\n\nPANTHINO:\n'Twas of his nephew Proteus, your son.\n\nANTONIO:\nWhy, what of him?\n\nPANTHINO:\nHe wonder'd that your lordship\nWould suffer him to spend his youth at home,\nWhile other men, of slender reputation,\nPut forth their sons to seek preferment out:\nSome to the wars, to try their fortune there;\nSome to discover islands far away;\nSome to the studious universities.\nFor any or for all these exercises,\nHe said that Proteus your son was meet,\nAnd did request me to importune you\nTo let him spend his time no more at home,\nWhich would be great impeachment to his age,\nIn having known no travel in his youth.\n\nANTONIO:\nNor need'st thou much importune me to that\nWhereon this month I have been hammering.\nI have consider'd well his loss of time\nAnd how he cannot be a perfect man,\nNot being tried and tutor'd in the world:\nExperience is by industry achieved\nAnd perfected by the swift course of time.\nThen tell me, whither were I best to send him?\n\nPANTHINO:\nI think your lordship is not ignorant\nHow his companion, youthful Valentine,\nAttends the emperor in his royal court.\n\nANTONIO:\nI know it well.\n\nPANTHINO:\n'Twere good, I think, your lordship sent him thither:\nThere shall he practise tilts and tournaments,\nHear sweet discourse, converse with noblemen.\nAnd be in eye of every exercise\nWorthy his youth and nobleness of birth.\n\nANTONIO:\nI like thy counsel; well hast thou advised:\nAnd that thou mayst perceive how well I like it,\nThe execution of it shall make known.\nEven with the speediest expedition\nI will dispatch him to the emperor's court.\n\nPANTHINO:\nTo-morrow, may it please you, Don Alphonso,\nWith other gentlemen of good esteem,\nAre journeying to salute the emperor\nAnd to commend their service to his will.\n\nANTONIO:\nGood company; with them shall Proteus go:\nAnd, in good time! now will we break with him.\n\nPROTEUS:\nSweet love! sweet lines! sweet life!\nHere is her hand, the agent of her heart;\nHere is her oath for love, her honour's pawn.\nO, that our fathers would applaud our loves,\nTo seal our happiness with their consents!\nO heavenly Julia!\n\nANTONIO:\nHow now! what letter are you reading there?\n\nPROTEUS:\nMay't please your lordship, 'tis a word or two\nOf commendations sent from Valentine,\nDeliver'd by a friend that came from him.\n\nANTONIO:\nLend me the letter; let me see what news.\n\nPROTEUS:\nThere is no news, my lord, but that he writes\nHow happily he lives, how well beloved\nAnd daily graced by the emperor;\nWishing me with him, partner of his fortune.\n\nANTONIO:\nAnd how stand you affected to his wish?\n\nPROTEUS:\nAs one relying on your lordship's will\nAnd not depending on his friendly wish.\n\nANTONIO:\nMy will is something sorted with his wish.\nMuse not that I thus suddenly proceed;\nFor what I will, I will, and there an end.\nI am resolved that thou shalt spend some time\nWith Valentinus in the emperor's court:\nWhat maintenance he from his friends receives,\nLike exhibition thou shalt have from me.\nTo-morrow be in readiness to go:\nExcuse it not, for I am peremptory.\n\nPROTEUS:\nMy lord, I cannot be so soon provided:\nPlease you, deliberate a day or two.\n\nANTONIO:\nLook, what thou want'st shall be sent after thee:\nNo more of stay! to-morrow thou must go.\nCome on, Panthino: you shall be employ'd\nTo hasten on his expedition.\n\nPROTEUS:\nThus have I shunn'd the fire for fear of burning,\nAnd drench'd me in the sea, where I am drown'd.\nI fear'd to show my father Julia's letter,\nLest he should take exceptions to my love;\nAnd with the vantage of mine own excuse\nHath he excepted most against my love.\nO, how this spring of love resembleth\nThe uncertain glory of an April day,\nWhich now shows all the beauty of the sun,\nAnd by and by a cloud takes all away!\n\nPANTHINO:\nSir Proteus, your father calls for you:\nHe is in haste; therefore, I pray you to go.\n\nPROTEUS:\nWhy, this it is: my heart accords thereto,\nAnd yet a thousand times it answers 'no.'\n\nSPEED:\nSir, your glove.\n\nVALENTINE:\nNot mine; my gloves are on.\n\nSPEED:\nWhy, then, this may be yours, for this is but one.\n\nVALENTINE:\nHa! let me see: ay, give it me, it's mine:\nSweet ornament that decks a thing divine!\nAh, Silvia, Silvia!\n\nSPEED:\nMadam Silvia! Madam Silvia!\n\nVALENTINE:\nHow now, sirrah?\n\nSPEED:\nShe is not within hearing, sir.\n\nVALENTINE:\nWhy, sir, who bade you call her?\n\nSPEED:\nYour worship, sir; or else I mistook.\n\nVALENTINE:\nWell, you'll still be too forward.\n\nSPEED:\nAnd yet I was last chidden for being too slow.\n\nVALENTINE:\nGo to, sir: tell me, do you know Madam Silvia?\n\nSPEED:\nShe that your worship loves?\n\nVALENTINE:\nWhy, how know you that I am in love?\n\nSPEED:\nMarry, by these special marks: first, you have\nlearned, like Sir Proteus, to wreathe your arms,\nlike a malecontent; to relish a love-song, like a\nrobin-redbreast; to walk alone, like one that had\nthe pestilence; to sigh, like a school-boy that had\nlost his A B C; to weep, like a young wench that had\nburied her grandam; to fast, like one that takes\ndiet; to watch like one that fears robbing; to\nspeak puling, like a beggar at Hallowmas. You were\nwont, when you laughed, to crow like a cock; when you\nwalked, to walk like one of the lions; when you\nfasted, it was presently after dinner; when you\nlooked sadly, it was for want of money: and now you\nare metamorphosed with a mistress, that, when I look\non you, I can hardly think you my master.\n\nVALENTINE:\nAre all these things perceived in me?\n\nSPEED:\nThey are all perceived without ye.\n\nVALENTINE:\nWithout me? they cannot.\n\nSPEED:\nWithout you? nay, that's certain, for, without you\nwere so simple, none else would: but you are so\nwithout these follies, that these follies are within\nyou and shine through you like the water in an\nurinal, that not an eye that sees you but is a\nphysician to comment on your malady.\n\nVALENTINE:\nBut tell me, dost thou know my lady Silvia?\n\nSPEED:\nShe that you gaze on so as she sits at supper?\n\nVALENTINE:\nHast thou observed that? even she, I mean.\n\nSPEED:\nWhy, sir, I know her not.\n\nVALENTINE:\nDost thou know her by my gazing on her, and yet\nknowest her not?\n\nSPEED:\nIs she not hard-favoured, sir?\n\nVALENTINE:\nNot so fair, boy, as well-favoured.\n\nSPEED:\nSir, I know that well enough.\n\nVALENTINE:\nWhat dost thou know?\n\nSPEED:\nThat she is not so fair as, of you, well-favoured.\n\nVALENTINE:\nI mean that her beauty is exquisite, but her favour infinite.\n\nSPEED:\nThat's because the one is painted and the other out\nof all count.\n\nVALENTINE:\nHow painted? and how out of count?\n\nSPEED:\nMarry, sir, so painted, to make her fair, that no\nman counts of her beauty.\n\nVALENTINE:\nHow esteemest thou me? I account of her beauty.\n\nSPEED:\nYou never saw her since she was deformed.\n\nVALENTINE:\nHow long hath she been deformed?\n\nSPEED:\nEver since you loved her.\n\nVALENTINE:\nI have loved her ever since I saw her; and still I\nsee her beautiful.\n\nSPEED:\nIf you love her, you cannot see her.\n\nVALENTINE:\nWhy?\n\nSPEED:\nBecause Love is blind. O, that you had mine eyes;\nor your own eyes had the lights they were wont to\nhave when you chid at Sir Proteus for going\nungartered!\n\nVALENTINE:\nWhat should I see then?\n\nSPEED:\nYour own present folly and her passing deformity:\nfor he, being in love, could not see to garter his\nhose, and you, being in love, cannot see to put on your hose.\n\nVALENTINE:\nBelike, boy, then, you are in love; for last\nmorning you could not see to wipe my shoes.\n\nSPEED:\nTrue, sir; I was in love with my bed: I thank you,\nyou swinged me for my love, which makes me the\nbolder to chide you for yours.\n\nVALENTINE:\nIn conclusion, I stand affected to her.\n\nSPEED:\nI would you were set, so your affection would cease.\n\nVALENTINE:\nLast night she enjoined me to write some lines to\none she loves.\n\nSPEED:\nAnd have you?\n\nVALENTINE:\nI have.\n\nSPEED:\nAre they not lamely writ?\n\nVALENTINE:\nNo, boy, but as well as I can do them. Peace!\nhere she comes.\n\nSPEED:\n\nVALENTINE:\nMadam and mistress, a thousand good-morrows.\n\nSPEED:\n\nSILVIA:\nSir Valentine and servant, to you two thousand.\n\nSPEED:\n\nVALENTINE:\nAs you enjoin'd me, I have writ your letter\nUnto the secret nameless friend of yours;\nWhich I was much unwilling to proceed in\nBut for my duty to your ladyship.\n\nSILVIA:\nI thank you gentle servant: 'tis very clerkly done.\n\nVALENTINE:\nNow trust me, madam, it came hardly off;\nFor being ignorant to whom it goes\nI writ at random, very doubtfully.\n\nSILVIA:\nPerchance you think too much of so much pains?\n\nVALENTINE:\nNo, madam; so it stead you, I will write\nPlease you command, a thousand times as much; And yet--\n\nSILVIA:\nA pretty period! Well, I guess the sequel;\nAnd yet I will not name it; and yet I care not;\nAnd yet take this again; and yet I thank you,\nMeaning henceforth to trouble you no more.\n\nSPEED:\n\nVALENTINE:\nWhat means your ladyship? do you not like it?\n\nSILVIA:\nYes, yes; the lines are very quaintly writ;\nBut since unwillingly, take them again.\nNay, take them.\n\nVALENTINE:\nMadam, they are for you.\n\nSILVIA:\nAy, ay: you writ them, sir, at my request;\nBut I will none of them; they are for you;\nI would have had them writ more movingly.\n\nVALENTINE:\nPlease you, I'll write your ladyship another.\n\nSILVIA:\nAnd when it's writ, for my sake read it over,\nAnd if it please you, so; if not, why, so.\n\nVALENTINE:\nIf it please me, madam, what then?\n\nSILVIA:\nWhy, if it please you, take it for your labour:\nAnd so, good morrow, servant.\n\nSPEED:\nO jest unseen, inscrutable, invisible,\nAs a nose on a man's face, or a weathercock on a steeple!\nMy master sues to her, and she hath\ntaught her suitor,\nHe being her pupil, to become her tutor.\nO excellent device! was there ever heard a better,\nThat my master, being scribe, to himself should write\nthe letter?\n\nVALENTINE:\nHow now, sir? what are you reasoning with yourself?\n\nSPEED:\nNay, I was rhyming: 'tis you that have the reason.\n\nVALENTINE:\nTo do what?\n\nSPEED:\nTo be a spokesman for Madam Silvia.\n\nVALENTINE:\nTo whom?\n\nSPEED:\nTo yourself: why, she wooes you by a figure.\n\nVALENTINE:\nWhat figure?\n\nSPEED:\nBy a letter, I should say.\n\nVALENTINE:\nWhy, she hath not writ to me?\n\nSPEED:\nWhat need she, when she hath made you write to\nyourself? Why, do you not perceive the jest?\n\nVALENTINE:\nNo, believe me.\n\nSPEED:\nNo believing you, indeed, sir. But did you perceive\nher earnest?\n\nVALENTINE:\nShe gave me none, except an angry word.\n\nSPEED:\nWhy, she hath given you a letter.\n\nVALENTINE:\nThat's the letter I writ to her friend.\n\nSPEED:\nAnd that letter hath she delivered, and there an end.\n\nVALENTINE:\nI would it were no worse.\n\nSPEED:\nI'll warrant you, 'tis as well:\nFor often have you writ to her, and she, in modesty,\nOr else for want of idle time, could not again reply;\nOr fearing else some messenger that might her mind discover,\nHerself hath taught her love himself to write unto her lover.\nAll this I speak in print, for in print I found it.\nWhy muse you, sir? 'tis dinner-time.\n\nVALENTINE:\nI have dined.\n\nSPEED:\nAy, but hearken, sir; though the chameleon Love can\nfeed on the air, I am one that am nourished by my\nvictuals, and would fain have meat. O, be not like\nyour mistress; be moved, be moved.\n\nPROTEUS:\nHave patience, gentle Julia.\n\nJULIA:\nI must, where is no remedy.\n\nPROTEUS:\nWhen possibly I can, I will return.\n\nJULIA:\nIf you turn not, you will return the sooner.\nKeep this remembrance for thy Julia's sake.\n\nPROTEUS:\nWhy then, we'll make exchange; here, take you this.\n\nJULIA:\nAnd seal the bargain with a holy kiss.\n\nPROTEUS:\nHere is my hand for my true constancy;\nAnd when that hour o'erslips me in the day\nWherein I sigh not, Julia, for thy sake,\nThe next ensuing hour some foul mischance\nTorment me for my love's forgetfulness!\nMy father stays my coming; answer not;\nThe tide is now: nay, not thy tide of tears;\nThat tide will stay me longer than I should.\nJulia, farewell!\nWhat, gone without a word?\nAy, so true love should do: it cannot speak;\nFor truth hath better deeds than words to grace it.\n\nPANTHINO:\nSir Proteus, you are stay'd for.\n\nPROTEUS:\nGo; I come, I come.\nAlas! this parting strikes poor lovers dumb.\n\nLAUNCE:\nNay, 'twill be this hour ere I have done weeping;\nall the kind of the Launces have this very fault. I\nhave received my proportion, like the prodigious\nson, and am going with Sir Proteus to the Imperial's\ncourt. I think Crab, my dog, be the sourest-natured\ndog that lives: my mother weeping, my father\nwailing, my sister crying, our maid howling, our cat\nwringing her hands, and all our house in a great\nperplexity, yet did not this cruel-hearted cur shed\none tear: he is a stone, a very pebble stone, and\nhas no more pity in him than a dog: a Jew would have\nwept to have seen our parting; why, my grandam,\nhaving no eyes, look you, wept herself blind at my\nparting. Nay, I'll show you the manner of it. This\nshoe is my father: no, this left shoe is my father:\nno, no, this left shoe is my mother: nay, that\ncannot be so neither: yes, it is so, it is so, it\nhath the worser sole. This shoe, with the hole in\nit, is my mother, and this my father; a vengeance\non't! there 'tis: now, sit, this staff is my\nsister, for, look you, she is as white as a lily and\nas small as a wand: this hat is Nan, our maid: I\nam the dog: no, the dog is himself, and I am the\ndog--Oh! the dog is me, and I am myself; ay, so,\nso. Now come I to my father; Father, your blessing:\nnow should not the shoe speak a word for weeping:\nnow should I kiss my father; well, he weeps on. Now\ncome I to my mother: O, that she could speak now\nlike a wood woman! Well, I kiss her; why, there\n'tis; here's my mother's breath up and down. Now\ncome I to my sister; mark the moan she makes. Now\nthe dog all this while sheds not a tear nor speaks a\nword; but see how I lay the dust with my tears.\n\nPANTHINO:\nLaunce, away, away, aboard! thy master is shipped\nand thou art to post after with oars. What's the\nmatter? why weepest thou, man? Away, ass! You'll\nlose the tide, if you tarry any longer.\n\nLAUNCE:\nIt is no matter if the tied were lost; for it is the\nunkindest tied that ever any man tied.\n\nPANTHINO:\nWhat's the unkindest tide?\n\nLAUNCE:\nWhy, he that's tied here, Crab, my dog.\n\nPANTHINO:\nTut, man, I mean thou'lt lose the flood, and, in\nlosing the flood, lose thy voyage, and, in losing\nthy voyage, lose thy master, and, in losing thy\nmaster, lose thy service, and, in losing thy\nservice,--Why dost thou stop my mouth?\n\nLAUNCE:\nFor fear thou shouldst lose thy tongue.\n\nPANTHINO:\nWhere should I lose my tongue?\n\nLAUNCE:\nIn thy tale.\n\nPANTHINO:\nIn thy tail!\n\nLAUNCE:\nLose the tide, and the voyage, and the master, and\nthe service, and the tied! Why, man, if the river\nwere dry, I am able to fill it with my tears; if the\nwind were down, I could drive the boat with my sighs.\n\nPANTHINO:\nCome, come away, man; I was sent to call thee.\n\nLAUNCE:\nSir, call me what thou darest.\n\nPANTHINO:\nWilt thou go?\n\nLAUNCE:\nWell, I will go.\n\nSILVIA:\nServant!\n\nVALENTINE:\nMistress?\n\nSPEED:\nMaster, Sir Thurio frowns on you.\n\nVALENTINE:\nAy, boy, it's for love.\n\nSPEED:\nNot of you.\n\nVALENTINE:\nOf my mistress, then.\n\nSPEED:\n'Twere good you knocked him.\n\nSILVIA:\nServant, you are sad.\n\nVALENTINE:\nIndeed, madam, I seem so.\n\nTHURIO:\nSeem you that you are not?\n\nVALENTINE:\nHaply I do.\n\nTHURIO:\nSo do counterfeits.\n\nVALENTINE:\nSo do you.\n\nTHURIO:\nWhat seem I that I am not?\n\nVALENTINE:\nWise.\n\nTHURIO:\nWhat instance of the contrary?\n\nVALENTINE:\nYour folly.\n\nTHURIO:\nAnd how quote you my folly?\n\nVALENTINE:\nI quote it in your jerkin.\n\nTHURIO:\nMy jerkin is a doublet.\n\nVALENTINE:\nWell, then, I'll double your folly.\n\nTHURIO:\nHow?\n\nSILVIA:\nWhat, angry, Sir Thurio! do you change colour?\n\nVALENTINE:\nGive him leave, madam; he is a kind of chameleon.\n\nTHURIO:\nThat hath more mind to feed on your blood than live\nin your air.\n\nVALENTINE:\nYou have said, sir.\n\nTHURIO:\nAy, sir, and done too, for this time.\n\nVALENTINE:\nI know it well, sir; you always end ere you begin.\n\nSILVIA:\nA fine volley of words, gentlemen, and quickly shot off.\n\nVALENTINE:\n'Tis indeed, madam; we thank the giver.\n\nSILVIA:\nWho is that, servant?\n\nVALENTINE:\nYourself, sweet lady; for you gave the fire. Sir\nThurio borrows his wit from your ladyship's looks,\nand spends what he borrows kindly in your company.\n\nTHURIO:\nSir, if you spend word for word with me, I shall\nmake your wit bankrupt.\n\nVALENTINE:\nI know it well, sir; you have an exchequer of words,\nand, I think, no other treasure to give your\nfollowers, for it appears by their bare liveries,\nthat they live by your bare words.\n\nSILVIA:\nNo more, gentlemen, no more:--here comes my father.\n\nDUKE:\nNow, daughter Silvia, you are hard beset.\nSir Valentine, your father's in good health:\nWhat say you to a letter from your friends\nOf much good news?\n\nVALENTINE:\nMy lord, I will be thankful.\nTo any happy messenger from thence.\n\nDUKE:\nKnow ye Don Antonio, your countryman?\n\nVALENTINE:\nAy, my good lord, I know the gentleman\nTo be of worth and worthy estimation\nAnd not without desert so well reputed.\n\nDUKE:\nHath he not a son?\n\nVALENTINE:\nAy, my good lord; a son that well deserves\nThe honour and regard of such a father.\n\nDUKE:\nYou know him well?\n\nVALENTINE:\nI know him as myself; for from our infancy\nWe have conversed and spent our hours together:\nAnd though myself have been an idle truant,\nOmitting the sweet benefit of time\nTo clothe mine age with angel-like perfection,\nYet hath Sir Proteus, for that's his name,\nMade use and fair advantage of his days;\nHis years but young, but his experience old;\nHis head unmellow'd, but his judgment ripe;\nAnd, in a word, for far behind his worth\nComes all the praises that I now bestow,\nHe is complete in feature and in mind\nWith all good grace to grace a gentleman.\n\nDUKE:\nBeshrew me, sir, but if he make this good,\nHe is as worthy for an empress' love\nAs meet to be an emperor's counsellor.\nWell, sir, this gentleman is come to me,\nWith commendation from great potentates;\nAnd here he means to spend his time awhile:\nI think 'tis no unwelcome news to you.\n\nVALENTINE:\nShould I have wish'd a thing, it had been he.\n\nDUKE:\nWelcome him then according to his worth.\nSilvia, I speak to you, and you, Sir Thurio;\nFor Valentine, I need not cite him to it:\nI will send him hither to you presently.\n\nVALENTINE:\nThis is the gentleman I told your ladyship\nHad come along with me, but that his mistress\nDid hold his eyes lock'd in her crystal looks.\n\nSILVIA:\nBelike that now she hath enfranchised them\nUpon some other pawn for fealty.\n\nVALENTINE:\nNay, sure, I think she holds them prisoners still.\n\nSILVIA:\nNay, then he should be blind; and, being blind\nHow could he see his way to seek out you?\n\nVALENTINE:\nWhy, lady, Love hath twenty pair of eyes.\n\nTHURIO:\nThey say that Love hath not an eye at all.\n\nVALENTINE:\nTo see such lovers, Thurio, as yourself:\nUpon a homely object Love can wink.\n\nSILVIA:\nHave done, have done; here comes the gentleman.\n\nVALENTINE:\nWelcome, dear Proteus! Mistress, I beseech you,\nConfirm his welcome with some special favour.\n\nSILVIA:\nHis worth is warrant for his welcome hither,\nIf this be he you oft have wish'd to hear from.\n\nVALENTINE:\nMistress, it is: sweet lady, entertain him\nTo be my fellow-servant to your ladyship.\n\nSILVIA:\nToo low a mistress for so high a servant.\n\nPROTEUS:\nNot so, sweet lady: but too mean a servant\nTo have a look of such a worthy mistress.\n\nVALENTINE:\nLeave off discourse of disability:\nSweet lady, entertain him for your servant.\n\nPROTEUS:\nMy duty will I boast of; nothing else.\n\nSILVIA:\nAnd duty never yet did want his meed:\nServant, you are welcome to a worthless mistress.\n\nPROTEUS:\nI'll die on him that says so but yourself.\n\nSILVIA:\nThat you are welcome?\n\nPROTEUS:\nThat you are worthless.\n\nTHURIO:\nMadam, my lord your father would speak with you.\n\nSILVIA:\nI wait upon his pleasure. Come, Sir Thurio,\nGo with me. Once more, new servant, welcome:\nI'll leave you to confer of home affairs;\nWhen you have done, we look to hear from you.\n\nPROTEUS:\nWe'll both attend upon your ladyship.\n\nVALENTINE:\nNow, tell me, how do all from whence you came?\n\nPROTEUS:\nYour friends are well and have them much commended.\n\nVALENTINE:\nAnd how do yours?\n\nPROTEUS:\nI left them all in health.\n\nVALENTINE:\nHow does your lady? and how thrives your love?\n\nPROTEUS:\nMy tales of love were wont to weary you;\nI know you joy not in a love discourse.\n\nVALENTINE:\nAy, Proteus, but that life is alter'd now:\nI have done penance for contemning Love,\nWhose high imperious thoughts have punish'd me\nWith bitter fasts, with penitential groans,\nWith nightly tears and daily heart-sore sighs;\nFor in revenge of my contempt of love,\nLove hath chased sleep from my enthralled eyes\nAnd made them watchers of mine own heart's sorrow.\nO gentle Proteus, Love's a mighty lord,\nAnd hath so humbled me, as, I confess,\nThere is no woe to his correction,\nNor to his service no such joy on earth.\nNow no discourse, except it be of love;\nNow can I break my fast, dine, sup and sleep,\nUpon the very naked name of love.\n\nPROTEUS:\nEnough; I read your fortune in your eye.\nWas this the idol that you worship so?\n\nVALENTINE:\nEven she; and is she not a heavenly saint?\n\nPROTEUS:\nNo; but she is an earthly paragon.\n\nVALENTINE:\nCall her divine.\n\nPROTEUS:\nI will not flatter her.\n\nVALENTINE:\nO, flatter me; for love delights in praises.\n\nPROTEUS:\nWhen I was sick, you gave me bitter pills,\nAnd I must minister the like to you.\n\nVALENTINE:\nThen speak the truth by her; if not divine,\nYet let her be a principality,\nSovereign to all the creatures on the earth.\n\nPROTEUS:\nExcept my mistress.\n\nVALENTINE:\nSweet, except not any;\nExcept thou wilt except against my love.\n\nPROTEUS:\nHave I not reason to prefer mine own?\n\nVALENTINE:\nAnd I will help thee to prefer her too:\nShe shall be dignified with this high honour--\nTo bear my lady's train, lest the base earth\nShould from her vesture chance to steal a kiss\nAnd, of so great a favour growing proud,\nDisdain to root the summer-swelling flower\nAnd make rough winter everlastingly.\n\nPROTEUS:\nWhy, Valentine, what braggardism is this?\n\nVALENTINE:\nPardon me, Proteus: all I can is nothing\nTo her whose worth makes other worthies nothing;\nShe is alone.\n\nPROTEUS:\nThen let her alone.\n\nVALENTINE:\nNot for the world: why, man, she is mine own,\nAnd I as rich in having such a jewel\nAs twenty seas, if all their sand were pearl,\nThe water nectar and the rocks pure gold.\nForgive me that I do not dream on thee,\nBecause thou see'st me dote upon my love.\nMy foolish rival, that her father likes\nOnly for his possessions are so huge,\nIs gone with her along, and I must after,\nFor love, thou know'st, is full of jealousy.\n\nPROTEUS:\nBut she loves you?\n\nVALENTINE:\nAy, and we are betroth'd: nay, more, our,\nmarriage-hour,\nWith all the cunning manner of our flight,\nDetermined of; how I must climb her window,\nThe ladder made of cords, and all the means\nPlotted and 'greed on for my happiness.\nGood Proteus, go with me to my chamber,\nIn these affairs to aid me with thy counsel.\n\nPROTEUS:\nGo on before; I shall inquire you forth:\nI must unto the road, to disembark\nSome necessaries that I needs must use,\nAnd then I'll presently attend you.\n\nVALENTINE:\nWill you make haste?\n\nPROTEUS:\nI will.\nEven as one heat another heat expels,\nOr as one nail by strength drives out another,\nSo the remembrance of my former love\nIs by a newer object quite forgotten.\nIs it mine, or Valentine's praise,\nHer true perfection, or my false transgression,\nThat makes me reasonless to reason thus?\nShe is fair; and so is Julia that I love--\nThat I did love, for now my love is thaw'd;\nWhich, like a waxen image, 'gainst a fire,\nBears no impression of the thing it was.\nMethinks my zeal to Valentine is cold,\nAnd that I love him not as I was wont.\nO, but I love his lady too too much,\nAnd that's the reason I love him so little.\nHow shall I dote on her with more advice,\nThat thus without advice begin to love her!\n'Tis but her picture I have yet beheld,\nAnd that hath dazzled my reason's light;\nBut when I look on her perfections,\nThere is no reason but I shall be blind.\nIf I can cheque my erring love, I will;\nIf not, to compass her I'll use my skill.\n\nSPEED:\nLaunce! by mine honesty, welcome to Milan!\n\nLAUNCE:\nForswear not thyself, sweet youth, for I am not\nwelcome. I reckon this always, that a man is never\nundone till he be hanged, nor never welcome to a\nplace till some certain shot be paid and the hostess\nsay 'Welcome!'\n\nSPEED:\nCome on, you madcap, I'll to the alehouse with you\npresently; where, for one shot of five pence, thou\nshalt have five thousand welcomes. But, sirrah, how\ndid thy master part with Madam Julia?\n\nLAUNCE:\nMarry, after they closed in earnest, they parted very\nfairly in jest.\n\nSPEED:\nBut shall she marry him?\n\nLAUNCE:\nNo.\n\nSPEED:\nHow then? shall he marry her?\n\nLAUNCE:\nNo, neither.\n\nSPEED:\nWhat, are they broken?\n\nLAUNCE:\nNo, they are both as whole as a fish.\n\nSPEED:\nWhy, then, how stands the matter with them?\n\nLAUNCE:\nMarry, thus: when it stands well with him, it\nstands well with her.\n\nSPEED:\nWhat an ass art thou! I understand thee not.\n\nLAUNCE:\nWhat a block art thou, that thou canst not! My\nstaff understands me.\n\nSPEED:\nWhat thou sayest?\n\nLAUNCE:\nAy, and what I do too: look thee, I'll but lean,\nand my staff understands me.\n\nSPEED:\nIt stands under thee, indeed.\n\nLAUNCE:\nWhy, stand-under and under-stand is all one.\n\nSPEED:\nBut tell me true, will't be a match?\n\nLAUNCE:\nAsk my dog: if he say ay, it will! if he say no,\nit will; if he shake his tail and say nothing, it will.\n\nSPEED:\nThe conclusion is then that it will.\n\nLAUNCE:\nThou shalt never get such a secret from me but by a parable.\n\nSPEED:\n'Tis well that I get it so. But, Launce, how sayest\nthou, that my master is become a notable lover?\n\nLAUNCE:\nI never knew him otherwise.\n\nSPEED:\nThan how?\n\nLAUNCE:\nA notable lubber, as thou reportest him to be.\n\nSPEED:\nWhy, thou whoreson ass, thou mistakest me.\n\nLAUNCE:\nWhy, fool, I meant not thee; I meant thy master.\n\nSPEED:\nI tell thee, my master is become a hot lover.\n\nLAUNCE:\nWhy, I tell thee, I care not though he burn himself\nin love. If thou wilt, go with me to the alehouse;\nif not, thou art an Hebrew, a Jew, and not worth the\nname of a Christian.\n\nSPEED:\nWhy?\n\nLAUNCE:\nBecause thou hast not so much charity in thee as to\ngo to the ale with a Christian. Wilt thou go?\n\nSPEED:\nAt thy service.\n\nPROTEUS:\nTo leave my Julia, shall I be forsworn;\nTo love fair Silvia, shall I be forsworn;\nTo wrong my friend, I shall be much forsworn;\nAnd even that power which gave me first my oath\nProvokes me to this threefold perjury;\nLove bade me swear and Love bids me forswear.\nO sweet-suggesting Love, if thou hast sinned,\nTeach me, thy tempted subject, to excuse it!\nAt first I did adore a twinkling star,\nBut now I worship a celestial sun.\nUnheedful vows may heedfully be broken,\nAnd he wants wit that wants resolved will\nTo learn his wit to exchange the bad for better.\nFie, fie, unreverend tongue! to call her bad,\nWhose sovereignty so oft thou hast preferr'd\nWith twenty thousand soul-confirming oaths.\nI cannot leave to love, and yet I do;\nBut there I leave to love where I should love.\nJulia I lose and Valentine I lose:\nIf I keep them, I needs must lose myself;\nIf I lose them, thus find I by their loss\nFor Valentine myself, for Julia Silvia.\nI to myself am dearer than a friend,\nFor love is still most precious in itself;\nAnd Silvia--witness Heaven, that made her fair!--\nShows Julia but a swarthy Ethiope.\nI will forget that Julia is alive,\nRemembering that my love to her is dead;\nAnd Valentine I'll hold an enemy,\nAiming at Silvia as a sweeter friend.\nI cannot now prove constant to myself,\nWithout some treachery used to Valentine.\nThis night he meaneth with a corded ladder\nTo climb celestial Silvia's chamber-window,\nMyself in counsel, his competitor.\nNow presently I'll give her father notice\nOf their disguising and pretended flight;\nWho, all enraged, will banish Valentine;\nFor Thurio, he intends, shall wed his daughter;\nBut, Valentine being gone, I'll quickly cross\nBy some sly trick blunt Thurio's dull proceeding.\nLove, lend me wings to make my purpose swift,\nAs thou hast lent me wit to plot this drift!\n\nJULIA:\nCounsel, Lucetta; gentle girl, assist me;\nAnd even in kind love I do conjure thee,\nWho art the table wherein all my thoughts\nAre visibly character'd and engraved,\nTo lesson me and tell me some good mean\nHow, with my honour, I may undertake\nA journey to my loving Proteus.\n\nLUCETTA:\nAlas, the way is wearisome and long!\n\nJULIA:\nA true-devoted pilgrim is not weary\nTo measure kingdoms with his feeble steps;\nMuch less shall she that hath Love's wings to fly,\nAnd when the flight is made to one so dear,\nOf such divine perfection, as Sir Proteus.\n\nLUCETTA:\nBetter forbear till Proteus make return.\n\nJULIA:\nO, know'st thou not his looks are my soul's food?\nPity the dearth that I have pined in,\nBy longing for that food so long a time.\nDidst thou but know the inly touch of love,\nThou wouldst as soon go kindle fire with snow\nAs seek to quench the fire of love with words.\n\nLUCETTA:\nI do not seek to quench your love's hot fire,\nBut qualify the fire's extreme rage,\nLest it should burn above the bounds of reason.\n\nJULIA:\nThe more thou damm'st it up, the more it burns.\nThe current that with gentle murmur glides,\nThou know'st, being stopp'd, impatiently doth rage;\nBut when his fair course is not hindered,\nHe makes sweet music with the enamell'ed stones,\nGiving a gentle kiss to every sedge\nHe overtaketh in his pilgrimage,\nAnd so by many winding nooks he strays\nWith willing sport to the wild ocean.\nThen let me go and hinder not my course\nI'll be as patient as a gentle stream\nAnd make a pastime of each weary step,\nTill the last step have brought me to my love;\nAnd there I'll rest, as after much turmoil\nA blessed soul doth in Elysium.\n\nLUCETTA:\nBut in what habit will you go along?\n\nJULIA:\nNot like a woman; for I would prevent\nThe loose encounters of lascivious men:\nGentle Lucetta, fit me with such weeds\nAs may beseem some well-reputed page.\n\nLUCETTA:\nWhy, then, your ladyship must cut your hair.\n\nJULIA:\nNo, girl, I'll knit it up in silken strings\nWith twenty odd-conceited true-love knots.\nTo be fantastic may become a youth\nOf greater time than I shall show to be.\n\nLUCETTA:\nWhat fashion, madam shall I make your breeches?\n\nJULIA:\nThat fits as well as 'Tell me, good my lord,\nWhat compass will you wear your farthingale?'\nWhy even what fashion thou best likest, Lucetta.\n\nLUCETTA:\nYou must needs have them with a codpiece, madam.\n\nJULIA:\nOut, out, Lucetta! that would be ill-favour'd.\n\nLUCETTA:\nA round hose, madam, now's not worth a pin,\nUnless you have a codpiece to stick pins on.\n\nJULIA:\nLucetta, as thou lovest me, let me have\nWhat thou thinkest meet and is most mannerly.\nBut tell me, wench, how will the world repute me\nFor undertaking so unstaid a journey?\nI fear me, it will make me scandalized.\n\nLUCETTA:\nIf you think so, then stay at home and go not.\n\nJULIA:\nNay, that I will not.\n\nLUCETTA:\nThen never dream on infamy, but go.\nIf Proteus like your journey when you come,\nNo matter who's displeased when you are gone:\nI fear me, he will scarce be pleased withal.\n\nJULIA:\nThat is the least, Lucetta, of my fear:\nA thousand oaths, an ocean of his tears\nAnd instances of infinite of love\nWarrant me welcome to my Proteus.\n\nLUCETTA:\nAll these are servants to deceitful men.\n\nJULIA:\nBase men, that use them to so base effect!\nBut truer stars did govern Proteus' birth\nHis words are bonds, his oaths are oracles,\nHis love sincere, his thoughts immaculate,\nHis tears pure messengers sent from his heart,\nHis heart as far from fraud as heaven from earth.\n\nLUCETTA:\nPray heaven he prove so, when you come to him!\n\nJULIA:\nNow, as thou lovest me, do him not that wrong\nTo bear a hard opinion of his truth:\nOnly deserve my love by loving him;\nAnd presently go with me to my chamber,\nTo take a note of what I stand in need of,\nTo furnish me upon my longing journey.\nAll that is mine I leave at thy dispose,\nMy goods, my lands, my reputation;\nOnly, in lieu thereof, dispatch me hence.\nCome, answer not, but to it presently!\nI am impatient of my tarriance.\n\nDUKE:\nSir Thurio, give us leave, I pray, awhile;\nWe have some secrets to confer about.\nNow, tell me, Proteus, what's your will with me?\n\nPROTEUS:\nMy gracious lord, that which I would discover\nThe law of friendship bids me to conceal;\nBut when I call to mind your gracious favours\nDone to me, undeserving as I am,\nMy duty pricks me on to utter that\nWhich else no worldly good should draw from me.\nKnow, worthy prince, Sir Valentine, my friend,\nThis night intends to steal away your daughter:\nMyself am one made privy to the plot.\nI know you have determined to bestow her\nOn Thurio, whom your gentle daughter hates;\nAnd should she thus be stol'n away from you,\nIt would be much vexation to your age.\nThus, for my duty's sake, I rather chose\nTo cross my friend in his intended drift\nThan, by concealing it, heap on your head\nA pack of sorrows which would press you down,\nBeing unprevented, to your timeless grave.\n\nDUKE:\nProteus, I thank thee for thine honest care;\nWhich to requite, command me while I live.\nThis love of theirs myself have often seen,\nHaply when they have judged me fast asleep,\nAnd oftentimes have purposed to forbid\nSir Valentine her company and my court:\nBut fearing lest my jealous aim might err\nAnd so unworthily disgrace the man,\nA rashness that I ever yet have shunn'd,\nI gave him gentle looks, thereby to find\nThat which thyself hast now disclosed to me.\nAnd, that thou mayst perceive my fear of this,\nKnowing that tender youth is soon suggested,\nI nightly lodge her in an upper tower,\nThe key whereof myself have ever kept;\nAnd thence she cannot be convey'd away.\n\nPROTEUS:\nKnow, noble lord, they have devised a mean\nHow he her chamber-window will ascend\nAnd with a corded ladder fetch her down;\nFor which the youthful lover now is gone\nAnd this way comes he with it presently;\nWhere, if it please you, you may intercept him.\nBut, good my Lord, do it so cunningly\nThat my discovery be not aimed at;\nFor love of you, not hate unto my friend,\nHath made me publisher of this pretence.\n\nDUKE:\nUpon mine honour, he shall never know\nThat I had any light from thee of this.\n\nPROTEUS:\nAdieu, my Lord; Sir Valentine is coming.\n\nDUKE:\nSir Valentine, whither away so fast?\n\nVALENTINE:\nPlease it your grace, there is a messenger\nThat stays to bear my letters to my friends,\nAnd I am going to deliver them.\n\nDUKE:\nBe they of much import?\n\nVALENTINE:\nThe tenor of them doth but signify\nMy health and happy being at your court.\n\nDUKE:\nNay then, no matter; stay with me awhile;\nI am to break with thee of some affairs\nThat touch me near, wherein thou must be secret.\n'Tis not unknown to thee that I have sought\nTo match my friend Sir Thurio to my daughter.\n\nVALENTINE:\nI know it well, my Lord; and, sure, the match\nWere rich and honourable; besides, the gentleman\nIs full of virtue, bounty, worth and qualities\nBeseeming such a wife as your fair daughter:\nCannot your Grace win her to fancy him?\n\nDUKE:\nNo, trust me; she is peevish, sullen, froward,\nProud, disobedient, stubborn, lacking duty,\nNeither regarding that she is my child\nNor fearing me as if I were her father;\nAnd, may I say to thee, this pride of hers,\nUpon advice, hath drawn my love from her;\nAnd, where I thought the remnant of mine age\nShould have been cherish'd by her child-like duty,\nI now am full resolved to take a wife\nAnd turn her out to who will take her in:\nThen let her beauty be her wedding-dower;\nFor me and my possessions she esteems not.\n\nVALENTINE:\nWhat would your Grace have me to do in this?\n\nDUKE:\nThere is a lady in Verona here\nWhom I affect; but she is nice and coy\nAnd nought esteems my aged eloquence:\nNow therefore would I have thee to my tutor--\nFor long agone I have forgot to court;\nBesides, the fashion of the time is changed--\nHow and which way I may bestow myself\nTo be regarded in her sun-bright eye.\n\nVALENTINE:\nWin her with gifts, if she respect not words:\nDumb jewels often in their silent kind\nMore than quick words do move a woman's mind.\n\nDUKE:\nBut she did scorn a present that I sent her.\n\nVALENTINE:\nA woman sometimes scorns what best contents her.\nSend her another; never give her o'er;\nFor scorn at first makes after-love the more.\nIf she do frown, 'tis not in hate of you,\nBut rather to beget more love in you:\nIf she do chide, 'tis not to have you gone;\nFor why, the fools are mad, if left alone.\nTake no repulse, whatever she doth say;\nFor 'get you gone,' she doth not mean 'away!'\nFlatter and praise, commend, extol their graces;\nThough ne'er so black, say they have angels' faces.\nThat man that hath a tongue, I say, is no man,\nIf with his tongue he cannot win a woman.\n\nDUKE:\nBut she I mean is promised by her friends\nUnto a youthful gentleman of worth,\nAnd kept severely from resort of men,\nThat no man hath access by day to her.\n\nVALENTINE:\nWhy, then, I would resort to her by night.\n\nDUKE:\nAy, but the doors be lock'd and keys kept safe,\nThat no man hath recourse to her by night.\n\nVALENTINE:\nWhat lets but one may enter at her window?\n\nDUKE:\nHer chamber is aloft, far from the ground,\nAnd built so shelving that one cannot climb it\nWithout apparent hazard of his life.\n\nVALENTINE:\nWhy then, a ladder quaintly made of cords,\nTo cast up, with a pair of anchoring hooks,\nWould serve to scale another Hero's tower,\nSo bold Leander would adventure it.\n\nDUKE:\nNow, as thou art a gentleman of blood,\nAdvise me where I may have such a ladder.\n\nVALENTINE:\nWhen would you use it? pray, sir, tell me that.\n\nDUKE:\nThis very night; for Love is like a child,\nThat longs for every thing that he can come by.\n\nVALENTINE:\nBy seven o'clock I'll get you such a ladder.\n\nDUKE:\nBut, hark thee; I will go to her alone:\nHow shall I best convey the ladder thither?\n\nVALENTINE:\nIt will be light, my lord, that you may bear it\nUnder a cloak that is of any length.\n\nDUKE:\nA cloak as long as thine will serve the turn?\n\nVALENTINE:\nAy, my good lord.\n\nDUKE:\nThen let me see thy cloak:\nI'll get me one of such another length.\n\nVALENTINE:\nWhy, any cloak will serve the turn, my lord.\n\nDUKE:\nHow shall I fashion me to wear a cloak?\nI pray thee, let me feel thy cloak upon me.\nWhat letter is this same? What's here? 'To Silvia'!\nAnd here an engine fit for my proceeding.\nI'll be so bold to break the seal for once.\n'My thoughts do harbour with my Silvia nightly,\nAnd slaves they are to me that send them flying:\nO, could their master come and go as lightly,\nHimself would lodge where senseless they are lying!\nMy herald thoughts in thy pure bosom rest them:\nWhile I, their king, that hither them importune,\nDo curse the grace that with such grace hath bless'd them,\nBecause myself do want my servants' fortune:\nI curse myself, for they are sent by me,\nThat they should harbour where their lord would be.'\nWhat's here?\n'Silvia, this night I will enfranchise thee.'\n'Tis so; and here's the ladder for the purpose.\nWhy, Phaeton,--for thou art Merops' son,--\nWilt thou aspire to guide the heavenly car\nAnd with thy daring folly burn the world?\nWilt thou reach stars, because they shine on thee?\nGo, base intruder! overweening slave!\nBestow thy fawning smiles on equal mates,\nAnd think my patience, more than thy desert,\nIs privilege for thy departure hence:\nThank me for this more than for all the favours\nWhich all too much I have bestow'd on thee.\nBut if thou linger in my territories\nLonger than swiftest expedition\nWill give thee time to leave our royal court,\nBy heaven! my wrath shall far exceed the love\nI ever bore my daughter or thyself.\nBe gone! I will not hear thy vain excuse;\nBut, as thou lovest thy life, make speed from hence.\n\nVALENTINE:\nAnd why not death rather than living torment?\nTo die is to be banish'd from myself;\nAnd Silvia is myself: banish'd from her\nIs self from self: a deadly banishment!\nWhat light is light, if Silvia be not seen?\nWhat joy is joy, if Silvia be not by?\nUnless it be to think that she is by\nAnd feed upon the shadow of perfection\nExcept I be by Silvia in the night,\nThere is no music in the nightingale;\nUnless I look on Silvia in the day,\nThere is no day for me to look upon;\nShe is my essence, and I leave to be,\nIf I be not by her fair influence\nFoster'd, illumined, cherish'd, kept alive.\nI fly not death, to fly his deadly doom:\nTarry I here, I but attend on death:\nBut, fly I hence, I fly away from life.\n\nPROTEUS:\nRun, boy, run, run, and seek him out.\n\nLAUNCE:\nSoho, soho!\n\nPROTEUS:\nWhat seest thou?\n\nLAUNCE:\nHim we go to find: there's not a hair on's head\nbut 'tis a Valentine.\n\nPROTEUS:\nValentine?\n\nVALENTINE:\nNo.\n\nPROTEUS:\nWho then? his spirit?\n\nVALENTINE:\nNeither.\n\nPROTEUS:\nWhat then?\n\nVALENTINE:\nNothing.\n\nLAUNCE:\nCan nothing speak? Master, shall I strike?\n\nPROTEUS:\nWho wouldst thou strike?\n\nLAUNCE:\nNothing.\n\nPROTEUS:\nVillain, forbear.\n\nLAUNCE:\nWhy, sir, I'll strike nothing: I pray you,--\n\nPROTEUS:\nSirrah, I say, forbear. Friend Valentine, a word.\n\nVALENTINE:\nMy ears are stopt and cannot hear good news,\nSo much of bad already hath possess'd them.\n\nPROTEUS:\nThen in dumb silence will I bury mine,\nFor they are harsh, untuneable and bad.\n\nVALENTINE:\nIs Silvia dead?\n\nPROTEUS:\nNo, Valentine.\n\nVALENTINE:\nNo Valentine, indeed, for sacred Silvia.\nHath she forsworn me?\n\nPROTEUS:\nNo, Valentine.\n\nVALENTINE:\nNo Valentine, if Silvia have forsworn me.\nWhat is your news?\n\nLAUNCE:\nSir, there is a proclamation that you are vanished.\n\nPROTEUS:\nThat thou art banished--O, that's the news!--\nFrom hence, from Silvia and from me thy friend.\n\nVALENTINE:\nO, I have fed upon this woe already,\nAnd now excess of it will make me surfeit.\nDoth Silvia know that I am banished?\n\nPROTEUS:\nAy, ay; and she hath offer'd to the doom--\nWhich, unreversed, stands in effectual force--\nA sea of melting pearl, which some call tears:\nThose at her father's churlish feet she tender'd;\nWith them, upon her knees, her humble self;\nWringing her hands, whose whiteness so became them\nAs if but now they waxed pale for woe:\nBut neither bended knees, pure hands held up,\nSad sighs, deep groans, nor silver-shedding tears,\nCould penetrate her uncompassionate sire;\nBut Valentine, if he be ta'en, must die.\nBesides, her intercession chafed him so,\nWhen she for thy repeal was suppliant,\nThat to close prison he commanded her,\nWith many bitter threats of biding there.\n\nVALENTINE:\nNo more; unless the next word that thou speak'st\nHave some malignant power upon my life:\nIf so, I pray thee, breathe it in mine ear,\nAs ending anthem of my endless dolour.\n\nPROTEUS:\nCease to lament for that thou canst not help,\nAnd study help for that which thou lament'st.\nTime is the nurse and breeder of all good.\nHere if thou stay, thou canst not see thy love;\nBesides, thy staying will abridge thy life.\nHope is a lover's staff; walk hence with that\nAnd manage it against despairing thoughts.\nThy letters may be here, though thou art hence;\nWhich, being writ to me, shall be deliver'd\nEven in the milk-white bosom of thy love.\nThe time now serves not to expostulate:\nCome, I'll convey thee through the city-gate;\nAnd, ere I part with thee, confer at large\nOf all that may concern thy love-affairs.\nAs thou lovest Silvia, though not for thyself,\nRegard thy danger, and along with me!\n\nVALENTINE:\nI pray thee, Launce, an if thou seest my boy,\nBid him make haste and meet me at the North-gate.\n\nPROTEUS:\nGo, sirrah, find him out. Come, Valentine.\n\nVALENTINE:\nO my dear Silvia! Hapless Valentine!\n\nLAUNCE:\nI am but a fool, look you; and yet I have the wit to\nthink my master is a kind of a knave: but that's\nall one, if he be but one knave. He lives not now\nthat knows me to be in love; yet I am in love; but a\nteam of horse shall not pluck that from me; nor who\n'tis I love; and yet 'tis a woman; but what woman, I\nwill not tell myself; and yet 'tis a milkmaid; yet\n'tis not a maid, for she hath had gossips; yet 'tis\na maid, for she is her master's maid, and serves for\nwages. She hath more qualities than a water-spaniel;\nwhich is much in a bare Christian.\nHere is the cate-log of her condition.\n'Imprimis: She can fetch and carry.' Why, a horse\ncan do no more: nay, a horse cannot fetch, but only\ncarry; therefore is she better than a jade. 'Item:\nShe can milk;' look you, a sweet virtue in a maid\nwith clean hands.\n\nSPEED:\nHow now, Signior Launce! what news with your\nmastership?\n\nLAUNCE:\nWith my master's ship? why, it is at sea.\n\nSPEED:\nWell, your old vice still; mistake the word. What\nnews, then, in your paper?\n\nLAUNCE:\nThe blackest news that ever thou heardest.\n\nSPEED:\nWhy, man, how black?\n\nLAUNCE:\nWhy, as black as ink.\n\nSPEED:\nLet me read them.\n\nLAUNCE:\nFie on thee, jolt-head! thou canst not read.\n\nSPEED:\nThou liest; I can.\n\nLAUNCE:\nI will try thee. Tell me this: who begot thee?\n\nSPEED:\nMarry, the son of my grandfather.\n\nLAUNCE:\nO illiterate loiterer! it was the son of thy\ngrandmother: this proves that thou canst not read.\n\nSPEED:\nCome, fool, come; try me in thy paper.\n\nLAUNCE:\nThere; and St. Nicholas be thy speed!\n\nSPEED:\n\nLAUNCE:\nAy, that she can.\n\nSPEED:\n'Item: She brews good ale.'\n\nLAUNCE:\nAnd thereof comes the proverb: 'Blessing of your\nheart, you brew good ale.'\n\nSPEED:\n'Item: She can sew.'\n\nLAUNCE:\nThat's as much as to say, Can she so?\n\nSPEED:\n'Item: She can knit.'\n\nLAUNCE:\nWhat need a man care for a stock with a wench, when\nshe can knit him a stock?\n\nSPEED:\n'Item: She can wash and scour.'\n\nLAUNCE:\nA special virtue: for then she need not be washed\nand scoured.\n\nSPEED:\n'Item: She can spin.'\n\nLAUNCE:\nThen may I set the world on wheels, when she can\nspin for her living.\n\nSPEED:\n'Item: She hath many nameless virtues.'\n\nLAUNCE:\nThat's as much as to say, bastard virtues; that,\nindeed, know not their fathers and therefore have no names.\n\nSPEED:\n'Here follow her vices.'\n\nLAUNCE:\nClose at the heels of her virtues.\n\nSPEED:\n'Item: She is not to be kissed fasting in respect\nof her breath.'\n\nLAUNCE:\nWell, that fault may be mended with a breakfast. Read on.\n\nSPEED:\n'Item: She hath a sweet mouth.'\n\nLAUNCE:\nThat makes amends for her sour breath.\n\nSPEED:\n'Item: She doth talk in her sleep.'\n\nLAUNCE:\nIt's no matter for that, so she sleep not in her talk.\n\nSPEED:\n'Item: She is slow in words.'\n\nLAUNCE:\nO villain, that set this down among her vices! To\nbe slow in words is a woman's only virtue: I pray\nthee, out with't, and place it for her chief virtue.\n\nSPEED:\n'Item: She is proud.'\n\nLAUNCE:\nOut with that too; it was Eve's legacy, and cannot\nbe ta'en from her.\n\nSPEED:\n'Item: She hath no teeth.'\n\nLAUNCE:\nI care not for that neither, because I love crusts.\n\nSPEED:\n'Item: She is curst.'\n\nLAUNCE:\nWell, the best is, she hath no teeth to bite.\n\nSPEED:\n'Item: She will often praise her liquor.'\n\nLAUNCE:\nIf her liquor be good, she shall: if she will not, I\nwill; for good things should be praised.\n\nSPEED:\n'Item: She is too liberal.'\n\nLAUNCE:\nOf her tongue she cannot, for that's writ down she\nis slow of; of her purse she shall not, for that\nI'll keep shut: now, of another thing she may, and\nthat cannot I help. Well, proceed.\n\nSPEED:\n'Item: She hath more hair than wit, and more faults\nthan hairs, and more wealth than faults.'\n\nLAUNCE:\nStop there; I'll have her: she was mine, and not\nmine, twice or thrice in that last article.\nRehearse that once more.\n\nSPEED:\n'Item: She hath more hair than wit,'--\n\nLAUNCE:\nMore hair than wit? It may be; I'll prove it. The\ncover of the salt hides the salt, and therefore it\nis more than the salt; the hair that covers the wit\nis more than the wit, for the greater hides the\nless. What's next?\n\nSPEED:\n'And more faults than hairs,'--\n\nLAUNCE:\nThat's monstrous: O, that that were out!\n\nSPEED:\n'And more wealth than faults.'\n\nLAUNCE:\nWhy, that word makes the faults gracious. Well,\nI'll have her; and if it be a match, as nothing is\nimpossible,--\n\nSPEED:\nWhat then?\n\nLAUNCE:\nWhy, then will I tell thee--that thy master stays\nfor thee at the North-gate.\n\nSPEED:\nFor me?\n\nLAUNCE:\nFor thee! ay, who art thou? he hath stayed for a\nbetter man than thee.\n\nSPEED:\nAnd must I go to him?\n\nLAUNCE:\nThou must run to him, for thou hast stayed so long\nthat going will scarce serve the turn.\n\nSPEED:\nWhy didst not tell me sooner? pox of your love letters!\n\nLAUNCE:\nNow will he be swinged for reading my letter; an\nunmannerly slave, that will thrust himself into\nsecrets! I'll after, to rejoice in the boy's correction.\n\nDUKE:\nSir Thurio, fear not but that she will love you,\nNow Valentine is banish'd from her sight.\n\nTHURIO:\nSince his exile she hath despised me most,\nForsworn my company and rail'd at me,\nThat I am desperate of obtaining her.\n\nDUKE:\nThis weak impress of love is as a figure\nTrenched in ice, which with an hour's heat\nDissolves to water and doth lose his form.\nA little time will melt her frozen thoughts\nAnd worthless Valentine shall be forgot.\nHow now, Sir Proteus! Is your countryman\nAccording to our proclamation gone?\n\nPROTEUS:\nGone, my good lord.\n\nDUKE:\nMy daughter takes his going grievously.\n\nPROTEUS:\nA little time, my lord, will kill that grief.\n\nDUKE:\nSo I believe; but Thurio thinks not so.\nProteus, the good conceit I hold of thee--\nFor thou hast shown some sign of good desert--\nMakes me the better to confer with thee.\n\nPROTEUS:\nLonger than I prove loyal to your grace\nLet me not live to look upon your grace.\n\nDUKE:\nThou know'st how willingly I would effect\nThe match between Sir Thurio and my daughter.\n\nPROTEUS:\nI do, my lord.\n\nDUKE:\nAnd also, I think, thou art not ignorant\nHow she opposes her against my will\n\nPROTEUS:\nShe did, my lord, when Valentine was here.\n\nDUKE:\nAy, and perversely she persevers so.\nWhat might we do to make the girl forget\nThe love of Valentine and love Sir Thurio?\n\nPROTEUS:\nThe best way is to slander Valentine\nWith falsehood, cowardice and poor descent,\nThree things that women highly hold in hate.\n\nDUKE:\nAy, but she'll think that it is spoke in hate.\n\nPROTEUS:\nAy, if his enemy deliver it:\nTherefore it must with circumstance be spoken\nBy one whom she esteemeth as his friend.\n\nDUKE:\nThen you must undertake to slander him.\n\nPROTEUS:\nAnd that, my lord, I shall be loath to do:\n'Tis an ill office for a gentleman,\nEspecially against his very friend.\n\nDUKE:\nWhere your good word cannot advantage him,\nYour slander never can endamage him;\nTherefore the office is indifferent,\nBeing entreated to it by your friend.\n\nPROTEUS:\nYou have prevail'd, my lord; if I can do it\nBy ought that I can speak in his dispraise,\nShe shall not long continue love to him.\nBut say this weed her love from Valentine,\nIt follows not that she will love Sir Thurio.\n\nTHURIO:\nTherefore, as you unwind her love from him,\nLest it should ravel and be good to none,\nYou must provide to bottom it on me;\nWhich must be done by praising me as much\nAs you in worth dispraise Sir Valentine.\n\nDUKE:\nAnd, Proteus, we dare trust you in this kind,\nBecause we know, on Valentine's report,\nYou are already Love's firm votary\nAnd cannot soon revolt and change your mind.\nUpon this warrant shall you have access\nWhere you with Silvia may confer at large;\nFor she is lumpish, heavy, melancholy,\nAnd, for your friend's sake, will be glad of you;\nWhere you may temper her by your persuasion\nTo hate young Valentine and love my friend.\n\nPROTEUS:\nAs much as I can do, I will effect:\nBut you, Sir Thurio, are not sharp enough;\nYou must lay lime to tangle her desires\nBy wailful sonnets, whose composed rhymes\nShould be full-fraught with serviceable vows.\n\nDUKE:\nAy,\nMuch is the force of heaven-bred poesy.\n\nPROTEUS:\nSay that upon the altar of her beauty\nYou sacrifice your tears, your sighs, your heart:\nWrite till your ink be dry, and with your tears\nMoist it again, and frame some feeling line\nThat may discover such integrity:\nFor Orpheus' lute was strung with poets' sinews,\nWhose golden touch could soften steel and stones,\nMake tigers tame and huge leviathans\nForsake unsounded deeps to dance on sands.\nAfter your dire-lamenting elegies,\nVisit by night your lady's chamber-window\nWith some sweet concert; to their instruments\nTune a deploring dump: the night's dead silence\nWill well become such sweet-complaining grievance.\nThis, or else nothing, will inherit her.\n\nDUKE:\nThis discipline shows thou hast been in love.\n\nTHURIO:\nAnd thy advice this night I'll put in practise.\nTherefore, sweet Proteus, my direction-giver,\nLet us into the city presently\nTo sort some gentlemen well skill'd in music.\nI have a sonnet that will serve the turn\nTo give the onset to thy good advice.\n\nDUKE:\nAbout it, gentlemen!\n\nPROTEUS:\nWe'll wait upon your grace till after supper,\nAnd afterward determine our proceedings.\n\nDUKE:\nEven now about it! I will pardon you.\n\nFirst Outlaw:\nFellows, stand fast; I see a passenger.\n\nSecond Outlaw:\nIf there be ten, shrink not, but down with 'em.\n\nThird Outlaw:\nStand, sir, and throw us that you have about ye:\nIf not: we'll make you sit and rifle you.\n\nSPEED:\nSir, we are undone; these are the villains\nThat all the travellers do fear so much.\n\nVALENTINE:\nMy friends,--\n\nFirst Outlaw:\nThat's not so, sir: we are your enemies.\n\nSecond Outlaw:\nPeace! we'll hear him.\n\nThird Outlaw:\nAy, by my beard, will we, for he's a proper man.\n\nVALENTINE:\nThen know that I have little wealth to lose:\nA man I am cross'd with adversity;\nMy riches are these poor habiliments,\nOf which if you should here disfurnish me,\nYou take the sum and substance that I have.\n\nSecond Outlaw:\nWhither travel you?\n\nVALENTINE:\nTo Verona.\n\nFirst Outlaw:\nWhence came you?\n\nVALENTINE:\nFrom Milan.\n\nThird Outlaw:\nHave you long sojourned there?\n\nVALENTINE:\nSome sixteen months, and longer might have stay'd,\nIf crooked fortune had not thwarted me.\n\nFirst Outlaw:\nWhat, were you banish'd thence?\n\nVALENTINE:\nI was.\n\nSecond Outlaw:\nFor what offence?\n\nVALENTINE:\nFor that which now torments me to rehearse:\nI kill'd a man, whose death I much repent;\nBut yet I slew him manfully in fight,\nWithout false vantage or base treachery.\n\nFirst Outlaw:\nWhy, ne'er repent it, if it were done so.\nBut were you banish'd for so small a fault?\n\nVALENTINE:\nI was, and held me glad of such a doom.\n\nSecond Outlaw:\nHave you the tongues?\n\nVALENTINE:\nMy youthful travel therein made me happy,\nOr else I often had been miserable.\n\nThird Outlaw:\nBy the bare scalp of Robin Hood's fat friar,\nThis fellow were a king for our wild faction!\n\nFirst Outlaw:\nWe'll have him. Sirs, a word.\n\nSPEED:\nMaster, be one of them; it's an honourable kind of thievery.\n\nVALENTINE:\nPeace, villain!\n\nSecond Outlaw:\nTell us this: have you any thing to take to?\n\nVALENTINE:\nNothing but my fortune.\n\nThird Outlaw:\nKnow, then, that some of us are gentlemen,\nSuch as the fury of ungovern'd youth\nThrust from the company of awful men:\nMyself was from Verona banished\nFor practising to steal away a lady,\nAn heir, and near allied unto the duke.\n\nSecond Outlaw:\nAnd I from Mantua, for a gentleman,\nWho, in my mood, I stabb'd unto the heart.\n\nFirst Outlaw:\nAnd I for such like petty crimes as these,\nBut to the purpose--for we cite our faults,\nThat they may hold excus'd our lawless lives;\nAnd partly, seeing you are beautified\nWith goodly shape and by your own report\nA linguist and a man of such perfection\nAs we do in our quality much want--\n\nSecond Outlaw:\nIndeed, because you are a banish'd man,\nTherefore, above the rest, we parley to you:\nAre you content to be our general?\nTo make a virtue of necessity\nAnd live, as we do, in this wilderness?\n\nThird Outlaw:\nWhat say'st thou? wilt thou be of our consort?\nSay ay, and be the captain of us all:\nWe'll do thee homage and be ruled by thee,\nLove thee as our commander and our king.\n\nFirst Outlaw:\nBut if thou scorn our courtesy, thou diest.\n\nSecond Outlaw:\nThou shalt not live to brag what we have offer'd.\n\nVALENTINE:\nI take your offer and will live with you,\nProvided that you do no outrages\nOn silly women or poor passengers.\n\nThird Outlaw:\nNo, we detest such vile base practises.\nCome, go with us, we'll bring thee to our crews,\nAnd show thee all the treasure we have got,\nWhich, with ourselves, all rest at thy dispose.\n\nPROTEUS:\nAlready have I been false to Valentine\nAnd now I must be as unjust to Thurio.\nUnder the colour of commending him,\nI have access my own love to prefer:\nBut Silvia is too fair, too true, too holy,\nTo be corrupted with my worthless gifts.\nWhen I protest true loyalty to her,\nShe twits me with my falsehood to my friend;\nWhen to her beauty I commend my vows,\nShe bids me think how I have been forsworn\nIn breaking faith with Julia whom I loved:\nAnd notwithstanding all her sudden quips,\nThe least whereof would quell a lover's hope,\nYet, spaniel-like, the more she spurns my love,\nThe more it grows and fawneth on her still.\nBut here comes Thurio: now must we to her window,\nAnd give some evening music to her ear.\n\nTHURIO:\nHow now, Sir Proteus, are you crept before us?\n\nPROTEUS:\nAy, gentle Thurio: for you know that love\nWill creep in service where it cannot go.\n\nTHURIO:\nAy, but I hope, sir, that you love not here.\n\nPROTEUS:\nSir, but I do; or else I would be hence.\n\nTHURIO:\nWho? Silvia?\n\nPROTEUS:\nAy, Silvia; for your sake.\n\nTHURIO:\nI thank you for your own. Now, gentlemen,\nLet's tune, and to it lustily awhile.\n\nHost:\nNow, my young guest, methinks you're allycholly: I\npray you, why is it?\n\nJULIA:\nMarry, mine host, because I cannot be merry.\n\nHost:\nCome, we'll have you merry: I'll bring you where\nyou shall hear music and see the gentleman that you asked for.\n\nJULIA:\nBut shall I hear him speak?\n\nHost:\nAy, that you shall.\n\nJULIA:\nThat will be music.\n\nHost:\nHark, hark!\n\nJULIA:\nIs he among these?\n\nHost:\nAy: but, peace! let's hear 'em.\nWho is Silvia? what is she,\nThat all our swains commend her?\nHoly, fair and wise is she;\nThe heaven such grace did lend her,\nThat she might admired be.\nIs she kind as she is fair?\nFor beauty lives with kindness.\nLove doth to her eyes repair,\nTo help him of his blindness,\nAnd, being help'd, inhabits there.\nThen to Silvia let us sing,\nThat Silvia is excelling;\nShe excels each mortal thing\nUpon the dull earth dwelling:\nTo her let us garlands bring.\n\nHost:\nHow now! are you sadder than you were before? How\ndo you, man? the music likes you not.\n\nJULIA:\nYou mistake; the musician likes me not.\n\nHost:\nWhy, my pretty youth?\n\nJULIA:\nHe plays false, father.\n\nHost:\nHow? out of tune on the strings?\n\nJULIA:\nNot so; but yet so false that he grieves my very\nheart-strings.\n\nHost:\nYou have a quick ear.\n\nJULIA:\nAy, I would I were deaf; it makes me have a slow heart.\n\nHost:\nI perceive you delight not in music.\n\nJULIA:\nNot a whit, when it jars so.\n\nHost:\nHark, what fine change is in the music!\n\nJULIA:\nAy, that change is the spite.\n\nHost:\nYou would have them always play but one thing?\n\nJULIA:\nI would always have one play but one thing.\nBut, host, doth this Sir Proteus that we talk on\nOften resort unto this gentlewoman?\n\nHost:\nI tell you what Launce, his man, told me: he loved\nher out of all nick.\n\nJULIA:\nWhere is Launce?\n\nHost:\nGone to seek his dog; which tomorrow, by his\nmaster's command, he must carry for a present to his lady.\n\nJULIA:\nPeace! stand aside: the company parts.\n\nPROTEUS:\nSir Thurio, fear not you: I will so plead\nThat you shall say my cunning drift excels.\n\nTHURIO:\nWhere meet we?\n\nPROTEUS:\nAt Saint Gregory's well.\n\nTHURIO:\nFarewell.\n\nPROTEUS:\nMadam, good even to your ladyship.\n\nSILVIA:\nI thank you for your music, gentlemen.\nWho is that that spake?\n\nPROTEUS:\nOne, lady, if you knew his pure heart's truth,\nYou would quickly learn to know him by his voice.\n\nSILVIA:\nSir Proteus, as I take it.\n\nPROTEUS:\nSir Proteus, gentle lady, and your servant.\n\nSILVIA:\nWhat's your will?\n\nPROTEUS:\nThat I may compass yours.\n\nSILVIA:\nYou have your wish; my will is even this:\nThat presently you hie you home to bed.\nThou subtle, perjured, false, disloyal man!\nThink'st thou I am so shallow, so conceitless,\nTo be seduced by thy flattery,\nThat hast deceived so many with thy vows?\nReturn, return, and make thy love amends.\nFor me, by this pale queen of night I swear,\nI am so far from granting thy request\nThat I despise thee for thy wrongful suit,\nAnd by and by intend to chide myself\nEven for this time I spend in talking to thee.\n\nPROTEUS:\nI grant, sweet love, that I did love a lady;\nBut she is dead.\n\nJULIA:\n\nSILVIA:\nSay that she be; yet Valentine thy friend\nSurvives; to whom, thyself art witness,\nI am betroth'd: and art thou not ashamed\nTo wrong him with thy importunacy?\n\nPROTEUS:\nI likewise hear that Valentine is dead.\n\nSILVIA:\nAnd so suppose am I; for in his grave\nAssure thyself my love is buried.\n\nPROTEUS:\nSweet lady, let me rake it from the earth.\n\nSILVIA:\nGo to thy lady's grave and call hers thence,\nOr, at the least, in hers sepulchre thine.\n\nJULIA:\n\nPROTEUS:\nMadam, if your heart be so obdurate,\nVouchsafe me yet your picture for my love,\nThe picture that is hanging in your chamber;\nTo that I'll speak, to that I'll sigh and weep:\nFor since the substance of your perfect self\nIs else devoted, I am but a shadow;\nAnd to your shadow will I make true love.\n\nJULIA:\n\nSILVIA:\nI am very loath to be your idol, sir;\nBut since your falsehood shall become you well\nTo worship shadows and adore false shapes,\nSend to me in the morning and I'll send it:\nAnd so, good rest.\n\nPROTEUS:\nAs wretches have o'ernight\nThat wait for execution in the morn.\n\nJULIA:\nHost, will you go?\n\nHost:\nBy my halidom, I was fast asleep.\n\nJULIA:\nPray you, where lies Sir Proteus?\n\nHost:\nMarry, at my house. Trust me, I think 'tis almost\nday.\n\nJULIA:\nNot so; but it hath been the longest night\nThat e'er I watch'd and the most heaviest.\n\nEGLAMOUR:\nThis is the hour that Madam Silvia\nEntreated me to call and know her mind:\nThere's some great matter she'ld employ me in.\nMadam, madam!\n\nSILVIA:\nWho calls?\n\nEGLAMOUR:\nYour servant and your friend;\nOne that attends your ladyship's command.\n\nSILVIA:\nSir Eglamour, a thousand times good morrow.\n\nEGLAMOUR:\nAs many, worthy lady, to yourself:\nAccording to your ladyship's impose,\nI am thus early come to know what service\nIt is your pleasure to command me in.\n\nSILVIA:\nO Eglamour, thou art a gentleman--\nThink not I flatter, for I swear I do not--\nValiant, wise, remorseful, well accomplish'd:\nThou art not ignorant what dear good will\nI bear unto the banish'd Valentine,\nNor how my father would enforce me marry\nVain Thurio, whom my very soul abhors.\nThyself hast loved; and I have heard thee say\nNo grief did ever come so near thy heart\nAs when thy lady and thy true love died,\nUpon whose grave thou vow'dst pure chastity.\nSir Eglamour, I would to Valentine,\nTo Mantua, where I hear he makes abode;\nAnd, for the ways are dangerous to pass,\nI do desire thy worthy company,\nUpon whose faith and honour I repose.\nUrge not my father's anger, Eglamour,\nBut think upon my grief, a lady's grief,\nAnd on the justice of my flying hence,\nTo keep me from a most unholy match,\nWhich heaven and fortune still rewards with plagues.\nI do desire thee, even from a heart\nAs full of sorrows as the sea of sands,\nTo bear me company and go with me:\nIf not, to hide what I have said to thee,\nThat I may venture to depart alone.\n\nEGLAMOUR:\nMadam, I pity much your grievances;\nWhich since I know they virtuously are placed,\nI give consent to go along with you,\nRecking as little what betideth me\nAs much I wish all good befortune you.\nWhen will you go?\n\nSILVIA:\nThis evening coming.\n\nEGLAMOUR:\nWhere shall I meet you?\n\nSILVIA:\nAt Friar Patrick's cell,\nWhere I intend holy confession.\n\nEGLAMOUR:\nI will not fail your ladyship. Good morrow, gentle lady.\n\nSILVIA:\nGood morrow, kind Sir Eglamour.\n\nLAUNCE:\nWhen a man's servant shall play the cur with him,\nlook you, it goes hard: one that I brought up of a\npuppy; one that I saved from drowning, when three or\nfour of his blind brothers and sisters went to it.\nI have taught him, even as one would say precisely,\n'thus I would teach a dog.' I was sent to deliver\nhim as a present to Mistress Silvia from my master;\nand I came no sooner into the dining-chamber but he\nsteps me to her trencher and steals her capon's leg:\nO, 'tis a foul thing when a cur cannot keep himself\nin all companies! I would have, as one should say,\none that takes upon him to be a dog indeed, to be,\nas it were, a dog at all things. If I had not had\nmore wit than he, to take a fault upon me that he did,\nI think verily he had been hanged for't; sure as I\nlive, he had suffered for't; you shall judge. He\nthrusts me himself into the company of three or four\ngentlemanlike dogs under the duke's table: he had\nnot been there--bless the mark!--a pissing while, but\nall the chamber smelt him. 'Out with the dog!' says\none: 'What cur is that?' says another: 'Whip him\nout' says the third: 'Hang him up' says the duke.\nI, having been acquainted with the smell before,\nknew it was Crab, and goes me to the fellow that\nwhips the dogs: 'Friend,' quoth I, 'you mean to whip\nthe dog?' 'Ay, marry, do I,' quoth he. 'You do him\nthe more wrong,' quoth I; ''twas I did the thing you\nwot of.' He makes me no more ado, but whips me out\nof the chamber. How many masters would do this for\nhis servant? Nay, I'll be sworn, I have sat in the\nstocks for puddings he hath stolen, otherwise he had\nbeen executed; I have stood on the pillory for geese\nhe hath killed, otherwise he had suffered for't.\nThou thinkest not of this now. Nay, I remember the\ntrick you served me when I took my leave of Madam\nSilvia: did not I bid thee still mark me and do as I\ndo? when didst thou see me heave up my leg and make\nwater against a gentlewoman's farthingale? didst\nthou ever see me do such a trick?\n\nPROTEUS:\nSebastian is thy name? I like thee well\nAnd will employ thee in some service presently.\n\nJULIA:\nIn what you please: I'll do what I can.\n\nPROTEUS:\nI hope thou wilt.\nHow now, you whoreson peasant!\nWhere have you been these two days loitering?\n\nLAUNCE:\nMarry, sir, I carried Mistress Silvia the dog you bade me.\n\nPROTEUS:\nAnd what says she to my little jewel?\n\nLAUNCE:\nMarry, she says your dog was a cur, and tells you\ncurrish thanks is good enough for such a present.\n\nPROTEUS:\nBut she received my dog?\n\nLAUNCE:\nNo, indeed, did she not: here have I brought him\nback again.\n\nPROTEUS:\nWhat, didst thou offer her this from me?\n\nLAUNCE:\nAy, sir: the other squirrel was stolen from me by\nthe hangman boys in the market-place: and then I\noffered her mine own, who is a dog as big as ten of\nyours, and therefore the gift the greater.\n\nPROTEUS:\nGo get thee hence, and find my dog again,\nOr ne'er return again into my sight.\nAway, I say! stay'st thou to vex me here?\nA slave, that still an end turns me to shame!\nSebastian, I have entertained thee,\nPartly that I have need of such a youth\nThat can with some discretion do my business,\nFor 'tis no trusting to yond foolish lout,\nBut chiefly for thy face and thy behavior,\nWhich, if my augury deceive me not,\nWitness good bringing up, fortune and truth:\nTherefore know thou, for this I entertain thee.\nGo presently and take this ring with thee,\nDeliver it to Madam Silvia:\nShe loved me well deliver'd it to me.\n\nJULIA:\nIt seems you loved not her, to leave her token.\nShe is dead, belike?\n\nPROTEUS:\nNot so; I think she lives.\n\nJULIA:\nAlas!\n\nPROTEUS:\nWhy dost thou cry 'alas'?\n\nJULIA:\nI cannot choose\nBut pity her.\n\nPROTEUS:\nWherefore shouldst thou pity her?\n\nJULIA:\nBecause methinks that she loved you as well\nAs you do love your lady Silvia:\nShe dreams of him that has forgot her love;\nYou dote on her that cares not for your love.\n'Tis pity love should be so contrary;\nAnd thinking of it makes me cry 'alas!'\n\nPROTEUS:\nWell, give her that ring and therewithal\nThis letter. That's her chamber. Tell my lady\nI claim the promise for her heavenly picture.\nYour message done, hie home unto my chamber,\nWhere thou shalt find me, sad and solitary.\n\nJULIA:\nHow many women would do such a message?\nAlas, poor Proteus! thou hast entertain'd\nA fox to be the shepherd of thy lambs.\nAlas, poor fool! why do I pity him\nThat with his very heart despiseth me?\nBecause he loves her, he despiseth me;\nBecause I love him I must pity him.\nThis ring I gave him when he parted from me,\nTo bind him to remember my good will;\nAnd now am I, unhappy messenger,\nTo plead for that which I would not obtain,\nTo carry that which I would have refused,\nTo praise his faith which I would have dispraised.\nI am my master's true-confirmed love;\nBut cannot be true servant to my master,\nUnless I prove false traitor to myself.\nYet will I woo for him, but yet so coldly\nAs, heaven it knows, I would not have him speed.\nGentlewoman, good day! I pray you, be my mean\nTo bring me where to speak with Madam Silvia.\n\nSILVIA:\nWhat would you with her, if that I be she?\n\nJULIA:\nIf you be she, I do entreat your patience\nTo hear me speak the message I am sent on.\n\nSILVIA:\nFrom whom?\n\nJULIA:\nFrom my master, Sir Proteus, madam.\n\nSILVIA:\nO, he sends you for a picture.\n\nJULIA:\nAy, madam.\n\nSILVIA:\nUrsula, bring my picture here.\nGo give your master this: tell him from me,\nOne Julia, that his changing thoughts forget,\nWould better fit his chamber than this shadow.\n\nJULIA:\nMadam, please you peruse this letter.--\nPardon me, madam; I have unadvised\nDeliver'd you a paper that I should not:\nThis is the letter to your ladyship.\n\nSILVIA:\nI pray thee, let me look on that again.\n\nJULIA:\nIt may not be; good madam, pardon me.\n\nSILVIA:\nThere, hold!\nI will not look upon your master's lines:\nI know they are stuff'd with protestations\nAnd full of new-found oaths; which he will break\nAs easily as I do tear his paper.\n\nJULIA:\nMadam, he sends your ladyship this ring.\n\nSILVIA:\nThe more shame for him that he sends it me;\nFor I have heard him say a thousand times\nHis Julia gave it him at his departure.\nThough his false finger have profaned the ring,\nMine shall not do his Julia so much wrong.\n\nJULIA:\nShe thanks you.\n\nSILVIA:\nWhat say'st thou?\n\nJULIA:\nI thank you, madam, that you tender her.\nPoor gentlewoman! my master wrongs her much.\n\nSILVIA:\nDost thou know her?\n\nJULIA:\nAlmost as well as I do know myself:\nTo think upon her woes I do protest\nThat I have wept a hundred several times.\n\nSILVIA:\nBelike she thinks that Proteus hath forsook her.\n\nJULIA:\nI think she doth; and that's her cause of sorrow.\n\nSILVIA:\nIs she not passing fair?\n\nJULIA:\nShe hath been fairer, madam, than she is:\nWhen she did think my master loved her well,\nShe, in my judgment, was as fair as you:\nBut since she did neglect her looking-glass\nAnd threw her sun-expelling mask away,\nThe air hath starved the roses in her cheeks\nAnd pinch'd the lily-tincture of her face,\nThat now she is become as black as I.\n\nSILVIA:\nHow tall was she?\n\nJULIA:\nAbout my stature; for at Pentecost,\nWhen all our pageants of delight were play'd,\nOur youth got me to play the woman's part,\nAnd I was trimm'd in Madam Julia's gown,\nWhich served me as fit, by all men's judgments,\nAs if the garment had been made for me:\nTherefore I know she is about my height.\nAnd at that time I made her weep agood,\nFor I did play a lamentable part:\nMadam, 'twas Ariadne passioning\nFor Theseus' perjury and unjust flight;\nWhich I so lively acted with my tears\nThat my poor mistress, moved therewithal,\nWept bitterly; and would I might be dead\nIf I in thought felt not her very sorrow!\n\nSILVIA:\nShe is beholding to thee, gentle youth.\nAlas, poor lady, desolate and left!\nI weep myself to think upon thy words.\nHere, youth, there is my purse; I give thee this\nFor thy sweet mistress' sake, because thou lovest her.\nFarewell.\n\nJULIA:\nAnd she shall thank you for't, if e'er you know her.\nA virtuous gentlewoman, mild and beautiful\nI hope my master's suit will be but cold,\nSince she respects my mistress' love so much.\nAlas, how love can trifle with itself!\nHere is her picture: let me see; I think,\nIf I had such a tire, this face of mine\nWere full as lovely as is this of hers:\nAnd yet the painter flatter'd her a little,\nUnless I flatter with myself too much.\nHer hair is auburn, mine is perfect yellow:\nIf that be all the difference in his love,\nI'll get me such a colour'd periwig.\nHer eyes are grey as glass, and so are mine:\nAy, but her forehead's low, and mine's as high.\nWhat should it be that he respects in her\nBut I can make respective in myself,\nIf this fond Love were not a blinded god?\nCome, shadow, come and take this shadow up,\nFor 'tis thy rival. O thou senseless form,\nThou shalt be worshipp'd, kiss'd, loved and adored!\nAnd, were there sense in his idolatry,\nMy substance should be statue in thy stead.\nI'll use thee kindly for thy mistress' sake,\nThat used me so; or else, by Jove I vow,\nI should have scratch'd out your unseeing eyes\nTo make my master out of love with thee!\n\nEGLAMOUR:\nThe sun begins to gild the western sky;\nAnd now it is about the very hour\nThat Silvia, at Friar Patrick's cell, should meet me.\nShe will not fail, for lovers break not hours,\nUnless it be to come before their time;\nSo much they spur their expedition.\nSee where she comes.\nLady, a happy evening!\n\nSILVIA:\nAmen, amen! Go on, good Eglamour,\nOut at the postern by the abbey-wall:\nI fear I am attended by some spies.\n\nEGLAMOUR:\nFear not: the forest is not three leagues off;\nIf we recover that, we are sure enough.\n\nTHURIO:\nSir Proteus, what says Silvia to my suit?\n\nPROTEUS:\nO, sir, I find her milder than she was;\nAnd yet she takes exceptions at your person.\n\nTHURIO:\nWhat, that my leg is too long?\n\nPROTEUS:\nNo; that it is too little.\n\nTHURIO:\nI'll wear a boot, to make it somewhat rounder.\n\nJULIA:\n\nTHURIO:\nWhat says she to my face?\n\nPROTEUS:\nShe says it is a fair one.\n\nTHURIO:\nNay then, the wanton lies; my face is black.\n\nPROTEUS:\nBut pearls are fair; and the old saying is,\nBlack men are pearls in beauteous ladies' eyes.\n\nJULIA:\n\nTHURIO:\nHow likes she my discourse?\n\nPROTEUS:\nIll, when you talk of war.\n\nTHURIO:\nBut well, when I discourse of love and peace?\n\nJULIA:\n\nTHURIO:\nWhat says she to my valour?\n\nPROTEUS:\nO, sir, she makes no doubt of that.\n\nJULIA:\n\nTHURIO:\nWhat says she to my birth?\n\nPROTEUS:\nThat you are well derived.\n\nJULIA:\n\nTHURIO:\nConsiders she my possessions?\n\nPROTEUS:\nO, ay; and pities them.\n\nTHURIO:\nWherefore?\n\nJULIA:\n\nPROTEUS:\nThat they are out by lease.\n\nJULIA:\nHere comes the duke.\n\nDUKE:\nHow now, Sir Proteus! how now, Thurio!\nWhich of you saw Sir Eglamour of late?\n\nTHURIO:\nNot I.\n\nPROTEUS:\nNor I.\n\nDUKE:\nSaw you my daughter?\n\nPROTEUS:\nNeither.\n\nDUKE:\nWhy then,\nShe's fled unto that peasant Valentine;\nAnd Eglamour is in her company.\n'Tis true; for Friar Laurence met them both,\nAs he in penance wander'd through the forest;\nHim he knew well, and guess'd that it was she,\nBut, being mask'd, he was not sure of it;\nBesides, she did intend confession\nAt Patrick's cell this even; and there she was not;\nThese likelihoods confirm her flight from hence.\nTherefore, I pray you, stand not to discourse,\nBut mount you presently and meet with me\nUpon the rising of the mountain-foot\nThat leads towards Mantua, whither they are fled:\nDispatch, sweet gentlemen, and follow me.\n\nTHURIO:\nWhy, this it is to be a peevish girl,\nThat flies her fortune when it follows her.\nI'll after, more to be revenged on Eglamour\nThan for the love of reckless Silvia.\n\nPROTEUS:\nAnd I will follow, more for Silvia's love\nThan hate of Eglamour that goes with her.\n\nJULIA:\nAnd I will follow, more to cross that love\nThan hate for Silvia that is gone for love.\n\nFirst Outlaw:\nCome, come,\nBe patient; we must bring you to our captain.\n\nSILVIA:\nA thousand more mischances than this one\nHave learn'd me how to brook this patiently.\n\nSecond Outlaw:\nCome, bring her away.\n\nFirst Outlaw:\nWhere is the gentleman that was with her?\n\nThird Outlaw:\nBeing nimble-footed, he hath outrun us,\nBut Moyses and Valerius follow him.\nGo thou with her to the west end of the wood;\nThere is our captain: we'll follow him that's fled;\nThe thicket is beset; he cannot 'scape.\n\nFirst Outlaw:\nCome, I must bring you to our captain's cave:\nFear not; he bears an honourable mind,\nAnd will not use a woman lawlessly.\n\nSILVIA:\nO Valentine, this I endure for thee!\n\nVALENTINE:\nHow use doth breed a habit in a man!\nThis shadowy desert, unfrequented woods,\nI better brook than flourishing peopled towns:\nHere can I sit alone, unseen of any,\nAnd to the nightingale's complaining notes\nTune my distresses and record my woes.\nO thou that dost inhabit in my breast,\nLeave not the mansion so long tenantless,\nLest, growing ruinous, the building fall\nAnd leave no memory of what it was!\nRepair me with thy presence, Silvia;\nThou gentle nymph, cherish thy forlorn swain!\nWhat halloing and what stir is this to-day?\nThese are my mates, that make their wills their law,\nHave some unhappy passenger in chase.\nThey love me well; yet I have much to do\nTo keep them from uncivil outrages.\nWithdraw thee, Valentine: who's this comes here?\n\nPROTEUS:\nMadam, this service I have done for you,\nThough you respect not aught your servant doth,\nTo hazard life and rescue you from him\nThat would have forced your honour and your love;\nVouchsafe me, for my meed, but one fair look;\nA smaller boon than this I cannot beg\nAnd less than this, I am sure, you cannot give.\n\nVALENTINE:\n\nSILVIA:\nO miserable, unhappy that I am!\n\nPROTEUS:\nUnhappy were you, madam, ere I came;\nBut by my coming I have made you happy.\n\nSILVIA:\nBy thy approach thou makest me most unhappy.\n\nJULIA:\n\nSILVIA:\nHad I been seized by a hungry lion,\nI would have been a breakfast to the beast,\nRather than have false Proteus rescue me.\nO, Heaven be judge how I love Valentine,\nWhose life's as tender to me as my soul!\nAnd full as much, for more there cannot be,\nI do detest false perjured Proteus.\nTherefore be gone; solicit me no more.\n\nPROTEUS:\nWhat dangerous action, stood it next to death,\nWould I not undergo for one calm look!\nO, 'tis the curse in love, and still approved,\nWhen women cannot love where they're beloved!\n\nSILVIA:\nWhen Proteus cannot love where he's beloved.\nRead over Julia's heart, thy first best love,\nFor whose dear sake thou didst then rend thy faith\nInto a thousand oaths; and all those oaths\nDescended into perjury, to love me.\nThou hast no faith left now, unless thou'dst two;\nAnd that's far worse than none; better have none\nThan plural faith which is too much by one:\nThou counterfeit to thy true friend!\n\nPROTEUS:\nIn love\nWho respects friend?\n\nSILVIA:\nAll men but Proteus.\n\nPROTEUS:\nNay, if the gentle spirit of moving words\nCan no way change you to a milder form,\nI'll woo you like a soldier, at arms' end,\nAnd love you 'gainst the nature of love,--force ye.\n\nSILVIA:\nO heaven!\n\nPROTEUS:\nI'll force thee yield to my desire.\n\nVALENTINE:\nRuffian, let go that rude uncivil touch,\nThou friend of an ill fashion!\n\nPROTEUS:\nValentine!\n\nVALENTINE:\nThou common friend, that's without faith or love,\nFor such is a friend now; treacherous man!\nThou hast beguiled my hopes; nought but mine eye\nCould have persuaded me: now I dare not say\nI have one friend alive; thou wouldst disprove me.\nWho should be trusted, when one's own right hand\nIs perjured to the bosom? Proteus,\nI am sorry I must never trust thee more,\nBut count the world a stranger for thy sake.\nThe private wound is deepest: O time most accurst,\n'Mongst all foes that a friend should be the worst!\n\nPROTEUS:\nMy shame and guilt confounds me.\nForgive me, Valentine: if hearty sorrow\nBe a sufficient ransom for offence,\nI tender 't here; I do as truly suffer\nAs e'er I did commit.\n\nVALENTINE:\nThen I am paid;\nAnd once again I do receive thee honest.\nWho by repentance is not satisfied\nIs nor of heaven nor earth, for these are pleased.\nBy penitence the Eternal's wrath's appeased:\nAnd, that my love may appear plain and free,\nAll that was mine in Silvia I give thee.\n\nJULIA:\nO me unhappy!\n\nPROTEUS:\nLook to the boy.\n\nVALENTINE:\nWhy, boy! why, wag! how now! what's the matter?\nLook up; speak.\n\nJULIA:\nO good sir, my master charged me to deliver a ring\nto Madam Silvia, which, out of my neglect, was never done.\n\nPROTEUS:\nWhere is that ring, boy?\n\nJULIA:\nHere 'tis; this is it.\n\nPROTEUS:\nHow! let me see:\nWhy, this is the ring I gave to Julia.\n\nJULIA:\nO, cry you mercy, sir, I have mistook:\nThis is the ring you sent to Silvia.\n\nPROTEUS:\nBut how camest thou by this ring? At my depart\nI gave this unto Julia.\n\nJULIA:\nAnd Julia herself did give it me;\nAnd Julia herself hath brought it hither.\n\nPROTEUS:\nHow! Julia!\n\nJULIA:\nBehold her that gave aim to all thy oaths,\nAnd entertain'd 'em deeply in her heart.\nHow oft hast thou with perjury cleft the root!\nO Proteus, let this habit make thee blush!\nBe thou ashamed that I have took upon me\nSuch an immodest raiment, if shame live\nIn a disguise of love:\nIt is the lesser blot, modesty finds,\nWomen to change their shapes than men their minds.\n\nPROTEUS:\nThan men their minds! 'tis true.\nO heaven! were man\nBut constant, he were perfect. That one error\nFills him with faults; makes him run through all the sins:\nInconstancy falls off ere it begins.\nWhat is in Silvia's face, but I may spy\nMore fresh in Julia's with a constant eye?\n\nVALENTINE:\nCome, come, a hand from either:\nLet me be blest to make this happy close;\n'Twere pity two such friends should be long foes.\n\nPROTEUS:\nBear witness, Heaven, I have my wish for ever.\n\nJULIA:\nAnd I mine.\n\nOutlaws:\nA prize, a prize, a prize!\n\nVALENTINE:\nForbear, forbear, I say! it is my lord the duke.\nYour grace is welcome to a man disgraced,\nBanished Valentine.\n\nDUKE:\nSir Valentine!\n\nTHURIO:\nYonder is Silvia; and Silvia's mine.\n\nVALENTINE:\nThurio, give back, or else embrace thy death;\nCome not within the measure of my wrath;\nDo not name Silvia thine; if once again,\nVerona shall not hold thee. Here she stands;\nTake but possession of her with a touch:\nI dare thee but to breathe upon my love.\n\nTHURIO:\nSir Valentine, I care not for her, I;\nI hold him but a fool that will endanger\nHis body for a girl that loves him not:\nI claim her not, and therefore she is thine.\n\nDUKE:\nThe more degenerate and base art thou,\nTo make such means for her as thou hast done\nAnd leave her on such slight conditions.\nNow, by the honour of my ancestry,\nI do applaud thy spirit, Valentine,\nAnd think thee worthy of an empress' love:\nKnow then, I here forget all former griefs,\nCancel all grudge, repeal thee home again,\nPlead a new state in thy unrivall'd merit,\nTo which I thus subscribe: Sir Valentine,\nThou art a gentleman and well derived;\nTake thou thy Silvia, for thou hast deserved her.\n\nVALENTINE:\nI thank your grace; the gift hath made me happy.\nI now beseech you, for your daughter's sake,\nTo grant one boom that I shall ask of you.\n\nDUKE:\nI grant it, for thine own, whate'er it be.\n\nVALENTINE:\nThese banish'd men that I have kept withal\nAre men endued with worthy qualities:\nForgive them what they have committed here\nAnd let them be recall'd from their exile:\nThey are reformed, civil, full of good\nAnd fit for great employment, worthy lord.\n\nDUKE:\nThou hast prevail'd; I pardon them and thee:\nDispose of them as thou know'st their deserts.\nCome, let us go: we will include all jars\nWith triumphs, mirth and rare solemnity.\n\nVALENTINE:\nAnd, as we walk along, I dare be bold\nWith our discourse to make your grace to smile.\nWhat think you of this page, my lord?\n\nDUKE:\nI think the boy hath grace in him; he blushes.\n\nVALENTINE:\nI warrant you, my lord, more grace than boy.\n\nDUKE:\nWhat mean you by that saying?\n\nVALENTINE:\nPlease you, I'll tell you as we pass along,\nThat you will wonder what hath fortuned.\nCome, Proteus; 'tis your penance but to hear\nThe story of your loves discovered:\nThat done, our day of marriage shall be yours;\nOne feast, one house, one mutual happiness.\n\n[GOWER]:\nTo sing a song that old was sung,\nFrom ashes ancient Gower is come;\nAssuming man's infirmities,\nTo glad your ear, and please your eyes.\nIt hath been sung at festivals,\nOn ember-eves and holy-ales;\nAnd lords and ladies in their lives\nHave read it for restoratives:\nThe purchase is to make men glorious;\nEt bonum quo antiquius, eo melius.\nIf you, born in these latter times,\nWhen wit's more ripe, accept my rhymes.\nAnd that to hear an old man sing\nMay to your wishes pleasure bring\nI life would wish, and that I might\nWaste it for you, like taper-light.\nThis Antioch, then, Antiochus the Great\nBuilt up, this city, for his chiefest seat:\nThe fairest in all Syria,\nI tell you what mine authors say:\nThis king unto him took a fere,\nWho died and left a female heir,\nSo buxom, blithe, and full of face,\nAs heaven had lent her all his grace;\nWith whom the father liking took,\nAnd her to incest did provoke:\nBad child; worse father! to entice his own\nTo evil should be done by none:\nBut custom what they did begin\nWas with long use account no sin.\nThe beauty of this sinful dame\nMade many princes thither frame,\nTo seek her as a bed-fellow,\nIn marriage-pleasures play-fellow:\nWhich to prevent he made a law,\nTo keep her still, and men in awe,\nThat whoso ask'd her for his wife,\nHis riddle told not, lost his life:\nSo for her many a wight did die,\nAs yon grim looks do testify.\nWhat now ensues, to the judgment of your eye\nI give, my cause who best can justify.\n\nANTIOCHUS:\nYoung prince of Tyre, you have at large received\nThe danger of the task you undertake.\n\nPERICLES:\nI have, Antiochus, and, with a soul\nEmbolden'd with the glory of her praise,\nThink death no hazard in this enterprise.\n\nANTIOCHUS:\nBring in our daughter, clothed like a bride,\nFor the embracements even of Jove himself;\nAt whose conception, till Lucina reign'd,\nNature this dowry gave, to glad her presence,\nThe senate-house of planets all did sit,\nTo knit in her their best perfections.\n\nPERICLES:\nSee where she comes, apparell'd like the spring,\nGraces her subjects, and her thoughts the king\nOf every virtue gives renown to men!\nHer face the book of praises, where is read\nNothing but curious pleasures, as from thence\nSorrow were ever razed and testy wrath\nCould never be her mild companion.\nYou gods that made me man, and sway in love,\nThat have inflamed desire in my breast\nTo taste the fruit of yon celestial tree,\nOr die in the adventure, be my helps,\nAs I am son and servant to your will,\nTo compass such a boundless happiness!\n\nANTIOCHUS:\nPrince Pericles,--\n\nPERICLES:\nThat would be son to great Antiochus.\n\nANTIOCHUS:\nBefore thee stands this fair Hesperides,\nWith golden fruit, but dangerous to be touch'd;\nFor death-like dragons here affright thee hard:\nHer face, like heaven, enticeth thee to view\nHer countless glory, which desert must gain;\nAnd which, without desert, because thine eye\nPresumes to reach, all thy whole heap must die.\nYon sometimes famous princes, like thyself,\nDrawn by report, adventurous by desire,\nTell thee, with speechless tongues and semblance pale,\nThat without covering, save yon field of stars,\nHere they stand martyrs, slain in Cupid's wars;\nAnd with dead cheeks advise thee to desist\nFor going on death's net, whom none resist.\n\nPERICLES:\nAntiochus, I thank thee, who hath taught\nMy frail mortality to know itself,\nAnd by those fearful objects to prepare\nThis body, like to them, to what I must;\nFor death remember'd should be like a mirror,\nWho tells us life's but breath, to trust it error.\nI'll make my will then, and, as sick men do\nWho know the world, see heaven, but, feeling woe,\nGripe not at earthly joys as erst they did;\nSo I bequeath a happy peace to you\nAnd all good men, as every prince should do;\nMy riches to the earth from whence they came;\nBut my unspotted fire of love to you.\nThus ready for the way of life or death,\nI wait the sharpest blow, Antiochus.\n\nANTIOCHUS:\nScorning advice, read the conclusion then:\nWhich read and not expounded, 'tis decreed,\nAs these before thee thou thyself shalt bleed.\n\nDaughter:\nOf all say'd yet, mayst thou prove prosperous!\nOf all say'd yet, I wish thee happiness!\n\nPERICLES:\nLike a bold champion, I assume the lists,\nNor ask advice of any other thought\nBut faithfulness and courage.\nI am no viper, yet I feed\nOn mother's flesh which did me breed.\nI sought a husband, in which labour\nI found that kindness in a father:\nHe's father, son, and husband mild;\nI mother, wife, and yet his child.\nHow they may be, and yet in two,\nAs you will live, resolve it you.\nSharp physic is the last: but, O you powers\nThat give heaven countless eyes to view men's acts,\nWhy cloud they not their sights perpetually,\nIf this be true, which makes me pale to read it?\nFair glass of light, I loved you, and could still,\nWere not this glorious casket stored with ill:\nBut I must tell you, now my thoughts revolt\nFor he's no man on whom perfections wait\nThat, knowing sin within, will touch the gate.\nYou are a fair viol, and your sense the strings;\nWho, finger'd to make man his lawful music,\nWould draw heaven down, and all the gods, to hearken:\nBut being play'd upon before your time,\nHell only danceth at so harsh a chime.\nGood sooth, I care not for you.\n\nANTIOCHUS:\nPrince Pericles, touch not, upon thy life.\nFor that's an article within our law,\nAs dangerous as the rest. Your time's expired:\nEither expound now, or receive your sentence.\n\nPERICLES:\nGreat king,\nFew love to hear the sins they love to act;\n'Twould braid yourself too near for me to tell it.\nWho has a book of all that monarchs do,\nHe's more secure to keep it shut than shown:\nFor vice repeated is like the wandering wind.\nBlows dust in other's eyes, to spread itself;\nAnd yet the end of all is bought thus dear,\nThe breath is gone, and the sore eyes see clear:\nTo stop the air would hurt them. The blind mole casts\nCopp'd hills towards heaven, to tell the earth is throng'd\nBy man's oppression; and the poor worm doth die for't.\nKings are earth's gods; in vice their law's\ntheir will;\nAnd if Jove stray, who dares say Jove doth ill?\nIt is enough you know; and it is fit,\nWhat being more known grows worse, to smother it.\nAll love the womb that their first being bred,\nThen give my tongue like leave to love my head.\n\nANTIOCHUS:\n\nPERICLES:\nHow courtesy would seem to cover sin,\nWhen what is done is like an hypocrite,\nThe which is good in nothing but in sight!\nIf it be true that I interpret false,\nThen were it certain you were not so bad\nAs with foul incest to abuse your soul;\nWhere now you're both a father and a son,\nBy your untimely claspings with your child,\nWhich pleasure fits an husband, not a father;\nAnd she an eater of her mother's flesh,\nBy the defiling of her parent's bed;\nAnd both like serpents are, who though they feed\nOn sweetest flowers, yet they poison breed.\nAntioch, farewell! for wisdom sees, those men\nBlush not in actions blacker than the night,\nWill shun no course to keep them from the light.\nOne sin, I know, another doth provoke;\nMurder's as near to lust as flame to smoke:\nPoison and treason are the hands of sin,\nAy, and the targets, to put off the shame:\nThen, lest my lie be cropp'd to keep you clear,\nBy flight I'll shun the danger which I fear.\n\nANTIOCHUS:\nHe hath found the meaning, for which we mean\nTo have his head.\nHe must not live to trumpet forth my infamy,\nNor tell the world Antiochus doth sin\nIn such a loathed manner;\nAnd therefore instantly this prince must die:\nFor by his fall my honour must keep high.\nWho attends us there?\n\nTHALIARD:\nDoth your highness call?\n\nANTIOCHUS:\nThaliard,\nYou are of our chamber, and our mind partakes\nHer private actions to your secrecy;\nAnd for your faithfulness we will advance you.\nThaliard, behold, here's poison, and here's gold;\nWe hate the prince of Tyre, and thou must kill him:\nIt fits thee not to ask the reason why,\nBecause we bid it. Say, is it done?\n\nTHALIARD:\nMy lord,\n'Tis done.\n\nANTIOCHUS:\nEnough.\nLet your breath cool yourself, telling your haste.\n\nMessenger:\nMy lord, prince Pericles is fled.\n\nANTIOCHUS:\nAs thou\nWilt live, fly after: and like an arrow shot\nFrom a well-experienced archer hits the mark\nHis eye doth level at, so thou ne'er return\nUnless thou say 'Prince Pericles is dead.'\n\nTHALIARD:\nMy lord,\nIf I can get him within my pistol's length,\nI'll make him sure enough: so, farewell to your highness.\n\nANTIOCHUS:\nThaliard, adieu!\nTill Pericles be dead,\nMy heart can lend no succor to my head.\n\nPERICLES:\n\nFirst Lord:\nJoy and all comfort in your sacred breast!\n\nSecond Lord:\nAnd keep your mind, till you return to us,\nPeaceful and comfortable!\n\nHELICANUS:\nPeace, peace, and give experience tongue.\nThey do abuse the king that flatter him:\nFor flattery is the bellows blows up sin;\nThe thing which is flatter'd, but a spark,\nTo which that blast gives heat and stronger glowing;\nWhereas reproof, obedient and in order,\nFits kings, as they are men, for they may err.\nWhen Signior Sooth here does proclaim a peace,\nHe flatters you, makes war upon your life.\nPrince, pardon me, or strike me, if you please;\nI cannot be much lower than my knees.\n\nPERICLES:\nAll leave us else; but let your cares o'erlook\nWhat shipping and what lading's in our haven,\nAnd then return to us.\nHelicanus, thou\nHast moved us: what seest thou in our looks?\n\nHELICANUS:\nAn angry brow, dread lord.\n\nPERICLES:\nIf there be such a dart in princes' frowns,\nHow durst thy tongue move anger to our face?\n\nHELICANUS:\nHow dare the plants look up to heaven, from whence\nThey have their nourishment?\n\nPERICLES:\nThou know'st I have power\nTo take thy life from thee.\n\nHELICANUS:\n\nPERICLES:\nRise, prithee, rise.\nSit down: thou art no flatterer:\nI thank thee for it; and heaven forbid\nThat kings should let their ears hear their\nfaults hid!\nFit counsellor and servant for a prince,\nWho by thy wisdom makest a prince thy servant,\nWhat wouldst thou have me do?\n\nHELICANUS:\nTo bear with patience\nSuch griefs as you yourself do lay upon yourself.\n\nPERICLES:\nThou speak'st like a physician, Helicanus,\nThat minister'st a potion unto me\nThat thou wouldst tremble to receive thyself.\nAttend me, then: I went to Antioch,\nWhere as thou know'st, against the face of death,\nI sought the purchase of a glorious beauty.\nFrom whence an issue I might propagate,\nAre arms to princes, and bring joys to subjects.\nHer face was to mine eye beyond all wonder;\nThe rest--hark in thine ear--as black as incest:\nWhich by my knowledge found, the sinful father\nSeem'd not to strike, but smooth: but thou\nknow'st this,\n'Tis time to fear when tyrants seem to kiss.\nSuch fear so grew in me, I hither fled,\nUnder the covering of a careful night,\nWho seem'd my good protector; and, being here,\nBethought me what was past, what might succeed.\nI knew him tyrannous; and tyrants' fears\nDecrease not, but grow faster than the years:\nAnd should he doubt it, as no doubt he doth,\nThat I should open to the listening air\nHow many worthy princes' bloods were shed,\nTo keep his bed of blackness unlaid ope,\nTo lop that doubt, he'll fill this land with arms,\nAnd make pretence of wrong that I have done him:\nWhen all, for mine, if I may call offence,\nMust feel war's blow, who spares not innocence:\nWhich love to all, of which thyself art one,\nWho now reprovest me for it,--\n\nHELICANUS:\nAlas, sir!\n\nPERICLES:\nDrew sleep out of mine eyes, blood from my cheeks,\nMusings into my mind, with thousand doubts\nHow I might stop this tempest ere it came;\nAnd finding little comfort to relieve them,\nI thought it princely charity to grieve them.\n\nHELICANUS:\nWell, my lord, since you have given me leave to speak.\nFreely will I speak. Antiochus you fear,\nAnd justly too, I think, you fear the tyrant,\nWho either by public war or private treason\nWill take away your life.\nTherefore, my lord, go travel for a while,\nTill that his rage and anger be forgot,\nOr till the Destinies do cut his thread of life.\nYour rule direct to any; if to me.\nDay serves not light more faithful than I'll be.\n\nPERICLES:\nI do not doubt thy faith;\nBut should he wrong my liberties in my absence?\n\nHELICANUS:\nWe'll mingle our bloods together in the earth,\nFrom whence we had our being and our birth.\n\nPERICLES:\nTyre, I now look from thee then, and to Tarsus\nIntend my travel, where I'll hear from thee;\nAnd by whose letters I'll dispose myself.\nThe care I had and have of subjects' good\nOn thee I lay whose wisdom's strength can bear it.\nI'll take thy word for faith, not ask thine oath:\nWho shuns not to break one will sure crack both:\nBut in our orbs we'll live so round and safe,\nThat time of both this truth shall ne'er convince,\nThou show'dst a subject's shine, I a true prince.\n\nTHALIARD:\nSo, this is Tyre, and this the court. Here must I\nkill King Pericles; and if I do it not, I am sure to\nbe hanged at home: 'tis dangerous. Well, I perceive\nhe was a wise fellow, and had good discretion, that,\nbeing bid to ask what he would of the king, desired\nhe might know none of his secrets: now do I see he\nhad some reason for't; for if a king bid a man be a\nvillain, he's bound by the indenture of his oath to\nbe one! Hush! here come the lords of Tyre.\n\nHELICANUS:\nYou shall not need, my fellow peers of Tyre,\nFurther to question me of your king's departure:\nHis seal'd commission, left in trust with me,\nDoth speak sufficiently he's gone to travel.\n\nTHALIARD:\n\nHELICANUS:\nIf further yet you will be satisfied,\nWhy, as it were unlicensed of your loves,\nHe would depart, I'll give some light unto you.\nBeing at Antioch--\n\nTHALIARD:\n\nHELICANUS:\nRoyal Antiochus--on what cause I know not--\nTook some displeasure at him; at least he judged so:\nAnd doubting lest that he had err'd or sinn'd,\nTo show his sorrow, he'ld correct himself;\nSo puts himself unto the shipman's toil,\nWith whom each minute threatens life or death.\n\nTHALIARD:\n\nHELICANUS:\nLord Thaliard from Antiochus is welcome.\n\nTHALIARD:\nFrom him I come\nWith message unto princely Pericles;\nBut since my landing I have understood\nYour lord has betook himself to unknown travels,\nMy message must return from whence it came.\n\nHELICANUS:\nWe have no reason to desire it,\nCommended to our master, not to us:\nYet, ere you shall depart, this we desire,\nAs friends to Antioch, we may feast in Tyre.\n\nCLEON:\nMy Dionyza, shall we rest us here,\nAnd by relating tales of others' griefs,\nSee if 'twill teach us to forget our own?\n\nDIONYZA:\nThat were to blow at fire in hope to quench it;\nFor who digs hills because they do aspire\nThrows down one mountain to cast up a higher.\nO my distressed lord, even such our griefs are;\nHere they're but felt, and seen with mischief's eyes,\nBut like to groves, being topp'd, they higher rise.\n\nCLEON:\nO Dionyza,\nWho wanteth food, and will not say he wants it,\nOr can conceal his hunger till he famish?\nOur tongues and sorrows do sound deep\nOur woes into the air; our eyes do weep,\nTill tongues fetch breath that may proclaim them louder;\nThat, if heaven slumber while their creatures want,\nThey may awake their helps to comfort them.\nI'll then discourse our woes, felt several years,\nAnd wanting breath to speak help me with tears.\n\nDIONYZA:\nI'll do my best, sir.\n\nCLEON:\nThis Tarsus, o'er which I have the government,\nA city on whom plenty held full hand,\nFor riches strew'd herself even in the streets;\nWhose towers bore heads so high they kiss'd the clouds,\nAnd strangers ne'er beheld but wondered at;\nWhose men and dames so jetted and adorn'd,\nLike one another's glass to trim them by:\nTheir tables were stored full, to glad the sight,\nAnd not so much to feed on as delight;\nAll poverty was scorn'd, and pride so great,\nThe name of help grew odious to repeat.\n\nDIONYZA:\nO, 'tis too true.\n\nCLEON:\nBut see what heaven can do! By this our change,\nThese mouths, who but of late, earth, sea, and air,\nWere all too little to content and please,\nAlthough they gave their creatures in abundance,\nAs houses are defiled for want of use,\nThey are now starved for want of exercise:\nThose palates who, not yet two summers younger,\nMust have inventions to delight the taste,\nWould now be glad of bread, and beg for it:\nThose mothers who, to nousle up their babes,\nThought nought too curious, are ready now\nTo eat those little darlings whom they loved.\nSo sharp are hunger's teeth, that man and wife\nDraw lots who first shall die to lengthen life:\nHere stands a lord, and there a lady weeping;\nHere many sink, yet those which see them fall\nHave scarce strength left to give them burial.\nIs not this true?\n\nDIONYZA:\nOur cheeks and hollow eyes do witness it.\n\nCLEON:\nO, let those cities that of plenty's cup\nAnd her prosperities so largely taste,\nWith their superfluous riots, hear these tears!\nThe misery of Tarsus may be theirs.\n\nLord:\nWhere's the lord governor?\n\nCLEON:\nHere.\nSpeak out thy sorrows which thou bring'st in haste,\nFor comfort is too far for us to expect.\n\nLord:\nWe have descried, upon our neighbouring shore,\nA portly sail of ships make hitherward.\n\nCLEON:\nI thought as much.\nOne sorrow never comes but brings an heir,\nThat may succeed as his inheritor;\nAnd so in ours: some neighbouring nation,\nTaking advantage of our misery,\nHath stuff'd these hollow vessels with their power,\nTo beat us down, the which are down already;\nAnd make a conquest of unhappy me,\nWhereas no glory's got to overcome.\n\nLord:\nThat's the least fear; for, by the semblance\nOf their white flags display'd, they bring us peace,\nAnd come to us as favourers, not as foes.\n\nCLEON:\nThou speak'st like him's untutor'd to repeat:\nWho makes the fairest show means most deceit.\nBut bring they what they will and what they can,\nWhat need we fear?\nThe ground's the lowest, and we are half way there.\nGo tell their general we attend him here,\nTo know for what he comes, and whence he comes,\nAnd what he craves.\n\nLord:\nI go, my lord.\n\nCLEON:\nWelcome is peace, if he on peace consist;\nIf wars, we are unable to resist.\n\nPERICLES:\nLord governor, for so we hear you are,\nLet not our ships and number of our men\nBe like a beacon fired to amaze your eyes.\nWe have heard your miseries as far as Tyre,\nAnd seen the desolation of your streets:\nNor come we to add sorrow to your tears,\nBut to relieve them of their heavy load;\nAnd these our ships, you happily may think\nAre like the Trojan horse was stuff'd within\nWith bloody veins, expecting overthrow,\nAre stored with corn to make your needy bread,\nAnd give them life whom hunger starved half dead.\n\nAll:\nThe gods of Greece protect you!\nAnd we'll pray for you.\n\nPERICLES:\nArise, I pray you, rise:\nWe do not look for reverence, but to love,\nAnd harbourage for ourself, our ships, and men.\n\nCLEON:\nThe which when any shall not gratify,\nOr pay you with unthankfulness in thought,\nBe it our wives, our children, or ourselves,\nThe curse of heaven and men succeed their evils!\nTill when,--the which I hope shall ne'er be seen,--\nYour grace is welcome to our town and us.\n\nPERICLES:\nWhich welcome we'll accept; feast here awhile,\nUntil our stars that frown lend us a smile.\n\nGOWER:\nHere have you seen a mighty king\nHis child, I wis, to incest bring;\nA better prince and benign lord,\nThat will prove awful both in deed and word.\nBe quiet then as men should be,\nTill he hath pass'd necessity.\nI'll show you those in troubles reign,\nLosing a mite, a mountain gain.\nThe good in conversation,\nTo whom I give my benison,\nIs still at Tarsus, where each man\nThinks all is writ he speken can;\nAnd, to remember what he does,\nBuild his statue to make him glorious:\nBut tidings to the contrary\nAre brought your eyes; what need speak I?\nGood Helicane, that stay'd at home,\nNot to eat honey like a drone\nFrom others' labours; for though he strive\nTo killen bad, keep good alive;\nAnd to fulfil his prince' desire,\nSends word of all that haps in Tyre:\nHow Thaliard came full bent with sin\nAnd had intent to murder him;\nAnd that in Tarsus was not best\nLonger for him to make his rest.\nHe, doing so, put forth to seas,\nWhere when men been, there's seldom ease;\nFor now the wind begins to blow;\nThunder above and deeps below\nMake such unquiet, that the ship\nShould house him safe is wreck'd and split;\nAnd he, good prince, having all lost,\nBy waves from coast to coast is tost:\nAll perishen of man, of pelf,\nNe aught escapen but himself;\nTill fortune, tired with doing bad,\nThrew him ashore, to give him glad:\nAnd here he comes. What shall be next,\nPardon old Gower,--this longs the text.\n\nPERICLES:\nYet cease your ire, you angry stars of heaven!\nWind, rain, and thunder, remember, earthly man\nIs but a substance that must yield to you;\nAnd I, as fits my nature, do obey you:\nAlas, the sea hath cast me on the rocks,\nWash'd me from shore to shore, and left me breath\nNothing to think on but ensuing death:\nLet it suffice the greatness of your powers\nTo have bereft a prince of all his fortunes;\nAnd having thrown him from your watery grave,\nHere to have death in peace is all he'll crave.\n\nFirst Fisherman:\nWhat, ho, Pilch!\n\nSecond Fisherman:\nHa, come and bring away the nets!\n\nFirst Fisherman:\nWhat, Patch-breech, I say!\n\nThird Fisherman:\nWhat say you, master?\n\nFirst Fisherman:\nLook how thou stirrest now! come away, or I'll\nfetch thee with a wanion.\n\nThird Fisherman:\nFaith, master, I am thinking of the poor men that\nwere cast away before us even now.\n\nFirst Fisherman:\nAlas, poor souls, it grieved my heart to hear what\npitiful cries they made to us to help them, when,\nwell-a-day, we could scarce help ourselves.\n\nThird Fisherman:\nNay, master, said not I as much when I saw the\nporpus how he bounced and tumbled? they say\nthey're half fish, half flesh: a plague on them,\nthey ne'er come but I look to be washed. Master, I\nmarvel how the fishes live in the sea.\n\nFirst Fisherman:\nWhy, as men do a-land; the great ones eat up the\nlittle ones: I can compare our rich misers to\nnothing so fitly as to a whale; a' plays and\ntumbles, driving the poor fry before him, and at\nlast devours them all at a mouthful: such whales\nhave I heard on o' the land, who never leave gaping\ntill they've swallowed the whole parish, church,\nsteeple, bells, and all.\n\nPERICLES:\n\nThird Fisherman:\nBut, master, if I had been the sexton, I would have\nbeen that day in the belfry.\n\nSecond Fisherman:\nWhy, man?\n\nThird Fisherman:\nBecause he should have swallowed me too: and when I\nhad been in his belly, I would have kept such a\njangling of the bells, that he should never have\nleft, till he cast bells, steeple, church, and\nparish up again. But if the good King Simonides\nwere of my mind,--\n\nPERICLES:\n\nThird Fisherman:\nWe would purge the land of these drones, that rob\nthe bee of her honey.\n\nPERICLES:\n\nSecond Fisherman:\nHonest! good fellow, what's that? If it be a day\nfits you, search out of the calendar, and nobody\nlook after it.\n\nPERICLES:\nMay see the sea hath cast upon your coast.\n\nSecond Fisherman:\nWhat a drunken knave was the sea to cast thee in our\nway!\n\nPERICLES:\nA man whom both the waters and the wind,\nIn that vast tennis-court, have made the ball\nFor them to play upon, entreats you pity him:\nHe asks of you, that never used to beg.\n\nFirst Fisherman:\nNo, friend, cannot you beg? Here's them in our\ncountry Greece gets more with begging than we can do\nwith working.\n\nSecond Fisherman:\nCanst thou catch any fishes, then?\n\nPERICLES:\nI never practised it.\n\nSecond Fisherman:\nNay, then thou wilt starve, sure; for here's nothing\nto be got now-a-days, unless thou canst fish for't.\n\nPERICLES:\nWhat I have been I have forgot to know;\nBut what I am, want teaches me to think on:\nA man throng'd up with cold: my veins are chill,\nAnd have no more of life than may suffice\nTo give my tongue that heat to ask your help;\nWhich if you shall refuse, when I am dead,\nFor that I am a man, pray see me buried.\n\nFirst Fisherman:\nDie quoth-a? Now gods forbid! I have a gown here;\ncome, put it on; keep thee warm. Now, afore me, a\nhandsome fellow! Come, thou shalt go home, and\nwe'll have flesh for holidays, fish for\nfasting-days, and moreo'er puddings and flap-jacks,\nand thou shalt be welcome.\n\nPERICLES:\nI thank you, sir.\n\nSecond Fisherman:\nHark you, my friend; you said you could not beg.\n\nPERICLES:\nI did but crave.\n\nSecond Fisherman:\nBut crave! Then I'll turn craver too, and so I\nshall 'scape whipping.\n\nPERICLES:\nWhy, are all your beggars whipped, then?\n\nSecond Fisherman:\nO, not all, my friend, not all; for if all your\nbeggars were whipped, I would wish no better office\nthan to be beadle. But, master, I'll go draw up the\nnet.\n\nPERICLES:\n\nFirst Fisherman:\nHark you, sir, do you know where ye are?\n\nPERICLES:\nNot well.\n\nFirst Fisherman:\nWhy, I'll tell you: this is called Pentapolis, and\nour king the good Simonides.\n\nPERICLES:\nThe good King Simonides, do you call him.\n\nFirst Fisherman:\nAy, sir; and he deserves so to be called for his\npeaceable reign and good government.\n\nPERICLES:\nHe is a happy king, since he gains from his subjects\nthe name of good by his government. How far is his\ncourt distant from this shore?\n\nFirst Fisherman:\nMarry, sir, half a day's journey: and I'll tell\nyou, he hath a fair daughter, and to-morrow is her\nbirth-day; and there are princes and knights come\nfrom all parts of the world to just and tourney for her love.\n\nPERICLES:\nWere my fortunes equal to my desires, I could wish\nto make one there.\n\nFirst Fisherman:\nO, sir, things must be as they may; and what a man\ncannot get, he may lawfully deal for--his wife's soul.\n\nSecond Fisherman:\nHelp, master, help! here's a fish hangs in the net,\nlike a poor man's right in the law; 'twill hardly\ncome out. Ha! bots on't, 'tis come at last, and\n'tis turned to a rusty armour.\n\nPERICLES:\nAn armour, friends! I pray you, let me see it.\nThanks, fortune, yet, that, after all my crosses,\nThou givest me somewhat to repair myself;\nAnd though it was mine own, part of my heritage,\nWhich my dead father did bequeath to me.\nWith this strict charge, even as he left his life,\n'Keep it, my Pericles; it hath been a shield\nTwixt me and death;'--and pointed to this brace;--\n'For that it saved me, keep it; in like necessity--\nThe which the gods protect thee from!--may\ndefend thee.'\nIt kept where I kept, I so dearly loved it;\nTill the rough seas, that spare not any man,\nTook it in rage, though calm'd have given't again:\nI thank thee for't: my shipwreck now's no ill,\nSince I have here my father's gift in's will.\n\nFirst Fisherman:\nWhat mean you, sir?\n\nPERICLES:\nTo beg of you, kind friends, this coat of worth,\nFor it was sometime target to a king;\nI know it by this mark. He loved me dearly,\nAnd for his sake I wish the having of it;\nAnd that you'ld guide me to your sovereign's court,\nWhere with it I may appear a gentleman;\nAnd if that ever my low fortune's better,\nI'll pay your bounties; till then rest your debtor.\n\nFirst Fisherman:\nWhy, wilt thou tourney for the lady?\n\nPERICLES:\nI'll show the virtue I have borne in arms.\n\nFirst Fisherman:\nWhy, do 'e take it, and the gods give thee good on't!\n\nSecond Fisherman:\nAy, but hark you, my friend; 'twas we that made up\nthis garment through the rough seams of the waters:\nthere are certain condolements, certain vails. I\nhope, sir, if you thrive, you'll remember from\nwhence you had it.\n\nPERICLES:\nBelieve 't, I will.\nBy your furtherance I am clothed in steel;\nAnd, spite of all the rapture of the sea,\nThis jewel holds his building on my arm:\nUnto thy value I will mount myself\nUpon a courser, whose delightful steps\nShall make the gazer joy to see him tread.\nOnly, my friend, I yet am unprovided\nOf a pair of bases.\n\nSecond Fisherman:\nWe'll sure provide: thou shalt have my best gown to\nmake thee a pair; and I'll bring thee to the court myself.\n\nPERICLES:\nThen honour be but a goal to my will,\nThis day I'll rise, or else add ill to ill.\n\nSIMONIDES:\nAre the knights ready to begin the triumph?\n\nFirst Lord:\nThey are, my liege;\nAnd stay your coming to present themselves.\n\nSIMONIDES:\nReturn them, we are ready; and our daughter,\nIn honour of whose birth these triumphs are,\nSits here, like beauty's child, whom nature gat\nFor men to see, and seeing wonder at.\n\nTHAISA:\nIt pleaseth you, my royal father, to express\nMy commendations great, whose merit's less.\n\nSIMONIDES:\nIt's fit it should be so; for princes are\nA model which heaven makes like to itself:\nAs jewels lose their glory if neglected,\nSo princes their renowns if not respected.\n'Tis now your honour, daughter, to explain\nThe labour of each knight in his device.\n\nTHAISA:\nWhich, to preserve mine honour, I'll perform.\n\nSIMONIDES:\nWho is the first that doth prefer himself?\n\nTHAISA:\nA knight of Sparta, my renowned father;\nAnd the device he bears upon his shield\nIs a black Ethiope reaching at the sun\nThe word, 'Lux tua vita mihi.'\n\nSIMONIDES:\nHe loves you well that holds his life of you.\nWho is the second that presents himself?\n\nTHAISA:\nA prince of Macedon, my royal father;\nAnd the device he bears upon his shield\nIs an arm'd knight that's conquer'd by a lady;\nThe motto thus, in Spanish, 'Piu por dulzura que por fuerza.'\n\nSIMONIDES:\nAnd what's the third?\n\nTHAISA:\nThe third of Antioch;\nAnd his device, a wreath of chivalry;\nThe word, 'Me pompae provexit apex.'\n\nSIMONIDES:\nWhat is the fourth?\n\nTHAISA:\nA burning torch that's turned upside down;\nThe word, 'Quod me alit, me extinguit.'\n\nSIMONIDES:\nWhich shows that beauty hath his power and will,\nWhich can as well inflame as it can kill.\n\nTHAISA:\nThe fifth, an hand environed with clouds,\nHolding out gold that's by the touchstone tried;\nThe motto thus, 'Sic spectanda fides.'\n\nSIMONIDES:\nAnd what's\nThe sixth and last, the which the knight himself\nWith such a graceful courtesy deliver'd?\n\nTHAISA:\nHe seems to be a stranger; but his present is\nA wither'd branch, that's only green at top;\nThe motto, 'In hac spe vivo.'\n\nSIMONIDES:\nA pretty moral;\nFrom the dejected state wherein he is,\nHe hopes by you his fortunes yet may flourish.\n\nFirst Lord:\nHe had need mean better than his outward show\nCan any way speak in his just commend;\nFor by his rusty outside he appears\nTo have practised more the whipstock than the lance.\n\nSecond Lord:\nHe well may be a stranger, for he comes\nTo an honour'd triumph strangely furnished.\n\nThird Lord:\nAnd on set purpose let his armour rust\nUntil this day, to scour it in the dust.\n\nSIMONIDES:\nOpinion's but a fool, that makes us scan\nThe outward habit by the inward man.\nBut stay, the knights are coming: we will withdraw\nInto the gallery.\n\nSIMONIDES:\nKnights,\nTo say you're welcome were superfluous.\nTo place upon the volume of your deeds,\nAs in a title-page, your worth in arms,\nWere more than you expect, or more than's fit,\nSince every worth in show commends itself.\nPrepare for mirth, for mirth becomes a feast:\nYou are princes and my guests.\n\nTHAISA:\nBut you, my knight and guest;\nTo whom this wreath of victory I give,\nAnd crown you king of this day's happiness.\n\nPERICLES:\n'Tis more by fortune, lady, than by merit.\n\nSIMONIDES:\nCall it by what you will, the day is yours;\nAnd here, I hope, is none that envies it.\nIn framing an artist, art hath thus decreed,\nTo make some good, but others to exceed;\nAnd you are her labour'd scholar. Come, queen o'\nthe feast,--\nFor, daughter, so you are,--here take your place:\nMarshal the rest, as they deserve their grace.\n\nKNIGHTS:\nWe are honour'd much by good Simonides.\n\nSIMONIDES:\nYour presence glads our days: honour we love;\nFor who hates honour hates the gods above.\n\nMarshal:\nSir, yonder is your place.\n\nPERICLES:\nSome other is more fit.\n\nFirst Knight:\nContend not, sir; for we are gentlemen\nThat neither in our hearts nor outward eyes\nEnvy the great nor do the low despise.\n\nPERICLES:\nYou are right courteous knights.\n\nSIMONIDES:\nSit, sir, sit.\n\nPERICLES:\nBy Jove, I wonder, that is king of thoughts,\nThese cates resist me, she but thought upon.\n\nTHAISA:\nBy Juno, that is queen of marriage,\nAll viands that I eat do seem unsavoury.\nWishing him my meat. Sure, he's a gallant gentleman.\n\nSIMONIDES:\nHe's but a country gentleman;\nHas done no more than other knights have done;\nHas broken a staff or so; so let it pass.\n\nTHAISA:\nTo me he seems like diamond to glass.\n\nPERICLES:\nYon king's to me like to my father's picture,\nWhich tells me in that glory once he was;\nHad princes sit, like stars, about his throne,\nAnd he the sun, for them to reverence;\nNone that beheld him, but, like lesser lights,\nDid vail their crowns to his supremacy:\nWhere now his son's like a glow-worm in the night,\nThe which hath fire in darkness, none in light:\nWhereby I see that Time's the king of men,\nHe's both their parent, and he is their grave,\nAnd gives them what he will, not what they crave.\n\nSIMONIDES:\nWhat, are you merry, knights?\n\nKnights:\nWho can be other in this royal presence?\n\nSIMONIDES:\nHere, with a cup that's stored unto the brim,--\nAs you do love, fill to your mistress' lips,--\nWe drink this health to you.\n\nKNIGHTS:\nWe thank your grace.\n\nSIMONIDES:\nYet pause awhile:\nYon knight doth sit too melancholy,\nAs if the entertainment in our court\nHad not a show might countervail his worth.\nNote it not you, Thaisa?\n\nTHAISA:\nWhat is it\nTo me, my father?\n\nSIMONIDES:\nO, attend, my daughter:\nPrinces in this should live like gods above,\nWho freely give to every one that comes\nTo honour them:\nAnd princes not doing so are like to gnats,\nWhich make a sound, but kill'd are wonder'd at.\nTherefore to make his entrance more sweet,\nHere, say we drink this standing-bowl of wine to him.\n\nTHAISA:\nAlas, my father, it befits not me\nUnto a stranger knight to be so bold:\nHe may my proffer take for an offence,\nSince men take women's gifts for impudence.\n\nSIMONIDES:\nHow!\nDo as I bid you, or you'll move me else.\n\nTHAISA:\n\nSIMONIDES:\nAnd furthermore tell him, we desire to know of him,\nOf whence he is, his name and parentage.\n\nTHAISA:\nThe king my father, sir, has drunk to you.\n\nPERICLES:\nI thank him.\n\nTHAISA:\nWishing it so much blood unto your life.\n\nPERICLES:\nI thank both him and you, and pledge him freely.\n\nTHAISA:\nAnd further he desires to know of you,\nOf whence you are, your name and parentage.\n\nPERICLES:\nA gentleman of Tyre; my name, Pericles;\nMy education been in arts and arms;\nWho, looking for adventures in the world,\nWas by the rough seas reft of ships and men,\nAnd after shipwreck driven upon this shore.\n\nTHAISA:\nHe thanks your grace; names himself Pericles,\nA gentleman of Tyre,\nWho only by misfortune of the seas\nBereft of ships and men, cast on this shore.\n\nSIMONIDES:\nNow, by the gods, I pity his misfortune,\nAnd will awake him from his melancholy.\nCome, gentlemen, we sit too long on trifles,\nAnd waste the time, which looks for other revels.\nEven in your armours, as you are address'd,\nWill very well become a soldier's dance.\nI will not have excuse, with saying this\nLoud music is too harsh for ladies' heads,\nSince they love men in arms as well as beds.\nSo, this was well ask'd,'twas so well perform'd.\nCome, sir;\nHere is a lady that wants breathing too:\nAnd I have heard, you knights of Tyre\nAre excellent in making ladies trip;\nAnd that their measures are as excellent.\n\nPERICLES:\nIn those that practise them they are, my lord.\n\nSIMONIDES:\nO, that's as much as you would be denied\nOf your fair courtesy.\nUnclasp, unclasp:\nThanks, gentlemen, to all; all have done well.\nBut you the best. Pages and lights, to conduct\nThese knights unto their several lodgings!\nYours, sir,\nWe have given order to be next our own.\n\nPERICLES:\nI am at your grace's pleasure.\n\nSIMONIDES:\nPrinces, it is too late to talk of love;\nAnd that's the mark I know you level at:\nTherefore each one betake him to his rest;\nTo-morrow all for speeding do their best.\n\nHELICANUS:\nNo, Escanes, know this of me,\nAntiochus from incest lived not free:\nFor which, the most high gods not minding longer\nTo withhold the vengeance that they had in store,\nDue to this heinous capital offence,\nEven in the height and pride of all his glory,\nWhen he was seated in a chariot\nOf an inestimable value, and his daughter with him,\nA fire from heaven came and shrivell'd up\nTheir bodies, even to loathing; for they so stunk,\nThat all those eyes adored them ere their fall\nScorn now their hand should give them burial.\n\nESCANES:\n'Twas very strange.\n\nHELICANUS:\nAnd yet but justice; for though\nThis king were great, his greatness was no guard\nTo bar heaven's shaft, but sin had his reward.\n\nESCANES:\n'Tis very true.\n\nFirst Lord:\nSee, not a man in private conference\nOr council has respect with him but he.\n\nSecond Lord:\nIt shall no longer grieve without reproof.\n\nThird Lord:\nAnd cursed be he that will not second it.\n\nFirst Lord:\nFollow me, then. Lord Helicane, a word.\n\nHELICANUS:\nWith me? and welcome: happy day, my lords.\n\nFirst Lord:\nKnow that our griefs are risen to the top,\nAnd now at length they overflow their banks.\n\nHELICANUS:\nYour griefs! for what? wrong not your prince you love.\n\nFirst Lord:\nWrong not yourself, then, noble Helicane;\nBut if the prince do live, let us salute him,\nOr know what ground's made happy by his breath.\nIf in the world he live, we'll seek him out;\nIf in his grave he rest, we'll find him there;\nAnd be resolved he lives to govern us,\nOr dead, give's cause to mourn his funeral,\nAnd leave us to our free election.\n\nSecond Lord:\nWhose death indeed's the strongest in our censure:\nAnd knowing this kingdom is without a head,--\nLike goodly buildings left without a roof\nSoon fall to ruin,--your noble self,\nThat best know how to rule and how to reign,\nWe thus submit unto,--our sovereign.\n\nAll:\nLive, noble Helicane!\n\nHELICANUS:\nFor honour's cause, forbear your suffrages:\nIf that you love Prince Pericles, forbear.\nTake I your wish, I leap into the seas,\nWhere's hourly trouble for a minute's ease.\nA twelvemonth longer, let me entreat you to\nForbear the absence of your king:\nIf in which time expired, he not return,\nI shall with aged patience bear your yoke.\nBut if I cannot win you to this love,\nGo search like nobles, like noble subjects,\nAnd in your search spend your adventurous worth;\nWhom if you find, and win unto return,\nYou shall like diamonds sit about his crown.\n\nFirst Lord:\nTo wisdom he's a fool that will not yield;\nAnd since Lord Helicane enjoineth us,\nWe with our travels will endeavour us.\n\nHELICANUS:\nThen you love us, we you, and we'll clasp hands:\nWhen peers thus knit, a kingdom ever stands.\n\nFirst Knight:\nGood morrow to the good Simonides.\n\nSIMONIDES:\nKnights, from my daughter this I let you know,\nThat for this twelvemonth she'll not undertake\nA married life.\nHer reason to herself is only known,\nWhich yet from her by no means can I get.\n\nSecond Knight:\nMay we not get access to her, my lord?\n\nSIMONIDES:\n'Faith, by no means; she has so strictly tied\nHer to her chamber, that 'tis impossible.\nOne twelve moons more she'll wear Diana's livery;\nThis by the eye of Cynthia hath she vow'd\nAnd on her virgin honour will not break it.\n\nThird Knight:\nLoath to bid farewell, we take our leaves.\n\nSIMONIDES:\nSo,\nThey are well dispatch'd; now to my daughter's letter:\nShe tells me here, she'd wed the stranger knight,\nOr never more to view nor day nor light.\n'Tis well, mistress; your choice agrees with mine;\nI like that well: nay, how absolute she's in't,\nNot minding whether I dislike or no!\nWell, I do commend her choice;\nAnd will no longer have it be delay'd.\nSoft! here he comes: I must dissemble it.\n\nPERICLES:\nAll fortune to the good Simonides!\n\nSIMONIDES:\nTo you as much, sir! I am beholding to you\nFor your sweet music this last night: I do\nProtest my ears were never better fed\nWith such delightful pleasing harmony.\n\nPERICLES:\nIt is your grace's pleasure to commend;\nNot my desert.\n\nSIMONIDES:\nSir, you are music's master.\n\nPERICLES:\nThe worst of all her scholars, my good lord.\n\nSIMONIDES:\nLet me ask you one thing:\nWhat do you think of my daughter, sir?\n\nPERICLES:\nA most virtuous princess.\n\nSIMONIDES:\nAnd she is fair too, is she not?\n\nPERICLES:\nAs a fair day in summer, wondrous fair.\n\nSIMONIDES:\nSir, my daughter thinks very well of you;\nAy, so well, that you must be her master,\nAnd she will be your scholar: therefore look to it.\n\nPERICLES:\nI am unworthy for her schoolmaster.\n\nSIMONIDES:\nShe thinks not so; peruse this writing else.\n\nPERICLES:\n\nSIMONIDES:\nThou hast bewitch'd my daughter, and thou art\nA villain.\n\nPERICLES:\nBy the gods, I have not:\nNever did thought of mine levy offence;\nNor never did my actions yet commence\nA deed might gain her love or your displeasure.\n\nSIMONIDES:\nTraitor, thou liest.\n\nPERICLES:\nTraitor!\n\nSIMONIDES:\nAy, traitor.\n\nPERICLES:\nEven in his throat--unless it be the king--\nThat calls me traitor, I return the lie.\n\nSIMONIDES:\n\nPERICLES:\nMy actions are as noble as my thoughts,\nThat never relish'd of a base descent.\nI came unto your court for honour's cause,\nAnd not to be a rebel to her state;\nAnd he that otherwise accounts of me,\nThis sword shall prove he's honour's enemy.\n\nSIMONIDES:\nNo?\nHere comes my daughter, she can witness it.\n\nPERICLES:\nThen, as you are as virtuous as fair,\nResolve your angry father, if my tongue\nDid ere solicit, or my hand subscribe\nTo any syllable that made love to you.\n\nTHAISA:\nWhy, sir, say if you had,\nWho takes offence at that would make me glad?\n\nSIMONIDES:\nYea, mistress, are you so peremptory?\nI am glad on't with all my heart.--\nI'll tame you; I'll bring you in subjection.\nWill you, not having my consent,\nBestow your love and your affections\nUpon a stranger?\nwho, for aught I know,\nMay be, nor can I think the contrary,\nAs great in blood as I myself.--\nTherefore hear you, mistress; either frame\nYour will to mine,--and you, sir, hear you,\nEither be ruled by me, or I will make you--\nMan and wife:\nNay, come, your hands and lips must seal it too:\nAnd being join'd, I'll thus your hopes destroy;\nAnd for a further grief,--God give you joy!--\nWhat, are you both pleased?\n\nTHAISA:\nYes, if you love me, sir.\n\nPERICLES:\nEven as my life, or blood that fosters it.\n\nSIMONIDES:\nWhat, are you both agreed?\n\nBOTH:\nYes, if it please your majesty.\n\nSIMONIDES:\nIt pleaseth me so well, that I will see you wed;\nAnd then with what haste you can get you to bed.\n\nGOWER:\nNow sleep y-slaked hath the rout;\nNo din but snores the house about,\nMade louder by the o'er-fed breast\nOf this most pompous marriage-feast.\nThe cat, with eyne of burning coal,\nNow crouches fore the mouse's hole;\nAnd crickets sing at the oven's mouth,\nE'er the blither for their drouth.\nHymen hath brought the bride to bed.\nWhere, by the loss of maidenhead,\nA babe is moulded. Be attent,\nAnd time that is so briefly spent\nWith your fine fancies quaintly eche:\nWhat's dumb in show I'll plain with speech.\nBy many a dern and painful perch\nOf Pericles the careful search,\nBy the four opposing coigns\nWhich the world together joins,\nIs made with all due diligence\nThat horse and sail and high expense\nCan stead the quest. At last from Tyre,\nFame answering the most strange inquire,\nTo the court of King Simonides\nAre letters brought, the tenor these:\nAntiochus and his daughter dead;\nThe men of Tyrus on the head\nOf Helicanus would set on\nThe crown of Tyre, but he will none:\nThe mutiny he there hastes t' oppress;\nSays to 'em, if King Pericles\nCome not home in twice six moons,\nHe, obedient to their dooms,\nWill take the crown. The sum of this,\nBrought hither to Pentapolis,\nY-ravished the regions round,\nAnd every one with claps can sound,\n'Our heir-apparent is a king!\nWho dream'd, who thought of such a thing?'\nBrief, he must hence depart to Tyre:\nHis queen with child makes her desire--\nWhich who shall cross?--along to go:\nOmit we all their dole and woe:\nLychorida, her nurse, she takes,\nAnd so to sea. Their vessel shakes\nOn Neptune's billow; half the flood\nHath their keel cut: but fortune's mood\nVaries again; the grisly north\nDisgorges such a tempest forth,\nThat, as a duck for life that dives,\nSo up and down the poor ship drives:\nThe lady shrieks, and well-a-near\nDoes fall in travail with her fear:\nAnd what ensues in this fell storm\nShall for itself itself perform.\nI nill relate, action may\nConveniently the rest convey;\nWhich might not what by me is told.\nIn your imagination hold\nThis stage the ship, upon whose deck\nThe sea-tost Pericles appears to speak.\n\nPERICLES:\nThou god of this great vast, rebuke these surges,\nWhich wash both heaven and hell; and thou, that hast\nUpon the winds command, bind them in brass,\nHaving call'd them from the deep! O, still\nThy deafening, dreadful thunders; gently quench\nThy nimble, sulphurous flashes! O, how, Lychorida,\nHow does my queen? Thou stormest venomously;\nWilt thou spit all thyself? The seaman's whistle\nIs as a whisper in the ears of death,\nUnheard. Lychorida!--Lucina, O\nDivinest patroness, and midwife gentle\nTo those that cry by night, convey thy deity\nAboard our dancing boat; make swift the pangs\nOf my queen's travails!\nNow, Lychorida!\n\nLYCHORIDA:\nHere is a thing too young for such a place,\nWho, if it had conceit, would die, as I\nAm like to do: take in your arms this piece\nOf your dead queen.\n\nPERICLES:\nHow, how, Lychorida!\n\nLYCHORIDA:\nPatience, good sir; do not assist the storm.\nHere's all that is left living of your queen,\nA little daughter: for the sake of it,\nBe manly, and take comfort.\n\nPERICLES:\nO you gods!\nWhy do you make us love your goodly gifts,\nAnd snatch them straight away? We here below\nRecall not what we give, and therein may\nUse honour with you.\n\nLYCHORIDA:\nPatience, good sir,\nEven for this charge.\n\nPERICLES:\nNow, mild may be thy life!\nFor a more blustrous birth had never babe:\nQuiet and gentle thy conditions! for\nThou art the rudeliest welcome to this world\nThat ever was prince's child. Happy what follows!\nThou hast as chiding a nativity\nAs fire, air, water, earth, and heaven can make,\nTo herald thee from the womb: even at the first\nThy loss is more than can thy portage quit,\nWith all thou canst find here. Now, the good gods\nThrow their best eyes upon't!\n\nFirst Sailor:\nWhat courage, sir? God save you!\n\nPERICLES:\nCourage enough: I do not fear the flaw;\nIt hath done to me the worst. Yet, for the love\nOf this poor infant, this fresh-new sea-farer,\nI would it would be quiet.\n\nFirst Sailor:\nSlack the bolins there! Thou wilt not, wilt thou?\nBlow, and split thyself.\n\nSecond Sailor:\nBut sea-room, an the brine and cloudy billow kiss\nthe moon, I care not.\n\nFirst Sailor:\nSir, your queen must overboard: the sea works high,\nthe wind is loud, and will not lie till the ship be\ncleared of the dead.\n\nPERICLES:\nThat's your superstition.\n\nFirst Sailor:\nPardon us, sir; with us at sea it hath been still\nobserved: and we are strong in custom. Therefore\nbriefly yield her; for she must overboard straight.\n\nPERICLES:\nAs you think meet. Most wretched queen!\n\nLYCHORIDA:\nHere she lies, sir.\n\nPERICLES:\nA terrible childbed hast thou had, my dear;\nNo light, no fire: the unfriendly elements\nForgot thee utterly: nor have I time\nTo give thee hallow'd to thy grave, but straight\nMust cast thee, scarcely coffin'd, in the ooze;\nWhere, for a monument upon thy bones,\nAnd e'er-remaining lamps, the belching whale\nAnd humming water must o'erwhelm thy corpse,\nLying with simple shells. O Lychorida,\nBid Nestor bring me spices, ink and paper,\nMy casket and my jewels; and bid Nicander\nBring me the satin coffer: lay the babe\nUpon the pillow: hie thee, whiles I say\nA priestly farewell to her: suddenly, woman.\n\nSecond Sailor:\nSir, we have a chest beneath the hatches, caulked\nand bitumed ready.\n\nPERICLES:\nI thank thee. Mariner, say what coast is this?\n\nSecond Sailor:\nWe are near Tarsus.\n\nPERICLES:\nThither, gentle mariner.\nAlter thy course for Tyre. When canst thou reach it?\n\nSecond Sailor:\nBy break of day, if the wind cease.\n\nPERICLES:\nO, make for Tarsus!\nThere will I visit Cleon, for the babe\nCannot hold out to Tyrus: there I'll leave it\nAt careful nursing. Go thy ways, good mariner:\nI'll bring the body presently.\n\nCERIMON:\nPhilemon, ho!\n\nPHILEMON:\nDoth my lord call?\n\nCERIMON:\nGet fire and meat for these poor men:\n'T has been a turbulent and stormy night.\n\nServant:\nI have been in many; but such a night as this,\nTill now, I ne'er endured.\n\nCERIMON:\nYour master will be dead ere you return;\nThere's nothing can be minister'd to nature\nThat can recover him.\nGive this to the 'pothecary,\nAnd tell me how it works.\n\nFirst Gentleman:\nGood morrow.\n\nSecond Gentleman:\nGood morrow to your lordship.\n\nCERIMON:\nGentlemen,\nWhy do you stir so early?\n\nFirst Gentleman:\nSir,\nOur lodgings, standing bleak upon the sea,\nShook as the earth did quake;\nThe very principals did seem to rend,\nAnd all-to topple: pure surprise and fear\nMade me to quit the house.\n\nSecond Gentleman:\nThat is the cause we trouble you so early;\n'Tis not our husbandry.\n\nCERIMON:\nO, you say well.\n\nFirst Gentleman:\nBut I much marvel that your lordship, having\nRich tire about you, should at these early hours\nShake off the golden slumber of repose.\n'Tis most strange,\nNature should be so conversant with pain,\nBeing thereto not compell'd.\n\nCERIMON:\nI hold it ever,\nVirtue and cunning were endowments greater\nThan nobleness and riches: careless heirs\nMay the two latter darken and expend;\nBut immortality attends the former.\nMaking a man a god. 'Tis known, I ever\nHave studied physic, through which secret art,\nBy turning o'er authorities, I have,\nTogether with my practise, made familiar\nTo me and to my aid the blest infusions\nThat dwell in vegetives, in metals, stones;\nAnd I can speak of the disturbances\nThat nature works, and of her cures; which doth give me\nA more content in course of true delight\nThan to be thirsty after tottering honour,\nOr tie my treasure up in silken bags,\nTo please the fool and death.\n\nSecond Gentleman:\nYour honour has through Ephesus pour'd forth\nYour charity, and hundreds call themselves\nYour creatures, who by you have been restored:\nAnd not your knowledge, your personal pain, but even\nYour purse, still open, hath built Lord Cerimon\nSuch strong renown as time shall ne'er decay.\n\nFirst Servant:\nSo; lift there.\n\nCERIMON:\nWhat is that?\n\nFirst Servant:\nSir, even now\nDid the sea toss upon our shore this chest:\n'Tis of some wreck.\n\nCERIMON:\nSet 't down, let's look upon't.\n\nSecond Gentleman:\n'Tis like a coffin, sir.\n\nCERIMON:\nWhate'er it be,\n'Tis wondrous heavy. Wrench it open straight:\nIf the sea's stomach be o'ercharged with gold,\n'Tis a good constraint of fortune it belches upon us.\n\nSecond Gentleman:\n'Tis so, my lord.\n\nCERIMON:\nHow close 'tis caulk'd and bitumed!\nDid the sea cast it up?\n\nFirst Servant:\nI never saw so huge a billow, sir,\nAs toss'd it upon shore.\n\nCERIMON:\nWrench it open;\nSoft! it smells most sweetly in my sense.\n\nSecond Gentleman:\nA delicate odour.\n\nCERIMON:\nAs ever hit my nostril. So, up with it.\nO you most potent gods! what's here? a corse!\n\nFirst Gentleman:\nMost strange!\n\nCERIMON:\nShrouded in cloth of state; balm'd and entreasured\nWith full bags of spices! A passport too!\nApollo, perfect me in the characters!\n'Here I give to understand,\nIf e'er this coffin drive a-land,\nI, King Pericles, have lost\nThis queen, worth all our mundane cost.\nWho finds her, give her burying;\nShe was the daughter of a king:\nBesides this treasure for a fee,\nThe gods requite his charity!'\nIf thou livest, Pericles, thou hast a heart\nThat even cracks for woe! This chanced tonight.\n\nSecond Gentleman:\nMost likely, sir.\n\nCERIMON:\nNay, certainly to-night;\nFor look how fresh she looks! They were too rough\nThat threw her in the sea. Make a fire within:\nFetch hither all my boxes in my closet.\nDeath may usurp on nature many hours,\nAnd yet the fire of life kindle again\nThe o'erpress'd spirits. I heard of an Egyptian\nThat had nine hours lien dead,\nWho was by good appliance recovered.\nWell said, well said; the fire and cloths.\nThe rough and woeful music that we have,\nCause it to sound, beseech you.\nThe viol once more: how thou stirr'st, thou block!\nThe music there!--I pray you, give her air.\nGentlemen.\nThis queen will live: nature awakes; a warmth\nBreathes out of her: she hath not been entranced\nAbove five hours: see how she gins to blow\nInto life's flower again!\n\nFirst Gentleman:\nThe heavens,\nThrough you, increase our wonder and set up\nYour fame forever.\n\nCERIMON:\nShe is alive; behold,\nHer eyelids, cases to those heavenly jewels\nWhich Pericles hath lost,\nBegin to part their fringes of bright gold;\nThe diamonds of a most praised water\nDo appear, to make the world twice rich. Live,\nAnd make us weep to hear your fate, fair creature,\nRare as you seem to be.\n\nTHAISA:\nO dear Diana,\nWhere am I? Where's my lord? What world is this?\n\nSecond Gentleman:\nIs not this strange?\n\nFirst Gentleman:\nMost rare.\n\nCERIMON:\nHush, my gentle neighbours!\nLend me your hands; to the next chamber bear her.\nGet linen: now this matter must be look'd to,\nFor her relapse is mortal. Come, come;\nAnd AEsculapius guide us!\n\nPERICLES:\nMost honour'd Cleon, I must needs be gone;\nMy twelve months are expired, and Tyrus stands\nIn a litigious peace. You, and your lady,\nTake from my heart all thankfulness! The gods\nMake up the rest upon you!\n\nCLEON:\nYour shafts of fortune, though they hurt you mortally,\nYet glance full wanderingly on us.\n\nDIONYZA:\nO your sweet queen!\nThat the strict fates had pleased you had brought her hither,\nTo have bless'd mine eyes with her!\n\nPERICLES:\nWe cannot but obey\nThe powers above us. Could I rage and roar\nAs doth the sea she lies in, yet the end\nMust be as 'tis. My gentle babe Marina, whom,\nFor she was born at sea, I have named so, here\nI charge your charity withal, leaving her\nThe infant of your care; beseeching you\nTo give her princely training, that she may be\nManner'd as she is born.\n\nCLEON:\nFear not, my lord, but think\nYour grace, that fed my country with your corn,\nFor which the people's prayers still fall upon you,\nMust in your child be thought on. If neglection\nShould therein make me vile, the common body,\nBy you relieved, would force me to my duty:\nBut if to that my nature need a spur,\nThe gods revenge it upon me and mine,\nTo the end of generation!\n\nPERICLES:\nI believe you;\nYour honour and your goodness teach me to't,\nWithout your vows. Till she be married, madam,\nBy bright Diana, whom we honour, all\nUnscissor'd shall this hair of mine remain,\nThough I show ill in't. So I take my leave.\nGood madam, make me blessed in your care\nIn bringing up my child.\n\nDIONYZA:\nI have one myself,\nWho shall not be more dear to my respect\nThan yours, my lord.\n\nPERICLES:\nMadam, my thanks and prayers.\n\nCLEON:\nWe'll bring your grace e'en to the edge o' the shore,\nThen give you up to the mask'd Neptune and\nThe gentlest winds of heaven.\n\nPERICLES:\nI will embrace\nYour offer. Come, dearest madam. O, no tears,\nLychorida, no tears:\nLook to your little mistress, on whose grace\nYou may depend hereafter. Come, my lord.\n\nCERIMON:\nMadam, this letter, and some certain jewels,\nLay with you in your coffer: which are now\nAt your command. Know you the character?\n\nTHAISA:\nIt is my lord's.\nThat I was shipp'd at sea, I well remember,\nEven on my eaning time; but whether there\nDeliver'd, by the holy gods,\nI cannot rightly say. But since King Pericles,\nMy wedded lord, I ne'er shall see again,\nA vestal livery will I take me to,\nAnd never more have joy.\n\nCERIMON:\nMadam, if this you purpose as ye speak,\nDiana's temple is not distant far,\nWhere you may abide till your date expire.\nMoreover, if you please, a niece of mine\nShall there attend you.\n\nTHAISA:\nMy recompense is thanks, that's all;\nYet my good will is great, though the gift small.\n\nGOWER:\nImagine Pericles arrived at Tyre,\nWelcomed and settled to his own desire.\nHis woeful queen we leave at Ephesus,\nUnto Diana there a votaress.\nNow to Marina bend your mind,\nWhom our fast-growing scene must find\nAt Tarsus, and by Cleon train'd\nIn music, letters; who hath gain'd\nOf education all the grace,\nWhich makes her both the heart and place\nOf general wonder. But, alack,\nThat monster envy, oft the wrack\nOf earned praise, Marina's life\nSeeks to take off by treason's knife.\nAnd in this kind hath our Cleon\nOne daughter, and a wench full grown,\nEven ripe for marriage-rite; this maid\nHight Philoten: and it is said\nFor certain in our story, she\nWould ever with Marina be:\nBe't when she weaved the sleided silk\nWith fingers long, small, white as milk;\nOr when she would with sharp needle wound\nThe cambric, which she made more sound\nBy hurting it; or when to the lute\nShe sung, and made the night-bird mute,\nThat still records with moan; or when\nShe would with rich and constant pen\nVail to her mistress Dian; still\nThis Philoten contends in skill\nWith absolute Marina: so\nWith the dove of Paphos might the crow\nVie feathers white. Marina gets\nAll praises, which are paid as debts,\nAnd not as given. This so darks\nIn Philoten all graceful marks,\nThat Cleon's wife, with envy rare,\nA present murderer does prepare\nFor good Marina, that her daughter\nMight stand peerless by this slaughter.\nThe sooner her vile thoughts to stead,\nLychorida, our nurse, is dead:\nAnd cursed Dionyza hath\nThe pregnant instrument of wrath\nPrest for this blow. The unborn event\nI do commend to your content:\nOnly I carry winged time\nPost on the lame feet of my rhyme;\nWhich never could I so convey,\nUnless your thoughts went on my way.\nDionyza does appear,\nWith Leonine, a murderer.\n\nDIONYZA:\nThy oath remember; thou hast sworn to do't:\n'Tis but a blow, which never shall be known.\nThou canst not do a thing in the world so soon,\nTo yield thee so much profit. Let not conscience,\nWhich is but cold, inflaming love i' thy bosom,\nInflame too nicely; nor let pity, which\nEven women have cast off, melt thee, but be\nA soldier to thy purpose.\n\nLEONINE:\nI will do't; but yet she is a goodly creature.\n\nDIONYZA:\nThe fitter, then, the gods should have her. Here\nshe comes weeping for her only mistress' death.\nThou art resolved?\n\nLEONINE:\nI am resolved.\n\nMARINA:\nNo, I will rob Tellus of her weed,\nTo strew thy green with flowers: the yellows, blues,\nThe purple violets, and marigolds,\nShall as a carpet hang upon thy grave,\nWhile summer-days do last. Ay me! poor maid,\nBorn in a tempest, when my mother died,\nThis world to me is like a lasting storm,\nWhirring me from my friends.\n\nDIONYZA:\nHow now, Marina! why do you keep alone?\nHow chance my daughter is not with you? Do not\nConsume your blood with sorrowing: you have\nA nurse of me. Lord, how your favour's changed\nWith this unprofitable woe!\nCome, give me your flowers, ere the sea mar it.\nWalk with Leonine; the air is quick there,\nAnd it pierces and sharpens the stomach. Come,\nLeonine, take her by the arm, walk with her.\n\nMARINA:\nNo, I pray you;\nI'll not bereave you of your servant.\n\nDIONYZA:\nCome, come;\nI love the king your father, and yourself,\nWith more than foreign heart. We every day\nExpect him here: when he shall come and find\nOur paragon to all reports thus blasted,\nHe will repent the breadth of his great voyage;\nBlame both my lord and me, that we have taken\nNo care to your best courses. Go, I pray you,\nWalk, and be cheerful once again; reserve\nThat excellent complexion, which did steal\nThe eyes of young and old. Care not for me\nI can go home alone.\n\nMARINA:\nWell, I will go;\nBut yet I have no desire to it.\n\nDIONYZA:\nCome, come, I know 'tis good for you.\nWalk half an hour, Leonine, at the least:\nRemember what I have said.\n\nLEONINE:\nI warrant you, madam.\n\nDIONYZA:\nI'll leave you, my sweet lady, for a while:\nPray, walk softly, do not heat your blood:\nWhat! I must have a care of you.\n\nMARINA:\nMy thanks, sweet madam.\nIs this wind westerly that blows?\n\nLEONINE:\nSouth-west.\n\nMARINA:\nWhen I was born, the wind was north.\n\nLEONINE:\nWas't so?\n\nMARINA:\nMy father, as nurse said, did never fear,\nBut cried 'Good seaman!' to the sailors, galling\nHis kingly hands, haling ropes;\nAnd, clasping to the mast, endured a sea\nThat almost burst the deck.\n\nLEONINE:\nWhen was this?\n\nMARINA:\nWhen I was born:\nNever was waves nor wind more violent;\nAnd from the ladder-tackle washes off\nA canvas-climber. 'Ha!' says one, 'wilt out?'\nAnd with a dropping industry they skip\nFrom stem to stern: the boatswain whistles, and\nThe master calls, and trebles their confusion.\n\nLEONINE:\nCome, say your prayers.\n\nMARINA:\nWhat mean you?\n\nLEONINE:\nIf you require a little space for prayer,\nI grant it: pray; but be not tedious,\nFor the gods are quick of ear, and I am sworn\nTo do my work with haste.\n\nMARINA:\nWhy will you kill me?\n\nLEONINE:\nTo satisfy my lady.\n\nMARINA:\nWhy would she have me kill'd?\nNow, as I can remember, by my troth,\nI never did her hurt in all my life:\nI never spake bad word, nor did ill turn\nTo any living creature: believe me, la,\nI never kill'd a mouse, nor hurt a fly:\nI trod upon a worm against my will,\nBut I wept for it. How have I offended,\nWherein my death might yield her any profit,\nOr my life imply her any danger?\n\nLEONINE:\nMy commission\nIs not to reason of the deed, but do it.\n\nMARINA:\nYou will not do't for all the world, I hope.\nYou are well favour'd, and your looks foreshow\nYou have a gentle heart. I saw you lately,\nWhen you caught hurt in parting two that fought:\nGood sooth, it show'd well in you: do so now:\nYour lady seeks my life; come you between,\nAnd save poor me, the weaker.\n\nLEONINE:\nI am sworn,\nAnd will dispatch.\n\nFirst Pirate:\nHold, villain!\n\nSecond Pirate:\nA prize! a prize!\n\nThird Pirate:\nHalf-part, mates, half-part.\nCome, let's have her aboard suddenly.\n\nLEONINE:\nThese roguing thieves serve the great pirate Valdes;\nAnd they have seized Marina. Let her go:\nThere's no hope she will return. I'll swear\nshe's dead,\nAnd thrown into the sea. But I'll see further:\nPerhaps they will but please themselves upon her,\nNot carry her aboard. If she remain,\nWhom they have ravish'd must by me be slain.\n\nPandar:\nBoult!\n\nBOULT:\nSir?\n\nPandar:\nSearch the market narrowly; Mytilene is full of\ngallants. We lost too much money this mart by being\ntoo wenchless.\n\nBawd:\nWe were never so much out of creatures. We have but\npoor three, and they can do no more than they can\ndo; and they with continual action are even as good as rotten.\n\nPandar:\nTherefore let's have fresh ones, whate'er we pay for\nthem. If there be not a conscience to be used in\nevery trade, we shall never prosper.\n\nBawd:\nThou sayest true: 'tis not our bringing up of poor\nbastards,--as, I think, I have brought up some eleven--\n\nBOULT:\nAy, to eleven; and brought them down again. But\nshall I search the market?\n\nBawd:\nWhat else, man? The stuff we have, a strong wind\nwill blow it to pieces, they are so pitifully sodden.\n\nPandar:\nThou sayest true; they're too unwholesome, o'\nconscience. The poor Transylvanian is dead, that\nlay with the little baggage.\n\nBOULT:\nAy, she quickly pooped him; she made him roast-meat\nfor worms. But I'll go search the market.\n\nPandar:\nThree or four thousand chequins were as pretty a\nproportion to live quietly, and so give over.\n\nBawd:\nWhy to give over, I pray you? is it a shame to get\nwhen we are old?\n\nPandar:\nO, our credit comes not in like the commodity, nor\nthe commodity wages not with the danger: therefore,\nif in our youths we could pick up some pretty\nestate, 'twere not amiss to keep our door hatched.\nBesides, the sore terms we stand upon with the gods\nwill be strong with us for giving over.\n\nBawd:\nCome, other sorts offend as well as we.\n\nPandar:\nAs well as we! ay, and better too; we offend worse.\nNeither is our profession any trade; it's no\ncalling. But here comes Boult.\n\nBOULT:\n\nFirst Pirate:\nO, sir, we doubt it not.\n\nBOULT:\nMaster, I have gone through for this piece, you see:\nif you like her, so; if not, I have lost my earnest.\n\nBawd:\nBoult, has she any qualities?\n\nBOULT:\nShe has a good face, speaks well, and has excellent\ngood clothes: there's no further necessity of\nqualities can make her be refused.\n\nBawd:\nWhat's her price, Boult?\n\nBOULT:\nI cannot be bated one doit of a thousand pieces.\n\nPandar:\nWell, follow me, my masters, you shall have your\nmoney presently. Wife, take her in; instruct her\nwhat she has to do, that she may not be raw in her\nentertainment.\n\nBawd:\nBoult, take you the marks of her, the colour of her\nhair, complexion, height, age, with warrant of her\nvirginity; and cry 'He that will give most shall\nhave her first.' Such a maidenhead were no cheap\nthing, if men were as they have been. Get this done\nas I command you.\n\nBOULT:\nPerformance shall follow.\n\nMARINA:\nAlack that Leonine was so slack, so slow!\nHe should have struck, not spoke; or that these pirates,\nNot enough barbarous, had not o'erboard thrown me\nFor to seek my mother!\n\nBawd:\nWhy lament you, pretty one?\n\nMARINA:\nThat I am pretty.\n\nBawd:\nCome, the gods have done their part in you.\n\nMARINA:\nI accuse them not.\n\nBawd:\nYou are light into my hands, where you are like to live.\n\nMARINA:\nThe more my fault\nTo scape his hands where I was like to die.\n\nBawd:\nAy, and you shall live in pleasure.\n\nMARINA:\nNo.\n\nBawd:\nYes, indeed shall you, and taste gentlemen of all\nfashions: you shall fare well; you shall have the\ndifference of all complexions. What! do you stop your ears?\n\nMARINA:\nAre you a woman?\n\nBawd:\nWhat would you have me be, an I be not a woman?\n\nMARINA:\nAn honest woman, or not a woman.\n\nBawd:\nMarry, whip thee, gosling: I think I shall have\nsomething to do with you. Come, you're a young\nfoolish sapling, and must be bowed as I would have\nyou.\n\nMARINA:\nThe gods defend me!\n\nBawd:\nIf it please the gods to defend you by men, then men\nmust comfort you, men must feed you, men must stir\nyou up. Boult's returned.\nNow, sir, hast thou cried her through the market?\n\nBOULT:\nI have cried her almost to the number of her hairs;\nI have drawn her picture with my voice.\n\nBawd:\nAnd I prithee tell me, how dost thou find the\ninclination of the people, especially of the younger sort?\n\nBOULT:\n'Faith, they listened to me as they would have\nhearkened to their father's testament. There was a\nSpaniard's mouth so watered, that he went to bed to\nher very description.\n\nBawd:\nWe shall have him here to-morrow with his best ruff on.\n\nBOULT:\nTo-night, to-night. But, mistress, do you know the\nFrench knight that cowers i' the hams?\n\nBawd:\nWho, Monsieur Veroles?\n\nBOULT:\nAy, he: he offered to cut a caper at the\nproclamation; but he made a groan at it, and swore\nhe would see her to-morrow.\n\nBawd:\nWell, well; as for him, he brought his disease\nhither: here he does but repair it. I know he will\ncome in our shadow, to scatter his crowns in the\nsun.\n\nBOULT:\nWell, if we had of every nation a traveller, we\nshould lodge them with this sign.\n\nBawd:\n\nMARINA:\nI understand you not.\n\nBOULT:\nO, take her home, mistress, take her home: these\nblushes of hers must be quenched with some present practise.\n\nBawd:\nThou sayest true, i' faith, so they must; for your\nbride goes to that with shame which is her way to go\nwith warrant.\n\nBOULT:\n'Faith, some do, and some do not. But, mistress, if\nI have bargained for the joint,--\n\nBawd:\nThou mayst cut a morsel off the spit.\n\nBOULT:\nI may so.\n\nBawd:\nWho should deny it? Come, young one, I like the\nmanner of your garments well.\n\nBOULT:\nAy, by my faith, they shall not be changed yet.\n\nBawd:\nBoult, spend thou that in the town: report what a\nsojourner we have; you'll lose nothing by custom.\nWhen nature flamed this piece, she meant thee a good\nturn; therefore say what a paragon she is, and thou\nhast the harvest out of thine own report.\n\nBOULT:\nI warrant you, mistress, thunder shall not so awake\nthe beds of eels as my giving out her beauty stir up\nthe lewdly-inclined. I'll bring home some to-night.\n\nBawd:\nCome your ways; follow me.\n\nMARINA:\nIf fires be hot, knives sharp, or waters deep,\nUntied I still my virgin knot will keep.\nDiana, aid my purpose!\n\nBawd:\nWhat have we to do with Diana? Pray you, will you go with us?\n\nDIONYZA:\nWhy, are you foolish? Can it be undone?\n\nCLEON:\nO Dionyza, such a piece of slaughter\nThe sun and moon ne'er look'd upon!\n\nDIONYZA:\nI think\nYou'll turn a child again.\n\nCLEON:\nWere I chief lord of all this spacious world,\nI'ld give it to undo the deed. O lady,\nMuch less in blood than virtue, yet a princess\nTo equal any single crown o' the earth\nI' the justice of compare! O villain Leonine!\nWhom thou hast poison'd too:\nIf thou hadst drunk to him, 't had been a kindness\nBecoming well thy fact: what canst thou say\nWhen noble Pericles shall demand his child?\n\nDIONYZA:\nThat she is dead. Nurses are not the fates,\nTo foster it, nor ever to preserve.\nShe died at night; I'll say so. Who can cross it?\nUnless you play the pious innocent,\nAnd for an honest attribute cry out\n'She died by foul play.'\n\nCLEON:\nO, go to. Well, well,\nOf all the faults beneath the heavens, the gods\nDo like this worst.\n\nDIONYZA:\nBe one of those that think\nThe petty wrens of Tarsus will fly hence,\nAnd open this to Pericles. I do shame\nTo think of what a noble strain you are,\nAnd of how coward a spirit.\n\nCLEON:\nTo such proceeding\nWho ever but his approbation added,\nThough not his prime consent, he did not flow\nFrom honourable sources.\n\nDIONYZA:\nBe it so, then:\nYet none does know, but you, how she came dead,\nNor none can know, Leonine being gone.\nShe did disdain my child, and stood between\nHer and her fortunes: none would look on her,\nBut cast their gazes on Marina's face;\nWhilst ours was blurted at and held a malkin\nNot worth the time of day. It pierced me through;\nAnd though you call my course unnatural,\nYou not your child well loving, yet I find\nIt greets me as an enterprise of kindness\nPerform'd to your sole daughter.\n\nCLEON:\nHeavens forgive it!\n\nDIONYZA:\nAnd as for Pericles,\nWhat should he say? We wept after her hearse,\nAnd yet we mourn: her monument\nIs almost finish'd, and her epitaphs\nIn glittering golden characters express\nA general praise to her, and care in us\nAt whose expense 'tis done.\n\nCLEON:\nThou art like the harpy,\nWhich, to betray, dost, with thine angel's face,\nSeize with thine eagle's talons.\n\nDIONYZA:\nYou are like one that superstitiously\nDoth swear to the gods that winter kills the flies:\nBut yet I know you'll do as I advise.\n\nGOWER:\nThus time we waste, and longest leagues make short;\nSail seas in cockles, have an wish but for't;\nMaking, to take your imagination,\nFrom bourn to bourn, region to region.\nBy you being pardon'd, we commit no crime\nTo use one language in each several clime\nWhere our scenes seem to live. I do beseech you\nTo learn of me, who stand i' the gaps to teach you,\nThe stages of our story. Pericles\nIs now again thwarting the wayward seas,\nAttended on by many a lord and knight.\nTo see his daughter, all his life's delight.\nOld Escanes, whom Helicanus late\nAdvanced in time to great and high estate,\nIs left to govern. Bear you it in mind,\nOld Helicanus goes along behind.\nWell-sailing ships and bounteous winds have brought\nThis king to Tarsus,--think his pilot thought;\nSo with his steerage shall your thoughts grow on,--\nTo fetch his daughter home, who first is gone.\nLike motes and shadows see them move awhile;\nYour ears unto your eyes I'll reconcile.\nSee how belief may suffer by foul show!\nThis borrow'd passion stands for true old woe;\nAnd Pericles, in sorrow all devour'd,\nWith sighs shot through, and biggest tears\no'ershower'd,\nLeaves Tarsus and again embarks. He swears\nNever to wash his face, nor cut his hairs:\nHe puts on sackcloth, and to sea. He bears\nA tempest, which his mortal vessel tears,\nAnd yet he rides it out. Now please you wit.\nThe epitaph is for Marina writ\nBy wicked Dionyza.\n'The fairest, sweet'st, and best lies here,\nWho wither'd in her spring of year.\nShe was of Tyrus the king's daughter,\nOn whom foul death hath made this slaughter;\nMarina was she call'd; and at her birth,\nThetis, being proud, swallow'd some part o' the earth:\nTherefore the earth, fearing to be o'erflow'd,\nHath Thetis' birth-child on the heavens bestow'd:\nWherefore she does, and swears she'll never stint,\nMake raging battery upon shores of flint.'\nNo visor does become black villany\nSo well as soft and tender flattery.\nLet Pericles believe his daughter's dead,\nAnd bear his courses to be ordered\nBy Lady Fortune; while our scene must play\nHis daughter's woe and heavy well-a-day\nIn her unholy service. Patience, then,\nAnd think you now are all in Mytilene.\n\nFirst Gentleman:\nDid you ever hear the like?\n\nSecond Gentleman:\nNo, nor never shall do in such a place as this, she\nbeing once gone.\n\nFirst Gentleman:\nBut to have divinity preached there! did you ever\ndream of such a thing?\n\nSecond Gentleman:\nNo, no. Come, I am for no more bawdy-houses:\nshall's go hear the vestals sing?\n\nFirst Gentleman:\nI'll do any thing now that is virtuous; but I\nam out of the road of rutting for ever.\n\nPandar:\nWell, I had rather than twice the worth of her she\nhad ne'er come here.\n\nBawd:\nFie, fie upon her! she's able to freeze the god\nPriapus, and undo a whole generation. We must\neither get her ravished, or be rid of her. When she\nshould do for clients her fitment, and do me the\nkindness of our profession, she has me her quirks,\nher reasons, her master reasons, her prayers, her\nknees; that she would make a puritan of the devil,\nif he should cheapen a kiss of her.\n\nBOULT:\n'Faith, I must ravish her, or she'll disfurnish us\nof all our cavaliers, and make our swearers priests.\n\nPandar:\nNow, the pox upon her green-sickness for me!\n\nBawd:\n'Faith, there's no way to be rid on't but by the\nway to the pox. Here comes the Lord Lysimachus disguised.\n\nBOULT:\nWe should have both lord and lown, if the peevish\nbaggage would but give way to customers.\n\nLYSIMACHUS:\nHow now! How a dozen of virginities?\n\nBawd:\nNow, the gods to-bless your honour!\n\nBOULT:\nI am glad to see your honour in good health.\n\nLYSIMACHUS:\nYou may so; 'tis the better for you that your\nresorters stand upon sound legs. How now!\nwholesome iniquity have you that a man may deal\nwithal, and defy the surgeon?\n\nBawd:\nWe have here one, sir, if she would--but there never\ncame her like in Mytilene.\n\nLYSIMACHUS:\nIf she'ld do the deed of darkness, thou wouldst say.\n\nBawd:\nYour honour knows what 'tis to say well enough.\n\nLYSIMACHUS:\nWell, call forth, call forth.\n\nBOULT:\nFor flesh and blood, sir, white and red, you shall\nsee a rose; and she were a rose indeed, if she had but--\n\nLYSIMACHUS:\nWhat, prithee?\n\nBOULT:\nO, sir, I can be modest.\n\nLYSIMACHUS:\nThat dignifies the renown of a bawd, no less than it\ngives a good report to a number to be chaste.\n\nBawd:\nHere comes that which grows to the stalk; never\nplucked yet, I can assure you.\nIs she not a fair creature?\n\nLYSIMACHUS:\n'Faith, she would serve after a long voyage at sea.\nWell, there's for you: leave us.\n\nBawd:\nI beseech your honour, give me leave: a word, and\nI'll have done presently.\n\nLYSIMACHUS:\nI beseech you, do.\n\nBawd:\n\nMARINA:\nI desire to find him so, that I may worthily note him.\n\nBawd:\nNext, he's the governor of this country, and a man\nwhom I am bound to.\n\nMARINA:\nIf he govern the country, you are bound to him\nindeed; but how honourable he is in that, I know not.\n\nBawd:\nPray you, without any more virginal fencing, will\nyou use him kindly? He will line your apron with gold.\n\nMARINA:\nWhat he will do graciously, I will thankfully receive.\n\nLYSIMACHUS:\nHa' you done?\n\nBawd:\nMy lord, she's not paced yet: you must take some\npains to work her to your manage. Come, we will\nleave his honour and her together. Go thy ways.\n\nLYSIMACHUS:\nNow, pretty one, how long have you been at this trade?\n\nMARINA:\nWhat trade, sir?\n\nLYSIMACHUS:\nWhy, I cannot name't but I shall offend.\n\nMARINA:\nI cannot be offended with my trade. Please you to name it.\n\nLYSIMACHUS:\nHow long have you been of this profession?\n\nMARINA:\nE'er since I can remember.\n\nLYSIMACHUS:\nDid you go to 't so young? Were you a gamester at\nfive or at seven?\n\nMARINA:\nEarlier too, sir, if now I be one.\n\nLYSIMACHUS:\nWhy, the house you dwell in proclaims you to be a\ncreature of sale.\n\nMARINA:\nDo you know this house to be a place of such resort,\nand will come into 't? I hear say you are of\nhonourable parts, and are the governor of this place.\n\nLYSIMACHUS:\nWhy, hath your principal made known unto you who I am?\n\nMARINA:\nWho is my principal?\n\nLYSIMACHUS:\nWhy, your herb-woman; she that sets seeds and roots\nof shame and iniquity. O, you have heard something\nof my power, and so stand aloof for more serious\nwooing. But I protest to thee, pretty one, my\nauthority shall not see thee, or else look friendly\nupon thee. Come, bring me to some private place:\ncome, come.\n\nMARINA:\nIf you were born to honour, show it now;\nIf put upon you, make the judgment good\nThat thought you worthy of it.\n\nLYSIMACHUS:\nHow's this? how's this? Some more; be sage.\n\nMARINA:\nFor me,\nThat am a maid, though most ungentle fortune\nHave placed me in this sty, where, since I came,\nDiseases have been sold dearer than physic,\nO, that the gods\nWould set me free from this unhallow'd place,\nThough they did change me to the meanest bird\nThat flies i' the purer air!\n\nLYSIMACHUS:\nI did not think\nThou couldst have spoke so well; ne'er dream'd thou couldst.\nHad I brought hither a corrupted mind,\nThy speech had alter'd it. Hold, here's gold for thee:\nPersever in that clear way thou goest,\nAnd the gods strengthen thee!\n\nMARINA:\nThe good gods preserve you!\n\nLYSIMACHUS:\nFor me, be you thoughten\nThat I came with no ill intent; for to me\nThe very doors and windows savour vilely.\nFare thee well. Thou art a piece of virtue, and\nI doubt not but thy training hath been noble.\nHold, here's more gold for thee.\nA curse upon him, die he like a thief,\nThat robs thee of thy goodness! If thou dost\nHear from me, it shall be for thy good.\n\nBOULT:\nI beseech your honour, one piece for me.\n\nLYSIMACHUS:\nAvaunt, thou damned door-keeper!\nYour house, but for this virgin that doth prop it,\nWould sink and overwhelm you. Away!\n\nBOULT:\nHow's this? We must take another course with you.\nIf your peevish chastity, which is not worth a\nbreakfast in the cheapest country under the cope,\nshall undo a whole household, let me be gelded like\na spaniel. Come your ways.\n\nMARINA:\nWhither would you have me?\n\nBOULT:\nI must have your maidenhead taken off, or the common\nhangman shall execute it. Come your ways. We'll\nhave no more gentlemen driven away. Come your ways, I say.\n\nBawd:\nHow now! what's the matter?\n\nBOULT:\nWorse and worse, mistress; she has here spoken holy\nwords to the Lord Lysimachus.\n\nBawd:\nO abominable!\n\nBOULT:\nShe makes our profession as it were to stink afore\nthe face of the gods.\n\nBawd:\nMarry, hang her up for ever!\n\nBOULT:\nThe nobleman would have dealt with her like a\nnobleman, and she sent him away as cold as a\nsnowball; saying his prayers too.\n\nBawd:\nBoult, take her away; use her at thy pleasure:\ncrack the glass of her virginity, and make the rest malleable.\n\nBOULT:\nAn if she were a thornier piece of ground than she\nis, she shall be ploughed.\n\nMARINA:\nHark, hark, you gods!\n\nBawd:\nShe conjures: away with her! Would she had never\ncome within my doors! Marry, hang you! She's born\nto undo us. Will you not go the way of women-kind?\nMarry, come up, my dish of chastity with rosemary and bays!\n\nBOULT:\nCome, mistress; come your ways with me.\n\nMARINA:\nWhither wilt thou have me?\n\nBOULT:\nTo take from you the jewel you hold so dear.\n\nMARINA:\nPrithee, tell me one thing first.\n\nBOULT:\nCome now, your one thing.\n\nMARINA:\nWhat canst thou wish thine enemy to be?\n\nBOULT:\nWhy, I could wish him to be my master, or rather, my mistress.\n\nMARINA:\nNeither of these are so bad as thou art,\nSince they do better thee in their command.\nThou hold'st a place, for which the pained'st fiend\nOf hell would not in reputation change:\nThou art the damned doorkeeper to every\nCoistrel that comes inquiring for his Tib;\nTo the choleric fisting of every rogue\nThy ear is liable; thy food is such\nAs hath been belch'd on by infected lungs.\n\nBOULT:\nWhat would you have me do? go to the wars, would\nyou? where a man may serve seven years for the loss\nof a leg, and have not money enough in the end to\nbuy him a wooden one?\n\nMARINA:\nDo any thing but this thou doest. Empty\nOld receptacles, or common shores, of filth;\nServe by indenture to the common hangman:\nAny of these ways are yet better than this;\nFor what thou professest, a baboon, could he speak,\nWould own a name too dear. O, that the gods\nWould safely deliver me from this place!\nHere, here's gold for thee.\nIf that thy master would gain by thee,\nProclaim that I can sing, weave, sew, and dance,\nWith other virtues, which I'll keep from boast:\nAnd I will undertake all these to teach.\nI doubt not but this populous city will\nYield many scholars.\n\nBOULT:\nBut can you teach all this you speak of?\n\nMARINA:\nProve that I cannot, take me home again,\nAnd prostitute me to the basest groom\nThat doth frequent your house.\n\nBOULT:\nWell, I will see what I can do for thee: if I can\nplace thee, I will.\n\nMARINA:\nBut amongst honest women.\n\nBOULT:\n'Faith, my acquaintance lies little amongst them.\nBut since my master and mistress have bought you,\nthere's no going but by their consent: therefore I\nwill make them acquainted with your purpose, and I\ndoubt not but I shall find them tractable enough.\nCome, I'll do for thee what I can; come your ways.\n\nGOWER:\nMarina thus the brothel 'scapes, and chances\nInto an honest house, our story says.\nShe sings like one immortal, and she dances\nAs goddess-like to her admired lays;\nDeep clerks she dumbs; and with her needle composes\nNature's own shape, of bud, bird, branch, or berry,\nThat even her art sisters the natural roses;\nHer inkle, silk, twin with the rubied cherry:\nThat pupils lacks she none of noble race,\nWho pour their bounty on her; and her gain\nShe gives the cursed bawd. Here we her place;\nAnd to her father turn our thoughts again,\nWhere we left him, on the sea. We there him lost;\nWhence, driven before the winds, he is arrived\nHere where his daughter dwells; and on this coast\nSuppose him now at anchor. The city strived\nGod Neptune's annual feast to keep: from whence\nLysimachus our Tyrian ship espies,\nHis banners sable, trimm'd with rich expense;\nAnd to him in his barge with fervor hies.\nIn your supposing once more put your sight\nOf heavy Pericles; think this his bark:\nWhere what is done in action, more, if might,\nShall be discover'd; please you, sit and hark.\n\nTyrian Sailor:\n\nHELICANUS:\nThat he have his. Call up some gentlemen.\n\nTyrian Sailor:\nHo, gentlemen! my lord calls.\n\nFirst Gentleman:\nDoth your lordship call?\n\nHELICANUS:\nGentlemen, there's some of worth would come aboard;\nI pray ye, greet them fairly.\n\nTyrian Sailor:\nSir,\nThis is the man that can, in aught you would,\nResolve you.\n\nLYSIMACHUS:\nHail, reverend sir! the gods preserve you!\n\nHELICANUS:\nAnd you, sir, to outlive the age I am,\nAnd die as I would do.\n\nLYSIMACHUS:\nYou wish me well.\nBeing on shore, honouring of Neptune's triumphs,\nSeeing this goodly vessel ride before us,\nI made to it, to know of whence you are.\n\nHELICANUS:\nFirst, what is your place?\n\nLYSIMACHUS:\nI am the governor of this place you lie before.\n\nHELICANUS:\nSir,\nOur vessel is of Tyre, in it the king;\nA man who for this three months hath not spoken\nTo any one, nor taken sustenance\nBut to prorogue his grief.\n\nLYSIMACHUS:\nUpon what ground is his distemperature?\n\nHELICANUS:\n'Twould be too tedious to repeat;\nBut the main grief springs from the loss\nOf a beloved daughter and a wife.\n\nLYSIMACHUS:\nMay we not see him?\n\nHELICANUS:\nYou may;\nBut bootless is your sight: he will not speak To any.\n\nLYSIMACHUS:\nYet let me obtain my wish.\n\nHELICANUS:\nBehold him.\nThis was a goodly person,\nTill the disaster that, one mortal night,\nDrove him to this.\n\nLYSIMACHUS:\nSir king, all hail! the gods preserve you!\nHail, royal sir!\n\nHELICANUS:\nIt is in vain; he will not speak to you.\n\nFirst Lord:\nSir,\nWe have a maid in Mytilene, I durst wager,\nWould win some words of him.\n\nLYSIMACHUS:\n'Tis well bethought.\nShe questionless with her sweet harmony\nAnd other chosen attractions, would allure,\nAnd make a battery through his deafen'd parts,\nWhich now are midway stopp'd:\nShe is all happy as the fairest of all,\nAnd, with her fellow maids is now upon\nThe leafy shelter that abuts against\nThe island's side.\n\nHELICANUS:\nSure, all's effectless; yet nothing we'll omit\nThat bears recovery's name. But, since your kindness\nWe have stretch'd thus far, let us beseech you\nThat for our gold we may provision have,\nWherein we are not destitute for want,\nBut weary for the staleness.\n\nLYSIMACHUS:\nO, sir, a courtesy\nWhich if we should deny, the most just gods\nFor every graff would send a caterpillar,\nAnd so afflict our province. Yet once more\nLet me entreat to know at large the cause\nOf your king's sorrow.\n\nHELICANUS:\nSit, sir, I will recount it to you:\nBut, see, I am prevented.\n\nLYSIMACHUS:\nO, here is\nThe lady that I sent for. Welcome, fair one!\nIs't not a goodly presence?\n\nHELICANUS:\nShe's a gallant lady.\n\nLYSIMACHUS:\nShe's such a one, that, were I well assured\nCame of a gentle kind and noble stock,\nI'ld wish no better choice, and think me rarely wed.\nFair one, all goodness that consists in bounty\nExpect even here, where is a kingly patient:\nIf that thy prosperous and artificial feat\nCan draw him but to answer thee in aught,\nThy sacred physic shall receive such pay\nAs thy desires can wish.\n\nMARINA:\nSir, I will use\nMy utmost skill in his recovery, Provided\nThat none but I and my companion maid\nBe suffer'd to come near him.\n\nLYSIMACHUS:\nCome, let us leave her;\nAnd the gods make her prosperous!\n\nLYSIMACHUS:\nMark'd he your music?\n\nMARINA:\nNo, nor look'd on us.\n\nLYSIMACHUS:\nSee, she will speak to him.\n\nMARINA:\nHail, sir! my lord, lend ear.\n\nPERICLES:\nHum, ha!\n\nMARINA:\nI am a maid,\nMy lord, that ne'er before invited eyes,\nBut have been gazed on like a comet: she speaks,\nMy lord, that, may be, hath endured a grief\nMight equal yours, if both were justly weigh'd.\nThough wayward fortune did malign my state,\nMy derivation was from ancestors\nWho stood equivalent with mighty kings:\nBut time hath rooted out my parentage,\nAnd to the world and awkward casualties\nBound me in servitude.\nI will desist;\nBut there is something glows upon my cheek,\nAnd whispers in mine ear, 'Go not till he speak.'\n\nPERICLES:\nMy fortunes--parentage--good parentage--\nTo equal mine!--was it not thus? what say you?\n\nMARINA:\nI said, my lord, if you did know my parentage,\nYou would not do me violence.\n\nPERICLES:\nI do think so. Pray you, turn your eyes upon me.\nYou are like something that--What country-woman?\nHere of these shores?\n\nMARINA:\nNo, nor of any shores:\nYet I was mortally brought forth, and am\nNo other than I appear.\n\nPERICLES:\nI am great with woe, and shall deliver weeping.\nMy dearest wife was like this maid, and such a one\nMy daughter might have been: my queen's square brows;\nHer stature to an inch; as wand-like straight;\nAs silver-voiced; her eyes as jewel-like\nAnd cased as richly; in pace another Juno;\nWho starves the ears she feeds, and makes them hungry,\nThe more she gives them speech. Where do you live?\n\nMARINA:\nWhere I am but a stranger: from the deck\nYou may discern the place.\n\nPERICLES:\nWhere were you bred?\nAnd how achieved you these endowments, which\nYou make more rich to owe?\n\nMARINA:\nIf I should tell my history, it would seem\nLike lies disdain'd in the reporting.\n\nPERICLES:\nPrithee, speak:\nFalseness cannot come from thee; for thou look'st\nModest as Justice, and thou seem'st a palace\nFor the crown'd Truth to dwell in: I will\nbelieve thee,\nAnd make my senses credit thy relation\nTo points that seem impossible; for thou look'st\nLike one I loved indeed. What were thy friends?\nDidst thou not say, when I did push thee back--\nWhich was when I perceived thee--that thou camest\nFrom good descending?\n\nMARINA:\nSo indeed I did.\n\nPERICLES:\nReport thy parentage. I think thou said'st\nThou hadst been toss'd from wrong to injury,\nAnd that thou thought'st thy griefs might equal mine,\nIf both were open'd.\n\nMARINA:\nSome such thing\nI said, and said no more but what my thoughts\nDid warrant me was likely.\n\nPERICLES:\nTell thy story;\nIf thine consider'd prove the thousandth part\nOf my endurance, thou art a man, and I\nHave suffer'd like a girl: yet thou dost look\nLike Patience gazing on kings' graves, and smiling\nExtremity out of act. What were thy friends?\nHow lost thou them? Thy name, my most kind virgin?\nRecount, I do beseech thee: come, sit by me.\n\nMARINA:\nMy name is Marina.\n\nPERICLES:\nO, I am mock'd,\nAnd thou by some incensed god sent hither\nTo make the world to laugh at me.\n\nMARINA:\nPatience, good sir,\nOr here I'll cease.\n\nPERICLES:\nNay, I'll be patient.\nThou little know'st how thou dost startle me,\nTo call thyself Marina.\n\nMARINA:\nThe name\nWas given me by one that had some power,\nMy father, and a king.\n\nPERICLES:\nHow! a king's daughter?\nAnd call'd Marina?\n\nMARINA:\nYou said you would believe me;\nBut, not to be a troubler of your peace,\nI will end here.\n\nPERICLES:\nBut are you flesh and blood?\nHave you a working pulse? and are no fairy?\nMotion! Well; speak on. Where were you born?\nAnd wherefore call'd Marina?\n\nMARINA:\nCall'd Marina\nFor I was born at sea.\n\nPERICLES:\nAt sea! what mother?\n\nMARINA:\nMy mother was the daughter of a king;\nWho died the minute I was born,\nAs my good nurse Lychorida hath oft\nDeliver'd weeping.\n\nPERICLES:\nO, stop there a little!\nThis is the rarest dream that e'er dull sleep\nDid mock sad fools withal: this cannot be:\nMy daughter's buried. Well: where were you bred?\nI'll hear you more, to the bottom of your story,\nAnd never interrupt you.\n\nMARINA:\nYou scorn: believe me, 'twere best I did give o'er.\n\nPERICLES:\nI will believe you by the syllable\nOf what you shall deliver. Yet, give me leave:\nHow came you in these parts? where were you bred?\n\nMARINA:\nThe king my father did in Tarsus leave me;\nTill cruel Cleon, with his wicked wife,\nDid seek to murder me: and having woo'd\nA villain to attempt it, who having drawn to do't,\nA crew of pirates came and rescued me;\nBrought me to Mytilene. But, good sir,\nWhither will you have me? Why do you weep?\nIt may be,\nYou think me an impostor: no, good faith;\nI am the daughter to King Pericles,\nIf good King Pericles be.\n\nPERICLES:\nHo, Helicanus!\n\nHELICANUS:\nCalls my lord?\n\nPERICLES:\nThou art a grave and noble counsellor,\nMost wise in general: tell me, if thou canst,\nWhat this maid is, or what is like to be,\nThat thus hath made me weep?\n\nHELICANUS:\nI know not; but\nHere is the regent, sir, of Mytilene\nSpeaks nobly of her.\n\nLYSIMACHUS:\nShe would never tell\nHer parentage; being demanded that,\nShe would sit still and weep.\n\nPERICLES:\nO Helicanus, strike me, honour'd sir;\nGive me a gash, put me to present pain;\nLest this great sea of joys rushing upon me\nO'erbear the shores of my mortality,\nAnd drown me with their sweetness. O, come hither,\nThou that beget'st him that did thee beget;\nThou that wast born at sea, buried at Tarsus,\nAnd found at sea again! O Helicanus,\nDown on thy knees, thank the holy gods as loud\nAs thunder threatens us: this is Marina.\nWhat was thy mother's name? tell me but that,\nFor truth can never be confirm'd enough,\nThough doubts did ever sleep.\n\nMARINA:\nFirst, sir, I pray,\nWhat is your title?\n\nPERICLES:\nI am Pericles of Tyre: but tell me now\nMy drown'd queen's name, as in the rest you said\nThou hast been godlike perfect,\nThe heir of kingdoms and another like\nTo Pericles thy father.\n\nMARINA:\nIs it no more to be your daughter than\nTo say my mother's name was Thaisa?\nThaisa was my mother, who did end\nThe minute I began.\n\nPERICLES:\nNow, blessing on thee! rise; thou art my child.\nGive me fresh garments. Mine own, Helicanus;\nShe is not dead at Tarsus, as she should have been,\nBy savage Cleon: she shall tell thee all;\nWhen thou shalt kneel, and justify in knowledge\nShe is thy very princess. Who is this?\n\nHELICANUS:\nSir, 'tis the governor of Mytilene,\nWho, hearing of your melancholy state,\nDid come to see you.\n\nPERICLES:\nI embrace you.\nGive me my robes. I am wild in my beholding.\nO heavens bless my girl! But, hark, what music?\nTell Helicanus, my Marina, tell him\nO'er, point by point, for yet he seems to doubt,\nHow sure you are my daughter. But, what music?\n\nHELICANUS:\nMy lord, I hear none.\n\nPERICLES:\nNone!\nThe music of the spheres! List, my Marina.\n\nLYSIMACHUS:\nIt is not good to cross him; give him way.\n\nPERICLES:\nRarest sounds! Do ye not hear?\n\nLYSIMACHUS:\nMy lord, I hear.\n\nPERICLES:\nMost heavenly music!\nIt nips me unto listening, and thick slumber\nHangs upon mine eyes: let me rest.\n\nLYSIMACHUS:\nA pillow for his head:\nSo, leave him all. Well, my companion friends,\nIf this but answer to my just belief,\nI'll well remember you.\n\nDIANA:\nMy temple stands in Ephesus: hie thee thither,\nAnd do upon mine altar sacrifice.\nThere, when my maiden priests are met together,\nBefore the people all,\nReveal how thou at sea didst lose thy wife:\nTo mourn thy crosses, with thy daughter's, call\nAnd give them repetition to the life.\nOr perform my bidding, or thou livest in woe;\nDo it, and happy; by my silver bow!\nAwake, and tell thy dream.\n\nPERICLES:\nCelestial Dian, goddess argentine,\nI will obey thee. Helicanus!\n\nHELICANUS:\nSir?\n\nPERICLES:\nMy purpose was for Tarsus, there to strike\nThe inhospitable Cleon; but I am\nFor other service first: toward Ephesus\nTurn our blown sails; eftsoons I'll tell thee why.\nShall we refresh us, sir, upon your shore,\nAnd give you gold for such provision\nAs our intents will need?\n\nLYSIMACHUS:\nSir,\nWith all my heart; and, when you come ashore,\nI have another suit.\n\nPERICLES:\nYou shall prevail,\nWere it to woo my daughter; for it seems\nYou have been noble towards her.\n\nLYSIMACHUS:\nSir, lend me your arm.\n\nPERICLES:\nCome, my Marina.\n\nGOWER:\nNow our sands are almost run;\nMore a little, and then dumb.\nThis, my last boon, give me,\nFor such kindness must relieve me,\nThat you aptly will suppose\nWhat pageantry, what feats, what shows,\nWhat minstrelsy, and pretty din,\nThe regent made in Mytilene\nTo greet the king. So he thrived,\nThat he is promised to be wived\nTo fair Marina; but in no wise\nTill he had done his sacrifice,\nAs Dian bade: whereto being bound,\nThe interim, pray you, all confound.\nIn feather'd briefness sails are fill'd,\nAnd wishes fall out as they're will'd.\nAt Ephesus, the temple see,\nOur king and all his company.\nThat he can hither come so soon,\nIs by your fancy's thankful doom.\n\nPERICLES:\nHail, Dian! to perform thy just command,\nI here confess myself the king of Tyre;\nWho, frighted from my country, did wed\nAt Pentapolis the fair Thaisa.\nAt sea in childbed died she, but brought forth\nA maid-child call'd Marina; who, O goddess,\nWears yet thy silver livery. She at Tarsus\nWas nursed with Cleon; who at fourteen years\nHe sought to murder: but her better stars\nBrought her to Mytilene; 'gainst whose shore\nRiding, her fortunes brought the maid aboard us,\nWhere, by her own most clear remembrance, she\nMade known herself my daughter.\n\nTHAISA:\nVoice and favour!\nYou are, you are--O royal Pericles!\n\nPERICLES:\nWhat means the nun? she dies! help, gentlemen!\n\nCERIMON:\nNoble sir,\nIf you have told Diana's altar true,\nThis is your wife.\n\nPERICLES:\nReverend appearer, no;\nI threw her overboard with these very arms.\n\nCERIMON:\nUpon this coast, I warrant you.\n\nPERICLES:\n'Tis most certain.\n\nCERIMON:\nLook to the lady; O, she's but o'erjoy'd.\nEarly in blustering morn this lady was\nThrown upon this shore. I oped the coffin,\nFound there rich jewels; recover'd her, and placed her\nHere in Diana's temple.\n\nPERICLES:\nMay we see them?\n\nCERIMON:\nGreat sir, they shall be brought you to my house,\nWhither I invite you. Look, Thaisa is recovered.\n\nTHAISA:\nO, let me look!\nIf he be none of mine, my sanctity\nWill to my sense bend no licentious ear,\nBut curb it, spite of seeing. O, my lord,\nAre you not Pericles? Like him you spake,\nLike him you are: did you not name a tempest,\nA birth, and death?\n\nPERICLES:\nThe voice of dead Thaisa!\n\nTHAISA:\nThat Thaisa am I, supposed dead\nAnd drown'd.\n\nPERICLES:\nImmortal Dian!\n\nTHAISA:\nNow I know you better.\nWhen we with tears parted Pentapolis,\nThe king my father gave you such a ring.\n\nPERICLES:\nThis, this: no more, you gods! your present kindness\nMakes my past miseries sports: you shall do well,\nThat on the touching of her lips I may\nMelt and no more be seen. O, come, be buried\nA second time within these arms.\n\nMARINA:\nMy heart\nLeaps to be gone into my mother's bosom.\n\nPERICLES:\nLook, who kneels here! Flesh of thy flesh, Thaisa;\nThy burden at the sea, and call'd Marina\nFor she was yielded there.\n\nTHAISA:\nBlest, and mine own!\n\nHELICANUS:\nHail, madam, and my queen!\n\nTHAISA:\nI know you not.\n\nPERICLES:\nYou have heard me say, when I did fly from Tyre,\nI left behind an ancient substitute:\nCan you remember what I call'd the man?\nI have named him oft.\n\nTHAISA:\n'Twas Helicanus then.\n\nPERICLES:\nStill confirmation:\nEmbrace him, dear Thaisa; this is he.\nNow do I long to hear how you were found;\nHow possibly preserved; and who to thank,\nBesides the gods, for this great miracle.\n\nTHAISA:\nLord Cerimon, my lord; this man,\nThrough whom the gods have shown their power; that can\nFrom first to last resolve you.\n\nPERICLES:\nReverend sir,\nThe gods can have no mortal officer\nMore like a god than you. Will you deliver\nHow this dead queen re-lives?\n\nCERIMON:\nI will, my lord.\nBeseech you, first go with me to my house,\nWhere shall be shown you all was found with her;\nHow she came placed here in the temple;\nNo needful thing omitted.\n\nPERICLES:\nPure Dian, bless thee for thy vision! I\nWill offer night-oblations to thee. Thaisa,\nThis prince, the fair-betrothed of your daughter,\nShall marry her at Pentapolis. And now,\nThis ornament\nMakes me look dismal will I clip to form;\nAnd what this fourteen years no razor touch'd,\nTo grace thy marriage-day, I'll beautify.\n\nTHAISA:\nLord Cerimon hath letters of good credit, sir,\nMy father's dead.\n\nPERICLES:\nHeavens make a star of him! Yet there, my queen,\nWe'll celebrate their nuptials, and ourselves\nWill in that kingdom spend our following days:\nOur son and daughter shall in Tyrus reign.\nLord Cerimon, we do our longing stay\nTo hear the rest untold: sir, lead's the way.\n\nGOWER:\nIn Antiochus and his daughter you have heard\nOf monstrous lust the due and just reward:\nIn Pericles, his queen and daughter, seen,\nAlthough assail'd with fortune fierce and keen,\nVirtue preserved from fell destruction's blast,\nLed on by heaven, and crown'd with joy at last:\nIn Helicanus may you well descry\nA figure of truth, of faith, of loyalty:\nIn reverend Cerimon there well appears\nThe worth that learned charity aye wears:\nFor wicked Cleon and his wife, when fame\nHad spread their cursed deed, and honour'd name\nOf Pericles, to rage the city turn,\nThat him and his they in his palace burn;\nThe gods for murder seemed so content\nTo punish them; although not done, but meant.\nSo, on your patience evermore attending,\nNew joy wait on you! Here our play has ending.\n\nSATURNINUS:\nNoble patricians, patrons of my right,\nDefend the justice of my cause with arms,\nAnd, countrymen, my loving followers,\nPlead my successive title with your swords:\nI am his first-born son, that was the last\nThat wore the imperial diadem of Rome;\nThen let my father's honours live in me,\nNor wrong mine age with this indignity.\n\nBASSIANUS:\nRomans, friends, followers, favorers of my right,\nIf ever Bassianus, Caesar's son,\nWere gracious in the eyes of royal Rome,\nKeep then this passage to the Capitol\nAnd suffer not dishonour to approach\nThe imperial seat, to virtue consecrate,\nTo justice, continence and nobility;\nBut let desert in pure election shine,\nAnd, Romans, fight for freedom in your choice.\n\nMARCUS ANDRONICUS:\nPrinces, that strive by factions and by friends\nAmbitiously for rule and empery,\nKnow that the people of Rome, for whom we stand\nA special party, have, by common voice,\nIn election for the Roman empery,\nChosen Andronicus, surnamed Pius\nFor many good and great deserts to Rome:\nA nobler man, a braver warrior,\nLives not this day within the city walls:\nHe by the senate is accit'd home\nFrom weary wars against the barbarous Goths;\nThat, with his sons, a terror to our foes,\nHath yoked a nation strong, train'd up in arms.\nTen years are spent since first he undertook\nThis cause of Rome and chastised with arms\nOur enemies' pride: five times he hath return'd\nBleeding to Rome, bearing his valiant sons\nIn coffins from the field;\nAnd now at last, laden with horror's spoils,\nReturns the good Andronicus to Rome,\nRenowned Titus, flourishing in arms.\nLet us entreat, by honour of his name,\nWhom worthily you would have now succeed.\nAnd in the Capitol and senate's right,\nWhom you pretend to honour and adore,\nThat you withdraw you and abate your strength;\nDismiss your followers and, as suitors should,\nPlead your deserts in peace and humbleness.\n\nSATURNINUS:\nHow fair the tribune speaks to calm my thoughts!\n\nBASSIANUS:\nMarcus Andronicus, so I do ally\nIn thy uprightness and integrity,\nAnd so I love and honour thee and thine,\nThy noble brother Titus and his sons,\nAnd her to whom my thoughts are humbled all,\nGracious Lavinia, Rome's rich ornament,\nThat I will here dismiss my loving friends,\nAnd to my fortunes and the people's favor\nCommit my cause in balance to be weigh'd.\n\nSATURNINUS:\nFriends, that have been thus forward in my right,\nI thank you all and here dismiss you all,\nAnd to the love and favor of my country\nCommit myself, my person and the cause.\nRome, be as just and gracious unto me\nAs I am confident and kind to thee.\nOpen the gates, and let me in.\n\nBASSIANUS:\nTribunes, and me, a poor competitor.\n\nCaptain:\nRomans, make way: the good Andronicus.\nPatron of virtue, Rome's best champion,\nSuccessful in the battles that he fights,\nWith honour and with fortune is return'd\nFrom where he circumscribed with his sword,\nAnd brought to yoke, the enemies of Rome.\n\nTITUS ANDRONICUS:\nHail, Rome, victorious in thy mourning weeds!\nLo, as the bark, that hath discharged her fraught,\nReturns with precious jading to the bay\nFrom whence at first she weigh'd her anchorage,\nCometh Andronicus, bound with laurel boughs,\nTo re-salute his country with his tears,\nTears of true joy for his return to Rome.\nThou great defender of this Capitol,\nStand gracious to the rites that we intend!\nRomans, of five and twenty valiant sons,\nHalf of the number that King Priam had,\nBehold the poor remains, alive and dead!\nThese that survive let Rome reward with love;\nThese that I bring unto their latest home,\nWith burial amongst their ancestors:\nHere Goths have given me leave to sheathe my sword.\nTitus, unkind and careless of thine own,\nWhy suffer'st thou thy sons, unburied yet,\nTo hover on the dreadful shore of Styx?\nMake way to lay them by their brethren.\nThere greet in silence, as the dead are wont,\nAnd sleep in peace, slain in your country's wars!\nO sacred receptacle of my joys,\nSweet cell of virtue and nobility,\nHow many sons of mine hast thou in store,\nThat thou wilt never render to me more!\n\nLUCIUS:\nGive us the proudest prisoner of the Goths,\nThat we may hew his limbs, and on a pile\nAd manes fratrum sacrifice his flesh,\nBefore this earthy prison of their bones;\nThat so the shadows be not unappeased,\nNor we disturb'd with prodigies on earth.\n\nTITUS ANDRONICUS:\nI give him you, the noblest that survives,\nThe eldest son of this distressed queen.\n\nTAMORA:\nStay, Roman brethren! Gracious conqueror,\nVictorious Titus, rue the tears I shed,\nA mother's tears in passion for her son:\nAnd if thy sons were ever dear to thee,\nO, think my son to be as dear to me!\nSufficeth not that we are brought to Rome,\nTo beautify thy triumphs and return,\nCaptive to thee and to thy Roman yoke,\nBut must my sons be slaughter'd in the streets,\nFor valiant doings in their country's cause?\nO, if to fight for king and commonweal\nWere piety in thine, it is in these.\nAndronicus, stain not thy tomb with blood:\nWilt thou draw near the nature of the gods?\nDraw near them then in being merciful:\nSweet mercy is nobility's true badge:\nThrice noble Titus, spare my first-born son.\n\nTITUS ANDRONICUS:\nPatient yourself, madam, and pardon me.\nThese are their brethren, whom you Goths beheld\nAlive and dead, and for their brethren slain\nReligiously they ask a sacrifice:\nTo this your son is mark'd, and die he must,\nTo appease their groaning shadows that are gone.\n\nLUCIUS:\nAway with him! and make a fire straight;\nAnd with our swords, upon a pile of wood,\nLet's hew his limbs till they be clean consumed.\n\nTAMORA:\nO cruel, irreligious piety!\n\nCHIRON:\nWas ever Scythia half so barbarous?\n\nDEMETRIUS:\nOppose not Scythia to ambitious Rome.\nAlarbus goes to rest; and we survive\nTo tremble under Titus' threatening looks.\nThen, madam, stand resolved, but hope withal\nThe self-same gods that arm'd the Queen of Troy\nWith opportunity of sharp revenge\nUpon the Thracian tyrant in his tent,\nMay favor Tamora, the Queen of Goths--\nWhen Goths were Goths and Tamora was queen--\nTo quit the bloody wrongs upon her foes.\n\nLUCIUS:\nSee, lord and father, how we have perform'd\nOur Roman rites: Alarbus' limbs are lopp'd,\nAnd entrails feed the sacrificing fire,\nWhose smoke, like incense, doth perfume the sky.\nRemaineth nought, but to inter our brethren,\nAnd with loud 'larums welcome them to Rome.\n\nTITUS ANDRONICUS:\nLet it be so; and let Andronicus\nMake this his latest farewell to their souls.\nIn peace and honour rest you here, my sons;\nRome's readiest champions, repose you here in rest,\nSecure from worldly chances and mishaps!\nHere lurks no treason, here no envy swells,\nHere grow no damned grudges; here are no storms,\nNo noise, but silence and eternal sleep:\nIn peace and honour rest you here, my sons!\n\nLAVINIA:\nIn peace and honour live Lord Titus long;\nMy noble lord and father, live in fame!\nLo, at this tomb my tributary tears\nI render, for my brethren's obsequies;\nAnd at thy feet I kneel, with tears of joy,\nShed on the earth, for thy return to Rome:\nO, bless me here with thy victorious hand,\nWhose fortunes Rome's best citizens applaud!\n\nTITUS ANDRONICUS:\nKind Rome, that hast thus lovingly reserved\nThe cordial of mine age to glad my heart!\nLavinia, live; outlive thy father's days,\nAnd fame's eternal date, for virtue's praise!\n\nMARCUS ANDRONICUS:\nLong live Lord Titus, my beloved brother,\nGracious triumpher in the eyes of Rome!\n\nTITUS ANDRONICUS:\nThanks, gentle tribune, noble brother Marcus.\n\nMARCUS ANDRONICUS:\nAnd welcome, nephews, from successful wars,\nYou that survive, and you that sleep in fame!\nFair lords, your fortunes are alike in all,\nThat in your country's service drew your swords:\nBut safer triumph is this funeral pomp,\nThat hath aspired to Solon's happiness\nAnd triumphs over chance in honour's bed.\nTitus Andronicus, the people of Rome,\nWhose friend in justice thou hast ever been,\nSend thee by me, their tribune and their trust,\nThis palliament of white and spotless hue;\nAnd name thee in election for the empire,\nWith these our late-deceased emperor's sons:\nBe candidatus then, and put it on,\nAnd help to set a head on headless Rome.\n\nTITUS ANDRONICUS:\nA better head her glorious body fits\nThan his that shakes for age and feebleness:\nWhat should I don this robe, and trouble you?\nBe chosen with proclamations to-day,\nTo-morrow yield up rule, resign my life,\nAnd set abroad new business for you all?\nRome, I have been thy soldier forty years,\nAnd led my country's strength successfully,\nAnd buried one and twenty valiant sons,\nKnighted in field, slain manfully in arms,\nIn right and service of their noble country\nGive me a staff of honour for mine age,\nBut not a sceptre to control the world:\nUpright he held it, lords, that held it last.\n\nMARCUS ANDRONICUS:\nTitus, thou shalt obtain and ask the empery.\n\nSATURNINUS:\nProud and ambitious tribune, canst thou tell?\n\nTITUS ANDRONICUS:\nPatience, Prince Saturninus.\n\nSATURNINUS:\nRomans, do me right:\nPatricians, draw your swords: and sheathe them not\nTill Saturninus be Rome's emperor.\nAndronicus, would thou wert shipp'd to hell,\nRather than rob me of the people's hearts!\n\nLUCIUS:\nProud Saturnine, interrupter of the good\nThat noble-minded Titus means to thee!\n\nTITUS ANDRONICUS:\nContent thee, prince; I will restore to thee\nThe people's hearts, and wean them from themselves.\n\nBASSIANUS:\nAndronicus, I do not flatter thee,\nBut honour thee, and will do till I die:\nMy faction if thou strengthen with thy friends,\nI will most thankful be; and thanks to men\nOf noble minds is honourable meed.\n\nTITUS ANDRONICUS:\nPeople of Rome, and people's tribunes here,\nI ask your voices and your suffrages:\nWill you bestow them friendly on Andronicus?\n\nTribunes:\nTo gratify the good Andronicus,\nAnd gratulate his safe return to Rome,\nThe people will accept whom he admits.\n\nTITUS ANDRONICUS:\nTribunes, I thank you: and this suit I make,\nThat you create your emperor's eldest son,\nLord Saturnine; whose virtues will, I hope,\nReflect on Rome as Titan's rays on earth,\nAnd ripen justice in this commonweal:\nThen, if you will elect by my advice,\nCrown him and say 'Long live our emperor!'\n\nMARCUS ANDRONICUS:\nWith voices and applause of every sort,\nPatricians and plebeians, we create\nLord Saturninus Rome's great emperor,\nAnd say 'Long live our Emperor Saturnine!'\n\nSATURNINUS:\nTitus Andronicus, for thy favors done\nTo us in our election this day,\nI give thee thanks in part of thy deserts,\nAnd will with deeds requite thy gentleness:\nAnd, for an onset, Titus, to advance\nThy name and honourable family,\nLavinia will I make my empress,\nRome's royal mistress, mistress of my heart,\nAnd in the sacred Pantheon her espouse:\nTell me, Andronicus, doth this motion please thee?\n\nTITUS ANDRONICUS:\nIt doth, my worthy lord; and in this match\nI hold me highly honour'd of your grace:\nAnd here in sight of Rome to Saturnine,\nKing and commander of our commonweal,\nThe wide world's emperor, do I consecrate\nMy sword, my chariot and my prisoners;\nPresents well worthy Rome's imperial lord:\nReceive them then, the tribute that I owe,\nMine honour's ensigns humbled at thy feet.\n\nSATURNINUS:\nThanks, noble Titus, father of my life!\nHow proud I am of thee and of thy gifts\nRome shall record, and when I do forget\nThe least of these unspeakable deserts,\nRomans, forget your fealty to me.\n\nTITUS ANDRONICUS:\n\nSATURNINUS:\nA goodly lady, trust me; of the hue\nThat I would choose, were I to choose anew.\nClear up, fair queen, that cloudy countenance:\nThough chance of war hath wrought this change of cheer,\nThou comest not to be made a scorn in Rome:\nPrincely shall be thy usage every way.\nRest on my word, and let not discontent\nDaunt all your hopes: madam, he comforts you\nCan make you greater than the Queen of Goths.\nLavinia, you are not displeased with this?\n\nLAVINIA:\nNot I, my lord; sith true nobility\nWarrants these words in princely courtesy.\n\nSATURNINUS:\nThanks, sweet Lavinia. Romans, let us go;\nRansomless here we set our prisoners free:\nProclaim our honours, lords, with trump and drum.\n\nBASSIANUS:\nLord Titus, by your leave, this maid is mine.\n\nTITUS ANDRONICUS:\nHow, sir! are you in earnest then, my lord?\n\nBASSIANUS:\nAy, noble Titus; and resolved withal\nTo do myself this reason and this right.\n\nMARCUS ANDRONICUS:\n'Suum cuique' is our Roman justice:\nThis prince in justice seizeth but his own.\n\nLUCIUS:\nAnd that he will, and shall, if Lucius live.\n\nTITUS ANDRONICUS:\nTraitors, avaunt! Where is the emperor's guard?\nTreason, my lord! Lavinia is surprised!\n\nSATURNINUS:\nSurprised! by whom?\n\nBASSIANUS:\nBy him that justly may\nBear his betroth'd from all the world away.\n\nMUTIUS:\nBrothers, help to convey her hence away,\nAnd with my sword I'll keep this door safe.\n\nTITUS ANDRONICUS:\nFollow, my lord, and I'll soon bring her back.\n\nMUTIUS:\nMy lord, you pass not here.\n\nTITUS ANDRONICUS:\nWhat, villain boy!\nBarr'st me my way in Rome?\n\nMUTIUS:\nHelp, Lucius, help!\n\nLUCIUS:\nMy lord, you are unjust, and, more than so,\nIn wrongful quarrel you have slain your son.\n\nTITUS ANDRONICUS:\nNor thou, nor he, are any sons of mine;\nMy sons would never so dishonour me:\nTraitor, restore Lavinia to the emperor.\n\nLUCIUS:\nDead, if you will; but not to be his wife,\nThat is another's lawful promised love.\n\nSATURNINUS:\nNo, Titus, no; the emperor needs her not,\nNor her, nor thee, nor any of thy stock:\nI'll trust, by leisure, him that mocks me once;\nThee never, nor thy traitorous haughty sons,\nConfederates all thus to dishonour me.\nWas there none else in Rome to make a stale,\nBut Saturnine? Full well, Andronicus,\nAgree these deeds with that proud brag of thine,\nThat said'st I begg'd the empire at thy hands.\n\nTITUS ANDRONICUS:\nO monstrous! what reproachful words are these?\n\nSATURNINUS:\nBut go thy ways; go, give that changing piece\nTo him that flourish'd for her with his sword\nA valiant son-in-law thou shalt enjoy;\nOne fit to bandy with thy lawless sons,\nTo ruffle in the commonwealth of Rome.\n\nTITUS ANDRONICUS:\nThese words are razors to my wounded heart.\n\nSATURNINUS:\nAnd therefore, lovely Tamora, queen of Goths,\nThat like the stately Phoebe 'mongst her nymphs\nDost overshine the gallant'st dames of Rome,\nIf thou be pleased with this my sudden choice,\nBehold, I choose thee, Tamora, for my bride,\nAnd will create thee empress of Rome,\nSpeak, Queen of Goths, dost thou applaud my choice?\nAnd here I swear by all the Roman gods,\nSith priest and holy water are so near\nAnd tapers burn so bright and every thing\nIn readiness for Hymenaeus stand,\nI will not re-salute the streets of Rome,\nOr climb my palace, till from forth this place\nI lead espoused my bride along with me.\n\nTAMORA:\nAnd here, in sight of heaven, to Rome I swear,\nIf Saturnine advance the Queen of Goths,\nShe will a handmaid be to his desires,\nA loving nurse, a mother to his youth.\n\nSATURNINUS:\nAscend, fair queen, Pantheon. Lords, accompany\nYour noble emperor and his lovely bride,\nSent by the heavens for Prince Saturnine,\nWhose wisdom hath her fortune conquered:\nThere shall we consummate our spousal rites.\n\nTITUS ANDRONICUS:\nI am not bid to wait upon this bride.\nTitus, when wert thou wont to walk alone,\nDishonour'd thus, and challenged of wrongs?\n\nMARCUS ANDRONICUS:\nO Titus, see, O, see what thou hast done!\nIn a bad quarrel slain a virtuous son.\n\nTITUS ANDRONICUS:\nNo, foolish tribune, no; no son of mine,\nNor thou, nor these, confederates in the deed\nThat hath dishonour'd all our family;\nUnworthy brother, and unworthy sons!\n\nLUCIUS:\nBut let us give him burial, as becomes;\nGive Mutius burial with our brethren.\n\nTITUS ANDRONICUS:\nTraitors, away! he rests not in this tomb:\nThis monument five hundred years hath stood,\nWhich I have sumptuously re-edified:\nHere none but soldiers and Rome's servitors\nRepose in fame; none basely slain in brawls:\nBury him where you can; he comes not here.\n\nMARCUS ANDRONICUS:\nMy lord, this is impiety in you:\nMy nephew Mutius' deeds do plead for him\nHe must be buried with his brethren.\n\nQUINTUS:\nAnd shall, or him we will accompany.\n\nTITUS ANDRONICUS:\n'And shall!' what villain was it that spake\nthat word?\n\nQUINTUS:\nHe that would vouch it in any place but here.\n\nTITUS ANDRONICUS:\nWhat, would you bury him in my despite?\n\nMARCUS ANDRONICUS:\nNo, noble Titus, but entreat of thee\nTo pardon Mutius and to bury him.\n\nTITUS ANDRONICUS:\nMarcus, even thou hast struck upon my crest,\nAnd, with these boys, mine honour thou hast wounded:\nMy foes I do repute you every one;\nSo, trouble me no more, but get you gone.\n\nMARTIUS:\nHe is not with himself; let us withdraw.\n\nQUINTUS:\nNot I, till Mutius' bones be buried.\n\nMARCUS ANDRONICUS:\nBrother, for in that name doth nature plead,--\n\nQUINTUS:\nFather, and in that name doth nature speak,--\n\nTITUS ANDRONICUS:\nSpeak thou no more, if all the rest will speed.\n\nMARCUS ANDRONICUS:\nRenowned Titus, more than half my soul,--\n\nLUCIUS:\nDear father, soul and substance of us all,--\n\nMARCUS ANDRONICUS:\nSuffer thy brother Marcus to inter\nHis noble nephew here in virtue's nest,\nThat died in honour and Lavinia's cause.\nThou art a Roman; be not barbarous:\nThe Greeks upon advice did bury Ajax\nThat slew himself; and wise Laertes' son\nDid graciously plead for his funerals:\nLet not young Mutius, then, that was thy joy\nBe barr'd his entrance here.\n\nTITUS ANDRONICUS:\nRise, Marcus, rise.\nThe dismall'st day is this that e'er I saw,\nTo be dishonour'd by my sons in Rome!\nWell, bury him, and bury me the next.\n\nLUCIUS:\nThere lie thy bones, sweet Mutius, with thy friends,\nTill we with trophies do adorn thy tomb.\n\nAll:\n\nMARCUS ANDRONICUS:\nMy lord, to step out of these dreary dumps,\nHow comes it that the subtle Queen of Goths\nIs of a sudden thus advanced in Rome?\n\nTITUS ANDRONICUS:\nI know not, Marcus; but I know it is,\nWhether by device or no, the heavens can tell:\nIs she not then beholding to the man\nThat brought her for this high good turn so far?\nYes, and will nobly him remunerate.\n\nSATURNINUS:\nSo, Bassianus, you have play'd your prize:\nGod give you joy, sir, of your gallant bride!\n\nBASSIANUS:\nAnd you of yours, my lord! I say no more,\nNor wish no less; and so, I take my leave.\n\nSATURNINUS:\nTraitor, if Rome have law or we have power,\nThou and thy faction shall repent this rape.\n\nBASSIANUS:\nRape, call you it, my lord, to seize my own,\nMy truth-betrothed love and now my wife?\nBut let the laws of Rome determine all;\nMeanwhile I am possess'd of that is mine.\n\nSATURNINUS:\n'Tis good, sir: you are very short with us;\nBut, if we live, we'll be as sharp with you.\n\nBASSIANUS:\nMy lord, what I have done, as best I may,\nAnswer I must and shall do with my life.\nOnly thus much I give your grace to know:\nBy all the duties that I owe to Rome,\nThis noble gentleman, Lord Titus here,\nIs in opinion and in honour wrong'd;\nThat in the rescue of Lavinia\nWith his own hand did slay his youngest son,\nIn zeal to you and highly moved to wrath\nTo be controll'd in that he frankly gave:\nReceive him, then, to favor, Saturnine,\nThat hath express'd himself in all his deeds\nA father and a friend to thee and Rome.\n\nTITUS ANDRONICUS:\nPrince Bassianus, leave to plead my deeds:\n'Tis thou and those that have dishonour'd me.\nRome and the righteous heavens be my judge,\nHow I have loved and honour'd Saturnine!\n\nTAMORA:\nMy worthy lord, if ever Tamora\nWere gracious in those princely eyes of thine,\nThen hear me speak in indifferently for all;\nAnd at my suit, sweet, pardon what is past.\n\nSATURNINUS:\nWhat, madam! be dishonour'd openly,\nAnd basely put it up without revenge?\n\nTAMORA:\nNot so, my lord; the gods of Rome forfend\nI should be author to dishonour you!\nBut on mine honour dare I undertake\nFor good Lord Titus' innocence in all;\nWhose fury not dissembled speaks his griefs:\nThen, at my suit, look graciously on him;\nLose not so noble a friend on vain suppose,\nNor with sour looks afflict his gentle heart.\n\nSATURNINUS:\nRise, Titus, rise; my empress hath prevail'd.\n\nTITUS ANDRONICUS:\nI thank your majesty, and her, my lord:\nThese words, these looks, infuse new life in me.\n\nTAMORA:\nTitus, I am incorporate in Rome,\nA Roman now adopted happily,\nAnd must advise the emperor for his good.\nThis day all quarrels die, Andronicus;\nAnd let it be mine honour, good my lord,\nThat I have reconciled your friends and you.\nFor you, Prince Bassianus, I have pass'd\nMy word and promise to the emperor,\nThat you will be more mild and tractable.\nAnd fear not lords, and you, Lavinia;\nBy my advice, all humbled on your knees,\nYou shall ask pardon of his majesty.\n\nLUCIUS:\nWe do, and vow to heaven and to his highness,\nThat what we did was mildly as we might,\nTendering our sister's honour and our own.\n\nMARCUS ANDRONICUS:\nThat, on mine honour, here I do protest.\n\nSATURNINUS:\nAway, and talk not; trouble us no more.\n\nTAMORA:\nNay, nay, sweet emperor, we must all be friends:\nThe tribune and his nephews kneel for grace;\nI will not be denied: sweet heart, look back.\n\nSATURNINUS:\nMarcus, for thy sake and thy brother's here,\nAnd at my lovely Tamora's entreats,\nI do remit these young men's heinous faults: Stand up.\nLavinia, though you left me like a churl,\nI found a friend, and sure as death I swore\nI would not part a bachelor from the priest.\nCome, if the emperor's court can feast two brides,\nYou are my guest, Lavinia, and your friends.\nThis day shall be a love-day, Tamora.\n\nTITUS ANDRONICUS:\nTo-morrow, an it please your majesty\nTo hunt the panther and the hart with me,\nWith horn and hound we'll give your grace bonjour.\n\nSATURNINUS:\nBe it so, Titus, and gramercy too.\n\nAARON:\nNow climbeth Tamora Olympus' top,\nSafe out of fortune's shot; and sits aloft,\nSecure of thunder's crack or lightning flash;\nAdvanced above pale envy's threatening reach.\nAs when the golden sun salutes the morn,\nAnd, having gilt the ocean with his beams,\nGallops the zodiac in his glistering coach,\nAnd overlooks the highest-peering hills;\nSo Tamora:\nUpon her wit doth earthly honour wait,\nAnd virtue stoops and trembles at her frown.\nThen, Aaron, arm thy heart, and fit thy thoughts,\nTo mount aloft with thy imperial mistress,\nAnd mount her pitch, whom thou in triumph long\nHast prisoner held, fetter'd in amorous chains\nAnd faster bound to Aaron's charming eyes\nThan is Prometheus tied to Caucasus.\nAway with slavish weeds and servile thoughts!\nI will be bright, and shine in pearl and gold,\nTo wait upon this new-made empress.\nTo wait, said I? to wanton with this queen,\nThis goddess, this Semiramis, this nymph,\nThis siren, that will charm Rome's Saturnine,\nAnd see his shipwreck and his commonweal's.\nHolloa! what storm is this?\n\nDEMETRIUS:\nChiron, thy years want wit, thy wit wants edge,\nAnd manners, to intrude where I am graced;\nAnd may, for aught thou know'st, affected be.\n\nCHIRON:\nDemetrius, thou dost over-ween in all;\nAnd so in this, to bear me down with braves.\n'Tis not the difference of a year or two\nMakes me less gracious or thee more fortunate:\nI am as able and as fit as thou\nTo serve, and to deserve my mistress' grace;\nAnd that my sword upon thee shall approve,\nAnd plead my passions for Lavinia's love.\n\nAARON:\n\nDEMETRIUS:\nWhy, boy, although our mother, unadvised,\nGave you a dancing-rapier by your side,\nAre you so desperate grown, to threat your friends?\nGo to; have your lath glued within your sheath\nTill you know better how to handle it.\n\nCHIRON:\nMeanwhile, sir, with the little skill I have,\nFull well shalt thou perceive how much I dare.\n\nDEMETRIUS:\nAy, boy, grow ye so brave?\n\nAARON:\n\nDEMETRIUS:\nNot I, till I have sheathed\nMy rapier in his bosom and withal\nThrust these reproachful speeches down his throat\nThat he hath breathed in my dishonour here.\n\nCHIRON:\nFor that I am prepared and full resolved.\nFoul-spoken coward, that thunder'st with thy tongue,\nAnd with thy weapon nothing darest perform!\n\nAARON:\nAway, I say!\nNow, by the gods that warlike Goths adore,\nThis petty brabble will undo us all.\nWhy, lords, and think you not how dangerous\nIt is to jet upon a prince's right?\nWhat, is Lavinia then become so loose,\nOr Bassianus so degenerate,\nThat for her love such quarrels may be broach'd\nWithout controlment, justice, or revenge?\nYoung lords, beware! and should the empress know\nThis discord's ground, the music would not please.\n\nCHIRON:\nI care not, I, knew she and all the world:\nI love Lavinia more than all the world.\n\nDEMETRIUS:\nYoungling, learn thou to make some meaner choice:\nLavinia is thine elder brother's hope.\n\nAARON:\nWhy, are ye mad? or know ye not, in Rome\nHow furious and impatient they be,\nAnd cannot brook competitors in love?\nI tell you, lords, you do but plot your deaths\nBy this device.\n\nCHIRON:\nAaron, a thousand deaths\nWould I propose to achieve her whom I love.\n\nAARON:\nTo achieve her! how?\n\nDEMETRIUS:\nWhy makest thou it so strange?\nShe is a woman, therefore may be woo'd;\nShe is a woman, therefore may be won;\nShe is Lavinia, therefore must be loved.\nWhat, man! more water glideth by the mill\nThan wots the miller of; and easy it is\nOf a cut loaf to steal a shive, we know:\nThough Bassianus be the emperor's brother.\nBetter than he have worn Vulcan's badge.\n\nAARON:\n\nDEMETRIUS:\nThen why should he despair that knows to court it\nWith words, fair looks and liberality?\nWhat, hast not thou full often struck a doe,\nAnd borne her cleanly by the keeper's nose?\n\nAARON:\nWhy, then, it seems, some certain snatch or so\nWould serve your turns.\n\nCHIRON:\nAy, so the turn were served.\n\nDEMETRIUS:\nAaron, thou hast hit it.\n\nAARON:\nWould you had hit it too!\nThen should not we be tired with this ado.\nWhy, hark ye, hark ye! and are you such fools\nTo square for this? would it offend you, then\nThat both should speed?\n\nCHIRON:\nFaith, not me.\n\nDEMETRIUS:\nNor me, so I were one.\n\nAARON:\nFor shame, be friends, and join for that you jar:\n'Tis policy and stratagem must do\nThat you affect; and so must you resolve,\nThat what you cannot as you would achieve,\nYou must perforce accomplish as you may.\nTake this of me: Lucrece was not more chaste\nThan this Lavinia, Bassianus' love.\nA speedier course than lingering languishment\nMust we pursue, and I have found the path.\nMy lords, a solemn hunting is in hand;\nThere will the lovely Roman ladies troop:\nThe forest walks are wide and spacious;\nAnd many unfrequented plots there are\nFitted by kind for rape and villany:\nSingle you thither then this dainty doe,\nAnd strike her home by force, if not by words:\nThis way, or not at all, stand you in hope.\nCome, come, our empress, with her sacred wit\nTo villany and vengeance consecrate,\nWill we acquaint with all that we intend;\nAnd she shall file our engines with advice,\nThat will not suffer you to square yourselves,\nBut to your wishes' height advance you both.\nThe emperor's court is like the house of Fame,\nThe palace full of tongues, of eyes, and ears:\nThe woods are ruthless, dreadful, deaf, and dull;\nThere speak, and strike, brave boys, and take\nyour turns;\nThere serve your lusts, shadow'd from heaven's eye,\nAnd revel in Lavinia's treasury.\n\nCHIRON:\nThy counsel, lad, smells of no cowardice,\n\nDEMETRIUS:\nSit fas aut nefas, till I find the stream\nTo cool this heat, a charm to calm these fits.\nPer Styga, per manes vehor.\n\nTITUS ANDRONICUS:\nThe hunt is up, the morn is bright and grey,\nThe fields are fragrant and the woods are green:\nUncouple here and let us make a bay\nAnd wake the emperor and his lovely bride\nAnd rouse the prince and ring a hunter's peal,\nThat all the court may echo with the noise.\nSons, let it be your charge, as it is ours,\nTo attend the emperor's person carefully:\nI have been troubled in my sleep this night,\nBut dawning day new comfort hath inspired.\nMany good morrows to your majesty;\nMadam, to you as many and as good:\nI promised your grace a hunter's peal.\n\nSATURNINUS:\nAnd you have rung it lustily, my lord;\nSomewhat too early for new-married ladies.\n\nBASSIANUS:\nLavinia, how say you?\n\nLAVINIA:\nI say, no;\nI have been broad awake two hours and more.\n\nSATURNINUS:\nCome on, then; horse and chariots let us have,\nAnd to our sport.\nMadam, now shall ye see\nOur Roman hunting.\n\nMARCUS ANDRONICUS:\nI have dogs, my lord,\nWill rouse the proudest panther in the chase,\nAnd climb the highest promontory top.\n\nTITUS ANDRONICUS:\nAnd I have horse will follow where the game\nMakes way, and run like swallows o'er the plain.\n\nDEMETRIUS:\nChiron, we hunt not, we, with horse nor hound,\nBut hope to pluck a dainty doe to ground.\n\nAARON:\nHe that had wit would think that I had none,\nTo bury so much gold under a tree,\nAnd never after to inherit it.\nLet him that thinks of me so abjectly\nKnow that this gold must coin a stratagem,\nWhich, cunningly effected, will beget\nA very excellent piece of villany:\nAnd so repose, sweet gold, for their unrest\nThat have their alms out of the empress' chest.\n\nTAMORA:\nMy lovely Aaron, wherefore look'st thou sad,\nWhen every thing doth make a gleeful boast?\nThe birds chant melody on every bush,\nThe snake lies rolled in the cheerful sun,\nThe green leaves quiver with the cooling wind\nAnd make a chequer'd shadow on the ground:\nUnder their sweet shade, Aaron, let us sit,\nAnd, whilst the babbling echo mocks the hounds,\nReplying shrilly to the well-tuned horns,\nAs if a double hunt were heard at once,\nLet us sit down and mark their yelping noise;\nAnd, after conflict such as was supposed\nThe wandering prince and Dido once enjoy'd,\nWhen with a happy storm they were surprised\nAnd curtain'd with a counsel-keeping cave,\nWe may, each wreathed in the other's arms,\nOur pastimes done, possess a golden slumber;\nWhiles hounds and horns and sweet melodious birds\nBe unto us as is a nurse's song\nOf lullaby to bring her babe asleep.\n\nAARON:\nMadam, though Venus govern your desires,\nSaturn is dominator over mine:\nWhat signifies my deadly-standing eye,\nMy silence and my cloudy melancholy,\nMy fleece of woolly hair that now uncurls\nEven as an adder when she doth unroll\nTo do some fatal execution?\nNo, madam, these are no venereal signs:\nVengeance is in my heart, death in my hand,\nBlood and revenge are hammering in my head.\nHark Tamora, the empress of my soul,\nWhich never hopes more heaven than rests in thee,\nThis is the day of doom for Bassianus:\nHis Philomel must lose her tongue to-day,\nThy sons make pillage of her chastity\nAnd wash their hands in Bassianus' blood.\nSeest thou this letter? take it up, I pray thee,\nAnd give the king this fatal plotted scroll.\nNow question me no more; we are espied;\nHere comes a parcel of our hopeful booty,\nWhich dreads not yet their lives' destruction.\n\nTAMORA:\nAh, my sweet Moor, sweeter to me than life!\n\nAARON:\nNo more, great empress; Bassianus comes:\nBe cross with him; and I'll go fetch thy sons\nTo back thy quarrels, whatsoe'er they be.\n\nBASSIANUS:\nWho have we here? Rome's royal empress,\nUnfurnish'd of her well-beseeming troop?\nOr is it Dian, habited like her,\nWho hath abandoned her holy groves\nTo see the general hunting in this forest?\n\nTAMORA:\nSaucy controller of our private steps!\nHad I the power that some say Dian had,\nThy temples should be planted presently\nWith horns, as was Actaeon's; and the hounds\nShould drive upon thy new-transformed limbs,\nUnmannerly intruder as thou art!\n\nLAVINIA:\nUnder your patience, gentle empress,\n'Tis thought you have a goodly gift in horning;\nAnd to be doubted that your Moor and you\nAre singled forth to try experiments:\nJove shield your husband from his hounds to-day!\n'Tis pity they should take him for a stag.\n\nBASSIANUS:\nBelieve me, queen, your swarth Cimmerian\nDoth make your honour of his body's hue,\nSpotted, detested, and abominable.\nWhy are you sequester'd from all your train,\nDismounted from your snow-white goodly steed.\nAnd wander'd hither to an obscure plot,\nAccompanied but with a barbarous Moor,\nIf foul desire had not conducted you?\n\nLAVINIA:\nAnd, being intercepted in your sport,\nGreat reason that my noble lord be rated\nFor sauciness. I pray you, let us hence,\nAnd let her joy her raven-colour'd love;\nThis valley fits the purpose passing well.\n\nBASSIANUS:\nThe king my brother shall have note of this.\n\nLAVINIA:\nAy, for these slips have made him noted long:\nGood king, to be so mightily abused!\n\nTAMORA:\nWhy have I patience to endure all this?\n\nDEMETRIUS:\nHow now, dear sovereign, and our gracious mother!\nWhy doth your highness look so pale and wan?\n\nTAMORA:\nHave I not reason, think you, to look pale?\nThese two have 'ticed me hither to this place:\nA barren detested vale, you see it is;\nThe trees, though summer, yet forlorn and lean,\nO'ercome with moss and baleful mistletoe:\nHere never shines the sun; here nothing breeds,\nUnless the nightly owl or fatal raven:\nAnd when they show'd me this abhorred pit,\nThey told me, here, at dead time of the night,\nA thousand fiends, a thousand hissing snakes,\nTen thousand swelling toads, as many urchins,\nWould make such fearful and confused cries\nAs any mortal body hearing it\nShould straight fall mad, or else die suddenly.\nNo sooner had they told this hellish tale,\nBut straight they told me they would bind me here\nUnto the body of a dismal yew,\nAnd leave me to this miserable death:\nAnd then they call'd me foul adulteress,\nLascivious Goth, and all the bitterest terms\nThat ever ear did hear to such effect:\nAnd, had you not by wondrous fortune come,\nThis vengeance on me had they executed.\nRevenge it, as you love your mother's life,\nOr be ye not henceforth call'd my children.\n\nDEMETRIUS:\nThis is a witness that I am thy son.\n\nCHIRON:\nAnd this for me, struck home to show my strength.\n\nLAVINIA:\nAy, come, Semiramis, nay, barbarous Tamora,\nFor no name fits thy nature but thy own!\n\nTAMORA:\nGive me thy poniard; you shall know, my boys\nYour mother's hand shall right your mother's wrong.\n\nDEMETRIUS:\nStay, madam; here is more belongs to her;\nFirst thrash the corn, then after burn the straw:\nThis minion stood upon her chastity,\nUpon her nuptial vow, her loyalty,\nAnd with that painted hope braves your mightiness:\nAnd shall she carry this unto her grave?\n\nCHIRON:\nAn if she do, I would I were an eunuch.\nDrag hence her husband to some secret hole,\nAnd make his dead trunk pillow to our lust.\n\nTAMORA:\nBut when ye have the honey ye desire,\nLet not this wasp outlive, us both to sting.\n\nCHIRON:\nI warrant you, madam, we will make that sure.\nCome, mistress, now perforce we will enjoy\nThat nice-preserved honesty of yours.\n\nLAVINIA:\nO Tamora! thou bear'st a woman's face,--\n\nTAMORA:\nI will not hear her speak; away with her!\n\nLAVINIA:\nSweet lords, entreat her hear me but a word.\n\nDEMETRIUS:\nListen, fair madam: let it be your glory\nTo see her tears; but be your heart to them\nAs unrelenting flint to drops of rain.\n\nLAVINIA:\nWhen did the tiger's young ones teach the dam?\nO, do not learn her wrath; she taught it thee;\nThe milk thou suck'dst from her did turn to marble;\nEven at thy teat thou hadst thy tyranny.\nYet every mother breeds not sons alike:\nDo thou entreat her show a woman pity.\n\nCHIRON:\nWhat, wouldst thou have me prove myself a bastard?\n\nLAVINIA:\n'Tis true; the raven doth not hatch a lark:\nYet have I heard,--O, could I find it now!--\nThe lion moved with pity did endure\nTo have his princely paws pared all away:\nSome say that ravens foster forlorn children,\nThe whilst their own birds famish in their nests:\nO, be to me, though thy hard heart say no,\nNothing so kind, but something pitiful!\n\nTAMORA:\nI know not what it means; away with her!\n\nLAVINIA:\nO, let me teach thee! for my father's sake,\nThat gave thee life, when well he might have\nslain thee,\nBe not obdurate, open thy deaf ears.\n\nTAMORA:\nHadst thou in person ne'er offended me,\nEven for his sake am I pitiless.\nRemember, boys, I pour'd forth tears in vain,\nTo save your brother from the sacrifice;\nBut fierce Andronicus would not relent;\nTherefore, away with her, and use her as you will,\nThe worse to her, the better loved of me.\n\nLAVINIA:\nO Tamora, be call'd a gentle queen,\nAnd with thine own hands kill me in this place!\nFor 'tis not life that I have begg'd so long;\nPoor I was slain when Bassianus died.\n\nTAMORA:\nWhat begg'st thou, then? fond woman, let me go.\n\nLAVINIA:\n'Tis present death I beg; and one thing more\nThat womanhood denies my tongue to tell:\nO, keep me from their worse than killing lust,\nAnd tumble me into some loathsome pit,\nWhere never man's eye may behold my body:\nDo this, and be a charitable murderer.\n\nTAMORA:\nSo should I rob my sweet sons of their fee:\nNo, let them satisfy their lust on thee.\n\nDEMETRIUS:\nAway! for thou hast stay'd us here too long.\n\nLAVINIA:\nNo grace? no womanhood? Ah, beastly creature!\nThe blot and enemy to our general name!\nConfusion fall--\n\nCHIRON:\nNay, then I'll stop your mouth. Bring thou her husband:\nThis is the hole where Aaron bid us hide him.\n\nTAMORA:\nFarewell, my sons: see that you make her sure.\nNe'er let my heart know merry cheer indeed,\nTill all the Andronici be made away.\nNow will I hence to seek my lovely Moor,\nAnd let my spleenful sons this trull deflow'r.\n\nAARON:\nCome on, my lords, the better foot before:\nStraight will I bring you to the loathsome pit\nWhere I espied the panther fast asleep.\n\nQUINTUS:\nMy sight is very dull, whate'er it bodes.\n\nMARTIUS:\nAnd mine, I promise you; were't not for shame,\nWell could I leave our sport to sleep awhile.\n\nQUINTUS:\nWhat art thou fall'n? What subtle hole is this,\nWhose mouth is cover'd with rude-growing briers,\nUpon whose leaves are drops of new-shed blood\nAs fresh as morning dew distill'd on flowers?\nA very fatal place it seems to me.\nSpeak, brother, hast thou hurt thee with the fall?\n\nMARTIUS:\nO brother, with the dismall'st object hurt\nThat ever eye with sight made heart lament!\n\nAARON:\n\nMARTIUS:\nWhy dost not comfort me, and help me out\nFrom this unhallowed and blood-stained hole?\n\nQUINTUS:\nI am surprised with an uncouth fear;\nA chilling sweat o'er-runs my trembling joints:\nMy heart suspects more than mine eye can see.\n\nMARTIUS:\nTo prove thou hast a true-divining heart,\nAaron and thou look down into this den,\nAnd see a fearful sight of blood and death.\n\nQUINTUS:\nAaron is gone; and my compassionate heart\nWill not permit mine eyes once to behold\nThe thing whereat it trembles by surmise;\nO, tell me how it is; for ne'er till now\nWas I a child to fear I know not what.\n\nMARTIUS:\nLord Bassianus lies embrewed here,\nAll on a heap, like to a slaughter'd lamb,\nIn this detested, dark, blood-drinking pit.\n\nQUINTUS:\nIf it be dark, how dost thou know 'tis he?\n\nMARTIUS:\nUpon his bloody finger he doth wear\nA precious ring, that lightens all the hole,\nWhich, like a taper in some monument,\nDoth shine upon the dead man's earthy cheeks,\nAnd shows the ragged entrails of the pit:\nSo pale did shine the moon on Pyramus\nWhen he by night lay bathed in maiden blood.\nO brother, help me with thy fainting hand--\nIf fear hath made thee faint, as me it hath--\nOut of this fell devouring receptacle,\nAs hateful as Cocytus' misty mouth.\n\nQUINTUS:\nReach me thy hand, that I may help thee out;\nOr, wanting strength to do thee so much good,\nI may be pluck'd into the swallowing womb\nOf this deep pit, poor Bassianus' grave.\nI have no strength to pluck thee to the brink.\n\nMARTIUS:\nNor I no strength to climb without thy help.\n\nQUINTUS:\nThy hand once more; I will not loose again,\nTill thou art here aloft, or I below:\nThou canst not come to me: I come to thee.\n\nSATURNINUS:\nAlong with me: I'll see what hole is here,\nAnd what he is that now is leap'd into it.\nSay who art thou that lately didst descend\nInto this gaping hollow of the earth?\n\nMARTIUS:\nThe unhappy son of old Andronicus:\nBrought hither in a most unlucky hour,\nTo find thy brother Bassianus dead.\n\nSATURNINUS:\nMy brother dead! I know thou dost but jest:\nHe and his lady both are at the lodge\nUpon the north side of this pleasant chase;\n'Tis not an hour since I left him there.\n\nMARTIUS:\nWe know not where you left him all alive;\nBut, out, alas! here have we found him dead.\n\nTAMORA:\nWhere is my lord the king?\n\nSATURNINUS:\nHere, Tamora, though grieved with killing grief.\n\nTAMORA:\nWhere is thy brother Bassianus?\n\nSATURNINUS:\nNow to the bottom dost thou search my wound:\nPoor Bassianus here lies murdered.\n\nTAMORA:\nThen all too late I bring this fatal writ,\nThe complot of this timeless tragedy;\nAnd wonder greatly that man's face can fold\nIn pleasing smiles such murderous tyranny.\n\nSATURNINUS:\n\nAARON:\nMy gracious lord, here is the bag of gold.\n\nSATURNINUS:\n\nTAMORA:\nWhat, are they in this pit? O wondrous thing!\nHow easily murder is discovered!\n\nTITUS ANDRONICUS:\nHigh emperor, upon my feeble knee\nI beg this boon, with tears not lightly shed,\nThat this fell fault of my accursed sons,\nAccursed if the fault be proved in them,--\n\nSATURNINUS:\nIf it be proved! you see it is apparent.\nWho found this letter? Tamora, was it you?\n\nTAMORA:\nAndronicus himself did take it up.\n\nTITUS ANDRONICUS:\nI did, my lord: yet let me be their bail;\nFor, by my father's reverend tomb, I vow\nThey shall be ready at your highness' will\nTo answer their suspicion with their lives.\n\nSATURNINUS:\nThou shalt not bail them: see thou follow me.\nSome bring the murder'd body, some the murderers:\nLet them not speak a word; the guilt is plain;\nFor, by my soul, were there worse end than death,\nThat end upon them should be executed.\n\nTAMORA:\nAndronicus, I will entreat the king;\nFear not thy sons; they shall do well enough.\n\nTITUS ANDRONICUS:\nCome, Lucius, come; stay not to talk with them.\n\nDEMETRIUS:\nSo, now go tell, an if thy tongue can speak,\nWho 'twas that cut thy tongue and ravish'd thee.\n\nCHIRON:\nWrite down thy mind, bewray thy meaning so,\nAn if thy stumps will let thee play the scribe.\n\nDEMETRIUS:\nSee, how with signs and tokens she can scrowl.\n\nCHIRON:\nGo home, call for sweet water, wash thy hands.\n\nDEMETRIUS:\nShe hath no tongue to call, nor hands to wash;\nAnd so let's leave her to her silent walks.\n\nCHIRON:\nAn 'twere my case, I should go hang myself.\n\nDEMETRIUS:\nIf thou hadst hands to help thee knit the cord.\n\nMARCUS:\nWho is this? my niece, that flies away so fast!\nCousin, a word; where is your husband?\nIf I do dream, would all my wealth would wake me!\nIf I do wake, some planet strike me down,\nThat I may slumber in eternal sleep!\nSpeak, gentle niece, what stern ungentle hands\nHave lopp'd and hew'd and made thy body bare\nOf her two branches, those sweet ornaments,\nWhose circling shadows kings have sought to sleep in,\nAnd might not gain so great a happiness\nAs have thy love? Why dost not speak to me?\nAlas, a crimson river of warm blood,\nLike to a bubbling fountain stirr'd with wind,\nDoth rise and fall between thy rosed lips,\nComing and going with thy honey breath.\nBut, sure, some Tereus hath deflowered thee,\nAnd, lest thou shouldst detect him, cut thy tongue.\nAh, now thou turn'st away thy face for shame!\nAnd, notwithstanding all this loss of blood,\nAs from a conduit with three issuing spouts,\nYet do thy cheeks look red as Titan's face\nBlushing to be encountered with a cloud.\nShall I speak for thee? shall I say 'tis so?\nO, that I knew thy heart; and knew the beast,\nThat I might rail at him, to ease my mind!\nSorrow concealed, like an oven stopp'd,\nDoth burn the heart to cinders where it is.\nFair Philomela, she but lost her tongue,\nAnd in a tedious sampler sew'd her mind:\nBut, lovely niece, that mean is cut from thee;\nA craftier Tereus, cousin, hast thou met,\nAnd he hath cut those pretty fingers off,\nThat could have better sew'd than Philomel.\nO, had the monster seen those lily hands\nTremble, like aspen-leaves, upon a lute,\nAnd make the silken strings delight to kiss them,\nHe would not then have touch'd them for his life!\nOr, had he heard the heavenly harmony\nWhich that sweet tongue hath made,\nHe would have dropp'd his knife, and fell asleep\nAs Cerberus at the Thracian poet's feet.\nCome, let us go, and make thy father blind;\nFor such a sight will blind a father's eye:\nOne hour's storm will drown the fragrant meads;\nWhat will whole months of tears thy father's eyes?\nDo not draw back, for we will mourn with thee\nO, could our mourning ease thy misery!\n\nTITUS ANDRONICUS:\nHear me, grave fathers! noble tribunes, stay!\nFor pity of mine age, whose youth was spent\nIn dangerous wars, whilst you securely slept;\nFor all my blood in Rome's great quarrel shed;\nFor all the frosty nights that I have watch'd;\nAnd for these bitter tears, which now you see\nFilling the aged wrinkles in my cheeks;\nBe pitiful to my condemned sons,\nWhose souls are not corrupted as 'tis thought.\nFor two and twenty sons I never wept,\nBecause they died in honour's lofty bed.\nFor these, these, tribunes, in the dust I write\nMy heart's deep languor and my soul's sad tears:\nLet my tears stanch the earth's dry appetite;\nMy sons' sweet blood will make it shame and blush.\nO earth, I will befriend thee more with rain,\nThat shall distil from these two ancient urns,\nThan youthful April shall with all his showers:\nIn summer's drought I'll drop upon thee still;\nIn winter with warm tears I'll melt the snow\nAnd keep eternal spring-time on thy face,\nSo thou refuse to drink my dear sons' blood.\nO reverend tribunes! O gentle, aged men!\nUnbind my sons, reverse the doom of death;\nAnd let me say, that never wept before,\nMy tears are now prevailing orators.\n\nLUCIUS:\nO noble father, you lament in vain:\nThe tribunes hear you not; no man is by;\nAnd you recount your sorrows to a stone.\n\nTITUS ANDRONICUS:\nAh, Lucius, for thy brothers let me plead.\nGrave tribunes, once more I entreat of you,--\n\nLUCIUS:\nMy gracious lord, no tribune hears you speak.\n\nTITUS ANDRONICUS:\nWhy, tis no matter, man; if they did hear,\nThey would not mark me, or if they did mark,\nThey would not pity me, yet plead I must;\nAnd bootless unto them.\nTherefore I tell my sorrows to the stones;\nWho, though they cannot answer my distress,\nYet in some sort they are better than the tribunes,\nFor that they will not intercept my tale:\nWhen I do weep, they humbly at my feet\nReceive my tears and seem to weep with me;\nAnd, were they but attired in grave weeds,\nRome could afford no tribune like to these.\nA stone is soft as wax,--tribunes more hard than stones;\nA stone is silent, and offendeth not,\nAnd tribunes with their tongues doom men to death.\nBut wherefore stand'st thou with thy weapon drawn?\n\nLUCIUS:\nTo rescue my two brothers from their death:\nFor which attempt the judges have pronounced\nMy everlasting doom of banishment.\n\nTITUS ANDRONICUS:\nO happy man! they have befriended thee.\nWhy, foolish Lucius, dost thou not perceive\nThat Rome is but a wilderness of tigers?\nTigers must prey, and Rome affords no prey\nBut me and mine: how happy art thou, then,\nFrom these devourers to be banished!\nBut who comes with our brother Marcus here?\n\nMARCUS ANDRONICUS:\nTitus, prepare thy aged eyes to weep;\nOr, if not so, thy noble heart to break:\nI bring consuming sorrow to thine age.\n\nTITUS ANDRONICUS:\nWill it consume me? let me see it, then.\n\nMARCUS ANDRONICUS:\nThis was thy daughter.\n\nTITUS ANDRONICUS:\nWhy, Marcus, so she is.\n\nLUCIUS:\nAy me, this object kills me!\n\nTITUS ANDRONICUS:\nFaint-hearted boy, arise, and look upon her.\nSpeak, Lavinia, what accursed hand\nHath made thee handless in thy father's sight?\nWhat fool hath added water to the sea,\nOr brought a faggot to bright-burning Troy?\nMy grief was at the height before thou camest,\nAnd now like Nilus, it disdaineth bounds.\nGive me a sword, I'll chop off my hands too;\nFor they have fought for Rome, and all in vain;\nAnd they have nursed this woe, in feeding life;\nIn bootless prayer have they been held up,\nAnd they have served me to effectless use:\nNow all the service I require of them\nIs that the one will help to cut the other.\n'Tis well, Lavinia, that thou hast no hands;\nFor hands, to do Rome service, are but vain.\n\nLUCIUS:\nSpeak, gentle sister, who hath martyr'd thee?\n\nMARCUS ANDRONICUS:\nO, that delightful engine of her thoughts\nThat blabb'd them with such pleasing eloquence,\nIs torn from forth that pretty hollow cage,\nWhere, like a sweet melodious bird, it sung\nSweet varied notes, enchanting every ear!\n\nLUCIUS:\nO, say thou for her, who hath done this deed?\n\nMARCUS ANDRONICUS:\nO, thus I found her, straying in the park,\nSeeking to hide herself, as doth the deer\nThat hath received some unrecuring wound.\n\nTITUS ANDRONICUS:\nIt was my deer; and he that wounded her\nHath hurt me more than had he killed me dead:\nFor now I stand as one upon a rock\nEnvironed with a wilderness of sea,\nWho marks the waxing tide grow wave by wave,\nExpecting ever when some envious surge\nWill in his brinish bowels swallow him.\nThis way to death my wretched sons are gone;\nHere stands my other son, a banished man,\nAnd here my brother, weeping at my woes.\nBut that which gives my soul the greatest spurn,\nIs dear Lavinia, dearer than my soul.\nHad I but seen thy picture in this plight,\nIt would have madded me: what shall I do\nNow I behold thy lively body so?\nThou hast no hands, to wipe away thy tears:\nNor tongue, to tell me who hath martyr'd thee:\nThy husband he is dead: and for his death\nThy brothers are condemn'd, and dead by this.\nLook, Marcus! ah, son Lucius, look on her!\nWhen I did name her brothers, then fresh tears\nStood on her cheeks, as doth the honey-dew\nUpon a gather'd lily almost wither'd.\n\nMARCUS ANDRONICUS:\nPerchance she weeps because they kill'd her husband;\nPerchance because she knows them innocent.\n\nTITUS ANDRONICUS:\nIf they did kill thy husband, then be joyful\nBecause the law hath ta'en revenge on them.\nNo, no, they would not do so foul a deed;\nWitness the sorrow that their sister makes.\nGentle Lavinia, let me kiss thy lips.\nOr make some sign how I may do thee ease:\nShall thy good uncle, and thy brother Lucius,\nAnd thou, and I, sit round about some fountain,\nLooking all downwards to behold our cheeks\nHow they are stain'd, as meadows, yet not dry,\nWith miry slime left on them by a flood?\nAnd in the fountain shall we gaze so long\nTill the fresh taste be taken from that clearness,\nAnd made a brine-pit with our bitter tears?\nOr shall we cut away our hands, like thine?\nOr shall we bite our tongues, and in dumb shows\nPass the remainder of our hateful days?\nWhat shall we do? let us, that have our tongues,\nPlot some deuce of further misery,\nTo make us wonder'd at in time to come.\n\nLUCIUS:\nSweet father, cease your tears; for, at your grief,\nSee how my wretched sister sobs and weeps.\n\nMARCUS ANDRONICUS:\nPatience, dear niece. Good Titus, dry thine eyes.\n\nTITUS ANDRONICUS:\nAh, Marcus, Marcus! brother, well I wot\nThy napkin cannot drink a tear of mine,\nFor thou, poor man, hast drown'd it with thine own.\n\nLUCIUS:\nAh, my Lavinia, I will wipe thy cheeks.\n\nTITUS ANDRONICUS:\nMark, Marcus, mark! I understand her signs:\nHad she a tongue to speak, now would she say\nThat to her brother which I said to thee:\nHis napkin, with his true tears all bewet,\nCan do no service on her sorrowful cheeks.\nO, what a sympathy of woe is this,\nAs far from help as Limbo is from bliss!\n\nAARON:\nTitus Andronicus, my lord the emperor\nSends thee this word,--that, if thou love thy sons,\nLet Marcus, Lucius, or thyself, old Titus,\nOr any one of you, chop off your hand,\nAnd send it to the king: he for the same\nWill send thee hither both thy sons alive;\nAnd that shall be the ransom for their fault.\n\nTITUS ANDRONICUS:\nO gracious emperor! O gentle Aaron!\nDid ever raven sing so like a lark,\nThat gives sweet tidings of the sun's uprise?\nWith all my heart, I'll send the emperor My hand:\nGood Aaron, wilt thou help to chop it off?\n\nLUCIUS:\nStay, father! for that noble hand of thine,\nThat hath thrown down so many enemies,\nShall not be sent: my hand will serve the turn:\nMy youth can better spare my blood than you;\nAnd therefore mine shall save my brothers' lives.\n\nMARCUS ANDRONICUS:\nWhich of your hands hath not defended Rome,\nAnd rear'd aloft the bloody battle-axe,\nWriting destruction on the enemy's castle?\nO, none of both but are of high desert:\nMy hand hath been but idle; let it serve\nTo ransom my two nephews from their death;\nThen have I kept it to a worthy end.\n\nAARON:\nNay, come, agree whose hand shall go along,\nFor fear they die before their pardon come.\n\nMARCUS ANDRONICUS:\nMy hand shall go.\n\nLUCIUS:\nBy heaven, it shall not go!\n\nTITUS ANDRONICUS:\nSirs, strive no more: such wither'd herbs as these\nAre meet for plucking up, and therefore mine.\n\nLUCIUS:\nSweet father, if I shall be thought thy son,\nLet me redeem my brothers both from death.\n\nMARCUS ANDRONICUS:\nAnd, for our father's sake and mother's care,\nNow let me show a brother's love to thee.\n\nTITUS ANDRONICUS:\nAgree between you; I will spare my hand.\n\nLUCIUS:\nThen I'll go fetch an axe.\n\nMARCUS ANDRONICUS:\nBut I will use the axe.\n\nTITUS ANDRONICUS:\nCome hither, Aaron; I'll deceive them both:\nLend me thy hand, and I will give thee mine.\n\nAARON:\n\nTITUS ANDRONICUS:\nNow stay your strife: what shall be is dispatch'd.\nGood Aaron, give his majesty my hand:\nTell him it was a hand that warded him\nFrom thousand dangers; bid him bury it\nMore hath it merited; that let it have.\nAs for my sons, say I account of them\nAs jewels purchased at an easy price;\nAnd yet dear too, because I bought mine own.\n\nAARON:\nI go, Andronicus: and for thy hand\nLook by and by to have thy sons with thee.\nTheir heads, I mean. O, how this villany\nDoth fat me with the very thoughts of it!\nLet fools do good, and fair men call for grace.\nAaron will have his soul black like his face.\n\nTITUS ANDRONICUS:\nO, here I lift this one hand up to heaven,\nAnd bow this feeble ruin to the earth:\nIf any power pities wretched tears,\nTo that I call!\nWhat, wilt thou kneel with me?\nDo, then, dear heart; for heaven shall hear our prayers;\nOr with our sighs we'll breathe the welkin dim,\nAnd stain the sun with fog, as sometime clouds\nWhen they do hug him in their melting bosoms.\n\nMARCUS ANDRONICUS:\nO brother, speak with possibilities,\nAnd do not break into these deep extremes.\n\nTITUS ANDRONICUS:\nIs not my sorrow deep, having no bottom?\nThen be my passions bottomless with them.\n\nMARCUS ANDRONICUS:\nBut yet let reason govern thy lament.\n\nTITUS ANDRONICUS:\nIf there were reason for these miseries,\nThen into limits could I bind my woes:\nWhen heaven doth weep, doth not the earth o'erflow?\nIf the winds rage, doth not the sea wax mad,\nThreatening the welkin with his big-swoln face?\nAnd wilt thou have a reason for this coil?\nI am the sea; hark, how her sighs do blow!\nShe is the weeping welkin, I the earth:\nThen must my sea be moved with her sighs;\nThen must my earth with her continual tears\nBecome a deluge, overflow'd and drown'd;\nFor why my bowels cannot hide her woes,\nBut like a drunkard must I vomit them.\nThen give me leave, for losers will have leave\nTo ease their stomachs with their bitter tongues.\n\nMessenger:\nWorthy Andronicus, ill art thou repaid\nFor that good hand thou sent'st the emperor.\nHere are the heads of thy two noble sons;\nAnd here's thy hand, in scorn to thee sent back;\nThy griefs their sports, thy resolution mock'd;\nThat woe is me to think upon thy woes\nMore than remembrance of my father's death.\n\nMARCUS ANDRONICUS:\nNow let hot AEtna cool in Sicily,\nAnd be my heart an ever-burning hell!\nThese miseries are more than may be borne.\nTo weep with them that weep doth ease some deal;\nBut sorrow flouted at is double death.\n\nLUCIUS:\nAh, that this sight should make so deep a wound,\nAnd yet detested life not shrink thereat!\nThat ever death should let life bear his name,\nWhere life hath no more interest but to breathe!\n\nMARCUS ANDRONICUS:\nAlas, poor heart, that kiss is comfortless\nAs frozen water to a starved snake.\n\nTITUS ANDRONICUS:\nWhen will this fearful slumber have an end?\n\nMARCUS ANDRONICUS:\nNow, farewell, flattery: die, Andronicus;\nThou dost not slumber: see, thy two sons' heads,\nThy warlike hand, thy mangled daughter here:\nThy other banish'd son, with this dear sight\nStruck pale and bloodless; and thy brother, I,\nEven like a stony image, cold and numb.\nAh, now no more will I control thy griefs:\nRend off thy silver hair, thy other hand\nGnawing with thy teeth; and be this dismal sight\nThe closing up of our most wretched eyes;\nNow is a time to storm; why art thou still?\n\nTITUS ANDRONICUS:\nHa, ha, ha!\n\nMARCUS ANDRONICUS:\nWhy dost thou laugh? it fits not with this hour.\n\nTITUS ANDRONICUS:\nWhy, I have not another tear to shed:\nBesides, this sorrow is an enemy,\nAnd would usurp upon my watery eyes\nAnd make them blind with tributary tears:\nThen which way shall I find Revenge's cave?\nFor these two heads do seem to speak to me,\nAnd threat me I shall never come to bliss\nTill all these mischiefs be return'd again\nEven in their throats that have committed them.\nCome, let me see what task I have to do.\nYou heavy people, circle me about,\nThat I may turn me to each one of you,\nAnd swear unto my soul to right your wrongs.\nThe vow is made. Come, brother, take a head;\nAnd in this hand the other I will bear.\nLavinia, thou shalt be employ'd: these arms!\nBear thou my hand, sweet wench, between thy teeth.\nAs for thee, boy, go get thee from my sight;\nThou art an exile, and thou must not stay:\nHie to the Goths, and raise an army there:\nAnd, if you love me, as I think you do,\nLet's kiss and part, for we have much to do.\n\nLUCIUS:\nFarewell Andronicus, my noble father,\nThe wofull'st man that ever lived in Rome:\nFarewell, proud Rome; till Lucius come again,\nHe leaves his pledges dearer than his life:\nFarewell, Lavinia, my noble sister;\nO, would thou wert as thou tofore hast been!\nBut now nor Lucius nor Lavinia lives\nBut in oblivion and hateful griefs.\nIf Lucius live, he will requite your wrongs;\nAnd make proud Saturnine and his empress\nBeg at the gates, like Tarquin and his queen.\nNow will I to the Goths, and raise a power,\nTo be revenged on Rome and Saturnine.\n\nTITUS ANDRONICUS:\nSo, so; now sit: and look you eat no more\nThan will preserve just so much strength in us\nAs will revenge these bitter woes of ours.\nMarcus, unknit that sorrow-wreathen knot:\nThy niece and I, poor creatures, want our hands,\nAnd cannot passionate our tenfold grief\nWith folded arms. This poor right hand of mine\nIs left to tyrannize upon my breast;\nWho, when my heart, all mad with misery,\nBeats in this hollow prison of my flesh,\nThen thus I thump it down.\nThou map of woe, that thus dost talk in signs!\nWhen thy poor heart beats with outrageous beating,\nThou canst not strike it thus to make it still.\nWound it with sighing, girl, kill it with groans;\nOr get some little knife between thy teeth,\nAnd just against thy heart make thou a hole;\nThat all the tears that thy poor eyes let fall\nMay run into that sink, and soaking in\nDrown the lamenting fool in sea-salt tears.\n\nMARCUS ANDRONICUS:\nFie, brother, fie! teach her not thus to lay\nSuch violent hands upon her tender life.\n\nTITUS ANDRONICUS:\nHow now! has sorrow made thee dote already?\nWhy, Marcus, no man should be mad but I.\nWhat violent hands can she lay on her life?\nAh, wherefore dost thou urge the name of hands;\nTo bid AEneas tell the tale twice o'er,\nHow Troy was burnt and he made miserable?\nO, handle not the theme, to talk of hands,\nLest we remember still that we have none.\nFie, fie, how franticly I square my talk,\nAs if we should forget we had no hands,\nIf Marcus did not name the word of hands!\nCome, let's fall to; and, gentle girl, eat this:\nHere is no drink! Hark, Marcus, what she says;\nI can interpret all her martyr'd signs;\nShe says she drinks no other drink but tears,\nBrew'd with her sorrow, mesh'd upon her cheeks:\nSpeechless complainer, I will learn thy thought;\nIn thy dumb action will I be as perfect\nAs begging hermits in their holy prayers:\nThou shalt not sigh, nor hold thy stumps to heaven,\nNor wink, nor nod, nor kneel, nor make a sign,\nBut I of these will wrest an alphabet\nAnd by still practise learn to know thy meaning.\n\nYoung LUCIUS:\nGood grandsire, leave these bitter deep laments:\nMake my aunt merry with some pleasing tale.\n\nMARCUS ANDRONICUS:\nAlas, the tender boy, in passion moved,\nDoth weep to see his grandsire's heaviness.\n\nTITUS ANDRONICUS:\nPeace, tender sapling; thou art made of tears,\nAnd tears will quickly melt thy life away.\nWhat dost thou strike at, Marcus, with thy knife?\n\nMARCUS ANDRONICUS:\nAt that that I have kill'd, my lord; a fly.\n\nTITUS ANDRONICUS:\nOut on thee, murderer! thou kill'st my heart;\nMine eyes are cloy'd with view of tyranny:\nA deed of death done on the innocent\nBecomes not Titus' brother: get thee gone:\nI see thou art not for my company.\n\nMARCUS ANDRONICUS:\nAlas, my lord, I have but kill'd a fly.\n\nTITUS ANDRONICUS:\nBut how, if that fly had a father and mother?\nHow would he hang his slender gilded wings,\nAnd buzz lamenting doings in the air!\nPoor harmless fly,\nThat, with his pretty buzzing melody,\nCame here to make us merry! and thou hast\nkill'd him.\n\nMARCUS ANDRONICUS:\nPardon me, sir; it was a black ill-favor'd fly,\nLike to the empress' Moor; therefore I kill'd him.\n\nTITUS ANDRONICUS:\nO, O, O,\nThen pardon me for reprehending thee,\nFor thou hast done a charitable deed.\nGive me thy knife, I will insult on him;\nFlattering myself, as if it were the Moor\nCome hither purposely to poison me.--\nThere's for thyself, and that's for Tamora.\nAh, sirrah!\nYet, I think, we are not brought so low,\nBut that between us we can kill a fly\nThat comes in likeness of a coal-black Moor.\n\nMARCUS ANDRONICUS:\nAlas, poor man! grief has so wrought on him,\nHe takes false shadows for true substances.\n\nTITUS ANDRONICUS:\nCome, take away. Lavinia, go with me:\nI'll to thy closet; and go read with thee\nSad stories chanced in the times of old.\nCome, boy, and go with me: thy sight is young,\nAnd thou shalt read when mine begin to dazzle.\n\nYoung LUCIUS:\nHelp, grandsire, help! my aunt Lavinia\nFollows me every where, I know not why:\nGood uncle Marcus, see how swift she comes.\nAlas, sweet aunt, I know not what you mean.\n\nMARCUS ANDRONICUS:\nStand by me, Lucius; do not fear thine aunt.\n\nTITUS ANDRONICUS:\nShe loves thee, boy, too well to do thee harm.\n\nYoung LUCIUS:\nAy, when my father was in Rome she did.\n\nMARCUS ANDRONICUS:\nWhat means my niece Lavinia by these signs?\n\nTITUS ANDRONICUS:\nFear her not, Lucius: somewhat doth she mean:\nSee, Lucius, see how much she makes of thee:\nSomewhither would she have thee go with her.\nAh, boy, Cornelia never with more care\nRead to her sons than she hath read to thee\nSweet poetry and Tully's Orator.\n\nMARCUS ANDRONICUS:\nCanst thou not guess wherefore she plies thee thus?\n\nYoung LUCIUS:\nMy lord, I know not, I, nor can I guess,\nUnless some fit or frenzy do possess her:\nFor I have heard my grandsire say full oft,\nExtremity of griefs would make men mad;\nAnd I have read that Hecuba of Troy\nRan mad through sorrow: that made me to fear;\nAlthough, my lord, I know my noble aunt\nLoves me as dear as e'er my mother did,\nAnd would not, but in fury, fright my youth:\nWhich made me down to throw my books, and fly--\nCauseless, perhaps. But pardon me, sweet aunt:\nAnd, madam, if my uncle Marcus go,\nI will most willingly attend your ladyship.\n\nMARCUS ANDRONICUS:\nLucius, I will.\n\nTITUS ANDRONICUS:\nHow now, Lavinia! Marcus, what means this?\nSome book there is that she desires to see.\nWhich is it, girl, of these? Open them, boy.\nBut thou art deeper read, and better skill'd\nCome, and take choice of all my library,\nAnd so beguile thy sorrow, till the heavens\nReveal the damn'd contriver of this deed.\nWhy lifts she up her arms in sequence thus?\n\nMARCUS ANDRONICUS:\nI think she means that there was more than one\nConfederate in the fact: ay, more there was;\nOr else to heaven she heaves them for revenge.\n\nTITUS ANDRONICUS:\nLucius, what book is that she tosseth so?\n\nYoung LUCIUS:\nGrandsire, 'tis Ovid's Metamorphoses;\nMy mother gave it me.\n\nMARCUS ANDRONICUS:\nFor love of her that's gone,\nPerhaps she cull'd it from among the rest.\n\nTITUS ANDRONICUS:\nSoft! see how busily she turns the leaves!\nWhat would she find? Lavinia, shall I read?\nThis is the tragic tale of Philomel,\nAnd treats of Tereus' treason and his rape:\nAnd rape, I fear, was root of thine annoy.\n\nMARCUS ANDRONICUS:\nSee, brother, see; note how she quotes the leaves.\n\nTITUS ANDRONICUS:\nLavinia, wert thou thus surprised, sweet girl,\nRavish'd and wrong'd, as Philomela was,\nForced in the ruthless, vast, and gloomy woods? See, see!\nAy, such a place there is, where we did hunt--\nO, had we never, never hunted there!--\nPattern'd by that the poet here describes,\nBy nature made for murders and for rapes.\n\nMARCUS ANDRONICUS:\nO, why should nature build so foul a den,\nUnless the gods delight in tragedies?\n\nTITUS ANDRONICUS:\nGive signs, sweet girl, for here are none\nbut friends,\nWhat Roman lord it was durst do the deed:\nOr slunk not Saturnine, as Tarquin erst,\nThat left the camp to sin in Lucrece' bed?\n\nMARCUS ANDRONICUS:\nSit down, sweet niece: brother, sit down by me.\nApollo, Pallas, Jove, or Mercury,\nInspire me, that I may this treason find!\nMy lord, look here: look here, Lavinia:\nThis sandy plot is plain; guide, if thou canst\nThis after me, when I have writ my name\nWithout the help of any hand at all.\nCursed be that heart that forced us to this shift!\nWrite thou good niece; and here display, at last,\nWhat God will have discover'd for revenge;\nHeaven guide thy pen to print thy sorrows plain,\nThat we may know the traitors and the truth!\n\nTITUS ANDRONICUS:\nO, do ye read, my lord, what she hath writ?\n'Stuprum. Chiron. Demetrius.'\n\nMARCUS ANDRONICUS:\nWhat, what! the lustful sons of Tamora\nPerformers of this heinous, bloody deed?\n\nTITUS ANDRONICUS:\nMagni Dominator poli,\nTam lentus audis scelera? tam lentus vides?\n\nMARCUS ANDRONICUS:\nO, calm thee, gentle lord; although I know\nThere is enough written upon this earth\nTo stir a mutiny in the mildest thoughts\nAnd arm the minds of infants to exclaims.\nMy lord, kneel down with me; Lavinia, kneel;\nAnd kneel, sweet boy, the Roman Hector's hope;\nAnd swear with me, as, with the woful fere\nAnd father of that chaste dishonour'd dame,\nLord Junius Brutus sware for Lucrece' rape,\nThat we will prosecute by good advice\nMortal revenge upon these traitorous Goths,\nAnd see their blood, or die with this reproach.\n\nTITUS ANDRONICUS:\n'Tis sure enough, an you knew how.\nBut if you hunt these bear-whelps, then beware:\nThe dam will wake; and, if she wind you once,\nShe's with the lion deeply still in league,\nAnd lulls him whilst she playeth on her back,\nAnd when he sleeps will she do what she list.\nYou are a young huntsman, Marcus; let it alone;\nAnd, come, I will go get a leaf of brass,\nAnd with a gad of steel will write these words,\nAnd lay it by: the angry northern wind\nWill blow these sands, like Sibyl's leaves, abroad,\nAnd where's your lesson, then? Boy, what say you?\n\nYoung LUCIUS:\nI say, my lord, that if I were a man,\nTheir mother's bed-chamber should not be safe\nFor these bad bondmen to the yoke of Rome.\n\nMARCUS ANDRONICUS:\nAy, that's my boy! thy father hath full oft\nFor his ungrateful country done the like.\n\nYoung LUCIUS:\nAnd, uncle, so will I, an if I live.\n\nTITUS ANDRONICUS:\nCome, go with me into mine armoury;\nLucius, I'll fit thee; and withal, my boy,\nShalt carry from me to the empress' sons\nPresents that I intend to send them both:\nCome, come; thou'lt do thy message, wilt thou not?\n\nYoung LUCIUS:\nAy, with my dagger in their bosoms, grandsire.\n\nTITUS ANDRONICUS:\nNo, boy, not so; I'll teach thee another course.\nLavinia, come. Marcus, look to my house:\nLucius and I'll go brave it at the court:\nAy, marry, will we, sir; and we'll be waited on.\n\nMARCUS ANDRONICUS:\nO heavens, can you hear a good man groan,\nAnd not relent, or not compassion him?\nMarcus, attend him in his ecstasy,\nThat hath more scars of sorrow in his heart\nThan foemen's marks upon his batter'd shield;\nBut yet so just that he will not revenge.\nRevenge, ye heavens, for old Andronicus!\n\nCHIRON:\nDemetrius, here's the son of Lucius;\nHe hath some message to deliver us.\n\nAARON:\nAy, some mad message from his mad grandfather.\n\nYoung LUCIUS:\nMy lords, with all the humbleness I may,\nI greet your honours from Andronicus.\nAnd pray the Roman gods confound you both!\n\nDEMETRIUS:\nGramercy, lovely Lucius: what's the news?\n\nYoung LUCIUS:\n\nDEMETRIUS:\nWhat's here? A scroll; and written round about?\nLet's see;\n'Integer vitae, scelerisque purus,\nNon eget Mauri jaculis, nec arcu.'\n\nCHIRON:\nO, 'tis a verse in Horace; I know it well:\nI read it in the grammar long ago.\n\nAARON:\nAy, just; a verse in Horace; right, you have it.\nNow, what a thing it is to be an ass!\nHere's no sound jest! the old man hath found their guilt;\nAnd sends them weapons wrapped about with lines,\nThat wound, beyond their feeling, to the quick.\nBut were our witty empress well afoot,\nShe would applaud Andronicus' conceit:\nBut let her rest in her unrest awhile.\nAnd now, young lords, was't not a happy star\nLed us to Rome, strangers, and more than so,\nCaptives, to be advanced to this height?\nIt did me good, before the palace gate\nTo brave the tribune in his brother's hearing.\n\nDEMETRIUS:\nBut me more good, to see so great a lord\nBasely insinuate and send us gifts.\n\nAARON:\nHad he not reason, Lord Demetrius?\nDid you not use his daughter very friendly?\n\nDEMETRIUS:\nI would we had a thousand Roman dames\nAt such a bay, by turn to serve our lust.\n\nCHIRON:\nA charitable wish and full of love.\n\nAARON:\nHere lacks but your mother for to say amen.\n\nCHIRON:\nAnd that would she for twenty thousand more.\n\nDEMETRIUS:\nCome, let us go; and pray to all the gods\nFor our beloved mother in her pains.\n\nAARON:\n\nDEMETRIUS:\nWhy do the emperor's trumpets flourish thus?\n\nCHIRON:\nBelike, for joy the emperor hath a son.\n\nDEMETRIUS:\nSoft! who comes here?\n\nNurse:\nGood morrow, lords:\nO, tell me, did you see Aaron the Moor?\n\nAARON:\nWell, more or less, or ne'er a whit at all,\nHere Aaron is; and what with Aaron now?\n\nNurse:\nO gentle Aaron, we are all undone!\nNow help, or woe betide thee evermore!\n\nAARON:\nWhy, what a caterwauling dost thou keep!\nWhat dost thou wrap and fumble in thine arms?\n\nNurse:\nO, that which I would hide from heaven's eye,\nOur empress' shame, and stately Rome's disgrace!\nShe is deliver'd, lords; she is deliver'd.\n\nAARON:\nTo whom?\n\nNurse:\nI mean, she is brought a-bed.\n\nAARON:\nWell, God give her good rest! What hath he sent her?\n\nNurse:\nA devil.\n\nAARON:\nWhy, then she is the devil's dam; a joyful issue.\n\nNurse:\nA joyless, dismal, black, and sorrowful issue:\nHere is the babe, as loathsome as a toad\nAmongst the fairest breeders of our clime:\nThe empress sends it thee, thy stamp, thy seal,\nAnd bids thee christen it with thy dagger's point.\n\nAARON:\n'Zounds, ye whore! is black so base a hue?\nSweet blowse, you are a beauteous blossom, sure.\n\nDEMETRIUS:\nVillain, what hast thou done?\n\nAARON:\nThat which thou canst not undo.\n\nCHIRON:\nThou hast undone our mother.\n\nAARON:\nVillain, I have done thy mother.\n\nDEMETRIUS:\nAnd therein, hellish dog, thou hast undone.\nWoe to her chance, and damn'd her loathed choice!\nAccursed the offspring of so foul a fiend!\n\nCHIRON:\nIt shall not live.\n\nAARON:\nIt shall not die.\n\nNurse:\nAaron, it must; the mother wills it so.\n\nAARON:\nWhat, must it, nurse? then let no man but I\nDo execution on my flesh and blood.\n\nDEMETRIUS:\nI'll broach the tadpole on my rapier's point:\nNurse, give it me; my sword shall soon dispatch it.\n\nAARON:\nSooner this sword shall plough thy bowels up.\nStay, murderous villains! will you kill your brother?\nNow, by the burning tapers of the sky,\nThat shone so brightly when this boy was got,\nHe dies upon my scimitar's sharp point\nThat touches this my first-born son and heir!\nI tell you, younglings, not Enceladus,\nWith all his threatening band of Typhon's brood,\nNor great Alcides, nor the god of war,\nShall seize this prey out of his father's hands.\nWhat, what, ye sanguine, shallow-hearted boys!\nYe white-limed walls! ye alehouse painted signs!\nCoal-black is better than another hue,\nIn that it scorns to bear another hue;\nFor all the water in the ocean\nCan never turn the swan's black legs to white,\nAlthough she lave them hourly in the flood.\nTell the empress from me, I am of age\nTo keep mine own, excuse it how she can.\n\nDEMETRIUS:\nWilt thou betray thy noble mistress thus?\n\nAARON:\nMy mistress is my mistress; this myself,\nThe vigour and the picture of my youth:\nThis before all the world do I prefer;\nThis maugre all the world will I keep safe,\nOr some of you shall smoke for it in Rome.\n\nDEMETRIUS:\nBy this our mother is forever shamed.\n\nCHIRON:\nRome will despise her for this foul escape.\n\nNurse:\nThe emperor, in his rage, will doom her death.\n\nCHIRON:\nI blush to think upon this ignomy.\n\nAARON:\nWhy, there's the privilege your beauty bears:\nFie, treacherous hue, that will betray with blushing\nThe close enacts and counsels of the heart!\nHere's a young lad framed of another leer:\nLook, how the black slave smiles upon the father,\nAs who should say 'Old lad, I am thine own.'\nHe is your brother, lords, sensibly fed\nOf that self-blood that first gave life to you,\nAnd from that womb where you imprison'd were\nHe is enfranchised and come to light:\nNay, he is your brother by the surer side,\nAlthough my seal be stamped in his face.\n\nNurse:\nAaron, what shall I say unto the empress?\n\nDEMETRIUS:\nAdvise thee, Aaron, what is to be done,\nAnd we will all subscribe to thy advice:\nSave thou the child, so we may all be safe.\n\nAARON:\nThen sit we down, and let us all consult.\nMy son and I will have the wind of you:\nKeep there: now talk at pleasure of your safety.\n\nDEMETRIUS:\nHow many women saw this child of his?\n\nAARON:\nWhy, so, brave lords! when we join in league,\nI am a lamb: but if you brave the Moor,\nThe chafed boar, the mountain lioness,\nThe ocean swells not so as Aaron storms.\nBut say, again; how many saw the child?\n\nNurse:\nCornelia the midwife and myself;\nAnd no one else but the deliver'd empress.\n\nAARON:\nThe empress, the midwife, and yourself:\nTwo may keep counsel when the third's away:\nGo to the empress, tell her this I said.\nWeke, weke! so cries a pig prepared to the spit.\n\nDEMETRIUS:\nWhat mean'st thou, Aaron? wherefore didst thou this?\n\nAARON:\nO Lord, sir, 'tis a deed of policy:\nShall she live to betray this guilt of ours,\nA long-tongued babbling gossip? no, lords, no:\nAnd now be it known to you my full intent.\nNot far, one Muli lives, my countryman;\nHis wife but yesternight was brought to bed;\nHis child is like to her, fair as you are:\nGo pack with him, and give the mother gold,\nAnd tell them both the circumstance of all;\nAnd how by this their child shall be advanced,\nAnd be received for the emperor's heir,\nAnd substituted in the place of mine,\nTo calm this tempest whirling in the court;\nAnd let the emperor dandle him for his own.\nHark ye, lords; ye see I have given her physic,\nAnd you must needs bestow her funeral;\nThe fields are near, and you are gallant grooms:\nThis done, see that you take no longer days,\nBut send the midwife presently to me.\nThe midwife and the nurse well made away,\nThen let the ladies tattle what they please.\n\nCHIRON:\nAaron, I see thou wilt not trust the air\nWith secrets.\n\nDEMETRIUS:\nFor this care of Tamora,\nHerself and hers are highly bound to thee.\n\nAARON:\nNow to the Goths, as swift as swallow flies;\nThere to dispose this treasure in mine arms,\nAnd secretly to greet the empress' friends.\nCome on, you thick lipp'd slave, I'll bear you hence;\nFor it is you that puts us to our shifts:\nI'll make you feed on berries and on roots,\nAnd feed on curds and whey, and suck the goat,\nAnd cabin in a cave, and bring you up\nTo be a warrior, and command a camp.\n\nTITUS ANDRONICUS:\nCome, Marcus; come, kinsmen; this is the way.\nSir boy, now let me see your archery;\nLook ye draw home enough, and 'tis there straight.\nTerras Astraea reliquit:\nBe you remember'd, Marcus, she's gone, she's fled.\nSirs, take you to your tools. You, cousins, shall\nGo sound the ocean, and cast your nets;\nHappily you may catch her in the sea;\nYet there's as little justice as at land:\nNo; Publius and Sempronius, you must do it;\n'Tis you must dig with mattock and with spade,\nAnd pierce the inmost centre of the earth:\nThen, when you come to Pluto's region,\nI pray you, deliver him this petition;\nTell him, it is for justice and for aid,\nAnd that it comes from old Andronicus,\nShaken with sorrows in ungrateful Rome.\nAh, Rome! Well, well; I made thee miserable\nWhat time I threw the people's suffrages\nOn him that thus doth tyrannize o'er me.\nGo, get you gone; and pray be careful all,\nAnd leave you not a man-of-war unsearch'd:\nThis wicked emperor may have shipp'd her hence;\nAnd, kinsmen, then we may go pipe for justice.\n\nMARCUS ANDRONICUS:\nO Publius, is not this a heavy case,\nTo see thy noble uncle thus distract?\n\nPUBLIUS:\nTherefore, my lord, it highly us concerns\nBy day and night to attend him carefully,\nAnd feed his humour kindly as we may,\nTill time beget some careful remedy.\n\nMARCUS ANDRONICUS:\nKinsmen, his sorrows are past remedy.\nJoin with the Goths; and with revengeful war\nTake wreak on Rome for this ingratitude,\nAnd vengeance on the traitor Saturnine.\n\nTITUS ANDRONICUS:\nPublius, how now! how now, my masters!\nWhat, have you met with her?\n\nPUBLIUS:\nNo, my good lord; but Pluto sends you word,\nIf you will have Revenge from hell, you shall:\nMarry, for Justice, she is so employ'd,\nHe thinks, with Jove in heaven, or somewhere else,\nSo that perforce you must needs stay a time.\n\nTITUS ANDRONICUS:\nHe doth me wrong to feed me with delays.\nI'll dive into the burning lake below,\nAnd pull her out of Acheron by the heels.\nMarcus, we are but shrubs, no cedars we\nNo big-boned men framed of the Cyclops' size;\nBut metal, Marcus, steel to the very back,\nYet wrung with wrongs more than our backs can bear:\nAnd, sith there's no justice in earth nor hell,\nWe will solicit heaven and move the gods\nTo send down Justice for to wreak our wrongs.\nCome, to this gear. You are a good archer, Marcus;\n'Ad Jovem,' that's for you: here, 'Ad Apollinem:'\n'Ad Martem,' that's for myself:\nHere, boy, to Pallas: here, to Mercury:\nTo Saturn, Caius, not to Saturnine;\nYou were as good to shoot against the wind.\nTo it, boy! Marcus, loose when I bid.\nOf my word, I have written to effect;\nThere's not a god left unsolicited.\n\nMARCUS ANDRONICUS:\nKinsmen, shoot all your shafts into the court:\nWe will afflict the emperor in his pride.\n\nTITUS ANDRONICUS:\nNow, masters, draw.\nO, well said, Lucius!\nGood boy, in Virgo's lap; give it Pallas.\n\nMARCUS ANDRONICUS:\nMy lord, I aim a mile beyond the moon;\nYour letter is with Jupiter by this.\n\nTITUS ANDRONICUS:\nHa, ha!\nPublius, Publius, what hast thou done?\nSee, see, thou hast shot off one of Taurus' horns.\n\nMARCUS ANDRONICUS:\nThis was the sport, my lord: when Publius shot,\nThe Bull, being gall'd, gave Aries such a knock\nThat down fell both the Ram's horns in the court;\nAnd who should find them but the empress' villain?\nShe laugh'd, and told the Moor he should not choose\nBut give them to his master for a present.\n\nTITUS ANDRONICUS:\nWhy, there it goes: God give his lordship joy!\nNews, news from heaven! Marcus, the post is come.\nSirrah, what tidings? have you any letters?\nShall I have justice? what says Jupiter?\n\nClown:\nO, the gibbet-maker! he says that he hath taken\nthem down again, for the man must not be hanged till\nthe next week.\n\nTITUS ANDRONICUS:\nBut what says Jupiter, I ask thee?\n\nClown:\nAlas, sir, I know not Jupiter; I never drank with him\nin all my life.\n\nTITUS ANDRONICUS:\nWhy, villain, art not thou the carrier?\n\nClown:\nAy, of my pigeons, sir; nothing else.\n\nTITUS ANDRONICUS:\nWhy, didst thou not come from heaven?\n\nClown:\nFrom heaven! alas, sir, I never came there     God\nforbid I should be so bold to press to heaven in my\nyoung days. Why, I am going with my pigeons to the\ntribunal plebs, to take up a matter of brawl\nbetwixt my uncle and one of the emperial's men.\n\nMARCUS ANDRONICUS:\nWhy, sir, that is as fit as can be to serve for\nyour oration; and let him deliver the pigeons to\nthe emperor from you.\n\nTITUS ANDRONICUS:\nTell me, can you deliver an oration to the emperor\nwith a grace?\n\nClown:\nNay, truly, sir, I could never say grace in all my life.\n\nTITUS ANDRONICUS:\nSirrah, come hither: make no more ado,\nBut give your pigeons to the emperor:\nBy me thou shalt have justice at his hands.\nHold, hold; meanwhile here's money for thy charges.\nGive me pen and ink. Sirrah, can you with a grace\ndeliver a supplication?\n\nClown:\nAy, sir.\n\nTITUS ANDRONICUS:\nThen here is a supplication for you. And when you\ncome to him, at the first approach you must kneel,\nthen kiss his foot, then deliver up your pigeons, and\nthen look for your reward. I'll be at hand, sir; see\nyou do it bravely.\n\nClown:\nI warrant you, sir, let me alone.\n\nTITUS ANDRONICUS:\nSirrah, hast thou a knife? come, let me see it.\nHere, Marcus, fold it in the oration;\nFor thou hast made it like an humble suppliant.\nAnd when thou hast given it the emperor,\nKnock at my door, and tell me what he says.\n\nClown:\nGod be with you, sir; I will.\n\nTITUS ANDRONICUS:\nCome, Marcus, let us go. Publius, follow me.\n\nSATURNINUS:\nWhy, lords, what wrongs are these! was ever seen\nAn emperor in Rome thus overborne,\nTroubled, confronted thus; and, for the extent\nOf egal justice, used in such contempt?\nMy lords, you know, as know the mightful gods,\nHowever these disturbers of our peace\nBuz in the people's ears, there nought hath pass'd,\nBut even with law, against the willful sons\nOf old Andronicus. And what an if\nHis sorrows have so overwhelm'd his wits,\nShall we be thus afflicted in his wreaks,\nHis fits, his frenzy, and his bitterness?\nAnd now he writes to heaven for his redress:\nSee, here's to Jove, and this to Mercury;\nThis to Apollo; this to the god of war;\nSweet scrolls to fly about the streets of Rome!\nWhat's this but libelling against the senate,\nAnd blazoning our injustice every where?\nA goodly humour, is it not, my lords?\nAs who would say, in Rome no justice were.\nBut if I live, his feigned ecstasies\nShall be no shelter to these outrages:\nBut he and his shall know that justice lives\nIn Saturninus' health, whom, if she sleep,\nHe'll so awake as she in fury shall\nCut off the proud'st conspirator that lives.\n\nTAMORA:\nMy gracious lord, my lovely Saturnine,\nLord of my life, commander of my thoughts,\nCalm thee, and bear the faults of Titus' age,\nThe effects of sorrow for his valiant sons,\nWhose loss hath pierced him deep and scarr'd his heart;\nAnd rather comfort his distressed plight\nThan prosecute the meanest or the best\nFor these contempts.\nWhy, thus it shall become\nHigh-witted Tamora to gloze with all:\nBut, Titus, I have touched thee to the quick,\nThy life-blood out: if Aaron now be wise,\nThen is all safe, the anchor's in the port.\nHow now, good fellow! wouldst thou speak with us?\n\nClown:\nYea, forsooth, an your mistership be emperial.\n\nTAMORA:\nEmpress I am, but yonder sits the emperor.\n\nClown:\n'Tis he. God and Saint Stephen give you good den:\nI have brought you a letter and a couple of pigeons here.\n\nSATURNINUS:\nGo, take him away, and hang him presently.\n\nClown:\nHow much money must I have?\n\nTAMORA:\nCome, sirrah, you must be hanged.\n\nClown:\nHanged! by'r lady, then I have brought up a neck to\na fair end.\n\nSATURNINUS:\nDespiteful and intolerable wrongs!\nShall I endure this monstrous villany?\nI know from whence this same device proceeds:\nMay this be borne?--as if his traitorous sons,\nThat died by law for murder of our brother,\nHave by my means been butcher'd wrongfully!\nGo, drag the villain hither by the hair;\nNor age nor honour shall shape privilege:\nFor this proud mock I'll be thy slaughterman;\nSly frantic wretch, that holp'st to make me great,\nIn hope thyself should govern Rome and me.\nWhat news with thee, AEmilius?\n\nAEMILIUS:\nArm, arm, my lord;--Rome never had more cause.\nThe Goths have gather'd head; and with a power\nhigh-resolved men, bent to the spoil,\nThey hither march amain, under conduct\nOf Lucius, son to old Andronicus;\nWho threats, in course of this revenge, to do\nAs much as ever Coriolanus did.\n\nSATURNINUS:\nIs warlike Lucius general of the Goths?\nThese tidings nip me, and I hang the head\nAs flowers with frost or grass beat down with storms:\nAy, now begin our sorrows to approach:\n'Tis he the common people love so much;\nMyself hath often over-heard them say,\nWhen I have walked like a private man,\nThat Lucius' banishment was wrongfully,\nAnd they have wish'd that Lucius were their emperor.\n\nTAMORA:\nWhy should you fear? is not your city strong?\n\nSATURNINUS:\nAy, but the citizens favor Lucius,\nAnd will revolt from me to succor him.\n\nTAMORA:\nKing, be thy thoughts imperious, like thy name.\nIs the sun dimm'd, that gnats do fly in it?\nThe eagle suffers little birds to sing,\nAnd is not careful what they mean thereby,\nKnowing that with the shadow of his wings\nHe can at pleasure stint their melody:\nEven so mayst thou the giddy men of Rome.\nThen cheer thy spirit : for know, thou emperor,\nI will enchant the old Andronicus\nWith words more sweet, and yet more dangerous,\nThan baits to fish, or honey-stalks to sheep,\nWhen as the one is wounded with the bait,\nThe other rotted with delicious feed.\n\nSATURNINUS:\nBut he will not entreat his son for us.\n\nTAMORA:\nIf Tamora entreat him, then he will:\nFor I can smooth and fill his aged ear\nWith golden promises; that, were his heart\nAlmost impregnable, his old ears deaf,\nYet should both ear and heart obey my tongue.\nGo thou before, be our ambassador:\nSay that the emperor requests a parley\nOf warlike Lucius, and appoint the meeting\nEven at his father's house, the old Andronicus.\n\nSATURNINUS:\nAEmilius, do this message honourably:\nAnd if he stand on hostage for his safety,\nBid him demand what pledge will please him best.\n\nAEMILIUS:\nYour bidding shall I do effectually.\n\nTAMORA:\nNow will I to that old Andronicus;\nAnd temper him with all the art I have,\nTo pluck proud Lucius from the warlike Goths.\nAnd now, sweet emperor, be blithe again,\nAnd bury all thy fear in my devices.\n\nSATURNINUS:\nThen go successantly, and plead to him.\n\nLUCIUS:\nApproved warriors, and my faithful friends,\nI have received letters from great Rome,\nWhich signify what hate they bear their emperor\nAnd how desirous of our sight they are.\nTherefore, great lords, be, as your titles witness,\nImperious and impatient of your wrongs,\nAnd wherein Rome hath done you any scath,\nLet him make treble satisfaction.\n\nFirst Goth:\nBrave slip, sprung from the great Andronicus,\nWhose name was once our terror, now our comfort;\nWhose high exploits and honourable deeds\nIngrateful Rome requites with foul contempt,\nBe bold in us: we'll follow where thou lead'st,\nLike stinging bees in hottest summer's day\nLed by their master to the flowered fields,\nAnd be avenged on cursed Tamora.\n\nAll the Goths:\nAnd as he saith, so say we all with him.\n\nLUCIUS:\nI humbly thank him, and I thank you all.\nBut who comes here, led by a lusty Goth?\n\nSecond Goth:\nRenowned Lucius, from our troops I stray'd\nTo gaze upon a ruinous monastery;\nAnd, as I earnestly did fix mine eye\nUpon the wasted building, suddenly\nI heard a child cry underneath a wall.\nI made unto the noise; when soon I heard\nThe crying babe controll'd with this discourse:\n'Peace, tawny slave, half me and half thy dam!\nDid not thy hue bewray whose brat thou art,\nHad nature lent thee but thy mother's look,\nVillain, thou mightst have been an emperor:\nBut where the bull and cow are both milk-white,\nThey never do beget a coal-black calf.\nPeace, villain, peace!'--even thus he rates\nthe babe,--\n'For I must bear thee to a trusty Goth;\nWho, when he knows thou art the empress' babe,\nWill hold thee dearly for thy mother's sake.'\nWith this, my weapon drawn, I rush'd upon him,\nSurprised him suddenly, and brought him hither,\nTo use as you think needful of the man.\n\nLUCIUS:\nO worthy Goth, this is the incarnate devil\nThat robb'd Andronicus of his good hand;\nThis is the pearl that pleased your empress' eye,\nAnd here's the base fruit of his burning lust.\nSay, wall-eyed slave, whither wouldst thou convey\nThis growing image of thy fiend-like face?\nWhy dost not speak? what, deaf? not a word?\nA halter, soldiers! hang him on this tree.\nAnd by his side his fruit of bastardy.\n\nAARON:\nTouch not the boy; he is of royal blood.\n\nLUCIUS:\nToo like the sire for ever being good.\nFirst hang the child, that he may see it sprawl;\nA sight to vex the father's soul withal.\nGet me a ladder.\n\nAARON:\nLucius, save the child,\nAnd bear it from me to the empress.\nIf thou do this, I'll show thee wondrous things,\nThat highly may advantage thee to hear:\nIf thou wilt not, befall what may befall,\nI'll speak no more but 'Vengeance rot you all!'\n\nLUCIUS:\nSay on: an if it please me which thou speak'st\nThy child shall live, and I will see it nourish'd.\n\nAARON:\nAn if it please thee! why, assure thee, Lucius,\n'Twill vex thy soul to hear what I shall speak;\nFor I must talk of murders, rapes and massacres,\nActs of black night, abominable deeds,\nComplots of mischief, treason, villanies\nRuthful to hear, yet piteously perform'd:\nAnd this shall all be buried by my death,\nUnless thou swear to me my child shall live.\n\nLUCIUS:\nTell on thy mind; I say thy child shall live.\n\nAARON:\nSwear that he shall, and then I will begin.\n\nLUCIUS:\nWho should I swear by? thou believest no god:\nThat granted, how canst thou believe an oath?\n\nAARON:\nWhat if I do not? as, indeed, I do not;\nYet, for I know thou art religious\nAnd hast a thing within thee called conscience,\nWith twenty popish tricks and ceremonies,\nWhich I have seen thee careful to observe,\nTherefore I urge thy oath; for that I know\nAn idiot holds his bauble for a god\nAnd keeps the oath which by that god he swears,\nTo that I'll urge him: therefore thou shalt vow\nBy that same god, what god soe'er it be,\nThat thou adorest and hast in reverence,\nTo save my boy, to nourish and bring him up;\nOr else I will discover nought to thee.\n\nLUCIUS:\nEven by my god I swear to thee I will.\n\nAARON:\nFirst know thou, I begot him on the empress.\n\nLUCIUS:\nO most insatiate and luxurious woman!\n\nAARON:\nTut, Lucius, this was but a deed of charity\nTo that which thou shalt hear of me anon.\n'Twas her two sons that murder'd Bassianus;\nThey cut thy sister's tongue and ravish'd her\nAnd cut her hands and trimm'd her as thou saw'st.\n\nLUCIUS:\nO detestable villain! call'st thou that trimming?\n\nAARON:\nWhy, she was wash'd and cut and trimm'd, and 'twas\nTrim sport for them that had the doing of it.\n\nLUCIUS:\nO barbarous, beastly villains, like thyself!\n\nAARON:\nIndeed, I was their tutor to instruct them:\nThat codding spirit had they from their mother,\nAs sure a card as ever won the set;\nThat bloody mind, I think, they learn'd of me,\nAs true a dog as ever fought at head.\nWell, let my deeds be witness of my worth.\nI train'd thy brethren to that guileful hole\nWhere the dead corpse of Bassianus lay:\nI wrote the letter that thy father found\nAnd hid the gold within the letter mention'd,\nConfederate with the queen and her two sons:\nAnd what not done, that thou hast cause to rue,\nWherein I had no stroke of mischief in it?\nI play'd the cheater for thy father's hand,\nAnd, when I had it, drew myself apart\nAnd almost broke my heart with extreme laughter:\nI pry'd me through the crevice of a wall\nWhen, for his hand, he had his two sons' heads;\nBeheld his tears, and laugh'd so heartily,\nThat both mine eyes were rainy like to his :\nAnd when I told the empress of this sport,\nShe swooned almost at my pleasing tale,\nAnd for my tidings gave me twenty kisses.\n\nFirst Goth:\nWhat, canst thou say all this, and never blush?\n\nAARON:\nAy, like a black dog, as the saying is.\n\nLUCIUS:\nArt thou not sorry for these heinous deeds?\n\nAARON:\nAy, that I had not done a thousand more.\nEven now I curse the day--and yet, I think,\nFew come within the compass of my curse,--\nWherein I did not some notorious ill,\nAs kill a man, or else devise his death,\nRavish a maid, or plot the way to do it,\nAccuse some innocent and forswear myself,\nSet deadly enmity between two friends,\nMake poor men's cattle break their necks;\nSet fire on barns and hay-stacks in the night,\nAnd bid the owners quench them with their tears.\nOft have I digg'd up dead men from their graves,\nAnd set them upright at their dear friends' doors,\nEven when their sorrows almost were forgot;\nAnd on their skins, as on the bark of trees,\nHave with my knife carved in Roman letters,\n'Let not your sorrow die, though I am dead.'\nTut, I have done a thousand dreadful things\nAs willingly as one would kill a fly,\nAnd nothing grieves me heartily indeed\nBut that I cannot do ten thousand more.\n\nLUCIUS:\nBring down the devil; for he must not die\nSo sweet a death as hanging presently.\n\nAARON:\nIf there be devils, would I were a devil,\nTo live and burn in everlasting fire,\nSo I might have your company in hell,\nBut to torment you with my bitter tongue!\n\nLUCIUS:\nSirs, stop his mouth, and let him speak no more.\n\nThird Goth:\nMy lord, there is a messenger from Rome\nDesires to be admitted to your presence.\n\nLUCIUS:\nLet him come near.\nWelcome, AEmilius what's the news from Rome?\n\nAEMILIUS:\nLord Lucius, and you princes of the Goths,\nThe Roman emperor greets you all by me;\nAnd, for he understands you are in arms,\nHe craves a parley at your father's house,\nWilling you to demand your hostages,\nAnd they shall be immediately deliver'd.\n\nFirst Goth:\nWhat says our general?\n\nLUCIUS:\nAEmilius, let the emperor give his pledges\nUnto my father and my uncle Marcus,\nAnd we will come. March away.\n\nTAMORA:\nThus, in this strange and sad habiliment,\nI will encounter with Andronicus,\nAnd say I am Revenge, sent from below\nTo join with him and right his heinous wrongs.\nKnock at his study, where, they say, he keeps,\nTo ruminate strange plots of dire revenge;\nTell him Revenge is come to join with him,\nAnd work confusion on his enemies.\n\nTITUS ANDRONICUS:\nWho doth molest my contemplation?\nIs it your trick to make me ope the door,\nThat so my sad decrees may fly away,\nAnd all my study be to no effect?\nYou are deceived: for what I mean to do\nSee here in bloody lines I have set down;\nAnd what is written shall be executed.\n\nTAMORA:\nTitus, I am come to talk with thee.\n\nTITUS ANDRONICUS:\nNo, not a word; how can I grace my talk,\nWanting a hand to give it action?\nThou hast the odds of me; therefore no more.\n\nTAMORA:\nIf thou didst know me, thou wouldest talk with me.\n\nTITUS ANDRONICUS:\nI am not mad; I know thee well enough:\nWitness this wretched stump, witness these crimson lines;\nWitness these trenches made by grief and care,\nWitness the tiring day and heavy night;\nWitness all sorrow, that I know thee well\nFor our proud empress, mighty Tamora:\nIs not thy coming for my other hand?\n\nTAMORA:\nKnow, thou sad man, I am not Tamora;\nShe is thy enemy, and I thy friend:\nI am Revenge: sent from the infernal kingdom,\nTo ease the gnawing vulture of thy mind,\nBy working wreakful vengeance on thy foes.\nCome down, and welcome me to this world's light;\nConfer with me of murder and of death:\nThere's not a hollow cave or lurking-place,\nNo vast obscurity or misty vale,\nWhere bloody murder or detested rape\nCan couch for fear, but I will find them out;\nAnd in their ears tell them my dreadful name,\nRevenge, which makes the foul offender quake.\n\nTITUS ANDRONICUS:\nArt thou Revenge? and art thou sent to me,\nTo be a torment to mine enemies?\n\nTAMORA:\nI am; therefore come down, and welcome me.\n\nTITUS ANDRONICUS:\nDo me some service, ere I come to thee.\nLo, by thy side where Rape and Murder stands;\nNow give me some surance that thou art Revenge,\nStab them, or tear them on thy chariot-wheels;\nAnd then I'll come and be thy waggoner,\nAnd whirl along with thee about the globe.\nProvide thee two proper palfreys, black as jet,\nTo hale thy vengeful waggon swift away,\nAnd find out murderers in their guilty caves:\nAnd when thy car is loaden with their heads,\nI will dismount, and by the waggon-wheel\nTrot, like a servile footman, all day long,\nEven from Hyperion's rising in the east\nUntil his very downfall in the sea:\nAnd day by day I'll do this heavy task,\nSo thou destroy Rapine and Murder there.\n\nTAMORA:\nThese are my ministers, and come with me.\n\nTITUS ANDRONICUS:\nAre these thy ministers? what are they call'd?\n\nTAMORA:\nRapine and Murder; therefore called so,\nCause they take vengeance of such kind of men.\n\nTITUS ANDRONICUS:\nGood Lord, how like the empress' sons they are!\nAnd you, the empress! but we worldly men\nHave miserable, mad, mistaking eyes.\nO sweet Revenge, now do I come to thee;\nAnd, if one arm's embracement will content thee,\nI will embrace thee in it by and by.\n\nTAMORA:\nThis closing with him fits his lunacy\nWhate'er I forge to feed his brain-sick fits,\nDo you uphold and maintain in your speeches,\nFor now he firmly takes me for Revenge;\nAnd, being credulous in this mad thought,\nI'll make him send for Lucius his son;\nAnd, whilst I at a banquet hold him sure,\nI'll find some cunning practise out of hand,\nTo scatter and disperse the giddy Goths,\nOr, at the least, make them his enemies.\nSee, here he comes, and I must ply my theme.\n\nTITUS ANDRONICUS:\nLong have I been forlorn, and all for thee:\nWelcome, dread Fury, to my woful house:\nRapine and Murder, you are welcome too.\nHow like the empress and her sons you are!\nWell are you fitted, had you but a Moor:\nCould not all hell afford you such a devil?\nFor well I wot the empress never wags\nBut in her company there is a Moor;\nAnd, would you represent our queen aright,\nIt were convenient you had such a devil:\nBut welcome, as you are. What shall we do?\n\nTAMORA:\nWhat wouldst thou have us do, Andronicus?\n\nDEMETRIUS:\nShow me a murderer, I'll deal with him.\n\nCHIRON:\nShow me a villain that hath done a rape,\nAnd I am sent to be revenged on him.\n\nTAMORA:\nShow me a thousand that have done thee wrong,\nAnd I will be revenged on them all.\n\nTITUS ANDRONICUS:\nLook round about the wicked streets of Rome;\nAnd when thou find'st a man that's like thyself.\nGood Murder, stab him; he's a murderer.\nGo thou with him; and when it is thy hap\nTo find another that is like to thee,\nGood Rapine, stab him; he's a ravisher.\nGo thou with them; and in the emperor's court\nThere is a queen, attended by a Moor;\nWell mayst thou know her by thy own proportion,\nfor up and down she doth resemble thee:\nI pray thee, do on them some violent death;\nThey have been violent to me and mine.\n\nTAMORA:\nWell hast thou lesson'd us; this shall we do.\nBut would it please thee, good Andronicus,\nTo send for Lucius, thy thrice-valiant son,\nWho leads towards Rome a band of warlike Goths,\nAnd bid him come and banquet at thy house;\nWhen he is here, even at thy solemn feast,\nI will bring in the empress and her sons,\nThe emperor himself and all thy foes;\nAnd at thy mercy shalt they stoop and kneel,\nAnd on them shalt thou ease thy angry heart.\nWhat says Andronicus to this device?\n\nTITUS ANDRONICUS:\nMarcus, my brother! 'tis sad Titus calls.\nGo, gentle Marcus, to thy nephew Lucius;\nThou shalt inquire him out among the Goths:\nBid him repair to me, and bring with him\nSome of the chiefest princes of the Goths;\nBid him encamp his soldiers where they are:\nTell him the emperor and the empress too\nFeast at my house, and he shall feast with them.\nThis do thou for my love; and so let him,\nAs he regards his aged father's life.\n\nMARCUS ANDRONICUS:\nThis will I do, and soon return again.\n\nTAMORA:\nNow will I hence about thy business,\nAnd take my ministers along with me.\n\nTITUS ANDRONICUS:\nNay, nay, let Rape and Murder stay with me;\nOr else I'll call my brother back again,\nAnd cleave to no revenge but Lucius.\n\nTAMORA:\n\nTITUS ANDRONICUS:\n\nDEMETRIUS:\nMadam, depart at pleasure; leave us here.\n\nTAMORA:\nFarewell, Andronicus: Revenge now goes\nTo lay a complot to betray thy foes.\n\nTITUS ANDRONICUS:\nI know thou dost; and, sweet Revenge, farewell.\n\nCHIRON:\nTell us, old man, how shall we be employ'd?\n\nTITUS ANDRONICUS:\nTut, I have work enough for you to do.\nPublius, come hither, Caius, and Valentine!\n\nPUBLIUS:\nWhat is your will?\n\nTITUS ANDRONICUS:\nKnow you these two?\n\nPUBLIUS:\nThe empress' sons, I take them, Chiron and Demetrius.\n\nTITUS ANDRONICUS:\nFie, Publius, fie! thou art too much deceived;\nThe one is Murder, Rape is the other's name;\nAnd therefore bind them, gentle Publius.\nCaius and Valentine, lay hands on them.\nOft have you heard me wish for such an hour,\nAnd now I find it; therefore bind them sure,\nAnd stop their mouths, if they begin to cry.\n\nCHIRON:\nVillains, forbear! we are the empress' sons.\n\nPUBLIUS:\nAnd therefore do we what we are commanded.\nStop close their mouths, let them not speak a word.\nIs he sure bound? look that you bind them fast.\n\nTITUS ANDRONICUS:\nCome, come, Lavinia; look, thy foes are bound.\nSirs, stop their mouths, let them not speak to me;\nBut let them hear what fearful words I utter.\nO villains, Chiron and Demetrius!\nHere stands the spring whom you have stain'd with mud,\nThis goodly summer with your winter mix'd.\nYou kill'd her husband, and for that vile fault\nTwo of her brothers were condemn'd to death,\nMy hand cut off and made a merry jest;\nBoth her sweet hands, her tongue, and that more dear\nThan hands or tongue, her spotless chastity,\nInhuman traitors, you constrain'd and forced.\nWhat would you say, if I should let you speak?\nVillains, for shame you could not beg for grace.\nHark, wretches! how I mean to martyr you.\nThis one hand yet is left to cut your throats,\nWhilst that Lavinia 'tween her stumps doth hold\nThe basin that receives your guilty blood.\nYou know your mother means to feast with me,\nAnd calls herself Revenge, and thinks me mad:\nHark, villains! I will grind your bones to dust\nAnd with your blood and it I'll make a paste,\nAnd of the paste a coffin I will rear\nAnd make two pasties of your shameful heads,\nAnd bid that strumpet, your unhallow'd dam,\nLike to the earth swallow her own increase.\nThis is the feast that I have bid her to,\nAnd this the banquet she shall surfeit on;\nFor worse than Philomel you used my daughter,\nAnd worse than Progne I will be revenged:\nAnd now prepare your throats. Lavinia, come,\nReceive the blood: and when that they are dead,\nLet me go grind their bones to powder small\nAnd with this hateful liquor temper it;\nAnd in that paste let their vile heads be baked.\nCome, come, be every one officious\nTo make this banquet; which I wish may prove\nMore stern and bloody than the Centaurs' feast.\nSo, now bring them in, for I'll play the cook,\nAnd see them ready 'gainst their mother comes.\n\nLUCIUS:\nUncle Marcus, since it is my father's mind\nThat I repair to Rome, I am content.\n\nFirst Goth:\nAnd ours with thine, befall what fortune will.\n\nLUCIUS:\nGood uncle, take you in this barbarous Moor,\nThis ravenous tiger, this accursed devil;\nLet him receive no sustenance, fetter him\nTill he be brought unto the empress' face,\nFor testimony of her foul proceedings:\nAnd see the ambush of our friends be strong;\nI fear the emperor means no good to us.\n\nAARON:\nSome devil whisper curses in mine ear,\nAnd prompt me, that my tongue may utter forth\nThe venomous malice of my swelling heart!\n\nLUCIUS:\nAway, inhuman dog! unhallow'd slave!\nSirs, help our uncle to convey him in.\nThe trumpets show the emperor is at hand.\n\nSATURNINUS:\nWhat, hath the firmament more suns than one?\n\nLUCIUS:\nWhat boots it thee to call thyself a sun?\n\nMARCUS ANDRONICUS:\nRome's emperor, and nephew, break the parle;\nThese quarrels must be quietly debated.\nThe feast is ready, which the careful Titus\nHath ordain'd to an honourable end,\nFor peace, for love, for league, and good to Rome:\nPlease you, therefore, draw nigh, and take your places.\n\nSATURNINUS:\nMarcus, we will.\n\nTITUS ANDRONICUS:\nWelcome, my gracious lord; welcome, dread queen;\nWelcome, ye warlike Goths; welcome, Lucius;\nAnd welcome, all: although the cheer be poor,\n'Twill fill your stomachs; please you eat of it.\n\nSATURNINUS:\nWhy art thou thus attired, Andronicus?\n\nTITUS ANDRONICUS:\nBecause I would be sure to have all well,\nTo entertain your highness and your empress.\n\nTAMORA:\nWe are beholding to you, good Andronicus.\n\nTITUS ANDRONICUS:\nAn if your highness knew my heart, you were.\nMy lord the emperor, resolve me this:\nWas it well done of rash Virginius\nTo slay his daughter with his own right hand,\nBecause she was enforced, stain'd, and deflower'd?\n\nSATURNINUS:\nIt was, Andronicus.\n\nTITUS ANDRONICUS:\nYour reason, mighty lord?\n\nSATURNINUS:\nBecause the girl should not survive her shame,\nAnd by her presence still renew his sorrows.\n\nTITUS ANDRONICUS:\nA reason mighty, strong, and effectual;\nA pattern, precedent, and lively warrant,\nFor me, most wretched, to perform the like.\nDie, die, Lavinia, and thy shame with thee;\nAnd, with thy shame, thy father's sorrow die!\n\nSATURNINUS:\nWhat hast thou done, unnatural and unkind?\n\nTITUS ANDRONICUS:\nKill'd her, for whom my tears have made me blind.\nI am as woful as Virginius was,\nAnd have a thousand times more cause than he\nTo do this outrage: and it now is done.\n\nSATURNINUS:\nWhat, was she ravish'd? tell who did the deed.\n\nTITUS ANDRONICUS:\nWill't please you eat? will't please your\nhighness feed?\n\nTAMORA:\nWhy hast thou slain thine only daughter thus?\n\nTITUS ANDRONICUS:\nNot I; 'twas Chiron and Demetrius:\nThey ravish'd her, and cut away her tongue;\nAnd they, 'twas they, that did her all this wrong.\n\nSATURNINUS:\nGo fetch them hither to us presently.\n\nTITUS ANDRONICUS:\nWhy, there they are both, baked in that pie;\nWhereof their mother daintily hath fed,\nEating the flesh that she herself hath bred.\n'Tis true, 'tis true; witness my knife's sharp point.\n\nSATURNINUS:\nDie, frantic wretch, for this accursed deed!\n\nLUCIUS:\nCan the son's eye behold his father bleed?\nThere's meed for meed, death for a deadly deed!\n\nMARCUS ANDRONICUS:\nYou sad-faced men, people and sons of Rome,\nBy uproar sever'd, like a flight of fowl\nScatter'd by winds and high tempestuous gusts,\nO, let me teach you how to knit again\nThis scatter'd corn into one mutual sheaf,\nThese broken limbs again into one body;\nLest Rome herself be bane unto herself,\nAnd she whom mighty kingdoms court'sy to,\nLike a forlorn and desperate castaway,\nDo shameful execution on herself.\nBut if my frosty signs and chaps of age,\nGrave witnesses of true experience,\nCannot induce you to attend my words,\nSpeak, Rome's dear friend, as erst our ancestor,\nWhen with his solemn tongue he did discourse\nTo love-sick Dido's sad attending ear\nThe story of that baleful burning night\nWhen subtle Greeks surprised King Priam's Troy,\nTell us what Sinon hath bewitch'd our ears,\nOr who hath brought the fatal engine in\nThat gives our Troy, our Rome, the civil wound.\nMy heart is not compact of flint nor steel;\nNor can I utter all our bitter grief,\nBut floods of tears will drown my oratory,\nAnd break my utterance, even in the time\nWhen it should move you to attend me most,\nLending your kind commiseration.\nHere is a captain, let him tell the tale;\nYour hearts will throb and weep to hear him speak.\n\nLUCIUS:\nThen, noble auditory, be it known to you,\nThat cursed Chiron and Demetrius\nWere they that murdered our emperor's brother;\nAnd they it were that ravished our sister:\nFor their fell faults our brothers were beheaded;\nOur father's tears despised, and basely cozen'd\nOf that true hand that fought Rome's quarrel out,\nAnd sent her enemies unto the grave.\nLastly, myself unkindly banished,\nThe gates shut on me, and turn'd weeping out,\nTo beg relief among Rome's enemies:\nWho drown'd their enmity in my true tears.\nAnd oped their arms to embrace me as a friend.\nI am the turned forth, be it known to you,\nThat have preserved her welfare in my blood;\nAnd from her bosom took the enemy's point,\nSheathing the steel in my adventurous body.\nAlas, you know I am no vaunter, I;\nMy scars can witness, dumb although they are,\nThat my report is just and full of truth.\nBut, soft! methinks I do digress too much,\nCiting my worthless praise: O, pardon me;\nFor when no friends are by, men praise themselves.\n\nMARCUS ANDRONICUS:\nNow is my turn to speak. Behold this child:\nOf this was Tamora delivered;\nThe issue of an irreligious Moor,\nChief architect and plotter of these woes:\nThe villain is alive in Titus' house,\nAnd as he is, to witness this is true.\nNow judge what cause had Titus to revenge\nThese wrongs, unspeakable, past patience,\nOr more than any living man could bear.\nNow you have heard the truth, what say you, Romans?\nHave we done aught amiss,--show us wherein,\nAnd, from the place where you behold us now,\nThe poor remainder of Andronici\nWill, hand in hand, all headlong cast us down.\nAnd on the ragged stones beat forth our brains,\nAnd make a mutual closure of our house.\nSpeak, Romans, speak; and if you say we shall,\nLo, hand in hand, Lucius and I will fall.\n\nAEMILIUS:\nCome, come, thou reverend man of Rome,\nAnd bring our emperor gently in thy hand,\nLucius our emperor; for well I know\nThe common voice do cry it shall be so.\n\nAll:\nLucius, all hail, Rome's royal emperor!\n\nMARCUS ANDRONICUS:\nGo, go into old Titus' sorrowful house,\nAnd hither hale that misbelieving Moor,\nTo be adjudged some direful slaughtering death,\nAs punishment for his most wicked life.\n\nAll:\nLucius, all hail, Rome's gracious governor!\n\nLUCIUS:\nThanks, gentle Romans: may I govern so,\nTo heal Rome's harms, and wipe away her woe!\nBut, gentle people, give me aim awhile,\nFor nature puts me to a heavy task:\nStand all aloof: but, uncle, draw you near,\nTo shed obsequious tears upon this trunk.\nO, take this warm kiss on thy pale cold lips,\nThese sorrowful drops upon thy blood-stain'd face,\nThe last true duties of thy noble son!\n\nMARCUS ANDRONICUS:\nTear for tear, and loving kiss for kiss,\nThy brother Marcus tenders on thy lips:\nO were the sum of these that I should pay\nCountless and infinite, yet would I pay them!\n\nLUCIUS:\nCome hither, boy; come, come, and learn of us\nTo melt in showers: thy grandsire loved thee well:\nMany a time he danced thee on his knee,\nSung thee asleep, his loving breast thy pillow:\nMany a matter hath he told to thee,\nMeet and agreeing with thine infancy;\nIn that respect, then, like a loving child,\nShed yet some small drops from thy tender spring,\nBecause kind nature doth require it so:\nFriends should associate friends in grief and woe:\nBid him farewell; commit him to the grave;\nDo him that kindness, and take leave of him.\n\nYoung LUCIUS:\nO grandsire, grandsire! even with all my heart\nWould I were dead, so you did live again!\nO Lord, I cannot speak to him for weeping;\nMy tears will choke me, if I ope my mouth.\n\nAEMILIUS:\nYou sad Andronici, have done with woes:\nGive sentence on this execrable wretch,\nThat hath been breeder of these dire events.\n\nLUCIUS:\nSet him breast-deep in earth, and famish him;\nThere let him stand, and rave, and cry for food;\nIf any one relieves or pities him,\nFor the offence he dies. This is our doom:\nSome stay to see him fasten'd in the earth.\n\nAARON:\nO, why should wrath be mute, and fury dumb?\nI am no baby, I, that with base prayers\nI should repent the evils I have done:\nTen thousand worse than ever yet I did\nWould I perform, if I might have my will;\nIf one good deed in all my life I did,\nI do repent it from my very soul.\n\nLUCIUS:\nSome loving friends convey the emperor hence,\nAnd give him burial in his father's grave:\nMy father and Lavinia shall forthwith\nBe closed in our household's monument.\nAs for that heinous tiger, Tamora,\nNo funeral rite, nor man m mourning weeds,\nNo mournful bell shall ring her burial;\nBut throw her forth to beasts and birds of prey:\nHer life was beast-like, and devoid of pity;\nAnd, being so, shall have like want of pity.\nSee justice done on Aaron, that damn'd Moor,\nBy whom our heavy haps had their beginning:\nThen, afterwards, to order well the state,\nThat like events may ne'er it ruinate.\n\nBEDFORD:\nHung be the heavens with black, yield day to night!\nComets, importing change of times and states,\nBrandish your crystal tresses in the sky,\nAnd with them scourge the bad revolting stars\nThat have consented unto Henry's death!\nKing Henry the Fifth, too famous to live long!\nEngland ne'er lost a king of so much worth.\n\nGLOUCESTER:\nEngland ne'er had a king until his time.\nVirtue he had, deserving to command:\nHis brandish'd sword did blind men with his beams:\nHis arms spread wider than a dragon's wings;\nHis sparking eyes, replete with wrathful fire,\nMore dazzled and drove back his enemies\nThan mid-day sun fierce bent against their faces.\nWhat should I say? his deeds exceed all speech:\nHe ne'er lift up his hand but conquered.\n\nEXETER:\nWe mourn in black: why mourn we not in blood?\nHenry is dead and never shall revive:\nUpon a wooden coffin we attend,\nAnd death's dishonourable victory\nWe with our stately presence glorify,\nLike captives bound to a triumphant car.\nWhat! shall we curse the planets of mishap\nThat plotted thus our glory's overthrow?\nOr shall we think the subtle-witted French\nConjurers and sorcerers, that afraid of him\nBy magic verses have contrived his end?\n\nBISHOP OF WINCHESTER:\nHe was a king bless'd of the King of kings.\nUnto the French the dreadful judgement-day\nSo dreadful will not be as was his sight.\nThe battles of the Lord of hosts he fought:\nThe church's prayers made him so prosperous.\n\nGLOUCESTER:\nThe church! where is it? Had not churchmen pray'd,\nHis thread of life had not so soon decay'd:\nNone do you like but an effeminate prince,\nWhom, like a school-boy, you may over-awe.\n\nBISHOP OF WINCHESTER:\nGloucester, whate'er we like, thou art protector\nAnd lookest to command the prince and realm.\nThy wife is proud; she holdeth thee in awe,\nMore than God or religious churchmen may.\n\nGLOUCESTER:\nName not religion, for thou lovest the flesh,\nAnd ne'er throughout the year to church thou go'st\nExcept it be to pray against thy foes.\n\nBEDFORD:\nCease, cease these jars and rest your minds in peace:\nLet's to the altar: heralds, wait on us:\nInstead of gold, we'll offer up our arms:\nSince arms avail not now that Henry's dead.\nPosterity, await for wretched years,\nWhen at their mothers' moist eyes babes shall suck,\nOur isle be made a nourish of salt tears,\nAnd none but women left to wail the dead.\nHenry the Fifth, thy ghost I invocate:\nProsper this realm, keep it from civil broils,\nCombat with adverse planets in the heavens!\nA far more glorious star thy soul will make\nThan Julius Caesar or bright--\n\nMessenger:\nMy honourable lords, health to you all!\nSad tidings bring I to you out of France,\nOf loss, of slaughter and discomfiture:\nGuienne, Champagne, Rheims, Orleans,\nParis, Guysors, Poictiers, are all quite lost.\n\nBEDFORD:\nWhat say'st thou, man, before dead Henry's corse?\nSpeak softly, or the loss of those great towns\nWill make him burst his lead and rise from death.\n\nGLOUCESTER:\nIs Paris lost? is Rouen yielded up?\nIf Henry were recall'd to life again,\nThese news would cause him once more yield the ghost.\n\nEXETER:\nHow were they lost? what treachery was used?\n\nMessenger:\nNo treachery; but want of men and money.\nAmongst the soldiers this is muttered,\nThat here you maintain several factions,\nAnd whilst a field should be dispatch'd and fought,\nYou are disputing of your generals:\nOne would have lingering wars with little cost;\nAnother would fly swift, but wanteth wings;\nA third thinks, without expense at all,\nBy guileful fair words peace may be obtain'd.\nAwake, awake, English nobility!\nLet not sloth dim your horrors new-begot:\nCropp'd are the flower-de-luces in your arms;\nOf England's coat one half is cut away.\n\nEXETER:\nWere our tears wanting to this funeral,\nThese tidings would call forth their flowing tides.\n\nBEDFORD:\nMe they concern; Regent I am of France.\nGive me my steeled coat. I'll fight for France.\nAway with these disgraceful wailing robes!\nWounds will I lend the French instead of eyes,\nTo weep their intermissive miseries.\n\nMessenger:\nLords, view these letters full of bad mischance.\nFrance is revolted from the English quite,\nExcept some petty towns of no import:\nThe Dauphin Charles is crowned king of Rheims;\nThe Bastard of Orleans with him is join'd;\nReignier, Duke of Anjou, doth take his part;\nThe Duke of Alencon flieth to his side.\n\nEXETER:\nThe Dauphin crowned king! all fly to him!\nO, whither shall we fly from this reproach?\n\nGLOUCESTER:\nWe will not fly, but to our enemies' throats.\nBedford, if thou be slack, I'll fight it out.\n\nBEDFORD:\nGloucester, why doubt'st thou of my forwardness?\nAn army have I muster'd in my thoughts,\nWherewith already France is overrun.\n\nMessenger:\nMy gracious lords, to add to your laments,\nWherewith you now bedew King Henry's hearse,\nI must inform you of a dismal fight\nBetwixt the stout Lord Talbot and the French.\n\nBISHOP OF WINCHESTER:\nWhat! wherein Talbot overcame? is't so?\n\nMessenger:\nO, no; wherein Lord Talbot was o'erthrown:\nThe circumstance I'll tell you more at large.\nThe tenth of August last this dreadful lord,\nRetiring from the siege of Orleans,\nHaving full scarce six thousand in his troop.\nBy three and twenty thousand of the French\nWas round encompassed and set upon.\nNo leisure had he to enrank his men;\nHe wanted pikes to set before his archers;\nInstead whereof sharp stakes pluck'd out of hedges\nThey pitched in the ground confusedly,\nTo keep the horsemen off from breaking in.\nMore than three hours the fight continued;\nWhere valiant Talbot above human thought\nEnacted wonders with his sword and lance:\nHundreds he sent to hell, and none durst stand him;\nHere, there, and every where, enraged he flew:\nThe French exclaim'd, the devil was in arms;\nAll the whole army stood agazed on him:\nHis soldiers spying his undaunted spirit\nA Talbot! a Talbot! cried out amain\nAnd rush'd into the bowels of the battle.\nHere had the conquest fully been seal'd up,\nIf Sir John Fastolfe had not play'd the coward:\nHe, being in the vaward, placed behind\nWith purpose to relieve and follow them,\nCowardly fled, not having struck one stroke.\nHence grew the general wreck and massacre;\nEnclosed were they with their enemies:\nA base Walloon, to win the Dauphin's grace,\nThrust Talbot with a spear into the back,\nWhom all France with their chief assembled strength\nDurst not presume to look once in the face.\n\nBEDFORD:\nIs Talbot slain? then I will slay myself,\nFor living idly here in pomp and ease,\nWhilst such a worthy leader, wanting aid,\nUnto his dastard foemen is betray'd.\n\nMessenger:\nO no, he lives; but is took prisoner,\nAnd Lord Scales with him and Lord Hungerford:\nMost of the rest slaughter'd or took likewise.\n\nBEDFORD:\nHis ransom there is none but I shall pay:\nI'll hale the Dauphin headlong from his throne:\nHis crown shall be the ransom of my friend;\nFour of their lords I'll change for one of ours.\nFarewell, my masters; to my task will I;\nBonfires in France forthwith I am to make,\nTo keep our great Saint George's feast withal:\nTen thousand soldiers with me I will take,\nWhose bloody deeds shall make all Europe quake.\n\nMessenger:\nSo you had need; for Orleans is besieged;\nThe English army is grown weak and faint:\nThe Earl of Salisbury craveth supply,\nAnd hardly keeps his men from mutiny,\nSince they, so few, watch such a multitude.\n\nEXETER:\nRemember, lords, your oaths to Henry sworn,\nEither to quell the Dauphin utterly,\nOr bring him in obedience to your yoke.\n\nBEDFORD:\nI do remember it; and here take my leave,\nTo go about my preparation.\n\nGLOUCESTER:\nI'll to the Tower with all the haste I can,\nTo view the artillery and munition;\nAnd then I will proclaim young Henry king.\n\nEXETER:\nTo Eltham will I, where the young king is,\nBeing ordain'd his special governor,\nAnd for his safety there I'll best devise.\n\nBISHOP OF WINCHESTER:\nEach hath his place and function to attend:\nI am left out; for me nothing remains.\nBut long I will not be Jack out of office:\nThe king from Eltham I intend to steal\nAnd sit at chiefest stern of public weal.\n\nCHARLES:\nMars his true moving, even as in the heavens\nSo in the earth, to this day is not known:\nLate did he shine upon the English side;\nNow we are victors; upon us he smiles.\nWhat towns of any moment but we have?\nAt pleasure here we lie near Orleans;\nOtherwhiles the famish'd English, like pale ghosts,\nFaintly besiege us one hour in a month.\n\nALENCON:\nThey want their porridge and their fat bull-beeves:\nEither they must be dieted like mules\nAnd have their provender tied to their mouths\nOr piteous they will look, like drowned mice.\n\nREIGNIER:\nLet's raise the siege: why live we idly here?\nTalbot is taken, whom we wont to fear:\nRemaineth none but mad-brain'd Salisbury;\nAnd he may well in fretting spend his gall,\nNor men nor money hath he to make war.\n\nCHARLES:\nSound, sound alarum! we will rush on them.\nNow for the honour of the forlorn French!\nHim I forgive my death that killeth me\nWhen he sees me go back one foot or fly.\n\nCHARLES:\nWho ever saw the like? what men have I!\nDogs! cowards! dastards! I would ne'er have fled,\nBut that they left me 'midst my enemies.\n\nREIGNIER:\nSalisbury is a desperate homicide;\nHe fighteth as one weary of his life.\nThe other lords, like lions wanting food,\nDo rush upon us as their hungry prey.\n\nALENCON:\nFroissart, a countryman of ours, records,\nEngland all Olivers and Rowlands bred,\nDuring the time Edward the Third did reign.\nMore truly now may this be verified;\nFor none but Samsons and Goliases\nIt sendeth forth to skirmish. One to ten!\nLean, raw-boned rascals! who would e'er suppose\nThey had such courage and audacity?\n\nCHARLES:\nLet's leave this town; for they are hare-brain'd slaves,\nAnd hunger will enforce them to be more eager:\nOf old I know them; rather with their teeth\nThe walls they'll tear down than forsake the siege.\n\nREIGNIER:\nI think, by some odd gimmors or device\nTheir arms are set like clocks, stiff to strike on;\nElse ne'er could they hold out so as they do.\nBy my consent, we'll even let them alone.\n\nALENCON:\nBe it so.\n\nBASTARD OF ORLEANS:\nWhere's the Prince Dauphin? I have news for him.\n\nCHARLES:\nBastard of Orleans, thrice welcome to us.\n\nBASTARD OF ORLEANS:\nMethinks your looks are sad, your cheer appall'd:\nHath the late overthrow wrought this offence?\nBe not dismay'd, for succor is at hand:\nA holy maid hither with me I bring,\nWhich by a vision sent to her from heaven\nOrdained is to raise this tedious siege\nAnd drive the English forth the bounds of France.\nThe spirit of deep prophecy she hath,\nExceeding the nine sibyls of old Rome:\nWhat's past and what's to come she can descry.\nSpeak, shall I call her in? Believe my words,\nFor they are certain and unfallible.\n\nCHARLES:\nGo, call her in.\nBut first, to try her skill,\nReignier, stand thou as Dauphin in my place:\nQuestion her proudly; let thy looks be stern:\nBy this means shall we sound what skill she hath.\n\nREIGNIER:\nFair maid, is't thou wilt do these wondrous feats?\n\nJOAN LA PUCELLE:\nReignier, is't thou that thinkest to beguile me?\nWhere is the Dauphin? Come, come from behind;\nI know thee well, though never seen before.\nBe not amazed, there's nothing hid from me:\nIn private will I talk with thee apart.\nStand back, you lords, and give us leave awhile.\n\nREIGNIER:\nShe takes upon her bravely at first dash.\n\nJOAN LA PUCELLE:\nDauphin, I am by birth a shepherd's daughter,\nMy wit untrain'd in any kind of art.\nHeaven and our Lady gracious hath it pleased\nTo shine on my contemptible estate:\nLo, whilst I waited on my tender lambs,\nAnd to sun's parching heat display'd my cheeks,\nGod's mother deigned to appear to me\nAnd in a vision full of majesty\nWill'd me to leave my base vocation\nAnd free my country from calamity:\nHer aid she promised and assured success:\nIn complete glory she reveal'd herself;\nAnd, whereas I was black and swart before,\nWith those clear rays which she infused on me\nThat beauty am I bless'd with which you see.\nAsk me what question thou canst possible,\nAnd I will answer unpremeditated:\nMy courage try by combat, if thou darest,\nAnd thou shalt find that I exceed my sex.\nResolve on this, thou shalt be fortunate,\nIf thou receive me for thy warlike mate.\n\nCHARLES:\nThou hast astonish'd me with thy high terms:\nOnly this proof I'll of thy valour make,\nIn single combat thou shalt buckle with me,\nAnd if thou vanquishest, thy words are true;\nOtherwise I renounce all confidence.\n\nJOAN LA PUCELLE:\nI am prepared: here is my keen-edged sword,\nDeck'd with five flower-de-luces on each side;\nThe which at Touraine, in Saint Katharine's\nchurchyard,\nOut of a great deal of old iron I chose forth.\n\nCHARLES:\nThen come, o' God's name; I fear no woman.\n\nJOAN LA PUCELLE:\nAnd while I live, I'll ne'er fly from a man.\n\nCHARLES:\nStay, stay thy hands! thou art an Amazon\nAnd fightest with the sword of Deborah.\n\nJOAN LA PUCELLE:\nChrist's mother helps me, else I were too weak.\n\nCHARLES:\nWhoe'er helps thee, 'tis thou that must help me:\nImpatiently I burn with thy desire;\nMy heart and hands thou hast at once subdued.\nExcellent Pucelle, if thy name be so,\nLet me thy servant and not sovereign be:\n'Tis the French Dauphin sueth to thee thus.\n\nJOAN LA PUCELLE:\nI must not yield to any rites of love,\nFor my profession's sacred from above:\nWhen I have chased all thy foes from hence,\nThen will I think upon a recompense.\n\nCHARLES:\nMeantime look gracious on thy prostrate thrall.\n\nREIGNIER:\nMy lord, methinks, is very long in talk.\n\nALENCON:\nDoubtless he shrives this woman to her smock;\nElse ne'er could he so long protract his speech.\n\nREIGNIER:\nShall we disturb him, since he keeps no mean?\n\nALENCON:\nHe may mean more than we poor men do know:\nThese women are shrewd tempters with their tongues.\n\nREIGNIER:\nMy lord, where are you? what devise you on?\nShall we give over Orleans, or no?\n\nJOAN LA PUCELLE:\nWhy, no, I say, distrustful recreants!\nFight till the last gasp; I will be your guard.\n\nCHARLES:\nWhat she says I'll confirm: we'll fight it out.\n\nJOAN LA PUCELLE:\nAssign'd am I to be the English scourge.\nThis night the siege assuredly I'll raise:\nExpect Saint Martin's summer, halcyon days,\nSince I have entered into these wars.\nGlory is like a circle in the water,\nWhich never ceaseth to enlarge itself\nTill by broad spreading it disperse to nought.\nWith Henry's death the English circle ends;\nDispersed are the glories it included.\nNow am I like that proud insulting ship\nWhich Caesar and his fortune bare at once.\n\nCHARLES:\nWas Mahomet inspired with a dove?\nThou with an eagle art inspired then.\nHelen, the mother of great Constantine,\nNor yet Saint Philip's daughters, were like thee.\nBright star of Venus, fall'n down on the earth,\nHow may I reverently worship thee enough?\n\nALENCON:\nLeave off delays, and let us raise the siege.\n\nREIGNIER:\nWoman, do what thou canst to save our honours;\nDrive them from Orleans and be immortalized.\n\nCHARLES:\nPresently we'll try: come, let's away about it:\nNo prophet will I trust, if she prove false.\n\nGLOUCESTER:\nI am come to survey the Tower this day:\nSince Henry's death, I fear, there is conveyance.\nWhere be these warders, that they wait not here?\nOpen the gates; 'tis Gloucester that calls.\n\nFirst Warder:\n\nFirst Serving-Man:\nIt is the noble Duke of Gloucester.\n\nSecond Warder:\n\nFirst Serving-Man:\nVillains, answer you so the lord protector?\n\nFirst Warder:\n\nGLOUCESTER:\nWho willed you? or whose will stands but mine?\nThere's none protector of the realm but I.\nBreak up the gates, I'll be your warrantize.\nShall I be flouted thus by dunghill grooms?\n\nWOODVILE:\nWhat noise is this? what traitors have we here?\n\nGLOUCESTER:\nLieutenant, is it you whose voice I hear?\nOpen the gates; here's Gloucester that would enter.\n\nWOODVILE:\nHave patience, noble duke; I may not open;\nThe Cardinal of Winchester forbids:\nFrom him I have express commandment\nThat thou nor none of thine shall be let in.\n\nGLOUCESTER:\nFaint-hearted Woodvile, prizest him 'fore me?\nArrogant Winchester, that haughty prelate,\nWhom Henry, our late sovereign, ne'er could brook?\nThou art no friend to God or to the king:\nOpen the gates, or I'll shut thee out shortly.\n\nServing-Men:\nOpen the gates unto the lord protector,\nOr we'll burst them open, if that you come not quickly.\n\nBISHOP OF WINCHESTER:\nHow now, ambitious Humphry! what means this?\n\nGLOUCESTER:\nPeel'd priest, dost thou command me to be shut out?\n\nBISHOP OF WINCHESTER:\nI do, thou most usurping proditor,\nAnd not protector, of the king or realm.\n\nGLOUCESTER:\nStand back, thou manifest conspirator,\nThou that contrivedst to murder our dead lord;\nThou that givest whores indulgences to sin:\nI'll canvass thee in thy broad cardinal's hat,\nIf thou proceed in this thy insolence.\n\nBISHOP OF WINCHESTER:\nNay, stand thou back, I will not budge a foot:\nThis be Damascus, be thou cursed Cain,\nTo slay thy brother Abel, if thou wilt.\n\nGLOUCESTER:\nI will not slay thee, but I'll drive thee back:\nThy scarlet robes as a child's bearing-cloth\nI'll use to carry thee out of this place.\n\nBISHOP OF WINCHESTER:\nDo what thou darest; I beard thee to thy face.\n\nGLOUCESTER:\nWhat! am I dared and bearded to my face?\nDraw, men, for all this privileged place;\nBlue coats to tawny coats. Priest, beware your beard,\nI mean to tug it and to cuff you soundly:\nUnder my feet I stamp thy cardinal's hat:\nIn spite of pope or dignities of church,\nHere by the cheeks I'll drag thee up and down.\n\nBISHOP OF WINCHESTER:\nGloucester, thou wilt answer this before the pope.\n\nGLOUCESTER:\nWinchester goose, I cry, a rope! a rope!\nNow beat them hence; why do you let them stay?\nThee I'll chase hence, thou wolf in sheep's array.\nOut, tawny coats! out, scarlet hypocrite!\n\nMayor:\nFie, lords! that you, being supreme magistrates,\nThus contumeliously should break the peace!\n\nGLOUCESTER:\nPeace, mayor! thou know'st little of my wrongs:\nHere's Beaufort, that regards nor God nor king,\nHath here distrain'd the Tower to his use.\n\nBISHOP OF WINCHESTER:\nHere's Gloucester, a foe to citizens,\nOne that still motions war and never peace,\nO'ercharging your free purses with large fines,\nThat seeks to overthrow religion,\nBecause he is protector of the realm,\nAnd would have armour here out of the Tower,\nTo crown himself king and suppress the prince.\n\nGLOUCESTER:\nI will not answer thee with words, but blows.\n\nMayor:\nNaught rests for me in this tumultuous strife\nBut to make open proclamation:\nCome, officer; as loud as e'er thou canst,\nCry.\n\nOfficer:\nAll manner of men assembled here in arms this day\nagainst God's peace and the king's, we charge and\ncommand you, in his highness' name, to repair to\nyour several dwelling-places; and not to wear,\nhandle, or use any sword, weapon, or dagger,\nhenceforward, upon pain of death.\n\nGLOUCESTER:\nCardinal, I'll be no breaker of the law:\nBut we shall meet, and break our minds at large.\n\nBISHOP OF WINCHESTER:\nGloucester, we will meet; to thy cost, be sure:\nThy heart-blood I will have for this day's work.\n\nMayor:\nI'll call for clubs, if you will not away.\nThis cardinal's more haughty than the devil.\n\nGLOUCESTER:\nMayor, farewell: thou dost but what thou mayst.\n\nBISHOP OF WINCHESTER:\nAbominable Gloucester, guard thy head;\nFor I intend to have it ere long.\n\nMayor:\nSee the coast clear'd, and then we will depart.\nGood God, these nobles should such stomachs bear!\nI myself fight not once in forty year.\n\nMaster-Gunner:\nSirrah, thou know'st how Orleans is besieged,\nAnd how the English have the suburbs won.\n\nBoy:\nFather, I know; and oft have shot at them,\nHowe'er unfortunate I miss'd my aim.\n\nMaster-Gunner:\nBut now thou shalt not. Be thou ruled by me:\nChief master-gunner am I of this town;\nSomething I must do to procure me grace.\nThe prince's espials have informed me\nHow the English, in the suburbs close intrench'd,\nWont, through a secret grate of iron bars\nIn yonder tower, to overpeer the city,\nAnd thence discover how with most advantage\nThey may vex us with shot, or with assault.\nTo intercept this inconvenience,\nA piece of ordnance 'gainst it I have placed;\nAnd even these three days have I watch'd,\nIf I could see them.\nNow do thou watch, for I can stay no longer.\nIf thou spy'st any, run and bring me word;\nAnd thou shalt find me at the governor's.\n\nBoy:\nFather, I warrant you; take you no care;\nI'll never trouble you, if I may spy them.\n\nSALISBURY:\nTalbot, my life, my joy, again return'd!\nHow wert thou handled being prisoner?\nOr by what means got'st thou to be released?\nDiscourse, I prithee, on this turret's top.\n\nTALBOT:\nThe Duke of Bedford had a prisoner\nCall'd the brave Lord Ponton de Santrailles;\nFor him was I exchanged and ransomed.\nBut with a baser man of arms by far\nOnce in contempt they would have barter'd me:\nWhich I, disdaining, scorn'd; and craved death,\nRather than I would be so vile esteem'd.\nIn fine, redeem'd I was as I desired.\nBut, O! the treacherous Fastolfe wounds my heart,\nWhom with my bare fists I would execute,\nIf I now had him brought into my power.\n\nSALISBURY:\nYet tell'st thou not how thou wert entertain'd.\n\nTALBOT:\nWith scoffs and scorns and contumelious taunts.\nIn open market-place produced they me,\nTo be a public spectacle to all:\nHere, said they, is the terror of the French,\nThe scarecrow that affrights our children so.\nThen broke I from the officers that led me,\nAnd with my nails digg'd stones out of the ground,\nTo hurl at the beholders of my shame:\nMy grisly countenance made others fly;\nNone durst come near for fear of sudden death.\nIn iron walls they deem'd me not secure;\nSo great fear of my name 'mongst them was spread,\nThat they supposed I could rend bars of steel,\nAnd spurn in pieces posts of adamant:\nWherefore a guard of chosen shot I had,\nThat walked about me every minute-while;\nAnd if I did but stir out of my bed,\nReady they were to shoot me to the heart.\n\nSALISBURY:\nI grieve to hear what torments you endured,\nBut we will be revenged sufficiently\nNow it is supper-time in Orleans:\nHere, through this grate, I count each one\nand view the Frenchmen how they fortify:\nLet us look in; the sight will much delight thee.\nSir Thomas Gargrave, and Sir William Glansdale,\nLet me have your express opinions\nWhere is best place to make our battery next.\n\nGARGRAVE:\nI think, at the north gate; for there stand lords.\n\nGLANSDALE:\nAnd I, here, at the bulwark of the bridge.\n\nTALBOT:\nFor aught I see, this city must be famish'd,\nOr with light skirmishes enfeebled.\n\nSALISBURY:\nO Lord, have mercy on us, wretched sinners!\n\nGARGRAVE:\nO Lord, have mercy on me, woful man!\n\nTALBOT:\nWhat chance is this that suddenly hath cross'd us?\nSpeak, Salisbury; at least, if thou canst speak:\nHow farest thou, mirror of all martial men?\nOne of thy eyes and thy cheek's side struck off!\nAccursed tower! accursed fatal hand\nThat hath contrived this woful tragedy!\nIn thirteen battles Salisbury o'ercame;\nHenry the Fifth he first train'd to the wars;\nWhilst any trump did sound, or drum struck up,\nHis sword did ne'er leave striking in the field.\nYet livest thou, Salisbury? though thy speech doth fail,\nOne eye thou hast, to look to heaven for grace:\nThe sun with one eye vieweth all the world.\nHeaven, be thou gracious to none alive,\nIf Salisbury wants mercy at thy hands!\nBear hence his body; I will help to bury it.\nSir Thomas Gargrave, hast thou any life?\nSpeak unto Talbot; nay, look up to him.\nSalisbury, cheer thy spirit with this comfort;\nThou shalt not die whiles--\nHe beckons with his hand and smiles on me.\nAs who should say 'When I am dead and gone,\nRemember to avenge me on the French.'\nPlantagenet, I will; and like thee, Nero,\nPlay on the lute, beholding the towns burn:\nWretched shall France be only in my name.\nWhat stir is this? what tumult's in the heavens?\nWhence cometh this alarum and the noise?\n\nMessenger:\nMy lord, my lord, the French have gathered head:\nThe Dauphin, with one Joan la Pucelle join'd,\nA holy prophetess new risen up,\nIs come with a great power to raise the siege.\n\nTALBOT:\nHear, hear how dying Salisbury doth groan!\nIt irks his heart he cannot be revenged.\nFrenchmen, I'll be a Salisbury to you:\nPucelle or puzzel, dolphin or dogfish,\nYour hearts I'll stamp out with my horse's heels,\nAnd make a quagmire of your mingled brains.\nConvey me Salisbury into his tent,\nAnd then we'll try what these dastard Frenchmen dare.\n\nTALBOT:\nWhere is my strength, my valour, and my force?\nOur English troops retire, I cannot stay them:\nA woman clad in armour chaseth them.\nHere, here she comes. I'll have a bout with thee;\nDevil or devil's dam, I'll conjure thee:\nBlood will I draw on thee, thou art a witch,\nAnd straightway give thy soul to him thou servest.\n\nJOAN LA PUCELLE:\nCome, come, 'tis only I that must disgrace thee.\n\nTALBOT:\nHeavens, can you suffer hell so to prevail?\nMy breast I'll burst with straining of my courage\nAnd from my shoulders crack my arms asunder.\nBut I will chastise this high-minded strumpet.\n\nJOAN LA PUCELLE:\nTalbot, farewell; thy hour is not yet come:\nI must go victual Orleans forthwith.\nO'ertake me, if thou canst; I scorn thy strength.\nGo, go, cheer up thy hungry-starved men;\nHelp Salisbury to make his testament:\nThis day is ours, as many more shall be.\n\nTALBOT:\nMy thoughts are whirled like a potter's wheel;\nI know not where I am, nor what I do;\nA witch, by fear, not force, like Hannibal,\nDrives back our troops and conquers as she lists:\nSo bees with smoke and doves with noisome stench\nAre from their hives and houses driven away.\nThey call'd us for our fierceness English dogs;\nNow, like to whelps, we crying run away.\nHark, countrymen! either renew the fight,\nOr tear the lions out of England's coat;\nRenounce your soil, give sheep in lions' stead:\nSheep run not half so treacherous from the wolf,\nOr horse or oxen from the leopard,\nAs you fly from your oft-subdued slaves.\nIt will not be: retire into your trenches:\nYou all consented unto Salisbury's death,\nFor none would strike a stroke in his revenge.\nPucelle is enter'd into Orleans,\nIn spite of us or aught that we could do.\nO, would I were to die with Salisbury!\nThe shame hereof will make me hide my head.\n\nJOAN LA PUCELLE:\nAdvance our waving colours on the walls;\nRescued is Orleans from the English\nThus Joan la Pucelle hath perform'd her word.\n\nCHARLES:\nDivinest creature, Astraea's daughter,\nHow shall I honour thee for this success?\nThy promises are like Adonis' gardens\nThat one day bloom'd and fruitful were the next.\nFrance, triumph in thy glorious prophetess!\nRecover'd is the town of Orleans:\nMore blessed hap did ne'er befall our state.\n\nREIGNIER:\nWhy ring not out the bells aloud throughout the town?\nDauphin, command the citizens make bonfires\nAnd feast and banquet in the open streets,\nTo celebrate the joy that God hath given us.\n\nALENCON:\nAll France will be replete with mirth and joy,\nWhen they shall hear how we have play'd the men.\n\nCHARLES:\n'Tis Joan, not we, by whom the day is won;\nFor which I will divide my crown with her,\nAnd all the priests and friars in my realm\nShall in procession sing her endless praise.\nA statelier pyramis to her I'll rear\nThan Rhodope's or Memphis' ever was:\nIn memory of her when she is dead,\nHer ashes, in an urn more precious\nThan the rich-jewel'd of Darius,\nTransported shall be at high festivals\nBefore the kings and queens of France.\nNo longer on Saint Denis will we cry,\nBut Joan la Pucelle shall be France's saint.\nCome in, and let us banquet royally,\nAfter this golden day of victory.\n\nSergeant:\nSirs, take your places and be vigilant:\nIf any noise or soldier you perceive\nNear to the walls, by some apparent sign\nLet us have knowledge at the court of guard.\n\nFirst Sentinel:\nSergeant, you shall.\nThus are poor servitors,\nWhen others sleep upon their quiet beds,\nConstrain'd to watch in darkness, rain and cold.\n\nTALBOT:\nLord Regent, and redoubted Burgundy,\nBy whose approach the regions of Artois,\nWallon and Picardy are friends to us,\nThis happy night the Frenchmen are secure,\nHaving all day caroused and banqueted:\nEmbrace we then this opportunity\nAs fitting best to quittance their deceit\nContrived by art and baleful sorcery.\n\nBEDFORD:\nCoward of France! how much he wrongs his fame,\nDespairing of his own arm's fortitude,\nTo join with witches and the help of hell!\n\nBURGUNDY:\nTraitors have never other company.\nBut what's that Pucelle whom they term so pure?\n\nTALBOT:\nA maid, they say.\n\nBEDFORD:\nA maid! and be so martial!\n\nBURGUNDY:\nPray God she prove not masculine ere long,\nIf underneath the standard of the French\nShe carry armour as she hath begun.\n\nTALBOT:\nWell, let them practise and converse with spirits:\nGod is our fortress, in whose conquering name\nLet us resolve to scale their flinty bulwarks.\n\nBEDFORD:\nAscend, brave Talbot; we will follow thee.\n\nTALBOT:\nNot all together: better far, I guess,\nThat we do make our entrance several ways;\nThat, if it chance the one of us do fail,\nThe other yet may rise against their force.\n\nBEDFORD:\nAgreed: I'll to yond corner.\n\nBURGUNDY:\nAnd I to this.\n\nTALBOT:\nAnd here will Talbot mount, or make his grave.\nNow, Salisbury, for thee, and for the right\nOf English Henry, shall this night appear\nHow much in duty I am bound to both.\n\nSentinels:\nArm! arm! the enemy doth make assault!\n\nALENCON:\nHow now, my lords! what, all unready so?\n\nBASTARD OF ORLEANS:\nUnready! ay, and glad we 'scaped so well.\n\nREIGNIER:\n'Twas time, I trow, to wake and leave our beds,\nHearing alarums at our chamber-doors.\n\nALENCON:\nOf all exploits since first I follow'd arms,\nNe'er heard I of a warlike enterprise\nMore venturous or desperate than this.\n\nBASTARD OF ORLEANS:\nI think this Talbot be a fiend of hell.\n\nREIGNIER:\nIf not of hell, the heavens, sure, favour him.\n\nALENCON:\nHere cometh Charles: I marvel how he sped.\n\nBASTARD OF ORLEANS:\nTut, holy Joan was his defensive guard.\n\nCHARLES:\nIs this thy cunning, thou deceitful dame?\nDidst thou at first, to flatter us withal,\nMake us partakers of a little gain,\nThat now our loss might be ten times so much?\n\nJOAN LA PUCELLE:\nWherefore is Charles impatient with his friend!\nAt all times will you have my power alike?\nSleeping or waking must I still prevail,\nOr will you blame and lay the fault on me?\nImprovident soldiers! had your watch been good,\nThis sudden mischief never could have fall'n.\n\nCHARLES:\nDuke of Alencon, this was your default,\nThat, being captain of the watch to-night,\nDid look no better to that weighty charge.\n\nALENCON:\nHad all your quarters been as safely kept\nAs that whereof I had the government,\nWe had not been thus shamefully surprised.\n\nBASTARD OF ORLEANS:\nMine was secure.\n\nREIGNIER:\nAnd so was mine, my lord.\n\nCHARLES:\nAnd, for myself, most part of all this night,\nWithin her quarter and mine own precinct\nI was employ'd in passing to and fro,\nAbout relieving of the sentinels:\nThen how or which way should they first break in?\n\nJOAN LA PUCELLE:\nQuestion, my lords, no further of the case,\nHow or which way: 'tis sure they found some place\nBut weakly guarded, where the breach was made.\nAnd now there rests no other shift but this;\nTo gather our soldiers, scatter'd and dispersed,\nAnd lay new platforms to endamage them.\n\nSoldier:\nI'll be so bold to take what they have left.\nThe cry of Talbot serves me for a sword;\nFor I have loaden me with many spoils,\nUsing no other weapon but his name.\n\nBEDFORD:\nThe day begins to break, and night is fled,\nWhose pitchy mantle over-veil'd the earth.\nHere sound retreat, and cease our hot pursuit.\n\nTALBOT:\nBring forth the body of old Salisbury,\nAnd here advance it in the market-place,\nThe middle centre of this cursed town.\nNow have I paid my vow unto his soul;\nFor every drop of blood was drawn from him,\nThere hath at least five Frenchmen died tonight.\nAnd that hereafter ages may behold\nWhat ruin happen'd in revenge of him,\nWithin their chiefest temple I'll erect\nA tomb, wherein his corpse shall be interr'd:\nUpon the which, that every one may read,\nShall be engraved the sack of Orleans,\nThe treacherous manner of his mournful death\nAnd what a terror he had been to France.\nBut, lords, in all our bloody massacre,\nI muse we met not with the Dauphin's grace,\nHis new-come champion, virtuous Joan of Arc,\nNor any of his false confederates.\n\nBEDFORD:\n'Tis thought, Lord Talbot, when the fight began,\nRoused on the sudden from their drowsy beds,\nThey did amongst the troops of armed men\nLeap o'er the walls for refuge in the field.\n\nBURGUNDY:\nMyself, as far as I could well discern\nFor smoke and dusky vapours of the night,\nAm sure I scared the Dauphin and his trull,\nWhen arm in arm they both came swiftly running,\nLike to a pair of loving turtle-doves\nThat could not live asunder day or night.\nAfter that things are set in order here,\nWe'll follow them with all the power we have.\n\nMessenger:\nAll hail, my lords! which of this princely train\nCall ye the warlike Talbot, for his acts\nSo much applauded through the realm of France?\n\nTALBOT:\nHere is the Talbot: who would speak with him?\n\nMessenger:\nThe virtuous lady, Countess of Auvergne,\nWith modesty admiring thy renown,\nBy me entreats, great lord, thou wouldst vouchsafe\nTo visit her poor castle where she lies,\nThat she may boast she hath beheld the man\nWhose glory fills the world with loud report.\n\nBURGUNDY:\nIs it even so? Nay, then, I see our wars\nWill turn unto a peaceful comic sport,\nWhen ladies crave to be encounter'd with.\nYou may not, my lord, despise her gentle suit.\n\nTALBOT:\nNe'er trust me then; for when a world of men\nCould not prevail with all their oratory,\nYet hath a woman's kindness over-ruled:\nAnd therefore tell her I return great thanks,\nAnd in submission will attend on her.\nWill not your honours bear me company?\n\nBEDFORD:\nNo, truly; it is more than manners will:\nAnd I have heard it said, unbidden guests\nAre often welcomest when they are gone.\n\nTALBOT:\nWell then, alone, since there's no remedy,\nI mean to prove this lady's courtesy.\nCome hither, captain.\nYou perceive my mind?\n\nCaptain:\nI do, my lord, and mean accordingly.\n\nCOUNTESS OF AUVERGNE:\nPorter, remember what I gave in charge;\nAnd when you have done so, bring the keys to me.\n\nPorter:\nMadam, I will.\n\nCOUNTESS OF AUVERGNE:\nThe plot is laid: if all things fall out right,\nI shall as famous be by this exploit\nAs Scythian Tomyris by Cyrus' death.\nGreat is the rumor of this dreadful knight,\nAnd his achievements of no less account:\nFain would mine eyes be witness with mine ears,\nTo give their censure of these rare reports.\n\nMessenger:\nMadam,\nAccording as your ladyship desired,\nBy message craved, so is Lord Talbot come.\n\nCOUNTESS OF AUVERGNE:\nAnd he is welcome. What! is this the man?\n\nMessenger:\nMadam, it is.\n\nCOUNTESS OF AUVERGNE:\nIs this the scourge of France?\nIs this the Talbot, so much fear'd abroad\nThat with his name the mothers still their babes?\nI see report is fabulous and false:\nI thought I should have seen some Hercules,\nA second Hector, for his grim aspect,\nAnd large proportion of his strong-knit limbs.\nAlas, this is a child, a silly dwarf!\nIt cannot be this weak and writhled shrimp\nShould strike such terror to his enemies.\n\nTALBOT:\nMadam, I have been bold to trouble you;\nBut since your ladyship is not at leisure,\nI'll sort some other time to visit you.\n\nCOUNTESS OF AUVERGNE:\nWhat means he now? Go ask him whither he goes.\n\nMessenger:\nStay, my Lord Talbot; for my lady craves\nTo know the cause of your abrupt departure.\n\nTALBOT:\nMarry, for that she's in a wrong belief,\nI go to certify her Talbot's here.\n\nCOUNTESS OF AUVERGNE:\nIf thou be he, then art thou prisoner.\n\nTALBOT:\nPrisoner! to whom?\n\nCOUNTESS OF AUVERGNE:\nTo me, blood-thirsty lord;\nAnd for that cause I trained thee to my house.\nLong time thy shadow hath been thrall to me,\nFor in my gallery thy picture hangs:\nBut now the substance shall endure the like,\nAnd I will chain these legs and arms of thine,\nThat hast by tyranny these many years\nWasted our country, slain our citizens\nAnd sent our sons and husbands captivate.\n\nTALBOT:\nHa, ha, ha!\n\nCOUNTESS OF AUVERGNE:\nLaughest thou, wretch? thy mirth shall turn to moan.\n\nTALBOT:\nI laugh to see your ladyship so fond\nTo think that you have aught but Talbot's shadow\nWhereon to practise your severity.\n\nCOUNTESS OF AUVERGNE:\nWhy, art not thou the man?\n\nTALBOT:\nI am indeed.\n\nCOUNTESS OF AUVERGNE:\nThen have I substance too.\n\nTALBOT:\nNo, no, I am but shadow of myself:\nYou are deceived, my substance is not here;\nFor what you see is but the smallest part\nAnd least proportion of humanity:\nI tell you, madam, were the whole frame here,\nIt is of such a spacious lofty pitch,\nYour roof were not sufficient to contain't.\n\nCOUNTESS OF AUVERGNE:\nThis is a riddling merchant for the nonce;\nHe will be here, and yet he is not here:\nHow can these contrarieties agree?\n\nTALBOT:\nThat will I show you presently.\nHow say you, madam? are you now persuaded\nThat Talbot is but shadow of himself?\nThese are his substance, sinews, arms and strength,\nWith which he yoketh your rebellious necks,\nRazeth your cities and subverts your towns\nAnd in a moment makes them desolate.\n\nCOUNTESS OF AUVERGNE:\nVictorious Talbot! pardon my abuse:\nI find thou art no less than fame hath bruited\nAnd more than may be gather'd by thy shape.\nLet my presumption not provoke thy wrath;\nFor I am sorry that with reverence\nI did not entertain thee as thou art.\n\nTALBOT:\nBe not dismay'd, fair lady; nor misconstrue\nThe mind of Talbot, as you did mistake\nThe outward composition of his body.\nWhat you have done hath not offended me;\nNor other satisfaction do I crave,\nBut only, with your patience, that we may\nTaste of your wine and see what cates you have;\nFor soldiers' stomachs always serve them well.\n\nCOUNTESS OF AUVERGNE:\nWith all my heart, and think me honoured\nTo feast so great a warrior in my house.\n\nRICHARD PLANTAGENET:\nGreat lords and gentlemen, what means this silence?\nDare no man answer in a case of truth?\n\nSUFFOLK:\nWithin the Temple-hall we were too loud;\nThe garden here is more convenient.\n\nRICHARD PLANTAGENET:\nThen say at once if I maintain'd the truth;\nOr else was wrangling Somerset in the error?\n\nSUFFOLK:\nFaith, I have been a truant in the law,\nAnd never yet could frame my will to it;\nAnd therefore frame the law unto my will.\n\nSOMERSET:\nJudge you, my Lord of Warwick, then, between us.\n\nWARWICK:\nBetween two hawks, which flies the higher pitch;\nBetween two dogs, which hath the deeper mouth;\nBetween two blades, which bears the better temper:\nBetween two horses, which doth bear him best;\nBetween two girls, which hath the merriest eye;\nI have perhaps some shallow spirit of judgement;\nBut in these nice sharp quillets of the law,\nGood faith, I am no wiser than a daw.\n\nRICHARD PLANTAGENET:\nTut, tut, here is a mannerly forbearance:\nThe truth appears so naked on my side\nThat any purblind eye may find it out.\n\nSOMERSET:\nAnd on my side it is so well apparell'd,\nSo clear, so shining and so evident\nThat it will glimmer through a blind man's eye.\n\nRICHARD PLANTAGENET:\nSince you are tongue-tied and so loath to speak,\nIn dumb significants proclaim your thoughts:\nLet him that is a true-born gentleman\nAnd stands upon the honour of his birth,\nIf he suppose that I have pleaded truth,\nFrom off this brier pluck a white rose with me.\n\nSOMERSET:\nLet him that is no coward nor no flatterer,\nBut dare maintain the party of the truth,\nPluck a red rose from off this thorn with me.\n\nWARWICK:\nI love no colours, and without all colour\nOf base insinuating flattery\nI pluck this white rose with Plantagenet.\n\nSUFFOLK:\nI pluck this red rose with young Somerset\nAnd say withal I think he held the right.\n\nVERNON:\nStay, lords and gentlemen, and pluck no more,\nTill you conclude that he upon whose side\nThe fewest roses are cropp'd from the tree\nShall yield the other in the right opinion.\n\nSOMERSET:\nGood Master Vernon, it is well objected:\nIf I have fewest, I subscribe in silence.\n\nRICHARD PLANTAGENET:\nAnd I.\n\nVERNON:\nThen for the truth and plainness of the case.\nI pluck this pale and maiden blossom here,\nGiving my verdict on the white rose side.\n\nSOMERSET:\nPrick not your finger as you pluck it off,\nLest bleeding you do paint the white rose red\nAnd fall on my side so, against your will.\n\nVERNON:\nIf I my lord, for my opinion bleed,\nOpinion shall be surgeon to my hurt\nAnd keep me on the side where still I am.\n\nSOMERSET:\nWell, well, come on: who else?\n\nLawyer:\nUnless my study and my books be false,\nThe argument you held was wrong in you:\nIn sign whereof I pluck a white rose too.\n\nRICHARD PLANTAGENET:\nNow, Somerset, where is your argument?\n\nSOMERSET:\nHere in my scabbard, meditating that\nShall dye your white rose in a bloody red.\n\nRICHARD PLANTAGENET:\nMeantime your cheeks do counterfeit our roses;\nFor pale they look with fear, as witnessing\nThe truth on our side.\n\nSOMERSET:\nNo, Plantagenet,\n'Tis not for fear but anger that thy cheeks\nBlush for pure shame to counterfeit our roses,\nAnd yet thy tongue will not confess thy error.\n\nRICHARD PLANTAGENET:\nHath not thy rose a canker, Somerset?\n\nSOMERSET:\nHath not thy rose a thorn, Plantagenet?\n\nRICHARD PLANTAGENET:\nAy, sharp and piercing, to maintain his truth;\nWhiles thy consuming canker eats his falsehood.\n\nSOMERSET:\nWell, I'll find friends to wear my bleeding roses,\nThat shall maintain what I have said is true,\nWhere false Plantagenet dare not be seen.\n\nRICHARD PLANTAGENET:\nNow, by this maiden blossom in my hand,\nI scorn thee and thy fashion, peevish boy.\n\nSUFFOLK:\nTurn not thy scorns this way, Plantagenet.\n\nRICHARD PLANTAGENET:\nProud Pole, I will, and scorn both him and thee.\n\nSUFFOLK:\nI'll turn my part thereof into thy throat.\n\nSOMERSET:\nAway, away, good William de la Pole!\nWe grace the yeoman by conversing with him.\n\nWARWICK:\nNow, by God's will, thou wrong'st him, Somerset;\nHis grandfather was Lionel Duke of Clarence,\nThird son to the third Edward King of England:\nSpring crestless yeomen from so deep a root?\n\nRICHARD PLANTAGENET:\nHe bears him on the place's privilege,\nOr durst not, for his craven heart, say thus.\n\nSOMERSET:\nBy him that made me, I'll maintain my words\nOn any plot of ground in Christendom.\nWas not thy father, Richard Earl of Cambridge,\nFor treason executed in our late king's days?\nAnd, by his treason, stand'st not thou attainted,\nCorrupted, and exempt from ancient gentry?\nHis trespass yet lives guilty in thy blood;\nAnd, till thou be restored, thou art a yeoman.\n\nRICHARD PLANTAGENET:\nMy father was attached, not attainted,\nCondemn'd to die for treason, but no traitor;\nAnd that I'll prove on better men than Somerset,\nWere growing time once ripen'd to my will.\nFor your partaker Pole and you yourself,\nI'll note you in my book of memory,\nTo scourge you for this apprehension:\nLook to it well and say you are well warn'd.\n\nSOMERSET:\nAh, thou shalt find us ready for thee still;\nAnd know us by these colours for thy foes,\nFor these my friends in spite of thee shall wear.\n\nRICHARD PLANTAGENET:\nAnd, by my soul, this pale and angry rose,\nAs cognizance of my blood-drinking hate,\nWill I for ever and my faction wear,\nUntil it wither with me to my grave\nOr flourish to the height of my degree.\n\nSUFFOLK:\nGo forward and be choked with thy ambition!\nAnd so farewell until I meet thee next.\n\nSOMERSET:\nHave with thee, Pole. Farewell, ambitious Richard.\n\nRICHARD PLANTAGENET:\nHow I am braved and must perforce endure it!\n\nWARWICK:\nThis blot that they object against your house\nShall be wiped out in the next parliament\nCall'd for the truce of Winchester and Gloucester;\nAnd if thou be not then created York,\nI will not live to be accounted Warwick.\nMeantime, in signal of my love to thee,\nAgainst proud Somerset and William Pole,\nWill I upon thy party wear this rose:\nAnd here I prophesy: this brawl to-day,\nGrown to this faction in the Temple-garden,\nShall send between the red rose and the white\nA thousand souls to death and deadly night.\n\nRICHARD PLANTAGENET:\nGood Master Vernon, I am bound to you,\nThat you on my behalf would pluck a flower.\n\nVERNON:\nIn your behalf still will I wear the same.\n\nLawyer:\nAnd so will I.\n\nRICHARD PLANTAGENET:\nThanks, gentle sir.\nCome, let us four to dinner: I dare say\nThis quarrel will drink blood another day.\n\nMORTIMER:\nKind keepers of my weak decaying age,\nLet dying Mortimer here rest himself.\nEven like a man new haled from the rack,\nSo fare my limbs with long imprisonment.\nAnd these grey locks, the pursuivants of death,\nNestor-like aged in an age of care,\nArgue the end of Edmund Mortimer.\nThese eyes, like lamps whose wasting oil is spent,\nWax dim, as drawing to their exigent;\nWeak shoulders, overborne with burthening grief,\nAnd pithless arms, like to a wither'd vine\nThat droops his sapless branches to the ground;\nYet are these feet, whose strengthless stay is numb,\nUnable to support this lump of clay,\nSwift-winged with desire to get a grave,\nAs witting I no other comfort have.\nBut tell me, keeper, will my nephew come?\n\nFirst Gaoler:\nRichard Plantagenet, my lord, will come:\nWe sent unto the Temple, unto his chamber;\nAnd answer was return'd that he will come.\n\nMORTIMER:\nEnough: my soul shall then be satisfied.\nPoor gentleman! his wrong doth equal mine.\nSince Henry Monmouth first began to reign,\nBefore whose glory I was great in arms,\nThis loathsome sequestration have I had:\nAnd even since then hath Richard been obscured,\nDeprived of honour and inheritance.\nBut now the arbitrator of despairs,\nJust death, kind umpire of men's miseries,\nWith sweet enlargement doth dismiss me hence:\nI would his troubles likewise were expired,\nThat so he might recover what was lost.\n\nFirst Gaoler:\nMy lord, your loving nephew now is come.\n\nMORTIMER:\nRichard Plantagenet, my friend, is he come?\n\nRICHARD PLANTAGENET:\nAy, noble uncle, thus ignobly used,\nYour nephew, late despised Richard, comes.\n\nMORTIMER:\nDirect mine arms I may embrace his neck,\nAnd in his bosom spend my latter gasp:\nO, tell me when my lips do touch his cheeks,\nThat I may kindly give one fainting kiss.\nAnd now declare, sweet stem from York's great stock,\nWhy didst thou say, of late thou wert despised?\n\nRICHARD PLANTAGENET:\nFirst, lean thine aged back against mine arm;\nAnd, in that ease, I'll tell thee my disease.\nThis day, in argument upon a case,\nSome words there grew 'twixt Somerset and me;\nAmong which terms he used his lavish tongue\nAnd did upbraid me with my father's death:\nWhich obloquy set bars before my tongue,\nElse with the like I had requited him.\nTherefore, good uncle, for my father's sake,\nIn honour of a true Plantagenet\nAnd for alliance sake, declare the cause\nMy father, Earl of Cambridge, lost his head.\n\nMORTIMER:\nThat cause, fair nephew, that imprison'd me\nAnd hath detain'd me all my flowering youth\nWithin a loathsome dungeon, there to pine,\nWas cursed instrument of his decease.\n\nRICHARD PLANTAGENET:\nDiscover more at large what cause that was,\nFor I am ignorant and cannot guess.\n\nMORTIMER:\nI will, if that my fading breath permit\nAnd death approach not ere my tale be done.\nHenry the Fourth, grandfather to this king,\nDeposed his nephew Richard, Edward's son,\nThe first-begotten and the lawful heir,\nOf Edward king, the third of that descent:\nDuring whose reign the Percies of the north,\nFinding his usurpation most unjust,\nEndeavor'd my advancement to the throne:\nThe reason moved these warlike lords to this\nWas, for that--young King Richard thus removed,\nLeaving no heir begotten of his body--\nI was the next by birth and parentage;\nFor by my mother I derived am\nFrom Lionel Duke of Clarence, the third son\nTo King Edward the Third; whereas he\nFrom John of Gaunt doth bring his pedigree,\nBeing but fourth of that heroic line.\nBut mark: as in this haughty attempt\nThey laboured to plant the rightful heir,\nI lost my liberty and they their lives.\nLong after this, when Henry the Fifth,\nSucceeding his father Bolingbroke, did reign,\nThy father, Earl of Cambridge, then derived\nFrom famous Edmund Langley, Duke of York,\nMarrying my sister that thy mother was,\nAgain in pity of my hard distress\nLevied an army, weening to redeem\nAnd have install'd me in the diadem:\nBut, as the rest, so fell that noble earl\nAnd was beheaded. Thus the Mortimers,\nIn whom the tide rested, were suppress'd.\n\nRICHARD PLANTAGENET:\nOf which, my lord, your honour is the last.\n\nMORTIMER:\nTrue; and thou seest that I no issue have\nAnd that my fainting words do warrant death;\nThou art my heir; the rest I wish thee gather:\nBut yet be wary in thy studious care.\n\nRICHARD PLANTAGENET:\nThy grave admonishments prevail with me:\nBut yet, methinks, my father's execution\nWas nothing less than bloody tyranny.\n\nMORTIMER:\nWith silence, nephew, be thou politic:\nStrong-fixed is the house of Lancaster,\nAnd like a mountain, not to be removed.\nBut now thy uncle is removing hence:\nAs princes do their courts, when they are cloy'd\nWith long continuance in a settled place.\n\nRICHARD PLANTAGENET:\nO, uncle, would some part of my young years\nMight but redeem the passage of your age!\n\nMORTIMER:\nThou dost then wrong me, as that slaughterer doth\nWhich giveth many wounds when one will kill.\nMourn not, except thou sorrow for my good;\nOnly give order for my funeral:\nAnd so farewell, and fair be all thy hopes\nAnd prosperous be thy life in peace and war!\n\nRICHARD PLANTAGENET:\nAnd peace, no war, befall thy parting soul!\nIn prison hast thou spent a pilgrimage\nAnd like a hermit overpass'd thy days.\nWell, I will lock his counsel in my breast;\nAnd what I do imagine let that rest.\nKeepers, convey him hence, and I myself\nWill see his burial better than his life.\nHere dies the dusky torch of Mortimer,\nChoked with ambition of the meaner sort:\nAnd for those wrongs, those bitter injuries,\nWhich Somerset hath offer'd to my house:\nI doubt not but with honour to redress;\nAnd therefore haste I to the parliament,\nEither to be restored to my blood,\nOr make my ill the advantage of my good.\n\nBISHOP OF WINCHESTER:\nComest thou with deep premeditated lines,\nWith written pamphlets studiously devised,\nHumphrey of Gloucester? If thou canst accuse,\nOr aught intend'st to lay unto my charge,\nDo it without invention, suddenly;\nAs I with sudden and extemporal speech\nPurpose to answer what thou canst object.\n\nGLOUCESTER:\nPresumptuous priest! this place commands my patience,\nOr thou shouldst find thou hast dishonour'd me.\nThink not, although in writing I preferr'd\nThe manner of thy vile outrageous crimes,\nThat therefore I have forged, or am not able\nVerbatim to rehearse the method of my pen:\nNo, prelate; such is thy audacious wickedness,\nThy lewd, pestiferous and dissentious pranks,\nAs very infants prattle of thy pride.\nThou art a most pernicious usurer,\nForward by nature, enemy to peace;\nLascivious, wanton, more than well beseems\nA man of thy profession and degree;\nAnd for thy treachery, what's more manifest?\nIn that thou laid'st a trap to take my life,\nAs well at London bridge as at the Tower.\nBeside, I fear me, if thy thoughts were sifted,\nThe king, thy sovereign, is not quite exempt\nFrom envious malice of thy swelling heart.\n\nBISHOP OF WINCHESTER:\nGloucester, I do defy thee. Lords, vouchsafe\nTo give me hearing what I shall reply.\nIf I were covetous, ambitious or perverse,\nAs he will have me, how am I so poor?\nOr how haps it I seek not to advance\nOr raise myself, but keep my wonted calling?\nAnd for dissension, who preferreth peace\nMore than I do?--except I be provoked.\nNo, my good lords, it is not that offends;\nIt is not that that hath incensed the duke:\nIt is, because no one should sway but he;\nNo one but he should be about the king;\nAnd that engenders thunder in his breast\nAnd makes him roar these accusations forth.\nBut he shall know I am as good--\n\nGLOUCESTER:\nAs good!\nThou bastard of my grandfather!\n\nBISHOP OF WINCHESTER:\nAy, lordly sir; for what are you, I pray,\nBut one imperious in another's throne?\n\nGLOUCESTER:\nAm I not protector, saucy priest?\n\nBISHOP OF WINCHESTER:\nAnd am not I a prelate of the church?\n\nGLOUCESTER:\nYes, as an outlaw in a castle keeps\nAnd useth it to patronage his theft.\n\nBISHOP OF WINCHESTER:\nUnreverent Gloster!\n\nGLOUCESTER:\nThou art reverent\nTouching thy spiritual function, not thy life.\n\nBISHOP OF WINCHESTER:\nRome shall remedy this.\n\nWARWICK:\nRoam thither, then.\n\nSOMERSET:\nMy lord, it were your duty to forbear.\n\nWARWICK:\nAy, see the bishop be not overborne.\n\nSOMERSET:\nMethinks my lord should be religious\nAnd know the office that belongs to such.\n\nWARWICK:\nMethinks his lordship should be humbler;\nit fitteth not a prelate so to plead.\n\nSOMERSET:\nYes, when his holy state is touch'd so near.\n\nWARWICK:\nState holy or unhallow'd, what of that?\nIs not his grace protector to the king?\n\nRICHARD PLANTAGENET:\n\nKING HENRY VI:\nUncles of Gloucester and of Winchester,\nThe special watchmen of our English weal,\nI would prevail, if prayers might prevail,\nTo join your hearts in love and amity.\nO, what a scandal is it to our crown,\nThat two such noble peers as ye should jar!\nBelieve me, lords, my tender years can tell\nCivil dissension is a viperous worm\nThat gnaws the bowels of the commonwealth.\nWhat tumult's this?\n\nWARWICK:\nAn uproar, I dare warrant,\nBegun through malice of the bishop's men.\n\nMayor:\nO, my good lords, and virtuous Henry,\nPity the city of London, pity us!\nThe bishop and the Duke of Gloucester's men,\nForbidden late to carry any weapon,\nHave fill'd their pockets full of pebble stones\nAnd banding themselves in contrary parts\nDo pelt so fast at one another's pate\nThat many have their giddy brains knock'd out:\nOur windows are broke down in every street\nAnd we for fear compell'd to shut our shops.\n\nKING HENRY VI:\nWe charge you, on allegiance to ourself,\nTo hold your slaughtering hands and keep the peace.\nPray, uncle Gloucester, mitigate this strife.\n\nFirst Serving-man:\nNay, if we be forbidden stones,\nWe'll fall to it with our teeth.\n\nSecond Serving-man:\nDo what ye dare, we are as resolute.\n\nGLOUCESTER:\nYou of my household, leave this peevish broil\nAnd set this unaccustom'd fight aside.\n\nThird Serving-man:\nMy lord, we know your grace to be a man\nJust and upright; and, for your royal birth,\nInferior to none but to his majesty:\nAnd ere that we will suffer such a prince,\nSo kind a father of the commonweal,\nTo be disgraced by an inkhorn mate,\nWe and our wives and children all will fight\nAnd have our bodies slaughtered by thy foes.\n\nFirst Serving-man:\nAy, and the very parings of our nails\nShall pitch a field when we are dead.\n\nGLOUCESTER:\nStay, stay, I say!\nAnd if you love me, as you say you do,\nLet me persuade you to forbear awhile.\n\nKING HENRY VI:\nO, how this discord doth afflict my soul!\nCan you, my Lord of Winchester, behold\nMy sighs and tears and will not once relent?\nWho should be pitiful, if you be not?\nOr who should study to prefer a peace.\nIf holy churchmen take delight in broils?\n\nWARWICK:\nYield, my lord protector; yield, Winchester;\nExcept you mean with obstinate repulse\nTo slay your sovereign and destroy the realm.\nYou see what mischief and what murder too\nHath been enacted through your enmity;\nThen be at peace except ye thirst for blood.\n\nBISHOP OF WINCHESTER:\nHe shall submit, or I will never yield.\n\nGLOUCESTER:\nCompassion on the king commands me stoop;\nOr I would see his heart out, ere the priest\nShould ever get that privilege of me.\n\nWARWICK:\nBehold, my Lord of Winchester, the duke\nHath banish'd moody discontented fury,\nAs by his smoothed brows it doth appear:\nWhy look you still so stern and tragical?\n\nGLOUCESTER:\nHere, Winchester, I offer thee my hand.\n\nKING HENRY VI:\nFie, uncle Beaufort! I have heard you preach\nThat malice was a great and grievous sin;\nAnd will not you maintain the thing you teach,\nBut prove a chief offender in the same?\n\nWARWICK:\nSweet king! the bishop hath a kindly gird.\nFor shame, my lord of Winchester, relent!\nWhat, shall a child instruct you what to do?\n\nBISHOP OF WINCHESTER:\nWell, Duke of Gloucester, I will yield to thee;\nLove for thy love and hand for hand I give.\n\nGLOUCESTER:\n\nBISHOP OF WINCHESTER:\n\nKING HENRY VI:\nO, loving uncle, kind Duke of Gloucester,\nHow joyful am I made by this contract!\nAway, my masters! trouble us no more;\nBut join in friendship, as your lords have done.\n\nFirst Serving-man:\nContent: I'll to the surgeon's.\n\nSecond Serving-man:\nAnd so will I.\n\nThird Serving-man:\nAnd I will see what physic the tavern affords.\n\nWARWICK:\nAccept this scroll, most gracious sovereign,\nWhich in the right of Richard Plantagenet\nWe do exhibit to your majesty.\n\nGLOUCESTER:\nWell urged, my Lord of Warwick: or sweet prince,\nAnd if your grace mark every circumstance,\nYou have great reason to do Richard right;\nEspecially for those occasions\nAt Eltham Place I told your majesty.\n\nKING HENRY VI:\nAnd those occasions, uncle, were of force:\nTherefore, my loving lords, our pleasure is\nThat Richard be restored to his blood.\n\nWARWICK:\nLet Richard be restored to his blood;\nSo shall his father's wrongs be recompensed.\n\nBISHOP OF WINCHESTER:\nAs will the rest, so willeth Winchester.\n\nKING HENRY VI:\nIf Richard will be true, not that alone\nBut all the whole inheritance I give\nThat doth belong unto the house of York,\nFrom whence you spring by lineal descent.\n\nRICHARD PLANTAGENET:\nThy humble servant vows obedience\nAnd humble service till the point of death.\n\nKING HENRY VI:\nStoop then and set your knee against my foot;\nAnd, in reguerdon of that duty done,\nI gird thee with the valiant sword of York:\nRise Richard, like a true Plantagenet,\nAnd rise created princely Duke of York.\n\nRICHARD PLANTAGENET:\nAnd so thrive Richard as thy foes may fall!\nAnd as my duty springs, so perish they\nThat grudge one thought against your majesty!\n\nALL:\nWelcome, high prince, the mighty Duke of York!\n\nSOMERSET:\n\nGLOUCESTER:\nNow will it best avail your majesty\nTo cross the seas and to be crown'd in France:\nThe presence of a king engenders love\nAmongst his subjects and his loyal friends,\nAs it disanimates his enemies.\n\nKING HENRY VI:\nWhen Gloucester says the word, King Henry goes;\nFor friendly counsel cuts off many foes.\n\nGLOUCESTER:\nYour ships already are in readiness.\n\nEXETER:\nAy, we may march in England or in France,\nNot seeing what is likely to ensue.\nThis late dissension grown betwixt the peers\nBurns under feigned ashes of forged love\nAnd will at last break out into a flame:\nAs fester'd members rot but by degree,\nTill bones and flesh and sinews fall away,\nSo will this base and envious discord breed.\nAnd now I fear that fatal prophecy\nWhich in the time of Henry named the Fifth\nWas in the mouth of every sucking babe;\nThat Henry born at Monmouth should win all\nAnd Henry born at Windsor lose all:\nWhich is so plain that Exeter doth wish\nHis days may finish ere that hapless time.\n\nJOAN LA PUCELLE:\nThese are the city gates, the gates of Rouen,\nThrough which our policy must make a breach:\nTake heed, be wary how you place your words;\nTalk like the vulgar sort of market men\nThat come to gather money for their corn.\nIf we have entrance, as I hope we shall,\nAnd that we find the slothful watch but weak,\nI'll by a sign give notice to our friends,\nThat Charles the Dauphin may encounter them.\n\nFirst Soldier:\nOur sacks shall be a mean to sack the city,\nAnd we be lords and rulers over Rouen;\nTherefore we'll knock.\n\nWatch:\n\nJOAN LA PUCELLE:\nPaysans, pauvres gens de France;\nPoor market folks that come to sell their corn.\n\nWatch:\nEnter, go in; the market bell is rung.\n\nJOAN LA PUCELLE:\nNow, Rouen, I'll shake thy bulwarks to the ground.\n\nCHARLES:\nSaint Denis bless this happy stratagem!\nAnd once again we'll sleep secure in Rouen.\n\nBASTARD OF ORLEANS:\nHere enter'd Pucelle and her practisants;\nNow she is there, how will she specify\nWhere is the best and safest passage in?\n\nREIGNIER:\nBy thrusting out a torch from yonder tower;\nWhich, once discern'd, shows that her meaning is,\nNo way to that, for weakness, which she enter'd.\n\nJOAN LA PUCELLE:\nBehold, this is the happy wedding torch\nThat joineth Rouen unto her countrymen,\nBut burning fatal to the Talbotites!\n\nBASTARD OF ORLEANS:\nSee, noble Charles, the beacon of our friend;\nThe burning torch in yonder turret stands.\n\nCHARLES:\nNow shine it like a comet of revenge,\nA prophet to the fall of all our foes!\n\nREIGNIER:\nDefer no time, delays have dangerous ends;\nEnter, and cry 'The Dauphin!' presently,\nAnd then do execution on the watch.\n\nTALBOT:\nFrance, thou shalt rue this treason with thy tears,\nIf Talbot but survive thy treachery.\nPucelle, that witch, that damned sorceress,\nHath wrought this hellish mischief unawares,\nThat hardly we escaped the pride of France.\n\nJOAN LA PUCELLE:\nGood morrow, gallants! want ye corn for bread?\nI think the Duke of Burgundy will fast\nBefore he'll buy again at such a rate:\n'Twas full of darnel; do you like the taste?\n\nBURGUNDY:\nScoff on, vile fiend and shameless courtezan!\nI trust ere long to choke thee with thine own\nAnd make thee curse the harvest of that corn.\n\nCHARLES:\nYour grace may starve perhaps before that time.\n\nBEDFORD:\nO, let no words, but deeds, revenge this treason!\n\nJOAN LA PUCELLE:\nWhat will you do, good grey-beard? break a lance,\nAnd run a tilt at death within a chair?\n\nTALBOT:\nFoul fiend of France, and hag of all despite,\nEncompass'd with thy lustful paramours!\nBecomes it thee to taunt his valiant age\nAnd twit with cowardice a man half dead?\nDamsel, I'll have a bout with you again,\nOr else let Talbot perish with this shame.\n\nJOAN LA PUCELLE:\nAre ye so hot, sir? yet, Pucelle, hold thy peace;\nIf Talbot do but thunder, rain will follow.\nGod speed the parliament! who shall be the speaker?\n\nTALBOT:\nDare ye come forth and meet us in the field?\n\nJOAN LA PUCELLE:\nBelike your lordship takes us then for fools,\nTo try if that our own be ours or no.\n\nTALBOT:\nI speak not to that railing Hecate,\nBut unto thee, Alencon, and the rest;\nWill ye, like soldiers, come and fight it out?\n\nALENCON:\nSignior, no.\n\nTALBOT:\nSignior, hang! base muleters of France!\nLike peasant foot-boys do they keep the walls\nAnd dare not take up arms like gentlemen.\n\nJOAN LA PUCELLE:\nAway, captains! let's get us from the walls;\nFor Talbot means no goodness by his looks.\nGod be wi' you, my lord! we came but to tell you\nThat we are here.\n\nTALBOT:\nAnd there will we be too, ere it be long,\nOr else reproach be Talbot's greatest fame!\nVow, Burgundy, by honour of thy house,\nPrick'd on by public wrongs sustain'd in France,\nEither to get the town again or die:\nAnd I, as sure as English Henry lives\nAnd as his father here was conqueror,\nAs sure as in this late-betrayed town\nGreat Coeur-de-lion's heart was buried,\nSo sure I swear to get the town or die.\n\nBURGUNDY:\nMy vows are equal partners with thy vows.\n\nTALBOT:\nBut, ere we go, regard this dying prince,\nThe valiant Duke of Bedford. Come, my lord,\nWe will bestow you in some better place,\nFitter for sickness and for crazy age.\n\nBEDFORD:\nLord Talbot, do not so dishonour me:\nHere will I sit before the walls of Rouen\nAnd will be partner of your weal or woe.\n\nBURGUNDY:\nCourageous Bedford, let us now persuade you.\n\nBEDFORD:\nNot to be gone from hence; for once I read\nThat stout Pendragon in his litter sick\nCame to the field and vanquished his foes:\nMethinks I should revive the soldiers' hearts,\nBecause I ever found them as myself.\n\nTALBOT:\nUndaunted spirit in a dying breast!\nThen be it so: heavens keep old Bedford safe!\nAnd now no more ado, brave Burgundy,\nBut gather we our forces out of hand\nAnd set upon our boasting enemy.\n\nCaptain:\nWhither away, Sir John Fastolfe, in such haste?\n\nFASTOLFE:\nWhither away! to save myself by flight:\nWe are like to have the overthrow again.\n\nCaptain:\nWhat! will you fly, and leave Lord Talbot?\n\nFASTOLFE:\nAy,\nAll the Talbots in the world, to save my life!\n\nCaptain:\nCowardly knight! ill fortune follow thee!\n\nBEDFORD:\nNow, quiet soul, depart when heaven please,\nFor I have seen our enemies' overthrow.\nWhat is the trust or strength of foolish man?\nThey that of late were daring with their scoffs\nAre glad and fain by flight to save themselves.\n\nTALBOT:\nLost, and recover'd in a day again!\nThis is a double honour, Burgundy:\nYet heavens have glory for this victory!\n\nBURGUNDY:\nWarlike and martial Talbot, Burgundy\nEnshrines thee in his heart and there erects\nThy noble deeds as valour's monuments.\n\nTALBOT:\nThanks, gentle duke. But where is Pucelle now?\nI think her old familiar is asleep:\nNow where's the Bastard's braves, and Charles his gleeks?\nWhat, all amort? Rouen hangs her head for grief\nThat such a valiant company are fled.\nNow will we take some order in the town,\nPlacing therein some expert officers,\nAnd then depart to Paris to the king,\nFor there young Henry with his nobles lie.\n\nBURGUNDY:\nWhat wills Lord Talbot pleaseth Burgundy.\n\nTALBOT:\nBut yet, before we go, let's not forget\nThe noble Duke of Bedford late deceased,\nBut see his exequies fulfill'd in Rouen:\nA braver soldier never couched lance,\nA gentler heart did never sway in court;\nBut kings and mightiest potentates must die,\nFor that's the end of human misery.\n\nJOAN LA PUCELLE:\nDismay not, princes, at this accident,\nNor grieve that Rouen is so recovered:\nCare is no cure, but rather corrosive,\nFor things that are not to be remedied.\nLet frantic Talbot triumph for a while\nAnd like a peacock sweep along his tail;\nWe'll pull his plumes and take away his train,\nIf Dauphin and the rest will be but ruled.\n\nCHARLES:\nWe have been guided by thee hitherto,\nAnd of thy cunning had no diffidence:\nOne sudden foil shall never breed distrust.\n\nBASTARD OF ORLEANS:\nSearch out thy wit for secret policies,\nAnd we will make thee famous through the world.\n\nALENCON:\nWe'll set thy statue in some holy place,\nAnd have thee reverenced like a blessed saint:\nEmploy thee then, sweet virgin, for our good.\n\nJOAN LA PUCELLE:\nThen thus it must be; this doth Joan devise:\nBy fair persuasions mix'd with sugar'd words\nWe will entice the Duke of Burgundy\nTo leave the Talbot and to follow us.\n\nCHARLES:\nAy, marry, sweeting, if we could do that,\nFrance were no place for Henry's warriors;\nNor should that nation boast it so with us,\nBut be extirped from our provinces.\n\nALENCON:\nFor ever should they be expulsed from France\nAnd not have title of an earldom here.\n\nJOAN LA PUCELLE:\nYour honours shall perceive how I will work\nTo bring this matter to the wished end.\nHark! by the sound of drum you may perceive\nTheir powers are marching unto Paris-ward.\nThere goes the Talbot, with his colours spread,\nAnd all the troops of English after him.\nNow in the rearward comes the duke and his:\nFortune in favour makes him lag behind.\nSummon a parley; we will talk with him.\n\nCHARLES:\nA parley with the Duke of Burgundy!\n\nBURGUNDY:\nWho craves a parley with the Burgundy?\n\nJOAN LA PUCELLE:\nThe princely Charles of France, thy countryman.\n\nBURGUNDY:\nWhat say'st thou, Charles? for I am marching hence.\n\nCHARLES:\nSpeak, Pucelle, and enchant him with thy words.\n\nJOAN LA PUCELLE:\nBrave Burgundy, undoubted hope of France!\nStay, let thy humble handmaid speak to thee.\n\nBURGUNDY:\nSpeak on; but be not over-tedious.\n\nJOAN LA PUCELLE:\nLook on thy country, look on fertile France,\nAnd see the cities and the towns defaced\nBy wasting ruin of the cruel foe.\nAs looks the mother on her lowly babe\nWhen death doth close his tender dying eyes,\nSee, see the pining malady of France;\nBehold the wounds, the most unnatural wounds,\nWhich thou thyself hast given her woful breast.\nO, turn thy edged sword another way;\nStrike those that hurt, and hurt not those that help.\nOne drop of blood drawn from thy country's bosom\nShould grieve thee more than streams of foreign gore:\nReturn thee therefore with a flood of tears,\nAnd wash away thy country's stained spots.\n\nBURGUNDY:\nEither she hath bewitch'd me with her words,\nOr nature makes me suddenly relent.\n\nJOAN LA PUCELLE:\nBesides, all French and France exclaims on thee,\nDoubting thy birth and lawful progeny.\nWho joint'st thou with but with a lordly nation\nThat will not trust thee but for profit's sake?\nWhen Talbot hath set footing once in France\nAnd fashion'd thee that instrument of ill,\nWho then but English Henry will be lord\nAnd thou be thrust out like a fugitive?\nCall we to mind, and mark but this for proof,\nWas not the Duke of Orleans thy foe?\nAnd was he not in England prisoner?\nBut when they heard he was thine enemy,\nThey set him free without his ransom paid,\nIn spite of Burgundy and all his friends.\nSee, then, thou fight'st against thy countrymen\nAnd joint'st with them will be thy slaughtermen.\nCome, come, return; return, thou wandering lord:\nCharles and the rest will take thee in their arms.\n\nBURGUNDY:\nI am vanquished; these haughty words of hers\nHave batter'd me like roaring cannon-shot,\nAnd made me almost yield upon my knees.\nForgive me, country, and sweet countrymen,\nAnd, lords, accept this hearty kind embrace:\nMy forces and my power of men are yours:\nSo farewell, Talbot; I'll no longer trust thee.\n\nJOAN LA PUCELLE:\n\nCHARLES:\nWelcome, brave duke! thy friendship makes us fresh.\n\nBASTARD OF ORLEANS:\nAnd doth beget new courage in our breasts.\n\nALENCON:\nPucelle hath bravely play'd her part in this,\nAnd doth deserve a coronet of gold.\n\nCHARLES:\nNow let us on, my lords, and join our powers,\nAnd seek how we may prejudice the foe.\n\nTALBOT:\nMy gracious prince, and honourable peers,\nHearing of your arrival in this realm,\nI have awhile given truce unto my wars,\nTo do my duty to my sovereign:\nIn sign, whereof, this arm, that hath reclaim'd\nTo your obedience fifty fortresses,\nTwelve cities and seven walled towns of strength,\nBeside five hundred prisoners of esteem,\nLets fall his sword before your highness' feet,\nAnd with submissive loyalty of heart\nAscribes the glory of his conquest got\nFirst to my God and next unto your grace.\n\nKING HENRY VI:\nIs this the Lord Talbot, uncle Gloucester,\nThat hath so long been resident in France?\n\nGLOUCESTER:\nYes, if it please your majesty, my liege.\n\nKING HENRY VI:\nWelcome, brave captain and victorious lord!\nWhen I was young, as yet I am not old,\nI do remember how my father said\nA stouter champion never handled sword.\nLong since we were resolved of your truth,\nYour faithful service and your toil in war;\nYet never have you tasted our reward,\nOr been reguerdon'd with so much as thanks,\nBecause till now we never saw your face:\nTherefore, stand up; and, for these good deserts,\nWe here create you Earl of Shrewsbury;\nAnd in our coronation take your place.\n\nVERNON:\nNow, sir, to you, that were so hot at sea,\nDisgracing of these colours that I wear\nIn honour of my noble Lord of York:\nDarest thou maintain the former words thou spakest?\n\nBASSET:\nYes, sir; as well as you dare patronage\nThe envious barking of your saucy tongue\nAgainst my lord the Duke of Somerset.\n\nVERNON:\nSirrah, thy lord I honour as he is.\n\nBASSET:\nWhy, what is he? as good a man as York.\n\nVERNON:\nHark ye; not so: in witness, take ye that.\n\nBASSET:\nVillain, thou know'st the law of arms is such\nThat whoso draws a sword, 'tis present death,\nOr else this blow should broach thy dearest blood.\nBut I'll unto his majesty, and crave\nI may have liberty to venge this wrong;\nWhen thou shalt see I'll meet thee to thy cost.\n\nVERNON:\nWell, miscreant, I'll be there as soon as you;\nAnd, after, meet you sooner than you would.\n\nGLOUCESTER:\nLord bishop, set the crown upon his head.\n\nBISHOP OF WINCHESTER:\nGod save King Henry, of that name the sixth!\n\nGLOUCESTER:\nNow, governor of Paris, take your oath,\nThat you elect no other king but him;\nEsteem none friends but such as are his friends,\nAnd none your foes but such as shall pretend\nMalicious practises against his state:\nThis shall ye do, so help you righteous God!\n\nFASTOLFE:\nMy gracious sovereign, as I rode from Calais,\nTo haste unto your coronation,\nA letter was deliver'd to my hands,\nWrit to your grace from the Duke of Burgundy.\n\nTALBOT:\nShame to the Duke of Burgundy and thee!\nI vow'd, base knight, when I did meet thee next,\nTo tear the garter from thy craven's leg,\nWhich I have done, because unworthily\nThou wast installed in that high degree.\nPardon me, princely Henry, and the rest\nThis dastard, at the battle of Patay,\nWhen but in all I was six thousand strong\nAnd that the French were almost ten to one,\nBefore we met or that a stroke was given,\nLike to a trusty squire did run away:\nIn which assault we lost twelve hundred men;\nMyself and divers gentlemen beside\nWere there surprised and taken prisoners.\nThen judge, great lords, if I have done amiss;\nOr whether that such cowards ought to wear\nThis ornament of knighthood, yea or no.\n\nGLOUCESTER:\nTo say the truth, this fact was infamous\nAnd ill beseeming any common man,\nMuch more a knight, a captain and a leader.\n\nTALBOT:\nWhen first this order was ordain'd, my lords,\nKnights of the garter were of noble birth,\nValiant and virtuous, full of haughty courage,\nSuch as were grown to credit by the wars;\nNot fearing death, nor shrinking for distress,\nBut always resolute in most extremes.\nHe then that is not furnish'd in this sort\nDoth but usurp the sacred name of knight,\nProfaning this most honourable order,\nAnd should, if I were worthy to be judge,\nBe quite degraded, like a hedge-born swain\nThat doth presume to boast of gentle blood.\n\nKING HENRY VI:\nStain to thy countrymen, thou hear'st thy doom!\nBe packing, therefore, thou that wast a knight:\nHenceforth we banish thee, on pain of death.\nAnd now, my lord protector, view the letter\nSent from our uncle Duke of Burgundy.\n\nGLOUCESTER:\nWhat means his grace, that he hath changed his style?\nNo more but, plain and bluntly, 'To the king!'\nHath he forgot he is his sovereign?\nOr doth this churlish superscription\nPretend some alteration in good will?\nWhat's here?\n'I have, upon especial cause,\nMoved with compassion of my country's wreck,\nTogether with the pitiful complaints\nOf such as your oppression feeds upon,\nForsaken your pernicious faction\nAnd join'd with Charles, the rightful King of France.'\nO monstrous treachery! can this be so,\nThat in alliance, amity and oaths,\nThere should be found such false dissembling guile?\n\nKING HENRY VI:\nWhat! doth my uncle Burgundy revolt?\n\nGLOUCESTER:\nHe doth, my lord, and is become your foe.\n\nKING HENRY VI:\nIs that the worst this letter doth contain?\n\nGLOUCESTER:\nIt is the worst, and all, my lord, he writes.\n\nKING HENRY VI:\nWhy, then, Lord Talbot there shall talk with him\nAnd give him chastisement for this abuse.\nHow say you, my lord? are you not content?\n\nTALBOT:\nContent, my liege! yes, but that I am prevented,\nI should have begg'd I might have been employ'd.\n\nKING HENRY VI:\nThen gather strength and march unto him straight:\nLet him perceive how ill we brook his treason\nAnd what offence it is to flout his friends.\n\nTALBOT:\nI go, my lord, in heart desiring still\nYou may behold confusion of your foes.\n\nVERNON:\nGrant me the combat, gracious sovereign.\n\nBASSET:\nAnd me, my lord, grant me the combat too.\n\nYORK:\nThis is my servant: hear him, noble prince.\n\nSOMERSET:\nAnd this is mine: sweet Henry, favour him.\n\nKING HENRY VI:\nBe patient, lords; and give them leave to speak.\nSay, gentlemen, what makes you thus exclaim?\nAnd wherefore crave you combat? or with whom?\n\nVERNON:\nWith him, my lord; for he hath done me wrong.\n\nBASSET:\nAnd I with him; for he hath done me wrong.\n\nKING HENRY VI:\nWhat is that wrong whereof you both complain?\nFirst let me know, and then I'll answer you.\n\nBASSET:\nCrossing the sea from England into France,\nThis fellow here, with envious carping tongue,\nUpbraided me about the rose I wear;\nSaying, the sanguine colour of the leaves\nDid represent my master's blushing cheeks,\nWhen stubbornly he did repugn the truth\nAbout a certain question in the law\nArgued betwixt the Duke of York and him;\nWith other vile and ignominious terms:\nIn confutation of which rude reproach\nAnd in defence of my lord's worthiness,\nI crave the benefit of law of arms.\n\nVERNON:\nAnd that is my petition, noble lord:\nFor though he seem with forged quaint conceit\nTo set a gloss upon his bold intent,\nYet know, my lord, I was provoked by him;\nAnd he first took exceptions at this badge,\nPronouncing that the paleness of this flower\nBewray'd the faintness of my master's heart.\n\nYORK:\nWill not this malice, Somerset, be left?\n\nSOMERSET:\nYour private grudge, my Lord of York, will out,\nThough ne'er so cunningly you smother it.\n\nKING HENRY VI:\nGood Lord, what madness rules in brainsick men,\nWhen for so slight and frivolous a cause\nSuch factious emulations shall arise!\nGood cousins both, of York and Somerset,\nQuiet yourselves, I pray, and be at peace.\n\nYORK:\nLet this dissension first be tried by fight,\nAnd then your highness shall command a peace.\n\nSOMERSET:\nThe quarrel toucheth none but us alone;\nBetwixt ourselves let us decide it then.\n\nYORK:\nThere is my pledge; accept it, Somerset.\n\nVERNON:\nNay, let it rest where it began at first.\n\nBASSET:\nConfirm it so, mine honourable lord.\n\nGLOUCESTER:\nConfirm it so! Confounded be your strife!\nAnd perish ye, with your audacious prate!\nPresumptuous vassals, are you not ashamed\nWith this immodest clamorous outrage\nTo trouble and disturb the king and us?\nAnd you, my lords, methinks you do not well\nTo bear with their perverse objections;\nMuch less to take occasion from their mouths\nTo raise a mutiny betwixt yourselves:\nLet me persuade you take a better course.\n\nEXETER:\nIt grieves his highness: good my lords, be friends.\n\nKING HENRY VI:\nCome hither, you that would be combatants:\nHenceforth I charge you, as you love our favour,\nQuite to forget this quarrel and the cause.\nAnd you, my lords, remember where we are,\nIn France, amongst a fickle wavering nation:\nIf they perceive dissension in our looks\nAnd that within ourselves we disagree,\nHow will their grudging stomachs be provoked\nTo wilful disobedience, and rebel!\nBeside, what infamy will there arise,\nWhen foreign princes shall be certified\nThat for a toy, a thing of no regard,\nKing Henry's peers and chief nobility\nDestroy'd themselves, and lost the realm of France!\nO, think upon the conquest of my father,\nMy tender years, and let us not forego\nThat for a trifle that was bought with blood\nLet me be umpire in this doubtful strife.\nI see no reason, if I wear this rose,\nThat any one should therefore be suspicious\nI more incline to Somerset than York:\nBoth are my kinsmen, and I love them both:\nAs well they may upbraid me with my crown,\nBecause, forsooth, the king of Scots is crown'd.\nBut your discretions better can persuade\nThan I am able to instruct or teach:\nAnd therefore, as we hither came in peace,\nSo let us still continue peace and love.\nCousin of York, we institute your grace\nTo be our regent in these parts of France:\nAnd, good my Lord of Somerset, unite\nYour troops of horsemen with his bands of foot;\nAnd, like true subjects, sons of your progenitors,\nGo cheerfully together and digest.\nYour angry choler on your enemies.\nOurself, my lord protector and the rest\nAfter some respite will return to Calais;\nFrom thence to England; where I hope ere long\nTo be presented, by your victories,\nWith Charles, Alencon and that traitorous rout.\n\nWARWICK:\nMy Lord of York, I promise you, the king\nPrettily, methought, did play the orator.\n\nYORK:\nAnd so he did; but yet I like it not,\nIn that he wears the badge of Somerset.\n\nWARWICK:\nTush, that was but his fancy, blame him not;\nI dare presume, sweet prince, he thought no harm.\n\nYORK:\nAn if I wist he did,--but let it rest;\nOther affairs must now be managed.\n\nEXETER:\nWell didst thou, Richard, to suppress thy voice;\nFor, had the passions of thy heart burst out,\nI fear we should have seen decipher'd there\nMore rancorous spite, more furious raging broils,\nThan yet can be imagined or supposed.\nBut howsoe'er, no simple man that sees\nThis jarring discord of nobility,\nThis shouldering of each other in the court,\nThis factious bandying of their favourites,\nBut that it doth presage some ill event.\n'Tis much when sceptres are in children's hands;\nBut more when envy breeds unkind division;\nThere comes the rain, there begins confusion.\n\nTALBOT:\nGo to the gates of Bourdeaux, trumpeter:\nSummon their general unto the wall.\nEnglish John Talbot, captains, calls you forth,\nServant in arms to Harry King of England;\nAnd thus he would: Open your city gates;\nBe humble to us; call my sovereign yours,\nAnd do him homage as obedient subjects;\nAnd I'll withdraw me and my bloody power:\nBut, if you frown upon this proffer'd peace,\nYou tempt the fury of my three attendants,\nLean famine, quartering steel, and climbing fire;\nWho in a moment even with the earth\nShall lay your stately and air-braving towers,\nIf you forsake the offer of their love.\n\nGeneral:\nThou ominous and fearful owl of death,\nOur nation's terror and their bloody scourge!\nThe period of thy tyranny approacheth.\nOn us thou canst not enter but by death;\nFor, I protest, we are well fortified\nAnd strong enough to issue out and fight:\nIf thou retire, the Dauphin, well appointed,\nStands with the snares of war to tangle thee:\nOn either hand thee there are squadrons pitch'd,\nTo wall thee from the liberty of flight;\nAnd no way canst thou turn thee for redress,\nBut death doth front thee with apparent spoil\nAnd pale destruction meets thee in the face.\nTen thousand French have ta'en the sacrament\nTo rive their dangerous artillery\nUpon no Christian soul but English Talbot.\nLo, there thou stand'st, a breathing valiant man,\nOf an invincible unconquer'd spirit!\nThis is the latest glory of thy praise\nThat I, thy enemy, due thee withal;\nFor ere the glass, that now begins to run,\nFinish the process of his sandy hour,\nThese eyes, that see thee now well coloured,\nShall see thee wither'd, bloody, pale and dead.\nHark! hark! the Dauphin's drum, a warning bell,\nSings heavy music to thy timorous soul;\nAnd mine shall ring thy dire departure out.\n\nTALBOT:\nHe fables not; I hear the enemy:\nOut, some light horsemen, and peruse their wings.\nO, negligent and heedless discipline!\nHow are we park'd and bounded in a pale,\nA little herd of England's timorous deer,\nMazed with a yelping kennel of French curs!\nIf we be English deer, be then in blood;\nNot rascal-like, to fall down with a pinch,\nBut rather, moody-mad and desperate stags,\nTurn on the bloody hounds with heads of steel\nAnd make the cowards stand aloof at bay:\nSell every man his life as dear as mine,\nAnd they shall find dear deer of us, my friends.\nGod and Saint George, Talbot and England's right,\nProsper our colours in this dangerous fight!\n\nYORK:\nAre not the speedy scouts return'd again,\nThat dogg'd the mighty army of the Dauphin?\n\nMessenger:\nThey are return'd, my lord, and give it out\nThat he is march'd to Bourdeaux with his power,\nTo fight with Talbot: as he march'd along,\nBy your espials were discovered\nTwo mightier troops than that the Dauphin led,\nWhich join'd with him and made their march for Bourdeaux.\n\nYORK:\nA plague upon that villain Somerset,\nThat thus delays my promised supply\nOf horsemen, that were levied for this siege!\nRenowned Talbot doth expect my aid,\nAnd I am lowted by a traitor villain\nAnd cannot help the noble chevalier:\nGod comfort him in this necessity!\nIf he miscarry, farewell wars in France.\n\nLUCY:\nThou princely leader of our English strength,\nNever so needful on the earth of France,\nSpur to the rescue of the noble Talbot,\nWho now is girdled with a waist of iron\nAnd hemm'd about with grim destruction:\nTo Bourdeaux, warlike duke! to Bourdeaux, York!\nElse, farewell Talbot, France, and England's honour.\n\nYORK:\nO God, that Somerset, who in proud heart\nDoth stop my cornets, were in Talbot's place!\nSo should we save a valiant gentleman\nBy forfeiting a traitor and a coward.\nMad ire and wrathful fury makes me weep,\nThat thus we die, while remiss traitors sleep.\n\nLUCY:\nO, send some succor to the distress'd lord!\n\nYORK:\nHe dies, we lose; I break my warlike word;\nWe mourn, France smiles; we lose, they daily get;\nAll 'long of this vile traitor Somerset.\n\nLUCY:\nThen God take mercy on brave Talbot's soul;\nAnd on his son young John, who two hours since\nI met in travel toward his warlike father!\nThis seven years did not Talbot see his son;\nAnd now they meet where both their lives are done.\n\nYORK:\nAlas, what joy shall noble Talbot have\nTo bid his young son welcome to his grave?\nAway! vexation almost stops my breath,\nThat sunder'd friends greet in the hour of death.\nLucy, farewell; no more my fortune can,\nBut curse the cause I cannot aid the man.\nMaine, Blois, Poictiers, and Tours, are won away,\n'Long all of Somerset and his delay.\n\nLUCY:\nThus, while the vulture of sedition\nFeeds in the bosom of such great commanders,\nSleeping neglection doth betray to loss\nThe conquest of our scarce cold conqueror,\nThat ever living man of memory,\nHenry the Fifth: whiles they each other cross,\nLives, honours, lands and all hurry to loss.\n\nSOMERSET:\nIt is too late; I cannot send them now:\nThis expedition was by York and Talbot\nToo rashly plotted: all our general force\nMight with a sally of the very town\nBe buckled with: the over-daring Talbot\nHath sullied all his gloss of former honour\nBy this unheedful, desperate, wild adventure:\nYork set him on to fight and die in shame,\nThat, Talbot dead, great York might bear the name.\n\nCaptain:\nHere is Sir William Lucy, who with me\nSet from our o'ermatch'd forces forth for aid.\n\nSOMERSET:\nHow now, Sir William! whither were you sent?\n\nLUCY:\nWhither, my lord? from bought and sold Lord Talbot;\nWho, ring'd about with bold adversity,\nCries out for noble York and Somerset,\nTo beat assailing death from his weak legions:\nAnd whiles the honourable captain there\nDrops bloody sweat from his war-wearied limbs,\nAnd, in advantage lingering, looks for rescue,\nYou, his false hopes, the trust of England's honour,\nKeep off aloof with worthless emulation.\nLet not your private discord keep away\nThe levied succors that should lend him aid,\nWhile he, renowned noble gentleman,\nYields up his life unto a world of odds:\nOrleans the Bastard, Charles, Burgundy,\nAlencon, Reignier, compass him about,\nAnd Talbot perisheth by your default.\n\nSOMERSET:\nYork set him on; York should have sent him aid.\n\nLUCY:\nAnd York as fast upon your grace exclaims;\nSwearing that you withhold his levied host,\nCollected for this expedition.\n\nSOMERSET:\nYork lies; he might have sent and had the horse;\nI owe him little duty, and less love;\nAnd take foul scorn to fawn on him by sending.\n\nLUCY:\nThe fraud of England, not the force of France,\nHath now entrapp'd the noble-minded Talbot:\nNever to England shall he bear his life;\nBut dies, betray'd to fortune by your strife.\n\nSOMERSET:\nCome, go; I will dispatch the horsemen straight:\nWithin six hours they will be at his aid.\n\nLUCY:\nToo late comes rescue: he is ta'en or slain;\nFor fly he could not, if he would have fled;\nAnd fly would Talbot never, though he might.\n\nSOMERSET:\nIf he be dead, brave Talbot, then adieu!\n\nLUCY:\nHis fame lives in the world, his shame in you.\n\nTALBOT:\nO young John Talbot! I did send for thee\nTo tutor thee in stratagems of war,\nThat Talbot's name might be in thee revived\nWhen sapless age and weak unable limbs\nShould bring thy father to his drooping chair.\nBut, O malignant and ill-boding stars!\nNow thou art come unto a feast of death,\nA terrible and unavoided danger:\nTherefore, dear boy, mount on my swiftest horse;\nAnd I'll direct thee how thou shalt escape\nBy sudden flight: come, dally not, be gone.\n\nJOHN TALBOT:\nIs my name Talbot? and am I your son?\nAnd shall I fly? O if you love my mother,\nDishonour not her honourable name,\nTo make a bastard and a slave of me!\nThe world will say, he is not Talbot's blood,\nThat basely fled when noble Talbot stood.\n\nTALBOT:\nFly, to revenge my death, if I be slain.\n\nJOHN TALBOT:\nHe that flies so will ne'er return again.\n\nTALBOT:\nIf we both stay, we both are sure to die.\n\nJOHN TALBOT:\nThen let me stay; and, father, do you fly:\nYour loss is great, so your regard should be;\nMy worth unknown, no loss is known in me.\nUpon my death the French can little boast;\nIn yours they will, in you all hopes are lost.\nFlight cannot stain the honour you have won;\nBut mine it will, that no exploit have done:\nYou fled for vantage, everyone will swear;\nBut, if I bow, they'll say it was for fear.\nThere is no hope that ever I will stay,\nIf the first hour I shrink and run away.\nHere on my knee I beg mortality,\nRather than life preserved with infamy.\n\nTALBOT:\nShall all thy mother's hopes lie in one tomb?\n\nJOHN TALBOT:\nAy, rather than I'll shame my mother's womb.\n\nTALBOT:\nUpon my blessing, I command thee go.\n\nJOHN TALBOT:\nTo fight I will, but not to fly the foe.\n\nTALBOT:\nPart of thy father may be saved in thee.\n\nJOHN TALBOT:\nNo part of him but will be shame in me.\n\nTALBOT:\nThou never hadst renown, nor canst not lose it.\n\nJOHN TALBOT:\nYes, your renowned name: shall flight abuse it?\n\nTALBOT:\nThy father's charge shall clear thee from that stain.\n\nJOHN TALBOT:\nYou cannot witness for me, being slain.\nIf death be so apparent, then both fly.\n\nTALBOT:\nAnd leave my followers here to fight and die?\nMy age was never tainted with such shame.\n\nJOHN TALBOT:\nAnd shall my youth be guilty of such blame?\nNo more can I be sever'd from your side,\nThan can yourself yourself in twain divide:\nStay, go, do what you will, the like do I;\nFor live I will not, if my father die.\n\nTALBOT:\nThen here I take my leave of thee, fair son,\nBorn to eclipse thy life this afternoon.\nCome, side by side together live and die.\nAnd soul with soul from France to heaven fly.\n\nTALBOT:\nSaint George and victory! fight, soldiers, fight.\nThe regent hath with Talbot broke his word\nAnd left us to the rage of France his sword.\nWhere is John Talbot? Pause, and take thy breath;\nI gave thee life and rescued thee from death.\n\nJOHN TALBOT:\nO, twice my father, twice am I thy son!\nThe life thou gavest me first was lost and done,\nTill with thy warlike sword, despite of late,\nTo my determined time thou gavest new date.\n\nTALBOT:\nWhen from the Dauphin's crest thy sword struck fire,\nIt warm'd thy father's heart with proud desire\nOf bold-faced victory. Then leaden age,\nQuicken'd with youthful spleen and warlike rage,\nBeat down Alencon, Orleans, Burgundy,\nAnd from the pride of Gallia rescued thee.\nThe ireful bastard Orleans, that drew blood\nFrom thee, my boy, and had the maidenhood\nOf thy first fight, I soon encountered,\nAnd interchanging blows I quickly shed\nSome of his bastard blood; and in disgrace\nBespoke him thus; 'Contaminated, base\nAnd misbegotten blood I spill of thine,\nMean and right poor, for that pure blood of mine\nWhich thou didst force from Talbot, my brave boy:'\nHere, purposing the Bastard to destroy,\nCame in strong rescue. Speak, thy father's care,\nArt thou not weary, John? how dost thou fare?\nWilt thou yet leave the battle, boy, and fly,\nNow thou art seal'd the son of chivalry?\nFly, to revenge my death when I am dead:\nThe help of one stands me in little stead.\nO, too much folly is it, well I wot,\nTo hazard all our lives in one small boat!\nIf I to-day die not with Frenchmen's rage,\nTo-morrow I shall die with mickle age:\nBy me they nothing gain an if I stay;\n'Tis but the shortening of my life one day:\nIn thee thy mother dies, our household's name,\nMy death's revenge, thy youth, and England's fame:\nAll these and more we hazard by thy stay;\nAll these are saved if thou wilt fly away.\n\nJOHN TALBOT:\nThe sword of Orleans hath not made me smart;\nThese words of yours draw life-blood from my heart:\nOn that advantage, bought with such a shame,\nTo save a paltry life and slay bright fame,\nBefore young Talbot from old Talbot fly,\nThe coward horse that bears me fail and die!\nAnd like me to the peasant boys of France,\nTo be shame's scorn and subject of mischance!\nSurely, by all the glory you have won,\nAn if I fly, I am not Talbot's son:\nThen talk no more of flight, it is no boot;\nIf son to Talbot, die at Talbot's foot.\n\nTALBOT:\nThen follow thou thy desperate sire of Crete,\nThou Icarus; thy life to me is sweet:\nIf thou wilt fight, fight by thy father's side;\nAnd, commendable proved, let's die in pride.\n\nTALBOT:\nWhere is my other life? mine own is gone;\nO, where's young Talbot? where is valiant John?\nTriumphant death, smear'd with captivity,\nYoung Talbot's valour makes me smile at thee:\nWhen he perceived me shrink and on my knee,\nHis bloody sword he brandish'd over me,\nAnd, like a hungry lion, did commence\nRough deeds of rage and stern impatience;\nBut when my angry guardant stood alone,\nTendering my ruin and assail'd of none,\nDizzy-eyed fury and great rage of heart\nSuddenly made him from my side to start\nInto the clustering battle of the French;\nAnd in that sea of blood my boy did drench\nHis over-mounting spirit, and there died,\nMy Icarus, my blossom, in his pride.\n\nServant:\nO, my dear lord, lo, where your son is borne!\n\nTALBOT:\nThou antic death, which laugh'st us here to scorn,\nAnon, from thy insulting tyranny,\nCoupled in bonds of perpetuity,\nTwo Talbots, winged through the lither sky,\nIn thy despite shall 'scape mortality.\nO, thou, whose wounds become hard-favour'd death,\nSpeak to thy father ere thou yield thy breath!\nBrave death by speaking, whether he will or no;\nImagine him a Frenchman and thy foe.\nPoor boy! he smiles, methinks, as who should say,\nHad death been French, then death had died to-day.\nCome, come and lay him in his father's arms:\nMy spirit can no longer bear these harms.\nSoldiers, adieu! I have what I would have,\nNow my old arms are young John Talbot's grave.\n\nCHARLES:\nHad York and Somerset brought rescue in,\nWe should have found a bloody day of this.\n\nBASTARD OF ORLEANS:\nHow the young whelp of Talbot's, raging-wood,\nDid flesh his puny sword in Frenchmen's blood!\n\nJOAN LA PUCELLE:\nOnce I encounter'd him, and thus I said:\n'Thou maiden youth, be vanquish'd by a maid:'\nBut, with a proud majestical high scorn,\nHe answer'd thus: 'Young Talbot was not born\nTo be the pillage of a giglot wench:'\nSo, rushing in the bowels of the French,\nHe left me proudly, as unworthy fight.\n\nBURGUNDY:\nDoubtless he would have made a noble knight;\nSee, where he lies inhearsed in the arms\nOf the most bloody nurser of his harms!\n\nBASTARD OF ORLEANS:\nHew them to pieces, hack their bones asunder\nWhose life was England's glory, Gallia's wonder.\n\nCHARLES:\nO, no, forbear! for that which we have fled\nDuring the life, let us not wrong it dead.\n\nLUCY:\nHerald, conduct me to the Dauphin's tent,\nTo know who hath obtained the glory of the day.\n\nCHARLES:\nOn what submissive message art thou sent?\n\nLUCY:\nSubmission, Dauphin! 'tis a mere French word;\nWe English warriors wot not what it means.\nI come to know what prisoners thou hast ta'en\nAnd to survey the bodies of the dead.\n\nCHARLES:\nFor prisoners ask'st thou? hell our prison is.\nBut tell me whom thou seek'st.\n\nLUCY:\nBut where's the great Alcides of the field,\nValiant Lord Talbot, Earl of Shrewsbury,\nCreated, for his rare success in arms,\nGreat Earl of Washford, Waterford and Valence;\nLord Talbot of Goodrig and Urchinfield,\nLord Strange of Blackmere, Lord Verdun of Alton,\nLord Cromwell of Wingfield, Lord Furnival of Sheffield,\nThe thrice-victorious Lord of Falconbridge;\nKnight of the noble order of Saint George,\nWorthy Saint Michael and the Golden Fleece;\nGreat marshal to Henry the Sixth\nOf all his wars within the realm of France?\n\nJOAN LA PUCELLE:\nHere is a silly stately style indeed!\nThe Turk, that two and fifty kingdoms hath,\nWrites not so tedious a style as this.\nHim that thou magnifiest with all these titles\nStinking and fly-blown lies here at our feet.\n\nLUCY:\nIs Talbot slain, the Frenchmen's only scourge,\nYour kingdom's terror and black Nemesis?\nO, were mine eyeballs into bullets turn'd,\nThat I in rage might shoot them at your faces!\nO, that I could but call these dead to life!\nIt were enough to fright the realm of France:\nWere but his picture left amongst you here,\nIt would amaze the proudest of you all.\nGive me their bodies, that I may bear them hence\nAnd give them burial as beseems their worth.\n\nJOAN LA PUCELLE:\nI think this upstart is old Talbot's ghost,\nHe speaks with such a proud commanding spirit.\nFor God's sake let him have 'em; to keep them here,\nThey would but stink, and putrefy the air.\n\nCHARLES:\nGo, take their bodies hence.\n\nLUCY:\nI'll bear them hence; but from their ashes shall be rear'd\nA phoenix that shall make all France afeard.\n\nCHARLES:\nSo we be rid of them, do with 'em what thou wilt.\nAnd now to Paris, in this conquering vein:\nAll will be ours, now bloody Talbot's slain.\n\nKING HENRY VI:\nHave you perused the letters from the pope,\nThe emperor and the Earl of Armagnac?\n\nGLOUCESTER:\nI have, my lord: and their intent is this:\nThey humbly sue unto your excellence\nTo have a godly peace concluded of\nBetween the realms of England and of France.\n\nKING HENRY VI:\nHow doth your grace affect their motion?\n\nGLOUCESTER:\nWell, my good lord; and as the only means\nTo stop effusion of our Christian blood\nAnd 'stablish quietness on every side.\n\nKING HENRY VI:\nAy, marry, uncle; for I always thought\nIt was both impious and unnatural\nThat such immanity and bloody strife\nShould reign among professors of one faith.\n\nGLOUCESTER:\nBeside, my lord, the sooner to effect\nAnd surer bind this knot of amity,\nThe Earl of Armagnac, near knit to Charles,\nA man of great authority in France,\nProffers his only daughter to your grace\nIn marriage, with a large and sumptuous dowry.\n\nKING HENRY VI:\nMarriage, uncle! alas, my years are young!\nAnd fitter is my study and my books\nThan wanton dalliance with a paramour.\nYet call the ambassador; and, as you please,\nSo let them have their answers every one:\nI shall be well content with any choice\nTends to God's glory and my country's weal.\n\nEXETER:\nWhat! is my Lord of Winchester install'd,\nAnd call'd unto a cardinal's degree?\nThen I perceive that will be verified\nHenry the Fifth did sometime prophesy,\n'If once he come to be a cardinal,\nHe'll make his cap co-equal with the crown.'\n\nKING HENRY VI:\nMy lords ambassadors, your several suits\nHave been consider'd and debated on.\nAnd therefore are we certainly resolved\nTo draw conditions of a friendly peace;\nWhich by my Lord of Winchester we mean\nShall be transported presently to France.\n\nGLOUCESTER:\nAnd for the proffer of my lord your master,\nI have inform'd his highness so at large\nAs liking of the lady's virtuous gifts,\nHer beauty and the value of her dower,\nHe doth intend she shall be England's queen.\n\nKING HENRY VI:\nIn argument and proof of which contract,\nBear her this jewel, pledge of my affection.\nAnd so, my lord protector, see them guarded\nAnd safely brought to Dover; where inshipp'd\nCommit them to the fortune of the sea.\n\nCARDINAL OF WINCHESTER:\nStay, my lord legate: you shall first receive\nThe sum of money which I promised\nShould be deliver'd to his holiness\nFor clothing me in these grave ornaments.\n\nLegate:\nI will attend upon your lordship's leisure.\n\nCARDINAL OF WINCHESTER:\n\nCHARLES:\nThese news, my lord, may cheer our drooping spirits:\n'Tis said the stout Parisians do revolt\nAnd turn again unto the warlike French.\n\nALENCON:\nThen march to Paris, royal Charles of France,\nAnd keep not back your powers in dalliance.\n\nJOAN LA PUCELLE:\nPeace be amongst them, if they turn to us;\nElse, ruin combat with their palaces!\n\nScout:\nSuccess unto our valiant general,\nAnd happiness to his accomplices!\n\nCHARLES:\nWhat tidings send our scouts? I prithee, speak.\n\nScout:\nThe English army, that divided was\nInto two parties, is now conjoined in one,\nAnd means to give you battle presently.\n\nCHARLES:\nSomewhat too sudden, sirs, the warning is;\nBut we will presently provide for them.\n\nBURGUNDY:\nI trust the ghost of Talbot is not there:\nNow he is gone, my lord, you need not fear.\n\nJOAN LA PUCELLE:\nOf all base passions, fear is most accursed.\nCommand the conquest, Charles, it shall be thine,\nLet Henry fret and all the world repine.\n\nCHARLES:\nThen on, my lords; and France be fortunate!\n\nJOAN LA PUCELLE:\nThe regent conquers, and the Frenchmen fly.\nNow help, ye charming spells and periapts;\nAnd ye choice spirits that admonish me\nAnd give me signs of future accidents.\nYou speedy helpers, that are substitutes\nUnder the lordly monarch of the north,\nAppear and aid me in this enterprise.\nThis speedy and quick appearance argues proof\nOf your accustom'd diligence to me.\nNow, ye familiar spirits, that are cull'd\nOut of the powerful regions under earth,\nHelp me this once, that France may get the field.\nO, hold me not with silence over-long!\nWhere I was wont to feed you with my blood,\nI'll lop a member off and give it you\nIn earnest of further benefit,\nSo you do condescend to help me now.\nNo hope to have redress? My body shall\nPay recompense, if you will grant my suit.\nCannot my body nor blood-sacrifice\nEntreat you to your wonted furtherance?\nThen take my soul, my body, soul and all,\nBefore that England give the French the foil.\nSee, they forsake me! Now the time is come\nThat France must vail her lofty-plumed crest\nAnd let her head fall into England's lap.\nMy ancient incantations are too weak,\nAnd hell too strong for me to buckle with:\nNow, France, thy glory droopeth to the dust.\n\nYORK:\nDamsel of France, I think I have you fast:\nUnchain your spirits now with spelling charms\nAnd try if they can gain your liberty.\nA goodly prize, fit for the devil's grace!\nSee, how the ugly wench doth bend her brows,\nAs if with Circe she would change my shape!\n\nJOAN LA PUCELLE:\nChanged to a worser shape thou canst not be.\n\nYORK:\nO, Charles the Dauphin is a proper man;\nNo shape but his can please your dainty eye.\n\nJOAN LA PUCELLE:\nA plaguing mischief light on Charles and thee!\nAnd may ye both be suddenly surprised\nBy bloody hands, in sleeping on your beds!\n\nYORK:\nFell banning hag, enchantress, hold thy tongue!\n\nJOAN LA PUCELLE:\nI prithee, give me leave to curse awhile.\n\nYORK:\nCurse, miscreant, when thou comest to the stake.\n\nSUFFOLK:\nBe what thou wilt, thou art my prisoner.\nO fairest beauty, do not fear nor fly!\nFor I will touch thee but with reverent hands;\nI kiss these fingers for eternal peace,\nAnd lay them gently on thy tender side.\nWho art thou? say, that I may honour thee.\n\nMARGARET:\nMargaret my name, and daughter to a king,\nThe King of Naples, whosoe'er thou art.\n\nSUFFOLK:\nAn earl I am, and Suffolk am I call'd.\nBe not offended, nature's miracle,\nThou art allotted to be ta'en by me:\nSo doth the swan her downy cygnets save,\nKeeping them prisoner underneath her wings.\nYet, if this servile usage once offend.\nGo, and be free again, as Suffolk's friend.\nO, stay! I have no power to let her pass;\nMy hand would free her, but my heart says no\nAs plays the sun upon the glassy streams,\nTwinkling another counterfeited beam,\nSo seems this gorgeous beauty to mine eyes.\nFain would I woo her, yet I dare not speak:\nI'll call for pen and ink, and write my mind.\nFie, de la Pole! disable not thyself;\nHast not a tongue? is she not here?\nWilt thou be daunted at a woman's sight?\nAy, beauty's princely majesty is such,\nConfounds the tongue and makes the senses rough.\n\nMARGARET:\nSay, Earl of Suffolk--if thy name be so--\nWhat ransom must I pay before I pass?\nFor I perceive I am thy prisoner.\n\nSUFFOLK:\nHow canst thou tell she will deny thy suit,\nBefore thou make a trial of her love?\n\nMARGARET:\nWhy speak'st thou not? what ransom must I pay?\n\nSUFFOLK:\nShe's beautiful, and therefore to be woo'd;\nShe is a woman, therefore to be won.\n\nMARGARET:\nWilt thou accept of ransom? yea, or no.\n\nSUFFOLK:\nFond man, remember that thou hast a wife;\nThen how can Margaret be thy paramour?\n\nMARGARET:\nI were best to leave him, for he will not hear.\n\nSUFFOLK:\nThere all is marr'd; there lies a cooling card.\n\nMARGARET:\nHe talks at random; sure, the man is mad.\n\nSUFFOLK:\nAnd yet a dispensation may be had.\n\nMARGARET:\nAnd yet I would that you would answer me.\n\nSUFFOLK:\nI'll win this Lady Margaret. For whom?\nWhy, for my king: tush, that's a wooden thing!\n\nMARGARET:\nHe talks of wood: it is some carpenter.\n\nSUFFOLK:\nYet so my fancy may be satisfied,\nAnd peace established between these realms\nBut there remains a scruple in that too;\nFor though her father be the King of Naples,\nDuke of Anjou and Maine, yet is he poor,\nAnd our nobility will scorn the match.\n\nMARGARET:\nHear ye, captain, are you not at leisure?\n\nSUFFOLK:\nIt shall be so, disdain they ne'er so much.\nHenry is youthful and will quickly yield.\nMadam, I have a secret to reveal.\n\nMARGARET:\nWhat though I be enthrall'd? he seems a knight,\nAnd will not any way dishonour me.\n\nSUFFOLK:\nLady, vouchsafe to listen what I say.\n\nMARGARET:\nPerhaps I shall be rescued by the French;\nAnd then I need not crave his courtesy.\n\nSUFFOLK:\nSweet madam, give me a hearing in a cause--\n\nMARGARET:\nTush, women have been captivate ere now.\n\nSUFFOLK:\nLady, wherefore talk you so?\n\nMARGARET:\nI cry you mercy, 'tis but Quid for Quo.\n\nSUFFOLK:\nSay, gentle princess, would you not suppose\nYour bondage happy, to be made a queen?\n\nMARGARET:\nTo be a queen in bondage is more vile\nThan is a slave in base servility;\nFor princes should be free.\n\nSUFFOLK:\nAnd so shall you,\nIf happy England's royal king be free.\n\nMARGARET:\nWhy, what concerns his freedom unto me?\n\nSUFFOLK:\nI'll undertake to make thee Henry's queen,\nTo put a golden sceptre in thy hand\nAnd set a precious crown upon thy head,\nIf thou wilt condescend to be my--\n\nMARGARET:\nWhat?\n\nSUFFOLK:\nHis love.\n\nMARGARET:\nI am unworthy to be Henry's wife.\n\nSUFFOLK:\nNo, gentle madam; I unworthy am\nTo woo so fair a dame to be his wife,\nAnd have no portion in the choice myself.\nHow say you, madam, are ye so content?\n\nMARGARET:\nAn if my father please, I am content.\n\nSUFFOLK:\nThen call our captains and our colours forth.\nAnd, madam, at your father's castle walls\nWe'll crave a parley, to confer with him.\nSee, Reignier, see, thy daughter prisoner!\n\nREIGNIER:\nTo whom?\n\nSUFFOLK:\nTo me.\n\nREIGNIER:\nSuffolk, what remedy?\nI am a soldier, and unapt to weep,\nOr to exclaim on fortune's fickleness.\n\nSUFFOLK:\nYes, there is remedy enough, my lord:\nConsent, and for thy honour give consent,\nThy daughter shall be wedded to my king;\nWhom I with pain have woo'd and won thereto;\nAnd this her easy-held imprisonment\nHath gained thy daughter princely liberty.\n\nREIGNIER:\nSpeaks Suffolk as he thinks?\n\nSUFFOLK:\nFair Margaret knows\nThat Suffolk doth not flatter, face, or feign.\n\nREIGNIER:\nUpon thy princely warrant, I descend\nTo give thee answer of thy just demand.\n\nSUFFOLK:\nAnd here I will expect thy coming.\n\nREIGNIER:\nWelcome, brave earl, into our territories:\nCommand in Anjou what your honour pleases.\n\nSUFFOLK:\nThanks, Reignier, happy for so sweet a child,\nFit to be made companion with a king:\nWhat answer makes your grace unto my suit?\n\nREIGNIER:\nSince thou dost deign to woo her little worth\nTo be the princely bride of such a lord;\nUpon condition I may quietly\nEnjoy mine own, the country Maine and Anjou,\nFree from oppression or the stroke of war,\nMy daughter shall be Henry's, if he please.\n\nSUFFOLK:\nThat is her ransom; I deliver her;\nAnd those two counties I will undertake\nYour grace shall well and quietly enjoy.\n\nREIGNIER:\nAnd I again, in Henry's royal name,\nAs deputy unto that gracious king,\nGive thee her hand, for sign of plighted faith.\n\nSUFFOLK:\nReignier of France, I give thee kingly thanks,\nBecause this is in traffic of a king.\nAnd yet, methinks, I could be well content\nTo be mine own attorney in this case.\nI'll over then to England with this news,\nAnd make this marriage to be solemnized.\nSo farewell, Reignier: set this diamond safe\nIn golden palaces, as it becomes.\n\nREIGNIER:\nI do embrace thee, as I would embrace\nThe Christian prince, King Henry, were he here.\n\nMARGARET:\nFarewell, my lord: good wishes, praise and prayers\nShall Suffolk ever have of Margaret.\n\nSUFFOLK:\nFarewell, sweet madam: but hark you, Margaret;\nNo princely commendations to my king?\n\nMARGARET:\nSuch commendations as becomes a maid,\nA virgin and his servant, say to him.\n\nSUFFOLK:\nWords sweetly placed and modestly directed.\nBut madam, I must trouble you again;\nNo loving token to his majesty?\n\nMARGARET:\nYes, my good lord, a pure unspotted heart,\nNever yet taint with love, I send the king.\n\nSUFFOLK:\nAnd this withal.\n\nMARGARET:\nThat for thyself: I will not so presume\nTo send such peevish tokens to a king.\n\nSUFFOLK:\nO, wert thou for myself! But, Suffolk, stay;\nThou mayst not wander in that labyrinth;\nThere Minotaurs and ugly treasons lurk.\nSolicit Henry with her wondrous praise:\nBethink thee on her virtues that surmount,\nAnd natural graces that extinguish art;\nRepeat their semblance often on the seas,\nThat, when thou comest to kneel at Henry's feet,\nThou mayst bereave him of his wits with wonder.\n\nYORK:\nBring forth that sorceress condemn'd to burn.\n\nShepherd:\nAh, Joan, this kills thy father's heart outright!\nHave I sought every country far and near,\nAnd, now it is my chance to find thee out,\nMust I behold thy timeless cruel death?\nAh, Joan, sweet daughter Joan, I'll die with thee!\n\nJOAN LA PUCELLE:\nDecrepit miser! base ignoble wretch!\nI am descended of a gentler blood:\nThou art no father nor no friend of mine.\n\nShepherd:\nOut, out! My lords, an please you, 'tis not so;\nI did beget her, all the parish knows:\nHer mother liveth yet, can testify\nShe was the first fruit of my bachelorship.\n\nWARWICK:\nGraceless! wilt thou deny thy parentage?\n\nYORK:\nThis argues what her kind of life hath been,\nWicked and vile; and so her death concludes.\n\nShepherd:\nFie, Joan, that thou wilt be so obstacle!\nGod knows thou art a collop of my flesh;\nAnd for thy sake have I shed many a tear:\nDeny me not, I prithee, gentle Joan.\n\nJOAN LA PUCELLE:\nPeasant, avaunt! You have suborn'd this man,\nOf purpose to obscure my noble birth.\n\nShepherd:\n'Tis true, I gave a noble to the priest\nThe morn that I was wedded to her mother.\nKneel down and take my blessing, good my girl.\nWilt thou not stoop? Now cursed be the time\nOf thy nativity! I would the milk\nThy mother gave thee when thou suck'dst her breast,\nHad been a little ratsbane for thy sake!\nOr else, when thou didst keep my lambs a-field,\nI wish some ravenous wolf had eaten thee!\nDost thou deny thy father, cursed drab?\nO, burn her, burn her! hanging is too good.\n\nYORK:\nTake her away; for she hath lived too long,\nTo fill the world with vicious qualities.\n\nJOAN LA PUCELLE:\nFirst, let me tell you whom you have condemn'd:\nNot me begotten of a shepherd swain,\nBut issued from the progeny of kings;\nVirtuous and holy; chosen from above,\nBy inspiration of celestial grace,\nTo work exceeding miracles on earth.\nI never had to do with wicked spirits:\nBut you, that are polluted with your lusts,\nStain'd with the guiltless blood of innocents,\nCorrupt and tainted with a thousand vices,\nBecause you want the grace that others have,\nYou judge it straight a thing impossible\nTo compass wonders but by help of devils.\nNo, misconceived! Joan of Arc hath been\nA virgin from her tender infancy,\nChaste and immaculate in very thought;\nWhose maiden blood, thus rigorously effused,\nWill cry for vengeance at the gates of heaven.\n\nYORK:\nAy, ay: away with her to execution!\n\nWARWICK:\nAnd hark ye, sirs; because she is a maid,\nSpare for no faggots, let there be enow:\nPlace barrels of pitch upon the fatal stake,\nThat so her torture may be shortened.\n\nJOAN LA PUCELLE:\nWill nothing turn your unrelenting hearts?\nThen, Joan, discover thine infirmity,\nThat warranteth by law to be thy privilege.\nI am with child, ye bloody homicides:\nMurder not then the fruit within my womb,\nAlthough ye hale me to a violent death.\n\nYORK:\nNow heaven forfend! the holy maid with child!\n\nWARWICK:\nThe greatest miracle that e'er ye wrought:\nIs all your strict preciseness come to this?\n\nYORK:\nShe and the Dauphin have been juggling:\nI did imagine what would be her refuge.\n\nWARWICK:\nWell, go to; we'll have no bastards live;\nEspecially since Charles must father it.\n\nJOAN LA PUCELLE:\nYou are deceived; my child is none of his:\nIt was Alencon that enjoy'd my love.\n\nYORK:\nAlencon! that notorious Machiavel!\nIt dies, an if it had a thousand lives.\n\nJOAN LA PUCELLE:\nO, give me leave, I have deluded you:\n'Twas neither Charles nor yet the duke I named,\nBut Reignier, king of Naples, that prevail'd.\n\nWARWICK:\nA married man! that's most intolerable.\n\nYORK:\nWhy, here's a girl! I think she knows not well,\nThere were so many, whom she may accuse.\n\nWARWICK:\nIt's sign she hath been liberal and free.\n\nYORK:\nAnd yet, forsooth, she is a virgin pure.\nStrumpet, thy words condemn thy brat and thee:\nUse no entreaty, for it is in vain.\n\nJOAN LA PUCELLE:\nThen lead me hence; with whom I leave my curse:\nMay never glorious sun reflex his beams\nUpon the country where you make abode;\nBut darkness and the gloomy shade of death\nEnviron you, till mischief and despair\nDrive you to break your necks or hang yourselves!\n\nYORK:\nBreak thou in pieces and consume to ashes,\nThou foul accursed minister of hell!\n\nCARDINAL OF WINCHESTER:\nLord regent, I do greet your excellence\nWith letters of commission from the king.\nFor know, my lords, the states of Christendom,\nMoved with remorse of these outrageous broils,\nHave earnestly implored a general peace\nBetwixt our nation and the aspiring French;\nAnd here at hand the Dauphin and his train\nApproacheth, to confer about some matter.\n\nYORK:\nIs all our travail turn'd to this effect?\nAfter the slaughter of so many peers,\nSo many captains, gentlemen and soldiers,\nThat in this quarrel have been overthrown\nAnd sold their bodies for their country's benefit,\nShall we at last conclude effeminate peace?\nHave we not lost most part of all the towns,\nBy treason, falsehood and by treachery,\nOur great progenitors had conquered?\nO Warwick, Warwick! I foresee with grief\nThe utter loss of all the realm of France.\n\nWARWICK:\nBe patient, York: if we conclude a peace,\nIt shall be with such strict and severe covenants\nAs little shall the Frenchmen gain thereby.\n\nCHARLES:\nSince, lords of England, it is thus agreed\nThat peaceful truce shall be proclaim'd in France,\nWe come to be informed by yourselves\nWhat the conditions of that league must be.\n\nYORK:\nSpeak, Winchester; for boiling choler chokes\nThe hollow passage of my poison'd voice,\nBy sight of these our baleful enemies.\n\nCARDINAL OF WINCHESTER:\nCharles, and the rest, it is enacted thus:\nThat, in regard King Henry gives consent,\nOf mere compassion and of lenity,\nTo ease your country of distressful war,\nAnd suffer you to breathe in fruitful peace,\nYou shall become true liegemen to his crown:\nAnd Charles, upon condition thou wilt swear\nTo pay him tribute, submit thyself,\nThou shalt be placed as viceroy under him,\nAnd still enjoy thy regal dignity.\n\nALENCON:\nMust he be then as shadow of himself?\nAdorn his temples with a coronet,\nAnd yet, in substance and authority,\nRetain but privilege of a private man?\nThis proffer is absurd and reasonless.\n\nCHARLES:\n'Tis known already that I am possess'd\nWith more than half the Gallian territories,\nAnd therein reverenced for their lawful king:\nShall I, for lucre of the rest unvanquish'd,\nDetract so much from that prerogative,\nAs to be call'd but viceroy of the whole?\nNo, lord ambassador, I'll rather keep\nThat which I have than, coveting for more,\nBe cast from possibility of all.\n\nYORK:\nInsulting Charles! hast thou by secret means\nUsed intercession to obtain a league,\nAnd, now the matter grows to compromise,\nStand'st thou aloof upon comparison?\nEither accept the title thou usurp'st,\nOf benefit proceeding from our king\nAnd not of any challenge of desert,\nOr we will plague thee with incessant wars.\n\nREIGNIER:\nMy lord, you do not well in obstinacy\nTo cavil in the course of this contract:\nIf once it be neglected, ten to one\nWe shall not find like opportunity.\n\nALENCON:\nTo say the truth, it is your policy\nTo save your subjects from such massacre\nAnd ruthless slaughters as are daily seen\nBy our proceeding in hostility;\nAnd therefore take this compact of a truce,\nAlthough you break it when your pleasure serves.\n\nWARWICK:\nHow say'st thou, Charles? shall our condition stand?\n\nCHARLES:\nIt shall;\nOnly reserved, you claim no interest\nIn any of our towns of garrison.\n\nYORK:\nThen swear allegiance to his majesty,\nAs thou art knight, never to disobey\nNor be rebellious to the crown of England,\nThou, nor thy nobles, to the crown of England.\nSo, now dismiss your army when ye please:\nHang up your ensign, let your drums be still,\nFor here we entertain a solemn peace.\n\nKING HENRY VI:\nYour wondrous rare description, noble earl,\nOf beauteous Margaret hath astonish'd me:\nHer virtues graced with external gifts\nDo breed love's settled passions in my heart:\nAnd like as rigor of tempestuous gusts\nProvokes the mightiest hulk against the tide,\nSo am I driven by breath of her renown\nEither to suffer shipwreck or arrive\nWhere I may have fruition of her love.\n\nSUFFOLK:\nTush, my good lord, this superficial tale\nIs but a preface of her worthy praise;\nThe chief perfections of that lovely dame\nHad I sufficient skill to utter them,\nWould make a volume of enticing lines,\nAble to ravish any dull conceit:\nAnd, which is more, she is not so divine,\nSo full-replete with choice of all delights,\nBut with as humble lowliness of mind\nShe is content to be at your command;\nCommand, I mean, of virtuous chaste intents,\nTo love and honour Henry as her lord.\n\nKING HENRY VI:\nAnd otherwise will Henry ne'er presume.\nTherefore, my lord protector, give consent\nThat Margaret may be England's royal queen.\n\nGLOUCESTER:\nSo should I give consent to flatter sin.\nYou know, my lord, your highness is betroth'd\nUnto another lady of esteem:\nHow shall we then dispense with that contract,\nAnd not deface your honour with reproach?\n\nSUFFOLK:\nAs doth a ruler with unlawful oaths;\nOr one that, at a triumph having vow'd\nTo try his strength, forsaketh yet the lists\nBy reason of his adversary's odds:\nA poor earl's daughter is unequal odds,\nAnd therefore may be broke without offence.\n\nGLOUCESTER:\nWhy, what, I pray, is Margaret more than that?\nHer father is no better than an earl,\nAlthough in glorious titles he excel.\n\nSUFFOLK:\nYes, lord, her father is a king,\nThe King of Naples and Jerusalem;\nAnd of such great authority in France\nAs his alliance will confirm our peace\nAnd keep the Frenchmen in allegiance.\n\nGLOUCESTER:\nAnd so the Earl of Armagnac may do,\nBecause he is near kinsman unto Charles.\n\nEXETER:\nBeside, his wealth doth warrant a liberal dower,\nWhere Reignier sooner will receive than give.\n\nSUFFOLK:\nA dower, my lords! disgrace not so your king,\nThat he should be so abject, base and poor,\nTo choose for wealth and not for perfect love.\nHenry is able to enrich his queen\nAnd not seek a queen to make him rich:\nSo worthless peasants bargain for their wives,\nAs market-men for oxen, sheep, or horse.\nMarriage is a matter of more worth\nThan to be dealt in by attorneyship;\nNot whom we will, but whom his grace affects,\nMust be companion of his nuptial bed:\nAnd therefore, lords, since he affects her most,\nIt most of all these reasons bindeth us,\nIn our opinions she should be preferr'd.\nFor what is wedlock forced but a hell,\nAn age of discord and continual strife?\nWhereas the contrary bringeth bliss,\nAnd is a pattern of celestial peace.\nWhom should we match with Henry, being a king,\nBut Margaret, that is daughter to a king?\nHer peerless feature, joined with her birth,\nApproves her fit for none but for a king:\nHer valiant courage and undaunted spirit,\nMore than in women commonly is seen,\nWill answer our hope in issue of a king;\nFor Henry, son unto a conqueror,\nIs likely to beget more conquerors,\nIf with a lady of so high resolve\nAs is fair Margaret he be link'd in love.\nThen yield, my lords; and here conclude with me\nThat Margaret shall be queen, and none but she.\n\nKING HENRY VI:\nWhether it be through force of your report,\nMy noble Lord of Suffolk, or for that\nMy tender youth was never yet attaint\nWith any passion of inflaming love,\nI cannot tell; but this I am assured,\nI feel such sharp dissension in my breast,\nSuch fierce alarums both of hope and fear,\nAs I am sick with working of my thoughts.\nTake, therefore, shipping; post, my lord, to France;\nAgree to any covenants, and procure\nThat Lady Margaret do vouchsafe to come\nTo cross the seas to England and be crown'd\nKing Henry's faithful and anointed queen:\nFor your expenses and sufficient charge,\nAmong the people gather up a tenth.\nBe gone, I say; for, till you do return,\nI rest perplexed with a thousand cares.\nAnd you, good uncle, banish all offence:\nIf you do censure me by what you were,\nNot what you are, I know it will excuse\nThis sudden execution of my will.\nAnd so, conduct me where, from company,\nI may revolve and ruminate my grief.\n\nGLOUCESTER:\nAy, grief, I fear me, both at first and last.\n\nSUFFOLK:\nThus Suffolk hath prevail'd; and thus he goes,\nAs did the youthful Paris once to Greece,\nWith hope to find the like event in love,\nBut prosper better than the Trojan did.\nMargaret shall now be queen, and rule the king;\nBut I will rule both her, the king and realm.\n\nFLAVIUS:\nHence! home, you idle creatures get you home:\nIs this a holiday? what! know you not,\nBeing mechanical, you ought not walk\nUpon a labouring day without the sign\nOf your profession? Speak, what trade art thou?\n\nFirst Commoner:\nWhy, sir, a carpenter.\n\nMARULLUS:\nWhere is thy leather apron and thy rule?\nWhat dost thou with thy best apparel on?\nYou, sir, what trade are you?\n\nSecond Commoner:\nTruly, sir, in respect of a fine workman, I am but,\nas you would say, a cobbler.\n\nMARULLUS:\nBut what trade art thou? answer me directly.\n\nSecond Commoner:\nA trade, sir, that, I hope, I may use with a safe\nconscience; which is, indeed, sir, a mender of bad soles.\n\nMARULLUS:\nWhat trade, thou knave? thou naughty knave, what trade?\n\nSecond Commoner:\nNay, I beseech you, sir, be not out with me: yet,\nif you be out, sir, I can mend you.\n\nMARULLUS:\nWhat meanest thou by that? mend me, thou saucy fellow!\n\nSecond Commoner:\nWhy, sir, cobble you.\n\nFLAVIUS:\nThou art a cobbler, art thou?\n\nSecond Commoner:\nTruly, sir, all that I live by is with the awl: I\nmeddle with no tradesman's matters, nor women's\nmatters, but with awl. I am, indeed, sir, a surgeon\nto old shoes; when they are in great danger, I\nrecover them. As proper men as ever trod upon\nneat's leather have gone upon my handiwork.\n\nFLAVIUS:\nBut wherefore art not in thy shop today?\nWhy dost thou lead these men about the streets?\n\nSecond Commoner:\nTruly, sir, to wear out their shoes, to get myself\ninto more work. But, indeed, sir, we make holiday,\nto see Caesar and to rejoice in his triumph.\n\nMARULLUS:\nWherefore rejoice? What conquest brings he home?\nWhat tributaries follow him to Rome,\nTo grace in captive bonds his chariot-wheels?\nYou blocks, you stones, you worse than senseless things!\nO you hard hearts, you cruel men of Rome,\nKnew you not Pompey? Many a time and oft\nHave you climb'd up to walls and battlements,\nTo towers and windows, yea, to chimney-tops,\nYour infants in your arms, and there have sat\nThe livelong day, with patient expectation,\nTo see great Pompey pass the streets of Rome:\nAnd when you saw his chariot but appear,\nHave you not made an universal shout,\nThat Tiber trembled underneath her banks,\nTo hear the replication of your sounds\nMade in her concave shores?\nAnd do you now put on your best attire?\nAnd do you now cull out a holiday?\nAnd do you now strew flowers in his way\nThat comes in triumph over Pompey's blood? Be gone!\nRun to your houses, fall upon your knees,\nPray to the gods to intermit the plague\nThat needs must light on this ingratitude.\n\nFLAVIUS:\nGo, go, good countrymen, and, for this fault,\nAssemble all the poor men of your sort;\nDraw them to Tiber banks, and weep your tears\nInto the channel, till the lowest stream\nDo kiss the most exalted shores of all.\nSee whether their basest metal be not moved;\nThey vanish tongue-tied in their guiltiness.\nGo you down that way towards the Capitol;\nThis way will I disrobe the images,\nIf you do find them deck'd with ceremonies.\n\nMARULLUS:\nMay we do so?\nYou know it is the feast of Lupercal.\n\nFLAVIUS:\nIt is no matter; let no images\nBe hung with Caesar's trophies. I'll about,\nAnd drive away the vulgar from the streets:\nSo do you too, where you perceive them thick.\nThese growing feathers pluck'd from Caesar's wing\nWill make him fly an ordinary pitch,\nWho else would soar above the view of men\nAnd keep us all in servile fearfulness.\n\nCAESAR:\nCalpurnia!\n\nCASCA:\nPeace, ho! Caesar speaks.\n\nCAESAR:\nCalpurnia!\n\nCALPURNIA:\nHere, my lord.\n\nCAESAR:\nStand you directly in Antonius' way,\nWhen he doth run his course. Antonius!\n\nANTONY:\nCaesar, my lord?\n\nCAESAR:\nForget not, in your speed, Antonius,\nTo touch Calpurnia; for our elders say,\nThe barren, touched in this holy chase,\nShake off their sterile curse.\n\nANTONY:\nI shall remember:\nWhen Caesar says 'do this,' it is perform'd.\n\nCAESAR:\nSet on; and leave no ceremony out.\n\nSoothsayer:\nCaesar!\n\nCAESAR:\nHa! who calls?\n\nCASCA:\nBid every noise be still: peace yet again!\n\nCAESAR:\nWho is it in the press that calls on me?\nI hear a tongue, shriller than all the music,\nCry 'Caesar!' Speak; Caesar is turn'd to hear.\n\nSoothsayer:\nBeware the ides of March.\n\nCAESAR:\nWhat man is that?\n\nBRUTUS:\nA soothsayer bids you beware the ides of March.\n\nCAESAR:\nSet him before me; let me see his face.\n\nCASSIUS:\nFellow, come from the throng; look upon Caesar.\n\nCAESAR:\nWhat say'st thou to me now? speak once again.\n\nSoothsayer:\nBeware the ides of March.\n\nCAESAR:\nHe is a dreamer; let us leave him: pass.\n\nCASSIUS:\nWill you go see the order of the course?\n\nBRUTUS:\nNot I.\n\nCASSIUS:\nI pray you, do.\n\nBRUTUS:\nI am not gamesome: I do lack some part\nOf that quick spirit that is in Antony.\nLet me not hinder, Cassius, your desires;\nI'll leave you.\n\nCASSIUS:\nBrutus, I do observe you now of late:\nI have not from your eyes that gentleness\nAnd show of love as I was wont to have:\nYou bear too stubborn and too strange a hand\nOver your friend that loves you.\n\nBRUTUS:\nCassius,\nBe not deceived: if I have veil'd my look,\nI turn the trouble of my countenance\nMerely upon myself. Vexed I am\nOf late with passions of some difference,\nConceptions only proper to myself,\nWhich give some soil perhaps to my behaviors;\nBut let not therefore my good friends be grieved--\nAmong which number, Cassius, be you one--\nNor construe any further my neglect,\nThan that poor Brutus, with himself at war,\nForgets the shows of love to other men.\n\nCASSIUS:\nThen, Brutus, I have much mistook your passion;\nBy means whereof this breast of mine hath buried\nThoughts of great value, worthy cogitations.\nTell me, good Brutus, can you see your face?\n\nBRUTUS:\nNo, Cassius; for the eye sees not itself,\nBut by reflection, by some other things.\n\nCASSIUS:\n'Tis just:\nAnd it is very much lamented, Brutus,\nThat you have no such mirrors as will turn\nYour hidden worthiness into your eye,\nThat you might see your shadow. I have heard,\nWhere many of the best respect in Rome,\nExcept immortal Caesar, speaking of Brutus\nAnd groaning underneath this age's yoke,\nHave wish'd that noble Brutus had his eyes.\n\nBRUTUS:\nInto what dangers would you lead me, Cassius,\nThat you would have me seek into myself\nFor that which is not in me?\n\nCASSIUS:\nTherefore, good Brutus, be prepared to hear:\nAnd since you know you cannot see yourself\nSo well as by reflection, I, your glass,\nWill modestly discover to yourself\nThat of yourself which you yet know not of.\nAnd be not jealous on me, gentle Brutus:\nWere I a common laugher, or did use\nTo stale with ordinary oaths my love\nTo every new protester; if you know\nThat I do fawn on men and hug them hard\nAnd after scandal them, or if you know\nThat I profess myself in banqueting\nTo all the rout, then hold me dangerous.\n\nBRUTUS:\nWhat means this shouting? I do fear, the people\nChoose Caesar for their king.\n\nCASSIUS:\nAy, do you fear it?\nThen must I think you would not have it so.\n\nBRUTUS:\nI would not, Cassius; yet I love him well.\nBut wherefore do you hold me here so long?\nWhat is it that you would impart to me?\nIf it be aught toward the general good,\nSet honour in one eye and death i' the other,\nAnd I will look on both indifferently,\nFor let the gods so speed me as I love\nThe name of honour more than I fear death.\n\nCASSIUS:\nI know that virtue to be in you, Brutus,\nAs well as I do know your outward favour.\nWell, honour is the subject of my story.\nI cannot tell what you and other men\nThink of this life; but, for my single self,\nI had as lief not be as live to be\nIn awe of such a thing as I myself.\nI was born free as Caesar; so were you:\nWe both have fed as well, and we can both\nEndure the winter's cold as well as he:\nFor once, upon a raw and gusty day,\nThe troubled Tiber chafing with her shores,\nCaesar said to me 'Darest thou, Cassius, now\nLeap in with me into this angry flood,\nAnd swim to yonder point?' Upon the word,\nAccoutred as I was, I plunged in\nAnd bade him follow; so indeed he did.\nThe torrent roar'd, and we did buffet it\nWith lusty sinews, throwing it aside\nAnd stemming it with hearts of controversy;\nBut ere we could arrive the point proposed,\nCaesar cried 'Help me, Cassius, or I sink!'\nI, as Aeneas, our great ancestor,\nDid from the flames of Troy upon his shoulder\nThe old Anchises bear, so from the waves of Tiber\nDid I the tired Caesar. And this man\nIs now become a god, and Cassius is\nA wretched creature and must bend his body,\nIf Caesar carelessly but nod on him.\nHe had a fever when he was in Spain,\nAnd when the fit was on him, I did mark\nHow he did shake: 'tis true, this god did shake;\nHis coward lips did from their colour fly,\nAnd that same eye whose bend doth awe the world\nDid lose his lustre: I did hear him groan:\nAy, and that tongue of his that bade the Romans\nMark him and write his speeches in their books,\nAlas, it cried 'Give me some drink, Titinius,'\nAs a sick girl. Ye gods, it doth amaze me\nA man of such a feeble temper should\nSo get the start of the majestic world\nAnd bear the palm alone.\n\nBRUTUS:\nAnother general shout!\nI do believe that these applauses are\nFor some new honours that are heap'd on Caesar.\n\nCASSIUS:\nWhy, man, he doth bestride the narrow world\nLike a Colossus, and we petty men\nWalk under his huge legs and peep about\nTo find ourselves dishonourable graves.\nMen at some time are masters of their fates:\nThe fault, dear Brutus, is not in our stars,\nBut in ourselves, that we are underlings.\nBrutus and Caesar: what should be in that 'Caesar'?\nWhy should that name be sounded more than yours?\nWrite them together, yours is as fair a name;\nSound them, it doth become the mouth as well;\nWeigh them, it is as heavy; conjure with 'em,\nBrutus will start a spirit as soon as Caesar.\nNow, in the names of all the gods at once,\nUpon what meat doth this our Caesar feed,\nThat he is grown so great? Age, thou art shamed!\nRome, thou hast lost the breed of noble bloods!\nWhen went there by an age, since the great flood,\nBut it was famed with more than with one man?\nWhen could they say till now, that talk'd of Rome,\nThat her wide walls encompass'd but one man?\nNow is it Rome indeed and room enough,\nWhen there is in it but one only man.\nO, you and I have heard our fathers say,\nThere was a Brutus once that would have brook'd\nThe eternal devil to keep his state in Rome\nAs easily as a king.\n\nBRUTUS:\nThat you do love me, I am nothing jealous;\nWhat you would work me to, I have some aim:\nHow I have thought of this and of these times,\nI shall recount hereafter; for this present,\nI would not, so with love I might entreat you,\nBe any further moved. What you have said\nI will consider; what you have to say\nI will with patience hear, and find a time\nBoth meet to hear and answer such high things.\nTill then, my noble friend, chew upon this:\nBrutus had rather be a villager\nThan to repute himself a son of Rome\nUnder these hard conditions as this time\nIs like to lay upon us.\n\nCASSIUS:\nI am glad that my weak words\nHave struck but thus much show of fire from Brutus.\n\nBRUTUS:\nThe games are done and Caesar is returning.\n\nCASSIUS:\nAs they pass by, pluck Casca by the sleeve;\nAnd he will, after his sour fashion, tell you\nWhat hath proceeded worthy note to-day.\n\nBRUTUS:\nI will do so. But, look you, Cassius,\nThe angry spot doth glow on Caesar's brow,\nAnd all the rest look like a chidden train:\nCalpurnia's cheek is pale; and Cicero\nLooks with such ferret and such fiery eyes\nAs we have seen him in the Capitol,\nBeing cross'd in conference by some senators.\n\nCASSIUS:\nCasca will tell us what the matter is.\n\nCAESAR:\nAntonius!\n\nANTONY:\nCaesar?\n\nCAESAR:\nLet me have men about me that are fat;\nSleek-headed men and such as sleep o' nights:\nYond Cassius has a lean and hungry look;\nHe thinks too much: such men are dangerous.\n\nANTONY:\nFear him not, Caesar; he's not dangerous;\nHe is a noble Roman and well given.\n\nCAESAR:\nWould he were fatter! But I fear him not:\nYet if my name were liable to fear,\nI do not know the man I should avoid\nSo soon as that spare Cassius. He reads much;\nHe is a great observer and he looks\nQuite through the deeds of men: he loves no plays,\nAs thou dost, Antony; he hears no music;\nSeldom he smiles, and smiles in such a sort\nAs if he mock'd himself and scorn'd his spirit\nThat could be moved to smile at any thing.\nSuch men as he be never at heart's ease\nWhiles they behold a greater than themselves,\nAnd therefore are they very dangerous.\nI rather tell thee what is to be fear'd\nThan what I fear; for always I am Caesar.\nCome on my right hand, for this ear is deaf,\nAnd tell me truly what thou think'st of him.\n\nCASCA:\nYou pull'd me by the cloak; would you speak with me?\n\nBRUTUS:\nAy, Casca; tell us what hath chanced to-day,\nThat Caesar looks so sad.\n\nCASCA:\nWhy, you were with him, were you not?\n\nBRUTUS:\nI should not then ask Casca what had chanced.\n\nCASCA:\nWhy, there was a crown offered him: and being\noffered him, he put it by with the back of his hand,\nthus; and then the people fell a-shouting.\n\nBRUTUS:\nWhat was the second noise for?\n\nCASCA:\nWhy, for that too.\n\nCASSIUS:\nThey shouted thrice: what was the last cry for?\n\nCASCA:\nWhy, for that too.\n\nBRUTUS:\nWas the crown offered him thrice?\n\nCASCA:\nAy, marry, was't, and he put it by thrice, every\ntime gentler than other, and at every putting-by\nmine honest neighbours shouted.\n\nCASSIUS:\nWho offered him the crown?\n\nCASCA:\nWhy, Antony.\n\nBRUTUS:\nTell us the manner of it, gentle Casca.\n\nCASCA:\nI can as well be hanged as tell the manner of it:\nit was mere foolery; I did not mark it. I saw Mark\nAntony offer him a crown;--yet 'twas not a crown\nneither, 'twas one of these coronets;--and, as I told\nyou, he put it by once: but, for all that, to my\nthinking, he would fain have had it. Then he\noffered it to him again; then he put it by again:\nbut, to my thinking, he was very loath to lay his\nfingers off it. And then he offered it the third\ntime; he put it the third time by: and still as he\nrefused it, the rabblement hooted and clapped their\nchapped hands and threw up their sweaty night-caps\nand uttered such a deal of stinking breath because\nCaesar refused the crown that it had almost choked\nCaesar; for he swounded and fell down at it: and\nfor mine own part, I durst not laugh, for fear of\nopening my lips and receiving the bad air.\n\nCASSIUS:\nBut, soft, I pray you: what, did Caesar swound?\n\nCASCA:\nHe fell down in the market-place, and foamed at\nmouth, and was speechless.\n\nBRUTUS:\n'Tis very like: he hath the failing sickness.\n\nCASSIUS:\nNo, Caesar hath it not; but you and I,\nAnd honest Casca, we have the falling sickness.\n\nCASCA:\nI know not what you mean by that; but, I am sure,\nCaesar fell down. If the tag-rag people did not\nclap him and hiss him, according as he pleased and\ndispleased them, as they use to do the players in\nthe theatre, I am no true man.\n\nBRUTUS:\nWhat said he when he came unto himself?\n\nCASCA:\nMarry, before he fell down, when he perceived the\ncommon herd was glad he refused the crown, he\nplucked me ope his doublet and offered them his\nthroat to cut. An I had been a man of any\noccupation, if I would not have taken him at a word,\nI would I might go to hell among the rogues. And so\nhe fell. When he came to himself again, he said,\nIf he had done or said any thing amiss, he desired\ntheir worships to think it was his infirmity. Three\nor four wenches, where I stood, cried 'Alas, good\nsoul!' and forgave him with all their hearts: but\nthere's no heed to be taken of them; if Caesar had\nstabbed their mothers, they would have done no less.\n\nBRUTUS:\nAnd after that, he came, thus sad, away?\n\nCASCA:\nAy.\n\nCASSIUS:\nDid Cicero say any thing?\n\nCASCA:\nAy, he spoke Greek.\n\nCASSIUS:\nTo what effect?\n\nCASCA:\nNay, an I tell you that, Ill ne'er look you i' the\nface again: but those that understood him smiled at\none another and shook their heads; but, for mine own\npart, it was Greek to me. I could tell you more\nnews too: Marullus and Flavius, for pulling scarfs\noff Caesar's images, are put to silence. Fare you\nwell. There was more foolery yet, if I could\nremember it.\n\nCASSIUS:\nWill you sup with me to-night, Casca?\n\nCASCA:\nNo, I am promised forth.\n\nCASSIUS:\nWill you dine with me to-morrow?\n\nCASCA:\nAy, if I be alive and your mind hold and your dinner\nworth the eating.\n\nCASSIUS:\nGood: I will expect you.\n\nCASCA:\nDo so. Farewell, both.\n\nBRUTUS:\nWhat a blunt fellow is this grown to be!\nHe was quick mettle when he went to school.\n\nCASSIUS:\nSo is he now in execution\nOf any bold or noble enterprise,\nHowever he puts on this tardy form.\nThis rudeness is a sauce to his good wit,\nWhich gives men stomach to digest his words\nWith better appetite.\n\nBRUTUS:\nAnd so it is. For this time I will leave you:\nTo-morrow, if you please to speak with me,\nI will come home to you; or, if you will,\nCome home to me, and I will wait for you.\n\nCASSIUS:\nI will do so: till then, think of the world.\nWell, Brutus, thou art noble; yet, I see,\nThy honourable metal may be wrought\nFrom that it is disposed: therefore it is meet\nThat noble minds keep ever with their likes;\nFor who so firm that cannot be seduced?\nCaesar doth bear me hard; but he loves Brutus:\nIf I were Brutus now and he were Cassius,\nHe should not humour me. I will this night,\nIn several hands, in at his windows throw,\nAs if they came from several citizens,\nWritings all tending to the great opinion\nThat Rome holds of his name; wherein obscurely\nCaesar's ambition shall be glanced at:\nAnd after this let Caesar seat him sure;\nFor we will shake him, or worse days endure.\n\nCICERO:\nGood even, Casca: brought you Caesar home?\nWhy are you breathless? and why stare you so?\n\nCASCA:\nAre not you moved, when all the sway of earth\nShakes like a thing unfirm? O Cicero,\nI have seen tempests, when the scolding winds\nHave rived the knotty oaks, and I have seen\nThe ambitious ocean swell and rage and foam,\nTo be exalted with the threatening clouds:\nBut never till to-night, never till now,\nDid I go through a tempest dropping fire.\nEither there is a civil strife in heaven,\nOr else the world, too saucy with the gods,\nIncenses them to send destruction.\n\nCICERO:\nWhy, saw you any thing more wonderful?\n\nCASCA:\nA common slave--you know him well by sight--\nHeld up his left hand, which did flame and burn\nLike twenty torches join'd, and yet his hand,\nNot sensible of fire, remain'd unscorch'd.\nBesides--I ha' not since put up my sword--\nAgainst the Capitol I met a lion,\nWho glared upon me, and went surly by,\nWithout annoying me: and there were drawn\nUpon a heap a hundred ghastly women,\nTransformed with their fear; who swore they saw\nMen all in fire walk up and down the streets.\nAnd yesterday the bird of night did sit\nEven at noon-day upon the market-place,\nHooting and shrieking. When these prodigies\nDo so conjointly meet, let not men say\n'These are their reasons; they are natural;'\nFor, I believe, they are portentous things\nUnto the climate that they point upon.\n\nCICERO:\nIndeed, it is a strange-disposed time:\nBut men may construe things after their fashion,\nClean from the purpose of the things themselves.\nCome Caesar to the Capitol to-morrow?\n\nCASCA:\nHe doth; for he did bid Antonius\nSend word to you he would be there to-morrow.\n\nCICERO:\nGood night then, Casca: this disturbed sky\nIs not to walk in.\n\nCASCA:\nFarewell, Cicero.\n\nCASSIUS:\nWho's there?\n\nCASCA:\nA Roman.\n\nCASSIUS:\nCasca, by your voice.\n\nCASCA:\nYour ear is good. Cassius, what night is this!\n\nCASSIUS:\nA very pleasing night to honest men.\n\nCASCA:\nWho ever knew the heavens menace so?\n\nCASSIUS:\nThose that have known the earth so full of faults.\nFor my part, I have walk'd about the streets,\nSubmitting me unto the perilous night,\nAnd, thus unbraced, Casca, as you see,\nHave bared my bosom to the thunder-stone;\nAnd when the cross blue lightning seem'd to open\nThe breast of heaven, I did present myself\nEven in the aim and very flash of it.\n\nCASCA:\nBut wherefore did you so much tempt the heavens?\nIt is the part of men to fear and tremble,\nWhen the most mighty gods by tokens send\nSuch dreadful heralds to astonish us.\n\nCASSIUS:\nYou are dull, Casca, and those sparks of life\nThat should be in a Roman you do want,\nOr else you use not. You look pale and gaze\nAnd put on fear and cast yourself in wonder,\nTo see the strange impatience of the heavens:\nBut if you would consider the true cause\nWhy all these fires, why all these gliding ghosts,\nWhy birds and beasts from quality and kind,\nWhy old men fool and children calculate,\nWhy all these things change from their ordinance\nTheir natures and preformed faculties\nTo monstrous quality,--why, you shall find\nThat heaven hath infused them with these spirits,\nTo make them instruments of fear and warning\nUnto some monstrous state.\nNow could I, Casca, name to thee a man\nMost like this dreadful night,\nThat thunders, lightens, opens graves, and roars\nAs doth the lion in the Capitol,\nA man no mightier than thyself or me\nIn personal action, yet prodigious grown\nAnd fearful, as these strange eruptions are.\n\nCASCA:\n'Tis Caesar that you mean; is it not, Cassius?\n\nCASSIUS:\nLet it be who it is: for Romans now\nHave thews and limbs like to their ancestors;\nBut, woe the while! our fathers' minds are dead,\nAnd we are govern'd with our mothers' spirits;\nOur yoke and sufferance show us womanish.\n\nCASCA:\nIndeed, they say the senators tomorrow\nMean to establish Caesar as a king;\nAnd he shall wear his crown by sea and land,\nIn every place, save here in Italy.\n\nCASSIUS:\nI know where I will wear this dagger then;\nCassius from bondage will deliver Cassius:\nTherein, ye gods, you make the weak most strong;\nTherein, ye gods, you tyrants do defeat:\nNor stony tower, nor walls of beaten brass,\nNor airless dungeon, nor strong links of iron,\nCan be retentive to the strength of spirit;\nBut life, being weary of these worldly bars,\nNever lacks power to dismiss itself.\nIf I know this, know all the world besides,\nThat part of tyranny that I do bear\nI can shake off at pleasure.\n\nCASCA:\nSo can I:\nSo every bondman in his own hand bears\nThe power to cancel his captivity.\n\nCASSIUS:\nAnd why should Caesar be a tyrant then?\nPoor man! I know he would not be a wolf,\nBut that he sees the Romans are but sheep:\nHe were no lion, were not Romans hinds.\nThose that with haste will make a mighty fire\nBegin it with weak straws: what trash is Rome,\nWhat rubbish and what offal, when it serves\nFor the base matter to illuminate\nSo vile a thing as Caesar! But, O grief,\nWhere hast thou led me? I perhaps speak this\nBefore a willing bondman; then I know\nMy answer must be made. But I am arm'd,\nAnd dangers are to me indifferent.\n\nCASCA:\nYou speak to Casca, and to such a man\nThat is no fleering tell-tale. Hold, my hand:\nBe factious for redress of all these griefs,\nAnd I will set this foot of mine as far\nAs who goes farthest.\n\nCASSIUS:\nThere's a bargain made.\nNow know you, Casca, I have moved already\nSome certain of the noblest-minded Romans\nTo undergo with me an enterprise\nOf honourable-dangerous consequence;\nAnd I do know, by this, they stay for me\nIn Pompey's porch: for now, this fearful night,\nThere is no stir or walking in the streets;\nAnd the complexion of the element\nIn favour's like the work we have in hand,\nMost bloody, fiery, and most terrible.\n\nCASCA:\nStand close awhile, for here comes one in haste.\n\nCASSIUS:\n'Tis Cinna; I do know him by his gait;\nHe is a friend.\nCinna, where haste you so?\n\nCINNA:\nTo find out you. Who's that? Metellus Cimber?\n\nCASSIUS:\nNo, it is Casca; one incorporate\nTo our attempts. Am I not stay'd for, Cinna?\n\nCINNA:\nI am glad on 't. What a fearful night is this!\nThere's two or three of us have seen strange sights.\n\nCASSIUS:\nAm I not stay'd for? tell me.\n\nCINNA:\nYes, you are.\nO Cassius, if you could\nBut win the noble Brutus to our party--\n\nCASSIUS:\nBe you content: good Cinna, take this paper,\nAnd look you lay it in the praetor's chair,\nWhere Brutus may but find it; and throw this\nIn at his window; set this up with wax\nUpon old Brutus' statue: all this done,\nRepair to Pompey's porch, where you shall find us.\nIs Decius Brutus and Trebonius there?\n\nCINNA:\nAll but Metellus Cimber; and he's gone\nTo seek you at your house. Well, I will hie,\nAnd so bestow these papers as you bade me.\n\nCASSIUS:\nThat done, repair to Pompey's theatre.\nCome, Casca, you and I will yet ere day\nSee Brutus at his house: three parts of him\nIs ours already, and the man entire\nUpon the next encounter yields him ours.\n\nCASCA:\nO, he sits high in all the people's hearts:\nAnd that which would appear offence in us,\nHis countenance, like richest alchemy,\nWill change to virtue and to worthiness.\n\nCASSIUS:\nHim and his worth and our great need of him\nYou have right well conceited. Let us go,\nFor it is after midnight; and ere day\nWe will awake him and be sure of him.\n\nBRUTUS:\nWhat, Lucius, ho!\nI cannot, by the progress of the stars,\nGive guess how near to day. Lucius, I say!\nI would it were my fault to sleep so soundly.\nWhen, Lucius, when? awake, I say! what, Lucius!\n\nLUCIUS:\nCall'd you, my lord?\n\nBRUTUS:\nGet me a taper in my study, Lucius:\nWhen it is lighted, come and call me here.\n\nLUCIUS:\nI will, my lord.\n\nBRUTUS:\nIt must be by his death: and for my part,\nI know no personal cause to spurn at him,\nBut for the general. He would be crown'd:\nHow that might change his nature, there's the question.\nIt is the bright day that brings forth the adder;\nAnd that craves wary walking. Crown him?--that;--\nAnd then, I grant, we put a sting in him,\nThat at his will he may do danger with.\nThe abuse of greatness is, when it disjoins\nRemorse from power: and, to speak truth of Caesar,\nI have not known when his affections sway'd\nMore than his reason. But 'tis a common proof,\nThat lowliness is young ambition's ladder,\nWhereto the climber-upward turns his face;\nBut when he once attains the upmost round.\nHe then unto the ladder turns his back,\nLooks in the clouds, scorning the base degrees\nBy which he did ascend. So Caesar may.\nThen, lest he may, prevent. And, since the quarrel\nWill bear no colour for the thing he is,\nFashion it thus; that what he is, augmented,\nWould run to these and these extremities:\nAnd therefore think him as a serpent's egg\nWhich, hatch'd, would, as his kind, grow mischievous,\nAnd kill him in the shell.\n\nLUCIUS:\nThe taper burneth in your closet, sir.\nSearching the window for a flint, I found\nThis paper, thus seal'd up; and, I am sure,\nIt did not lie there when I went to bed.\n\nBRUTUS:\nGet you to bed again; it is not day.\nIs not to-morrow, boy, the ides of March?\n\nLUCIUS:\nI know not, sir.\n\nBRUTUS:\nLook in the calendar, and bring me word.\n\nLUCIUS:\nI will, sir.\n\nBRUTUS:\nThe exhalations whizzing in the air\nGive so much light that I may read by them.\n'Brutus, thou sleep'st: awake, and see thyself.\nShall Rome, &c. Speak, strike, redress!\nBrutus, thou sleep'st: awake!'\nSuch instigations have been often dropp'd\nWhere I have took them up.\n'Shall Rome, &c.' Thus must I piece it out:\nShall Rome stand under one man's awe? What, Rome?\nMy ancestors did from the streets of Rome\nThe Tarquin drive, when he was call'd a king.\n'Speak, strike, redress!' Am I entreated\nTo speak and strike? O Rome, I make thee promise:\nIf the redress will follow, thou receivest\nThy full petition at the hand of Brutus!\n\nLUCIUS:\nSir, March is wasted fourteen days.\n\nBRUTUS:\n'Tis good. Go to the gate; somebody knocks.\nSince Cassius first did whet me against Caesar,\nI have not slept.\nBetween the acting of a dreadful thing\nAnd the first motion, all the interim is\nLike a phantasma, or a hideous dream:\nThe Genius and the mortal instruments\nAre then in council; and the state of man,\nLike to a little kingdom, suffers then\nThe nature of an insurrection.\n\nLUCIUS:\nSir, 'tis your brother Cassius at the door,\nWho doth desire to see you.\n\nBRUTUS:\nIs he alone?\n\nLUCIUS:\nNo, sir, there are moe with him.\n\nBRUTUS:\nDo you know them?\n\nLUCIUS:\nNo, sir; their hats are pluck'd about their ears,\nAnd half their faces buried in their cloaks,\nThat by no means I may discover them\nBy any mark of favour.\n\nBRUTUS:\nLet 'em enter.\nThey are the faction. O conspiracy,\nShamest thou to show thy dangerous brow by night,\nWhen evils are most free? O, then by day\nWhere wilt thou find a cavern dark enough\nTo mask thy monstrous visage? Seek none, conspiracy;\nHide it in smiles and affability:\nFor if thou path, thy native semblance on,\nNot Erebus itself were dim enough\nTo hide thee from prevention.\n\nCASSIUS:\nI think we are too bold upon your rest:\nGood morrow, Brutus; do we trouble you?\n\nBRUTUS:\nI have been up this hour, awake all night.\nKnow I these men that come along with you?\n\nCASSIUS:\nYes, every man of them, and no man here\nBut honours you; and every one doth wish\nYou had but that opinion of yourself\nWhich every noble Roman bears of you.\nThis is Trebonius.\n\nBRUTUS:\nHe is welcome hither.\n\nCASSIUS:\nThis, Decius Brutus.\n\nBRUTUS:\nHe is welcome too.\n\nCASSIUS:\nThis, Casca; this, Cinna; and this, Metellus Cimber.\n\nBRUTUS:\nThey are all welcome.\nWhat watchful cares do interpose themselves\nBetwixt your eyes and night?\n\nCASSIUS:\nShall I entreat a word?\n\nDECIUS BRUTUS:\nHere lies the east: doth not the day break here?\n\nCASCA:\nNo.\n\nCINNA:\nO, pardon, sir, it doth; and yon gray lines\nThat fret the clouds are messengers of day.\n\nCASCA:\nYou shall confess that you are both deceived.\nHere, as I point my sword, the sun arises,\nWhich is a great way growing on the south,\nWeighing the youthful season of the year.\nSome two months hence up higher toward the north\nHe first presents his fire; and the high east\nStands, as the Capitol, directly here.\n\nBRUTUS:\nGive me your hands all over, one by one.\n\nCASSIUS:\nAnd let us swear our resolution.\n\nBRUTUS:\nNo, not an oath: if not the face of men,\nThe sufferance of our souls, the time's abuse,--\nIf these be motives weak, break off betimes,\nAnd every man hence to his idle bed;\nSo let high-sighted tyranny range on,\nTill each man drop by lottery. But if these,\nAs I am sure they do, bear fire enough\nTo kindle cowards and to steel with valour\nThe melting spirits of women, then, countrymen,\nWhat need we any spur but our own cause,\nTo prick us to redress? what other bond\nThan secret Romans, that have spoke the word,\nAnd will not palter? and what other oath\nThan honesty to honesty engaged,\nThat this shall be, or we will fall for it?\nSwear priests and cowards and men cautelous,\nOld feeble carrions and such suffering souls\nThat welcome wrongs; unto bad causes swear\nSuch creatures as men doubt; but do not stain\nThe even virtue of our enterprise,\nNor the insuppressive mettle of our spirits,\nTo think that or our cause or our performance\nDid need an oath; when every drop of blood\nThat every Roman bears, and nobly bears,\nIs guilty of a several bastardy,\nIf he do break the smallest particle\nOf any promise that hath pass'd from him.\n\nCASSIUS:\nBut what of Cicero? shall we sound him?\nI think he will stand very strong with us.\n\nCASCA:\nLet us not leave him out.\n\nCINNA:\nNo, by no means.\n\nMETELLUS CIMBER:\nO, let us have him, for his silver hairs\nWill purchase us a good opinion\nAnd buy men's voices to commend our deeds:\nIt shall be said, his judgment ruled our hands;\nOur youths and wildness shall no whit appear,\nBut all be buried in his gravity.\n\nBRUTUS:\nO, name him not: let us not break with him;\nFor he will never follow any thing\nThat other men begin.\n\nCASSIUS:\nThen leave him out.\n\nCASCA:\nIndeed he is not fit.\n\nDECIUS BRUTUS:\nShall no man else be touch'd but only Caesar?\n\nCASSIUS:\nDecius, well urged: I think it is not meet,\nMark Antony, so well beloved of Caesar,\nShould outlive Caesar: we shall find of him\nA shrewd contriver; and, you know, his means,\nIf he improve them, may well stretch so far\nAs to annoy us all: which to prevent,\nLet Antony and Caesar fall together.\n\nBRUTUS:\nOur course will seem too bloody, Caius Cassius,\nTo cut the head off and then hack the limbs,\nLike wrath in death and envy afterwards;\nFor Antony is but a limb of Caesar:\nLet us be sacrificers, but not butchers, Caius.\nWe all stand up against the spirit of Caesar;\nAnd in the spirit of men there is no blood:\nO, that we then could come by Caesar's spirit,\nAnd not dismember Caesar! But, alas,\nCaesar must bleed for it! And, gentle friends,\nLet's kill him boldly, but not wrathfully;\nLet's carve him as a dish fit for the gods,\nNot hew him as a carcass fit for hounds:\nAnd let our hearts, as subtle masters do,\nStir up their servants to an act of rage,\nAnd after seem to chide 'em. This shall make\nOur purpose necessary and not envious:\nWhich so appearing to the common eyes,\nWe shall be call'd purgers, not murderers.\nAnd for Mark Antony, think not of him;\nFor he can do no more than Caesar's arm\nWhen Caesar's head is off.\n\nCASSIUS:\nYet I fear him;\nFor in the ingrafted love he bears to Caesar--\n\nBRUTUS:\nAlas, good Cassius, do not think of him:\nIf he love Caesar, all that he can do\nIs to himself, take thought and die for Caesar:\nAnd that were much he should; for he is given\nTo sports, to wildness and much company.\n\nTREBONIUS:\nThere is no fear in him; let him not die;\nFor he will live, and laugh at this hereafter.\n\nBRUTUS:\nPeace! count the clock.\n\nCASSIUS:\nThe clock hath stricken three.\n\nTREBONIUS:\n'Tis time to part.\n\nCASSIUS:\nBut it is doubtful yet,\nWhether Caesar will come forth to-day, or no;\nFor he is superstitious grown of late,\nQuite from the main opinion he held once\nOf fantasy, of dreams and ceremonies:\nIt may be, these apparent prodigies,\nThe unaccustom'd terror of this night,\nAnd the persuasion of his augurers,\nMay hold him from the Capitol to-day.\n\nDECIUS BRUTUS:\nNever fear that: if he be so resolved,\nI can o'ersway him; for he loves to hear\nThat unicorns may be betray'd with trees,\nAnd bears with glasses, elephants with holes,\nLions with toils and men with flatterers;\nBut when I tell him he hates flatterers,\nHe says he does, being then most flattered.\nLet me work;\nFor I can give his humour the true bent,\nAnd I will bring him to the Capitol.\n\nCASSIUS:\nNay, we will all of us be there to fetch him.\n\nBRUTUS:\nBy the eighth hour: is that the uttermost?\n\nCINNA:\nBe that the uttermost, and fail not then.\n\nMETELLUS CIMBER:\nCaius Ligarius doth bear Caesar hard,\nWho rated him for speaking well of Pompey:\nI wonder none of you have thought of him.\n\nBRUTUS:\nNow, good Metellus, go along by him:\nHe loves me well, and I have given him reasons;\nSend him but hither, and I'll fashion him.\n\nCASSIUS:\nThe morning comes upon 's: we'll leave you, Brutus.\nAnd, friends, disperse yourselves; but all remember\nWhat you have said, and show yourselves true Romans.\n\nBRUTUS:\nGood gentlemen, look fresh and merrily;\nLet not our looks put on our purposes,\nBut bear it as our Roman actors do,\nWith untired spirits and formal constancy:\nAnd so good morrow to you every one.\nBoy! Lucius! Fast asleep? It is no matter;\nEnjoy the honey-heavy dew of slumber:\nThou hast no figures nor no fantasies,\nWhich busy care draws in the brains of men;\nTherefore thou sleep'st so sound.\n\nPORTIA:\nBrutus, my lord!\n\nBRUTUS:\nPortia, what mean you? wherefore rise you now?\nIt is not for your health thus to commit\nYour weak condition to the raw cold morning.\n\nPORTIA:\nNor for yours neither. You've ungently, Brutus,\nStole from my bed: and yesternight, at supper,\nYou suddenly arose, and walk'd about,\nMusing and sighing, with your arms across,\nAnd when I ask'd you what the matter was,\nYou stared upon me with ungentle looks;\nI urged you further; then you scratch'd your head,\nAnd too impatiently stamp'd with your foot;\nYet I insisted, yet you answer'd not,\nBut, with an angry wafture of your hand,\nGave sign for me to leave you: so I did;\nFearing to strengthen that impatience\nWhich seem'd too much enkindled, and withal\nHoping it was but an effect of humour,\nWhich sometime hath his hour with every man.\nIt will not let you eat, nor talk, nor sleep,\nAnd could it work so much upon your shape\nAs it hath much prevail'd on your condition,\nI should not know you, Brutus. Dear my lord,\nMake me acquainted with your cause of grief.\n\nBRUTUS:\nI am not well in health, and that is all.\n\nPORTIA:\nBrutus is wise, and, were he not in health,\nHe would embrace the means to come by it.\n\nBRUTUS:\nWhy, so I do. Good Portia, go to bed.\n\nPORTIA:\nIs Brutus sick? and is it physical\nTo walk unbraced and suck up the humours\nOf the dank morning? What, is Brutus sick,\nAnd will he steal out of his wholesome bed,\nTo dare the vile contagion of the night\nAnd tempt the rheumy and unpurged air\nTo add unto his sickness? No, my Brutus;\nYou have some sick offence within your mind,\nWhich, by the right and virtue of my place,\nI ought to know of: and, upon my knees,\nI charm you, by my once-commended beauty,\nBy all your vows of love and that great vow\nWhich did incorporate and make us one,\nThat you unfold to me, yourself, your half,\nWhy you are heavy, and what men to-night\nHave had to resort to you: for here have been\nSome six or seven, who did hide their faces\nEven from darkness.\n\nBRUTUS:\nKneel not, gentle Portia.\n\nPORTIA:\nI should not need, if you were gentle Brutus.\nWithin the bond of marriage, tell me, Brutus,\nIs it excepted I should know no secrets\nThat appertain to you? Am I yourself\nBut, as it were, in sort or limitation,\nTo keep with you at meals, comfort your bed,\nAnd talk to you sometimes? Dwell I but in the suburbs\nOf your good pleasure? If it be no more,\nPortia is Brutus' harlot, not his wife.\n\nBRUTUS:\nYou are my true and honourable wife,\nAs dear to me as are the ruddy drops\nThat visit my sad heart\n\nPORTIA:\nIf this were true, then should I know this secret.\nI grant I am a woman; but withal\nA woman that Lord Brutus took to wife:\nI grant I am a woman; but withal\nA woman well-reputed, Cato's daughter.\nThink you I am no stronger than my sex,\nBeing so father'd and so husbanded?\nTell me your counsels, I will not disclose 'em:\nI have made strong proof of my constancy,\nGiving myself a voluntary wound\nHere, in the thigh: can I bear that with patience.\nAnd not my husband's secrets?\n\nBRUTUS:\nO ye gods,\nRender me worthy of this noble wife!\nHark, hark! one knocks: Portia, go in awhile;\nAnd by and by thy bosom shall partake\nThe secrets of my heart.\nAll my engagements I will construe to thee,\nAll the charactery of my sad brows:\nLeave me with haste.\nLucius, who's that knocks?\n\nLUCIUS:\nHe is a sick man that would speak with you.\n\nBRUTUS:\nCaius Ligarius, that Metellus spake of.\nBoy, stand aside. Caius Ligarius! how?\n\nLIGARIUS:\nVouchsafe good morrow from a feeble tongue.\n\nBRUTUS:\nO, what a time have you chose out, brave Caius,\nTo wear a kerchief! Would you were not sick!\n\nLIGARIUS:\nI am not sick, if Brutus have in hand\nAny exploit worthy the name of honour.\n\nBRUTUS:\nSuch an exploit have I in hand, Ligarius,\nHad you a healthful ear to hear of it.\n\nLIGARIUS:\nBy all the gods that Romans bow before,\nI here discard my sickness! Soul of Rome!\nBrave son, derived from honourable loins!\nThou, like an exorcist, hast conjured up\nMy mortified spirit. Now bid me run,\nAnd I will strive with things impossible;\nYea, get the better of them. What's to do?\n\nBRUTUS:\nA piece of work that will make sick men whole.\n\nLIGARIUS:\nBut are not some whole that we must make sick?\n\nBRUTUS:\nThat must we also. What it is, my Caius,\nI shall unfold to thee, as we are going\nTo whom it must be done.\n\nLIGARIUS:\nSet on your foot,\nAnd with a heart new-fired I follow you,\nTo do I know not what: but it sufficeth\nThat Brutus leads me on.\n\nBRUTUS:\nFollow me, then.\n\nCAESAR:\nNor heaven nor earth have been at peace to-night:\nThrice hath Calpurnia in her sleep cried out,\n'Help, ho! they murder Caesar!' Who's within?\n\nServant:\nMy lord?\n\nCAESAR:\nGo bid the priests do present sacrifice\nAnd bring me their opinions of success.\n\nServant:\nI will, my lord.\n\nCALPURNIA:\nWhat mean you, Caesar? think you to walk forth?\nYou shall not stir out of your house to-day.\n\nCAESAR:\nCaesar shall forth: the things that threaten'd me\nNe'er look'd but on my back; when they shall see\nThe face of Caesar, they are vanished.\n\nCALPURNIA:\nCaesar, I never stood on ceremonies,\nYet now they fright me. There is one within,\nBesides the things that we have heard and seen,\nRecounts most horrid sights seen by the watch.\nA lioness hath whelped in the streets;\nAnd graves have yawn'd, and yielded up their dead;\nFierce fiery warriors fought upon the clouds,\nIn ranks and squadrons and right form of war,\nWhich drizzled blood upon the Capitol;\nThe noise of battle hurtled in the air,\nHorses did neigh, and dying men did groan,\nAnd ghosts did shriek and squeal about the streets.\nO Caesar! these things are beyond all use,\nAnd I do fear them.\n\nCAESAR:\nWhat can be avoided\nWhose end is purposed by the mighty gods?\nYet Caesar shall go forth; for these predictions\nAre to the world in general as to Caesar.\n\nCALPURNIA:\nWhen beggars die, there are no comets seen;\nThe heavens themselves blaze forth the death of princes.\n\nCAESAR:\nCowards die many times before their deaths;\nThe valiant never taste of death but once.\nOf all the wonders that I yet have heard.\nIt seems to me most strange that men should fear;\nSeeing that death, a necessary end,\nWill come when it will come.\nWhat say the augurers?\n\nServant:\nThey would not have you to stir forth to-day.\nPlucking the entrails of an offering forth,\nThey could not find a heart within the beast.\n\nCAESAR:\nThe gods do this in shame of cowardice:\nCaesar should be a beast without a heart,\nIf he should stay at home to-day for fear.\nNo, Caesar shall not: danger knows full well\nThat Caesar is more dangerous than he:\nWe are two lions litter'd in one day,\nAnd I the elder and more terrible:\nAnd Caesar shall go forth.\n\nCALPURNIA:\nAlas, my lord,\nYour wisdom is consumed in confidence.\nDo not go forth to-day: call it my fear\nThat keeps you in the house, and not your own.\nWe'll send Mark Antony to the senate-house:\nAnd he shall say you are not well to-day:\nLet me, upon my knee, prevail in this.\n\nCAESAR:\nMark Antony shall say I am not well,\nAnd, for thy humour, I will stay at home.\nHere's Decius Brutus, he shall tell them so.\n\nDECIUS BRUTUS:\nCaesar, all hail! good morrow, worthy Caesar:\nI come to fetch you to the senate-house.\n\nCAESAR:\nAnd you are come in very happy time,\nTo bear my greeting to the senators\nAnd tell them that I will not come to-day:\nCannot, is false, and that I dare not, falser:\nI will not come to-day: tell them so, Decius.\n\nCALPURNIA:\nSay he is sick.\n\nCAESAR:\nShall Caesar send a lie?\nHave I in conquest stretch'd mine arm so far,\nTo be afraid to tell graybeards the truth?\nDecius, go tell them Caesar will not come.\n\nDECIUS BRUTUS:\nMost mighty Caesar, let me know some cause,\nLest I be laugh'd at when I tell them so.\n\nCAESAR:\nThe cause is in my will: I will not come;\nThat is enough to satisfy the senate.\nBut for your private satisfaction,\nBecause I love you, I will let you know:\nCalpurnia here, my wife, stays me at home:\nShe dreamt to-night she saw my statua,\nWhich, like a fountain with an hundred spouts,\nDid run pure blood: and many lusty Romans\nCame smiling, and did bathe their hands in it:\nAnd these does she apply for warnings, and portents,\nAnd evils imminent; and on her knee\nHath begg'd that I will stay at home to-day.\n\nDECIUS BRUTUS:\nThis dream is all amiss interpreted;\nIt was a vision fair and fortunate:\nYour statue spouting blood in many pipes,\nIn which so many smiling Romans bathed,\nSignifies that from you great Rome shall suck\nReviving blood, and that great men shall press\nFor tinctures, stains, relics and cognizance.\nThis by Calpurnia's dream is signified.\n\nCAESAR:\nAnd this way have you well expounded it.\n\nDECIUS BRUTUS:\nI have, when you have heard what I can say:\nAnd know it now: the senate have concluded\nTo give this day a crown to mighty Caesar.\nIf you shall send them word you will not come,\nTheir minds may change. Besides, it were a mock\nApt to be render'd, for some one to say\n'Break up the senate till another time,\nWhen Caesar's wife shall meet with better dreams.'\nIf Caesar hide himself, shall they not whisper\n'Lo, Caesar is afraid'?\nPardon me, Caesar; for my dear dear love\nTo our proceeding bids me tell you this;\nAnd reason to my love is liable.\n\nCAESAR:\nHow foolish do your fears seem now, Calpurnia!\nI am ashamed I did yield to them.\nGive me my robe, for I will go.\nAnd look where Publius is come to fetch me.\n\nPUBLIUS:\nGood morrow, Caesar.\n\nCAESAR:\nWelcome, Publius.\nWhat, Brutus, are you stirr'd so early too?\nGood morrow, Casca. Caius Ligarius,\nCaesar was ne'er so much your enemy\nAs that same ague which hath made you lean.\nWhat is 't o'clock?\n\nBRUTUS:\nCaesar, 'tis strucken eight.\n\nCAESAR:\nI thank you for your pains and courtesy.\nSee! Antony, that revels long o' nights,\nIs notwithstanding up. Good morrow, Antony.\n\nANTONY:\nSo to most noble Caesar.\n\nCAESAR:\nBid them prepare within:\nI am to blame to be thus waited for.\nNow, Cinna: now, Metellus: what, Trebonius!\nI have an hour's talk in store for you;\nRemember that you call on me to-day:\nBe near me, that I may remember you.\n\nTREBONIUS:\nCaesar, I will:\nand so near will I be,\nThat your best friends shall wish I had been further.\n\nCAESAR:\nGood friends, go in, and taste some wine with me;\nAnd we, like friends, will straightway go together.\n\nBRUTUS:\n\nARTEMIDORUS:\n'Caesar, beware of Brutus; take heed of Cassius;\ncome not near Casca; have an eye to Cinna, trust not\nTrebonius: mark well Metellus Cimber: Decius Brutus\nloves thee not: thou hast wronged Caius Ligarius.\nThere is but one mind in all these men, and it is\nbent against Caesar. If thou beest not immortal,\nlook about you: security gives way to conspiracy.\nThe mighty gods defend thee! Thy lover,\n'ARTEMIDORUS.'\nHere will I stand till Caesar pass along,\nAnd as a suitor will I give him this.\nMy heart laments that virtue cannot live\nOut of the teeth of emulation.\nIf thou read this, O Caesar, thou mayst live;\nIf not, the Fates with traitors do contrive.\n\nPORTIA:\nI prithee, boy, run to the senate-house;\nStay not to answer me, but get thee gone:\nWhy dost thou stay?\n\nLUCIUS:\nTo know my errand, madam.\n\nPORTIA:\nI would have had thee there, and here again,\nEre I can tell thee what thou shouldst do there.\nO constancy, be strong upon my side,\nSet a huge mountain 'tween my heart and tongue!\nI have a man's mind, but a woman's might.\nHow hard it is for women to keep counsel!\nArt thou here yet?\n\nLUCIUS:\nMadam, what should I do?\nRun to the Capitol, and nothing else?\nAnd so return to you, and nothing else?\n\nPORTIA:\nYes, bring me word, boy, if thy lord look well,\nFor he went sickly forth: and take good note\nWhat Caesar doth, what suitors press to him.\nHark, boy! what noise is that?\n\nLUCIUS:\nI hear none, madam.\n\nPORTIA:\nPrithee, listen well;\nI heard a bustling rumour, like a fray,\nAnd the wind brings it from the Capitol.\n\nLUCIUS:\nSooth, madam, I hear nothing.\n\nPORTIA:\nCome hither, fellow: which way hast thou been?\n\nSoothsayer:\nAt mine own house, good lady.\n\nPORTIA:\nWhat is't o'clock?\n\nSoothsayer:\nAbout the ninth hour, lady.\n\nPORTIA:\nIs Caesar yet gone to the Capitol?\n\nSoothsayer:\nMadam, not yet: I go to take my stand,\nTo see him pass on to the Capitol.\n\nPORTIA:\nThou hast some suit to Caesar, hast thou not?\n\nSoothsayer:\nThat I have, lady: if it will please Caesar\nTo be so good to Caesar as to hear me,\nI shall beseech him to befriend himself.\n\nPORTIA:\nWhy, know'st thou any harm's intended towards him?\n\nSoothsayer:\nNone that I know will be, much that I fear may chance.\nGood morrow to you. Here the street is narrow:\nThe throng that follows Caesar at the heels,\nOf senators, of praetors, common suitors,\nWill crowd a feeble man almost to death:\nI'll get me to a place more void, and there\nSpeak to great Caesar as he comes along.\n\nPORTIA:\nI must go in. Ay me, how weak a thing\nThe heart of woman is! O Brutus,\nThe heavens speed thee in thine enterprise!\nSure, the boy heard me: Brutus hath a suit\nThat Caesar will not grant. O, I grow faint.\nRun, Lucius, and commend me to my lord;\nSay I am merry: come to me again,\nAnd bring me word what he doth say to thee.\n\nCAESAR:\n\nSoothsayer:\nAy, Caesar; but not gone.\n\nARTEMIDORUS:\nHail, Caesar! read this schedule.\n\nDECIUS BRUTUS:\nTrebonius doth desire you to o'erread,\nAt your best leisure, this his humble suit.\n\nARTEMIDORUS:\nO Caesar, read mine first; for mine's a suit\nThat touches Caesar nearer: read it, great Caesar.\n\nCAESAR:\nWhat touches us ourself shall be last served.\n\nARTEMIDORUS:\nDelay not, Caesar; read it instantly.\n\nCAESAR:\nWhat, is the fellow mad?\n\nPUBLIUS:\nSirrah, give place.\n\nCASSIUS:\nWhat, urge you your petitions in the street?\nCome to the Capitol.\n\nPOPILIUS:\nI wish your enterprise to-day may thrive.\n\nCASSIUS:\nWhat enterprise, Popilius?\n\nPOPILIUS:\nFare you well.\n\nBRUTUS:\nWhat said Popilius Lena?\n\nCASSIUS:\nHe wish'd to-day our enterprise might thrive.\nI fear our purpose is discovered.\n\nBRUTUS:\nLook, how he makes to Caesar; mark him.\n\nCASSIUS:\nCasca, be sudden, for we fear prevention.\nBrutus, what shall be done? If this be known,\nCassius or Caesar never shall turn back,\nFor I will slay myself.\n\nBRUTUS:\nCassius, be constant:\nPopilius Lena speaks not of our purposes;\nFor, look, he smiles, and Caesar doth not change.\n\nCASSIUS:\nTrebonius knows his time; for, look you, Brutus.\nHe draws Mark Antony out of the way.\n\nDECIUS BRUTUS:\nWhere is Metellus Cimber? Let him go,\nAnd presently prefer his suit to Caesar.\n\nBRUTUS:\nHe is address'd: press near and second him.\n\nCINNA:\nCasca, you are the first that rears your hand.\n\nCAESAR:\nAre we all ready? What is now amiss\nThat Caesar and his senate must redress?\n\nMETELLUS CIMBER:\nMost high, most mighty, and most puissant Caesar,\nMetellus Cimber throws before thy seat\nAn humble heart,--\n\nCAESAR:\nI must prevent thee, Cimber.\nThese couchings and these lowly courtesies\nMight fire the blood of ordinary men,\nAnd turn pre-ordinance and first decree\nInto the law of children. Be not fond,\nTo think that Caesar bears such rebel blood\nThat will be thaw'd from the true quality\nWith that which melteth fools; I mean, sweet words,\nLow-crooked court'sies and base spaniel-fawning.\nThy brother by decree is banished:\nIf thou dost bend and pray and fawn for him,\nI spurn thee like a cur out of my way.\nKnow, Caesar doth not wrong, nor without cause\nWill he be satisfied.\n\nMETELLUS CIMBER:\nIs there no voice more worthy than my own\nTo sound more sweetly in great Caesar's ear\nFor the repealing of my banish'd brother?\n\nBRUTUS:\nI kiss thy hand, but not in flattery, Caesar;\nDesiring thee that Publius Cimber may\nHave an immediate freedom of repeal.\n\nCAESAR:\nWhat, Brutus!\n\nCASSIUS:\nPardon, Caesar; Caesar, pardon:\nAs low as to thy foot doth Cassius fall,\nTo beg enfranchisement for Publius Cimber.\n\nCASSIUS:\nI could be well moved, if I were as you:\nIf I could pray to move, prayers would move me:\nBut I am constant as the northern star,\nOf whose true-fix'd and resting quality\nThere is no fellow in the firmament.\nThe skies are painted with unnumber'd sparks,\nThey are all fire and every one doth shine,\nBut there's but one in all doth hold his place:\nSo in the world; 'tis furnish'd well with men,\nAnd men are flesh and blood, and apprehensive;\nYet in the number I do know but one\nThat unassailable holds on his rank,\nUnshaked of motion: and that I am he,\nLet me a little show it, even in this;\nThat I was constant Cimber should be banish'd,\nAnd constant do remain to keep him so.\n\nCINNA:\nO Caesar,--\n\nCAESAR:\nHence! wilt thou lift up Olympus?\n\nDECIUS BRUTUS:\nGreat Caesar,--\n\nCAESAR:\nDoth not Brutus bootless kneel?\n\nCASCA:\nSpeak, hands for me!\n\nCAESAR:\nEt tu, Brute! Then fall, Caesar.\n\nCINNA:\nLiberty! Freedom! Tyranny is dead!\nRun hence, proclaim, cry it about the streets.\n\nCASSIUS:\nSome to the common pulpits, and cry out\n'Liberty, freedom, and enfranchisement!'\n\nBRUTUS:\nPeople and senators, be not affrighted;\nFly not; stand stiff: ambition's debt is paid.\n\nCASCA:\nGo to the pulpit, Brutus.\n\nDECIUS BRUTUS:\nAnd Cassius too.\n\nBRUTUS:\nWhere's Publius?\n\nCINNA:\nHere, quite confounded with this mutiny.\n\nMETELLUS CIMBER:\nStand fast together, lest some friend of Caesar's\nShould chance--\n\nBRUTUS:\nTalk not of standing. Publius, good cheer;\nThere is no harm intended to your person,\nNor to no Roman else: so tell them, Publius.\n\nCASSIUS:\nAnd leave us, Publius; lest that the people,\nRushing on us, should do your age some mischief.\n\nBRUTUS:\nDo so: and let no man abide this deed,\nBut we the doers.\n\nCASSIUS:\nWhere is Antony?\n\nTREBONIUS:\nFled to his house amazed:\nMen, wives and children stare, cry out and run\nAs it were doomsday.\n\nBRUTUS:\nFates, we will know your pleasures:\nThat we shall die, we know; 'tis but the time\nAnd drawing days out, that men stand upon.\n\nCASSIUS:\nWhy, he that cuts off twenty years of life\nCuts off so many years of fearing death.\n\nBRUTUS:\nGrant that, and then is death a benefit:\nSo are we Caesar's friends, that have abridged\nHis time of fearing death. Stoop, Romans, stoop,\nAnd let us bathe our hands in Caesar's blood\nUp to the elbows, and besmear our swords:\nThen walk we forth, even to the market-place,\nAnd, waving our red weapons o'er our heads,\nLet's all cry 'Peace, freedom and liberty!'\n\nCASSIUS:\nStoop, then, and wash. How many ages hence\nShall this our lofty scene be acted over\nIn states unborn and accents yet unknown!\n\nBRUTUS:\nHow many times shall Caesar bleed in sport,\nThat now on Pompey's basis lies along\nNo worthier than the dust!\n\nCASSIUS:\nSo oft as that shall be,\nSo often shall the knot of us be call'd\nThe men that gave their country liberty.\n\nDECIUS BRUTUS:\nWhat, shall we forth?\n\nCASSIUS:\nAy, every man away:\nBrutus shall lead; and we will grace his heels\nWith the most boldest and best hearts of Rome.\n\nBRUTUS:\nSoft! who comes here? A friend of Antony's.\n\nServant:\nThus, Brutus, did my master bid me kneel:\nThus did Mark Antony bid me fall down;\nAnd, being prostrate, thus he bade me say:\nBrutus is noble, wise, valiant, and honest;\nCaesar was mighty, bold, royal, and loving:\nSay I love Brutus, and I honour him;\nSay I fear'd Caesar, honour'd him and loved him.\nIf Brutus will vouchsafe that Antony\nMay safely come to him, and be resolved\nHow Caesar hath deserved to lie in death,\nMark Antony shall not love Caesar dead\nSo well as Brutus living; but will follow\nThe fortunes and affairs of noble Brutus\nThorough the hazards of this untrod state\nWith all true faith. So says my master Antony.\n\nBRUTUS:\nThy master is a wise and valiant Roman;\nI never thought him worse.\nTell him, so please him come unto this place,\nHe shall be satisfied; and, by my honour,\nDepart untouch'd.\n\nServant:\nI'll fetch him presently.\n\nBRUTUS:\nI know that we shall have him well to friend.\n\nCASSIUS:\nI wish we may: but yet have I a mind\nThat fears him much; and my misgiving still\nFalls shrewdly to the purpose.\n\nBRUTUS:\nBut here comes Antony.\nWelcome, Mark Antony.\n\nANTONY:\nO mighty Caesar! dost thou lie so low?\nAre all thy conquests, glories, triumphs, spoils,\nShrunk to this little measure? Fare thee well.\nI know not, gentlemen, what you intend,\nWho else must be let blood, who else is rank:\nIf I myself, there is no hour so fit\nAs Caesar's death hour, nor no instrument\nOf half that worth as those your swords, made rich\nWith the most noble blood of all this world.\nI do beseech ye, if you bear me hard,\nNow, whilst your purpled hands do reek and smoke,\nFulfil your pleasure. Live a thousand years,\nI shall not find myself so apt to die:\nNo place will please me so, no mean of death,\nAs here by Caesar, and by you cut off,\nThe choice and master spirits of this age.\n\nBRUTUS:\nO Antony, beg not your death of us.\nThough now we must appear bloody and cruel,\nAs, by our hands and this our present act,\nYou see we do, yet see you but our hands\nAnd this the bleeding business they have done:\nOur hearts you see not; they are pitiful;\nAnd pity to the general wrong of Rome--\nAs fire drives out fire, so pity pity--\nHath done this deed on Caesar. For your part,\nTo you our swords have leaden points, Mark Antony:\nOur arms, in strength of malice, and our hearts\nOf brothers' temper, do receive you in\nWith all kind love, good thoughts, and reverence.\n\nCASSIUS:\nYour voice shall be as strong as any man's\nIn the disposing of new dignities.\n\nBRUTUS:\nOnly be patient till we have appeased\nThe multitude, beside themselves with fear,\nAnd then we will deliver you the cause,\nWhy I, that did love Caesar when I struck him,\nHave thus proceeded.\n\nANTONY:\nI doubt not of your wisdom.\nLet each man render me his bloody hand:\nFirst, Marcus Brutus, will I shake with you;\nNext, Caius Cassius, do I take your hand;\nNow, Decius Brutus, yours: now yours, Metellus;\nYours, Cinna; and, my valiant Casca, yours;\nThough last, not last in love, yours, good Trebonius.\nGentlemen all,--alas, what shall I say?\nMy credit now stands on such slippery ground,\nThat one of two bad ways you must conceit me,\nEither a coward or a flatterer.\nThat I did love thee, Caesar, O, 'tis true:\nIf then thy spirit look upon us now,\nShall it not grieve thee dearer than thy death,\nTo see thy thy Anthony making his peace,\nShaking the bloody fingers of thy foes,\nMost noble! in the presence of thy corse?\nHad I as many eyes as thou hast wounds,\nWeeping as fast as they stream forth thy blood,\nIt would become me better than to close\nIn terms of friendship with thine enemies.\nPardon me, Julius! Here wast thou bay'd, brave hart;\nHere didst thou fall; and here thy hunters stand,\nSign'd in thy spoil, and crimson'd in thy lethe.\nO world, thou wast the forest to this hart;\nAnd this, indeed, O world, the heart of thee.\nHow like a deer, strucken by many princes,\nDost thou here lie!\n\nCASSIUS:\nMark Antony,--\n\nANTONY:\nPardon me, Caius Cassius:\nThe enemies of Caesar shall say this;\nThen, in a friend, it is cold modesty.\n\nCASSIUS:\nI blame you not for praising Caesar so;\nBut what compact mean you to have with us?\nWill you be prick'd in number of our friends;\nOr shall we on, and not depend on you?\n\nANTONY:\nTherefore I took your hands, but was, indeed,\nSway'd from the point, by looking down on Caesar.\nFriends am I with you all and love you all,\nUpon this hope, that you shall give me reasons\nWhy and wherein Caesar was dangerous.\n\nBRUTUS:\nOr else were this a savage spectacle:\nOur reasons are so full of good regard\nThat were you, Antony, the son of Caesar,\nYou should be satisfied.\n\nANTONY:\nThat's all I seek:\nAnd am moreover suitor that I may\nProduce his body to the market-place;\nAnd in the pulpit, as becomes a friend,\nSpeak in the order of his funeral.\n\nBRUTUS:\nYou shall, Mark Antony.\n\nCASSIUS:\nBrutus, a word with you.\nYou know not what you do: do not consent\nThat Antony speak in his funeral:\nKnow you how much the people may be moved\nBy that which he will utter?\n\nBRUTUS:\nBy your pardon;\nI will myself into the pulpit first,\nAnd show the reason of our Caesar's death:\nWhat Antony shall speak, I will protest\nHe speaks by leave and by permission,\nAnd that we are contented Caesar shall\nHave all true rites and lawful ceremonies.\nIt shall advantage more than do us wrong.\n\nCASSIUS:\nI know not what may fall; I like it not.\n\nBRUTUS:\nMark Antony, here, take you Caesar's body.\nYou shall not in your funeral speech blame us,\nBut speak all good you can devise of Caesar,\nAnd say you do't by our permission;\nElse shall you not have any hand at all\nAbout his funeral: and you shall speak\nIn the same pulpit whereto I am going,\nAfter my speech is ended.\n\nANTONY:\nBe it so.\nI do desire no more.\n\nBRUTUS:\nPrepare the body then, and follow us.\n\nANTONY:\nO, pardon me, thou bleeding piece of earth,\nThat I am meek and gentle with these butchers!\nThou art the ruins of the noblest man\nThat ever lived in the tide of times.\nWoe to the hand that shed this costly blood!\nOver thy wounds now do I prophesy,--\nWhich, like dumb mouths, do ope their ruby lips,\nTo beg the voice and utterance of my tongue--\nA curse shall light upon the limbs of men;\nDomestic fury and fierce civil strife\nShall cumber all the parts of Italy;\nBlood and destruction shall be so in use\nAnd dreadful objects so familiar\nThat mothers shall but smile when they behold\nTheir infants quarter'd with the hands of war;\nAll pity choked with custom of fell deeds:\nAnd Caesar's spirit, ranging for revenge,\nWith Ate by his side come hot from hell,\nShall in these confines with a monarch's voice\nCry  'Havoc,' and let slip the dogs of war;\nThat this foul deed shall smell above the earth\nWith carrion men, groaning for burial.\nYou serve Octavius Caesar, do you not?\n\nServant:\nI do, Mark Antony.\n\nANTONY:\nCaesar did write for him to come to Rome.\n\nServant:\nHe did receive his letters, and is coming;\nAnd bid me say to you by word of mouth--\nO Caesar!--\n\nANTONY:\nThy heart is big, get thee apart and weep.\nPassion, I see, is catching; for mine eyes,\nSeeing those beads of sorrow stand in thine,\nBegan to water. Is thy master coming?\n\nServant:\nHe lies to-night within seven leagues of Rome.\n\nANTONY:\nPost back with speed, and tell him what hath chanced:\nHere is a mourning Rome, a dangerous Rome,\nNo Rome of safety for Octavius yet;\nHie hence, and tell him so. Yet, stay awhile;\nThou shalt not back till I have borne this corse\nInto the market-place: there shall I try\nIn my oration, how the people take\nThe cruel issue of these bloody men;\nAccording to the which, thou shalt discourse\nTo young Octavius of the state of things.\nLend me your hand.\n\nCitizens:\nWe will be satisfied; let us be satisfied.\n\nBRUTUS:\nThen follow me, and give me audience, friends.\nCassius, go you into the other street,\nAnd part the numbers.\nThose that will hear me speak, let 'em stay here;\nThose that will follow Cassius, go with him;\nAnd public reasons shall be rendered\nOf Caesar's death.\n\nFirst Citizen:\nI will hear Brutus speak.\n\nSecond Citizen:\nI will hear Cassius; and compare their reasons,\nWhen severally we hear them rendered.\n\nThird Citizen:\nThe noble Brutus is ascended: silence!\n\nBRUTUS:\nBe patient till the last.\nRomans, countrymen, and lovers! hear me for my\ncause, and be silent, that you may hear: believe me\nfor mine honour, and have respect to mine honour, that\nyou may believe: censure me in your wisdom, and\nawake your senses, that you may the better judge.\nIf there be any in this assembly, any dear friend of\nCaesar's, to him I say, that Brutus' love to Caesar\nwas no less than his. If then that friend demand\nwhy Brutus rose against Caesar, this is my answer:\n--Not that I loved Caesar less, but that I loved\nRome more. Had you rather Caesar were living and\ndie all slaves, than that Caesar were dead, to live\nall free men? As Caesar loved me, I weep for him;\nas he was fortunate, I rejoice at it; as he was\nvaliant, I honour him: but, as he was ambitious, I\nslew him. There is tears for his love; joy for his\nfortune; honour for his valour; and death for his\nambition. Who is here so base that would be a\nbondman? If any, speak; for him have I offended.\nWho is here so rude that would not be a Roman? If\nany, speak; for him have I offended. Who is here so\nvile that will not love his country? If any, speak;\nfor him have I offended. I pause for a reply.\n\nAll:\nNone, Brutus, none.\n\nBRUTUS:\nThen none have I offended. I have done no more to\nCaesar than you shall do to Brutus. The question of\nhis death is enrolled in the Capitol; his glory not\nextenuated, wherein he was worthy, nor his offences\nenforced, for which he suffered death.\nHere comes his body, mourned by Mark Antony: who,\nthough he had no hand in his death, shall receive\nthe benefit of his dying, a place in the\ncommonwealth; as which of you shall not? With this\nI depart,--that, as I slew my best lover for the\ngood of Rome, I have the same dagger for myself,\nwhen it shall please my country to need my death.\n\nAll:\nLive, Brutus! live, live!\n\nFirst Citizen:\nBring him with triumph home unto his house.\n\nSecond Citizen:\nGive him a statue with his ancestors.\n\nThird Citizen:\nLet him be Caesar.\n\nFourth Citizen:\nCaesar's better parts\nShall be crown'd in Brutus.\n\nFirst Citizen:\nWe'll bring him to his house\nWith shouts and clamours.\n\nBRUTUS:\nMy countrymen,--\n\nSecond Citizen:\nPeace, silence! Brutus speaks.\n\nFirst Citizen:\nPeace, ho!\n\nBRUTUS:\nGood countrymen, let me depart alone,\nAnd, for my sake, stay here with Antony:\nDo grace to Caesar's corpse, and grace his speech\nTending to Caesar's glories; which Mark Antony,\nBy our permission, is allow'd to make.\nI do entreat you, not a man depart,\nSave I alone, till Antony have spoke.\n\nFirst Citizen:\nStay, ho! and let us hear Mark Antony.\n\nThird Citizen:\nLet him go up into the public chair;\nWe'll hear him. Noble Antony, go up.\n\nANTONY:\nFor Brutus' sake, I am beholding to you.\n\nFourth Citizen:\nWhat does he say of Brutus?\n\nThird Citizen:\nHe says, for Brutus' sake,\nHe finds himself beholding to us all.\n\nFourth Citizen:\n'Twere best he speak no harm of Brutus here.\n\nFirst Citizen:\nThis Caesar was a tyrant.\n\nThird Citizen:\nNay, that's certain:\nWe are blest that Rome is rid of him.\n\nSecond Citizen:\nPeace! let us hear what Antony can say.\n\nANTONY:\nYou gentle Romans,--\n\nCitizens:\nPeace, ho! let us hear him.\n\nANTONY:\nFriends, Romans, countrymen, lend me your ears;\nI come to bury Caesar, not to praise him.\nThe evil that men do lives after them;\nThe good is oft interred with their bones;\nSo let it be with Caesar. The noble Brutus\nHath told you Caesar was ambitious:\nIf it were so, it was a grievous fault,\nAnd grievously hath Caesar answer'd it.\nHere, under leave of Brutus and the rest--\nFor Brutus is an honourable man;\nSo are they all, all honourable men--\nCome I to speak in Caesar's funeral.\nHe was my friend, faithful and just to me:\nBut Brutus says he was ambitious;\nAnd Brutus is an honourable man.\nHe hath brought many captives home to Rome\nWhose ransoms did the general coffers fill:\nDid this in Caesar seem ambitious?\nWhen that the poor have cried, Caesar hath wept:\nAmbition should be made of sterner stuff:\nYet Brutus says he was ambitious;\nAnd Brutus is an honourable man.\nYou all did see that on the Lupercal\nI thrice presented him a kingly crown,\nWhich he did thrice refuse: was this ambition?\nYet Brutus says he was ambitious;\nAnd, sure, he is an honourable man.\nI speak not to disprove what Brutus spoke,\nBut here I am to speak what I do know.\nYou all did love him once, not without cause:\nWhat cause withholds you then, to mourn for him?\nO judgment! thou art fled to brutish beasts,\nAnd men have lost their reason. Bear with me;\nMy heart is in the coffin there with Caesar,\nAnd I must pause till it come back to me.\n\nFirst Citizen:\nMethinks there is much reason in his sayings.\n\nSecond Citizen:\nIf thou consider rightly of the matter,\nCaesar has had great wrong.\n\nThird Citizen:\nHas he, masters?\nI fear there will a worse come in his place.\n\nFourth Citizen:\nMark'd ye his words? He would not take the crown;\nTherefore 'tis certain he was not ambitious.\n\nFirst Citizen:\nIf it be found so, some will dear abide it.\n\nSecond Citizen:\nPoor soul! his eyes are red as fire with weeping.\n\nThird Citizen:\nThere's not a nobler man in Rome than Antony.\n\nFourth Citizen:\nNow mark him, he begins again to speak.\n\nANTONY:\nBut yesterday the word of Caesar might\nHave stood against the world; now lies he there.\nAnd none so poor to do him reverence.\nO masters, if I were disposed to stir\nYour hearts and minds to mutiny and rage,\nI should do Brutus wrong, and Cassius wrong,\nWho, you all know, are honourable men:\nI will not do them wrong; I rather choose\nTo wrong the dead, to wrong myself and you,\nThan I will wrong such honourable men.\nBut here's a parchment with the seal of Caesar;\nI found it in his closet, 'tis his will:\nLet but the commons hear this testament--\nWhich, pardon me, I do not mean to read--\nAnd they would go and kiss dead Caesar's wounds\nAnd dip their napkins in his sacred blood,\nYea, beg a hair of him for memory,\nAnd, dying, mention it within their wills,\nBequeathing it as a rich legacy\nUnto their issue.\n\nFourth Citizen:\nWe'll hear the will: read it, Mark Antony.\n\nAll:\nThe will, the will! we will hear Caesar's will.\n\nANTONY:\nHave patience, gentle friends, I must not read it;\nIt is not meet you know how Caesar loved you.\nYou are not wood, you are not stones, but men;\nAnd, being men, bearing the will of Caesar,\nIt will inflame you, it will make you mad:\n'Tis good you know not that you are his heirs;\nFor, if you should, O, what would come of it!\n\nFourth Citizen:\nRead the will; we'll hear it, Antony;\nYou shall read us the will, Caesar's will.\n\nANTONY:\nWill you be patient? will you stay awhile?\nI have o'ershot myself to tell you of it:\nI fear I wrong the honourable men\nWhose daggers have stabb'd Caesar; I do fear it.\n\nFourth Citizen:\nThey were traitors: honourable men!\n\nAll:\nThe will! the testament!\n\nSecond Citizen:\nThey were villains, murderers: the will! read the will.\n\nANTONY:\nYou will compel me, then, to read the will?\nThen make a ring about the corpse of Caesar,\nAnd let me show you him that made the will.\nShall I descend? and will you give me leave?\n\nSeveral Citizens:\nCome down.\n\nSecond Citizen:\nDescend.\n\nThird Citizen:\nYou shall have leave.\n\nFourth Citizen:\nA ring; stand round.\n\nFirst Citizen:\nStand from the hearse, stand from the body.\n\nSecond Citizen:\nRoom for Antony, most noble Antony.\n\nANTONY:\nNay, press not so upon me; stand far off.\n\nSeveral Citizens:\nStand back; room; bear back.\n\nANTONY:\nIf you have tears, prepare to shed them now.\nYou all do know this mantle: I remember\nThe first time ever Caesar put it on;\n'Twas on a summer's evening, in his tent,\nThat day he overcame the Nervii:\nLook, in this place ran Cassius' dagger through:\nSee what a rent the envious Casca made:\nThrough this the well-beloved Brutus stabb'd;\nAnd as he pluck'd his cursed steel away,\nMark how the blood of Caesar follow'd it,\nAs rushing out of doors, to be resolved\nIf Brutus so unkindly knock'd, or no;\nFor Brutus, as you know, was Caesar's angel:\nJudge, O you gods, how dearly Caesar loved him!\nThis was the most unkindest cut of all;\nFor when the noble Caesar saw him stab,\nIngratitude, more strong than traitors' arms,\nQuite vanquish'd him: then burst his mighty heart;\nAnd, in his mantle muffling up his face,\nEven at the base of Pompey's statua,\nWhich all the while ran blood, great Caesar fell.\nO, what a fall was there, my countrymen!\nThen I, and you, and all of us fell down,\nWhilst bloody treason flourish'd over us.\nO, now you weep; and, I perceive, you feel\nThe dint of pity: these are gracious drops.\nKind souls, what, weep you when you but behold\nOur Caesar's vesture wounded? Look you here,\nHere is himself, marr'd, as you see, with traitors.\n\nFirst Citizen:\nO piteous spectacle!\n\nSecond Citizen:\nO noble Caesar!\n\nThird Citizen:\nO woful day!\n\nFourth Citizen:\nO traitors, villains!\n\nFirst Citizen:\nO most bloody sight!\n\nSecond Citizen:\nWe will be revenged.\n\nAll:\nRevenge! About! Seek! Burn! Fire! Kill! Slay!\nLet not a traitor live!\n\nANTONY:\nStay, countrymen.\n\nFirst Citizen:\nPeace there! hear the noble Antony.\n\nSecond Citizen:\nWe'll hear him, we'll follow him, we'll die with him.\n\nANTONY:\nGood friends, sweet friends, let me not stir you up\nTo such a sudden flood of mutiny.\nThey that have done this deed are honourable:\nWhat private griefs they have, alas, I know not,\nThat made them do it: they are wise and honourable,\nAnd will, no doubt, with reasons answer you.\nI come not, friends, to steal away your hearts:\nI am no orator, as Brutus is;\nBut, as you know me all, a plain blunt man,\nThat love my friend; and that they know full well\nThat gave me public leave to speak of him:\nFor I have neither wit, nor words, nor worth,\nAction, nor utterance, nor the power of speech,\nTo stir men's blood: I only speak right on;\nI tell you that which you yourselves do know;\nShow you sweet Caesar's wounds, poor poor dumb mouths,\nAnd bid them speak for me: but were I Brutus,\nAnd Brutus Antony, there were an Antony\nWould ruffle up your spirits and put a tongue\nIn every wound of Caesar that should move\nThe stones of Rome to rise and mutiny.\n\nAll:\nWe'll mutiny.\n\nFirst Citizen:\nWe'll burn the house of Brutus.\n\nThird Citizen:\nAway, then! come, seek the conspirators.\n\nANTONY:\nYet hear me, countrymen; yet hear me speak.\n\nAll:\nPeace, ho! Hear Antony. Most noble Antony!\n\nANTONY:\nWhy, friends, you go to do you know not what:\nWherein hath Caesar thus deserved your loves?\nAlas, you know not: I must tell you then:\nYou have forgot the will I told you of.\n\nAll:\nMost true. The will! Let's stay and hear the will.\n\nANTONY:\nHere is the will, and under Caesar's seal.\nTo every Roman citizen he gives,\nTo every several man, seventy-five drachmas.\n\nSecond Citizen:\nMost noble Caesar! We'll revenge his death.\n\nThird Citizen:\nO royal Caesar!\n\nANTONY:\nHear me with patience.\n\nAll:\nPeace, ho!\n\nANTONY:\nMoreover, he hath left you all his walks,\nHis private arbours and new-planted orchards,\nOn this side Tiber; he hath left them you,\nAnd to your heirs for ever, common pleasures,\nTo walk abroad, and recreate yourselves.\nHere was a Caesar! when comes such another?\n\nFirst Citizen:\nNever, never. Come, away, away!\nWe'll burn his body in the holy place,\nAnd with the brands fire the traitors' houses.\nTake up the body.\n\nSecond Citizen:\nGo fetch fire.\n\nThird Citizen:\nPluck down benches.\n\nFourth Citizen:\nPluck down forms, windows, any thing.\n\nANTONY:\nNow let it work. Mischief, thou art afoot,\nTake thou what course thou wilt!\nHow now, fellow!\n\nServant:\nSir, Octavius is already come to Rome.\n\nANTONY:\nWhere is he?\n\nServant:\nHe and Lepidus are at Caesar's house.\n\nANTONY:\nAnd thither will I straight to visit him:\nHe comes upon a wish. Fortune is merry,\nAnd in this mood will give us any thing.\n\nServant:\nI heard him say, Brutus and Cassius\nAre rid like madmen through the gates of Rome.\n\nANTONY:\nBelike they had some notice of the people,\nHow I had moved them. Bring me to Octavius.\n\nCINNA THE POET:\nI dreamt to-night that I did feast with Caesar,\nAnd things unlucky charge my fantasy:\nI have no will to wander forth of doors,\nYet something leads me forth.\n\nFirst Citizen:\nWhat is your name?\n\nSecond Citizen:\nWhither are you going?\n\nThird Citizen:\nWhere do you dwell?\n\nFourth Citizen:\nAre you a married man or a bachelor?\n\nSecond Citizen:\nAnswer every man directly.\n\nFirst Citizen:\nAy, and briefly.\n\nFourth Citizen:\nAy, and wisely.\n\nThird Citizen:\nAy, and truly, you were best.\n\nCINNA THE POET:\nWhat is my name? Whither am I going? Where do I\ndwell? Am I a married man or a bachelor? Then, to\nanswer every man directly and briefly, wisely and\ntruly: wisely I say, I am a bachelor.\n\nSecond Citizen:\nThat's as much as to say, they are fools that marry:\nyou'll bear me a bang for that, I fear. Proceed; directly.\n\nCINNA THE POET:\nDirectly, I am going to Caesar's funeral.\n\nFirst Citizen:\nAs a friend or an enemy?\n\nCINNA THE POET:\nAs a friend.\n\nSecond Citizen:\nThat matter is answered directly.\n\nFourth Citizen:\nFor your dwelling,--briefly.\n\nCINNA THE POET:\nBriefly, I dwell by the Capitol.\n\nThird Citizen:\nYour name, sir, truly.\n\nCINNA THE POET:\nTruly, my name is Cinna.\n\nFirst Citizen:\nTear him to pieces; he's a conspirator.\n\nCINNA THE POET:\nI am Cinna the poet, I am Cinna the poet.\n\nFourth Citizen:\nTear him for his bad verses, tear him for his bad verses.\n\nCINNA THE POET:\nI am not Cinna the conspirator.\n\nFourth Citizen:\nIt is no matter, his name's Cinna; pluck but his\nname out of his heart, and turn him going.\n\nThird Citizen:\nTear him, tear him! Come, brands ho! fire-brands:\nto Brutus', to Cassius'; burn all: some to Decius'\nhouse, and some to Casca's; some to Ligarius': away, go!\n\nANTONY:\nThese many, then, shall die; their names are prick'd.\n\nOCTAVIUS:\nYour brother too must die; consent you, Lepidus?\n\nLEPIDUS:\nI do consent--\n\nOCTAVIUS:\nPrick him down, Antony.\n\nLEPIDUS:\nUpon condition Publius shall not live,\nWho is your sister's son, Mark Antony.\n\nANTONY:\nHe shall not live; look, with a spot I damn him.\nBut, Lepidus, go you to Caesar's house;\nFetch the will hither, and we shall determine\nHow to cut off some charge in legacies.\n\nLEPIDUS:\nWhat, shall I find you here?\n\nOCTAVIUS:\nOr here, or at the Capitol.\n\nANTONY:\nThis is a slight unmeritable man,\nMeet to be sent on errands: is it fit,\nThe three-fold world divided, he should stand\nOne of the three to share it?\n\nOCTAVIUS:\nSo you thought him;\nAnd took his voice who should be prick'd to die,\nIn our black sentence and proscription.\n\nANTONY:\nOctavius, I have seen more days than you:\nAnd though we lay these honours on this man,\nTo ease ourselves of divers slanderous loads,\nHe shall but bear them as the ass bears gold,\nTo groan and sweat under the business,\nEither led or driven, as we point the way;\nAnd having brought our treasure where we will,\nThen take we down his load, and turn him off,\nLike to the empty ass, to shake his ears,\nAnd graze in commons.\n\nOCTAVIUS:\nYou may do your will;\nBut he's a tried and valiant soldier.\n\nANTONY:\nSo is my horse, Octavius; and for that\nI do appoint him store of provender:\nIt is a creature that I teach to fight,\nTo wind, to stop, to run directly on,\nHis corporal motion govern'd by my spirit.\nAnd, in some taste, is Lepidus but so;\nHe must be taught and train'd and bid go forth;\nA barren-spirited fellow; one that feeds\nOn abjects, orts and imitations,\nWhich, out of use and staled by other men,\nBegin his fashion: do not talk of him,\nBut as a property. And now, Octavius,\nListen great things:--Brutus and Cassius\nAre levying powers: we must straight make head:\nTherefore let our alliance be combined,\nOur best friends made, our means stretch'd\nAnd let us presently go sit in council,\nHow covert matters may be best disclosed,\nAnd open perils surest answered.\n\nOCTAVIUS:\nLet us do so: for we are at the stake,\nAnd bay'd about with many enemies;\nAnd some that smile have in their hearts, I fear,\nMillions of mischiefs.\n\nBRUTUS:\nStand, ho!\n\nLUCILIUS:\nGive the word, ho! and stand.\n\nBRUTUS:\nWhat now, Lucilius! is Cassius near?\n\nLUCILIUS:\nHe is at hand; and Pindarus is come\nTo do you salutation from his master.\n\nBRUTUS:\nHe greets me well. Your master, Pindarus,\nIn his own change, or by ill officers,\nHath given me some worthy cause to wish\nThings done, undone: but, if he be at hand,\nI shall be satisfied.\n\nPINDARUS:\nI do not doubt\nBut that my noble master will appear\nSuch as he is, full of regard and honour.\n\nBRUTUS:\nHe is not doubted. A word, Lucilius;\nHow he received you, let me be resolved.\n\nLUCILIUS:\nWith courtesy and with respect enough;\nBut not with such familiar instances,\nNor with such free and friendly conference,\nAs he hath used of old.\n\nBRUTUS:\nThou hast described\nA hot friend cooling: ever note, Lucilius,\nWhen love begins to sicken and decay,\nIt useth an enforced ceremony.\nThere are no tricks in plain and simple faith;\nBut hollow men, like horses hot at hand,\nMake gallant show and promise of their mettle;\nBut when they should endure the bloody spur,\nThey fall their crests, and, like deceitful jades,\nSink in the trial. Comes his army on?\n\nLUCILIUS:\nThey mean this night in Sardis to be quarter'd;\nThe greater part, the horse in general,\nAre come with Cassius.\n\nBRUTUS:\nHark! he is arrived.\nMarch gently on to meet him.\n\nCASSIUS:\nStand, ho!\n\nBRUTUS:\nStand, ho! Speak the word along.\n\nFirst Soldier:\nStand!\n\nSecond Soldier:\nStand!\n\nThird Soldier:\nStand!\n\nCASSIUS:\nMost noble brother, you have done me wrong.\n\nBRUTUS:\nJudge me, you gods! wrong I mine enemies?\nAnd, if not so, how should I wrong a brother?\n\nCASSIUS:\nBrutus, this sober form of yours hides wrongs;\nAnd when you do them--\n\nBRUTUS:\nCassius, be content.\nSpeak your griefs softly: I do know you well.\nBefore the eyes of both our armies here,\nWhich should perceive nothing but love from us,\nLet us not wrangle: bid them move away;\nThen in my tent, Cassius, enlarge your griefs,\nAnd I will give you audience.\n\nCASSIUS:\nPindarus,\nBid our commanders lead their charges off\nA little from this ground.\n\nBRUTUS:\nLucilius, do you the like; and let no man\nCome to our tent till we have done our conference.\nLet Lucius and Titinius guard our door.\n\nCASSIUS:\nThat you have wrong'd me doth appear in this:\nYou have condemn'd and noted Lucius Pella\nFor taking bribes here of the Sardians;\nWherein my letters, praying on his side,\nBecause I knew the man, were slighted off.\n\nBRUTUS:\nYou wronged yourself to write in such a case.\n\nCASSIUS:\nIn such a time as this it is not meet\nThat every nice offence should bear his comment.\n\nBRUTUS:\nLet me tell you, Cassius, you yourself\nAre much condemn'd to have an itching palm;\nTo sell and mart your offices for gold\nTo undeservers.\n\nCASSIUS:\nI an itching palm!\nYou know that you are Brutus that speak this,\nOr, by the gods, this speech were else your last.\n\nBRUTUS:\nThe name of Cassius honours this corruption,\nAnd chastisement doth therefore hide his head.\n\nCASSIUS:\nChastisement!\n\nBRUTUS:\nRemember March, the ides of March remember:\nDid not great Julius bleed for justice' sake?\nWhat villain touch'd his body, that did stab,\nAnd not for justice? What, shall one of us\nThat struck the foremost man of all this world\nBut for supporting robbers, shall we now\nContaminate our fingers with base bribes,\nAnd sell the mighty space of our large honours\nFor so much trash as may be grasped thus?\nI had rather be a dog, and bay the moon,\nThan such a Roman.\n\nCASSIUS:\nBrutus, bay not me;\nI'll not endure it: you forget yourself,\nTo hedge me in; I am a soldier, I,\nOlder in practise, abler than yourself\nTo make conditions.\n\nBRUTUS:\nGo to; you are not, Cassius.\n\nCASSIUS:\nI am.\n\nBRUTUS:\nI say you are not.\n\nCASSIUS:\nUrge me no more, I shall forget myself;\nHave mind upon your health, tempt me no further.\n\nBRUTUS:\nAway, slight man!\n\nCASSIUS:\nIs't possible?\n\nBRUTUS:\nHear me, for I will speak.\nMust I give way and room to your rash choler?\nShall I be frighted when a madman stares?\n\nCASSIUS:\nO ye gods, ye gods! must I endure all this?\n\nBRUTUS:\nAll this! ay, more: fret till your proud heart break;\nGo show your slaves how choleric you are,\nAnd make your bondmen tremble. Must I budge?\nMust I observe you? must I stand and crouch\nUnder your testy humour? By the gods\nYou shall digest the venom of your spleen,\nThough it do split you; for, from this day forth,\nI'll use you for my mirth, yea, for my laughter,\nWhen you are waspish.\n\nCASSIUS:\nIs it come to this?\n\nBRUTUS:\nYou say you are a better soldier:\nLet it appear so; make your vaunting true,\nAnd it shall please me well: for mine own part,\nI shall be glad to learn of noble men.\n\nCASSIUS:\nYou wrong me every way; you wrong me, Brutus;\nI said, an elder soldier, not a better:\nDid I say 'better'?\n\nBRUTUS:\nIf you did, I care not.\n\nCASSIUS:\nWhen Caesar lived, he durst not thus have moved me.\n\nBRUTUS:\nPeace, peace! you durst not so have tempted him.\n\nCASSIUS:\nI durst not!\n\nBRUTUS:\nNo.\n\nCASSIUS:\nWhat, durst not tempt him!\n\nBRUTUS:\nFor your life you durst not!\n\nCASSIUS:\nDo not presume too much upon my love;\nI may do that I shall be sorry for.\n\nBRUTUS:\nYou have done that you should be sorry for.\nThere is no terror, Cassius, in your threats,\nFor I am arm'd so strong in honesty\nThat they pass by me as the idle wind,\nWhich I respect not. I did send to you\nFor certain sums of gold, which you denied me:\nFor I can raise no money by vile means:\nBy heaven, I had rather coin my heart,\nAnd drop my blood for drachmas, than to wring\nFrom the hard hands of peasants their vile trash\nBy any indirection: I did send\nTo you for gold to pay my legions,\nWhich you denied me: was that done like Cassius?\nShould I have answer'd Caius Cassius so?\nWhen Marcus Brutus grows so covetous,\nTo lock such rascal counters from his friends,\nBe ready, gods, with all your thunderbolts;\nDash him to pieces!\n\nCASSIUS:\nI denied you not.\n\nBRUTUS:\nYou did.\n\nCASSIUS:\nI did not: he was but a fool that brought\nMy answer back. Brutus hath rived my heart:\nA friend should bear his friend's infirmities,\nBut Brutus makes mine greater than they are.\n\nBRUTUS:\nI do not, till you practise them on me.\n\nCASSIUS:\nYou love me not.\n\nBRUTUS:\nI do not like your faults.\n\nCASSIUS:\nA friendly eye could never see such faults.\n\nBRUTUS:\nA flatterer's would not, though they do appear\nAs huge as high Olympus.\n\nCASSIUS:\nCome, Antony, and young Octavius, come,\nRevenge yourselves alone on Cassius,\nFor Cassius is aweary of the world;\nHated by one he loves; braved by his brother;\nCheque'd like a bondman; all his faults observed,\nSet in a note-book, learn'd, and conn'd by rote,\nTo cast into my teeth. O, I could weep\nMy spirit from mine eyes! There is my dagger,\nAnd here my naked breast; within, a heart\nDearer than Plutus' mine, richer than gold:\nIf that thou be'st a Roman, take it forth;\nI, that denied thee gold, will give my heart:\nStrike, as thou didst at Caesar; for, I know,\nWhen thou didst hate him worst, thou lovedst him better\nThan ever thou lovedst Cassius.\n\nBRUTUS:\nSheathe your dagger:\nBe angry when you will, it shall have scope;\nDo what you will, dishonour shall be humour.\nO Cassius, you are yoked with a lamb\nThat carries anger as the flint bears fire;\nWho, much enforced, shows a hasty spark,\nAnd straight is cold again.\n\nCASSIUS:\nHath Cassius lived\nTo be but mirth and laughter to his Brutus,\nWhen grief, and blood ill-temper'd, vexeth him?\n\nBRUTUS:\nWhen I spoke that, I was ill-temper'd too.\n\nCASSIUS:\nDo you confess so much? Give me your hand.\n\nBRUTUS:\nAnd my heart too.\n\nCASSIUS:\nO Brutus!\n\nBRUTUS:\nWhat's the matter?\n\nCASSIUS:\nHave not you love enough to bear with me,\nWhen that rash humour which my mother gave me\nMakes me forgetful?\n\nBRUTUS:\nYes, Cassius; and, from henceforth,\nWhen you are over-earnest with your Brutus,\nHe'll think your mother chides, and leave you so.\n\nPoet:\n\nLUCILIUS:\n\nPoet:\n\nCASSIUS:\nHow now! what's the matter?\n\nPoet:\nFor shame, you generals! what do you mean?\nLove, and be friends, as two such men should be;\nFor I have seen more years, I'm sure, than ye.\n\nCASSIUS:\nHa, ha! how vilely doth this cynic rhyme!\n\nBRUTUS:\nGet you hence, sirrah; saucy fellow, hence!\n\nCASSIUS:\nBear with him, Brutus; 'tis his fashion.\n\nBRUTUS:\nI'll know his humour, when he knows his time:\nWhat should the wars do with these jigging fools?\nCompanion, hence!\n\nCASSIUS:\nAway, away, be gone.\n\nBRUTUS:\nLucilius and Titinius, bid the commanders\nPrepare to lodge their companies to-night.\n\nCASSIUS:\nAnd come yourselves, and bring Messala with you\nImmediately to us.\n\nBRUTUS:\nLucius, a bowl of wine!\n\nCASSIUS:\nI did not think you could have been so angry.\n\nBRUTUS:\nO Cassius, I am sick of many griefs.\n\nCASSIUS:\nOf your philosophy you make no use,\nIf you give place to accidental evils.\n\nBRUTUS:\nNo man bears sorrow better. Portia is dead.\n\nCASSIUS:\nHa! Portia!\n\nBRUTUS:\nShe is dead.\n\nCASSIUS:\nHow 'scaped I killing when I cross'd you so?\nO insupportable and touching loss!\nUpon what sickness?\n\nBRUTUS:\nImpatient of my absence,\nAnd grief that young Octavius with Mark Antony\nHave made themselves so strong:--for with her death\nThat tidings came;--with this she fell distract,\nAnd, her attendants absent, swallow'd fire.\n\nCASSIUS:\nAnd died so?\n\nBRUTUS:\nEven so.\n\nCASSIUS:\nO ye immortal gods!\n\nBRUTUS:\nSpeak no more of her. Give me a bowl of wine.\nIn this I bury all unkindness, Cassius.\n\nCASSIUS:\nMy heart is thirsty for that noble pledge.\nFill, Lucius, till the wine o'erswell the cup;\nI cannot drink too much of Brutus' love.\n\nBRUTUS:\nCome in, Titinius!\nWelcome, good Messala.\nNow sit we close about this taper here,\nAnd call in question our necessities.\n\nCASSIUS:\nPortia, art thou gone?\n\nBRUTUS:\nNo more, I pray you.\nMessala, I have here received letters,\nThat young Octavius and Mark Antony\nCome down upon us with a mighty power,\nBending their expedition toward Philippi.\n\nMESSALA:\nMyself have letters of the selfsame tenor.\n\nBRUTUS:\nWith what addition?\n\nMESSALA:\nThat by proscription and bills of outlawry,\nOctavius, Antony, and Lepidus,\nHave put to death an hundred senators.\n\nBRUTUS:\nTherein our letters do not well agree;\nMine speak of seventy senators that died\nBy their proscriptions, Cicero being one.\n\nCASSIUS:\nCicero one!\n\nMESSALA:\nCicero is dead,\nAnd by that order of proscription.\nHad you your letters from your wife, my lord?\n\nBRUTUS:\nNo, Messala.\n\nMESSALA:\nNor nothing in your letters writ of her?\n\nBRUTUS:\nNothing, Messala.\n\nMESSALA:\nThat, methinks, is strange.\n\nBRUTUS:\nWhy ask you? hear you aught of her in yours?\n\nMESSALA:\nNo, my lord.\n\nBRUTUS:\nNow, as you are a Roman, tell me true.\n\nMESSALA:\nThen like a Roman bear the truth I tell:\nFor certain she is dead, and by strange manner.\n\nBRUTUS:\nWhy, farewell, Portia. We must die, Messala:\nWith meditating that she must die once,\nI have the patience to endure it now.\n\nMESSALA:\nEven so great men great losses should endure.\n\nCASSIUS:\nI have as much of this in art as you,\nBut yet my nature could not bear it so.\n\nBRUTUS:\nWell, to our work alive. What do you think\nOf marching to Philippi presently?\n\nCASSIUS:\nI do not think it good.\n\nBRUTUS:\nYour reason?\n\nCASSIUS:\nThis it is:\n'Tis better that the enemy seek us:\nSo shall he waste his means, weary his soldiers,\nDoing himself offence; whilst we, lying still,\nAre full of rest, defense, and nimbleness.\n\nBRUTUS:\nGood reasons must, of force, give place to better.\nThe people 'twixt Philippi and this ground\nDo stand but in a forced affection;\nFor they have grudged us contribution:\nThe enemy, marching along by them,\nBy them shall make a fuller number up,\nCome on refresh'd, new-added, and encouraged;\nFrom which advantage shall we cut him off,\nIf at Philippi we do face him there,\nThese people at our back.\n\nCASSIUS:\nHear me, good brother.\n\nBRUTUS:\nUnder your pardon. You must note beside,\nThat we have tried the utmost of our friends,\nOur legions are brim-full, our cause is ripe:\nThe enemy increaseth every day;\nWe, at the height, are ready to decline.\nThere is a tide in the affairs of men,\nWhich, taken at the flood, leads on to fortune;\nOmitted, all the voyage of their life\nIs bound in shallows and in miseries.\nOn such a full sea are we now afloat;\nAnd we must take the current when it serves,\nOr lose our ventures.\n\nCASSIUS:\nThen, with your will, go on;\nWe'll along ourselves, and meet them at Philippi.\n\nBRUTUS:\nThe deep of night is crept upon our talk,\nAnd nature must obey necessity;\nWhich we will niggard with a little rest.\nThere is no more to say?\n\nCASSIUS:\nNo more. Good night:\nEarly to-morrow will we rise, and hence.\n\nBRUTUS:\nLucius!\nMy gown.\nFarewell, good Messala:\nGood night, Titinius. Noble, noble Cassius,\nGood night, and good repose.\n\nCASSIUS:\nO my dear brother!\nThis was an ill beginning of the night:\nNever come such division 'tween our souls!\nLet it not, Brutus.\n\nBRUTUS:\nEvery thing is well.\n\nCASSIUS:\nGood night, my lord.\n\nBRUTUS:\nGood night, good brother.\n\nTITINIUS:\nGood night, Lord Brutus.\n\nBRUTUS:\nFarewell, every one.\nGive me the gown. Where is thy instrument?\n\nLUCIUS:\nHere in the tent.\n\nBRUTUS:\nWhat, thou speak'st drowsily?\nPoor knave, I blame thee not; thou art o'er-watch'd.\nCall Claudius and some other of my men:\nI'll have them sleep on cushions in my tent.\n\nLUCIUS:\nVarro and Claudius!\n\nVARRO:\nCalls my lord?\n\nBRUTUS:\nI pray you, sirs, lie in my tent and sleep;\nIt may be I shall raise you by and by\nOn business to my brother Cassius.\n\nVARRO:\nSo please you, we will stand and watch your pleasure.\n\nBRUTUS:\nI will not have it so: lie down, good sirs;\nIt may be I shall otherwise bethink me.\nLook, Lucius, here's the book I sought for so;\nI put it in the pocket of my gown.\n\nLUCIUS:\nI was sure your lordship did not give it me.\n\nBRUTUS:\nBear with me, good boy, I am much forgetful.\nCanst thou hold up thy heavy eyes awhile,\nAnd touch thy instrument a strain or two?\n\nLUCIUS:\nAy, my lord, an't please you.\n\nBRUTUS:\nIt does, my boy:\nI trouble thee too much, but thou art willing.\n\nLUCIUS:\nIt is my duty, sir.\n\nBRUTUS:\nI should not urge thy duty past thy might;\nI know young bloods look for a time of rest.\n\nLUCIUS:\nI have slept, my lord, already.\n\nBRUTUS:\nIt was well done; and thou shalt sleep again;\nI will not hold thee long: if I do live,\nI will be good to thee.\nThis is a sleepy tune. O murderous slumber,\nLay'st thou thy leaden mace upon my boy,\nThat plays thee music? Gentle knave, good night;\nI will not do thee so much wrong to wake thee:\nIf thou dost nod, thou break'st thy instrument;\nI'll take it from thee; and, good boy, good night.\nLet me see, let me see; is not the leaf turn'd down\nWhere I left reading? Here it is, I think.\nHow ill this taper burns! Ha! who comes here?\nI think it is the weakness of mine eyes\nThat shapes this monstrous apparition.\nIt comes upon me. Art thou any thing?\nArt thou some god, some angel, or some devil,\nThat makest my blood cold and my hair to stare?\nSpeak to me what thou art.\n\nGHOST:\nThy evil spirit, Brutus.\n\nBRUTUS:\nWhy comest thou?\n\nGHOST:\nTo tell thee thou shalt see me at Philippi.\n\nBRUTUS:\nWell; then I shall see thee again?\n\nGHOST:\nAy, at Philippi.\n\nBRUTUS:\nWhy, I will see thee at Philippi, then.\nNow I have taken heart thou vanishest:\nIll spirit, I would hold more talk with thee.\nBoy, Lucius! Varro! Claudius! Sirs, awake! Claudius!\n\nLUCIUS:\nThe strings, my lord, are false.\n\nBRUTUS:\nHe thinks he still is at his instrument.\nLucius, awake!\n\nLUCIUS:\nMy lord?\n\nBRUTUS:\nDidst thou dream, Lucius, that thou so criedst out?\n\nLUCIUS:\nMy lord, I do not know that I did cry.\n\nBRUTUS:\nYes, that thou didst: didst thou see any thing?\n\nLUCIUS:\nNothing, my lord.\n\nBRUTUS:\nSleep again, Lucius. Sirrah Claudius!\nFellow thou, awake!\n\nVARRO:\nMy lord?\n\nCLAUDIUS:\nMy lord?\n\nBRUTUS:\nWhy did you so cry out, sirs, in your sleep?\n\nVARRO:\nDid we, my lord?\n\nBRUTUS:\nAy: saw you any thing?\n\nVARRO:\nNo, my lord, I saw nothing.\n\nCLAUDIUS:\nNor I, my lord.\n\nBRUTUS:\nGo and commend me to my brother Cassius;\nBid him set on his powers betimes before,\nAnd we will follow.\n\nVARRO:\nIt shall be done, my lord.\n\nOCTAVIUS:\nNow, Antony, our hopes are answered:\nYou said the enemy would not come down,\nBut keep the hills and upper regions;\nIt proves not so: their battles are at hand;\nThey mean to warn us at Philippi here,\nAnswering before we do demand of them.\n\nANTONY:\nTut, I am in their bosoms, and I know\nWherefore they do it: they could be content\nTo visit other places; and come down\nWith fearful bravery, thinking by this face\nTo fasten in our thoughts that they have courage;\nBut 'tis not so.\n\nMessenger:\nPrepare you, generals:\nThe enemy comes on in gallant show;\nTheir bloody sign of battle is hung out,\nAnd something to be done immediately.\n\nANTONY:\nOctavius, lead your battle softly on,\nUpon the left hand of the even field.\n\nOCTAVIUS:\nUpon the right hand I; keep thou the left.\n\nANTONY:\nWhy do you cross me in this exigent?\n\nOCTAVIUS:\nI do not cross you; but I will do so.\n\nBRUTUS:\nThey stand, and would have parley.\n\nCASSIUS:\nStand fast, Titinius: we must out and talk.\n\nOCTAVIUS:\nMark Antony, shall we give sign of battle?\n\nANTONY:\nNo, Caesar, we will answer on their charge.\nMake forth; the generals would have some words.\n\nOCTAVIUS:\nStir not until the signal.\n\nBRUTUS:\nWords before blows: is it so, countrymen?\n\nOCTAVIUS:\nNot that we love words better, as you do.\n\nBRUTUS:\nGood words are better than bad strokes, Octavius.\n\nANTONY:\nIn your bad strokes, Brutus, you give good words:\nWitness the hole you made in Caesar's heart,\nCrying 'Long live! hail, Caesar!'\n\nCASSIUS:\nAntony,\nThe posture of your blows are yet unknown;\nBut for your words, they rob the Hybla bees,\nAnd leave them honeyless.\n\nANTONY:\nNot stingless too.\n\nBRUTUS:\nO, yes, and soundless too;\nFor you have stol'n their buzzing, Antony,\nAnd very wisely threat before you sting.\n\nANTONY:\nVillains, you did not so, when your vile daggers\nHack'd one another in the sides of Caesar:\nYou show'd your teeth like apes, and fawn'd like hounds,\nAnd bow'd like bondmen, kissing Caesar's feet;\nWhilst damned Casca, like a cur, behind\nStruck Caesar on the neck. O you flatterers!\n\nCASSIUS:\nFlatterers! Now, Brutus, thank yourself:\nThis tongue had not offended so to-day,\nIf Cassius might have ruled.\n\nOCTAVIUS:\nCome, come, the cause: if arguing make us sweat,\nThe proof of it will turn to redder drops. Look;\nI draw a sword against conspirators;\nWhen think you that the sword goes up again?\nNever, till Caesar's three and thirty wounds\nBe well avenged; or till another Caesar\nHave added slaughter to the sword of traitors.\n\nBRUTUS:\nCaesar, thou canst not die by traitors' hands,\nUnless thou bring'st them with thee.\n\nOCTAVIUS:\nSo I hope;\nI was not born to die on Brutus' sword.\n\nBRUTUS:\nO, if thou wert the noblest of thy strain,\nYoung man, thou couldst not die more honourable.\n\nCASSIUS:\nA peevish schoolboy, worthless of such honour,\nJoin'd with a masker and a reveller!\n\nANTONY:\nOld Cassius still!\n\nOCTAVIUS:\nCome, Antony, away!\nDefiance, traitors, hurl we in your teeth:\nIf you dare fight to-day, come to the field;\nIf not, when you have stomachs.\n\nCASSIUS:\nWhy, now, blow wind, swell billow and swim bark!\nThe storm is up, and all is on the hazard.\n\nBRUTUS:\nHo, Lucilius! hark, a word with you.\n\nLUCILIUS:\n\nCASSIUS:\nMessala!\n\nMESSALA:\n\nCASSIUS:\nMessala,\nThis is my birth-day; as this very day\nWas Cassius born. Give me thy hand, Messala:\nBe thou my witness that against my will,\nAs Pompey was, am I compell'd to set\nUpon one battle all our liberties.\nYou know that I held Epicurus strong\nAnd his opinion: now I change my mind,\nAnd partly credit things that do presage.\nComing from Sardis, on our former ensign\nTwo mighty eagles fell, and there they perch'd,\nGorging and feeding from our soldiers' hands;\nWho to Philippi here consorted us:\nThis morning are they fled away and gone;\nAnd in their steads do ravens, crows and kites,\nFly o'er our heads and downward look on us,\nAs we were sickly prey: their shadows seem\nA canopy most fatal, under which\nOur army lies, ready to give up the ghost.\n\nMESSALA:\nBelieve not so.\n\nCASSIUS:\nI but believe it partly;\nFor I am fresh of spirit and resolved\nTo meet all perils very constantly.\n\nBRUTUS:\nEven so, Lucilius.\n\nCASSIUS:\nNow, most noble Brutus,\nThe gods to-day stand friendly, that we may,\nLovers in peace, lead on our days to age!\nBut since the affairs of men rest still incertain,\nLet's reason with the worst that may befall.\nIf we do lose this battle, then is this\nThe very last time we shall speak together:\nWhat are you then determined to do?\n\nBRUTUS:\nEven by the rule of that philosophy\nBy which I did blame Cato for the death\nWhich he did give himself, I know not how,\nBut I do find it cowardly and vile,\nFor fear of what might fall, so to prevent\nThe time of life: arming myself with patience\nTo stay the providence of some high powers\nThat govern us below.\n\nCASSIUS:\nThen, if we lose this battle,\nYou are contented to be led in triumph\nThorough the streets of Rome?\n\nBRUTUS:\nNo, Cassius, no: think not, thou noble Roman,\nThat ever Brutus will go bound to Rome;\nHe bears too great a mind. But this same day\nMust end that work the ides of March begun;\nAnd whether we shall meet again I know not.\nTherefore our everlasting farewell take:\nFor ever, and for ever, farewell, Cassius!\nIf we do meet again, why, we shall smile;\nIf not, why then, this parting was well made.\n\nCASSIUS:\nFor ever, and for ever, farewell, Brutus!\nIf we do meet again, we'll smile indeed;\nIf not, 'tis true this parting was well made.\n\nBRUTUS:\nWhy, then, lead on. O, that a man might know\nThe end of this day's business ere it come!\nBut it sufficeth that the day will end,\nAnd then the end is known. Come, ho! away!\n\nBRUTUS:\nRide, ride, Messala, ride, and give these bills\nUnto the legions on the other side.\nLet them set on at once; for I perceive\nBut cold demeanor in Octavius' wing,\nAnd sudden push gives them the overthrow.\nRide, ride, Messala: let them all come down.\n\nCASSIUS:\nO, look, Titinius, look, the villains fly!\nMyself have to mine own turn'd enemy:\nThis ensign here of mine was turning back;\nI slew the coward, and did take it from him.\n\nTITINIUS:\nO Cassius, Brutus gave the word too early;\nWho, having some advantage on Octavius,\nTook it too eagerly: his soldiers fell to spoil,\nWhilst we by Antony are all enclosed.\n\nPINDARUS:\nFly further off, my lord, fly further off;\nMark Antony is in your tents, my lord\nFly, therefore, noble Cassius, fly far off.\n\nCASSIUS:\nThis hill is far enough. Look, look, Titinius;\nAre those my tents where I perceive the fire?\n\nTITINIUS:\nThey are, my lord.\n\nCASSIUS:\nTitinius, if thou lovest me,\nMount thou my horse, and hide thy spurs in him,\nTill he have brought thee up to yonder troops,\nAnd here again; that I may rest assured\nWhether yond troops are friend or enemy.\n\nTITINIUS:\nI will be here again, even with a thought.\n\nCASSIUS:\nGo, Pindarus, get higher on that hill;\nMy sight was ever thick; regard Titinius,\nAnd tell me what thou notest about the field.\nThis day I breathed first: time is come round,\nAnd where I did begin, there shall I end;\nMy life is run his compass. Sirrah, what news?\n\nPINDARUS:\n\nCASSIUS:\nWhat news?\n\nPINDARUS:\n\nCASSIUS:\nCome down, behold no more.\nO, coward that I am, to live so long,\nTo see my best friend ta'en before my face!\nCome hither, sirrah:\nIn Parthia did I take thee prisoner;\nAnd then I swore thee, saving of thy life,\nThat whatsoever I did bid thee do,\nThou shouldst attempt it. Come now, keep thine oath;\nNow be a freeman: and with this good sword,\nThat ran through Caesar's bowels, search this bosom.\nStand not to answer: here, take thou the hilts;\nAnd, when my face is cover'd, as 'tis now,\nGuide thou the sword.\nCaesar, thou art revenged,\nEven with the sword that kill'd thee.\n\nPINDARUS:\nSo, I am free; yet would not so have been,\nDurst I have done my will. O Cassius,\nFar from this country Pindarus shall run,\nWhere never Roman shall take note of him.\n\nMESSALA:\nIt is but change, Titinius; for Octavius\nIs overthrown by noble Brutus' power,\nAs Cassius' legions are by Antony.\n\nTITINIUS:\nThese tidings will well comfort Cassius.\n\nMESSALA:\nWhere did you leave him?\n\nTITINIUS:\nAll disconsolate,\nWith Pindarus his bondman, on this hill.\n\nMESSALA:\nIs not that he that lies upon the ground?\n\nTITINIUS:\nHe lies not like the living. O my heart!\n\nMESSALA:\nIs not that he?\n\nTITINIUS:\nNo, this was he, Messala,\nBut Cassius is no more. O setting sun,\nAs in thy red rays thou dost sink to-night,\nSo in his red blood Cassius' day is set;\nThe sun of Rome is set! Our day is gone;\nClouds, dews, and dangers come; our deeds are done!\nMistrust of my success hath done this deed.\n\nMESSALA:\nMistrust of good success hath done this deed.\nO hateful error, melancholy's child,\nWhy dost thou show to the apt thoughts of men\nThe things that are not? O error, soon conceived,\nThou never comest unto a happy birth,\nBut kill'st the mother that engender'd thee!\n\nTITINIUS:\nWhat, Pindarus! where art thou, Pindarus?\n\nMESSALA:\nSeek him, Titinius, whilst I go to meet\nThe noble Brutus, thrusting this report\nInto his ears; I may say, thrusting it;\nFor piercing steel and darts envenomed\nShall be as welcome to the ears of Brutus\nAs tidings of this sight.\n\nTITINIUS:\nHie you, Messala,\nAnd I will seek for Pindarus the while.\nWhy didst thou send me forth, brave Cassius?\nDid I not meet thy friends? and did not they\nPut on my brows this wreath of victory,\nAnd bid me give it thee? Didst thou not hear their shouts?\nAlas, thou hast misconstrued every thing!\nBut, hold thee, take this garland on thy brow;\nThy Brutus bid me give it thee, and I\nWill do his bidding. Brutus, come apace,\nAnd see how I regarded Caius Cassius.\nBy your leave, gods:--this is a Roman's part\nCome, Cassius' sword, and find Titinius' heart.\n\nBRUTUS:\nWhere, where, Messala, doth his body lie?\n\nMESSALA:\nLo, yonder, and Titinius mourning it.\n\nBRUTUS:\nTitinius' face is upward.\n\nCATO:\nHe is slain.\n\nBRUTUS:\nO Julius Caesar, thou art mighty yet!\nThy spirit walks abroad and turns our swords\nIn our own proper entrails.\n\nCATO:\nBrave Titinius!\nLook, whether he have not crown'd dead Cassius!\n\nBRUTUS:\nAre yet two Romans living such as these?\nThe last of all the Romans, fare thee well!\nIt is impossible that ever Rome\nShould breed thy fellow. Friends, I owe more tears\nTo this dead man than you shall see me pay.\nI shall find time, Cassius, I shall find time.\nCome, therefore, and to Thasos send his body:\nHis funerals shall not be in our camp,\nLest it discomfort us. Lucilius, come;\nAnd come, young Cato; let us to the field.\nLabeo and Flavius, set our battles on:\n'Tis three o'clock; and, Romans, yet ere night\nWe shall try fortune in a second fight.\n\nBRUTUS:\nYet, countrymen, O, yet hold up your heads!\n\nCATO:\nWhat bastard doth not? Who will go with me?\nI will proclaim my name about the field:\nI am the son of Marcus Cato, ho!\nA foe to tyrants, and my country's friend;\nI am the son of Marcus Cato, ho!\n\nBRUTUS:\nAnd I am Brutus, Marcus Brutus, I;\nBrutus, my country's friend; know me for Brutus!\n\nLUCILIUS:\nO young and noble Cato, art thou down?\nWhy, now thou diest as bravely as Titinius;\nAnd mayst be honour'd, being Cato's son.\n\nFirst Soldier:\nYield, or thou diest.\n\nLUCILIUS:\nOnly I yield to die:\nThere is so much that thou wilt kill me straight;\nKill Brutus, and be honour'd in his death.\n\nFirst Soldier:\nWe must not. A noble prisoner!\n\nSecond Soldier:\nRoom, ho! Tell Antony, Brutus is ta'en.\n\nFirst Soldier:\nI'll tell the news. Here comes the general.\nBrutus is ta'en, Brutus is ta'en, my lord.\n\nANTONY:\nWhere is he?\n\nLUCILIUS:\nSafe, Antony; Brutus is safe enough:\nI dare assure thee that no enemy\nShall ever take alive the noble Brutus:\nThe gods defend him from so great a shame!\nWhen you do find him, or alive or dead,\nHe will be found like Brutus, like himself.\n\nANTONY:\nThis is not Brutus, friend; but, I assure you,\nA prize no less in worth: keep this man safe;\nGive him all kindness: I had rather have\nSuch men my friends than enemies. Go on,\nAnd see whether Brutus be alive or dead;\nAnd bring us word unto Octavius' tent\nHow every thing is chanced.\n\nBRUTUS:\nCome, poor remains of friends, rest on this rock.\n\nCLITUS:\nStatilius show'd the torch-light, but, my lord,\nHe came not back: he is or ta'en or slain.\n\nBRUTUS:\nSit thee down, Clitus: slaying is the word;\nIt is a deed in fashion. Hark thee, Clitus.\n\nCLITUS:\nWhat, I, my lord? No, not for all the world.\n\nBRUTUS:\nPeace then! no words.\n\nCLITUS:\nI'll rather kill myself.\n\nBRUTUS:\nHark thee, Dardanius.\n\nDARDANIUS:\nShall I do such a deed?\n\nCLITUS:\nO Dardanius!\n\nDARDANIUS:\nO Clitus!\n\nCLITUS:\nWhat ill request did Brutus make to thee?\n\nDARDANIUS:\nTo kill him, Clitus. Look, he meditates.\n\nCLITUS:\nNow is that noble vessel full of grief,\nThat it runs over even at his eyes.\n\nBRUTUS:\nCome hither, good Volumnius; list a word.\n\nVOLUMNIUS:\nWhat says my lord?\n\nBRUTUS:\nWhy, this, Volumnius:\nThe ghost of Caesar hath appear'd to me\nTwo several times by night; at Sardis once,\nAnd, this last night, here in Philippi fields:\nI know my hour is come.\n\nVOLUMNIUS:\nNot so, my lord.\n\nBRUTUS:\nNay, I am sure it is, Volumnius.\nThou seest the world, Volumnius, how it goes;\nOur enemies have beat us to the pit:\nIt is more worthy to leap in ourselves,\nThan tarry till they push us. Good Volumnius,\nThou know'st that we two went to school together:\nEven for that our love of old, I prithee,\nHold thou my sword-hilts, whilst I run on it.\n\nVOLUMNIUS:\nThat's not an office for a friend, my lord.\n\nCLITUS:\nFly, fly, my lord; there is no tarrying here.\n\nBRUTUS:\nFarewell to you; and you; and you, Volumnius.\nStrato, thou hast been all this while asleep;\nFarewell to thee too, Strato. Countrymen,\nMy heart doth joy that yet in all my life\nI found no man but he was true to me.\nI shall have glory by this losing day\nMore than Octavius and Mark Antony\nBy this vile conquest shall attain unto.\nSo fare you well at once; for Brutus' tongue\nHath almost ended his life's history:\nNight hangs upon mine eyes; my bones would rest,\nThat have but labour'd to attain this hour.\n\nCLITUS:\nFly, my lord, fly.\n\nBRUTUS:\nHence! I will follow.\nI prithee, Strato, stay thou by thy lord:\nThou art a fellow of a good respect;\nThy life hath had some smatch of honour in it:\nHold then my sword, and turn away thy face,\nWhile I do run upon it. Wilt thou, Strato?\n\nSTRATO:\nGive me your hand first. Fare you well, my lord.\n\nBRUTUS:\nFarewell, good Strato.\nCaesar, now be still:\nI kill'd not thee with half so good a will.\n\nOCTAVIUS:\nWhat man is that?\n\nMESSALA:\nMy master's man. Strato, where is thy master?\n\nSTRATO:\nFree from the bondage you are in, Messala:\nThe conquerors can but make a fire of him;\nFor Brutus only overcame himself,\nAnd no man else hath honour by his death.\n\nLUCILIUS:\nSo Brutus should be found. I thank thee, Brutus,\nThat thou hast proved Lucilius' saying true.\n\nOCTAVIUS:\nAll that served Brutus, I will entertain them.\nFellow, wilt thou bestow thy time with me?\n\nSTRATO:\nAy, if Messala will prefer me to you.\n\nOCTAVIUS:\nDo so, good Messala.\n\nMESSALA:\nHow died my master, Strato?\n\nSTRATO:\nI held the sword, and he did run on it.\n\nMESSALA:\nOctavius, then take him to follow thee,\nThat did the latest service to my master.\n\nANTONY:\nThis was the noblest Roman of them all:\nAll the conspirators save only he\nDid that they did in envy of great Caesar;\nHe only, in a general honest thought\nAnd common good to all, made one of them.\nHis life was gentle, and the elements\nSo mix'd in him that Nature might stand up\nAnd say to all the world 'This was a man!'\n\nOCTAVIUS:\nAccording to his virtue let us use him,\nWith all respect and rites of burial.\nWithin my tent his bones to-night shall lie,\nMost like a soldier, order'd honourably.\nSo call the field to rest; and let's away,\nTo part the glories of this happy day.\n\nCOUNTESS:\nIn delivering my son from me, I bury a second husband.\n\nBERTRAM:\nAnd I in going, madam, weep o'er my father's death\nanew: but I must attend his majesty's command, to\nwhom I am now in ward, evermore in subjection.\n\nLAFEU:\nYou shall find of the king a husband, madam; you,\nsir, a father: he that so generally is at all times\ngood must of necessity hold his virtue to you; whose\nworthiness would stir it up where it wanted rather\nthan lack it where there is such abundance.\n\nCOUNTESS:\nWhat hope is there of his majesty's amendment?\n\nLAFEU:\nHe hath abandoned his physicians, madam; under whose\npractises he hath persecuted time with hope, and\nfinds no other advantage in the process but only the\nlosing of hope by time.\n\nCOUNTESS:\nThis young gentlewoman had a father,--O, that\n'had'! how sad a passage 'tis!--whose skill was\nalmost as great as his honesty; had it stretched so\nfar, would have made nature immortal, and death\nshould have play for lack of work. Would, for the\nking's sake, he were living! I think it would be\nthe death of the king's disease.\n\nLAFEU:\nHow called you the man you speak of, madam?\n\nCOUNTESS:\nHe was famous, sir, in his profession, and it was\nhis great right to be so: Gerard de Narbon.\n\nLAFEU:\nHe was excellent indeed, madam: the king very\nlately spoke of him admiringly and mourningly: he\nwas skilful enough to have lived still, if knowledge\ncould be set up against mortality.\n\nBERTRAM:\nWhat is it, my good lord, the king languishes of?\n\nLAFEU:\nA fistula, my lord.\n\nBERTRAM:\nI heard not of it before.\n\nLAFEU:\nI would it were not notorious. Was this gentlewoman\nthe daughter of Gerard de Narbon?\n\nCOUNTESS:\nHis sole child, my lord, and bequeathed to my\noverlooking. I have those hopes of her good that\nher education promises; her dispositions she\ninherits, which makes fair gifts fairer; for where\nan unclean mind carries virtuous qualities, there\ncommendations go with pity; they are virtues and\ntraitors too; in her they are the better for their\nsimpleness; she derives her honesty and achieves her goodness.\n\nLAFEU:\nYour commendations, madam, get from her tears.\n\nCOUNTESS:\n'Tis the best brine a maiden can season her praise\nin. The remembrance of her father never approaches\nher heart but the tyranny of her sorrows takes all\nlivelihood from her cheek. No more of this, Helena;\ngo to, no more; lest it be rather thought you affect\na sorrow than have it.\n\nHELENA:\nI do affect a sorrow indeed, but I have it too.\n\nLAFEU:\nModerate lamentation is the right of the dead,\nexcessive grief the enemy to the living.\n\nCOUNTESS:\nIf the living be enemy to the grief, the excess\nmakes it soon mortal.\n\nBERTRAM:\nMadam, I desire your holy wishes.\n\nLAFEU:\nHow understand we that?\n\nCOUNTESS:\nBe thou blest, Bertram, and succeed thy father\nIn manners, as in shape! thy blood and virtue\nContend for empire in thee, and thy goodness\nShare with thy birthright! Love all, trust a few,\nDo wrong to none: be able for thine enemy\nRather in power than use, and keep thy friend\nUnder thy own life's key: be cheque'd for silence,\nBut never tax'd for speech. What heaven more will,\nThat thee may furnish and my prayers pluck down,\nFall on thy head! Farewell, my lord;\n'Tis an unseason'd courtier; good my lord,\nAdvise him.\n\nLAFEU:\nHe cannot want the best\nThat shall attend his love.\n\nCOUNTESS:\nHeaven bless him! Farewell, Bertram.\n\nBERTRAM:\n\nLAFEU:\nFarewell, pretty lady: you must hold the credit of\nyour father.\n\nHELENA:\nO, were that all! I think not on my father;\nAnd these great tears grace his remembrance more\nThan those I shed for him. What was he like?\nI have forgot him: my imagination\nCarries no favour in't but Bertram's.\nI am undone: there is no living, none,\nIf Bertram be away. 'Twere all one\nThat I should love a bright particular star\nAnd think to wed it, he is so above me:\nIn his bright radiance and collateral light\nMust I be comforted, not in his sphere.\nThe ambition in my love thus plagues itself:\nThe hind that would be mated by the lion\nMust die for love. 'Twas pretty, though plague,\nTo see him every hour; to sit and draw\nHis arched brows, his hawking eye, his curls,\nIn our heart's table; heart too capable\nOf every line and trick of his sweet favour:\nBut now he's gone, and my idolatrous fancy\nMust sanctify his reliques. Who comes here?\nOne that goes with him: I love him for his sake;\nAnd yet I know him a notorious liar,\nThink him a great way fool, solely a coward;\nYet these fixed evils sit so fit in him,\nThat they take place, when virtue's steely bones\nLook bleak i' the cold wind: withal, full oft we see\nCold wisdom waiting on superfluous folly.\n\nPAROLLES:\nSave you, fair queen!\n\nHELENA:\nAnd you, monarch!\n\nPAROLLES:\nNo.\n\nHELENA:\nAnd no.\n\nPAROLLES:\nAre you meditating on virginity?\n\nHELENA:\nAy. You have some stain of soldier in you: let me\nask you a question. Man is enemy to virginity; how\nmay we barricado it against him?\n\nPAROLLES:\nKeep him out.\n\nHELENA:\nBut he assails; and our virginity, though valiant,\nin the defence yet is weak: unfold to us some\nwarlike resistance.\n\nPAROLLES:\nThere is none: man, sitting down before you, will\nundermine you and blow you up.\n\nHELENA:\nBless our poor virginity from underminers and\nblowers up! Is there no military policy, how\nvirgins might blow up men?\n\nPAROLLES:\nVirginity being blown down, man will quicklier be\nblown up: marry, in blowing him down again, with\nthe breach yourselves made, you lose your city. It\nis not politic in the commonwealth of nature to\npreserve virginity. Loss of virginity is rational\nincrease and there was never virgin got till\nvirginity was first lost. That you were made of is\nmetal to make virgins. Virginity by being once lost\nmay be ten times found; by being ever kept, it is\never lost: 'tis too cold a companion; away with 't!\n\nHELENA:\nI will stand for 't a little, though therefore I die a virgin.\n\nPAROLLES:\nThere's little can be said in 't; 'tis against the\nrule of nature. To speak on the part of virginity,\nis to accuse your mothers; which is most infallible\ndisobedience. He that hangs himself is a virgin:\nvirginity murders itself and should be buried in\nhighways out of all sanctified limit, as a desperate\noffendress against nature. Virginity breeds mites,\nmuch like a cheese; consumes itself to the very\nparing, and so dies with feeding his own stomach.\nBesides, virginity is peevish, proud, idle, made of\nself-love, which is the most inhibited sin in the\ncanon. Keep it not; you cannot choose but loose\nby't: out with 't! within ten year it will make\nitself ten, which is a goodly increase; and the\nprincipal itself not much the worse: away with 't!\n\nHELENA:\nHow might one do, sir, to lose it to her own liking?\n\nPAROLLES:\nLet me see: marry, ill, to like him that ne'er it\nlikes. 'Tis a commodity will lose the gloss with\nlying; the longer kept, the less worth: off with 't\nwhile 'tis vendible; answer the time of request.\nVirginity, like an old courtier, wears her cap out\nof fashion: richly suited, but unsuitable: just\nlike the brooch and the tooth-pick, which wear not\nnow. Your date is better in your pie and your\nporridge than in your cheek; and your virginity,\nyour old virginity, is like one of our French\nwithered pears, it looks ill, it eats drily; marry,\n'tis a withered pear; it was formerly better;\nmarry, yet 'tis a withered pear: will you anything with it?\n\nHELENA:\nNot my virginity yet\nThere shall your master have a thousand loves,\nA mother and a mistress and a friend,\nA phoenix, captain and an enemy,\nA guide, a goddess, and a sovereign,\nA counsellor, a traitress, and a dear;\nHis humble ambition, proud humility,\nHis jarring concord, and his discord dulcet,\nHis faith, his sweet disaster; with a world\nOf pretty, fond, adoptious christendoms,\nThat blinking Cupid gossips. Now shall he--\nI know not what he shall. God send him well!\nThe court's a learning place, and he is one--\n\nPAROLLES:\nWhat one, i' faith?\n\nHELENA:\nThat I wish well. 'Tis pity--\n\nPAROLLES:\nWhat's pity?\n\nHELENA:\nThat wishing well had not a body in't,\nWhich might be felt; that we, the poorer born,\nWhose baser stars do shut us up in wishes,\nMight with effects of them follow our friends,\nAnd show what we alone must think, which never\nReturn us thanks.\n\nPage:\nMonsieur Parolles, my lord calls for you.\n\nPAROLLES:\nLittle Helen, farewell; if I can remember thee, I\nwill think of thee at court.\n\nHELENA:\nMonsieur Parolles, you were born under a charitable star.\n\nPAROLLES:\nUnder Mars, I.\n\nHELENA:\nI especially think, under Mars.\n\nPAROLLES:\nWhy under Mars?\n\nHELENA:\nThe wars have so kept you under that you must needs\nbe born under Mars.\n\nPAROLLES:\nWhen he was predominant.\n\nHELENA:\nWhen he was retrograde, I think, rather.\n\nPAROLLES:\nWhy think you so?\n\nHELENA:\nYou go so much backward when you fight.\n\nPAROLLES:\nThat's for advantage.\n\nHELENA:\nSo is running away, when fear proposes the safety;\nbut the composition that your valour and fear makes\nin you is a virtue of a good wing, and I like the wear well.\n\nPAROLLES:\nI am so full of businesses, I cannot answer thee\nacutely. I will return perfect courtier; in the\nwhich, my instruction shall serve to naturalize\nthee, so thou wilt be capable of a courtier's\ncounsel and understand what advice shall thrust upon\nthee; else thou diest in thine unthankfulness, and\nthine ignorance makes thee away: farewell. When\nthou hast leisure, say thy prayers; when thou hast\nnone, remember thy friends; get thee a good husband,\nand use him as he uses thee; so, farewell.\n\nHELENA:\nOur remedies oft in ourselves do lie,\nWhich we ascribe to heaven: the fated sky\nGives us free scope, only doth backward pull\nOur slow designs when we ourselves are dull.\nWhat power is it which mounts my love so high,\nThat makes me see, and cannot feed mine eye?\nThe mightiest space in fortune nature brings\nTo join like likes and kiss like native things.\nImpossible be strange attempts to those\nThat weigh their pains in sense and do suppose\nWhat hath been cannot be: who ever strove\nSo show her merit, that did miss her love?\nThe king's disease--my project may deceive me,\nBut my intents are fix'd and will not leave me.\n\nKING:\nThe Florentines and Senoys are by the ears;\nHave fought with equal fortune and continue\nA braving war.\n\nFirst Lord:\nSo 'tis reported, sir.\n\nKING:\nNay, 'tis most credible; we here received it\nA certainty, vouch'd from our cousin Austria,\nWith caution that the Florentine will move us\nFor speedy aid; wherein our dearest friend\nPrejudicates the business and would seem\nTo have us make denial.\n\nFirst Lord:\nHis love and wisdom,\nApproved so to your majesty, may plead\nFor amplest credence.\n\nKING:\nHe hath arm'd our answer,\nAnd Florence is denied before he comes:\nYet, for our gentlemen that mean to see\nThe Tuscan service, freely have they leave\nTo stand on either part.\n\nSecond Lord:\nIt well may serve\nA nursery to our gentry, who are sick\nFor breathing and exploit.\n\nKING:\nWhat's he comes here?\n\nFirst Lord:\nIt is the Count Rousillon, my good lord,\nYoung Bertram.\n\nKING:\nYouth, thou bear'st thy father's face;\nFrank nature, rather curious than in haste,\nHath well composed thee. Thy father's moral parts\nMayst thou inherit too! Welcome to Paris.\n\nBERTRAM:\nMy thanks and duty are your majesty's.\n\nKING:\nI would I had that corporal soundness now,\nAs when thy father and myself in friendship\nFirst tried our soldiership! He did look far\nInto the service of the time and was\nDiscipled of the bravest: he lasted long;\nBut on us both did haggish age steal on\nAnd wore us out of act. It much repairs me\nTo talk of your good father. In his youth\nHe had the wit which I can well observe\nTo-day in our young lords; but they may jest\nTill their own scorn return to them unnoted\nEre they can hide their levity in honour;\nSo like a courtier, contempt nor bitterness\nWere in his pride or sharpness; if they were,\nHis equal had awaked them, and his honour,\nClock to itself, knew the true minute when\nException bid him speak, and at this time\nHis tongue obey'd his hand: who were below him\nHe used as creatures of another place\nAnd bow'd his eminent top to their low ranks,\nMaking them proud of his humility,\nIn their poor praise he humbled. Such a man\nMight be a copy to these younger times;\nWhich, follow'd well, would demonstrate them now\nBut goers backward.\n\nBERTRAM:\nHis good remembrance, sir,\nLies richer in your thoughts than on his tomb;\nSo in approof lives not his epitaph\nAs in your royal speech.\n\nKING:\nWould I were with him! He would always say--\nMethinks I hear him now; his plausive words\nHe scatter'd not in ears, but grafted them,\nTo grow there and to bear,--'Let me not live,'--\nThis his good melancholy oft began,\nOn the catastrophe and heel of pastime,\nWhen it was out,--'Let me not live,' quoth he,\n'After my flame lacks oil, to be the snuff\nOf younger spirits, whose apprehensive senses\nAll but new things disdain; whose judgments are\nMere fathers of their garments; whose constancies\nExpire before their fashions.' This he wish'd;\nI after him do after him wish too,\nSince I nor wax nor honey can bring home,\nI quickly were dissolved from my hive,\nTo give some labourers room.\n\nSecond Lord:\nYou are loved, sir:\nThey that least lend it you shall lack you first.\n\nKING:\nI fill a place, I know't. How long is't, count,\nSince the physician at your father's died?\nHe was much famed.\n\nBERTRAM:\nSome six months since, my lord.\n\nKING:\nIf he were living, I would try him yet.\nLend me an arm; the rest have worn me out\nWith several applications; nature and sickness\nDebate it at their leisure. Welcome, count;\nMy son's no dearer.\n\nBERTRAM:\nThank your majesty.\n\nCOUNTESS:\nI will now hear; what say you of this gentlewoman?\n\nSteward:\nMadam, the care I have had to even your content, I\nwish might be found in the calendar of my past\nendeavours; for then we wound our modesty and make\nfoul the clearness of our deservings, when of\nourselves we publish them.\n\nCOUNTESS:\nWhat does this knave here? Get you gone, sirrah:\nthe complaints I have heard of you I do not all\nbelieve: 'tis my slowness that I do not; for I know\nyou lack not folly to commit them, and have ability\nenough to make such knaveries yours.\n\nClown:\n'Tis not unknown to you, madam, I am a poor fellow.\n\nCOUNTESS:\nWell, sir.\n\nClown:\nNo, madam, 'tis not so well that I am poor, though\nmany of the rich are damned: but, if I may have\nyour ladyship's good will to go to the world, Isbel\nthe woman and I will do as we may.\n\nCOUNTESS:\nWilt thou needs be a beggar?\n\nClown:\nI do beg your good will in this case.\n\nCOUNTESS:\nIn what case?\n\nClown:\nIn Isbel's case and mine own. Service is no\nheritage: and I think I shall never have the\nblessing of God till I have issue o' my body; for\nthey say barnes are blessings.\n\nCOUNTESS:\nTell me thy reason why thou wilt marry.\n\nClown:\nMy poor body, madam, requires it: I am driven on\nby the flesh; and he must needs go that the devil drives.\n\nCOUNTESS:\nIs this all your worship's reason?\n\nClown:\nFaith, madam, I have other holy reasons such as they\nare.\n\nCOUNTESS:\nMay the world know them?\n\nClown:\nI have been, madam, a wicked creature, as you and\nall flesh and blood are; and, indeed, I do marry\nthat I may repent.\n\nCOUNTESS:\nThy marriage, sooner than thy wickedness.\n\nClown:\nI am out o' friends, madam; and I hope to have\nfriends for my wife's sake.\n\nCOUNTESS:\nSuch friends are thine enemies, knave.\n\nClown:\nYou're shallow, madam, in great friends; for the\nknaves come to do that for me which I am aweary of.\nHe that ears my land spares my team and gives me\nleave to in the crop; if I be his cuckold, he's my\ndrudge: he that comforts my wife is the cherisher\nof my flesh and blood; he that cherishes my flesh\nand blood loves my flesh and blood; he that loves my\nflesh and blood is my friend: ergo, he that kisses\nmy wife is my friend. If men could be contented to\nbe what they are, there were no fear in marriage;\nfor young Charbon the Puritan and old Poysam the\nPapist, howsome'er their hearts are severed in\nreligion, their heads are both one; they may jowl\nhorns together, like any deer i' the herd.\n\nCOUNTESS:\nWilt thou ever be a foul-mouthed and calumnious knave?\n\nClown:\nA prophet I, madam; and I speak the truth the next\nway:\nFor I the ballad will repeat,\nWhich men full true shall find;\nYour marriage comes by destiny,\nYour cuckoo sings by kind.\n\nCOUNTESS:\nGet you gone, sir; I'll talk with you more anon.\n\nSteward:\nMay it please you, madam, that he bid Helen come to\nyou: of her I am to speak.\n\nCOUNTESS:\nSirrah, tell my gentlewoman I would speak with her;\nHelen, I mean.\n\nClown:\nWas this fair face the cause, quoth she,\nWhy the Grecians sacked Troy?\nFond done, done fond,\nWas this King Priam's joy?\nWith that she sighed as she stood,\nWith that she sighed as she stood,\nAnd gave this sentence then;\nAmong nine bad if one be good,\nAmong nine bad if one be good,\nThere's yet one good in ten.\n\nCOUNTESS:\nWhat, one good in ten? you corrupt the song, sirrah.\n\nClown:\nOne good woman in ten, madam; which is a purifying\no' the song: would God would serve the world so all\nthe year! we'ld find no fault with the tithe-woman,\nif I were the parson. One in ten, quoth a'! An we\nmight have a good woman born but one every blazing\nstar, or at an earthquake, 'twould mend the lottery\nwell: a man may draw his heart out, ere a' pluck\none.\n\nCOUNTESS:\nYou'll be gone, sir knave, and do as I command you.\n\nClown:\nThat man should be at woman's command, and yet no\nhurt done! Though honesty be no puritan, yet it\nwill do no hurt; it will wear the surplice of\nhumility over the black gown of a big heart. I am\ngoing, forsooth: the business is for Helen to come hither.\n\nCOUNTESS:\nWell, now.\n\nSteward:\nI know, madam, you love your gentlewoman entirely.\n\nCOUNTESS:\nFaith, I do: her father bequeathed her to me; and\nshe herself, without other advantage, may lawfully\nmake title to as much love as she finds: there is\nmore owing her than is paid; and more shall be paid\nher than she'll demand.\n\nSteward:\nMadam, I was very late more near her than I think\nshe wished me: alone she was, and did communicate\nto herself her own words to her own ears; she\nthought, I dare vow for her, they touched not any\nstranger sense. Her matter was, she loved your son:\nFortune, she said, was no goddess, that had put\nsuch difference betwixt their two estates; Love no\ngod, that would not extend his might, only where\nqualities were level; Dian no queen of virgins, that\nwould suffer her poor knight surprised, without\nrescue in the first assault or ransom afterward.\nThis she delivered in the most bitter touch of\nsorrow that e'er I heard virgin exclaim in: which I\nheld my duty speedily to acquaint you withal;\nsithence, in the loss that may happen, it concerns\nyou something to know it.\n\nCOUNTESS:\nYou have discharged this honestly; keep it to\nyourself: many likelihoods informed me of this\nbefore, which hung so tottering in the balance that\nI could neither believe nor misdoubt. Pray you,\nleave me: stall this in your bosom; and I thank you\nfor your honest care: I will speak with you further anon.\nEven so it was with me when I was young:\nIf ever we are nature's, these are ours; this thorn\nDoth to our rose of youth rightly belong;\nOur blood to us, this to our blood is born;\nIt is the show and seal of nature's truth,\nWhere love's strong passion is impress'd in youth:\nBy our remembrances of days foregone,\nSuch were our faults, or then we thought them none.\nHer eye is sick on't: I observe her now.\n\nHELENA:\nWhat is your pleasure, madam?\n\nCOUNTESS:\nYou know, Helen,\nI am a mother to you.\n\nHELENA:\nMine honourable mistress.\n\nCOUNTESS:\nNay, a mother:\nWhy not a mother? When I said 'a mother,'\nMethought you saw a serpent: what's in 'mother,'\nThat you start at it? I say, I am your mother;\nAnd put you in the catalogue of those\nThat were enwombed mine: 'tis often seen\nAdoption strives with nature and choice breeds\nA native slip to us from foreign seeds:\nYou ne'er oppress'd me with a mother's groan,\nYet I express to you a mother's care:\nGod's mercy, maiden! does it curd thy blood\nTo say I am thy mother? What's the matter,\nThat this distemper'd messenger of wet,\nThe many-colour'd Iris, rounds thine eye?\nWhy? that you are my daughter?\n\nHELENA:\nThat I am not.\n\nCOUNTESS:\nI say, I am your mother.\n\nHELENA:\nPardon, madam;\nThe Count Rousillon cannot be my brother:\nI am from humble, he from honour'd name;\nNo note upon my parents, his all noble:\nMy master, my dear lord he is; and I\nHis servant live, and will his vassal die:\nHe must not be my brother.\n\nCOUNTESS:\nNor I your mother?\n\nHELENA:\nYou are my mother, madam; would you were,--\nSo that my lord your son were not my brother,--\nIndeed my mother! or were you both our mothers,\nI care no more for than I do for heaven,\nSo I were not his sister. Can't no other,\nBut, I your daughter, he must be my brother?\n\nCOUNTESS:\nYes, Helen, you might be my daughter-in-law:\nGod shield you mean it not! daughter and mother\nSo strive upon your pulse. What, pale again?\nMy fear hath catch'd your fondness: now I see\nThe mystery of your loneliness, and find\nYour salt tears' head: now to all sense 'tis gross\nYou love my son; invention is ashamed,\nAgainst the proclamation of thy passion,\nTo say thou dost not: therefore tell me true;\nBut tell me then, 'tis so; for, look thy cheeks\nConfess it, th' one to th' other; and thine eyes\nSee it so grossly shown in thy behaviors\nThat in their kind they speak it: only sin\nAnd hellish obstinacy tie thy tongue,\nThat truth should be suspected. Speak, is't so?\nIf it be so, you have wound a goodly clew;\nIf it be not, forswear't: howe'er, I charge thee,\nAs heaven shall work in me for thine avail,\nTell me truly.\n\nHELENA:\nGood madam, pardon me!\n\nCOUNTESS:\nDo you love my son?\n\nHELENA:\nYour pardon, noble mistress!\n\nCOUNTESS:\nLove you my son?\n\nHELENA:\nDo not you love him, madam?\n\nCOUNTESS:\nGo not about; my love hath in't a bond,\nWhereof the world takes note: come, come, disclose\nThe state of your affection; for your passions\nHave to the full appeach'd.\n\nHELENA:\nThen, I confess,\nHere on my knee, before high heaven and you,\nThat before you, and next unto high heaven,\nI love your son.\nMy friends were poor, but honest; so's my love:\nBe not offended; for it hurts not him\nThat he is loved of me: I follow him not\nBy any token of presumptuous suit;\nNor would I have him till I do deserve him;\nYet never know how that desert should be.\nI know I love in vain, strive against hope;\nYet in this captious and intenible sieve\nI still pour in the waters of my love\nAnd lack not to lose still: thus, Indian-like,\nReligious in mine error, I adore\nThe sun, that looks upon his worshipper,\nBut knows of him no more. My dearest madam,\nLet not your hate encounter with my love\nFor loving where you do: but if yourself,\nWhose aged honour cites a virtuous youth,\nDid ever in so true a flame of liking\nWish chastely and love dearly, that your Dian\nWas both herself and love: O, then, give pity\nTo her, whose state is such that cannot choose\nBut lend and give where she is sure to lose;\nThat seeks not to find that her search implies,\nBut riddle-like lives sweetly where she dies!\n\nCOUNTESS:\nHad you not lately an intent,--speak truly,--\nTo go to Paris?\n\nHELENA:\nMadam, I had.\n\nCOUNTESS:\nWherefore? tell true.\n\nHELENA:\nI will tell truth; by grace itself I swear.\nYou know my father left me some prescriptions\nOf rare and proved effects, such as his reading\nAnd manifest experience had collected\nFor general sovereignty; and that he will'd me\nIn heedfull'st reservation to bestow them,\nAs notes whose faculties inclusive were\nMore than they were in note: amongst the rest,\nThere is a remedy, approved, set down,\nTo cure the desperate languishings whereof\nThe king is render'd lost.\n\nCOUNTESS:\nThis was your motive\nFor Paris, was it? speak.\n\nHELENA:\nMy lord your son made me to think of this;\nElse Paris and the medicine and the king\nHad from the conversation of my thoughts\nHaply been absent then.\n\nCOUNTESS:\nBut think you, Helen,\nIf you should tender your supposed aid,\nHe would receive it? he and his physicians\nAre of a mind; he, that they cannot help him,\nThey, that they cannot help: how shall they credit\nA poor unlearned virgin, when the schools,\nEmbowell'd of their doctrine, have left off\nThe danger to itself?\n\nHELENA:\nThere's something in't,\nMore than my father's skill, which was the greatest\nOf his profession, that his good receipt\nShall for my legacy be sanctified\nBy the luckiest stars in heaven: and, would your honour\nBut give me leave to try success, I'ld venture\nThe well-lost life of mine on his grace's cure\nBy such a day and hour.\n\nCOUNTESS:\nDost thou believe't?\n\nHELENA:\nAy, madam, knowingly.\n\nCOUNTESS:\nWhy, Helen, thou shalt have my leave and love,\nMeans and attendants and my loving greetings\nTo those of mine in court: I'll stay at home\nAnd pray God's blessing into thy attempt:\nBe gone to-morrow; and be sure of this,\nWhat I can help thee to thou shalt not miss.\n\nKING:\nFarewell, young lords; these warlike principles\nDo not throw from you: and you, my lords, farewell:\nShare the advice betwixt you; if both gain, all\nThe gift doth stretch itself as 'tis received,\nAnd is enough for both.\n\nFirst Lord:\n'Tis our hope, sir,\nAfter well enter'd soldiers, to return\nAnd find your grace in health.\n\nKING:\nNo, no, it cannot be; and yet my heart\nWill not confess he owes the malady\nThat doth my life besiege. Farewell, young lords;\nWhether I live or die, be you the sons\nOf worthy Frenchmen: let higher Italy,--\nThose bated that inherit but the fall\nOf the last monarchy,--see that you come\nNot to woo honour, but to wed it; when\nThe bravest questant shrinks, find what you seek,\nThat fame may cry you loud: I say, farewell.\n\nSecond Lord:\nHealth, at your bidding, serve your majesty!\n\nKING:\nThose girls of Italy, take heed of them:\nThey say, our French lack language to deny,\nIf they demand: beware of being captives,\nBefore you serve.\n\nBoth:\nOur hearts receive your warnings.\n\nKING:\nFarewell. Come hither to me.\n\nFirst Lord:\nO, my sweet lord, that you will stay behind us!\n\nPAROLLES:\n'Tis not his fault, the spark.\n\nSecond Lord:\nO, 'tis brave wars!\n\nPAROLLES:\nMost admirable: I have seen those wars.\n\nBERTRAM:\nI am commanded here, and kept a coil with\n'Too young' and 'the next year' and ''tis too early.'\n\nPAROLLES:\nAn thy mind stand to't, boy, steal away bravely.\n\nBERTRAM:\nI shall stay here the forehorse to a smock,\nCreaking my shoes on the plain masonry,\nTill honour be bought up and no sword worn\nBut one to dance with! By heaven, I'll steal away.\n\nFirst Lord:\nThere's honour in the theft.\n\nPAROLLES:\nCommit it, count.\n\nSecond Lord:\nI am your accessary; and so, farewell.\n\nBERTRAM:\nI grow to you, and our parting is a tortured body.\n\nFirst Lord:\nFarewell, captain.\n\nSecond Lord:\nSweet Monsieur Parolles!\n\nPAROLLES:\nNoble heroes, my sword and yours are kin. Good\nsparks and lustrous, a word, good metals: you shall\nfind in the regiment of the Spinii one Captain\nSpurio, with his cicatrice, an emblem of war, here\non his sinister cheek; it was this very sword\nentrenched it: say to him, I live; and observe his\nreports for me.\n\nFirst Lord:\nWe shall, noble captain.\n\nPAROLLES:\nMars dote on you for his novices! what will ye do?\n\nBERTRAM:\nStay: the king.\n\nPAROLLES:\n\nBERTRAM:\nAnd I will do so.\n\nPAROLLES:\nWorthy fellows; and like to prove most sinewy sword-men.\n\nLAFEU:\n\nKING:\nI'll fee thee to stand up.\n\nLAFEU:\nThen here's a man stands, that has brought his pardon.\nI would you had kneel'd, my lord, to ask me mercy,\nAnd that at my bidding you could so stand up.\n\nKING:\nI would I had; so I had broke thy pate,\nAnd ask'd thee mercy for't.\n\nLAFEU:\nGood faith, across: but, my good lord 'tis thus;\nWill you be cured of your infirmity?\n\nKING:\nNo.\n\nLAFEU:\nO, will you eat no grapes, my royal fox?\nYes, but you will my noble grapes, an if\nMy royal fox could reach them: I have seen a medicine\nThat's able to breathe life into a stone,\nQuicken a rock, and make you dance canary\nWith spritely fire and motion; whose simple touch,\nIs powerful to araise King Pepin, nay,\nTo give great Charlemain a pen in's hand,\nAnd write to her a love-line.\n\nKING:\nWhat 'her' is this?\n\nLAFEU:\nWhy, Doctor She: my lord, there's one arrived,\nIf you will see her: now, by my faith and honour,\nIf seriously I may convey my thoughts\nIn this my light deliverance, I have spoke\nWith one that, in her sex, her years, profession,\nWisdom and constancy, hath amazed me more\nThan I dare blame my weakness: will you see her\nFor that is her demand, and know her business?\nThat done, laugh well at me.\n\nKING:\nNow, good Lafeu,\nBring in the admiration; that we with thee\nMay spend our wonder too, or take off thine\nBy wondering how thou took'st it.\n\nLAFEU:\nNay, I'll fit you,\nAnd not be all day neither.\n\nKING:\nThus he his special nothing ever prologues.\n\nLAFEU:\nNay, come your ways.\n\nKING:\nThis haste hath wings indeed.\n\nLAFEU:\nNay, come your ways:\nThis is his majesty; say your mind to him:\nA traitor you do look like; but such traitors\nHis majesty seldom fears: I am Cressid's uncle,\nThat dare leave two together; fare you well.\n\nKING:\nNow, fair one, does your business follow us?\n\nHELENA:\nAy, my good lord.\nGerard de Narbon was my father;\nIn what he did profess, well found.\n\nKING:\nI knew him.\n\nHELENA:\nThe rather will I spare my praises towards him:\nKnowing him is enough. On's bed of death\nMany receipts he gave me: chiefly one.\nWhich, as the dearest issue of his practise,\nAnd of his old experience the oily darling,\nHe bade me store up, as a triple eye,\nSafer than mine own two, more dear; I have so;\nAnd hearing your high majesty is touch'd\nWith that malignant cause wherein the honour\nOf my dear father's gift stands chief in power,\nI come to tender it and my appliance\nWith all bound humbleness.\n\nKING:\nWe thank you, maiden;\nBut may not be so credulous of cure,\nWhen our most learned doctors leave us and\nThe congregated college have concluded\nThat labouring art can never ransom nature\nFrom her inaidible estate; I say we must not\nSo stain our judgment, or corrupt our hope,\nTo prostitute our past-cure malady\nTo empirics, or to dissever so\nOur great self and our credit, to esteem\nA senseless help when help past sense we deem.\n\nHELENA:\nMy duty then shall pay me for my pains:\nI will no more enforce mine office on you.\nHumbly entreating from your royal thoughts\nA modest one, to bear me back a again.\n\nKING:\nI cannot give thee less, to be call'd grateful:\nThou thought'st to help me; and such thanks I give\nAs one near death to those that wish him live:\nBut what at full I know, thou know'st no part,\nI knowing all my peril, thou no art.\n\nHELENA:\nWhat I can do can do no hurt to try,\nSince you set up your rest 'gainst remedy.\nHe that of greatest works is finisher\nOft does them by the weakest minister:\nSo holy writ in babes hath judgment shown,\nWhen judges have been babes; great floods have flown\nFrom simple sources, and great seas have dried\nWhen miracles have by the greatest been denied.\nOft expectation fails and most oft there\nWhere most it promises, and oft it hits\nWhere hope is coldest and despair most fits.\n\nKING:\nI must not hear thee; fare thee well, kind maid;\nThy pains not used must by thyself be paid:\nProffers not took reap thanks for their reward.\n\nHELENA:\nInspired merit so by breath is barr'd:\nIt is not so with Him that all things knows\nAs 'tis with us that square our guess by shows;\nBut most it is presumption in us when\nThe help of heaven we count the act of men.\nDear sir, to my endeavours give consent;\nOf heaven, not me, make an experiment.\nI am not an impostor that proclaim\nMyself against the level of mine aim;\nBut know I think and think I know most sure\nMy art is not past power nor you past cure.\n\nKING:\nAre thou so confident? within what space\nHopest thou my cure?\n\nHELENA:\nThe great'st grace lending grace\nEre twice the horses of the sun shall bring\nTheir fiery torcher his diurnal ring,\nEre twice in murk and occidental damp\nMoist Hesperus hath quench'd his sleepy lamp,\nOr four and twenty times the pilot's glass\nHath told the thievish minutes how they pass,\nWhat is infirm from your sound parts shall fly,\nHealth shall live free and sickness freely die.\n\nKING:\nUpon thy certainty and confidence\nWhat darest thou venture?\n\nHELENA:\nTax of impudence,\nA strumpet's boldness, a divulged shame\nTraduced by odious ballads: my maiden's name\nSear'd otherwise; nay, worse--if worse--extended\nWith vilest torture let my life be ended.\n\nKING:\nMethinks in thee some blessed spirit doth speak\nHis powerful sound within an organ weak:\nAnd what impossibility would slay\nIn common sense, sense saves another way.\nThy life is dear; for all that life can rate\nWorth name of life in thee hath estimate,\nYouth, beauty, wisdom, courage, all\nThat happiness and prime can happy call:\nThou this to hazard needs must intimate\nSkill infinite or monstrous desperate.\nSweet practiser, thy physic I will try,\nThat ministers thine own death if I die.\n\nHELENA:\nIf I break time, or flinch in property\nOf what I spoke, unpitied let me die,\nAnd well deserved: not helping, death's my fee;\nBut, if I help, what do you promise me?\n\nKING:\nMake thy demand.\n\nHELENA:\nBut will you make it even?\n\nKING:\nAy, by my sceptre and my hopes of heaven.\n\nHELENA:\nThen shalt thou give me with thy kingly hand\nWhat husband in thy power I will command:\nExempted be from me the arrogance\nTo choose from forth the royal blood of France,\nMy low and humble name to propagate\nWith any branch or image of thy state;\nBut such a one, thy vassal, whom I know\nIs free for me to ask, thee to bestow.\n\nKING:\nHere is my hand; the premises observed,\nThy will by my performance shall be served:\nSo make the choice of thy own time, for I,\nThy resolved patient, on thee still rely.\nMore should I question thee, and more I must,\nThough more to know could not be more to trust,\nFrom whence thou camest, how tended on: but rest\nUnquestion'd welcome and undoubted blest.\nGive me some help here, ho! If thou proceed\nAs high as word, my deed shall match thy meed.\n\nCOUNTESS:\nCome on, sir; I shall now put you to the height of\nyour breeding.\n\nClown:\nI will show myself highly fed and lowly taught: I\nknow my business is but to the court.\n\nCOUNTESS:\nTo the court! why, what place make you special,\nwhen you put off that with such contempt? But to the court!\n\nClown:\nTruly, madam, if God have lent a man any manners, he\nmay easily put it off at court: he that cannot make\na leg, put off's cap, kiss his hand and say nothing,\nhas neither leg, hands, lip, nor cap; and indeed\nsuch a fellow, to say precisely, were not for the\ncourt; but for me, I have an answer will serve all\nmen.\n\nCOUNTESS:\nMarry, that's a bountiful answer that fits all\nquestions.\n\nClown:\nIt is like a barber's chair that fits all buttocks,\nthe pin-buttock, the quatch-buttock, the brawn\nbuttock, or any buttock.\n\nCOUNTESS:\nWill your answer serve fit to all questions?\n\nClown:\nAs fit as ten groats is for the hand of an attorney,\nas your French crown for your taffeta punk, as Tib's\nrush for Tom's forefinger, as a pancake for Shrove\nTuesday, a morris for May-day, as the nail to his\nhole, the cuckold to his horn, as a scolding queen\nto a wrangling knave, as the nun's lip to the\nfriar's mouth, nay, as the pudding to his skin.\n\nCOUNTESS:\nHave you, I say, an answer of such fitness for all\nquestions?\n\nClown:\nFrom below your duke to beneath your constable, it\nwill fit any question.\n\nCOUNTESS:\nIt must be an answer of most monstrous size that\nmust fit all demands.\n\nClown:\nBut a trifle neither, in good faith, if the learned\nshould speak truth of it: here it is, and all that\nbelongs to't. Ask me if I am a courtier: it shall\ndo you no harm to learn.\n\nCOUNTESS:\nTo be young again, if we could: I will be a fool in\nquestion, hoping to be the wiser by your answer. I\npray you, sir, are you a courtier?\n\nClown:\nO Lord, sir! There's a simple putting off. More,\nmore, a hundred of them.\n\nCOUNTESS:\nSir, I am a poor friend of yours, that loves you.\n\nClown:\nO Lord, sir! Thick, thick, spare not me.\n\nCOUNTESS:\nI think, sir, you can eat none of this homely meat.\n\nClown:\nO Lord, sir! Nay, put me to't, I warrant you.\n\nCOUNTESS:\nYou were lately whipped, sir, as I think.\n\nClown:\nO Lord, sir! spare not me.\n\nCOUNTESS:\nDo you cry, 'O Lord, sir!' at your whipping, and\n'spare not me?' Indeed your 'O Lord, sir!' is very\nsequent to your whipping: you would answer very well\nto a whipping, if you were but bound to't.\n\nClown:\nI ne'er had worse luck in my life in my 'O Lord,\nsir!' I see things may serve long, but not serve ever.\n\nCOUNTESS:\nI play the noble housewife with the time\nTo entertain't so merrily with a fool.\n\nClown:\nO Lord, sir! why, there't serves well again.\n\nCOUNTESS:\nAn end, sir; to your business. Give Helen this,\nAnd urge her to a present answer back:\nCommend me to my kinsmen and my son:\nThis is not much.\n\nClown:\nNot much commendation to them.\n\nCOUNTESS:\nNot much employment for you: you understand me?\n\nClown:\nMost fruitfully: I am there before my legs.\n\nCOUNTESS:\nHaste you again.\n\nLAFEU:\nThey say miracles are past; and we have our\nphilosophical persons, to make modern and familiar,\nthings supernatural and causeless. Hence is it that\nwe make trifles of terrors, ensconcing ourselves\ninto seeming knowledge, when we should submit\nourselves to an unknown fear.\n\nPAROLLES:\nWhy, 'tis the rarest argument of wonder that hath\nshot out in our latter times.\n\nBERTRAM:\nAnd so 'tis.\n\nLAFEU:\nTo be relinquish'd of the artists,--\n\nPAROLLES:\nSo I say.\n\nLAFEU:\nBoth of Galen and Paracelsus.\n\nPAROLLES:\nSo I say.\n\nLAFEU:\nOf all the learned and authentic fellows,--\n\nPAROLLES:\nRight; so I say.\n\nLAFEU:\nThat gave him out incurable,--\n\nPAROLLES:\nWhy, there 'tis; so say I too.\n\nLAFEU:\nNot to be helped,--\n\nPAROLLES:\nRight; as 'twere, a man assured of a--\n\nLAFEU:\nUncertain life, and sure death.\n\nPAROLLES:\nJust, you say well; so would I have said.\n\nLAFEU:\nI may truly say, it is a novelty to the world.\n\nPAROLLES:\nIt is, indeed: if you will have it in showing, you\nshall read it in--what do you call there?\n\nLAFEU:\nA showing of a heavenly effect in an earthly actor.\n\nPAROLLES:\nThat's it; I would have said the very same.\n\nLAFEU:\nWhy, your dolphin is not lustier: 'fore me,\nI speak in respect--\n\nPAROLLES:\nNay, 'tis strange, 'tis very strange, that is the\nbrief and the tedious of it; and he's of a most\nfacinerious spirit that will not acknowledge it to be the--\n\nLAFEU:\nVery hand of heaven.\n\nPAROLLES:\nAy, so I say.\n\nLAFEU:\nIn a most weak--\nand debile minister, great power, great\ntranscendence: which should, indeed, give us a\nfurther use to be made than alone the recovery of\nthe king, as to be--\ngenerally thankful.\n\nPAROLLES:\nI would have said it; you say well. Here comes the king.\n\nLAFEU:\nLustig, as the Dutchman says: I'll like a maid the\nbetter, whilst I have a tooth in my head: why, he's\nable to lead her a coranto.\n\nPAROLLES:\nMort du vinaigre! is not this Helen?\n\nLAFEU:\n'Fore God, I think so.\n\nKING:\nGo, call before me all the lords in court.\nSit, my preserver, by thy patient's side;\nAnd with this healthful hand, whose banish'd sense\nThou hast repeal'd, a second time receive\nThe confirmation of my promised gift,\nWhich but attends thy naming.\nFair maid, send forth thine eye: this youthful parcel\nOf noble bachelors stand at my bestowing,\nO'er whom both sovereign power and father's voice\nI have to use: thy frank election make;\nThou hast power to choose, and they none to forsake.\n\nHELENA:\nTo each of you one fair and virtuous mistress\nFall, when Love please! marry, to each, but one!\n\nLAFEU:\nI'ld give bay Curtal and his furniture,\nMy mouth no more were broken than these boys',\nAnd writ as little beard.\n\nKING:\nPeruse them well:\nNot one of those but had a noble father.\n\nHELENA:\nGentlemen,\nHeaven hath through me restored the king to health.\n\nAll:\nWe understand it, and thank heaven for you.\n\nHELENA:\nI am a simple maid, and therein wealthiest,\nThat I protest I simply am a maid.\nPlease it your majesty, I have done already:\nThe blushes in my cheeks thus whisper me,\n'We blush that thou shouldst choose; but, be refused,\nLet the white death sit on thy cheek for ever;\nWe'll ne'er come there again.'\n\nKING:\nMake choice; and, see,\nWho shuns thy love shuns all his love in me.\n\nHELENA:\nNow, Dian, from thy altar do I fly,\nAnd to imperial Love, that god most high,\nDo my sighs stream. Sir, will you hear my suit?\n\nFirst Lord:\nAnd grant it.\n\nHELENA:\nThanks, sir; all the rest is mute.\n\nLAFEU:\nI had rather be in this choice than throw ames-ace\nfor my life.\n\nHELENA:\nThe honour, sir, that flames in your fair eyes,\nBefore I speak, too threateningly replies:\nLove make your fortunes twenty times above\nHer that so wishes and her humble love!\n\nSecond Lord:\nNo better, if you please.\n\nHELENA:\nMy wish receive,\nWhich great Love grant! and so, I take my leave.\n\nLAFEU:\nDo all they deny her? An they were sons of mine,\nI'd have them whipped; or I would send them to the\nTurk, to make eunuchs of.\n\nHELENA:\nBe not afraid that I your hand should take;\nI'll never do you wrong for your own sake:\nBlessing upon your vows! and in your bed\nFind fairer fortune, if you ever wed!\n\nLAFEU:\nThese boys are boys of ice, they'll none have her:\nsure, they are bastards to the English; the French\nne'er got 'em.\n\nHELENA:\nYou are too young, too happy, and too good,\nTo make yourself a son out of my blood.\n\nFourth Lord:\nFair one, I think not so.\n\nLAFEU:\nThere's one grape yet; I am sure thy father drunk\nwine: but if thou be'st not an ass, I am a youth\nof fourteen; I have known thee already.\n\nHELENA:\n\nKING:\nWhy, then, young Bertram, take her; she's thy wife.\n\nBERTRAM:\nMy wife, my liege! I shall beseech your highness,\nIn such a business give me leave to use\nThe help of mine own eyes.\n\nKING:\nKnow'st thou not, Bertram,\nWhat she has done for me?\n\nBERTRAM:\nYes, my good lord;\nBut never hope to know why I should marry her.\n\nKING:\nThou know'st she has raised me from my sickly bed.\n\nBERTRAM:\nBut follows it, my lord, to bring me down\nMust answer for your raising? I know her well:\nShe had her breeding at my father's charge.\nA poor physician's daughter my wife! Disdain\nRather corrupt me ever!\n\nKING:\n'Tis only title thou disdain'st in her, the which\nI can build up. Strange is it that our bloods,\nOf colour, weight, and heat, pour'd all together,\nWould quite confound distinction, yet stand off\nIn differences so mighty. If she be\nAll that is virtuous, save what thou dislikest,\nA poor physician's daughter, thou dislikest\nOf virtue for the name: but do not so:\nFrom lowest place when virtuous things proceed,\nThe place is dignified by the doer's deed:\nWhere great additions swell's, and virtue none,\nIt is a dropsied honour. Good alone\nIs good without a name. Vileness is so:\nThe property by what it is should go,\nNot by the title. She is young, wise, fair;\nIn these to nature she's immediate heir,\nAnd these breed honour: that is honour's scorn,\nWhich challenges itself as honour's born\nAnd is not like the sire: honours thrive,\nWhen rather from our acts we them derive\nThan our foregoers: the mere word's a slave\nDebosh'd on every tomb, on every grave\nA lying trophy, and as oft is dumb\nWhere dust and damn'd oblivion is the tomb\nOf honour'd bones indeed. What should be said?\nIf thou canst like this creature as a maid,\nI can create the rest: virtue and she\nIs her own dower; honour and wealth from me.\n\nBERTRAM:\nI cannot love her, nor will strive to do't.\n\nKING:\nThou wrong'st thyself, if thou shouldst strive to choose.\n\nHELENA:\nThat you are well restored, my lord, I'm glad:\nLet the rest go.\n\nKING:\nMy honour's at the stake; which to defeat,\nI must produce my power. Here, take her hand,\nProud scornful boy, unworthy this good gift;\nThat dost in vile misprision shackle up\nMy love and her desert; that canst not dream,\nWe, poising us in her defective scale,\nShall weigh thee to the beam; that wilt not know,\nIt is in us to plant thine honour where\nWe please to have it grow. Cheque thy contempt:\nObey our will, which travails in thy good:\nBelieve not thy disdain, but presently\nDo thine own fortunes that obedient right\nWhich both thy duty owes and our power claims;\nOr I will throw thee from my care for ever\nInto the staggers and the careless lapse\nOf youth and ignorance; both my revenge and hate\nLoosing upon thee, in the name of justice,\nWithout all terms of pity. Speak; thine answer.\n\nBERTRAM:\nPardon, my gracious lord; for I submit\nMy fancy to your eyes: when I consider\nWhat great creation and what dole of honour\nFlies where you bid it, I find that she, which late\nWas in my nobler thoughts most base, is now\nThe praised of the king; who, so ennobled,\nIs as 'twere born so.\n\nKING:\nTake her by the hand,\nAnd tell her she is thine: to whom I promise\nA counterpoise, if not to thy estate\nA balance more replete.\n\nBERTRAM:\nI take her hand.\n\nKING:\nGood fortune and the favour of the king\nSmile upon this contract; whose ceremony\nShall seem expedient on the now-born brief,\nAnd be perform'd to-night: the solemn feast\nShall more attend upon the coming space,\nExpecting absent friends. As thou lovest her,\nThy love's to me religious; else, does err.\n\nLAFEU:\n\nPAROLLES:\nYour pleasure, sir?\n\nLAFEU:\nYour lord and master did well to make his\nrecantation.\n\nPAROLLES:\nRecantation! My lord! my master!\n\nLAFEU:\nAy; is it not a language I speak?\n\nPAROLLES:\nA most harsh one, and not to be understood without\nbloody succeeding. My master!\n\nLAFEU:\nAre you companion to the Count Rousillon?\n\nPAROLLES:\nTo any count, to all counts, to what is man.\n\nLAFEU:\nTo what is count's man: count's master is of\nanother style.\n\nPAROLLES:\nYou are too old, sir; let it satisfy you, you are too old.\n\nLAFEU:\nI must tell thee, sirrah, I write man; to which\ntitle age cannot bring thee.\n\nPAROLLES:\nWhat I dare too well do, I dare not do.\n\nLAFEU:\nI did think thee, for two ordinaries, to be a pretty\nwise fellow; thou didst make tolerable vent of thy\ntravel; it might pass: yet the scarfs and the\nbannerets about thee did manifoldly dissuade me from\nbelieving thee a vessel of too great a burthen. I\nhave now found thee; when I lose thee again, I care\nnot: yet art thou good for nothing but taking up; and\nthat thou't scarce worth.\n\nPAROLLES:\nHadst thou not the privilege of antiquity upon thee,--\n\nLAFEU:\nDo not plunge thyself too far in anger, lest thou\nhasten thy trial; which if--Lord have mercy on thee\nfor a hen! So, my good window of lattice, fare thee\nwell: thy casement I need not open, for I look\nthrough thee. Give me thy hand.\n\nPAROLLES:\nMy lord, you give me most egregious indignity.\n\nLAFEU:\nAy, with all my heart; and thou art worthy of it.\n\nPAROLLES:\nI have not, my lord, deserved it.\n\nLAFEU:\nYes, good faith, every dram of it; and I will not\nbate thee a scruple.\n\nPAROLLES:\nWell, I shall be wiser.\n\nLAFEU:\nEven as soon as thou canst, for thou hast to pull at\na smack o' the contrary. If ever thou be'st bound\nin thy scarf and beaten, thou shalt find what it is\nto be proud of thy bondage. I have a desire to hold\nmy acquaintance with thee, or rather my knowledge,\nthat I may say in the default, he is a man I know.\n\nPAROLLES:\nMy lord, you do me most insupportable vexation.\n\nLAFEU:\nI would it were hell-pains for thy sake, and my poor\ndoing eternal: for doing I am past: as I will by\nthee, in what motion age will give me leave.\n\nPAROLLES:\nWell, thou hast a son shall take this disgrace off\nme; scurvy, old, filthy, scurvy lord! Well, I must\nbe patient; there is no fettering of authority.\nI'll beat him, by my life, if I can meet him with\nany convenience, an he were double and double a\nlord. I'll have no more pity of his age than I\nwould of--I'll beat him, an if I could but meet him again.\n\nLAFEU:\nSirrah, your lord and master's married; there's news\nfor you: you have a new mistress.\n\nPAROLLES:\nI most unfeignedly beseech your lordship to make\nsome reservation of your wrongs: he is my good\nlord: whom I serve above is my master.\n\nLAFEU:\nWho? God?\n\nPAROLLES:\nAy, sir.\n\nLAFEU:\nThe devil it is that's thy master. Why dost thou\ngarter up thy arms o' this fashion? dost make hose of\nsleeves? do other servants so? Thou wert best set\nthy lower part where thy nose stands. By mine\nhonour, if I were but two hours younger, I'ld beat\nthee: methinks, thou art a general offence, and\nevery man should beat thee: I think thou wast\ncreated for men to breathe themselves upon thee.\n\nPAROLLES:\nThis is hard and undeserved measure, my lord.\n\nLAFEU:\nGo to, sir; you were beaten in Italy for picking a\nkernel out of a pomegranate; you are a vagabond and\nno true traveller: you are more saucy with lords\nand honourable personages than the commission of your\nbirth and virtue gives you heraldry. You are not\nworth another word, else I'ld call you knave. I leave you.\n\nPAROLLES:\nGood, very good; it is so then: good, very good;\nlet it be concealed awhile.\n\nBERTRAM:\nUndone, and forfeited to cares for ever!\n\nPAROLLES:\nWhat's the matter, sweet-heart?\n\nBERTRAM:\nAlthough before the solemn priest I have sworn,\nI will not bed her.\n\nPAROLLES:\nWhat, what, sweet-heart?\n\nBERTRAM:\nO my Parolles, they have married me!\nI'll to the Tuscan wars, and never bed her.\n\nPAROLLES:\nFrance is a dog-hole, and it no more merits\nThe tread of a man's foot: to the wars!\n\nBERTRAM:\nThere's letters from my mother: what the import is,\nI know not yet.\n\nPAROLLES:\nAy, that would be known. To the wars, my boy, to the wars!\nHe wears his honour in a box unseen,\nThat hugs his kicky-wicky here at home,\nSpending his manly marrow in her arms,\nWhich should sustain the bound and high curvet\nOf Mars's fiery steed. To other regions\nFrance is a stable; we that dwell in't jades;\nTherefore, to the war!\n\nBERTRAM:\nIt shall be so: I'll send her to my house,\nAcquaint my mother with my hate to her,\nAnd wherefore I am fled; write to the king\nThat which I durst not speak; his present gift\nShall furnish me to those Italian fields,\nWhere noble fellows strike: war is no strife\nTo the dark house and the detested wife.\n\nPAROLLES:\nWill this capriccio hold in thee? art sure?\n\nBERTRAM:\nGo with me to my chamber, and advise me.\nI'll send her straight away: to-morrow\nI'll to the wars, she to her single sorrow.\n\nPAROLLES:\nWhy, these balls bound; there's noise in it. 'Tis hard:\nA young man married is a man that's marr'd:\nTherefore away, and leave her bravely; go:\nThe king has done you wrong: but, hush, 'tis so.\n\nHELENA:\nMy mother greets me kindly; is she well?\n\nClown:\nShe is not well; but yet she has her health: she's\nvery merry; but yet she is not well: but thanks be\ngiven, she's very well and wants nothing i', the\nworld; but yet she is not well.\n\nHELENA:\nIf she be very well, what does she ail, that she's\nnot very well?\n\nClown:\nTruly, she's very well indeed, but for two things.\n\nHELENA:\nWhat two things?\n\nClown:\nOne, that she's not in heaven, whither God send her\nquickly! the other that she's in earth, from whence\nGod send her quickly!\n\nPAROLLES:\nBless you, my fortunate lady!\n\nHELENA:\nI hope, sir, I have your good will to have mine own\ngood fortunes.\n\nPAROLLES:\nYou had my prayers to lead them on; and to keep them\non, have them still. O, my knave, how does my old lady?\n\nClown:\nSo that you had her wrinkles and I her money,\nI would she did as you say.\n\nPAROLLES:\nWhy, I say nothing.\n\nClown:\nMarry, you are the wiser man; for many a man's\ntongue shakes out his master's undoing: to say\nnothing, to do nothing, to know nothing, and to have\nnothing, is to be a great part of your title; which\nis within a very little of nothing.\n\nPAROLLES:\nAway! thou'rt a knave.\n\nClown:\nYou should have said, sir, before a knave thou'rt a\nknave; that's, before me thou'rt a knave: this had\nbeen truth, sir.\n\nPAROLLES:\nGo to, thou art a witty fool; I have found thee.\n\nClown:\nDid you find me in yourself, sir? or were you\ntaught to find me? The search, sir, was profitable;\nand much fool may you find in you, even to the\nworld's pleasure and the increase of laughter.\n\nPAROLLES:\nA good knave, i' faith, and well fed.\nMadam, my lord will go away to-night;\nA very serious business calls on him.\nThe great prerogative and rite of love,\nWhich, as your due, time claims, he does acknowledge;\nBut puts it off to a compell'd restraint;\nWhose want, and whose delay, is strew'd with sweets,\nWhich they distil now in the curbed time,\nTo make the coming hour o'erflow with joy\nAnd pleasure drown the brim.\n\nHELENA:\nWhat's his will else?\n\nPAROLLES:\nThat you will take your instant leave o' the king\nAnd make this haste as your own good proceeding,\nStrengthen'd with what apology you think\nMay make it probable need.\n\nHELENA:\nWhat more commands he?\n\nPAROLLES:\nThat, having this obtain'd, you presently\nAttend his further pleasure.\n\nHELENA:\nIn every thing I wait upon his will.\n\nPAROLLES:\nI shall report it so.\n\nHELENA:\nI pray you.\nCome, sirrah.\n\nLAFEU:\nBut I hope your lordship thinks not him a soldier.\n\nBERTRAM:\nYes, my lord, and of very valiant approof.\n\nLAFEU:\nYou have it from his own deliverance.\n\nBERTRAM:\nAnd by other warranted testimony.\n\nLAFEU:\nThen my dial goes not true: I took this lark for a bunting.\n\nBERTRAM:\nI do assure you, my lord, he is very great in\nknowledge and accordingly valiant.\n\nLAFEU:\nI have then sinned against his experience and\ntransgressed against his valour; and my state that\nway is dangerous, since I cannot yet find in my\nheart to repent. Here he comes: I pray you, make\nus friends; I will pursue the amity.\n\nPAROLLES:\n\nLAFEU:\nPray you, sir, who's his tailor?\n\nPAROLLES:\nSir?\n\nLAFEU:\nO, I know him well, I, sir; he, sir, 's a good\nworkman, a very good tailor.\n\nBERTRAM:\n\nPAROLLES:\nShe is.\n\nBERTRAM:\nWill she away to-night?\n\nPAROLLES:\nAs you'll have her.\n\nBERTRAM:\nI have writ my letters, casketed my treasure,\nGiven order for our horses; and to-night,\nWhen I should take possession of the bride,\nEnd ere I do begin.\n\nLAFEU:\nA good traveller is something at the latter end of a\ndinner; but one that lies three thirds and uses a\nknown truth to pass a thousand nothings with, should\nbe once heard and thrice beaten. God save you, captain.\n\nBERTRAM:\nIs there any unkindness between my lord and you, monsieur?\n\nPAROLLES:\nI know not how I have deserved to run into my lord's\ndispleasure.\n\nLAFEU:\nYou have made shift to run into 't, boots and spurs\nand all, like him that leaped into the custard; and\nout of it you'll run again, rather than suffer\nquestion for your residence.\n\nBERTRAM:\nIt may be you have mistaken him, my lord.\n\nLAFEU:\nAnd shall do so ever, though I took him at 's\nprayers. Fare you well, my lord; and believe this\nof me, there can be no kernel in this light nut; the\nsoul of this man is his clothes. Trust him not in\nmatter of heavy consequence; I have kept of them\ntame, and know their natures. Farewell, monsieur:\nI have spoken better of you than you have or will to\ndeserve at my hand; but we must do good against evil.\n\nPAROLLES:\nAn idle lord. I swear.\n\nBERTRAM:\nI think so.\n\nPAROLLES:\nWhy, do you not know him?\n\nBERTRAM:\nYes, I do know him well, and common speech\nGives him a worthy pass. Here comes my clog.\n\nHELENA:\nI have, sir, as I was commanded from you,\nSpoke with the king and have procured his leave\nFor present parting; only he desires\nSome private speech with you.\n\nBERTRAM:\nI shall obey his will.\nYou must not marvel, Helen, at my course,\nWhich holds not colour with the time, nor does\nThe ministration and required office\nOn my particular. Prepared I was not\nFor such a business; therefore am I found\nSo much unsettled: this drives me to entreat you\nThat presently you take our way for home;\nAnd rather muse than ask why I entreat you,\nFor my respects are better than they seem\nAnd my appointments have in them a need\nGreater than shows itself at the first view\nTo you that know them not. This to my mother:\n'Twill be two days ere I shall see you, so\nI leave you to your wisdom.\n\nHELENA:\nSir, I can nothing say,\nBut that I am your most obedient servant.\n\nBERTRAM:\nCome, come, no more of that.\n\nHELENA:\nAnd ever shall\nWith true observance seek to eke out that\nWherein toward me my homely stars have fail'd\nTo equal my great fortune.\n\nBERTRAM:\nLet that go:\nMy haste is very great: farewell; hie home.\n\nHELENA:\nPray, sir, your pardon.\n\nBERTRAM:\nWell, what would you say?\n\nHELENA:\nI am not worthy of the wealth I owe,\nNor dare I say 'tis mine, and yet it is;\nBut, like a timorous thief, most fain would steal\nWhat law does vouch mine own.\n\nBERTRAM:\nWhat would you have?\n\nHELENA:\nSomething; and scarce so much: nothing, indeed.\nI would not tell you what I would, my lord:\nFaith yes;\nStrangers and foes do sunder, and not kiss.\n\nBERTRAM:\nI pray you, stay not, but in haste to horse.\n\nHELENA:\nI shall not break your bidding, good my lord.\n\nBERTRAM:\nWhere are my other men, monsieur? Farewell.\nGo thou toward home; where I will never come\nWhilst I can shake my sword or hear the drum.\nAway, and for our flight.\n\nPAROLLES:\nBravely, coragio!\n\nDUKE:\nSo that from point to point now have you heard\nThe fundamental reasons of this war,\nWhose great decision hath much blood let forth\nAnd more thirsts after.\n\nFirst Lord:\nHoly seems the quarrel\nUpon your grace's part; black and fearful\nOn the opposer.\n\nDUKE:\nTherefore we marvel much our cousin France\nWould in so just a business shut his bosom\nAgainst our borrowing prayers.\n\nSecond Lord:\nGood my lord,\nThe reasons of our state I cannot yield,\nBut like a common and an outward man,\nThat the great figure of a council frames\nBy self-unable motion: therefore dare not\nSay what I think of it, since I have found\nMyself in my incertain grounds to fail\nAs often as I guess'd.\n\nDUKE:\nBe it his pleasure.\n\nFirst Lord:\nBut I am sure the younger of our nature,\nThat surfeit on their ease, will day by day\nCome here for physic.\n\nDUKE:\nWelcome shall they be;\nAnd all the honours that can fly from us\nShall on them settle. You know your places well;\nWhen better fall, for your avails they fell:\nTo-morrow to the field.\n\nCOUNTESS:\nIt hath happened all as I would have had it, save\nthat he comes not along with her.\n\nClown:\nBy my troth, I take my young lord to be a very\nmelancholy man.\n\nCOUNTESS:\nBy what observance, I pray you?\n\nClown:\nWhy, he will look upon his boot and sing; mend the\nruff and sing; ask questions and sing; pick his\nteeth and sing. I know a man that had this trick of\nmelancholy sold a goodly manor for a song.\n\nCOUNTESS:\nLet me see what he writes, and when he means to come.\n\nClown:\nI have no mind to Isbel since I was at court: our\nold ling and our Isbels o' the country are nothing\nlike your old ling and your Isbels o' the court:\nthe brains of my Cupid's knocked out, and I begin to\nlove, as an old man loves money, with no stomach.\n\nCOUNTESS:\nWhat have we here?\n\nClown:\nE'en that you have there.\n\nCOUNTESS:\n\nClown:\nO madam, yonder is heavy news within between two\nsoldiers and my young lady!\n\nCOUNTESS:\nWhat is the matter?\n\nClown:\nNay, there is some comfort in the news, some\ncomfort; your son will not be killed so soon as I\nthought he would.\n\nCOUNTESS:\nWhy should he be killed?\n\nClown:\nSo say I, madam, if he run away, as I hear he does:\nthe danger is in standing to't; that's the loss of\nmen, though it be the getting of children. Here\nthey come will tell you more: for my part, I only\nhear your son was run away.\n\nFirst Gentleman:\nSave you, good madam.\n\nHELENA:\nMadam, my lord is gone, for ever gone.\n\nSecond Gentleman:\nDo not say so.\n\nCOUNTESS:\nThink upon patience. Pray you, gentlemen,\nI have felt so many quirks of joy and grief,\nThat the first face of neither, on the start,\nCan woman me unto't: where is my son, I pray you?\n\nSecond Gentleman:\nMadam, he's gone to serve the duke of Florence:\nWe met him thitherward; for thence we came,\nAnd, after some dispatch in hand at court,\nThither we bend again.\n\nHELENA:\nLook on his letter, madam; here's my passport.\nWhen thou canst get the ring upon my finger which\nnever shall come off, and show me a child begotten\nof thy body that I am father to, then call me\nhusband: but in such a 'then' I write a 'never.'\nThis is a dreadful sentence.\n\nCOUNTESS:\nBrought you this letter, gentlemen?\n\nFirst Gentleman:\nAy, madam;\nAnd for the contents' sake are sorry for our pain.\n\nCOUNTESS:\nI prithee, lady, have a better cheer;\nIf thou engrossest all the griefs are thine,\nThou robb'st me of a moiety: he was my son;\nBut I do wash his name out of my blood,\nAnd thou art all my child. Towards Florence is he?\n\nSecond Gentleman:\nAy, madam.\n\nCOUNTESS:\nAnd to be a soldier?\n\nSecond Gentleman:\nSuch is his noble purpose; and believe 't,\nThe duke will lay upon him all the honour\nThat good convenience claims.\n\nCOUNTESS:\nReturn you thither?\n\nFirst Gentleman:\nAy, madam, with the swiftest wing of speed.\n\nHELENA:\n\nCOUNTESS:\nFind you that there?\n\nHELENA:\nAy, madam.\n\nFirst Gentleman:\n'Tis but the boldness of his hand, haply, which his\nheart was not consenting to.\n\nCOUNTESS:\nNothing in France, until he have no wife!\nThere's nothing here that is too good for him\nBut only she; and she deserves a lord\nThat twenty such rude boys might tend upon\nAnd call her hourly mistress. Who was with him?\n\nFirst Gentleman:\nA servant only, and a gentleman\nWhich I have sometime known.\n\nCOUNTESS:\nParolles, was it not?\n\nFirst Gentleman:\nAy, my good lady, he.\n\nCOUNTESS:\nA very tainted fellow, and full of wickedness.\nMy son corrupts a well-derived nature\nWith his inducement.\n\nFirst Gentleman:\nIndeed, good lady,\nThe fellow has a deal of that too much,\nWhich holds him much to have.\n\nCOUNTESS:\nYou're welcome, gentlemen.\nI will entreat you, when you see my son,\nTo tell him that his sword can never win\nThe honour that he loses: more I'll entreat you\nWritten to bear along.\n\nSecond Gentleman:\nWe serve you, madam,\nIn that and all your worthiest affairs.\n\nCOUNTESS:\nNot so, but as we change our courtesies.\nWill you draw near!\n\nHELENA:\n'Till I have no wife, I have nothing in France.'\nNothing in France, until he has no wife!\nThou shalt have none, Rousillon, none in France;\nThen hast thou all again. Poor lord! is't I\nThat chase thee from thy country and expose\nThose tender limbs of thine to the event\nOf the none-sparing war? and is it I\nThat drive thee from the sportive court, where thou\nWast shot at with fair eyes, to be the mark\nOf smoky muskets? O you leaden messengers,\nThat ride upon the violent speed of fire,\nFly with false aim; move the still-peering air,\nThat sings with piercing; do not touch my lord.\nWhoever shoots at him, I set him there;\nWhoever charges on his forward breast,\nI am the caitiff that do hold him to't;\nAnd, though I kill him not, I am the cause\nHis death was so effected: better 'twere\nI met the ravin lion when he roar'd\nWith sharp constraint of hunger; better 'twere\nThat all the miseries which nature owes\nWere mine at once. No, come thou home, Rousillon,\nWhence honour but of danger wins a scar,\nAs oft it loses all: I will be gone;\nMy being here it is that holds thee hence:\nShall I stay here to do't?  no, no, although\nThe air of paradise did fan the house\nAnd angels officed all: I will be gone,\nThat pitiful rumour may report my flight,\nTo consolate thine ear. Come, night; end, day!\nFor with the dark, poor thief, I'll steal away.\n\nDUKE:\nThe general of our horse thou art; and we,\nGreat in our hope, lay our best love and credence\nUpon thy promising fortune.\n\nBERTRAM:\nSir, it is\nA charge too heavy for my strength, but yet\nWe'll strive to bear it for your worthy sake\nTo the extreme edge of hazard.\n\nDUKE:\nThen go thou forth;\nAnd fortune play upon thy prosperous helm,\nAs thy auspicious mistress!\n\nBERTRAM:\nThis very day,\nGreat Mars, I put myself into thy file:\nMake me but like my thoughts, and I shall prove\nA lover of thy drum, hater of love.\n\nCOUNTESS:\nAlas! and would you take the letter of her?\nMight you not know she would do as she has done,\nBy sending me a letter? Read it again.\n\nSteward:\n\nCOUNTESS:\nAh, what sharp stings are in her mildest words!\nRinaldo, you did never lack advice so much,\nAs letting her pass so: had I spoke with her,\nI could have well diverted her intents,\nWhich thus she hath prevented.\n\nSteward:\nPardon me, madam:\nIf I had given you this at over-night,\nShe might have been o'erta'en; and yet she writes,\nPursuit would be but vain.\n\nCOUNTESS:\nWhat angel shall\nBless this unworthy husband? he cannot thrive,\nUnless her prayers, whom heaven delights to hear\nAnd loves to grant, reprieve him from the wrath\nOf greatest justice. Write, write, Rinaldo,\nTo this unworthy husband of his wife;\nLet every word weigh heavy of her worth\nThat he does weigh too light: my greatest grief.\nThough little he do feel it, set down sharply.\nDispatch the most convenient messenger:\nWhen haply he shall hear that she is gone,\nHe will return; and hope I may that she,\nHearing so much, will speed her foot again,\nLed hither by pure love: which of them both\nIs dearest to me. I have no skill in sense\nTo make distinction: provide this messenger:\nMy heart is heavy and mine age is weak;\nGrief would have tears, and sorrow bids me speak.\n\nWidow:\nNay, come; for if they do approach the city, we\nshall lose all the sight.\n\nDIANA:\nThey say the French count has done most honourable service.\n\nWidow:\nIt is reported that he has taken their greatest\ncommander; and that with his own hand he slew the\nduke's brother.\nWe have lost our labour; they are gone a contrary\nway: hark! you may know by their trumpets.\n\nMARIANA:\nCome, let's return again, and suffice ourselves with\nthe report of it. Well, Diana, take heed of this\nFrench earl: the honour of a maid is her name; and\nno legacy is so rich as honesty.\n\nWidow:\nI have told my neighbour how you have been solicited\nby a gentleman his companion.\n\nMARIANA:\nI know that knave; hang him! one Parolles: a\nfilthy officer he is in those suggestions for the\nyoung earl. Beware of them, Diana; their promises,\nenticements, oaths, tokens, and all these engines of\nlust, are not the things they go under: many a maid\nhath been seduced by them; and the misery is,\nexample, that so terrible shows in the wreck of\nmaidenhood, cannot for all that dissuade succession,\nbut that they are limed with the twigs that threaten\nthem. I hope I need not to advise you further; but\nI hope your own grace will keep you where you are,\nthough there were no further danger known but the\nmodesty which is so lost.\n\nDIANA:\nYou shall not need to fear me.\n\nWidow:\nI hope so.\nLook, here comes a pilgrim: I know she will lie at\nmy house; thither they send one another: I'll\nquestion her. God save you, pilgrim! whither are you bound?\n\nHELENA:\nTo Saint Jaques le Grand.\nWhere do the palmers lodge, I do beseech you?\n\nWidow:\nAt the Saint Francis here beside the port.\n\nHELENA:\nIs this the way?\n\nWidow:\nAy, marry, is't.\nHark you! they come this way.\nIf you will tarry, holy pilgrim,\nBut till the troops come by,\nI will conduct you where you shall be lodged;\nThe rather, for I think I know your hostess\nAs ample as myself.\n\nHELENA:\nIs it yourself?\n\nWidow:\nIf you shall please so, pilgrim.\n\nHELENA:\nI thank you, and will stay upon your leisure.\n\nWidow:\nYou came, I think, from France?\n\nHELENA:\nI did so.\n\nWidow:\nHere you shall see a countryman of yours\nThat has done worthy service.\n\nHELENA:\nHis name, I pray you.\n\nDIANA:\nThe Count Rousillon: know you such a one?\n\nHELENA:\nBut by the ear, that hears most nobly of him:\nHis face I know not.\n\nDIANA:\nWhatsome'er he is,\nHe's bravely taken here. He stole from France,\nAs 'tis reported, for the king had married him\nAgainst his liking: think you it is so?\n\nHELENA:\nAy, surely, mere the truth: I know his lady.\n\nDIANA:\nThere is a gentleman that serves the count\nReports but coarsely of her.\n\nHELENA:\nWhat's his name?\n\nDIANA:\nMonsieur Parolles.\n\nHELENA:\nO, I believe with him,\nIn argument of praise, or to the worth\nOf the great count himself, she is too mean\nTo have her name repeated: all her deserving\nIs a reserved honesty, and that\nI have not heard examined.\n\nDIANA:\nAlas, poor lady!\n'Tis a hard bondage to become the wife\nOf a detesting lord.\n\nWidow:\nI warrant, good creature, wheresoe'er she is,\nHer heart weighs sadly: this young maid might do her\nA shrewd turn, if she pleased.\n\nHELENA:\nHow do you mean?\nMay be the amorous count solicits her\nIn the unlawful purpose.\n\nWidow:\nHe does indeed;\nAnd brokes with all that can in such a suit\nCorrupt the tender honour of a maid:\nBut she is arm'd for him and keeps her guard\nIn honestest defence.\n\nMARIANA:\nThe gods forbid else!\n\nWidow:\nSo, now they come:\nThat is Antonio, the duke's eldest son;\nThat, Escalus.\n\nHELENA:\nWhich is the Frenchman?\n\nDIANA:\nHe;\nThat with the plume: 'tis a most gallant fellow.\nI would he loved his wife: if he were honester\nHe were much goodlier: is't not a handsome gentleman?\n\nHELENA:\nI like him well.\n\nDIANA:\n'Tis pity he is not honest: yond's that same knave\nThat leads him to these places: were I his lady,\nI would Poison that vile rascal.\n\nHELENA:\nWhich is he?\n\nDIANA:\nThat jack-an-apes with scarfs: why is he melancholy?\n\nHELENA:\nPerchance he's hurt i' the battle.\n\nPAROLLES:\nLose our drum! well.\n\nMARIANA:\nHe's shrewdly vexed at something: look, he has spied us.\n\nWidow:\nMarry, hang you!\n\nMARIANA:\nAnd your courtesy, for a ring-carrier!\n\nWidow:\nThe troop is past. Come, pilgrim, I will bring you\nWhere you shall host: of enjoin'd penitents\nThere's four or five, to great Saint Jaques bound,\nAlready at my house.\n\nHELENA:\nI humbly thank you:\nPlease it this matron and this gentle maid\nTo eat with us to-night, the charge and thanking\nShall be for me; and, to requite you further,\nI will bestow some precepts of this virgin\nWorthy the note.\n\nBOTH:\nWe'll take your offer kindly.\n\nSecond Lord:\nNay, good my lord, put him to't; let him have his\nway.\n\nFirst Lord:\nIf your lordship find him not a hilding, hold me no\nmore in your respect.\n\nSecond Lord:\nOn my life, my lord, a bubble.\n\nBERTRAM:\nDo you think I am so far deceived in him?\n\nSecond Lord:\nBelieve it, my lord, in mine own direct knowledge,\nwithout any malice, but to speak of him as my\nkinsman, he's a most notable coward, an infinite and\nendless liar, an hourly promise-breaker, the owner\nof no one good quality worthy your lordship's\nentertainment.\n\nFirst Lord:\nIt were fit you knew him; lest, reposing too far in\nhis virtue, which he hath not, he might at some\ngreat and trusty business in a main danger fail you.\n\nBERTRAM:\nI would I knew in what particular action to try him.\n\nFirst Lord:\nNone better than to let him fetch off his drum,\nwhich you hear him so confidently undertake to do.\n\nSecond Lord:\nI, with a troop of Florentines, will suddenly\nsurprise him; such I will have, whom I am sure he\nknows not from the enemy: we will bind and hoodwink\nhim so, that he shall suppose no other but that he\nis carried into the leaguer of the adversaries, when\nwe bring him to our own tents. Be but your lordship\npresent at his examination: if he do not, for the\npromise of his life and in the highest compulsion of\nbase fear, offer to betray you and deliver all the\nintelligence in his power against you, and that with\nthe divine forfeit of his soul upon oath, never\ntrust my judgment in any thing.\n\nFirst Lord:\nO, for the love of laughter, let him fetch his drum;\nhe says he has a stratagem for't: when your\nlordship sees the bottom of his success in't, and to\nwhat metal this counterfeit lump of ore will be\nmelted, if you give him not John Drum's\nentertainment, your inclining cannot be removed.\nHere he comes.\n\nSecond Lord:\n\nBERTRAM:\nHow now, monsieur! this drum sticks sorely in your\ndisposition.\n\nFirst Lord:\nA pox on't, let it go; 'tis but a drum.\n\nPAROLLES:\n'But a drum'! is't 'but a drum'? A drum so lost!\nThere was excellent command,--to charge in with our\nhorse upon our own wings, and to rend our own soldiers!\n\nFirst Lord:\nThat was not to be blamed in the command of the\nservice: it was a disaster of war that Caesar\nhimself could not have prevented, if he had been\nthere to command.\n\nBERTRAM:\nWell, we cannot greatly condemn our success: some\ndishonour we had in the loss of that drum; but it is\nnot to be recovered.\n\nPAROLLES:\nIt might have been recovered.\n\nBERTRAM:\nIt might; but it is not now.\n\nPAROLLES:\nIt is to be recovered: but that the merit of\nservice is seldom attributed to the true and exact\nperformer, I would have that drum or another, or\n'hic jacet.'\n\nBERTRAM:\nWhy, if you have a stomach, to't, monsieur: if you\nthink your mystery in stratagem can bring this\ninstrument of honour again into his native quarter,\nbe magnanimous in the enterprise and go on; I will\ngrace the attempt for a worthy exploit: if you\nspeed well in it, the duke shall both speak of it.\nand extend to you what further becomes his\ngreatness, even to the utmost syllable of your\nworthiness.\n\nPAROLLES:\nBy the hand of a soldier, I will undertake it.\n\nBERTRAM:\nBut you must not now slumber in it.\n\nPAROLLES:\nI'll about it this evening: and I will presently\npen down my dilemmas, encourage myself in my\ncertainty, put myself into my mortal preparation;\nand by midnight look to hear further from me.\n\nBERTRAM:\nMay I be bold to acquaint his grace you are gone about it?\n\nPAROLLES:\nI know not what the success will be, my lord; but\nthe attempt I vow.\n\nBERTRAM:\nI know thou'rt valiant; and, to the possibility of\nthy soldiership, will subscribe for thee. Farewell.\n\nPAROLLES:\nI love not many words.\n\nSecond Lord:\nNo more than a fish loves water. Is not this a\nstrange fellow, my lord, that so confidently seems\nto undertake this business, which he knows is not to\nbe done; damns himself to do and dares better be\ndamned than to do't?\n\nFirst Lord:\nYou do not know him, my lord, as we do: certain it\nis that he will steal himself into a man's favour and\nfor a week escape a great deal of discoveries; but\nwhen you find him out, you have him ever after.\n\nBERTRAM:\nWhy, do you think he will make no deed at all of\nthis that so seriously he does address himself unto?\n\nSecond Lord:\nNone in the world; but return with an invention and\nclap upon you two or three probable lies: but we\nhave almost embossed him; you shall see his fall\nto-night; for indeed he is not for your lordship's respect.\n\nFirst Lord:\nWe'll make you some sport with the fox ere we case\nhim. He was first smoked by the old lord Lafeu:\nwhen his disguise and he is parted, tell me what a\nsprat you shall find him; which you shall see this\nvery night.\n\nSecond Lord:\nI must go look my twigs: he shall be caught.\n\nBERTRAM:\nYour brother he shall go along with me.\n\nSecond Lord:\nAs't please your lordship: I'll leave you.\n\nBERTRAM:\nNow will I lead you to the house, and show you\nThe lass I spoke of.\n\nFirst Lord:\nBut you say she's honest.\n\nBERTRAM:\nThat's all the fault: I spoke with her but once\nAnd found her wondrous cold; but I sent to her,\nBy this same coxcomb that we have i' the wind,\nTokens and letters which she did re-send;\nAnd this is all I have done. She's a fair creature:\nWill you go see her?\n\nFirst Lord:\nWith all my heart, my lord.\n\nHELENA:\nIf you misdoubt me that I am not she,\nI know not how I shall assure you further,\nBut I shall lose the grounds I work upon.\n\nWidow:\nThough my estate be fallen, I was well born,\nNothing acquainted with these businesses;\nAnd would not put my reputation now\nIn any staining act.\n\nHELENA:\nNor would I wish you.\nFirst, give me trust, the count he is my husband,\nAnd what to your sworn counsel I have spoken\nIs so from word to word; and then you cannot,\nBy the good aid that I of you shall borrow,\nErr in bestowing it.\n\nWidow:\nI should believe you:\nFor you have show'd me that which well approves\nYou're great in fortune.\n\nHELENA:\nTake this purse of gold,\nAnd let me buy your friendly help thus far,\nWhich I will over-pay and pay again\nWhen I have found it. The count he wooes your daughter,\nLays down his wanton siege before her beauty,\nResolved to carry her: let her in fine consent,\nAs we'll direct her how 'tis best to bear it.\nNow his important blood will nought deny\nThat she'll demand: a ring the county wears,\nThat downward hath succeeded in his house\nFrom son to son, some four or five descents\nSince the first father wore it: this ring he holds\nIn most rich choice; yet in his idle fire,\nTo buy his will, it would not seem too dear,\nHowe'er repented after.\n\nWidow:\nNow I see\nThe bottom of your purpose.\n\nHELENA:\nYou see it lawful, then: it is no more,\nBut that your daughter, ere she seems as won,\nDesires this ring; appoints him an encounter;\nIn fine, delivers me to fill the time,\nHerself most chastely absent: after this,\nTo marry her, I'll add three thousand crowns\nTo what is passed already.\n\nWidow:\nI have yielded:\nInstruct my daughter how she shall persever,\nThat time and place with this deceit so lawful\nMay prove coherent. Every night he comes\nWith musics of all sorts and songs composed\nTo her unworthiness: it nothing steads us\nTo chide him from our eaves; for he persists\nAs if his life lay on't.\n\nHELENA:\nWhy then to-night\nLet us assay our plot; which, if it speed,\nIs wicked meaning in a lawful deed\nAnd lawful meaning in a lawful act,\nWhere both not sin, and yet a sinful fact:\nBut let's about it.\n\nSecond Lord:\nHe can come no other way but by this hedge-corner.\nWhen you sally upon him, speak what terrible\nlanguage you will: though you understand it not\nyourselves, no matter; for we must not seem to\nunderstand him, unless some one among us whom we\nmust produce for an interpreter.\n\nFirst Soldier:\nGood captain, let me be the interpreter.\n\nSecond Lord:\nArt not acquainted with him? knows he not thy voice?\n\nFirst Soldier:\nNo, sir, I warrant you.\n\nSecond Lord:\nBut what linsey-woolsey hast thou to speak to us again?\n\nFirst Soldier:\nE'en such as you speak to me.\n\nSecond Lord:\nHe must think us some band of strangers i' the\nadversary's entertainment. Now he hath a smack of\nall neighbouring languages; therefore we must every\none be a man of his own fancy, not to know what we\nspeak one to another; so we seem to know, is to\nknow straight our purpose: choughs' language,\ngabble enough, and good enough. As for you,\ninterpreter, you must seem very politic. But couch,\nho! here he comes, to beguile two hours in a sleep,\nand then to return and swear the lies he forges.\n\nPAROLLES:\nTen o'clock: within these three hours 'twill be\ntime enough to go home. What shall I say I have\ndone? It must be a very plausive invention that\ncarries it: they begin to smoke me; and disgraces\nhave of late knocked too often at my door. I find\nmy tongue is too foolhardy; but my heart hath the\nfear of Mars before it and of his creatures, not\ndaring the reports of my tongue.\n\nSecond Lord:\nThis is the first truth that e'er thine own tongue\nwas guilty of.\n\nPAROLLES:\nWhat the devil should move me to undertake the\nrecovery of this drum, being not ignorant of the\nimpossibility, and knowing I had no such purpose? I\nmust give myself some hurts, and say I got them in\nexploit: yet slight ones will not carry it; they\nwill say, 'Came you off with so little?' and great\nones I dare not give. Wherefore, what's the\ninstance? Tongue, I must put you into a\nbutter-woman's mouth and buy myself another of\nBajazet's mule, if you prattle me into these perils.\n\nSecond Lord:\nIs it possible he should know what he is, and be\nthat he is?\n\nPAROLLES:\nI would the cutting of my garments would serve the\nturn, or the breaking of my Spanish sword.\n\nSecond Lord:\nWe cannot afford you so.\n\nPAROLLES:\nOr the baring of my beard; and to say it was in\nstratagem.\n\nSecond Lord:\n'Twould not do.\n\nPAROLLES:\nOr to drown my clothes, and say I was stripped.\n\nSecond Lord:\nHardly serve.\n\nPAROLLES:\nThough I swore I leaped from the window of the citadel.\n\nSecond Lord:\nHow deep?\n\nPAROLLES:\nThirty fathom.\n\nSecond Lord:\nThree great oaths would scarce make that be believed.\n\nPAROLLES:\nI would I had any drum of the enemy's: I would swear\nI recovered it.\n\nSecond Lord:\nYou shall hear one anon.\n\nPAROLLES:\nA drum now of the enemy's,--\n\nSecond Lord:\nThroca movousus, cargo, cargo, cargo.\n\nAll:\nCargo, cargo, cargo, villiando par corbo, cargo.\n\nPAROLLES:\nO, ransom, ransom! do not hide mine eyes.\n\nFirst Soldier:\nBoskos thromuldo boskos.\n\nPAROLLES:\nI know you are the Muskos' regiment:\nAnd I shall lose my life for want of language;\nIf there be here German, or Dane, low Dutch,\nItalian, or French, let him speak to me; I'll\nDiscover that which shall undo the Florentine.\n\nFirst Soldier:\nBoskos vauvado: I understand thee, and can speak\nthy tongue. Kerely bonto, sir, betake thee to thy\nfaith, for seventeen poniards are at thy bosom.\n\nPAROLLES:\nO!\n\nFirst Soldier:\nO, pray, pray, pray! Manka revania dulche.\n\nSecond Lord:\nOscorbidulchos volivorco.\n\nFirst Soldier:\nThe general is content to spare thee yet;\nAnd, hoodwink'd as thou art, will lead thee on\nTo gather from thee: haply thou mayst inform\nSomething to save thy life.\n\nPAROLLES:\nO, let me live!\nAnd all the secrets of our camp I'll show,\nTheir force, their purposes; nay, I'll speak that\nWhich you will wonder at.\n\nFirst Soldier:\nBut wilt thou faithfully?\n\nPAROLLES:\nIf I do not, damn me.\n\nFirst Soldier:\nAcordo linta.\nCome on; thou art granted space.\n\nSecond Lord:\nGo, tell the Count Rousillon, and my brother,\nWe have caught the woodcock, and will keep him muffled\nTill we do hear from them.\n\nSecond Soldier:\nCaptain, I will.\n\nSecond Lord:\nA' will betray us all unto ourselves:\nInform on that.\n\nSecond Soldier:\nSo I will, sir.\n\nSecond Lord:\nTill then I'll keep him dark and safely lock'd.\n\nBERTRAM:\nThey told me that your name was Fontibell.\n\nDIANA:\nNo, my good lord, Diana.\n\nBERTRAM:\nTitled goddess;\nAnd worth it, with addition! But, fair soul,\nIn your fine frame hath love no quality?\nIf quick fire of youth light not your mind,\nYou are no maiden, but a monument:\nWhen you are dead, you should be such a one\nAs you are now, for you are cold and stem;\nAnd now you should be as your mother was\nWhen your sweet self was got.\n\nDIANA:\nShe then was honest.\n\nBERTRAM:\nSo should you be.\n\nDIANA:\nNo:\nMy mother did but duty; such, my lord,\nAs you owe to your wife.\n\nBERTRAM:\nNo more o' that;\nI prithee, do not strive against my vows:\nI was compell'd to her; but I love thee\nBy love's own sweet constraint, and will for ever\nDo thee all rights of service.\n\nDIANA:\nAy, so you serve us\nTill we serve you; but when you have our roses,\nYou barely leave our thorns to prick ourselves\nAnd mock us with our bareness.\n\nBERTRAM:\nHow have I sworn!\n\nDIANA:\n'Tis not the many oaths that makes the truth,\nBut the plain single vow that is vow'd true.\nWhat is not holy, that we swear not by,\nBut take the High'st to witness: then, pray you, tell me,\nIf I should swear by God's great attributes,\nI loved you dearly, would you believe my oaths,\nWhen I did love you ill? This has no holding,\nTo swear by him whom I protest to love,\nThat I will work against him: therefore your oaths\nAre words and poor conditions, but unseal'd,\nAt least in my opinion.\n\nBERTRAM:\nChange it, change it;\nBe not so holy-cruel: love is holy;\nAnd my integrity ne'er knew the crafts\nThat you do charge men with. Stand no more off,\nBut give thyself unto my sick desires,\nWho then recover: say thou art mine, and ever\nMy love as it begins shall so persever.\n\nDIANA:\nI see that men make ropes in such a scarre\nThat we'll forsake ourselves. Give me that ring.\n\nBERTRAM:\nI'll lend it thee, my dear; but have no power\nTo give it from me.\n\nDIANA:\nWill you not, my lord?\n\nBERTRAM:\nIt is an honour 'longing to our house,\nBequeathed down from many ancestors;\nWhich were the greatest obloquy i' the world\nIn me to lose.\n\nDIANA:\nMine honour's such a ring:\nMy chastity's the jewel of our house,\nBequeathed down from many ancestors;\nWhich were the greatest obloquy i' the world\nIn me to lose: thus your own proper wisdom\nBrings in the champion Honour on my part,\nAgainst your vain assault.\n\nBERTRAM:\nHere, take my ring:\nMy house, mine honour, yea, my life, be thine,\nAnd I'll be bid by thee.\n\nDIANA:\nWhen midnight comes, knock at my chamber-window:\nI'll order take my mother shall not hear.\nNow will I charge you in the band of truth,\nWhen you have conquer'd my yet maiden bed,\nRemain there but an hour, nor speak to me:\nMy reasons are most strong; and you shall know them\nWhen back again this ring shall be deliver'd:\nAnd on your finger in the night I'll put\nAnother ring, that what in time proceeds\nMay token to the future our past deeds.\nAdieu, till then; then, fail not. You have won\nA wife of me, though there my hope be done.\n\nBERTRAM:\nA heaven on earth I have won by wooing thee.\n\nDIANA:\nFor which live long to thank both heaven and me!\nYou may so in the end.\nMy mother told me just how he would woo,\nAs if she sat in 's heart; she says all men\nHave the like oaths: he had sworn to marry me\nWhen his wife's dead; therefore I'll lie with him\nWhen I am buried. Since Frenchmen are so braid,\nMarry that will, I live and die a maid:\nOnly in this disguise I think't no sin\nTo cozen him that would unjustly win.\n\nFirst Lord:\nYou have not given him his mother's letter?\n\nSecond Lord:\nI have delivered it an hour since: there is\nsomething in't that stings his nature; for on the\nreading it he changed almost into another man.\n\nFirst Lord:\nHe has much worthy blame laid upon him for shaking\noff so good a wife and so sweet a lady.\n\nSecond Lord:\nEspecially he hath incurred the everlasting\ndispleasure of the king, who had even tuned his\nbounty to sing happiness to him. I will tell you a\nthing, but you shall let it dwell darkly with you.\n\nFirst Lord:\nWhen you have spoken it, 'tis dead, and I am the\ngrave of it.\n\nSecond Lord:\nHe hath perverted a young gentlewoman here in\nFlorence, of a most chaste renown; and this night he\nfleshes his will in the spoil of her honour: he hath\ngiven her his monumental ring, and thinks himself\nmade in the unchaste composition.\n\nFirst Lord:\nNow, God delay our rebellion! as we are ourselves,\nwhat things are we!\n\nSecond Lord:\nMerely our own traitors. And as in the common course\nof all treasons, we still see them reveal\nthemselves, till they attain to their abhorred ends,\nso he that in this action contrives against his own\nnobility, in his proper stream o'erflows himself.\n\nFirst Lord:\nIs it not meant damnable in us, to be trumpeters of\nour unlawful intents? We shall not then have his\ncompany to-night?\n\nSecond Lord:\nNot till after midnight; for he is dieted to his hour.\n\nFirst Lord:\nThat approaches apace; I would gladly have him see\nhis company anatomized, that he might take a measure\nof his own judgments, wherein so curiously he had\nset this counterfeit.\n\nSecond Lord:\nWe will not meddle with him till he come; for his\npresence must be the whip of the other.\n\nFirst Lord:\nIn the mean time, what hear you of these wars?\n\nSecond Lord:\nI hear there is an overture of peace.\n\nFirst Lord:\nNay, I assure you, a peace concluded.\n\nSecond Lord:\nWhat will Count Rousillon do then? will he travel\nhigher, or return again into France?\n\nFirst Lord:\nI perceive, by this demand, you are not altogether\nof his council.\n\nSecond Lord:\nLet it be forbid, sir; so should I be a great deal\nof his act.\n\nFirst Lord:\nSir, his wife some two months since fled from his\nhouse: her pretence is a pilgrimage to Saint Jaques\nle Grand; which holy undertaking with most austere\nsanctimony she accomplished; and, there residing the\ntenderness of her nature became as a prey to her\ngrief; in fine, made a groan of her last breath, and\nnow she sings in heaven.\n\nSecond Lord:\nHow is this justified?\n\nFirst Lord:\nThe stronger part of it by her own letters, which\nmakes her story true, even to the point of her\ndeath: her death itself, which could not be her\noffice to say is come, was faithfully confirmed by\nthe rector of the place.\n\nSecond Lord:\nHath the count all this intelligence?\n\nFirst Lord:\nAy, and the particular confirmations, point from\npoint, so to the full arming of the verity.\n\nSecond Lord:\nI am heartily sorry that he'll be glad of this.\n\nFirst Lord:\nHow mightily sometimes we make us comforts of our losses!\n\nSecond Lord:\nAnd how mightily some other times we drown our gain\nin tears! The great dignity that his valour hath\nhere acquired for him shall at home be encountered\nwith a shame as ample.\n\nFirst Lord:\nThe web of our life is of a mingled yarn, good and\nill together: our virtues would be proud, if our\nfaults whipped them not; and our crimes would\ndespair, if they were not cherished by our virtues.\nHow now! where's your master?\n\nServant:\nHe met the duke in the street, sir, of whom he hath\ntaken a solemn leave: his lordship will next\nmorning for France. The duke hath offered him\nletters of commendations to the king.\n\nSecond Lord:\nThey shall be no more than needful there, if they\nwere more than they can commend.\n\nFirst Lord:\nThey cannot be too sweet for the king's tartness.\nHere's his lordship now.\nHow now, my lord! is't not after midnight?\n\nBERTRAM:\nI have to-night dispatched sixteen businesses, a\nmonth's length a-piece, by an abstract of success:\nI have congied with the duke, done my adieu with his\nnearest; buried a wife, mourned for her; writ to my\nlady mother I am returning; entertained my convoy;\nand between these main parcels of dispatch effected\nmany nicer needs; the last was the greatest, but\nthat I have not ended yet.\n\nSecond Lord:\nIf the business be of any difficulty, and this\nmorning your departure hence, it requires haste of\nyour lordship.\n\nBERTRAM:\nI mean, the business is not ended, as fearing to\nhear of it hereafter. But shall we have this\ndialogue between the fool and the soldier? Come,\nbring forth this counterfeit module, he has deceived\nme, like a double-meaning prophesier.\n\nSecond Lord:\nBring him forth: has sat i' the stocks all night,\npoor gallant knave.\n\nBERTRAM:\nNo matter: his heels have deserved it, in usurping\nhis spurs so long. How does he carry himself?\n\nSecond Lord:\nI have told your lordship already, the stocks carry\nhim. But to answer you as you would be understood;\nhe weeps like a wench that had shed her milk: he\nhath confessed himself to Morgan, whom he supposes\nto be a friar, from the time of his remembrance to\nthis very instant disaster of his setting i' the\nstocks: and what think you he hath confessed?\n\nBERTRAM:\nNothing of me, has a'?\n\nSecond Lord:\nHis confession is taken, and it shall be read to his\nface: if your lordship be in't, as I believe you\nare, you must have the patience to hear it.\n\nBERTRAM:\nA plague upon him! muffled! he can say nothing of\nme: hush, hush!\n\nFirst Lord:\nHoodman comes! Portotartarosa\n\nFirst Soldier:\nHe calls for the tortures: what will you say\nwithout 'em?\n\nPAROLLES:\nI will confess what I know without constraint: if\nye pinch me like a pasty, I can say no more.\n\nFirst Soldier:\nBosko chimurcho.\n\nFirst Lord:\nBoblibindo chicurmurco.\n\nFirst Soldier:\nYou are a merciful general. Our general bids you\nanswer to what I shall ask you out of a note.\n\nPAROLLES:\nAnd truly, as I hope to live.\n\nFirst Soldier:\n\nPAROLLES:\nFive or six thousand; but very weak and\nunserviceable: the troops are all scattered, and\nthe commanders very poor rogues, upon my reputation\nand credit and as I hope to live.\n\nFirst Soldier:\nShall I set down your answer so?\n\nPAROLLES:\nDo: I'll take the sacrament on't, how and which way you will.\n\nBERTRAM:\nAll's one to him. What a past-saving slave is this!\n\nFirst Lord:\nYou're deceived, my lord: this is Monsieur\nParolles, the gallant militarist,--that was his own\nphrase,--that had the whole theoric of war in the\nknot of his scarf, and the practise in the chape of\nhis dagger.\n\nSecond Lord:\nI will never trust a man again for keeping his sword\nclean. nor believe he can have every thing in him\nby wearing his apparel neatly.\n\nFirst Soldier:\nWell, that's set down.\n\nPAROLLES:\nFive or six thousand horse, I said,-- I will say\ntrue,--or thereabouts, set down, for I'll speak truth.\n\nFirst Lord:\nHe's very near the truth in this.\n\nBERTRAM:\nBut I con him no thanks for't, in the nature he\ndelivers it.\n\nPAROLLES:\nPoor rogues, I pray you, say.\n\nFirst Soldier:\nWell, that's set down.\n\nPAROLLES:\nI humbly thank you, sir: a truth's a truth, the\nrogues are marvellous poor.\n\nFirst Soldier:\n\nPAROLLES:\nBy my troth, sir, if I were to live this present\nhour, I will tell true. Let me see: Spurio, a\nhundred and fifty; Sebastian, so many; Corambus, so\nmany; Jaques, so many; Guiltian, Cosmo, Lodowick,\nand Gratii, two hundred and fifty each; mine own\ncompany, Chitopher, Vaumond, Bentii, two hundred and\nfifty each: so that the muster-file, rotten and\nsound, upon my life, amounts not to fifteen thousand\npoll; half of the which dare not shake snow from off\ntheir cassocks, lest they shake themselves to pieces.\n\nBERTRAM:\nWhat shall be done to him?\n\nFirst Lord:\nNothing, but let him have thanks. Demand of him my\ncondition, and what credit I have with the duke.\n\nFirst Soldier:\nWell, that's set down.\n'You shall demand of him, whether one Captain Dumain\nbe i' the camp, a Frenchman; what his reputation is\nwith the duke; what his valour, honesty, and\nexpertness in wars; or whether he thinks it were not\npossible, with well-weighing sums of gold, to\ncorrupt him to revolt.' What say you to this? what\ndo you know of it?\n\nPAROLLES:\nI beseech you, let me answer to the particular of\nthe inter'gatories: demand them singly.\n\nFirst Soldier:\nDo you know this Captain Dumain?\n\nPAROLLES:\nI know him: a' was a botcher's 'prentice in Paris,\nfrom whence he was whipped for getting the shrieve's\nfool with child,--a dumb innocent, that could not\nsay him nay.\n\nBERTRAM:\nNay, by your leave, hold your hands; though I know\nhis brains are forfeit to the next tile that falls.\n\nFirst Soldier:\nWell, is this captain in the duke of Florence's camp?\n\nPAROLLES:\nUpon my knowledge, he is, and lousy.\n\nFirst Lord:\nNay look not so upon me; we shall hear of your\nlordship anon.\n\nFirst Soldier:\nWhat is his reputation with the duke?\n\nPAROLLES:\nThe duke knows him for no other but a poor officer\nof mine; and writ to me this other day to turn him\nout o' the band: I think I have his letter in my pocket.\n\nFirst Soldier:\nMarry, we'll search.\n\nPAROLLES:\nIn good sadness, I do not know; either it is there,\nor it is upon a file with the duke's other letters\nin my tent.\n\nFirst Soldier:\nHere 'tis; here's a paper: shall I read it to you?\n\nPAROLLES:\nI do not know if it be it or no.\n\nBERTRAM:\nOur interpreter does it well.\n\nFirst Lord:\nExcellently.\n\nFirst Soldier:\n\nPAROLLES:\nThat is not the duke's letter, sir; that is an\nadvertisement to a proper maid in Florence, one\nDiana, to take heed of the allurement of one Count\nRousillon, a foolish idle boy, but for all that very\nruttish: I pray you, sir, put it up again.\n\nFirst Soldier:\nNay, I'll read it first, by your favour.\n\nPAROLLES:\nMy meaning in't, I protest, was very honest in the\nbehalf of the maid; for I knew the young count to be\na dangerous and lascivious boy, who is a whale to\nvirginity and devours up all the fry it finds.\n\nBERTRAM:\nDamnable both-sides rogue!\n\nFirst Soldier:\n\nBERTRAM:\nHe shall be whipped through the army with this rhyme\nin's forehead.\n\nSecond Lord:\nThis is your devoted friend, sir, the manifold\nlinguist and the armipotent soldier.\n\nBERTRAM:\nI could endure any thing before but a cat, and now\nhe's a cat to me.\n\nFirst Soldier:\nI perceive, sir, by the general's looks, we shall be\nfain to hang you.\n\nPAROLLES:\nMy life, sir, in any case: not that I am afraid to\ndie; but that, my offences being many, I would\nrepent out the remainder of nature: let me live,\nsir, in a dungeon, i' the stocks, or any where, so I may live.\n\nFirst Soldier:\nWe'll see what may be done, so you confess freely;\ntherefore, once more to this Captain Dumain: you\nhave answered to his reputation with the duke and to\nhis valour: what is his honesty?\n\nPAROLLES:\nHe will steal, sir, an egg out of a cloister: for\nrapes and ravishments he parallels Nessus: he\nprofesses not keeping of oaths; in breaking 'em he\nis stronger than Hercules: he will lie, sir, with\nsuch volubility, that you would think truth were a\nfool: drunkenness is his best virtue, for he will\nbe swine-drunk; and in his sleep he does little\nharm, save to his bed-clothes about him; but they\nknow his conditions and lay him in straw. I have but\nlittle more to say, sir, of his honesty: he has\nevery thing that an honest man should not have; what\nan honest man should have, he has nothing.\n\nFirst Lord:\nI begin to love him for this.\n\nBERTRAM:\nFor this description of thine honesty? A pox upon\nhim for me, he's more and more a cat.\n\nFirst Soldier:\nWhat say you to his expertness in war?\n\nPAROLLES:\nFaith, sir, he has led the drum before the English\ntragedians; to belie him, I will not, and more of\nhis soldiership I know not; except, in that country\nhe had the honour to be the officer at a place there\ncalled Mile-end, to instruct for the doubling of\nfiles: I would do the man what honour I can, but of\nthis I am not certain.\n\nFirst Lord:\nHe hath out-villained villany so far, that the\nrarity redeems him.\n\nBERTRAM:\nA pox on him, he's a cat still.\n\nFirst Soldier:\nHis qualities being at this poor price, I need not\nto ask you if gold will corrupt him to revolt.\n\nPAROLLES:\nSir, for a quart d'ecu he will sell the fee-simple\nof his salvation, the inheritance of it; and cut the\nentail from all remainders, and a perpetual\nsuccession for it perpetually.\n\nFirst Soldier:\nWhat's his brother, the other Captain Dumain?\n\nSecond Lord:\nWhy does be ask him of me?\n\nFirst Soldier:\nWhat's he?\n\nPAROLLES:\nE'en a crow o' the same nest; not altogether so\ngreat as the first in goodness, but greater a great\ndeal in evil: he excels his brother for a coward,\nyet his brother is reputed one of the best that is:\nin a retreat he outruns any lackey; marry, in coming\non he has the cramp.\n\nFirst Soldier:\nIf your life be saved, will you undertake to betray\nthe Florentine?\n\nPAROLLES:\nAy, and the captain of his horse, Count Rousillon.\n\nFirst Soldier:\nI'll whisper with the general, and know his pleasure.\n\nPAROLLES:\n\nFirst Soldier:\nThere is no remedy, sir, but you must die: the\ngeneral says, you that have so traitorously\ndiscovered the secrets of your army and made such\npestiferous reports of men very nobly held, can\nserve the world for no honest use; therefore you\nmust die. Come, headsman, off with his head.\n\nPAROLLES:\nO Lord, sir, let me live, or let me see my death!\n\nFirst Lord:\nThat shall you, and take your leave of all your friends.\nSo, look about you: know you any here?\n\nBERTRAM:\nGood morrow, noble captain.\n\nSecond Lord:\nGod bless you, Captain Parolles.\n\nFirst Lord:\nGod save you, noble captain.\n\nSecond Lord:\nCaptain, what greeting will you to my Lord Lafeu?\nI am for France.\n\nFirst Lord:\nGood captain, will you give me a copy of the sonnet\nyou writ to Diana in behalf of the Count Rousillon?\nan I were not a very coward, I'ld compel it of you:\nbut fare you well.\n\nFirst Soldier:\nYou are undone, captain, all but your scarf; that\nhas a knot on't yet\n\nPAROLLES:\nWho cannot be crushed with a plot?\n\nFirst Soldier:\nIf you could find out a country where but women were\nthat had received so much shame, you might begin an\nimpudent nation. Fare ye well, sir; I am for France\ntoo: we shall speak of you there.\n\nPAROLLES:\nYet am I thankful: if my heart were great,\n'Twould burst at this. Captain I'll be no more;\nBut I will eat and drink, and sleep as soft\nAs captain shall: simply the thing I am\nShall make me live. Who knows himself a braggart,\nLet him fear this, for it will come to pass\nthat every braggart shall be found an ass.\nRust, sword? cool, blushes! and, Parolles, live\nSafest in shame! being fool'd, by foolery thrive!\nThere's place and means for every man alive.\nI'll after them.\n\nHELENA:\nThat you may well perceive I have not wrong'd you,\nOne of the greatest in the Christian world\nShall be my surety; 'fore whose throne 'tis needful,\nEre I can perfect mine intents, to kneel:\nTime was, I did him a desired office,\nDear almost as his life; which gratitude\nThrough flinty Tartar's bosom would peep forth,\nAnd answer, thanks: I duly am inform'd\nHis grace is at Marseilles; to which place\nWe have convenient convoy. You must know\nI am supposed dead: the army breaking,\nMy husband hies him home; where, heaven aiding,\nAnd by the leave of my good lord the king,\nWe'll be before our welcome.\n\nWidow:\nGentle madam,\nYou never had a servant to whose trust\nYour business was more welcome.\n\nHELENA:\nNor you, mistress,\nEver a friend whose thoughts more truly labour\nTo recompense your love: doubt not but heaven\nHath brought me up to be your daughter's dower,\nAs it hath fated her to be my motive\nAnd helper to a husband. But, O strange men!\nThat can such sweet use make of what they hate,\nWhen saucy trusting of the cozen'd thoughts\nDefiles the pitchy night: so lust doth play\nWith what it loathes for that which is away.\nBut more of this hereafter. You, Diana,\nUnder my poor instructions yet must suffer\nSomething in my behalf.\n\nDIANA:\nLet death and honesty\nGo with your impositions, I am yours\nUpon your will to suffer.\n\nHELENA:\nYet, I pray you:\nBut with the word the time will bring on summer,\nWhen briers shall have leaves as well as thorns,\nAnd be as sweet as sharp. We must away;\nOur wagon is prepared, and time revives us:\nAll's well that ends well; still the fine's the crown;\nWhate'er the course, the end is the renown.\n\nLAFEU:\nNo, no, no, your son was misled with a snipt-taffeta\nfellow there, whose villanous saffron would have\nmade all the unbaked and doughy youth of a nation in\nhis colour: your daughter-in-law had been alive at\nthis hour, and your son here at home, more advanced\nby the king than by that red-tailed humble-bee I speak of.\n\nCOUNTESS:\nI would I had not known him; it was the death of the\nmost virtuous gentlewoman that ever nature had\npraise for creating. If she had partaken of my\nflesh, and cost me the dearest groans of a mother, I\ncould not have owed her a more rooted love.\n\nLAFEU:\n'Twas a good lady, 'twas a good lady: we may pick a\nthousand salads ere we light on such another herb.\n\nClown:\nIndeed, sir, she was the sweet marjoram of the\nsalad, or rather, the herb of grace.\n\nLAFEU:\nThey are not herbs, you knave; they are nose-herbs.\n\nClown:\nI am no great Nebuchadnezzar, sir; I have not much\nskill in grass.\n\nLAFEU:\nWhether dost thou profess thyself, a knave or a fool?\n\nClown:\nA fool, sir, at a woman's service, and a knave at a man's.\n\nLAFEU:\nYour distinction?\n\nClown:\nI would cozen the man of his wife and do his service.\n\nLAFEU:\nSo you were a knave at his service, indeed.\n\nClown:\nAnd I would give his wife my bauble, sir, to do her service.\n\nLAFEU:\nI will subscribe for thee, thou art both knave and fool.\n\nClown:\nAt your service.\n\nLAFEU:\nNo, no, no.\n\nClown:\nWhy, sir, if I cannot serve you, I can serve as\ngreat a prince as you are.\n\nLAFEU:\nWho's that? a Frenchman?\n\nClown:\nFaith, sir, a' has an English name; but his fisnomy\nis more hotter in France than there.\n\nLAFEU:\nWhat prince is that?\n\nClown:\nThe black prince, sir; alias, the prince of\ndarkness; alias, the devil.\n\nLAFEU:\nHold thee, there's my purse: I give thee not this\nto suggest thee from thy master thou talkest of;\nserve him still.\n\nClown:\nI am a woodland fellow, sir, that always loved a\ngreat fire; and the master I speak of ever keeps a\ngood fire. But, sure, he is the prince of the\nworld; let his nobility remain in's court. I am for\nthe house with the narrow gate, which I take to be\ntoo little for pomp to enter: some that humble\nthemselves may; but the many will be too chill and\ntender, and they'll be for the flowery way that\nleads to the broad gate and the great fire.\n\nLAFEU:\nGo thy ways, I begin to be aweary of thee; and I\ntell thee so before, because I would not fall out\nwith thee. Go thy ways: let my horses be well\nlooked to, without any tricks.\n\nClown:\nIf I put any tricks upon 'em, sir, they shall be\njades' tricks; which are their own right by the law of nature.\n\nLAFEU:\nA shrewd knave and an unhappy.\n\nCOUNTESS:\nSo he is. My lord that's gone made himself much\nsport out of him: by his authority he remains here,\nwhich he thinks is a patent for his sauciness; and,\nindeed, he has no pace, but runs where he will.\n\nLAFEU:\nI like him well; 'tis not amiss. And I was about to\ntell you, since I heard of the good lady's death and\nthat my lord your son was upon his return home, I\nmoved the king my master to speak in the behalf of\nmy daughter; which, in the minority of them both,\nhis majesty, out of a self-gracious remembrance, did\nfirst propose: his highness hath promised me to do\nit: and, to stop up the displeasure he hath\nconceived against your son, there is no fitter\nmatter. How does your ladyship like it?\n\nCOUNTESS:\nWith very much content, my lord; and I wish it\nhappily effected.\n\nLAFEU:\nHis highness comes post from Marseilles, of as able\nbody as when he numbered thirty: he will be here\nto-morrow, or I am deceived by him that in such\nintelligence hath seldom failed.\n\nCOUNTESS:\nIt rejoices me, that I hope I shall see him ere I\ndie. I have letters that my son will be here\nto-night: I shall beseech your lordship to remain\nwith me till they meet together.\n\nLAFEU:\nMadam, I was thinking with what manners I might\nsafely be admitted.\n\nCOUNTESS:\nYou need but plead your honourable privilege.\n\nLAFEU:\nLady, of that I have made a bold charter; but I\nthank my God it holds yet.\n\nClown:\nO madam, yonder's my lord your son with a patch of\nvelvet on's face: whether there be a scar under't\nor no, the velvet knows; but 'tis a goodly patch of\nvelvet: his left cheek is a cheek of two pile and a\nhalf, but his right cheek is worn bare.\n\nLAFEU:\nA scar nobly got, or a noble scar, is a good livery\nof honour; so belike is that.\n\nClown:\nBut it is your carbonadoed face.\n\nLAFEU:\nLet us go see your son, I pray you: I long to talk\nwith the young noble soldier.\n\nClown:\nFaith there's a dozen of 'em, with delicate fine\nhats and most courteous feathers, which bow the head\nand nod at every man.\n\nHELENA:\nBut this exceeding posting day and night\nMust wear your spirits low; we cannot help it:\nBut since you have made the days and nights as one,\nTo wear your gentle limbs in my affairs,\nBe bold you do so grow in my requital\nAs nothing can unroot you. In happy time;\nThis man may help me to his majesty's ear,\nIf he would spend his power. God save you, sir.\n\nGentleman:\nAnd you.\n\nHELENA:\nSir, I have seen you in the court of France.\n\nGentleman:\nI have been sometimes there.\n\nHELENA:\nI do presume, sir, that you are not fallen\nFrom the report that goes upon your goodness;\nAn therefore, goaded with most sharp occasions,\nWhich lay nice manners by, I put you to\nThe use of your own virtues, for the which\nI shall continue thankful.\n\nGentleman:\nWhat's your will?\n\nHELENA:\nThat it will please you\nTo give this poor petition to the king,\nAnd aid me with that store of power you have\nTo come into his presence.\n\nGentleman:\nThe king's not here.\n\nHELENA:\nNot here, sir!\n\nGentleman:\nNot, indeed:\nHe hence removed last night and with more haste\nThan is his use.\n\nWidow:\nLord, how we lose our pains!\n\nHELENA:\nAll's well that ends well yet,\nThough time seem so adverse and means unfit.\nI do beseech you, whither is he gone?\n\nGentleman:\nMarry, as I take it, to Rousillon;\nWhither I am going.\n\nHELENA:\nI do beseech you, sir,\nSince you are like to see the king before me,\nCommend the paper to his gracious hand,\nWhich I presume shall render you no blame\nBut rather make you thank your pains for it.\nI will come after you with what good speed\nOur means will make us means.\n\nGentleman:\nThis I'll do for you.\n\nHELENA:\nAnd you shall find yourself to be well thank'd,\nWhate'er falls more. We must to horse again.\nGo, go, provide.\n\nPAROLLES:\nGood Monsieur Lavache, give my Lord Lafeu this\nletter: I have ere now, sir, been better known to\nyou, when I have held familiarity with fresher\nclothes; but I am now, sir, muddied in fortune's\nmood, and smell somewhat strong of her strong\ndispleasure.\n\nClown:\nTruly, fortune's displeasure is but sluttish, if it\nsmell so strongly as thou speakest of: I will\nhenceforth eat no fish of fortune's buttering.\nPrithee, allow the wind.\n\nPAROLLES:\nNay, you need not to stop your nose, sir; I spake\nbut by a metaphor.\n\nClown:\nIndeed, sir, if your metaphor stink, I will stop my\nnose; or against any man's metaphor. Prithee, get\nthee further.\n\nPAROLLES:\nPray you, sir, deliver me this paper.\n\nClown:\nFoh! prithee, stand away: a paper from fortune's\nclose-stool to give to a nobleman! Look, here he\ncomes himself.\nHere is a purr of fortune's, sir, or of fortune's\ncat,--but not a musk-cat,--that has fallen into the\nunclean fishpond of her displeasure, and, as he\nsays, is muddied withal: pray you, sir, use the\ncarp as you may; for he looks like a poor, decayed,\ningenious, foolish, rascally knave. I do pity his\ndistress in my similes of comfort and leave him to\nyour lordship.\n\nPAROLLES:\nMy lord, I am a man whom fortune hath cruelly\nscratched.\n\nLAFEU:\nAnd what would you have me to do? 'Tis too late to\npare her nails now. Wherein have you played the\nknave with fortune, that she should scratch you, who\nof herself is a good lady and would not have knaves\nthrive long under her? There's a quart d'ecu for\nyou: let the justices make you and fortune friends:\nI am for other business.\n\nPAROLLES:\nI beseech your honour to hear me one single word.\n\nLAFEU:\nYou beg a single penny more: come, you shall ha't;\nsave your word.\n\nPAROLLES:\nMy name, my good lord, is Parolles.\n\nLAFEU:\nYou beg more than 'word,' then. Cox my passion!\ngive me your hand. How does your drum?\n\nPAROLLES:\nO my good lord, you were the first that found me!\n\nLAFEU:\nWas I, in sooth? and I was the first that lost thee.\n\nPAROLLES:\nIt lies in you, my lord, to bring me in some grace,\nfor you did bring me out.\n\nLAFEU:\nOut upon thee, knave! dost thou put upon me at once\nboth the office of God and the devil? One brings\nthee in grace and the other brings thee out.\nThe king's coming; I know by his trumpets. Sirrah,\ninquire further after me; I had talk of you last\nnight: though you are a fool and a knave, you shall\neat; go to, follow.\n\nPAROLLES:\nI praise God for you.\n\nKING:\nWe lost a jewel of her; and our esteem\nWas made much poorer by it: but your son,\nAs mad in folly, lack'd the sense to know\nHer estimation home.\n\nCOUNTESS:\n'Tis past, my liege;\nAnd I beseech your majesty to make it\nNatural rebellion, done i' the blaze of youth;\nWhen oil and fire, too strong for reason's force,\nO'erbears it and burns on.\n\nKING:\nMy honour'd lady,\nI have forgiven and forgotten all;\nThough my revenges were high bent upon him,\nAnd watch'd the time to shoot.\n\nLAFEU:\nThis I must say,\nBut first I beg my pardon, the young lord\nDid to his majesty, his mother and his lady\nOffence of mighty note; but to himself\nThe greatest wrong of all. He lost a wife\nWhose beauty did astonish the survey\nOf richest eyes, whose words all ears took captive,\nWhose dear perfection hearts that scorn'd to serve\nHumbly call'd mistress.\n\nKING:\nPraising what is lost\nMakes the remembrance dear. Well, call him hither;\nWe are reconciled, and the first view shall kill\nAll repetition: let him not ask our pardon;\nThe nature of his great offence is dead,\nAnd deeper than oblivion we do bury\nThe incensing relics of it: let him approach,\nA stranger, no offender; and inform him\nSo 'tis our will he should.\n\nGentleman:\nI shall, my liege.\n\nKING:\nWhat says he to your daughter? have you spoke?\n\nLAFEU:\nAll that he is hath reference to your highness.\n\nKING:\nThen shall we have a match. I have letters sent me\nThat set him high in fame.\n\nLAFEU:\nHe looks well on't.\n\nKING:\nI am not a day of season,\nFor thou mayst see a sunshine and a hail\nIn me at once: but to the brightest beams\nDistracted clouds give way; so stand thou forth;\nThe time is fair again.\n\nBERTRAM:\nMy high-repented blames,\nDear sovereign, pardon to me.\n\nKING:\nAll is whole;\nNot one word more of the consumed time.\nLet's take the instant by the forward top;\nFor we are old, and on our quick'st decrees\nThe inaudible and noiseless foot of Time\nSteals ere we can effect them. You remember\nThe daughter of this lord?\n\nBERTRAM:\nAdmiringly, my liege, at first\nI stuck my choice upon her, ere my heart\nDurst make too bold a herald of my tongue\nWhere the impression of mine eye infixing,\nContempt his scornful perspective did lend me,\nWhich warp'd the line of every other favour;\nScorn'd a fair colour, or express'd it stolen;\nExtended or contracted all proportions\nTo a most hideous object: thence it came\nThat she whom all men praised and whom myself,\nSince I have lost, have loved, was in mine eye\nThe dust that did offend it.\n\nKING:\nWell excused:\nThat thou didst love her, strikes some scores away\nFrom the great compt: but love that comes too late,\nLike a remorseful pardon slowly carried,\nTo the great sender turns a sour offence,\nCrying, 'That's good that's gone.' Our rash faults\nMake trivial price of serious things we have,\nNot knowing them until we know their grave:\nOft our displeasures, to ourselves unjust,\nDestroy our friends and after weep their dust\nOur own love waking cries to see what's done,\nWhile shame full late sleeps out the afternoon.\nBe this sweet Helen's knell, and now forget her.\nSend forth your amorous token for fair Maudlin:\nThe main consents are had; and here we'll stay\nTo see our widower's second marriage-day.\n\nCOUNTESS:\nWhich better than the first, O dear heaven, bless!\nOr, ere they meet, in me, O nature, cesse!\n\nLAFEU:\nCome on, my son, in whom my house's name\nMust be digested, give a favour from you\nTo sparkle in the spirits of my daughter,\nThat she may quickly come.\nBy my old beard,\nAnd every hair that's on't, Helen, that's dead,\nWas a sweet creature: such a ring as this,\nThe last that e'er I took her at court,\nI saw upon her finger.\n\nBERTRAM:\nHers it was not.\n\nKING:\nNow, pray you, let me see it; for mine eye,\nWhile I was speaking, oft was fasten'd to't.\nThis ring was mine; and, when I gave it Helen,\nI bade her, if her fortunes ever stood\nNecessitied to help, that by this token\nI would relieve her. Had you that craft, to reave\nher\nOf what should stead her most?\n\nBERTRAM:\nMy gracious sovereign,\nHowe'er it pleases you to take it so,\nThe ring was never hers.\n\nCOUNTESS:\nSon, on my life,\nI have seen her wear it; and she reckon'd it\nAt her life's rate.\n\nLAFEU:\nI am sure I saw her wear it.\n\nBERTRAM:\nYou are deceived, my lord; she never saw it:\nIn Florence was it from a casement thrown me,\nWrapp'd in a paper, which contain'd the name\nOf her that threw it: noble she was, and thought\nI stood engaged: but when I had subscribed\nTo mine own fortune and inform'd her fully\nI could not answer in that course of honour\nAs she had made the overture, she ceased\nIn heavy satisfaction and would never\nReceive the ring again.\n\nKING:\nPlutus himself,\nThat knows the tinct and multiplying medicine,\nHath not in nature's mystery more science\nThan I have in this ring: 'twas mine, 'twas Helen's,\nWhoever gave it you. Then, if you know\nThat you are well acquainted with yourself,\nConfess 'twas hers, and by what rough enforcement\nYou got it from her: she call'd the saints to surety\nThat she would never put it from her finger,\nUnless she gave it to yourself in bed,\nWhere you have never come, or sent it us\nUpon her great disaster.\n\nBERTRAM:\nShe never saw it.\n\nKING:\nThou speak'st it falsely, as I love mine honour;\nAnd makest conjectural fears to come into me\nWhich I would fain shut out. If it should prove\nThat thou art so inhuman,--'twill not prove so;--\nAnd yet I know not: thou didst hate her deadly,\nAnd she is dead; which nothing, but to close\nHer eyes myself, could win me to believe,\nMore than to see this ring. Take him away.\nMy fore-past proofs, howe'er the matter fall,\nShall tax my fears of little vanity,\nHaving vainly fear'd too little. Away with him!\nWe'll sift this matter further.\n\nBERTRAM:\nIf you shall prove\nThis ring was ever hers, you shall as easy\nProve that I husbanded her bed in Florence,\nWhere yet she never was.\n\nKING:\nI am wrapp'd in dismal thinkings.\n\nGentleman:\nGracious sovereign,\nWhether I have been to blame or no, I know not:\nHere's a petition from a Florentine,\nWho hath for four or five removes come short\nTo tender it herself. I undertook it,\nVanquish'd thereto by the fair grace and speech\nOf the poor suppliant, who by this I know\nIs here attending: her business looks in her\nWith an importing visage; and she told me,\nIn a sweet verbal brief, it did concern\nYour highness with herself.\n\nKING:\n\nLAFEU:\nI will buy me a son-in-law in a fair, and toll for\nthis: I'll none of him.\n\nKING:\nThe heavens have thought well on thee Lafeu,\nTo bring forth this discovery. Seek these suitors:\nGo speedily and bring again the count.\nI am afeard the life of Helen, lady,\nWas foully snatch'd.\n\nCOUNTESS:\nNow, justice on the doers!\n\nKING:\nI wonder, sir, sith wives are monsters to you,\nAnd that you fly them as you swear them lordship,\nYet you desire to marry.\nWhat woman's that?\n\nDIANA:\nI am, my lord, a wretched Florentine,\nDerived from the ancient Capilet:\nMy suit, as I do understand, you know,\nAnd therefore know how far I may be pitied.\n\nWidow:\nI am her mother, sir, whose age and honour\nBoth suffer under this complaint we bring,\nAnd both shall cease, without your remedy.\n\nKING:\nCome hither, count; do you know these women?\n\nBERTRAM:\nMy lord, I neither can nor will deny\nBut that I know them: do they charge me further?\n\nDIANA:\nWhy do you look so strange upon your wife?\n\nBERTRAM:\nShe's none of mine, my lord.\n\nDIANA:\nIf you shall marry,\nYou give away this hand, and that is mine;\nYou give away heaven's vows, and those are mine;\nYou give away myself, which is known mine;\nFor I by vow am so embodied yours,\nThat she which marries you must marry me,\nEither both or none.\n\nLAFEU:\nYour reputation comes too short for my daughter; you\nare no husband for her.\n\nBERTRAM:\nMy lord, this is a fond and desperate creature,\nWhom sometime I have laugh'd with: let your highness\nLay a more noble thought upon mine honour\nThan for to think that I would sink it here.\n\nKING:\nSir, for my thoughts, you have them ill to friend\nTill your deeds gain them: fairer prove your honour\nThan in my thought it lies.\n\nDIANA:\nGood my lord,\nAsk him upon his oath, if he does think\nHe had not my virginity.\n\nKING:\nWhat say'st thou to her?\n\nBERTRAM:\nShe's impudent, my lord,\nAnd was a common gamester to the camp.\n\nDIANA:\nHe does me wrong, my lord; if I were so,\nHe might have bought me at a common price:\nDo not believe him. O, behold this ring,\nWhose high respect and rich validity\nDid lack a parallel; yet for all that\nHe gave it to a commoner o' the camp,\nIf I be one.\n\nCOUNTESS:\nHe blushes, and 'tis it:\nOf six preceding ancestors, that gem,\nConferr'd by testament to the sequent issue,\nHath it been owed and worn. This is his wife;\nThat ring's a thousand proofs.\n\nKING:\nMethought you said\nYou saw one here in court could witness it.\n\nDIANA:\nI did, my lord, but loath am to produce\nSo bad an instrument: his name's Parolles.\n\nLAFEU:\nI saw the man to-day, if man he be.\n\nKING:\nFind him, and bring him hither.\n\nBERTRAM:\nWhat of him?\nHe's quoted for a most perfidious slave,\nWith all the spots o' the world tax'd and debosh'd;\nWhose nature sickens but to speak a truth.\nAm I or that or this for what he'll utter,\nThat will speak any thing?\n\nKING:\nShe hath that ring of yours.\n\nBERTRAM:\nI think she has: certain it is I liked her,\nAnd boarded her i' the wanton way of youth:\nShe knew her distance and did angle for me,\nMadding my eagerness with her restraint,\nAs all impediments in fancy's course\nAre motives of more fancy; and, in fine,\nHer infinite cunning, with her modern grace,\nSubdued me to her rate: she got the ring;\nAnd I had that which any inferior might\nAt market-price have bought.\n\nDIANA:\nI must be patient:\nYou, that have turn'd off a first so noble wife,\nMay justly diet me. I pray you yet;\nSince you lack virtue, I will lose a husband;\nSend for your ring, I will return it home,\nAnd give me mine again.\n\nBERTRAM:\nI have it not.\n\nKING:\nWhat ring was yours, I pray you?\n\nDIANA:\nSir, much like\nThe same upon your finger.\n\nKING:\nKnow you this ring? this ring was his of late.\n\nDIANA:\nAnd this was it I gave him, being abed.\n\nKING:\nThe story then goes false, you threw it him\nOut of a casement.\n\nDIANA:\nI have spoke the truth.\n\nBERTRAM:\nMy lord, I do confess the ring was hers.\n\nKING:\nYou boggle shrewdly, every feather stars you.\nIs this the man you speak of?\n\nDIANA:\nAy, my lord.\n\nKING:\nTell me, sirrah, but tell me true, I charge you,\nNot fearing the displeasure of your master,\nWhich on your just proceeding I'll keep off,\nBy him and by this woman here what know you?\n\nPAROLLES:\nSo please your majesty, my master hath been an\nhonourable gentleman: tricks he hath had in him,\nwhich gentlemen have.\n\nKING:\nCome, come, to the purpose: did he love this woman?\n\nPAROLLES:\nFaith, sir, he did love her; but how?\n\nKING:\nHow, I pray you?\n\nPAROLLES:\nHe did love her, sir, as a gentleman loves a woman.\n\nKING:\nHow is that?\n\nPAROLLES:\nHe loved her, sir, and loved her not.\n\nKING:\nAs thou art a knave, and no knave. What an\nequivocal companion is this!\n\nPAROLLES:\nI am a poor man, and at your majesty's command.\n\nLAFEU:\nHe's a good drum, my lord, but a naughty orator.\n\nDIANA:\nDo you know he promised me marriage?\n\nPAROLLES:\nFaith, I know more than I'll speak.\n\nKING:\nBut wilt thou not speak all thou knowest?\n\nPAROLLES:\nYes, so please your majesty. I did go between them,\nas I said; but more than that, he loved her: for\nindeed he was mad for her, and talked of Satan and\nof Limbo and of Furies and I know not what: yet I\nwas in that credit with them at that time that I\nknew of their going to bed, and of other motions,\nas promising her marriage, and things which would\nderive me ill will to speak of; therefore I will not\nspeak what I know.\n\nKING:\nThou hast spoken all already, unless thou canst say\nthey are married: but thou art too fine in thy\nevidence; therefore stand aside.\nThis ring, you say, was yours?\n\nDIANA:\nAy, my good lord.\n\nKING:\nWhere did you buy it? or who gave it you?\n\nDIANA:\nIt was not given me, nor I did not buy it.\n\nKING:\nWho lent it you?\n\nDIANA:\nIt was not lent me neither.\n\nKING:\nWhere did you find it, then?\n\nDIANA:\nI found it not.\n\nKING:\nIf it were yours by none of all these ways,\nHow could you give it him?\n\nDIANA:\nI never gave it him.\n\nLAFEU:\nThis woman's an easy glove, my lord; she goes off\nand on at pleasure.\n\nKING:\nThis ring was mine; I gave it his first wife.\n\nDIANA:\nIt might be yours or hers, for aught I know.\n\nKING:\nTake her away; I do not like her now;\nTo prison with her: and away with him.\nUnless thou tell'st me where thou hadst this ring,\nThou diest within this hour.\n\nDIANA:\nI'll never tell you.\n\nKING:\nTake her away.\n\nDIANA:\nI'll put in bail, my liege.\n\nKING:\nI think thee now some common customer.\n\nDIANA:\nBy Jove, if ever I knew man, 'twas you.\n\nKING:\nWherefore hast thou accused him all this while?\n\nDIANA:\nBecause he's guilty, and he is not guilty:\nHe knows I am no maid, and he'll swear to't;\nI'll swear I am a maid, and he knows not.\nGreat king, I am no strumpet, by my life;\nI am either maid, or else this old man's wife.\n\nKING:\nShe does abuse our ears: to prison with her.\n\nDIANA:\nGood mother, fetch my bail. Stay, royal sir:\nThe jeweller that owes the ring is sent for,\nAnd he shall surety me. But for this lord,\nWho hath abused me, as he knows himself,\nThough yet he never harm'd me, here I quit him:\nHe knows himself my bed he hath defiled;\nAnd at that time he got his wife with child:\nDead though she be, she feels her young one kick:\nSo there's my riddle: one that's dead is quick:\nAnd now behold the meaning.\n\nKING:\nIs there no exorcist\nBeguiles the truer office of mine eyes?\nIs't real that I see?\n\nHELENA:\nNo, my good lord;\n'Tis but the shadow of a wife you see,\nThe name and not the thing.\n\nBERTRAM:\nBoth, both. O, pardon!\n\nHELENA:\nO my good lord, when I was like this maid,\nI found you wondrous kind. There is your ring;\nAnd, look you, here's your letter; this it says:\n'When from my finger you can get this ring\nAnd are by me with child,' &c. This is done:\nWill you be mine, now you are doubly won?\n\nBERTRAM:\nIf she, my liege, can make me know this clearly,\nI'll love her dearly, ever, ever dearly.\n\nHELENA:\nIf it appear not plain and prove untrue,\nDeadly divorce step between me and you!\nO my dear mother, do I see you living?\n\nLAFEU:\nMine eyes smell onions; I shall weep anon:\nGood Tom Drum, lend me a handkercher: so,\nI thank thee: wait on me home, I'll make sport with thee:\nLet thy courtesies alone, they are scurvy ones.\n\nKING:\nLet us from point to point this story know,\nTo make the even truth in pleasure flow.\nIf thou be'st yet a fresh uncropped flower,\nChoose thou thy husband, and I'll pay thy dower;\nFor I can guess that by thy honest aid\nThou keep'st a wife herself, thyself a maid.\nOf that and all the progress, more or less,\nResolvedly more leisure shall express:\nAll yet seems well; and if it end so meet,\nThe bitter past, more welcome is the sweet.\n\nKING:\nThe king's a beggar, now the play is done:\nAll is well ended, if this suit be won,\nThat you express content; which we will pay,\nWith strife to please you, day exceeding day:\nOurs be your patience then, and yours our parts;\nYour gentle hands lend us, and take our hearts.\n\n\nBUCKINGHAM:\nGood morrow, and well met. How have ye done\nSince last we saw in France?\n\nNORFOLK:\nI thank your grace,\nHealthful; and ever since a fresh admirer\nOf what I saw there.\n\nBUCKINGHAM:\nAn untimely ague\nStay'd me a prisoner in my chamber when\nThose suns of glory, those two lights of men,\nMet in the vale of Andren.\n\nNORFOLK:\n'Twixt Guynes and Arde:\nI was then present, saw them salute on horseback;\nBeheld them, when they lighted, how they clung\nIn their embracement, as they grew together;\nWhich had they, what four throned ones could have weigh'd\nSuch a compounded one?\n\nBUCKINGHAM:\nAll the whole time\nI was my chamber's prisoner.\n\nNORFOLK:\nThen you lost\nThe view of earthly glory: men might say,\nTill this time pomp was single, but now married\nTo one above itself. Each following day\nBecame the next day's master, till the last\nMade former wonders its. To-day the French,\nAll clinquant, all in gold, like heathen gods,\nShone down the English; and, to-morrow, they\nMade Britain India: every man that stood\nShow'd like a mine. Their dwarfish pages were\nAs cherubins, all guilt: the madams too,\nNot used to toil, did almost sweat to bear\nThe pride upon them, that their very labour\nWas to them as a painting: now this masque\nWas cried incomparable; and the ensuing night\nMade it a fool and beggar. The two kings,\nEqual in lustre, were now best, now worst,\nAs presence did present them; him in eye,\nStill him in praise: and, being present both\n'Twas said they saw but one; and no discerner\nDurst wag his tongue in censure. When these suns--\nFor so they phrase 'em--by their heralds challenged\nThe noble spirits to arms, they did perform\nBeyond thought's compass; that former fabulous story,\nBeing now seen possible enough, got credit,\nThat Bevis was believed.\n\nBUCKINGHAM:\nO, you go far.\n\nNORFOLK:\nAs I belong to worship and affect\nIn honour honesty, the tract of every thing\nWould by a good discourser lose some life,\nWhich action's self was tongue to. All was royal;\nTo the disposing of it nought rebell'd.\nOrder gave each thing view; the office did\nDistinctly his full function.\n\nBUCKINGHAM:\nWho did guide,\nI mean, who set the body and the limbs\nOf this great sport together, as you guess?\n\nNORFOLK:\nOne, certes, that promises no element\nIn such a business.\n\nBUCKINGHAM:\nI pray you, who, my lord?\n\nNORFOLK:\nAll this was order'd by the good discretion\nOf the right reverend Cardinal of York.\n\nBUCKINGHAM:\nThe devil speed him! no man's pie is freed\nFrom his ambitious finger. What had he\nTo do in these fierce vanities? I wonder\nThat such a keech can with his very bulk\nTake up the rays o' the beneficial sun\nAnd keep it from the earth.\n\nNORFOLK:\nSurely, sir,\nThere's in him stuff that puts him to these ends;\nFor, being not propp'd by ancestry, whose grace\nChalks successors their way, nor call'd upon\nFor high feats done to the crown; neither allied\nFor eminent assistants; but, spider-like,\nOut of his self-drawing web, he gives us note,\nThe force of his own merit makes his way\nA gift that heaven gives for him, which buys\nA place next to the king.\n\nABERGAVENNY:\nI cannot tell\nWhat heaven hath given him,--let some graver eye\nPierce into that; but I can see his pride\nPeep through each part of him: whence has he that,\nIf not from hell? the devil is a niggard,\nOr has given all before, and he begins\nA new hell in himself.\n\nBUCKINGHAM:\nWhy the devil,\nUpon this French going out, took he upon him,\nWithout the privity o' the king, to appoint\nWho should attend on him? He makes up the file\nOf all the gentry; for the most part such\nTo whom as great a charge as little honour\nHe meant to lay upon: and his own letter,\nThe honourable board of council out,\nMust fetch him in the papers.\n\nABERGAVENNY:\nI do know\nKinsmen of mine, three at the least, that have\nBy this so sickened their estates, that never\nThey shall abound as formerly.\n\nBUCKINGHAM:\nO, many\nHave broke their backs with laying manors on 'em\nFor this great journey. What did this vanity\nBut minister communication of\nA most poor issue?\n\nNORFOLK:\nGrievingly I think,\nThe peace between the French and us not values\nThe cost that did conclude it.\n\nBUCKINGHAM:\nEvery man,\nAfter the hideous storm that follow'd, was\nA thing inspired; and, not consulting, broke\nInto a general prophecy; That this tempest,\nDashing the garment of this peace, aboded\nThe sudden breach on't.\n\nNORFOLK:\nWhich is budded out;\nFor France hath flaw'd the league, and hath attach'd\nOur merchants' goods at Bourdeaux.\n\nABERGAVENNY:\nIs it therefore\nThe ambassador is silenced?\n\nNORFOLK:\nMarry, is't.\n\nABERGAVENNY:\nA proper title of a peace; and purchased\nAt a superfluous rate!\n\nBUCKINGHAM:\nWhy, all this business\nOur reverend cardinal carried.\n\nNORFOLK:\nLike it your grace,\nThe state takes notice of the private difference\nBetwixt you and the cardinal. I advise you--\nAnd take it from a heart that wishes towards you\nHonour and plenteous safety--that you read\nThe cardinal's malice and his potency\nTogether; to consider further that\nWhat his high hatred would effect wants not\nA minister in his power. You know his nature,\nThat he's revengeful, and I know his sword\nHath a sharp edge: it's long and, 't may be said,\nIt reaches far, and where 'twill not extend,\nThither he darts it. Bosom up my counsel,\nYou'll find it wholesome. Lo, where comes that rock\nThat I advise your shunning.\n\nCARDINAL WOLSEY:\nThe Duke of Buckingham's surveyor, ha?\nWhere's his examination?\n\nFirst Secretary:\nHere, so please you.\n\nCARDINAL WOLSEY:\nIs he in person ready?\n\nFirst Secretary:\nAy, please your grace.\n\nCARDINAL WOLSEY:\nWell, we shall then know more; and Buckingham\nShall lessen this big look.\n\nBUCKINGHAM:\nThis butcher's cur is venom-mouth'd, and I\nHave not the power to muzzle him; therefore best\nNot wake him in his slumber. A beggar's book\nOutworths a noble's blood.\n\nNORFOLK:\nWhat, are you chafed?\nAsk God for temperance; that's the appliance only\nWhich your disease requires.\n\nBUCKINGHAM:\nI read in's looks\nMatter against me; and his eye reviled\nMe, as his abject object: at this instant\nHe bores me with some trick: he's gone to the king;\nI'll follow and outstare him.\n\nNORFOLK:\nStay, my lord,\nAnd let your reason with your choler question\nWhat 'tis you go about: to climb steep hills\nRequires slow pace at first: anger is like\nA full-hot horse, who being allow'd his way,\nSelf-mettle tires him. Not a man in England\nCan advise me like you: be to yourself\nAs you would to your friend.\n\nBUCKINGHAM:\nI'll to the king;\nAnd from a mouth of honour quite cry down\nThis Ipswich fellow's insolence; or proclaim\nThere's difference in no persons.\n\nNORFOLK:\nBe advised;\nHeat not a furnace for your foe so hot\nThat it do singe yourself: we may outrun,\nBy violent swiftness, that which we run at,\nAnd lose by over-running. Know you not,\nThe fire that mounts the liquor til run o'er,\nIn seeming to augment it wastes it? Be advised:\nI say again, there is no English soul\nMore stronger to direct you than yourself,\nIf with the sap of reason you would quench,\nOr but allay, the fire of passion.\n\nBUCKINGHAM:\nSir,\nI am thankful to you; and I'll go along\nBy your prescription: but this top-proud fellow,\nWhom from the flow of gall I name not but\nFrom sincere motions, by intelligence,\nAnd proofs as clear as founts in July when\nWe see each grain of gravel, I do know\nTo be corrupt and treasonous.\n\nNORFOLK:\nSay not 'treasonous.'\n\nBUCKINGHAM:\nTo the king I'll say't; and make my vouch as strong\nAs shore of rock. Attend. This holy fox,\nOr wolf, or both,--for he is equal ravenous\nAs he is subtle, and as prone to mischief\nAs able to perform't; his mind and place\nInfecting one another, yea, reciprocally--\nOnly to show his pomp as well in France\nAs here at home, suggests the king our master\nTo this last costly treaty, the interview,\nThat swallow'd so much treasure, and like a glass\nDid break i' the rinsing.\n\nNORFOLK:\nFaith, and so it did.\n\nBUCKINGHAM:\nPray, give me favour, sir. This cunning cardinal\nThe articles o' the combination drew\nAs himself pleased; and they were ratified\nAs he cried 'Thus let be': to as much end\nAs give a crutch to the dead: but our count-cardinal\nHas done this, and 'tis well; for worthy Wolsey,\nWho cannot err, he did it. Now this follows,--\nWhich, as I take it, is a kind of puppy\nTo the old dam, treason,--Charles the emperor,\nUnder pretence to see the queen his aunt--\nFor 'twas indeed his colour, but he came\nTo whisper Wolsey,--here makes visitation:\nHis fears were, that the interview betwixt\nEngland and France might, through their amity,\nBreed him some prejudice; for from this league\nPeep'd harms that menaced him: he privily\nDeals with our cardinal; and, as I trow,--\nWhich I do well; for I am sure the emperor\nPaid ere he promised; whereby his suit was granted\nEre it was ask'd; but when the way was made,\nAnd paved with gold, the emperor thus desired,\nThat he would please to alter the king's course,\nAnd break the foresaid peace. Let the king know,\nAs soon he shall by me, that thus the cardinal\nDoes buy and sell his honour as he pleases,\nAnd for his own advantage.\n\nNORFOLK:\nI am sorry\nTo hear this of him; and could wish he were\nSomething mistaken in't.\n\nBUCKINGHAM:\nNo, not a syllable:\nI  do pronounce him in that very shape\nHe shall appear in proof.\n\nBRANDON:\nYour office, sergeant; execute it.\n\nSergeant:\nSir,\nMy lord the Duke of Buckingham, and Earl\nOf Hereford, Stafford, and Northampton, I\nArrest thee of high treason, in the name\nOf our most sovereign king.\n\nBUCKINGHAM:\nLo, you, my lord,\nThe net has fall'n upon me! I shall perish\nUnder device and practise.\n\nBRANDON:\nI am sorry\nTo see you ta'en from liberty, to look on\nThe business present: 'tis his highness' pleasure\nYou shall to the Tower.\n\nBUCKINGHAM:\nIt will help me nothing\nTo plead mine innocence; for that dye is on me\nWhich makes my whitest part black. The will of heaven\nBe done in this and all things! I obey.\nO my Lord Abergavenny, fare you well!\n\nBRANDON:\nNay, he must bear you company. The king\nIs pleased you shall to the Tower, till you know\nHow he determines further.\n\nABERGAVENNY:\nAs the duke said,\nThe will of heaven be done, and the king's pleasure\nBy me obey'd!\n\nBRANDON:\nHere is a warrant from\nThe king to attach Lord Montacute; and the bodies\nOf the duke's confessor, John de la Car,\nOne Gilbert Peck, his chancellor--\n\nBUCKINGHAM:\nSo, so;\nThese are the limbs o' the plot: no more, I hope.\n\nBRANDON:\nA monk o' the Chartreux.\n\nBUCKINGHAM:\nO, Nicholas Hopkins?\n\nBRANDON:\nHe.\n\nBUCKINGHAM:\nMy surveyor is false; the o'er-great cardinal\nHath show'd him gold; my life is spann'd already:\nI am the shadow of poor Buckingham,\nWhose figure even this instant cloud puts on,\nBy darkening my clear sun. My lord, farewell.\n\nKING HENRY VIII:\nMy life itself, and the best heart of it,\nThanks you for this great care: I stood i' the level\nOf a full-charged confederacy, and give thanks\nTo you that choked it. Let be call'd before us\nThat gentleman of Buckingham's; in person\nI'll hear him his confessions justify;\nAnd point by point the treasons of his master\nHe shall again relate.\n\nQUEEN KATHARINE:\nNay, we must longer kneel: I am a suitor.\n\nKING HENRY VIII:\nArise, and take place by us: half your suit\nNever name to us; you have half our power:\nThe other moiety, ere you ask, is given;\nRepeat your will and take it.\n\nQUEEN KATHARINE:\nThank your majesty.\nThat you would love yourself, and in that love\nNot unconsider'd leave your honour, nor\nThe dignity of your office, is the point\nOf my petition.\n\nKING HENRY VIII:\nLady mine, proceed.\n\nQUEEN KATHARINE:\nI am solicited, not by a few,\nAnd those of true condition, that your subjects\nAre in great grievance: there have been commissions\nSent down among 'em, which hath flaw'd the heart\nOf all their loyalties: wherein, although,\nMy good lord cardinal, they vent reproaches\nMost bitterly on you, as putter on\nOf these exactions, yet the king our master--\nWhose honour heaven shield from soil!--even he\nescapes not\nLanguage unmannerly, yea, such which breaks\nThe sides of loyalty, and almost appears\nIn loud rebellion.\n\nNORFOLK:\nNot almost appears,\nIt doth appear; for, upon these taxations,\nThe clothiers all, not able to maintain\nThe many to them longing, have put off\nThe spinsters, carders, fullers, weavers, who,\nUnfit for other life, compell'd by hunger\nAnd lack of other means, in desperate manner\nDaring the event to the teeth, are all in uproar,\nAnd danger serves among then!\n\nKING HENRY VIII:\nTaxation!\nWherein? and what taxation? My lord cardinal,\nYou that are blamed for it alike with us,\nKnow you of this taxation?\n\nCARDINAL WOLSEY:\nPlease you, sir,\nI know but of a single part, in aught\nPertains to the state; and front but in that file\nWhere others tell steps with me.\n\nQUEEN KATHARINE:\nNo, my lord,\nYou know no more than others; but you frame\nThings that are known alike; which are not wholesome\nTo those which would not know them, and yet must\nPerforce be their acquaintance. These exactions,\nWhereof my sovereign would have note, they are\nMost pestilent to the bearing; and, to bear 'em,\nThe back is sacrifice to the load. They say\nThey are devised by you; or else you suffer\nToo hard an exclamation.\n\nKING HENRY VIII:\nStill exaction!\nThe nature of it? in what kind, let's know,\nIs this exaction?\n\nQUEEN KATHARINE:\nI am much too venturous\nIn tempting of your patience; but am bolden'd\nUnder your promised pardon. The subjects' grief\nComes through commissions, which compel from each\nThe sixth part of his substance, to be levied\nWithout delay; and the pretence for this\nIs named, your wars in France: this makes bold mouths:\nTongues spit their duties out, and cold hearts freeze\nAllegiance in them; their curses now\nLive where their prayers did: and it's come to pass,\nThis tractable obedience is a slave\nTo each incensed will. I would your highness\nWould give it quick consideration, for\nThere is no primer business.\n\nKING HENRY VIII:\nBy my life,\nThis is against our pleasure.\n\nCARDINAL WOLSEY:\nAnd for me,\nI have no further gone in this than by\nA single voice; and that not pass'd me but\nBy learned approbation of the judges. If I am\nTraduced by ignorant tongues, which neither know\nMy faculties nor person, yet will be\nThe chronicles of my doing, let me say\n'Tis but the fate of place, and the rough brake\nThat virtue must go through. We must not stint\nOur necessary actions, in the fear\nTo cope malicious censurers; which ever,\nAs ravenous fishes, do a vessel follow\nThat is new-trimm'd, but benefit no further\nThan vainly longing. What we oft do best,\nBy sick interpreters, once weak ones, is\nNot ours, or not allow'd; what worst, as oft,\nHitting a grosser quality, is cried up\nFor our best act. If we shall stand still,\nIn fear our motion will be mock'd or carp'd at,\nWe should take root here where we sit, or sit\nState-statues only.\n\nKING HENRY VIII:\nThings done well,\nAnd with a care, exempt themselves from fear;\nThings done without example, in their issue\nAre to be fear'd. Have you a precedent\nOf this commission? I believe, not any.\nWe must not rend our subjects from our laws,\nAnd stick them in our will. Sixth part of each?\nA trembling contribution! Why, we take\nFrom every tree lop, bark, and part o' the timber;\nAnd, though we leave it with a root, thus hack'd,\nThe air will drink the sap. To every county\nWhere this is question'd send our letters, with\nFree pardon to each man that has denied\nThe force of this commission: pray, look to't;\nI put it to your care.\n\nCARDINAL WOLSEY:\nA word with you.\nLet there be letters writ to every shire,\nOf the king's grace and pardon. The grieved commons\nHardly conceive of me; let it be noised\nThat through our intercession this revokement\nAnd pardon comes: I shall anon advise you\nFurther in the proceeding.\n\nQUEEN KATHARINE:\nI am sorry that the Duke of Buckingham\nIs run in your displeasure.\n\nKING HENRY VIII:\nIt grieves many:\nThe gentleman is learn'd, and a most rare speaker;\nTo nature none more bound; his training such,\nThat he may furnish and instruct great teachers,\nAnd never seek for aid out of himself. Yet see,\nWhen these so noble benefits shall prove\nNot well disposed, the mind growing once corrupt,\nThey turn to vicious forms, ten times more ugly\nThan ever they were fair. This man so complete,\nWho was enroll'd 'mongst wonders, and when we,\nAlmost with ravish'd listening, could not find\nHis hour of speech a minute; he, my lady,\nHath into monstrous habits put the graces\nThat once were his, and is become as black\nAs if besmear'd in hell. Sit by us; you shall hear--\nThis was his gentleman in trust--of him\nThings to strike honour sad. Bid him recount\nThe fore-recited practises; whereof\nWe cannot feel too little, hear too much.\n\nCARDINAL WOLSEY:\nStand forth, and with bold spirit relate what you,\nMost like a careful subject, have collected\nOut of the Duke of Buckingham.\n\nKING HENRY VIII:\nSpeak freely.\n\nSurveyor:\nFirst, it was usual with him, every day\nIt would infect his speech, that if the king\nShould without issue die, he'll carry it so\nTo make the sceptre his: these very words\nI've heard him utter to his son-in-law,\nLord Abergavenny; to whom by oath he menaced\nRevenge upon the cardinal.\n\nCARDINAL WOLSEY:\nPlease your highness, note\nThis dangerous conception in this point.\nNot friended by by his wish, to your high person\nHis will is most malignant; and it stretches\nBeyond you, to your friends.\n\nQUEEN KATHARINE:\nMy learn'd lord cardinal,\nDeliver all with charity.\n\nKING HENRY VIII:\nSpeak on:\nHow grounded he his title to the crown,\nUpon our fail? to this point hast thou heard him\nAt any time speak aught?\n\nSurveyor:\nHe was brought to this\nBy a vain prophecy of Nicholas Hopkins.\n\nKING HENRY VIII:\nWhat was that Hopkins?\n\nSurveyor:\nSir, a Chartreux friar,\nHis confessor, who fed him every minute\nWith words of sovereignty.\n\nKING HENRY VIII:\nHow know'st thou this?\n\nSurveyor:\nNot long before your highness sped to France,\nThe duke being at the Rose, within the parish\nSaint Lawrence Poultney, did of me demand\nWhat was the speech among the Londoners\nConcerning the French journey: I replied,\nMen fear'd the French would prove perfidious,\nTo the king's danger. Presently the duke\nSaid, 'twas the fear, indeed; and that he doubted\n'Twould prove the verity of certain words\nSpoke by a holy monk; 'that oft,' says he,\n'Hath sent to me, wishing me to permit\nJohn de la Car, my chaplain, a choice hour\nTo hear from him a matter of some moment:\nWhom after under the confession's seal\nHe solemnly had sworn, that what he spoke\nMy chaplain to no creature living, but\nTo me, should utter, with demure confidence\nThis pausingly ensued: neither the king nor's heirs,\nTell you the duke, shall prosper: bid him strive\nTo gain the love o' the commonalty: the duke\nShall govern England.'\n\nQUEEN KATHARINE:\nIf I know you well,\nYou were the duke's surveyor, and lost your office\nOn the complaint o' the tenants: take good heed\nYou charge not in your spleen a noble person\nAnd spoil your nobler soul: I say, take heed;\nYes, heartily beseech you.\n\nKING HENRY VIII:\nLet him on.\nGo forward.\n\nSurveyor:\nOn my soul, I'll speak but truth.\nI told my lord the duke, by the devil's illusions\nThe monk might be deceived; and that 'twas dangerous for him\nTo ruminate on this so far, until\nIt forged him some design, which, being believed,\nIt was much like to do: he answer'd, 'Tush,\nIt can do me no damage;' adding further,\nThat, had the king in his last sickness fail'd,\nThe cardinal's and Sir Thomas Lovell's heads\nShould have gone off.\n\nKING HENRY VIII:\nHa! what, so rank? Ah ha!\nThere's mischief in this man: canst thou say further?\n\nSurveyor:\nI can, my liege.\n\nKING HENRY VIII:\nProceed.\n\nSurveyor:\nBeing at Greenwich,\nAfter your highness had reproved the duke\nAbout Sir William Blomer,--\n\nKING HENRY VIII:\nI remember\nOf such a time: being my sworn servant,\nThe duke retain'd him his. But on; what hence?\n\nSurveyor:\n'If,' quoth he, 'I for this had been committed,\nAs, to the Tower, I thought, I would have play'd\nThe part my father meant to act upon\nThe usurper Richard; who, being at Salisbury,\nMade suit to come in's presence; which if granted,\nAs he made semblance of his duty, would\nHave put his knife to him.'\n\nKING HENRY VIII:\nA giant traitor!\n\nCARDINAL WOLSEY:\nNow, madam, may his highness live in freedom,\nand this man out of prison?\n\nQUEEN KATHARINE:\nGod mend all!\n\nKING HENRY VIII:\nThere's something more would out of thee; what say'st?\n\nSurveyor:\nAfter 'the duke his father,' with 'the knife,'\nHe stretch'd him, and, with one hand on his dagger,\nAnother spread on's breast, mounting his eyes\nHe did discharge a horrible oath; whose tenor\nWas,--were he evil used, he would outgo\nHis father by as much as a performance\nDoes an irresolute purpose.\n\nKING HENRY VIII:\nThere's his period,\nTo sheathe his knife in us. He is attach'd;\nCall him to present trial: if he may\nFind mercy in the law, 'tis his: if none,\nLet him not seek 't of us: by day and night,\nHe's traitor to the height.\n\nChamberlain:\nIs't possible the spells of France should juggle\nMen into such strange mysteries?\n\nSANDS:\nNew customs,\nThough they be never so ridiculous,\nNay, let 'em be unmanly, yet are follow'd.\n\nChamberlain:\nAs far as I see, all the good our English\nHave got by the late voyage is but merely\nA fit or two o' the face; but they are shrewd ones;\nFor when they hold 'em, you would swear directly\nTheir very noses had been counsellors\nTo Pepin or Clotharius, they keep state so.\n\nSANDS:\nThey have all new legs, and lame ones: one would take it,\nThat never saw 'em pace before, the spavin\nOr springhalt reign'd among 'em.\n\nChamberlain:\nDeath! my lord,\nTheir clothes are after such a pagan cut too,\nThat, sure, they've worn out Christendom.\nHow now!\nWhat news, Sir Thomas Lovell?\n\nLOVELL:\nFaith, my lord,\nI hear of none, but the new proclamation\nThat's clapp'd upon the court-gate.\n\nChamberlain:\nWhat is't for?\n\nLOVELL:\nThe reformation of our travell'd gallants,\nThat fill the court with quarrels, talk, and tailors.\n\nChamberlain:\nI'm glad 'tis there: now I would pray our monsieurs\nTo think an English courtier may be wise,\nAnd never see the Louvre.\n\nLOVELL:\nThey must either,\nFor so run the conditions, leave those remnants\nOf fool and feather that they got in France,\nWith all their honourable point of ignorance\nPertaining thereunto, as fights and fireworks,\nAbusing better men than they can be,\nOut of a foreign wisdom, renouncing clean\nThe faith they have in tennis, and tall stockings,\nShort blister'd breeches, and those types of travel,\nAnd understand again like honest men;\nOr pack to their old playfellows: there, I take it,\nThey may, 'cum privilegio,' wear away\nThe lag end of their lewdness and be laugh'd at.\n\nSANDS:\n'Tis time to give 'em physic, their diseases\nAre grown so catching.\n\nChamberlain:\nWhat a loss our ladies\nWill have of these trim vanities!\n\nLOVELL:\nAy, marry,\nThere will be woe indeed, lords: the sly whoresons\nHave got a speeding trick to lay down ladies;\nA French song and a fiddle has no fellow.\n\nSANDS:\nThe devil fiddle 'em! I am glad they are going,\nFor, sure, there's no converting of 'em: now\nAn honest country lord, as I am, beaten\nA long time out of play, may bring his plainsong\nAnd have an hour of hearing; and, by'r lady,\nHeld current music too.\n\nChamberlain:\nWell said, Lord Sands;\nYour colt's tooth is not cast yet.\n\nSANDS:\nNo, my lord;\nNor shall not, while I have a stump.\n\nChamberlain:\nSir Thomas,\nWhither were you a-going?\n\nLOVELL:\nTo the cardinal's:\nYour lordship is a guest too.\n\nChamberlain:\nO, 'tis true:\nThis night he makes a supper, and a great one,\nTo many lords and ladies; there will be\nThe beauty of this kingdom, I'll assure you.\n\nLOVELL:\nThat churchman bears a bounteous mind indeed,\nA hand as fruitful as the land that feeds us;\nHis dews fall every where.\n\nChamberlain:\nNo doubt he's noble;\nHe had a black mouth that said other of him.\n\nSANDS:\nHe may, my lord; has wherewithal: in him\nSparing would show a worse sin than ill doctrine:\nMen of his way should be most liberal;\nThey are set here for examples.\n\nChamberlain:\nTrue, they are so:\nBut few now give so great ones. My barge stays;\nYour lordship shall along. Come, good Sir Thomas,\nWe shall be late else; which I would not be,\nFor I was spoke to, with Sir Henry Guildford\nThis night to be comptrollers.\n\nSANDS:\nI am your lordship's.\n\nGUILDFORD:\nLadies, a general welcome from his grace\nSalutes ye all; this night he dedicates\nTo fair content and you: none here, he hopes,\nIn all this noble bevy, has brought with her\nOne care abroad; he would have all as merry\nAs, first, good company, good wine, good welcome,\nCan make good people. O, my lord, you're tardy:\nThe very thought of this fair company\nClapp'd wings to me.\n\nChamberlain:\nYou are young, Sir Harry Guildford.\n\nSANDS:\nSir Thomas Lovell, had the cardinal\nBut half my lay thoughts in him, some of these\nShould find a running banquet ere they rested,\nI think would better please 'em: by my life,\nThey are a sweet society of fair ones.\n\nLOVELL:\nO, that your lordship were but now confessor\nTo one or two of these!\n\nSANDS:\nI would I were;\nThey should find easy penance.\n\nLOVELL:\nFaith, how easy?\n\nSANDS:\nAs easy as a down-bed would afford it.\n\nChamberlain:\nSweet ladies, will it please you sit? Sir Harry,\nPlace you that side; I'll take the charge of this:\nHis grace is entering. Nay, you must not freeze;\nTwo women placed together makes cold weather:\nMy Lord Sands, you are one will keep 'em waking;\nPray, sit between these ladies.\n\nSANDS:\nBy my faith,\nAnd thank your lordship. By your leave, sweet ladies:\nIf I chance to talk a little wild, forgive me;\nI had it from my father.\n\nANNE:\nWas he mad, sir?\n\nSANDS:\nO, very mad, exceeding mad, in love too:\nBut he would bite none; just as I do now,\nHe would kiss you twenty with a breath.\n\nChamberlain:\nWell said, my lord.\nSo, now you're fairly seated. Gentlemen,\nThe penance lies on you, if these fair ladies\nPass away frowning.\n\nSANDS:\nFor my little cure,\nLet me alone.\n\nCARDINAL WOLSEY:\nYou're welcome, my fair guests: that noble lady,\nOr gentleman, that is not freely merry,\nIs not my friend: this, to confirm my welcome;\nAnd to you all, good health.\n\nSANDS:\nYour grace is noble:\nLet me have such a bowl may hold my thanks,\nAnd save me so much talking.\n\nCARDINAL WOLSEY:\nMy Lord Sands,\nI am beholding to you: cheer your neighbours.\nLadies, you are not merry: gentlemen,\nWhose fault is this?\n\nSANDS:\nThe red wine first must rise\nIn their fair cheeks, my lord; then we shall have 'em\nTalk us to silence.\n\nANNE:\nYou are a merry gamester,\nMy Lord Sands.\n\nSANDS:\nYes, if I make my play.\nHere's to your ladyship: and pledge it, madam,\nFor 'tis to such a thing,--\n\nANNE:\nYou cannot show me.\n\nSANDS:\nI told your grace they would talk anon.\n\nCARDINAL WOLSEY:\nWhat's that?\n\nChamberlain:\nLook out there, some of ye.\n\nCARDINAL WOLSEY:\nWhat warlike voice,\nAnd to what end is this? Nay, ladies, fear not;\nBy all the laws of war you're privileged.\n\nChamberlain:\nHow now! what is't?\n\nServant:\nA noble troop of strangers;\nFor so they seem: they've left their barge and landed;\nAnd hither make, as great ambassadors\nFrom foreign princes.\n\nCARDINAL WOLSEY:\nGood lord chamberlain,\nGo, give 'em welcome; you can speak the French tongue;\nAnd, pray, receive 'em nobly, and conduct 'em\nInto our presence, where this heaven of beauty\nShall shine at full upon them. Some attend him.\nYou have now a broken banquet; but we'll mend it.\nA good digestion to you all: and once more\nI shower a welcome on ye; welcome all.\nA noble company! what are their pleasures?\n\nChamberlain:\nBecause they speak no English, thus they pray'd\nTo tell your grace, that, having heard by fame\nOf this so noble and so fair assembly\nThis night to meet here, they could do no less\nOut of the great respect they bear to beauty,\nBut leave their flocks; and, under your fair conduct,\nCrave leave to view these ladies and entreat\nAn hour of revels with 'em.\n\nCARDINAL WOLSEY:\nSay, lord chamberlain,\nThey have done my poor house grace; for which I pay 'em\nA thousand thanks, and pray 'em take their pleasures.\n\nKING HENRY VIII:\nThe fairest hand I ever touch'd! O beauty,\nTill now I never knew thee!\n\nCARDINAL WOLSEY:\nMy lord!\n\nChamberlain:\nYour grace?\n\nCARDINAL WOLSEY:\nPray, tell 'em thus much from me:\nThere should be one amongst 'em, by his person,\nMore worthy this place than myself; to whom,\nIf I but knew him, with my love and duty\nI would surrender it.\n\nChamberlain:\nI will, my lord.\n\nCARDINAL WOLSEY:\nWhat say they?\n\nChamberlain:\nSuch a one, they all confess,\nThere is indeed; which they would have your grace\nFind out, and he will take it.\n\nCARDINAL WOLSEY:\nLet me see, then.\nBy all your good leaves, gentlemen; here I'll make\nMy royal choice.\n\nKING HENRY VIII:\nYe have found him, cardinal:\nYou hold a fair assembly; you do well, lord:\nYou are a churchman, or, I'll tell you, cardinal,\nI should judge now unhappily.\n\nCARDINAL WOLSEY:\nI am glad\nYour grace is grown so pleasant.\n\nKING HENRY VIII:\nMy lord chamberlain,\nPrithee, come hither: what fair lady's that?\n\nChamberlain:\nAn't please your grace, Sir Thomas Bullen's daughter--\nThe Viscount Rochford,--one of her highness' women.\n\nKING HENRY VIII:\nBy heaven, she is a dainty one. Sweetheart,\nI were unmannerly, to take you out,\nAnd not to kiss you. A health, gentlemen!\nLet it go round.\n\nCARDINAL WOLSEY:\nSir Thomas Lovell, is the banquet ready\nI' the privy chamber?\n\nLOVELL:\nYes, my lord.\n\nCARDINAL WOLSEY:\nYour grace,\nI fear, with dancing is a little heated.\n\nKING HENRY VIII:\nI fear, too much.\n\nCARDINAL WOLSEY:\nThere's fresher air, my lord,\nIn the next chamber.\n\nKING HENRY VIII:\nLead in your ladies, every one: sweet partner,\nI must not yet forsake you: let's be merry:\nGood my lord cardinal, I have half a dozen healths\nTo drink to these fair ladies, and a measure\nTo lead 'em once again; and then let's dream\nWho's best in favour. Let the music knock it.\n\nFirst Gentleman:\nWhither away so fast?\n\nSecond Gentleman:\nO, God save ye!\nEven to the hall, to hear what shall become\nOf the great Duke of Buckingham.\n\nFirst Gentleman:\nI'll save you\nThat labour, sir. All's now done, but the ceremony\nOf bringing back the prisoner.\n\nSecond Gentleman:\nWere you there?\n\nFirst Gentleman:\nYes, indeed, was I.\n\nSecond Gentleman:\nPray, speak what has happen'd.\n\nFirst Gentleman:\nYou may guess quickly what.\n\nSecond Gentleman:\nIs he found guilty?\n\nFirst Gentleman:\nYes, truly is he, and condemn'd upon't.\n\nSecond Gentleman:\nI am sorry for't.\n\nFirst Gentleman:\nSo are a number more.\n\nSecond Gentleman:\nBut, pray, how pass'd it?\n\nFirst Gentleman:\nI'll tell you in a little. The great duke\nCame to the bar; where to his accusations\nHe pleaded still not guilty and alleged\nMany sharp reasons to defeat the law.\nThe king's attorney on the contrary\nUrged on the examinations, proofs, confessions\nOf divers witnesses; which the duke desired\nTo have brought viva voce to his face:\nAt which appear'd against him his surveyor;\nSir Gilbert Peck his chancellor; and John Car,\nConfessor to him; with that devil-monk,\nHopkins, that made this mischief.\n\nSecond Gentleman:\nThat was he\nThat fed him with his prophecies?\n\nFirst Gentleman:\nThe same.\nAll these accused him strongly; which he fain\nWould have flung from him, but, indeed, he could not:\nAnd so his peers, upon this evidence,\nHave found him guilty of high treason. Much\nHe spoke, and learnedly, for life; but all\nWas either pitied in him or forgotten.\n\nSecond Gentleman:\nAfter all this, how did he bear himself?\n\nFirst Gentleman:\nWhen he was brought again to the bar, to hear\nHis knell rung out, his judgment, he was stirr'd\nWith such an agony, he sweat extremely,\nAnd something spoke in choler, ill, and hasty:\nBut he fell to himself again, and sweetly\nIn all the rest show'd a most noble patience.\n\nSecond Gentleman:\nI do not think he fears death.\n\nFirst Gentleman:\nSure, he does not:\nHe never was so womanish; the cause\nHe may a little grieve at.\n\nSecond Gentleman:\nCertainly\nThe cardinal is the end of this.\n\nFirst Gentleman:\n'Tis likely,\nBy all conjectures: first, Kildare's attainder,\nThen deputy of Ireland; who removed,\nEarl Surrey was sent thither, and in haste too,\nLest he should help his father.\n\nSecond Gentleman:\nThat trick of state\nWas a deep envious one.\n\nFirst Gentleman:\nAt his return\nNo doubt he will requite it. This is noted,\nAnd generally, whoever the king favours,\nThe cardinal instantly will find employment,\nAnd far enough from court too.\n\nSecond Gentleman:\nAll the commons\nHate him perniciously, and, o' my conscience,\nWish him ten fathom deep: this duke as much\nThey love and dote on; call him bounteous Buckingham,\nThe mirror of all courtesy;--\n\nFirst Gentleman:\nStay there, sir,\nAnd see the noble ruin'd man you speak of.\n\nSecond Gentleman:\nLet's stand close, and behold him.\n\nBUCKINGHAM:\nAll good people,\nYou that thus far have come to pity me,\nHear what I say, and then go home and lose me.\nI have this day received a traitor's judgment,\nAnd by that name must die: yet, heaven bear witness,\nAnd if I have a conscience, let it sink me,\nEven as the axe falls, if I be not faithful!\nThe law I bear no malice for my death;\n'T has done, upon the premises, but justice:\nBut those that sought it I could wish more Christians:\nBe what they will, I heartily forgive 'em:\nYet let 'em look they glory not in mischief,\nNor build their evils on the graves of great men;\nFor then my guiltless blood must cry against 'em.\nFor further life in this world I ne'er hope,\nNor will I sue, although the king have mercies\nMore than I dare make faults. You few that loved me,\nAnd dare be bold to weep for Buckingham,\nHis noble friends and fellows, whom to leave\nIs only bitter to him, only dying,\nGo with me, like good angels, to my end;\nAnd, as the long divorce of steel falls on me,\nMake of your prayers one sweet sacrifice,\nAnd lift my soul to heaven. Lead on, o' God's name.\n\nLOVELL:\nI do beseech your grace, for charity,\nIf ever any malice in your heart\nWere hid against me, now to forgive me frankly.\n\nBUCKINGHAM:\nSir Thomas Lovell, I as free forgive you\nAs I would be forgiven: I forgive all;\nThere cannot be those numberless offences\n'Gainst me, that I cannot take peace with:\nno black envy\nShall mark my grave. Commend me to his grace;\nAnd if he speak of Buckingham, pray, tell him\nYou met him half in heaven: my vows and prayers\nYet are the king's; and, till my soul forsake,\nShall cry for blessings on him: may he live\nLonger than I have time to tell his years!\nEver beloved and loving may his rule be!\nAnd when old time shall lead him to his end,\nGoodness and he fill up one monument!\n\nLOVELL:\nTo the water side I must conduct your grace;\nThen give my charge up to Sir Nicholas Vaux,\nWho undertakes you to your end.\n\nVAUX:\nPrepare there,\nThe duke is coming: see the barge be ready;\nAnd fit it with such furniture as suits\nThe greatness of his person.\n\nBUCKINGHAM:\nNay, Sir Nicholas,\nLet it alone; my state now will but mock me.\nWhen I came hither, I was lord high constable\nAnd Duke of Buckingham; now, poor Edward Bohun:\nYet I am richer than my base accusers,\nThat never knew what truth meant: I now seal it;\nAnd with that blood will make 'em one day groan for't.\nMy noble father, Henry of Buckingham,\nWho first raised head against usurping Richard,\nFlying for succor to his servant Banister,\nBeing distress'd, was by that wretch betray'd,\nAnd without trial fell; God's peace be with him!\nHenry the Seventh succeeding, truly pitying\nMy father's loss, like a most royal prince,\nRestored me to my honours, and, out of ruins,\nMade my name once more noble. Now his son,\nHenry the Eighth, life, honour, name and all\nThat made me happy at one stroke has taken\nFor ever from the world. I had my trial,\nAnd, must needs say, a noble one; which makes me,\nA little happier than my wretched father:\nYet thus far we are one in fortunes: both\nFell by our servants, by those men we loved most;\nA most unnatural and faithless service!\nHeaven has an end in all: yet, you that hear me,\nThis from a dying man receive as certain:\nWhere you are liberal of your loves and counsels\nBe sure you be not loose; for those you make friends\nAnd give your hearts to, when they once perceive\nThe least rub in your fortunes, fall away\nLike water from ye, never found again\nBut where they mean to sink ye. All good people,\nPray for me! I must now forsake ye: the last hour\nOf my long weary life is come upon me. Farewell:\nAnd when you would say something that is sad,\nSpeak how I fell. I have done; and God forgive me!\n\nFirst Gentleman:\nO, this is full of pity! Sir, it calls,\nI fear, too many curses on their beads\nThat were the authors.\n\nSecond Gentleman:\nIf the duke be guiltless,\n'Tis full of woe: yet I can give you inkling\nOf an ensuing evil, if it fall,\nGreater than this.\n\nFirst Gentleman:\nGood angels keep it from us!\nWhat may it be? You do not doubt my faith, sir?\n\nSecond Gentleman:\nThis secret is so weighty, 'twill require\nA strong faith to conceal it.\n\nFirst Gentleman:\nLet me have it;\nI do not talk much.\n\nSecond Gentleman:\nI am confident,\nYou shall, sir: did you not of late days hear\nA buzzing of a separation\nBetween the king and Katharine?\n\nFirst Gentleman:\nYes, but it held not:\nFor when the king once heard it, out of anger\nHe sent command to the lord mayor straight\nTo stop the rumor, and allay those tongues\nThat durst disperse it.\n\nSecond Gentleman:\nBut that slander, sir,\nIs found a truth now: for it grows again\nFresher than e'er it was; and held for certain\nThe king will venture at it. Either the cardinal,\nOr some about him near, have, out of malice\nTo the good queen, possess'd him with a scruple\nThat will undo her: to confirm this too,\nCardinal Campeius is arrived, and lately;\nAs all think, for this business.\n\nFirst Gentleman:\n'Tis the cardinal;\nAnd merely to revenge him on the emperor\nFor not bestowing on him, at his asking,\nThe archbishopric of Toledo, this is purposed.\n\nSecond Gentleman:\nI think you have hit the mark: but is't not cruel\nThat she should feel the smart of this? The cardinal\nWill have his will, and she must fall.\n\nFirst Gentleman:\n'Tis woful.\nWe are too open here to argue this;\nLet's think in private more.\n\nChamberlain:\n'My lord, the horses your lordship sent for, with\nall the care I had, I saw well chosen, ridden, and\nfurnished. They were young and handsome, and of the\nbest breed in the north. When they were ready to\nset out for London, a man of my lord cardinal's, by\ncommission and main power, took 'em from me; with\nthis reason: His master would be served before a\nsubject, if not before the king; which stopped our\nmouths, sir.'\nI fear he will indeed: well, let him have them:\nHe will have all, I think.\n\nNORFOLK:\nWell met, my lord chamberlain.\n\nChamberlain:\nGood day to both your graces.\n\nSUFFOLK:\nHow is the king employ'd?\n\nChamberlain:\nI left him private,\nFull of sad thoughts and troubles.\n\nNORFOLK:\nWhat's the cause?\n\nChamberlain:\nIt seems the marriage with his brother's wife\nHas crept too near his conscience.\n\nSUFFOLK:\nNo, his conscience\nHas crept too near another lady.\n\nNORFOLK:\n'Tis so:\nThis is the cardinal's doing, the king-cardinal:\nThat blind priest, like the eldest son of fortune,\nTurns what he list. The king will know him one day.\n\nSUFFOLK:\nPray God he do! he'll never know himself else.\n\nNORFOLK:\nHow holily he works in all his business!\nAnd with what zeal! for, now he has crack'd the league\nBetween us and the emperor, the queen's great nephew,\nHe dives into the king's soul, and there scatters\nDangers, doubts, wringing of the conscience,\nFears, and despairs; and all these for his marriage:\nAnd out of all these to restore the king,\nHe counsels a divorce; a loss of her\nThat, like a jewel, has hung twenty years\nAbout his neck, yet never lost her lustre;\nOf her that loves him with that excellence\nThat angels love good men with; even of her\nThat, when the greatest stroke of fortune falls,\nWill bless the king: and is not this course pious?\n\nChamberlain:\nHeaven keep me from such counsel! 'Tis most true\nThese news are every where; every tongue speaks 'em,\nAnd every true heart weeps for't: all that dare\nLook into these affairs see this main end,\nThe French king's sister. Heaven will one day open\nThe king's eyes, that so long have slept upon\nThis bold bad man.\n\nSUFFOLK:\nAnd free us from his slavery.\n\nNORFOLK:\nWe had need pray,\nAnd heartily, for our deliverance;\nOr this imperious man will work us all\nFrom princes into pages: all men's honours\nLie like one lump before him, to be fashion'd\nInto what pitch he please.\n\nSUFFOLK:\nFor me, my lords,\nI love him not, nor fear him; there's my creed:\nAs I am made without him, so I'll stand,\nIf the king please; his curses and his blessings\nTouch me alike, they're breath I not believe in.\nI knew him, and I know him; so I leave him\nTo him that made him proud, the pope.\n\nNORFOLK:\nLet's in;\nAnd with some other business put the king\nFrom these sad thoughts, that work too much upon him:\nMy lord, you'll bear us company?\n\nChamberlain:\nExcuse me;\nThe king has sent me otherwhere: besides,\nYou'll find a most unfit time to disturb him:\nHealth to your lordships.\n\nNORFOLK:\nThanks, my good lord chamberlain.\n\nSUFFOLK:\nHow sad he looks! sure, he is much afflicted.\n\nKING HENRY VIII:\nWho's there, ha?\n\nNORFOLK:\nPray God he be not angry.\n\nKING HENRY VIII:\nWho's there, I say? How dare you thrust yourselves\nInto my private meditations?\nWho am I? ha?\n\nNORFOLK:\nA gracious king that pardons all offences\nMalice ne'er meant: our breach of duty this way\nIs business of estate; in which we come\nTo know your royal pleasure.\n\nKING HENRY VIII:\nYe are too bold:\nGo to; I'll make ye know your times of business:\nIs this an hour for temporal affairs, ha?\nWho's there? my good lord cardinal? O my Wolsey,\nThe quiet of my wounded conscience;\nThou art a cure fit for a king.\nYou're welcome,\nMost learned reverend sir, into our kingdom:\nUse us and it.\nMy good lord, have great care\nI be not found a talker.\n\nCARDINAL WOLSEY:\nSir, you cannot.\nI would your grace would give us but an hour\nOf private conference.\n\nKING HENRY VIII:\n\nNORFOLK:\n\nSUFFOLK:\n\nNORFOLK:\n\nSUFFOLK:\n\nCARDINAL WOLSEY:\nYour grace has given a precedent of wisdom\nAbove all princes, in committing freely\nYour scruple to the voice of Christendom:\nWho can be angry now? what envy reach you?\nThe Spaniard, tied blood and favour to her,\nMust now confess, if they have any goodness,\nThe trial just and noble. All the clerks,\nI mean the learned ones, in Christian kingdoms\nHave their free voices: Rome, the nurse of judgment,\nInvited by your noble self, hath sent\nOne general tongue unto us, this good man,\nThis just and learned priest, Cardinal Campeius;\nWhom once more I present unto your highness.\n\nKING HENRY VIII:\nAnd once more in mine arms I bid him welcome,\nAnd thank the holy conclave for their loves:\nThey have sent me such a man I would have wish'd for.\n\nCARDINAL CAMPEIUS:\nYour grace must needs deserve all strangers' loves,\nYou are so noble. To your highness' hand\nI tender my commission; by whose virtue,\nThe court of Rome commanding, you, my lord\nCardinal of York, are join'd with me their servant\nIn the unpartial judging of this business.\n\nKING HENRY VIII:\nTwo equal men. The queen shall be acquainted\nForthwith for what you come. Where's Gardiner?\n\nCARDINAL WOLSEY:\nI know your majesty has always loved her\nSo dear in heart, not to deny her that\nA woman of less place might ask by law:\nScholars allow'd freely to argue for her.\n\nKING HENRY VIII:\nAy, and the best she shall have; and my favour\nTo him that does best: God forbid else. Cardinal,\nPrithee, call Gardiner to me, my new secretary:\nI find him a fit fellow.\n\nCARDINAL WOLSEY:\n\nGARDINER:\n\nKING HENRY VIII:\nCome hither, Gardiner.\n\nCARDINAL CAMPEIUS:\nMy Lord of York, was not one Doctor Pace\nIn this man's place before him?\n\nCARDINAL WOLSEY:\nYes, he was.\n\nCARDINAL CAMPEIUS:\nWas he not held a learned man?\n\nCARDINAL WOLSEY:\nYes, surely.\n\nCARDINAL CAMPEIUS:\nBelieve me, there's an ill opinion spread then\nEven of yourself, lord cardinal.\n\nCARDINAL WOLSEY:\nHow! of me?\n\nCARDINAL CAMPEIUS:\nThey will not stick to say you envied him,\nAnd fearing he would rise, he was so virtuous,\nKept him a foreign man still; which so grieved him,\nThat he ran mad and died.\n\nCARDINAL WOLSEY:\nHeaven's peace be with him!\nThat's Christian care enough: for living murmurers\nThere's places of rebuke. He was a fool;\nFor he would needs be virtuous: that good fellow,\nIf I command him, follows my appointment:\nI will have none so near else. Learn this, brother,\nWe live not to be grip'd by meaner persons.\n\nKING HENRY VIII:\nDeliver this with modesty to the queen.\nThe most convenient place that I can think of\nFor such receipt of learning is Black-Friars;\nThere ye shall meet about this weighty business.\nMy Wolsey, see it furnish'd. O, my lord,\nWould it not grieve an able man to leave\nSo sweet a bedfellow? But, conscience, conscience!\nO, 'tis a tender place; and I must leave her.\n\nANNE:\nNot for that neither: here's the pang that pinches:\nHis highness having lived so long with her, and she\nSo good a lady that no tongue could ever\nPronounce dishonour of her; by my life,\nShe never knew harm-doing: O, now, after\nSo many courses of the sun enthroned,\nStill growing in a majesty and pomp, the which\nTo leave a thousand-fold more bitter than\n'Tis sweet at first to acquire,--after this process,\nTo give her the avaunt! it is a pity\nWould move a monster.\n\nOld Lady:\nHearts of most hard temper\nMelt and lament for her.\n\nANNE:\nO, God's will! much better\nShe ne'er had known pomp: though't be temporal,\nYet, if that quarrel, fortune, do divorce\nIt from the bearer, 'tis a sufferance panging\nAs soul and body's severing.\n\nOld Lady:\nAlas, poor lady!\nShe's a stranger now again.\n\nANNE:\nSo much the more\nMust pity drop upon her. Verily,\nI swear, 'tis better to be lowly born,\nAnd range with humble livers in content,\nThan to be perk'd up in a glistering grief,\nAnd wear a golden sorrow.\n\nOld Lady:\nOur content\nIs our best having.\n\nANNE:\nBy my troth and maidenhead,\nI would not be a queen.\n\nOld Lady:\nBeshrew me, I would,\nAnd venture maidenhead for't; and so would you,\nFor all this spice of your hypocrisy:\nYou, that have so fair parts of woman on you,\nHave too a woman's heart; which ever yet\nAffected eminence, wealth, sovereignty;\nWhich, to say sooth, are blessings; and which gifts,\nSaving your mincing, the capacity\nOf your soft cheveril conscience would receive,\nIf you might please to stretch it.\n\nANNE:\nNay, good troth.\n\nOld Lady:\nYes, troth, and troth; you would not be a queen?\n\nANNE:\nNo, not for all the riches under heaven.\n\nOld Lady::\n'Tis strange: a three-pence bow'd would hire me,\nOld as I am, to queen it: but, I pray you,\nWhat think you of a duchess? have you limbs\nTo bear that load of title?\n\nANNE:\nNo, in truth.\n\nOld Lady:\nThen you are weakly made: pluck off a little;\nI would not be a young count in your way,\nFor more than blushing comes to: if your back\nCannot vouchsafe this burthen,'tis too weak\nEver to get a boy.\n\nANNE:\nHow you do talk!\nI swear again, I would not be a queen\nFor all the world.\n\nOld Lady:\nIn faith, for little England\nYou'ld venture an emballing: I myself\nWould for Carnarvonshire, although there long'd\nNo more to the crown but that. Lo, who comes here?\n\nChamberlain:\nGood morrow, ladies. What were't worth to know\nThe secret of your conference?\n\nANNE:\nMy good lord,\nNot your demand; it values not your asking:\nOur mistress' sorrows we were pitying.\n\nChamberlain:\nIt was a gentle business, and becoming\nThe action of good women: there is hope\nAll will be well.\n\nANNE:\nNow, I pray God, amen!\n\nChamberlain:\nYou bear a gentle mind, and heavenly blessings\nFollow such creatures. That you may, fair lady,\nPerceive I speak sincerely, and high note's\nTa'en of your many virtues, the king's majesty\nCommends his good opinion of you, and\nDoes purpose honour to you no less flowing\nThan Marchioness of Pembroke: to which title\nA thousand pound a year, annual support,\nOut of his grace he adds.\n\nANNE:\nI do not know\nWhat kind of my obedience I should tender;\nMore than my all is nothing: nor my prayers\nAre not words duly hallow'd, nor my wishes\nMore worth than empty vanities; yet prayers and wishes\nAre all I can return. Beseech your lordship,\nVouchsafe to speak my thanks and my obedience,\nAs from a blushing handmaid, to his highness;\nWhose health and royalty I pray for.\n\nChamberlain:\nLady,\nI shall not fail to approve the fair conceit\nThe king hath of you.\nI have perused her well;\nBeauty and honour in her are so mingled\nThat they have caught the king: and who knows yet\nBut from this lady may proceed a gem\nTo lighten all this isle? I'll to the king,\nAnd say I spoke with you.\n\nANNE:\nMy honour'd lord.\n\nOld Lady:\nWhy, this it is; see, see!\nI have been begging sixteen years in court,\nAm yet a courtier beggarly, nor could\nCome pat betwixt too early and too late\nFor any suit of pounds; and you, O fate!\nA very fresh-fish here--fie, fie, fie upon\nThis compell'd fortune!--have your mouth fill'd up\nBefore you open it.\n\nANNE:\nThis is strange to me.\n\nOld Lady:\nHow tastes it? is it bitter? forty pence, no.\nThere was a lady once, 'tis an old story,\nThat would not be a queen, that would she not,\nFor all the mud in Egypt: have you heard it?\n\nANNE:\nCome, you are pleasant.\n\nOld Lady:\nWith your theme, I could\nO'ermount the lark. The Marchioness of Pembroke!\nA thousand pounds a year for pure respect!\nNo other obligation! By my life,\nThat promises moe thousands: honour's train\nIs longer than his foreskirt. By this time\nI know your back will bear a duchess: say,\nAre you not stronger than you were?\n\nANNE:\nGood lady,\nMake yourself mirth with your particular fancy,\nAnd leave me out on't. Would I had no being,\nIf this salute my blood a jot: it faints me,\nTo think what follows.\nThe queen is comfortless, and we forgetful\nIn our long absence: pray, do not deliver\nWhat here you've heard to her.\n\nOld Lady:\nWhat do you think me?\n\nCARDINAL WOLSEY:\nWhilst our commission from Rome is read,\nLet silence be commanded.\n\nKING HENRY VIII:\nWhat's the need?\nIt hath already publicly been read,\nAnd on all sides the authority allow'd;\nYou may, then, spare that time.\n\nCARDINAL WOLSEY:\nBe't so. Proceed.\n\nScribe:\nSay, Henry King of England, come into the court.\n\nCrier:\nHenry King of England, &c.\n\nKING HENRY VIII:\nHere.\n\nScribe:\nSay, Katharine Queen of England, come into the court.\n\nCrier:\nKatharine Queen of England, &c.\n\nQUEEN KATHARINE:\nSir, I desire you do me right and justice;\nAnd to bestow your pity on me: for\nI am a most poor woman, and a stranger,\nBorn out of your dominions; having here\nNo judge indifferent, nor no more assurance\nOf equal friendship and proceeding. Alas, sir,\nIn what have I offended you? what cause\nHath my behavior given to your displeasure,\nThat thus you should proceed to put me off,\nAnd take your good grace from me? Heaven witness,\nI have been to you a true and humble wife,\nAt all times to your will conformable;\nEver in fear to kindle your dislike,\nYea, subject to your countenance, glad or sorry\nAs I saw it inclined: when was the hour\nI ever contradicted your desire,\nOr made it not mine too? Or which of your friends\nHave I not strove to love, although I knew\nHe were mine enemy? what friend of mine\nThat had to him derived your anger, did I\nContinue in my liking? nay, gave notice\nHe was from thence discharged. Sir, call to mind\nThat I have been your wife, in this obedience,\nUpward of twenty years, and have been blest\nWith many children by you: if, in the course\nAnd process of this time, you can report,\nAnd prove it too, against mine honour aught,\nMy bond to wedlock, or my love and duty,\nAgainst your sacred person, in God's name,\nTurn me away; and let the foul'st contempt\nShut door upon me, and so give me up\nTo the sharp'st kind of justice. Please you sir,\nThe king, your father, was reputed for\nA prince most prudent, of an excellent\nAnd unmatch'd wit and judgment: Ferdinand,\nMy father, king of Spain, was reckon'd one\nThe wisest prince that there had reign'd by many\nA year before: it is not to be question'd\nThat they had gather'd a wise council to them\nOf every realm, that did debate this business,\nWho deem'd our marriage lawful: wherefore I humbly\nBeseech you, sir, to spare me, till I may\nBe by my friends in Spain advised; whose counsel\nI will implore: if not, i' the name of God,\nYour pleasure be fulfill'd!\n\nCARDINAL WOLSEY:\nYou have here, lady,\nAnd of your choice, these reverend fathers; men\nOf singular integrity and learning,\nYea, the elect o' the land, who are assembled\nTo plead your cause: it shall be therefore bootless\nThat longer you desire the court; as well\nFor your own quiet, as to rectify\nWhat is unsettled in the king.\n\nCARDINAL CAMPEIUS:\nHis grace\nHath spoken well and justly: therefore, madam,\nIt's fit this royal session do proceed;\nAnd that, without delay, their arguments\nBe now produced and heard.\n\nQUEEN KATHARINE:\nLord cardinal,\nTo you I speak.\n\nCARDINAL WOLSEY:\nYour pleasure, madam?\n\nQUEEN KATHARINE:\nSir,\nI am about to weep; but, thinking that\nWe are a queen, or long have dream'd so, certain\nThe daughter of a king, my drops of tears\nI'll turn to sparks of fire.\n\nCARDINAL WOLSEY:\nBe patient yet.\n\nQUEEN KATHARINE:\nI will, when you are humble; nay, before,\nOr God will punish me. I do believe,\nInduced by potent circumstances, that\nYou are mine enemy, and make my challenge\nYou shall not be my judge: for it is you\nHave blown this coal betwixt my lord and me;\nWhich God's dew quench! Therefore I say again,\nI utterly abhor, yea, from my soul\nRefuse you for my judge; whom, yet once more,\nI hold my most malicious foe, and think not\nAt all a friend to truth.\n\nCARDINAL WOLSEY:\nI do profess\nYou speak not like yourself; who ever yet\nHave stood to charity, and display'd the effects\nOf disposition gentle, and of wisdom\nO'ertopping woman's power. Madam, you do me wrong:\nI have no spleen against you; nor injustice\nFor you or any: how far I have proceeded,\nOr how far further shall, is warranted\nBy a commission from the consistory,\nYea, the whole consistory of Rome. You charge me\nThat I have blown this coal: I do deny it:\nThe king is present: if it be known to him\nThat I gainsay my deed, how may he wound,\nAnd worthily, my falsehood! yea, as much\nAs you have done my truth. If he know\nThat I am free of your report, he knows\nI am not of your wrong. Therefore in him\nIt lies to cure me: and the cure is, to\nRemove these thoughts from you: the which before\nHis highness shall speak in, I do beseech\nYou, gracious madam, to unthink your speaking\nAnd to say so no more.\n\nQUEEN KATHARINE:\nMy lord, my lord,\nI am a simple woman, much too weak\nTo oppose your cunning. You're meek and\nhumble-mouth'd;\nYou sign your place and calling, in full seeming,\nWith meekness and humility; but your heart\nIs cramm'd with arrogancy, spleen, and pride.\nYou have, by fortune and his highness' favours,\nGone slightly o'er low steps and now are mounted\nWhere powers are your retainers, and your words,\nDomestics to you, serve your will as't please\nYourself pronounce their office. I must tell you,\nYou tender more your person's honour than\nYour high profession spiritual: that again\nI do refuse you for my judge; and here,\nBefore you all, appeal unto the pope,\nTo bring my whole cause 'fore his holiness,\nAnd to be judged by him.\n\nCARDINAL CAMPEIUS:\nThe queen is obstinate,\nStubborn to justice, apt to accuse it, and\nDisdainful to be tried by't: 'tis not well.\nShe's going away.\n\nKING HENRY VIII:\nCall her again.\n\nCrier:\nKatharine Queen of England, come into the court.\n\nGRIFFITH:\nMadam, you are call'd back.\n\nQUEEN KATHARINE:\nWhat need you note it? pray you, keep your way:\nWhen you are call'd, return. Now, the Lord help,\nThey vex me past my patience! Pray you, pass on:\nI will not tarry; no, nor ever more\nUpon this business my appearance make\nIn any of their courts.\n\nKING HENRY VIII:\nGo thy ways, Kate:\nThat man i' the world who shall report he has\nA better wife, let him in nought be trusted,\nFor speaking false in that: thou art, alone,\nIf thy rare qualities, sweet gentleness,\nThy meekness saint-like, wife-like government,\nObeying in commanding, and thy parts\nSovereign and pious else, could speak thee out,\nThe queen of earthly queens: she's noble born;\nAnd, like her true nobility, she has\nCarried herself towards me.\n\nCARDINAL WOLSEY:\nMost gracious sir,\nIn humblest manner I require your highness,\nThat it shall please you to declare, in hearing\nOf all these ears,--for where I am robb'd and bound,\nThere must I be unloosed, although not there\nAt once and fully satisfied,--whether ever I\nDid broach this business to your highness; or\nLaid any scruple in your way, which might\nInduce you to the question on't? or ever\nHave to you, but with thanks to God for such\nA royal lady, spake one the least word that might\nBe to the prejudice of her present state,\nOr touch of her good person?\n\nKING HENRY VIII:\nMy lord cardinal,\nI do excuse you; yea, upon mine honour,\nI free you from't. You are not to be taught\nThat you have many enemies, that know not\nWhy they are so, but, like to village-curs,\nBark when their fellows do: by some of these\nThe queen is put in anger. You're excused:\nBut will you be more justified? You ever\nHave wish'd the sleeping of this business; never desired\nIt to be stirr'd; but oft have hinder'd, oft,\nThe passages made toward it: on my honour,\nI speak my good lord cardinal to this point,\nAnd thus far clear him. Now, what moved me to't,\nI will be bold with time and your attention:\nThen mark the inducement. Thus it came; give heed to't:\nMy conscience first received a tenderness,\nScruple, and prick, on certain speeches utter'd\nBy the Bishop of Bayonne, then French ambassador;\nWho had been hither sent on the debating\nA marriage 'twixt the Duke of Orleans and\nOur daughter Mary: i' the progress of this business,\nEre a determinate resolution, he,\nI mean the bishop, did require a respite;\nWherein he might the king his lord advertise\nWhether our daughter were legitimate,\nRespecting this our marriage with the dowager,\nSometimes our brother's wife. This respite shook\nThe bosom of my conscience, enter'd me,\nYea, with a splitting power, and made to tremble\nThe region of my breast; which forced such way,\nThat many mazed considerings did throng\nAnd press'd in with this caution. First, methought\nI stood not in the smile of heaven; who had\nCommanded nature, that my lady's womb,\nIf it conceived a male child by me, should\nDo no more offices of life to't than\nThe grave does to the dead; for her male issue\nOr died where they were made, or shortly after\nThis world had air'd them: hence I took a thought,\nThis was a judgment on me; that my kingdom,\nWell worthy the best heir o' the world, should not\nBe gladded in't by me: then follows, that\nI weigh'd the danger which my realms stood in\nBy this my issue's fail; and that gave to me\nMany a groaning throe. Thus hulling in\nThe wild sea of my conscience, I did steer\nToward this remedy, whereupon we are\nNow present here together: that's to say,\nI meant to rectify my conscience,--which\nI then did feel full sick, and yet not well,--\nBy all the reverend fathers of the land\nAnd doctors learn'd: first I began in private\nWith you, my Lord of Lincoln; you remember\nHow under my oppression I did reek,\nWhen I first moved you.\n\nLINCOLN:\nVery well, my liege.\n\nKING HENRY VIII:\nI have spoke long: be pleased yourself to say\nHow far you satisfied me.\n\nLINCOLN:\nSo please your highness,\nThe question did at first so stagger me,\nBearing a state of mighty moment in't\nAnd consequence of dread, that I committed\nThe daring'st counsel which I had to doubt;\nAnd did entreat your highness to this course\nWhich you are running here.\n\nKING HENRY VIII:\nI then moved you,\nMy Lord of Canterbury; and got your leave\nTo make this present summons: unsolicited\nI left no reverend person in this court;\nBut by particular consent proceeded\nUnder your hands and seals: therefore, go on:\nFor no dislike i' the world against the person\nOf the good queen, but the sharp thorny points\nOf my alleged reasons, drive this forward:\nProve but our marriage lawful, by my life\nAnd kingly dignity, we are contented\nTo wear our mortal state to come with her,\nKatharine our queen, before the primest creature\nThat's paragon'd o' the world.\n\nCARDINAL CAMPEIUS:\nSo please your highness,\nThe queen being absent, 'tis a needful fitness\nThat we adjourn this court till further day:\nMeanwhile must be an earnest motion\nMade to the queen, to call back her appeal\nShe intends unto his holiness.\n\nKING HENRY VIII:\n\nQUEEN KATHARINE:\nTake thy lute, wench: my soul grows sad with troubles;\nSing, and disperse 'em, if thou canst: leave working.\nOrpheus with his lute made trees,\nAnd the mountain tops that freeze,\nBow themselves when he did sing:\nTo his music plants and flowers\nEver sprung; as sun and showers\nThere had made a lasting spring.\nEvery thing that heard him play,\nEven the billows of the sea,\nHung their heads, and then lay by.\nIn sweet music is such art,\nKilling care and grief of heart\nFall asleep, or hearing, die.\n\nQUEEN KATHARINE:\nHow now!\n\nGentleman:\nAn't please your grace, the two great cardinals\nWait in the presence.\n\nQUEEN KATHARINE:\nWould they speak with me?\n\nGentleman:\nThey will'd me say so, madam.\n\nQUEEN KATHARINE:\nPray their graces\nTo come near.\nWhat can be their business\nWith me, a poor weak woman, fall'n from favour?\nI do not like their coming. Now I think on't,\nThey should be good men; their affairs as righteous:\nBut all hoods make not monks.\n\nCARDINAL WOLSEY:\nPeace to your highness!\n\nQUEEN KATHARINE:\nYour graces find me here part of a housewife,\nI would be all, against the worst may happen.\nWhat are your pleasures with me, reverend lords?\n\nCARDINAL WOLSEY:\nMay it please you noble madam, to withdraw\nInto your private chamber, we shall give you\nThe full cause of our coming.\n\nQUEEN KATHARINE:\nSpeak it here:\nThere's nothing I have done yet, o' my conscience,\nDeserves a corner: would all other women\nCould speak this with as free a soul as I do!\nMy lords, I care not, so much I am happy\nAbove a number, if my actions\nWere tried by every tongue, every eye saw 'em,\nEnvy and base opinion set against 'em,\nI know my life so even. If your business\nSeek me out, and that way I am wife in,\nOut with it boldly: truth loves open dealing.\n\nCARDINAL WOLSEY:\nTanta est erga te mentis integritas, regina\nserenissima,--\n\nQUEEN KATHARINE:\nO, good my lord, no Latin;\nI am not such a truant since my coming,\nAs not to know the language I have lived in:\nA strange tongue makes my cause more strange,\nsuspicious;\nPray, speak in English: here are some will thank you,\nIf you speak truth, for their poor mistress' sake;\nBelieve me, she has had much wrong: lord cardinal,\nThe willing'st sin I ever yet committed\nMay be absolved in English.\n\nCARDINAL WOLSEY:\nNoble lady,\nI am sorry my integrity should breed,\nAnd service to his majesty and you,\nSo deep suspicion, where all faith was meant.\nWe come not by the way of accusation,\nTo taint that honour every good tongue blesses,\nNor to betray you any way to sorrow,\nYou have too much, good lady; but to know\nHow you stand minded in the weighty difference\nBetween the king and you; and to deliver,\nLike free and honest men, our just opinions\nAnd comforts to your cause.\n\nCARDINAL CAMPEIUS:\nMost honour'd madam,\nMy Lord of York, out of his noble nature,\nZeal and obedience he still bore your grace,\nForgetting, like a good man your late censure\nBoth of his truth and him, which was too far,\nOffers, as I do, in a sign of peace,\nHis service and his counsel.\n\nQUEEN KATHARINE:\n\nCARDINAL WOLSEY:\nMadam, you wrong the king's love with these fears:\nYour hopes and friends are infinite.\n\nQUEEN KATHARINE:\nIn England\nBut little for my profit: can you think, lords,\nThat any Englishman dare give me counsel?\nOr be a known friend, 'gainst his highness' pleasure,\nThough he be grown so desperate to be honest,\nAnd live a subject? Nay, forsooth, my friends,\nThey that must weigh out my afflictions,\nThey that my trust must grow to, live not here:\nThey are, as all my other comforts, far hence\nIn mine own country, lords.\n\nCARDINAL CAMPEIUS:\nI would your grace\nWould leave your griefs, and take my counsel.\n\nQUEEN KATHARINE:\nHow, sir?\n\nCARDINAL CAMPEIUS:\nPut your main cause into the king's protection;\nHe's loving and most gracious: 'twill be much\nBoth for your honour better and your cause;\nFor if the trial of the law o'ertake ye,\nYou'll part away disgraced.\n\nCARDINAL WOLSEY:\nHe tells you rightly.\n\nQUEEN KATHARINE:\nYe tell me what ye wish for both,--my ruin:\nIs this your Christian counsel? out upon ye!\nHeaven is above all yet; there sits a judge\nThat no king can corrupt.\n\nCARDINAL CAMPEIUS:\nYour rage mistakes us.\n\nQUEEN KATHARINE:\nThe more shame for ye: holy men I thought ye,\nUpon my soul, two reverend cardinal virtues;\nBut cardinal sins and hollow hearts I fear ye:\nMend 'em, for shame, my lords. Is this your comfort?\nThe cordial that ye bring a wretched lady,\nA woman lost among ye, laugh'd at, scorn'd?\nI will not wish ye half my miseries;\nI have more charity: but say, I warn'd ye;\nTake heed, for heaven's sake, take heed, lest at once\nThe burthen of my sorrows fall upon ye.\n\nCARDINAL WOLSEY:\nMadam, this is a mere distraction;\nYou turn the good we offer into envy.\n\nQUEEN KATHARINE:\nYe turn me into nothing: woe upon ye\nAnd all such false professors! would you have me--\nIf you have any justice, any pity;\nIf ye be any thing but churchmen's habits--\nPut my sick cause into his hands that hates me?\nAlas, has banish'd me his bed already,\nHis love, too long ago! I am old, my lords,\nAnd all the fellowship I hold now with him\nIs only my obedience. What can happen\nTo me above this wretchedness? all your studies\nMake me a curse like this.\n\nCARDINAL CAMPEIUS:\nYour fears are worse.\n\nQUEEN KATHARINE:\nHave I lived thus long--let me speak myself,\nSince virtue finds no friends--a wife, a true one?\nA woman, I dare say without vain-glory,\nNever yet branded with suspicion?\nHave I with all my full affections\nStill met the king? loved him next heaven?\nobey'd him?\nBeen, out of fondness, superstitious to him?\nAlmost forgot my prayers to content him?\nAnd am I thus rewarded? 'tis not well, lords.\nBring me a constant woman to her husband,\nOne that ne'er dream'd a joy beyond his pleasure;\nAnd to that woman, when she has done most,\nYet will I add an honour, a great patience.\n\nCARDINAL WOLSEY:\nMadam, you wander from the good we aim at.\n\nQUEEN KATHARINE:\nMy lord, I dare not make myself so guilty,\nTo give up willingly that noble title\nYour master wed me to: nothing but death\nShall e'er divorce my dignities.\n\nCARDINAL WOLSEY:\nPray, hear me.\n\nQUEEN KATHARINE:\nWould I had never trod this English earth,\nOr felt the flatteries that grow upon it!\nYe have angels' faces, but heaven knows your hearts.\nWhat will become of me now, wretched lady!\nI am the most unhappy woman living.\nAlas, poor wenches, where are now your fortunes!\nShipwreck'd upon a kingdom, where no pity,\nNo friend, no hope; no kindred weep for me;\nAlmost no grave allow'd me: like the lily,\nThat once was mistress of the field and flourish'd,\nI'll hang my head and perish.\n\nCARDINAL WOLSEY:\nIf your grace\nCould but be brought to know our ends are honest,\nYou'ld feel more comfort: why should we, good lady,\nUpon what cause, wrong you? alas, our places,\nThe way of our profession is against it:\nWe are to cure such sorrows, not to sow 'em.\nFor goodness' sake, consider what you do;\nHow you may hurt yourself, ay, utterly\nGrow from the king's acquaintance, by this carriage.\nThe hearts of princes kiss obedience,\nSo much they love it; but to stubborn spirits\nThey swell, and grow as terrible as storms.\nI know you have a gentle, noble temper,\nA soul as even as a calm: pray, think us\nThose we profess, peace-makers, friends, and servants.\n\nCARDINAL CAMPEIUS:\nMadam, you'll find it so. You wrong your virtues\nWith these weak women's fears: a noble spirit,\nAs yours was put into you, ever casts\nSuch doubts, as false coin, from it. The king loves you;\nBeware you lose it not: for us, if you please\nTo trust us in your business, we are ready\nTo use our utmost studies in your service.\n\nQUEEN KATHARINE:\nDo what ye will, my lords: and, pray, forgive me,\nIf I have used myself unmannerly;\nYou know I am a woman, lacking wit\nTo make a seemly answer to such persons.\nPray, do my service to his majesty:\nHe has my heart yet; and shall have my prayers\nWhile I shall have my life. Come, reverend fathers,\nBestow your counsels on me: she now begs,\nThat little thought, when she set footing here,\nShe should have bought her dignities so dear.\n\nNORFOLK:\nIf you will now unite in your complaints,\nAnd force them with a constancy, the cardinal\nCannot stand under them: if you omit\nThe offer of this time, I cannot promise\nBut that you shall sustain moe new disgraces,\nWith these you bear already.\n\nSURREY:\nI am joyful\nTo meet the least occasion that may give me\nRemembrance of my father-in-law, the duke,\nTo be revenged on him.\n\nSUFFOLK:\nWhich of the peers\nHave uncontemn'd gone by him, or at least\nStrangely neglected? when did he regard\nThe stamp of nobleness in any person\nOut of himself?\n\nChamberlain:\nMy lords, you speak your pleasures:\nWhat he deserves of you and me I know;\nWhat we can do to him, though now the time\nGives way to us, I much fear. If you cannot\nBar his access to the king, never attempt\nAny thing on him; for he hath a witchcraft\nOver the king in's tongue.\n\nNORFOLK:\nO, fear him not;\nHis spell in that is out: the king hath found\nMatter against him that for ever mars\nThe honey of his language. No, he's settled,\nNot to come off, in his displeasure.\n\nSURREY:\nSir,\nI should be glad to hear such news as this\nOnce every hour.\n\nNORFOLK:\nBelieve it, this is true:\nIn the divorce his contrary proceedings\nAre all unfolded wherein he appears\nAs I would wish mine enemy.\n\nSURREY:\nHow came\nHis practises to light?\n\nSUFFOLK:\nMost strangely.\n\nSURREY:\nO, how, how?\n\nSUFFOLK:\nThe cardinal's letters to the pope miscarried,\nAnd came to the eye o' the king: wherein was read,\nHow that the cardinal did entreat his holiness\nTo stay the judgment o' the divorce; for if\nIt did take place, 'I do,' quoth he, 'perceive\nMy king is tangled in affection to\nA creature of the queen's, Lady Anne Bullen.'\n\nSURREY:\nHas the king this?\n\nSUFFOLK:\nBelieve it.\n\nSURREY:\nWill this work?\n\nChamberlain:\nThe king in this perceives him, how he coasts\nAnd hedges his own way. But in this point\nAll his tricks founder, and he brings his physic\nAfter his patient's death: the king already\nHath married the fair lady.\n\nSURREY:\nWould he had!\n\nSUFFOLK:\nMay you be happy in your wish, my lord\nFor, I profess, you have it.\n\nSURREY:\nNow, all my joy\nTrace the conjunction!\n\nSUFFOLK:\nMy amen to't!\n\nNORFOLK:\nAll men's!\n\nSUFFOLK:\nThere's order given for her coronation:\nMarry, this is yet but young, and may be left\nTo some ears unrecounted. But, my lords,\nShe is a gallant creature, and complete\nIn mind and feature: I persuade me, from her\nWill fall some blessing to this land, which shall\nIn it be memorised.\n\nSURREY:\nBut, will the king\nDigest this letter of the cardinal's?\nThe Lord forbid!\n\nNORFOLK:\nMarry, amen!\n\nSUFFOLK:\nNo, no;\nThere be moe wasps that buzz about his nose\nWill make this sting the sooner. Cardinal Campeius\nIs stol'n away to Rome; hath ta'en no leave;\nHas left the cause o' the king unhandled; and\nIs posted, as the agent of our cardinal,\nTo second all his plot. I do assure you\nThe king cried Ha! at this.\n\nChamberlain:\nNow, God incense him,\nAnd let him cry Ha! louder!\n\nNORFOLK:\nBut, my lord,\nWhen returns Cranmer?\n\nSUFFOLK:\nHe is return'd in his opinions; which\nHave satisfied the king for his divorce,\nTogether with all famous colleges\nAlmost in Christendom: shortly, I believe,\nHis second marriage shall be publish'd, and\nHer coronation. Katharine no more\nShall be call'd queen, but princess dowager\nAnd widow to Prince Arthur.\n\nNORFOLK:\nThis same Cranmer's\nA worthy fellow, and hath ta'en much pain\nIn the king's business.\n\nSUFFOLK:\nHe has; and we shall see him\nFor it an archbishop.\n\nNORFOLK:\nSo I hear.\n\nSUFFOLK:\n'Tis so.\nThe cardinal!\n\nNORFOLK:\nObserve, observe, he's moody.\n\nCARDINAL WOLSEY:\nThe packet, Cromwell.\nGave't you the king?\n\nCROMWELL:\nTo his own hand, in's bedchamber.\n\nCARDINAL WOLSEY:\nLook'd he o' the inside of the paper?\n\nCROMWELL:\nPresently\nHe did unseal them: and the first he view'd,\nHe did it with a serious mind; a heed\nWas in his countenance. You he bade\nAttend him here this morning.\n\nCARDINAL WOLSEY:\nIs he ready\nTo come abroad?\n\nCROMWELL:\nI think, by this he is.\n\nCARDINAL WOLSEY:\nLeave me awhile.\nIt shall be to the Duchess of Alencon,\nThe French king's sister: he shall marry her.\nAnne Bullen! No; I'll no Anne Bullens for him:\nThere's more in't than fair visage. Bullen!\nNo, we'll no Bullens. Speedily I wish\nTo hear from Rome. The Marchioness of Pembroke!\n\nNORFOLK:\nHe's discontented.\n\nSUFFOLK:\nMay be, he hears the king\nDoes whet his anger to him.\n\nSURREY:\nSharp enough,\nLord, for thy justice!\n\nCARDINAL WOLSEY:\n\nNORFOLK:\nHe is vex'd at something.\n\nSURREY:\nI would 'twere something that would fret the string,\nThe master-cord on's heart!\n\nSUFFOLK:\nThe king, the king!\n\nKING HENRY VIII:\nWhat piles of wealth hath he accumulated\nTo his own portion! and what expense by the hour\nSeems to flow from him! How, i' the name of thrift,\nDoes he rake this together! Now, my lords,\nSaw you the cardinal?\n\nNORFOLK:\nMy lord, we have\nStood here observing him: some strange commotion\nIs in his brain: he bites his lip, and starts;\nStops on a sudden, looks upon the ground,\nThen lays his finger on his temple, straight\nSprings out into fast gait; then stops again,\nStrikes his breast hard, and anon he casts\nHis eye against the moon: in most strange postures\nWe have seen him set himself.\n\nKING HENRY VIII:\nIt may well be;\nThere is a mutiny in's mind. This morning\nPapers of state he sent me to peruse,\nAs I required: and wot you what I found\nThere,--on my conscience, put unwittingly?\nForsooth, an inventory, thus importing;\nThe several parcels of his plate, his treasure,\nRich stuffs, and ornaments of household; which\nI find at such proud rate, that it out-speaks\nPossession of a subject.\n\nNORFOLK:\nIt's heaven's will:\nSome spirit put this paper in the packet,\nTo bless your eye withal.\n\nKING HENRY VIII:\nIf we did think\nHis contemplation were above the earth,\nAnd fix'd on spiritual object, he should still\nDwell in his musings: but I am afraid\nHis thinkings are below the moon, not worth\nHis serious considering.\n\nCARDINAL WOLSEY:\nHeaven forgive me!\nEver God bless your highness!\n\nKING HENRY VIII:\nGood my lord,\nYou are full of heavenly stuff, and bear the inventory\nOf your best graces in your mind; the which\nYou were now running o'er: you have scarce time\nTo steal from spiritual leisure a brief span\nTo keep your earthly audit: sure, in that\nI deem you an ill husband, and am glad\nTo have you therein my companion.\n\nCARDINAL WOLSEY:\nSir,\nFor holy offices I have a time; a time\nTo think upon the part of business which\nI bear i' the state; and nature does require\nHer times of preservation, which perforce\nI, her frail son, amongst my brethren mortal,\nMust give my tendence to.\n\nKING HENRY VIII:\nYou have said well.\n\nCARDINAL WOLSEY:\nAnd ever may your highness yoke together,\nAs I will lend you cause, my doing well\nWith my well saying!\n\nKING HENRY VIII:\n'Tis well said again;\nAnd 'tis a kind of good deed to say well:\nAnd yet words are no deeds. My father loved you:\nHis said he did; and with his deed did crown\nHis word upon you. Since I had my office,\nI have kept you next my heart; have not alone\nEmploy'd you where high profits might come home,\nBut pared my present havings, to bestow\nMy bounties upon you.\n\nCARDINAL WOLSEY:\n\nSURREY:\n\nKING HENRY VIII:\nHave I not made you,\nThe prime man of the state? I pray you, tell me,\nIf what I now pronounce you have found true:\nAnd, if you may confess it, say withal,\nIf you are bound to us or no. What say you?\n\nCARDINAL WOLSEY:\nMy sovereign, I confess your royal graces,\nShower'd on me daily, have been more than could\nMy studied purposes requite; which went\nBeyond all man's endeavours: my endeavours\nHave ever come too short of my desires,\nYet filed with my abilities: mine own ends\nHave been mine so that evermore they pointed\nTo the good of your most sacred person and\nThe profit of the state. For your great graces\nHeap'd upon me, poor undeserver, I\nCan nothing render but allegiant thanks,\nMy prayers to heaven for you, my loyalty,\nWhich ever has and ever shall be growing,\nTill death, that winter, kill it.\n\nKING HENRY VIII:\nFairly answer'd;\nA loyal and obedient subject is\nTherein illustrated: the honour of it\nDoes pay the act of it; as, i' the contrary,\nThe foulness is the punishment. I presume\nThat, as my hand has open'd bounty to you,\nMy heart dropp'd love, my power rain'd honour, more\nOn you than any; so your hand and heart,\nYour brain, and every function of your power,\nShould, notwithstanding that your bond of duty,\nAs 'twere in love's particular, be more\nTo me, your friend, than any.\n\nCARDINAL WOLSEY:\nI do profess\nThat for your highness' good I ever labour'd\nMore than mine own; that am, have, and will be--\nThough all the world should crack their duty to you,\nAnd throw it from their soul; though perils did\nAbound, as thick as thought could make 'em, and\nAppear in forms more horrid,--yet my duty,\nAs doth a rock against the chiding flood,\nShould the approach of this wild river break,\nAnd stand unshaken yours.\n\nKING HENRY VIII:\n'Tis nobly spoken:\nTake notice, lords, he has a loyal breast,\nFor you have seen him open't. Read o'er this;\nAnd after, this: and then to breakfast with\nWhat appetite you have.\n\nCARDINAL WOLSEY:\nWhat should this mean?\nWhat sudden anger's this? how have I reap'd it?\nHe parted frowning from me, as if ruin\nLeap'd from his eyes: so looks the chafed lion\nUpon the daring huntsman that has gall'd him;\nThen makes him nothing. I must read this paper;\nI fear, the story of his anger. 'Tis so;\nThis paper has undone me: 'tis the account\nOf all that world of wealth I have drawn together\nFor mine own ends; indeed, to gain the popedom,\nAnd fee my friends in Rome. O negligence!\nFit for a fool to fall by: what cross devil\nMade me put this main secret in the packet\nI sent the king? Is there no way to cure this?\nNo new device to beat this from his brains?\nI know 'twill stir him strongly; yet I know\nA way, if it take right, in spite of fortune\nWill bring me off again. What's this? 'To the Pope!'\nThe letter, as I live, with all the business\nI writ to's holiness. Nay then, farewell!\nI have touch'd the highest point of all my greatness;\nAnd, from that full meridian of my glory,\nI haste now to my setting: I shall fall\nLike a bright exhalation m the evening,\nAnd no man see me more.\n\nNORFOLK:\nHear the king's pleasure, cardinal: who commands you\nTo render up the great seal presently\nInto our hands; and to confine yourself\nTo Asher House, my Lord of Winchester's,\nTill you hear further from his highness.\n\nCARDINAL WOLSEY:\nStay:\nWhere's your commission, lords? words cannot carry\nAuthority so weighty.\n\nSUFFOLK:\nWho dare cross 'em,\nBearing the king's will from his mouth expressly?\n\nCARDINAL WOLSEY:\nTill I find more than will or words to do it,\nI mean your malice, know, officious lords,\nI dare and must deny it. Now I feel\nOf what coarse metal ye are moulded, envy:\nHow eagerly ye follow my disgraces,\nAs if it fed ye! and how sleek and wanton\nYe appear in every thing may bring my ruin!\nFollow your envious courses, men of malice;\nYou have Christian warrant for 'em, and, no doubt,\nIn time will find their fit rewards. That seal,\nYou ask with such a violence, the king,\nMine and your master, with his own hand gave me;\nBade me enjoy it, with the place and honours,\nDuring my life; and, to confirm his goodness,\nTied it by letters-patents: now, who'll take it?\n\nSURREY:\nThe king, that gave it.\n\nCARDINAL WOLSEY:\nIt must be himself, then.\n\nSURREY:\nThou art a proud traitor, priest.\n\nCARDINAL WOLSEY:\nProud lord, thou liest:\nWithin these forty hours Surrey durst better\nHave burnt that tongue than said so.\n\nSURREY:\nThy ambition,\nThou scarlet sin, robb'd this bewailing land\nOf noble Buckingham, my father-in-law:\nThe heads of all thy brother cardinals,\nWith thee and all thy best parts bound together,\nWeigh'd not a hair of his. Plague of your policy!\nYou sent me deputy for Ireland;\nFar from his succor, from the king, from all\nThat might have mercy on the fault thou gavest him;\nWhilst your great goodness, out of holy pity,\nAbsolved him with an axe.\n\nCARDINAL WOLSEY:\nThis, and all else\nThis talking lord can lay upon my credit,\nI answer is most false. The duke by law\nFound his deserts: how innocent I was\nFrom any private malice in his end,\nHis noble jury and foul cause can witness.\nIf I loved many words, lord, I should tell you\nYou have as little honesty as honour,\nThat in the way of loyalty and truth\nToward the king, my ever royal master,\nDare mate a sounder man than Surrey can be,\nAnd all that love his follies.\n\nSURREY:\nBy my soul,\nYour long coat, priest, protects you; thou\nshouldst feel\nMy sword i' the life-blood of thee else. My lords,\nCan ye endure to hear this arrogance?\nAnd from this fellow? if we live thus tamely,\nTo be thus jaded by a piece of scarlet,\nFarewell nobility; let his grace go forward,\nAnd dare us with his cap like larks.\n\nCARDINAL WOLSEY:\nAll goodness\nIs poison to thy stomach.\n\nSURREY:\nYes, that goodness\nOf gleaning all the land's wealth into one,\nInto your own hands, cardinal, by extortion;\nThe goodness of your intercepted packets\nYou writ to the pope against the king: your goodness,\nSince you provoke me, shall be most notorious.\nMy Lord of Norfolk, as you are truly noble,\nAs you respect the common good, the state\nOf our despised nobility, our issues,\nWho, if he live, will scarce be gentlemen,\nProduce the grand sum of his sins, the articles\nCollected from his life. I'll startle you\nWorse than the scaring bell, when the brown wench\nLay kissing in your arms, lord cardinal.\n\nCARDINAL WOLSEY:\nHow much, methinks, I could despise this man,\nBut that I am bound in charity against it!\n\nNORFOLK:\nThose articles, my lord, are in the king's hand:\nBut, thus much, they are foul ones.\n\nCARDINAL WOLSEY:\nSo much fairer\nAnd spotless shall mine innocence arise,\nWhen the king knows my truth.\n\nSURREY:\nThis cannot save you:\nI thank my memory, I yet remember\nSome of these articles; and out they shall.\nNow, if you can blush and cry 'guilty,' cardinal,\nYou'll show a little honesty.\n\nCARDINAL WOLSEY:\nSpeak on, sir;\nI dare your worst objections: if I blush,\nIt is to see a nobleman want manners.\n\nSURREY:\nI had rather want those than my head. Have at you!\nFirst, that, without the king's assent or knowledge,\nYou wrought to be a legate; by which power\nYou maim'd the jurisdiction of all bishops.\n\nNORFOLK:\nThen, that in all you writ to Rome, or else\nTo foreign princes, 'Ego et Rex meus'\nWas still inscribed; in which you brought the king\nTo be your servant.\n\nSUFFOLK:\nThen that, without the knowledge\nEither of king or council, when you went\nAmbassador to the emperor, you made bold\nTo carry into Flanders the great seal.\n\nSURREY:\nItem, you sent a large commission\nTo Gregory de Cassado, to conclude,\nWithout the king's will or the state's allowance,\nA league between his highness and Ferrara.\n\nSUFFOLK:\nThat, out of mere ambition, you have caused\nYour holy hat to be stamp'd on the king's coin.\n\nSURREY:\nThen that you have sent innumerable substance--\nBy what means got, I leave to your own conscience--\nTo furnish Rome, and to prepare the ways\nYou have for dignities; to the mere undoing\nOf all the kingdom. Many more there are;\nWhich, since they are of you, and odious,\nI will not taint my mouth with.\n\nChamberlain:\nO my lord,\nPress not a falling man too far! 'tis virtue:\nHis faults lie open to the laws; let them,\nNot you, correct him. My heart weeps to see him\nSo little of his great self.\n\nSURREY:\nI forgive him.\n\nSUFFOLK:\nLord cardinal, the king's further pleasure is,\nBecause all those things you have done of late,\nBy your power legatine, within this kingdom,\nFall into the compass of a praemunire,\nThat therefore such a writ be sued against you;\nTo forfeit all your goods, lands, tenements,\nChattels, and whatsoever, and to be\nOut of the king's protection. This is my charge.\n\nNORFOLK:\nAnd so we'll leave you to your meditations\nHow to live better. For your stubborn answer\nAbout the giving back the great seal to us,\nThe king shall know it, and, no doubt, shall thank you.\nSo fare you well, my little good lord cardinal.\n\nCARDINAL WOLSEY:\nSo farewell to the little good you bear me.\nFarewell! a long farewell, to all my greatness!\nThis is the state of man: to-day he puts forth\nThe tender leaves of hopes; to-morrow blossoms,\nAnd bears his blushing honours thick upon him;\nThe third day comes a frost, a killing frost,\nAnd, when he thinks, good easy man, full surely\nHis greatness is a-ripening, nips his root,\nAnd then he falls, as I do. I have ventured,\nLike little wanton boys that swim on bladders,\nThis many summers in a sea of glory,\nBut far beyond my depth: my high-blown pride\nAt length broke under me and now has left me,\nWeary and old with service, to the mercy\nOf a rude stream, that must for ever hide me.\nVain pomp and glory of this world, I hate ye:\nI feel my heart new open'd. O, how wretched\nIs that poor man that hangs on princes' favours!\nThere is, betwixt that smile we would aspire to,\nThat sweet aspect of princes, and their ruin,\nMore pangs and fears than wars or women have:\nAnd when he falls, he falls like Lucifer,\nNever to hope again.\nWhy, how now, Cromwell!\n\nCROMWELL:\nI have no power to speak, sir.\n\nCARDINAL WOLSEY:\nWhat, amazed\nAt my misfortunes? can thy spirit wonder\nA great man should decline? Nay, an you weep,\nI am fall'n indeed.\n\nCROMWELL:\nHow does your grace?\n\nCARDINAL WOLSEY:\nWhy, well;\nNever so truly happy, my good Cromwell.\nI know myself now; and I feel within me\nA peace above all earthly dignities,\nA still and quiet conscience. The king has cured me,\nI humbly thank his grace; and from these shoulders,\nThese ruin'd pillars, out of pity, taken\nA load would sink a navy, too much honour:\nO, 'tis a burthen, Cromwell, 'tis a burthen\nToo heavy for a man that hopes for heaven!\n\nCROMWELL:\nI am glad your grace has made that right use of it.\n\nCARDINAL WOLSEY:\nI hope I have: I am able now, methinks,\nOut of a fortitude of soul I feel,\nTo endure more miseries and greater far\nThan my weak-hearted enemies dare offer.\nWhat news abroad?\n\nCROMWELL:\nThe heaviest and the worst\nIs your displeasure with the king.\n\nCARDINAL WOLSEY:\nGod bless him!\n\nCROMWELL:\nThe next is, that Sir Thomas More is chosen\nLord chancellor in your place.\n\nCARDINAL WOLSEY:\nThat's somewhat sudden:\nBut he's a learned man. May he continue\nLong in his highness' favour, and do justice\nFor truth's sake and his conscience; that his bones,\nWhen he has run his course and sleeps in blessings,\nMay have a tomb of orphans' tears wept on em! What more?\n\nCROMWELL:\nThat Cranmer is return'd with welcome,\nInstall'd lord archbishop of Canterbury.\n\nCARDINAL WOLSEY:\nThat's news indeed.\n\nCROMWELL:\nLast, that the Lady Anne,\nWhom the king hath in secrecy long married,\nThis day was view'd in open as his queen,\nGoing to chapel; and the voice is now\nOnly about her coronation.\n\nCARDINAL WOLSEY:\nThere was the weight that pull'd me down. O Cromwell,\nThe king has gone beyond me: all my glories\nIn that one woman I have lost for ever:\nNo sun shall ever usher forth mine honours,\nOr gild again the noble troops that waited\nUpon my smiles. Go, get thee from me, Cromwell;\nI am a poor fall'n man, unworthy now\nTo be thy lord and master: seek the king;\nThat sun, I pray, may never set! I have told him\nWhat and how true thou art: he will advance thee;\nSome little memory of me will stir him--\nI know his noble nature--not to let\nThy hopeful service perish too: good Cromwell,\nNeglect him not; make use now, and provide\nFor thine own future safety.\n\nCROMWELL:\nO my lord,\nMust I, then, leave you? must I needs forego\nSo good, so noble and so true a master?\nBear witness, all that have not hearts of iron,\nWith what a sorrow Cromwell leaves his lord.\nThe king shall have my service: but my prayers\nFor ever and for ever shall be yours.\n\nCARDINAL WOLSEY:\nCromwell, I did not think to shed a tear\nIn all my miseries; but thou hast forced me,\nOut of thy honest truth, to play the woman.\nLet's dry our eyes: and thus far hear me, Cromwell;\nAnd, when I am forgotten, as I shall be,\nAnd sleep in dull cold marble, where no mention\nOf me more must be heard of, say, I taught thee,\nSay, Wolsey, that once trod the ways of glory,\nAnd sounded all the depths and shoals of honour,\nFound thee a way, out of his wreck, to rise in;\nA sure and safe one, though thy master miss'd it.\nMark but my fall, and that that ruin'd me.\nCromwell, I charge thee, fling away ambition:\nBy that sin fell the angels; how can man, then,\nThe image of his Maker, hope to win by it?\nLove thyself last: cherish those hearts that hate thee;\nCorruption wins not more than honesty.\nStill in thy right hand carry gentle peace,\nTo silence envious tongues. Be just, and fear not:\nLet all the ends thou aim'st at be thy country's,\nThy God's, and truth's; then if thou fall'st,\nO Cromwell,\nThou fall'st a blessed martyr! Serve the king;\nAnd,--prithee, lead me in:\nThere take an inventory of all I have,\nTo the last penny; 'tis the king's: my robe,\nAnd my integrity to heaven, is all\nI dare now call mine own. O Cromwell, Cromwell!\nHad I but served my God with half the zeal\nI served my king, he would not in mine age\nHave left me naked to mine enemies.\n\nCROMWELL:\nGood sir, have patience.\n\nCARDINAL WOLSEY:\nSo I have. Farewell\nThe hopes of court! my hopes in heaven do dwell.\n\nFirst Gentleman:\nYou're well met once again.\n\nSecond Gentleman:\nSo are you.\n\nFirst Gentleman:\nYou come to take your stand here, and behold\nThe Lady Anne pass from her coronation?\n\nSecond Gentleman:\n'Tis all my business. At our last encounter,\nThe Duke of Buckingham came from his trial.\n\nFirst Gentleman:\n'Tis very true: but that time offer'd sorrow;\nThis, general joy.\n\nSecond Gentleman:\n'Tis well: the citizens,\nI am sure, have shown at full their royal minds--\nAs, let 'em have their rights, they are ever forward--\nIn celebration of this day with shows,\nPageants and sights of honour.\n\nFirst Gentleman:\nNever greater,\nNor, I'll assure you, better taken, sir.\n\nSecond Gentleman:\nMay I be bold to ask at what that contains,\nThat paper in your hand?\n\nFirst Gentleman:\nYes; 'tis the list\nOf those that claim their offices this day\nBy custom of the coronation.\nThe Duke of Suffolk is the first, and claims\nTo be high-steward; next, the Duke of Norfolk,\nHe to be earl marshal: you may read the rest.\n\nSecond Gentleman:\nI thank you, sir: had I not known those customs,\nI should have been beholding to your paper.\nBut, I beseech you, what's become of Katharine,\nThe princess dowager? how goes her business?\n\nFirst Gentleman:\nThat I can tell you too. The Archbishop\nOf Canterbury, accompanied with other\nLearned and reverend fathers of his order,\nHeld a late court at Dunstable, six miles off\nFrom Ampthill where the princess lay; to which\nShe was often cited by them, but appear'd not:\nAnd, to be short, for not appearance and\nThe king's late scruple, by the main assent\nOf all these learned men she was divorced,\nAnd the late marriage made of none effect\nSince which she was removed to Kimbolton,\nWhere she remains now sick.\n\nSecond Gentleman:\nAlas, good lady!\nThe trumpets sound: stand close, the queen is coming.\n\nSecond Gentleman:\nA royal train, believe me. These I know:\nWho's that that bears the sceptre?\n\nFirst Gentleman:\nMarquess Dorset:\nAnd that the Earl of Surrey, with the rod.\n\nSecond Gentleman:\nA bold brave gentleman. That should be\nThe Duke of Suffolk?\n\nFirst Gentleman:\n'Tis the same: high-steward.\n\nSecond Gentleman:\nAnd that my Lord of Norfolk?\n\nFirst Gentleman:\nYes;\n\nSecond Gentleman:\nHeaven bless thee!\nThou hast the sweetest face I ever look'd on.\nSir, as I have a soul, she is an angel;\nOur king has all the Indies in his arms,\nAnd more and richer, when he strains that lady:\nI cannot blame his conscience.\n\nFirst Gentleman:\nThey that bear\nThe cloth of honour over her, are four barons\nOf the Cinque-ports.\n\nSecond Gentleman:\nThose men are happy; and so are all are near her.\nI take it, she that carries up the train\nIs that old noble lady, Duchess of Norfolk.\n\nFirst Gentleman:\nIt is; and all the rest are countesses.\n\nSecond Gentleman:\nTheir coronets say so. These are stars indeed;\nAnd sometimes falling ones.\n\nFirst Gentleman:\nNo more of that.\n\nFirst Gentleman:\nGod save you, sir! where have you been broiling?\n\nThird Gentleman:\nAmong the crowd i' the Abbey; where a finger\nCould not be wedged in more: I am stifled\nWith the mere rankness of their joy.\n\nSecond Gentleman:\nYou saw\nThe ceremony?\n\nThird Gentleman:\nThat I did.\n\nFirst Gentleman:\nHow was it?\n\nThird Gentleman:\nWell worth the seeing.\n\nSecond Gentleman:\nGood sir, speak it to us.\n\nThird Gentleman:\nAs well as I am able. The rich stream\nOf lords and ladies, having brought the queen\nTo a prepared place in the choir, fell off\nA distance from her; while her grace sat down\nTo rest awhile, some half an hour or so,\nIn a rich chair of state, opposing freely\nThe beauty of her person to the people.\nBelieve me, sir, she is the goodliest woman\nThat ever lay by man: which when the people\nHad the full view of, such a noise arose\nAs the shrouds make at sea in a stiff tempest,\nAs loud, and to as many tunes: hats, cloaks--\nDoublets, I think,--flew up; and had their faces\nBeen loose, this day they had been lost. Such joy\nI never saw before. Great-bellied women,\nThat had not half a week to go, like rams\nIn the old time of war, would shake the press,\nAnd make 'em reel before 'em. No man living\nCould say 'This is my wife' there; all were woven\nSo strangely in one piece.\n\nSecond Gentleman:\nBut, what follow'd?\n\nThird Gentleman:\nAt length her grace rose, and with modest paces\nCame to the altar; where she kneel'd, and saint-like\nCast her fair eyes to heaven and pray'd devoutly.\nThen rose again and bow'd her to the people:\nWhen by the Archbishop of Canterbury\nShe had all the royal makings of a queen;\nAs holy oil, Edward Confessor's crown,\nThe rod, and bird of peace, and all such emblems\nLaid nobly on her: which perform'd, the choir,\nWith all the choicest music of the kingdom,\nTogether sung 'Te Deum.' So she parted,\nAnd with the same full state paced back again\nTo York-place, where the feast is held.\n\nFirst Gentleman:\nSir,\nYou must no more call it York-place, that's past;\nFor, since the cardinal fell, that title's lost:\n'Tis now the king's, and call'd Whitehall.\n\nThird Gentleman:\nI know it;\nBut 'tis so lately alter'd, that the old name\nIs fresh about me.\n\nSecond Gentleman:\nWhat two reverend bishops\nWere those that went on each side of the queen?\n\nThird Gentleman:\nStokesly and Gardiner; the one of Winchester,\nNewly preferr'd from the king's secretary,\nThe other, London.\n\nSecond Gentleman:\nHe of Winchester\nIs held no great good lover of the archbishop's,\nThe virtuous Cranmer.\n\nThird Gentleman:\nAll the land knows that:\nHowever, yet there is no great breach; when it comes,\nCranmer will find a friend will not shrink from him.\n\nSecond Gentleman:\nWho may that be, I pray you?\n\nThird Gentleman:\nThomas Cromwell;\nA man in much esteem with the king, and truly\nA worthy friend. The king has made him master\nO' the jewel house,\nAnd one, already, of the privy council.\n\nSecond Gentleman:\nHe will deserve more.\n\nThird Gentleman:\nYes, without all doubt.\nCome, gentlemen, ye shall go my way, which\nIs to the court, and there ye shall be my guests:\nSomething I can command. As I walk thither,\nI'll tell ye more.\n\nBoth:\nYou may command us, sir.\n\nGRIFFITH:\nHow does your grace?\n\nKATHARINE:\nO Griffith, sick to death!\nMy legs, like loaden branches, bow to the earth,\nWilling to leave their burthen. Reach a chair:\nSo; now, methinks, I feel a little ease.\nDidst thou not tell me, Griffith, as thou led'st me,\nThat the great child of honour, Cardinal Wolsey, Was dead?\n\nGRIFFITH:\nYes, madam; but I think your grace,\nOut of the pain you suffer'd, gave no ear to't.\n\nKATHARINE:\nPrithee, good Griffith, tell me how he died:\nIf well, he stepp'd before me, happily\nFor my example.\n\nGRIFFITH:\nWell, the voice goes, madam:\nFor after the stout Earl Northumberland\nArrested him at York, and brought him forward,\nAs a man sorely tainted, to his answer,\nHe fell sick suddenly, and grew so ill\nHe could not sit his mule.\n\nKATHARINE:\nAlas, poor man!\n\nGRIFFITH:\nAt last, with easy roads, he came to Leicester,\nLodged in the abbey; where the reverend abbot,\nWith all his covent, honourably received him;\nTo whom he gave these words, 'O, father abbot,\nAn old man, broken with the storms of state,\nIs come to lay his weary bones among ye;\nGive him a little earth for charity!'\nSo went to bed; where eagerly his sickness\nPursued him still: and, three nights after this,\nAbout the hour of eight, which he himself\nForetold should be his last, full of repentance,\nContinual meditations, tears, and sorrows,\nHe gave his honours to the world again,\nHis blessed part to heaven, and slept in peace.\n\nKATHARINE:\nSo may he rest; his faults lie gently on him!\nYet thus far, Griffith, give me leave to speak him,\nAnd yet with charity. He was a man\nOf an unbounded stomach, ever ranking\nHimself with princes; one that, by suggestion,\nTied all the kingdom: simony was fair-play;\nHis own opinion was his law: i' the presence\nHe would say untruths; and be ever double\nBoth in his words and meaning: he was never,\nBut where he meant to ruin, pitiful:\nHis promises were, as he then was, mighty;\nBut his performance, as he is now, nothing:\nOf his own body he was ill, and gave\nThe clergy in example.\n\nGRIFFITH:\nNoble madam,\nMen's evil manners live in brass; their virtues\nWe write in water. May it please your highness\nTo hear me speak his good now?\n\nKATHARINE:\nYes, good Griffith;\nI were malicious else.\n\nGRIFFITH:\nThis cardinal,\nThough from an humble stock, undoubtedly\nWas fashion'd to much honour from his cradle.\nHe was a scholar, and a ripe and good one;\nExceeding wise, fair-spoken, and persuading:\nLofty and sour to them that loved him not;\nBut to those men that sought him sweet as summer.\nAnd though he were unsatisfied in getting,\nWhich was a sin, yet in bestowing, madam,\nHe was most princely: ever witness for him\nThose twins Of learning that he raised in you,\nIpswich and Oxford! one of which fell with him,\nUnwilling to outlive the good that did it;\nThe other, though unfinish'd, yet so famous,\nSo excellent in art, and still so rising,\nThat Christendom shall ever speak his virtue.\nHis overthrow heap'd happiness upon him;\nFor then, and not till then, he felt himself,\nAnd found the blessedness of being little:\nAnd, to add greater honours to his age\nThan man could give him, he died fearing God.\n\nKATHARINE:\nAfter my death I wish no other herald,\nNo other speaker of my living actions,\nTo keep mine honour from corruption,\nBut such an honest chronicler as Griffith.\nWhom I most hated living, thou hast made me,\nWith thy religious truth and modesty,\nNow in his ashes honour: peace be with him!\nPatience, be near me still; and set me lower:\nI have not long to trouble thee. Good Griffith,\nCause the musicians play me that sad note\nI named my knell, whilst I sit meditating\nOn that celestial harmony I go to.\n\nGRIFFITH:\nShe is asleep: good wench, let's sit down quiet,\nFor fear we wake her: softly, gentle Patience.\n\nKATHARINE:\nSpirits of peace, where are ye? are ye all gone,\nAnd leave me here in wretchedness behind ye?\n\nGRIFFITH:\nMadam, we are here.\n\nKATHARINE:\nIt is not you I call for:\nSaw ye none enter since I slept?\n\nGRIFFITH:\nNone, madam.\n\nKATHARINE:\nNo? Saw you not, even now, a blessed troop\nInvite me to a banquet; whose bright faces\nCast thousand beams upon me, like the sun?\nThey promised me eternal happiness;\nAnd brought me garlands, Griffith, which I feel\nI am not worthy yet to wear: I shall, assuredly.\n\nGRIFFITH:\nI am most joyful, madam, such good dreams\nPossess your fancy.\n\nKATHARINE:\nBid the music leave,\nThey are harsh and heavy to me.\n\nPATIENCE:\nDo you note\nHow much her grace is alter'd on the sudden?\nHow long her face is drawn? how pale she looks,\nAnd of an earthy cold? Mark her eyes!\n\nGRIFFITH:\nShe is going, wench: pray, pray.\n\nPATIENCE:\nHeaven comfort her!\n\nMessenger:\nAn't like your grace,--\n\nKATHARINE:\nYou are a saucy fellow:\nDeserve we no more reverence?\n\nGRIFFITH:\nYou are to blame,\nKnowing she will not lose her wonted greatness,\nTo use so rude behavior; go to, kneel.\n\nMessenger:\nI humbly do entreat your highness' pardon;\nMy haste made me unmannerly. There is staying\nA gentleman, sent from the king, to see you.\n\nKATHARINE:\nAdmit him entrance, Griffith: but this fellow\nLet me ne'er see again.\nIf my sight fail not,\nYou should be lord ambassador from the emperor,\nMy royal nephew, and your name Capucius.\n\nCAPUCIUS:\nMadam, the same; your servant.\n\nKATHARINE:\nO, my lord,\nThe times and titles now are alter'd strangely\nWith me since first you knew me. But, I pray you,\nWhat is your pleasure with me?\n\nCAPUCIUS:\nNoble lady,\nFirst mine own service to your grace; the next,\nThe king's request that I would visit you;\nWho grieves much for your weakness, and by me\nSends you his princely commendations,\nAnd heartily entreats you take good comfort.\n\nKATHARINE:\nO my good lord, that comfort comes too late;\n'Tis like a pardon after execution:\nThat gentle physic, given in time, had cured me;\nBut now I am past an comforts here, but prayers.\nHow does his highness?\n\nCAPUCIUS:\nMadam, in good health.\n\nKATHARINE:\nSo may he ever do! and ever flourish,\nWhen I shall dwell with worms, and my poor name\nBanish'd the kingdom! Patience, is that letter,\nI caused you write, yet sent away?\n\nPATIENCE:\nNo, madam.\n\nKATHARINE:\nSir, I most humbly pray you to deliver\nThis to my lord the king.\n\nCAPUCIUS:\nMost willing, madam.\n\nKATHARINE:\nIn which I have commended to his goodness\nThe model of our chaste loves, his young daughter;\nThe dews of heaven fall thick in blessings on her!\nBeseeching him to give her virtuous breeding--\nShe is young, and of a noble modest nature,\nI hope she will deserve well,--and a little\nTo love her for her mother's sake, that loved him,\nHeaven knows how dearly. My next poor petition\nIs, that his noble grace would have some pity\nUpon my wretched women, that so long\nHave follow'd both my fortunes faithfully:\nOf which there is not one, I dare avow,\nAnd now I should not lie, but will deserve\nFor virtue and true beauty of the soul,\nFor honesty and decent carriage,\nA right good husband, let him be a noble\nAnd, sure, those men are happy that shall have 'em.\nThe last is, for my men; they are the poorest,\nBut poverty could never draw 'em from me;\nThat they may have their wages duly paid 'em,\nAnd something over to remember me by:\nIf heaven had pleased to have given me longer life\nAnd able means, we had not parted thus.\nThese are the whole contents: and, good my lord,\nBy that you love the dearest in this world,\nAs you wish Christian peace to souls departed,\nStand these poor people's friend, and urge the king\nTo do me this last right.\n\nCAPUCIUS:\nBy heaven, I will,\nOr let me lose the fashion of a man!\n\nKATHARINE:\nI thank you, honest lord. Remember me\nIn all humility unto his highness:\nSay his long trouble now is passing\nOut of this world; tell him, in death I bless'd him,\nFor so I will. Mine eyes grow dim. Farewell,\nMy lord. Griffith, farewell. Nay, Patience,\nYou must not leave me yet: I must to bed;\nCall in more women. When I am dead, good wench,\nLet me be used with honour: strew me over\nWith maiden flowers, that all the world may know\nI was a chaste wife to my grave: embalm me,\nThen lay me forth: although unqueen'd, yet like\nA queen, and daughter to a king, inter me.\nI can no more.\n\nGARDINER:\nIt's one o'clock, boy, is't not?\n\nBoy:\nIt hath struck.\n\nGARDINER:\nThese should be hours for necessities,\nNot for delights; times to repair our nature\nWith comforting repose, and not for us\nTo waste these times. Good hour of night, Sir Thomas!\nWhither so late?\n\nLOVELL:\nCame you from the king, my lord\n\nGARDINER:\nI did, Sir Thomas: and left him at primero\nWith the Duke of Suffolk.\n\nLOVELL:\nI must to him too,\nBefore he go to bed. I'll take my leave.\n\nGARDINER:\nNot yet, Sir Thomas Lovell. What's the matter?\nIt seems you are in haste: an if there be\nNo great offence belongs to't, give your friend\nSome touch of your late business: affairs, that walk,\nAs they say spirits do, at midnight, have\nIn them a wilder nature than the business\nThat seeks dispatch by day.\n\nLOVELL:\nMy lord, I love you;\nAnd durst commend a secret to your ear\nMuch weightier than this work. The queen's in labour,\nThey say, in great extremity; and fear'd\nShe'll with the labour end.\n\nGARDINER:\nThe fruit she goes with\nI pray for heartily, that it may find\nGood time, and live: but for the stock, Sir Thomas,\nI wish it grubb'd up now.\n\nLOVELL:\nMethinks I could\nCry the amen; and yet my conscience says\nShe's a good creature, and, sweet lady, does\nDeserve our better wishes.\n\nGARDINER:\nBut, sir, sir,\nHear me, Sir Thomas: you're a gentleman\nOf mine own way; I know you wise, religious;\nAnd, let me tell you, it will ne'er be well,\n'Twill not, Sir Thomas Lovell, take't of me,\nTill Cranmer, Cromwell, her two hands, and she,\nSleep in their graves.\n\nLOVELL:\nNow, sir, you speak of two\nThe most remark'd i' the kingdom. As for Cromwell,\nBeside that of the jewel house, is made master\nO' the rolls, and the king's secretary; further, sir,\nStands in the gap and trade of moe preferments,\nWith which the time will load him. The archbishop\nIs the king's hand and tongue; and who dare speak\nOne syllable against him?\n\nGARDINER:\nYes, yes, Sir Thomas,\nThere are that dare; and I myself have ventured\nTo speak my mind of him: and indeed this day,\nSir, I may tell it you, I think I have\nIncensed the lords o' the council, that he is,\nFor so I know he is, they know he is,\nA most arch heretic, a pestilence\nThat does infect the land: with which they moved\nHave broken with the king; who hath so far\nGiven ear to our complaint, of his great grace\nAnd princely care foreseeing those fell mischiefs\nOur reasons laid before him, hath commanded\nTo-morrow morning to the council-board\nHe be convented. He's a rank weed, Sir Thomas,\nAnd we must root him out. From your affairs\nI hinder you too long: good night, Sir Thomas.\n\nLOVELL:\nMany good nights, my lord: I rest your servant.\n\nKING HENRY VIII:\nCharles, I will play no more tonight;\nMy mind's not on't; you are too hard for me.\n\nSUFFOLK:\nSir, I did never win of you before.\n\nKING HENRY VIII:\nBut little, Charles;\nNor shall not, when my fancy's on my play.\nNow, Lovell, from the queen what is the news?\n\nLOVELL:\nI could not personally deliver to her\nWhat you commanded me, but by her woman\nI sent your message; who return'd her thanks\nIn the great'st humbleness, and desired your highness\nMost heartily to pray for her.\n\nKING HENRY VIII:\nWhat say'st thou, ha?\nTo pray for her? what, is she crying out?\n\nLOVELL:\nSo said her woman; and that her sufferance made\nAlmost each pang a death.\n\nKING HENRY VIII:\nAlas, good lady!\n\nSUFFOLK:\nGod safely quit her of her burthen, and\nWith gentle travail, to the gladding of\nYour highness with an heir!\n\nKING HENRY VIII:\n'Tis midnight, Charles;\nPrithee, to bed; and in thy prayers remember\nThe estate of my poor queen. Leave me alone;\nFor I must think of that which company\nWould not be friendly to.\n\nSUFFOLK:\nI wish your highness\nA quiet night; and my good mistress will\nRemember in my prayers.\n\nKING HENRY VIII:\nCharles, good night.\nWell, sir, what follows?\n\nDENNY:\nSir, I have brought my lord the archbishop,\nAs you commanded me.\n\nKING HENRY VIII:\nHa! Canterbury?\n\nDENNY:\nAy, my good lord.\n\nKING HENRY VIII:\n'Tis true: where is he, Denny?\n\nDENNY:\nHe attends your highness' pleasure.\n\nLOVELL:\n\nKING HENRY VIII:\nAvoid the gallery.\nHa! I have said. Be gone. What!\n\nCRANMER:\n\nKING HENRY VIII:\nHow now, my lord! you desire to know\nWherefore I sent for you.\n\nCRANMER:\n\nKING HENRY VIII:\nPray you, arise,\nMy good and gracious Lord of Canterbury.\nCome, you and I must walk a turn together;\nI have news to tell you: come, come, give me your hand.\nAh, my good lord, I grieve at what I speak,\nAnd am right sorry to repeat what follows\nI have, and most unwillingly, of late\nHeard many grievous, I do say, my lord,\nGrievous complaints of you; which, being consider'd,\nHave moved us and our council, that you shall\nThis morning come before us; where, I know,\nYou cannot with such freedom purge yourself,\nBut that, till further trial in those charges\nWhich will require your answer, you must take\nYour patience to you, and be well contented\nTo make your house our Tower: you a brother of us,\nIt fits we thus proceed, or else no witness\nWould come against you.\n\nCRANMER:\n\nKING HENRY VIII:\nStand up, good Canterbury:\nThy truth and thy integrity is rooted\nIn us, thy friend: give me thy hand, stand up:\nPrithee, let's walk. Now, by my holidame.\nWhat manner of man are you? My lord, I look'd\nYou would have given me your petition, that\nI should have ta'en some pains to bring together\nYourself and your accusers; and to have heard you,\nWithout indurance, further.\n\nCRANMER:\nMost dread liege,\nThe good I stand on is my truth and honesty:\nIf they shall fail, I, with mine enemies,\nWill triumph o'er my person; which I weigh not,\nBeing of those virtues vacant. I fear nothing\nWhat can be said against me.\n\nKING HENRY VIII:\nKnow you not\nHow your state stands i' the world, with the whole world?\nYour enemies are many, and not small; their practises\nMust bear the same proportion; and not ever\nThe justice and the truth o' the question carries\nThe due o' the verdict with it: at what ease\nMight corrupt minds procure knaves as corrupt\nTo swear against you? such things have been done.\nYou are potently opposed; and with a malice\nOf as great size. Ween you of better luck,\nI mean, in perjured witness, than your master,\nWhose minister you are, whiles here he lived\nUpon this naughty earth? Go to, go to;\nYou take a precipice for no leap of danger,\nAnd woo your own destruction.\n\nCRANMER:\nGod and your majesty\nProtect mine innocence, or I fall into\nThe trap is laid for me!\n\nKING HENRY VIII:\nBe of good cheer;\nThey shall no more prevail than we give way to.\nKeep comfort to you; and this morning see\nYou do appear before them: if they shall chance,\nIn charging you with matters, to commit you,\nThe best persuasions to the contrary\nFail not to use, and with what vehemency\nThe occasion shall instruct you: if entreaties\nWill render you no remedy, this ring\nDeliver them, and your appeal to us\nThere make before them. Look, the good man weeps!\nHe's honest, on mine honour. God's blest mother!\nI swear he is true--hearted; and a soul\nNone better in my kingdom. Get you gone,\nAnd do as I have bid you.\nHe has strangled\nHis language in his tears.\n\nGentleman:\n\nOld Lady:\nI'll not come back; the tidings that I bring\nWill make my boldness manners. Now, good angels\nFly o'er thy royal head, and shade thy person\nUnder their blessed wings!\n\nKING HENRY VIII:\nNow, by thy looks\nI guess thy message. Is the queen deliver'd?\nSay, ay; and of a boy.\n\nOld Lady:\nAy, ay, my liege;\nAnd of a lovely boy: the God of heaven\nBoth now and ever bless her! 'tis a girl,\nPromises boys hereafter. Sir, your queen\nDesires your visitation, and to be\nAcquainted with this stranger 'tis as like you\nAs cherry is to cherry.\n\nKING HENRY VIII:\nLovell!\n\nLOVELL:\nSir?\n\nKING HENRY VIII:\nGive her an hundred marks. I'll to the queen.\n\nOld Lady:\nAn hundred marks! By this light, I'll ha' more.\nAn ordinary groom is for such payment.\nI will have more, or scold it out of him.\nSaid I for this, the girl was like to him?\nI will have more, or else unsay't; and now,\nWhile it is hot, I'll put it to the issue.\n\nCRANMER:\nI hope I am not too late; and yet the gentleman,\nThat was sent to me from the council, pray'd me\nTo make great haste. All fast? what means this? Ho!\nWho waits there? Sure, you know me?\n\nKeeper:\nYes, my lord;\nBut yet I cannot help you.\n\nCRANMER:\nWhy?\n\nKeeper:\nYour grace must wait till you be call'd for.\n\nCRANMER:\nSo.\n\nDOCTOR BUTTS:\n\nCRANMER:\n\nDOCTOR BUTTS:\nI'll show your grace the strangest sight--\n\nKING HENRY VIII:\nWhat's that, Butts?\n\nDOCTOR BUTTS:\nI think your highness saw this many a day.\n\nKING HENRY VIII:\nBody o' me, where is it?\n\nDOCTOR BUTTS:\nThere, my lord:\nThe high promotion of his grace of Canterbury;\nWho holds his state at door, 'mongst pursuivants,\nPages, and footboys.\n\nKING HENRY VIII:\nHa! 'tis he, indeed:\nIs this the honour they do one another?\n'Tis well there's one above 'em yet. I had thought\nThey had parted so much honesty among 'em\nAt least, good manners, as not thus to suffer\nA man of his place, and so near our favour,\nTo dance attendance on their lordships' pleasures,\nAnd at the door too, like a post with packets.\nBy holy Mary, Butts, there's knavery:\nLet 'em alone, and draw the curtain close:\nWe shall hear more anon.\n\nChancellor:\nSpeak to the business, master-secretary:\nWhy are we met in council?\n\nCROMWELL:\nPlease your honours,\nThe chief cause concerns his grace of Canterbury.\n\nGARDINER:\nHas he had knowledge of it?\n\nCROMWELL:\nYes.\n\nNORFOLK:\nWho waits there?\n\nKeeper:\nWithout, my noble lords?\n\nGARDINER:\nYes.\n\nKeeper:\nMy lord archbishop;\nAnd has done half an hour, to know your pleasures.\n\nChancellor:\nLet him come in.\n\nKeeper:\nYour grace may enter now.\n\nChancellor:\nMy good lord archbishop, I'm very sorry\nTo sit here at this present, and behold\nThat chair stand empty: but we all are men,\nIn our own natures frail, and capable\nOf our flesh; few are angels: out of which frailty\nAnd want of wisdom, you, that best should teach us,\nHave misdemean'd yourself, and not a little,\nToward the king first, then his laws, in filling\nThe whole realm, by your teaching and your chaplains,\nFor so we are inform'd, with new opinions,\nDivers and dangerous; which are heresies,\nAnd, not reform'd, may prove pernicious.\n\nGARDINER:\nWhich reformation must be sudden too,\nMy noble lords; for those that tame wild horses\nPace 'em not in their hands to make 'em gentle,\nBut stop their mouths with stubborn bits, and spur 'em,\nTill they obey the manage. If we suffer,\nOut of our easiness and childish pity\nTo one man's honour, this contagious sickness,\nFarewell all physic: and what follows then?\nCommotions, uproars, with a general taint\nOf the whole state: as, of late days, our neighbours,\nThe upper Germany, can dearly witness,\nYet freshly pitied in our memories.\n\nCRANMER:\nMy good lords, hitherto, in all the progress\nBoth of my life and office, I have labour'd,\nAnd with no little study, that my teaching\nAnd the strong course of my authority\nMight go one way, and safely; and the end\nWas ever, to do well: nor is there living,\nI speak it with a single heart, my lords,\nA man that more detests, more stirs against,\nBoth in his private conscience and his place,\nDefacers of a public peace, than I do.\nPray heaven, the king may never find a heart\nWith less allegiance in it! Men that make\nEnvy and crooked malice nourishment\nDare bite the best. I do beseech your lordships,\nThat, in this case of justice, my accusers,\nBe what they will, may stand forth face to face,\nAnd freely urge against me.\n\nSUFFOLK:\nNay, my lord,\nThat cannot be: you are a counsellor,\nAnd, by that virtue, no man dare accuse you.\n\nGARDINER:\nMy lord, because we have business of more moment,\nWe will be short with you. 'Tis his highness' pleasure,\nAnd our consent, for better trial of you,\nFrom hence you be committed to the Tower;\nWhere, being but a private man again,\nYou shall know many dare accuse you boldly,\nMore than, I fear, you are provided for.\n\nCRANMER:\nAh, my good Lord of Winchester, I thank you;\nYou are always my good friend; if your will pass,\nI shall both find your lordship judge and juror,\nYou are so merciful: I see your end;\n'Tis my undoing: love and meekness, lord,\nBecome a churchman better than ambition:\nWin straying souls with modesty again,\nCast none away. That I shall clear myself,\nLay all the weight ye can upon my patience,\nI make as little doubt, as you do conscience\nIn doing daily wrongs. I could say more,\nBut reverence to your calling makes me modest.\n\nGARDINER:\nMy lord, my lord, you are a sectary,\nThat's the plain truth: your painted gloss discovers,\nTo men that understand you, words and weakness.\n\nCROMWELL:\nMy Lord of Winchester, you are a little,\nBy your good favour, too sharp; men so noble,\nHowever faulty, yet should find respect\nFor what they have been: 'tis a cruelty\nTo load a falling man.\n\nGARDINER:\nGood master secretary,\nI cry your honour mercy; you may, worst\nOf all this table, say so.\n\nCROMWELL:\nWhy, my lord?\n\nGARDINER:\nDo not I know you for a favourer\nOf this new sect? ye are not sound.\n\nCROMWELL:\nNot sound?\n\nGARDINER:\nNot sound, I say.\n\nCROMWELL:\nWould you were half so honest!\nMen's prayers then would seek you, not their fears.\n\nGARDINER:\nI shall remember this bold language.\n\nCROMWELL:\nDo.\nRemember your bold life too.\n\nChancellor:\nThis is too much;\nForbear, for shame, my lords.\n\nGARDINER:\nI have done.\n\nCROMWELL:\nAnd I.\n\nChancellor:\nThen thus for you, my lord: it stands agreed,\nI take it, by all voices, that forthwith\nYou be convey'd to the Tower a prisoner;\nThere to remain till the king's further pleasure\nBe known unto us: are you all agreed, lords?\n\nAll:\nWe are.\n\nCRANMER:\nIs there no other way of mercy,\nBut I must needs to the Tower, my lords?\n\nGARDINER:\nWhat other\nWould you expect? you are strangely troublesome.\nLet some o' the guard be ready there.\n\nCRANMER:\nFor me?\nMust I go like a traitor thither?\n\nGARDINER:\nReceive him,\nAnd see him safe i' the Tower.\n\nCRANMER:\nStay, good my lords,\nI have a little yet to say. Look there, my lords;\nBy virtue of that ring, I take my cause\nOut of the gripes of cruel men, and give it\nTo a most noble judge, the king my master.\n\nChamberlain:\nThis is the king's ring.\n\nSURREY:\n'Tis no counterfeit.\n\nSUFFOLK:\n'Tis the right ring, by heaven: I told ye all,\nWhen ye first put this dangerous stone a-rolling,\n'Twould fall upon ourselves.\n\nNORFOLK:\nDo you think, my lords,\nThe king will suffer but the little finger\nOf this man to be vex'd?\n\nChancellor:\n'Tis now too certain:\nHow much more is his life in value with him?\nWould I were fairly out on't!\n\nCROMWELL:\nMy mind gave me,\nIn seeking tales and informations\nAgainst this man, whose honesty the devil\nAnd his disciples only envy at,\nYe blew the fire that burns ye: now have at ye!\n\nGARDINER:\nDread sovereign, how much are we bound to heaven\nIn daily thanks, that gave us such a prince;\nNot only good and wise, but most religious:\nOne that, in all obedience, makes the church\nThe chief aim of his honour; and, to strengthen\nThat holy duty, out of dear respect,\nHis royal self in judgment comes to hear\nThe cause betwixt her and this great offender.\n\nKING HENRY VIII:\nYou were ever good at sudden commendations,\nBishop of Winchester. But know, I come not\nTo hear such flattery now, and in my presence;\nThey are too thin and bare to hide offences.\nTo me you cannot reach, you play the spaniel,\nAnd think with wagging of your tongue to win me;\nBut, whatsoe'er thou takest me for, I'm sure\nThou hast a cruel nature and a bloody.\nGood man, sit down. Now let me see the proudest\nHe, that dares most, but wag his finger at thee:\nBy all that's holy, he had better starve\nThan but once think this place becomes thee not.\n\nSURREY:\nMay it please your grace,--\n\nKING HENRY VIII:\nNo, sir, it does not please me.\nI had thought I had had men of some understanding\nAnd wisdom of my council; but I find none.\nWas it discretion, lords, to let this man,\nThis good man,--few of you deserve that title,--\nThis honest man, wait like a lousy footboy\nAt chamber--door? and one as great as you are?\nWhy, what a shame was this! Did my commission\nBid ye so far forget yourselves? I gave ye\nPower as he was a counsellor to try him,\nNot as a groom: there's some of ye, I see,\nMore out of malice than integrity,\nWould try him to the utmost, had ye mean;\nWhich ye shall never have while I live.\n\nChancellor:\nThus far,\nMy most dread sovereign, may it like your grace\nTo let my tongue excuse all. What was purposed\nConcerning his imprisonment, was rather,\nIf there be faith in men, meant for his trial,\nAnd fair purgation to the world, than malice,\nI'm sure, in me.\n\nKING HENRY VIII:\nWell, well, my lords, respect him;\nTake him, and use him well, he's worthy of it.\nI will say thus much for him, if a prince\nMay be beholding to a subject, I\nAm, for his love and service, so to him.\nMake me no more ado, but all embrace him:\nBe friends, for shame, my lords! My Lord of\nCanterbury,\nI have a suit which you must not deny me;\nThat is, a fair young maid that yet wants baptism,\nYou must be godfather, and answer for her.\n\nCRANMER:\nThe greatest monarch now alive may glory\nIn such an honour: how may I deserve it\nThat am a poor and humble subject to you?\n\nKING HENRY VIII:\nCome, come, my lord, you'ld spare your spoons: you\nshall have two noble partners with you; the old\nDuchess of Norfolk, and Lady Marquess Dorset: will\nthese please you?\nOnce more, my Lord of Winchester, I charge you,\nEmbrace and love this man.\n\nGARDINER:\nWith a true heart\nAnd brother-love I do it.\n\nCRANMER:\nAnd let heaven\nWitness, how dear I hold this confirmation.\n\nKING HENRY VIII:\nGood man, those joyful tears show thy true heart:\nThe common voice, I see, is verified\nOf thee, which says thus, 'Do my Lord of Canterbury\nA shrewd turn, and he is your friend for ever.'\nCome, lords, we trifle time away; I long\nTo have this young one made a Christian.\nAs I have made ye one, lords, one remain;\nSo I grow stronger, you more honour gain.\n\nPorter:\nYou'll leave your noise anon, ye rascals: do you\ntake the court for Paris-garden? ye rude slaves,\nleave your gaping.\nGood master porter, I belong to the larder.\n\nPorter:\nBelong to the gallows, and be hanged, ye rogue! is\nthis a place to roar in? Fetch me a dozen crab-tree\nstaves, and strong ones: these are but switches to\n'em. I'll scratch your heads: you must be seeing\nchristenings? do you look for ale and cakes here,\nyou rude rascals?\n\nMan:\nPray, sir, be patient: 'tis as much impossible--\nUnless we sweep 'em from the door with cannons--\nTo scatter 'em, as 'tis to make 'em sleep\nOn May-day morning; which will never be:\nWe may as well push against Powle's, as stir em.\n\nPorter:\nHow got they in, and be hang'd?\n\nMan:\nAlas, I know not; how gets the tide in?\nAs much as one sound cudgel of four foot--\nYou see the poor remainder--could distribute,\nI made no spare, sir.\n\nPorter:\nYou did nothing, sir.\n\nMan:\nI am not Samson, nor Sir Guy, nor Colbrand,\nTo mow 'em down before me: but if I spared any\nThat had a head to hit, either young or old,\nHe or she, cuckold or cuckold-maker,\nLet me ne'er hope to see a chine again\nAnd that I would not for a cow, God save her!\nDo you hear, master porter?\n\nPorter:\nI shall be with you presently, good master puppy.\nKeep the door close, sirrah.\n\nMan:\nWhat would you have me do?\n\nPorter:\nWhat should you do, but knock 'em down by the\ndozens? Is this Moorfields to muster in? or have\nwe some strange Indian with the great tool come to\ncourt, the women so besiege us? Bless me, what a\nfry of fornication is at door! On my Christian\nconscience, this one christening will beget a\nthousand; here will be father, godfather, and all together.\n\nMan:\nThe spoons will be the bigger, sir. There is a\nfellow somewhat near the door, he should be a\nbrazier by his face, for, o' my conscience, twenty\nof the dog-days now reign in's nose; all that stand\nabout him are under the line, they need no other\npenance: that fire-drake did I hit three times on\nthe head, and three times was his nose discharged\nagainst me; he stands there, like a mortar-piece, to\nblow us. There was a haberdasher's wife of small\nwit near him, that railed upon me till her pinked\nporringer fell off her head, for kindling such a\ncombustion in the state. I missed the meteor once,\nand hit that woman; who cried out 'Clubs!' when I\nmight see from far some forty truncheoners draw to\nher succor, which were the hope o' the Strand, where\nshe was quartered. They fell on; I made good my\nplace: at length they came to the broom-staff to\nme; I defied 'em still: when suddenly a file of\nboys behind 'em, loose shot, delivered such a shower\nof pebbles, that I was fain to draw mine honour in,\nand let 'em win the work: the devil was amongst\n'em, I think, surely.\n\nPorter:\nThese are the youths that thunder at a playhouse,\nand fight for bitten apples; that no audience, but\nthe tribulation of Tower-hill, or the limbs of\nLimehouse, their dear brothers, are able to endure.\nI have some of 'em in Limbo Patrum, and there they\nare like to dance these three days; besides the\nrunning banquet of two beadles that is to come.\n\nChamberlain:\nMercy o' me, what a multitude are here!\nThey grow still too; from all parts they are coming,\nAs if we kept a fair here! Where are these porters,\nThese lazy knaves? Ye have made a fine hand, fellows:\nThere's a trim rabble let in: are all these\nYour faithful friends o' the suburbs? We shall have\nGreat store of room, no doubt, left for the ladies,\nWhen they pass back from the christening.\n\nPorter:\nAn't please\nyour honour,\nWe are but men; and what so many may do,\nNot being torn a-pieces, we have done:\nAn army cannot rule 'em.\n\nChamberlain:\nAs I live,\nIf the king blame me for't, I'll lay ye all\nBy the heels, and suddenly; and on your heads\nClap round fines for neglect: ye are lazy knaves;\nAnd here ye lie baiting of bombards, when\nYe should do service. Hark! the trumpets sound;\nThey're come already from the christening:\nGo, break among the press, and find a way out\nTo let the troop pass fairly; or I'll find\nA Marshalsea shall hold ye play these two months.\n\nPorter:\nMake way there for the princess.\n\nMan:\nYou great fellow,\nStand close up, or I'll make your head ache.\n\nPorter:\nYou i' the camlet, get up o' the rail;\nI'll peck you o'er the pales else.\n\nGarter:\nHeaven, from thy endless goodness, send prosperous\nlife, long, and ever happy, to the high and mighty\nprincess of England, Elizabeth!\n\nCRANMER:\n\nKING HENRY VIII:\nThank you, good lord archbishop:\nWhat is her name?\n\nCRANMER:\nElizabeth.\n\nKING HENRY VIII:\nStand up, lord.\nWith this kiss take my blessing: God protect thee!\nInto whose hand I give thy life.\n\nCRANMER:\nAmen.\n\nKING HENRY VIII:\nMy noble gossips, ye have been too prodigal:\nI thank ye heartily; so shall this lady,\nWhen she has so much English.\n\nCRANMER:\nLet me speak, sir,\nFor heaven now bids me; and the words I utter\nLet none think flattery, for they'll find 'em truth.\nThis royal infant--heaven still move about her!--\nThough in her cradle, yet now promises\nUpon this land a thousand thousand blessings,\nWhich time shall bring to ripeness: she shall be--\nBut few now living can behold that goodness--\nA pattern to all princes living with her,\nAnd all that shall succeed: Saba was never\nMore covetous of wisdom and fair virtue\nThan this pure soul shall be: all princely graces,\nThat mould up such a mighty piece as this is,\nWith all the virtues that attend the good,\nShall still be doubled on her: truth shall nurse her,\nHoly and heavenly thoughts still counsel her:\nShe shall be loved and fear'd: her own shall bless her;\nHer foes shake like a field of beaten corn,\nAnd hang their heads with sorrow: good grows with her:\nIn her days every man shall eat in safety,\nUnder his own vine, what he plants; and sing\nThe merry songs of peace to all his neighbours:\nGod shall be truly known; and those about her\nFrom her shall read the perfect ways of honour,\nAnd by those claim their greatness, not by blood.\nNor shall this peace sleep with her: but as when\nThe bird of wonder dies, the maiden phoenix,\nHer ashes new create another heir,\nAs great in admiration as herself;\nSo shall she leave her blessedness to one,\nWhen heaven shall call her from this cloud of darkness,\nWho from the sacred ashes of her honour\nShall star-like rise, as great in fame as she was,\nAnd so stand fix'd: peace, plenty, love, truth, terror,\nThat were the servants to this chosen infant,\nShall then be his, and like a vine grow to him:\nWherever the bright sun of heaven shall shine,\nHis honour and the greatness of his name\nShall be, and make new nations: he shall flourish,\nAnd, like a mountain cedar, reach his branches\nTo all the plains about him: our children's children\nShall see this, and bless heaven.\n\nKING HENRY VIII:\nThou speakest wonders.\n\nCRANMER:\nShe shall be, to the happiness of England,\nAn aged princess; many days shall see her,\nAnd yet no day without a deed to crown it.\nWould I had known no more! but she must die,\nShe must, the saints must have her; yet a virgin,\nA most unspotted lily shall she pass\nTo the ground, and all the world shall mourn her.\n\nKING HENRY VIII:\nO lord archbishop,\nThou hast made me now a man! never, before\nThis happy child, did I get any thing:\nThis oracle of comfort has so pleased me,\nThat when I am in heaven I shall desire\nTo see what this child does, and praise my Maker.\nI thank ye all. To you, my good lord mayor,\nAnd your good brethren, I am much beholding;\nI have received much honour by your presence,\nAnd ye shall find me thankful. Lead the way, lords:\nYe must all see the queen, and she must thank ye,\nShe will be sick else. This day, no man think\nHas business at his house; for all shall stay:\nThis little one shall make it holiday.\n\n\n\nTROILUS:\nCall here my varlet; I'll unarm again:\nWhy should I war without the walls of Troy,\nThat find such cruel battle here within?\nEach Trojan that is master of his heart,\nLet him to field; Troilus, alas! hath none.\n\nPANDARUS:\nWill this gear ne'er be mended?\n\nTROILUS:\nThe Greeks are strong and skilful to their strength,\nFierce to their skill and to their fierceness valiant;\nBut I am weaker than a woman's tear,\nTamer than sleep, fonder than ignorance,\nLess valiant than the virgin in the night\nAnd skilless as unpractised infancy.\n\nPANDARUS:\nWell, I have told you enough of this: for my part,\nI'll not meddle nor make no further. He that will\nhave a cake out of the wheat must needs tarry the grinding.\n\nTROILUS:\nHave I not tarried?\n\nPANDARUS:\nAy, the grinding; but you must tarry\nthe bolting.\n\nTROILUS:\nHave I not tarried?\n\nPANDARUS:\nAy, the bolting, but you must tarry the leavening.\n\nTROILUS:\nStill have I tarried.\n\nPANDARUS:\nAy, to the leavening; but here's yet in the word\n'hereafter' the kneading, the making of the cake, the\nheating of the oven and the baking; nay, you must\nstay the cooling too, or you may chance to burn your lips.\n\nTROILUS:\nPatience herself, what goddess e'er she be,\nDoth lesser blench at sufferance than I do.\nAt Priam's royal table do I sit;\nAnd when fair Cressid comes into my thoughts,--\nSo, traitor! 'When she comes!' When is she thence?\n\nPANDARUS:\nWell, she looked yesternight fairer than ever I saw\nher look, or any woman else.\n\nTROILUS:\nI was about to tell thee:--when my heart,\nAs wedged with a sigh, would rive in twain,\nLest Hector or my father should perceive me,\nI have, as when the sun doth light a storm,\nBuried this sigh in wrinkle of a smile:\nBut sorrow, that is couch'd in seeming gladness,\nIs like that mirth fate turns to sudden sadness.\n\nPANDARUS:\nAn her hair were not somewhat darker than Helen's--\nwell, go to--there were no more comparison between\nthe women: but, for my part, she is my kinswoman; I\nwould not, as they term it, praise her: but I would\nsomebody had heard her talk yesterday, as I did. I\nwill not dispraise your sister Cassandra's wit, but--\n\nTROILUS:\nO Pandarus! I tell thee, Pandarus,--\nWhen I do tell thee, there my hopes lie drown'd,\nReply not in how many fathoms deep\nThey lie indrench'd. I tell thee I am mad\nIn Cressid's love: thou answer'st 'she is fair;'\nPour'st in the open ulcer of my heart\nHer eyes, her hair, her cheek, her gait, her voice,\nHandlest in thy discourse, O, that her hand,\nIn whose comparison all whites are ink,\nWriting their own reproach, to whose soft seizure\nThe cygnet's down is harsh and spirit of sense\nHard as the palm of ploughman: this thou tell'st me,\nAs true thou tell'st me, when I say I love her;\nBut, saying thus, instead of oil and balm,\nThou lay'st in every gash that love hath given me\nThe knife that made it.\n\nPANDARUS:\nI speak no more than truth.\n\nTROILUS:\nThou dost not speak so much.\n\nPANDARUS:\nFaith, I'll not meddle in't. Let her be as she is:\nif she be fair, 'tis the better for her; an she be\nnot, she has the mends in her own hands.\n\nTROILUS:\nGood Pandarus, how now, Pandarus!\n\nPANDARUS:\nI have had my labour for my travail; ill-thought on of\nher and ill-thought on of you; gone between and\nbetween, but small thanks for my labour.\n\nTROILUS:\nWhat, art thou angry, Pandarus? what, with me?\n\nPANDARUS:\nBecause she's kin to me, therefore she's not so fair\nas Helen: an she were not kin to me, she would be as\nfair on Friday as Helen is on Sunday. But what care\nI? I care not an she were a black-a-moor; 'tis all one to me.\n\nTROILUS:\nSay I she is not fair?\n\nPANDARUS:\nI do not care whether you do or no. She's a fool to\nstay behind her father; let her to the Greeks; and so\nI'll tell her the next time I see her: for my part,\nI'll meddle nor make no more i' the matter.\n\nTROILUS:\nPandarus,--\n\nPANDARUS:\nNot I.\n\nTROILUS:\nSweet Pandarus,--\n\nPANDARUS:\nPray you, speak no more to me: I will leave all as I\nfound it, and there an end.\n\nTROILUS:\nPeace, you ungracious clamours! peace, rude sounds!\nFools on both sides! Helen must needs be fair,\nWhen with your blood you daily paint her thus.\nI cannot fight upon this argument;\nIt is too starved a subject for my sword.\nBut Pandarus,--O gods, how do you plague me!\nI cannot come to Cressid but by Pandar;\nAnd he's as tetchy to be woo'd to woo.\nAs she is stubborn-chaste against all suit.\nTell me, Apollo, for thy Daphne's love,\nWhat Cressid is, what Pandar, and what we?\nHer bed is India; there she lies, a pearl:\nBetween our Ilium and where she resides,\nLet it be call'd the wild and wandering flood,\nOurself the merchant, and this sailing Pandar\nOur doubtful hope, our convoy and our bark.\n\nAENEAS:\nHow now, Prince Troilus! wherefore not afield?\n\nTROILUS:\nBecause not there: this woman's answer sorts,\nFor womanish it is to be from thence.\nWhat news, AEneas, from the field to-day?\n\nAENEAS:\nThat Paris is returned home and hurt.\n\nTROILUS:\nBy whom, AEneas?\n\nAENEAS:\nTroilus, by Menelaus.\n\nTROILUS:\nLet Paris bleed; 'tis but a scar to scorn;\nParis is gored with Menelaus' horn.\n\nAENEAS:\nHark, what good sport is out of town to-day!\n\nTROILUS:\nBetter at home, if 'would I might' were 'may.'\nBut to the sport abroad: are you bound thither?\n\nAENEAS:\nIn all swift haste.\n\nTROILUS:\nCome, go we then together.\n\nCRESSIDA:\nWho were those went by?\n\nALEXANDER:\nQueen Hecuba and Helen.\n\nCRESSIDA:\nAnd whither go they?\n\nALEXANDER:\nUp to the eastern tower,\nWhose height commands as subject all the vale,\nTo see the battle. Hector, whose patience\nIs, as a virtue, fix'd, to-day was moved:\nHe chid Andromache and struck his armourer,\nAnd, like as there were husbandry in war,\nBefore the sun rose he was harness'd light,\nAnd to the field goes he; where every flower\nDid, as a prophet, weep what it foresaw\nIn Hector's wrath.\n\nCRESSIDA:\nWhat was his cause of anger?\n\nALEXANDER:\nThe noise goes, this: there is among the Greeks\nA lord of Trojan blood, nephew to Hector;\nThey call him Ajax.\n\nCRESSIDA:\nGood; and what of him?\n\nALEXANDER:\nThey say he is a very man per se,\nAnd stands alone.\n\nCRESSIDA:\nSo do all men, unless they are drunk, sick, or have no legs.\n\nALEXANDER:\nThis man, lady, hath robbed many beasts of their\nparticular additions; he is as valiant as the lion,\nchurlish as the bear, slow as the elephant: a man\ninto whom nature hath so crowded humours that his\nvalour is crushed into folly, his folly sauced with\ndiscretion: there is no man hath a virtue that he\nhath not a glimpse of, nor any man an attaint but he\ncarries some stain of it: he is melancholy without\ncause, and merry against the hair: he hath the\njoints of every thing, but everything so out of joint\nthat he is a gouty Briareus, many hands and no use,\nor purblind Argus, all eyes and no sight.\n\nCRESSIDA:\nBut how should this man, that makes\nme smile, make Hector angry?\n\nALEXANDER:\nThey say he yesterday coped Hector in the battle and\nstruck him down, the disdain and shame whereof hath\never since kept Hector fasting and waking.\n\nCRESSIDA:\nWho comes here?\n\nALEXANDER:\nMadam, your uncle Pandarus.\n\nCRESSIDA:\nHector's a gallant man.\n\nALEXANDER:\nAs may be in the world, lady.\n\nPANDARUS:\nWhat's that? what's that?\n\nCRESSIDA:\nGood morrow, uncle Pandarus.\n\nPANDARUS:\nGood morrow, cousin Cressid: what do you talk of?\nGood morrow, Alexander. How do you, cousin? When\nwere you at Ilium?\n\nCRESSIDA:\nThis morning, uncle.\n\nPANDARUS:\nWhat were you talking of when I came? Was Hector\narmed and gone ere ye came to Ilium? Helen was not\nup, was she?\n\nCRESSIDA:\nHector was gone, but Helen was not up.\n\nPANDARUS:\nEven so: Hector was stirring early.\n\nCRESSIDA:\nThat were we talking of, and of his anger.\n\nPANDARUS:\nWas he angry?\n\nCRESSIDA:\nSo he says here.\n\nPANDARUS:\nTrue, he was so: I know the cause too: he'll lay\nabout him to-day, I can tell them that: and there's\nTroilus will not come far behind him: let them take\nheed of Troilus, I can tell them that too.\n\nCRESSIDA:\nWhat, is he angry too?\n\nPANDARUS:\nWho, Troilus? Troilus is the better man of the two.\n\nCRESSIDA:\nO Jupiter! there's no comparison.\n\nPANDARUS:\nWhat, not between Troilus and Hector? Do you know a\nman if you see him?\n\nCRESSIDA:\nAy, if I ever saw him before and knew him.\n\nPANDARUS:\nWell, I say Troilus is Troilus.\n\nCRESSIDA:\nThen you say as I say; for, I am sure, he is not Hector.\n\nPANDARUS:\nNo, nor Hector is not Troilus in some degrees.\n\nCRESSIDA:\n'Tis just to each of them; he is himself.\n\nPANDARUS:\nHimself! Alas, poor Troilus! I would he were.\n\nCRESSIDA:\nSo he is.\n\nPANDARUS:\nCondition, I had gone barefoot to India.\n\nCRESSIDA:\nHe is not Hector.\n\nPANDARUS:\nHimself! no, he's not himself: would a' were\nhimself! Well, the gods are above; time must friend\nor end: well, Troilus, well: I would my heart were\nin her body. No, Hector is not a better man than Troilus.\n\nCRESSIDA:\nExcuse me.\n\nPANDARUS:\nHe is elder.\n\nCRESSIDA:\nPardon me, pardon me.\n\nPANDARUS:\nTh' other's not come to't; you shall tell me another\ntale, when th' other's come to't. Hector shall not\nhave his wit this year.\n\nCRESSIDA:\nHe shall not need it, if he have his own.\n\nPANDARUS:\nNor his qualities.\n\nCRESSIDA:\nNo matter.\n\nPANDARUS:\nNor his beauty.\n\nCRESSIDA:\n'Twould not become him; his own's better.\n\nPANDARUS:\nYou have no judgment, niece: Helen\nherself swore th' other day, that Troilus, for\na brown favour--for so 'tis, I must confess,--\nnot brown neither,--\n\nCRESSIDA:\nNo, but brown.\n\nPANDARUS:\n'Faith, to say truth, brown and not brown.\n\nCRESSIDA:\nTo say the truth, true and not true.\n\nPANDARUS:\nShe praised his complexion above Paris.\n\nCRESSIDA:\nWhy, Paris hath colour enough.\n\nPANDARUS:\nSo he has.\n\nCRESSIDA:\nThen Troilus should have too much: if she praised\nhim above, his complexion is higher than his; he\nhaving colour enough, and the other higher, is too\nflaming a praise for a good complexion. I had as\nlief Helen's golden tongue had commended Troilus for\na copper nose.\n\nPANDARUS:\nI swear to you. I think Helen loves him better than Paris.\n\nCRESSIDA:\nThen she's a merry Greek indeed.\n\nPANDARUS:\nNay, I am sure she does. She came to him th' other\nday into the compassed window,--and, you know, he\nhas not past three or four hairs on his chin,--\n\nCRESSIDA:\nIndeed, a tapster's arithmetic may soon bring his\nparticulars therein to a total.\n\nPANDARUS:\nWhy, he is very young: and yet will he, within\nthree pound, lift as much as his brother Hector.\n\nCRESSIDA:\nIs he so young a man and so old a lifter?\n\nPANDARUS:\nBut to prove to you that Helen loves him: she came\nand puts me her white hand to his cloven chin--\n\nCRESSIDA:\nJuno have mercy! how came it cloven?\n\nPANDARUS:\nWhy, you know 'tis dimpled: I think his smiling\nbecomes him better than any man in all Phrygia.\n\nCRESSIDA:\nO, he smiles valiantly.\n\nPANDARUS:\nDoes he not?\n\nCRESSIDA:\nO yes, an 'twere a cloud in autumn.\n\nPANDARUS:\nWhy, go to, then: but to prove to you that Helen\nloves Troilus,--\n\nCRESSIDA:\nTroilus will stand to the proof, if you'll\nprove it so.\n\nPANDARUS:\nTroilus! why, he esteems her no more than I esteem\nan addle egg.\n\nCRESSIDA:\nIf you love an addle egg as well as you love an idle\nhead, you would eat chickens i' the shell.\n\nPANDARUS:\nI cannot choose but laugh, to think how she tickled\nhis chin: indeed, she has a marvellous white hand, I\nmust needs confess,--\n\nCRESSIDA:\nWithout the rack.\n\nPANDARUS:\nAnd she takes upon her to spy a white hair on his chin.\n\nCRESSIDA:\nAlas, poor chin! many a wart is richer.\n\nPANDARUS:\nBut there was such laughing! Queen Hecuba laughed\nthat her eyes ran o'er.\n\nCRESSIDA:\nWith mill-stones.\n\nPANDARUS:\nAnd Cassandra laughed.\n\nCRESSIDA:\nBut there was more temperate fire under the pot of\nher eyes: did her eyes run o'er too?\n\nPANDARUS:\nAnd Hector laughed.\n\nCRESSIDA:\nAt what was all this laughing?\n\nPANDARUS:\nMarry, at the white hair that Helen spied on Troilus' chin.\n\nCRESSIDA:\nAn't had been a green hair, I should have laughed\ntoo.\n\nPANDARUS:\nThey laughed not so much at the hair as at his pretty answer.\n\nCRESSIDA:\nWhat was his answer?\n\nPANDARUS:\nQuoth she, 'Here's but two and fifty hairs on your\nchin, and one of them is white.\n\nCRESSIDA:\nThis is her question.\n\nPANDARUS:\nThat's true; make no question of that. 'Two and\nfifty hairs' quoth he, 'and one white: that white\nhair is my father, and all the rest are his sons.'\n'Jupiter!' quoth she, 'which of these hairs is Paris,\nmy husband? 'The forked one,' quoth he, 'pluck't\nout, and give it him.' But there was such laughing!\nand Helen so blushed, an Paris so chafed, and all the\nrest so laughed, that it passed.\n\nCRESSIDA:\nSo let it now; for it has been while going by.\n\nPANDARUS:\nWell, cousin. I told you a thing yesterday; think on't.\n\nCRESSIDA:\nSo I do.\n\nPANDARUS:\nI'll be sworn 'tis true; he will weep you, an 'twere\na man born in April.\n\nCRESSIDA:\nAnd I'll spring up in his tears, an 'twere a nettle\nagainst May.\n\nPANDARUS:\nHark! they are coming from the field: shall we\nstand up here, and see them as they pass toward\nIlium? good niece, do, sweet niece Cressida.\n\nCRESSIDA:\nAt your pleasure.\n\nPANDARUS:\nHere, here, here's an excellent place; here we may\nsee most bravely: I'll tell you them all by their\nnames as they pass by; but mark Troilus above the rest.\n\nCRESSIDA:\nSpeak not so loud.\n\nPANDARUS:\nThat's AEneas: is not that a brave man? he's one of\nthe flowers of Troy, I can tell you: but mark\nTroilus; you shall see anon.\n\nCRESSIDA:\nWho's that?\n\nPANDARUS:\nThat's Antenor: he has a shrewd wit, I can tell you;\nand he's a man good enough, he's one o' the soundest\njudgments in whosoever, and a proper man of person.\nWhen comes Troilus? I'll show you Troilus anon: if\nhe see me, you shall see him nod at me.\n\nCRESSIDA:\nWill he give you the nod?\n\nPANDARUS:\nYou shall see.\n\nCRESSIDA:\nIf he do, the rich shall have more.\n\nPANDARUS:\nThat's Hector, that, that, look you, that; there's a\nfellow! Go thy way, Hector! There's a brave man,\nniece. O brave Hector! Look how he looks! there's\na countenance! is't not a brave man?\n\nCRESSIDA:\nO, a brave man!\n\nPANDARUS:\nIs a' not? it does a man's heart good. Look you\nwhat hacks are on his helmet! look you yonder, do\nyou see? look you there: there's no jesting;\nthere's laying on, take't off who will, as they say:\nthere be hacks!\n\nCRESSIDA:\nBe those with swords?\n\nPANDARUS:\nSwords! any thing, he cares not; an the devil come\nto him, it's all one: by God's lid, it does one's\nheart good. Yonder comes Paris, yonder comes Paris.\nLook ye yonder, niece; is't not a gallant man too,\nis't not? Why, this is brave now. Who said he came\nhurt home to-day? he's not hurt: why, this will do\nHelen's heart good now, ha! Would I could see\nTroilus now! You shall see Troilus anon.\n\nCRESSIDA:\nWho's that?\n\nPANDARUS:\nThat's Helenus. I marvel where Troilus is. That's\nHelenus. I think he went not forth to-day. That's Helenus.\n\nCRESSIDA:\nCan Helenus fight, uncle?\n\nPANDARUS:\nHelenus? no. Yes, he'll fight indifferent well. I\nmarvel where Troilus is. Hark! do you not hear the\npeople cry 'Troilus'? Helenus is a priest.\n\nCRESSIDA:\nWhat sneaking fellow comes yonder?\n\nPANDARUS:\nWhere? yonder? that's Deiphobus. 'Tis Troilus!\nthere's a man, niece! Hem! Brave Troilus! the\nprince of chivalry!\n\nCRESSIDA:\nPeace, for shame, peace!\n\nPANDARUS:\nMark him; note him. O brave Troilus! Look well upon\nhim, niece: look you how his sword is bloodied, and\nhis helm more hacked than Hector's, and how he looks,\nand how he goes! O admirable youth! he ne'er saw\nthree and twenty. Go thy way, Troilus, go thy way!\nHad I a sister were a grace, or a daughter a goddess,\nhe should take his choice. O admirable man! Paris?\nParis is dirt to him; and, I warrant, Helen, to\nchange, would give an eye to boot.\n\nCRESSIDA:\nHere come more.\n\nPANDARUS:\nAsses, fools, dolts! chaff and bran, chaff and bran!\nporridge after meat! I could live and die i' the\neyes of Troilus. Ne'er look, ne'er look: the eagles\nare gone: crows and daws, crows and daws! I had\nrather be such a man as Troilus than Agamemnon and\nall Greece.\n\nCRESSIDA:\nThere is among the Greeks Achilles, a better man than Troilus.\n\nPANDARUS:\nAchilles! a drayman, a porter, a very camel.\n\nCRESSIDA:\nWell, well.\n\nPANDARUS:\n'Well, well!' why, have you any discretion? have\nyou any eyes? Do you know what a man is? Is not\nbirth, beauty, good shape, discourse, manhood,\nlearning, gentleness, virtue, youth, liberality,\nand such like, the spice and salt that season a man?\n\nCRESSIDA:\nAy, a minced man: and then to be baked with no date\nin the pie, for then the man's date's out.\n\nPANDARUS:\nYou are such a woman! one knows not at what ward you\nlie.\n\nCRESSIDA:\nUpon my back, to defend my belly; upon my wit, to\ndefend my wiles; upon my secrecy, to defend mine\nhonesty; my mask, to defend my beauty; and you, to\ndefend all these: and at all these wards I lie, at a\nthousand watches.\n\nPANDARUS:\nSay one of your watches.\n\nCRESSIDA:\nNay, I'll watch you for that; and that's one of the\nchiefest of them too: if I cannot ward what I would\nnot have hit, I can watch you for telling how I took\nthe blow; unless it swell past hiding, and then it's\npast watching.\n\nPANDARUS:\nYou are such another!\n\nBoy:\nSir, my lord would instantly speak with you.\n\nPANDARUS:\nWhere?\n\nBoy:\nAt your own house; there he unarms him.\n\nPANDARUS:\nGood boy, tell him I come.\nI doubt he be hurt. Fare ye well, good niece.\n\nCRESSIDA:\nAdieu, uncle.\n\nPANDARUS:\nI'll be with you, niece, by and by.\n\nCRESSIDA:\nTo bring, uncle?\n\nPANDARUS:\nAy, a token from Troilus.\n\nCRESSIDA:\nBy the same token, you are a bawd.\nWords, vows, gifts, tears, and love's full sacrifice,\nHe offers in another's enterprise;\nBut more in Troilus thousand fold I see\nThan in the glass of Pandar's praise may be;\nYet hold I off. Women are angels, wooing:\nThings won are done; joy's soul lies in the doing.\nThat she beloved knows nought that knows not this:\nMen prize the thing ungain'd more than it is:\nThat she was never yet that ever knew\nLove got so sweet as when desire did sue.\nTherefore this maxim out of love I teach:\nAchievement is command; ungain'd, beseech:\nThen though my heart's content firm love doth bear,\nNothing of that shall from mine eyes appear.\n\nAGAMEMNON:\nPrinces,\nWhat grief hath set the jaundice on your cheeks?\nThe ample proposition that hope makes\nIn all designs begun on earth below\nFails in the promised largeness: cheques and disasters\nGrow in the veins of actions highest rear'd,\nAs knots, by the conflux of meeting sap,\nInfect the sound pine and divert his grain\nTortive and errant from his course of growth.\nNor, princes, is it matter new to us\nThat we come short of our suppose so far\nThat after seven years' siege yet Troy walls stand;\nSith every action that hath gone before,\nWhereof we have record, trial did draw\nBias and thwart, not answering the aim,\nAnd that unbodied figure of the thought\nThat gave't surmised shape. Why then, you princes,\nDo you with cheeks abash'd behold our works,\nAnd call them shames? which are indeed nought else\nBut the protractive trials of great Jove\nTo find persistive constancy in men:\nThe fineness of which metal is not found\nIn fortune's love; for then the bold and coward,\nThe wise and fool, the artist and unread,\nThe hard and soft seem all affined and kin:\nBut, in the wind and tempest of her frown,\nDistinction, with a broad and powerful fan,\nPuffing at all, winnows the light away;\nAnd what hath mass or matter, by itself\nLies rich in virtue and unmingled.\n\nNESTOR:\nWith due observance of thy godlike seat,\nGreat Agamemnon, Nestor shall apply\nThy latest words. In the reproof of chance\nLies the true proof of men: the sea being smooth,\nHow many shallow bauble boats dare sail\nUpon her patient breast, making their way\nWith those of nobler bulk!\nBut let the ruffian Boreas once enrage\nThe gentle Thetis, and anon behold\nThe strong-ribb'd bark through liquid mountains cut,\nBounding between the two moist elements,\nLike Perseus' horse: where's then the saucy boat\nWhose weak untimber'd sides but even now\nCo-rivall'd greatness? Either to harbour fled,\nOr made a toast for Neptune. Even so\nDoth valour's show and valour's worth divide\nIn storms of fortune; for in her ray and brightness\nThe herd hath more annoyance by the breeze\nThan by the tiger; but when the splitting wind\nMakes flexible the knees of knotted oaks,\nAnd flies fled under shade, why, then the thing of courage\nAs roused with rage with rage doth sympathize,\nAnd with an accent tuned in selfsame key\nRetorts to chiding fortune.\n\nULYSSES:\nAgamemnon,\nThou great commander, nerve and bone of Greece,\nHeart of our numbers, soul and only spirit.\nIn whom the tempers and the minds of all\nShould be shut up, hear what Ulysses speaks.\nBesides the applause and approbation To which,\nmost mighty for thy place and sway,\nAnd thou most reverend for thy stretch'd-out life\nI give to both your speeches, which were such\nAs Agamemnon and the hand of Greece\nShould hold up high in brass, and such again\nAs venerable Nestor, hatch'd in silver,\nShould with a bond of air, strong as the axle-tree\nOn which heaven rides, knit all the Greekish ears\nTo his experienced tongue, yet let it please both,\nThou great, and wise, to hear Ulysses speak.\n\nAGAMEMNON:\nSpeak, prince of Ithaca; and be't of less expect\nThat matter needless, of importless burden,\nDivide thy lips, than we are confident,\nWhen rank Thersites opes his mastic jaws,\nWe shall hear music, wit and oracle.\n\nULYSSES:\nTroy, yet upon his basis, had been down,\nAnd the great Hector's sword had lack'd a master,\nBut for these instances.\nThe specialty of rule hath been neglected:\nAnd, look, how many Grecian tents do stand\nHollow upon this plain, so many hollow factions.\nWhen that the general is not like the hive\nTo whom the foragers shall all repair,\nWhat honey is expected? Degree being vizarded,\nThe unworthiest shows as fairly in the mask.\nThe heavens themselves, the planets and this centre\nObserve degree, priority and place,\nInsisture, course, proportion, season, form,\nOffice and custom, in all line of order;\nAnd therefore is the glorious planet Sol\nIn noble eminence enthroned and sphered\nAmidst the other; whose medicinable eye\nCorrects the ill aspects of planets evil,\nAnd posts, like the commandment of a king,\nSans cheque to good and bad: but when the planets\nIn evil mixture to disorder wander,\nWhat plagues and what portents! what mutiny!\nWhat raging of the sea! shaking of earth!\nCommotion in the winds! frights, changes, horrors,\nDivert and crack, rend and deracinate\nThe unity and married calm of states\nQuite from their fixure! O, when degree is shaked,\nWhich is the ladder to all high designs,\nThen enterprise is sick! How could communities,\nDegrees in schools and brotherhoods in cities,\nPeaceful commerce from dividable shores,\nThe primogenitive and due of birth,\nPrerogative of age, crowns, sceptres, laurels,\nBut by degree, stand in authentic place?\nTake but degree away, untune that string,\nAnd, hark, what discord follows! each thing meets\nIn mere oppugnancy: the bounded waters\nShould lift their bosoms higher than the shores\nAnd make a sop of all this solid globe:\nStrength should be lord of imbecility,\nAnd the rude son should strike his father dead:\nForce should be right; or rather, right and wrong,\nBetween whose endless jar justice resides,\nShould lose their names, and so should justice too.\nThen every thing includes itself in power,\nPower into will, will into appetite;\nAnd appetite, an universal wolf,\nSo doubly seconded with will and power,\nMust make perforce an universal prey,\nAnd last eat up himself. Great Agamemnon,\nThis chaos, when degree is suffocate,\nFollows the choking.\nAnd this neglection of degree it is\nThat by a pace goes backward, with a purpose\nIt hath to climb. The general's disdain'd\nBy him one step below, he by the next,\nThat next by him beneath; so every step,\nExampled by the first pace that is sick\nOf his superior, grows to an envious fever\nOf pale and bloodless emulation:\nAnd 'tis this fever that keeps Troy on foot,\nNot her own sinews. To end a tale of length,\nTroy in our weakness stands, not in her strength.\n\nNESTOR:\nMost wisely hath Ulysses here discover'd\nThe fever whereof all our power is sick.\n\nAGAMEMNON:\nThe nature of the sickness found, Ulysses,\nWhat is the remedy?\n\nULYSSES:\nThe great Achilles, whom opinion crowns\nThe sinew and the forehand of our host,\nHaving his ear full of his airy fame,\nGrows dainty of his worth, and in his tent\nLies mocking our designs: with him Patroclus\nUpon a lazy bed the livelong day\nBreaks scurril jests;\nAnd with ridiculous and awkward action,\nWhich, slanderer, he imitation calls,\nHe pageants us. Sometime, great Agamemnon,\nThy topless deputation he puts on,\nAnd, like a strutting player, whose conceit\nLies in his hamstring, and doth think it rich\nTo hear the wooden dialogue and sound\n'Twixt his stretch'd footing and the scaffoldage,--\nSuch to-be-pitied and o'er-wrested seeming\nHe acts thy greatness in: and when he speaks,\n'Tis like a chime a-mending; with terms unsquared,\nWhich, from the tongue of roaring Typhon dropp'd\nWould seem hyperboles. At this fusty stuff\nThe large Achilles, on his press'd bed lolling,\nFrom his deep chest laughs out a loud applause;\nCries 'Excellent! 'tis Agamemnon just.\nNow play me Nestor; hem, and stroke thy beard,\nAs he being drest to some oration.'\nThat's done, as near as the extremest ends\nOf parallels, as like as Vulcan and his wife:\nYet god Achilles still cries 'Excellent!\n'Tis Nestor right. Now play him me, Patroclus,\nArming to answer in a night alarm.'\nAnd then, forsooth, the faint defects of age\nMust be the scene of mirth; to cough and spit,\nAnd, with a palsy-fumbling on his gorget,\nShake in and out the rivet: and at this sport\nSir Valour dies; cries 'O, enough, Patroclus;\nOr give me ribs of steel! I shall split all\nIn pleasure of my spleen.' And in this fashion,\nAll our abilities, gifts, natures, shapes,\nSeverals and generals of grace exact,\nAchievements, plots, orders, preventions,\nExcitements to the field, or speech for truce,\nSuccess or loss, what is or is not, serves\nAs stuff for these two to make paradoxes.\n\nNESTOR:\nAnd in the imitation of these twain--\nWho, as Ulysses says, opinion crowns\nWith an imperial voice--many are infect.\nAjax is grown self-will'd, and bears his head\nIn such a rein, in full as proud a place\nAs broad Achilles; keeps his tent like him;\nMakes factious feasts; rails on our state of war,\nBold as an oracle, and sets Thersites,\nA slave whose gall coins slanders like a mint,\nTo match us in comparisons with dirt,\nTo weaken and discredit our exposure,\nHow rank soever rounded in with danger.\n\nULYSSES:\nThey tax our policy, and call it cowardice,\nCount wisdom as no member of the war,\nForestall prescience, and esteem no act\nBut that of hand: the still and mental parts,\nThat do contrive how many hands shall strike,\nWhen fitness calls them on, and know by measure\nOf their observant toil the enemies' weight,--\nWhy, this hath not a finger's dignity:\nThey call this bed-work, mappery, closet-war;\nSo that the ram that batters down the wall,\nFor the great swing and rudeness of his poise,\nThey place before his hand that made the engine,\nOr those that with the fineness of their souls\nBy reason guide his execution.\n\nNESTOR:\nLet this be granted, and Achilles' horse\nMakes many Thetis' sons.\n\nAGAMEMNON:\nWhat trumpet? look, Menelaus.\n\nMENELAUS:\nFrom Troy.\n\nAGAMEMNON:\nWhat would you 'fore our tent?\n\nAENEAS:\nIs this great Agamemnon's tent, I pray you?\n\nAGAMEMNON:\nEven this.\n\nAENEAS:\nMay one, that is a herald and a prince,\nDo a fair message to his kingly ears?\n\nAGAMEMNON:\nWith surety stronger than Achilles' arm\n'Fore all the Greekish heads, which with one voice\nCall Agamemnon head and general.\n\nAENEAS:\nFair leave and large security. How may\nA stranger to those most imperial looks\nKnow them from eyes of other mortals?\n\nAGAMEMNON:\nHow!\n\nAENEAS:\nAy;\nI ask, that I might waken reverence,\nAnd bid the cheek be ready with a blush\nModest as morning when she coldly eyes\nThe youthful Phoebus:\nWhich is that god in office, guiding men?\nWhich is the high and mighty Agamemnon?\n\nAGAMEMNON:\nThis Trojan scorns us; or the men of Troy\nAre ceremonious courtiers.\n\nAENEAS:\nCourtiers as free, as debonair, unarm'd,\nAs bending angels; that's their fame in peace:\nBut when they would seem soldiers, they have galls,\nGood arms, strong joints, true swords; and,\nJove's accord,\nNothing so full of heart. But peace, AEneas,\nPeace, Trojan; lay thy finger on thy lips!\nThe worthiness of praise distains his worth,\nIf that the praised himself bring the praise forth:\nBut what the repining enemy commends,\nThat breath fame blows; that praise, sole sure,\ntranscends.\n\nAGAMEMNON:\nSir, you of Troy, call you yourself AEneas?\n\nAENEAS:\nAy, Greek, that is my name.\n\nAGAMEMNON:\nWhat's your affair I pray you?\n\nAENEAS:\nSir, pardon; 'tis for Agamemnon's ears.\n\nAGAMEMNON:\nHe hears naught privately that comes from Troy.\n\nAENEAS:\nNor I from Troy come not to whisper him:\nI bring a trumpet to awake his ear,\nTo set his sense on the attentive bent,\nAnd then to speak.\n\nAGAMEMNON:\nSpeak frankly as the wind;\nIt is not Agamemnon's sleeping hour:\nThat thou shalt know. Trojan, he is awake,\nHe tells thee so himself.\n\nAENEAS:\nTrumpet, blow loud,\nSend thy brass voice through all these lazy tents;\nAnd every Greek of mettle, let him know,\nWhat Troy means fairly shall be spoke aloud.\nWe have, great Agamemnon, here in Troy\nA prince call'd Hector,--Priam is his father,--\nWho in this dull and long-continued truce\nIs rusty grown: he bade me take a trumpet,\nAnd to this purpose speak. Kings, princes, lords!\nIf there be one among the fair'st of Greece\nThat holds his honour higher than his ease,\nThat seeks his praise more than he fears his peril,\nThat knows his valour, and knows not his fear,\nThat loves his mistress more than in confession,\nWith truant vows to her own lips he loves,\nAnd dare avow her beauty and her worth\nIn other arms than hers,--to him this challenge.\nHector, in view of Trojans and of Greeks,\nShall make it good, or do his best to do it,\nHe hath a lady, wiser, fairer, truer,\nThan ever Greek did compass in his arms,\nAnd will to-morrow with his trumpet call\nMidway between your tents and walls of Troy,\nTo rouse a Grecian that is true in love:\nIf any come, Hector shall honour him;\nIf none, he'll say in Troy when he retires,\nThe Grecian dames are sunburnt and not worth\nThe splinter of a lance. Even so much.\n\nAGAMEMNON:\nThis shall be told our lovers, Lord AEneas;\nIf none of them have soul in such a kind,\nWe left them all at home: but we are soldiers;\nAnd may that soldier a mere recreant prove,\nThat means not, hath not, or is not in love!\nIf then one is, or hath, or means to be,\nThat one meets Hector; if none else, I am he.\n\nNESTOR:\nTell him of Nestor, one that was a man\nWhen Hector's grandsire suck'd: he is old now;\nBut if there be not in our Grecian host\nOne noble man that hath one spark of fire,\nTo answer for his love, tell him from me\nI'll hide my silver beard in a gold beaver\nAnd in my vantbrace put this wither'd brawn,\nAnd meeting him will tell him that my lady\nWas fairer than his grandam and as chaste\nAs may be in the world: his youth in flood,\nI'll prove this truth with my three drops of blood.\n\nAENEAS:\nNow heavens forbid such scarcity of youth!\n\nULYSSES:\nAmen.\n\nAGAMEMNON:\nFair Lord AEneas, let me touch your hand;\nTo our pavilion shall I lead you, sir.\nAchilles shall have word of this intent;\nSo shall each lord of Greece, from tent to tent:\nYourself shall feast with us before you go\nAnd find the welcome of a noble foe.\n\nULYSSES:\nNestor!\n\nNESTOR:\nWhat says Ulysses?\n\nULYSSES:\nI have a young conception in my brain;\nBe you my time to bring it to some shape.\n\nNESTOR:\nWhat is't?\n\nULYSSES:\nThis 'tis:\nBlunt wedges rive hard knots: the seeded pride\nThat hath to this maturity blown up\nIn rank Achilles must or now be cropp'd,\nOr, shedding, breed a nursery of like evil,\nTo overbulk us all.\n\nNESTOR:\nWell, and how?\n\nULYSSES:\nThis challenge that the gallant Hector sends,\nHowever it is spread in general name,\nRelates in purpose only to Achilles.\n\nNESTOR:\nThe purpose is perspicuous even as substance,\nWhose grossness little characters sum up:\nAnd, in the publication, make no strain,\nBut that Achilles, were his brain as barren\nAs banks of Libya,--though, Apollo knows,\n'Tis dry enough,--will, with great speed of judgment,\nAy, with celerity, find Hector's purpose\nPointing on him.\n\nULYSSES:\nAnd wake him to the answer, think you?\n\nNESTOR:\nYes, 'tis most meet: whom may you else oppose,\nThat can from Hector bring his honour off,\nIf not Achilles? Though't be a sportful combat,\nYet in the trial much opinion dwells;\nFor here the Trojans taste our dear'st repute\nWith their finest palate: and trust to me, Ulysses,\nOur imputation shall be oddly poised\nIn this wild action; for the success,\nAlthough particular, shall give a scantling\nOf good or bad unto the general;\nAnd in such indexes, although small pricks\nTo their subsequent volumes, there is seen\nThe baby figure of the giant mass\nOf things to come at large. It is supposed\nHe that meets Hector issues from our choice\nAnd choice, being mutual act of all our souls,\nMakes merit her election, and doth boil,\nAs 'twere from us all, a man distill'd\nOut of our virtues; who miscarrying,\nWhat heart receives from hence the conquering part,\nTo steel a strong opinion to themselves?\nWhich entertain'd, limbs are his instruments,\nIn no less working than are swords and bows\nDirective by the limbs.\n\nULYSSES:\nGive pardon to my speech:\nTherefore 'tis meet Achilles meet not Hector.\nLet us, like merchants, show our foulest wares,\nAnd think, perchance, they'll sell; if not,\nThe lustre of the better yet to show,\nShall show the better. Do not consent\nThat ever Hector and Achilles meet;\nFor both our honour and our shame in this\nAre dogg'd with two strange followers.\n\nNESTOR:\nI see them not with my old eyes: what are they?\n\nULYSSES:\nWhat glory our Achilles shares from Hector,\nWere he not proud, we all should share with him:\nBut he already is too insolent;\nAnd we were better parch in Afric sun\nThan in the pride and salt scorn of his eyes,\nShould he 'scape Hector fair: if he were foil'd,\nWhy then, we did our main opinion crush\nIn taint of our best man. No, make a lottery;\nAnd, by device, let blockish Ajax draw\nThe sort to fight with Hector: among ourselves\nGive him allowance for the better man;\nFor that will physic the great Myrmidon\nWho broils in loud applause, and make him fall\nHis crest that prouder than blue Iris bends.\nIf the dull brainless Ajax come safe off,\nWe'll dress him up in voices: if he fail,\nYet go we under our opinion still\nThat we have better men. But, hit or miss,\nOur project's life this shape of sense assumes:\nAjax employ'd plucks down Achilles' plumes.\n\nNESTOR:\nUlysses,\nNow I begin to relish thy advice;\nAnd I will give a taste of it forthwith\nTo Agamemnon: go we to him straight.\nTwo curs shall tame each other: pride alone\nMust tarre the mastiffs on, as 'twere their bone.\n\nAJAX:\nThersites!\n\nTHERSITES:\nAgamemnon, how if he had boils? full, all over,\ngenerally?\n\nAJAX:\nThersites!\n\nTHERSITES:\nAnd those boils did run? say so: did not the\ngeneral run then? were not that a botchy core?\n\nAJAX:\nDog!\n\nTHERSITES:\nThen would come some matter from him; I see none now.\n\nAJAX:\nThou bitch-wolf's son, canst thou not hear?\nFeel, then.\n\nTHERSITES:\nThe plague of Greece upon thee, thou mongrel\nbeef-witted lord!\n\nAJAX:\nSpeak then, thou vinewedst leaven, speak: I will\nbeat thee into handsomeness.\n\nTHERSITES:\nI shall sooner rail thee into wit and holiness: but,\nI think, thy horse will sooner con an oration than\nthou learn a prayer without book. Thou canst strike,\ncanst thou? a red murrain o' thy jade's tricks!\n\nAJAX:\nToadstool, learn me the proclamation.\n\nTHERSITES:\nDost thou think I have no sense, thou strikest me thus?\n\nAJAX:\nThe proclamation!\n\nTHERSITES:\nThou art proclaimed a fool, I think.\n\nAJAX:\nDo not, porpentine, do not: my fingers itch.\n\nTHERSITES:\nI would thou didst itch from head to foot and I had\nthe scratching of thee; I would make thee the\nloathsomest scab in Greece. When thou art forth in\nthe incursions, thou strikest as slow as another.\n\nAJAX:\nI say, the proclamation!\n\nTHERSITES:\nThou grumblest and railest every hour on Achilles,\nand thou art as full of envy at his greatness as\nCerberus is at Proserpine's beauty, ay, that thou\nbarkest at him.\n\nAJAX:\nMistress Thersites!\n\nTHERSITES:\nThou shouldest strike him.\n\nAJAX:\nCobloaf!\n\nTHERSITES:\nHe would pun thee into shivers with his fist, as a\nsailor breaks a biscuit.\n\nAJAX:\n\nTHERSITES:\nDo, do.\n\nAJAX:\nThou stool for a witch!\n\nTHERSITES:\nAy, do, do; thou sodden-witted lord! thou hast no\nmore brain than I have in mine elbows; an assinego\nmay tutor thee: thou scurvy-valiant ass! thou art\nhere but to thrash Trojans; and thou art bought and\nsold among those of any wit, like a barbarian slave.\nIf thou use to beat me, I will begin at thy heel, and\ntell what thou art by inches, thou thing of no\nbowels, thou!\n\nAJAX:\nYou dog!\n\nTHERSITES:\nYou scurvy lord!\n\nAJAX:\n\nTHERSITES:\nMars his idiot! do, rudeness; do, camel; do, do.\n\nACHILLES:\nWhy, how now, Ajax! wherefore do you thus? How now,\nThersites! what's the matter, man?\n\nTHERSITES:\nYou see him there, do you?\n\nACHILLES:\nAy; what's the matter?\n\nTHERSITES:\nNay, look upon him.\n\nACHILLES:\nSo I do: what's the matter?\n\nTHERSITES:\nNay, but regard him well.\n\nACHILLES:\n'Well!' why, I do so.\n\nTHERSITES:\nBut yet you look not well upon him; for whosoever you\ntake him to be, he is Ajax.\n\nACHILLES:\nI know that, fool.\n\nTHERSITES:\nAy, but that fool knows not himself.\n\nAJAX:\nTherefore I beat thee.\n\nTHERSITES:\nLo, lo, lo, lo, what modicums of wit he utters! his\nevasions have ears thus long. I have bobbed his\nbrain more than he has beat my bones: I will buy\nnine sparrows for a penny, and his pia mater is not\nworth the nineth part of a sparrow. This lord,\nAchilles, Ajax, who wears his wit in his belly and\nhis guts in his head, I'll tell you what I say of\nhim.\n\nACHILLES:\nWhat?\n\nTHERSITES:\nI say, this Ajax--\n\nACHILLES:\nNay, good Ajax.\n\nTHERSITES:\nHas not so much wit--\n\nACHILLES:\nNay, I must hold you.\n\nTHERSITES:\nAs will stop the eye of Helen's needle, for whom he\ncomes to fight.\n\nACHILLES:\nPeace, fool!\n\nTHERSITES:\nI would have peace and quietness, but the fool will\nnot: he there: that he: look you there.\n\nAJAX:\nO thou damned cur! I shall--\n\nACHILLES:\nWill you set your wit to a fool's?\n\nTHERSITES:\nNo, I warrant you; for a fools will shame it.\n\nPATROCLUS:\nGood words, Thersites.\n\nACHILLES:\nWhat's the quarrel?\n\nAJAX:\nI bade the vile owl go learn me the tenor of the\nproclamation, and he rails upon me.\n\nTHERSITES:\nI serve thee not.\n\nAJAX:\nWell, go to, go to.\n\nTHERSITES:\nI serve here voluntarily.\n\nACHILLES:\nYour last service was sufferance, 'twas not\nvoluntary: no man is beaten voluntary: Ajax was\nhere the voluntary, and you as under an impress.\n\nTHERSITES:\nE'en so; a great deal of your wit, too, lies in your\nsinews, or else there be liars. Hector have a great\ncatch, if he knock out either of your brains: a'\nwere as good crack a fusty nut with no kernel.\n\nACHILLES:\nWhat, with me too, Thersites?\n\nTHERSITES:\nThere's Ulysses and old Nestor, whose wit was mouldy\nere your grandsires had nails on their toes, yoke you\nlike draught-oxen and make you plough up the wars.\n\nACHILLES:\nWhat, what?\n\nTHERSITES:\nYes, good sooth: to, Achilles! to, Ajax! to!\n\nAJAX:\nI shall cut out your tongue.\n\nTHERSITES:\n'Tis no matter! I shall speak as much as thou\nafterwards.\n\nPATROCLUS:\nNo more words, Thersites; peace!\n\nTHERSITES:\nI will hold my peace when Achilles' brach bids me, shall I?\n\nACHILLES:\nThere's for you, Patroclus.\n\nTHERSITES:\nI will see you hanged, like clotpoles, ere I come\nany more to your tents: I will keep where there is\nwit stirring and leave the faction of fools.\n\nPATROCLUS:\nA good riddance.\n\nACHILLES:\nMarry, this, sir, is proclaim'd through all our host:\nThat Hector, by the fifth hour of the sun,\nWill with a trumpet 'twixt our tents and Troy\nTo-morrow morning call some knight to arms\nThat hath a stomach; and such a one that dare\nMaintain--I know not what: 'tis trash. Farewell.\n\nAJAX:\nFarewell. Who shall answer him?\n\nACHILLES:\nI know not: 'tis put to lottery; otherwise\nHe knew his man.\n\nAJAX:\nO, meaning you. I will go learn more of it.\n\nPRIAM:\nAfter so many hours, lives, speeches spent,\nThus once again says Nestor from the Greeks:\n'Deliver Helen, and all damage else--\nAs honour, loss of time, travail, expense,\nWounds, friends, and what else dear that is consumed\nIn hot digestion of this cormorant war--\nShall be struck off.' Hector, what say you to't?\n\nHECTOR:\nThough no man lesser fears the Greeks than I\nAs far as toucheth my particular,\nYet, dread Priam,\nThere is no lady of more softer bowels,\nMore spongy to suck in the sense of fear,\nMore ready to cry out 'Who knows what follows?'\nThan Hector is: the wound of peace is surety,\nSurety secure; but modest doubt is call'd\nThe beacon of the wise, the tent that searches\nTo the bottom of the worst. Let Helen go:\nSince the first sword was drawn about this question,\nEvery tithe soul, 'mongst many thousand dismes,\nHath been as dear as Helen; I mean, of ours:\nIf we have lost so many tenths of ours,\nTo guard a thing not ours nor worth to us,\nHad it our name, the value of one ten,\nWhat merit's in that reason which denies\nThe yielding of her up?\n\nTROILUS:\nFie, fie, my brother!\nWeigh you the worth and honour of a king\nSo great as our dread father in a scale\nOf common ounces? will you with counters sum\nThe past proportion of his infinite?\nAnd buckle in a waist most fathomless\nWith spans and inches so diminutive\nAs fears and reasons? fie, for godly shame!\n\nHELENUS:\nNo marvel, though you bite so sharp at reasons,\nYou are so empty of them. Should not our father\nBear the great sway of his affairs with reasons,\nBecause your speech hath none that tells him so?\n\nTROILUS:\nYou are for dreams and slumbers, brother priest;\nYou fur your gloves with reason. Here are\nyour reasons:\nYou know an enemy intends you harm;\nYou know a sword employ'd is perilous,\nAnd reason flies the object of all harm:\nWho marvels then, when Helenus beholds\nA Grecian and his sword, if he do set\nThe very wings of reason to his heels\nAnd fly like chidden Mercury from Jove,\nOr like a star disorb'd? Nay, if we talk of reason,\nLet's shut our gates and sleep: manhood and honour\nShould have hare-hearts, would they but fat\ntheir thoughts\nWith this cramm'd reason: reason and respect\nMake livers pale and lustihood deject.\n\nHECTOR:\nBrother, she is not worth what she doth cost\nThe holding.\n\nTROILUS:\nWhat is aught, but as 'tis valued?\n\nHECTOR:\nBut value dwells not in particular will;\nIt holds his estimate and dignity\nAs well wherein 'tis precious of itself\nAs in the prizer: 'tis mad idolatry\nTo make the service greater than the god\nAnd the will dotes that is attributive\nTo what infectiously itself affects,\nWithout some image of the affected merit.\n\nTROILUS:\nI take to-day a wife, and my election\nIs led on in the conduct of my will;\nMy will enkindled by mine eyes and ears,\nTwo traded pilots 'twixt the dangerous shores\nOf will and judgment: how may I avoid,\nAlthough my will distaste what it elected,\nThe wife I chose? there can be no evasion\nTo blench from this and to stand firm by honour:\nWe turn not back the silks upon the merchant,\nWhen we have soil'd them, nor the remainder viands\nWe do not throw in unrespective sieve,\nBecause we now are full. It was thought meet\nParis should do some vengeance on the Greeks:\nYour breath of full consent bellied his sails;\nThe seas and winds, old wranglers, took a truce\nAnd did him service: he touch'd the ports desired,\nAnd for an old aunt whom the Greeks held captive,\nHe brought a Grecian queen, whose youth and freshness\nWrinkles Apollo's, and makes stale the morning.\nWhy keep we her? the Grecians keep our aunt:\nIs she worth keeping? why, she is a pearl,\nWhose price hath launch'd above a thousand ships,\nAnd turn'd crown'd kings to merchants.\nIf you'll avouch 'twas wisdom Paris went--\nAs you must needs, for you all cried 'Go, go,'--\nIf you'll confess he brought home noble prize--\nAs you must needs, for you all clapp'd your hands\nAnd cried 'Inestimable!'--why do you now\nThe issue of your proper wisdoms rate,\nAnd do a deed that fortune never did,\nBeggar the estimation which you prized\nRicher than sea and land? O, theft most base,\nThat we have stol'n what we do fear to keep!\nBut, thieves, unworthy of a thing so stol'n,\nThat in their country did them that disgrace,\nWe fear to warrant in our native place!\n\nCASSANDRA:\n\nPRIAM:\nWhat noise? what shriek is this?\n\nTROILUS:\n'Tis our mad sister, I do know her voice.\n\nCASSANDRA:\n\nHECTOR:\nIt is Cassandra.\n\nCASSANDRA:\nCry, Trojans, cry! lend me ten thousand eyes,\nAnd I will fill them with prophetic tears.\n\nHECTOR:\nPeace, sister, peace!\n\nCASSANDRA:\nVirgins and boys, mid-age and wrinkled eld,\nSoft infancy, that nothing canst but cry,\nAdd to my clamours! let us pay betimes\nA moiety of that mass of moan to come.\nCry, Trojans, cry! practise your eyes with tears!\nTroy must not be, nor goodly Ilion stand;\nOur firebrand brother, Paris, burns us all.\nCry, Trojans, cry! a Helen and a woe:\nCry, cry! Troy burns, or else let Helen go.\n\nHECTOR:\nNow, youthful Troilus, do not these high strains\nOf divination in our sister work\nSome touches of remorse? or is your blood\nSo madly hot that no discourse of reason,\nNor fear of bad success in a bad cause,\nCan qualify the same?\n\nTROILUS:\nWhy, brother Hector,\nWe may not think the justness of each act\nSuch and no other than event doth form it,\nNor once deject the courage of our minds,\nBecause Cassandra's mad: her brain-sick raptures\nCannot distaste the goodness of a quarrel\nWhich hath our several honours all engaged\nTo make it gracious. For my private part,\nI am no more touch'd than all Priam's sons:\nAnd Jove forbid there should be done amongst us\nSuch things as might offend the weakest spleen\nTo fight for and maintain!\n\nPARIS:\nElse might the world convince of levity\nAs well my undertakings as your counsels:\nBut I attest the gods, your full consent\nGave wings to my propension and cut off\nAll fears attending on so dire a project.\nFor what, alas, can these my single arms?\nWhat Propugnation is in one man's valour,\nTo stand the push and enmity of those\nThis quarrel would excite? Yet, I protest,\nWere I alone to pass the difficulties\nAnd had as ample power as I have will,\nParis should ne'er retract what he hath done,\nNor faint in the pursuit.\n\nPRIAM:\nParis, you speak\nLike one besotted on your sweet delights:\nYou have the honey still, but these the gall;\nSo to be valiant is no praise at all.\n\nPARIS:\nSir, I propose not merely to myself\nThe pleasures such a beauty brings with it;\nBut I would have the soil of her fair rape\nWiped off, in honourable keeping her.\nWhat treason were it to the ransack'd queen,\nDisgrace to your great worths and shame to me,\nNow to deliver her possession up\nOn terms of base compulsion! Can it be\nThat so degenerate a strain as this\nShould once set footing in your generous bosoms?\nThere's not the meanest spirit on our party\nWithout a heart to dare or sword to draw\nWhen Helen is defended, nor none so noble\nWhose life were ill bestow'd or death unfamed\nWhere Helen is the subject; then, I say,\nWell may we fight for her whom, we know well,\nThe world's large spaces cannot parallel.\n\nHECTOR:\nParis and Troilus, you have both said well,\nAnd on the cause and question now in hand\nHave glozed, but superficially: not much\nUnlike young men, whom Aristotle thought\nUnfit to hear moral philosophy:\nThe reasons you allege do more conduce\nTo the hot passion of distemper'd blood\nThan to make up a free determination\n'Twixt right and wrong, for pleasure and revenge\nHave ears more deaf than adders to the voice\nOf any true decision. Nature craves\nAll dues be render'd to their owners: now,\nWhat nearer debt in all humanity\nThan wife is to the husband? If this law\nOf nature be corrupted through affection,\nAnd that great minds, of partial indulgence\nTo their benumbed wills, resist the same,\nThere is a law in each well-order'd nation\nTo curb those raging appetites that are\nMost disobedient and refractory.\nIf Helen then be wife to Sparta's king,\nAs it is known she is, these moral laws\nOf nature and of nations speak aloud\nTo have her back return'd: thus to persist\nIn doing wrong extenuates not wrong,\nBut makes it much more heavy. Hector's opinion\nIs this in way of truth; yet ne'ertheless,\nMy spritely brethren, I propend to you\nIn resolution to keep Helen still,\nFor 'tis a cause that hath no mean dependance\nUpon our joint and several dignities.\n\nTROILUS:\nWhy, there you touch'd the life of our design:\nWere it not glory that we more affected\nThan the performance of our heaving spleens,\nI would not wish a drop of Trojan blood\nSpent more in her defence. But, worthy Hector,\nShe is a theme of honour and renown,\nA spur to valiant and magnanimous deeds,\nWhose present courage may beat down our foes,\nAnd fame in time to come canonize us;\nFor, I presume, brave Hector would not lose\nSo rich advantage of a promised glory\nAs smiles upon the forehead of this action\nFor the wide world's revenue.\n\nHECTOR:\nI am yours,\nYou valiant offspring of great Priamus.\nI have a roisting challenge sent amongst\nThe dun and factious nobles of the Greeks\nWill strike amazement to their drowsy spirits:\nI was advertised their great general slept,\nWhilst emulation in the army crept:\nThis, I presume, will wake him.\n\nTHERSITES:\nHow now, Thersites! what lost in the labyrinth of\nthy fury! Shall the elephant Ajax carry it thus? He\nbeats me, and I rail at him: O, worthy satisfaction!\nwould it were otherwise; that I could beat him,\nwhilst he railed at me. 'Sfoot, I'll learn to\nconjure and raise devils, but I'll see some issue of\nmy spiteful execrations. Then there's Achilles, a\nrare enginer! If Troy be not taken till these two\nundermine it, the walls will stand till they fall of\nthemselves. O thou great thunder-darter of Olympus,\nforget that thou art Jove, the king of gods and,\nMercury, lose all the serpentine craft of thy\ncaduceus, if ye take not that little, little less\nthan little wit from them that they have! which\nshort-armed ignorance itself knows is so abundant\nscarce, it will not in circumvention deliver a fly\nfrom a spider, without drawing their massy irons and\ncutting the web. After this, the vengeance on the\nwhole camp! or rather, the bone-ache! for that,\nmethinks, is the curse dependent on those that war\nfor a placket. I have said my prayers and devil Envy\nsay Amen. What ho! my Lord Achilles!\n\nPATROCLUS:\nWho's there? Thersites! Good Thersites, come in and rail.\n\nTHERSITES:\nIf I could have remembered a gilt counterfeit, thou\nwouldst not have slipped out of my contemplation: but\nit is no matter; thyself upon thyself! The common\ncurse of mankind, folly and ignorance, be thine in\ngreat revenue! heaven bless thee from a tutor, and\ndiscipline come not near thee! Let thy blood be thy\ndirection till thy death! then if she that lays thee\nout says thou art a fair corse, I'll be sworn and\nsworn upon't she never shrouded any but lazars.\nAmen. Where's Achilles?\n\nPATROCLUS:\nWhat, art thou devout? wast thou in prayer?\n\nTHERSITES:\nAy: the heavens hear me!\n\nACHILLES:\nWho's there?\n\nPATROCLUS:\nThersites, my lord.\n\nACHILLES:\nWhere, where? Art thou come? why, my cheese, my\ndigestion, why hast thou not served thyself in to\nmy table so many meals? Come, what's Agamemnon?\n\nTHERSITES:\nThy commander, Achilles. Then tell me, Patroclus,\nwhat's Achilles?\n\nPATROCLUS:\nThy lord, Thersites: then tell me, I pray thee,\nwhat's thyself?\n\nTHERSITES:\nThy knower, Patroclus: then tell me, Patroclus,\nwhat art thou?\n\nPATROCLUS:\nThou mayst tell that knowest.\n\nACHILLES:\nO, tell, tell.\n\nTHERSITES:\nI'll decline the whole question. Agamemnon commands\nAchilles; Achilles is my lord; I am Patroclus'\nknower, and Patroclus is a fool.\n\nPATROCLUS:\nYou rascal!\n\nTHERSITES:\nPeace, fool! I have not done.\n\nACHILLES:\nHe is a privileged man. Proceed, Thersites.\n\nTHERSITES:\nAgamemnon is a fool; Achilles is a fool; Thersites\nis a fool, and, as aforesaid, Patroclus is a fool.\n\nACHILLES:\nDerive this; come.\n\nTHERSITES:\nAgamemnon is a fool to offer to command Achilles;\nAchilles is a fool to be commanded of Agamemnon;\nThersites is a fool to serve such a fool, and\nPatroclus is a fool positive.\n\nPATROCLUS:\nWhy am I a fool?\n\nTHERSITES:\nMake that demand of the prover. It suffices me thou\nart. Look you, who comes here?\n\nACHILLES:\nPatroclus, I'll speak with nobody.\nCome in with me, Thersites.\n\nTHERSITES:\nHere is such patchery, such juggling and such\nknavery! all the argument is a cuckold and a\nwhore; a good quarrel to draw emulous factions\nand bleed to death upon. Now, the dry serpigo on\nthe subject! and war and lechery confound all!\n\nAGAMEMNON:\nWhere is Achilles?\n\nPATROCLUS:\nWithin his tent; but ill disposed, my lord.\n\nAGAMEMNON:\nLet it be known to him that we are here.\nHe shent our messengers; and we lay by\nOur appertainments, visiting of him:\nLet him be told so; lest perchance he think\nWe dare not move the question of our place,\nOr know not what we are.\n\nPATROCLUS:\nI shall say so to him.\n\nULYSSES:\nWe saw him at the opening of his tent:\nHe is not sick.\n\nAJAX:\nYes, lion-sick, sick of proud heart: you may call it\nmelancholy, if you will favour the man; but, by my\nhead, 'tis pride: but why, why? let him show us the\ncause. A word, my lord.\n\nNESTOR:\nWhat moves Ajax thus to bay at him?\n\nULYSSES:\nAchilles hath inveigled his fool from him.\n\nNESTOR:\nWho, Thersites?\n\nULYSSES:\nHe.\n\nNESTOR:\nThen will Ajax lack matter, if he have lost his argument.\n\nULYSSES:\nNo, you see, he is his argument that has his\nargument, Achilles.\n\nNESTOR:\nAll the better; their fraction is more our wish than\ntheir faction: but it was a strong composure a fool\ncould disunite.\n\nULYSSES:\nThe amity that wisdom knits not, folly may easily\nuntie. Here comes Patroclus.\n\nNESTOR:\nNo Achilles with him.\n\nULYSSES:\nThe elephant hath joints, but none for courtesy:\nhis legs are legs for necessity, not for flexure.\n\nPATROCLUS:\nAchilles bids me say, he is much sorry,\nIf any thing more than your sport and pleasure\nDid move your greatness and this noble state\nTo call upon him; he hopes it is no other\nBut for your health and your digestion sake,\nAnd after-dinner's breath.\n\nAGAMEMNON:\nHear you, Patroclus:\nWe are too well acquainted with these answers:\nBut his evasion, wing'd thus swift with scorn,\nCannot outfly our apprehensions.\nMuch attribute he hath, and much the reason\nWhy we ascribe it to him; yet all his virtues,\nNot virtuously on his own part beheld,\nDo in our eyes begin to lose their gloss,\nYea, like fair fruit in an unwholesome dish,\nAre like to rot untasted. Go and tell him,\nWe come to speak with him; and you shall not sin,\nIf you do say we think him over-proud\nAnd under-honest, in self-assumption greater\nThan in the note of judgment; and worthier\nthan himself\nHere tend the savage strangeness he puts on,\nDisguise the holy strength of their command,\nAnd underwrite in an observing kind\nHis humorous predominance; yea, watch\nHis pettish lunes, his ebbs, his flows, as if\nThe passage and whole carriage of this action\nRode on his tide. Go tell him this, and add,\nThat if he overhold his price so much,\nWe'll none of him; but let him, like an engine\nNot portable, lie under this report:\n'Bring action hither, this cannot go to war:\nA stirring dwarf we do allowance give\nBefore a sleeping giant.' Tell him so.\n\nPATROCLUS:\nI shall; and bring his answer presently.\n\nAGAMEMNON:\nIn second voice we'll not be satisfied;\nWe come to speak with him. Ulysses, enter you.\n\nAJAX:\nWhat is he more than another?\n\nAGAMEMNON:\nNo more than what he thinks he is.\n\nAJAX:\nIs he so much? Do you not think he thinks himself a\nbetter man than I am?\n\nAGAMEMNON:\nNo question.\n\nAJAX:\nWill you subscribe his thought, and say he is?\n\nAGAMEMNON:\nNo, noble Ajax; you are as strong, as valiant, as\nwise, no less noble, much more gentle, and altogether\nmore tractable.\n\nAJAX:\nWhy should a man be proud? How doth pride grow? I\nknow not what pride is.\n\nAGAMEMNON:\nYour mind is the clearer, Ajax, and your virtues the\nfairer. He that is proud eats up himself: pride is\nhis own glass, his own trumpet, his own chronicle;\nand whatever praises itself but in the deed, devours\nthe deed in the praise.\n\nAJAX:\nI do hate a proud man, as I hate the engendering of toads.\n\nNESTOR:\nYet he loves himself: is't not strange?\n\nULYSSES:\nAchilles will not to the field to-morrow.\n\nAGAMEMNON:\nWhat's his excuse?\n\nULYSSES:\nHe doth rely on none,\nBut carries on the stream of his dispose\nWithout observance or respect of any,\nIn will peculiar and in self-admission.\n\nAGAMEMNON:\nWhy will he not upon our fair request\nUntent his person and share the air with us?\n\nULYSSES:\nThings small as nothing, for request's sake only,\nHe makes important: possess'd he is with greatness,\nAnd speaks not to himself but with a pride\nThat quarrels at self-breath: imagined worth\nHolds in his blood such swoln and hot discourse\nThat 'twixt his mental and his active parts\nKingdom'd Achilles in commotion rages\nAnd batters down himself: what should I say?\nHe is so plaguy proud that the death-tokens of it\nCry 'No recovery.'\n\nAGAMEMNON:\nLet Ajax go to him.\nDear lord, go you and greet him in his tent:\n'Tis said he holds you well, and will be led\nAt your request a little from himself.\n\nULYSSES:\nO Agamemnon, let it not be so!\nWe'll consecrate the steps that Ajax makes\nWhen they go from Achilles: shall the proud lord\nThat bastes his arrogance with his own seam\nAnd never suffers matter of the world\nEnter his thoughts, save such as do revolve\nAnd ruminate himself, shall he be worshipp'd\nOf that we hold an idol more than he?\nNo, this thrice worthy and right valiant lord\nMust not so stale his palm, nobly acquired;\nNor, by my will, assubjugate his merit,\nAs amply titled as Achilles is,\nBy going to Achilles:\nThat were to enlard his fat already pride\nAnd add more coals to Cancer when he burns\nWith entertaining great Hyperion.\nThis lord go to him! Jupiter forbid,\nAnd say in thunder 'Achilles go to him.'\n\nNESTOR:\n\nDIOMEDES:\n\nAJAX:\nIf I go to him, with my armed fist I'll pash him o'er the face.\n\nAGAMEMNON:\nO, no, you shall not go.\n\nAJAX:\nAn a' be proud with me, I'll pheeze his pride:\nLet me go to him.\n\nULYSSES:\nNot for the worth that hangs upon our quarrel.\n\nAJAX:\nA paltry, insolent fellow!\n\nNESTOR:\nHow he describes himself!\n\nAJAX:\nCan he not be sociable?\n\nULYSSES:\nThe raven chides blackness.\n\nAJAX:\nI'll let his humours blood.\n\nAGAMEMNON:\nHe will be the physician that should be the patient.\n\nAJAX:\nAn all men were o' my mind,--\n\nULYSSES:\nWit would be out of fashion.\n\nAJAX:\nA' should not bear it so, a' should eat swords first:\nshall pride carry it?\n\nNESTOR:\nAn 'twould, you'ld carry half.\n\nULYSSES:\nA' would have ten shares.\n\nAJAX:\nI will knead him; I'll make him supple.\n\nNESTOR:\nHe's not yet through warm: force him with praises:\npour in, pour in; his ambition is dry.\n\nULYSSES:\n\nNESTOR:\nOur noble general, do not do so.\n\nDIOMEDES:\nYou must prepare to fight without Achilles.\n\nULYSSES:\nWhy, 'tis this naming of him does him harm.\nHere is a man--but 'tis before his face;\nI will be silent.\n\nNESTOR:\nWherefore should you so?\nHe is not emulous, as Achilles is.\n\nULYSSES:\nKnow the whole world, he is as valiant.\n\nAJAX:\nA whoreson dog, that shall pelter thus with us!\nWould he were a Trojan!\n\nNESTOR:\nWhat a vice were it in Ajax now,--\n\nULYSSES:\nIf he were proud,--\n\nDIOMEDES:\nOr covetous of praise,--\n\nULYSSES:\nAy, or surly borne,--\n\nDIOMEDES:\nOr strange, or self-affected!\n\nULYSSES:\nThank the heavens, lord, thou art of sweet composure;\nPraise him that got thee, she that gave thee suck:\nFamed be thy tutor, and thy parts of nature\nThrice famed, beyond all erudition:\nBut he that disciplined thy arms to fight,\nLet Mars divide eternity in twain,\nAnd give him half: and, for thy vigour,\nBull-bearing Milo his addition yield\nTo sinewy Ajax. I will not praise thy wisdom,\nWhich, like a bourn, a pale, a shore, confines\nThy spacious and dilated parts: here's Nestor;\nInstructed by the antiquary times,\nHe must, he is, he cannot but be wise:\nPut pardon, father Nestor, were your days\nAs green as Ajax' and your brain so temper'd,\nYou should not have the eminence of him,\nBut be as Ajax.\n\nAJAX:\nShall I call you father?\n\nNESTOR:\nAy, my good son.\n\nDIOMEDES:\nBe ruled by him, Lord Ajax.\n\nULYSSES:\nThere is no tarrying here; the hart Achilles\nKeeps thicket. Please it our great general\nTo call together all his state of war;\nFresh kings are come to Troy: to-morrow\nWe must with all our main of power stand fast:\nAnd here's a lord,--come knights from east to west,\nAnd cull their flower, Ajax shall cope the best.\n\nAGAMEMNON:\nGo we to council. Let Achilles sleep:\nLight boats sail swift, though greater hulks draw deep.\n\nPANDARUS:\nFriend, you! pray you, a word: do not you follow\nthe young Lord Paris?\n\nServant:\nAy, sir, when he goes before me.\n\nPANDARUS:\nYou depend upon him, I mean?\n\nServant:\nSir, I do depend upon the lord.\n\nPANDARUS:\nYou depend upon a noble gentleman; I must needs\npraise him.\n\nServant:\nThe lord be praised!\n\nPANDARUS:\nYou know me, do you not?\n\nServant:\nFaith, sir, superficially.\n\nPANDARUS:\nFriend, know me better; I am the Lord Pandarus.\n\nServant:\nI hope I shall know your honour better.\n\nPANDARUS:\nI do desire it.\n\nServant:\nYou are in the state of grace.\n\nPANDARUS:\nGrace! not so, friend: honour and lordship are my titles.\nWhat music is this?\n\nServant:\nI do but partly know, sir: it is music in parts.\n\nPANDARUS:\nKnow you the musicians?\n\nServant:\nWholly, sir.\n\nPANDARUS:\nWho play they to?\n\nServant:\nTo the hearers, sir.\n\nPANDARUS:\nAt whose pleasure, friend\n\nServant:\nAt mine, sir, and theirs that love music.\n\nPANDARUS:\nCommand, I mean, friend.\n\nServant:\nWho shall I command, sir?\n\nPANDARUS:\nFriend, we understand not one another: I am too\ncourtly and thou art too cunning. At whose request\ndo these men play?\n\nServant:\nThat's to 't indeed, sir: marry, sir, at the request\nof Paris my lord, who's there in person; with him,\nthe mortal Venus, the heart-blood of beauty, love's\ninvisible soul,--\n\nPANDARUS:\nWho, my cousin Cressida?\n\nServant:\nNo, sir, Helen: could you not find out that by her\nattributes?\n\nPANDARUS:\nIt should seem, fellow, that thou hast not seen the\nLady Cressida. I come to speak with Paris from the\nPrince Troilus: I will make a complimental assault\nupon him, for my business seethes.\n\nServant:\nSodden business! there's a stewed phrase indeed!\n\nPANDARUS:\nFair be to you, my lord, and to all this fair\ncompany! fair desires, in all fair measure,\nfairly guide them! especially to you, fair queen!\nfair thoughts be your fair pillow!\n\nHELEN:\nDear lord, you are full of fair words.\n\nPANDARUS:\nYou speak your fair pleasure, sweet queen. Fair\nprince, here is good broken music.\n\nPARIS:\nYou have broke it, cousin: and, by my life, you\nshall make it whole again; you shall piece it out\nwith a piece of your performance. Nell, he is full\nof harmony.\n\nPANDARUS:\nTruly, lady, no.\n\nHELEN:\nO, sir,--\n\nPANDARUS:\nRude, in sooth; in good sooth, very rude.\n\nPARIS:\nWell said, my lord! well, you say so in fits.\n\nPANDARUS:\nI have business to my lord, dear queen. My lord,\nwill you vouchsafe me a word?\n\nHELEN:\nNay, this shall not hedge us out: we'll hear you\nsing, certainly.\n\nPANDARUS:\nWell, sweet queen. you are pleasant with me. But,\nmarry, thus, my lord: my dear lord and most esteemed\nfriend, your brother Troilus,--\n\nHELEN:\nMy Lord Pandarus; honey-sweet lord,--\n\nPANDARUS:\nGo to, sweet queen, to go:--commends himself most\naffectionately to you,--\n\nHELEN:\nYou shall not bob us out of our melody: if you do,\nour melancholy upon your head!\n\nPANDARUS:\nSweet queen, sweet queen! that's a sweet queen, i' faith.\n\nHELEN:\nAnd to make a sweet lady sad is a sour offence.\n\nPANDARUS:\nNay, that shall not serve your turn; that shall not,\nin truth, la. Nay, I care not for such words; no,\nno. And, my lord, he desires you, that if the king\ncall for him at supper, you will make his excuse.\n\nHELEN:\nMy Lord Pandarus,--\n\nPANDARUS:\nWhat says my sweet queen, my very very sweet queen?\n\nPARIS:\nWhat exploit's in hand? where sups he to-night?\n\nHELEN:\nNay, but, my lord,--\n\nPANDARUS:\nWhat says my sweet queen? My cousin will fall out\nwith you. You must not know where he sups.\n\nPARIS:\nI'll lay my life, with my disposer Cressida.\n\nPANDARUS:\nNo, no, no such matter; you are wide: come, your\ndisposer is sick.\n\nPARIS:\nWell, I'll make excuse.\n\nPANDARUS:\nAy, good my lord. Why should you say Cressida? no,\nyour poor disposer's sick.\n\nPARIS:\nI spy.\n\nPANDARUS:\nYou spy! what do you spy? Come, give me an\ninstrument. Now, sweet queen.\n\nHELEN:\nWhy, this is kindly done.\n\nPANDARUS:\nMy niece is horribly in love with a thing you have,\nsweet queen.\n\nHELEN:\nShe shall have it, my lord, if it be not my lord Paris.\n\nPANDARUS:\nHe! no, she'll none of him; they two are twain.\n\nHELEN:\nFalling in, after falling out, may make them three.\n\nPANDARUS:\nCome, come, I'll hear no more of this; I'll sing\nyou a song now.\n\nHELEN:\nAy, ay, prithee now. By my troth, sweet lord, thou\nhast a fine forehead.\n\nPANDARUS:\nAy, you may, you may.\n\nHELEN:\nLet thy song be love: this love will undo us all.\nO Cupid, Cupid, Cupid!\n\nPANDARUS:\nLove! ay, that it shall, i' faith.\n\nPARIS:\nAy, good now, love, love, nothing but love.\n\nPANDARUS:\nIn good troth, it begins so.\nLove, love, nothing but love, still more!\nFor, O, love's bow\nShoots buck and doe:\nThe shaft confounds,\nNot that it wounds,\nBut tickles still the sore.\nThese lovers cry Oh! oh! they die!\nYet that which seems the wound to kill,\nDoth turn oh! oh! to ha! ha! he!\nSo dying love lives still:\nOh! oh! a while, but ha! ha! ha!\nOh! oh! groans out for ha! ha! ha!\nHeigh-ho!\n\nHELEN:\nIn love, i' faith, to the very tip of the nose.\n\nPARIS:\nHe eats nothing but doves, love, and that breeds hot\nblood, and hot blood begets hot thoughts, and hot\nthoughts beget hot deeds, and hot deeds is love.\n\nPANDARUS:\nIs this the generation of love? hot blood, hot\nthoughts, and hot deeds? Why, they are vipers:\nis love a generation of vipers? Sweet lord, who's\na-field to-day?\n\nPARIS:\nHector, Deiphobus, Helenus, Antenor, and all the\ngallantry of Troy: I  would fain have armed to-day,\nbut my Nell would not have it so. How chance my\nbrother Troilus went not?\n\nHELEN:\nHe hangs the lip at something: you know all, Lord Pandarus.\n\nPANDARUS:\nNot I, honey-sweet queen. I long to hear how they\nsped to-day. You'll remember your brother's excuse?\n\nPARIS:\nTo a hair.\n\nPANDARUS:\nFarewell, sweet queen.\n\nHELEN:\nCommend me to your niece.\n\nPANDARUS:\nI will, sweet queen.\n\nPARIS:\nThey're come from field: let us to Priam's hall,\nTo greet the warriors. Sweet Helen, I must woo you\nTo help unarm our Hector: his stubborn buckles,\nWith these your white enchanting fingers touch'd,\nShall more obey than to the edge of steel\nOr force of Greekish sinews; you shall do more\nThan all the island kings,--disarm great Hector.\n\nHELEN:\n'Twill make us proud to be his servant, Paris;\nYea, what he shall receive of us in duty\nGives us more palm in beauty than we have,\nYea, overshines ourself.\n\nPARIS:\nSweet, above thought I love thee.\n\nPANDARUS:\nHow now! where's thy master? at my cousin\nCressida's?\n\nBoy:\nNo, sir; he stays for you to conduct him thither.\n\nPANDARUS:\nO, here he comes.\nHow now, how now!\n\nTROILUS:\nSirrah, walk off.\n\nPANDARUS:\nHave you seen my cousin?\n\nTROILUS:\nNo, Pandarus: I stalk about her door,\nLike a strange soul upon the Stygian banks\nStaying for waftage. O, be thou my Charon,\nAnd give me swift transportance to those fields\nWhere I may wallow in the lily-beds\nProposed for the deserver! O gentle Pandarus,\nFrom Cupid's shoulder pluck his painted wings\nAnd fly with me to Cressid!\n\nPANDARUS:\nWalk here i' the orchard, I'll bring her straight.\n\nTROILUS:\nI am giddy; expectation whirls me round.\nThe imaginary relish is so sweet\nThat it enchants my sense: what will it be,\nWhen that the watery palate tastes indeed\nLove's thrice repured nectar? death, I fear me,\nSwooning destruction, or some joy too fine,\nToo subtle-potent, tuned too sharp in sweetness,\nFor the capacity of my ruder powers:\nI fear it much; and I do fear besides,\nThat I shall lose distinction in my joys;\nAs doth a battle, when they charge on heaps\nThe enemy flying.\n\nPANDARUS:\nShe's making her ready, she'll come straight: you\nmust be witty now. She does so blush, and fetches\nher wind so short, as if she were frayed with a\nsprite: I'll fetch her. It is the prettiest\nvillain: she fetches her breath as short as a\nnew-ta'en sparrow.\n\nTROILUS:\nEven such a passion doth embrace my bosom:\nMy heart beats thicker than a feverous pulse;\nAnd all my powers do their bestowing lose,\nLike vassalage at unawares encountering\nThe eye of majesty.\n\nPANDARUS:\nCome, come, what need you blush? shame's a baby.\nHere she is now: swear the oaths now to her that\nyou have sworn to me. What, are you gone again?\nyou must be watched ere you be made tame, must you?\nCome your ways, come your ways; an you draw backward,\nwe'll put you i' the fills. Why do you not speak to\nher? Come, draw this curtain, and let's see your\npicture. Alas the day, how loath you are to offend\ndaylight! an 'twere dark, you'ld close sooner.\nSo, so; rub on, and kiss the mistress. How now!\na kiss in fee-farm! build there, carpenter; the air\nis sweet. Nay, you shall fight your hearts out ere\nI part you. The falcon as the tercel, for all the\nducks i' the river: go to, go to.\n\nTROILUS:\nYou have bereft me of all words, lady.\n\nPANDARUS:\nWords pay no debts, give her deeds: but she'll\nbereave you o' the deeds too, if she call your\nactivity in question. What, billing again? Here's\n'In witness whereof the parties interchangeably'--\nCome in, come in: I'll go get a fire.\n\nCRESSIDA:\nWill you walk in, my lord?\n\nTROILUS:\nO Cressida, how often have I wished me thus!\n\nCRESSIDA:\nWished, my lord! The gods grant,--O my lord!\n\nTROILUS:\nWhat should they grant? what makes this pretty\nabruption? What too curious dreg espies my sweet\nlady in the fountain of our love?\n\nCRESSIDA:\nMore dregs than water, if my fears have eyes.\n\nTROILUS:\nFears make devils of cherubims; they never see truly.\n\nCRESSIDA:\nBlind fear, that seeing reason leads, finds safer\nfooting than blind reason stumbling without fear: to\nfear the worst oft cures the worse.\n\nTROILUS:\nO, let my lady apprehend no fear: in all Cupid's\npageant there is presented no monster.\n\nCRESSIDA:\nNor nothing monstrous neither?\n\nTROILUS:\nNothing, but our undertakings; when we vow to weep\nseas, live in fire, eat rocks, tame tigers; thinking\nit harder for our mistress to devise imposition\nenough than for us to undergo any difficulty imposed.\nThis is the monstruosity in love, lady, that the will\nis infinite and the execution confined, that the\ndesire is boundless and the act a slave to limit.\n\nCRESSIDA:\nThey say all lovers swear more performance than they\nare able and yet reserve an ability that they never\nperform, vowing more than the perfection of ten and\ndischarging less than the tenth part of one. They\nthat have the voice of lions and the act of hares,\nare they not monsters?\n\nTROILUS:\nAre there such? such are not we: praise us as we\nare tasted, allow us as we prove; our head shall go\nbare till merit crown it: no perfection in reversion\nshall have a praise in present: we will not name\ndesert before his birth, and, being born, his addition\nshall be humble. Few words to fair faith: Troilus\nshall be such to Cressid as what envy can say worst\nshall be a mock for his truth, and what truth can\nspeak truest not truer than Troilus.\n\nCRESSIDA:\nWill you walk in, my lord?\n\nPANDARUS:\nWhat, blushing still? have you not done talking yet?\n\nCRESSIDA:\nWell, uncle, what folly I commit, I dedicate to you.\n\nPANDARUS:\nI thank you for that: if my lord get a boy of you,\nyou'll give him me. Be true to my lord: if he\nflinch, chide me for it.\n\nTROILUS:\nYou know now your hostages; your uncle's word and my\nfirm faith.\n\nPANDARUS:\nNay, I'll give my word for her too: our kindred,\nthough they be long ere they are wooed, they are\nconstant being won: they are burs, I can tell you;\nthey'll stick where they are thrown.\n\nCRESSIDA:\nBoldness comes to me now, and brings me heart.\nPrince Troilus, I have loved you night and day\nFor many weary months.\n\nTROILUS:\nWhy was my Cressid then so hard to win?\n\nCRESSIDA:\nHard to seem won: but I was won, my lord,\nWith the first glance that ever--pardon me--\nIf I confess much, you will play the tyrant.\nI love you now; but not, till now, so much\nBut I might master it: in faith, I lie;\nMy thoughts were like unbridled children, grown\nToo headstrong for their mother. See, we fools!\nWhy have I blabb'd? who shall be true to us,\nWhen we are so unsecret to ourselves?\nBut, though I loved you well, I woo'd you not;\nAnd yet, good faith, I wish'd myself a man,\nOr that we women had men's privilege\nOf speaking first. Sweet, bid me hold my tongue,\nFor in this rapture I shall surely speak\nThe thing I shall repent. See, see, your silence,\nCunning in dumbness, from my weakness draws\nMy very soul of counsel! stop my mouth.\n\nTROILUS:\nAnd shall, albeit sweet music issues thence.\n\nPANDARUS:\nPretty, i' faith.\n\nCRESSIDA:\nMy lord, I do beseech you, pardon me;\n'Twas not my purpose, thus to beg a kiss:\nI am ashamed. O heavens! what have I done?\nFor this time will I take my leave, my lord.\n\nTROILUS:\nYour leave, sweet Cressid!\n\nPANDARUS:\nLeave! an you take leave till to-morrow morning,--\n\nCRESSIDA:\nPray you, content you.\n\nTROILUS:\nWhat offends you, lady?\n\nCRESSIDA:\nSir, mine own company.\n\nTROILUS:\nYou cannot shun Yourself.\n\nCRESSIDA:\nLet me go and try:\nI have a kind of self resides with you;\nBut an unkind self, that itself will leave,\nTo be another's fool. I would be gone:\nWhere is my wit? I know not what I speak.\n\nTROILUS:\nWell know they what they speak that speak so wisely.\n\nCRESSIDA:\nPerchance, my lord, I show more craft than love;\nAnd fell so roundly to a large confession,\nTo angle for your thoughts: but you are wise,\nOr else you love not, for to be wise and love\nExceeds man's might; that dwells with gods above.\n\nTROILUS:\nO that I thought it could be in a woman--\nAs, if it can, I will presume in you--\nTo feed for aye her ramp and flames of love;\nTo keep her constancy in plight and youth,\nOutliving beauty's outward, with a mind\nThat doth renew swifter than blood decays!\nOr that persuasion could but thus convince me,\nThat my integrity and truth to you\nMight be affronted with the match and weight\nOf such a winnow'd purity in love;\nHow were I then uplifted! but, alas!\nI am as true as truth's simplicity\nAnd simpler than the infancy of truth.\n\nCRESSIDA:\nIn that I'll war with you.\n\nTROILUS:\nO virtuous fight,\nWhen right with right wars who shall be most right!\nTrue swains in love shall in the world to come\nApprove their truths by Troilus: when their rhymes,\nFull of protest, of oath and big compare,\nWant similes, truth tired with iteration,\nAs true as steel, as plantage to the moon,\nAs sun to day, as turtle to her mate,\nAs iron to adamant, as earth to the centre,\nYet, after all comparisons of truth,\nAs truth's authentic author to be cited,\n'As true as Troilus' shall crown up the verse,\nAnd sanctify the numbers.\n\nCRESSIDA:\nProphet may you be!\nIf I be false, or swerve a hair from truth,\nWhen time is old and hath forgot itself,\nWhen waterdrops have worn the stones of Troy,\nAnd blind oblivion swallow'd cities up,\nAnd mighty states characterless are grated\nTo dusty nothing, yet let memory,\nFrom false to false, among false maids in love,\nUpbraid my falsehood! when they've said 'as false\nAs air, as water, wind, or sandy earth,\nAs fox to lamb, as wolf to heifer's calf,\nPard to the hind, or stepdame to her son,'\n'Yea,' let them say, to stick the heart of falsehood,\n'As false as Cressid.'\n\nPANDARUS:\nGo to, a bargain made: seal it, seal it; I'll be the\nwitness. Here I hold your hand, here my cousin's.\nIf ever you prove false one to another, since I have\ntaken such pains to bring you together, let all\npitiful goers-between be called to the world's end\nafter my name; call them all Pandars; let all\nconstant men be Troiluses, all false women Cressids,\nand all brokers-between Pandars! say, amen.\n\nTROILUS:\nAmen.\n\nCRESSIDA:\nAmen.\n\nPANDARUS:\nAmen. Whereupon I will show you a chamber with a\nbed; which bed, because it shall not speak of your\npretty encounters, press it to death: away!\nAnd Cupid grant all tongue-tied maidens here\nBed, chamber, Pandar to provide this gear!\n\nCALCHAS:\nNow, princes, for the service I have done you,\nThe advantage of the time prompts me aloud\nTo call for recompense. Appear it to your mind\nThat, through the sight I bear in things to love,\nI have abandon'd Troy, left my possession,\nIncurr'd a traitor's name; exposed myself,\nFrom certain and possess'd conveniences,\nTo doubtful fortunes; sequestering from me all\nThat time, acquaintance, custom and condition\nMade tame and most familiar to my nature,\nAnd here, to do you service, am become\nAs new into the world, strange, unacquainted:\nI do beseech you, as in way of taste,\nTo give me now a little benefit,\nOut of those many register'd in promise,\nWhich, you say, live to come in my behalf.\n\nAGAMEMNON:\nWhat wouldst thou of us, Trojan? make demand.\n\nCALCHAS:\nYou have a Trojan prisoner, call'd Antenor,\nYesterday took: Troy holds him very dear.\nOft have you--often have you thanks therefore--\nDesired my Cressid in right great exchange,\nWhom Troy hath still denied: but this Antenor,\nI know, is such a wrest in their affairs\nThat their negotiations all must slack,\nWanting his manage; and they will almost\nGive us a prince of blood, a son of Priam,\nIn change of him: let him be sent, great princes,\nAnd he shall buy my daughter; and her presence\nShall quite strike off all service I have done,\nIn most accepted pain.\n\nAGAMEMNON:\nLet Diomedes bear him,\nAnd bring us Cressid hither: Calchas shall have\nWhat he requests of us. Good Diomed,\nFurnish you fairly for this interchange:\nWithal bring word if Hector will to-morrow\nBe answer'd in his challenge: Ajax is ready.\n\nDIOMEDES:\nThis shall I undertake; and 'tis a burden\nWhich I am proud to bear.\n\nULYSSES:\nAchilles stands i' the entrance of his tent:\nPlease it our general to pass strangely by him,\nAs if he were forgot; and, princes all,\nLay negligent and loose regard upon him:\nI will come last. 'Tis like he'll question me\nWhy such unplausive eyes are bent on him:\nIf so, I have derision medicinable,\nTo use between your strangeness and his pride,\nWhich his own will shall have desire to drink:\nIt may be good: pride hath no other glass\nTo show itself but pride, for supple knees\nFeed arrogance and are the proud man's fees.\n\nAGAMEMNON:\nWe'll execute your purpose, and put on\nA form of strangeness as we pass along:\nSo do each lord, and either greet him not,\nOr else disdainfully, which shall shake him more\nThan if not look'd on. I will lead the way.\n\nACHILLES:\nWhat, comes the general to speak with me?\nYou know my mind, I'll fight no more 'gainst Troy.\n\nAGAMEMNON:\nWhat says Achilles? would he aught with us?\n\nNESTOR:\nWould you, my lord, aught with the general?\n\nACHILLES:\nNo.\n\nNESTOR:\nNothing, my lord.\n\nAGAMEMNON:\nThe better.\n\nACHILLES:\nGood day, good day.\n\nMENELAUS:\nHow do you? how do you?\n\nACHILLES:\nWhat, does the cuckold scorn me?\n\nAJAX:\nHow now, Patroclus!\n\nACHILLES:\nGood morrow, Ajax.\n\nAJAX:\nHa?\n\nACHILLES:\nGood morrow.\n\nAJAX:\nAy, and good next day too.\n\nACHILLES:\nWhat mean these fellows? Know they not Achilles?\n\nPATROCLUS:\nThey pass by strangely: they were used to bend\nTo send their smiles before them to Achilles;\nTo come as humbly as they used to creep\nTo holy altars.\n\nACHILLES:\nWhat, am I poor of late?\n'Tis certain, greatness, once fall'n out with fortune,\nMust fall out with men too: what the declined is\nHe shall as soon read in the eyes of others\nAs feel in his own fall; for men, like butterflies,\nShow not their mealy wings but to the summer,\nAnd not a man, for being simply man,\nHath any honour, but honour for those honours\nThat are without him, as place, riches, favour,\nPrizes of accident as oft as merit:\nWhich when they fall, as being slippery standers,\nThe love that lean'd on them as slippery too,\nDo one pluck down another and together\nDie in the fall. But 'tis not so with me:\nFortune and I are friends: I do enjoy\nAt ample point all that I did possess,\nSave these men's looks; who do, methinks, find out\nSomething not worth in me such rich beholding\nAs they have often given. Here is Ulysses;\nI'll interrupt his reading.\nHow now Ulysses!\n\nULYSSES:\nNow, great Thetis' son!\n\nACHILLES:\nWhat are you reading?\n\nULYSSES:\nA strange fellow here\nWrites me: 'That man, how dearly ever parted,\nHow much in having, or without or in,\nCannot make boast to have that which he hath,\nNor feels not what he owes, but by reflection;\nAs when his virtues shining upon others\nHeat them and they retort that heat again\nTo the first giver.'\n\nACHILLES:\nThis is not strange, Ulysses.\nThe beauty that is borne here in the face\nThe bearer knows not, but commends itself\nTo others' eyes; nor doth the eye itself,\nThat most pure spirit of sense, behold itself,\nNot going from itself; but eye to eye opposed\nSalutes each other with each other's form;\nFor speculation turns not to itself,\nTill it hath travell'd and is mirror'd there\nWhere it may see itself. This is not strange at all.\n\nULYSSES:\nI do not strain at the position,--\nIt is familiar,--but at the author's drift;\nWho, in his circumstance, expressly proves\nThat no man is the lord of any thing,\nThough in and of him there be much consisting,\nTill he communicate his parts to others:\nNor doth he of himself know them for aught\nTill he behold them form'd in the applause\nWhere they're extended; who, like an arch,\nreverberates\nThe voice again, or, like a gate of steel\nFronting the sun, receives and renders back\nHis figure and his heat.  I was much wrapt in this;\nAnd apprehended here immediately\nThe unknown Ajax.\nHeavens, what a man is there! a very horse,\nThat has he knows not what. Nature, what things there are\nMost abject in regard and dear in use!\nWhat things again most dear in the esteem\nAnd poor in worth! Now shall we see to-morrow--\nAn act that very chance doth throw upon him--\nAjax renown'd. O heavens, what some men do,\nWhile some men leave to do!\nHow some men creep in skittish fortune's hall,\nWhiles others play the idiots in her eyes!\nHow one man eats into another's pride,\nWhile pride is fasting in his wantonness!\nTo see these Grecian lords!--why, even already\nThey clap the lubber Ajax on the shoulder,\nAs if his foot were on brave Hector's breast\nAnd great Troy shrieking.\n\nACHILLES:\nI do believe it; for they pass'd by me\nAs misers do by beggars, neither gave to me\nGood word nor look: what, are my deeds forgot?\n\nULYSSES:\nTime hath, my lord, a wallet at his back,\nWherein he puts alms for oblivion,\nA great-sized monster of ingratitudes:\nThose scraps are good deeds past; which are devour'd\nAs fast as they are made, forgot as soon\nAs done: perseverance, dear my lord,\nKeeps honour bright: to have done is to hang\nQuite out of fashion, like a rusty mail\nIn monumental mockery. Take the instant way;\nFor honour travels in a strait so narrow,\nWhere one but goes abreast: keep then the path;\nFor emulation hath a thousand sons\nThat one by one pursue: if you give way,\nOr hedge aside from the direct forthright,\nLike to an enter'd tide, they all rush by\nAnd leave you hindmost;\nOr like a gallant horse fall'n in first rank,\nLie there for pavement to the abject rear,\nO'er-run and trampled on: then what they do in present,\nThough less than yours in past, must o'ertop yours;\nFor time is like a fashionable host\nThat slightly shakes his parting guest by the hand,\nAnd with his arms outstretch'd, as he would fly,\nGrasps in the comer: welcome ever smiles,\nAnd farewell goes out sighing. O, let not\nvirtue seek\nRemuneration for the thing it was;\nFor beauty, wit,\nHigh birth, vigour of bone, desert in service,\nLove, friendship, charity, are subjects all\nTo envious and calumniating time.\nOne touch of nature makes the whole world kin,\nThat all with one consent praise new-born gawds,\nThough they are made and moulded of things past,\nAnd give to dust that is a little gilt\nMore laud than gilt o'er-dusted.\nThe present eye praises the present object.\nThen marvel not, thou great and complete man,\nThat all the Greeks begin to worship Ajax;\nSince things in motion sooner catch the eye\nThan what not stirs. The cry went once on thee,\nAnd still it might, and yet it may again,\nIf thou wouldst not entomb thyself alive\nAnd case thy reputation in thy tent;\nWhose glorious deeds, but in these fields of late,\nMade emulous missions 'mongst the gods themselves\nAnd drave great Mars to faction.\n\nACHILLES:\nOf this my privacy\nI have strong reasons.\n\nULYSSES:\nBut 'gainst your privacy\nThe reasons are more potent and heroical:\n'Tis known, Achilles, that you are in love\nWith one of Priam's daughters.\n\nACHILLES:\nHa! known!\n\nULYSSES:\nIs that a wonder?\nThe providence that's in a watchful state\nKnows almost every grain of Plutus' gold,\nFinds bottom in the uncomprehensive deeps,\nKeeps place with thought and almost, like the gods,\nDoes thoughts unveil in their dumb cradles.\nThere is a mystery--with whom relation\nDurst never meddle--in the soul of state;\nWhich hath an operation more divine\nThan breath or pen can give expressure to:\nAll the commerce that you have had with Troy\nAs perfectly is ours as yours, my lord;\nAnd better would it fit Achilles much\nTo throw down Hector than Polyxena:\nBut it must grieve young Pyrrhus now at home,\nWhen fame shall in our islands sound her trump,\nAnd all the Greekish girls shall tripping sing,\n'Great Hector's sister did Achilles win,\nBut our great Ajax bravely beat down him.'\nFarewell, my lord: I as your lover speak;\nThe fool slides o'er the ice that you should break.\n\nPATROCLUS:\nTo this effect, Achilles, have I moved you:\nA woman impudent and mannish grown\nIs not more loathed than an effeminate man\nIn time of action. I stand condemn'd for this;\nThey think my little stomach to the war\nAnd your great love to me restrains you thus:\nSweet, rouse yourself; and the weak wanton Cupid\nShall from your neck unloose his amorous fold,\nAnd, like a dew-drop from the lion's mane,\nBe shook to air.\n\nACHILLES:\nShall Ajax fight with Hector?\n\nPATROCLUS:\nAy, and perhaps receive much honour by him.\n\nACHILLES:\nI see my reputation is at stake\nMy fame is shrewdly gored.\n\nPATROCLUS:\nO, then, beware;\nThose wounds heal ill that men do give themselves:\nOmission to do what is necessary\nSeals a commission to a blank of danger;\nAnd danger, like an ague, subtly taints\nEven then when we sit idly in the sun.\n\nACHILLES:\nGo call Thersites hither, sweet Patroclus:\nI'll send the fool to Ajax and desire him\nTo invite the Trojan lords after the combat\nTo see us here unarm'd: I have a woman's longing,\nAn appetite that I am sick withal,\nTo see great Hector in his weeds of peace,\nTo talk with him and to behold his visage,\nEven to my full of view.\nA labour saved!\n\nTHERSITES:\nA wonder!\n\nACHILLES:\nWhat?\n\nTHERSITES:\nAjax goes up and down the field, asking for himself.\n\nACHILLES:\nHow so?\n\nTHERSITES:\nHe must fight singly to-morrow with Hector, and is so\nprophetically proud of an heroical cudgelling that he\nraves in saying nothing.\n\nACHILLES:\nHow can that be?\n\nTHERSITES:\nWhy, he stalks up and down like a peacock,--a stride\nand a stand: ruminates like an hostess that hath no\narithmetic but her brain to set down her reckoning:\nbites his lip with a politic regard, as who should\nsay 'There were wit in this head, an 'twould out;'\nand so there is, but it lies as coldly in him as fire\nin a flint, which will not show without knocking.\nThe man's undone forever; for if Hector break not his\nneck i' the combat, he'll break 't himself in\nvain-glory. He knows not me: I said 'Good morrow,\nAjax;' and he replies 'Thanks, Agamemnon.' What think\nyou of this man that takes me for the general? He's\ngrown a very land-fish, language-less, a monster.\nA plague of opinion! a man may wear it on both\nsides, like a leather jerkin.\n\nACHILLES:\nThou must be my ambassador to him, Thersites.\n\nTHERSITES:\nWho, I? why, he'll answer nobody; he professes not\nanswering: speaking is for beggars; he wears his\ntongue in's arms. I will put on his presence: let\nPatroclus make demands to me, you shall see the\npageant of Ajax.\n\nACHILLES:\nTo him, Patroclus; tell him I humbly desire the\nvaliant Ajax to invite the most valorous Hector\nto come unarmed to my tent, and to procure\nsafe-conduct for his person of the magnanimous\nand most illustrious six-or-seven-times-honoured\ncaptain-general of the Grecian army, Agamemnon,\net cetera. Do this.\n\nPATROCLUS:\nJove bless great Ajax!\n\nTHERSITES:\nHum!\n\nPATROCLUS:\nI come from the worthy Achilles,--\n\nTHERSITES:\nHa!\n\nPATROCLUS:\nWho most humbly desires you to invite Hector to his tent,--\n\nTHERSITES:\nHum!\n\nPATROCLUS:\nAnd to procure safe-conduct from Agamemnon.\n\nTHERSITES:\nAgamemnon!\n\nPATROCLUS:\nAy, my lord.\n\nTHERSITES:\nHa!\n\nPATROCLUS:\nWhat say you to't?\n\nTHERSITES:\nGod b' wi' you, with all my heart.\n\nPATROCLUS:\nYour answer, sir.\n\nTHERSITES:\nIf to-morrow be a fair day, by eleven o'clock it will\ngo one way or other: howsoever, he shall pay for me\nere he has me.\n\nPATROCLUS:\nYour answer, sir.\n\nTHERSITES:\nFare you well, with all my heart.\n\nACHILLES:\nWhy, but he is not in this tune, is he?\n\nTHERSITES:\nNo, but he's out o' tune thus. What music will be in\nhim when Hector has knocked out his brains, I know\nnot; but, I am sure, none, unless the fiddler Apollo\nget his sinews to make catlings on.\n\nACHILLES:\nCome, thou shalt bear a letter to him straight.\n\nTHERSITES:\nLet me bear another to his horse; for that's the more\ncapable creature.\n\nACHILLES:\nMy mind is troubled, like a fountain stirr'd;\nAnd I myself see not the bottom of it.\n\nTHERSITES:\nWould the fountain of your mind were clear again,\nthat I might water an ass at it! I had rather be a\ntick in a sheep than such a valiant ignorance.\n\nPARIS:\nSee, ho! who is that there?\n\nDEIPHOBUS:\nIt is the Lord AEneas.\n\nAENEAS:\nIs the prince there in person?\nHad I so good occasion to lie long\nAs you, prince Paris, nothing but heavenly business\nShould rob my bed-mate of my company.\n\nDIOMEDES:\nThat's my mind too. Good morrow, Lord AEneas.\n\nPARIS:\nA valiant Greek, AEneas,--take his hand,--\nWitness the process of your speech, wherein\nYou told how Diomed, a whole week by days,\nDid haunt you in the field.\n\nAENEAS:\nHealth to you, valiant sir,\nDuring all question of the gentle truce;\nBut when I meet you arm'd, as black defiance\nAs heart can think or courage execute.\n\nDIOMEDES:\nThe one and other Diomed embraces.\nOur bloods are now in calm; and, so long, health!\nBut when contention and occasion meet,\nBy Jove, I'll play the hunter for thy life\nWith all my force, pursuit and policy.\n\nAENEAS:\nAnd thou shalt hunt a lion, that will fly\nWith his face backward. In humane gentleness,\nWelcome to Troy! now, by Anchises' life,\nWelcome, indeed! By Venus' hand I swear,\nNo man alive can love in such a sort\nThe thing he means to kill more excellently.\n\nDIOMEDES:\nWe sympathize: Jove, let AEneas live,\nIf to my sword his fate be not the glory,\nA thousand complete courses of the sun!\nBut, in mine emulous honour, let him die,\nWith every joint a wound, and that to-morrow!\n\nAENEAS:\nWe know each other well.\n\nDIOMEDES:\nWe do; and long to know each other worse.\n\nPARIS:\nThis is the most despiteful gentle greeting,\nThe noblest hateful love, that e'er I heard of.\nWhat business, lord, so early?\n\nAENEAS:\nI was sent for to the king; but why, I know not.\n\nPARIS:\nHis purpose meets you: 'twas to bring this Greek\nTo Calchas' house, and there to render him,\nFor the enfreed Antenor, the fair Cressid:\nLet's have your company, or, if you please,\nHaste there before us: I constantly do think--\nOr rather, call my thought a certain knowledge--\nMy brother Troilus lodges there to-night:\nRouse him and give him note of our approach.\nWith the whole quality wherefore: I fear\nWe shall be much unwelcome.\n\nAENEAS:\nThat I assure you:\nTroilus had rather Troy were borne to Greece\nThan Cressid borne from Troy.\n\nPARIS:\nThere is no help;\nThe bitter disposition of the time\nWill have it so. On, lord; we'll follow you.\n\nAENEAS:\nGood morrow, all.\n\nPARIS:\nAnd tell me, noble Diomed, faith, tell me true,\nEven in the soul of sound good-fellowship,\nWho, in your thoughts, merits fair Helen best,\nMyself or Menelaus?\n\nDIOMEDES:\nBoth alike:\nHe merits well to have her, that doth seek her,\nNot making any scruple of her soilure,\nWith such a hell of pain and world of charge,\nAnd you as well to keep her, that defend her,\nNot palating the taste of her dishonour,\nWith such a costly loss of wealth and friends:\nHe, like a puling cuckold, would drink up\nThe lees and dregs of a flat tamed piece;\nYou, like a lecher, out of whorish loins\nAre pleased to breed out your inheritors:\nBoth merits poised, each weighs nor less nor more;\nBut he as he, the heavier for a whore.\n\nPARIS:\nYou are too bitter to your countrywoman.\n\nDIOMEDES:\nShe's bitter to her country: hear me, Paris:\nFor every false drop in her bawdy veins\nA Grecian's life hath sunk; for every scruple\nOf her contaminated carrion weight,\nA Trojan hath been slain: since she could speak,\nShe hath not given so many good words breath\nAs for her Greeks and Trojans suffer'd death.\n\nPARIS:\nFair Diomed, you do as chapmen do,\nDispraise the thing that you desire to buy:\nBut we in silence hold this virtue well,\nWe'll but commend what we intend to sell.\nHere lies our way.\n\nTROILUS:\nDear, trouble not yourself: the morn is cold.\n\nCRESSIDA:\nThen, sweet my lord, I'll call mine uncle down;\nHe shall unbolt the gates.\n\nTROILUS:\nTrouble him not;\nTo bed, to bed: sleep kill those pretty eyes,\nAnd give as soft attachment to thy senses\nAs infants' empty of all thought!\n\nCRESSIDA:\nGood morrow, then.\n\nTROILUS:\nI prithee now, to bed.\n\nCRESSIDA:\nAre you a-weary of me?\n\nTROILUS:\nO Cressida! but that the busy day,\nWaked by the lark, hath roused the ribald crows,\nAnd dreaming night will hide our joys no longer,\nI would not from thee.\n\nCRESSIDA:\nNight hath been too brief.\n\nTROILUS:\nBeshrew the witch! with venomous wights she stays\nAs tediously as hell, but flies the grasps of love\nWith wings more momentary-swift than thought.\nYou will catch cold, and curse me.\n\nCRESSIDA:\nPrithee, tarry:\nYou men will never tarry.\nO foolish Cressid! I might have still held off,\nAnd then you would have tarried. Hark!\nthere's one up.\n\nPANDARUS:\n\nTROILUS:\nIt is your uncle.\n\nCRESSIDA:\nA pestilence on him! now will he be mocking:\nI shall have such a life!\n\nPANDARUS:\nHow now, how now! how go maidenheads? Here, you\nmaid! where's my cousin Cressid?\n\nCRESSIDA:\nGo hang yourself, you naughty mocking uncle!\nYou bring me to do, and then you flout me too.\n\nPANDARUS:\nTo do what? to do what? let her say\nwhat: what have I brought you to do?\n\nCRESSIDA:\nCome, come, beshrew your heart! you'll ne'er be good,\nNor suffer others.\n\nPANDARUS:\nHa! ha! Alas, poor wretch! ah, poor capocchia!\nhast not slept to-night? would he not, a naughty\nman, let it sleep? a bugbear take him!\n\nCRESSIDA:\nDid not I tell you? Would he were knock'd i' the head!\nWho's that at door? good uncle, go and see.\nMy lord, come you again into my chamber:\nYou smile and mock me, as if I meant naughtily.\n\nTROILUS:\nHa, ha!\n\nCRESSIDA:\nCome, you are deceived, I think of no such thing.\nHow earnestly they knock! Pray you, come in:\nI would not for half Troy have you seen here.\n\nPANDARUS:\nWho's there? what's the matter? will you beat\ndown the door? How now! what's the matter?\n\nAENEAS:\nGood morrow, lord, good morrow.\n\nPANDARUS:\nWho's there? my Lord AEneas! By my troth,\nI knew you not: what news with you so early?\n\nAENEAS:\nIs not Prince Troilus here?\n\nPANDARUS:\nHere! what should he do here?\n\nAENEAS:\nCome, he is here, my lord; do not deny him:\nIt doth import him much to speak with me.\n\nPANDARUS:\nIs he here, say you? 'tis more than I know, I'll\nbe sworn: for my own part, I came in late. What\nshould he do here?\n\nAENEAS:\nWho!--nay, then: come, come, you'll do him wrong\nere you're ware: you'll be so true to him, to be\nfalse to him: do not you know of him, but yet go\nfetch him hither; go.\n\nTROILUS:\nHow now! what's the matter?\n\nAENEAS:\nMy lord, I scarce have leisure to salute you,\nMy matter is so rash: there is at hand\nParis your brother, and Deiphobus,\nThe Grecian Diomed, and our Antenor\nDeliver'd to us; and for him forthwith,\nEre the first sacrifice, within this hour,\nWe must give up to Diomedes' hand\nThe Lady Cressida.\n\nTROILUS:\nIs it so concluded?\n\nAENEAS:\nBy Priam and the general state of Troy:\nThey are at hand and ready to effect it.\n\nTROILUS:\nHow my achievements mock me!\nI will go meet them: and, my Lord AEneas,\nWe met by chance; you did not find me here.\n\nAENEAS:\nGood, good, my lord; the secrets of nature\nHave not more gift in taciturnity.\n\nPANDARUS:\nIs't possible? no sooner got but lost? The devil\ntake Antenor! the young prince will go mad: a\nplague upon Antenor! I would they had broke 's neck!\n\nCRESSIDA:\nHow now! what's the matter? who was here?\n\nPANDARUS:\nAh, ah!\n\nCRESSIDA:\nWhy sigh you so profoundly? where's my lord? gone!\nTell me, sweet uncle, what's the matter?\n\nPANDARUS:\nWould I were as deep under the earth as I am above!\n\nCRESSIDA:\nO the gods! what's the matter?\n\nPANDARUS:\nPrithee, get thee in: would thou hadst ne'er been\nborn! I knew thou wouldst be his death. O, poor\ngentleman! A plague upon Antenor!\n\nCRESSIDA:\nGood uncle, I beseech you, on my knees! beseech you,\nwhat's the matter?\n\nPANDARUS:\nThou must be gone, wench, thou must be gone; thou\nart changed for Antenor: thou must to thy father,\nand be gone from Troilus: 'twill be his death;\n'twill be his bane; he cannot bear it.\n\nCRESSIDA:\nO you immortal gods! I will not go.\n\nPANDARUS:\nThou must.\n\nCRESSIDA:\nI will not, uncle: I have forgot my father;\nI know no touch of consanguinity;\nNo kin no love, no blood, no soul so near me\nAs the sweet Troilus. O you gods divine!\nMake Cressid's name the very crown of falsehood,\nIf ever she leave Troilus! Time, force, and death,\nDo to this body what extremes you can;\nBut the strong base and building of my love\nIs as the very centre of the earth,\nDrawing all things to it. I'll go in and weep,--\n\nPANDARUS:\nDo, do.\n\nCRESSIDA:\nTear my bright hair and scratch my praised cheeks,\nCrack my clear voice with sobs and break my heart\nWith sounding Troilus. I will not go from Troy.\n\nPARIS:\nIt is great morning, and the hour prefix'd\nOf her delivery to this valiant Greek\nComes fast upon. Good my brother Troilus,\nTell you the lady what she is to do,\nAnd haste her to the purpose.\n\nTROILUS:\nWalk into her house;\nI'll bring her to the Grecian presently:\nAnd to his hand when I deliver her,\nThink it an altar, and thy brother Troilus\nA priest there offering to it his own heart.\n\nPARIS:\nI know what 'tis to love;\nAnd would, as I shall pity, I could help!\nPlease you walk in, my lords.\n\nPANDARUS:\nBe moderate, be moderate.\n\nCRESSIDA:\nWhy tell you me of moderation?\nThe grief is fine, full, perfect, that I taste,\nAnd violenteth in a sense as strong\nAs that which causeth it: how can I moderate it?\nIf I could temporize with my affection,\nOr brew it to a weak and colder palate,\nThe like allayment could I give my grief.\nMy love admits no qualifying dross;\nNo more my grief, in such a precious loss.\n\nPANDARUS:\nHere, here, here he comes.\nAh, sweet ducks!\n\nCRESSIDA:\nO Troilus! Troilus!\n\nPANDARUS:\nWhat a pair of spectacles is here!\nLet me embrace too. 'O heart,' as the goodly saying is,\n'--O heart, heavy heart,\nWhy sigh'st thou without breaking?\nwhere he answers again,\n'Because thou canst not ease thy smart\nBy friendship nor by speaking.'\nThere was never a truer rhyme. Let us cast away\nnothing, for we may live to have need of such a\nverse: we see it, we see it. How now, lambs?\n\nTROILUS:\nCressid, I love thee in so strain'd a purity,\nThat the bless'd gods, as angry with my fancy,\nMore bright in zeal than the devotion which\nCold lips blow to their deities, take thee from me.\n\nCRESSIDA:\nHave the gods envy?\n\nPANDARUS:\nAy, ay, ay, ay; 'tis too plain a case.\n\nCRESSIDA:\nAnd is it true that I must go from Troy?\n\nTROILUS:\nA hateful truth.\n\nCRESSIDA:\nWhat, and from Troilus too?\n\nTROILUS:\nFrom Troy and Troilus.\n\nCRESSIDA:\nIs it possible?\n\nTROILUS:\nAnd suddenly; where injury of chance\nPuts back leave-taking, justles roughly by\nAll time of pause, rudely beguiles our lips\nOf all rejoindure, forcibly prevents\nOur lock'd embrasures, strangles our dear vows\nEven in the birth of our own labouring breath:\nWe two, that with so many thousand sighs\nDid buy each other, must poorly sell ourselves\nWith the rude brevity and discharge of one.\nInjurious time now with a robber's haste\nCrams his rich thievery up, he knows not how:\nAs many farewells as be stars in heaven,\nWith distinct breath and consign'd kisses to them,\nHe fumbles up into a lose adieu,\nAnd scants us with a single famish'd kiss,\nDistasted with the salt of broken tears.\n\nAENEAS:\n\nTROILUS:\nHark! you are call'd: some say the Genius so\nCries 'come' to him that instantly must die.\nBid them have patience; she shall come anon.\n\nPANDARUS:\nWhere are my tears? rain, to lay this wind, or\nmy heart will be blown up by the root.\n\nCRESSIDA:\nI must then to the Grecians?\n\nTROILUS:\nNo remedy.\n\nCRESSIDA:\nA woful Cressid 'mongst the merry Greeks!\nWhen shall we see again?\n\nTROILUS:\nHear me, my love: be thou but true of heart,--\n\nCRESSIDA:\nI true! how now! what wicked deem is this?\n\nTROILUS:\nNay, we must use expostulation kindly,\nFor it is parting from us:\nI speak not 'be thou true,' as fearing thee,\nFor I will throw my glove to Death himself,\nThat there's no maculation in thy heart:\nBut 'be thou true,' say I, to fashion in\nMy sequent protestation; be thou true,\nAnd I will see thee.\n\nCRESSIDA:\nO, you shall be exposed, my lord, to dangers\nAs infinite as imminent! but I'll be true.\n\nTROILUS:\nAnd I'll grow friend with danger. Wear this sleeve.\n\nCRESSIDA:\nAnd you this glove. When shall I see you?\n\nTROILUS:\nI will corrupt the Grecian sentinels,\nTo give thee nightly visitation.\nBut yet be true.\n\nCRESSIDA:\nO heavens! 'be true' again!\n\nTROILUS:\nHear while I speak it, love:\nThe Grecian youths are full of quality;\nThey're loving, well composed with gifts of nature,\nFlowing and swelling o'er with arts and exercise:\nHow novelty may move, and parts with person,\nAlas, a kind of godly jealousy--\nWhich, I beseech you, call a virtuous sin--\nMakes me afeard.\n\nCRESSIDA:\nO heavens! you love me not.\n\nTROILUS:\nDie I a villain, then!\nIn this I do not call your faith in question\nSo mainly as my merit: I cannot sing,\nNor heel the high lavolt, nor sweeten talk,\nNor play at subtle games; fair virtues all,\nTo which the Grecians are most prompt and pregnant:\nBut I can tell that in each grace of these\nThere lurks a still and dumb-discoursive devil\nThat tempts most cunningly: but be not tempted.\n\nCRESSIDA:\nDo you think I will?\n\nTROILUS:\nNo.\nBut something may be done that we will not:\nAnd sometimes we are devils to ourselves,\nWhen we will tempt the frailty of our powers,\nPresuming on their changeful potency.\n\nAENEAS:\n\nTROILUS:\nCome, kiss; and let us part.\n\nPARIS:\n\nTROILUS:\nGood brother, come you hither;\nAnd bring AEneas and the Grecian with you.\n\nCRESSIDA:\nMy lord, will you be true?\n\nTROILUS:\nWho, I? alas, it is my vice, my fault:\nWhiles others fish with craft for great opinion,\nI with great truth catch mere simplicity;\nWhilst some with cunning gild their copper crowns,\nWith truth and plainness I do wear mine bare.\nFear not my truth: the moral of my wit\nIs 'plain and true;' there's all the reach of it.\nWelcome, Sir Diomed! here is the lady\nWhich for Antenor we deliver you:\nAt the port, lord, I'll give her to thy hand,\nAnd by the way possess thee what she is.\nEntreat her fair; and, by my soul, fair Greek,\nIf e'er thou stand at mercy of my sword,\nName Cressida and thy life shall be as safe\nAs Priam is in Ilion.\n\nDIOMEDES:\nFair Lady Cressid,\nSo please you, save the thanks this prince expects:\nThe lustre in your eye, heaven in your cheek,\nPleads your fair usage; and to Diomed\nYou shall be mistress, and command him wholly.\n\nTROILUS:\nGrecian, thou dost not use me courteously,\nTo shame the zeal of my petition to thee\nIn praising her: I tell thee, lord of Greece,\nShe is as far high-soaring o'er thy praises\nAs thou unworthy to be call'd her servant.\nI charge thee use her well, even for my charge;\nFor, by the dreadful Pluto, if thou dost not,\nThough the great bulk Achilles be thy guard,\nI'll cut thy throat.\n\nDIOMEDES:\nO, be not moved, Prince Troilus:\nLet me be privileged by my place and message,\nTo be a speaker free; when I am hence\nI'll answer to my lust: and know you, lord,\nI'll nothing do on charge: to her own worth\nShe shall be prized; but that you say 'be't so,'\nI'll speak it in my spirit and honour, 'no.'\n\nTROILUS:\nCome, to the port. I'll tell thee, Diomed,\nThis brave shall oft make thee to hide thy head.\nLady, give me your hand, and, as we walk,\nTo our own selves bend we our needful talk.\n\nPARIS:\nHark! Hector's trumpet.\n\nAENEAS:\nHow have we spent this morning!\nThe prince must think me tardy and remiss,\nThat sore to ride before him to the field.\n\nPARIS:\n'Tis Troilus' fault: come, come, to field with him.\n\nDEIPHOBUS:\nLet us make ready straight.\n\nAENEAS:\nYea, with a bridegroom's fresh alacrity,\nLet us address to tend on Hector's heels:\nThe glory of our Troy doth this day lie\nOn his fair worth and single chivalry.\n\nAGAMEMNON:\nHere art thou in appointment fresh and fair,\nAnticipating time with starting courage.\nGive with thy trumpet a loud note to Troy,\nThou dreadful Ajax; that the appalled air\nMay pierce the head of the great combatant\nAnd hale him hither.\n\nAJAX:\nThou, trumpet, there's my purse.\nNow crack thy lungs, and split thy brazen pipe:\nBlow, villain, till thy sphered bias cheek\nOutswell the colic of puff'd Aquilon:\nCome, stretch thy chest and let thy eyes spout blood;\nThou blow'st for Hector.\n\nULYSSES:\nNo trumpet answers.\n\nACHILLES:\n'Tis but early days.\n\nAGAMEMNON:\nIs not yond Diomed, with Calchas' daughter?\n\nULYSSES:\n'Tis he, I ken the manner of his gait;\nHe rises on the toe: that spirit of his\nIn aspiration lifts him from the earth.\n\nAGAMEMNON:\nIs this the Lady Cressid?\n\nDIOMEDES:\nEven she.\n\nAGAMEMNON:\nMost dearly welcome to the Greeks, sweet lady.\n\nNESTOR:\nOur general doth salute you with a kiss.\n\nULYSSES:\nYet is the kindness but particular;\n'Twere better she were kiss'd in general.\n\nNESTOR:\nAnd very courtly counsel: I'll begin.\nSo much for Nestor.\n\nACHILLES:\nI'll take what winter from your lips, fair lady:\nAchilles bids you welcome.\n\nMENELAUS:\nI had good argument for kissing once.\n\nPATROCLUS:\nBut that's no argument for kissing now;\nFor this popp'd Paris in his hardiment,\nAnd parted thus you and your argument.\n\nULYSSES:\nO deadly gall, and theme of all our scorns!\nFor which we lose our heads to gild his horns.\n\nPATROCLUS:\nThe first was Menelaus' kiss; this, mine:\nPatroclus kisses you.\n\nMENELAUS:\nO, this is trim!\n\nPATROCLUS:\nParis and I kiss evermore for him.\n\nMENELAUS:\nI'll have my kiss, sir. Lady, by your leave.\n\nCRESSIDA:\nIn kissing, do you render or receive?\n\nPATROCLUS:\nBoth take and give.\n\nCRESSIDA:\nI'll make my match to live,\nThe kiss you take is better than you give;\nTherefore no kiss.\n\nMENELAUS:\nI'll give you boot, I'll give you three for one.\n\nCRESSIDA:\nYou're an odd man; give even or give none.\n\nMENELAUS:\nAn odd man, lady! every man is odd.\n\nCRESSIDA:\nNo, Paris is not; for you know 'tis true,\nThat you are odd, and he is even with you.\n\nMENELAUS:\nYou fillip me o' the head.\n\nCRESSIDA:\nNo, I'll be sworn.\n\nULYSSES:\nIt were no match, your nail against his horn.\nMay I, sweet lady, beg a kiss of you?\n\nCRESSIDA:\nYou may.\n\nULYSSES:\nI do desire it.\n\nCRESSIDA:\nWhy, beg, then.\n\nULYSSES:\nWhy then for Venus' sake, give me a kiss,\nWhen Helen is a maid again, and his.\n\nCRESSIDA:\nI am your debtor, claim it when 'tis due.\n\nULYSSES:\nNever's my day, and then a kiss of you.\n\nDIOMEDES:\nLady, a word: I'll bring you to your father.\n\nNESTOR:\nA woman of quick sense.\n\nULYSSES:\nFie, fie upon her!\nThere's language in her eye, her cheek, her lip,\nNay, her foot speaks; her wanton spirits look out\nAt every joint and motive of her body.\nO, these encounterers, so glib of tongue,\nThat give accosting welcome ere it comes,\nAnd wide unclasp the tables of their thoughts\nTo every ticklish reader! set them down\nFor sluttish spoils of opportunity\nAnd daughters of the game.\n\nALL:\nThe Trojans' trumpet.\n\nAGAMEMNON:\nYonder comes the troop.\n\nAENEAS:\nHail, all you state of Greece! what shall be done\nTo him that victory commands? or do you purpose\nA victor shall be known? will you the knights\nShall to the edge of all extremity\nPursue each other, or shall be divided\nBy any voice or order of the field?\nHector bade ask.\n\nAGAMEMNON:\nWhich way would Hector have it?\n\nAENEAS:\nHe cares not; he'll obey conditions.\n\nACHILLES:\n'Tis done like Hector; but securely done,\nA little proudly, and great deal misprizing\nThe knight opposed.\n\nAENEAS:\nIf not Achilles, sir,\nWhat is your name?\n\nACHILLES:\nIf not Achilles, nothing.\n\nAENEAS:\nTherefore Achilles: but, whate'er, know this:\nIn the extremity of great and little,\nValour and pride excel themselves in Hector;\nThe one almost as infinite as all,\nThe other blank as nothing. Weigh him well,\nAnd that which looks like pride is courtesy.\nThis Ajax is half made of Hector's blood:\nIn love whereof, half Hector stays at home;\nHalf heart, half hand, half Hector comes to seek\nThis blended knight, half Trojan and half Greek.\n\nACHILLES:\nA maiden battle, then? O, I perceive you.\n\nAGAMEMNON:\nHere is Sir Diomed. Go, gentle knight,\nStand by our Ajax: as you and Lord AEneas\nConsent upon the order of their fight,\nSo be it; either to the uttermost,\nOr else a breath: the combatants being kin\nHalf stints their strife before their strokes begin.\n\nULYSSES:\nThey are opposed already.\n\nAGAMEMNON:\nWhat Trojan is that same that looks so heavy?\n\nULYSSES:\nThe youngest son of Priam, a true knight,\nNot yet mature, yet matchless, firm of word,\nSpeaking in deeds and deedless in his tongue;\nNot soon provoked nor being provoked soon calm'd:\nHis heart and hand both open and both free;\nFor what he has he gives, what thinks he shows;\nYet gives he not till judgment guide his bounty,\nNor dignifies an impure thought with breath;\nManly as Hector, but more dangerous;\nFor Hector in his blaze of wrath subscribes\nTo tender objects, but he in heat of action\nIs more vindicative than jealous love:\nThey call him Troilus, and on him erect\nA second hope, as fairly built as Hector.\nThus says AEneas; one that knows the youth\nEven to his inches, and with private soul\nDid in great Ilion thus translate him to me.\n\nAGAMEMNON:\nThey are in action.\n\nNESTOR:\nNow, Ajax, hold thine own!\n\nTROILUS:\nHector, thou sleep'st;\nAwake thee!\n\nAGAMEMNON:\nHis blows are well disposed: there, Ajax!\n\nDIOMEDES:\nYou must no more.\n\nAENEAS:\nPrinces, enough, so please you.\n\nAJAX:\nI am not warm yet; let us fight again.\n\nDIOMEDES:\nAs Hector pleases.\n\nHECTOR:\nWhy, then will I no more:\nThou art, great lord, my father's sister's son,\nA cousin-german to great Priam's seed;\nThe obligation of our blood forbids\nA gory emulation 'twixt us twain:\nWere thy commixtion Greek and Trojan so\nThat thou couldst say 'This hand is Grecian all,\nAnd this is Trojan; the sinews of this leg\nAll Greek, and this all Troy; my mother's blood\nRuns on the dexter cheek, and this sinister\nBounds in my father's;' by Jove multipotent,\nThou shouldst not bear from me a Greekish member\nWherein my sword had not impressure made\nOf our rank feud: but the just gods gainsay\nThat any drop thou borrow'dst from thy mother,\nMy sacred aunt, should by my mortal sword\nBe drain'd! Let me embrace thee, Ajax:\nBy him that thunders, thou hast lusty arms;\nHector would have them fall upon him thus:\nCousin, all honour to thee!\n\nAJAX:\nI thank thee, Hector\nThou art too gentle and too free a man:\nI came to kill thee, cousin, and bear hence\nA great addition earned in thy death.\n\nHECTOR:\nNot Neoptolemus so mirable,\nOn whose bright crest Fame with her loud'st Oyes\nCries 'This is he,' could promise to himself\nA thought of added honour torn from Hector.\n\nAENEAS:\nThere is expectance here from both the sides,\nWhat further you will do.\n\nHECTOR:\nWe'll answer it;\nThe issue is embracement: Ajax, farewell.\n\nAJAX:\nIf I might in entreaties find success--\nAs seld I have the chance--I would desire\nMy famous cousin to our Grecian tents.\n\nDIOMEDES:\n'Tis Agamemnon's wish, and great Achilles\nDoth long to see unarm'd the valiant Hector.\n\nHECTOR:\nAEneas, call my brother Troilus to me,\nAnd signify this loving interview\nTo the expecters of our Trojan part;\nDesire them home. Give me thy hand, my cousin;\nI will go eat with thee and see your knights.\n\nAJAX:\nGreat Agamemnon comes to meet us here.\n\nHECTOR:\nThe worthiest of them tell me name by name;\nBut for Achilles, mine own searching eyes\nShall find him by his large and portly size.\n\nAGAMEMNON:\nWorthy of arms! as welcome as to one\nThat would be rid of such an enemy;\nBut that's no welcome: understand more clear,\nWhat's past and what's to come is strew'd with husks\nAnd formless ruin of oblivion;\nBut in this extant moment, faith and troth,\nStrain'd purely from all hollow bias-drawing,\nBids thee, with most divine integrity,\nFrom heart of very heart, great Hector, welcome.\n\nHECTOR:\nI thank thee, most imperious Agamemnon.\n\nAGAMEMNON:\n\nMENELAUS:\nLet me confirm my princely brother's greeting:\nYou brace of warlike brothers, welcome hither.\n\nHECTOR:\nWho must we answer?\n\nAENEAS:\nThe noble Menelaus.\n\nHECTOR:\nO, you, my lord? by Mars his gauntlet, thanks!\nMock not, that I affect the untraded oath;\nYour quondam wife swears still by Venus' glove:\nShe's well, but bade me not commend her to you.\n\nMENELAUS:\nName her not now, sir; she's a deadly theme.\n\nHECTOR:\nO, pardon; I offend.\n\nNESTOR:\nI have, thou gallant Trojan, seen thee oft\nLabouring for destiny make cruel way\nThrough ranks of Greekish youth, and I have seen thee,\nAs hot as Perseus, spur thy Phrygian steed,\nDespising many forfeits and subduements,\nWhen thou hast hung thy advanced sword i' the air,\nNot letting it decline on the declined,\nThat I have said to some my standers by\n'Lo, Jupiter is yonder, dealing life!'\nAnd I have seen thee pause and take thy breath,\nWhen that a ring of Greeks have hemm'd thee in,\nLike an Olympian wrestling: this have I seen;\nBut this thy countenance, still lock'd in steel,\nI never saw till now. I knew thy grandsire,\nAnd once fought with him: he was a soldier good;\nBut, by great Mars, the captain of us all,\nNever saw like thee. Let an old man embrace thee;\nAnd, worthy warrior, welcome to our tents.\n\nAENEAS:\n'Tis the old Nestor.\n\nHECTOR:\nLet me embrace thee, good old chronicle,\nThat hast so long walk'd hand in hand with time:\nMost reverend Nestor, I am glad to clasp thee.\n\nNESTOR:\nI would my arms could match thee in contention,\nAs they contend with thee in courtesy.\n\nHECTOR:\nI would they could.\n\nNESTOR:\nHa!\nBy this white beard, I'ld fight with thee to-morrow.\nWell, welcome, welcome! I have seen the time.\n\nULYSSES:\nI wonder now how yonder city stands\nWhen we have here her base and pillar by us.\n\nHECTOR:\nI know your favour, Lord Ulysses, well.\nAh, sir, there's many a Greek and Trojan dead,\nSince first I saw yourself and Diomed\nIn Ilion, on your Greekish embassy.\n\nULYSSES:\nSir, I foretold you then what would ensue:\nMy prophecy is but half his journey yet;\nFor yonder walls, that pertly front your town,\nYond towers, whose wanton tops do buss the clouds,\nMust kiss their own feet.\n\nHECTOR:\nI must not believe you:\nThere they stand yet, and modestly I think,\nThe fall of every Phrygian stone will cost\nA drop of Grecian blood: the end crowns all,\nAnd that old common arbitrator, Time,\nWill one day end it.\n\nULYSSES:\nSo to him we leave it.\nMost gentle and most valiant Hector, welcome:\nAfter the general, I beseech you next\nTo feast with me and see me at my tent.\n\nACHILLES:\nI shall forestall thee, Lord Ulysses, thou!\nNow, Hector, I have fed mine eyes on thee;\nI have with exact view perused thee, Hector,\nAnd quoted joint by joint.\n\nHECTOR:\nIs this Achilles?\n\nACHILLES:\nI am Achilles.\n\nHECTOR:\nStand fair, I pray thee: let me look on thee.\n\nACHILLES:\nBehold thy fill.\n\nHECTOR:\nNay, I have done already.\n\nACHILLES:\nThou art too brief: I will the second time,\nAs I would buy thee, view thee limb by limb.\n\nHECTOR:\nO, like a book of sport thou'lt read me o'er;\nBut there's more in me than thou understand'st.\nWhy dost thou so oppress me with thine eye?\n\nACHILLES:\nTell me, you heavens, in which part of his body\nShall I destroy him? whether there, or there, or there?\nThat I may give the local wound a name\nAnd make distinct the very breach whereout\nHector's great spirit flew: answer me, heavens!\n\nHECTOR:\nIt would discredit the blest gods, proud man,\nTo answer such a question: stand again:\nThink'st thou to catch my life so pleasantly\nAs to prenominate in nice conjecture\nWhere thou wilt hit me dead?\n\nACHILLES:\nI tell thee, yea.\n\nHECTOR:\nWert thou an oracle to tell me so,\nI'd not believe thee. Henceforth guard thee well;\nFor I'll not kill thee there, nor there, nor there;\nBut, by the forge that stithied Mars his helm,\nI'll kill thee every where, yea, o'er and o'er.\nYou wisest Grecians, pardon me this brag;\nHis insolence draws folly from my lips;\nBut I'll endeavour deeds to match these words,\nOr may I never--\n\nAJAX:\nDo not chafe thee, cousin:\nAnd you, Achilles, let these threats alone,\nTill accident or purpose bring you to't:\nYou may have every day enough of Hector\nIf you have stomach; the general state, I fear,\nCan scarce entreat you to be odd with him.\n\nHECTOR:\nI pray you, let us see you in the field:\nWe have had pelting wars, since you refused\nThe Grecians' cause.\n\nACHILLES:\nDost thou entreat me, Hector?\nTo-morrow do I meet thee, fell as death;\nTo-night all friends.\n\nHECTOR:\nThy hand upon that match.\n\nAGAMEMNON:\nFirst, all you peers of Greece, go to my tent;\nThere in the full convive we: afterwards,\nAs Hector's leisure and your bounties shall\nConcur together, severally entreat him.\nBeat loud the tabourines, let the trumpets blow,\nThat this great soldier may his welcome know.\n\nTROILUS:\nMy Lord Ulysses, tell me, I beseech you,\nIn what place of the field doth Calchas keep?\n\nULYSSES:\nAt Menelaus' tent, most princely Troilus:\nThere Diomed doth feast with him to-night;\nWho neither looks upon the heaven nor earth,\nBut gives all gaze and bent of amorous view\nOn the fair Cressid.\n\nTROILUS:\nShall sweet lord, be bound to you so much,\nAfter we part from Agamemnon's tent,\nTo bring me thither?\n\nULYSSES:\nYou shall command me, sir.\nAs gentle tell me, of what honour was\nThis Cressida in Troy? Had she no lover there\nThat wails her absence?\n\nTROILUS:\nO, sir, to such as boasting show their scars\nA mock is due. Will you walk on, my lord?\nShe was beloved, she loved; she is, and doth:\nBut still sweet love is food for fortune's tooth.\n\nACHILLES:\nI'll heat his blood with Greekish wine to-night,\nWhich with my scimitar I'll cool to-morrow.\nPatroclus, let us feast him to the height.\n\nPATROCLUS:\nHere comes Thersites.\n\nACHILLES:\nHow now, thou core of envy!\nThou crusty batch of nature, what's the news?\n\nTHERSITES:\nWhy, thou picture of what thou seemest, and idol\nof idiot worshippers, here's a letter for thee.\n\nACHILLES:\nFrom whence, fragment?\n\nTHERSITES:\nWhy, thou full dish of fool, from Troy.\n\nPATROCLUS:\nWho keeps the tent now?\n\nTHERSITES:\nThe surgeon's box, or the patient's wound.\n\nPATROCLUS:\nWell said, adversity! and what need these tricks?\n\nTHERSITES:\nPrithee, be silent, boy; I profit not by thy talk:\nthou art thought to be Achilles' male varlet.\n\nPATROCLUS:\nMale varlet, you rogue! what's that?\n\nTHERSITES:\nWhy, his masculine whore. Now, the rotten diseases\nof the south, the guts-griping, ruptures, catarrhs,\nloads o' gravel i' the back, lethargies, cold\npalsies, raw eyes, dirt-rotten livers, wheezing\nlungs, bladders full of imposthume, sciaticas,\nlimekilns i' the palm, incurable bone-ache, and the\nrivelled fee-simple of the tetter, take and take\nagain such preposterous discoveries!\n\nPATROCLUS:\nWhy thou damnable box of envy, thou, what meanest\nthou to curse thus?\n\nTHERSITES:\nDo I curse thee?\n\nPATROCLUS:\nWhy no, you ruinous butt, you whoreson\nindistinguishable cur, no.\n\nTHERSITES:\nNo! why art thou then exasperate, thou idle\nimmaterial skein of sleave-silk, thou green sarcenet\nflap for a sore eye, thou tassel of a prodigal's\npurse, thou? Ah, how the poor world is pestered\nwith such waterflies, diminutives of nature!\n\nPATROCLUS:\nOut, gall!\n\nTHERSITES:\nFinch-egg!\n\nACHILLES:\nMy sweet Patroclus, I am thwarted quite\nFrom my great purpose in to-morrow's battle.\nHere is a letter from Queen Hecuba,\nA token from her daughter, my fair love,\nBoth taxing me and gaging me to keep\nAn oath that I have sworn. I will not break it:\nFall Greeks; fail fame; honour or go or stay;\nMy major vow lies here, this I'll obey.\nCome, come, Thersites, help to trim my tent:\nThis night in banqueting must all be spent.\nAway, Patroclus!\n\nTHERSITES:\nWith too much blood and too little brain, these two\nmay run mad; but, if with too much brain and too\nlittle blood they do, I'll be a curer of madmen.\nHere's Agamemnon, an honest fellow enough and one\nthat loves quails; but he has not so much brain as\nearwax: and the goodly transformation of Jupiter\nthere, his brother, the bull,--the primitive statue,\nand oblique memorial of cuckolds; a thrifty\nshoeing-horn in a chain, hanging at his brother's\nleg,--to what form but that he is, should wit larded\nwith malice and malice forced with wit turn him to?\nTo an ass, were nothing; he is both ass and ox: to\nan ox, were nothing; he is both ox and ass. To be a\ndog, a mule, a cat, a fitchew, a toad, a lizard, an\nowl, a puttock, or a herring without a roe, I would\nnot care; but to be Menelaus, I would conspire\nagainst destiny. Ask me not, what I would be, if I\nwere not Thersites; for I care not to be the louse\nof a lazar, so I were not Menelaus! Hey-day!\nspirits and fires!\n\nAGAMEMNON:\nWe go wrong, we go wrong.\n\nAJAX:\nNo, yonder 'tis;\nThere, where we see the lights.\n\nHECTOR:\nI trouble you.\n\nAJAX:\nNo, not a whit.\n\nULYSSES:\nHere comes himself to guide you.\n\nACHILLES:\nWelcome, brave Hector; welcome, princes all.\n\nAGAMEMNON:\nSo now, fair prince of Troy, I bid good night.\nAjax commands the guard to tend on you.\n\nHECTOR:\nThanks and good night to the Greeks' general.\n\nMENELAUS:\nGood night, my lord.\n\nHECTOR:\nGood night, sweet lord Menelaus.\n\nTHERSITES:\nSweet draught: 'sweet' quoth 'a! sweet sink,\nsweet sewer.\n\nACHILLES:\nGood night and welcome, both at once, to those\nThat go or tarry.\n\nAGAMEMNON:\nGood night.\n\nACHILLES:\nOld Nestor tarries; and you too, Diomed,\nKeep Hector company an hour or two.\n\nDIOMEDES:\nI cannot, lord; I have important business,\nThe tide whereof is now. Good night, great Hector.\n\nHECTOR:\nGive me your hand.\n\nULYSSES:\n\nTROILUS:\nSweet sir, you honour me.\n\nHECTOR:\nAnd so, good night.\n\nACHILLES:\nCome, come, enter my tent.\n\nTHERSITES:\nThat same Diomed's a false-hearted rogue, a most\nunjust knave; I will no more trust him when he leers\nthan I will a serpent when he hisses: he will spend\nhis mouth, and promise, like Brabbler the hound:\nbut when he performs, astronomers foretell it; it\nis prodigious, there will come some change; the sun\nborrows of the moon, when Diomed keeps his\nword. I will rather leave to see Hector, than\nnot to dog him: they say he keeps a Trojan\ndrab, and uses the traitor Calchas' tent: I'll\nafter. Nothing but lechery! all incontinent varlets!\n\nDIOMEDES:\nWhat, are you up here, ho? speak.\n\nCALCHAS:\n\nDIOMEDES:\nCalchas, I think. Where's your daughter?\n\nCALCHAS:\n\nULYSSES:\nStand where the torch may not discover us.\n\nTROILUS:\nCressid comes forth to him.\n\nDIOMEDES:\nHow now, my charge!\n\nCRESSIDA:\nNow, my sweet guardian! Hark, a word with you.\n\nTROILUS:\nYea, so familiar!\n\nULYSSES:\nShe will sing any man at first sight.\n\nTHERSITES:\nAnd any man may sing her, if he can take her cliff;\nshe's noted.\n\nDIOMEDES:\nWill you remember?\n\nCRESSIDA:\nRemember! yes.\n\nDIOMEDES:\nNay, but do, then;\nAnd let your mind be coupled with your words.\n\nTROILUS:\nWhat should she remember?\n\nULYSSES:\nList.\n\nCRESSIDA:\nSweet honey Greek, tempt me no more to folly.\n\nTHERSITES:\nRoguery!\n\nDIOMEDES:\nNay, then,--\n\nCRESSIDA:\nI'll tell you what,--\n\nDIOMEDES:\nFoh, foh! come, tell a pin: you are forsworn.\n\nCRESSIDA:\nIn faith, I cannot: what would you have me do?\n\nTHERSITES:\nA juggling trick,--to be secretly open.\n\nDIOMEDES:\nWhat did you swear you would bestow on me?\n\nCRESSIDA:\nI prithee, do not hold me to mine oath;\nBid me do any thing but that, sweet Greek.\n\nDIOMEDES:\nGood night.\n\nTROILUS:\nHold, patience!\n\nULYSSES:\nHow now, Trojan!\n\nCRESSIDA:\nDiomed,--\n\nDIOMEDES:\nNo, no, good night: I'll be your fool no more.\n\nTROILUS:\nThy better must.\n\nCRESSIDA:\nHark, one word in your ear.\n\nTROILUS:\nO plague and madness!\n\nULYSSES:\nYou are moved, prince; let us depart, I pray you,\nLest your displeasure should enlarge itself\nTo wrathful terms: this place is dangerous;\nThe time right deadly; I beseech you, go.\n\nTROILUS:\nBehold, I pray you!\n\nULYSSES:\nNay, good my lord, go off:\nYou flow to great distraction; come, my lord.\n\nTROILUS:\nI pray thee, stay.\n\nULYSSES:\nYou have not patience; come.\n\nTROILUS:\nI pray you, stay; by hell and all hell's torments\nI will not speak a word!\n\nDIOMEDES:\nAnd so, good night.\n\nCRESSIDA:\nNay, but you part in anger.\n\nTROILUS:\nDoth that grieve thee?\nO wither'd truth!\n\nULYSSES:\nWhy, how now, lord!\n\nTROILUS:\nBy Jove,\nI will be patient.\n\nCRESSIDA:\nGuardian!--why, Greek!\n\nDIOMEDES:\nFoh, foh! adieu; you palter.\n\nCRESSIDA:\nIn faith, I do not: come hither once again.\n\nULYSSES:\nYou shake, my lord, at something: will you go?\nYou will break out.\n\nTROILUS:\nShe strokes his cheek!\n\nULYSSES:\nCome, come.\n\nTROILUS:\nNay, stay; by Jove, I will not speak a word:\nThere is between my will and all offences\nA guard of patience: stay a little while.\n\nTHERSITES:\nHow the devil Luxury, with his fat rump and\npotato-finger, tickles these together! Fry, lechery, fry!\n\nDIOMEDES:\nBut will you, then?\n\nCRESSIDA:\nIn faith, I will, la; never trust me else.\n\nDIOMEDES:\nGive me some token for the surety of it.\n\nCRESSIDA:\nI'll fetch you one.\n\nULYSSES:\nYou have sworn patience.\n\nTROILUS:\nFear me not, sweet lord;\nI will not be myself, nor have cognition\nOf what I feel: I am all patience.\n\nTHERSITES:\nNow the pledge; now, now, now!\n\nCRESSIDA:\nHere, Diomed, keep this sleeve.\n\nTROILUS:\nO beauty! where is thy faith?\n\nULYSSES:\nMy lord,--\n\nTROILUS:\nI will be patient; outwardly I will.\n\nCRESSIDA:\nYou look upon that sleeve; behold it well.\nHe loved me--O false wench!--Give't me again.\n\nDIOMEDES:\nWhose was't?\n\nCRESSIDA:\nIt is no matter, now I have't again.\nI will not meet with you to-morrow night:\nI prithee, Diomed, visit me no more.\n\nTHERSITES:\nNow she sharpens: well said, whetstone!\n\nDIOMEDES:\nI shall have it.\n\nCRESSIDA:\nWhat, this?\n\nDIOMEDES:\nAy, that.\n\nCRESSIDA:\nO, all you gods! O pretty, pretty pledge!\nThy master now lies thinking in his bed\nOf thee and me, and sighs, and takes my glove,\nAnd gives memorial dainty kisses to it,\nAs I kiss thee. Nay, do not snatch it from me;\nHe that takes that doth take my heart withal.\n\nDIOMEDES:\nI had your heart before, this follows it.\n\nTROILUS:\nI did swear patience.\n\nCRESSIDA:\nYou shall not have it, Diomed; faith, you shall not;\nI'll give you something else.\n\nDIOMEDES:\nI will have this: whose was it?\n\nCRESSIDA:\nIt is no matter.\n\nDIOMEDES:\nCome, tell me whose it was.\n\nCRESSIDA:\n'Twas one's that loved me better than you will.\nBut, now you have it, take it.\n\nDIOMEDES:\nWhose was it?\n\nCRESSIDA:\nBy all Diana's waiting-women yond,\nAnd by herself, I will not tell you whose.\n\nDIOMEDES:\nTo-morrow will I wear it on my helm,\nAnd grieve his spirit that dares not challenge it.\n\nTROILUS:\nWert thou the devil, and worest it on thy horn,\nIt should be challenged.\n\nCRESSIDA:\nWell, well, 'tis done, 'tis past: and yet it is not;\nI will not keep my word.\n\nDIOMEDES:\nWhy, then, farewell;\nThou never shalt mock Diomed again.\n\nCRESSIDA:\nYou shall not go: one cannot speak a word,\nBut it straight starts you.\n\nDIOMEDES:\nI do not like this fooling.\n\nTHERSITES:\nNor I, by Pluto: but that that likes not you pleases me best.\n\nDIOMEDES:\nWhat, shall I come? the hour?\n\nCRESSIDA:\nAy, come:--O Jove!--do come:--I shall be plagued.\n\nDIOMEDES:\nFarewell till then.\n\nCRESSIDA:\nGood night: I prithee, come.\nTroilus, farewell! one eye yet looks on thee\nBut with my heart the other eye doth see.\nAh, poor our sex! this fault in us I find,\nThe error of our eye directs our mind:\nWhat error leads must err; O, then conclude\nMinds sway'd by eyes are full of turpitude.\n\nTHERSITES:\nA proof of strength she could not publish more,\nUnless she said ' My mind is now turn'd whore.'\n\nULYSSES:\nAll's done, my lord.\n\nTROILUS:\nIt is.\n\nULYSSES:\nWhy stay we, then?\n\nTROILUS:\nTo make a recordation to my soul\nOf every syllable that here was spoke.\nBut if I tell how these two did co-act,\nShall I not lie in publishing a truth?\nSith yet there is a credence in my heart,\nAn esperance so obstinately strong,\nThat doth invert the attest of eyes and ears,\nAs if those organs had deceptious functions,\nCreated only to calumniate.\nWas Cressid here?\n\nULYSSES:\nI cannot conjure, Trojan.\n\nTROILUS:\nShe was not, sure.\n\nULYSSES:\nMost sure she was.\n\nTROILUS:\nWhy, my negation hath no taste of madness.\n\nULYSSES:\nNor mine, my lord: Cressid was here but now.\n\nTROILUS:\nLet it not be believed for womanhood!\nThink, we had mothers; do not give advantage\nTo stubborn critics, apt, without a theme,\nFor depravation, to square the general sex\nBy Cressid's rule: rather think this not Cressid.\n\nULYSSES:\nWhat hath she done, prince, that can soil our mothers?\n\nTROILUS:\nNothing at all, unless that this were she.\n\nTHERSITES:\nWill he swagger himself out on's own eyes?\n\nTROILUS:\nThis she? no, this is Diomed's Cressida:\nIf beauty have a soul, this is not she;\nIf souls guide vows, if vows be sanctimonies,\nIf sanctimony be the gods' delight,\nIf there be rule in unity itself,\nThis is not she. O madness of discourse,\nThat cause sets up with and against itself!\nBi-fold authority! where reason can revolt\nWithout perdition, and loss assume all reason\nWithout revolt: this is, and is not, Cressid.\nWithin my soul there doth conduce a fight\nOf this strange nature that a thing inseparate\nDivides more wider than the sky and earth,\nAnd yet the spacious breadth of this division\nAdmits no orifex for a point as subtle\nAs Ariachne's broken woof to enter.\nInstance, O instance! strong as Pluto's gates;\nCressid is mine, tied with the bonds of heaven:\nInstance, O instance! strong as heaven itself;\nThe bonds of heaven are slipp'd, dissolved, and loosed;\nAnd with another knot, five-finger-tied,\nThe fractions of her faith, orts of her love,\nThe fragments, scraps, the bits and greasy relics\nOf her o'er-eaten faith, are bound to Diomed.\n\nULYSSES:\nMay worthy Troilus be half attach'd\nWith that which here his passion doth express?\n\nTROILUS:\nAy, Greek; and that shall be divulged well\nIn characters as red as Mars his heart\nInflamed with Venus: never did young man fancy\nWith so eternal and so fix'd a soul.\nHark, Greek: as much as I do Cressid love,\nSo much by weight hate I her Diomed:\nThat sleeve is mine that he'll bear on his helm;\nWere it a casque composed by Vulcan's skill,\nMy sword should bite it: not the dreadful spout\nWhich shipmen do the hurricano call,\nConstringed in mass by the almighty sun,\nShall dizzy with more clamour Neptune's ear\nIn his descent than shall my prompted sword\nFalling on Diomed.\n\nTHERSITES:\nHe'll tickle it for his concupy.\n\nTROILUS:\nO Cressid! O false Cressid! false, false, false!\nLet all untruths stand by thy stained name,\nAnd they'll seem glorious.\n\nULYSSES:\nO, contain yourself\nYour passion draws ears hither.\n\nAENEAS:\nI have been seeking you this hour, my lord:\nHector, by this, is arming him in Troy;\nAjax, your guard, stays to conduct you home.\n\nTROILUS:\nHave with you, prince. My courteous lord, adieu.\nFarewell, revolted fair! and, Diomed,\nStand fast, and wear a castle on thy head!\n\nULYSSES:\nI'll bring you to the gates.\n\nTROILUS:\nAccept distracted thanks.\n\nTHERSITES:\nWould I could meet that rogue Diomed! I would\ncroak like a raven; I would bode, I would bode.\nPatroclus will give me any thing for the\nintelligence of this whore: the parrot will not\ndo more for an almond than he for a commodious drab.\nLechery, lechery; still, wars and lechery; nothing\nelse holds fashion: a burning devil take them!\n\nANDROMACHE:\nWhen was my lord so much ungently temper'd,\nTo stop his ears against admonishment?\nUnarm, unarm, and do not fight to-day.\n\nHECTOR:\nYou train me to offend you; get you in:\nBy all the everlasting gods, I'll go!\n\nANDROMACHE:\nMy dreams will, sure, prove ominous to the day.\n\nHECTOR:\nNo more, I say.\n\nCASSANDRA:\nWhere is my brother Hector?\n\nANDROMACHE:\nHere, sister; arm'd, and bloody in intent.\nConsort with me in loud and dear petition,\nPursue we him on knees; for I have dream'd\nOf bloody turbulence, and this whole night\nHath nothing been but shapes and forms of slaughter.\n\nCASSANDRA:\nO, 'tis true.\n\nHECTOR:\nHo! bid my trumpet sound!\n\nCASSANDRA:\nNo notes of sally, for the heavens, sweet brother.\n\nHECTOR:\nBe gone, I say: the gods have heard me swear.\n\nCASSANDRA:\nThe gods are deaf to hot and peevish vows:\nThey are polluted offerings, more abhorr'd\nThan spotted livers in the sacrifice.\n\nANDROMACHE:\nO, be persuaded! do not count it holy\nTo hurt by being just: it is as lawful,\nFor we would give much, to use violent thefts,\nAnd rob in the behalf of charity.\n\nCASSANDRA:\nIt is the purpose that makes strong the vow;\nBut vows to every purpose must not hold:\nUnarm, sweet Hector.\n\nHECTOR:\nHold you still, I say;\nMine honour keeps the weather of my fate:\nLie every man holds dear; but the brave man\nHolds honour far more precious-dear than life.\nHow now, young man! mean'st thou to fight to-day?\n\nANDROMACHE:\nCassandra, call my father to persuade.\n\nHECTOR:\nNo, faith, young Troilus; doff thy harness, youth;\nI am to-day i' the vein of chivalry:\nLet grow thy sinews till their knots be strong,\nAnd tempt not yet the brushes of the war.\nUnarm thee, go, and doubt thou not, brave boy,\nI'll stand to-day for thee and me and Troy.\n\nTROILUS:\nBrother, you have a vice of mercy in you,\nWhich better fits a lion than a man.\n\nHECTOR:\nWhat vice is that, good Troilus? chide me for it.\n\nTROILUS:\nWhen many times the captive Grecian falls,\nEven in the fan and wind of your fair sword,\nYou bid them rise, and live.\n\nHECTOR:\nO,'tis fair play.\n\nTROILUS:\nFool's play, by heaven, Hector.\n\nHECTOR:\nHow now! how now!\n\nTROILUS:\nFor the love of all the gods,\nLet's leave the hermit pity with our mothers,\nAnd when we have our armours buckled on,\nThe venom'd vengeance ride upon our swords,\nSpur them to ruthful work, rein them from ruth.\n\nHECTOR:\nFie, savage, fie!\n\nTROILUS:\nHector, then 'tis wars.\n\nHECTOR:\nTroilus, I would not have you fight to-day.\n\nTROILUS:\nWho should withhold me?\nNot fate, obedience, nor the hand of Mars\nBeckoning with fiery truncheon my retire;\nNot Priamus and Hecuba on knees,\nTheir eyes o'ergalled with recourse of tears;\nNot you, my brother, with your true sword drawn,\nOpposed to hinder me, should stop my way,\nBut by my ruin.\n\nCASSANDRA:\nLay hold upon him, Priam, hold him fast:\nHe is thy crutch; now if thou lose thy stay,\nThou on him leaning, and all Troy on thee,\nFall all together.\n\nPRIAM:\nCome, Hector, come, go back:\nThy wife hath dream'd; thy mother hath had visions;\nCassandra doth foresee; and I myself\nAm like a prophet suddenly enrapt\nTo tell thee that this day is ominous:\nTherefore, come back.\n\nHECTOR:\nAEneas is a-field;\nAnd I do stand engaged to many Greeks,\nEven in the faith of valour, to appear\nThis morning to them.\n\nPRIAM:\nAy, but thou shalt not go.\n\nHECTOR:\nI must not break my faith.\nYou know me dutiful; therefore, dear sir,\nLet me not shame respect; but give me leave\nTo take that course by your consent and voice,\nWhich you do here forbid me, royal Priam.\n\nCASSANDRA:\nO Priam, yield not to him!\n\nANDROMACHE:\nDo not, dear father.\n\nHECTOR:\nAndromache, I am offended with you:\nUpon the love you bear me, get you in.\n\nTROILUS:\nThis foolish, dreaming, superstitious girl\nMakes all these bodements.\n\nCASSANDRA:\nO, farewell, dear Hector!\nLook, how thou diest! look, how thy eye turns pale!\nLook, how thy wounds do bleed at many vents!\nHark, how Troy roars! how Hecuba cries out!\nHow poor Andromache shrills her dolours forth!\nBehold, distraction, frenzy and amazement,\nLike witless antics, one another meet,\nAnd all cry, Hector! Hector's dead! O Hector!\n\nTROILUS:\nAway! away!\n\nCASSANDRA:\nFarewell: yet, soft! Hector! take my leave:\nThou dost thyself and all our Troy deceive.\n\nHECTOR:\nYou are amazed, my liege, at her exclaim:\nGo in and cheer the town: we'll forth and fight,\nDo deeds worth praise and tell you them at night.\n\nPRIAM:\nFarewell: the gods with safety stand about thee!\n\nTROILUS:\nThey are at it, hark! Proud Diomed, believe,\nI come to lose my arm, or win my sleeve.\n\nPANDARUS:\nDo you hear, my lord? do you hear?\n\nTROILUS:\nWhat now?\n\nPANDARUS:\nHere's a letter come from yond poor girl.\n\nTROILUS:\nLet me read.\n\nPANDARUS:\nA whoreson tisick, a whoreson rascally tisick so\ntroubles me, and the foolish fortune of this girl;\nand what one thing, what another, that I shall\nleave you one o' these days: and I have a rheum\nin mine eyes too, and such an ache in my bones\nthat, unless a man were cursed, I cannot tell what\nto think on't. What says she there?\n\nTROILUS:\nWords, words, mere words, no matter from the heart:\nThe effect doth operate another way.\nGo, wind, to wind, there turn and change together.\nMy love with words and errors still she feeds;\nBut edifies another with her deeds.\n\nTHERSITES:\nNow they are clapper-clawing one another; I'll go\nlook on. That dissembling abominable varlets Diomed,\nhas got that same scurvy doting foolish young knave's\nsleeve of Troy there in his helm: I would fain see\nthem meet; that that same young Trojan ass, that\nloves the whore there, might send that Greekish\nwhore-masterly villain, with the sleeve, back to the\ndissembling luxurious drab, of a sleeveless errand.\nO' the t'other side, the policy of those crafty\nswearing rascals, that stale old mouse-eaten dry\ncheese, Nestor, and that same dog-fox, Ulysses, is\nnot proved worthy a blackberry: they set me up, in\npolicy, that mongrel cur, Ajax, against that dog of\nas bad a kind, Achilles: and now is the cur Ajax\nprouder than the cur Achilles, and will not arm\nto-day; whereupon the Grecians begin to proclaim\nbarbarism, and policy grows into an ill opinion.\nSoft! here comes sleeve, and t'other.\n\nTROILUS:\nFly not; for shouldst thou take the river Styx,\nI would swim after.\n\nDIOMEDES:\nThou dost miscall retire:\nI do not fly, but advantageous care\nWithdrew me from the odds of multitude:\nHave at thee!\n\nTHERSITES:\nHold thy whore, Grecian!--now for thy whore,\nTrojan!--now the sleeve, now the sleeve!\n\nHECTOR:\nWhat art thou, Greek? art thou for Hector's match?\nArt thou of blood and honour?\n\nTHERSITES:\nNo, no, I am a rascal; a scurvy railing knave:\na very filthy rogue.\n\nHECTOR:\nI do believe thee: live.\n\nTHERSITES:\nGod-a-mercy, that thou wilt believe me; but a\nplague break thy neck for frightening me! What's\nbecome of the wenching rogues? I think they have\nswallowed one another: I would laugh at that\nmiracle: yet, in a sort, lechery eats itself.\nI'll seek them.\n\nDIOMEDES:\nGo, go, my servant, take thou Troilus' horse;\nPresent the fair steed to my lady Cressid:\nFellow, commend my service to her beauty;\nTell her I have chastised the amorous Trojan,\nAnd am her knight by proof.\n\nServant:\nI go, my lord.\n\nAGAMEMNON:\nRenew, renew! The fierce Polydamas\nHath beat down Menon: bastard Margarelon\nHath Doreus prisoner,\nAnd stands colossus-wise, waving his beam,\nUpon the pashed corses of the kings\nEpistrophus and Cedius: Polyxenes is slain,\nAmphimachus and Thoas deadly hurt,\nPatroclus ta'en or slain, and Palamedes\nSore hurt and bruised: the dreadful Sagittary\nAppals our numbers: haste we, Diomed,\nTo reinforcement, or we perish all.\n\nNESTOR:\nGo, bear Patroclus' body to Achilles;\nAnd bid the snail-paced Ajax arm for shame.\nThere is a thousand Hectors in the field:\nNow here he fights on Galathe his horse,\nAnd there lacks work; anon he's there afoot,\nAnd there they fly or die, like scaled sculls\nBefore the belching whale; then is he yonder,\nAnd there the strawy Greeks, ripe for his edge,\nFall down before him, like the mower's swath:\nHere, there, and every where, he leaves and takes,\nDexterity so obeying appetite\nThat what he will he does, and does so much\nThat proof is call'd impossibility.\n\nULYSSES:\nO, courage, courage, princes! great Achilles\nIs arming, weeping, cursing, vowing vengeance:\nPatroclus' wounds have roused his drowsy blood,\nTogether with his mangled Myrmidons,\nThat noseless, handless, hack'd and chipp'd, come to him,\nCrying on Hector. Ajax hath lost a friend\nAnd foams at mouth, and he is arm'd and at it,\nRoaring for Troilus, who hath done to-day\nMad and fantastic execution,\nEngaging and redeeming of himself\nWith such a careless force and forceless care\nAs if that luck, in very spite of cunning,\nBade him win all.\n\nAJAX:\nTroilus! thou coward Troilus!\n\nDIOMEDES:\nAy, there, there.\n\nNESTOR:\nSo, so, we draw together.\n\nACHILLES:\nWhere is this Hector?\nCome, come, thou boy-queller, show thy face;\nKnow what it is to meet Achilles angry:\nHector? where's Hector? I will none but Hector.\n\nAJAX:\nTroilus, thou coward Troilus, show thy head!\n\nDIOMEDES:\nTroilus, I say! where's Troilus?\n\nAJAX:\nWhat wouldst thou?\n\nDIOMEDES:\nI would correct him.\n\nAJAX:\nWere I the general, thou shouldst have my office\nEre that correction. Troilus, I say! what, Troilus!\n\nTROILUS:\nO traitor Diomed! turn thy false face, thou traitor,\nAnd pay thy life thou owest me for my horse!\n\nDIOMEDES:\nHa, art thou there?\n\nAJAX:\nI'll fight with him alone: stand, Diomed.\n\nDIOMEDES:\nHe is my prize; I will not look upon.\n\nTROILUS:\nCome, both you cogging Greeks; have at you both!\n\nHECTOR:\nYea, Troilus? O, well fought, my youngest brother!\n\nACHILLES:\nNow do I see thee, ha! have at thee, Hector!\n\nHECTOR:\nPause, if thou wilt.\n\nACHILLES:\nI do disdain thy courtesy, proud Trojan:\nBe happy that my arms are out of use:\nMy rest and negligence befriends thee now,\nBut thou anon shalt hear of me again;\nTill when, go seek thy fortune.\n\nHECTOR:\nFare thee well:\nI would have been much more a fresher man,\nHad I expected thee. How now, my brother!\n\nTROILUS:\nAjax hath ta'en AEneas: shall it be?\nNo, by the flame of yonder glorious heaven,\nHe shall not carry him: I'll be ta'en too,\nOr bring him off: fate, hear me what I say!\nI reck not though I end my life to-day.\n\nHECTOR:\nStand, stand, thou Greek; thou art a goodly mark:\nNo? wilt thou not? I like thy armour well;\nI'll frush it and unlock the rivets all,\nBut I'll be master of it: wilt thou not,\nbeast, abide?\nWhy, then fly on, I'll hunt thee for thy hide.\n\nACHILLES:\nCome here about me, you my Myrmidons;\nMark what I say. Attend me where I wheel:\nStrike not a stroke, but keep yourselves in breath:\nAnd when I have the bloody Hector found,\nEmpale him with your weapons round about;\nIn fellest manner execute your aims.\nFollow me, sirs, and my proceedings eye:\nIt is decreed Hector the great must die.\n\nTHERSITES:\nThe cuckold and the cuckold-maker are at it. Now,\nbull! now, dog! 'Loo, Paris, 'loo! now my double-\nhenned sparrow! 'loo, Paris, 'loo! The bull has the\ngame: ware horns, ho!\n\nMARGARELON:\nTurn, slave, and fight.\n\nTHERSITES:\nWhat art thou?\n\nMARGARELON:\nA bastard son of Priam's.\n\nTHERSITES:\nI am a bastard too; I love bastards: I am a bastard\nbegot, bastard instructed, bastard in mind, bastard\nin valour, in every thing illegitimate. One bear will\nnot bite another, and wherefore should one bastard?\nTake heed, the quarrel's most ominous to us: if the\nson of a whore fight for a whore, he tempts judgment:\nfarewell, bastard.\n\nMARGARELON:\nThe devil take thee, coward!\n\nHECTOR:\nMost putrefied core, so fair without,\nThy goodly armour thus hath cost thy life.\nNow is my day's work done; I'll take good breath:\nRest, sword; thou hast thy fill of blood and death.\n\nACHILLES:\nLook, Hector, how the sun begins to set;\nHow ugly night comes breathing at his heels:\nEven with the vail and darking of the sun,\nTo close the day up, Hector's life is done.\n\nHECTOR:\nI am unarm'd; forego this vantage, Greek.\n\nACHILLES:\nStrike, fellows, strike; this is the man I seek.\nSo, Ilion, fall thou next! now, Troy, sink down!\nHere lies thy heart, thy sinews, and thy bone.\nOn, Myrmidons, and cry you all amain,\n'Achilles hath the mighty Hector slain.'\nHark! a retire upon our Grecian part.\n\nMYRMIDONS:\nThe Trojan trumpets sound the like, my lord.\n\nACHILLES:\nThe dragon wing of night o'erspreads the earth,\nAnd, stickler-like, the armies separates.\nMy half-supp'd sword, that frankly would have fed,\nPleased with this dainty bait, thus goes to bed.\nCome, tie his body to my horse's tail;\nAlong the field I will the Trojan trail.\n\nAGAMEMNON:\nHark! hark! what shout is that?\n\nNESTOR:\nPeace, drums!\nAchilles! Achilles! Hector's slain! Achilles.\n\nDIOMEDES:\nThe bruit is, Hector's slain, and by Achilles.\n\nAJAX:\nIf it be so, yet bragless let it be;\nGreat Hector was a man as good as he.\n\nAGAMEMNON:\nMarch patiently along: let one be sent\nTo pray Achilles see us at our tent.\nIf in his death the gods have us befriended,\nGreat Troy is ours, and our sharp wars are ended.\n\nAENEAS:\nStand, ho! yet are we masters of the field:\nNever go home; here starve we out the night.\n\nTROILUS:\nHector is slain.\n\nALL:\nHector! the gods forbid!\n\nTROILUS:\nHe's dead; and at the murderer's horse's tail,\nIn beastly sort, dragg'd through the shameful field.\nFrown on, you heavens, effect your rage with speed!\nSit, gods, upon your thrones, and smile at Troy!\nI say, at once let your brief plagues be mercy,\nAnd linger not our sure destructions on!\n\nAENEAS:\nMy lord, you do discomfort all the host!\n\nTROILUS:\nYou understand me not that tell me so:\nI do not speak of flight, of fear, of death,\nBut dare all imminence that gods and men\nAddress their dangers in. Hector is gone:\nWho shall tell Priam so, or Hecuba?\nLet him that will a screech-owl aye be call'd,\nGo in to Troy, and say there, Hector's dead:\nThere is a word will Priam turn to stone;\nMake wells and Niobes of the maids and wives,\nCold statues of the youth, and, in a word,\nScare Troy out of itself. But, march away:\nHector is dead; there is no more to say.\nStay yet. You vile abominable tents,\nThus proudly pight upon our Phrygian plains,\nLet Titan rise as early as he dare,\nI'll through and through you! and, thou great-sized coward,\nNo space of earth shall sunder our two hates:\nI'll haunt thee like a wicked conscience still,\nThat mouldeth goblins swift as frenzy's thoughts.\nStrike a free march to Troy! with comfort go:\nHope of revenge shall hide our inward woe.\n\nPANDARUS:\nBut hear you, hear you!\n\nTROILUS:\nHence, broker-lackey! ignomy and shame\nPursue thy life, and live aye with thy name!\n\nPANDARUS:\nA goodly medicine for my aching bones! O world!\nworld! world! thus is the poor agent despised!\nO traitors and bawds, how earnestly are you set\na-work, and how ill requited! why should our\nendeavour be so loved and the performance so loathed?\nwhat verse for it? what instance for it? Let me see:\nFull merrily the humble-bee doth sing,\nTill he hath lost his honey and his sting;\nAnd being once subdued in armed tail,\nSweet honey and sweet notes together fail.\nGood traders in the flesh, set this in your\npainted cloths.\nAs many as be here of pander's hall,\nYour eyes, half out, weep out at Pandar's fall;\nOr if you cannot weep, yet give some groans,\nThough not for me, yet for your aching bones.\nBrethren and sisters of the hold-door trade,\nSome two months hence my will shall here be made:\nIt should be now, but that my fear is this,\nSome galled goose of Winchester would hiss:\nTill then I'll sweat and seek about for eases,\nAnd at that time bequeathe you my diseases.\n\nANTONIO:\nIn sooth, I know not why I am so sad:\nIt wearies me; you say it wearies you;\nBut how I caught it, found it, or came by it,\nWhat stuff 'tis made of, whereof it is born,\nI am to learn;\nAnd such a want-wit sadness makes of me,\nThat I have much ado to know myself.\n\nSALARINO:\nYour mind is tossing on the ocean;\nThere, where your argosies with portly sail,\nLike signiors and rich burghers on the flood,\nOr, as it were, the pageants of the sea,\nDo overpeer the petty traffickers,\nThat curtsy to them, do them reverence,\nAs they fly by them with their woven wings.\n\nSALANIO:\nBelieve me, sir, had I such venture forth,\nThe better part of my affections would\nBe with my hopes abroad. I should be still\nPlucking the grass, to know where sits the wind,\nPeering in maps for ports and piers and roads;\nAnd every object that might make me fear\nMisfortune to my ventures, out of doubt\nWould make me sad.\n\nSALARINO:\nMy wind cooling my broth\nWould blow me to an ague, when I thought\nWhat harm a wind too great at sea might do.\nI should not see the sandy hour-glass run,\nBut I should think of shallows and of flats,\nAnd see my wealthy Andrew dock'd in sand,\nVailing her high-top lower than her ribs\nTo kiss her burial. Should I go to church\nAnd see the holy edifice of stone,\nAnd not bethink me straight of dangerous rocks,\nWhich touching but my gentle vessel's side,\nWould scatter all her spices on the stream,\nEnrobe the roaring waters with my silks,\nAnd, in a word, but even now worth this,\nAnd now worth nothing? Shall I have the thought\nTo think on this, and shall I lack the thought\nThat such a thing bechanced would make me sad?\nBut tell not me; I know, Antonio\nIs sad to think upon his merchandise.\n\nANTONIO:\nBelieve me, no: I thank my fortune for it,\nMy ventures are not in one bottom trusted,\nNor to one place; nor is my whole estate\nUpon the fortune of this present year:\nTherefore my merchandise makes me not sad.\n\nSALARINO:\nWhy, then you are in love.\n\nANTONIO:\nFie, fie!\n\nSALARINO:\nNot in love neither? Then let us say you are sad,\nBecause you are not merry: and 'twere as easy\nFor you to laugh and leap and say you are merry,\nBecause you are not sad. Now, by two-headed Janus,\nNature hath framed strange fellows in her time:\nSome that will evermore peep through their eyes\nAnd laugh like parrots at a bag-piper,\nAnd other of such vinegar aspect\nThat they'll not show their teeth in way of smile,\nThough Nestor swear the jest be laughable.\n\nSALANIO:\nHere comes Bassanio, your most noble kinsman,\nGratiano and Lorenzo. Fare ye well:\nWe leave you now with better company.\n\nSALARINO:\nI would have stay'd till I had made you merry,\nIf worthier friends had not prevented me.\n\nANTONIO:\nYour worth is very dear in my regard.\nI take it, your own business calls on you\nAnd you embrace the occasion to depart.\n\nSALARINO:\nGood morrow, my good lords.\n\nBASSANIO:\nGood signiors both, when shall we laugh? say, when?\nYou grow exceeding strange: must it be so?\n\nSALARINO:\nWe'll make our leisures to attend on yours.\n\nLORENZO:\nMy Lord Bassanio, since you have found Antonio,\nWe two will leave you: but at dinner-time,\nI pray you, have in mind where we must meet.\n\nBASSANIO:\nI will not fail you.\n\nGRATIANO:\nYou look not well, Signior Antonio;\nYou have too much respect upon the world:\nThey lose it that do buy it with much care:\nBelieve me, you are marvellously changed.\n\nANTONIO:\nI hold the world but as the world, Gratiano;\nA stage where every man must play a part,\nAnd mine a sad one.\n\nGRATIANO:\nLet me play the fool:\nWith mirth and laughter let old wrinkles come,\nAnd let my liver rather heat with wine\nThan my heart cool with mortifying groans.\nWhy should a man, whose blood is warm within,\nSit like his grandsire cut in alabaster?\nSleep when he wakes and creep into the jaundice\nBy being peevish? I tell thee what, Antonio--\nI love thee, and it is my love that speaks--\nThere are a sort of men whose visages\nDo cream and mantle like a standing pond,\nAnd do a wilful stillness entertain,\nWith purpose to be dress'd in an opinion\nOf wisdom, gravity, profound conceit,\nAs who should say 'I am Sir Oracle,\nAnd when I ope my lips let no dog bark!'\nO my Antonio, I do know of these\nThat therefore only are reputed wise\nFor saying nothing; when, I am very sure,\nIf they should speak, would almost damn those ears,\nWhich, hearing them, would call their brothers fools.\nI'll tell thee more of this another time:\nBut fish not, with this melancholy bait,\nFor this fool gudgeon, this opinion.\nCome, good Lorenzo. Fare ye well awhile:\nI'll end my exhortation after dinner.\n\nLORENZO:\nWell, we will leave you then till dinner-time:\nI must be one of these same dumb wise men,\nFor Gratiano never lets me speak.\n\nGRATIANO:\nWell, keep me company but two years moe,\nThou shalt not know the sound of thine own tongue.\n\nANTONIO:\nFarewell: I'll grow a talker for this gear.\n\nGRATIANO:\nThanks, i' faith, for silence is only commendable\nIn a neat's tongue dried and a maid not vendible.\n\nANTONIO:\nIs that any thing now?\n\nBASSANIO:\nGratiano speaks an infinite deal of nothing, more\nthan any man in all Venice. His reasons are as two\ngrains of wheat hid in two bushels of chaff: you\nshall seek all day ere you find them, and when you\nhave them, they are not worth the search.\n\nANTONIO:\nWell, tell me now what lady is the same\nTo whom you swore a secret pilgrimage,\nThat you to-day promised to tell me of?\n\nBASSANIO:\n'Tis not unknown to you, Antonio,\nHow much I have disabled mine estate,\nBy something showing a more swelling port\nThan my faint means would grant continuance:\nNor do I now make moan to be abridged\nFrom such a noble rate; but my chief care\nIs to come fairly off from the great debts\nWherein my time something too prodigal\nHath left me gaged. To you, Antonio,\nI owe the most, in money and in love,\nAnd from your love I have a warranty\nTo unburden all my plots and purposes\nHow to get clear of all the debts I owe.\n\nANTONIO:\nI pray you, good Bassanio, let me know it;\nAnd if it stand, as you yourself still do,\nWithin the eye of honour, be assured,\nMy purse, my person, my extremest means,\nLie all unlock'd to your occasions.\n\nBASSANIO:\nIn my school-days, when I had lost one shaft,\nI shot his fellow of the self-same flight\nThe self-same way with more advised watch,\nTo find the other forth, and by adventuring both\nI oft found both: I urge this childhood proof,\nBecause what follows is pure innocence.\nI owe you much, and, like a wilful youth,\nThat which I owe is lost; but if you please\nTo shoot another arrow that self way\nWhich you did shoot the first, I do not doubt,\nAs I will watch the aim, or to find both\nOr bring your latter hazard back again\nAnd thankfully rest debtor for the first.\n\nANTONIO:\nYou know me well, and herein spend but time\nTo wind about my love with circumstance;\nAnd out of doubt you do me now more wrong\nIn making question of my uttermost\nThan if you had made waste of all I have:\nThen do but say to me what I should do\nThat in your knowledge may by me be done,\nAnd I am prest unto it: therefore, speak.\n\nBASSANIO:\nIn Belmont is a lady richly left;\nAnd she is fair, and, fairer than that word,\nOf wondrous virtues: sometimes from her eyes\nI did receive fair speechless messages:\nHer name is Portia, nothing undervalued\nTo Cato's daughter, Brutus' Portia:\nNor is the wide world ignorant of her worth,\nFor the four winds blow in from every coast\nRenowned suitors, and her sunny locks\nHang on her temples like a golden fleece;\nWhich makes her seat of Belmont Colchos' strand,\nAnd many Jasons come in quest of her.\nO my Antonio, had I but the means\nTo hold a rival place with one of them,\nI have a mind presages me such thrift,\nThat I should questionless be fortunate!\n\nANTONIO:\nThou know'st that all my fortunes are at sea;\nNeither have I money nor commodity\nTo raise a present sum: therefore go forth;\nTry what my credit can in Venice do:\nThat shall be rack'd, even to the uttermost,\nTo furnish thee to Belmont, to fair Portia.\nGo, presently inquire, and so will I,\nWhere money is, and I no question make\nTo have it of my trust or for my sake.\n\nPORTIA:\nBy my troth, Nerissa, my little body is aweary of\nthis great world.\n\nNERISSA:\nYou would be, sweet madam, if your miseries were in\nthe same abundance as your good fortunes are: and\nyet, for aught I see, they are as sick that surfeit\nwith too much as they that starve with nothing. It\nis no mean happiness therefore, to be seated in the\nmean: superfluity comes sooner by white hairs, but\ncompetency lives longer.\n\nPORTIA:\nGood sentences and well pronounced.\n\nNERISSA:\nThey would be better, if well followed.\n\nPORTIA:\nIf to do were as easy as to know what were good to\ndo, chapels had been churches and poor men's\ncottages princes' palaces. It is a good divine that\nfollows his own instructions: I can easier teach\ntwenty what were good to be done, than be one of the\ntwenty to follow mine own teaching. The brain may\ndevise laws for the blood, but a hot temper leaps\no'er a cold decree: such a hare is madness the\nyouth, to skip o'er the meshes of good counsel the\ncripple. But this reasoning is not in the fashion to\nchoose me a husband. O me, the word 'choose!' I may\nneither choose whom I would nor refuse whom I\ndislike; so is the will of a living daughter curbed\nby the will of a dead father. Is it not hard,\nNerissa, that I cannot choose one nor refuse none?\n\nNERISSA:\nYour father was ever virtuous; and holy men at their\ndeath have good inspirations: therefore the lottery,\nthat he hath devised in these three chests of gold,\nsilver and lead, whereof who chooses his meaning\nchooses you, will, no doubt, never be chosen by any\nrightly but one who shall rightly love. But what\nwarmth is there in your affection towards any of\nthese princely suitors that are already come?\n\nPORTIA:\nI pray thee, over-name them; and as thou namest\nthem, I will describe them; and, according to my\ndescription, level at my affection.\n\nNERISSA:\nFirst, there is the Neapolitan prince.\n\nPORTIA:\nAy, that's a colt indeed, for he doth nothing but\ntalk of his horse; and he makes it a great\nappropriation to his own good parts, that he can\nshoe him himself. I am much afeard my lady his\nmother played false with a smith.\n\nNERISSA:\nThen there is the County Palatine.\n\nPORTIA:\nHe doth nothing but frown, as who should say 'If you\nwill not have me, choose:' he hears merry tales and\nsmiles not: I fear he will prove the weeping\nphilosopher when he grows old, being so full of\nunmannerly sadness in his youth. I had rather be\nmarried to a death's-head with a bone in his mouth\nthan to either of these. God defend me from these\ntwo!\n\nNERISSA:\nHow say you by the French lord, Monsieur Le Bon?\n\nPORTIA:\nGod made him, and therefore let him pass for a man.\nIn truth, I know it is a sin to be a mocker: but,\nhe! why, he hath a horse better than the\nNeapolitan's, a better bad habit of frowning than\nthe Count Palatine; he is every man in no man; if a\nthrostle sing, he falls straight a capering: he will\nfence with his own shadow: if I should marry him, I\nshould marry twenty husbands. If he would despise me\nI would forgive him, for if he love me to madness, I\nshall never requite him.\n\nNERISSA:\nWhat say you, then, to Falconbridge, the young baron\nof England?\n\nPORTIA:\nYou know I say nothing to him, for he understands\nnot me, nor I him: he hath neither Latin, French,\nnor Italian, and you will come into the court and\nswear that I have a poor pennyworth in the English.\nHe is a proper man's picture, but, alas, who can\nconverse with a dumb-show? How oddly he is suited!\nI think he bought his doublet in Italy, his round\nhose in France, his bonnet in Germany and his\nbehavior every where.\n\nNERISSA:\nWhat think you of the Scottish lord, his neighbour?\n\nPORTIA:\nThat he hath a neighbourly charity in him, for he\nborrowed a box of the ear of the Englishman and\nswore he would pay him again when he was able: I\nthink the Frenchman became his surety and sealed\nunder for another.\n\nNERISSA:\nHow like you the young German, the Duke of Saxony's nephew?\n\nPORTIA:\nVery vilely in the morning, when he is sober, and\nmost vilely in the afternoon, when he is drunk: when\nhe is best, he is a little worse than a man, and\nwhen he is worst, he is little better than a beast:\nand the worst fall that ever fell, I hope I shall\nmake shift to go without him.\n\nNERISSA:\nIf he should offer to choose, and choose the right\ncasket, you should refuse to perform your father's\nwill, if you should refuse to accept him.\n\nPORTIA:\nTherefore, for fear of the worst, I pray thee, set a\ndeep glass of rhenish wine on the contrary casket,\nfor if the devil be within and that temptation\nwithout, I know he will choose it. I will do any\nthing, Nerissa, ere I'll be married to a sponge.\n\nNERISSA:\nYou need not fear, lady, the having any of these\nlords: they have acquainted me with their\ndeterminations; which is, indeed, to return to their\nhome and to trouble you with no more suit, unless\nyou may be won by some other sort than your father's\nimposition depending on the caskets.\n\nPORTIA:\nIf I live to be as old as Sibylla, I will die as\nchaste as Diana, unless I be obtained by the manner\nof my father's will. I am glad this parcel of wooers\nare so reasonable, for there is not one among them\nbut I dote on his very absence, and I pray God grant\nthem a fair departure.\n\nNERISSA:\nDo you not remember, lady, in your father's time, a\nVenetian, a scholar and a soldier, that came hither\nin company of the Marquis of Montferrat?\n\nPORTIA:\nYes, yes, it was Bassanio; as I think, he was so called.\n\nNERISSA:\nTrue, madam: he, of all the men that ever my foolish\neyes looked upon, was the best deserving a fair lady.\n\nPORTIA:\nI remember him well, and I remember him worthy of\nthy praise.\nHow now! what news?\n\nServant:\nThe four strangers seek for you, madam, to take\ntheir leave: and there is a forerunner come from a\nfifth, the Prince of Morocco, who brings word the\nprince his master will be here to-night.\n\nPORTIA:\nIf I could bid the fifth welcome with so good a\nheart as I can bid the other four farewell, I should\nbe glad of his approach: if he have the condition\nof a saint and the complexion of a devil, I had\nrather he should shrive me than wive me. Come,\nNerissa. Sirrah, go before.\nWhiles we shut the gates\nupon one wooer, another knocks at the door.\n\nSHYLOCK:\nThree thousand ducats; well.\n\nBASSANIO:\nAy, sir, for three months.\n\nSHYLOCK:\nFor three months; well.\n\nBASSANIO:\nFor the which, as I told you, Antonio shall be bound.\n\nSHYLOCK:\nAntonio shall become bound; well.\n\nBASSANIO:\nMay you stead me? will you pleasure me? shall I\nknow your answer?\n\nSHYLOCK:\nThree thousand ducats for three months and Antonio bound.\n\nBASSANIO:\nYour answer to that.\n\nSHYLOCK:\nAntonio is a good man.\n\nBASSANIO:\nHave you heard any imputation to the contrary?\n\nSHYLOCK:\nOh, no, no, no, no: my meaning in saying he is a\ngood man is to have you understand me that he is\nsufficient. Yet his means are in supposition: he\nhath an argosy bound to Tripolis, another to the\nIndies; I understand moreover, upon the Rialto, he\nhath a third at Mexico, a fourth for England, and\nother ventures he hath, squandered abroad. But ships\nare but boards, sailors but men: there be land-rats\nand water-rats, water-thieves and land-thieves, I\nmean pirates, and then there is the peril of waters,\nwinds and rocks. The man is, notwithstanding,\nsufficient. Three thousand ducats; I think I may\ntake his bond.\n\nBASSANIO:\nBe assured you may.\n\nSHYLOCK:\nI will be assured I may; and, that I may be assured,\nI will bethink me. May I speak with Antonio?\n\nBASSANIO:\nIf it please you to dine with us.\n\nSHYLOCK:\nYes, to smell pork; to eat of the habitation which\nyour prophet the Nazarite conjured the devil into. I\nwill buy with you, sell with you, talk with you,\nwalk with you, and so following, but I will not eat\nwith you, drink with you, nor pray with you. What\nnews on the Rialto? Who is he comes here?\n\nBASSANIO:\nThis is Signior Antonio.\n\nSHYLOCK:\n\nBASSANIO:\nShylock, do you hear?\n\nSHYLOCK:\nI am debating of my present store,\nAnd, by the near guess of my memory,\nI cannot instantly raise up the gross\nOf full three thousand ducats. What of that?\nTubal, a wealthy Hebrew of my tribe,\nWill furnish me. But soft! how many months\nDo you desire?\nRest you fair, good signior;\nYour worship was the last man in our mouths.\n\nANTONIO:\nShylock, although I neither lend nor borrow\nBy taking nor by giving of excess,\nYet, to supply the ripe wants of my friend,\nI'll break a custom. Is he yet possess'd\nHow much ye would?\n\nSHYLOCK:\nAy, ay, three thousand ducats.\n\nANTONIO:\nAnd for three months.\n\nSHYLOCK:\nI had forgot; three months; you told me so.\nWell then, your bond; and let me see; but hear you;\nMethought you said you neither lend nor borrow\nUpon advantage.\n\nANTONIO:\nI do never use it.\n\nSHYLOCK:\nWhen Jacob grazed his uncle Laban's sheep--\nThis Jacob from our holy Abram was,\nAs his wise mother wrought in his behalf,\nThe third possessor; ay, he was the third--\n\nANTONIO:\nAnd what of him? did he take interest?\n\nSHYLOCK:\nNo, not take interest, not, as you would say,\nDirectly interest: mark what Jacob did.\nWhen Laban and himself were compromised\nThat all the eanlings which were streak'd and pied\nShould fall as Jacob's hire, the ewes, being rank,\nIn the end of autumn turned to the rams,\nAnd, when the work of generation was\nBetween these woolly breeders in the act,\nThe skilful shepherd peel'd me certain wands,\nAnd, in the doing of the deed of kind,\nHe stuck them up before the fulsome ewes,\nWho then conceiving did in eaning time\nFall parti-colour'd lambs, and those were Jacob's.\nThis was a way to thrive, and he was blest:\nAnd thrift is blessing, if men steal it not.\n\nANTONIO:\nThis was a venture, sir, that Jacob served for;\nA thing not in his power to bring to pass,\nBut sway'd and fashion'd by the hand of heaven.\nWas this inserted to make interest good?\nOr is your gold and silver ewes and rams?\n\nSHYLOCK:\nI cannot tell; I make it breed as fast:\nBut note me, signior.\n\nANTONIO:\nMark you this, Bassanio,\nThe devil can cite Scripture for his purpose.\nAn evil soul producing holy witness\nIs like a villain with a smiling cheek,\nA goodly apple rotten at the heart:\nO, what a goodly outside falsehood hath!\n\nSHYLOCK:\nThree thousand ducats; 'tis a good round sum.\nThree months from twelve; then, let me see; the rate--\n\nANTONIO:\nWell, Shylock, shall we be beholding to you?\n\nSHYLOCK:\nSignior Antonio, many a time and oft\nIn the Rialto you have rated me\nAbout my moneys and my usances:\nStill have I borne it with a patient shrug,\nFor sufferance is the badge of all our tribe.\nYou call me misbeliever, cut-throat dog,\nAnd spit upon my Jewish gaberdine,\nAnd all for use of that which is mine own.\nWell then, it now appears you need my help:\nGo to, then; you come to me, and you say\n'Shylock, we would have moneys:' you say so;\nYou, that did void your rheum upon my beard\nAnd foot me as you spurn a stranger cur\nOver your threshold: moneys is your suit\nWhat should I say to you? Should I not say\n'Hath a dog money? is it possible\nA cur can lend three thousand ducats?' Or\nShall I bend low and in a bondman's key,\nWith bated breath and whispering humbleness, Say this;\n'Fair sir, you spit on me on Wednesday last;\nYou spurn'd me such a day; another time\nYou call'd me dog; and for these courtesies\nI'll lend you thus much moneys'?\n\nANTONIO:\nI am as like to call thee so again,\nTo spit on thee again, to spurn thee too.\nIf thou wilt lend this money, lend it not\nAs to thy friends; for when did friendship take\nA breed for barren metal of his friend?\nBut lend it rather to thine enemy,\nWho, if he break, thou mayst with better face\nExact the penalty.\n\nSHYLOCK:\nWhy, look you, how you storm!\nI would be friends with you and have your love,\nForget the shames that you have stain'd me with,\nSupply your present wants and take no doit\nOf usance for my moneys, and you'll not hear me:\nThis is kind I offer.\n\nBASSANIO:\nThis were kindness.\n\nSHYLOCK:\nThis kindness will I show.\nGo with me to a notary, seal me there\nYour single bond; and, in a merry sport,\nIf you repay me not on such a day,\nIn such a place, such sum or sums as are\nExpress'd in the condition, let the forfeit\nBe nominated for an equal pound\nOf your fair flesh, to be cut off and taken\nIn what part of your body pleaseth me.\n\nANTONIO:\nContent, i' faith: I'll seal to such a bond\nAnd say there is much kindness in the Jew.\n\nBASSANIO:\nYou shall not seal to such a bond for me:\nI'll rather dwell in my necessity.\n\nANTONIO:\nWhy, fear not, man; I will not forfeit it:\nWithin these two months, that's a month before\nThis bond expires, I do expect return\nOf thrice three times the value of this bond.\n\nSHYLOCK:\nO father Abram, what these Christians are,\nWhose own hard dealings teaches them suspect\nThe thoughts of others! Pray you, tell me this;\nIf he should break his day, what should I gain\nBy the exaction of the forfeiture?\nA pound of man's flesh taken from a man\nIs not so estimable, profitable neither,\nAs flesh of muttons, beefs, or goats. I say,\nTo buy his favour, I extend this friendship:\nIf he will take it, so; if not, adieu;\nAnd, for my love, I pray you wrong me not.\n\nANTONIO:\nYes Shylock, I will seal unto this bond.\n\nSHYLOCK:\nThen meet me forthwith at the notary's;\nGive him direction for this merry bond,\nAnd I will go and purse the ducats straight,\nSee to my house, left in the fearful guard\nOf an unthrifty knave, and presently\nI will be with you.\n\nANTONIO:\nHie thee, gentle Jew.\nThe Hebrew will turn Christian: he grows kind.\n\nBASSANIO:\nI like not fair terms and a villain's mind.\n\nANTONIO:\nCome on: in this there can be no dismay;\nMy ships come home a month before the day.\n\nMOROCCO:\nMislike me not for my complexion,\nThe shadow'd livery of the burnish'd sun,\nTo whom I am a neighbour and near bred.\nBring me the fairest creature northward born,\nWhere Phoebus' fire scarce thaws the icicles,\nAnd let us make incision for your love,\nTo prove whose blood is reddest, his or mine.\nI tell thee, lady, this aspect of mine\nHath fear'd the valiant: by my love I swear\nThe best-regarded virgins of our clime\nHave loved it too: I would not change this hue,\nExcept to steal your thoughts, my gentle queen.\n\nPORTIA:\nIn terms of choice I am not solely led\nBy nice direction of a maiden's eyes;\nBesides, the lottery of my destiny\nBars me the right of voluntary choosing:\nBut if my father had not scanted me\nAnd hedged me by his wit, to yield myself\nHis wife who wins me by that means I told you,\nYourself, renowned prince, then stood as fair\nAs any comer I have look'd on yet\nFor my affection.\n\nMOROCCO:\nEven for that I thank you:\nTherefore, I pray you, lead me to the caskets\nTo try my fortune. By this scimitar\nThat slew the Sophy and a Persian prince\nThat won three fields of Sultan Solyman,\nI would outstare the sternest eyes that look,\nOutbrave the heart most daring on the earth,\nPluck the young sucking cubs from the she-bear,\nYea, mock the lion when he roars for prey,\nTo win thee, lady. But, alas the while!\nIf Hercules and Lichas play at dice\nWhich is the better man, the greater throw\nMay turn by fortune from the weaker hand:\nSo is Alcides beaten by his page;\nAnd so may I, blind fortune leading me,\nMiss that which one unworthier may attain,\nAnd die with grieving.\n\nPORTIA:\nYou must take your chance,\nAnd either not attempt to choose at all\nOr swear before you choose, if you choose wrong\nNever to speak to lady afterward\nIn way of marriage: therefore be advised.\n\nMOROCCO:\nNor will not. Come, bring me unto my chance.\n\nPORTIA:\nFirst, forward to the temple: after dinner\nYour hazard shall be made.\n\nMOROCCO:\nGood fortune then!\nTo make me blest or cursed'st among men.\n\nLAUNCELOT:\nCertainly my conscience will serve me to run from\nthis Jew my master. The fiend is at mine elbow and\ntempts me saying to me 'Gobbo, Launcelot Gobbo, good\nLauncelot,' or 'good Gobbo,' or good Launcelot\nGobbo, use your legs, take the start, run away. My\nconscience says 'No; take heed,' honest Launcelot;\ntake heed, honest Gobbo, or, as aforesaid, 'honest\nLauncelot Gobbo; do not run; scorn running with thy\nheels.' Well, the most courageous fiend bids me\npack: 'Via!' says the fiend; 'away!' says the\nfiend; 'for the heavens, rouse up a brave mind,'\nsays the fiend, 'and run.' Well, my conscience,\nhanging about the neck of my heart, says very wisely\nto me 'My honest friend Launcelot, being an honest\nman's son,' or rather an honest woman's son; for,\nindeed, my father did something smack, something\ngrow to, he had a kind of taste; well, my conscience\nsays 'Launcelot, budge not.' 'Budge,' says the\nfiend. 'Budge not,' says my conscience.\n'Conscience,' say I, 'you counsel well;' ' Fiend,'\nsay I, 'you counsel well:' to be ruled by my\nconscience, I should stay with the Jew my master,\nwho, God bless the mark, is a kind of devil; and, to\nrun away from the Jew, I should be ruled by the\nfiend, who, saving your reverence, is the devil\nhimself. Certainly the Jew is the very devil\nincarnal; and, in my conscience, my conscience is\nbut a kind of hard conscience, to offer to counsel\nme to stay with the Jew. The fiend gives the more\nfriendly counsel: I will run, fiend; my heels are\nat your command; I will run.\n\nGOBBO:\nMaster young man, you, I pray you, which is the way\nto master Jew's?\n\nLAUNCELOT:\n\nGOBBO:\nMaster young gentleman, I pray you, which is the way\nto master Jew's?\n\nLAUNCELOT:\nTurn up on your right hand at the next turning, but,\nat the next turning of all, on your left; marry, at\nthe very next turning, turn of no hand, but turn\ndown indirectly to the Jew's house.\n\nGOBBO:\nBy God's sonties, 'twill be a hard way to hit. Can\nyou tell me whether one Launcelot,\nthat dwells with him, dwell with him or no?\n\nLAUNCELOT:\nTalk you of young Master Launcelot?\nMark me now; now will I raise the waters. Talk you\nof young Master Launcelot?\n\nGOBBO:\nNo master, sir, but a poor man's son: his father,\nthough I say it, is an honest exceeding poor man\nand, God be thanked, well to live.\n\nLAUNCELOT:\nWell, let his father be what a' will, we talk of\nyoung Master Launcelot.\n\nGOBBO:\nYour worship's friend and Launcelot, sir.\n\nLAUNCELOT:\nBut I pray you, ergo, old man, ergo, I beseech you,\ntalk you of young Master Launcelot?\n\nGOBBO:\nOf Launcelot, an't please your mastership.\n\nLAUNCELOT:\nErgo, Master Launcelot. Talk not of Master\nLauncelot, father; for the young gentleman,\naccording to Fates and Destinies and such odd\nsayings, the Sisters Three and such branches of\nlearning, is indeed deceased, or, as you would say\nin plain terms, gone to heaven.\n\nGOBBO:\nMarry, God forbid! the boy was the very staff of my\nage, my very prop.\n\nLAUNCELOT:\nDo I look like a cudgel or a hovel-post, a staff or\na prop? Do you know me, father?\n\nGOBBO:\nAlack the day, I know you not, young gentleman:\nbut, I pray you, tell me, is my boy, God rest his\nsoul, alive or dead?\n\nLAUNCELOT:\nDo you not know me, father?\n\nGOBBO:\nAlack, sir, I am sand-blind; I know you not.\n\nLAUNCELOT:\nNay, indeed, if you had your eyes, you might fail of\nthe knowing me: it is a wise father that knows his\nown child. Well, old man, I will tell you news of\nyour son: give me your blessing: truth will come\nto light; murder cannot be hid long; a man's son\nmay, but at the length truth will out.\n\nGOBBO:\nPray you, sir, stand up: I am sure you are not\nLauncelot, my boy.\n\nLAUNCELOT:\nPray you, let's have no more fooling about it, but\ngive me your blessing: I am Launcelot, your boy\nthat was, your son that is, your child that shall\nbe.\n\nGOBBO:\nI cannot think you are my son.\n\nLAUNCELOT:\nI know not what I shall think of that: but I am\nLauncelot, the Jew's man, and I am sure Margery your\nwife is my mother.\n\nGOBBO:\nHer name is Margery, indeed: I'll be sworn, if thou\nbe Launcelot, thou art mine own flesh and blood.\nLord worshipped might he be! what a beard hast thou\ngot! thou hast got more hair on thy chin than\nDobbin my fill-horse has on his tail.\n\nLAUNCELOT:\nIt should seem, then, that Dobbin's tail grows\nbackward: I am sure he had more hair of his tail\nthan I have of my face when I last saw him.\n\nGOBBO:\nLord, how art thou changed! How dost thou and thy\nmaster agree? I have brought him a present. How\n'gree you now?\n\nLAUNCELOT:\nWell, well: but, for mine own part, as I have set\nup my rest to run away, so I will not rest till I\nhave run some ground. My master's a very Jew: give\nhim a present! give him a halter: I am famished in\nhis service; you may tell every finger I have with\nmy ribs. Father, I am glad you are come: give me\nyour present to one Master Bassanio, who, indeed,\ngives rare new liveries: if I serve not him, I\nwill run as far as God has any ground. O rare\nfortune! here comes the man: to him, father; for I\nam a Jew, if I serve the Jew any longer.\n\nBASSANIO:\nYou may do so; but let it be so hasted that supper\nbe ready at the farthest by five of the clock. See\nthese letters delivered; put the liveries to making,\nand desire Gratiano to come anon to my lodging.\n\nLAUNCELOT:\nTo him, father.\n\nGOBBO:\nGod bless your worship!\n\nBASSANIO:\nGramercy! wouldst thou aught with me?\n\nGOBBO:\nHere's my son, sir, a poor boy,--\n\nLAUNCELOT:\nNot a poor boy, sir, but the rich Jew's man; that\nwould, sir, as my father shall specify--\n\nGOBBO:\nHe hath a great infection, sir, as one would say, to serve--\n\nLAUNCELOT:\nIndeed, the short and the long is, I serve the Jew,\nand have a desire, as my father shall specify--\n\nGOBBO:\nHis master and he, saving your worship's reverence,\nare scarce cater-cousins--\n\nLAUNCELOT:\nTo be brief, the very truth is that the Jew, having\ndone me wrong, doth cause me, as my father, being, I\nhope, an old man, shall frutify unto you--\n\nGOBBO:\nI have here a dish of doves that I would bestow upon\nyour worship, and my suit is--\n\nLAUNCELOT:\nIn very brief, the suit is impertinent to myself, as\nyour worship shall know by this honest old man; and,\nthough I say it, though old man, yet poor man, my father.\n\nBASSANIO:\nOne speak for both. What would you?\n\nLAUNCELOT:\nServe you, sir.\n\nGOBBO:\nThat is the very defect of the matter, sir.\n\nBASSANIO:\nI know thee well; thou hast obtain'd thy suit:\nShylock thy master spoke with me this day,\nAnd hath preferr'd thee, if it be preferment\nTo leave a rich Jew's service, to become\nThe follower of so poor a gentleman.\n\nLAUNCELOT:\nThe old proverb is very well parted between my\nmaster Shylock and you, sir: you have the grace of\nGod, sir, and he hath enough.\n\nBASSANIO:\nThou speak'st it well. Go, father, with thy son.\nTake leave of thy old master and inquire\nMy lodging out. Give him a livery\nMore guarded than his fellows': see it done.\n\nLAUNCELOT:\nFather, in. I cannot get a service, no; I have\nne'er a tongue in my head. Well, if any man in\nItaly have a fairer table which doth offer to swear\nupon a book, I shall have good fortune. Go to,\nhere's a simple line of life: here's a small trifle\nof wives: alas, fifteen wives is nothing! eleven\nwidows and nine maids is a simple coming-in for one\nman: and then to 'scape drowning thrice, and to be\nin peril of my life with the edge of a feather-bed;\nhere are simple scapes. Well, if Fortune be a\nwoman, she's a good wench for this gear. Father,\ncome; I'll take my leave of the Jew in the twinkling of an eye.\n\nBASSANIO:\nI pray thee, good Leonardo, think on this:\nThese things being bought and orderly bestow'd,\nReturn in haste, for I do feast to-night\nMy best-esteem'd acquaintance: hie thee, go.\n\nLEONARDO:\nMy best endeavours shall be done herein.\n\nGRATIANO:\nWhere is your master?\n\nLEONARDO:\nYonder, sir, he walks.\n\nGRATIANO:\nSignior Bassanio!\n\nBASSANIO:\nGratiano!\n\nGRATIANO:\nI have a suit to you.\n\nBASSANIO:\nYou have obtain'd it.\n\nGRATIANO:\nYou must not deny me: I must go with you to Belmont.\n\nBASSANIO:\nWhy then you must. But hear thee, Gratiano;\nThou art too wild, too rude and bold of voice;\nParts that become thee happily enough\nAnd in such eyes as ours appear not faults;\nBut where thou art not known, why, there they show\nSomething too liberal. Pray thee, take pain\nTo allay with some cold drops of modesty\nThy skipping spirit, lest through thy wild behavior\nI be misconstrued in the place I go to,\nAnd lose my hopes.\n\nGRATIANO:\nSignior Bassanio, hear me:\nIf I do not put on a sober habit,\nTalk with respect and swear but now and then,\nWear prayer-books in my pocket, look demurely,\nNay more, while grace is saying, hood mine eyes\nThus with my hat, and sigh and say 'amen,'\nUse all the observance of civility,\nLike one well studied in a sad ostent\nTo please his grandam, never trust me more.\n\nBASSANIO:\nWell, we shall see your bearing.\n\nGRATIANO:\nNay, but I bar to-night: you shall not gauge me\nBy what we do to-night.\n\nBASSANIO:\nNo, that were pity:\nI would entreat you rather to put on\nYour boldest suit of mirth, for we have friends\nThat purpose merriment. But fare you well:\nI have some business.\n\nGRATIANO:\nAnd I must to Lorenzo and the rest:\nBut we will visit you at supper-time.\n\nJESSICA:\nI am sorry thou wilt leave my father so:\nOur house is hell, and thou, a merry devil,\nDidst rob it of some taste of tediousness.\nBut fare thee well, there is a ducat for thee:\nAnd, Launcelot, soon at supper shalt thou see\nLorenzo, who is thy new master's guest:\nGive him this letter; do it secretly;\nAnd so farewell: I would not have my father\nSee me in talk with thee.\n\nLAUNCELOT:\nAdieu! tears exhibit my tongue. Most beautiful\npagan, most sweet Jew! if a Christian did not play\nthe knave and get thee, I am much deceived. But,\nadieu: these foolish drops do something drown my\nmanly spirit: adieu.\n\nJESSICA:\nFarewell, good Launcelot.\nAlack, what heinous sin is it in me\nTo be ashamed to be my father's child!\nBut though I am a daughter to his blood,\nI am not to his manners. O Lorenzo,\nIf thou keep promise, I shall end this strife,\nBecome a Christian and thy loving wife.\n\nLORENZO:\nNay, we will slink away in supper-time,\nDisguise us at my lodging and return,\nAll in an hour.\n\nGRATIANO:\nWe have not made good preparation.\n\nSALARINO:\nWe have not spoke us yet of torchbearers.\n\nSALANIO:\n'Tis vile, unless it may be quaintly order'd,\nAnd better in my mind not undertook.\n\nLORENZO:\n'Tis now but four o'clock: we have two hours\nTo furnish us.\nFriend Launcelot, what's the news?\n\nLAUNCELOT:\nAn it shall please you to break up\nthis, it shall seem to signify.\n\nLORENZO:\nI know the hand: in faith, 'tis a fair hand;\nAnd whiter than the paper it writ on\nIs the fair hand that writ.\n\nGRATIANO:\nLove-news, in faith.\n\nLAUNCELOT:\nBy your leave, sir.\n\nLORENZO:\nWhither goest thou?\n\nLAUNCELOT:\nMarry, sir, to bid my old master the\nJew to sup to-night with my new master the Christian.\n\nLORENZO:\nHold here, take this: tell gentle Jessica\nI will not fail her; speak it privately.\nGo, gentlemen,\nWill you prepare you for this masque tonight?\nI am provided of a torch-bearer.\n\nSALANIO:\nAy, marry, I'll be gone about it straight.\n\nSALANIO:\nAnd so will I.\n\nLORENZO:\nMeet me and Gratiano\nAt Gratiano's lodging some hour hence.\n\nSALARINO:\n'Tis good we do so.\n\nGRATIANO:\nWas not that letter from fair Jessica?\n\nLORENZO:\nI must needs tell thee all. She hath directed\nHow I shall take her from her father's house,\nWhat gold and jewels she is furnish'd with,\nWhat page's suit she hath in readiness.\nIf e'er the Jew her father come to heaven,\nIt will be for his gentle daughter's sake:\nAnd never dare misfortune cross her foot,\nUnless she do it under this excuse,\nThat she is issue to a faithless Jew.\nCome, go with me; peruse this as thou goest:\nFair Jessica shall be my torch-bearer.\n\nSHYLOCK:\nWell, thou shalt see, thy eyes shall be thy judge,\nThe difference of old Shylock and Bassanio:--\nWhat, Jessica!--thou shalt not gormandise,\nAs thou hast done with me:--What, Jessica!--\nAnd sleep and snore, and rend apparel out;--\nWhy, Jessica, I say!\n\nLAUNCELOT:\nWhy, Jessica!\n\nSHYLOCK:\nWho bids thee call? I do not bid thee call.\n\nLAUNCELOT:\nYour worship was wont to tell me that\nI could do nothing without bidding.\n\nJESSICA:\nCall you? what is your will?\n\nSHYLOCK:\nI am bid forth to supper, Jessica:\nThere are my keys. But wherefore should I go?\nI am not bid for love; they flatter me:\nBut yet I'll go in hate, to feed upon\nThe prodigal Christian. Jessica, my girl,\nLook to my house. I am right loath to go:\nThere is some ill a-brewing towards my rest,\nFor I did dream of money-bags to-night.\n\nLAUNCELOT:\nI beseech you, sir, go: my young master doth expect\nyour reproach.\n\nSHYLOCK:\nSo do I his.\n\nLAUNCELOT:\nAn they have conspired together, I will not say you\nshall see a masque; but if you do, then it was not\nfor nothing that my nose fell a-bleeding on\nBlack-Monday last at six o'clock i' the morning,\nfalling out that year on Ash-Wednesday was four\nyear, in the afternoon.\n\nSHYLOCK:\nWhat, are there masques? Hear you me, Jessica:\nLock up my doors; and when you hear the drum\nAnd the vile squealing of the wry-neck'd fife,\nClamber not you up to the casements then,\nNor thrust your head into the public street\nTo gaze on Christian fools with varnish'd faces,\nBut stop my house's ears, I mean my casements:\nLet not the sound of shallow foppery enter\nMy sober house. By Jacob's staff, I swear,\nI have no mind of feasting forth to-night:\nBut I will go. Go you before me, sirrah;\nSay I will come.\n\nLAUNCELOT:\nI will go before, sir. Mistress, look out at\nwindow, for all this, There will come a Christian\nboy, will be worth a Jewess' eye.\n\nSHYLOCK:\nWhat says that fool of Hagar's offspring, ha?\n\nJESSICA:\nHis words were 'Farewell mistress;' nothing else.\n\nSHYLOCK:\nThe patch is kind enough, but a huge feeder;\nSnail-slow in profit, and he sleeps by day\nMore than the wild-cat: drones hive not with me;\nTherefore I part with him, and part with him\nTo one that would have him help to waste\nHis borrow'd purse. Well, Jessica, go in;\nPerhaps I will return immediately:\nDo as I bid you; shut doors after you:\nFast bind, fast find;\nA proverb never stale in thrifty mind.\n\nJESSICA:\nFarewell; and if my fortune be not crost,\nI have a father, you a daughter, lost.\n\nGRATIANO:\nThis is the pent-house under which Lorenzo\nDesired us to make stand.\n\nSALARINO:\nHis hour is almost past.\n\nGRATIANO:\nAnd it is marvel he out-dwells his hour,\nFor lovers ever run before the clock.\n\nSALARINO:\nO, ten times faster Venus' pigeons fly\nTo seal love's bonds new-made, than they are wont\nTo keep obliged faith unforfeited!\n\nGRATIANO:\nThat ever holds: who riseth from a feast\nWith that keen appetite that he sits down?\nWhere is the horse that doth untread again\nHis tedious measures with the unbated fire\nThat he did pace them first? All things that are,\nAre with more spirit chased than enjoy'd.\nHow like a younker or a prodigal\nThe scarfed bark puts from her native bay,\nHugg'd and embraced by the strumpet wind!\nHow like the prodigal doth she return,\nWith over-weather'd ribs and ragged sails,\nLean, rent and beggar'd by the strumpet wind!\n\nSALARINO:\nHere comes Lorenzo: more of this hereafter.\n\nLORENZO:\nSweet friends, your patience for my long abode;\nNot I, but my affairs, have made you wait:\nWhen you shall please to play the thieves for wives,\nI'll watch as long for you then. Approach;\nHere dwells my father Jew. Ho! who's within?\n\nJESSICA:\nWho are you? Tell me, for more certainty,\nAlbeit I'll swear that I do know your tongue.\n\nLORENZO:\nLorenzo, and thy love.\n\nJESSICA:\nLorenzo, certain, and my love indeed,\nFor who love I so much? And now who knows\nBut you, Lorenzo, whether I am yours?\n\nLORENZO:\nHeaven and thy thoughts are witness that thou art.\n\nJESSICA:\nHere, catch this casket; it is worth the pains.\nI am glad 'tis night, you do not look on me,\nFor I am much ashamed of my exchange:\nBut love is blind and lovers cannot see\nThe pretty follies that themselves commit;\nFor if they could, Cupid himself would blush\nTo see me thus transformed to a boy.\n\nLORENZO:\nDescend, for you must be my torchbearer.\n\nJESSICA:\nWhat, must I hold a candle to my shames?\nThey in themselves, good-sooth, are too too light.\nWhy, 'tis an office of discovery, love;\nAnd I should be obscured.\n\nLORENZO:\nSo are you, sweet,\nEven in the lovely garnish of a boy.\nBut come at once;\nFor the close night doth play the runaway,\nAnd we are stay'd for at Bassanio's feast.\n\nJESSICA:\nI will make fast the doors, and gild myself\nWith some more ducats, and be with you straight.\n\nGRATIANO:\nNow, by my hood, a Gentile and no Jew.\n\nLORENZO:\nBeshrew me but I love her heartily;\nFor she is wise, if I can judge of her,\nAnd fair she is, if that mine eyes be true,\nAnd true she is, as she hath proved herself,\nAnd therefore, like herself, wise, fair and true,\nShall she be placed in my constant soul.\nWhat, art thou come? On, gentlemen; away!\nOur masquing mates by this time for us stay.\n\nANTONIO:\nWho's there?\n\nGRATIANO:\nSignior Antonio!\n\nANTONIO:\nFie, fie, Gratiano! where are all the rest?\n'Tis nine o'clock: our friends all stay for you.\nNo masque to-night: the wind is come about;\nBassanio presently will go aboard:\nI have sent twenty out to seek for you.\n\nGRATIANO:\nI am glad on't: I desire no more delight\nThan to be under sail and gone to-night.\n\nPORTIA:\nGo draw aside the curtains and discover\nThe several caskets to this noble prince.\nNow make your choice.\n\nMOROCCO:\nThe first, of gold, who this inscription bears,\n'Who chooseth me shall gain what many men desire;'\nThe second, silver, which this promise carries,\n'Who chooseth me shall get as much as he deserves;'\nThis third, dull lead, with warning all as blunt,\n'Who chooseth me must give and hazard all he hath.'\nHow shall I know if I do choose the right?\n\nPORTIA:\nThe one of them contains my picture, prince:\nIf you choose that, then I am yours withal.\n\nMOROCCO:\nSome god direct my judgment! Let me see;\nI will survey the inscriptions back again.\nWhat says this leaden casket?\n'Who chooseth me must give and hazard all he hath.'\nMust give: for what? for lead? hazard for lead?\nThis casket threatens. Men that hazard all\nDo it in hope of fair advantages:\nA golden mind stoops not to shows of dross;\nI'll then nor give nor hazard aught for lead.\nWhat says the silver with her virgin hue?\n'Who chooseth me shall get as much as he deserves.'\nAs much as he deserves! Pause there, Morocco,\nAnd weigh thy value with an even hand:\nIf thou be'st rated by thy estimation,\nThou dost deserve enough; and yet enough\nMay not extend so far as to the lady:\nAnd yet to be afeard of my deserving\nWere but a weak disabling of myself.\nAs much as I deserve! Why, that's the lady:\nI do in birth deserve her, and in fortunes,\nIn graces and in qualities of breeding;\nBut more than these, in love I do deserve.\nWhat if I stray'd no further, but chose here?\nLet's see once more this saying graved in gold\n'Who chooseth me shall gain what many men desire.'\nWhy, that's the lady; all the world desires her;\nFrom the four corners of the earth they come,\nTo kiss this shrine, this mortal-breathing saint:\nThe Hyrcanian deserts and the vasty wilds\nOf wide Arabia are as thoroughfares now\nFor princes to come view fair Portia:\nThe watery kingdom, whose ambitious head\nSpits in the face of heaven, is no bar\nTo stop the foreign spirits, but they come,\nAs o'er a brook, to see fair Portia.\nOne of these three contains her heavenly picture.\nIs't like that lead contains her? 'Twere damnation\nTo think so base a thought: it were too gross\nTo rib her cerecloth in the obscure grave.\nOr shall I think in silver she's immured,\nBeing ten times undervalued to tried gold?\nO sinful thought! Never so rich a gem\nWas set in worse than gold. They have in England\nA coin that bears the figure of an angel\nStamped in gold, but that's insculp'd upon;\nBut here an angel in a golden bed\nLies all within. Deliver me the key:\nHere do I choose, and thrive I as I may!\n\nPORTIA:\nThere, take it, prince; and if my form lie there,\nThen I am yours.\n\nMOROCCO:\nO hell! what have we here?\nA carrion Death, within whose empty eye\nThere is a written scroll! I'll read the writing.\nAll that glitters is not gold;\nOften have you heard that told:\nMany a man his life hath sold\nBut my outside to behold:\nGilded tombs do worms enfold.\nHad you been as wise as bold,\nYoung in limbs, in judgment old,\nYour answer had not been inscroll'd:\nFare you well; your suit is cold.\nCold, indeed; and labour lost:\nThen, farewell, heat, and welcome, frost!\nPortia, adieu. I have too grieved a heart\nTo take a tedious leave: thus losers part.\n\nPORTIA:\nA gentle riddance. Draw the curtains, go.\nLet all of his complexion choose me so.\n\nSALARINO:\nWhy, man, I saw Bassanio under sail:\nWith him is Gratiano gone along;\nAnd in their ship I am sure Lorenzo is not.\n\nSALANIO:\nThe villain Jew with outcries raised the duke,\nWho went with him to search Bassanio's ship.\n\nSALARINO:\nHe came too late, the ship was under sail:\nBut there the duke was given to understand\nThat in a gondola were seen together\nLorenzo and his amorous Jessica:\nBesides, Antonio certified the duke\nThey were not with Bassanio in his ship.\n\nSALANIO:\nI never heard a passion so confused,\nSo strange, outrageous, and so variable,\nAs the dog Jew did utter in the streets:\n'My daughter! O my ducats! O my daughter!\nFled with a Christian! O my Christian ducats!\nJustice! the law! my ducats, and my daughter!\nA sealed bag, two sealed bags of ducats,\nOf double ducats, stolen from me by my daughter!\nAnd jewels, two stones, two rich and precious stones,\nStolen by my daughter! Justice! find the girl;\nShe hath the stones upon her, and the ducats.'\n\nSALARINO:\nWhy, all the boys in Venice follow him,\nCrying, his stones, his daughter, and his ducats.\n\nSALANIO:\nLet good Antonio look he keep his day,\nOr he shall pay for this.\n\nSALARINO:\nMarry, well remember'd.\nI reason'd with a Frenchman yesterday,\nWho told me, in the narrow seas that part\nThe French and English, there miscarried\nA vessel of our country richly fraught:\nI thought upon Antonio when he told me;\nAnd wish'd in silence that it were not his.\n\nSALANIO:\nYou were best to tell Antonio what you hear;\nYet do not suddenly, for it may grieve him.\n\nSALARINO:\nA kinder gentleman treads not the earth.\nI saw Bassanio and Antonio part:\nBassanio told him he would make some speed\nOf his return: he answer'd, 'Do not so;\nSlubber not business for my sake, Bassanio\nBut stay the very riping of the time;\nAnd for the Jew's bond which he hath of me,\nLet it not enter in your mind of love:\nBe merry, and employ your chiefest thoughts\nTo courtship and such fair ostents of love\nAs shall conveniently become you there:'\nAnd even there, his eye being big with tears,\nTurning his face, he put his hand behind him,\nAnd with affection wondrous sensible\nHe wrung Bassanio's hand; and so they parted.\n\nSALANIO:\nI think he only loves the world for him.\nI pray thee, let us go and find him out\nAnd quicken his embraced heaviness\nWith some delight or other.\n\nSALARINO:\nDo we so.\n\nNERISSA:\nQuick, quick, I pray thee; draw the curtain straight:\nThe Prince of Arragon hath ta'en his oath,\nAnd comes to his election presently.\n\nPORTIA:\nBehold, there stand the caskets, noble prince:\nIf you choose that wherein I am contain'd,\nStraight shall our nuptial rites be solemnized:\nBut if you fail, without more speech, my lord,\nYou must be gone from hence immediately.\n\nARRAGON:\nI am enjoin'd by oath to observe three things:\nFirst, never to unfold to any one\nWhich casket 'twas I chose; next, if I fail\nOf the right casket, never in my life\nTo woo a maid in way of marriage: Lastly,\nIf I do fail in fortune of my choice,\nImmediately to leave you and be gone.\n\nPORTIA:\nTo these injunctions every one doth swear\nThat comes to hazard for my worthless self.\n\nARRAGON:\nAnd so have I address'd me. Fortune now\nTo my heart's hope! Gold; silver; and base lead.\n'Who chooseth me must give and hazard all he hath.'\nYou shall look fairer, ere I give or hazard.\nWhat says the golden chest? ha! let me see:\n'Who chooseth me shall gain what many men desire.'\nWhat many men desire! that 'many' may be meant\nBy the fool multitude, that choose by show,\nNot learning more than the fond eye doth teach;\nWhich pries not to the interior, but, like the martlet,\nBuilds in the weather on the outward wall,\nEven in the force and road of casualty.\nI will not choose what many men desire,\nBecause I will not jump with common spirits\nAnd rank me with the barbarous multitudes.\nWhy, then to thee, thou silver treasure-house;\nTell me once more what title thou dost bear:\n'Who chooseth me shall get as much as he deserves:'\nAnd well said too; for who shall go about\nTo cozen fortune and be honourable\nWithout the stamp of merit? Let none presume\nTo wear an undeserved dignity.\nO, that estates, degrees and offices\nWere not derived corruptly, and that clear honour\nWere purchased by the merit of the wearer!\nHow many then should cover that stand bare!\nHow many be commanded that command!\nHow much low peasantry would then be glean'd\nFrom the true seed of honour! and how much honour\nPick'd from the chaff and ruin of the times\nTo be new-varnish'd! Well, but to my choice:\n'Who chooseth me shall get as much as he deserves.'\nI will assume desert. Give me a key for this,\nAnd instantly unlock my fortunes here.\n\nPORTIA:\nToo long a pause for that which you find there.\n\nARRAGON:\nWhat's here? the portrait of a blinking idiot,\nPresenting me a schedule! I will read it.\nHow much unlike art thou to Portia!\nHow much unlike my hopes and my deservings!\n'Who chooseth me shall have as much as he deserves.'\nDid I deserve no more than a fool's head?\nIs that my prize? are my deserts no better?\n\nPORTIA:\nTo offend, and judge, are distinct offices\nAnd of opposed natures.\n\nARRAGON:\nWhat is here?\nThe fire seven times tried this:\nSeven times tried that judgment is,\nThat did never choose amiss.\nSome there be that shadows kiss;\nSuch have but a shadow's bliss:\nThere be fools alive, I wis,\nSilver'd o'er; and so was this.\nTake what wife you will to bed,\nI will ever be your head:\nSo be gone: you are sped.\nStill more fool I shall appear\nBy the time I linger here\nWith one fool's head I came to woo,\nBut I go away with two.\nSweet, adieu. I'll keep my oath,\nPatiently to bear my wroth.\n\nPORTIA:\nThus hath the candle singed the moth.\nO, these deliberate fools! when they do choose,\nThey have the wisdom by their wit to lose.\n\nNERISSA:\nThe ancient saying is no heresy,\nHanging and wiving goes by destiny.\n\nPORTIA:\nCome, draw the curtain, Nerissa.\n\nServant:\nWhere is my lady?\n\nPORTIA:\nHere: what would my lord?\n\nServant:\nMadam, there is alighted at your gate\nA young Venetian, one that comes before\nTo signify the approaching of his lord;\nFrom whom he bringeth sensible regreets,\nTo wit, besides commends and courteous breath,\nGifts of rich value. Yet I have not seen\nSo likely an ambassador of love:\nA day in April never came so sweet,\nTo show how costly summer was at hand,\nAs this fore-spurrer comes before his lord.\n\nPORTIA:\nNo more, I pray thee: I am half afeard\nThou wilt say anon he is some kin to thee,\nThou spend'st such high-day wit in praising him.\nCome, come, Nerissa; for I long to see\nQuick Cupid's post that comes so mannerly.\n\nNERISSA:\nBassanio, lord Love, if thy will it be!\n\nSALANIO:\nNow, what news on the Rialto?\n\nSALARINO:\nWhy, yet it lives there uncheck'd that Antonio hath\na ship of rich lading wrecked on the narrow seas;\nthe Goodwins, I think they call the place; a very\ndangerous flat and fatal, where the carcasses of many\na tall ship lie buried, as they say, if my gossip\nReport be an honest woman of her word.\n\nSALANIO:\nI would she were as lying a gossip in that as ever\nknapped ginger or made her neighbours believe she\nwept for the death of a third husband. But it is\ntrue, without any slips of prolixity or crossing the\nplain highway of talk, that the good Antonio, the\nhonest Antonio,--O that I had a title good enough\nto keep his name company!--\n\nSALARINO:\nCome, the full stop.\n\nSALANIO:\nHa! what sayest thou? Why, the end is, he hath\nlost a ship.\n\nSALARINO:\nI would it might prove the end of his losses.\n\nSALANIO:\nLet me say 'amen' betimes, lest the devil cross my\nprayer, for here he comes in the likeness of a Jew.\nHow now, Shylock! what news among the merchants?\n\nSHYLOCK:\nYou know, none so well, none so well as you, of my\ndaughter's flight.\n\nSALARINO:\nThat's certain: I, for my part, knew the tailor\nthat made the wings she flew withal.\n\nSALANIO:\nAnd Shylock, for his own part, knew the bird was\nfledged; and then it is the complexion of them all\nto leave the dam.\n\nSHYLOCK:\nShe is damned for it.\n\nSALANIO:\nThat's certain, if the devil may be her judge.\n\nSHYLOCK:\nMy own flesh and blood to rebel!\n\nSALANIO:\nOut upon it, old carrion! rebels it at these years?\n\nSHYLOCK:\nI say, my daughter is my flesh and blood.\n\nSALARINO:\nThere is more difference between thy flesh and hers\nthan between jet and ivory; more between your bloods\nthan there is between red wine and rhenish. But\ntell us, do you hear whether Antonio have had any\nloss at sea or no?\n\nSHYLOCK:\nThere I have another bad match: a bankrupt, a\nprodigal, who dare scarce show his head on the\nRialto; a beggar, that was used to come so smug upon\nthe mart; let him look to his bond: he was wont to\ncall me usurer; let him look to his bond: he was\nwont to lend money for a Christian courtesy; let him\nlook to his bond.\n\nSALARINO:\nWhy, I am sure, if he forfeit, thou wilt not take\nhis flesh: what's that good for?\n\nSHYLOCK:\nTo bait fish withal: if it will feed nothing else,\nit will feed my revenge. He hath disgraced me, and\nhindered me half a million; laughed at my losses,\nmocked at my gains, scorned my nation, thwarted my\nbargains, cooled my friends, heated mine\nenemies; and what's his reason? I am a Jew. Hath\nnot a Jew eyes? hath not a Jew hands, organs,\ndimensions, senses, affections, passions? fed with\nthe same food, hurt with the same weapons, subject\nto the same diseases, healed by the same means,\nwarmed and cooled by the same winter and summer, as\na Christian is? If you prick us, do we not bleed?\nif you tickle us, do we not laugh? if you poison\nus, do we not die? and if you wrong us, shall we not\nrevenge? If we are like you in the rest, we will\nresemble you in that. If a Jew wrong a Christian,\nwhat is his humility? Revenge. If a Christian\nwrong a Jew, what should his sufferance be by\nChristian example? Why, revenge. The villany you\nteach me, I will execute, and it shall go hard but I\nwill better the instruction.\n\nServant:\nGentlemen, my master Antonio is at his house and\ndesires to speak with you both.\n\nSALARINO:\nWe have been up and down to seek him.\n\nSALANIO:\nHere comes another of the tribe: a third cannot be\nmatched, unless the devil himself turn Jew.\n\nSHYLOCK:\nHow now, Tubal! what news from Genoa? hast thou\nfound my daughter?\n\nTUBAL:\nI often came where I did hear of her, but cannot find her.\n\nSHYLOCK:\nWhy, there, there, there, there! a diamond gone,\ncost me two thousand ducats in Frankfort! The curse\nnever fell upon our nation till now; I never felt it\ntill now: two thousand ducats in that; and other\nprecious, precious jewels. I would my daughter\nwere dead at my foot, and the jewels in her ear!\nwould she were hearsed at my foot, and the ducats in\nher coffin! No news of them? Why, so: and I know\nnot what's spent in the search: why, thou loss upon\nloss! the thief gone with so much, and so much to\nfind the thief; and no satisfaction, no revenge:\nnor no in luck stirring but what lights on my\nshoulders; no sighs but of my breathing; no tears\nbut of my shedding.\n\nTUBAL:\nYes, other men have ill luck too: Antonio, as I\nheard in Genoa,--\n\nSHYLOCK:\nWhat, what, what? ill luck, ill luck?\n\nTUBAL:\nHath an argosy cast away, coming from Tripolis.\n\nSHYLOCK:\nI thank God, I thank God. Is't true, is't true?\n\nTUBAL:\nI spoke with some of the sailors that escaped the wreck.\n\nSHYLOCK:\nI thank thee, good Tubal: good news, good news!\nha, ha! where? in Genoa?\n\nTUBAL:\nYour daughter spent in Genoa, as I heard, in one\nnight fourscore ducats.\n\nSHYLOCK:\nThou stickest a dagger in me: I shall never see my\ngold again: fourscore ducats at a sitting!\nfourscore ducats!\n\nTUBAL:\nThere came divers of Antonio's creditors in my\ncompany to Venice, that swear he cannot choose but break.\n\nSHYLOCK:\nI am very glad of it: I'll plague him; I'll torture\nhim: I am glad of it.\n\nTUBAL:\nOne of them showed me a ring that he had of your\ndaughter for a monkey.\n\nSHYLOCK:\nOut upon her! Thou torturest me, Tubal: it was my\nturquoise; I had it of Leah when I was a bachelor:\nI would not have given it for a wilderness of monkeys.\n\nTUBAL:\nBut Antonio is certainly undone.\n\nSHYLOCK:\nNay, that's true, that's very true. Go, Tubal, fee\nme an officer; bespeak him a fortnight before. I\nwill have the heart of him, if he forfeit; for, were\nhe out of Venice, I can make what merchandise I\nwill. Go, go, Tubal, and meet me at our synagogue;\ngo, good Tubal; at our synagogue, Tubal.\n\nPORTIA:\nI pray you, tarry: pause a day or two\nBefore you hazard; for, in choosing wrong,\nI lose your company: therefore forbear awhile.\nThere's something tells me, but it is not love,\nI would not lose you; and you know yourself,\nHate counsels not in such a quality.\nBut lest you should not understand me well,--\nAnd yet a maiden hath no tongue but thought,--\nI would detain you here some month or two\nBefore you venture for me. I could teach you\nHow to choose right, but I am then forsworn;\nSo will I never be: so may you miss me;\nBut if you do, you'll make me wish a sin,\nThat I had been forsworn. Beshrew your eyes,\nThey have o'erlook'd me and divided me;\nOne half of me is yours, the other half yours,\nMine own, I would say; but if mine, then yours,\nAnd so all yours. O, these naughty times\nPut bars between the owners and their rights!\nAnd so, though yours, not yours. Prove it so,\nLet fortune go to hell for it, not I.\nI speak too long; but 'tis to peize the time,\nTo eke it and to draw it out in length,\nTo stay you from election.\n\nBASSANIO:\nLet me choose\nFor as I am, I live upon the rack.\n\nPORTIA:\nUpon the rack, Bassanio! then confess\nWhat treason there is mingled with your love.\n\nBASSANIO:\nNone but that ugly treason of mistrust,\nWhich makes me fear the enjoying of my love:\nThere may as well be amity and life\n'Tween snow and fire, as treason and my love.\n\nPORTIA:\nAy, but I fear you speak upon the rack,\nWhere men enforced do speak anything.\n\nBASSANIO:\nPromise me life, and I'll confess the truth.\n\nPORTIA:\nWell then, confess and live.\n\nBASSANIO:\n'Confess' and 'love'\nHad been the very sum of my confession:\nO happy torment, when my torturer\nDoth teach me answers for deliverance!\nBut let me to my fortune and the caskets.\n\nPORTIA:\nAway, then! I am lock'd in one of them:\nIf you do love me, you will find me out.\nNerissa and the rest, stand all aloof.\nLet music sound while he doth make his choice;\nThen, if he lose, he makes a swan-like end,\nFading in music: that the comparison\nMay stand more proper, my eye shall be the stream\nAnd watery death-bed for him. He may win;\nAnd what is music then? Then music is\nEven as the flourish when true subjects bow\nTo a new-crowned monarch: such it is\nAs are those dulcet sounds in break of day\nThat creep into the dreaming bridegroom's ear,\nAnd summon him to marriage. Now he goes,\nWith no less presence, but with much more love,\nThan young Alcides, when he did redeem\nThe virgin tribute paid by howling Troy\nTo the sea-monster: I stand for sacrifice\nThe rest aloof are the Dardanian wives,\nWith bleared visages, come forth to view\nThe issue of the exploit. Go, Hercules!\nLive thou, I live: with much, much more dismay\nI view the fight than thou that makest the fray.\nTell me where is fancy bred,\nOr in the heart, or in the head?\nHow begot, how nourished?\nReply, reply.\nIt is engender'd in the eyes,\nWith gazing fed; and fancy dies\nIn the cradle where it lies.\nLet us all ring fancy's knell\nI'll begin it,--Ding, dong, bell.\n\nALL:\nDing, dong, bell.\n\nBASSANIO:\nSo may the outward shows be least themselves:\nThe world is still deceived with ornament.\nIn law, what plea so tainted and corrupt,\nBut, being seasoned with a gracious voice,\nObscures the show of evil? In religion,\nWhat damned error, but some sober brow\nWill bless it and approve it with a text,\nHiding the grossness with fair ornament?\nThere is no vice so simple but assumes\nSome mark of virtue on his outward parts:\nHow many cowards, whose hearts are all as false\nAs stairs of sand, wear yet upon their chins\nThe beards of Hercules and frowning Mars;\nWho, inward search'd, have livers white as milk;\nAnd these assume but valour's excrement\nTo render them redoubted! Look on beauty,\nAnd you shall see 'tis purchased by the weight;\nWhich therein works a miracle in nature,\nMaking them lightest that wear most of it:\nSo are those crisped snaky golden locks\nWhich make such wanton gambols with the wind,\nUpon supposed fairness, often known\nTo be the dowry of a second head,\nThe skull that bred them in the sepulchre.\nThus ornament is but the guiled shore\nTo a most dangerous sea; the beauteous scarf\nVeiling an Indian beauty; in a word,\nThe seeming truth which cunning times put on\nTo entrap the wisest. Therefore, thou gaudy gold,\nHard food for Midas, I will none of thee;\nNor none of thee, thou pale and common drudge\n'Tween man and man: but thou, thou meagre lead,\nWhich rather threatenest than dost promise aught,\nThy paleness moves me more than eloquence;\nAnd here choose I; joy be the consequence!\n\nPORTIA:\n\nBASSANIO:\nWhat find I here?\nFair Portia's counterfeit! What demi-god\nHath come so near creation? Move these eyes?\nOr whether, riding on the balls of mine,\nSeem they in motion? Here are sever'd lips,\nParted with sugar breath: so sweet a bar\nShould sunder such sweet friends. Here in her hairs\nThe painter plays the spider and hath woven\nA golden mesh to entrap the hearts of men,\nFaster than gnats in cobwebs; but her eyes,--\nHow could he see to do them? having made one,\nMethinks it should have power to steal both his\nAnd leave itself unfurnish'd. Yet look, how far\nThe substance of my praise doth wrong this shadow\nIn underprizing it, so far this shadow\nDoth limp behind the substance. Here's the scroll,\nThe continent and summary of my fortune.\nYou that choose not by the view,\nChance as fair and choose as true!\nSince this fortune falls to you,\nBe content and seek no new,\nIf you be well pleased with this\nAnd hold your fortune for your bliss,\nTurn you where your lady is\nAnd claim her with a loving kiss.\nA gentle scroll. Fair lady, by your leave;\nI come by note, to give and to receive.\nLike one of two contending in a prize,\nThat thinks he hath done well in people's eyes,\nHearing applause and universal shout,\nGiddy in spirit, still gazing in a doubt\nWhether these pearls of praise be his or no;\nSo, thrice fair lady, stand I, even so;\nAs doubtful whether what I see be true,\nUntil confirm'd, sign'd, ratified by you.\n\nPORTIA:\nYou see me, Lord Bassanio, where I stand,\nSuch as I am: though for myself alone\nI would not be ambitious in my wish,\nTo wish myself much better; yet, for you\nI would be trebled twenty times myself;\nA thousand times more fair, ten thousand times more rich;\nThat only to stand high in your account,\nI might in virtue, beauties, livings, friends,\nExceed account; but the full sum of me\nIs sum of something, which, to term in gross,\nIs an unlesson'd girl, unschool'd, unpractised;\nHappy in this, she is not yet so old\nBut she may learn; happier than this,\nShe is not bred so dull but she can learn;\nHappiest of all is that her gentle spirit\nCommits itself to yours to be directed,\nAs from her lord, her governor, her king.\nMyself and what is mine to you and yours\nIs now converted: but now I was the lord\nOf this fair mansion, master of my servants,\nQueen o'er myself: and even now, but now,\nThis house, these servants and this same myself\nAre yours, my lord: I give them with this ring;\nWhich when you part from, lose, or give away,\nLet it presage the ruin of your love\nAnd be my vantage to exclaim on you.\n\nBASSANIO:\nMadam, you have bereft me of all words,\nOnly my blood speaks to you in my veins;\nAnd there is such confusion in my powers,\nAs after some oration fairly spoke\nBy a beloved prince, there doth appear\nAmong the buzzing pleased multitude;\nWhere every something, being blent together,\nTurns to a wild of nothing, save of joy,\nExpress'd and not express'd. But when this ring\nParts from this finger, then parts life from hence:\nO, then be bold to say Bassanio's dead!\n\nNERISSA:\nMy lord and lady, it is now our time,\nThat have stood by and seen our wishes prosper,\nTo cry, good joy: good joy, my lord and lady!\n\nGRATIANO:\nMy lord Bassanio and my gentle lady,\nI wish you all the joy that you can wish;\nFor I am sure you can wish none from me:\nAnd when your honours mean to solemnize\nThe bargain of your faith, I do beseech you,\nEven at that time I may be married too.\n\nBASSANIO:\nWith all my heart, so thou canst get a wife.\n\nGRATIANO:\nI thank your lordship, you have got me one.\nMy eyes, my lord, can look as swift as yours:\nYou saw the mistress, I beheld the maid;\nYou loved, I loved for intermission.\nNo more pertains to me, my lord, than you.\nYour fortune stood upon the casket there,\nAnd so did mine too, as the matter falls;\nFor wooing here until I sweat again,\nAnd sweating until my very roof was dry\nWith oaths of love, at last, if promise last,\nI got a promise of this fair one here\nTo have her love, provided that your fortune\nAchieved her mistress.\n\nPORTIA:\nIs this true, Nerissa?\n\nNERISSA:\nMadam, it is, so you stand pleased withal.\n\nBASSANIO:\nAnd do you, Gratiano, mean good faith?\n\nGRATIANO:\nYes, faith, my lord.\n\nBASSANIO:\nOur feast shall be much honour'd in your marriage.\n\nGRATIANO:\nWe'll play with them the first boy for a thousand ducats.\n\nNERISSA:\nWhat, and stake down?\n\nGRATIANO:\nNo; we shall ne'er win at that sport, and stake down.\nBut who comes here? Lorenzo and his infidel? What,\nand my old Venetian friend Salerio?\n\nBASSANIO:\nLorenzo and Salerio, welcome hither;\nIf that the youth of my new interest here\nHave power to bid you welcome. By your leave,\nI bid my very friends and countrymen,\nSweet Portia, welcome.\n\nPORTIA:\nSo do I, my lord:\nThey are entirely welcome.\n\nLORENZO:\nI thank your honour. For my part, my lord,\nMy purpose was not to have seen you here;\nBut meeting with Salerio by the way,\nHe did entreat me, past all saying nay,\nTo come with him along.\n\nSALERIO:\nI did, my lord;\nAnd I have reason for it. Signior Antonio\nCommends him to you.\n\nBASSANIO:\nEre I ope his letter,\nI pray you, tell me how my good friend doth.\n\nSALERIO:\nNot sick, my lord, unless it be in mind;\nNor well, unless in mind: his letter there\nWill show you his estate.\n\nGRATIANO:\nNerissa, cheer yon stranger; bid her welcome.\nYour hand, Salerio: what's the news from Venice?\nHow doth that royal merchant, good Antonio?\nI know he will be glad of our success;\nWe are the Jasons, we have won the fleece.\n\nSALERIO:\nI would you had won the fleece that he hath lost.\n\nPORTIA:\nThere are some shrewd contents in yon same paper,\nThat steals the colour from Bassanio's cheek:\nSome dear friend dead; else nothing in the world\nCould turn so much the constitution\nOf any constant man. What, worse and worse!\nWith leave, Bassanio: I am half yourself,\nAnd I must freely have the half of anything\nThat this same paper brings you.\n\nBASSANIO:\nO sweet Portia,\nHere are a few of the unpleasant'st words\nThat ever blotted paper! Gentle lady,\nWhen I did first impart my love to you,\nI freely told you, all the wealth I had\nRan in my veins, I was a gentleman;\nAnd then I told you true: and yet, dear lady,\nRating myself at nothing, you shall see\nHow much I was a braggart. When I told you\nMy state was nothing, I should then have told you\nThat I was worse than nothing; for, indeed,\nI have engaged myself to a dear friend,\nEngaged my friend to his mere enemy,\nTo feed my means. Here is a letter, lady;\nThe paper as the body of my friend,\nAnd every word in it a gaping wound,\nIssuing life-blood. But is it true, Salerio?\nHave all his ventures fail'd? What, not one hit?\nFrom Tripolis, from Mexico and England,\nFrom Lisbon, Barbary and India?\nAnd not one vessel 'scape the dreadful touch\nOf merchant-marring rocks?\n\nSALERIO:\nNot one, my lord.\nBesides, it should appear, that if he had\nThe present money to discharge the Jew,\nHe would not take it. Never did I know\nA creature, that did bear the shape of man,\nSo keen and greedy to confound a man:\nHe plies the duke at morning and at night,\nAnd doth impeach the freedom of the state,\nIf they deny him justice: twenty merchants,\nThe duke himself, and the magnificoes\nOf greatest port, have all persuaded with him;\nBut none can drive him from the envious plea\nOf forfeiture, of justice and his bond.\n\nJESSICA:\nWhen I was with him I have heard him swear\nTo Tubal and to Chus, his countrymen,\nThat he would rather have Antonio's flesh\nThan twenty times the value of the sum\nThat he did owe him: and I know, my lord,\nIf law, authority and power deny not,\nIt will go hard with poor Antonio.\n\nPORTIA:\nIs it your dear friend that is thus in trouble?\n\nBASSANIO:\nThe dearest friend to me, the kindest man,\nThe best-condition'd and unwearied spirit\nIn doing courtesies, and one in whom\nThe ancient Roman honour more appears\nThan any that draws breath in Italy.\n\nPORTIA:\nWhat sum owes he the Jew?\n\nBASSANIO:\nFor me three thousand ducats.\n\nPORTIA:\nWhat, no more?\nPay him six thousand, and deface the bond;\nDouble six thousand, and then treble that,\nBefore a friend of this description\nShall lose a hair through Bassanio's fault.\nFirst go with me to church and call me wife,\nAnd then away to Venice to your friend;\nFor never shall you lie by Portia's side\nWith an unquiet soul. You shall have gold\nTo pay the petty debt twenty times over:\nWhen it is paid, bring your true friend along.\nMy maid Nerissa and myself meantime\nWill live as maids and widows. Come, away!\nFor you shall hence upon your wedding-day:\nBid your friends welcome, show a merry cheer:\nSince you are dear bought, I will love you dear.\nBut let me hear the letter of your friend.\n\nBASSANIO:\n\nPORTIA:\nO love, dispatch all business, and be gone!\n\nBASSANIO:\nSince I have your good leave to go away,\nI will make haste: but, till I come again,\nNo bed shall e'er be guilty of my stay,\nNo rest be interposer 'twixt us twain.\n\nSHYLOCK:\nGaoler, look to him: tell not me of mercy;\nThis is the fool that lent out money gratis:\nGaoler, look to him.\n\nANTONIO:\nHear me yet, good Shylock.\n\nSHYLOCK:\nI'll have my bond; speak not against my bond:\nI have sworn an oath that I will have my bond.\nThou call'dst me dog before thou hadst a cause;\nBut, since I am a dog, beware my fangs:\nThe duke shall grant me justice. I do wonder,\nThou naughty gaoler, that thou art so fond\nTo come abroad with him at his request.\n\nANTONIO:\nI pray thee, hear me speak.\n\nSHYLOCK:\nI'll have my bond; I will not hear thee speak:\nI'll have my bond; and therefore speak no more.\nI'll not be made a soft and dull-eyed fool,\nTo shake the head, relent, and sigh, and yield\nTo Christian intercessors. Follow not;\nI'll have no speaking: I will have my bond.\n\nSALARINO:\nIt is the most impenetrable cur\nThat ever kept with men.\n\nANTONIO:\nLet him alone:\nI'll follow him no more with bootless prayers.\nHe seeks my life; his reason well I know:\nI oft deliver'd from his forfeitures\nMany that have at times made moan to me;\nTherefore he hates me.\n\nSALARINO:\nI am sure the duke\nWill never grant this forfeiture to hold.\n\nANTONIO:\nThe duke cannot deny the course of law:\nFor the commodity that strangers have\nWith us in Venice, if it be denied,\nWill much impeach the justice of his state;\nSince that the trade and profit of the city\nConsisteth of all nations. Therefore, go:\nThese griefs and losses have so bated me,\nThat I shall hardly spare a pound of flesh\nTo-morrow to my bloody creditor.\nWell, gaoler, on. Pray God, Bassanio come\nTo see me pay his debt, and then I care not!\n\nLORENZO:\nMadam, although I speak it in your presence,\nYou have a noble and a true conceit\nOf godlike amity; which appears most strongly\nIn bearing thus the absence of your lord.\nBut if you knew to whom you show this honour,\nHow true a gentleman you send relief,\nHow dear a lover of my lord your husband,\nI know you would be prouder of the work\nThan customary bounty can enforce you.\n\nPORTIA:\nI never did repent for doing good,\nNor shall not now: for in companions\nThat do converse and waste the time together,\nWhose souls do bear an equal yoke Of love,\nThere must be needs a like proportion\nOf lineaments, of manners and of spirit;\nWhich makes me think that this Antonio,\nBeing the bosom lover of my lord,\nMust needs be like my lord. If it be so,\nHow little is the cost I have bestow'd\nIn purchasing the semblance of my soul\nFrom out the state of hellish misery!\nThis comes too near the praising of myself;\nTherefore no more of it: hear other things.\nLorenzo, I commit into your hands\nThe husbandry and manage of my house\nUntil my lord's return: for mine own part,\nI have toward heaven breathed a secret vow\nTo live in prayer and contemplation,\nOnly attended by Nerissa here,\nUntil her husband and my lord's return:\nThere is a monastery two miles off;\nAnd there will we abide. I do desire you\nNot to deny this imposition;\nThe which my love and some necessity\nNow lays upon you.\n\nLORENZO:\nMadam, with all my heart;\nI shall obey you in all fair commands.\n\nPORTIA:\nMy people do already know my mind,\nAnd will acknowledge you and Jessica\nIn place of Lord Bassanio and myself.\nAnd so farewell, till we shall meet again.\n\nLORENZO:\nFair thoughts and happy hours attend on you!\n\nJESSICA:\nI wish your ladyship all heart's content.\n\nPORTIA:\nI thank you for your wish, and am well pleased\nTo wish it back on you: fare you well Jessica.\nNow, Balthasar,\nAs I have ever found thee honest-true,\nSo let me find thee still. Take this same letter,\nAnd use thou all the endeavour of a man\nIn speed to Padua: see thou render this\nInto my cousin's hand, Doctor Bellario;\nAnd, look, what notes and garments he doth give thee,\nBring them, I pray thee, with imagined speed\nUnto the tranect, to the common ferry\nWhich trades to Venice. Waste no time in words,\nBut get thee gone: I shall be there before thee.\n\nBALTHASAR:\nMadam, I go with all convenient speed.\n\nPORTIA:\nCome on, Nerissa; I have work in hand\nThat you yet know not of: we'll see our husbands\nBefore they think of us.\n\nNERISSA:\nShall they see us?\n\nPORTIA:\nThey shall, Nerissa; but in such a habit,\nThat they shall think we are accomplished\nWith that we lack. I'll hold thee any wager,\nWhen we are both accoutred like young men,\nI'll prove the prettier fellow of the two,\nAnd wear my dagger with the braver grace,\nAnd speak between the change of man and boy\nWith a reed voice, and turn two mincing steps\nInto a manly stride, and speak of frays\nLike a fine bragging youth, and tell quaint lies,\nHow honourable ladies sought my love,\nWhich I denying, they fell sick and died;\nI could not do withal; then I'll repent,\nAnd wish for all that, that I had not killed them;\nAnd twenty of these puny lies I'll tell,\nThat men shall swear I have discontinued school\nAbove a twelvemonth. I have within my mind\nA thousand raw tricks of these bragging Jacks,\nWhich I will practise.\n\nNERISSA:\nWhy, shall we turn to men?\n\nPORTIA:\nFie, what a question's that,\nIf thou wert near a lewd interpreter!\nBut come, I'll tell thee all my whole device\nWhen I am in my coach, which stays for us\nAt the park gate; and therefore haste away,\nFor we must measure twenty miles to-day.\n\nLAUNCELOT:\nYes, truly; for, look you, the sins of the father\nare to be laid upon the children: therefore, I\npromise ye, I fear you. I was always plain with\nyou, and so now I speak my agitation of the matter:\ntherefore be of good cheer, for truly I think you\nare damned. There is but one hope in it that can do\nyou any good; and that is but a kind of bastard\nhope neither.\n\nJESSICA:\nAnd what hope is that, I pray thee?\n\nLAUNCELOT:\nMarry, you may partly hope that your father got you\nnot, that you are not the Jew's daughter.\n\nJESSICA:\nThat were a kind of bastard hope, indeed: so the\nsins of my mother should be visited upon me.\n\nLAUNCELOT:\nTruly then I fear you are damned both by father and\nmother: thus when I shun Scylla, your father, I\nfall into Charybdis, your mother: well, you are\ngone both ways.\n\nJESSICA:\nI shall be saved by my husband; he hath made me a\nChristian.\n\nLAUNCELOT:\nTruly, the more to blame he: we were Christians\nenow before; e'en as many as could well live, one by\nanother. This making Christians will raise the\nprice of hogs: if we grow all to be pork-eaters, we\nshall not shortly have a rasher on the coals for money.\n\nJESSICA:\nI'll tell my husband, Launcelot, what you say: here he comes.\n\nLORENZO:\nI shall grow jealous of you shortly, Launcelot, if\nyou thus get my wife into corners.\n\nJESSICA:\nNay, you need not fear us, Lorenzo: Launcelot and I\nare out. He tells me flatly, there is no mercy for\nme in heaven, because I am a Jew's daughter: and he\nsays, you are no good member of the commonwealth,\nfor in converting Jews to Christians, you raise the\nprice of pork.\n\nLORENZO:\nI shall answer that better to the commonwealth than\nyou can the getting up of the negro's belly: the\nMoor is with child by you, Launcelot.\n\nLAUNCELOT:\nIt is much that the Moor should be more than reason:\nbut if she be less than an honest woman, she is\nindeed more than I took her for.\n\nLORENZO:\nHow every fool can play upon the word! I think the\nbest grace of wit will shortly turn into silence,\nand discourse grow commendable in none only but\nparrots. Go in, sirrah; bid them prepare for dinner.\n\nLAUNCELOT:\nThat is done, sir; they have all stomachs.\n\nLORENZO:\nGoodly Lord, what a wit-snapper are you! then bid\nthem prepare dinner.\n\nLAUNCELOT:\nThat is done too, sir; only 'cover' is the word.\n\nLORENZO:\nWill you cover then, sir?\n\nLAUNCELOT:\nNot so, sir, neither; I know my duty.\n\nLORENZO:\nYet more quarrelling with occasion! Wilt thou show\nthe whole wealth of thy wit in an instant? I pray\ntree, understand a plain man in his plain meaning:\ngo to thy fellows; bid them cover the table, serve\nin the meat, and we will come in to dinner.\n\nLAUNCELOT:\nFor the table, sir, it shall be served in; for the\nmeat, sir, it shall be covered; for your coming in\nto dinner, sir, why, let it be as humours and\nconceits shall govern.\n\nLORENZO:\nO dear discretion, how his words are suited!\nThe fool hath planted in his memory\nAn army of good words; and I do know\nA many fools, that stand in better place,\nGarnish'd like him, that for a tricksy word\nDefy the matter. How cheerest thou, Jessica?\nAnd now, good sweet, say thy opinion,\nHow dost thou like the Lord Bassanio's wife?\n\nJESSICA:\nPast all expressing. It is very meet\nThe Lord Bassanio live an upright life;\nFor, having such a blessing in his lady,\nHe finds the joys of heaven here on earth;\nAnd if on earth he do not mean it, then\nIn reason he should never come to heaven\nWhy, if two gods should play some heavenly match\nAnd on the wager lay two earthly women,\nAnd Portia one, there must be something else\nPawn'd with the other, for the poor rude world\nHath not her fellow.\n\nLORENZO:\nEven such a husband\nHast thou of me as she is for a wife.\n\nJESSICA:\nNay, but ask my opinion too of that.\n\nLORENZO:\nI will anon: first, let us go to dinner.\n\nJESSICA:\nNay, let me praise you while I have a stomach.\n\nLORENZO:\nNo, pray thee, let it serve for table-talk;\n' Then, howso'er thou speak'st, 'mong other things\nI shall digest it.\n\nJESSICA:\nWell, I'll set you forth.\n\nDUKE:\nWhat, is Antonio here?\n\nANTONIO:\nReady, so please your grace.\n\nDUKE:\nI am sorry for thee: thou art come to answer\nA stony adversary, an inhuman wretch\nuncapable of pity, void and empty\nFrom any dram of mercy.\n\nANTONIO:\nI have heard\nYour grace hath ta'en great pains to qualify\nHis rigorous course; but since he stands obdurate\nAnd that no lawful means can carry me\nOut of his envy's reach, I do oppose\nMy patience to his fury, and am arm'd\nTo suffer, with a quietness of spirit,\nThe very tyranny and rage of his.\n\nDUKE:\nGo one, and call the Jew into the court.\n\nSALERIO:\nHe is ready at the door: he comes, my lord.\n\nDUKE:\nMake room, and let him stand before our face.\nShylock, the world thinks, and I think so too,\nThat thou but lead'st this fashion of thy malice\nTo the last hour of act; and then 'tis thought\nThou'lt show thy mercy and remorse more strange\nThan is thy strange apparent cruelty;\nAnd where thou now exact'st the penalty,\nWhich is a pound of this poor merchant's flesh,\nThou wilt not only loose the forfeiture,\nBut, touch'd with human gentleness and love,\nForgive a moiety of the principal;\nGlancing an eye of pity on his losses,\nThat have of late so huddled on his back,\nEnow to press a royal merchant down\nAnd pluck commiseration of his state\nFrom brassy bosoms and rough hearts of flint,\nFrom stubborn Turks and Tartars, never train'd\nTo offices of tender courtesy.\nWe all expect a gentle answer, Jew.\n\nSHYLOCK:\nI have possess'd your grace of what I purpose;\nAnd by our holy Sabbath have I sworn\nTo have the due and forfeit of my bond:\nIf you deny it, let the danger light\nUpon your charter and your city's freedom.\nYou'll ask me, why I rather choose to have\nA weight of carrion flesh than to receive\nThree thousand ducats: I'll not answer that:\nBut, say, it is my humour: is it answer'd?\nWhat if my house be troubled with a rat\nAnd I be pleased to give ten thousand ducats\nTo have it baned? What, are you answer'd yet?\nSome men there are love not a gaping pig;\nSome, that are mad if they behold a cat;\nAnd others, when the bagpipe sings i' the nose,\nCannot contain their urine: for affection,\nMistress of passion, sways it to the mood\nOf what it likes or loathes. Now, for your answer:\nAs there is no firm reason to be render'd,\nWhy he cannot abide a gaping pig;\nWhy he, a harmless necessary cat;\nWhy he, a woollen bagpipe; but of force\nMust yield to such inevitable shame\nAs to offend, himself being offended;\nSo can I give no reason, nor I will not,\nMore than a lodged hate and a certain loathing\nI bear Antonio, that I follow thus\nA losing suit against him. Are you answer'd?\n\nBASSANIO:\nThis is no answer, thou unfeeling man,\nTo excuse the current of thy cruelty.\n\nSHYLOCK:\nI am not bound to please thee with my answers.\n\nBASSANIO:\nDo all men kill the things they do not love?\n\nSHYLOCK:\nHates any man the thing he would not kill?\n\nBASSANIO:\nEvery offence is not a hate at first.\n\nSHYLOCK:\nWhat, wouldst thou have a serpent sting thee twice?\n\nANTONIO:\nI pray you, think you question with the Jew:\nYou may as well go stand upon the beach\nAnd bid the main flood bate his usual height;\nYou may as well use question with the wolf\nWhy he hath made the ewe bleat for the lamb;\nYou may as well forbid the mountain pines\nTo wag their high tops and to make no noise,\nWhen they are fretten with the gusts of heaven;\nYou may as well do anything most hard,\nAs seek to soften that--than which what's harder?--\nHis Jewish heart: therefore, I do beseech you,\nMake no more offers, use no farther means,\nBut with all brief and plain conveniency\nLet me have judgment and the Jew his will.\n\nBASSANIO:\nFor thy three thousand ducats here is six.\n\nSHYLOCK:\nWhat judgment shall I dread, doing\nWere in six parts and every part a ducat,\nI would not draw them; I would have my bond.\n\nDUKE:\nHow shalt thou hope for mercy, rendering none?\n\nSHYLOCK:\nWhat judgment shall I dread, doing no wrong?\nYou have among you many a purchased slave,\nWhich, like your asses and your dogs and mules,\nYou use in abject and in slavish parts,\nBecause you bought them: shall I say to you,\nLet them be free, marry them to your heirs?\nWhy sweat they under burthens? let their beds\nBe made as soft as yours and let their palates\nBe season'd with such viands? You will answer\n'The slaves are ours:' so do I answer you:\nThe pound of flesh, which I demand of him,\nIs dearly bought; 'tis mine and I will have it.\nIf you deny me, fie upon your law!\nThere is no force in the decrees of Venice.\nI stand for judgment: answer; shall I have it?\n\nDUKE:\nUpon my power I may dismiss this court,\nUnless Bellario, a learned doctor,\nWhom I have sent for to determine this,\nCome here to-day.\n\nSALERIO:\nMy lord, here stays without\nA messenger with letters from the doctor,\nNew come from Padua.\n\nDUKE:\nBring us the letter; call the messenger.\n\nBASSANIO:\nGood cheer, Antonio! What, man, courage yet!\nThe Jew shall have my flesh, blood, bones and all,\nEre thou shalt lose for me one drop of blood.\n\nANTONIO:\nI am a tainted wether of the flock,\nMeetest for death: the weakest kind of fruit\nDrops earliest to the ground; and so let me\nYou cannot better be employ'd, Bassanio,\nThan to live still and write mine epitaph.\n\nDUKE:\nCame you from Padua, from Bellario?\n\nNERISSA:\nFrom both, my lord. Bellario greets your grace.\n\nBASSANIO:\nWhy dost thou whet thy knife so earnestly?\n\nSHYLOCK:\nTo cut the forfeiture from that bankrupt there.\n\nGRATIANO:\nNot on thy sole, but on thy soul, harsh Jew,\nThou makest thy knife keen; but no metal can,\nNo, not the hangman's axe, bear half the keenness\nOf thy sharp envy. Can no prayers pierce thee?\n\nSHYLOCK:\nNo, none that thou hast wit enough to make.\n\nGRATIANO:\nO, be thou damn'd, inexecrable dog!\nAnd for thy life let justice be accused.\nThou almost makest me waver in my faith\nTo hold opinion with Pythagoras,\nThat souls of animals infuse themselves\nInto the trunks of men: thy currish spirit\nGovern'd a wolf, who, hang'd for human slaughter,\nEven from the gallows did his fell soul fleet,\nAnd, whilst thou lay'st in thy unhallow'd dam,\nInfused itself in thee; for thy desires\nAre wolvish, bloody, starved and ravenous.\n\nSHYLOCK:\nTill thou canst rail the seal from off my bond,\nThou but offend'st thy lungs to speak so loud:\nRepair thy wit, good youth, or it will fall\nTo cureless ruin. I stand here for law.\n\nDUKE:\nThis letter from Bellario doth commend\nA young and learned doctor to our court.\nWhere is he?\n\nNERISSA:\nHe attendeth here hard by,\nTo know your answer, whether you'll admit him.\n\nDUKE:\nWith all my heart. Some three or four of you\nGo give him courteous conduct to this place.\nMeantime the court shall hear Bellario's letter.\n\nClerk:\n\nDUKE:\nYou hear the learn'd Bellario, what he writes:\nAnd here, I take it, is the doctor come.\nGive me your hand. Come you from old Bellario?\n\nPORTIA:\nI did, my lord.\n\nDUKE:\nYou are welcome: take your place.\nAre you acquainted with the difference\nThat holds this present question in the court?\n\nPORTIA:\nI am informed thoroughly of the cause.\nWhich is the merchant here, and which the Jew?\n\nDUKE:\nAntonio and old Shylock, both stand forth.\n\nPORTIA:\nIs your name Shylock?\n\nSHYLOCK:\nShylock is my name.\n\nPORTIA:\nOf a strange nature is the suit you follow;\nYet in such rule that the Venetian law\nCannot impugn you as you do proceed.\nYou stand within his danger, do you not?\n\nANTONIO:\nAy, so he says.\n\nPORTIA:\nDo you confess the bond?\n\nANTONIO:\nI do.\n\nPORTIA:\nThen must the Jew be merciful.\n\nSHYLOCK:\nOn what compulsion must I? tell me that.\n\nPORTIA:\nThe quality of mercy is not strain'd,\nIt droppeth as the gentle rain from heaven\nUpon the place beneath: it is twice blest;\nIt blesseth him that gives and him that takes:\n'Tis mightiest in the mightiest: it becomes\nThe throned monarch better than his crown;\nHis sceptre shows the force of temporal power,\nThe attribute to awe and majesty,\nWherein doth sit the dread and fear of kings;\nBut mercy is above this sceptred sway;\nIt is enthroned in the hearts of kings,\nIt is an attribute to God himself;\nAnd earthly power doth then show likest God's\nWhen mercy seasons justice. Therefore, Jew,\nThough justice be thy plea, consider this,\nThat, in the course of justice, none of us\nShould see salvation: we do pray for mercy;\nAnd that same prayer doth teach us all to render\nThe deeds of mercy. I have spoke thus much\nTo mitigate the justice of thy plea;\nWhich if thou follow, this strict court of Venice\nMust needs give sentence 'gainst the merchant there.\n\nSHYLOCK:\nMy deeds upon my head! I crave the law,\nThe penalty and forfeit of my bond.\n\nPORTIA:\nIs he not able to discharge the money?\n\nBASSANIO:\nYes, here I tender it for him in the court;\nYea, twice the sum: if that will not suffice,\nI will be bound to pay it ten times o'er,\nOn forfeit of my hands, my head, my heart:\nIf this will not suffice, it must appear\nThat malice bears down truth. And I beseech you,\nWrest once the law to your authority:\nTo do a great right, do a little wrong,\nAnd curb this cruel devil of his will.\n\nPORTIA:\nIt must not be; there is no power in Venice\nCan alter a decree established:\n'Twill be recorded for a precedent,\nAnd many an error by the same example\nWill rush into the state: it cannot be.\n\nSHYLOCK:\nA Daniel come to judgment! yea, a Daniel!\nO wise young judge, how I do honour thee!\n\nPORTIA:\nI pray you, let me look upon the bond.\n\nSHYLOCK:\nHere 'tis, most reverend doctor, here it is.\n\nPORTIA:\nShylock, there's thrice thy money offer'd thee.\n\nSHYLOCK:\nAn oath, an oath, I have an oath in heaven:\nShall I lay perjury upon my soul?\nNo, not for Venice.\n\nPORTIA:\nWhy, this bond is forfeit;\nAnd lawfully by this the Jew may claim\nA pound of flesh, to be by him cut off\nNearest the merchant's heart. Be merciful:\nTake thrice thy money; bid me tear the bond.\n\nSHYLOCK:\nWhen it is paid according to the tenor.\nIt doth appear you are a worthy judge;\nYou know the law, your exposition\nHath been most sound: I charge you by the law,\nWhereof you are a well-deserving pillar,\nProceed to judgment: by my soul I swear\nThere is no power in the tongue of man\nTo alter me: I stay here on my bond.\n\nANTONIO:\nMost heartily I do beseech the court\nTo give the judgment.\n\nPORTIA:\nWhy then, thus it is:\nYou must prepare your bosom for his knife.\n\nSHYLOCK:\nO noble judge! O excellent young man!\n\nPORTIA:\nFor the intent and purpose of the law\nHath full relation to the penalty,\nWhich here appeareth due upon the bond.\n\nSHYLOCK:\n'Tis very true: O wise and upright judge!\nHow much more elder art thou than thy looks!\n\nPORTIA:\nTherefore lay bare your bosom.\n\nSHYLOCK:\nAy, his breast:\nSo says the bond: doth it not, noble judge?\n'Nearest his heart:' those are the very words.\n\nPORTIA:\nIt is so. Are there balance here to weigh\nThe flesh?\n\nSHYLOCK:\nI have them ready.\n\nPORTIA:\nHave by some surgeon, Shylock, on your charge,\nTo stop his wounds, lest he do bleed to death.\n\nSHYLOCK:\nIs it so nominated in the bond?\n\nPORTIA:\nIt is not so express'd: but what of that?\n'Twere good you do so much for charity.\n\nSHYLOCK:\nI cannot find it; 'tis not in the bond.\n\nPORTIA:\nYou, merchant, have you any thing to say?\n\nANTONIO:\nBut little: I am arm'd and well prepared.\nGive me your hand, Bassanio: fare you well!\nGrieve not that I am fallen to this for you;\nFor herein Fortune shows herself more kind\nThan is her custom: it is still her use\nTo let the wretched man outlive his wealth,\nTo view with hollow eye and wrinkled brow\nAn age of poverty; from which lingering penance\nOf such misery doth she cut me off.\nCommend me to your honourable wife:\nTell her the process of Antonio's end;\nSay how I loved you, speak me fair in death;\nAnd, when the tale is told, bid her be judge\nWhether Bassanio had not once a love.\nRepent but you that you shall lose your friend,\nAnd he repents not that he pays your debt;\nFor if the Jew do cut but deep enough,\nI'll pay it presently with all my heart.\n\nBASSANIO:\nAntonio, I am married to a wife\nWhich is as dear to me as life itself;\nBut life itself, my wife, and all the world,\nAre not with me esteem'd above thy life:\nI would lose all, ay, sacrifice them all\nHere to this devil, to deliver you.\n\nPORTIA:\nYour wife would give you little thanks for that,\nIf she were by, to hear you make the offer.\n\nGRATIANO:\nI have a wife, whom, I protest, I love:\nI would she were in heaven, so she could\nEntreat some power to change this currish Jew.\n\nNERISSA:\n'Tis well you offer it behind her back;\nThe wish would make else an unquiet house.\n\nSHYLOCK:\nThese be the Christian husbands. I have a daughter;\nWould any of the stock of Barrabas\nHad been her husband rather than a Christian!\nWe trifle time: I pray thee, pursue sentence.\n\nPORTIA:\nA pound of that same merchant's flesh is thine:\nThe court awards it, and the law doth give it.\n\nSHYLOCK:\nMost rightful judge!\n\nPORTIA:\nAnd you must cut this flesh from off his breast:\nThe law allows it, and the court awards it.\n\nSHYLOCK:\nMost learned judge! A sentence! Come, prepare!\n\nPORTIA:\nTarry a little; there is something else.\nThis bond doth give thee here no jot of blood;\nThe words expressly are 'a pound of flesh:'\nTake then thy bond, take thou thy pound of flesh;\nBut, in the cutting it, if thou dost shed\nOne drop of Christian blood, thy lands and goods\nAre, by the laws of Venice, confiscate\nUnto the state of Venice.\n\nGRATIANO:\nO upright judge! Mark, Jew: O learned judge!\n\nSHYLOCK:\nIs that the law?\n\nPORTIA:\nThyself shalt see the act:\nFor, as thou urgest justice, be assured\nThou shalt have justice, more than thou desirest.\n\nGRATIANO:\nO learned judge! Mark, Jew: a learned judge!\n\nSHYLOCK:\nI take this offer, then; pay the bond thrice\nAnd let the Christian go.\n\nBASSANIO:\nHere is the money.\n\nPORTIA:\nSoft!\nThe Jew shall have all justice; soft! no haste:\nHe shall have nothing but the penalty.\n\nGRATIANO:\nO Jew! an upright judge, a learned judge!\n\nPORTIA:\nTherefore prepare thee to cut off the flesh.\nShed thou no blood, nor cut thou less nor more\nBut just a pound of flesh: if thou cut'st more\nOr less than a just pound, be it but so much\nAs makes it light or heavy in the substance,\nOr the division of the twentieth part\nOf one poor scruple, nay, if the scale do turn\nBut in the estimation of a hair,\nThou diest and all thy goods are confiscate.\n\nGRATIANO:\nA second Daniel, a Daniel, Jew!\nNow, infidel, I have you on the hip.\n\nPORTIA:\nWhy doth the Jew pause? take thy forfeiture.\n\nSHYLOCK:\nGive me my principal, and let me go.\n\nBASSANIO:\nI have it ready for thee; here it is.\n\nPORTIA:\nHe hath refused it in the open court:\nHe shall have merely justice and his bond.\n\nGRATIANO:\nA Daniel, still say I, a second Daniel!\nI thank thee, Jew, for teaching me that word.\n\nSHYLOCK:\nShall I not have barely my principal?\n\nPORTIA:\nThou shalt have nothing but the forfeiture,\nTo be so taken at thy peril, Jew.\n\nSHYLOCK:\nWhy, then the devil give him good of it!\nI'll stay no longer question.\n\nPORTIA:\nTarry, Jew:\nThe law hath yet another hold on you.\nIt is enacted in the laws of Venice,\nIf it be proved against an alien\nThat by direct or indirect attempts\nHe seek the life of any citizen,\nThe party 'gainst the which he doth contrive\nShall seize one half his goods; the other half\nComes to the privy coffer of the state;\nAnd the offender's life lies in the mercy\nOf the duke only, 'gainst all other voice.\nIn which predicament, I say, thou stand'st;\nFor it appears, by manifest proceeding,\nThat indirectly and directly too\nThou hast contrived against the very life\nOf the defendant; and thou hast incurr'd\nThe danger formerly by me rehearsed.\nDown therefore and beg mercy of the duke.\n\nGRATIANO:\nBeg that thou mayst have leave to hang thyself:\nAnd yet, thy wealth being forfeit to the state,\nThou hast not left the value of a cord;\nTherefore thou must be hang'd at the state's charge.\n\nDUKE:\nThat thou shalt see the difference of our spirits,\nI pardon thee thy life before thou ask it:\nFor half thy wealth, it is Antonio's;\nThe other half comes to the general state,\nWhich humbleness may drive unto a fine.\n\nPORTIA:\nAy, for the state, not for Antonio.\n\nSHYLOCK:\nNay, take my life and all; pardon not that:\nYou take my house when you do take the prop\nThat doth sustain my house; you take my life\nWhen you do take the means whereby I live.\n\nPORTIA:\nWhat mercy can you render him, Antonio?\n\nGRATIANO:\nA halter gratis; nothing else, for God's sake.\n\nANTONIO:\nSo please my lord the duke and all the court\nTo quit the fine for one half of his goods,\nI am content; so he will let me have\nThe other half in use, to render it,\nUpon his death, unto the gentleman\nThat lately stole his daughter:\nTwo things provided more, that, for this favour,\nHe presently become a Christian;\nThe other, that he do record a gift,\nHere in the court, of all he dies possess'd,\nUnto his son Lorenzo and his daughter.\n\nDUKE:\nHe shall do this, or else I do recant\nThe pardon that I late pronounced here.\n\nPORTIA:\nArt thou contented, Jew? what dost thou say?\n\nSHYLOCK:\nI am content.\n\nPORTIA:\nClerk, draw a deed of gift.\n\nSHYLOCK:\nI pray you, give me leave to go from hence;\nI am not well: send the deed after me,\nAnd I will sign it.\n\nDUKE:\nGet thee gone, but do it.\n\nGRATIANO:\nIn christening shalt thou have two god-fathers:\nHad I been judge, thou shouldst have had ten more,\nTo bring thee to the gallows, not the font.\n\nDUKE:\nSir, I entreat you home with me to dinner.\n\nPORTIA:\nI humbly do desire your grace of pardon:\nI must away this night toward Padua,\nAnd it is meet I presently set forth.\n\nDUKE:\nI am sorry that your leisure serves you not.\nAntonio, gratify this gentleman,\nFor, in my mind, you are much bound to him.\n\nBASSANIO:\nMost worthy gentleman, I and my friend\nHave by your wisdom been this day acquitted\nOf grievous penalties; in lieu whereof,\nThree thousand ducats, due unto the Jew,\nWe freely cope your courteous pains withal.\n\nANTONIO:\nAnd stand indebted, over and above,\nIn love and service to you evermore.\n\nPORTIA:\nHe is well paid that is well satisfied;\nAnd I, delivering you, am satisfied\nAnd therein do account myself well paid:\nMy mind was never yet more mercenary.\nI pray you, know me when we meet again:\nI wish you well, and so I take my leave.\n\nBASSANIO:\nDear sir, of force I must attempt you further:\nTake some remembrance of us, as a tribute,\nNot as a fee: grant me two things, I pray you,\nNot to deny me, and to pardon me.\n\nPORTIA:\nYou press me far, and therefore I will yield.\nGive me your gloves, I'll wear them for your sake;\nAnd, for your love, I'll take this ring from you:\nDo not draw back your hand; I'll take no more;\nAnd you in love shall not deny me this.\n\nBASSANIO:\nThis ring, good sir, alas, it is a trifle!\nI will not shame myself to give you this.\n\nPORTIA:\nI will have nothing else but only this;\nAnd now methinks I have a mind to it.\n\nBASSANIO:\nThere's more depends on this than on the value.\nThe dearest ring in Venice will I give you,\nAnd find it out by proclamation:\nOnly for this, I pray you, pardon me.\n\nPORTIA:\nI see, sir, you are liberal in offers\nYou taught me first to beg; and now methinks\nYou teach me how a beggar should be answer'd.\n\nBASSANIO:\nGood sir, this ring was given me by my wife;\nAnd when she put it on, she made me vow\nThat I should neither sell nor give nor lose it.\n\nPORTIA:\nThat 'scuse serves many men to save their gifts.\nAn if your wife be not a mad-woman,\nAnd know how well I have deserved the ring,\nShe would not hold out enemy for ever,\nFor giving it to me. Well, peace be with you!\n\nANTONIO:\nMy Lord Bassanio, let him have the ring:\nLet his deservings and my love withal\nBe valued against your wife's commandment.\n\nBASSANIO:\nGo, Gratiano, run and overtake him;\nGive him the ring, and bring him, if thou canst,\nUnto Antonio's house: away! make haste.\nCome, you and I will thither presently;\nAnd in the morning early will we both\nFly toward Belmont: come, Antonio.\n\nPORTIA:\nInquire the Jew's house out, give him this deed\nAnd let him sign it: we'll away to-night\nAnd be a day before our husbands home:\nThis deed will be well welcome to Lorenzo.\n\nGRATIANO:\nFair sir, you are well o'erta'en\nMy Lord Bassanio upon more advice\nHath sent you here this ring, and doth entreat\nYour company at dinner.\n\nPORTIA:\nThat cannot be:\nHis ring I do accept most thankfully:\nAnd so, I pray you, tell him: furthermore,\nI pray you, show my youth old Shylock's house.\n\nGRATIANO:\nThat will I do.\n\nNERISSA:\nSir, I would speak with you.\nI'll see if I can get my husband's ring,\nWhich I did make him swear to keep for ever.\n\nPORTIA:\n\nNERISSA:\nCome, good sir, will you show me to this house?\n\nLORENZO:\nThe moon shines bright: in such a night as this,\nWhen the sweet wind did gently kiss the trees\nAnd they did make no noise, in such a night\nTroilus methinks mounted the Troyan walls\nAnd sigh'd his soul toward the Grecian tents,\nWhere Cressid lay that night.\n\nJESSICA:\nIn such a night\nDid Thisbe fearfully o'ertrip the dew\nAnd saw the lion's shadow ere himself\nAnd ran dismay'd away.\n\nLORENZO:\nIn such a night\nStood Dido with a willow in her hand\nUpon the wild sea banks and waft her love\nTo come again to Carthage.\n\nJESSICA:\nIn such a night\nMedea gather'd the enchanted herbs\nThat did renew old AEson.\n\nLORENZO:\nIn such a night\nDid Jessica steal from the wealthy Jew\nAnd with an unthrift love did run from Venice\nAs far as Belmont.\n\nJESSICA:\nIn such a night\nDid young Lorenzo swear he loved her well,\nStealing her soul with many vows of faith\nAnd ne'er a true one.\n\nLORENZO:\nIn such a night\nDid pretty Jessica, like a little shrew,\nSlander her love, and he forgave it her.\n\nJESSICA:\nI would out-night you, did no body come;\nBut, hark, I hear the footing of a man.\n\nLORENZO:\nWho comes so fast in silence of the night?\n\nSTEPHANO:\nA friend.\n\nLORENZO:\nA friend! what friend? your name, I pray you, friend?\n\nSTEPHANO:\nStephano is my name; and I bring word\nMy mistress will before the break of day\nBe here at Belmont; she doth stray about\nBy holy crosses, where she kneels and prays\nFor happy wedlock hours.\n\nLORENZO:\nWho comes with her?\n\nSTEPHANO:\nNone but a holy hermit and her maid.\nI pray you, is my master yet return'd?\n\nLORENZO:\nHe is not, nor we have not heard from him.\nBut go we in, I pray thee, Jessica,\nAnd ceremoniously let us prepare\nSome welcome for the mistress of the house.\n\nLAUNCELOT:\nSola, sola! wo ha, ho! sola, sola!\n\nLORENZO:\nWho calls?\n\nLAUNCELOT:\nSola! did you see Master Lorenzo?\nMaster Lorenzo, sola, sola!\n\nLORENZO:\nLeave hollaing, man: here.\n\nLAUNCELOT:\nSola! where? where?\n\nLORENZO:\nHere.\n\nLAUNCELOT:\nTell him there's a post come from my master, with\nhis horn full of good news: my master will be here\nere morning.\n\nLORENZO:\nSweet soul, let's in, and there expect their coming.\nAnd yet no matter: why should we go in?\nMy friend Stephano, signify, I pray you,\nWithin the house, your mistress is at hand;\nAnd bring your music forth into the air.\nHow sweet the moonlight sleeps upon this bank!\nHere will we sit and let the sounds of music\nCreep in our ears: soft stillness and the night\nBecome the touches of sweet harmony.\nSit, Jessica. Look how the floor of heaven\nIs thick inlaid with patines of bright gold:\nThere's not the smallest orb which thou behold'st\nBut in his motion like an angel sings,\nStill quiring to the young-eyed cherubins;\nSuch harmony is in immortal souls;\nBut whilst this muddy vesture of decay\nDoth grossly close it in, we cannot hear it.\nCome, ho! and wake Diana with a hymn!\nWith sweetest touches pierce your mistress' ear,\nAnd draw her home with music.\n\nJESSICA:\nI am never merry when I hear sweet music.\n\nLORENZO:\nThe reason is, your spirits are attentive:\nFor do but note a wild and wanton herd,\nOr race of youthful and unhandled colts,\nFetching mad bounds, bellowing and neighing loud,\nWhich is the hot condition of their blood;\nIf they but hear perchance a trumpet sound,\nOr any air of music touch their ears,\nYou shall perceive them make a mutual stand,\nTheir savage eyes turn'd to a modest gaze\nBy the sweet power of music: therefore the poet\nDid feign that Orpheus drew trees, stones and floods;\nSince nought so stockish, hard and full of rage,\nBut music for the time doth change his nature.\nThe man that hath no music in himself,\nNor is not moved with concord of sweet sounds,\nIs fit for treasons, stratagems and spoils;\nThe motions of his spirit are dull as night\nAnd his affections dark as Erebus:\nLet no such man be trusted. Mark the music.\n\nPORTIA:\nThat light we see is burning in my hall.\nHow far that little candle throws his beams!\nSo shines a good deed in a naughty world.\n\nNERISSA:\nWhen the moon shone, we did not see the candle.\n\nPORTIA:\nSo doth the greater glory dim the less:\nA substitute shines brightly as a king\nUnto the king be by, and then his state\nEmpties itself, as doth an inland brook\nInto the main of waters. Music! hark!\n\nNERISSA:\nIt is your music, madam, of the house.\n\nPORTIA:\nNothing is good, I see, without respect:\nMethinks it sounds much sweeter than by day.\n\nNERISSA:\nSilence bestows that virtue on it, madam.\n\nPORTIA:\nThe crow doth sing as sweetly as the lark,\nWhen neither is attended, and I think\nThe nightingale, if she should sing by day,\nWhen every goose is cackling, would be thought\nNo better a musician than the wren.\nHow many things by season season'd are\nTo their right praise and true perfection!\nPeace, ho! the moon sleeps with Endymion\nAnd would not be awaked.\n\nLORENZO:\nThat is the voice,\nOr I am much deceived, of Portia.\n\nPORTIA:\nHe knows me as the blind man knows the cuckoo,\nBy the bad voice.\n\nLORENZO:\nDear lady, welcome home.\n\nPORTIA:\nWe have been praying for our husbands' healths,\nWhich speed, we hope, the better for our words.\nAre they return'd?\n\nLORENZO:\nMadam, they are not yet;\nBut there is come a messenger before,\nTo signify their coming.\n\nPORTIA:\nGo in, Nerissa;\nGive order to my servants that they take\nNo note at all of our being absent hence;\nNor you, Lorenzo; Jessica, nor you.\n\nLORENZO:\nYour husband is at hand; I hear his trumpet:\nWe are no tell-tales, madam; fear you not.\n\nPORTIA:\nThis night methinks is but the daylight sick;\nIt looks a little paler: 'tis a day,\nSuch as the day is when the sun is hid.\n\nBASSANIO:\nWe should hold day with the Antipodes,\nIf you would walk in absence of the sun.\n\nPORTIA:\nLet me give light, but let me not be light;\nFor a light wife doth make a heavy husband,\nAnd never be Bassanio so for me:\nBut God sort all! You are welcome home, my lord.\n\nBASSANIO:\nI thank you, madam. Give welcome to my friend.\nThis is the man, this is Antonio,\nTo whom I am so infinitely bound.\n\nPORTIA:\nYou should in all sense be much bound to him.\nFor, as I hear, he was much bound for you.\n\nANTONIO:\nNo more than I am well acquitted of.\n\nPORTIA:\nSir, you are very welcome to our house:\nIt must appear in other ways than words,\nTherefore I scant this breathing courtesy.\n\nGRATIANO:\n\nPORTIA:\nA quarrel, ho, already! what's the matter?\n\nGRATIANO:\nAbout a hoop of gold, a paltry ring\nThat she did give me, whose posy was\nFor all the world like cutler's poetry\nUpon a knife, 'Love me, and leave me not.'\n\nNERISSA:\nWhat talk you of the posy or the value?\nYou swore to me, when I did give it you,\nThat you would wear it till your hour of death\nAnd that it should lie with you in your grave:\nThough not for me, yet for your vehement oaths,\nYou should have been respective and have kept it.\nGave it a judge's clerk! no, God's my judge,\nThe clerk will ne'er wear hair on's face that had it.\n\nGRATIANO:\nHe will, an if he live to be a man.\n\nNERISSA:\nAy, if a woman live to be a man.\n\nGRATIANO:\nNow, by this hand, I gave it to a youth,\nA kind of boy, a little scrubbed boy,\nNo higher than thyself; the judge's clerk,\nA prating boy, that begg'd it as a fee:\nI could not for my heart deny it him.\n\nPORTIA:\nYou were to blame, I must be plain with you,\nTo part so slightly with your wife's first gift:\nA thing stuck on with oaths upon your finger\nAnd so riveted with faith unto your flesh.\nI gave my love a ring and made him swear\nNever to part with it; and here he stands;\nI dare be sworn for him he would not leave it\nNor pluck it from his finger, for the wealth\nThat the world masters. Now, in faith, Gratiano,\nYou give your wife too unkind a cause of grief:\nAn 'twere to me, I should be mad at it.\n\nBASSANIO:\n\nGRATIANO:\nMy Lord Bassanio gave his ring away\nUnto the judge that begg'd it and indeed\nDeserved it too; and then the boy, his clerk,\nThat took some pains in writing, he begg'd mine;\nAnd neither man nor master would take aught\nBut the two rings.\n\nPORTIA:\nWhat ring gave you my lord?\nNot that, I hope, which you received of me.\n\nBASSANIO:\nIf I could add a lie unto a fault,\nI would deny it; but you see my finger\nHath not the ring upon it; it is gone.\n\nPORTIA:\nEven so void is your false heart of truth.\nBy heaven, I will ne'er come in your bed\nUntil I see the ring.\n\nNERISSA:\nNor I in yours\nTill I again see mine.\n\nBASSANIO:\nSweet Portia,\nIf you did know to whom I gave the ring,\nIf you did know for whom I gave the ring\nAnd would conceive for what I gave the ring\nAnd how unwillingly I left the ring,\nWhen nought would be accepted but the ring,\nYou would abate the strength of your displeasure.\n\nPORTIA:\nIf you had known the virtue of the ring,\nOr half her worthiness that gave the ring,\nOr your own honour to contain the ring,\nYou would not then have parted with the ring.\nWhat man is there so much unreasonable,\nIf you had pleased to have defended it\nWith any terms of zeal, wanted the modesty\nTo urge the thing held as a ceremony?\nNerissa teaches me what to believe:\nI'll die for't but some woman had the ring.\n\nBASSANIO:\nNo, by my honour, madam, by my soul,\nNo woman had it, but a civil doctor,\nWhich did refuse three thousand ducats of me\nAnd begg'd the ring; the which I did deny him\nAnd suffer'd him to go displeased away;\nEven he that did uphold the very life\nOf my dear friend. What should I say, sweet lady?\nI was enforced to send it after him;\nI was beset with shame and courtesy;\nMy honour would not let ingratitude\nSo much besmear it. Pardon me, good lady;\nFor, by these blessed candles of the night,\nHad you been there, I think you would have begg'd\nThe ring of me to give the worthy doctor.\n\nPORTIA:\nLet not that doctor e'er come near my house:\nSince he hath got the jewel that I loved,\nAnd that which you did swear to keep for me,\nI will become as liberal as you;\nI'll not deny him any thing I have,\nNo, not my body nor my husband's bed:\nKnow him I shall, I am well sure of it:\nLie not a night from home; watch me like Argus:\nIf you do not, if I be left alone,\nNow, by mine honour, which is yet mine own,\nI'll have that doctor for my bedfellow.\n\nNERISSA:\nAnd I his clerk; therefore be well advised\nHow you do leave me to mine own protection.\n\nGRATIANO:\nWell, do you so; let not me take him, then;\nFor if I do, I'll mar the young clerk's pen.\n\nANTONIO:\nI am the unhappy subject of these quarrels.\n\nPORTIA:\nSir, grieve not you; you are welcome notwithstanding.\n\nBASSANIO:\nPortia, forgive me this enforced wrong;\nAnd, in the hearing of these many friends,\nI swear to thee, even by thine own fair eyes,\nWherein I see myself--\n\nPORTIA:\nMark you but that!\nIn both my eyes he doubly sees himself;\nIn each eye, one: swear by your double self,\nAnd there's an oath of credit.\n\nBASSANIO:\nNay, but hear me:\nPardon this fault, and by my soul I swear\nI never more will break an oath with thee.\n\nANTONIO:\nI once did lend my body for his wealth;\nWhich, but for him that had your husband's ring,\nHad quite miscarried: I dare be bound again,\nMy soul upon the forfeit, that your lord\nWill never more break faith advisedly.\n\nPORTIA:\nThen you shall be his surety. Give him this\nAnd bid him keep it better than the other.\n\nANTONIO:\nHere, Lord Bassanio; swear to keep this ring.\n\nBASSANIO:\nBy heaven, it is the same I gave the doctor!\n\nPORTIA:\nI had it of him: pardon me, Bassanio;\nFor, by this ring, the doctor lay with me.\n\nNERISSA:\nAnd pardon me, my gentle Gratiano;\nFor that same scrubbed boy, the doctor's clerk,\nIn lieu of this last night did lie with me.\n\nGRATIANO:\nWhy, this is like the mending of highways\nIn summer, where the ways are fair enough:\nWhat, are we cuckolds ere we have deserved it?\n\nPORTIA:\nSpeak not so grossly. You are all amazed:\nHere is a letter; read it at your leisure;\nIt comes from Padua, from Bellario:\nThere you shall find that Portia was the doctor,\nNerissa there her clerk: Lorenzo here\nShall witness I set forth as soon as you\nAnd even but now return'd; I have not yet\nEnter'd my house. Antonio, you are welcome;\nAnd I have better news in store for you\nThan you expect: unseal this letter soon;\nThere you shall find three of your argosies\nAre richly come to harbour suddenly:\nYou shall not know by what strange accident\nI chanced on this letter.\n\nANTONIO:\nI am dumb.\n\nBASSANIO:\nWere you the doctor and I knew you not?\n\nGRATIANO:\nWere you the clerk that is to make me cuckold?\n\nNERISSA:\nAy, but the clerk that never means to do it,\nUnless he live until he be a man.\n\nBASSANIO:\nSweet doctor, you shall be my bed-fellow:\nWhen I am absent, then lie with my wife.\n\nANTONIO:\nSweet lady, you have given me life and living;\nFor here I read for certain that my ships\nAre safely come to road.\n\nPORTIA:\nHow now, Lorenzo!\nMy clerk hath some good comforts too for you.\n\nNERISSA:\nAy, and I'll give them him without a fee.\nThere do I give to you and Jessica,\nFrom the rich Jew, a special deed of gift,\nAfter his death, of all he dies possess'd of.\n\nLORENZO:\nFair ladies, you drop manna in the way\nOf starved people.\n\nPORTIA:\nIt is almost morning,\nAnd yet I am sure you are not satisfied\nOf these events at full. Let us go in;\nAnd charge us there upon inter'gatories,\nAnd we will answer all things faithfully.\n\nGRATIANO:\nLet it be so: the first inter'gatory\nThat my Nerissa shall be sworn on is,\nWhether till the next night she had rather stay,\nOr go to bed now, being two hours to day:\nBut were the day come, I should wish it dark,\nThat I were couching with the doctor's clerk.\nWell, while I live I'll fear no other thing\nSo sore as keeping safe Nerissa's ring.\n\nFirst Witch:\nWhen shall we three meet again\nIn thunder, lightning, or in rain?\n\nSecond Witch:\nWhen the hurlyburly's done,\nWhen the battle's lost and won.\n\nThird Witch:\nThat will be ere the set of sun.\n\nFirst Witch:\nWhere the place?\n\nSecond Witch:\nUpon the heath.\n\nThird Witch:\nThere to meet with Macbeth.\n\nFirst Witch:\nI come, Graymalkin!\n\nSecond Witch:\nPaddock calls.\n\nThird Witch:\nAnon.\n\nALL:\nFair is foul, and foul is fair:\nHover through the fog and filthy air.\n\nDUNCAN:\nWhat bloody man is that? He can report,\nAs seemeth by his plight, of the revolt\nThe newest state.\n\nMALCOLM:\nThis is the sergeant\nWho like a good and hardy soldier fought\n'Gainst my captivity. Hail, brave friend!\nSay to the king the knowledge of the broil\nAs thou didst leave it.\n\nSergeant:\nDoubtful it stood;\nAs two spent swimmers, that do cling together\nAnd choke their art. The merciless Macdonwald--\nWorthy to be a rebel, for to that\nThe multiplying villanies of nature\nDo swarm upon him--from the western isles\nOf kerns and gallowglasses is supplied;\nAnd fortune, on his damned quarrel smiling,\nShow'd like a rebel's whore: but all's too weak:\nFor brave Macbeth--well he deserves that name--\nDisdaining fortune, with his brandish'd steel,\nWhich smoked with bloody execution,\nLike valour's minion carved out his passage\nTill he faced the slave;\nWhich ne'er shook hands, nor bade farewell to him,\nTill he unseam'd him from the nave to the chaps,\nAnd fix'd his head upon our battlements.\n\nDUNCAN:\nO valiant cousin! worthy gentleman!\n\nSergeant:\nAs whence the sun 'gins his reflection\nShipwrecking storms and direful thunders break,\nSo from that spring whence comfort seem'd to come\nDiscomfort swells. Mark, king of Scotland, mark:\nNo sooner justice had with valour arm'd\nCompell'd these skipping kerns to trust their heels,\nBut the Norweyan lord surveying vantage,\nWith furbish'd arms and new supplies of men\nBegan a fresh assault.\n\nDUNCAN:\nDismay'd not this\nOur captains, Macbeth and Banquo?\n\nSergeant:\nYes;\nAs sparrows eagles, or the hare the lion.\nIf I say sooth, I must report they were\nAs cannons overcharged with double cracks, so they\nDoubly redoubled strokes upon the foe:\nExcept they meant to bathe in reeking wounds,\nOr memorise another Golgotha,\nI cannot tell.\nBut I am faint, my gashes cry for help.\n\nDUNCAN:\nSo well thy words become thee as thy wounds;\nThey smack of honour both. Go get him surgeons.\nWho comes here?\n\nMALCOLM:\nThe worthy thane of Ross.\n\nLENNOX:\nWhat a haste looks through his eyes! So should he look\nThat seems to speak things strange.\n\nROSS:\nGod save the king!\n\nDUNCAN:\nWhence camest thou, worthy thane?\n\nROSS:\nFrom Fife, great king;\nWhere the Norweyan banners flout the sky\nAnd fan our people cold. Norway himself,\nWith terrible numbers,\nAssisted by that most disloyal traitor\nThe thane of Cawdor, began a dismal conflict;\nTill that Bellona's bridegroom, lapp'd in proof,\nConfronted him with self-comparisons,\nPoint against point rebellious, arm 'gainst arm.\nCurbing his lavish spirit: and, to conclude,\nThe victory fell on us.\n\nDUNCAN:\nGreat happiness!\n\nROSS:\nThat now\nSweno, the Norways' king, craves composition:\nNor would we deign him burial of his men\nTill he disbursed at Saint Colme's inch\nTen thousand dollars to our general use.\n\nDUNCAN:\nNo more that thane of Cawdor shall deceive\nOur bosom interest: go pronounce his present death,\nAnd with his former title greet Macbeth.\n\nROSS:\nI'll see it done.\n\nDUNCAN:\nWhat he hath lost noble Macbeth hath won.\n\nFirst Witch:\nWhere hast thou been, sister?\n\nSecond Witch:\nKilling swine.\n\nThird Witch:\nSister, where thou?\n\nFirst Witch:\nA sailor's wife had chestnuts in her lap,\nAnd munch'd, and munch'd, and munch'd:--\n'Give me,' quoth I:\n'Aroint thee, witch!' the rump-fed ronyon cries.\nHer husband's to Aleppo gone, master o' the Tiger:\nBut in a sieve I'll thither sail,\nAnd, like a rat without a tail,\nI'll do, I'll do, and I'll do.\n\nSecond Witch:\nI'll give thee a wind.\n\nFirst Witch:\nThou'rt kind.\n\nThird Witch:\nAnd I another.\n\nFirst Witch:\nI myself have all the other,\nAnd the very ports they blow,\nAll the quarters that they know\nI' the shipman's card.\nI will drain him dry as hay:\nSleep shall neither night nor day\nHang upon his pent-house lid;\nHe shall live a man forbid:\nWeary se'nnights nine times nine\nShall he dwindle, peak and pine:\nThough his bark cannot be lost,\nYet it shall be tempest-tost.\nLook what I have.\n\nSecond Witch:\nShow me, show me.\n\nFirst Witch:\nHere I have a pilot's thumb,\nWreck'd as homeward he did come.\n\nThird Witch:\nA drum, a drum!\nMacbeth doth come.\n\nALL:\nThe weird sisters, hand in hand,\nPosters of the sea and land,\nThus do go about, about:\nThrice to thine and thrice to mine\nAnd thrice again, to make up nine.\nPeace! the charm's wound up.\n\nMACBETH:\nSo foul and fair a day I have not seen.\n\nBANQUO:\nHow far is't call'd to Forres? What are these\nSo wither'd and so wild in their attire,\nThat look not like the inhabitants o' the earth,\nAnd yet are on't? Live you? or are you aught\nThat man may question? You seem to understand me,\nBy each at once her chappy finger laying\nUpon her skinny lips: you should be women,\nAnd yet your beards forbid me to interpret\nThat you are so.\n\nMACBETH:\nSpeak, if you can: what are you?\n\nFirst Witch:\nAll hail, Macbeth! hail to thee, thane of Glamis!\n\nSecond Witch:\nAll hail, Macbeth, hail to thee, thane of Cawdor!\n\nThird Witch:\nAll hail, Macbeth, thou shalt be king hereafter!\n\nBANQUO:\nGood sir, why do you start; and seem to fear\nThings that do sound so fair? I' the name of truth,\nAre ye fantastical, or that indeed\nWhich outwardly ye show? My noble partner\nYou greet with present grace and great prediction\nOf noble having and of royal hope,\nThat he seems rapt withal: to me you speak not.\nIf you can look into the seeds of time,\nAnd say which grain will grow and which will not,\nSpeak then to me, who neither beg nor fear\nYour favours nor your hate.\n\nFirst Witch:\nHail!\n\nSecond Witch:\nHail!\n\nThird Witch:\nHail!\n\nFirst Witch:\nLesser than Macbeth, and greater.\n\nSecond Witch:\nNot so happy, yet much happier.\n\nThird Witch:\nThou shalt get kings, though thou be none:\nSo all hail, Macbeth and Banquo!\n\nFirst Witch:\nBanquo and Macbeth, all hail!\n\nMACBETH:\nStay, you imperfect speakers, tell me more:\nBy Sinel's death I know I am thane of Glamis;\nBut how of Cawdor? the thane of Cawdor lives,\nA prosperous gentleman; and to be king\nStands not within the prospect of belief,\nNo more than to be Cawdor. Say from whence\nYou owe this strange intelligence? or why\nUpon this blasted heath you stop our way\nWith such prophetic greeting? Speak, I charge you.\n\nBANQUO:\nThe earth hath bubbles, as the water has,\nAnd these are of them. Whither are they vanish'd?\n\nMACBETH:\nInto the air; and what seem'd corporal melted\nAs breath into the wind. Would they had stay'd!\n\nBANQUO:\nWere such things here as we do speak about?\nOr have we eaten on the insane root\nThat takes the reason prisoner?\n\nMACBETH:\nYour children shall be kings.\n\nBANQUO:\nYou shall be king.\n\nMACBETH:\nAnd thane of Cawdor too: went it not so?\n\nBANQUO:\nTo the selfsame tune and words. Who's here?\n\nROSS:\nThe king hath happily received, Macbeth,\nThe news of thy success; and when he reads\nThy personal venture in the rebels' fight,\nHis wonders and his praises do contend\nWhich should be thine or his: silenced with that,\nIn viewing o'er the rest o' the selfsame day,\nHe finds thee in the stout Norweyan ranks,\nNothing afeard of what thyself didst make,\nStrange images of death. As thick as hail\nCame post with post; and every one did bear\nThy praises in his kingdom's great defence,\nAnd pour'd them down before him.\n\nANGUS:\nWe are sent\nTo give thee from our royal master thanks;\nOnly to herald thee into his sight,\nNot pay thee.\n\nROSS:\nAnd, for an earnest of a greater honour,\nHe bade me, from him, call thee thane of Cawdor:\nIn which addition, hail, most worthy thane!\nFor it is thine.\n\nBANQUO:\nWhat, can the devil speak true?\n\nMACBETH:\nThe thane of Cawdor lives: why do you dress me\nIn borrow'd robes?\n\nANGUS:\nWho was the thane lives yet;\nBut under heavy judgment bears that life\nWhich he deserves to lose. Whether he was combined\nWith those of Norway, or did line the rebel\nWith hidden help and vantage, or that with both\nHe labour'd in his country's wreck, I know not;\nBut treasons capital, confess'd and proved,\nHave overthrown him.\n\nMACBETH:\n\nBANQUO:\nThat trusted home\nMight yet enkindle you unto the crown,\nBesides the thane of Cawdor. But 'tis strange:\nAnd oftentimes, to win us to our harm,\nThe instruments of darkness tell us truths,\nWin us with honest trifles, to betray's\nIn deepest consequence.\nCousins, a word, I pray you.\n\nMACBETH:\n\nBANQUO:\nLook, how our partner's rapt.\n\nMACBETH:\n\nBANQUO:\nNew horrors come upon him,\nLike our strange garments, cleave not to their mould\nBut with the aid of use.\n\nMACBETH:\n\nBANQUO:\nWorthy Macbeth, we stay upon your leisure.\n\nMACBETH:\nGive me your favour: my dull brain was wrought\nWith things forgotten. Kind gentlemen, your pains\nAre register'd where every day I turn\nThe leaf to read them. Let us toward the king.\nThink upon what hath chanced, and, at more time,\nThe interim having weigh'd it, let us speak\nOur free hearts each to other.\n\nBANQUO:\nVery gladly.\n\nMACBETH:\nTill then, enough. Come, friends.\n\nDUNCAN:\nIs execution done on Cawdor? Are not\nThose in commission yet return'd?\n\nMALCOLM:\nMy liege,\nThey are not yet come back. But I have spoke\nWith one that saw him die: who did report\nThat very frankly he confess'd his treasons,\nImplored your highness' pardon and set forth\nA deep repentance: nothing in his life\nBecame him like the leaving it; he died\nAs one that had been studied in his death\nTo throw away the dearest thing he owed,\nAs 'twere a careless trifle.\n\nDUNCAN:\nThere's no art\nTo find the mind's construction in the face:\nHe was a gentleman on whom I built\nAn absolute trust.\nO worthiest cousin!\nThe sin of my ingratitude even now\nWas heavy on me: thou art so far before\nThat swiftest wing of recompense is slow\nTo overtake thee. Would thou hadst less deserved,\nThat the proportion both of thanks and payment\nMight have been mine! only I have left to say,\nMore is thy due than more than all can pay.\n\nMACBETH:\nThe service and the loyalty I owe,\nIn doing it, pays itself. Your highness' part\nIs to receive our duties; and our duties\nAre to your throne and state children and servants,\nWhich do but what they should, by doing every thing\nSafe toward your love and honour.\n\nDUNCAN:\nWelcome hither:\nI have begun to plant thee, and will labour\nTo make thee full of growing. Noble Banquo,\nThat hast no less deserved, nor must be known\nNo less to have done so, let me enfold thee\nAnd hold thee to my heart.\n\nBANQUO:\nThere if I grow,\nThe harvest is your own.\n\nDUNCAN:\nMy plenteous joys,\nWanton in fulness, seek to hide themselves\nIn drops of sorrow. Sons, kinsmen, thanes,\nAnd you whose places are the nearest, know\nWe will establish our estate upon\nOur eldest, Malcolm, whom we name hereafter\nThe Prince of Cumberland; which honour must\nNot unaccompanied invest him only,\nBut signs of nobleness, like stars, shall shine\nOn all deservers. From hence to Inverness,\nAnd bind us further to you.\n\nMACBETH:\nThe rest is labour, which is not used for you:\nI'll be myself the harbinger and make joyful\nThe hearing of my wife with your approach;\nSo humbly take my leave.\n\nDUNCAN:\nMy worthy Cawdor!\n\nMACBETH:\n\nDUNCAN:\nTrue, worthy Banquo; he is full so valiant,\nAnd in his commendations I am fed;\nIt is a banquet to me. Let's after him,\nWhose care is gone before to bid us welcome:\nIt is a peerless kinsman.\n\nLADY MACBETH:\n'They met me in the day of success: and I have\nlearned by the perfectest report, they have more in\nthem than mortal knowledge. When I burned in desire\nto question them further, they made themselves air,\ninto which they vanished. Whiles I stood rapt in\nthe wonder of it, came missives from the king, who\nall-hailed me 'Thane of Cawdor;' by which title,\nbefore, these weird sisters saluted me, and referred\nme to the coming on of time, with 'Hail, king that\nshalt be!' This have I thought good to deliver\nthee, my dearest partner of greatness, that thou\nmightst not lose the dues of rejoicing, by being\nignorant of what greatness is promised thee. Lay it\nto thy heart, and farewell.'\nGlamis thou art, and Cawdor; and shalt be\nWhat thou art promised: yet do I fear thy nature;\nIt is too full o' the milk of human kindness\nTo catch the nearest way: thou wouldst be great;\nArt not without ambition, but without\nThe illness should attend it: what thou wouldst highly,\nThat wouldst thou holily; wouldst not play false,\nAnd yet wouldst wrongly win: thou'ldst have, great Glamis,\nThat which cries 'Thus thou must do, if thou have it;\nAnd that which rather thou dost fear to do\nThan wishest should be undone.' Hie thee hither,\nThat I may pour my spirits in thine ear;\nAnd chastise with the valour of my tongue\nAll that impedes thee from the golden round,\nWhich fate and metaphysical aid doth seem\nTo have thee crown'd withal.\nWhat is your tidings?\n\nMessenger:\nThe king comes here to-night.\n\nLADY MACBETH:\nThou'rt mad to say it:\nIs not thy master with him? who, were't so,\nWould have inform'd for preparation.\n\nMessenger:\nSo please you, it is true: our thane is coming:\nOne of my fellows had the speed of him,\nWho, almost dead for breath, had scarcely more\nThan would make up his message.\n\nLADY MACBETH:\nGive him tending;\nHe brings great news.\nThe raven himself is hoarse\nThat croaks the fatal entrance of Duncan\nUnder my battlements. Come, you spirits\nThat tend on mortal thoughts, unsex me here,\nAnd fill me from the crown to the toe top-full\nOf direst cruelty! make thick my blood;\nStop up the access and passage to remorse,\nThat no compunctious visitings of nature\nShake my fell purpose, nor keep peace between\nThe effect and it! Come to my woman's breasts,\nAnd take my milk for gall, you murdering ministers,\nWherever in your sightless substances\nYou wait on nature's mischief! Come, thick night,\nAnd pall thee in the dunnest smoke of hell,\nThat my keen knife see not the wound it makes,\nNor heaven peep through the blanket of the dark,\nTo cry 'Hold, hold!'\nGreat Glamis! worthy Cawdor!\nGreater than both, by the all-hail hereafter!\nThy letters have transported me beyond\nThis ignorant present, and I feel now\nThe future in the instant.\n\nMACBETH:\nMy dearest love,\nDuncan comes here to-night.\n\nLADY MACBETH:\nAnd when goes hence?\n\nMACBETH:\nTo-morrow, as he purposes.\n\nLADY MACBETH:\nO, never\nShall sun that morrow see!\nYour face, my thane, is as a book where men\nMay read strange matters. To beguile the time,\nLook like the time; bear welcome in your eye,\nYour hand, your tongue: look like the innocent flower,\nBut be the serpent under't. He that's coming\nMust be provided for: and you shall put\nThis night's great business into my dispatch;\nWhich shall to all our nights and days to come\nGive solely sovereign sway and masterdom.\n\nMACBETH:\nWe will speak further.\n\nLADY MACBETH:\nOnly look up clear;\nTo alter favour ever is to fear:\nLeave all the rest to me.\n\nDUNCAN:\nThis castle hath a pleasant seat; the air\nNimbly and sweetly recommends itself\nUnto our gentle senses.\n\nBANQUO:\nThis guest of summer,\nThe temple-haunting martlet, does approve,\nBy his loved mansionry, that the heaven's breath\nSmells wooingly here: no jutty, frieze,\nButtress, nor coign of vantage, but this bird\nHath made his pendent bed and procreant cradle:\nWhere they most breed and haunt, I have observed,\nThe air is delicate.\n\nDUNCAN:\nSee, see, our honour'd hostess!\nThe love that follows us sometime is our trouble,\nWhich still we thank as love. Herein I teach you\nHow you shall bid God 'ild us for your pains,\nAnd thank us for your trouble.\n\nLADY MACBETH:\nAll our service\nIn every point twice done and then done double\nWere poor and single business to contend\nAgainst those honours deep and broad wherewith\nYour majesty loads our house: for those of old,\nAnd the late dignities heap'd up to them,\nWe rest your hermits.\n\nDUNCAN:\nWhere's the thane of Cawdor?\nWe coursed him at the heels, and had a purpose\nTo be his purveyor: but he rides well;\nAnd his great love, sharp as his spur, hath holp him\nTo his home before us. Fair and noble hostess,\nWe are your guest to-night.\n\nLADY MACBETH:\nYour servants ever\nHave theirs, themselves and what is theirs, in compt,\nTo make their audit at your highness' pleasure,\nStill to return your own.\n\nDUNCAN:\nGive me your hand;\nConduct me to mine host: we love him highly,\nAnd shall continue our graces towards him.\nBy your leave, hostess.\n\nMACBETH:\nIf it were done when 'tis done, then 'twere well\nIt were done quickly: if the assassination\nCould trammel up the consequence, and catch\nWith his surcease success; that but this blow\nMight be the be-all and the end-all here,\nBut here, upon this bank and shoal of time,\nWe'ld jump the life to come. But in these cases\nWe still have judgment here; that we but teach\nBloody instructions, which, being taught, return\nTo plague the inventor: this even-handed justice\nCommends the ingredients of our poison'd chalice\nTo our own lips. He's here in double trust;\nFirst, as I am his kinsman and his subject,\nStrong both against the deed; then, as his host,\nWho should against his murderer shut the door,\nNot bear the knife myself. Besides, this Duncan\nHath borne his faculties so meek, hath been\nSo clear in his great office, that his virtues\nWill plead like angels, trumpet-tongued, against\nThe deep damnation of his taking-off;\nAnd pity, like a naked new-born babe,\nStriding the blast, or heaven's cherubim, horsed\nUpon the sightless couriers of the air,\nShall blow the horrid deed in every eye,\nThat tears shall drown the wind. I have no spur\nTo prick the sides of my intent, but only\nVaulting ambition, which o'erleaps itself\nAnd falls on the other.\nHow now! what news?\n\nLADY MACBETH:\nHe has almost supp'd: why have you left the chamber?\n\nMACBETH:\nHath he ask'd for me?\n\nLADY MACBETH:\nKnow you not he has?\n\nMACBETH:\nWe will proceed no further in this business:\nHe hath honour'd me of late; and I have bought\nGolden opinions from all sorts of people,\nWhich would be worn now in their newest gloss,\nNot cast aside so soon.\n\nLADY MACBETH:\nWas the hope drunk\nWherein you dress'd yourself? hath it slept since?\nAnd wakes it now, to look so green and pale\nAt what it did so freely? From this time\nSuch I account thy love. Art thou afeard\nTo be the same in thine own act and valour\nAs thou art in desire? Wouldst thou have that\nWhich thou esteem'st the ornament of life,\nAnd live a coward in thine own esteem,\nLetting 'I dare not' wait upon 'I would,'\nLike the poor cat i' the adage?\n\nMACBETH:\nPrithee, peace:\nI dare do all that may become a man;\nWho dares do more is none.\n\nLADY MACBETH:\nWhat beast was't, then,\nThat made you break this enterprise to me?\nWhen you durst do it, then you were a man;\nAnd, to be more than what you were, you would\nBe so much more the man. Nor time nor place\nDid then adhere, and yet you would make both:\nThey have made themselves, and that their fitness now\nDoes unmake you. I have given suck, and know\nHow tender 'tis to love the babe that milks me:\nI would, while it was smiling in my face,\nHave pluck'd my nipple from his boneless gums,\nAnd dash'd the brains out, had I so sworn as you\nHave done to this.\n\nMACBETH:\nIf we should fail?\n\nLADY MACBETH:\nWe fail!\nBut screw your courage to the sticking-place,\nAnd we'll not fail. When Duncan is asleep--\nWhereto the rather shall his day's hard journey\nSoundly invite him--his two chamberlains\nWill I with wine and wassail so convince\nThat memory, the warder of the brain,\nShall be a fume, and the receipt of reason\nA limbeck only: when in swinish sleep\nTheir drenched natures lie as in a death,\nWhat cannot you and I perform upon\nThe unguarded Duncan? what not put upon\nHis spongy officers, who shall bear the guilt\nOf our great quell?\n\nMACBETH:\nBring forth men-children only;\nFor thy undaunted mettle should compose\nNothing but males. Will it not be received,\nWhen we have mark'd with blood those sleepy two\nOf his own chamber and used their very daggers,\nThat they have done't?\n\nLADY MACBETH:\nWho dares receive it other,\nAs we shall make our griefs and clamour roar\nUpon his death?\n\nMACBETH:\nI am settled, and bend up\nEach corporal agent to this terrible feat.\nAway, and mock the time with fairest show:\nFalse face must hide what the false heart doth know.\n\nBANQUO:\nHow goes the night, boy?\n\nFLEANCE:\nThe moon is down; I have not heard the clock.\n\nBANQUO:\nAnd she goes down at twelve.\n\nFLEANCE:\nI take't, 'tis later, sir.\n\nBANQUO:\nHold, take my sword. There's husbandry in heaven;\nTheir candles are all out. Take thee that too.\nA heavy summons lies like lead upon me,\nAnd yet I would not sleep: merciful powers,\nRestrain in me the cursed thoughts that nature\nGives way to in repose!\nGive me my sword.\nWho's there?\n\nMACBETH:\nA friend.\n\nBANQUO:\nWhat, sir, not yet at rest? The king's a-bed:\nHe hath been in unusual pleasure, and\nSent forth great largess to your offices.\nThis diamond he greets your wife withal,\nBy the name of most kind hostess; and shut up\nIn measureless content.\n\nMACBETH:\nBeing unprepared,\nOur will became the servant to defect;\nWhich else should free have wrought.\n\nBANQUO:\nAll's well.\nI dreamt last night of the three weird sisters:\nTo you they have show'd some truth.\n\nMACBETH:\nI think not of them:\nYet, when we can entreat an hour to serve,\nWe would spend it in some words upon that business,\nIf you would grant the time.\n\nBANQUO:\nAt your kind'st leisure.\n\nMACBETH:\nIf you shall cleave to my consent, when 'tis,\nIt shall make honour for you.\n\nBANQUO:\nSo I lose none\nIn seeking to augment it, but still keep\nMy bosom franchised and allegiance clear,\nI shall be counsell'd.\n\nMACBETH:\nGood repose the while!\n\nBANQUO:\nThanks, sir: the like to you!\n\nMACBETH:\nGo bid thy mistress, when my drink is ready,\nShe strike upon the bell. Get thee to bed.\nIs this a dagger which I see before me,\nThe handle toward my hand? Come, let me clutch thee.\nI have thee not, and yet I see thee still.\nArt thou not, fatal vision, sensible\nTo feeling as to sight? or art thou but\nA dagger of the mind, a false creation,\nProceeding from the heat-oppressed brain?\nI see thee yet, in form as palpable\nAs this which now I draw.\nThou marshall'st me the way that I was going;\nAnd such an instrument I was to use.\nMine eyes are made the fools o' the other senses,\nOr else worth all the rest; I see thee still,\nAnd on thy blade and dudgeon gouts of blood,\nWhich was not so before. There's no such thing:\nIt is the bloody business which informs\nThus to mine eyes. Now o'er the one halfworld\nNature seems dead, and wicked dreams abuse\nThe curtain'd sleep; witchcraft celebrates\nPale Hecate's offerings, and wither'd murder,\nAlarum'd by his sentinel, the wolf,\nWhose howl's his watch, thus with his stealthy pace.\nWith Tarquin's ravishing strides, towards his design\nMoves like a ghost. Thou sure and firm-set earth,\nHear not my steps, which way they walk, for fear\nThy very stones prate of my whereabout,\nAnd take the present horror from the time,\nWhich now suits with it. Whiles I threat, he lives:\nWords to the heat of deeds too cold breath gives.\nI go, and it is done; the bell invites me.\nHear it not, Duncan; for it is a knell\nThat summons thee to heaven or to hell.\n\nLADY MACBETH:\nThat which hath made them drunk hath made me bold;\nWhat hath quench'd them hath given me fire.\nHark! Peace!\nIt was the owl that shriek'd, the fatal bellman,\nWhich gives the stern'st good-night. He is about it:\nThe doors are open; and the surfeited grooms\nDo mock their charge with snores: I have drugg'd\ntheir possets,\nThat death and nature do contend about them,\nWhether they live or die.\n\nMACBETH:\n\nLADY MACBETH:\nAlack, I am afraid they have awaked,\nAnd 'tis not done. The attempt and not the deed\nConfounds us. Hark! I laid their daggers ready;\nHe could not miss 'em. Had he not resembled\nMy father as he slept, I had done't.\nMy husband!\n\nMACBETH:\nI have done the deed. Didst thou not hear a noise?\n\nLADY MACBETH:\nI heard the owl scream and the crickets cry.\nDid not you speak?\n\nMACBETH:\nWhen?\n\nLADY MACBETH:\nNow.\n\nMACBETH:\nAs I descended?\n\nLADY MACBETH:\nAy.\n\nMACBETH:\nHark!\nWho lies i' the second chamber?\n\nLADY MACBETH:\nDonalbain.\n\nMACBETH:\nThis is a sorry sight.\n\nLADY MACBETH:\nA foolish thought, to say a sorry sight.\n\nMACBETH:\nThere's one did laugh in's sleep, and one cried\n'Murder!'\nThat they did wake each other: I stood and heard them:\nBut they did say their prayers, and address'd them\nAgain to sleep.\n\nLADY MACBETH:\nThere are two lodged together.\n\nMACBETH:\nOne cried 'God bless us!' and 'Amen' the other;\nAs they had seen me with these hangman's hands.\nListening their fear, I could not say 'Amen,'\nWhen they did say 'God bless us!'\n\nLADY MACBETH:\nConsider it not so deeply.\n\nMACBETH:\nBut wherefore could not I pronounce 'Amen'?\nI had most need of blessing, and 'Amen'\nStuck in my throat.\n\nLADY MACBETH:\nThese deeds must not be thought\nAfter these ways; so, it will make us mad.\n\nMACBETH:\nMethought I heard a voice cry 'Sleep no more!\nMacbeth does murder sleep', the innocent sleep,\nSleep that knits up the ravell'd sleeve of care,\nThe death of each day's life, sore labour's bath,\nBalm of hurt minds, great nature's second course,\nChief nourisher in life's feast,--\n\nLADY MACBETH:\nWhat do you mean?\n\nMACBETH:\nStill it cried 'Sleep no more!' to all the house:\n'Glamis hath murder'd sleep, and therefore Cawdor\nShall sleep no more; Macbeth shall sleep no more.'\n\nLADY MACBETH:\nWho was it that thus cried? Why, worthy thane,\nYou do unbend your noble strength, to think\nSo brainsickly of things. Go get some water,\nAnd wash this filthy witness from your hand.\nWhy did you bring these daggers from the place?\nThey must lie there: go carry them; and smear\nThe sleepy grooms with blood.\n\nMACBETH:\nI'll go no more:\nI am afraid to think what I have done;\nLook on't again I dare not.\n\nLADY MACBETH:\nInfirm of purpose!\nGive me the daggers: the sleeping and the dead\nAre but as pictures: 'tis the eye of childhood\nThat fears a painted devil. If he do bleed,\nI'll gild the faces of the grooms withal;\nFor it must seem their guilt.\n\nMACBETH:\nWhence is that knocking?\nHow is't with me, when every noise appals me?\nWhat hands are here? ha! they pluck out mine eyes.\nWill all great Neptune's ocean wash this blood\nClean from my hand? No, this my hand will rather\nThe multitudinous seas in incarnadine,\nMaking the green one red.\n\nLADY MACBETH:\nMy hands are of your colour; but I shame\nTo wear a heart so white.\nI hear a knocking\nAt the south entry: retire we to our chamber;\nA little water clears us of this deed:\nHow easy is it, then! Your constancy\nHath left you unattended.\nHark! more knocking.\nGet on your nightgown, lest occasion call us,\nAnd show us to be watchers. Be not lost\nSo poorly in your thoughts.\n\nMACBETH:\nTo know my deed, 'twere best not know myself.\nWake Duncan with thy knocking! I would thou couldst!\n\nPorter:\nHere's a knocking indeed! If a\nman were porter of hell-gate, he should have\nold turning the key.\nKnock,\nknock, knock! Who's there, i' the name of\nBeelzebub? Here's a farmer, that hanged\nhimself on the expectation of plenty: come in\ntime; have napkins enow about you; here\nyou'll sweat for't.\nKnock,\nknock! Who's there, in the other devil's\nname? Faith, here's an equivocator, that could\nswear in both the scales against either scale;\nwho committed treason enough for God's sake,\nyet could not equivocate to heaven: O, come\nin, equivocator.\nKnock,\nknock, knock! Who's there? Faith, here's an\nEnglish tailor come hither, for stealing out of\na French hose: come in, tailor; here you may\nroast your goose.\nKnock,\nknock; never at quiet! What are you? But\nthis place is too cold for hell. I'll devil-porter\nit no further: I had thought to have let in\nsome of all professions that go the primrose\nway to the everlasting bonfire.\nAnon, anon! I pray you, remember the porter.\n\nMACDUFF:\nWas it so late, friend, ere you went to bed,\nThat you do lie so late?\n\nPorter:\n'Faith sir, we were carousing till the\nsecond cock: and drink, sir, is a great\nprovoker of three things.\n\nMACDUFF:\nWhat three things does drink especially provoke?\n\nPorter:\nMarry, sir, nose-painting, sleep, and\nurine. Lechery, sir, it provokes, and unprovokes;\nit provokes the desire, but it takes\naway the performance: therefore, much drink\nmay be said to be an equivocator with lechery:\nit makes him, and it mars him; it sets\nhim on, and it takes him off; it persuades him,\nand disheartens him; makes him stand to, and\nnot stand to; in conclusion, equivocates him\nin a sleep, and, giving him the lie, leaves him.\n\nMACDUFF:\nI believe drink gave thee the lie last night.\n\nPorter:\nThat it did, sir, i' the very throat on\nme: but I requited him for his lie; and, I\nthink, being too strong for him, though he took\nup my legs sometime, yet I made a shift to cast\nhim.\n\nMACDUFF:\nIs thy master stirring?\nOur knocking has awaked him; here he comes.\n\nLENNOX:\nGood morrow, noble sir.\n\nMACBETH:\nGood morrow, both.\n\nMACDUFF:\nIs the king stirring, worthy thane?\n\nMACBETH:\nNot yet.\n\nMACDUFF:\nHe did command me to call timely on him:\nI have almost slipp'd the hour.\n\nMACBETH:\nI'll bring you to him.\n\nMACDUFF:\nI know this is a joyful trouble to you;\nBut yet 'tis one.\n\nMACBETH:\nThe labour we delight in physics pain.\nThis is the door.\n\nMACDUFF:\nI'll make so bold to call,\nFor 'tis my limited service.\n\nLENNOX:\nGoes the king hence to-day?\n\nMACBETH:\nHe does: he did appoint so.\n\nLENNOX:\nThe night has been unruly: where we lay,\nOur chimneys were blown down; and, as they say,\nLamentings heard i' the air; strange screams of death,\nAnd prophesying with accents terrible\nOf dire combustion and confused events\nNew hatch'd to the woeful time: the obscure bird\nClamour'd the livelong night: some say, the earth\nWas feverous and did shake.\n\nMACBETH:\n'Twas a rough night.\n\nLENNOX:\nMy young remembrance cannot parallel\nA fellow to it.\n\nMACDUFF:\nO horror, horror, horror! Tongue nor heart\nCannot conceive nor name thee!\n\nMACBETH:\nWhat's the matter.\n\nMACDUFF:\nConfusion now hath made his masterpiece!\nMost sacrilegious murder hath broke ope\nThe Lord's anointed temple, and stole thence\nThe life o' the building!\n\nMACBETH:\nWhat is 't you say? the life?\n\nLENNOX:\nMean you his majesty?\n\nMACDUFF:\nApproach the chamber, and destroy your sight\nWith a new Gorgon: do not bid me speak;\nSee, and then speak yourselves.\nAwake, awake!\nRing the alarum-bell. Murder and treason!\nBanquo and Donalbain! Malcolm! awake!\nShake off this downy sleep, death's counterfeit,\nAnd look on death itself! up, up, and see\nThe great doom's image! Malcolm! Banquo!\nAs from your graves rise up, and walk like sprites,\nTo countenance this horror! Ring the bell.\n\nLADY MACBETH:\nWhat's the business,\nThat such a hideous trumpet calls to parley\nThe sleepers of the house? speak, speak!\n\nMACDUFF:\nO gentle lady,\n'Tis not for you to hear what I can speak:\nThe repetition, in a woman's ear,\nWould murder as it fell.\nO Banquo, Banquo,\nOur royal master 's murder'd!\n\nLADY MACBETH:\nWoe, alas!\nWhat, in our house?\n\nBANQUO:\nToo cruel any where.\nDear Duff, I prithee, contradict thyself,\nAnd say it is not so.\n\nMACBETH:\nHad I but died an hour before this chance,\nI had lived a blessed time; for, from this instant,\nThere 's nothing serious in mortality:\nAll is but toys: renown and grace is dead;\nThe wine of life is drawn, and the mere lees\nIs left this vault to brag of.\n\nDONALBAIN:\nWhat is amiss?\n\nMACBETH:\nYou are, and do not know't:\nThe spring, the head, the fountain of your blood\nIs stopp'd; the very source of it is stopp'd.\n\nMACDUFF:\nYour royal father 's murder'd.\n\nMALCOLM:\nO, by whom?\n\nLENNOX:\nThose of his chamber, as it seem'd, had done 't:\nTheir hands and faces were an badged with blood;\nSo were their daggers, which unwiped we found\nUpon their pillows:\nThey stared, and were distracted; no man's life\nWas to be trusted with them.\n\nMACBETH:\nO, yet I do repent me of my fury,\nThat I did kill them.\n\nMACDUFF:\nWherefore did you so?\n\nMACBETH:\nWho can be wise, amazed, temperate and furious,\nLoyal and neutral, in a moment? No man:\nThe expedition my violent love\nOutrun the pauser, reason. Here lay Duncan,\nHis silver skin laced with his golden blood;\nAnd his gash'd stabs look'd like a breach in nature\nFor ruin's wasteful entrance: there, the murderers,\nSteep'd in the colours of their trade, their daggers\nUnmannerly breech'd with gore: who could refrain,\nThat had a heart to love, and in that heart\nCourage to make 's love known?\n\nLADY MACBETH:\nHelp me hence, ho!\n\nMACDUFF:\nLook to the lady.\n\nMALCOLM:\n\nDONALBAIN:\n\nMALCOLM:\n\nBANQUO:\nLook to the lady:\nAnd when we have our naked frailties hid,\nThat suffer in exposure, let us meet,\nAnd question this most bloody piece of work,\nTo know it further. Fears and scruples shake us:\nIn the great hand of God I stand; and thence\nAgainst the undivulged pretence I fight\nOf treasonous malice.\n\nMACDUFF:\nAnd so do I.\n\nALL:\nSo all.\n\nMACBETH:\nLet's briefly put on manly readiness,\nAnd meet i' the hall together.\n\nALL:\nWell contented.\n\nMALCOLM:\nWhat will you do? Let's not consort with them:\nTo show an unfelt sorrow is an office\nWhich the false man does easy. I'll to England.\n\nDONALBAIN:\nTo Ireland, I; our separated fortune\nShall keep us both the safer: where we are,\nThere's daggers in men's smiles: the near in blood,\nThe nearer bloody.\n\nMALCOLM:\nThis murderous shaft that's shot\nHath not yet lighted, and our safest way\nIs to avoid the aim. Therefore, to horse;\nAnd let us not be dainty of leave-taking,\nBut shift away: there's warrant in that theft\nWhich steals itself, when there's no mercy left.\n\nOld Man:\nThreescore and ten I can remember well:\nWithin the volume of which time I have seen\nHours dreadful and things strange; but this sore night\nHath trifled former knowings.\n\nROSS:\nAh, good father,\nThou seest, the heavens, as troubled with man's act,\nThreaten his bloody stage: by the clock, 'tis day,\nAnd yet dark night strangles the travelling lamp:\nIs't night's predominance, or the day's shame,\nThat darkness does the face of earth entomb,\nWhen living light should kiss it?\n\nOld Man:\n'Tis unnatural,\nEven like the deed that's done. On Tuesday last,\nA falcon, towering in her pride of place,\nWas by a mousing owl hawk'd at and kill'd.\n\nROSS:\nAnd Duncan's horses--a thing most strange and certain--\nBeauteous and swift, the minions of their race,\nTurn'd wild in nature, broke their stalls, flung out,\nContending 'gainst obedience, as they would make\nWar with mankind.\n\nOld Man:\n'Tis said they eat each other.\n\nROSS:\nThey did so, to the amazement of mine eyes\nThat look'd upon't. Here comes the good Macduff.\nHow goes the world, sir, now?\n\nMACDUFF:\nWhy, see you not?\n\nROSS:\nIs't known who did this more than bloody deed?\n\nMACDUFF:\nThose that Macbeth hath slain.\n\nROSS:\nAlas, the day!\nWhat good could they pretend?\n\nMACDUFF:\nThey were suborn'd:\nMalcolm and Donalbain, the king's two sons,\nAre stol'n away and fled; which puts upon them\nSuspicion of the deed.\n\nROSS:\n'Gainst nature still!\nThriftless ambition, that wilt ravin up\nThine own life's means! Then 'tis most like\nThe sovereignty will fall upon Macbeth.\n\nMACDUFF:\nHe is already named, and gone to Scone\nTo be invested.\n\nROSS:\nWhere is Duncan's body?\n\nMACDUFF:\nCarried to Colmekill,\nThe sacred storehouse of his predecessors,\nAnd guardian of their bones.\n\nROSS:\nWill you to Scone?\n\nMACDUFF:\nNo, cousin, I'll to Fife.\n\nROSS:\nWell, I will thither.\n\nMACDUFF:\nWell, may you see things well done there: adieu!\nLest our old robes sit easier than our new!\n\nROSS:\nFarewell, father.\n\nOld Man:\nGod's benison go with you; and with those\nThat would make good of bad, and friends of foes!\n\nBANQUO:\nThou hast it now: king, Cawdor, Glamis, all,\nAs the weird women promised, and, I fear,\nThou play'dst most foully for't: yet it was said\nIt should not stand in thy posterity,\nBut that myself should be the root and father\nOf many kings. If there come truth from them--\nAs upon thee, Macbeth, their speeches shine--\nWhy, by the verities on thee made good,\nMay they not be my oracles as well,\nAnd set me up in hope? But hush! no more.\n\nMACBETH:\nHere's our chief guest.\n\nLADY MACBETH:\nIf he had been forgotten,\nIt had been as a gap in our great feast,\nAnd all-thing unbecoming.\n\nMACBETH:\nTo-night we hold a solemn supper sir,\nAnd I'll request your presence.\n\nBANQUO:\nLet your highness\nCommand upon me; to the which my duties\nAre with a most indissoluble tie\nFor ever knit.\n\nMACBETH:\nRide you this afternoon?\n\nBANQUO:\nAy, my good lord.\n\nMACBETH:\nWe should have else desired your good advice,\nWhich still hath been both grave and prosperous,\nIn this day's council; but we'll take to-morrow.\nIs't far you ride?\n\nBANQUO:\nAs far, my lord, as will fill up the time\n'Twixt this and supper: go not my horse the better,\nI must become a borrower of the night\nFor a dark hour or twain.\n\nMACBETH:\nFail not our feast.\n\nBANQUO:\nMy lord, I will not.\n\nMACBETH:\nWe hear, our bloody cousins are bestow'd\nIn England and in Ireland, not confessing\nTheir cruel parricide, filling their hearers\nWith strange invention: but of that to-morrow,\nWhen therewithal we shall have cause of state\nCraving us jointly. Hie you to horse: adieu,\nTill you return at night. Goes Fleance with you?\n\nBANQUO:\nAy, my good lord: our time does call upon 's.\n\nMACBETH:\nI wish your horses swift and sure of foot;\nAnd so I do commend you to their backs. Farewell.\nLet every man be master of his time\nTill seven at night: to make society\nThe sweeter welcome, we will keep ourself\nTill supper-time alone: while then, God be with you!\nSirrah, a word with you: attend those men\nOur pleasure?\n\nATTENDANT:\nThey are, my lord, without the palace gate.\n\nMACBETH:\nBring them before us.\nTo be thus is nothing;\nBut to be safely thus.--Our fears in Banquo\nStick deep; and in his royalty of nature\nReigns that which would be fear'd: 'tis much he dares;\nAnd, to that dauntless temper of his mind,\nHe hath a wisdom that doth guide his valour\nTo act in safety. There is none but he\nWhose being I do fear: and, under him,\nMy Genius is rebuked; as, it is said,\nMark Antony's was by Caesar. He chid the sisters\nWhen first they put the name of king upon me,\nAnd bade them speak to him: then prophet-like\nThey hail'd him father to a line of kings:\nUpon my head they placed a fruitless crown,\nAnd put a barren sceptre in my gripe,\nThence to be wrench'd with an unlineal hand,\nNo son of mine succeeding. If 't be so,\nFor Banquo's issue have I filed my mind;\nFor them the gracious Duncan have I murder'd;\nPut rancours in the vessel of my peace\nOnly for them; and mine eternal jewel\nGiven to the common enemy of man,\nTo make them kings, the seed of Banquo kings!\nRather than so, come fate into the list.\nAnd champion me to the utterance! Who's there!\nNow go to the door, and stay there till we call.\nWas it not yesterday we spoke together?\n\nFirst Murderer:\nIt was, so please your highness.\n\nMACBETH:\nWell then, now\nHave you consider'd of my speeches? Know\nThat it was he in the times past which held you\nSo under fortune, which you thought had been\nOur innocent self: this I made good to you\nIn our last conference, pass'd in probation with you,\nHow you were borne in hand, how cross'd,\nthe instruments,\nWho wrought with them, and all things else that might\nTo half a soul and to a notion crazed\nSay 'Thus did Banquo.'\n\nFirst Murderer:\nYou made it known to us.\n\nMACBETH:\nI did so, and went further, which is now\nOur point of second meeting. Do you find\nYour patience so predominant in your nature\nThat you can let this go? Are you so gospell'd\nTo pray for this good man and for his issue,\nWhose heavy hand hath bow'd you to the grave\nAnd beggar'd yours for ever?\n\nFirst Murderer:\nWe are men, my liege.\n\nMACBETH:\nAy, in the catalogue ye go for men;\nAs hounds and greyhounds, mongrels, spaniels, curs,\nShoughs, water-rugs and demi-wolves, are clept\nAll by the name of dogs: the valued file\nDistinguishes the swift, the slow, the subtle,\nThe housekeeper, the hunter, every one\nAccording to the gift which bounteous nature\nHath in him closed; whereby he does receive\nParticular addition. from the bill\nThat writes them all alike: and so of men.\nNow, if you have a station in the file,\nNot i' the worst rank of manhood, say 't;\nAnd I will put that business in your bosoms,\nWhose execution takes your enemy off,\nGrapples you to the heart and love of us,\nWho wear our health but sickly in his life,\nWhich in his death were perfect.\n\nSecond Murderer:\nI am one, my liege,\nWhom the vile blows and buffets of the world\nHave so incensed that I am reckless what\nI do to spite the world.\n\nFirst Murderer:\nAnd I another\nSo weary with disasters, tugg'd with fortune,\nThat I would set my lie on any chance,\nTo mend it, or be rid on't.\n\nMACBETH:\nBoth of you\nKnow Banquo was your enemy.\n\nBoth Murderers:\nTrue, my lord.\n\nMACBETH:\nSo is he mine; and in such bloody distance,\nThat every minute of his being thrusts\nAgainst my near'st of life: and though I could\nWith barefaced power sweep him from my sight\nAnd bid my will avouch it, yet I must not,\nFor certain friends that are both his and mine,\nWhose loves I may not drop, but wail his fall\nWho I myself struck down; and thence it is,\nThat I to your assistance do make love,\nMasking the business from the common eye\nFor sundry weighty reasons.\n\nSecond Murderer:\nWe shall, my lord,\nPerform what you command us.\n\nFirst Murderer:\nThough our lives--\n\nMACBETH:\nYour spirits shine through you. Within this hour at most\nI will advise you where to plant yourselves;\nAcquaint you with the perfect spy o' the time,\nThe moment on't; for't must be done to-night,\nAnd something from the palace; always thought\nThat I require a clearness: and with him--\nTo leave no rubs nor botches in the work--\nFleance his son, that keeps him company,\nWhose absence is no less material to me\nThan is his father's, must embrace the fate\nOf that dark hour. Resolve yourselves apart:\nI'll come to you anon.\n\nBoth Murderers:\nWe are resolved, my lord.\n\nMACBETH:\nI'll call upon you straight: abide within.\nIt is concluded. Banquo, thy soul's flight,\nIf it find heaven, must find it out to-night.\n\nLADY MACBETH:\nIs Banquo gone from court?\n\nServant:\nAy, madam, but returns again to-night.\n\nLADY MACBETH:\nSay to the king, I would attend his leisure\nFor a few words.\n\nServant:\nMadam, I will.\n\nLADY MACBETH:\nNought's had, all's spent,\nWhere our desire is got without content:\n'Tis safer to be that which we destroy\nThan by destruction dwell in doubtful joy.\nHow now, my lord! why do you keep alone,\nOf sorriest fancies your companions making,\nUsing those thoughts which should indeed have died\nWith them they think on? Things without all remedy\nShould be without regard: what's done is done.\n\nMACBETH:\nWe have scotch'd the snake, not kill'd it:\nShe'll close and be herself, whilst our poor malice\nRemains in danger of her former tooth.\nBut let the frame of things disjoint, both the\nworlds suffer,\nEre we will eat our meal in fear and sleep\nIn the affliction of these terrible dreams\nThat shake us nightly: better be with the dead,\nWhom we, to gain our peace, have sent to peace,\nThan on the torture of the mind to lie\nIn restless ecstasy. Duncan is in his grave;\nAfter life's fitful fever he sleeps well;\nTreason has done his worst: nor steel, nor poison,\nMalice domestic, foreign levy, nothing,\nCan touch him further.\n\nLADY MACBETH:\nCome on;\nGentle my lord, sleek o'er your rugged looks;\nBe bright and jovial among your guests to-night.\n\nMACBETH:\nSo shall I, love; and so, I pray, be you:\nLet your remembrance apply to Banquo;\nPresent him eminence, both with eye and tongue:\nUnsafe the while, that we\nMust lave our honours in these flattering streams,\nAnd make our faces vizards to our hearts,\nDisguising what they are.\n\nLADY MACBETH:\nYou must leave this.\n\nMACBETH:\nO, full of scorpions is my mind, dear wife!\nThou know'st that Banquo, and his Fleance, lives.\n\nLADY MACBETH:\nBut in them nature's copy's not eterne.\n\nMACBETH:\nThere's comfort yet; they are assailable;\nThen be thou jocund: ere the bat hath flown\nHis cloister'd flight, ere to black Hecate's summons\nThe shard-borne beetle with his drowsy hums\nHath rung night's yawning peal, there shall be done\nA deed of dreadful note.\n\nLADY MACBETH:\nWhat's to be done?\n\nMACBETH:\nBe innocent of the knowledge, dearest chuck,\nTill thou applaud the deed. Come, seeling night,\nScarf up the tender eye of pitiful day;\nAnd with thy bloody and invisible hand\nCancel and tear to pieces that great bond\nWhich keeps me pale! Light thickens; and the crow\nMakes wing to the rooky wood:\nGood things of day begin to droop and drowse;\nWhile night's black agents to their preys do rouse.\nThou marvell'st at my words: but hold thee still;\nThings bad begun make strong themselves by ill.\nSo, prithee, go with me.\n\nFirst Murderer:\nBut who did bid thee join with us?\n\nThird Murderer:\nMacbeth.\n\nSecond Murderer:\nHe needs not our mistrust, since he delivers\nOur offices and what we have to do\nTo the direction just.\n\nFirst Murderer:\nThen stand with us.\nThe west yet glimmers with some streaks of day:\nNow spurs the lated traveller apace\nTo gain the timely inn; and near approaches\nThe subject of our watch.\n\nThird Murderer:\nHark! I hear horses.\n\nBANQUO:\n\nSecond Murderer:\nThen 'tis he: the rest\nThat are within the note of expectation\nAlready are i' the court.\n\nFirst Murderer:\nHis horses go about.\n\nThird Murderer:\nAlmost a mile: but he does usually,\nSo all men do, from hence to the palace gate\nMake it their walk.\n\nSecond Murderer:\nA light, a light!\n\nThird Murderer:\n'Tis he.\n\nFirst Murderer:\nStand to't.\n\nBANQUO:\nIt will be rain to-night.\n\nFirst Murderer:\nLet it come down.\n\nBANQUO:\nO, treachery! Fly, good Fleance, fly, fly, fly!\nThou mayst revenge. O slave!\n\nThird Murderer:\nWho did strike out the light?\n\nFirst Murderer:\nWast not the way?\n\nThird Murderer:\nThere's but one down; the son is fled.\n\nSecond Murderer:\nWe have lost\nBest half of our affair.\n\nFirst Murderer:\nWell, let's away, and say how much is done.\n\nMACBETH:\nYou know your own degrees; sit down: at first\nAnd last the hearty welcome.\n\nLords:\nThanks to your majesty.\n\nMACBETH:\nOurself will mingle with society,\nAnd play the humble host.\nOur hostess keeps her state, but in best time\nWe will require her welcome.\n\nLADY MACBETH:\nPronounce it for me, sir, to all our friends;\nFor my heart speaks they are welcome.\n\nMACBETH:\nSee, they encounter thee with their hearts' thanks.\nBoth sides are even: here I'll sit i' the midst:\nBe large in mirth; anon we'll drink a measure\nThe table round.\nThere's blood on thy face.\n\nFirst Murderer:\n'Tis Banquo's then.\n\nMACBETH:\n'Tis better thee without than he within.\nIs he dispatch'd?\n\nFirst Murderer:\nMy lord, his throat is cut; that I did for him.\n\nMACBETH:\nThou art the best o' the cut-throats: yet he's good\nThat did the like for Fleance: if thou didst it,\nThou art the nonpareil.\n\nFirst Murderer:\nMost royal sir,\nFleance is 'scaped.\n\nMACBETH:\nThen comes my fit again: I had else been perfect,\nWhole as the marble, founded as the rock,\nAs broad and general as the casing air:\nBut now I am cabin'd, cribb'd, confined, bound in\nTo saucy doubts and fears. But Banquo's safe?\n\nFirst Murderer:\nAy, my good lord: safe in a ditch he bides,\nWith twenty trenched gashes on his head;\nThe least a death to nature.\n\nMACBETH:\nThanks for that:\nThere the grown serpent lies; the worm that's fled\nHath nature that in time will venom breed,\nNo teeth for the present. Get thee gone: to-morrow\nWe'll hear, ourselves, again.\n\nLADY MACBETH:\nMy royal lord,\nYou do not give the cheer: the feast is sold\nThat is not often vouch'd, while 'tis a-making,\n'Tis given with welcome: to feed were best at home;\nFrom thence the sauce to meat is ceremony;\nMeeting were bare without it.\n\nMACBETH:\nSweet remembrancer!\nNow, good digestion wait on appetite,\nAnd health on both!\n\nLENNOX:\nMay't please your highness sit.\n\nMACBETH:\nHere had we now our country's honour roof'd,\nWere the graced person of our Banquo present;\nWho may I rather challenge for unkindness\nThan pity for mischance!\n\nROSS:\nHis absence, sir,\nLays blame upon his promise. Please't your highness\nTo grace us with your royal company.\n\nMACBETH:\nThe table's full.\n\nLENNOX:\nHere is a place reserved, sir.\n\nMACBETH:\nWhere?\n\nLENNOX:\nHere, my good lord. What is't that moves your highness?\n\nMACBETH:\nWhich of you have done this?\n\nLords:\nWhat, my good lord?\n\nMACBETH:\nThou canst not say I did it: never shake\nThy gory locks at me.\n\nROSS:\nGentlemen, rise: his highness is not well.\n\nLADY MACBETH:\nSit, worthy friends: my lord is often thus,\nAnd hath been from his youth: pray you, keep seat;\nThe fit is momentary; upon a thought\nHe will again be well: if much you note him,\nYou shall offend him and extend his passion:\nFeed, and regard him not. Are you a man?\n\nMACBETH:\nAy, and a bold one, that dare look on that\nWhich might appal the devil.\n\nLADY MACBETH:\nO proper stuff!\nThis is the very painting of your fear:\nThis is the air-drawn dagger which, you said,\nLed you to Duncan. O, these flaws and starts,\nImpostors to true fear, would well become\nA woman's story at a winter's fire,\nAuthorized by her grandam. Shame itself!\nWhy do you make such faces? When all's done,\nYou look but on a stool.\n\nMACBETH:\nPrithee, see there! behold! look! lo!\nhow say you?\nWhy, what care I? If thou canst nod, speak too.\nIf charnel-houses and our graves must send\nThose that we bury back, our monuments\nShall be the maws of kites.\n\nLADY MACBETH:\nWhat, quite unmann'd in folly?\n\nMACBETH:\nIf I stand here, I saw him.\n\nLADY MACBETH:\nFie, for shame!\n\nMACBETH:\nBlood hath been shed ere now, i' the olden time,\nEre human statute purged the gentle weal;\nAy, and since too, murders have been perform'd\nToo terrible for the ear: the times have been,\nThat, when the brains were out, the man would die,\nAnd there an end; but now they rise again,\nWith twenty mortal murders on their crowns,\nAnd push us from our stools: this is more strange\nThan such a murder is.\n\nLADY MACBETH:\nMy worthy lord,\nYour noble friends do lack you.\n\nMACBETH:\nI do forget.\nDo not muse at me, my most worthy friends,\nI have a strange infirmity, which is nothing\nTo those that know me. Come, love and health to all;\nThen I'll sit down. Give me some wine; fill full.\nI drink to the general joy o' the whole table,\nAnd to our dear friend Banquo, whom we miss;\nWould he were here! to all, and him, we thirst,\nAnd all to all.\n\nLords:\nOur duties, and the pledge.\n\nMACBETH:\nAvaunt! and quit my sight! let the earth hide thee!\nThy bones are marrowless, thy blood is cold;\nThou hast no speculation in those eyes\nWhich thou dost glare with!\n\nLADY MACBETH:\nThink of this, good peers,\nBut as a thing of custom: 'tis no other;\nOnly it spoils the pleasure of the time.\n\nMACBETH:\nWhat man dare, I dare:\nApproach thou like the rugged Russian bear,\nThe arm'd rhinoceros, or the Hyrcan tiger;\nTake any shape but that, and my firm nerves\nShall never tremble: or be alive again,\nAnd dare me to the desert with thy sword;\nIf trembling I inhabit then, protest me\nThe baby of a girl. Hence, horrible shadow!\nUnreal mockery, hence!\nWhy, so: being gone,\nI am a man again. Pray you, sit still.\n\nLADY MACBETH:\nYou have displaced the mirth, broke the good meeting,\nWith most admired disorder.\n\nMACBETH:\nCan such things be,\nAnd overcome us like a summer's cloud,\nWithout our special wonder? You make me strange\nEven to the disposition that I owe,\nWhen now I think you can behold such sights,\nAnd keep the natural ruby of your cheeks,\nWhen mine is blanched with fear.\n\nROSS:\nWhat sights, my lord?\n\nLADY MACBETH:\nI pray you, speak not; he grows worse and worse;\nQuestion enrages him. At once, good night:\nStand not upon the order of your going,\nBut go at once.\n\nLENNOX:\nGood night; and better health\nAttend his majesty!\n\nLADY MACBETH:\nA kind good night to all!\n\nMACBETH:\nIt will have blood; they say, blood will have blood:\nStones have been known to move and trees to speak;\nAugurs and understood relations have\nBy magot-pies and choughs and rooks brought forth\nThe secret'st man of blood. What is the night?\n\nLADY MACBETH:\nAlmost at odds with morning, which is which.\n\nMACBETH:\nHow say'st thou, that Macduff denies his person\nAt our great bidding?\n\nLADY MACBETH:\nDid you send to him, sir?\n\nMACBETH:\nI hear it by the way; but I will send:\nThere's not a one of them but in his house\nI keep a servant fee'd. I will to-morrow,\nAnd betimes I will, to the weird sisters:\nMore shall they speak; for now I am bent to know,\nBy the worst means, the worst. For mine own good,\nAll causes shall give way: I am in blood\nStepp'd in so far that, should I wade no more,\nReturning were as tedious as go o'er:\nStrange things I have in head, that will to hand;\nWhich must be acted ere they may be scann'd.\n\nLADY MACBETH:\nYou lack the season of all natures, sleep.\n\nMACBETH:\nCome, we'll to sleep. My strange and self-abuse\nIs the initiate fear that wants hard use:\nWe are yet but young in deed.\n\nFirst Witch:\nWhy, how now, Hecate! you look angerly.\n\nHECATE:\nHave I not reason, beldams as you are,\nSaucy and overbold? How did you dare\nTo trade and traffic with Macbeth\nIn riddles and affairs of death;\nAnd I, the mistress of your charms,\nThe close contriver of all harms,\nWas never call'd to bear my part,\nOr show the glory of our art?\nAnd, which is worse, all you have done\nHath been but for a wayward son,\nSpiteful and wrathful, who, as others do,\nLoves for his own ends, not for you.\nBut make amends now: get you gone,\nAnd at the pit of Acheron\nMeet me i' the morning: thither he\nWill come to know his destiny:\nYour vessels and your spells provide,\nYour charms and every thing beside.\nI am for the air; this night I'll spend\nUnto a dismal and a fatal end:\nGreat business must be wrought ere noon:\nUpon the corner of the moon\nThere hangs a vaporous drop profound;\nI'll catch it ere it come to ground:\nAnd that distill'd by magic sleights\nShall raise such artificial sprites\nAs by the strength of their illusion\nShall draw him on to his confusion:\nHe shall spurn fate, scorn death, and bear\nHe hopes 'bove wisdom, grace and fear:\nAnd you all know, security\nIs mortals' chiefest enemy.\nHark! I am call'd; my little spirit, see,\nSits in a foggy cloud, and stays for me.\n\nFirst Witch:\nCome, let's make haste; she'll soon be back again.\n\nLENNOX:\nMy former speeches have but hit your thoughts,\nWhich can interpret further: only, I say,\nThings have been strangely borne. The\ngracious Duncan\nWas pitied of Macbeth: marry, he was dead:\nAnd the right-valiant Banquo walk'd too late;\nWhom, you may say, if't please you, Fleance kill'd,\nFor Fleance fled: men must not walk too late.\nWho cannot want the thought how monstrous\nIt was for Malcolm and for Donalbain\nTo kill their gracious father? damned fact!\nHow it did grieve Macbeth! did he not straight\nIn pious rage the two delinquents tear,\nThat were the slaves of drink and thralls of sleep?\nWas not that nobly done? Ay, and wisely too;\nFor 'twould have anger'd any heart alive\nTo hear the men deny't. So that, I say,\nHe has borne all things well: and I do think\nThat had he Duncan's sons under his key--\nAs, an't please heaven, he shall not--they\nshould find\nWhat 'twere to kill a father; so should Fleance.\nBut, peace! for from broad words and 'cause he fail'd\nHis presence at the tyrant's feast, I hear\nMacduff lives in disgrace: sir, can you tell\nWhere he bestows himself?\n\nLord:\nThe son of Duncan,\nFrom whom this tyrant holds the due of birth\nLives in the English court, and is received\nOf the most pious Edward with such grace\nThat the malevolence of fortune nothing\nTakes from his high respect: thither Macduff\nIs gone to pray the holy king, upon his aid\nTo wake Northumberland and warlike Siward:\nThat, by the help of these--with Him above\nTo ratify the work--we may again\nGive to our tables meat, sleep to our nights,\nFree from our feasts and banquets bloody knives,\nDo faithful homage and receive free honours:\nAll which we pine for now: and this report\nHath so exasperate the king that he\nPrepares for some attempt of war.\n\nLENNOX:\nSent he to Macduff?\n\nLord:\nHe did: and with an absolute 'Sir, not I,'\nThe cloudy messenger turns me his back,\nAnd hums, as who should say 'You'll rue the time\nThat clogs me with this answer.'\n\nLENNOX:\nAnd that well might\nAdvise him to a caution, to hold what distance\nHis wisdom can provide. Some holy angel\nFly to the court of England and unfold\nHis message ere he come, that a swift blessing\nMay soon return to this our suffering country\nUnder a hand accursed!\n\nLord:\nI'll send my prayers with him.\n\nFirst Witch:\nThrice the brinded cat hath mew'd.\n\nSecond Witch:\nThrice and once the hedge-pig whined.\n\nThird Witch:\nHarpier cries 'Tis time, 'tis time.\n\nFirst Witch:\nRound about the cauldron go;\nIn the poison'd entrails throw.\nToad, that under cold stone\nDays and nights has thirty-one\nSwelter'd venom sleeping got,\nBoil thou first i' the charmed pot.\n\nALL:\nDouble, double toil and trouble;\nFire burn, and cauldron bubble.\n\nSecond Witch:\nFillet of a fenny snake,\nIn the cauldron boil and bake;\nEye of newt and toe of frog,\nWool of bat and tongue of dog,\nAdder's fork and blind-worm's sting,\nLizard's leg and owlet's wing,\nFor a charm of powerful trouble,\nLike a hell-broth boil and bubble.\n\nALL:\nDouble, double toil and trouble;\nFire burn and cauldron bubble.\n\nThird Witch:\nScale of dragon, tooth of wolf,\nWitches' mummy, maw and gulf\nOf the ravin'd salt-sea shark,\nRoot of hemlock digg'd i' the dark,\nLiver of blaspheming Jew,\nGall of goat, and slips of yew\nSilver'd in the moon's eclipse,\nNose of Turk and Tartar's lips,\nFinger of birth-strangled babe\nDitch-deliver'd by a drab,\nMake the gruel thick and slab:\nAdd thereto a tiger's chaudron,\nFor the ingredients of our cauldron.\n\nALL:\nDouble, double toil and trouble;\nFire burn and cauldron bubble.\n\nSecond Witch:\nCool it with a baboon's blood,\nThen the charm is firm and good.\n\nHECATE:\nO well done! I commend your pains;\nAnd every one shall share i' the gains;\nAnd now about the cauldron sing,\nLive elves and fairies in a ring,\nEnchanting all that you put in.\n\nSecond Witch:\nBy the pricking of my thumbs,\nSomething wicked this way comes.\nOpen, locks,\nWhoever knocks!\n\nMACBETH:\nHow now, you secret, black, and midnight hags!\nWhat is't you do?\n\nALL:\nA deed without a name.\n\nMACBETH:\nI conjure you, by that which you profess,\nHowe'er you come to know it, answer me:\nThough you untie the winds and let them fight\nAgainst the churches; though the yesty waves\nConfound and swallow navigation up;\nThough bladed corn be lodged and trees blown down;\nThough castles topple on their warders' heads;\nThough palaces and pyramids do slope\nTheir heads to their foundations; though the treasure\nOf nature's germens tumble all together,\nEven till destruction sicken; answer me\nTo what I ask you.\n\nFirst Witch:\nSpeak.\n\nSecond Witch:\nDemand.\n\nThird Witch:\nWe'll answer.\n\nFirst Witch:\nSay, if thou'dst rather hear it from our mouths,\nOr from our masters?\n\nMACBETH:\nCall 'em; let me see 'em.\n\nFirst Witch:\nPour in sow's blood, that hath eaten\nHer nine farrow; grease that's sweaten\nFrom the murderer's gibbet throw\nInto the flame.\n\nALL:\nCome, high or low;\nThyself and office deftly show!\n\nMACBETH:\nTell me, thou unknown power,--\n\nFirst Witch:\nHe knows thy thought:\nHear his speech, but say thou nought.\n\nFirst Apparition:\nMacbeth! Macbeth! Macbeth! beware Macduff;\nBeware the thane of Fife. Dismiss me. Enough.\n\nMACBETH:\nWhate'er thou art, for thy good caution, thanks;\nThou hast harp'd my fear aright: but one\nword more,--\n\nFirst Witch:\nHe will not be commanded: here's another,\nMore potent than the first.\n\nSecond Apparition:\nMacbeth! Macbeth! Macbeth!\n\nMACBETH:\nHad I three ears, I'ld hear thee.\n\nSecond Apparition:\nBe bloody, bold, and resolute; laugh to scorn\nThe power of man, for none of woman born\nShall harm Macbeth.\n\nMACBETH:\nThen live, Macduff: what need I fear of thee?\nBut yet I'll make assurance double sure,\nAnd take a bond of fate: thou shalt not live;\nThat I may tell pale-hearted fear it lies,\nAnd sleep in spite of thunder.\nWhat is this\nThat rises like the issue of a king,\nAnd wears upon his baby-brow the round\nAnd top of sovereignty?\n\nALL:\nListen, but speak not to't.\n\nThird Apparition:\nBe lion-mettled, proud; and take no care\nWho chafes, who frets, or where conspirers are:\nMacbeth shall never vanquish'd be until\nGreat Birnam wood to high Dunsinane hill\nShall come against him.\n\nMACBETH:\nThat will never be\nWho can impress the forest, bid the tree\nUnfix his earth-bound root? Sweet bodements! good!\nRebellion's head, rise never till the wood\nOf Birnam rise, and our high-placed Macbeth\nShall live the lease of nature, pay his breath\nTo time and mortal custom. Yet my heart\nThrobs to know one thing: tell me, if your art\nCan tell so much: shall Banquo's issue ever\nReign in this kingdom?\n\nALL:\nSeek to know no more.\n\nMACBETH:\nI will be satisfied: deny me this,\nAnd an eternal curse fall on you! Let me know.\nWhy sinks that cauldron? and what noise is this?\n\nFirst Witch:\nShow!\n\nSecond Witch:\nShow!\n\nThird Witch:\nShow!\n\nALL:\nShow his eyes, and grieve his heart;\nCome like shadows, so depart!\n\nMACBETH:\nThou art too like the spirit of Banquo: down!\nThy crown does sear mine eye-balls. And thy hair,\nThou other gold-bound brow, is like the first.\nA third is like the former. Filthy hags!\nWhy do you show me this? A fourth! Start, eyes!\nWhat, will the line stretch out to the crack of doom?\nAnother yet! A seventh! I'll see no more:\nAnd yet the eighth appears, who bears a glass\nWhich shows me many more; and some I see\nThat two-fold balls and treble scepters carry:\nHorrible sight! Now, I see, 'tis true;\nFor the blood-bolter'd Banquo smiles upon me,\nAnd points at them for his.\nWhat, is this so?\n\nFirst Witch:\nAy, sir, all this is so: but why\nStands Macbeth thus amazedly?\nCome, sisters, cheer we up his sprites,\nAnd show the best of our delights:\nI'll charm the air to give a sound,\nWhile you perform your antic round:\nThat this great king may kindly say,\nOur duties did his welcome pay.\n\nMACBETH:\nWhere are they? Gone? Let this pernicious hour\nStand aye accursed in the calendar!\nCome in, without there!\n\nLENNOX:\nWhat's your grace's will?\n\nMACBETH:\nSaw you the weird sisters?\n\nLENNOX:\nNo, my lord.\n\nMACBETH:\nCame they not by you?\n\nLENNOX:\nNo, indeed, my lord.\n\nMACBETH:\nInfected be the air whereon they ride;\nAnd damn'd all those that trust them! I did hear\nThe galloping of horse: who was't came by?\n\nLENNOX:\n'Tis two or three, my lord, that bring you word\nMacduff is fled to England.\n\nMACBETH:\nFled to England!\n\nLENNOX:\nAy, my good lord.\n\nMACBETH:\nTime, thou anticipatest my dread exploits:\nThe flighty purpose never is o'ertook\nUnless the deed go with it; from this moment\nThe very firstlings of my heart shall be\nThe firstlings of my hand. And even now,\nTo crown my thoughts with acts, be it thought and done:\nThe castle of Macduff I will surprise;\nSeize upon Fife; give to the edge o' the sword\nHis wife, his babes, and all unfortunate souls\nThat trace him in his line. No boasting like a fool;\nThis deed I'll do before this purpose cool.\nBut no more sights!--Where are these gentlemen?\nCome, bring me where they are.\n\nLADY MACDUFF:\nWhat had he done, to make him fly the land?\n\nROSS:\nYou must have patience, madam.\n\nLADY MACDUFF:\nHe had none:\nHis flight was madness: when our actions do not,\nOur fears do make us traitors.\n\nROSS:\nYou know not\nWhether it was his wisdom or his fear.\n\nLADY MACDUFF:\nWisdom! to leave his wife, to leave his babes,\nHis mansion and his titles in a place\nFrom whence himself does fly? He loves us not;\nHe wants the natural touch: for the poor wren,\nThe most diminutive of birds, will fight,\nHer young ones in her nest, against the owl.\nAll is the fear and nothing is the love;\nAs little is the wisdom, where the flight\nSo runs against all reason.\n\nROSS:\nMy dearest coz,\nI pray you, school yourself: but for your husband,\nHe is noble, wise, judicious, and best knows\nThe fits o' the season. I dare not speak\nmuch further;\nBut cruel are the times, when we are traitors\nAnd do not know ourselves, when we hold rumour\nFrom what we fear, yet know not what we fear,\nBut float upon a wild and violent sea\nEach way and move. I take my leave of you:\nShall not be long but I'll be here again:\nThings at the worst will cease, or else climb upward\nTo what they were before. My pretty cousin,\nBlessing upon you!\n\nLADY MACDUFF:\nFather'd he is, and yet he's fatherless.\n\nROSS:\nI am so much a fool, should I stay longer,\nIt would be my disgrace and your discomfort:\nI take my leave at once.\n\nLADY MACDUFF:\nSirrah, your father's dead;\nAnd what will you do now? How will you live?\n\nSon:\nAs birds do, mother.\n\nLADY MACDUFF:\nWhat, with worms and flies?\n\nSon:\nWith what I get, I mean; and so do they.\n\nLADY MACDUFF:\nPoor bird! thou'ldst never fear the net nor lime,\nThe pitfall nor the gin.\n\nSon:\nWhy should I, mother? Poor birds they are not set for.\nMy father is not dead, for all your saying.\n\nLADY MACDUFF:\nYes, he is dead; how wilt thou do for a father?\n\nSon:\nNay, how will you do for a husband?\n\nLADY MACDUFF:\nWhy, I can buy me twenty at any market.\n\nSon:\nThen you'll buy 'em to sell again.\n\nLADY MACDUFF:\nThou speak'st with all thy wit: and yet, i' faith,\nWith wit enough for thee.\n\nSon:\nWas my father a traitor, mother?\n\nLADY MACDUFF:\nAy, that he was.\n\nSon:\nWhat is a traitor?\n\nLADY MACDUFF:\nWhy, one that swears and lies.\n\nSon:\nAnd be all traitors that do so?\n\nLADY MACDUFF:\nEvery one that does so is a traitor, and must be hanged.\n\nSon:\nAnd must they all be hanged that swear and lie?\n\nLADY MACDUFF:\nEvery one.\n\nSon:\nWho must hang them?\n\nLADY MACDUFF:\nWhy, the honest men.\n\nSon:\nThen the liars and swearers are fools,\nfor there are liars and swearers enow to beat\nthe honest men and hang up them.\n\nLADY MACDUFF:\nNow, God help thee, poor monkey!\nBut how wilt thou do for a father?\n\nSon:\nIf he were dead, you'ld weep for\nhim: if you would not, it were a good sign\nthat I should quickly have a new father.\n\nLADY MACDUFF:\nPoor prattler, how thou talk'st!\n\nMessenger:\nBless you, fair dame! I am not to you known,\nThough in your state of honour I am perfect.\nI doubt some danger does approach you nearly:\nIf you will take a homely man's advice,\nBe not found here; hence, with your little ones.\nTo fright you thus, methinks, I am too savage;\nTo do worse to you were fell cruelty,\nWhich is too nigh your person. Heaven preserve you!\nI dare abide no longer.\n\nLADY MACDUFF:\nWhither should I fly?\nI have done no harm. But I remember now\nI am in this earthly world; where to do harm\nIs often laudable, to do good sometime\nAccounted dangerous folly: why then, alas,\nDo I put up that womanly defence,\nTo say I have done no harm?\nWhat are these faces?\n\nFirst Murderer:\nWhere is your husband?\n\nLADY MACDUFF:\nI hope, in no place so unsanctified\nWhere such as thou mayst find him.\n\nFirst Murderer:\nHe's a traitor.\n\nSon:\nThou liest, thou shag-hair'd villain!\n\nFirst Murderer:\nWhat, you egg!\nYoung fry of treachery!\n\nSon:\nHe has kill'd me, mother:\nRun away, I pray you!\n\nMALCOLM:\nLet us seek out some desolate shade, and there\nWeep our sad bosoms empty.\n\nMACDUFF:\nLet us rather\nHold fast the mortal sword, and like good men\nBestride our down-fall'n birthdom: each new morn\nNew widows howl, new orphans cry, new sorrows\nStrike heaven on the face, that it resounds\nAs if it felt with Scotland and yell'd out\nLike syllable of dolour.\n\nMALCOLM:\nWhat I believe I'll wail,\nWhat know believe, and what I can redress,\nAs I shall find the time to friend, I will.\nWhat you have spoke, it may be so perchance.\nThis tyrant, whose sole name blisters our tongues,\nWas once thought honest: you have loved him well.\nHe hath not touch'd you yet. I am young;\nbut something\nYou may deserve of him through me, and wisdom\nTo offer up a weak poor innocent lamb\nTo appease an angry god.\n\nMACDUFF:\nI am not treacherous.\n\nMALCOLM:\nBut Macbeth is.\nA good and virtuous nature may recoil\nIn an imperial charge. But I shall crave\nyour pardon;\nThat which you are my thoughts cannot transpose:\nAngels are bright still, though the brightest fell;\nThough all things foul would wear the brows of grace,\nYet grace must still look so.\n\nMACDUFF:\nI have lost my hopes.\n\nMALCOLM:\nPerchance even there where I did find my doubts.\nWhy in that rawness left you wife and child,\nThose precious motives, those strong knots of love,\nWithout leave-taking? I pray you,\nLet not my jealousies be your dishonours,\nBut mine own safeties. You may be rightly just,\nWhatever I shall think.\n\nMACDUFF:\nBleed, bleed, poor country!\nGreat tyranny! lay thou thy basis sure,\nFor goodness dare not cheque thee: wear thou\nthy wrongs;\nThe title is affeer'd! Fare thee well, lord:\nI would not be the villain that thou think'st\nFor the whole space that's in the tyrant's grasp,\nAnd the rich East to boot.\n\nMALCOLM:\nBe not offended:\nI speak not as in absolute fear of you.\nI think our country sinks beneath the yoke;\nIt weeps, it bleeds; and each new day a gash\nIs added to her wounds: I think withal\nThere would be hands uplifted in my right;\nAnd here from gracious England have I offer\nOf goodly thousands: but, for all this,\nWhen I shall tread upon the tyrant's head,\nOr wear it on my sword, yet my poor country\nShall have more vices than it had before,\nMore suffer and more sundry ways than ever,\nBy him that shall succeed.\n\nMACDUFF:\nWhat should he be?\n\nMALCOLM:\nIt is myself I mean: in whom I know\nAll the particulars of vice so grafted\nThat, when they shall be open'd, black Macbeth\nWill seem as pure as snow, and the poor state\nEsteem him as a lamb, being compared\nWith my confineless harms.\n\nMACDUFF:\nNot in the legions\nOf horrid hell can come a devil more damn'd\nIn evils to top Macbeth.\n\nMALCOLM:\nI grant him bloody,\nLuxurious, avaricious, false, deceitful,\nSudden, malicious, smacking of every sin\nThat has a name: but there's no bottom, none,\nIn my voluptuousness: your wives, your daughters,\nYour matrons and your maids, could not fill up\nThe cistern of my lust, and my desire\nAll continent impediments would o'erbear\nThat did oppose my will: better Macbeth\nThan such an one to reign.\n\nMACDUFF:\nBoundless intemperance\nIn nature is a tyranny; it hath been\nThe untimely emptying of the happy throne\nAnd fall of many kings. But fear not yet\nTo take upon you what is yours: you may\nConvey your pleasures in a spacious plenty,\nAnd yet seem cold, the time you may so hoodwink.\nWe have willing dames enough: there cannot be\nThat vulture in you, to devour so many\nAs will to greatness dedicate themselves,\nFinding it so inclined.\n\nMALCOLM:\nWith this there grows\nIn my most ill-composed affection such\nA stanchless avarice that, were I king,\nI should cut off the nobles for their lands,\nDesire his jewels and this other's house:\nAnd my more-having would be as a sauce\nTo make me hunger more; that I should forge\nQuarrels unjust against the good and loyal,\nDestroying them for wealth.\n\nMACDUFF:\nThis avarice\nSticks deeper, grows with more pernicious root\nThan summer-seeming lust, and it hath been\nThe sword of our slain kings: yet do not fear;\nScotland hath foisons to fill up your will.\nOf your mere own: all these are portable,\nWith other graces weigh'd.\n\nMALCOLM:\nBut I have none: the king-becoming graces,\nAs justice, verity, temperance, stableness,\nBounty, perseverance, mercy, lowliness,\nDevotion, patience, courage, fortitude,\nI have no relish of them, but abound\nIn the division of each several crime,\nActing it many ways. Nay, had I power, I should\nPour the sweet milk of concord into hell,\nUproar the universal peace, confound\nAll unity on earth.\n\nMACDUFF:\nO Scotland, Scotland!\n\nMALCOLM:\nIf such a one be fit to govern, speak:\nI am as I have spoken.\n\nMACDUFF:\nFit to govern!\nNo, not to live. O nation miserable,\nWith an untitled tyrant bloody-scepter'd,\nWhen shalt thou see thy wholesome days again,\nSince that the truest issue of thy throne\nBy his own interdiction stands accursed,\nAnd does blaspheme his breed? Thy royal father\nWas a most sainted king: the queen that bore thee,\nOftener upon her knees than on her feet,\nDied every day she lived. Fare thee well!\nThese evils thou repeat'st upon thyself\nHave banish'd me from Scotland. O my breast,\nThy hope ends here!\n\nMALCOLM:\nMacduff, this noble passion,\nChild of integrity, hath from my soul\nWiped the black scruples, reconciled my thoughts\nTo thy good truth and honour. Devilish Macbeth\nBy many of these trains hath sought to win me\nInto his power, and modest wisdom plucks me\nFrom over-credulous haste: but God above\nDeal between thee and me! for even now\nI put myself to thy direction, and\nUnspeak mine own detraction, here abjure\nThe taints and blames I laid upon myself,\nFor strangers to my nature. I am yet\nUnknown to woman, never was forsworn,\nScarcely have coveted what was mine own,\nAt no time broke my faith, would not betray\nThe devil to his fellow and delight\nNo less in truth than life: my first false speaking\nWas this upon myself: what I am truly,\nIs thine and my poor country's to command:\nWhither indeed, before thy here-approach,\nOld Siward, with ten thousand warlike men,\nAlready at a point, was setting forth.\nNow we'll together; and the chance of goodness\nBe like our warranted quarrel! Why are you silent?\n\nMACDUFF:\nSuch welcome and unwelcome things at once\n'Tis hard to reconcile.\n\nMALCOLM:\nWell; more anon.--Comes the king forth, I pray you?\n\nDoctor:\nAy, sir; there are a crew of wretched souls\nThat stay his cure: their malady convinces\nThe great assay of art; but at his touch--\nSuch sanctity hath heaven given his hand--\nThey presently amend.\n\nMALCOLM:\nI thank you, doctor.\n\nMACDUFF:\nWhat's the disease he means?\n\nMALCOLM:\n'Tis call'd the evil:\nA most miraculous work in this good king;\nWhich often, since my here-remain in England,\nI have seen him do. How he solicits heaven,\nHimself best knows: but strangely-visited people,\nAll swoln and ulcerous, pitiful to the eye,\nThe mere despair of surgery, he cures,\nHanging a golden stamp about their necks,\nPut on with holy prayers: and 'tis spoken,\nTo the succeeding royalty he leaves\nThe healing benediction. With this strange virtue,\nHe hath a heavenly gift of prophecy,\nAnd sundry blessings hang about his throne,\nThat speak him full of grace.\n\nMACDUFF:\nSee, who comes here?\n\nMALCOLM:\nMy countryman; but yet I know him not.\n\nMACDUFF:\nMy ever-gentle cousin, welcome hither.\n\nMALCOLM:\nI know him now. Good God, betimes remove\nThe means that makes us strangers!\n\nROSS:\nSir, amen.\n\nMACDUFF:\nStands Scotland where it did?\n\nROSS:\nAlas, poor country!\nAlmost afraid to know itself. It cannot\nBe call'd our mother, but our grave; where nothing,\nBut who knows nothing, is once seen to smile;\nWhere sighs and groans and shrieks that rend the air\nAre made, not mark'd; where violent sorrow seems\nA modern ecstasy; the dead man's knell\nIs there scarce ask'd for who; and good men's lives\nExpire before the flowers in their caps,\nDying or ere they sicken.\n\nMACDUFF:\nO, relation\nToo nice, and yet too true!\n\nMALCOLM:\nWhat's the newest grief?\n\nROSS:\nThat of an hour's age doth hiss the speaker:\nEach minute teems a new one.\n\nMACDUFF:\nHow does my wife?\n\nROSS:\nWhy, well.\n\nMACDUFF:\nAnd all my children?\n\nROSS:\nWell too.\n\nMACDUFF:\nThe tyrant has not batter'd at their peace?\n\nROSS:\nNo; they were well at peace when I did leave 'em.\n\nMACDUFF:\nBut not a niggard of your speech: how goes't?\n\nROSS:\nWhen I came hither to transport the tidings,\nWhich I have heavily borne, there ran a rumour\nOf many worthy fellows that were out;\nWhich was to my belief witness'd the rather,\nFor that I saw the tyrant's power a-foot:\nNow is the time of help; your eye in Scotland\nWould create soldiers, make our women fight,\nTo doff their dire distresses.\n\nMALCOLM:\nBe't their comfort\nWe are coming thither: gracious England hath\nLent us good Siward and ten thousand men;\nAn older and a better soldier none\nThat Christendom gives out.\n\nROSS:\nWould I could answer\nThis comfort with the like! But I have words\nThat would be howl'd out in the desert air,\nWhere hearing should not latch them.\n\nMACDUFF:\nWhat concern they?\nThe general cause? or is it a fee-grief\nDue to some single breast?\n\nROSS:\nNo mind that's honest\nBut in it shares some woe; though the main part\nPertains to you alone.\n\nMACDUFF:\nIf it be mine,\nKeep it not from me, quickly let me have it.\n\nROSS:\nLet not your ears despise my tongue for ever,\nWhich shall possess them with the heaviest sound\nThat ever yet they heard.\n\nMACDUFF:\nHum! I guess at it.\n\nROSS:\nYour castle is surprised; your wife and babes\nSavagely slaughter'd: to relate the manner,\nWere, on the quarry of these murder'd deer,\nTo add the death of you.\n\nMALCOLM:\nMerciful heaven!\nWhat, man! ne'er pull your hat upon your brows;\nGive sorrow words: the grief that does not speak\nWhispers the o'er-fraught heart and bids it break.\n\nMACDUFF:\nMy children too?\n\nROSS:\nWife, children, servants, all\nThat could be found.\n\nMACDUFF:\nAnd I must be from thence!\nMy wife kill'd too?\n\nROSS:\nI have said.\n\nMALCOLM:\nBe comforted:\nLet's make us medicines of our great revenge,\nTo cure this deadly grief.\n\nMACDUFF:\nHe has no children. All my pretty ones?\nDid you say all? O hell-kite! All?\nWhat, all my pretty chickens and their dam\nAt one fell swoop?\n\nMALCOLM:\nDispute it like a man.\n\nMACDUFF:\nI shall do so;\nBut I must also feel it as a man:\nI cannot but remember such things were,\nThat were most precious to me. Did heaven look on,\nAnd would not take their part? Sinful Macduff,\nThey were all struck for thee! naught that I am,\nNot for their own demerits, but for mine,\nFell slaughter on their souls. Heaven rest them now!\n\nMALCOLM:\nBe this the whetstone of your sword: let grief\nConvert to anger; blunt not the heart, enrage it.\n\nMACDUFF:\nO, I could play the woman with mine eyes\nAnd braggart with my tongue! But, gentle heavens,\nCut short all intermission; front to front\nBring thou this fiend of Scotland and myself;\nWithin my sword's length set him; if he 'scape,\nHeaven forgive him too!\n\nMALCOLM:\nThis tune goes manly.\nCome, go we to the king; our power is ready;\nOur lack is nothing but our leave; Macbeth\nIs ripe for shaking, and the powers above\nPut on their instruments. Receive what cheer you may:\nThe night is long that never finds the day.\n\nDoctor:\nI have two nights watched with you, but can perceive\nno truth in your report. When was it she last walked?\n\nGentlewoman:\nSince his majesty went into the field, I have seen\nher rise from her bed, throw her night-gown upon\nher, unlock her closet, take forth paper, fold it,\nwrite upon't, read it, afterwards seal it, and again\nreturn to bed; yet all this while in a most fast sleep.\n\nDoctor:\nA great perturbation in nature, to receive at once\nthe benefit of sleep, and do the effects of\nwatching! In this slumbery agitation, besides her\nwalking and other actual performances, what, at any\ntime, have you heard her say?\n\nGentlewoman:\nThat, sir, which I will not report after her.\n\nDoctor:\nYou may to me: and 'tis most meet you should.\n\nGentlewoman:\nNeither to you nor any one; having no witness to\nconfirm my speech.\nLo you, here she comes! This is her very guise;\nand, upon my life, fast asleep. Observe her; stand close.\n\nDoctor:\nHow came she by that light?\n\nGentlewoman:\nWhy, it stood by her: she has light by her\ncontinually; 'tis her command.\n\nDoctor:\nYou see, her eyes are open.\n\nGentlewoman:\nAy, but their sense is shut.\n\nDoctor:\nWhat is it she does now? Look, how she rubs her hands.\n\nGentlewoman:\nIt is an accustomed action with her, to seem thus\nwashing her hands: I have known her continue in\nthis a quarter of an hour.\n\nLADY MACBETH:\nYet here's a spot.\n\nDoctor:\nHark! she speaks: I will set down what comes from\nher, to satisfy my remembrance the more strongly.\n\nLADY MACBETH:\nOut, damned spot! out, I say!--One: two: why,\nthen, 'tis time to do't.--Hell is murky!--Fie, my\nlord, fie! a soldier, and afeard? What need we\nfear who knows it, when none can call our power to\naccount?--Yet who would have thought the old man\nto have had so much blood in him.\n\nDoctor:\nDo you mark that?\n\nLADY MACBETH:\nThe thane of Fife had a wife: where is she now?--\nWhat, will these hands ne'er be clean?--No more o'\nthat, my lord, no more o' that: you mar all with\nthis starting.\n\nDoctor:\nGo to, go to; you have known what you should not.\n\nGentlewoman:\nShe has spoke what she should not, I am sure of\nthat: heaven knows what she has known.\n\nLADY MACBETH:\nHere's the smell of the blood still: all the\nperfumes of Arabia will not sweeten this little\nhand. Oh, oh, oh!\n\nDoctor:\nWhat a sigh is there! The heart is sorely charged.\n\nGentlewoman:\nI would not have such a heart in my bosom for the\ndignity of the whole body.\n\nDoctor:\nWell, well, well,--\n\nGentlewoman:\nPray God it be, sir.\n\nDoctor:\nThis disease is beyond my practise: yet I have known\nthose which have walked in their sleep who have died\nholily in their beds.\n\nLADY MACBETH:\nWash your hands, put on your nightgown; look not so\npale.--I tell you yet again, Banquo's buried; he\ncannot come out on's grave.\n\nDoctor:\nEven so?\n\nLADY MACBETH:\nTo bed, to bed! there's knocking at the gate:\ncome, come, come, come, give me your hand. What's\ndone cannot be undone.--To bed, to bed, to bed!\n\nDoctor:\nWill she go now to bed?\n\nGentlewoman:\nDirectly.\n\nDoctor:\nFoul whisperings are abroad: unnatural deeds\nDo breed unnatural troubles: infected minds\nTo their deaf pillows will discharge their secrets:\nMore needs she the divine than the physician.\nGod, God forgive us all! Look after her;\nRemove from her the means of all annoyance,\nAnd still keep eyes upon her. So, good night:\nMy mind she has mated, and amazed my sight.\nI think, but dare not speak.\n\nGentlewoman:\nGood night, good doctor.\n\nMENTEITH:\nThe English power is near, led on by Malcolm,\nHis uncle Siward and the good Macduff:\nRevenges burn in them; for their dear causes\nWould to the bleeding and the grim alarm\nExcite the mortified man.\n\nANGUS:\nNear Birnam wood\nShall we well meet them; that way are they coming.\n\nCAITHNESS:\nWho knows if Donalbain be with his brother?\n\nLENNOX:\nFor certain, sir, he is not: I have a file\nOf all the gentry: there is Siward's son,\nAnd many unrough youths that even now\nProtest their first of manhood.\n\nMENTEITH:\nWhat does the tyrant?\n\nCAITHNESS:\nGreat Dunsinane he strongly fortifies:\nSome say he's mad; others that lesser hate him\nDo call it valiant fury: but, for certain,\nHe cannot buckle his distemper'd cause\nWithin the belt of rule.\n\nANGUS:\nNow does he feel\nHis secret murders sticking on his hands;\nNow minutely revolts upbraid his faith-breach;\nThose he commands move only in command,\nNothing in love: now does he feel his title\nHang loose about him, like a giant's robe\nUpon a dwarfish thief.\n\nMENTEITH:\nWho then shall blame\nHis pester'd senses to recoil and start,\nWhen all that is within him does condemn\nItself for being there?\n\nCAITHNESS:\nWell, march we on,\nTo give obedience where 'tis truly owed:\nMeet we the medicine of the sickly weal,\nAnd with him pour we in our country's purge\nEach drop of us.\n\nLENNOX:\nOr so much as it needs,\nTo dew the sovereign flower and drown the weeds.\nMake we our march towards Birnam.\n\nMACBETH:\nBring me no more reports; let them fly all:\nTill Birnam wood remove to Dunsinane,\nI cannot taint with fear. What's the boy Malcolm?\nWas he not born of woman? The spirits that know\nAll mortal consequences have pronounced me thus:\n'Fear not, Macbeth; no man that's born of woman\nShall e'er have power upon thee.' Then fly,\nfalse thanes,\nAnd mingle with the English epicures:\nThe mind I sway by and the heart I bear\nShall never sag with doubt nor shake with fear.\nThe devil damn thee black, thou cream-faced loon!\nWhere got'st thou that goose look?\n\nServant:\nThere is ten thousand--\n\nMACBETH:\nGeese, villain!\n\nServant:\nSoldiers, sir.\n\nMACBETH:\nGo prick thy face, and over-red thy fear,\nThou lily-liver'd boy. What soldiers, patch?\nDeath of thy soul! those linen cheeks of thine\nAre counsellors to fear. What soldiers, whey-face?\n\nServant:\nThe English force, so please you.\n\nMACBETH:\nTake thy face hence.\nSeyton!--I am sick at heart,\nWhen I behold--Seyton, I say!--This push\nWill cheer me ever, or disseat me now.\nI have lived long enough: my way of life\nIs fall'n into the sear, the yellow leaf;\nAnd that which should accompany old age,\nAs honour, love, obedience, troops of friends,\nI must not look to have; but, in their stead,\nCurses, not loud but deep, mouth-honour, breath,\nWhich the poor heart would fain deny, and dare not. Seyton!\n\nSEYTON:\nWhat is your gracious pleasure?\n\nMACBETH:\nWhat news more?\n\nSEYTON:\nAll is confirm'd, my lord, which was reported.\n\nMACBETH:\nI'll fight till from my bones my flesh be hack'd.\nGive me my armour.\n\nSEYTON:\n'Tis not needed yet.\n\nMACBETH:\nI'll put it on.\nSend out more horses; skirr the country round;\nHang those that talk of fear. Give me mine armour.\nHow does your patient, doctor?\n\nDoctor:\nNot so sick, my lord,\nAs she is troubled with thick coming fancies,\nThat keep her from her rest.\n\nMACBETH:\nCure her of that.\nCanst thou not minister to a mind diseased,\nPluck from the memory a rooted sorrow,\nRaze out the written troubles of the brain\nAnd with some sweet oblivious antidote\nCleanse the stuff'd bosom of that perilous stuff\nWhich weighs upon the heart?\n\nDoctor:\nTherein the patient\nMust minister to himself.\n\nMACBETH:\nThrow physic to the dogs; I'll none of it.\nCome, put mine armour on; give me my staff.\nSeyton, send out. Doctor, the thanes fly from me.\nCome, sir, dispatch. If thou couldst, doctor, cast\nThe water of my land, find her disease,\nAnd purge it to a sound and pristine health,\nI would applaud thee to the very echo,\nThat should applaud again.--Pull't off, I say.--\nWhat rhubarb, cyme, or what purgative drug,\nWould scour these English hence? Hear'st thou of them?\n\nDoctor:\nAy, my good lord; your royal preparation\nMakes us hear something.\n\nMACBETH:\nBring it after me.\nI will not be afraid of death and bane,\nTill Birnam forest come to Dunsinane.\n\nDoctor:\n\nMALCOLM:\nCousins, I hope the days are near at hand\nThat chambers will be safe.\n\nMENTEITH:\nWe doubt it nothing.\n\nSIWARD:\nWhat wood is this before us?\n\nMENTEITH:\nThe wood of Birnam.\n\nMALCOLM:\nLet every soldier hew him down a bough\nAnd bear't before him: thereby shall we shadow\nThe numbers of our host and make discovery\nErr in report of us.\n\nSoldiers:\nIt shall be done.\n\nSIWARD:\nWe learn no other but the confident tyrant\nKeeps still in Dunsinane, and will endure\nOur setting down before 't.\n\nMALCOLM:\n'Tis his main hope:\nFor where there is advantage to be given,\nBoth more and less have given him the revolt,\nAnd none serve with him but constrained things\nWhose hearts are absent too.\n\nMACDUFF:\nLet our just censures\nAttend the true event, and put we on\nIndustrious soldiership.\n\nSIWARD:\nThe time approaches\nThat will with due decision make us know\nWhat we shall say we have and what we owe.\nThoughts speculative their unsure hopes relate,\nBut certain issue strokes must arbitrate:\nTowards which advance the war.\n\nMACBETH:\nHang out our banners on the outward walls;\nThe cry is still 'They come:' our castle's strength\nWill laugh a siege to scorn: here let them lie\nTill famine and the ague eat them up:\nWere they not forced with those that should be ours,\nWe might have met them dareful, beard to beard,\nAnd beat them backward home.\nWhat is that noise?\n\nSEYTON:\nIt is the cry of women, my good lord.\n\nMACBETH:\nI have almost forgot the taste of fears;\nThe time has been, my senses would have cool'd\nTo hear a night-shriek; and my fell of hair\nWould at a dismal treatise rouse and stir\nAs life were in't: I have supp'd full with horrors;\nDireness, familiar to my slaughterous thoughts\nCannot once start me.\nWherefore was that cry?\n\nSEYTON:\nThe queen, my lord, is dead.\n\nMACBETH:\nShe should have died hereafter;\nThere would have been a time for such a word.\nTo-morrow, and to-morrow, and to-morrow,\nCreeps in this petty pace from day to day\nTo the last syllable of recorded time,\nAnd all our yesterdays have lighted fools\nThe way to dusty death. Out, out, brief candle!\nLife's but a walking shadow, a poor player\nThat struts and frets his hour upon the stage\nAnd then is heard no more: it is a tale\nTold by an idiot, full of sound and fury,\nSignifying nothing.\nThou comest to use thy tongue; thy story quickly.\n\nMessenger:\nGracious my lord,\nI should report that which I say I saw,\nBut know not how to do it.\n\nMACBETH:\nWell, say, sir.\n\nMessenger:\nAs I did stand my watch upon the hill,\nI look'd toward Birnam, and anon, methought,\nThe wood began to move.\n\nMACBETH:\nLiar and slave!\n\nMessenger:\nLet me endure your wrath, if't be not so:\nWithin this three mile may you see it coming;\nI say, a moving grove.\n\nMACBETH:\nIf thou speak'st false,\nUpon the next tree shalt thou hang alive,\nTill famine cling thee: if thy speech be sooth,\nI care not if thou dost for me as much.\nI pull in resolution, and begin\nTo doubt the equivocation of the fiend\nThat lies like truth: 'Fear not, till Birnam wood\nDo come to Dunsinane:'  and now a wood\nComes toward Dunsinane. Arm, arm, and out!\nIf this which he avouches does appear,\nThere is nor flying hence nor tarrying here.\nI gin to be aweary of the sun,\nAnd wish the estate o' the world were now undone.\nRing the alarum-bell! Blow, wind! come, wrack!\nAt least we'll die with harness on our back.\n\nMALCOLM:\nNow near enough: your leafy screens throw down.\nAnd show like those you are. You, worthy uncle,\nShall, with my cousin, your right-noble son,\nLead our first battle: worthy Macduff and we\nShall take upon 's what else remains to do,\nAccording to our order.\n\nSIWARD:\nFare you well.\nDo we but find the tyrant's power to-night,\nLet us be beaten, if we cannot fight.\n\nMACDUFF:\nMake all our trumpets speak; give them all breath,\nThose clamorous harbingers of blood and death.\n\nMACBETH:\nThey have tied me to a stake; I cannot fly,\nBut, bear-like, I must fight the course. What's he\nThat was not born of woman? Such a one\nAm I to fear, or none.\n\nYOUNG SIWARD:\nWhat is thy name?\n\nMACBETH:\nThou'lt be afraid to hear it.\n\nYOUNG SIWARD:\nNo; though thou call'st thyself a hotter name\nThan any is in hell.\n\nMACBETH:\nMy name's Macbeth.\n\nYOUNG SIWARD:\nThe devil himself could not pronounce a title\nMore hateful to mine ear.\n\nMACBETH:\nNo, nor more fearful.\n\nYOUNG SIWARD:\nThou liest, abhorred tyrant; with my sword\nI'll prove the lie thou speak'st.\n\nMACBETH:\nThou wast born of woman\nBut swords I smile at, weapons laugh to scorn,\nBrandish'd by man that's of a woman born.\n\nMACDUFF:\nThat way the noise is. Tyrant, show thy face!\nIf thou be'st slain and with no stroke of mine,\nMy wife and children's ghosts will haunt me still.\nI cannot strike at wretched kerns, whose arms\nAre hired to bear their staves: either thou, Macbeth,\nOr else my sword with an unbatter'd edge\nI sheathe again undeeded. There thou shouldst be;\nBy this great clatter, one of greatest note\nSeems bruited. Let me find him, fortune!\nAnd more I beg not.\n\nSIWARD:\nThis way, my lord; the castle's gently render'd:\nThe tyrant's people on both sides do fight;\nThe noble thanes do bravely in the war;\nThe day almost itself professes yours,\nAnd little is to do.\n\nMALCOLM:\nWe have met with foes\nThat strike beside us.\n\nSIWARD:\nEnter, sir, the castle.\n\nMACBETH:\nWhy should I play the Roman fool, and die\nOn mine own sword? whiles I see lives, the gashes\nDo better upon them.\n\nMACDUFF:\nTurn, hell-hound, turn!\n\nMACBETH:\nOf all men else I have avoided thee:\nBut get thee back; my soul is too much charged\nWith blood of thine already.\n\nMACDUFF:\nI have no words:\nMy voice is in my sword: thou bloodier villain\nThan terms can give thee out!\n\nMACBETH:\nThou losest labour:\nAs easy mayst thou the intrenchant air\nWith thy keen sword impress as make me bleed:\nLet fall thy blade on vulnerable crests;\nI bear a charmed life, which must not yield,\nTo one of woman born.\n\nMACDUFF:\nDespair thy charm;\nAnd let the angel whom thou still hast served\nTell thee, Macduff was from his mother's womb\nUntimely ripp'd.\n\nMACBETH:\nAccursed be that tongue that tells me so,\nFor it hath cow'd my better part of man!\nAnd be these juggling fiends no more believed,\nThat palter with us in a double sense;\nThat keep the word of promise to our ear,\nAnd break it to our hope. I'll not fight with thee.\n\nMACDUFF:\nThen yield thee, coward,\nAnd live to be the show and gaze o' the time:\nWe'll have thee, as our rarer monsters are,\nPainted on a pole, and underwrit,\n'Here may you see the tyrant.'\n\nMACBETH:\nI will not yield,\nTo kiss the ground before young Malcolm's feet,\nAnd to be baited with the rabble's curse.\nThough Birnam wood be come to Dunsinane,\nAnd thou opposed, being of no woman born,\nYet I will try the last. Before my body\nI throw my warlike shield. Lay on, Macduff,\nAnd damn'd be him that first cries, 'Hold, enough!'\n\nMALCOLM:\nI would the friends we miss were safe arrived.\n\nSIWARD:\nSome must go off: and yet, by these I see,\nSo great a day as this is cheaply bought.\n\nMALCOLM:\nMacduff is missing, and your noble son.\n\nROSS:\nYour son, my lord, has paid a soldier's debt:\nHe only lived but till he was a man;\nThe which no sooner had his prowess confirm'd\nIn the unshrinking station where he fought,\nBut like a man he died.\n\nSIWARD:\nThen he is dead?\n\nROSS:\nAy, and brought off the field: your cause of sorrow\nMust not be measured by his worth, for then\nIt hath no end.\n\nSIWARD:\nHad he his hurts before?\n\nROSS:\nAy, on the front.\n\nSIWARD:\nWhy then, God's soldier be he!\nHad I as many sons as I have hairs,\nI would not wish them to a fairer death:\nAnd so, his knell is knoll'd.\n\nMALCOLM:\nHe's worth more sorrow,\nAnd that I'll spend for him.\n\nSIWARD:\nHe's worth no more\nThey say he parted well, and paid his score:\nAnd so, God be with him! Here comes newer comfort.\n\nMACDUFF:\nHail, king! for so thou art: behold, where stands\nThe usurper's cursed head: the time is free:\nI see thee compass'd with thy kingdom's pearl,\nThat speak my salutation in their minds;\nWhose voices I desire aloud with mine:\nHail, King of Scotland!\n\nALL:\nHail, King of Scotland!\n\nMALCOLM:\nWe shall not spend a large expense of time\nBefore we reckon with your several loves,\nAnd make us even with you. My thanes and kinsmen,\nHenceforth be earls, the first that ever Scotland\nIn such an honour named. What's more to do,\nWhich would be planted newly with the time,\nAs calling home our exiled friends abroad\nThat fled the snares of watchful tyranny;\nProducing forth the cruel ministers\nOf this dead butcher and his fiend-like queen,\nWho, as 'tis thought, by self and violent hands\nTook off her life; this, and what needful else\nThat calls upon us, by the grace of Grace,\nWe will perform in measure, time and place:\nSo, thanks to all at once and to each one,\nWhom we invite to see us crown'd at Scone.\n\nTHESEUS:\nNow, fair Hippolyta, our nuptial hour\nDraws on apace; four happy days bring in\nAnother moon: but, O, methinks, how slow\nThis old moon wanes! she lingers my desires,\nLike to a step-dame or a dowager\nLong withering out a young man revenue.\n\nHIPPOLYTA:\nFour days will quickly steep themselves in night;\nFour nights will quickly dream away the time;\nAnd then the moon, like to a silver bow\nNew-bent in heaven, shall behold the night\nOf our solemnities.\n\nTHESEUS:\nGo, Philostrate,\nStir up the Athenian youth to merriments;\nAwake the pert and nimble spirit of mirth;\nTurn melancholy forth to funerals;\nThe pale companion is not for our pomp.\nHippolyta, I woo'd thee with my sword,\nAnd won thy love, doing thee injuries;\nBut I will wed thee in another key,\nWith pomp, with triumph and with revelling.\n\nEGEUS:\nHappy be Theseus, our renowned duke!\n\nTHESEUS:\nThanks, good Egeus: what's the news with thee?\n\nEGEUS:\nFull of vexation come I, with complaint\nAgainst my child, my daughter Hermia.\nStand forth, Demetrius. My noble lord,\nThis man hath my consent to marry her.\nStand forth, Lysander: and my gracious duke,\nThis man hath bewitch'd the bosom of my child;\nThou, thou, Lysander, thou hast given her rhymes,\nAnd interchanged love-tokens with my child:\nThou hast by moonlight at her window sung,\nWith feigning voice verses of feigning love,\nAnd stolen the impression of her fantasy\nWith bracelets of thy hair, rings, gawds, conceits,\nKnacks, trifles, nosegays, sweetmeats, messengers\nOf strong prevailment in unharden'd youth:\nWith cunning hast thou filch'd my daughter's heart,\nTurn'd her obedience, which is due to me,\nTo stubborn harshness: and, my gracious duke,\nBe it so she; will not here before your grace\nConsent to marry with Demetrius,\nI beg the ancient privilege of Athens,\nAs she is mine, I may dispose of her:\nWhich shall be either to this gentleman\nOr to her death, according to our law\nImmediately provided in that case.\n\nTHESEUS:\nWhat say you, Hermia? be advised fair maid:\nTo you your father should be as a god;\nOne that composed your beauties, yea, and one\nTo whom you are but as a form in wax\nBy him imprinted and within his power\nTo leave the figure or disfigure it.\nDemetrius is a worthy gentleman.\n\nHERMIA:\nSo is Lysander.\n\nTHESEUS:\nIn himself he is;\nBut in this kind, wanting your father's voice,\nThe other must be held the worthier.\n\nHERMIA:\nI would my father look'd but with my eyes.\n\nTHESEUS:\nRather your eyes must with his judgment look.\n\nHERMIA:\nI do entreat your grace to pardon me.\nI know not by what power I am made bold,\nNor how it may concern my modesty,\nIn such a presence here to plead my thoughts;\nBut I beseech your grace that I may know\nThe worst that may befall me in this case,\nIf I refuse to wed Demetrius.\n\nTHESEUS:\nEither to die the death or to abjure\nFor ever the society of men.\nTherefore, fair Hermia, question your desires;\nKnow of your youth, examine well your blood,\nWhether, if you yield not to your father's choice,\nYou can endure the livery of a nun,\nFor aye to be in shady cloister mew'd,\nTo live a barren sister all your life,\nChanting faint hymns to the cold fruitless moon.\nThrice-blessed they that master so their blood,\nTo undergo such maiden pilgrimage;\nBut earthlier happy is the rose distill'd,\nThan that which withering on the virgin thorn\nGrows, lives and dies in single blessedness.\n\nHERMIA:\nSo will I grow, so live, so die, my lord,\nEre I will my virgin patent up\nUnto his lordship, whose unwished yoke\nMy soul consents not to give sovereignty.\n\nTHESEUS:\nTake time to pause; and, by the nest new moon--\nThe sealing-day betwixt my love and me,\nFor everlasting bond of fellowship--\nUpon that day either prepare to die\nFor disobedience to your father's will,\nOr else to wed Demetrius, as he would;\nOr on Diana's altar to protest\nFor aye austerity and single life.\n\nDEMETRIUS:\nRelent, sweet Hermia: and, Lysander, yield\nThy crazed title to my certain right.\n\nLYSANDER:\nYou have her father's love, Demetrius;\nLet me have Hermia's: do you marry him.\n\nEGEUS:\nScornful Lysander! true, he hath my love,\nAnd what is mine my love shall render him.\nAnd she is mine, and all my right of her\nI do estate unto Demetrius.\n\nLYSANDER:\nI am, my lord, as well derived as he,\nAs well possess'd; my love is more than his;\nMy fortunes every way as fairly rank'd,\nIf not with vantage, as Demetrius';\nAnd, which is more than all these boasts can be,\nI am beloved of beauteous Hermia:\nWhy should not I then prosecute my right?\nDemetrius, I'll avouch it to his head,\nMade love to Nedar's daughter, Helena,\nAnd won her soul; and she, sweet lady, dotes,\nDevoutly dotes, dotes in idolatry,\nUpon this spotted and inconstant man.\n\nTHESEUS:\nI must confess that I have heard so much,\nAnd with Demetrius thought to have spoke thereof;\nBut, being over-full of self-affairs,\nMy mind did lose it. But, Demetrius, come;\nAnd come, Egeus; you shall go with me,\nI have some private schooling for you both.\nFor you, fair Hermia, look you arm yourself\nTo fit your fancies to your father's will;\nOr else the law of Athens yields you up--\nWhich by no means we may extenuate--\nTo death, or to a vow of single life.\nCome, my Hippolyta: what cheer, my love?\nDemetrius and Egeus, go along:\nI must employ you in some business\nAgainst our nuptial and confer with you\nOf something nearly that concerns yourselves.\n\nEGEUS:\nWith duty and desire we follow you.\n\nLYSANDER:\nHow now, my love! why is your cheek so pale?\nHow chance the roses there do fade so fast?\n\nHERMIA:\nBelike for want of rain, which I could well\nBeteem them from the tempest of my eyes.\n\nLYSANDER:\nAy me! for aught that I could ever read,\nCould ever hear by tale or history,\nThe course of true love never did run smooth;\nBut, either it was different in blood,--\n\nHERMIA:\nO cross! too high to be enthrall'd to low.\n\nLYSANDER:\nOr else misgraffed in respect of years,--\n\nHERMIA:\nO spite! too old to be engaged to young.\n\nLYSANDER:\nOr else it stood upon the choice of friends,--\n\nHERMIA:\nO hell! to choose love by another's eyes.\n\nLYSANDER:\nOr, if there were a sympathy in choice,\nWar, death, or sickness did lay siege to it,\nMaking it momentany as a sound,\nSwift as a shadow, short as any dream;\nBrief as the lightning in the collied night,\nThat, in a spleen, unfolds both heaven and earth,\nAnd ere a man hath power to say 'Behold!'\nThe jaws of darkness do devour it up:\nSo quick bright things come to confusion.\n\nHERMIA:\nIf then true lovers have been ever cross'd,\nIt stands as an edict in destiny:\nThen let us teach our trial patience,\nBecause it is a customary cross,\nAs due to love as thoughts and dreams and sighs,\nWishes and tears, poor fancy's followers.\n\nLYSANDER:\nA good persuasion: therefore, hear me, Hermia.\nI have a widow aunt, a dowager\nOf great revenue, and she hath no child:\nFrom Athens is her house remote seven leagues;\nAnd she respects me as her only son.\nThere, gentle Hermia, may I marry thee;\nAnd to that place the sharp Athenian law\nCannot pursue us. If thou lovest me then,\nSteal forth thy father's house to-morrow night;\nAnd in the wood, a league without the town,\nWhere I did meet thee once with Helena,\nTo do observance to a morn of May,\nThere will I stay for thee.\n\nHERMIA:\nMy good Lysander!\nI swear to thee, by Cupid's strongest bow,\nBy his best arrow with the golden head,\nBy the simplicity of Venus' doves,\nBy that which knitteth souls and prospers loves,\nAnd by that fire which burn'd the Carthage queen,\nWhen the false Troyan under sail was seen,\nBy all the vows that ever men have broke,\nIn number more than ever women spoke,\nIn that same place thou hast appointed me,\nTo-morrow truly will I meet with thee.\n\nLYSANDER:\nKeep promise, love. Look, here comes Helena.\n\nHERMIA:\nGod speed fair Helena! whither away?\n\nHELENA:\nCall you me fair? that fair again unsay.\nDemetrius loves your fair: O happy fair!\nYour eyes are lode-stars; and your tongue's sweet air\nMore tuneable than lark to shepherd's ear,\nWhen wheat is green, when hawthorn buds appear.\nSickness is catching: O, were favour so,\nYours would I catch, fair Hermia, ere I go;\nMy ear should catch your voice, my eye your eye,\nMy tongue should catch your tongue's sweet melody.\nWere the world mine, Demetrius being bated,\nThe rest I'd give to be to you translated.\nO, teach me how you look, and with what art\nYou sway the motion of Demetrius' heart.\n\nHERMIA:\nI frown upon him, yet he loves me still.\n\nHELENA:\nO that your frowns would teach my smiles such skill!\n\nHERMIA:\nI give him curses, yet he gives me love.\n\nHELENA:\nO that my prayers could such affection move!\n\nHERMIA:\nThe more I hate, the more he follows me.\n\nHELENA:\nThe more I love, the more he hateth me.\n\nHERMIA:\nHis folly, Helena, is no fault of mine.\n\nHELENA:\nNone, but your beauty: would that fault were mine!\n\nHERMIA:\nTake comfort: he no more shall see my face;\nLysander and myself will fly this place.\nBefore the time I did Lysander see,\nSeem'd Athens as a paradise to me:\nO, then, what graces in my love do dwell,\nThat he hath turn'd a heaven unto a hell!\n\nLYSANDER:\nHelen, to you our minds we will unfold:\nTo-morrow night, when Phoebe doth behold\nHer silver visage in the watery glass,\nDecking with liquid pearl the bladed grass,\nA time that lovers' flights doth still conceal,\nThrough Athens' gates have we devised to steal.\n\nHERMIA:\nAnd in the wood, where often you and I\nUpon faint primrose-beds were wont to lie,\nEmptying our bosoms of their counsel sweet,\nThere my Lysander and myself shall meet;\nAnd thence from Athens turn away our eyes,\nTo seek new friends and stranger companies.\nFarewell, sweet playfellow: pray thou for us;\nAnd good luck grant thee thy Demetrius!\nKeep word, Lysander: we must starve our sight\nFrom lovers' food till morrow deep midnight.\n\nLYSANDER:\nI will, my Hermia.\nHelena, adieu:\nAs you on him, Demetrius dote on you!\n\nHELENA:\nHow happy some o'er other some can be!\nThrough Athens I am thought as fair as she.\nBut what of that? Demetrius thinks not so;\nHe will not know what all but he do know:\nAnd as he errs, doting on Hermia's eyes,\nSo I, admiring of his qualities:\nThings base and vile, folding no quantity,\nLove can transpose to form and dignity:\nLove looks not with the eyes, but with the mind;\nAnd therefore is wing'd Cupid painted blind:\nNor hath Love's mind of any judgement taste;\nWings and no eyes figure unheedy haste:\nAnd therefore is Love said to be a child,\nBecause in choice he is so oft beguiled.\nAs waggish boys in game themselves forswear,\nSo the boy Love is perjured every where:\nFor ere Demetrius look'd on Hermia's eyne,\nHe hail'd down oaths that he was only mine;\nAnd when this hail some heat from Hermia felt,\nSo he dissolved, and showers of oaths did melt.\nI will go tell him of fair Hermia's flight:\nThen to the wood will he to-morrow night\nPursue her; and for this intelligence\nIf I have thanks, it is a dear expense:\nBut herein mean I to enrich my pain,\nTo have his sight thither and back again.\n\nQUINCE:\nIs all our company here?\n\nBOTTOM:\nYou were best to call them generally, man by man,\naccording to the scrip.\n\nQUINCE:\nHere is the scroll of every man's name, which is\nthought fit, through all Athens, to play in our\ninterlude before the duke and the duchess, on his\nwedding-day at night.\n\nBOTTOM:\nFirst, good Peter Quince, say what the play treats\non, then read the names of the actors, and so grow\nto a point.\n\nQUINCE:\nMarry, our play is, The most lamentable comedy, and\nmost cruel death of Pyramus and Thisby.\n\nBOTTOM:\nA very good piece of work, I assure you, and a\nmerry. Now, good Peter Quince, call forth your\nactors by the scroll. Masters, spread yourselves.\n\nQUINCE:\nAnswer as I call you. Nick Bottom, the weaver.\n\nBOTTOM:\nReady. Name what part I am for, and proceed.\n\nQUINCE:\nYou, Nick Bottom, are set down for Pyramus.\n\nBOTTOM:\nWhat is Pyramus? a lover, or a tyrant?\n\nQUINCE:\nA lover, that kills himself most gallant for love.\n\nBOTTOM:\nThat will ask some tears in the true performing of\nit: if I do it, let the audience look to their\neyes; I will move storms, I will condole in some\nmeasure. To the rest: yet my chief humour is for a\ntyrant: I could play Ercles rarely, or a part to\ntear a cat in, to make all split.\nThe raging rocks\nAnd shivering shocks\nShall break the locks\nOf prison gates;\nAnd Phibbus' car\nShall shine from far\nAnd make and mar\nThe foolish Fates.\nThis was lofty! Now name the rest of the players.\nThis is Ercles' vein, a tyrant's vein; a lover is\nmore condoling.\n\nQUINCE:\nFrancis Flute, the bellows-mender.\n\nFLUTE:\nHere, Peter Quince.\n\nQUINCE:\nFlute, you must take Thisby on you.\n\nFLUTE:\nWhat is Thisby? a wandering knight?\n\nQUINCE:\nIt is the lady that Pyramus must love.\n\nFLUTE:\nNay, faith, let me not play a woman; I have a beard coming.\n\nQUINCE:\nThat's all one: you shall play it in a mask, and\nyou may speak as small as you will.\n\nBOTTOM:\nAn I may hide my face, let me play Thisby too, I'll\nspeak in a monstrous little voice. 'Thisne,\nThisne;' 'Ah, Pyramus, lover dear! thy Thisby dear,\nand lady dear!'\n\nQUINCE:\nNo, no; you must play Pyramus: and, Flute, you Thisby.\n\nBOTTOM:\nWell, proceed.\n\nQUINCE:\nRobin Starveling, the tailor.\n\nSTARVELING:\nHere, Peter Quince.\n\nQUINCE:\nRobin Starveling, you must play Thisby's mother.\nTom Snout, the tinker.\n\nSNOUT:\nHere, Peter Quince.\n\nQUINCE:\nYou, Pyramus' father: myself, Thisby's father:\nSnug, the joiner; you, the lion's part: and, I\nhope, here is a play fitted.\n\nSNUG:\nHave you the lion's part written? pray you, if it\nbe, give it me, for I am slow of study.\n\nQUINCE:\nYou may do it extempore, for it is nothing but roaring.\n\nBOTTOM:\nLet me play the lion too: I will roar, that I will\ndo any man's heart good to hear me; I will roar,\nthat I will make the duke say 'Let him roar again,\nlet him roar again.'\n\nQUINCE:\nAn you should do it too terribly, you would fright\nthe duchess and the ladies, that they would shriek;\nand that were enough to hang us all.\n\nALL:\nThat would hang us, every mother's son.\n\nBOTTOM:\nI grant you, friends, if that you should fright the\nladies out of their wits, they would have no more\ndiscretion but to hang us: but I will aggravate my\nvoice so that I will roar you as gently as any\nsucking dove; I will roar you an 'twere any\nnightingale.\n\nQUINCE:\nYou can play no part but Pyramus; for Pyramus is a\nsweet-faced man; a proper man, as one shall see in a\nsummer's day; a most lovely gentleman-like man:\ntherefore you must needs play Pyramus.\n\nBOTTOM:\nWell, I will undertake it. What beard were I best\nto play it in?\n\nQUINCE:\nWhy, what you will.\n\nBOTTOM:\nI will discharge it in either your straw-colour\nbeard, your orange-tawny beard, your purple-in-grain\nbeard, or your French-crown-colour beard, your\nperfect yellow.\n\nQUINCE:\nSome of your French crowns have no hair at all, and\nthen you will play bare-faced. But, masters, here\nare your parts: and I am to entreat you, request\nyou and desire you, to con them by to-morrow night;\nand meet me in the palace wood, a mile without the\ntown, by moonlight; there will we rehearse, for if\nwe meet in the city, we shall be dogged with\ncompany, and our devices known. In the meantime I\nwill draw a bill of properties, such as our play\nwants. I pray you, fail me not.\n\nBOTTOM:\nWe will meet; and there we may rehearse most\nobscenely and courageously. Take pains; be perfect: adieu.\n\nQUINCE:\nAt the duke's oak we meet.\n\nBOTTOM:\nEnough; hold or cut bow-strings.\n\nPUCK:\nHow now, spirit! whither wander you?\n\nFairy:\nOver hill, over dale,\nThorough bush, thorough brier,\nOver park, over pale,\nThorough flood, thorough fire,\nI do wander everywhere,\nSwifter than the moon's sphere;\nAnd I serve the fairy queen,\nTo dew her orbs upon the green.\nThe cowslips tall her pensioners be:\nIn their gold coats spots you see;\nThose be rubies, fairy favours,\nIn those freckles live their savours:\nI must go seek some dewdrops here\nAnd hang a pearl in every cowslip's ear.\nFarewell, thou lob of spirits; I'll be gone:\nOur queen and all our elves come here anon.\n\nPUCK:\nThe king doth keep his revels here to-night:\nTake heed the queen come not within his sight;\nFor Oberon is passing fell and wrath,\nBecause that she as her attendant hath\nA lovely boy, stolen from an Indian king;\nShe never had so sweet a changeling;\nAnd jealous Oberon would have the child\nKnight of his train, to trace the forests wild;\nBut she perforce withholds the loved boy,\nCrowns him with flowers and makes him all her joy:\nAnd now they never meet in grove or green,\nBy fountain clear, or spangled starlight sheen,\nBut, they do square, that all their elves for fear\nCreep into acorn-cups and hide them there.\n\nFairy:\nEither I mistake your shape and making quite,\nOr else you are that shrewd and knavish sprite\nCall'd Robin Goodfellow: are not you he\nThat frights the maidens of the villagery;\nSkim milk, and sometimes labour in the quern\nAnd bootless make the breathless housewife churn;\nAnd sometime make the drink to bear no barm;\nMislead night-wanderers, laughing at their harm?\nThose that Hobgoblin call you and sweet Puck,\nYou do their work, and they shall have good luck:\nAre not you he?\n\nPUCK:\nThou speak'st aright;\nI am that merry wanderer of the night.\nI jest to Oberon and make him smile\nWhen I a fat and bean-fed horse beguile,\nNeighing in likeness of a filly foal:\nAnd sometime lurk I in a gossip's bowl,\nIn very likeness of a roasted crab,\nAnd when she drinks, against her lips I bob\nAnd on her wither'd dewlap pour the ale.\nThe wisest aunt, telling the saddest tale,\nSometime for three-foot stool mistaketh me;\nThen slip I from her bum, down topples she,\nAnd 'tailor' cries, and falls into a cough;\nAnd then the whole quire hold their hips and laugh,\nAnd waxen in their mirth and neeze and swear\nA merrier hour was never wasted there.\nBut, room, fairy! here comes Oberon.\n\nFairy:\nAnd here my mistress. Would that he were gone!\n\nOBERON:\nIll met by moonlight, proud Titania.\n\nTITANIA:\nWhat, jealous Oberon! Fairies, skip hence:\nI have forsworn his bed and company.\n\nOBERON:\nTarry, rash wanton: am not I thy lord?\n\nTITANIA:\nThen I must be thy lady: but I know\nWhen thou hast stolen away from fairy land,\nAnd in the shape of Corin sat all day,\nPlaying on pipes of corn and versing love\nTo amorous Phillida. Why art thou here,\nCome from the farthest Steppe of India?\nBut that, forsooth, the bouncing Amazon,\nYour buskin'd mistress and your warrior love,\nTo Theseus must be wedded, and you come\nTo give their bed joy and prosperity.\n\nOBERON:\nHow canst thou thus for shame, Titania,\nGlance at my credit with Hippolyta,\nKnowing I know thy love to Theseus?\nDidst thou not lead him through the glimmering night\nFrom Perigenia, whom he ravished?\nAnd make him with fair AEgle break his faith,\nWith Ariadne and Antiopa?\n\nTITANIA:\nThese are the forgeries of jealousy:\nAnd never, since the middle summer's spring,\nMet we on hill, in dale, forest or mead,\nBy paved fountain or by rushy brook,\nOr in the beached margent of the sea,\nTo dance our ringlets to the whistling wind,\nBut with thy brawls thou hast disturb'd our sport.\nTherefore the winds, piping to us in vain,\nAs in revenge, have suck'd up from the sea\nContagious fogs; which falling in the land\nHave every pelting river made so proud\nThat they have overborne their continents:\nThe ox hath therefore stretch'd his yoke in vain,\nThe ploughman lost his sweat, and the green corn\nHath rotted ere his youth attain'd a beard;\nThe fold stands empty in the drowned field,\nAnd crows are fatted with the murrion flock;\nThe nine men's morris is fill'd up with mud,\nAnd the quaint mazes in the wanton green\nFor lack of tread are undistinguishable:\nThe human mortals want their winter here;\nNo night is now with hymn or carol blest:\nTherefore the moon, the governess of floods,\nPale in her anger, washes all the air,\nThat rheumatic diseases do abound:\nAnd thorough this distemperature we see\nThe seasons alter: hoary-headed frosts\nFar in the fresh lap of the crimson rose,\nAnd on old Hiems' thin and icy crown\nAn odorous chaplet of sweet summer buds\nIs, as in mockery, set: the spring, the summer,\nThe childing autumn, angry winter, change\nTheir wonted liveries, and the mazed world,\nBy their increase, now knows not which is which:\nAnd this same progeny of evils comes\nFrom our debate, from our dissension;\nWe are their parents and original.\n\nOBERON:\nDo you amend it then; it lies in you:\nWhy should Titania cross her Oberon?\nI do but beg a little changeling boy,\nTo be my henchman.\n\nTITANIA:\nSet your heart at rest:\nThe fairy land buys not the child of me.\nHis mother was a votaress of my order:\nAnd, in the spiced Indian air, by night,\nFull often hath she gossip'd by my side,\nAnd sat with me on Neptune's yellow sands,\nMarking the embarked traders on the flood,\nWhen we have laugh'd to see the sails conceive\nAnd grow big-bellied with the wanton wind;\nWhich she, with pretty and with swimming gait\nFollowing,--her womb then rich with my young squire,--\nWould imitate, and sail upon the land,\nTo fetch me trifles, and return again,\nAs from a voyage, rich with merchandise.\nBut she, being mortal, of that boy did die;\nAnd for her sake do I rear up her boy,\nAnd for her sake I will not part with him.\n\nOBERON:\nHow long within this wood intend you stay?\n\nTITANIA:\nPerchance till after Theseus' wedding-day.\nIf you will patiently dance in our round\nAnd see our moonlight revels, go with us;\nIf not, shun me, and I will spare your haunts.\n\nOBERON:\nGive me that boy, and I will go with thee.\n\nTITANIA:\nNot for thy fairy kingdom. Fairies, away!\nWe shall chide downright, if I longer stay.\n\nOBERON:\nWell, go thy way: thou shalt not from this grove\nTill I torment thee for this injury.\nMy gentle Puck, come hither. Thou rememberest\nSince once I sat upon a promontory,\nAnd heard a mermaid on a dolphin's back\nUttering such dulcet and harmonious breath\nThat the rude sea grew civil at her song\nAnd certain stars shot madly from their spheres,\nTo hear the sea-maid's music.\n\nPUCK:\nI remember.\n\nOBERON:\nThat very time I saw, but thou couldst not,\nFlying between the cold moon and the earth,\nCupid all arm'd: a certain aim he took\nAt a fair vestal throned by the west,\nAnd loosed his love-shaft smartly from his bow,\nAs it should pierce a hundred thousand hearts;\nBut I might see young Cupid's fiery shaft\nQuench'd in the chaste beams of the watery moon,\nAnd the imperial votaress passed on,\nIn maiden meditation, fancy-free.\nYet mark'd I where the bolt of Cupid fell:\nIt fell upon a little western flower,\nBefore milk-white, now purple with love's wound,\nAnd maidens call it love-in-idleness.\nFetch me that flower; the herb I shew'd thee once:\nThe juice of it on sleeping eye-lids laid\nWill make or man or woman madly dote\nUpon the next live creature that it sees.\nFetch me this herb; and be thou here again\nEre the leviathan can swim a league.\n\nPUCK:\nI'll put a girdle round about the earth\nIn forty minutes.\n\nOBERON:\nHaving once this juice,\nI'll watch Titania when she is asleep,\nAnd drop the liquor of it in her eyes.\nThe next thing then she waking looks upon,\nBe it on lion, bear, or wolf, or bull,\nOn meddling monkey, or on busy ape,\nShe shall pursue it with the soul of love:\nAnd ere I take this charm from off her sight,\nAs I can take it with another herb,\nI'll make her render up her page to me.\nBut who comes here? I am invisible;\nAnd I will overhear their conference.\n\nDEMETRIUS:\nI love thee not, therefore pursue me not.\nWhere is Lysander and fair Hermia?\nThe one I'll slay, the other slayeth me.\nThou told'st me they were stolen unto this wood;\nAnd here am I, and wode within this wood,\nBecause I cannot meet my Hermia.\nHence, get thee gone, and follow me no more.\n\nHELENA:\nYou draw me, you hard-hearted adamant;\nBut yet you draw not iron, for my heart\nIs true as steel: leave you your power to draw,\nAnd I shall have no power to follow you.\n\nDEMETRIUS:\nDo I entice you? do I speak you fair?\nOr, rather, do I not in plainest truth\nTell you, I do not, nor I cannot love you?\n\nHELENA:\nAnd even for that do I love you the more.\nI am your spaniel; and, Demetrius,\nThe more you beat me, I will fawn on you:\nUse me but as your spaniel, spurn me, strike me,\nNeglect me, lose me; only give me leave,\nUnworthy as I am, to follow you.\nWhat worser place can I beg in your love,--\nAnd yet a place of high respect with me,--\nThan to be used as you use your dog?\n\nDEMETRIUS:\nTempt not too much the hatred of my spirit;\nFor I am sick when I do look on thee.\n\nHELENA:\nAnd I am sick when I look not on you.\n\nDEMETRIUS:\nYou do impeach your modesty too much,\nTo leave the city and commit yourself\nInto the hands of one that loves you not;\nTo trust the opportunity of night\nAnd the ill counsel of a desert place\nWith the rich worth of your virginity.\n\nHELENA:\nYour virtue is my privilege: for that\nIt is not night when I do see your face,\nTherefore I think I am not in the night;\nNor doth this wood lack worlds of company,\nFor you in my respect are all the world:\nThen how can it be said I am alone,\nWhen all the world is here to look on me?\n\nDEMETRIUS:\nI'll run from thee and hide me in the brakes,\nAnd leave thee to the mercy of wild beasts.\n\nHELENA:\nThe wildest hath not such a heart as you.\nRun when you will, the story shall be changed:\nApollo flies, and Daphne holds the chase;\nThe dove pursues the griffin; the mild hind\nMakes speed to catch the tiger; bootless speed,\nWhen cowardice pursues and valour flies.\n\nDEMETRIUS:\nI will not stay thy questions; let me go:\nOr, if thou follow me, do not believe\nBut I shall do thee mischief in the wood.\n\nHELENA:\nAy, in the temple, in the town, the field,\nYou do me mischief. Fie, Demetrius!\nYour wrongs do set a scandal on my sex:\nWe cannot fight for love, as men may do;\nWe should be wood and were not made to woo.\nI'll follow thee and make a heaven of hell,\nTo die upon the hand I love so well.\n\nOBERON:\nFare thee well, nymph: ere he do leave this grove,\nThou shalt fly him and he shall seek thy love.\nHast thou the flower there? Welcome, wanderer.\n\nPUCK:\nAy, there it is.\n\nOBERON:\nI pray thee, give it me.\nI know a bank where the wild thyme blows,\nWhere oxlips and the nodding violet grows,\nQuite over-canopied with luscious woodbine,\nWith sweet musk-roses and with eglantine:\nThere sleeps Titania sometime of the night,\nLull'd in these flowers with dances and delight;\nAnd there the snake throws her enamell'd skin,\nWeed wide enough to wrap a fairy in:\nAnd with the juice of this I'll streak her eyes,\nAnd make her full of hateful fantasies.\nTake thou some of it, and seek through this grove:\nA sweet Athenian lady is in love\nWith a disdainful youth: anoint his eyes;\nBut do it when the next thing he espies\nMay be the lady: thou shalt know the man\nBy the Athenian garments he hath on.\nEffect it with some care, that he may prove\nMore fond on her than she upon her love:\nAnd look thou meet me ere the first cock crow.\n\nPUCK:\nFear not, my lord, your servant shall do so.\n\nTITANIA:\nCome, now a roundel and a fairy song;\nThen, for the third part of a minute, hence;\nSome to kill cankers in the musk-rose buds,\nSome war with rere-mice for their leathern wings,\nTo make my small elves coats, and some keep back\nThe clamorous owl that nightly hoots and wonders\nAt our quaint spirits. Sing me now asleep;\nThen to your offices and let me rest.\nYou spotted snakes with double tongue,\nThorny hedgehogs, be not seen;\nNewts and blind-worms, do no wrong,\nCome not near our fairy queen.\nPhilomel, with melody\nSing in our sweet lullaby;\nLulla, lulla, lullaby, lulla, lulla, lullaby:\nNever harm,\nNor spell nor charm,\nCome our lovely lady nigh;\nSo, good night, with lullaby.\nWeaving spiders, come not here;\nHence, you long-legg'd spinners, hence!\nBeetles black, approach not near;\nWorm nor snail, do no offence.\nPhilomel, with melody, &c.\n\nFairy:\nHence, away! now all is well:\nOne aloof stand sentinel.\n\nOBERON:\nWhat thou seest when thou dost wake,\nDo it for thy true-love take,\nLove and languish for his sake:\nBe it ounce, or cat, or bear,\nPard, or boar with bristled hair,\nIn thy eye that shall appear\nWhen thou wakest, it is thy dear:\nWake when some vile thing is near.\n\nLYSANDER:\nFair love, you faint with wandering in the wood;\nAnd to speak troth, I have forgot our way:\nWe'll rest us, Hermia, if you think it good,\nAnd tarry for the comfort of the day.\n\nHERMIA:\nBe it so, Lysander: find you out a bed;\nFor I upon this bank will rest my head.\n\nLYSANDER:\nOne turf shall serve as pillow for us both;\nOne heart, one bed, two bosoms and one troth.\n\nHERMIA:\nNay, good Lysander; for my sake, my dear,\nLie further off yet, do not lie so near.\n\nLYSANDER:\nO, take the sense, sweet, of my innocence!\nLove takes the meaning in love's conference.\nI mean, that my heart unto yours is knit\nSo that but one heart we can make of it;\nTwo bosoms interchained with an oath;\nSo then two bosoms and a single troth.\nThen by your side no bed-room me deny;\nFor lying so, Hermia, I do not lie.\n\nHERMIA:\nLysander riddles very prettily:\nNow much beshrew my manners and my pride,\nIf Hermia meant to say Lysander lied.\nBut, gentle friend, for love and courtesy\nLie further off; in human modesty,\nSuch separation as may well be said\nBecomes a virtuous bachelor and a maid,\nSo far be distant; and, good night, sweet friend:\nThy love ne'er alter till thy sweet life end!\n\nLYSANDER:\nAmen, amen, to that fair prayer, say I;\nAnd then end life when I end loyalty!\nHere is my bed: sleep give thee all his rest!\n\nHERMIA:\nWith half that wish the wisher's eyes be press'd!\n\nPUCK:\nThrough the forest have I gone.\nBut Athenian found I none,\nOn whose eyes I might approve\nThis flower's force in stirring love.\nNight and silence.--Who is here?\nWeeds of Athens he doth wear:\nThis is he, my master said,\nDespised the Athenian maid;\nAnd here the maiden, sleeping sound,\nOn the dank and dirty ground.\nPretty soul! she durst not lie\nNear this lack-love, this kill-courtesy.\nChurl, upon thy eyes I throw\nAll the power this charm doth owe.\nWhen thou wakest, let love forbid\nSleep his seat on thy eyelid:\nSo awake when I am gone;\nFor I must now to Oberon.\n\nHELENA:\nStay, though thou kill me, sweet Demetrius.\n\nDEMETRIUS:\nI charge thee, hence, and do not haunt me thus.\n\nHELENA:\nO, wilt thou darkling leave me? do not so.\n\nDEMETRIUS:\nStay, on thy peril: I alone will go.\n\nHELENA:\nO, I am out of breath in this fond chase!\nThe more my prayer, the lesser is my grace.\nHappy is Hermia, wheresoe'er she lies;\nFor she hath blessed and attractive eyes.\nHow came her eyes so bright? Not with salt tears:\nIf so, my eyes are oftener wash'd than hers.\nNo, no, I am as ugly as a bear;\nFor beasts that meet me run away for fear:\nTherefore no marvel though Demetrius\nDo, as a monster fly my presence thus.\nWhat wicked and dissembling glass of mine\nMade me compare with Hermia's sphery eyne?\nBut who is here? Lysander! on the ground!\nDead? or asleep? I see no blood, no wound.\nLysander if you live, good sir, awake.\n\nLYSANDER:\n\nHELENA:\nDo not say so, Lysander; say not so\nWhat though he love your Hermia? Lord, what though?\nYet Hermia still loves you: then be content.\n\nLYSANDER:\nContent with Hermia! No; I do repent\nThe tedious minutes I with her have spent.\nNot Hermia but Helena I love:\nWho will not change a raven for a dove?\nThe will of man is by his reason sway'd;\nAnd reason says you are the worthier maid.\nThings growing are not ripe until their season\nSo I, being young, till now ripe not to reason;\nAnd touching now the point of human skill,\nReason becomes the marshal to my will\nAnd leads me to your eyes, where I o'erlook\nLove's stories written in love's richest book.\n\nHELENA:\nWherefore was I to this keen mockery born?\nWhen at your hands did I deserve this scorn?\nIs't not enough, is't not enough, young man,\nThat I did never, no, nor never can,\nDeserve a sweet look from Demetrius' eye,\nBut you must flout my insufficiency?\nGood troth, you do me wrong, good sooth, you do,\nIn such disdainful manner me to woo.\nBut fare you well: perforce I must confess\nI thought you lord of more true gentleness.\nO, that a lady, of one man refused.\nShould of another therefore be abused!\n\nLYSANDER:\nShe sees not Hermia. Hermia, sleep thou there:\nAnd never mayst thou come Lysander near!\nFor as a surfeit of the sweetest things\nThe deepest loathing to the stomach brings,\nOr as tie heresies that men do leave\nAre hated most of those they did deceive,\nSo thou, my surfeit and my heresy,\nOf all be hated, but the most of me!\nAnd, all my powers, address your love and might\nTo honour Helen and to be her knight!\n\nHERMIA:\n\nBOTTOM:\nAre we all met?\n\nQUINCE:\nPat, pat; and here's a marvellous convenient place\nfor our rehearsal. This green plot shall be our\nstage, this hawthorn-brake our tiring-house; and we\nwill do it in action as we will do it before the duke.\n\nBOTTOM:\nPeter Quince,--\n\nQUINCE:\nWhat sayest thou, bully Bottom?\n\nBOTTOM:\nThere are things in this comedy of Pyramus and\nThisby that will never please. First, Pyramus must\ndraw a sword to kill himself; which the ladies\ncannot abide. How answer you that?\n\nSNOUT:\nBy'r lakin, a parlous fear.\n\nSTARVELING:\nI believe we must leave the killing out, when all is done.\n\nBOTTOM:\nNot a whit: I have a device to make all well.\nWrite me a prologue; and let the prologue seem to\nsay, we will do no harm with our swords, and that\nPyramus is not killed indeed; and, for the more\nbetter assurance, tell them that I, Pyramus, am not\nPyramus, but Bottom the weaver: this will put them\nout of fear.\n\nQUINCE:\nWell, we will have such a prologue; and it shall be\nwritten in eight and six.\n\nBOTTOM:\nNo, make it two more; let it be written in eight and eight.\n\nSNOUT:\nWill not the ladies be afeard of the lion?\n\nSTARVELING:\nI fear it, I promise you.\n\nBOTTOM:\nMasters, you ought to consider with yourselves: to\nbring in--God shield us!--a lion among ladies, is a\nmost dreadful thing; for there is not a more fearful\nwild-fowl than your lion living; and we ought to\nlook to 't.\n\nSNOUT:\nTherefore another prologue must tell he is not a lion.\n\nBOTTOM:\nNay, you must name his name, and half his face must\nbe seen through the lion's neck: and he himself\nmust speak through, saying thus, or to the same\ndefect,--'Ladies,'--or 'Fair-ladies--I would wish\nYou,'--or 'I would request you,'--or 'I would\nentreat you,--not to fear, not to tremble: my life\nfor yours. If you think I come hither as a lion, it\nwere pity of my life: no I am no such thing; I am a\nman as other men are;' and there indeed let him name\nhis name, and tell them plainly he is Snug the joiner.\n\nQUINCE:\nWell it shall be so. But there is two hard things;\nthat is, to bring the moonlight into a chamber; for,\nyou know, Pyramus and Thisby meet by moonlight.\n\nSNOUT:\nDoth the moon shine that night we play our play?\n\nBOTTOM:\nA calendar, a calendar! look in the almanac; find\nout moonshine, find out moonshine.\n\nQUINCE:\nYes, it doth shine that night.\n\nBOTTOM:\nWhy, then may you leave a casement of the great\nchamber window, where we play, open, and the moon\nmay shine in at the casement.\n\nQUINCE:\nAy; or else one must come in with a bush of thorns\nand a lanthorn, and say he comes to disfigure, or to\npresent, the person of Moonshine. Then, there is\nanother thing: we must have a wall in the great\nchamber; for Pyramus and Thisby says the story, did\ntalk through the chink of a wall.\n\nSNOUT:\nYou can never bring in a wall. What say you, Bottom?\n\nBOTTOM:\nSome man or other must present Wall: and let him\nhave some plaster, or some loam, or some rough-cast\nabout him, to signify wall; and let him hold his\nfingers thus, and through that cranny shall Pyramus\nand Thisby whisper.\n\nQUINCE:\nIf that may be, then all is well. Come, sit down,\nevery mother's son, and rehearse your parts.\nPyramus, you begin: when you have spoken your\nspeech, enter into that brake: and so every one\naccording to his cue.\n\nPUCK:\nWhat hempen home-spuns have we swaggering here,\nSo near the cradle of the fairy queen?\nWhat, a play toward! I'll be an auditor;\nAn actor too, perhaps, if I see cause.\n\nQUINCE:\nSpeak, Pyramus. Thisby, stand forth.\n\nBOTTOM:\nThisby, the flowers of odious savours sweet,--\n\nQUINCE:\nOdours, odours.\n\nBOTTOM:\n--odours savours sweet:\nSo hath thy breath, my dearest Thisby dear.\nBut hark, a voice! stay thou but here awhile,\nAnd by and by I will to thee appear.\n\nPUCK:\nA stranger Pyramus than e'er played here.\n\nFLUTE:\nMust I speak now?\n\nQUINCE:\nAy, marry, must you; for you must understand he goes\nbut to see a noise that he heard, and is to come again.\n\nFLUTE:\nMost radiant Pyramus, most lily-white of hue,\nOf colour like the red rose on triumphant brier,\nMost brisky juvenal and eke most lovely Jew,\nAs true as truest horse that yet would never tire,\nI'll meet thee, Pyramus, at Ninny's tomb.\n\nQUINCE:\n'Ninus' tomb,' man: why, you must not speak that\nyet; that you answer to Pyramus: you speak all your\npart at once, cues and all Pyramus enter: your cue\nis past; it is, 'never tire.'\n\nFLUTE:\nO,--As true as truest horse, that yet would\nnever tire.\n\nBOTTOM:\nIf I were fair, Thisby, I were only thine.\n\nQUINCE:\nO monstrous! O strange! we are haunted. Pray,\nmasters! fly, masters! Help!\n\nPUCK:\nI'll follow you, I'll lead you about a round,\nThrough bog, through bush, through brake, through brier:\nSometime a horse I'll be, sometime a hound,\nA hog, a headless bear, sometime a fire;\nAnd neigh, and bark, and grunt, and roar, and burn,\nLike horse, hound, hog, bear, fire, at every turn.\n\nBOTTOM:\nWhy do they run away? this is a knavery of them to\nmake me afeard.\n\nSNOUT:\nO Bottom, thou art changed! what do I see on thee?\n\nBOTTOM:\nWhat do you see? you see an asshead of your own, do\nyou?\n\nQUINCE:\nBless thee, Bottom! bless thee! thou art\ntranslated.\n\nBOTTOM:\nI see their knavery: this is to make an ass of me;\nto fright me, if they could. But I will not stir\nfrom this place, do what they can: I will walk up\nand down here, and I will sing, that they shall hear\nI am not afraid.\nThe ousel cock so black of hue,\nWith orange-tawny bill,\nThe throstle with his note so true,\nThe wren with little quill,--\n\nTITANIA:\n\nBOTTOM:\n\nTITANIA:\nI pray thee, gentle mortal, sing again:\nMine ear is much enamour'd of thy note;\nSo is mine eye enthralled to thy shape;\nAnd thy fair virtue's force perforce doth move me\nOn the first view to say, to swear, I love thee.\n\nBOTTOM:\nMethinks, mistress, you should have little reason\nfor that: and yet, to say the truth, reason and\nlove keep little company together now-a-days; the\nmore the pity that some honest neighbours will not\nmake them friends. Nay, I can gleek upon occasion.\n\nTITANIA:\nThou art as wise as thou art beautiful.\n\nBOTTOM:\nNot so, neither: but if I had wit enough to get out\nof this wood, I have enough to serve mine own turn.\n\nTITANIA:\nOut of this wood do not desire to go:\nThou shalt remain here, whether thou wilt or no.\nI am a spirit of no common rate;\nThe summer still doth tend upon my state;\nAnd I do love thee: therefore, go with me;\nI'll give thee fairies to attend on thee,\nAnd they shall fetch thee jewels from the deep,\nAnd sing while thou on pressed flowers dost sleep;\nAnd I will purge thy mortal grossness so\nThat thou shalt like an airy spirit go.\nPeaseblossom! Cobweb! Moth! and Mustardseed!\n\nPEASEBLOSSOM:\nReady.\n\nCOBWEB:\nAnd I.\n\nMOTH:\nAnd I.\n\nMUSTARDSEED:\nAnd I.\n\nALL:\nWhere shall we go?\n\nTITANIA:\nBe kind and courteous to this gentleman;\nHop in his walks and gambol in his eyes;\nFeed him with apricocks and dewberries,\nWith purple grapes, green figs, and mulberries;\nThe honey-bags steal from the humble-bees,\nAnd for night-tapers crop their waxen thighs\nAnd light them at the fiery glow-worm's eyes,\nTo have my love to bed and to arise;\nAnd pluck the wings from Painted butterflies\nTo fan the moonbeams from his sleeping eyes:\nNod to him, elves, and do him courtesies.\n\nPEASEBLOSSOM:\nHail, mortal!\n\nCOBWEB:\nHail!\n\nMOTH:\nHail!\n\nMUSTARDSEED:\nHail!\n\nBOTTOM:\nI cry your worship's mercy, heartily: I beseech your\nworship's name.\n\nCOBWEB:\nCobweb.\n\nBOTTOM:\nI shall desire you of more acquaintance, good Master\nCobweb: if I cut my finger, I shall make bold with\nyou. Your name, honest gentleman?\n\nPEASEBLOSSOM:\nPeaseblossom.\n\nBOTTOM:\nI pray you, commend me to Mistress Squash, your\nmother, and to Master Peascod, your father. Good\nMaster Peaseblossom, I shall desire you of more\nacquaintance too. Your name, I beseech you, sir?\n\nMUSTARDSEED:\nMustardseed.\n\nBOTTOM:\nGood Master Mustardseed, I know your patience well:\nthat same cowardly, giant-like ox-beef hath\ndevoured many a gentleman of your house: I promise\nyou your kindred had made my eyes water ere now. I\ndesire your more acquaintance, good Master\nMustardseed.\n\nTITANIA:\nCome, wait upon him; lead him to my bower.\nThe moon methinks looks with a watery eye;\nAnd when she weeps, weeps every little flower,\nLamenting some enforced chastity.\nTie up my love's tongue bring him silently.\n\nOBERON:\nI wonder if Titania be awaked;\nThen, what it was that next came in her eye,\nWhich she must dote on in extremity.\nHere comes my messenger.\nHow now, mad spirit!\nWhat night-rule now about this haunted grove?\n\nPUCK:\nMy mistress with a monster is in love.\nNear to her close and consecrated bower,\nWhile she was in her dull and sleeping hour,\nA crew of patches, rude mechanicals,\nThat work for bread upon Athenian stalls,\nWere met together to rehearse a play\nIntended for great Theseus' nuptial-day.\nThe shallowest thick-skin of that barren sort,\nWho Pyramus presented, in their sport\nForsook his scene and enter'd in a brake\nWhen I did him at this advantage take,\nAn ass's nole I fixed on his head:\nAnon his Thisbe must be answered,\nAnd forth my mimic comes. When they him spy,\nAs wild geese that the creeping fowler eye,\nOr russet-pated choughs, many in sort,\nRising and cawing at the gun's report,\nSever themselves and madly sweep the sky,\nSo, at his sight, away his fellows fly;\nAnd, at our stamp, here o'er and o'er one falls;\nHe murder cries and help from Athens calls.\nTheir sense thus weak, lost with their fears\nthus strong,\nMade senseless things begin to do them wrong;\nFor briers and thorns at their apparel snatch;\nSome sleeves, some hats, from yielders all\nthings catch.\nI led them on in this distracted fear,\nAnd left sweet Pyramus translated there:\nWhen in that moment, so it came to pass,\nTitania waked and straightway loved an ass.\n\nOBERON:\nThis falls out better than I could devise.\nBut hast thou yet latch'd the Athenian's eyes\nWith the love-juice, as I did bid thee do?\n\nPUCK:\nI took him sleeping,--that is finish'd too,--\nAnd the Athenian woman by his side:\nThat, when he waked, of force she must be eyed.\n\nOBERON:\nStand close: this is the same Athenian.\n\nPUCK:\nThis is the woman, but not this the man.\n\nDEMETRIUS:\nO, why rebuke you him that loves you so?\nLay breath so bitter on your bitter foe.\n\nHERMIA:\nNow I but chide; but I should use thee worse,\nFor thou, I fear, hast given me cause to curse,\nIf thou hast slain Lysander in his sleep,\nBeing o'er shoes in blood, plunge in the deep,\nAnd kill me too.\nThe sun was not so true unto the day\nAs he to me: would he have stolen away\nFrom sleeping Hermia? I'll believe as soon\nThis whole earth may be bored and that the moon\nMay through the centre creep and so displease\nHer brother's noontide with Antipodes.\nIt cannot be but thou hast murder'd him;\nSo should a murderer look, so dead, so grim.\n\nDEMETRIUS:\nSo should the murder'd look, and so should I,\nPierced through the heart with your stern cruelty:\nYet you, the murderer, look as bright, as clear,\nAs yonder Venus in her glimmering sphere.\n\nHERMIA:\nWhat's this to my Lysander? where is he?\nAh, good Demetrius, wilt thou give him me?\n\nDEMETRIUS:\nI had rather give his carcass to my hounds.\n\nHERMIA:\nOut, dog! out, cur! thou drivest me past the bounds\nOf maiden's patience. Hast thou slain him, then?\nHenceforth be never number'd among men!\nO, once tell true, tell true, even for my sake!\nDurst thou have look'd upon him being awake,\nAnd hast thou kill'd him sleeping? O brave touch!\nCould not a worm, an adder, do so much?\nAn adder did it; for with doubler tongue\nThan thine, thou serpent, never adder stung.\n\nDEMETRIUS:\nYou spend your passion on a misprised mood:\nI am not guilty of Lysander's blood;\nNor is he dead, for aught that I can tell.\n\nHERMIA:\nI pray thee, tell me then that he is well.\n\nDEMETRIUS:\nAn if I could, what should I get therefore?\n\nHERMIA:\nA privilege never to see me more.\nAnd from thy hated presence part I so:\nSee me no more, whether he be dead or no.\n\nDEMETRIUS:\nThere is no following her in this fierce vein:\nHere therefore for a while I will remain.\nSo sorrow's heaviness doth heavier grow\nFor debt that bankrupt sleep doth sorrow owe:\nWhich now in some slight measure it will pay,\nIf for his tender here I make some stay.\n\nOBERON:\nWhat hast thou done? thou hast mistaken quite\nAnd laid the love-juice on some true-love's sight:\nOf thy misprision must perforce ensue\nSome true love turn'd and not a false turn'd true.\n\nPUCK:\nThen fate o'er-rules, that, one man holding troth,\nA million fail, confounding oath on oath.\n\nOBERON:\nAbout the wood go swifter than the wind,\nAnd Helena of Athens look thou find:\nAll fancy-sick she is and pale of cheer,\nWith sighs of love, that costs the fresh blood dear:\nBy some illusion see thou bring her here:\nI'll charm his eyes against she do appear.\n\nPUCK:\nI go, I go; look how I go,\nSwifter than arrow from the Tartar's bow.\n\nOBERON:\nFlower of this purple dye,\nHit with Cupid's archery,\nSink in apple of his eye.\nWhen his love he doth espy,\nLet her shine as gloriously\nAs the Venus of the sky.\nWhen thou wakest, if she be by,\nBeg of her for remedy.\n\nPUCK:\nCaptain of our fairy band,\nHelena is here at hand;\nAnd the youth, mistook by me,\nPleading for a lover's fee.\nShall we their fond pageant see?\nLord, what fools these mortals be!\n\nOBERON:\nStand aside: the noise they make\nWill cause Demetrius to awake.\n\nPUCK:\nThen will two at once woo one;\nThat must needs be sport alone;\nAnd those things do best please me\nThat befal preposterously.\n\nLYSANDER:\nWhy should you think that I should woo in scorn?\nScorn and derision never come in tears:\nLook, when I vow, I weep; and vows so born,\nIn their nativity all truth appears.\nHow can these things in me seem scorn to you,\nBearing the badge of faith, to prove them true?\n\nHELENA:\nYou do advance your cunning more and more.\nWhen truth kills truth, O devilish-holy fray!\nThese vows are Hermia's: will you give her o'er?\nWeigh oath with oath, and you will nothing weigh:\nYour vows to her and me, put in two scales,\nWill even weigh, and both as light as tales.\n\nLYSANDER:\nI had no judgment when to her I swore.\n\nHELENA:\nNor none, in my mind, now you give her o'er.\n\nLYSANDER:\nDemetrius loves her, and he loves not you.\n\nDEMETRIUS:\n\nHELENA:\nO spite! O hell! I see you all are bent\nTo set against me for your merriment:\nIf you we re civil and knew courtesy,\nYou would not do me thus much injury.\nCan you not hate me, as I know you do,\nBut you must join in souls to mock me too?\nIf you were men, as men you are in show,\nYou would not use a gentle lady so;\nTo vow, and swear, and superpraise my parts,\nWhen I am sure you hate me with your hearts.\nYou both are rivals, and love Hermia;\nAnd now both rivals, to mock Helena:\nA trim exploit, a manly enterprise,\nTo conjure tears up in a poor maid's eyes\nWith your derision! none of noble sort\nWould so offend a virgin, and extort\nA poor soul's patience, all to make you sport.\n\nLYSANDER:\nYou are unkind, Demetrius; be not so;\nFor you love Hermia; this you know I know:\nAnd here, with all good will, with all my heart,\nIn Hermia's love I yield you up my part;\nAnd yours of Helena to me bequeath,\nWhom I do love and will do till my death.\n\nHELENA:\nNever did mockers waste more idle breath.\n\nDEMETRIUS:\nLysander, keep thy Hermia; I will none:\nIf e'er I loved her, all that love is gone.\nMy heart to her but as guest-wise sojourn'd,\nAnd now to Helen is it home return'd,\nThere to remain.\n\nLYSANDER:\nHelen, it is not so.\n\nDEMETRIUS:\nDisparage not the faith thou dost not know,\nLest, to thy peril, thou aby it dear.\nLook, where thy love comes; yonder is thy dear.\n\nHERMIA:\nDark night, that from the eye his function takes,\nThe ear more quick of apprehension makes;\nWherein it doth impair the seeing sense,\nIt pays the hearing double recompense.\nThou art not by mine eye, Lysander, found;\nMine ear, I thank it, brought me to thy sound\nBut why unkindly didst thou leave me so?\n\nLYSANDER:\nWhy should he stay, whom love doth press to go?\n\nHERMIA:\nWhat love could press Lysander from my side?\n\nLYSANDER:\nLysander's love, that would not let him bide,\nFair Helena, who more engilds the night\nThan all you fiery oes and eyes of light.\nWhy seek'st thou me? could not this make thee know,\nThe hate I bear thee made me leave thee so?\n\nHERMIA:\nYou speak not as you think: it cannot be.\n\nHELENA:\nLo, she is one of this confederacy!\nNow I perceive they have conjoin'd all three\nTo fashion this false sport, in spite of me.\nInjurious Hermia! most ungrateful maid!\nHave you conspired, have you with these contrived\nTo bait me with this foul derision?\nIs all the counsel that we two have shared,\nThe sisters' vows, the hours that we have spent,\nWhen we have chid the hasty-footed time\nFor parting us,--O, is it all forgot?\nAll school-days' friendship, childhood innocence?\nWe, Hermia, like two artificial gods,\nHave with our needles created both one flower,\nBoth on one sampler, sitting on one cushion,\nBoth warbling of one song, both in one key,\nAs if our hands, our sides, voices and minds,\nHad been incorporate. So we grow together,\nLike to a double cherry, seeming parted,\nBut yet an union in partition;\nTwo lovely berries moulded on one stem;\nSo, with two seeming bodies, but one heart;\nTwo of the first, like coats in heraldry,\nDue but to one and crowned with one crest.\nAnd will you rent our ancient love asunder,\nTo join with men in scorning your poor friend?\nIt is not friendly, 'tis not maidenly:\nOur sex, as well as I, may chide you for it,\nThough I alone do feel the injury.\n\nHERMIA:\nI am amazed at your passionate words.\nI scorn you not: it seems that you scorn me.\n\nHELENA:\nHave you not set Lysander, as in scorn,\nTo follow me and praise my eyes and face?\nAnd made your other love, Demetrius,\nWho even but now did spurn me with his foot,\nTo call me goddess, nymph, divine and rare,\nPrecious, celestial? Wherefore speaks he this\nTo her he hates? and wherefore doth Lysander\nDeny your love, so rich within his soul,\nAnd tender me, forsooth, affection,\nBut by your setting on, by your consent?\nWhat thought I be not so in grace as you,\nSo hung upon with love, so fortunate,\nBut miserable most, to love unloved?\nThis you should pity rather than despise.\n\nHERNIA:\nI understand not what you mean by this.\n\nHELENA:\nAy, do, persever, counterfeit sad looks,\nMake mouths upon me when I turn my back;\nWink each at other; hold the sweet jest up:\nThis sport, well carried, shall be chronicled.\nIf you have any pity, grace, or manners,\nYou would not make me such an argument.\nBut fare ye well: 'tis partly my own fault;\nWhich death or absence soon shall remedy.\n\nLYSANDER:\nStay, gentle Helena; hear my excuse:\nMy love, my life my soul, fair Helena!\n\nHELENA:\nO excellent!\n\nHERMIA:\nSweet, do not scorn her so.\n\nDEMETRIUS:\nIf she cannot entreat, I can compel.\n\nLYSANDER:\nThou canst compel no more than she entreat:\nThy threats have no more strength than her weak prayers.\nHelen, I love thee; by my life, I do:\nI swear by that which I will lose for thee,\nTo prove him false that says I love thee not.\n\nDEMETRIUS:\nI say I love thee more than he can do.\n\nLYSANDER:\nIf thou say so, withdraw, and prove it too.\n\nDEMETRIUS:\nQuick, come!\n\nHERMIA:\nLysander, whereto tends all this?\n\nLYSANDER:\nAway, you Ethiope!\n\nDEMETRIUS:\nNo, no; he'll\nSeem to break loose; take on as you would follow,\nBut yet come not: you are a tame man, go!\n\nLYSANDER:\nHang off, thou cat, thou burr! vile thing, let loose,\nOr I will shake thee from me like a serpent!\n\nHERMIA:\nWhy are you grown so rude? what change is this?\nSweet love,--\n\nLYSANDER:\nThy love! out, tawny Tartar, out!\nOut, loathed medicine! hated potion, hence!\n\nHERMIA:\nDo you not jest?\n\nHELENA:\nYes, sooth; and so do you.\n\nLYSANDER:\nDemetrius, I will keep my word with thee.\n\nDEMETRIUS:\nI would I had your bond, for I perceive\nA weak bond holds you: I'll not trust your word.\n\nLYSANDER:\nWhat, should I hurt her, strike her, kill her dead?\nAlthough I hate her, I'll not harm her so.\n\nHERMIA:\nWhat, can you do me greater harm than hate?\nHate me! wherefore? O me! what news, my love!\nAm not I Hermia? are not you Lysander?\nI am as fair now as I was erewhile.\nSince night you loved me; yet since night you left\nme:\nWhy, then you left me--O, the gods forbid!--\nIn earnest, shall I say?\n\nLYSANDER:\nAy, by my life;\nAnd never did desire to see thee more.\nTherefore be out of hope, of question, of doubt;\nBe certain, nothing truer; 'tis no jest\nThat I do hate thee and love Helena.\n\nHERMIA:\nO me! you juggler! you canker-blossom!\nYou thief of love! what, have you come by night\nAnd stolen my love's heart from him?\n\nHELENA:\nFine, i'faith!\nHave you no modesty, no maiden shame,\nNo touch of bashfulness? What, will you tear\nImpatient answers from my gentle tongue?\nFie, fie! you counterfeit, you puppet, you!\n\nHERMIA:\nPuppet? why so? ay, that way goes the game.\nNow I perceive that she hath made compare\nBetween our statures; she hath urged her height;\nAnd with her personage, her tall personage,\nHer height, forsooth, she hath prevail'd with him.\nAnd are you grown so high in his esteem;\nBecause I am so dwarfish and so low?\nHow low am I, thou painted maypole? speak;\nHow low am I? I am not yet so low\nBut that my nails can reach unto thine eyes.\n\nHELENA:\nI pray you, though you mock me, gentlemen,\nLet her not hurt me: I was never curst;\nI have no gift at all in shrewishness;\nI am a right maid for my cowardice:\nLet her not strike me. You perhaps may think,\nBecause she is something lower than myself,\nThat I can match her.\n\nHERMIA:\nLower! hark, again.\n\nHELENA:\nGood Hermia, do not be so bitter with me.\nI evermore did love you, Hermia,\nDid ever keep your counsels, never wrong'd you;\nSave that, in love unto Demetrius,\nI told him of your stealth unto this wood.\nHe follow'd you; for love I follow'd him;\nBut he hath chid me hence and threaten'd me\nTo strike me, spurn me, nay, to kill me too:\nAnd now, so you will let me quiet go,\nTo Athens will I bear my folly back\nAnd follow you no further: let me go:\nYou see how simple and how fond I am.\n\nHERMIA:\nWhy, get you gone: who is't that hinders you?\n\nHELENA:\nA foolish heart, that I leave here behind.\n\nHERMIA:\nWhat, with Lysander?\n\nHELENA:\nWith Demetrius.\n\nLYSANDER:\nBe not afraid; she shall not harm thee, Helena.\n\nDEMETRIUS:\nNo, sir, she shall not, though you take her part.\n\nHELENA:\nO, when she's angry, she is keen and shrewd!\nShe was a vixen when she went to school;\nAnd though she be but little, she is fierce.\n\nHERMIA:\n'Little' again! nothing but 'low' and 'little'!\nWhy will you suffer her to flout me thus?\nLet me come to her.\n\nLYSANDER:\nGet you gone, you dwarf;\nYou minimus, of hindering knot-grass made;\nYou bead, you acorn.\n\nDEMETRIUS:\nYou are too officious\nIn her behalf that scorns your services.\nLet her alone: speak not of Helena;\nTake not her part; for, if thou dost intend\nNever so little show of love to her,\nThou shalt aby it.\n\nLYSANDER:\nNow she holds me not;\nNow follow, if thou darest, to try whose right,\nOf thine or mine, is most in Helena.\n\nDEMETRIUS:\nFollow! nay, I'll go with thee, cheek by jole.\n\nHERMIA:\nYou, mistress, all this coil is 'long of you:\nNay, go not back.\n\nHELENA:\nI will not trust you, I,\nNor longer stay in your curst company.\nYour hands than mine are quicker for a fray,\nMy legs are longer though, to run away.\n\nHERMIA:\nI am amazed, and know not what to say.\n\nOBERON:\nThis is thy negligence: still thou mistakest,\nOr else committ'st thy knaveries wilfully.\n\nPUCK:\nBelieve me, king of shadows, I mistook.\nDid not you tell me I should know the man\nBy the Athenian garment be had on?\nAnd so far blameless proves my enterprise,\nThat I have 'nointed an Athenian's eyes;\nAnd so far am I glad it so did sort\nAs this their jangling I esteem a sport.\n\nOBERON:\nThou see'st these lovers seek a place to fight:\nHie therefore, Robin, overcast the night;\nThe starry welkin cover thou anon\nWith drooping fog as black as Acheron,\nAnd lead these testy rivals so astray\nAs one come not within another's way.\nLike to Lysander sometime frame thy tongue,\nThen stir Demetrius up with bitter wrong;\nAnd sometime rail thou like Demetrius;\nAnd from each other look thou lead them thus,\nTill o'er their brows death-counterfeiting sleep\nWith leaden legs and batty wings doth creep:\nThen crush this herb into Lysander's eye;\nWhose liquor hath this virtuous property,\nTo take from thence all error with his might,\nAnd make his eyeballs roll with wonted sight.\nWhen they next wake, all this derision\nShall seem a dream and fruitless vision,\nAnd back to Athens shall the lovers wend,\nWith league whose date till death shall never end.\nWhiles I in this affair do thee employ,\nI'll to my queen and beg her Indian boy;\nAnd then I will her charmed eye release\nFrom monster's view, and all things shall be peace.\n\nPUCK:\nMy fairy lord, this must be done with haste,\nFor night's swift dragons cut the clouds full fast,\nAnd yonder shines Aurora's harbinger;\nAt whose approach, ghosts, wandering here and there,\nTroop home to churchyards: damned spirits all,\nThat in crossways and floods have burial,\nAlready to their wormy beds are gone;\nFor fear lest day should look their shames upon,\nThey willfully themselves exile from light\nAnd must for aye consort with black-brow'd night.\n\nOBERON:\nBut we are spirits of another sort:\nI with the morning's love have oft made sport,\nAnd, like a forester, the groves may tread,\nEven till the eastern gate, all fiery-red,\nOpening on Neptune with fair blessed beams,\nTurns into yellow gold his salt green streams.\nBut, notwithstanding, haste; make no delay:\nWe may effect this business yet ere day.\n\nPUCK:\nUp and down, up and down,\nI will lead them up and down:\nI am fear'd in field and town:\nGoblin, lead them up and down.\nHere comes one.\n\nLYSANDER:\nWhere art thou, proud Demetrius? speak thou now.\n\nPUCK:\nHere, villain; drawn and ready. Where art thou?\n\nLYSANDER:\nI will be with thee straight.\n\nPUCK:\nFollow me, then,\nTo plainer ground.\n\nDEMETRIUS:\nLysander! speak again:\nThou runaway, thou coward, art thou fled?\nSpeak! In some bush? Where dost thou hide thy head?\n\nPUCK:\nThou coward, art thou bragging to the stars,\nTelling the bushes that thou look'st for wars,\nAnd wilt not come? Come, recreant; come, thou child;\nI'll whip thee with a rod: he is defiled\nThat draws a sword on thee.\n\nDEMETRIUS:\nYea, art thou there?\n\nPUCK:\nFollow my voice: we'll try no manhood here.\n\nLYSANDER:\nHe goes before me and still dares me on:\nWhen I come where he calls, then he is gone.\nThe villain is much lighter-heel'd than I:\nI follow'd fast, but faster he did fly;\nThat fallen am I in dark uneven way,\nAnd here will rest me.\nCome, thou gentle day!\nFor if but once thou show me thy grey light,\nI'll find Demetrius and revenge this spite.\n\nPUCK:\nHo, ho, ho! Coward, why comest thou not?\n\nDEMETRIUS:\nAbide me, if thou darest; for well I wot\nThou runn'st before me, shifting every place,\nAnd darest not stand, nor look me in the face.\nWhere art thou now?\n\nPUCK:\nCome hither: I am here.\n\nDEMETRIUS:\nNay, then, thou mock'st me. Thou shalt buy this dear,\nIf ever I thy face by daylight see:\nNow, go thy way. Faintness constraineth me\nTo measure out my length on this cold bed.\nBy day's approach look to be visited.\n\nHELENA:\nO weary night, O long and tedious night,\nAbate thy hour! Shine comforts from the east,\nThat I may back to Athens by daylight,\nFrom these that my poor company detest:\nAnd sleep, that sometimes shuts up sorrow's eye,\nSteal me awhile from mine own company.\n\nPUCK:\nYet but three? Come one more;\nTwo of both kinds make up four.\nHere she comes, curst and sad:\nCupid is a knavish lad,\nThus to make poor females mad.\n\nHERMIA:\nNever so weary, never so in woe,\nBedabbled with the dew and torn with briers,\nI can no further crawl, no further go;\nMy legs can keep no pace with my desires.\nHere will I rest me till the break of day.\nHeavens shield Lysander, if they mean a fray!\n\nPUCK:\nOn the ground\nSleep sound:\nI'll apply\nTo your eye,\nGentle lover, remedy.\nWhen thou wakest,\nThou takest\nTrue delight\nIn the sight\nOf thy former lady's eye:\nAnd the country proverb known,\nThat every man should take his own,\nIn your waking shall be shown:\nJack shall have Jill;\nNought shall go ill;\nThe man shall have his mare again, and all shall be well.\n\nTITANIA:\nCome, sit thee down upon this flowery bed,\nWhile I thy amiable cheeks do coy,\nAnd stick musk-roses in thy sleek smooth head,\nAnd kiss thy fair large ears, my gentle joy.\n\nBOTTOM:\nWhere's Peaseblossom?\n\nPEASEBLOSSOM:\nReady.\n\nBOTTOM:\nScratch my head Peaseblossom. Where's Mounsieur Cobweb?\n\nCOBWEB:\nReady.\n\nBOTTOM:\nMounsieur Cobweb, good mounsieur, get you your\nweapons in your hand, and kill me a red-hipped\nhumble-bee on the top of a thistle; and, good\nmounsieur, bring me the honey-bag. Do not fret\nyourself too much in the action, mounsieur; and,\ngood mounsieur, have a care the honey-bag break not;\nI would be loath to have you overflown with a\nhoney-bag, signior. Where's Mounsieur Mustardseed?\n\nMUSTARDSEED:\nReady.\n\nBOTTOM:\nGive me your neaf, Mounsieur Mustardseed. Pray you,\nleave your courtesy, good mounsieur.\n\nMUSTARDSEED:\nWhat's your Will?\n\nBOTTOM:\nNothing, good mounsieur, but to help Cavalery Cobweb\nto scratch. I must to the barber's, monsieur; for\nmethinks I am marvellous hairy about the face; and I\nam such a tender ass, if my hair do but tickle me,\nI must scratch.\n\nTITANIA:\nWhat, wilt thou hear some music,\nmy sweet love?\n\nBOTTOM:\nI have a reasonable good ear in music. Let's have\nthe tongs and the bones.\n\nTITANIA:\nOr say, sweet love, what thou desirest to eat.\n\nBOTTOM:\nTruly, a peck of provender: I could munch your good\ndry oats. Methinks I have a great desire to a bottle\nof hay: good hay, sweet hay, hath no fellow.\n\nTITANIA:\nI have a venturous fairy that shall seek\nThe squirrel's hoard, and fetch thee new nuts.\n\nBOTTOM:\nI had rather have a handful or two of dried peas.\nBut, I pray you, let none of your people stir me: I\nhave an exposition of sleep come upon me.\n\nTITANIA:\nSleep thou, and I will wind thee in my arms.\nFairies, begone, and be all ways away.\nSo doth the woodbine the sweet honeysuckle\nGently entwist; the female ivy so\nEnrings the barky fingers of the elm.\nO, how I love thee! how I dote on thee!\n\nOBERON:\n\nTITANIA:\nMy Oberon! what visions have I seen!\nMethought I was enamour'd of an ass.\n\nOBERON:\nThere lies your love.\n\nTITANIA:\nHow came these things to pass?\nO, how mine eyes do loathe his visage now!\n\nOBERON:\nSilence awhile. Robin, take off this head.\nTitania, music call; and strike more dead\nThan common sleep of all these five the sense.\n\nTITANIA:\nMusic, ho! music, such as charmeth sleep!\n\nPUCK:\nNow, when thou wakest, with thine\nown fool's eyes peep.\n\nOBERON:\nSound, music! Come, my queen, take hands with me,\nAnd rock the ground whereon these sleepers be.\nNow thou and I are new in amity,\nAnd will to-morrow midnight solemnly\nDance in Duke Theseus' house triumphantly,\nAnd bless it to all fair prosperity:\nThere shall the pairs of faithful lovers be\nWedded, with Theseus, all in jollity.\n\nPUCK:\nFairy king, attend, and mark:\nI do hear the morning lark.\n\nOBERON:\nThen, my queen, in silence sad,\nTrip we after the night's shade:\nWe the globe can compass soon,\nSwifter than the wandering moon.\n\nTITANIA:\nCome, my lord, and in our flight\nTell me how it came this night\nThat I sleeping here was found\nWith these mortals on the ground.\n\nTHESEUS:\nGo, one of you, find out the forester;\nFor now our observation is perform'd;\nAnd since we have the vaward of the day,\nMy love shall hear the music of my hounds.\nUncouple in the western valley; let them go:\nDispatch, I say, and find the forester.\nWe will, fair queen, up to the mountain's top,\nAnd mark the musical confusion\nOf hounds and echo in conjunction.\n\nHIPPOLYTA:\nI was with Hercules and Cadmus once,\nWhen in a wood of Crete they bay'd the bear\nWith hounds of Sparta: never did I hear\nSuch gallant chiding: for, besides the groves,\nThe skies, the fountains, every region near\nSeem'd all one mutual cry: I never heard\nSo musical a discord, such sweet thunder.\n\nTHESEUS:\nMy hounds are bred out of the Spartan kind,\nSo flew'd, so sanded, and their heads are hung\nWith ears that sweep away the morning dew;\nCrook-knee'd, and dew-lapp'd like Thessalian bulls;\nSlow in pursuit, but match'd in mouth like bells,\nEach under each. A cry more tuneable\nWas never holla'd to, nor cheer'd with horn,\nIn Crete, in Sparta, nor in Thessaly:\nJudge when you hear. But, soft! what nymphs are these?\n\nEGEUS:\nMy lord, this is my daughter here asleep;\nAnd this, Lysander; this Demetrius is;\nThis Helena, old Nedar's Helena:\nI wonder of their being here together.\n\nTHESEUS:\nNo doubt they rose up early to observe\nThe rite of May, and hearing our intent,\nCame here in grace our solemnity.\nBut speak, Egeus; is not this the day\nThat Hermia should give answer of her choice?\n\nEGEUS:\nIt is, my lord.\n\nTHESEUS:\nGo, bid the huntsmen wake them with their horns.\nGood morrow, friends. Saint Valentine is past:\nBegin these wood-birds but to couple now?\n\nLYSANDER:\nPardon, my lord.\n\nTHESEUS:\nI pray you all, stand up.\nI know you two are rival enemies:\nHow comes this gentle concord in the world,\nThat hatred is so far from jealousy,\nTo sleep by hate, and fear no enmity?\n\nLYSANDER:\nMy lord, I shall reply amazedly,\nHalf sleep, half waking: but as yet, I swear,\nI cannot truly say how I came here;\nBut, as I think,--for truly would I speak,\nAnd now do I bethink me, so it is,--\nI came with Hermia hither: our intent\nWas to be gone from Athens, where we might,\nWithout the peril of the Athenian law.\n\nEGEUS:\nEnough, enough, my lord; you have enough:\nI beg the law, the law, upon his head.\nThey would have stolen away; they would, Demetrius,\nThereby to have defeated you and me,\nYou of your wife and me of my consent,\nOf my consent that she should be your wife.\n\nDEMETRIUS:\nMy lord, fair Helen told me of their stealth,\nOf this their purpose hither to this wood;\nAnd I in fury hither follow'd them,\nFair Helena in fancy following me.\nBut, my good lord, I wot not by what power,--\nBut by some power it is,--my love to Hermia,\nMelted as the snow, seems to me now\nAs the remembrance of an idle gaud\nWhich in my childhood I did dote upon;\nAnd all the faith, the virtue of my heart,\nThe object and the pleasure of mine eye,\nIs only Helena. To her, my lord,\nWas I betroth'd ere I saw Hermia:\nBut, like in sickness, did I loathe this food;\nBut, as in health, come to my natural taste,\nNow I do wish it, love it, long for it,\nAnd will for evermore be true to it.\n\nTHESEUS:\nFair lovers, you are fortunately met:\nOf this discourse we more will hear anon.\nEgeus, I will overbear your will;\nFor in the temple by and by with us\nThese couples shall eternally be knit:\nAnd, for the morning now is something worn,\nOur purposed hunting shall be set aside.\nAway with us to Athens; three and three,\nWe'll hold a feast in great solemnity.\nCome, Hippolyta.\n\nDEMETRIUS:\nThese things seem small and undistinguishable,\n\nHERMIA:\nMethinks I see these things with parted eye,\nWhen every thing seems double.\n\nHELENA:\nSo methinks:\nAnd I have found Demetrius like a jewel,\nMine own, and not mine own.\n\nDEMETRIUS:\nAre you sure\nThat we are awake? It seems to me\nThat yet we sleep, we dream. Do not you think\nThe duke was here, and bid us follow him?\n\nHERMIA:\nYea; and my father.\n\nHELENA:\nAnd Hippolyta.\n\nLYSANDER:\nAnd he did bid us follow to the temple.\n\nDEMETRIUS:\nWhy, then, we are awake: let's follow him\nAnd by the way let us recount our dreams.\n\nBOTTOM:\n\nQUINCE:\nHave you sent to Bottom's house? is he come home yet?\n\nSTARVELING:\nHe cannot be heard of. Out of doubt he is\ntransported.\n\nFLUTE:\nIf he come not, then the play is marred: it goes\nnot forward, doth it?\n\nQUINCE:\nIt is not possible: you have not a man in all\nAthens able to discharge Pyramus but he.\n\nFLUTE:\nNo, he hath simply the best wit of any handicraft\nman in Athens.\n\nQUINCE:\nYea and the best person too; and he is a very\nparamour for a sweet voice.\n\nFLUTE:\nYou must say 'paragon:' a paramour is, God bless us,\na thing of naught.\n\nSNUG:\nMasters, the duke is coming from the temple, and\nthere is two or three lords and ladies more married:\nif our sport had gone forward, we had all been made\nmen.\n\nFLUTE:\nO sweet bully Bottom! Thus hath he lost sixpence a\nday during his life; he could not have 'scaped\nsixpence a day: an the duke had not given him\nsixpence a day for playing Pyramus, I'll be hanged;\nhe would have deserved it: sixpence a day in\nPyramus, or nothing.\n\nBOTTOM:\nWhere are these lads? where are these hearts?\n\nQUINCE:\nBottom! O most courageous day! O most happy hour!\n\nBOTTOM:\nMasters, I am to discourse wonders: but ask me not\nwhat; for if I tell you, I am no true Athenian. I\nwill tell you every thing, right as it fell out.\n\nQUINCE:\nLet us hear, sweet Bottom.\n\nBOTTOM:\nNot a word of me. All that I will tell you is, that\nthe duke hath dined. Get your apparel together,\ngood strings to your beards, new ribbons to your\npumps; meet presently at the palace; every man look\no'er his part; for the short and the long is, our\nplay is preferred. In any case, let Thisby have\nclean linen; and let not him that plays the lion\npair his nails, for they shall hang out for the\nlion's claws. And, most dear actors, eat no onions\nnor garlic, for we are to utter sweet breath; and I\ndo not doubt but to hear them say, it is a sweet\ncomedy. No more words: away! go, away!\n\nHIPPOLYTA:\n'Tis strange my Theseus, that these\nlovers speak of.\n\nTHESEUS:\nMore strange than true: I never may believe\nThese antique fables, nor these fairy toys.\nLovers and madmen have such seething brains,\nSuch shaping fantasies, that apprehend\nMore than cool reason ever comprehends.\nThe lunatic, the lover and the poet\nAre of imagination all compact:\nOne sees more devils than vast hell can hold,\nThat is, the madman: the lover, all as frantic,\nSees Helen's beauty in a brow of Egypt:\nThe poet's eye, in fine frenzy rolling,\nDoth glance from heaven to earth, from earth to heaven;\nAnd as imagination bodies forth\nThe forms of things unknown, the poet's pen\nTurns them to shapes and gives to airy nothing\nA local habitation and a name.\nSuch tricks hath strong imagination,\nThat if it would but apprehend some joy,\nIt comprehends some bringer of that joy;\nOr in the night, imagining some fear,\nHow easy is a bush supposed a bear!\n\nHIPPOLYTA:\nBut all the story of the night told over,\nAnd all their minds transfigured so together,\nMore witnesseth than fancy's images\nAnd grows to something of great constancy;\nBut, howsoever, strange and admirable.\n\nTHESEUS:\nHere come the lovers, full of joy and mirth.\nJoy, gentle friends! joy and fresh days of love\nAccompany your hearts!\n\nLYSANDER:\nMore than to us\nWait in your royal walks, your board, your bed!\n\nTHESEUS:\nCome now; what masques, what dances shall we have,\nTo wear away this long age of three hours\nBetween our after-supper and bed-time?\nWhere is our usual manager of mirth?\nWhat revels are in hand? Is there no play,\nTo ease the anguish of a torturing hour?\nCall Philostrate.\n\nPHILOSTRATE:\nHere, mighty Theseus.\n\nTHESEUS:\nSay, what abridgement have you for this evening?\nWhat masque? what music? How shall we beguile\nThe lazy time, if not with some delight?\n\nPHILOSTRATE:\nThere is a brief how many sports are ripe:\nMake choice of which your highness will see first.\n\nTHESEUS:\n\nPHILOSTRATE:\nA play there is, my lord, some ten words long,\nWhich is as brief as I have known a play;\nBut by ten words, my lord, it is too long,\nWhich makes it tedious; for in all the play\nThere is not one word apt, one player fitted:\nAnd tragical, my noble lord, it is;\nFor Pyramus therein doth kill himself.\nWhich, when I saw rehearsed, I must confess,\nMade mine eyes water; but more merry tears\nThe passion of loud laughter never shed.\n\nTHESEUS:\nWhat are they that do play it?\n\nPHILOSTRATE:\nHard-handed men that work in Athens here,\nWhich never labour'd in their minds till now,\nAnd now have toil'd their unbreathed memories\nWith this same play, against your nuptial.\n\nTHESEUS:\nAnd we will hear it.\n\nPHILOSTRATE:\nNo, my noble lord;\nIt is not for you: I have heard it over,\nAnd it is nothing, nothing in the world;\nUnless you can find sport in their intents,\nExtremely stretch'd and conn'd with cruel pain,\nTo do you service.\n\nTHESEUS:\nI will hear that play;\nFor never anything can be amiss,\nWhen simpleness and duty tender it.\nGo, bring them in: and take your places, ladies.\n\nHIPPOLYTA:\nI love not to see wretchedness o'er charged\nAnd duty in his service perishing.\n\nTHESEUS:\nWhy, gentle sweet, you shall see no such thing.\n\nHIPPOLYTA:\nHe says they can do nothing in this kind.\n\nTHESEUS:\nThe kinder we, to give them thanks for nothing.\nOur sport shall be to take what they mistake:\nAnd what poor duty cannot do, noble respect\nTakes it in might, not merit.\nWhere I have come, great clerks have purposed\nTo greet me with premeditated welcomes;\nWhere I have seen them shiver and look pale,\nMake periods in the midst of sentences,\nThrottle their practised accent in their fears\nAnd in conclusion dumbly have broke off,\nNot paying me a welcome. Trust me, sweet,\nOut of this silence yet I pick'd a welcome;\nAnd in the modesty of fearful duty\nI read as much as from the rattling tongue\nOf saucy and audacious eloquence.\nLove, therefore, and tongue-tied simplicity\nIn least speak most, to my capacity.\n\nPHILOSTRATE:\nSo please your grace, the Prologue is address'd.\n\nTHESEUS:\nLet him approach.\n\nPrologue:\nIf we offend, it is with our good will.\nThat you should think, we come not to offend,\nBut with good will. To show our simple skill,\nThat is the true beginning of our end.\nConsider then we come but in despite.\nWe do not come as minding to contest you,\nOur true intent is. All for your delight\nWe are not here. That you should here repent you,\nThe actors are at hand and by their show\nYou shall know all that you are like to know.\n\nTHESEUS:\nThis fellow doth not stand upon points.\n\nLYSANDER:\nHe hath rid his prologue like a rough colt; he knows\nnot the stop. A good moral, my lord: it is not\nenough to speak, but to speak true.\n\nHIPPOLYTA:\nIndeed he hath played on his prologue like a child\non a recorder; a sound, but not in government.\n\nTHESEUS:\nHis speech, was like a tangled chain; nothing\nimpaired, but all disordered. Who is next?\n\nPrologue:\nGentles, perchance you wonder at this show;\nBut wonder on, till truth make all things plain.\nThis man is Pyramus, if you would know;\nThis beauteous lady Thisby is certain.\nThis man, with lime and rough-cast, doth present\nWall, that vile Wall which did these lovers sunder;\nAnd through Wall's chink, poor souls, they are content\nTo whisper. At the which let no man wonder.\nThis man, with lanthorn, dog, and bush of thorn,\nPresenteth Moonshine; for, if you will know,\nBy moonshine did these lovers think no scorn\nTo meet at Ninus' tomb, there, there to woo.\nThis grisly beast, which Lion hight by name,\nThe trusty Thisby, coming first by night,\nDid scare away, or rather did affright;\nAnd, as she fled, her mantle she did fall,\nWhich Lion vile with bloody mouth did stain.\nAnon comes Pyramus, sweet youth and tall,\nAnd finds his trusty Thisby's mantle slain:\nWhereat, with blade, with bloody blameful blade,\nHe bravely broach'd is boiling bloody breast;\nAnd Thisby, tarrying in mulberry shade,\nHis dagger drew, and died. For all the rest,\nLet Lion, Moonshine, Wall, and lovers twain\nAt large discourse, while here they do remain.\n\nTHESEUS:\nI wonder if the lion be to speak.\n\nDEMETRIUS:\nNo wonder, my lord: one lion may, when many asses do.\n\nWall:\nIn this same interlude it doth befall\nThat I, one Snout by name, present a wall;\nAnd such a wall, as I would have you think,\nThat had in it a crannied hole or chink,\nThrough which the lovers, Pyramus and Thisby,\nDid whisper often very secretly.\nThis loam, this rough-cast and this stone doth show\nThat I am that same wall; the truth is so:\nAnd this the cranny is, right and sinister,\nThrough which the fearful lovers are to whisper.\n\nTHESEUS:\nWould you desire lime and hair to speak better?\n\nDEMETRIUS:\nIt is the wittiest partition that ever I heard\ndiscourse, my lord.\n\nTHESEUS:\nPyramus draws near the wall: silence!\n\nPyramus:\nO grim-look'd night! O night with hue so black!\nO night, which ever art when day is not!\nO night, O night! alack, alack, alack,\nI fear my Thisby's promise is forgot!\nAnd thou, O wall, O sweet, O lovely wall,\nThat stand'st between her father's ground and mine!\nThou wall, O wall, O sweet and lovely wall,\nShow me thy chink, to blink through with mine eyne!\nThanks, courteous wall: Jove shield thee well for this!\nBut what see I? No Thisby do I see.\nO wicked wall, through whom I see no bliss!\nCursed be thy stones for thus deceiving me!\n\nTHESEUS:\nThe wall, methinks, being sensible, should curse again.\n\nPyramus:\nNo, in truth, sir, he should not. 'Deceiving me'\nis Thisby's cue: she is to enter now, and I am to\nspy her through the wall. You shall see, it will\nfall pat as I told you. Yonder she comes.\n\nThisbe:\nO wall, full often hast thou heard my moans,\nFor parting my fair Pyramus and me!\nMy cherry lips have often kiss'd thy stones,\nThy stones with lime and hair knit up in thee.\n\nPyramus:\nI see a voice: now will I to the chink,\nTo spy an I can hear my Thisby's face. Thisby!\n\nThisbe:\nMy love thou art, my love I think.\n\nPyramus:\nThink what thou wilt, I am thy lover's grace;\nAnd, like Limander, am I trusty still.\n\nThisbe:\nAnd I like Helen, till the Fates me kill.\n\nPyramus:\nNot Shafalus to Procrus was so true.\n\nThisbe:\nAs Shafalus to Procrus, I to you.\n\nPyramus:\nO kiss me through the hole of this vile wall!\n\nThisbe:\nI kiss the wall's hole, not your lips at all.\n\nPyramus:\nWilt thou at Ninny's tomb meet me straightway?\n\nThisbe:\n'Tide life, 'tide death, I come without delay.\n\nWall:\nThus have I, Wall, my part discharged so;\nAnd, being done, thus Wall away doth go.\n\nTHESEUS:\nNow is the mural down between the two neighbours.\n\nDEMETRIUS:\nNo remedy, my lord, when walls are so wilful to hear\nwithout warning.\n\nHIPPOLYTA:\nThis is the silliest stuff that ever I heard.\n\nTHESEUS:\nThe best in this kind are but shadows; and the worst\nare no worse, if imagination amend them.\n\nHIPPOLYTA:\nIt must be your imagination then, and not theirs.\n\nTHESEUS:\nIf we imagine no worse of them than they of\nthemselves, they may pass for excellent men. Here\ncome two noble beasts in, a man and a lion.\n\nLion:\nYou, ladies, you, whose gentle hearts do fear\nThe smallest monstrous mouse that creeps on floor,\nMay now perchance both quake and tremble here,\nWhen lion rough in wildest rage doth roar.\nThen know that I, one Snug the joiner, am\nA lion-fell, nor else no lion's dam;\nFor, if I should as lion come in strife\nInto this place, 'twere pity on my life.\n\nTHESEUS:\nA very gentle beast, of a good conscience.\n\nDEMETRIUS:\nThe very best at a beast, my lord, that e'er I saw.\n\nLYSANDER:\nThis lion is a very fox for his valour.\n\nTHESEUS:\nTrue; and a goose for his discretion.\n\nDEMETRIUS:\nNot so, my lord; for his valour cannot carry his\ndiscretion; and the fox carries the goose.\n\nTHESEUS:\nHis discretion, I am sure, cannot carry his valour;\nfor the goose carries not the fox. It is well:\nleave it to his discretion, and let us listen to the moon.\n\nMoonshine:\nThis lanthorn doth the horned moon present;--\n\nDEMETRIUS:\nHe should have worn the horns on his head.\n\nTHESEUS:\nHe is no crescent, and his horns are\ninvisible within the circumference.\n\nMoonshine:\nThis lanthorn doth the horned moon present;\nMyself the man i' the moon do seem to be.\n\nTHESEUS:\nThis is the greatest error of all the rest: the man\nshould be put into the lanthorn. How is it else the\nman i' the moon?\n\nDEMETRIUS:\nHe dares not come there for the candle; for, you\nsee, it is already in snuff.\n\nHIPPOLYTA:\nI am aweary of this moon: would he would change!\n\nTHESEUS:\nIt appears, by his small light of discretion, that\nhe is in the wane; but yet, in courtesy, in all\nreason, we must stay the time.\n\nLYSANDER:\nProceed, Moon.\n\nMoonshine:\nAll that I have to say, is, to tell you that the\nlanthorn is the moon; I, the man in the moon; this\nthorn-bush, my thorn-bush; and this dog, my dog.\n\nDEMETRIUS:\nWhy, all these should be in the lanthorn; for all\nthese are in the moon. But, silence! here comes Thisbe.\n\nThisbe:\nThis is old Ninny's tomb. Where is my love?\n\nLion:\n\nDEMETRIUS:\nWell roared, Lion.\n\nTHESEUS:\nWell run, Thisbe.\n\nHIPPOLYTA:\nWell shone, Moon. Truly, the moon shines with a\ngood grace.\n\nTHESEUS:\nWell moused, Lion.\n\nLYSANDER:\nAnd so the lion vanished.\n\nDEMETRIUS:\nAnd then came Pyramus.\n\nPyramus:\nSweet Moon, I thank thee for thy sunny beams;\nI thank thee, Moon, for shining now so bright;\nFor, by thy gracious, golden, glittering gleams,\nI trust to take of truest Thisby sight.\nBut stay, O spite!\nBut mark, poor knight,\nWhat dreadful dole is here!\nEyes, do you see?\nHow can it be?\nO dainty duck! O dear!\nThy mantle good,\nWhat, stain'd with blood!\nApproach, ye Furies fell!\nO Fates, come, come,\nCut thread and thrum;\nQuail, crush, conclude, and quell!\n\nTHESEUS:\nThis passion, and the death of a dear friend, would\ngo near to make a man look sad.\n\nHIPPOLYTA:\nBeshrew my heart, but I pity the man.\n\nPyramus:\nO wherefore, Nature, didst thou lions frame?\nSince lion vile hath here deflower'd my dear:\nWhich is--no, no--which was the fairest dame\nThat lived, that loved, that liked, that look'd\nwith cheer.\nCome, tears, confound;\nOut, sword, and wound\nThe pap of Pyramus;\nAy, that left pap,\nWhere heart doth hop:\nThus die I, thus, thus, thus.\nNow am I dead,\nNow am I fled;\nMy soul is in the sky:\nTongue, lose thy light;\nMoon take thy flight:\nNow die, die, die, die, die.\n\nDEMETRIUS:\nNo die, but an ace, for him; for he is but one.\n\nLYSANDER:\nLess than an ace, man; for he is dead; he is nothing.\n\nTHESEUS:\nWith the help of a surgeon he might yet recover, and\nprove an ass.\n\nHIPPOLYTA:\nHow chance Moonshine is gone before Thisbe comes\nback and finds her lover?\n\nTHESEUS:\nShe will find him by starlight. Here she comes; and\nher passion ends the play.\n\nHIPPOLYTA:\nMethinks she should not use a long one for such a\nPyramus: I hope she will be brief.\n\nDEMETRIUS:\nA mote will turn the balance, which Pyramus, which\nThisbe, is the better; he for a man, God warrant us;\nshe for a woman, God bless us.\n\nLYSANDER:\nShe hath spied him already with those sweet eyes.\n\nDEMETRIUS:\nAnd thus she means, videlicet:--\n\nThisbe:\nAsleep, my love?\nWhat, dead, my dove?\nO Pyramus, arise!\nSpeak, speak. Quite dumb?\nDead, dead? A tomb\nMust cover thy sweet eyes.\nThese My lips,\nThis cherry nose,\nThese yellow cowslip cheeks,\nAre gone, are gone:\nLovers, make moan:\nHis eyes were green as leeks.\nO Sisters Three,\nCome, come to me,\nWith hands as pale as milk;\nLay them in gore,\nSince you have shore\nWith shears his thread of silk.\nTongue, not a word:\nCome, trusty sword;\nCome, blade, my breast imbrue:\nAnd, farewell, friends;\nThus Thisby ends:\nAdieu, adieu, adieu.\n\nTHESEUS:\nMoonshine and Lion are left to bury the dead.\n\nDEMETRIUS:\nAy, and Wall too.\n\nBOTTOM:\n\nTHESEUS:\nNo epilogue, I pray you; for your play needs no\nexcuse. Never excuse; for when the players are all\ndead, there needs none to be blamed. Marry, if he\nthat writ it had played Pyramus and hanged himself\nin Thisbe's garter, it would have been a fine\ntragedy: and so it is, truly; and very notably\ndischarged. But come, your Bergomask: let your\nepilogue alone.\nThe iron tongue of midnight hath told twelve:\nLovers, to bed; 'tis almost fairy time.\nI fear we shall out-sleep the coming morn\nAs much as we this night have overwatch'd.\nThis palpable-gross play hath well beguiled\nThe heavy gait of night. Sweet friends, to bed.\nA fortnight hold we this solemnity,\nIn nightly revels and new jollity.\n\nPUCK:\nNow the hungry lion roars,\nAnd the wolf behowls the moon;\nWhilst the heavy ploughman snores,\nAll with weary task fordone.\nNow the wasted brands do glow,\nWhilst the screech-owl, screeching loud,\nPuts the wretch that lies in woe\nIn remembrance of a shroud.\nNow it is the time of night\nThat the graves all gaping wide,\nEvery one lets forth his sprite,\nIn the church-way paths to glide:\nAnd we fairies, that do run\nBy the triple Hecate's team,\nFrom the presence of the sun,\nFollowing darkness like a dream,\nNow are frolic: not a mouse\nShall disturb this hallow'd house:\nI am sent with broom before,\nTo sweep the dust behind the door.\n\nOBERON:\nThrough the house give gathering light,\nBy the dead and drowsy fire:\nEvery elf and fairy sprite\nHop as light as bird from brier;\nAnd this ditty, after me,\nSing, and dance it trippingly.\n\nTITANIA:\nFirst, rehearse your song by rote\nTo each word a warbling note:\nHand in hand, with fairy grace,\nWill we sing, and bless this place.\n\nOBERON:\nNow, until the break of day,\nThrough this house each fairy stray.\nTo the best bride-bed will we,\nWhich by us shall blessed be;\nAnd the issue there create\nEver shall be fortunate.\nSo shall all the couples three\nEver true in loving be;\nAnd the blots of Nature's hand\nShall not in their issue stand;\nNever mole, hare lip, nor scar,\nNor mark prodigious, such as are\nDespised in nativity,\nShall upon their children be.\nWith this field-dew consecrate,\nEvery fairy take his gait;\nAnd each several chamber bless,\nThrough this palace, with sweet peace;\nAnd the owner of it blest\nEver shall in safety rest.\nTrip away; make no stay;\nMeet me all by break of day.\n\nPUCK:\nIf we shadows have offended,\nThink but this, and all is mended,\nThat you have but slumber'd here\nWhile these visions did appear.\nAnd this weak and idle theme,\nNo more yielding but a dream,\nGentles, do not reprehend:\nif you pardon, we will mend:\nAnd, as I am an honest Puck,\nIf we have unearned luck\nNow to 'scape the serpent's tongue,\nWe will make amends ere long;\nElse the Puck a liar call;\nSo, good night unto you all.\nGive me your hands, if we be friends,\nAnd Robin shall restore amends.\n\nFERDINAND:\nLet fame, that all hunt after in their lives,\nLive register'd upon our brazen tombs\nAnd then grace us in the disgrace of death;\nWhen, spite of cormorant devouring Time,\nThe endeavor of this present breath may buy\nThat honour which shall bate his scythe's keen edge\nAnd make us heirs of all eternity.\nTherefore, brave conquerors,--for so you are,\nThat war against your own affections\nAnd the huge army of the world's desires,--\nOur late edict shall strongly stand in force:\nNavarre shall be the wonder of the world;\nOur court shall be a little Academe,\nStill and contemplative in living art.\nYou three, Biron, Dumain, and Longaville,\nHave sworn for three years' term to live with me\nMy fellow-scholars, and to keep those statutes\nThat are recorded in this schedule here:\nYour oaths are pass'd; and now subscribe your names,\nThat his own hand may strike his honour down\nThat violates the smallest branch herein:\nIf you are arm'd to do as sworn to do,\nSubscribe to your deep oaths, and keep it too.\n\nLONGAVILLE:\nI am resolved; 'tis but a three years' fast:\nThe mind shall banquet, though the body pine:\nFat paunches have lean pates, and dainty bits\nMake rich the ribs, but bankrupt quite the wits.\n\nDUMAIN:\nMy loving lord, Dumain is mortified:\nThe grosser manner of these world's delights\nHe throws upon the gross world's baser slaves:\nTo love, to wealth, to pomp, I pine and die;\nWith all these living in philosophy.\n\nBIRON:\nI can but say their protestation over;\nSo much, dear liege, I have already sworn,\nThat is, to live and study here three years.\nBut there are other strict observances;\nAs, not to see a woman in that term,\nWhich I hope well is not enrolled there;\nAnd one day in a week to touch no food\nAnd but one meal on every day beside,\nThe which I hope is not enrolled there;\nAnd then, to sleep but three hours in the night,\nAnd not be seen to wink of all the day--\nWhen I was wont to think no harm all night\nAnd make a dark night too of half the day--\nWhich I hope well is not enrolled there:\nO, these are barren tasks, too hard to keep,\nNot to see ladies, study, fast, not sleep!\n\nFERDINAND:\nYour oath is pass'd to pass away from these.\n\nBIRON:\nLet me say no, my liege, an if you please:\nI only swore to study with your grace\nAnd stay here in your court for three years' space.\n\nLONGAVILLE:\nYou swore to that, Biron, and to the rest.\n\nBIRON:\nBy yea and nay, sir, then I swore in jest.\nWhat is the end of study? let me know.\n\nFERDINAND:\nWhy, that to know, which else we should not know.\n\nBIRON:\nThings hid and barr'd, you mean, from common sense?\n\nFERDINAND:\nAy, that is study's godlike recompense.\n\nBIRON:\nCome on, then; I will swear to study so,\nTo know the thing I am forbid to know:\nAs thus,--to study where I well may dine,\nWhen I to feast expressly am forbid;\nOr study where to meet some mistress fine,\nWhen mistresses from common sense are hid;\nOr, having sworn too hard a keeping oath,\nStudy to break it and not break my troth.\nIf study's gain be thus and this be so,\nStudy knows that which yet it doth not know:\nSwear me to this, and I will ne'er say no.\n\nFERDINAND:\nThese be the stops that hinder study quite\nAnd train our intellects to vain delight.\n\nBIRON:\nWhy, all delights are vain; but that most vain,\nWhich with pain purchased doth inherit pain:\nAs, painfully to pore upon a book\nTo seek the light of truth; while truth the while\nDoth falsely blind the eyesight of his look:\nLight seeking light doth light of light beguile:\nSo, ere you find where light in darkness lies,\nYour light grows dark by losing of your eyes.\nStudy me how to please the eye indeed\nBy fixing it upon a fairer eye,\nWho dazzling so, that eye shall be his heed\nAnd give him light that it was blinded by.\nStudy is like the heaven's glorious sun\nThat will not be deep-search'd with saucy looks:\nSmall have continual plodders ever won\nSave base authority from others' books\nThese earthly godfathers of heaven's lights\nThat give a name to every fixed star\nHave no more profit of their shining nights\nThan those that walk and wot not what they are.\nToo much to know is to know nought but fame;\nAnd every godfather can give a name.\n\nFERDINAND:\nHow well he's read, to reason against reading!\n\nDUMAIN:\nProceeded well, to stop all good proceeding!\n\nLONGAVILLE:\nHe weeds the corn and still lets grow the weeding.\n\nBIRON:\nThe spring is near when green geese are a-breeding.\n\nDUMAIN:\nHow follows that?\n\nBIRON:\nFit in his place and time.\n\nDUMAIN:\nIn reason nothing.\n\nBIRON:\nSomething then in rhyme.\n\nFERDINAND:\nBiron is like an envious sneaping frost,\nThat bites the first-born infants of the spring.\n\nBIRON:\nWell, say I am; why should proud summer boast\nBefore the birds have any cause to sing?\nWhy should I joy in any abortive birth?\nAt Christmas I no more desire a rose\nThan wish a snow in May's new-fangled mirth;\nBut like of each thing that in season grows.\nSo you, to study now it is too late,\nClimb o'er the house to unlock the little gate.\n\nFERDINAND:\nWell, sit you out: go home, Biron: adieu.\n\nBIRON:\nNo, my good lord; I have sworn to stay with you:\nAnd though I have for barbarism spoke more\nThan for that angel knowledge you can say,\nYet confident I'll keep what I have swore\nAnd bide the penance of each three years' day.\nGive me the paper; let me read the same;\nAnd to the strict'st decrees I'll write my name.\n\nFERDINAND:\nHow well this yielding rescues thee from shame!\n\nBIRON:\n\nLONGAVILLE:\nFour days ago.\n\nBIRON:\nLet's see the penalty.\n'On pain of losing her tongue.' Who devised this penalty?\n\nLONGAVILLE:\nMarry, that did I.\n\nBIRON:\nSweet lord, and why?\n\nLONGAVILLE:\nTo fright them hence with that dread penalty.\n\nBIRON:\nA dangerous law against gentility!\n'Item, If any man be seen to talk with a woman\nwithin the term of three years, he shall endure such\npublic shame as the rest of the court can possibly devise.'\nThis article, my liege, yourself must break;\nFor well you know here comes in embassy\nThe French king's daughter with yourself to speak--\nA maid of grace and complete majesty--\nAbout surrender up of Aquitaine\nTo her decrepit, sick and bedrid father:\nTherefore this article is made in vain,\nOr vainly comes the admired princess hither.\n\nFERDINAND:\nWhat say you, lords? Why, this was quite forgot.\n\nBIRON:\nSo study evermore is overshot:\nWhile it doth study to have what it would\nIt doth forget to do the thing it should,\nAnd when it hath the thing it hunteth most,\n'Tis won as towns with fire, so won, so lost.\n\nFERDINAND:\nWe must of force dispense with this decree;\nShe must lie here on mere necessity.\n\nBIRON:\nNecessity will make us all forsworn\nThree thousand times within this three years' space;\nFor every man with his affects is born,\nNot by might master'd but by special grace:\nIf I break faith, this word shall speak for me;\nI am forsworn on 'mere necessity.'\nSo to the laws at large I write my name:\nAnd he that breaks them in the least degree\nStands in attainder of eternal shame:\nSuggestions are to other as to me;\nBut I believe, although I seem so loath,\nI am the last that will last keep his oath.\nBut is there no quick recreation granted?\n\nFERDINAND:\nAy, that there is. Our court, you know, is haunted\nWith a refined traveller of Spain;\nA man in all the world's new fashion planted,\nThat hath a mint of phrases in his brain;\nOne whom the music of his own vain tongue\nDoth ravish like enchanting harmony;\nA man of complements, whom right and wrong\nHave chose as umpire of their mutiny:\nThis child of fancy, that Armado hight,\nFor interim to our studies shall relate\nIn high-born words the worth of many a knight\nFrom tawny Spain lost in the world's debate.\nHow you delight, my lords, I know not, I;\nBut, I protest, I love to hear him lie\nAnd I will use him for my minstrelsy.\n\nBIRON:\nArmado is a most illustrious wight,\nA man of fire-new words, fashion's own knight.\n\nLONGAVILLE:\nCostard the swain and he shall be our sport;\nAnd so to study, three years is but short.\n\nDULL:\nWhich is the duke's own person?\n\nBIRON:\nThis, fellow: what wouldst?\n\nDULL:\nI myself reprehend his own person, for I am his\ngrace's tharborough: but I would see his own person\nin flesh and blood.\n\nBIRON:\nThis is he.\n\nDULL:\nSignior Arme--Arme--commends you. There's villany\nabroad: this letter will tell you more.\n\nCOSTARD:\nSir, the contempts thereof are as touching me.\n\nFERDINAND:\nA letter from the magnificent Armado.\n\nBIRON:\nHow low soever the matter, I hope in God for high words.\n\nLONGAVILLE:\nA high hope for a low heaven: God grant us patience!\n\nBIRON:\nTo hear? or forbear laughing?\n\nLONGAVILLE:\nTo hear meekly, sir, and to laugh moderately; or to\nforbear both.\n\nBIRON:\nWell, sir, be it as the style shall give us cause to\nclimb in the merriness.\n\nCOSTARD:\nThe matter is to me, sir, as concerning Jaquenetta.\nThe manner of it is, I was taken with the manner.\n\nBIRON:\nIn what manner?\n\nCOSTARD:\nIn manner and form following, sir; all those three:\nI was seen with her in the manor-house, sitting with\nher upon the form, and taken following her into the\npark; which, put together, is in manner and form\nfollowing. Now, sir, for the manner,--it is the\nmanner of a man to speak to a woman: for the form,--\nin some form.\n\nBIRON:\nFor the following, sir?\n\nCOSTARD:\nAs it shall follow in my correction: and God defend\nthe right!\n\nFERDINAND:\nWill you hear this letter with attention?\n\nBIRON:\nAs we would hear an oracle.\n\nCOSTARD:\nSuch is the simplicity of man to hearken after the flesh.\n\nFERDINAND:\n\nCOSTARD:\nNot a word of Costard yet.\n\nFERDINAND:\n\nCOSTARD:\nIt may be so: but if he say it is so, he is, in\ntelling true, but so.\n\nFERDINAND:\nPeace!\n\nCOSTARD:\nBe to me and every man that dares not fight!\n\nFERDINAND:\nNo words!\n\nCOSTARD:\nOf other men's secrets, I beseech you.\n\nFERDINAND:\n\nCOSTARD:\nMe?\n\nFERDINAND:\n\nCOSTARD:\nMe?\n\nFERDINAND:\n\nCOSTARD:\nStill me?\n\nFERDINAND:\n\nCOSTARD:\nO, me!\n\nFERDINAND:\n\nCOSTARD:\nWith a wench.\n\nFERDINAND:\n\nDULL:\n'Me, an't shall please you; I am Anthony Dull.\n\nFERDINAND:\n\nBIRON:\nThis is not so well as I looked for, but the best\nthat ever I heard.\n\nFERDINAND:\nAy, the best for the worst. But, sirrah, what say\nyou to this?\n\nCOSTARD:\nSir, I confess the wench.\n\nFERDINAND:\nDid you hear the proclamation?\n\nCOSTARD:\nI do confess much of the hearing it but little of\nthe marking of it.\n\nFERDINAND:\nIt was proclaimed a year's imprisonment, to be taken\nwith a wench.\n\nCOSTARD:\nI was taken with none, sir: I was taken with a damsel.\n\nFERDINAND:\nWell, it was proclaimed 'damsel.'\n\nCOSTARD:\nThis was no damsel, neither, sir; she was a virgin.\n\nFERDINAND:\nIt is so varied, too; for it was proclaimed 'virgin.'\n\nCOSTARD:\nIf it were, I deny her virginity: I was taken with a maid.\n\nFERDINAND:\nThis maid will not serve your turn, sir.\n\nCOSTARD:\nThis maid will serve my turn, sir.\n\nFERDINAND:\nSir, I will pronounce your sentence: you shall fast\na week with bran and water.\n\nCOSTARD:\nI had rather pray a month with mutton and porridge.\n\nFERDINAND:\nAnd Don Armado shall be your keeper.\nMy Lord Biron, see him deliver'd o'er:\nAnd go we, lords, to put in practise that\nWhich each to other hath so strongly sworn.\n\nBIRON:\nI'll lay my head to any good man's hat,\nThese oaths and laws will prove an idle scorn.\nSirrah, come on.\n\nCOSTARD:\nI suffer for the truth, sir; for true it is, I was\ntaken with Jaquenetta, and Jaquenetta is a true\ngirl; and therefore welcome the sour cup of\nprosperity! Affliction may one day smile again; and\ntill then, sit thee down, sorrow!\n\nDON ADRIANO DE ARMADO:\nBoy, what sign is it when a man of great spirit\ngrows melancholy?\n\nMOTH:\nA great sign, sir, that he will look sad.\n\nDON ADRIANO DE ARMADO:\nWhy, sadness is one and the self-same thing, dear imp.\n\nMOTH:\nNo, no; O Lord, sir, no.\n\nDON ADRIANO DE ARMADO:\nHow canst thou part sadness and melancholy, my\ntender juvenal?\n\nMOTH:\nBy a familiar demonstration of the working, my tough senior.\n\nDON ADRIANO DE ARMADO:\nWhy tough senior? why tough senior?\n\nMOTH:\nWhy tender juvenal? why tender juvenal?\n\nDON ADRIANO DE ARMADO:\nI spoke it, tender juvenal, as a congruent epitheton\nappertaining to thy young days, which we may\nnominate tender.\n\nMOTH:\nAnd I, tough senior, as an appertinent title to your\nold time, which we may name tough.\n\nDON ADRIANO DE ARMADO:\nPretty and apt.\n\nMOTH:\nHow mean you, sir? I pretty, and my saying apt? or\nI apt, and my saying pretty?\n\nDON ADRIANO DE ARMADO:\nThou pretty, because little.\n\nMOTH:\nLittle pretty, because little. Wherefore apt?\n\nDON ADRIANO DE ARMADO:\nAnd therefore apt, because quick.\n\nMOTH:\nSpeak you this in my praise, master?\n\nDON ADRIANO DE ARMADO:\nIn thy condign praise.\n\nMOTH:\nI will praise an eel with the same praise.\n\nDON ADRIANO DE ARMADO:\nWhat, that an eel is ingenious?\n\nMOTH:\nThat an eel is quick.\n\nDON ADRIANO DE ARMADO:\nI do say thou art quick in answers: thou heatest my blood.\n\nMOTH:\nI am answered, sir.\n\nDON ADRIANO DE ARMADO:\nI love not to be crossed.\n\nMOTH:\n\nDON ADRIANO DE ARMADO:\nI have promised to study three years with the duke.\n\nMOTH:\nYou may do it in an hour, sir.\n\nDON ADRIANO DE ARMADO:\nImpossible.\n\nMOTH:\nHow many is one thrice told?\n\nDON ADRIANO DE ARMADO:\nI am ill at reckoning; it fitteth the spirit of a tapster.\n\nMOTH:\nYou are a gentleman and a gamester, sir.\n\nDON ADRIANO DE ARMADO:\nI confess both: they are both the varnish of a\ncomplete man.\n\nMOTH:\nThen, I am sure, you know how much the gross sum of\ndeuce-ace amounts to.\n\nDON ADRIANO DE ARMADO:\nIt doth amount to one more than two.\n\nMOTH:\nWhich the base vulgar do call three.\n\nDON ADRIANO DE ARMADO:\nTrue.\n\nMOTH:\nWhy, sir, is this such a piece of study? Now here\nis three studied, ere ye'll thrice wink: and how\neasy it is to put 'years' to the word 'three,' and\nstudy three years in two words, the dancing horse\nwill tell you.\n\nDON ADRIANO DE ARMADO:\nA most fine figure!\n\nMOTH:\nTo prove you a cipher.\n\nDON ADRIANO DE ARMADO:\nI will hereupon confess I am in love: and as it is\nbase for a soldier to love, so am I in love with a\nbase wench. If drawing my sword against the humour\nof affection would deliver me from the reprobate\nthought of it, I would take Desire prisoner, and\nransom him to any French courtier for a new-devised\ncourtesy. I think scorn to sigh: methinks I should\noutswear Cupid. Comfort, me, boy: what great men\nhave been in love?\n\nMOTH:\nHercules, master.\n\nDON ADRIANO DE ARMADO:\nMost sweet Hercules! More authority, dear boy, name\nmore; and, sweet my child, let them be men of good\nrepute and carriage.\n\nMOTH:\nSamson, master: he was a man of good carriage, great\ncarriage, for he carried the town-gates on his back\nlike a porter: and he was in love.\n\nDON ADRIANO DE ARMADO:\nO well-knit Samson! strong-jointed Samson! I do\nexcel thee in my rapier as much as thou didst me in\ncarrying gates. I am in love too. Who was Samson's\nlove, my dear Moth?\n\nMOTH:\nA woman, master.\n\nDON ADRIANO DE ARMADO:\nOf what complexion?\n\nMOTH:\nOf all the four, or the three, or the two, or one of the four.\n\nDON ADRIANO DE ARMADO:\nTell me precisely of what complexion.\n\nMOTH:\nOf the sea-water green, sir.\n\nDON ADRIANO DE ARMADO:\nIs that one of the four complexions?\n\nMOTH:\nAs I have read, sir; and the best of them too.\n\nDON ADRIANO DE ARMADO:\nGreen indeed is the colour of lovers; but to have a\nlove of that colour, methinks Samson had small reason\nfor it. He surely affected her for her wit.\n\nMOTH:\nIt was so, sir; for she had a green wit.\n\nDON ADRIANO DE ARMADO:\nMy love is most immaculate white and red.\n\nMOTH:\nMost maculate thoughts, master, are masked under\nsuch colours.\n\nDON ADRIANO DE ARMADO:\nDefine, define, well-educated infant.\n\nMOTH:\nMy father's wit and my mother's tongue, assist me!\n\nDON ADRIANO DE ARMADO:\nSweet invocation of a child; most pretty and\npathetical!\n\nMOTH:\nIf she be made of white and red,\nHer faults will ne'er be known,\nFor blushing cheeks by faults are bred\nAnd fears by pale white shown:\nThen if she fear, or be to blame,\nBy this you shall not know,\nFor still her cheeks possess the same\nWhich native she doth owe.\nA dangerous rhyme, master, against the reason of\nwhite and red.\n\nDON ADRIANO DE ARMADO:\nIs there not a ballad, boy, of the King and the Beggar?\n\nMOTH:\nThe world was very guilty of such a ballad some\nthree ages since: but I think now 'tis not to be\nfound; or, if it were, it would neither serve for\nthe writing nor the tune.\n\nDON ADRIANO DE ARMADO:\nI will have that subject newly writ o'er, that I may\nexample my digression by some mighty precedent.\nBoy, I do love that country girl that I took in the\npark with the rational hind Costard: she deserves well.\n\nMOTH:\n\nDON ADRIANO DE ARMADO:\nSing, boy; my spirit grows heavy in love.\n\nMOTH:\nAnd that's great marvel, loving a light wench.\n\nDON ADRIANO DE ARMADO:\nI say, sing.\n\nMOTH:\nForbear till this company be past.\n\nDULL:\nSir, the duke's pleasure is, that you keep Costard\nsafe: and you must suffer him to take no delight\nnor no penance; but a' must fast three days a week.\nFor this damsel, I must keep her at the park: she\nis allowed for the day-woman. Fare you well.\n\nDON ADRIANO DE ARMADO:\nI do betray myself with blushing. Maid!\n\nJAQUENETTA:\nMan?\n\nDON ADRIANO DE ARMADO:\nI will visit thee at the lodge.\n\nJAQUENETTA:\nThat's hereby.\n\nDON ADRIANO DE ARMADO:\nI know where it is situate.\n\nJAQUENETTA:\nLord, how wise you are!\n\nDON ADRIANO DE ARMADO:\nI will tell thee wonders.\n\nJAQUENETTA:\nWith that face?\n\nDON ADRIANO DE ARMADO:\nI love thee.\n\nJAQUENETTA:\nSo I heard you say.\n\nDON ADRIANO DE ARMADO:\nAnd so, farewell.\n\nJAQUENETTA:\nFair weather after you!\n\nDULL:\nCome, Jaquenetta, away!\n\nDON ADRIANO DE ARMADO:\nVillain, thou shalt fast for thy offences ere thou\nbe pardoned.\n\nCOSTARD:\nWell, sir, I hope, when I do it, I shall do it on a\nfull stomach.\n\nDON ADRIANO DE ARMADO:\nThou shalt be heavily punished.\n\nCOSTARD:\nI am more bound to you than your fellows, for they\nare but lightly rewarded.\n\nDON ADRIANO DE ARMADO:\nTake away this villain; shut him up.\n\nMOTH:\nCome, you transgressing slave; away!\n\nCOSTARD:\nLet me not be pent up, sir: I will fast, being loose.\n\nMOTH:\nNo, sir; that were fast and loose: thou shalt to prison.\n\nCOSTARD:\nWell, if ever I do see the merry days of desolation\nthat I have seen, some shall see.\n\nMOTH:\nWhat shall some see?\n\nCOSTARD:\nNay, nothing, Master Moth, but what they look upon.\nIt is not for prisoners to be too silent in their\nwords; and therefore I will say nothing: I thank\nGod I have as little patience as another man; and\ntherefore I can be quiet.\n\nDON ADRIANO DE ARMADO:\nI do affect the very ground, which is base, where\nher shoe, which is baser, guided by her foot, which\nis basest, doth tread. I shall be forsworn, which\nis a great argument of falsehood, if I love. And\nhow can that be true love which is falsely\nattempted? Love is a familiar; Love is a devil:\nthere is no evil angel but Love. Yet was Samson so\ntempted, and he had an excellent strength; yet was\nSolomon so seduced, and he had a very good wit.\nCupid's butt-shaft is too hard for Hercules' club;\nand therefore too much odds for a Spaniard's rapier.\nThe first and second cause will not serve my turn;\nthe passado he respects not, the duello he regards\nnot: his disgrace is to be called boy; but his\nglory is to subdue men. Adieu, valour! rust rapier!\nbe still, drum! for your manager is in love; yea,\nhe loveth. Assist me, some extemporal god of rhyme,\nfor I am sure I shall turn sonnet. Devise, wit;\nwrite, pen; for I am for whole volumes in folio.\n\nBOYET:\nNow, madam, summon up your dearest spirits:\nConsider who the king your father sends,\nTo whom he sends, and what's his embassy:\nYourself, held precious in the world's esteem,\nTo parley with the sole inheritor\nOf all perfections that a man may owe,\nMatchless Navarre; the plea of no less weight\nThan Aquitaine, a dowry for a queen.\nBe now as prodigal of all dear grace\nAs Nature was in making graces dear\nWhen she did starve the general world beside\nAnd prodigally gave them all to you.\n\nPRINCESS:\nGood Lord Boyet, my beauty, though but mean,\nNeeds not the painted flourish of your praise:\nBeauty is bought by judgement of the eye,\nNot utter'd by base sale of chapmen's tongues:\nI am less proud to hear you tell my worth\nThan you much willing to be counted wise\nIn spending your wit in the praise of mine.\nBut now to task the tasker: good Boyet,\nYou are not ignorant, all-telling fame\nDoth noise abroad, Navarre hath made a vow,\nTill painful study shall outwear three years,\nNo woman may approach his silent court:\nTherefore to's seemeth it a needful course,\nBefore we enter his forbidden gates,\nTo know his pleasure; and in that behalf,\nBold of your worthiness, we single you\nAs our best-moving fair solicitor.\nTell him, the daughter of the King of France,\nOn serious business, craving quick dispatch,\nImportunes personal conference with his grace:\nHaste, signify so much; while we attend,\nLike humble-visaged suitors, his high will.\n\nBOYET:\nProud of employment, willingly I go.\n\nPRINCESS:\nAll pride is willing pride, and yours is so.\nWho are the votaries, my loving lords,\nThat are vow-fellows with this virtuous duke?\n\nFirst Lord:\nLord Longaville is one.\n\nPRINCESS:\nKnow you the man?\n\nMARIA:\nI know him, madam: at a marriage-feast,\nBetween Lord Perigort and the beauteous heir\nOf Jaques Falconbridge, solemnized\nIn Normandy, saw I this Longaville:\nA man of sovereign parts he is esteem'd;\nWell fitted in arts, glorious in arms:\nNothing becomes him ill that he would well.\nThe only soil of his fair virtue's gloss,\nIf virtue's gloss will stain with any soil,\nIs a sharp wit matched with too blunt a will;\nWhose edge hath power to cut, whose will still wills\nIt should none spare that come within his power.\n\nPRINCESS:\nSome merry mocking lord, belike; is't so?\n\nMARIA:\nThey say so most that most his humours know.\n\nPRINCESS:\nSuch short-lived wits do wither as they grow.\nWho are the rest?\n\nKATHARINE:\nThe young Dumain, a well-accomplished youth,\nOf all that virtue love for virtue loved:\nMost power to do most harm, least knowing ill;\nFor he hath wit to make an ill shape good,\nAnd shape to win grace though he had no wit.\nI saw him at the Duke Alencon's once;\nAnd much too little of that good I saw\nIs my report to his great worthiness.\n\nROSALINE:\nAnother of these students at that time\nWas there with him, if I have heard a truth.\nBiron they call him; but a merrier man,\nWithin the limit of becoming mirth,\nI never spent an hour's talk withal:\nHis eye begets occasion for his wit;\nFor every object that the one doth catch\nThe other turns to a mirth-moving jest,\nWhich his fair tongue, conceit's expositor,\nDelivers in such apt and gracious words\nThat aged ears play truant at his tales\nAnd younger hearings are quite ravished;\nSo sweet and voluble is his discourse.\n\nPRINCESS:\nGod bless my ladies! are they all in love,\nThat every one her own hath garnished\nWith such bedecking ornaments of praise?\n\nFirst Lord:\nHere comes Boyet.\n\nPRINCESS:\nNow, what admittance, lord?\n\nBOYET:\nNavarre had notice of your fair approach;\nAnd he and his competitors in oath\nWere all address'd to meet you, gentle lady,\nBefore I came. Marry, thus much I have learnt:\nHe rather means to lodge you in the field,\nLike one that comes here to besiege his court,\nThan seek a dispensation for his oath,\nTo let you enter his unpeopled house.\nHere comes Navarre.\n\nFERDINAND:\nFair princess, welcome to the court of Navarre.\n\nPRINCESS:\n'Fair' I give you back again; and 'welcome' I have\nnot yet: the roof of this court is too high to be\nyours; and welcome to the wide fields too base to be mine.\n\nFERDINAND:\nYou shall be welcome, madam, to my court.\n\nPRINCESS:\nI will be welcome, then: conduct me thither.\n\nFERDINAND:\nHear me, dear lady; I have sworn an oath.\n\nPRINCESS:\nOur Lady help my lord! he'll be forsworn.\n\nFERDINAND:\nNot for the world, fair madam, by my will.\n\nPRINCESS:\nWhy, will shall break it; will and nothing else.\n\nFERDINAND:\nYour ladyship is ignorant what it is.\n\nPRINCESS:\nWere my lord so, his ignorance were wise,\nWhere now his knowledge must prove ignorance.\nI hear your grace hath sworn out house-keeping:\nTis deadly sin to keep that oath, my lord,\nAnd sin to break it.\nBut pardon me. I am too sudden-bold:\nTo teach a teacher ill beseemeth me.\nVouchsafe to read the purpose of my coming,\nAnd suddenly resolve me in my suit.\n\nFERDINAND:\nMadam, I will, if suddenly I may.\n\nPRINCESS:\nYou will the sooner, that I were away;\nFor you'll prove perjured if you make me stay.\n\nBIRON:\nDid not I dance with you in Brabant once?\n\nROSALINE:\nDid not I dance with you in Brabant once?\n\nBIRON:\nI know you did.\n\nROSALINE:\nHow needless was it then to ask the question!\n\nBIRON:\nYou must not be so quick.\n\nROSALINE:\n'Tis 'long of you that spur me with such questions.\n\nBIRON:\nYour wit's too hot, it speeds too fast, 'twill tire.\n\nROSALINE:\nNot till it leave the rider in the mire.\n\nBIRON:\nWhat time o' day?\n\nROSALINE:\nThe hour that fools should ask.\n\nBIRON:\nNow fair befall your mask!\n\nROSALINE:\nFair fall the face it covers!\n\nBIRON:\nAnd send you many lovers!\n\nROSALINE:\nAmen, so you be none.\n\nBIRON:\nNay, then will I be gone.\n\nFERDINAND:\nMadam, your father here doth intimate\nThe payment of a hundred thousand crowns;\nBeing but the one half of an entire sum\nDisbursed by my father in his wars.\nBut say that he or we, as neither have,\nReceived that sum, yet there remains unpaid\nA hundred thousand more; in surety of the which,\nOne part of Aquitaine is bound to us,\nAlthough not valued to the money's worth.\nIf then the king your father will restore\nBut that one half which is unsatisfied,\nWe will give up our right in Aquitaine,\nAnd hold fair friendship with his majesty.\nBut that, it seems, he little purposeth,\nFor here he doth demand to have repaid\nA hundred thousand crowns; and not demands,\nOn payment of a hundred thousand crowns,\nTo have his title live in Aquitaine;\nWhich we much rather had depart withal\nAnd have the money by our father lent\nThan Aquitaine so gelded as it is.\nDear Princess, were not his requests so far\nFrom reason's yielding, your fair self should make\nA yielding 'gainst some reason in my breast\nAnd go well satisfied to France again.\n\nPRINCESS:\nYou do the king my father too much wrong\nAnd wrong the reputation of your name,\nIn so unseeming to confess receipt\nOf that which hath so faithfully been paid.\n\nFERDINAND:\nI do protest I never heard of it;\nAnd if you prove it, I'll repay it back\nOr yield up Aquitaine.\n\nPRINCESS:\nWe arrest your word.\nBoyet, you can produce acquittances\nFor such a sum from special officers\nOf Charles his father.\n\nFERDINAND:\nSatisfy me so.\n\nBOYET:\nSo please your grace, the packet is not come\nWhere that and other specialties are bound:\nTo-morrow you shall have a sight of them.\n\nFERDINAND:\nIt shall suffice me: at which interview\nAll liberal reason I will yield unto.\nMeantime receive such welcome at my hand\nAs honour without breach of honour may\nMake tender of to thy true worthiness:\nYou may not come, fair princess, in my gates;\nBut here without you shall be so received\nAs you shall deem yourself lodged in my heart,\nThough so denied fair harbour in my house.\nYour own good thoughts excuse me, and farewell:\nTo-morrow shall we visit you again.\n\nPRINCESS:\nSweet health and fair desires consort your grace!\n\nFERDINAND:\nThy own wish wish I thee in every place!\n\nBIRON:\nLady, I will commend you to mine own heart.\n\nROSALINE:\nPray you, do my commendations; I would be glad to see it.\n\nBIRON:\nI would you heard it groan.\n\nROSALINE:\nIs the fool sick?\n\nBIRON:\nSick at the heart.\n\nROSALINE:\nAlack, let it blood.\n\nBIRON:\nWould that do it good?\n\nROSALINE:\nMy physic says 'ay.'\n\nBIRON:\nWill you prick't with your eye?\n\nROSALINE:\nNo point, with my knife.\n\nBIRON:\nNow, God save thy life!\n\nROSALINE:\nAnd yours from long living!\n\nBIRON:\nI cannot stay thanksgiving.\n\nDUMAIN:\nSir, I pray you, a word: what lady is that same?\n\nBOYET:\nThe heir of Alencon, Katharine her name.\n\nDUMAIN:\nA gallant lady. Monsieur, fare you well.\n\nLONGAVILLE:\nI beseech you a word: what is she in the white?\n\nBOYET:\nA woman sometimes, an you saw her in the light.\n\nLONGAVILLE:\nPerchance light in the light. I desire her name.\n\nBOYET:\nShe hath but one for herself; to desire that were a shame.\n\nLONGAVILLE:\nPray you, sir, whose daughter?\n\nBOYET:\nHer mother's, I have heard.\n\nLONGAVILLE:\nGod's blessing on your beard!\n\nBOYET:\nGood sir, be not offended.\nShe is an heir of Falconbridge.\n\nLONGAVILLE:\nNay, my choler is ended.\nShe is a most sweet lady.\n\nBOYET:\nNot unlike, sir, that may be.\n\nBIRON:\nWhat's her name in the cap?\n\nBOYET:\nRosaline, by good hap.\n\nBIRON:\nIs she wedded or no?\n\nBOYET:\nTo her will, sir, or so.\n\nBIRON:\nYou are welcome, sir: adieu.\n\nBOYET:\nFarewell to me, sir, and welcome to you.\n\nMARIA:\nThat last is Biron, the merry madcap lord:\nNot a word with him but a jest.\n\nBOYET:\nAnd every jest but a word.\n\nPRINCESS:\nIt was well done of you to take him at his word.\n\nBOYET:\nI was as willing to grapple as he was to board.\n\nMARIA:\nTwo hot sheeps, marry.\n\nBOYET:\nAnd wherefore not ships?\nNo sheep, sweet lamb, unless we feed on your lips.\n\nMARIA:\nYou sheep, and I pasture: shall that finish the jest?\n\nBOYET:\nSo you grant pasture for me.\n\nMARIA:\nNot so, gentle beast:\nMy lips are no common, though several they be.\n\nBOYET:\nBelonging to whom?\n\nMARIA:\nTo my fortunes and me.\n\nPRINCESS:\nGood wits will be jangling; but, gentles, agree:\nThis civil war of wits were much better used\nOn Navarre and his book-men; for here 'tis abused.\n\nBOYET:\nIf my observation, which very seldom lies,\nBy the heart's still rhetoric disclosed with eyes,\nDeceive me not now, Navarre is infected.\n\nPRINCESS:\nWith what?\n\nBOYET:\nWith that which we lovers entitle affected.\n\nPRINCESS:\nYour reason?\n\nBOYET:\nWhy, all his behaviors did make their retire\nTo the court of his eye, peeping thorough desire:\nHis heart, like an agate, with your print impress'd,\nProud with his form, in his eye pride express'd:\nHis tongue, all impatient to speak and not see,\nDid stumble with haste in his eyesight to be;\nAll senses to that sense did make their repair,\nTo feel only looking on fairest of fair:\nMethought all his senses were lock'd in his eye,\nAs jewels in crystal for some prince to buy;\nWho, tendering their own worth from where they were glass'd,\nDid point you to buy them, along as you pass'd:\nHis face's own margent did quote such amazes\nThat all eyes saw his eyes enchanted with gazes.\nI'll give you Aquitaine and all that is his,\nAn you give him for my sake but one loving kiss.\n\nPRINCESS:\nCome to our pavilion: Boyet is disposed.\n\nBOYET:\nBut to speak that in words which his eye hath\ndisclosed.\nI only have made a mouth of his eye,\nBy adding a tongue which I know will not lie.\n\nROSALINE:\nThou art an old love-monger and speakest skilfully.\n\nMARIA:\nHe is Cupid's grandfather and learns news of him.\n\nROSALINE:\nThen was Venus like her mother, for her father is but grim.\n\nBOYET:\nDo you hear, my mad wenches?\n\nMARIA:\nNo.\n\nBOYET:\nWhat then, do you see?\n\nROSALINE:\nAy, our way to be gone.\n\nBOYET:\nYou are too hard for me.\n\nDON ADRIANO DE ARMADO:\nWarble, child; make passionate my sense of hearing.\n\nMOTH:\nConcolinel.\n\nDON ADRIANO DE ARMADO:\nSweet air! Go, tenderness of years; take this key,\ngive enlargement to the swain, bring him festinately\nhither: I must employ him in a letter to my love.\n\nMOTH:\nMaster, will you win your love with a French brawl?\n\nDON ADRIANO DE ARMADO:\nHow meanest thou? brawling in French?\n\nMOTH:\nNo, my complete master: but to jig off a tune at\nthe tongue's end, canary to it with your feet, humour\nit with turning up your eyelids, sigh a note and\nsing a note, sometime through the throat, as if you\nswallowed love with singing love, sometime through\nthe nose, as if you snuffed up love by smelling\nlove; with your hat penthouse-like o'er the shop of\nyour eyes; with your arms crossed on your thin-belly\ndoublet like a rabbit on a spit; or your hands in\nyour pocket like a man after the old painting; and\nkeep not too long in one tune, but a snip and away.\nThese are complements, these are humours; these\nbetray nice wenches, that would be betrayed without\nthese; and make them men of note--do you note\nme?--that most are affected to these.\n\nDON ADRIANO DE ARMADO:\nHow hast thou purchased this experience?\n\nMOTH:\nBy my penny of observation.\n\nDON ADRIANO DE ARMADO:\nBut O,--but O,--\n\nMOTH:\n'The hobby-horse is forgot.'\n\nDON ADRIANO DE ARMADO:\nCallest thou my love 'hobby-horse'?\n\nMOTH:\nNo, master; the hobby-horse is but a colt, and your\nlove perhaps a hackney. But have you forgot your love?\n\nDON ADRIANO DE ARMADO:\nAlmost I had.\n\nMOTH:\nNegligent student! learn her by heart.\n\nDON ADRIANO DE ARMADO:\nBy heart and in heart, boy.\n\nMOTH:\nAnd out of heart, master: all those three I will prove.\n\nDON ADRIANO DE ARMADO:\nWhat wilt thou prove?\n\nMOTH:\nA man, if I live; and this, by, in, and without, upon\nthe instant: by heart you love her, because your\nheart cannot come by her; in heart you love her,\nbecause your heart is in love with her; and out of\nheart you love her, being out of heart that you\ncannot enjoy her.\n\nDON ADRIANO DE ARMADO:\nI am all these three.\n\nMOTH:\nAnd three times as much more, and yet nothing at\nall.\n\nDON ADRIANO DE ARMADO:\nFetch hither the swain: he must carry me a letter.\n\nMOTH:\nA message well sympathized; a horse to be ambassador\nfor an ass.\n\nDON ADRIANO DE ARMADO:\nHa, ha! what sayest thou?\n\nMOTH:\nMarry, sir, you must send the ass upon the horse,\nfor he is very slow-gaited. But I go.\n\nDON ADRIANO DE ARMADO:\nThe way is but short: away!\n\nMOTH:\nAs swift as lead, sir.\n\nDON ADRIANO DE ARMADO:\nThe meaning, pretty ingenious?\nIs not lead a metal heavy, dull, and slow?\n\nMOTH:\nMinime, honest master; or rather, master, no.\n\nDON ADRIANO DE ARMADO:\nI say lead is slow.\n\nMOTH:\nYou are too swift, sir, to say so:\nIs that lead slow which is fired from a gun?\n\nDON ADRIANO DE ARMADO:\nSweet smoke of rhetoric!\nHe reputes me a cannon; and the bullet, that's he:\nI shoot thee at the swain.\n\nMOTH:\nThump then and I flee.\n\nDON ADRIANO DE ARMADO:\nA most acute juvenal; voluble and free of grace!\nBy thy favour, sweet welkin, I must sigh in thy face:\nMost rude melancholy, valour gives thee place.\nMy herald is return'd.\n\nMOTH:\nA wonder, master! here's a costard broken in a shin.\n\nDON ADRIANO DE ARMADO:\nSome enigma, some riddle: come, thy l'envoy; begin.\n\nCOSTARD:\nNo enigma, no riddle, no l'envoy; no salve in the\nmail, sir: O, sir, plantain, a plain plantain! no\nl'envoy, no l'envoy; no salve, sir, but a plantain!\n\nDON ADRIANO DE ARMADO:\nBy virtue, thou enforcest laughter; thy silly\nthought my spleen; the heaving of my lungs provokes\nme to ridiculous smiling. O, pardon me, my stars!\nDoth the inconsiderate take salve for l'envoy, and\nthe word l'envoy for a salve?\n\nMOTH:\nDo the wise think them other? is not l'envoy a salve?\n\nDON ADRIANO DE ARMADO:\nNo, page: it is an epilogue or discourse, to make plain\nSome obscure precedence that hath tofore been sain.\nI will example it:\nThe fox, the ape, and the humble-bee,\nWere still at odds, being but three.\nThere's the moral. Now the l'envoy.\n\nMOTH:\nI will add the l'envoy. Say the moral again.\n\nDON ADRIANO DE ARMADO:\nThe fox, the ape, and the humble-bee,\nWere still at odds, being but three.\n\nMOTH:\nUntil the goose came out of door,\nAnd stay'd the odds by adding four.\nNow will I begin your moral, and do you follow with\nmy l'envoy.\nThe fox, the ape, and the humble-bee,\nWere still at odds, being but three.\n\nDON ADRIANO DE ARMADO:\nUntil the goose came out of door,\nStaying the odds by adding four.\n\nMOTH:\nA good l'envoy, ending in the goose: would you\ndesire more?\n\nCOSTARD:\nThe boy hath sold him a bargain, a goose, that's flat.\nSir, your pennyworth is good, an your goose be fat.\nTo sell a bargain well is as cunning as fast and loose:\nLet me see; a fat l'envoy; ay, that's a fat goose.\n\nDON ADRIANO DE ARMADO:\nCome hither, come hither. How did this argument begin?\n\nMOTH:\nBy saying that a costard was broken in a shin.\nThen call'd you for the l'envoy.\n\nCOSTARD:\nTrue, and I for a plantain: thus came your\nargument in;\nThen the boy's fat l'envoy, the goose that you bought;\nAnd he ended the market.\n\nDON ADRIANO DE ARMADO:\nBut tell me; how was there a costard broken in a shin?\n\nMOTH:\nI will tell you sensibly.\n\nCOSTARD:\nThou hast no feeling of it, Moth: I will speak that l'envoy:\nI Costard, running out, that was safely within,\nFell over the threshold and broke my shin.\n\nDON ADRIANO DE ARMADO:\nWe will talk no more of this matter.\n\nCOSTARD:\nTill there be more matter in the shin.\n\nDON ADRIANO DE ARMADO:\nSirrah Costard, I will enfranchise thee.\n\nCOSTARD:\nO, marry me to one Frances: I smell some l'envoy,\nsome goose, in this.\n\nDON ADRIANO DE ARMADO:\nBy my sweet soul, I mean setting thee at liberty,\nenfreedoming thy person; thou wert immured,\nrestrained, captivated, bound.\n\nCOSTARD:\nTrue, true; and now you will be my purgation and let me loose.\n\nDON ADRIANO DE ARMADO:\nI give thee thy liberty, set thee from durance; and,\nin lieu thereof, impose on thee nothing but this:\nbear this significant\nto the country maid Jaquenetta:\nthere is remuneration; for the best ward of mine\nhonour is rewarding my dependents. Moth, follow.\n\nMOTH:\nLike the sequel, I. Signior Costard, adieu.\n\nCOSTARD:\nMy sweet ounce of man's flesh! my incony Jew!\nNow will I look to his remuneration. Remuneration!\nO, that's the Latin word for three farthings: three\nfarthings--remuneration.--'What's the price of this\ninkle?'--'One penny.'--'No, I'll give you a\nremuneration:' why, it carries it. Remuneration!\nwhy, it is a fairer name than French crown. I will\nnever buy and sell out of this word.\n\nBIRON:\nO, my good knave Costard! exceedingly well met.\n\nCOSTARD:\nPray you, sir, how much carnation ribbon may a man\nbuy for a remuneration?\n\nBIRON:\nWhat is a remuneration?\n\nCOSTARD:\nMarry, sir, halfpenny farthing.\n\nBIRON:\nWhy, then, three-farthing worth of silk.\n\nCOSTARD:\nI thank your worship: God be wi' you!\n\nBIRON:\nStay, slave; I must employ thee:\nAs thou wilt win my favour, good my knave,\nDo one thing for me that I shall entreat.\n\nCOSTARD:\nWhen would you have it done, sir?\n\nBIRON:\nThis afternoon.\n\nCOSTARD:\nWell, I will do it, sir: fare you well.\n\nBIRON:\nThou knowest not what it is.\n\nCOSTARD:\nI shall know, sir, when I have done it.\n\nBIRON:\nWhy, villain, thou must know first.\n\nCOSTARD:\nI will come to your worship to-morrow morning.\n\nBIRON:\nIt must be done this afternoon.\nHark, slave, it is but this:\nThe princess comes to hunt here in the park,\nAnd in her train there is a gentle lady;\nWhen tongues speak sweetly, then they name her name,\nAnd Rosaline they call her: ask for her;\nAnd to her white hand see thou do commend\nThis seal'd-up counsel. There's thy guerdon; go.\n\nCOSTARD:\nGardon, O sweet gardon! better than remuneration,\na'leven-pence farthing better: most sweet gardon! I\nwill do it sir, in print. Gardon! Remuneration!\n\nBIRON:\nAnd I, forsooth, in love! I, that have been love's whip;\nA very beadle to a humorous sigh;\nA critic, nay, a night-watch constable;\nA domineering pedant o'er the boy;\nThan whom no mortal so magnificent!\nThis whimpled, whining, purblind, wayward boy;\nThis senior-junior, giant-dwarf, Dan Cupid;\nRegent of love-rhymes, lord of folded arms,\nThe anointed sovereign of sighs and groans,\nLiege of all loiterers and malcontents,\nDread prince of plackets, king of codpieces,\nSole imperator and great general\nOf trotting 'paritors:--O my little heart:--\nAnd I to be a corporal of his field,\nAnd wear his colours like a tumbler's hoop!\nWhat, I! I love! I sue! I seek a wife!\nA woman, that is like a German clock,\nStill a-repairing, ever out of frame,\nAnd never going aright, being a watch,\nBut being watch'd that it may still go right!\nNay, to be perjured, which is worst of all;\nAnd, among three, to love the worst of all;\nA wightly wanton with a velvet brow,\nWith two pitch-balls stuck in her face for eyes;\nAy, and by heaven, one that will do the deed\nThough Argus were her eunuch and her guard:\nAnd I to sigh for her! to watch for her!\nTo pray for her! Go to; it is a plague\nThat Cupid will impose for my neglect\nOf his almighty dreadful little might.\nWell, I will love, write, sigh, pray, sue and groan:\nSome men must love my lady and some Joan.\n\nPRINCESS:\nWas that the king, that spurred his horse so hard\nAgainst the steep uprising of the hill?\n\nBOYET:\nI know not; but I think it was not he.\n\nPRINCESS:\nWhoe'er a' was, a' show'd a mounting mind.\nWell, lords, to-day we shall have our dispatch:\nOn Saturday we will return to France.\nThen, forester, my friend, where is the bush\nThat we must stand and play the murderer in?\n\nForester:\nHereby, upon the edge of yonder coppice;\nA stand where you may make the fairest shoot.\n\nPRINCESS:\nI thank my beauty, I am fair that shoot,\nAnd thereupon thou speak'st the fairest shoot.\n\nForester:\nPardon me, madam, for I meant not so.\n\nPRINCESS:\nWhat, what? first praise me and again say no?\nO short-lived pride! Not fair? alack for woe!\n\nForester:\nYes, madam, fair.\n\nPRINCESS:\nNay, never paint me now:\nWhere fair is not, praise cannot mend the brow.\nHere, good my glass, take this for telling true:\nFair payment for foul words is more than due.\n\nForester:\nNothing but fair is that which you inherit.\n\nPRINCESS:\nSee see, my beauty will be saved by merit!\nO heresy in fair, fit for these days!\nA giving hand, though foul, shall have fair praise.\nBut come, the bow: now mercy goes to kill,\nAnd shooting well is then accounted ill.\nThus will I save my credit in the shoot:\nNot wounding, pity would not let me do't;\nIf wounding, then it was to show my skill,\nThat more for praise than purpose meant to kill.\nAnd out of question so it is sometimes,\nGlory grows guilty of detested crimes,\nWhen, for fame's sake, for praise, an outward part,\nWe bend to that the working of the heart;\nAs I for praise alone now seek to spill\nThe poor deer's blood, that my heart means no ill.\n\nBOYET:\nDo not curst wives hold that self-sovereignty\nOnly for praise sake, when they strive to be\nLords o'er their lords?\n\nPRINCESS:\nOnly for praise: and praise we may afford\nTo any lady that subdues a lord.\n\nBOYET:\nHere comes a member of the commonwealth.\n\nCOSTARD:\nGod dig-you-den all! Pray you, which is the head lady?\n\nPRINCESS:\nThou shalt know her, fellow, by the rest that have no heads.\n\nCOSTARD:\nWhich is the greatest lady, the highest?\n\nPRINCESS:\nThe thickest and the tallest.\n\nCOSTARD:\nThe thickest and the tallest! it is so; truth is truth.\nAn your waist, mistress, were as slender as my wit,\nOne o' these maids' girdles for your waist should be fit.\nAre not you the chief woman? you are the thickest here.\n\nPRINCESS:\nWhat's your will, sir? what's your will?\n\nCOSTARD:\nI have a letter from Monsieur Biron to one Lady Rosaline.\n\nPRINCESS:\nO, thy letter, thy letter! he's a good friend of mine:\nStand aside, good bearer. Boyet, you can carve;\nBreak up this capon.\n\nBOYET:\nI am bound to serve.\nThis letter is mistook, it importeth none here;\nIt is writ to Jaquenetta.\n\nPRINCESS:\nWe will read it, I swear.\nBreak the neck of the wax, and every one give ear.\n\nBOYET:\n'By heaven, that thou art fair, is most infallible;\ntrue, that thou art beauteous; truth itself, that\nthou art lovely. More fairer than fair, beautiful\nthan beauteous, truer than truth itself, have\ncommiseration on thy heroical vassal! The\nmagnanimous and most illustrate king Cophetua set\neye upon the pernicious and indubitate beggar\nZenelophon; and he it was that might rightly say,\nVeni, vidi, vici; which to annothanize in the\nvulgar,--O base and obscure vulgar!--videlicet, He\ncame, saw, and overcame: he came, one; saw two;\novercame, three. Who came? the king: why did he\ncome? to see: why did he see? to overcome: to\nwhom came he? to the beggar: what saw he? the\nbeggar: who overcame he? the beggar. The\nconclusion is victory: on whose side? the king's.\nThe captive is enriched: on whose side? the\nbeggar's. The catastrophe is a nuptial: on whose\nside? the king's: no, on both in one, or one in\nboth. I am the king; for so stands the comparison:\nthou the beggar; for so witnesseth thy lowliness.\nShall I command thy love? I may: shall I enforce\nthy love? I could: shall I entreat thy love? I\nwill. What shalt thou exchange for rags? robes;\nfor tittles? titles; for thyself? me. Thus,\nexpecting thy reply, I profane my lips on thy foot,\nmy eyes on thy picture. and my heart on thy every\npart. Thine, in the dearest design of industry,\nDON ADRIANO DE ARMADO.'\nThus dost thou hear the Nemean lion roar\n'Gainst thee, thou lamb, that standest as his prey.\nSubmissive fall his princely feet before,\nAnd he from forage will incline to play:\nBut if thou strive, poor soul, what art thou then?\nFood for his rage, repasture for his den.\n\nPRINCESS:\nWhat plume of feathers is he that indited this letter?\nWhat vane? what weathercock? did you ever hear better?\n\nBOYET:\nI am much deceived but I remember the style.\n\nPRINCESS:\nElse your memory is bad, going o'er it erewhile.\n\nBOYET:\nThis Armado is a Spaniard, that keeps here in court;\nA phantasime, a Monarcho, and one that makes sport\nTo the prince and his bookmates.\n\nPRINCESS:\nThou fellow, a word:\nWho gave thee this letter?\n\nCOSTARD:\nI told you; my lord.\n\nPRINCESS:\nTo whom shouldst thou give it?\n\nCOSTARD:\nFrom my lord to my lady.\n\nPRINCESS:\nFrom which lord to which lady?\n\nCOSTARD:\nFrom my lord Biron, a good master of mine,\nTo a lady of France that he call'd Rosaline.\n\nPRINCESS:\nThou hast mistaken his letter. Come, lords, away.\nHere, sweet, put up this: 'twill be thine another day.\n\nBOYET:\nWho is the suitor? who is the suitor?\n\nROSALINE:\nShall I teach you to know?\n\nBOYET:\nAy, my continent of beauty.\n\nROSALINE:\nWhy, she that bears the bow.\nFinely put off!\n\nBOYET:\nMy lady goes to kill horns; but, if thou marry,\nHang me by the neck, if horns that year miscarry.\nFinely put on!\n\nROSALINE:\nWell, then, I am the shooter.\n\nBOYET:\nAnd who is your deer?\n\nROSALINE:\nIf we choose by the horns, yourself come not near.\nFinely put on, indeed!\n\nMARIA:\nYou still wrangle with her, Boyet, and she strikes\nat the brow.\n\nBOYET:\nBut she herself is hit lower: have I hit her now?\n\nROSALINE:\nShall I come upon thee with an old saying, that was\na man when King Pepin of France was a little boy, as\ntouching the hit it?\n\nBOYET:\nSo I may answer thee with one as old, that was a\nwoman when Queen Guinover of Britain was a little\nwench, as touching the hit it.\n\nROSALINE:\nThou canst not hit it, hit it, hit it,\nThou canst not hit it, my good man.\n\nBOYET:\nAn I cannot, cannot, cannot,\nAn I cannot, another can.\n\nCOSTARD:\nBy my troth, most pleasant: how both did fit it!\n\nMARIA:\nA mark marvellous well shot, for they both did hit it.\n\nBOYET:\nA mark! O, mark but that mark! A mark, says my lady!\nLet the mark have a prick in't, to mete at, if it may be.\n\nMARIA:\nWide o' the bow hand! i' faith, your hand is out.\n\nCOSTARD:\nIndeed, a' must shoot nearer, or he'll ne'er hit the clout.\n\nBOYET:\nAn if my hand be out, then belike your hand is in.\n\nCOSTARD:\nThen will she get the upshoot by cleaving the pin.\n\nMARIA:\nCome, come, you talk greasily; your lips grow foul.\n\nCOSTARD:\nShe's too hard for you at pricks, sir: challenge her to bowl.\n\nBOYET:\nI fear too much rubbing. Good night, my good owl.\n\nCOSTARD:\nBy my soul, a swain! a most simple clown!\nLord, Lord, how the ladies and I have put him down!\nO' my troth, most sweet jests! most incony\nvulgar wit!\nWhen it comes so smoothly off, so obscenely, as it\nwere, so fit.\nArmado o' th' one side,--O, a most dainty man!\nTo see him walk before a lady and to bear her fan!\nTo see him kiss his hand! and how most sweetly a'\nwill swear!\nAnd his page o' t' other side, that handful of wit!\nAh, heavens, it is a most pathetical nit!\nSola, sola!\n\nSIR NATHANIEL:\nVery reverend sport, truly; and done in the testimony\nof a good conscience.\n\nHOLOFERNES:\nThe deer was, as you know, sanguis, in blood; ripe\nas the pomewater, who now hangeth like a jewel in\nthe ear of caelo, the sky, the welkin, the heaven;\nand anon falleth like a crab on the face of terra,\nthe soil, the land, the earth.\n\nSIR NATHANIEL:\nTruly, Master Holofernes, the epithets are sweetly\nvaried, like a scholar at the least: but, sir, I\nassure ye, it was a buck of the first head.\n\nHOLOFERNES:\nSir Nathaniel, haud credo.\n\nDULL:\n'Twas not a haud credo; 'twas a pricket.\n\nHOLOFERNES:\nMost barbarous intimation! yet a kind of\ninsinuation, as it were, in via, in way, of\nexplication; facere, as it were, replication, or\nrather, ostentare, to show, as it were, his\ninclination, after his undressed, unpolished,\nuneducated, unpruned, untrained, or rather,\nunlettered, or ratherest, unconfirmed fashion, to\ninsert again my haud credo for a deer.\n\nDULL:\nI said the deer was not a haud credo; twas a pricket.\n\nHOLOFERNES:\nTwice-sod simplicity, his coctus!\nO thou monster Ignorance, how deformed dost thou look!\n\nSIR NATHANIEL:\nSir, he hath never fed of the dainties that are bred\nin a book; he hath not eat paper, as it were; he\nhath not drunk ink: his intellect is not\nreplenished; he is only an animal, only sensible in\nthe duller parts:\nAnd such barren plants are set before us, that we\nthankful should be,\nWhich we of taste and feeling are, for those parts that\ndo fructify in us more than he.\nFor as it would ill become me to be vain, indiscreet, or a fool,\nSo were there a patch set on learning, to see him in a school:\nBut omne bene, say I; being of an old father's mind,\nMany can brook the weather that love not the wind.\n\nDULL:\nYou two are book-men: can you tell me by your wit\nWhat was a month old at Cain's birth, that's not five\nweeks old as yet?\n\nHOLOFERNES:\nDictynna, goodman Dull; Dictynna, goodman Dull.\n\nDULL:\nWhat is Dictynna?\n\nSIR NATHANIEL:\nA title to Phoebe, to Luna, to the moon.\n\nHOLOFERNES:\nThe moon was a month old when Adam was no more,\nAnd raught not to five weeks when he came to\nfive-score.\nThe allusion holds in the exchange.\n\nDULL:\n'Tis true indeed; the collusion holds in the exchange.\n\nHOLOFERNES:\nGod comfort thy capacity! I say, the allusion holds\nin the exchange.\n\nDULL:\nAnd I say, the pollusion holds in the exchange; for\nthe moon is never but a month old: and I say beside\nthat, 'twas a pricket that the princess killed.\n\nHOLOFERNES:\nSir Nathaniel, will you hear an extemporal epitaph\non the death of the deer? And, to humour the\nignorant, call I the deer the princess killed a pricket.\n\nSIR NATHANIEL:\nPerge, good Master Holofernes, perge; so it shall\nplease you to abrogate scurrility.\n\nHOLOFERNES:\nI will something affect the letter, for it argues facility.\nThe preyful princess pierced and prick'd a pretty\npleasing pricket;\nSome say a sore; but not a sore, till now made\nsore with shooting.\nThe dogs did yell: put L to sore, then sorel jumps\nfrom thicket;\nOr pricket sore, or else sorel; the people fall a-hooting.\nIf sore be sore, then L to sore makes fifty sores\none sorel.\nOf one sore I an hundred make by adding but one more L.\n\nSIR NATHANIEL:\nA rare talent!\n\nDULL:\n\nHOLOFERNES:\nThis is a gift that I have, simple, simple; a\nfoolish extravagant spirit, full of forms, figures,\nshapes, objects, ideas, apprehensions, motions,\nrevolutions: these are begot in the ventricle of\nmemory, nourished in the womb of pia mater, and\ndelivered upon the mellowing of occasion. But the\ngift is good in those in whom it is acute, and I am\nthankful for it.\n\nSIR NATHANIEL:\nSir, I praise the Lord for you; and so may my\nparishioners; for their sons are well tutored by\nyou, and their daughters profit very greatly under\nyou: you are a good member of the commonwealth.\n\nHOLOFERNES:\nMehercle, if their sons be ingenuous, they shall\nwant no instruction; if their daughters be capable,\nI will put it to them: but vir sapit qui pauca\nloquitur; a soul feminine saluteth us.\n\nJAQUENETTA:\nGod give you good morrow, master Parson.\n\nHOLOFERNES:\nMaster Parson, quasi pers-on. An if one should be\npierced, which is the one?\n\nCOSTARD:\nMarry, master schoolmaster, he that is likest to a hogshead.\n\nHOLOFERNES:\nPiercing a hogshead! a good lustre of conceit in a\ntuft of earth; fire enough for a flint, pearl enough\nfor a swine: 'tis pretty; it is well.\n\nJAQUENETTA:\nGood master Parson, be so good as read me this\nletter: it was given me by Costard, and sent me\nfrom Don Armado: I beseech you, read it.\n\nHOLOFERNES:\nFauste, precor gelida quando pecus omne sub umbra\nRuminat,--and so forth. Ah, good old Mantuan! I\nmay speak of thee as the traveller doth of Venice;\nVenetia, Venetia,\nChi non ti vede non ti pretia.\nOld Mantuan, old Mantuan! who understandeth thee\nnot, loves thee not. Ut, re, sol, la, mi, fa.\nUnder pardon, sir, what are the contents? or rather,\nas Horace says in his--What, my soul, verses?\n\nSIR NATHANIEL:\nAy, sir, and very learned.\n\nHOLOFERNES:\nLet me hear a staff, a stanze, a verse; lege, domine.\n\nSIR NATHANIEL:\n\nHOLOFERNES:\nYou find not the apostraphas, and so miss the\naccent: let me supervise the canzonet. Here are\nonly numbers ratified; but, for the elegancy,\nfacility, and golden cadence of poesy, caret.\nOvidius Naso was the man: and why, indeed, Naso,\nbut for smelling out the odouriferous flowers of\nfancy, the jerks of invention? Imitari is nothing:\nso doth the hound his master, the ape his keeper,\nthe tired horse his rider. But, damosella virgin,\nwas this directed to you?\n\nJAQUENETTA:\nAy, sir, from one Monsieur Biron, one of the strange\nqueen's lords.\n\nHOLOFERNES:\nI will overglance the superscript: 'To the\nsnow-white hand of the most beauteous Lady\nRosaline.' I will look again on the intellect of\nthe letter, for the nomination of the party writing\nto the person written unto: 'Your ladyship's in all\ndesired employment, BIRON.' Sir Nathaniel, this\nBiron is one of the votaries with the king; and here\nhe hath framed a letter to a sequent of the stranger\nqueen's, which accidentally, or by the way of\nprogression, hath miscarried. Trip and go, my\nsweet; deliver this paper into the royal hand of the\nking: it may concern much. Stay not thy\ncompliment; I forgive thy duty; adieu.\n\nJAQUENETTA:\nGood Costard, go with me. Sir, God save your life!\n\nCOSTARD:\nHave with thee, my girl.\n\nSIR NATHANIEL:\nSir, you have done this in the fear of God, very\nreligiously; and, as a certain father saith,--\n\nHOLOFERNES:\nSir tell me not of the father; I do fear colourable\ncolours. But to return to the verses: did they\nplease you, Sir Nathaniel?\n\nSIR NATHANIEL:\nMarvellous well for the pen.\n\nHOLOFERNES:\nI do dine to-day at the father's of a certain pupil\nof mine; where, if, before repast, it shall please\nyou to gratify the table with a grace, I will, on my\nprivilege I have with the parents of the foresaid\nchild or pupil, undertake your ben venuto; where I\nwill prove those verses to be very unlearned,\nneither savouring of poetry, wit, nor invention: I\nbeseech your society.\n\nSIR NATHANIEL:\nAnd thank you too; for society, saith the text, is\nthe happiness of life.\n\nHOLOFERNES:\nAnd, certes, the text most infallibly concludes it.\nSir, I do invite you too; you shall not\nsay me nay: pauca verba. Away! the gentles are at\ntheir game, and we will to our recreation.\n\nBIRON:\nThe king he is hunting the deer; I am coursing\nmyself: they have pitched a toil; I am toiling in\na pitch,--pitch that defiles: defile! a foul\nword. Well, set thee down, sorrow! for so they say\nthe fool said, and so say I, and I the fool: well\nproved, wit! By the Lord, this love is as mad as\nAjax: it kills sheep; it kills me, I a sheep:\nwell proved again o' my side! I will not love: if\nI do, hang me; i' faith, I will not. O, but her\neye,--by this light, but for her eye, I would not\nlove her; yes, for her two eyes. Well, I do nothing\nin the world but lie, and lie in my throat. By\nheaven, I do love: and it hath taught me to rhyme\nand to be melancholy; and here is part of my rhyme,\nand here my melancholy. Well, she hath one o' my\nsonnets already: the clown bore it, the fool sent\nit, and the lady hath it: sweet clown, sweeter\nfool, sweetest lady! By the world, I would not care\na pin, if the other three were in. Here comes one\nwith a paper: God give him grace to groan!\n\nFERDINAND:\nAy me!\n\nBIRON:\n\nFERDINAND:\n\nBIRON:\nNow, in thy likeness, one more fool appear!\n\nLONGAVILLE:\nAy me, I am forsworn!\n\nBIRON:\nWhy, he comes in like a perjure, wearing papers.\n\nFERDINAND:\nIn love, I hope: sweet fellowship in shame!\n\nBIRON:\nOne drunkard loves another of the name.\n\nLONGAVILLE:\nAm I the first that have been perjured so?\n\nBIRON:\nI could put thee in comfort. Not by two that I know:\nThou makest the triumviry, the corner-cap of society,\nThe shape of Love's Tyburn that hangs up simplicity.\n\nLONGAVILLE:\nI fear these stubborn lines lack power to move:\nO sweet Maria, empress of my love!\nThese numbers will I tear, and write in prose.\n\nBIRON:\nO, rhymes are guards on wanton Cupid's hose:\nDisfigure not his slop.\n\nLONGAVILLE:\nThis same shall go.\nDid not the heavenly rhetoric of thine eye,\n'Gainst whom the world cannot hold argument,\nPersuade my heart to this false perjury?\nVows for thee broke deserve not punishment.\nA woman I forswore; but I will prove,\nThou being a goddess, I forswore not thee:\nMy vow was earthly, thou a heavenly love;\nThy grace being gain'd cures all disgrace in me.\nVows are but breath, and breath a vapour is:\nThen thou, fair sun, which on my earth dost shine,\nExhalest this vapour-vow; in thee it is:\nIf broken then, it is no fault of mine:\nIf by me broke, what fool is not so wise\nTo lose an oath to win a paradise?\n\nBIRON:\nThis is the liver-vein, which makes flesh a deity,\nA green goose a goddess: pure, pure idolatry.\nGod amend us, God amend! we are much out o' the way.\n\nLONGAVILLE:\nBy whom shall I send this?--Company! stay.\n\nBIRON:\nAll hid, all hid; an old infant play.\nLike a demigod here sit I in the sky.\nAnd wretched fools' secrets heedfully o'ereye.\nMore sacks to the mill! O heavens, I have my wish!\nDumain transform'd! four woodcocks in a dish!\n\nDUMAIN:\nO most divine Kate!\n\nBIRON:\nO most profane coxcomb!\n\nDUMAIN:\nBy heaven, the wonder in a mortal eye!\n\nBIRON:\nBy earth, she is not, corporal, there you lie.\n\nDUMAIN:\nHer amber hair for foul hath amber quoted.\n\nBIRON:\nAn amber-colour'd raven was well noted.\n\nDUMAIN:\nAs upright as the cedar.\n\nBIRON:\nStoop, I say;\nHer shoulder is with child.\n\nDUMAIN:\nAs fair as day.\n\nBIRON:\nAy, as some days; but then no sun must shine.\n\nDUMAIN:\nO that I had my wish!\n\nLONGAVILLE:\nAnd I had mine!\n\nFERDINAND:\nAnd I mine too, good Lord!\n\nBIRON:\nAmen, so I had mine: is not that a good word?\n\nDUMAIN:\nI would forget her; but a fever she\nReigns in my blood and will remember'd be.\n\nBIRON:\nA fever in your blood! why, then incision\nWould let her out in saucers: sweet misprision!\n\nDUMAIN:\nOnce more I'll read the ode that I have writ.\n\nBIRON:\nOnce more I'll mark how love can vary wit.\n\nDUMAIN:\n\nLONGAVILLE:\n\nFERDINAND:\n\nBIRON:\nNow step I forth to whip hypocrisy.\nAh, good my liege, I pray thee, pardon me!\nGood heart, what grace hast thou, thus to reprove\nThese worms for loving, that art most in love?\nYour eyes do make no coaches; in your tears\nThere is no certain princess that appears;\nYou'll not be perjured, 'tis a hateful thing;\nTush, none but minstrels like of sonneting!\nBut are you not ashamed? nay, are you not,\nAll three of you, to be thus much o'ershot?\nYou found his mote; the king your mote did see;\nBut I a beam do find in each of three.\nO, what a scene of foolery have I seen,\nOf sighs, of groans, of sorrow and of teen!\nO me, with what strict patience have I sat,\nTo see a king transformed to a gnat!\nTo see great Hercules whipping a gig,\nAnd profound Solomon to tune a jig,\nAnd Nestor play at push-pin with the boys,\nAnd critic Timon laugh at idle toys!\nWhere lies thy grief, O, tell me, good Dumain?\nAnd gentle Longaville, where lies thy pain?\nAnd where my liege's? all about the breast:\nA caudle, ho!\n\nFERDINAND:\nToo bitter is thy jest.\nAre we betray'd thus to thy over-view?\n\nBIRON:\nNot you to me, but I betray'd by you:\nI, that am honest; I, that hold it sin\nTo break the vow I am engaged in;\nI am betray'd, by keeping company\nWith men like men of inconstancy.\nWhen shall you see me write a thing in rhyme?\nOr groan for love? or spend a minute's time\nIn pruning me? When shall you hear that I\nWill praise a hand, a foot, a face, an eye,\nA gait, a state, a brow, a breast, a waist,\nA leg, a limb?\n\nFERDINAND:\nSoft! whither away so fast?\nA true man or a thief that gallops so?\n\nBIRON:\nI post from love: good lover, let me go.\n\nJAQUENETTA:\nGod bless the king!\n\nFERDINAND:\nWhat present hast thou there?\n\nCOSTARD:\nSome certain treason.\n\nFERDINAND:\nWhat makes treason here?\n\nCOSTARD:\nNay, it makes nothing, sir.\n\nFERDINAND:\nIf it mar nothing neither,\nThe treason and you go in peace away together.\n\nJAQUENETTA:\nI beseech your grace, let this letter be read:\nOur parson misdoubts it; 'twas treason, he said.\n\nFERDINAND:\nBiron, read it over.\nWhere hadst thou it?\n\nJAQUENETTA:\nOf Costard.\n\nFERDINAND:\nWhere hadst thou it?\n\nCOSTARD:\nOf Dun Adramadio, Dun Adramadio.\n\nFERDINAND:\nHow now! what is in you? why dost thou tear it?\n\nBIRON:\nA toy, my liege, a toy: your grace needs not fear it.\n\nLONGAVILLE:\nIt did move him to passion, and therefore let's hear it.\n\nDUMAIN:\nIt is Biron's writing, and here is his name.\n\nBIRON:\n\nFERDINAND:\nWhat?\n\nBIRON:\nThat you three fools lack'd me fool to make up the mess:\nHe, he, and you, and you, my liege, and I,\nAre pick-purses in love, and we deserve to die.\nO, dismiss this audience, and I shall tell you more.\n\nDUMAIN:\nNow the number is even.\n\nBIRON:\nTrue, true; we are four.\nWill these turtles be gone?\n\nFERDINAND:\nHence, sirs; away!\n\nCOSTARD:\nWalk aside the true folk, and let the traitors stay.\n\nBIRON:\nSweet lords, sweet lovers, O, let us embrace!\nAs true we are as flesh and blood can be:\nThe sea will ebb and flow, heaven show his face;\nYoung blood doth not obey an old decree:\nWe cannot cross the cause why we were born;\nTherefore of all hands must we be forsworn.\n\nFERDINAND:\nWhat, did these rent lines show some love of thine?\n\nBIRON:\nDid they, quoth you? Who sees the heavenly Rosaline,\nThat, like a rude and savage man of Inde,\nAt the first opening of the gorgeous east,\nBows not his vassal head and strucken blind\nKisses the base ground with obedient breast?\nWhat peremptory eagle-sighted eye\nDares look upon the heaven of her brow,\nThat is not blinded by her majesty?\n\nFERDINAND:\nWhat zeal, what fury hath inspired thee now?\nMy love, her mistress, is a gracious moon;\nShe an attending star, scarce seen a light.\n\nBIRON:\nMy eyes are then no eyes, nor I Biron:\nO, but for my love, day would turn to night!\nOf all complexions the cull'd sovereignty\nDo meet, as at a fair, in her fair cheek,\nWhere several worthies make one dignity,\nWhere nothing wants that want itself doth seek.\nLend me the flourish of all gentle tongues,--\nFie, painted rhetoric! O, she needs it not:\nTo things of sale a seller's praise belongs,\nShe passes praise; then praise too short doth blot.\nA wither'd hermit, five-score winters worn,\nMight shake off fifty, looking in her eye:\nBeauty doth varnish age, as if new-born,\nAnd gives the crutch the cradle's infancy:\nO, 'tis the sun that maketh all things shine.\n\nFERDINAND:\nBy heaven, thy love is black as ebony.\n\nBIRON:\nIs ebony like her? O wood divine!\nA wife of such wood were felicity.\nO, who can give an oath? where is a book?\nThat I may swear beauty doth beauty lack,\nIf that she learn not of her eye to look:\nNo face is fair that is not full so black.\n\nFERDINAND:\nO paradox! Black is the badge of hell,\nThe hue of dungeons and the suit of night;\nAnd beauty's crest becomes the heavens well.\n\nBIRON:\nDevils soonest tempt, resembling spirits of light.\nO, if in black my lady's brows be deck'd,\nIt mourns that painting and usurping hair\nShould ravish doters with a false aspect;\nAnd therefore is she born to make black fair.\nHer favour turns the fashion of the days,\nFor native blood is counted painting now;\nAnd therefore red, that would avoid dispraise,\nPaints itself black, to imitate her brow.\n\nDUMAIN:\nTo look like her are chimney-sweepers black.\n\nLONGAVILLE:\nAnd since her time are colliers counted bright.\n\nFERDINAND:\nAnd Ethiopes of their sweet complexion crack.\n\nDUMAIN:\nDark needs no candles now, for dark is light.\n\nBIRON:\nYour mistresses dare never come in rain,\nFor fear their colours should be wash'd away.\n\nFERDINAND:\n'Twere good, yours did; for, sir, to tell you plain,\nI'll find a fairer face not wash'd to-day.\n\nBIRON:\nI'll prove her fair, or talk till doomsday here.\n\nFERDINAND:\nNo devil will fright thee then so much as she.\n\nDUMAIN:\nI never knew man hold vile stuff so dear.\n\nLONGAVILLE:\nLook, here's thy love: my foot and her face see.\n\nBIRON:\nO, if the streets were paved with thine eyes,\nHer feet were much too dainty for such tread!\n\nDUMAIN:\nO, vile! then, as she goes, what upward lies\nThe street should see as she walk'd overhead.\n\nFERDINAND:\nBut what of this? are we not all in love?\n\nBIRON:\nNothing so sure; and thereby all forsworn.\n\nFERDINAND:\nThen leave this chat; and, good Biron, now prove\nOur loving lawful, and our faith not torn.\n\nDUMAIN:\nAy, marry, there; some flattery for this evil.\n\nLONGAVILLE:\nO, some authority how to proceed;\nSome tricks, some quillets, how to cheat the devil.\n\nDUMAIN:\nSome salve for perjury.\n\nBIRON:\n'Tis more than need.\nHave at you, then, affection's men at arms.\nConsider what you first did swear unto,\nTo fast, to study, and to see no woman;\nFlat treason 'gainst the kingly state of youth.\nSay, can you fast? your stomachs are too young;\nAnd abstinence engenders maladies.\nAnd where that you have vow'd to study, lords,\nIn that each of you have forsworn his book,\nCan you still dream and pore and thereon look?\nFor when would you, my lord, or you, or you,\nHave found the ground of study's excellence\nWithout the beauty of a woman's face?\nWhy, universal plodding poisons up\nThe nimble spirits in the arteries,\nAs motion and long-during action tires\nThe sinewy vigour of the traveller.\nNow, for not looking on a woman's face,\nYou have in that forsworn the use of eyes\nAnd study too, the causer of your vow;\nFor where is any author in the world\nTeaches such beauty as a woman's eye?\nLearning is but an adjunct to ourself\nAnd where we are our learning likewise is:\nThen when ourselves we see in ladies' eyes,\nDo we not likewise see our learning there?\nO, we have made a vow to study, lords,\nAnd in that vow we have forsworn our books.\nFor when would you, my liege, or you, or you,\nIn leaden contemplation have found out\nSuch fiery numbers as the prompting eyes\nOf beauty's tutors have enrich'd you with?\nOther slow arts entirely keep the brain;\nAnd therefore, finding barren practisers,\nScarce show a harvest of their heavy toil:\nBut love, first learned in a lady's eyes,\nLives not alone immured in the brain;\nBut, with the motion of all elements,\nCourses as swift as thought in every power,\nAnd gives to every power a double power,\nAbove their functions and their offices.\nIt adds a precious seeing to the eye;\nA lover's eyes will gaze an eagle blind;\nA lover's ear will hear the lowest sound,\nWhen the suspicious head of theft is stopp'd:\nLove's feeling is more soft and sensible\nThan are the tender horns of cockl'd snails;\nLove's tongue proves dainty Bacchus gross in taste:\nFor valour, is not Love a Hercules,\nStill climbing trees in the Hesperides?\nSubtle as Sphinx; as sweet and musical\nAs bright Apollo's lute, strung with his hair:\nAnd when Love speaks, the voice of all the gods\nMakes heaven drowsy with the harmony.\nNever durst poet touch a pen to write\nUntil his ink were temper'd with Love's sighs;\nO, then his lines would ravish savage ears\nAnd plant in tyrants mild humility.\nFrom women's eyes this doctrine I derive:\nThey sparkle still the right Promethean fire;\nThey are the books, the arts, the academes,\nThat show, contain and nourish all the world:\nElse none at all in ought proves excellent.\nThen fools you were these women to forswear,\nOr keeping what is sworn, you will prove fools.\nFor wisdom's sake, a word that all men love,\nOr for love's sake, a word that loves all men,\nOr for men's sake, the authors of these women,\nOr women's sake, by whom we men are men,\nLet us once lose our oaths to find ourselves,\nOr else we lose ourselves to keep our oaths.\nIt is religion to be thus forsworn,\nFor charity itself fulfills the law,\nAnd who can sever love from charity?\n\nFERDINAND:\nSaint Cupid, then! and, soldiers, to the field!\n\nBIRON:\nAdvance your standards, and upon them, lords;\nPell-mell, down with them! but be first advised,\nIn conflict that you get the sun of them.\n\nLONGAVILLE:\nNow to plain-dealing; lay these glozes by:\nShall we resolve to woo these girls of France?\n\nFERDINAND:\nAnd win them too: therefore let us devise\nSome entertainment for them in their tents.\n\nBIRON:\nFirst, from the park let us conduct them thither;\nThen homeward every man attach the hand\nOf his fair mistress: in the afternoon\nWe will with some strange pastime solace them,\nSuch as the shortness of the time can shape;\nFor revels, dances, masks and merry hours\nForerun fair Love, strewing her way with flowers.\n\nFERDINAND:\nAway, away! no time shall be omitted\nThat will betime, and may by us be fitted.\n\nBIRON:\nAllons! allons! Sow'd cockle reap'd no corn;\nAnd justice always whirls in equal measure:\nLight wenches may prove plagues to men forsworn;\nIf so, our copper buys no better treasure.\n\nHOLOFERNES:\nSatis quod sufficit.\n\nSIR NATHANIEL:\nI praise God for you, sir: your reasons at dinner\nhave been sharp and sententious; pleasant without\nscurrility, witty without affection, audacious without\nimpudency, learned without opinion, and strange with-\nout heresy. I did converse this quondam day with\na companion of the king's, who is intituled, nomi-\nnated, or called, Don Adriano de Armado.\n\nHOLOFERNES:\nNovi hominem tanquam te: his humour is lofty, his\ndiscourse peremptory, his tongue filed, his eye\nambitious, his gait majestical, and his general\nbehavior vain, ridiculous, and thrasonical. He is\ntoo picked, too spruce, too affected, too odd, as it\nwere, too peregrinate, as I may call it.\n\nSIR NATHANIEL:\nA most singular and choice epithet.\n\nHOLOFERNES:\nHe draweth out the thread of his verbosity finer\nthan the staple of his argument. I abhor such\nfanatical phantasimes, such insociable and\npoint-devise companions; such rackers of\northography, as to speak dout, fine, when he should\nsay doubt; det, when he should pronounce debt,--d,\ne, b, t, not d, e, t: he clepeth a calf, cauf;\nhalf, hauf; neighbour vocatur nebor; neigh\nabbreviated ne. This is abhominable,--which he\nwould call abbominable: it insinuateth me of\ninsanie: anne intelligis, domine? to make frantic, lunatic.\n\nSIR NATHANIEL:\nLaus Deo, bene intelligo.\n\nHOLOFERNES:\nBon, bon, fort bon, Priscian! a little scratch'd,\n'twill serve.\n\nSIR NATHANIEL:\nVidesne quis venit?\n\nHOLOFERNES:\nVideo, et gaudeo.\n\nDON ADRIANO DE ARMADO:\nChirrah!\n\nHOLOFERNES:\nQuare chirrah, not sirrah?\n\nDON ADRIANO DE ARMADO:\nMen of peace, well encountered.\n\nHOLOFERNES:\nMost military sir, salutation.\n\nMOTH:\n\nCOSTARD:\nO, they have lived long on the alms-basket of words.\nI marvel thy master hath not eaten thee for a word;\nfor thou art not so long by the head as\nhonorificabilitudinitatibus: thou art easier\nswallowed than a flap-dragon.\n\nMOTH:\nPeace! the peal begins.\n\nDON ADRIANO DE ARMADO:\n\nMOTH:\nYes, yes; he teaches boys the hornbook. What is a,\nb, spelt backward, with the horn on his head?\n\nHOLOFERNES:\nBa, pueritia, with a horn added.\n\nMOTH:\nBa, most silly sheep with a horn. You hear his learning.\n\nHOLOFERNES:\nQuis, quis, thou consonant?\n\nMOTH:\nThe third of the five vowels, if you repeat them; or\nthe fifth, if I.\n\nHOLOFERNES:\nI will repeat them,--a, e, i,--\n\nMOTH:\nThe sheep: the other two concludes it,--o, u.\n\nDON ADRIANO DE ARMADO:\nNow, by the salt wave of the Mediterraneum, a sweet\ntouch, a quick venue of wit! snip, snap, quick and\nhome! it rejoiceth my intellect: true wit!\n\nMOTH:\nOffered by a child to an old man; which is wit-old.\n\nHOLOFERNES:\nWhat is the figure? what is the figure?\n\nMOTH:\nHorns.\n\nHOLOFERNES:\nThou disputest like an infant: go, whip thy gig.\n\nMOTH:\nLend me your horn to make one, and I will whip about\nyour infamy circum circa,--a gig of a cuckold's horn.\n\nCOSTARD:\nAn I had but one penny in the world, thou shouldst\nhave it to buy gingerbread: hold, there is the very\nremuneration I had of thy master, thou halfpenny\npurse of wit, thou pigeon-egg of discretion. O, an\nthe heavens were so pleased that thou wert but my\nbastard, what a joyful father wouldst thou make me!\nGo to; thou hast it ad dunghill, at the fingers'\nends, as they say.\n\nHOLOFERNES:\nO, I smell false Latin; dunghill for unguem.\n\nDON ADRIANO DE ARMADO:\nArts-man, preambulate, we will be singled from the\nbarbarous. Do you not educate youth at the\ncharge-house on the top of the mountain?\n\nHOLOFERNES:\nOr mons, the hill.\n\nDON ADRIANO DE ARMADO:\nAt your sweet pleasure, for the mountain.\n\nHOLOFERNES:\nI do, sans question.\n\nDON ADRIANO DE ARMADO:\nSir, it is the king's most sweet pleasure and\naffection to congratulate the princess at her\npavilion in the posteriors of this day, which the\nrude multitude call the afternoon.\n\nHOLOFERNES:\nThe posterior of the day, most generous sir, is\nliable, congruent and measurable for the afternoon:\nthe word is well culled, chose, sweet and apt, I do\nassure you, sir, I do assure.\n\nDON ADRIANO DE ARMADO:\nSir, the king is a noble gentleman, and my familiar,\nI do assure ye, very good friend: for what is\ninward between us, let it pass. I do beseech thee,\nremember thy courtesy; I beseech thee, apparel thy\nhead: and among other important and most serious\ndesigns, and of great import indeed, too, but let\nthat pass: for I must tell thee, it will please his\ngrace, by the world, sometime to lean upon my poor\nshoulder, and with his royal finger, thus, dally\nwith my excrement, with my mustachio; but, sweet\nheart, let that pass. By the world, I recount no\nfable: some certain special honours it pleaseth his\ngreatness to impart to Armado, a soldier, a man of\ntravel, that hath seen the world; but let that pass.\nThe very all of all is,--but, sweet heart, I do\nimplore secrecy,--that the king would have me\npresent the princess, sweet chuck, with some\ndelightful ostentation, or show, or pageant, or\nantique, or firework. Now, understanding that the\ncurate and your sweet self are good at such\neruptions and sudden breaking out of mirth, as it\nwere, I have acquainted you withal, to the end to\ncrave your assistance.\n\nHOLOFERNES:\nSir, you shall present before her the Nine Worthies.\nSir, as concerning some entertainment of time, some\nshow in the posterior of this day, to be rendered by\nour assistants, at the king's command, and this most\ngallant, illustrate, and learned gentleman, before\nthe princess; I say none so fit as to present the\nNine Worthies.\n\nSIR NATHANIEL:\nWhere will you find men worthy enough to present them?\n\nHOLOFERNES:\nJoshua, yourself; myself and this gallant gentleman,\nJudas Maccabaeus; this swain, because of his great\nlimb or joint, shall pass Pompey the Great; the\npage, Hercules,--\n\nDON ADRIANO DE ARMADO:\nPardon, sir; error: he is not quantity enough for\nthat Worthy's thumb: he is not so big as the end of his club.\n\nHOLOFERNES:\nShall I have audience? he shall present Hercules in\nminority: his enter and exit shall be strangling a\nsnake; and I will have an apology for that purpose.\n\nMOTH:\nAn excellent device! so, if any of the audience\nhiss, you may cry 'Well done, Hercules! now thou\ncrushest the snake!' that is the way to make an\noffence gracious, though few have the grace to do it.\n\nDON ADRIANO DE ARMADO:\nFor the rest of the Worthies?--\n\nHOLOFERNES:\nI will play three myself.\n\nMOTH:\nThrice-worthy gentleman!\n\nDON ADRIANO DE ARMADO:\nShall I tell you a thing?\n\nHOLOFERNES:\nWe attend.\n\nDON ADRIANO DE ARMADO:\nWe will have, if this fadge not, an antique. I\nbeseech you, follow.\n\nHOLOFERNES:\nVia, goodman Dull! thou hast spoken no word all this while.\n\nDULL:\nNor understood none neither, sir.\n\nHOLOFERNES:\nAllons! we will employ thee.\n\nDULL:\nI'll make one in a dance, or so; or I will play\nOn the tabour to the Worthies, and let them dance the hay.\n\nHOLOFERNES:\nMost dull, honest Dull! To our sport, away!\n\nPRINCESS:\nSweet hearts, we shall be rich ere we depart,\nIf fairings come thus plentifully in:\nA lady wall'd about with diamonds!\nLook you what I have from the loving king.\n\nROSALINE:\nMadame, came nothing else along with that?\n\nPRINCESS:\nNothing but this! yes, as much love in rhyme\nAs would be cramm'd up in a sheet of paper,\nWrit o' both sides the leaf, margent and all,\nThat he was fain to seal on Cupid's name.\n\nROSALINE:\nThat was the way to make his godhead wax,\nFor he hath been five thousand years a boy.\n\nKATHARINE:\nAy, and a shrewd unhappy gallows too.\n\nROSALINE:\nYou'll ne'er be friends with him; a' kill'd your sister.\n\nKATHARINE:\nHe made her melancholy, sad, and heavy;\nAnd so she died: had she been light, like you,\nOf such a merry, nimble, stirring spirit,\nShe might ha' been a grandam ere she died:\nAnd so may you; for a light heart lives long.\n\nROSALINE:\nWhat's your dark meaning, mouse, of this light word?\n\nKATHARINE:\nA light condition in a beauty dark.\n\nROSALINE:\nWe need more light to find your meaning out.\n\nKATHARINE:\nYou'll mar the light by taking it in snuff;\nTherefore I'll darkly end the argument.\n\nROSALINE:\nLook what you do, you do it still i' the dark.\n\nKATHARINE:\nSo do not you, for you are a light wench.\n\nROSALINE:\nIndeed I weigh not you, and therefore light.\n\nKATHARINE:\nYou weigh me not? O, that's you care not for me.\n\nROSALINE:\nGreat reason; for 'past cure is still past care.'\n\nPRINCESS:\nWell bandied both; a set of wit well play'd.\nBut Rosaline, you have a favour too:\nWho sent it? and what is it?\n\nROSALINE:\nI would you knew:\nAn if my face were but as fair as yours,\nMy favour were as great; be witness this.\nNay, I have verses too, I thank Biron:\nThe numbers true; and, were the numbering too,\nI were the fairest goddess on the ground:\nI am compared to twenty thousand fairs.\nO, he hath drawn my picture in his letter!\n\nPRINCESS:\nAny thing like?\n\nROSALINE:\nMuch in the letters; nothing in the praise.\n\nPRINCESS:\nBeauteous as ink; a good conclusion.\n\nKATHARINE:\nFair as a text B in a copy-book.\n\nROSALINE:\n'Ware pencils, ho! let me not die your debtor,\nMy red dominical, my golden letter:\nO, that your face were not so full of O's!\n\nKATHARINE:\nA pox of that jest! and I beshrew all shrows.\n\nPRINCESS:\nBut, Katharine, what was sent to you from fair Dumain?\n\nKATHARINE:\nMadam, this glove.\n\nPRINCESS:\nDid he not send you twain?\n\nKATHARINE:\nYes, madam, and moreover\nSome thousand verses of a faithful lover,\nA huge translation of hypocrisy,\nVilely compiled, profound simplicity.\n\nMARIA:\nThis and these pearls to me sent Longaville:\nThe letter is too long by half a mile.\n\nPRINCESS:\nI think no less. Dost thou not wish in heart\nThe chain were longer and the letter short?\n\nMARIA:\nAy, or I would these hands might never part.\n\nPRINCESS:\nWe are wise girls to mock our lovers so.\n\nROSALINE:\nThey are worse fools to purchase mocking so.\nThat same Biron I'll torture ere I go:\nO that I knew he were but in by the week!\nHow I would make him fawn and beg and seek\nAnd wait the season and observe the times\nAnd spend his prodigal wits in bootless rhymes\nAnd shape his service wholly to my hests\nAnd make him proud to make me proud that jests!\nSo perttaunt-like would I o'ersway his state\nThat he should be my fool and I his fate.\n\nPRINCESS:\nNone are so surely caught, when they are catch'd,\nAs wit turn'd fool: folly, in wisdom hatch'd,\nHath wisdom's warrant and the help of school\nAnd wit's own grace to grace a learned fool.\n\nROSALINE:\nThe blood of youth burns not with such excess\nAs gravity's revolt to wantonness.\n\nMARIA:\nFolly in fools bears not so strong a note\nAs foolery in the wise, when wit doth dote;\nSince all the power thereof it doth apply\nTo prove, by wit, worth in simplicity.\n\nPRINCESS:\nHere comes Boyet, and mirth is in his face.\n\nBOYET:\nO, I am stabb'd with laughter! Where's her grace?\n\nPRINCESS:\nThy news Boyet?\n\nBOYET:\nPrepare, madam, prepare!\nArm, wenches, arm! encounters mounted are\nAgainst your peace: Love doth approach disguised,\nArmed in arguments; you'll be surprised:\nMuster your wits; stand in your own defence;\nOr hide your heads like cowards, and fly hence.\n\nPRINCESS:\nSaint Denis to Saint Cupid! What are they\nThat charge their breath against us? say, scout, say.\n\nBOYET:\nUnder the cool shade of a sycamore\nI thought to close mine eyes some half an hour;\nWhen, lo! to interrupt my purposed rest,\nToward that shade I might behold addrest\nThe king and his companions: warily\nI stole into a neighbour thicket by,\nAnd overheard what you shall overhear,\nThat, by and by, disguised they will be here.\nTheir herald is a pretty knavish page,\nThat well by heart hath conn'd his embassage:\nAction and accent did they teach him there;\n'Thus must thou speak,' and 'thus thy body bear:'\nAnd ever and anon they made a doubt\nPresence majestical would put him out,\n'For,' quoth the king, 'an angel shalt thou see;\nYet fear not thou, but speak audaciously.'\nThe boy replied, 'An angel is not evil;\nI should have fear'd her had she been a devil.'\nWith that, all laugh'd and clapp'd him on the shoulder,\nMaking the bold wag by their praises bolder:\nOne rubb'd his elbow thus, and fleer'd and swore\nA better speech was never spoke before;\nAnother, with his finger and his thumb,\nCried, 'Via! we will do't, come what will come;'\nThe third he caper'd, and cried, 'All goes well;'\nThe fourth turn'd on the toe, and down he fell.\nWith that, they all did tumble on the ground,\nWith such a zealous laughter, so profound,\nThat in this spleen ridiculous appears,\nTo cheque their folly, passion's solemn tears.\n\nPRINCESS:\nBut what, but what, come they to visit us?\n\nBOYET:\nThey do, they do: and are apparell'd thus.\nLike Muscovites or Russians, as I guess.\nTheir purpose is to parle, to court and dance;\nAnd every one his love-feat will advance\nUnto his several mistress, which they'll know\nBy favours several which they did bestow.\n\nPRINCESS:\nAnd will they so? the gallants shall be task'd;\nFor, ladies, we shall every one be mask'd;\nAnd not a man of them shall have the grace,\nDespite of suit, to see a lady's face.\nHold, Rosaline, this favour thou shalt wear,\nAnd then the king will court thee for his dear;\nHold, take thou this, my sweet, and give me thine,\nSo shall Biron take me for Rosaline.\nAnd change your favours too; so shall your loves\nWoo contrary, deceived by these removes.\n\nROSALINE:\nCome on, then; wear the favours most in sight.\n\nKATHARINE:\nBut in this changing what is your intent?\n\nPRINCESS:\nThe effect of my intent is to cross theirs:\nThey do it but in mocking merriment;\nAnd mock for mock is only my intent.\nTheir several counsels they unbosom shall\nTo loves mistook, and so be mock'd withal\nUpon the next occasion that we meet,\nWith visages displayed, to talk and greet.\n\nROSALINE:\nBut shall we dance, if they desire to't?\n\nPRINCESS:\nNo, to the death, we will not move a foot;\nNor to their penn'd speech render we no grace,\nBut while 'tis spoke each turn away her face.\n\nBOYET:\nWhy, that contempt will kill the speaker's heart,\nAnd quite divorce his memory from his part.\n\nPRINCESS:\nTherefore I do it; and I make no doubt\nThe rest will ne'er come in, if he be out\nThere's no such sport as sport by sport o'erthrown,\nTo make theirs ours and ours none but our own:\nSo shall we stay, mocking intended game,\nAnd they, well mock'd, depart away with shame.\n\nBOYET:\nThe trumpet sounds: be mask'd; the maskers come.\n\nMOTH:\nAll hail, the richest beauties on the earth!--\n\nBOYET:\nBeauties no richer than rich taffeta.\n\nMOTH:\nA holy parcel of the fairest dames.\nThat ever turn'd their--backs--to mortal views!\n\nBIRON:\n\nMOTH:\nThat ever turn'd their eyes to mortal views!--Out--\n\nBOYET:\nTrue; out indeed.\n\nMOTH:\nOut of your favours, heavenly spirits, vouchsafe\nNot to behold--\n\nBIRON:\n\nMOTH:\nOnce to behold with your sun-beamed eyes,\n--with your sun-beamed eyes--\n\nBOYET:\nThey will not answer to that epithet;\nYou were best call it 'daughter-beamed eyes.'\n\nMOTH:\nThey do not mark me, and that brings me out.\n\nBIRON:\nIs this your perfectness? be gone, you rogue!\n\nROSALINE:\nWhat would these strangers? know their minds, Boyet:\nIf they do speak our language, 'tis our will:\nThat some plain man recount their purposes\nKnow what they would.\n\nBOYET:\nWhat would you with the princess?\n\nBIRON:\nNothing but peace and gentle visitation.\n\nROSALINE:\nWhat would they, say they?\n\nBOYET:\nNothing but peace and gentle visitation.\n\nROSALINE:\nWhy, that they have; and bid them so be gone.\n\nBOYET:\nShe says, you have it, and you may be gone.\n\nFERDINAND:\nSay to her, we have measured many miles\nTo tread a measure with her on this grass.\n\nBOYET:\nThey say, that they have measured many a mile\nTo tread a measure with you on this grass.\n\nROSALINE:\nIt is not so. Ask them how many inches\nIs in one mile: if they have measured many,\nThe measure then of one is easily told.\n\nBOYET:\nIf to come hither you have measured miles,\nAnd many miles, the princess bids you tell\nHow many inches doth fill up one mile.\n\nBIRON:\nTell her, we measure them by weary steps.\n\nBOYET:\nShe hears herself.\n\nROSALINE:\nHow many weary steps,\nOf many weary miles you have o'ergone,\nAre number'd in the travel of one mile?\n\nBIRON:\nWe number nothing that we spend for you:\nOur duty is so rich, so infinite,\nThat we may do it still without accompt.\nVouchsafe to show the sunshine of your face,\nThat we, like savages, may worship it.\n\nROSALINE:\nMy face is but a moon, and clouded too.\n\nFERDINAND:\nBlessed are clouds, to do as such clouds do!\nVouchsafe, bright moon, and these thy stars, to shine,\nThose clouds removed, upon our watery eyne.\n\nROSALINE:\nO vain petitioner! beg a greater matter;\nThou now request'st but moonshine in the water.\n\nFERDINAND:\nThen, in our measure do but vouchsafe one change.\nThou bid'st me beg: this begging is not strange.\n\nROSALINE:\nPlay, music, then! Nay, you must do it soon.\nNot yet! no dance! Thus change I like the moon.\n\nFERDINAND:\nWill you not dance? How come you thus estranged?\n\nROSALINE:\nYou took the moon at full, but now she's changed.\n\nFERDINAND:\nYet still she is the moon, and I the man.\nThe music plays; vouchsafe some motion to it.\n\nROSALINE:\nOur ears vouchsafe it.\n\nFERDINAND:\nBut your legs should do it.\n\nROSALINE:\nSince you are strangers and come here by chance,\nWe'll not be nice: take hands. We will not dance.\n\nFERDINAND:\nWhy take we hands, then?\n\nROSALINE:\nOnly to part friends:\nCurtsy, sweet hearts; and so the measure ends.\n\nFERDINAND:\nMore measure of this measure; be not nice.\n\nROSALINE:\nWe can afford no more at such a price.\n\nFERDINAND:\nPrize you yourselves: what buys your company?\n\nROSALINE:\nYour absence only.\n\nFERDINAND:\nThat can never be.\n\nROSALINE:\nThen cannot we be bought: and so, adieu;\nTwice to your visor, and half once to you.\n\nFERDINAND:\nIf you deny to dance, let's hold more chat.\n\nROSALINE:\nIn private, then.\n\nFERDINAND:\nI am best pleased with that.\n\nBIRON:\nWhite-handed mistress, one sweet word with thee.\n\nPRINCESS:\nHoney, and milk, and sugar; there is three.\n\nBIRON:\nNay then, two treys, and if you grow so nice,\nMetheglin, wort, and malmsey: well run, dice!\nThere's half-a-dozen sweets.\n\nPRINCESS:\nSeventh sweet, adieu:\nSince you can cog, I'll play no more with you.\n\nBIRON:\nOne word in secret.\n\nPRINCESS:\nLet it not be sweet.\n\nBIRON:\nThou grievest my gall.\n\nPRINCESS:\nGall! bitter.\n\nBIRON:\nTherefore meet.\n\nDUMAIN:\nWill you vouchsafe with me to change a word?\n\nMARIA:\nName it.\n\nDUMAIN:\nFair lady,--\n\nMARIA:\nSay you so? Fair lord,--\nTake that for your fair lady.\n\nDUMAIN:\nPlease it you,\nAs much in private, and I'll bid adieu.\n\nKATHARINE:\nWhat, was your vizard made without a tongue?\n\nLONGAVILLE:\nI know the reason, lady, why you ask.\n\nKATHARINE:\nO for your reason! quickly, sir; I long.\n\nLONGAVILLE:\nYou have a double tongue within your mask,\nAnd would afford my speechless vizard half.\n\nKATHARINE:\nVeal, quoth the Dutchman. Is not 'veal' a calf?\n\nLONGAVILLE:\nA calf, fair lady!\n\nKATHARINE:\nNo, a fair lord calf.\n\nLONGAVILLE:\nLet's part the word.\n\nKATHARINE:\nNo, I'll not be your half\nTake all, and wean it; it may prove an ox.\n\nLONGAVILLE:\nLook, how you butt yourself in these sharp mocks!\nWill you give horns, chaste lady? do not so.\n\nKATHARINE:\nThen die a calf, before your horns do grow.\n\nLONGAVILLE:\nOne word in private with you, ere I die.\n\nKATHARINE:\nBleat softly then; the butcher hears you cry.\n\nBOYET:\nThe tongues of mocking wenches are as keen\nAs is the razor's edge invisible,\nCutting a smaller hair than may be seen,\nAbove the sense of sense; so sensible\nSeemeth their conference; their conceits have wings\nFleeter than arrows, bullets, wind, thought, swifter things.\n\nROSALINE:\nNot one word more, my maids; break off, break off.\n\nBIRON:\nBy heaven, all dry-beaten with pure scoff!\n\nFERDINAND:\nFarewell, mad wenches; you have simple wits.\n\nPRINCESS:\nTwenty adieus, my frozen Muscovits.\nAre these the breed of wits so wonder'd at?\n\nBOYET:\nTapers they are, with your sweet breaths puff'd out.\n\nROSALINE:\nWell-liking wits they have; gross, gross; fat, fat.\n\nPRINCESS:\nO poverty in wit, kingly-poor flout!\nWill they not, think you, hang themselves tonight?\nOr ever, but in vizards, show their faces?\nThis pert Biron was out of countenance quite.\n\nROSALINE:\nO, they were all in lamentable cases!\nThe king was weeping-ripe for a good word.\n\nPRINCESS:\nBiron did swear himself out of all suit.\n\nMARIA:\nDumain was at my service, and his sword:\nNo point, quoth I; my servant straight was mute.\n\nKATHARINE:\nLord Longaville said, I came o'er his heart;\nAnd trow you what he called me?\n\nPRINCESS:\nQualm, perhaps.\n\nKATHARINE:\nYes, in good faith.\n\nPRINCESS:\nGo, sickness as thou art!\n\nROSALINE:\nWell, better wits have worn plain statute-caps.\nBut will you hear? the king is my love sworn.\n\nPRINCESS:\nAnd quick Biron hath plighted faith to me.\n\nKATHARINE:\nAnd Longaville was for my service born.\n\nMARIA:\nDumain is mine, as sure as bark on tree.\n\nBOYET:\nMadam, and pretty mistresses, give ear:\nImmediately they will again be here\nIn their own shapes; for it can never be\nThey will digest this harsh indignity.\n\nPRINCESS:\nWill they return?\n\nBOYET:\nThey will, they will, God knows,\nAnd leap for joy, though they are lame with blows:\nTherefore change favours; and, when they repair,\nBlow like sweet roses in this summer air.\n\nPRINCESS:\nHow blow? how blow? speak to be understood.\n\nBOYET:\nFair ladies mask'd are roses in their bud;\nDismask'd, their damask sweet commixture shown,\nAre angels vailing clouds, or roses blown.\n\nPRINCESS:\nAvaunt, perplexity! What shall we do,\nIf they return in their own shapes to woo?\n\nROSALINE:\nGood madam, if by me you'll be advised,\nLet's, mock them still, as well known as disguised:\nLet us complain to them what fools were here,\nDisguised like Muscovites, in shapeless gear;\nAnd wonder what they were and to what end\nTheir shallow shows and prologue vilely penn'd\nAnd their rough carriage so ridiculous,\nShould be presented at our tent to us.\n\nBOYET:\nLadies, withdraw: the gallants are at hand.\n\nPRINCESS:\nWhip to our tents, as roes run o'er land.\n\nFERDINAND:\nFair sir, God save you! Where's the princess?\n\nBOYET:\nGone to her tent. Please it your majesty\nCommand me any service to her thither?\n\nFERDINAND:\nThat she vouchsafe me audience for one word.\n\nBOYET:\nI will; and so will she, I know, my lord.\n\nBIRON:\nThis fellow pecks up wit as pigeons pease,\nAnd utters it again when God doth please:\nHe is wit's pedler, and retails his wares\nAt wakes and wassails, meetings, markets, fairs;\nAnd we that sell by gross, the Lord doth know,\nHave not the grace to grace it with such show.\nThis gallant pins the wenches on his sleeve;\nHad he been Adam, he had tempted Eve;\nA' can carve too, and lisp: why, this is he\nThat kiss'd his hand away in courtesy;\nThis is the ape of form, monsieur the nice,\nThat, when he plays at tables, chides the dice\nIn honourable terms: nay, he can sing\nA mean most meanly; and in ushering\nMend him who can: the ladies call him sweet;\nThe stairs, as he treads on them, kiss his feet:\nThis is the flower that smiles on every one,\nTo show his teeth as white as whale's bone;\nAnd consciences, that will not die in debt,\nPay him the due of honey-tongued Boyet.\n\nFERDINAND:\nA blister on his sweet tongue, with my heart,\nThat put Armado's page out of his part!\n\nBIRON:\nSee where it comes! Behavior, what wert thou\nTill this madman show'd thee? and what art thou now?\n\nFERDINAND:\nAll hail, sweet madam, and fair time of day!\n\nPRINCESS:\n'Fair' in 'all hail' is foul, as I conceive.\n\nFERDINAND:\nConstrue my speeches better, if you may.\n\nPRINCESS:\nThen wish me better; I will give you leave.\n\nFERDINAND:\nWe came to visit you, and purpose now\nTo lead you to our court; vouchsafe it then.\n\nPRINCESS:\nThis field shall hold me; and so hold your vow:\nNor God, nor I, delights in perjured men.\n\nFERDINAND:\nRebuke me not for that which you provoke:\nThe virtue of your eye must break my oath.\n\nPRINCESS:\nYou nickname virtue; vice you should have spoke;\nFor virtue's office never breaks men's troth.\nNow by my maiden honour, yet as pure\nAs the unsullied lily, I protest,\nA world of torments though I should endure,\nI would not yield to be your house's guest;\nSo much I hate a breaking cause to be\nOf heavenly oaths, vow'd with integrity.\n\nFERDINAND:\nO, you have lived in desolation here,\nUnseen, unvisited, much to our shame.\n\nPRINCESS:\nNot so, my lord; it is not so, I swear;\nWe have had pastimes here and pleasant game:\nA mess of Russians left us but of late.\n\nFERDINAND:\nHow, madam! Russians!\n\nPRINCESS:\nAy, in truth, my lord;\nTrim gallants, full of courtship and of state.\n\nROSALINE:\nMadam, speak true. It is not so, my lord:\nMy lady, to the manner of the days,\nIn courtesy gives undeserving praise.\nWe four indeed confronted were with four\nIn Russian habit: here they stay'd an hour,\nAnd talk'd apace; and in that hour, my lord,\nThey did not bless us with one happy word.\nI dare not call them fools; but this I think,\nWhen they are thirsty, fools would fain have drink.\n\nBIRON:\nThis jest is dry to me. Fair gentle sweet,\nYour wit makes wise things foolish: when we greet,\nWith eyes best seeing, heaven's fiery eye,\nBy light we lose light: your capacity\nIs of that nature that to your huge store\nWise things seem foolish and rich things but poor.\n\nROSALINE:\nThis proves you wise and rich, for in my eye,--\n\nBIRON:\nI am a fool, and full of poverty.\n\nROSALINE:\nBut that you take what doth to you belong,\nIt were a fault to snatch words from my tongue.\n\nBIRON:\nO, I am yours, and all that I possess!\n\nROSALINE:\nAll the fool mine?\n\nBIRON:\nI cannot give you less.\n\nROSALINE:\nWhich of the vizards was it that you wore?\n\nBIRON:\nWhere? when? what vizard? why demand you this?\n\nROSALINE:\nThere, then, that vizard; that superfluous case\nThat hid the worse and show'd the better face.\n\nFERDINAND:\nWe are descried; they'll mock us now downright.\n\nDUMAIN:\nLet us confess and turn it to a jest.\n\nPRINCESS:\nAmazed, my lord? why looks your highness sad?\n\nROSALINE:\nHelp, hold his brows! he'll swoon! Why look you pale?\nSea-sick, I think, coming from Muscovy.\n\nBIRON:\nThus pour the stars down plagues for perjury.\nCan any face of brass hold longer out?\nHere stand I lady, dart thy skill at me;\nBruise me with scorn, confound me with a flout;\nThrust thy sharp wit quite through my ignorance;\nCut me to pieces with thy keen conceit;\nAnd I will wish thee never more to dance,\nNor never more in Russian habit wait.\nO, never will I trust to speeches penn'd,\nNor to the motion of a schoolboy's tongue,\nNor never come in vizard to my friend,\nNor woo in rhyme, like a blind harper's song!\nTaffeta phrases, silken terms precise,\nThree-piled hyperboles, spruce affectation,\nFigures pedantical; these summer-flies\nHave blown me full of maggot ostentation:\nI do forswear them; and I here protest,\nBy this white glove;--how white the hand, God knows!--\nHenceforth my wooing mind shall be express'd\nIn russet yeas and honest kersey noes:\nAnd, to begin, wench,--so God help me, la!--\nMy love to thee is sound, sans crack or flaw.\n\nROSALINE:\nSans sans, I pray you.\n\nBIRON:\nYet I have a trick\nOf the old rage: bear with me, I am sick;\nI'll leave it by degrees. Soft, let us see:\nWrite, 'Lord have mercy on us' on those three;\nThey are infected; in their hearts it lies;\nThey have the plague, and caught it of your eyes;\nThese lords are visited; you are not free,\nFor the Lord's tokens on you do I see.\n\nPRINCESS:\nNo, they are free that gave these tokens to us.\n\nBIRON:\nOur states are forfeit: seek not to undo us.\n\nROSALINE:\nIt is not so; for how can this be true,\nThat you stand forfeit, being those that sue?\n\nBIRON:\nPeace! for I will not have to do with you.\n\nROSALINE:\nNor shall not, if I do as I intend.\n\nBIRON:\nSpeak for yourselves; my wit is at an end.\n\nFERDINAND:\nTeach us, sweet madam, for our rude transgression\nSome fair excuse.\n\nPRINCESS:\nThe fairest is confession.\nWere not you here but even now disguised?\n\nFERDINAND:\nMadam, I was.\n\nPRINCESS:\nAnd were you well advised?\n\nFERDINAND:\nI was, fair madam.\n\nPRINCESS:\nWhen you then were here,\nWhat did you whisper in your lady's ear?\n\nFERDINAND:\nThat more than all the world I did respect her.\n\nPRINCESS:\nWhen she shall challenge this, you will reject her.\n\nFERDINAND:\nUpon mine honour, no.\n\nPRINCESS:\nPeace, peace! forbear:\nYour oath once broke, you force not to forswear.\n\nFERDINAND:\nDespise me, when I break this oath of mine.\n\nPRINCESS:\nI will: and therefore keep it. Rosaline,\nWhat did the Russian whisper in your ear?\n\nROSALINE:\nMadam, he swore that he did hold me dear\nAs precious eyesight, and did value me\nAbove this world; adding thereto moreover\nThat he would wed me, or else die my lover.\n\nPRINCESS:\nGod give thee joy of him! the noble lord\nMost honourably doth unhold his word.\n\nFERDINAND:\nWhat mean you, madam? by my life, my troth,\nI never swore this lady such an oath.\n\nROSALINE:\nBy heaven, you did; and to confirm it plain,\nYou gave me this: but take it, sir, again.\n\nFERDINAND:\nMy faith and this the princess I did give:\nI knew her by this jewel on her sleeve.\n\nPRINCESS:\nPardon me, sir, this jewel did she wear;\nAnd Lord Biron, I thank him, is my dear.\nWhat, will you have me, or your pearl again?\n\nBIRON:\nNeither of either; I remit both twain.\nI see the trick on't: here was a consent,\nKnowing aforehand of our merriment,\nTo dash it like a Christmas comedy:\nSome carry-tale, some please-man, some slight zany,\nSome mumble-news, some trencher-knight, some Dick,\nThat smiles his cheek in years and knows the trick\nTo make my lady laugh when she's disposed,\nTold our intents before; which once disclosed,\nThe ladies did change favours: and then we,\nFollowing the signs, woo'd but the sign of she.\nNow, to our perjury to add more terror,\nWe are again forsworn, in will and error.\nMuch upon this it is: and might not you\nForestall our sport, to make us thus untrue?\nDo not you know my lady's foot by the squier,\nAnd laugh upon the apple of her eye?\nAnd stand between her back, sir, and the fire,\nHolding a trencher, jesting merrily?\nYou put our page out: go, you are allow'd;\nDie when you will, a smock shall be your shroud.\nYou leer upon me, do you? there's an eye\nWounds like a leaden sword.\n\nBOYET:\nFull merrily\nHath this brave manage, this career, been run.\n\nBIRON:\nLo, he is tilting straight! Peace! I have done.\nWelcome, pure wit! thou partest a fair fray.\n\nCOSTARD:\nO Lord, sir, they would know\nWhether the three Worthies shall come in or no.\n\nBIRON:\nWhat, are there but three?\n\nCOSTARD:\nNo, sir; but it is vara fine,\nFor every one pursents three.\n\nBIRON:\nAnd three times thrice is nine.\n\nCOSTARD:\nNot so, sir; under correction, sir; I hope it is not so.\nYou cannot beg us, sir, I can assure you, sir we know\nwhat we know:\nI hope, sir, three times thrice, sir,--\n\nBIRON:\nIs not nine.\n\nCOSTARD:\nUnder correction, sir, we know whereuntil it doth amount.\n\nBIRON:\nBy Jove, I always took three threes for nine.\n\nCOSTARD:\nO Lord, sir, it were pity you should get your living\nby reckoning, sir.\n\nBIRON:\nHow much is it?\n\nCOSTARD:\nO Lord, sir, the parties themselves, the actors,\nsir, will show whereuntil it doth amount: for mine\nown part, I am, as they say, but to parfect one man\nin one poor man, Pompion the Great, sir.\n\nBIRON:\nArt thou one of the Worthies?\n\nCOSTARD:\nIt pleased them to think me worthy of Pompion the\nGreat: for mine own part, I know not the degree of\nthe Worthy, but I am to stand for him.\n\nBIRON:\nGo, bid them prepare.\n\nCOSTARD:\nWe will turn it finely off, sir; we will take\nsome care.\n\nFERDINAND:\nBiron, they will shame us: let them not approach.\n\nBIRON:\nWe are shame-proof, my lord: and tis some policy\nTo have one show worse than the king's and his company.\n\nFERDINAND:\nI say they shall not come.\n\nPRINCESS:\nNay, my good lord, let me o'errule you now:\nThat sport best pleases that doth least know how:\nWhere zeal strives to content, and the contents\nDies in the zeal of that which it presents:\nTheir form confounded makes most form in mirth,\nWhen great things labouring perish in their birth.\n\nBIRON:\nA right description of our sport, my lord.\n\nDON ADRIANO DE ARMADO:\nAnointed, I implore so much expense of thy royal\nsweet breath as will utter a brace of words.\n\nPRINCESS:\nDoth this man serve God?\n\nBIRON:\nWhy ask you?\n\nPRINCESS:\nHe speaks not like a man of God's making.\n\nDON ADRIANO DE ARMADO:\nThat is all one, my fair, sweet, honey monarch; for,\nI protest, the schoolmaster is exceeding\nfantastical; too, too vain, too too vain: but we\nwill put it, as they say, to fortuna de la guerra.\nI wish you the peace of mind, most royal couplement!\n\nFERDINAND:\nHere is like to be a good presence of Worthies. He\npresents Hector of Troy; the swain, Pompey the\nGreat; the parish curate, Alexander; Armado's page,\nHercules; the pedant, Judas Maccabaeus: And if\nthese four Worthies in their first show thrive,\nThese four will change habits, and present the other five.\n\nBIRON:\nThere is five in the first show.\n\nFERDINAND:\nYou are deceived; 'tis not so.\n\nBIRON:\nThe pedant, the braggart, the hedge-priest, the fool\nand the boy:--\nAbate throw at novum, and the whole world again\nCannot pick out five such, take each one in his vein.\n\nFERDINAND:\nThe ship is under sail, and here she comes amain.\n\nCOSTARD:\nI Pompey am,--\n\nBOYET:\nYou lie, you are not he.\n\nCOSTARD:\nI Pompey am,--\n\nBOYET:\nWith libbard's head on knee.\n\nBIRON:\nWell said, old mocker: I must needs be friends\nwith thee.\n\nCOSTARD:\nI Pompey am, Pompey surnamed the Big--\n\nDUMAIN:\nThe Great.\n\nCOSTARD:\nIt is, 'Great,' sir:--\nPompey surnamed the Great;\nThat oft in field, with targe and shield, did make\nmy foe to sweat:\nAnd travelling along this coast, I here am come by chance,\nAnd lay my arms before the legs of this sweet lass of France,\nIf your ladyship would say, 'Thanks, Pompey,' I had done.\n\nPRINCESS:\nGreat thanks, great Pompey.\n\nCOSTARD:\n'Tis not so much worth; but I hope I was perfect: I\nmade a little fault in 'Great.'\n\nBIRON:\nMy hat to a halfpenny, Pompey proves the best Worthy.\n\nSIR NATHANIEL:\nWhen in the world I lived, I was the world's\ncommander;\nBy east, west, north, and south, I spread my\nconquering might:\nMy scutcheon plain declares that I am Alisander,--\n\nBOYET:\nYour nose says, no, you are not for it stands too right.\n\nBIRON:\nYour nose smells 'no' in this, most tender-smelling knight.\n\nPRINCESS:\nThe conqueror is dismay'd. Proceed, good Alexander.\n\nSIR NATHANIEL:\nWhen in the world I lived, I was the world's\ncommander,--\n\nBOYET:\nMost true, 'tis right; you were so, Alisander.\n\nBIRON:\nPompey the Great,--\n\nCOSTARD:\nYour servant, and Costard.\n\nBIRON:\nTake away the conqueror, take away Alisander.\n\nCOSTARD:\n\nHOLOFERNES:\nGreat Hercules is presented by this imp,\nWhose club kill'd Cerberus, that three-headed canis;\nAnd when he was a babe, a child, a shrimp,\nThus did he strangle serpents in his manus.\nQuoniam he seemeth in minority,\nErgo I come with this apology.\nKeep some state in thy exit, and vanish.\nJudas I am,--\n\nDUMAIN:\nA Judas!\n\nHOLOFERNES:\nNot Iscariot, sir.\nJudas I am, ycliped Maccabaeus.\n\nDUMAIN:\nJudas Maccabaeus clipt is plain Judas.\n\nBIRON:\nA kissing traitor. How art thou proved Judas?\n\nHOLOFERNES:\nJudas I am,--\n\nDUMAIN:\nThe more shame for you, Judas.\n\nHOLOFERNES:\nWhat mean you, sir?\n\nBOYET:\nTo make Judas hang himself.\n\nHOLOFERNES:\nBegin, sir; you are my elder.\n\nBIRON:\nWell followed: Judas was hanged on an elder.\n\nHOLOFERNES:\nI will not be put out of countenance.\n\nBIRON:\nBecause thou hast no face.\n\nHOLOFERNES:\nWhat is this?\n\nBOYET:\nA cittern-head.\n\nDUMAIN:\nThe head of a bodkin.\n\nBIRON:\nA Death's face in a ring.\n\nLONGAVILLE:\nThe face of an old Roman coin, scarce seen.\n\nBOYET:\nThe pommel of Caesar's falchion.\n\nDUMAIN:\nThe carved-bone face on a flask.\n\nBIRON:\nSaint George's half-cheek in a brooch.\n\nDUMAIN:\nAy, and in a brooch of lead.\n\nBIRON:\nAy, and worn in the cap of a tooth-drawer.\nAnd now forward; for we have put thee in countenance.\n\nHOLOFERNES:\nYou have put me out of countenance.\n\nBIRON:\nFalse; we have given thee faces.\n\nHOLOFERNES:\nBut you have out-faced them all.\n\nBIRON:\nAn thou wert a lion, we would do so.\n\nBOYET:\nTherefore, as he is an ass, let him go.\nAnd so adieu, sweet Jude! nay, why dost thou stay?\n\nDUMAIN:\nFor the latter end of his name.\n\nBIRON:\nFor the ass to the Jude; give it him:--Jud-as, away!\n\nHOLOFERNES:\nThis is not generous, not gentle, not humble.\n\nBOYET:\nA light for Monsieur Judas! it grows dark, he may stumble.\n\nPRINCESS:\nAlas, poor Maccabaeus, how hath he been baited!\n\nBIRON:\nHide thy head, Achilles: here comes Hector in arms.\n\nDUMAIN:\nThough my mocks come home by me, I will now be merry.\n\nFERDINAND:\nHector was but a Troyan in respect of this.\n\nBOYET:\nBut is this Hector?\n\nFERDINAND:\nI think Hector was not so clean-timbered.\n\nLONGAVILLE:\nHis leg is too big for Hector's.\n\nDUMAIN:\nMore calf, certain.\n\nBOYET:\nNo; he is best endued in the small.\n\nBIRON:\nThis cannot be Hector.\n\nDUMAIN:\nHe's a god or a painter; for he makes faces.\n\nDON ADRIANO DE ARMADO:\nThe armipotent Mars, of lances the almighty,\nGave Hector a gift,--\n\nDUMAIN:\nA gilt nutmeg.\n\nBIRON:\nA lemon.\n\nLONGAVILLE:\nStuck with cloves.\n\nDUMAIN:\nNo, cloven.\n\nDON ADRIANO DE ARMADO:\nPeace!--\nThe armipotent Mars, of lances the almighty\nGave Hector a gift, the heir of Ilion;\nA man so breathed, that certain he would fight; yea\nFrom morn till night, out of his pavilion.\nI am that flower,--\n\nDUMAIN:\nThat mint.\n\nLONGAVILLE:\nThat columbine.\n\nDON ADRIANO DE ARMADO:\nSweet Lord Longaville, rein thy tongue.\n\nLONGAVILLE:\nI must rather give it the rein, for it runs against Hector.\n\nDUMAIN:\nAy, and Hector's a greyhound.\n\nDON ADRIANO DE ARMADO:\nThe sweet war-man is dead and rotten; sweet chucks,\nbeat not the bones of the buried: when he breathed,\nhe was a man. But I will forward with my device.\nSweet royalty, bestow on me the sense of hearing.\n\nPRINCESS:\nSpeak, brave Hector: we are much delighted.\n\nDON ADRIANO DE ARMADO:\nI do adore thy sweet grace's slipper.\n\nBOYET:\n\nDUMAIN:\n\nDON ADRIANO DE ARMADO:\nThis Hector far surmounted Hannibal,--\n\nCOSTARD:\nThe party is gone, fellow Hector, she is gone; she\nis two months on her way.\n\nDON ADRIANO DE ARMADO:\nWhat meanest thou?\n\nCOSTARD:\nFaith, unless you play the honest Troyan, the poor\nwench is cast away: she's quick; the child brags in\nher belly already: tis yours.\n\nDON ADRIANO DE ARMADO:\nDost thou infamonize me among potentates? thou shalt\ndie.\n\nCOSTARD:\nThen shall Hector be whipped for Jaquenetta that is\nquick by him and hanged for Pompey that is dead by\nhim.\n\nDUMAIN:\nMost rare Pompey!\n\nBOYET:\nRenowned Pompey!\n\nBIRON:\nGreater than great, great, great, great Pompey!\nPompey the Huge!\n\nDUMAIN:\nHector trembles.\n\nBIRON:\nPompey is moved. More Ates, more Ates! stir them\non! stir them on!\n\nDUMAIN:\nHector will challenge him.\n\nBIRON:\nAy, if a' have no man's blood in's belly than will\nsup a flea.\n\nDON ADRIANO DE ARMADO:\nBy the north pole, I do challenge thee.\n\nCOSTARD:\nI will not fight with a pole, like a northern man:\nI'll slash; I'll do it by the sword. I bepray you,\nlet me borrow my arms again.\n\nDUMAIN:\nRoom for the incensed Worthies!\n\nCOSTARD:\nI'll do it in my shirt.\n\nDUMAIN:\nMost resolute Pompey!\n\nMOTH:\nMaster, let me take you a buttonhole lower. Do you\nnot see Pompey is uncasing for the combat? What mean\nyou? You will lose your reputation.\n\nDON ADRIANO DE ARMADO:\nGentlemen and soldiers, pardon me; I will not combat\nin my shirt.\n\nDUMAIN:\nYou may not deny it: Pompey hath made the challenge.\n\nDON ADRIANO DE ARMADO:\nSweet bloods, I both may and will.\n\nBIRON:\nWhat reason have you for't?\n\nDON ADRIANO DE ARMADO:\nThe naked truth of it is, I have no shirt; I go\nwoolward for penance.\n\nBOYET:\nTrue, and it was enjoined him in Rome for want of\nlinen: since when, I'll be sworn, he wore none but\na dishclout of Jaquenetta's, and that a' wears next\nhis heart for a favour.\n\nMERCADE:\nGod save you, madam!\n\nPRINCESS:\nWelcome, Mercade;\nBut that thou interrupt'st our merriment.\n\nMERCADE:\nI am sorry, madam; for the news I bring\nIs heavy in my tongue. The king your father--\n\nPRINCESS:\nDead, for my life!\n\nMERCADE:\nEven so; my tale is told.\n\nBIRON:\nWorthies, away! the scene begins to cloud.\n\nDON ADRIANO DE ARMADO:\nFor mine own part, I breathe free breath. I have\nseen the day of wrong through the little hole of\ndiscretion, and I will right myself like a soldier.\n\nFERDINAND:\nHow fares your majesty?\n\nPRINCESS:\nBoyet, prepare; I will away tonight.\n\nFERDINAND:\nMadam, not so; I do beseech you, stay.\n\nPRINCESS:\nPrepare, I say. I thank you, gracious lords,\nFor all your fair endeavors; and entreat,\nOut of a new-sad soul, that you vouchsafe\nIn your rich wisdom to excuse or hide\nThe liberal opposition of our spirits,\nIf over-boldly we have borne ourselves\nIn the converse of breath: your gentleness\nWas guilty of it. Farewell worthy lord!\nA heavy heart bears not a nimble tongue:\nExcuse me so, coming too short of thanks\nFor my great suit so easily obtain'd.\n\nFERDINAND:\nThe extreme parts of time extremely forms\nAll causes to the purpose of his speed,\nAnd often at his very loose decides\nThat which long process could not arbitrate:\nAnd though the mourning brow of progeny\nForbid the smiling courtesy of love\nThe holy suit which fain it would convince,\nYet, since love's argument was first on foot,\nLet not the cloud of sorrow justle it\nFrom what it purposed; since, to wail friends lost\nIs not by much so wholesome-profitable\nAs to rejoice at friends but newly found.\n\nPRINCESS:\nI understand you not: my griefs are double.\n\nBIRON:\nHonest plain words best pierce the ear of grief;\nAnd by these badges understand the king.\nFor your fair sakes have we neglected time,\nPlay'd foul play with our oaths: your beauty, ladies,\nHath much deform'd us, fashioning our humours\nEven to the opposed end of our intents:\nAnd what in us hath seem'd ridiculous,--\nAs love is full of unbefitting strains,\nAll wanton as a child, skipping and vain,\nForm'd by the eye and therefore, like the eye,\nFull of strange shapes, of habits and of forms,\nVarying in subjects as the eye doth roll\nTo every varied object in his glance:\nWhich parti-coated presence of loose love\nPut on by us, if, in your heavenly eyes,\nHave misbecomed our oaths and gravities,\nThose heavenly eyes, that look into these faults,\nSuggested us to make. Therefore, ladies,\nOur love being yours, the error that love makes\nIs likewise yours: we to ourselves prove false,\nBy being once false for ever to be true\nTo those that make us both,--fair ladies, you:\nAnd even that falsehood, in itself a sin,\nThus purifies itself and turns to grace.\n\nPRINCESS:\nWe have received your letters full of love;\nYour favours, the ambassadors of love;\nAnd, in our maiden council, rated them\nAt courtship, pleasant jest and courtesy,\nAs bombast and as lining to the time:\nBut more devout than this in our respects\nHave we not been; and therefore met your loves\nIn their own fashion, like a merriment.\n\nDUMAIN:\nOur letters, madam, show'd much more than jest.\n\nLONGAVILLE:\nSo did our looks.\n\nROSALINE:\nWe did not quote them so.\n\nFERDINAND:\nNow, at the latest minute of the hour,\nGrant us your loves.\n\nPRINCESS:\nA time, methinks, too short\nTo make a world-without-end bargain in.\nNo, no, my lord, your grace is perjured much,\nFull of dear guiltiness; and therefore this:\nIf for my love, as there is no such cause,\nYou will do aught, this shall you do for me:\nYour oath I will not trust; but go with speed\nTo some forlorn and naked hermitage,\nRemote from all the pleasures of the world;\nThere stay until the twelve celestial signs\nHave brought about the annual reckoning.\nIf this austere insociable life\nChange not your offer made in heat of blood;\nIf frosts and fasts, hard lodging and thin weeds\nNip not the gaudy blossoms of your love,\nBut that it bear this trial and last love;\nThen, at the expiration of the year,\nCome challenge me, challenge me by these deserts,\nAnd, by this virgin palm now kissing thine\nI will be thine; and till that instant shut\nMy woeful self up in a mourning house,\nRaining the tears of lamentation\nFor the remembrance of my father's death.\nIf this thou do deny, let our hands part,\nNeither entitled in the other's heart.\n\nFERDINAND:\nIf this, or more than this, I would deny,\nTo flatter up these powers of mine with rest,\nThe sudden hand of death close up mine eye!\nHence ever then my heart is in thy breast.\n\nBIRON:\n[And what to me, my love? and what to me?\n\nROSALINE:\nYou must be purged too, your sins are rack'd,\nYou are attaint with faults and perjury:\nTherefore if you my favour mean to get,\nA twelvemonth shall you spend, and never rest,\nBut seek the weary beds of people sick.]\n\nDUMAIN:\nBut what to me, my love? but what to me? A wife?\n\nKATHARINE:\nA beard, fair health, and honesty;\nWith three-fold love I wish you all these three.\n\nDUMAIN:\nO, shall I say, I thank you, gentle wife?\n\nKATHARINE:\nNot so, my lord; a twelvemonth and a day\nI'll mark no words that smooth-faced wooers say:\nCome when the king doth to my lady come;\nThen, if I have much love, I'll give you some.\n\nDUMAIN:\nI'll serve thee true and faithfully till then.\n\nKATHARINE:\nYet swear not, lest ye be forsworn again.\n\nLONGAVILLE:\nWhat says Maria?\n\nMARIA:\nAt the twelvemonth's end\nI'll change my black gown for a faithful friend.\n\nLONGAVILLE:\nI'll stay with patience; but the time is long.\n\nMARIA:\nThe liker you; few taller are so young.\n\nBIRON:\nStudies my lady? mistress, look on me;\nBehold the window of my heart, mine eye,\nWhat humble suit attends thy answer there:\nImpose some service on me for thy love.\n\nROSALINE:\nOft have I heard of you, my Lord Biron,\nBefore I saw you; and the world's large tongue\nProclaims you for a man replete with mocks,\nFull of comparisons and wounding flouts,\nWhich you on all estates will execute\nThat lie within the mercy of your wit.\nTo weed this wormwood from your fruitful brain,\nAnd therewithal to win me, if you please,\nWithout the which I am not to be won,\nYou shall this twelvemonth term from day to day\nVisit the speechless sick and still converse\nWith groaning wretches; and your task shall be,\nWith all the fierce endeavor of your wit\nTo enforce the pained impotent to smile.\n\nBIRON:\nTo move wild laughter in the throat of death?\nIt cannot be; it is impossible:\nMirth cannot move a soul in agony.\n\nROSALINE:\nWhy, that's the way to choke a gibing spirit,\nWhose influence is begot of that loose grace\nWhich shallow laughing hearers give to fools:\nA jest's prosperity lies in the ear\nOf him that hears it, never in the tongue\nOf him that makes it: then, if sickly ears,\nDeaf'd with the clamours of their own dear groans,\nWill hear your idle scorns, continue then,\nAnd I will have you and that fault withal;\nBut if they will not, throw away that spirit,\nAnd I shall find you empty of that fault,\nRight joyful of your reformation.\n\nBIRON:\nA twelvemonth! well; befall what will befall,\nI'll jest a twelvemonth in an hospital.\n\nPRINCESS:\n\nFERDINAND:\nNo, madam; we will bring you on your way.\n\nBIRON:\nOur wooing doth not end like an old play;\nJack hath not Jill: these ladies' courtesy\nMight well have made our sport a comedy.\n\nFERDINAND:\nCome, sir, it wants a twelvemonth and a day,\nAnd then 'twill end.\n\nBIRON:\nThat's too long for a play.\n\nDON ADRIANO DE ARMADO:\nSweet majesty, vouchsafe me,--\n\nPRINCESS:\nWas not that Hector?\n\nDUMAIN:\nThe worthy knight of Troy.\n\nDON ADRIANO DE ARMADO:\nI will kiss thy royal finger, and take leave. I am\na votary; I have vowed to Jaquenetta to hold the\nplough for her sweet love three years. But, most\nesteemed greatness, will you hear the dialogue that\nthe two learned men have compiled in praise of the\nowl and the cuckoo? It should have followed in the\nend of our show.\n\nFERDINAND:\nCall them forth quickly; we will do so.\n\nDON ADRIANO DE ARMADO:\nHolla! approach.\nThis side is Hiems, Winter, this Ver, the Spring;\nthe one maintained by the owl, the other by the\ncuckoo. Ver, begin.\nWhen daisies pied and violets blue\nAnd lady-smocks all silver-white\nAnd cuckoo-buds of yellow hue\nDo paint the meadows with delight,\nThe cuckoo then, on every tree,\nMocks married men; for thus sings he,  Cuckoo;\nCuckoo, cuckoo: O word of fear,\nUnpleasing to a married ear!\nWhen shepherds pipe on oaten straws\nAnd merry larks are ploughmen's clocks,\nWhen turtles tread, and rooks, and daws,\nAnd maidens bleach their summer smocks\nThe cuckoo then, on every tree,\nMocks married men; for thus sings he,  Cuckoo;\nCuckoo, cuckoo: O word of fear,\nUnpleasing to a married ear!\nWhen icicles hang by the wall\nAnd Dick the shepherd blows his nail\nAnd Tom bears logs into the hall\nAnd milk comes frozen home in pail,\nWhen blood is nipp'd and ways be foul,\nThen nightly sings the staring owl,  Tu-whit;\nTu-who, a merry note,\nWhile greasy Joan doth keel the pot.\nWhen all aloud the wind doth blow\nAnd coughing drowns the parson's saw\nAnd birds sit brooding in the snow\nAnd Marian's nose looks red and raw,\nWhen roasted crabs hiss in the bowl,\nThen nightly sings the staring owl,  Tu-whit;\nTu-who, a merry note,\nWhile greasy Joan doth keel the pot.\n\nDON ADRIANO DE ARMADO:\nThe words of Mercury are harsh after the songs of\nApollo. You that way: we this way.\n\nRODERIGO:\nTush! never tell me; I take it much unkindly\nThat thou, Iago, who hast had my purse\nAs if the strings were thine, shouldst know of this.\n\nIAGO:\n'Sblood, but you will not hear me:\nIf ever I did dream of such a matter, Abhor me.\n\nRODERIGO:\nThou told'st me thou didst hold him in thy hate.\n\nIAGO:\nDespise me, if I do not. Three great ones of the city,\nIn personal suit to make me his lieutenant,\nOff-capp'd to him: and, by the faith of man,\nI know my price, I am worth no worse a place:\nBut he; as loving his own pride and purposes,\nEvades them, with a bombast circumstance\nHorribly stuff'd with epithets of war;\nAnd, in conclusion,\nNonsuits my mediators; for, 'Certes,' says he,\n'I have already chose my officer.'\nAnd what was he?\nForsooth, a great arithmetician,\nOne Michael Cassio, a Florentine,\nA fellow almost damn'd in a fair wife;\nThat never set a squadron in the field,\nNor the division of a battle knows\nMore than a spinster; unless the bookish theoric,\nWherein the toged consuls can propose\nAs masterly as he: mere prattle, without practise,\nIs all his soldiership. But he, sir, had the election:\nAnd I, of whom his eyes had seen the proof\nAt Rhodes, at Cyprus and on other grounds\nChristian and heathen, must be be-lee'd and calm'd\nBy debitor and creditor: this counter-caster,\nHe, in good time, must his lieutenant be,\nAnd I--God bless the mark!--his Moorship's ancient.\n\nRODERIGO:\nBy heaven, I rather would have been his hangman.\n\nIAGO:\nWhy, there's no remedy; 'tis the curse of service,\nPreferment goes by letter and affection,\nAnd not by old gradation, where each second\nStood heir to the first. Now, sir, be judge yourself,\nWhether I in any just term am affined\nTo love the Moor.\n\nRODERIGO:\nI would not follow him then.\n\nIAGO:\nO, sir, content you;\nI follow him to serve my turn upon him:\nWe cannot all be masters, nor all masters\nCannot be truly follow'd. You shall mark\nMany a duteous and knee-crooking knave,\nThat, doting on his own obsequious bondage,\nWears out his time, much like his master's ass,\nFor nought but provender, and when he's old, cashier'd:\nWhip me such honest knaves. Others there are\nWho, trimm'd in forms and visages of duty,\nKeep yet their hearts attending on themselves,\nAnd, throwing but shows of service on their lords,\nDo well thrive by them and when they have lined\ntheir coats\nDo themselves homage: these fellows have some soul;\nAnd such a one do I profess myself. For, sir,\nIt is as sure as you are Roderigo,\nWere I the Moor, I would not be Iago:\nIn following him, I follow but myself;\nHeaven is my judge, not I for love and duty,\nBut seeming so, for my peculiar end:\nFor when my outward action doth demonstrate\nThe native act and figure of my heart\nIn compliment extern, 'tis not long after\nBut I will wear my heart upon my sleeve\nFor daws to peck at: I am not what I am.\n\nRODERIGO:\nWhat a full fortune does the thicklips owe\nIf he can carry't thus!\n\nIAGO:\nCall up her father,\nRouse him: make after him, poison his delight,\nProclaim him in the streets; incense her kinsmen,\nAnd, though he in a fertile climate dwell,\nPlague him with flies: though that his joy be joy,\nYet throw such changes of vexation on't,\nAs it may lose some colour.\n\nRODERIGO:\nHere is her father's house; I'll call aloud.\n\nIAGO:\nDo, with like timorous accent and dire yell\nAs when, by night and negligence, the fire\nIs spied in populous cities.\n\nRODERIGO:\nWhat, ho, Brabantio! Signior Brabantio, ho!\n\nIAGO:\nAwake! what, ho, Brabantio! thieves! thieves! thieves!\nLook to your house, your daughter and your bags!\nThieves! thieves!\n\nBRABANTIO:\nWhat is the reason of this terrible summons?\nWhat is the matter there?\n\nRODERIGO:\nSignior, is all your family within?\n\nIAGO:\nAre your doors lock'd?\n\nBRABANTIO:\nWhy, wherefore ask you this?\n\nIAGO:\n'Zounds, sir, you're robb'd; for shame, put on\nyour gown;\nYour heart is burst, you have lost half your soul;\nEven now, now, very now, an old black ram\nIs topping your white ewe. Arise, arise;\nAwake the snorting citizens with the bell,\nOr else the devil will make a grandsire of you:\nArise, I say.\n\nBRABANTIO:\nWhat, have you lost your wits?\n\nRODERIGO:\nMost reverend signior, do you know my voice?\n\nBRABANTIO:\nNot I what are you?\n\nRODERIGO:\nMy name is Roderigo.\n\nBRABANTIO:\nThe worser welcome:\nI have charged thee not to haunt about my doors:\nIn honest plainness thou hast heard me say\nMy daughter is not for thee; and now, in madness,\nBeing full of supper and distempering draughts,\nUpon malicious bravery, dost thou come\nTo start my quiet.\n\nRODERIGO:\nSir, sir, sir,--\n\nBRABANTIO:\nBut thou must needs be sure\nMy spirit and my place have in them power\nTo make this bitter to thee.\n\nRODERIGO:\nPatience, good sir.\n\nBRABANTIO:\nWhat tell'st thou me of robbing? this is Venice;\nMy house is not a grange.\n\nRODERIGO:\nMost grave Brabantio,\nIn simple and pure soul I come to you.\n\nIAGO:\n'Zounds, sir, you are one of those that will not\nserve God, if the devil bid you. Because we come to\ndo you service and you think we are ruffians, you'll\nhave your daughter covered with a Barbary horse;\nyou'll have your nephews neigh to you; you'll have\ncoursers for cousins and gennets for germans.\n\nBRABANTIO:\nWhat profane wretch art thou?\n\nIAGO:\nI am one, sir, that comes to tell you your daughter\nand the Moor are now making the beast with two backs.\n\nBRABANTIO:\nThou art a villain.\n\nIAGO:\nYou are--a senator.\n\nBRABANTIO:\nThis thou shalt answer; I know thee, Roderigo.\n\nRODERIGO:\nSir, I will answer any thing. But, I beseech you,\nIf't be your pleasure and most wise consent,\nAs partly I find it is, that your fair daughter,\nAt this odd-even and dull watch o' the night,\nTransported, with no worse nor better guard\nBut with a knave of common hire, a gondolier,\nTo the gross clasps of a lascivious Moor--\nIf this be known to you and your allowance,\nWe then have done you bold and saucy wrongs;\nBut if you know not this, my manners tell me\nWe have your wrong rebuke. Do not believe\nThat, from the sense of all civility,\nI thus would play and trifle with your reverence:\nYour daughter, if you have not given her leave,\nI say again, hath made a gross revolt;\nTying her duty, beauty, wit and fortunes\nIn an extravagant and wheeling stranger\nOf here and every where. Straight satisfy yourself:\nIf she be in her chamber or your house,\nLet loose on me the justice of the state\nFor thus deluding you.\n\nBRABANTIO:\nStrike on the tinder, ho!\nGive me a taper! call up all my people!\nThis accident is not unlike my dream:\nBelief of it oppresses me already.\nLight, I say! light!\n\nIAGO:\nFarewell; for I must leave you:\nIt seems not meet, nor wholesome to my place,\nTo be produced--as, if I stay, I shall--\nAgainst the Moor: for, I do know, the state,\nHowever this may gall him with some cheque,\nCannot with safety cast him, for he's embark'd\nWith such loud reason to the Cyprus wars,\nWhich even now stand in act, that, for their souls,\nAnother of his fathom they have none,\nTo lead their business: in which regard,\nThough I do hate him as I do hell-pains.\nYet, for necessity of present life,\nI must show out a flag and sign of love,\nWhich is indeed but sign. That you shall surely find him,\nLead to the Sagittary the raised search;\nAnd there will I be with him. So, farewell.\n\nBRABANTIO:\nIt is too true an evil: gone she is;\nAnd what's to come of my despised time\nIs nought but bitterness. Now, Roderigo,\nWhere didst thou see her? O unhappy girl!\nWith the Moor, say'st thou? Who would be a father!\nHow didst thou know 'twas she? O she deceives me\nPast thought! What said she to you? Get more tapers:\nRaise all my kindred. Are they married, think you?\n\nRODERIGO:\nTruly, I think they are.\n\nBRABANTIO:\nO heaven! How got she out? O treason of the blood!\nFathers, from hence trust not your daughters' minds\nBy what you see them act. Is there not charms\nBy which the property of youth and maidhood\nMay be abused? Have you not read, Roderigo,\nOf some such thing?\n\nRODERIGO:\nYes, sir, I have indeed.\n\nBRABANTIO:\nCall up my brother. O, would you had had her!\nSome one way, some another. Do you know\nWhere we may apprehend her and the Moor?\n\nRODERIGO:\nI think I can discover him, if you please,\nTo get good guard and go along with me.\n\nBRABANTIO:\nPray you, lead on. At every house I'll call;\nI may command at most. Get weapons, ho!\nAnd raise some special officers of night.\nOn, good Roderigo: I'll deserve your pains.\n\nIAGO:\nThough in the trade of war I have slain men,\nYet do I hold it very stuff o' the conscience\nTo do no contrived murder: I lack iniquity\nSometimes to do me service: nine or ten times\nI had thought to have yerk'd him here under the ribs.\n\nOTHELLO:\n'Tis better as it is.\n\nIAGO:\nNay, but he prated,\nAnd spoke such scurvy and provoking terms\nAgainst your honour\nThat, with the little godliness I have,\nI did full hard forbear him. But, I pray you, sir,\nAre you fast married? Be assured of this,\nThat the magnifico is much beloved,\nAnd hath in his effect a voice potential\nAs double as the duke's: he will divorce you;\nOr put upon you what restraint and grievance\nThe law, with all his might to enforce it on,\nWill give him cable.\n\nOTHELLO:\nLet him do his spite:\nMy services which I have done the signiory\nShall out-tongue his complaints. 'Tis yet to know,--\nWhich, when I know that boasting is an honour,\nI shall promulgate--I fetch my life and being\nFrom men of royal siege, and my demerits\nMay speak unbonneted to as proud a fortune\nAs this that I have reach'd: for know, Iago,\nBut that I love the gentle Desdemona,\nI would not my unhoused free condition\nPut into circumscription and confine\nFor the sea's worth. But, look! what lights come yond?\n\nIAGO:\nThose are the raised father and his friends:\nYou were best go in.\n\nOTHELLO:\nNot I I must be found:\nMy parts, my title and my perfect soul\nShall manifest me rightly. Is it they?\n\nIAGO:\nBy Janus, I think no.\n\nOTHELLO:\nThe servants of the duke, and my lieutenant.\nThe goodness of the night upon you, friends!\nWhat is the news?\n\nCASSIO:\nThe duke does greet you, general,\nAnd he requires your haste-post-haste appearance,\nEven on the instant.\n\nOTHELLO:\nWhat is the matter, think you?\n\nCASSIO:\nSomething from Cyprus as I may divine:\nIt is a business of some heat: the galleys\nHave sent a dozen sequent messengers\nThis very night at one another's heels,\nAnd many of the consuls, raised and met,\nAre at the duke's already: you have been\nhotly call'd for;\nWhen, being not at your lodging to be found,\nThe senate hath sent about three several guests\nTo search you out.\n\nOTHELLO:\n'Tis well I am found by you.\nI will but spend a word here in the house,\nAnd go with you.\n\nCASSIO:\nAncient, what makes he here?\n\nIAGO:\n'Faith, he to-night hath boarded a land carack:\nIf it prove lawful prize, he's made for ever.\n\nCASSIO:\nI do not understand.\n\nIAGO:\nHe's married.\n\nCASSIO:\nTo who?\n\nIAGO:\nMarry, to--Come, captain, will you go?\n\nOTHELLO:\nHave with you.\n\nCASSIO:\nHere comes another troop to seek for you.\n\nIAGO:\nIt is Brabantio. General, be advised;\nHe comes to bad intent.\n\nOTHELLO:\nHolla! stand there!\n\nRODERIGO:\nSignior, it is the Moor.\n\nBRABANTIO:\nDown with him, thief!\n\nIAGO:\nYou, Roderigo! come, sir, I am for you.\n\nOTHELLO:\nKeep up your bright swords, for the dew will rust them.\nGood signior, you shall more command with years\nThan with your weapons.\n\nBRABANTIO:\nO thou foul thief, where hast thou stow'd my daughter?\nDamn'd as thou art, thou hast enchanted her;\nFor I'll refer me to all things of sense,\nIf she in chains of magic were not bound,\nWhether a maid so tender, fair and happy,\nSo opposite to marriage that she shunned\nThe wealthy curled darlings of our nation,\nWould ever have, to incur a general mock,\nRun from her guardage to the sooty bosom\nOf such a thing as thou, to fear, not to delight.\nJudge me the world, if 'tis not gross in sense\nThat thou hast practised on her with foul charms,\nAbused her delicate youth with drugs or minerals\nThat weaken motion: I'll have't disputed on;\n'Tis probable and palpable to thinking.\nI therefore apprehend and do attach thee\nFor an abuser of the world, a practiser\nOf arts inhibited and out of warrant.\nLay hold upon him: if he do resist,\nSubdue him at his peril.\n\nOTHELLO:\nHold your hands,\nBoth you of my inclining, and the rest:\nWere it my cue to fight, I should have known it\nWithout a prompter. Where will you that I go\nTo answer this your charge?\n\nBRABANTIO:\nTo prison, till fit time\nOf law and course of direct session\nCall thee to answer.\n\nOTHELLO:\nWhat if I do obey?\nHow may the duke be therewith satisfied,\nWhose messengers are here about my side,\nUpon some present business of the state\nTo bring me to him?\n\nFirst Officer:\n'Tis true, most worthy signior;\nThe duke's in council and your noble self,\nI am sure, is sent for.\n\nBRABANTIO:\nHow! the duke in council!\nIn this time of the night! Bring him away:\nMine's not an idle cause: the duke himself,\nOr any of my brothers of the state,\nCannot but feel this wrong as 'twere their own;\nFor if such actions may have passage free,\nBond-slaves and pagans shall our statesmen be.\n\nDUKE OF VENICE:\nThere is no composition in these news\nThat gives them credit.\n\nFirst Senator:\nIndeed, they are disproportion'd;\nMy letters say a hundred and seven galleys.\n\nDUKE OF VENICE:\nAnd mine, a hundred and forty.\n\nSecond Senator:\nAnd mine, two hundred:\nBut though they jump not on a just account,--\nAs in these cases, where the aim reports,\n'Tis oft with difference--yet do they all confirm\nA Turkish fleet, and bearing up to Cyprus.\n\nDUKE OF VENICE:\nNay, it is possible enough to judgment:\nI do not so secure me in the error,\nBut the main article I do approve\nIn fearful sense.\n\nSailor:\n\nFirst Officer:\nA messenger from the galleys.\n\nDUKE OF VENICE:\nNow, what's the business?\n\nSailor:\nThe Turkish preparation makes for Rhodes;\nSo was I bid report here to the state\nBy Signior Angelo.\n\nDUKE OF VENICE:\nHow say you by this change?\n\nFirst Senator:\nThis cannot be,\nBy no assay of reason: 'tis a pageant,\nTo keep us in false gaze. When we consider\nThe importancy of Cyprus to the Turk,\nAnd let ourselves again but understand,\nThat as it more concerns the Turk than Rhodes,\nSo may he with more facile question bear it,\nFor that it stands not in such warlike brace,\nBut altogether lacks the abilities\nThat Rhodes is dress'd in: if we make thought of this,\nWe must not think the Turk is so unskilful\nTo leave that latest which concerns him first,\nNeglecting an attempt of ease and gain,\nTo wake and wage a danger profitless.\n\nDUKE OF VENICE:\nNay, in all confidence, he's not for Rhodes.\n\nFirst Officer:\nHere is more news.\n\nMessenger:\nThe Ottomites, reverend and gracious,\nSteering with due course towards the isle of Rhodes,\nHave there injointed them with an after fleet.\n\nFirst Senator:\nAy, so I thought. How many, as you guess?\n\nMessenger:\nOf thirty sail: and now they do restem\nTheir backward course, bearing with frank appearance\nTheir purposes toward Cyprus. Signior Montano,\nYour trusty and most valiant servitor,\nWith his free duty recommends you thus,\nAnd prays you to believe him.\n\nDUKE OF VENICE:\n'Tis certain, then, for Cyprus.\nMarcus Luccicos, is not he in town?\n\nFirst Senator:\nHe's now in Florence.\n\nDUKE OF VENICE:\nWrite from us to him; post-post-haste dispatch.\n\nFirst Senator:\nHere comes Brabantio and the valiant Moor.\n\nDUKE OF VENICE:\nValiant Othello, we must straight employ you\nAgainst the general enemy Ottoman.\nI did not see you; welcome, gentle signior;\nWe lack'd your counsel and your help tonight.\n\nBRABANTIO:\nSo did I yours. Good your grace, pardon me;\nNeither my place nor aught I heard of business\nHath raised me from my bed, nor doth the general care\nTake hold on me, for my particular grief\nIs of so flood-gate and o'erbearing nature\nThat it engluts and swallows other sorrows\nAnd it is still itself.\n\nDUKE OF VENICE:\nWhy, what's the matter?\n\nBRABANTIO:\nMy daughter! O, my daughter!\n\nDUKE OF VENICE:\nDead?\n\nBRABANTIO:\nAy, to me;\nShe is abused, stol'n from me, and corrupted\nBy spells and medicines bought of mountebanks;\nFor nature so preposterously to err,\nBeing not deficient, blind, or lame of sense,\nSans witchcraft could not.\n\nDUKE OF VENICE:\nWhoe'er he be that in this foul proceeding\nHath thus beguiled your daughter of herself\nAnd you of her, the bloody book of law\nYou shall yourself read in the bitter letter\nAfter your own sense, yea, though our proper son\nStood in your action.\n\nBRABANTIO:\nHumbly I thank your grace.\nHere is the man, this Moor, whom now, it seems,\nYour special mandate for the state-affairs\nHath hither brought.\n\nDUKE OF VENICE:\nWe are very sorry for't.\n\nDUKE OF VENICE:\n\nBRABANTIO:\nNothing, but this is so.\n\nOTHELLO:\nMost potent, grave, and reverend signiors,\nMy very noble and approved good masters,\nThat I have ta'en away this old man's daughter,\nIt is most true; true, I have married her:\nThe very head and front of my offending\nHath this extent, no more. Rude am I in my speech,\nAnd little bless'd with the soft phrase of peace:\nFor since these arms of mine had seven years' pith,\nTill now some nine moons wasted, they have used\nTheir dearest action in the tented field,\nAnd little of this great world can I speak,\nMore than pertains to feats of broil and battle,\nAnd therefore little shall I grace my cause\nIn speaking for myself. Yet, by your gracious patience,\nI will a round unvarnish'd tale deliver\nOf my whole course of love; what drugs, what charms,\nWhat conjuration and what mighty magic,\nFor such proceeding I am charged withal,\nI won his daughter.\n\nBRABANTIO:\nA maiden never bold;\nOf spirit so still and quiet, that her motion\nBlush'd at herself; and she, in spite of nature,\nOf years, of country, credit, every thing,\nTo fall in love with what she fear'd to look on!\nIt is a judgment maim'd and most imperfect\nThat will confess perfection so could err\nAgainst all rules of nature, and must be driven\nTo find out practises of cunning hell,\nWhy this should be. I therefore vouch again\nThat with some mixtures powerful o'er the blood,\nOr with some dram conjured to this effect,\nHe wrought upon her.\n\nDUKE OF VENICE:\nTo vouch this, is no proof,\nWithout more wider and more overt test\nThan these thin habits and poor likelihoods\nOf modern seeming do prefer against him.\n\nFirst Senator:\nBut, Othello, speak:\nDid you by indirect and forced courses\nSubdue and poison this young maid's affections?\nOr came it by request and such fair question\nAs soul to soul affordeth?\n\nOTHELLO:\nI do beseech you,\nSend for the lady to the Sagittary,\nAnd let her speak of me before her father:\nIf you do find me foul in her report,\nThe trust, the office I do hold of you,\nNot only take away, but let your sentence\nEven fall upon my life.\n\nDUKE OF VENICE:\nFetch Desdemona hither.\n\nOTHELLO:\nAncient, conduct them: you best know the place.\nAnd, till she come, as truly as to heaven\nI do confess the vices of my blood,\nSo justly to your grave ears I'll present\nHow I did thrive in this fair lady's love,\nAnd she in mine.\n\nDUKE OF VENICE:\nSay it, Othello.\n\nOTHELLO:\nHer father loved me; oft invited me;\nStill question'd me the story of my life,\nFrom year to year, the battles, sieges, fortunes,\nThat I have passed.\nI ran it through, even from my boyish days,\nTo the very moment that he bade me tell it;\nWherein I spake of most disastrous chances,\nOf moving accidents by flood and field\nOf hair-breadth scapes i' the imminent deadly breach,\nOf being taken by the insolent foe\nAnd sold to slavery, of my redemption thence\nAnd portance in my travels' history:\nWherein of antres vast and deserts idle,\nRough quarries, rocks and hills whose heads touch heaven\nIt was my hint to speak,--such was the process;\nAnd of the Cannibals that each other eat,\nThe Anthropophagi and men whose heads\nDo grow beneath their shoulders. This to hear\nWould Desdemona seriously incline:\nBut still the house-affairs would draw her thence:\nWhich ever as she could with haste dispatch,\nShe'ld come again, and with a greedy ear\nDevour up my discourse: which I observing,\nTook once a pliant hour, and found good means\nTo draw from her a prayer of earnest heart\nThat I would all my pilgrimage dilate,\nWhereof by parcels she had something heard,\nBut not intentively: I did consent,\nAnd often did beguile her of her tears,\nWhen I did speak of some distressful stroke\nThat my youth suffer'd. My story being done,\nShe gave me for my pains a world of sighs:\nShe swore, in faith, twas strange, 'twas passing strange,\n'Twas pitiful, 'twas wondrous pitiful:\nShe wish'd she had not heard it, yet she wish'd\nThat heaven had made her such a man: she thank'd me,\nAnd bade me, if I had a friend that loved her,\nI should but teach him how to tell my story.\nAnd that would woo her. Upon this hint I spake:\nShe loved me for the dangers I had pass'd,\nAnd I loved her that she did pity them.\nThis only is the witchcraft I have used:\nHere comes the lady; let her witness it.\n\nDUKE OF VENICE:\nI think this tale would win my daughter too.\nGood Brabantio,\nTake up this mangled matter at the best:\nMen do their broken weapons rather use\nThan their bare hands.\n\nBRABANTIO:\nI pray you, hear her speak:\nIf she confess that she was half the wooer,\nDestruction on my head, if my bad blame\nLight on the man! Come hither, gentle mistress:\nDo you perceive in all this noble company\nWhere most you owe obedience?\n\nDESDEMONA:\nMy noble father,\nI do perceive here a divided duty:\nTo you I am bound for life and education;\nMy life and education both do learn me\nHow to respect you; you are the lord of duty;\nI am hitherto your daughter: but here's my husband,\nAnd so much duty as my mother show'd\nTo you, preferring you before her father,\nSo much I challenge that I may profess\nDue to the Moor my lord.\n\nBRABANTIO:\nGod be wi' you! I have done.\nPlease it your grace, on to the state-affairs:\nI had rather to adopt a child than get it.\nCome hither, Moor:\nI here do give thee that with all my heart\nWhich, but thou hast already, with all my heart\nI would keep from thee. For your sake, jewel,\nI am glad at soul I have no other child:\nFor thy escape would teach me tyranny,\nTo hang clogs on them. I have done, my lord.\n\nDUKE OF VENICE:\nLet me speak like yourself, and lay a sentence,\nWhich, as a grise or step, may help these lovers\nInto your favour.\nWhen remedies are past, the griefs are ended\nBy seeing the worst, which late on hopes depended.\nTo mourn a mischief that is past and gone\nIs the next way to draw new mischief on.\nWhat cannot be preserved when fortune takes\nPatience her injury a mockery makes.\nThe robb'd that smiles steals something from the thief;\nHe robs himself that spends a bootless grief.\n\nBRABANTIO:\nSo let the Turk of Cyprus us beguile;\nWe lose it not, so long as we can smile.\nHe bears the sentence well that nothing bears\nBut the free comfort which from thence he hears,\nBut he bears both the sentence and the sorrow\nThat, to pay grief, must of poor patience borrow.\nThese sentences, to sugar, or to gall,\nBeing strong on both sides, are equivocal:\nBut words are words; I never yet did hear\nThat the bruised heart was pierced through the ear.\nI humbly beseech you, proceed to the affairs of state.\n\nDUKE OF VENICE:\nThe Turk with a most mighty preparation makes for\nCyprus. Othello, the fortitude of the place is best\nknown to you; and though we have there a substitute\nof most allowed sufficiency, yet opinion, a\nsovereign mistress of effects, throws a more safer\nvoice on you: you must therefore be content to\nslubber the gloss of your new fortunes with this\nmore stubborn and boisterous expedition.\n\nOTHELLO:\nThe tyrant custom, most grave senators,\nHath made the flinty and steel couch of war\nMy thrice-driven bed of down: I do agnise\nA natural and prompt alacrity\nI find in hardness, and do undertake\nThese present wars against the Ottomites.\nMost humbly therefore bending to your state,\nI crave fit disposition for my wife.\nDue reference of place and exhibition,\nWith such accommodation and besort\nAs levels with her breeding.\n\nDUKE OF VENICE:\nIf you please,\nBe't at her father's.\n\nBRABANTIO:\nI'll not have it so.\n\nOTHELLO:\nNor I.\n\nDESDEMONA:\nNor I; I would not there reside,\nTo put my father in impatient thoughts\nBy being in his eye. Most gracious duke,\nTo my unfolding lend your prosperous ear;\nAnd let me find a charter in your voice,\nTo assist my simpleness.\n\nDUKE OF VENICE:\nWhat would You, Desdemona?\n\nDESDEMONA:\nThat I did love the Moor to live with him,\nMy downright violence and storm of fortunes\nMay trumpet to the world: my heart's subdued\nEven to the very quality of my lord:\nI saw Othello's visage in his mind,\nAnd to his honour and his valiant parts\nDid I my soul and fortunes consecrate.\nSo that, dear lords, if I be left behind,\nA moth of peace, and he go to the war,\nThe rites for which I love him are bereft me,\nAnd I a heavy interim shall support\nBy his dear absence. Let me go with him.\n\nOTHELLO:\nLet her have your voices.\nVouch with me, heaven, I therefore beg it not,\nTo please the palate of my appetite,\nNor to comply with heat--the young affects\nIn me defunct--and proper satisfaction.\nBut to be free and bounteous to her mind:\nAnd heaven defend your good souls, that you think\nI will your serious and great business scant\nFor she is with me: no, when light-wing'd toys\nOf feather'd Cupid seal with wanton dullness\nMy speculative and officed instruments,\nThat my disports corrupt and taint my business,\nLet housewives make a skillet of my helm,\nAnd all indign and base adversities\nMake head against my estimation!\n\nDUKE OF VENICE:\nBe it as you shall privately determine,\nEither for her stay or going: the affair cries haste,\nAnd speed must answer it.\n\nFirst Senator:\nYou must away to-night.\n\nOTHELLO:\nWith all my heart.\n\nDUKE OF VENICE:\nAt nine i' the morning here we'll meet again.\nOthello, leave some officer behind,\nAnd he shall our commission bring to you;\nWith such things else of quality and respect\nAs doth import you.\n\nOTHELLO:\nSo please your grace, my ancient;\nA man he is of honest and trust:\nTo his conveyance I assign my wife,\nWith what else needful your good grace shall think\nTo be sent after me.\n\nDUKE OF VENICE:\nLet it be so.\nGood night to every one.\nAnd, noble signior,\nIf virtue no delighted beauty lack,\nYour son-in-law is far more fair than black.\n\nFirst Senator:\nAdieu, brave Moor, use Desdemona well.\n\nBRABANTIO:\nLook to her, Moor, if thou hast eyes to see:\nShe has deceived her father, and may thee.\n\nOTHELLO:\nMy life upon her faith! Honest Iago,\nMy Desdemona must I leave to thee:\nI prithee, let thy wife attend on her:\nAnd bring them after in the best advantage.\nCome, Desdemona: I have but an hour\nOf love, of worldly matters and direction,\nTo spend with thee: we must obey the time.\n\nRODERIGO:\nIago,--\n\nIAGO:\nWhat say'st thou, noble heart?\n\nRODERIGO:\nWhat will I do, thinkest thou?\n\nIAGO:\nWhy, go to bed, and sleep.\n\nRODERIGO:\nI will incontinently drown myself.\n\nIAGO:\nIf thou dost, I shall never love thee after. Why,\nthou silly gentleman!\n\nRODERIGO:\nIt is silliness to live when to live is torment; and\nthen have we a prescription to die when death is our physician.\n\nIAGO:\nO villainous! I have looked upon the world for four\ntimes seven years; and since I could distinguish\nbetwixt a benefit and an injury, I never found man\nthat knew how to love himself. Ere I would say, I\nwould drown myself for the love of a guinea-hen, I\nwould change my humanity with a baboon.\n\nRODERIGO:\nWhat should I do? I confess it is my shame to be so\nfond; but it is not in my virtue to amend it.\n\nIAGO:\nVirtue! a fig! 'tis in ourselves that we are thus\nor thus. Our bodies are our gardens, to the which\nour wills are gardeners: so that if we will plant\nnettles, or sow lettuce, set hyssop and weed up\nthyme, supply it with one gender of herbs, or\ndistract it with many, either to have it sterile\nwith idleness, or manured with industry, why, the\npower and corrigible authority of this lies in our\nwills. If the balance of our lives had not one\nscale of reason to poise another of sensuality, the\nblood and baseness of our natures would conduct us\nto most preposterous conclusions: but we have\nreason to cool our raging motions, our carnal\nstings, our unbitted lusts, whereof I take this that\nyou call love to be a sect or scion.\n\nRODERIGO:\nIt cannot be.\n\nIAGO:\nIt is merely a lust of the blood and a permission of\nthe will. Come, be a man. Drown thyself! drown\ncats and blind puppies. I have professed me thy\nfriend and I confess me knit to thy deserving with\ncables of perdurable toughness; I could never\nbetter stead thee than now. Put money in thy\npurse; follow thou the wars; defeat thy favour with\nan usurped beard; I say, put money in thy purse. It\ncannot be that Desdemona should long continue her\nlove to the Moor,-- put money in thy purse,--nor he\nhis to her: it was a violent commencement, and thou\nshalt see an answerable sequestration:--put but\nmoney in thy purse. These Moors are changeable in\ntheir wills: fill thy purse with money:--the food\nthat to him now is as luscious as locusts, shall be\nto him shortly as bitter as coloquintida. She must\nchange for youth: when she is sated with his body,\nshe will find the error of her choice: she must\nhave change, she must: therefore put money in thy\npurse. If thou wilt needs damn thyself, do it a\nmore delicate way than drowning. Make all the money\nthou canst: if sanctimony and a frail vow betwixt\nan erring barbarian and a supersubtle Venetian not\ntoo hard for my wits and all the tribe of hell, thou\nshalt enjoy her; therefore make money. A pox of\ndrowning thyself! it is clean out of the way: seek\nthou rather to be hanged in compassing thy joy than\nto be drowned and go without her.\n\nRODERIGO:\nWilt thou be fast to my hopes, if I depend on\nthe issue?\n\nIAGO:\nThou art sure of me:--go, make money:--I have told\nthee often, and I re-tell thee again and again, I\nhate the Moor: my cause is hearted; thine hath no\nless reason. Let us be conjunctive in our revenge\nagainst him: if thou canst cuckold him, thou dost\nthyself a pleasure, me a sport. There are many\nevents in the womb of time which will be delivered.\nTraverse! go, provide thy money. We will have more\nof this to-morrow. Adieu.\n\nRODERIGO:\nWhere shall we meet i' the morning?\n\nIAGO:\nAt my lodging.\n\nRODERIGO:\nI'll be with thee betimes.\n\nIAGO:\nGo to; farewell. Do you hear, Roderigo?\n\nRODERIGO:\nWhat say you?\n\nIAGO:\nNo more of drowning, do you hear?\n\nRODERIGO:\nI am changed: I'll go sell all my land.\n\nIAGO:\nThus do I ever make my fool my purse:\nFor I mine own gain'd knowledge should profane,\nIf I would time expend with such a snipe.\nBut for my sport and profit. I hate the Moor:\nAnd it is thought abroad, that 'twixt my sheets\nHe has done my office: I know not if't be true;\nBut I, for mere suspicion in that kind,\nWill do as if for surety. He holds me well;\nThe better shall my purpose work on him.\nCassio's a proper man: let me see now:\nTo get his place and to plume up my will\nIn double knavery--How, how? Let's see:--\nAfter some time, to abuse Othello's ear\nThat he is too familiar with his wife.\nHe hath a person and a smooth dispose\nTo be suspected, framed to make women false.\nThe Moor is of a free and open nature,\nThat thinks men honest that but seem to be so,\nAnd will as tenderly be led by the nose\nAs asses are.\nI have't. It is engender'd. Hell and night\nMust bring this monstrous birth to the world's light.\n\nMONTANO:\nWhat from the cape can you discern at sea?\n\nFirst Gentleman:\nNothing at all: it is a highwrought flood;\nI cannot, 'twixt the heaven and the main,\nDescry a sail.\n\nMONTANO:\nMethinks the wind hath spoke aloud at land;\nA fuller blast ne'er shook our battlements:\nIf it hath ruffian'd so upon the sea,\nWhat ribs of oak, when mountains melt on them,\nCan hold the mortise? What shall we hear of this?\n\nSecond Gentleman:\nA segregation of the Turkish fleet:\nFor do but stand upon the foaming shore,\nThe chidden billow seems to pelt the clouds;\nThe wind-shaked surge, with high and monstrous mane,\nseems to cast water on the burning bear,\nAnd quench the guards of the ever-fixed pole:\nI never did like molestation view\nOn the enchafed flood.\n\nMONTANO:\nIf that the Turkish fleet\nBe not enshelter'd and embay'd, they are drown'd:\nIt is impossible they bear it out.\n\nThird Gentleman:\nNews, lads! our wars are done.\nThe desperate tempest hath so bang'd the Turks,\nThat their designment halts: a noble ship of Venice\nHath seen a grievous wreck and sufferance\nOn most part of their fleet.\n\nMONTANO:\nHow! is this true?\n\nThird Gentleman:\nThe ship is here put in,\nA Veronesa; Michael Cassio,\nLieutenant to the warlike Moor Othello,\nIs come on shore: the Moor himself at sea,\nAnd is in full commission here for Cyprus.\n\nMONTANO:\nI am glad on't; 'tis a worthy governor.\n\nThird Gentleman:\nBut this same Cassio, though he speak of comfort\nTouching the Turkish loss, yet he looks sadly,\nAnd prays the Moor be safe; for they were parted\nWith foul and violent tempest.\n\nMONTANO:\nPray heavens he be;\nFor I have served him, and the man commands\nLike a full soldier. Let's to the seaside, ho!\nAs well to see the vessel that's come in\nAs to throw out our eyes for brave Othello,\nEven till we make the main and the aerial blue\nAn indistinct regard.\n\nThird Gentleman:\nCome, let's do so:\nFor every minute is expectancy\nOf more arrivance.\n\nCASSIO:\nThanks, you the valiant of this warlike isle,\nThat so approve the Moor! O, let the heavens\nGive him defence against the elements,\nFor I have lost us him on a dangerous sea.\n\nMONTANO:\nIs he well shipp'd?\n\nCASSIO:\nHis bark is stoutly timber'd, his pilot\nOf very expert and approved allowance;\nTherefore my hopes, not surfeited to death,\nStand in bold cure.\n\nCASSIO:\nWhat noise?\n\nFourth Gentleman:\nThe town is empty; on the brow o' the sea\nStand ranks of people, and they cry 'A sail!'\n\nCASSIO:\nMy hopes do shape him for the governor.\n\nSecond Gentlemen:\nThey do discharge their shot of courtesy:\nOur friends at least.\n\nCASSIO:\nI pray you, sir, go forth,\nAnd give us truth who 'tis that is arrived.\n\nSecond Gentleman:\nI shall.\n\nMONTANO:\nBut, good lieutenant, is your general wived?\n\nCASSIO:\nMost fortunately: he hath achieved a maid\nThat paragons description and wild fame;\nOne that excels the quirks of blazoning pens,\nAnd in the essential vesture of creation\nDoes tire the ingener.\nHow now! who has put in?\n\nSecond Gentleman:\n'Tis one Iago, ancient to the general.\n\nCASSIO:\nHas had most favourable and happy speed:\nTempests themselves, high seas, and howling winds,\nThe gutter'd rocks and congregated sands--\nTraitors ensteep'd to clog the guiltless keel,--\nAs having sense of beauty, do omit\nTheir mortal natures, letting go safely by\nThe divine Desdemona.\n\nMONTANO:\nWhat is she?\n\nCASSIO:\nShe that I spake of, our great captain's captain,\nLeft in the conduct of the bold Iago,\nWhose footing here anticipates our thoughts\nA se'nnight's speed. Great Jove, Othello guard,\nAnd swell his sail with thine own powerful breath,\nThat he may bless this bay with his tall ship,\nMake love's quick pants in Desdemona's arms,\nGive renew'd fire to our extincted spirits\nAnd bring all Cyprus comfort!\nO, behold,\nThe riches of the ship is come on shore!\nYe men of Cyprus, let her have your knees.\nHail to thee, lady! and the grace of heaven,\nBefore, behind thee, and on every hand,\nEnwheel thee round!\n\nDESDEMONA:\nI thank you, valiant Cassio.\nWhat tidings can you tell me of my lord?\n\nCASSIO:\nHe is not yet arrived: nor know I aught\nBut that he's well and will be shortly here.\n\nDESDEMONA:\nO, but I fear--How lost you company?\n\nCASSIO:\nThe great contention of the sea and skies\nParted our fellowship--But, hark! a sail.\n\nSecond Gentleman:\nThey give their greeting to the citadel;\nThis likewise is a friend.\n\nCASSIO:\nSee for the news.\nGood ancient, you are welcome.\nWelcome, mistress.\nLet it not gall your patience, good Iago,\nThat I extend my manners; 'tis my breeding\nThat gives me this bold show of courtesy.\n\nIAGO:\nSir, would she give you so much of her lips\nAs of her tongue she oft bestows on me,\nYou'll have enough.\n\nDESDEMONA:\nAlas, she has no speech.\n\nIAGO:\nIn faith, too much;\nI find it still, when I have list to sleep:\nMarry, before your ladyship, I grant,\nShe puts her tongue a little in her heart,\nAnd chides with thinking.\n\nEMILIA:\nYou have little cause to say so.\n\nIAGO:\nCome on, come on; you are pictures out of doors,\nBells in your parlors, wild-cats in your kitchens,\nSaints m your injuries, devils being offended,\nPlayers in your housewifery, and housewives' in your beds.\n\nDESDEMONA:\nO, fie upon thee, slanderer!\n\nIAGO:\nNay, it is true, or else I am a Turk:\nYou rise to play and go to bed to work.\n\nEMILIA:\nYou shall not write my praise.\n\nIAGO:\nNo, let me not.\n\nDESDEMONA:\nWhat wouldst thou write of me, if thou shouldst\npraise me?\n\nIAGO:\nO gentle lady, do not put me to't;\nFor I am nothing, if not critical.\n\nDESDEMONA:\nCome on assay. There's one gone to the harbour?\n\nIAGO:\nAy, madam.\n\nDESDEMONA:\nI am not merry; but I do beguile\nThe thing I am, by seeming otherwise.\nCome, how wouldst thou praise me?\n\nIAGO:\nI am about it; but indeed my invention\nComes from my pate as birdlime does from frize;\nIt plucks out brains and all: but my Muse labours,\nAnd thus she is deliver'd.\nIf she be fair and wise, fairness and wit,\nThe one's for use, the other useth it.\n\nDESDEMONA:\nWell praised! How if she be black and witty?\n\nIAGO:\nIf she be black, and thereto have a wit,\nShe'll find a white that shall her blackness fit.\n\nDESDEMONA:\nWorse and worse.\n\nEMILIA:\nHow if fair and foolish?\n\nIAGO:\nShe never yet was foolish that was fair;\nFor even her folly help'd her to an heir.\n\nDESDEMONA:\nThese are old fond paradoxes to make fools laugh i'\nthe alehouse. What miserable praise hast thou for\nher that's foul and foolish?\n\nIAGO:\nThere's none so foul and foolish thereunto,\nBut does foul pranks which fair and wise ones do.\n\nDESDEMONA:\nO heavy ignorance! thou praisest the worst best.\nBut what praise couldst thou bestow on a deserving\nwoman indeed, one that, in the authority of her\nmerit, did justly put on the vouch of very malice itself?\n\nIAGO:\nShe that was ever fair and never proud,\nHad tongue at will and yet was never loud,\nNever lack'd gold and yet went never gay,\nFled from her wish and yet said 'Now I may,'\nShe that being anger'd, her revenge being nigh,\nBade her wrong stay and her displeasure fly,\nShe that in wisdom never was so frail\nTo change the cod's head for the salmon's tail;\nShe that could think and ne'er disclose her mind,\nSee suitors following and not look behind,\nShe was a wight, if ever such wight were,--\n\nDESDEMONA:\nTo do what?\n\nIAGO:\nTo suckle fools and chronicle small beer.\n\nDESDEMONA:\nO most lame and impotent conclusion! Do not learn\nof him, Emilia, though he be thy husband. How say\nyou, Cassio? is he not a most profane and liberal\ncounsellor?\n\nCASSIO:\nHe speaks home, madam: You may relish him more in\nthe soldier than in the scholar.\n\nIAGO:\n\nCASSIO:\n'Tis truly so.\n\nDESDEMONA:\nLet's meet him and receive him.\n\nCASSIO:\nLo, where he comes!\n\nOTHELLO:\nO my fair warrior!\n\nDESDEMONA:\nMy dear Othello!\n\nOTHELLO:\nIt gives me wonder great as my content\nTo see you here before me. O my soul's joy!\nIf after every tempest come such calms,\nMay the winds blow till they have waken'd death!\nAnd let the labouring bark climb hills of seas\nOlympus-high and duck again as low\nAs hell's from heaven! If it were now to die,\n'Twere now to be most happy; for, I fear,\nMy soul hath her content so absolute\nThat not another comfort like to this\nSucceeds in unknown fate.\n\nDESDEMONA:\nThe heavens forbid\nBut that our loves and comforts should increase,\nEven as our days do grow!\n\nOTHELLO:\nAmen to that, sweet powers!\nI cannot speak enough of this content;\nIt stops me here; it is too much of joy:\nAnd this, and this, the greatest discords be\nThat e'er our hearts shall make!\n\nIAGO:\n\nOTHELLO:\nCome, let us to the castle.\nNews, friends; our wars are done, the Turks\nare drown'd.\nHow does my old acquaintance of this isle?\nHoney, you shall be well desired in Cyprus;\nI have found great love amongst them. O my sweet,\nI prattle out of fashion, and I dote\nIn mine own comforts. I prithee, good Iago,\nGo to the bay and disembark my coffers:\nBring thou the master to the citadel;\nHe is a good one, and his worthiness\nDoes challenge much respect. Come, Desdemona,\nOnce more, well met at Cyprus.\n\nIAGO:\nDo thou meet me presently at the harbour. Come\nhither. If thou be'st valiant,-- as, they say, base\nmen being in love have then a nobility in their\nnatures more than is native to them--list me. The\nlieutenant tonight watches on the court of\nguard:--first, I must tell thee this--Desdemona is\ndirectly in love with him.\n\nRODERIGO:\nWith him! why, 'tis not possible.\n\nIAGO:\nLay thy finger thus, and let thy soul be instructed.\nMark me with what violence she first loved the Moor,\nbut for bragging and telling her fantastical lies:\nand will she love him still for prating? let not\nthy discreet heart think it. Her eye must be fed;\nand what delight shall she have to look on the\ndevil? When the blood is made dull with the act of\nsport, there should be, again to inflame it and to\ngive satiety a fresh appetite, loveliness in favour,\nsympathy in years, manners and beauties; all which\nthe Moor is defective in: now, for want of these\nrequired conveniences, her delicate tenderness will\nfind itself abused, begin to heave the gorge,\ndisrelish and abhor the Moor; very nature will\ninstruct her in it and compel her to some second\nchoice. Now, sir, this granted,--as it is a most\npregnant and unforced position--who stands so\neminent in the degree of this fortune as Cassio\ndoes? a knave very voluble; no further\nconscionable than in putting on the mere form of\ncivil and humane seeming, for the better compassing\nof his salt and most hidden loose affection? why,\nnone; why, none: a slipper and subtle knave, a\nfinder of occasions, that has an eye can stamp and\ncounterfeit advantages, though true advantage never\npresent itself; a devilish knave. Besides, the\nknave is handsome, young, and hath all those\nrequisites in him that folly and green minds look\nafter: a pestilent complete knave; and the woman\nhath found him already.\n\nRODERIGO:\nI cannot believe that in her; she's full of\nmost blessed condition.\n\nIAGO:\nBlessed fig's-end! the wine she drinks is made of\ngrapes: if she had been blessed, she would never\nhave loved the Moor. Blessed pudding! Didst thou\nnot see her paddle with the palm of his hand? didst\nnot mark that?\n\nRODERIGO:\nYes, that I did; but that was but courtesy.\n\nIAGO:\nLechery, by this hand; an index and obscure prologue\nto the history of lust and foul thoughts. They met\nso near with their lips that their breaths embraced\ntogether. Villanous thoughts, Roderigo! when these\nmutualities so marshal the way, hard at hand comes\nthe master and main exercise, the incorporate\nconclusion, Pish! But, sir, be you ruled by me: I\nhave brought you from Venice. Watch you to-night;\nfor the command, I'll lay't upon you. Cassio knows\nyou not. I'll not be far from you: do you find\nsome occasion to anger Cassio, either by speaking\ntoo loud, or tainting his discipline; or from what\nother course you please, which the time shall more\nfavourably minister.\n\nRODERIGO:\nWell.\n\nIAGO:\nSir, he is rash and very sudden in choler, and haply\nmay strike at you: provoke him, that he may; for\neven out of that will I cause these of Cyprus to\nmutiny; whose qualification shall come into no true\ntaste again but by the displanting of Cassio. So\nshall you have a shorter journey to your desires by\nthe means I shall then have to prefer them; and the\nimpediment most profitably removed, without the\nwhich there were no expectation of our prosperity.\n\nRODERIGO:\nI will do this, if I can bring it to any\nopportunity.\n\nIAGO:\nI warrant thee. Meet me by and by at the citadel:\nI must fetch his necessaries ashore. Farewell.\n\nRODERIGO:\nAdieu.\n\nIAGO:\nThat Cassio loves her, I do well believe it;\nThat she loves him, 'tis apt and of great credit:\nThe Moor, howbeit that I endure him not,\nIs of a constant, loving, noble nature,\nAnd I dare think he'll prove to Desdemona\nA most dear husband. Now, I do love her too;\nNot out of absolute lust, though peradventure\nI stand accountant for as great a sin,\nBut partly led to diet my revenge,\nFor that I do suspect the lusty Moor\nHath leap'd into my seat; the thought whereof\nDoth, like a poisonous mineral, gnaw my inwards;\nAnd nothing can or shall content my soul\nTill I am even'd with him, wife for wife,\nOr failing so, yet that I put the Moor\nAt least into a jealousy so strong\nThat judgment cannot cure. Which thing to do,\nIf this poor trash of Venice, whom I trash\nFor his quick hunting, stand the putting on,\nI'll have our Michael Cassio on the hip,\nAbuse him to the Moor in the rank garb--\nFor I fear Cassio with my night-cap too--\nMake the Moor thank me, love me and reward me.\nFor making him egregiously an ass\nAnd practising upon his peace and quiet\nEven to madness. 'Tis here, but yet confused:\nKnavery's plain face is never seen tin used.\n\nHerald:\nIt is Othello's pleasure, our noble and valiant\ngeneral, that, upon certain tidings now arrived,\nimporting the mere perdition of the Turkish fleet,\nevery man put himself into triumph; some to dance,\nsome to make bonfires, each man to what sport and\nrevels his addiction leads him: for, besides these\nbeneficial news, it is the celebration of his\nnuptial. So much was his pleasure should be\nproclaimed. All offices are open, and there is full\nliberty of feasting from this present hour of five\ntill the bell have told eleven. Heaven bless the\nisle of Cyprus and our noble general Othello!\n\nOTHELLO:\nGood Michael, look you to the guard to-night:\nLet's teach ourselves that honourable stop,\nNot to outsport discretion.\n\nCASSIO:\nIago hath direction what to do;\nBut, notwithstanding, with my personal eye\nWill I look to't.\n\nOTHELLO:\nIago is most honest.\nMichael, good night: to-morrow with your earliest\nLet me have speech with you.\nCome, my dear love,\nThe purchase made, the fruits are to ensue;\nThat profit's yet to come 'tween me and you.\nGood night.\n\nCASSIO:\nWelcome, Iago; we must to the watch.\n\nIAGO:\nNot this hour, lieutenant; 'tis not yet ten o' the\nclock. Our general cast us thus early for the love\nof his Desdemona; who let us not therefore blame:\nhe hath not yet made wanton the night with her; and\nshe is sport for Jove.\n\nCASSIO:\nShe's a most exquisite lady.\n\nIAGO:\nAnd, I'll warrant her, fun of game.\n\nCASSIO:\nIndeed, she's a most fresh and delicate creature.\n\nIAGO:\nWhat an eye she has! methinks it sounds a parley of\nprovocation.\n\nCASSIO:\nAn inviting eye; and yet methinks right modest.\n\nIAGO:\nAnd when she speaks, is it not an alarum to love?\n\nCASSIO:\nShe is indeed perfection.\n\nIAGO:\nWell, happiness to their sheets! Come, lieutenant, I\nhave a stoup of wine; and here without are a brace\nof Cyprus gallants that would fain have a measure to\nthe health of black Othello.\n\nCASSIO:\nNot to-night, good Iago: I have very poor and\nunhappy brains for drinking: I could well wish\ncourtesy would invent some other custom of\nentertainment.\n\nIAGO:\nO, they are our friends; but one cup: I'll drink for\nyou.\n\nCASSIO:\nI have drunk but one cup to-night, and that was\ncraftily qualified too, and, behold, what innovation\nit makes here: I am unfortunate in the infirmity,\nand dare not task my weakness with any more.\n\nIAGO:\nWhat, man! 'tis a night of revels: the gallants\ndesire it.\n\nCASSIO:\nWhere are they?\n\nIAGO:\nHere at the door; I pray you, call them in.\n\nCASSIO:\nI'll do't; but it dislikes me.\n\nIAGO:\nIf I can fasten but one cup upon him,\nWith that which he hath drunk to-night already,\nHe'll be as full of quarrel and offence\nAs my young mistress' dog. Now, my sick fool Roderigo,\nWhom love hath turn'd almost the wrong side out,\nTo Desdemona hath to-night caroused\nPotations pottle-deep; and he's to watch:\nThree lads of Cyprus, noble swelling spirits,\nThat hold their honours in a wary distance,\nThe very elements of this warlike isle,\nHave I to-night fluster'd with flowing cups,\nAnd they watch too. Now, 'mongst this flock of drunkards,\nAm I to put our Cassio in some action\nThat may offend the isle.--But here they come:\nIf consequence do but approve my dream,\nMy boat sails freely, both with wind and stream.\n\nCASSIO:\n'Fore God, they have given me a rouse already.\n\nMONTANO:\nGood faith, a little one; not past a pint, as I am\na soldier.\n\nIAGO:\nSome wine, ho!\nAnd let me the canakin clink, clink;\nAnd let me the canakin clink\nA soldier's a man;\nA life's but a span;\nWhy, then, let a soldier drink.\nSome wine, boys!\n\nCASSIO:\n'Fore God, an excellent song.\n\nIAGO:\nI learned it in England, where, indeed, they are\nmost potent in potting: your Dane, your German, and\nyour swag-bellied Hollander--Drink, ho!--are nothing\nto your English.\n\nCASSIO:\nIs your Englishman so expert in his drinking?\n\nIAGO:\nWhy, he drinks you, with facility, your Dane dead\ndrunk; he sweats not to overthrow your Almain; he\ngives your Hollander a vomit, ere the next pottle\ncan be filled.\n\nCASSIO:\nTo the health of our general!\n\nMONTANO:\nI am for it, lieutenant; and I'll do you justice.\n\nIAGO:\nO sweet England!\nKing Stephen was a worthy peer,\nHis breeches cost him but a crown;\nHe held them sixpence all too dear,\nWith that he call'd the tailor lown.\nHe was a wight of high renown,\nAnd thou art but of low degree:\n'Tis pride that pulls the country down;\nThen take thine auld cloak about thee.\nSome wine, ho!\n\nCASSIO:\nWhy, this is a more exquisite song than the other.\n\nIAGO:\nWill you hear't again?\n\nCASSIO:\nNo; for I hold him to be unworthy of his place that\ndoes those things. Well, God's above all; and there\nbe souls must be saved, and there be souls must not be saved.\n\nIAGO:\nIt's true, good lieutenant.\n\nCASSIO:\nFor mine own part,--no offence to the general, nor\nany man of quality,--I hope to be saved.\n\nIAGO:\nAnd so do I too, lieutenant.\n\nCASSIO:\nAy, but, by your leave, not before me; the\nlieutenant is to be saved before the ancient. Let's\nhave no more of this; let's to our affairs.--Forgive\nus our sins!--Gentlemen, let's look to our business.\nDo not think, gentlemen. I am drunk: this is my\nancient; this is my right hand, and this is my left:\nI am not drunk now; I can stand well enough, and\nspeak well enough.\n\nAll:\nExcellent well.\n\nCASSIO:\nWhy, very well then; you must not think then that I am drunk.\n\nMONTANO:\nTo the platform, masters; come, let's set the watch.\n\nIAGO:\nYou see this fellow that is gone before;\nHe is a soldier fit to stand by Caesar\nAnd give direction: and do but see his vice;\n'Tis to his virtue a just equinox,\nThe one as long as the other: 'tis pity of him.\nI fear the trust Othello puts him in.\nOn some odd time of his infirmity,\nWill shake this island.\n\nMONTANO:\nBut is he often thus?\n\nIAGO:\n'Tis evermore the prologue to his sleep:\nHe'll watch the horologe a double set,\nIf drink rock not his cradle.\n\nMONTANO:\nIt were well\nThe general were put in mind of it.\nPerhaps he sees it not; or his good nature\nPrizes the virtue that appears in Cassio,\nAnd looks not on his evils: is not this true?\n\nIAGO:\n\nMONTANO:\nAnd 'tis great pity that the noble Moor\nShould hazard such a place as his own second\nWith one of an ingraft infirmity:\nIt were an honest action to say\nSo to the Moor.\n\nIAGO:\nNot I, for this fair island:\nI do love Cassio well; and would do much\nTo cure him of this evil--But, hark! what noise?\n\nCASSIO:\nYou rogue! you rascal!\n\nMONTANO:\nWhat's the matter, lieutenant?\n\nCASSIO:\nA knave teach me my duty!\nI'll beat the knave into a twiggen bottle.\n\nRODERIGO:\nBeat me!\n\nCASSIO:\nDost thou prate, rogue?\n\nMONTANO:\nNay, good lieutenant;\nI pray you, sir, hold your hand.\n\nCASSIO:\nLet me go, sir,\nOr I'll knock you o'er the mazzard.\n\nMONTANO:\nCome, come,\nyou're drunk.\n\nCASSIO:\nDrunk!\n\nIAGO:\n\nOTHELLO:\nWhat is the matter here?\n\nMONTANO:\n'Zounds, I bleed still; I am hurt to the death.\n\nOTHELLO:\nHold, for your lives!\n\nIAGO:\nHold, ho! Lieutenant,--sir--Montano,--gentlemen,--\nHave you forgot all sense of place and duty?\nHold! the general speaks to you; hold, hold, for shame!\n\nOTHELLO:\nWhy, how now, ho! from whence ariseth this?\nAre we turn'd Turks, and to ourselves do that\nWhich heaven hath forbid the Ottomites?\nFor Christian shame, put by this barbarous brawl:\nHe that stirs next to carve for his own rage\nHolds his soul light; he dies upon his motion.\nSilence that dreadful bell: it frights the isle\nFrom her propriety. What is the matter, masters?\nHonest Iago, that look'st dead with grieving,\nSpeak, who began this? on thy love, I charge thee.\n\nIAGO:\nI do not know: friends all but now, even now,\nIn quarter, and in terms like bride and groom\nDevesting them for bed; and then, but now--\nAs if some planet had unwitted men--\nSwords out, and tilting one at other's breast,\nIn opposition bloody. I cannot speak\nAny beginning to this peevish odds;\nAnd would in action glorious I had lost\nThose legs that brought me to a part of it!\n\nOTHELLO:\nHow comes it, Michael, you are thus forgot?\n\nCASSIO:\nI pray you, pardon me; I cannot speak.\n\nOTHELLO:\nWorthy Montano, you were wont be civil;\nThe gravity and stillness of your youth\nThe world hath noted, and your name is great\nIn mouths of wisest censure: what's the matter,\nThat you unlace your reputation thus\nAnd spend your rich opinion for the name\nOf a night-brawler? give me answer to it.\n\nMONTANO:\nWorthy Othello, I am hurt to danger:\nYour officer, Iago, can inform you,--\nWhile I spare speech, which something now\noffends me,--\nOf all that I do know: nor know I aught\nBy me that's said or done amiss this night;\nUnless self-charity be sometimes a vice,\nAnd to defend ourselves it be a sin\nWhen violence assails us.\n\nOTHELLO:\nNow, by heaven,\nMy blood begins my safer guides to rule;\nAnd passion, having my best judgment collied,\nAssays to lead the way: if I once stir,\nOr do but lift this arm, the best of you\nShall sink in my rebuke. Give me to know\nHow this foul rout began, who set it on;\nAnd he that is approved in this offence,\nThough he had twinn'd with me, both at a birth,\nShall lose me. What! in a town of war,\nYet wild, the people's hearts brimful of fear,\nTo manage private and domestic quarrel,\nIn night, and on the court and guard of safety!\n'Tis monstrous. Iago, who began't?\n\nMONTANO:\nIf partially affined, or leagued in office,\nThou dost deliver more or less than truth,\nThou art no soldier.\n\nIAGO:\nTouch me not so near:\nI had rather have this tongue cut from my mouth\nThan it should do offence to Michael Cassio;\nYet, I persuade myself, to speak the truth\nShall nothing wrong him. Thus it is, general.\nMontano and myself being in speech,\nThere comes a fellow crying out for help:\nAnd Cassio following him with determined sword,\nTo execute upon him. Sir, this gentleman\nSteps in to Cassio, and entreats his pause:\nMyself the crying fellow did pursue,\nLest by his clamour--as it so fell out--\nThe town might fall in fright: he, swift of foot,\nOutran my purpose; and I return'd the rather\nFor that I heard the clink and fall of swords,\nAnd Cassio high in oath; which till to-night\nI ne'er might say before. When I came back--\nFor this was brief--I found them close together,\nAt blow and thrust; even as again they were\nWhen you yourself did part them.\nMore of this matter cannot I report:\nBut men are men; the best sometimes forget:\nThough Cassio did some little wrong to him,\nAs men in rage strike those that wish them best,\nYet surely Cassio, I believe, received\nFrom him that fled some strange indignity,\nWhich patience could not pass.\n\nOTHELLO:\nI know, Iago,\nThy honesty and love doth mince this matter,\nMaking it light to Cassio. Cassio, I love thee\nBut never more be officer of mine.\nLook, if my gentle love be not raised up!\nI'll make thee an example.\n\nDESDEMONA:\nWhat's the matter?\n\nOTHELLO:\nAll's well now, sweeting; come away to bed.\nSir, for your hurts, myself will be your surgeon:\nLead him off.\nIago, look with care about the town,\nAnd silence those whom this vile brawl distracted.\nCome, Desdemona: 'tis the soldiers' life\nTo have their balmy slumbers waked with strife.\n\nIAGO:\nWhat, are you hurt, lieutenant?\n\nCASSIO:\nAy, past all surgery.\n\nIAGO:\nMarry, heaven forbid!\n\nCASSIO:\nReputation, reputation, reputation! O, I have lost\nmy reputation! I have lost the immortal part of\nmyself, and what remains is bestial. My reputation,\nIago, my reputation!\n\nIAGO:\nAs I am an honest man, I thought you had received\nsome bodily wound; there is more sense in that than\nin reputation. Reputation is an idle and most false\nimposition: oft got without merit, and lost without\ndeserving: you have lost no reputation at all,\nunless you repute yourself such a loser. What, man!\nthere are ways to recover the general again: you\nare but now cast in his mood, a punishment more in\npolicy than in malice, even so as one would beat his\noffenceless dog to affright an imperious lion: sue\nto him again, and he's yours.\n\nCASSIO:\nI will rather sue to be despised than to deceive so\ngood a commander with so slight, so drunken, and so\nindiscreet an officer. Drunk? and speak parrot?\nand squabble? swagger? swear? and discourse\nfustian with one's own shadow? O thou invisible\nspirit of wine, if thou hast no name to be known by,\nlet us call thee devil!\n\nIAGO:\nWhat was he that you followed with your sword? What\nhad he done to you?\n\nCASSIO:\nI know not.\n\nIAGO:\nIs't possible?\n\nCASSIO:\nI remember a mass of things, but nothing distinctly;\na quarrel, but nothing wherefore. O God, that men\nshould put an enemy in their mouths to steal away\ntheir brains! that we should, with joy, pleasance\nrevel and applause, transform ourselves into beasts!\n\nIAGO:\nWhy, but you are now well enough: how came you thus\nrecovered?\n\nCASSIO:\nIt hath pleased the devil drunkenness to give place\nto the devil wrath; one unperfectness shows me\nanother, to make me frankly despise myself.\n\nIAGO:\nCome, you are too severe a moraler: as the time,\nthe place, and the condition of this country\nstands, I could heartily wish this had not befallen;\nbut, since it is as it is, mend it for your own good.\n\nCASSIO:\nI will ask him for my place again; he shall tell me\nI am a drunkard! Had I as many mouths as Hydra,\nsuch an answer would stop them all. To be now a\nsensible man, by and by a fool, and presently a\nbeast! O strange! Every inordinate cup is\nunblessed and the ingredient is a devil.\n\nIAGO:\nCome, come, good wine is a good familiar creature,\nif it be well used: exclaim no more against it.\nAnd, good lieutenant, I think you think I love you.\n\nCASSIO:\nI have well approved it, sir. I drunk!\n\nIAGO:\nYou or any man living may be drunk! at a time, man.\nI'll tell you what you shall do. Our general's wife\nis now the general: may say so in this respect, for\nthat he hath devoted and given up himself to the\ncontemplation, mark, and denotement of her parts and\ngraces: confess yourself freely to her; importune\nher help to put you in your place again: she is of\nso free, so kind, so apt, so blessed a disposition,\nshe holds it a vice in her goodness not to do more\nthan she is requested: this broken joint between\nyou and her husband entreat her to splinter; and, my\nfortunes against any lay worth naming, this\ncrack of your love shall grow stronger than it was before.\n\nCASSIO:\nYou advise me well.\n\nIAGO:\nI protest, in the sincerity of love and honest kindness.\n\nCASSIO:\nI think it freely; and betimes in the morning I will\nbeseech the virtuous Desdemona to undertake for me:\nI am desperate of my fortunes if they cheque me here.\n\nIAGO:\nYou are in the right. Good night, lieutenant; I\nmust to the watch.\n\nCASSIO:\nGood night, honest Iago.\n\nIAGO:\nAnd what's he then that says I play the villain?\nWhen this advice is free I give and honest,\nProbal to thinking and indeed the course\nTo win the Moor again? For 'tis most easy\nThe inclining Desdemona to subdue\nIn any honest suit: she's framed as fruitful\nAs the free elements. And then for her\nTo win the Moor--were't to renounce his baptism,\nAll seals and symbols of redeemed sin,\nHis soul is so enfetter'd to her love,\nThat she may make, unmake, do what she list,\nEven as her appetite shall play the god\nWith his weak function. How am I then a villain\nTo counsel Cassio to this parallel course,\nDirectly to his good? Divinity of hell!\nWhen devils will the blackest sins put on,\nThey do suggest at first with heavenly shows,\nAs I do now: for whiles this honest fool\nPlies Desdemona to repair his fortunes\nAnd she for him pleads strongly to the Moor,\nI'll pour this pestilence into his ear,\nThat she repeals him for her body's lust;\nAnd by how much she strives to do him good,\nShe shall undo her credit with the Moor.\nSo will I turn her virtue into pitch,\nAnd out of her own goodness make the net\nThat shall enmesh them all.\nHow now, Roderigo!\n\nRODERIGO:\nI do follow here in the chase, not like a hound that\nhunts, but one that fills up the cry. My money is\nalmost spent; I have been to-night exceedingly well\ncudgelled; and I think the issue will be, I shall\nhave so much experience for my pains, and so, with\nno money at all and a little more wit, return again to Venice.\n\nIAGO:\nHow poor are they that have not patience!\nWhat wound did ever heal but by degrees?\nThou know'st we work by wit, and not by witchcraft;\nAnd wit depends on dilatory time.\nDoes't not go well? Cassio hath beaten thee.\nAnd thou, by that small hurt, hast cashier'd Cassio:\nThough other things grow fair against the sun,\nYet fruits that blossom first will first be ripe:\nContent thyself awhile. By the mass, 'tis morning;\nPleasure and action make the hours seem short.\nRetire thee; go where thou art billeted:\nAway, I say; thou shalt know more hereafter:\nNay, get thee gone.\nTwo things are to be done:\nMy wife must move for Cassio to her mistress;\nI'll set her on;\nMyself the while to draw the Moor apart,\nAnd bring him jump when he may Cassio find\nSoliciting his wife: ay, that's the way\nDull not device by coldness and delay.\n\nCASSIO:\nMasters, play here; I will content your pains;\nSomething that's brief; and bid 'Good morrow, general.'\n\nClown:\nWhy masters, have your instruments been in Naples,\nthat they speak i' the nose thus?\n\nFirst Musician:\nHow, sir, how!\n\nClown:\nAre these, I pray you, wind-instruments?\n\nFirst Musician:\nAy, marry, are they, sir.\n\nClown:\nO, thereby hangs a tail.\n\nFirst Musician:\nWhereby hangs a tale, sir?\n\nClown:\nMarry. sir, by many a wind-instrument that I know.\nBut, masters, here's money for you: and the general\nso likes your music, that he desires you, for love's\nsake, to make no more noise with it.\n\nFirst Musician:\nWell, sir, we will not.\n\nClown:\nIf you have any music that may not be heard, to't\nagain: but, as they say to hear music the general\ndoes not greatly care.\n\nFirst Musician:\nWe have none such, sir.\n\nClown:\nThen put up your pipes in your bag, for I'll away:\ngo; vanish into air; away!\n\nCASSIO:\nDost thou hear, my honest friend?\n\nClown:\nNo, I hear not your honest friend; I hear you.\n\nCASSIO:\nPrithee, keep up thy quillets. There's a poor piece\nof gold for thee: if the gentlewoman that attends\nthe general's wife be stirring, tell her there's\none Cassio entreats her a little favour of speech:\nwilt thou do this?\n\nClown:\nShe is stirring, sir: if she will stir hither, I\nshall seem to notify unto her.\n\nCASSIO:\nDo, good my friend.\nIn happy time, Iago.\n\nIAGO:\nYou have not been a-bed, then?\n\nCASSIO:\nWhy, no; the day had broke\nBefore we parted. I have made bold, Iago,\nTo send in to your wife: my suit to her\nIs, that she will to virtuous Desdemona\nProcure me some access.\n\nIAGO:\nI'll send her to you presently;\nAnd I'll devise a mean to draw the Moor\nOut of the way, that your converse and business\nMay be more free.\n\nCASSIO:\nI humbly thank you for't.\nI never knew\nA Florentine more kind and honest.\n\nEMILIA:\nGood morrow, good Lieutenant: I am sorry\nFor your displeasure; but all will sure be well.\nThe general and his wife are talking of it;\nAnd she speaks for you stoutly: the Moor replies,\nThat he you hurt is of great fame in Cyprus,\nAnd great affinity, and that in wholesome wisdom\nHe might not but refuse you; but he protests he loves you\nAnd needs no other suitor but his likings\nTo take the safest occasion by the front\nTo bring you in again.\n\nCASSIO:\nYet, I beseech you,\nIf you think fit, or that it may be done,\nGive me advantage of some brief discourse\nWith Desdemona alone.\n\nEMILIA:\nPray you, come in;\nI will bestow you where you shall have time\nTo speak your bosom freely.\n\nCASSIO:\nI am much bound to you.\n\nOTHELLO:\nThese letters give, Iago, to the pilot;\nAnd by him do my duties to the senate:\nThat done, I will be walking on the works;\nRepair there to me.\n\nIAGO:\nWell, my good lord, I'll do't.\n\nOTHELLO:\nThis fortification, gentlemen, shall we see't?\n\nGentleman:\nWe'll wait upon your lordship.\n\nDESDEMONA:\nBe thou assured, good Cassio, I will do\nAll my abilities in thy behalf.\n\nEMILIA:\nGood madam, do: I warrant it grieves my husband,\nAs if the case were his.\n\nDESDEMONA:\nO, that's an honest fellow. Do not doubt, Cassio,\nBut I will have my lord and you again\nAs friendly as you were.\n\nCASSIO:\nBounteous madam,\nWhatever shall become of Michael Cassio,\nHe's never any thing but your true servant.\n\nDESDEMONA:\nI know't; I thank you. You do love my lord:\nYou have known him long; and be you well assured\nHe shall in strangeness stand no further off\nThan in a polite distance.\n\nCASSIO:\nAy, but, lady,\nThat policy may either last so long,\nOr feed upon such nice and waterish diet,\nOr breed itself so out of circumstance,\nThat, I being absent and my place supplied,\nMy general will forget my love and service.\n\nDESDEMONA:\nDo not doubt that; before Emilia here\nI give thee warrant of thy place: assure thee,\nIf I do vow a friendship, I'll perform it\nTo the last article: my lord shall never rest;\nI'll watch him tame and talk him out of patience;\nHis bed shall seem a school, his board a shrift;\nI'll intermingle every thing he does\nWith Cassio's suit: therefore be merry, Cassio;\nFor thy solicitor shall rather die\nThan give thy cause away.\n\nEMILIA:\nMadam, here comes my lord.\n\nCASSIO:\nMadam, I'll take my leave.\n\nDESDEMONA:\nWhy, stay, and hear me speak.\n\nCASSIO:\nMadam, not now: I am very ill at ease,\nUnfit for mine own purposes.\n\nDESDEMONA:\nWell, do your discretion.\n\nIAGO:\nHa! I like not that.\n\nOTHELLO:\nWhat dost thou say?\n\nIAGO:\nNothing, my lord: or if--I know not what.\n\nOTHELLO:\nWas not that Cassio parted from my wife?\n\nIAGO:\nCassio, my lord! No, sure, I cannot think it,\nThat he would steal away so guilty-like,\nSeeing you coming.\n\nOTHELLO:\nI do believe 'twas he.\n\nDESDEMONA:\nHow now, my lord!\nI have been talking with a suitor here,\nA man that languishes in your displeasure.\n\nOTHELLO:\nWho is't you mean?\n\nDESDEMONA:\nWhy, your lieutenant, Cassio. Good my lord,\nIf I have any grace or power to move you,\nHis present reconciliation take;\nFor if he be not one that truly loves you,\nThat errs in ignorance and not in cunning,\nI have no judgment in an honest face:\nI prithee, call him back.\n\nOTHELLO:\nWent he hence now?\n\nDESDEMONA:\nAy, sooth; so humbled\nThat he hath left part of his grief with me,\nTo suffer with him. Good love, call him back.\n\nOTHELLO:\nNot now, sweet Desdemona; some other time.\n\nDESDEMONA:\nBut shall't be shortly?\n\nOTHELLO:\nThe sooner, sweet, for you.\n\nDESDEMONA:\nShall't be to-night at supper?\n\nOTHELLO:\nNo, not to-night.\n\nDESDEMONA:\nTo-morrow dinner, then?\n\nOTHELLO:\nI shall not dine at home;\nI meet the captains at the citadel.\n\nDESDEMONA:\nWhy, then, to-morrow night; or Tuesday morn;\nOn Tuesday noon, or night; on Wednesday morn:\nI prithee, name the time, but let it not\nExceed three days: in faith, he's penitent;\nAnd yet his trespass, in our common reason--\nSave that, they say, the wars must make examples\nOut of their best--is not almost a fault\nTo incur a private cheque. When shall he come?\nTell me, Othello: I wonder in my soul,\nWhat you would ask me, that I should deny,\nOr stand so mammering on. What! Michael Cassio,\nThat came a-wooing with you, and so many a time,\nWhen I have spoke of you dispraisingly,\nHath ta'en your part; to have so much to do\nTo bring him in! Trust me, I could do much,--\n\nOTHELLO:\nPrithee, no more: let him come when he will;\nI will deny thee nothing.\n\nDESDEMONA:\nWhy, this is not a boon;\n'Tis as I should entreat you wear your gloves,\nOr feed on nourishing dishes, or keep you warm,\nOr sue to you to do a peculiar profit\nTo your own person: nay, when I have a suit\nWherein I mean to touch your love indeed,\nIt shall be full of poise and difficult weight\nAnd fearful to be granted.\n\nOTHELLO:\nI will deny thee nothing:\nWhereon, I do beseech thee, grant me this,\nTo leave me but a little to myself.\n\nDESDEMONA:\nShall I deny you? no: farewell, my lord.\n\nOTHELLO:\nFarewell, my Desdemona: I'll come to thee straight.\n\nDESDEMONA:\nEmilia, come. Be as your fancies teach you;\nWhate'er you be, I am obedient.\n\nOTHELLO:\nExcellent wretch! Perdition catch my soul,\nBut I do love thee! and when I love thee not,\nChaos is come again.\n\nIAGO:\nMy noble lord--\n\nOTHELLO:\nWhat dost thou say, Iago?\n\nIAGO:\nDid Michael Cassio, when you woo'd my lady,\nKnow of your love?\n\nOTHELLO:\nHe did, from first to last: why dost thou ask?\n\nIAGO:\nBut for a satisfaction of my thought;\nNo further harm.\n\nOTHELLO:\nWhy of thy thought, Iago?\n\nIAGO:\nI did not think he had been acquainted with her.\n\nOTHELLO:\nO, yes; and went between us very oft.\n\nIAGO:\nIndeed!\n\nOTHELLO:\nIndeed! ay, indeed: discern'st thou aught in that?\nIs he not honest?\n\nIAGO:\nHonest, my lord!\n\nOTHELLO:\nHonest! ay, honest.\n\nIAGO:\nMy lord, for aught I know.\n\nOTHELLO:\nWhat dost thou think?\n\nIAGO:\nThink, my lord!\n\nOTHELLO:\nThink, my lord!\nBy heaven, he echoes me,\nAs if there were some monster in his thought\nToo hideous to be shown. Thou dost mean something:\nI heard thee say even now, thou likedst not that,\nWhen Cassio left my wife: what didst not like?\nAnd when I told thee he was of my counsel\nIn my whole course of wooing, thou criedst 'Indeed!'\nAnd didst contract and purse thy brow together,\nAs if thou then hadst shut up in thy brain\nSome horrible conceit: if thou dost love me,\nShow me thy thought.\n\nIAGO:\nMy lord, you know I love you.\n\nOTHELLO:\nI think thou dost;\nAnd, for I know thou'rt full of love and honesty,\nAnd weigh'st thy words before thou givest them breath,\nTherefore these stops of thine fright me the more:\nFor such things in a false disloyal knave\nAre tricks of custom, but in a man that's just\nThey are close delations, working from the heart\nThat passion cannot rule.\n\nIAGO:\nFor Michael Cassio,\nI dare be sworn I think that he is honest.\n\nOTHELLO:\nI think so too.\n\nIAGO:\nMen should be what they seem;\nOr those that be not, would they might seem none!\n\nOTHELLO:\nCertain, men should be what they seem.\n\nIAGO:\nWhy, then, I think Cassio's an honest man.\n\nOTHELLO:\nNay, yet there's more in this:\nI prithee, speak to me as to thy thinkings,\nAs thou dost ruminate, and give thy worst of thoughts\nThe worst of words.\n\nIAGO:\nGood my lord, pardon me:\nThough I am bound to every act of duty,\nI am not bound to that all slaves are free to.\nUtter my thoughts? Why, say they are vile and false;\nAs where's that palace whereinto foul things\nSometimes intrude not? who has a breast so pure,\nBut some uncleanly apprehensions\nKeep leets and law-days and in session sit\nWith meditations lawful?\n\nOTHELLO:\nThou dost conspire against thy friend, Iago,\nIf thou but think'st him wrong'd and makest his ear\nA stranger to thy thoughts.\n\nIAGO:\nI do beseech you--\nThough I perchance am vicious in my guess,\nAs, I confess, it is my nature's plague\nTo spy into abuses, and oft my jealousy\nShapes faults that are not--that your wisdom yet,\nFrom one that so imperfectly conceits,\nWould take no notice, nor build yourself a trouble\nOut of his scattering and unsure observance.\nIt were not for your quiet nor your good,\nNor for my manhood, honesty, or wisdom,\nTo let you know my thoughts.\n\nOTHELLO:\nWhat dost thou mean?\n\nIAGO:\nGood name in man and woman, dear my lord,\nIs the immediate jewel of their souls:\nWho steals my purse steals trash; 'tis something, nothing;\n'Twas mine, 'tis his, and has been slave to thousands:\nBut he that filches from me my good name\nRobs me of that which not enriches him\nAnd makes me poor indeed.\n\nOTHELLO:\nBy heaven, I'll know thy thoughts.\n\nIAGO:\nYou cannot, if my heart were in your hand;\nNor shall not, whilst 'tis in my custody.\n\nOTHELLO:\nHa!\n\nIAGO:\nO, beware, my lord, of jealousy;\nIt is the green-eyed monster which doth mock\nThe meat it feeds on; that cuckold lives in bliss\nWho, certain of his fate, loves not his wronger;\nBut, O, what damned minutes tells he o'er\nWho dotes, yet doubts, suspects, yet strongly loves!\n\nOTHELLO:\nO misery!\n\nIAGO:\nPoor and content is rich and rich enough,\nBut riches fineless is as poor as winter\nTo him that ever fears he shall be poor.\nGood heaven, the souls of all my tribe defend\nFrom jealousy!\n\nOTHELLO:\nWhy, why is this?\nThink'st thou I'ld make a lie of jealousy,\nTo follow still the changes of the moon\nWith fresh suspicions? No; to be once in doubt\nIs once to be resolved: exchange me for a goat,\nWhen I shall turn the business of my soul\nTo such exsufflicate and blown surmises,\nMatching thy inference. 'Tis not to make me jealous\nTo say my wife is fair, feeds well, loves company,\nIs free of speech, sings, plays and dances well;\nWhere virtue is, these are more virtuous:\nNor from mine own weak merits will I draw\nThe smallest fear or doubt of her revolt;\nFor she had eyes, and chose me. No, Iago;\nI'll see before I doubt; when I doubt, prove;\nAnd on the proof, there is no more but this,--\nAway at once with love or jealousy!\n\nIAGO:\nI am glad of it; for now I shall have reason\nTo show the love and duty that I bear you\nWith franker spirit: therefore, as I am bound,\nReceive it from me. I speak not yet of proof.\nLook to your wife; observe her well with Cassio;\nWear your eye thus, not jealous nor secure:\nI would not have your free and noble nature,\nOut of self-bounty, be abused; look to't:\nI know our country disposition well;\nIn Venice they do let heaven see the pranks\nThey dare not show their husbands; their best conscience\nIs not to leave't undone, but keep't unknown.\n\nOTHELLO:\nDost thou say so?\n\nIAGO:\nShe did deceive her father, marrying you;\nAnd when she seem'd to shake and fear your looks,\nShe loved them most.\n\nOTHELLO:\nAnd so she did.\n\nIAGO:\nWhy, go to then;\nShe that, so young, could give out such a seeming,\nTo seal her father's eyes up close as oak-\nHe thought 'twas witchcraft--but I am much to blame;\nI humbly do beseech you of your pardon\nFor too much loving you.\n\nOTHELLO:\nI am bound to thee for ever.\n\nIAGO:\nI see this hath a little dash'd your spirits.\n\nOTHELLO:\nNot a jot, not a jot.\n\nIAGO:\nI' faith, I fear it has.\nI hope you will consider what is spoke\nComes from my love. But I do see you're moved:\nI am to pray you not to strain my speech\nTo grosser issues nor to larger reach\nThan to suspicion.\n\nOTHELLO:\nI will not.\n\nIAGO:\nShould you do so, my lord,\nMy speech should fall into such vile success\nAs my thoughts aim not at. Cassio's my worthy friend--\nMy lord, I see you're moved.\n\nOTHELLO:\nNo, not much moved:\nI do not think but Desdemona's honest.\n\nIAGO:\nLong live she so! and long live you to think so!\n\nOTHELLO:\nAnd yet, how nature erring from itself,--\n\nIAGO:\nAy, there's the point: as--to be bold with you--\nNot to affect many proposed matches\nOf her own clime, complexion, and degree,\nWhereto we see in all things nature tends--\nFoh! one may smell in such a will most rank,\nFoul disproportion thoughts unnatural.\nBut pardon me; I do not in position\nDistinctly speak of her; though I may fear\nHer will, recoiling to her better judgment,\nMay fall to match you with her country forms\nAnd happily repent.\n\nOTHELLO:\nFarewell, farewell:\nIf more thou dost perceive, let me know more;\nSet on thy wife to observe: leave me, Iago:\n\nIAGO:\n\nOTHELLO:\nWhy did I marry? This honest creature doubtless\nSees and knows more, much more, than he unfolds.\n\nIAGO:\n\nOTHELLO:\nFear not my government.\n\nIAGO:\nI once more take my leave.\n\nOTHELLO:\nThis fellow's of exceeding honesty,\nAnd knows all qualities, with a learned spirit,\nOf human dealings. If I do prove her haggard,\nThough that her jesses were my dear heartstrings,\nI'ld whistle her off and let her down the wind,\nTo pray at fortune. Haply, for I am black\nAnd have not those soft parts of conversation\nThat chamberers have, or for I am declined\nInto the vale of years,--yet that's not much--\nShe's gone. I am abused; and my relief\nMust be to loathe her. O curse of marriage,\nThat we can call these delicate creatures ours,\nAnd not their appetites! I had rather be a toad,\nAnd live upon the vapour of a dungeon,\nThan keep a corner in the thing I love\nFor others' uses. Yet, 'tis the plague of great ones;\nPrerogatived are they less than the base;\n'Tis destiny unshunnable, like death:\nEven then this forked plague is fated to us\nWhen we do quicken. Desdemona comes:\nIf she be false, O, then heaven mocks itself!\nI'll not believe't.\n\nDESDEMONA:\nHow now, my dear Othello!\nYour dinner, and the generous islanders\nBy you invited, do attend your presence.\n\nOTHELLO:\nI am to blame.\n\nDESDEMONA:\nWhy do you speak so faintly?\nAre you not well?\n\nOTHELLO:\nI have a pain upon my forehead here.\n\nDESDEMONA:\n'Faith, that's with watching; 'twill away again:\nLet me but bind it hard, within this hour\nIt will be well.\n\nOTHELLO:\nYour napkin is too little:\nLet it alone. Come, I'll go in with you.\n\nDESDEMONA:\nI am very sorry that you are not well.\n\nEMILIA:\nI am glad I have found this napkin:\nThis was her first remembrance from the Moor:\nMy wayward husband hath a hundred times\nWoo'd me to steal it; but she so loves the token,\nFor he conjured her she should ever keep it,\nThat she reserves it evermore about her\nTo kiss and talk to. I'll have the work ta'en out,\nAnd give't Iago: what he will do with it\nHeaven knows, not I;\nI nothing but to please his fantasy.\n\nIAGO:\nHow now! what do you here alone?\n\nEMILIA:\nDo not you chide; I have a thing for you.\n\nIAGO:\nA thing for me? it is a common thing--\n\nEMILIA:\nHa!\n\nIAGO:\nTo have a foolish wife.\n\nEMILIA:\nO, is that all? What will you give me now\nFor the same handkerchief?\n\nIAGO:\nWhat handkerchief?\n\nEMILIA:\nWhat handkerchief?\nWhy, that the Moor first gave to Desdemona;\nThat which so often you did bid me steal.\n\nIAGO:\nHast stol'n it from her?\n\nEMILIA:\nNo, 'faith; she let it drop by negligence.\nAnd, to the advantage, I, being here, took't up.\nLook, here it is.\n\nIAGO:\nA good wench; give it me.\n\nEMILIA:\nWhat will you do with 't, that you have been\nso earnest\nTo have me filch it?\n\nIAGO:\n\nEMILIA:\nIf it be not for some purpose of import,\nGive't me again: poor lady, she'll run mad\nWhen she shall lack it.\n\nIAGO:\nBe not acknown on 't; I have use for it.\nGo, leave me.\nI will in Cassio's lodging lose this napkin,\nAnd let him find it. Trifles light as air\nAre to the jealous confirmations strong\nAs proofs of holy writ: this may do something.\nThe Moor already changes with my poison:\nDangerous conceits are, in their natures, poisons.\nWhich at the first are scarce found to distaste,\nBut with a little act upon the blood.\nBurn like the mines of Sulphur. I did say so:\nLook, where he comes!\nNot poppy, nor mandragora,\nNor all the drowsy syrups of the world,\nShall ever medicine thee to that sweet sleep\nWhich thou owedst yesterday.\n\nOTHELLO:\nHa! ha! false to me?\n\nIAGO:\nWhy, how now, general! no more of that.\n\nOTHELLO:\nAvaunt! be gone! thou hast set me on the rack:\nI swear 'tis better to be much abused\nThan but to know't a little.\n\nIAGO:\nHow now, my lord!\n\nOTHELLO:\nWhat sense had I of her stol'n hours of lust?\nI saw't not, thought it not, it harm'd not me:\nI slept the next night well, was free and merry;\nI found not Cassio's kisses on her lips:\nHe that is robb'd, not wanting what is stol'n,\nLet him not know't, and he's not robb'd at all.\n\nIAGO:\nI am sorry to hear this.\n\nOTHELLO:\nI had been happy, if the general camp,\nPioners and all, had tasted her sweet body,\nSo I had nothing known. O, now, for ever\nFarewell the tranquil mind! farewell content!\nFarewell the plumed troop, and the big wars,\nThat make ambition virtue! O, farewell!\nFarewell the neighing steed, and the shrill trump,\nThe spirit-stirring drum, the ear-piercing fife,\nThe royal banner, and all quality,\nPride, pomp and circumstance of glorious war!\nAnd, O you mortal engines, whose rude throats\nThe immortal Jove's dead clamours counterfeit,\nFarewell! Othello's occupation's gone!\n\nIAGO:\nIs't possible, my lord?\n\nOTHELLO:\nVillain, be sure thou prove my love a whore,\nBe sure of it; give me the ocular proof:\nOr by the worth of man's eternal soul,\nThou hadst been better have been born a dog\nThan answer my waked wrath!\n\nIAGO:\nIs't come to this?\n\nOTHELLO:\nMake me to see't; or, at the least, so prove it,\nThat the probation bear no hinge nor loop\nTo hang a doubt on; or woe upon thy life!\n\nIAGO:\nMy noble lord,--\n\nOTHELLO:\nIf thou dost slander her and torture me,\nNever pray more; abandon all remorse;\nOn horror's head horrors accumulate;\nDo deeds to make heaven weep, all earth amazed;\nFor nothing canst thou to damnation add\nGreater than that.\n\nIAGO:\nO grace! O heaven forgive me!\nAre you a man? have you a soul or sense?\nGod be wi' you; take mine office. O wretched fool.\nThat livest to make thine honesty a vice!\nO monstrous world! Take note, take note, O world,\nTo be direct and honest is not safe.\nI thank you for this profit; and from hence\nI'll love no friend, sith love breeds such offence.\n\nOTHELLO:\nNay, stay: thou shouldst be honest.\n\nIAGO:\nI should be wise, for honesty's a fool\nAnd loses that it works for.\n\nOTHELLO:\nBy the world,\nI think my wife be honest and think she is not;\nI think that thou art just and think thou art not.\nI'll have some proof. Her name, that was as fresh\nAs Dian's visage, is now begrimed and black\nAs mine own face. If there be cords, or knives,\nPoison, or fire, or suffocating streams,\nI'll not endure it. Would I were satisfied!\n\nIAGO:\nI see, sir, you are eaten up with passion:\nI do repent me that I put it to you.\nYou would be satisfied?\n\nOTHELLO:\nWould! nay, I will.\n\nIAGO:\nAnd may: but, how? how satisfied, my lord?\nWould you, the supervisor, grossly gape on--\nBehold her topp'd?\n\nOTHELLO:\nDeath and damnation! O!\n\nIAGO:\nIt were a tedious difficulty, I think,\nTo bring them to that prospect: damn them then,\nIf ever mortal eyes do see them bolster\nMore than their own! What then? how then?\nWhat shall I say? Where's satisfaction?\nIt is impossible you should see this,\nWere they as prime as goats, as hot as monkeys,\nAs salt as wolves in pride, and fools as gross\nAs ignorance made drunk. But yet, I say,\nIf imputation and strong circumstances,\nWhich lead directly to the door of truth,\nWill give you satisfaction, you may have't.\n\nOTHELLO:\nGive me a living reason she's disloyal.\n\nIAGO:\nI do not like the office:\nBut, sith I am enter'd in this cause so far,\nPrick'd to't by foolish honesty and love,\nI will go on. I lay with Cassio lately;\nAnd, being troubled with a raging tooth,\nI could not sleep.\nThere are a kind of men so loose of soul,\nThat in their sleeps will mutter their affairs:\nOne of this kind is Cassio:\nIn sleep I heard him say 'Sweet Desdemona,\nLet us be wary, let us hide our loves;'\nAnd then, sir, would he gripe and wring my hand,\nCry 'O sweet creature!' and then kiss me hard,\nAs if he pluck'd up kisses by the roots\nThat grew upon my lips: then laid his leg\nOver my thigh, and sigh'd, and kiss'd; and then\nCried 'Cursed fate that gave thee to the Moor!'\n\nOTHELLO:\nO monstrous! monstrous!\n\nIAGO:\nNay, this was but his dream.\n\nOTHELLO:\nBut this denoted a foregone conclusion:\n'Tis a shrewd doubt, though it be but a dream.\n\nIAGO:\nAnd this may help to thicken other proofs\nThat do demonstrate thinly.\n\nOTHELLO:\nI'll tear her all to pieces.\n\nIAGO:\nNay, but be wise: yet we see nothing done;\nShe may be honest yet. Tell me but this,\nHave you not sometimes seen a handkerchief\nSpotted with strawberries in your wife's hand?\n\nOTHELLO:\nI gave her such a one; 'twas my first gift.\n\nIAGO:\nI know not that; but such a handkerchief--\nI am sure it was your wife's--did I to-day\nSee Cassio wipe his beard with.\n\nOTHELLO:\nIf it be that--\n\nIAGO:\nIf it be that, or any that was hers,\nIt speaks against her with the other proofs.\n\nOTHELLO:\nO, that the slave had forty thousand lives!\nOne is too poor, too weak for my revenge.\nNow do I see 'tis true. Look here, Iago;\nAll my fond love thus do I blow to heaven.\n'Tis gone.\nArise, black vengeance, from thy hollow cell!\nYield up, O love, thy crown and hearted throne\nTo tyrannous hate! Swell, bosom, with thy fraught,\nFor 'tis of aspics' tongues!\n\nIAGO:\nYet be content.\n\nOTHELLO:\nO, blood, blood, blood!\n\nIAGO:\nPatience, I say; your mind perhaps may change.\n\nOTHELLO:\nNever, Iago: Like to the Pontic sea,\nWhose icy current and compulsive course\nNe'er feels retiring ebb, but keeps due on\nTo the Propontic and the Hellespont,\nEven so my bloody thoughts, with violent pace,\nShall ne'er look back, ne'er ebb to humble love,\nTill that a capable and wide revenge\nSwallow them up. Now, by yond marble heaven,\nIn the due reverence of a sacred vow\nI here engage my words.\n\nIAGO:\nDo not rise yet.\nWitness, you ever-burning lights above,\nYou elements that clip us round about,\nWitness that here Iago doth give up\nThe execution of his wit, hands, heart,\nTo wrong'd Othello's service! Let him command,\nAnd to obey shall be in me remorse,\nWhat bloody business ever.\n\nOTHELLO:\nI greet thy love,\nNot with vain thanks, but with acceptance bounteous,\nAnd will upon the instant put thee to't:\nWithin these three days let me hear thee say\nThat Cassio's not alive.\n\nIAGO:\nMy friend is dead; 'tis done at your request:\nBut let her live.\n\nOTHELLO:\nDamn her, lewd minx! O, damn her!\nCome, go with me apart; I will withdraw,\nTo furnish me with some swift means of death\nFor the fair devil. Now art thou my lieutenant.\n\nIAGO:\nI am your own for ever.\n\nDESDEMONA:\nDo you know, sirrah, where Lieutenant Cassio lies?\n\nClown:\nI dare not say he lies any where.\n\nDESDEMONA:\nWhy, man?\n\nClown:\nHe's a soldier, and for one to say a soldier lies,\nis stabbing.\n\nDESDEMONA:\nGo to: where lodges he?\n\nClown:\nTo tell you where he lodges, is to tell you where I lie.\n\nDESDEMONA:\nCan any thing be made of this?\n\nClown:\nI know not where he lodges, and for me to devise a\nlodging and say he lies here or he lies there, were\nto lie in mine own throat.\n\nDESDEMONA:\nCan you inquire him out, and be edified by report?\n\nClown:\nI will catechise the world for him; that is, make\nquestions, and by them answer.\n\nDESDEMONA:\nSeek him, bid him come hither: tell him I have\nmoved my lord on his behalf, and hope all will be well.\n\nClown:\nTo do this is within the compass of man's wit: and\ntherefore I will attempt the doing it.\n\nDESDEMONA:\nWhere should I lose that handkerchief, Emilia?\n\nEMILIA:\nI know not, madam.\n\nDESDEMONA:\nBelieve me, I had rather have lost my purse\nFull of crusadoes: and, but my noble Moor\nIs true of mind and made of no such baseness\nAs jealous creatures are, it were enough\nTo put him to ill thinking.\n\nEMILIA:\nIs he not jealous?\n\nDESDEMONA:\nWho, he? I think the sun where he was born\nDrew all such humours from him.\n\nEMILIA:\nLook, where he comes.\n\nDESDEMONA:\nI will not leave him now till Cassio\nBe call'd to him.\nHow is't with you, my lord\n\nOTHELLO:\nWell, my good lady.\nO, hardness to dissemble!--\nHow do you, Desdemona?\n\nDESDEMONA:\nWell, my good lord.\n\nOTHELLO:\nGive me your hand: this hand is moist, my lady.\n\nDESDEMONA:\nIt yet hath felt no age nor known no sorrow.\n\nOTHELLO:\nThis argues fruitfulness and liberal heart:\nHot, hot, and moist: this hand of yours requires\nA sequester from liberty, fasting and prayer,\nMuch castigation, exercise devout;\nFor here's a young and sweating devil here,\nThat commonly rebels. 'Tis a good hand,\nA frank one.\n\nDESDEMONA:\nYou may, indeed, say so;\nFor 'twas that hand that gave away my heart.\n\nOTHELLO:\nA liberal hand: the hearts of old gave hands;\nBut our new heraldry is hands, not hearts.\n\nDESDEMONA:\nI cannot speak of this. Come now, your promise.\n\nOTHELLO:\nWhat promise, chuck?\n\nDESDEMONA:\nI have sent to bid Cassio come speak with you.\n\nOTHELLO:\nI have a salt and sorry rheum offends me;\nLend me thy handkerchief.\n\nDESDEMONA:\nHere, my lord.\n\nOTHELLO:\nThat which I gave you.\n\nDESDEMONA:\nI have it not about me.\n\nOTHELLO:\nNot?\n\nDESDEMONA:\nNo, indeed, my lord.\n\nOTHELLO:\nThat is a fault.\nThat handkerchief\nDid an Egyptian to my mother give;\nShe was a charmer, and could almost read\nThe thoughts of people: she told her, while\nshe kept it,\n'Twould make her amiable and subdue my father\nEntirely to her love, but if she lost it\nOr made gift of it, my father's eye\nShould hold her loathed and his spirits should hunt\nAfter new fancies: she, dying, gave it me;\nAnd bid me, when my fate would have me wive,\nTo give it her. I did so: and take heed on't;\nMake it a darling like your precious eye;\nTo lose't or give't away were such perdition\nAs nothing else could match.\n\nDESDEMONA:\nIs't possible?\n\nOTHELLO:\n'Tis true: there's magic in the web of it:\nA sibyl, that had number'd in the world\nThe sun to course two hundred compasses,\nIn her prophetic fury sew'd the work;\nThe worms were hallow'd that did breed the silk;\nAnd it was dyed in mummy which the skilful\nConserved of maidens' hearts.\n\nDESDEMONA:\nIndeed! is't true?\n\nOTHELLO:\nMost veritable; therefore look to't well.\n\nDESDEMONA:\nThen would to God that I had never seen't!\n\nOTHELLO:\nHa! wherefore?\n\nDESDEMONA:\nWhy do you speak so startingly and rash?\n\nOTHELLO:\nIs't lost? is't gone? speak, is it out\no' the way?\n\nDESDEMONA:\nHeaven bless us!\n\nOTHELLO:\nSay you?\n\nDESDEMONA:\nIt is not lost; but what an if it were?\n\nOTHELLO:\nHow!\n\nDESDEMONA:\nI say, it is not lost.\n\nOTHELLO:\nFetch't, let me see't.\n\nDESDEMONA:\nWhy, so I can, sir, but I will not now.\nThis is a trick to put me from my suit:\nPray you, let Cassio be received again.\n\nOTHELLO:\nFetch me the handkerchief: my mind misgives.\n\nDESDEMONA:\nCome, come;\nYou'll never meet a more sufficient man.\n\nOTHELLO:\nThe handkerchief!\n\nDESDEMONA:\nI pray, talk me of Cassio.\n\nOTHELLO:\nThe handkerchief!\n\nDESDEMONA:\nA man that all his time\nHath founded his good fortunes on your love,\nShared dangers with you,--\n\nOTHELLO:\nThe handkerchief!\n\nDESDEMONA:\nIn sooth, you are to blame.\n\nOTHELLO:\nAway!\n\nEMILIA:\nIs not this man jealous?\n\nDESDEMONA:\nI ne'er saw this before.\nSure, there's some wonder in this handkerchief:\nI am most unhappy in the loss of it.\n\nEMILIA:\n'Tis not a year or two shows us a man:\nThey are all but stomachs, and we all but food;\nTo eat us hungerly, and when they are full,\nThey belch us. Look you, Cassio and my husband!\n\nIAGO:\nThere is no other way; 'tis she must do't:\nAnd, lo, the happiness! go, and importune her.\n\nDESDEMONA:\nHow now, good Cassio! what's the news with you?\n\nCASSIO:\nMadam, my former suit: I do beseech you\nThat by your virtuous means I may again\nExist, and be a member of his love\nWhom I with all the office of my heart\nEntirely honour: I would not be delay'd.\nIf my offence be of such mortal kind\nThat nor my service past, nor present sorrows,\nNor purposed merit in futurity,\nCan ransom me into his love again,\nBut to know so must be my benefit;\nSo shall I clothe me in a forced content,\nAnd shut myself up in some other course,\nTo fortune's alms.\n\nDESDEMONA:\nAlas, thrice-gentle Cassio!\nMy advocation is not now in tune;\nMy lord is not my lord; nor should I know him,\nWere he in favour as in humour alter'd.\nSo help me every spirit sanctified,\nAs I have spoken for you all my best\nAnd stood within the blank of his displeasure\nFor my free speech! you must awhile be patient:\nWhat I can do I will; and more I will\nThan for myself I dare: let that suffice you.\n\nIAGO:\nIs my lord angry?\n\nEMILIA:\nHe went hence but now,\nAnd certainly in strange unquietness.\n\nIAGO:\nCan he be angry? I have seen the cannon,\nWhen it hath blown his ranks into the air,\nAnd, like the devil, from his very arm\nPuff'd his own brother:--and can he be angry?\nSomething of moment then: I will go meet him:\nThere's matter in't indeed, if he be angry.\n\nDESDEMONA:\nI prithee, do so.\nSomething, sure, of state,\nEither from Venice, or some unhatch'd practise\nMade demonstrable here in Cyprus to him,\nHath puddled his clear spirit: and in such cases\nMen's natures wrangle with inferior things,\nThough great ones are their object. 'Tis even so;\nFor let our finger ache, and it indues\nOur other healthful members even to that sense\nOf pain: nay, we must think men are not gods,\nNor of them look for such observances\nAs fit the bridal. Beshrew me much, Emilia,\nI was, unhandsome warrior as I am,\nArraigning his unkindness with my soul;\nBut now I find I had suborn'd the witness,\nAnd he's indicted falsely.\n\nEMILIA:\nPray heaven it be state-matters, as you think,\nAnd no conception nor no jealous toy\nConcerning you.\n\nDESDEMONA:\nAlas the day! I never gave him cause.\n\nEMILIA:\nBut jealous souls will not be answer'd so;\nThey are not ever jealous for the cause,\nBut jealous for they are jealous: 'tis a monster\nBegot upon itself, born on itself.\n\nDESDEMONA:\nHeaven keep that monster from Othello's mind!\n\nEMILIA:\nLady, amen.\n\nDESDEMONA:\nI will go seek him. Cassio, walk hereabout:\nIf I do find him fit, I'll move your suit\nAnd seek to effect it to my uttermost.\n\nCASSIO:\nI humbly thank your ladyship.\n\nBIANCA:\nSave you, friend Cassio!\n\nCASSIO:\nWhat make you from home?\nHow is it with you, my most fair Bianca?\nI' faith, sweet love, I was coming to your house.\n\nBIANCA:\nAnd I was going to your lodging, Cassio.\nWhat, keep a week away? seven days and nights?\nEight score eight hours? and lovers' absent hours,\nMore tedious than the dial eight score times?\nO weary reckoning!\n\nCASSIO:\nPardon me, Bianca:\nI have this while with leaden thoughts been press'd:\nBut I shall, in a more continuate time,\nStrike off this score of absence. Sweet Bianca,\nTake me this work out.\n\nBIANCA:\nO Cassio, whence came this?\nThis is some token from a newer friend:\nTo the felt absence now I feel a cause:\nIs't come to this? Well, well.\n\nCASSIO:\nGo to, woman!\nThrow your vile guesses in the devil's teeth,\nFrom whence you have them. You are jealous now\nThat this is from some mistress, some remembrance:\nNo, in good troth, Bianca.\n\nBIANCA:\nWhy, whose is it?\n\nCASSIO:\nI know not, sweet: I found it in my chamber.\nI like the work well: ere it be demanded--\nAs like enough it will--I'ld have it copied:\nTake it, and do't; and leave me for this time.\n\nBIANCA:\nLeave you! wherefore?\n\nCASSIO:\nI do attend here on the general;\nAnd think it no addition, nor my wish,\nTo have him see me woman'd.\n\nBIANCA:\nWhy, I pray you?\n\nCASSIO:\nNot that I love you not.\n\nBIANCA:\nBut that you do not love me.\nI pray you, bring me on the way a little,\nAnd say if I shall see you soon at night.\n\nCASSIO:\n'Tis but a little way that I can bring you;\nFor I attend here: but I'll see you soon.\n\nBIANCA:\n'Tis very good; I must be circumstanced.\n\nIAGO:\nWill you think so?\n\nOTHELLO:\nThink so, Iago!\n\nIAGO:\nWhat,\nTo kiss in private?\n\nOTHELLO:\nAn unauthorized kiss.\n\nIAGO:\nOr to be naked with her friend in bed\nAn hour or more, not meaning any harm?\n\nOTHELLO:\nNaked in bed, Iago, and not mean harm!\nIt is hypocrisy against the devil:\nThey that mean virtuously, and yet do so,\nThe devil their virtue tempts, and they tempt heaven.\n\nIAGO:\nSo they do nothing, 'tis a venial slip:\nBut if I give my wife a handkerchief,--\n\nOTHELLO:\nWhat then?\n\nIAGO:\nWhy, then, 'tis hers, my lord; and, being hers,\nShe may, I think, bestow't on any man.\n\nOTHELLO:\nShe is protectress of her honour too:\nMay she give that?\n\nIAGO:\nHer honour is an essence that's not seen;\nThey have it very oft that have it not:\nBut, for the handkerchief,--\n\nOTHELLO:\nBy heaven, I would most gladly have forgot it.\nThou said'st, it comes o'er my memory,\nAs doth the raven o'er the infected house,\nBoding to all--he had my handkerchief.\n\nIAGO:\nAy, what of that?\n\nOTHELLO:\nThat's not so good now.\n\nIAGO:\nWhat,\nIf I had said I had seen him do you wrong?\nOr heard him say,--as knaves be such abroad,\nWho having, by their own importunate suit,\nOr voluntary dotage of some mistress,\nConvinced or supplied them, cannot choose\nBut they must blab--\n\nOTHELLO:\nHath he said any thing?\n\nIAGO:\nHe hath, my lord; but be you well assured,\nNo more than he'll unswear.\n\nOTHELLO:\nWhat hath he said?\n\nIAGO:\n'Faith, that he did--I know not what he did.\n\nOTHELLO:\nWhat? what?\n\nIAGO:\nLie--\n\nOTHELLO:\nWith her?\n\nIAGO:\nWith her, on her; what you will.\n\nOTHELLO:\nLie with her! lie on her! We say lie on her, when\nthey belie her. Lie with her! that's fulsome.\n--Handkerchief--confessions--handkerchief!--To\nconfess, and be hanged for his labour;--first, to be\nhanged, and then to confess.--I tremble at it.\nNature would not invest herself in such shadowing\npassion without some instruction. It is not words\nthat shake me thus. Pish! Noses, ears, and lips.\n--Is't possible?--Confess--handkerchief!--O devil!--\n\nIAGO:\nWork on,\nMy medicine, work! Thus credulous fools are caught;\nAnd many worthy and chaste dames even thus,\nAll guiltless, meet reproach. What, ho! my lord!\nMy lord, I say! Othello!\nHow now, Cassio!\n\nCASSIO:\nWhat's the matter?\n\nIAGO:\nMy lord is fall'n into an epilepsy:\nThis is his second fit; he had one yesterday.\n\nCASSIO:\nRub him about the temples.\n\nIAGO:\nNo, forbear;\nThe lethargy must have his quiet course:\nIf not, he foams at mouth and by and by\nBreaks out to savage madness. Look he stirs:\nDo you withdraw yourself a little while,\nHe will recover straight: when he is gone,\nI would on great occasion speak with you.\nHow is it, general? have you not hurt your head?\n\nOTHELLO:\nDost thou mock me?\n\nIAGO:\nI mock you! no, by heaven.\nWould you would bear your fortune like a man!\n\nOTHELLO:\nA horned man's a monster and a beast.\n\nIAGO:\nThere's many a beast then in a populous city,\nAnd many a civil monster.\n\nOTHELLO:\nDid he confess it?\n\nIAGO:\nGood sir, be a man;\nThink every bearded fellow that's but yoked\nMay draw with you: there's millions now alive\nThat nightly lie in those unproper beds\nWhich they dare swear peculiar: your case is better.\nO, 'tis the spite of hell, the fiend's arch-mock,\nTo lip a wanton in a secure couch,\nAnd to suppose her chaste! No, let me know;\nAnd knowing what I am, I know what she shall be.\n\nOTHELLO:\nO, thou art wise; 'tis certain.\n\nIAGO:\nStand you awhile apart;\nConfine yourself but in a patient list.\nWhilst you were here o'erwhelmed with your grief--\nA passion most unsuiting such a man--\nCassio came hither: I shifted him away,\nAnd laid good 'scuse upon your ecstasy,\nBade him anon return and here speak with me;\nThe which he promised. Do but encave yourself,\nAnd mark the fleers, the gibes, and notable scorns,\nThat dwell in every region of his face;\nFor I will make him tell the tale anew,\nWhere, how, how oft, how long ago, and when\nHe hath, and is again to cope your wife:\nI say, but mark his gesture. Marry, patience;\nOr I shall say you are all in all in spleen,\nAnd nothing of a man.\n\nOTHELLO:\nDost thou hear, Iago?\nI will be found most cunning in my patience;\nBut--dost thou hear?--most bloody.\n\nIAGO:\nThat's not amiss;\nBut yet keep time in all. Will you withdraw?\nNow will I question Cassio of Bianca,\nA housewife that by selling her desires\nBuys herself bread and clothes: it is a creature\nThat dotes on Cassio; as 'tis the strumpet's plague\nTo beguile many and be beguiled by one:\nHe, when he hears of her, cannot refrain\nFrom the excess of laughter. Here he comes:\nAs he shall smile, Othello shall go mad;\nAnd his unbookish jealousy must construe\nPoor Cassio's smiles, gestures and light behavior,\nQuite in the wrong. How do you now, lieutenant?\n\nCASSIO:\nThe worser that you give me the addition\nWhose want even kills me.\n\nIAGO:\nPly Desdemona well, and you are sure on't.\nNow, if this suit lay in Bianco's power,\nHow quickly should you speed!\n\nCASSIO:\nAlas, poor caitiff!\n\nOTHELLO:\nLook, how he laughs already!\n\nIAGO:\nI never knew woman love man so.\n\nCASSIO:\nAlas, poor rogue! I think, i' faith, she loves me.\n\nOTHELLO:\nNow he denies it faintly, and laughs it out.\n\nIAGO:\nDo you hear, Cassio?\n\nOTHELLO:\nNow he importunes him\nTo tell it o'er: go to; well said, well said.\n\nIAGO:\nShe gives it out that you shall marry hey:\nDo you intend it?\n\nCASSIO:\nHa, ha, ha!\n\nOTHELLO:\nDo you triumph, Roman? do you triumph?\n\nCASSIO:\nI marry her! what? a customer! Prithee, bear some\ncharity to my wit: do not think it so unwholesome.\nHa, ha, ha!\n\nOTHELLO:\nSo, so, so, so: they laugh that win.\n\nIAGO:\n'Faith, the cry goes that you shall marry her.\n\nCASSIO:\nPrithee, say true.\n\nIAGO:\nI am a very villain else.\n\nOTHELLO:\nHave you scored me? Well.\n\nCASSIO:\nThis is the monkey's own giving out: she is\npersuaded I will marry her, out of her own love and\nflattery, not out of my promise.\n\nOTHELLO:\nIago beckons me; now he begins the story.\n\nCASSIO:\nShe was here even now; she haunts me in every place.\nI was the other day talking on the sea-bank with\ncertain Venetians; and thither comes the bauble,\nand, by this hand, she falls me thus about my neck--\n\nOTHELLO:\nCrying 'O dear Cassio!' as it were: his gesture\nimports it.\n\nCASSIO:\nSo hangs, and lolls, and weeps upon me; so hales,\nand pulls me: ha, ha, ha!\n\nOTHELLO:\nNow he tells how she plucked him to my chamber. O,\nI see that nose of yours, but not that dog I shall\nthrow it to.\n\nCASSIO:\nWell, I must leave her company.\n\nIAGO:\nBefore me! look, where she comes.\n\nCASSIO:\n'Tis such another fitchew! marry a perfumed one.\nWhat do you mean by this haunting of me?\n\nBIANCA:\nLet the devil and his dam haunt you! What did you\nmean by that same handkerchief you gave me even now?\nI was a fine fool to take it. I must take out the\nwork?--A likely piece of work, that you should find\nit in your chamber, and not know who left it there!\nThis is some minx's token, and I must take out the\nwork? There; give it your hobby-horse: wheresoever\nyou had it, I'll take out no work on't.\n\nCASSIO:\nHow now, my sweet Bianca! how now! how now!\n\nOTHELLO:\nBy heaven, that should be my handkerchief!\n\nBIANCA:\nAn you'll come to supper to-night, you may; an you\nwill not, come when you are next prepared for.\n\nIAGO:\nAfter her, after her.\n\nCASSIO:\n'Faith, I must; she'll rail in the street else.\n\nIAGO:\nWill you sup there?\n\nCASSIO:\n'Faith, I intend so.\n\nIAGO:\nWell, I may chance to see you; for I would very fain\nspeak with you.\n\nCASSIO:\nPrithee, come; will you?\n\nIAGO:\nGo to; say no more.\n\nOTHELLO:\n\nIAGO:\nDid you perceive how he laughed at his vice?\n\nOTHELLO:\nO Iago!\n\nIAGO:\nAnd did you see the handkerchief?\n\nOTHELLO:\nWas that mine?\n\nIAGO:\nYours by this hand: and to see how he prizes the\nfoolish woman your wife! she gave it him, and he\nhath given it his whore.\n\nOTHELLO:\nI would have him nine years a-killing.\nA fine woman! a fair woman! a sweet woman!\n\nIAGO:\nNay, you must forget that.\n\nOTHELLO:\nAy, let her rot, and perish, and be damned to-night;\nfor she shall not live: no, my heart is turned to\nstone; I strike it, and it hurts my hand. O, the\nworld hath not a sweeter creature: she might lie by\nan emperor's side and command him tasks.\n\nIAGO:\nNay, that's not your way.\n\nOTHELLO:\nHang her! I do but say what she is: so delicate\nwith her needle: an admirable musician: O! she\nwill sing the savageness out of a bear: of so high\nand plenteous wit and invention:--\n\nIAGO:\nShe's the worse for all this.\n\nOTHELLO:\nO, a thousand thousand times: and then, of so\ngentle a condition!\n\nIAGO:\nAy, too gentle.\n\nOTHELLO:\nNay, that's certain: but yet the pity of it, Iago!\nO Iago, the pity of it, Iago!\n\nIAGO:\nIf you are so fond over her iniquity, give her\npatent to offend; for, if it touch not you, it comes\nnear nobody.\n\nOTHELLO:\nI will chop her into messes: cuckold me!\n\nIAGO:\nO, 'tis foul in her.\n\nOTHELLO:\nWith mine officer!\n\nIAGO:\nThat's fouler.\n\nOTHELLO:\nGet me some poison, Iago; this night: I'll not\nexpostulate with her, lest her body and beauty\nunprovide my mind again: this night, Iago.\n\nIAGO:\nDo it not with poison, strangle her in her bed, even\nthe bed she hath contaminated.\n\nOTHELLO:\nGood, good: the justice of it pleases: very good.\n\nIAGO:\nAnd for Cassio, let me be his undertaker: you\nshall hear more by midnight.\n\nOTHELLO:\nExcellent good.\nWhat trumpet is that same?\n\nIAGO:\nSomething from Venice, sure. 'Tis Lodovico\nCome from the duke: and, see, your wife is with him.\n\nLODOVICO:\nSave you, worthy general!\n\nOTHELLO:\nWith all my heart, sir.\n\nLODOVICO:\nThe duke and senators of Venice greet you.\n\nOTHELLO:\nI kiss the instrument of their pleasures.\n\nDESDEMONA:\nAnd what's the news, good cousin Lodovico?\n\nIAGO:\nI am very glad to see you, signior\nWelcome to Cyprus.\n\nLODOVICO:\nI thank you. How does Lieutenant Cassio?\n\nIAGO:\nLives, sir.\n\nDESDEMONA:\nCousin, there's fall'n between him and my lord\nAn unkind breach: but you shall make all well.\n\nOTHELLO:\nAre you sure of that?\n\nDESDEMONA:\nMy lord?\n\nOTHELLO:\n\nLODOVICO:\nHe did not call; he's busy in the paper.\nIs there division 'twixt my lord and Cassio?\n\nDESDEMONA:\nA most unhappy one: I would do much\nTo atone them, for the love I bear to Cassio.\n\nOTHELLO:\nFire and brimstone!\n\nDESDEMONA:\nMy lord?\n\nOTHELLO:\nAre you wise?\n\nDESDEMONA:\nWhat, is he angry?\n\nLODOVICO:\nMay be the letter moved him;\nFor, as I think, they do command him home,\nDeputing Cassio in his government.\n\nDESDEMONA:\nTrust me, I am glad on't.\n\nOTHELLO:\nIndeed!\n\nDESDEMONA:\nMy lord?\n\nOTHELLO:\nI am glad to see you mad.\n\nDESDEMONA:\nWhy, sweet Othello,--\n\nOTHELLO:\n\nDESDEMONA:\nI have not deserved this.\n\nLODOVICO:\nMy lord, this would not be believed in Venice,\nThough I should swear I saw't: 'tis very much:\nMake her amends; she weeps.\n\nOTHELLO:\nO devil, devil!\nIf that the earth could teem with woman's tears,\nEach drop she falls would prove a crocodile.\nOut of my sight!\n\nDESDEMONA:\nI will not stay to offend you.\n\nLODOVICO:\nTruly, an obedient lady:\nI do beseech your lordship, call her back.\n\nOTHELLO:\nMistress!\n\nDESDEMONA:\nMy lord?\n\nOTHELLO:\nWhat would you with her, sir?\n\nLODOVICO:\nWho, I, my lord?\n\nOTHELLO:\nAy; you did wish that I would make her turn:\nSir, she can turn, and turn, and yet go on,\nAnd turn again; and she can weep, sir, weep;\nAnd she's obedient, as you say, obedient,\nVery obedient. Proceed you in your tears.\nConcerning this, sir,--O  well-painted passion!--\nI am commanded home. Get you away;\nI'll send for you anon. Sir, I obey the mandate,\nAnd will return to Venice. Hence, avaunt!\nCassio shall have my place. And, sir, tonight,\nI do entreat that we may sup together:\nYou are welcome, sir, to Cyprus.--Goats and monkeys!\n\nLODOVICO:\nIs this the noble Moor whom our full senate\nCall all in all sufficient? Is this the nature\nWhom passion could not shake? whose solid virtue\nThe shot of accident, nor dart of chance,\nCould neither graze nor pierce?\n\nIAGO:\nHe is much changed.\n\nLODOVICO:\nAre his wits safe? is he not light of brain?\n\nIAGO:\nHe's that he is: I may not breathe my censure\nWhat he might be: if what he might he is not,\nI would to heaven he were!\n\nLODOVICO:\nWhat, strike his wife!\n\nIAGO:\n'Faith, that was not so well; yet would I knew\nThat stroke would prove the worst!\n\nLODOVICO:\nIs it his use?\nOr did the letters work upon his blood,\nAnd new-create this fault?\n\nIAGO:\nAlas, alas!\nIt is not honesty in me to speak\nWhat I have seen and known. You shall observe him,\nAnd his own courses will denote him so\nThat I may save my speech: do but go after,\nAnd mark how he continues.\n\nLODOVICO:\nI am sorry that I am deceived in him.\n\nOTHELLO:\nYou have seen nothing then?\n\nEMILIA:\nNor ever heard, nor ever did suspect.\n\nOTHELLO:\nYes, you have seen Cassio and she together.\n\nEMILIA:\nBut then I saw no harm, and then I heard\nEach syllable that breath made up between them.\n\nOTHELLO:\nWhat, did they never whisper?\n\nEMILIA:\nNever, my lord.\n\nOTHELLO:\nNor send you out o' the way?\n\nEMILIA:\nNever.\n\nOTHELLO:\nTo fetch her fan, her gloves, her mask, nor nothing?\n\nEMILIA:\nNever, my lord.\n\nOTHELLO:\nThat's strange.\n\nEMILIA:\nI durst, my lord, to wager she is honest,\nLay down my soul at stake: if you think other,\nRemove your thought; it doth abuse your bosom.\nIf any wretch have put this in your head,\nLet heaven requite it with the serpent's curse!\nFor, if she be not honest, chaste, and true,\nThere's no man happy; the purest of their wives\nIs foul as slander.\n\nOTHELLO:\nBid her come hither: go.\nShe says enough; yet she's a simple bawd\nThat cannot say as much. This is a subtle whore,\nA closet lock and key of villanous secrets\nAnd yet she'll kneel and pray; I have seen her do't.\n\nDESDEMONA:\nMy lord, what is your will?\n\nOTHELLO:\nPray, chuck, come hither.\n\nDESDEMONA:\nWhat is your pleasure?\n\nOTHELLO:\nLet me see your eyes;\nLook in my face.\n\nDESDEMONA:\nWhat horrible fancy's this?\n\nOTHELLO:\n\nDESDEMONA:\nUpon my knees, what doth your speech import?\nI understand a fury in your words.\nBut not the words.\n\nOTHELLO:\nWhy, what art thou?\n\nDESDEMONA:\nYour wife, my lord; your true\nAnd loyal wife.\n\nOTHELLO:\nCome, swear it, damn thyself\nLest, being like one of heaven, the devils themselves\nShould fear to seize thee: therefore be double damn'd:\nSwear thou art honest.\n\nDESDEMONA:\nHeaven doth truly know it.\n\nOTHELLO:\nHeaven truly knows that thou art false as hell.\n\nDESDEMONA:\nTo whom, my lord? with whom? how am I false?\n\nOTHELLO:\nO Desdemona! away! away! away!\n\nDESDEMONA:\nAlas the heavy day! Why do you weep?\nAm I the motive of these tears, my lord?\nIf haply you my father do suspect\nAn instrument of this your calling back,\nLay not your blame on me: If you have lost him,\nWhy, I have lost him too.\n\nOTHELLO:\nHad it pleased heaven\nTo try me with affliction; had they rain'd\nAll kinds of sores and shames on my bare head.\nSteep'd me in poverty to the very lips,\nGiven to captivity me and my utmost hopes,\nI should have found in some place of my soul\nA drop of patience: but, alas, to make me\nA fixed figure for the time of scorn\nTo point his slow unmoving finger at!\nYet could I bear that too; well, very well:\nBut there, where I have garner'd up my heart,\nWhere either I must live, or bear no life;\nThe fountain from the which my current runs,\nOr else dries up; to be discarded thence!\nOr keep it as a cistern for foul toads\nTo knot and gender in! Turn thy complexion there,\nPatience, thou young and rose-lipp'd cherubin,--\nAy, there, look grim as hell!\n\nDESDEMONA:\nI hope my noble lord esteems me honest.\n\nOTHELLO:\nO, ay; as summer flies are in the shambles,\nThat quicken even with blowing. O thou weed,\nWho art so lovely fair and smell'st so sweet\nThat the sense aches at thee, would thou hadst\nne'er been born!\n\nDESDEMONA:\nAlas, what ignorant sin have I committed?\n\nOTHELLO:\nWas this fair paper, this most goodly book,\nMade to write 'whore' upon? What committed!\nCommitted! O thou public commoner!\nI should make very forges of my cheeks,\nThat would to cinders burn up modesty,\nDid I but speak thy deeds. What committed!\nHeaven stops the nose at it and the moon winks,\nThe bawdy wind that kisses all it meets\nIs hush'd within the hollow mine of earth,\nAnd will not hear it. What committed!\nImpudent strumpet!\n\nDESDEMONA:\nBy heaven, you do me wrong.\n\nOTHELLO:\nAre you not a strumpet?\n\nDESDEMONA:\nNo, as I am a Christian:\nIf to preserve this vessel for my lord\nFrom any other foul unlawful touch\nBe not to be a strumpet, I am none.\n\nOTHELLO:\nWhat, not a whore?\n\nDESDEMONA:\nNo, as I shall be saved.\n\nOTHELLO:\nIs't possible?\n\nDESDEMONA:\nO, heaven forgive us!\n\nOTHELLO:\nI cry you mercy, then:\nI took you for that cunning whore of Venice\nThat married with Othello.\nYou, mistress,\nThat have the office opposite to Saint Peter,\nAnd keep the gate of hell!\nYou, you, ay, you!\nWe have done our course; there's money for your pains:\nI pray you, turn the key and keep our counsel.\n\nEMILIA:\nAlas, what does this gentleman conceive?\nHow do you, madam? how do you, my good lady?\n\nDESDEMONA:\n'Faith, half asleep.\n\nEMILIA:\nGood madam, what's the matter with my lord?\n\nDESDEMONA:\nWith who?\n\nEMILIA:\nWhy, with my lord, madam.\n\nDESDEMONA:\nWho is thy lord?\n\nEMILIA:\nHe that is yours, sweet lady.\n\nDESDEMONA:\nI have none: do not talk to me, Emilia;\nI cannot weep; nor answer have I none,\nBut what should go by water. Prithee, tonight\nLay on my bed my wedding sheets: remember;\nAnd call thy husband hither.\n\nEMILIA:\nHere's a change indeed!\n\nDESDEMONA:\n'Tis meet I should be used so, very meet.\nHow have I been behaved, that he might stick\nThe small'st opinion on my least misuse?\n\nIAGO:\nWhat is your pleasure, madam?\nHow is't with you?\n\nDESDEMONA:\nI cannot tell. Those that do teach young babes\nDo it with gentle means and easy tasks:\nHe might have chid me so; for, in good faith,\nI am a child to chiding.\n\nIAGO:\nWhat's the matter, lady?\n\nEMILIA:\nAlas, Iago, my lord hath so bewhored her.\nThrown such despite and heavy terms upon her,\nAs true hearts cannot bear.\n\nDESDEMONA:\nAm I that name, Iago?\n\nIAGO:\nWhat name, fair lady?\n\nDESDEMONA:\nSuch as she says my lord did say I was.\n\nEMILIA:\nHe call'd her whore: a beggar in his drink\nCould not have laid such terms upon his callat.\n\nIAGO:\nWhy did he so?\n\nDESDEMONA:\nI do not know; I am sure I am none such.\n\nIAGO:\nDo not weep, do not weep. Alas the day!\n\nEMILIA:\nHath she forsook so many noble matches,\nHer father and her country and her friends,\nTo be call'd whore? would it not make one weep?\n\nDESDEMONA:\nIt is my wretched fortune.\n\nIAGO:\nBeshrew him for't!\nHow comes this trick upon him?\n\nDESDEMONA:\nNay, heaven doth know.\n\nEMILIA:\nI will be hang'd, if some eternal villain,\nSome busy and insinuating rogue,\nSome cogging, cozening slave, to get some office,\nHave not devised this slander; I'll be hang'd else.\n\nIAGO:\nFie, there is no such man; it is impossible.\n\nDESDEMONA:\nIf any such there be, heaven pardon him!\n\nEMILIA:\nA halter pardon him! and hell gnaw his bones!\nWhy should he call her whore? who keeps her company?\nWhat place? what time? what form? what likelihood?\nThe Moor's abused by some most villanous knave,\nSome base notorious knave, some scurvy fellow.\nO heaven, that such companions thou'ldst unfold,\nAnd put in every honest hand a whip\nTo lash the rascals naked through the world\nEven from the east to the west!\n\nIAGO:\nSpeak within door.\n\nEMILIA:\nO, fie upon them! Some such squire he was\nThat turn'd your wit the seamy side without,\nAnd made you to suspect me with the Moor.\n\nIAGO:\nYou are a fool; go to.\n\nDESDEMONA:\nO good Iago,\nWhat shall I do to win my lord again?\nGood friend, go to him; for, by this light of heaven,\nI know not how I lost him. Here I kneel:\nIf e'er my will did trespass 'gainst his love,\nEither in discourse of thought or actual deed,\nOr that mine eyes, mine ears, or any sense,\nDelighted them in any other form;\nOr that I do not yet, and ever did.\nAnd ever will--though he do shake me off\nTo beggarly divorcement--love him dearly,\nComfort forswear me! Unkindness may do much;\nAnd his unkindness may defeat my life,\nBut never taint my love. I cannot say 'whore:'\nIt does abhor me now I speak the word;\nTo do the act that might the addition earn\nNot the world's mass of vanity could make me.\n\nIAGO:\nI pray you, be content; 'tis but his humour:\nThe business of the state does him offence,\nAnd he does chide with you.\n\nDESDEMONA:\nIf 'twere no other--\n\nIAGO:\n'Tis but so, I warrant.\nHark, how these instruments summon to supper!\nThe messengers of Venice stay the meat;\nGo in, and weep not; all things shall be well.\nHow now, Roderigo!\n\nRODERIGO:\nI do not find that thou dealest justly with me.\n\nIAGO:\nWhat in the contrary?\n\nRODERIGO:\nEvery day thou daffest me with some device, Iago;\nand rather, as it seems to me now, keepest from me\nall conveniency than suppliest me with the least\nadvantage of hope. I will indeed no longer endure\nit, nor am I yet persuaded to put up in peace what\nalready I have foolishly suffered.\n\nIAGO:\nWill you hear me, Roderigo?\n\nRODERIGO:\n'Faith, I have heard too much, for your words and\nperformances are no kin together.\n\nIAGO:\nYou charge me most unjustly.\n\nRODERIGO:\nWith nought but truth. I have wasted myself out of\nmy means. The jewels you have had from me to\ndeliver to Desdemona would half have corrupted a\nvotarist: you have told me she hath received them\nand returned me expectations and comforts of sudden\nrespect and acquaintance, but I find none.\n\nIAGO:\nWell; go to; very well.\n\nRODERIGO:\nVery well! go to! I cannot go to, man; nor 'tis\nnot very well: nay, I think it is scurvy, and begin\nto find myself fobbed in it.\n\nIAGO:\nVery well.\n\nRODERIGO:\nI tell you 'tis not very well. I will make myself\nknown to Desdemona: if she will return me my\njewels, I will give over my suit and repent my\nunlawful solicitation; if not, assure yourself I\nwill seek satisfaction of you.\n\nIAGO:\nYou have said now.\n\nRODERIGO:\nAy, and said nothing but what I protest intendment of doing.\n\nIAGO:\nWhy, now I see there's mettle in thee, and even from\nthis instant to build on thee a better opinion than\never before. Give me thy hand, Roderigo: thou hast\ntaken against me a most just exception; but yet, I\nprotest, I have dealt most directly in thy affair.\n\nRODERIGO:\nIt hath not appeared.\n\nIAGO:\nI grant indeed it hath not appeared, and your\nsuspicion is not without wit and judgment. But,\nRoderigo, if thou hast that in thee indeed, which I\nhave greater reason to believe now than ever, I mean\npurpose, courage and valour, this night show it: if\nthou the next night following enjoy not Desdemona,\ntake me from this world with treachery and devise\nengines for my life.\n\nRODERIGO:\nWell, what is it? is it within reason and compass?\n\nIAGO:\nSir, there is especial commission come from Venice\nto depute Cassio in Othello's place.\n\nRODERIGO:\nIs that true? why, then Othello and Desdemona\nreturn again to Venice.\n\nIAGO:\nO, no; he goes into Mauritania and takes away with\nhim the fair Desdemona, unless his abode be\nlingered here by some accident: wherein none can be\nso determinate as the removing of Cassio.\n\nRODERIGO:\nHow do you mean, removing of him?\n\nIAGO:\nWhy, by making him uncapable of Othello's place;\nknocking out his brains.\n\nRODERIGO:\nAnd that you would have me to do?\n\nIAGO:\nAy, if you dare do yourself a profit and a right.\nHe sups to-night with a harlotry, and thither will I\ngo to him: he knows not yet of his horrorable\nfortune. If you will watch his going thence, which\nI will fashion to fall out between twelve and one,\nyou may take him at your pleasure: I will be near\nto second your attempt, and he shall fall between\nus. Come, stand not amazed at it, but go along with\nme; I will show you such a necessity in his death\nthat you shall think yourself bound to put it on\nhim. It is now high suppertime, and the night grows\nto waste: about it.\n\nRODERIGO:\nI will hear further reason for this.\n\nIAGO:\nAnd you shall be satisfied.\n\nLODOVICO:\nI do beseech you, sir, trouble yourself no further.\n\nOTHELLO:\nO, pardon me: 'twill do me good to walk.\n\nLODOVICO:\nMadam, good night; I humbly thank your ladyship.\n\nDESDEMONA:\nYour honour is most welcome.\n\nOTHELLO:\nWill you walk, sir?\nO,--Desdemona,--\n\nDESDEMONA:\nMy lord?\n\nOTHELLO:\nGet you to bed on the instant; I will be returned\nforthwith: dismiss your attendant there: look it be done.\n\nDESDEMONA:\nI will, my lord.\n\nEMILIA:\nHow goes it now? he looks gentler than he did.\n\nDESDEMONA:\nHe says he will return incontinent:\nHe hath commanded me to go to bed,\nAnd bade me to dismiss you.\n\nEMILIA:\nDismiss me!\n\nDESDEMONA:\nIt was his bidding: therefore, good Emilia,.\nGive me my nightly wearing, and adieu:\nWe must not now displease him.\n\nEMILIA:\nI would you had never seen him!\n\nDESDEMONA:\nSo would not I my love doth so approve him,\nThat even his stubbornness, his cheques, his frowns--\nPrithee, unpin me,--have grace and favour in them.\n\nEMILIA:\nI have laid those sheets you bade me on the bed.\n\nDESDEMONA:\nAll's one. Good faith, how foolish are our minds!\nIf I do die before thee prithee, shroud me\nIn one of those same sheets.\n\nEMILIA:\nCome, come you talk.\n\nDESDEMONA:\nMy mother had a maid call'd Barbara:\nShe was in love, and he she loved proved mad\nAnd did forsake her: she had a song of 'willow;'\nAn old thing 'twas, but it express'd her fortune,\nAnd she died singing it: that song to-night\nWill not go from my mind; I have much to do,\nBut to go hang my head all at one side,\nAnd sing it like poor Barbara. Prithee, dispatch.\n\nEMILIA:\nShall I go fetch your night-gown?\n\nDESDEMONA:\nNo, unpin me here.\nThis Lodovico is a proper man.\n\nEMILIA:\nA very handsome man.\n\nDESDEMONA:\nHe speaks well.\n\nEMILIA:\nI know a lady in Venice would have walked barefoot\nto Palestine for a touch of his nether lip.\n\nDESDEMONA:\n\nEMILIA:\nIt's the wind.\n\nDESDEMONA:\n\nEMILIA:\n'Tis neither here nor there.\n\nDESDEMONA:\nI have heard it said so. O, these men, these men!\nDost thou in conscience think,--tell me, Emilia,--\nThat there be women do abuse their husbands\nIn such gross kind?\n\nEMILIA:\nThere be some such, no question.\n\nDESDEMONA:\nWouldst thou do such a deed for all the world?\n\nEMILIA:\nWhy, would not you?\n\nDESDEMONA:\nNo, by this heavenly light!\n\nEMILIA:\nNor I neither by this heavenly light;\nI might do't as well i' the dark.\n\nDESDEMONA:\nWouldst thou do such a deed for all the world?\n\nEMILIA:\nThe world's a huge thing: it is a great price.\nFor a small vice.\n\nDESDEMONA:\nIn troth, I think thou wouldst not.\n\nEMILIA:\nIn troth, I think I should; and undo't when I had\ndone. Marry, I would not do such a thing for a\njoint-ring, nor for measures of lawn, nor for\ngowns, petticoats, nor caps, nor any petty\nexhibition; but for the whole world,--why, who would\nnot make her husband a cuckold to make him a\nmonarch? I should venture purgatory for't.\n\nDESDEMONA:\nBeshrew me, if I would do such a wrong\nFor the whole world.\n\nEMILIA:\nWhy the wrong is but a wrong i' the world: and\nhaving the world for your labour, tis a wrong in your\nown world, and you might quickly make it right.\n\nDESDEMONA:\nI do not think there is any such woman.\n\nEMILIA:\nYes, a dozen; and as many to the vantage as would\nstore the world they played for.\nBut I do think it is their husbands' faults\nIf wives do fall: say that they slack their duties,\nAnd pour our treasures into foreign laps,\nOr else break out in peevish jealousies,\nThrowing restraint upon us; or say they strike us,\nOr scant our former having in despite;\nWhy, we have galls, and though we have some grace,\nYet have we some revenge. Let husbands know\nTheir wives have sense like them: they see and smell\nAnd have their palates both for sweet and sour,\nAs husbands have. What is it that they do\nWhen they change us for others? Is it sport?\nI think it is: and doth affection breed it?\nI think it doth: is't frailty that thus errs?\nIt is so too: and have not we affections,\nDesires for sport, and frailty, as men have?\nThen let them use us well: else let them know,\nThe ills we do, their ills instruct us so.\n\nDESDEMONA:\nGood night, good night: heaven me such uses send,\nNot to pick bad from bad, but by bad mend!\n\nIAGO:\nHere, stand behind this bulk; straight will he come:\nWear thy good rapier bare, and put it home:\nQuick, quick; fear nothing; I'll be at thy elbow:\nIt makes us, or it mars us; think on that,\nAnd fix most firm thy resolution.\n\nRODERIGO:\nBe near at hand; I may miscarry in't.\n\nIAGO:\nHere, at thy hand: be bold, and take thy stand.\n\nRODERIGO:\nI have no great devotion to the deed;\nAnd yet he hath given me satisfying reasons:\n'Tis but a man gone. Forth, my sword: he dies.\n\nIAGO:\nI have rubb'd this young quat almost to the sense,\nAnd he grows angry. Now, whether he kill Cassio,\nOr Cassio him, or each do kill the other,\nEvery way makes my gain: live Roderigo,\nHe calls me to a restitution large\nOf gold and jewels that I bobb'd from him,\nAs gifts to Desdemona;\nIt must not be: if Cassio do remain,\nHe hath a daily beauty in his life\nThat makes me ugly; and, besides, the Moor\nMay unfold me to him; there stand I in much peril:\nNo, he must die. But so: I hear him coming.\n\nRODERIGO:\nI know his gait, 'tis he.--Villain, thou diest!\n\nCASSIO:\nThat thrust had been mine enemy indeed,\nBut that my coat is better than thou know'st\nI will make proof of thine.\n\nRODERIGO:\nO, I am slain!\n\nCASSIO:\nI am maim'd for ever. Help, ho! murder! murder!\n\nOTHELLO:\nThe voice of Cassio: Iago keeps his word.\n\nRODERIGO:\nO, villain that I am!\n\nOTHELLO:\nIt is even so.\n\nCASSIO:\nO, help, ho! light! a surgeon!\n\nOTHELLO:\n'Tis he:--O brave Iago, honest and just,\nThat hast such noble sense of thy friend's wrong!\nThou teachest me. Minion, your dear lies dead,\nAnd your unblest fate hies: strumpet, I come.\nForth of my heart those charms, thine eyes, are blotted;\nThy bed, lust-stain'd, shall with lust's blood be spotted.\n\nCASSIO:\nWhat, ho! no watch? no passage? murder! murder!\n\nGRATIANO:\n'Tis some mischance; the cry is very direful.\n\nCASSIO:\nO, help!\n\nLODOVICO:\nHark!\n\nRODERIGO:\nO wretched villain!\n\nLODOVICO:\nTwo or three groan: it is a heavy night:\nThese may be counterfeits: let's think't unsafe\nTo come in to the cry without more help.\n\nRODERIGO:\nNobody come? then shall I bleed to death.\n\nLODOVICO:\nHark!\n\nGRATIANO:\nHere's one comes in his shirt, with light and weapons.\n\nIAGO:\nWho's there? whose noise is this that ones on murder?\n\nLODOVICO:\nWe do not know.\n\nIAGO:\nDid not you hear a cry?\n\nCASSIO:\nHere, here! for heaven's sake, help me!\n\nIAGO:\nWhat's the matter?\n\nGRATIANO:\nThis is Othello's ancient, as I take it.\n\nLODOVICO:\nThe same indeed; a very valiant fellow.\n\nIAGO:\nWhat are you here that cry so grievously?\n\nCASSIO:\nIago? O, I am spoil'd, undone by villains!\nGive me some help.\n\nIAGO:\nO me, lieutenant! what villains have done this?\n\nCASSIO:\nI think that one of them is hereabout,\nAnd cannot make away.\n\nIAGO:\nO treacherous villains!\nWhat are you there? come in, and give some help.\n\nRODERIGO:\nO, help me here!\n\nCASSIO:\nThat's one of them.\n\nIAGO:\nO murderous slave! O villain!\n\nRODERIGO:\nO damn'd Iago! O inhuman dog!\n\nIAGO:\nKill men i' the dark!--Where be these bloody thieves?--\nHow silent is this town!--Ho! murder! murder!--\nWhat may you be? are you of good or evil?\n\nLODOVICO:\nAs you shall prove us, praise us.\n\nIAGO:\nSignior Lodovico?\n\nLODOVICO:\nHe, sir.\n\nIAGO:\nI cry you mercy. Here's Cassio hurt by villains.\n\nGRATIANO:\nCassio!\n\nIAGO:\nHow is't, brother!\n\nCASSIO:\nMy leg is cut in two.\n\nIAGO:\nMarry, heaven forbid!\nLight, gentlemen; I'll bind it with my shirt.\n\nBIANCA:\nWhat is the matter, ho? who is't that cried?\n\nIAGO:\nWho is't that cried!\n\nBIANCA:\nO my dear Cassio! my sweet Cassio! O Cassio,\nCassio, Cassio!\n\nIAGO:\nO notable strumpet! Cassio, may you suspect\nWho they should be that have thus many led you?\n\nCASSIO:\nNo.\n\nGRATIANO:\nI am to find you thus: I have been to seek you.\n\nIAGO:\nLend me a garter. So. O, for a chair,\nTo bear him easily hence!\n\nBIANCA:\nAlas, he faints! O Cassio, Cassio, Cassio!\n\nIAGO:\nGentlemen all, I do suspect this trash\nTo be a party in this injury.\nPatience awhile, good Cassio. Come, come;\nLend me a light. Know we this face or no?\nAlas my friend and my dear countryman\nRoderigo! no:--yes, sure: O heaven! Roderigo.\n\nGRATIANO:\nWhat, of Venice?\n\nIAGO:\nEven he, sir; did you know him?\n\nGRATIANO:\nKnow him! ay.\n\nIAGO:\nSignior Gratiano? I cry you gentle pardon;\nThese bloody accidents must excuse my manners,\nThat so neglected you.\n\nGRATIANO:\nI am glad to see you.\n\nIAGO:\nHow do you, Cassio? O, a chair, a chair!\n\nGRATIANO:\nRoderigo!\n\nIAGO:\nHe, he 'tis he.\nO, that's well said; the chair!\n\nGRATIANO:\nSome good man bear him carefully from hence;\nI'll fetch the general's surgeon.\nFor you, mistress,\nSave you your labour. He that lies slain\nhere, Cassio,\nWas my dear friend: what malice was between you?\n\nCASSIO:\nNone in the world; nor do I know the man.\n\nIAGO:\n\nEMILIA:\n'Las, what's the matter? what's the matter, husband?\n\nIAGO:\nCassio hath here been set on in the dark\nBy Roderigo and fellows that are scaped:\nHe's almost slain, and Roderigo dead.\n\nEMILIA:\nAlas, good gentleman! alas, good Cassio!\n\nIAGO:\nThis is the fruit of whoring. Prithee, Emilia,\nGo know of Cassio where he supp'd to-night.\nWhat, do you shake at that?\n\nBIANCA:\nHe supp'd at my house; but I therefore shake not.\n\nIAGO:\nO, did he so? I charge you, go with me.\n\nEMILIA:\nFie, fie upon thee, strumpet!\n\nBIANCA:\nI am no strumpet; but of life as honest\nAs you that thus abuse me.\n\nEMILIA:\nAs I! foh! fie upon thee!\n\nIAGO:\nKind gentlemen, let's go see poor Cassio dress'd.\nCome, mistress, you must tell's another tale.\nEmilia run you to the citadel,\nAnd tell my lord and lady what hath happ'd.\nWill you go on? I pray.\nThis is the night\nThat either makes me or fordoes me quite.\n\nOTHELLO:\nIt is the cause, it is the cause, my soul,--\nLet me not name it to you, you chaste stars!--\nIt is the cause. Yet I'll not shed her blood;\nNor scar that whiter skin of hers than snow,\nAnd smooth as monumental alabaster.\nYet she must die, else she'll betray more men.\nPut out the light, and then put out the light:\nIf I quench thee, thou flaming minister,\nI can again thy former light restore,\nShould I repent me: but once put out thy light,\nThou cunning'st pattern of excelling nature,\nI know not where is that Promethean heat\nThat can thy light relume. When I have pluck'd the rose,\nI cannot give it vital growth again.\nIt must needs wither: I'll smell it on the tree.\nAh balmy breath, that dost almost persuade\nJustice to break her sword! One more, one more.\nBe thus when thou art dead, and I will kill thee,\nAnd love thee after. One more, and this the last:\nSo sweet was ne'er so fatal. I must weep,\nBut they are cruel tears: this sorrow's heavenly;\nIt strikes where it doth love. She wakes.\n\nDESDEMONA:\nWho's there? Othello?\n\nOTHELLO:\nAy. Desdemona.\n\nDESDEMONA:\nWill you come to bed, my lord?\n\nOTHELLO:\nHave you pray'd to-night, Desdemona?\n\nDESDEMONA:\nAy, my lord.\n\nOTHELLO:\nIf you bethink yourself of any crime\nUnreconciled as yet to heaven and grace,\nSolicit for it straight.\n\nDESDEMONA:\nAlas, my lord, what do you mean by that?\n\nOTHELLO:\nWell, do it, and be brief; I will walk by:\nI would not kill thy unprepared spirit;\nNo; heaven forfend! I would not kill thy soul.\n\nDESDEMONA:\nTalk you of killing?\n\nOTHELLO:\nAy, I do.\n\nDESDEMONA:\nThen heaven\nHave mercy on me!\n\nOTHELLO:\nAmen, with all my heart!\n\nDESDEMONA:\nIf you say so, I hope you will not kill me.\n\nOTHELLO:\nHum!\n\nDESDEMONA:\nAnd yet I fear you; for you are fatal then\nWhen your eyes roll so: why I should fear I know not,\nSince guiltiness I know not; but yet I feel I fear.\n\nOTHELLO:\nThink on thy sins.\n\nDESDEMONA:\nThey are loves I bear to you.\n\nOTHELLO:\nAy, and for that thou diest.\n\nDESDEMONA:\nThat death's unnatural that kills for loving.\nAlas, why gnaw you so your nether lip?\nSome bloody passion shakes your very frame:\nThese are portents; but yet I hope, I hope,\nThey do not point on me.\n\nOTHELLO:\nPeace, and be still!\n\nDESDEMONA:\nI will so. What's the matter?\n\nOTHELLO:\nThat handkerchief which I so loved and gave thee\nThou gavest to Cassio.\n\nDESDEMONA:\nNo, by my life and soul!\nSend for the man, and ask him.\n\nOTHELLO:\nSweet soul, take heed,\nTake heed of perjury; thou art on thy deathbed.\n\nDESDEMONA:\nAy, but not yet to die.\n\nOTHELLO:\nYes, presently:\nTherefore confess thee freely of thy sin;\nFor to deny each article with oath\nCannot remove nor choke the strong conception\nThat I do groan withal. Thou art to die.\n\nDESDEMONA:\nThen Lord have mercy on me!\n\nOTHELLO:\nI say, amen.\n\nDESDEMONA:\nAnd have you mercy too! I never did\nOffend you in my life; never loved Cassio\nBut with such general warranty of heaven\nAs I might love: I never gave him token.\n\nOTHELLO:\nBy heaven, I saw my handkerchief in's hand.\nO perjured woman! thou dost stone my heart,\nAnd makest me call what I intend to do\nA murder, which I thought a sacrifice:\nI saw the handkerchief.\n\nDESDEMONA:\nHe found it then;\nI never gave it him: send for him hither;\nLet him confess a truth.\n\nOTHELLO:\nHe hath confess'd.\n\nDESDEMONA:\nWhat, my lord?\n\nOTHELLO:\nThat he hath used thee.\n\nDESDEMONA:\nHow? unlawfully?\n\nOTHELLO:\nAy.\n\nDESDEMONA:\nHe will not say so.\n\nOTHELLO:\nNo, his mouth is stopp'd;\nHonest Iago hath ta'en order for't.\n\nDESDEMONA:\nO! my fear interprets: what, is he dead?\n\nOTHELLO:\nHad all his hairs been lives, my great revenge\nHad stomach for them all.\n\nDESDEMONA:\nAlas! he is betray'd and I undone.\n\nOTHELLO:\nOut, strumpet! weep'st thou for him to my face?\n\nDESDEMONA:\nO, banish me, my lord, but kill me not!\n\nOTHELLO:\nDown, strumpet!\n\nDESDEMONA:\nKill me to-morrow: let me live to-night!\n\nOTHELLO:\nNay, if you strive--\n\nDESDEMONA:\nBut half an hour!\n\nOTHELLO:\nBeing done, there is no pause.\n\nDESDEMONA:\nBut while I say one prayer!\n\nOTHELLO:\nIt is too late.\n\nEMILIA:\n\nOTHELLO:\nWhat noise is this? Not dead? not yet quite dead?\nI that am cruel am yet merciful;\nI would not have thee linger in thy pain: So, so.\n\nEMILIA:\n\nOTHELLO:\nWho's there?\n\nEMILIA:\n\nOTHELLO:\nYes: 'tis Emilia. By and by. She's dead.\n'Tis like she comes to speak of Cassio's death.--\nThe noise was here. Ha! no more moving?\nStill as the grave. Shall she come in? were't good?--\nI think she stirs again:--no. What's best to do?\nIf she come in, she'll sure speak to my wife:\nMy wife! my wife! what wife? I have no wife.\nO insupportable! O heavy hour!\nMethinks it should be now a huge eclipse\nOf sun and moon, and that the affrighted globe\nShould yawn at alteration.\n\nEMILIA:\n\nOTHELLO:\nI had forgot thee: O, come in, Emilia;\nSoft; by and by. Let me the curtains draw.\nWhere art thou?\nWhat's the matter with thee now?\n\nEMILIA:\nO, my good lord, yonder's foul murders done!\n\nOTHELLO:\nWhat, now?\n\nEMILIA:\nBut now, my lord.\n\nOTHELLO:\nIt is the very error of the moon;\nShe comes more nearer earth than she was wont,\nAnd makes men mad.\n\nEMILIA:\nCassio, my lord, hath kill'd a young Venetian\nCall'd Roderigo.\n\nOTHELLO:\nRoderigo kill'd!\nAnd Cassio kill'd!\n\nEMILIA:\nNo, Cassio is not kill'd.\n\nOTHELLO:\nNot Cassio kill'd! then murder's out of tune,\nAnd sweet revenge grows harsh.\n\nDESDEMONA:\nO, falsely, falsely murder'd!\n\nEMILIA:\nAlas, what cry is that?\n\nOTHELLO:\nThat! what?\n\nEMILIA:\nOut, and alas! that was my lady's voice.\nHelp! help, ho! help! O lady, speak again!\nSweet Desdemona! O sweet mistress, speak!\n\nDESDEMONA:\nA guiltless death I die.\n\nEMILIA:\nO, who hath done this deed?\n\nDESDEMONA:\nNobody; I myself. Farewell\nCommend me to my kind lord: O, farewell!\n\nOTHELLO:\nWhy, how should she be murder'd?\n\nEMILIA:\nAlas, who knows?\n\nOTHELLO:\nYou heard her say herself, it was not I.\n\nEMILIA:\nShe said so: I must needs report the truth.\n\nOTHELLO:\nShe's, like a liar, gone to burning hell:\n'Twas I that kill'd her.\n\nEMILIA:\nO, the more angel she,\nAnd you the blacker devil!\n\nOTHELLO:\nShe turn'd to folly, and she was a whore.\n\nEMILIA:\nThou dost belie her, and thou art a devil.\n\nOTHELLO:\nShe was false as water.\n\nEMILIA:\nThou art rash as fire, to say\nThat she was false: O, she was heavenly true!\n\nOTHELLO:\nCassio did top her; ask thy husband else.\nO, I were damn'd beneath all depth in hell,\nBut that I did proceed upon just grounds\nTo this extremity. Thy husband knew it all.\n\nEMILIA:\nMy husband!\n\nOTHELLO:\nThy husband.\n\nEMILIA:\nThat she was false to wedlock?\n\nOTHELLO:\nAy, with Cassio. Nay, had she been true,\nIf heaven would make me such another world\nOf one entire and Perfect chrysolite,\nI'ld not have sold her for it.\n\nEMILIA:\nMy husband!\n\nOTHELLO:\nAy, 'twas he that told me first:\nAn honest man he is, and hates the slime\nThat sticks on filthy deeds.\n\nEMILIA:\nMy husband!\n\nOTHELLO:\nWhat needs this iteration, woman? I say thy husband.\n\nEMILIA:\nO mistress, villany hath made mocks with love,\nMy husband say that she was false!\n\nOTHELLO:\nHe, woman;\nI say thy husband: dost understand the word?\nMy friend, thy husband, honest, honest Iago.\n\nEMILIA:\nIf he say so, may his pernicious soul\nRot half a grain a day! he lies to the heart:\nShe was too fond of her most filthy bargain.\n\nOTHELLO:\nHa!\n\nEMILIA:\nDo thy worst:\nThis deed of thine is no more worthy heaven\nThan thou wast worthy her.\n\nOTHELLO:\nPeace, you were best.\n\nEMILIA:\nThou hast not half that power to do me harm\nAs I have to be hurt. O gull! O dolt!\nAs ignorant as dirt! thou hast done a deed--\nI care not for thy sword; I'll make thee known,\nThough I lost twenty lives.--Help! help, ho! help!\nThe Moor hath kill'd my mistress! Murder! murder!\n\nMONTANO:\nWhat is the matter? How now, general!\n\nEMILIA:\nO, are you come, Iago? you have done well,\nThat men must lay their murders on your neck.\n\nGRATIANO:\nWhat is the matter?\n\nEMILIA:\nDisprove this villain, if thou be'st a man:\nHe says thou told'st him that his wife was false:\nI know thou didst not, thou'rt not such a villain:\nSpeak, for my heart is full.\n\nIAGO:\nI told him what I thought, and told no more\nThan what he found himself was apt and true.\n\nEMILIA:\nBut did you ever tell him she was false?\n\nIAGO:\nI did.\n\nEMILIA:\nYou told a lie, an odious, damned lie;\nUpon my soul, a lie, a wicked lie.\nShe false with Cassio!--did you say with Cassio?\n\nIAGO:\nWith Cassio, mistress. Go to, charm your tongue.\n\nEMILIA:\nI will not charm my tongue; I am bound to speak:\nMy mistress here lies murder'd in her bed,--\n\nAll:\nO heavens forfend!\n\nEMILIA:\nAnd your reports have set the murder on.\n\nOTHELLO:\nNay, stare not, masters: it is true, indeed.\n\nGRATIANO:\n'Tis a strange truth.\n\nMONTANO:\nO monstrous act!\n\nEMILIA:\nVillany, villany, villany!\nI think upon't, I think: I smell't: O villany!--\nI thought so then:--I'll kill myself for grief:--\nO villany, villany!\n\nIAGO:\nWhat, are you mad? I charge you, get you home.\n\nEMILIA:\nGood gentlemen, let me have leave to speak:\n'Tis proper I obey him, but not now.\nPerchance, Iago, I will ne'er go home.\n\nOTHELLO:\nO! O! O!\n\nEMILIA:\nNay, lay thee down and roar;\nFor thou hast kill'd the sweetest innocent\nThat e'er did lift up eye.\n\nOTHELLO:\n\nGRATIANO:\nPoor Desdemona! I am glad thy father's dead:\nThy match was mortal to him, and pure grief\nShore his old thread in twain: did he live now,\nThis sight would make him do a desperate turn,\nYea, curse his better angel from his side,\nAnd fall to reprobation.\n\nOTHELLO:\n'Tis pitiful; but yet Iago knows\nThat she with Cassio hath the act of shame\nA thousand times committed; Cassio confess'd it:\nAnd she did gratify his amorous works\nWith that recognizance and pledge of love\nWhich I first gave her; I saw it in his hand:\nIt was a handkerchief, an antique token\nMy father gave my mother.\n\nEMILIA:\nO heaven! O heavenly powers!\n\nIAGO:\nCome, hold your peace.\n\nEMILIA:\n'Twill out, 'twill out: I peace!\nNo, I will speak as liberal as the north:\nLet heaven and men and devils, let them all,\nAll, all, cry shame against me, yet I'll speak.\n\nIAGO:\nBe wise, and get you home.\n\nEMILIA:\nI will not.\n\nGRATIANO:\nFie!\nYour sword upon a woman?\n\nEMILIA:\nO thou dull Moor! that handkerchief thou speak'st of\nI found by fortune and did give my husband;\nFor often, with a solemn earnestness,\nMore than indeed belong'd to such a trifle,\nHe begg'd of me to steal it.\n\nIAGO:\nVillanous whore!\n\nEMILIA:\nShe give it Cassio! no, alas! I found it,\nAnd I did give't my husband.\n\nIAGO:\nFilth, thou liest!\n\nEMILIA:\nBy heaven, I do not, I do not, gentlemen.\nO murderous coxcomb! what should such a fool\nDo with so good a woman?\n\nOTHELLO:\nAre there no stones in heaven\nBut what serve for the thunder?--Precious villain!\n\nGRATIANO:\nThe woman falls; sure, he hath kill'd his wife.\n\nEMILIA:\nAy, ay: O, lay me by my mistress' side.\n\nGRATIANO:\nHe's gone, but his wife's kill'd.\n\nMONTANO:\n'Tis a notorious villain. Take you this weapon,\nWhich I have here recover'd from the Moor:\nCome, guard the door without; let him not pass,\nBut kill him rather. I'll after that same villain,\nFor 'tis a damned slave.\n\nOTHELLO:\nI am not valiant neither,\nBut ever puny whipster gets my sword:\nBut why should honour outlive honesty?\nLet it go all.\n\nEMILIA:\nWhat did thy song bode, lady?\nHark, canst thou hear me? I will play the swan.\nAnd die in music.\nWillow, willow, willow,--\nMoor, she was chaste; she loved thee, cruel Moor;\nSo come my soul to bliss, as I speak true;\nSo speaking as I think, I die, I die.\n\nOTHELLO:\nI have another weapon in this chamber;\nIt is a sword of Spain, the ice-brook's temper:--\nO, here it is. Uncle, I must come forth.\n\nGRATIANO:\n\nOTHELLO:\nLook in upon me then and speak with me,\nOr, naked as I am, I will assault thee.\n\nGRATIANO:\nWhat is the matter?\n\nOTHELLO:\nBehold, I have a weapon;\nA better never did itself sustain\nUpon a soldier's thigh: I have seen the day,\nThat, with this little arm and this good sword,\nI have made my way through more impediments\nThan twenty times your stop: but, O vain boast!\nWho can control his fate? 'tis not so now.\nBe not afraid, though you do see me weapon'd;\nHere is my journey's end, here is my butt,\nAnd very sea-mark of my utmost sail.\nDo you go back dismay'd? 'tis a lost fear;\nMan but a rush against Othello's breast,\nAnd he retires. Where should Othello go?\nNow, how dost thou look now? O ill-starr'd wench!\nPale as thy smock! when we shall meet at compt,\nThis look of thine will hurl my soul from heaven,\nAnd fiends will snatch at it. Cold, cold, my girl!\nEven like thy chastity. O cursed slave!\nWhip me, ye devils,\nFrom the possession of this heavenly sight!\nBlow me about in winds! roast me in sulphur!\nWash me in steep-down gulfs of liquid fire!\nO Desdemona! Desdemona! dead!\nOh! Oh! Oh!\n\nLODOVICO:\nWhere is this rash and most unfortunate man?\n\nOTHELLO:\nThat's he that was Othello: here I am.\n\nLODOVICO:\nWhere is that viper? bring the villain forth.\n\nOTHELLO:\nI look down towards his feet; but that's a fable.\nIf that thou best a devil, I cannot kill thee.\n\nLODOVICO:\nWrench his sword from him.\n\nIAGO:\nI bleed, sir; but not kill'd.\n\nOTHELLO:\nI am not sorry neither: I'ld have thee live;\nFor, in my sense, 'tis happiness to die.\n\nLODOVICO:\nO thou Othello, thou wert once so good,\nFall'n in the practise of a damned slave,\nWhat shall be said to thee?\n\nOTHELLO:\nWhy, any thing:\nAn honourable murderer, if you will;\nFor nought I did in hate, but all in honour.\n\nLODOVICO:\nThis wretch hath part confess'd his villany:\nDid you and he consent in Cassio's death?\n\nOTHELLO:\nAy.\n\nCASSIO:\nDear general, I never gave you cause.\n\nOTHELLO:\nI do believe it, and I ask your pardon.\nWill you, I pray, demand that demi-devil\nWhy he hath thus ensnared my soul and body?\n\nIAGO:\nDemand me nothing: what you know, you know:\nFrom this time forth I never will speak word.\n\nLODOVICO:\nWhat, not to pray?\n\nGRATIANO:\nTorments will ope your lips.\n\nOTHELLO:\nWell, thou dost best.\n\nLODOVICO:\nSir, you shall understand what hath befall'n,\nWhich, as I think, you know not. Here is a letter\nFound in the pocket of the slain Roderigo;\nAnd here another: the one of them imports\nThe death of Cassio to be undertook\nBy Roderigo.\n\nOTHELLO:\nO villain!\n\nCASSIO:\nMost heathenish and most gross!\n\nLODOVICO:\nNow here's another discontented paper,\nFound in his pocket too; and this, it seems,\nRoderigo meant to have sent this damned villain;\nBut that belike Iago in the interim\nCame in and satisfied him.\n\nOTHELLO:\nO the pernicious caitiff!\nHow came you, Cassio, by that handkerchief\nThat was my wife's?\n\nCASSIO:\nI found it in my chamber:\nAnd he himself confess'd but even now\nThat there he dropp'd it for a special purpose\nWhich wrought to his desire.\n\nOTHELLO:\nO fool! fool! fool!\n\nCASSIO:\nThere is besides in Roderigo's letter,\nHow he upbraids Iago, that he made him\nBrave me upon the watch; whereon it came\nThat I was cast: and even but now he spake,\nAfter long seeming dead, Iago hurt him,\nIago set him on.\n\nLODOVICO:\nYou must forsake this room, and go with us:\nYour power and your command is taken off,\nAnd Cassio rules in Cyprus. For this slave,\nIf there be any cunning cruelty\nThat can torment him much and hold him long,\nIt shall be his. You shall close prisoner rest,\nTill that the nature of your fault be known\nTo the Venetian state. Come, bring him away.\n\nOTHELLO:\nSoft you; a word or two before you go.\nI have done the state some service, and they know't.\nNo more of that. I pray you, in your letters,\nWhen you shall these unlucky deeds relate,\nSpeak of me as I am; nothing extenuate,\nNor set down aught in malice: then must you speak\nOf one that loved not wisely but too well;\nOf one not easily jealous, but being wrought\nPerplex'd in the extreme; of one whose hand,\nLike the base Indian, threw a pearl away\nRicher than all his tribe; of one whose subdued eyes,\nAlbeit unused to the melting mood,\nDrop tears as fast as the Arabian trees\nTheir medicinal gum. Set you down this;\nAnd say besides, that in Aleppo once,\nWhere a malignant and a turban'd Turk\nBeat a Venetian and traduced the state,\nI took by the throat the circumcised dog,\nAnd smote him, thus.\n\nLODOVICO:\nO bloody period!\n\nGRATIANO:\nAll that's spoke is marr'd.\n\nOTHELLO:\nI kiss'd thee ere I kill'd thee: no way but this;\nKilling myself, to die upon a kiss.\n\nCASSIO:\nThis did I fear, but thought he had no weapon;\nFor he was great of heart.\n\nLODOVICO:\n\nKING HENRY IV:\nSo shaken as we are, so wan with care,\nFind we a time for frighted peace to pant,\nAnd breathe short-winded accents of new broils\nTo be commenced in strands afar remote.\nNo more the thirsty entrance of this soil\nShall daub her lips with her own children's blood;\nNor more shall trenching war channel her fields,\nNor bruise her flowerets with the armed hoofs\nOf hostile paces: those opposed eyes,\nWhich, like the meteors of a troubled heaven,\nAll of one nature, of one substance bred,\nDid lately meet in the intestine shock\nAnd furious close of civil butchery\nShall now, in mutual well-beseeming ranks,\nMarch all one way and be no more opposed\nAgainst acquaintance, kindred and allies:\nThe edge of war, like an ill-sheathed knife,\nNo more shall cut his master. Therefore, friends,\nAs far as to the sepulchre of Christ,\nWhose soldier now, under whose blessed cross\nWe are impressed and engaged to fight,\nForthwith a power of English shall we levy;\nWhose arms were moulded in their mothers' womb\nTo chase these pagans in those holy fields\nOver whose acres walk'd those blessed feet\nWhich fourteen hundred years ago were nail'd\nFor our advantage on the bitter cross.\nBut this our purpose now is twelve month old,\nAnd bootless 'tis to tell you we will go:\nTherefore we meet not now. Then let me hear\nOf you, my gentle cousin Westmoreland,\nWhat yesternight our council did decree\nIn forwarding this dear expedience.\n\nWESTMORELAND:\nMy liege, this haste was hot in question,\nAnd many limits of the charge set down\nBut yesternight: when all athwart there came\nA post from Wales loaden with heavy news;\nWhose worst was, that the noble Mortimer,\nLeading the men of Herefordshire to fight\nAgainst the irregular and wild Glendower,\nWas by the rude hands of that Welshman taken,\nA thousand of his people butchered;\nUpon whose dead corpse there was such misuse,\nSuch beastly shameless transformation,\nBy those Welshwomen done as may not be\nWithout much shame retold or spoken of.\n\nKING HENRY IV:\nIt seems then that the tidings of this broil\nBrake off our business for the Holy Land.\n\nWESTMORELAND:\nThis match'd with other did, my gracious lord;\nFor more uneven and unwelcome news\nCame from the north and thus it did import:\nOn Holy-rood day, the gallant Hotspur there,\nYoung Harry Percy and brave Archibald,\nThat ever-valiant and approved Scot,\nAt Holmedon met,\nWhere they did spend a sad and bloody hour,\nAs by discharge of their artillery,\nAnd shape of likelihood, the news was told;\nFor he that brought them, in the very heat\nAnd pride of their contention did take horse,\nUncertain of the issue any way.\n\nKING HENRY IV:\nHere is a dear, a true industrious friend,\nSir Walter Blunt, new lighted from his horse.\nStain'd with the variation of each soil\nBetwixt that Holmedon and this seat of ours;\nAnd he hath brought us smooth and welcome news.\nThe Earl of Douglas is discomfited:\nTen thousand bold Scots, two and twenty knights,\nBalk'd in their own blood did Sir Walter see\nOn Holmedon's plains. Of prisoners, Hotspur took\nMordake the Earl of Fife, and eldest son\nTo beaten Douglas; and the Earl of Athol,\nOf Murray, Angus, and Menteith:\nAnd is not this an honourable spoil?\nA gallant prize? ha, cousin, is it not?\n\nWESTMORELAND:\nIn faith,\nIt is a conquest for a prince to boast of.\n\nKING HENRY IV:\nYea, there thou makest me sad and makest me sin\nIn envy that my Lord Northumberland\nShould be the father to so blest a son,\nA son who is the theme of honour's tongue;\nAmongst a grove, the very straightest plant;\nWho is sweet Fortune's minion and her pride:\nWhilst I, by looking on the praise of him,\nSee riot and dishonour stain the brow\nOf my young Harry. O that it could be proved\nThat some night-tripping fairy had exchanged\nIn cradle-clothes our children where they lay,\nAnd call'd mine Percy, his Plantagenet!\nThen would I have his Harry, and he mine.\nBut let him from my thoughts. What think you, coz,\nOf this young Percy's pride? the prisoners,\nWhich he in this adventure hath surprised,\nTo his own use he keeps; and sends me word,\nI shall have none but Mordake Earl of Fife.\n\nWESTMORELAND:\nThis is his uncle's teaching; this is Worcester,\nMalevolent to you in all aspects;\nWhich makes him prune himself, and bristle up\nThe crest of youth against your dignity.\n\nKING HENRY IV:\nBut I have sent for him to answer this;\nAnd for this cause awhile we must neglect\nOur holy purpose to Jerusalem.\nCousin, on Wednesday next our council we\nWill hold at Windsor; so inform the lords:\nBut come yourself with speed to us again;\nFor more is to be said and to be done\nThan out of anger can be uttered.\n\nWESTMORELAND:\nI will, my liege.\n\nFALSTAFF:\nNow, Hal, what time of day is it, lad?\n\nPRINCE HENRY:\nThou art so fat-witted, with drinking of old sack\nand unbuttoning thee after supper and sleeping upon\nbenches after noon, that thou hast forgotten to\ndemand that truly which thou wouldst truly know.\nWhat a devil hast thou to do with the time of the\nday? Unless hours were cups of sack and minutes\ncapons and clocks the tongues of bawds and dials the\nsigns of leaping-houses and the blessed sun himself\na fair hot wench in flame-coloured taffeta, I see no\nreason why thou shouldst be so superfluous to demand\nthe time of the day.\n\nFALSTAFF:\nIndeed, you come near me now, Hal; for we that take\npurses go by the moon and the seven stars, and not\nby Phoebus, he,'that wandering knight so fair.' And,\nI prithee, sweet wag, when thou art king, as, God\nsave thy grace,--majesty I should say, for grace\nthou wilt have none,--\n\nPRINCE HENRY:\nWhat, none?\n\nFALSTAFF:\nNo, by my troth, not so much as will serve to\nprologue to an egg and butter.\n\nPRINCE HENRY:\nWell, how then? come, roundly, roundly.\n\nFALSTAFF:\nMarry, then, sweet wag, when thou art king, let not\nus that are squires of the night's body be called\nthieves of the day's beauty: let us be Diana's\nforesters, gentlemen of the shade, minions of the\nmoon; and let men say we be men of good government,\nbeing governed, as the sea is, by our noble and\nchaste mistress the moon, under whose countenance we steal.\n\nPRINCE HENRY:\nThou sayest well, and it holds well too; for the\nfortune of us that are the moon's men doth ebb and\nflow like the sea, being governed, as the sea is,\nby the moon. As, for proof, now: a purse of gold\nmost resolutely snatched on Monday night and most\ndissolutely spent on Tuesday morning; got with\nswearing 'Lay by' and spent with crying 'Bring in;'\nnow in as low an ebb as the foot of the ladder\nand by and by in as high a flow as the ridge of the gallows.\n\nFALSTAFF:\nBy the Lord, thou sayest true, lad. And is not my\nhostess of the tavern a most sweet wench?\n\nPRINCE HENRY:\nAs the honey of Hybla, my old lad of the castle. And\nis not a buff jerkin a most sweet robe of durance?\n\nFALSTAFF:\nHow now, how now, mad wag! what, in thy quips and\nthy quiddities? what a plague have I to do with a\nbuff jerkin?\n\nPRINCE HENRY:\nWhy, what a pox have I to do with my hostess of the tavern?\n\nFALSTAFF:\nWell, thou hast called her to a reckoning many a\ntime and oft.\n\nPRINCE HENRY:\nDid I ever call for thee to pay thy part?\n\nFALSTAFF:\nNo; I'll give thee thy due, thou hast paid all there.\n\nPRINCE HENRY:\nYea, and elsewhere, so far as my coin would stretch;\nand where it would not, I have used my credit.\n\nFALSTAFF:\nYea, and so used it that were it not here apparent\nthat thou art heir apparent--But, I prithee, sweet\nwag, shall there be gallows standing in England when\nthou art king? and resolution thus fobbed as it is\nwith the rusty curb of old father antic the law? Do\nnot thou, when thou art king, hang a thief.\n\nPRINCE HENRY:\nNo; thou shalt.\n\nFALSTAFF:\nShall I? O rare! By the Lord, I'll be a brave judge.\n\nPRINCE HENRY:\nThou judgest false already: I mean, thou shalt have\nthe hanging of the thieves and so become a rare hangman.\n\nFALSTAFF:\nWell, Hal, well; and in some sort it jumps with my\nhumour as well as waiting in the court, I can tell\nyou.\n\nPRINCE HENRY:\nFor obtaining of suits?\n\nFALSTAFF:\nYea, for obtaining of suits, whereof the hangman\nhath no lean wardrobe. 'Sblood, I am as melancholy\nas a gib cat or a lugged bear.\n\nPRINCE HENRY:\nOr an old lion, or a lover's lute.\n\nFALSTAFF:\nYea, or the drone of a Lincolnshire bagpipe.\n\nPRINCE HENRY:\nWhat sayest thou to a hare, or the melancholy of\nMoor-ditch?\n\nFALSTAFF:\nThou hast the most unsavoury similes and art indeed\nthe most comparative, rascalliest, sweet young\nprince. But, Hal, I prithee, trouble me no more\nwith vanity. I would to God thou and I knew where a\ncommodity of good names were to be bought. An old\nlord of the council rated me the other day in the\nstreet about you, sir, but I marked him not; and yet\nhe talked very wisely, but I regarded him not; and\nyet he talked wisely, and in the street too.\n\nPRINCE HENRY:\nThou didst well; for wisdom cries out in the\nstreets, and no man regards it.\n\nFALSTAFF:\nO, thou hast damnable iteration and art indeed able\nto corrupt a saint. Thou hast done much harm upon\nme, Hal; God forgive thee for it! Before I knew\nthee, Hal, I knew nothing; and now am I, if a man\nshould speak truly, little better than one of the\nwicked. I must give over this life, and I will give\nit over: by the Lord, and I do not, I am a villain:\nI'll be damned for never a king's son in\nChristendom.\n\nPRINCE HENRY:\nWhere shall we take a purse tomorrow, Jack?\n\nFALSTAFF:\n'Zounds, where thou wilt, lad; I'll make one; an I\ndo not, call me villain and baffle me.\n\nPRINCE HENRY:\nI see a good amendment of life in thee; from praying\nto purse-taking.\n\nFALSTAFF:\nWhy, Hal, 'tis my vocation, Hal; 'tis no sin for a\nman to labour in his vocation.\nPoins! Now shall we know if Gadshill have set a\nmatch. O, if men were to be saved by merit, what\nhole in hell were hot enough for him? This is the\nmost omnipotent villain that ever cried 'Stand' to\na true man.\n\nPRINCE HENRY:\nGood morrow, Ned.\n\nPOINS:\nGood morrow, sweet Hal. What says Monsieur Remorse?\nwhat says Sir John Sack and Sugar? Jack! how\nagrees the devil and thee about thy soul, that thou\nsoldest him on Good-Friday last for a cup of Madeira\nand a cold capon's leg?\n\nPRINCE HENRY:\nSir John stands to his word, the devil shall have\nhis bargain; for he was never yet a breaker of\nproverbs: he will give the devil his due.\n\nPOINS:\nThen art thou damned for keeping thy word with the devil.\n\nPRINCE HENRY:\nElse he had been damned for cozening the devil.\n\nPOINS:\nBut, my lads, my lads, to-morrow morning, by four\no'clock, early at Gadshill! there are pilgrims going\nto Canterbury with rich offerings, and traders\nriding to London with fat purses: I have vizards\nfor you all; you have horses for yourselves:\nGadshill lies to-night in Rochester: I have bespoke\nsupper to-morrow night in Eastcheap: we may do it\nas secure as sleep. If you will go, I will stuff\nyour purses full of crowns; if you will not, tarry\nat home and be hanged.\n\nFALSTAFF:\nHear ye, Yedward; if I tarry at home and go not,\nI'll hang you for going.\n\nPOINS:\nYou will, chops?\n\nFALSTAFF:\nHal, wilt thou make one?\n\nPRINCE HENRY:\nWho, I rob? I a thief? not I, by my faith.\n\nFALSTAFF:\nThere's neither honesty, manhood, nor good\nfellowship in thee, nor thou camest not of the blood\nroyal, if thou darest not stand for ten shillings.\n\nPRINCE HENRY:\nWell then, once in my days I'll be a madcap.\n\nFALSTAFF:\nWhy, that's well said.\n\nPRINCE HENRY:\nWell, come what will, I'll tarry at home.\n\nFALSTAFF:\nBy the Lord, I'll be a traitor then, when thou art king.\n\nPRINCE HENRY:\nI care not.\n\nPOINS:\nSir John, I prithee, leave the prince and me alone:\nI will lay him down such reasons for this adventure\nthat he shall go.\n\nFALSTAFF:\nWell, God give thee the spirit of persuasion and him\nthe ears of profiting, that what thou speakest may\nmove and what he hears may be believed, that the\ntrue prince may, for recreation sake, prove a false\nthief; for the poor abuses of the time want\ncountenance. Farewell: you shall find me in Eastcheap.\n\nPRINCE HENRY:\nFarewell, thou latter spring! farewell, All-hallown summer!\n\nPOINS:\nNow, my good sweet honey lord, ride with us\nto-morrow: I have a jest to execute that I cannot\nmanage alone. Falstaff, Bardolph, Peto and Gadshill\nshall rob those men that we have already waylaid:\nyourself and I will not be there; and when they\nhave the booty, if you and I do not rob them, cut\nthis head off from my shoulders.\n\nPRINCE HENRY:\nHow shall we part with them in setting forth?\n\nPOINS:\nWhy, we will set forth before or after them, and\nappoint them a place of meeting, wherein it is at\nour pleasure to fail, and then will they adventure\nupon the exploit themselves; which they shall have\nno sooner achieved, but we'll set upon them.\n\nPRINCE HENRY:\nYea, but 'tis like that they will know us by our\nhorses, by our habits and by every other\nappointment, to be ourselves.\n\nPOINS:\nTut! our horses they shall not see: I'll tie them\nin the wood; our vizards we will change after we\nleave them: and, sirrah, I have cases of buckram\nfor the nonce, to immask our noted outward garments.\n\nPRINCE HENRY:\nYea, but I doubt they will be too hard for us.\n\nPOINS:\nWell, for two of them, I know them to be as\ntrue-bred cowards as ever turned back; and for the\nthird, if he fight longer than he sees reason, I'll\nforswear arms. The virtue of this jest will be, the\nincomprehensible lies that this same fat rogue will\ntell us when we meet at supper: how thirty, at\nleast, he fought with; what wards, what blows, what\nextremities he endured; and in the reproof of this\nlies the jest.\n\nPRINCE HENRY:\nWell, I'll go with thee: provide us all things\nnecessary and meet me to-morrow night in Eastcheap;\nthere I'll sup. Farewell.\n\nPOINS:\nFarewell, my lord.\n\nPRINCE HENRY:\nI know you all, and will awhile uphold\nThe unyoked humour of your idleness:\nYet herein will I imitate the sun,\nWho doth permit the base contagious clouds\nTo smother up his beauty from the world,\nThat, when he please again to be himself,\nBeing wanted, he may be more wonder'd at,\nBy breaking through the foul and ugly mists\nOf vapours that did seem to strangle him.\nIf all the year were playing holidays,\nTo sport would be as tedious as to work;\nBut when they seldom come, they wish'd for come,\nAnd nothing pleaseth but rare accidents.\nSo, when this loose behavior I throw off\nAnd pay the debt I never promised,\nBy how much better than my word I am,\nBy so much shall I falsify men's hopes;\nAnd like bright metal on a sullen ground,\nMy reformation, glittering o'er my fault,\nShall show more goodly and attract more eyes\nThan that which hath no foil to set it off.\nI'll so offend, to make offence a skill;\nRedeeming time when men think least I will.\n\nKING HENRY IV:\nMy blood hath been too cold and temperate,\nUnapt to stir at these indignities,\nAnd you have found me; for accordingly\nYou tread upon my patience: but be sure\nI will from henceforth rather be myself,\nMighty and to be fear'd, than my condition;\nWhich hath been smooth as oil, soft as young down,\nAnd therefore lost that title of respect\nWhich the proud soul ne'er pays but to the proud.\n\nEARL OF WORCESTER:\nOur house, my sovereign liege, little deserves\nThe scourge of greatness to be used on it;\nAnd that same greatness too which our own hands\nHave holp to make so portly.\n\nNORTHUMBERLAND:\nMy lord.--\n\nKING HENRY IV:\nWorcester, get thee gone; for I do see\nDanger and disobedience in thine eye:\nO, sir, your presence is too bold and peremptory,\nAnd majesty might never yet endure\nThe moody frontier of a servant brow.\nYou have good leave to leave us: when we need\nYour use and counsel, we shall send for you.\nYou were about to speak.\n\nNORTHUMBERLAND:\nYea, my good lord.\nThose prisoners in your highness' name demanded,\nWhich Harry Percy here at Holmedon took,\nWere, as he says, not with such strength denied\nAs is deliver'd to your majesty:\nEither envy, therefore, or misprison\nIs guilty of this fault and not my son.\n\nHOTSPUR:\nMy liege, I did deny no prisoners.\nBut I remember, when the fight was done,\nWhen I was dry with rage and extreme toil,\nBreathless and faint, leaning upon my sword,\nCame there a certain lord, neat, and trimly dress'd,\nFresh as a bridegroom; and his chin new reap'd\nShow'd like a stubble-land at harvest-home;\nHe was perfumed like a milliner;\nAnd 'twixt his finger and his thumb he held\nA pouncet-box, which ever and anon\nHe gave his nose and took't away again;\nWho therewith angry, when it next came there,\nTook it in snuff; and still he smiled and talk'd,\nAnd as the soldiers bore dead bodies by,\nHe call'd them untaught knaves, unmannerly,\nTo bring a slovenly unhandsome corse\nBetwixt the wind and his nobility.\nWith many holiday and lady terms\nHe question'd me; amongst the rest, demanded\nMy prisoners in your majesty's behalf.\nI then, all smarting with my wounds being cold,\nTo be so pester'd with a popinjay,\nOut of my grief and my impatience,\nAnswer'd neglectingly I know not what,\nHe should or he should not; for he made me mad\nTo see him shine so brisk and smell so sweet\nAnd talk so like a waiting-gentlewoman\nOf guns and drums and wounds,--God save the mark!--\nAnd telling me the sovereign'st thing on earth\nWas parmaceti for an inward bruise;\nAnd that it was great pity, so it was,\nThis villanous salt-petre should be digg'd\nOut of the bowels of the harmless earth,\nWhich many a good tall fellow had destroy'd\nSo cowardly; and but for these vile guns,\nHe would himself have been a soldier.\nThis bald unjointed chat of his, my lord,\nI answer'd indirectly, as I said;\nAnd I beseech you, let not his report\nCome current for an accusation\nBetwixt my love and your high majesty.\n\nSIR WALTER BLUNT:\nThe circumstance consider'd, good my lord,\nWhate'er Lord Harry Percy then had said\nTo such a person and in such a place,\nAt such a time, with all the rest retold,\nMay reasonably die and never rise\nTo do him wrong or any way impeach\nWhat then he said, so he unsay it now.\n\nKING HENRY IV:\nWhy, yet he doth deny his prisoners,\nBut with proviso and exception,\nThat we at our own charge shall ransom straight\nHis brother-in-law, the foolish Mortimer;\nWho, on my soul, hath wilfully betray'd\nThe lives of those that he did lead to fight\nAgainst that great magician, damn'd Glendower,\nWhose daughter, as we hear, the Earl of March\nHath lately married. Shall our coffers, then,\nBe emptied to redeem a traitor home?\nShall we but treason? and indent with fears,\nWhen they have lost and forfeited themselves?\nNo, on the barren mountains let him starve;\nFor I shall never hold that man my friend\nWhose tongue shall ask me for one penny cost\nTo ransom home revolted Mortimer.\n\nHOTSPUR:\nRevolted Mortimer!\nHe never did fall off, my sovereign liege,\nBut by the chance of war; to prove that true\nNeeds no more but one tongue for all those wounds,\nThose mouthed wounds, which valiantly he took\nWhen on the gentle Severn's sedgy bank,\nIn single opposition, hand to hand,\nHe did confound the best part of an hour\nIn changing hardiment with great Glendower:\nThree times they breathed and three times did\nthey drink,\nUpon agreement, of swift Severn's flood;\nWho then, affrighted with their bloody looks,\nRan fearfully among the trembling reeds,\nAnd hid his crisp head in the hollow bank,\nBloodstained with these valiant combatants.\nNever did base and rotten policy\nColour her working with such deadly wounds;\nNor could the noble Mortimer\nReceive so many, and all willingly:\nThen let not him be slander'd with revolt.\n\nKING HENRY IV:\nThou dost belie him, Percy, thou dost belie him;\nHe never did encounter with Glendower:\nI tell thee,\nHe durst as well have met the devil alone\nAs Owen Glendower for an enemy.\nArt thou not ashamed? But, sirrah, henceforth\nLet me not hear you speak of Mortimer:\nSend me your prisoners with the speediest means,\nOr you shall hear in such a kind from me\nAs will displease you. My Lord Northumberland,\nWe licence your departure with your son.\nSend us your prisoners, or you will hear of it.\n\nHOTSPUR:\nAn if the devil come and roar for them,\nI will not send them: I will after straight\nAnd tell him so; for I will ease my heart,\nAlbeit I make a hazard of my head.\n\nNORTHUMBERLAND:\nWhat, drunk with choler? stay and pause awhile:\nHere comes your uncle.\n\nHOTSPUR:\nSpeak of Mortimer!\n'Zounds, I will speak of him; and let my soul\nWant mercy, if I do not join with him:\nYea, on his part I'll empty all these veins,\nAnd shed my dear blood drop by drop in the dust,\nBut I will lift the down-trod Mortimer\nAs high in the air as this unthankful king,\nAs this ingrate and canker'd Bolingbroke.\n\nNORTHUMBERLAND:\nBrother, the king hath made your nephew mad.\n\nEARL OF WORCESTER:\nWho struck this heat up after I was gone?\n\nHOTSPUR:\nHe will, forsooth, have all my prisoners;\nAnd when I urged the ransom once again\nOf my wife's brother, then his cheek look'd pale,\nAnd on my face he turn'd an eye of death,\nTrembling even at the name of Mortimer.\n\nEARL OF WORCESTER:\nI cannot blame him: was not he proclaim'd\nBy Richard that dead is the next of blood?\n\nNORTHUMBERLAND:\nHe was; I heard the proclamation:\nAnd then it was when the unhappy king,\n--Whose wrongs in us God pardon!--did set forth\nUpon his Irish expedition;\nFrom whence he intercepted did return\nTo be deposed and shortly murdered.\n\nEARL OF WORCESTER:\nAnd for whose death we in the world's wide mouth\nLive scandalized and foully spoken of.\n\nHOTSPUR:\nBut soft, I pray you; did King Richard then\nProclaim my brother Edmund Mortimer\nHeir to the crown?\n\nNORTHUMBERLAND:\nHe did; myself did hear it.\n\nHOTSPUR:\nNay, then I cannot blame his cousin king,\nThat wished him on the barren mountains starve.\nBut shall it be that you, that set the crown\nUpon the head of this forgetful man\nAnd for his sake wear the detested blot\nOf murderous subornation, shall it be,\nThat you a world of curses undergo,\nBeing the agents, or base second means,\nThe cords, the ladder, or the hangman rather?\nO, pardon me that I descend so low,\nTo show the line and the predicament\nWherein you range under this subtle king;\nShall it for shame be spoken in these days,\nOr fill up chronicles in time to come,\nThat men of your nobility and power\nDid gage them both in an unjust behalf,\nAs both of you--God pardon it!--have done,\nTo put down Richard, that sweet lovely rose,\nAn plant this thorn, this canker, Bolingbroke?\nAnd shall it in more shame be further spoken,\nThat you are fool'd, discarded and shook off\nBy him for whom these shames ye underwent?\nNo; yet time serves wherein you may redeem\nYour banish'd honours and restore yourselves\nInto the good thoughts of the world again,\nRevenge the jeering and disdain'd contempt\nOf this proud king, who studies day and night\nTo answer all the debt he owes to you\nEven with the bloody payment of your deaths:\nTherefore, I say--\n\nEARL OF WORCESTER:\nPeace, cousin, say no more:\nAnd now I will unclasp a secret book,\nAnd to your quick-conceiving discontents\nI'll read you matter deep and dangerous,\nAs full of peril and adventurous spirit\nAs to o'er-walk a current roaring loud\nOn the unsteadfast footing of a spear.\n\nHOTSPUR:\nIf he fall in, good night! or sink or swim:\nSend danger from the east unto the west,\nSo honour cross it from the north to south,\nAnd let them grapple: O, the blood more stirs\nTo rouse a lion than to start a hare!\n\nNORTHUMBERLAND:\nImagination of some great exploit\nDrives him beyond the bounds of patience.\n\nHOTSPUR:\nBy heaven, methinks it were an easy leap,\nTo pluck bright honour from the pale-faced moon,\nOr dive into the bottom of the deep,\nWhere fathom-line could never touch the ground,\nAnd pluck up drowned honour by the locks;\nSo he that doth redeem her thence might wear\nWithout corrival, all her dignities:\nBut out upon this half-faced fellowship!\n\nEARL OF WORCESTER:\nHe apprehends a world of figures here,\nBut not the form of what he should attend.\nGood cousin, give me audience for a while.\n\nHOTSPUR:\nI cry you mercy.\n\nEARL OF WORCESTER:\nThose same noble Scots\nThat are your prisoners,--\n\nHOTSPUR:\nI'll keep them all;\nBy God, he shall not have a Scot of them;\nNo, if a Scot would save his soul, he shall not:\nI'll keep them, by this hand.\n\nEARL OF WORCESTER:\nYou start away\nAnd lend no ear unto my purposes.\nThose prisoners you shall keep.\n\nHOTSPUR:\nNay, I will; that's flat:\nHe said he would not ransom Mortimer;\nForbad my tongue to speak of Mortimer;\nBut I will find him when he lies asleep,\nAnd in his ear I'll holla 'Mortimer!'\nNay,\nI'll have a starling shall be taught to speak\nNothing but 'Mortimer,' and give it him\nTo keep his anger still in motion.\n\nEARL OF WORCESTER:\nHear you, cousin; a word.\n\nHOTSPUR:\nAll studies here I solemnly defy,\nSave how to gall and pinch this Bolingbroke:\nAnd that same sword-and-buckler Prince of Wales,\nBut that I think his father loves him not\nAnd would be glad he met with some mischance,\nI would have him poison'd with a pot of ale.\n\nEARL OF WORCESTER:\nFarewell, kinsman: I'll talk to you\nWhen you are better temper'd to attend.\n\nNORTHUMBERLAND:\nWhy, what a wasp-stung and impatient fool\nArt thou to break into this woman's mood,\nTying thine ear to no tongue but thine own!\n\nHOTSPUR:\nWhy, look you, I am whipp'd and scourged with rods,\nNettled and stung with pismires, when I hear\nOf this vile politician, Bolingbroke.\nIn Richard's time,--what do you call the place?--\nA plague upon it, it is in Gloucestershire;\n'Twas where the madcap duke his uncle kept,\nHis uncle York; where I first bow'd my knee\nUnto this king of smiles, this Bolingbroke,--\n'Sblood!--\nWhen you and he came back from Ravenspurgh.\n\nNORTHUMBERLAND:\nAt Berkley castle.\n\nHOTSPUR:\nYou say true:\nWhy, what a candy deal of courtesy\nThis fawning greyhound then did proffer me!\nLook,'when his infant fortune came to age,'\nAnd 'gentle Harry Percy,' and 'kind cousin;'\nO, the devil take such cozeners! God forgive me!\nGood uncle, tell your tale; I have done.\n\nEARL OF WORCESTER:\nNay, if you have not, to it again;\nWe will stay your leisure.\n\nHOTSPUR:\nI have done, i' faith.\n\nEARL OF WORCESTER:\nThen once more to your Scottish prisoners.\nDeliver them up without their ransom straight,\nAnd make the Douglas' son your only mean\nFor powers in Scotland; which, for divers reasons\nWhich I shall send you written, be assured,\nWill easily be granted. You, my lord,\nYour son in Scotland being thus employ'd,\nShall secretly into the bosom creep\nOf that same noble prelate, well beloved,\nThe archbishop.\n\nHOTSPUR:\nOf York, is it not?\n\nEARL OF WORCESTER:\nTrue; who bears hard\nHis brother's death at Bristol, the Lord Scroop.\nI speak not this in estimation,\nAs what I think might be, but what I know\nIs ruminated, plotted and set down,\nAnd only stays but to behold the face\nOf that occasion that shall bring it on.\n\nHOTSPUR:\nI smell it: upon my life, it will do well.\n\nNORTHUMBERLAND:\nBefore the game is afoot, thou still let'st slip.\n\nHOTSPUR:\nWhy, it cannot choose but be a noble plot;\nAnd then the power of Scotland and of York,\nTo join with Mortimer, ha?\n\nEARL OF WORCESTER:\nAnd so they shall.\n\nHOTSPUR:\nIn faith, it is exceedingly well aim'd.\n\nEARL OF WORCESTER:\nAnd 'tis no little reason bids us speed,\nTo save our heads by raising of a head;\nFor, bear ourselves as even as we can,\nThe king will always think him in our debt,\nAnd think we think ourselves unsatisfied,\nTill he hath found a time to pay us home:\nAnd see already how he doth begin\nTo make us strangers to his looks of love.\n\nHOTSPUR:\nHe does, he does: we'll be revenged on him.\n\nEARL OF WORCESTER:\nCousin, farewell: no further go in this\nThan I by letters shall direct your course.\nWhen time is ripe, which will be suddenly,\nI'll steal to Glendower and Lord Mortimer;\nWhere you and Douglas and our powers at once,\nAs I will fashion it, shall happily meet,\nTo bear our fortunes in our own strong arms,\nWhich now we hold at much uncertainty.\n\nNORTHUMBERLAND:\nFarewell, good brother: we shall thrive, I trust.\n\nHOTSPUR:\nUncle, Adieu: O, let the hours be short\nTill fields and blows and groans applaud our sport!\n\nFirst Carrier:\nHeigh-ho! an it be not four by the day, I'll be\nhanged: Charles' wain is over the new chimney, and\nyet our horse not packed. What, ostler!\n\nOstler:\n\nFirst Carrier:\nI prithee, Tom, beat Cut's saddle, put a few flocks\nin the point; poor jade, is wrung in the withers out\nof all cess.\n\nSecond Carrier:\nPeas and beans are as dank here as a dog, and that\nis the next way to give poor jades the bots: this\nhouse is turned upside down since Robin Ostler died.\n\nFirst Carrier:\nPoor fellow, never joyed since the price of oats\nrose; it was the death of him.\n\nSecond Carrier:\nI think this be the most villanous house in all\nLondon road for fleas: I am stung like a tench.\n\nFirst Carrier:\nLike a tench! by the mass, there is ne'er a king\nchristen could be better bit than I have been since\nthe first cock.\n\nSecond Carrier:\nWhy, they will allow us ne'er a jordan, and then we\nleak in your chimney; and your chamber-lie breeds\nfleas like a loach.\n\nFirst Carrier:\nWhat, ostler! come away and be hanged!\n\nSecond Carrier:\nI have a gammon of bacon and two razors of ginger,\nto be delivered as far as Charing-cross.\n\nFirst Carrier:\nGod's body! the turkeys in my pannier are quite\nstarved. What, ostler! A plague on thee! hast thou\nnever an eye in thy head? canst not hear? An\n'twere not as good deed as drink, to break the pate\non thee, I am a very villain. Come, and be hanged!\nhast thou no faith in thee?\n\nGADSHILL:\nGood morrow, carriers. What's o'clock?\n\nFirst Carrier:\nI think it be two o'clock.\n\nGADSHILL:\nI pray thee lend me thy lantern, to see my gelding\nin the stable.\n\nFirst Carrier:\nNay, by God, soft; I know a trick worth two of that, i' faith.\n\nGADSHILL:\nI pray thee, lend me thine.\n\nSecond Carrier:\nAy, when? can'st tell? Lend me thy lantern, quoth\nhe? marry, I'll see thee hanged first.\n\nGADSHILL:\nSirrah carrier, what time do you mean to come to London?\n\nSecond Carrier:\nTime enough to go to bed with a candle, I warrant\nthee. Come, neighbour Mugs, we'll call up the\ngentleman: they will along with company, for they\nhave great charge.\n\nGADSHILL:\nWhat, ho! chamberlain!\n\nChamberlain:\n\nGADSHILL:\nThat's even as fair as--at hand, quoth the\nchamberlain; for thou variest no more from picking\nof purses than giving direction doth from labouring;\nthou layest the plot how.\n\nChamberlain:\nGood morrow, Master Gadshill. It holds current that\nI told you yesternight: there's a franklin in the\nwild of Kent hath brought three hundred marks with\nhim in gold: I heard him tell it to one of his\ncompany last night at supper; a kind of auditor; one\nthat hath abundance of charge too, God knows what.\nThey are up already, and call for eggs and butter;\nthey will away presently.\n\nGADSHILL:\nSirrah, if they meet not with Saint Nicholas'\nclerks, I'll give thee this neck.\n\nChamberlain:\nNo, I'll none of it: I pray thee keep that for the\nhangman; for I know thou worshippest St. Nicholas\nas truly as a man of falsehood may.\n\nGADSHILL:\nWhat talkest thou to me of the hangman? if I hang,\nI'll make a fat pair of gallows; for if I hang, old\nSir John hangs with me, and thou knowest he is no\nstarveling. Tut! there are other Trojans that thou\ndreamest not of, the which for sport sake are\ncontent to do the profession some grace; that would,\nif matters should be looked into, for their own\ncredit sake, make all whole. I am joined with no\nfoot-land rakers, no long-staff sixpenny strikers,\nnone of these mad mustachio purple-hued malt-worms;\nbut with nobility and tranquillity, burgomasters and\ngreat oneyers, such as can hold in, such as will\nstrike sooner than speak, and speak sooner than\ndrink, and drink sooner than pray: and yet, zounds,\nI lie; for they pray continually to their saint, the\ncommonwealth; or rather, not pray to her, but prey\non her, for they ride up and down on her and make\nher their boots.\n\nChamberlain:\nWhat, the commonwealth their boots? will she hold\nout water in foul way?\n\nGADSHILL:\nShe will, she will; justice hath liquored her. We\nsteal as in a castle, cocksure; we have the receipt\nof fern-seed, we walk invisible.\n\nChamberlain:\nNay, by my faith, I think you are more beholding to\nthe night than to fern-seed for your walking invisible.\n\nGADSHILL:\nGive me thy hand: thou shalt have a share in our\npurchase, as I am a true man.\n\nChamberlain:\nNay, rather let me have it, as you are a false thief.\n\nGADSHILL:\nGo to; 'homo' is a common name to all men. Bid the\nostler bring my gelding out of the stable. Farewell,\nyou muddy knave.\n\nPOINS:\nCome, shelter, shelter: I have removed Falstaff's\nhorse, and he frets like a gummed velvet.\n\nPRINCE HENRY:\nStand close.\n\nFALSTAFF:\nPoins! Poins, and be hanged! Poins!\n\nPRINCE HENRY:\nPeace, ye fat-kidneyed rascal! what a brawling dost\nthou keep!\n\nFALSTAFF:\nWhere's Poins, Hal?\n\nPRINCE HENRY:\nHe is walked up to the top of the hill: I'll go seek him.\n\nFALSTAFF:\nI am accursed to rob in that thief's company: the\nrascal hath removed my horse, and tied him I know\nnot where. If I travel but four foot by the squier\nfurther afoot, I shall break my wind. Well, I doubt\nnot but to die a fair death for all this, if I\n'scape hanging for killing that rogue. I have\nforsworn his company hourly any time this two and\ntwenty years, and yet I am bewitched with the\nrogue's company. If the rascal hath not given me\nmedicines to make me love him, I'll be hanged; it\ncould not be else: I have drunk medicines. Poins!\nHal! a plague upon you both! Bardolph! Peto!\nI'll starve ere I'll rob a foot further. An 'twere\nnot as good a deed as drink, to turn true man and to\nleave these rogues, I am the veriest varlet that\never chewed with a tooth. Eight yards of uneven\nground is threescore and ten miles afoot with me;\nand the stony-hearted villains know it well enough:\na plague upon it when thieves cannot be true one to another!\nWhew! A plague upon you all! Give me my horse, you\nrogues; give me my horse, and be hanged!\n\nPRINCE HENRY:\nPeace, ye fat-guts! lie down; lay thine ear close\nto the ground and list if thou canst hear the tread\nof travellers.\n\nFALSTAFF:\nHave you any levers to lift me up again, being down?\n'Sblood, I'll not bear mine own flesh so far afoot\nagain for all the coin in thy father's exchequer.\nWhat a plague mean ye to colt me thus?\n\nPRINCE HENRY:\nThou liest; thou art not colted, thou art uncolted.\n\nFALSTAFF:\nI prithee, good Prince Hal, help me to my horse,\ngood king's son.\n\nPRINCE HENRY:\nOut, ye rogue! shall I be your ostler?\n\nFALSTAFF:\nGo, hang thyself in thine own heir-apparent\ngarters! If I be ta'en, I'll peach for this. An I\nhave not ballads made on you all and sung to filthy\ntunes, let a cup of sack be my poison: when a jest\nis so forward, and afoot too! I hate it.\n\nGADSHILL:\nStand.\n\nFALSTAFF:\nSo I do, against my will.\n\nPOINS:\nO, 'tis our setter: I know his voice. Bardolph,\nwhat news?\n\nBARDOLPH:\nCase ye, case ye; on with your vizards: there 's\nmoney of the king's coming down the hill; 'tis going\nto the king's exchequer.\n\nFALSTAFF:\nYou lie, ye rogue; 'tis going to the king's tavern.\n\nGADSHILL:\nThere's enough to make us all.\n\nFALSTAFF:\nTo be hanged.\n\nPRINCE HENRY:\nSirs, you four shall front them in the narrow lane;\nNed Poins and I will walk lower: if they 'scape\nfrom your encounter, then they light on us.\n\nPETO:\nHow many be there of them?\n\nGADSHILL:\nSome eight or ten.\n\nFALSTAFF:\n'Zounds, will they not rob us?\n\nPRINCE HENRY:\nWhat, a coward, Sir John Paunch?\n\nFALSTAFF:\nIndeed, I am not John of Gaunt, your grandfather;\nbut yet no coward, Hal.\n\nPRINCE HENRY:\nWell, we leave that to the proof.\n\nPOINS:\nSirrah Jack, thy horse stands behind the hedge:\nwhen thou needest him, there thou shalt find him.\nFarewell, and stand fast.\n\nFALSTAFF:\nNow cannot I strike him, if I should be hanged.\n\nPRINCE HENRY:\nNed, where are our disguises?\n\nPOINS:\nHere, hard by: stand close.\n\nFALSTAFF:\nNow, my masters, happy man be his dole, say I:\nevery man to his business.\n\nFirst Traveller:\nCome, neighbour: the boy shall lead our horses down\nthe hill; we'll walk afoot awhile, and ease our legs.\n\nThieves:\nStand!\n\nTravellers:\nJesus bless us!\n\nFALSTAFF:\nStrike; down with them; cut the villains' throats:\nah! whoreson caterpillars! bacon-fed knaves! they\nhate us youth: down with them: fleece them.\n\nTravellers:\nO, we are undone, both we and ours for ever!\n\nFALSTAFF:\nHang ye, gorbellied knaves, are ye undone? No, ye\nfat chuffs: I would your store were here! On,\nbacons, on! What, ye knaves! young men must live.\nYou are Grand-jurors, are ye? we'll jure ye, 'faith.\n\nPRINCE HENRY:\nThe thieves have bound the true men. Now could thou\nand I rob the thieves and go merrily to London, it\nwould be argument for a week, laughter for a month\nand a good jest for ever.\n\nPOINS:\nStand close; I hear them coming.\n\nFALSTAFF:\nCome, my masters, let us share, and then to horse\nbefore day. An the Prince and Poins be not two\narrant cowards, there's no equity stirring: there's\nno more valour in that Poins than in a wild-duck.\n\nPRINCE HENRY:\nYour money!\n\nPOINS:\nVillains!\n\nPRINCE HENRY:\nGot with much ease. Now merrily to horse:\nThe thieves are all scatter'd and possess'd with fear\nSo strongly that they dare not meet each other;\nEach takes his fellow for an officer.\nAway, good Ned. Falstaff sweats to death,\nAnd lards the lean earth as he walks along:\nWere 't not for laughing, I should pity him.\n\nPOINS:\nHow the rogue roar'd!\n\nHOTSPUR:\n'But for mine own part, my lord, I could be well\ncontented to be there, in respect of the love I bear\nyour house.' He could be contented: why is he not,\nthen? In respect of the love he bears our house:\nhe shows in this, he loves his own barn better than\nhe loves our house. Let me see some more. 'The\npurpose you undertake is dangerous;'--why, that's\ncertain: 'tis dangerous to take a cold, to sleep, to\ndrink; but I tell you, my lord fool, out of this\nnettle, danger, we pluck this flower, safety. 'The\npurpose you undertake is dangerous; the friends you\nhave named uncertain; the time itself unsorted; and\nyour whole plot too light for the counterpoise of so\ngreat an opposition.' Say you so, say you so? I say\nunto you again, you are a shallow cowardly hind, and\nyou lie.  What a lack-brain is this! By the Lord,\nour plot is a good plot as ever was laid; our\nfriends true and constant: a good plot, good\nfriends, and full of expectation; an excellent plot,\nvery good friends. What a frosty-spirited rogue is\nthis! Why, my lord of York commends the plot and the\ngeneral course of action. 'Zounds, an I were now by\nthis rascal, I could brain him with his lady's fan.\nIs there not my father, my uncle and myself? lord\nEdmund Mortimer, My lord of York and Owen Glendower?\nis there not besides the Douglas? have I not all\ntheir letters to meet me in arms by the ninth of the\nnext month? and are they not some of them set\nforward already? What a pagan rascal is this! an\ninfidel! Ha! you shall see now in very sincerity\nof fear and cold heart, will he to the king and lay\nopen all our proceedings. O, I could divide myself\nand go to buffets, for moving such a dish of\nskim milk with so honourable an action! Hang him!\nlet him tell the king: we are prepared. I will set\nforward to-night.\nHow now, Kate! I must leave you within these two hours.\n\nLADY PERCY:\nO, my good lord, why are you thus alone?\nFor what offence have I this fortnight been\nA banish'd woman from my Harry's bed?\nTell me, sweet lord, what is't that takes from thee\nThy stomach, pleasure and thy golden sleep?\nWhy dost thou bend thine eyes upon the earth,\nAnd start so often when thou sit'st alone?\nWhy hast thou lost the fresh blood in thy cheeks;\nAnd given my treasures and my rights of thee\nTo thick-eyed musing and cursed melancholy?\nIn thy faint slumbers I by thee have watch'd,\nAnd heard thee murmur tales of iron wars;\nSpeak terms of manage to thy bounding steed;\nCry 'Courage! to the field!' And thou hast talk'd\nOf sallies and retires, of trenches, tents,\nOf palisadoes, frontiers, parapets,\nOf basilisks, of cannon, culverin,\nOf prisoners' ransom and of soldiers slain,\nAnd all the currents of a heady fight.\nThy spirit within thee hath been so at war\nAnd thus hath so bestirr'd thee in thy sleep,\nThat beads of sweat have stood upon thy brow\nLike bubbles in a late-disturbed stream;\nAnd in thy face strange motions have appear'd,\nSuch as we see when men restrain their breath\nOn some great sudden hest. O, what portents are these?\nSome heavy business hath my lord in hand,\nAnd I must know it, else he loves me not.\n\nHOTSPUR:\nWhat, ho!\nIs Gilliams with the packet gone?\n\nServant:\nHe is, my lord, an hour ago.\n\nHOTSPUR:\nHath Butler brought those horses from the sheriff?\n\nServant:\nOne horse, my lord, he brought even now.\n\nHOTSPUR:\nWhat horse? a roan, a crop-ear, is it not?\n\nServant:\nIt is, my lord.\n\nHOTSPUR:\nThat roan shall by my throne.\nWell, I will back him straight: O esperance!\nBid Butler lead him forth into the park.\n\nLADY PERCY:\nBut hear you, my lord.\n\nHOTSPUR:\nWhat say'st thou, my lady?\n\nLADY PERCY:\nWhat is it carries you away?\n\nHOTSPUR:\nWhy, my horse, my love, my horse.\n\nLADY PERCY:\nOut, you mad-headed ape!\nA weasel hath not such a deal of spleen\nAs you are toss'd with. In faith,\nI'll know your business, Harry, that I will.\nI fear my brother Mortimer doth stir\nAbout his title, and hath sent for you\nTo line his enterprise: but if you go,--\n\nHOTSPUR:\nSo far afoot, I shall be weary, love.\n\nLADY PERCY:\nCome, come, you paraquito, answer me\nDirectly unto this question that I ask:\nIn faith, I'll break thy little finger, Harry,\nAn if thou wilt not tell me all things true.\n\nHOTSPUR:\nAway,\nAway, you trifler! Love! I love thee not,\nI care not for thee, Kate: this is no world\nTo play with mammets and to tilt with lips:\nWe must have bloody noses and crack'd crowns,\nAnd pass them current too. God's me, my horse!\nWhat say'st thou, Kate? what would'st thou\nhave with me?\n\nLADY PERCY:\nDo you not love me? do you not, indeed?\nWell, do not then; for since you love me not,\nI will not love myself. Do you not love me?\nNay, tell me if you speak in jest or no.\n\nHOTSPUR:\nCome, wilt thou see me ride?\nAnd when I am on horseback, I will swear\nI love thee infinitely. But hark you, Kate;\nI must not have you henceforth question me\nWhither I go, nor reason whereabout:\nWhither I must, I must; and, to conclude,\nThis evening must I leave you, gentle Kate.\nI know you wise, but yet no farther wise\nThan Harry Percy's wife: constant you are,\nBut yet a woman: and for secrecy,\nNo lady closer; for I well believe\nThou wilt not utter what thou dost not know;\nAnd so far will I trust thee, gentle Kate.\n\nLADY PERCY:\nHow! so far?\n\nHOTSPUR:\nNot an inch further. But hark you, Kate:\nWhither I go, thither shall you go too;\nTo-day will I set forth, to-morrow you.\nWill this content you, Kate?\n\nLADY PERCY:\nIt must of force.\n\nPRINCE HENRY:\nNed, prithee, come out of that fat room, and lend me\nthy hand to laugh a little.\n\nPOINS:\nWhere hast been, Hal?\n\nPRINCE HENRY:\nWith three or four loggerheads amongst three or four\nscore hogsheads. I have sounded the very\nbase-string of humility. Sirrah, I am sworn brother\nto a leash of drawers; and can call them all by\ntheir christen names, as Tom, Dick, and Francis.\nThey take it already upon their salvation, that\nthough I be but the prince of Wales, yet I am king\nof courtesy; and tell me flatly I am no proud Jack,\nlike Falstaff, but a Corinthian, a lad of mettle, a\ngood boy, by the Lord, so they call me, and when I\nam king of England, I shall command all the good\nlads in Eastcheap. They call drinking deep, dyeing\nscarlet; and when you breathe in your watering, they\ncry  'hem!' and bid you play it off. To conclude, I\nam so good a proficient in one quarter of an hour,\nthat I can drink with any tinker in his own language\nduring my life. I tell thee, Ned, thou hast lost\nmuch honour, that thou wert not with me in this sweet\naction. But, sweet Ned,--to sweeten which name of\nNed, I give thee this pennyworth of sugar, clapped\neven now into my hand by an under-skinker, one that\nnever spake other English in his life than 'Eight\nshillings and sixpence' and 'You are welcome,' with\nthis shrill addition, 'Anon, anon, sir! Score a pint\nof bastard in the Half-Moon,' or so. But, Ned, to\ndrive away the time till Falstaff come, I prithee,\ndo thou stand in some by-room, while I question my\npuny drawer to what end he gave me the sugar; and do\nthou never leave calling 'Francis,' that his tale\nto me may be nothing but 'Anon.' Step aside, and\nI'll show thee a precedent.\n\nPOINS:\nFrancis!\n\nPRINCE HENRY:\nThou art perfect.\n\nPOINS:\nFrancis!\n\nFRANCIS:\nAnon, anon, sir. Look down into the Pomgarnet, Ralph.\n\nPRINCE HENRY:\nCome hither, Francis.\n\nFRANCIS:\nMy lord?\n\nPRINCE HENRY:\nHow long hast thou to serve, Francis?\n\nFRANCIS:\nForsooth, five years, and as much as to--\n\nPOINS:\n\nFRANCIS:\nAnon, anon, sir.\n\nPRINCE HENRY:\nFive year! by'r lady, a long lease for the clinking\nof pewter. But, Francis, darest thou be so valiant\nas to play the coward with thy indenture and show it\na fair pair of heels and run from it?\n\nFRANCIS:\nO Lord, sir, I'll be sworn upon all the books in\nEngland, I could find in my heart.\n\nPOINS:\n\nFRANCIS:\nAnon, sir.\n\nPRINCE HENRY:\nHow old art thou, Francis?\n\nFRANCIS:\nLet me see--about Michaelmas next I shall be--\n\nPOINS:\n\nFRANCIS:\nAnon, sir. Pray stay a little, my lord.\n\nPRINCE HENRY:\nNay, but hark you, Francis: for the sugar thou\ngavest me,'twas a pennyworth, wast't not?\n\nFRANCIS:\nO Lord, I would it had been two!\n\nPRINCE HENRY:\nI will give thee for it a thousand pound: ask me\nwhen thou wilt, and thou shalt have it.\n\nPOINS:\n\nFRANCIS:\nAnon, anon.\n\nPRINCE HENRY:\nAnon, Francis? No, Francis; but to-morrow, Francis;\nor, Francis, o' Thursday; or indeed, Francis, when\nthou wilt. But, Francis!\n\nFRANCIS:\nMy lord?\n\nPRINCE HENRY:\nWilt thou rob this leathern jerkin, crystal-button,\nnot-pated, agate-ring, puke-stocking, caddis-garter,\nsmooth-tongue, Spanish-pouch,--\n\nFRANCIS:\nO Lord, sir, who do you mean?\n\nPRINCE HENRY:\nWhy, then, your brown bastard is your only drink;\nfor look you, Francis, your white canvas doublet\nwill sully: in Barbary, sir, it cannot come to so much.\n\nFRANCIS:\nWhat, sir?\n\nPOINS:\n\nPRINCE HENRY:\nAway, you rogue! dost thou not hear them call?\n\nVintner:\nWhat, standest thou still, and hearest such a\ncalling? Look to the guests within.\nMy lord, old Sir John, with half-a-dozen more, are\nat the door: shall I let them in?\n\nPRINCE HENRY:\nLet them alone awhile, and then open the door.\nPoins!\n\nPOINS:\nAnon, anon, sir.\n\nPRINCE HENRY:\nSirrah, Falstaff and the rest of the thieves are at\nthe door: shall we be merry?\n\nPOINS:\nAs merry as crickets, my lad. But hark ye; what\ncunning match have you made with this jest of the\ndrawer? come, what's the issue?\n\nPRINCE HENRY:\nI am now of all humours that have showed themselves\nhumours since the old days of goodman Adam to the\npupil age of this present twelve o'clock at midnight.\nWhat's o'clock, Francis?\n\nFRANCIS:\nAnon, anon, sir.\n\nPRINCE HENRY:\nThat ever this fellow should have fewer words than a\nparrot, and yet the son of a woman! His industry is\nupstairs and downstairs; his eloquence the parcel of\na reckoning. I am not yet of Percy's mind, the\nHotspur of the north; he that kills me some six or\nseven dozen of Scots at a breakfast, washes his\nhands, and says to his wife 'Fie upon this quiet\nlife! I want work.' 'O my sweet Harry,' says she,\n'how many hast thou killed to-day?' 'Give my roan\nhorse a drench,' says he; and answers 'Some\nfourteen,' an hour after; 'a trifle, a trifle.' I\nprithee, call in Falstaff: I'll play Percy, and\nthat damned brawn shall play Dame Mortimer his\nwife. 'Rivo!' says the drunkard. Call in ribs, call in tallow.\n\nPOINS:\nWelcome, Jack: where hast thou been?\n\nFALSTAFF:\nA plague of all cowards, I say, and a vengeance too!\nmarry, and amen! Give me a cup of sack, boy. Ere I\nlead this life long, I'll sew nether stocks and mend\nthem and foot them too. A plague of all cowards!\nGive me a cup of sack, rogue. Is there no virtue extant?\n\nPRINCE HENRY:\nDidst thou never see Titan kiss a dish of butter?\npitiful-hearted Titan, that melted at the sweet tale\nof the sun's! if thou didst, then behold that compound.\n\nFALSTAFF:\nYou rogue, here's lime in this sack too: there is\nnothing but roguery to be found in villanous man:\nyet a coward is worse than a cup of sack with lime\nin it. A villanous coward! Go thy ways, old Jack;\ndie when thou wilt, if manhood, good manhood, be\nnot forgot upon the face of the earth, then am I a\nshotten herring. There live not three good men\nunhanged in England; and one of them is fat and\ngrows old: God help the while! a bad world, I say.\nI would I were a weaver; I could sing psalms or any\nthing. A plague of all cowards, I say still.\n\nPRINCE HENRY:\nHow now, wool-sack! what mutter you?\n\nFALSTAFF:\nA king's son! If I do not beat thee out of thy\nkingdom with a dagger of lath, and drive all thy\nsubjects afore thee like a flock of wild-geese,\nI'll never wear hair on my face more. You Prince of Wales!\n\nPRINCE HENRY:\nWhy, you whoreson round man, what's the matter?\n\nFALSTAFF:\nAre not you a coward? answer me to that: and Poins there?\n\nPOINS:\n'Zounds, ye fat paunch, an ye call me coward, by the\nLord, I'll stab thee.\n\nFALSTAFF:\nI call thee coward! I'll see thee damned ere I call\nthee coward: but I would give a thousand pound I\ncould run as fast as thou canst. You are straight\nenough in the shoulders, you care not who sees your\nback: call you that backing of your friends? A\nplague upon such backing! give me them that will\nface me. Give me a cup of sack: I am a rogue, if I\ndrunk to-day.\n\nPRINCE HENRY:\nO villain! thy lips are scarce wiped since thou\ndrunkest last.\n\nFALSTAFF:\nAll's one for that.\nA plague of all cowards, still say I.\n\nPRINCE HENRY:\nWhat's the matter?\n\nFALSTAFF:\nWhat's the matter! there be four of us here have\nta'en a thousand pound this day morning.\n\nPRINCE HENRY:\nWhere is it, Jack? where is it?\n\nFALSTAFF:\nWhere is it! taken from us it is: a hundred upon\npoor four of us.\n\nPRINCE HENRY:\nWhat, a hundred, man?\n\nFALSTAFF:\nI am a rogue, if I were not at half-sword with a\ndozen of them two hours together. I have 'scaped by\nmiracle. I am eight times thrust through the\ndoublet, four through the hose; my buckler cut\nthrough and through; my sword hacked like a\nhand-saw--ecce signum! I never dealt better since\nI was a man: all would not do. A plague of all\ncowards! Let them speak: if they speak more or\nless than truth, they are villains and the sons of darkness.\n\nPRINCE HENRY:\nSpeak, sirs; how was it?\n\nGADSHILL:\nWe four set upon some dozen--\n\nFALSTAFF:\nSixteen at least, my lord.\n\nGADSHILL:\nAnd bound them.\n\nPETO:\nNo, no, they were not bound.\n\nFALSTAFF:\nYou rogue, they were bound, every man of them; or I\nam a Jew else, an Ebrew Jew.\n\nGADSHILL:\nAs we were sharing, some six or seven fresh men set upon us--\n\nFALSTAFF:\nAnd unbound the rest, and then come in the other.\n\nPRINCE HENRY:\nWhat, fought you with them all?\n\nFALSTAFF:\nAll! I know not what you call all; but if I fought\nnot with fifty of them, I am a bunch of radish: if\nthere were not two or three and fifty upon poor old\nJack, then am I no two-legged creature.\n\nPRINCE HENRY:\nPray God you have not murdered some of them.\n\nFALSTAFF:\nNay, that's past praying for: I have peppered two\nof them; two I am sure I have paid, two rogues\nin buckram suits. I tell thee what, Hal, if I tell\nthee a lie, spit in my face, call me horse. Thou\nknowest my old ward; here I lay and thus I bore my\npoint. Four rogues in buckram let drive at me--\n\nPRINCE HENRY:\nWhat, four? thou saidst but two even now.\n\nFALSTAFF:\nFour, Hal; I told thee four.\n\nPOINS:\nAy, ay, he said four.\n\nFALSTAFF:\nThese four came all a-front, and mainly thrust at\nme. I made me no more ado but took all their seven\npoints in my target, thus.\n\nPRINCE HENRY:\nSeven? why, there were but four even now.\n\nFALSTAFF:\nIn buckram?\n\nPOINS:\nAy, four, in buckram suits.\n\nFALSTAFF:\nSeven, by these hilts, or I am a villain else.\n\nPRINCE HENRY:\nPrithee, let him alone; we shall have more anon.\n\nFALSTAFF:\nDost thou hear me, Hal?\n\nPRINCE HENRY:\nAy, and mark thee too, Jack.\n\nFALSTAFF:\nDo so, for it is worth the listening to. These nine\nin buckram that I told thee of--\n\nPRINCE HENRY:\nSo, two more already.\n\nFALSTAFF:\nTheir points being broken,--\n\nPOINS:\nDown fell their hose.\n\nFALSTAFF:\nBegan to give me ground: but I followed me close,\ncame in foot and hand; and with a thought seven of\nthe eleven I paid.\n\nPRINCE HENRY:\nO monstrous! eleven buckram men grown out of two!\n\nFALSTAFF:\nBut, as the devil would have it, three misbegotten\nknaves in Kendal green came at my back and let drive\nat me; for it was so dark, Hal, that thou couldst\nnot see thy hand.\n\nPRINCE HENRY:\nThese lies are like their father that begets them;\ngross as a mountain, open, palpable. Why, thou\nclay-brained guts, thou knotty-pated fool, thou\nwhoreson, obscene, grease tallow-catch,--\n\nFALSTAFF:\nWhat, art thou mad? art thou mad? is not the truth\nthe truth?\n\nPRINCE HENRY:\nWhy, how couldst thou know these men in Kendal\ngreen, when it was so dark thou couldst not see thy\nhand? come, tell us your reason: what sayest thou to this?\n\nPOINS:\nCome, your reason, Jack, your reason.\n\nFALSTAFF:\nWhat, upon compulsion? 'Zounds, an I were at the\nstrappado, or all the racks in the world, I would\nnot tell you on compulsion. Give you a reason on\ncompulsion! If reasons were as plentiful as\nblackberries, I would give no man a reason upon\ncompulsion, I.\n\nPRINCE HENRY:\nI'll be no longer guilty of this sin; this sanguine\ncoward, this bed-presser, this horseback-breaker,\nthis huge hill of flesh,--\n\nFALSTAFF:\n'Sblood, you starveling, you elf-skin, you dried\nneat's tongue, you bull's pizzle, you stock-fish! O\nfor breath to utter what is like thee! you\ntailor's-yard, you sheath, you bowcase; you vile\nstanding-tuck,--\n\nPRINCE HENRY:\nWell, breathe awhile, and then to it again: and\nwhen thou hast tired thyself in base comparisons,\nhear me speak but this.\n\nPOINS:\nMark, Jack.\n\nPRINCE HENRY:\nWe two saw you four set on four and bound them, and\nwere masters of their wealth. Mark now, how a plain\ntale shall put you down. Then did we two set on you\nfour; and, with a word, out-faced you from your\nprize, and have it; yea, and can show it you here in\nthe house: and, Falstaff, you carried your guts\naway as nimbly, with as quick dexterity, and roared\nfor mercy and still run and roared, as ever I heard\nbull-calf. What a slave art thou, to hack thy sword\nas thou hast done, and then say it was in fight!\nWhat trick, what device, what starting-hole, canst\nthou now find out to hide thee from this open and\napparent shame?\n\nPOINS:\nCome, let's hear, Jack; what trick hast thou now?\n\nFALSTAFF:\nBy the Lord, I knew ye as well as he that made ye.\nWhy, hear you, my masters: was it for me to kill the\nheir-apparent? should I turn upon the true prince?\nwhy, thou knowest I am as valiant as Hercules: but\nbeware instinct; the lion will not touch the true\nprince. Instinct is a great matter; I was now a\ncoward on instinct. I shall think the better of\nmyself and thee during my life; I for a valiant\nlion, and thou for a true prince. But, by the Lord,\nlads, I am glad you have the money. Hostess, clap\nto the doors: watch to-night, pray to-morrow.\nGallants, lads, boys, hearts of gold, all the titles\nof good fellowship come to you! What, shall we be\nmerry? shall we have a play extempore?\n\nPRINCE HENRY:\nContent; and the argument shall be thy running away.\n\nFALSTAFF:\nAh, no more of that, Hal, an thou lovest me!\n\nHostess:\nO Jesu, my lord the prince!\n\nPRINCE HENRY:\nHow now, my lady the hostess! what sayest thou to\nme?\n\nHostess:\nMarry, my lord, there is a nobleman of the court at\ndoor would speak with you: he says he comes from\nyour father.\n\nPRINCE HENRY:\nGive him as much as will make him a royal man, and\nsend him back again to my mother.\n\nFALSTAFF:\nWhat manner of man is he?\n\nHostess:\nAn old man.\n\nFALSTAFF:\nWhat doth gravity out of his bed at midnight? Shall\nI give him his answer?\n\nPRINCE HENRY:\nPrithee, do, Jack.\n\nFALSTAFF:\n'Faith, and I'll send him packing.\n\nPRINCE HENRY:\nNow, sirs: by'r lady, you fought fair; so did you,\nPeto; so did you, Bardolph: you are lions too, you\nran away upon instinct, you will not touch the true\nprince; no, fie!\n\nBARDOLPH:\n'Faith, I ran when I saw others run.\n\nPRINCE HENRY:\n'Faith, tell me now in earnest, how came Falstaff's\nsword so hacked?\n\nPETO:\nWhy, he hacked it with his dagger, and said he would\nswear truth out of England but he would make you\nbelieve it was done in fight, and persuaded us to do the like.\n\nBARDOLPH:\nYea, and to tickle our noses with spear-grass to\nmake them bleed, and then to beslubber our garments\nwith it and swear it was the blood of true men. I\ndid that I did not this seven year before, I blushed\nto hear his monstrous devices.\n\nPRINCE HENRY:\nO villain, thou stolest a cup of sack eighteen years\nago, and wert taken with the manner, and ever since\nthou hast blushed extempore. Thou hadst fire and\nsword on thy side, and yet thou rannest away: what\ninstinct hadst thou for it?\n\nBARDOLPH:\nMy lord, do you see these meteors? do you behold\nthese exhalations?\n\nPRINCE HENRY:\nI do.\n\nBARDOLPH:\nWhat think you they portend?\n\nPRINCE HENRY:\nHot livers and cold purses.\n\nBARDOLPH:\nCholer, my lord, if rightly taken.\n\nPRINCE HENRY:\nNo, if rightly taken, halter.\nHere comes lean Jack, here comes bare-bone.\nHow now, my sweet creature of bombast!\nHow long is't ago, Jack, since thou sawest thine own knee?\n\nFALSTAFF:\nMy own knee! when I was about thy years, Hal, I was\nnot an eagle's talon in the waist; I could have\ncrept into any alderman's thumb-ring: a plague of\nsighing and grief! it blows a man up like a\nbladder. There's villanous news abroad: here was\nSir John Bracy from your father; you must to the\ncourt in the morning. That same mad fellow of the\nnorth, Percy, and he of Wales, that gave Amamon the\nbastinado and made Lucifer cuckold and swore the\ndevil his true liegeman upon the cross of a Welsh\nhook--what a plague call you him?\n\nPOINS:\nO, Glendower.\n\nFALSTAFF:\nOwen, Owen, the same; and his son-in-law Mortimer,\nand old Northumberland, and that sprightly Scot of\nScots, Douglas, that runs o' horseback up a hill\nperpendicular,--\n\nPRINCE HENRY:\nHe that rides at high speed and with his pistol\nkills a sparrow flying.\n\nFALSTAFF:\nYou have hit it.\n\nPRINCE HENRY:\nSo did he never the sparrow.\n\nFALSTAFF:\nWell, that rascal hath good mettle in him; he will not run.\n\nPRINCE HENRY:\nWhy, what a rascal art thou then, to praise him so\nfor running!\n\nFALSTAFF:\nO' horseback, ye cuckoo; but afoot he will not budge a foot.\n\nPRINCE HENRY:\nYes, Jack, upon instinct.\n\nFALSTAFF:\nI grant ye, upon instinct. Well, he is there too,\nand one Mordake, and a thousand blue-caps more:\nWorcester is stolen away to-night; thy father's\nbeard is turned white with the news: you may buy\nland now as cheap as stinking mackerel.\n\nPRINCE HENRY:\nWhy, then, it is like, if there come a hot June and\nthis civil buffeting hold, we shall buy maidenheads\nas they buy hob-nails, by the hundreds.\n\nFALSTAFF:\nBy the mass, lad, thou sayest true; it is like we\nshall have good trading that way. But tell me, Hal,\nart not thou horrible afeard? thou being\nheir-apparent, could the world pick thee out three\nsuch enemies again as that fiend Douglas, that\nspirit Percy, and that devil Glendower? Art thou\nnot horribly afraid? doth not thy blood thrill at\nit?\n\nPRINCE HENRY:\nNot a whit, i' faith; I lack some of thy instinct.\n\nFALSTAFF:\nWell, thou wert be horribly chid tomorrow when thou\ncomest to thy father: if thou love me, practise an answer.\n\nPRINCE HENRY:\nDo thou stand for my father, and examine me upon the\nparticulars of my life.\n\nFALSTAFF:\nShall I? content: this chair shall be my state,\nthis dagger my sceptre, and this cushion my crown.\n\nPRINCE HENRY:\nThy state is taken for a joined-stool, thy golden\nsceptre for a leaden dagger, and thy precious rich\ncrown for a pitiful bald crown!\n\nFALSTAFF:\nWell, an the fire of grace be not quite out of thee,\nnow shalt thou be moved. Give me a cup of sack to\nmake my eyes look red, that it may be thought I have\nwept; for I must speak in passion, and I will do it\nin King Cambyses' vein.\n\nPRINCE HENRY:\nWell, here is my leg.\n\nFALSTAFF:\nAnd here is my speech. Stand aside, nobility.\n\nHostess:\nO Jesu, this is excellent sport, i' faith!\n\nFALSTAFF:\nWeep not, sweet queen; for trickling tears are vain.\n\nHostess:\nO, the father, how he holds his countenance!\n\nFALSTAFF:\nFor God's sake, lords, convey my tristful queen;\nFor tears do stop the flood-gates of her eyes.\n\nHostess:\nO Jesu, he doth it as like one of these harlotry\nplayers as ever I see!\n\nFALSTAFF:\nPeace, good pint-pot; peace, good tickle-brain.\nHarry, I do not only marvel where thou spendest thy\ntime, but also how thou art accompanied: for though\nthe camomile, the more it is trodden on the faster\nit grows, yet youth, the more it is wasted the\nsooner it wears. That thou art my son, I have\npartly thy mother's word, partly my own opinion,\nbut chiefly a villanous trick of thine eye and a\nfoolish-hanging of thy nether lip, that doth warrant\nme. If then thou be son to me, here lies the point;\nwhy, being son to me, art thou so pointed at? Shall\nthe blessed sun of heaven prove a micher and eat\nblackberries? a question not to be asked. Shall\nthe sun of England prove a thief and take purses? a\nquestion to be asked. There is a thing, Harry,\nwhich thou hast often heard of and it is known to\nmany in our land by the name of pitch: this pitch,\nas ancient writers do report, doth defile; so doth\nthe company thou keepest: for, Harry, now I do not\nspeak to thee in drink but in tears, not in\npleasure but in passion, not in words only, but in\nwoes also: and yet there is a virtuous man whom I\nhave often noted in thy company, but I know not his name.\n\nPRINCE HENRY:\nWhat manner of man, an it like your majesty?\n\nFALSTAFF:\nA goodly portly man, i' faith, and a corpulent; of a\ncheerful look, a pleasing eye and a most noble\ncarriage; and, as I think, his age some fifty, or,\nby'r lady, inclining to three score; and now I\nremember me, his name is Falstaff: if that man\nshould be lewdly given, he deceiveth me; for, Harry,\nI see virtue in his looks. If then the tree may be\nknown by the fruit, as the fruit by the tree, then,\nperemptorily I speak it, there is virtue in that\nFalstaff: him keep with, the rest banish. And tell\nme now, thou naughty varlet, tell me, where hast\nthou been this month?\n\nPRINCE HENRY:\nDost thou speak like a king? Do thou stand for me,\nand I'll play my father.\n\nFALSTAFF:\nDepose me? if thou dost it half so gravely, so\nmajestically, both in word and matter, hang me up by\nthe heels for a rabbit-sucker or a poulter's hare.\n\nPRINCE HENRY:\nWell, here I am set.\n\nFALSTAFF:\nAnd here I stand: judge, my masters.\n\nPRINCE HENRY:\nNow, Harry, whence come you?\n\nFALSTAFF:\nMy noble lord, from Eastcheap.\n\nPRINCE HENRY:\nThe complaints I hear of thee are grievous.\n\nFALSTAFF:\n'Sblood, my lord, they are false: nay, I'll tickle\nye for a young prince, i' faith.\n\nPRINCE HENRY:\nSwearest thou, ungracious boy? henceforth ne'er look\non me. Thou art violently carried away from grace:\nthere is a devil haunts thee in the likeness of an\nold fat man; a tun of man is thy companion. Why\ndost thou converse with that trunk of humours, that\nbolting-hutch of beastliness, that swollen parcel\nof dropsies, that huge bombard of sack, that stuffed\ncloak-bag of guts, that roasted Manningtree ox with\nthe pudding in his belly, that reverend vice, that\ngrey iniquity, that father ruffian, that vanity in\nyears? Wherein is he good, but to taste sack and\ndrink it? wherein neat and cleanly, but to carve a\ncapon and eat it? wherein cunning, but in craft?\nwherein crafty, but in villany? wherein villanous,\nbut in all things? wherein worthy, but in nothing?\n\nFALSTAFF:\nI would your grace would take me with you: whom\nmeans your grace?\n\nPRINCE HENRY:\nThat villanous abominable misleader of youth,\nFalstaff, that old white-bearded Satan.\n\nFALSTAFF:\nMy lord, the man I know.\n\nPRINCE HENRY:\nI know thou dost.\n\nFALSTAFF:\nBut to say I know more harm in him than in myself,\nwere to say more than I know. That he is old, the\nmore the pity, his white hairs do witness it; but\nthat he is, saving your reverence, a whoremaster,\nthat I utterly deny. If sack and sugar be a fault,\nGod help the wicked! if to be old and merry be a\nsin, then many an old host that I know is damned: if\nto be fat be to be hated, then Pharaoh's lean kine\nare to be loved. No, my good lord; banish Peto,\nbanish Bardolph, banish Poins: but for sweet Jack\nFalstaff, kind Jack Falstaff, true Jack Falstaff,\nvaliant Jack Falstaff, and therefore more valiant,\nbeing, as he is, old Jack Falstaff, banish not him\nthy Harry's company, banish not him thy Harry's\ncompany: banish plump Jack, and banish all the world.\n\nPRINCE HENRY:\nI do, I will.\n\nBARDOLPH:\nO, my lord, my lord! the sheriff with a most\nmonstrous watch is at the door.\n\nFALSTAFF:\nOut, ye rogue! Play out the play: I have much to\nsay in the behalf of that Falstaff.\n\nHostess:\nO Jesu, my lord, my lord!\n\nPRINCE HENRY:\nHeigh, heigh! the devil rides upon a fiddlestick:\nwhat's the matter?\n\nHostess:\nThe sheriff and all the watch are at the door: they\nare come to search the house. Shall I let them in?\n\nFALSTAFF:\nDost thou hear, Hal? never call a true piece of\ngold a counterfeit: thou art essentially mad,\nwithout seeming so.\n\nPRINCE HENRY:\nAnd thou a natural coward, without instinct.\n\nFALSTAFF:\nI deny your major: if you will deny the sheriff,\nso; if not, let him enter: if I become not a cart\nas well as another man, a plague on my bringing up!\nI hope I shall as soon be strangled with a halter as another.\n\nPRINCE HENRY:\nGo, hide thee behind the arras: the rest walk up\nabove. Now, my masters, for a true face and good\nconscience.\n\nFALSTAFF:\nBoth which I have had: but their date is out, and\ntherefore I'll hide me.\n\nPRINCE HENRY:\nCall in the sheriff.\nNow, master sheriff, what is your will with me?\n\nSheriff:\nFirst, pardon me, my lord. A hue and cry\nHath follow'd certain men unto this house.\n\nPRINCE HENRY:\nWhat men?\n\nSheriff:\nOne of them is well known, my gracious lord,\nA gross fat man.\n\nCarrier:\nAs fat as butter.\n\nPRINCE HENRY:\nThe man, I do assure you, is not here;\nFor I myself at this time have employ'd him.\nAnd, sheriff, I will engage my word to thee\nThat I will, by to-morrow dinner-time,\nSend him to answer thee, or any man,\nFor any thing he shall be charged withal:\nAnd so let me entreat you leave the house.\n\nSheriff:\nI will, my lord. There are two gentlemen\nHave in this robbery lost three hundred marks.\n\nPRINCE HENRY:\nIt may be so: if he have robb'd these men,\nHe shall be answerable; and so farewell.\n\nSheriff:\nGood night, my noble lord.\n\nPRINCE HENRY:\nI think it is good morrow, is it not?\n\nSheriff:\nIndeed, my lord, I think it be two o'clock.\n\nPRINCE HENRY:\nThis oily rascal is known as well as Paul's. Go,\ncall him forth.\n\nPETO:\nFalstaff!--Fast asleep behind the arras, and\nsnorting like a horse.\n\nPRINCE HENRY:\nHark, how hard he fetches breath. Search his pockets.\nWhat hast thou found?\n\nPETO:\nNothing but papers, my lord.\n\nPRINCE HENRY:\nLet's see what they be: read them.\n\nPETO:\n\nPRINCE HENRY:\nO monstrous! but one half-penny-worth of bread to\nthis intolerable deal of sack! What there is else,\nkeep close; we'll read it at more advantage: there\nlet him sleep till day. I'll to the court in the\nmorning. We must all to the wars, and thy place\nshall be honourable. I'll procure this fat rogue a\ncharge of foot; and I know his death will be a\nmarch of twelve-score. The money shall be paid\nback again with advantage. Be with me betimes in\nthe morning; and so, good morrow, Peto.\n\nPETO:\nGood morrow, good my lord.\n\nMORTIMER:\nThese promises are fair, the parties sure,\nAnd our induction full of prosperous hope.\n\nHOTSPUR:\nLord Mortimer, and cousin Glendower,\nWill you sit down?\nAnd uncle Worcester: a plague upon it!\nI have forgot the map.\n\nGLENDOWER:\nNo, here it is.\nSit, cousin Percy; sit, good cousin Hotspur,\nFor by that name as oft as Lancaster\nDoth speak of you, his cheek looks pale and with\nA rising sigh he wisheth you in heaven.\n\nHOTSPUR:\nAnd you in hell, as oft as he hears Owen Glendower spoke of.\n\nGLENDOWER:\nI cannot blame him: at my nativity\nThe front of heaven was full of fiery shapes,\nOf burning cressets; and at my birth\nThe frame and huge foundation of the earth\nShaked like a coward.\n\nHOTSPUR:\nWhy, so it would have done at the same season, if\nyour mother's cat had but kittened, though yourself\nhad never been born.\n\nGLENDOWER:\nI say the earth did shake when I was born.\n\nHOTSPUR:\nAnd I say the earth was not of my mind,\nIf you suppose as fearing you it shook.\n\nGLENDOWER:\nThe heavens were all on fire, the earth did tremble.\n\nHOTSPUR:\nO, then the earth shook to see the heavens on fire,\nAnd not in fear of your nativity.\nDiseased nature oftentimes breaks forth\nIn strange eruptions; oft the teeming earth\nIs with a kind of colic pinch'd and vex'd\nBy the imprisoning of unruly wind\nWithin her womb; which, for enlargement striving,\nShakes the old beldam earth and topples down\nSteeples and moss-grown towers. At your birth\nOur grandam earth, having this distemperature,\nIn passion shook.\n\nGLENDOWER:\nCousin, of many men\nI do not bear these crossings. Give me leave\nTo tell you once again that at my birth\nThe front of heaven was full of fiery shapes,\nThe goats ran from the mountains, and the herds\nWere strangely clamorous to the frighted fields.\nThese signs have mark'd me extraordinary;\nAnd all the courses of my life do show\nI am not in the roll of common men.\nWhere is he living, clipp'd in with the sea\nThat chides the banks of England, Scotland, Wales,\nWhich calls me pupil, or hath read to me?\nAnd bring him out that is but woman's son\nCan trace me in the tedious ways of art\nAnd hold me pace in deep experiments.\n\nHOTSPUR:\nI think there's no man speaks better Welsh.\nI'll to dinner.\n\nMORTIMER:\nPeace, cousin Percy; you will make him mad.\n\nGLENDOWER:\nI can call spirits from the vasty deep.\n\nHOTSPUR:\nWhy, so can I, or so can any man;\nBut will they come when you do call for them?\n\nGLENDOWER:\nWhy, I can teach you, cousin, to command\nThe devil.\n\nHOTSPUR:\nAnd I can teach thee, coz, to shame the devil\nBy telling truth: tell truth and shame the devil.\nIf thou have power to raise him, bring him hither,\nAnd I'll be sworn I have power to shame him hence.\nO, while you live, tell truth and shame the devil!\n\nMORTIMER:\nCome, come, no more of this unprofitable chat.\n\nGLENDOWER:\nThree times hath Henry Bolingbroke made head\nAgainst my power; thrice from the banks of Wye\nAnd sandy-bottom'd Severn have I sent him\nBootless home and weather-beaten back.\n\nHOTSPUR:\nHome without boots, and in foul weather too!\nHow 'scapes he agues, in the devil's name?\n\nGLENDOWER:\nCome, here's the map: shall we divide our right\nAccording to our threefold order ta'en?\n\nMORTIMER:\nThe archdeacon hath divided it\nInto three limits very equally:\nEngland, from Trent and Severn hitherto,\nBy south and east is to my part assign'd:\nAll westward, Wales beyond the Severn shore,\nAnd all the fertile land within that bound,\nTo Owen Glendower: and, dear coz, to you\nThe remnant northward, lying off from Trent.\nAnd our indentures tripartite are drawn;\nWhich being sealed interchangeably,\nA business that this night may execute,\nTo-morrow, cousin Percy, you and I\nAnd my good Lord of Worcester will set forth\nTo meet your father and the Scottish power,\nAs is appointed us, at Shrewsbury.\nMy father Glendower is not ready yet,\nNot shall we need his help these fourteen days.\nWithin that space you may have drawn together\nYour tenants, friends and neighbouring gentlemen.\n\nGLENDOWER:\nA shorter time shall send me to you, lords:\nAnd in my conduct shall your ladies come;\nFrom whom you now must steal and take no leave,\nFor there will be a world of water shed\nUpon the parting of your wives and you.\n\nHOTSPUR:\nMethinks my moiety, north from Burton here,\nIn quantity equals not one of yours:\nSee how this river comes me cranking in,\nAnd cuts me from the best of all my land\nA huge half-moon, a monstrous cantle out.\nI'll have the current in this place damm'd up;\nAnd here the smug and silver Trent shall run\nIn a new channel, fair and evenly;\nIt shall not wind with such a deep indent,\nTo rob me of so rich a bottom here.\n\nGLENDOWER:\nNot wind? it shall, it must; you see it doth.\n\nMORTIMER:\nYea, but\nMark how he bears his course, and runs me up\nWith like advantage on the other side;\nGelding the opposed continent as much\nAs on the other side it takes from you.\n\nEARL OF WORCESTER:\nYea, but a little charge will trench him here\nAnd on this north side win this cape of land;\nAnd then he runs straight and even.\n\nHOTSPUR:\nI'll have it so: a little charge will do it.\n\nGLENDOWER:\nI'll not have it alter'd.\n\nHOTSPUR:\nWill not you?\n\nGLENDOWER:\nNo, nor you shall not.\n\nHOTSPUR:\nWho shall say me nay?\n\nGLENDOWER:\nWhy, that will I.\n\nHOTSPUR:\nLet me not understand you, then; speak it in Welsh.\n\nGLENDOWER:\nI can speak English, lord, as well as you;\nFor I was train'd up in the English court;\nWhere, being but young, I framed to the harp\nMany an English ditty lovely well\nAnd gave the tongue a helpful ornament,\nA virtue that was never seen in you.\n\nHOTSPUR:\nMarry,\nAnd I am glad of it with all my heart:\nI had rather be a kitten and cry mew\nThan one of these same metre ballad-mongers;\nI had rather hear a brazen canstick turn'd,\nOr a dry wheel grate on the axle-tree;\nAnd that would set my teeth nothing on edge,\nNothing so much as mincing poetry:\n'Tis like the forced gait of a shuffling nag.\n\nGLENDOWER:\nCome, you shall have Trent turn'd.\n\nHOTSPUR:\nI do not care: I'll give thrice so much land\nTo any well-deserving friend;\nBut in the way of bargain, mark ye me,\nI'll cavil on the ninth part of a hair.\nAre the indentures drawn? shall we be gone?\n\nGLENDOWER:\nThe moon shines fair; you may away by night:\nI'll haste the writer and withal\nBreak with your wives of your departure hence:\nI am afraid my daughter will run mad,\nSo much she doteth on her Mortimer.\n\nMORTIMER:\nFie, cousin Percy! how you cross my father!\n\nHOTSPUR:\nI cannot choose: sometime he angers me\nWith telling me of the mouldwarp and the ant,\nOf the dreamer Merlin and his prophecies,\nAnd of a dragon and a finless fish,\nA clip-wing'd griffin and a moulten raven,\nA couching lion and a ramping cat,\nAnd such a deal of skimble-skamble stuff\nAs puts me from my faith. I tell you what;\nHe held me last night at least nine hours\nIn reckoning up the several devils' names\nThat were his lackeys: I cried 'hum,' and 'well, go to,'\nBut mark'd him not a word. O, he is as tedious\nAs a tired horse, a railing wife;\nWorse than a smoky house: I had rather live\nWith cheese and garlic in a windmill, far,\nThan feed on cates and have him talk to me\nIn any summer-house in Christendom.\n\nMORTIMER:\nIn faith, he is a worthy gentleman,\nExceedingly well read, and profited\nIn strange concealments, valiant as a lion\nAnd as wondrous affable and as bountiful\nAs mines of India. Shall I tell you, cousin?\nHe holds your temper in a high respect\nAnd curbs himself even of his natural scope\nWhen you come 'cross his humour; faith, he does:\nI warrant you, that man is not alive\nMight so have tempted him as you have done,\nWithout the taste of danger and reproof:\nBut do not use it oft, let me entreat you.\n\nEARL OF WORCESTER:\nIn faith, my lord, you are too wilful-blame;\nAnd since your coming hither have done enough\nTo put him quite beside his patience.\nYou must needs learn, lord, to amend this fault:\nThough sometimes it show greatness, courage, blood,--\nAnd that's the dearest grace it renders you,--\nYet oftentimes it doth present harsh rage,\nDefect of manners, want of government,\nPride, haughtiness, opinion and disdain:\nThe least of which haunting a nobleman\nLoseth men's hearts and leaves behind a stain\nUpon the beauty of all parts besides,\nBeguiling them of commendation.\n\nHOTSPUR:\nWell, I am school'd: good manners be your speed!\nHere come our wives, and let us take our leave.\n\nMORTIMER:\nThis is the deadly spite that angers me;\nMy wife can speak no English, I no Welsh.\n\nGLENDOWER:\nMy daughter weeps: she will not part with you;\nShe'll be a soldier too, she'll to the wars.\n\nMORTIMER:\nGood father, tell her that she and my aunt Percy\nShall follow in your conduct speedily.\n\nGLENDOWER:\nShe is desperate here; a peevish self-wind harlotry,\none that no persuasion can do good upon.\n\nMORTIMER:\nI understand thy looks: that pretty Welsh\nWhich thou pour'st down from these swelling heavens\nI am too perfect in; and, but for shame,\nIn such a parley should I answer thee.\nI understand thy kisses and thou mine,\nAnd that's a feeling disputation:\nBut I will never be a truant, love,\nTill I have learned thy language; for thy tongue\nMakes Welsh as sweet as ditties highly penn'd,\nSung by a fair queen in a summer's bower,\nWith ravishing division, to her lute.\n\nGLENDOWER:\nNay, if you melt, then will she run mad.\n\nMORTIMER:\nO, I am ignorance itself in this!\n\nGLENDOWER:\nShe bids you on the wanton rushes lay you down\nAnd rest your gentle head upon her lap,\nAnd she will sing the song that pleaseth you\nAnd on your eyelids crown the god of sleep.\nCharming your blood with pleasing heaviness,\nMaking such difference 'twixt wake and sleep\nAs is the difference betwixt day and night\nThe hour before the heavenly-harness'd team\nBegins his golden progress in the east.\n\nMORTIMER:\nWith all my heart I'll sit and hear her sing:\nBy that time will our book, I think, be drawn\n\nGLENDOWER:\nDo so;\nAnd those musicians that shall play to you\nHang in the air a thousand leagues from hence,\nAnd straight they shall be here: sit, and attend.\n\nHOTSPUR:\nCome, Kate, thou art perfect in lying down: come,\nquick, quick, that I may lay my head in thy lap.\n\nLADY PERCY:\nGo, ye giddy goose.\n\nHOTSPUR:\nNow I perceive the devil understands Welsh;\nAnd 'tis no marvel he is so humorous.\nBy'r lady, he is a good musician.\n\nLADY PERCY:\nThen should you be nothing but musical for you are\naltogether governed by humours. Lie still, ye thief,\nand hear the lady sing in Welsh.\n\nHOTSPUR:\nI had rather hear Lady, my brach, howl in Irish.\n\nLADY PERCY:\nWouldst thou have thy head broken?\n\nHOTSPUR:\nNo.\n\nLADY PERCY:\nThen be still.\n\nHOTSPUR:\nNeither;'tis a woman's fault.\n\nLADY PERCY:\nNow God help thee!\n\nHOTSPUR:\nTo the Welsh lady's bed.\n\nLADY PERCY:\nWhat's that?\n\nHOTSPUR:\nPeace! she sings.\n\nHOTSPUR:\nCome, Kate, I'll have your song too.\n\nLADY PERCY:\nNot mine, in good sooth.\n\nHOTSPUR:\nNot yours, in good sooth! Heart! you swear like a\ncomfit-maker's wife. 'Not you, in good sooth,' and\n'as true as I live,' and 'as God shall mend me,' and\n'as sure as day,'\nAnd givest such sarcenet surety for thy oaths,\nAs if thou never walk'st further than Finsbury.\nSwear me, Kate, like a lady as thou art,\nA good mouth-filling oath, and leave 'in sooth,'\nAnd such protest of pepper-gingerbread,\nTo velvet-guards and Sunday-citizens.\nCome, sing.\n\nLADY PERCY:\nI will not sing.\n\nHOTSPUR:\n'Tis the next way to turn tailor, or be red-breast\nteacher. An the indentures be drawn, I'll away\nwithin these two hours; and so, come in when ye will.\n\nGLENDOWER:\nCome, come, Lord Mortimer; you are as slow\nAs hot Lord Percy is on fire to go.\nBy this our book is drawn; we'll but seal,\nAnd then to horse immediately.\n\nMORTIMER:\nWith all my heart.\n\nKING HENRY IV:\nLords, give us leave; the Prince of Wales and I\nMust have some private conference; but be near at hand,\nFor we shall presently have need of you.\nI know not whether God will have it so,\nFor some displeasing service I have done,\nThat, in his secret doom, out of my blood\nHe'll breed revengement and a scourge for me;\nBut thou dost in thy passages of life\nMake me believe that thou art only mark'd\nFor the hot vengeance and the rod of heaven\nTo punish my mistreadings. Tell me else,\nCould such inordinate and low desires,\nSuch poor, such bare, such lewd, such mean attempts,\nSuch barren pleasures, rude society,\nAs thou art match'd withal and grafted to,\nAccompany the greatness of thy blood\nAnd hold their level with thy princely heart?\n\nPRINCE HENRY:\nSo please your majesty, I would I could\nQuit all offences with as clear excuse\nAs well as I am doubtless I can purge\nMyself of many I am charged withal:\nYet such extenuation let me beg,\nAs, in reproof of many tales devised,\nwhich oft the ear of greatness needs must hear,\nBy smiling pick-thanks and base news-mongers,\nI may, for some things true, wherein my youth\nHath faulty wander'd and irregular,\nFind pardon on my true submission.\n\nKING HENRY IV:\nGod pardon thee! yet let me wonder, Harry,\nAt thy affections, which do hold a wing\nQuite from the flight of all thy ancestors.\nThy place in council thou hast rudely lost.\nWhich by thy younger brother is supplied,\nAnd art almost an alien to the hearts\nOf all the court and princes of my blood:\nThe hope and expectation of thy time\nIs ruin'd, and the soul of every man\nProphetically doth forethink thy fall.\nHad I so lavish of my presence been,\nSo common-hackney'd in the eyes of men,\nSo stale and cheap to vulgar company,\nOpinion, that did help me to the crown,\nHad still kept loyal to possession\nAnd left me in reputeless banishment,\nA fellow of no mark nor likelihood.\nBy being seldom seen, I could not stir\nBut like a comet I was wonder'd at;\nThat men would tell their children 'This is he;'\nOthers would say 'Where, which is Bolingbroke?'\nAnd then I stole all courtesy from heaven,\nAnd dress'd myself in such humility\nThat I did pluck allegiance from men's hearts,\nLoud shouts and salutations from their mouths,\nEven in the presence of the crowned king.\nThus did I keep my person fresh and new;\nMy presence, like a robe pontifical,\nNe'er seen but wonder'd at: and so my state,\nSeldom but sumptuous, showed like a feast\nAnd won by rareness such solemnity.\nThe skipping king, he ambled up and down\nWith shallow jesters and rash bavin wits,\nSoon kindled and soon burnt; carded his state,\nMingled his royalty with capering fools,\nHad his great name profaned with their scorns\nAnd gave his countenance, against his name,\nTo laugh at gibing boys and stand the push\nOf every beardless vain comparative,\nGrew a companion to the common streets,\nEnfeoff'd himself to popularity;\nThat, being daily swallow'd by men's eyes,\nThey surfeited with honey and began\nTo loathe the taste of sweetness, whereof a little\nMore than a little is by much too much.\nSo when he had occasion to be seen,\nHe was but as the cuckoo is in June,\nHeard, not regarded; seen, but with such eyes\nAs, sick and blunted with community,\nAfford no extraordinary gaze,\nSuch as is bent on sun-like majesty\nWhen it shines seldom in admiring eyes;\nBut rather drowzed and hung their eyelids down,\nSlept in his face and render'd such aspect\nAs cloudy men use to their adversaries,\nBeing with his presence glutted, gorged and full.\nAnd in that very line, Harry, standest thou;\nFor thou has lost thy princely privilege\nWith vile participation: not an eye\nBut is a-weary of thy common sight,\nSave mine, which hath desired to see thee more;\nWhich now doth that I would not have it do,\nMake blind itself with foolish tenderness.\n\nPRINCE HENRY:\nI shall hereafter, my thrice gracious lord,\nBe more myself.\n\nKING HENRY IV:\nFor all the world\nAs thou art to this hour was Richard then\nWhen I from France set foot at Ravenspurgh,\nAnd even as I was then is Percy now.\nNow, by my sceptre and my soul to boot,\nHe hath more worthy interest to the state\nThan thou the shadow of succession;\nFor of no right, nor colour like to right,\nHe doth fill fields with harness in the realm,\nTurns head against the lion's armed jaws,\nAnd, being no more in debt to years than thou,\nLeads ancient lords and reverend bishops on\nTo bloody battles and to bruising arms.\nWhat never-dying honour hath he got\nAgainst renowned Douglas! whose high deeds,\nWhose hot incursions and great name in arms\nHolds from all soldiers chief majority\nAnd military title capital\nThrough all the kingdoms that acknowledge Christ:\nThrice hath this Hotspur, Mars in swathling clothes,\nThis infant warrior, in his enterprises\nDiscomfited great Douglas, ta'en him once,\nEnlarged him and made a friend of him,\nTo fill the mouth of deep defiance up\nAnd shake the peace and safety of our throne.\nAnd what say you to this? Percy, Northumberland,\nThe Archbishop's grace of York, Douglas, Mortimer,\nCapitulate against us and are up.\nBut wherefore do I tell these news to thee?\nWhy, Harry, do I tell thee of my foes,\nWhich art my near'st and dearest enemy?\nThou that art like enough, through vassal fear,\nBase inclination and the start of spleen\nTo fight against me under Percy's pay,\nTo dog his heels and curtsy at his frowns,\nTo show how much thou art degenerate.\n\nPRINCE HENRY:\nDo not think so; you shall not find it so:\nAnd God forgive them that so much have sway'd\nYour majesty's good thoughts away from me!\nI will redeem all this on Percy's head\nAnd in the closing of some glorious day\nBe bold to tell you that I am your son;\nWhen I will wear a garment all of blood\nAnd stain my favours in a bloody mask,\nWhich, wash'd away, shall scour my shame with it:\nAnd that shall be the day, whene'er it lights,\nThat this same child of honour and renown,\nThis gallant Hotspur, this all-praised knight,\nAnd your unthought-of Harry chance to meet.\nFor every honour sitting on his helm,\nWould they were multitudes, and on my head\nMy shames redoubled! for the time will come,\nThat I shall make this northern youth exchange\nHis glorious deeds for my indignities.\nPercy is but my factor, good my lord,\nTo engross up glorious deeds on my behalf;\nAnd I will call him to so strict account,\nThat he shall render every glory up,\nYea, even the slightest worship of his time,\nOr I will tear the reckoning from his heart.\nThis, in the name of God, I promise here:\nThe which if He be pleased I shall perform,\nI do beseech your majesty may salve\nThe long-grown wounds of my intemperance:\nIf not, the end of life cancels all bands;\nAnd I will die a hundred thousand deaths\nEre break the smallest parcel of this vow.\n\nKING HENRY IV:\nA hundred thousand rebels die in this:\nThou shalt have charge and sovereign trust herein.\nHow now, good Blunt? thy looks are full of speed.\n\nSIR WALTER BLUNT:\nSo hath the business that I come to speak of.\nLord Mortimer of Scotland hath sent word\nThat Douglas and the English rebels met\nThe eleventh of this month at Shrewsbury\nA mighty and a fearful head they are,\nIf promises be kept on every hand,\nAs ever offer'd foul play in the state.\n\nKING HENRY IV:\nThe Earl of Westmoreland set forth to-day;\nWith him my son, Lord John of Lancaster;\nFor this advertisement is five days old:\nOn Wednesday next, Harry, you shall set forward;\nOn Thursday we ourselves will march: our meeting\nIs Bridgenorth: and, Harry, you shall march\nThrough Gloucestershire; by which account,\nOur business valued, some twelve days hence\nOur general forces at Bridgenorth shall meet.\nOur hands are full of business: let's away;\nAdvantage feeds him fat, while men delay.\n\nFALSTAFF:\nBardolph, am I not fallen away vilely since this last\naction? do I not bate? do I not dwindle? Why my\nskin hangs about me like an like an old lady's loose\ngown; I am withered like an old apple-john. Well,\nI'll repent, and that suddenly, while I am in some\nliking; I shall be out of heart shortly, and then I\nshall have no strength to repent. An I have not\nforgotten what the inside of a church is made of, I\nam a peppercorn, a brewer's horse: the inside of a\nchurch! Company, villanous company, hath been the\nspoil of me.\n\nBARDOLPH:\nSir John, you are so fretful, you cannot live long.\n\nFALSTAFF:\nWhy, there is it: come sing me a bawdy song; make\nme merry. I was as virtuously given as a gentleman\nneed to be; virtuous enough; swore little; diced not\nabove seven times a week; went to a bawdy-house once\nin a quarter--of an hour; paid money that I\nborrowed, three of four times; lived well and in\ngood compass: and now I live out of all order, out\nof all compass.\n\nBARDOLPH:\nWhy, you are so fat, Sir John, that you must needs\nbe out of all compass, out of all reasonable\ncompass, Sir John.\n\nFALSTAFF:\nDo thou amend thy face, and I'll amend my life:\nthou art our admiral, thou bearest the lantern in\nthe poop, but 'tis in the nose of thee; thou art the\nKnight of the Burning Lamp.\n\nBARDOLPH:\nWhy, Sir John, my face does you no harm.\n\nFALSTAFF:\nNo, I'll be sworn; I make as good use of it as many\na man doth of a Death's-head or a memento mori: I\nnever see thy face but I think upon hell-fire and\nDives that lived in purple; for there he is in his\nrobes, burning, burning. If thou wert any way\ngiven to virtue, I would swear by thy face; my oath\nshould be 'By this fire, that's God's angel:' but\nthou art altogether given over; and wert indeed, but\nfor the light in thy face, the son of utter\ndarkness. When thou rannest up Gadshill in the\nnight to catch my horse, if I did not think thou\nhadst been an ignis fatuus or a ball of wildfire,\nthere's no purchase in money. O, thou art a\nperpetual triumph, an everlasting bonfire-light!\nThou hast saved me a thousand marks in links and\ntorches, walking with thee in the night betwixt\ntavern and tavern: but the sack that thou hast\ndrunk me would have bought me lights as good cheap\nat the dearest chandler's in Europe. I have\nmaintained that salamander of yours with fire any\ntime this two and thirty years; God reward me for\nit!\n\nBARDOLPH:\n'Sblood, I would my face were in your belly!\n\nFALSTAFF:\nGod-a-mercy! so should I be sure to be heart-burned.\nHow now, Dame Partlet the hen! have you inquired\nyet who picked my pocket?\n\nHostess:\nWhy, Sir John, what do you think, Sir John? do you\nthink I keep thieves in my house? I have searched,\nI have inquired, so has my husband, man by man, boy\nby boy, servant by servant: the tithe of a hair\nwas never lost in my house before.\n\nFALSTAFF:\nYe lie, hostess: Bardolph was shaved and lost many\na hair; and I'll be sworn my pocket was picked. Go\nto, you are a woman, go.\n\nHostess:\nWho, I? no; I defy thee: God's light, I was never\ncalled so in mine own house before.\n\nFALSTAFF:\nGo to, I know you well enough.\n\nHostess:\nNo, Sir John; You do not know me, Sir John. I know\nyou, Sir John: you owe me money, Sir John; and now\nyou pick a quarrel to beguile me of it: I bought\nyou a dozen of shirts to your back.\n\nFALSTAFF:\nDowlas, filthy dowlas: I have given them away to\nbakers' wives, and they have made bolters of them.\n\nHostess:\nNow, as I am a true woman, holland of eight\nshillings an ell. You owe money here besides, Sir\nJohn, for your diet and by-drinkings, and money lent\nyou, four and twenty pound.\n\nFALSTAFF:\nHe had his part of it; let him pay.\n\nHostess:\nHe? alas, he is poor; he hath nothing.\n\nFALSTAFF:\nHow! poor? look upon his face; what call you rich?\nlet them coin his nose, let them coin his cheeks:\nIll not pay a denier. What, will you make a younker\nof me? shall I not take mine case in mine inn but I\nshall have my pocket picked? I have lost a\nseal-ring of my grandfather's worth forty mark.\n\nHostess:\nO Jesu, I have heard the prince tell him, I know not\nhow oft, that ring was copper!\n\nFALSTAFF:\nHow! the prince is a Jack, a sneak-cup: 'sblood, an\nhe were here, I would cudgel him like a dog, if he\nwould say so.\nHow now, lad! is the wind in that door, i' faith?\nmust we all march?\n\nBARDOLPH:\nYea, two and two, Newgate fashion.\n\nHostess:\nMy lord, I pray you, hear me.\n\nPRINCE HENRY:\nWhat sayest thou, Mistress Quickly? How doth thy\nhusband? I love him well; he is an honest man.\n\nHostess:\nGood my lord, hear me.\n\nFALSTAFF:\nPrithee, let her alone, and list to me.\n\nPRINCE HENRY:\nWhat sayest thou, Jack?\n\nFALSTAFF:\nThe other night I fell asleep here behind the arras\nand had my pocket picked: this house is turned\nbawdy-house; they pick pockets.\n\nPRINCE HENRY:\nWhat didst thou lose, Jack?\n\nFALSTAFF:\nWilt thou believe me, Hal? three or four bonds of\nforty pound apiece, and a seal-ring of my\ngrandfather's.\n\nPRINCE HENRY:\nA trifle, some eight-penny matter.\n\nHostess:\nSo I told him, my lord; and I said I heard your\ngrace say so: and, my lord, he speaks most vilely\nof you, like a foul-mouthed man as he is; and said\nhe would cudgel you.\n\nPRINCE HENRY:\nWhat! he did not?\n\nHostess:\nThere's neither faith, truth, nor womanhood in me else.\n\nFALSTAFF:\nThere's no more faith in thee than in a stewed\nprune; nor no more truth in thee than in a drawn\nfox; and for womanhood, Maid Marian may be the\ndeputy's wife of the ward to thee. Go, you thing,\ngo\n\nHostess:\nSay, what thing? what thing?\n\nFALSTAFF:\nWhat thing! why, a thing to thank God on.\n\nHostess:\nI am no thing to thank God on, I would thou\nshouldst know it; I am an honest man's wife: and,\nsetting thy knighthood aside, thou art a knave to\ncall me so.\n\nFALSTAFF:\nSetting thy womanhood aside, thou art a beast to say\notherwise.\n\nHostess:\nSay, what beast, thou knave, thou?\n\nFALSTAFF:\nWhat beast! why, an otter.\n\nPRINCE HENRY:\nAn otter, Sir John! Why an otter?\n\nFALSTAFF:\nWhy, she's neither fish nor flesh; a man knows not\nwhere to have her.\n\nHostess:\nThou art an unjust man in saying so: thou or any\nman knows where to have me, thou knave, thou!\n\nPRINCE HENRY:\nThou sayest true, hostess; and he slanders thee most grossly.\n\nHostess:\nSo he doth you, my lord; and said this other day you\nought him a thousand pound.\n\nPRINCE HENRY:\nSirrah, do I owe you a thousand pound?\n\nFALSTAFF:\nA thousand pound, Ha! a million: thy love is worth\na million: thou owest me thy love.\n\nHostess:\nNay, my lord, he called you Jack, and said he would\ncudgel you.\n\nFALSTAFF:\nDid I, Bardolph?\n\nBARDOLPH:\nIndeed, Sir John, you said so.\n\nFALSTAFF:\nYea, if he said my ring was copper.\n\nPRINCE HENRY:\nI say 'tis copper: darest thou be as good as thy word now?\n\nFALSTAFF:\nWhy, Hal, thou knowest, as thou art but man, I dare:\nbut as thou art prince, I fear thee as I fear the\nroaring of a lion's whelp.\n\nPRINCE HENRY:\nAnd why not as the lion?\n\nFALSTAFF:\nThe king is to be feared as the lion: dost thou\nthink I'll fear thee as I fear thy father? nay, an\nI do, I pray God my girdle break.\n\nPRINCE HENRY:\nO, if it should, how would thy guts fall about thy\nknees! But, sirrah, there's no room for faith,\ntruth, nor honesty in this bosom of thine; it is all\nfilled up with guts and midriff. Charge an honest\nwoman with picking thy pocket! why, thou whoreson,\nimpudent, embossed rascal, if there were anything in\nthy pocket but tavern-reckonings, memorandums of\nbawdy-houses, and one poor penny-worth of\nsugar-candy to make thee long-winded, if thy pocket\nwere enriched with any other injuries but these, I\nam a villain: and yet you will stand to if; you will\nnot pocket up wrong: art thou not ashamed?\n\nFALSTAFF:\nDost thou hear, Hal? thou knowest in the state of\ninnocency Adam fell; and what should poor Jack\nFalstaff do in the days of villany? Thou seest I\nhave more flesh than another man, and therefore more\nfrailty. You confess then, you picked my pocket?\n\nPRINCE HENRY:\nIt appears so by the story.\n\nFALSTAFF:\nHostess, I forgive thee: go, make ready breakfast;\nlove thy husband, look to thy servants, cherish thy\nguests: thou shalt find me tractable to any honest\nreason: thou seest I am pacified still. Nay,\nprithee, be gone.\nNow Hal, to the news at court: for the robbery,\nlad, how is that answered?\n\nPRINCE HENRY:\nO, my sweet beef, I must still be good angel to\nthee: the money is paid back again.\n\nFALSTAFF:\nO, I do not like that paying back; 'tis a double labour.\n\nPRINCE HENRY:\nI am good friends with my father and may do any thing.\n\nFALSTAFF:\nRob me the exchequer the first thing thou doest, and\ndo it with unwashed hands too.\n\nBARDOLPH:\nDo, my lord.\n\nPRINCE HENRY:\nI have procured thee, Jack, a charge of foot.\n\nFALSTAFF:\nI would it had been of horse. Where shall I find\none that can steal well? O for a fine thief, of the\nage of two and twenty or thereabouts! I am\nheinously unprovided. Well, God be thanked for\nthese rebels, they offend none but the virtuous: I\nlaud them, I praise them.\n\nPRINCE HENRY:\nBardolph!\n\nBARDOLPH:\nMy lord?\n\nPRINCE HENRY:\nGo bear this letter to Lord John of Lancaster, to my\nbrother John; this to my Lord of Westmoreland.\nGo, Peto, to horse, to horse; for thou and I have\nthirty miles to ride yet ere dinner time.\nJack, meet me to-morrow in the temple hall at two\no'clock in the afternoon.\nThere shalt thou know thy charge; and there receive\nMoney and order for their furniture.\nThe land is burning; Percy stands on high;\nAnd either we or they must lower lie.\n\nFALSTAFF:\nRare words! brave world! Hostess, my breakfast, come!\nO, I could wish this tavern were my drum!\n\nHOTSPUR:\nWell said, my noble Scot: if speaking truth\nIn this fine age were not thought flattery,\nSuch attribution should the Douglas have,\nAs not a soldier of this season's stamp\nShould go so general current through the world.\nBy God, I cannot flatter; I do defy\nThe tongues of soothers; but a braver place\nIn my heart's love hath no man than yourself:\nNay, task me to my word; approve me, lord.\n\nEARL OF DOUGLAS:\nThou art the king of honour:\nNo man so potent breathes upon the ground\nBut I will beard him.\n\nHOTSPUR:\nDo so, and 'tis well.\nWhat letters hast thou there?--I can but thank you.\n\nMessenger:\nThese letters come from your father.\n\nHOTSPUR:\nLetters from him! why comes he not himself?\n\nMessenger:\nHe cannot come, my lord; he is grievous sick.\n\nHOTSPUR:\n'Zounds! how has he the leisure to be sick\nIn such a rustling time? Who leads his power?\nUnder whose government come they along?\n\nMessenger:\nHis letters bear his mind, not I, my lord.\n\nEARL OF WORCESTER:\nI prithee, tell me, doth he keep his bed?\n\nMessenger:\nHe did, my lord, four days ere I set forth;\nAnd at the time of my departure thence\nHe was much fear'd by his physicians.\n\nEARL OF WORCESTER:\nI would the state of time had first been whole\nEre he by sickness had been visited:\nHis health was never better worth than now.\n\nHOTSPUR:\nSick now! droop now! this sickness doth infect\nThe very life-blood of our enterprise;\n'Tis catching hither, even to our camp.\nHe writes me here, that inward sickness--\nAnd that his friends by deputation could not\nSo soon be drawn, nor did he think it meet\nTo lay so dangerous and dear a trust\nOn any soul removed but on his own.\nYet doth he give us bold advertisement,\nThat with our small conjunction we should on,\nTo see how fortune is disposed to us;\nFor, as he writes, there is no quailing now.\nBecause the king is certainly possess'd\nOf all our purposes. What say you to it?\n\nEARL OF WORCESTER:\nYour father's sickness is a maim to us.\n\nHOTSPUR:\nA perilous gash, a very limb lopp'd off:\nAnd yet, in faith, it is not; his present want\nSeems more than we shall find it: were it good\nTo set the exact wealth of all our states\nAll at one cast? to set so rich a main\nOn the nice hazard of one doubtful hour?\nIt were not good; for therein should we read\nThe very bottom and the soul of hope,\nThe very list, the very utmost bound\nOf all our fortunes.\n\nEARL OF DOUGLAS:\n'Faith, and so we should;\nWhere now remains a sweet reversion:\nWe may boldly spend upon the hope of what\nIs to come in:\nA comfort of retirement lives in this.\n\nHOTSPUR:\nA rendezvous, a home to fly unto.\nIf that the devil and mischance look big\nUpon the maidenhead of our affairs.\n\nEARL OF WORCESTER:\nBut yet I would your father had been here.\nThe quality and hair of our attempt\nBrooks no division: it will be thought\nBy some, that know not why he is away,\nThat wisdom, loyalty and mere dislike\nOf our proceedings kept the earl from hence:\nAnd think how such an apprehension\nMay turn the tide of fearful faction\nAnd breed a kind of question in our cause;\nFor well you know we of the offering side\nMust keep aloof from strict arbitrement,\nAnd stop all sight-holes, every loop from whence\nThe eye of reason may pry in upon us:\nThis absence of your father's draws a curtain,\nThat shows the ignorant a kind of fear\nBefore not dreamt of.\n\nHOTSPUR:\nYou strain too far.\nI rather of his absence make this use:\nIt lends a lustre and more great opinion,\nA larger dare to our great enterprise,\nThan if the earl were here; for men must think,\nIf we without his help can make a head\nTo push against a kingdom, with his help\nWe shall o'erturn it topsy-turvy down.\nYet all goes well, yet all our joints are whole.\n\nEARL OF DOUGLAS:\nAs heart can think: there is not such a word\nSpoke of in Scotland as this term of fear.\n\nHOTSPUR:\nMy cousin Vernon, welcome, by my soul.\n\nVERNON:\nPray God my news be worth a welcome, lord.\nThe Earl of Westmoreland, seven thousand strong,\nIs marching hitherwards; with him Prince John.\n\nHOTSPUR:\nNo harm: what more?\n\nVERNON:\nAnd further, I have learn'd,\nThe king himself in person is set forth,\nOr hitherwards intended speedily,\nWith strong and mighty preparation.\n\nHOTSPUR:\nHe shall be welcome too. Where is his son,\nThe nimble-footed madcap Prince of Wales,\nAnd his comrades, that daff'd the world aside,\nAnd bid it pass?\n\nVERNON:\nAll furnish'd, all in arms;\nAll plumed like estridges that with the wind\nBaited like eagles having lately bathed;\nGlittering in golden coats, like images;\nAs full of spirit as the month of May,\nAnd gorgeous as the sun at midsummer;\nWanton as youthful goats, wild as young bulls.\nI saw young Harry, with his beaver on,\nHis cuisses on his thighs, gallantly arm'd\nRise from the ground like feather'd Mercury,\nAnd vaulted with such ease into his seat,\nAs if an angel dropp'd down from the clouds,\nTo turn and wind a fiery Pegasus\nAnd witch the world with noble horsemanship.\n\nHOTSPUR:\nNo more, no more: worse than the sun in March,\nThis praise doth nourish agues. Let them come:\nThey come like sacrifices in their trim,\nAnd to the fire-eyed maid of smoky war\nAll hot and bleeding will we offer them:\nThe mailed Mars shall on his altar sit\nUp to the ears in blood. I am on fire\nTo hear this rich reprisal is so nigh\nAnd yet not ours. Come, let me taste my horse,\nWho is to bear me like a thunderbolt\nAgainst the bosom of the Prince of Wales:\nHarry to Harry shall, hot horse to horse,\nMeet and ne'er part till one drop down a corse.\nO that Glendower were come!\n\nVERNON:\nThere is more news:\nI learn'd in Worcester, as I rode along,\nHe cannot draw his power this fourteen days.\n\nEARL OF DOUGLAS:\nThat's the worst tidings that I hear of yet.\n\nWORCESTER:\nAy, by my faith, that bears a frosty sound.\n\nHOTSPUR:\nWhat may the king's whole battle reach unto?\n\nVERNON:\nTo thirty thousand.\n\nHOTSPUR:\nForty let it be:\nMy father and Glendower being both away,\nThe powers of us may serve so great a day\nCome, let us take a muster speedily:\nDoomsday is near; die all, die merrily.\n\nEARL OF DOUGLAS:\nTalk not of dying: I am out of fear\nOf death or death's hand for this one-half year.\n\nFALSTAFF:\nBardolph, get thee before to Coventry; fill me a\nbottle of sack: our soldiers shall march through;\nwe'll to Sutton Co'fil' tonight.\n\nBARDOLPH:\nWill you give me money, captain?\n\nFALSTAFF:\nLay out, lay out.\n\nBARDOLPH:\nThis bottle makes an angel.\n\nFALSTAFF:\nAn if it do, take it for thy labour; and if it make\ntwenty, take them all; I'll answer the coinage. Bid\nmy lieutenant Peto meet me at town's end.\n\nBARDOLPH:\nI will, captain: farewell.\n\nFALSTAFF:\nIf I be not ashamed of my soldiers, I am a soused\ngurnet. I have misused the king's press damnably.\nI have got, in exchange of a hundred and fifty\nsoldiers, three hundred and odd pounds. I press me\nnone but good house-holders, yeoman's sons; inquire\nme out contracted bachelors, such as had been asked\ntwice on the banns; such a commodity of warm slaves,\nas had as lieve hear the devil as a drum; such as\nfear the report of a caliver worse than a struck\nfowl or a hurt wild-duck. I pressed me none but such\ntoasts-and-butter, with hearts in their bellies no\nbigger than pins' heads, and they have bought out\ntheir services; and now my whole charge consists of\nancients, corporals, lieutenants, gentlemen of\ncompanies, slaves as ragged as Lazarus in the\npainted cloth, where the glutton's dogs licked his\nsores; and such as indeed were never soldiers, but\ndiscarded unjust serving-men, younger sons to\nyounger brothers, revolted tapsters and ostlers\ntrade-fallen, the cankers of a calm world and a\nlong peace, ten times more dishonourable ragged than\nan old faced ancient: and such have I, to fill up\nthe rooms of them that have bought out their\nservices, that you would think that I had a hundred\nand fifty tattered prodigals lately come from\nswine-keeping, from eating draff and husks. A mad\nfellow met me on the way and told me I had unloaded\nall the gibbets and pressed the dead bodies. No eye\nhath seen such scarecrows. I'll not march through\nCoventry with them, that's flat: nay, and the\nvillains march wide betwixt the legs, as if they had\ngyves on; for indeed I had the most of them out of\nprison. There's but a shirt and a half in all my\ncompany; and the half shirt is two napkins tacked\ntogether and thrown over the shoulders like an\nherald's coat without sleeves; and the shirt, to say\nthe truth, stolen from my host at Saint Alban's, or\nthe red-nose innkeeper of Daventry. But that's all\none; they'll find linen enough on every hedge.\n\nPRINCE HENRY:\nHow now, blown Jack! how now, quilt!\n\nFALSTAFF:\nWhat, Hal! how now, mad wag! what a devil dost thou\nin Warwickshire? My good Lord of Westmoreland, I\ncry you mercy: I thought your honour had already been\nat Shrewsbury.\n\nWESTMORELAND:\nFaith, Sir John,'tis more than time that I were\nthere, and you too; but my powers are there already.\nThe king, I can tell you, looks for us all: we must\naway all night.\n\nFALSTAFF:\nTut, never fear me: I am as vigilant as a cat to\nsteal cream.\n\nPRINCE HENRY:\nI think, to steal cream indeed, for thy theft hath\nalready made thee butter. But tell me, Jack, whose\nfellows are these that come after?\n\nFALSTAFF:\nMine, Hal, mine.\n\nPRINCE HENRY:\nI did never see such pitiful rascals.\n\nFALSTAFF:\nTut, tut; good enough to toss; food for powder, food\nfor powder; they'll fill a pit as well as better:\ntush, man, mortal men, mortal men.\n\nWESTMORELAND:\nAy, but, Sir John, methinks they are exceeding poor\nand bare, too beggarly.\n\nFALSTAFF:\n'Faith, for their poverty, I know not where they had\nthat; and for their bareness, I am sure they never\nlearned that of me.\n\nPRINCE HENRY:\nNo I'll be sworn; unless you call three fingers on\nthe ribs bare. But, sirrah, make haste: Percy is\nalready in the field.\n\nFALSTAFF:\nWhat, is the king encamped?\n\nWESTMORELAND:\nHe is, Sir John: I fear we shall stay too long.\n\nFALSTAFF:\nWell,\nTo the latter end of a fray and the beginning of a feast\nFits a dull fighter and a keen guest.\n\nHOTSPUR:\nWe'll fight with him to-night.\n\nEARL OF WORCESTER:\nIt may not be.\n\nEARL OF DOUGLAS:\nYou give him then the advantage.\n\nVERNON:\nNot a whit.\n\nHOTSPUR:\nWhy say you so? looks he not for supply?\n\nVERNON:\nSo do we.\n\nHOTSPUR:\nHis is certain, ours is doubtful.\n\nEARL OF WORCESTER:\nGood cousin, be advised; stir not tonight.\n\nVERNON:\nDo not, my lord.\n\nEARL OF DOUGLAS:\nYou do not counsel well:\nYou speak it out of fear and cold heart.\n\nVERNON:\nDo me no slander, Douglas: by my life,\nAnd I dare well maintain it with my life,\nIf well-respected honour bid me on,\nI hold as little counsel with weak fear\nAs you, my lord, or any Scot that this day lives:\nLet it be seen to-morrow in the battle\nWhich of us fears.\n\nEARL OF DOUGLAS:\nYea, or to-night.\n\nVERNON:\nContent.\n\nHOTSPUR:\nTo-night, say I.\n\nVERNON:\nCome, come it nay not be. I wonder much,\nBeing men of such great leading as you are,\nThat you foresee not what impediments\nDrag back our expedition: certain horse\nOf my cousin Vernon's are not yet come up:\nYour uncle Worcester's horse came but today;\nAnd now their pride and mettle is asleep,\nTheir courage with hard labour tame and dull,\nThat not a horse is half the half of himself.\n\nHOTSPUR:\nSo are the horses of the enemy\nIn general, journey-bated and brought low:\nThe better part of ours are full of rest.\n\nEARL OF WORCESTER:\nThe number of the king exceedeth ours:\nFor God's sake. cousin, stay till all come in.\n\nSIR WALTER BLUNT:\nI come with gracious offers from the king,\nif you vouchsafe me hearing and respect.\n\nHOTSPUR:\nWelcome, Sir Walter Blunt; and would to God\nYou were of our determination!\nSome of us love you well; and even those some\nEnvy your great deservings and good name,\nBecause you are not of our quality,\nBut stand against us like an enemy.\n\nSIR WALTER BLUNT:\nAnd God defend but still I should stand so,\nSo long as out of limit and true rule\nYou stand against anointed majesty.\nBut to my charge. The king hath sent to know\nThe nature of your griefs, and whereupon\nYou conjure from the breast of civil peace\nSuch bold hostility, teaching his duteous land\nAudacious cruelty. If that the king\nHave any way your good deserts forgot,\nWhich he confesseth to be manifold,\nHe bids you name your griefs; and with all speed\nYou shall have your desires with interest\nAnd pardon absolute for yourself and these\nHerein misled by your suggestion.\n\nHOTSPUR:\nThe king is kind; and well we know the king\nKnows at what time to promise, when to pay.\nMy father and my uncle and myself\nDid give him that same royalty he wears;\nAnd when he was not six and twenty strong,\nSick in the world's regard, wretched and low,\nA poor unminded outlaw sneaking home,\nMy father gave him welcome to the shore;\nAnd when he heard him swear and vow to God\nHe came but to be Duke of Lancaster,\nTo sue his livery and beg his peace,\nWith tears of innocency and terms of zeal,\nMy father, in kind heart and pity moved,\nSwore him assistance and perform'd it too.\nNow when the lords and barons of the realm\nPerceived Northumberland did lean to him,\nThe more and less came in with cap and knee;\nMet him in boroughs, cities, villages,\nAttended him on bridges, stood in lanes,\nLaid gifts before him, proffer'd him their oaths,\nGave him their heirs, as pages follow'd him\nEven at the heels in golden multitudes.\nHe presently, as greatness knows itself,\nSteps me a little higher than his vow\nMade to my father, while his blood was poor,\nUpon the naked shore at Ravenspurgh;\nAnd now, forsooth, takes on him to reform\nSome certain edicts and some strait decrees\nThat lie too heavy on the commonwealth,\nCries out upon abuses, seems to weep\nOver his country's wrongs; and by this face,\nThis seeming brow of justice, did he win\nThe hearts of all that he did angle for;\nProceeded further; cut me off the heads\nOf all the favourites that the absent king\nIn deputation left behind him here,\nWhen he was personal in the Irish war.\n\nSIR WALTER BLUNT:\nTut, I came not to hear this.\n\nHOTSPUR:\nThen to the point.\nIn short time after, he deposed the king;\nSoon after that, deprived him of his life;\nAnd in the neck of that, task'd the whole state:\nTo make that worse, suffer'd his kinsman March,\nWho is, if every owner were well placed,\nIndeed his king, to be engaged in Wales,\nThere without ransom to lie forfeited;\nDisgraced me in my happy victories,\nSought to entrap me by intelligence;\nRated mine uncle from the council-board;\nIn rage dismiss'd my father from the court;\nBroke oath on oath, committed wrong on wrong,\nAnd in conclusion drove us to seek out\nThis head of safety; and withal to pry\nInto his title, the which we find\nToo indirect for long continuance.\n\nSIR WALTER BLUNT:\nShall I return this answer to the king?\n\nHOTSPUR:\nNot so, Sir Walter: we'll withdraw awhile.\nGo to the king; and let there be impawn'd\nSome surety for a safe return again,\nAnd in the morning early shall my uncle\nBring him our purposes: and so farewell.\n\nSIR WALTER BLUNT:\nI would you would accept of grace and love.\n\nHOTSPUR:\nAnd may be so we shall.\n\nSIR WALTER BLUNT:\nPray God you do.\n\nARCHBISHOP OF YORK:\nHie, good Sir Michael; bear this sealed brief\nWith winged haste to the lord marshal;\nThis to my cousin Scroop, and all the rest\nTo whom they are directed. If you knew\nHow much they do to import, you would make haste.\n\nSIR MICHAEL:\nMy good lord,\nI guess their tenor.\n\nARCHBISHOP OF YORK:\nLike enough you do.\nTo-morrow, good Sir Michael, is a day\nWherein the fortune of ten thousand men\nMust bide the touch; for, sir, at Shrewsbury,\nAs I am truly given to understand,\nThe king with mighty and quick-raised power\nMeets with Lord Harry: and, I fear, Sir Michael,\nWhat with the sickness of Northumberland,\nWhose power was in the first proportion,\nAnd what with Owen Glendower's absence thence,\nWho with them was a rated sinew too\nAnd comes not in, o'er-ruled by prophecies,\nI fear the power of Percy is too weak\nTo wage an instant trial with the king.\n\nSIR MICHAEL:\nWhy, my good lord, you need not fear;\nThere is Douglas and Lord Mortimer.\n\nARCHBISHOP OF YORK:\nNo, Mortimer is not there.\n\nSIR MICHAEL:\nBut there is Mordake, Vernon, Lord Harry Percy,\nAnd there is my Lord of Worcester and a head\nOf gallant warriors, noble gentlemen.\n\nARCHBISHOP OF YORK:\nAnd so there is: but yet the king hath drawn\nThe special head of all the land together:\nThe Prince of Wales, Lord John of Lancaster,\nThe noble Westmoreland and warlike Blunt;\nAnd moe corrivals and dear men\nOf estimation and command in arms.\n\nSIR MICHAEL:\nDoubt not, my lord, they shall be well opposed.\n\nARCHBISHOP OF YORK:\nI hope no less, yet needful 'tis to fear;\nAnd, to prevent the worst, Sir Michael, speed:\nFor if Lord Percy thrive not, ere the king\nDismiss his power, he means to visit us,\nFor he hath heard of our confederacy,\nAnd 'tis but wisdom to make strong against him:\nTherefore make haste. I must go write again\nTo other friends; and so farewell, Sir Michael.\n\nKING HENRY IV:\nHow bloodily the sun begins to peer\nAbove yon busky hill! the day looks pale\nAt his distemperature.\n\nPRINCE HENRY:\nThe southern wind\nDoth play the trumpet to his purposes,\nAnd by his hollow whistling in the leaves\nForetells a tempest and a blustering day.\n\nKING HENRY IV:\nThen with the losers let it sympathize,\nFor nothing can seem foul to those that win.\nHow now, my Lord of Worcester! 'tis not well\nThat you and I should meet upon such terms\nAs now we meet. You have deceived our trust,\nAnd made us doff our easy robes of peace,\nTo crush our old limbs in ungentle steel:\nThis is not well, my lord, this is not well.\nWhat say you to it? will you again unknit\nThis curlish knot of all-abhorred war?\nAnd move in that obedient orb again\nWhere you did give a fair and natural light,\nAnd be no more an exhaled meteor,\nA prodigy of fear and a portent\nOf broached mischief to the unborn times?\n\nEARL OF WORCESTER:\nHear me, my liege:\nFor mine own part, I could be well content\nTo entertain the lag-end of my life\nWith quiet hours; for I do protest,\nI have not sought the day of this dislike.\n\nKING HENRY IV:\nYou have not sought it! how comes it, then?\n\nFALSTAFF:\nRebellion lay in his way, and he found it.\n\nPRINCE HENRY:\nPeace, chewet, peace!\n\nEARL OF WORCESTER:\nIt pleased your majesty to turn your looks\nOf favour from myself and all our house;\nAnd yet I must remember you, my lord,\nWe were the first and dearest of your friends.\nFor you my staff of office did I break\nIn Richard's time; and posted day and night\nto meet you on the way, and kiss your hand,\nWhen yet you were in place and in account\nNothing so strong and fortunate as I.\nIt was myself, my brother and his son,\nThat brought you home and boldly did outdare\nThe dangers of the time. You swore to us,\nAnd you did swear that oath at Doncaster,\nThat you did nothing purpose 'gainst the state;\nNor claim no further than your new-fall'n right,\nThe seat of Gaunt, dukedom of Lancaster:\nTo this we swore our aid. But in short space\nIt rain'd down fortune showering on your head;\nAnd such a flood of greatness fell on you,\nWhat with our help, what with the absent king,\nWhat with the injuries of a wanton time,\nThe seeming sufferances that you had borne,\nAnd the contrarious winds that held the king\nSo long in his unlucky Irish wars\nThat all in England did repute him dead:\nAnd from this swarm of fair advantages\nYou took occasion to be quickly woo'd\nTo gripe the general sway into your hand;\nForget your oath to us at Doncaster;\nAnd being fed by us you used us so\nAs that ungentle hull, the cuckoo's bird,\nUseth the sparrow; did oppress our nest;\nGrew by our feeding to so great a bulk\nThat even our love durst not come near your sight\nFor fear of swallowing; but with nimble wing\nWe were enforced, for safety sake, to fly\nOut of sight and raise this present head;\nWhereby we stand opposed by such means\nAs you yourself have forged against yourself\nBy unkind usage, dangerous countenance,\nAnd violation of all faith and troth\nSworn to us in your younger enterprise.\n\nKING HENRY IV:\nThese things indeed you have articulate,\nProclaim'd at market-crosses, read in churches,\nTo face the garment of rebellion\nWith some fine colour that may please the eye\nOf fickle changelings and poor discontents,\nWhich gape and rub the elbow at the news\nOf hurlyburly innovation:\nAnd never yet did insurrection want\nSuch water-colours to impaint his cause;\nNor moody beggars, starving for a time\nOf pellmell havoc and confusion.\n\nPRINCE HENRY:\nIn both your armies there is many a soul\nShall pay full dearly for this encounter,\nIf once they join in trial. Tell your nephew,\nThe Prince of Wales doth join with all the world\nIn praise of Henry Percy: by my hopes,\nThis present enterprise set off his head,\nI do not think a braver gentleman,\nMore active-valiant or more valiant-young,\nMore daring or more bold, is now alive\nTo grace this latter age with noble deeds.\nFor my part, I may speak it to my shame,\nI have a truant been to chivalry;\nAnd so I hear he doth account me too;\nYet this before my father's majesty--\nI am content that he shall take the odds\nOf his great name and estimation,\nAnd will, to save the blood on either side,\nTry fortune with him in a single fight.\n\nKING HENRY IV:\nAnd, Prince of Wales, so dare we venture thee,\nAlbeit considerations infinite\nDo make against it. No, good Worcester, no,\nWe love our people well; even those we love\nThat are misled upon your cousin's part;\nAnd, will they take the offer of our grace,\nBoth he and they and you, every man\nShall be my friend again and I'll be his:\nSo tell your cousin, and bring me word\nWhat he will do: but if he will not yield,\nRebuke and dread correction wait on us\nAnd they shall do their office. So, be gone;\nWe will not now be troubled with reply:\nWe offer fair; take it advisedly.\n\nPRINCE HENRY:\nIt will not be accepted, on my life:\nThe Douglas and the Hotspur both together\nAre confident against the world in arms.\n\nKING HENRY IV:\nHence, therefore, every leader to his charge;\nFor, on their answer, will we set on them:\nAnd God befriend us, as our cause is just!\n\nFALSTAFF:\nHal, if thou see me down in the battle and bestride\nme, so; 'tis a point of friendship.\n\nPRINCE HENRY:\nNothing but a colossus can do thee that friendship.\nSay thy prayers, and farewell.\n\nFALSTAFF:\nI  would 'twere bed-time, Hal, and all well.\n\nPRINCE HENRY:\nWhy, thou owest God a death.\n\nFALSTAFF:\n'Tis not due yet; I would be loath to pay him before\nhis day. What need I be so forward with him that\ncalls not on me? Well, 'tis no matter; honour pricks\nme on. Yea, but how if honour prick me off when I\ncome on? how then? Can honour set to a leg? no: or\nan arm? no: or take away the grief of a wound? no.\nHonour hath no skill in surgery, then? no. What is\nhonour? a word. What is in that word honour? what\nis that honour? air. A trim reckoning! Who hath it?\nhe that died o' Wednesday. Doth he feel it? no.\nDoth he hear it? no. 'Tis insensible, then. Yea,\nto the dead. But will it not live with the living?\nno. Why? detraction will not suffer it. Therefore\nI'll none of it. Honour is a mere scutcheon: and so\nends my catechism.\n\nEARL OF WORCESTER:\nO, no, my nephew must not know, Sir Richard,\nThe liberal and kind offer of the king.\n\nVERNON:\n'Twere best he did.\n\nEARL OF WORCESTER:\nThen are we all undone.\nIt is not possible, it cannot be,\nThe king should keep his word in loving us;\nHe will suspect us still and find a time\nTo punish this offence in other faults:\nSuspicion all our lives shall be stuck full of eyes;\nFor treason is but trusted like the fox,\nWho, ne'er so tame, so cherish'd and lock'd up,\nWill have a wild trick of his ancestors.\nLook how we can, or sad or merrily,\nInterpretation will misquote our looks,\nAnd we shall feed like oxen at a stall,\nThe better cherish'd, still the nearer death.\nMy nephew's trespass may be well forgot;\nit hath the excuse of youth and heat of blood,\nAnd an adopted name of privilege,\nA hair-brain'd Hotspur, govern'd by a spleen:\nAll his offences live upon my head\nAnd on his father's; we did train him on,\nAnd, his corruption being ta'en from us,\nWe, as the spring of all, shall pay for all.\nTherefore, good cousin, let not Harry know,\nIn any case, the offer of the king.\n\nVERNON:\nDeliver what you will; I'll say 'tis so.\nHere comes your cousin.\n\nHOTSPUR:\nMy uncle is return'd:\nDeliver up my Lord of Westmoreland.\nUncle, what news?\n\nEARL OF WORCESTER:\nThe king will bid you battle presently.\n\nEARL OF DOUGLAS:\nDefy him by the Lord of Westmoreland.\n\nHOTSPUR:\nLord Douglas, go you and tell him so.\n\nEARL OF DOUGLAS:\nMarry, and shall, and very willingly.\n\nEARL OF WORCESTER:\nThere is no seeming mercy in the king.\n\nHOTSPUR:\nDid you beg any? God forbid!\n\nEARL OF WORCESTER:\nI told him gently of our grievances,\nOf his oath-breaking; which he mended thus,\nBy now forswearing that he is forsworn:\nHe calls us rebels, traitors; and will scourge\nWith haughty arms this hateful name in us.\n\nEARL OF DOUGLAS:\nArm, gentlemen; to arms! for I have thrown\nA brave defiance in King Henry's teeth,\nAnd Westmoreland, that was engaged, did bear it;\nWhich cannot choose but bring him quickly on.\n\nEARL OF WORCESTER:\nThe Prince of Wales stepp'd forth before the king,\nAnd, nephew, challenged you to single fight.\n\nHOTSPUR:\nO, would the quarrel lay upon our heads,\nAnd that no man might draw short breath today\nBut I and Harry Monmouth! Tell me, tell me,\nHow show'd his tasking? seem'd it in contempt?\n\nVERNON:\nNo, by my soul; I never in my life\nDid hear a challenge urged more modestly,\nUnless a brother should a brother dare\nTo gentle exercise and proof of arms.\nHe gave you all the duties of a man;\nTrimm'd up your praises with a princely tongue,\nSpoke to your deservings like a chronicle,\nMaking you ever better than his praise\nBy still dispraising praise valued in you;\nAnd, which became him like a prince indeed,\nHe made a blushing cital of himself;\nAnd chid his truant youth with such a grace\nAs if he master'd there a double spirit.\nOf teaching and of learning instantly.\nThere did he pause: but let me tell the world,\nIf he outlive the envy of this day,\nEngland did never owe so sweet a hope,\nSo much misconstrued in his wantonness.\n\nHOTSPUR:\nCousin, I think thou art enamoured\nOn his follies: never did I hear\nOf any prince so wild a libertine.\nBut be he as he will, yet once ere night\nI will embrace him with a soldier's arm,\nThat he shall shrink under my courtesy.\nArm, arm with speed: and, fellows, soldiers, friends,\nBetter consider what you have to do\nThan I, that have not well the gift of tongue,\nCan lift your blood up with persuasion.\n\nMessenger:\nMy lord, here are letters for you.\n\nHOTSPUR:\nI cannot read them now.\nO gentlemen, the time of life is short!\nTo spend that shortness basely were too long,\nIf life did ride upon a dial's point,\nStill ending at the arrival of an hour.\nAn if we live, we live to tread on kings;\nIf die, brave death, when princes die with us!\nNow, for our consciences, the arms are fair,\nWhen the intent of bearing them is just.\n\nMessenger:\nMy lord, prepare; the king comes on apace.\n\nHOTSPUR:\nI thank him, that he cuts me from my tale,\nFor I profess not talking; only this--\nLet each man do his best: and here draw I\nA sword, whose temper I intend to stain\nWith the best blood that I can meet withal\nIn the adventure of this perilous day.\nNow, Esperance! Percy! and set on.\nSound all the lofty instruments of war,\nAnd by that music let us all embrace;\nFor, heaven to earth, some of us never shall\nA second time do such a courtesy.\n\nSIR WALTER BLUNT:\nWhat is thy name, that in the battle thus\nThou crossest me? what honour dost thou seek\nUpon my head?\n\nEARL OF DOUGLAS:\nKnow then, my name is Douglas;\nAnd I do haunt thee in the battle thus\nBecause some tell me that thou art a king.\n\nSIR WALTER BLUNT:\nThey tell thee true.\n\nEARL OF DOUGLAS:\nThe Lord of Stafford dear to-day hath bought\nThy likeness, for instead of thee, King Harry,\nThis sword hath ended him: so shall it thee,\nUnless thou yield thee as my prisoner.\n\nSIR WALTER BLUNT:\nI was not born a yielder, thou proud Scot;\nAnd thou shalt find a king that will revenge\nLord Stafford's death.\n\nHOTSPUR:\nO Douglas, hadst thou fought at Holmedon thus,\nnever had triumph'd upon a Scot.\n\nEARL OF DOUGLAS:\nAll's done, all's won; here breathless lies the king.\n\nHOTSPUR:\nWhere?\n\nEARL OF DOUGLAS:\nHere.\n\nHOTSPUR:\nThis, Douglas? no: I know this face full well:\nA gallant knight he was, his name was Blunt;\nSemblably furnish'd like the king himself.\n\nEARL OF DOUGLAS:\nA fool go with thy soul, whither it goes!\nA borrow'd title hast thou bought too dear:\nWhy didst thou tell me that thou wert a king?\n\nHOTSPUR:\nThe king hath many marching in his coats.\n\nEARL OF DOUGLAS:\nNow, by my sword, I will kill all his coats;\nI'll murder all his wardrobe, piece by piece,\nUntil I meet the king.\n\nHOTSPUR:\nUp, and away!\nOur soldiers stand full fairly for the day.\n\nFALSTAFF:\nThough I could 'scape shot-free at London, I fear\nthe shot here; here's no scoring but upon the pate.\nSoft! who are you? Sir Walter Blunt: there's honour\nfor you! here's no vanity! I am as hot as moulten\nlead, and as heavy too: God keep lead out of me! I\nneed no more weight than mine own bowels. I have\nled my ragamuffins where they are peppered: there's\nnot three of my hundred and fifty left alive; and\nthey are for the town's end, to beg during life.\nBut who comes here?\n\nPRINCE HENRY:\nWhat, stand'st thou idle here? lend me thy sword:\nMany a nobleman lies stark and stiff\nUnder the hoofs of vaunting enemies,\nWhose deaths are yet unrevenged: I prithee,\nlend me thy sword.\n\nFALSTAFF:\nO Hal, I prithee, give me leave to breathe awhile.\nTurk Gregory never did such deeds in arms as I have\ndone this day. I have paid Percy, I have made him sure.\n\nPRINCE HENRY:\nHe is, indeed; and living to kill thee. I prithee,\nlend me thy sword.\n\nFALSTAFF:\nNay, before God, Hal, if Percy be alive, thou get'st\nnot my sword; but take my pistol, if thou wilt.\n\nPRINCE HENRY:\nGive it to me: what, is it in the case?\n\nFALSTAFF:\nAy, Hal; 'tis hot, 'tis hot; there's that will sack a city.\n\nPRINCE HENRY:\nWhat, is it a time to jest and dally now?\n\nFALSTAFF:\nWell, if Percy be alive, I'll pierce him. If he do\ncome in my way, so: if he do not, if I come in his\nwillingly, let him make a carbonado of me. I like\nnot such grinning honour as Sir Walter hath: give me\nlife: which if I can save, so; if not, honour comes\nunlooked for, and there's an end.\n\nKING HENRY IV:\nI prithee,\nHarry, withdraw thyself; thou bleed'st too much.\nLord John of Lancaster, go you with him.\n\nLANCASTER:\nNot I, my lord, unless I did bleed too.\n\nPRINCE HENRY:\nI beseech your majesty, make up,\nLest your retirement do amaze your friends.\n\nKING HENRY IV:\nI will do so.\nMy Lord of Westmoreland, lead him to his tent.\n\nWESTMORELAND:\nCome, my lord, I'll lead you to your tent.\n\nPRINCE HENRY:\nLead me, my lord? I do not need your help:\nAnd God forbid a shallow scratch should drive\nThe Prince of Wales from such a field as this,\nWhere stain'd nobility lies trodden on,\nand rebels' arms triumph in massacres!\n\nLANCASTER:\nWe breathe too long: come, cousin Westmoreland,\nOur duty this way lies; for God's sake come.\n\nPRINCE HENRY:\nBy God, thou hast deceived me, Lancaster;\nI did not think thee lord of such a spirit:\nBefore, I loved thee as a brother, John;\nBut now, I do respect thee as my soul.\n\nKING HENRY IV:\nI saw him hold Lord Percy at the point\nWith lustier maintenance than I did look for\nOf such an ungrown warrior.\n\nPRINCE HENRY:\nO, this boy\nLends mettle to us all!\n\nEARL OF DOUGLAS:\nAnother king! they grow like Hydra's heads:\nI am the Douglas, fatal to all those\nThat wear those colours on them: what art thou,\nThat counterfeit'st the person of a king?\n\nKING HENRY IV:\nThe king himself; who, Douglas, grieves at heart\nSo many of his shadows thou hast met\nAnd not the very king. I have two boys\nSeek Percy and thyself about the field:\nBut, seeing thou fall'st on me so luckily,\nI will assay thee: so, defend thyself.\n\nEARL OF DOUGLAS:\nI fear thou art another counterfeit;\nAnd yet, in faith, thou bear'st thee like a king:\nBut mine I am sure thou art, whoe'er thou be,\nAnd thus I win thee.\n\nPRINCE HENRY:\nHold up thy head, vile Scot, or thou art like\nNever to hold it up again! the spirits\nOf valiant Shirley, Stafford, Blunt, are in my arms:\nIt is the Prince of Wales that threatens thee;\nWho never promiseth but he means to pay.\nCheerly, my lord how fares your grace?\nSir Nicholas Gawsey hath for succor sent,\nAnd so hath Clifton: I'll to Clifton straight.\n\nKING HENRY IV:\nStay, and breathe awhile:\nThou hast redeem'd thy lost opinion,\nAnd show'd thou makest some tender of my life,\nIn this fair rescue thou hast brought to me.\n\nPRINCE HENRY:\nO God! they did me too much injury\nThat ever said I hearken'd for your death.\nIf it were so, I might have let alone\nThe insulting hand of Douglas over you,\nWhich would have been as speedy in your end\nAs all the poisonous potions in the world\nAnd saved the treacherous labour of your son.\n\nKING HENRY IV:\nMake up to Clifton: I'll to Sir Nicholas Gawsey.\n\nHOTSPUR:\nIf I mistake not, thou art Harry Monmouth.\n\nPRINCE HENRY:\nThou speak'st as if I would deny my name.\n\nHOTSPUR:\nMy name is Harry Percy.\n\nPRINCE HENRY:\nWhy, then I see\nA very valiant rebel of the name.\nI am the Prince of Wales; and think not, Percy,\nTo share with me in glory any more:\nTwo stars keep not their motion in one sphere;\nNor can one England brook a double reign,\nOf Harry Percy and the Prince of Wales.\n\nHOTSPUR:\nNor shall it, Harry; for the hour is come\nTo end the one of us; and would to God\nThy name in arms were now as great as mine!\n\nPRINCE HENRY:\nI'll make it greater ere I part from thee;\nAnd all the budding honours on thy crest\nI'll crop, to make a garland for my head.\n\nHOTSPUR:\nI can no longer brook thy vanities.\n\nFALSTAFF:\nWell said, Hal! to it Hal! Nay, you shall find no\nboy's play here, I can tell you.\n\nHOTSPUR:\nO, Harry, thou hast robb'd me of my youth!\nI better brook the loss of brittle life\nThan those proud titles thou hast won of me;\nThey wound my thoughts worse than sword my flesh:\nBut thought's the slave of life, and life time's fool;\nAnd time, that takes survey of all the world,\nMust have a stop. O, I could prophesy,\nBut that the earthy and cold hand of death\nLies on my tongue: no, Percy, thou art dust\nAnd food for--\n\nPRINCE HENRY:\nFor worms, brave Percy: fare thee well, great heart!\nIll-weaved ambition, how much art thou shrunk!\nWhen that this body did contain a spirit,\nA kingdom for it was too small a bound;\nBut now two paces of the vilest earth\nIs room enough: this earth that bears thee dead\nBears not alive so stout a gentleman.\nIf thou wert sensible of courtesy,\nI should not make so dear a show of zeal:\nBut let my favours hide thy mangled face;\nAnd, even in thy behalf, I'll thank myself\nFor doing these fair rites of tenderness.\nAdieu, and take thy praise with thee to heaven!\nThy ignominy sleep with thee in the grave,\nBut not remember'd in thy epitaph!\nWhat, old acquaintance! could not all this flesh\nKeep in a little life? Poor Jack, farewell!\nI could have better spared a better man:\nO, I should have a heavy miss of thee,\nIf I were much in love with vanity!\nDeath hath not struck so fat a deer to-day,\nThough many dearer, in this bloody fray.\nEmbowell'd will I see thee by and by:\nTill then in blood by noble Percy lie.\n\nFALSTAFF:\n\nPRINCE HENRY:\nCome, brother John; full bravely hast thou flesh'd\nThy maiden sword.\n\nLANCASTER:\nBut, soft! whom have we here?\nDid you not tell me this fat man was dead?\n\nPRINCE HENRY:\nI did; I saw him dead,\nBreathless and bleeding on the ground. Art\nthou alive?\nOr is it fantasy that plays upon our eyesight?\nI prithee, speak; we will not trust our eyes\nWithout our ears: thou art not what thou seem'st.\n\nFALSTAFF:\nNo, that's certain; I am not a double man: but if I\nbe not Jack Falstaff, then am I a Jack. There is Percy:\nif your father will do me any honour, so; if not, let\nhim kill the next Percy himself. I look to be either\nearl or duke, I can assure you.\n\nPRINCE HENRY:\nWhy, Percy I killed myself and saw thee dead.\n\nFALSTAFF:\nDidst thou? Lord, Lord, how this world is given to\nlying! I grant you I was down and out of breath;\nand so was he: but we rose both at an instant and\nfought a long hour by Shrewsbury clock. If I may be\nbelieved, so; if not, let them that should reward\nvalour bear the sin upon their own heads. I'll take\nit upon my death, I gave him this wound in the\nthigh: if the man were alive and would deny it,\n'zounds, I would make him eat a piece of my sword.\n\nLANCASTER:\nThis is the strangest tale that ever I heard.\n\nPRINCE HENRY:\nThis is the strangest fellow, brother John.\nCome, bring your luggage nobly on your back:\nFor my part, if a lie may do thee grace,\nI'll gild it with the happiest terms I have.\nThe trumpet sounds retreat; the day is ours.\nCome, brother, let us to the highest of the field,\nTo see what friends are living, who are dead.\n\nFALSTAFF:\nI'll follow, as they say, for reward. He that\nrewards me, God reward him! If I do grow great,\nI'll grow less; for I'll purge, and leave sack, and\nlive cleanly as a nobleman should do.\n\nKING HENRY IV:\nThus ever did rebellion find rebuke.\nIll-spirited Worcester! did not we send grace,\nPardon and terms of love to all of you?\nAnd wouldst thou turn our offers contrary?\nMisuse the tenor of thy kinsman's trust?\nThree knights upon our party slain to-day,\nA noble earl and many a creature else\nHad been alive this hour,\nIf like a Christian thou hadst truly borne\nBetwixt our armies true intelligence.\n\nEARL OF WORCESTER:\nWhat I have done my safety urged me to;\nAnd I embrace this fortune patiently,\nSince not to be avoided it falls on me.\n\nKING HENRY IV:\nBear Worcester to the death and Vernon too:\nOther offenders we will pause upon.\nHow goes the field?\n\nPRINCE HENRY:\nThe noble Scot, Lord Douglas, when he saw\nThe fortune of the day quite turn'd from him,\nThe noble Percy slain, and all his men\nUpon the foot of fear, fled with the rest;\nAnd falling from a hill, he was so bruised\nThat the pursuers took him. At my tent\nThe Douglas is; and I beseech your grace\nI may dispose of him.\n\nKING HENRY IV:\nWith all my heart.\n\nPRINCE HENRY:\nThen, brother John of Lancaster, to you\nThis honourable bounty shall belong:\nGo to the Douglas, and deliver him\nUp to his pleasure, ransomless and free:\nHis valour shown upon our crests to-day\nHath taught us how to cherish such high deeds\nEven in the bosom of our adversaries.\n\nLANCASTER:\nI thank your grace for this high courtesy,\nWhich I shall give away immediately.\n\nKING HENRY IV:\nThen this remains, that we divide our power.\nYou, son John, and my cousin Westmoreland\nTowards York shall bend you with your dearest speed,\nTo meet Northumberland and the prelate Scroop,\nWho, as we hear, are busily in arms:\nMyself and you, son Harry, will towards Wales,\nTo fight with Glendower and the Earl of March.\nRebellion in this land shall lose his sway,\nMeeting the cheque of such another day:\nAnd since this business so fair is done,\nLet us not leave till all our own be won.\n\nBERNARDO:\nWho's there?\n\nFRANCISCO:\nNay, answer me: stand, and unfold yourself.\n\nBERNARDO:\nLong live the king!\n\nFRANCISCO:\nBernardo?\n\nBERNARDO:\nHe.\n\nFRANCISCO:\nYou come most carefully upon your hour.\n\nBERNARDO:\n'Tis now struck twelve; get thee to bed, Francisco.\n\nFRANCISCO:\nFor this relief much thanks: 'tis bitter cold,\nAnd I am sick at heart.\n\nBERNARDO:\nHave you had quiet guard?\n\nFRANCISCO:\nNot a mouse stirring.\n\nBERNARDO:\nWell, good night.\nIf you do meet Horatio and Marcellus,\nThe rivals of my watch, bid them make haste.\n\nFRANCISCO:\nI think I hear them. Stand, ho! Who's there?\n\nHORATIO:\nFriends to this ground.\n\nMARCELLUS:\nAnd liegemen to the Dane.\n\nFRANCISCO:\nGive you good night.\n\nMARCELLUS:\nO, farewell, honest soldier:\nWho hath relieved you?\n\nFRANCISCO:\nBernardo has my place.\nGive you good night.\n\nMARCELLUS:\nHolla! Bernardo!\n\nBERNARDO:\nSay,\nWhat, is Horatio there?\n\nHORATIO:\nA piece of him.\n\nBERNARDO:\nWelcome, Horatio: welcome, good Marcellus.\n\nMARCELLUS:\nWhat, has this thing appear'd again to-night?\n\nBERNARDO:\nI have seen nothing.\n\nMARCELLUS:\nHoratio says 'tis but our fantasy,\nAnd will not let belief take hold of him\nTouching this dreaded sight, twice seen of us:\nTherefore I have entreated him along\nWith us to watch the minutes of this night;\nThat if again this apparition come,\nHe may approve our eyes and speak to it.\n\nHORATIO:\nTush, tush, 'twill not appear.\n\nBERNARDO:\nSit down awhile;\nAnd let us once again assail your ears,\nThat are so fortified against our story\nWhat we have two nights seen.\n\nHORATIO:\nWell, sit we down,\nAnd let us hear Bernardo speak of this.\n\nBERNARDO:\nLast night of all,\nWhen yond same star that's westward from the pole\nHad made his course to illume that part of heaven\nWhere now it burns, Marcellus and myself,\nThe bell then beating one,--\n\nMARCELLUS:\nPeace, break thee off; look, where it comes again!\n\nBERNARDO:\nIn the same figure, like the king that's dead.\n\nMARCELLUS:\nThou art a scholar; speak to it, Horatio.\n\nBERNARDO:\nLooks it not like the king?  mark it, Horatio.\n\nHORATIO:\nMost like: it harrows me with fear and wonder.\n\nBERNARDO:\nIt would be spoke to.\n\nMARCELLUS:\nQuestion it, Horatio.\n\nHORATIO:\nWhat art thou that usurp'st this time of night,\nTogether with that fair and warlike form\nIn which the majesty of buried Denmark\nDid sometimes march? by heaven I charge thee, speak!\n\nMARCELLUS:\nIt is offended.\n\nBERNARDO:\nSee, it stalks away!\n\nHORATIO:\nStay! speak, speak! I charge thee, speak!\n\nMARCELLUS:\n'Tis gone, and will not answer.\n\nBERNARDO:\nHow now, Horatio! you tremble and look pale:\nIs not this something more than fantasy?\nWhat think you on't?\n\nHORATIO:\nBefore my God, I might not this believe\nWithout the sensible and true avouch\nOf mine own eyes.\n\nMARCELLUS:\nIs it not like the king?\n\nHORATIO:\nAs thou art to thyself:\nSuch was the very armour he had on\nWhen he the ambitious Norway combated;\nSo frown'd he once, when, in an angry parle,\nHe smote the sledded Polacks on the ice.\n'Tis strange.\n\nMARCELLUS:\nThus twice before, and jump at this dead hour,\nWith martial stalk hath he gone by our watch.\n\nHORATIO:\nIn what particular thought to work I know not;\nBut in the gross and scope of my opinion,\nThis bodes some strange eruption to our state.\n\nMARCELLUS:\nGood now, sit down, and tell me, he that knows,\nWhy this same strict and most observant watch\nSo nightly toils the subject of the land,\nAnd why such daily cast of brazen cannon,\nAnd foreign mart for implements of war;\nWhy such impress of shipwrights, whose sore task\nDoes not divide the Sunday from the week;\nWhat might be toward, that this sweaty haste\nDoth make the night joint-labourer with the day:\nWho is't that can inform me?\n\nHORATIO:\nThat can I;\nAt least, the whisper goes so. Our last king,\nWhose image even but now appear'd to us,\nWas, as you know, by Fortinbras of Norway,\nThereto prick'd on by a most emulate pride,\nDared to the combat; in which our valiant Hamlet--\nFor so this side of our known world esteem'd him--\nDid slay this Fortinbras; who by a seal'd compact,\nWell ratified by law and heraldry,\nDid forfeit, with his life, all those his lands\nWhich he stood seized of, to the conqueror:\nAgainst the which, a moiety competent\nWas gaged by our king; which had return'd\nTo the inheritance of Fortinbras,\nHad he been vanquisher; as, by the same covenant,\nAnd carriage of the article design'd,\nHis fell to Hamlet. Now, sir, young Fortinbras,\nOf unimproved mettle hot and full,\nHath in the skirts of Norway here and there\nShark'd up a list of lawless resolutes,\nFor food and diet, to some enterprise\nThat hath a stomach in't; which is no other--\nAs it doth well appear unto our state--\nBut to recover of us, by strong hand\nAnd terms compulsatory, those foresaid lands\nSo by his father lost: and this, I take it,\nIs the main motive of our preparations,\nThe source of this our watch and the chief head\nOf this post-haste and romage in the land.\n\nBERNARDO:\nI think it be no other but e'en so:\nWell may it sort that this portentous figure\nComes armed through our watch; so like the king\nThat was and is the question of these wars.\n\nHORATIO:\nA mote it is to trouble the mind's eye.\nIn the most high and palmy state of Rome,\nA little ere the mightiest Julius fell,\nThe graves stood tenantless and the sheeted dead\nDid squeak and gibber in the Roman streets:\nAs stars with trains of fire and dews of blood,\nDisasters in the sun; and the moist star\nUpon whose influence Neptune's empire stands\nWas sick almost to doomsday with eclipse:\nAnd even the like precurse of fierce events,\nAs harbingers preceding still the fates\nAnd prologue to the omen coming on,\nHave heaven and earth together demonstrated\nUnto our climatures and countrymen.--\nBut soft, behold! lo, where it comes again!\nI'll cross it, though it blast me. Stay, illusion!\nIf thou hast any sound, or use of voice,\nSpeak to me:\nIf there be any good thing to be done,\nThat may to thee do ease and grace to me,\nSpeak to me:\nIf thou art privy to thy country's fate,\nWhich, happily, foreknowing may avoid, O, speak!\nOr if thou hast uphoarded in thy life\nExtorted treasure in the womb of earth,\nFor which, they say, you spirits oft walk in death,\nSpeak of it: stay, and speak! Stop it, Marcellus.\n\nMARCELLUS:\nShall I strike at it with my partisan?\n\nHORATIO:\nDo, if it will not stand.\n\nBERNARDO:\n'Tis here!\n\nHORATIO:\n'Tis here!\n\nMARCELLUS:\n'Tis gone!\nWe do it wrong, being so majestical,\nTo offer it the show of violence;\nFor it is, as the air, invulnerable,\nAnd our vain blows malicious mockery.\n\nBERNARDO:\nIt was about to speak, when the cock crew.\n\nHORATIO:\nAnd then it started like a guilty thing\nUpon a fearful summons. I have heard,\nThe cock, that is the trumpet to the morn,\nDoth with his lofty and shrill-sounding throat\nAwake the god of day; and, at his warning,\nWhether in sea or fire, in earth or air,\nThe extravagant and erring spirit hies\nTo his confine: and of the truth herein\nThis present object made probation.\n\nMARCELLUS:\nIt faded on the crowing of the cock.\nSome say that ever 'gainst that season comes\nWherein our Saviour's birth is celebrated,\nThe bird of dawning singeth all night long:\nAnd then, they say, no spirit dares stir abroad;\nThe nights are wholesome; then no planets strike,\nNo fairy takes, nor witch hath power to charm,\nSo hallow'd and so gracious is the time.\n\nHORATIO:\nSo have I heard and do in part believe it.\nBut, look, the morn, in russet mantle clad,\nWalks o'er the dew of yon high eastward hill:\nBreak we our watch up; and by my advice,\nLet us impart what we have seen to-night\nUnto young Hamlet; for, upon my life,\nThis spirit, dumb to us, will speak to him.\nDo you consent we shall acquaint him with it,\nAs needful in our loves, fitting our duty?\n\nMARCELLUS:\nLet's do't, I pray; and I this morning know\nWhere we shall find him most conveniently.\n\nKING CLAUDIUS:\nThough yet of Hamlet our dear brother's death\nThe memory be green, and that it us befitted\nTo bear our hearts in grief and our whole kingdom\nTo be contracted in one brow of woe,\nYet so far hath discretion fought with nature\nThat we with wisest sorrow think on him,\nTogether with remembrance of ourselves.\nTherefore our sometime sister, now our queen,\nThe imperial jointress to this warlike state,\nHave we, as 'twere with a defeated joy,--\nWith an auspicious and a dropping eye,\nWith mirth in funeral and with dirge in marriage,\nIn equal scale weighing delight and dole,--\nTaken to wife: nor have we herein barr'd\nYour better wisdoms, which have freely gone\nWith this affair along. For all, our thanks.\nNow follows, that you know, young Fortinbras,\nHolding a weak supposal of our worth,\nOr thinking by our late dear brother's death\nOur state to be disjoint and out of frame,\nColleagued with the dream of his advantage,\nHe hath not fail'd to pester us with message,\nImporting the surrender of those lands\nLost by his father, with all bonds of law,\nTo our most valiant brother. So much for him.\nNow for ourself and for this time of meeting:\nThus much the business is: we have here writ\nTo Norway, uncle of young Fortinbras,--\nWho, impotent and bed-rid, scarcely hears\nOf this his nephew's purpose,--to suppress\nHis further gait herein; in that the levies,\nThe lists and full proportions, are all made\nOut of his subject: and we here dispatch\nYou, good Cornelius, and you, Voltimand,\nFor bearers of this greeting to old Norway;\nGiving to you no further personal power\nTo business with the king, more than the scope\nOf these delated articles allow.\nFarewell, and let your haste commend your duty.\n\nCORNELIUS:\nIn that and all things will we show our duty.\n\nKING CLAUDIUS:\nWe doubt it nothing: heartily farewell.\nAnd now, Laertes, what's the news with you?\nYou told us of some suit; what is't, Laertes?\nYou cannot speak of reason to the Dane,\nAnd loose your voice: what wouldst thou beg, Laertes,\nThat shall not be my offer, not thy asking?\nThe head is not more native to the heart,\nThe hand more instrumental to the mouth,\nThan is the throne of Denmark to thy father.\nWhat wouldst thou have, Laertes?\n\nLAERTES:\nMy dread lord,\nYour leave and favour to return to France;\nFrom whence though willingly I came to Denmark,\nTo show my duty in your coronation,\nYet now, I must confess, that duty done,\nMy thoughts and wishes bend again toward France\nAnd bow them to your gracious leave and pardon.\n\nKING CLAUDIUS:\nHave you your father's leave? What says Polonius?\n\nLORD POLONIUS:\nHe hath, my lord, wrung from me my slow leave\nBy laboursome petition, and at last\nUpon his will I seal'd my hard consent:\nI do beseech you, give him leave to go.\n\nKING CLAUDIUS:\nTake thy fair hour, Laertes; time be thine,\nAnd thy best graces spend it at thy will!\nBut now, my cousin Hamlet, and my son,--\n\nHAMLET:\n\nKING CLAUDIUS:\nHow is it that the clouds still hang on you?\n\nHAMLET:\nNot so, my lord; I am too much i' the sun.\n\nQUEEN GERTRUDE:\nGood Hamlet, cast thy nighted colour off,\nAnd let thine eye look like a friend on Denmark.\nDo not for ever with thy vailed lids\nSeek for thy noble father in the dust:\nThou know'st 'tis common; all that lives must die,\nPassing through nature to eternity.\n\nHAMLET:\nAy, madam, it is common.\n\nQUEEN GERTRUDE:\nIf it be,\nWhy seems it so particular with thee?\n\nHAMLET:\nSeems, madam! nay it is; I know not 'seems.'\n'Tis not alone my inky cloak, good mother,\nNor customary suits of solemn black,\nNor windy suspiration of forced breath,\nNo, nor the fruitful river in the eye,\nNor the dejected 'havior of the visage,\nTogether with all forms, moods, shapes of grief,\nThat can denote me truly: these indeed seem,\nFor they are actions that a man might play:\nBut I have that within which passeth show;\nThese but the trappings and the suits of woe.\n\nKING CLAUDIUS:\n'Tis sweet and commendable in your nature, Hamlet,\nTo give these mourning duties to your father:\nBut, you must know, your father lost a father;\nThat father lost, lost his, and the survivor bound\nIn filial obligation for some term\nTo do obsequious sorrow: but to persever\nIn obstinate condolement is a course\nOf impious stubbornness; 'tis unmanly grief;\nIt shows a will most incorrect to heaven,\nA heart unfortified, a mind impatient,\nAn understanding simple and unschool'd:\nFor what we know must be and is as common\nAs any the most vulgar thing to sense,\nWhy should we in our peevish opposition\nTake it to heart? Fie! 'tis a fault to heaven,\nA fault against the dead, a fault to nature,\nTo reason most absurd: whose common theme\nIs death of fathers, and who still hath cried,\nFrom the first corse till he that died to-day,\n'This must be so.' We pray you, throw to earth\nThis unprevailing woe, and think of us\nAs of a father: for let the world take note,\nYou are the most immediate to our throne;\nAnd with no less nobility of love\nThan that which dearest father bears his son,\nDo I impart toward you. For your intent\nIn going back to school in Wittenberg,\nIt is most retrograde to our desire:\nAnd we beseech you, bend you to remain\nHere, in the cheer and comfort of our eye,\nOur chiefest courtier, cousin, and our son.\n\nQUEEN GERTRUDE:\nLet not thy mother lose her prayers, Hamlet:\nI pray thee, stay with us; go not to Wittenberg.\n\nHAMLET:\nI shall in all my best obey you, madam.\n\nKING CLAUDIUS:\nWhy, 'tis a loving and a fair reply:\nBe as ourself in Denmark. Madam, come;\nThis gentle and unforced accord of Hamlet\nSits smiling to my heart: in grace whereof,\nNo jocund health that Denmark drinks to-day,\nBut the great cannon to the clouds shall tell,\nAnd the king's rouse the heavens all bruit again,\nRe-speaking earthly thunder. Come away.\n\nHAMLET:\nO, that this too too solid flesh would melt\nThaw and resolve itself into a dew!\nOr that the Everlasting had not fix'd\nHis canon 'gainst self-slaughter! O God! God!\nHow weary, stale, flat and unprofitable,\nSeem to me all the uses of this world!\nFie on't! ah fie! 'tis an unweeded garden,\nThat grows to seed; things rank and gross in nature\nPossess it merely. That it should come to this!\nBut two months dead: nay, not so much, not two:\nSo excellent a king; that was, to this,\nHyperion to a satyr; so loving to my mother\nThat he might not beteem the winds of heaven\nVisit her face too roughly. Heaven and earth!\nMust I remember? why, she would hang on him,\nAs if increase of appetite had grown\nBy what it fed on: and yet, within a month--\nLet me not think on't--Frailty, thy name is woman!--\nA little month, or ere those shoes were old\nWith which she follow'd my poor father's body,\nLike Niobe, all tears:--why she, even she--\nO, God! a beast, that wants discourse of reason,\nWould have mourn'd longer--married with my uncle,\nMy father's brother, but no more like my father\nThan I to Hercules: within a month:\nEre yet the salt of most unrighteous tears\nHad left the flushing in her galled eyes,\nShe married. O, most wicked speed, to post\nWith such dexterity to incestuous sheets!\nIt is not nor it cannot come to good:\nBut break, my heart; for I must hold my tongue.\n\nHORATIO:\nHail to your lordship!\n\nHAMLET:\nI am glad to see you well:\nHoratio,--or I do forget myself.\n\nHORATIO:\nThe same, my lord, and your poor servant ever.\n\nHAMLET:\nSir, my good friend; I'll change that name with you:\nAnd what make you from Wittenberg, Horatio? Marcellus?\n\nMARCELLUS:\nMy good lord--\n\nHAMLET:\nI am very glad to see you. Good even, sir.\nBut what, in faith, make you from Wittenberg?\n\nHORATIO:\nA truant disposition, good my lord.\n\nHAMLET:\nI would not hear your enemy say so,\nNor shall you do mine ear that violence,\nTo make it truster of your own report\nAgainst yourself: I know you are no truant.\nBut what is your affair in Elsinore?\nWe'll teach you to drink deep ere you depart.\n\nHORATIO:\nMy lord, I came to see your father's funeral.\n\nHAMLET:\nI pray thee, do not mock me, fellow-student;\nI think it was to see my mother's wedding.\n\nHORATIO:\nIndeed, my lord, it follow'd hard upon.\n\nHAMLET:\nThrift, thrift, Horatio! the funeral baked meats\nDid coldly furnish forth the marriage tables.\nWould I had met my dearest foe in heaven\nOr ever I had seen that day, Horatio!\nMy father!--methinks I see my father.\n\nHORATIO:\nWhere, my lord?\n\nHAMLET:\nIn my mind's eye, Horatio.\n\nHORATIO:\nI saw him once; he was a goodly king.\n\nHAMLET:\nHe was a man, take him for all in all,\nI shall not look upon his like again.\n\nHORATIO:\nMy lord, I think I saw him yesternight.\n\nHAMLET:\nSaw? who?\n\nHORATIO:\nMy lord, the king your father.\n\nHAMLET:\nThe king my father!\n\nHORATIO:\nSeason your admiration for awhile\nWith an attent ear, till I may deliver,\nUpon the witness of these gentlemen,\nThis marvel to you.\n\nHAMLET:\nFor God's love, let me hear.\n\nHORATIO:\nTwo nights together had these gentlemen,\nMarcellus and Bernardo, on their watch,\nIn the dead vast and middle of the night,\nBeen thus encounter'd. A figure like your father,\nArmed at point exactly, cap-a-pe,\nAppears before them, and with solemn march\nGoes slow and stately by them: thrice he walk'd\nBy their oppress'd and fear-surprised eyes,\nWithin his truncheon's length; whilst they, distilled\nAlmost to jelly with the act of fear,\nStand dumb and speak not to him. This to me\nIn dreadful secrecy impart they did;\nAnd I with them the third night kept the watch;\nWhere, as they had deliver'd, both in time,\nForm of the thing, each word made true and good,\nThe apparition comes: I knew your father;\nThese hands are not more like.\n\nHAMLET:\nBut where was this?\n\nMARCELLUS:\nMy lord, upon the platform where we watch'd.\n\nHAMLET:\nDid you not speak to it?\n\nHORATIO:\nMy lord, I did;\nBut answer made it none: yet once methought\nIt lifted up its head and did address\nItself to motion, like as it would speak;\nBut even then the morning cock crew loud,\nAnd at the sound it shrunk in haste away,\nAnd vanish'd from our sight.\n\nHAMLET:\n'Tis very strange.\n\nHORATIO:\nAs I do live, my honour'd lord, 'tis true;\nAnd we did think it writ down in our duty\nTo let you know of it.\n\nHAMLET:\nIndeed, indeed, sirs, but this troubles me.\nHold you the watch to-night?\n\nMARCELLUS:\nWe do, my lord.\n\nHAMLET:\nArm'd, say you?\n\nMARCELLUS:\nArm'd, my lord.\n\nHAMLET:\nFrom top to toe?\n\nMARCELLUS:\nMy lord, from head to foot.\n\nHAMLET:\nThen saw you not his face?\n\nHORATIO:\nO, yes, my lord; he wore his beaver up.\n\nHAMLET:\nWhat, look'd he frowningly?\n\nHORATIO:\nA countenance more in sorrow than in anger.\n\nHAMLET:\nPale or red?\n\nHORATIO:\nNay, very pale.\n\nHAMLET:\nAnd fix'd his eyes upon you?\n\nHORATIO:\nMost constantly.\n\nHAMLET:\nI would I had been there.\n\nHORATIO:\nIt would have much amazed you.\n\nHAMLET:\nVery like, very like. Stay'd it long?\n\nHORATIO:\nWhile one with moderate haste might tell a hundred.\n\nMARCELLUS:\nLonger, longer.\n\nHORATIO:\nNot when I saw't.\n\nHAMLET:\nHis beard was grizzled--no?\n\nHORATIO:\nIt was, as I have seen it in his life,\nA sable silver'd.\n\nHAMLET:\nI will watch to-night;\nPerchance 'twill walk again.\n\nHORATIO:\nI warrant it will.\n\nHAMLET:\nIf it assume my noble father's person,\nI'll speak to it, though hell itself should gape\nAnd bid me hold my peace. I pray you all,\nIf you have hitherto conceal'd this sight,\nLet it be tenable in your silence still;\nAnd whatsoever else shall hap to-night,\nGive it an understanding, but no tongue:\nI will requite your loves. So, fare you well:\nUpon the platform, 'twixt eleven and twelve,\nI'll visit you.\n\nAll:\nOur duty to your honour.\n\nHAMLET:\nYour loves, as mine to you: farewell.\nMy father's spirit in arms! all is not well;\nI doubt some foul play: would the night were come!\nTill then sit still, my soul: foul deeds will rise,\nThough all the earth o'erwhelm them, to men's eyes.\n\nLAERTES:\nMy necessaries are embark'd: farewell:\nAnd, sister, as the winds give benefit\nAnd convoy is assistant, do not sleep,\nBut let me hear from you.\n\nOPHELIA:\nDo you doubt that?\n\nLAERTES:\nFor Hamlet and the trifling of his favour,\nHold it a fashion and a toy in blood,\nA violet in the youth of primy nature,\nForward, not permanent, sweet, not lasting,\nThe perfume and suppliance of a minute; No more.\n\nOPHELIA:\nNo more but so?\n\nLAERTES:\nThink it no more;\nFor nature, crescent, does not grow alone\nIn thews and bulk, but, as this temple waxes,\nThe inward service of the mind and soul\nGrows wide withal. Perhaps he loves you now,\nAnd now no soil nor cautel doth besmirch\nThe virtue of his will: but you must fear,\nHis greatness weigh'd, his will is not his own;\nFor he himself is subject to his birth:\nHe may not, as unvalued persons do,\nCarve for himself; for on his choice depends\nThe safety and health of this whole state;\nAnd therefore must his choice be circumscribed\nUnto the voice and yielding of that body\nWhereof he is the head. Then if he says he loves you,\nIt fits your wisdom so far to believe it\nAs he in his particular act and place\nMay give his saying deed; which is no further\nThan the main voice of Denmark goes withal.\nThen weigh what loss your honour may sustain,\nIf with too credent ear you list his songs,\nOr lose your heart, or your chaste treasure open\nTo his unmaster'd importunity.\nFear it, Ophelia, fear it, my dear sister,\nAnd keep you in the rear of your affection,\nOut of the shot and danger of desire.\nThe chariest maid is prodigal enough,\nIf she unmask her beauty to the moon:\nVirtue itself 'scapes not calumnious strokes:\nThe canker galls the infants of the spring,\nToo oft before their buttons be disclosed,\nAnd in the morn and liquid dew of youth\nContagious blastments are most imminent.\nBe wary then; best safety lies in fear:\nYouth to itself rebels, though none else near.\n\nOPHELIA:\nI shall the effect of this good lesson keep,\nAs watchman to my heart. But, good my brother,\nDo not, as some ungracious pastors do,\nShow me the steep and thorny way to heaven;\nWhiles, like a puff'd and reckless libertine,\nHimself the primrose path of dalliance treads,\nAnd recks not his own rede.\n\nLAERTES:\nO, fear me not.\nI stay too long: but here my father comes.\nA double blessing is a double grace,\nOccasion smiles upon a second leave.\n\nLORD POLONIUS:\nYet here, Laertes! aboard, aboard, for shame!\nThe wind sits in the shoulder of your sail,\nAnd you are stay'd for. There; my blessing with thee!\nAnd these few precepts in thy memory\nSee thou character. Give thy thoughts no tongue,\nNor any unproportioned thought his act.\nBe thou familiar, but by no means vulgar.\nThose friends thou hast, and their adoption tried,\nGrapple them to thy soul with hoops of steel;\nBut do not dull thy palm with entertainment\nOf each new-hatch'd, unfledged comrade. Beware\nOf entrance to a quarrel, but being in,\nBear't that the opposed may beware of thee.\nGive every man thy ear, but few thy voice;\nTake each man's censure, but reserve thy judgment.\nCostly thy habit as thy purse can buy,\nBut not express'd in fancy; rich, not gaudy;\nFor the apparel oft proclaims the man,\nAnd they in France of the best rank and station\nAre of a most select and generous chief in that.\nNeither a borrower nor a lender be;\nFor loan oft loses both itself and friend,\nAnd borrowing dulls the edge of husbandry.\nThis above all: to thine ownself be true,\nAnd it must follow, as the night the day,\nThou canst not then be false to any man.\nFarewell: my blessing season this in thee!\n\nLAERTES:\nMost humbly do I take my leave, my lord.\n\nLORD POLONIUS:\nThe time invites you; go; your servants tend.\n\nLAERTES:\nFarewell, Ophelia; and remember well\nWhat I have said to you.\n\nOPHELIA:\n'Tis in my memory lock'd,\nAnd you yourself shall keep the key of it.\n\nLAERTES:\nFarewell.\n\nLORD POLONIUS:\nWhat is't, Ophelia, be hath said to you?\n\nOPHELIA:\nSo please you, something touching the Lord Hamlet.\n\nLORD POLONIUS:\nMarry, well bethought:\n'Tis told me, he hath very oft of late\nGiven private time to you; and you yourself\nHave of your audience been most free and bounteous:\nIf it be so, as so 'tis put on me,\nAnd that in way of caution, I must tell you,\nYou do not understand yourself so clearly\nAs it behoves my daughter and your honour.\nWhat is between you? give me up the truth.\n\nOPHELIA:\nHe hath, my lord, of late made many tenders\nOf his affection to me.\n\nLORD POLONIUS:\nAffection! pooh! you speak like a green girl,\nUnsifted in such perilous circumstance.\nDo you believe his tenders, as you call them?\n\nOPHELIA:\nI do not know, my lord, what I should think.\n\nLORD POLONIUS:\nMarry, I'll teach you: think yourself a baby;\nThat you have ta'en these tenders for true pay,\nWhich are not sterling. Tender yourself more dearly;\nOr--not to crack the wind of the poor phrase,\nRunning it thus--you'll tender me a fool.\n\nOPHELIA:\nMy lord, he hath importuned me with love\nIn honourable fashion.\n\nLORD POLONIUS:\nAy, fashion you may call it; go to, go to.\n\nOPHELIA:\nAnd hath given countenance to his speech, my lord,\nWith almost all the holy vows of heaven.\n\nLORD POLONIUS:\nAy, springes to catch woodcocks. I do know,\nWhen the blood burns, how prodigal the soul\nLends the tongue vows: these blazes, daughter,\nGiving more light than heat, extinct in both,\nEven in their promise, as it is a-making,\nYou must not take for fire. From this time\nBe somewhat scanter of your maiden presence;\nSet your entreatments at a higher rate\nThan a command to parley. For Lord Hamlet,\nBelieve so much in him, that he is young\nAnd with a larger tether may he walk\nThan may be given you: in few, Ophelia,\nDo not believe his vows; for they are brokers,\nNot of that dye which their investments show,\nBut mere implorators of unholy suits,\nBreathing like sanctified and pious bawds,\nThe better to beguile. This is for all:\nI would not, in plain terms, from this time forth,\nHave you so slander any moment leisure,\nAs to give words or talk with the Lord Hamlet.\nLook to't, I charge you: come your ways.\n\nOPHELIA:\nI shall obey, my lord.\n\nHAMLET:\nThe air bites shrewdly; it is very cold.\n\nHORATIO:\nIt is a nipping and an eager air.\n\nHAMLET:\nWhat hour now?\n\nHORATIO:\nI think it lacks of twelve.\n\nHAMLET:\nNo, it is struck.\n\nHORATIO:\nIndeed? I heard it not: then it draws near the season\nWherein the spirit held his wont to walk.\nWhat does this mean, my lord?\n\nHAMLET:\nThe king doth wake to-night and takes his rouse,\nKeeps wassail, and the swaggering up-spring reels;\nAnd, as he drains his draughts of Rhenish down,\nThe kettle-drum and trumpet thus bray out\nThe triumph of his pledge.\n\nHORATIO:\nIs it a custom?\n\nHAMLET:\nAy, marry, is't:\nBut to my mind, though I am native here\nAnd to the manner born, it is a custom\nMore honour'd in the breach than the observance.\nThis heavy-headed revel east and west\nMakes us traduced and tax'd of other nations:\nThey clepe us drunkards, and with swinish phrase\nSoil our addition; and indeed it takes\nFrom our achievements, though perform'd at height,\nThe pith and marrow of our attribute.\nSo, oft it chances in particular men,\nThat for some vicious mole of nature in them,\nAs, in their birth--wherein they are not guilty,\nSince nature cannot choose his origin--\nBy the o'ergrowth of some complexion,\nOft breaking down the pales and forts of reason,\nOr by some habit that too much o'er-leavens\nThe form of plausive manners, that these men,\nCarrying, I say, the stamp of one defect,\nBeing nature's livery, or fortune's star,--\nTheir virtues else--be they as pure as grace,\nAs infinite as man may undergo--\nShall in the general censure take corruption\nFrom that particular fault: the dram of eale\nDoth all the noble substance of a doubt\nTo his own scandal.\n\nHORATIO:\nLook, my lord, it comes!\n\nHAMLET:\nAngels and ministers of grace defend us!\nBe thou a spirit of health or goblin damn'd,\nBring with thee airs from heaven or blasts from hell,\nBe thy intents wicked or charitable,\nThou comest in such a questionable shape\nThat I will speak to thee: I'll call thee Hamlet,\nKing, father, royal Dane: O, answer me!\nLet me not burst in ignorance; but tell\nWhy thy canonized bones, hearsed in death,\nHave burst their cerements; why the sepulchre,\nWherein we saw thee quietly inurn'd,\nHath oped his ponderous and marble jaws,\nTo cast thee up again. What may this mean,\nThat thou, dead corse, again in complete steel\nRevisit'st thus the glimpses of the moon,\nMaking night hideous; and we fools of nature\nSo horridly to shake our disposition\nWith thoughts beyond the reaches of our souls?\nSay, why is this? wherefore? what should we do?\n\nHORATIO:\nIt beckons you to go away with it,\nAs if it some impartment did desire\nTo you alone.\n\nMARCELLUS:\nLook, with what courteous action\nIt waves you to a more removed ground:\nBut do not go with it.\n\nHORATIO:\nNo, by no means.\n\nHAMLET:\nIt will not speak; then I will follow it.\n\nHORATIO:\nDo not, my lord.\n\nHAMLET:\nWhy, what should be the fear?\nI do not set my life in a pin's fee;\nAnd for my soul, what can it do to that,\nBeing a thing immortal as itself?\nIt waves me forth again: I'll follow it.\n\nHORATIO:\nWhat if it tempt you toward the flood, my lord,\nOr to the dreadful summit of the cliff\nThat beetles o'er his base into the sea,\nAnd there assume some other horrible form,\nWhich might deprive your sovereignty of reason\nAnd draw you into madness? think of it:\nThe very place puts toys of desperation,\nWithout more motive, into every brain\nThat looks so many fathoms to the sea\nAnd hears it roar beneath.\n\nHAMLET:\nIt waves me still.\nGo on; I'll follow thee.\n\nMARCELLUS:\nYou shall not go, my lord.\n\nHAMLET:\nHold off your hands.\n\nHORATIO:\nBe ruled; you shall not go.\n\nHAMLET:\nMy fate cries out,\nAnd makes each petty artery in this body\nAs hardy as the Nemean lion's nerve.\nStill am I call'd. Unhand me, gentlemen.\nBy heaven, I'll make a ghost of him that lets me!\nI say, away! Go on; I'll follow thee.\n\nHORATIO:\nHe waxes desperate with imagination.\n\nMARCELLUS:\nLet's follow; 'tis not fit thus to obey him.\n\nHORATIO:\nHave after. To what issue will this come?\n\nMARCELLUS:\nSomething is rotten in the state of Denmark.\n\nHORATIO:\nHeaven will direct it.\n\nMARCELLUS:\nNay, let's follow him.\n\nHAMLET:\nWhere wilt thou lead me? speak; I'll go no further.\n\nGhost:\nMark me.\n\nHAMLET:\nI will.\n\nGhost:\nMy hour is almost come,\nWhen I to sulphurous and tormenting flames\nMust render up myself.\n\nHAMLET:\nAlas, poor ghost!\n\nGhost:\nPity me not, but lend thy serious hearing\nTo what I shall unfold.\n\nHAMLET:\nSpeak; I am bound to hear.\n\nGhost:\nSo art thou to revenge, when thou shalt hear.\n\nHAMLET:\nWhat?\n\nGhost:\nI am thy father's spirit,\nDoom'd for a certain term to walk the night,\nAnd for the day confined to fast in fires,\nTill the foul crimes done in my days of nature\nAre burnt and purged away. But that I am forbid\nTo tell the secrets of my prison-house,\nI could a tale unfold whose lightest word\nWould harrow up thy soul, freeze thy young blood,\nMake thy two eyes, like stars, start from their spheres,\nThy knotted and combined locks to part\nAnd each particular hair to stand on end,\nLike quills upon the fretful porpentine:\nBut this eternal blazon must not be\nTo ears of flesh and blood. List, list, O, list!\nIf thou didst ever thy dear father love--\n\nHAMLET:\nO God!\n\nGhost:\nRevenge his foul and most unnatural murder.\n\nHAMLET:\nMurder!\n\nGhost:\nMurder most foul, as in the best it is;\nBut this most foul, strange and unnatural.\n\nHAMLET:\nHaste me to know't, that I, with wings as swift\nAs meditation or the thoughts of love,\nMay sweep to my revenge.\n\nGhost:\nI find thee apt;\nAnd duller shouldst thou be than the fat weed\nThat roots itself in ease on Lethe wharf,\nWouldst thou not stir in this. Now, Hamlet, hear:\n'Tis given out that, sleeping in my orchard,\nA serpent stung me; so the whole ear of Denmark\nIs by a forged process of my death\nRankly abused: but know, thou noble youth,\nThe serpent that did sting thy father's life\nNow wears his crown.\n\nHAMLET:\nO my prophetic soul! My uncle!\n\nGhost:\nAy, that incestuous, that adulterate beast,\nWith witchcraft of his wit, with traitorous gifts,--\nO wicked wit and gifts, that have the power\nSo to seduce!--won to his shameful lust\nThe will of my most seeming-virtuous queen:\nO Hamlet, what a falling-off was there!\nFrom me, whose love was of that dignity\nThat it went hand in hand even with the vow\nI made to her in marriage, and to decline\nUpon a wretch whose natural gifts were poor\nTo those of mine!\nBut virtue, as it never will be moved,\nThough lewdness court it in a shape of heaven,\nSo lust, though to a radiant angel link'd,\nWill sate itself in a celestial bed,\nAnd prey on garbage.\nBut, soft! methinks I scent the morning air;\nBrief let me be. Sleeping within my orchard,\nMy custom always of the afternoon,\nUpon my secure hour thy uncle stole,\nWith juice of cursed hebenon in a vial,\nAnd in the porches of my ears did pour\nThe leperous distilment; whose effect\nHolds such an enmity with blood of man\nThat swift as quicksilver it courses through\nThe natural gates and alleys of the body,\nAnd with a sudden vigour doth posset\nAnd curd, like eager droppings into milk,\nThe thin and wholesome blood: so did it mine;\nAnd a most instant tetter bark'd about,\nMost lazar-like, with vile and loathsome crust,\nAll my smooth body.\nThus was I, sleeping, by a brother's hand\nOf life, of crown, of queen, at once dispatch'd:\nCut off even in the blossoms of my sin,\nUnhousel'd, disappointed, unanel'd,\nNo reckoning made, but sent to my account\nWith all my imperfections on my head:\nO, horrible! O, horrible! most horrible!\nIf thou hast nature in thee, bear it not;\nLet not the royal bed of Denmark be\nA couch for luxury and damned incest.\nBut, howsoever thou pursuest this act,\nTaint not thy mind, nor let thy soul contrive\nAgainst thy mother aught: leave her to heaven\nAnd to those thorns that in her bosom lodge,\nTo prick and sting her. Fare thee well at once!\nThe glow-worm shows the matin to be near,\nAnd 'gins to pale his uneffectual fire:\nAdieu, adieu! Hamlet, remember me.\n\nHAMLET:\nO all you host of heaven! O earth! what else?\nAnd shall I couple hell? O, fie! Hold, hold, my heart;\nAnd you, my sinews, grow not instant old,\nBut bear me stiffly up. Remember thee!\nAy, thou poor ghost, while memory holds a seat\nIn this distracted globe. Remember thee!\nYea, from the table of my memory\nI'll wipe away all trivial fond records,\nAll saws of books, all forms, all pressures past,\nThat youth and observation copied there;\nAnd thy commandment all alone shall live\nWithin the book and volume of my brain,\nUnmix'd with baser matter: yes, by heaven!\nO most pernicious woman!\nO villain, villain, smiling, damned villain!\nMy tables,--meet it is I set it down,\nThat one may smile, and smile, and be a villain;\nAt least I'm sure it may be so in Denmark:\nSo, uncle, there you are. Now to my word;\nIt is 'Adieu, adieu! remember me.'\nI have sworn 't.\n\nMARCELLUS:\n\nMARCELLUS:\n\nHORATIO:\n\nHAMLET:\nSo be it!\n\nHORATIO:\n\nHAMLET:\nHillo, ho, ho, boy! come, bird, come.\n\nMARCELLUS:\nHow is't, my noble lord?\n\nHORATIO:\nWhat news, my lord?\n\nHAMLET:\nO, wonderful!\n\nHORATIO:\nGood my lord, tell it.\n\nHAMLET:\nNo; you'll reveal it.\n\nHORATIO:\nNot I, my lord, by heaven.\n\nMARCELLUS:\nNor I, my lord.\n\nHAMLET:\nHow say you, then; would heart of man once think it?\nBut you'll be secret?\n\nHORATIO:\nAy, by heaven, my lord.\n\nHAMLET:\nThere's ne'er a villain dwelling in all Denmark\nBut he's an arrant knave.\n\nHORATIO:\nThere needs no ghost, my lord, come from the grave\nTo tell us this.\n\nHAMLET:\nWhy, right; you are i' the right;\nAnd so, without more circumstance at all,\nI hold it fit that we shake hands and part:\nYou, as your business and desire shall point you;\nFor every man has business and desire,\nSuch as it is; and for mine own poor part,\nLook you, I'll go pray.\n\nHORATIO:\nThese are but wild and whirling words, my lord.\n\nHAMLET:\nI'm sorry they offend you, heartily;\nYes, 'faith heartily.\n\nHORATIO:\nThere's no offence, my lord.\n\nHAMLET:\nYes, by Saint Patrick, but there is, Horatio,\nAnd much offence too. Touching this vision here,\nIt is an honest ghost, that let me tell you:\nFor your desire to know what is between us,\nO'ermaster 't as you may. And now, good friends,\nAs you are friends, scholars and soldiers,\nGive me one poor request.\n\nHORATIO:\nWhat is't, my lord? we will.\n\nHAMLET:\nNever make known what you have seen to-night.\n\nHORATIO:\nMy lord, we will not.\n\nHAMLET:\nNay, but swear't.\n\nHORATIO:\nIn faith,\nMy lord, not I.\n\nMARCELLUS:\nNor I, my lord, in faith.\n\nHAMLET:\nUpon my sword.\n\nMARCELLUS:\nWe have sworn, my lord, already.\n\nHAMLET:\nIndeed, upon my sword, indeed.\n\nGhost:\n\nHAMLET:\nAh, ha, boy! say'st thou so? art thou there,\ntruepenny?\nCome on--you hear this fellow in the cellarage--\nConsent to swear.\n\nHORATIO:\nPropose the oath, my lord.\n\nHAMLET:\nNever to speak of this that you have seen,\nSwear by my sword.\n\nGhost:\n\nHAMLET:\nHic et ubique? then we'll shift our ground.\nCome hither, gentlemen,\nAnd lay your hands again upon my sword:\nNever to speak of this that you have heard,\nSwear by my sword.\n\nGhost:\n\nHAMLET:\nWell said, old mole! canst work i' the earth so fast?\nA worthy pioner! Once more remove, good friends.\n\nHORATIO:\nO day and night, but this is wondrous strange!\n\nHAMLET:\nAnd therefore as a stranger give it welcome.\nThere are more things in heaven and earth, Horatio,\nThan are dreamt of in your philosophy. But come;\nHere, as before, never, so help you mercy,\nHow strange or odd soe'er I bear myself,\nAs I perchance hereafter shall think meet\nTo put an antic disposition on,\nThat you, at such times seeing me, never shall,\nWith arms encumber'd thus, or this headshake,\nOr by pronouncing of some doubtful phrase,\nAs 'Well, well, we know,' or 'We could, an if we would,'\nOr 'If we list to speak,' or 'There be, an if they might,'\nOr such ambiguous giving out, to note\nThat you know aught of me: this not to do,\nSo grace and mercy at your most need help you, Swear.\n\nGhost:\n\nHAMLET:\nRest, rest, perturbed spirit!\nSo, gentlemen,\nWith all my love I do commend me to you:\nAnd what so poor a man as Hamlet is\nMay do, to express his love and friending to you,\nGod willing, shall not lack. Let us go in together;\nAnd still your fingers on your lips, I pray.\nThe time is out of joint: O cursed spite,\nThat ever I was born to set it right!\nNay, come, let's go together.\n\nLORD POLONIUS:\nGive him this money and these notes, Reynaldo.\n\nREYNALDO:\nI will, my lord.\n\nLORD POLONIUS:\nYou shall do marvellous wisely, good Reynaldo,\nBefore you visit him, to make inquire\nOf his behavior.\n\nREYNALDO:\nMy lord, I did intend it.\n\nLORD POLONIUS:\nMarry, well said; very well said. Look you, sir,\nInquire me first what Danskers are in Paris;\nAnd how, and who, what means, and where they keep,\nWhat company, at what expense; and finding\nBy this encompassment and drift of question\nThat they do know my son, come you more nearer\nThan your particular demands will touch it:\nTake you, as 'twere, some distant knowledge of him;\nAs thus, 'I know his father and his friends,\nAnd in part him: ' do you mark this, Reynaldo?\n\nREYNALDO:\nAy, very well, my lord.\n\nLORD POLONIUS:\n'And in part him; but' you may say 'not well:\nBut, if't be he I mean, he's very wild;\nAddicted so and so:' and there put on him\nWhat forgeries you please; marry, none so rank\nAs may dishonour him; take heed of that;\nBut, sir, such wanton, wild and usual slips\nAs are companions noted and most known\nTo youth and liberty.\n\nREYNALDO:\nAs gaming, my lord.\n\nLORD POLONIUS:\nAy, or drinking, fencing, swearing, quarrelling,\nDrabbing: you may go so far.\n\nREYNALDO:\nMy lord, that would dishonour him.\n\nLORD POLONIUS:\n'Faith, no; as you may season it in the charge\nYou must not put another scandal on him,\nThat he is open to incontinency;\nThat's not my meaning: but breathe his faults so quaintly\nThat they may seem the taints of liberty,\nThe flash and outbreak of a fiery mind,\nA savageness in unreclaimed blood,\nOf general assault.\n\nREYNALDO:\nBut, my good lord,--\n\nLORD POLONIUS:\nWherefore should you do this?\n\nREYNALDO:\nAy, my lord,\nI would know that.\n\nLORD POLONIUS:\nMarry, sir, here's my drift;\nAnd I believe, it is a fetch of wit:\nYou laying these slight sullies on my son,\nAs 'twere a thing a little soil'd i' the working, Mark you,\nYour party in converse, him you would sound,\nHaving ever seen in the prenominate crimes\nThe youth you breathe of guilty, be assured\nHe closes with you in this consequence;\n'Good sir,' or so, or 'friend,' or 'gentleman,'\nAccording to the phrase or the addition\nOf man and country.\n\nREYNALDO:\nVery good, my lord.\n\nLORD POLONIUS:\nAnd then, sir, does he this--he does--what was I\nabout to say? By the mass, I was about to say\nsomething: where did I leave?\n\nREYNALDO:\nAt 'closes in the consequence,' at 'friend or so,'\nand 'gentleman.'\n\nLORD POLONIUS:\nAt 'closes in the consequence,' ay, marry;\nHe closes thus: 'I know the gentleman;\nI saw him yesterday, or t' other day,\nOr then, or then; with such, or such; and, as you say,\nThere was a' gaming; there o'ertook in's rouse;\nThere falling out at tennis:' or perchance,\n'I saw him enter such a house of sale,'\nVidelicet, a brothel, or so forth.\nSee you now;\nYour bait of falsehood takes this carp of truth:\nAnd thus do we of wisdom and of reach,\nWith windlasses and with assays of bias,\nBy indirections find directions out:\nSo by my former lecture and advice,\nShall you my son. You have me, have you not?\n\nREYNALDO:\nMy lord, I have.\n\nLORD POLONIUS:\nGod be wi' you; fare you well.\n\nREYNALDO:\nGood my lord!\n\nLORD POLONIUS:\nObserve his inclination in yourself.\n\nREYNALDO:\nI shall, my lord.\n\nLORD POLONIUS:\nAnd let him ply his music.\n\nREYNALDO:\nWell, my lord.\n\nLORD POLONIUS:\nFarewell!\nHow now, Ophelia! what's the matter?\n\nOPHELIA:\nO, my lord, my lord, I have been so affrighted!\n\nLORD POLONIUS:\nWith what, i' the name of God?\n\nOPHELIA:\nMy lord, as I was sewing in my closet,\nLord Hamlet, with his doublet all unbraced;\nNo hat upon his head; his stockings foul'd,\nUngarter'd, and down-gyved to his ancle;\nPale as his shirt; his knees knocking each other;\nAnd with a look so piteous in purport\nAs if he had been loosed out of hell\nTo speak of horrors,--he comes before me.\n\nLORD POLONIUS:\nMad for thy love?\n\nOPHELIA:\nMy lord, I do not know;\nBut truly, I do fear it.\n\nLORD POLONIUS:\nWhat said he?\n\nOPHELIA:\nHe took me by the wrist and held me hard;\nThen goes he to the length of all his arm;\nAnd, with his other hand thus o'er his brow,\nHe falls to such perusal of my face\nAs he would draw it. Long stay'd he so;\nAt last, a little shaking of mine arm\nAnd thrice his head thus waving up and down,\nHe raised a sigh so piteous and profound\nAs it did seem to shatter all his bulk\nAnd end his being: that done, he lets me go:\nAnd, with his head over his shoulder turn'd,\nHe seem'd to find his way without his eyes;\nFor out o' doors he went without their helps,\nAnd, to the last, bended their light on me.\n\nLORD POLONIUS:\nCome, go with me: I will go seek the king.\nThis is the very ecstasy of love,\nWhose violent property fordoes itself\nAnd leads the will to desperate undertakings\nAs oft as any passion under heaven\nThat does afflict our natures. I am sorry.\nWhat, have you given him any hard words of late?\n\nOPHELIA:\nNo, my good lord, but, as you did command,\nI did repel his fetters and denied\nHis access to me.\n\nLORD POLONIUS:\nThat hath made him mad.\nI am sorry that with better heed and judgment\nI had not quoted him: I fear'd he did but trifle,\nAnd meant to wreck thee; but, beshrew my jealousy!\nBy heaven, it is as proper to our age\nTo cast beyond ourselves in our opinions\nAs it is common for the younger sort\nTo lack discretion. Come, go we to the king:\nThis must be known; which, being kept close, might\nmove\nMore grief to hide than hate to utter love.\n\nKING CLAUDIUS:\nWelcome, dear Rosencrantz and Guildenstern!\nMoreover that we much did long to see you,\nThe need we have to use you did provoke\nOur hasty sending. Something have you heard\nOf Hamlet's transformation; so call it,\nSith nor the exterior nor the inward man\nResembles that it was. What it should be,\nMore than his father's death, that thus hath put him\nSo much from the understanding of himself,\nI cannot dream of: I entreat you both,\nThat, being of so young days brought up with him,\nAnd sith so neighbour'd to his youth and havior,\nThat you vouchsafe your rest here in our court\nSome little time: so by your companies\nTo draw him on to pleasures, and to gather,\nSo much as from occasion you may glean,\nWhether aught, to us unknown, afflicts him thus,\nThat, open'd, lies within our remedy.\n\nQUEEN GERTRUDE:\nGood gentlemen, he hath much talk'd of you;\nAnd sure I am two men there are not living\nTo whom he more adheres. If it will please you\nTo show us so much gentry and good will\nAs to expend your time with us awhile,\nFor the supply and profit of our hope,\nYour visitation shall receive such thanks\nAs fits a king's remembrance.\n\nROSENCRANTZ:\nBoth your majesties\nMight, by the sovereign power you have of us,\nPut your dread pleasures more into command\nThan to entreaty.\n\nGUILDENSTERN:\nBut we both obey,\nAnd here give up ourselves, in the full bent\nTo lay our service freely at your feet,\nTo be commanded.\n\nKING CLAUDIUS:\nThanks, Rosencrantz and gentle Guildenstern.\n\nQUEEN GERTRUDE:\nThanks, Guildenstern and gentle Rosencrantz:\nAnd I beseech you instantly to visit\nMy too much changed son. Go, some of you,\nAnd bring these gentlemen where Hamlet is.\n\nGUILDENSTERN:\nHeavens make our presence and our practises\nPleasant and helpful to him!\n\nQUEEN GERTRUDE:\nAy, amen!\n\nLORD POLONIUS:\nThe ambassadors from Norway, my good lord,\nAre joyfully return'd.\n\nKING CLAUDIUS:\nThou still hast been the father of good news.\n\nLORD POLONIUS:\nHave I, my lord? I assure my good liege,\nI hold my duty, as I hold my soul,\nBoth to my God and to my gracious king:\nAnd I do think, or else this brain of mine\nHunts not the trail of policy so sure\nAs it hath used to do, that I have found\nThe very cause of Hamlet's lunacy.\n\nKING CLAUDIUS:\nO, speak of that; that do I long to hear.\n\nLORD POLONIUS:\nGive first admittance to the ambassadors;\nMy news shall be the fruit to that great feast.\n\nKING CLAUDIUS:\nThyself do grace to them, and bring them in.\nHe tells me, my dear Gertrude, he hath found\nThe head and source of all your son's distemper.\n\nQUEEN GERTRUDE:\nI doubt it is no other but the main;\nHis father's death, and our o'erhasty marriage.\n\nKING CLAUDIUS:\nWell, we shall sift him.\nWelcome, my good friends!\nSay, Voltimand, what from our brother Norway?\n\nVOLTIMAND:\nMost fair return of greetings and desires.\nUpon our first, he sent out to suppress\nHis nephew's levies; which to him appear'd\nTo be a preparation 'gainst the Polack;\nBut, better look'd into, he truly found\nIt was against your highness: whereat grieved,\nThat so his sickness, age and impotence\nWas falsely borne in hand, sends out arrests\nOn Fortinbras; which he, in brief, obeys;\nReceives rebuke from Norway, and in fine\nMakes vow before his uncle never more\nTo give the assay of arms against your majesty.\nWhereon old Norway, overcome with joy,\nGives him three thousand crowns in annual fee,\nAnd his commission to employ those soldiers,\nSo levied as before, against the Polack:\nWith an entreaty, herein further shown,\nThat it might please you to give quiet pass\nThrough your dominions for this enterprise,\nOn such regards of safety and allowance\nAs therein are set down.\n\nKING CLAUDIUS:\nIt likes us well;\nAnd at our more consider'd time well read,\nAnswer, and think upon this business.\nMeantime we thank you for your well-took labour:\nGo to your rest; at night we'll feast together:\nMost welcome home!\n\nLORD POLONIUS:\nThis business is well ended.\nMy liege, and madam, to expostulate\nWhat majesty should be, what duty is,\nWhy day is day, night night, and time is time,\nWere nothing but to waste night, day and time.\nTherefore, since brevity is the soul of wit,\nAnd tediousness the limbs and outward flourishes,\nI will be brief: your noble son is mad:\nMad call I it; for, to define true madness,\nWhat is't but to be nothing else but mad?\nBut let that go.\n\nQUEEN GERTRUDE:\nMore matter, with less art.\n\nLORD POLONIUS:\nMadam, I swear I use no art at all.\nThat he is mad, 'tis true: 'tis true 'tis pity;\nAnd pity 'tis 'tis true: a foolish figure;\nBut farewell it, for I will use no art.\nMad let us grant him, then: and now remains\nThat we find out the cause of this effect,\nOr rather say, the cause of this defect,\nFor this effect defective comes by cause:\nThus it remains, and the remainder thus. Perpend.\nI have a daughter--have while she is mine--\nWho, in her duty and obedience, mark,\nHath given me this: now gather, and surmise.\n'To the celestial and my soul's idol, the most\nbeautified Ophelia,'--\nThat's an ill phrase, a vile phrase; 'beautified' is\na vile phrase: but you shall hear. Thus:\n'In her excellent white bosom, these, &c.'\n\nQUEEN GERTRUDE:\nCame this from Hamlet to her?\n\nLORD POLONIUS:\nGood madam, stay awhile; I will be faithful.\n'Doubt thou the stars are fire;\nDoubt that the sun doth move;\nDoubt truth to be a liar;\nBut never doubt I love.\n'O dear Ophelia, I am ill at these numbers;\nI have not art to reckon my groans: but that\nI love thee best, O most best, believe it. Adieu.\n'Thine evermore most dear lady, whilst\nthis machine is to him, HAMLET.'\nThis, in obedience, hath my daughter shown me,\nAnd more above, hath his solicitings,\nAs they fell out by time, by means and place,\nAll given to mine ear.\n\nKING CLAUDIUS:\nBut how hath she\nReceived his love?\n\nLORD POLONIUS:\nWhat do you think of me?\n\nKING CLAUDIUS:\nAs of a man faithful and honourable.\n\nLORD POLONIUS:\nI would fain prove so. But what might you think,\nWhen I had seen this hot love on the wing--\nAs I perceived it, I must tell you that,\nBefore my daughter told me--what might you,\nOr my dear majesty your queen here, think,\nIf I had play'd the desk or table-book,\nOr given my heart a winking, mute and dumb,\nOr look'd upon this love with idle sight;\nWhat might you think? No, I went round to work,\nAnd my young mistress thus I did bespeak:\n'Lord Hamlet is a prince, out of thy star;\nThis must not be:' and then I precepts gave her,\nThat she should lock herself from his resort,\nAdmit no messengers, receive no tokens.\nWhich done, she took the fruits of my advice;\nAnd he, repulsed--a short tale to make--\nFell into a sadness, then into a fast,\nThence to a watch, thence into a weakness,\nThence to a lightness, and, by this declension,\nInto the madness wherein now he raves,\nAnd all we mourn for.\n\nKING CLAUDIUS:\nDo you think 'tis this?\n\nQUEEN GERTRUDE:\nIt may be, very likely.\n\nLORD POLONIUS:\nHath there been such a time--I'd fain know that--\nThat I have positively said 'Tis so,'\nWhen it proved otherwise?\n\nKING CLAUDIUS:\nNot that I know.\n\nLORD POLONIUS:\n\nKING CLAUDIUS:\nHow may we try it further?\n\nLORD POLONIUS:\nYou know, sometimes he walks four hours together\nHere in the lobby.\n\nQUEEN GERTRUDE:\nSo he does indeed.\n\nLORD POLONIUS:\nAt such a time I'll loose my daughter to him:\nBe you and I behind an arras then;\nMark the encounter: if he love her not\nAnd be not from his reason fall'n thereon,\nLet me be no assistant for a state,\nBut keep a farm and carters.\n\nKING CLAUDIUS:\nWe will try it.\n\nQUEEN GERTRUDE:\nBut, look, where sadly the poor wretch comes reading.\n\nLORD POLONIUS:\nAway, I do beseech you, both away:\nI'll board him presently.\nO, give me leave:\nHow does my good Lord Hamlet?\n\nHAMLET:\nWell, God-a-mercy.\n\nLORD POLONIUS:\nDo you know me, my lord?\n\nHAMLET:\nExcellent well; you are a fishmonger.\n\nLORD POLONIUS:\nNot I, my lord.\n\nHAMLET:\nThen I would you were so honest a man.\n\nLORD POLONIUS:\nHonest, my lord!\n\nHAMLET:\nAy, sir; to be honest, as this world goes, is to be\none man picked out of ten thousand.\n\nLORD POLONIUS:\nThat's very true, my lord.\n\nHAMLET:\nFor if the sun breed maggots in a dead dog, being a\ngod kissing carrion,--Have you a daughter?\n\nLORD POLONIUS:\nI have, my lord.\n\nHAMLET:\nLet her not walk i' the sun: conception is a\nblessing: but not as your daughter may conceive.\nFriend, look to 't.\n\nLORD POLONIUS:\n\nHAMLET:\nWords, words, words.\n\nLORD POLONIUS:\nWhat is the matter, my lord?\n\nHAMLET:\nBetween who?\n\nLORD POLONIUS:\nI mean, the matter that you read, my lord.\n\nHAMLET:\nSlanders, sir: for the satirical rogue says here\nthat old men have grey beards, that their faces are\nwrinkled, their eyes purging thick amber and\nplum-tree gum and that they have a plentiful lack of\nwit, together with most weak hams: all which, sir,\nthough I most powerfully and potently believe, yet\nI hold it not honesty to have it thus set down, for\nyourself, sir, should be old as I am, if like a crab\nyou could go backward.\n\nLORD POLONIUS:\n\nHAMLET:\nInto my grave.\n\nLORD POLONIUS:\nIndeed, that is out o' the air.\nHow pregnant sometimes his replies are! a happiness\nthat often madness hits on, which reason and sanity\ncould not so prosperously be delivered of. I will\nleave him, and suddenly contrive the means of\nmeeting between him and my daughter.--My honourable\nlord, I will most humbly take my leave of you.\n\nHAMLET:\nYou cannot, sir, take from me any thing that I will\nmore willingly part withal: except my life, except\nmy life, except my life.\n\nLORD POLONIUS:\nFare you well, my lord.\n\nHAMLET:\nThese tedious old fools!\n\nLORD POLONIUS:\nYou go to seek the Lord Hamlet; there he is.\n\nROSENCRANTZ:\n\nGUILDENSTERN:\nMy honoured lord!\n\nROSENCRANTZ:\nMy most dear lord!\n\nHAMLET:\nMy excellent good friends! How dost thou,\nGuildenstern? Ah, Rosencrantz! Good lads, how do ye both?\n\nROSENCRANTZ:\nAs the indifferent children of the earth.\n\nGUILDENSTERN:\nHappy, in that we are not over-happy;\nOn fortune's cap we are not the very button.\n\nHAMLET:\nNor the soles of her shoe?\n\nROSENCRANTZ:\nNeither, my lord.\n\nHAMLET:\nThen you live about her waist, or in the middle of\nher favours?\n\nGUILDENSTERN:\n'Faith, her privates we.\n\nHAMLET:\nIn the secret parts of fortune? O, most true; she\nis a strumpet. What's the news?\n\nROSENCRANTZ:\nNone, my lord, but that the world's grown honest.\n\nHAMLET:\nThen is doomsday near: but your news is not true.\nLet me question more in particular: what have you,\nmy good friends, deserved at the hands of fortune,\nthat she sends you to prison hither?\n\nGUILDENSTERN:\nPrison, my lord!\n\nHAMLET:\nDenmark's a prison.\n\nROSENCRANTZ:\nThen is the world one.\n\nHAMLET:\nA goodly one; in which there are many confines,\nwards and dungeons, Denmark being one o' the worst.\n\nROSENCRANTZ:\nWe think not so, my lord.\n\nHAMLET:\nWhy, then, 'tis none to you; for there is nothing\neither good or bad, but thinking makes it so: to me\nit is a prison.\n\nROSENCRANTZ:\nWhy then, your ambition makes it one; 'tis too\nnarrow for your mind.\n\nHAMLET:\nO God, I could be bounded in a nut shell and count\nmyself a king of infinite space, were it not that I\nhave bad dreams.\n\nGUILDENSTERN:\nWhich dreams indeed are ambition, for the very\nsubstance of the ambitious is merely the shadow of a dream.\n\nHAMLET:\nA dream itself is but a shadow.\n\nROSENCRANTZ:\nTruly, and I hold ambition of so airy and light a\nquality that it is but a shadow's shadow.\n\nHAMLET:\nThen are our beggars bodies, and our monarchs and\noutstretched heroes the beggars' shadows. Shall we\nto the court? for, by my fay, I cannot reason.\n\nROSENCRANTZ:\nWe'll wait upon you.\n\nHAMLET:\nNo such matter: I will not sort you with the rest\nof my servants, for, to speak to you like an honest\nman, I am most dreadfully attended. But, in the\nbeaten way of friendship, what make you at Elsinore?\n\nROSENCRANTZ:\nTo visit you, my lord; no other occasion.\n\nHAMLET:\nBeggar that I am, I am even poor in thanks; but I\nthank you: and sure, dear friends, my thanks are\ntoo dear a halfpenny. Were you not sent for? Is it\nyour own inclining? Is it a free visitation? Come,\ndeal justly with me: come, come; nay, speak.\n\nGUILDENSTERN:\nWhat should we say, my lord?\n\nHAMLET:\nWhy, any thing, but to the purpose. You were sent\nfor; and there is a kind of confession in your looks\nwhich your modesties have not craft enough to colour:\nI know the good king and queen have sent for you.\n\nROSENCRANTZ:\nTo what end, my lord?\n\nHAMLET:\nThat you must teach me. But let me conjure you, by\nthe rights of our fellowship, by the consonancy of\nour youth, by the obligation of our ever-preserved\nlove, and by what more dear a better proposer could\ncharge you withal, be even and direct with me,\nwhether you were sent for, or no?\n\nROSENCRANTZ:\n\nHAMLET:\n\nGUILDENSTERN:\nMy lord, we were sent for.\n\nHAMLET:\nI will tell you why; so shall my anticipation\nprevent your discovery, and your secrecy to the king\nand queen moult no feather. I have of late--but\nwherefore I know not--lost all my mirth, forgone all\ncustom of exercises; and indeed it goes so heavily\nwith my disposition that this goodly frame, the\nearth, seems to me a sterile promontory, this most\nexcellent canopy, the air, look you, this brave\no'erhanging firmament, this majestical roof fretted\nwith golden fire, why, it appears no other thing to\nme than a foul and pestilent congregation of vapours.\nWhat a piece of work is a man! how noble in reason!\nhow infinite in faculty! in form and moving how\nexpress and admirable! in action how like an angel!\nin apprehension how like a god! the beauty of the\nworld! the paragon of animals! And yet, to me,\nwhat is this quintessence of dust? man delights not\nme: no, nor woman neither, though by your smiling\nyou seem to say so.\n\nROSENCRANTZ:\nMy lord, there was no such stuff in my thoughts.\n\nHAMLET:\nWhy did you laugh then, when I said 'man delights not me'?\n\nROSENCRANTZ:\nTo think, my lord, if you delight not in man, what\nlenten entertainment the players shall receive from\nyou: we coted them on the way; and hither are they\ncoming, to offer you service.\n\nHAMLET:\nHe that plays the king shall be welcome; his majesty\nshall have tribute of me; the adventurous knight\nshall use his foil and target; the lover shall not\nsigh gratis; the humourous man shall end his part\nin peace; the clown shall make those laugh whose\nlungs are tickled o' the sere; and the lady shall\nsay her mind freely, or the blank verse shall halt\nfor't. What players are they?\n\nROSENCRANTZ:\nEven those you were wont to take delight in, the\ntragedians of the city.\n\nHAMLET:\nHow chances it they travel? their residence, both\nin reputation and profit, was better both ways.\n\nROSENCRANTZ:\nI think their inhibition comes by the means of the\nlate innovation.\n\nHAMLET:\nDo they hold the same estimation they did when I was\nin the city? are they so followed?\n\nROSENCRANTZ:\nNo, indeed, are they not.\n\nHAMLET:\nHow comes it? do they grow rusty?\n\nROSENCRANTZ:\nNay, their endeavour keeps in the wonted pace: but\nthere is, sir, an aery of children, little eyases,\nthat cry out on the top of question, and are most\ntyrannically clapped for't: these are now the\nfashion, and so berattle the common stages--so they\ncall them--that many wearing rapiers are afraid of\ngoose-quills and dare scarce come thither.\n\nHAMLET:\nWhat, are they children? who maintains 'em? how are\nthey escoted? Will they pursue the quality no\nlonger than they can sing? will they not say\nafterwards, if they should grow themselves to common\nplayers--as it is most like, if their means are no\nbetter--their writers do them wrong, to make them\nexclaim against their own succession?\n\nROSENCRANTZ:\n'Faith, there has been much to do on both sides; and\nthe nation holds it no sin to tarre them to\ncontroversy: there was, for a while, no money bid\nfor argument, unless the poet and the player went to\ncuffs in the question.\n\nHAMLET:\nIs't possible?\n\nGUILDENSTERN:\nO, there has been much throwing about of brains.\n\nHAMLET:\nDo the boys carry it away?\n\nROSENCRANTZ:\nAy, that they do, my lord; Hercules and his load too.\n\nHAMLET:\nIt is not very strange; for mine uncle is king of\nDenmark, and those that would make mows at him while\nmy father lived, give twenty, forty, fifty, an\nhundred ducats a-piece for his picture in little.\n'Sblood, there is something in this more than\nnatural, if philosophy could find it out.\n\nGUILDENSTERN:\nThere are the players.\n\nHAMLET:\nGentlemen, you are welcome to Elsinore. Your hands,\ncome then: the appurtenance of welcome is fashion\nand ceremony: let me comply with you in this garb,\nlest my extent to the players, which, I tell you,\nmust show fairly outward, should more appear like\nentertainment than yours. You are welcome: but my\nuncle-father and aunt-mother are deceived.\n\nGUILDENSTERN:\nIn what, my dear lord?\n\nHAMLET:\nI am but mad north-north-west: when the wind is\nsoutherly I know a hawk from a handsaw.\n\nLORD POLONIUS:\nWell be with you, gentlemen!\n\nHAMLET:\nHark you, Guildenstern; and you too: at each ear a\nhearer: that great baby you see there is not yet\nout of his swaddling-clouts.\n\nROSENCRANTZ:\nHappily he's the second time come to them; for they\nsay an old man is twice a child.\n\nHAMLET:\nI will prophesy he comes to tell me of the players;\nmark it. You say right, sir: o' Monday morning;\n'twas so indeed.\n\nLORD POLONIUS:\nMy lord, I have news to tell you.\n\nHAMLET:\nMy lord, I have news to tell you.\nWhen Roscius was an actor in Rome,--\n\nLORD POLONIUS:\nThe actors are come hither, my lord.\n\nHAMLET:\nBuz, buz!\n\nLORD POLONIUS:\nUpon mine honour,--\n\nHAMLET:\nThen came each actor on his ass,--\n\nLORD POLONIUS:\nThe best actors in the world, either for tragedy,\ncomedy, history, pastoral, pastoral-comical,\nhistorical-pastoral, tragical-historical, tragical-\ncomical-historical-pastoral, scene individable, or\npoem unlimited: Seneca cannot be too heavy, nor\nPlautus too light. For the law of writ and the\nliberty, these are the only men.\n\nHAMLET:\nO Jephthah, judge of Israel, what a treasure hadst thou!\n\nLORD POLONIUS:\nWhat a treasure had he, my lord?\n\nHAMLET:\nWhy,\n'One fair daughter and no more,\nThe which he loved passing well.'\n\nLORD POLONIUS:\n\nHAMLET:\nAm I not i' the right, old Jephthah?\n\nLORD POLONIUS:\nIf you call me Jephthah, my lord, I have a daughter\nthat I love passing well.\n\nHAMLET:\nNay, that follows not.\n\nLORD POLONIUS:\nWhat follows, then, my lord?\n\nHAMLET:\nWhy,\n'As by lot, God wot,'\nand then, you know,\n'It came to pass, as most like it was,'--\nthe first row of the pious chanson will show you\nmore; for look, where my abridgement comes.\nYou are welcome, masters; welcome, all. I am glad\nto see thee well. Welcome, good friends. O, my old\nfriend! thy face is valenced since I saw thee last:\ncomest thou to beard me in Denmark? What, my young\nlady and mistress! By'r lady, your ladyship is\nnearer to heaven than when I saw you last, by the\naltitude of a chopine. Pray God, your voice, like\napiece of uncurrent gold, be not cracked within the\nring. Masters, you are all welcome. We'll e'en\nto't like French falconers, fly at any thing we see:\nwe'll have a speech straight: come, give us a taste\nof your quality; come, a passionate speech.\n\nFirst Player:\nWhat speech, my lord?\n\nHAMLET:\nI heard thee speak me a speech once, but it was\nnever acted; or, if it was, not above once; for the\nplay, I remember, pleased not the million; 'twas\ncaviare to the general: but it was--as I received\nit, and others, whose judgments in such matters\ncried in the top of mine--an excellent play, well\ndigested in the scenes, set down with as much\nmodesty as cunning. I remember, one said there\nwere no sallets in the lines to make the matter\nsavoury, nor no matter in the phrase that might\nindict the author of affectation; but called it an\nhonest method, as wholesome as sweet, and by very\nmuch more handsome than fine. One speech in it I\nchiefly loved: 'twas Aeneas' tale to Dido; and\nthereabout of it especially, where he speaks of\nPriam's slaughter: if it live in your memory, begin\nat this line: let me see, let me see--\n'The rugged Pyrrhus, like the Hyrcanian beast,'--\nit is not so:--it begins with Pyrrhus:--\n'The rugged Pyrrhus, he whose sable arms,\nBlack as his purpose, did the night resemble\nWhen he lay couched in the ominous horse,\nHath now this dread and black complexion smear'd\nWith heraldry more dismal; head to foot\nNow is he total gules; horridly trick'd\nWith blood of fathers, mothers, daughters, sons,\nBaked and impasted with the parching streets,\nThat lend a tyrannous and damned light\nTo their lord's murder: roasted in wrath and fire,\nAnd thus o'er-sized with coagulate gore,\nWith eyes like carbuncles, the hellish Pyrrhus\nOld grandsire Priam seeks.'\nSo, proceed you.\n\nLORD POLONIUS:\n'Fore God, my lord, well spoken, with good accent and\ngood discretion.\n\nFirst Player:\n'Anon he finds him\nStriking too short at Greeks; his antique sword,\nRebellious to his arm, lies where it falls,\nRepugnant to command: unequal match'd,\nPyrrhus at Priam drives; in rage strikes wide;\nBut with the whiff and wind of his fell sword\nThe unnerved father falls. Then senseless Ilium,\nSeeming to feel this blow, with flaming top\nStoops to his base, and with a hideous crash\nTakes prisoner Pyrrhus' ear: for, lo! his sword,\nWhich was declining on the milky head\nOf reverend Priam, seem'd i' the air to stick:\nSo, as a painted tyrant, Pyrrhus stood,\nAnd like a neutral to his will and matter,\nDid nothing.\nBut, as we often see, against some storm,\nA silence in the heavens, the rack stand still,\nThe bold winds speechless and the orb below\nAs hush as death, anon the dreadful thunder\nDoth rend the region, so, after Pyrrhus' pause,\nAroused vengeance sets him new a-work;\nAnd never did the Cyclops' hammers fall\nOn Mars's armour forged for proof eterne\nWith less remorse than Pyrrhus' bleeding sword\nNow falls on Priam.\nOut, out, thou strumpet, Fortune! All you gods,\nIn general synod 'take away her power;\nBreak all the spokes and fellies from her wheel,\nAnd bowl the round nave down the hill of heaven,\nAs low as to the fiends!'\n\nLORD POLONIUS:\nThis is too long.\n\nHAMLET:\nIt shall to the barber's, with your beard. Prithee,\nsay on: he's for a jig or a tale of bawdry, or he\nsleeps: say on: come to Hecuba.\n\nFirst Player:\n'But who, O, who had seen the mobled queen--'\n\nHAMLET:\n'The mobled queen?'\n\nLORD POLONIUS:\nThat's good; 'mobled queen' is good.\n\nFirst Player:\n'Run barefoot up and down, threatening the flames\nWith bisson rheum; a clout upon that head\nWhere late the diadem stood, and for a robe,\nAbout her lank and all o'er-teemed loins,\nA blanket, in the alarm of fear caught up;\nWho this had seen, with tongue in venom steep'd,\n'Gainst Fortune's state would treason have\npronounced:\nBut if the gods themselves did see her then\nWhen she saw Pyrrhus make malicious sport\nIn mincing with his sword her husband's limbs,\nThe instant burst of clamour that she made,\nUnless things mortal move them not at all,\nWould have made milch the burning eyes of heaven,\nAnd passion in the gods.'\n\nLORD POLONIUS:\nLook, whether he has not turned his colour and has\ntears in's eyes. Pray you, no more.\n\nHAMLET:\n'Tis well: I'll have thee speak out the rest soon.\nGood my lord, will you see the players well\nbestowed? Do you hear, let them be well used; for\nthey are the abstract and brief chronicles of the\ntime: after your death you were better have a bad\nepitaph than their ill report while you live.\n\nLORD POLONIUS:\nMy lord, I will use them according to their desert.\n\nHAMLET:\nGod's bodykins, man, much better: use every man\nafter his desert, and who should 'scape whipping?\nUse them after your own honour and dignity: the less\nthey deserve, the more merit is in your bounty.\nTake them in.\n\nLORD POLONIUS:\nCome, sirs.\n\nHAMLET:\nFollow him, friends: we'll hear a play to-morrow.\nDost thou hear me, old friend; can you play the\nMurder of Gonzago?\n\nFirst Player:\nAy, my lord.\n\nHAMLET:\nWe'll ha't to-morrow night. You could, for a need,\nstudy a speech of some dozen or sixteen lines, which\nI would set down and insert in't, could you not?\n\nFirst Player:\nAy, my lord.\n\nHAMLET:\nVery well. Follow that lord; and look you mock him\nnot.\nMy good friends, I'll leave you till night: you are\nwelcome to Elsinore.\n\nROSENCRANTZ:\nGood my lord!\n\nHAMLET:\nAy, so, God be wi' ye;\nNow I am alone.\nO, what a rogue and peasant slave am I!\nIs it not monstrous that this player here,\nBut in a fiction, in a dream of passion,\nCould force his soul so to his own conceit\nThat from her working all his visage wann'd,\nTears in his eyes, distraction in's aspect,\nA broken voice, and his whole function suiting\nWith forms to his conceit? and all for nothing!\nFor Hecuba!\nWhat's Hecuba to him, or he to Hecuba,\nThat he should weep for her? What would he do,\nHad he the motive and the cue for passion\nThat I have? He would drown the stage with tears\nAnd cleave the general ear with horrid speech,\nMake mad the guilty and appal the free,\nConfound the ignorant, and amaze indeed\nThe very faculties of eyes and ears. Yet I,\nA dull and muddy-mettled rascal, peak,\nLike John-a-dreams, unpregnant of my cause,\nAnd can say nothing; no, not for a king,\nUpon whose property and most dear life\nA damn'd defeat was made. Am I a coward?\nWho calls me villain? breaks my pate across?\nPlucks off my beard, and blows it in my face?\nTweaks me by the nose? gives me the lie i' the throat,\nAs deep as to the lungs? who does me this?\nHa!\n'Swounds, I should take it: for it cannot be\nBut I am pigeon-liver'd and lack gall\nTo make oppression bitter, or ere this\nI should have fatted all the region kites\nWith this slave's offal: bloody, bawdy villain!\nRemorseless, treacherous, lecherous, kindless villain!\nO, vengeance!\nWhy, what an ass am I! This is most brave,\nThat I, the son of a dear father murder'd,\nPrompted to my revenge by heaven and hell,\nMust, like a whore, unpack my heart with words,\nAnd fall a-cursing, like a very drab,\nA scullion!\nFie upon't! foh! About, my brain! I have heard\nThat guilty creatures sitting at a play\nHave by the very cunning of the scene\nBeen struck so to the soul that presently\nThey have proclaim'd their malefactions;\nFor murder, though it have no tongue, will speak\nWith most miraculous organ. I'll have these players\nPlay something like the murder of my father\nBefore mine uncle: I'll observe his looks;\nI'll tent him to the quick: if he but blench,\nI know my course. The spirit that I have seen\nMay be the devil: and the devil hath power\nTo assume a pleasing shape; yea, and perhaps\nOut of my weakness and my melancholy,\nAs he is very potent with such spirits,\nAbuses me to damn me: I'll have grounds\nMore relative than this: the play 's the thing\nWherein I'll catch the conscience of the king.\n\nKING CLAUDIUS:\nAnd can you, by no drift of circumstance,\nGet from him why he puts on this confusion,\nGrating so harshly all his days of quiet\nWith turbulent and dangerous lunacy?\n\nROSENCRANTZ:\nHe does confess he feels himself distracted;\nBut from what cause he will by no means speak.\n\nGUILDENSTERN:\nNor do we find him forward to be sounded,\nBut, with a crafty madness, keeps aloof,\nWhen we would bring him on to some confession\nOf his true state.\n\nQUEEN GERTRUDE:\nDid he receive you well?\n\nROSENCRANTZ:\nMost like a gentleman.\n\nGUILDENSTERN:\nBut with much forcing of his disposition.\n\nROSENCRANTZ:\nNiggard of question; but, of our demands,\nMost free in his reply.\n\nQUEEN GERTRUDE:\nDid you assay him?\nTo any pastime?\n\nROSENCRANTZ:\nMadam, it so fell out, that certain players\nWe o'er-raught on the way: of these we told him;\nAnd there did seem in him a kind of joy\nTo hear of it: they are about the court,\nAnd, as I think, they have already order\nThis night to play before him.\n\nLORD POLONIUS:\n'Tis most true:\nAnd he beseech'd me to entreat your majesties\nTo hear and see the matter.\n\nKING CLAUDIUS:\nWith all my heart; and it doth much content me\nTo hear him so inclined.\nGood gentlemen, give him a further edge,\nAnd drive his purpose on to these delights.\n\nROSENCRANTZ:\nWe shall, my lord.\n\nKING CLAUDIUS:\nSweet Gertrude, leave us too;\nFor we have closely sent for Hamlet hither,\nThat he, as 'twere by accident, may here\nAffront Ophelia:\nHer father and myself, lawful espials,\nWill so bestow ourselves that, seeing, unseen,\nWe may of their encounter frankly judge,\nAnd gather by him, as he is behaved,\nIf 't be the affliction of his love or no\nThat thus he suffers for.\n\nQUEEN GERTRUDE:\nI shall obey you.\nAnd for your part, Ophelia, I do wish\nThat your good beauties be the happy cause\nOf Hamlet's wildness: so shall I hope your virtues\nWill bring him to his wonted way again,\nTo both your honours.\n\nOPHELIA:\nMadam, I wish it may.\n\nLORD POLONIUS:\nOphelia, walk you here. Gracious, so please you,\nWe will bestow ourselves.\nRead on this book;\nThat show of such an exercise may colour\nYour loneliness. We are oft to blame in this,--\n'Tis too much proved--that with devotion's visage\nAnd pious action we do sugar o'er\nThe devil himself.\n\nKING CLAUDIUS:\n\nLORD POLONIUS:\nI hear him coming: let's withdraw, my lord.\n\nHAMLET:\nTo be, or not to be: that is the question:\nWhether 'tis nobler in the mind to suffer\nThe slings and arrows of outrageous fortune,\nOr to take arms against a sea of troubles,\nAnd by opposing end them? To die: to sleep;\nNo more; and by a sleep to say we end\nThe heart-ache and the thousand natural shocks\nThat flesh is heir to, 'tis a consummation\nDevoutly to be wish'd. To die, to sleep;\nTo sleep: perchance to dream: ay, there's the rub;\nFor in that sleep of death what dreams may come\nWhen we have shuffled off this mortal coil,\nMust give us pause: there's the respect\nThat makes calamity of so long life;\nFor who would bear the whips and scorns of time,\nThe oppressor's wrong, the proud man's contumely,\nThe pangs of despised love, the law's delay,\nThe insolence of office and the spurns\nThat patient merit of the unworthy takes,\nWhen he himself might his quietus make\nWith a bare bodkin? who would fardels bear,\nTo grunt and sweat under a weary life,\nBut that the dread of something after death,\nThe undiscover'd country from whose bourn\nNo traveller returns, puzzles the will\nAnd makes us rather bear those ills we have\nThan fly to others that we know not of?\nThus conscience does make cowards of us all;\nAnd thus the native hue of resolution\nIs sicklied o'er with the pale cast of thought,\nAnd enterprises of great pith and moment\nWith this regard their currents turn awry,\nAnd lose the name of action.--Soft you now!\nThe fair Ophelia! Nymph, in thy orisons\nBe all my sins remember'd.\n\nOPHELIA:\nGood my lord,\nHow does your honour for this many a day?\n\nHAMLET:\nI humbly thank you; well, well, well.\n\nOPHELIA:\nMy lord, I have remembrances of yours,\nThat I have longed long to re-deliver;\nI pray you, now receive them.\n\nHAMLET:\nNo, not I;\nI never gave you aught.\n\nOPHELIA:\nMy honour'd lord, you know right well you did;\nAnd, with them, words of so sweet breath composed\nAs made the things more rich: their perfume lost,\nTake these again; for to the noble mind\nRich gifts wax poor when givers prove unkind.\nThere, my lord.\n\nHAMLET:\nHa, ha! are you honest?\n\nOPHELIA:\nMy lord?\n\nHAMLET:\nAre you fair?\n\nOPHELIA:\nWhat means your lordship?\n\nHAMLET:\nThat if you be honest and fair, your honesty should\nadmit no discourse to your beauty.\n\nOPHELIA:\nCould beauty, my lord, have better commerce than\nwith honesty?\n\nHAMLET:\nAy, truly; for the power of beauty will sooner\ntransform honesty from what it is to a bawd than the\nforce of honesty can translate beauty into his\nlikeness: this was sometime a paradox, but now the\ntime gives it proof. I did love you once.\n\nOPHELIA:\nIndeed, my lord, you made me believe so.\n\nHAMLET:\nYou should not have believed me; for virtue cannot\nso inoculate our old stock but we shall relish of\nit: I loved you not.\n\nOPHELIA:\nI was the more deceived.\n\nHAMLET:\nGet thee to a nunnery: why wouldst thou be a\nbreeder of sinners? I am myself indifferent honest;\nbut yet I could accuse me of such things that it\nwere better my mother had not borne me: I am very\nproud, revengeful, ambitious, with more offences at\nmy beck than I have thoughts to put them in,\nimagination to give them shape, or time to act them\nin. What should such fellows as I do crawling\nbetween earth and heaven? We are arrant knaves,\nall; believe none of us. Go thy ways to a nunnery.\nWhere's your father?\n\nOPHELIA:\nAt home, my lord.\n\nHAMLET:\nLet the doors be shut upon him, that he may play the\nfool no where but in's own house. Farewell.\n\nOPHELIA:\nO, help him, you sweet heavens!\n\nHAMLET:\nIf thou dost marry, I'll give thee this plague for\nthy dowry: be thou as chaste as ice, as pure as\nsnow, thou shalt not escape calumny. Get thee to a\nnunnery, go: farewell. Or, if thou wilt needs\nmarry, marry a fool; for wise men know well enough\nwhat monsters you make of them. To a nunnery, go,\nand quickly too. Farewell.\n\nOPHELIA:\nO heavenly powers, restore him!\n\nHAMLET:\nI have heard of your paintings too, well enough; God\nhas given you one face, and you make yourselves\nanother: you jig, you amble, and you lisp, and\nnick-name God's creatures, and make your wantonness\nyour ignorance. Go to, I'll no more on't; it hath\nmade me mad. I say, we will have no more marriages:\nthose that are married already, all but one, shall\nlive; the rest shall keep as they are. To a\nnunnery, go.\n\nOPHELIA:\nO, what a noble mind is here o'erthrown!\nThe courtier's, soldier's, scholar's, eye, tongue, sword;\nThe expectancy and rose of the fair state,\nThe glass of fashion and the mould of form,\nThe observed of all observers, quite, quite down!\nAnd I, of ladies most deject and wretched,\nThat suck'd the honey of his music vows,\nNow see that noble and most sovereign reason,\nLike sweet bells jangled, out of tune and harsh;\nThat unmatch'd form and feature of blown youth\nBlasted with ecstasy: O, woe is me,\nTo have seen what I have seen, see what I see!\n\nKING CLAUDIUS:\nLove! his affections do not that way tend;\nNor what he spake, though it lack'd form a little,\nWas not like madness. There's something in his soul,\nO'er which his melancholy sits on brood;\nAnd I do doubt the hatch and the disclose\nWill be some danger: which for to prevent,\nI have in quick determination\nThus set it down: he shall with speed to England,\nFor the demand of our neglected tribute\nHaply the seas and countries different\nWith variable objects shall expel\nThis something-settled matter in his heart,\nWhereon his brains still beating puts him thus\nFrom fashion of himself. What think you on't?\n\nLORD POLONIUS:\nIt shall do well: but yet do I believe\nThe origin and commencement of his grief\nSprung from neglected love. How now, Ophelia!\nYou need not tell us what Lord Hamlet said;\nWe heard it all. My lord, do as you please;\nBut, if you hold it fit, after the play\nLet his queen mother all alone entreat him\nTo show his grief: let her be round with him;\nAnd I'll be placed, so please you, in the ear\nOf all their conference. If she find him not,\nTo England send him, or confine him where\nYour wisdom best shall think.\n\nKING CLAUDIUS:\nIt shall be so:\nMadness in great ones must not unwatch'd go.\n\nHAMLET:\nSpeak the speech, I pray you, as I pronounced it to\nyou, trippingly on the tongue: but if you mouth it,\nas many of your players do, I had as lief the\ntown-crier spoke my lines. Nor do not saw the air\ntoo much with your hand, thus, but use all gently;\nfor in the very torrent, tempest, and, as I may say,\nthe whirlwind of passion, you must acquire and beget\na temperance that may give it smoothness. O, it\noffends me to the soul to hear a robustious\nperiwig-pated fellow tear a passion to tatters, to\nvery rags, to split the ears of the groundlings, who\nfor the most part are capable of nothing but\ninexplicable dumbshows and noise: I would have such\na fellow whipped for o'erdoing Termagant; it\nout-herods Herod: pray you, avoid it.\n\nFirst Player:\nI warrant your honour.\n\nHAMLET:\nBe not too tame neither, but let your own discretion\nbe your tutor: suit the action to the word, the\nword to the action; with this special o'erstep not\nthe modesty of nature: for any thing so overdone is\nfrom the purpose of playing, whose end, both at the\nfirst and now, was and is, to hold, as 'twere, the\nmirror up to nature; to show virtue her own feature,\nscorn her own image, and the very age and body of\nthe time his form and pressure. Now this overdone,\nor come tardy off, though it make the unskilful\nlaugh, cannot but make the judicious grieve; the\ncensure of the which one must in your allowance\no'erweigh a whole theatre of others. O, there be\nplayers that I have seen play, and heard others\npraise, and that highly, not to speak it profanely,\nthat, neither having the accent of Christians nor\nthe gait of Christian, pagan, nor man, have so\nstrutted and bellowed that I have thought some of\nnature's journeymen had made men and not made them\nwell, they imitated humanity so abominably.\n\nFirst Player:\nI hope we have reformed that indifferently with us,\nsir.\n\nHAMLET:\nO, reform it altogether. And let those that play\nyour clowns speak no more than is set down for them;\nfor there be of them that will themselves laugh, to\nset on some quantity of barren spectators to laugh\ntoo; though, in the mean time, some necessary\nquestion of the play be then to be considered:\nthat's villanous, and shows a most pitiful ambition\nin the fool that uses it. Go, make you ready.\nHow now, my lord! I will the king hear this piece of work?\n\nLORD POLONIUS:\nAnd the queen too, and that presently.\n\nHAMLET:\nBid the players make haste.\nWill you two help to hasten them?\n\nROSENCRANTZ:\nWe will, my lord.\n\nHAMLET:\nWhat ho! Horatio!\n\nHORATIO:\nHere, sweet lord, at your service.\n\nHAMLET:\nHoratio, thou art e'en as just a man\nAs e'er my conversation coped withal.\n\nHORATIO:\nO, my dear lord,--\n\nHAMLET:\nNay, do not think I flatter;\nFor what advancement may I hope from thee\nThat no revenue hast but thy good spirits,\nTo feed and clothe thee? Why should the poor be flatter'd?\nNo, let the candied tongue lick absurd pomp,\nAnd crook the pregnant hinges of the knee\nWhere thrift may follow fawning. Dost thou hear?\nSince my dear soul was mistress of her choice\nAnd could of men distinguish, her election\nHath seal'd thee for herself; for thou hast been\nAs one, in suffering all, that suffers nothing,\nA man that fortune's buffets and rewards\nHast ta'en with equal thanks: and blest are those\nWhose blood and judgment are so well commingled,\nThat they are not a pipe for fortune's finger\nTo sound what stop she please. Give me that man\nThat is not passion's slave, and I will wear him\nIn my heart's core, ay, in my heart of heart,\nAs I do thee.--Something too much of this.--\nThere is a play to-night before the king;\nOne scene of it comes near the circumstance\nWhich I have told thee of my father's death:\nI prithee, when thou seest that act afoot,\nEven with the very comment of thy soul\nObserve mine uncle: if his occulted guilt\nDo not itself unkennel in one speech,\nIt is a damned ghost that we have seen,\nAnd my imaginations are as foul\nAs Vulcan's stithy. Give him heedful note;\nFor I mine eyes will rivet to his face,\nAnd after we will both our judgments join\nIn censure of his seeming.\n\nHORATIO:\nWell, my lord:\nIf he steal aught the whilst this play is playing,\nAnd 'scape detecting, I will pay the theft.\n\nHAMLET:\nThey are coming to the play; I must be idle:\nGet you a place.\n\nKING CLAUDIUS:\nHow fares our cousin Hamlet?\n\nHAMLET:\nExcellent, i' faith; of the chameleon's dish: I eat\nthe air, promise-crammed: you cannot feed capons so.\n\nKING CLAUDIUS:\nI have nothing with this answer, Hamlet; these words\nare not mine.\n\nHAMLET:\nNo, nor mine now.\nMy lord, you played once i' the university, you say?\n\nLORD POLONIUS:\nThat did I, my lord; and was accounted a good actor.\n\nHAMLET:\nWhat did you enact?\n\nLORD POLONIUS:\nI did enact Julius Caesar: I was killed i' the\nCapitol; Brutus killed me.\n\nHAMLET:\nIt was a brute part of him to kill so capital a calf\nthere. Be the players ready?\n\nROSENCRANTZ:\nAy, my lord; they stay upon your patience.\n\nQUEEN GERTRUDE:\nCome hither, my dear Hamlet, sit by me.\n\nHAMLET:\nNo, good mother, here's metal more attractive.\n\nLORD POLONIUS:\n\nHAMLET:\nLady, shall I lie in your lap?\n\nOPHELIA:\nNo, my lord.\n\nHAMLET:\nI mean, my head upon your lap?\n\nOPHELIA:\nAy, my lord.\n\nHAMLET:\nDo you think I meant country matters?\n\nOPHELIA:\nI think nothing, my lord.\n\nHAMLET:\nThat's a fair thought to lie between maids' legs.\n\nOPHELIA:\nWhat is, my lord?\n\nHAMLET:\nNothing.\n\nOPHELIA:\nYou are merry, my lord.\n\nHAMLET:\nWho, I?\n\nOPHELIA:\nAy, my lord.\n\nHAMLET:\nO God, your only jig-maker. What should a man do\nbut be merry? for, look you, how cheerfully my\nmother looks, and my father died within these two hours.\n\nOPHELIA:\nNay, 'tis twice two months, my lord.\n\nHAMLET:\nSo long? Nay then, let the devil wear black, for\nI'll have a suit of sables. O heavens! die two\nmonths ago, and not forgotten yet? Then there's\nhope a great man's memory may outlive his life half\na year: but, by'r lady, he must build churches,\nthen; or else shall he suffer not thinking on, with\nthe hobby-horse, whose epitaph is 'For, O, for, O,\nthe hobby-horse is forgot.'\n\nOPHELIA:\nWhat means this, my lord?\n\nHAMLET:\nMarry, this is miching mallecho; it means mischief.\n\nOPHELIA:\nBelike this show imports the argument of the play.\n\nHAMLET:\nWe shall know by this fellow: the players cannot\nkeep counsel; they'll tell all.\n\nOPHELIA:\nWill he tell us what this show meant?\n\nHAMLET:\nAy, or any show that you'll show him: be not you\nashamed to show, he'll not shame to tell you what it means.\n\nOPHELIA:\nYou are naught, you are naught: I'll mark the play.\n\nPrologue:\nFor us, and for our tragedy,\nHere stooping to your clemency,\nWe beg your hearing patiently.\n\nHAMLET:\nIs this a prologue, or the posy of a ring?\n\nOPHELIA:\n'Tis brief, my lord.\n\nHAMLET:\nAs woman's love.\n\nPlayer King:\nFull thirty times hath Phoebus' cart gone round\nNeptune's salt wash and Tellus' orbed ground,\nAnd thirty dozen moons with borrow'd sheen\nAbout the world have times twelve thirties been,\nSince love our hearts and Hymen did our hands\nUnite commutual in most sacred bands.\n\nPlayer Queen:\nSo many journeys may the sun and moon\nMake us again count o'er ere love be done!\nBut, woe is me, you are so sick of late,\nSo far from cheer and from your former state,\nThat I distrust you. Yet, though I distrust,\nDiscomfort you, my lord, it nothing must:\nFor women's fear and love holds quantity;\nIn neither aught, or in extremity.\nNow, what my love is, proof hath made you know;\nAnd as my love is sized, my fear is so:\nWhere love is great, the littlest doubts are fear;\nWhere little fears grow great, great love grows there.\n\nPlayer King:\n'Faith, I must leave thee, love, and shortly too;\nMy operant powers their functions leave to do:\nAnd thou shalt live in this fair world behind,\nHonour'd, beloved; and haply one as kind\nFor husband shalt thou--\n\nPlayer Queen:\nO, confound the rest!\nSuch love must needs be treason in my breast:\nIn second husband let me be accurst!\nNone wed the second but who kill'd the first.\n\nHAMLET:\n\nPlayer Queen:\nThe instances that second marriage move\nAre base respects of thrift, but none of love:\nA second time I kill my husband dead,\nWhen second husband kisses me in bed.\n\nPlayer King:\nI do believe you think what now you speak;\nBut what we do determine oft we break.\nPurpose is but the slave to memory,\nOf violent birth, but poor validity;\nWhich now, like fruit unripe, sticks on the tree;\nBut fall, unshaken, when they mellow be.\nMost necessary 'tis that we forget\nTo pay ourselves what to ourselves is debt:\nWhat to ourselves in passion we propose,\nThe passion ending, doth the purpose lose.\nThe violence of either grief or joy\nTheir own enactures with themselves destroy:\nWhere joy most revels, grief doth most lament;\nGrief joys, joy grieves, on slender accident.\nThis world is not for aye, nor 'tis not strange\nThat even our loves should with our fortunes change;\nFor 'tis a question left us yet to prove,\nWhether love lead fortune, or else fortune love.\nThe great man down, you mark his favourite flies;\nThe poor advanced makes friends of enemies.\nAnd hitherto doth love on fortune tend;\nFor who not needs shall never lack a friend,\nAnd who in want a hollow friend doth try,\nDirectly seasons him his enemy.\nBut, orderly to end where I begun,\nOur wills and fates do so contrary run\nThat our devices still are overthrown;\nOur thoughts are ours, their ends none of our own:\nSo think thou wilt no second husband wed;\nBut die thy thoughts when thy first lord is dead.\n\nPlayer Queen:\nNor earth to me give food, nor heaven light!\nSport and repose lock from me day and night!\nTo desperation turn my trust and hope!\nAn anchor's cheer in prison be my scope!\nEach opposite that blanks the face of joy\nMeet what I would have well and it destroy!\nBoth here and hence pursue me lasting strife,\nIf, once a widow, ever I be wife!\n\nHAMLET:\nIf she should break it now!\n\nPlayer King:\n'Tis deeply sworn. Sweet, leave me here awhile;\nMy spirits grow dull, and fain I would beguile\nThe tedious day with sleep.\n\nPlayer Queen:\nSleep rock thy brain,\nAnd never come mischance between us twain!\n\nHAMLET:\nMadam, how like you this play?\n\nQUEEN GERTRUDE:\nThe lady protests too much, methinks.\n\nHAMLET:\nO, but she'll keep her word.\n\nKING CLAUDIUS:\nHave you heard the argument? Is there no offence in 't?\n\nHAMLET:\nNo, no, they do but jest, poison in jest; no offence\ni' the world.\n\nKING CLAUDIUS:\nWhat do you call the play?\n\nHAMLET:\nThe Mouse-trap. Marry, how? Tropically. This play\nis the image of a murder done in Vienna: Gonzago is\nthe duke's name; his wife, Baptista: you shall see\nanon; 'tis a knavish piece of work: but what o'\nthat? your majesty and we that have free souls, it\ntouches us not: let the galled jade wince, our\nwithers are unwrung.\nThis is one Lucianus, nephew to the king.\n\nOPHELIA:\nYou are as good as a chorus, my lord.\n\nHAMLET:\nI could interpret between you and your love, if I\ncould see the puppets dallying.\n\nOPHELIA:\nYou are keen, my lord, you are keen.\n\nHAMLET:\nIt would cost you a groaning to take off my edge.\n\nOPHELIA:\nStill better, and worse.\n\nHAMLET:\nSo you must take your husbands. Begin, murderer;\npox, leave thy damnable faces, and begin. Come:\n'the croaking raven doth bellow for revenge.'\n\nLUCIANUS:\nThoughts black, hands apt, drugs fit, and time agreeing;\nConfederate season, else no creature seeing;\nThou mixture rank, of midnight weeds collected,\nWith Hecate's ban thrice blasted, thrice infected,\nThy natural magic and dire property,\nOn wholesome life usurp immediately.\n\nHAMLET:\nHe poisons him i' the garden for's estate. His\nname's Gonzago: the story is extant, and writ in\nchoice Italian: you shall see anon how the murderer\ngets the love of Gonzago's wife.\n\nOPHELIA:\nThe king rises.\n\nHAMLET:\nWhat, frighted with false fire!\n\nQUEEN GERTRUDE:\nHow fares my lord?\n\nLORD POLONIUS:\nGive o'er the play.\n\nKING CLAUDIUS:\nGive me some light: away!\n\nAll:\nLights, lights, lights!\n\nHAMLET:\nWhy, let the stricken deer go weep,\nThe hart ungalled play;\nFor some must watch, while some must sleep:\nSo runs the world away.\nWould not this, sir, and a forest of feathers-- if\nthe rest of my fortunes turn Turk with me--with two\nProvincial roses on my razed shoes, get me a\nfellowship in a cry of players, sir?\n\nHORATIO:\nHalf a share.\n\nHAMLET:\nA whole one, I.\nFor thou dost know, O Damon dear,\nThis realm dismantled was\nOf Jove himself; and now reigns here\nA very, very--pajock.\n\nHORATIO:\nYou might have rhymed.\n\nHAMLET:\nO good Horatio, I'll take the ghost's word for a\nthousand pound. Didst perceive?\n\nHORATIO:\nVery well, my lord.\n\nHAMLET:\nUpon the talk of the poisoning?\n\nHORATIO:\nI did very well note him.\n\nHAMLET:\nAh, ha! Come, some music! come, the recorders!\nFor if the king like not the comedy,\nWhy then, belike, he likes it not, perdy.\nCome, some music!\n\nGUILDENSTERN:\nGood my lord, vouchsafe me a word with you.\n\nHAMLET:\nSir, a whole history.\n\nGUILDENSTERN:\nThe king, sir,--\n\nHAMLET:\nAy, sir, what of him?\n\nGUILDENSTERN:\nIs in his retirement marvellous distempered.\n\nHAMLET:\nWith drink, sir?\n\nGUILDENSTERN:\nNo, my lord, rather with choler.\n\nHAMLET:\nYour wisdom should show itself more richer to\nsignify this to his doctor; for, for me to put him\nto his purgation would perhaps plunge him into far\nmore choler.\n\nGUILDENSTERN:\nGood my lord, put your discourse into some frame and\nstart not so wildly from my affair.\n\nHAMLET:\nI am tame, sir: pronounce.\n\nGUILDENSTERN:\nThe queen, your mother, in most great affliction of\nspirit, hath sent me to you.\n\nHAMLET:\nYou are welcome.\n\nGUILDENSTERN:\nNay, good my lord, this courtesy is not of the right\nbreed. If it shall please you to make me a\nwholesome answer, I will do your mother's\ncommandment: if not, your pardon and my return\nshall be the end of my business.\n\nHAMLET:\nSir, I cannot.\n\nGUILDENSTERN:\nWhat, my lord?\n\nHAMLET:\nMake you a wholesome answer; my wit's diseased: but,\nsir, such answer as I can make, you shall command;\nor, rather, as you say, my mother: therefore no\nmore, but to the matter: my mother, you say,--\n\nROSENCRANTZ:\nThen thus she says; your behavior hath struck her\ninto amazement and admiration.\n\nHAMLET:\nO wonderful son, that can so astonish a mother! But\nis there no sequel at the heels of this mother's\nadmiration? Impart.\n\nROSENCRANTZ:\nShe desires to speak with you in her closet, ere you\ngo to bed.\n\nHAMLET:\nWe shall obey, were she ten times our mother. Have\nyou any further trade with us?\n\nROSENCRANTZ:\nMy lord, you once did love me.\n\nHAMLET:\nSo I do still, by these pickers and stealers.\n\nROSENCRANTZ:\nGood my lord, what is your cause of distemper? you\ndo, surely, bar the door upon your own liberty, if\nyou deny your griefs to your friend.\n\nHAMLET:\nSir, I lack advancement.\n\nROSENCRANTZ:\nHow can that be, when you have the voice of the king\nhimself for your succession in Denmark?\n\nHAMLET:\nAy, but sir, 'While the grass grows,'--the proverb\nis something musty.\nO, the recorders! let me see one. To withdraw with\nyou:--why do you go about to recover the wind of me,\nas if you would drive me into a toil?\n\nGUILDENSTERN:\nO, my lord, if my duty be too bold, my love is too\nunmannerly.\n\nHAMLET:\nI do not well understand that. Will you play upon\nthis pipe?\n\nGUILDENSTERN:\nMy lord, I cannot.\n\nHAMLET:\nI pray you.\n\nGUILDENSTERN:\nBelieve me, I cannot.\n\nHAMLET:\nI do beseech you.\n\nGUILDENSTERN:\nI know no touch of it, my lord.\n\nHAMLET:\n'Tis as easy as lying: govern these ventages with\nyour lingers and thumb, give it breath with your\nmouth, and it will discourse most eloquent music.\nLook you, these are the stops.\n\nGUILDENSTERN:\nBut these cannot I command to any utterance of\nharmony; I have not the skill.\n\nHAMLET:\nWhy, look you now, how unworthy a thing you make of\nme! You would play upon me; you would seem to know\nmy stops; you would pluck out the heart of my\nmystery; you would sound me from my lowest note to\nthe top of my compass: and there is much music,\nexcellent voice, in this little organ; yet cannot\nyou make it speak. 'Sblood, do you think I am\neasier to be played on than a pipe? Call me what\ninstrument you will, though you can fret me, yet you\ncannot play upon me.\nGod bless you, sir!\n\nLORD POLONIUS:\nMy lord, the queen would speak with you, and\npresently.\n\nHAMLET:\nDo you see yonder cloud that's almost in shape of a camel?\n\nLORD POLONIUS:\nBy the mass, and 'tis like a camel, indeed.\n\nHAMLET:\nMethinks it is like a weasel.\n\nLORD POLONIUS:\nIt is backed like a weasel.\n\nHAMLET:\nOr like a whale?\n\nLORD POLONIUS:\nVery like a whale.\n\nHAMLET:\nThen I will come to my mother by and by. They fool\nme to the top of my bent. I will come by and by.\n\nLORD POLONIUS:\nI will say so.\n\nHAMLET:\nBy and by is easily said.\nLeave me, friends.\nTis now the very witching time of night,\nWhen churchyards yawn and hell itself breathes out\nContagion to this world: now could I drink hot blood,\nAnd do such bitter business as the day\nWould quake to look on. Soft! now to my mother.\nO heart, lose not thy nature; let not ever\nThe soul of Nero enter this firm bosom:\nLet me be cruel, not unnatural:\nI will speak daggers to her, but use none;\nMy tongue and soul in this be hypocrites;\nHow in my words soever she be shent,\nTo give them seals never, my soul, consent!\n\nKING CLAUDIUS:\nI like him not, nor stands it safe with us\nTo let his madness range. Therefore prepare you;\nI your commission will forthwith dispatch,\nAnd he to England shall along with you:\nThe terms of our estate may not endure\nHazard so dangerous as doth hourly grow\nOut of his lunacies.\n\nGUILDENSTERN:\nWe will ourselves provide:\nMost holy and religious fear it is\nTo keep those many many bodies safe\nThat live and feed upon your majesty.\n\nROSENCRANTZ:\nThe single and peculiar life is bound,\nWith all the strength and armour of the mind,\nTo keep itself from noyance; but much more\nThat spirit upon whose weal depend and rest\nThe lives of many. The cease of majesty\nDies not alone; but, like a gulf, doth draw\nWhat's near it with it: it is a massy wheel,\nFix'd on the summit of the highest mount,\nTo whose huge spokes ten thousand lesser things\nAre mortised and adjoin'd; which, when it falls,\nEach small annexment, petty consequence,\nAttends the boisterous ruin. Never alone\nDid the king sigh, but with a general groan.\n\nKING CLAUDIUS:\nArm you, I pray you, to this speedy voyage;\nFor we will fetters put upon this fear,\nWhich now goes too free-footed.\n\nROSENCRANTZ:\nWe will haste us.\n\nLORD POLONIUS:\nMy lord, he's going to his mother's closet:\nBehind the arras I'll convey myself,\nTo hear the process; and warrant she'll tax him home:\nAnd, as you said, and wisely was it said,\n'Tis meet that some more audience than a mother,\nSince nature makes them partial, should o'erhear\nThe speech, of vantage. Fare you well, my liege:\nI'll call upon you ere you go to bed,\nAnd tell you what I know.\n\nKING CLAUDIUS:\nThanks, dear my lord.\nO, my offence is rank it smells to heaven;\nIt hath the primal eldest curse upon't,\nA brother's murder. Pray can I not,\nThough inclination be as sharp as will:\nMy stronger guilt defeats my strong intent;\nAnd, like a man to double business bound,\nI stand in pause where I shall first begin,\nAnd both neglect. What if this cursed hand\nWere thicker than itself with brother's blood,\nIs there not rain enough in the sweet heavens\nTo wash it white as snow? Whereto serves mercy\nBut to confront the visage of offence?\nAnd what's in prayer but this two-fold force,\nTo be forestalled ere we come to fall,\nOr pardon'd being down? Then I'll look up;\nMy fault is past. But, O, what form of prayer\nCan serve my turn? 'Forgive me my foul murder'?\nThat cannot be; since I am still possess'd\nOf those effects for which I did the murder,\nMy crown, mine own ambition and my queen.\nMay one be pardon'd and retain the offence?\nIn the corrupted currents of this world\nOffence's gilded hand may shove by justice,\nAnd oft 'tis seen the wicked prize itself\nBuys out the law: but 'tis not so above;\nThere is no shuffling, there the action lies\nIn his true nature; and we ourselves compell'd,\nEven to the teeth and forehead of our faults,\nTo give in evidence. What then? what rests?\nTry what repentance can: what can it not?\nYet what can it when one can not repent?\nO wretched state! O bosom black as death!\nO limed soul, that, struggling to be free,\nArt more engaged! Help, angels! Make assay!\nBow, stubborn knees; and, heart with strings of steel,\nBe soft as sinews of the newborn babe!\nAll may be well.\n\nHAMLET:\nNow might I do it pat, now he is praying;\nAnd now I'll do't. And so he goes to heaven;\nAnd so am I revenged. That would be scann'd:\nA villain kills my father; and for that,\nI, his sole son, do this same villain send\nTo heaven.\nO, this is hire and salary, not revenge.\nHe took my father grossly, full of bread;\nWith all his crimes broad blown, as flush as May;\nAnd how his audit stands who knows save heaven?\nBut in our circumstance and course of thought,\n'Tis heavy with him: and am I then revenged,\nTo take him in the purging of his soul,\nWhen he is fit and season'd for his passage?\nNo!\nUp, sword; and know thou a more horrid hent:\nWhen he is drunk asleep, or in his rage,\nOr in the incestuous pleasure of his bed;\nAt gaming, swearing, or about some act\nThat has no relish of salvation in't;\nThen trip him, that his heels may kick at heaven,\nAnd that his soul may be as damn'd and black\nAs hell, whereto it goes. My mother stays:\nThis physic but prolongs thy sickly days.\n\nKING CLAUDIUS:\n\nLORD POLONIUS:\nHe will come straight. Look you lay home to him:\nTell him his pranks have been too broad to bear with,\nAnd that your grace hath screen'd and stood between\nMuch heat and him. I'll sconce me even here.\nPray you, be round with him.\n\nHAMLET:\n\nQUEEN GERTRUDE:\nI'll warrant you,\nFear me not: withdraw, I hear him coming.\n\nHAMLET:\nNow, mother, what's the matter?\n\nQUEEN GERTRUDE:\nHamlet, thou hast thy father much offended.\n\nHAMLET:\nMother, you have my father much offended.\n\nQUEEN GERTRUDE:\nCome, come, you answer with an idle tongue.\n\nHAMLET:\nGo, go, you question with a wicked tongue.\n\nQUEEN GERTRUDE:\nWhy, how now, Hamlet!\n\nHAMLET:\nWhat's the matter now?\n\nQUEEN GERTRUDE:\nHave you forgot me?\n\nHAMLET:\nNo, by the rood, not so:\nYou are the queen, your husband's brother's wife;\nAnd--would it were not so!--you are my mother.\n\nQUEEN GERTRUDE:\nNay, then, I'll set those to you that can speak.\n\nHAMLET:\nCome, come, and sit you down; you shall not budge;\nYou go not till I set you up a glass\nWhere you may see the inmost part of you.\n\nQUEEN GERTRUDE:\nWhat wilt thou do? thou wilt not murder me?\nHelp, help, ho!\n\nLORD POLONIUS:\n\nHAMLET:\n\nLORD POLONIUS:\n\nQUEEN GERTRUDE:\nO me, what hast thou done?\n\nHAMLET:\nNay, I know not:\nIs it the king?\n\nQUEEN GERTRUDE:\nO, what a rash and bloody deed is this!\n\nHAMLET:\nA bloody deed! almost as bad, good mother,\nAs kill a king, and marry with his brother.\n\nQUEEN GERTRUDE:\nAs kill a king!\n\nHAMLET:\nAy, lady, 'twas my word.\nThou wretched, rash, intruding fool, farewell!\nI took thee for thy better: take thy fortune;\nThou find'st to be too busy is some danger.\nLeave wringing of your hands: peace! sit you down,\nAnd let me wring your heart; for so I shall,\nIf it be made of penetrable stuff,\nIf damned custom have not brass'd it so\nThat it is proof and bulwark against sense.\n\nQUEEN GERTRUDE:\nWhat have I done, that thou darest wag thy tongue\nIn noise so rude against me?\n\nHAMLET:\nSuch an act\nThat blurs the grace and blush of modesty,\nCalls virtue hypocrite, takes off the rose\nFrom the fair forehead of an innocent love\nAnd sets a blister there, makes marriage-vows\nAs false as dicers' oaths: O, such a deed\nAs from the body of contraction plucks\nThe very soul, and sweet religion makes\nA rhapsody of words: heaven's face doth glow:\nYea, this solidity and compound mass,\nWith tristful visage, as against the doom,\nIs thought-sick at the act.\n\nQUEEN GERTRUDE:\nAy me, what act,\nThat roars so loud, and thunders in the index?\n\nHAMLET:\nLook here, upon this picture, and on this,\nThe counterfeit presentment of two brothers.\nSee, what a grace was seated on this brow;\nHyperion's curls; the front of Jove himself;\nAn eye like Mars, to threaten and command;\nA station like the herald Mercury\nNew-lighted on a heaven-kissing hill;\nA combination and a form indeed,\nWhere every god did seem to set his seal,\nTo give the world assurance of a man:\nThis was your husband. Look you now, what follows:\nHere is your husband; like a mildew'd ear,\nBlasting his wholesome brother. Have you eyes?\nCould you on this fair mountain leave to feed,\nAnd batten on this moor? Ha! have you eyes?\nYou cannot call it love; for at your age\nThe hey-day in the blood is tame, it's humble,\nAnd waits upon the judgment: and what judgment\nWould step from this to this? Sense, sure, you have,\nElse could you not have motion; but sure, that sense\nIs apoplex'd; for madness would not err,\nNor sense to ecstasy was ne'er so thrall'd\nBut it reserved some quantity of choice,\nTo serve in such a difference. What devil was't\nThat thus hath cozen'd you at hoodman-blind?\nEyes without feeling, feeling without sight,\nEars without hands or eyes, smelling sans all,\nOr but a sickly part of one true sense\nCould not so mope.\nO shame! where is thy blush? Rebellious hell,\nIf thou canst mutine in a matron's bones,\nTo flaming youth let virtue be as wax,\nAnd melt in her own fire: proclaim no shame\nWhen the compulsive ardour gives the charge,\nSince frost itself as actively doth burn\nAnd reason panders will.\n\nQUEEN GERTRUDE:\nO Hamlet, speak no more:\nThou turn'st mine eyes into my very soul;\nAnd there I see such black and grained spots\nAs will not leave their tinct.\n\nHAMLET:\nNay, but to live\nIn the rank sweat of an enseamed bed,\nStew'd in corruption, honeying and making love\nOver the nasty sty,--\n\nQUEEN GERTRUDE:\nO, speak to me no more;\nThese words, like daggers, enter in mine ears;\nNo more, sweet Hamlet!\n\nHAMLET:\nA murderer and a villain;\nA slave that is not twentieth part the tithe\nOf your precedent lord; a vice of kings;\nA cutpurse of the empire and the rule,\nThat from a shelf the precious diadem stole,\nAnd put it in his pocket!\n\nQUEEN GERTRUDE:\nNo more!\n\nHAMLET:\nA king of shreds and patches,--\nSave me, and hover o'er me with your wings,\nYou heavenly guards! What would your gracious figure?\n\nQUEEN GERTRUDE:\nAlas, he's mad!\n\nHAMLET:\nDo you not come your tardy son to chide,\nThat, lapsed in time and passion, lets go by\nThe important acting of your dread command? O, say!\n\nGhost:\nDo not forget: this visitation\nIs but to whet thy almost blunted purpose.\nBut, look, amazement on thy mother sits:\nO, step between her and her fighting soul:\nConceit in weakest bodies strongest works:\nSpeak to her, Hamlet.\n\nHAMLET:\nHow is it with you, lady?\n\nQUEEN GERTRUDE:\nAlas, how is't with you,\nThat you do bend your eye on vacancy\nAnd with the incorporal air do hold discourse?\nForth at your eyes your spirits wildly peep;\nAnd, as the sleeping soldiers in the alarm,\nYour bedded hair, like life in excrements,\nStarts up, and stands on end. O gentle son,\nUpon the heat and flame of thy distemper\nSprinkle cool patience. Whereon do you look?\n\nHAMLET:\nOn him, on him! Look you, how pale he glares!\nHis form and cause conjoin'd, preaching to stones,\nWould make them capable. Do not look upon me;\nLest with this piteous action you convert\nMy stern effects: then what I have to do\nWill want true colour; tears perchance for blood.\n\nQUEEN GERTRUDE:\nTo whom do you speak this?\n\nHAMLET:\nDo you see nothing there?\n\nQUEEN GERTRUDE:\nNothing at all; yet all that is I see.\n\nHAMLET:\nNor did you nothing hear?\n\nQUEEN GERTRUDE:\nNo, nothing but ourselves.\n\nHAMLET:\nWhy, look you there! look, how it steals away!\nMy father, in his habit as he lived!\nLook, where he goes, even now, out at the portal!\n\nQUEEN GERTRUDE:\nThis the very coinage of your brain:\nThis bodiless creation ecstasy\nIs very cunning in.\n\nHAMLET:\nEcstasy!\nMy pulse, as yours, doth temperately keep time,\nAnd makes as healthful music: it is not madness\nThat I have utter'd: bring me to the test,\nAnd I the matter will re-word; which madness\nWould gambol from. Mother, for love of grace,\nLay not that mattering unction to your soul,\nThat not your trespass, but my madness speaks:\nIt will but skin and film the ulcerous place,\nWhilst rank corruption, mining all within,\nInfects unseen. Confess yourself to heaven;\nRepent what's past; avoid what is to come;\nAnd do not spread the compost on the weeds,\nTo make them ranker. Forgive me this my virtue;\nFor in the fatness of these pursy times\nVirtue itself of vice must pardon beg,\nYea, curb and woo for leave to do him good.\n\nQUEEN GERTRUDE:\nO Hamlet, thou hast cleft my heart in twain.\n\nHAMLET:\nO, throw away the worser part of it,\nAnd live the purer with the other half.\nGood night: but go not to mine uncle's bed;\nAssume a virtue, if you have it not.\nThat monster, custom, who all sense doth eat,\nOf habits devil, is angel yet in this,\nThat to the use of actions fair and good\nHe likewise gives a frock or livery,\nThat aptly is put on. Refrain to-night,\nAnd that shall lend a kind of easiness\nTo the next abstinence: the next more easy;\nFor use almost can change the stamp of nature,\nAnd either ... the devil, or throw him out\nWith wondrous potency. Once more, good night:\nAnd when you are desirous to be bless'd,\nI'll blessing beg of you. For this same lord,\nI do repent: but heaven hath pleased it so,\nTo punish me with this and this with me,\nThat I must be their scourge and minister.\nI will bestow him, and will answer well\nThe death I gave him. So, again, good night.\nI must be cruel, only to be kind:\nThus bad begins and worse remains behind.\nOne word more, good lady.\n\nQUEEN GERTRUDE:\nWhat shall I do?\n\nHAMLET:\nNot this, by no means, that I bid you do:\nLet the bloat king tempt you again to bed;\nPinch wanton on your cheek; call you his mouse;\nAnd let him, for a pair of reechy kisses,\nOr paddling in your neck with his damn'd fingers,\nMake you to ravel all this matter out,\nThat I essentially am not in madness,\nBut mad in craft. 'Twere good you let him know;\nFor who, that's but a queen, fair, sober, wise,\nWould from a paddock, from a bat, a gib,\nSuch dear concernings hide? who would do so?\nNo, in despite of sense and secrecy,\nUnpeg the basket on the house's top.\nLet the birds fly, and, like the famous ape,\nTo try conclusions, in the basket creep,\nAnd break your own neck down.\n\nQUEEN GERTRUDE:\nBe thou assured, if words be made of breath,\nAnd breath of life, I have no life to breathe\nWhat thou hast said to me.\n\nHAMLET:\nI must to England; you know that?\n\nQUEEN GERTRUDE:\nAlack,\nI had forgot: 'tis so concluded on.\n\nHAMLET:\nThere's letters seal'd: and my two schoolfellows,\nWhom I will trust as I will adders fang'd,\nThey bear the mandate; they must sweep my way,\nAnd marshal me to knavery. Let it work;\nFor 'tis the sport to have the engineer\nHoist with his own petard: and 't shall go hard\nBut I will delve one yard below their mines,\nAnd blow them at the moon: O, 'tis most sweet,\nWhen in one line two crafts directly meet.\nThis man shall set me packing:\nI'll lug the guts into the neighbour room.\nMother, good night. Indeed this counsellor\nIs now most still, most secret and most grave,\nWho was in life a foolish prating knave.\nCome, sir, to draw toward an end with you.\nGood night, mother.\n\nKING CLAUDIUS:\nThere's matter in these sighs, these profound heaves:\nYou must translate: 'tis fit we understand them.\nWhere is your son?\n\nQUEEN GERTRUDE:\nBestow this place on us a little while.\nAh, my good lord, what have I seen to-night!\n\nKING CLAUDIUS:\nWhat, Gertrude? How does Hamlet?\n\nQUEEN GERTRUDE:\nMad as the sea and wind, when both contend\nWhich is the mightier: in his lawless fit,\nBehind the arras hearing something stir,\nWhips out his rapier, cries, 'A rat, a rat!'\nAnd, in this brainish apprehension, kills\nThe unseen good old man.\n\nKING CLAUDIUS:\nO heavy deed!\nIt had been so with us, had we been there:\nHis liberty is full of threats to all;\nTo you yourself, to us, to every one.\nAlas, how shall this bloody deed be answer'd?\nIt will be laid to us, whose providence\nShould have kept short, restrain'd and out of haunt,\nThis mad young man: but so much was our love,\nWe would not understand what was most fit;\nBut, like the owner of a foul disease,\nTo keep it from divulging, let it feed\nEven on the pith of Life. Where is he gone?\n\nQUEEN GERTRUDE:\nTo draw apart the body he hath kill'd:\nO'er whom his very madness, like some ore\nAmong a mineral of metals base,\nShows itself pure; he weeps for what is done.\n\nKING CLAUDIUS:\nO Gertrude, come away!\nThe sun no sooner shall the mountains touch,\nBut we will ship him hence: and this vile deed\nWe must, with all our majesty and skill,\nBoth countenance and excuse. Ho, Guildenstern!\nFriends both, go join you with some further aid:\nHamlet in madness hath Polonius slain,\nAnd from his mother's closet hath he dragg'd him:\nGo seek him out; speak fair, and bring the body\nInto the chapel. I pray you, haste in this.\nCome, Gertrude, we'll call up our wisest friends;\nAnd let them know, both what we mean to do,\nAnd what's untimely done...\nWhose whisper o'er the world's diameter,\nAs level as the cannon to his blank,\nTransports his poison'd shot, may miss our name,\nAnd hit the woundless air. O, come away!\nMy soul is full of discord and dismay.\n\nHAMLET:\nSafely stowed.\n\nROSENCRANTZ:\n\nHAMLET:\nWhat noise? who calls on Hamlet?\nO, here they come.\n\nROSENCRANTZ:\nWhat have you done, my lord, with the dead body?\n\nHAMLET:\nCompounded it with dust, whereto 'tis kin.\n\nROSENCRANTZ:\nTell us where 'tis, that we may take it thence\nAnd bear it to the chapel.\n\nHAMLET:\nDo not believe it.\n\nROSENCRANTZ:\nBelieve what?\n\nHAMLET:\nThat I can keep your counsel and not mine own.\nBesides, to be demanded of a sponge! what\nreplication should be made by the son of a king?\n\nROSENCRANTZ:\nTake you me for a sponge, my lord?\n\nHAMLET:\nAy, sir, that soaks up the king's countenance, his\nrewards, his authorities. But such officers do the\nking best service in the end: he keeps them, like\nan ape, in the corner of his jaw; first mouthed, to\nbe last swallowed: when he needs what you have\ngleaned, it is but squeezing you, and, sponge, you\nshall be dry again.\n\nROSENCRANTZ:\nI understand you not, my lord.\n\nHAMLET:\nI am glad of it: a knavish speech sleeps in a\nfoolish ear.\n\nROSENCRANTZ:\nMy lord, you must tell us where the body is, and go\nwith us to the king.\n\nHAMLET:\nThe body is with the king, but the king is not with\nthe body. The king is a thing--\n\nGUILDENSTERN:\nA thing, my lord!\n\nHAMLET:\nOf nothing: bring me to him. Hide fox, and all after.\n\nKING CLAUDIUS:\nI have sent to seek him, and to find the body.\nHow dangerous is it that this man goes loose!\nYet must not we put the strong law on him:\nHe's loved of the distracted multitude,\nWho like not in their judgment, but their eyes;\nAnd where tis so, the offender's scourge is weigh'd,\nBut never the offence. To bear all smooth and even,\nThis sudden sending him away must seem\nDeliberate pause: diseases desperate grown\nBy desperate appliance are relieved,\nOr not at all.\nHow now! what hath befall'n?\n\nROSENCRANTZ:\nWhere the dead body is bestow'd, my lord,\nWe cannot get from him.\n\nKING CLAUDIUS:\nBut where is he?\n\nROSENCRANTZ:\nWithout, my lord; guarded, to know your pleasure.\n\nKING CLAUDIUS:\nBring him before us.\n\nROSENCRANTZ:\nHo, Guildenstern! bring in my lord.\n\nKING CLAUDIUS:\nNow, Hamlet, where's Polonius?\n\nHAMLET:\nAt supper.\n\nKING CLAUDIUS:\nAt supper! where?\n\nHAMLET:\nNot where he eats, but where he is eaten: a certain\nconvocation of politic worms are e'en at him. Your\nworm is your only emperor for diet: we fat all\ncreatures else to fat us, and we fat ourselves for\nmaggots: your fat king and your lean beggar is but\nvariable service, two dishes, but to one table:\nthat's the end.\n\nKING CLAUDIUS:\nAlas, alas!\n\nHAMLET:\nA man may fish with the worm that hath eat of a\nking, and cat of the fish that hath fed of that worm.\n\nKING CLAUDIUS:\nWhat dost you mean by this?\n\nHAMLET:\nNothing but to show you how a king may go a\nprogress through the guts of a beggar.\n\nKING CLAUDIUS:\nWhere is Polonius?\n\nHAMLET:\nIn heaven; send hither to see: if your messenger\nfind him not there, seek him i' the other place\nyourself. But indeed, if you find him not within\nthis month, you shall nose him as you go up the\nstairs into the lobby.\n\nKING CLAUDIUS:\nGo seek him there.\n\nHAMLET:\nHe will stay till ye come.\n\nKING CLAUDIUS:\nHamlet, this deed, for thine especial safety,--\nWhich we do tender, as we dearly grieve\nFor that which thou hast done,--must send thee hence\nWith fiery quickness: therefore prepare thyself;\nThe bark is ready, and the wind at help,\nThe associates tend, and every thing is bent\nFor England.\n\nHAMLET:\nFor England!\n\nKING CLAUDIUS:\nAy, Hamlet.\n\nHAMLET:\nGood.\n\nKING CLAUDIUS:\nSo is it, if thou knew'st our purposes.\n\nHAMLET:\nI see a cherub that sees them. But, come; for\nEngland! Farewell, dear mother.\n\nKING CLAUDIUS:\nThy loving father, Hamlet.\n\nHAMLET:\nMy mother: father and mother is man and wife; man\nand wife is one flesh; and so, my mother. Come, for England!\n\nKING CLAUDIUS:\nFollow him at foot; tempt him with speed aboard;\nDelay it not; I'll have him hence to-night:\nAway! for every thing is seal'd and done\nThat else leans on the affair: pray you, make haste.\nAnd, England, if my love thou hold'st at aught--\nAs my great power thereof may give thee sense,\nSince yet thy cicatrice looks raw and red\nAfter the Danish sword, and thy free awe\nPays homage to us--thou mayst not coldly set\nOur sovereign process; which imports at full,\nBy letters congruing to that effect,\nThe present death of Hamlet. Do it, England;\nFor like the hectic in my blood he rages,\nAnd thou must cure me: till I know 'tis done,\nHowe'er my haps, my joys were ne'er begun.\n\nPRINCE FORTINBRAS:\nGo, captain, from me greet the Danish king;\nTell him that, by his licence, Fortinbras\nCraves the conveyance of a promised march\nOver his kingdom. You know the rendezvous.\nIf that his majesty would aught with us,\nWe shall express our duty in his eye;\nAnd let him know so.\n\nCaptain:\nI will do't, my lord.\n\nPRINCE FORTINBRAS:\nGo softly on.\n\nHAMLET:\nGood sir, whose powers are these?\n\nCaptain:\nThey are of Norway, sir.\n\nHAMLET:\nHow purposed, sir, I pray you?\n\nCaptain:\nAgainst some part of Poland.\n\nHAMLET:\nWho commands them, sir?\n\nCaptain:\nThe nephews to old Norway, Fortinbras.\n\nHAMLET:\nGoes it against the main of Poland, sir,\nOr for some frontier?\n\nCaptain:\nTruly to speak, and with no addition,\nWe go to gain a little patch of ground\nThat hath in it no profit but the name.\nTo pay five ducats, five, I would not farm it;\nNor will it yield to Norway or the Pole\nA ranker rate, should it be sold in fee.\n\nHAMLET:\nWhy, then the Polack never will defend it.\n\nCaptain:\nYes, it is already garrison'd.\n\nHAMLET:\nTwo thousand souls and twenty thousand ducats\nWill not debate the question of this straw:\nThis is the imposthume of much wealth and peace,\nThat inward breaks, and shows no cause without\nWhy the man dies. I humbly thank you, sir.\n\nCaptain:\nGod be wi' you, sir.\n\nROSENCRANTZ:\nWilt please you go, my lord?\n\nHAMLET:\nI'll be with you straight go a little before.\nHow all occasions do inform against me,\nAnd spur my dull revenge! What is a man,\nIf his chief good and market of his time\nBe but to sleep and feed? a beast, no more.\nSure, he that made us with such large discourse,\nLooking before and after, gave us not\nThat capability and god-like reason\nTo fust in us unused. Now, whether it be\nBestial oblivion, or some craven scruple\nOf thinking too precisely on the event,\nA thought which, quarter'd, hath but one part wisdom\nAnd ever three parts coward, I do not know\nWhy yet I live to say 'This thing's to do;'\nSith I have cause and will and strength and means\nTo do't. Examples gross as earth exhort me:\nWitness this army of such mass and charge\nLed by a delicate and tender prince,\nWhose spirit with divine ambition puff'd\nMakes mouths at the invisible event,\nExposing what is mortal and unsure\nTo all that fortune, death and danger dare,\nEven for an egg-shell. Rightly to be great\nIs not to stir without great argument,\nBut greatly to find quarrel in a straw\nWhen honour's at the stake. How stand I then,\nThat have a father kill'd, a mother stain'd,\nExcitements of my reason and my blood,\nAnd let all sleep? while, to my shame, I see\nThe imminent death of twenty thousand men,\nThat, for a fantasy and trick of fame,\nGo to their graves like beds, fight for a plot\nWhereon the numbers cannot try the cause,\nWhich is not tomb enough and continent\nTo hide the slain? O, from this time forth,\nMy thoughts be bloody, or be nothing worth!\n\nQUEEN GERTRUDE:\nI will not speak with her.\n\nGentleman:\nShe is importunate, indeed distract:\nHer mood will needs be pitied.\n\nQUEEN GERTRUDE:\nWhat would she have?\n\nGentleman:\nShe speaks much of her father; says she hears\nThere's tricks i' the world; and hems, and beats her heart;\nSpurns enviously at straws; speaks things in doubt,\nThat carry but half sense: her speech is nothing,\nYet the unshaped use of it doth move\nThe hearers to collection; they aim at it,\nAnd botch the words up fit to their own thoughts;\nWhich, as her winks, and nods, and gestures\nyield them,\nIndeed would make one think there might be thought,\nThough nothing sure, yet much unhappily.\n\nHORATIO:\n'Twere good she were spoken with; for she may strew\nDangerous conjectures in ill-breeding minds.\n\nQUEEN GERTRUDE:\nLet her come in.\nTo my sick soul, as sin's true nature is,\nEach toy seems prologue to some great amiss:\nSo full of artless jealousy is guilt,\nIt spills itself in fearing to be spilt.\n\nOPHELIA:\nWhere is the beauteous majesty of Denmark?\n\nQUEEN GERTRUDE:\nHow now, Ophelia!\n\nOPHELIA:\n\nQUEEN GERTRUDE:\nAlas, sweet lady, what imports this song?\n\nOPHELIA:\nSay you? nay, pray you, mark.\nHe is dead and gone, lady,\nHe is dead and gone;\nAt his head a grass-green turf,\nAt his heels a stone.\n\nQUEEN GERTRUDE:\nNay, but, Ophelia,--\n\nOPHELIA:\nPray you, mark.\nWhite his shroud as the mountain snow,--\n\nQUEEN GERTRUDE:\nAlas, look here, my lord.\n\nOPHELIA:\n\nKING CLAUDIUS:\nHow do you, pretty lady?\n\nOPHELIA:\nWell, God 'ild you! They say the owl was a baker's\ndaughter. Lord, we know what we are, but know not\nwhat we may be. God be at your table!\n\nKING CLAUDIUS:\nConceit upon her father.\n\nOPHELIA:\nPray you, let's have no words of this; but when they\nask you what it means, say you this:\nTo-morrow is Saint Valentine's day,\nAll in the morning betime,\nAnd I a maid at your window,\nTo be your Valentine.\nThen up he rose, and donn'd his clothes,\nAnd dupp'd the chamber-door;\nLet in the maid, that out a maid\nNever departed more.\n\nKING CLAUDIUS:\nPretty Ophelia!\n\nOPHELIA:\nIndeed, la, without an oath, I'll make an end on't:\nBy Gis and by Saint Charity,\nAlack, and fie for shame!\nYoung men will do't, if they come to't;\nBy cock, they are to blame.\nQuoth she, before you tumbled me,\nYou promised me to wed.\nSo would I ha' done, by yonder sun,\nAn thou hadst not come to my bed.\n\nKING CLAUDIUS:\nHow long hath she been thus?\n\nOPHELIA:\nI hope all will be well. We must be patient: but I\ncannot choose but weep, to think they should lay him\ni' the cold ground. My brother shall know of it:\nand so I thank you for your good counsel. Come, my\ncoach! Good night, ladies; good night, sweet ladies;\ngood night, good night.\n\nKING CLAUDIUS:\nFollow her close; give her good watch,\nI pray you.\nO, this is the poison of deep grief; it springs\nAll from her father's death. O Gertrude, Gertrude,\nWhen sorrows come, they come not single spies\nBut in battalions. First, her father slain:\nNext, your son gone; and he most violent author\nOf his own just remove: the people muddied,\nThick and unwholesome in their thoughts and whispers,\nFor good Polonius' death; and we have done but greenly,\nIn hugger-mugger to inter him: poor Ophelia\nDivided from herself and her fair judgment,\nWithout the which we are pictures, or mere beasts:\nLast, and as much containing as all these,\nHer brother is in secret come from France;\nFeeds on his wonder, keeps himself in clouds,\nAnd wants not buzzers to infect his ear\nWith pestilent speeches of his father's death;\nWherein necessity, of matter beggar'd,\nWill nothing stick our person to arraign\nIn ear and ear. O my dear Gertrude, this,\nLike to a murdering-piece, in many places\nGives me superfluous death.\n\nQUEEN GERTRUDE:\nAlack, what noise is this?\n\nKING CLAUDIUS:\nWhere are my Switzers? Let them guard the door.\nWhat is the matter?\n\nGentleman:\nSave yourself, my lord:\nThe ocean, overpeering of his list,\nEats not the flats with more impetuous haste\nThan young Laertes, in a riotous head,\nO'erbears your officers. The rabble call him lord;\nAnd, as the world were now but to begin,\nAntiquity forgot, custom not known,\nThe ratifiers and props of every word,\nThey cry 'Choose we: Laertes shall be king:'\nCaps, hands, and tongues, applaud it to the clouds:\n'Laertes shall be king, Laertes king!'\n\nQUEEN GERTRUDE:\nHow cheerfully on the false trail they cry!\nO, this is counter, you false Danish dogs!\n\nKING CLAUDIUS:\nThe doors are broke.\n\nLAERTES:\nWhere is this king? Sirs, stand you all without.\n\nDanes:\nNo, let's come in.\n\nLAERTES:\nI pray you, give me leave.\n\nDanes:\nWe will, we will.\n\nLAERTES:\nI thank you: keep the door. O thou vile king,\nGive me my father!\n\nQUEEN GERTRUDE:\nCalmly, good Laertes.\n\nLAERTES:\nThat drop of blood that's calm proclaims me bastard,\nCries cuckold to my father, brands the harlot\nEven here, between the chaste unsmirched brow\nOf my true mother.\n\nKING CLAUDIUS:\nWhat is the cause, Laertes,\nThat thy rebellion looks so giant-like?\nLet him go, Gertrude; do not fear our person:\nThere's such divinity doth hedge a king,\nThat treason can but peep to what it would,\nActs little of his will. Tell me, Laertes,\nWhy thou art thus incensed. Let him go, Gertrude.\nSpeak, man.\n\nLAERTES:\nWhere is my father?\n\nKING CLAUDIUS:\nDead.\n\nQUEEN GERTRUDE:\nBut not by him.\n\nKING CLAUDIUS:\nLet him demand his fill.\n\nLAERTES:\nHow came he dead? I'll not be juggled with:\nTo hell, allegiance! vows, to the blackest devil!\nConscience and grace, to the profoundest pit!\nI dare damnation. To this point I stand,\nThat both the worlds I give to negligence,\nLet come what comes; only I'll be revenged\nMost thoroughly for my father.\n\nKING CLAUDIUS:\nWho shall stay you?\n\nLAERTES:\nMy will, not all the world:\nAnd for my means, I'll husband them so well,\nThey shall go far with little.\n\nKING CLAUDIUS:\nGood Laertes,\nIf you desire to know the certainty\nOf your dear father's death, is't writ in your revenge,\nThat, swoopstake, you will draw both friend and foe,\nWinner and loser?\n\nLAERTES:\nNone but his enemies.\n\nKING CLAUDIUS:\nWill you know them then?\n\nLAERTES:\nTo his good friends thus wide I'll ope my arms;\nAnd like the kind life-rendering pelican,\nRepast them with my blood.\n\nKING CLAUDIUS:\nWhy, now you speak\nLike a good child and a true gentleman.\nThat I am guiltless of your father's death,\nAnd am most sensible in grief for it,\nIt shall as level to your judgment pierce\nAs day does to your eye.\n\nDanes:\n\nLAERTES:\nHow now! what noise is that?\nO heat, dry up my brains! tears seven times salt,\nBurn out the sense and virtue of mine eye!\nBy heaven, thy madness shall be paid by weight,\nTill our scale turn the beam. O rose of May!\nDear maid, kind sister, sweet Ophelia!\nO heavens! is't possible, a young maid's wits\nShould be as moral as an old man's life?\nNature is fine in love, and where 'tis fine,\nIt sends some precious instance of itself\nAfter the thing it loves.\n\nOPHELIA:\n\nLAERTES:\nHadst thou thy wits, and didst persuade revenge,\nIt could not move thus.\n\nOPHELIA:\n\nLAERTES:\nThis nothing's more than matter.\n\nOPHELIA:\nThere's rosemary, that's for remembrance; pray,\nlove, remember: and there is pansies. that's for thoughts.\n\nLAERTES:\nA document in madness, thoughts and remembrance fitted.\n\nOPHELIA:\nThere's fennel for you, and columbines: there's rue\nfor you; and here's some for me: we may call it\nherb-grace o' Sundays: O you must wear your rue with\na difference. There's a daisy: I would give you\nsome violets, but they withered all when my father\ndied: they say he made a good end,--\nFor bonny sweet Robin is all my joy.\n\nLAERTES:\nThought and affliction, passion, hell itself,\nShe turns to favour and to prettiness.\n\nOPHELIA:\n\nLAERTES:\nDo you see this, O God?\n\nKING CLAUDIUS:\nLaertes, I must commune with your grief,\nOr you deny me right. Go but apart,\nMake choice of whom your wisest friends you will.\nAnd they shall hear and judge 'twixt you and me:\nIf by direct or by collateral hand\nThey find us touch'd, we will our kingdom give,\nOur crown, our life, and all that we can ours,\nTo you in satisfaction; but if not,\nBe you content to lend your patience to us,\nAnd we shall jointly labour with your soul\nTo give it due content.\n\nLAERTES:\nLet this be so;\nHis means of death, his obscure funeral--\nNo trophy, sword, nor hatchment o'er his bones,\nNo noble rite nor formal ostentation--\nCry to be heard, as 'twere from heaven to earth,\nThat I must call't in question.\n\nKING CLAUDIUS:\nSo you shall;\nAnd where the offence is let the great axe fall.\nI pray you, go with me.\n\nHORATIO:\nWhat are they that would speak with me?\n\nServant:\nSailors, sir: they say they have letters for you.\n\nHORATIO:\nLet them come in.\nI do not know from what part of the world\nI should be greeted, if not from Lord Hamlet.\n\nFirst Sailor:\nGod bless you, sir.\n\nHORATIO:\nLet him bless thee too.\n\nFirst Sailor:\nHe shall, sir, an't please him. There's a letter for\nyou, sir; it comes from the ambassador that was\nbound for England; if your name be Horatio, as I am\nlet to know it is.\n\nHORATIO:\n\nKING CLAUDIUS:\nNow must your conscience my acquaintance seal,\nAnd you must put me in your heart for friend,\nSith you have heard, and with a knowing ear,\nThat he which hath your noble father slain\nPursued my life.\n\nLAERTES:\nIt well appears: but tell me\nWhy you proceeded not against these feats,\nSo crimeful and so capital in nature,\nAs by your safety, wisdom, all things else,\nYou mainly were stirr'd up.\n\nKING CLAUDIUS:\nO, for two special reasons;\nWhich may to you, perhaps, seem much unsinew'd,\nBut yet to me they are strong. The queen his mother\nLives almost by his looks; and for myself--\nMy virtue or my plague, be it either which--\nShe's so conjunctive to my life and soul,\nThat, as the star moves not but in his sphere,\nI could not but by her. The other motive,\nWhy to a public count I might not go,\nIs the great love the general gender bear him;\nWho, dipping all his faults in their affection,\nWould, like the spring that turneth wood to stone,\nConvert his gyves to graces; so that my arrows,\nToo slightly timber'd for so loud a wind,\nWould have reverted to my bow again,\nAnd not where I had aim'd them.\n\nLAERTES:\nAnd so have I a noble father lost;\nA sister driven into desperate terms,\nWhose worth, if praises may go back again,\nStood challenger on mount of all the age\nFor her perfections: but my revenge will come.\n\nKING CLAUDIUS:\nBreak not your sleeps for that: you must not think\nThat we are made of stuff so flat and dull\nThat we can let our beard be shook with danger\nAnd think it pastime. You shortly shall hear more:\nI loved your father, and we love ourself;\nAnd that, I hope, will teach you to imagine--\nHow now! what news?\n\nMessenger:\nLetters, my lord, from Hamlet:\nThis to your majesty; this to the queen.\n\nKING CLAUDIUS:\nFrom Hamlet! who brought them?\n\nMessenger:\nSailors, my lord, they say; I saw them not:\nThey were given me by Claudio; he received them\nOf him that brought them.\n\nKING CLAUDIUS:\nLaertes, you shall hear them. Leave us.\n'High and mighty, You shall know I am set naked on\nyour kingdom. To-morrow shall I beg leave to see\nyour kingly eyes: when I shall, first asking your\npardon thereunto, recount the occasion of my sudden\nand more strange return.                  'HAMLET.'\nWhat should this mean? Are all the rest come back?\nOr is it some abuse, and no such thing?\n\nLAERTES:\nKnow you the hand?\n\nKING CLAUDIUS:\n'Tis Hamlets character. 'Naked!\nAnd in a postscript here, he says 'alone.'\nCan you advise me?\n\nLAERTES:\nI'm lost in it, my lord. But let him come;\nIt warms the very sickness in my heart,\nThat I shall live and tell him to his teeth,\n'Thus didest thou.'\n\nKING CLAUDIUS:\nIf it be so, Laertes--\nAs how should it be so? how otherwise?--\nWill you be ruled by me?\n\nLAERTES:\nAy, my lord;\nSo you will not o'errule me to a peace.\n\nKING CLAUDIUS:\nTo thine own peace. If he be now return'd,\nAs checking at his voyage, and that he means\nNo more to undertake it, I will work him\nTo an exploit, now ripe in my device,\nUnder the which he shall not choose but fall:\nAnd for his death no wind of blame shall breathe,\nBut even his mother shall uncharge the practise\nAnd call it accident.\n\nLAERTES:\nMy lord, I will be ruled;\nThe rather, if you could devise it so\nThat I might be the organ.\n\nKING CLAUDIUS:\nIt falls right.\nYou have been talk'd of since your travel much,\nAnd that in Hamlet's hearing, for a quality\nWherein, they say, you shine: your sum of parts\nDid not together pluck such envy from him\nAs did that one, and that, in my regard,\nOf the unworthiest siege.\n\nLAERTES:\nWhat part is that, my lord?\n\nKING CLAUDIUS:\nA very riband in the cap of youth,\nYet needful too; for youth no less becomes\nThe light and careless livery that it wears\nThan settled age his sables and his weeds,\nImporting health and graveness. Two months since,\nHere was a gentleman of Normandy:--\nI've seen myself, and served against, the French,\nAnd they can well on horseback: but this gallant\nHad witchcraft in't; he grew unto his seat;\nAnd to such wondrous doing brought his horse,\nAs he had been incorpsed and demi-natured\nWith the brave beast: so far he topp'd my thought,\nThat I, in forgery of shapes and tricks,\nCome short of what he did.\n\nLAERTES:\nA Norman was't?\n\nKING CLAUDIUS:\nA Norman.\n\nLAERTES:\nUpon my life, Lamond.\n\nKING CLAUDIUS:\nThe very same.\n\nLAERTES:\nI know him well: he is the brooch indeed\nAnd gem of all the nation.\n\nKING CLAUDIUS:\nHe made confession of you,\nAnd gave you such a masterly report\nFor art and exercise in your defence\nAnd for your rapier most especially,\nThat he cried out, 'twould be a sight indeed,\nIf one could match you: the scrimers of their nation,\nHe swore, had had neither motion, guard, nor eye,\nIf you opposed them. Sir, this report of his\nDid Hamlet so envenom with his envy\nThat he could nothing do but wish and beg\nYour sudden coming o'er, to play with him.\nNow, out of this,--\n\nLAERTES:\nWhat out of this, my lord?\n\nKING CLAUDIUS:\nLaertes, was your father dear to you?\nOr are you like the painting of a sorrow,\nA face without a heart?\n\nLAERTES:\nWhy ask you this?\n\nKING CLAUDIUS:\nNot that I think you did not love your father;\nBut that I know love is begun by time;\nAnd that I see, in passages of proof,\nTime qualifies the spark and fire of it.\nThere lives within the very flame of love\nA kind of wick or snuff that will abate it;\nAnd nothing is at a like goodness still;\nFor goodness, growing to a plurisy,\nDies in his own too much: that we would do\nWe should do when we would; for this 'would' changes\nAnd hath abatements and delays as many\nAs there are tongues, are hands, are accidents;\nAnd then this 'should' is like a spendthrift sigh,\nThat hurts by easing. But, to the quick o' the ulcer:--\nHamlet comes back: what would you undertake,\nTo show yourself your father's son in deed\nMore than in words?\n\nLAERTES:\nTo cut his throat i' the church.\n\nKING CLAUDIUS:\nNo place, indeed, should murder sanctuarize;\nRevenge should have no bounds. But, good Laertes,\nWill you do this, keep close within your chamber.\nHamlet return'd shall know you are come home:\nWe'll put on those shall praise your excellence\nAnd set a double varnish on the fame\nThe Frenchman gave you, bring you in fine together\nAnd wager on your heads: he, being remiss,\nMost generous and free from all contriving,\nWill not peruse the foils; so that, with ease,\nOr with a little shuffling, you may choose\nA sword unbated, and in a pass of practise\nRequite him for your father.\n\nLAERTES:\nI will do't:\nAnd, for that purpose, I'll anoint my sword.\nI bought an unction of a mountebank,\nSo mortal that, but dip a knife in it,\nWhere it draws blood no cataplasm so rare,\nCollected from all simples that have virtue\nUnder the moon, can save the thing from death\nThat is but scratch'd withal: I'll touch my point\nWith this contagion, that, if I gall him slightly,\nIt may be death.\n\nKING CLAUDIUS:\nLet's further think of this;\nWeigh what convenience both of time and means\nMay fit us to our shape: if this should fail,\nAnd that our drift look through our bad performance,\n'Twere better not assay'd: therefore this project\nShould have a back or second, that might hold,\nIf this should blast in proof. Soft! let me see:\nWe'll make a solemn wager on your cunnings: I ha't.\nWhen in your motion you are hot and dry--\nAs make your bouts more violent to that end--\nAnd that he calls for drink, I'll have prepared him\nA chalice for the nonce, whereon but sipping,\nIf he by chance escape your venom'd stuck,\nOur purpose may hold there.\nHow now, sweet queen!\n\nQUEEN GERTRUDE:\nOne woe doth tread upon another's heel,\nSo fast they follow; your sister's drown'd, Laertes.\n\nLAERTES:\nDrown'd! O, where?\n\nQUEEN GERTRUDE:\nThere is a willow grows aslant a brook,\nThat shows his hoar leaves in the glassy stream;\nThere with fantastic garlands did she come\nOf crow-flowers, nettles, daisies, and long purples\nThat liberal shepherds give a grosser name,\nBut our cold maids do dead men's fingers call them:\nThere, on the pendent boughs her coronet weeds\nClambering to hang, an envious sliver broke;\nWhen down her weedy trophies and herself\nFell in the weeping brook. Her clothes spread wide;\nAnd, mermaid-like, awhile they bore her up:\nWhich time she chanted snatches of old tunes;\nAs one incapable of her own distress,\nOr like a creature native and indued\nUnto that element: but long it could not be\nTill that her garments, heavy with their drink,\nPull'd the poor wretch from her melodious lay\nTo muddy death.\n\nLAERTES:\nAlas, then, she is drown'd?\n\nQUEEN GERTRUDE:\nDrown'd, drown'd.\n\nLAERTES:\nToo much of water hast thou, poor Ophelia,\nAnd therefore I forbid my tears: but yet\nIt is our trick; nature her custom holds,\nLet shame say what it will: when these are gone,\nThe woman will be out. Adieu, my lord:\nI have a speech of fire, that fain would blaze,\nBut that this folly douts it.\n\nKING CLAUDIUS:\nLet's follow, Gertrude:\nHow much I had to do to calm his rage!\nNow fear I this will give it start again;\nTherefore let's follow.\n\nFirst Clown:\nIs she to be buried in Christian burial that\nwilfully seeks her own salvation?\n\nSecond Clown:\nI tell thee she is: and therefore make her grave\nstraight: the crowner hath sat on her, and finds it\nChristian burial.\n\nFirst Clown:\nHow can that be, unless she drowned herself in her\nown defence?\n\nSecond Clown:\nWhy, 'tis found so.\n\nFirst Clown:\nIt must be 'se offendendo;' it cannot be else. For\nhere lies the point:  if I drown myself wittingly,\nit argues an act: and an act hath three branches: it\nis, to act, to do, to perform: argal, she drowned\nherself wittingly.\n\nSecond Clown:\nNay, but hear you, goodman delver,--\n\nFirst Clown:\nGive me leave. Here lies the water; good: here\nstands the man; good; if the man go to this water,\nand drown himself, it is, will he, nill he, he\ngoes,--mark you that; but if the water come to him\nand drown him, he drowns not himself: argal, he\nthat is not guilty of his own death shortens not his own life.\n\nSecond Clown:\nBut is this law?\n\nFirst Clown:\nAy, marry, is't; crowner's quest law.\n\nSecond Clown:\nWill you ha' the truth on't? If this had not been\na gentlewoman, she should have been buried out o'\nChristian burial.\n\nFirst Clown:\nWhy, there thou say'st: and the more pity that\ngreat folk should have countenance in this world to\ndrown or hang themselves, more than their even\nChristian. Come, my spade. There is no ancient\ngentleman but gardeners, ditchers, and grave-makers:\nthey hold up Adam's profession.\n\nSecond Clown:\nWas he a gentleman?\n\nFirst Clown:\nHe was the first that ever bore arms.\n\nSecond Clown:\nWhy, he had none.\n\nFirst Clown:\nWhat, art a heathen? How dost thou understand the\nScripture? The Scripture says 'Adam digged:'\ncould he dig without arms? I'll put another\nquestion to thee: if thou answerest me not to the\npurpose, confess thyself--\n\nSecond Clown:\nGo to.\n\nFirst Clown:\nWhat is he that builds stronger than either the\nmason, the shipwright, or the carpenter?\n\nSecond Clown:\nThe gallows-maker; for that frame outlives a\nthousand tenants.\n\nFirst Clown:\nI like thy wit well, in good faith: the gallows\ndoes well; but how does it well? it does well to\nthose that do in: now thou dost ill to say the\ngallows is built stronger than the church: argal,\nthe gallows may do well to thee. To't again, come.\n\nSecond Clown:\n'Who builds stronger than a mason, a shipwright, or\na carpenter?'\n\nFirst Clown:\nAy, tell me that, and unyoke.\n\nSecond Clown:\nMarry, now I can tell.\n\nFirst Clown:\nTo't.\n\nSecond Clown:\nMass, I cannot tell.\n\nFirst Clown:\nCudgel thy brains no more about it, for your dull\nass will not mend his pace with beating; and, when\nyou are asked this question next, say 'a\ngrave-maker: 'the houses that he makes last till\ndoomsday. Go, get thee to Yaughan: fetch me a\nstoup of liquor.\nIn youth, when I did love, did love,\nMethought it was very sweet,\nTo contract, O, the time, for, ah, my behove,\nO, methought, there was nothing meet.\n\nHAMLET:\nHas this fellow no feeling of his business, that he\nsings at grave-making?\n\nHORATIO:\nCustom hath made it in him a property of easiness.\n\nHAMLET:\n'Tis e'en so: the hand of little employment hath\nthe daintier sense.\n\nFirst Clown:\n\nHAMLET:\nThat skull had a tongue in it, and could sing once:\nhow the knave jowls it to the ground, as if it were\nCain's jaw-bone, that did the first murder! It\nmight be the pate of a politician, which this ass\nnow o'er-reaches; one that would circumvent God,\nmight it not?\n\nHORATIO:\nIt might, my lord.\n\nHAMLET:\nOr of a courtier; which could say 'Good morrow,\nsweet lord! How dost thou, good lord?' This might\nbe my lord such-a-one, that praised my lord\nsuch-a-one's horse, when he meant to beg it; might it not?\n\nHORATIO:\nAy, my lord.\n\nHAMLET:\nWhy, e'en so: and now my Lady Worm's; chapless, and\nknocked about the mazzard with a sexton's spade:\nhere's fine revolution, an we had the trick to\nsee't. Did these bones cost no more the breeding,\nbut to play at loggats with 'em? mine ache to think on't.\n\nFirst Clown:\nA pick-axe, and a spade, a spade,\nFor and a shrouding sheet:\nO, a pit of clay for to be made\nFor such a guest is meet.\n\nHAMLET:\nThere's another: why may not that be the skull of a\nlawyer? Where be his quiddities now, his quillets,\nhis cases, his tenures, and his tricks? why does he\nsuffer this rude knave now to knock him about the\nsconce with a dirty shovel, and will not tell him of\nhis action of battery? Hum! This fellow might be\nin's time a great buyer of land, with his statutes,\nhis recognizances, his fines, his double vouchers,\nhis recoveries: is this the fine of his fines, and\nthe recovery of his recoveries, to have his fine\npate full of fine dirt? will his vouchers vouch him\nno more of his purchases, and double ones too, than\nthe length and breadth of a pair of indentures? The\nvery conveyances of his lands will hardly lie in\nthis box; and must the inheritor himself have no more, ha?\n\nHORATIO:\nNot a jot more, my lord.\n\nHAMLET:\nIs not parchment made of sheepskins?\n\nHORATIO:\nAy, my lord, and of calf-skins too.\n\nHAMLET:\nThey are sheep and calves which seek out assurance\nin that. I will speak to this fellow. Whose\ngrave's this, sirrah?\n\nFirst Clown:\nMine, sir.\nO, a pit of clay for to be made\nFor such a guest is meet.\n\nHAMLET:\nI think it be thine, indeed; for thou liest in't.\n\nFirst Clown:\nYou lie out on't, sir, and therefore it is not\nyours: for my part, I do not lie in't, and yet it is mine.\n\nHAMLET:\n'Thou dost lie in't, to be in't and say it is thine:\n'tis for the dead, not for the quick; therefore thou liest.\n\nFirst Clown:\n'Tis a quick lie, sir; 'twill away gain, from me to\nyou.\n\nHAMLET:\nWhat man dost thou dig it for?\n\nFirst Clown:\nFor no man, sir.\n\nHAMLET:\nWhat woman, then?\n\nFirst Clown:\nFor none, neither.\n\nHAMLET:\nWho is to be buried in't?\n\nFirst Clown:\nOne that was a woman, sir; but, rest her soul, she's dead.\n\nHAMLET:\nHow absolute the knave is! we must speak by the\ncard, or equivocation will undo us. By the Lord,\nHoratio, these three years I have taken a note of\nit; the age is grown so picked that the toe of the\npeasant comes so near the heel of the courtier, he\ngaffs his kibe. How long hast thou been a\ngrave-maker?\n\nFirst Clown:\nOf all the days i' the year, I came to't that day\nthat our last king Hamlet overcame Fortinbras.\n\nHAMLET:\nHow long is that since?\n\nFirst Clown:\nCannot you tell that? every fool can tell that: it\nwas the very day that young Hamlet was born; he that\nis mad, and sent into England.\n\nHAMLET:\nAy, marry, why was he sent into England?\n\nFirst Clown:\nWhy, because he was mad: he shall recover his wits\nthere; or, if he do not, it's no great matter there.\n\nHAMLET:\nWhy?\n\nFirst Clown:\n'Twill, a not be seen in him there; there the men\nare as mad as he.\n\nHAMLET:\nHow came he mad?\n\nFirst Clown:\nVery strangely, they say.\n\nHAMLET:\nHow strangely?\n\nFirst Clown:\nFaith, e'en with losing his wits.\n\nHAMLET:\nUpon what ground?\n\nFirst Clown:\nWhy, here in Denmark: I have been sexton here, man\nand boy, thirty years.\n\nHAMLET:\nHow long will a man lie i' the earth ere he rot?\n\nFirst Clown:\nI' faith, if he be not rotten before he die--as we\nhave many pocky corses now-a-days, that will scarce\nhold the laying in--he will last you some eight year\nor nine year: a tanner will last you nine year.\n\nHAMLET:\nWhy he more than another?\n\nFirst Clown:\nWhy, sir, his hide is so tanned with his trade, that\nhe will keep out water a great while; and your water\nis a sore decayer of your whoreson dead body.\nHere's a skull now; this skull has lain in the earth\nthree and twenty years.\n\nHAMLET:\nWhose was it?\n\nFirst Clown:\nA whoreson mad fellow's it was: whose do you think it was?\n\nHAMLET:\nNay, I know not.\n\nFirst Clown:\nA pestilence on him for a mad rogue! a' poured a\nflagon of Rhenish on my head once. This same skull,\nsir, was Yorick's skull, the king's jester.\n\nHAMLET:\nThis?\n\nFirst Clown:\nE'en that.\n\nHAMLET:\nLet me see.\nAlas, poor Yorick! I knew him, Horatio: a fellow\nof infinite jest, of most excellent fancy: he hath\nborne me on his back a thousand times; and now, how\nabhorred in my imagination it is! my gorge rims at\nit. Here hung those lips that I have kissed I know\nnot how oft. Where be your gibes now? your\ngambols? your songs? your flashes of merriment,\nthat were wont to set the table on a roar? Not one\nnow, to mock your own grinning? quite chap-fallen?\nNow get you to my lady's chamber, and tell her, let\nher paint an inch thick, to this favour she must\ncome; make her laugh at that. Prithee, Horatio, tell\nme one thing.\n\nHORATIO:\nWhat's that, my lord?\n\nHAMLET:\nDost thou think Alexander looked o' this fashion i'\nthe earth?\n\nHORATIO:\nE'en so.\n\nHAMLET:\nAnd smelt so? pah!\n\nHORATIO:\nE'en so, my lord.\n\nHAMLET:\nTo what base uses we may return, Horatio! Why may\nnot imagination trace the noble dust of Alexander,\ntill he find it stopping a bung-hole?\n\nHORATIO:\n'Twere to consider too curiously, to consider so.\n\nHAMLET:\nNo, faith, not a jot; but to follow him thither with\nmodesty enough, and likelihood to lead it: as\nthus: Alexander died, Alexander was buried,\nAlexander returneth into dust; the dust is earth; of\nearth we make loam; and why of that loam, whereto he\nwas converted, might they not stop a beer-barrel?\nImperious Caesar, dead and turn'd to clay,\nMight stop a hole to keep the wind away:\nO, that that earth, which kept the world in awe,\nShould patch a wall to expel the winter flaw!\nBut soft! but soft! aside: here comes the king.\nThe queen, the courtiers: who is this they follow?\nAnd with such maimed rites? This doth betoken\nThe corse they follow did with desperate hand\nFordo its own life: 'twas of some estate.\nCouch we awhile, and mark.\n\nLAERTES:\nWhat ceremony else?\n\nHAMLET:\nThat is Laertes,\nA very noble youth: mark.\n\nLAERTES:\nWhat ceremony else?\n\nFirst Priest:\nHer obsequies have been as far enlarged\nAs we have warrantise: her death was doubtful;\nAnd, but that great command o'ersways the order,\nShe should in ground unsanctified have lodged\nTill the last trumpet: for charitable prayers,\nShards, flints and pebbles should be thrown on her;\nYet here she is allow'd her virgin crants,\nHer maiden strewments and the bringing home\nOf bell and burial.\n\nLAERTES:\nMust there no more be done?\n\nFirst Priest:\nNo more be done:\nWe should profane the service of the dead\nTo sing a requiem and such rest to her\nAs to peace-parted souls.\n\nLAERTES:\nLay her i' the earth:\nAnd from her fair and unpolluted flesh\nMay violets spring! I tell thee, churlish priest,\nA ministering angel shall my sister be,\nWhen thou liest howling.\n\nHAMLET:\nWhat, the fair Ophelia!\n\nQUEEN GERTRUDE:\nSweets to the sweet: farewell!\nI hoped thou shouldst have been my Hamlet's wife;\nI thought thy bride-bed to have deck'd, sweet maid,\nAnd not have strew'd thy grave.\n\nLAERTES:\nO, treble woe\nFall ten times treble on that cursed head,\nWhose wicked deed thy most ingenious sense\nDeprived thee of! Hold off the earth awhile,\nTill I have caught her once more in mine arms:\nNow pile your dust upon the quick and dead,\nTill of this flat a mountain you have made,\nTo o'ertop old Pelion, or the skyish head\nOf blue Olympus.\n\nHAMLET:\n\nLAERTES:\nThe devil take thy soul!\n\nHAMLET:\nThou pray'st not well.\nI prithee, take thy fingers from my throat;\nFor, though I am not splenitive and rash,\nYet have I something in me dangerous,\nWhich let thy wiseness fear: hold off thy hand.\n\nKING CLAUDIUS:\nPluck them asunder.\n\nQUEEN GERTRUDE:\nHamlet, Hamlet!\n\nAll:\nGentlemen,--\n\nHORATIO:\nGood my lord, be quiet.\n\nHAMLET:\nWhy I will fight with him upon this theme\nUntil my eyelids will no longer wag.\n\nQUEEN GERTRUDE:\nO my son, what theme?\n\nHAMLET:\nI loved Ophelia: forty thousand brothers\nCould not, with all their quantity of love,\nMake up my sum. What wilt thou do for her?\n\nKING CLAUDIUS:\nO, he is mad, Laertes.\n\nQUEEN GERTRUDE:\nFor love of God, forbear him.\n\nHAMLET:\n'Swounds, show me what thou'lt do:\nWoo't weep? woo't fight? woo't fast? woo't tear thyself?\nWoo't drink up eisel? eat a crocodile?\nI'll do't. Dost thou come here to whine?\nTo outface me with leaping in her grave?\nBe buried quick with her, and so will I:\nAnd, if thou prate of mountains, let them throw\nMillions of acres on us, till our ground,\nSingeing his pate against the burning zone,\nMake Ossa like a wart! Nay, an thou'lt mouth,\nI'll rant as well as thou.\n\nQUEEN GERTRUDE:\nThis is mere madness:\nAnd thus awhile the fit will work on him;\nAnon, as patient as the female dove,\nWhen that her golden couplets are disclosed,\nHis silence will sit drooping.\n\nHAMLET:\nHear you, sir;\nWhat is the reason that you use me thus?\nI loved you ever: but it is no matter;\nLet Hercules himself do what he may,\nThe cat will mew and dog will have his day.\n\nKING CLAUDIUS:\nI pray you, good Horatio, wait upon him.\nStrengthen your patience in our last night's speech;\nWe'll put the matter to the present push.\nGood Gertrude, set some watch over your son.\nThis grave shall have a living monument:\nAn hour of quiet shortly shall we see;\nTill then, in patience our proceeding be.\n\nHAMLET:\nSo much for this, sir: now shall you see the other;\nYou do remember all the circumstance?\n\nHORATIO:\nRemember it, my lord?\n\nHAMLET:\nSir, in my heart there was a kind of fighting,\nThat would not let me sleep: methought I lay\nWorse than the mutines in the bilboes. Rashly,\nAnd praised be rashness for it, let us know,\nOur indiscretion sometimes serves us well,\nWhen our deep plots do pall: and that should teach us\nThere's a divinity that shapes our ends,\nRough-hew them how we will,--\n\nHORATIO:\nThat is most certain.\n\nHAMLET:\nUp from my cabin,\nMy sea-gown scarf'd about me, in the dark\nGroped I to find out them; had my desire.\nFinger'd their packet, and in fine withdrew\nTo mine own room again; making so bold,\nMy fears forgetting manners, to unseal\nTheir grand commission; where I found, Horatio,--\nO royal knavery!--an exact command,\nLarded with many several sorts of reasons\nImporting Denmark's health and England's too,\nWith, ho! such bugs and goblins in my life,\nThat, on the supervise, no leisure bated,\nNo, not to stay the grinding of the axe,\nMy head should be struck off.\n\nHORATIO:\nIs't possible?\n\nHAMLET:\nHere's the commission: read it at more leisure.\nBut wilt thou hear me how I did proceed?\n\nHORATIO:\nI beseech you.\n\nHAMLET:\nBeing thus be-netted round with villanies,--\nEre I could make a prologue to my brains,\nThey had begun the play--I sat me down,\nDevised a new commission, wrote it fair:\nI once did hold it, as our statists do,\nA baseness to write fair and labour'd much\nHow to forget that learning, but, sir, now\nIt did me yeoman's service: wilt thou know\nThe effect of what I wrote?\n\nHORATIO:\nAy, good my lord.\n\nHAMLET:\nAn earnest conjuration from the king,\nAs England was his faithful tributary,\nAs love between them like the palm might flourish,\nAs peace should stiff her wheaten garland wear\nAnd stand a comma 'tween their amities,\nAnd many such-like 'As'es of great charge,\nThat, on the view and knowing of these contents,\nWithout debatement further, more or less,\nHe should the bearers put to sudden death,\nNot shriving-time allow'd.\n\nHORATIO:\nHow was this seal'd?\n\nHAMLET:\nWhy, even in that was heaven ordinant.\nI had my father's signet in my purse,\nWhich was the model of that Danish seal;\nFolded the writ up in form of the other,\nSubscribed it, gave't the impression, placed it safely,\nThe changeling never known. Now, the next day\nWas our sea-fight; and what to this was sequent\nThou know'st already.\n\nHORATIO:\nSo Guildenstern and Rosencrantz go to't.\n\nHAMLET:\nWhy, man, they did make love to this employment;\nThey are not near my conscience; their defeat\nDoes by their own insinuation grow:\n'Tis dangerous when the baser nature comes\nBetween the pass and fell incensed points\nOf mighty opposites.\n\nHORATIO:\nWhy, what a king is this!\n\nHAMLET:\nDoes it not, think'st thee, stand me now upon--\nHe that hath kill'd my king and whored my mother,\nPopp'd in between the election and my hopes,\nThrown out his angle for my proper life,\nAnd with such cozenage--is't not perfect conscience,\nTo quit him with this arm? and is't not to be damn'd,\nTo let this canker of our nature come\nIn further evil?\n\nHORATIO:\nIt must be shortly known to him from England\nWhat is the issue of the business there.\n\nHAMLET:\nIt will be short: the interim is mine;\nAnd a man's life's no more than to say 'One.'\nBut I am very sorry, good Horatio,\nThat to Laertes I forgot myself;\nFor, by the image of my cause, I see\nThe portraiture of his: I'll court his favours.\nBut, sure, the bravery of his grief did put me\nInto a towering passion.\n\nHORATIO:\nPeace! who comes here?\n\nOSRIC:\nYour lordship is right welcome back to Denmark.\n\nHAMLET:\nI humbly thank you, sir. Dost know this water-fly?\n\nHORATIO:\nNo, my good lord.\n\nHAMLET:\nThy state is the more gracious; for 'tis a vice to\nknow him. He hath much land, and fertile: let a\nbeast be lord of beasts, and his crib shall stand at\nthe king's mess: 'tis a chough; but, as I say,\nspacious in the possession of dirt.\n\nOSRIC:\nSweet lord, if your lordship were at leisure, I\nshould impart a thing to you from his majesty.\n\nHAMLET:\nI will receive it, sir, with all diligence of\nspirit. Put your bonnet to his right use; 'tis for the head.\n\nOSRIC:\nI thank your lordship, it is very hot.\n\nHAMLET:\nNo, believe me, 'tis very cold; the wind is\nnortherly.\n\nOSRIC:\nIt is indifferent cold, my lord, indeed.\n\nHAMLET:\nBut yet methinks it is very sultry and hot for my\ncomplexion.\n\nOSRIC:\nExceedingly, my lord; it is very sultry,--as\n'twere,--I cannot tell how. But, my lord, his\nmajesty bade me signify to you that he has laid a\ngreat wager on your head: sir, this is the matter,--\n\nHAMLET:\nI beseech you, remember--\n\nOSRIC:\nNay, good my lord; for mine ease, in good faith.\nSir, here is newly come to court Laertes; believe\nme, an absolute gentleman, full of most excellent\ndifferences, of very soft society and great showing:\nindeed, to speak feelingly of him, he is the card or\ncalendar of gentry, for you shall find in him the\ncontinent of what part a gentleman would see.\n\nHAMLET:\nSir, his definement suffers no perdition in you;\nthough, I know, to divide him inventorially would\ndizzy the arithmetic of memory, and yet but yaw\nneither, in respect of his quick sail. But, in the\nverity of extolment, I take him to be a soul of\ngreat article; and his infusion of such dearth and\nrareness, as, to make true diction of him, his\nsemblable is his mirror; and who else would trace\nhim, his umbrage, nothing more.\n\nOSRIC:\nYour lordship speaks most infallibly of him.\n\nHAMLET:\nThe concernancy, sir? why do we wrap the gentleman\nin our more rawer breath?\n\nOSRIC:\nSir?\n\nHORATIO:\nIs't not possible to understand in another tongue?\nYou will do't, sir, really.\n\nHAMLET:\nWhat imports the nomination of this gentleman?\n\nOSRIC:\nOf Laertes?\n\nHORATIO:\nHis purse is empty already; all's golden words are spent.\n\nHAMLET:\nOf him, sir.\n\nOSRIC:\nI know you are not ignorant--\n\nHAMLET:\nI would you did, sir; yet, in faith, if you did,\nit would not much approve me. Well, sir?\n\nOSRIC:\nYou are not ignorant of what excellence Laertes is--\n\nHAMLET:\nI dare not confess that, lest I should compare with\nhim in excellence; but, to know a man well, were to\nknow himself.\n\nOSRIC:\nI mean, sir, for his weapon; but in the imputation\nlaid on him by them, in his meed he's unfellowed.\n\nHAMLET:\nWhat's his weapon?\n\nOSRIC:\nRapier and dagger.\n\nHAMLET:\nThat's two of his weapons: but, well.\n\nOSRIC:\nThe king, sir, hath wagered with him six Barbary\nhorses: against the which he has imponed, as I take\nit, six French rapiers and poniards, with their\nassigns, as girdle, hangers, and so: three of the\ncarriages, in faith, are very dear to fancy, very\nresponsive to the hilts, most delicate carriages,\nand of very liberal conceit.\n\nHAMLET:\nWhat call you the carriages?\n\nHORATIO:\nI knew you must be edified by the margent ere you had done.\n\nOSRIC:\nThe carriages, sir, are the hangers.\n\nHAMLET:\nThe phrase would be more german to the matter, if we\ncould carry cannon by our sides: I would it might\nbe hangers till then. But, on: six Barbary horses\nagainst six French swords, their assigns, and three\nliberal-conceited carriages; that's the French bet\nagainst the Danish. Why is this 'imponed,' as you call it?\n\nOSRIC:\nThe king, sir, hath laid, that in a dozen passes\nbetween yourself and him, he shall not exceed you\nthree hits: he hath laid on twelve for nine; and it\nwould come to immediate trial, if your lordship\nwould vouchsafe the answer.\n\nHAMLET:\nHow if I answer 'no'?\n\nOSRIC:\nI mean, my lord, the opposition of your person in trial.\n\nHAMLET:\nSir, I will walk here in the hall: if it please his\nmajesty, 'tis the breathing time of day with me; let\nthe foils be brought, the gentleman willing, and the\nking hold his purpose, I will win for him an I can;\nif not, I will gain nothing but my shame and the odd hits.\n\nOSRIC:\nShall I re-deliver you e'en so?\n\nHAMLET:\nTo this effect, sir; after what flourish your nature will.\n\nOSRIC:\nI commend my duty to your lordship.\n\nHAMLET:\nYours, yours.\nHe does well to commend it himself; there are no\ntongues else for's turn.\n\nHORATIO:\nThis lapwing runs away with the shell on his head.\n\nHAMLET:\nHe did comply with his dug, before he sucked it.\nThus has he--and many more of the same bevy that I\nknow the dressy age dotes on--only got the tune of\nthe time and outward habit of encounter; a kind of\nyesty collection, which carries them through and\nthrough the most fond and winnowed opinions; and do\nbut blow them to their trial, the bubbles are out.\n\nLord:\nMy lord, his majesty commended him to you by young\nOsric, who brings back to him that you attend him in\nthe hall: he sends to know if your pleasure hold to\nplay with Laertes, or that you will take longer time.\n\nHAMLET:\nI am constant to my purpose; they follow the king's\npleasure: if his fitness speaks, mine is ready; now\nor whensoever, provided I be so able as now.\n\nLord:\nThe king and queen and all are coming down.\n\nHAMLET:\nIn happy time.\n\nLord:\nThe queen desires you to use some gentle\nentertainment to Laertes before you fall to play.\n\nHAMLET:\nShe well instructs me.\n\nHORATIO:\nYou will lose this wager, my lord.\n\nHAMLET:\nI do not think so: since he went into France, I\nhave been in continual practise: I shall win at the\nodds. But thou wouldst not think how ill all's here\nabout my heart: but it is no matter.\n\nHORATIO:\nNay, good my lord,--\n\nHAMLET:\nIt is but foolery; but it is such a kind of\ngain-giving, as would perhaps trouble a woman.\n\nHORATIO:\nIf your mind dislike any thing, obey it: I will\nforestall their repair hither, and say you are not\nfit.\n\nHAMLET:\nNot a whit, we defy augury: there's a special\nprovidence in the fall of a sparrow. If it be now,\n'tis not to come; if it be not to come, it will be\nnow; if it be not now, yet it will come: the\nreadiness is all: since no man has aught of what he\nleaves, what is't to leave betimes?\n\nKING CLAUDIUS:\nCome, Hamlet, come, and take this hand from me.\n\nHAMLET:\nGive me your pardon, sir: I've done you wrong;\nBut pardon't, as you are a gentleman.\nThis presence knows,\nAnd you must needs have heard, how I am punish'd\nWith sore distraction. What I have done,\nThat might your nature, honour and exception\nRoughly awake, I here proclaim was madness.\nWas't Hamlet wrong'd Laertes? Never Hamlet:\nIf Hamlet from himself be ta'en away,\nAnd when he's not himself does wrong Laertes,\nThen Hamlet does it not, Hamlet denies it.\nWho does it, then? His madness: if't be so,\nHamlet is of the faction that is wrong'd;\nHis madness is poor Hamlet's enemy.\nSir, in this audience,\nLet my disclaiming from a purposed evil\nFree me so far in your most generous thoughts,\nThat I have shot mine arrow o'er the house,\nAnd hurt my brother.\n\nLAERTES:\nI am satisfied in nature,\nWhose motive, in this case, should stir me most\nTo my revenge: but in my terms of honour\nI stand aloof; and will no reconcilement,\nTill by some elder masters, of known honour,\nI have a voice and precedent of peace,\nTo keep my name ungored. But till that time,\nI do receive your offer'd love like love,\nAnd will not wrong it.\n\nHAMLET:\nI embrace it freely;\nAnd will this brother's wager frankly play.\nGive us the foils. Come on.\n\nLAERTES:\nCome, one for me.\n\nHAMLET:\nI'll be your foil, Laertes: in mine ignorance\nYour skill shall, like a star i' the darkest night,\nStick fiery off indeed.\n\nLAERTES:\nYou mock me, sir.\n\nHAMLET:\nNo, by this hand.\n\nKING CLAUDIUS:\nGive them the foils, young Osric. Cousin Hamlet,\nYou know the wager?\n\nHAMLET:\nVery well, my lord\nYour grace hath laid the odds o' the weaker side.\n\nKING CLAUDIUS:\nI do not fear it; I have seen you both:\nBut since he is better'd, we have therefore odds.\n\nLAERTES:\nThis is too heavy, let me see another.\n\nHAMLET:\nThis likes me well. These foils have all a length?\n\nOSRIC:\nAy, my good lord.\n\nKING CLAUDIUS:\nSet me the stoops of wine upon that table.\nIf Hamlet give the first or second hit,\nOr quit in answer of the third exchange,\nLet all the battlements their ordnance fire:\nThe king shall drink to Hamlet's better breath;\nAnd in the cup an union shall he throw,\nRicher than that which four successive kings\nIn Denmark's crown have worn. Give me the cups;\nAnd let the kettle to the trumpet speak,\nThe trumpet to the cannoneer without,\nThe cannons to the heavens, the heavens to earth,\n'Now the king dunks to Hamlet.' Come, begin:\nAnd you, the judges, bear a wary eye.\n\nHAMLET:\nCome on, sir.\n\nLAERTES:\nCome, my lord.\n\nHAMLET:\nOne.\n\nLAERTES:\nNo.\n\nHAMLET:\nJudgment.\n\nOSRIC:\nA hit, a very palpable hit.\n\nLAERTES:\nWell; again.\n\nKING CLAUDIUS:\nStay; give me drink. Hamlet, this pearl is thine;\nHere's to thy health.\nGive him the cup.\n\nHAMLET:\nI'll play this bout first; set it by awhile. Come.\nAnother hit; what say you?\n\nLAERTES:\nA touch, a touch, I do confess.\n\nKING CLAUDIUS:\nOur son shall win.\n\nQUEEN GERTRUDE:\nHe's fat, and scant of breath.\nHere, Hamlet, take my napkin, rub thy brows;\nThe queen carouses to thy fortune, Hamlet.\n\nHAMLET:\nGood madam!\n\nKING CLAUDIUS:\nGertrude, do not drink.\n\nQUEEN GERTRUDE:\nI will, my lord; I pray you, pardon me.\n\nKING CLAUDIUS:\n\nHAMLET:\nI dare not drink yet, madam; by and by.\n\nQUEEN GERTRUDE:\nCome, let me wipe thy face.\n\nLAERTES:\nMy lord, I'll hit him now.\n\nKING CLAUDIUS:\nI do not think't.\n\nLAERTES:\n\nHAMLET:\nCome, for the third, Laertes: you but dally;\nI pray you, pass with your best violence;\nI am afeard you make a wanton of me.\n\nLAERTES:\nSay you so? come on.\n\nOSRIC:\nNothing, neither way.\n\nLAERTES:\nHave at you now!\n\nKING CLAUDIUS:\nPart them; they are incensed.\n\nHAMLET:\nNay, come, again.\n\nOSRIC:\nLook to the queen there, ho!\n\nHORATIO:\nThey bleed on both sides. How is it, my lord?\n\nOSRIC:\nHow is't, Laertes?\n\nLAERTES:\nWhy, as a woodcock to mine own springe, Osric;\nI am justly kill'd with mine own treachery.\n\nHAMLET:\nHow does the queen?\n\nKING CLAUDIUS:\nShe swounds to see them bleed.\n\nQUEEN GERTRUDE:\nNo, no, the drink, the drink,--O my dear Hamlet,--\nThe drink, the drink! I am poison'd.\n\nHAMLET:\nO villany! Ho! let the door be lock'd:\nTreachery! Seek it out.\n\nLAERTES:\nIt is here, Hamlet: Hamlet, thou art slain;\nNo medicine in the world can do thee good;\nIn thee there is not half an hour of life;\nThe treacherous instrument is in thy hand,\nUnbated and envenom'd: the foul practise\nHath turn'd itself on me lo, here I lie,\nNever to rise again: thy mother's poison'd:\nI can no more: the king, the king's to blame.\n\nHAMLET:\nThe point!--envenom'd too!\nThen, venom, to thy work.\n\nAll:\nTreason! treason!\n\nKING CLAUDIUS:\nO, yet defend me, friends; I am but hurt.\n\nHAMLET:\nHere, thou incestuous, murderous, damned Dane,\nDrink off this potion. Is thy union here?\nFollow my mother.\n\nLAERTES:\nHe is justly served;\nIt is a poison temper'd by himself.\nExchange forgiveness with me, noble Hamlet:\nMine and my father's death come not upon thee,\nNor thine on me.\n\nHAMLET:\nHeaven make thee free of it! I follow thee.\nI am dead, Horatio. Wretched queen, adieu!\nYou that look pale and tremble at this chance,\nThat are but mutes or audience to this act,\nHad I but time--as this fell sergeant, death,\nIs strict in his arrest--O, I could tell you--\nBut let it be. Horatio, I am dead;\nThou livest; report me and my cause aright\nTo the unsatisfied.\n\nHORATIO:\nNever believe it:\nI am more an antique Roman than a Dane:\nHere's yet some liquor left.\n\nHAMLET:\nAs thou'rt a man,\nGive me the cup: let go; by heaven, I'll have't.\nO good Horatio, what a wounded name,\nThings standing thus unknown, shall live behind me!\nIf thou didst ever hold me in thy heart\nAbsent thee from felicity awhile,\nAnd in this harsh world draw thy breath in pain,\nTo tell my story.\nWhat warlike noise is this?\n\nOSRIC:\nYoung Fortinbras, with conquest come from Poland,\nTo the ambassadors of England gives\nThis warlike volley.\n\nHAMLET:\nO, I die, Horatio;\nThe potent poison quite o'er-crows my spirit:\nI cannot live to hear the news from England;\nBut I do prophesy the election lights\nOn Fortinbras: he has my dying voice;\nSo tell him, with the occurrents, more and less,\nWhich have solicited. The rest is silence.\n\nHORATIO:\nNow cracks a noble heart. Good night sweet prince:\nAnd flights of angels sing thee to thy rest!\nWhy does the drum come hither?\n\nPRINCE FORTINBRAS:\nWhere is this sight?\n\nHORATIO:\nWhat is it ye would see?\nIf aught of woe or wonder, cease your search.\n\nPRINCE FORTINBRAS:\nThis quarry cries on havoc. O proud death,\nWhat feast is toward in thine eternal cell,\nThat thou so many princes at a shot\nSo bloodily hast struck?\n\nFirst Ambassador:\nThe sight is dismal;\nAnd our affairs from England come too late:\nThe ears are senseless that should give us hearing,\nTo tell him his commandment is fulfill'd,\nThat Rosencrantz and Guildenstern are dead:\nWhere should we have our thanks?\n\nHORATIO:\nNot from his mouth,\nHad it the ability of life to thank you:\nHe never gave commandment for their death.\nBut since, so jump upon this bloody question,\nYou from the Polack wars, and you from England,\nAre here arrived give order that these bodies\nHigh on a stage be placed to the view;\nAnd let me speak to the yet unknowing world\nHow these things came about: so shall you hear\nOf carnal, bloody, and unnatural acts,\nOf accidental judgments, casual slaughters,\nOf deaths put on by cunning and forced cause,\nAnd, in this upshot, purposes mistook\nFall'n on the inventors' reads: all this can I\nTruly deliver.\n\nPRINCE FORTINBRAS:\nLet us haste to hear it,\nAnd call the noblest to the audience.\nFor me, with sorrow I embrace my fortune:\nI have some rights of memory in this kingdom,\nWhich now to claim my vantage doth invite me.\n\nHORATIO:\nOf that I shall have also cause to speak,\nAnd from his mouth whose voice will draw on more;\nBut let this same be presently perform'd,\nEven while men's minds are wild; lest more mischance\nOn plots and errors, happen.\n\nPRINCE FORTINBRAS:\nLet four captains\nBear Hamlet, like a soldier, to the stage;\nFor he was likely, had he been put on,\nTo have proved most royally: and, for his passage,\nThe soldiers' music and the rites of war\nSpeak loudly for him.\nTake up the bodies: such a sight as this\nBecomes the field, but here shows much amiss.\nGo, bid the soldiers shoot.\n\nSHALLOW:\nSir Hugh, persuade me not; I will make a Star-\nchamber matter of it: if he were twenty Sir John\nFalstaffs, he shall not abuse Robert Shallow, esquire.\n\nSLENDER:\nIn the county of Gloucester, justice of peace and\n'Coram.'\n\nSHALLOW:\nAy, cousin Slender, and 'Custalourum.\n\nSLENDER:\nAy, and 'Rato-lorum' too; and a gentleman born,\nmaster parson; who writes himself 'Armigero,' in any\nbill, warrant, quittance, or obligation, 'Armigero.'\n\nSHALLOW:\nAy, that I do; and have done any time these three\nhundred years.\n\nSLENDER:\nAll his successors gone before him hath done't; and\nall his ancestors that come after him may: they may\ngive the dozen white luces in their coat.\n\nSHALLOW:\nIt is an old coat.\n\nSIR HUGH EVANS:\nThe dozen white louses do become an old coat well;\nit agrees well, passant; it is a familiar beast to\nman, and signifies love.\n\nSHALLOW:\nThe luce is the fresh fish; the salt fish is an old coat.\n\nSLENDER:\nI may quarter, coz.\n\nSHALLOW:\nYou may, by marrying.\n\nSIR HUGH EVANS:\nIt is marring indeed, if he quarter it.\n\nSHALLOW:\nNot a whit.\n\nSIR HUGH EVANS:\nYes, py'r lady; if he has a quarter of your coat,\nthere is but three skirts for yourself, in my\nsimple conjectures: but that is all one. If Sir\nJohn Falstaff have committed disparagements unto\nyou, I am of the church, and will be glad to do my\nbenevolence to make atonements and compremises\nbetween you.\n\nSHALLOW:\nThe council shall bear it; it is a riot.\n\nSIR HUGH EVANS:\nIt is not meet the council hear a riot; there is no\nfear of Got in a riot: the council, look you, shall\ndesire to hear the fear of Got, and not to hear a\nriot; take your vizaments in that.\n\nSHALLOW:\nHa! o' my life, if I were young again, the sword\nshould end it.\n\nSIR HUGH EVANS:\nIt is petter that friends is the sword, and end it:\nand there is also another device in my prain, which\nperadventure prings goot discretions with it: there\nis Anne Page, which is daughter to Master Thomas\nPage, which is pretty virginity.\n\nSLENDER:\nMistress Anne Page? She has brown hair, and speaks\nsmall like a woman.\n\nSIR HUGH EVANS:\nIt is that fery person for all the orld, as just as\nyou will desire; and seven hundred pounds of moneys,\nand gold and silver, is her grandsire upon his\ndeath's-bed--Got deliver to a joyful resurrections!\n--give, when she is able to overtake seventeen years\nold: it were a goot motion if we leave our pribbles\nand prabbles, and desire a marriage between Master\nAbraham and Mistress Anne Page.\n\nSLENDER:\nDid her grandsire leave her seven hundred pound?\n\nSIR HUGH EVANS:\nAy, and her father is make her a petter penny.\n\nSLENDER:\nI know the young gentlewoman; she has good gifts.\n\nSIR HUGH EVANS:\nSeven hundred pounds and possibilities is goot gifts.\n\nSHALLOW:\nWell, let us see honest Master Page. Is Falstaff there?\n\nSIR HUGH EVANS:\nShall I tell you a lie? I do despise a liar as I do\ndespise one that is false, or as I despise one that\nis not true. The knight, Sir John, is there; and, I\nbeseech you, be ruled by your well-willers. I will\npeat the door for Master Page.\nWhat, hoa! Got pless your house here!\n\nPAGE:\n\nSIR HUGH EVANS:\nHere is Got's plessing, and your friend, and Justice\nShallow; and here young Master Slender, that\nperadventures shall tell you another tale, if\nmatters grow to your likings.\n\nPAGE:\nI am glad to see your worships well.\nI thank you for my venison, Master Shallow.\n\nSHALLOW:\nMaster Page, I am glad to see you: much good do it\nyour good heart! I wished your venison better; it\nwas ill killed. How doth good Mistress Page?--and I\nthank you always with my heart, la! with my heart.\n\nPAGE:\nSir, I thank you.\n\nSHALLOW:\nSir, I thank you; by yea and no, I do.\n\nPAGE:\nI am glad to see you, good Master Slender.\n\nSLENDER:\nHow does your fallow greyhound, sir? I heard say he\nwas outrun on Cotsall.\n\nPAGE:\nIt could not be judged, sir.\n\nSLENDER:\nYou'll not confess, you'll not confess.\n\nSHALLOW:\nThat he will not. 'Tis your fault, 'tis your fault;\n'tis a good dog.\n\nPAGE:\nA cur, sir.\n\nSHALLOW:\nSir, he's a good dog, and a fair dog: can there be\nmore said? he is good and fair. Is Sir John\nFalstaff here?\n\nPAGE:\nSir, he is within; and I would I could do a good\noffice between you.\n\nSIR HUGH EVANS:\nIt is spoke as a Christians ought to speak.\n\nSHALLOW:\nHe hath wronged me, Master Page.\n\nPAGE:\nSir, he doth in some sort confess it.\n\nSHALLOW:\nIf it be confessed, it is not redress'd: is not that\nso, Master Page? He hath wronged me; indeed he\nhath, at a word, he hath, believe me: Robert\nShallow, esquire, saith, he is wronged.\n\nPAGE:\nHere comes Sir John.\n\nFALSTAFF:\nNow, Master Shallow, you'll complain of me to the king?\n\nSHALLOW:\nKnight, you have beaten my men, killed my deer, and\nbroke open my lodge.\n\nFALSTAFF:\nBut not kissed your keeper's daughter?\n\nSHALLOW:\nTut, a pin! this shall be answered.\n\nFALSTAFF:\nI will answer it straight; I have done all this.\nThat is now answered.\n\nSHALLOW:\nThe council shall know this.\n\nFALSTAFF:\n'Twere better for you if it were known in counsel:\nyou'll be laughed at.\n\nSIR HUGH EVANS:\nPauca verba, Sir John; goot worts.\n\nFALSTAFF:\nGood worts! good cabbage. Slender, I broke your\nhead: what matter have you against me?\n\nSLENDER:\nMarry, sir, I have matter in my head against you;\nand against your cony-catching rascals, Bardolph,\nNym, and Pistol.\n\nBARDOLPH:\nYou Banbury cheese!\n\nSLENDER:\nAy, it is no matter.\n\nPISTOL:\nHow now, Mephostophilus!\n\nSLENDER:\nAy, it is no matter.\n\nNYM:\nSlice, I say! pauca, pauca: slice! that's my humour.\n\nSLENDER:\nWhere's Simple, my man? Can you tell, cousin?\n\nSIR HUGH EVANS:\nPeace, I pray you. Now let us understand. There is\nthree umpires in this matter, as I understand; that\nis, Master Page, fidelicet Master Page; and there is\nmyself, fidelicet myself; and the three party is,\nlastly and finally, mine host of the Garter.\n\nPAGE:\nWe three, to hear it and end it between them.\n\nSIR HUGH EVANS:\nFery goot: I will make a prief of it in my note-\nbook; and we will afterwards ork upon the cause with\nas great discreetly as we can.\n\nFALSTAFF:\nPistol!\n\nPISTOL:\nHe hears with ears.\n\nSIR HUGH EVANS:\nThe tevil and his tam! what phrase is this, 'He\nhears with ear'? why, it is affectations.\n\nFALSTAFF:\nPistol, did you pick Master Slender's purse?\n\nSLENDER:\nAy, by these gloves, did he, or I would I might\nnever come in mine own great chamber again else, of\nseven groats in mill-sixpences, and two Edward\nshovel-boards, that cost me two shilling and two\npence apiece of Yead Miller, by these gloves.\n\nFALSTAFF:\nIs this true, Pistol?\n\nSIR HUGH EVANS:\nNo; it is false, if it is a pick-purse.\n\nPISTOL:\nHa, thou mountain-foreigner! Sir John and Master mine,\nI combat challenge of this latten bilbo.\nWord of denial in thy labras here!\nWord of denial: froth and scum, thou liest!\n\nSLENDER:\nBy these gloves, then, 'twas he.\n\nNYM:\nBe avised, sir, and pass good humours: I will say\n'marry trap' with you, if you run the nuthook's\nhumour on me; that is the very note of it.\n\nSLENDER:\nBy this hat, then, he in the red face had it; for\nthough I cannot remember what I did when you made me\ndrunk, yet I am not altogether an ass.\n\nFALSTAFF:\nWhat say you, Scarlet and John?\n\nBARDOLPH:\nWhy, sir, for my part I say the gentleman had drunk\nhimself out of his five sentences.\n\nSIR HUGH EVANS:\nIt is his five senses: fie, what the ignorance is!\n\nBARDOLPH:\nAnd being fap, sir, was, as they say, cashiered; and\nso conclusions passed the careires.\n\nSLENDER:\nAy, you spake in Latin then too; but 'tis no\nmatter: I'll ne'er be drunk whilst I live again,\nbut in honest, civil, godly company, for this trick:\nif I be drunk, I'll be drunk with those that have\nthe fear of God, and not with drunken knaves.\n\nSIR HUGH EVANS:\nSo Got udge me, that is a virtuous mind.\n\nFALSTAFF:\nYou hear all these matters denied, gentlemen; you hear it.\n\nPAGE:\nNay, daughter, carry the wine in; we'll drink within.\n\nSLENDER:\nO heaven! this is Mistress Anne Page.\n\nPAGE:\nHow now, Mistress Ford!\n\nFALSTAFF:\nMistress Ford, by my troth, you are very well met:\nby your leave, good mistress.\n\nPAGE:\nWife, bid these gentlemen welcome. Come, we have a\nhot venison pasty to dinner: come, gentlemen, I hope\nwe shall drink down all unkindness.\n\nSLENDER:\nI had rather than forty shillings I had my Book of\nSongs and Sonnets here.\nHow now, Simple! where have you been? I must wait\non myself, must I? You have not the Book of Riddles\nabout you, have you?\n\nSIMPLE:\nBook of Riddles! why, did you not lend it to Alice\nShortcake upon All-hallowmas last, a fortnight\nafore Michaelmas?\n\nSHALLOW:\nCome, coz; come, coz; we stay for you. A word with\nyou, coz; marry, this, coz: there is, as 'twere, a\ntender, a kind of tender, made afar off by Sir Hugh\nhere. Do you understand me?\n\nSLENDER:\nAy, sir, you shall find me reasonable; if it be so,\nI shall do that that is reason.\n\nSHALLOW:\nNay, but understand me.\n\nSLENDER:\nSo I do, sir.\n\nSIR HUGH EVANS:\nGive ear to his motions, Master Slender: I will\ndescription the matter to you, if you be capacity of it.\n\nSLENDER:\nNay, I will do as my cousin Shallow says: I pray\nyou, pardon me; he's a justice of peace in his\ncountry, simple though I stand here.\n\nSIR HUGH EVANS:\nBut that is not the question: the question is\nconcerning your marriage.\n\nSHALLOW:\nAy, there's the point, sir.\n\nSIR HUGH EVANS:\nMarry, is it; the very point of it; to Mistress Anne Page.\n\nSLENDER:\nWhy, if it be so, I will marry her upon any\nreasonable demands.\n\nSIR HUGH EVANS:\nBut can you affection the 'oman? Let us command to\nknow that of your mouth or of your lips; for divers\nphilosophers hold that the lips is parcel of the\nmouth. Therefore, precisely, can you carry your\ngood will to the maid?\n\nSHALLOW:\nCousin Abraham Slender, can you love her?\n\nSLENDER:\nI hope, sir, I will do as it shall become one that\nwould do reason.\n\nSIR HUGH EVANS:\nNay, Got's lords and his ladies! you must speak\npossitable, if you can carry her your desires\ntowards her.\n\nSHALLOW:\nThat you must. Will you, upon good dowry, marry her?\n\nSLENDER:\nI will do a greater thing than that, upon your\nrequest, cousin, in any reason.\n\nSHALLOW:\nNay, conceive me, conceive me, sweet coz: what I do\nis to pleasure you, coz. Can you love the maid?\n\nSLENDER:\nI will marry her, sir, at your request: but if there\nbe no great love in the beginning, yet heaven may\ndecrease it upon better acquaintance, when we are\nmarried and have more occasion to know one another;\nI hope, upon familiarity will grow more contempt:\nbut if you say, 'Marry her,' I will marry her; that\nI am freely dissolved, and dissolutely.\n\nSIR HUGH EVANS:\nIt is a fery discretion answer; save the fall is in\nthe ort 'dissolutely:' the ort is, according to our\nmeaning, 'resolutely:' his meaning is good.\n\nSHALLOW:\nAy, I think my cousin meant well.\n\nSLENDER:\nAy, or else I would I might be hanged, la!\n\nSHALLOW:\nHere comes fair Mistress Anne.\nWould I were young for your sake, Mistress Anne!\n\nANNE PAGE:\nThe dinner is on the table; my father desires your\nworships' company.\n\nSHALLOW:\nI will wait on him, fair Mistress Anne.\n\nSIR HUGH EVANS:\nOd's plessed will! I will not be absence at the grace.\n\nANNE PAGE:\nWill't please your worship to come in, sir?\n\nSLENDER:\nNo, I thank you, forsooth, heartily; I am very well.\n\nANNE PAGE:\nThe dinner attends you, sir.\n\nSLENDER:\nI am not a-hungry, I thank you, forsooth. Go,\nsirrah, for all you are my man, go wait upon my\ncousin Shallow.\nA justice of peace sometimes may be beholding to his\nfriend for a man. I keep but three men and a boy\nyet, till my mother be dead: but what though? Yet I\nlive like a poor gentleman born.\n\nANNE PAGE:\nI may not go in without your worship: they will not\nsit till you come.\n\nSLENDER:\nI' faith, I'll eat nothing; I thank you as much as\nthough I did.\n\nANNE PAGE:\nI pray you, sir, walk in.\n\nSLENDER:\nI had rather walk here, I thank you. I bruised\nmy shin th' other day with playing at sword and\ndagger with a master of fence; three veneys for a\ndish of stewed prunes; and, by my troth, I cannot\nabide the smell of hot meat since. Why do your\ndogs bark so? be there bears i' the town?\n\nANNE PAGE:\nI think there are, sir; I heard them talked of.\n\nSLENDER:\nI love the sport well but I shall as soon quarrel at\nit as any man in England. You are afraid, if you see\nthe bear loose, are you not?\n\nANNE PAGE:\nAy, indeed, sir.\n\nSLENDER:\nThat's meat and drink to me, now. I have seen\nSackerson loose twenty times, and have taken him by\nthe chain; but, I warrant you, the women have so\ncried and shrieked at it, that it passed: but women,\nindeed, cannot abide 'em; they are very ill-favored\nrough things.\n\nPAGE:\nCome, gentle Master Slender, come; we stay for you.\n\nSLENDER:\nI'll eat nothing, I thank you, sir.\n\nPAGE:\nBy cock and pie, you shall not choose, sir! come, come.\n\nSLENDER:\nNay, pray you, lead the way.\n\nPAGE:\nCome on, sir.\n\nSLENDER:\nMistress Anne, yourself shall go first.\n\nANNE PAGE:\nNot I, sir; pray you, keep on.\n\nSLENDER:\nI'll rather be unmannerly than troublesome.\nYou do yourself wrong, indeed, la!\n\nSIR HUGH EVANS:\nGo your ways, and ask of Doctor Caius' house which\nis the way: and there dwells one Mistress Quickly,\nwhich is in the manner of his nurse, or his dry\nnurse, or his cook, or his laundry, his washer, and\nhis wringer.\n\nSIMPLE:\nWell, sir.\n\nSIR HUGH EVANS:\nNay, it is petter yet. Give her this letter; for it\nis a 'oman that altogether's acquaintance with\nMistress Anne Page: and the letter is, to desire\nand require her to solicit your master's desires to\nMistress Anne Page. I pray you, be gone: I will\nmake an end of my dinner; there's pippins and cheese to come.\n\nFALSTAFF:\nMine host of the Garter!\n\nHost:\nWhat says my bully-rook? speak scholarly and wisely.\n\nFALSTAFF:\nTruly, mine host, I must turn away some of my\nfollowers.\n\nHost:\nDiscard, bully Hercules; cashier: let them wag; trot, trot.\n\nFALSTAFF:\nI sit at ten pounds a week.\n\nHost:\nThou'rt an emperor, Caesar, Keisar, and Pheezar. I\nwill entertain Bardolph; he shall draw, he shall\ntap: said I well, bully Hector?\n\nFALSTAFF:\nDo so, good mine host.\n\nHost:\nI have spoke; let him follow.\nLet me see thee froth and lime: I am at a word; follow.\n\nFALSTAFF:\nBardolph, follow him. A tapster is a good trade:\nan old cloak makes a new jerkin; a withered\nserving-man a fresh tapster. Go; adieu.\n\nBARDOLPH:\nIt is a life that I have desired: I will thrive.\n\nPISTOL:\nO base Hungarian wight! wilt thou the spigot wield?\n\nNYM:\nHe was gotten in drink: is not the humour conceited?\n\nFALSTAFF:\nI am glad I am so acquit of this tinderbox: his\nthefts were too open; his filching was like an\nunskilful singer; he kept not time.\n\nNYM:\nThe good humour is to steal at a minute's rest.\n\nPISTOL:\n'Convey,' the wise it call. 'Steal!' foh! a fico\nfor the phrase!\n\nFALSTAFF:\nWell, sirs, I am almost out at heels.\n\nPISTOL:\nWhy, then, let kibes ensue.\n\nFALSTAFF:\nThere is no remedy; I must cony-catch; I must shift.\n\nPISTOL:\nYoung ravens must have food.\n\nFALSTAFF:\nWhich of you know Ford of this town?\n\nPISTOL:\nI ken the wight: he is of substance good.\n\nFALSTAFF:\nMy honest lads, I will tell you what I am about.\n\nPISTOL:\nTwo yards, and more.\n\nFALSTAFF:\nNo quips now, Pistol! Indeed, I am in the waist two\nyards about; but I am now about no waste; I am about\nthrift. Briefly, I do mean to make love to Ford's\nwife: I spy entertainment in her; she discourses,\nshe carves, she gives the leer of invitation: I\ncan construe the action of her familiar style; and\nthe hardest voice of her behavior, to be Englished\nrightly, is, 'I am Sir John Falstaff's.'\n\nPISTOL:\nHe hath studied her will, and translated her will,\nout of honesty into English.\n\nNYM:\nThe anchor is deep: will that humour pass?\n\nFALSTAFF:\nNow, the report goes she has all the rule of her\nhusband's purse: he hath a legion of angels.\n\nPISTOL:\nAs many devils entertain; and 'To her, boy,' say I.\n\nNYM:\nThe humour rises; it is good: humour me the angels.\n\nFALSTAFF:\nI have writ me here a letter to her: and here\nanother to Page's wife, who even now gave me good\neyes too, examined my parts with most judicious\noeillades; sometimes the beam of her view gilded my\nfoot, sometimes my portly belly.\n\nPISTOL:\nThen did the sun on dunghill shine.\n\nNYM:\nI thank thee for that humour.\n\nFALSTAFF:\nO, she did so course o'er my exteriors with such a\ngreedy intention, that the appetite of her eye did\nseem to scorch me up like a burning-glass! Here's\nanother letter to her: she bears the purse too; she\nis a region in Guiana, all gold and bounty. I will\nbe cheater to them both, and they shall be\nexchequers to me; they shall be my East and West\nIndies, and I will trade to them both. Go bear thou\nthis letter to Mistress Page; and thou this to\nMistress Ford: we will thrive, lads, we will thrive.\n\nPISTOL:\nShall I Sir Pandarus of Troy become,\nAnd by my side wear steel? then, Lucifer take all!\n\nNYM:\nI will run no base humour: here, take the\nhumour-letter: I will keep the havior of reputation.\n\nFALSTAFF:\n\nPISTOL:\nLet vultures gripe thy guts! for gourd and fullam holds,\nAnd high and low beguiles the rich and poor:\nTester I'll have in pouch when thou shalt lack,\nBase Phrygian Turk!\n\nNYM:\nI have operations which be humours of revenge.\n\nPISTOL:\nWilt thou revenge?\n\nNYM:\nBy welkin and her star!\n\nPISTOL:\nWith wit or steel?\n\nNYM:\nWith both the humours, I:\nI will discuss the humour of this love to Page.\n\nPISTOL:\nAnd I to Ford shall eke unfold\nHow Falstaff, varlet vile,\nHis dove will prove, his gold will hold,\nAnd his soft couch defile.\n\nNYM:\nMy humour shall not cool: I will incense Page to\ndeal with poison; I will possess him with\nyellowness, for the revolt of mine is dangerous:\nthat is my true humour.\n\nPISTOL:\nThou art the Mars of malecontents: I second thee; troop on.\n\nMISTRESS QUICKLY:\nWhat, John Rugby! I pray thee, go to the casement,\nand see if you can see my master, Master Doctor\nCaius, coming. If he do, i' faith, and find any\nbody in the house, here will be an old abusing of\nGod's patience and the king's English.\n\nRUGBY:\nI'll go watch.\n\nMISTRESS QUICKLY:\nGo; and we'll have a posset for't soon at night, in\nfaith, at the latter end of a sea-coal fire.\nAn honest, willing, kind fellow, as ever servant\nshall come in house withal, and, I warrant you, no\ntell-tale nor no breed-bate: his worst fault is,\nthat he is given to prayer; he is something peevish\nthat way: but nobody but has his fault; but let\nthat pass. Peter Simple, you say your name is?\n\nSIMPLE:\nAy, for fault of a better.\n\nMISTRESS QUICKLY:\nAnd Master Slender's your master?\n\nSIMPLE:\nAy, forsooth.\n\nMISTRESS QUICKLY:\nDoes he not wear a great round beard, like a\nglover's paring-knife?\n\nSIMPLE:\nNo, forsooth: he hath but a little wee face, with a\nlittle yellow beard, a Cain-coloured beard.\n\nMISTRESS QUICKLY:\nA softly-sprighted man, is he not?\n\nSIMPLE:\nAy, forsooth: but he is as tall a man of his hands\nas any is between this and his head; he hath fought\nwith a warrener.\n\nMISTRESS QUICKLY:\nHow say you? O, I should remember him: does he not\nhold up his head, as it were, and strut in his gait?\n\nSIMPLE:\nYes, indeed, does he.\n\nMISTRESS QUICKLY:\nWell, heaven send Anne Page no worse fortune! Tell\nMaster Parson Evans I will do what I can for your\nmaster: Anne is a good girl, and I wish--\n\nRUGBY:\nOut, alas! here comes my master.\n\nMISTRESS QUICKLY:\nWe shall all be shent. Run in here, good young man;\ngo into this closet: he will not stay long.\nWhat, John Rugby! John! what, John, I say!\nGo, John, go inquire for my master; I doubt\nhe be not well, that he comes not home.\nAnd down, down, adown-a, &c.\n\nDOCTOR CAIUS:\nVat is you sing? I do not like des toys. Pray you,\ngo and vetch me in my closet un boitier vert, a box,\na green-a box: do intend vat I speak? a green-a box.\n\nMISTRESS QUICKLY:\nAy, forsooth; I'll fetch it you.\nI am glad he went not in himself: if he had found\nthe young man, he would have been horn-mad.\n\nDOCTOR CAIUS:\nFe, fe, fe, fe! ma foi, il fait fort chaud. Je\nm'en vais a la cour--la grande affaire.\n\nMISTRESS QUICKLY:\nIs it this, sir?\n\nDOCTOR CAIUS:\nOui; mette le au mon pocket: depeche, quickly. Vere\nis dat knave Rugby?\n\nMISTRESS QUICKLY:\nWhat, John Rugby! John!\n\nRUGBY:\nHere, sir!\n\nDOCTOR CAIUS:\nYou are John Rugby, and you are Jack Rugby. Come,\ntake-a your rapier, and come after my heel to the court.\n\nRUGBY:\n'Tis ready, sir, here in the porch.\n\nDOCTOR CAIUS:\nBy my trot, I tarry too long. Od's me!\nQu'ai-j'oublie! dere is some simples in my closet,\ndat I vill not for the varld I shall leave behind.\n\nMISTRESS QUICKLY:\nAy me, he'll find the young man here, and be mad!\n\nDOCTOR CAIUS:\nO diable, diable! vat is in my closet? Villain! larron!\nRugby, my rapier!\n\nMISTRESS QUICKLY:\nGood master, be content.\n\nDOCTOR CAIUS:\nWherefore shall I be content-a?\n\nMISTRESS QUICKLY:\nThe young man is an honest man.\n\nDOCTOR CAIUS:\nWhat shall de honest man do in my closet? dere is\nno honest man dat shall come in my closet.\n\nMISTRESS QUICKLY:\nI beseech you, be not so phlegmatic. Hear the truth\nof it: he came of an errand to me from Parson Hugh.\n\nDOCTOR CAIUS:\nVell.\n\nSIMPLE:\nAy, forsooth; to desire her to--\n\nMISTRESS QUICKLY:\nPeace, I pray you.\n\nDOCTOR CAIUS:\nPeace-a your tongue. Speak-a your tale.\n\nSIMPLE:\nTo desire this honest gentlewoman, your maid, to\nspeak a good word to Mistress Anne Page for my\nmaster in the way of marriage.\n\nMISTRESS QUICKLY:\nThis is all, indeed, la! but I'll ne'er put my\nfinger in the fire, and need not.\n\nDOCTOR CAIUS:\nSir Hugh send-a you? Rugby, baille me some paper.\nTarry you a little-a while.\n\nMISTRESS QUICKLY:\n\nSIMPLE:\n\nMISTRESS QUICKLY:\n\nDOCTOR CAIUS:\nYou jack'nape, give-a this letter to Sir Hugh; by\ngar, it is a shallenge: I will cut his troat in dee\npark; and I will teach a scurvy jack-a-nape priest\nto meddle or make. You may be gone; it is not good\nyou tarry here. By gar, I will cut all his two\nstones; by gar, he shall not have a stone to throw\nat his dog:\n\nMISTRESS QUICKLY:\nAlas, he speaks but for his friend.\n\nDOCTOR CAIUS:\nIt is no matter-a ver dat: do not you tell-a me\ndat I shall have Anne Page for myself? By gar, I\nvill kill de Jack priest; and I have appointed mine\nhost of de Jarteer to measure our weapon. By gar, I\nwill myself have Anne Page.\n\nMISTRESS QUICKLY:\nSir, the maid loves you, and all shall be well. We\nmust give folks leave to prate: what, the good-jer!\n\nDOCTOR CAIUS:\nRugby, come to the court with me. By gar, if I have\nnot Anne Page, I shall turn your head out of my\ndoor. Follow my heels, Rugby.\n\nMISTRESS QUICKLY:\nYou shall have An fool's-head of your own. No, I\nknow Anne's mind for that: never a woman in Windsor\nknows more of Anne's mind than I do; nor can do more\nthan I do with her, I thank heaven.\n\nFENTON:\n\nMISTRESS QUICKLY:\nWho's there, I trow! Come near the house, I pray you.\n\nFENTON:\nHow now, good woman? how dost thou?\n\nMISTRESS QUICKLY:\nThe better that it pleases your good worship to ask.\n\nFENTON:\nWhat news? how does pretty Mistress Anne?\n\nMISTRESS QUICKLY:\nIn truth, sir, and she is pretty, and honest, and\ngentle; and one that is your friend, I can tell you\nthat by the way; I praise heaven for it.\n\nFENTON:\nShall I do any good, thinkest thou? shall I not lose my suit?\n\nMISTRESS QUICKLY:\nTroth, sir, all is in his hands above: but\nnotwithstanding, Master Fenton, I'll be sworn on a\nbook, she loves you. Have not your worship a wart\nabove your eye?\n\nFENTON:\nYes, marry, have I; what of that?\n\nMISTRESS QUICKLY:\nWell, thereby hangs a tale: good faith, it is such\nanother Nan; but, I detest, an honest maid as ever\nbroke bread: we had an hour's talk of that wart. I\nshall never laugh but in that maid's company! But\nindeed she is given too much to allicholy and\nmusing: but for you--well, go to.\n\nFENTON:\nWell, I shall see her to-day. Hold, there's money\nfor thee; let me have thy voice in my behalf: if\nthou seest her before me, commend me.\n\nMISTRESS QUICKLY:\nWill I? i'faith, that we will; and I will tell your\nworship more of the wart the next time we have\nconfidence; and of other wooers.\n\nFENTON:\nWell, farewell; I am in great haste now.\n\nMISTRESS QUICKLY:\nFarewell to your worship.\nTruly, an honest gentleman: but Anne loves him not;\nfor I know Anne's mind as well as another does. Out\nupon't! what have I forgot?\n\nMISTRESS PAGE:\nWhat, have I scaped love-letters in the holiday-\ntime of my beauty, and am I now a subject for them?\nLet me see.\n'Ask me no reason why I love you; for though\nLove use Reason for his physician, he admits him\nnot for his counsellor. You are not young, no more\nam I; go to then, there's sympathy: you are merry,\nso am I; ha, ha! then there's more sympathy: you\nlove sack, and so do I; would you desire better\nsympathy? Let it suffice thee, Mistress Page,--at\nthe least, if the love of soldier can suffice,--\nthat I love thee. I will not say, pity me; 'tis\nnot a soldier-like phrase: but I say, love me. By me,\nThine own true knight,\nBy day or night,\nOr any kind of light,\nWith all his might\nFor thee to fight,    JOHN FALSTAFF'\nWhat a Herod of Jewry is this! O wicked\nworld! One that is well-nigh worn to pieces with\nage to show himself a young gallant! What an\nunweighed behavior hath this Flemish drunkard\npicked--with the devil's name!--out of my\nconversation, that he dares in this manner assay me?\nWhy, he hath not been thrice in my company! What\nshould I say to him? I was then frugal of my\nmirth: Heaven forgive me! Why, I'll exhibit a bill\nin the parliament for the putting down of men. How\nshall I be revenged on him? for revenged I will be,\nas sure as his guts are made of puddings.\n\nMISTRESS FORD:\nMistress Page! trust me, I was going to your house.\n\nMISTRESS PAGE:\nAnd, trust me, I was coming to you. You look very\nill.\n\nMISTRESS FORD:\nNay, I'll ne'er believe that; I have to show to the contrary.\n\nMISTRESS PAGE:\nFaith, but you do, in my mind.\n\nMISTRESS FORD:\nWell, I do then; yet I say I could show you to the\ncontrary. O Mistress Page, give me some counsel!\n\nMISTRESS PAGE:\nWhat's the matter, woman?\n\nMISTRESS FORD:\nO woman, if it were not for one trifling respect, I\ncould come to such honour!\n\nMISTRESS PAGE:\nHang the trifle, woman! take the honour. What is\nit? dispense with trifles; what is it?\n\nMISTRESS FORD:\nIf I would but go to hell for an eternal moment or so,\nI could be knighted.\n\nMISTRESS PAGE:\nWhat? thou liest! Sir Alice Ford! These knights\nwill hack; and so thou shouldst not alter the\narticle of thy gentry.\n\nMISTRESS FORD:\nWe burn daylight: here, read, read; perceive how I\nmight be knighted. I shall think the worse of fat\nmen, as long as I have an eye to make difference of\nmen's liking: and yet he would not swear; praised\nwomen's modesty; and gave such orderly and\nwell-behaved reproof to all uncomeliness, that I\nwould have sworn his disposition would have gone to\nthe truth of his words; but they do no more adhere\nand keep place together than the Hundredth Psalm to\nthe tune of 'Green Sleeves.' What tempest, I trow,\nthrew this whale, with so many tuns of oil in his\nbelly, ashore at Windsor? How shall I be revenged\non him? I think the best way were to entertain him\nwith hope, till the wicked fire of lust have melted\nhim in his own grease. Did you ever hear the like?\n\nMISTRESS PAGE:\nLetter for letter, but that the name of Page and\nFord differs! To thy great comfort in this mystery\nof ill opinions, here's the twin-brother of thy\nletter: but let thine inherit first; for, I\nprotest, mine never shall. I warrant he hath a\nthousand of these letters, writ with blank space for\ndifferent names--sure, more,--and these are of the\nsecond edition: he will print them, out of doubt;\nfor he cares not what he puts into the press, when\nhe would put us two. I had rather be a giantess,\nand lie under Mount Pelion. Well, I will find you\ntwenty lascivious turtles ere one chaste man.\n\nMISTRESS FORD:\nWhy, this is the very same; the very hand, the very\nwords. What doth he think of us?\n\nMISTRESS PAGE:\nNay, I know not: it makes me almost ready to\nwrangle with mine own honesty. I'll entertain\nmyself like one that I am not acquainted withal;\nfor, sure, unless he know some strain in me, that I\nknow not myself, he would never have boarded me in this fury.\n\nMISTRESS FORD:\n'Boarding,' call you it? I'll be sure to keep him\nabove deck.\n\nMISTRESS PAGE:\nSo will I if he come under my hatches, I'll never\nto sea again. Let's be revenged on him: let's\nappoint him a meeting; give him a show of comfort in\nhis suit and lead him on with a fine-baited delay,\ntill he hath pawned his horses to mine host of the Garter.\n\nMISTRESS FORD:\nNay, I will consent to act any villany against him,\nthat may not sully the chariness of our honesty. O,\nthat my husband saw this letter! it would give\neternal food to his jealousy.\n\nMISTRESS PAGE:\nWhy, look where he comes; and my good man too: he's\nas far from jealousy as I am from giving him cause;\nand that I hope is an unmeasurable distance.\n\nMISTRESS FORD:\nYou are the happier woman.\n\nMISTRESS PAGE:\nLet's consult together against this greasy knight.\nCome hither.\n\nFORD:\nWell, I hope it be not so.\n\nPISTOL:\nHope is a curtal dog in some affairs:\nSir John affects thy wife.\n\nFORD:\nWhy, sir, my wife is not young.\n\nPISTOL:\nHe wooes both high and low, both rich and poor,\nBoth young and old, one with another, Ford;\nHe loves the gallimaufry: Ford, perpend.\n\nFORD:\nLove my wife!\n\nPISTOL:\nWith liver burning hot. Prevent, or go thou,\nLike Sir Actaeon he, with Ringwood at thy heels:\nO, odious is the name!\n\nFORD:\nWhat name, sir?\n\nPISTOL:\nThe horn, I say. Farewell.\nTake heed, have open eye, for thieves do foot by night:\nTake heed, ere summer comes or cuckoo-birds do sing.\nAway, Sir Corporal Nym!\nBelieve it, Page; he speaks sense.\n\nFORD:\n\nNYM:\n\nPAGE:\n'The humour of it,' quoth a'! here's a fellow\nfrights English out of his wits.\n\nFORD:\nI will seek out Falstaff.\n\nPAGE:\nI never heard such a drawling, affecting rogue.\n\nFORD:\nIf I do find it: well.\n\nPAGE:\nI will not believe such a Cataian, though the priest\no' the town commended him for a true man.\n\nFORD:\n'Twas a good sensible fellow: well.\n\nPAGE:\nHow now, Meg!\n\nMISTRESS PAGE:\nWhither go you, George? Hark you.\n\nMISTRESS FORD:\nHow now, sweet Frank! why art thou melancholy?\n\nFORD:\nI melancholy! I am not melancholy. Get you home, go.\n\nMISTRESS FORD:\nFaith, thou hast some crotchets in thy head. Now,\nwill you go, Mistress Page?\n\nMISTRESS PAGE:\nHave with you. You'll come to dinner, George.\nLook who comes yonder: she shall be our messenger\nto this paltry knight.\n\nMISTRESS FORD:\n\nMISTRESS PAGE:\nYou are come to see my daughter Anne?\n\nMISTRESS QUICKLY:\nAy, forsooth; and, I pray, how does good Mistress Anne?\n\nMISTRESS PAGE:\nGo in with us and see: we have an hour's talk with\nyou.\n\nPAGE:\nHow now, Master Ford!\n\nFORD:\nYou heard what this knave told me, did you not?\n\nPAGE:\nYes: and you heard what the other told me?\n\nFORD:\nDo you think there is truth in them?\n\nPAGE:\nHang 'em, slaves! I do not think the knight would\noffer it: but these that accuse him in his intent\ntowards our wives are a yoke of his discarded men;\nvery rogues, now they be out of service.\n\nFORD:\nWere they his men?\n\nPAGE:\nMarry, were they.\n\nFORD:\nI like it never the better for that. Does he lie at\nthe Garter?\n\nPAGE:\nAy, marry, does he. If he should intend this voyage\ntowards my wife, I would turn her loose to him; and\nwhat he gets more of her than sharp words, let it\nlie on my head.\n\nFORD:\nI do not misdoubt my wife; but I would be loath to\nturn them together. A man may be too confident: I\nwould have nothing lie on my head: I cannot be thus satisfied.\n\nPAGE:\nLook where my ranting host of the Garter comes:\nthere is either liquor in his pate or money in his\npurse when he looks so merrily.\nHow now, mine host!\n\nHost:\nHow now, bully-rook! thou'rt a gentleman.\nCavaleiro-justice, I say!\n\nSHALLOW:\nI follow, mine host, I follow. Good even and\ntwenty, good Master Page! Master Page, will you go\nwith us? we have sport in hand.\n\nHost:\nTell him, cavaleiro-justice; tell him, bully-rook.\n\nSHALLOW:\nSir, there is a fray to be fought between Sir Hugh\nthe Welsh priest and Caius the French doctor.\n\nFORD:\nGood mine host o' the Garter, a word with you.\n\nHost:\nWhat sayest thou, my bully-rook?\n\nSHALLOW:\n\nHost:\nHast thou no suit against my knight, my\nguest-cavaleire?\n\nFORD:\nNone, I protest: but I'll give you a pottle of\nburnt sack to give me recourse to him and tell him\nmy name is Brook; only for a jest.\n\nHost:\nMy hand, bully; thou shalt have egress and regress;\n--said I well?--and thy name shall be Brook. It is\na merry knight. Will you go, An-heires?\n\nSHALLOW:\nHave with you, mine host.\n\nPAGE:\nI have heard the Frenchman hath good skill in\nhis rapier.\n\nSHALLOW:\nTut, sir, I could have told you more. In these times\nyou stand on distance, your passes, stoccadoes, and\nI know not what: 'tis the heart, Master Page; 'tis\nhere, 'tis here. I have seen the time, with my long\nsword I would have made you four tall fellows skip like rats.\n\nHost:\nHere, boys, here, here! shall we wag?\n\nPAGE:\nHave with you. I would rather hear them scold than fight.\n\nFORD:\nThough Page be a secure fool, an stands so firmly\non his wife's frailty, yet I cannot put off my\nopinion so easily: she was in his company at Page's\nhouse; and what they made there, I know not. Well,\nI will look further into't: and I have a disguise\nto sound Falstaff. If I find her honest, I lose not\nmy labour; if she be otherwise, 'tis labour well bestowed.\n\nFALSTAFF:\nI will not lend thee a penny.\n\nPISTOL:\nWhy, then the world's mine oyster.\nWhich I with sword will open.\n\nFALSTAFF:\nNot a penny. I have been content, sir, you should\nlay my countenance to pawn; I have grated upon my\ngood friends for three reprieves for you and your\ncoach-fellow Nym; or else you had looked through\nthe grate, like a geminy of baboons. I am damned in\nhell for swearing to gentlemen my friends, you were\ngood soldiers and tall fellows; and when Mistress\nBridget lost the handle of her fan, I took't upon\nmine honour thou hadst it not.\n\nPISTOL:\nDidst not thou share? hadst thou not fifteen pence?\n\nFALSTAFF:\nReason, you rogue, reason: thinkest thou I'll\nendanger my soul gratis? At a word, hang no more\nabout me, I am no gibbet for you. Go. A short knife\nand a throng! To your manor of Pickt-hatch! Go.\nYou'll not bear a letter for me, you rogue! you\nstand upon your honour! Why, thou unconfinable\nbaseness, it is as much as I can do to keep the\nterms of my honour precise: I, I, I myself\nsometimes, leaving the fear of God on the left hand\nand hiding mine honour in my necessity, am fain to\nshuffle, to hedge and to lurch; and yet you, rogue,\nwill ensconce your rags, your cat-a-mountain\nlooks, your red-lattice phrases, and your\nbold-beating oaths, under the shelter of your\nhonour! You will not do it, you!\n\nPISTOL:\nI do relent: what would thou more of man?\n\nROBIN:\nSir, here's a woman would speak with you.\n\nFALSTAFF:\nLet her approach.\n\nMISTRESS QUICKLY:\nGive your worship good morrow.\n\nFALSTAFF:\nGood morrow, good wife.\n\nMISTRESS QUICKLY:\nNot so, an't please your worship.\n\nFALSTAFF:\nGood maid, then.\n\nMISTRESS QUICKLY:\nI'll be sworn,\nAs my mother was, the first hour I was born.\n\nFALSTAFF:\nI do believe the swearer. What with me?\n\nMISTRESS QUICKLY:\nShall I vouchsafe your worship a word or two?\n\nFALSTAFF:\nTwo thousand, fair woman: and I'll vouchsafe thee\nthe hearing.\n\nMISTRESS QUICKLY:\nThere is one Mistress Ford, sir:--I pray, come a\nlittle nearer this ways:--I myself dwell with master\nDoctor Caius,--\n\nFALSTAFF:\nWell, on: Mistress Ford, you say,--\n\nMISTRESS QUICKLY:\nYour worship says very true: I pray your worship,\ncome a little nearer this ways.\n\nFALSTAFF:\nI warrant thee, nobody hears; mine own people, mine\nown people.\n\nMISTRESS QUICKLY:\nAre they so? God bless them and make them his servants!\n\nFALSTAFF:\nWell, Mistress Ford; what of her?\n\nMISTRESS QUICKLY:\nWhy, sir, she's a good creature. Lord Lord! your\nworship's a wanton! Well, heaven forgive you and all\nof us, I pray!\n\nFALSTAFF:\nMistress Ford; come, Mistress Ford,--\n\nMISTRESS QUICKLY:\nMarry, this is the short and the long of it; you\nhave brought her into such a canaries as 'tis\nwonderful. The best courtier of them all, when the\ncourt lay at Windsor, could never have brought her\nto such a canary. Yet there has been knights, and\nlords, and gentlemen, with their coaches, I warrant\nyou, coach after coach, letter after letter, gift\nafter gift; smelling so sweetly, all musk, and so\nrushling, I warrant you, in silk and gold; and in\nsuch alligant terms; and in such wine and sugar of\nthe best and the fairest, that would have won any\nwoman's heart; and, I warrant you, they could never\nget an eye-wink of her: I had myself twenty angels\ngiven me this morning; but I defy all angels, in\nany such sort, as they say, but in the way of\nhonesty: and, I warrant you, they could never get\nher so much as sip on a cup with the proudest of\nthem all: and yet there has been earls, nay, which\nis more, pensioners; but, I warrant you, all is one with her.\n\nFALSTAFF:\nBut what says she to me? be brief, my good\nshe-Mercury.\n\nMISTRESS QUICKLY:\nMarry, she hath received your letter, for the which\nshe thanks you a thousand times; and she gives you\nto notify that her husband will be absence from his\nhouse between ten and eleven.\n\nFALSTAFF:\nTen and eleven?\n\nMISTRESS QUICKLY:\nAy, forsooth; and then you may come and see the\npicture, she says, that you wot of: Master Ford,\nher husband, will be from home. Alas! the sweet\nwoman leads an ill life with him: he's a very\njealousy man: she leads a very frampold life with\nhim, good heart.\n\nFALSTAFF:\nTen and eleven. Woman, commend me to her; I will\nnot fail her.\n\nMISTRESS QUICKLY:\nWhy, you say well. But I have another messenger to\nyour worship. Mistress Page hath her hearty\ncommendations to you too: and let me tell you in\nyour ear, she's as fartuous a civil modest wife, and\none, I tell you, that will not miss you morning nor\nevening prayer, as any is in Windsor, whoe'er be the\nother: and she bade me tell your worship that her\nhusband is seldom from home; but she hopes there\nwill come a time. I never knew a woman so dote upon\na man: surely I think you have charms, la; yes, in truth.\n\nFALSTAFF:\nNot I, I assure thee: setting the attractions of my\ngood parts aside I have no other charms.\n\nMISTRESS QUICKLY:\nBlessing on your heart for't!\n\nFALSTAFF:\nBut, I pray thee, tell me this: has Ford's wife and\nPage's wife acquainted each other how they love me?\n\nMISTRESS QUICKLY:\nThat were a jest indeed! they have not so little\ngrace, I hope: that were a trick indeed! but\nMistress Page would desire you to send her your\nlittle page, of all loves: her husband has a\nmarvellous infection to the little page; and truly\nMaster Page is an honest man. Never a wife in\nWindsor leads a better life than she does: do what\nshe will, say what she will, take all, pay all, go\nto bed when she list, rise when she list, all is as\nshe will: and truly she deserves it; for if there\nbe a kind woman in Windsor, she is one. You must\nsend her your page; no remedy.\n\nFALSTAFF:\nWhy, I will.\n\nMISTRESS QUICKLY:\nNay, but do so, then: and, look you, he may come and\ngo between you both; and in any case have a\nnay-word, that you may know one another's mind, and\nthe boy never need to understand any thing; for\n'tis not good that children should know any\nwickedness: old folks, you know, have discretion,\nas they say, and know the world.\n\nFALSTAFF:\nFare thee well: commend me to them both: there's\nmy purse; I am yet thy debtor. Boy, go along with\nthis woman.\nThis news distracts me!\n\nPISTOL:\nThis punk is one of Cupid's carriers:\nClap on more sails; pursue; up with your fights:\nGive fire: she is my prize, or ocean whelm them all!\n\nFALSTAFF:\nSayest thou so, old Jack? go thy ways; I'll make\nmore of thy old body than I have done. Will they\nyet look after thee? Wilt thou, after the expense\nof so much money, be now a gainer? Good body, I\nthank thee. Let them say 'tis grossly done; so it be\nfairly done, no matter.\n\nBARDOLPH:\nSir John, there's one Master Brook below would fain\nspeak with you, and be acquainted with you; and hath\nsent your worship a morning's draught of sack.\n\nFALSTAFF:\nBrook is his name?\n\nBARDOLPH:\nAy, sir.\n\nFALSTAFF:\nCall him in.\nSuch Brooks are welcome to me, that o'erflow such\nliquor. Ah, ha! Mistress Ford and Mistress Page\nhave I encompassed you? go to; via!\n\nFORD:\nBless you, sir!\n\nFALSTAFF:\nAnd you, sir! Would you speak with me?\n\nFORD:\nI make bold to press with so little preparation upon\nyou.\n\nFALSTAFF:\nYou're welcome. What's your will? Give us leave, drawer.\n\nFORD:\nSir, I am a gentleman that have spent much; my name is Brook.\n\nFALSTAFF:\nGood Master Brook, I desire more acquaintance of you.\n\nFORD:\nGood Sir John, I sue for yours: not to charge you;\nfor I must let you understand I think myself in\nbetter plight for a lender than you are: the which\nhath something embolden'd me to this unseasoned\nintrusion; for they say, if money go before, all\nways do lie open.\n\nFALSTAFF:\nMoney is a good soldier, sir, and will on.\n\nFORD:\nTroth, and I have a bag of money here troubles me:\nif you will help to bear it, Sir John, take all, or\nhalf, for easing me of the carriage.\n\nFALSTAFF:\nSir, I know not how I may deserve to be your porter.\n\nFORD:\nI will tell you, sir, if you will give me the hearing.\n\nFALSTAFF:\nSpeak, good Master Brook: I shall be glad to be\nyour servant.\n\nFORD:\nSir, I hear you are a scholar,--I will be brief\nwith you,--and you have been a man long known to me,\nthough I had never so good means, as desire, to make\nmyself acquainted with you. I shall discover a\nthing to you, wherein I must very much lay open mine\nown imperfection: but, good Sir John, as you have\none eye upon my follies, as you hear them unfolded,\nturn another into the register of your own; that I\nmay pass with a reproof the easier, sith you\nyourself know how easy it is to be such an offender.\n\nFALSTAFF:\nVery well, sir; proceed.\n\nFORD:\nThere is a gentlewoman in this town; her husband's\nname is Ford.\n\nFALSTAFF:\nWell, sir.\n\nFORD:\nI have long loved her, and, I protest to you,\nbestowed much on her; followed her with a doting\nobservance; engrossed opportunities to meet her;\nfee'd every slight occasion that could but niggardly\ngive me sight of her; not only bought many presents\nto give her, but have given largely to many to know\nwhat she would have given; briefly, I have pursued\nher as love hath pursued me; which hath been on the\nwing of all occasions. But whatsoever I have\nmerited, either in my mind or, in my means, meed,\nI am sure, I have received none; unless experience\nbe a jewel that I have purchased at an infinite\nrate, and that hath taught me to say this:\n'Love like a shadow flies when substance love pursues;\nPursuing that that flies, and flying what pursues.'\n\nFALSTAFF:\nHave you received no promise of satisfaction at her hands?\n\nFORD:\nNever.\n\nFALSTAFF:\nHave you importuned her to such a purpose?\n\nFORD:\nNever.\n\nFALSTAFF:\nOf what quality was your love, then?\n\nFORD:\nLike a fair house built on another man's ground; so\nthat I have lost my edifice by mistaking the place\nwhere I erected it.\n\nFALSTAFF:\nTo what purpose have you unfolded this to me?\n\nFORD:\nWhen I have told you that, I have told you all.\nSome say, that though she appear honest to me, yet in\nother places she enlargeth her mirth so far that\nthere is shrewd construction made of her. Now, Sir\nJohn, here is the heart of my purpose: you are a\ngentleman of excellent breeding, admirable\ndiscourse, of great admittance, authentic in your\nplace and person, generally allowed for your many\nwar-like, court-like, and learned preparations.\n\nFALSTAFF:\nO, sir!\n\nFORD:\nBelieve it, for you know it. There is money; spend\nit, spend it; spend more; spend all I have; only\ngive me so much of your time in exchange of it, as\nto lay an amiable siege to the honesty of this\nFord's wife: use your art of wooing; win her to\nconsent to you: if any man may, you may as soon as\nany.\n\nFALSTAFF:\nWould it apply well to the vehemency of your\naffection, that I should win what you would enjoy?\nMethinks you prescribe to yourself very preposterously.\n\nFORD:\nO, understand my drift. She dwells so securely on\nthe excellency of her honour, that the folly of my\nsoul dares not present itself: she is too bright to\nbe looked against. Now, could I could come to her\nwith any detection in my hand, my desires had\ninstance and argument to commend themselves: I\ncould drive her then from the ward of her purity,\nher reputation, her marriage-vow, and a thousand\nother her defences, which now are too too strongly\nembattled against me. What say you to't, Sir John?\n\nFALSTAFF:\nMaster Brook, I will first make bold with your\nmoney; next, give me your hand; and last, as I am a\ngentleman, you shall, if you will, enjoy Ford's wife.\n\nFORD:\nO good sir!\n\nFALSTAFF:\nI say you shall.\n\nFORD:\nWant no money, Sir John; you shall want none.\n\nFALSTAFF:\nWant no Mistress Ford, Master Brook; you shall want\nnone. I shall be with her, I may tell you, by her\nown appointment; even as you came in to me, her\nassistant or go-between parted from me: I say I\nshall be with her between ten and eleven; for at\nthat time the jealous rascally knave her husband\nwill be forth. Come you to me at night; you shall\nknow how I speed.\n\nFORD:\nI am blest in your acquaintance. Do you know Ford,\nsir?\n\nFALSTAFF:\nHang him, poor cuckoldly knave! I know him not:\nyet I wrong him to call him poor; they say the\njealous wittolly knave hath masses of money; for the\nwhich his wife seems to me well-favored. I will\nuse her as the key of the cuckoldly rogue's coffer;\nand there's my harvest-home.\n\nFORD:\nI would you knew Ford, sir, that you might avoid him\nif you saw him.\n\nFALSTAFF:\nHang him, mechanical salt-butter rogue! I will\nstare him out of his wits; I will awe him with my\ncudgel: it shall hang like a meteor o'er the\ncuckold's horns. Master Brook, thou shalt know I\nwill predominate over the peasant, and thou shalt\nlie with his wife. Come to me soon at night.\nFord's a knave, and I will aggravate his style;\nthou, Master Brook, shalt know him for knave and\ncuckold. Come to me soon at night.\n\nFORD:\nWhat a damned Epicurean rascal is this! My heart is\nready to crack with impatience. Who says this is\nimprovident jealousy? my wife hath sent to him; the\nhour is fixed; the match is made. Would any man\nhave thought this? See the hell of having a false\nwoman! My bed shall be abused, my coffers\nransacked, my reputation gnawn at; and I shall not\nonly receive this villanous wrong, but stand under\nthe adoption of abominable terms, and by him that\ndoes me this wrong. Terms! names! Amaimon sounds\nwell; Lucifer, well; Barbason, well; yet they are\ndevils' additions, the names of fiends: but\nCuckold! Wittol!--Cuckold! the devil himself hath\nnot such a name. Page is an ass, a secure ass: he\nwill trust his wife; he will not be jealous. I will\nrather trust a Fleming with my butter, Parson Hugh\nthe Welshman with my cheese, an Irishman with my\naqua-vitae bottle, or a thief to walk my ambling\ngelding, than my wife with herself; then she plots,\nthen she ruminates, then she devises; and what they\nthink in their hearts they may effect, they will\nbreak their hearts but they will effect. God be\npraised for my jealousy! Eleven o'clock the hour.\nI will prevent this, detect my wife, be revenged on\nFalstaff, and laugh at Page. I will about it;\nbetter three hours too soon than a minute too late.\nFie, fie, fie! cuckold! cuckold! cuckold!\n\nDOCTOR CAIUS:\nJack Rugby!\n\nRUGBY:\nSir?\n\nDOCTOR CAIUS:\nVat is de clock, Jack?\n\nRUGBY:\n'Tis past the hour, sir, that Sir Hugh promised to meet.\n\nDOCTOR CAIUS:\nBy gar, he has save his soul, dat he is no come; he\nhas pray his Pible well, dat he is no come: by gar,\nJack Rugby, he is dead already, if he be come.\n\nRUGBY:\nHe is wise, sir; he knew your worship would kill\nhim, if he came.\n\nDOCTOR CAIUS:\nBy gar, de herring is no dead so as I vill kill him.\nTake your rapier, Jack; I vill tell you how I vill kill him.\n\nRUGBY:\nAlas, sir, I cannot fence.\n\nDOCTOR CAIUS:\nVillany, take your rapier.\n\nRUGBY:\nForbear; here's company.\n\nHost:\nBless thee, bully doctor!\n\nSHALLOW:\nSave you, Master Doctor Caius!\n\nPAGE:\nNow, good master doctor!\n\nSLENDER:\nGive you good morrow, sir.\n\nDOCTOR CAIUS:\nVat be all you, one, two, tree, four, come for?\n\nHost:\nTo see thee fight, to see thee foin, to see thee\ntraverse; to see thee here, to see thee there; to\nsee thee pass thy punto, thy stock, thy reverse, thy\ndistance, thy montant. Is he dead, my Ethiopian? is\nhe dead, my Francisco? ha, bully! What says my\nAEsculapius? my Galen? my heart of elder? ha! is\nhe dead, bully stale? is he dead?\n\nDOCTOR CAIUS:\nBy gar, he is de coward Jack priest of de vorld; he\nis not show his face.\n\nHost:\nThou art a Castalion-King-Urinal. Hector of Greece, my boy!\n\nDOCTOR CAIUS:\nI pray you, bear vitness that me have stay six or\nseven, two, tree hours for him, and he is no come.\n\nSHALLOW:\nHe is the wiser man, master doctor: he is a curer of\nsouls, and you a curer of bodies; if you should\nfight, you go against the hair of your professions.\nIs it not true, Master Page?\n\nPAGE:\nMaster Shallow, you have yourself been a great\nfighter, though now a man of peace.\n\nSHALLOW:\nBodykins, Master Page, though I now be old and of\nthe peace, if I see a sword out, my finger itches to\nmake one. Though we are justices and doctors and\nchurchmen, Master Page, we have some salt of our\nyouth in us; we are the sons of women, Master Page.\n\nPAGE:\n'Tis true, Master Shallow.\n\nSHALLOW:\nIt will be found so, Master Page. Master Doctor\nCaius, I am come to fetch you home. I am sworn of\nthe peace: you have showed yourself a wise\nphysician, and Sir Hugh hath shown himself a wise\nand patient churchman. You must go with me, master doctor.\n\nHost:\nPardon, guest-justice. A word, Mounseur Mockwater.\n\nDOCTOR CAIUS:\nMock-vater! vat is dat?\n\nHost:\nMock-water, in our English tongue, is valour, bully.\n\nDOCTOR CAIUS:\nBy gar, den, I have as mush mock-vater as de\nEnglishman. Scurvy jack-dog priest! by gar, me\nvill cut his ears.\n\nHost:\nHe will clapper-claw thee tightly, bully.\n\nDOCTOR CAIUS:\nClapper-de-claw! vat is dat?\n\nHost:\nThat is, he will make thee amends.\n\nDOCTOR CAIUS:\nBy gar, me do look he shall clapper-de-claw me;\nfor, by gar, me vill have it.\n\nHost:\nAnd I will provoke him to't, or let him wag.\n\nDOCTOR CAIUS:\nMe tank you for dat.\n\nHost:\nAnd, moreover, bully,--but first, master guest, and\nMaster Page, and eke Cavaleiro Slender, go you\nthrough the town to Frogmore.\n\nPAGE:\nSir Hugh is there, is he?\n\nHost:\nHe is there: see what humour he is in; and I will\nbring the doctor about by the fields. Will it do well?\n\nSHALLOW:\nWe will do it.\n\nPAGE:\nAdieu, good master doctor.\n\nDOCTOR CAIUS:\nBy gar, me vill kill de priest; for he speak for a\njack-an-ape to Anne Page.\n\nHost:\nLet him die: sheathe thy impatience, throw cold\nwater on thy choler: go about the fields with me\nthrough Frogmore: I will bring thee where Mistress\nAnne Page is, at a farm-house a-feasting; and thou\nshalt woo her. Cried I aim? said I well?\n\nDOCTOR CAIUS:\nBy gar, me dank you for dat: by gar, I love you;\nand I shall procure-a you de good guest, de earl,\nde knight, de lords, de gentlemen, my patients.\n\nHost:\nFor the which I will be thy adversary toward Anne\nPage. Said I well?\n\nDOCTOR CAIUS:\nBy gar, 'tis good; vell said.\n\nHost:\nLet us wag, then.\n\nDOCTOR CAIUS:\nCome at my heels, Jack Rugby.\n\nSIR HUGH EVANS:\nI pray you now, good master Slender's serving-man,\nand friend Simple by your name, which way have you\nlooked for Master Caius, that calls himself doctor of physic?\n\nSIMPLE:\nMarry, sir, the pittie-ward, the park-ward, every\nway; old Windsor way, and every way but the town\nway.\n\nSIR HUGH EVANS:\nI most fehemently desire you you will also look that\nway.\n\nSIMPLE:\nI will, sir.\n\nSIR HUGH EVANS:\n'Pless my soul, how full of chollors I am, and\ntrempling of mind! I shall be glad if he have\ndeceived me. How melancholies I am! I will knog\nhis urinals about his knave's costard when I have\ngood opportunities for the ork. 'Pless my soul!\nTo shallow rivers, to whose falls\nMelodious birds sings madrigals;\nThere will we make our peds of roses,\nAnd a thousand fragrant posies.\nTo shallow--\nMercy on me! I have a great dispositions to cry.\nMelodious birds sing madrigals--\nWhen as I sat in Pabylon--\nAnd a thousand vagram posies.\nTo shallow &c.\n\nSIMPLE:\nYonder he is coming, this way, Sir Hugh.\n\nSIR HUGH EVANS:\nHe's welcome.\nTo shallow rivers, to whose falls-\nHeaven prosper the right! What weapons is he?\n\nSIMPLE:\nNo weapons, sir. There comes my master, Master\nShallow, and another gentleman, from Frogmore, over\nthe stile, this way.\n\nSIR HUGH EVANS:\nPray you, give me my gown; or else keep it in your arms.\n\nSHALLOW:\nHow now, master Parson! Good morrow, good Sir Hugh.\nKeep a gamester from the dice, and a good student\nfrom his book, and it is wonderful.\n\nSLENDER:\n\nPAGE:\n'Save you, good Sir Hugh!\n\nSIR HUGH EVANS:\n'Pless you from his mercy sake, all of you!\n\nSHALLOW:\nWhat, the sword and the word! do you study them\nboth, master parson?\n\nPAGE:\nAnd youthful still! in your doublet and hose this\nraw rheumatic day!\n\nSIR HUGH EVANS:\nThere is reasons and causes for it.\n\nPAGE:\nWe are come to you to do a good office, master parson.\n\nSIR HUGH EVANS:\nFery well: what is it?\n\nPAGE:\nYonder is a most reverend gentleman, who, belike\nhaving received wrong by some person, is at most\nodds with his own gravity and patience that ever you\nsaw.\n\nSHALLOW:\nI have lived fourscore years and upward; I never\nheard a man of his place, gravity and learning, so\nwide of his own respect.\n\nSIR HUGH EVANS:\nWhat is he?\n\nPAGE:\nI think you know him; Master Doctor Caius, the\nrenowned French physician.\n\nSIR HUGH EVANS:\nGot's will, and his passion of my heart! I had as\nlief you would tell me of a mess of porridge.\n\nPAGE:\nWhy?\n\nSIR HUGH EVANS:\nHe has no more knowledge in Hibocrates and Galen,\n--and he is a knave besides; a cowardly knave as you\nwould desires to be acquainted withal.\n\nPAGE:\nI warrant you, he's the man should fight with him.\n\nSHALLOW:\n\nSHALLOW:\nIt appears so by his weapons. Keep them asunder:\nhere comes Doctor Caius.\n\nPAGE:\nNay, good master parson, keep in your weapon.\n\nSHALLOW:\nSo do you, good master doctor.\n\nHost:\nDisarm them, and let them question: let them keep\ntheir limbs whole and hack our English.\n\nDOCTOR CAIUS:\nI pray you, let-a me speak a word with your ear.\nVherefore vill you not meet-a me?\n\nSIR HUGH EVANS:\n\nDOCTOR CAIUS:\nBy gar, you are de coward, de Jack dog, John ape.\n\nSIR HUGH EVANS:\n\nDOCTOR CAIUS:\nDiable! Jack Rugby,--mine host de Jarteer,--have I\nnot stay for him to kill him? have I not, at de place\nI did appoint?\n\nSIR HUGH EVANS:\nAs I am a Christians soul now, look you, this is the\nplace appointed: I'll be judgement by mine host of\nthe Garter.\n\nHost:\nPeace, I say, Gallia and Gaul, French and Welsh,\nsoul-curer and body-curer!\n\nDOCTOR CAIUS:\nAy, dat is very good; excellent.\n\nHost:\nPeace, I say! hear mine host of the Garter. Am I\npolitic? am I subtle? am I a Machiavel? Shall I\nlose my doctor? no; he gives me the potions and the\nmotions. Shall I lose my parson, my priest, my Sir\nHugh? no; he gives me the proverbs and the\nno-verbs. Give me thy hand, terrestrial; so. Give me\nthy hand, celestial; so. Boys of art, I have\ndeceived you both; I have directed you to wrong\nplaces: your hearts are mighty, your skins are\nwhole, and let burnt sack be the issue. Come, lay\ntheir swords to pawn. Follow me, lads of peace;\nfollow, follow, follow.\n\nSHALLOW:\nTrust me, a mad host. Follow, gentlemen, follow.\n\nSLENDER:\n\nDOCTOR CAIUS:\nHa, do I perceive dat? have you make-a de sot of\nus, ha, ha?\n\nSIR HUGH EVANS:\nThis is well; he has made us his vlouting-stog. I\ndesire you that we may be friends; and let us knog\nour prains together to be revenge on this same\nscall, scurvy cogging companion, the host of the Garter.\n\nDOCTOR CAIUS:\nBy gar, with all my heart. He promise to bring me\nwhere is Anne Page; by gar, he deceive me too.\n\nSIR HUGH EVANS:\nWell, I will smite his noddles. Pray you, follow.\n\nMISTRESS PAGE:\nNay, keep your way, little gallant; you were wont to\nbe a follower, but now you are a leader. Whether\nhad you rather lead mine eyes, or eye your master's heels?\n\nROBIN:\nI had rather, forsooth, go before you like a man\nthan follow him like a dwarf.\n\nMISTRESS PAGE:\nO, you are a flattering boy: now I see you'll be a courtier.\n\nFORD:\nWell met, Mistress Page. Whither go you?\n\nMISTRESS PAGE:\nTruly, sir, to see your wife. Is she at home?\n\nFORD:\nAy; and as idle as she may hang together, for want\nof company. I think, if your husbands were dead,\nyou two would marry.\n\nMISTRESS PAGE:\nBe sure of that,--two other husbands.\n\nFORD:\nWhere had you this pretty weather-cock?\n\nMISTRESS PAGE:\nI cannot tell what the dickens his name is my\nhusband had him of. What do you call your knight's\nname, sirrah?\n\nROBIN:\nSir John Falstaff.\n\nFORD:\nSir John Falstaff!\n\nMISTRESS PAGE:\nHe, he; I can never hit on's name. There is such a\nleague between my good man and he! Is your wife at\nhome indeed?\n\nFORD:\nIndeed she is.\n\nMISTRESS PAGE:\nBy your leave, sir: I am sick till I see her.\n\nFORD:\nHas Page any brains? hath he any eyes? hath he any\nthinking? Sure, they sleep; he hath no use of them.\nWhy, this boy will carry a letter twenty mile, as\neasy as a cannon will shoot point-blank twelve\nscore. He pieces out his wife's inclination; he\ngives her folly motion and advantage: and now she's\ngoing to my wife, and Falstaff's boy with her. A\nman may hear this shower sing in the wind. And\nFalstaff's boy with her! Good plots, they are laid;\nand our revolted wives share damnation together.\nWell; I will take him, then torture my wife, pluck\nthe borrowed veil of modesty from the so seeming\nMistress Page, divulge Page himself for a secure and\nwilful Actaeon; and to these violent proceedings all\nmy neighbours shall cry aim.\nThe clock gives me my cue, and my assurance bids me\nsearch: there I shall find Falstaff: I shall be\nrather praised for this than mocked; for it is as\npositive as the earth is firm that Falstaff is\nthere: I will go.\n\nSHALLOW:\nWell met, Master Ford.\n&c.\n\nFORD:\nTrust me, a good knot: I have good cheer at home;\nand I pray you all go with me.\n\nSHALLOW:\nI must excuse myself, Master Ford.\n\nSLENDER:\nAnd so must I, sir: we have appointed to dine with\nMistress Anne, and I would not break with her for\nmore money than I'll speak of.\n\nSHALLOW:\nWe have lingered about a match between Anne Page and\nmy cousin Slender, and this day we shall have our answer.\n\nSLENDER:\nI hope I have your good will, father Page.\n\nPAGE:\nYou have, Master Slender; I stand wholly for you:\nbut my wife, master doctor, is for you altogether.\n\nDOCTOR CAIUS:\nAy, be-gar; and de maid is love-a me: my nursh-a\nQuickly tell me so mush.\n\nHost:\nWhat say you to young Master Fenton? he capers, he\ndances, he has eyes of youth, he writes verses, he\nspeaks holiday, he smells April and May: he will\ncarry't, he will carry't; 'tis in his buttons; he\nwill carry't.\n\nPAGE:\nNot by my consent, I promise you. The gentleman is\nof no having: he kept company with the wild prince\nand Poins; he is of too high a region; he knows too\nmuch. No, he shall not knit a knot in his fortunes\nwith the finger of my substance: if he take her,\nlet him take her simply; the wealth I have waits on\nmy consent, and my consent goes not that way.\n\nFORD:\nI beseech you heartily, some of you go home with me\nto dinner: besides your cheer, you shall have\nsport; I will show you a monster. Master doctor,\nyou shall go; so shall you, Master Page; and you, Sir Hugh.\n\nSHALLOW:\nWell, fare you well: we shall have the freer wooing\nat Master Page's.\n\nDOCTOR CAIUS:\nGo home, John Rugby; I come anon.\n\nHost:\nFarewell, my hearts: I will to my honest knight\nFalstaff, and drink canary with him.\n\nFORD:\n\nAll:\nHave with you to see this monster.\n\nMISTRESS FORD:\nWhat, John! What, Robert!\n\nMISTRESS PAGE:\nQuickly, quickly! is the buck-basket--\n\nMISTRESS FORD:\nI warrant. What, Robin, I say!\n\nMISTRESS PAGE:\nCome, come, come.\n\nMISTRESS FORD:\nHere, set it down.\n\nMISTRESS PAGE:\nGive your men the charge; we must be brief.\n\nMISTRESS FORD:\nMarry, as I told you before, John and Robert, be\nready here hard by in the brew-house: and when I\nsuddenly call you, come forth, and without any pause\nor staggering take this basket on your shoulders:\nthat done, trudge with it in all haste, and carry\nit among the whitsters in Datchet-mead, and there\nempty it in the muddy ditch close by the Thames side.\n\nMISTRESS PAGE:\nYou will do it?\n\nMISTRESS FORD:\nI ha' told them over and over; they lack no\ndirection. Be gone, and come when you are called.\n\nMISTRESS PAGE:\nHere comes little Robin.\n\nMISTRESS FORD:\nHow now, my eyas-musket! what news with you?\n\nROBIN:\nMy master, Sir John, is come in at your back-door,\nMistress Ford, and requests your company.\n\nMISTRESS PAGE:\nYou little Jack-a-Lent, have you been true to us?\n\nROBIN:\nAy, I'll be sworn. My master knows not of your\nbeing here and hath threatened to put me into\neverlasting liberty if I tell you of it; for he\nswears he'll turn me away.\n\nMISTRESS PAGE:\nThou'rt a good boy: this secrecy of thine shall be\na tailor to thee and shall make thee a new doublet\nand hose. I'll go hide me.\n\nMISTRESS FORD:\nDo so. Go tell thy master I am alone.\nMistress Page, remember you your cue.\n\nMISTRESS PAGE:\nI warrant thee; if I do not act it, hiss me.\n\nMISTRESS FORD:\nGo to, then: we'll use this unwholesome humidity,\nthis gross watery pumpion; we'll teach him to know\nturtles from jays.\n\nFALSTAFF:\nHave I caught thee, my heavenly jewel? Why, now let\nme die, for I have lived long enough: this is the\nperiod of my ambition: O this blessed hour!\n\nMISTRESS FORD:\nO sweet Sir John!\n\nFALSTAFF:\nMistress Ford, I cannot cog, I cannot prate,\nMistress Ford. Now shall I sin in my wish: I would\nthy husband were dead: I'll speak it before the\nbest lord; I would make thee my lady.\n\nMISTRESS FORD:\nI your lady, Sir John! alas, I should be a pitiful lady!\n\nFALSTAFF:\nLet the court of France show me such another. I see\nhow thine eye would emulate the diamond: thou hast\nthe right arched beauty of the brow that becomes the\nship-tire, the tire-valiant, or any tire of\nVenetian admittance.\n\nMISTRESS FORD:\nA plain kerchief, Sir John: my brows become nothing\nelse; nor that well neither.\n\nFALSTAFF:\nBy the Lord, thou art a traitor to say so: thou\nwouldst make an absolute courtier; and the firm\nfixture of thy foot would give an excellent motion\nto thy gait in a semi-circled farthingale. I see\nwhat thou wert, if Fortune thy foe were not, Nature\nthy friend. Come, thou canst not hide it.\n\nMISTRESS FORD:\nBelieve me, there is no such thing in me.\n\nFALSTAFF:\nWhat made me love thee? let that persuade thee\nthere's something extraordinary in thee. Come, I\ncannot cog and say thou art this and that, like a\nmany of these lisping hawthorn-buds, that come like\nwomen in men's apparel, and smell like Bucklersbury\nin simple time; I cannot: but I love thee; none\nbut thee; and thou deservest it.\n\nMISTRESS FORD:\nDo not betray me, sir. I fear you love Mistress Page.\n\nFALSTAFF:\nThou mightst as well say I love to walk by the\nCounter-gate, which is as hateful to me as the reek\nof a lime-kiln.\n\nMISTRESS FORD:\nWell, heaven knows how I love you; and you shall one\nday find it.\n\nFALSTAFF:\nKeep in that mind; I'll deserve it.\n\nMISTRESS FORD:\nNay, I must tell you, so you do; or else I could not\nbe in that mind.\n\nROBIN:\n\nFALSTAFF:\nShe shall not see me: I will ensconce me behind the arras.\n\nMISTRESS FORD:\nPray you, do so: she's a very tattling woman.\nWhat's the matter? how now!\n\nMISTRESS PAGE:\nO Mistress Ford, what have you done? You're shamed,\nyou're overthrown, you're undone for ever!\n\nMISTRESS FORD:\nWhat's the matter, good Mistress Page?\n\nMISTRESS PAGE:\nO well-a-day, Mistress Ford! having an honest man\nto your husband, to give him such cause of suspicion!\n\nMISTRESS FORD:\nWhat cause of suspicion?\n\nMISTRESS PAGE:\nWhat cause of suspicion! Out pon you! how am I\nmistook in you!\n\nMISTRESS FORD:\nWhy, alas, what's the matter?\n\nMISTRESS PAGE:\nYour husband's coming hither, woman, with all the\nofficers in Windsor, to search for a gentleman that\nhe says is here now in the house by your consent, to\ntake an ill advantage of his assence: you are undone.\n\nMISTRESS FORD:\n'Tis not so, I hope.\n\nMISTRESS PAGE:\nPray heaven it be not so, that you have such a man\nhere! but 'tis most certain your husband's coming,\nwith half Windsor at his heels, to search for such a\none. I come before to tell you. If you know\nyourself clear, why, I am glad of it; but if you\nhave a friend here convey, convey him out. Be not\namazed; call all your senses to you; defend your\nreputation, or bid farewell to your good life for ever.\n\nMISTRESS FORD:\nWhat shall I do? There is a gentleman my dear\nfriend; and I fear not mine own shame so much as his\nperil: I had rather than a thousand pound he were\nout of the house.\n\nMISTRESS PAGE:\nFor shame! never stand 'you had rather' and 'you\nhad rather:' your husband's here at hand, bethink\nyou of some conveyance: in the house you cannot\nhide him. O, how have you deceived me! Look, here\nis a basket: if he be of any reasonable stature, he\nmay creep in here; and throw foul linen upon him, as\nif it were going to bucking: or--it is whiting-time\n--send him by your two men to Datchet-mead.\n\nMISTRESS FORD:\nHe's too big to go in there. What shall I do?\n\nFALSTAFF:\n\nMISTRESS PAGE:\nWhat, Sir John Falstaff! Are these your letters, knight?\n\nFALSTAFF:\nI love thee. Help me away. Let me creep in here.\nI'll never--\n\nMISTRESS PAGE:\nHelp to cover your master, boy. Call your men,\nMistress Ford. You dissembling knight!\n\nMISTRESS FORD:\nWhat, John! Robert! John!\nGo take up these clothes here quickly. Where's the\ncowl-staff? look, how you drumble! Carry them to\nthe laundress in Datchet-meat; quickly, come.\n\nFORD:\nPray you, come near: if I suspect without cause,\nwhy then make sport at me; then let me be your jest;\nI deserve it. How now! whither bear you this?\n\nServant:\nTo the laundress, forsooth.\n\nMISTRESS FORD:\nWhy, what have you to do whither they bear it? You\nwere best meddle with buck-washing.\n\nFORD:\nBuck! I would I could wash myself of the buck!\nBuck, buck, buck! Ay, buck; I warrant you, buck;\nand of the season too, it shall appear.\nGentlemen, I have dreamed to-night; I'll tell you my\ndream. Here, here, here be my keys: ascend my\nchambers; search, seek, find out: I'll warrant\nwe'll unkennel the fox. Let me stop this way first.\nSo, now uncape.\n\nPAGE:\nGood Master Ford, be contented: you wrong yourself too much.\n\nFORD:\nTrue, Master Page. Up, gentlemen: you shall see\nsport anon: follow me, gentlemen.\n\nSIR HUGH EVANS:\nThis is fery fantastical humours and jealousies.\n\nDOCTOR CAIUS:\nBy gar, 'tis no the fashion of France; it is not\njealous in France.\n\nPAGE:\nNay, follow him, gentlemen; see the issue of his search.\n\nMISTRESS PAGE:\nIs there not a double excellency in this?\n\nMISTRESS FORD:\nI know not which pleases me better, that my husband\nis deceived, or Sir John.\n\nMISTRESS PAGE:\nWhat a taking was he in when your husband asked who\nwas in the basket!\n\nMISTRESS FORD:\nI am half afraid he will have need of washing; so\nthrowing him into the water will do him a benefit.\n\nMISTRESS PAGE:\nHang him, dishonest rascal! I would all of the same\nstrain were in the same distress.\n\nMISTRESS FORD:\nI think my husband hath some special suspicion of\nFalstaff's being here; for I never saw him so gross\nin his jealousy till now.\n\nMISTRESS PAGE:\nI will lay a plot to try that; and we will yet have\nmore tricks with Falstaff: his dissolute disease will\nscarce obey this medicine.\n\nMISTRESS FORD:\nShall we send that foolish carrion, Mistress\nQuickly, to him, and excuse his throwing into the\nwater; and give him another hope, to betray him to\nanother punishment?\n\nMISTRESS PAGE:\nWe will do it: let him be sent for to-morrow,\neight o'clock, to have amends.\n\nFORD:\nI cannot find him: may be the knave bragged of that\nhe could not compass.\n\nMISTRESS PAGE:\n\nMISTRESS FORD:\nYou use me well, Master Ford, do you?\n\nFORD:\nAy, I do so.\n\nMISTRESS FORD:\nHeaven make you better than your thoughts!\n\nFORD:\nAmen!\n\nMISTRESS PAGE:\nYou do yourself mighty wrong, Master Ford.\n\nFORD:\nAy, ay; I must bear it.\n\nSIR HUGH EVANS:\nIf there be any pody in the house, and in the\nchambers, and in the coffers, and in the presses,\nheaven forgive my sins at the day of judgment!\n\nDOCTOR CAIUS:\nBy gar, nor I too: there is no bodies.\n\nPAGE:\nFie, fie, Master Ford! are you not ashamed? What\nspirit, what devil suggests this imagination? I\nwould not ha' your distemper in this kind for the\nwealth of Windsor Castle.\n\nFORD:\n'Tis my fault, Master Page: I suffer for it.\n\nSIR HUGH EVANS:\nYou suffer for a pad conscience: your wife is as\nhonest a 'omans as I will desires among five\nthousand, and five hundred too.\n\nDOCTOR CAIUS:\nBy gar, I see 'tis an honest woman.\n\nFORD:\nWell, I promised you a dinner. Come, come, walk in\nthe Park: I pray you, pardon me; I will hereafter\nmake known to you why I have done this. Come,\nwife; come, Mistress Page. I pray you, pardon me;\npray heartily, pardon me.\n\nPAGE:\nLet's go in, gentlemen; but, trust me, we'll mock\nhim. I do invite you to-morrow morning to my house\nto breakfast: after, we'll a-birding together; I\nhave a fine hawk for the bush. Shall it be so?\n\nFORD:\nAny thing.\n\nSIR HUGH EVANS:\nIf there is one, I shall make two in the company.\n\nDOCTOR CAIUS:\nIf dere be one or two, I shall make-a the turd.\n\nFORD:\nPray you, go, Master Page.\n\nSIR HUGH EVANS:\nI pray you now, remembrance tomorrow on the lousy\nknave, mine host.\n\nDOCTOR CAIUS:\nDat is good; by gar, with all my heart!\n\nSIR HUGH EVANS:\nA lousy knave, to have his gibes and his mockeries!\n\nFENTON:\nI see I cannot get thy father's love;\nTherefore no more turn me to him, sweet Nan.\n\nANNE PAGE:\nAlas, how then?\n\nFENTON:\nWhy, thou must be thyself.\nHe doth object I am too great of birth--,\nAnd that, my state being gall'd with my expense,\nI seek to heal it only by his wealth:\nBesides these, other bars he lays before me,\nMy riots past, my wild societies;\nAnd tells me 'tis a thing impossible\nI should love thee but as a property.\n\nANNE PAGE:\nMay be he tells you true.\n\nFENTON:\nNo, heaven so speed me in my time to come!\nAlbeit I will confess thy father's wealth\nWas the first motive that I woo'd thee, Anne:\nYet, wooing thee, I found thee of more value\nThan stamps in gold or sums in sealed bags;\nAnd 'tis the very riches of thyself\nThat now I aim at.\n\nANNE PAGE:\nGentle Master Fenton,\nYet seek my father's love; still seek it, sir:\nIf opportunity and humblest suit\nCannot attain it, why, then,--hark you hither!\n\nSHALLOW:\nBreak their talk, Mistress Quickly: my kinsman shall\nspeak for himself.\n\nSLENDER:\nI'll make a shaft or a bolt on't: 'slid, 'tis but\nventuring.\n\nSHALLOW:\nBe not dismayed.\n\nSLENDER:\nNo, she shall not dismay me: I care not for that,\nbut that I am afeard.\n\nMISTRESS QUICKLY:\nHark ye; Master Slender would speak a word with you.\n\nANNE PAGE:\nI come to him.\nThis is my father's choice.\nO, what a world of vile ill-favor'd faults\nLooks handsome in three hundred pounds a-year!\n\nMISTRESS QUICKLY:\nAnd how does good Master Fenton? Pray you, a word with you.\n\nSHALLOW:\nShe's coming; to her, coz. O boy, thou hadst a father!\n\nSLENDER:\nI had a father, Mistress Anne; my uncle can tell you\ngood jests of him. Pray you, uncle, tell Mistress\nAnne the jest, how my father stole two geese out of\na pen, good uncle.\n\nSHALLOW:\nMistress Anne, my cousin loves you.\n\nSLENDER:\nAy, that I do; as well as I love any woman in\nGloucestershire.\n\nSHALLOW:\nHe will maintain you like a gentlewoman.\n\nSLENDER:\nAy, that I will, come cut and long-tail, under the\ndegree of a squire.\n\nSHALLOW:\nHe will make you a hundred and fifty pounds jointure.\n\nANNE PAGE:\nGood Master Shallow, let him woo for himself.\n\nSHALLOW:\nMarry, I thank you for it; I thank you for that good\ncomfort. She calls you, coz: I'll leave you.\n\nANNE PAGE:\nNow, Master Slender,--\n\nSLENDER:\nNow, good Mistress Anne,--\n\nANNE PAGE:\nWhat is your will?\n\nSLENDER:\nMy will! 'od's heartlings, that's a pretty jest\nindeed! I ne'er made my will yet, I thank heaven; I\nam not such a sickly creature, I give heaven praise.\n\nANNE PAGE:\nI mean, Master Slender, what would you with me?\n\nSLENDER:\nTruly, for mine own part, I would little or nothing\nwith you. Your father and my uncle hath made\nmotions: if it be my luck, so; if not, happy man be\nhis dole! They can tell you how things go better\nthan I can: you may ask your father; here he comes.\n\nPAGE:\nNow, Master Slender: love him, daughter Anne.\nWhy, how now! what does Master Fenton here?\nYou wrong me, sir, thus still to haunt my house:\nI told you, sir, my daughter is disposed of.\n\nFENTON:\nNay, Master Page, be not impatient.\n\nMISTRESS PAGE:\nGood Master Fenton, come not to my child.\n\nPAGE:\nShe is no match for you.\n\nFENTON:\nSir, will you hear me?\n\nPAGE:\nNo, good Master Fenton.\nCome, Master Shallow; come, son Slender, in.\nKnowing my mind, you wrong me, Master Fenton.\n\nMISTRESS QUICKLY:\nSpeak to Mistress Page.\n\nFENTON:\nGood Mistress Page, for that I love your daughter\nIn such a righteous fashion as I do,\nPerforce, against all cheques, rebukes and manners,\nI must advance the colours of my love\nAnd not retire: let me have your good will.\n\nANNE PAGE:\nGood mother, do not marry me to yond fool.\n\nMISTRESS PAGE:\nI mean it not; I seek you a better husband.\n\nMISTRESS QUICKLY:\nThat's my master, master doctor.\n\nANNE PAGE:\nAlas, I had rather be set quick i' the earth\nAnd bowl'd to death with turnips!\n\nMISTRESS PAGE:\nCome, trouble not yourself. Good Master Fenton,\nI will not be your friend nor enemy:\nMy daughter will I question how she loves you,\nAnd as I find her, so am I affected.\nTill then farewell, sir: she must needs go in;\nHer father will be angry.\n\nFENTON:\nFarewell, gentle mistress: farewell, Nan.\n\nMISTRESS QUICKLY:\nThis is my doing, now: 'Nay,' said I, 'will you cast\naway your child on a fool, and a physician? Look on\nMaster Fenton:' this is my doing.\n\nFENTON:\nI thank thee; and I pray thee, once to-night\nGive my sweet Nan this ring: there's for thy pains.\n\nMISTRESS QUICKLY:\nNow heaven send thee good fortune!\nA kind heart he hath: a woman would run through\nfire and water for such a kind heart. But yet I\nwould my master had Mistress Anne; or I would\nMaster Slender had her; or, in sooth, I would Master\nFenton had her; I will do what I can for them all\nthree; for so I have promised, and I'll be as good\nas my word; but speciously for Master Fenton. Well,\nI must of another errand to Sir John Falstaff from\nmy two mistresses: what a beast am I to slack it!\n\nFALSTAFF:\nBardolph, I say,--\n\nBARDOLPH:\nHere, sir.\n\nFALSTAFF:\nGo fetch me a quart of sack; put a toast in't.\nHave I lived to be carried in a basket, like a\nbarrow of butcher's offal, and to be thrown in the\nThames? Well, if I be served such another trick,\nI'll have my brains ta'en out and buttered, and give\nthem to a dog for a new-year's gift. The rogues\nslighted me into the river with as little remorse as\nthey would have drowned a blind bitch's puppies,\nfifteen i' the litter: and you may know by my size\nthat I have a kind of alacrity in sinking; if the\nbottom were as deep as hell, I should down. I had\nbeen drowned, but that the shore was shelvy and\nshallow,--a death that I abhor; for the water swells\na man; and what a thing should I have been when I\nhad been swelled! I should have been a mountain of mummy.\n\nBARDOLPH:\nHere's Mistress Quickly, sir, to speak with you.\n\nFALSTAFF:\nLet me pour in some sack to the Thames water; for my\nbelly's as cold as if I had swallowed snowballs for\npills to cool the reins. Call her in.\n\nBARDOLPH:\nCome in, woman!\n\nMISTRESS QUICKLY:\nBy your leave; I cry you mercy: give your worship\ngood morrow.\n\nFALSTAFF:\nTake away these chalices. Go brew me a pottle of\nsack finely.\n\nBARDOLPH:\nWith eggs, sir?\n\nFALSTAFF:\nSimple of itself; I'll no pullet-sperm in my brewage.\nHow now!\n\nMISTRESS QUICKLY:\nMarry, sir, I come to your worship from Mistress Ford.\n\nFALSTAFF:\nMistress Ford! I have had ford enough; I was thrown\ninto the ford; I have my belly full of ford.\n\nMISTRESS QUICKLY:\nAlas the day! good heart, that was not her fault:\nshe does so take on with her men; they mistook their erection.\n\nFALSTAFF:\nSo did I mine, to build upon a foolish woman's promise.\n\nMISTRESS QUICKLY:\nWell, she laments, sir, for it, that it would yearn\nyour heart to see it. Her husband goes this morning\na-birding; she desires you once more to come to her\nbetween eight and nine: I must carry her word\nquickly: she'll make you amends, I warrant you.\n\nFALSTAFF:\nWell, I will visit her: tell her so; and bid her\nthink what a man is: let her consider his frailty,\nand then judge of my merit.\n\nMISTRESS QUICKLY:\nI will tell her.\n\nFALSTAFF:\nDo so. Between nine and ten, sayest thou?\n\nMISTRESS QUICKLY:\nEight and nine, sir.\n\nFALSTAFF:\nWell, be gone: I will not miss her.\n\nMISTRESS QUICKLY:\nPeace be with you, sir.\n\nFALSTAFF:\nI marvel I hear not of Master Brook; he sent me word\nto stay within: I like his money well. O, here he comes.\n\nFORD:\nBless you, sir!\n\nFALSTAFF:\nNow, master Brook, you come to know what hath passed\nbetween me and Ford's wife?\n\nFORD:\nThat, indeed, Sir John, is my business.\n\nFALSTAFF:\nMaster Brook, I will not lie to you: I was at her\nhouse the hour she appointed me.\n\nFORD:\nAnd sped you, sir?\n\nFALSTAFF:\nVery ill-favoredly, Master Brook.\n\nFORD:\nHow so, sir? Did she change her determination?\n\nFALSTAFF:\nNo, Master Brook; but the peaking Cornuto her\nhusband, Master Brook, dwelling in a continual\n'larum of jealousy, comes me in the instant of our\nencounter, after we had embraced, kissed, protested,\nand, as it were, spoke the prologue of our comedy;\nand at his heels a rabble of his companions, thither\nprovoked and instigated by his distemper, and,\nforsooth, to search his house for his wife's love.\n\nFORD:\nWhat, while you were there?\n\nFALSTAFF:\nWhile I was there.\n\nFORD:\nAnd did he search for you, and could not find you?\n\nFALSTAFF:\nYou shall hear. As good luck would have it, comes\nin one Mistress Page; gives intelligence of Ford's\napproach; and, in her invention and Ford's wife's\ndistraction, they conveyed me into a buck-basket.\n\nFORD:\nA buck-basket!\n\nFALSTAFF:\nBy the Lord, a buck-basket! rammed me in with foul\nshirts and smocks, socks, foul stockings, greasy\nnapkins; that, Master Brook, there was the rankest\ncompound of villanous smell that ever offended nostril.\n\nFORD:\nAnd how long lay you there?\n\nFALSTAFF:\nNay, you shall hear, Master Brook, what I have\nsuffered to bring this woman to evil for your good.\nBeing thus crammed in the basket, a couple of Ford's\nknaves, his hinds, were called forth by their\nmistress to carry me in the name of foul clothes to\nDatchet-lane: they took me on their shoulders; met\nthe jealous knave their master in the door, who\nasked them once or twice what they had in their\nbasket: I quaked for fear, lest the lunatic knave\nwould have searched it; but fate, ordaining he\nshould be a cuckold, held his hand. Well: on went he\nfor a search, and away went I for foul clothes. But\nmark the sequel, Master Brook: I suffered the pangs\nof three several deaths; first, an intolerable\nfright, to be detected with a jealous rotten\nbell-wether; next, to be compassed, like a good\nbilbo, in the circumference of a peck, hilt to\npoint, heel to head; and then, to be stopped in,\nlike a strong distillation, with stinking clothes\nthat fretted in their own grease: think of that,--a\nman of my kidney,--think of that,--that am as subject\nto heat as butter; a man of continual dissolution\nand thaw: it was a miracle to scape suffocation.\nAnd in the height of this bath, when I was more than\nhalf stewed in grease, like a Dutch dish, to be\nthrown into the Thames, and cooled, glowing hot,\nin that surge, like a horse-shoe; think of\nthat,--hissing hot,--think of that, Master Brook.\n\nFORD:\nIn good sadness, I am sorry that for my sake you\nhave sufferd all this. My suit then is desperate;\nyou'll undertake her no more?\n\nFALSTAFF:\nMaster Brook, I will be thrown into Etna, as I have\nbeen into Thames, ere I will leave her thus. Her\nhusband is this morning gone a-birding: I have\nreceived from her another embassy of meeting; 'twixt\neight and nine is the hour, Master Brook.\n\nFORD:\n'Tis past eight already, sir.\n\nFALSTAFF:\nIs it? I will then address me to my appointment.\nCome to me at your convenient leisure, and you shall\nknow how I speed; and the conclusion shall be\ncrowned with your enjoying her. Adieu. You shall\nhave her, Master Brook; Master Brook, you shall\ncuckold Ford.\n\nFORD:\nHum! ha! is this a vision? is this a dream? do I\nsleep? Master Ford awake! awake, Master Ford!\nthere's a hole made in your best coat, Master Ford.\nThis 'tis to be married! this 'tis to have linen\nand buck-baskets! Well, I will proclaim myself\nwhat I am: I will now take the lecher; he is at my\nhouse; he cannot 'scape me; 'tis impossible he\nshould; he cannot creep into a halfpenny purse,\nnor into a pepper-box: but, lest the devil that\nguides him should aid him, I will search\nimpossible places. Though what I am I cannot avoid,\nyet to be what I would not shall not make me tame:\nif I have horns to make one mad, let the proverb go\nwith me: I'll be horn-mad.\n\nMISTRESS PAGE:\nIs he at Master Ford's already, think'st thou?\n\nMISTRESS QUICKLY:\nSure he is by this, or will be presently: but,\ntruly, he is very courageous mad about his throwing\ninto the water. Mistress Ford desires you to come suddenly.\n\nMISTRESS PAGE:\nI'll be with her by and by; I'll but bring my young\nman here to school. Look, where his master comes;\n'tis a playing-day, I see.\nHow now, Sir Hugh! no school to-day?\n\nSIR HUGH EVANS:\nNo; Master Slender is let the boys leave to play.\n\nMISTRESS QUICKLY:\nBlessing of his heart!\n\nMISTRESS PAGE:\nSir Hugh, my husband says my son profits nothing in\nthe world at his book. I pray you, ask him some\nquestions in his accidence.\n\nSIR HUGH EVANS:\nCome hither, William; hold up your head; come.\n\nMISTRESS PAGE:\nCome on, sirrah; hold up your head; answer your\nmaster, be not afraid.\n\nSIR HUGH EVANS:\nWilliam, how many numbers is in nouns?\n\nWILLIAM PAGE:\nTwo.\n\nMISTRESS QUICKLY:\nTruly, I thought there had been one number more,\nbecause they say, ''Od's nouns.'\n\nSIR HUGH EVANS:\nPeace your tattlings! What is 'fair,' William?\n\nWILLIAM PAGE:\nPulcher.\n\nMISTRESS QUICKLY:\nPolecats! there are fairer things than polecats, sure.\n\nSIR HUGH EVANS:\nYou are a very simplicity 'oman: I pray you peace.\nWhat is 'lapis,' William?\n\nWILLIAM PAGE:\nA stone.\n\nSIR HUGH EVANS:\nAnd what is 'a stone,' William?\n\nWILLIAM PAGE:\nA pebble.\n\nSIR HUGH EVANS:\nNo, it is 'lapis:' I pray you, remember in your prain.\n\nWILLIAM PAGE:\nLapis.\n\nSIR HUGH EVANS:\nThat is a good William. What is he, William, that\ndoes lend articles?\n\nWILLIAM PAGE:\nArticles are borrowed of the pronoun, and be thus\ndeclined, Singulariter, nominativo, hic, haec, hoc.\n\nSIR HUGH EVANS:\nNominativo, hig, hag, hog; pray you, mark:\ngenitivo, hujus. Well, what is your accusative case?\n\nWILLIAM PAGE:\nAccusativo, hinc.\n\nSIR HUGH EVANS:\nI pray you, have your remembrance, child,\naccusative, hung, hang, hog.\n\nMISTRESS QUICKLY:\n'Hang-hog' is Latin for bacon, I warrant you.\n\nSIR HUGH EVANS:\nLeave your prabbles, 'oman. What is the focative\ncase, William?\n\nWILLIAM PAGE:\nO,--vocativo, O.\n\nSIR HUGH EVANS:\nRemember, William; focative is caret.\n\nMISTRESS QUICKLY:\nAnd that's a good root.\n\nSIR HUGH EVANS:\n'Oman, forbear.\n\nMISTRESS PAGE:\nPeace!\n\nSIR HUGH EVANS:\nWhat is your genitive case plural, William?\n\nWILLIAM PAGE:\nGenitive case!\n\nSIR HUGH EVANS:\nAy.\n\nWILLIAM PAGE:\nGenitive,--horum, harum, horum.\n\nMISTRESS QUICKLY:\nVengeance of Jenny's case! fie on her! never name\nher, child, if she be a whore.\n\nSIR HUGH EVANS:\nFor shame, 'oman.\n\nMISTRESS QUICKLY:\nYou do ill to teach the child such words: he\nteaches him to hick and to hack, which they'll do\nfast enough of themselves, and to call 'horum:' fie upon you!\n\nSIR HUGH EVANS:\n'Oman, art thou lunatics? hast thou no\nunderstandings for thy cases and the numbers of the\ngenders? Thou art as foolish Christian creatures as\nI would desires.\n\nMISTRESS PAGE:\nPrithee, hold thy peace.\n\nSIR HUGH EVANS:\nShow me now, William, some declensions of your pronouns.\n\nWILLIAM PAGE:\nForsooth, I have forgot.\n\nSIR HUGH EVANS:\nIt is qui, quae, quod: if you forget your 'quies,'\nyour 'quaes,' and your 'quods,' you must be\npreeches. Go your ways, and play; go.\n\nMISTRESS PAGE:\nHe is a better scholar than I thought he was.\n\nSIR HUGH EVANS:\nHe is a good sprag memory. Farewell, Mistress Page.\n\nMISTRESS PAGE:\nAdieu, good Sir Hugh.\nGet you home, boy. Come, we stay too long.\n\nFALSTAFF:\nMistress Ford, your sorrow hath eaten up my\nsufferance. I see you are obsequious in your love,\nand I profess requital to a hair's breadth; not\nonly, Mistress Ford, in the simple\noffice of love, but in all the accoutrement,\ncomplement and ceremony of it. But are you\nsure of your husband now?\n\nMISTRESS FORD:\nHe's a-birding, sweet Sir John.\n\nMISTRESS PAGE:\n\nMISTRESS FORD:\nStep into the chamber, Sir John.\n\nMISTRESS PAGE:\nHow now, sweetheart! who's at home besides yourself?\n\nMISTRESS FORD:\nWhy, none but mine own people.\n\nMISTRESS PAGE:\nIndeed!\n\nMISTRESS FORD:\nNo, certainly.\nSpeak louder.\n\nMISTRESS PAGE:\nTruly, I am so glad you have nobody here.\n\nMISTRESS FORD:\nWhy?\n\nMISTRESS PAGE:\nWhy, woman, your husband is in his old lunes again:\nhe so takes on yonder with my husband; so rails\nagainst all married mankind; so curses all Eve's\ndaughters, of what complexion soever; and so buffets\nhimself on the forehead, crying, 'Peer out, peer\nout!' that any madness I ever yet beheld seemed but\ntameness, civility and patience, to this his\ndistemper he is in now: I am glad the fat knight is not here.\n\nMISTRESS FORD:\nWhy, does he talk of him?\n\nMISTRESS PAGE:\nOf none but him; and swears he was carried out, the\nlast time he searched for him, in a basket; protests\nto my husband he is now here, and hath drawn him and\nthe rest of their company from their sport, to make\nanother experiment of his suspicion: but I am glad\nthe knight is not here; now he shall see his own foolery.\n\nMISTRESS FORD:\nHow near is he, Mistress Page?\n\nMISTRESS PAGE:\nHard by; at street end; he will be here anon.\n\nMISTRESS FORD:\nI am undone! The knight is here.\n\nMISTRESS PAGE:\nWhy then you are utterly shamed, and he's but a dead\nman. What a woman are you!--Away with him, away\nwith him! better shame than murder.\n\nFORD:\nWhich way should be go? how should I bestow him?\nShall I put him into the basket again?\n\nFALSTAFF:\nNo, I'll come no more i' the basket. May I not go\nout ere he come?\n\nMISTRESS PAGE:\nAlas, three of Master Ford's brothers watch the door\nwith pistols, that none shall issue out; otherwise\nyou might slip away ere he came. But what make you here?\n\nFALSTAFF:\nWhat shall I do? I'll creep up into the chimney.\n\nMISTRESS FORD:\nThere they always use to discharge their\nbirding-pieces. Creep into the kiln-hole.\n\nFALSTAFF:\nWhere is it?\n\nMISTRESS FORD:\nHe will seek there, on my word. Neither press,\ncoffer, chest, trunk, well, vault, but he hath an\nabstract for the remembrance of such places, and\ngoes to them by his note: there is no hiding you in the house.\n\nFALSTAFF:\nI'll go out then.\n\nMISTRESS PAGE:\nIf you go out in your own semblance, you die, Sir\nJohn. Unless you go out disguised--\n\nMISTRESS FORD:\nHow might we disguise him?\n\nMISTRESS PAGE:\nAlas the day, I know not! There is no woman's gown\nbig enough for him otherwise he might put on a hat,\na muffler and a kerchief, and so escape.\n\nFALSTAFF:\nGood hearts, devise something: any extremity rather\nthan a mischief.\n\nMISTRESS FORD:\nMy maid's aunt, the fat woman of Brentford, has a\ngown above.\n\nMISTRESS PAGE:\nOn my word, it will serve him; she's as big as he\nis: and there's her thrummed hat and her muffler\ntoo. Run up, Sir John.\n\nMISTRESS FORD:\nGo, go, sweet Sir John: Mistress Page and I will\nlook some linen for your head.\n\nMISTRESS PAGE:\nQuick, quick! we'll come dress you straight: put\non the gown the while.\n\nMISTRESS FORD:\nI would my husband would meet him in this shape: he\ncannot abide the old woman of Brentford; he swears\nshe's a witch; forbade her my house and hath\nthreatened to beat her.\n\nMISTRESS PAGE:\nHeaven guide him to thy husband's cudgel, and the\ndevil guide his cudgel afterwards!\n\nMISTRESS FORD:\nBut is my husband coming?\n\nMISTRESS PAGE:\nAh, in good sadness, is he; and talks of the basket\ntoo, howsoever he hath had intelligence.\n\nMISTRESS FORD:\nWe'll try that; for I'll appoint my men to carry the\nbasket again, to meet him at the door with it, as\nthey did last time.\n\nMISTRESS PAGE:\nNay, but he'll be here presently: let's go dress him\nlike the witch of Brentford.\n\nMISTRESS FORD:\nI'll first direct my men what they shall do with the\nbasket. Go up; I'll bring linen for him straight.\n\nMISTRESS PAGE:\nHang him, dishonest varlet! we cannot misuse him enough.\nWe'll leave a proof, by that which we will do,\nWives may be merry, and yet honest too:\nWe do not act that often jest and laugh;\n'Tis old, but true, Still swine eat all the draff.\n\nMISTRESS FORD:\nGo, sirs, take the basket again on your shoulders:\nyour master is hard at door; if he bid you set it\ndown, obey him: quickly, dispatch.\n\nFirst Servant:\nCome, come, take it up.\n\nSecond Servant:\nPray heaven it be not full of knight again.\n\nFirst Servant:\nI hope not; I had as lief bear so much lead.\n\nFORD:\nAy, but if it prove true, Master Page, have you any\nway then to unfool me again? Set down the basket,\nvillain! Somebody call my wife. Youth in a basket!\nO you panderly rascals! there's a knot, a ging, a\npack, a conspiracy against me: now shall the devil\nbe shamed. What, wife, I say! Come, come forth!\nBehold what honest clothes you send forth to bleaching!\n\nPAGE:\nWhy, this passes, Master Ford; you are not to go\nloose any longer; you must be pinioned.\n\nSIR HUGH EVANS:\nWhy, this is lunatics! this is mad as a mad dog!\n\nSHALLOW:\nIndeed, Master Ford, this is not well, indeed.\n\nFORD:\nSo say I too, sir.\nCome hither, Mistress Ford; Mistress Ford the honest\nwoman, the modest wife, the virtuous creature, that\nhath the jealous fool to her husband! I suspect\nwithout cause, mistress, do I?\n\nMISTRESS FORD:\nHeaven be my witness you do, if you suspect me in\nany dishonesty.\n\nFORD:\nWell said, brazen-face! hold it out. Come forth, sirrah!\n\nPAGE:\nThis passes!\n\nMISTRESS FORD:\nAre you not ashamed? let the clothes alone.\n\nFORD:\nI shall find you anon.\n\nSIR HUGH EVANS:\n'Tis unreasonable! Will you take up your wife's\nclothes? Come away.\n\nFORD:\nEmpty the basket, I say!\n\nMISTRESS FORD:\nWhy, man, why?\n\nFORD:\nMaster Page, as I am a man, there was one conveyed\nout of my house yesterday in this basket: why may\nnot he be there again? In my house I am sure he is:\nmy intelligence is true; my jealousy is reasonable.\nPluck me out all the linen.\n\nMISTRESS FORD:\nIf you find a man there, he shall die a flea's death.\n\nPAGE:\nHere's no man.\n\nSHALLOW:\nBy my fidelity, this is not well, Master Ford; this\nwrongs you.\n\nSIR HUGH EVANS:\nMaster Ford, you must pray, and not follow the\nimaginations of your own heart: this is jealousies.\n\nFORD:\nWell, he's not here I seek for.\n\nPAGE:\nNo, nor nowhere else but in your brain.\n\nFORD:\nHelp to search my house this one time. If I find\nnot what I seek, show no colour for my extremity; let\nme for ever be your table-sport; let them say of\nme, 'As jealous as Ford, Chat searched a hollow\nwalnut for his wife's leman.' Satisfy me once more;\nonce more search with me.\n\nMISTRESS FORD:\nWhat, ho, Mistress Page! come you and the old woman\ndown; my husband will come into the chamber.\n\nFORD:\nOld woman! what old woman's that?\n\nMISTRESS FORD:\nNay, it is my maid's aunt of Brentford.\n\nFORD:\nA witch, a quean, an old cozening quean! Have I not\nforbid her my house? She comes of errands, does\nshe? We are simple men; we do not know what's\nbrought to pass under the profession of\nfortune-telling. She works by charms, by spells,\nby the figure, and such daubery as this is, beyond\nour element we know nothing. Come down, you witch,\nyou hag, you; come down, I say!\n\nMISTRESS FORD:\nNay, good, sweet husband! Good gentlemen, let him\nnot strike the old woman.\n\nMISTRESS PAGE:\nCome, Mother Prat; come, give me your hand.\n\nFORD:\nI'll prat her.\nOut of my door, you witch, you hag, you baggage, you\npolecat, you runyon! out, out! I'll conjure you,\nI'll fortune-tell you.\n\nMISTRESS PAGE:\nAre you not ashamed? I think you have killed the\npoor woman.\n\nMISTRESS FORD:\nNay, he will do it. 'Tis a goodly credit for you.\n\nFORD:\nHang her, witch!\n\nSIR HUGH EVANS:\nBy the yea and no, I think the 'oman is a witch\nindeed: I like not when a 'oman has a great peard;\nI spy a great peard under his muffler.\n\nFORD:\nWill you follow, gentlemen? I beseech you, follow;\nsee but the issue of my jealousy: if I cry out thus\nupon no trail, never trust me when I open again.\n\nPAGE:\nLet's obey his humour a little further: come,\ngentlemen.\n\nMISTRESS PAGE:\nTrust me, he beat him most pitifully.\n\nMISTRESS FORD:\nNay, by the mass, that he did not; he beat him most\nunpitifully, methought.\n\nMISTRESS PAGE:\nI'll have the cudgel hallowed and hung o'er the\naltar; it hath done meritorious service.\n\nMISTRESS FORD:\nWhat think you? may we, with the warrant of\nwomanhood and the witness of a good conscience,\npursue him with any further revenge?\n\nMISTRESS PAGE:\nThe spirit of wantonness is, sure, scared out of\nhim: if the devil have him not in fee-simple, with\nfine and recovery, he will never, I think, in the\nway of waste, attempt us again.\n\nMISTRESS FORD:\nShall we tell our husbands how we have served him?\n\nMISTRESS PAGE:\nYes, by all means; if it be but to scrape the\nfigures out of your husband's brains. If they can\nfind in their hearts the poor unvirtuous fat knight\nshall be any further afflicted, we two will still be\nthe ministers.\n\nMISTRESS FORD:\nI'll warrant they'll have him publicly shamed: and\nmethinks there would be no period to the jest,\nshould he not be publicly shamed.\n\nMISTRESS PAGE:\nCome, to the forge with it then; shape it: I would\nnot have things cool.\n\nBARDOLPH:\nSir, the Germans desire to have three of your\nhorses: the duke himself will be to-morrow at\ncourt, and they are going to meet him.\n\nHost:\nWhat duke should that be comes so secretly? I hear\nnot of him in the court. Let me speak with the\ngentlemen: they speak English?\n\nBARDOLPH:\nAy, sir; I'll call them to you.\n\nHost:\nThey shall have my horses; but I'll make them pay;\nI'll sauce them: they have had my house a week at\ncommand; I have turned away my other guests: they\nmust come off; I'll sauce them. Come.\n\nSIR HUGH EVANS:\n'Tis one of the best discretions of a 'oman as ever\nI did look upon.\n\nPAGE:\nAnd did he send you both these letters at an instant?\n\nMISTRESS PAGE:\nWithin a quarter of an hour.\n\nFORD:\nPardon me, wife. Henceforth do what thou wilt;\nI rather will suspect the sun with cold\nThan thee with wantonness: now doth thy honour stand\nIn him that was of late an heretic,\nAs firm as faith.\n\nPAGE:\n'Tis well, 'tis well; no more:\nBe not as extreme in submission\nAs in offence.\nBut let our plot go forward: let our wives\nYet once again, to make us public sport,\nAppoint a meeting with this old fat fellow,\nWhere we may take him and disgrace him for it.\n\nFORD:\nThere is no better way than that they spoke of.\n\nPAGE:\nHow? to send him word they'll meet him in the park\nat midnight? Fie, fie! he'll never come.\n\nSIR HUGH EVANS:\nYou say he has been thrown in the rivers and has\nbeen grievously peaten as an old 'oman: methinks\nthere should be terrors in him that he should not\ncome; methinks his flesh is punished, he shall have\nno desires.\n\nPAGE:\nSo think I too.\n\nMISTRESS FORD:\nDevise but how you'll use him when he comes,\nAnd let us two devise to bring him thither.\n\nMISTRESS PAGE:\nThere is an old tale goes that Herne the hunter,\nSometime a keeper here in Windsor forest,\nDoth all the winter-time, at still midnight,\nWalk round about an oak, with great ragg'd horns;\nAnd there he blasts the tree and takes the cattle\nAnd makes milch-kine yield blood and shakes a chain\nIn a most hideous and dreadful manner:\nYou have heard of such a spirit, and well you know\nThe superstitious idle-headed eld\nReceived and did deliver to our age\nThis tale of Herne the hunter for a truth.\n\nPAGE:\nWhy, yet there want not many that do fear\nIn deep of night to walk by this Herne's oak:\nBut what of this?\n\nMISTRESS FORD:\nMarry, this is our device;\nThat Falstaff at that oak shall meet with us.\n\nPAGE:\nWell, let it not be doubted but he'll come:\nAnd in this shape when you have brought him thither,\nWhat shall be done with him? what is your plot?\n\nMISTRESS PAGE:\nThat likewise have we thought upon, and thus:\nNan Page my daughter and my little son\nAnd three or four more of their growth we'll dress\nLike urchins, ouphes and fairies, green and white,\nWith rounds of waxen tapers on their heads,\nAnd rattles in their hands: upon a sudden,\nAs Falstaff, she and I, are newly met,\nLet them from forth a sawpit rush at once\nWith some diffused song: upon their sight,\nWe two in great amazedness will fly:\nThen let them all encircle him about\nAnd, fairy-like, to-pinch the unclean knight,\nAnd ask him why, that hour of fairy revel,\nIn their so sacred paths he dares to tread\nIn shape profane.\n\nMISTRESS FORD:\nAnd till he tell the truth,\nLet the supposed fairies pinch him sound\nAnd burn him with their tapers.\n\nMISTRESS PAGE:\nThe truth being known,\nWe'll all present ourselves, dis-horn the spirit,\nAnd mock him home to Windsor.\n\nFORD:\nThe children must\nBe practised well to this, or they'll ne'er do't.\n\nSIR HUGH EVANS:\nI will teach the children their behaviors; and I\nwill be like a jack-an-apes also, to burn the\nknight with my taber.\n\nFORD:\nThat will be excellent. I'll go and buy them vizards.\n\nMISTRESS PAGE:\nMy Nan shall be the queen of all the fairies,\nFinely attired in a robe of white.\n\nPAGE:\nThat silk will I go buy.\nAnd in that time\nShall Master Slender steal my Nan away\nAnd marry her at Eton. Go send to Falstaff straight.\n\nFORD:\nNay I'll to him again in name of Brook\nHe'll tell me all his purpose: sure, he'll come.\n\nMISTRESS PAGE:\nFear not you that. Go get us properties\nAnd tricking for our fairies.\n\nSIR HUGH EVANS:\nLet us about it: it is admirable pleasures and fery\nhonest knaveries.\n\nMISTRESS PAGE:\nGo, Mistress Ford,\nSend quickly to Sir John, to know his mind.\nI'll to the doctor: he hath my good will,\nAnd none but he, to marry with Nan Page.\nThat Slender, though well landed, is an idiot;\nAnd he my husband best of all affects.\nThe doctor is well money'd, and his friends\nPotent at court: he, none but he, shall have her,\nThough twenty thousand worthier come to crave her.\n\nHost:\nWhat wouldst thou have, boor? what: thick-skin?\nspeak, breathe, discuss; brief, short, quick, snap.\n\nSIMPLE:\nMarry, sir, I come to speak with Sir John Falstaff\nfrom Master Slender.\n\nHost:\nThere's his chamber, his house, his castle, his\nstanding-bed and truckle-bed; 'tis painted about\nwith the story of the Prodigal, fresh and new. Go\nknock and call; hell speak like an Anthropophaginian\nunto thee: knock, I say.\n\nSIMPLE:\nThere's an old woman, a fat woman, gone up into his\nchamber: I'll be so bold as stay, sir, till she come\ndown; I come to speak with her, indeed.\n\nHost:\nHa! a fat woman! the knight may be robbed: I'll\ncall. Bully knight! bully Sir John! speak from\nthy lungs military: art thou there? it is thine\nhost, thine Ephesian, calls.\n\nFALSTAFF:\n\nHost:\nHere's a Bohemian-Tartar tarries the coming down of\nthy fat woman. Let her descend, bully, let her\ndescend; my chambers are honourable: fie! privacy?\nfie!\n\nFALSTAFF:\nThere was, mine host, an old fat woman even now with\nme; but she's gone.\n\nSIMPLE:\nPray you, sir, was't not the wise woman of\nBrentford?\n\nFALSTAFF:\nAy, marry, was it, mussel-shell: what would you with her?\n\nSIMPLE:\nMy master, sir, Master Slender, sent to her, seeing\nher go through the streets, to know, sir, whether\none Nym, sir, that beguiled him of a chain, had the\nchain or no.\n\nFALSTAFF:\nI spake with the old woman about it.\n\nSIMPLE:\nAnd what says she, I pray, sir?\n\nFALSTAFF:\nMarry, she says that the very same man that\nbeguiled Master Slender of his chain cozened him of\nit.\n\nSIMPLE:\nI would I could have spoken with the woman herself;\nI had other things to have spoken with her too from\nhim.\n\nFALSTAFF:\nWhat are they? let us know.\n\nHost:\nAy, come; quick.\n\nSIMPLE:\nI may not conceal them, sir.\n\nHost:\nConceal them, or thou diest.\n\nSIMPLE:\nWhy, sir, they were nothing but about Mistress Anne\nPage; to know if it were my master's fortune to\nhave her or no.\n\nFALSTAFF:\n'Tis, 'tis his fortune.\n\nSIMPLE:\nWhat, sir?\n\nFALSTAFF:\nTo have her, or no. Go; say the woman told me so.\n\nSIMPLE:\nMay I be bold to say so, sir?\n\nFALSTAFF:\nAy, sir; like who more bold.\n\nSIMPLE:\nI thank your worship: I shall make my master glad\nwith these tidings.\n\nHost:\nThou art clerkly, thou art clerkly, Sir John. Was\nthere a wise woman with thee?\n\nFALSTAFF:\nAy, that there was, mine host; one that hath taught\nme more wit than ever I learned before in my life;\nand I paid nothing for it neither, but was paid for\nmy learning.\n\nBARDOLPH:\nOut, alas, sir! cozenage, mere cozenage!\n\nHost:\nWhere be my horses? speak well of them, varletto.\n\nBARDOLPH:\nRun away with the cozeners; for so soon as I came\nbeyond Eton, they threw me off from behind one of\nthem, in a slough of mire; and set spurs and away,\nlike three German devils, three Doctor Faustuses.\n\nHost:\nThey are gone but to meet the duke, villain: do not\nsay they be fled; Germans are honest men.\n\nSIR HUGH EVANS:\nWhere is mine host?\n\nHost:\nWhat is the matter, sir?\n\nSIR HUGH EVANS:\nHave a care of your entertainments: there is a\nfriend of mine come to town tells me there is three\ncozen-germans that has cozened all the hosts of\nReadins, of Maidenhead, of Colebrook, of horses and\nmoney. I tell you for good will, look you: you\nare wise and full of gibes and vlouting-stocks, and\n'tis not convenient you should be cozened. Fare you well.\n\nDOCTOR CAIUS:\nVere is mine host de Jarteer?\n\nHost:\nHere, master doctor, in perplexity and doubtful dilemma.\n\nDOCTOR CAIUS:\nI cannot tell vat is dat: but it is tell-a me dat\nyou make grand preparation for a duke de Jamany: by\nmy trot, dere is no duke dat the court is know to\ncome. I tell you for good vill: adieu.\n\nHost:\nHue and cry, villain, go! Assist me, knight. I am\nundone! Fly, run, hue and cry, villain! I am undone!\n\nFALSTAFF:\nI would all the world might be cozened; for I have\nbeen cozened and beaten too. If it should come to\nthe ear of the court, how I have been transformed\nand how my transformation hath been washed and\ncudgelled, they would melt me out of my fat drop by\ndrop and liquor fishermen's boots with me; I warrant\nthey would whip me with their fine wits till I were\nas crest-fallen as a dried pear. I never prospered\nsince I forswore myself at primero. Well, if my\nwind were but long enough to say my prayers, I would repent.\nNow, whence come you?\n\nMISTRESS QUICKLY:\nFrom the two parties, forsooth.\n\nFALSTAFF:\nThe devil take one party and his dam the other! and\nso they shall be both bestowed. I have suffered more\nfor their sakes, more than the villanous inconstancy\nof man's disposition is able to bear.\n\nMISTRESS QUICKLY:\nAnd have not they suffered? Yes, I warrant;\nspeciously one of them; Mistress Ford, good heart,\nis beaten black and blue, that you cannot see a\nwhite spot about her.\n\nFALSTAFF:\nWhat tellest thou me of black and blue? I was\nbeaten myself into all the colours of the rainbow;\nand I was like to be apprehended for the witch of\nBrentford: but that my admirable dexterity of wit,\nmy counterfeiting the action of an old woman,\ndelivered me, the knave constable had set me i' the\nstocks, i' the common stocks, for a witch.\n\nMISTRESS QUICKLY:\nSir, let me speak with you in your chamber: you\nshall hear how things go; and, I warrant, to your\ncontent. Here is a letter will say somewhat. Good\nhearts, what ado here is to bring you together!\nSure, one of you does not serve heaven well, that\nyou are so crossed.\n\nFALSTAFF:\nCome up into my chamber.\n\nHost:\nMaster Fenton, talk not to me; my mind is heavy: I\nwill give over all.\n\nFENTON:\nYet hear me speak. Assist me in my purpose,\nAnd, as I am a gentleman, I'll give thee\nA hundred pound in gold more than your loss.\n\nHost:\nI will hear you, Master Fenton; and I will at the\nleast keep your counsel.\n\nFENTON:\nFrom time to time I have acquainted you\nWith the dear love I bear to fair Anne Page;\nWho mutually hath answer'd my affection,\nSo far forth as herself might be her chooser,\nEven to my wish: I have a letter from her\nOf such contents as you will wonder at;\nThe mirth whereof so larded with my matter,\nThat neither singly can be manifested,\nWithout the show of both; fat Falstaff\nHath a great scene: the image of the jest\nI'll show you here at large. Hark, good mine host.\nTo-night at Herne's oak, just 'twixt twelve and one,\nMust my sweet Nan present the Fairy Queen;\nThe purpose why, is here: in which disguise,\nWhile other jests are something rank on foot,\nHer father hath commanded her to slip\nAway with Slender and with him at Eton\nImmediately to marry: she hath consented: Now, sir,\nHer mother, ever strong against that match\nAnd firm for Doctor Caius, hath appointed\nThat he shall likewise shuffle her away,\nWhile other sports are tasking of their minds,\nAnd at the deanery, where a priest attends,\nStraight marry her: to this her mother's plot\nShe seemingly obedient likewise hath\nMade promise to the doctor. Now, thus it rests:\nHer father means she shall be all in white,\nAnd in that habit, when Slender sees his time\nTo take her by the hand and bid her go,\nShe shall go with him: her mother hath intended,\nThe better to denote her to the doctor,\nFor they must all be mask'd and vizarded,\nThat quaint in green she shall be loose enrobed,\nWith ribands pendent, flaring 'bout her head;\nAnd when the doctor spies his vantage ripe,\nTo pinch her by the hand, and, on that token,\nThe maid hath given consent to go with him.\n\nHost:\nWhich means she to deceive, father or mother?\n\nFENTON:\nBoth, my good host, to go along with me:\nAnd here it rests, that you'll procure the vicar\nTo stay for me at church 'twixt twelve and one,\nAnd, in the lawful name of marrying,\nTo give our hearts united ceremony.\n\nHost:\nWell, husband your device; I'll to the vicar:\nBring you the maid, you shall not lack a priest.\n\nFENTON:\nSo shall I evermore be bound to thee;\nBesides, I'll make a present recompense.\n\nFALSTAFF:\nPrithee, no more prattling; go. I'll hold. This is\nthe third time; I hope good luck lies in odd\nnumbers. Away I go. They say there is divinity in\nodd numbers, either in nativity, chance, or death. Away!\n\nMISTRESS QUICKLY:\nI'll provide you a chain; and I'll do what I can to\nget you a pair of horns.\n\nFALSTAFF:\nAway, I say; time wears: hold up your head, and mince.\nHow now, Master Brook! Master Brook, the matter\nwill be known to-night, or never. Be you in the\nPark about midnight, at Herne's oak, and you shall\nsee wonders.\n\nFORD:\nWent you not to her yesterday, sir, as you told me\nyou had appointed?\n\nFALSTAFF:\nI went to her, Master Brook, as you see, like a poor\nold man: but I came from her, Master Brook, like a\npoor old woman. That same knave Ford, her husband,\nhath the finest mad devil of jealousy in him,\nMaster Brook, that ever governed frenzy. I will tell\nyou: he beat me grievously, in the shape of a\nwoman; for in the shape of man, Master Brook, I fear\nnot Goliath with a weaver's beam; because I know\nalso life is a shuttle. I am in haste; go along\nwith me: I'll tell you all, Master Brook. Since I\nplucked geese, played truant and whipped top, I knew\nnot what 'twas to be beaten till lately. Follow\nme: I'll tell you strange things of this knave\nFord, on whom to-night I will be revenged, and I\nwill deliver his wife into your hand. Follow.\nStrange things in hand, Master Brook! Follow.\n\nPAGE:\nCome, come; we'll couch i' the castle-ditch till we\nsee the light of our fairies. Remember, son Slender,\nmy daughter.\n\nSLENDER:\nAy, forsooth; I have spoke with her and we have a\nnay-word how to know one another: I come to her in\nwhite, and cry 'mum;' she cries 'budget;' and by\nthat we know one another.\n\nSHALLOW:\nThat's good too: but what needs either your 'mum'\nor her 'budget?' the white will decipher her well\nenough. It hath struck ten o'clock.\n\nPAGE:\nThe night is dark; light and spirits will become it\nwell. Heaven prosper our sport! No man means evil\nbut the devil, and we shall know him by his horns.\nLet's away; follow me.\n\nMISTRESS PAGE:\nMaster doctor, my daughter is in green: when you\nsee your time, take her by the band, away with her\nto the deanery, and dispatch it quickly. Go before\ninto the Park: we two must go together.\n\nDOCTOR CAIUS:\nI know vat I have to do. Adieu.\n\nMISTRESS PAGE:\nFare you well, sir.\nMy husband will not rejoice so much at the abuse of\nFalstaff as he will chafe at the doctor's marrying\nmy daughter: but 'tis no matter; better a little\nchiding than a great deal of heart-break.\n\nMISTRESS FORD:\nWhere is Nan now and her troop of fairies, and the\nWelsh devil Hugh?\n\nMISTRESS PAGE:\nThey are all couched in a pit hard by Herne's oak,\nwith obscured lights; which, at the very instant of\nFalstaff's and our meeting, they will at once\ndisplay to the night.\n\nMISTRESS FORD:\nThat cannot choose but amaze him.\n\nMISTRESS PAGE:\nIf he be not amazed, he will be mocked; if he be\namazed, he will every way be mocked.\n\nMISTRESS FORD:\nWe'll betray him finely.\n\nMISTRESS PAGE:\nAgainst such lewdsters and their lechery\nThose that betray them do no treachery.\n\nMISTRESS FORD:\nThe hour draws on. To the oak, to the oak!\n\nSIR HUGH EVANS:\nTrib, trib, fairies; come; and remember your parts:\nbe pold, I pray you; follow me into the pit; and\nwhen I give the watch-'ords, do as I pid you:\ncome, come; trib, trib.\n\nFALSTAFF:\nThe Windsor bell hath struck twelve; the minute\ndraws on. Now, the hot-blooded gods assist me!\nRemember, Jove, thou wast a bull for thy Europa; love\nset on thy horns. O powerful love! that, in some\nrespects, makes a beast a man, in some other, a man\na beast. You were also, Jupiter, a swan for the love\nof Leda. O omnipotent Love! how near the god drew\nto the complexion of a goose! A fault done first in\nthe form of a beast. O Jove, a beastly fault! And\nthen another fault in the semblance of a fowl; think\non 't, Jove; a foul fault! When gods have hot\nbacks, what shall poor men do? For me, I am here a\nWindsor stag; and the fattest, I think, i' the\nforest. Send me a cool rut-time, Jove, or who can\nblame me to piss my tallow? Who comes here? my\ndoe?\n\nMISTRESS FORD:\nSir John! art thou there, my deer? my male deer?\n\nFALSTAFF:\nMy doe with the black scut! Let the sky rain\npotatoes; let it thunder to the tune of Green\nSleeves, hail kissing-comfits and snow eringoes; let\nthere come a tempest of provocation, I will shelter me here.\n\nMISTRESS FORD:\nMistress Page is come with me, sweetheart.\n\nFALSTAFF:\nDivide me like a bribe buck, each a haunch: I will\nkeep my sides to myself, my shoulders for the fellow\nof this walk, and my horns I bequeath your husbands.\nAm I a woodman, ha? Speak I like Herne the hunter?\nWhy, now is Cupid a child of conscience; he makes\nrestitution. As I am a true spirit, welcome!\n\nMISTRESS PAGE:\nAlas, what noise?\n\nMISTRESS FORD:\nHeaven forgive our sins\n\nFALSTAFF:\nWhat should this be?\n\nMISTRESS FORD:\nAway, away!\n\nFALSTAFF:\nI think the devil will not have me damned, lest the\noil that's in me should set hell on fire; he would\nnever else cross me thus.\n\nMISTRESS QUICKLY:\nFairies, black, grey, green, and white,\nYou moonshine revellers and shades of night,\nYou orphan heirs of fixed destiny,\nAttend your office and your quality.\nCrier Hobgoblin, make the fairy oyes.\n\nPISTOL:\nElves, list your names; silence, you airy toys.\nCricket, to Windsor chimneys shalt thou leap:\nWhere fires thou find'st unraked and hearths unswept,\nThere pinch the maids as blue as bilberry:\nOur radiant queen hates sluts and sluttery.\n\nFALSTAFF:\nThey are fairies; he that speaks to them shall die:\nI'll wink and couch: no man their works must eye.\n\nSIR HUGH EVANS:\nWhere's Bede? Go you, and where you find a maid\nThat, ere she sleep, has thrice her prayers said,\nRaise up the organs of her fantasy;\nSleep she as sound as careless infancy:\nBut those as sleep and think not on their sins,\nPinch them, arms, legs, backs, shoulders, sides and shins.\n\nMISTRESS QUICKLY:\nAbout, about;\nSearch Windsor Castle, elves, within and out:\nStrew good luck, ouphes, on every sacred room:\nThat it may stand till the perpetual doom,\nIn state as wholesome as in state 'tis fit,\nWorthy the owner, and the owner it.\nThe several chairs of order look you scour\nWith juice of balm and every precious flower:\nEach fair instalment, coat, and several crest,\nWith loyal blazon, evermore be blest!\nAnd nightly, meadow-fairies, look you sing,\nLike to the Garter's compass, in a ring:\nThe expressure that it bears, green let it be,\nMore fertile-fresh than all the field to see;\nAnd 'Honi soit qui mal y pense' write\nIn emerald tufts, flowers purple, blue and white;\nLet sapphire, pearl and rich embroidery,\nBuckled below fair knighthood's bending knee:\nFairies use flowers for their charactery.\nAway; disperse: but till 'tis one o'clock,\nOur dance of custom round about the oak\nOf Herne the hunter, let us not forget.\n\nSIR HUGH EVANS:\nPray you, lock hand in hand; yourselves in order set\nAnd twenty glow-worms shall our lanterns be,\nTo guide our measure round about the tree.\nBut, stay; I smell a man of middle-earth.\n\nFALSTAFF:\nHeavens defend me from that Welsh fairy, lest he\ntransform me to a piece of cheese!\n\nPISTOL:\nVile worm, thou wast o'erlook'd even in thy birth.\n\nMISTRESS QUICKLY:\nWith trial-fire touch me his finger-end:\nIf he be chaste, the flame will back descend\nAnd turn him to no pain; but if he start,\nIt is the flesh of a corrupted heart.\n\nPISTOL:\nA trial, come.\n\nSIR HUGH EVANS:\nCome, will this wood take fire?\n\nFALSTAFF:\nOh, Oh, Oh!\n\nMISTRESS QUICKLY:\nCorrupt, corrupt, and tainted in desire!\nAbout him, fairies; sing a scornful rhyme;\nAnd, as you trip, still pinch him to your time.\nFie on sinful fantasy!\nFie on lust and luxury!\nLust is but a bloody fire,\nKindled with unchaste desire,\nFed in heart, whose flames aspire\nAs thoughts do blow them, higher and higher.\nPinch him, fairies, mutually;\nPinch him for his villany;\nPinch him, and burn him, and turn him about,\nTill candles and starlight and moonshine be out.\n\nPAGE:\nNay, do not fly; I think we have watch'd you now\nWill none but Herne the hunter serve your turn?\n\nMISTRESS PAGE:\nI pray you, come, hold up the jest no higher\nNow, good Sir John, how like you Windsor wives?\nSee you these, husband? do not these fair yokes\nBecome the forest better than the town?\n\nFORD:\nNow, sir, who's a cuckold now? Master Brook,\nFalstaff's a knave, a cuckoldly knave; here are his\nhorns, Master Brook: and, Master Brook, he hath\nenjoyed nothing of Ford's but his buck-basket, his\ncudgel, and twenty pounds of money, which must be\npaid to Master Brook; his horses are arrested for\nit, Master Brook.\n\nMISTRESS FORD:\nSir John, we have had ill luck; we could never meet.\nI will never take you for my love again; but I will\nalways count you my deer.\n\nFALSTAFF:\nI do begin to perceive that I am made an ass.\n\nFORD:\nAy, and an ox too: both the proofs are extant.\n\nFALSTAFF:\nAnd these are not fairies? I was three or four\ntimes in the thought they were not fairies: and yet\nthe guiltiness of my mind, the sudden surprise of my\npowers, drove the grossness of the foppery into a\nreceived belief, in despite of the teeth of all\nrhyme and reason, that they were fairies. See now\nhow wit may be made a Jack-a-Lent, when 'tis upon\nill employment!\n\nSIR HUGH EVANS:\nSir John Falstaff, serve Got, and leave your\ndesires, and fairies will not pinse you.\n\nFORD:\nWell said, fairy Hugh.\n\nSIR HUGH EVANS:\nAnd leave your jealousies too, I pray you.\n\nFORD:\nI will never mistrust my wife again till thou art\nable to woo her in good English.\n\nFALSTAFF:\nHave I laid my brain in the sun and dried it, that\nit wants matter to prevent so gross o'erreaching as\nthis? Am I ridden with a Welsh goat too? shall I\nhave a coxcomb of frize? 'Tis time I were choked\nwith a piece of toasted cheese.\n\nSIR HUGH EVANS:\nSeese is not good to give putter; your belly is all putter.\n\nFALSTAFF:\n'Seese' and 'putter'! have I lived to stand at the\ntaunt of one that makes fritters of English? This\nis enough to be the decay of lust and late-walking\nthrough the realm.\n\nMISTRESS PAGE:\nWhy Sir John, do you think, though we would have the\nvirtue out of our hearts by the head and shoulders\nand have given ourselves without scruple to hell,\nthat ever the devil could have made you our delight?\n\nFORD:\nWhat, a hodge-pudding? a bag of flax?\n\nMISTRESS PAGE:\nA puffed man?\n\nPAGE:\nOld, cold, withered and of intolerable entrails?\n\nFORD:\nAnd one that is as slanderous as Satan?\n\nPAGE:\nAnd as poor as Job?\n\nFORD:\nAnd as wicked as his wife?\n\nSIR HUGH EVANS:\nAnd given to fornications, and to taverns and sack\nand wine and metheglins, and to drinkings and\nswearings and starings, pribbles and prabbles?\n\nFALSTAFF:\nWell, I am your theme: you have the start of me; I\nam dejected; I am not able to answer the Welsh\nflannel; ignorance itself is a plummet o'er me: use\nme as you will.\n\nFORD:\nMarry, sir, we'll bring you to Windsor, to one\nMaster Brook, that you have cozened of money, to\nwhom you should have been a pander: over and above\nthat you have suffered, I think to repay that money\nwill be a biting affliction.\n\nPAGE:\nYet be cheerful, knight: thou shalt eat a posset\nto-night at my house; where I will desire thee to\nlaugh at my wife, that now laughs at thee: tell her\nMaster Slender hath married her daughter.\n\nMISTRESS PAGE:\n\nSLENDER:\nWhoa ho! ho, father Page!\n\nPAGE:\nSon, how now! how now, son! have you dispatched?\n\nSLENDER:\nDispatched! I'll make the best in Gloucestershire\nknow on't; would I were hanged, la, else.\n\nPAGE:\nOf what, son?\n\nSLENDER:\nI came yonder at Eton to marry Mistress Anne Page,\nand she's a great lubberly boy. If it had not been\ni' the church, I would have swinged him, or he\nshould have swinged me. If I did not think it had\nbeen Anne Page, would I might never stir!--and 'tis\na postmaster's boy.\n\nPAGE:\nUpon my life, then, you took the wrong.\n\nSLENDER:\nWhat need you tell me that? I think so, when I took\na boy for a girl. If I had been married to him, for\nall he was in woman's apparel, I would not have had\nhim.\n\nPAGE:\nWhy, this is your own folly. Did not I tell you how\nyou should know my daughter by her garments?\n\nSLENDER:\nI went to her in white, and cried 'mum,' and she\ncried 'budget,' as Anne and I had appointed; and yet\nit was not Anne, but a postmaster's boy.\n\nMISTRESS PAGE:\nGood George, be not angry: I knew of your purpose;\nturned my daughter into green; and, indeed, she is\nnow with the doctor at the deanery, and there married.\n\nDOCTOR CAIUS:\nVere is Mistress Page? By gar, I am cozened: I ha'\nmarried un garcon, a boy; un paysan, by gar, a boy;\nit is not Anne Page: by gar, I am cozened.\n\nMISTRESS PAGE:\nWhy, did you take her in green?\n\nDOCTOR CAIUS:\nAy, by gar, and 'tis a boy: by gar, I'll raise all Windsor.\n\nFORD:\nThis is strange. Who hath got the right Anne?\n\nPAGE:\nMy heart misgives me: here comes Master Fenton.\nHow now, Master Fenton!\n\nANNE PAGE:\nPardon, good father! good my mother, pardon!\n\nPAGE:\nNow, mistress, how chance you went not with Master Slender?\n\nMISTRESS PAGE:\nWhy went you not with master doctor, maid?\n\nFENTON:\nYou do amaze her: hear the truth of it.\nYou would have married her most shamefully,\nWhere there was no proportion held in love.\nThe truth is, she and I, long since contracted,\nAre now so sure that nothing can dissolve us.\nThe offence is holy that she hath committed;\nAnd this deceit loses the name of craft,\nOf disobedience, or unduteous title,\nSince therein she doth evitate and shun\nA thousand irreligious cursed hours,\nWhich forced marriage would have brought upon her.\n\nFORD:\nStand not amazed; here is no remedy:\nIn love the heavens themselves do guide the state;\nMoney buys lands, and wives are sold by fate.\n\nFALSTAFF:\nI am glad, though you have ta'en a special stand to\nstrike at me, that your arrow hath glanced.\n\nPAGE:\nWell, what remedy? Fenton, heaven give thee joy!\nWhat cannot be eschew'd must be embraced.\n\nFALSTAFF:\nWhen night-dogs run, all sorts of deer are chased.\n\nMISTRESS PAGE:\nWell, I will muse no further. Master Fenton,\nHeaven give you many, many merry days!\nGood husband, let us every one go home,\nAnd laugh this sport o'er by a country fire;\nSir John and all.\n\nFORD:\nLet it be so. Sir John,\nTo Master Brook you yet shall hold your word\nFor he tonight shall lie with Mistress Ford.\n\nAEGEON:\nProceed, Solinus, to procure my fall\nAnd by the doom of death end woes and all.\n\nDUKE SOLINUS:\nMerchant of Syracuse, plead no more;\nI am not partial to infringe our laws:\nThe enmity and discord which of late\nSprung from the rancorous outrage of your duke\nTo merchants, our well-dealing countrymen,\nWho wanting guilders to redeem their lives\nHave seal'd his rigorous statutes with their bloods,\nExcludes all pity from our threatening looks.\nFor, since the mortal and intestine jars\n'Twixt thy seditious countrymen and us,\nIt hath in solemn synods been decreed\nBoth by the Syracusians and ourselves,\nTo admit no traffic to our adverse towns Nay, more,\nIf any born at Ephesus be seen\nAt any Syracusian marts and fairs;\nAgain: if any Syracusian born\nCome to the bay of Ephesus, he dies,\nHis goods confiscate to the duke's dispose,\nUnless a thousand marks be levied,\nTo quit the penalty and to ransom him.\nThy substance, valued at the highest rate,\nCannot amount unto a hundred marks;\nTherefore by law thou art condemned to die.\n\nAEGEON:\nYet this my comfort: when your words are done,\nMy woes end likewise with the evening sun.\n\nDUKE SOLINUS:\nWell, Syracusian, say in brief the cause\nWhy thou departed'st from thy native home\nAnd for what cause thou camest to Ephesus.\n\nAEGEON:\nA heavier task could not have been imposed\nThan I to speak my griefs unspeakable:\nYet, that the world may witness that my end\nWas wrought by nature, not by vile offence,\nI'll utter what my sorrows give me leave.\nIn Syracusa was I born, and wed\nUnto a woman, happy but for me,\nAnd by me, had not our hap been bad.\nWith her I lived in joy; our wealth increased\nBy prosperous voyages I often made\nTo Epidamnum; till my factor's death\nAnd the great care of goods at random left\nDrew me from kind embracements of my spouse:\nFrom whom my absence was not six months old\nBefore herself, almost at fainting under\nThe pleasing punishment that women bear,\nHad made provision for her following me\nAnd soon and safe arrived where I was.\nThere had she not been long, but she became\nA joyful mother of two goodly sons;\nAnd, which was strange, the one so like the other,\nAs could not be distinguish'd but by names.\nThat very hour, and in the self-same inn,\nA meaner woman was delivered\nOf such a burden, male twins, both alike:\nThose,--for their parents were exceeding poor,--\nI bought and brought up to attend my sons.\nMy wife, not meanly proud of two such boys,\nMade daily motions for our home return:\nUnwilling I agreed. Alas! too soon,\nWe came aboard.\nA league from Epidamnum had we sail'd,\nBefore the always wind-obeying deep\nGave any tragic instance of our harm:\nBut longer did we not retain much hope;\nFor what obscured light the heavens did grant\nDid but convey unto our fearful minds\nA doubtful warrant of immediate death;\nWhich though myself would gladly have embraced,\nYet the incessant weepings of my wife,\nWeeping before for what she saw must come,\nAnd piteous plainings of the pretty babes,\nThat mourn'd for fashion, ignorant what to fear,\nForced me to seek delays for them and me.\nAnd this it was, for other means was none:\nThe sailors sought for safety by our boat,\nAnd left the ship, then sinking-ripe, to us:\nMy wife, more careful for the latter-born,\nHad fasten'd him unto a small spare mast,\nSuch as seafaring men provide for storms;\nTo him one of the other twins was bound,\nWhilst I had been like heedful of the other:\nThe children thus disposed, my wife and I,\nFixing our eyes on whom our care was fix'd,\nFasten'd ourselves at either end the mast;\nAnd floating straight, obedient to the stream,\nWas carried towards Corinth, as we thought.\nAt length the sun, gazing upon the earth,\nDispersed those vapours that offended us;\nAnd by the benefit of his wished light,\nThe seas wax'd calm, and we discovered\nTwo ships from far making amain to us,\nOf Corinth that, of Epidaurus this:\nBut ere they came,--O, let me say no more!\nGather the sequel by that went before.\n\nDUKE SOLINUS:\nNay, forward, old man; do not break off so;\nFor we may pity, though not pardon thee.\n\nAEGEON:\nO, had the gods done so, I had not now\nWorthily term'd them merciless to us!\nFor, ere the ships could meet by twice five leagues,\nWe were encounterd by a mighty rock;\nWhich being violently borne upon,\nOur helpful ship was splitted in the midst;\nSo that, in this unjust divorce of us,\nFortune had left to both of us alike\nWhat to delight in, what to sorrow for.\nHer part, poor soul! seeming as burdened\nWith lesser weight but not with lesser woe,\nWas carried with more speed before the wind;\nAnd in our sight they three were taken up\nBy fishermen of Corinth, as we thought.\nAt length, another ship had seized on us;\nAnd, knowing whom it was their hap to save,\nGave healthful welcome to their shipwreck'd guests;\nAnd would have reft the fishers of their prey,\nHad not their bark been very slow of sail;\nAnd therefore homeward did they bend their course.\nThus have you heard me sever'd from my bliss;\nThat by misfortunes was my life prolong'd,\nTo tell sad stories of my own mishaps.\n\nDUKE SOLINUS:\nAnd for the sake of them thou sorrowest for,\nDo me the favour to dilate at full\nWhat hath befall'n of them and thee till now.\n\nAEGEON:\nMy youngest boy, and yet my eldest care,\nAt eighteen years became inquisitive\nAfter his brother: and importuned me\nThat his attendant--so his case was like,\nReft of his brother, but retain'd his name--\nMight bear him company in the quest of him:\nWhom whilst I labour'd of a love to see,\nI hazarded the loss of whom I loved.\nFive summers have I spent in furthest Greece,\nRoaming clean through the bounds of Asia,\nAnd, coasting homeward, came to Ephesus;\nHopeless to find, yet loath to leave unsought\nOr that or any place that harbours men.\nBut here must end the story of my life;\nAnd happy were I in my timely death,\nCould all my travels warrant me they live.\n\nDUKE SOLINUS:\nHapless AEgeon, whom the fates have mark'd\nTo bear the extremity of dire mishap!\nNow, trust me, were it not against our laws,\nAgainst my crown, my oath, my dignity,\nWhich princes, would they, may not disannul,\nMy soul would sue as advocate for thee.\nBut, though thou art adjudged to the death\nAnd passed sentence may not be recall'd\nBut to our honour's great disparagement,\nYet I will favour thee in what I can.\nTherefore, merchant, I'll limit thee this day\nTo seek thy life by beneficial help:\nTry all the friends thou hast in Ephesus;\nBeg thou, or borrow, to make up the sum,\nAnd live; if no, then thou art doom'd to die.\nGaoler, take him to thy custody.\n\nGaoler:\nI will, my lord.\n\nAEGEON:\nHopeless and helpless doth AEgeon wend,\nBut to procrastinate his lifeless end.\n\nFirst Merchant:\nTherefore give out you are of Epidamnum,\nLest that your goods too soon be confiscate.\nThis very day a Syracusian merchant\nIs apprehended for arrival here;\nAnd not being able to buy out his life\nAccording to the statute of the town,\nDies ere the weary sun set in the west.\nThere is your money that I had to keep.\n\nANTIPHOLUS OF SYRACUSE:\nGo bear it to the Centaur, where we host,\nAnd stay there, Dromio, till I come to thee.\nWithin this hour it will be dinner-time:\nTill that, I'll view the manners of the town,\nPeruse the traders, gaze upon the buildings,\nAnd then return and sleep within mine inn,\nFor with long travel I am stiff and weary.\nGet thee away.\n\nDROMIO OF SYRACUSE:\nMany a man would take you at your word,\nAnd go indeed, having so good a mean.\n\nANTIPHOLUS OF SYRACUSE:\nA trusty villain, sir, that very oft,\nWhen I am dull with care and melancholy,\nLightens my humour with his merry jests.\nWhat, will you walk with me about the town,\nAnd then go to my inn and dine with me?\n\nFirst Merchant:\nI am invited, sir, to certain merchants,\nOf whom I hope to make much benefit;\nI crave your pardon. Soon at five o'clock,\nPlease you, I'll meet with you upon the mart\nAnd afterward consort you till bed-time:\nMy present business calls me from you now.\n\nANTIPHOLUS OF SYRACUSE:\nFarewell till then: I will go lose myself\nAnd wander up and down to view the city.\n\nFirst Merchant:\nSir, I commend you to your own content.\n\nANTIPHOLUS OF SYRACUSE:\nHe that commends me to mine own content\nCommends me to the thing I cannot get.\nI to the world am like a drop of water\nThat in the ocean seeks another drop,\nWho, falling there to find his fellow forth,\nUnseen, inquisitive, confounds himself:\nSo I, to find a mother and a brother,\nIn quest of them, unhappy, lose myself.\nHere comes the almanac of my true date.\nWhat now? how chance thou art return'd so soon?\n\nDROMIO OF EPHESUS:\nReturn'd so soon! rather approach'd too late:\nThe capon burns, the pig falls from the spit,\nThe clock hath strucken twelve upon the bell;\nMy mistress made it one upon my cheek:\nShe is so hot because the meat is cold;\nThe meat is cold because you come not home;\nYou come not home because you have no stomach;\nYou have no stomach having broke your fast;\nBut we that know what 'tis to fast and pray\nAre penitent for your default to-day.\n\nANTIPHOLUS OF SYRACUSE:\nStop in your wind, sir: tell me this, I pray:\nWhere have you left the money that I gave you?\n\nDROMIO OF EPHESUS:\nO,--sixpence, that I had o' Wednesday last\nTo pay the saddler for my mistress' crupper?\nThe saddler had it, sir; I kept it not.\n\nANTIPHOLUS OF SYRACUSE:\nI am not in a sportive humour now:\nTell me, and dally not, where is the money?\nWe being strangers here, how darest thou trust\nSo great a charge from thine own custody?\n\nDROMIO OF EPHESUS:\nI pray you, air, as you sit at dinner:\nI from my mistress come to you in post;\nIf I return, I shall be post indeed,\nFor she will score your fault upon my pate.\nMethinks your maw, like mine, should be your clock,\nAnd strike you home without a messenger.\n\nANTIPHOLUS OF SYRACUSE:\nCome, Dromio, come, these jests are out of season;\nReserve them till a merrier hour than this.\nWhere is the gold I gave in charge to thee?\n\nDROMIO OF EPHESUS:\nTo me, sir? why, you gave no gold to me.\n\nANTIPHOLUS OF SYRACUSE:\nCome on, sir knave, have done your foolishness,\nAnd tell me how thou hast disposed thy charge.\n\nDROMIO OF EPHESUS:\nMy charge was but to fetch you from the mart\nHome to your house, the Phoenix, sir, to dinner:\nMy mistress and her sister stays for you.\n\nANTIPHOLUS OF SYRACUSE:\nIn what safe place you have bestow'd my money,\nOr I shall break that merry sconce of yours\nThat stands on tricks when I am undisposed:\nWhere is the thousand marks thou hadst of me?\n\nDROMIO OF EPHESUS:\nI have some marks of yours upon my pate,\nSome of my mistress' marks upon my shoulders,\nBut not a thousand marks between you both.\nIf I should pay your worship those again,\nPerchance you will not bear them patiently.\n\nANTIPHOLUS OF SYRACUSE:\nThy mistress' marks? what mistress, slave, hast thou?\n\nDROMIO OF EPHESUS:\nYour worship's wife, my mistress at the Phoenix;\nShe that doth fast till you come home to dinner,\nAnd prays that you will hie you home to dinner.\n\nANTIPHOLUS OF SYRACUSE:\nWhat, wilt thou flout me thus unto my face,\nBeing forbid? There, take you that, sir knave.\n\nDROMIO OF EPHESUS:\nWhat mean you, sir? for God's sake, hold your hands!\nNay, and you will not, sir, I'll take my heels.\n\nANTIPHOLUS OF SYRACUSE:\nUpon my life, by some device or other\nThe villain is o'er-raught of all my money.\nThey say this town is full of cozenage,\nAs, nimble jugglers that deceive the eye,\nDark-working sorcerers that change the mind,\nSoul-killing witches that deform the body,\nDisguised cheaters, prating mountebanks,\nAnd many such-like liberties of sin:\nIf it prove so, I will be gone the sooner.\nI'll to the Centaur, to go seek this slave:\nI greatly fear my money is not safe.\n\nADRIANA:\nNeither my husband nor the slave return'd,\nThat in such haste I sent to seek his master!\nSure, Luciana, it is two o'clock.\n\nLUCIANA:\nPerhaps some merchant hath invited him,\nAnd from the mart he's somewhere gone to dinner.\nGood sister, let us dine and never fret:\nA man is master of his liberty:\nTime is their master, and, when they see time,\nThey'll go or come: if so, be patient, sister.\n\nADRIANA:\nWhy should their liberty than ours be more?\n\nLUCIANA:\nBecause their business still lies out o' door.\n\nADRIANA:\nLook, when I serve him so, he takes it ill.\n\nLUCIANA:\nO, know he is the bridle of your will.\n\nADRIANA:\nThere's none but asses will be bridled so.\n\nLUCIANA:\nWhy, headstrong liberty is lash'd with woe.\nThere's nothing situate under heaven's eye\nBut hath his bound, in earth, in sea, in sky:\nThe beasts, the fishes, and the winged fowls,\nAre their males' subjects and at their controls:\nMen, more divine, the masters of all these,\nLords of the wide world and wild watery seas,\nIndued with intellectual sense and souls,\nOf more preeminence than fish and fowls,\nAre masters to their females, and their lords:\nThen let your will attend on their accords.\n\nADRIANA:\nThis servitude makes you to keep unwed.\n\nLUCIANA:\nNot this, but troubles of the marriage-bed.\n\nADRIANA:\nBut, were you wedded, you would bear some sway.\n\nLUCIANA:\nEre I learn love, I'll practise to obey.\n\nADRIANA:\nHow if your husband start some other where?\n\nLUCIANA:\nTill he come home again, I would forbear.\n\nADRIANA:\nPatience unmoved! no marvel though she pause;\nThey can be meek that have no other cause.\nA wretched soul, bruised with adversity,\nWe bid be quiet when we hear it cry;\nBut were we burdened with like weight of pain,\nAs much or more would we ourselves complain:\nSo thou, that hast no unkind mate to grieve thee,\nWith urging helpless patience wouldst relieve me,\nBut, if thou live to see like right bereft,\nThis fool-begg'd patience in thee will be left.\n\nLUCIANA:\nWell, I will marry one day, but to try.\nHere comes your man; now is your husband nigh.\n\nADRIANA:\nSay, is your tardy master now at hand?\n\nDROMIO OF EPHESUS:\nNay, he's at two hands with me, and that my two ears\ncan witness.\n\nADRIANA:\nSay, didst thou speak with him? know'st thou his mind?\n\nDROMIO OF EPHESUS:\nAy, ay, he told his mind upon mine ear:\nBeshrew his hand, I scarce could understand it.\n\nLUCIANA:\nSpake he so doubtfully, thou couldst not feel his meaning?\n\nDROMIO OF EPHESUS:\nNay, he struck so plainly, I could too well feel his\nblows; and withal so doubtfully that I could scarce\nunderstand them.\n\nADRIANA:\nBut say, I prithee, is he coming home? It seems he\nhath great care to please his wife.\n\nDROMIO OF EPHESUS:\nWhy, mistress, sure my master is horn-mad.\n\nADRIANA:\nHorn-mad, thou villain!\n\nDROMIO OF EPHESUS:\nI mean not cuckold-mad;\nBut, sure, he is stark mad.\nWhen I desired him to come home to dinner,\nHe ask'd me for a thousand marks in gold:\n''Tis dinner-time,' quoth I; 'My gold!' quoth he;\n'Your meat doth burn,' quoth I; 'My gold!' quoth he:\n'Will you come home?' quoth I; 'My gold!' quoth he.\n'Where is the thousand marks I gave thee, villain?'\n'The pig,' quoth I, 'is burn'd;' 'My gold!' quoth he:\n'My mistress, sir' quoth I; 'Hang up thy mistress!\nI know not thy mistress; out on thy mistress!'\n\nLUCIANA:\nQuoth who?\n\nDROMIO OF EPHESUS:\nQuoth my master:\n'I know,' quoth he, 'no house, no wife, no mistress.'\nSo that my errand, due unto my tongue,\nI thank him, I bare home upon my shoulders;\nFor, in conclusion, he did beat me there.\n\nADRIANA:\nGo back again, thou slave, and fetch him home.\n\nDROMIO OF EPHESUS:\nGo back again, and be new beaten home?\nFor God's sake, send some other messenger.\n\nADRIANA:\nBack, slave, or I will break thy pate across.\n\nDROMIO OF EPHESUS:\nAnd he will bless that cross with other beating:\nBetween you I shall have a holy head.\n\nADRIANA:\nHence, prating peasant! fetch thy master home.\n\nDROMIO OF EPHESUS:\nAm I so round with you as you with me,\nThat like a football you do spurn me thus?\nYou spurn me hence, and he will spurn me hither:\nIf I last in this service, you must case me in leather.\n\nLUCIANA:\nFie, how impatience loureth in your face!\n\nADRIANA:\nHis company must do his minions grace,\nWhilst I at home starve for a merry look.\nHath homely age the alluring beauty took\nFrom my poor cheek? then he hath wasted it:\nAre my discourses dull? barren my wit?\nIf voluble and sharp discourse be marr'd,\nUnkindness blunts it more than marble hard:\nDo their gay vestments his affections bait?\nThat's not my fault: he's master of my state:\nWhat ruins are in me that can be found,\nBy him not ruin'd? then is he the ground\nOf my defeatures. My decayed fair\nA sunny look of his would soon repair\nBut, too unruly deer, he breaks the pale\nAnd feeds from home; poor I am but his stale.\n\nLUCIANA:\nSelf-harming jealousy! fie, beat it hence!\n\nADRIANA:\nUnfeeling fools can with such wrongs dispense.\nI know his eye doth homage otherwhere,\nOr else what lets it but he would be here?\nSister, you know he promised me a chain;\nWould that alone, alone he would detain,\nSo he would keep fair quarter with his bed!\nI see the jewel best enamelled\nWill lose his beauty; yet the gold bides still,\nThat others touch, and often touching will\nWear gold: and no man that hath a name,\nBy falsehood and corruption doth it shame.\nSince that my beauty cannot please his eye,\nI'll weep what's left away, and weeping die.\n\nLUCIANA:\nHow many fond fools serve mad jealousy!\n\nANTIPHOLUS OF SYRACUSE:\nThe gold I gave to Dromio is laid up\nSafe at the Centaur; and the heedful slave\nIs wander'd forth, in care to seek me out\nBy computation and mine host's report.\nI could not speak with Dromio since at first\nI sent him from the mart. See, here he comes.\nHow now sir! is your merry humour alter'd?\nAs you love strokes, so jest with me again.\nYou know no Centaur? you received no gold?\nYour mistress sent to have me home to dinner?\nMy house was at the Phoenix? Wast thou mad,\nThat thus so madly thou didst answer me?\n\nDROMIO OF SYRACUSE:\nWhat answer, sir? when spake I such a word?\n\nANTIPHOLUS OF SYRACUSE:\nEven now, even here, not half an hour since.\n\nDROMIO OF SYRACUSE:\nI did not see you since you sent me hence,\nHome to the Centaur, with the gold you gave me.\n\nANTIPHOLUS OF SYRACUSE:\nVillain, thou didst deny the gold's receipt,\nAnd told'st me of a mistress and a dinner;\nFor which, I hope, thou felt'st I was displeased.\n\nDROMIO OF SYRACUSE:\nI am glad to see you in this merry vein:\nWhat means this jest? I pray you, master, tell me.\n\nANTIPHOLUS OF SYRACUSE:\nYea, dost thou jeer and flout me in the teeth?\nThink'st thou I jest? Hold, take thou that, and that.\n\nDROMIO OF SYRACUSE:\nHold, sir, for God's sake! now your jest is earnest:\nUpon what bargain do you give it me?\n\nANTIPHOLUS OF SYRACUSE:\nBecause that I familiarly sometimes\nDo use you for my fool and chat with you,\nYour sauciness will jest upon my love\nAnd make a common of my serious hours.\nWhen the sun shines let foolish gnats make sport,\nBut creep in crannies when he hides his beams.\nIf you will jest with me, know my aspect,\nAnd fashion your demeanor to my looks,\nOr I will beat this method in your sconce.\n\nDROMIO OF SYRACUSE:\nSconce call you it? so you would leave battering, I\nhad rather have it a head: an you use these blows\nlong, I must get a sconce for my head and ensconce\nit too; or else I shall seek my wit in my shoulders.\nBut, I pray, sir why am I beaten?\n\nANTIPHOLUS OF SYRACUSE:\nDost thou not know?\n\nDROMIO OF SYRACUSE:\nNothing, sir, but that I am beaten.\n\nANTIPHOLUS OF SYRACUSE:\nShall I tell you why?\n\nDROMIO OF SYRACUSE:\nAy, sir, and wherefore; for they say every why hath\na wherefore.\n\nANTIPHOLUS OF SYRACUSE:\nWhy, first,--for flouting me; and then, wherefore--\nFor urging it the second time to me.\n\nDROMIO OF SYRACUSE:\nWas there ever any man thus beaten out of season,\nWhen in the why and the wherefore is neither rhyme\nnor reason?\nWell, sir, I thank you.\n\nANTIPHOLUS OF SYRACUSE:\nThank me, sir, for what?\n\nDROMIO OF SYRACUSE:\nMarry, sir, for this something that you gave me for nothing.\n\nANTIPHOLUS OF SYRACUSE:\nI'll make you amends next, to give you nothing for\nsomething. But say, sir, is it dinner-time?\n\nDROMIO OF SYRACUSE:\nNo, sir; I think the meat wants that I have.\n\nANTIPHOLUS OF SYRACUSE:\nIn good time, sir; what's that?\n\nDROMIO OF SYRACUSE:\nBasting.\n\nANTIPHOLUS OF SYRACUSE:\nWell, sir, then 'twill be dry.\n\nDROMIO OF SYRACUSE:\nIf it be, sir, I pray you, eat none of it.\n\nANTIPHOLUS OF SYRACUSE:\nYour reason?\n\nDROMIO OF SYRACUSE:\nLest it make you choleric and purchase me another\ndry basting.\n\nANTIPHOLUS OF SYRACUSE:\nWell, sir, learn to jest in good time: there's a\ntime for all things.\n\nDROMIO OF SYRACUSE:\nI durst have denied that, before you were so choleric.\n\nANTIPHOLUS OF SYRACUSE:\nBy what rule, sir?\n\nDROMIO OF SYRACUSE:\nMarry, sir, by a rule as plain as the plain bald\npate of father Time himself.\n\nANTIPHOLUS OF SYRACUSE:\nLet's hear it.\n\nDROMIO OF SYRACUSE:\nThere's no time for a man to recover his hair that\ngrows bald by nature.\n\nANTIPHOLUS OF SYRACUSE:\nMay he not do it by fine and recovery?\n\nDROMIO OF SYRACUSE:\nYes, to pay a fine for a periwig and recover the\nlost hair of another man.\n\nANTIPHOLUS OF SYRACUSE:\nWhy is Time such a niggard of hair, being, as it is,\nso plentiful an excrement?\n\nDROMIO OF SYRACUSE:\nBecause it is a blessing that he bestows on beasts;\nand what he hath scanted men in hair he hath given them in wit.\n\nANTIPHOLUS OF SYRACUSE:\nWhy, but there's many a man hath more hair than wit.\n\nDROMIO OF SYRACUSE:\nNot a man of those but he hath the wit to lose his hair.\n\nANTIPHOLUS OF SYRACUSE:\nWhy, thou didst conclude hairy men plain dealers without wit.\n\nDROMIO OF SYRACUSE:\nThe plainer dealer, the sooner lost: yet he loseth\nit in a kind of jollity.\n\nANTIPHOLUS OF SYRACUSE:\nFor what reason?\n\nDROMIO OF SYRACUSE:\nFor two; and sound ones too.\n\nANTIPHOLUS OF SYRACUSE:\nNay, not sound, I pray you.\n\nDROMIO OF SYRACUSE:\nSure ones, then.\n\nANTIPHOLUS OF SYRACUSE:\nNay, not sure, in a thing falsing.\n\nDROMIO OF SYRACUSE:\nCertain ones then.\n\nANTIPHOLUS OF SYRACUSE:\nName them.\n\nDROMIO OF SYRACUSE:\nThe one, to save the money that he spends in\ntrimming; the other, that at dinner they should not\ndrop in his porridge.\n\nANTIPHOLUS OF SYRACUSE:\nYou would all this time have proved there is no\ntime for all things.\n\nDROMIO OF SYRACUSE:\nMarry, and did, sir; namely, no time to recover hair\nlost by nature.\n\nANTIPHOLUS OF SYRACUSE:\nBut your reason was not substantial, why there is no\ntime to recover.\n\nDROMIO OF SYRACUSE:\nThus I mend it: Time himself is bald and therefore\nto the world's end will have bald followers.\n\nANTIPHOLUS OF SYRACUSE:\nI knew 'twould be a bald conclusion:\nBut, soft! who wafts us yonder?\n\nADRIANA:\nAy, ay, Antipholus, look strange and frown:\nSome other mistress hath thy sweet aspects;\nI am not Adriana nor thy wife.\nThe time was once when thou unurged wouldst vow\nThat never words were music to thine ear,\nThat never object pleasing in thine eye,\nThat never touch well welcome to thy hand,\nThat never meat sweet-savor'd in thy taste,\nUnless I spake, or look'd, or touch'd, or carved to thee.\nHow comes it now, my husband, O, how comes it,\nThat thou art thus estranged from thyself?\nThyself I call it, being strange to me,\nThat, undividable, incorporate,\nAm better than thy dear self's better part.\nAh, do not tear away thyself from me!\nFor know, my love, as easy mayest thou fall\nA drop of water in the breaking gulf,\nAnd take unmingled that same drop again,\nWithout addition or diminishing,\nAs take from me thyself and not me too.\nHow dearly would it touch me to the quick,\nShouldst thou but hear I were licentious\nAnd that this body, consecrate to thee,\nBy ruffian lust should be contaminate!\nWouldst thou not spit at me and spurn at me\nAnd hurl the name of husband in my face\nAnd tear the stain'd skin off my harlot-brow\nAnd from my false hand cut the wedding-ring\nAnd break it with a deep-divorcing vow?\nI know thou canst; and therefore see thou do it.\nI am possess'd with an adulterate blot;\nMy blood is mingled with the crime of lust:\nFor if we too be one and thou play false,\nI do digest the poison of thy flesh,\nBeing strumpeted by thy contagion.\nKeep then far league and truce with thy true bed;\nI live unstain'd, thou undishonoured.\n\nANTIPHOLUS OF SYRACUSE:\nPlead you to me, fair dame? I know you not:\nIn Ephesus I am but two hours old,\nAs strange unto your town as to your talk;\nWho, every word by all my wit being scann'd,\nWant wit in all one word to understand.\n\nLUCIANA:\nFie, brother! how the world is changed with you!\nWhen were you wont to use my sister thus?\nShe sent for you by Dromio home to dinner.\n\nANTIPHOLUS OF SYRACUSE:\nBy Dromio?\n\nDROMIO OF SYRACUSE:\nBy me?\n\nADRIANA:\nBy thee; and this thou didst return from him,\nThat he did buffet thee, and, in his blows,\nDenied my house for his, me for his wife.\n\nANTIPHOLUS OF SYRACUSE:\nDid you converse, sir, with this gentlewoman?\nWhat is the course and drift of your compact?\n\nDROMIO OF SYRACUSE:\nI, sir? I never saw her till this time.\n\nANTIPHOLUS OF SYRACUSE:\nVillain, thou liest; for even her very words\nDidst thou deliver to me on the mart.\n\nDROMIO OF SYRACUSE:\nI never spake with her in all my life.\n\nANTIPHOLUS OF SYRACUSE:\nHow can she thus then call us by our names,\nUnless it be by inspiration.\n\nADRIANA:\nHow ill agrees it with your gravity\nTo counterfeit thus grossly with your slave,\nAbetting him to thwart me in my mood!\nBe it my wrong you are from me exempt,\nBut wrong not that wrong with a more contempt.\nCome, I will fasten on this sleeve of thine:\nThou art an elm, my husband, I a vine,\nWhose weakness, married to thy stronger state,\nMakes me with thy strength to communicate:\nIf aught possess thee from me, it is dross,\nUsurping ivy, brier, or idle moss;\nWho, all for want of pruning, with intrusion\nInfect thy sap and live on thy confusion.\n\nANTIPHOLUS OF SYRACUSE:\nTo me she speaks; she moves me for her theme:\nWhat, was I married to her in my dream?\nOr sleep I now and think I hear all this?\nWhat error drives our eyes and ears amiss?\nUntil I know this sure uncertainty,\nI'll entertain the offer'd fallacy.\n\nLUCIANA:\nDromio, go bid the servants spread for dinner.\n\nDROMIO OF SYRACUSE:\nO, for my beads! I cross me for a sinner.\nThis is the fairy land: O spite of spites!\nWe talk with goblins, owls and sprites:\nIf we obey them not, this will ensue,\nThey'll suck our breath, or pinch us black and blue.\n\nLUCIANA:\nWhy pratest thou to thyself and answer'st not?\nDromio, thou drone, thou snail, thou slug, thou sot!\n\nDROMIO OF SYRACUSE:\nI am transformed, master, am I not?\n\nANTIPHOLUS OF SYRACUSE:\nI think thou art in mind, and so am I.\n\nDROMIO OF SYRACUSE:\nNay, master, both in mind and in my shape.\n\nANTIPHOLUS OF SYRACUSE:\nThou hast thine own form.\n\nDROMIO OF SYRACUSE:\nNo, I am an ape.\n\nLUCIANA:\nIf thou art changed to aught, 'tis to an ass.\n\nDROMIO OF SYRACUSE:\n'Tis true; she rides me and I long for grass.\n'Tis so, I am an ass; else it could never be\nBut I should know her as well as she knows me.\n\nADRIANA:\nCome, come, no longer will I be a fool,\nTo put the finger in the eye and weep,\nWhilst man and master laugh my woes to scorn.\nCome, sir, to dinner. Dromio, keep the gate.\nHusband, I'll dine above with you to-day\nAnd shrive you of a thousand idle pranks.\nSirrah, if any ask you for your master,\nSay he dines forth, and let no creature enter.\nCome, sister. Dromio, play the porter well.\n\nANTIPHOLUS OF SYRACUSE:\nAm I in earth, in heaven, or in hell?\nSleeping or waking? mad or well-advised?\nKnown unto these, and to myself disguised!\nI'll say as they say and persever so,\nAnd in this mist at all adventures go.\n\nDROMIO OF SYRACUSE:\nMaster, shall I be porter at the gate?\n\nADRIANA:\nAy; and let none enter, lest I break your pate.\n\nLUCIANA:\nCome, come, Antipholus, we dine too late.\n\nOF EPHESUS:\nGood Signior Angelo, you must excuse us all;\nMy wife is shrewish when I keep not hours:\nSay that I linger'd with you at your shop\nTo see the making of her carcanet,\nAnd that to-morrow you will bring it home.\nBut here's a villain that would face me down\nHe met me on the mart, and that I beat him,\nAnd charged him with a thousand marks in gold,\nAnd that I did deny my wife and house.\nThou drunkard, thou, what didst thou mean by this?\n\nDROMIO OF EPHESUS:\nSay what you will, sir, but I know what I know;\nThat you beat me at the mart, I have your hand to show:\nIf the skin were parchment, and the blows you gave were ink,\nYour own handwriting would tell you what I think.\n\nANTIPHOLUS OF EPHESUS:\nI think thou art an ass.\n\nDROMIO OF EPHESUS:\nMarry, so it doth appear\nBy the wrongs I suffer and the blows I bear.\nI should kick, being kick'd; and, being at that pass,\nYou would keep from my heels and beware of an ass.\n\nANTIPHOLUS OF EPHESUS:\nYou're sad, Signior Balthazar: pray God our cheer\nMay answer my good will and your good welcome here.\n\nBALTHAZAR:\nI hold your dainties cheap, sir, and your\nwelcome dear.\n\nANTIPHOLUS OF EPHESUS:\nO, Signior Balthazar, either at flesh or fish,\nA table full of welcome make scarce one dainty dish.\n\nBALTHAZAR:\nGood meat, sir, is common; that every churl affords.\n\nANTIPHOLUS OF EPHESUS:\nAnd welcome more common; for that's nothing but words.\n\nBALTHAZAR:\nSmall cheer and great welcome makes a merry feast.\n\nANTIPHOLUS OF EPHESUS:\nAy, to a niggardly host, and more sparing guest:\nBut though my cates be mean, take them in good part;\nBetter cheer may you have, but not with better heart.\nBut, soft! my door is lock'd. Go bid them let us in.\n\nDROMIO OF EPHESUS:\nMaud, Bridget, Marian, Cicel, Gillian, Ginn!\n\nDROMIO OF SYRACUSE:\n\nDROMIO OF EPHESUS:\nWhat patch is made our porter? My master stays in\nthe street.\n\nDROMIO OF SYRACUSE:\n\nANTIPHOLUS OF EPHESUS:\nWho talks within there? ho, open the door!\n\nDROMIO OF SYRACUSE:\n\nANTIPHOLUS OF EPHESUS:\nWherefore? for my dinner: I have not dined to-day.\n\nDROMIO OF SYRACUSE:\n\nANTIPHOLUS OF EPHESUS:\nWhat art thou that keepest me out from the house I owe?\n\nDROMIO OF SYRACUSE:\n\nDROMIO OF EPHESUS:\nO villain! thou hast stolen both mine office and my name.\nThe one ne'er got me credit, the other mickle blame.\nIf thou hadst been Dromio to-day in my place,\nThou wouldst have changed thy face for a name or thy\nname for an ass.\n\nLUCE:\n\nDROMIO OF EPHESUS:\nLet my master in, Luce.\n\nLUCE:\n\nDROMIO OF EPHESUS:\nO Lord, I must laugh!\nHave at you with a proverb--Shall I set in my staff?\n\nLUCE:\n\nDROMIO OF SYRACUSE:\n\nANTIPHOLUS OF EPHESUS:\nDo you hear, you minion? you'll let us in, I hope?\n\nLUCE:\n\nDROMIO OF SYRACUSE:\n\nDROMIO OF EPHESUS:\nSo, come, help: well struck! there was blow for blow.\n\nANTIPHOLUS OF EPHESUS:\nThou baggage, let me in.\n\nLUCE:\n\nDROMIO OF EPHESUS:\nMaster, knock the door hard.\n\nLUCE:\n\nANTIPHOLUS OF EPHESUS:\nYou'll cry for this, minion, if I beat the door down.\n\nLUCE:\n\nADRIANA:\n\nDROMIO OF SYRACUSE:\n\nANTIPHOLUS OF EPHESUS:\nAre you there, wife? you might have come before.\n\nADRIANA:\n\nDROMIO OF EPHESUS:\nIf you went in pain, master, this 'knave' would go sore.\n\nANGELO:\nHere is neither cheer, sir, nor welcome: we would\nfain have either.\n\nBALTHAZAR:\nIn debating which was best, we shall part with neither.\n\nDROMIO OF EPHESUS:\nThey stand at the door, master; bid them welcome hither.\n\nANTIPHOLUS OF EPHESUS:\nThere is something in the wind, that we cannot get in.\n\nDROMIO OF EPHESUS:\nYou would say so, master, if your garments were thin.\nYour cake there is warm within; you stand here in the cold:\nIt would make a man mad as a buck, to be so bought and sold.\n\nANTIPHOLUS OF EPHESUS:\nGo fetch me something: I'll break ope the gate.\n\nDROMIO OF SYRACUSE:\n\nDROMIO OF EPHESUS:\nA man may break a word with you, sir, and words are but wind,\nAy, and break it in your face, so he break it not behind.\n\nDROMIO OF SYRACUSE:\n\nDROMIO OF EPHESUS:\nHere's too much 'out upon thee!' I pray thee,\nlet me in.\n\nDROMIO OF SYRACUSE:\n\nANTIPHOLUS OF EPHESUS:\nWell, I'll break in: go borrow me a crow.\n\nDROMIO OF EPHESUS:\nA crow without feather? Master, mean you so?\nFor a fish without a fin, there's a fowl without a feather;\nIf a crow help us in, sirrah, we'll pluck a crow together.\n\nANTIPHOLUS OF EPHESUS:\nGo get thee gone; fetch me an iron crow.\n\nBALTHAZAR:\nHave patience, sir; O, let it not be so!\nHerein you war against your reputation\nAnd draw within the compass of suspect\nThe unviolated honour of your wife.\nOnce this,--your long experience of her wisdom,\nHer sober virtue, years and modesty,\nPlead on her part some cause to you unknown:\nAnd doubt not, sir, but she will well excuse\nWhy at this time the doors are made against you.\nBe ruled by me: depart in patience,\nAnd let us to the Tiger all to dinner,\nAnd about evening come yourself alone\nTo know the reason of this strange restraint.\nIf by strong hand you offer to break in\nNow in the stirring passage of the day,\nA vulgar comment will be made of it,\nAnd that supposed by the common rout\nAgainst your yet ungalled estimation\nThat may with foul intrusion enter in\nAnd dwell upon your grave when you are dead;\nFor slander lives upon succession,\nFor ever housed where it gets possession.\n\nANTIPHOLUS OF EPHESUS:\nYou have prevailed: I will depart in quiet,\nAnd, in despite of mirth, mean to be merry.\nI know a wench of excellent discourse,\nPretty and witty; wild, and yet, too, gentle:\nThere will we dine. This woman that I mean,\nMy wife--but, I protest, without desert--\nHath oftentimes upbraided me withal:\nTo her will we to dinner.\nGet you home\nAnd fetch the chain; by this I know 'tis made:\nBring it, I pray you, to the Porpentine;\nFor there's the house: that chain will I bestow--\nBe it for nothing but to spite my wife--\nUpon mine hostess there: good sir, make haste.\nSince mine own doors refuse to entertain me,\nI'll knock elsewhere, to see if they'll disdain me.\n\nANGELO:\nI'll meet you at that place some hour hence.\n\nANTIPHOLUS OF EPHESUS:\nDo so. This jest shall cost me some expense.\n\nLUCIANA:\nAnd may it be that you have quite forgot\nA husband's office? shall, Antipholus.\nEven in the spring of love, thy love-springs rot?\nShall love, in building, grow so ruinous?\nIf you did wed my sister for her wealth,\nThen for her wealth's sake use her with more kindness:\nOr if you like elsewhere, do it by stealth;\nMuffle your false love with some show of blindness:\nLet not my sister read it in your eye;\nBe not thy tongue thy own shame's orator;\nLook sweet, be fair, become disloyalty;\nApparel vice like virtue's harbinger;\nBear a fair presence, though your heart be tainted;\nTeach sin the carriage of a holy saint;\nBe secret-false: what need she be acquainted?\nWhat simple thief brags of his own attaint?\n'Tis double wrong, to truant with your bed\nAnd let her read it in thy looks at board:\nShame hath a bastard fame, well managed;\nIll deeds are doubled with an evil word.\nAlas, poor women! make us but believe,\nBeing compact of credit, that you love us;\nThough others have the arm, show us the sleeve;\nWe in your motion turn and you may move us.\nThen, gentle brother, get you in again;\nComfort my sister, cheer her, call her wife:\n'Tis holy sport to be a little vain,\nWhen the sweet breath of flattery conquers strife.\n\nANTIPHOLUS OF SYRACUSE:\nSweet mistress--what your name is else, I know not,\nNor by what wonder you do hit of mine,--\nLess in your knowledge and your grace you show not\nThan our earth's wonder, more than earth divine.\nTeach me, dear creature, how to think and speak;\nLay open to my earthy-gross conceit,\nSmother'd in errors, feeble, shallow, weak,\nThe folded meaning of your words' deceit.\nAgainst my soul's pure truth why labour you\nTo make it wander in an unknown field?\nAre you a god? would you create me new?\nTransform me then, and to your power I'll yield.\nBut if that I am I, then well I know\nYour weeping sister is no wife of mine,\nNor to her bed no homage do I owe\nFar more, far more to you do I decline.\nO, train me not, sweet mermaid, with thy note,\nTo drown me in thy sister's flood of tears:\nSing, siren, for thyself and I will dote:\nSpread o'er the silver waves thy golden hairs,\nAnd as a bed I'll take them and there lie,\nAnd in that glorious supposition think\nHe gains by death that hath such means to die:\nLet Love, being light, be drowned if she sink!\n\nLUCIANA:\nWhat, are you mad, that you do reason so?\n\nANTIPHOLUS OF SYRACUSE:\nNot mad, but mated; how, I do not know.\n\nLUCIANA:\nIt is a fault that springeth from your eye.\n\nANTIPHOLUS OF SYRACUSE:\nFor gazing on your beams, fair sun, being by.\n\nLUCIANA:\nGaze where you should, and that will clear your sight.\n\nANTIPHOLUS OF SYRACUSE:\nAs good to wink, sweet love, as look on night.\n\nLUCIANA:\nWhy call you me love? call my sister so.\n\nANTIPHOLUS OF SYRACUSE:\nThy sister's sister.\n\nLUCIANA:\nThat's my sister.\n\nANTIPHOLUS OF SYRACUSE:\nNo;\nIt is thyself, mine own self's better part,\nMine eye's clear eye, my dear heart's dearer heart,\nMy food, my fortune and my sweet hope's aim,\nMy sole earth's heaven and my heaven's claim.\n\nLUCIANA:\nAll this my sister is, or else should be.\n\nANTIPHOLUS OF SYRACUSE:\nCall thyself sister, sweet, for I am thee.\nThee will I love and with thee lead my life:\nThou hast no husband yet nor I no wife.\nGive me thy hand.\n\nLUCIANA:\nO, soft, air! hold you still:\nI'll fetch my sister, to get her good will.\n\nANTIPHOLUS OF SYRACUSE:\nWhy, how now, Dromio! where runn'st thou so fast?\n\nDROMIO OF SYRACUSE:\nDo you know me, sir? am I Dromio? am I your man?\nam I myself?\n\nANTIPHOLUS OF SYRACUSE:\nThou art Dromio, thou art my man, thou art thyself.\n\nDROMIO OF SYRACUSE:\nI am an ass, I am a woman's man and besides myself.\n\nDROMIO OF SYRACUSE:\nMarry, sir, besides myself, I am due to a woman; one\nthat claims me, one that haunts me, one that will have me.\n\nANTIPHOLUS OF SYRACUSE:\nWhat claim lays she to thee?\n\nDROMIO OF SYRACUSE:\nMarry sir, such claim as you would lay to your\nhorse; and she would have me as a beast: not that, I\nbeing a beast, she would have me; but that she,\nbeing a very beastly creature, lays claim to me.\n\nANTIPHOLUS OF SYRACUSE:\nWhat is she?\n\nDROMIO OF SYRACUSE:\nA very reverent body; ay, such a one as a man may\nnot speak of without he say 'Sir-reverence.' I have\nbut lean luck in the match, and yet is she a\nwondrous fat marriage.\n\nANTIPHOLUS OF SYRACUSE:\nHow dost thou mean a fat marriage?\n\nDROMIO OF SYRACUSE:\nMarry, sir, she's the kitchen wench and all grease;\nand I know not what use to put her to but to make a\nlamp of her and run from her by her own light. I\nwarrant, her rags and the tallow in them will burn a\nPoland winter: if she lives till doomsday,\nshe'll burn a week longer than the whole world.\n\nANTIPHOLUS OF SYRACUSE:\nWhat complexion is she of?\n\nDROMIO OF SYRACUSE:\nSwart, like my shoe, but her face nothing half so\nclean kept: for why, she sweats; a man may go over\nshoes in the grime of it.\n\nANTIPHOLUS OF SYRACUSE:\nThat's a fault that water will mend.\n\nDROMIO OF SYRACUSE:\nNo, sir, 'tis in grain; Noah's flood could not do it.\n\nANTIPHOLUS OF SYRACUSE:\nWhat's her name?\n\nDROMIO OF SYRACUSE:\nNell, sir; but her name and three quarters, that's\nan ell and three quarters, will not measure her from\nhip to hip.\n\nANTIPHOLUS OF SYRACUSE:\nThen she bears some breadth?\n\nDROMIO OF SYRACUSE:\nNo longer from head to foot than from hip to hip:\nshe is spherical, like a globe; I could find out\ncountries in her.\n\nANTIPHOLUS OF SYRACUSE:\nIn what part of her body stands Ireland?\n\nDROMIO OF SYRACUSE:\nMarry, in her buttocks: I found it out by the bogs.\n\nANTIPHOLUS OF SYRACUSE:\nWhere Scotland?\n\nDROMIO OF SYRACUSE:\nI found it by the barrenness; hard in the palm of the hand.\n\nANTIPHOLUS OF SYRACUSE:\nWhere France?\n\nDROMIO OF SYRACUSE:\nIn her forehead; armed and reverted, making war\nagainst her heir.\n\nANTIPHOLUS OF SYRACUSE:\nWhere England?\n\nDROMIO OF SYRACUSE:\nI looked for the chalky cliffs, but I could find no\nwhiteness in them; but I guess it stood in her chin,\nby the salt rheum that ran between France and it.\n\nANTIPHOLUS OF SYRACUSE:\nWhere Spain?\n\nDROMIO OF SYRACUSE:\nFaith, I saw it not; but I felt it hot in her breath.\n\nANTIPHOLUS OF SYRACUSE:\nWhere America, the Indies?\n\nDROMIO OF SYRACUSE:\nOh, sir, upon her nose all o'er embellished with\nrubies, carbuncles, sapphires, declining their rich\naspect to the hot breath of Spain; who sent whole\narmadoes of caracks to be ballast at her nose.\n\nANTIPHOLUS OF SYRACUSE:\nWhere stood Belgia, the Netherlands?\n\nDROMIO OF SYRACUSE:\nOh, sir, I did not look so low. To conclude, this\ndrudge, or diviner, laid claim to me, call'd me\nDromio; swore I was assured to her; told me what\nprivy marks I had about me, as, the mark of my\nshoulder, the mole in my neck, the great wart on my\nleft arm, that I amazed ran from her as a witch:\nAnd, I think, if my breast had not been made of\nfaith and my heart of steel,\nShe had transform'd me to a curtal dog and made\nme turn i' the wheel.\n\nANTIPHOLUS OF SYRACUSE:\nGo hie thee presently, post to the road:\nAn if the wind blow any way from shore,\nI will not harbour in this town to-night:\nIf any bark put forth, come to the mart,\nWhere I will walk till thou return to me.\nIf every one knows us and we know none,\n'Tis time, I think, to trudge, pack and be gone.\n\nDROMIO OF SYRACUSE:\nAs from a bear a man would run for life,\nSo fly I from her that would be my wife.\n\nANTIPHOLUS OF SYRACUSE:\nThere's none but witches do inhabit here;\nAnd therefore 'tis high time that I were hence.\nShe that doth call me husband, even my soul\nDoth for a wife abhor. But her fair sister,\nPossess'd with such a gentle sovereign grace,\nOf such enchanting presence and discourse,\nHath almost made me traitor to myself:\nBut, lest myself be guilty to self-wrong,\nI'll stop mine ears against the mermaid's song.\n\nANGELO:\nMaster Antipholus,--\n\nANTIPHOLUS OF SYRACUSE:\nAy, that's my name.\n\nANGELO:\nI know it well, sir, lo, here is the chain.\nI thought to have ta'en you at the Porpentine:\nThe chain unfinish'd made me stay thus long.\n\nANTIPHOLUS OF SYRACUSE:\nWhat is your will that I shall do with this?\n\nANGELO:\nWhat please yourself, sir: I have made it for you.\n\nANTIPHOLUS OF SYRACUSE:\nMade it for me, sir! I bespoke it not.\n\nANGELO:\nNot once, nor twice, but twenty times you have.\nGo home with it and please your wife withal;\nAnd soon at supper-time I'll visit you\nAnd then receive my money for the chain.\n\nANTIPHOLUS OF SYRACUSE:\nI pray you, sir, receive the money now,\nFor fear you ne'er see chain nor money more.\n\nANGELO:\nYou are a merry man, sir: fare you well.\n\nANTIPHOLUS OF SYRACUSE:\nWhat I should think of this, I cannot tell:\nBut this I think, there's no man is so vain\nThat would refuse so fair an offer'd chain.\nI see a man here needs not live by shifts,\nWhen in the streets he meets such golden gifts.\nI'll to the mart, and there for Dromio stay\nIf any ship put out, then straight away.\n\nSecond Merchant:\nYou know since Pentecost the sum is due,\nAnd since I have not much importuned you;\nNor now I had not, but that I am bound\nTo Persia, and want guilders for my voyage:\nTherefore make present satisfaction,\nOr I'll attach you by this officer.\n\nANGELO:\nEven just the sum that I do owe to you\nIs growing to me by Antipholus,\nAnd in the instant that I met with you\nHe had of me a chain: at five o'clock\nI shall receive the money for the same.\nPleaseth you walk with me down to his house,\nI will discharge my bond and thank you too.\n\nOfficer:\nThat labour may you save: see where he comes.\n\nANTIPHOLUS OF EPHESUS:\nWhile I go to the goldsmith's house, go thou\nAnd buy a rope's end: that will I bestow\nAmong my wife and her confederates,\nFor locking me out of my doors by day.\nBut, soft! I see the goldsmith. Get thee gone;\nBuy thou a rope and bring it home to me.\n\nDROMIO OF EPHESUS:\nI buy a thousand pound a year: I buy a rope.\n\nANTIPHOLUS OF EPHESUS:\nA man is well holp up that trusts to you:\nI promised your presence and the chain;\nBut neither chain nor goldsmith came to me.\nBelike you thought our love would last too long,\nIf it were chain'd together, and therefore came not.\n\nANGELO:\nSaving your merry humour, here's the note\nHow much your chain weighs to the utmost carat,\nThe fineness of the gold and chargeful fashion.\nWhich doth amount to three odd ducats more\nThan I stand debted to this gentleman:\nI pray you, see him presently discharged,\nFor he is bound to sea and stays but for it.\n\nANTIPHOLUS OF EPHESUS:\nI am not furnish'd with the present money;\nBesides, I have some business in the town.\nGood signior, take the stranger to my house\nAnd with you take the chain and bid my wife\nDisburse the sum on the receipt thereof:\nPerchance I will be there as soon as you.\n\nANGELO:\nThen you will bring the chain to her yourself?\n\nANTIPHOLUS OF EPHESUS:\nNo; bear it with you, lest I come not time enough.\n\nANGELO:\nWell, sir, I will. Have you the chain about you?\n\nANTIPHOLUS OF EPHESUS:\nAn if I have not, sir, I hope you have;\nOr else you may return without your money.\n\nANGELO:\nNay, come, I pray you, sir, give me the chain:\nBoth wind and tide stays for this gentleman,\nAnd I, to blame, have held him here too long.\n\nANTIPHOLUS OF EPHESUS:\nGood Lord! you use this dalliance to excuse\nYour breach of promise to the Porpentine.\nI should have chid you for not bringing it,\nBut, like a shrew, you first begin to brawl.\n\nSecond Merchant:\nThe hour steals on; I pray you, sir, dispatch.\n\nANGELO:\nYou hear how he importunes me;--the chain!\n\nANTIPHOLUS OF EPHESUS:\nWhy, give it to my wife and fetch your money.\n\nANGELO:\nCome, come, you know I gave it you even now.\nEither send the chain or send me by some token.\n\nANTIPHOLUS OF EPHESUS:\nFie, now you run this humour out of breath,\nwhere's the chain? I pray you, let me see it.\n\nSecond Merchant:\nMy business cannot brook this dalliance.\nGood sir, say whether you'll answer me or no:\nIf not, I'll leave him to the officer.\n\nANTIPHOLUS OF EPHESUS:\nI answer you! what should I answer you?\n\nANGELO:\nThe money that you owe me for the chain.\n\nANTIPHOLUS OF EPHESUS:\nI owe you none till I receive the chain.\n\nANGELO:\nYou know I gave it you half an hour since.\n\nANTIPHOLUS OF EPHESUS:\nYou gave me none: you wrong me much to say so.\n\nANGELO:\nYou wrong me more, sir, in denying it:\nConsider how it stands upon my credit.\n\nSecond Merchant:\nWell, officer, arrest him at my suit.\n\nOfficer:\nI do; and charge you in the duke's name to obey me.\n\nANGELO:\nThis touches me in reputation.\nEither consent to pay this sum for me\nOr I attach you by this officer.\n\nANTIPHOLUS OF EPHESUS:\nConsent to pay thee that I never had!\nArrest me, foolish fellow, if thou darest.\n\nANGELO:\nHere is thy fee; arrest him, officer,\nI would not spare my brother in this case,\nIf he should scorn me so apparently.\n\nOfficer:\nI do arrest you, sir: you hear the suit.\n\nANTIPHOLUS OF EPHESUS:\nI do obey thee till I give thee bail.\nBut, sirrah, you shall buy this sport as dear\nAs all the metal in your shop will answer.\n\nANGELO:\nSir, sir, I will have law in Ephesus,\nTo your notorious shame; I doubt it not.\n\nDROMIO OF SYRACUSE:\nMaster, there is a bark of Epidamnum\nThat stays but till her owner comes aboard,\nAnd then, sir, she bears away. Our fraughtage, sir,\nI have convey'd aboard; and I have bought\nThe oil, the balsamum and aqua-vitae.\nThe ship is in her trim; the merry wind\nBlows fair from land: they stay for nought at all\nBut for their owner, master, and yourself.\n\nANTIPHOLUS OF EPHESUS:\nHow now! a madman! Why, thou peevish sheep,\nWhat ship of Epidamnum stays for me?\n\nDROMIO OF SYRACUSE:\nA ship you sent me to, to hire waftage.\n\nANTIPHOLUS OF EPHESUS:\nThou drunken slave, I sent thee for a rope;\nAnd told thee to what purpose and what end.\n\nDROMIO OF SYRACUSE:\nYou sent me for a rope's end as soon:\nYou sent me to the bay, sir, for a bark.\n\nANTIPHOLUS OF EPHESUS:\nI will debate this matter at more leisure\nAnd teach your ears to list me with more heed.\nTo Adriana, villain, hie thee straight:\nGive her this key, and tell her, in the desk\nThat's cover'd o'er with Turkish tapestry,\nThere is a purse of ducats; let her send it:\nTell her I am arrested in the street\nAnd that shall bail me; hie thee, slave, be gone!\nOn, officer, to prison till it come.\n\nDROMIO OF SYRACUSE:\nTo Adriana! that is where we dined,\nWhere Dowsabel did claim me for her husband:\nShe is too big, I hope, for me to compass.\nThither I must, although against my will,\nFor servants must their masters' minds fulfil.\n\nADRIANA:\nAh, Luciana, did he tempt thee so?\nMightst thou perceive austerely in his eye\nThat he did plead in earnest? yea or no?\nLook'd he or red or pale, or sad or merrily?\nWhat observation madest thou in this case\nOf his heart's meteors tilting in his face?\n\nLUCIANA:\nFirst he denied you had in him no right.\n\nADRIANA:\nHe meant he did me none; the more my spite.\n\nLUCIANA:\nThen swore he that he was a stranger here.\n\nADRIANA:\nAnd true he swore, though yet forsworn he were.\n\nLUCIANA:\nThen pleaded I for you.\n\nADRIANA:\nAnd what said he?\n\nLUCIANA:\nThat love I begg'd for you he begg'd of me.\n\nADRIANA:\nWith what persuasion did he tempt thy love?\n\nLUCIANA:\nWith words that in an honest suit might move.\nFirst he did praise my beauty, then my speech.\n\nADRIANA:\nDidst speak him fair?\n\nLUCIANA:\nHave patience, I beseech.\n\nADRIANA:\nI cannot, nor I will not, hold me still;\nMy tongue, though not my heart, shall have his will.\nHe is deformed, crooked, old and sere,\nIll-faced, worse bodied, shapeless everywhere;\nVicious, ungentle, foolish, blunt, unkind;\nStigmatical in making, worse in mind.\n\nLUCIANA:\nWho would be jealous then of such a one?\nNo evil lost is wail'd when it is gone.\n\nADRIANA:\nAh, but I think him better than I say,\nAnd yet would herein others' eyes were worse.\nFar from her nest the lapwing cries away:\nMy heart prays for him, though my tongue do curse.\n\nDROMIO OF SYRACUSE:\nHere! go; the desk, the purse! sweet, now, make haste.\n\nLUCIANA:\nHow hast thou lost thy breath?\n\nDROMIO OF SYRACUSE:\nBy running fast.\n\nADRIANA:\nWhere is thy master, Dromio? is he well?\n\nDROMIO OF SYRACUSE:\nNo, he's in Tartar limbo, worse than hell.\nA devil in an everlasting garment hath him;\nOne whose hard heart is button'd up with steel;\nA fiend, a fury, pitiless and rough;\nA wolf, nay, worse, a fellow all in buff;\nA back-friend, a shoulder-clapper, one that\ncountermands\nThe passages of alleys, creeks and narrow lands;\nA hound that runs counter and yet draws dryfoot well;\nOne that before the judgement carries poor souls to hell.\n\nADRIANA:\nWhy, man, what is the matter?\n\nDROMIO OF SYRACUSE:\nI do not know the matter: he is 'rested on the case.\n\nADRIANA:\nWhat, is he arrested? Tell me at whose suit.\n\nDROMIO OF SYRACUSE:\nI know not at whose suit he is arrested well;\nBut he's in a suit of buff which 'rested him, that can I tell.\nWill you send him, mistress, redemption, the money in his desk?\n\nADRIANA:\nGo fetch it, sister.\nThis I wonder at,\nThat he, unknown to me, should be in debt.\nTell me, was he arrested on a band?\n\nDROMIO OF SYRACUSE:\nNot on a band, but on a stronger thing;\nA chain, a chain! Do you not hear it ring?\n\nADRIANA:\nWhat, the chain?\n\nDROMIO OF SYRACUSE:\nNo, no, the bell: 'tis time that I were gone:\nIt was two ere I left him, and now the clock\nstrikes one.\n\nADRIANA:\nThe hours come back! that did I never hear.\n\nDROMIO OF SYRACUSE:\nO, yes; if any hour meet a sergeant, a' turns back for\nvery fear.\n\nADRIANA:\nAs if Time were in debt! how fondly dost thou reason!\n\nDROMIO OF SYRACUSE:\nTime is a very bankrupt, and owes more than he's\nworth, to season.\nNay, he's a thief too: have you not heard men say\nThat Time comes stealing on by night and day?\nIf Time be in debt and theft, and a sergeant in the way,\nHath he not reason to turn back an hour in a day?\n\nADRIANA:\nGo, Dromio; there's the money, bear it straight;\nAnd bring thy master home immediately.\nCome, sister: I am press'd down with conceit--\nConceit, my comfort and my injury.\n\nANTIPHOLUS OF SYRACUSE:\nThere's not a man I meet but doth salute me\nAs if I were their well-acquainted friend;\nAnd every one doth call me by my name.\nSome tender money to me; some invite me;\nSome other give me thanks for kindnesses;\nSome offer me commodities to buy:\nEven now a tailor call'd me in his shop\nAnd show'd me silks that he had bought for me,\nAnd therewithal took measure of my body.\nSure, these are but imaginary wiles\nAnd Lapland sorcerers inhabit here.\n\nDROMIO OF SYRACUSE:\nMaster, here's the gold you sent me for. What, have\nyou got the picture of old Adam new-apparelled?\n\nANTIPHOLUS OF SYRACUSE:\nWhat gold is this? what Adam dost thou mean?\n\nDROMIO OF SYRACUSE:\nNot that Adam that kept the Paradise but that Adam\nthat keeps the prison: he that goes in the calf's\nskin that was killed for the Prodigal; he that came\nbehind you, sir, like an evil angel, and bid you\nforsake your liberty.\n\nANTIPHOLUS OF SYRACUSE:\nI understand thee not.\n\nDROMIO OF SYRACUSE:\nNo? why, 'tis a plain case: he that went, like a\nbass-viol, in a case of leather; the man, sir,\nthat, when gentlemen are tired, gives them a sob\nand 'rests them; he, sir, that takes pity on decayed\nmen and gives them suits of durance; he that sets up\nhis rest to do more exploits with his mace than a\nmorris-pike.\n\nANTIPHOLUS OF SYRACUSE:\nWhat, thou meanest an officer?\n\nDROMIO OF SYRACUSE:\nAy, sir, the sergeant of the band, he that brings\nany man to answer it that breaks his band; one that\nthinks a man always going to bed, and says, 'God\ngive you good rest!'\n\nANTIPHOLUS OF SYRACUSE:\nWell, sir, there rest in your foolery. Is there any\n\nDROMIO OF SYRACUSE:\nWhy, sir, I brought you word an hour since that the\nbark Expedition put forth to-night; and then were\nyou hindered by the sergeant, to tarry for the hoy\nDelay. Here are the angels that you sent for to\ndeliver you.\n\nANTIPHOLUS OF SYRACUSE:\nThe fellow is distract, and so am I;\nAnd here we wander in illusions:\nSome blessed power deliver us from hence!\n\nCourtezan:\nWell met, well met, Master Antipholus.\nI see, sir, you have found the goldsmith now:\nIs that the chain you promised me to-day?\n\nANTIPHOLUS OF SYRACUSE:\nSatan, avoid! I charge thee, tempt me not.\n\nDROMIO OF SYRACUSE:\nMaster, is this Mistress Satan?\n\nANTIPHOLUS OF SYRACUSE:\nIt is the devil.\n\nDROMIO OF SYRACUSE:\nNay, she is worse, she is the devil's dam; and here\nshe comes in the habit of a light wench: and thereof\ncomes that the wenches say 'God damn me;' that's as\nmuch to say 'God make me a light wench.' It is\nwritten, they appear to men like angels of light:\nlight is an effect of fire, and fire will burn;\nergo, light wenches will burn. Come not near her.\n\nCourtezan:\nYour man and you are marvellous merry, sir.\nWill you go with me? We'll mend our dinner here?\n\nDROMIO OF SYRACUSE:\nMaster, if you do, expect spoon-meat; or bespeak a\nlong spoon.\n\nANTIPHOLUS OF SYRACUSE:\nWhy, Dromio?\n\nDROMIO OF SYRACUSE:\nMarry, he must have a long spoon that must eat with\nthe devil.\n\nANTIPHOLUS OF SYRACUSE:\nAvoid then, fiend! what tell'st thou me of supping?\nThou art, as you are all, a sorceress:\nI conjure thee to leave me and be gone.\n\nCourtezan:\nGive me the ring of mine you had at dinner,\nOr, for my diamond, the chain you promised,\nAnd I'll be gone, sir, and not trouble you.\n\nDROMIO OF SYRACUSE:\nSome devils ask but the parings of one's nail,\nA rush, a hair, a drop of blood, a pin,\nA nut, a cherry-stone;\nBut she, more covetous, would have a chain.\nMaster, be wise: an if you give it her,\nThe devil will shake her chain and fright us with it.\n\nCourtezan:\nI pray you, sir, my ring, or else the chain:\nI hope you do not mean to cheat me so.\n\nANTIPHOLUS OF SYRACUSE:\nAvaunt, thou witch! Come, Dromio, let us go.\n\nDROMIO OF SYRACUSE:\n'Fly pride,' says the peacock: mistress, that you know.\n\nCourtezan:\nNow, out of doubt Antipholus is mad,\nElse would he never so demean himself.\nA ring he hath of mine worth forty ducats,\nAnd for the same he promised me a chain:\nBoth one and other he denies me now.\nThe reason that I gather he is mad,\nBesides this present instance of his rage,\nIs a mad tale he told to-day at dinner,\nOf his own doors being shut against his entrance.\nBelike his wife, acquainted with his fits,\nOn purpose shut the doors against his way.\nMy way is now to hie home to his house,\nAnd tell his wife that, being lunatic,\nHe rush'd into my house and took perforce\nMy ring away. This course I fittest choose;\nFor forty ducats is too much to lose.\n\nANTIPHOLUS OF EPHESUS:\nFear me not, man; I will not break away:\nI'll give thee, ere I leave thee, so much money,\nTo warrant thee, as I am 'rested for.\nMy wife is in a wayward mood to-day,\nAnd will not lightly trust the messenger\nThat I should be attach'd in Ephesus,\nI tell you, 'twill sound harshly in her ears.\nHere comes my man; I think he brings the money.\nHow now, sir! have you that I sent you for?\n\nDROMIO OF EPHESUS:\nHere's that, I warrant you, will pay them all.\n\nANTIPHOLUS OF EPHESUS:\nBut where's the money?\n\nDROMIO OF EPHESUS:\nWhy, sir, I gave the money for the rope.\n\nANTIPHOLUS OF EPHESUS:\nFive hundred ducats, villain, for a rope?\n\nDROMIO OF EPHESUS:\nI'll serve you, sir, five hundred at the rate.\n\nANTIPHOLUS OF EPHESUS:\nTo what end did I bid thee hie thee home?\n\nDROMIO OF EPHESUS:\nTo a rope's-end, sir; and to that end am I returned.\n\nANTIPHOLUS OF EPHESUS:\nAnd to that end, sir, I will welcome you.\n\nOfficer:\nGood sir, be patient.\n\nDROMIO OF EPHESUS:\nNay, 'tis for me to be patient; I am in adversity.\n\nOfficer:\nGood, now, hold thy tongue.\n\nDROMIO OF EPHESUS:\nNay, rather persuade him to hold his hands.\n\nANTIPHOLUS OF EPHESUS:\nThou whoreson, senseless villain!\n\nDROMIO OF EPHESUS:\nI would I were senseless, sir, that I might not feel\nyour blows.\n\nDROMIO OF EPHESUS:\nI am an ass, indeed; you may prove it by my long\nears. I have served him from the hour of my\nnativity to this instant, and have nothing at his\nhands for my service but blows. When I am cold, he\nheats me with beating; when I am warm, he cools me\nwith beating; I am waked with it when I sleep;\nraised with it when I sit; driven out of doors with\nit when I go from home; welcomed home with it when\nI return; nay, I bear it on my shoulders, as a\nbeggar wont her brat; and, I think when he hath\nlamed me, I shall beg with it from door to door.\n\nANTIPHOLUS OF EPHESUS:\nCome, go along; my wife is coming yonder.\n\nDROMIO OF EPHESUS:\nMistress, 'respice finem,' respect your end; or\nrather, the prophecy like the parrot, 'beware the\nrope's-end.'\n\nANTIPHOLUS OF EPHESUS:\nWilt thou still talk?\n\nCourtezan:\nHow say you now? is not your husband mad?\n\nADRIANA:\nHis incivility confirms no less.\nGood Doctor Pinch, you are a conjurer;\nEstablish him in his true sense again,\nAnd I will please you what you will demand.\n\nLUCIANA:\nAlas, how fiery and how sharp he looks!\n\nCourtezan:\nMark how he trembles in his ecstasy!\n\nPINCH:\nGive me your hand and let me feel your pulse.\n\nANTIPHOLUS OF EPHESUS:\nThere is my hand, and let it feel your ear.\n\nPINCH:\nI charge thee, Satan, housed within this man,\nTo yield possession to my holy prayers\nAnd to thy state of darkness hie thee straight:\nI conjure thee by all the saints in heaven!\n\nANTIPHOLUS OF EPHESUS:\nPeace, doting wizard, peace! I am not mad.\n\nADRIANA:\nO, that thou wert not, poor distressed soul!\n\nANTIPHOLUS OF EPHESUS:\nYou minion, you, are these your customers?\nDid this companion with the saffron face\nRevel and feast it at my house to-day,\nWhilst upon me the guilty doors were shut\nAnd I denied to enter in my house?\n\nADRIANA:\nO husband, God doth know you dined at home;\nWhere would you had remain'd until this time,\nFree from these slanders and this open shame!\n\nANTIPHOLUS OF EPHESUS:\nDined at home! Thou villain, what sayest thou?\n\nDROMIO OF EPHESUS:\nSir, sooth to say, you did not dine at home.\n\nANTIPHOLUS OF EPHESUS:\nWere not my doors lock'd up and I shut out?\n\nDROMIO OF EPHESUS:\nPerdie, your doors were lock'd and you shut out.\n\nANTIPHOLUS OF EPHESUS:\nAnd did not she herself revile me there?\n\nDROMIO OF EPHESUS:\nSans fable, she herself reviled you there.\n\nANTIPHOLUS OF EPHESUS:\nDid not her kitchen-maid rail, taunt, and scorn me?\n\nDROMIO OF EPHESUS:\nCertes, she did; the kitchen-vestal scorn'd you.\n\nANTIPHOLUS OF EPHESUS:\nAnd did not I in rage depart from thence?\n\nDROMIO OF EPHESUS:\nIn verity you did; my bones bear witness,\nThat since have felt the vigour of his rage.\n\nADRIANA:\nIs't good to soothe him in these contraries?\n\nPINCH:\nIt is no shame: the fellow finds his vein,\nAnd yielding to him humours well his frenzy.\n\nANTIPHOLUS OF EPHESUS:\nThou hast suborn'd the goldsmith to arrest me.\n\nADRIANA:\nAlas, I sent you money to redeem you,\nBy Dromio here, who came in haste for it.\n\nDROMIO OF EPHESUS:\nMoney by me! heart and goodwill you might;\nBut surely master, not a rag of money.\n\nANTIPHOLUS OF EPHESUS:\nWent'st not thou to her for a purse of ducats?\n\nADRIANA:\nHe came to me and I deliver'd it.\n\nLUCIANA:\nAnd I am witness with her that she did.\n\nDROMIO OF EPHESUS:\nGod and the rope-maker bear me witness\nThat I was sent for nothing but a rope!\n\nPINCH:\nMistress, both man and master is possess'd;\nI know it by their pale and deadly looks:\nThey must be bound and laid in some dark room.\n\nANTIPHOLUS OF EPHESUS:\nSay, wherefore didst thou lock me forth to-day?\nAnd why dost thou deny the bag of gold?\n\nADRIANA:\nI did not, gentle husband, lock thee forth.\n\nDROMIO OF EPHESUS:\nAnd, gentle master, I received no gold;\nBut I confess, sir, that we were lock'd out.\n\nADRIANA:\nDissembling villain, thou speak'st false in both.\n\nANTIPHOLUS OF EPHESUS:\nDissembling harlot, thou art false in all;\nAnd art confederate with a damned pack\nTo make a loathsome abject scorn of me:\nBut with these nails I'll pluck out these false eyes\nThat would behold in me this shameful sport.\n\nADRIANA:\nO, bind him, bind him! let him not come near me.\n\nPINCH:\nMore company! The fiend is strong within him.\n\nLUCIANA:\nAy me, poor man, how pale and wan he looks!\n\nANTIPHOLUS OF EPHESUS:\nWhat, will you murder me? Thou gaoler, thou,\nI am thy prisoner: wilt thou suffer them\nTo make a rescue?\n\nOfficer:\nMasters, let him go\nHe is my prisoner, and you shall not have him.\n\nPINCH:\nGo bind this man, for he is frantic too.\n\nADRIANA:\nWhat wilt thou do, thou peevish officer?\nHast thou delight to see a wretched man\nDo outrage and displeasure to himself?\n\nOfficer:\nHe is my prisoner: if I let him go,\nThe debt he owes will be required of me.\n\nADRIANA:\nI will discharge thee ere I go from thee:\nBear me forthwith unto his creditor,\nAnd, knowing how the debt grows, I will pay it.\nGood master doctor, see him safe convey'd\nHome to my house. O most unhappy day!\n\nANTIPHOLUS OF EPHESUS:\nO most unhappy strumpet!\n\nDROMIO OF EPHESUS:\nMaster, I am here entered in bond for you.\n\nANTIPHOLUS OF EPHESUS:\nOut on thee, villain! wherefore dost thou mad me?\n\nDROMIO OF EPHESUS:\nWill you be bound for nothing? be mad, good master:\ncry 'The devil!'\n\nLUCIANA:\nGod help, poor souls, how idly do they talk!\n\nADRIANA:\nGo bear him hence. Sister, go you with me.\nSay now, whose suit is he arrested at?\n\nOfficer:\nOne Angelo, a goldsmith: do you know him?\n\nADRIANA:\nI know the man. What is the sum he owes?\n\nOfficer:\nTwo hundred ducats.\n\nADRIANA:\nSay, how grows it due?\n\nOfficer:\nDue for a chain your husband had of him.\n\nADRIANA:\nHe did bespeak a chain for me, but had it not.\n\nCourtezan:\nWhen as your husband all in rage to-day\nCame to my house and took away my ring--\nThe ring I saw upon his finger now--\nStraight after did I meet him with a chain.\n\nADRIANA:\nIt may be so, but I did never see it.\nCome, gaoler, bring me where the goldsmith is:\nI long to know the truth hereof at large.\n\nLUCIANA:\nGod, for thy mercy! they are loose again.\n\nADRIANA:\nAnd come with naked swords.\nLet's call more help to have them bound again.\n\nOfficer:\nAway! they'll kill us.\n\nANTIPHOLUS OF SYRACUSE:\nI see these witches are afraid of swords.\n\nDROMIO OF SYRACUSE:\nShe that would be your wife now ran from you.\n\nANTIPHOLUS OF SYRACUSE:\nCome to the Centaur; fetch our stuff from thence:\nI long that we were safe and sound aboard.\n\nDROMIO OF SYRACUSE:\nFaith, stay here this night; they will surely do us\nno harm: you saw they speak us fair, give us gold:\nmethinks they are such a gentle nation that, but for\nthe mountain of mad flesh that claims marriage of\nme, I could find in my heart to stay here still and\nturn witch.\n\nANTIPHOLUS OF SYRACUSE:\nI will not stay to-night for all the town;\nTherefore away, to get our stuff aboard.\n\nANGELO:\nI am sorry, sir, that I have hinder'd you;\nBut, I protest, he had the chain of me,\nThough most dishonestly he doth deny it.\n\nSecond Merchant:\nHow is the man esteemed here in the city?\n\nANGELO:\nOf very reverend reputation, sir,\nOf credit infinite, highly beloved,\nSecond to none that lives here in the city:\nHis word might bear my wealth at any time.\n\nSecond Merchant:\nSpeak softly; yonder, as I think, he walks.\n\nANGELO:\n'Tis so; and that self chain about his neck\nWhich he forswore most monstrously to have.\nGood sir, draw near to me, I'll speak to him.\nSignior Antipholus, I wonder much\nThat you would put me to this shame and trouble;\nAnd, not without some scandal to yourself,\nWith circumstance and oaths so to deny\nThis chain which now you wear so openly:\nBeside the charge, the shame, imprisonment,\nYou have done wrong to this my honest friend,\nWho, but for staying on our controversy,\nHad hoisted sail and put to sea to-day:\nThis chain you had of me; can you deny it?\n\nANTIPHOLUS OF SYRACUSE:\nI think I had; I never did deny it.\n\nSecond Merchant:\nYes, that you did, sir, and forswore it too.\n\nANTIPHOLUS OF SYRACUSE:\nWho heard me to deny it or forswear it?\n\nSecond Merchant:\nThese ears of mine, thou know'st did hear thee.\nFie on thee, wretch! 'tis pity that thou livest\nTo walk where any honest man resort.\n\nANTIPHOLUS OF SYRACUSE:\nThou art a villain to impeach me thus:\nI'll prove mine honour and mine honesty\nAgainst thee presently, if thou darest stand.\n\nSecond Merchant:\nI dare, and do defy thee for a villain.\n\nADRIANA:\nHold, hurt him not, for God's sake! he is mad.\nSome get within him, take his sword away:\nBind Dromio too, and bear them to my house.\n\nDROMIO OF SYRACUSE:\nRun, master, run; for God's sake, take a house!\nThis is some priory. In, or we are spoil'd!\n\nAEMELIA:\nBe quiet, people. Wherefore throng you hither?\n\nADRIANA:\nTo fetch my poor distracted husband hence.\nLet us come in, that we may bind him fast\nAnd bear him home for his recovery.\n\nANGELO:\nI knew he was not in his perfect wits.\n\nSecond Merchant:\nI am sorry now that I did draw on him.\n\nAEMELIA:\nHow long hath this possession held the man?\n\nADRIANA:\nThis week he hath been heavy, sour, sad,\nAnd much different from the man he was;\nBut till this afternoon his passion\nNe'er brake into extremity of rage.\n\nAEMELIA:\nHath he not lost much wealth by wreck of sea?\nBuried some dear friend? Hath not else his eye\nStray'd his affection in unlawful love?\nA sin prevailing much in youthful men,\nWho give their eyes the liberty of gazing.\nWhich of these sorrows is he subject to?\n\nADRIANA:\nTo none of these, except it be the last;\nNamely, some love that drew him oft from home.\n\nAEMELIA:\nYou should for that have reprehended him.\n\nADRIANA:\nWhy, so I did.\n\nAEMELIA:\nAy, but not rough enough.\n\nADRIANA:\nAs roughly as my modesty would let me.\n\nAEMELIA:\nHaply, in private.\n\nADRIANA:\nAnd in assemblies too.\n\nAEMELIA:\nAy, but not enough.\n\nADRIANA:\nIt was the copy of our conference:\nIn bed he slept not for my urging it;\nAt board he fed not for my urging it;\nAlone, it was the subject of my theme;\nIn company I often glanced it;\nStill did I tell him it was vile and bad.\n\nAEMELIA:\nAnd thereof came it that the man was mad.\nThe venom clamours of a jealous woman\nPoisons more deadly than a mad dog's tooth.\nIt seems his sleeps were hinder'd by thy railing,\nAnd therefore comes it that his head is light.\nThou say'st his meat was sauced with thy upbraidings:\nUnquiet meals make ill digestions;\nThereof the raging fire of fever bred;\nAnd what's a fever but a fit of madness?\nThou say'st his sports were hinderd by thy brawls:\nSweet recreation barr'd, what doth ensue\nBut moody and dull melancholy,\nKinsman to grim and comfortless despair,\nAnd at her heels a huge infectious troop\nOf pale distemperatures and foes to life?\nIn food, in sport and life-preserving rest\nTo be disturb'd, would mad or man or beast:\nThe consequence is then thy jealous fits\nHave scared thy husband from the use of wits.\n\nLUCIANA:\nShe never reprehended him but mildly,\nWhen he demean'd himself rough, rude and wildly.\nWhy bear you these rebukes and answer not?\n\nADRIANA:\nShe did betray me to my own reproof.\nGood people enter and lay hold on him.\n\nAEMELIA:\nNo, not a creature enters in my house.\n\nADRIANA:\nThen let your servants bring my husband forth.\n\nAEMELIA:\nNeither: he took this place for sanctuary,\nAnd it shall privilege him from your hands\nTill I have brought him to his wits again,\nOr lose my labour in assaying it.\n\nADRIANA:\nI will attend my husband, be his nurse,\nDiet his sickness, for it is my office,\nAnd will have no attorney but myself;\nAnd therefore let me have him home with me.\n\nAEMELIA:\nBe patient; for I will not let him stir\nTill I have used the approved means I have,\nWith wholesome syrups, drugs and holy prayers,\nTo make of him a formal man again:\nIt is a branch and parcel of mine oath,\nA charitable duty of my order.\nTherefore depart and leave him here with me.\n\nADRIANA:\nI will not hence and leave my husband here:\nAnd ill it doth beseem your holiness\nTo separate the husband and the wife.\n\nAEMELIA:\nBe quiet and depart: thou shalt not have him.\n\nLUCIANA:\nComplain unto the duke of this indignity.\n\nADRIANA:\nCome, go: I will fall prostrate at his feet\nAnd never rise until my tears and prayers\nHave won his grace to come in person hither\nAnd take perforce my husband from the abbess.\n\nSecond Merchant:\nBy this, I think, the dial points at five:\nAnon, I'm sure, the duke himself in person\nComes this way to the melancholy vale,\nThe place of death and sorry execution,\nBehind the ditches of the abbey here.\n\nANGELO:\nUpon what cause?\n\nSecond Merchant:\nTo see a reverend Syracusian merchant,\nWho put unluckily into this bay\nAgainst the laws and statutes of this town,\nBeheaded publicly for his offence.\n\nANGELO:\nSee where they come: we will behold his death.\n\nLUCIANA:\nKneel to the duke before he pass the abbey.\n\nDUKE SOLINUS:\nYet once again proclaim it publicly,\nIf any friend will pay the sum for him,\nHe shall not die; so much we tender him.\n\nADRIANA:\nJustice, most sacred duke, against the abbess!\n\nDUKE SOLINUS:\nShe is a virtuous and a reverend lady:\nIt cannot be that she hath done thee wrong.\n\nADRIANA:\nMay it please your grace, Antipholus, my husband,\nWhom I made lord of me and all I had,\nAt your important letters,--this ill day\nA most outrageous fit of madness took him;\nThat desperately he hurried through the street,\nWith him his bondman, all as mad as he--\nDoing displeasure to the citizens\nBy rushing in their houses, bearing thence\nRings, jewels, any thing his rage did like.\nOnce did I get him bound and sent him home,\nWhilst to take order for the wrongs I went,\nThat here and there his fury had committed.\nAnon, I wot not by what strong escape,\nHe broke from those that had the guard of him;\nAnd with his mad attendant and himself,\nEach one with ireful passion, with drawn swords,\nMet us again and madly bent on us,\nChased us away; till, raising of more aid,\nWe came again to bind them. Then they fled\nInto this abbey, whither we pursued them:\nAnd here the abbess shuts the gates on us\nAnd will not suffer us to fetch him out,\nNor send him forth that we may bear him hence.\nTherefore, most gracious duke, with thy command\nLet him be brought forth and borne hence for help.\n\nDUKE SOLINUS:\nLong since thy husband served me in my wars,\nAnd I to thee engaged a prince's word,\nWhen thou didst make him master of thy bed,\nTo do him all the grace and good I could.\nGo, some of you, knock at the abbey-gate\nAnd bid the lady abbess come to me.\nI will determine this before I stir.\n\nServant:\nO mistress, mistress, shift and save yourself!\nMy master and his man are both broke loose,\nBeaten the maids a-row and bound the doctor\nWhose beard they have singed off with brands of fire;\nAnd ever, as it blazed, they threw on him\nGreat pails of puddled mire to quench the hair:\nMy master preaches patience to him and the while\nHis man with scissors nicks him like a fool,\nAnd sure, unless you send some present help,\nBetween them they will kill the conjurer.\n\nADRIANA:\nPeace, fool! thy master and his man are here,\nAnd that is false thou dost report to us.\n\nServant:\nMistress, upon my life, I tell you true;\nI have not breathed almost since I did see it.\nHe cries for you, and vows, if he can take you,\nTo scorch your face and to disfigure you.\nHark, hark! I hear him, mistress. fly, be gone!\n\nDUKE SOLINUS:\nCome, stand by me; fear nothing. Guard with halberds!\n\nADRIANA:\nAy me, it is my husband! Witness you,\nThat he is borne about invisible:\nEven now we housed him in the abbey here;\nAnd now he's there, past thought of human reason.\n\nANTIPHOLUS OF EPHESUS:\nJustice, most gracious duke, O, grant me justice!\nEven for the service that long since I did thee,\nWhen I bestrid thee in the wars and took\nDeep scars to save thy life; even for the blood\nThat then I lost for thee, now grant me justice.\n\nAEGEON:\nUnless the fear of death doth make me dote,\nI see my son Antipholus and Dromio.\n\nANTIPHOLUS OF EPHESUS:\nJustice, sweet prince, against that woman there!\nShe whom thou gavest to me to be my wife,\nThat hath abused and dishonour'd me\nEven in the strength and height of injury!\nBeyond imagination is the wrong\nThat she this day hath shameless thrown on me.\n\nDUKE SOLINUS:\nDiscover how, and thou shalt find me just.\n\nANTIPHOLUS OF EPHESUS:\nThis day, great duke, she shut the doors upon me,\nWhile she with harlots feasted in my house.\n\nDUKE SOLINUS:\nA grievous fault! Say, woman, didst thou so?\n\nADRIANA:\nNo, my good lord: myself, he and my sister\nTo-day did dine together. So befall my soul\nAs this is false he burdens me withal!\n\nLUCIANA:\nNe'er may I look on day, nor sleep on night,\nBut she tells to your highness simple truth!\n\nANGELO:\nO perjured woman! They are both forsworn:\nIn this the madman justly chargeth them.\n\nANTIPHOLUS OF EPHESUS:\nMy liege, I am advised what I say,\nNeither disturbed with the effect of wine,\nNor heady-rash, provoked with raging ire,\nAlbeit my wrongs might make one wiser mad.\nThis woman lock'd me out this day from dinner:\nThat goldsmith there, were he not pack'd with her,\nCould witness it, for he was with me then;\nWho parted with me to go fetch a chain,\nPromising to bring it to the Porpentine,\nWhere Balthazar and I did dine together.\nOur dinner done, and he not coming thither,\nI went to seek him: in the street I met him\nAnd in his company that gentleman.\nThere did this perjured goldsmith swear me down\nThat I this day of him received the chain,\nWhich, God he knows, I saw not: for the which\nHe did arrest me with an officer.\nI did obey, and sent my peasant home\nFor certain ducats: he with none return'd\nThen fairly I bespoke the officer\nTo go in person with me to my house.\nBy the way we met\nMy wife, her sister, and a rabble more\nOf vile confederates. Along with them\nThey brought one Pinch, a hungry lean-faced villain,\nA mere anatomy, a mountebank,\nA threadbare juggler and a fortune-teller,\nA needy, hollow-eyed, sharp-looking wretch,\nA dead-looking man: this pernicious slave,\nForsooth, took on him as a conjurer,\nAnd, gazing in mine eyes, feeling my pulse,\nAnd with no face, as 'twere, outfacing me,\nCries out, I was possess'd. Then all together\nThey fell upon me, bound me, bore me thence\nAnd in a dark and dankish vault at home\nThere left me and my man, both bound together;\nTill, gnawing with my teeth my bonds in sunder,\nI gain'd my freedom, and immediately\nRan hither to your grace; whom I beseech\nTo give me ample satisfaction\nFor these deep shames and great indignities.\n\nANGELO:\nMy lord, in truth, thus far I witness with him,\nThat he dined not at home, but was lock'd out.\n\nDUKE SOLINUS:\nBut had he such a chain of thee or no?\n\nANGELO:\nHe had, my lord: and when he ran in here,\nThese people saw the chain about his neck.\n\nSecond Merchant:\nBesides, I will be sworn these ears of mine\nHeard you confess you had the chain of him\nAfter you first forswore it on the mart:\nAnd thereupon I drew my sword on you;\nAnd then you fled into this abbey here,\nFrom whence, I think, you are come by miracle.\n\nANTIPHOLUS OF EPHESUS:\nI never came within these abbey-walls,\nNor ever didst thou draw thy sword on me:\nI never saw the chain, so help me Heaven!\nAnd this is false you burden me withal.\n\nDUKE SOLINUS:\nWhy, what an intricate impeach is this!\nI think you all have drunk of Circe's cup.\nIf here you housed him, here he would have been;\nIf he were mad, he would not plead so coldly:\nYou say he dined at home; the goldsmith here\nDenies that saying. Sirrah, what say you?\n\nDROMIO OF EPHESUS:\nSir, he dined with her there, at the Porpentine.\n\nCourtezan:\nHe did, and from my finger snatch'd that ring.\n\nANTIPHOLUS OF EPHESUS:\n'Tis true, my liege; this ring I had of her.\n\nDUKE SOLINUS:\nSaw'st thou him enter at the abbey here?\n\nCourtezan:\nAs sure, my liege, as I do see your grace.\n\nDUKE SOLINUS:\nWhy, this is strange. Go call the abbess hither.\nI think you are all mated or stark mad.\n\nAEGEON:\nMost mighty duke, vouchsafe me speak a word:\nHaply I see a friend will save my life\nAnd pay the sum that may deliver me.\n\nDUKE SOLINUS:\nSpeak freely, Syracusian, what thou wilt.\n\nAEGEON:\nIs not your name, sir, call'd Antipholus?\nAnd is not that your bondman, Dromio?\n\nDROMIO OF EPHESUS:\nWithin this hour I was his bondman sir,\nBut he, I thank him, gnaw'd in two my cords:\nNow am I Dromio and his man unbound.\n\nAEGEON:\nI am sure you both of you remember me.\n\nDROMIO OF EPHESUS:\nOurselves we do remember, sir, by you;\nFor lately we were bound, as you are now\nYou are not Pinch's patient, are you, sir?\n\nAEGEON:\nWhy look you strange on me? you know me well.\n\nAEGEON:\nO, grief hath changed me since you saw me last,\nAnd careful hours with time's deformed hand\nHave written strange defeatures in my face:\nBut tell me yet, dost thou not know my voice?\n\nANTIPHOLUS OF EPHESUS:\nNeither.\n\nAEGEON:\nDromio, nor thou?\n\nDROMIO OF EPHESUS:\nNo, trust me, sir, nor I.\n\nAEGEON:\nI am sure thou dost.\n\nDROMIO OF EPHESUS:\nAy, sir, but I am sure I do not; and whatsoever a\nman denies, you are now bound to believe him.\n\nAEGEON:\nNot know my voice! O time's extremity,\nHast thou so crack'd and splitted my poor tongue\nIn seven short years, that here my only son\nKnows not my feeble key of untuned cares?\nThough now this grained face of mine be hid\nIn sap-consuming winter's drizzled snow,\nAnd all the conduits of my blood froze up,\nYet hath my night of life some memory,\nMy wasting lamps some fading glimmer left,\nMy dull deaf ears a little use to hear:\nAll these old witnesses--I cannot err--\nTell me thou art my son Antipholus.\n\nANTIPHOLUS OF EPHESUS:\nI never saw my father in my life.\n\nAEGEON:\nBut seven years since, in Syracusa, boy,\nThou know'st we parted: but perhaps, my son,\nThou shamest to acknowledge me in misery.\n\nANTIPHOLUS OF EPHESUS:\nThe duke and all that know me in the city\nCan witness with me that it is not so\nI ne'er saw Syracusa in my life.\n\nDUKE SOLINUS:\nI tell thee, Syracusian, twenty years\nHave I been patron to Antipholus,\nDuring which time he ne'er saw Syracusa:\nI see thy age and dangers make thee dote.\n\nAEMELIA:\nMost mighty duke, behold a man much wrong'd.\n\nADRIANA:\nI see two husbands, or mine eyes deceive me.\n\nDUKE SOLINUS:\nOne of these men is Genius to the other;\nAnd so of these. Which is the natural man,\nAnd which the spirit? who deciphers them?\n\nDROMIO OF SYRACUSE:\nI, sir, am Dromio; command him away.\n\nDROMIO OF EPHESUS:\nI, sir, am Dromio; pray, let me stay.\n\nANTIPHOLUS OF SYRACUSE:\nAEgeon art thou not? or else his ghost?\n\nDROMIO OF SYRACUSE:\nO, my old master! who hath bound him here?\n\nAEMELIA:\nWhoever bound him, I will loose his bonds\nAnd gain a husband by his liberty.\nSpeak, old AEgeon, if thou be'st the man\nThat hadst a wife once call'd AEmilia\nThat bore thee at a burden two fair sons:\nO, if thou be'st the same AEgeon, speak,\nAnd speak unto the same AEmilia!\n\nAEGEON:\nIf I dream not, thou art AEmilia:\nIf thou art she, tell me where is that son\nThat floated with thee on the fatal raft?\n\nAEMELIA:\nBy men of Epidamnum he and I\nAnd the twin Dromio all were taken up;\nBut by and by rude fishermen of Corinth\nBy force took Dromio and my son from them\nAnd me they left with those of Epidamnum.\nWhat then became of them I cannot tell\nI to this fortune that you see me in.\n\nDUKE SOLINUS:\nWhy, here begins his morning story right;\nThese two Antipholuses, these two so like,\nAnd these two Dromios, one in semblance,--\nBesides her urging of her wreck at sea,--\nThese are the parents to these children,\nWhich accidentally are met together.\nAntipholus, thou camest from Corinth first?\n\nANTIPHOLUS OF SYRACUSE:\nNo, sir, not I; I came from Syracuse.\n\nDUKE SOLINUS:\nStay, stand apart; I know not which is which.\n\nANTIPHOLUS OF EPHESUS:\nI came from Corinth, my most gracious lord,--\n\nDROMIO OF EPHESUS:\nAnd I with him.\n\nANTIPHOLUS OF EPHESUS:\nBrought to this town by that most famous warrior,\nDuke Menaphon, your most renowned uncle.\n\nADRIANA:\nWhich of you two did dine with me to-day?\n\nANTIPHOLUS OF SYRACUSE:\nI, gentle mistress.\n\nADRIANA:\nAnd are not you my husband?\n\nANTIPHOLUS OF EPHESUS:\nNo; I say nay to that.\n\nANTIPHOLUS OF SYRACUSE:\nAnd so do I; yet did she call me so:\nAnd this fair gentlewoman, her sister here,\nDid call me brother.\nWhat I told you then,\nI hope I shall have leisure to make good;\nIf this be not a dream I see and hear.\n\nANGELO:\nThat is the chain, sir, which you had of me.\n\nANTIPHOLUS OF SYRACUSE:\nI think it be, sir; I deny it not.\n\nANTIPHOLUS OF EPHESUS:\nAnd you, sir, for this chain arrested me.\n\nANGELO:\nI think I did, sir; I deny it not.\n\nADRIANA:\nI sent you money, sir, to be your bail,\nBy Dromio; but I think he brought it not.\n\nDROMIO OF EPHESUS:\nNo, none by me.\n\nANTIPHOLUS OF SYRACUSE:\nThis purse of ducats I received from you,\nAnd Dromio, my man, did bring them me.\nI see we still did meet each other's man,\nAnd I was ta'en for him, and he for me,\nAnd thereupon these errors are arose.\n\nANTIPHOLUS OF EPHESUS:\nThese ducats pawn I for my father here.\n\nDUKE SOLINUS:\nIt shall not need; thy father hath his life.\n\nCourtezan:\nSir, I must have that diamond from you.\n\nANTIPHOLUS OF EPHESUS:\nThere, take it; and much thanks for my good cheer.\n\nAEMELIA:\nRenowned duke, vouchsafe to take the pains\nTo go with us into the abbey here\nAnd hear at large discoursed all our fortunes:\nAnd all that are assembled in this place,\nThat by this sympathized one day's error\nHave suffer'd wrong, go keep us company,\nAnd we shall make full satisfaction.\nThirty-three years have I but gone in travail\nOf you, my sons; and till this present hour\nMy heavy burden ne'er delivered.\nThe duke, my husband and my children both,\nAnd you the calendars of their nativity,\nGo to a gossips' feast and go with me;\nAfter so long grief, such festivity!\n\nDUKE SOLINUS:\nWith all my heart, I'll gossip at this feast.\n\nDROMIO OF SYRACUSE:\nMaster, shall I fetch your stuff from shipboard?\n\nANTIPHOLUS OF EPHESUS:\nDromio, what stuff of mine hast thou embark'd?\n\nDROMIO OF SYRACUSE:\nYour goods that lay at host, sir, in the Centaur.\n\nANTIPHOLUS OF SYRACUSE:\nHe speaks to me. I am your master, Dromio:\nCome, go with us; we'll look to that anon:\nEmbrace thy brother there; rejoice with him.\n\nDROMIO OF SYRACUSE:\nThere is a fat friend at your master's house,\nThat kitchen'd me for you to-day at dinner:\nShe now shall be my sister, not my wife.\n\nDROMIO OF EPHESUS:\nMethinks you are my glass, and not my brother:\nI see by you I am a sweet-faced youth.\nWill you walk in to see their gossiping?\n\nDROMIO OF SYRACUSE:\nNot I, sir; you are my elder.\n\nDROMIO OF EPHESUS:\nThat's a question: how shall we try it?\n\nDROMIO OF SYRACUSE:\nWe'll draw cuts for the senior: till then lead thou first.\n\nDROMIO OF EPHESUS:\nNay, then, thus:\nWe came into the world like brother and brother;\nAnd now let's go hand in hand, not one before another.\n\nChorus:\nO for a Muse of fire, that would ascend\nThe brightest heaven of invention,\nA kingdom for a stage, princes to act\nAnd monarchs to behold the swelling scene!\nThen should the warlike Harry, like himself,\nAssume the port of Mars; and at his heels,\nLeash'd in like hounds, should famine, sword and fire\nCrouch for employment. But pardon, and gentles all,\nThe flat unraised spirits that have dared\nOn this unworthy scaffold to bring forth\nSo great an object: can this cockpit hold\nThe vasty fields of France? or may we cram\nWithin this wooden O the very casques\nThat did affright the air at Agincourt?\nO, pardon! since a crooked figure may\nAttest in little place a million;\nAnd let us, ciphers to this great accompt,\nOn your imaginary forces work.\nSuppose within the girdle of these walls\nAre now confined two mighty monarchies,\nWhose high upreared and abutting fronts\nThe perilous narrow ocean parts asunder:\nPiece out our imperfections with your thoughts;\nInto a thousand parts divide on man,\nAnd make imaginary puissance;\nThink when we talk of horses, that you see them\nPrinting their proud hoofs i' the receiving earth;\nFor 'tis your thoughts that now must deck our kings,\nCarry them here and there; jumping o'er times,\nTurning the accomplishment of many years\nInto an hour-glass: for the which supply,\nAdmit me Chorus to this history;\nWho prologue-like your humble patience pray,\nGently to hear, kindly to judge, our play.\n\nCANTERBURY:\nMy lord, I'll tell you; that self bill is urged,\nWhich in the eleventh year of the last king's reign\nWas like, and had indeed against us pass'd,\nBut that the scambling and unquiet time\nDid push it out of farther question.\n\nELY:\nBut how, my lord, shall we resist it now?\n\nCANTERBURY:\nIt must be thought on. If it pass against us,\nWe lose the better half of our possession:\nFor all the temporal lands which men devout\nBy testament have given to the church\nWould they strip from us; being valued thus:\nAs much as would maintain, to the king's honour,\nFull fifteen earls and fifteen hundred knights,\nSix thousand and two hundred good esquires;\nAnd, to relief of lazars and weak age,\nOf indigent faint souls past corporal toil.\nA hundred almshouses right well supplied;\nAnd to the coffers of the king beside,\nA thousand pounds by the year: thus runs the bill.\n\nELY:\nThis would drink deep.\n\nCANTERBURY:\n'Twould drink the cup and all.\n\nELY:\nBut what prevention?\n\nCANTERBURY:\nThe king is full of grace and fair regard.\n\nELY:\nAnd a true lover of the holy church.\n\nCANTERBURY:\nThe courses of his youth promised it not.\nThe breath no sooner left his father's body,\nBut that his wildness, mortified in him,\nSeem'd to die too; yea, at that very moment\nConsideration, like an angel, came\nAnd whipp'd the offending Adam out of him,\nLeaving his body as a paradise,\nTo envelop and contain celestial spirits.\nNever was such a sudden scholar made;\nNever came reformation in a flood,\nWith such a heady currance, scouring faults\nNor never Hydra-headed wilfulness\nSo soon did lose his seat and all at once\nAs in this king.\n\nELY:\nWe are blessed in the change.\n\nCANTERBURY:\nHear him but reason in divinity,\nAnd all-admiring with an inward wish\nYou would desire the king were made a prelate:\nHear him debate of commonwealth affairs,\nYou would say it hath been all in all his study:\nList his discourse of war, and you shall hear\nA fearful battle render'd you in music:\nTurn him to any cause of policy,\nThe Gordian knot of it he will unloose,\nFamiliar as his garter: that, when he speaks,\nThe air, a charter'd libertine, is still,\nAnd the mute wonder lurketh in men's ears,\nTo steal his sweet and honey'd sentences;\nSo that the art and practic part of life\nMust be the mistress to this theoric:\nWhich is a wonder how his grace should glean it,\nSince his addiction was to courses vain,\nHis companies unletter'd, rude and shallow,\nHis hours fill'd up with riots, banquets, sports,\nAnd never noted in him any study,\nAny retirement, any sequestration\nFrom open haunts and popularity.\n\nELY:\nThe strawberry grows underneath the nettle\nAnd wholesome berries thrive and ripen best\nNeighbour'd by fruit of baser quality:\nAnd so the prince obscured his contemplation\nUnder the veil of wildness; which, no doubt,\nGrew like the summer grass, fastest by night,\nUnseen, yet crescive in his faculty.\n\nCANTERBURY:\nIt must be so; for miracles are ceased;\nAnd therefore we must needs admit the means\nHow things are perfected.\n\nELY:\nBut, my good lord,\nHow now for mitigation of this bill\nUrged by the commons? Doth his majesty\nIncline to it, or no?\n\nCANTERBURY:\nHe seems indifferent,\nOr rather swaying more upon our part\nThan cherishing the exhibiters against us;\nFor I have made an offer to his majesty,\nUpon our spiritual convocation\nAnd in regard of causes now in hand,\nWhich I have open'd to his grace at large,\nAs touching France, to give a greater sum\nThan ever at one time the clergy yet\nDid to his predecessors part withal.\n\nELY:\nHow did this offer seem received, my lord?\n\nCANTERBURY:\nWith good acceptance of his majesty;\nSave that there was not time enough to hear,\nAs I perceived his grace would fain have done,\nThe severals and unhidden passages\nOf his true titles to some certain dukedoms\nAnd generally to the crown and seat of France\nDerived from Edward, his great-grandfather.\n\nELY:\nWhat was the impediment that broke this off?\n\nCANTERBURY:\nThe French ambassador upon that instant\nCraved audience; and the hour, I think, is come\nTo give him hearing: is it four o'clock?\n\nELY:\nIt is.\n\nCANTERBURY:\nThen go we in, to know his embassy;\nWhich I could with a ready guess declare,\nBefore the Frenchman speak a word of it.\n\nELY:\nI'll wait upon you, and I long to hear it.\n\nKING HENRY V:\nWhere is my gracious Lord of Canterbury?\n\nEXETER:\nNot here in presence.\n\nKING HENRY V:\nSend for him, good uncle.\n\nWESTMORELAND:\nShall we call in the ambassador, my liege?\n\nKING HENRY V:\nNot yet, my cousin: we would be resolved,\nBefore we hear him, of some things of weight\nThat task our thoughts, concerning us and France.\n\nCANTERBURY:\nGod and his angels guard your sacred throne\nAnd make you long become it!\n\nKING HENRY V:\nSure, we thank you.\nMy learned lord, we pray you to proceed\nAnd justly and religiously unfold\nWhy the law Salique that they have in France\nOr should, or should not, bar us in our claim:\nAnd God forbid, my dear and faithful lord,\nThat you should fashion, wrest, or bow your reading,\nOr nicely charge your understanding soul\nWith opening titles miscreate, whose right\nSuits not in native colours with the truth;\nFor God doth know how many now in health\nShall drop their blood in approbation\nOf what your reverence shall incite us to.\nTherefore take heed how you impawn our person,\nHow you awake our sleeping sword of war:\nWe charge you, in the name of God, take heed;\nFor never two such kingdoms did contend\nWithout much fall of blood; whose guiltless drops\nAre every one a woe, a sore complaint\n'Gainst him whose wrong gives edge unto the swords\nThat make such waste in brief mortality.\nUnder this conjuration, speak, my lord;\nFor we will hear, note and believe in heart\nThat what you speak is in your conscience wash'd\nAs pure as sin with baptism.\n\nCANTERBURY:\nThen hear me, gracious sovereign, and you peers,\nThat owe yourselves, your lives and services\nTo this imperial throne. There is no bar\nTo make against your highness' claim to France\nBut this, which they produce from Pharamond,\n'In terram Salicam mulieres ne succedant:'\n'No woman shall succeed in Salique land:'\nWhich Salique land the French unjustly gloze\nTo be the realm of France, and Pharamond\nThe founder of this law and female bar.\nYet their own authors faithfully affirm\nThat the land Salique is in Germany,\nBetween the floods of Sala and of Elbe;\nWhere Charles the Great, having subdued the Saxons,\nThere left behind and settled certain French;\nWho, holding in disdain the German women\nFor some dishonest manners of their life,\nEstablish'd then this law; to wit, no female\nShould be inheritrix in Salique land:\nWhich Salique, as I said, 'twixt Elbe and Sala,\nIs at this day in Germany call'd Meisen.\nThen doth it well appear that Salique law\nWas not devised for the realm of France:\nNor did the French possess the Salique land\nUntil four hundred one and twenty years\nAfter defunction of King Pharamond,\nIdly supposed the founder of this law;\nWho died within the year of our redemption\nFour hundred twenty-six; and Charles the Great\nSubdued the Saxons, and did seat the French\nBeyond the river Sala, in the year\nEight hundred five. Besides, their writers say,\nKing Pepin, which deposed Childeric,\nDid, as heir general, being descended\nOf Blithild, which was daughter to King Clothair,\nMake claim and title to the crown of France.\nHugh Capet also, who usurped the crown\nOf Charles the duke of Lorraine, sole heir male\nOf the true line and stock of Charles the Great,\nTo find his title with some shows of truth,\n'Through, in pure truth, it was corrupt and naught,\nConvey'd himself as heir to the Lady Lingare,\nDaughter to Charlemain, who was the son\nTo Lewis the emperor, and Lewis the son\nOf Charles the Great. Also King Lewis the Tenth,\nWho was sole heir to the usurper Capet,\nCould not keep quiet in his conscience,\nWearing the crown of France, till satisfied\nThat fair Queen Isabel, his grandmother,\nWas lineal of the Lady Ermengare,\nDaughter to Charles the foresaid duke of Lorraine:\nBy the which marriage the line of Charles the Great\nWas re-united to the crown of France.\nSo that, as clear as is the summer's sun.\nKing Pepin's title and Hugh Capet's claim,\nKing Lewis his satisfaction, all appear\nTo hold in right and title of the female:\nSo do the kings of France unto this day;\nHowbeit they would hold up this Salique law\nTo bar your highness claiming from the female,\nAnd rather choose to hide them in a net\nThan amply to imbar their crooked titles\nUsurp'd from you and your progenitors.\n\nKING HENRY V:\nMay I with right and conscience make this claim?\n\nCANTERBURY:\nThe sin upon my head, dread sovereign!\nFor in the book of Numbers is it writ,\nWhen the man dies, let the inheritance\nDescend unto the daughter. Gracious lord,\nStand for your own; unwind your bloody flag;\nLook back into your mighty ancestors:\nGo, my dread lord, to your great-grandsire's tomb,\nFrom whom you claim; invoke his warlike spirit,\nAnd your great-uncle's, Edward the Black Prince,\nWho on the French ground play'd a tragedy,\nMaking defeat on the full power of France,\nWhiles his most mighty father on a hill\nStood smiling to behold his lion's whelp\nForage in blood of French nobility.\nO noble English. that could entertain\nWith half their forces the full Pride of France\nAnd let another half stand laughing by,\nAll out of work and cold for action!\n\nELY:\nAwake remembrance of these valiant dead\nAnd with your puissant arm renew their feats:\nYou are their heir; you sit upon their throne;\nThe blood and courage that renowned them\nRuns in your veins; and my thrice-puissant liege\nIs in the very May-morn of his youth,\nRipe for exploits and mighty enterprises.\n\nEXETER:\nYour brother kings and monarchs of the earth\nDo all expect that you should rouse yourself,\nAs did the former lions of your blood.\n\nWESTMORELAND:\nThey know your grace hath cause and means and might;\nSo hath your highness; never king of England\nHad nobles richer and more loyal subjects,\nWhose hearts have left their bodies here in England\nAnd lie pavilion'd in the fields of France.\n\nCANTERBURY:\nO, let their bodies follow, my dear liege,\nWith blood and sword and fire to win your right;\nIn aid whereof we of the spiritualty\nWill raise your highness such a mighty sum\nAs never did the clergy at one time\nBring in to any of your ancestors.\n\nKING HENRY V:\nWe must not only arm to invade the French,\nBut lay down our proportions to defend\nAgainst the Scot, who will make road upon us\nWith all advantages.\n\nCANTERBURY:\nThey of those marches, gracious sovereign,\nShall be a wall sufficient to defend\nOur inland from the pilfering borderers.\n\nKING HENRY V:\nWe do not mean the coursing snatchers only,\nBut fear the main intendment of the Scot,\nWho hath been still a giddy neighbour to us;\nFor you shall read that my great-grandfather\nNever went with his forces into France\nBut that the Scot on his unfurnish'd kingdom\nCame pouring, like the tide into a breach,\nWith ample and brim fulness of his force,\nGalling the gleaned land with hot assays,\nGirding with grievous siege castles and towns;\nThat England, being empty of defence,\nHath shook and trembled at the ill neighbourhood.\n\nCANTERBURY:\nShe hath been then more fear'd than harm'd, my liege;\nFor hear her but exampled by herself:\nWhen all her chivalry hath been in France\nAnd she a mourning widow of her nobles,\nShe hath herself not only well defended\nBut taken and impounded as a stray\nThe King of Scots; whom she did send to France,\nTo fill King Edward's fame with prisoner kings\nAnd make her chronicle as rich with praise\nAs is the ooze and bottom of the sea\nWith sunken wreck and sunless treasuries.\n\nWESTMORELAND:\nBut there's a saying very old and true,\n'If that you will France win,\nThen with Scotland first begin:'\nFor once the eagle England being in prey,\nTo her unguarded nest the weasel Scot\nComes sneaking and so sucks her princely eggs,\nPlaying the mouse in absence of the cat,\nTo tear and havoc more than she can eat.\n\nEXETER:\nIt follows then the cat must stay at home:\nYet that is but a crush'd necessity,\nSince we have locks to safeguard necessaries,\nAnd pretty traps to catch the petty thieves.\nWhile that the armed hand doth fight abroad,\nThe advised head defends itself at home;\nFor government, though high and low and lower,\nPut into parts, doth keep in one consent,\nCongreeing in a full and natural close,\nLike music.\n\nCANTERBURY:\nTherefore doth heaven divide\nThe state of man in divers functions,\nSetting endeavour in continual motion;\nTo which is fixed, as an aim or butt,\nObedience: for so work the honey-bees,\nCreatures that by a rule in nature teach\nThe act of order to a peopled kingdom.\nThey have a king and officers of sorts;\nWhere some, like magistrates, correct at home,\nOthers, like merchants, venture trade abroad,\nOthers, like soldiers, armed in their stings,\nMake boot upon the summer's velvet buds,\nWhich pillage they with merry march bring home\nTo the tent-royal of their emperor;\nWho, busied in his majesty, surveys\nThe singing masons building roofs of gold,\nThe civil citizens kneading up the honey,\nThe poor mechanic porters crowding in\nTheir heavy burdens at his narrow gate,\nThe sad-eyed justice, with his surly hum,\nDelivering o'er to executors pale\nThe lazy yawning drone. I this infer,\nThat many things, having full reference\nTo one consent, may work contrariously:\nAs many arrows, loosed several ways,\nCome to one mark; as many ways meet in one town;\nAs many fresh streams meet in one salt sea;\nAs many lines close in the dial's centre;\nSo may a thousand actions, once afoot.\nEnd in one purpose, and be all well borne\nWithout defeat. Therefore to France, my liege.\nDivide your happy England into four;\nWhereof take you one quarter into France,\nAnd you withal shall make all Gallia shake.\nIf we, with thrice such powers left at home,\nCannot defend our own doors from the dog,\nLet us be worried and our nation lose\nThe name of hardiness and policy.\n\nKING HENRY V:\nCall in the messengers sent from the Dauphin.\nNow are we well resolved; and, by God's help,\nAnd yours, the noble sinews of our power,\nFrance being ours, we'll bend it to our awe,\nOr break it all to pieces: or there we'll sit,\nRuling in large and ample empery\nO'er France and all her almost kingly dukedoms,\nOr lay these bones in an unworthy urn,\nTombless, with no remembrance over them:\nEither our history shall with full mouth\nSpeak freely of our acts, or else our grave,\nLike Turkish mute, shall have a tongueless mouth,\nNot worshipp'd with a waxen epitaph.\nNow are we well prepared to know the pleasure\nOf our fair cousin Dauphin; for we hear\nYour greeting is from him, not from the king.\n\nFirst Ambassador:\nMay't please your majesty to give us leave\nFreely to render what we have in charge;\nOr shall we sparingly show you far off\nThe Dauphin's meaning and our embassy?\n\nKING HENRY V:\nWe are no tyrant, but a Christian king;\nUnto whose grace our passion is as subject\nAs are our wretches fetter'd in our prisons:\nTherefore with frank and with uncurbed plainness\nTell us the Dauphin's mind.\n\nFirst Ambassador:\nThus, then, in few.\nYour highness, lately sending into France,\nDid claim some certain dukedoms, in the right\nOf your great predecessor, King Edward the Third.\nIn answer of which claim, the prince our master\nSays that you savour too much of your youth,\nAnd bids you be advised there's nought in France\nThat can be with a nimble galliard won;\nYou cannot revel into dukedoms there.\nHe therefore sends you, meeter for your spirit,\nThis tun of treasure; and, in lieu of this,\nDesires you let the dukedoms that you claim\nHear no more of you. This the Dauphin speaks.\n\nKING HENRY V:\nWhat treasure, uncle?\n\nEXETER:\nTennis-balls, my liege.\n\nKING HENRY V:\nWe are glad the Dauphin is so pleasant with us;\nHis present and your pains we thank you for:\nWhen we have march'd our rackets to these balls,\nWe will, in France, by God's grace, play a set\nShall strike his father's crown into the hazard.\nTell him he hath made a match with such a wrangler\nThat all the courts of France will be disturb'd\nWith chaces. And we understand him well,\nHow he comes o'er us with our wilder days,\nNot measuring what use we made of them.\nWe never valued this poor seat of England;\nAnd therefore, living hence, did give ourself\nTo barbarous licence; as 'tis ever common\nThat men are merriest when they are from home.\nBut tell the Dauphin I will keep my state,\nBe like a king and show my sail of greatness\nWhen I do rouse me in my throne of France:\nFor that I have laid by my majesty\nAnd plodded like a man for working-days,\nBut I will rise there with so full a glory\nThat I will dazzle all the eyes of France,\nYea, strike the Dauphin blind to look on us.\nAnd tell the pleasant prince this mock of his\nHath turn'd his balls to gun-stones; and his soul\nShall stand sore charged for the wasteful vengeance\nThat shall fly with them: for many a thousand widows\nShall this his mock mock out of their dear husbands;\nMock mothers from their sons, mock castles down;\nAnd some are yet ungotten and unborn\nThat shall have cause to curse the Dauphin's scorn.\nBut this lies all within the will of God,\nTo whom I do appeal; and in whose name\nTell you the Dauphin I am coming on,\nTo venge me as I may and to put forth\nMy rightful hand in a well-hallow'd cause.\nSo get you hence in peace; and tell the Dauphin\nHis jest will savour but of shallow wit,\nWhen thousands weep more than did laugh at it.\nConvey them with safe conduct. Fare you well.\n\nEXETER:\nThis was a merry message.\n\nKING HENRY V:\nWe hope to make the sender blush at it.\nTherefore, my lords, omit no happy hour\nThat may give furtherance to our expedition;\nFor we have now no thought in us but France,\nSave those to God, that run before our business.\nTherefore let our proportions for these wars\nBe soon collected and all things thought upon\nThat may with reasonable swiftness add\nMore feathers to our wings; for, God before,\nWe'll chide this Dauphin at his father's door.\nTherefore let every man now task his thought,\nThat this fair action may on foot be brought.\n\nChorus:\nNow all the youth of England are on fire,\nAnd silken dalliance in the wardrobe lies:\nNow thrive the armourers, and honour's thought\nReigns solely in the breast of every man:\nThey sell the pasture now to buy the horse,\nFollowing the mirror of all Christian kings,\nWith winged heels, as English Mercuries.\nFor now sits Expectation in the air,\nAnd hides a sword from hilts unto the point\nWith crowns imperial, crowns and coronets,\nPromised to Harry and his followers.\nThe French, advised by good intelligence\nOf this most dreadful preparation,\nShake in their fear and with pale policy\nSeek to divert the English purposes.\nO England! model to thy inward greatness,\nLike little body with a mighty heart,\nWhat mightst thou do, that honour would thee do,\nWere all thy children kind and natural!\nBut see thy fault! France hath in thee found out\nA nest of hollow bosoms, which he fills\nWith treacherous crowns; and three corrupted men,\nOne, Richard Earl of Cambridge, and the second,\nHenry Lord Scroop of Masham, and the third,\nSir Thomas Grey, knight, of Northumberland,\nHave, for the gilt of France,--O guilt indeed!\nConfirm'd conspiracy with fearful France;\nAnd by their hands this grace of kings must die,\nIf hell and treason hold their promises,\nEre he take ship for France, and in Southampton.\nLinger your patience on; and we'll digest\nThe abuse of distance; force a play:\nThe sum is paid; the traitors are agreed;\nThe king is set from London; and the scene\nIs now transported, gentles, to Southampton;\nThere is the playhouse now, there must you sit:\nAnd thence to France shall we convey you safe,\nAnd bring you back, charming the narrow seas\nTo give you gentle pass; for, if we may,\nWe'll not offend one stomach with our play.\nBut, till the king come forth, and not till then,\nUnto Southampton do we shift our scene.\n\nBARDOLPH:\nWell met, Corporal Nym.\n\nNYM:\nGood morrow, Lieutenant Bardolph.\n\nBARDOLPH:\nWhat, are Ancient Pistol and you friends yet?\n\nNYM:\nFor my part, I care not: I say little; but when\ntime shall serve, there shall be smiles; but that\nshall be as it may. I dare not fight; but I will\nwink and hold out mine iron: it is a simple one; but\nwhat though? it will toast cheese, and it will\nendure cold as another man's sword will: and\nthere's an end.\n\nBARDOLPH:\nI will bestow a breakfast to make you friends; and\nwe'll be all three sworn brothers to France: let it\nbe so, good Corporal Nym.\n\nNYM:\nFaith, I will live so long as I may, that's the\ncertain of it; and when I cannot live any longer, I\nwill do as I may: that is my rest, that is the\nrendezvous of it.\n\nBARDOLPH:\nIt is certain, corporal, that he is married to Nell\nQuickly: and certainly she did you wrong; for you\nwere troth-plight to her.\n\nNYM:\nI cannot tell: things must be as they may: men may\nsleep, and they may have their throats about them at\nthat time; and some say knives have edges. It must\nbe as it may: though patience be a tired mare, yet\nshe will plod. There must be conclusions. Well, I\ncannot tell.\n\nBARDOLPH:\nHere comes Ancient Pistol and his wife: good\ncorporal, be patient here. How now, mine host Pistol!\n\nPISTOL:\nBase tike, call'st thou me host? Now, by this hand,\nI swear, I scorn the term; Nor shall my Nell keep lodgers.\n\nHostess:\nNo, by my troth, not long; for we cannot lodge and\nboard a dozen or fourteen gentlewomen that live\nhonestly by the prick of their needles, but it will\nbe thought we keep a bawdy house straight.\nO well a day, Lady, if he be not drawn now! we\nshall see wilful adultery and murder committed.\n\nBARDOLPH:\nGood lieutenant! good corporal! offer nothing here.\n\nNYM:\nPish!\n\nPISTOL:\nPish for thee, Iceland dog! thou prick-ear'd cur of Iceland!\n\nHostess:\nGood Corporal Nym, show thy valour, and put up your sword.\n\nNYM:\nWill you shog off? I would have you solus.\n\nPISTOL:\n'Solus,' egregious dog? O viper vile!\nThe 'solus' in thy most mervailous face;\nThe 'solus' in thy teeth, and in thy throat,\nAnd in thy hateful lungs, yea, in thy maw, perdy,\nAnd, which is worse, within thy nasty mouth!\nI do retort the 'solus' in thy bowels;\nFor I can take, and Pistol's cock is up,\nAnd flashing fire will follow.\n\nNYM:\nI am not Barbason; you cannot conjure me. I have an\nhumour to knock you indifferently well. If you grow\nfoul with me, Pistol, I will scour you with my\nrapier, as I may, in fair terms: if you would walk\noff, I would prick your guts a little, in good\nterms, as I may: and that's the humour of it.\n\nPISTOL:\nO braggart vile and damned furious wight!\nThe grave doth gape, and doting death is near;\nTherefore exhale.\n\nBARDOLPH:\nHear me, hear me what I say: he that strikes the\nfirst stroke, I'll run him up to the hilts, as I am a soldier.\n\nPISTOL:\nAn oath of mickle might; and fury shall abate.\nGive me thy fist, thy fore-foot to me give:\nThy spirits are most tall.\n\nNYM:\nI will cut thy throat, one time or other, in fair\nterms: that is the humour of it.\n\nPISTOL:\n'Couple a gorge!'\nThat is the word. I thee defy again.\nO hound of Crete, think'st thou my spouse to get?\nNo; to the spital go,\nAnd from the powdering tub of infamy\nFetch forth the lazar kite of Cressid's kind,\nDoll Tearsheet she by name, and her espouse:\nI have, and I will hold, the quondam Quickly\nFor the only she; and--pauca, there's enough. Go to.\n\nBoy:\nMine host Pistol, you must come to my master, and\nyou, hostess: he is very sick, and would to bed.\nGood Bardolph, put thy face between his sheets, and\ndo the office of a warming-pan. Faith, he's very ill.\n\nBARDOLPH:\nAway, you rogue!\n\nHostess:\nBy my troth, he'll yield the crow a pudding one of\nthese days. The king has killed his heart. Good\nhusband, come home presently.\n\nBARDOLPH:\nCome, shall I make you two friends? We must to\nFrance together: why the devil should we keep\nknives to cut one another's throats?\n\nPISTOL:\nLet floods o'erswell, and fiends for food howl on!\n\nNYM:\nYou'll pay me the eight shillings I won of you at betting?\n\nPISTOL:\nBase is the slave that pays.\n\nNYM:\nThat now I will have: that's the humour of it.\n\nPISTOL:\nAs manhood shall compound: push home.\n\nBARDOLPH:\nBy this sword, he that makes the first thrust, I'll\nkill him; by this sword, I will.\n\nPISTOL:\nSword is an oath, and oaths must have their course.\n\nBARDOLPH:\nCorporal Nym, an thou wilt be friends, be friends:\nan thou wilt not, why, then, be enemies with me too.\nPrithee, put up.\n\nNYM:\nI shall have my eight shillings I won of you at betting?\n\nPISTOL:\nA noble shalt thou have, and present pay;\nAnd liquor likewise will I give to thee,\nAnd friendship shall combine, and brotherhood:\nI'll live by Nym, and Nym shall live by me;\nIs not this just? for I shall sutler be\nUnto the camp, and profits will accrue.\nGive me thy hand.\n\nNYM:\nI shall have my noble?\n\nPISTOL:\nIn cash most justly paid.\n\nNYM:\nWell, then, that's the humour of't.\n\nHostess:\nAs ever you came of women, come in quickly to Sir\nJohn. Ah, poor heart! he is so shaked of a burning\nquotidian tertian, that it is most lamentable to\nbehold. Sweet men, come to him.\n\nNYM:\nThe king hath run bad humours on the knight; that's\nthe even of it.\n\nPISTOL:\nNym, thou hast spoke the right;\nHis heart is fracted and corroborate.\n\nNYM:\nThe king is a good king: but it must be as it may;\nhe passes some humours and careers.\n\nPISTOL:\nLet us condole the knight; for, lambkins we will live.\n\nBEDFORD:\n'Fore God, his grace is bold, to trust these traitors.\n\nEXETER:\nThey shall be apprehended by and by.\n\nWESTMORELAND:\nHow smooth and even they do bear themselves!\nAs if allegiance in their bosoms sat,\nCrowned with faith and constant loyalty.\n\nBEDFORD:\nThe king hath note of all that they intend,\nBy interception which they dream not of.\n\nEXETER:\nNay, but the man that was his bedfellow,\nWhom he hath dull'd and cloy'd with gracious favours,\nThat he should, for a foreign purse, so sell\nHis sovereign's life to death and treachery.\n\nKING HENRY V:\nNow sits the wind fair, and we will aboard.\nMy Lord of Cambridge, and my kind Lord of Masham,\nAnd you, my gentle knight, give me your thoughts:\nThink you not that the powers we bear with us\nWill cut their passage through the force of France,\nDoing the execution and the act\nFor which we have in head assembled them?\n\nSCROOP:\nNo doubt, my liege, if each man do his best.\n\nKING HENRY V:\nI doubt not that; since we are well persuaded\nWe carry not a heart with us from hence\nThat grows not in a fair consent with ours,\nNor leave not one behind that doth not wish\nSuccess and conquest to attend on us.\n\nCAMBRIDGE:\nNever was monarch better fear'd and loved\nThan is your majesty: there's not, I think, a subject\nThat sits in heart-grief and uneasiness\nUnder the sweet shade of your government.\n\nGREY:\nTrue: those that were your father's enemies\nHave steep'd their galls in honey and do serve you\nWith hearts create of duty and of zeal.\n\nKING HENRY V:\nWe therefore have great cause of thankfulness;\nAnd shall forget the office of our hand,\nSooner than quittance of desert and merit\nAccording to the weight and worthiness.\n\nSCROOP:\nSo service shall with steeled sinews toil,\nAnd labour shall refresh itself with hope,\nTo do your grace incessant services.\n\nKING HENRY V:\nWe judge no less. Uncle of Exeter,\nEnlarge the man committed yesterday,\nThat rail'd against our person: we consider\nit was excess of wine that set him on;\nAnd on his more advice we pardon him.\n\nSCROOP:\nThat's mercy, but too much security:\nLet him be punish'd, sovereign, lest example\nBreed, by his sufferance, more of such a kind.\n\nKING HENRY V:\nO, let us yet be merciful.\n\nCAMBRIDGE:\nSo may your highness, and yet punish too.\n\nGREY:\nSir,\nYou show great mercy, if you give him life,\nAfter the taste of much correction.\n\nKING HENRY V:\nAlas, your too much love and care of me\nAre heavy orisons 'gainst this poor wretch!\nIf little faults, proceeding on distemper,\nShall not be wink'd at, how shall we stretch our eye\nWhen capital crimes, chew'd, swallow'd and digested,\nAppear before us? We'll yet enlarge that man,\nThough Cambridge, Scroop and Grey, in their dear care\nAnd tender preservation of our person,\nWould have him punished. And now to our French causes:\nWho are the late commissioners?\n\nCAMBRIDGE:\nI one, my lord:\nYour highness bade me ask for it to-day.\n\nSCROOP:\nSo did you me, my liege.\n\nGREY:\nAnd I, my royal sovereign.\n\nKING HENRY V:\nThen, Richard Earl of Cambridge, there is yours;\nThere yours, Lord Scroop of Masham; and, sir knight,\nGrey of Northumberland, this same is yours:\nRead them; and know, I know your worthiness.\nMy Lord of Westmoreland, and uncle Exeter,\nWe will aboard to night. Why, how now, gentlemen!\nWhat see you in those papers that you lose\nSo much complexion? Look ye, how they change!\nTheir cheeks are paper. Why, what read you there\nThat hath so cowarded and chased your blood\nOut of appearance?\n\nCAMBRIDGE:\nI do confess my fault;\nAnd do submit me to your highness' mercy.\n\nGREY:\nTo which we all appeal.\n\nKING HENRY V:\nThe mercy that was quick in us but late,\nBy your own counsel is suppress'd and kill'd:\nYou must not dare, for shame, to talk of mercy;\nFor your own reasons turn into your bosoms,\nAs dogs upon their masters, worrying you.\nSee you, my princes, and my noble peers,\nThese English monsters! My Lord of Cambridge here,\nYou know how apt our love was to accord\nTo furnish him with all appertinents\nBelonging to his honour; and this man\nHath, for a few light crowns, lightly conspired,\nAnd sworn unto the practises of France,\nTo kill us here in Hampton: to the which\nThis knight, no less for bounty bound to us\nThan Cambridge is, hath likewise sworn. But, O,\nWhat shall I say to thee, Lord Scroop? thou cruel,\nIngrateful, savage and inhuman creature!\nThou that didst bear the key of all my counsels,\nThat knew'st the very bottom of my soul,\nThat almost mightst have coin'd me into gold,\nWouldst thou have practised on me for thy use,\nMay it be possible, that foreign hire\nCould out of thee extract one spark of evil\nThat might annoy my finger? 'tis so strange,\nThat, though the truth of it stands off as gross\nAs black and white, my eye will scarcely see it.\nTreason and murder ever kept together,\nAs two yoke-devils sworn to either's purpose,\nWorking so grossly in a natural cause,\nThat admiration did not whoop at them:\nBut thou, 'gainst all proportion, didst bring in\nWonder to wait on treason and on murder:\nAnd whatsoever cunning fiend it was\nThat wrought upon thee so preposterously\nHath got the voice in hell for excellence:\nAll other devils that suggest by treasons\nDo botch and bungle up damnation\nWith patches, colours, and with forms being fetch'd\nFrom glistering semblances of piety;\nBut he that temper'd thee bade thee stand up,\nGave thee no instance why thou shouldst do treason,\nUnless to dub thee with the name of traitor.\nIf that same demon that hath gull'd thee thus\nShould with his lion gait walk the whole world,\nHe might return to vasty Tartar back,\nAnd tell the legions 'I can never win\nA soul so easy as that Englishman's.'\nO, how hast thou with 'jealousy infected\nThe sweetness of affiance! Show men dutiful?\nWhy, so didst thou: seem they grave and learned?\nWhy, so didst thou: come they of noble family?\nWhy, so didst thou: seem they religious?\nWhy, so didst thou: or are they spare in diet,\nFree from gross passion or of mirth or anger,\nConstant in spirit, not swerving with the blood,\nGarnish'd and deck'd in modest complement,\nNot working with the eye without the ear,\nAnd but in purged judgment trusting neither?\nSuch and so finely bolted didst thou seem:\nAnd thus thy fall hath left a kind of blot,\nTo mark the full-fraught man and best indued\nWith some suspicion. I will weep for thee;\nFor this revolt of thine, methinks, is like\nAnother fall of man. Their faults are open:\nArrest them to the answer of the law;\nAnd God acquit them of their practises!\n\nEXETER:\nI arrest thee of high treason, by the name of\nRichard Earl of Cambridge.\nI arrest thee of high treason, by the name of\nHenry Lord Scroop of Masham.\nI arrest thee of high treason, by the name of\nThomas Grey, knight, of Northumberland.\n\nSCROOP:\nOur purposes God justly hath discover'd;\nAnd I repent my fault more than my death;\nWhich I beseech your highness to forgive,\nAlthough my body pay the price of it.\n\nCAMBRIDGE:\nFor me, the gold of France did not seduce;\nAlthough I did admit it as a motive\nThe sooner to effect what I intended:\nBut God be thanked for prevention;\nWhich I in sufferance heartily will rejoice,\nBeseeching God and you to pardon me.\n\nGREY:\nNever did faithful subject more rejoice\nAt the discovery of most dangerous treason\nThan I do at this hour joy o'er myself.\nPrevented from a damned enterprise:\nMy fault, but not my body, pardon, sovereign.\n\nKING HENRY V:\nGod quit you in his mercy! Hear your sentence.\nYou have conspired against our royal person,\nJoin'd with an enemy proclaim'd and from his coffers\nReceived the golden earnest of our death;\nWherein you would have sold your king to slaughter,\nHis princes and his peers to servitude,\nHis subjects to oppression and contempt\nAnd his whole kingdom into desolation.\nTouching our person seek we no revenge;\nBut we our kingdom's safety must so tender,\nWhose ruin you have sought, that to her laws\nWe do deliver you. Get you therefore hence,\nPoor miserable wretches, to your death:\nThe taste whereof, God of his mercy give\nYou patience to endure, and true repentance\nOf all your dear offences! Bear them hence.\nNow, lords, for France; the enterprise whereof\nShall be to you, as us, like glorious.\nWe doubt not of a fair and lucky war,\nSince God so graciously hath brought to light\nThis dangerous treason lurking in our way\nTo hinder our beginnings. We doubt not now\nBut every rub is smoothed on our way.\nThen forth, dear countrymen: let us deliver\nOur puissance into the hand of God,\nPutting it straight in expedition.\nCheerly to sea; the signs of war advance:\nNo king of England, if not king of France.\n\nHostess:\nPrithee, honey-sweet husband, let me bring thee to Staines.\n\nPISTOL:\nNo; for my manly heart doth yearn.\nBardolph, be blithe: Nym, rouse thy vaunting veins:\nBoy, bristle thy courage up; for Falstaff he is dead,\nAnd we must yearn therefore.\n\nBARDOLPH:\nWould I were with him, wheresome'er he is, either in\nheaven or in hell!\n\nHostess:\nNay, sure, he's not in hell: he's in Arthur's\nbosom, if ever man went to Arthur's bosom. A' made\na finer end and went away an it had been any\nchristom child; a' parted even just between twelve\nand one, even at the turning o' the tide: for after\nI saw him fumble with the sheets and play with\nflowers and smile upon his fingers' ends, I knew\nthere was but one way; for his nose was as sharp as\na pen, and a' babbled of green fields. 'How now,\nsir John!' quoth I 'what, man! be o' good\ncheer.' So a' cried out 'God, God, God!' three or\nfour times. Now I, to comfort him, bid him a'\nshould not think of God; I hoped there was no need\nto trouble himself with any such thoughts yet. So\na' bade me lay more clothes on his feet: I put my\nhand into the bed and felt them, and they were as\ncold as any stone; then I felt to his knees, and\nthey were as cold as any stone, and so upward and\nupward, and all was as cold as any stone.\n\nNYM:\nThey say he cried out of sack.\n\nHostess:\nAy, that a' did.\n\nBARDOLPH:\nAnd of women.\n\nHostess:\nNay, that a' did not.\n\nBoy:\nYes, that a' did; and said they were devils\nincarnate.\n\nHostess:\nA' could never abide carnation; 'twas a colour he\nnever liked.\n\nBoy:\nA' said once, the devil would have him about women.\n\nHostess:\nA' did in some sort, indeed, handle women; but then\nhe was rheumatic, and talked of the whore of Babylon.\n\nBoy:\nDo you not remember, a' saw a flea stick upon\nBardolph's nose, and a' said it was a black soul\nburning in hell-fire?\n\nBARDOLPH:\nWell, the fuel is gone that maintained that fire:\nthat's all the riches I got in his service.\n\nNYM:\nShall we shog? the king will be gone from\nSouthampton.\n\nPISTOL:\nCome, let's away. My love, give me thy lips.\nLook to my chattels and my movables:\nLet senses rule; the word is 'Pitch and Pay:'\nTrust none;\nFor oaths are straws, men's faiths are wafer-cakes,\nAnd hold-fast is the only dog, my duck:\nTherefore, Caveto be thy counsellor.\nGo, clear thy crystals. Yoke-fellows in arms,\nLet us to France; like horse-leeches, my boys,\nTo suck, to suck, the very blood to suck!\n\nBoy:\nAnd that's but unwholesome food they say.\n\nPISTOL:\nTouch her soft mouth, and march.\n\nBARDOLPH:\nFarewell, hostess.\n\nNYM:\nI cannot kiss, that is the humour of it; but, adieu.\n\nPISTOL:\nLet housewifery appear: keep close, I thee command.\n\nHostess:\nFarewell; adieu.\n\nKING OF FRANCE:\nThus comes the English with full power upon us;\nAnd more than carefully it us concerns\nTo answer royally in our defences.\nTherefore the Dukes of Berri and of Bretagne,\nOf Brabant and of Orleans, shall make forth,\nAnd you, Prince Dauphin, with all swift dispatch,\nTo line and new repair our towns of war\nWith men of courage and with means defendant;\nFor England his approaches makes as fierce\nAs waters to the sucking of a gulf.\nIt fits us then to be as provident\nAs fear may teach us out of late examples\nLeft by the fatal and neglected English\nUpon our fields.\n\nDAUPHIN:\nMy most redoubted father,\nIt is most meet we arm us 'gainst the foe;\nFor peace itself should not so dull a kingdom,\nThough war nor no known quarrel were in question,\nBut that defences, musters, preparations,\nShould be maintain'd, assembled and collected,\nAs were a war in expectation.\nTherefore, I say 'tis meet we all go forth\nTo view the sick and feeble parts of France:\nAnd let us do it with no show of fear;\nNo, with no more than if we heard that England\nWere busied with a Whitsun morris-dance:\nFor, my good liege, she is so idly king'd,\nHer sceptre so fantastically borne\nBy a vain, giddy, shallow, humorous youth,\nThat fear attends her not.\n\nConstable:\nO peace, Prince Dauphin!\nYou are too much mistaken in this king:\nQuestion your grace the late ambassadors,\nWith what great state he heard their embassy,\nHow well supplied with noble counsellors,\nHow modest in exception, and withal\nHow terrible in constant resolution,\nAnd you shall find his vanities forespent\nWere but the outside of the Roman Brutus,\nCovering discretion with a coat of folly;\nAs gardeners do with ordure hide those roots\nThat shall first spring and be most delicate.\n\nDAUPHIN:\nWell, 'tis not so, my lord high constable;\nBut though we think it so, it is no matter:\nIn cases of defence 'tis best to weigh\nThe enemy more mighty than he seems:\nSo the proportions of defence are fill'd;\nWhich of a weak or niggardly projection\nDoth, like a miser, spoil his coat with scanting\nA little cloth.\n\nKING OF FRANCE:\nThink we King Harry strong;\nAnd, princes, look you strongly arm to meet him.\nThe kindred of him hath been flesh'd upon us;\nAnd he is bred out of that bloody strain\nThat haunted us in our familiar paths:\nWitness our too much memorable shame\nWhen Cressy battle fatally was struck,\nAnd all our princes captiv'd by the hand\nOf that black name, Edward, Black Prince of Wales;\nWhiles that his mountain sire, on mountain standing,\nUp in the air, crown'd with the golden sun,\nSaw his heroical seed, and smiled to see him,\nMangle the work of nature and deface\nThe patterns that by God and by French fathers\nHad twenty years been made. This is a stem\nOf that victorious stock; and let us fear\nThe native mightiness and fate of him.\n\nMessenger:\nAmbassadors from Harry King of England\nDo crave admittance to your majesty.\n\nKING OF FRANCE:\nWe'll give them present audience. Go, and bring them.\nYou see this chase is hotly follow'd, friends.\n\nDAUPHIN:\nTurn head, and stop pursuit; for coward dogs\nMost spend their mouths when what they seem to threaten\nRuns far before them. Good my sovereign,\nTake up the English short, and let them know\nOf what a monarchy you are the head:\nSelf-love, my liege, is not so vile a sin\nAs self-neglecting.\n\nKING OF FRANCE:\nFrom our brother England?\n\nEXETER:\nFrom him; and thus he greets your majesty.\nHe wills you, in the name of God Almighty,\nThat you divest yourself, and lay apart\nThe borrow'd glories that by gift of heaven,\nBy law of nature and of nations, 'long\nTo him and to his heirs; namely, the crown\nAnd all wide-stretched honours that pertain\nBy custom and the ordinance of times\nUnto the crown of France. That you may know\n'Tis no sinister nor no awkward claim,\nPick'd from the worm-holes of long-vanish'd days,\nNor from the dust of old oblivion raked,\nHe sends you this most memorable line,\nIn every branch truly demonstrative;\nWilling to overlook this pedigree:\nAnd when you find him evenly derived\nFrom his most famed of famous ancestors,\nEdward the Third, he bids you then resign\nYour crown and kingdom, indirectly held\nFrom him the native and true challenger.\n\nKING OF FRANCE:\nOr else what follows?\n\nEXETER:\nBloody constraint; for if you hide the crown\nEven in your hearts, there will he rake for it:\nTherefore in fierce tempest is he coming,\nIn thunder and in earthquake, like a Jove,\nThat, if requiring fail, he will compel;\nAnd bids you, in the bowels of the Lord,\nDeliver up the crown, and to take mercy\nOn the poor souls for whom this hungry war\nOpens his vasty jaws; and on your head\nTurning the widows' tears, the orphans' cries\nThe dead men's blood, the pining maidens groans,\nFor husbands, fathers and betrothed lovers,\nThat shall be swallow'd in this controversy.\nThis is his claim, his threatening and my message;\nUnless the Dauphin be in presence here,\nTo whom expressly I bring greeting too.\n\nKING OF FRANCE:\nFor us, we will consider of this further:\nTo-morrow shall you bear our full intent\nBack to our brother England.\n\nDAUPHIN:\nFor the Dauphin,\nI stand here for him: what to him from England?\n\nEXETER:\nScorn and defiance; slight regard, contempt,\nAnd any thing that may not misbecome\nThe mighty sender, doth he prize you at.\nThus says my king; an' if your father's highness\nDo not, in grant of all demands at large,\nSweeten the bitter mock you sent his majesty,\nHe'll call you to so hot an answer of it,\nThat caves and womby vaultages of France\nShall chide your trespass and return your mock\nIn second accent of his ordnance.\n\nDAUPHIN:\nSay, if my father render fair return,\nIt is against my will; for I desire\nNothing but odds with England: to that end,\nAs matching to his youth and vanity,\nI did present him with the Paris balls.\n\nEXETER:\nHe'll make your Paris Louvre shake for it,\nWere it the mistress-court of mighty Europe:\nAnd, be assured, you'll find a difference,\nAs we his subjects have in wonder found,\nBetween the promise of his greener days\nAnd these he masters now: now he weighs time\nEven to the utmost grain: that you shall read\nIn your own losses, if he stay in France.\n\nKING OF FRANCE:\nTo-morrow shall you know our mind at full.\n\nEXETER:\nDispatch us with all speed, lest that our king\nCome here himself to question our delay;\nFor he is footed in this land already.\n\nKING OF FRANCE:\nYou shall be soon dispatch's with fair conditions:\nA night is but small breath and little pause\nTo answer matters of this consequence.\n\nChorus:\nThus with imagined wing our swift scene flies\nIn motion of no less celerity\nThan that of thought. Suppose that you have seen\nThe well-appointed king at Hampton pier\nEmbark his royalty; and his brave fleet\nWith silken streamers the young Phoebus fanning:\nPlay with your fancies, and in them behold\nUpon the hempen tackle ship-boys climbing;\nHear the shrill whistle which doth order give\nTo sounds confused; behold the threaden sails,\nBorne with the invisible and creeping wind,\nDraw the huge bottoms through the furrow'd sea,\nBreasting the lofty surge: O, do but think\nYou stand upon the ravage and behold\nA city on the inconstant billows dancing;\nFor so appears this fleet majestical,\nHolding due course to Harfleur. Follow, follow:\nGrapple your minds to sternage of this navy,\nAnd leave your England, as dead midnight still,\nGuarded with grandsires, babies and old women,\nEither past or not arrived to pith and puissance;\nFor who is he, whose chin is but enrich'd\nWith one appearing hair, that will not follow\nThese cull'd and choice-drawn cavaliers to France?\nWork, work your thoughts, and therein see a siege;\nBehold the ordnance on their carriages,\nWith fatal mouths gaping on girded Harfleur.\nSuppose the ambassador from the French comes back;\nTells Harry that the king doth offer him\nKatharine his daughter, and with her, to dowry,\nSome petty and unprofitable dukedoms.\nThe offer likes not: and the nimble gunner\nWith linstock now the devilish cannon touches,\nAnd down goes all before them. Still be kind,\nAnd eke out our performance with your mind.\n\nKING HENRY V:\nOnce more unto the breach, dear friends, once more;\nOr close the wall up with our English dead.\nIn peace there's nothing so becomes a man\nAs modest stillness and humility:\nBut when the blast of war blows in our ears,\nThen imitate the action of the tiger;\nStiffen the sinews, summon up the blood,\nDisguise fair nature with hard-favour'd rage;\nThen lend the eye a terrible aspect;\nLet pry through the portage of the head\nLike the brass cannon; let the brow o'erwhelm it\nAs fearfully as doth a galled rock\nO'erhang and jutty his confounded base,\nSwill'd with the wild and wasteful ocean.\nNow set the teeth and stretch the nostril wide,\nHold hard the breath and bend up every spirit\nTo his full height. On, on, you noblest English.\nWhose blood is fet from fathers of war-proof!\nFathers that, like so many Alexanders,\nHave in these parts from morn till even fought\nAnd sheathed their swords for lack of argument:\nDishonour not your mothers; now attest\nThat those whom you call'd fathers did beget you.\nBe copy now to men of grosser blood,\nAnd teach them how to war. And you, good yeoman,\nWhose limbs were made in England, show us here\nThe mettle of your pasture; let us swear\nThat you are worth your breeding; which I doubt not;\nFor there is none of you so mean and base,\nThat hath not noble lustre in your eyes.\nI see you stand like greyhounds in the slips,\nStraining upon the start. The game's afoot:\nFollow your spirit, and upon this charge\nCry 'God for Harry, England, and Saint George!'\n\nBARDOLPH:\nOn, on, on, on, on! to the breach, to the breach!\n\nNYM:\nPray thee, corporal, stay: the knocks are too hot;\nand, for mine own part, I have not a case of lives:\nthe humour of it is too hot, that is the very\nplain-song of it.\n\nPISTOL:\nThe plain-song is most just: for humours do abound:\nKnocks go and come; God's vassals drop and die;\nAnd sword and shield,\nIn bloody field,\nDoth win immortal fame.\n\nBoy:\nWould I were in an alehouse in London! I would give\nall my fame for a pot of ale and safety.\n\nPISTOL:\nAnd I:\nIf wishes would prevail with me,\nMy purpose should not fail with me,\nBut thither would I hie.\n\nBoy:\nAs duly, but not as truly,\nAs bird doth sing on bough.\n\nFLUELLEN:\nUp to the breach, you dogs! avaunt, you cullions!\n\nPISTOL:\nBe merciful, great duke, to men of mould.\nAbate thy rage, abate thy manly rage,\nAbate thy rage, great duke!\nGood bawcock, bate thy rage; use lenity, sweet chuck!\n\nNYM:\nThese be good humours! your honour wins bad humours.\n\nBoy:\nAs young as I am, I have observed these three\nswashers. I am boy to them all three: but all they\nthree, though they would serve me, could not be man\nto me; for indeed three such antics do not amount to\na man. For Bardolph, he is white-livered and\nred-faced; by the means whereof a' faces it out, but\nfights not. For Pistol, he hath a killing tongue\nand a quiet sword; by the means whereof a' breaks\nwords, and keeps whole weapons. For Nym, he hath\nheard that men of few words are the best men; and\ntherefore he scorns to say his prayers, lest a'\nshould be thought a coward: but his few bad words\nare matched with as few good deeds; for a' never\nbroke any man's head but his own, and that was\nagainst a post when he was drunk. They will steal\nany thing, and call it purchase. Bardolph stole a\nlute-case, bore it twelve leagues, and sold it for\nthree half pence. Nym and Bardolph are sworn\nbrothers in filching, and in Calais they stole a\nfire-shovel: I knew by that piece of service the\nmen would carry coals. They would have me as\nfamiliar with men's pockets as their gloves or their\nhandkerchers: which makes much against my manhood,\nif I should take from another's pocket to put into\nmine; for it is plain pocketing up of wrongs. I\nmust leave them, and seek some better service:\ntheir villany goes against my weak stomach, and\ntherefore I must cast it up.\n\nGOWER:\nCaptain Fluellen, you must come presently to the\nmines; the Duke of Gloucester would speak with you.\n\nFLUELLEN:\nTo the mines! tell you the duke, it is not so good\nto come to the mines; for, look you, the mines is\nnot according to the disciplines of the war: the\nconcavities of it is not sufficient; for, look you,\nthe athversary, you may discuss unto the duke, look\nyou, is digt himself four yard under the\ncountermines: by Cheshu, I think a' will plough up\nall, if there is not better directions.\n\nGOWER:\nThe Duke of Gloucester, to whom the order of the\nsiege is given, is altogether directed by an\nIrishman, a very valiant gentleman, i' faith.\n\nFLUELLEN:\nIt is Captain Macmorris, is it not?\n\nGOWER:\nI think it be.\n\nFLUELLEN:\nBy Cheshu, he is an ass, as in the world: I will\nverify as much in his beard: be has no more\ndirections in the true disciplines of the wars, look\nyou, of the Roman disciplines, than is a puppy-dog.\n\nGOWER:\nHere a' comes; and the Scots captain, Captain Jamy, with him.\n\nFLUELLEN:\nCaptain Jamy is a marvellous falourous gentleman,\nthat is certain; and of great expedition and\nknowledge in th' aunchient wars, upon my particular\nknowledge of his directions: by Cheshu, he will\nmaintain his argument as well as any military man in\nthe world, in the disciplines of the pristine wars\nof the Romans.\n\nJAMY:\nI say gud-day, Captain Fluellen.\n\nFLUELLEN:\nGod-den to your worship, good Captain James.\n\nGOWER:\nHow now, Captain Macmorris! have you quit the\nmines? have the pioneers given o'er?\n\nMACMORRIS:\nBy Chrish, la! tish ill done: the work ish give\nover, the trompet sound the retreat. By my hand, I\nswear, and my father's soul, the work ish ill done;\nit ish give over: I would have blowed up the town, so\nChrish save me, la! in an hour: O, tish ill done,\ntish ill done; by my hand, tish ill done!\n\nFLUELLEN:\nCaptain Macmorris, I beseech you now, will you\nvoutsafe me, look you, a few disputations with you,\nas partly touching or concerning the disciplines of\nthe war, the Roman wars, in the way of argument,\nlook you, and friendly communication; partly to\nsatisfy my opinion, and partly for the satisfaction,\nlook you, of my mind, as touching the direction of\nthe military discipline; that is the point.\n\nJAMY:\nIt sall be vary gud, gud feith, gud captains bath:\nand I sall quit you with gud leve, as I may pick\noccasion; that sall I, marry.\n\nMACMORRIS:\nIt is no time to discourse, so Chrish save me: the\nday is hot, and the weather, and the wars, and the\nking, and the dukes: it is no time to discourse. The\ntown is beseeched, and the trumpet call us to the\nbreach; and we talk, and, be Chrish, do nothing:\n'tis shame for us all: so God sa' me, 'tis shame to\nstand still; it is shame, by my hand: and there is\nthroats to be cut, and works to be done; and there\nish nothing done, so Chrish sa' me, la!\n\nJAMY:\nBy the mess, ere theise eyes of mine take themselves\nto slomber, ay'll de gud service, or ay'll lig i'\nthe grund for it; ay, or go to death; and ay'll pay\n't as valourously as I may, that sall I suerly do,\nthat is the breff and the long. Marry, I wad full\nfain hear some question 'tween you tway.\n\nFLUELLEN:\nCaptain Macmorris, I think, look you, under your\ncorrection, there is not many of your nation--\n\nMACMORRIS:\nOf my nation! What ish my nation? Ish a villain,\nand a bastard, and a knave, and a rascal. What ish\nmy nation? Who talks of my nation?\n\nFLUELLEN:\nLook you, if you take the matter otherwise than is\nmeant, Captain Macmorris, peradventure I shall think\nyou do not use me with that affability as in\ndiscretion you ought to use me, look you: being as\ngood a man as yourself, both in the disciplines of\nwar, and in the derivation of my birth, and in\nother particularities.\n\nMACMORRIS:\nI do not know you so good a man as myself: so\nChrish save me, I will cut off your head.\n\nGOWER:\nGentlemen both, you will mistake each other.\n\nJAMY:\nA! that's a foul fault.\n\nGOWER:\nThe town sounds a parley.\n\nFLUELLEN:\nCaptain Macmorris, when there is more better\nopportunity to be required, look you, I will be so\nbold as to tell you I know the disciplines of war;\nand there is an end.\n\nKING HENRY V:\nHow yet resolves the governor of the town?\nThis is the latest parle we will admit;\nTherefore to our best mercy give yourselves;\nOr like to men proud of destruction\nDefy us to our worst: for, as I am a soldier,\nA name that in my thoughts becomes me best,\nIf I begin the battery once again,\nI will not leave the half-achieved Harfleur\nTill in her ashes she lie buried.\nThe gates of mercy shall be all shut up,\nAnd the flesh'd soldier, rough and hard of heart,\nIn liberty of bloody hand shall range\nWith conscience wide as hell, mowing like grass\nYour fresh-fair virgins and your flowering infants.\nWhat is it then to me, if impious war,\nArray'd in flames like to the prince of fiends,\nDo, with his smirch'd complexion, all fell feats\nEnlink'd to waste and desolation?\nWhat is't to me, when you yourselves are cause,\nIf your pure maidens fall into the hand\nOf hot and forcing violation?\nWhat rein can hold licentious wickedness\nWhen down the hill he holds his fierce career?\nWe may as bootless spend our vain command\nUpon the enraged soldiers in their spoil\nAs send precepts to the leviathan\nTo come ashore. Therefore, you men of Harfleur,\nTake pity of your town and of your people,\nWhiles yet my soldiers are in my command;\nWhiles yet the cool and temperate wind of grace\nO'erblows the filthy and contagious clouds\nOf heady murder, spoil and villany.\nIf not, why, in a moment look to see\nThe blind and bloody soldier with foul hand\nDefile the locks of your shrill-shrieking daughters;\nYour fathers taken by the silver beards,\nAnd their most reverend heads dash'd to the walls,\nYour naked infants spitted upon pikes,\nWhiles the mad mothers with their howls confused\nDo break the clouds, as did the wives of Jewry\nAt Herod's bloody-hunting slaughtermen.\nWhat say you? will you yield, and this avoid,\nOr, guilty in defence, be thus destroy'd?\n\nGOVERNOR:\nOur expectation hath this day an end:\nThe Dauphin, whom of succors we entreated,\nReturns us that his powers are yet not ready\nTo raise so great a siege. Therefore, great king,\nWe yield our town and lives to thy soft mercy.\nEnter our gates; dispose of us and ours;\nFor we no longer are defensible.\n\nKING HENRY V:\nOpen your gates. Come, uncle Exeter,\nGo you and enter Harfleur; there remain,\nAnd fortify it strongly 'gainst the French:\nUse mercy to them all. For us, dear uncle,\nThe winter coming on and sickness growing\nUpon our soldiers, we will retire to Calais.\nTo-night in Harfleur we will be your guest;\nTo-morrow for the march are we addrest.\n\nKATHARINE:\nAlice, tu as ete en Angleterre, et tu parles bien le langage.\n\nALICE:\nUn peu, madame.\n\nKATHARINE:\nJe te prie, m'enseignez: il faut que j'apprenne a\nparler. Comment appelez-vous la main en Anglois?\n\nALICE:\nLa main? elle est appelee de hand.\n\nKATHARINE:\nDe hand. Et les doigts?\n\nALICE:\nLes doigts? ma foi, j'oublie les doigts; mais je me\nsouviendrai. Les doigts? je pense qu'ils sont\nappeles de fingres; oui, de fingres.\n\nKATHARINE:\nLa main, de hand; les doigts, de fingres. Je pense\nque je suis le bon ecolier; j'ai gagne deux mots\nd'Anglois vitement. Comment appelez-vous les ongles?\n\nALICE:\nLes ongles? nous les appelons de nails.\n\nKATHARINE:\nDe nails. Ecoutez; dites-moi, si je parle bien: de\nhand, de fingres, et de nails.\n\nALICE:\nC'est bien dit, madame; il est fort bon Anglois.\n\nKATHARINE:\nDites-moi l'Anglois pour le bras.\n\nALICE:\nDe arm, madame.\n\nKATHARINE:\nEt le coude?\n\nALICE:\nDe elbow.\n\nKATHARINE:\nDe elbow. Je m'en fais la repetition de tous les\nmots que vous m'avez appris des a present.\n\nALICE:\nIl est trop difficile, madame, comme je pense.\n\nKATHARINE:\nExcusez-moi, Alice; ecoutez: de hand, de fingres,\nde nails, de arma, de bilbow.\n\nALICE:\nDe elbow, madame.\n\nKATHARINE:\nO Seigneur Dieu, je m'en oublie! de elbow. Comment\nappelez-vous le col?\n\nALICE:\nDe neck, madame.\n\nKATHARINE:\nDe nick. Et le menton?\n\nALICE:\nDe chin.\n\nKATHARINE:\nDe sin. Le col, de nick; de menton, de sin.\n\nALICE:\nOui. Sauf votre honneur, en verite, vous prononcez\nles mots aussi droit que les natifs d'Angleterre.\n\nKATHARINE:\nJe ne doute point d'apprendre, par la grace de Dieu,\net en peu de temps.\n\nALICE:\nN'avez vous pas deja oublie ce que je vous ai enseigne?\n\nKATHARINE:\nNon, je reciterai a vous promptement: de hand, de\nfingres, de mails--\n\nALICE:\nDe nails, madame.\n\nKATHARINE:\nDe nails, de arm, de ilbow.\n\nALICE:\nSauf votre honneur, de elbow.\n\nKATHARINE:\nAinsi dis-je; de elbow, de nick, et de sin. Comment\nappelez-vous le pied et la robe?\n\nALICE:\nDe foot, madame; et de coun.\n\nKATHARINE:\nDe foot et de coun! O Seigneur Dieu! ce sont mots\nde son mauvais, corruptible, gros, et impudique, et\nnon pour les dames d'honneur d'user: je ne voudrais\nprononcer ces mots devant les seigneurs de France\npour tout le monde. Foh! le foot et le coun!\nNeanmoins, je reciterai une autre fois ma lecon\nensemble: de hand, de fingres, de nails, de arm, de\nelbow, de nick, de sin, de foot, de coun.\n\nALICE:\nExcellent, madame!\n\nKATHARINE:\nC'est assez pour une fois: allons-nous a diner.\n\nKING OF FRANCE:\n'Tis certain he hath pass'd the river Somme.\n\nConstable:\nAnd if he be not fought withal, my lord,\nLet us not live in France; let us quit all\nAnd give our vineyards to a barbarous people.\n\nDAUPHIN:\nO Dieu vivant! shall a few sprays of us,\nThe emptying of our fathers' luxury,\nOur scions, put in wild and savage stock,\nSpirt up so suddenly into the clouds,\nAnd overlook their grafters?\n\nBOURBON:\nNormans, but bastard Normans, Norman bastards!\nMort de ma vie! if they march along\nUnfought withal, but I will sell my dukedom,\nTo buy a slobbery and a dirty farm\nIn that nook-shotten isle of Albion.\n\nConstable:\nDieu de batailles! where have they this mettle?\nIs not their climate foggy, raw and dull,\nOn whom, as in despite, the sun looks pale,\nKilling their fruit with frowns? Can sodden water,\nA drench for sur-rein'd jades, their barley-broth,\nDecoct their cold blood to such valiant heat?\nAnd shall our quick blood, spirited with wine,\nSeem frosty? O, for honour of our land,\nLet us not hang like roping icicles\nUpon our houses' thatch, whiles a more frosty people\nSweat drops of gallant youth in our rich fields!\nPoor we may call them in their native lords.\n\nDAUPHIN:\nBy faith and honour,\nOur madams mock at us, and plainly say\nOur mettle is bred out and they will give\nTheir bodies to the lust of English youth\nTo new-store France with bastard warriors.\n\nBOURBON:\nThey bid us to the English dancing-schools,\nAnd teach lavoltas high and swift corantos;\nSaying our grace is only in our heels,\nAnd that we are most lofty runaways.\n\nKING OF FRANCE:\nWhere is Montjoy the herald? speed him hence:\nLet him greet England with our sharp defiance.\nUp, princes! and, with spirit of honour edged\nMore sharper than your swords, hie to the field:\nCharles Delabreth, high constable of France;\nYou Dukes of Orleans, Bourbon, and of Berri,\nAlencon, Brabant, Bar, and Burgundy;\nJaques Chatillon, Rambures, Vaudemont,\nBeaumont, Grandpre, Roussi, and Fauconberg,\nFoix, Lestrale, Bouciqualt, and Charolois;\nHigh dukes, great princes, barons, lords and knights,\nFor your great seats now quit you of great shames.\nBar Harry England, that sweeps through our land\nWith pennons painted in the blood of Harfleur:\nRush on his host, as doth the melted snow\nUpon the valleys, whose low vassal seat\nThe Alps doth spit and void his rheum upon:\nGo down upon him, you have power enough,\nAnd in a captive chariot into Rouen\nBring him our prisoner.\n\nConstable:\nThis becomes the great.\nSorry am I his numbers are so few,\nHis soldiers sick and famish'd in their march,\nFor I am sure, when he shall see our army,\nHe'll drop his heart into the sink of fear\nAnd for achievement offer us his ransom.\n\nKING OF FRANCE:\nTherefore, lord constable, haste on Montjoy.\nAnd let him say to England that we send\nTo know what willing ransom he will give.\nPrince Dauphin, you shall stay with us in Rouen.\n\nDAUPHIN:\nNot so, I do beseech your majesty.\n\nKING OF FRANCE:\nBe patient, for you shall remain with us.\nNow forth, lord constable and princes all,\nAnd quickly bring us word of England's fall.\n\nGOWER:\nHow now, Captain Fluellen! come you from the bridge?\n\nFLUELLEN:\nI assure you, there is very excellent services\ncommitted at the bridge.\n\nGOWER:\nIs the Duke of Exeter safe?\n\nFLUELLEN:\nThe Duke of Exeter is as magnanimous as Agamemnon;\nand a man that I love and honour with my soul, and my\nheart, and my duty, and my life, and my living, and\nmy uttermost power: he is not-God be praised and\nblessed!--any hurt in the world; but keeps the\nbridge most valiantly, with excellent discipline.\nThere is an aunchient lieutenant there at the\npridge, I think in my very conscience he is as\nvaliant a man as Mark Antony; and he is a man of no\nestimation in the world; but did see him do as\ngallant service.\n\nGOWER:\nWhat do you call him?\n\nFLUELLEN:\nHe is called Aunchient Pistol.\n\nGOWER:\nI know him not.\n\nFLUELLEN:\nHere is the man.\n\nPISTOL:\nCaptain, I thee beseech to do me favours:\nThe Duke of Exeter doth love thee well.\n\nFLUELLEN:\nAy, I praise God; and I have merited some love at\nhis hands.\n\nPISTOL:\nBardolph, a soldier, firm and sound of heart,\nAnd of buxom valour, hath, by cruel fate,\nAnd giddy Fortune's furious fickle wheel,\nThat goddess blind,\nThat stands upon the rolling restless stone--\n\nFLUELLEN:\nBy your patience, Aunchient Pistol. Fortune is\npainted blind, with a muffler afore her eyes, to\nsignify to you that Fortune is blind; and she is\npainted also with a wheel, to signify to you, which\nis the moral of it, that she is turning, and\ninconstant, and mutability, and variation: and her\nfoot, look you, is fixed upon a spherical stone,\nwhich rolls, and rolls, and rolls: in good truth,\nthe poet makes a most excellent description of it:\nFortune is an excellent moral.\n\nPISTOL:\nFortune is Bardolph's foe, and frowns on him;\nFor he hath stolen a pax, and hanged must a' be:\nA damned death!\nLet gallows gape for dog; let man go free\nAnd let not hemp his wind-pipe suffocate:\nBut Exeter hath given the doom of death\nFor pax of little price.\nTherefore, go speak: the duke will hear thy voice:\nAnd let not Bardolph's vital thread be cut\nWith edge of penny cord and vile reproach:\nSpeak, captain, for his life, and I will thee requite.\n\nFLUELLEN:\nAunchient Pistol, I do partly understand your meaning.\n\nPISTOL:\nWhy then, rejoice therefore.\n\nFLUELLEN:\nCertainly, aunchient, it is not a thing to rejoice\nat: for if, look you, he were my brother, I would\ndesire the duke to use his good pleasure, and put\nhim to execution; for discipline ought to be used.\n\nPISTOL:\nDie and be damn'd! and figo for thy friendship!\n\nFLUELLEN:\nIt is well.\n\nPISTOL:\nThe fig of Spain!\n\nFLUELLEN:\nVery good.\n\nGOWER:\nWhy, this is an arrant counterfeit rascal; I\nremember him now; a bawd, a cutpurse.\n\nFLUELLEN:\nI'll assure you, a' uttered as brave words at the\nbridge as you shall see in a summer's day. But it\nis very well; what he has spoke to me, that is well,\nI warrant you, when time is serve.\n\nGOWER:\nWhy, 'tis a gull, a fool, a rogue, that now and then\ngoes to the wars, to grace himself at his return\ninto London under the form of a soldier. And such\nfellows are perfect in the great commanders' names:\nand they will learn you by rote where services were\ndone; at such and such a sconce, at such a breach,\nat such a convoy; who came off bravely, who was\nshot, who disgraced, what terms the enemy stood on;\nand this they con perfectly in the phrase of war,\nwhich they trick up with new-tuned oaths: and what\na beard of the general's cut and a horrid suit of\nthe camp will do among foaming bottles and\nale-washed wits, is wonderful to be thought on. But\nyou must learn to know such slanders of the age, or\nelse you may be marvellously mistook.\n\nFLUELLEN:\nI tell you what, Captain Gower; I do perceive he is\nnot the man that he would gladly make show to the\nworld he is: if I find a hole in his coat, I will\ntell him my mind.\nHark you, the king is coming, and I must speak with\nhim from the pridge.\nGod pless your majesty!\n\nKING HENRY V:\nHow now, Fluellen! camest thou from the bridge?\n\nFLUELLEN:\nAy, so please your majesty. The Duke of Exeter has\nvery gallantly maintained the pridge: the French is\ngone off, look you; and there is gallant and most\nprave passages; marry, th' athversary was have\npossession of the pridge; but he is enforced to\nretire, and the Duke of Exeter is master of the\npridge: I can tell your majesty, the duke is a\nprave man.\n\nKING HENRY V:\nWhat men have you lost, Fluellen?\n\nFLUELLEN:\nThe perdition of th' athversary hath been very\ngreat, reasonable great: marry, for my part, I\nthink the duke hath lost never a man, but one that\nis like to be executed for robbing a church, one\nBardolph, if your majesty know the man: his face is\nall bubukles, and whelks, and knobs, and flames o'\nfire: and his lips blows at his nose, and it is like\na coal of fire, sometimes plue and sometimes red;\nbut his nose is executed and his fire's out.\n\nKING HENRY V:\nWe would have all such offenders so cut off: and we\ngive express charge, that in our marches through the\ncountry, there be nothing compelled from the\nvillages, nothing taken but paid for, none of the\nFrench upbraided or abused in disdainful language;\nfor when lenity and cruelty play for a kingdom, the\ngentler gamester is the soonest winner.\n\nMONTJOY:\nYou know me by my habit.\n\nKING HENRY V:\nWell then I know thee: what shall I know of thee?\n\nMONTJOY:\nMy master's mind.\n\nKING HENRY V:\nUnfold it.\n\nMONTJOY:\nThus says my king: Say thou to Harry of England:\nThough we seemed dead, we did but sleep: advantage\nis a better soldier than rashness. Tell him we\ncould have rebuked him at Harfleur, but that we\nthought not good to bruise an injury till it were\nfull ripe: now we speak upon our cue, and our voice\nis imperial: England shall repent his folly, see\nhis weakness, and admire our sufferance. Bid him\ntherefore consider of his ransom; which must\nproportion the losses we have borne, the subjects we\nhave lost, the disgrace we have digested; which in\nweight to re-answer, his pettiness would bow under.\nFor our losses, his exchequer is too poor; for the\neffusion of our blood, the muster of his kingdom too\nfaint a number; and for our disgrace, his own\nperson, kneeling at our feet, but a weak and\nworthless satisfaction. To this add defiance: and\ntell him, for conclusion, he hath betrayed his\nfollowers, whose condemnation is pronounced. So far\nmy king and master; so much my office.\n\nKING HENRY V:\nWhat is thy name? I know thy quality.\n\nMONTJOY:\nMontjoy.\n\nKING HENRY V:\nThou dost thy office fairly. Turn thee back.\nAnd tell thy king I do not seek him now;\nBut could be willing to march on to Calais\nWithout impeachment: for, to say the sooth,\nThough 'tis no wisdom to confess so much\nUnto an enemy of craft and vantage,\nMy people are with sickness much enfeebled,\nMy numbers lessened, and those few I have\nAlmost no better than so many French;\nWho when they were in health, I tell thee, herald,\nI thought upon one pair of English legs\nDid march three Frenchmen. Yet, forgive me, God,\nThat I do brag thus! This your air of France\nHath blown that vice in me: I must repent.\nGo therefore, tell thy master here I am;\nMy ransom is this frail and worthless trunk,\nMy army but a weak and sickly guard;\nYet, God before, tell him we will come on,\nThough France himself and such another neighbour\nStand in our way. There's for thy labour, Montjoy.\nGo bid thy master well advise himself:\nIf we may pass, we will; if we be hinder'd,\nWe shall your tawny ground with your red blood\nDiscolour: and so Montjoy, fare you well.\nThe sum of all our answer is but this:\nWe would not seek a battle, as we are;\nNor, as we are, we say we will not shun it:\nSo tell your master.\n\nMONTJOY:\nI shall deliver so. Thanks to your highness.\n\nGLOUCESTER:\nI hope they will not come upon us now.\n\nKING HENRY V:\nWe are in God's hand, brother, not in theirs.\nMarch to the bridge; it now draws toward night:\nBeyond the river we'll encamp ourselves,\nAnd on to-morrow, bid them march away.\n\nConstable:\nTut! I have the best armour of the world. Would it were day!\n\nORLEANS:\nYou have an excellent armour; but let my horse have his due.\n\nConstable:\nIt is the best horse of Europe.\n\nORLEANS:\nWill it never be morning?\n\nDAUPHIN:\nMy lord of Orleans, and my lord high constable, you\ntalk of horse and armour?\n\nORLEANS:\nYou are as well provided of both as any prince in the world.\n\nDAUPHIN:\nWhat a long night is this! I will not change my\nhorse with any that treads but on four pasterns.\nCa, ha! he bounds from the earth, as if his\nentrails were hairs; le cheval volant, the Pegasus,\nchez les narines de feu! When I bestride him, I\nsoar, I am a hawk: he trots the air; the earth\nsings when he touches it; the basest horn of his\nhoof is more musical than the pipe of Hermes.\n\nORLEANS:\nHe's of the colour of the nutmeg.\n\nDAUPHIN:\nAnd of the heat of the ginger. It is a beast for\nPerseus: he is pure air and fire; and the dull\nelements of earth and water never appear in him, but\nonly in Patient stillness while his rider mounts\nhim: he is indeed a horse; and all other jades you\nmay call beasts.\n\nConstable:\nIndeed, my lord, it is a most absolute and excellent horse.\n\nDAUPHIN:\nIt is the prince of palfreys; his neigh is like the\nbidding of a monarch and his countenance enforces homage.\n\nORLEANS:\nNo more, cousin.\n\nDAUPHIN:\nNay, the man hath no wit that cannot, from the\nrising of the lark to the lodging of the lamb, vary\ndeserved praise on my palfrey: it is a theme as\nfluent as the sea: turn the sands into eloquent\ntongues, and my horse is argument for them all:\n'tis a subject for a sovereign to reason on, and for\na sovereign's sovereign to ride on; and for the\nworld, familiar to us and unknown to lay apart\ntheir particular functions and wonder at him. I\nonce writ a sonnet in his praise and began thus:\n'Wonder of nature,'--\n\nORLEANS:\nI have heard a sonnet begin so to one's mistress.\n\nDAUPHIN:\nThen did they imitate that which I composed to my\ncourser, for my horse is my mistress.\n\nORLEANS:\nYour mistress bears well.\n\nDAUPHIN:\nMe well; which is the prescript praise and\nperfection of a good and particular mistress.\n\nConstable:\nNay, for methought yesterday your mistress shrewdly\nshook your back.\n\nDAUPHIN:\nSo perhaps did yours.\n\nConstable:\nMine was not bridled.\n\nDAUPHIN:\nO then belike she was old and gentle; and you rode,\nlike a kern of Ireland, your French hose off, and in\nyour straight strossers.\n\nConstable:\nYou have good judgment in horsemanship.\n\nDAUPHIN:\nBe warned by me, then: they that ride so and ride\nnot warily, fall into foul bogs. I had rather have\nmy horse to my mistress.\n\nConstable:\nI had as lief have my mistress a jade.\n\nDAUPHIN:\nI tell thee, constable, my mistress wears his own hair.\n\nConstable:\nI could make as true a boast as that, if I had a sow\nto my mistress.\n\nDAUPHIN:\n'Le chien est retourne a son propre vomissement, et\nla truie lavee au bourbier;' thou makest use of any thing.\n\nConstable:\nYet do I not use my horse for my mistress, or any\nsuch proverb so little kin to the purpose.\n\nRAMBURES:\nMy lord constable, the armour that I saw in your tent\nto-night, are those stars or suns upon it?\n\nConstable:\nStars, my lord.\n\nDAUPHIN:\nSome of them will fall to-morrow, I hope.\n\nConstable:\nAnd yet my sky shall not want.\n\nDAUPHIN:\nThat may be, for you bear a many superfluously, and\n'twere more honour some were away.\n\nConstable:\nEven as your horse bears your praises; who would\ntrot as well, were some of your brags dismounted.\n\nDAUPHIN:\nWould I were able to load him with his desert! Will\nit never be day? I will trot to-morrow a mile, and\nmy way shall be paved with English faces.\n\nConstable:\nI will not say so, for fear I should be faced out of\nmy way: but I would it were morning; for I would\nfain be about the ears of the English.\n\nRAMBURES:\nWho will go to hazard with me for twenty prisoners?\n\nConstable:\nYou must first go yourself to hazard, ere you have them.\n\nDAUPHIN:\n'Tis midnight; I'll go arm myself.\n\nORLEANS:\nThe Dauphin longs for morning.\n\nRAMBURES:\nHe longs to eat the English.\n\nConstable:\nI think he will eat all he kills.\n\nORLEANS:\nBy the white hand of my lady, he's a gallant prince.\n\nConstable:\nSwear by her foot, that she may tread out the oath.\n\nORLEANS:\nHe is simply the most active gentleman of France.\n\nConstable:\nDoing is activity; and he will still be doing.\n\nORLEANS:\nHe never did harm, that I heard of.\n\nConstable:\nNor will do none to-morrow: he will keep that good name still.\n\nORLEANS:\nI know him to be valiant.\n\nConstable:\nI was told that by one that knows him better than\nyou.\n\nORLEANS:\nWhat's he?\n\nConstable:\nMarry, he told me so himself; and he said he cared\nnot who knew it\n\nORLEANS:\nHe needs not; it is no hidden virtue in him.\n\nConstable:\nBy my faith, sir, but it is; never any body saw it\nbut his lackey: 'tis a hooded valour; and when it\nappears, it will bate.\n\nORLEANS:\nIll will never said well.\n\nConstable:\nI will cap that proverb with 'There is flattery in friendship.'\n\nORLEANS:\nAnd I will take up that with 'Give the devil his due.'\n\nConstable:\nWell placed: there stands your friend for the\ndevil: have at the very eye of that proverb with 'A\npox of the devil.'\n\nORLEANS:\nYou are the better at proverbs, by how much 'A\nfool's bolt is soon shot.'\n\nConstable:\nYou have shot over.\n\nORLEANS:\n'Tis not the first time you were overshot.\n\nMessenger:\nMy lord high constable, the English lie within\nfifteen hundred paces of your tents.\n\nConstable:\nWho hath measured the ground?\n\nMessenger:\nThe Lord Grandpre.\n\nConstable:\nA valiant and most expert gentleman. Would it were\nday! Alas, poor Harry of England! he longs not for\nthe dawning as we do.\n\nORLEANS:\nWhat a wretched and peevish fellow is this king of\nEngland, to mope with his fat-brained followers so\nfar out of his knowledge!\n\nConstable:\nIf the English had any apprehension, they would run away.\n\nORLEANS:\nThat they lack; for if their heads had any\nintellectual armour, they could never wear such heavy\nhead-pieces.\n\nRAMBURES:\nThat island of England breeds very valiant\ncreatures; their mastiffs are of unmatchable courage.\n\nORLEANS:\nFoolish curs, that run winking into the mouth of a\nRussian bear and have their heads crushed like\nrotten apples! You may as well say, that's a\nvaliant flea that dare eat his breakfast on the lip of a lion.\n\nConstable:\nJust, just; and the men do sympathize with the\nmastiffs in robustious and rough coming on, leaving\ntheir wits with their wives: and then give them\ngreat meals of beef and iron and steel, they will\neat like wolves and fight like devils.\n\nORLEANS:\nAy, but these English are shrewdly out of beef.\n\nConstable:\nThen shall we find to-morrow they have only stomachs\nto eat and none to fight. Now is it time to arm:\ncome, shall we about it?\n\nORLEANS:\nIt is now two o'clock: but, let me see, by ten\nWe shall have each a hundred Englishmen.\n\nChorus:\nNow entertain conjecture of a time\nWhen creeping murmur and the poring dark\nFills the wide vessel of the universe.\nFrom camp to camp through the foul womb of night\nThe hum of either army stilly sounds,\nThat the fixed sentinels almost receive\nThe secret whispers of each other's watch:\nFire answers fire, and through their paly flames\nEach battle sees the other's umber'd face;\nSteed threatens steed, in high and boastful neighs\nPiercing the night's dull ear, and from the tents\nThe armourers, accomplishing the knights,\nWith busy hammers closing rivets up,\nGive dreadful note of preparation:\nThe country cocks do crow, the clocks do toll,\nAnd the third hour of drowsy morning name.\nProud of their numbers and secure in soul,\nThe confident and over-lusty French\nDo the low-rated English play at dice;\nAnd chide the cripple tardy-gaited night\nWho, like a foul and ugly witch, doth limp\nSo tediously away. The poor condemned English,\nLike sacrifices, by their watchful fires\nSit patiently and inly ruminate\nThe morning's danger, and their gesture sad\nInvesting lank-lean; cheeks and war-worn coats\nPresenteth them unto the gazing moon\nSo many horrid ghosts. O now, who will behold\nThe royal captain of this ruin'd band\nWalking from watch to watch, from tent to tent,\nLet him cry 'Praise and glory on his head!'\nFor forth he goes and visits all his host.\nBids them good morrow with a modest smile\nAnd calls them brothers, friends and countrymen.\nUpon his royal face there is no note\nHow dread an army hath enrounded him;\nNor doth he dedicate one jot of colour\nUnto the weary and all-watched night,\nBut freshly looks and over-bears attaint\nWith cheerful semblance and sweet majesty;\nThat every wretch, pining and pale before,\nBeholding him, plucks comfort from his looks:\nA largess universal like the sun\nHis liberal eye doth give to every one,\nThawing cold fear, that mean and gentle all,\nBehold, as may unworthiness define,\nA little touch of Harry in the night.\nAnd so our scene must to the battle fly;\nWhere--O for pity!--we shall much disgrace\nWith four or five most vile and ragged foils,\nRight ill-disposed in brawl ridiculous,\nThe name of Agincourt. Yet sit and see,\nMinding true things by what their mockeries be.\n\nKING HENRY V:\nGloucester, 'tis true that we are in great danger;\nThe greater therefore should our courage be.\nGood morrow, brother Bedford. God Almighty!\nThere is some soul of goodness in things evil,\nWould men observingly distil it out.\nFor our bad neighbour makes us early stirrers,\nWhich is both healthful and good husbandry:\nBesides, they are our outward consciences,\nAnd preachers to us all, admonishing\nThat we should dress us fairly for our end.\nThus may we gather honey from the weed,\nAnd make a moral of the devil himself.\nGood morrow, old Sir Thomas Erpingham:\nA good soft pillow for that good white head\nWere better than a churlish turf of France.\n\nERPINGHAM:\nNot so, my liege: this lodging likes me better,\nSince I may say 'Now lie I like a king.'\n\nKING HENRY V:\n'Tis good for men to love their present pains\nUpon example; so the spirit is eased:\nAnd when the mind is quicken'd, out of doubt,\nThe organs, though defunct and dead before,\nBreak up their drowsy grave and newly move,\nWith casted slough and fresh legerity.\nLend me thy cloak, Sir Thomas. Brothers both,\nCommend me to the princes in our camp;\nDo my good morrow to them, and anon\nDesire them an to my pavilion.\n\nGLOUCESTER:\nWe shall, my liege.\n\nERPINGHAM:\nShall I attend your grace?\n\nKING HENRY V:\nNo, my good knight;\nGo with my brothers to my lords of England:\nI and my bosom must debate awhile,\nAnd then I would no other company.\n\nERPINGHAM:\nThe Lord in heaven bless thee, noble Harry!\n\nKING HENRY V:\nGod-a-mercy, old heart! thou speak'st cheerfully.\n\nPISTOL:\nQui va la?\n\nKING HENRY V:\nA friend.\n\nPISTOL:\nDiscuss unto me; art thou officer?\nOr art thou base, common and popular?\n\nKING HENRY V:\nI am a gentleman of a company.\n\nPISTOL:\nTrail'st thou the puissant pike?\n\nKING HENRY V:\nEven so. What are you?\n\nPISTOL:\nAs good a gentleman as the emperor.\n\nKING HENRY V:\nThen you are a better than the king.\n\nPISTOL:\nThe king's a bawcock, and a heart of gold,\nA lad of life, an imp of fame;\nOf parents good, of fist most valiant.\nI kiss his dirty shoe, and from heart-string\nI love the lovely bully. What is thy name?\n\nKING HENRY V:\nHarry le Roy.\n\nPISTOL:\nLe Roy! a Cornish name: art thou of Cornish crew?\n\nKING HENRY V:\nNo, I am a Welshman.\n\nPISTOL:\nKnow'st thou Fluellen?\n\nKING HENRY V:\nYes.\n\nPISTOL:\nTell him, I'll knock his leek about his pate\nUpon Saint Davy's day.\n\nKING HENRY V:\nDo not you wear your dagger in your cap that day,\nlest he knock that about yours.\n\nPISTOL:\nArt thou his friend?\n\nKING HENRY V:\nAnd his kinsman too.\n\nPISTOL:\nThe figo for thee, then!\n\nKING HENRY V:\nI thank you: God be with you!\n\nPISTOL:\nMy name is Pistol call'd.\n\nKING HENRY V:\nIt sorts well with your fierceness.\n\nGOWER:\nCaptain Fluellen!\n\nFLUELLEN:\nSo! in the name of Jesu Christ, speak lower. It is\nthe greatest admiration of the universal world, when\nthe true and aunchient prerogatifes and laws of the\nwars is not kept: if you would take the pains but to\nexamine the wars of Pompey the Great, you shall\nfind, I warrant you, that there is no tiddle toddle\nnor pibble pabble in Pompey's camp; I warrant you,\nyou shall find the ceremonies of the wars, and the\ncares of it, and the forms of it, and the sobriety\nof it, and the modesty of it, to be otherwise.\n\nGOWER:\nWhy, the enemy is loud; you hear him all night.\n\nFLUELLEN:\nIf the enemy is an ass and a fool and a prating\ncoxcomb, is it meet, think you, that we should also,\nlook you, be an ass and a fool and a prating\ncoxcomb? in your own conscience, now?\n\nGOWER:\nI will speak lower.\n\nFLUELLEN:\nI pray you and beseech you that you will.\n\nKING HENRY V:\nThough it appear a little out of fashion,\nThere is much care and valour in this Welshman.\n\nCOURT:\nBrother John Bates, is not that the morning which\nbreaks yonder?\n\nBATES:\nI think it be: but we have no great cause to desire\nthe approach of day.\n\nWILLIAMS:\nWe see yonder the beginning of the day, but I think\nwe shall never see the end of it. Who goes there?\n\nKING HENRY V:\nA friend.\n\nWILLIAMS:\nUnder what captain serve you?\n\nKING HENRY V:\nUnder Sir Thomas Erpingham.\n\nWILLIAMS:\nA good old commander and a most kind gentleman: I\npray you, what thinks he of our estate?\n\nKING HENRY V:\nEven as men wrecked upon a sand, that look to be\nwashed off the next tide.\n\nBATES:\nHe hath not told his thought to the king?\n\nKING HENRY V:\nNo; nor it is not meet he should. For, though I\nspeak it to you, I think the king is but a man, as I\nam: the violet smells to him as it doth to me: the\nelement shows to him as it doth to me; all his\nsenses have but human conditions: his ceremonies\nlaid by, in his nakedness he appears but a man; and\nthough his affections are higher mounted than ours,\nyet, when they stoop, they stoop with the like\nwing. Therefore when he sees reason of fears, as we\ndo, his fears, out of doubt, be of the same relish\nas ours are: yet, in reason, no man should possess\nhim with any appearance of fear, lest he, by showing\nit, should dishearten his army.\n\nBATES:\nHe may show what outward courage he will; but I\nbelieve, as cold a night as 'tis, he could wish\nhimself in Thames up to the neck; and so I would he\nwere, and I by him, at all adventures, so we were quit here.\n\nKING HENRY V:\nBy my troth, I will speak my conscience of the king:\nI think he would not wish himself any where but\nwhere he is.\n\nBATES:\nThen I would he were here alone; so should he be\nsure to be ransomed, and a many poor men's lives saved.\n\nKING HENRY V:\nI dare say you love him not so ill, to wish him here\nalone, howsoever you speak this to feel other men's\nminds: methinks I could not die any where so\ncontented as in the king's company; his cause being\njust and his quarrel honourable.\n\nWILLIAMS:\nThat's more than we know.\n\nBATES:\nAy, or more than we should seek after; for we know\nenough, if we know we are the kings subjects: if\nhis cause be wrong, our obedience to the king wipes\nthe crime of it out of us.\n\nWILLIAMS:\nBut if the cause be not good, the king himself hath\na heavy reckoning to make, when all those legs and\narms and heads, chopped off in battle, shall join\ntogether at the latter day and cry all 'We died at\nsuch a place;' some swearing, some crying for a\nsurgeon, some upon their wives left poor behind\nthem, some upon the debts they owe, some upon their\nchildren rawly left. I am afeard there are few die\nwell that die in a battle; for how can they\ncharitably dispose of any thing, when blood is their\nargument? Now, if these men do not die well, it\nwill be a black matter for the king that led them to\nit; whom to disobey were against all proportion of\nsubjection.\n\nKING HENRY V:\nSo, if a son that is by his father sent about\nmerchandise do sinfully miscarry upon the sea, the\nimputation of his wickedness by your rule, should be\nimposed upon his father that sent him: or if a\nservant, under his master's command transporting a\nsum of money, be assailed by robbers and die in\nmany irreconciled iniquities, you may call the\nbusiness of the master the author of the servant's\ndamnation: but this is not so: the king is not\nbound to answer the particular endings of his\nsoldiers, the father of his son, nor the master of\nhis servant; for they purpose not their death, when\nthey purpose their services. Besides, there is no\nking, be his cause never so spotless, if it come to\nthe arbitrement of swords, can try it out with all\nunspotted soldiers: some peradventure have on them\nthe guilt of premeditated and contrived murder;\nsome, of beguiling virgins with the broken seals of\nperjury; some, making the wars their bulwark, that\nhave before gored the gentle bosom of peace with\npillage and robbery. Now, if these men have\ndefeated the law and outrun native punishment,\nthough they can outstrip men, they have no wings to\nfly from God: war is his beadle, war is vengeance;\nso that here men are punished for before-breach of\nthe king's laws in now the king's quarrel: where\nthey feared the death, they have borne life away;\nand where they would be safe, they perish: then if\nthey die unprovided, no more is the king guilty of\ntheir damnation than he was before guilty of those\nimpieties for the which they are now visited. Every\nsubject's duty is the king's; but every subject's\nsoul is his own. Therefore should every soldier in\nthe wars do as every sick man in his bed, wash every\nmote out of his conscience: and dying so, death\nis to him advantage; or not dying, the time was\nblessedly lost wherein such preparation was gained:\nand in him that escapes, it were not sin to think\nthat, making God so free an offer, He let him\noutlive that day to see His greatness and to teach\nothers how they should prepare.\n\nWILLIAMS:\n'Tis certain, every man that dies ill, the ill upon\nhis own head, the king is not to answer it.\n\nBATES:\nBut I do not desire he should answer for me; and\nyet I determine to fight lustily for him.\n\nKING HENRY V:\nI myself heard the king say he would not be ransomed.\n\nWILLIAMS:\nAy, he said so, to make us fight cheerfully: but\nwhen our throats are cut, he may be ransomed, and we\nne'er the wiser.\n\nKING HENRY V:\nIf I live to see it, I will never trust his word after.\n\nWILLIAMS:\nYou pay him then. That's a perilous shot out of an\nelder-gun, that a poor and private displeasure can\ndo against a monarch! you may as well go about to\nturn the sun to ice with fanning in his face with a\npeacock's feather. You'll never trust his word\nafter! come, 'tis a foolish saying.\n\nKING HENRY V:\nYour reproof is something too round: I should be\nangry with you, if the time were convenient.\n\nWILLIAMS:\nLet it be a quarrel between us, if you live.\n\nKING HENRY V:\nI embrace it.\n\nWILLIAMS:\nHow shall I know thee again?\n\nKING HENRY V:\nGive me any gage of thine, and I will wear it in my\nbonnet: then, if ever thou darest acknowledge it, I\nwill make it my quarrel.\n\nWILLIAMS:\nHere's my glove: give me another of thine.\n\nKING HENRY V:\nThere.\n\nWILLIAMS:\nThis will I also wear in my cap: if ever thou come\nto me and say, after to-morrow, 'This is my glove,'\nby this hand, I will take thee a box on the ear.\n\nKING HENRY V:\nIf ever I live to see it, I will challenge it.\n\nWILLIAMS:\nThou darest as well be hanged.\n\nKING HENRY V:\nWell. I will do it, though I take thee in the\nking's company.\n\nWILLIAMS:\nKeep thy word: fare thee well.\n\nBATES:\nBe friends, you English fools, be friends: we have\nFrench quarrels enow, if you could tell how to reckon.\n\nKING HENRY V:\nIndeed, the French may lay twenty French crowns to\none, they will beat us; for they bear them on their\nshoulders: but it is no English treason to cut\nFrench crowns, and to-morrow the king himself will\nbe a clipper.\nUpon the king! let us our lives, our souls,\nOur debts, our careful wives,\nOur children and our sins lay on the king!\nWe must bear all. O hard condition,\nTwin-born with greatness, subject to the breath\nOf every fool, whose sense no more can feel\nBut his own wringing! What infinite heart's-ease\nMust kings neglect, that private men enjoy!\nAnd what have kings, that privates have not too,\nSave ceremony, save general ceremony?\nAnd what art thou, thou idle ceremony?\nWhat kind of god art thou, that suffer'st more\nOf mortal griefs than do thy worshippers?\nWhat are thy rents? what are thy comings in?\nO ceremony, show me but thy worth!\nWhat is thy soul of adoration?\nArt thou aught else but place, degree and form,\nCreating awe and fear in other men?\nWherein thou art less happy being fear'd\nThan they in fearing.\nWhat drink'st thou oft, instead of homage sweet,\nBut poison'd flattery? O, be sick, great greatness,\nAnd bid thy ceremony give thee cure!\nThink'st thou the fiery fever will go out\nWith titles blown from adulation?\nWill it give place to flexure and low bending?\nCanst thou, when thou command'st the beggar's knee,\nCommand the health of it? No, thou proud dream,\nThat play'st so subtly with a king's repose;\nI am a king that find thee, and I know\n'Tis not the balm, the sceptre and the ball,\nThe sword, the mace, the crown imperial,\nThe intertissued robe of gold and pearl,\nThe farced title running 'fore the king,\nThe throne he sits on, nor the tide of pomp\nThat beats upon the high shore of this world,\nNo, not all these, thrice-gorgeous ceremony,\nNot all these, laid in bed majestical,\nCan sleep so soundly as the wretched slave,\nWho with a body fill'd and vacant mind\nGets him to rest, cramm'd with distressful bread;\nNever sees horrid night, the child of hell,\nBut, like a lackey, from the rise to set\nSweats in the eye of Phoebus and all night\nSleeps in Elysium; next day after dawn,\nDoth rise and help Hyperion to his horse,\nAnd follows so the ever-running year,\nWith profitable labour, to his grave:\nAnd, but for ceremony, such a wretch,\nWinding up days with toil and nights with sleep,\nHad the fore-hand and vantage of a king.\nThe slave, a member of the country's peace,\nEnjoys it; but in gross brain little wots\nWhat watch the king keeps to maintain the peace,\nWhose hours the peasant best advantages.\n\nERPINGHAM:\nMy lord, your nobles, jealous of your absence,\nSeek through your camp to find you.\n\nKING HENRY V:\nGood old knight,\nCollect them all together at my tent:\nI'll be before thee.\n\nERPINGHAM:\nI shall do't, my lord.\n\nKING HENRY V:\nO God of battles! steel my soldiers' hearts;\nPossess them not with fear; take from them now\nThe sense of reckoning, if the opposed numbers\nPluck their hearts from them. Not to-day, O Lord,\nO, not to-day, think not upon the fault\nMy father made in compassing the crown!\nI Richard's body have interred anew;\nAnd on it have bestow'd more contrite tears\nThan from it issued forced drops of blood:\nFive hundred poor I have in yearly pay,\nWho twice a-day their wither'd hands hold up\nToward heaven, to pardon blood; and I have built\nTwo chantries, where the sad and solemn priests\nSing still for Richard's soul. More will I do;\nThough all that I can do is nothing worth,\nSince that my penitence comes after all,\nImploring pardon.\n\nGLOUCESTER:\nMy liege!\n\nKING HENRY V:\nMy brother Gloucester's voice? Ay;\nI know thy errand, I will go with thee:\nThe day, my friends and all things stay for me.\n\nORLEANS:\nThe sun doth gild our armour; up, my lords!\n\nDAUPHIN:\nMontez A cheval! My horse! varlet! laquais! ha!\n\nORLEANS:\nO brave spirit!\n\nDAUPHIN:\nVia! les eaux et la terre.\n\nORLEANS:\nRien puis? L'air et la feu.\n\nDAUPHIN:\nCiel, cousin Orleans.\nNow, my lord constable!\n\nConstable:\nHark, how our steeds for present service neigh!\n\nDAUPHIN:\nMount them, and make incision in their hides,\nThat their hot blood may spin in English eyes,\nAnd dout them with superfluous courage, ha!\n\nRAMBURES:\nWhat, will you have them weep our horses' blood?\nHow shall we, then, behold their natural tears?\n\nMessenger:\nThe English are embattled, you French peers.\n\nConstable:\nTo horse, you gallant princes! straight to horse!\nDo but behold yon poor and starved band,\nAnd your fair show shall suck away their souls,\nLeaving them but the shales and husks of men.\nThere is not work enough for all our hands;\nScarce blood enough in all their sickly veins\nTo give each naked curtle-axe a stain,\nThat our French gallants shall to-day draw out,\nAnd sheathe for lack of sport: let us but blow on them,\nThe vapour of our valour will o'erturn them.\n'Tis positive 'gainst all exceptions, lords,\nThat our superfluous lackeys and our peasants,\nWho in unnecessary action swarm\nAbout our squares of battle, were enow\nTo purge this field of such a hilding foe,\nThough we upon this mountain's basis by\nTook stand for idle speculation:\nBut that our honours must not. What's to say?\nA very little little let us do.\nAnd all is done. Then let the trumpets sound\nThe tucket sonance and the note to mount;\nFor our approach shall so much dare the field\nThat England shall couch down in fear and yield.\n\nGRANDPRE:\nWhy do you stay so long, my lords of France?\nYon island carrions, desperate of their bones,\nIll-favouredly become the morning field:\nTheir ragged curtains poorly are let loose,\nAnd our air shakes them passing scornfully:\nBig Mars seems bankrupt in their beggar'd host\nAnd faintly through a rusty beaver peeps:\nThe horsemen sit like fixed candlesticks,\nWith torch-staves in their hand; and their poor jades\nLob down their heads, dropping the hides and hips,\nThe gum down-roping from their pale-dead eyes\nAnd in their pale dull mouths the gimmal bit\nLies foul with chew'd grass, still and motionless;\nAnd their executors, the knavish crows,\nFly o'er them, all impatient for their hour.\nDescription cannot suit itself in words\nTo demonstrate the life of such a battle\nIn life so lifeless as it shows itself.\n\nConstable:\nThey have said their prayers, and they stay for death.\n\nDAUPHIN:\nShall we go send them dinners and fresh suits\nAnd give their fasting horses provender,\nAnd after fight with them?\n\nConstable:\nI stay but for my guidon: to the field!\nI will the banner from a trumpet take,\nAnd use it for my haste. Come, come, away!\nThe sun is high, and we outwear the day.\n\nGLOUCESTER:\nWhere is the king?\n\nBEDFORD:\nThe king himself is rode to view their battle.\n\nWESTMORELAND:\nOf fighting men they have full three score thousand.\n\nEXETER:\nThere's five to one; besides, they all are fresh.\n\nSALISBURY:\nGod's arm strike with us! 'tis a fearful odds.\nGod be wi' you, princes all; I'll to my charge:\nIf we no more meet till we meet in heaven,\nThen, joyfully, my noble Lord of Bedford,\nMy dear Lord Gloucester, and my good Lord Exeter,\nAnd my kind kinsman, warriors all, adieu!\n\nBEDFORD:\nFarewell, good Salisbury; and good luck go with thee!\n\nEXETER:\nFarewell, kind lord; fight valiantly to-day:\nAnd yet I do thee wrong to mind thee of it,\nFor thou art framed of the firm truth of valour.\n\nBEDFORD:\nHe is full of valour as of kindness;\nPrincely in both.\n\nWESTMORELAND:\nO that we now had here\nBut one ten thousand of those men in England\nThat do no work to-day!\n\nKING HENRY V:\nWhat's he that wishes so?\nMy cousin Westmoreland? No, my fair cousin:\nIf we are mark'd to die, we are enow\nTo do our country loss; and if to live,\nThe fewer men, the greater share of honour.\nGod's will! I pray thee, wish not one man more.\nBy Jove, I am not covetous for gold,\nNor care I who doth feed upon my cost;\nIt yearns me not if men my garments wear;\nSuch outward things dwell not in my desires:\nBut if it be a sin to covet honour,\nI am the most offending soul alive.\nNo, faith, my coz, wish not a man from England:\nGod's peace! I would not lose so great an honour\nAs one man more, methinks, would share from me\nFor the best hope I have. O, do not wish one more!\nRather proclaim it, Westmoreland, through my host,\nThat he which hath no stomach to this fight,\nLet him depart; his passport shall be made\nAnd crowns for convoy put into his purse:\nWe would not die in that man's company\nThat fears his fellowship to die with us.\nThis day is called the feast of Crispian:\nHe that outlives this day, and comes safe home,\nWill stand a tip-toe when the day is named,\nAnd rouse him at the name of Crispian.\nHe that shall live this day, and see old age,\nWill yearly on the vigil feast his neighbours,\nAnd say 'To-morrow is Saint Crispian:'\nThen will he strip his sleeve and show his scars.\nAnd say 'These wounds I had on Crispin's day.'\nOld men forget: yet all shall be forgot,\nBut he'll remember with advantages\nWhat feats he did that day: then shall our names.\nFamiliar in his mouth as household words\nHarry the king, Bedford and Exeter,\nWarwick and Talbot, Salisbury and Gloucester,\nBe in their flowing cups freshly remember'd.\nThis story shall the good man teach his son;\nAnd Crispin Crispian shall ne'er go by,\nFrom this day to the ending of the world,\nBut we in it shall be remember'd;\nWe few, we happy few, we band of brothers;\nFor he to-day that sheds his blood with me\nShall be my brother; be he ne'er so vile,\nThis day shall gentle his condition:\nAnd gentlemen in England now a-bed\nShall think themselves accursed they were not here,\nAnd hold their manhoods cheap whiles any speaks\nThat fought with us upon Saint Crispin's day.\n\nSALISBURY:\nMy sovereign lord, bestow yourself with speed:\nThe French are bravely in their battles set,\nAnd will with all expedience charge on us.\n\nKING HENRY V:\nAll things are ready, if our minds be so.\n\nWESTMORELAND:\nPerish the man whose mind is backward now!\n\nKING HENRY V:\nThou dost not wish more help from England, coz?\n\nWESTMORELAND:\nGod's will! my liege, would you and I alone,\nWithout more help, could fight this royal battle!\n\nKING HENRY V:\nWhy, now thou hast unwish'd five thousand men;\nWhich likes me better than to wish us one.\nYou know your places: God be with you all!\n\nMONTJOY:\nOnce more I come to know of thee, King Harry,\nIf for thy ransom thou wilt now compound,\nBefore thy most assured overthrow:\nFor certainly thou art so near the gulf,\nThou needs must be englutted. Besides, in mercy,\nThe constable desires thee thou wilt mind\nThy followers of repentance; that their souls\nMay make a peaceful and a sweet retire\nFrom off these fields, where, wretches, their poor bodies\nMust lie and fester.\n\nKING HENRY V:\nWho hath sent thee now?\n\nMONTJOY:\nThe Constable of France.\n\nKING HENRY V:\nI pray thee, bear my former answer back:\nBid them achieve me and then sell my bones.\nGood God! why should they mock poor fellows thus?\nThe man that once did sell the lion's skin\nWhile the beast lived, was killed with hunting him.\nA many of our bodies shall no doubt\nFind native graves; upon the which, I trust,\nShall witness live in brass of this day's work:\nAnd those that leave their valiant bones in France,\nDying like men, though buried in your dunghills,\nThey shall be famed; for there the sun shall greet them,\nAnd draw their honours reeking up to heaven;\nLeaving their earthly parts to choke your clime,\nThe smell whereof shall breed a plague in France.\nMark then abounding valour in our English,\nThat being dead, like to the bullet's grazing,\nBreak out into a second course of mischief,\nKilling in relapse of mortality.\nLet me speak proudly: tell the constable\nWe are but warriors for the working-day;\nOur gayness and our gilt are all besmirch'd\nWith rainy marching in the painful field;\nThere's not a piece of feather in our host--\nGood argument, I hope, we will not fly--\nAnd time hath worn us into slovenry:\nBut, by the mass, our hearts are in the trim;\nAnd my poor soldiers tell me, yet ere night\nThey'll be in fresher robes, or they will pluck\nThe gay new coats o'er the French soldiers' heads\nAnd turn them out of service. If they do this,--\nAs, if God please, they shall,--my ransom then\nWill soon be levied. Herald, save thou thy labour;\nCome thou no more for ransom, gentle herald:\nThey shall have none, I swear, but these my joints;\nWhich if they have as I will leave 'em them,\nShall yield them little, tell the constable.\n\nMONTJOY:\nI shall, King Harry. And so fare thee well:\nThou never shalt hear herald any more.\n\nKING HENRY V:\nI fear thou'lt once more come again for ransom.\n\nYORK:\nMy lord, most humbly on my knee I beg\nThe leading of the vaward.\n\nKING HENRY V:\nTake it, brave York. Now, soldiers, march away:\nAnd how thou pleasest, God, dispose the day!\n\nPISTOL:\nYield, cur!\n\nFrench Soldier:\nJe pense que vous etes gentilhomme de bonne qualite.\n\nPISTOL:\nQualtitie calmie custure me! Art thou a gentleman?\nwhat is thy name? discuss.\n\nFrench Soldier:\nO Seigneur Dieu!\n\nPISTOL:\nO, Signieur Dew should be a gentleman:\nPerpend my words, O Signieur Dew, and mark;\nO Signieur Dew, thou diest on point of fox,\nExcept, O signieur, thou do give to me\nEgregious ransom.\n\nFrench Soldier:\nO, prenez misericorde! ayez pitie de moi!\n\nPISTOL:\nMoy shall not serve; I will have forty moys;\nOr I will fetch thy rim out at thy throat\nIn drops of crimson blood.\n\nFrench Soldier:\nEst-il impossible d'echapper la force de ton bras?\n\nPISTOL:\nBrass, cur!\nThou damned and luxurious mountain goat,\nOffer'st me brass?\n\nFrench Soldier:\nO pardonnez moi!\n\nPISTOL:\nSay'st thou me so? is that a ton of moys?\nCome hither, boy: ask me this slave in French\nWhat is his name.\n\nBoy:\nEcoutez: comment etes-vous appele?\n\nFrench Soldier:\nMonsieur le Fer.\n\nBoy:\nHe says his name is Master Fer.\n\nPISTOL:\nMaster Fer! I'll fer him, and firk him, and ferret\nhim: discuss the same in French unto him.\n\nBoy:\nI do not know the French for fer, and ferret, and firk.\n\nPISTOL:\nBid him prepare; for I will cut his throat.\n\nFrench Soldier:\nQue dit-il, monsieur?\n\nBoy:\nIl me commande de vous dire que vous faites vous\npret; car ce soldat ici est dispose tout a cette\nheure de couper votre gorge.\n\nPISTOL:\nOwy, cuppele gorge, permafoy,\nPeasant, unless thou give me crowns, brave crowns;\nOr mangled shalt thou be by this my sword.\n\nFrench Soldier:\nO, je vous supplie, pour l'amour de Dieu, me\npardonner! Je suis gentilhomme de bonne maison:\ngardez ma vie, et je vous donnerai deux cents ecus.\n\nPISTOL:\nWhat are his words?\n\nBoy:\nHe prays you to save his life: he is a gentleman of\na good house; and for his ransom he will give you\ntwo hundred crowns.\n\nPISTOL:\nTell him my fury shall abate, and I the crowns will take.\n\nFrench Soldier:\nPetit monsieur, que dit-il?\n\nBoy:\nEncore qu'il est contre son jurement de pardonner\naucun prisonnier, neanmoins, pour les ecus que vous\nl'avez promis, il est content de vous donner la\nliberte, le franchisement.\n\nFrench Soldier:\nSur mes genoux je vous donne mille remercimens; et\nje m'estime heureux que je suis tombe entre les\nmains d'un chevalier, je pense, le plus brave,\nvaillant, et tres distingue seigneur d'Angleterre.\n\nPISTOL:\nExpound unto me, boy.\n\nBoy:\nHe gives you, upon his knees, a thousand thanks; and\nhe esteems himself happy that he hath fallen into\nthe hands of one, as he thinks, the most brave,\nvalorous, and thrice-worthy signieur of England.\n\nPISTOL:\nAs I suck blood, I will some mercy show.\nFollow me!\n\nBoy:\nSuivez-vous le grand capitaine.\nI did never know so full a voice issue from so\nempty a heart: but the saying is true 'The empty\nvessel makes the greatest sound.' Bardolph and Nym\nhad ten times more valour than this roaring devil i'\nthe old play, that every one may pare his nails with\na wooden dagger; and they are both hanged; and so\nwould this be, if he durst steal any thing\nadventurously. I must stay with the lackeys, with\nthe luggage of our camp: the French might have a\ngood prey of us, if he knew of it; for there is\nnone to guard it but boys.\n\nConstable:\nO diable!\n\nORLEANS:\nO seigneur! le jour est perdu, tout est perdu!\n\nDAUPHIN:\nMort de ma vie! all is confounded, all!\nReproach and everlasting shame\nSits mocking in our plumes. O merchante fortune!\nDo not run away.\n\nConstable:\nWhy, all our ranks are broke.\n\nDAUPHIN:\nO perdurable shame! let's stab ourselves.\nBe these the wretches that we play'd at dice for?\n\nORLEANS:\nIs this the king we sent to for his ransom?\n\nBOURBON:\nShame and eternal shame, nothing but shame!\nLet us die in honour: once more back again;\nAnd he that will not follow Bourbon now,\nLet him go hence, and with his cap in hand,\nLike a base pander, hold the chamber-door\nWhilst by a slave, no gentler than my dog,\nHis fairest daughter is contaminated.\n\nConstable:\nDisorder, that hath spoil'd us, friend us now!\nLet us on heaps go offer up our lives.\n\nORLEANS:\nWe are enow yet living in the field\nTo smother up the English in our throngs,\nIf any order might be thought upon.\n\nBOURBON:\nThe devil take order now! I'll to the throng:\nLet life be short; else shame will be too long.\n\nKING HENRY V:\nWell have we done, thrice valiant countrymen:\nBut all's not done; yet keep the French the field.\n\nEXETER:\nThe Duke of York commends him to your majesty.\n\nKING HENRY V:\nLives he, good uncle? thrice within this hour\nI saw him down; thrice up again and fighting;\nFrom helmet to the spur all blood he was.\n\nEXETER:\nIn which array, brave soldier, doth he lie,\nLarding the plain; and by his bloody side,\nYoke-fellow to his honour-owing wounds,\nThe noble Earl of Suffolk also lies.\nSuffolk first died: and York, all haggled over,\nComes to him, where in gore he lay insteep'd,\nAnd takes him by the beard; kisses the gashes\nThat bloodily did spawn upon his face;\nAnd cries aloud 'Tarry, dear cousin Suffolk!\nMy soul shall thine keep company to heaven;\nTarry, sweet soul, for mine, then fly abreast,\nAs in this glorious and well-foughten field\nWe kept together in our chivalry!'\nUpon these words I came and cheer'd him up:\nHe smiled me in the face, raught me his hand,\nAnd, with a feeble gripe, says 'Dear my lord,\nCommend my service to me sovereign.'\nSo did he turn and over Suffolk's neck\nHe threw his wounded arm and kiss'd his lips;\nAnd so espoused to death, with blood he seal'd\nA testament of noble-ending love.\nThe pretty and sweet manner of it forced\nThose waters from me which I would have stopp'd;\nBut I had not so much of man in me,\nAnd all my mother came into mine eyes\nAnd gave me up to tears.\n\nKING HENRY V:\nI blame you not;\nFor, hearing this, I must perforce compound\nWith mistful eyes, or they will issue too.\nBut, hark! what new alarum is this same?\nThe French have reinforced their scatter'd men:\nThen every soldier kill his prisoners:\nGive the word through.\n\nFLUELLEN:\nKill the poys and the luggage! 'tis expressly\nagainst the law of arms: 'tis as arrant a piece of\nknavery, mark you now, as can be offer't; in your\nconscience, now, is it not?\n\nGOWER:\n'Tis certain there's not a boy left alive; and the\ncowardly rascals that ran from the battle ha' done\nthis slaughter: besides, they have burned and\ncarried away all that was in the king's tent;\nwherefore the king, most worthily, hath caused every\nsoldier to cut his prisoner's throat. O, 'tis a\ngallant king!\n\nFLUELLEN:\nAy, he was porn at Monmouth, Captain Gower. What\ncall you the town's name where Alexander the Pig was born!\n\nGOWER:\nAlexander the Great.\n\nFLUELLEN:\nWhy, I pray you, is not pig great? the pig, or the\ngreat, or the mighty, or the huge, or the\nmagnanimous, are all one reckonings, save the phrase\nis a little variations.\n\nGOWER:\nI think Alexander the Great was born in Macedon; his\nfather was called Philip of Macedon, as I take it.\n\nFLUELLEN:\nI think it is in Macedon where Alexander is porn. I\ntell you, captain, if you look in the maps of the\n'orld, I warrant you sall find, in the comparisons\nbetween Macedon and Monmouth, that the situations,\nlook you, is both alike. There is a river in\nMacedon; and there is also moreover a river at\nMonmouth: it is called Wye at Monmouth; but it is\nout of my prains what is the name of the other\nriver; but 'tis all one, 'tis alike as my fingers is\nto my fingers, and there is salmons in both. If you\nmark Alexander's life well, Harry of Monmouth's life\nis come after it indifferent well; for there is\nfigures in all things. Alexander, God knows, and\nyou know, in his rages, and his furies, and his\nwraths, and his cholers, and his moods, and his\ndispleasures, and his indignations, and also being a\nlittle intoxicates in his prains, did, in his ales and\nhis angers, look you, kill his best friend, Cleitus.\n\nGOWER:\nOur king is not like him in that: he never killed\nany of his friends.\n\nFLUELLEN:\nIt is not well done, mark you now take the tales out\nof my mouth, ere it is made and finished. I speak\nbut in the figures and comparisons of it: as\nAlexander killed his friend Cleitus, being in his\nales and his cups; so also Harry Monmouth, being in\nhis right wits and his good judgments, turned away\nthe fat knight with the great belly-doublet: he\nwas full of jests, and gipes, and knaveries, and\nmocks; I have forgot his name.\n\nGOWER:\nSir John Falstaff.\n\nFLUELLEN:\nThat is he: I'll tell you there is good men porn at Monmouth.\n\nGOWER:\nHere comes his majesty.\n\nKING HENRY V:\nI was not angry since I came to France\nUntil this instant. Take a trumpet, herald;\nRide thou unto the horsemen on yon hill:\nIf they will fight with us, bid them come down,\nOr void the field; they do offend our sight:\nIf they'll do neither, we will come to them,\nAnd make them skirr away, as swift as stones\nEnforced from the old Assyrian slings:\nBesides, we'll cut the throats of those we have,\nAnd not a man of them that we shall take\nShall taste our mercy. Go and tell them so.\n\nEXETER:\nHere comes the herald of the French, my liege.\n\nGLOUCESTER:\nHis eyes are humbler than they used to be.\n\nKING HENRY V:\nHow now! what means this, herald? know'st thou not\nThat I have fined these bones of mine for ransom?\nComest thou again for ransom?\n\nMONTJOY:\nNo, great king:\nI come to thee for charitable licence,\nThat we may wander o'er this bloody field\nTo look our dead, and then to bury them;\nTo sort our nobles from our common men.\nFor many of our princes--woe the while!--\nLie drown'd and soak'd in mercenary blood;\nSo do our vulgar drench their peasant limbs\nIn blood of princes; and their wounded steeds\nFret fetlock deep in gore and with wild rage\nYerk out their armed heels at their dead masters,\nKilling them twice. O, give us leave, great king,\nTo view the field in safety and dispose\nOf their dead bodies!\n\nKING HENRY V:\nI tell thee truly, herald,\nI know not if the day be ours or no;\nFor yet a many of your horsemen peer\nAnd gallop o'er the field.\n\nMONTJOY:\nThe day is yours.\n\nKING HENRY V:\nPraised be God, and not our strength, for it!\nWhat is this castle call'd that stands hard by?\n\nMONTJOY:\nThey call it Agincourt.\n\nKING HENRY V:\nThen call we this the field of Agincourt,\nFought on the day of Crispin Crispianus.\n\nFLUELLEN:\nYour grandfather of famous memory, an't please your\nmajesty, and your great-uncle Edward the Plack\nPrince of Wales, as I have read in the chronicles,\nfought a most prave pattle here in France.\n\nKING HENRY V:\nThey did, Fluellen.\n\nFLUELLEN:\nYour majesty says very true: if your majesties is\nremembered of it, the Welshmen did good service in a\ngarden where leeks did grow, wearing leeks in their\nMonmouth caps; which, your majesty know, to this\nhour is an honourable badge of the service; and I do\nbelieve your majesty takes no scorn to wear the leek\nupon Saint Tavy's day.\n\nKING HENRY V:\nI wear it for a memorable honour;\nFor I am Welsh, you know, good countryman.\n\nFLUELLEN:\nAll the water in Wye cannot wash your majesty's\nWelsh plood out of your pody, I can tell you that:\nGod pless it and preserve it, as long as it pleases\nhis grace, and his majesty too!\n\nKING HENRY V:\nThanks, good my countryman.\n\nFLUELLEN:\nBy Jeshu, I am your majesty's countryman, I care not\nwho know it; I will confess it to all the 'orld: I\nneed not to be ashamed of your majesty, praised be\nGod, so long as your majesty is an honest man.\n\nKING HENRY V:\nGod keep me so! Our heralds go with him:\nBring me just notice of the numbers dead\nOn both our parts. Call yonder fellow hither.\n\nEXETER:\nSoldier, you must come to the king.\n\nKING HENRY V:\nSoldier, why wearest thou that glove in thy cap?\n\nWILLIAMS:\nAn't please your majesty, 'tis the gage of one that\nI should fight withal, if he be alive.\n\nKING HENRY V:\nAn Englishman?\n\nWILLIAMS:\nAn't please your majesty, a rascal that swaggered\nwith me last night; who, if alive and ever dare to\nchallenge this glove, I have sworn to take him a box\no' th' ear: or if I can see my glove in his cap,\nwhich he swore, as he was a soldier, he would wear\nif alive, I will strike it out soundly.\n\nKING HENRY V:\nWhat think you, Captain Fluellen? is it fit this\nsoldier keep his oath?\n\nFLUELLEN:\nHe is a craven and a villain else, an't please your\nmajesty, in my conscience.\n\nKING HENRY V:\nIt may be his enemy is a gentleman of great sort,\nquite from the answer of his degree.\n\nFLUELLEN:\nThough he be as good a gentleman as the devil is, as\nLucifer and Belzebub himself, it is necessary, look\nyour grace, that he keep his vow and his oath: if\nhe be perjured, see you now, his reputation is as\narrant a villain and a Jacksauce, as ever his black\nshoe trod upon God's ground and his earth, in my\nconscience, la!\n\nKING HENRY V:\nThen keep thy vow, sirrah, when thou meetest the fellow.\n\nWILLIAMS:\nSo I will, my liege, as I live.\n\nKING HENRY V:\nWho servest thou under?\n\nWILLIAMS:\nUnder Captain Gower, my liege.\n\nFLUELLEN:\nGower is a good captain, and is good knowledge and\nliteratured in the wars.\n\nKING HENRY V:\nCall him hither to me, soldier.\n\nWILLIAMS:\nI will, my liege.\n\nKING HENRY V:\nHere, Fluellen; wear thou this favour for me and\nstick it in thy cap: when Alencon and myself were\ndown together, I plucked this glove from his helm:\nif any man challenge this, he is a friend to\nAlencon, and an enemy to our person; if thou\nencounter any such, apprehend him, an thou dost me love.\n\nFLUELLEN:\nYour grace doo's me as great honours as can be\ndesired in the hearts of his subjects: I would fain\nsee the man, that has but two legs, that shall find\nhimself aggrieved at this glove; that is all; but I\nwould fain see it once, an please God of his grace\nthat I might see.\n\nKING HENRY V:\nKnowest thou Gower?\n\nFLUELLEN:\nHe is my dear friend, an please you.\n\nKING HENRY V:\nPray thee, go seek him, and bring him to my tent.\n\nFLUELLEN:\nI will fetch him.\n\nKING HENRY V:\nMy Lord of Warwick, and my brother Gloucester,\nFollow Fluellen closely at the heels:\nThe glove which I have given him for a favour\nMay haply purchase him a box o' th' ear;\nIt is the soldier's; I by bargain should\nWear it myself. Follow, good cousin Warwick:\nIf that the soldier strike him, as I judge\nBy his blunt bearing he will keep his word,\nSome sudden mischief may arise of it;\nFor I do know Fluellen valiant\nAnd, touched with choler, hot as gunpowder,\nAnd quickly will return an injury:\nFollow and see there be no harm between them.\nGo you with me, uncle of Exeter.\n\nWILLIAMS:\nI warrant it is to knight you, captain.\n\nFLUELLEN:\nGod's will and his pleasure, captain, I beseech you\nnow, come apace to the king: there is more good\ntoward you peradventure than is in your knowledge to dream of.\n\nWILLIAMS:\nSir, know you this glove?\n\nFLUELLEN:\nKnow the glove! I know the glove is glove.\n\nWILLIAMS:\nI know this; and thus I challenge it.\n\nFLUELLEN:\n'Sblood! an arrant traitor as any is in the\nuniversal world, or in France, or in England!\n\nGOWER:\nHow now, sir! you villain!\n\nWILLIAMS:\nDo you think I'll be forsworn?\n\nFLUELLEN:\nStand away, Captain Gower; I will give treason his\npayment into ploughs, I warrant you.\n\nWILLIAMS:\nI am no traitor.\n\nFLUELLEN:\nThat's a lie in thy throat. I charge you in his\nmajesty's name, apprehend him: he's a friend of the\nDuke Alencon's.\n\nWARWICK:\nHow now, how now! what's the matter?\n\nFLUELLEN:\nMy Lord of Warwick, here is--praised be God for it!\n--a most contagious treason come to light, look\nyou, as you shall desire in a summer's day. Here is\nhis majesty.\n\nKING HENRY V:\nHow now! what's the matter?\n\nFLUELLEN:\nMy liege, here is a villain and a traitor, that,\nlook your grace, has struck the glove which your\nmajesty is take out of the helmet of Alencon.\n\nWILLIAMS:\nMy liege, this was my glove; here is the fellow of\nit; and he that I gave it to in change promised to\nwear it in his cap: I promised to strike him, if he\ndid: I met this man with my glove in his cap, and I\nhave been as good as my word.\n\nFLUELLEN:\nYour majesty hear now, saving your majesty's\nmanhood, what an arrant, rascally, beggarly, lousy\nknave it is: I hope your majesty is pear me\ntestimony and witness, and will avouchment, that\nthis is the glove of Alencon, that your majesty is\ngive me; in your conscience, now?\n\nKING HENRY V:\nGive me thy glove, soldier: look, here is the\nfellow of it.\n'Twas I, indeed, thou promised'st to strike;\nAnd thou hast given me most bitter terms.\n\nFLUELLEN:\nAn please your majesty, let his neck answer for it,\nif there is any martial law in the world.\n\nKING HENRY V:\nHow canst thou make me satisfaction?\n\nWILLIAMS:\nAll offences, my lord, come from the heart: never\ncame any from mine that might offend your majesty.\n\nKING HENRY V:\nIt was ourself thou didst abuse.\n\nWILLIAMS:\nYour majesty came not like yourself: you appeared to\nme but as a common man; witness the night, your\ngarments, your lowliness; and what your highness\nsuffered under that shape, I beseech you take it for\nyour own fault and not mine: for had you been as I\ntook you for, I made no offence; therefore, I\nbeseech your highness, pardon me.\n\nKING HENRY V:\nHere, uncle Exeter, fill this glove with crowns,\nAnd give it to this fellow. Keep it, fellow;\nAnd wear it for an honour in thy cap\nTill I do challenge it. Give him the crowns:\nAnd, captain, you must needs be friends with him.\n\nFLUELLEN:\nBy this day and this light, the fellow has mettle\nenough in his belly. Hold, there is twelve pence\nfor you; and I pray you to serve Got, and keep you\nout of prawls, and prabbles' and quarrels, and\ndissensions, and, I warrant you, it is the better for you.\n\nWILLIAMS:\nI will none of your money.\n\nFLUELLEN:\nIt is with a good will; I can tell you, it will\nserve you to mend your shoes: come, wherefore should\nyou be so pashful? your shoes is not so good: 'tis\na good silling, I warrant you, or I will change it.\n\nKING HENRY V:\nNow, herald, are the dead number'd?\n\nHerald:\nHere is the number of the slaughter'd French.\n\nKING HENRY V:\nWhat prisoners of good sort are taken, uncle?\n\nEXETER:\nCharles Duke of Orleans, nephew to the king;\nJohn Duke of Bourbon, and Lord Bouciqualt:\nOf other lords and barons, knights and squires,\nFull fifteen hundred, besides common men.\n\nKING HENRY V:\nThis note doth tell me of ten thousand French\nThat in the field lie slain: of princes, in this number,\nAnd nobles bearing banners, there lie dead\nOne hundred twenty six: added to these,\nOf knights, esquires, and gallant gentlemen,\nEight thousand and four hundred; of the which,\nFive hundred were but yesterday dubb'd knights:\nSo that, in these ten thousand they have lost,\nThere are but sixteen hundred mercenaries;\nThe rest are princes, barons, lords, knights, squires,\nAnd gentlemen of blood and quality.\nThe names of those their nobles that lie dead:\nCharles Delabreth, high constable of France;\nJaques of Chatillon, admiral of France;\nThe master of the cross-bows, Lord Rambures;\nGreat Master of France, the brave Sir Guichard Dolphin,\nJohn Duke of Alencon, Anthony Duke of Brabant,\nThe brother of the Duke of Burgundy,\nAnd Edward Duke of Bar: of lusty earls,\nGrandpre and Roussi, Fauconberg and Foix,\nBeaumont and Marle, Vaudemont and Lestrale.\nHere was a royal fellowship of death!\nWhere is the number of our English dead?\nEdward the Duke of York, the Earl of Suffolk,\nSir Richard Ketly, Davy Gam, esquire:\nNone else of name; and of all other men\nBut five and twenty. O God, thy arm was here;\nAnd not to us, but to thy arm alone,\nAscribe we all! When, without stratagem,\nBut in plain shock and even play of battle,\nWas ever known so great and little loss\nOn one part and on the other? Take it, God,\nFor it is none but thine!\n\nEXETER:\n'Tis wonderful!\n\nKING HENRY V:\nCome, go we in procession to the village.\nAnd be it death proclaimed through our host\nTo boast of this or take the praise from God\nWhich is his only.\n\nFLUELLEN:\nIs it not lawful, an please your majesty, to tell\nhow many is killed?\n\nKING HENRY V:\nYes, captain; but with this acknowledgement,\nThat God fought for us.\n\nFLUELLEN:\nYes, my conscience, he did us great good.\n\nKING HENRY V:\nDo we all holy rites;\nLet there be sung 'Non nobis' and 'Te Deum;'\nThe dead with charity enclosed in clay:\nAnd then to Calais; and to England then:\nWhere ne'er from France arrived more happy men.\n\nChorus:\nVouchsafe to those that have not read the story,\nThat I may prompt them: and of such as have,\nI humbly pray them to admit the excuse\nOf time, of numbers and due course of things,\nWhich cannot in their huge and proper life\nBe here presented. Now we bear the king\nToward Calais: grant him there; there seen,\nHeave him away upon your winged thoughts\nAthwart the sea. Behold, the English beach\nPales in the flood with men, with wives and boys,\nWhose shouts and claps out-voice the deep mouth'd sea,\nWhich like a mighty whiffler 'fore the king\nSeems to prepare his way: so let him land,\nAnd solemnly see him set on to London.\nSo swift a pace hath thought that even now\nYou may imagine him upon Blackheath;\nWhere that his lords desire him to have borne\nHis bruised helmet and his bended sword\nBefore him through the city: he forbids it,\nBeing free from vainness and self-glorious pride;\nGiving full trophy, signal and ostent\nQuite from himself to God. But now behold,\nIn the quick forge and working-house of thought,\nHow London doth pour out her citizens!\nThe mayor and all his brethren in best sort,\nLike to the senators of the antique Rome,\nWith the plebeians swarming at their heels,\nGo forth and fetch their conquering Caesar in:\nAs, by a lower but loving likelihood,\nWere now the general of our gracious empress,\nAs in good time he may, from Ireland coming,\nBringing rebellion broached on his sword,\nHow many would the peaceful city quit,\nTo welcome him! much more, and much more cause,\nDid they this Harry. Now in London place him;\nAs yet the lamentation of the French\nInvites the King of England's stay at home;\nThe emperor's coming in behalf of France,\nTo order peace between them; and omit\nAll the occurrences, whatever chanced,\nTill Harry's back-return again to France:\nThere must we bring him; and myself have play'd\nThe interim, by remembering you 'tis past.\nThen brook abridgment, and your eyes advance,\nAfter your thoughts, straight back again to France.\n\nGOWER:\nNay, that's right; but why wear you your leek today?\nSaint Davy's day is past.\n\nFLUELLEN:\nThere is occasions and causes why and wherefore in\nall things: I will tell you, asse my friend,\nCaptain Gower: the rascally, scald, beggarly,\nlousy, pragging knave, Pistol, which you and\nyourself and all the world know to be no petter\nthan a fellow, look you now, of no merits, he is\ncome to me and prings me pread and salt yesterday,\nlook you, and bid me eat my leek: it was in place\nwhere I could not breed no contention with him; but\nI will be so bold as to wear it in my cap till I see\nhim once again, and then I will tell him a little\npiece of my desires.\n\nGOWER:\nWhy, here he comes, swelling like a turkey-cock.\n\nFLUELLEN:\n'Tis no matter for his swellings nor his\nturkey-cocks. God pless you, Aunchient Pistol! you\nscurvy, lousy knave, God pless you!\n\nPISTOL:\nHa! art thou bedlam? dost thou thirst, base Trojan,\nTo have me fold up Parca's fatal web?\nHence! I am qualmish at the smell of leek.\n\nFLUELLEN:\nI peseech you heartily, scurvy, lousy knave, at my\ndesires, and my requests, and my petitions, to eat,\nlook you, this leek: because, look you, you do not\nlove it, nor your affections and your appetites and\nyour digestions doo's not agree with it, I would\ndesire you to eat it.\n\nPISTOL:\nNot for Cadwallader and all his goats.\n\nFLUELLEN:\nThere is one goat for you.\nWill you be so good, scauld knave, as eat it?\n\nPISTOL:\nBase Trojan, thou shalt die.\n\nFLUELLEN:\nYou say very true, scauld knave, when God's will is:\nI will desire you to live in the mean time, and eat\nyour victuals: come, there is sauce for it.\nYou called me yesterday mountain-squire; but I will\nmake you to-day a squire of low degree. I pray you,\nfall to: if you can mock a leek, you can eat a leek.\n\nGOWER:\nEnough, captain: you have astonished him.\n\nFLUELLEN:\nI say, I will make him eat some part of my leek, or\nI will peat his pate four days. Bite, I pray you; it\nis good for your green wound and your ploody coxcomb.\n\nPISTOL:\nMust I bite?\n\nFLUELLEN:\nYes, certainly, and out of doubt and out of question\ntoo, and ambiguities.\n\nPISTOL:\nBy this leek, I will most horribly revenge: I eat\nand eat, I swear--\n\nFLUELLEN:\nEat, I pray you: will you have some more sauce to\nyour leek? there is not enough leek to swear by.\n\nPISTOL:\nQuiet thy cudgel; thou dost see I eat.\n\nFLUELLEN:\nMuch good do you, scauld knave, heartily. Nay, pray\nyou, throw none away; the skin is good for your\nbroken coxcomb. When you take occasions to see leeks\nhereafter, I pray you, mock at 'em; that is all.\n\nPISTOL:\nGood.\n\nFLUELLEN:\nAy, leeks is good: hold you, there is a groat to\nheal your pate.\n\nPISTOL:\nMe a groat!\n\nFLUELLEN:\nYes, verily and in truth, you shall take it; or I\nhave another leek in my pocket, which you shall eat.\n\nPISTOL:\nI take thy groat in earnest of revenge.\n\nFLUELLEN:\nIf I owe you any thing, I will pay you in cudgels:\nyou shall be a woodmonger, and buy nothing of me but\ncudgels. God b' wi' you, and keep you, and heal your pate.\n\nPISTOL:\nAll hell shall stir for this.\n\nGOWER:\nGo, go; you are a counterfeit cowardly knave. Will\nyou mock at an ancient tradition, begun upon an\nhonourable respect, and worn as a memorable trophy of\npredeceased valour and dare not avouch in your deeds\nany of your words? I have seen you gleeking and\ngalling at this gentleman twice or thrice. You\nthought, because he could not speak English in the\nnative garb, he could not therefore handle an\nEnglish cudgel: you find it otherwise; and\nhenceforth let a Welsh correction teach you a good\nEnglish condition. Fare ye well.\n\nPISTOL:\nDoth Fortune play the huswife with me now?\nNews have I, that my Nell is dead i' the spital\nOf malady of France;\nAnd there my rendezvous is quite cut off.\nOld I do wax; and from my weary limbs\nHonour is cudgelled. Well, bawd I'll turn,\nAnd something lean to cutpurse of quick hand.\nTo England will I steal, and there I'll steal:\nAnd patches will I get unto these cudgell'd scars,\nAnd swear I got them in the Gallia wars.\n\nKING HENRY V:\nPeace to this meeting, wherefore we are met!\nUnto our brother France, and to our sister,\nHealth and fair time of day; joy and good wishes\nTo our most fair and princely cousin Katharine;\nAnd, as a branch and member of this royalty,\nBy whom this great assembly is contrived,\nWe do salute you, Duke of Burgundy;\nAnd, princes French, and peers, health to you all!\n\nKING OF FRANCE:\nRight joyous are we to behold your face,\nMost worthy brother England; fairly met:\nSo are you, princes English, every one.\n\nQUEEN ISABEL:\nSo happy be the issue, brother England,\nOf this good day and of this gracious meeting,\nAs we are now glad to behold your eyes;\nYour eyes, which hitherto have borne in them\nAgainst the French, that met them in their bent,\nThe fatal balls of murdering basilisks:\nThe venom of such looks, we fairly hope,\nHave lost their quality, and that this day\nShall change all griefs and quarrels into love.\n\nKING HENRY V:\nTo cry amen to that, thus we appear.\n\nQUEEN ISABEL:\nYou English princes all, I do salute you.\n\nBURGUNDY:\nMy duty to you both, on equal love,\nGreat Kings of France and England! That I have labour'd,\nWith all my wits, my pains and strong endeavours,\nTo bring your most imperial majesties\nUnto this bar and royal interview,\nYour mightiness on both parts best can witness.\nSince then my office hath so far prevail'd\nThat, face to face and royal eye to eye,\nYou have congreeted, let it not disgrace me,\nIf I demand, before this royal view,\nWhat rub or what impediment there is,\nWhy that the naked, poor and mangled Peace,\nDear nurse of arts and joyful births,\nShould not in this best garden of the world\nOur fertile France, put up her lovely visage?\nAlas, she hath from France too long been chased,\nAnd all her husbandry doth lie on heaps,\nCorrupting in its own fertility.\nHer vine, the merry cheerer of the heart,\nUnpruned dies; her hedges even-pleach'd,\nLike prisoners wildly overgrown with hair,\nPut forth disorder'd twigs; her fallow leas\nThe darnel, hemlock and rank fumitory\nDoth root upon, while that the coulter rusts\nThat should deracinate such savagery;\nThe even mead, that erst brought sweetly forth\nThe freckled cowslip, burnet and green clover,\nWanting the scythe, all uncorrected, rank,\nConceives by idleness and nothing teems\nBut hateful docks, rough thistles, kecksies, burs,\nLosing both beauty and utility.\nAnd as our vineyards, fallows, meads and hedges,\nDefective in their natures, grow to wildness,\nEven so our houses and ourselves and children\nHave lost, or do not learn for want of time,\nThe sciences that should become our country;\nBut grow like savages,--as soldiers will\nThat nothing do but meditate on blood,--\nTo swearing and stern looks, diffused attire\nAnd every thing that seems unnatural.\nWhich to reduce into our former favour\nYou are assembled: and my speech entreats\nThat I may know the let, why gentle Peace\nShould not expel these inconveniences\nAnd bless us with her former qualities.\n\nKING HENRY V:\nIf, Duke of Burgundy, you would the peace,\nWhose want gives growth to the imperfections\nWhich you have cited, you must buy that peace\nWith full accord to all our just demands;\nWhose tenors and particular effects\nYou have enscheduled briefly in your hands.\n\nBURGUNDY:\nThe king hath heard them; to the which as yet\nThere is no answer made.\n\nKING HENRY V:\nWell then the peace,\nWhich you before so urged, lies in his answer.\n\nKING OF FRANCE:\nI have but with a cursorary eye\nO'erglanced the articles: pleaseth your grace\nTo appoint some of your council presently\nTo sit with us once more, with better heed\nTo re-survey them, we will suddenly\nPass our accept and peremptory answer.\n\nKING HENRY V:\nBrother, we shall. Go, uncle Exeter,\nAnd brother Clarence, and you, brother Gloucester,\nWarwick and Huntingdon, go with the king;\nAnd take with you free power to ratify,\nAugment, or alter, as your wisdoms best\nShall see advantageable for our dignity,\nAny thing in or out of our demands,\nAnd we'll consign thereto. Will you, fair sister,\nGo with the princes, or stay here with us?\n\nQUEEN ISABEL:\nOur gracious brother, I will go with them:\nHaply a woman's voice may do some good,\nWhen articles too nicely urged be stood on.\n\nKING HENRY V:\nYet leave our cousin Katharine here with us:\nShe is our capital demand, comprised\nWithin the fore-rank of our articles.\n\nQUEEN ISABEL:\nShe hath good leave.\n\nKING HENRY V:\nFair Katharine, and most fair,\nWill you vouchsafe to teach a soldier terms\nSuch as will enter at a lady's ear\nAnd plead his love-suit to her gentle heart?\n\nKATHARINE:\nYour majesty shall mock at me; I cannot speak your England.\n\nKING HENRY V:\nO fair Katharine, if you will love me soundly with\nyour French heart, I will be glad to hear you\nconfess it brokenly with your English tongue. Do\nyou like me, Kate?\n\nKATHARINE:\nPardonnez-moi, I cannot tell vat is 'like me.'\n\nKING HENRY V:\nAn angel is like you, Kate, and you are like an angel.\n\nKATHARINE:\nQue dit-il? que je suis semblable a les anges?\n\nALICE:\nOui, vraiment, sauf votre grace, ainsi dit-il.\n\nKING HENRY V:\nI said so, dear Katharine; and I must not blush to\naffirm it.\n\nKATHARINE:\nO bon Dieu! les langues des hommes sont pleines de\ntromperies.\n\nKING HENRY V:\nWhat says she, fair one? that the tongues of men\nare full of deceits?\n\nALICE:\nOui, dat de tongues of de mans is be full of\ndeceits: dat is de princess.\n\nKING HENRY V:\nThe princess is the better Englishwoman. I' faith,\nKate, my wooing is fit for thy understanding: I am\nglad thou canst speak no better English; for, if\nthou couldst, thou wouldst find me such a plain king\nthat thou wouldst think I had sold my farm to buy my\ncrown. I know no ways to mince it in love, but\ndirectly to say 'I love you:' then if you urge me\nfarther than to say 'do you in faith?' I wear out\nmy suit. Give me your answer; i' faith, do: and so\nclap hands and a bargain: how say you, lady?\n\nKATHARINE:\nSauf votre honneur, me understand vell.\n\nKING HENRY V:\nMarry, if you would put me to verses or to dance for\nyour sake, Kate, why you undid me: for the one, I\nhave neither words nor measure, and for the other, I\nhave no strength in measure, yet a reasonable\nmeasure in strength. If I could win a lady at\nleap-frog, or by vaulting into my saddle with my\narmour on my back, under the correction of bragging\nbe it spoken. I should quickly leap into a wife.\nOr if I might buffet for my love, or bound my horse\nfor her favours, I could lay on like a butcher and\nsit like a jack-an-apes, never off. But, before God,\nKate, I cannot look greenly nor gasp out my\neloquence, nor I have no cunning in protestation;\nonly downright oaths, which I never use till urged,\nnor never break for urging. If thou canst love a\nfellow of this temper, Kate, whose face is not worth\nsun-burning, that never looks in his glass for love\nof any thing he sees there, let thine eye be thy\ncook. I speak to thee plain soldier: If thou canst\nlove me for this, take me: if not, to say to thee\nthat I shall die, is true; but for thy love, by the\nLord, no; yet I love thee too. And while thou\nlivest, dear Kate, take a fellow of plain and\nuncoined constancy; for he perforce must do thee\nright, because he hath not the gift to woo in other\nplaces: for these fellows of infinite tongue, that\ncan rhyme themselves into ladies' favours, they do\nalways reason themselves out again. What! a\nspeaker is but a prater; a rhyme is but a ballad. A\ngood leg will fall; a straight back will stoop; a\nblack beard will turn white; a curled pate will grow\nbald; a fair face will wither; a full eye will wax\nhollow: but a good heart, Kate, is the sun and the\nmoon; or, rather, the sun, and not the moon; for it\nshines bright and never changes, but keeps his\ncourse truly. If thou would have such a one, take\nme; and take me, take a soldier; take a soldier,\ntake a king. And what sayest thou then to my love?\nspeak, my fair, and fairly, I pray thee.\n\nKATHARINE:\nIs it possible dat I sould love de enemy of France?\n\nKING HENRY V:\nNo; it is not possible you should love the enemy of\nFrance, Kate: but, in loving me, you should love\nthe friend of France; for I love France so well that\nI will not part with a village of it; I will have it\nall mine: and, Kate, when France is mine and I am\nyours, then yours is France and you are mine.\n\nKATHARINE:\nI cannot tell vat is dat.\n\nKING HENRY V:\nNo, Kate? I will tell thee in French; which I am\nsure will hang upon my tongue like a new-married\nwife about her husband's neck, hardly to be shook\noff. Je quand sur le possession de France, et quand\nvous avez le possession de moi,--let me see, what\nthen? Saint Denis be my speed!--donc votre est\nFrance et vous etes mienne. It is as easy for me,\nKate, to conquer the kingdom as to speak so much\nmore French: I shall never move thee in French,\nunless it be to laugh at me.\n\nKATHARINE:\nSauf votre honneur, le Francois que vous parlez, il\nest meilleur que l'Anglois lequel je parle.\n\nKING HENRY V:\nNo, faith, is't not, Kate: but thy speaking of my\ntongue, and I thine, most truly-falsely, must needs\nbe granted to be much at one. But, Kate, dost thou\nunderstand thus much English, canst thou love me?\n\nKATHARINE:\nI cannot tell.\n\nKING HENRY V:\nCan any of your neighbours tell, Kate? I'll ask\nthem. Come, I know thou lovest me: and at night,\nwhen you come into your closet, you'll question this\ngentlewoman about me; and I know, Kate, you will to\nher dispraise those parts in me that you love with\nyour heart: but, good Kate, mock me mercifully; the\nrather, gentle princess, because I love thee\ncruelly. If ever thou beest mine, Kate, as I have a\nsaving faith within me tells me thou shalt, I get\nthee with scambling, and thou must therefore needs\nprove a good soldier-breeder: shall not thou and I,\nbetween Saint Denis and Saint George, compound a\nboy, half French, half English, that shall go to\nConstantinople and take the Turk by the beard?\nshall we not? what sayest thou, my fair\nflower-de-luce?\n\nKATHARINE:\nI do not know dat\n\nKING HENRY V:\nNo; 'tis hereafter to know, but now to promise: do\nbut now promise, Kate, you will endeavour for your\nFrench part of such a boy; and for my English moiety\ntake the word of a king and a bachelor. How answer\nyou, la plus belle Katharine du monde, mon tres cher\net devin deesse?\n\nKATHARINE:\nYour majestee ave fausse French enough to deceive de\nmost sage demoiselle dat is en France.\n\nKING HENRY V:\nNow, fie upon my false French! By mine honour, in\ntrue English, I love thee, Kate: by which honour I\ndare not swear thou lovest me; yet my blood begins to\nflatter me that thou dost, notwithstanding the poor\nand untempering effect of my visage. Now, beshrew\nmy father's ambition! he was thinking of civil wars\nwhen he got me: therefore was I created with a\nstubborn outside, with an aspect of iron, that, when\nI come to woo ladies, I fright them. But, in faith,\nKate, the elder I wax, the better I shall appear:\nmy comfort is, that old age, that ill layer up of\nbeauty, can do no more, spoil upon my face: thou\nhast me, if thou hast me, at the worst; and thou\nshalt wear me, if thou wear me, better and better:\nand therefore tell me, most fair Katharine, will you\nhave me? Put off your maiden blushes; avouch the\nthoughts of your heart with the looks of an empress;\ntake me by the hand, and say 'Harry of England I am\nthine:' which word thou shalt no sooner bless mine\near withal, but I will tell thee aloud 'England is\nthine, Ireland is thine, France is thine, and Harry\nPlantagenet is thine;' who though I speak it before\nhis face, if he be not fellow with the best king,\nthou shalt find the best king of good fellows.\nCome, your answer in broken music; for thy voice is\nmusic and thy English broken; therefore, queen of\nall, Katharine, break thy mind to me in broken\nEnglish; wilt thou have me?\n\nKATHARINE:\nDat is as it sall please de roi mon pere.\n\nKING HENRY V:\nNay, it will please him well, Kate it shall please\nhim, Kate.\n\nKATHARINE:\nDen it sall also content me.\n\nKING HENRY V:\nUpon that I kiss your hand, and I call you my queen.\n\nKATHARINE:\nLaissez, mon seigneur, laissez, laissez: ma foi, je\nne veux point que vous abaissiez votre grandeur en\nbaisant la main d'une de votre seigeurie indigne\nserviteur; excusez-moi, je vous supplie, mon\ntres-puissant seigneur.\n\nKING HENRY V:\nThen I will kiss your lips, Kate.\n\nKATHARINE:\nLes dames et demoiselles pour etre baisees devant\nleur noces, il n'est pas la coutume de France.\n\nKING HENRY V:\nMadam my interpreter, what says she?\n\nALICE:\nDat it is not be de fashion pour les ladies of\nFrance,--I cannot tell vat is baiser en Anglish.\n\nKING HENRY V:\nTo kiss.\n\nALICE:\nYour majesty entendre bettre que moi.\n\nKING HENRY V:\nIt is not a fashion for the maids in France to kiss\nbefore they are married, would she say?\n\nALICE:\nOui, vraiment.\n\nKING HENRY V:\nO Kate, nice customs curtsy to great kings. Dear\nKate, you and I cannot be confined within the weak\nlist of a country's fashion: we are the makers of\nmanners, Kate; and the liberty that follows our\nplaces stops the mouth of all find-faults; as I will\ndo yours, for upholding the nice fashion of your\ncountry in denying me a kiss: therefore, patiently\nand yielding.\nYou have witchcraft in your lips, Kate: there is\nmore eloquence in a sugar touch of them than in the\ntongues of the French council; and they should\nsooner persuade Harry of England than a general\npetition of monarchs. Here comes your father.\n\nBURGUNDY:\nGod save your majesty! my royal cousin, teach you\nour princess English?\n\nKING HENRY V:\nI would have her learn, my fair cousin, how\nperfectly I love her; and that is good English.\n\nBURGUNDY:\nIs she not apt?\n\nKING HENRY V:\nOur tongue is rough, coz, and my condition is not\nsmooth; so that, having neither the voice nor the\nheart of flattery about me, I cannot so conjure up\nthe spirit of love in her, that he will appear in\nhis true likeness.\n\nBURGUNDY:\nPardon the frankness of my mirth, if I answer you\nfor that. If you would conjure in her, you must\nmake a circle; if conjure up love in her in his true\nlikeness, he must appear naked and blind. Can you\nblame her then, being a maid yet rosed over with the\nvirgin crimson of modesty, if she deny the\nappearance of a naked blind boy in her naked seeing\nself? It were, my lord, a hard condition for a maid\nto consign to.\n\nKING HENRY V:\nYet they do wink and yield, as love is blind and enforces.\n\nBURGUNDY:\nThey are then excused, my lord, when they see not\nwhat they do.\n\nKING HENRY V:\nThen, good my lord, teach your cousin to consent winking.\n\nBURGUNDY:\nI will wink on her to consent, my lord, if you will\nteach her to know my meaning: for maids, well\nsummered and warm kept, are like flies at\nBartholomew-tide, blind, though they have their\neyes; and then they will endure handling, which\nbefore would not abide looking on.\n\nKING HENRY V:\nThis moral ties me over to time and a hot summer;\nand so I shall catch the fly, your cousin, in the\nlatter end and she must be blind too.\n\nBURGUNDY:\nAs love is, my lord, before it loves.\n\nKING HENRY V:\nIt is so: and you may, some of you, thank love for\nmy blindness, who cannot see many a fair French city\nfor one fair French maid that stands in my way.\n\nFRENCH KING:\nYes, my lord, you see them perspectively, the cities\nturned into a maid; for they are all girdled with\nmaiden walls that war hath never entered.\n\nKING HENRY V:\nShall Kate be my wife?\n\nFRENCH KING:\nSo please you.\n\nKING HENRY V:\nI am content; so the maiden cities you talk of may\nwait on her: so the maid that stood in the way for\nmy wish shall show me the way to my will.\n\nFRENCH KING:\nWe have consented to all terms of reason.\n\nKING HENRY V:\nIs't so, my lords of England?\n\nWESTMORELAND:\nThe king hath granted every article:\nHis daughter first, and then in sequel all,\nAccording to their firm proposed natures.\n\nEXETER:\nOnly he hath not yet subscribed this:\nWhere your majesty demands, that the King of France,\nhaving any occasion to write for matter of grant,\nshall name your highness in this form and with this\naddition in French, Notre trescher fils Henri, Roi\nd'Angleterre, Heritier de France; and thus in\nLatin, Praeclarissimus filius noster Henricus, Rex\nAngliae, et Haeres Franciae.\n\nFRENCH KING:\nNor this I have not, brother, so denied,\nBut your request shall make me let it pass.\n\nKING HENRY V:\nI pray you then, in love and dear alliance,\nLet that one article rank with the rest;\nAnd thereupon give me your daughter.\n\nFRENCH KING:\nTake her, fair son, and from her blood raise up\nIssue to me; that the contending kingdoms\nOf France and England, whose very shores look pale\nWith envy of each other's happiness,\nMay cease their hatred, and this dear conjunction\nPlant neighbourhood and Christian-like accord\nIn their sweet bosoms, that never war advance\nHis bleeding sword 'twixt England and fair France.\n\nALL:\nAmen!\n\nKING HENRY V:\nNow, welcome, Kate: and bear me witness all,\nThat here I kiss her as my sovereign queen.\n\nQUEEN ISABEL:\nGod, the best maker of all marriages,\nCombine your hearts in one, your realms in one!\nAs man and wife, being two, are one in love,\nSo be there 'twixt your kingdoms such a spousal,\nThat never may ill office, or fell jealousy,\nWhich troubles oft the bed of blessed marriage,\nThrust in between the paction of these kingdoms,\nTo make divorce of their incorporate league;\nThat English may as French, French Englishmen,\nReceive each other. God speak this Amen!\n\nALL:\nAmen!\n\nKING HENRY V:\nPrepare we for our marriage--on which day,\nMy Lord of Burgundy, we'll take your oath,\nAnd all the peers', for surety of our leagues.\nThen shall I swear to Kate, and you to me;\nAnd may our oaths well kept and prosperous be!\n\nChorus:\nThus far, with rough and all-unable pen,\nOur bending author hath pursued the story,\nIn little room confining mighty men,\nMangling by starts the full course of their glory.\nSmall time, but in that small most greatly lived\nThis star of England: Fortune made his sword;\nBy which the world's best garden be achieved,\nAnd of it left his son imperial lord.\nHenry the Sixth, in infant bands crown'd King\nOf France and England, did this king succeed;\nWhose state so many had the managing,\nThat they lost France and made his England bleed:\nWhich oft our stage hath shown; and, for their sake,\nIn your fair minds let this acceptance take.\n\nRUMOUR:\nOpen your ears; for which of you will stop\nThe vent of hearing when loud Rumour speaks?\nI, from the orient to the drooping west,\nMaking the wind my post-horse, still unfold\nThe acts commenced on this ball of earth:\nUpon my tongues continual slanders ride,\nThe which in every language I pronounce,\nStuffing the ears of men with false reports.\nI speak of peace, while covert enmity\nUnder the smile of safety wounds the world:\nAnd who but Rumour, who but only I,\nMake fearful musters and prepared defence,\nWhiles the big year, swoln with some other grief,\nIs thought with child by the stern tyrant war,\nAnd no such matter? Rumour is a pipe\nBlown by surmises, jealousies, conjectures\nAnd of so easy and so plain a stop\nThat the blunt monster with uncounted heads,\nThe still-discordant wavering multitude,\nCan play upon it. But what need I thus\nMy well-known body to anatomize\nAmong my household? Why is Rumour here?\nI run before King Harry's victory;\nWho in a bloody field by Shrewsbury\nHath beaten down young Hotspur and his troops,\nQuenching the flame of bold rebellion\nEven with the rebel's blood. But what mean I\nTo speak so true at first? my office is\nTo noise abroad that Harry Monmouth fell\nUnder the wrath of noble Hotspur's sword,\nAnd that the king before the Douglas' rage\nStoop'd his anointed head as low as death.\nThis have I rumour'd through the peasant towns\nBetween that royal field of Shrewsbury\nAnd this worm-eaten hold of ragged stone,\nWhere Hotspur's father, old Northumberland,\nLies crafty-sick: the posts come tiring on,\nAnd not a man of them brings other news\nThan they have learn'd of me: from Rumour's tongues\nThey bring smooth comforts false, worse than\ntrue wrongs.\n\nLORD BARDOLPH:\nWho keeps the gate here, ho?\nWhere is the earl?\n\nPorter:\nWhat shall I say you are?\n\nLORD BARDOLPH:\nTell thou the earl\nThat the Lord Bardolph doth attend him here.\n\nPorter:\nHis lordship is walk'd forth into the orchard;\nPlease it your honour, knock but at the gate,\nAnd he himself wilt answer.\n\nLORD BARDOLPH:\nHere comes the earl.\n\nNORTHUMBERLAND:\nWhat news, Lord Bardolph? every minute now\nShould be the father of some stratagem:\nThe times are wild: contention, like a horse\nFull of high feeding, madly hath broke loose\nAnd bears down all before him.\n\nLORD BARDOLPH:\nNoble earl,\nI bring you certain news from Shrewsbury.\n\nNORTHUMBERLAND:\nGood, an God will!\n\nLORD BARDOLPH:\nAs good as heart can wish:\nThe king is almost wounded to the death;\nAnd, in the fortune of my lord your son,\nPrince Harry slain outright; and both the Blunts\nKill'd by the hand of Douglas; young Prince John\nAnd Westmoreland and Stafford fled the field;\nAnd Harry Monmouth's brawn, the hulk Sir John,\nIs prisoner to your son: O, such a day,\nSo fought, so follow'd and so fairly won,\nCame not till now to dignify the times,\nSince Caesar's fortunes!\n\nNORTHUMBERLAND:\nHow is this derived?\nSaw you the field? came you from Shrewsbury?\n\nLORD BARDOLPH:\nI spake with one, my lord, that came from thence,\nA gentleman well bred and of good name,\nThat freely render'd me these news for true.\n\nNORTHUMBERLAND:\nHere comes my servant Travers, whom I sent\nOn Tuesday last to listen after news.\n\nLORD BARDOLPH:\nMy lord, I over-rode him on the way;\nAnd he is furnish'd with no certainties\nMore than he haply may retail from me.\n\nNORTHUMBERLAND:\nNow, Travers, what good tidings comes with you?\n\nTRAVERS:\nMy lord, Sir John Umfrevile turn'd me back\nWith joyful tidings; and, being better horsed,\nOut-rode me. After him came spurring hard\nA gentleman, almost forspent with speed,\nThat stopp'd by me to breathe his bloodied horse.\nHe ask'd the way to Chester; and of him\nI did demand what news from Shrewsbury:\nHe told me that rebellion had bad luck\nAnd that young Harry Percy's spur was cold.\nWith that, he gave his able horse the head,\nAnd bending forward struck his armed heels\nAgainst the panting sides of his poor jade\nUp to the rowel-head, and starting so\nHe seem'd in running to devour the way,\nStaying no longer question.\n\nNORTHUMBERLAND:\nHa! Again:\nSaid he young Harry Percy's spur was cold?\nOf Hotspur Coldspur? that rebellion\nHad met ill luck?\n\nLORD BARDOLPH:\nMy lord, I'll tell you what;\nIf my young lord your son have not the day,\nUpon mine honour, for a silken point\nI'll give my barony: never talk of it.\n\nNORTHUMBERLAND:\nWhy should that gentleman that rode by Travers\nGive then such instances of loss?\n\nLORD BARDOLPH:\nWho, he?\nHe was some hilding fellow that had stolen\nThe horse he rode on, and, upon my life,\nSpoke at a venture. Look, here comes more news.\n\nNORTHUMBERLAND:\nYea, this man's brow, like to a title-leaf,\nForetells the nature of a tragic volume:\nSo looks the strand whereon the imperious flood\nHath left a witness'd usurpation.\nSay, Morton, didst thou come from Shrewsbury?\n\nMORTON:\nI ran from Shrewsbury, my noble lord;\nWhere hateful death put on his ugliest mask\nTo fright our party.\n\nNORTHUMBERLAND:\nHow doth my son and brother?\nThou tremblest; and the whiteness in thy cheek\nIs apter than thy tongue to tell thy errand.\nEven such a man, so faint, so spiritless,\nSo dull, so dead in look, so woe-begone,\nDrew Priam's curtain in the dead of night,\nAnd would have told him half his Troy was burnt;\nBut Priam found the fire ere he his tongue,\nAnd I my Percy's death ere thou report'st it.\nThis thou wouldst say, 'Your son did thus and thus;\nYour brother thus: so fought the noble Douglas:'\nStopping my greedy ear with their bold deeds:\nBut in the end, to stop my ear indeed,\nThou hast a sigh to blow away this praise,\nEnding with 'Brother, son, and all are dead.'\n\nMORTON:\nDouglas is living, and your brother, yet;\nBut, for my lord your son--\n\nNORTHUMBERLAND:\nWhy, he is dead.\nSee what a ready tongue suspicion hath!\nHe that but fears the thing he would not know\nHath by instinct knowledge from others' eyes\nThat what he fear'd is chanced. Yet speak, Morton;\nTell thou an earl his divination lies,\nAnd I will take it as a sweet disgrace\nAnd make thee rich for doing me such wrong.\n\nMORTON:\nYou are too great to be by me gainsaid:\nYour spirit is too true, your fears too certain.\n\nNORTHUMBERLAND:\nYet, for all this, say not that Percy's dead.\nI see a strange confession in thine eye:\nThou shakest thy head and hold'st it fear or sin\nTo speak a truth. If he be slain, say so;\nThe tongue offends not that reports his death:\nAnd he doth sin that doth belie the dead,\nNot he which says the dead is not alive.\nYet the first bringer of unwelcome news\nHath but a losing office, and his tongue\nSounds ever after as a sullen bell,\nRemember'd tolling a departing friend.\n\nLORD BARDOLPH:\nI cannot think, my lord, your son is dead.\n\nMORTON:\nI am sorry I should force you to believe\nThat which I would to God I had not seen;\nBut these mine eyes saw him in bloody state,\nRendering faint quittance, wearied and out-breathed,\nTo Harry Monmouth; whose swift wrath beat down\nThe never-daunted Percy to the earth,\nFrom whence with life he never more sprung up.\nIn few, his death, whose spirit lent a fire\nEven to the dullest peasant in his camp,\nBeing bruited once, took fire and heat away\nFrom the best temper'd courage in his troops;\nFor from his metal was his party steel'd;\nWhich once in him abated, all the rest\nTurn'd on themselves, like dull and heavy lead:\nAnd as the thing that's heavy in itself,\nUpon enforcement flies with greatest speed,\nSo did our men, heavy in Hotspur's loss,\nLend to this weight such lightness with their fear\nThat arrows fled not swifter toward their aim\nThan did our soldiers, aiming at their safety,\nFly from the field. Then was the noble Worcester\nToo soon ta'en prisoner; and that furious Scot,\nThe bloody Douglas, whose well-labouring sword\nHad three times slain the appearance of the king,\n'Gan vail his stomach and did grace the shame\nOf those that turn'd their backs, and in his flight,\nStumbling in fear, was took. The sum of all\nIs that the king hath won, and hath sent out\nA speedy power to encounter you, my lord,\nUnder the conduct of young Lancaster\nAnd Westmoreland. This is the news at full.\n\nNORTHUMBERLAND:\nFor this I shall have time enough to mourn.\nIn poison there is physic; and these news,\nHaving been well, that would have made me sick,\nBeing sick, have in some measure made me well:\nAnd as the wretch, whose fever-weaken'd joints,\nLike strengthless hinges, buckle under life,\nImpatient of his fit, breaks like a fire\nOut of his keeper's arms, even so my limbs,\nWeaken'd with grief, being now enraged with grief,\nAre thrice themselves. Hence, therefore, thou nice crutch!\nA scaly gauntlet now with joints of steel\nMust glove this hand: and hence, thou sickly quoif!\nThou art a guard too wanton for the head\nWhich princes, flesh'd with conquest, aim to hit.\nNow bind my brows with iron; and approach\nThe ragged'st hour that time and spite dare bring\nTo frown upon the enraged Northumberland!\nLet heaven kiss earth! now let not Nature's hand\nKeep the wild flood confined! let order die!\nAnd let this world no longer be a stage\nTo feed contention in a lingering act;\nBut let one spirit of the first-born Cain\nReign in all bosoms, that, each heart being set\nOn bloody courses, the rude scene may end,\nAnd darkness be the burier of the dead!\n\nTRAVERS:\nThis strained passion doth you wrong, my lord.\n\nLORD BARDOLPH:\nSweet earl, divorce not wisdom from your honour.\n\nMORTON:\nThe lives of all your loving complices\nLean on your health; the which, if you give o'er\nTo stormy passion, must perforce decay.\nYou cast the event of war, my noble lord,\nAnd summ'd the account of chance, before you said\n'Let us make head.' It was your presurmise,\nThat, in the dole of blows, your son might drop:\nYou knew he walk'd o'er perils, on an edge,\nMore likely to fall in than to get o'er;\nYou were advised his flesh was capable\nOf wounds and scars and that his forward spirit\nWould lift him where most trade of danger ranged:\nYet did you say 'Go forth;' and none of this,\nThough strongly apprehended, could restrain\nThe stiff-borne action: what hath then befallen,\nOr what hath this bold enterprise brought forth,\nMore than that being which was like to be?\n\nLORD BARDOLPH:\nWe all that are engaged to this loss\nKnew that we ventured on such dangerous seas\nThat if we wrought our life 'twas ten to one;\nAnd yet we ventured, for the gain proposed\nChoked the respect of likely peril fear'd;\nAnd since we are o'erset, venture again.\nCome, we will all put forth, body and goods.\n\nMORTON:\n'Tis more than time: and, my most noble lord,\nI hear for certain, and do speak the truth,\nThe gentle Archbishop of York is up\nWith well-appointed powers: he is a man\nWho with a double surety binds his followers.\nMy lord your son had only but the corpse,\nBut shadows and the shows of men, to fight;\nFor that same word, rebellion, did divide\nThe action of their bodies from their souls;\nAnd they did fight with queasiness, constrain'd,\nAs men drink potions, that their weapons only\nSeem'd on our side; but, for their spirits and souls,\nThis word, rebellion, it had froze them up,\nAs fish are in a pond. But now the bishop\nTurns insurrection to religion:\nSupposed sincere and holy in his thoughts,\nHe's followed both with body and with mind;\nAnd doth enlarge his rising with the blood\nOf fair King Richard, scraped from Pomfret stones;\nDerives from heaven his quarrel and his cause;\nTells them he doth bestride a bleeding land,\nGasping for life under great Bolingbroke;\nAnd more and less do flock to follow him.\n\nNORTHUMBERLAND:\nI knew of this before; but, to speak truth,\nThis present grief had wiped it from my mind.\nGo in with me; and counsel every man\nThe aptest way for safety and revenge:\nGet posts and letters, and make friends with speed:\nNever so few, and never yet more need.\n\nFALSTAFF:\nSirrah, you giant, what says the doctor to my water?\n\nPage:\nHe said, sir, the water itself was a good healthy\nwater; but, for the party that owed it, he might\nhave more diseases than he knew for.\n\nFALSTAFF:\nMen of all sorts take a pride to gird at me: the\nbrain of this foolish-compounded clay, man, is not\nable to invent anything that tends to laughter, more\nthan I invent or is invented on me: I am not only\nwitty in myself, but the cause that wit is in other\nmen. I do here walk before thee like a sow that\nhath overwhelmed all her litter but one. If the\nprince put thee into my service for any other reason\nthan to set me off, why then I have no judgment.\nThou whoreson mandrake, thou art fitter to be worn\nin my cap than to wait at my heels. I was never\nmanned with an agate till now: but I will inset you\nneither in gold nor silver, but in vile apparel, and\nsend you back again to your master, for a jewel,--\nthe juvenal, the prince your master, whose chin is\nnot yet fledged. I will sooner have a beard grow in\nthe palm of my hand than he shall get one on his\ncheek; and yet he will not stick to say his face is\na face-royal: God may finish it when he will, 'tis\nnot a hair amiss yet: he may keep it still at a\nface-royal, for a barber shall never earn sixpence\nout of it; and yet he'll be crowing as if he had\nwrit man ever since his father was a bachelor. He\nmay keep his own grace, but he's almost out of mine,\nI can assure him. What said Master Dombledon about\nthe satin for my short cloak and my slops?\n\nPage:\nHe said, sir, you should procure him better\nassurance than Bardolph: he would not take his\nband and yours; he liked not the security.\n\nFALSTAFF:\nLet him be damned, like the glutton! pray God his\ntongue be hotter! A whoreson Achitophel! a rascally\nyea-forsooth knave! to bear a gentleman in hand,\nand then stand upon security! The whoreson\nsmooth-pates do now wear nothing but high shoes, and\nbunches of keys at their girdles; and if a man is\nthrough with them in honest taking up, then they\nmust stand upon security. I had as lief they would\nput ratsbane in my mouth as offer to stop it with\nsecurity. I looked a' should have sent me two and\ntwenty yards of satin, as I am a true knight, and he\nsends me security. Well, he may sleep in security;\nfor he hath the horn of abundance, and the lightness\nof his wife shines through it: and yet cannot he\nsee, though he have his own lanthorn to light him.\nWhere's Bardolph?\n\nPage:\nHe's gone into Smithfield to buy your worship a horse.\n\nFALSTAFF:\nI bought him in Paul's, and he'll buy me a horse in\nSmithfield: an I could get me but a wife in the\nstews, I were manned, horsed, and wived.\n\nPage:\nSir, here comes the nobleman that committed the\nPrince for striking him about Bardolph.\n\nFALSTAFF:\nWait, close; I will not see him.\n\nLord Chief-Justice:\nWhat's he that goes there?\n\nServant:\nFalstaff, an't please your lordship.\n\nLord Chief-Justice:\nHe that was in question for the robbery?\n\nServant:\nHe, my lord: but he hath since done good service at\nShrewsbury; and, as I hear, is now going with some\ncharge to the Lord John of Lancaster.\n\nLord Chief-Justice:\nWhat, to York? Call him back again.\n\nServant:\nSir John Falstaff!\n\nFALSTAFF:\nBoy, tell him I am deaf.\n\nPage:\nYou must speak louder; my master is deaf.\n\nLord Chief-Justice:\nI am sure he is, to the hearing of any thing good.\nGo, pluck him by the elbow; I must speak with him.\n\nServant:\nSir John!\n\nFALSTAFF:\nWhat! a young knave, and begging! Is there not\nwars? is there not employment? doth not the king\nlack subjects? do not the rebels need soldiers?\nThough it be a shame to be on any side but one, it\nis worse shame to beg than to be on the worst side,\nwere it worse than the name of rebellion can tell\nhow to make it.\n\nServant:\nYou mistake me, sir.\n\nFALSTAFF:\nWhy, sir, did I say you were an honest man? setting\nmy knighthood and my soldiership aside, I had lied\nin my throat, if I had said so.\n\nServant:\nI pray you, sir, then set your knighthood and our\nsoldiership aside; and give me leave to tell you,\nyou lie in your throat, if you say I am any other\nthan an honest man.\n\nFALSTAFF:\nI give thee leave to tell me so! I lay aside that\nwhich grows to me! if thou gettest any leave of me,\nhang me; if thou takest leave, thou wert better be\nhanged. You hunt counter: hence! avaunt!\n\nServant:\nSir, my lord would speak with you.\n\nLord Chief-Justice:\nSir John Falstaff, a word with you.\n\nFALSTAFF:\nMy good lord! God give your lordship good time of\nday. I am glad to see your lordship abroad: I heard\nsay your lordship was sick: I hope your lordship\ngoes abroad by advice. Your lordship, though not\nclean past your youth, hath yet some smack of age in\nyou, some relish of the saltness of time; and I must\nhumbly beseech your lordship to have a reverent care\nof your health.\n\nLord Chief-Justice:\nSir John, I sent for you before your expedition to\nShrewsbury.\n\nFALSTAFF:\nAn't please your lordship, I hear his majesty is\nreturned with some discomfort from Wales.\n\nLord Chief-Justice:\nI talk not of his majesty: you would not come when\nI sent for you.\n\nFALSTAFF:\nAnd I hear, moreover, his highness is fallen into\nthis same whoreson apoplexy.\n\nLord Chief-Justice:\nWell, God mend him! I pray you, let me speak with\nyou.\n\nFALSTAFF:\nThis apoplexy is, as I take it, a kind of lethargy,\nan't please your lordship; a kind of sleeping in the\nblood, a whoreson tingling.\n\nLord Chief-Justice:\nWhat tell you me of it? be it as it is.\n\nFALSTAFF:\nIt hath its original from much grief, from study and\nperturbation of the brain: I have read the cause of\nhis effects in Galen: it is a kind of deafness.\n\nLord Chief-Justice:\nI think you are fallen into the disease; for you\nhear not what I say to you.\n\nFALSTAFF:\nVery well, my lord, very well: rather, an't please\nyou, it is the disease of not listening, the malady\nof not marking, that I am troubled withal.\n\nLord Chief-Justice:\nTo punish you by the heels would amend the\nattention of your ears; and I care not if I do\nbecome your physician.\n\nFALSTAFF:\nI am as poor as Job, my lord, but not so patient:\nyour lordship may minister the potion of\nimprisonment to me in respect of poverty; but how\nshould I be your patient to follow your\nprescriptions, the wise may make some dram of a\nscruple, or indeed a scruple itself.\n\nLord Chief-Justice:\nI sent for you, when there were matters against you\nfor your life, to come speak with me.\n\nFALSTAFF:\nAs I was then advised by my learned counsel in the\nlaws of this land-service, I did not come.\n\nLord Chief-Justice:\nWell, the truth is, Sir John, you live in great infamy.\n\nFALSTAFF:\nHe that buckles him in my belt cannot live in less.\n\nLord Chief-Justice:\nYour means are very slender, and your waste is great.\n\nFALSTAFF:\nI would it were otherwise; I would my means were\ngreater, and my waist slenderer.\n\nLord Chief-Justice:\nYou have misled the youthful prince.\n\nFALSTAFF:\nThe young prince hath misled me: I am the fellow\nwith the great belly, and he my dog.\n\nLord Chief-Justice:\nWell, I am loath to gall a new-healed wound: your\nday's service at Shrewsbury hath a little gilded\nover your night's exploit on Gad's-hill: you may\nthank the unquiet time for your quiet o'er-posting\nthat action.\n\nFALSTAFF:\nMy lord?\n\nLord Chief-Justice:\nBut since all is well, keep it so: wake not a\nsleeping wolf.\n\nFALSTAFF:\nTo wake a wolf is as bad as to smell a fox.\n\nLord Chief-Justice:\nWhat! you are as a candle, the better part burnt\nout.\n\nFALSTAFF:\nA wassail candle, my lord, all tallow: if I did say\nof wax, my growth would approve the truth.\n\nLord Chief-Justice:\nThere is not a white hair on your face but should\nhave his effect of gravity.\n\nFALSTAFF:\nHis effect of gravy, gravy, gravy.\n\nLord Chief-Justice:\nYou follow the young prince up and down, like his\nill angel.\n\nFALSTAFF:\nNot so, my lord; your ill angel is light; but I hope\nhe that looks upon me will take me without weighing:\nand yet, in some respects, I grant, I cannot go: I\ncannot tell. Virtue is of so little regard in these\ncostermonger times that true valour is turned\nbear-herd: pregnancy is made a tapster, and hath\nhis quick wit wasted in giving reckonings: all the\nother gifts appertinent to man, as the malice of\nthis age shapes them, are not worth a gooseberry.\nYou that are old consider not the capacities of us\nthat are young; you do measure the heat of our\nlivers with the bitterness of your galls: and we\nthat are in the vaward of our youth, I must confess,\nare wags too.\n\nLord Chief-Justice:\nDo you set down your name in the scroll of youth,\nthat are written down old with all the characters of\nage? Have you not a moist eye? a dry hand? a\nyellow cheek? a white beard? a decreasing leg? an\nincreasing belly? is not your voice broken? your\nwind short? your chin double? your wit single? and\nevery part about you blasted with antiquity? and\nwill you yet call yourself young? Fie, fie, fie, Sir John!\n\nFALSTAFF:\nMy lord, I was born about three of the clock in the\nafternoon, with a white head and something a round\nbelly. For my voice, I have lost it with halloing\nand singing of anthems. To approve my youth\nfurther, I will not: the truth is, I am only old in\njudgment and understanding; and he that will caper\nwith me for a thousand marks, let him lend me the\nmoney, and have at him! For the box of the ear that\nthe prince gave you, he gave it like a rude prince,\nand you took it like a sensible lord. I have\nchequed him for it, and the young lion repents;\nmarry, not in ashes and sackcloth, but in new silk\nand old sack.\n\nLord Chief-Justice:\nWell, God send the prince a better companion!\n\nFALSTAFF:\nGod send the companion a better prince! I cannot\nrid my hands of him.\n\nLord Chief-Justice:\nWell, the king hath severed you and Prince Harry: I\nhear you are going with Lord John of Lancaster\nagainst the Archbishop and the Earl of\nNorthumberland.\n\nFALSTAFF:\nYea; I thank your pretty sweet wit for it. But look\nyou pray, all you that kiss my lady Peace at home,\nthat our armies join not in a hot day; for, by the\nLord, I take but two shirts out with me, and I mean\nnot to sweat extraordinarily: if it be a hot day,\nand I brandish any thing but a bottle, I would I\nmight never spit white again. There is not a\ndangerous action can peep out his head but I am\nthrust upon it: well, I cannot last ever: but it\nwas alway yet the trick of our English nation, if\nthey have a good thing, to make it too common. If\nye will needs say I am an old man, you should give\nme rest. I would to God my name were not so\nterrible to the enemy as it is: I were better to be\neaten to death with a rust than to be scoured to\nnothing with perpetual motion.\n\nLord Chief-Justice:\nWell, be honest, be honest; and God bless your\nexpedition!\n\nFALSTAFF:\nWill your lordship lend me a thousand pound to\nfurnish me forth?\n\nLord Chief-Justice:\nNot a penny, not a penny; you are too impatient to\nbear crosses. Fare you well: commend me to my\ncousin Westmoreland.\n\nFALSTAFF:\nIf I do, fillip me with a three-man beetle. A man\ncan no more separate age and covetousness than a'\ncan part young limbs and lechery: but the gout\ngalls the one, and the pox pinches the other; and\nso both the degrees prevent my curses. Boy!\n\nPage:\nSir?\n\nFALSTAFF:\nWhat money is in my purse?\n\nPage:\nSeven groats and two pence.\n\nFALSTAFF:\nI can get no remedy against this consumption of the\npurse: borrowing only lingers and lingers it out,\nbut the disease is incurable. Go bear this letter\nto my Lord of Lancaster; this to the prince; this\nto the Earl of Westmoreland; and this to old\nMistress Ursula, whom I have weekly sworn to marry\nsince I perceived the first white hair on my chin.\nAbout it: you know where to find me.\nA pox of this gout! or, a gout of this pox! for\nthe one or the other plays the rogue with my great\ntoe. 'Tis no matter if I do halt; I have the wars\nfor my colour, and my pension shall seem the more\nreasonable. A good wit will make use of any thing:\nI will turn diseases to commodity.\n\nARCHBISHOP OF YORK:\nThus have you heard our cause and known our means;\nAnd, my most noble friends, I pray you all,\nSpeak plainly your opinions of our hopes:\nAnd first, lord marshal, what say you to it?\n\nMOWBRAY:\nI well allow the occasion of our arms;\nBut gladly would be better satisfied\nHow in our means we should advance ourselves\nTo look with forehead bold and big enough\nUpon the power and puissance of the king.\n\nHASTINGS:\nOur present musters grow upon the file\nTo five and twenty thousand men of choice;\nAnd our supplies live largely in the hope\nOf great Northumberland, whose bosom burns\nWith an incensed fire of injuries.\n\nLORD BARDOLPH:\nThe question then, Lord Hastings, standeth thus;\nWhether our present five and twenty thousand\nMay hold up head without Northumberland?\n\nHASTINGS:\nWith him, we may.\n\nLORD BARDOLPH:\nYea, marry, there's the point:\nBut if without him we be thought too feeble,\nMy judgment is, we should not step too far\nTill we had his assistance by the hand;\nFor in a theme so bloody-faced as this\nConjecture, expectation, and surmise\nOf aids incertain should not be admitted.\n\nARCHBISHOP OF YORK:\n'Tis very true, Lord Bardolph; for indeed\nIt was young Hotspur's case at Shrewsbury.\n\nLORD BARDOLPH:\nIt was, my lord; who lined himself with hope,\nEating the air on promise of supply,\nFlattering himself in project of a power\nMuch smaller than the smallest of his thoughts:\nAnd so, with great imagination\nProper to madmen, led his powers to death\nAnd winking leap'd into destruction.\n\nHASTINGS:\nBut, by your leave, it never yet did hurt\nTo lay down likelihoods and forms of hope.\n\nLORD BARDOLPH:\nYes, if this present quality of war,\nIndeed the instant action: a cause on foot\nLives so in hope as in an early spring\nWe see the appearing buds; which to prove fruit,\nHope gives not so much warrant as despair\nThat frosts will bite them. When we mean to build,\nWe first survey the plot, then draw the model;\nAnd when we see the figure of the house,\nThen must we rate the cost of the erection;\nWhich if we find outweighs ability,\nWhat do we then but draw anew the model\nIn fewer offices, or at last desist\nTo build at all? Much more, in this great work,\nWhich is almost to pluck a kingdom down\nAnd set another up, should we survey\nThe plot of situation and the model,\nConsent upon a sure foundation,\nQuestion surveyors, know our own estate,\nHow able such a work to undergo,\nTo weigh against his opposite; or else\nWe fortify in paper and in figures,\nUsing the names of men instead of men:\nLike one that draws the model of a house\nBeyond his power to build it; who, half through,\nGives o'er and leaves his part-created cost\nA naked subject to the weeping clouds\nAnd waste for churlish winter's tyranny.\n\nHASTINGS:\nGrant that our hopes, yet likely of fair birth,\nShould be still-born, and that we now possess'd\nThe utmost man of expectation,\nI think we are a body strong enough,\nEven as we are, to equal with the king.\n\nLORD BARDOLPH:\nWhat, is the king but five and twenty thousand?\n\nHASTINGS:\nTo us no more; nay, not so much, Lord Bardolph.\nFor his divisions, as the times do brawl,\nAre in three heads: one power against the French,\nAnd one against Glendower; perforce a third\nMust take up us: so is the unfirm king\nIn three divided; and his coffers sound\nWith hollow poverty and emptiness.\n\nARCHBISHOP OF YORK:\nThat he should draw his several strengths together\nAnd come against us in full puissance,\nNeed not be dreaded.\n\nHASTINGS:\nIf he should do so,\nHe leaves his back unarm'd, the French and Welsh\nBaying him at the heels: never fear that.\n\nLORD BARDOLPH:\nWho is it like should lead his forces hither?\n\nHASTINGS:\nThe Duke of Lancaster and Westmoreland;\nAgainst the Welsh, himself and Harry Monmouth:\nBut who is substituted 'gainst the French,\nI have no certain notice.\n\nARCHBISHOP OF YORK:\nLet us on,\nAnd publish the occasion of our arms.\nThe commonwealth is sick of their own choice;\nTheir over-greedy love hath surfeited:\nAn habitation giddy and unsure\nHath he that buildeth on the vulgar heart.\nO thou fond many, with what loud applause\nDidst thou beat heaven with blessing Bolingbroke,\nBefore he was what thou wouldst have him be!\nAnd being now trimm'd in thine own desires,\nThou, beastly feeder, art so full of him,\nThat thou provokest thyself to cast him up.\nSo, so, thou common dog, didst thou disgorge\nThy glutton bosom of the royal Richard;\nAnd now thou wouldst eat thy dead vomit up,\nAnd howl'st to find it. What trust is in\nthese times?\nThey that, when Richard lived, would have him die,\nAre now become enamour'd on his grave:\nThou, that threw'st dust upon his goodly head\nWhen through proud London he came sighing on\nAfter the admired heels of Bolingbroke,\nCriest now 'O earth, yield us that king again,\nAnd take thou this!' O thoughts of men accursed!\nPast and to come seems best; things present worst.\n\nMOWBRAY:\nShall we go draw our numbers and set on?\n\nHASTINGS:\nWe are time's subjects, and time bids be gone.\n\nMISTRESS QUICKLY:\nMaster Fang, have you entered the action?\n\nFANG:\nIt is entered.\n\nMISTRESS QUICKLY:\nWhere's your yeoman? Is't a lusty yeoman?\nWill a' stand to 't?\n\nFANG:\nSirrah, where's Snare?\n\nMISTRESS QUICKLY:\nO Lord, ay! good Master Snare.\n\nSNARE:\nHere, here.\n\nFANG:\nSnare, we must arrest Sir John Falstaff.\n\nMISTRESS QUICKLY:\nYea, good Master Snare; I have entered him\nand all.\n\nSNARE:\nIt may chance cost some of us our lives, for\nhe will stab.\n\nMISTRESS QUICKLY:\nAlas the day! take heed of him; he stabbed\nme in mine own house, and that most beastly: in good faith, he\ncares not what mischief he does. If his weapon be\nout: he will foin like any devil; he will spare neither\nman, woman, nor child.\n\nFANG:\nIf I can close with him, I care not for his\nthrust.\n\nMISTRESS QUICKLY:\nNo, nor I neither: I'll be at your elbow.\n\nFANG:\nAn I but fist him once; an a' come but\nwithin my vice,--\n\nMISTRESS QUICKLY:\nI am undone by his going; I warrant you,\nhe's an infinitive thing upon my score. Good Master\nFang, hold him sure: good Master Snare, let him\nnot 'scape. A' comes continuantly to Pie-corner\n--saving your manhoods--to buy a saddle; and he is\nindited to dinner to the Lubber's-head in Lumbert\nstreet, to Master Smooth's the silkman: I pray ye,\nsince my exion is entered and my case so openly\nknown to the world, let him be brought in to his\nanswer. A hundred mark is a long one for a poor lone\nwoman to bear: and I have borne, and borne, and\nborne, and have been fubbed off, and fubbed off, and\nfubbed off, from this day to that day, that it is a\nshame to be thought on. There is no honesty in such\ndealing; unless a woman should be made an ass and a\nbeast, to bear every knave's wrong.\nYonder he comes; and that errant malmsey-nose knave,\nBardolph, with him. Do your offices, do your\noffices: Master Fang and Master Snare, do me, do me,\ndo me your offices.\n\nFALSTAFF:\nHow now! whose mare's dead? what's the matter?\n\nFANG:\nSir John, I arrest you at the suit of Mistress Quickly.\n\nFALSTAFF:\nAway, varlets! Draw, Bardolph: cut me off the\nvillain's head: throw the quean in the channel.\n\nMISTRESS QUICKLY:\nThrow me in the channel! I'll throw thee in the\nchannel. Wilt thou? wilt thou? thou bastardly\nrogue! Murder, murder! Ah, thou honeysuckle\nvillain! wilt thou kill God's officers and the\nking's? Ah, thou honey-seed rogue! thou art a\nhoney-seed, a man-queller, and a woman-queller.\n\nFALSTAFF:\nKeep them off, Bardolph.\n\nFANG:\nA rescue! a rescue!\n\nMISTRESS QUICKLY:\nGood people, bring a rescue or two. Thou wo't, wo't\nthou? Thou wo't, wo't ta? do, do, thou rogue! do,\nthou hemp-seed!\n\nFALSTAFF:\nAway, you scullion! you rampallion! You\nfustilarian! I'll tickle your catastrophe.\n\nLord Chief-Justice:\nWhat is the matter? keep the peace here, ho!\n\nMISTRESS QUICKLY:\nGood my lord, be good to me. I beseech you, stand to me.\n\nLord Chief-Justice:\nHow now, Sir John! what are you brawling here?\nDoth this become your place, your time and business?\nYou should have been well on your way to York.\nStand from him, fellow: wherefore hang'st upon him?\n\nMISTRESS QUICKLY:\nO most worshipful lord, an't please your grace, I am\na poor widow of Eastcheap, and he is arrested at my suit.\n\nLord Chief-Justice:\nFor what sum?\n\nMISTRESS QUICKLY:\nIt is more than for some, my lord; it is for all,\nall I have. He hath eaten me out of house and home;\nhe hath put all my substance into that fat belly of\nhis: but I will have some of it out again, or I\nwill ride thee o' nights like the mare.\n\nFALSTAFF:\nI think I am as like to ride the mare, if I have\nany vantage of ground to get up.\n\nLord Chief-Justice:\nHow comes this, Sir John? Fie! what man of good\ntemper would endure this tempest of exclamation?\nAre you not ashamed to enforce a poor widow to so\nrough a course to come by her own?\n\nFALSTAFF:\nWhat is the gross sum that I owe thee?\n\nMISTRESS QUICKLY:\nMarry, if thou wert an honest man, thyself and the\nmoney too. Thou didst swear to me upon a\nparcel-gilt goblet, sitting in my Dolphin-chamber,\nat the round table, by a sea-coal fire, upon\nWednesday in Wheeson week, when the prince broke\nthy head for liking his father to a singing-man of\nWindsor, thou didst swear to me then, as I was\nwashing thy wound, to marry me and make me my lady\nthy wife. Canst thou deny it? Did not goodwife\nKeech, the butcher's wife, come in then and call me\ngossip Quickly? coming in to borrow a mess of\nvinegar; telling us she had a good dish of prawns;\nwhereby thou didst desire to eat some; whereby I\ntold thee they were ill for a green wound? And\ndidst thou not, when she was gone down stairs,\ndesire me to be no more so familiarity with such\npoor people; saying that ere long they should call\nme madam? And didst thou not kiss me and bid me\nfetch thee thirty shillings? I put thee now to thy\nbook-oath: deny it, if thou canst.\n\nFALSTAFF:\nMy lord, this is a poor mad soul; and she says up\nand down the town that the eldest son is like you:\nshe hath been in good case, and the truth is,\npoverty hath distracted her. But for these foolish\nofficers, I beseech you I may have redress against them.\n\nLord Chief-Justice:\nSir John, Sir John, I am well acquainted with your\nmanner of wrenching the true cause the false way. It\nis not a confident brow, nor the throng of words\nthat come with such more than impudent sauciness\nfrom you, can thrust me from a level consideration:\nyou have, as it appears to me, practised upon the\neasy-yielding spirit of this woman, and made her\nserve your uses both in purse and in person.\n\nMISTRESS QUICKLY:\nYea, in truth, my lord.\n\nLord Chief-Justice:\nPray thee, peace. Pay her the debt you owe her, and\nunpay the villany you have done her: the one you\nmay do with sterling money, and the other with\ncurrent repentance.\n\nFALSTAFF:\nMy lord, I will not undergo this sneap without\nreply. You call honourable boldness impudent\nsauciness: if a man will make courtesy and say\nnothing, he is virtuous: no, my lord, my humble\nduty remembered, I will not be your suitor. I say\nto you, I do desire deliverance from these officers,\nbeing upon hasty employment in the king's affairs.\n\nLord Chief-Justice:\nYou speak as having power to do wrong: but answer\nin the effect of your reputation, and satisfy this\npoor woman.\n\nFALSTAFF:\nCome hither, hostess.\n\nLord Chief-Justice:\nNow, Master Gower, what news?\n\nGOWER:\nThe king, my lord, and Harry Prince of Wales\nAre near at hand: the rest the paper tells.\n\nFALSTAFF:\nAs I am a gentleman.\n\nMISTRESS QUICKLY:\nFaith, you said so before.\n\nFALSTAFF:\nAs I am a gentleman. Come, no more words of it.\n\nMISTRESS QUICKLY:\nBy this heavenly ground I tread on, I must be fain\nto pawn both my plate and the tapestry of my\ndining-chambers.\n\nFALSTAFF:\nGlasses, glasses is the only drinking: and for thy\nwalls, a pretty slight drollery, or the story of\nthe Prodigal, or the German hunting in water-work,\nis worth a thousand of these bed-hangings and these\nfly-bitten tapestries. Let it be ten pound, if thou\ncanst. Come, an 'twere not for thy humours, there's\nnot a better wench in England. Go, wash thy face,\nand draw the action. Come, thou must not be in\nthis humour with me; dost not know me? come, come, I\nknow thou wast set on to this.\n\nMISTRESS QUICKLY:\nPray thee, Sir John, let it be but twenty nobles: i'\nfaith, I am loath to pawn my plate, so God save me,\nla!\n\nFALSTAFF:\nLet it alone; I'll make other shift: you'll be a\nfool still.\n\nMISTRESS QUICKLY:\nWell, you shall have it, though I pawn my gown. I\nhope you'll come to supper. You'll pay me all together?\n\nFALSTAFF:\nWill I live?\nGo, with her, with her; hook on, hook on.\n\nMISTRESS QUICKLY:\nWill you have Doll Tearsheet meet you at supper?\n\nFALSTAFF:\nNo more words; let's have her.\n\nLord Chief-Justice:\nI have heard better news.\n\nFALSTAFF:\nWhat's the news, my lord?\n\nLord Chief-Justice:\nWhere lay the king last night?\n\nGOWER:\nAt Basingstoke, my lord.\n\nFALSTAFF:\nI hope, my lord, all's well: what is the news, my lord?\n\nLord Chief-Justice:\nCome all his forces back?\n\nGOWER:\nNo; fifteen hundred foot, five hundred horse,\nAre marched up to my lord of Lancaster,\nAgainst Northumberland and the Archbishop.\n\nFALSTAFF:\nComes the king back from Wales, my noble lord?\n\nLord Chief-Justice:\nYou shall have letters of me presently:\nCome, go along with me, good Master Gower.\n\nFALSTAFF:\nMy lord!\n\nLord Chief-Justice:\nWhat's the matter?\n\nFALSTAFF:\nMaster Gower, shall I entreat you with me to dinner?\n\nGOWER:\nI must wait upon my good lord here; I thank you,\ngood Sir John.\n\nLord Chief-Justice:\nSir John, you loiter here too long, being you are to\ntake soldiers up in counties as you go.\n\nFALSTAFF:\nWill you sup with me, Master Gower?\n\nLord Chief-Justice:\nWhat foolish master taught you these manners, Sir John?\n\nFALSTAFF:\nMaster Gower, if they become me not, he was a fool\nthat taught them me. This is the right fencing\ngrace, my lord; tap for tap, and so part fair.\n\nLord Chief-Justice:\nNow the Lord lighten thee! thou art a great fool.\n\nPRINCE HENRY:\nBefore God, I am exceeding weary.\n\nPOINS:\nIs't come to that? I had thought weariness durst not\nhave attached one of so high blood.\n\nPRINCE HENRY:\nFaith, it does me; though it discolours the\ncomplexion of my greatness to acknowledge it. Doth\nit not show vilely in me to desire small beer?\n\nPOINS:\nWhy, a prince should not be so loosely studied as\nto remember so weak a composition.\n\nPRINCE HENRY:\nBelike then my appetite was not princely got; for,\nby my troth, I do now remember the poor creature,\nsmall beer. But, indeed, these humble\nconsiderations make me out of love with my\ngreatness. What a disgrace is it to me to remember\nthy name! or to know thy face to-morrow! or to\ntake note how many pair of silk stockings thou\nhast, viz. these, and those that were thy\npeach-coloured ones! or to bear the inventory of thy\nshirts, as, one for superfluity, and another for\nuse! But that the tennis-court-keeper knows better\nthan I; for it is a low ebb of linen with thee when\nthou keepest not racket there; as thou hast not done\na great while, because the rest of thy low\ncountries have made a shift to eat up thy holland:\nand God knows, whether those that bawl out the ruins\nof thy linen shall inherit his kingdom: but the\nmidwives say the children are not in the fault;\nwhereupon the world increases, and kindreds are\nmightily strengthened.\n\nPOINS:\nHow ill it follows, after you have laboured so hard,\nyou should talk so idly! Tell me, how many good\nyoung princes would do so, their fathers being so\nsick as yours at this time is?\n\nPRINCE HENRY:\nShall I tell thee one thing, Poins?\n\nPOINS:\nYes, faith; and let it be an excellent good thing.\n\nPRINCE HENRY:\nIt shall serve among wits of no higher breeding than thine.\n\nPOINS:\nGo to; I stand the push of your one thing that you\nwill tell.\n\nPRINCE HENRY:\nMarry, I tell thee, it is not meet that I should be\nsad, now my father is sick: albeit I could tell\nthee, as to one it pleases me, for fault of a\nbetter, to call my friend, I could be sad, and sad\nindeed too.\n\nPOINS:\nVery hardly upon such a subject.\n\nPRINCE HENRY:\nBy this hand thou thinkest me as far in the devil's\nbook as thou and Falstaff for obduracy and\npersistency: let the end try the man. But I tell\nthee, my heart bleeds inwardly that my father is so\nsick: and keeping such vile company as thou art\nhath in reason taken from me all ostentation of sorrow.\n\nPOINS:\nThe reason?\n\nPRINCE HENRY:\nWhat wouldst thou think of me, if I should weep?\n\nPOINS:\nI would think thee a most princely hypocrite.\n\nPRINCE HENRY:\nIt would be every man's thought; and thou art a\nblessed fellow to think as every man thinks: never\na man's thought in the world keeps the road-way\nbetter than thine: every man would think me an\nhypocrite indeed. And what accites your most\nworshipful thought to think so?\n\nPOINS:\nWhy, because you have been so lewd and so much\nengraffed to Falstaff.\n\nPRINCE HENRY:\nAnd to thee.\n\nPOINS:\nBy this light, I am well spoke on; I can hear it\nwith my own ears: the worst that they can say of\nme is that I am a second brother and that I am a\nproper fellow of my hands; and those two things, I\nconfess, I cannot help. By the mass, here comes Bardolph.\n\nPRINCE HENRY:\nAnd the boy that I gave Falstaff: a' had him from\nme Christian; and look, if the fat villain have not\ntransformed him ape.\n\nBARDOLPH:\nGod save your grace!\n\nPRINCE HENRY:\nAnd yours, most noble Bardolph!\n\nBARDOLPH:\nCome, you virtuous ass, you bashful fool, must you\nbe blushing? wherefore blush you now? What a\nmaidenly man-at-arms are you become! Is't such a\nmatter to get a pottle-pot's maidenhead?\n\nPage:\nA' calls me e'en now, my lord, through a red\nlattice, and I could discern no part of his face\nfrom the window: at last I spied his eyes, and\nmethought he had made two holes in the ale-wife's\nnew petticoat and so peeped through.\n\nPRINCE HENRY:\nHas not the boy profited?\n\nBARDOLPH:\nAway, you whoreson upright rabbit, away!\n\nPage:\nAway, you rascally Althaea's dream, away!\n\nPRINCE HENRY:\nInstruct us, boy; what dream, boy?\n\nPage:\nMarry, my lord, Althaea dreamed she was delivered\nof a fire-brand; and therefore I call him her dream.\n\nPRINCE HENRY:\nA crown's worth of good interpretation: there 'tis,\nboy.\n\nPOINS:\nO, that this good blossom could be kept from\ncankers! Well, there is sixpence to preserve thee.\n\nBARDOLPH:\nAn you do not make him hanged among you, the\ngallows shall have wrong.\n\nPRINCE HENRY:\nAnd how doth thy master, Bardolph?\n\nBARDOLPH:\nWell, my lord. He heard of your grace's coming to\ntown: there's a letter for you.\n\nPOINS:\nDelivered with good respect. And how doth the\nmartlemas, your master?\n\nBARDOLPH:\nIn bodily health, sir.\n\nPOINS:\nMarry, the immortal part needs a physician; but\nthat moves not him: though that be sick, it dies\nnot.\n\nPRINCE HENRY:\nI do allow this wen to be as familiar with me as my\ndog; and he holds his place; for look you how be writes.\n\nPOINS:\n\nPRINCE HENRY:\nNay, they will be kin to us, or they will fetch it\nfrom Japhet. But to the letter.\n\nPOINS:\n\nPRINCE HENRY:\nPeace!\n\nPOINS:\n\nPRINCE HENRY:\nThat's to make him eat twenty of his words. But do\nyou use me thus, Ned? must I marry your sister?\n\nPOINS:\nGod send the wench no worse fortune! But I never said so.\n\nPRINCE HENRY:\nWell, thus we play the fools with the time, and the\nspirits of the wise sit in the clouds and mock us.\nIs your master here in London?\n\nBARDOLPH:\nYea, my lord.\n\nPRINCE HENRY:\nWhere sups he? doth the old boar feed in the old frank?\n\nBARDOLPH:\nAt the old place, my lord, in Eastcheap.\n\nPRINCE HENRY:\nWhat company?\n\nPage:\nEphesians, my lord, of the old church.\n\nPRINCE HENRY:\nSup any women with him?\n\nPage:\nNone, my lord, but old Mistress Quickly and\nMistress Doll Tearsheet.\n\nPRINCE HENRY:\nWhat pagan may that be?\n\nPage:\nA proper gentlewoman, sir, and a kinswoman of my master's.\n\nPRINCE HENRY:\nEven such kin as the parish heifers are to the town\nbull. Shall we steal upon them, Ned, at supper?\n\nPOINS:\nI am your shadow, my lord; I'll follow you.\n\nPRINCE HENRY:\nSirrah, you boy, and Bardolph, no word to your\nmaster that I am yet come to town: there's for\nyour silence.\n\nBARDOLPH:\nI have no tongue, sir.\n\nPage:\nAnd for mine, sir, I will govern it.\n\nPRINCE HENRY:\nFare you well; go.\nThis Doll Tearsheet should be some road.\n\nPOINS:\nI warrant you, as common as the way between Saint\nAlban's and London.\n\nPRINCE HENRY:\nHow might we see Falstaff bestow himself to-night\nin his true colours, and not ourselves be seen?\n\nPOINS:\nPut on two leathern jerkins and aprons, and wait\nupon him at his table as drawers.\n\nPRINCE HENRY:\nFrom a God to a bull? a heavy decension! it was\nJove's case. From a prince to a prentice? a low\ntransformation! that shall be mine; for in every\nthing the purpose must weigh with the folly.\nFollow me, Ned.\n\nNORTHUMBERLAND:\nI pray thee, loving wife, and gentle daughter,\nGive even way unto my rough affairs:\nPut not you on the visage of the times\nAnd be like them to Percy troublesome.\n\nLADY NORTHUMBERLAND:\nI have given over, I will speak no more:\nDo what you will; your wisdom be your guide.\n\nNORTHUMBERLAND:\nAlas, sweet wife, my honour is at pawn;\nAnd, but my going, nothing can redeem it.\n\nLADY PERCY:\nO yet, for God's sake, go not to these wars!\nThe time was, father, that you broke your word,\nWhen you were more endeared to it than now;\nWhen your own Percy, when my heart's dear Harry,\nThrew many a northward look to see his father\nBring up his powers; but he did long in vain.\nWho then persuaded you to stay at home?\nThere were two honours lost, yours and your son's.\nFor yours, the God of heaven brighten it!\nFor his, it stuck upon him as the sun\nIn the grey vault of heaven, and by his light\nDid all the chivalry of England move\nTo do brave acts: he was indeed the glass\nWherein the noble youth did dress themselves:\nHe had no legs that practised not his gait;\nAnd speaking thick, which nature made his blemish,\nBecame the accents of the valiant;\nFor those that could speak low and tardily\nWould turn their own perfection to abuse,\nTo seem like him: so that in speech, in gait,\nIn diet, in affections of delight,\nIn military rules, humours of blood,\nHe was the mark and glass, copy and book,\nThat fashion'd others. And him, O wondrous him!\nO miracle of men! him did you leave,\nSecond to none, unseconded by you,\nTo look upon the hideous god of war\nIn disadvantage; to abide a field\nWhere nothing but the sound of Hotspur's name\nDid seem defensible: so you left him.\nNever, O never, do his ghost the wrong\nTo hold your honour more precise and nice\nWith others than with him! let them alone:\nThe marshal and the archbishop are strong:\nHad my sweet Harry had but half their numbers,\nTo-day might I, hanging on Hotspur's neck,\nHave talk'd of Monmouth's grave.\n\nNORTHUMBERLAND:\nBeshrew your heart,\nFair daughter, you do draw my spirits from me\nWith new lamenting ancient oversights.\nBut I must go and meet with danger there,\nOr it will seek me in another place\nAnd find me worse provided.\n\nLADY NORTHUMBERLAND:\nO, fly to Scotland,\nTill that the nobles and the armed commons\nHave of their puissance made a little taste.\n\nLADY PERCY:\nIf they get ground and vantage of the king,\nThen join you with them, like a rib of steel,\nTo make strength stronger; but, for all our loves,\nFirst let them try themselves. So did your son;\nHe was so suffer'd: so came I a widow;\nAnd never shall have length of life enough\nTo rain upon remembrance with mine eyes,\nThat it may grow and sprout as high as heaven,\nFor recordation to my noble husband.\n\nNORTHUMBERLAND:\nCome, come, go in with me. 'Tis with my mind\nAs with the tide swell'd up unto his height,\nThat makes a still-stand, running neither way:\nFain would I go to meet the archbishop,\nBut many thousand reasons hold me back.\nI will resolve for Scotland: there am I,\nTill time and vantage crave my company.\n\nFirst Drawer:\nWhat the devil hast thou brought there? apple-johns?\nthou knowest Sir John cannot endure an apple-john.\n\nSecond Drawer:\nMass, thou sayest true. The prince once set a dish\nof apple-johns before him, and told him there were\nfive more Sir Johns, and, putting off his hat, said\n'I will now take my leave of these six dry, round,\nold, withered knights.' It angered him to the\nheart: but he hath forgot that.\n\nFirst Drawer:\nWhy, then, cover, and set them down: and see if\nthou canst find out Sneak's noise; Mistress\nTearsheet would fain hear some music. Dispatch: the\nroom where they supped is too hot; they'll come in straight.\n\nSecond Drawer:\nSirrah, here will be the prince and Master Poins\nanon; and they will put on two of our jerkins and\naprons; and Sir John must not know of it: Bardolph\nhath brought word.\n\nFirst Drawer:\nBy the mass, here will be old Utis: it will be an\nexcellent stratagem.\n\nSecond Drawer:\nI'll see if I can find out Sneak.\n\nMISTRESS QUICKLY:\nI' faith, sweetheart, methinks now you are in an\nexcellent good temperality: your pulsidge beats as\nextraordinarily as heart would desire; and your\ncolour, I warrant you, is as red as any rose, in good\ntruth, la! But, i' faith, you have drunk too much\ncanaries; and that's a marvellous searching wine,\nand it perfumes the blood ere one can say 'What's\nthis?' How do you now?\n\nDOLL TEARSHEET:\nBetter than I was: hem!\n\nMISTRESS QUICKLY:\nWhy, that's well said; a good heart's worth gold.\nLo, here comes Sir John.\n\nFALSTAFF:\n\nMISTRESS QUICKLY:\nSick of a calm; yea, good faith.\n\nFALSTAFF:\nSo is all her sect; an they be once in a calm, they are sick.\n\nDOLL TEARSHEET:\nYou muddy rascal, is that all the comfort you give me?\n\nFALSTAFF:\nYou make fat rascals, Mistress Doll.\n\nDOLL TEARSHEET:\nI make them! gluttony and diseases make them; I\nmake them not.\n\nFALSTAFF:\nIf the cook help to make the gluttony, you help to\nmake the diseases, Doll: we catch of you, Doll, we\ncatch of you; grant that, my poor virtue grant that.\n\nDOLL TEARSHEET:\nYea, joy, our chains and our jewels.\n\nFALSTAFF:\n'Your broaches, pearls, and ouches:' for to serve\nbravely is to come halting off, you know: to come\noff the breach with his pike bent bravely, and to\nsurgery bravely; to venture upon the charged\nchambers bravely,--\n\nDOLL TEARSHEET:\nHang yourself, you muddy conger, hang yourself!\n\nMISTRESS QUICKLY:\nBy my troth, this is the old fashion; you two never\nmeet but you fall to some discord: you are both,\ni' good truth, as rheumatic as two dry toasts; you\ncannot one bear with another's confirmities. What\nthe good-year! one must bear, and that must be\nyou: you are the weaker vessel, as they say, the\nemptier vessel.\n\nDOLL TEARSHEET:\nCan a weak empty vessel bear such a huge full\nhogshead? there's a whole merchant's venture of\nBourdeaux stuff in him; you have not seen a hulk\nbetter stuffed in the hold. Come, I'll be friends\nwith thee, Jack: thou art going to the wars; and\nwhether I shall ever see thee again or no, there is\nnobody cares.\n\nFirst Drawer:\nSir, Ancient Pistol's below, and would speak with\nyou.\n\nDOLL TEARSHEET:\nHang him, swaggering rascal! let him not come\nhither: it is the foul-mouthed'st rogue in England.\n\nMISTRESS QUICKLY:\nIf he swagger, let him not come here: no, by my\nfaith; I must live among my neighbours: I'll no\nswaggerers: I am in good name and fame with the\nvery best: shut the door; there comes no swaggerers\nhere: I have not lived all this while, to have\nswaggering now: shut the door, I pray you.\n\nFALSTAFF:\nDost thou hear, hostess?\n\nMISTRESS QUICKLY:\nPray ye, pacify yourself, Sir John: there comes no\nswaggerers here.\n\nFALSTAFF:\nDost thou hear? it is mine ancient.\n\nMISTRESS QUICKLY:\nTilly-fally, Sir John, ne'er tell me: your ancient\nswaggerer comes not in my doors. I was before Master\nTisick, the debuty, t'other day; and, as he said to\nme, 'twas no longer ago than Wednesday last, 'I'\ngood faith, neighbour Quickly,' says he; Master\nDumbe, our minister, was by then; 'neighbour\nQuickly,' says he, 'receive those that are civil;\nfor,' said he, 'you are in an ill name:' now a'\nsaid so, I can tell whereupon; 'for,' says he, 'you\nare an honest woman, and well thought on; therefore\ntake heed what guests you receive: receive,' says\nhe, 'no swaggering companions.' There comes none\nhere: you would bless you to hear what he said:\nno, I'll no swaggerers.\n\nFALSTAFF:\nHe's no swaggerer, hostess; a tame cheater, i'\nfaith; you may stroke him as gently as a puppy\ngreyhound: he'll not swagger with a Barbary hen, if\nher feathers turn back in any show of resistance.\nCall him up, drawer.\n\nMISTRESS QUICKLY:\nCheater, call you him? I will bar no honest man my\nhouse, nor no cheater: but I do not love\nswaggering, by my troth; I am the worse, when one\nsays swagger: feel, masters, how I shake; look you,\nI warrant you.\n\nDOLL TEARSHEET:\nSo you do, hostess.\n\nMISTRESS QUICKLY:\nDo I? yea, in very truth, do I, an 'twere an aspen\nleaf: I cannot abide swaggerers.\n\nPISTOL:\nGod save you, Sir John!\n\nFALSTAFF:\nWelcome, Ancient Pistol. Here, Pistol, I charge\nyou with a cup of sack: do you discharge upon mine hostess.\n\nPISTOL:\nI will discharge upon her, Sir John, with two bullets.\n\nFALSTAFF:\nShe is Pistol-proof, sir; you shall hardly offend\nher.\n\nMISTRESS QUICKLY:\nCome, I'll drink no proofs nor no bullets: I'll\ndrink no more than will do me good, for no man's\npleasure, I.\n\nPISTOL:\nThen to you, Mistress Dorothy; I will charge you.\n\nDOLL TEARSHEET:\nCharge me! I scorn you, scurvy companion. What!\nyou poor, base, rascally, cheating, lack-linen\nmate! Away, you mouldy rogue, away! I am meat for\nyour master.\n\nPISTOL:\nI know you, Mistress Dorothy.\n\nDOLL TEARSHEET:\nAway, you cut-purse rascal! you filthy bung, away!\nby this wine, I'll thrust my knife in your mouldy\nchaps, an you play the saucy cuttle with me. Away,\nyou bottle-ale rascal! you basket-hilt stale\njuggler, you! Since when, I pray you, sir? God's\nlight, with two points on your shoulder? much!\n\nPISTOL:\nGod let me not live, but I will murder your ruff for this.\n\nFALSTAFF:\nNo more, Pistol; I would not have you go off here:\ndischarge yourself of our company, Pistol.\n\nMISTRESS QUICKLY:\nNo, Good Captain Pistol; not here, sweet captain.\n\nDOLL TEARSHEET:\nCaptain! thou abominable damned cheater, art thou\nnot ashamed to be called captain? An captains were\nof my mind, they would truncheon you out, for\ntaking their names upon you before you have earned\nthem. You a captain! you slave, for what? for\ntearing a poor whore's ruff in a bawdy-house? He a\ncaptain! hang him, rogue! he lives upon mouldy\nstewed prunes and dried cakes. A captain! God's\nlight, these villains will make the word as odious\nas the word 'occupy;' which was an excellent good\nword before it was ill sorted: therefore captains\nhad need look to 't.\n\nBARDOLPH:\nPray thee, go down, good ancient.\n\nFALSTAFF:\nHark thee hither, Mistress Doll.\n\nPISTOL:\nNot I I tell thee what, Corporal Bardolph, I could\ntear her: I'll be revenged of her.\n\nPage:\nPray thee, go down.\n\nPISTOL:\nI'll see her damned first; to Pluto's damned lake,\nby this hand, to the infernal deep, with Erebus and\ntortures vile also. Hold hook and line, say I.\nDown, down, dogs! down, faitors! Have we not\nHiren here?\n\nMISTRESS QUICKLY:\nGood Captain Peesel, be quiet; 'tis very late, i'\nfaith: I beseek you now, aggravate your choler.\n\nPISTOL:\nThese be good humours, indeed! Shall pack-horses\nAnd hollow pamper'd jades of Asia,\nWhich cannot go but thirty mile a-day,\nCompare with Caesars, and with Cannibals,\nAnd Trojan Greeks? nay, rather damn them with\nKing Cerberus; and let the welkin roar.\nShall we fall foul for toys?\n\nMISTRESS QUICKLY:\nBy my troth, captain, these are very bitter words.\n\nBARDOLPH:\nBe gone, good ancient: this will grow to abrawl anon.\n\nPISTOL:\nDie men like dogs! give crowns like pins! Have we\nnot Heren here?\n\nMISTRESS QUICKLY:\nO' my word, captain, there's none such here. What\nthe good-year! do you think I would deny her? For\nGod's sake, be quiet.\n\nPISTOL:\nThen feed, and be fat, my fair Calipolis.\nCome, give's some sack.\n'Si fortune me tormente, sperato me contento.'\nFear we broadsides? no, let the fiend give fire:\nGive me some sack: and, sweetheart, lie thou there.\nCome we to full points here; and are etceteras nothing?\n\nFALSTAFF:\nPistol, I would be quiet.\n\nPISTOL:\nSweet knight, I kiss thy neaf: what! we have seen\nthe seven stars.\n\nDOLL TEARSHEET:\nFor God's sake, thrust him down stairs: I cannot\nendure such a fustian rascal.\n\nPISTOL:\nThrust him down stairs! know we not Galloway nags?\n\nFALSTAFF:\nQuoit him down, Bardolph, like a shove-groat\nshilling: nay, an a' do nothing but speak nothing,\na' shall be nothing here.\n\nBARDOLPH:\nCome, get you down stairs.\n\nPISTOL:\nWhat! shall we have incision? shall we imbrue?\nThen death rock me asleep, abridge my doleful days!\nWhy, then, let grievous, ghastly, gaping wounds\nUntwine the Sisters Three! Come, Atropos, I say!\n\nMISTRESS QUICKLY:\nHere's goodly stuff toward!\n\nFALSTAFF:\nGive me my rapier, boy.\n\nDOLL TEARSHEET:\nI pray thee, Jack, I pray thee, do not draw.\n\nFALSTAFF:\nGet you down stairs.\n\nMISTRESS QUICKLY:\nHere's a goodly tumult! I'll forswear keeping\nhouse, afore I'll be in these tirrits and frights.\nSo; murder, I warrant now. Alas, alas! put up\nyour naked weapons, put up your naked weapons.\n\nDOLL TEARSHEET:\nI pray thee, Jack, be quiet; the rascal's gone.\nAh, you whoreson little valiant villain, you!\n\nMISTRESS QUICKLY:\nHe you not hurt i' the groin? methought a' made a\nshrewd thrust at your belly.\n\nFALSTAFF:\nHave you turned him out o' doors?\n\nBARDOLPH:\nYea, sir. The rascal's drunk: you have hurt him,\nsir, i' the shoulder.\n\nFALSTAFF:\nA rascal! to brave me!\n\nDOLL TEARSHEET:\nAh, you sweet little rogue, you! alas, poor ape,\nhow thou sweatest! come, let me wipe thy face;\ncome on, you whoreson chops: ah, rogue! i'faith, I\nlove thee: thou art as valorous as Hector of Troy,\nworth five of Agamemnon, and ten times better than\nthe Nine Worthies: ah, villain!\n\nFALSTAFF:\nA rascally slave! I will toss the rogue in a blanket.\n\nDOLL TEARSHEET:\nDo, an thou darest for thy heart: an thou dost,\nI'll canvass thee between a pair of sheets.\n\nPage:\nThe music is come, sir.\n\nFALSTAFF:\nLet them play. Play, sirs. Sit on my knee, Doll.\nA rascal bragging slave! the rogue fled from me\nlike quicksilver.\n\nDOLL TEARSHEET:\nI' faith, and thou followedst him like a church.\nThou whoreson little tidy Bartholomew boar-pig,\nwhen wilt thou leave fighting o' days and foining\no' nights, and begin to patch up thine old body for heaven?\n\nFALSTAFF:\nPeace, good Doll! do not speak like a death's-head;\ndo not bid me remember mine end.\n\nDOLL TEARSHEET:\nSirrah, what humour's the prince of?\n\nFALSTAFF:\nA good shallow young fellow: a' would have made a\ngood pantler, a' would ha' chipp'd bread well.\n\nDOLL TEARSHEET:\nThey say Poins has a good wit.\n\nFALSTAFF:\nHe a good wit? hang him, baboon! his wit's as thick\nas Tewksbury mustard; there's no more conceit in him\nthan is in a mallet.\n\nDOLL TEARSHEET:\nWhy does the prince love him so, then?\n\nFALSTAFF:\nBecause their legs are both of a bigness, and a'\nplays at quoits well, and eats conger and fennel,\nand drinks off candles' ends for flap-dragons, and\nrides the wild-mare with the boys, and jumps upon\njoined-stools, and swears with a good grace, and\nwears his boots very smooth, like unto the sign of\nthe leg, and breeds no bate with telling of discreet\nstories; and such other gambol faculties a' has,\nthat show a weak mind and an able body, for the\nwhich the prince admits him: for the prince himself\nis such another; the weight of a hair will turn the\nscales between their avoirdupois.\n\nPRINCE HENRY:\nWould not this nave of a wheel have his ears cut off?\n\nPOINS:\nLet's beat him before his whore.\n\nPRINCE HENRY:\nLook, whether the withered elder hath not his poll\nclawed like a parrot.\n\nPOINS:\nIs it not strange that desire should so many years\noutlive performance?\n\nFALSTAFF:\nKiss me, Doll.\n\nPRINCE HENRY:\nSaturn and Venus this year in conjunction! what\nsays the almanac to that?\n\nPOINS:\nAnd look, whether the fiery Trigon, his man, be not\nlisping to his master's old tables, his note-book,\nhis counsel-keeper.\n\nFALSTAFF:\nThou dost give me flattering busses.\n\nDOLL TEARSHEET:\nBy my troth, I kiss thee with a most constant heart.\n\nFALSTAFF:\nI am old, I am old.\n\nDOLL TEARSHEET:\nI love thee better than I love e'er a scurvy young\nboy of them all.\n\nFALSTAFF:\nWhat stuff wilt have a kirtle of? I shall receive\nmoney o' Thursday: shalt have a cap to-morrow. A\nmerry song, come: it grows late; we'll to bed.\nThou'lt forget me when I am gone.\n\nDOLL TEARSHEET:\nBy my troth, thou'lt set me a-weeping, an thou\nsayest so: prove that ever I dress myself handsome\ntill thy return: well, harken at the end.\n\nFALSTAFF:\nSome sack, Francis.\n\nPRINCE HENRY:\nAnon, anon, sir.\n\nFALSTAFF:\nHa! a bastard son of the king's? And art not thou\nPoins his brother?\n\nPRINCE HENRY:\nWhy, thou globe of sinful continents! what a life\ndost thou lead!\n\nFALSTAFF:\nA better than thou: I am a gentleman; thou art a drawer.\n\nPRINCE HENRY:\nVery true, sir; and I come to draw you out by the ears.\n\nMISTRESS QUICKLY:\nO, the Lord preserve thy good grace! by my troth,\nwelcome to London. Now, the Lord bless that sweet\nface of thine! O, Jesu, are you come from Wales?\n\nFALSTAFF:\nThou whoreson mad compound of majesty, by this light\nflesh and corrupt blood, thou art welcome.\n\nDOLL TEARSHEET:\nHow, you fat fool! I scorn you.\n\nPOINS:\nMy lord, he will drive you out of your revenge and\nturn all to a merriment, if you take not the heat.\n\nPRINCE HENRY:\nYou whoreson candle-mine, you, how vilely did you\nspeak of me even now before this honest, virtuous,\ncivil gentlewoman!\n\nMISTRESS QUICKLY:\nGod's blessing of your good heart! and so she is,\nby my troth.\n\nFALSTAFF:\nDidst thou hear me?\n\nPRINCE HENRY:\nYea, and you knew me, as you did when you ran away\nby Gad's-hill: you knew I was at your back, and\nspoke it on purpose to try my patience.\n\nFALSTAFF:\nNo, no, no; not so; I did not think thou wast within hearing.\n\nPRINCE HENRY:\nI shall drive you then to confess the wilful abuse;\nand then I know how to handle you.\n\nFALSTAFF:\nNo abuse, Hal, o' mine honour, no abuse.\n\nPRINCE HENRY:\nNot to dispraise me, and call me pantier and\nbread-chipper and I know not what?\n\nFALSTAFF:\nNo abuse, Hal.\n\nPOINS:\nNo abuse?\n\nFALSTAFF:\nNo abuse, Ned, i' the world; honest Ned, none. I\ndispraised him before the wicked, that the wicked\nmight not fall in love with him; in which doing, I\nhave done the part of a careful friend and a true\nsubject, and thy father is to give me thanks for it.\nNo abuse, Hal: none, Ned, none: no, faith, boys, none.\n\nPRINCE HENRY:\nSee now, whether pure fear and entire cowardice doth\nnot make thee wrong this virtuous gentlewoman to\nclose with us? is she of the wicked? is thine\nhostess here of the wicked? or is thy boy of the\nwicked? or honest Bardolph, whose zeal burns in his\nnose, of the wicked?\n\nPOINS:\nAnswer, thou dead elm, answer.\n\nFALSTAFF:\nThe fiend hath pricked down Bardolph irrecoverable;\nand his face is Lucifer's privy-kitchen, where he\ndoth nothing but roast malt-worms. For the boy,\nthere is a good angel about him; but the devil\noutbids him too.\n\nPRINCE HENRY:\nFor the women?\n\nFALSTAFF:\nFor one of them, she is in hell already, and burns\npoor souls. For the other, I owe her money, and\nwhether she be damned for that, I know not.\n\nMISTRESS QUICKLY:\nNo, I warrant you.\n\nFALSTAFF:\nNo, I think thou art not; I think thou art quit for\nthat. Marry, there is another indictment upon thee,\nfor suffering flesh to be eaten in thy house,\ncontrary to the law; for the which I think thou wilt howl.\n\nMISTRESS QUICKLY:\nAll victuallers do so; what's a joint of mutton or\ntwo in a whole Lent?\n\nPRINCE HENRY:\nYou, gentlewoman,-\n\nDOLL TEARSHEET:\nWhat says your grace?\n\nFALSTAFF:\nHis grace says that which his flesh rebels against.\n\nMISTRESS QUICKLY:\nWho knocks so loud at door? Look to the door there, Francis.\n\nPRINCE HENRY:\nPeto, how now! what news?\n\nPETO:\nThe king your father is at Westminster:\nAnd there are twenty weak and wearied posts\nCome from the north: and, as I came along,\nI met and overtook a dozen captains,\nBare-headed, sweating, knocking at the taverns,\nAnd asking every one for Sir John Falstaff.\n\nPRINCE HENRY:\nBy heaven, Poins, I feel me much to blame,\nSo idly to profane the precious time,\nWhen tempest of commotion, like the south\nBorne with black vapour, doth begin to melt\nAnd drop upon our bare unarmed heads.\nGive me my sword and cloak. Falstaff, good night.\n\nFALSTAFF:\nNow comes in the sweetest morsel of the night, and\nwe must hence and leave it unpicked.\nMore knocking at the door!\nHow now! what's the matter?\n\nBARDOLPH:\nYou must away to court, sir, presently;\nA dozen captains stay at door for you.\n\nFALSTAFF:\n\nDOLL TEARSHEET:\nI cannot speak; if my heart be not read to burst,--\nwell, sweet Jack, have a care of thyself.\n\nFALSTAFF:\nFarewell, farewell.\n\nMISTRESS QUICKLY:\nWell, fare thee well: I have known thee these\ntwenty-nine years, come peascod-time; but an\nhonester and truer-hearted man,--well, fare thee well.\n\nBARDOLPH:\n\nMISTRESS QUICKLY:\nWhat's the matter?\n\nBARDOLPH:\n\nMISTRESS QUICKLY:\nO, run, Doll, run; run, good Doll: come.\nYea, will you come, Doll?\n\nKING HENRY IV:\nGo call the Earls of Surrey and of Warwick;\nBut, ere they come, bid them o'er-read these letters,\nAnd well consider of them; make good speed.\nHow many thousand of my poorest subjects\nAre at this hour asleep! O sleep, O gentle sleep,\nNature's soft nurse, how have I frighted thee,\nThat thou no more wilt weigh my eyelids down\nAnd steep my senses in forgetfulness?\nWhy rather, sleep, liest thou in smoky cribs,\nUpon uneasy pallets stretching thee\nAnd hush'd with buzzing night-flies to thy slumber,\nThan in the perfumed chambers of the great,\nUnder the canopies of costly state,\nAnd lull'd with sound of sweetest melody?\nO thou dull god, why liest thou with the vile\nIn loathsome beds, and leavest the kingly couch\nA watch-case or a common 'larum-bell?\nWilt thou upon the high and giddy mast\nSeal up the ship-boy's eyes, and rock his brains\nIn cradle of the rude imperious surge\nAnd in the visitation of the winds,\nWho take the ruffian billows by the top,\nCurling their monstrous heads and hanging them\nWith deafening clamour in the slippery clouds,\nThat, with the hurly, death itself awakes?\nCanst thou, O partial sleep, give thy repose\nTo the wet sea-boy in an hour so rude,\nAnd in the calmest and most stillest night,\nWith all appliances and means to boot,\nDeny it to a king? Then happy low, lie down!\nUneasy lies the head that wears a crown.\n\nWARWICK:\nMany good morrows to your majesty!\n\nKING HENRY IV:\nIs it good morrow, lords?\n\nWARWICK:\n'Tis one o'clock, and past.\n\nKING HENRY IV:\nWhy, then, good morrow to you all, my lords.\nHave you read o'er the letters that I sent you?\n\nWARWICK:\nWe have, my liege.\n\nKING HENRY IV:\nThen you perceive the body of our kingdom\nHow foul it is; what rank diseases grow\nAnd with what danger, near the heart of it.\n\nWARWICK:\nIt is but as a body yet distemper'd;\nWhich to his former strength may be restored\nWith good advice and little medicine:\nMy Lord Northumberland will soon be cool'd.\n\nKING HENRY IV:\nO God! that one might read the book of fate,\nAnd see the revolution of the times\nMake mountains level, and the continent,\nWeary of solid firmness, melt itself\nInto the sea! and, other times, to see\nThe beachy girdle of the ocean\nToo wide for Neptune's hips; how chances mock,\nAnd changes fill the cup of alteration\nWith divers liquors! O, if this were seen,\nThe happiest youth, viewing his progress through,\nWhat perils past, what crosses to ensue,\nWould shut the book, and sit him down and die.\n'Tis not 'ten years gone\nSince Richard and Northumberland, great friends,\nDid feast together, and in two years after\nWere they at wars: it is but eight years since\nThis Percy was the man nearest my soul,\nWho like a brother toil'd in my affairs\nAnd laid his love and life under my foot,\nYea, for my sake, even to the eyes of Richard\nGave him defiance. But which of you was by--\nYou, cousin Nevil, as I may remember--\nWhen Richard, with his eye brimful of tears,\nThen cheque'd and rated by Northumberland,\nDid speak these words, now proved a prophecy?\n'Northumberland, thou ladder by the which\nMy cousin Bolingbroke ascends my throne;'\nThough then, God knows, I had no such intent,\nBut that necessity so bow'd the state\nThat I and greatness were compell'd to kiss:\n'The time shall come,' thus did he follow it,\n'The time will come, that foul sin, gathering head,\nShall break into corruption:' so went on,\nForetelling this same time's condition\nAnd the division of our amity.\n\nWARWICK:\nThere is a history in all men's lives,\nFiguring the nature of the times deceased;\nThe which observed, a man may prophesy,\nWith a near aim, of the main chance of things\nAs yet not come to life, which in their seeds\nAnd weak beginnings lie intreasured.\nSuch things become the hatch and brood of time;\nAnd by the necessary form of this\nKing Richard might create a perfect guess\nThat great Northumberland, then false to him,\nWould of that seed grow to a greater falseness;\nWhich should not find a ground to root upon,\nUnless on you.\n\nKING HENRY IV:\nAre these things then necessities?\nThen let us meet them like necessities:\nAnd that same word even now cries out on us:\nThey say the bishop and Northumberland\nAre fifty thousand strong.\n\nWARWICK:\nIt cannot be, my lord;\nRumour doth double, like the voice and echo,\nThe numbers of the fear'd. Please it your grace\nTo go to bed. Upon my soul, my lord,\nThe powers that you already have sent forth\nShall bring this prize in very easily.\nTo comfort you the more, I have received\nA certain instance that Glendower is dead.\nYour majesty hath been this fortnight ill,\nAnd these unseason'd hours perforce must add\nUnto your sickness.\n\nKING HENRY IV:\nI will take your counsel:\nAnd were these inward wars once out of hand,\nWe would, dear lords, unto the Holy Land.\n\nSHALLOW:\nCome on, come on, come on, sir; give me your hand,\nsir, give me your hand, sir: an early stirrer, by\nthe rood! And how doth my good cousin Silence?\n\nSILENCE:\nGood morrow, good cousin Shallow.\n\nSHALLOW:\nAnd how doth my cousin, your bedfellow? and your\nfairest daughter and mine, my god-daughter Ellen?\n\nSILENCE:\nAlas, a black ousel, cousin Shallow!\n\nSHALLOW:\nBy yea and nay, sir, I dare say my cousin William is\nbecome a good scholar: he is at Oxford still, is he not?\n\nSILENCE:\nIndeed, sir, to my cost.\n\nSHALLOW:\nA' must, then, to the inns o' court shortly. I was\nonce of Clement's Inn, where I think they will\ntalk of mad Shallow yet.\n\nSILENCE:\nYou were called 'lusty Shallow' then, cousin.\n\nSHALLOW:\nBy the mass, I was called any thing; and I would\nhave done any thing indeed too, and roundly too.\nThere was I, and little John Doit of Staffordshire,\nand black George Barnes, and Francis Pickbone, and\nWill Squele, a Cotswold man; you had not four such\nswinge-bucklers in all the inns o' court again: and\nI may say to you, we knew where the bona-robas were\nand had the best of them all at commandment. Then\nwas Jack Falstaff, now Sir John, a boy, and page to\nThomas Mowbray, Duke of Norfolk.\n\nSILENCE:\nThis Sir John, cousin, that comes hither anon about soldiers?\n\nSHALLOW:\nThe same Sir John, the very same. I  see him break\nSkogan's head at the court-gate, when a' was a\ncrack not thus high: and the very same day did I\nfight with one Sampson Stockfish, a fruiterer,\nbehind Gray's Inn. Jesu, Jesu, the mad days that I\nhave spent! and to see how many of my old\nacquaintance are dead!\n\nSILENCE:\nWe shall all follow, cousin.\n\nSHADOW:\nCertain, 'tis certain; very sure, very sure: death,\nas the Psalmist saith, is certain to all; all shall\ndie. How a good yoke of bullocks at Stamford fair?\n\nSILENCE:\nBy my troth, I was not there.\n\nSHALLOW:\nDeath is certain. Is old Double of your town living\nyet?\n\nSILENCE:\nDead, sir.\n\nSHALLOW:\nJesu, Jesu, dead! a' drew a good bow; and dead! a'\nshot a fine shoot: John a Gaunt loved him well, and\nbetted much money on his head. Dead! a' would have\nclapped i' the clout at twelve score; and carried\nyou a forehand shaft a fourteen and fourteen and a\nhalf, that it would have done a man's heart good to\nsee. How a score of ewes now?\n\nSILENCE:\nThereafter as they be: a score of good ewes may be\nworth ten pounds.\n\nSHALLOW:\nAnd is old Double dead?\n\nSILENCE:\nHere come two of Sir John Falstaff's men, as I think.\n\nBARDOLPH:\nGood morrow, honest gentlemen: I beseech you, which\nis Justice Shallow?\n\nSHALLOW:\nI am Robert Shallow, sir; a poor esquire of this\ncounty, and one of the king's justices of the peace:\nWhat is your good pleasure with me?\n\nBARDOLPH:\nMy captain, sir, commends him to you; my captain,\nSir John Falstaff, a tall gentleman, by heaven, and\na most gallant leader.\n\nSHALLOW:\nHe greets me well, sir. I knew him a good backsword\nman. How doth the good knight? may I ask how my\nlady his wife doth?\n\nBARDOLPH:\nSir, pardon; a soldier is better accommodated than\nwith a wife.\n\nSHALLOW:\nIt is well said, in faith, sir; and it is well said\nindeed too. Better accommodated! it is good; yea,\nindeed, is it: good phrases are surely, and ever\nwere, very commendable. Accommodated! it comes of\n'accommodo' very good; a good phrase.\n\nBARDOLPH:\nPardon me, sir; I have heard the word. Phrase call\nyou it? by this good day, I know not the phrase;\nbut I will maintain the word with my sword to be a\nsoldier-like word, and a word of exceeding good\ncommand, by heaven. Accommodated; that is, when a\nman is, as they say, accommodated; or when a man is,\nbeing, whereby a' may be thought to be accommodated;\nwhich is an excellent thing.\n\nSHALLOW:\nIt is very just.\nLook, here comes good Sir John. Give me your good\nhand, give me your worship's good hand: by my\ntroth, you like well and bear your years very well:\nwelcome, good Sir John.\n\nFALSTAFF:\nI am glad to see you well, good Master Robert\nShallow: Master Surecard, as I think?\n\nSHALLOW:\nNo, Sir John; it is my cousin Silence, in commission with me.\n\nFALSTAFF:\nGood Master Silence, it well befits you should be of\nthe peace.\n\nSILENCE:\nYour good-worship is welcome.\n\nFALSTAFF:\nFie! this is hot weather, gentlemen. Have you\nprovided me here half a dozen sufficient men?\n\nSHALLOW:\nMarry, have we, sir. Will you sit?\n\nFALSTAFF:\nLet me see them, I beseech you.\n\nSHALLOW:\nWhere's the roll? where's the roll? where's the\nroll? Let me see, let me see, let me see. So, so:\nyea, marry, sir: Ralph Mouldy! Let them appear as\nI call; let them do so, let them do so. Let me\nsee; where is Mouldy?\n\nMOULDY:\nHere, an't please you.\n\nSHALLOW:\nWhat think you, Sir John? a good-limbed fellow;\nyoung, strong, and of good friends.\n\nFALSTAFF:\nIs thy name Mouldy?\n\nMOULDY:\nYea, an't please you.\n\nFALSTAFF:\n'Tis the more time thou wert used.\n\nSHALLOW:\nHa, ha, ha! most excellent, i' faith! Things that\nare mouldy lack use: very singular good! in faith,\nwell said, Sir John, very well said.\n\nFALSTAFF:\nPrick him.\n\nMOULDY:\nI was pricked well enough before, an you could have\nlet me alone: my old dame will be undone now for\none to do her husbandry and her drudgery: you need\nnot to have pricked me; there are other men fitter\nto go out than I.\n\nFALSTAFF:\nGo to: peace, Mouldy; you shall go. Mouldy, it is\ntime you were spent.\n\nMOULDY:\nSpent!\n\nSHALLOW:\nPeace, fellow, peace; stand aside: know you where\nyou are? For the other, Sir John: let me see:\nSimon Shadow!\n\nFALSTAFF:\nYea, marry, let me have him to sit under: he's like\nto be a cold soldier.\n\nSHALLOW:\nWhere's Shadow?\n\nSHADOW:\nHere, sir.\n\nFALSTAFF:\nShadow, whose son art thou?\n\nSHADOW:\nMy mother's son, sir.\n\nFALSTAFF:\nThy mother's son! like enough, and thy father's\nshadow: so the son of the female is the shadow of\nthe male: it is often so, indeed; but much of the\nfather's substance!\n\nSHALLOW:\nDo you like him, Sir John?\n\nFALSTAFF:\nShadow will serve for summer; prick him, for we have\na number of shadows to fill up the muster-book.\n\nSHALLOW:\nThomas Wart!\n\nFALSTAFF:\nWhere's he?\n\nWART:\nHere, sir.\n\nFALSTAFF:\nIs thy name Wart?\n\nWART:\nYea, sir.\n\nFALSTAFF:\nThou art a very ragged wart.\n\nSHALLOW:\nShall I prick him down, Sir John?\n\nFALSTAFF:\nIt were superfluous; for his apparel is built upon\nhis back and the whole frame stands upon pins:\nprick him no more.\n\nSHALLOW:\nHa, ha, ha! you can do it, sir; you can do it: I\ncommend you well. Francis Feeble!\n\nFEEBLE:\nHere, sir.\n\nFALSTAFF:\nWhat trade art thou, Feeble?\n\nFEEBLE:\nA woman's tailor, sir.\n\nSHALLOW:\nShall I prick him, sir?\n\nFALSTAFF:\nYou may: but if he had been a man's tailor, he'ld\nha' pricked you. Wilt thou make as many holes in\nan enemy's battle as thou hast done in a woman's petticoat?\n\nFEEBLE:\nI will do my good will, sir; you can have no more.\n\nFALSTAFF:\nWell said, good woman's tailor! well said,\ncourageous Feeble! thou wilt be as valiant as the\nwrathful dove or most magnanimous mouse. Prick the\nwoman's tailor: well, Master Shallow; deep, Master Shallow.\n\nFEEBLE:\nI would Wart might have gone, sir.\n\nFALSTAFF:\nI would thou wert a man's tailor, that thou mightst\nmend him and make him fit to go. I cannot put him\nto a private soldier that is the leader of so many\nthousands: let that suffice, most forcible Feeble.\n\nFEEBLE:\nIt shall suffice, sir.\n\nFALSTAFF:\nI am bound to thee, reverend Feeble. Who is next?\n\nSHALLOW:\nPeter Bullcalf o' the green!\n\nFALSTAFF:\nYea, marry, let's see Bullcalf.\n\nBULLCALF:\nHere, sir.\n\nFALSTAFF:\n'Fore God, a likely fellow! Come, prick me Bullcalf\ntill he roar again.\n\nBULLCALF:\nO Lord! good my lord captain,--\n\nFALSTAFF:\nWhat, dost thou roar before thou art pricked?\n\nBULLCALF:\nO Lord, sir! I am a diseased man.\n\nFALSTAFF:\nWhat disease hast thou?\n\nBULLCALF:\nA whoreson cold, sir, a cough, sir, which I caught\nwith ringing in the king's affairs upon his\ncoronation-day, sir.\n\nFALSTAFF:\nCome, thou shalt go to the wars in a gown; we wilt\nhave away thy cold; and I will take such order that\nmy friends shall ring for thee. Is here all?\n\nSHALLOW:\nHere is two more called than your number, you must\nhave but four here, sir: and so, I pray you, go in\nwith me to dinner.\n\nFALSTAFF:\nCome, I will go drink with you, but I cannot tarry\ndinner. I am glad to see you, by my troth, Master Shallow.\n\nSHALLOW:\nO, Sir John, do you remember since we lay all night\nin the windmill in Saint George's field?\n\nFALSTAFF:\nNo more of that, good Master Shallow, no more of that.\n\nSHALLOW:\nHa! 'twas a merry night. And is Jane Nightwork alive?\n\nFALSTAFF:\nShe lives, Master Shallow.\n\nSHALLOW:\nShe never could away with me.\n\nFALSTAFF:\nNever, never; she would always say she could not\nabide Master Shallow.\n\nSHALLOW:\nBy the mass, I could anger her to the heart. She\nwas then a bona-roba. Doth she hold her own well?\n\nFALSTAFF:\nOld, old, Master Shallow.\n\nSHALLOW:\nNay, she must be old; she cannot choose but be old;\ncertain she's old; and had Robin Nightwork by old\nNightwork before I came to Clement's Inn.\n\nSILENCE:\nThat's fifty-five year ago.\n\nSHALLOW:\nHa, cousin Silence, that thou hadst seen that that\nthis knight and I have seen! Ha, Sir John, said I well?\n\nFALSTAFF:\nWe have heard the chimes at midnight, Master Shallow.\n\nSHALLOW:\nThat we have, that we have, that we have; in faith,\nSir John, we have: our watch-word was 'Hem boys!'\nCome, let's to dinner; come, let's to dinner:\nJesus, the days that we have seen! Come, come.\n\nBULLCALF:\nGood Master Corporate Bardolph, stand my friend;\nand here's four Harry ten shillings in French crowns\nfor you. In very truth, sir, I had as lief be\nhanged, sir, as go: and yet, for mine own part, sir,\nI do not care; but rather, because I am unwilling,\nand, for mine own part, have a desire to stay with\nmy friends; else, sir, I did not care, for mine own\npart, so much.\n\nBARDOLPH:\nGo to; stand aside.\n\nMOULDY:\nAnd, good master corporal captain, for my old\ndame's sake, stand my friend: she has nobody to do\nany thing about her when I am gone; and she is old,\nand cannot help herself: You shall have forty, sir.\n\nBARDOLPH:\nGo to; stand aside.\n\nFEEBLE:\nBy my troth, I care not; a man can die but once: we\nowe God a death: I'll ne'er bear a base mind:\nan't be my destiny, so; an't be not, so: no man is\ntoo good to serve's prince; and let it go which way\nit will, he that dies this year is quit for the next.\n\nBARDOLPH:\nWell said; thou'rt a good fellow.\n\nFEEBLE:\nFaith, I'll bear no base mind.\n\nFALSTAFF:\nCome, sir, which men shall I have?\n\nSHALLOW:\nFour of which you please.\n\nBARDOLPH:\nSir, a word with you: I have three pound to free\nMouldy and Bullcalf.\n\nFALSTAFF:\nGo to; well.\n\nSHALLOW:\nCome, Sir John, which four will you have?\n\nFALSTAFF:\nDo you choose for me.\n\nSHALLOW:\nMarry, then, Mouldy, Bullcalf, Feeble and Shadow.\n\nFALSTAFF:\nMouldy and Bullcalf: for you, Mouldy, stay at home\ntill you are past service: and for your part,\nBullcalf, grow till you come unto it: I will none of you.\n\nSHALLOW:\nSir John, Sir John, do not yourself wrong: they are\nyour likeliest men, and I would have you served with the best.\n\nFALSTAFF:\nWill you tell me, Master Shallow, how to choose a\nman? Care I for the limb, the thewes, the stature,\nbulk, and big assemblance of a man! Give me the\nspirit, Master Shallow. Here's Wart; you see what a\nragged appearance it is; a' shall charge you and\ndischarge you with the motion of a pewterer's\nhammer, come off and on swifter than he that gibbets\non the brewer's bucket. And this same half-faced\nfellow, Shadow; give me this man: he presents no\nmark to the enemy; the foeman may with as great aim\nlevel at the edge of a penknife. And for a retreat;\nhow swiftly will this Feeble the woman's tailor run\noff! O, give me the spare men, and spare me the\ngreat ones. Put me a caliver into Wart's hand, Bardolph.\n\nBARDOLPH:\nHold, Wart, traverse; thus, thus, thus.\n\nFALSTAFF:\nCome, manage me your caliver. So: very well: go\nto: very good, exceeding good. O, give me always a\nlittle, lean, old, chapt, bald shot. Well said, i'\nfaith, Wart; thou'rt a good scab: hold, there's a\ntester for thee.\n\nSHALLOW:\nHe is not his craft's master; he doth not do it\nright. I remember at Mile-end Green, when I lay at\nClement's Inn--I was then Sir Dagonet in Arthur's\nshow,--there was a little quiver fellow, and a'\nwould manage you his piece thus; and a' would about\nand about, and come you in and come you in: 'rah,\ntah, tah,' would a' say; 'bounce' would a' say; and\naway again would a' go, and again would a' come: I\nshall ne'er see such a fellow.\n\nFALSTAFF:\nThese fellows will do well, Master Shallow. God\nkeep you, Master Silence: I will not use many words\nwith you. Fare you well, gentlemen both: I thank\nyou: I must a dozen mile to-night. Bardolph, give\nthe soldiers coats.\n\nSHALLOW:\nSir John, the Lord bless you! God prosper your\naffairs! God send us peace! At your return visit\nour house; let our old acquaintance be renewed;\nperadventure I will with ye to the court.\n\nFALSTAFF:\n'Fore God, I would you would, Master Shallow.\n\nSHALLOW:\nGo to; I have spoke at a word. God keep you.\n\nFALSTAFF:\nFare you well, gentle gentlemen.\nOn, Bardolph; lead the men away.\nAs I return, I will fetch off these justices: I do\nsee the bottom of Justice Shallow. Lord, Lord, how\nsubject we old men are to this vice of lying! This\nsame starved justice hath done nothing but prate to\nme of the wildness of his youth, and the feats he\nhath done about Turnbull Street: and every third\nword a lie, duer paid to the hearer than the Turk's\ntribute. I do remember him at Clement's Inn like a\nman made after supper of a cheese-paring: when a'\nwas naked, he was, for all the world, like a forked\nradish, with a head fantastically carved upon it\nwith a knife: a' was so forlorn, that his\ndimensions to any thick sight were invincible: a'\nwas the very genius of famine; yet lecherous as a\nmonkey, and the whores called him mandrake: a' came\never in the rearward of the fashion, and sung those\ntunes to the overscutched huswives that he heard the\ncarmen whistle, and swear they were his fancies or\nhis good-nights. And now is this Vice's dagger\nbecome a squire, and talks as familiarly of John a\nGaunt as if he had been sworn brother to him; and\nI'll be sworn a' ne'er saw him but once in the\nTilt-yard; and then he burst his head for crowding\namong the marshal's men. I saw it, and told John a\nGaunt he beat his own name; for you might have\nthrust him and all his apparel into an eel-skin; the\ncase of a treble hautboy was a mansion for him, a\ncourt: and now has he land and beefs. Well, I'll\nbe acquainted with him, if I return; and it shall\ngo hard but I will make him a philosopher's two\nstones to me: if the young dace be a bait for the\nold pike, I see no reason in the law of nature but I\nmay snap at him. Let time shape, and there an end.\n\nARCHBISHOP OF YORK:\nWhat is this forest call'd?\n\nHASTINGS:\n'Tis Gaultree Forest, an't shall please your grace.\n\nARCHBISHOP OF YORK:\nHere stand, my lords; and send discoverers forth\nTo know the numbers of our enemies.\n\nHASTINGS:\nWe have sent forth already.\n\nARCHBISHOP OF YORK:\n'Tis well done.\nMy friends and brethren in these great affairs,\nI must acquaint you that I have received\nNew-dated letters from Northumberland;\nTheir cold intent, tenor and substance, thus:\nHere doth he wish his person, with such powers\nAs might hold sortance with his quality,\nThe which he could not levy; whereupon\nHe is retired, to ripe his growing fortunes,\nTo Scotland: and concludes in hearty prayers\nThat your attempts may overlive the hazard\nAnd fearful melting of their opposite.\n\nMOWBRAY:\nThus do the hopes we have in him touch ground\nAnd dash themselves to pieces.\n\nHASTINGS:\nNow, what news?\n\nMessenger:\nWest of this forest, scarcely off a mile,\nIn goodly form comes on the enemy;\nAnd, by the ground they hide, I judge their number\nUpon or near the rate of thirty thousand.\n\nMOWBRAY:\nThe just proportion that we gave them out\nLet us sway on and face them in the field.\n\nARCHBISHOP OF YORK:\nWhat well-appointed leader fronts us here?\n\nMOWBRAY:\nI think it is my Lord of Westmoreland.\n\nWESTMORELAND:\nHealth and fair greeting from our general,\nThe prince, Lord John and Duke of Lancaster.\n\nARCHBISHOP OF YORK:\nSay on, my Lord of Westmoreland, in peace:\nWhat doth concern your coming?\n\nWESTMORELAND:\nThen, my lord,\nUnto your grace do I in chief address\nThe substance of my speech. If that rebellion\nCame like itself, in base and abject routs,\nLed on by bloody youth, guarded with rags,\nAnd countenanced by boys and beggary,\nI say, if damn'd commotion so appear'd,\nIn his true, native and most proper shape,\nYou, reverend father, and these noble lords\nHad not been here, to dress the ugly form\nOf base and bloody insurrection\nWith your fair honours. You, lord archbishop,\nWhose see is by a civil peace maintained,\nWhose beard the silver hand of peace hath touch'd,\nWhose learning and good letters peace hath tutor'd,\nWhose white investments figure innocence,\nThe dove and very blessed spirit of peace,\nWherefore do you so ill translate ourself\nOut of the speech of peace that bears such grace,\nInto the harsh and boisterous tongue of war;\nTurning your books to graves, your ink to blood,\nYour pens to lances and your tongue divine\nTo a trumpet and a point of war?\n\nARCHBISHOP OF YORK:\nWherefore do I this? so the question stands.\nBriefly to this end: we are all diseased,\nAnd with our surfeiting and wanton hours\nHave brought ourselves into a burning fever,\nAnd we must bleed for it; of which disease\nOur late king, Richard, being infected, died.\nBut, my most noble Lord of Westmoreland,\nI take not on me here as a physician,\nNor do I as an enemy to peace\nTroop in the throngs of military men;\nBut rather show awhile like fearful war,\nTo diet rank minds sick of happiness\nAnd purge the obstructions which begin to stop\nOur very veins of life. Hear me more plainly.\nI have in equal balance justly weigh'd\nWhat wrongs our arms may do, what wrongs we suffer,\nAnd find our griefs heavier than our offences.\nWe see which way the stream of time doth run,\nAnd are enforced from our most quiet there\nBy the rough torrent of occasion;\nAnd have the summary of all our griefs,\nWhen time shall serve, to show in articles;\nWhich long ere this we offer'd to the king,\nAnd might by no suit gain our audience:\nWhen we are wrong'd and would unfold our griefs,\nWe are denied access unto his person\nEven by those men that most have done us wrong.\nThe dangers of the days but newly gone,\nWhose memory is written on the earth\nWith yet appearing blood, and the examples\nOf every minute's instance, present now,\nHath put us in these ill-beseeming arms,\nNot to break peace or any branch of it,\nBut to establish here a peace indeed,\nConcurring both in name and quality.\n\nWESTMORELAND:\nWhen ever yet was your appeal denied?\nWherein have you been galled by the king?\nWhat peer hath been suborn'd to grate on you,\nThat you should seal this lawless bloody book\nOf forged rebellion with a seal divine\nAnd consecrate commotion's bitter edge?\n\nARCHBISHOP OF YORK:\nMy brother general, the commonwealth,\nTo brother born an household cruelty,\nI make my quarrel in particular.\n\nWESTMORELAND:\nThere is no need of any such redress;\nOr if there were, it not belongs to you.\n\nMOWBRAY:\nWhy not to him in part, and to us all\nThat feel the bruises of the days before,\nAnd suffer the condition of these times\nTo lay a heavy and unequal hand\nUpon our honours?\n\nWESTMORELAND:\nO, my good Lord Mowbray,\nConstrue the times to their necessities,\nAnd you shall say indeed, it is the time,\nAnd not the king, that doth you injuries.\nYet for your part, it not appears to me\nEither from the king or in the present time\nThat you should have an inch of any ground\nTo build a grief on: were you not restored\nTo all the Duke of Norfolk's signories,\nYour noble and right well remember'd father's?\n\nMOWBRAY:\nWhat thing, in honour, had my father lost,\nThat need to be revived and breathed in me?\nThe king that loved him, as the state stood then,\nWas force perforce compell'd to banish him:\nAnd then that Harry Bolingbroke and he,\nBeing mounted and both roused in their seats,\nTheir neighing coursers daring of the spur,\nTheir armed staves in charge, their beavers down,\nTheir eyes of fire sparking through sights of steel\nAnd the loud trumpet blowing them together,\nThen, then, when there was nothing could have stay'd\nMy father from the breast of Bolingbroke,\nO when the king did throw his warder down,\nHis own life hung upon the staff he threw;\nThen threw he down himself and all their lives\nThat by indictment and by dint of sword\nHave since miscarried under Bolingbroke.\n\nWESTMORELAND:\nYou speak, Lord Mowbray, now you know not what.\nThe Earl of Hereford was reputed then\nIn England the most valiant gentlemen:\nWho knows on whom fortune would then have smiled?\nBut if your father had been victor there,\nHe ne'er had borne it out of Coventry:\nFor all the country in a general voice\nCried hate upon him; and all their prayers and love\nWere set on Hereford, whom they doted on\nAnd bless'd and graced indeed, more than the king.\nBut this is mere digression from my purpose.\nHere come I from our princely general\nTo know your griefs; to tell you from his grace\nThat he will give you audience; and wherein\nIt shall appear that your demands are just,\nYou shall enjoy them, every thing set off\nThat might so much as think you enemies.\n\nMOWBRAY:\nBut he hath forced us to compel this offer;\nAnd it proceeds from policy, not love.\n\nWESTMORELAND:\nMowbray, you overween to take it so;\nThis offer comes from mercy, not from fear:\nFor, lo! within a ken our army lies,\nUpon mine honour, all too confident\nTo give admittance to a thought of fear.\nOur battle is more full of names than yours,\nOur men more perfect in the use of arms,\nOur armour all as strong, our cause the best;\nThen reason will our heart should be as good\nSay you not then our offer is compell'd.\n\nMOWBRAY:\nWell, by my will we shall admit no parley.\n\nWESTMORELAND:\nThat argues but the shame of your offence:\nA rotten case abides no handling.\n\nHASTINGS:\nHath the Prince John a full commission,\nIn very ample virtue of his father,\nTo hear and absolutely to determine\nOf what conditions we shall stand upon?\n\nWESTMORELAND:\nThat is intended in the general's name:\nI muse you make so slight a question.\n\nARCHBISHOP OF YORK:\nThen take, my Lord of Westmoreland, this schedule,\nFor this contains our general grievances:\nEach several article herein redress'd,\nAll members of our cause, both here and hence,\nThat are insinew'd to this action,\nAcquitted by a true substantial form\nAnd present execution of our wills\nTo us and to our purposes confined,\nWe come within our awful banks again\nAnd knit our powers to the arm of peace.\n\nWESTMORELAND:\nThis will I show the general. Please you, lords,\nIn sight of both our battles we may meet;\nAnd either end in peace, which God so frame!\nOr to the place of difference call the swords\nWhich must decide it.\n\nARCHBISHOP OF YORK:\nMy lord, we will do so.\n\nMOWBRAY:\nThere is a thing within my bosom tells me\nThat no conditions of our peace can stand.\n\nHASTINGS:\nFear you not that: if we can make our peace\nUpon such large terms and so absolute\nAs our conditions shall consist upon,\nOur peace shall stand as firm as rocky mountains.\n\nMOWBRAY:\nYea, but our valuation shall be such\nThat every slight and false-derived cause,\nYea, every idle, nice and wanton reason\nShall to the king taste of this action;\nThat, were our royal faiths martyrs in love,\nWe shall be winnow'd with so rough a wind\nThat even our corn shall seem as light as chaff\nAnd good from bad find no partition.\n\nARCHBISHOP OF YORK:\nNo, no, my lord. Note this; the king is weary\nOf dainty and such picking grievances:\nFor he hath found to end one doubt by death\nRevives two greater in the heirs of life,\nAnd therefore will he wipe his tables clean\nAnd keep no tell-tale to his memory\nThat may repeat and history his loss\nTo new remembrance; for full well he knows\nHe cannot so precisely weed this land\nAs his misdoubts present occasion:\nHis foes are so enrooted with his friends\nThat, plucking to unfix an enemy,\nHe doth unfasten so and shake a friend:\nSo that this land, like an offensive wife\nThat hath enraged him on to offer strokes,\nAs he is striking, holds his infant up\nAnd hangs resolved correction in the arm\nThat was uprear'd to execution.\n\nHASTINGS:\nBesides, the king hath wasted all his rods\nOn late offenders, that he now doth lack\nThe very instruments of chastisement:\nSo that his power, like to a fangless lion,\nMay offer, but not hold.\n\nARCHBISHOP OF YORK:\n'Tis very true:\nAnd therefore be assured, my good lord marshal,\nIf we do now make our atonement well,\nOur peace will, like a broken limb united,\nGrow stronger for the breaking.\n\nMOWBRAY:\nBe it so.\nHere is return'd my Lord of Westmoreland.\n\nWESTMORELAND:\nThe prince is here at hand: pleaseth your lordship\nTo meet his grace just distance 'tween our armies.\n\nMOWBRAY:\nYour grace of York, in God's name then, set forward.\n\nARCHBISHOP OF YORK:\nBefore, and greet his grace: my lord, we come.\n\nLANCASTER:\nYou are well encounter'd here, my cousin Mowbray:\nGood day to you, gentle lord archbishop;\nAnd so to you, Lord Hastings, and to all.\nMy Lord of York, it better show'd with you\nWhen that your flock, assembled by the bell,\nEncircled you to hear with reverence\nYour exposition on the holy text\nThan now to see you here an iron man,\nCheering a rout of rebels with your drum,\nTurning the word to sword and life to death.\nThat man that sits within a monarch's heart,\nAnd ripens in the sunshine of his favour,\nWould he abuse the countenance of the king,\nAlack, what mischiefs might he set abrooch\nIn shadow of such greatness! With you, lord bishop,\nIt is even so. Who hath not heard it spoken\nHow deep you were within the books of God?\nTo us the speaker in his parliament;\nTo us the imagined voice of God himself;\nThe very opener and intelligencer\nBetween the grace, the sanctities of heaven\nAnd our dull workings. O, who shall believe\nBut you misuse the reverence of your place,\nEmploy the countenance and grace of heaven,\nAs a false favourite doth his prince's name,\nIn deeds dishonourable? You have ta'en up,\nUnder the counterfeited zeal of God,\nThe subjects of his substitute, my father,\nAnd both against the peace of heaven and him\nHave here up-swarm'd them.\n\nARCHBISHOP OF YORK:\nGood my Lord of Lancaster,\nI am not here against your father's peace;\nBut, as I told my lord of Westmoreland,\nThe time misorder'd doth, in common sense,\nCrowd us and crush us to this monstrous form,\nTo hold our safety up. I sent your grace\nThe parcels and particulars of our grief,\nThe which hath been with scorn shoved from the court,\nWhereon this Hydra son of war is born;\nWhose dangerous eyes may well be charm'd asleep\nWith grant of our most just and right desires,\nAnd true obedience, of this madness cured,\nStoop tamely to the foot of majesty.\n\nMOWBRAY:\nIf not, we ready are to try our fortunes\nTo the last man.\n\nHASTINGS:\nAnd though we here fall down,\nWe have supplies to second our attempt:\nIf they miscarry, theirs shall second them;\nAnd so success of mischief shall be born\nAnd heir from heir shall hold this quarrel up\nWhiles England shall have generation.\n\nLANCASTER:\nYou are too shallow, Hastings, much too shallow,\nTo sound the bottom of the after-times.\n\nWESTMORELAND:\nPleaseth your grace to answer them directly\nHow far forth you do like their articles.\n\nLANCASTER:\nI like them all, and do allow them well,\nAnd swear here, by the honour of my blood,\nMy father's purposes have been mistook,\nAnd some about him have too lavishly\nWrested his meaning and authority.\nMy lord, these griefs shall be with speed redress'd;\nUpon my soul, they shall. If this may please you,\nDischarge your powers unto their several counties,\nAs we will ours: and here between the armies\nLet's drink together friendly and embrace,\nThat all their eyes may bear those tokens home\nOf our restored love and amity.\n\nARCHBISHOP OF YORK:\nI take your princely word for these redresses.\n\nLANCASTER:\nI give it you, and will maintain my word:\nAnd thereupon I drink unto your grace.\n\nHASTINGS:\nGo, captain, and deliver to the army\nThis news of peace: let them have pay, and part:\nI know it will well please them. Hie thee, captain.\n\nARCHBISHOP OF YORK:\nTo you, my noble Lord of Westmoreland.\n\nWESTMORELAND:\nI pledge your grace; and, if you knew what pains\nI have bestow'd to breed this present peace,\nYou would drink freely: but my love to ye\nShall show itself more openly hereafter.\n\nARCHBISHOP OF YORK:\nI do not doubt you.\n\nWESTMORELAND:\nI am glad of it.\nHealth to my lord and gentle cousin, Mowbray.\n\nMOWBRAY:\nYou wish me health in very happy season;\nFor I am, on the sudden, something ill.\n\nARCHBISHOP OF YORK:\nAgainst ill chances men are ever merry;\nBut heaviness foreruns the good event.\n\nWESTMORELAND:\nTherefore be merry, coz; since sudden sorrow\nServes to say thus, 'some good thing comes\nto-morrow.'\n\nARCHBISHOP OF YORK:\nBelieve me, I am passing light in spirit.\n\nMOWBRAY:\nSo much the worse, if your own rule be true.\n\nLANCASTER:\nThe word of peace is render'd: hark, how they shout!\n\nMOWBRAY:\nThis had been cheerful after victory.\n\nARCHBISHOP OF YORK:\nA peace is of the nature of a conquest;\nFor then both parties nobly are subdued,\nAnd neither party loser.\n\nLANCASTER:\nGo, my lord,\nAnd let our army be discharged too.\nAnd, good my lord, so please you, let our trains\nMarch, by us, that we may peruse the men\nWe should have coped withal.\n\nARCHBISHOP OF YORK:\nGo, good Lord Hastings,\nAnd, ere they be dismissed, let them march by.\n\nLANCASTER:\nI trust, lords, we shall lie to-night together.\nNow, cousin, wherefore stands our army still?\n\nWESTMORELAND:\nThe leaders, having charge from you to stand,\nWill not go off until they hear you speak.\n\nLANCASTER:\nThey know their duties.\n\nHASTINGS:\nMy lord, our army is dispersed already;\nLike youthful steers unyoked, they take their courses\nEast, west, north, south; or, like a school broke up,\nEach hurries toward his home and sporting-place.\n\nWESTMORELAND:\nGood tidings, my Lord Hastings; for the which\nI do arrest thee, traitor, of high treason:\nAnd you, lord archbishop, and you, Lord Mowbray,\nOf capitol treason I attach you both.\n\nMOWBRAY:\nIs this proceeding just and honourable?\n\nWESTMORELAND:\nIs your assembly so?\n\nARCHBISHOP OF YORK:\nWill you thus break your faith?\n\nLANCASTER:\nI pawn'd thee none:\nI promised you redress of these same grievances\nWhereof you did complain; which, by mine honour,\nI will perform with a most Christian care.\nBut for you, rebels, look to taste the due\nMeet for rebellion and such acts as yours.\nMost shallowly did you these arms commence,\nFondly brought here and foolishly sent hence.\nStrike up our drums, pursue the scatter'd stray:\nGod, and not we, hath safely fought to-day.\nSome guard these traitors to the block of death,\nTreason's true bed and yielder up of breath.\n\nFALSTAFF:\nWhat's your name, sir? of what condition are you,\nand of what place, I pray?\n\nCOLEVILE:\nI am a knight, sir, and my name is Colevile of the dale.\n\nFALSTAFF:\nWell, then, Colevile is your name, a knight is your\ndegree, and your place the dale: Colevile shall be\nstill your name, a traitor your degree, and the\ndungeon your place, a place deep enough; so shall\nyou be still Colevile of the dale.\n\nCOLEVILE:\nAre not you Sir John Falstaff?\n\nFALSTAFF:\nAs good a man as he, sir, whoe'er I am. Do ye\nyield, sir? or shall I sweat for you? if I do\nsweat, they are the drops of thy lovers, and they\nweep for thy death: therefore rouse up fear and\ntrembling, and do observance to my mercy.\n\nCOLEVILE:\nI think you are Sir John Falstaff, and in that\nthought yield me.\n\nFALSTAFF:\nI have a whole school of tongues in this belly of\nmine, and not a tongue of them all speaks any other\nword but my name. An I had but a belly of any\nindifference, I were simply the most active fellow\nin Europe: my womb, my womb, my womb, undoes me.\nHere comes our general.\n\nLANCASTER:\nThe heat is past; follow no further now:\nCall in the powers, good cousin Westmoreland.\nNow, Falstaff, where have you been all this while?\nWhen every thing is ended, then you come:\nThese tardy tricks of yours will, on my life,\nOne time or other break some gallows' back.\n\nFALSTAFF:\nI would be sorry, my lord, but it should be thus: I\nnever knew yet but rebuke and cheque was the reward\nof valour. Do you think me a swallow, an arrow, or a\nbullet? have I, in my poor and old motion, the\nexpedition of thought? I have speeded hither with\nthe very extremest inch of possibility; I have\nfoundered nine score and odd posts: and here,\ntravel-tainted as I am, have in my pure and\nimmaculate valour, taken Sir John Colevile of the\ndale, a most furious knight and valorous enemy.\nBut what of that? he saw me, and yielded; that I\nmay justly say, with the hook-nosed fellow of Rome,\n'I came, saw, and overcame.'\n\nLANCASTER:\nIt was more of his courtesy than your deserving.\n\nFALSTAFF:\nI know not: here he is, and here I yield him: and\nI beseech your grace, let it be booked with the\nrest of this day's deeds; or, by the Lord, I will\nhave it in a particular ballad else, with mine own\npicture on the top on't, Colevile kissing my foot:\nto the which course if I be enforced, if you do not\nall show like gilt twopences to me, and I in the\nclear sky of fame o'ershine you as much as the full\nmoon doth the cinders of the element, which show\nlike pins' heads to her, believe not the word of\nthe noble: therefore let me have right, and let\ndesert mount.\n\nLANCASTER:\nThine's too heavy to mount.\n\nFALSTAFF:\nLet it shine, then.\n\nLANCASTER:\nThine's too thick to shine.\n\nFALSTAFF:\nLet it do something, my good lord, that may do me\ngood, and call it what you will.\n\nLANCASTER:\nIs thy name Colevile?\n\nCOLEVILE:\nIt is, my lord.\n\nLANCASTER:\nA famous rebel art thou, Colevile.\n\nFALSTAFF:\nAnd a famous true subject took him.\n\nCOLEVILE:\nI am, my lord, but as my betters are\nThat led me hither: had they been ruled by me,\nYou should have won them dearer than you have.\n\nFALSTAFF:\nI know not how they sold themselves: but thou, like\na kind fellow, gavest thyself away gratis; and I\nthank thee for thee.\n\nLANCASTER:\nNow, have you left pursuit?\n\nWESTMORELAND:\nRetreat is made and execution stay'd.\n\nLANCASTER:\nSend Colevile with his confederates\nTo York, to present execution:\nBlunt, lead him hence; and see you guard him sure.\nAnd now dispatch we toward the court, my lords:\nI hear the king my father is sore sick:\nOur news shall go before us to his majesty,\nWhich, cousin, you shall bear to comfort him,\nAnd we with sober speed will follow you.\n\nFALSTAFF:\nMy lord, I beseech you, give me leave to go\nThrough Gloucestershire: and, when you come to court,\nStand my good lord, pray, in your good report.\n\nLANCASTER:\nFare you well, Falstaff: I, in my condition,\nShall better speak of you than you deserve.\n\nFALSTAFF:\nI would you had but the wit: 'twere better than\nyour dukedom. Good faith, this same young sober-\nblooded boy doth not love me; nor a man cannot make\nhim laugh; but that's no marvel, he drinks no wine.\nThere's never none of these demure boys come to any\nproof; for thin drink doth so over-cool their blood,\nand making many fish-meals, that they fall into a\nkind of male green-sickness; and then when they\nmarry, they get wenches: they are generally fools\nand cowards; which some of us should be too, but for\ninflammation. A good sherris sack hath a two-fold\noperation in it. It ascends me into the brain;\ndries me there all the foolish and dull and curdy\nvapours which environ it; makes it apprehensive,\nquick, forgetive, full of nimble fiery and\ndelectable shapes, which, delivered o'er to the\nvoice, the tongue, which is the birth, becomes\nexcellent wit. The second property of your\nexcellent sherris is, the warming of the blood;\nwhich, before cold and settled, left the liver\nwhite and pale, which is the badge of pusillanimity\nand cowardice; but the sherris warms it and makes\nit course from the inwards to the parts extreme:\nit illumineth the face, which as a beacon gives\nwarning to all the rest of this little kingdom,\nman, to arm; and then the vital commoners and\ninland petty spirits muster me all to their captain,\nthe heart, who, great and puffed up with this\nretinue, doth any deed of courage; and this valour\ncomes of sherris. So that skill in the weapon is\nnothing without sack, for that sets it a-work; and\nlearning a mere hoard of gold kept by a devil, till\nsack commences it and sets it in act and use.\nHereof comes it that Prince Harry is valiant; for\nthe cold blood he did naturally inherit of his\nfather, he hath, like lean, sterile and bare land,\nmanured, husbanded and tilled with excellent\nendeavour of drinking good and good store of fertile\nsherris, that he is become very hot and valiant. If\nI had a thousand sons, the first humane principle I\nwould teach them should be, to forswear thin\npotations and to addict themselves to sack.\nHow now Bardolph?\n\nBARDOLPH:\nThe army is discharged all and gone.\n\nFALSTAFF:\nLet them go. I'll through Gloucestershire; and\nthere will I visit Master Robert Shallow, esquire:\nI have him already tempering between my finger and\nmy thumb, and shortly will I seal with him. Come away.\n\nKING HENRY IV:\nNow, lords, if God doth give successful end\nTo this debate that bleedeth at our doors,\nWe will our youth lead on to higher fields\nAnd draw no swords but what are sanctified.\nOur navy is address'd, our power collected,\nOur substitutes in absence well invested,\nAnd every thing lies level to our wish:\nOnly, we want a little personal strength;\nAnd pause us, till these rebels, now afoot,\nCome underneath the yoke of government.\n\nWARWICK:\nBoth which we doubt not but your majesty\nShall soon enjoy.\n\nKING HENRY IV:\nHumphrey, my son of Gloucester,\nWhere is the prince your brother?\n\nGLOUCESTER:\nI think he's gone to hunt, my lord, at Windsor.\n\nKING HENRY IV:\nAnd how accompanied?\n\nGLOUCESTER:\nI do not know, my lord.\n\nKING HENRY IV:\nIs not his brother, Thomas of Clarence, with him?\n\nGLOUCESTER:\nNo, my good lord; he is in presence here.\n\nCLARENCE:\nWhat would my lord and father?\n\nKING HENRY IV:\nNothing but well to thee, Thomas of Clarence.\nHow chance thou art not with the prince thy brother?\nHe loves thee, and thou dost neglect him, Thomas;\nThou hast a better place in his affection\nThan all thy brothers: cherish it, my boy,\nAnd noble offices thou mayst effect\nOf mediation, after I am dead,\nBetween his greatness and thy other brethren:\nTherefore omit him not; blunt not his love,\nNor lose the good advantage of his grace\nBy seeming cold or careless of his will;\nFor he is gracious, if he be observed:\nHe hath a tear for pity and a hand\nOpen as day for melting charity:\nYet notwithstanding, being incensed, he's flint,\nAs humorous as winter and as sudden\nAs flaws congealed in the spring of day.\nHis temper, therefore, must be well observed:\nChide him for faults, and do it reverently,\nWhen thou perceive his blood inclined to mirth;\nBut, being moody, give him line and scope,\nTill that his passions, like a whale on ground,\nConfound themselves with working. Learn this, Thomas,\nAnd thou shalt prove a shelter to thy friends,\nA hoop of gold to bind thy brothers in,\nThat the united vessel of their blood,\nMingled with venom of suggestion--\nAs, force perforce, the age will pour it in--\nShall never leak, though it do work as strong\nAs aconitum or rash gunpowder.\n\nCLARENCE:\nI shall observe him with all care and love.\n\nKING HENRY IV:\nWhy art thou not at Windsor with him, Thomas?\n\nCLARENCE:\nHe is not there to-day; he dines in London.\n\nKING HENRY IV:\nAnd how accompanied? canst thou tell that?\n\nCLARENCE:\nWith Poins, and other his continual followers.\n\nKING HENRY IV:\nMost subject is the fattest soil to weeds;\nAnd he, the noble image of my youth,\nIs overspread with them: therefore my grief\nStretches itself beyond the hour of death:\nThe blood weeps from my heart when I do shape\nIn forms imaginary the unguided days\nAnd rotten times that you shall look upon\nWhen I am sleeping with my ancestors.\nFor when his headstrong riot hath no curb,\nWhen rage and hot blood are his counsellors,\nWhen means and lavish manners meet together,\nO, with what wings shall his affections fly\nTowards fronting peril and opposed decay!\n\nWARWICK:\nMy gracious lord, you look beyond him quite:\nThe prince but studies his companions\nLike a strange tongue, wherein, to gain the language,\n'Tis needful that the most immodest word\nBe look'd upon and learn'd; which once attain'd,\nYour highness knows, comes to no further use\nBut to be known and hated. So, like gross terms,\nThe prince will in the perfectness of time\nCast off his followers; and their memory\nShall as a pattern or a measure live,\nBy which his grace must mete the lives of others,\nTurning past evils to advantages.\n\nKING HENRY IV:\n'Tis seldom when the bee doth leave her comb\nIn the dead carrion.\nWho's here? Westmoreland?\n\nWESTMORELAND:\nHealth to my sovereign, and new happiness\nAdded to that that I am to deliver!\nPrince John your son doth kiss your grace's hand:\nMowbray, the Bishop Scroop, Hastings and all\nAre brought to the correction of your law;\nThere is not now a rebel's sword unsheath'd\nBut peace puts forth her olive every where.\nThe manner how this action hath been borne\nHere at more leisure may your highness read,\nWith every course in his particular.\n\nKING HENRY IV:\nO Westmoreland, thou art a summer bird,\nWhich ever in the haunch of winter sings\nThe lifting up of day.\nLook, here's more news.\n\nHARCOURT:\nFrom enemies heaven keep your majesty;\nAnd, when they stand against you, may they fall\nAs those that I am come to tell you of!\nThe Earl Northumberland and the Lord Bardolph,\nWith a great power of English and of Scots\nAre by the sheriff of Yorkshire overthrown:\nThe manner and true order of the fight\nThis packet, please it you, contains at large.\n\nKING HENRY IV:\nAnd wherefore should these good news make me sick?\nWill fortune never come with both hands full,\nBut write her fair words still in foulest letters?\nShe either gives a stomach and no food;\nSuch are the poor, in health; or else a feast\nAnd takes away the stomach; such are the rich,\nThat have abundance and enjoy it not.\nI should rejoice now at this happy news;\nAnd now my sight fails, and my brain is giddy:\nO me! come near me; now I am much ill.\n\nGLOUCESTER:\nComfort, your majesty!\n\nCLARENCE:\nO my royal father!\n\nWESTMORELAND:\nMy sovereign lord, cheer up yourself, look up.\n\nWARWICK:\nBe patient, princes; you do know, these fits\nAre with his highness very ordinary.\nStand from him. Give him air; he'll straight be well.\n\nCLARENCE:\nNo, no, he cannot long hold out these pangs:\nThe incessant care and labour of his mind\nHath wrought the mure that should confine it in\nSo thin that life looks through and will break out.\n\nGLOUCESTER:\nThe people fear me; for they do observe\nUnfather'd heirs and loathly births of nature:\nThe seasons change their manners, as the year\nHad found some months asleep and leap'd them over.\n\nCLARENCE:\nThe river hath thrice flow'd, no ebb between;\nAnd the old folk, time's doting chronicles,\nSay it did so a little time before\nThat our great-grandsire, Edward, sick'd and died.\n\nWARWICK:\nSpeak lower, princes, for the king recovers.\n\nGLOUCESTER:\nThis apoplexy will certain be his end.\n\nKING HENRY IV:\nI pray you, take me up, and bear me hence\nInto some other chamber: softly, pray.\n\nKING HENRY IV:\nLet there be no noise made, my gentle friends;\nUnless some dull and favourable hand\nWill whisper music to my weary spirit.\n\nWARWICK:\nCall for the music in the other room.\n\nKING HENRY IV:\nSet me the crown upon my pillow here.\n\nCLARENCE:\nHis eye is hollow, and he changes much.\n\nWARWICK:\nLess noise, less noise!\n\nPRINCE HENRY:\nWho saw the Duke of Clarence?\n\nCLARENCE:\nI am here, brother, full of heaviness.\n\nPRINCE HENRY:\nHow now! rain within doors, and none abroad!\nHow doth the king?\n\nGLOUCESTER:\nExceeding ill.\n\nPRINCE HENRY:\nHeard he the good news yet?\nTell it him.\n\nGLOUCESTER:\nHe alter'd much upon the hearing it.\n\nPRINCE HENRY:\nIf he be sick with joy, he'll recover without physic.\n\nWARWICK:\nNot so much noise, my lords: sweet prince,\nspeak low;\nThe king your father is disposed to sleep.\n\nCLARENCE:\nLet us withdraw into the other room.\n\nWARWICK:\nWill't please your grace to go along with us?\n\nPRINCE HENRY:\nNo; I will sit and watch here by the king.\nWhy doth the crown lie there upon his pillow,\nBeing so troublesome a bedfellow?\nO polish'd perturbation! golden care!\nThat keep'st the ports of slumber open wide\nTo many a watchful night! sleep with it now!\nYet not so sound and half so deeply sweet\nAs he whose brow with homely biggen bound\nSnores out the watch of night. O majesty!\nWhen thou dost pinch thy bearer, thou dost sit\nLike a rich armour worn in heat of day,\nThat scalds with safety. By his gates of breath\nThere lies a downy feather which stirs not:\nDid he suspire, that light and weightless down\nPerforce must move. My gracious lord! my father!\nThis sleep is sound indeed, this is a sleep\nThat from this golden rigol hath divorced\nSo many English kings. Thy due from me\nIs tears and heavy sorrows of the blood,\nWhich nature, love, and filial tenderness,\nShall, O dear father, pay thee plenteously:\nMy due from thee is this imperial crown,\nWhich, as immediate as thy place and blood,\nDerives itself to me. Lo, here it sits,\nWhich God shall guard: and put the world's whole strength\nInto one giant arm, it shall not force\nThis lineal honour from me: this from thee\nWill I to mine leave, as 'tis left to me.\n\nKING HENRY IV:\nWarwick! Gloucester! Clarence!\n\nCLARENCE:\nDoth the king call?\n\nWARWICK:\nWhat would your majesty? How fares your grace?\n\nKING HENRY IV:\nWhy did you leave me here alone, my lords?\n\nCLARENCE:\nWe left the prince my brother here, my liege,\nWho undertook to sit and watch by you.\n\nKING HENRY IV:\nThe Prince of Wales! Where is he? let me see him:\nHe is not here.\n\nWARWICK:\nThis door is open; he is gone this way.\n\nGLOUCESTER:\nHe came not through the chamber where we stay'd.\n\nKING HENRY IV:\nWhere is the crown? who took it from my pillow?\n\nWARWICK:\nWhen we withdrew, my liege, we left it here.\n\nKING HENRY IV:\nThe prince hath ta'en it hence: go, seek him out.\nIs he so hasty that he doth suppose\nMy sleep my death?\nFind him, my Lord of Warwick; chide him hither.\nThis part of his conjoins with my disease,\nAnd helps to end me. See, sons, what things you are!\nHow quickly nature falls into revolt\nWhen gold becomes her object!\nFor this the foolish over-careful fathers\nHave broke their sleep with thoughts, their brains with care,\nTheir bones with industry;\nFor this they have engrossed and piled up\nThe canker'd heaps of strange-achieved gold;\nFor this they have been thoughtful to invest\nTheir sons with arts and martial exercises:\nWhen, like the bee, culling from every flower\nThe virtuous sweets,\nOur thighs pack'd with wax, our mouths with honey,\nWe bring it to the hive, and, like the bees,\nAre murdered for our pains. This bitter taste\nYield his engrossments to the ending father.\nNow, where is he that will not stay so long\nTill his friend sickness hath determined me?\n\nWARWICK:\nMy lord, I found the prince in the next room,\nWashing with kindly tears his gentle cheeks,\nWith such a deep demeanor in great sorrow\nThat tyranny, which never quaff'd but blood,\nWould, by beholding him, have wash'd his knife\nWith gentle eye-drops. He is coming hither.\n\nKING HENRY IV:\nBut wherefore did he take away the crown?\nLo, where he comes. Come hither to me, Harry.\nDepart the chamber, leave us here alone.\n\nPRINCE HENRY:\nI never thought to hear you speak again.\n\nKING HENRY IV:\nThy wish was father, Harry, to that thought:\nI stay too long by thee, I weary thee.\nDost thou so hunger for mine empty chair\nThat thou wilt needs invest thee with my honours\nBefore thy hour be ripe? O foolish youth!\nThou seek'st the greatness that will o'erwhelm thee.\nStay but a little; for my cloud of dignity\nIs held from falling with so weak a wind\nThat it will quickly drop: my day is dim.\nThou hast stolen that which after some few hours\nWere thine without offence; and at my death\nThou hast seal'd up my expectation:\nThy life did manifest thou lovedst me not,\nAnd thou wilt have me die assured of it.\nThou hidest a thousand daggers in thy thoughts,\nWhich thou hast whetted on thy stony heart,\nTo stab at half an hour of my life.\nWhat! canst thou not forbear me half an hour?\nThen get thee gone and dig my grave thyself,\nAnd bid the merry bells ring to thine ear\nThat thou art crowned, not that I am dead.\nLet all the tears that should bedew my hearse\nBe drops of balm to sanctify thy head:\nOnly compound me with forgotten dust\nGive that which gave thee life unto the worms.\nPluck down my officers, break my decrees;\nFor now a time is come to mock at form:\nHarry the Fifth is crown'd: up, vanity!\nDown, royal state! all you sage counsellors, hence!\nAnd to the English court assemble now,\nFrom every region, apes of idleness!\nNow, neighbour confines, purge you of your scum:\nHave you a ruffian that will swear, drink, dance,\nRevel the night, rob, murder, and commit\nThe oldest sins the newest kind of ways?\nBe happy, he will trouble you no more;\nEngland shall double gild his treble guilt,\nEngland shall give him office, honour, might;\nFor the fifth Harry from curb'd licence plucks\nThe muzzle of restraint, and the wild dog\nShall flesh his tooth on every innocent.\nO my poor kingdom, sick with civil blows!\nWhen that my care could not withhold thy riots,\nWhat wilt thou do when riot is thy care?\nO, thou wilt be a wilderness again,\nPeopled with wolves, thy old inhabitants!\n\nPRINCE HENRY:\nO, pardon me, my liege! but for my tears,\nThe moist impediments unto my speech,\nI had forestall'd this dear and deep rebuke\nEre you with grief had spoke and I had heard\nThe course of it so far. There is your crown;\nAnd He that wears the crown immortally\nLong guard it yours! If I affect it more\nThan as your honour and as your renown,\nLet me no more from this obedience rise,\nWhich my most inward true and duteous spirit\nTeacheth, this prostrate and exterior bending.\nGod witness with me, when I here came in,\nAnd found no course of breath within your majesty,\nHow cold it struck my heart! If I do feign,\nO, let me in my present wildness die\nAnd never live to show the incredulous world\nThe noble change that I have purposed!\nComing to look on you, thinking you dead,\nAnd dead almost, my liege, to think you were,\nI spake unto this crown as having sense,\nAnd thus upbraided it: 'The care on thee depending\nHath fed upon the body of my father;\nTherefore, thou best of gold art worst of gold:\nOther, less fine in carat, is more precious,\nPreserving life in medicine potable;\nBut thou, most fine, most honour'd: most renown'd,\nHast eat thy bearer up.' Thus, my most royal liege,\nAccusing it, I put it on my head,\nTo try with it, as with an enemy\nThat had before my face murder'd my father,\nThe quarrel of a true inheritor.\nBut if it did infect my blood with joy,\nOr swell my thoughts to any strain of pride;\nIf any rebel or vain spirit of mine\nDid with the least affection of a welcome\nGive entertainment to the might of it,\nLet God for ever keep it from my head\nAnd make me as the poorest vassal is\nThat doth with awe and terror kneel to it!\n\nKING HENRY IV:\nO my son,\nGod put it in thy mind to take it hence,\nThat thou mightst win the more thy father's love,\nPleading so wisely in excuse of it!\nCome hither, Harry, sit thou by my bed;\nAnd hear, I think, the very latest counsel\nThat ever I shall breathe. God knows, my son,\nBy what by-paths and indirect crook'd ways\nI met this crown; and I myself know well\nHow troublesome it sat upon my head.\nTo thee it shall descend with bitter quiet,\nBetter opinion, better confirmation;\nFor all the soil of the achievement goes\nWith me into the earth. It seem'd in me\nBut as an honour snatch'd with boisterous hand,\nAnd I had many living to upbraid\nMy gain of it by their assistances;\nWhich daily grew to quarrel and to bloodshed,\nWounding supposed peace: all these bold fears\nThou see'st with peril I have answered;\nFor all my reign hath been but as a scene\nActing that argument: and now my death\nChanges the mode; for what in me was purchased,\nFalls upon thee in a more fairer sort;\nSo thou the garland wear'st successively.\nYet, though thou stand'st more sure than I could do,\nThou art not firm enough, since griefs are green;\nAnd all my friends, which thou must make thy friends,\nHave but their stings and teeth newly ta'en out;\nBy whose fell working I was first advanced\nAnd by whose power I well might lodge a fear\nTo be again displaced: which to avoid,\nI cut them off; and had a purpose now\nTo lead out many to the Holy Land,\nLest rest and lying still might make them look\nToo near unto my state. Therefore, my Harry,\nBe it thy course to busy giddy minds\nWith foreign quarrels; that action, hence borne out,\nMay waste the memory of the former days.\nMore would I, but my lungs are wasted so\nThat strength of speech is utterly denied me.\nHow I came by the crown, O God forgive;\nAnd grant it may with thee in true peace live!\n\nPRINCE HENRY:\nMy gracious liege,\nYou won it, wore it, kept it, gave it me;\nThen plain and right must my possession be:\nWhich I with more than with a common pain\n'Gainst all the world will rightfully maintain.\n\nKING HENRY IV:\nLook, look, here comes my John of Lancaster.\n\nLANCASTER:\nHealth, peace, and happiness to my royal father!\n\nKING HENRY IV:\nThou bring'st me happiness and peace, son John;\nBut health, alack, with youthful wings is flown\nFrom this bare wither'd trunk: upon thy sight\nMy worldly business makes a period.\nWhere is my Lord of Warwick?\n\nPRINCE HENRY:\nMy Lord of Warwick!\n\nKING HENRY IV:\nDoth any name particular belong\nUnto the lodging where I first did swoon?\n\nWARWICK:\n'Tis call'd Jerusalem, my noble lord.\n\nKING HENRY IV:\nLaud be to God! even there my life must end.\nIt hath been prophesied to me many years,\nI should not die but in Jerusalem;\nWhich vainly I supposed the Holy Land:\nBut bear me to that chamber; there I'll lie;\nIn that Jerusalem shall Harry die.\n\nSHALLOW:\nBy cock and pie, sir, you shall not away to-night.\nWhat, Davy, I say!\n\nFALSTAFF:\nYou must excuse me, Master Robert Shallow.\n\nSHALLOW:\nI will not excuse you; you shall not be excused;\nexcuses shall not be admitted; there is no excuse\nshall serve; you shall not be excused. Why, Davy!\n\nDAVY:\nHere, sir.\n\nSHALLOW:\nDavy, Davy, Davy, Davy, let me see, Davy; let me\nsee, Davy; let me see: yea, marry, William cook,\nbid him come hither. Sir John, you shall not be excused.\n\nDAVY:\nMarry, sir, thus; those precepts cannot be served:\nand, again, sir, shall we sow the headland with wheat?\n\nSHALLOW:\nWith red wheat, Davy. But for William cook: are\nthere no young pigeons?\n\nDAVY:\nYes, sir. Here is now the smith's note for shoeing\nand plough-irons.\n\nSHALLOW:\nLet it be cast and paid. Sir John, you shall not be excused.\n\nDAVY:\nNow, sir, a new link to the bucket must need be\nhad: and, sir, do you mean to stop any of William's\nwages, about the sack he lost the other day at\nHinckley fair?\n\nSHALLOW:\nA' shall answer it. Some pigeons, Davy, a couple\nof short-legged hens, a joint of mutton, and any\npretty little tiny kickshaws, tell William cook.\n\nDAVY:\nDoth the man of war stay all night, sir?\n\nSHALLOW:\nYea, Davy. I will use him well: a friend i' the\ncourt is better than a penny in purse. Use his men\nwell, Davy; for they are arrant knaves, and will backbite.\n\nDAVY:\nNo worse than they are backbitten, sir; for they\nhave marvellous foul linen.\n\nSHALLOW:\nWell conceited, Davy: about thy business, Davy.\n\nDAVY:\nI beseech you, sir, to countenance William Visor of\nWoncot against Clement Perkes of the hill.\n\nSHALLOW:\nThere is many complaints, Davy, against that Visor:\nthat Visor is an arrant knave, on my knowledge.\n\nDAVY:\nI grant your worship that he is a knave, sir; but\nyet, God forbid, sir, but a knave should have some\ncountenance at his friend's request. An honest\nman, sir, is able to speak for himself, when a knave\nis not. I have served your worship truly, sir,\nthis eight years; and if I cannot once or twice in\na quarter bear out a knave against an honest man, I\nhave but a very little credit with your worship. The\nknave is mine honest friend, sir; therefore, I\nbeseech your worship, let him be countenanced.\n\nSHALLOW:\nGo to; I say he shall have no wrong. Look about, Davy.\nWhere are you, Sir John? Come, come, come, off\nwith your boots. Give me your hand, Master Bardolph.\n\nBARDOLPH:\nI am glad to see your worship.\n\nSHALLOW:\nI thank thee with all my heart, kind\nMaster Bardolph: and welcome, my tall fellow.\nCome, Sir John.\n\nFALSTAFF:\nI'll follow you, good Master Robert Shallow.\nBardolph, look to our horses.\nIf I were sawed into quantities, I should make four\ndozen of such bearded hermits' staves as Master\nShallow. It is a wonderful thing to see the\nsemblable coherence of his men's spirits and his:\nthey, by observing of him, do bear themselves like\nfoolish justices; he, by conversing with them, is\nturned into a justice-like serving-man: their\nspirits are so married in conjunction with the\nparticipation of society that they flock together in\nconsent, like so many wild-geese. If I had a suit\nto Master Shallow, I would humour his men with the\nimputation of being near their master: if to his\nmen, I would curry with Master Shallow that no man\ncould better command his servants. It is certain\nthat either wise bearing or ignorant carriage is\ncaught, as men take diseases, one of another:\ntherefore let men take heed of their company. I\nwill devise matter enough out of this Shallow to\nkeep Prince Harry in continual laughter the wearing\nout of six fashions, which is four terms, or two\nactions, and a' shall laugh without intervallums. O,\nit is much that a lie with a slight oath and a jest\nwith a sad brow will do with a fellow that never\nhad the ache in his shoulders! O, you shall see him\nlaugh till his face be like a wet cloak ill laid up!\n\nSHALLOW:\n\nFALSTAFF:\nI come, Master Shallow; I come, Master Shallow.\n\nWARWICK:\nHow now, my lord chief-justice! whither away?\n\nLord Chief-Justice:\nHow doth the king?\n\nWARWICK:\nExceeding well; his cares are now all ended.\n\nLord Chief-Justice:\nI hope, not dead.\n\nWARWICK:\nHe's walk'd the way of nature;\nAnd to our purposes he lives no more.\n\nLord Chief-Justice:\nI would his majesty had call'd me with him:\nThe service that I truly did his life\nHath left me open to all injuries.\n\nWARWICK:\nIndeed I think the young king loves you not.\n\nLord Chief-Justice:\nI know he doth not, and do arm myself\nTo welcome the condition of the time,\nWhich cannot look more hideously upon me\nThan I have drawn it in my fantasy.\n\nWARWICK:\nHere come the heavy issue of dead Harry:\nO that the living Harry had the temper\nOf him, the worst of these three gentlemen!\nHow many nobles then should hold their places\nThat must strike sail to spirits of vile sort!\n\nLord Chief-Justice:\nO God, I fear all will be overturn'd!\n\nLANCASTER:\nGood morrow, cousin Warwick, good morrow.\n\nGLOUCESTER:\nGood morrow, cousin.\n\nLANCASTER:\nWe meet like men that had forgot to speak.\n\nWARWICK:\nWe do remember; but our argument\nIs all too heavy to admit much talk.\n\nLANCASTER:\nWell, peace be with him that hath made us heavy.\n\nLord Chief-Justice:\nPeace be with us, lest we be heavier!\n\nGLOUCESTER:\nO, good my lord, you have lost a friend indeed;\nAnd I dare swear you borrow not that face\nOf seeming sorrow, it is sure your own.\n\nLANCASTER:\nThough no man be assured what grace to find,\nYou stand in coldest expectation:\nI am the sorrier; would 'twere otherwise.\n\nCLARENCE:\nWell, you must now speak Sir John Falstaff fair;\nWhich swims against your stream of quality.\n\nLord Chief-Justice:\nSweet princes, what I did, I did in honour,\nLed by the impartial conduct of my soul:\nAnd never shall you see that I will beg\nA ragged and forestall'd remission.\nIf truth and upright innocency fail me,\nI'll to the king my master that is dead,\nAnd tell him who hath sent me after him.\n\nWARWICK:\nHere comes the prince.\n\nLord Chief-Justice:\nGood morrow; and God save your majesty!\n\nKING HENRY V:\nThis new and gorgeous garment, majesty,\nSits not so easy on me as you think.\nBrothers, you mix your sadness with some fear:\nThis is the English, not the Turkish court;\nNot Amurath an Amurath succeeds,\nBut Harry Harry. Yet be sad, good brothers,\nFor, by my faith, it very well becomes you:\nSorrow so royally in you appears\nThat I will deeply put the fashion on\nAnd wear it in my heart: why then, be sad;\nBut entertain no more of it, good brothers,\nThan a joint burden laid upon us all.\nFor me, by heaven, I bid you be assured,\nI'll be your father and your brother too;\nLet me but bear your love, I 'll bear your cares:\nYet weep that Harry's dead; and so will I;\nBut Harry lives, that shall convert those tears\nBy number into hours of happiness.\n\nPrinces:\nWe hope no other from your majesty.\n\nKING HENRY V:\nYou all look strangely on me: and you most;\nYou are, I think, assured I love you not.\n\nLord Chief-Justice:\nI am assured, if I be measured rightly,\nYour majesty hath no just cause to hate me.\n\nKING HENRY V:\nNo!\nHow might a prince of my great hopes forget\nSo great indignities you laid upon me?\nWhat! rate, rebuke, and roughly send to prison\nThe immediate heir of England! Was this easy?\nMay this be wash'd in Lethe, and forgotten?\n\nLord Chief-Justice:\nI then did use the person of your father;\nThe image of his power lay then in me:\nAnd, in the administration of his law,\nWhiles I was busy for the commonwealth,\nYour highness pleased to forget my place,\nThe majesty and power of law and justice,\nThe image of the king whom I presented,\nAnd struck me in my very seat of judgment;\nWhereon, as an offender to your father,\nI gave bold way to my authority\nAnd did commit you. If the deed were ill,\nBe you contented, wearing now the garland,\nTo have a son set your decrees at nought,\nTo pluck down justice from your awful bench,\nTo trip the course of law and blunt the sword\nThat guards the peace and safety of your person;\nNay, more, to spurn at your most royal image\nAnd mock your workings in a second body.\nQuestion your royal thoughts, make the case yours;\nBe now the father and propose a son,\nHear your own dignity so much profaned,\nSee your most dreadful laws so loosely slighted,\nBehold yourself so by a son disdain'd;\nAnd then imagine me taking your part\nAnd in your power soft silencing your son:\nAfter this cold considerance, sentence me;\nAnd, as you are a king, speak in your state\nWhat I have done that misbecame my place,\nMy person, or my liege's sovereignty.\n\nKING HENRY V:\nYou are right, justice, and you weigh this well;\nTherefore still bear the balance and the sword:\nAnd I do wish your honours may increase,\nTill you do live to see a son of mine\nOffend you and obey you, as I did.\nSo shall I live to speak my father's words:\n'Happy am I, that have a man so bold,\nThat dares do justice on my proper son;\nAnd not less happy, having such a son,\nThat would deliver up his greatness so\nInto the hands of justice.' You did commit me:\nFor which, I do commit into your hand\nThe unstained sword that you have used to bear;\nWith this remembrance, that you use the same\nWith the like bold, just and impartial spirit\nAs you have done 'gainst me. There is my hand.\nYou shall be as a father to my youth:\nMy voice shall sound as you do prompt mine ear,\nAnd I will stoop and humble my intents\nTo your well-practised wise directions.\nAnd, princes all, believe me, I beseech you;\nMy father is gone wild into his grave,\nFor in his tomb lie my affections;\nAnd with his spirit sadly I survive,\nTo mock the expectation of the world,\nTo frustrate prophecies and to raze out\nRotten opinion, who hath writ me down\nAfter my seeming. The tide of blood in me\nHath proudly flow'd in vanity till now:\nNow doth it turn and ebb back to the sea,\nWhere it shall mingle with the state of floods\nAnd flow henceforth in formal majesty.\nNow call we our high court of parliament:\nAnd let us choose such limbs of noble counsel,\nThat the great body of our state may go\nIn equal rank with the best govern'd nation;\nThat war, or peace, or both at once, may be\nAs things acquainted and familiar to us;\nIn which you, father, shall have foremost hand.\nOur coronation done, we will accite,\nAs I before remember'd, all our state:\nAnd, God consigning to my good intents,\nNo prince nor peer shall have just cause to say,\nGod shorten Harry's happy life one day!\n\nSHALLOW:\nNay, you shall see my orchard, where, in an arbour,\nwe will eat a last year's pippin of my own graffing,\nwith a dish of caraways, and so forth: come,\ncousin Silence: and then to bed.\n\nFALSTAFF:\n'Fore God, you have here a goodly dwelling and a rich.\n\nSHALLOW:\nBarren, barren, barren; beggars all, beggars all,\nSir John: marry, good air. Spread, Davy; spread,\nDavy; well said, Davy.\n\nFALSTAFF:\nThis Davy serves you for good uses; he is your\nserving-man and your husband.\n\nSHALLOW:\nA good varlet, a good varlet, a very good varlet,\nSir John: by the mass, I have drunk too much sack\nat supper: a good varlet. Now sit down, now sit\ndown: come, cousin.\n\nSILENCE:\nAh, sirrah! quoth-a, we shall\nDo nothing but eat, and make good cheer,\nAnd praise God for the merry year;\nWhen flesh is cheap and females dear,\nAnd lusty lads roam here and there\nSo merrily,\nAnd ever among so merrily.\n\nFALSTAFF:\nThere's a merry heart! Good Master Silence, I'll\ngive you a health for that anon.\n\nSHALLOW:\nGive Master Bardolph some wine, Davy.\n\nDAVY:\nSweet sir, sit; I'll be with you anon. most sweet\nsir, sit. Master page, good master page, sit.\nProface! What you want in meat, we'll have in drink:\nbut you must bear; the heart's all.\n\nSHALLOW:\nBe merry, Master Bardolph; and, my little soldier\nthere, be merry.\n\nSILENCE:\nBe merry, be merry, my wife has all;\nFor women are shrews, both short and tall:\n'Tis merry in hall when beards wag all,\nAnd welcome merry Shrove-tide.\nBe merry, be merry.\n\nFALSTAFF:\nI did not think Master Silence had been a man of\nthis mettle.\n\nSILENCE:\nWho, I? I have been merry twice and once ere now.\n\nDAVY:\nThere's a dish of leather-coats for you.\n\nSHALLOW:\nDavy!\n\nDAVY:\nYour worship! I'll be with you straight.\nA cup of wine, sir?\n\nSILENCE:\nA cup of wine that's brisk and fine,\nAnd drink unto the leman mine;\nAnd a merry heart lives long-a.\n\nFALSTAFF:\nWell said, Master Silence.\n\nSILENCE:\nAn we shall be merry, now comes in the sweet o' the night.\n\nFALSTAFF:\nHealth and long life to you, Master Silence.\n\nSILENCE:\nFill the cup, and let it come;\nI'll pledge you a mile to the bottom.\n\nSHALLOW:\nHonest Bardolph, welcome: if thou wantest any\nthing, and wilt not call, beshrew thy heart.\nWelcome, my little tiny thief.\nAnd welcome indeed too. I'll drink to Master\nBardolph, and to all the cavaleros about London.\n\nDAVY:\nI hove to see London once ere I die.\n\nBARDOLPH:\nAn I might see you there, Davy,--\n\nSHALLOW:\nBy the mass, you'll crack a quart together, ha!\nWill you not, Master Bardolph?\n\nBARDOLPH:\nYea, sir, in a pottle-pot.\n\nSHALLOW:\nBy God's liggens, I thank thee: the knave will\nstick by thee, I can assure thee that. A' will not\nout; he is true bred.\n\nBARDOLPH:\nAnd I'll stick by him, sir.\n\nSHALLOW:\nWhy, there spoke a king. Lack nothing: be merry.\nLook who's at door there, ho! who knocks?\n\nFALSTAFF:\nWhy, now you have done me right.\n\nSILENCE:\n\nFALSTAFF:\n'Tis so.\n\nSILENCE:\nIs't so? Why then, say an old man can do somewhat.\n\nDAVY:\nAn't please your worship, there's one Pistol come\nfrom the court with news.\n\nFALSTAFF:\nFrom the court! let him come in.\nHow now, Pistol!\n\nPISTOL:\nSir John, God save you!\n\nFALSTAFF:\nWhat wind blew you hither, Pistol?\n\nPISTOL:\nNot the ill wind which blows no man to good. Sweet\nknight, thou art now one of the greatest men in this realm.\n\nSILENCE:\nBy'r lady, I think a' be, but goodman Puff of Barson.\n\nPISTOL:\nPuff!\nPuff in thy teeth, most recreant coward base!\nSir John, I am thy Pistol and thy friend,\nAnd helter-skelter have I rode to thee,\nAnd tidings do I bring and lucky joys\nAnd golden times and happy news of price.\n\nFALSTAFF:\nI pray thee now, deliver them like a man of this world.\n\nPISTOL:\nA foutre for the world and worldlings base!\nI speak of Africa and golden joys.\n\nFALSTAFF:\nO base Assyrian knight, what is thy news?\nLet King Cophetua know the truth thereof.\n\nSILENCE:\nAnd Robin Hood, Scarlet, and John.\n\nPISTOL:\nShall dunghill curs confront the Helicons?\nAnd shall good news be baffled?\nThen, Pistol, lay thy head in Furies' lap.\n\nSILENCE:\nHonest gentleman, I know not your breeding.\n\nPISTOL:\nWhy then, lament therefore.\n\nSHALLOW:\nGive me pardon, sir: if, sir, you come with news\nfrom the court, I take it there's but two ways,\neither to utter them, or to conceal them. I am,\nsir, under the king, in some authority.\n\nPISTOL:\nUnder which king, Besonian? speak, or die.\n\nSHALLOW:\nUnder King Harry.\n\nPISTOL:\nHarry the Fourth? or Fifth?\n\nSHALLOW:\nHarry the Fourth.\n\nPISTOL:\nA foutre for thine office!\nSir John, thy tender lambkin now is king;\nHarry the Fifth's the man. I speak the truth:\nWhen Pistol lies, do this; and fig me, like\nThe bragging Spaniard.\n\nFALSTAFF:\nWhat, is the old king dead?\n\nPISTOL:\nAs nail in door: the things I speak are just.\n\nFALSTAFF:\nAway, Bardolph! saddle my horse. Master Robert\nShallow, choose what office thou wilt in the land,\n'tis thine. Pistol, I will double-charge thee with dignities.\n\nBARDOLPH:\nO joyful day!\nI would not take a knighthood for my fortune.\n\nPISTOL:\nWhat! I do bring good news.\n\nFALSTAFF:\nCarry Master Silence to bed. Master Shallow, my\nLord Shallow,--be what thou wilt; I am fortune's\nsteward--get on thy boots: we'll ride all night.\nO sweet Pistol! Away, Bardolph!\nCome, Pistol, utter more to me; and withal devise\nsomething to do thyself good. Boot, boot, Master\nShallow: I know the young king is sick for me. Let\nus take any man's horses; the laws of England are at\nmy commandment. Blessed are they that have been my\nfriends; and woe to my lord chief-justice!\n\nPISTOL:\nLet vultures vile seize on his lungs also!\n'Where is the life that late I led?' say they:\nWhy, here it is; welcome these pleasant days!\n\nMISTRESS QUICKLY:\nNo, thou arrant knave; I would to God that I might\ndie, that I might have thee hanged: thou hast\ndrawn my shoulder out of joint.\n\nFirst Beadle:\nThe constables have delivered her over to me; and\nshe shall have whipping-cheer enough, I warrant\nher: there hath been a man or two lately killed about her.\n\nDOLL TEARSHEET:\nNut-hook, nut-hook, you lie. Come on; I 'll tell\nthee what, thou damned tripe-visaged rascal, an\nthe child I now go with do miscarry, thou wert\nbetter thou hadst struck thy mother, thou\npaper-faced villain.\n\nMISTRESS QUICKLY:\nO the Lord, that Sir John were come! he would make\nthis a bloody day to somebody. But I pray God the\nfruit of her womb miscarry!\n\nFirst Beadle:\nIf it do, you shall have a dozen of cushions again;\nyou have but eleven now. Come, I charge you both go\nwith me; for the man is dead that you and Pistol\nbeat amongst you.\n\nDOLL TEARSHEET:\nI'll tell you what, you thin man in a censer, I\nwill have you as soundly swinged for this,--you\nblue-bottle rogue, you filthy famished correctioner,\nif you be not swinged, I'll forswear half-kirtles.\n\nFirst Beadle:\nCome, come, you she knight-errant, come.\n\nMISTRESS QUICKLY:\nO God, that right should thus overcome might!\nWell, of sufferance comes ease.\n\nDOLL TEARSHEET:\nCome, you rogue, come; bring me to a justice.\n\nMISTRESS QUICKLY:\nAy, come, you starved blood-hound.\n\nDOLL TEARSHEET:\nGoodman death, goodman bones!\n\nMISTRESS QUICKLY:\nThou atomy, thou!\n\nDOLL TEARSHEET:\nCome, you thin thing; come you rascal.\n\nFirst Beadle:\nVery well.\n\nFirst Groom:\nMore rushes, more rushes.\n\nSecond Groom:\nThe trumpets have sounded twice.\n\nFirst Groom:\n'Twill be two o'clock ere they come from the\ncoronation: dispatch, dispatch.\n\nFALSTAFF:\nStand here by me, Master Robert Shallow; I will\nmake the king do you grace: I will leer upon him as\na' comes by; and do but mark the countenance that he\nwill give me.\n\nPISTOL:\nGod bless thy lungs, good knight.\n\nFALSTAFF:\nCome here, Pistol; stand behind me. O, if I had had\ntime to have made new liveries, I would have\nbestowed the thousand pound I borrowed of you. But\n'tis no matter; this poor show doth better: this\ndoth infer the zeal I had to see him.\n\nSHALLOW:\nIt doth so.\n\nFALSTAFF:\nIt shows my earnestness of affection,--\n\nSHALLOW:\nIt doth so.\n\nFALSTAFF:\nMy devotion,--\n\nSHALLOW:\nIt doth, it doth, it doth.\n\nFALSTAFF:\nAs it were, to ride day and night; and not to\ndeliberate, not to remember, not to have patience\nto shift me,--\n\nSHALLOW:\nIt is best, certain.\n\nFALSTAFF:\nBut to stand stained with travel, and sweating with\ndesire to see him; thinking of nothing else,\nputting all affairs else in oblivion, as if there\nwere nothing else to be done but to see him.\n\nPISTOL:\n'Tis 'semper idem,' for 'obsque hoc nihil est:'\n'tis all in every part.\n\nSHALLOW:\n'Tis so, indeed.\n\nPISTOL:\nMy knight, I will inflame thy noble liver,\nAnd make thee rage.\nThy Doll, and Helen of thy noble thoughts,\nIs in base durance and contagious prison;\nHaled thither\nBy most mechanical and dirty hand:\nRouse up revenge from ebon den with fell\nAlecto's snake,\nFor Doll is in. Pistol speaks nought but truth.\n\nFALSTAFF:\nI will deliver her.\n\nPISTOL:\nThere roar'd the sea, and trumpet-clangor sounds.\n\nFALSTAFF:\nGod save thy grace, King Hal! my royal Hal!\n\nPISTOL:\nThe heavens thee guard and keep, most royal imp of fame!\n\nFALSTAFF:\nGod save thee, my sweet boy!\n\nKING HENRY IV:\nMy lord chief-justice, speak to that vain man.\n\nLord Chief-Justice:\nHave you your wits? know you what 'tis to speak?\n\nFALSTAFF:\nMy king! my Jove! I speak to thee, my heart!\n\nKING HENRY IV:\nI know thee not, old man: fall to thy prayers;\nHow ill white hairs become a fool and jester!\nI have long dream'd of such a kind of man,\nSo surfeit-swell'd, so old and so profane;\nBut, being awaked, I do despise my dream.\nMake less thy body hence, and more thy grace;\nLeave gormandizing; know the grave doth gape\nFor thee thrice wider than for other men.\nReply not to me with a fool-born jest:\nPresume not that I am the thing I was;\nFor God doth know, so shall the world perceive,\nThat I have turn'd away my former self;\nSo will I those that kept me company.\nWhen thou dost hear I am as I have been,\nApproach me, and thou shalt be as thou wast,\nThe tutor and the feeder of my riots:\nTill then, I banish thee, on pain of death,\nAs I have done the rest of my misleaders,\nNot to come near our person by ten mile.\nFor competence of life I will allow you,\nThat lack of means enforce you not to evil:\nAnd, as we hear you do reform yourselves,\nWe will, according to your strengths and qualities,\nGive you advancement. Be it your charge, my lord,\nTo see perform'd the tenor of our word. Set on.\n\nFALSTAFF:\nMaster Shallow, I owe you a thousand pound.\n\nSHALLOW:\nYea, marry, Sir John; which I beseech you to let me\nhave home with me.\n\nFALSTAFF:\nThat can hardly be, Master Shallow. Do not you\ngrieve at this; I shall be sent for in private to\nhim: look you, he must seem thus to the world:\nfear not your advancements; I will be the man yet\nthat shall make you great.\n\nSHALLOW:\nI cannot well perceive how, unless you should give\nme your doublet and stuff me out with straw. I\nbeseech you, good Sir John, let me have five hundred\nof my thousand.\n\nFALSTAFF:\nSir, I will be as good as my word: this that you\nheard was but a colour.\n\nSHALLOW:\nA colour that I fear you will die in, Sir John.\n\nFALSTAFF:\nFear no colours: go with me to dinner: come,\nLieutenant Pistol; come, Bardolph: I shall be sent\nfor soon at night.\n\nLord Chief-Justice:\nGo, carry Sir John Falstaff to the Fleet:\nTake all his company along with him.\n\nFALSTAFF:\nMy lord, my lord,--\n\nLord Chief-Justice:\nI cannot now speak: I will hear you soon.\nTake them away.\n\nPISTOL:\nSi fortune me tormenta, spero contenta.\n\nLANCASTER:\nI like this fair proceeding of the king's:\nHe hath intent his wonted followers\nShall all be very well provided for;\nBut all are banish'd till their conversations\nAppear more wise and modest to the world.\n\nLord Chief-Justice:\nAnd so they are.\n\nLANCASTER:\nThe king hath call'd his parliament, my lord.\n\nLord Chief-Justice:\nHe hath.\n\nLANCASTER:\nI will lay odds that, ere this year expire,\nWe bear our civil swords and native fire\nAs far as France: I heard a bird so sing,\nWhose music, to my thinking, pleased the king.\nCome, will you hence?\n\n\nPoet:\nGood day, sir.\n\nPainter:\nI am glad you're well.\n\nPoet:\nI have not seen you long: how goes the world?\n\nPainter:\nIt wears, sir, as it grows.\n\nPoet:\nAy, that's well known:\nBut what particular rarity? what strange,\nWhich manifold record not matches? See,\nMagic of bounty! all these spirits thy power\nHath conjured to attend. I know the merchant.\n\nPainter:\nI know them both; th' other's a jeweller.\n\nMerchant:\nO, 'tis a worthy lord.\n\nJeweller:\nNay, that's most fix'd.\n\nMerchant:\nA most incomparable man, breathed, as it were,\nTo an untirable and continuate goodness:\nHe passes.\n\nJeweller::\nI have a jewel here--\n\nMerchant:\nO, pray, let's see't: for the Lord Timon, sir?\n\nJeweller::\nIf he will touch the estimate: but, for that--\n\nPoet:\n\nMerchant:\n'Tis a good form.\n\nJeweller:\nAnd rich: here is a water, look ye.\n\nPainter:\nYou are rapt, sir, in some work, some dedication\nTo the great lord.\n\nPoet:\nA thing slipp'd idly from me.\nOur poesy is as a gum, which oozes\nFrom whence 'tis nourish'd: the fire i' the flint\nShows not till it be struck; our gentle flame\nProvokes itself and like the current flies\nEach bound it chafes. What have you there?\n\nPainter:\nA picture, sir. When comes your book forth?\n\nPoet:\nUpon the heels of my presentment, sir.\nLet's see your piece.\n\nPainter:\n'Tis a good piece.\n\nPoet:\nSo 'tis: this comes off well and excellent.\n\nPainter:\nIndifferent.\n\nPoet:\nAdmirable: how this grace\nSpeaks his own standing! what a mental power\nThis eye shoots forth! how big imagination\nMoves in this lip! to the dumbness of the gesture\nOne might interpret.\n\nPainter:\nIt is a pretty mocking of the life.\nHere is a touch; is't good?\n\nPoet:\nI will say of it,\nIt tutors nature: artificial strife\nLives in these touches, livelier than life.\n\nPainter:\nHow this lord is follow'd!\n\nPoet:\nThe senators of Athens: happy man!\n\nPainter:\nLook, more!\n\nPoet:\nYou see this confluence, this great flood\nof visitors.\nI have, in this rough work, shaped out a man,\nWhom this beneath world doth embrace and hug\nWith amplest entertainment: my free drift\nHalts not particularly, but moves itself\nIn a wide sea of wax: no levell'd malice\nInfects one comma in the course I hold;\nBut flies an eagle flight, bold and forth on,\nLeaving no tract behind.\n\nPainter:\nHow shall I understand you?\n\nPoet:\nI will unbolt to you.\nYou see how all conditions, how all minds,\nAs well of glib and slippery creatures as\nOf grave and austere quality, tender down\nTheir services to Lord Timon: his large fortune\nUpon his good and gracious nature hanging\nSubdues and properties to his love and tendance\nAll sorts of hearts; yea, from the glass-faced flatterer\nTo Apemantus, that few things loves better\nThan to abhor himself: even he drops down\nThe knee before him, and returns in peace\nMost rich in Timon's nod.\n\nPainter:\nI saw them speak together.\n\nPoet:\nSir, I have upon a high and pleasant hill\nFeign'd Fortune to be throned: the base o' the mount\nIs rank'd with all deserts, all kind of natures,\nThat labour on the bosom of this sphere\nTo propagate their states: amongst them all,\nWhose eyes are on this sovereign lady fix'd,\nOne do I personate of Lord Timon's frame,\nWhom Fortune with her ivory hand wafts to her;\nWhose present grace to present slaves and servants\nTranslates his rivals.\n\nPainter:\n'Tis conceived to scope.\nThis throne, this Fortune, and this hill, methinks,\nWith one man beckon'd from the rest below,\nBowing his head against the sleepy mount\nTo climb his happiness, would be well express'd\nIn our condition.\n\nPoet:\nNay, sir, but hear me on.\nAll those which were his fellows but of late,\nSome better than his value, on the moment\nFollow his strides, his lobbies fill with tendance,\nRain sacrificial whisperings in his ear,\nMake sacred even his stirrup, and through him\nDrink the free air.\n\nPainter:\nAy, marry, what of these?\n\nPoet:\nWhen Fortune in her shift and change of mood\nSpurns down her late beloved, all his dependants\nWhich labour'd after him to the mountain's top\nEven on their knees and hands, let him slip down,\nNot one accompanying his declining foot.\n\nPainter:\n'Tis common:\nA thousand moral paintings I can show\nThat shall demonstrate these quick blows of Fortune's\nMore pregnantly than words. Yet you do well\nTo show Lord Timon that mean eyes have seen\nThe foot above the head.\n\nTIMON:\nImprison'd is he, say you?\n\nMessenger:\nAy, my good lord: five talents is his debt,\nHis means most short, his creditors most strait:\nYour honourable letter he desires\nTo those have shut him up; which failing,\nPeriods his comfort.\n\nTIMON:\nNoble Ventidius! Well;\nI am not of that feather to shake off\nMy friend when he must need me. I do know him\nA gentleman that well deserves a help:\nWhich he shall have: I'll pay the debt,\nand free him.\n\nMessenger:\nYour lordship ever binds him.\n\nTIMON:\nCommend me to him: I will send his ransom;\nAnd being enfranchised, bid him come to me.\n'Tis not enough to help the feeble up,\nBut to support him after. Fare you well.\n\nMessenger:\nAll happiness to your honour!\n\nOld Athenian:\nLord Timon, hear me speak.\n\nTIMON:\nFreely, good father.\n\nOld Athenian:\nThou hast a servant named Lucilius.\n\nTIMON:\nI have so: what of him?\n\nOld Athenian:\nMost noble Timon, call the man before thee.\n\nTIMON:\nAttends he here, or no? Lucilius!\n\nLUCILIUS:\nHere, at your lordship's service.\n\nOld Athenian:\nThis fellow here, Lord Timon, this thy creature,\nBy night frequents my house. I am a man\nThat from my first have been inclined to thrift;\nAnd my estate deserves an heir more raised\nThan one which holds a trencher.\n\nTIMON:\nWell; what further?\n\nOld Athenian:\nOne only daughter have I, no kin else,\nOn whom I may confer what I have got:\nThe maid is fair, o' the youngest for a bride,\nAnd I have bred her at my dearest cost\nIn qualities of the best. This man of thine\nAttempts her love: I prithee, noble lord,\nJoin with me to forbid him her resort;\nMyself have spoke in vain.\n\nTIMON:\nThe man is honest.\n\nOld Athenian:\nTherefore he will be, Timon:\nHis honesty rewards him in itself;\nIt must not bear my daughter.\n\nTIMON:\nDoes she love him?\n\nOld Athenian:\nShe is young and apt:\nOur own precedent passions do instruct us\nWhat levity's in youth.\n\nTIMON:\n\nLUCILIUS:\nAy, my good lord, and she accepts of it.\n\nOld Athenian:\nIf in her marriage my consent be missing,\nI call the gods to witness, I will choose\nMine heir from forth the beggars of the world,\nAnd dispossess her all.\n\nTIMON:\nHow shall she be endow'd,\nif she be mated with an equal husband?\n\nOld Athenian:\nThree talents on the present; in future, all.\n\nTIMON:\nThis gentleman of mine hath served me long:\nTo build his fortune I will strain a little,\nFor 'tis a bond in men. Give him thy daughter:\nWhat you bestow, in him I'll counterpoise,\nAnd make him weigh with her.\n\nOld Athenian:\nMost noble lord,\nPawn me to this your honour, she is his.\n\nTIMON:\nMy hand to thee; mine honour on my promise.\n\nLUCILIUS:\nHumbly I thank your lordship: never may\nThe state or fortune fall into my keeping,\nWhich is not owed to you!\n\nPoet:\nVouchsafe my labour, and long live your lordship!\n\nTIMON:\nI thank you; you shall hear from me anon:\nGo not away. What have you there, my friend?\n\nPainter:\nA piece of painting, which I do beseech\nYour lordship to accept.\n\nTIMON:\nPainting is welcome.\nThe painting is almost the natural man;\nor since dishonour traffics with man's nature,\nHe is but outside: these pencill'd figures are\nEven such as they give out. I like your work;\nAnd you shall find I like it: wait attendance\nTill you hear further from me.\n\nPainter:\nThe gods preserve ye!\n\nTIMON:\nWell fare you, gentleman: give me your hand;\nWe must needs dine together. Sir, your jewel\nHath suffer'd under praise.\n\nJeweller:\nWhat, my lord! dispraise?\n\nTIMON:\nA more satiety of commendations.\nIf I should pay you for't as 'tis extoll'd,\nIt would unclew me quite.\n\nJeweller:\nMy lord, 'tis rated\nAs those which sell would give: but you well know,\nThings of like value differing in the owners\nAre prized by their masters: believe't, dear lord,\nYou mend the jewel by the wearing it.\n\nTIMON:\nWell mock'd.\n\nMerchant:\nNo, my good lord; he speaks the common tongue,\nWhich all men speak with him.\n\nTIMON:\nLook, who comes here: will you be chid?\n\nJeweller:\nWe'll bear, with your lordship.\n\nMerchant:\nHe'll spare none.\n\nTIMON:\nGood morrow to thee, gentle Apemantus!\n\nAPEMANTUS:\nTill I be gentle, stay thou for thy good morrow;\nWhen thou art Timon's dog, and these knaves honest.\n\nTIMON:\nWhy dost thou call them knaves? thou know'st them not.\n\nAPEMANTUS:\nAre they not Athenians?\n\nTIMON:\nYes.\n\nAPEMANTUS:\nThen I repent not.\n\nJeweller:\nYou know me, Apemantus?\n\nAPEMANTUS:\nThou know'st I do: I call'd thee by thy name.\n\nTIMON:\nThou art proud, Apemantus.\n\nAPEMANTUS:\nOf nothing so much as that I am not like Timon.\n\nTIMON:\nWhither art going?\n\nAPEMANTUS:\nTo knock out an honest Athenian's brains.\n\nTIMON:\nThat's a deed thou'lt die for.\n\nAPEMANTUS:\nRight, if doing nothing be death by the law.\n\nTIMON:\nHow likest thou this picture, Apemantus?\n\nAPEMANTUS:\nThe best, for the innocence.\n\nTIMON:\nWrought he not well that painted it?\n\nAPEMANTUS:\nHe wrought better that made the painter; and yet\nhe's but a filthy piece of work.\n\nPainter:\nYou're a dog.\n\nAPEMANTUS:\nThy mother's of my generation: what's she, if I be a dog?\n\nTIMON:\nWilt dine with me, Apemantus?\n\nAPEMANTUS:\nNo; I eat not lords.\n\nTIMON:\nAn thou shouldst, thou 'ldst anger ladies.\n\nAPEMANTUS:\nO, they eat lords; so they come by great bellies.\n\nTIMON:\nThat's a lascivious apprehension.\n\nAPEMANTUS:\nSo thou apprehendest it: take it for thy labour.\n\nTIMON:\nHow dost thou like this jewel, Apemantus?\n\nAPEMANTUS:\nNot so well as plain-dealing, which will not cost a\nman a doit.\n\nTIMON:\nWhat dost thou think 'tis worth?\n\nAPEMANTUS:\nNot worth my thinking. How now, poet!\n\nPoet:\nHow now, philosopher!\n\nAPEMANTUS:\nThou liest.\n\nPoet:\nArt not one?\n\nAPEMANTUS:\nYes.\n\nPoet:\nThen I lie not.\n\nAPEMANTUS:\nArt not a poet?\n\nPoet:\nYes.\n\nAPEMANTUS:\nThen thou liest: look in thy last work, where thou\nhast feigned him a worthy fellow.\n\nPoet:\nThat's not feigned; he is so.\n\nAPEMANTUS:\nYes, he is worthy of thee, and to pay thee for thy\nlabour: he that loves to be flattered is worthy o'\nthe flatterer. Heavens, that I were a lord!\n\nTIMON:\nWhat wouldst do then, Apemantus?\n\nAPEMANTUS:\nE'en as Apemantus does now; hate a lord with my heart.\n\nTIMON:\nWhat, thyself?\n\nAPEMANTUS:\nAy.\n\nTIMON:\nWherefore?\n\nAPEMANTUS:\nThat I had no angry wit to be a lord.\nArt not thou a merchant?\n\nMerchant:\nAy, Apemantus.\n\nAPEMANTUS:\nTraffic confound thee, if the gods will not!\n\nMerchant:\nIf traffic do it, the gods do it.\n\nAPEMANTUS:\nTraffic's thy god; and thy god confound thee!\n\nTIMON:\nWhat trumpet's that?\n\nMessenger:\n'Tis Alcibiades, and some twenty horse,\nAll of companionship.\n\nTIMON:\nPray, entertain them; give them guide to us.\nYou must needs dine with me: go not you hence\nTill I have thank'd you: when dinner's done,\nShow me this piece. I am joyful of your sights.\nMost welcome, sir!\n\nAPEMANTUS:\nSo, so, there!\nAches contract and starve your supple joints!\nThat there should be small love 'mongst these\nsweet knaves,\nAnd all this courtesy! The strain of man's bred out\nInto baboon and monkey.\n\nALCIBIADES:\nSir, you have saved my longing, and I feed\nMost hungerly on your sight.\n\nTIMON:\nRight welcome, sir!\nEre we depart, we'll share a bounteous time\nIn different pleasures. Pray you, let us in.\n\nFirst Lord:\nWhat time o' day is't, Apemantus?\n\nAPEMANTUS:\nTime to be honest.\n\nFirst Lord:\nThat time serves still.\n\nAPEMANTUS:\nThe more accursed thou, that still omitt'st it.\n\nSecond Lord:\nThou art going to Lord Timon's feast?\n\nAPEMANTUS:\nAy, to see meat fill knaves and wine heat fools.\n\nSecond Lord:\nFare thee well, fare thee well.\n\nAPEMANTUS:\nThou art a fool to bid me farewell twice.\n\nSecond Lord:\nWhy, Apemantus?\n\nAPEMANTUS:\nShouldst have kept one to thyself, for I mean to\ngive thee none.\n\nFirst Lord:\nHang thyself!\n\nAPEMANTUS:\nNo, I will do nothing at thy bidding: make thy\nrequests to thy friend.\n\nSecond Lord:\nAway, unpeaceable dog, or I'll spurn thee hence!\n\nAPEMANTUS:\nI will fly, like a dog, the heels o' the ass.\n\nFirst Lord:\nHe's opposite to humanity. Come, shall we in,\nAnd taste Lord Timon's bounty? he outgoes\nThe very heart of kindness.\n\nSecond Lord:\nHe pours it out; Plutus, the god of gold,\nIs but his steward: no meed, but he repays\nSevenfold above itself; no gift to him,\nBut breeds the giver a return exceeding\nAll use of quittance.\n\nFirst Lord:\nThe noblest mind he carries\nThat ever govern'd man.\n\nSecond Lord:\nLong may he live in fortunes! Shall we in?\n\nFirst Lord:\nI'll keep you company.\n\nVENTIDIUS:\nMost honour'd Timon,\nIt hath pleased the gods to remember my father's age,\nAnd call him to long peace.\nHe is gone happy, and has left me rich:\nThen, as in grateful virtue I am bound\nTo your free heart, I do return those talents,\nDoubled with thanks and service, from whose help\nI derived liberty.\n\nTIMON:\nO, by no means,\nHonest Ventidius; you mistake my love:\nI gave it freely ever; and there's none\nCan truly say he gives, if he receives:\nIf our betters play at that game, we must not dare\nTo imitate them; faults that are rich are fair.\n\nVENTIDIUS:\nA noble spirit!\n\nTIMON:\nNay, my lords,\nCeremony was but devised at first\nTo set a gloss on faint deeds, hollow welcomes,\nRecanting goodness, sorry ere 'tis shown;\nBut where there is true friendship, there needs none.\nPray, sit; more welcome are ye to my fortunes\nThan my fortunes to me.\n\nFirst Lord:\nMy lord, we always have confess'd it.\n\nAPEMANTUS:\nHo, ho, confess'd it! hang'd it, have you not?\n\nTIMON:\nO, Apemantus, you are welcome.\n\nAPEMANTUS:\nNo;\nYou shall not make me welcome:\nI come to have thee thrust me out of doors.\n\nTIMON:\nFie, thou'rt a churl; ye've got a humour there\nDoes not become a man: 'tis much to blame.\nThey say, my lords, 'ira furor brevis est;' but yond\nman is ever angry. Go, let him have a table by\nhimself, for he does neither affect company, nor is\nhe fit for't, indeed.\n\nAPEMANTUS:\nLet me stay at thine apperil, Timon: I come to\nobserve; I give thee warning on't.\n\nTIMON:\nI take no heed of thee; thou'rt an Athenian,\ntherefore welcome: I myself would have no power;\nprithee, let my meat make thee silent.\n\nAPEMANTUS:\nI scorn thy meat; 'twould choke me, for I should\nne'er flatter thee. O you gods, what a number of\nmen eat Timon, and he sees 'em not! It grieves me\nto see so many dip their meat in one man's blood;\nand all the madness is, he cheers them up too.\nI wonder men dare trust themselves with men:\nMethinks they should invite them without knives;\nGood for their meat, and safer for their lives.\nThere's much example for't; the fellow that sits\nnext him now, parts bread with him, pledges the\nbreath of him in a divided draught, is the readiest\nman to kill him: 't has been proved. If I were a\nhuge man, I should fear to drink at meals;\nLest they should spy my windpipe's dangerous notes:\nGreat men should drink with harness on their throats.\n\nTIMON:\nMy lord, in heart; and let the health go round.\n\nSecond Lord:\nLet it flow this way, my good lord.\n\nAPEMANTUS:\nFlow this way! A brave fellow! he keeps his tides\nwell. Those healths will make thee and thy state\nlook ill, Timon. Here's that which is too weak to\nbe a sinner, honest water, which ne'er left man i' the mire:\nThis and my food are equals; there's no odds:\nFeasts are too proud to give thanks to the gods.\nApemantus' grace.\nImmortal gods, I crave no pelf;\nI pray for no man but myself:\nGrant I may never prove so fond,\nTo trust man on his oath or bond;\nOr a harlot, for her weeping;\nOr a dog, that seems a-sleeping:\nOr a keeper with my freedom;\nOr my friends, if I should need 'em.\nAmen. So fall to't:\nRich men sin, and I eat root.\nMuch good dich thy good heart, Apemantus!\n\nTIMON:\nCaptain Alcibiades, your heart's in the field now.\n\nALCIBIADES:\nMy heart is ever at your service, my lord.\n\nTIMON:\nYou had rather be at a breakfast of enemies than a\ndinner of friends.\n\nALCIBIADES:\nSo the were bleeding-new, my lord, there's no meat\nlike 'em: I could wish my best friend at such a feast.\n\nAPEMANTUS:\nWould all those fatterers were thine enemies then,\nthat then thou mightst kill 'em and bid me to 'em!\n\nFirst Lord:\nMight we but have that happiness, my lord, that you\nwould once use our hearts, whereby we might express\nsome part of our zeals, we should think ourselves\nfor ever perfect.\n\nTIMON:\nO, no doubt, my good friends, but the gods\nthemselves have provided that I shall have much help\nfrom you: how had you been my friends else? why\nhave you that charitable title from thousands, did\nnot you chiefly belong to my heart? I have told\nmore of you to myself than you can with modesty\nspeak in your own behalf; and thus far I confirm\nyou. O you gods, think I, what need we have any\nfriends, if we should ne'er have need of 'em? they\nwere the most needless creatures living, should we\nne'er have use for 'em, and would most resemble\nsweet instruments hung up in cases that keep their\nsounds to themselves. Why, I have often wished\nmyself poorer, that I might come nearer to you. We\nare born to do benefits: and what better or\nproperer can we can our own than the riches of our\nfriends? O, what a precious comfort 'tis, to have\nso many, like brothers, commanding one another's\nfortunes! O joy, e'en made away ere 't can be born!\nMine eyes cannot hold out water, methinks: to\nforget their faults, I drink to you.\n\nAPEMANTUS:\nThou weepest to make them drink, Timon.\n\nSecond Lord:\nJoy had the like conception in our eyes\nAnd at that instant like a babe sprung up.\n\nAPEMANTUS:\nHo, ho! I laugh to think that babe a bastard.\n\nThird Lord:\nI promise you, my lord, you moved me much.\n\nAPEMANTUS:\nMuch!\n\nTIMON:\nWhat means that trump?\nHow now?\n\nServant:\nPlease you, my lord, there are certain\nladies most desirous of admittance.\n\nTIMON:\nLadies! what are their wills?\n\nServant:\nThere comes with them a forerunner, my lord, which\nbears that office, to signify their pleasures.\n\nTIMON:\nI pray, let them be admitted.\n\nCupid:\nHail to thee, worthy Timon, and to all\nThat of his bounties taste! The five best senses\nAcknowledge thee their patron; and come freely\nTo gratulate thy plenteous bosom: th' ear,\nTaste, touch and smell, pleased from thy tale rise;\nThey only now come but to feast thine eyes.\n\nTIMON:\nThey're welcome all; let 'em have kind admittance:\nMusic, make their welcome!\n\nFirst Lord:\nYou see, my lord, how ample you're beloved.\n\nAPEMANTUS:\nHoy-day, what a sweep of vanity comes this way!\nThey dance! they are mad women.\nLike madness is the glory of this life.\nAs this pomp shows to a little oil and root.\nWe make ourselves fools, to disport ourselves;\nAnd spend our flatteries, to drink those men\nUpon whose age we void it up again,\nWith poisonous spite and envy.\nWho lives that's not depraved or depraves?\nWho dies, that bears not one spurn to their graves\nOf their friends' gift?\nI should fear those that dance before me now\nWould one day stamp upon me: 't has been done;\nMen shut their doors against a setting sun.\n\nTIMON:\nYou have done our pleasures much grace, fair ladies,\nSet a fair fashion on our entertainment,\nWhich was not half so beautiful and kind;\nYou have added worth unto 't and lustre,\nAnd entertain'd me with mine own device;\nI am to thank you for 't.\n\nFirst Lady:\nMy lord, you take us even at the best.\n\nAPEMANTUS:\n'Faith, for the worst is filthy; and would not hold\ntaking, I doubt me.\n\nTIMON:\nLadies, there is an idle banquet attends you:\nPlease you to dispose yourselves.\n\nAll Ladies:\nMost thankfully, my lord.\n\nTIMON:\nFlavius.\n\nFLAVIUS:\nMy lord?\n\nTIMON:\nThe little casket bring me hither.\n\nFLAVIUS:\nYes, my lord. More jewels yet!\nThere is no crossing him in 's humour;\nElse I should tell him,--well, i' faith I should,\nWhen all's spent, he 'ld be cross'd then, an he could.\n'Tis pity bounty had not eyes behind,\nThat man might ne'er be wretched for his mind.\n\nFirst Lord:\nWhere be our men?\n\nServant:\nHere, my lord, in readiness.\n\nSecond Lord:\nOur horses!\n\nTIMON:\nO my friends,\nI have one word to say to you: look you, my good lord,\nI must entreat you, honour me so much\nAs to advance this jewel; accept it and wear it,\nKind my lord.\n\nFirst Lord:\nI am so far already in your gifts,--\n\nAll:\nSo are we all.\n\nServant:\nMy lord, there are certain nobles of the senate\nNewly alighted, and come to visit you.\n\nTIMON:\nThey are fairly welcome.\n\nFLAVIUS:\nI beseech your honour,\nVouchsafe me a word; it does concern you near.\n\nTIMON:\nNear! why then, another time I'll hear thee:\nI prithee, let's be provided to show them\nentertainment.\n\nFLAVIUS:\n\nSecond Servant:\nMay it please your honour, Lord Lucius,\nOut of his free love, hath presented to you\nFour milk-white horses, trapp'd in silver.\n\nTIMON:\nI shall accept them fairly; let the presents\nBe worthily entertain'd.\nHow now! what news?\n\nThird Servant:\nPlease you, my lord, that honourable\ngentleman, Lord Lucullus, entreats your company\nto-morrow to hunt with him, and has sent your honour\ntwo brace of greyhounds.\n\nTIMON:\nI'll hunt with him; and let them be received,\nNot without fair reward.\n\nFLAVIUS:\n\nTIMON:\nYou do yourselves\nMuch wrong, you bate too much of your own merits:\nHere, my lord, a trifle of our love.\n\nSecond Lord:\nWith more than common thanks I will receive it.\n\nThird Lord:\nO, he's the very soul of bounty!\n\nTIMON:\nAnd now I remember, my lord, you gave\nGood words the other day of a bay courser\nI rode on: it is yours, because you liked it.\n\nSecond Lord:\nO, I beseech you, pardon me, my lord, in that.\n\nTIMON:\nYou may take my word, my lord; I know, no man\nCan justly praise but what he does affect:\nI weigh my friend's affection with mine own;\nI'll tell you true. I'll call to you.\n\nAll Lords:\nO, none so welcome.\n\nTIMON:\nI take all and your several visitations\nSo kind to heart, 'tis not enough to give;\nMethinks, I could deal kingdoms to my friends,\nAnd ne'er be weary. Alcibiades,\nThou art a soldier, therefore seldom rich;\nIt comes in charity to thee: for all thy living\nIs 'mongst the dead, and all the lands thou hast\nLie in a pitch'd field.\n\nALCIBIADES:\nAy, defiled land, my lord.\n\nFirst Lord:\nWe are so virtuously bound--\n\nTIMON:\nAnd so\nAm I to you.\n\nSecond Lord:\nSo infinitely endear'd--\n\nTIMON:\nAll to you. Lights, more lights!\n\nFirst Lord:\nThe best of happiness,\nHonour and fortunes, keep with you, Lord Timon!\n\nTIMON:\nReady for his friends.\n\nAPEMANTUS:\nWhat a coil's here!\nServing of becks and jutting-out of bums!\nI doubt whether their legs be worth the sums\nThat are given for 'em. Friendship's full of dregs:\nMethinks, false hearts should never have sound legs,\nThus honest fools lay out their wealth on court'sies.\n\nTIMON:\nNow, Apemantus, if thou wert not sullen, I would be\ngood to thee.\n\nAPEMANTUS:\nNo, I'll nothing: for if I should be bribed too,\nthere would be none left to rail upon thee, and then\nthou wouldst sin the faster. Thou givest so long,\nTimon, I fear me thou wilt give away thyself in\npaper shortly: what need these feasts, pomps and\nvain-glories?\n\nTIMON:\nNay, an you begin to rail on society once, I am\nsworn not to give regard to you. Farewell; and come\nwith better music.\n\nAPEMANTUS:\nSo:\nThou wilt not hear me now; thou shalt not then:\nI'll lock thy heaven from thee.\nO, that men's ears should be\nTo counsel deaf, but not to flattery!\n\nSenator:\nAnd late, five thousand: to Varro and to Isidore\nHe owes nine thousand; besides my former sum,\nWhich makes it five and twenty. Still in motion\nOf raging waste? It cannot hold; it will not.\nIf I want gold, steal but a beggar's dog,\nAnd give it Timon, why, the dog coins gold.\nIf I would sell my horse, and buy twenty more\nBetter than he, why, give my horse to Timon,\nAsk nothing, give it him, it foals me, straight,\nAnd able horses. No porter at his gate,\nBut rather one that smiles and still invites\nAll that pass by. It cannot hold: no reason\nCan found his state in safety. Caphis, ho!\nCaphis, I say!\n\nCAPHIS:\nHere, sir; what is your pleasure?\n\nSenator:\nGet on your cloak, and haste you to Lord Timon;\nImportune him for my moneys; be not ceased\nWith slight denial, nor then silenced when--\n'Commend me to your master'--and the cap\nPlays in the right hand, thus: but tell him,\nMy uses cry to me, I must serve my turn\nOut of mine own; his days and times are past\nAnd my reliances on his fracted dates\nHave smit my credit: I love and honour him,\nBut must not break my back to heal his finger;\nImmediate are my needs, and my relief\nMust not be toss'd and turn'd to me in words,\nBut find supply immediate. Get you gone:\nPut on a most importunate aspect,\nA visage of demand; for, I do fear,\nWhen every feather sticks in his own wing,\nLord Timon will be left a naked gull,\nWhich flashes now a phoenix. Get you gone.\n\nCAPHIS:\nI go, sir.\n\nSenator:\n'I go, sir!'--Take the bonds along with you,\nAnd have the dates in contempt.\n\nCAPHIS:\nI will, sir.\n\nSenator:\nGo.\n\nFLAVIUS:\nNo care, no stop! so senseless of expense,\nThat he will neither know how to maintain it,\nNor cease his flow of riot: takes no account\nHow things go from him, nor resumes no care\nOf what is to continue: never mind\nWas to be so unwise, to be so kind.\nWhat shall be done? he will not hear, till feel:\nI must be round with him, now he comes from hunting.\nFie, fie, fie, fie!\n\nCAPHIS:\nGood even, Varro: what,\nYou come for money?\n\nVarro's Servant:\nIs't not your business too?\n\nCAPHIS:\nIt is: and yours too, Isidore?\n\nIsidore's Servant:\nIt is so.\n\nCAPHIS:\nWould we were all discharged!\n\nVarro's Servant:\nI fear it.\n\nCAPHIS:\nHere comes the lord.\n\nTIMON:\nSo soon as dinner's done, we'll forth again,\nMy Alcibiades. With me? what is your will?\n\nCAPHIS:\nMy lord, here is a note of certain dues.\n\nTIMON:\nDues! Whence are you?\n\nCAPHIS:\nOf Athens here, my lord.\n\nTIMON:\nGo to my steward.\n\nCAPHIS:\nPlease it your lordship, he hath put me off\nTo the succession of new days this month:\nMy master is awaked by great occasion\nTo call upon his own, and humbly prays you\nThat with your other noble parts you'll suit\nIn giving him his right.\n\nTIMON:\nMine honest friend,\nI prithee, but repair to me next morning.\n\nCAPHIS:\nNay, good my lord,--\n\nTIMON:\nContain thyself, good friend.\n\nVarro's Servant:\nOne Varro's servant, my good lord,--\n\nIsidore's Servant:\nFrom Isidore;\nHe humbly prays your speedy payment.\n\nCAPHIS:\nIf you did know, my lord, my master's wants--\n\nVarro's Servant:\n'Twas due on forfeiture, my lord, six weeks And past.\n\nIsidore's Servant:\nYour steward puts me off, my lord;\nAnd I am sent expressly to your lordship.\n\nTIMON:\nGive me breath.\nI do beseech you, good my lords, keep on;\nI'll wait upon you instantly.\nCome hither: pray you,\nHow goes the world, that I am thus encounter'd\nWith clamourous demands of date-broke bonds,\nAnd the detention of long-since-due debts,\nAgainst my honour?\n\nFLAVIUS:\nPlease you, gentlemen,\nThe time is unagreeable to this business:\nYour importunacy cease till after dinner,\nThat I may make his lordship understand\nWherefore you are not paid.\n\nTIMON:\nDo so, my friends. See them well entertain'd.\n\nFLAVIUS:\nPray, draw near.\n\nCAPHIS:\nStay, stay, here comes the fool with Apemantus:\nlet's ha' some sport with 'em.\n\nVarro's Servant:\nHang him, he'll abuse us.\n\nIsidore's Servant:\nA plague upon him, dog!\n\nVarro's Servant:\nHow dost, fool?\n\nAPEMANTUS:\nDost dialogue with thy shadow?\n\nVarro's Servant:\nI speak not to thee.\n\nAPEMANTUS:\nNo,'tis to thyself.\nCome away.\n\nIsidore's Servant:\nThere's the fool hangs on your back already.\n\nAPEMANTUS:\nNo, thou stand'st single, thou'rt not on him yet.\n\nCAPHIS:\nWhere's the fool now?\n\nAPEMANTUS:\nHe last asked the question. Poor rogues, and\nusurers' men! bawds between gold and want!\n\nAll Servants:\nWhat are we, Apemantus?\n\nAPEMANTUS:\nAsses.\n\nAll Servants:\nWhy?\n\nAPEMANTUS:\nThat you ask me what you are, and do not know\nyourselves. Speak to 'em, fool.\n\nFool:\nHow do you, gentlemen?\n\nAll Servants:\nGramercies, good fool: how does your mistress?\n\nFool:\nShe's e'en setting on water to scald such chickens\nas you are. Would we could see you at Corinth!\n\nAPEMANTUS:\nGood! gramercy.\n\nFool:\nLook you, here comes my mistress' page.\n\nPage:\n\nAPEMANTUS:\nWould I had a rod in my mouth, that I might answer\nthee profitably.\n\nPage:\nPrithee, Apemantus, read me the superscription of\nthese letters: I know not which is which.\n\nAPEMANTUS:\nCanst not read?\n\nPage:\nNo.\n\nAPEMANTUS:\nThere will little learning die then, that day thou\nart hanged. This is to Lord Timon; this to\nAlcibiades. Go; thou wast born a bastard, and thou't\ndie a bawd.\n\nPage:\nThou wast whelped a dog, and thou shalt famish a\ndog's death. Answer not; I am gone.\n\nAPEMANTUS:\nE'en so thou outrunnest grace. Fool, I will go with\nyou to Lord Timon's.\n\nFool:\nWill you leave me there?\n\nAPEMANTUS:\nIf Timon stay at home. You three serve three usurers?\n\nAll Servants:\nAy; would they served us!\n\nAPEMANTUS:\nSo would I,--as good a trick as ever hangman served thief.\n\nFool:\nAre you three usurers' men?\n\nAll Servants:\nAy, fool.\n\nFool:\nI think no usurer but has a fool to his servant: my\nmistress is one, and I am her fool. When men come\nto borrow of your masters, they approach sadly, and\ngo away merry; but they enter my mistress' house\nmerrily, and go away sadly: the reason of this?\n\nVarro's Servant:\nI could render one.\n\nAPEMANTUS:\nDo it then, that we may account thee a whoremaster\nand a knave; which not-withstanding, thou shalt be\nno less esteemed.\n\nVarro's Servant:\nWhat is a whoremaster, fool?\n\nFool:\nA fool in good clothes, and something like thee.\n'Tis a spirit: sometime't appears like a lord;\nsometime like a lawyer; sometime like a philosopher,\nwith two stones moe than's artificial one: he is\nvery often like a knight; and, generally, in all\nshapes that man goes up and down in from fourscore\nto thirteen, this spirit walks in.\n\nVarro's Servant:\nThou art not altogether a fool.\n\nFool:\nNor thou altogether a wise man: as much foolery as\nI have, so much wit thou lackest.\n\nAPEMANTUS:\nThat answer might have become Apemantus.\n\nAll Servants:\nAside, aside; here comes Lord Timon.\n\nAPEMANTUS:\nCome with me, fool, come.\n\nFool:\nI do not always follow lover, elder brother and\nwoman; sometime the philosopher.\n\nFLAVIUS:\nPray you, walk near: I'll speak with you anon.\n\nTIMON:\nYou make me marvel: wherefore ere this time\nHad you not fully laid my state before me,\nThat I might so have rated my expense,\nAs I had leave of means?\n\nFLAVIUS:\nYou would not hear me,\nAt many leisures I proposed.\n\nTIMON:\nGo to:\nPerchance some single vantages you took.\nWhen my indisposition put you back:\nAnd that unaptness made your minister,\nThus to excuse yourself.\n\nFLAVIUS:\nO my good lord,\nAt many times I brought in my accounts,\nLaid them before you; you would throw them off,\nAnd say, you found them in mine honesty.\nWhen, for some trifling present, you have bid me\nReturn so much, I have shook my head and wept;\nYea, 'gainst the authority of manners, pray'd you\nTo hold your hand more close: I did endure\nNot seldom, nor no slight cheques, when I have\nPrompted you in the ebb of your estate\nAnd your great flow of debts. My loved lord,\nThough you hear now, too late--yet now's a time--\nThe greatest of your having lacks a half\nTo pay your present debts.\n\nTIMON:\nLet all my land be sold.\n\nFLAVIUS:\n'Tis all engaged, some forfeited and gone;\nAnd what remains will hardly stop the mouth\nOf present dues: the future comes apace:\nWhat shall defend the interim? and at length\nHow goes our reckoning?\n\nTIMON:\nTo Lacedaemon did my land extend.\n\nFLAVIUS:\nO my good lord, the world is but a word:\nWere it all yours to give it in a breath,\nHow quickly were it gone!\n\nTIMON:\nYou tell me true.\n\nFLAVIUS:\nIf you suspect my husbandry or falsehood,\nCall me before the exactest auditors\nAnd set me on the proof. So the gods bless me,\nWhen all our offices have been oppress'd\nWith riotous feeders, when our vaults have wept\nWith drunken spilth of wine, when every room\nHath blazed with lights and bray'd with minstrelsy,\nI have retired me to a wasteful cock,\nAnd set mine eyes at flow.\n\nTIMON:\nPrithee, no more.\n\nFLAVIUS:\nHeavens, have I said, the bounty of this lord!\nHow many prodigal bits have slaves and peasants\nThis night englutted! Who is not Timon's?\nWhat heart, head, sword, force, means, but is\nLord Timon's?\nGreat Timon, noble, worthy, royal Timon!\nAh, when the means are gone that buy this praise,\nThe breath is gone whereof this praise is made:\nFeast-won, fast-lost; one cloud of winter showers,\nThese flies are couch'd.\n\nTIMON:\nCome, sermon me no further:\nNo villanous bounty yet hath pass'd my heart;\nUnwisely, not ignobly, have I given.\nWhy dost thou weep? Canst thou the conscience lack,\nTo think I shall lack friends? Secure thy heart;\nIf I would broach the vessels of my love,\nAnd try the argument of hearts by borrowing,\nMen and men's fortunes could I frankly use\nAs I can bid thee speak.\n\nFLAVIUS:\nAssurance bless your thoughts!\n\nTIMON:\nAnd, in some sort, these wants of mine are crown'd,\nThat I account them blessings; for by these\nShall I try friends: you shall perceive how you\nMistake my fortunes; I am wealthy in my friends.\nWithin there! Flaminius! Servilius!\n\nServants:\nMy lord? my lord?\n\nTIMON:\nI will dispatch you severally; you to Lord Lucius;\nto Lord Lucullus you: I hunted with his honour\nto-day: you, to Sempronius: commend me to their\nloves, and, I am proud, say, that my occasions have\nfound time to use 'em toward a supply of money: let\nthe request be fifty talents.\n\nFLAMINIUS:\nAs you have said, my lord.\n\nFLAVIUS:\n\nTIMON:\nGo you, sir, to the senators--\nOf whom, even to the state's best health, I have\nDeserved this hearing--bid 'em send o' the instant\nA thousand talents to me.\n\nFLAVIUS:\nI have been bold--\nFor that I knew it the most general way--\nTo them to use your signet and your name;\nBut they do shake their heads, and I am here\nNo richer in return.\n\nTIMON:\nIs't true? can't be?\n\nFLAVIUS:\nThey answer, in a joint and corporate voice,\nThat now they are at fall, want treasure, cannot\nDo what they would; are sorry--you are honourable,--\nBut yet they could have wish'd--they know not--\nSomething hath been amiss--a noble nature\nMay catch a wrench--would all were well--'tis pity;--\nAnd so, intending other serious matters,\nAfter distasteful looks and these hard fractions,\nWith certain half-caps and cold-moving nods\nThey froze me into silence.\n\nTIMON:\nYou gods, reward them!\nPrithee, man, look cheerly. These old fellows\nHave their ingratitude in them hereditary:\nTheir blood is caked, 'tis cold, it seldom flows;\n'Tis lack of kindly warmth they are not kind;\nAnd nature, as it grows again toward earth,\nIs fashion'd for the journey, dull and heavy.\nGo to Ventidius.\nPrithee, be not sad,\nThou art true and honest; ingeniously I speak.\nNo blame belongs to thee.\nVentidius lately\nBuried his father; by whose death he's stepp'd\nInto a great estate: when he was poor,\nImprison'd and in scarcity of friends,\nI clear'd him with five talents: greet him from me;\nBid him suppose some good necessity\nTouches his friend, which craves to be remember'd\nWith those five talents.\nThat had, give't these fellows\nTo whom 'tis instant due. Ne'er speak, or think,\nThat Timon's fortunes 'mong his friends can sink.\n\nFLAVIUS:\nI would I could not think it: that thought is\nbounty's foe;\nBeing free itself, it thinks all others so.\n\nServant:\nI have told my lord of you; he is coming down to you.\n\nFLAMINIUS:\nI thank you, sir.\n\nServant:\nHere's my lord.\n\nLUCULLUS:\n\nFLAMINIUS:\nHis health is well sir.\n\nLUCULLUS:\nI am right glad that his health is well, sir: and\nwhat hast thou there under thy cloak, pretty Flaminius?\n\nFLAMINIUS:\n'Faith, nothing but an empty box, sir; which, in my\nlord's behalf, I come to entreat your honour to\nsupply; who, having great and instant occasion to\nuse fifty talents, hath sent to your lordship to\nfurnish him, nothing doubting your present\nassistance therein.\n\nLUCULLUS:\nLa, la, la, la! 'nothing doubting,' says he? Alas,\ngood lord! a noble gentleman 'tis, if he would not\nkeep so good a house. Many a time and often I ha'\ndined with him, and told him on't, and come again to\nsupper to him, of purpose to have him spend less,\nand yet he would embrace no counsel, take no warning\nby my coming. Every man has his fault, and honesty\nis his: I ha' told him on't, but I could ne'er get\nhim from't.\n\nServant:\nPlease your lordship, here is the wine.\n\nLUCULLUS:\nFlaminius, I have noted thee always wise. Here's to thee.\n\nFLAMINIUS:\nYour lordship speaks your pleasure.\n\nLUCULLUS:\nI have observed thee always for a towardly prompt\nspirit--give thee thy due--and one that knows what\nbelongs to reason; and canst use the time well, if\nthe time use thee well: good parts in thee.\nGet you gone, sirrah.\nDraw nearer, honest Flaminius. Thy lord's a\nbountiful gentleman: but thou art wise; and thou\nknowest well enough, although thou comest to me,\nthat this is no time to lend money, especially upon\nbare friendship, without security. Here's three\nsolidares for thee: good boy, wink at me, and say\nthou sawest me not. Fare thee well.\n\nFLAMINIUS:\nIs't possible the world should so much differ,\nAnd we alive that lived? Fly, damned baseness,\nTo him that worships thee!\n\nLUCULLUS:\nHa! now I see thou art a fool, and fit for thy master.\n\nFLAMINIUS:\nMay these add to the number that may scald thee!\nLet moulten coin be thy damnation,\nThou disease of a friend, and not himself!\nHas friendship such a faint and milky heart,\nIt turns in less than two nights? O you gods,\nI feel master's passion! this slave,\nUnto his honour, has my lord's meat in him:\nWhy should it thrive and turn to nutriment,\nWhen he is turn'd to poison?\nO, may diseases only work upon't!\nAnd, when he's sick to death, let not that part of nature\nWhich my lord paid for, be of any power\nTo expel sickness, but prolong his hour!\n\nLUCILIUS:\nWho, the Lord Timon? he is my very good friend, and\nan honourable gentleman.\n\nFirst Stranger:\nWe know him for no less, though we are but strangers\nto him. But I can tell you one thing, my lord, and\nwhich I hear from common rumours: now Lord Timon's\nhappy hours are done and past, and his estate\nshrinks from him.\n\nLUCILIUS:\nFie, no, do not believe it; he cannot want for money.\n\nSecond Stranger:\nBut believe you this, my lord, that, not long ago,\none of his men was with the Lord Lucullus to borrow\nso many talents, nay, urged extremely for't and\nshowed what necessity belonged to't, and yet was denied.\n\nLUCILIUS:\nHow!\n\nSecond Stranger:\nI tell you, denied, my lord.\n\nLUCILIUS:\nWhat a strange case was that! now, before the gods,\nI am ashamed on't. Denied that honourable man!\nthere was very little honour showed in't. For my own\npart, I must needs confess, I have received some\nsmall kindnesses from him, as money, plate, jewels\nand such-like trifles, nothing comparing to his;\nyet, had he mistook him and sent to me, I should\nne'er have denied his occasion so many talents.\n\nSERVILIUS:\nSee, by good hap, yonder's my lord;\nI have sweat to see his honour. My honoured lord,--\n\nLUCILIUS:\nServilius! you are kindly met, sir. Fare thee well:\ncommend me to thy honourable virtuous lord, my very\nexquisite friend.\n\nSERVILIUS:\nMay it please your honour, my lord hath sent--\n\nLUCILIUS:\nHa! what has he sent? I am so much endeared to\nthat lord; he's ever sending: how shall I thank\nhim, thinkest thou? And what has he sent now?\n\nSERVILIUS:\nHas only sent his present occasion now, my lord;\nrequesting your lordship to supply his instant use\nwith so many talents.\n\nLUCILIUS:\nI know his lordship is but merry with me;\nHe cannot want fifty five hundred talents.\n\nSERVILIUS:\nBut in the mean time he wants less, my lord.\nIf his occasion were not virtuous,\nI should not urge it half so faithfully.\n\nLUCILIUS:\nDost thou speak seriously, Servilius?\n\nSERVILIUS:\nUpon my soul,'tis true, sir.\n\nLUCILIUS:\nWhat a wicked beast was I to disfurnish myself\nagainst such a good time, when I might ha' shown\nmyself honourable! how unluckily it happened, that I\nshould purchase the day before for a little part,\nand undo a great deal of honoured! Servilius, now,\nbefore the gods, I am not able to do,--the more\nbeast, I say:--I was sending to use Lord Timon\nmyself, these gentlemen can witness! but I would\nnot, for the wealth of Athens, I had done't now.\nCommend me bountifully to his good lordship; and I\nhope his honour will conceive the fairest of me,\nbecause I have no power to be kind: and tell him\nthis from me, I count it one of my greatest\nafflictions, say, that I cannot pleasure such an\nhonourable gentleman. Good Servilius, will you\nbefriend me so far, as to use mine own words to him?\n\nSERVILIUS:\nYes, sir, I shall.\n\nLUCILIUS:\nI'll look you out a good turn, Servilius.\nTrue as you said, Timon is shrunk indeed;\nAnd he that's once denied will hardly speed.\n\nFirst Stranger:\nDo you observe this, Hostilius?\n\nSecond Stranger:\nAy, too well.\n\nFirst Stranger:\nWhy, this is the world's soul; and just of the\nsame piece\nIs every flatterer's spirit. Who can call him\nHis friend that dips in the same dish? for, in\nMy knowing, Timon has been this lord's father,\nAnd kept his credit with his purse,\nSupported his estate; nay, Timon's money\nHas paid his men their wages: he ne'er drinks,\nBut Timon's silver treads upon his lip;\nAnd yet--O, see the monstrousness of man\nWhen he looks out in an ungrateful shape!--\nHe does deny him, in respect of his,\nWhat charitable men afford to beggars.\n\nThird Stranger:\nReligion groans at it.\n\nFirst Stranger:\nFor mine own part,\nI never tasted Timon in my life,\nNor came any of his bounties over me,\nTo mark me for his friend; yet, I protest,\nFor his right noble mind, illustrious virtue\nAnd honourable carriage,\nHad his necessity made use of me,\nI would have put my wealth into donation,\nAnd the best half should have return'd to him,\nSo much I love his heart: but, I perceive,\nMen must learn now with pity to dispense;\nFor policy sits above conscience.\n\nSEMPRONIUS:\nMust he needs trouble me in 't,--hum!--'bove\nall others?\nHe might have tried Lord Lucius or Lucullus;\nAnd now Ventidius is wealthy too,\nWhom he redeem'd from prison: all these\nOwe their estates unto him.\n\nServant:\nMy lord,\nThey have all been touch'd and found base metal, for\nThey have au denied him.\n\nSEMPRONIUS:\nHow! have they denied him?\nHas Ventidius and Lucullus denied him?\nAnd does he send to me? Three? hum!\nIt shows but little love or judgment in him:\nMust I be his last refuge! His friends, like\nphysicians,\nThrive, give him over: must I take the cure upon me?\nHas much disgraced me in't; I'm angry at him,\nThat might have known my place: I see no sense for't,\nBut his occasion might have woo'd me first;\nFor, in my conscience, I was the first man\nThat e'er received gift from him:\nAnd does he think so backwardly of me now,\nThat I'll requite its last? No:\nSo it may prove an argument of laughter\nTo the rest, and 'mongst lords I be thought a fool.\nI'ld rather than the worth of thrice the sum,\nHad sent to me first, but for my mind's sake;\nI'd such a courage to do him good. But now return,\nAnd with their faint reply this answer join;\nWho bates mine honour shall not know my coin.\n\nServant:\nExcellent! Your lordship's a goodly villain. The\ndevil knew not what he did when he made man\npolitic; he crossed himself by 't: and I cannot\nthink but, in the end, the villainies of man will\nset him clear. How fairly this lord strives to\nappear foul! takes virtuous copies to be wicked,\nlike those that under hot ardent zeal would set\nwhole realms on fire: Of such a nature is his\npolitic love.\nThis was my lord's best hope; now all are fled,\nSave only the gods: now his friends are dead,\nDoors, that were ne'er acquainted with their wards\nMany a bounteous year must be employ'd\nNow to guard sure their master.\nAnd this is all a liberal course allows;\nWho cannot keep his wealth must keep his house.\n\nVarro's First Servant:\nWell met; good morrow, Titus and Hortensius.\n\nTITUS:\nThe like to you kind Varro.\n\nHORTENSIUS:\nLucius!\nWhat, do we meet together?\n\nLucilius' Servant:\nAy, and I think\nOne business does command us all; for mine Is money.\n\nTITUS:\nSo is theirs and ours.\n\nLucilius' Servant:\nAnd Sir Philotus too!\n\nPHILOTUS:\nGood day at once.\n\nLucilius' Servant:\nWelcome, good brother.\nWhat do you think the hour?\n\nPHILOTUS:\nLabouring for nine.\n\nLucilius' Servant:\nSo much?\n\nPHILOTUS:\nIs not my lord seen yet?\n\nLucilius' Servant:\nNot yet.\n\nPHILOTUS:\nI wonder on't; he was wont to shine at seven.\n\nLucilius' Servant:\nAy, but the days are wax'd shorter with him:\nYou must consider that a prodigal course\nIs like the sun's; but not, like his, recoverable.\nI fear 'tis deepest winter in Lord Timon's purse;\nThat is one may reach deep enough, and yet\nFind little.\n\nPHILOTUS:\nI am of your fear for that.\n\nTITUS:\nI'll show you how to observe a strange event.\nYour lord sends now for money.\n\nHORTENSIUS:\nMost true, he does.\n\nTITUS:\nAnd he wears jewels now of Timon's gift,\nFor which I wait for money.\n\nHORTENSIUS:\nIt is against my heart.\n\nLucilius' Servant:\nMark, how strange it shows,\nTimon in this should pay more than he owes:\nAnd e'en as if your lord should wear rich jewels,\nAnd send for money for 'em.\n\nHORTENSIUS:\nI'm weary of this charge, the gods can witness:\nI know my lord hath spent of Timon's wealth,\nAnd now ingratitude makes it worse than stealth.\n\nVarro's First Servant:\nYes, mine's three thousand crowns: what's yours?\n\nLucilius' Servant:\nFive thousand mine.\n\nVarro's First Servant:\n'Tis much deep: and it should seem by the sun,\nYour master's confidence was above mine;\nElse, surely, his had equall'd.\nEnter FLAMINIUS.\n\nTITUS:\nOne of Lord Timon's men.\n\nLucilius' Servant:\nFlaminius! Sir, a word: pray, is my lord ready to\ncome forth?\n\nFLAMINIUS:\nNo, indeed, he is not.\n\nTITUS:\nWe attend his lordship; pray, signify so much.\n\nFLAMINIUS:\nI need not tell him that; he knows you are too diligent.\n\nLucilius' Servant:\nHa! is not that his steward muffled so?\nHe goes away in a cloud: call him, call him.\n\nTITUS:\nDo you hear, sir?\n\nVarro's Second Servant:\nBy your leave, sir,--\n\nFLAVIUS:\nWhat do ye ask of me, my friend?\n\nTITUS:\nWe wait for certain money here, sir.\n\nFLAVIUS:\nAy,\nIf money were as certain as your waiting,\n'Twere sure enough.\nWhy then preferr'd you not your sums and bills,\nWhen your false masters eat of my lord's meat?\nThen they could smile and fawn upon his debts\nAnd take down the interest into their\ngluttonous maws.\nYou do yourselves but wrong to stir me up;\nLet me pass quietly:\nBelieve 't, my lord and I have made an end;\nI have no more to reckon, he to spend.\n\nLucilius' Servant:\nAy, but this answer will not serve.\n\nFLAVIUS:\nIf 'twill not serve,'tis not so base as you;\nFor you serve knaves.\n\nVarro's First Servant:\nHow! what does his cashiered worship mutter?\n\nVarro's Second Servant:\nNo matter what; he's poor, and that's revenge\nenough. Who can speak broader than he that has no\nhouse to put his head in? such may rail against\ngreat buildings.\n\nTITUS:\nO, here's Servilius; now we shall know some answer.\n\nSERVILIUS:\nIf I might beseech you, gentlemen, to repair some\nother hour, I should derive much from't; for,\ntake't of my soul, my lord leans wondrously to\ndiscontent: his comfortable temper has forsook him;\nhe's much out of health, and keeps his chamber.\n\nLucilius' Servant:\nMany do keep their chambers are not sick:\nAnd, if it be so far beyond his health,\nMethinks he should the sooner pay his debts,\nAnd make a clear way to the gods.\n\nSERVILIUS:\nGood gods!\n\nTITUS:\nWe cannot take this for answer, sir.\n\nFLAMINIUS:\n\nTIMON:\nWhat, are my doors opposed against my passage?\nHave I been ever free, and must my house\nBe my retentive enemy, my gaol?\nThe place which I have feasted, does it now,\nLike all mankind, show me an iron heart?\n\nLucilius' Servant:\nPut in now, Titus.\n\nTITUS:\nMy lord, here is my bill.\n\nLucilius' Servant:\nHere's mine.\n\nHORTENSIUS:\nAnd mine, my lord.\n\nBoth Varro's Servants:\nAnd ours, my lord.\n\nPHILOTUS:\nAll our bills.\n\nTIMON:\nKnock me down with 'em: cleave me to the girdle.\n\nLucilius' Servant:\nAlas, my lord,-\n\nTIMON:\nCut my heart in sums.\n\nTITUS:\nMine, fifty talents.\n\nTIMON:\nTell out my blood.\n\nLucilius' Servant:\nFive thousand crowns, my lord.\n\nTIMON:\nFive thousand drops pays that.\nWhat yours?--and yours?\n\nVarro's First Servant:\nMy lord,--\n\nVarro's Second Servant:\nMy lord,--\n\nTIMON:\nTear me, take me, and the gods fall upon you!\n\nHORTENSIUS:\n'Faith, I perceive our masters may throw their caps\nat their money: these debts may well be called\ndesperate ones, for a madman owes 'em.\n\nTIMON:\nThey have e'en put my breath from me, the slaves.\nCreditors? devils!\n\nFLAVIUS:\nMy dear lord,--\n\nTIMON:\nWhat if it should be so?\n\nFLAVIUS:\nMy lord,--\n\nTIMON:\nI'll have it so. My steward!\n\nFLAVIUS:\nHere, my lord.\n\nTIMON:\nSo fitly? Go, bid all my friends again,\nLucius, Lucullus, and Sempronius:\nAll, sirrah, all:\nI'll once more feast the rascals.\n\nFLAVIUS:\nO my lord,\nYou only speak from your distracted soul;\nThere is not so much left, to furnish out\nA moderate table.\n\nTIMON:\nBe't not in thy care; go,\nI charge thee, invite them all: let in the tide\nOf knaves once more; my cook and I'll provide.\n\nFirst Senator:\nMy lord, you have my voice to it; the fault's\nBloody; 'tis necessary he should die:\nNothing emboldens sin so much as mercy.\n\nSecond Senator:\nMost true; the law shall bruise him.\n\nALCIBIADES:\nHonour, health, and compassion to the senate!\n\nFirst Senator:\nNow, captain?\n\nALCIBIADES:\nI am an humble suitor to your virtues;\nFor pity is the virtue of the law,\nAnd none but tyrants use it cruelly.\nIt pleases time and fortune to lie heavy\nUpon a friend of mine, who, in hot blood,\nHath stepp'd into the law, which is past depth\nTo those that, without heed, do plunge into 't.\nHe is a man, setting his fate aside,\nOf comely virtues:\nNor did he soil the fact with cowardice--\nAn honour in him which buys out his fault--\nBut with a noble fury and fair spirit,\nSeeing his reputation touch'd to death,\nHe did oppose his foe:\nAnd with such sober and unnoted passion\nHe did behave his anger, ere 'twas spent,\nAs if he had but proved an argument.\n\nFirst Senator:\nYou undergo too strict a paradox,\nStriving to make an ugly deed look fair:\nYour words have took such pains as if they labour'd\nTo bring manslaughter into form and set quarrelling\nUpon the head of valour; which indeed\nIs valour misbegot and came into the world\nWhen sects and factions were newly born:\nHe's truly valiant that can wisely suffer\nThe worst that man can breathe, and make his wrongs\nHis outsides, to wear them like his raiment,\ncarelessly,\nAnd ne'er prefer his injuries to his heart,\nTo bring it into danger.\nIf wrongs be evils and enforce us kill,\nWhat folly 'tis to hazard life for ill!\n\nALCIBIADES:\nMy lord,--\n\nFirst Senator:\nYou cannot make gross sins look clear:\nTo revenge is no valour, but to bear.\n\nALCIBIADES:\nMy lords, then, under favour, pardon me,\nIf I speak like a captain.\nWhy do fond men expose themselves to battle,\nAnd not endure all threats? sleep upon't,\nAnd let the foes quietly cut their throats,\nWithout repugnancy? If there be\nSuch valour in the bearing, what make we\nAbroad? why then, women are more valiant\nThat stay at home, if bearing carry it,\nAnd the ass more captain than the lion, the felon\nLoaden with irons wiser than the judge,\nIf wisdom be in suffering. O my lords,\nAs you are great, be pitifully good:\nWho cannot condemn rashness in cold blood?\nTo kill, I grant, is sin's extremest gust;\nBut, in defence, by mercy, 'tis most just.\nTo be in anger is impiety;\nBut who is man that is not angry?\nWeigh but the crime with this.\n\nSecond Senator:\nYou breathe in vain.\n\nALCIBIADES:\nIn vain! his service done\nAt Lacedaemon and Byzantium\nWere a sufficient briber for his life.\n\nFirst Senator:\nWhat's that?\n\nALCIBIADES:\nI say, my lords, he has done fair service,\nAnd slain in fight many of your enemies:\nHow full of valour did he bear himself\nIn the last conflict, and made plenteous wounds!\n\nSecond Senator:\nHe has made too much plenty with 'em;\nHe's a sworn rioter: he has a sin that often\nDrowns him, and takes his valour prisoner:\nIf there were no foes, that were enough\nTo overcome him: in that beastly fury\nHe has been known to commit outrages,\nAnd cherish factions: 'tis inferr'd to us,\nHis days are foul and his drink dangerous.\n\nFirst Senator:\nHe dies.\n\nALCIBIADES:\nHard fate! he might have died in war.\nMy lords, if not for any parts in him--\nThough his right arm might purchase his own time\nAnd be in debt to none--yet, more to move you,\nTake my deserts to his, and join 'em both:\nAnd, for I know your reverend ages love\nSecurity, I'll pawn my victories, all\nMy honours to you, upon his good returns.\nIf by this crime he owes the law his life,\nWhy, let the war receive 't in valiant gore\nFor law is strict, and war is nothing more.\n\nFirst Senator:\nWe are for law: he dies; urge it no more,\nOn height of our displeasure: friend or brother,\nHe forfeits his own blood that spills another.\n\nALCIBIADES:\nMust it be so? it must not be. My lords,\nI do beseech you, know me.\n\nSecond Senator:\nHow!\n\nALCIBIADES:\nCall me to your remembrances.\n\nThird Senator:\nWhat!\n\nALCIBIADES:\nI cannot think but your age has forgot me;\nIt could not else be, I should prove so base,\nTo sue, and be denied such common grace:\nMy wounds ache at you.\n\nFirst Senator:\nDo you dare our anger?\n'Tis in few words, but spacious in effect;\nWe banish thee for ever.\n\nALCIBIADES:\nBanish me!\nBanish your dotage; banish usury,\nThat makes the senate ugly.\n\nFirst Senator:\nIf, after two days' shine, Athens contain thee,\nAttend our weightier judgment. And, not to swell\nour spirit,\nHe shall be executed presently.\n\nALCIBIADES:\nNow the gods keep you old enough; that you may live\nOnly in bone, that none may look on you!\nI'm worse than mad: I have kept back their foes,\nWhile they have told their money and let out\nTheir coin upon large interest, I myself\nRich only in large hurts. All those for this?\nIs this the balsam that the usuring senate\nPours into captains' wounds? Banishment!\nIt comes not ill; I hate not to be banish'd;\nIt is a cause worthy my spleen and fury,\nThat I may strike at Athens. I'll cheer up\nMy discontented troops, and lay for hearts.\n'Tis honour with most lands to be at odds;\nSoldiers should brook as little wrongs as gods.\n\nFirst Lord:\nThe good time of day to you, sir.\n\nSecond Lord:\nI also wish it to you. I think this honourable lord\ndid but try us this other day.\n\nFirst Lord:\nUpon that were my thoughts tiring, when we\nencountered: I hope it is not so low with him as\nhe made it seem in the trial of his several friends.\n\nSecond Lord:\nIt should not be, by the persuasion of his new feasting.\n\nFirst Lord:\nI should think so: he hath sent me an earnest\ninviting, which many my near occasions did urge me\nto put off; but he hath conjured me beyond them, and\nI must needs appear.\n\nSecond Lord:\nIn like manner was I in debt to my importunate\nbusiness, but he would not hear my excuse. I am\nsorry, when he sent to borrow of me, that my\nprovision was out.\n\nFirst Lord:\nI am sick of that grief too, as I understand how all\nthings go.\n\nSecond Lord:\nEvery man here's so. What would he have borrowed of\nyou?\n\nFirst Lord:\nA thousand pieces.\n\nSecond Lord:\nA thousand pieces!\n\nFirst Lord:\nWhat of you?\n\nSecond Lord:\nHe sent to me, sir,--Here he comes.\n\nTIMON:\nWith all my heart, gentlemen both; and how fare you?\n\nFirst Lord:\nEver at the best, hearing well of your lordship.\n\nSecond Lord:\nThe swallow follows not summer more willing than we\nyour lordship.\n\nTIMON:\n\nFirst Lord:\nI hope it remains not unkindly with your lordship\nthat I returned you an empty messenger.\n\nTIMON:\nO, sir, let it not trouble you.\n\nSecond Lord:\nMy noble lord,--\n\nTIMON:\nAh, my good friend, what cheer?\n\nSecond Lord:\nMy most honourable lord, I am e'en sick of shame,\nthat, when your lordship this other day sent to me,\nI was so unfortunate a beggar.\n\nTIMON:\nThink not on 't, sir.\n\nSecond Lord:\nIf you had sent but two hours before,--\n\nTIMON:\nLet it not cumber your better remembrance.\nCome, bring in all together.\n\nSecond Lord:\nAll covered dishes!\n\nFirst Lord:\nRoyal cheer, I warrant you.\n\nThird Lord:\nDoubt not that, if money and the season can yield\nit.\n\nFirst Lord:\nHow do you? What's the news?\n\nThird Lord:\nAlcibiades is banished: hear you of it?\n\nFirst Lord:\nAlcibiades banished!\n\nThird Lord:\n'Tis so, be sure of it.\n\nFirst Lord:\nHow! how!\n\nSecond Lord:\nI pray you, upon what?\n\nTIMON:\nMy worthy friends, will you draw near?\n\nThird Lord:\nI'll tell you more anon. Here's a noble feast toward.\n\nSecond Lord:\nThis is the old man still.\n\nThird Lord:\nWill 't hold? will 't hold?\n\nSecond Lord:\nIt does: but time will--and so--\n\nThird Lord:\nI do conceive.\n\nTIMON:\nEach man to his stool, with that spur as he would to\nthe lip of his mistress: your diet shall be in all\nplaces alike. Make not a city feast of it, to let\nthe meat cool ere we can agree upon the first place:\nsit, sit. The gods require our thanks.\nYou great benefactors, sprinkle our society with\nthankfulness. For your own gifts, make yourselves\npraised: but reserve still to give, lest your\ndeities be despised. Lend to each man enough, that\none need not lend to another; for, were your\ngodheads to borrow of men, men would forsake the\ngods. Make the meat be beloved more than the man\nthat gives it. Let no assembly of twenty be without\na score of villains: if there sit twelve women at\nthe table, let a dozen of them be--as they are. The\nrest of your fees, O gods--the senators of Athens,\ntogether with the common lag of people--what is\namiss in them, you gods, make suitable for\ndestruction. For these my present friends, as they\nare to me nothing, so in nothing bless them, and to\nnothing are they welcome.\nUncover, dogs, and lap.\n\nSome Speak:\nWhat does his lordship mean?\n\nSome Others:\nI know not.\n\nTIMON:\nMay you a better feast never behold,\nYou knot of mouth-friends I smoke and lukewarm water\nIs your perfection. This is Timon's last;\nWho, stuck and spangled with your flatteries,\nWashes it off, and sprinkles in your faces\nYour reeking villany.\nLive loathed and long,\nMost smiling, smooth, detested parasites,\nCourteous destroyers, affable wolves, meek bears,\nYou fools of fortune, trencher-friends, time's flies,\nCap and knee slaves, vapours, and minute-jacks!\nOf man and beast the infinite malady\nCrust you quite o'er! What, dost thou go?\nSoft! take thy physic first--thou too--and thou;--\nStay, I will lend thee money, borrow none.\nWhat, all in motion? Henceforth be no feast,\nWhereat a villain's not a welcome guest.\nBurn, house! sink, Athens! henceforth hated be\nOf Timon man and all humanity!\n\nFirst Lord:\nHow now, my lords!\n\nSecond Lord:\nKnow you the quality of Lord Timon's fury?\n\nThird Lord:\nPush! did you see my cap?\n\nFourth Lord:\nI have lost my gown.\n\nFirst Lord:\nHe's but a mad lord, and nought but humour sways him.\nHe gave me a jewel th' other day, and now he has\nbeat it out of my hat: did you see my jewel?\n\nThird Lord:\nDid you see my cap?\n\nSecond Lord:\nHere 'tis.\n\nFourth Lord:\nHere lies my gown.\n\nFirst Lord:\nLet's make no stay.\n\nSecond Lord:\nLord Timon's mad.\n\nThird Lord:\nI feel 't upon my bones.\n\nFourth Lord:\nOne day he gives us diamonds, next day stones.\n\nTIMON:\nLet me look back upon thee. O thou wall,\nThat girdlest in those wolves, dive in the earth,\nAnd fence not Athens! Matrons, turn incontinent!\nObedience fail in children! slaves and fools,\nPluck the grave wrinkled senate from the bench,\nAnd minister in their steads! to general filths\nConvert o' the instant, green virginity,\nDo 't in your parents' eyes! bankrupts, hold fast;\nRather than render back, out with your knives,\nAnd cut your trusters' throats! bound servants, steal!\nLarge-handed robbers your grave masters are,\nAnd pill by law. Maid, to thy master's bed;\nThy mistress is o' the brothel! Son of sixteen,\npluck the lined crutch from thy old limping sire,\nWith it beat out his brains! Piety, and fear,\nReligion to the gods, peace, justice, truth,\nDomestic awe, night-rest, and neighbourhood,\nInstruction, manners, mysteries, and trades,\nDegrees, observances, customs, and laws,\nDecline to your confounding contraries,\nAnd let confusion live! Plagues, incident to men,\nYour potent and infectious fevers heap\nOn Athens, ripe for stroke! Thou cold sciatica,\nCripple our senators, that their limbs may halt\nAs lamely as their manners. Lust and liberty\nCreep in the minds and marrows of our youth,\nThat 'gainst the stream of virtue they may strive,\nAnd drown themselves in riot! Itches, blains,\nSow all the Athenian bosoms; and their crop\nBe general leprosy! Breath infect breath,\nat their society, as their friendship, may\nmerely poison! Nothing I'll bear from thee,\nBut nakedness, thou detestable town!\nTake thou that too, with multiplying bans!\nTimon will to the woods; where he shall find\nThe unkindest beast more kinder than mankind.\nThe gods confound--hear me, you good gods all--\nThe Athenians both within and out that wall!\nAnd grant, as Timon grows, his hate may grow\nTo the whole race of mankind, high and low! Amen.\n\nFirst Servant:\nHear you, master steward, where's our master?\nAre we undone? cast off? nothing remaining?\n\nFLAVIUS:\nAlack, my fellows, what should I say to you?\nLet me be recorded by the righteous gods,\nI am as poor as you.\n\nFirst Servant:\nSuch a house broke!\nSo noble a master fall'n! All gone! and not\nOne friend to take his fortune by the arm,\nAnd go along with him!\n\nSecond Servant:\nAs we do turn our backs\nFrom our companion thrown into his grave,\nSo his familiars to his buried fortunes\nSlink all away, leave their false vows with him,\nLike empty purses pick'd; and his poor self,\nA dedicated beggar to the air,\nWith his disease of all-shunn'd poverty,\nWalks, like contempt, alone. More of our fellows.\n\nFLAVIUS:\nAll broken implements of a ruin'd house.\n\nThird Servant:\nYet do our hearts wear Timon's livery;\nThat see I by our faces; we are fellows still,\nServing alike in sorrow: leak'd is our bark,\nAnd we, poor mates, stand on the dying deck,\nHearing the surges threat: we must all part\nInto this sea of air.\n\nFLAVIUS:\nGood fellows all,\nThe latest of my wealth I'll share amongst you.\nWherever we shall meet, for Timon's sake,\nLet's yet be fellows; let's shake our heads, and say,\nAs 'twere a knell unto our master's fortunes,\n'We have seen better days.' Let each take some;\nNay, put out all your hands. Not one word more:\nThus part we rich in sorrow, parting poor.\nO, the fierce wretchedness that glory brings us!\nWho would not wish to be from wealth exempt,\nSince riches point to misery and contempt?\nWho would be so mock'd with glory? or to live\nBut in a dream of friendship?\nTo have his pomp and all what state compounds\nBut only painted, like his varnish'd friends?\nPoor honest lord, brought low by his own heart,\nUndone by goodness! Strange, unusual blood,\nWhen man's worst sin is, he does too much good!\nWho, then, dares to be half so kind again?\nFor bounty, that makes gods, does still mar men.\nMy dearest lord, bless'd, to be most accursed,\nRich, only to be wretched, thy great fortunes\nAre made thy chief afflictions. Alas, kind lord!\nHe's flung in rage from this ingrateful seat\nOf monstrous friends, nor has he with him to\nSupply his life, or that which can command it.\nI'll follow and inquire him out:\nI'll ever serve his mind with my best will;\nWhilst I have gold, I'll be his steward still.\n\nTIMON:\nO blessed breeding sun, draw from the earth\nRotten humidity; below thy sister's orb\nInfect the air! Twinn'd brothers of one womb,\nWhose procreation, residence, and birth,\nScarce is dividant, touch them with several fortunes;\nThe greater scorns the lesser: not nature,\nTo whom all sores lay siege, can bear great fortune,\nBut by contempt of nature.\nRaise me this beggar, and deny 't that lord;\nThe senator shall bear contempt hereditary,\nThe beggar native honour.\nIt is the pasture lards the rother's sides,\nThe want that makes him lean. Who dares, who dares,\nIn purity of manhood stand upright,\nAnd say 'This man's a flatterer?' if one be,\nSo are they all; for every grise of fortune\nIs smooth'd by that below: the learned pate\nDucks to the golden fool: all is oblique;\nThere's nothing level in our cursed natures,\nBut direct villany. Therefore, be abhorr'd\nAll feasts, societies, and throngs of men!\nHis semblable, yea, himself, Timon disdains:\nDestruction fang mankind! Earth, yield me roots!\nWho seeks for better of thee, sauce his palate\nWith thy most operant poison! What is here?\nGold? yellow, glittering, precious gold? No, gods,\nI am no idle votarist: roots, you clear heavens!\nThus much of this will make black white, foul fair,\nWrong right, base noble, old young, coward valiant.\nHa, you gods! why this? what this, you gods? Why, this\nWill lug your priests and servants from your sides,\nPluck stout men's pillows from below their heads:\nThis yellow slave\nWill knit and break religions, bless the accursed,\nMake the hoar leprosy adored, place thieves\nAnd give them title, knee and approbation\nWith senators on the bench: this is it\nThat makes the wappen'd widow wed again;\nShe, whom the spital-house and ulcerous sores\nWould cast the gorge at, this embalms and spices\nTo the April day again. Come, damned earth,\nThou common whore of mankind, that put'st odds\nAmong the route of nations, I will make thee\nDo thy right nature.\nHa! a drum? Thou'rt quick,\nBut yet I'll bury thee: thou'lt go, strong thief,\nWhen gouty keepers of thee cannot stand.\nNay, stay thou out for earnest.\n\nALCIBIADES:\nWhat art thou there? speak.\n\nTIMON:\nA beast, as thou art. The canker gnaw thy heart,\nFor showing me again the eyes of man!\n\nALCIBIADES:\nWhat is thy name? Is man so hateful to thee,\nThat art thyself a man?\n\nTIMON:\nI am Misanthropos, and hate mankind.\nFor thy part, I do wish thou wert a dog,\nThat I might love thee something.\n\nALCIBIADES:\nI know thee well;\nBut in thy fortunes am unlearn'd and strange.\n\nTIMON:\nI know thee too; and more than that I know thee,\nI not desire to know. Follow thy drum;\nWith man's blood paint the ground, gules, gules:\nReligious canons, civil laws are cruel;\nThen what should war be? This fell whore of thine\nHath in her more destruction than thy sword,\nFor all her cherubim look.\n\nPHRYNIA:\nThy lips rot off!\n\nTIMON:\nI will not kiss thee; then the rot returns\nTo thine own lips again.\n\nALCIBIADES:\nHow came the noble Timon to this change?\n\nTIMON:\nAs the moon does, by wanting light to give:\nBut then renew I could not, like the moon;\nThere were no suns to borrow of.\n\nALCIBIADES:\nNoble Timon,\nWhat friendship may I do thee?\n\nTIMON:\nNone, but to\nMaintain my opinion.\n\nALCIBIADES:\nWhat is it, Timon?\n\nTIMON:\nPromise me friendship, but perform none: if thou\nwilt not promise, the gods plague thee, for thou art\na man! if thou dost perform, confound thee, for\nthou art a man!\n\nALCIBIADES:\nI have heard in some sort of thy miseries.\n\nTIMON:\nThou saw'st them, when I had prosperity.\n\nALCIBIADES:\nI see them now; then was a blessed time.\n\nTIMON:\nAs thine is now, held with a brace of harlots.\n\nTIMANDRA:\nIs this the Athenian minion, whom the world\nVoiced so regardfully?\n\nTIMON:\nArt thou Timandra?\n\nTIMANDRA:\nYes.\n\nTIMON:\nBe a whore still: they love thee not that use thee;\nGive them diseases, leaving with thee their lust.\nMake use of thy salt hours: season the slaves\nFor tubs and baths; bring down rose-cheeked youth\nTo the tub-fast and the diet.\n\nTIMANDRA:\nHang thee, monster!\n\nALCIBIADES:\nPardon him, sweet Timandra; for his wits\nAre drown'd and lost in his calamities.\nI have but little gold of late, brave Timon,\nThe want whereof doth daily make revolt\nIn my penurious band: I have heard, and grieved,\nHow cursed Athens, mindless of thy worth,\nForgetting thy great deeds, when neighbour states,\nBut for thy sword and fortune, trod upon them,--\n\nTIMON:\nI prithee, beat thy drum, and get thee gone.\n\nALCIBIADES:\nI am thy friend, and pity thee, dear Timon.\n\nTIMON:\nHow dost thou pity him whom thou dost trouble?\nI had rather be alone.\n\nALCIBIADES:\nWhy, fare thee well:\nHere is some gold for thee.\n\nTIMON:\nKeep it, I cannot eat it.\n\nALCIBIADES:\nWhen I have laid proud Athens on a heap,--\n\nTIMON:\nWarr'st thou 'gainst Athens?\n\nALCIBIADES:\nAy, Timon, and have cause.\n\nTIMON:\nThe gods confound them all in thy conquest;\nAnd thee after, when thou hast conquer'd!\n\nALCIBIADES:\nWhy me, Timon?\n\nTIMON:\nThat, by killing of villains,\nThou wast born to conquer my country.\nPut up thy gold: go on,--here's gold,--go on;\nBe as a planetary plague, when Jove\nWill o'er some high-viced city hang his poison\nIn the sick air: let not thy sword skip one:\nPity not honour'd age for his white beard;\nHe is an usurer: strike me the counterfeit matron;\nIt is her habit only that is honest,\nHerself's a bawd: let not the virgin's cheek\nMake soft thy trenchant sword; for those milk-paps,\nThat through the window-bars bore at men's eyes,\nAre not within the leaf of pity writ,\nBut set them down horrible traitors: spare not the babe,\nWhose dimpled smiles from fools exhaust their mercy;\nThink it a bastard, whom the oracle\nHath doubtfully pronounced thy throat shall cut,\nAnd mince it sans remorse: swear against objects;\nPut armour on thine ears and on thine eyes;\nWhose proof, nor yells of mothers, maids, nor babes,\nNor sight of priests in holy vestments bleeding,\nShall pierce a jot. There's gold to pay soldiers:\nMake large confusion; and, thy fury spent,\nConfounded be thyself! Speak not, be gone.\n\nALCIBIADES:\nHast thou gold yet? I'll take the gold thou\ngivest me,\nNot all thy counsel.\n\nTIMON:\nDost thou, or dost thou not, heaven's curse\nupon thee!\n\nPHRYNIA:\nGive us some gold, good Timon: hast thou more?\n\nTIMON:\nEnough to make a whore forswear her trade,\nAnd to make whores, a bawd. Hold up, you sluts,\nYour aprons mountant: you are not oathable,\nAlthough, I know, you 'll swear, terribly swear\nInto strong shudders and to heavenly agues\nThe immortal gods that hear you,--spare your oaths,\nI'll trust to your conditions: be whores still;\nAnd he whose pious breath seeks to convert you,\nBe strong in whore, allure him, burn him up;\nLet your close fire predominate his smoke,\nAnd be no turncoats: yet may your pains, six months,\nBe quite contrary: and thatch your poor thin roofs\nWith burthens of the dead;--some that were hang'd,\nNo matter:--wear them, betray with them: whore still;\nPaint till a horse may mire upon your face,\nA pox of wrinkles!\n\nPHRYNIA:\nWell, more gold: what then?\nBelieve't, that we'll do any thing for gold.\n\nTIMON:\nConsumptions sow\nIn hollow bones of man; strike their sharp shins,\nAnd mar men's spurring. Crack the lawyer's voice,\nThat he may never more false title plead,\nNor sound his quillets shrilly: hoar the flamen,\nThat scolds against the quality of flesh,\nAnd not believes himself: down with the nose,\nDown with it flat; take the bridge quite away\nOf him that, his particular to foresee,\nSmells from the general weal: make curl'd-pate\nruffians bald;\nAnd let the unscarr'd braggarts of the war\nDerive some pain from you: plague all;\nThat your activity may defeat and quell\nThe source of all erection. There's more gold:\nDo you damn others, and let this damn you,\nAnd ditches grave you all!\n\nPHRYNIA:\nMore counsel with more money, bounteous Timon.\n\nTIMON:\nMore whore, more mischief first; I have given you earnest.\n\nALCIBIADES:\nStrike up the drum towards Athens! Farewell, Timon:\nIf I thrive well, I'll visit thee again.\n\nTIMON:\nIf I hope well, I'll never see thee more.\n\nALCIBIADES:\nI never did thee harm.\n\nTIMON:\nYes, thou spokest well of me.\n\nALCIBIADES:\nCall'st thou that harm?\n\nTIMON:\nMen daily find it. Get thee away, and take\nThy beagles with thee.\n\nALCIBIADES:\nWe but offend him. Strike!\n\nTIMON:\nThat nature, being sick of man's unkindness,\nShould yet be hungry! Common mother, thou,\nWhose womb unmeasurable, and infinite breast,\nTeems, and feeds all; whose self-same mettle,\nWhereof thy proud child, arrogant man, is puff'd,\nEngenders the black toad and adder blue,\nThe gilded newt and eyeless venom'd worm,\nWith all the abhorred births below crisp heaven\nWhereon Hyperion's quickening fire doth shine;\nYield him, who all thy human sons doth hate,\nFrom forth thy plenteous bosom, one poor root!\nEnsear thy fertile and conceptious womb,\nLet it no more bring out ingrateful man!\nGo great with tigers, dragons, wolves, and bears;\nTeem with new monsters, whom thy upward face\nHath to the marbled mansion all above\nNever presented!--O, a root,--dear thanks!--\nDry up thy marrows, vines, and plough-torn leas;\nWhereof ungrateful man, with liquorish draughts\nAnd morsels unctuous, greases his pure mind,\nThat from it all consideration slips!\nMore man? plague, plague!\n\nAPEMANTUS:\nI was directed hither: men report\nThou dost affect my manners, and dost use them.\n\nTIMON:\n'Tis, then, because thou dost not keep a dog,\nWhom I would imitate: consumption catch thee!\n\nAPEMANTUS:\nThis is in thee a nature but infected;\nA poor unmanly melancholy sprung\nFrom change of fortune. Why this spade? this place?\nThis slave-like habit? and these looks of care?\nThy flatterers yet wear silk, drink wine, lie soft;\nHug their diseased perfumes, and have forgot\nThat ever Timon was. Shame not these woods,\nBy putting on the cunning of a carper.\nBe thou a flatterer now, and seek to thrive\nBy that which has undone thee: hinge thy knee,\nAnd let his very breath, whom thou'lt observe,\nBlow off thy cap; praise his most vicious strain,\nAnd call it excellent: thou wast told thus;\nThou gavest thine ears like tapsters that bid welcome\nTo knaves and all approachers: 'tis most just\nThat thou turn rascal; hadst thou wealth again,\nRascals should have 't. Do not assume my likeness.\n\nTIMON:\nWere I like thee, I'ld throw away myself.\n\nAPEMANTUS:\nThou hast cast away thyself, being like thyself;\nA madman so long, now a fool. What, think'st\nThat the bleak air, thy boisterous chamberlain,\nWill put thy shirt on warm? will these moss'd trees,\nThat have outlived the eagle, page thy heels,\nAnd skip where thou point'st out? will the\ncold brook,\nCandied with ice, caudle thy morning taste,\nTo cure thy o'er-night's surfeit? Call the creatures\nWhose naked natures live in an the spite\nOf wreakful heaven, whose bare unhoused trunks,\nTo the conflicting elements exposed,\nAnswer mere nature; bid them flatter thee;\nO, thou shalt find--\n\nTIMON:\nA fool of thee: depart.\n\nAPEMANTUS:\nI love thee better now than e'er I did.\n\nTIMON:\nI hate thee worse.\n\nAPEMANTUS:\nWhy?\n\nTIMON:\nThou flatter'st misery.\n\nAPEMANTUS:\nI flatter not; but say thou art a caitiff.\n\nTIMON:\nWhy dost thou seek me out?\n\nAPEMANTUS:\nTo vex thee.\n\nTIMON:\nAlways a villain's office or a fool's.\nDost please thyself in't?\n\nAPEMANTUS:\nAy.\n\nTIMON:\nWhat! a knave too?\n\nAPEMANTUS:\nIf thou didst put this sour-cold habit on\nTo castigate thy pride, 'twere well: but thou\nDost it enforcedly; thou'ldst courtier be again,\nWert thou not beggar. Willing misery\nOutlives encertain pomp, is crown'd before:\nThe one is filling still, never complete;\nThe other, at high wish: best state, contentless,\nHath a distracted and most wretched being,\nWorse than the worst, content.\nThou shouldst desire to die, being miserable.\n\nTIMON:\nNot by his breath that is more miserable.\nThou art a slave, whom Fortune's tender arm\nWith favour never clasp'd; but bred a dog.\nHadst thou, like us from our first swath, proceeded\nThe sweet degrees that this brief world affords\nTo such as may the passive drugs of it\nFreely command, thou wouldst have plunged thyself\nIn general riot; melted down thy youth\nIn different beds of lust; and never learn'd\nThe icy precepts of respect, but follow'd\nThe sugar'd game before thee. But myself,\nWho had the world as my confectionary,\nThe mouths, the tongues, the eyes and hearts of men\nAt duty, more than I could frame employment,\nThat numberless upon me stuck as leaves\nDo on the oak, hive with one winter's brush\nFell from their boughs and left me open, bare\nFor every storm that blows: I, to bear this,\nThat never knew but better, is some burden:\nThy nature did commence in sufferance, time\nHath made thee hard in't. Why shouldst thou hate men?\nThey never flatter'd thee: what hast thou given?\nIf thou wilt curse, thy father, that poor rag,\nMust be thy subject, who in spite put stuff\nTo some she beggar and compounded thee\nPoor rogue hereditary. Hence, be gone!\nIf thou hadst not been born the worst of men,\nThou hadst been a knave and flatterer.\n\nAPEMANTUS:\nArt thou proud yet?\n\nTIMON:\nAy, that I am not thee.\n\nAPEMANTUS:\nI, that I was\nNo prodigal.\n\nTIMON:\nI, that I am one now:\nWere all the wealth I have shut up in thee,\nI'ld give thee leave to hang it. Get thee gone.\nThat the whole life of Athens were in this!\nThus would I eat it.\n\nAPEMANTUS:\nHere; I will mend thy feast.\n\nTIMON:\nFirst mend my company, take away thyself.\n\nAPEMANTUS:\nSo I shall mend mine own, by the lack of thine.\n\nTIMON:\n'Tis not well mended so, it is but botch'd;\nif not, I would it were.\n\nAPEMANTUS:\nWhat wouldst thou have to Athens?\n\nTIMON:\nThee thither in a whirlwind. If thou wilt,\nTell them there I have gold; look, so I have.\n\nAPEMANTUS:\nHere is no use for gold.\n\nTIMON:\nThe best and truest;\nFor here it sleeps, and does no hired harm.\n\nAPEMANTUS:\nWhere liest o' nights, Timon?\n\nTIMON:\nUnder that's above me.\nWhere feed'st thou o' days, Apemantus?\n\nAPEMANTUS:\nWhere my stomach finds meat; or, rather, where I eat\nit.\n\nTIMON:\nWould poison were obedient and knew my mind!\n\nAPEMANTUS:\nWhere wouldst thou send it?\n\nTIMON:\nTo sauce thy dishes.\n\nAPEMANTUS:\nThe middle of humanity thou never knewest, but the\nextremity of both ends: when thou wast in thy gilt\nand thy perfume, they mocked thee for too much\ncuriosity; in thy rags thou knowest none, but art\ndespised for the contrary. There's a medlar for\nthee, eat it.\n\nTIMON:\nOn what I hate I feed not.\n\nAPEMANTUS:\nDost hate a medlar?\n\nTIMON:\nAy, though it look like thee.\n\nAPEMANTUS:\nAn thou hadst hated meddlers sooner, thou shouldst\nhave loved thyself better now. What man didst thou\never know unthrift that was beloved after his means?\n\nTIMON:\nWho, without those means thou talkest of, didst thou\never know beloved?\n\nAPEMANTUS:\nMyself.\n\nTIMON:\nI understand thee; thou hadst some means to keep a\ndog.\n\nAPEMANTUS:\nWhat things in the world canst thou nearest compare\nto thy flatterers?\n\nTIMON:\nWomen nearest; but men, men are the things\nthemselves. What wouldst thou do with the world,\nApemantus, if it lay in thy power?\n\nAPEMANTUS:\nGive it the beasts, to be rid of the men.\n\nTIMON:\nWouldst thou have thyself fall in the confusion of\nmen, and remain a beast with the beasts?\n\nAPEMANTUS:\nAy, Timon.\n\nTIMON:\nA beastly ambition, which the gods grant thee t'\nattain to! If thou wert the lion, the fox would\nbeguile thee; if thou wert the lamb, the fox would\neat three: if thou wert the fox, the lion would\nsuspect thee, when peradventure thou wert accused by\nthe ass: if thou wert the ass, thy dulness would\ntorment thee, and still thou livedst but as a\nbreakfast to the wolf: if thou wert the wolf, thy\ngreediness would afflict thee, and oft thou shouldst\nhazard thy life for thy dinner: wert thou the\nunicorn, pride and wrath would confound thee and\nmake thine own self the conquest of thy fury: wert\nthou a bear, thou wouldst be killed by the horse:\nwert thou a horse, thou wouldst be seized by the\nleopard: wert thou a leopard, thou wert german to\nthe lion and the spots of thy kindred were jurors on\nthy life: all thy safety were remotion and thy\ndefence absence. What beast couldst thou be, that\nwere not subject to a beast? and what a beast art\nthou already, that seest not thy loss in\ntransformation!\n\nAPEMANTUS:\nIf thou couldst please me with speaking to me, thou\nmightst have hit upon it here: the commonwealth of\nAthens is become a forest of beasts.\n\nTIMON:\nHow has the ass broke the wall, that thou art out of the city?\n\nAPEMANTUS:\nYonder comes a poet and a painter: the plague of\ncompany light upon thee! I will fear to catch it\nand give way: when I know not what else to do, I'll\nsee thee again.\n\nTIMON:\nWhen there is nothing living but thee, thou shalt be\nwelcome. I had rather be a beggar's dog than Apemantus.\n\nAPEMANTUS:\nThou art the cap of all the fools alive.\n\nTIMON:\nWould thou wert clean enough to spit upon!\n\nAPEMANTUS:\nA plague on thee! thou art too bad to curse.\n\nTIMON:\nAll villains that do stand by thee are pure.\n\nAPEMANTUS:\nThere is no leprosy but what thou speak'st.\n\nTIMON:\nIf I name thee.\nI'll beat thee, but I should infect my hands.\n\nAPEMANTUS:\nI would my tongue could rot them off!\n\nTIMON:\nAway, thou issue of a mangy dog!\nCholer does kill me that thou art alive;\nI swound to see thee.\n\nAPEMANTUS:\nWould thou wouldst burst!\n\nTIMON:\nAway,\nThou tedious rogue! I am sorry I shall lose\nA stone by thee.\n\nAPEMANTUS:\nBeast!\n\nTIMON:\nSlave!\n\nAPEMANTUS:\nToad!\n\nTIMON:\nRogue, rogue, rogue!\nI am sick of this false world, and will love nought\nBut even the mere necessities upon 't.\nThen, Timon, presently prepare thy grave;\nLie where the light foam the sea may beat\nThy grave-stone daily: make thine epitaph,\nThat death in me at others' lives may laugh.\nO thou sweet king-killer, and dear divorce\n'Twixt natural son and sire! thou bright defiler\nOf Hymen's purest bed! thou valiant Mars!\nThou ever young, fresh, loved and delicate wooer,\nWhose blush doth thaw the consecrated snow\nThat lies on Dian's lap! thou visible god,\nThat solder'st close impossibilities,\nAnd makest them kiss! that speak'st with\nevery tongue,\nTo every purpose! O thou touch of hearts!\nThink, thy slave man rebels, and by thy virtue\nSet them into confounding odds, that beasts\nMay have the world in empire!\n\nAPEMANTUS:\nWould 'twere so!\nBut not till I am dead. I'll say thou'st gold:\nThou wilt be throng'd to shortly.\n\nTIMON:\nThrong'd to!\n\nAPEMANTUS:\nAy.\n\nTIMON:\nThy back, I prithee.\n\nAPEMANTUS:\nLive, and love thy misery.\n\nTIMON:\nLong live so, and so die.\nI am quit.\nMoe things like men! Eat, Timon, and abhor them.\n\nFirst Bandit:\nWhere should he have this gold? It is some poor\nfragment, some slender sort of his remainder: the\nmere want of gold, and the falling-from of his\nfriends, drove him into this melancholy.\n\nSecond Bandit:\nIt is noised he hath a mass of treasure.\n\nThird Bandit:\nLet us make the assay upon him: if he care not\nfor't, he will supply us easily; if he covetously\nreserve it, how shall's get it?\n\nSecond Bandit:\nTrue; for he bears it not about him, 'tis hid.\n\nFirst Bandit:\nIs not this he?\n\nBanditti:\nWhere?\n\nSecond Bandit:\n'Tis his description.\n\nThird Bandit:\nHe; I know him.\n\nBanditti:\nSave thee, Timon.\n\nTIMON:\nNow, thieves?\n\nBanditti:\nSoldiers, not thieves.\n\nTIMON:\nBoth too; and women's sons.\n\nBanditti:\nWe are not thieves, but men that much do want.\n\nTIMON:\nYour greatest want is, you want much of meat.\nWhy should you want? Behold, the earth hath roots;\nWithin this mile break forth a hundred springs;\nThe oaks bear mast, the briers scarlet hips;\nThe bounteous housewife, nature, on each bush\nLays her full mess before you. Want! why want?\n\nFirst Bandit:\nWe cannot live on grass, on berries, water,\nAs beasts and birds and fishes.\n\nTIMON:\nNor on the beasts themselves, the birds, and fishes;\nYou must eat men. Yet thanks I must you con\nThat you are thieves profess'd, that you work not\nIn holier shapes: for there is boundless theft\nIn limited professions. Rascal thieves,\nHere's gold. Go, suck the subtle blood o' the grape,\nTill the high fever seethe your blood to froth,\nAnd so 'scape hanging: trust not the physician;\nHis antidotes are poison, and he slays\nMoe than you rob: take wealth and lives together;\nDo villany, do, since you protest to do't,\nLike workmen. I'll example you with thievery.\nThe sun's a thief, and with his great attraction\nRobs the vast sea: the moon's an arrant thief,\nAnd her pale fire she snatches from the sun:\nThe sea's a thief, whose liquid surge resolves\nThe moon into salt tears: the earth's a thief,\nThat feeds and breeds by a composture stolen\nFrom general excrement: each thing's a thief:\nThe laws, your curb and whip, in their rough power\nHave uncheque'd theft. Love not yourselves: away,\nRob one another. There's more gold. Cut throats:\nAll that you meet are thieves: to Athens go,\nBreak open shops; nothing can you steal,\nBut thieves do lose it: steal no less for this\nI give you; and gold confound you howsoe'er! Amen.\n\nThird Bandit:\nHas almost charmed me from my profession, by\npersuading me to it.\n\nFirst Bandit:\n'Tis in the malice of mankind that he thus advises\nus; not to have us thrive in our mystery.\n\nSecond Bandit:\nI'll believe him as an enemy, and give over my trade.\n\nFirst Bandit:\nLet us first see peace in Athens: there is no time\nso miserable but a man may be true.\n\nFLAVIUS:\nO you gods!\nIs yond despised and ruinous man my lord?\nFull of decay and failing? O monument\nAnd wonder of good deeds evilly bestow'd!\nWhat an alteration of honour\nHas desperate want made!\nWhat viler thing upon the earth than friends\nWho can bring noblest minds to basest ends!\nHow rarely does it meet with this time's guise,\nWhen man was wish'd to love his enemies!\nGrant I may ever love, and rather woo\nThose that would mischief me than those that do!\nHas caught me in his eye: I will present\nMy honest grief unto him; and, as my lord,\nStill serve him with my life. My dearest master!\n\nTIMON:\nAway! what art thou?\n\nFLAVIUS:\nHave you forgot me, sir?\n\nTIMON:\nWhy dost ask that? I have forgot all men;\nThen, if thou grant'st thou'rt a man, I have forgot thee.\n\nFLAVIUS:\nAn honest poor servant of yours.\n\nTIMON:\nThen I know thee not:\nI never had honest man about me, I; all\nI kept were knaves, to serve in meat to villains.\n\nFLAVIUS:\nThe gods are witness,\nNe'er did poor steward wear a truer grief\nFor his undone lord than mine eyes for you.\n\nTIMON:\nWhat, dost thou weep? Come nearer. Then I\nlove thee,\nBecause thou art a woman, and disclaim'st\nFlinty mankind; whose eyes do never give\nBut thorough lust and laughter. Pity's sleeping:\nStrange times, that weep with laughing, not with weeping!\n\nFLAVIUS:\nI beg of you to know me, good my lord,\nTo accept my grief and whilst this poor wealth lasts\nTo entertain me as your steward still.\n\nTIMON:\nHad I a steward\nSo true, so just, and now so comfortable?\nIt almost turns my dangerous nature mild.\nLet me behold thy face. Surely, this man\nWas born of woman.\nForgive my general and exceptless rashness,\nYou perpetual-sober gods! I do proclaim\nOne honest man--mistake me not--but one;\nNo more, I pray,--and he's a steward.\nHow fain would I have hated all mankind!\nAnd thou redeem'st thyself: but all, save thee,\nI fell with curses.\nMethinks thou art more honest now than wise;\nFor, by oppressing and betraying me,\nThou mightst have sooner got another service:\nFor many so arrive at second masters,\nUpon their first lord's neck. But tell me true--\nFor I must ever doubt, though ne'er so sure--\nIs not thy kindness subtle, covetous,\nIf not a usuring kindness, and, as rich men deal gifts,\nExpecting in return twenty for one?\n\nFLAVIUS:\nNo, my most worthy master; in whose breast\nDoubt and suspect, alas, are placed too late:\nYou should have fear'd false times when you did feast:\nSuspect still comes where an estate is least.\nThat which I show, heaven knows, is merely love,\nDuty and zeal to your unmatched mind,\nCare of your food and living; and, believe it,\nMy most honour'd lord,\nFor any benefit that points to me,\nEither in hope or present, I'ld exchange\nFor this one wish, that you had power and wealth\nTo requite me, by making rich yourself.\n\nTIMON:\nLook thee, 'tis so! Thou singly honest man,\nHere, take: the gods out of my misery\nHave sent thee treasure. Go, live rich and happy;\nBut thus condition'd: thou shalt build from men;\nHate all, curse all, show charity to none,\nBut let the famish'd flesh slide from the bone,\nEre thou relieve the beggar; give to dogs\nWhat thou deny'st to men; let prisons swallow 'em,\nDebts wither 'em to nothing; be men like\nblasted woods,\nAnd may diseases lick up their false bloods!\nAnd so farewell and thrive.\n\nFLAVIUS:\nO, let me stay,\nAnd comfort you, my master.\n\nTIMON:\nIf thou hatest curses,\nStay not; fly, whilst thou art blest and free:\nNe'er see thou man, and let me ne'er see thee.\n\nPainter:\nAs I took note of the place, it cannot be far where\nhe abides.\n\nPoet:\nWhat's to be thought of him? does the rumour hold\nfor true, that he's so full of gold?\n\nPainter:\nCertain: Alcibiades reports it; Phrynia and\nTimandra had gold of him: he likewise enriched poor\nstraggling soldiers with great quantity: 'tis said\nhe gave unto his steward a mighty sum.\n\nPoet:\nThen this breaking of his has been but a try for his friends.\n\nPainter:\nNothing else: you shall see him a palm in Athens\nagain, and flourish with the highest. Therefore\n'tis not amiss we tender our loves to him, in this\nsupposed distress of his: it will show honestly in\nus; and is very likely to load our purposes with\nwhat they travail for, if it be a just true report\nthat goes of his having.\n\nPoet:\nWhat have you now to present unto him?\n\nPainter:\nNothing at this time but my visitation: only I will\npromise him an excellent piece.\n\nPoet:\nI must serve him so too, tell him of an intent\nthat's coming toward him.\n\nPainter:\nGood as the best. Promising is the very air o' the\ntime: it opens the eyes of expectation:\nperformance is ever the duller for his act; and,\nbut in the plainer and simpler kind of people, the\ndeed of saying is quite out of use. To promise is\nmost courtly and fashionable: performance is a kind\nof will or testament which argues a great sickness\nin his judgment that makes it.\n\nTIMON:\n\nPoet:\nI am thinking what I shall say I have provided for\nhim: it must be a personating of himself; a satire\nagainst the softness of prosperity, with a discovery\nof the infinite flatteries that follow youth and opulency.\n\nTIMON:\n\nPoet:\nNay, let's seek him:\nThen do we sin against our own estate,\nWhen we may profit meet, and come too late.\n\nPainter:\nTrue;\nWhen the day serves, before black-corner'd night,\nFind what thou want'st by free and offer'd light. Come.\n\nTIMON:\n\nPoet:\nHail, worthy Timon!\n\nPainter:\nOur late noble master!\n\nTIMON:\nHave I once lived to see two honest men?\n\nPoet:\nSir,\nHaving often of your open bounty tasted,\nHearing you were retired, your friends fall'n off,\nWhose thankless natures--O abhorred spirits!--\nNot all the whips of heaven are large enough:\nWhat! to you,\nWhose star-like nobleness gave life and influence\nTo their whole being! I am rapt and cannot cover\nThe monstrous bulk of this ingratitude\nWith any size of words.\n\nTIMON:\nLet it go naked, men may see't the better:\nYou that are honest, by being what you are,\nMake them best seen and known.\n\nPainter:\nHe and myself\nHave travail'd in the great shower of your gifts,\nAnd sweetly felt it.\n\nTIMON:\nAy, you are honest men.\n\nPainter:\nWe are hither come to offer you our service.\n\nTIMON:\nMost honest men! Why, how shall I requite you?\nCan you eat roots, and drink cold water? no.\n\nBoth:\nWhat we can do, we'll do, to do you service.\n\nTIMON:\nYe're honest men: ye've heard that I have gold;\nI am sure you have: speak truth; ye're honest men.\n\nPainter:\nSo it is said, my noble lord; but therefore\nCame not my friend nor I.\n\nTIMON:\nGood honest men! Thou draw'st a counterfeit\nBest in all Athens: thou'rt, indeed, the best;\nThou counterfeit'st most lively.\n\nPainter:\nSo, so, my lord.\n\nTIMON:\nE'en so, sir, as I say. And, for thy fiction,\nWhy, thy verse swells with stuff so fine and smooth\nThat thou art even natural in thine art.\nBut, for all this, my honest-natured friends,\nI must needs say you have a little fault:\nMarry, 'tis not monstrous in you, neither wish I\nYou take much pains to mend.\n\nBoth:\nBeseech your honour\nTo make it known to us.\n\nTIMON:\nYou'll take it ill.\n\nBoth:\nMost thankfully, my lord.\n\nTIMON:\nWill you, indeed?\n\nBoth:\nDoubt it not, worthy lord.\n\nTIMON:\nThere's never a one of you but trusts a knave,\nThat mightily deceives you.\n\nBoth:\nDo we, my lord?\n\nTIMON:\nAy, and you hear him cog, see him dissemble,\nKnow his gross patchery, love him, feed him,\nKeep in your bosom: yet remain assured\nThat he's a made-up villain.\n\nPainter:\nI know none such, my lord.\n\nPoet:\nNor I.\n\nTIMON:\nLook you, I love you well; I'll give you gold,\nRid me these villains from your companies:\nHang them or stab them, drown them in a draught,\nConfound them by some course, and come to me,\nI'll give you gold enough.\n\nBoth:\nName them, my lord, let's know them.\n\nTIMON:\nYou that way and you this, but two in company;\nEach man apart, all single and alone,\nYet an arch-villain keeps him company.\nIf where thou art two villains shall not be,\nCome not near him. If thou wouldst not reside\nBut where one villain is, then him abandon.\nHence, pack! there's gold; you came for gold, ye slaves:\nYou have work'd for me; there's payment for you: hence!\nYou are an alchemist; make gold of that.\nOut, rascal dogs!\n\nFLAVIUS:\nIt is in vain that you would speak with Timon;\nFor he is set so only to himself\nThat nothing but himself which looks like man\nIs friendly with him.\n\nFirst Senator:\nBring us to his cave:\nIt is our part and promise to the Athenians\nTo speak with Timon.\n\nSecond Senator:\nAt all times alike\nMen are not still the same: 'twas time and griefs\nThat framed him thus: time, with his fairer hand,\nOffering the fortunes of his former days,\nThe former man may make him. Bring us to him,\nAnd chance it as it may.\n\nFLAVIUS:\nHere is his cave.\nPeace and content be here! Lord Timon! Timon!\nLook out, and speak to friends: the Athenians,\nBy two of their most reverend senate, greet thee:\nSpeak to them, noble Timon.\n\nTIMON:\nThou sun, that comfort'st, burn! Speak, and\nbe hang'd:\nFor each true word, a blister! and each false\nBe as cauterizing to the root o' the tongue,\nConsuming it with speaking!\n\nFirst Senator:\nWorthy Timon,--\n\nTIMON:\nOf none but such as you, and you of Timon.\n\nFirst Senator:\nThe senators of Athens greet thee, Timon.\n\nTIMON:\nI thank them; and would send them back the plague,\nCould I but catch it for them.\n\nFirst Senator:\nO, forget\nWhat we are sorry for ourselves in thee.\nThe senators with one consent of love\nEntreat thee back to Athens; who have thought\nOn special dignities, which vacant lie\nFor thy best use and wearing.\n\nSecond Senator:\nThey confess\nToward thee forgetfulness too general, gross:\nWhich now the public body, which doth seldom\nPlay the recanter, feeling in itself\nA lack of Timon's aid, hath sense withal\nOf its own fail, restraining aid to Timon;\nAnd send forth us, to make their sorrow'd render,\nTogether with a recompense more fruitful\nThan their offence can weigh down by the dram;\nAy, even such heaps and sums of love and wealth\nAs shall to thee blot out what wrongs were theirs\nAnd write in thee the figures of their love,\nEver to read them thine.\n\nTIMON:\nYou witch me in it;\nSurprise me to the very brink of tears:\nLend me a fool's heart and a woman's eyes,\nAnd I'll beweep these comforts, worthy senators.\n\nFirst Senator:\nTherefore, so please thee to return with us\nAnd of our Athens, thine and ours, to take\nThe captainship, thou shalt be met with thanks,\nAllow'd with absolute power and thy good name\nLive with authority: so soon we shall drive back\nOf Alcibiades the approaches wild,\nWho, like a boar too savage, doth root up\nHis country's peace.\n\nSecond Senator:\nAnd shakes his threatening sword\nAgainst the walls of Athens.\n\nFirst Senator:\nTherefore, Timon,--\n\nTIMON:\nWell, sir, I will; therefore, I will, sir; thus:\nIf Alcibiades kill my countrymen,\nLet Alcibiades know this of Timon,\nThat Timon cares not. But if be sack fair Athens,\nAnd take our goodly aged men by the beards,\nGiving our holy virgins to the stain\nOf contumelious, beastly, mad-brain'd war,\nThen let him know, and tell him Timon speaks it,\nIn pity of our aged and our youth,\nI cannot choose but tell him, that I care not,\nAnd let him take't at worst; for their knives care not,\nWhile you have throats to answer: for myself,\nThere's not a whittle in the unruly camp\nBut I do prize it at my love before\nThe reverend'st throat in Athens. So I leave you\nTo the protection of the prosperous gods,\nAs thieves to keepers.\n\nFLAVIUS:\nStay not, all's in vain.\n\nTIMON:\nWhy, I was writing of my epitaph;\nit will be seen to-morrow: my long sickness\nOf health and living now begins to mend,\nAnd nothing brings me all things. Go, live still;\nBe Alcibiades your plague, you his,\nAnd last so long enough!\n\nFirst Senator:\nWe speak in vain.\n\nTIMON:\nBut yet I love my country, and am not\nOne that rejoices in the common wreck,\nAs common bruit doth put it.\n\nFirst Senator:\nThat's well spoke.\n\nTIMON:\nCommend me to my loving countrymen,--\n\nFirst Senator:\nThese words become your lips as they pass\nthorough them.\n\nSecond Senator:\nAnd enter in our ears like great triumphers\nIn their applauding gates.\n\nTIMON:\nCommend me to them,\nAnd tell them that, to ease them of their griefs,\nTheir fears of hostile strokes, their aches, losses,\nTheir pangs of love, with other incident throes\nThat nature's fragile vessel doth sustain\nIn life's uncertain voyage, I will some kindness do them:\nI'll teach them to prevent wild Alcibiades' wrath.\n\nFirst Senator:\nI like this well; he will return again.\n\nTIMON:\nI have a tree, which grows here in my close,\nThat mine own use invites me to cut down,\nAnd shortly must I fell it: tell my friends,\nTell Athens, in the sequence of degree\nFrom high to low throughout, that whoso please\nTo stop affliction, let him take his haste,\nCome hither, ere my tree hath felt the axe,\nAnd hang himself. I pray you, do my greeting.\n\nFLAVIUS:\nTrouble him no further; thus you still shall find him.\n\nTIMON:\nCome not to me again: but say to Athens,\nTimon hath made his everlasting mansion\nUpon the beached verge of the salt flood;\nWho once a day with his embossed froth\nThe turbulent surge shall cover: thither come,\nAnd let my grave-stone be your oracle.\nLips, let sour words go by and language end:\nWhat is amiss plague and infection mend!\nGraves only be men's works and death their gain!\nSun, hide thy beams! Timon hath done his reign.\n\nFirst Senator:\nHis discontents are unremoveably\nCoupled to nature.\n\nSecond Senator:\nOur hope in him is dead: let us return,\nAnd strain what other means is left unto us\nIn our dear peril.\n\nFirst Senator:\nIt requires swift foot.\n\nFirst Senator:\nThou hast painfully discover'd: are his files\nAs full as thy report?\n\nMessenger:\nhave spoke the least:\nBesides, his expedition promises\nPresent approach.\n\nSecond Senator:\nWe stand much hazard, if they bring not Timon.\n\nMessenger:\nI met a courier, one mine ancient friend;\nWhom, though in general part we were opposed,\nYet our old love made a particular force,\nAnd made us speak like friends: this man was riding\nFrom Alcibiades to Timon's cave,\nWith letters of entreaty, which imported\nHis fellowship i' the cause against your city,\nIn part for his sake moved.\n\nFirst Senator:\nHere come our brothers.\n\nThird Senator:\nNo talk of Timon, nothing of him expect.\nThe enemies' drum is heard, and fearful scouring\nDoth choke the air with dust: in, and prepare:\nOurs is the fall, I fear; our foes the snare.\n\nSoldier:\nBy all description this should be the place.\nWho's here? speak, ho! No answer! What is this?\nTimon is dead, who hath outstretch'd his span:\nSome beast rear'd this; there does not live a man.\nDead, sure; and this his grave. What's on this tomb\nI cannot read; the character I'll take with wax:\nOur captain hath in every figure skill,\nAn aged interpreter, though young in days:\nBefore proud Athens he's set down by this,\nWhose fall the mark of his ambition is.\n\nALCIBIADES:\nSound to this coward and lascivious town\nOur terrible approach.\nTill now you have gone on and fill'd the time\nWith all licentious measure, making your wills\nThe scope of justice; till now myself and such\nAs slept within the shadow of your power\nHave wander'd with our traversed arms and breathed\nOur sufferance vainly: now the time is flush,\nWhen crouching marrow in the bearer strong\nCries of itself 'No more:' now breathless wrong\nShall sit and pant in your great chairs of ease,\nAnd pursy insolence shall break his wind\nWith fear and horrid flight.\n\nFirst Senator:\nNoble and young,\nWhen thy first griefs were but a mere conceit,\nEre thou hadst power or we had cause of fear,\nWe sent to thee, to give thy rages balm,\nTo wipe out our ingratitude with loves\nAbove their quantity.\n\nSecond Senator:\nSo did we woo\nTransformed Timon to our city's love\nBy humble message and by promised means:\nWe were not all unkind, nor all deserve\nThe common stroke of war.\n\nFirst Senator:\nThese walls of ours\nWere not erected by their hands from whom\nYou have received your griefs; nor are they such\nThat these great towers, trophies and schools\nshould fall\nFor private faults in them.\n\nSecond Senator:\nNor are they living\nWho were the motives that you first went out;\nShame that they wanted cunning, in excess\nHath broke their hearts. March, noble lord,\nInto our city with thy banners spread:\nBy decimation, and a tithed death--\nIf thy revenges hunger for that food\nWhich nature loathes--take thou the destined tenth,\nAnd by the hazard of the spotted die\nLet die the spotted.\n\nFirst Senator:\nAll have not offended;\nFor those that were, it is not square to take\nOn those that are, revenges: crimes, like lands,\nAre not inherited. Then, dear countryman,\nBring in thy ranks, but leave without thy rage:\nSpare thy Athenian cradle and those kin\nWhich in the bluster of thy wrath must fall\nWith those that have offended: like a shepherd,\nApproach the fold and cull the infected forth,\nBut kill not all together.\n\nSecond Senator:\nWhat thou wilt,\nThou rather shalt enforce it with thy smile\nThan hew to't with thy sword.\n\nFirst Senator :\nSet but thy foot\nAgainst our rampired gates, and they shall ope;\nSo thou wilt send thy gentle heart before,\nTo say thou'lt enter friendly.\n\nSecond Senator:\nThrow thy glove,\nOr any token of thine honour else,\nThat thou wilt use the wars as thy redress\nAnd not as our confusion, all thy powers\nShall make their harbour in our town, till we\nHave seal'd thy full desire.\n\nALCIBIADES:\nThen there's my glove;\nDescend, and open your uncharged ports:\nThose enemies of Timon's and mine own\nWhom you yourselves shall set out for reproof\nFall and no more: and, to atone your fears\nWith my more noble meaning, not a man\nShall pass his quarter, or offend the stream\nOf regular justice in your city's bounds,\nBut shall be render'd to your public laws\nAt heaviest answer.\n\nBoth:\n'Tis most nobly spoken.\n\nALCIBIADES:\nDescend, and keep your words.\n\nSoldier:\nMy noble general, Timon is dead;\nEntomb'd upon the very hem o' the sea;\nAnd on his grave-stone this insculpture, which\nWith wax I brought away, whose soft impression\nInterprets for my poor ignorance.\n\nALCIBIADES:\n\nFirst Gentleman:\nYou do not meet a man but frowns: our bloods\nNo more obey the heavens than our courtiers\nStill seem as does the king.\n\nSecond Gentleman:\nBut what's the matter?\n\nFirst Gentleman:\nHis daughter, and the heir of's kingdom, whom\nHe purposed to his wife's sole son--a widow\nThat late he married--hath referr'd herself\nUnto a poor but worthy gentleman: she's wedded;\nHer husband banish'd; she imprison'd: all\nIs outward sorrow; though I think the king\nBe touch'd at very heart.\n\nSecond Gentleman:\nNone but the king?\n\nFirst Gentleman:\nHe that hath lost her too; so is the queen,\nThat most desired the match; but not a courtier,\nAlthough they wear their faces to the bent\nOf the king's look's, hath a heart that is not\nGlad at the thing they scowl at.\n\nSecond Gentleman:\nAnd why so?\n\nFirst Gentleman:\nHe that hath miss'd the princess is a thing\nToo bad for bad report: and he that hath her--\nI mean, that married her, alack, good man!\nAnd therefore banish'd--is a creature such\nAs, to seek through the regions of the earth\nFor one his like, there would be something failing\nIn him that should compare. I do not think\nSo fair an outward and such stuff within\nEndows a man but he.\n\nSecond Gentleman:\nYou speak him far.\n\nFirst Gentleman:\nI do extend him, sir, within himself,\nCrush him together rather than unfold\nHis measure duly.\n\nSecond Gentleman:\nWhat's his name and birth?\n\nFirst Gentleman:\nI cannot delve him to the root: his father\nWas call'd Sicilius, who did join his honour\nAgainst the Romans with Cassibelan,\nBut had his titles by Tenantius whom\nHe served with glory and admired success,\nSo gain'd the sur-addition Leonatus;\nAnd had, besides this gentleman in question,\nTwo other sons, who in the wars o' the time\nDied with their swords in hand; for which\ntheir father,\nThen old and fond of issue, took such sorrow\nThat he quit being, and his gentle lady,\nBig of this gentleman our theme, deceased\nAs he was born. The king he takes the babe\nTo his protection, calls him Posthumus Leonatus,\nBreeds him and makes him of his bed-chamber,\nPuts to him all the learnings that his time\nCould make him the receiver of; which he took,\nAs we do air, fast as 'twas minister'd,\nAnd in's spring became a harvest, lived in court--\nWhich rare it is to do--most praised, most loved,\nA sample to the youngest, to the more mature\nA glass that feated them, and to the graver\nA child that guided dotards; to his mistress,\nFor whom he now is banish'd, her own price\nProclaims how she esteem'd him and his virtue;\nBy her election may be truly read\nWhat kind of man he is.\n\nSecond Gentleman:\nI honour him\nEven out of your report. But, pray you, tell me,\nIs she sole child to the king?\n\nFirst Gentleman:\nHis only child.\nHe had two sons: if this be worth your hearing,\nMark it: the eldest of them at three years old,\nI' the swathing-clothes the other, from their nursery\nWere stol'n, and to this hour no guess in knowledge\nWhich way they went.\n\nSecond Gentleman:\nHow long is this ago?\n\nFirst Gentleman:\nSome twenty years.\n\nSecond Gentleman:\nThat a king's children should be so convey'd,\nSo slackly guarded, and the search so slow,\nThat could not trace them!\n\nFirst Gentleman:\nHowsoe'er 'tis strange,\nOr that the negligence may well be laugh'd at,\nYet is it true, sir.\n\nSecond Gentleman:\nI do well believe you.\n\nFirst Gentleman:\nWe must forbear: here comes the gentleman,\nThe queen, and princess.\n\nQUEEN:\nNo, be assured you shall not find me, daughter,\nAfter the slander of most stepmothers,\nEvil-eyed unto you: you're my prisoner, but\nYour gaoler shall deliver you the keys\nThat lock up your restraint. For you, Posthumus,\nSo soon as I can win the offended king,\nI will be known your advocate: marry, yet\nThe fire of rage is in him, and 'twere good\nYou lean'd unto his sentence with what patience\nYour wisdom may inform you.\n\nPOSTHUMUS LEONATUS:\nPlease your highness,\nI will from hence to-day.\n\nQUEEN:\nYou know the peril.\nI'll fetch a turn about the garden, pitying\nThe pangs of barr'd affections, though the king\nHath charged you should not speak together.\n\nIMOGEN:\nO\nDissembling courtesy! How fine this tyrant\nCan tickle where she wounds! My dearest husband,\nI something fear my father's wrath; but nothing--\nAlways reserved my holy duty--what\nHis rage can do on me: you must be gone;\nAnd I shall here abide the hourly shot\nOf angry eyes, not comforted to live,\nBut that there is this jewel in the world\nThat I may see again.\n\nPOSTHUMUS LEONATUS:\nMy queen! my mistress!\nO lady, weep no more, lest I give cause\nTo be suspected of more tenderness\nThan doth become a man. I will remain\nThe loyal'st husband that did e'er plight troth:\nMy residence in Rome at one Philario's,\nWho to my father was a friend, to me\nKnown but by letter: thither write, my queen,\nAnd with mine eyes I'll drink the words you send,\nThough ink be made of gall.\n\nQUEEN:\nBe brief, I pray you:\nIf the king come, I shall incur I know not\nHow much of his displeasure.\nYet I'll move him\nTo walk this way: I never do him wrong,\nBut he does buy my injuries, to be friends;\nPays dear for my offences.\n\nPOSTHUMUS LEONATUS:\nShould we be taking leave\nAs long a term as yet we have to live,\nThe loathness to depart would grow. Adieu!\n\nIMOGEN:\nNay, stay a little:\nWere you but riding forth to air yourself,\nSuch parting were too petty. Look here, love;\nThis diamond was my mother's: take it, heart;\nBut keep it till you woo another wife,\nWhen Imogen is dead.\n\nPOSTHUMUS LEONATUS:\nHow, how! another?\nYou gentle gods, give me but this I have,\nAnd sear up my embracements from a next\nWith bonds of death!\nRemain, remain thou here\nWhile sense can keep it on. And, sweetest, fairest,\nAs I my poor self did exchange for you,\nTo your so infinite loss, so in our trifles\nI still win of you: for my sake wear this;\nIt is a manacle of love; I'll place it\nUpon this fairest prisoner.\n\nIMOGEN:\nO the gods!\nWhen shall we see again?\n\nPOSTHUMUS LEONATUS:\nAlack, the king!\n\nCYMBELINE:\nThou basest thing, avoid! hence, from my sight!\nIf after this command thou fraught the court\nWith thy unworthiness, thou diest: away!\nThou'rt poison to my blood.\n\nPOSTHUMUS LEONATUS:\nThe gods protect you!\nAnd bless the good remainders of the court! I am gone.\n\nIMOGEN:\nThere cannot be a pinch in death\nMore sharp than this is.\n\nCYMBELINE:\nO disloyal thing,\nThat shouldst repair my youth, thou heap'st\nA year's age on me.\n\nIMOGEN:\nI beseech you, sir,\nHarm not yourself with your vexation\nI am senseless of your wrath; a touch more rare\nSubdues all pangs, all fears.\n\nCYMBELINE:\nPast grace? obedience?\n\nIMOGEN:\nPast hope, and in despair; that way, past grace.\n\nCYMBELINE:\nThat mightst have had the sole son of my queen!\n\nIMOGEN:\nO blest, that I might not! I chose an eagle,\nAnd did avoid a puttock.\n\nCYMBELINE:\nThou took'st a beggar; wouldst have made my throne\nA seat for baseness.\n\nIMOGEN:\nNo; I rather added\nA lustre to it.\n\nCYMBELINE:\nO thou vile one!\n\nIMOGEN:\nSir,\nIt is your fault that I have loved Posthumus:\nYou bred him as my playfellow, and he is\nA man worth any woman, overbuys me\nAlmost the sum he pays.\n\nCYMBELINE:\nWhat, art thou mad?\n\nIMOGEN:\nAlmost, sir: heaven restore me! Would I were\nA neat-herd's daughter, and my Leonatus\nOur neighbour shepherd's son!\n\nCYMBELINE:\nThou foolish thing!\nThey were again together: you have done\nNot after our command. Away with her,\nAnd pen her up.\n\nQUEEN:\nBeseech your patience. Peace,\nDear lady daughter, peace! Sweet sovereign,\nLeave us to ourselves; and make yourself some comfort\nOut of your best advice.\n\nCYMBELINE:\nNay, let her languish\nA drop of blood a day; and, being aged,\nDie of this folly!\n\nQUEEN:\nFie! you must give way.\nHere is your servant. How now, sir! What news?\n\nPISANIO:\nMy lord your son drew on my master.\n\nQUEEN:\nHa!\nNo harm, I trust, is done?\n\nPISANIO:\nThere might have been,\nBut that my master rather play'd than fought\nAnd had no help of anger: they were parted\nBy gentlemen at hand.\n\nQUEEN:\nI am very glad on't.\n\nIMOGEN:\nYour son's my father's friend; he takes his part.\nTo draw upon an exile! O brave sir!\nI would they were in Afric both together;\nMyself by with a needle, that I might prick\nThe goer-back. Why came you from your master?\n\nPISANIO:\nOn his command: he would not suffer me\nTo bring him to the haven; left these notes\nOf what commands I should be subject to,\nWhen 't pleased you to employ me.\n\nQUEEN:\nThis hath been\nYour faithful servant: I dare lay mine honour\nHe will remain so.\n\nPISANIO:\nI humbly thank your highness.\n\nQUEEN:\nPray, walk awhile.\n\nIMOGEN:\nAbout some half-hour hence,\nI pray you, speak with me: you shall at least\nGo see my lord aboard: for this time leave me.\n\nFirst Lord:\nSir, I would advise you to shift a shirt; the\nviolence of action hath made you reek as a\nsacrifice: where air comes out, air comes in:\nthere's none abroad so wholesome as that you vent.\n\nCLOTEN:\nIf my shirt were bloody, then to shift it. Have I hurt him?\n\nSecond Lord:\n\nFirst Lord:\nHurt him! his body's a passable carcass, if he be\nnot hurt: it is a thoroughfare for steel, if it be not hurt.\n\nSecond Lord:\n\nCLOTEN:\nThe villain would not stand me.\n\nSecond Lord:\n\nFirst Lord:\nStand you! You have land enough of your own: but\nhe added to your having; gave you some ground.\n\nSecond Lord:\n\nCLOTEN:\nI would they had not come between us.\n\nSecond Lord:\n\nCLOTEN:\nAnd that she should love this fellow and refuse me!\n\nSecond Lord:\n\nFirst Lord:\nSir, as I told you always, her beauty and her brain\ngo not together: she's a good sign, but I have seen\nsmall reflection of her wit.\n\nSecond Lord:\n\nCLOTEN:\nCome, I'll to my chamber. Would there had been some\nhurt done!\n\nSecond Lord:\n\nCLOTEN:\nYou'll go with us?\n\nFirst Lord:\nI'll attend your lordship.\n\nCLOTEN:\nNay, come, let's go together.\n\nSecond Lord:\nWell, my lord.\n\nIMOGEN:\nI would thou grew'st unto the shores o' the haven,\nAnd question'dst every sail: if he should write\nAnd not have it, 'twere a paper lost,\nAs offer'd mercy is. What was the last\nThat he spake to thee?\n\nPISANIO:\nIt was his queen, his queen!\n\nIMOGEN:\nThen waved his handkerchief?\n\nPISANIO:\nAnd kiss'd it, madam.\n\nIMOGEN:\nSenseless Linen! happier therein than I!\nAnd that was all?\n\nPISANIO:\nNo, madam; for so long\nAs he could make me with this eye or ear\nDistinguish him from others, he did keep\nThe deck, with glove, or hat, or handkerchief,\nStill waving, as the fits and stirs of 's mind\nCould best express how slow his soul sail'd on,\nHow swift his ship.\n\nIMOGEN:\nThou shouldst have made him\nAs little as a crow, or less, ere left\nTo after-eye him.\n\nPISANIO:\nMadam, so I did.\n\nIMOGEN:\nI would have broke mine eye-strings; crack'd them, but\nTo look upon him, till the diminution\nOf space had pointed him sharp as my needle,\nNay, follow'd him, till he had melted from\nThe smallness of a gnat to air, and then\nHave turn'd mine eye and wept. But, good Pisanio,\nWhen shall we hear from him?\n\nPISANIO:\nBe assured, madam,\nWith his next vantage.\n\nIMOGEN:\nI did not take my leave of him, but had\nMost pretty things to say: ere I could tell him\nHow I would think on him at certain hours\nSuch thoughts and such, or I could make him swear\nThe shes of Italy should not betray\nMine interest and his honour, or have charged him,\nAt the sixth hour of morn, at noon, at midnight,\nTo encounter me with orisons, for then\nI am in heaven for him; or ere I could\nGive him that parting kiss which I had set\nBetwixt two charming words, comes in my father\nAnd like the tyrannous breathing of the north\nShakes all our buds from growing.\n\nLady:\nThe queen, madam,\nDesires your highness' company.\n\nIMOGEN:\nThose things I bid you do, get them dispatch'd.\nI will attend the queen.\n\nPISANIO:\nMadam, I shall.\n\nIACHIMO:\nBelieve it, sir, I have seen him in Britain: he was\nthen of a crescent note, expected to prove so worthy\nas since he hath been allowed the name of; but I\ncould then have looked on him without the help of\nadmiration, though the catalogue of his endowments\nhad been tabled by his side and I to peruse him by items.\n\nPHILARIO:\nYou speak of him when he was less furnished than now\nhe is with that which makes him both without and within.\n\nFrenchman:\nI have seen him in France: we had very many there\ncould behold the sun with as firm eyes as he.\n\nIACHIMO:\nThis matter of marrying his king's daughter, wherein\nhe must be weighed rather by her value than his own,\nwords him, I doubt not, a great deal from the matter.\n\nFrenchman:\nAnd then his banishment.\n\nIACHIMO:\nAy, and the approbation of those that weep this\nlamentable divorce under her colours are wonderfully\nto extend him; be it but to fortify her judgment,\nwhich else an easy battery might lay flat, for\ntaking a beggar without less quality. But how comes\nit he is to sojourn with you? How creeps\nacquaintance?\n\nPHILARIO:\nHis father and I were soldiers together; to whom I\nhave been often bound for no less than my life.\nHere comes the Briton: let him be so entertained\namongst you as suits, with gentlemen of your\nknowing, to a stranger of his quality.\nI beseech you all, be better known to this\ngentleman; whom I commend to you as a noble friend\nof mine: how worthy he is I will leave to appear\nhereafter, rather than story him in his own hearing.\n\nFrenchman:\nSir, we have known together in Orleans.\n\nPOSTHUMUS LEONATUS:\nSince when I have been debtor to you for courtesies,\nwhich I will be ever to pay and yet pay still.\n\nFrenchman:\nSir, you o'er-rate my poor kindness: I was glad I\ndid atone my countryman and you; it had been pity\nyou should have been put together with so mortal a\npurpose as then each bore, upon importance of so\nslight and trivial a nature.\n\nPOSTHUMUS LEONATUS:\nBy your pardon, sir, I was then a young traveller;\nrather shunned to go even with what I heard than in\nmy every action to be guided by others' experiences:\nbut upon my mended judgment--if I offend not to say\nit is mended--my quarrel was not altogether slight.\n\nFrenchman:\n'Faith, yes, to be put to the arbitrement of swords,\nand by such two that would by all likelihood have\nconfounded one the other, or have fallen both.\n\nIACHIMO:\nCan we, with manners, ask what was the difference?\n\nFrenchman:\nSafely, I think: 'twas a contention in public,\nwhich may, without contradiction, suffer the report.\nIt was much like an argument that fell out last\nnight, where each of us fell in praise of our\ncountry mistresses; this gentleman at that time\nvouching--and upon warrant of bloody\naffirmation--his to be more fair, virtuous, wise,\nchaste, constant-qualified and less attemptable\nthan any the rarest of our ladies in France.\n\nIACHIMO:\nThat lady is not now living, or this gentleman's\nopinion by this worn out.\n\nPOSTHUMUS LEONATUS:\nShe holds her virtue still and I my mind.\n\nIACHIMO:\nYou must not so far prefer her 'fore ours of Italy.\n\nPOSTHUMUS LEONATUS:\nBeing so far provoked as I was in France, I would\nabate her nothing, though I profess myself her\nadorer, not her friend.\n\nIACHIMO:\nAs fair and as good--a kind of hand-in-hand\ncomparison--had been something too fair and too good\nfor any lady in Britain. If she went before others\nI have seen, as that diamond of yours outlustres\nmany I have beheld. I could not but believe she\nexcelled many: but I have not seen the most\nprecious diamond that is, nor you the lady.\n\nPOSTHUMUS LEONATUS:\nI praised her as I rated her: so do I my stone.\n\nIACHIMO:\nWhat do you esteem it at?\n\nPOSTHUMUS LEONATUS:\nMore than the world enjoys.\n\nIACHIMO:\nEither your unparagoned mistress is dead, or she's\noutprized by a trifle.\n\nPOSTHUMUS LEONATUS:\nYou are mistaken: the one may be sold, or given, if\nthere were wealth enough for the purchase, or merit\nfor the gift: the other is not a thing for sale,\nand only the gift of the gods.\n\nIACHIMO:\nWhich the gods have given you?\n\nPOSTHUMUS LEONATUS:\nWhich, by their graces, I will keep.\n\nIACHIMO:\nYou may wear her in title yours: but, you know,\nstrange fowl light upon neighbouring ponds. Your\nring may be stolen too: so your brace of unprizable\nestimations; the one is but frail and the other\ncasual; a cunning thief, or a that way accomplished\ncourtier, would hazard the winning both of first and last.\n\nPOSTHUMUS LEONATUS:\nYour Italy contains none so accomplished a courtier\nto convince the honour of my mistress, if, in the\nholding or loss of that, you term her frail. I do\nnothing doubt you have store of thieves;\nnotwithstanding, I fear not my ring.\n\nPHILARIO:\nLet us leave here, gentlemen.\n\nPOSTHUMUS LEONATUS:\nSir, with all my heart. This worthy signior, I\nthank him, makes no stranger of me; we are familiar at first.\n\nIACHIMO:\nWith five times so much conversation, I should get\nground of your fair mistress, make her go back, even\nto the yielding, had I admittance and opportunity to friend.\n\nPOSTHUMUS LEONATUS:\nNo, no.\n\nIACHIMO:\nI dare thereupon pawn the moiety of my estate to\nyour ring; which, in my opinion, o'ervalues it\nsomething: but I make my wager rather against your\nconfidence than her reputation: and, to bar your\noffence herein too, I durst attempt it against any\nlady in the world.\n\nPOSTHUMUS LEONATUS:\nYou are a great deal abused in too bold a\npersuasion; and I doubt not you sustain what you're\nworthy of by your attempt.\n\nIACHIMO:\nWhat's that?\n\nPOSTHUMUS LEONATUS:\nA repulse: though your attempt, as you call it,\ndeserve more; a punishment too.\n\nPHILARIO:\nGentlemen, enough of this: it came in too suddenly;\nlet it die as it was born, and, I pray you, be\nbetter acquainted.\n\nIACHIMO:\nWould I had put my estate and my neighbour's on the\napprobation of what I have spoke!\n\nPOSTHUMUS LEONATUS:\nWhat lady would you choose to assail?\n\nIACHIMO:\nYours; whom in constancy you think stands so safe.\nI will lay you ten thousand ducats to your ring,\nthat, commend me to the court where your lady is,\nwith no more advantage than the opportunity of a\nsecond conference, and I will bring from thence\nthat honour of hers which you imagine so reserved.\n\nPOSTHUMUS LEONATUS:\nI will wage against your gold, gold to it: my ring\nI hold dear as my finger; 'tis part of it.\n\nIACHIMO:\nYou are afraid, and therein the wiser. If you buy\nladies' flesh at a million a dram, you cannot\npreserve it from tainting: but I see you have some\nreligion in you, that you fear.\n\nPOSTHUMUS LEONATUS:\nThis is but a custom in your tongue; you bear a\ngraver purpose, I hope.\n\nIACHIMO:\nI am the master of my speeches, and would undergo\nwhat's spoken, I swear.\n\nPOSTHUMUS LEONATUS:\nWill you? I shall but lend my diamond till your\nreturn: let there be covenants drawn between's: my\nmistress exceeds in goodness the hugeness of your\nunworthy thinking: I dare you to this match: here's my ring.\n\nPHILARIO:\nI will have it no lay.\n\nIACHIMO:\nBy the gods, it is one. If I bring you no\nsufficient testimony that I have enjoyed the dearest\nbodily part of your mistress, my ten thousand ducats\nare yours; so is your diamond too: if I come off,\nand leave her in such honour as you have trust in,\nshe your jewel, this your jewel, and my gold are\nyours: provided I have your commendation for my more\nfree entertainment.\n\nPOSTHUMUS LEONATUS:\nI embrace these conditions; let us have articles\nbetwixt us. Only, thus far you shall answer: if\nyou make your voyage upon her and give me directly\nto understand you have prevailed, I am no further\nyour enemy; she is not worth our debate: if she\nremain unseduced, you not making it appear\notherwise, for your ill opinion and the assault you\nhave made to her chastity you shall answer me with\nyour sword.\n\nIACHIMO:\nYour hand; a covenant: we will have these things set\ndown by lawful counsel, and straight away for\nBritain, lest the bargain should catch cold and\nstarve: I will fetch my gold and have our two\nwagers recorded.\n\nPOSTHUMUS LEONATUS:\nAgreed.\n\nFrenchman:\nWill this hold, think you?\n\nPHILARIO:\nSignior Iachimo will not from it.\nPray, let us follow 'em.\n\nQUEEN:\nWhiles yet the dew's on ground, gather those flowers;\nMake haste: who has the note of them?\n\nFirst Lady:\nI, madam.\n\nQUEEN:\nDispatch.\nNow, master doctor, have you brought those drugs?\n\nCORNELIUS:\nPleaseth your highness, ay: here they are, madam:\nBut I beseech your grace, without offence,--\nMy conscience bids me ask--wherefore you have\nCommanded of me those most poisonous compounds,\nWhich are the movers of a languishing death;\nBut though slow, deadly?\n\nQUEEN:\nI wonder, doctor,\nThou ask'st me such a question. Have I not been\nThy pupil long? Hast thou not learn'd me how\nTo make perfumes? distil? preserve? yea, so\nThat our great king himself doth woo me oft\nFor my confections? Having thus far proceeded,--\nUnless thou think'st me devilish--is't not meet\nThat I did amplify my judgment in\nOther conclusions? I will try the forces\nOf these thy compounds on such creatures as\nWe count not worth the hanging, but none human,\nTo try the vigour of them and apply\nAllayments to their act, and by them gather\nTheir several virtues and effects.\n\nCORNELIUS:\nYour highness\nShall from this practise but make hard your heart:\nBesides, the seeing these effects will be\nBoth noisome and infectious.\n\nQUEEN:\nO, content thee.\nHere comes a flattering rascal; upon him\nWill I first work: he's for his master,\nAn enemy to my son. How now, Pisanio!\nDoctor, your service for this time is ended;\nTake your own way.\n\nCORNELIUS:\n\nQUEEN:\n\nCORNELIUS:\n\nQUEEN:\nNo further service, doctor,\nUntil I send for thee.\n\nCORNELIUS:\nI humbly take my leave.\n\nQUEEN:\nWeeps she still, say'st thou? Dost thou think in time\nShe will not quench and let instructions enter\nWhere folly now possesses? Do thou work:\nWhen thou shalt bring me word she loves my son,\nI'll tell thee on the instant thou art then\nAs great as is thy master, greater, for\nHis fortunes all lie speechless and his name\nIs at last gasp: return he cannot, nor\nContinue where he is: to shift his being\nIs to exchange one misery with another,\nAnd every day that comes comes to decay\nA day's work in him. What shalt thou expect,\nTo be depender on a thing that leans,\nWho cannot be new built, nor has no friends,\nSo much as but to prop him?\nThou takest up\nThou know'st not what; but take it for thy labour:\nIt is a thing I made, which hath the king\nFive times redeem'd from death: I do not know\nWhat is more cordial. Nay, I prethee, take it;\nIt is an earnest of a further good\nThat I mean to thee. Tell thy mistress how\nThe case stands with her; do't as from thyself.\nThink what a chance thou changest on, but think\nThou hast thy mistress still, to boot, my son,\nWho shall take notice of thee: I'll move the king\nTo any shape of thy preferment such\nAs thou'lt desire; and then myself, I chiefly,\nThat set thee on to this desert, am bound\nTo load thy merit richly. Call my women:\nThink on my words.\nA sly and constant knave,\nNot to be shaked; the agent for his master\nAnd the remembrancer of her to hold\nThe hand-fast to her lord. I have given him that\nWhich, if he take, shall quite unpeople her\nOf liegers for her sweet, and which she after,\nExcept she bend her humour, shall be assured\nTo taste of too.\nSo, so: well done, well done:\nThe violets, cowslips, and the primroses,\nBear to my closet. Fare thee well, Pisanio;\nThink on my words.\n\nPISANIO:\nAnd shall do:\nBut when to my good lord I prove untrue,\nI'll choke myself: there's all I'll do for you.\n\nIMOGEN:\nA father cruel, and a step-dame false;\nA foolish suitor to a wedded lady,\nThat hath her husband banish'd;--O, that husband!\nMy supreme crown of grief! and those repeated\nVexations of it! Had I been thief-stol'n,\nAs my two brothers, happy! but most miserable\nIs the desire that's glorious: blest be those,\nHow mean soe'er, that have their honest wills,\nWhich seasons comfort. Who may this be? Fie!\n\nPISANIO:\nMadam, a noble gentleman of Rome,\nComes from my lord with letters.\n\nIACHIMO:\nChange you, madam?\nThe worthy Leonatus is in safety\nAnd greets your highness dearly.\n\nIMOGEN:\nThanks, good sir:\nYou're kindly welcome.\n\nIACHIMO:\n\nIMOGEN:\n\nIACHIMO:\nThanks, fairest lady.\nWhat, are men mad? Hath nature given them eyes\nTo see this vaulted arch, and the rich crop\nOf sea and land, which can distinguish 'twixt\nThe fiery orbs above and the twinn'd stones\nUpon the number'd beach? and can we not\nPartition make with spectacles so precious\n'Twixt fair and foul?\n\nIMOGEN:\nWhat makes your admiration?\n\nIACHIMO:\nIt cannot be i' the eye, for apes and monkeys\n'Twixt two such shes would chatter this way and\nContemn with mows the other; nor i' the judgment,\nFor idiots in this case of favour would\nBe wisely definite; nor i' the appetite;\nSluttery to such neat excellence opposed\nShould make desire vomit emptiness,\nNot so allured to feed.\n\nIMOGEN:\nWhat is the matter, trow?\n\nIACHIMO:\nThe cloyed will,\nThat satiate yet unsatisfied desire, that tub\nBoth fill'd and running, ravening first the lamb\nLongs after for the garbage.\n\nIMOGEN:\nWhat, dear sir,\nThus raps you? Are you well?\n\nIACHIMO:\nThanks, madam; well.\nBeseech you, sir, desire\nMy man's abode where I did leave him: he\nIs strange and peevish.\n\nPISANIO:\nI was going, sir,\nTo give him welcome.\n\nIMOGEN:\nContinues well my lord? His health, beseech you?\n\nIACHIMO:\nWell, madam.\n\nIMOGEN:\nIs he disposed to mirth? I hope he is.\n\nIACHIMO:\nExceeding pleasant; none a stranger there\nSo merry and so gamesome: he is call'd\nThe Briton reveller.\n\nIMOGEN:\nWhen he was here,\nHe did incline to sadness, and oft-times\nNot knowing why.\n\nIACHIMO:\nI never saw him sad.\nThere is a Frenchman his companion, one\nAn eminent monsieur, that, it seems, much loves\nA Gallian girl at home; he furnaces\nThe thick sighs from him, whiles the jolly Briton--\nYour lord, I mean--laughs from's free lungs, cries 'O,\nCan my sides hold, to think that man, who knows\nBy history, report, or his own proof,\nWhat woman is, yea, what she cannot choose\nBut must be, will his free hours languish for\nAssured bondage?'\n\nIMOGEN:\nWill my lord say so?\n\nIACHIMO:\nAy, madam, with his eyes in flood with laughter:\nIt is a recreation to be by\nAnd hear him mock the Frenchman. But, heavens know,\nSome men are much to blame.\n\nIMOGEN:\nNot he, I hope.\n\nIACHIMO:\nNot he: but yet heaven's bounty towards him might\nBe used more thankfully. In himself, 'tis much;\nIn you, which I account his beyond all talents,\nWhilst I am bound to wonder, I am bound\nTo pity too.\n\nIMOGEN:\nWhat do you pity, sir?\n\nIACHIMO:\nTwo creatures heartily.\n\nIMOGEN:\nAm I one, sir?\nYou look on me: what wreck discern you in me\nDeserves your pity?\n\nIACHIMO:\nLamentable! What,\nTo hide me from the radiant sun and solace\nI' the dungeon by a snuff?\n\nIMOGEN:\nI pray you, sir,\nDeliver with more openness your answers\nTo my demands. Why do you pity me?\n\nIACHIMO:\nThat others do--\nI was about to say--enjoy your--But\nIt is an office of the gods to venge it,\nNot mine to speak on 't.\n\nIMOGEN:\nYou do seem to know\nSomething of me, or what concerns me: pray you,--\nSince doubling things go ill often hurts more\nThan to be sure they do; for certainties\nEither are past remedies, or, timely knowing,\nThe remedy then born--discover to me\nWhat both you spur and stop.\n\nIACHIMO:\nHad I this cheek\nTo bathe my lips upon; this hand, whose touch,\nWhose every touch, would force the feeler's soul\nTo the oath of loyalty; this object, which\nTakes prisoner the wild motion of mine eye,\nFixing it only here; should I, damn'd then,\nSlaver with lips as common as the stairs\nThat mount the Capitol; join gripes with hands\nMade hard with hourly falsehood--falsehood, as\nWith labour; then by-peeping in an eye\nBase and unlustrous as the smoky light\nThat's fed with stinking tallow; it were fit\nThat all the plagues of hell should at one time\nEncounter such revolt.\n\nIMOGEN:\nMy lord, I fear,\nHas forgot Britain.\n\nIACHIMO:\nAnd himself. Not I,\nInclined to this intelligence, pronounce\nThe beggary of his change; but 'tis your graces\nThat from pay mutest conscience to my tongue\nCharms this report out.\n\nIMOGEN:\nLet me hear no more.\n\nIACHIMO:\nO dearest soul! your cause doth strike my heart\nWith pity, that doth make me sick. A lady\nSo fair, and fasten'd to an empery,\nWould make the great'st king double,--to be partner'd\nWith tomboys hired with that self-exhibition\nWhich your own coffers yield! with diseased ventures\nThat play with all infirmities for gold\nWhich rottenness can lend nature! such boil'd stuff\nAs well might poison poison! Be revenged;\nOr she that bore you was no queen, and you\nRecoil from your great stock.\n\nIMOGEN:\nRevenged!\nHow should I be revenged? If this be true,--\nAs I have such a heart that both mine ears\nMust not in haste abuse--if it be true,\nHow should I be revenged?\n\nIACHIMO:\nShould he make me\nLive, like Diana's priest, betwixt cold sheets,\nWhiles he is vaulting variable ramps,\nIn your despite, upon your purse? Revenge it.\nI dedicate myself to your sweet pleasure,\nMore noble than that runagate to your bed,\nAnd will continue fast to your affection,\nStill close as sure.\n\nIMOGEN:\nWhat, ho, Pisanio!\n\nIACHIMO:\nLet me my service tender on your lips.\n\nIMOGEN:\nAway! I do condemn mine ears that have\nSo long attended thee. If thou wert honourable,\nThou wouldst have told this tale for virtue, not\nFor such an end thou seek'st,--as base as strange.\nThou wrong'st a gentleman, who is as far\nFrom thy report as thou from honour, and\nSolicit'st here a lady that disdains\nThee and the devil alike. What ho, Pisanio!\nThe king my father shall be made acquainted\nOf thy assault: if he shall think it fit,\nA saucy stranger in his court to mart\nAs in a Romish stew and to expound\nHis beastly mind to us, he hath a court\nHe little cares for and a daughter who\nHe not respects at all. What, ho, Pisanio!\n\nIACHIMO:\nO happy Leonatus! I may say\nThe credit that thy lady hath of thee\nDeserves thy trust, and thy most perfect goodness\nHer assured credit. Blessed live you long!\nA lady to the worthiest sir that ever\nCountry call'd his! and you his mistress, only\nFor the most worthiest fit! Give me your pardon.\nI have spoke this, to know if your affiance\nWere deeply rooted; and shall make your lord,\nThat which he is, new o'er: and he is one\nThe truest manner'd; such a holy witch\nThat he enchants societies into him;\nHalf all men's hearts are his.\n\nIMOGEN:\nYou make amends.\n\nIACHIMO:\nHe sits 'mongst men like a descended god:\nHe hath a kind of honour sets him off,\nMore than a mortal seeming. Be not angry,\nMost mighty princess, that I have adventured\nTo try your taking a false report; which hath\nHonour'd with confirmation your great judgment\nIn the election of a sir so rare,\nWhich you know cannot err: the love I bear him\nMade me to fan you thus, but the gods made you,\nUnlike all others, chaffless. Pray, your pardon.\n\nIMOGEN:\nAll's well, sir: take my power i' the court\nfor yours.\n\nIACHIMO:\nMy humble thanks. I had almost forgot\nTo entreat your grace but in a small request,\nAnd yet of moment to, for it concerns\nYour lord; myself and other noble friends,\nAre partners in the business.\n\nIMOGEN:\nPray, what is't?\n\nIACHIMO:\nSome dozen Romans of us and your lord--\nThe best feather of our wing--have mingled sums\nTo buy a present for the emperor\nWhich I, the factor for the rest, have done\nIn France: 'tis plate of rare device, and jewels\nOf rich and exquisite form; their values great;\nAnd I am something curious, being strange,\nTo have them in safe stowage: may it please you\nTo take them in protection?\n\nIMOGEN:\nWillingly;\nAnd pawn mine honour for their safety: since\nMy lord hath interest in them, I will keep them\nIn my bedchamber.\n\nIACHIMO:\nThey are in a trunk,\nAttended by my men: I will make bold\nTo send them to you, only for this night;\nI must aboard to-morrow.\n\nIMOGEN:\nO, no, no.\n\nIACHIMO:\nYes, I beseech; or I shall short my word\nBy lengthening my return. From Gallia\nI cross'd the seas on purpose and on promise\nTo see your grace.\n\nIMOGEN:\nI thank you for your pains:\nBut not away to-morrow!\n\nIACHIMO:\nO, I must, madam:\nTherefore I shall beseech you, if you please\nTo greet your lord with writing, do't to-night:\nI have outstood my time; which is material\nTo the tender of our present.\n\nIMOGEN:\nI will write.\nSend your trunk to me; it shall safe be kept,\nAnd truly yielded you. You're very welcome.\n\nCLOTEN:\nWas there ever man had such luck! when I kissed the\njack, upon an up-cast to be hit away! I had a\nhundred pound on't: and then a whoreson jackanapes\nmust take me up for swearing; as if I borrowed mine\noaths of him and might not spend them at my pleasure.\n\nFirst Lord:\nWhat got he by that? You have broke his pate with\nyour bowl.\n\nSecond Lord:\n\nCLOTEN:\nWhen a gentleman is disposed to swear, it is not for\nany standers-by to curtail his oaths, ha?\n\nSecond Lord:\nNo my lord;\nnor crop the ears of them.\n\nCLOTEN:\nWhoreson dog! I give him satisfaction?\nWould he had been one of my rank!\n\nSecond Lord:\n\nCLOTEN:\nI am not vexed more at any thing in the earth: a\npox on't! I had rather not be so noble as I am;\nthey dare not fight with me, because of the queen my\nmother: every Jack-slave hath his bellyful of\nfighting, and I must go up and down like a cock that\nnobody can match.\n\nSecond Lord:\n\nCLOTEN:\nSayest thou?\n\nSecond Lord:\nIt is not fit your lordship should undertake every\ncompanion that you give offence to.\n\nCLOTEN:\nNo, I know that: but it is fit I should commit\noffence to my inferiors.\n\nSecond Lord:\nAy, it is fit for your lordship only.\n\nCLOTEN:\nWhy, so I say.\n\nFirst Lord:\nDid you hear of a stranger that's come to court to-night?\n\nCLOTEN:\nA stranger, and I not know on't!\n\nSecond Lord:\n\nFirst Lord:\nThere's an Italian come; and, 'tis thought, one of\nLeonatus' friends.\n\nCLOTEN:\nLeonatus! a banished rascal; and he's another,\nwhatsoever he be. Who told you of this stranger?\n\nFirst Lord:\nOne of your lordship's pages.\n\nCLOTEN:\nIs it fit I went to look upon him? is there no\nderogation in't?\n\nSecond Lord:\nYou cannot derogate, my lord.\n\nCLOTEN:\nNot easily, I think.\n\nSecond Lord:\n\nCLOTEN:\nCome, I'll go see this Italian: what I have lost\nto-day at bowls I'll win to-night of him. Come, go.\n\nSecond Lord:\nI'll attend your lordship.\nThat such a crafty devil as is his mother\nShould yield the world this ass! a woman that\nBears all down with her brain; and this her son\nCannot take two from twenty, for his heart,\nAnd leave eighteen. Alas, poor princess,\nThou divine Imogen, what thou endurest,\nBetwixt a father by thy step-dame govern'd,\nA mother hourly coining plots, a wooer\nMore hateful than the foul expulsion is\nOf thy dear husband, than that horrid act\nOf the divorce he'ld make! The heavens hold firm\nThe walls of thy dear honour, keep unshaked\nThat temple, thy fair mind, that thou mayst stand,\nTo enjoy thy banish'd lord and this great land!\n\nIMOGEN:\nWho's there? my woman Helen?\n\nLady:\nPlease you, madam\n\nIMOGEN:\nWhat hour is it?\n\nLady:\nAlmost midnight, madam.\n\nIMOGEN:\nI have read three hours then: mine eyes are weak:\nFold down the leaf where I have left: to bed:\nTake not away the taper, leave it burning;\nAnd if thou canst awake by four o' the clock,\nI prithee, call me. Sleep hath seized me wholly\nTo your protection I commend me, gods.\nFrom fairies and the tempters of the night\nGuard me, beseech ye.\n\nIACHIMO:\nThe crickets sing, and man's o'er-labour'd sense\nRepairs itself by rest. Our Tarquin thus\nDid softly press the rushes, ere he waken'd\nThe chastity he wounded. Cytherea,\nHow bravely thou becomest thy bed, fresh lily,\nAnd whiter than the sheets! That I might touch!\nBut kiss; one kiss! Rubies unparagon'd,\nHow dearly they do't! 'Tis her breathing that\nPerfumes the chamber thus: the flame o' the taper\nBows toward her, and would under-peep her lids,\nTo see the enclosed lights, now canopied\nUnder these windows, white and azure laced\nWith blue of heaven's own tinct. But my design,\nTo note the chamber: I will write all down:\nSuch and such pictures; there the window; such\nThe adornment of her bed; the arras; figures,\nWhy, such and such; and the contents o' the story.\nAh, but some natural notes about her body,\nAbove ten thousand meaner moveables\nWould testify, to enrich mine inventory.\nO sleep, thou ape of death, lie dull upon her!\nAnd be her sense but as a monument,\nThus in a chapel lying! Come off, come off:\nAs slippery as the Gordian knot was hard!\n'Tis mine; and this will witness outwardly,\nAs strongly as the conscience does within,\nTo the madding of her lord. On her left breast\nA mole cinque-spotted, like the crimson drops\nI' the bottom of a cowslip: here's a voucher,\nStronger than ever law could make: this secret\nWill force him think I have pick'd the lock and ta'en\nThe treasure of her honour. No more. To what end?\nWhy should I write this down, that's riveted,\nScrew'd to my memory? She hath been reading late\nThe tale of Tereus; here the leaf's turn'd down\nWhere Philomel gave up. I have enough:\nTo the trunk again, and shut the spring of it.\nSwift, swift, you dragons of the night, that dawning\nMay bare the raven's eye! I lodge in fear;\nThough this a heavenly angel, hell is here.\nOne, two, three: time, time!\n\nFirst Lord:\nYour lordship is the most patient man in loss, the\nmost coldest that ever turned up ace.\n\nCLOTEN:\nIt would make any man cold to lose.\n\nFirst Lord:\nBut not every man patient after the noble temper of\nyour lordship. You are most hot and furious when you win.\n\nCLOTEN:\nWinning will put any man into courage. If I could\nget this foolish Imogen, I should have gold enough.\nIt's almost morning, is't not?\n\nFirst Lord:\nDay, my lord.\n\nCLOTEN:\nI would this music would come: I am advised to give\nher music o' mornings; they say it will penetrate.\nCome on; tune: if you can penetrate her with your\nfingering, so; we'll try with tongue too: if none\nwill do, let her remain; but I'll never give o'er.\nFirst, a very excellent good-conceited thing;\nafter, a wonderful sweet air, with admirable rich\nwords to it: and then let her consider.\nHark, hark! the lark at heaven's gate sings,\nAnd Phoebus 'gins arise,\nHis steeds to water at those springs\nOn chaliced flowers that lies;\nAnd winking Mary-buds begin\nTo ope their golden eyes:\nWith every thing that pretty is,\nMy lady sweet, arise:\nArise, arise.\n\nCLOTEN:\nSo, get you gone. If this penetrate, I will\nconsider your music the better: if it do not, it is\na vice in her ears, which horse-hairs and\ncalves'-guts, nor the voice of unpaved eunuch to\nboot, can never amend.\n\nSecond Lord:\nHere comes the king.\n\nCLOTEN:\nI am glad I was up so late; for that's the reason I\nwas up so early: he cannot choose but take this\nservice I have done fatherly.\nGood morrow to your majesty and to my gracious mother.\n\nCYMBELINE:\nAttend you here the door of our stern daughter?\nWill she not forth?\n\nCLOTEN:\nI have assailed her with music, but she vouchsafes no notice.\n\nCYMBELINE:\nThe exile of her minion is too new;\nShe hath not yet forgot him: some more time\nMust wear the print of his remembrance out,\nAnd then she's yours.\n\nQUEEN:\nYou are most bound to the king,\nWho lets go by no vantages that may\nPrefer you to his daughter. Frame yourself\nTo orderly soliciting, and be friended\nWith aptness of the season; make denials\nIncrease your services; so seem as if\nYou were inspired to do those duties which\nYou tender to her; that you in all obey her,\nSave when command to your dismission tends,\nAnd therein you are senseless.\n\nCLOTEN:\nSenseless! not so.\n\nMessenger:\nSo like you, sir, ambassadors from Rome;\nThe one is Caius Lucius.\n\nCYMBELINE:\nA worthy fellow,\nAlbeit he comes on angry purpose now;\nBut that's no fault of his: we must receive him\nAccording to the honour of his sender;\nAnd towards himself, his goodness forespent on us,\nWe must extend our notice. Our dear son,\nWhen you have given good morning to your mistress,\nAttend the queen and us; we shall have need\nTo employ you towards this Roman. Come, our queen.\n\nCLOTEN:\nIf she be up, I'll speak with her; if not,\nLet her lie still and dream.\nBy your leave, ho!\nI Know her women are about her: what\nIf I do line one of their hands? 'Tis gold\nWhich buys admittance; oft it doth; yea, and makes\nDiana's rangers false themselves, yield up\nTheir deer to the stand o' the stealer; and 'tis gold\nWhich makes the true man kill'd and saves the thief;\nNay, sometime hangs both thief and true man: what\nCan it not do and undo? I will make\nOne of her women lawyer to me, for\nI yet not understand the case myself.\nBy your leave.\n\nLady:\nWho's there that knocks?\n\nCLOTEN:\nA gentleman.\n\nLady:\nNo more?\n\nCLOTEN:\nYes, and a gentlewoman's son.\n\nLady:\nThat's more\nThan some, whose tailors are as dear as yours,\nCan justly boast of. What's your lordship's pleasure?\n\nCLOTEN:\nYour lady's person: is she ready?\n\nLady:\nAy,\nTo keep her chamber.\n\nCLOTEN:\nThere is gold for you;\nSell me your good report.\n\nLady:\nHow! my good name? or to report of you\nWhat I shall think is good?--The princess!\n\nCLOTEN:\nGood morrow, fairest: sister, your sweet hand.\n\nIMOGEN:\nGood morrow, sir. You lay out too much pains\nFor purchasing but trouble; the thanks I give\nIs telling you that I am poor of thanks\nAnd scarce can spare them.\n\nCLOTEN:\nStill, I swear I love you.\n\nIMOGEN:\nIf you but said so, 'twere as deep with me:\nIf you swear still, your recompense is still\nThat I regard it not.\n\nCLOTEN:\nThis is no answer.\n\nIMOGEN:\nBut that you shall not say I yield being silent,\nI would not speak. I pray you, spare me: 'faith,\nI shall unfold equal discourtesy\nTo your best kindness: one of your great knowing\nShould learn, being taught, forbearance.\n\nCLOTEN:\nTo leave you in your madness, 'twere my sin:\nI will not.\n\nIMOGEN:\nFools are not mad folks.\n\nCLOTEN:\nDo you call me fool?\n\nIMOGEN:\nAs I am mad, I do:\nIf you'll be patient, I'll no more be mad;\nThat cures us both. I am much sorry, sir,\nYou put me to forget a lady's manners,\nBy being so verbal: and learn now, for all,\nThat I, which know my heart, do here pronounce,\nBy the very truth of it, I care not for you,\nAnd am so near the lack of charity--\nTo accuse myself--I hate you; which I had rather\nYou felt than make't my boast.\n\nCLOTEN:\nYou sin against\nObedience, which you owe your father. For\nThe contract you pretend with that base wretch,\nOne bred of alms and foster'd with cold dishes,\nWith scraps o' the court, it is no contract, none:\nAnd though it be allow'd in meaner parties--\nYet who than he more mean?--to knit their souls,\nOn whom there is no more dependency\nBut brats and beggary, in self-figured knot;\nYet you are curb'd from that enlargement by\nThe consequence o' the crown, and must not soil\nThe precious note of it with a base slave.\nA hilding for a livery, a squire's cloth,\nA pantler, not so eminent.\n\nIMOGEN:\nProfane fellow\nWert thou the son of Jupiter and no more\nBut what thou art besides, thou wert too base\nTo be his groom: thou wert dignified enough,\nEven to the point of envy, if 'twere made\nComparative for your virtues, to be styled\nThe under-hangman of his kingdom, and hated\nFor being preferred so well.\n\nCLOTEN:\nThe south-fog rot him!\n\nIMOGEN:\nHe never can meet more mischance than come\nTo be but named of thee. His meanest garment,\nThat ever hath but clipp'd his body, is dearer\nIn my respect than all the hairs above thee,\nWere they all made such men. How now, Pisanio!\n\nCLOTEN:\n'His garment!' Now the devil--\n\nIMOGEN:\nTo Dorothy my woman hie thee presently--\n\nCLOTEN:\n'His garment!'\n\nIMOGEN:\nI am sprited with a fool.\nFrighted, and anger'd worse: go bid my woman\nSearch for a jewel that too casually\nHath left mine arm: it was thy master's: 'shrew me,\nIf I would lose it for a revenue\nOf any king's in Europe. I do think\nI saw't this morning: confident I am\nLast night 'twas on mine arm; I kiss'd it:\nI hope it be not gone to tell my lord\nThat I kiss aught but he.\n\nPISANIO:\n'Twill not be lost.\n\nIMOGEN:\nI hope so: go and search.\n\nCLOTEN:\nYou have abused me:\n'His meanest garment!'\n\nIMOGEN:\nAy, I said so, sir:\nIf you will make't an action, call witness to't.\n\nCLOTEN:\nI will inform your father.\n\nIMOGEN:\nYour mother too:\nShe's my good lady, and will conceive, I hope,\nBut the worst of me. So, I leave you, sir,\nTo the worst of discontent.\n\nCLOTEN:\nI'll be revenged:\n'His meanest garment!' Well.\n\nPOSTHUMUS LEONATUS:\nFear it not, sir: I would I were so sure\nTo win the king as I am bold her honour\nWill remain hers.\n\nPHILARIO:\nWhat means do you make to him?\n\nPOSTHUMUS LEONATUS:\nNot any, but abide the change of time,\nQuake in the present winter's state and wish\nThat warmer days would come: in these sear'd hopes,\nI barely gratify your love; they failing,\nI must die much your debtor.\n\nPHILARIO:\nYour very goodness and your company\nO'erpays all I can do. By this, your king\nHath heard of great Augustus: Caius Lucius\nWill do's commission throughly: and I think\nHe'll grant the tribute, send the arrearages,\nOr look upon our Romans, whose remembrance\nIs yet fresh in their grief.\n\nPOSTHUMUS LEONATUS:\nI do believe,\nStatist though I am none, nor like to be,\nThat this will prove a war; and you shall hear\nThe legions now in Gallia sooner landed\nIn our not-fearing Britain than have tidings\nOf any penny tribute paid. Our countrymen\nAre men more order'd than when Julius Caesar\nSmiled at their lack of skill, but found\ntheir courage\nWorthy his frowning at: their discipline,\nNow mingled with their courages, will make known\nTo their approvers they are people such\nThat mend upon the world.\n\nPHILARIO:\nSee! Iachimo!\n\nPOSTHUMUS LEONATUS:\nThe swiftest harts have posted you by land;\nAnd winds of all the comers kiss'd your sails,\nTo make your vessel nimble.\n\nPHILARIO:\nWelcome, sir.\n\nPOSTHUMUS LEONATUS:\nI hope the briefness of your answer made\nThe speediness of your return.\n\nIACHIMO:\nYour lady\nIs one of the fairest that I have look'd upon.\n\nPOSTHUMUS LEONATUS:\nAnd therewithal the best; or let her beauty\nLook through a casement to allure false hearts\nAnd be false with them.\n\nIACHIMO:\nHere are letters for you.\n\nPOSTHUMUS LEONATUS:\nTheir tenor good, I trust.\n\nIACHIMO:\n'Tis very like.\n\nPHILARIO:\nWas Caius Lucius in the Britain court\nWhen you were there?\n\nIACHIMO:\nHe was expected then,\nBut not approach'd.\n\nPOSTHUMUS LEONATUS:\nAll is well yet.\nSparkles this stone as it was wont? or is't not\nToo dull for your good wearing?\n\nIACHIMO:\nIf I had lost it,\nI should have lost the worth of it in gold.\nI'll make a journey twice as far, to enjoy\nA second night of such sweet shortness which\nWas mine in Britain, for the ring is won.\n\nPOSTHUMUS LEONATUS:\nThe stone's too hard to come by.\n\nIACHIMO:\nNot a whit,\nYour lady being so easy.\n\nPOSTHUMUS LEONATUS:\nMake not, sir,\nYour loss your sport: I hope you know that we\nMust not continue friends.\n\nIACHIMO:\nGood sir, we must,\nIf you keep covenant. Had I not brought\nThe knowledge of your mistress home, I grant\nWe were to question further: but I now\nProfess myself the winner of her honour,\nTogether with your ring; and not the wronger\nOf her or you, having proceeded but\nBy both your wills.\n\nPOSTHUMUS LEONATUS:\nIf you can make't apparent\nThat you have tasted her in bed, my hand\nAnd ring is yours; if not, the foul opinion\nYou had of her pure honour gains or loses\nYour sword or mine, or masterless leaves both\nTo who shall find them.\n\nIACHIMO:\nSir, my circumstances,\nBeing so near the truth as I will make them,\nMust first induce you to believe: whose strength\nI will confirm with oath; which, I doubt not,\nYou'll give me leave to spare, when you shall find\nYou need it not.\n\nPOSTHUMUS LEONATUS:\nProceed.\n\nIACHIMO:\nFirst, her bedchamber,--\nWhere, I confess, I slept not, but profess\nHad that was well worth watching--it was hang'd\nWith tapesty of silk and silver; the story\nProud Cleopatra, when she met her Roman,\nAnd Cydnus swell'd above the banks, or for\nThe press of boats or pride: a piece of work\nSo bravely done, so rich, that it did strive\nIn workmanship and value; which I wonder'd\nCould be so rarely and exactly wrought,\nSince the true life on't was--\n\nPOSTHUMUS LEONATUS:\nThis is true;\nAnd this you might have heard of here, by me,\nOr by some other.\n\nIACHIMO:\nMore particulars\nMust justify my knowledge.\n\nPOSTHUMUS LEONATUS:\nSo they must,\nOr do your honour injury.\n\nIACHIMO:\nThe chimney\nIs south the chamber, and the chimney-piece\nChaste Dian bathing: never saw I figures\nSo likely to report themselves: the cutter\nWas as another nature, dumb; outwent her,\nMotion and breath left out.\n\nPOSTHUMUS LEONATUS:\nThis is a thing\nWhich you might from relation likewise reap,\nBeing, as it is, much spoke of.\n\nIACHIMO:\nThe roof o' the chamber\nWith golden cherubins is fretted: her andirons--\nI had forgot them--were two winking Cupids\nOf silver, each on one foot standing, nicely\nDepending on their brands.\n\nPOSTHUMUS LEONATUS:\nThis is her honour!\nLet it be granted you have seen all this--and praise\nBe given to your remembrance--the description\nOf what is in her chamber nothing saves\nThe wager you have laid.\n\nIACHIMO:\nThen, if you can,\nBe pale: I beg but leave to air this jewel; see!\nAnd now 'tis up again: it must be married\nTo that your diamond; I'll keep them.\n\nPOSTHUMUS LEONATUS:\nJove!\nOnce more let me behold it: is it that\nWhich I left with her?\n\nIACHIMO:\nSir--I thank her--that:\nShe stripp'd it from her arm; I see her yet;\nHer pretty action did outsell her gift,\nAnd yet enrich'd it too: she gave it me, and said\nShe prized it once.\n\nPOSTHUMUS LEONATUS:\nMay be she pluck'd it off\nTo send it me.\n\nIACHIMO:\nShe writes so to you, doth she?\n\nPOSTHUMUS LEONATUS:\nO, no, no, no! 'tis true. Here, take this too;\nIt is a basilisk unto mine eye,\nKills me to look on't. Let there be no honour\nWhere there is beauty; truth, where semblance; love,\nWhere there's another man: the vows of women\nOf no more bondage be, to where they are made,\nThan they are to their virtues; which is nothing.\nO, above measure false!\n\nPHILARIO:\nHave patience, sir,\nAnd take your ring again; 'tis not yet won:\nIt may be probable she lost it; or\nWho knows if one of her women, being corrupted,\nHath stol'n it from her?\n\nPOSTHUMUS LEONATUS:\nVery true;\nAnd so, I hope, he came by't. Back my ring:\nRender to me some corporal sign about her,\nMore evident than this; for this was stolen.\n\nIACHIMO:\nBy Jupiter, I had it from her arm.\n\nPOSTHUMUS LEONATUS:\nHark you, he swears; by Jupiter he swears.\n'Tis true:--nay, keep the ring--'tis true: I am sure\nShe would not lose it: her attendants are\nAll sworn and honourable:--they induced to steal it!\nAnd by a stranger!--No, he hath enjoyed her:\nThe cognizance of her incontinency\nIs this: she hath bought the name of whore\nthus dearly.\nThere, take thy hire; and all the fiends of hell\nDivide themselves between you!\n\nPHILARIO:\nSir, be patient:\nThis is not strong enough to be believed\nOf one persuaded well of--\n\nPOSTHUMUS LEONATUS:\nNever talk on't;\nShe hath been colted by him.\n\nIACHIMO:\nIf you seek\nFor further satisfying, under her breast--\nWorthy the pressing--lies a mole, right proud\nOf that most delicate lodging: by my life,\nI kiss'd it; and it gave me present hunger\nTo feed again, though full. You do remember\nThis stain upon her?\n\nPOSTHUMUS LEONATUS:\nAy, and it doth confirm\nAnother stain, as big as hell can hold,\nWere there no more but it.\n\nIACHIMO:\nWill you hear more?\n\nPOSTHUMUS LEONATUS:\nSpare your arithmetic: never count the turns;\nOnce, and a million!\n\nIACHIMO:\nI'll be sworn--\n\nPOSTHUMUS LEONATUS:\nNo swearing.\nIf you will swear you have not done't, you lie;\nAnd I will kill thee, if thou dost deny\nThou'st made me cuckold.\n\nIACHIMO:\nI'll deny nothing.\n\nPOSTHUMUS LEONATUS:\nO, that I had her here, to tear her limb-meal!\nI will go there and do't, i' the court, before\nHer father. I'll do something--\n\nPHILARIO:\nQuite besides\nThe government of patience! You have won:\nLet's follow him, and pervert the present wrath\nHe hath against himself.\n\nIACHIMO:\nWith an my heart.\n\nPOSTHUMUS LEONATUS:\nIs there no way for men to be but women\nMust be half-workers? We are all bastards;\nAnd that most venerable man which I\nDid call my father, was I know not where\nWhen I was stamp'd; some coiner with his tools\nMade me a counterfeit: yet my mother seem'd\nThe Dian of that time so doth my wife\nThe nonpareil of this. O, vengeance, vengeance!\nMe of my lawful pleasure she restrain'd\nAnd pray'd me oft forbearance; did it with\nA pudency so rosy the sweet view on't\nMight well have warm'd old Saturn; that I thought her\nAs chaste as unsunn'd snow. O, all the devils!\nThis yellow Iachimo, in an hour,--wast not?--\nOr less,--at first?--perchance he spoke not, but,\nLike a full-acorn'd boar, a German one,\nCried 'O!' and mounted; found no opposition\nBut what he look'd for should oppose and she\nShould from encounter guard. Could I find out\nThe woman's part in me! For there's no motion\nThat tends to vice in man, but I affirm\nIt is the woman's part: be it lying, note it,\nThe woman's; flattering, hers; deceiving, hers;\nLust and rank thoughts, hers, hers; revenges, hers;\nAmbitions, covetings, change of prides, disdain,\nNice longing, slanders, mutability,\nAll faults that may be named, nay, that hell knows,\nWhy, hers, in part or all; but rather, all;\nFor even to vice\nThey are not constant but are changing still\nOne vice, but of a minute old, for one\nNot half so old as that. I'll write against them,\nDetest them, curse them: yet 'tis greater skill\nIn a true hate, to pray they have their will:\nThe very devils cannot plague them better.\n\nCYMBELINE:\nNow say, what would Augustus Caesar with us?\n\nCAIUS LUCIUS:\nWhen Julius Caesar, whose remembrance yet\nLives in men's eyes and will to ears and tongues\nBe theme and hearing ever, was in this Britain\nAnd conquer'd it, Cassibelan, thine uncle,--\nFamous in Caesar's praises, no whit less\nThan in his feats deserving it--for him\nAnd his succession granted Rome a tribute,\nYearly three thousand pounds, which by thee lately\nIs left untender'd.\n\nQUEEN:\nAnd, to kill the marvel,\nShall be so ever.\n\nCLOTEN:\nThere be many Caesars,\nEre such another Julius. Britain is\nA world by itself; and we will nothing pay\nFor wearing our own noses.\n\nQUEEN:\nThat opportunity\nWhich then they had to take from 's, to resume\nWe have again. Remember, sir, my liege,\nThe kings your ancestors, together with\nThe natural bravery of your isle, which stands\nAs Neptune's park, ribbed and paled in\nWith rocks unscalable and roaring waters,\nWith sands that will not bear your enemies' boats,\nBut suck them up to the topmast. A kind of conquest\nCaesar made here; but made not here his brag\nOf 'Came' and 'saw' and 'overcame: ' with shame--\nThat first that ever touch'd him--he was carried\nFrom off our coast, twice beaten; and his shipping--\nPoor ignorant baubles!-- upon our terrible seas,\nLike egg-shells moved upon their surges, crack'd\nAs easily 'gainst our rocks: for joy whereof\nThe famed Cassibelan, who was once at point--\nO giglot fortune!--to master Caesar's sword,\nMade Lud's town with rejoicing fires bright\nAnd Britons strut with courage.\n\nCLOTEN:\nCome, there's no more tribute to be paid: our\nkingdom is stronger than it was at that time; and,\nas I said, there is no moe such Caesars: other of\nthem may have crook'd noses, but to owe such\nstraight arms, none.\n\nCYMBELINE:\nSon, let your mother end.\n\nCLOTEN:\nWe have yet many among us can gripe as hard as\nCassibelan: I do not say I am one; but I have a\nhand. Why tribute? why should we pay tribute? If\nCaesar can hide the sun from us with a blanket, or\nput the moon in his pocket, we will pay him tribute\nfor light; else, sir, no more tribute, pray you now.\n\nCYMBELINE:\nYou must know,\nTill the injurious Romans did extort\nThis tribute from us, we were free:\nCaesar's ambition,\nWhich swell'd so much that it did almost stretch\nThe sides o' the world, against all colour here\nDid put the yoke upon 's; which to shake off\nBecomes a warlike people, whom we reckon\nOurselves to be.\n\nCLOTEN:\nWe do.\n\nCYMBELINE:\nSay, then, to Caesar,\nOur ancestor was that Mulmutius which\nOrdain'd our laws, whose use the sword of Caesar\nHath too much mangled; whose repair and franchise\nShall, by the power we hold, be our good deed,\nThough Rome be therefore angry: Mulmutius made our laws,\nWho was the first of Britain which did put\nHis brows within a golden crown and call'd\nHimself a king.\n\nCAIUS LUCIUS:\nI am sorry, Cymbeline,\nThat I am to pronounce Augustus Caesar--\nCaesar, that hath more kings his servants than\nThyself domestic officers--thine enemy:\nReceive it from me, then: war and confusion\nIn Caesar's name pronounce I 'gainst thee: look\nFor fury not to be resisted. Thus defied,\nI thank thee for myself.\n\nCYMBELINE:\nThou art welcome, Caius.\nThy Caesar knighted me; my youth I spent\nMuch under him; of him I gather'd honour;\nWhich he to seek of me again, perforce,\nBehoves me keep at utterance. I am perfect\nThat the Pannonians and Dalmatians for\nTheir liberties are now in arms; a precedent\nWhich not to read would show the Britons cold:\nSo Caesar shall not find them.\n\nCAIUS LUCIUS:\nLet proof speak.\n\nCLOTEN:\nHis majesty bids you welcome. Make\npastime with us a day or two, or longer: if\nyou seek us afterwards in other terms, you\nshall find us in our salt-water girdle: if you\nbeat us out of it, it is yours; if you fall in\nthe adventure, our crows shall fare the better\nfor you; and there's an end.\n\nCAIUS LUCIUS:\nSo, sir.\n\nCYMBELINE:\nI know your master's pleasure and he mine:\nAll the remain is 'Welcome!'\n\nPISANIO:\nHow? of adultery? Wherefore write you not\nWhat monster's her accuser? Leonatus,\nO master! what a strange infection\nIs fall'n into thy ear! What false Italian,\nAs poisonous-tongued as handed, hath prevail'd\nOn thy too ready hearing? Disloyal! No:\nShe's punish'd for her truth, and undergoes,\nMore goddess-like than wife-like, such assaults\nAs would take in some virtue. O my master!\nThy mind to her is now as low as were\nThy fortunes. How! that I should murder her?\nUpon the love and truth and vows which I\nHave made to thy command? I, her? her blood?\nIf it be so to do good service, never\nLet me be counted serviceable. How look I,\nThat I should seem to lack humanity\nso much as this fact comes to?\n'Do't: the letter\nthat I have sent her, by her own command\nShall give thee opportunity.' O damn'd paper!\nBlack as the ink that's on thee! Senseless bauble,\nArt thou a feodary for this act, and look'st\nSo virgin-like without? Lo, here she comes.\nI am ignorant in what I am commanded.\n\nIMOGEN:\nHow now, Pisanio!\n\nPISANIO:\nMadam, here is a letter from my lord.\n\nIMOGEN:\nWho? thy lord? that is my lord, Leonatus!\nO, learn'd indeed were that astronomer\nThat knew the stars as I his characters;\nHe'ld lay the future open. You good gods,\nLet what is here contain'd relish of love,\nOf my lord's health, of his content, yet not\nThat we two are asunder; let that grieve him:\nSome griefs are med'cinable; that is one of them,\nFor it doth physic love: of his content,\nAll but in that! Good wax, thy leave. Blest be\nYou bees that make these locks of counsel! Lovers\nAnd men in dangerous bonds pray not alike:\nThough forfeiters you cast in prison, yet\nYou clasp young Cupid's tables. Good news, gods!\n'Justice, and your father's wrath, should he take me\nin his dominion, could not be so cruel to me, as\nyou, O the dearest of creatures, would even renew me\nwith your eyes. Take notice that I am in Cambria,\nat Milford-Haven: what your own love will out of\nthis advise you, follow. So he wishes you all\nhappiness, that remains loyal to his vow, and your,\nincreasing in love,\nLEONATUS POSTHUMUS.'\nO, for a horse with wings! Hear'st thou, Pisanio?\nHe is at Milford-Haven: read, and tell me\nHow far 'tis thither. If one of mean affairs\nMay plod it in a week, why may not I\nGlide thither in a day? Then, true Pisanio,--\nWho long'st, like me, to see thy lord; who long'st,--\nlet me bate,-but not like me--yet long'st,\nBut in a fainter kind:--O, not like me;\nFor mine's beyond beyond--say, and speak thick;\nLove's counsellor should fill the bores of hearing,\nTo the smothering of the sense--how far it is\nTo this same blessed Milford: and by the way\nTell me how Wales was made so happy as\nTo inherit such a haven: but first of all,\nHow we may steal from hence, and for the gap\nThat we shall make in time, from our hence-going\nAnd our return, to excuse: but first, how get hence:\nWhy should excuse be born or e'er begot?\nWe'll talk of that hereafter. Prithee, speak,\nHow many score of miles may we well ride\n'Twixt hour and hour?\n\nPISANIO:\nOne score 'twixt sun and sun,\nMadam, 's enough for you:\nand too much too.\n\nIMOGEN:\nWhy, one that rode to's execution, man,\nCould never go so slow: I have heard of\nriding wagers,\nWhere horses have been nimbler than the sands\nThat run i' the clock's behalf. But this is foolery:\nGo bid my woman feign a sickness; say\nShe'll home to her father: and provide me presently\nA riding-suit, no costlier than would fit\nA franklin's housewife.\n\nPISANIO:\nMadam, you're best consider.\n\nIMOGEN:\nI see before me, man: nor here, nor here,\nNor what ensues, but have a fog in them,\nThat I cannot look through. Away, I prithee;\nDo as I bid thee: there's no more to say,\nAccessible is none but Milford way.\n\nBELARIUS:\nA goodly day not to keep house, with such\nWhose roof's as low as ours! Stoop, boys; this gate\nInstructs you how to adore the heavens and bows you\nTo a morning's holy office: the gates of monarchs\nAre arch'd so high that giants may jet through\nAnd keep their impious turbans on, without\nGood morrow to the sun. Hail, thou fair heaven!\nWe house i' the rock, yet use thee not so hardly\nAs prouder livers do.\n\nGUIDERIUS:\nHail, heaven!\n\nARVIRAGUS:\nHail, heaven!\n\nBELARIUS:\nNow for our mountain sport: up to yond hill;\nYour legs are young; I'll tread these flats. Consider,\nWhen you above perceive me like a crow,\nThat it is place which lessens and sets off;\nAnd you may then revolve what tales I have told you\nOf courts, of princes, of the tricks in war:\nThis service is not service, so being done,\nBut being so allow'd: to apprehend thus,\nDraws us a profit from all things we see;\nAnd often, to our comfort, shall we find\nThe sharded beetle in a safer hold\nThan is the full-wing'd eagle. O, this life\nIs nobler than attending for a cheque,\nRicher than doing nothing for a bauble,\nProuder than rustling in unpaid-for silk:\nSuch gain the cap of him that makes 'em fine,\nYet keeps his book uncross'd: no life to ours.\n\nGUIDERIUS:\nOut of your proof you speak: we, poor unfledged,\nHave never wing'd from view o' the nest, nor know not\nWhat air's from home. Haply this life is best,\nIf quiet life be best; sweeter to you\nThat have a sharper known; well corresponding\nWith your stiff age: but unto us it is\nA cell of ignorance; travelling a-bed;\nA prison for a debtor, that not dares\nTo stride a limit.\n\nARVIRAGUS:\nWhat should we speak of\nWhen we are old as you? when we shall hear\nThe rain and wind beat dark December, how,\nIn this our pinching cave, shall we discourse\nThe freezing hours away? We have seen nothing;\nWe are beastly, subtle as the fox for prey,\nLike warlike as the wolf for what we eat;\nOur valour is to chase what flies; our cage\nWe make a quire, as doth the prison'd bird,\nAnd sing our bondage freely.\n\nBELARIUS:\nHow you speak!\nDid you but know the city's usuries\nAnd felt them knowingly; the art o' the court\nAs hard to leave as keep; whose top to climb\nIs certain falling, or so slippery that\nThe fear's as bad as falling; the toil o' the war,\nA pain that only seems to seek out danger\nI' the name of fame and honour; which dies i'\nthe search,\nAnd hath as oft a slanderous epitaph\nAs record of fair act; nay, many times,\nDoth ill deserve by doing well; what's worse,\nMust court'sy at the censure:--O boys, this story\nThe world may read in me: my body's mark'd\nWith Roman swords, and my report was once\nFirst with the best of note: Cymbeline loved me,\nAnd when a soldier was the theme, my name\nWas not far off: then was I as a tree\nWhose boughs did bend with fruit: but in one night,\nA storm or robbery, call it what you will,\nShook down my mellow hangings, nay, my leaves,\nAnd left me bare to weather.\n\nGUIDERIUS:\nUncertain favour!\n\nBELARIUS:\nMy fault being nothing--as I have told you oft--\nBut that two villains, whose false oaths prevail'd\nBefore my perfect honour, swore to Cymbeline\nI was confederate with the Romans: so\nFollow'd my banishment, and this twenty years\nThis rock and these demesnes have been my world;\nWhere I have lived at honest freedom, paid\nMore pious debts to heaven than in all\nThe fore-end of my time. But up to the mountains!\nThis is not hunters' language: he that strikes\nThe venison first shall be the lord o' the feast;\nTo him the other two shall minister;\nAnd we will fear no poison, which attends\nIn place of greater state. I'll meet you in the valleys.\nHow hard it is to hide the sparks of nature!\nThese boys know little they are sons to the king;\nNor Cymbeline dreams that they are alive.\nThey think they are mine; and though train'd\nup thus meanly\nI' the cave wherein they bow, their thoughts do hit\nThe roofs of palaces, and nature prompts them\nIn simple and low things to prince it much\nBeyond the trick of others. This Polydore,\nThe heir of Cymbeline and Britain, who\nThe king his father call'd Guiderius,--Jove!\nWhen on my three-foot stool I sit and tell\nThe warlike feats I have done, his spirits fly out\nInto my story: say 'Thus, mine enemy fell,\nAnd thus I set my foot on 's neck;' even then\nThe princely blood flows in his cheek, he sweats,\nStrains his young nerves and puts himself in posture\nThat acts my words. The younger brother, Cadwal,\nOnce Arviragus, in as like a figure,\nStrikes life into my speech and shows much more\nHis own conceiving.--Hark, the game is roused!\nO Cymbeline! heaven and my conscience knows\nThou didst unjustly banish me: whereon,\nAt three and two years old, I stole these babes;\nThinking to bar thee of succession, as\nThou reft'st me of my lands. Euriphile,\nThou wast their nurse; they took thee for\ntheir mother,\nAnd every day do honour to her grave:\nMyself, Belarius, that am Morgan call'd,\nThey take for natural father. The game is up.\n\nIMOGEN:\nThou told'st me, when we came from horse, the place\nWas near at hand: ne'er long'd my mother so\nTo see me first, as I have now. Pisanio! man!\nWhere is Posthumus? What is in thy mind,\nThat makes thee stare thus? Wherefore breaks that sigh\nFrom the inward of thee? One, but painted thus,\nWould be interpreted a thing perplex'd\nBeyond self-explication: put thyself\nInto a havior of less fear, ere wildness\nVanquish my staider senses. What's the matter?\nWhy tender'st thou that paper to me, with\nA look untender? If't be summer news,\nSmile to't before; if winterly, thou need'st\nBut keep that countenance still. My husband's hand!\nThat drug-damn'd Italy hath out-craftied him,\nAnd he's at some hard point. Speak, man: thy tongue\nMay take off some extremity, which to read\nWould be even mortal to me.\n\nPISANIO:\nPlease you, read;\nAnd you shall find me, wretched man, a thing\nThe most disdain'd of fortune.\n\nIMOGEN:\n\nPISANIO:\nWhat shall I need to draw my sword? the paper\nHath cut her throat already. No, 'tis slander,\nWhose edge is sharper than the sword, whose tongue\nOutvenoms all the worms of Nile, whose breath\nRides on the posting winds and doth belie\nAll corners of the world: kings, queens and states,\nMaids, matrons, nay, the secrets of the grave\nThis viperous slander enters. What cheer, madam?\n\nIMOGEN:\nFalse to his bed! What is it to be false?\nTo lie in watch there and to think on him?\nTo weep 'twixt clock and clock? if sleep\ncharge nature,\nTo break it with a fearful dream of him\nAnd cry myself awake? that's false to's bed, is it?\n\nPISANIO:\nAlas, good lady!\n\nIMOGEN:\nI false! Thy conscience witness: Iachimo,\nThou didst accuse him of incontinency;\nThou then look'dst like a villain; now methinks\nThy favour's good enough. Some jay of Italy\nWhose mother was her painting, hath betray'd him:\nPoor I am stale, a garment out of fashion;\nAnd, for I am richer than to hang by the walls,\nI must be ripp'd:--to pieces with me!--O,\nMen's vows are women's traitors! All good seeming,\nBy thy revolt, O husband, shall be thought\nPut on for villany; not born where't grows,\nBut worn a bait for ladies.\n\nPISANIO:\nGood madam, hear me.\n\nIMOGEN:\nTrue honest men being heard, like false Aeneas,\nWere in his time thought false, and Sinon's weeping\nDid scandal many a holy tear, took pity\nFrom most true wretchedness: so thou, Posthumus,\nWilt lay the leaven on all proper men;\nGoodly and gallant shall be false and perjured\nFrom thy great fall. Come, fellow, be thou honest:\nDo thou thy master's bidding: when thou see'st him,\nA little witness my obedience: look!\nI draw the sword myself: take it, and hit\nThe innocent mansion of my love, my heart;\nFear not; 'tis empty of all things but grief;\nThy master is not there, who was indeed\nThe riches of it: do his bidding; strike\nThou mayst be valiant in a better cause;\nBut now thou seem'st a coward.\n\nPISANIO:\nHence, vile instrument!\nThou shalt not damn my hand.\n\nIMOGEN:\nWhy, I must die;\nAnd if I do not by thy hand, thou art\nNo servant of thy master's. Against self-slaughter\nThere is a prohibition so divine\nThat cravens my weak hand. Come, here's my heart.\nSomething's afore't. Soft, soft! we'll no defence;\nObedient as the scabbard. What is here?\nThe scriptures of the loyal Leonatus,\nAll turn'd to heresy? Away, away,\nCorrupters of my faith! you shall no more\nBe stomachers to my heart. Thus may poor fools\nBelieve false teachers: though those that\nare betray'd\nDo feel the treason sharply, yet the traitor\nStands in worse case of woe.\nAnd thou, Posthumus, thou that didst set up\nMy disobedience 'gainst the king my father\nAnd make me put into contempt the suits\nOf princely fellows, shalt hereafter find\nIt is no act of common passage, but\nA strain of rareness: and I grieve myself\nTo think, when thou shalt be disedged by her\nThat now thou tirest on, how thy memory\nWill then be pang'd by me. Prithee, dispatch:\nThe lamb entreats the butcher: where's thy knife?\nThou art too slow to do thy master's bidding,\nWhen I desire it too.\n\nPISANIO:\nO gracious lady,\nSince I received command to do this business\nI have not slept one wink.\n\nIMOGEN:\nDo't, and to bed then.\n\nPISANIO:\nI'll wake mine eye-balls blind first.\n\nIMOGEN:\nWherefore then\nDidst undertake it? Why hast thou abused\nSo many miles with a pretence? this place?\nMine action and thine own? our horses' labour?\nThe time inviting thee? the perturb'd court,\nFor my being absent? whereunto I never\nPurpose return. Why hast thou gone so far,\nTo be unbent when thou hast ta'en thy stand,\nThe elected deer before thee?\n\nPISANIO:\nBut to win time\nTo lose so bad employment; in the which\nI have consider'd of a course. Good lady,\nHear me with patience.\n\nIMOGEN:\nTalk thy tongue weary; speak\nI have heard I am a strumpet; and mine ear\nTherein false struck, can take no greater wound,\nNor tent to bottom that. But speak.\n\nPISANIO:\nThen, madam,\nI thought you would not back again.\n\nIMOGEN:\nMost like;\nBringing me here to kill me.\n\nPISANIO:\nNot so, neither:\nBut if I were as wise as honest, then\nMy purpose would prove well. It cannot be\nBut that my master is abused:\nSome villain, ay, and singular in his art.\nHath done you both this cursed injury.\n\nIMOGEN:\nSome Roman courtezan.\n\nPISANIO:\nNo, on my life.\nI'll give but notice you are dead and send him\nSome bloody sign of it; for 'tis commanded\nI should do so: you shall be miss'd at court,\nAnd that will well confirm it.\n\nIMOGEN:\nWhy good fellow,\nWhat shall I do the where? where bide? how live?\nOr in my life what comfort, when I am\nDead to my husband?\n\nPISANIO:\nIf you'll back to the court--\n\nIMOGEN:\nNo court, no father; nor no more ado\nWith that harsh, noble, simple nothing,\nThat Cloten, whose love-suit hath been to me\nAs fearful as a siege.\n\nPISANIO:\nIf not at court,\nThen not in Britain must you bide.\n\nIMOGEN:\nWhere then\nHath Britain all the sun that shines? Day, night,\nAre they not but in Britain? I' the world's volume\nOur Britain seems as of it, but not in 't;\nIn a great pool a swan's nest: prithee, think\nThere's livers out of Britain.\n\nPISANIO:\nI am most glad\nYou think of other place. The ambassador,\nLucius the Roman, comes to Milford-Haven\nTo-morrow: now, if you could wear a mind\nDark as your fortune is, and but disguise\nThat which, to appear itself, must not yet be\nBut by self-danger, you should tread a course\nPretty and full of view; yea, haply, near\nThe residence of Posthumus; so nigh at least\nThat though his actions were not visible, yet\nReport should render him hourly to your ear\nAs truly as he moves.\n\nIMOGEN:\nO, for such means!\nThough peril to my modesty, not death on't,\nI would adventure.\n\nPISANIO:\nWell, then, here's the point:\nYou must forget to be a woman; change\nCommand into obedience: fear and niceness--\nThe handmaids of all women, or, more truly,\nWoman its pretty self--into a waggish courage:\nReady in gibes, quick-answer'd, saucy and\nAs quarrelous as the weasel; nay, you must\nForget that rarest treasure of your cheek,\nExposing it--but, O, the harder heart!\nAlack, no remedy!--to the greedy touch\nOf common-kissing Titan, and forget\nYour laboursome and dainty trims, wherein\nYou made great Juno angry.\n\nIMOGEN:\nNay, be brief\nI see into thy end, and am almost\nA man already.\n\nPISANIO:\nFirst, make yourself but like one.\nFore-thinking this, I have already fit--\n'Tis in my cloak-bag--doublet, hat, hose, all\nThat answer to them: would you in their serving,\nAnd with what imitation you can borrow\nFrom youth of such a season, 'fore noble Lucius\nPresent yourself, desire his service, tell him\nwherein you're happy,--which you'll make him know,\nIf that his head have ear in music,--doubtless\nWith joy he will embrace you, for he's honourable\nAnd doubling that, most holy. Your means abroad,\nYou have me, rich; and I will never fail\nBeginning nor supplyment.\n\nIMOGEN:\nThou art all the comfort\nThe gods will diet me with. Prithee, away:\nThere's more to be consider'd; but we'll even\nAll that good time will give us: this attempt\nI am soldier to, and will abide it with\nA prince's courage. Away, I prithee.\n\nPISANIO:\nWell, madam, we must take a short farewell,\nLest, being miss'd, I be suspected of\nYour carriage from the court. My noble mistress,\nHere is a box; I had it from the queen:\nWhat's in't is precious; if you are sick at sea,\nOr stomach-qualm'd at land, a dram of this\nWill drive away distemper. To some shade,\nAnd fit you to your manhood. May the gods\nDirect you to the best!\n\nIMOGEN:\nAmen: I thank thee.\n\nCYMBELINE:\nThus far; and so farewell.\n\nCAIUS LUCIUS:\nThanks, royal sir.\nMy emperor hath wrote, I must from hence;\nAnd am right sorry that I must report ye\nMy master's enemy.\n\nCYMBELINE:\nOur subjects, sir,\nWill not endure his yoke; and for ourself\nTo show less sovereignty than they, must needs\nAppear unkinglike.\n\nCAIUS LUCIUS:\nSo, sir: I desire of you\nA conduct over-land to Milford-Haven.\nMadam, all joy befal your grace!\n\nQUEEN:\nAnd you!\n\nCYMBELINE:\nMy lords, you are appointed for that office;\nThe due of honour in no point omit.\nSo farewell, noble Lucius.\n\nCAIUS LUCIUS:\nYour hand, my lord.\n\nCLOTEN:\nReceive it friendly; but from this time forth\nI wear it as your enemy.\n\nCAIUS LUCIUS:\nSir, the event\nIs yet to name the winner: fare you well.\n\nCYMBELINE:\nLeave not the worthy Lucius, good my lords,\nTill he have cross'd the Severn. Happiness!\n\nQUEEN:\nHe goes hence frowning: but it honours us\nThat we have given him cause.\n\nCLOTEN:\n'Tis all the better;\nYour valiant Britons have their wishes in it.\n\nCYMBELINE:\nLucius hath wrote already to the emperor\nHow it goes here. It fits us therefore ripely\nOur chariots and our horsemen be in readiness:\nThe powers that he already hath in Gallia\nWill soon be drawn to head, from whence he moves\nHis war for Britain.\n\nQUEEN:\n'Tis not sleepy business;\nBut must be look'd to speedily and strongly.\n\nCYMBELINE:\nOur expectation that it would be thus\nHath made us forward. But, my gentle queen,\nWhere is our daughter? She hath not appear'd\nBefore the Roman, nor to us hath tender'd\nThe duty of the day: she looks us like\nA thing more made of malice than of duty:\nWe have noted it. Call her before us; for\nWe have been too slight in sufferance.\n\nQUEEN:\nRoyal sir,\nSince the exile of Posthumus, most retired\nHath her life been; the cure whereof, my lord,\n'Tis time must do. Beseech your majesty,\nForbear sharp speeches to her: she's a lady\nSo tender of rebukes that words are strokes\nAnd strokes death to her.\n\nCYMBELINE:\nWhere is she, sir? How\nCan her contempt be answer'd?\n\nAttendant:\nPlease you, sir,\nHer chambers are all lock'd; and there's no answer\nThat will be given to the loudest noise we make.\n\nQUEEN:\nMy lord, when last I went to visit her,\nShe pray'd me to excuse her keeping close,\nWhereto constrain'd by her infirmity,\nShe should that duty leave unpaid to you,\nWhich daily she was bound to proffer: this\nShe wish'd me to make known; but our great court\nMade me to blame in memory.\n\nCYMBELINE:\nHer doors lock'd?\nNot seen of late? Grant, heavens, that which I fear\nProve false!\n\nQUEEN:\nSon, I say, follow the king.\n\nCLOTEN:\nThat man of hers, Pisanio, her old servant,\nhave not seen these two days.\n\nQUEEN:\nGo, look after.\nPisanio, thou that stand'st so for Posthumus!\nHe hath a drug of mine; I pray his absence\nProceed by swallowing that, for he believes\nIt is a thing most precious. But for her,\nWhere is she gone? Haply, despair hath seized her,\nOr, wing'd with fervor of her love, she's flown\nTo her desired Posthumus: gone she is\nTo death or to dishonour; and my end\nCan make good use of either: she being down,\nI have the placing of the British crown.\nHow now, my son!\n\nCLOTEN:\n'Tis certain she is fled.\nGo in and cheer the king: he rages; none\nDare come about him.\n\nQUEEN:\n\nCLOTEN:\nI love and hate her: for she's fair and royal,\nAnd that she hath all courtly parts more exquisite\nThan lady, ladies, woman; from every one\nThe best she hath, and she, of all compounded,\nOutsells them all; I love her therefore: but\nDisdaining me and throwing favours on\nThe low Posthumus slanders so her judgment\nThat what's else rare is choked; and in that point\nI will conclude to hate her, nay, indeed,\nTo be revenged upon her. For when fools Shall--\nWho is here? What, are you packing, sirrah?\nCome hither: ah, you precious pander! Villain,\nWhere is thy lady? In a word; or else\nThou art straightway with the fiends.\n\nPISANIO:\nO, good my lord!\n\nCLOTEN:\nWhere is thy lady? Or, by Jupiter,--\nI will not ask again. Close villain,\nI'll have this secret from thy heart, or rip\nThy heart to find it. Is she with Posthumus?\nFrom whose so many weights of baseness cannot\nA dram of worth be drawn.\n\nPISANIO:\nAlas, my lord,\nHow can she be with him? When was she missed?\nHe is in Rome.\n\nCLOTEN:\nWhere is she, sir? Come nearer;\nNo further halting: satisfy me home\nWhat is become of her.\n\nPISANIO:\nO, my all-worthy lord!\n\nCLOTEN:\nAll-worthy villain!\nDiscover where thy mistress is at once,\nAt the next word: no more of 'worthy lord!'\nSpeak, or thy silence on the instant is\nThy condemnation and thy death.\n\nPISANIO:\nThen, sir,\nThis paper is the history of my knowledge\nTouching her flight.\n\nCLOTEN:\nLet's see't. I will pursue her\nEven to Augustus' throne.\n\nPISANIO:\n\nCLOTEN:\nHum!\n\nPISANIO:\n\nCLOTEN:\nSirrah, is this letter true?\n\nPISANIO:\nSir, as I think.\n\nCLOTEN:\nIt is Posthumus' hand; I know't. Sirrah, if thou\nwouldst not be a villain, but do me true service,\nundergo those employments wherein I should have\ncause to use thee with a serious industry, that is,\nwhat villany soe'er I bid thee do, to perform it\ndirectly and truly, I would think thee an honest\nman: thou shouldst neither want my means for thy\nrelief nor my voice for thy preferment.\n\nPISANIO:\nWell, my good lord.\n\nCLOTEN:\nWilt thou serve me? for since patiently and\nconstantly thou hast stuck to the bare fortune of\nthat beggar Posthumus, thou canst not, in the\ncourse of gratitude, but be a diligent follower of\nmine: wilt thou serve me?\n\nPISANIO:\nSir, I will.\n\nCLOTEN:\nGive me thy hand; here's my purse. Hast any of thy\nlate master's garments in thy possession?\n\nPISANIO:\nI have, my lord, at my lodging, the same suit he\nwore when he took leave of my lady and mistress.\n\nCLOTEN:\nThe first service thou dost me, fetch that suit\nhither: let it be thy lint service; go.\n\nPISANIO:\nI shall, my lord.\n\nCLOTEN:\nMeet thee at Milford-Haven!--I forgot to ask him one\nthing; I'll remember't anon:--even there, thou\nvillain Posthumus, will I kill thee. I would these\ngarments were come. She said upon a time--the\nbitterness of it I now belch from my heart--that she\nheld the very garment of Posthumus in more respect\nthan my noble and natural person together with the\nadornment of my qualities. With that suit upon my\nback, will I ravish her: first kill him, and in her\neyes; there shall she see my valour, which will then\nbe a torment to her contempt. He on the ground, my\nspeech of insultment ended on his dead body, and\nwhen my lust hath dined,--which, as I say, to vex\nher I will execute in the clothes that she so\npraised,--to the court I'll knock her back, foot\nher home again. She hath despised me rejoicingly,\nand I'll be merry in my revenge.\nBe those the garments?\n\nPISANIO:\nAy, my noble lord.\n\nCLOTEN:\nHow long is't since she went to Milford-Haven?\n\nPISANIO:\nShe can scarce be there yet.\n\nCLOTEN:\nBring this apparel to my chamber; that is the second\nthing that I have commanded thee: the third is,\nthat thou wilt be a voluntary mute to my design. Be\nbut duteous, and true preferment shall tender itself\nto thee. My revenge is now at Milford: would I had\nwings to follow it! Come, and be true.\n\nPISANIO:\nThou bid'st me to my loss: for true to thee\nWere to prove false, which I will never be,\nTo him that is most true. To Milford go,\nAnd find not her whom thou pursuest. Flow, flow,\nYou heavenly blessings, on her! This fool's speed\nBe cross'd with slowness; labour be his meed!\n\nIMOGEN:\nI see a man's life is a tedious one:\nI have tired myself, and for two nights together\nHave made the ground my bed. I should be sick,\nBut that my resolution helps me. Milford,\nWhen from the mountain-top Pisanio show'd thee,\nThou wast within a ken: O Jove! I think\nFoundations fly the wretched; such, I mean,\nWhere they should be relieved. Two beggars told me\nI could not miss my way: will poor folks lie,\nThat have afflictions on them, knowing 'tis\nA punishment or trial? Yes; no wonder,\nWhen rich ones scarce tell true. To lapse in fulness\nIs sorer than to lie for need, and falsehood\nIs worse in kings than beggars. My dear lord!\nThou art one o' the false ones. Now I think on thee,\nMy hunger's gone; but even before, I was\nAt point to sink for food. But what is this?\nHere is a path to't: 'tis some savage hold:\nI were best not to call; I dare not call:\nyet famine,\nEre clean it o'erthrow nature, makes it valiant,\nPlenty and peace breeds cowards: hardness ever\nOf hardiness is mother. Ho! who's here?\nIf any thing that's civil, speak; if savage,\nTake or lend. Ho! No answer? Then I'll enter.\nBest draw my sword: and if mine enemy\nBut fear the sword like me, he'll scarcely look on't.\nSuch a foe, good heavens!\n\nBELARIUS:\nYou, Polydote, have proved best woodman and\nAre master of the feast: Cadwal and I\nWill play the cook and servant; 'tis our match:\nThe sweat of industry would dry and die,\nBut for the end it works to. Come; our stomachs\nWill make what's homely savoury: weariness\nCan snore upon the flint, when resty sloth\nFinds the down pillow hard. Now peace be here,\nPoor house, that keep'st thyself!\n\nGUIDERIUS:\nI am thoroughly weary.\n\nARVIRAGUS:\nI am weak with toil, yet strong in appetite.\n\nGUIDERIUS:\nThere is cold meat i' the cave; we'll browse on that,\nWhilst what we have kill'd be cook'd.\n\nBELARIUS:\n\nGUIDERIUS:\nWhat's the matter, sir?\n\nBELARIUS:\nBy Jupiter, an angel! or, if not,\nAn earthly paragon! Behold divineness\nNo elder than a boy!\n\nIMOGEN:\nGood masters, harm me not:\nBefore I enter'd here, I call'd; and thought\nTo have begg'd or bought what I have took:\ngood troth,\nI have stol'n nought, nor would not, though I had found\nGold strew'd i' the floor. Here's money for my meat:\nI would have left it on the board so soon\nAs I had made my meal, and parted\nWith prayers for the provider.\n\nGUIDERIUS:\nMoney, youth?\n\nARVIRAGUS:\nAll gold and silver rather turn to dirt!\nAs 'tis no better reckon'd, but of those\nWho worship dirty gods.\n\nIMOGEN:\nI see you're angry:\nKnow, if you kill me for my fault, I should\nHave died had I not made it.\n\nBELARIUS:\nWhither bound?\n\nIMOGEN:\nTo Milford-Haven.\n\nBELARIUS:\nWhat's your name?\n\nIMOGEN:\nFidele, sir. I have a kinsman who\nIs bound for Italy; he embark'd at Milford;\nTo whom being going, almost spent with hunger,\nI am fall'n in this offence.\n\nBELARIUS:\nPrithee, fair youth,\nThink us no churls, nor measure our good minds\nBy this rude place we live in. Well encounter'd!\n'Tis almost night: you shall have better cheer\nEre you depart: and thanks to stay and eat it.\nBoys, bid him welcome.\n\nGUIDERIUS:\nWere you a woman, youth,\nI should woo hard but be your groom. In honesty,\nI bid for you as I'd buy.\n\nARVIRAGUS:\nI'll make't my comfort\nHe is a man; I'll love him as my brother:\nAnd such a welcome as I'd give to him\nAfter long absence, such is yours: most welcome!\nBe sprightly, for you fall 'mongst friends.\n\nIMOGEN:\n'Mongst friends,\nIf brothers.\nWould it had been so, that they\nHad been my father's sons! then had my prize\nBeen less, and so more equal ballasting\nTo thee, Posthumus.\n\nBELARIUS:\nHe wrings at some distress.\n\nGUIDERIUS:\nWould I could free't!\n\nARVIRAGUS:\nOr I, whate'er it be,\nWhat pain it cost, what danger. God's!\n\nBELARIUS:\nHark, boys.\n\nIMOGEN:\nGreat men,\nThat had a court no bigger than this cave,\nThat did attend themselves and had the virtue\nWhich their own conscience seal'd them--laying by\nThat nothing-gift of differing multitudes--\nCould not out-peer these twain. Pardon me, gods!\nI'd change my sex to be companion with them,\nSince Leonatus's false.\n\nBELARIUS:\nIt shall be so.\nBoys, we'll go dress our hunt. Fair youth, come in:\nDiscourse is heavy, fasting; when we have supp'd,\nWe'll mannerly demand thee of thy story,\nSo far as thou wilt speak it.\n\nGUIDERIUS:\nPray, draw near.\n\nARVIRAGUS:\nThe night to the owl and morn to the lark\nless welcome.\n\nIMOGEN:\nThanks, sir.\n\nARVIRAGUS:\nI pray, draw near.\n\nFirst Senator:\nThis is the tenor of the emperor's writ:\nThat since the common men are now in action\n'Gainst the Pannonians and Dalmatians,\nAnd that the legions now in Gallia are\nFull weak to undertake our wars against\nThe fall'n-off Britons, that we do incite\nThe gentry to this business. He creates\nLucius preconsul: and to you the tribunes,\nFor this immediate levy, he commends\nHis absolute commission. Long live Caesar!\n\nFirst Tribune:\nIs Lucius general of the forces?\n\nSecond Senator:\nAy.\n\nFirst Tribune:\nRemaining now in Gallia?\n\nFirst Senator:\nWith those legions\nWhich I have spoke of, whereunto your levy\nMust be supplyant: the words of your commission\nWill tie you to the numbers and the time\nOf their dispatch.\n\nFirst Tribune:\nWe will discharge our duty.\n\nCLOTEN:\nI am near to the place where they should meet, if\nPisanio have mapped it truly. How fit his garments\nserve me! Why should his mistress, who was made by\nhim that made the tailor, not be fit too? the\nrather--saving reverence of the word--for 'tis said\na woman's fitness comes by fits. Therein I must\nplay the workman. I dare speak it to myself--for it\nis not vain-glory for a man and his glass to confer\nin his own chamber--I mean, the lines of my body are\nas well drawn as his; no less young, more strong,\nnot beneath him in fortunes, beyond him in the\nadvantage of the time, above him in birth, alike\nconversant in general services, and more remarkable\nin single oppositions: yet this imperceiverant\nthing loves him in my despite. What mortality is!\nPosthumus, thy head, which now is growing upon thy\nshoulders, shall within this hour be off; thy\nmistress enforced; thy garments cut to pieces before\nthy face: and all this done, spurn her home to her\nfather; who may haply be a little angry for my so\nrough usage; but my mother, having power of his\ntestiness, shall turn all into my commendations. My\nhorse is tied up safe: out, sword, and to a sore\npurpose! Fortune, put them into my hand! This is\nthe very description of their meeting-place; and\nthe fellow dares not deceive me.\n\nBELARIUS:\n\nARVIRAGUS:\n\nIMOGEN:\nSo man and man should be;\nBut clay and clay differs in dignity,\nWhose dust is both alike. I am very sick.\n\nGUIDERIUS:\nGo you to hunting; I'll abide with him.\n\nIMOGEN:\nSo sick I am not, yet I am not well;\nBut not so citizen a wanton as\nTo seem to die ere sick: so please you, leave me;\nStick to your journal course: the breach of custom\nIs breach of all. I am ill, but your being by me\nCannot amend me; society is no comfort\nTo one not sociable: I am not very sick,\nSince I can reason of it. Pray you, trust me here:\nI'll rob none but myself; and let me die,\nStealing so poorly.\n\nGUIDERIUS:\nI love thee; I have spoke it\nHow much the quantity, the weight as much,\nAs I do love my father.\n\nBELARIUS:\nWhat! how! how!\n\nARVIRAGUS:\nIf it be sin to say so, I yoke me\nIn my good brother's fault: I know not why\nI love this youth; and I have heard you say,\nLove's reason's without reason: the bier at door,\nAnd a demand who is't shall die, I'd say\n'My father, not this youth.'\n\nBELARIUS:\n\nARVIRAGUS:\nBrother, farewell.\n\nIMOGEN:\nI wish ye sport.\n\nARVIRAGUS:\nYou health. So please you, sir.\n\nIMOGEN:\n\nGUIDERIUS:\nI could not stir him:\nHe said he was gentle, but unfortunate;\nDishonestly afflicted, but yet honest.\n\nARVIRAGUS:\nThus did he answer me: yet said, hereafter\nI might know more.\n\nBELARIUS:\nTo the field, to the field!\nWe'll leave you for this time: go in and rest.\n\nARVIRAGUS:\nWe'll not be long away.\n\nBELARIUS:\nPray, be not sick,\nFor you must be our housewife.\n\nIMOGEN:\nWell or ill,\nI am bound to you.\n\nBELARIUS:\nAnd shalt be ever.\nThis youth, how'er distress'd, appears he hath had\nGood ancestors.\n\nARVIRAGUS:\nHow angel-like he sings!\n\nGUIDERIUS:\nBut his neat cookery! he cut our roots\nIn characters,\nAnd sauced our broths, as Juno had been sick\nAnd he her dieter.\n\nARVIRAGUS:\nNobly he yokes\nA smiling with a sigh, as if the sigh\nWas that it was, for not being such a smile;\nThe smile mocking the sigh, that it would fly\nFrom so divine a temple, to commix\nWith winds that sailors rail at.\n\nGUIDERIUS:\nI do note\nThat grief and patience, rooted in him both,\nMingle their spurs together.\n\nARVIRAGUS:\nGrow, patience!\nAnd let the stinking elder, grief, untwine\nHis perishing root with the increasing vine!\n\nBELARIUS:\nIt is great morning. Come, away!--\nWho's there?\n\nCLOTEN:\nI cannot find those runagates; that villain\nHath mock'd me. I am faint.\n\nBELARIUS:\n'Those runagates!'\nMeans he not us? I partly know him: 'tis\nCloten, the son o' the queen. I fear some ambush.\nI saw him not these many years, and yet\nI know 'tis he. We are held as outlaws: hence!\n\nGUIDERIUS:\nHe is but one: you and my brother search\nWhat companies are near: pray you, away;\nLet me alone with him.\n\nCLOTEN:\nSoft! What are you\nThat fly me thus? some villain mountaineers?\nI have heard of such. What slave art thou?\n\nGUIDERIUS:\nA thing\nMore slavish did I ne'er than answering\nA slave without a knock.\n\nCLOTEN:\nThou art a robber,\nA law-breaker, a villain: yield thee, thief.\n\nGUIDERIUS:\nTo who? to thee? What art thou? Have not I\nAn arm as big as thine? a heart as big?\nThy words, I grant, are bigger, for I wear not\nMy dagger in my mouth. Say what thou art,\nWhy I should yield to thee?\n\nCLOTEN:\nThou villain base,\nKnow'st me not by my clothes?\n\nGUIDERIUS:\nNo, nor thy tailor, rascal,\nWho is thy grandfather: he made those clothes,\nWhich, as it seems, make thee.\n\nCLOTEN:\nThou precious varlet,\nMy tailor made them not.\n\nGUIDERIUS:\nHence, then, and thank\nThe man that gave them thee. Thou art some fool;\nI am loath to beat thee.\n\nCLOTEN:\nThou injurious thief,\nHear but my name, and tremble.\n\nGUIDERIUS:\nWhat's thy name?\n\nCLOTEN:\nCloten, thou villain.\n\nGUIDERIUS:\nCloten, thou double villain, be thy name,\nI cannot tremble at it: were it Toad, or\nAdder, Spider,\n'Twould move me sooner.\n\nCLOTEN:\nTo thy further fear,\nNay, to thy mere confusion, thou shalt know\nI am son to the queen.\n\nGUIDERIUS:\nI am sorry for 't; not seeming\nSo worthy as thy birth.\n\nCLOTEN:\nArt not afeard?\n\nGUIDERIUS:\nThose that I reverence those I fear, the wise:\nAt fools I laugh, not fear them.\n\nCLOTEN:\nDie the death:\nWhen I have slain thee with my proper hand,\nI'll follow those that even now fled hence,\nAnd on the gates of Lud's-town set your heads:\nYield, rustic mountaineer.\n\nBELARIUS:\nNo companies abroad?\n\nARVIRAGUS:\nNone in the world: you did mistake him, sure.\n\nBELARIUS:\nI cannot tell: long is it since I saw him,\nBut time hath nothing blurr'd those lines of favour\nWhich then he wore; the snatches in his voice,\nAnd burst of speaking, were as his: I am absolute\n'Twas very Cloten.\n\nARVIRAGUS:\nIn this place we left them:\nI wish my brother make good time with him,\nYou say he is so fell.\n\nBELARIUS:\nBeing scarce made up,\nI mean, to man, he had not apprehension\nOf roaring terrors; for the effect of judgment\nIs oft the cause of fear. But, see, thy brother.\n\nGUIDERIUS:\nThis Cloten was a fool, an empty purse;\nThere was no money in't: not Hercules\nCould have knock'd out his brains, for he had none:\nYet I not doing this, the fool had borne\nMy head as I do his.\n\nBELARIUS:\nWhat hast thou done?\n\nGUIDERIUS:\nI am perfect what: cut off one Cloten's head,\nSon to the queen, after his own report;\nWho call'd me traitor, mountaineer, and swore\nWith his own single hand he'ld take us in\nDisplace our heads where--thank the gods!--they grow,\nAnd set them on Lud's-town.\n\nBELARIUS:\nWe are all undone.\n\nGUIDERIUS:\nWhy, worthy father, what have we to lose,\nBut that he swore to take, our lives? The law\nProtects not us: then why should we be tender\nTo let an arrogant piece of flesh threat us,\nPlay judge and executioner all himself,\nFor we do fear the law? What company\nDiscover you abroad?\n\nBELARIUS:\nNo single soul\nCan we set eye on; but in all safe reason\nHe must have some attendants. Though his humour\nWas nothing but mutation, ay, and that\nFrom one bad thing to worse; not frenzy, not\nAbsolute madness could so far have raved\nTo bring him here alone; although perhaps\nIt may be heard at court that such as we\nCave here, hunt here, are outlaws, and in time\nMay make some stronger head; the which he hearing--\nAs it is like him--might break out, and swear\nHe'ld fetch us in; yet is't not probable\nTo come alone, either he so undertaking,\nOr they so suffering: then on good ground we fear,\nIf we do fear this body hath a tail\nMore perilous than the head.\n\nARVIRAGUS:\nLet ordinance\nCome as the gods foresay it: howsoe'er,\nMy brother hath done well.\n\nBELARIUS:\nI had no mind\nTo hunt this day: the boy Fidele's sickness\nDid make my way long forth.\n\nGUIDERIUS:\nWith his own sword,\nWhich he did wave against my throat, I have ta'en\nHis head from him: I'll throw't into the creek\nBehind our rock; and let it to the sea,\nAnd tell the fishes he's the queen's son, Cloten:\nThat's all I reck.\n\nBELARIUS:\nI fear 'twill be revenged:\nWould, Polydote, thou hadst not done't! though valour\nBecomes thee well enough.\n\nARVIRAGUS:\nWould I had done't\nSo the revenge alone pursued me! Polydore,\nI love thee brotherly, but envy much\nThou hast robb'd me of this deed: I would revenges,\nThat possible strength might meet, would seek us through\nAnd put us to our answer.\n\nBELARIUS:\nWell, 'tis done:\nWe'll hunt no more to-day, nor seek for danger\nWhere there's no profit. I prithee, to our rock;\nYou and Fidele play the cooks: I'll stay\nTill hasty Polydote return, and bring him\nTo dinner presently.\n\nARVIRAGUS:\nPoor sick Fidele!\nI'll weringly to him: to gain his colour\nI'ld let a parish of such Clotens' blood,\nAnd praise myself for charity.\n\nBELARIUS:\nO thou goddess,\nThou divine Nature, how thyself thou blazon'st\nIn these two princely boys! They are as gentle\nAs zephyrs blowing below the violet,\nNot wagging his sweet head; and yet as rough,\nTheir royal blood enchafed, as the rudest wind,\nThat by the top doth take the mountain pine,\nAnd make him stoop to the vale. 'Tis wonder\nThat an invisible instinct should frame them\nTo royalty unlearn'd, honour untaught,\nCivility not seen from other, valour\nThat wildly grows in them, but yields a crop\nAs if it had been sow'd. Yet still it's strange\nWhat Cloten's being here to us portends,\nOr what his death will bring us.\n\nGUIDERIUS:\nWhere's my brother?\nI have sent Cloten's clotpoll down the stream,\nIn embassy to his mother: his body's hostage\nFor his return.\n\nBELARIUS:\nMy ingenious instrument!\nHark, Polydore, it sounds! But what occasion\nHath Cadwal now to give it motion? Hark!\n\nGUIDERIUS:\nIs he at home?\n\nBELARIUS:\nHe went hence even now.\n\nGUIDERIUS:\nWhat does he mean? since death of my dear'st mother\nit did not speak before. All solemn things\nShould answer solemn accidents. The matter?\nTriumphs for nothing and lamenting toys\nIs jollity for apes and grief for boys.\nIs Cadwal mad?\n\nBELARIUS:\nLook, here he comes,\nAnd brings the dire occasion in his arms\nOf what we blame him for.\n\nARVIRAGUS:\nThe bird is dead\nThat we have made so much on. I had rather\nHave skipp'd from sixteen years of age to sixty,\nTo have turn'd my leaping-time into a crutch,\nThan have seen this.\n\nGUIDERIUS:\nO sweetest, fairest lily!\nMy brother wears thee not the one half so well\nAs when thou grew'st thyself.\n\nBELARIUS:\nO melancholy!\nWho ever yet could sound thy bottom? find\nThe ooze, to show what coast thy sluggish crare\nMight easiliest harbour in? Thou blessed thing!\nJove knows what man thou mightst have made; but I,\nThou diedst, a most rare boy, of melancholy.\nHow found you him?\n\nARVIRAGUS:\nStark, as you see:\nThus smiling, as some fly hid tickled slumber,\nNot as death's dart, being laugh'd at; his\nright cheek\nReposing on a cushion.\n\nGUIDERIUS:\nWhere?\n\nARVIRAGUS:\nO' the floor;\nHis arms thus leagued: I thought he slept, and put\nMy clouted brogues from off my feet, whose rudeness\nAnswer'd my steps too loud.\n\nGUIDERIUS:\nWhy, he but sleeps:\nIf he be gone, he'll make his grave a bed;\nWith female fairies will his tomb be haunted,\nAnd worms will not come to thee.\n\nARVIRAGUS:\nWith fairest flowers\nWhilst summer lasts and I live here, Fidele,\nI'll sweeten thy sad grave: thou shalt not lack\nThe flower that's like thy face, pale primrose, nor\nThe azured harebell, like thy veins, no, nor\nThe leaf of eglantine, whom not to slander,\nOut-sweeten'd not thy breath: the ruddock would,\nWith charitable bill,--O bill, sore-shaming\nThose rich-left heirs that let their fathers lie\nWithout a monument!--bring thee all this;\nYea, and furr'd moss besides, when flowers are none,\nTo winter-ground thy corse.\n\nGUIDERIUS:\nPrithee, have done;\nAnd do not play in wench-like words with that\nWhich is so serious. Let us bury him,\nAnd not protract with admiration what\nIs now due debt. To the grave!\n\nARVIRAGUS:\nSay, where shall's lay him?\n\nGUIDERIUS:\nBy good Euriphile, our mother.\n\nARVIRAGUS:\nBe't so:\nAnd let us, Polydore, though now our voices\nHave got the mannish crack, sing him to the ground,\nAs once our mother; use like note and words,\nSave that Euriphile must be Fidele.\n\nGUIDERIUS:\nCadwal,\nI cannot sing: I'll weep, and word it with thee;\nFor notes of sorrow out of tune are worse\nThan priests and fanes that lie.\n\nARVIRAGUS:\nWe'll speak it, then.\n\nBELARIUS:\nGreat griefs, I see, medicine the less; for Cloten\nIs quite forgot. He was a queen's son, boys;\nAnd though he came our enemy, remember\nHe was paid for that: though mean and\nmighty, rotting\nTogether, have one dust, yet reverence,\nThat angel of the world, doth make distinction\nOf place 'tween high and low. Our foe was princely\nAnd though you took his life, as being our foe,\nYet bury him as a prince.\n\nGUIDERIUS:\nPray You, fetch him hither.\nThersites' body is as good as Ajax',\nWhen neither are alive.\n\nARVIRAGUS:\nIf you'll go fetch him,\nWe'll say our song the whilst. Brother, begin.\n\nGUIDERIUS:\nNay, Cadwal, we must lay his head to the east;\nMy father hath a reason for't.\n\nARVIRAGUS:\n'Tis true.\n\nGUIDERIUS:\nCome on then, and remove him.\n\nARVIRAGUS:\nSo. Begin.\n\nGUIDERIUS:\nFear no more the heat o' the sun,\nNor the furious winter's rages;\nThou thy worldly task hast done,\nHome art gone, and ta'en thy wages:\nGolden lads and girls all must,\nAs chimney-sweepers, come to dust.\n\nARVIRAGUS:\nFear no more the frown o' the great;\nThou art past the tyrant's stroke;\nCare no more to clothe and eat;\nTo thee the reed is as the oak:\nThe sceptre, learning, physic, must\nAll follow this, and come to dust.\n\nGUIDERIUS:\nFear no more the lightning flash,\n\nARVIRAGUS:\nNor the all-dreaded thunder-stone;\n\nGUIDERIUS:\nFear not slander, censure rash;\n\nARVIRAGUS:\nThou hast finish'd joy and moan:\n\nGUIDERIUS:\nAll lovers young, all lovers must\nConsign to thee, and come to dust.\n\nGUIDERIUS:\nNo exorciser harm thee!\n\nARVIRAGUS:\nNor no witchcraft charm thee!\n\nGUIDERIUS:\nGhost unlaid forbear thee!\n\nARVIRAGUS:\nNothing ill come near thee!\n\nGUIDERIUS:\nQuiet consummation have;\nAnd renowned be thy grave!\n\nGUIDERIUS:\nWe have done our obsequies: come, lay him down.\n\nBELARIUS:\nHere's a few flowers; but 'bout midnight, more:\nThe herbs that have on them cold dew o' the night\nAre strewings fitt'st for graves. Upon their faces.\nYou were as flowers, now wither'd: even so\nThese herblets shall, which we upon you strew.\nCome on, away: apart upon our knees.\nThe ground that gave them first has them again:\nTheir pleasures here are past, so is their pain.\n\nIMOGEN:\n\nCaptain:\nTo them the legions garrison'd in Gailia,\nAfter your will, have cross'd the sea, attending\nYou here at Milford-Haven with your ships:\nThey are in readiness.\n\nCAIUS LUCIUS:\nBut what from Rome?\n\nCaptain:\nThe senate hath stirr'd up the confiners\nAnd gentlemen of Italy, most willing spirits,\nThat promise noble service: and they come\nUnder the conduct of bold Iachimo,\nSyenna's brother.\n\nCAIUS LUCIUS:\nWhen expect you them?\n\nCaptain:\nWith the next benefit o' the wind.\n\nCAIUS LUCIUS:\nThis forwardness\nMakes our hopes fair. Command our present numbers\nBe muster'd; bid the captains look to't. Now, sir,\nWhat have you dream'd of late of this war's purpose?\n\nSoothsayer:\nLast night the very gods show'd me a vision--\nI fast and pray'd for their intelligence--thus:\nI saw Jove's bird, the Roman eagle, wing'd\nFrom the spongy south to this part of the west,\nThere vanish'd in the sunbeams: which portends--\nUnless my sins abuse my divination--\nSuccess to the Roman host.\n\nCAIUS LUCIUS:\nDream often so,\nAnd never false. Soft, ho! what trunk is here\nWithout his top? The ruin speaks that sometime\nIt was a worthy building. How! a page!\nOr dead, or sleeping on him? But dead rather;\nFor nature doth abhor to make his bed\nWith the defunct, or sleep upon the dead.\nLet's see the boy's face.\n\nCaptain:\nHe's alive, my lord.\n\nCAIUS LUCIUS:\nHe'll then instruct us of this body. Young one,\nInform us of thy fortunes, for it seems\nThey crave to be demanded. Who is this\nThou makest thy bloody pillow? Or who was he\nThat, otherwise than noble nature did,\nHath alter'd that good picture? What's thy interest\nIn this sad wreck? How came it? Who is it?\nWhat art thou?\n\nIMOGEN:\nI am nothing: or if not,\nNothing to be were better. This was my master,\nA very valiant Briton and a good,\nThat here by mountaineers lies slain. Alas!\nThere is no more such masters: I may wander\nFrom east to occident, cry out for service,\nTry many, all good, serve truly, never\nFind such another master.\n\nCAIUS LUCIUS:\n'Lack, good youth!\nThou movest no less with thy complaining than\nThy master in bleeding: say his name, good friend.\n\nIMOGEN:\nRichard du Champ.\nIf I do lie and do\nNo harm by it, though the gods hear, I hope\nThey'll pardon it.--Say you, sir?\n\nCAIUS LUCIUS:\nThy name?\n\nIMOGEN:\nFidele, sir.\n\nCAIUS LUCIUS:\nThou dost approve thyself the very same:\nThy name well fits thy faith, thy faith thy name.\nWilt take thy chance with me? I will not say\nThou shalt be so well master'd, but, be sure,\nNo less beloved. The Roman emperor's letters,\nSent by a consul to me, should not sooner\nThan thine own worth prefer thee: go with me.\n\nIMOGEN:\nI'll follow, sir. But first, an't please the gods,\nI'll hide my master from the flies, as deep\nAs these poor pickaxes can dig; and when\nWith wild wood-leaves and weeds I ha' strew'd his grave,\nAnd on it said a century of prayers,\nSuch as I can, twice o'er, I'll weep and sigh;\nAnd leaving so his service, follow you,\nSo please you entertain me.\n\nCAIUS LUCIUS:\nAy, good youth!\nAnd rather father thee than master thee.\nMy friends,\nThe boy hath taught us manly duties: let us\nFind out the prettiest daisied plot we can,\nAnd make him with our pikes and partisans\nA grave: come, arm him. Boy, he is preferr'd\nBy thee to us, and he shall be interr'd\nAs soldiers can. Be cheerful; wipe thine eyes\nSome falls are means the happier to arise.\n\nCYMBELINE:\nAgain; and bring me word how 'tis with her.\nA fever with the absence of her son,\nA madness, of which her life's in danger. Heavens,\nHow deeply you at once do touch me! Imogen,\nThe great part of my comfort, gone; my queen\nUpon a desperate bed, and in a time\nWhen fearful wars point at me; her son gone,\nSo needful for this present: it strikes me, past\nThe hope of comfort. But for thee, fellow,\nWho needs must know of her departure and\nDost seem so ignorant, we'll enforce it from thee\nBy a sharp torture.\n\nPISANIO:\nSir, my life is yours;\nI humbly set it at your will; but, for my mistress,\nI nothing know where she remains, why gone,\nNor when she purposes return. Beseech your highness,\nHold me your loyal servant.\n\nFirst Lord:\nGood my liege,\nThe day that she was missing he was here:\nI dare be bound he's true and shall perform\nAll parts of his subjection loyally. For Cloten,\nThere wants no diligence in seeking him,\nAnd will, no doubt, be found.\n\nCYMBELINE:\nThe time is troublesome.\nWe'll slip you for a season; but our jealousy\nDoes yet depend.\n\nFirst Lord:\nSo please your majesty,\nThe Roman legions, all from Gallia drawn,\nAre landed on your coast, with a supply\nOf Roman gentlemen, by the senate sent.\n\nCYMBELINE:\nNow for the counsel of my son and queen!\nI am amazed with matter.\n\nFirst Lord:\nGood my liege,\nYour preparation can affront no less\nThan what you hear of: come more, for more\nyou're ready:\nThe want is but to put those powers in motion\nThat long to move.\n\nCYMBELINE:\nI thank you. Let's withdraw;\nAnd meet the time as it seeks us. We fear not\nWhat can from Italy annoy us; but\nWe grieve at chances here. Away!\n\nPISANIO:\nI heard no letter from my master since\nI wrote him Imogen was slain: 'tis strange:\nNor hear I from my mistress who did promise\nTo yield me often tidings: neither know I\nWhat is betid to Cloten; but remain\nPerplex'd in all. The heavens still must work.\nWherein I am false I am honest; not true, to be true.\nThese present wars shall find I love my country,\nEven to the note o' the king, or I'll fall in them.\nAll other doubts, by time let them be clear'd:\nFortune brings in some boats that are not steer'd.\n\nGUIDERIUS:\nThe noise is round about us.\n\nBELARIUS:\nLet us from it.\n\nARVIRAGUS:\nWhat pleasure, sir, find we in life, to lock it\nFrom action and adventure?\n\nGUIDERIUS:\nNay, what hope\nHave we in hiding us? This way, the Romans\nMust or for Britons slay us, or receive us\nFor barbarous and unnatural revolts\nDuring their use, and slay us after.\n\nBELARIUS:\nSons,\nWe'll higher to the mountains; there secure us.\nTo the king's party there's no going: newness\nOf Cloten's death--we being not known, not muster'd\nAmong the bands--may drive us to a render\nWhere we have lived, and so extort from's that\nWhich we have done, whose answer would be death\nDrawn on with torture.\n\nGUIDERIUS:\nThis is, sir, a doubt\nIn such a time nothing becoming you,\nNor satisfying us.\n\nARVIRAGUS:\nIt is not likely\nThat when they hear the Roman horses neigh,\nBehold their quarter'd fires, have both their eyes\nAnd ears so cloy'd importantly as now,\nThat they will waste their time upon our note,\nTo know from whence we are.\n\nBELARIUS:\nO, I am known\nOf many in the army: many years,\nThough Cloten then but young, you see, not wore him\nFrom my remembrance. And, besides, the king\nHath not deserved my service nor your loves;\nWho find in my exile the want of breeding,\nThe certainty of this hard life; aye hopeless\nTo have the courtesy your cradle promised,\nBut to be still hot summer's tamings and\nThe shrinking slaves of winter.\n\nGUIDERIUS:\nThan be so\nBetter to cease to be. Pray, sir, to the army:\nI and my brother are not known; yourself\nSo out of thought, and thereto so o'ergrown,\nCannot be question'd.\n\nARVIRAGUS:\nBy this sun that shines,\nI'll thither: what thing is it that I never\nDid see man die! scarce ever look'd on blood,\nBut that of coward hares, hot goats, and venison!\nNever bestrid a horse, save one that had\nA rider like myself, who ne'er wore rowel\nNor iron on his heel! I am ashamed\nTo look upon the holy sun, to have\nThe benefit of his blest beams, remaining\nSo long a poor unknown.\n\nGUIDERIUS:\nBy heavens, I'll go:\nIf you will bless me, sir, and give me leave,\nI'll take the better care, but if you will not,\nThe hazard therefore due fall on me by\nThe hands of Romans!\n\nARVIRAGUS:\nSo say I amen.\n\nBELARIUS:\nNo reason I, since of your lives you set\nSo slight a valuation, should reserve\nMy crack'd one to more care. Have with you, boys!\nIf in your country wars you chance to die,\nThat is my bed too, lads, an there I'll lie:\nLead, lead.\nThe time seems long; their blood\nthinks scorn,\nTill it fly out and show them princes born.\n\nPOSTHUMUS LEONATUS:\nYea, bloody cloth, I'll keep thee, for I wish'd\nThou shouldst be colour'd thus. You married ones,\nIf each of you should take this course, how many\nMust murder wives much better than themselves\nFor wrying but a little! O Pisanio!\nEvery good servant does not all commands:\nNo bond but to do just ones. Gods! if you\nShould have ta'en vengeance on my faults, I never\nHad lived to put on this: so had you saved\nThe noble Imogen to repent, and struck\nMe, wretch more worth your vengeance. But, alack,\nYou snatch some hence for little faults; that's love,\nTo have them fall no more: you some permit\nTo second ills with ills, each elder worse,\nAnd make them dread it, to the doers' thrift.\nBut Imogen is your own: do your best wills,\nAnd make me blest to obey! I am brought hither\nAmong the Italian gentry, and to fight\nAgainst my lady's kingdom: 'tis enough\nThat, Britain, I have kill'd thy mistress; peace!\nI'll give no wound to thee. Therefore, good heavens,\nHear patiently my purpose: I'll disrobe me\nOf these Italian weeds and suit myself\nAs does a Briton peasant: so I'll fight\nAgainst the part I come with; so I'll die\nFor thee, O Imogen, even for whom my life\nIs every breath a death; and thus, unknown,\nPitied nor hated, to the face of peril\nMyself I'll dedicate. Let me make men know\nMore valour in me than my habits show.\nGods, put the strength o' the Leonati in me!\nTo shame the guise o' the world, I will begin\nThe fashion, less without and more within.\n\nIACHIMO:\nThe heaviness and guilt within my bosom\nTakes off my manhood: I have belied a lady,\nThe princess of this country, and the air on't\nRevengingly enfeebles me; or could this carl,\nA very drudge of nature's, have subdued me\nIn my profession? Knighthoods and honours, borne\nAs I wear mine, are titles but of scorn.\nIf that thy gentry, Britain, go before\nThis lout as he exceeds our lords, the odds\nIs that we scarce are men and you are gods.\n\nBELARIUS:\nStand, stand! We have the advantage of the ground;\nThe lane is guarded: nothing routs us but\nThe villany of our fears.\n\nGUIDERIUS:\nStand, stand, and fight!\n\nCAIUS LUCIUS:\nAway, boy, from the troops, and save thyself;\nFor friends kill friends, and the disorder's such\nAs war were hoodwink'd.\n\nIACHIMO:\n'Tis their fresh supplies.\n\nCAIUS LUCIUS:\nIt is a day turn'd strangely: or betimes\nLet's reinforce, or fly.\n\nLord:\nCamest thou from where they made the stand?\n\nPOSTHUMUS LEONATUS:\nI did.\nThough you, it seems, come from the fliers.\n\nLord:\nI did.\n\nPOSTHUMUS LEONATUS:\nNo blame be to you, sir; for all was lost,\nBut that the heavens fought: the king himself\nOf his wings destitute, the army broken,\nAnd but the backs of Britons seen, all flying\nThrough a straight lane; the enemy full-hearted,\nLolling the tongue with slaughtering, having work\nMore plentiful than tools to do't, struck down\nSome mortally, some slightly touch'd, some falling\nMerely through fear; that the straight pass was damm'd\nWith dead men hurt behind, and cowards living\nTo die with lengthen'd shame.\n\nLord:\nWhere was this lane?\n\nPOSTHUMUS LEONATUS:\nClose by the battle, ditch'd, and wall'd with turf;\nWhich gave advantage to an ancient soldier,\nAn honest one, I warrant; who deserved\nSo long a breeding as his white beard came to,\nIn doing this for's country: athwart the lane,\nHe, with two striplings-lads more like to run\nThe country base than to commit such slaughter\nWith faces fit for masks, or rather fairer\nThan those for preservation cased, or shame--\nMade good the passage; cried to those that fled,\n'Our Britain s harts die flying, not our men:\nTo darkness fleet souls that fly backwards. Stand;\nOr we are Romans and will give you that\nLike beasts which you shun beastly, and may save,\nBut to look back in frown: stand, stand.'\nThese three,\nThree thousand confident, in act as many--\nFor three performers are the file when all\nThe rest do nothing--with this word 'Stand, stand,'\nAccommodated by the place, more charming\nWith their own nobleness, which could have turn'd\nA distaff to a lance, gilded pale looks,\nPart shame, part spirit renew'd; that some,\nturn'd coward\nBut by example--O, a sin in war,\nDamn'd in the first beginners!--gan to look\nThe way that they did, and to grin like lions\nUpon the pikes o' the hunters. Then began\nA stop i' the chaser, a retire, anon\nA rout, confusion thick; forthwith they fly\nChickens, the way which they stoop'd eagles; slaves,\nThe strides they victors made: and now our cowards,\nLike fragments in hard voyages, became\nThe life o' the need: having found the backdoor open\nOf the unguarded hearts, heavens, how they wound!\nSome slain before; some dying; some their friends\nO'er borne i' the former wave: ten, chased by one,\nAre now each one the slaughter-man of twenty:\nThose that would die or ere resist are grown\nThe mortal bugs o' the field.\n\nLord:\nThis was strange chance\nA narrow lane, an old man, and two boys.\n\nPOSTHUMUS LEONATUS:\nNay, do not wonder at it: you are made\nRather to wonder at the things you hear\nThan to work any. Will you rhyme upon't,\nAnd vent it for a mockery? Here is one:\n'Two boys, an old man twice a boy, a lane,\nPreserved the Britons, was the Romans' bane.'\n\nLord:\nNay, be not angry, sir.\n\nPOSTHUMUS LEONATUS:\n'Lack, to what end?\nWho dares not stand his foe, I'll be his friend;\nFor if he'll do as he is made to do,\nI know he'll quickly fly my friendship too.\nYou have put me into rhyme.\n\nLord:\nFarewell; you're angry.\n\nPOSTHUMUS LEONATUS:\nStill going?\nThis is a lord! O noble misery,\nTo be i' the field, and ask 'what news?' of me!\nTo-day how many would have given their honours\nTo have saved their carcasses! took heel to do't,\nAnd yet died too! I, in mine own woe charm'd,\nCould not find death where I did hear him groan,\nNor feel him where he struck: being an ugly monster,\n'Tis strange he hides him in fresh cups, soft beds,\nSweet words; or hath more ministers than we\nThat draw his knives i' the war. Well, I will find him\nFor being now a favourer to the Briton,\nNo more a Briton, I have resumed again\nThe part I came in: fight I will no more,\nBut yield me to the veriest hind that shall\nOnce touch my shoulder. Great the slaughter is\nHere made by the Roman; great the answer be\nBritons must take. For me, my ransom's death;\nOn either side I come to spend my breath;\nWhich neither here I'll keep nor bear again,\nBut end it by some means for Imogen.\n\nFirst Captain:\nGreat Jupiter be praised! Lucius is taken.\n'Tis thought the old man and his sons were angels.\n\nSecond Captain:\nThere was a fourth man, in a silly habit,\nThat gave the affront with them.\n\nFirst Captain:\nSo 'tis reported:\nBut none of 'em can be found. Stand! who's there?\n\nPOSTHUMUS LEONATUS:\nA Roman,\nWho had not now been drooping here, if seconds\nHad answer'd him.\n\nSecond Captain:\nLay hands on him; a dog!\nA leg of Rome shall not return to tell\nWhat crows have peck'd them here. He brags\nhis service\nAs if he were of note: bring him to the king.\n\nFirst Gaoler:\nYou shall not now be stol'n, you have locks upon you;\nSo graze as you find pasture.\n\nSecond Gaoler:\nAy, or a stomach.\n\nPOSTHUMUS LEONATUS:\nMost welcome, bondage! for thou art away,\nthink, to liberty: yet am I better\nThan one that's sick o' the gout; since he had rather\nGroan so in perpetuity than be cured\nBy the sure physician, death, who is the key\nTo unbar these locks. My conscience, thou art fetter'd\nMore than my shanks and wrists: you good gods, give me\nThe penitent instrument to pick that bolt,\nThen, free for ever! Is't enough I am sorry?\nSo children temporal fathers do appease;\nGods are more full of mercy. Must I repent?\nI cannot do it better than in gyves,\nDesired more than constrain'd: to satisfy,\nIf of my freedom 'tis the main part, take\nNo stricter render of me than my all.\nI know you are more clement than vile men,\nWho of their broken debtors take a third,\nA sixth, a tenth, letting them thrive again\nOn their abatement: that's not my desire:\nFor Imogen's dear life take mine; and though\n'Tis not so dear, yet 'tis a life; you coin'd it:\n'Tween man and man they weigh not every stamp;\nThough light, take pieces for the figure's sake:\nYou rather mine, being yours: and so, great powers,\nIf you will take this audit, take this life,\nAnd cancel these cold bonds. O Imogen!\nI'll speak to thee in silence.\n\nSicilius Leonatus:\nNo more, thou thunder-master, show\nThy spite on mortal flies:\nWith Mars fall out, with Juno chide,\nThat thy adulteries\nRates and revenges.\nHath my poor boy done aught but well,\nWhose face I never saw?\nI died whilst in the womb he stay'd\nAttending nature's law:\nWhose father then, as men report\nThou orphans' father art,\nThou shouldst have been, and shielded him\nFrom this earth-vexing smart.\n\nMother:\nLucina lent not me her aid,\nBut took me in my throes;\nThat from me was Posthumus ript,\nCame crying 'mongst his foes,\nA thing of pity!\n\nSicilius Leonatus:\nGreat nature, like his ancestry,\nMoulded the stuff so fair,\nThat he deserved the praise o' the world,\nAs great Sicilius' heir.\n\nFirst Brother:\nWhen once he was mature for man,\nIn Britain where was he\nThat could stand up his parallel;\nOr fruitful object be\nIn eye of Imogen, that best\nCould deem his dignity?\n\nMother:\nWith marriage wherefore was he mock'd,\nTo be exiled, and thrown\nFrom Leonati seat, and cast\nFrom her his dearest one,\nSweet Imogen?\n\nSicilius Leonatus:\nWhy did you suffer Iachimo,\nSlight thing of Italy,\nTo taint his nobler heart and brain\nWith needless jealosy;\nAnd to become the geck and scorn\nO' th' other's villany?\n\nSecond Brother:\nFor this from stiller seats we came,\nOur parents and us twain,\nThat striking in our country's cause\nFell bravely and were slain,\nOur fealty and Tenantius' right\nWith honour to maintain.\n\nFirst Brother:\nLike hardiment Posthumus hath\nTo Cymbeline perform'd:\nThen, Jupiter, thou king of gods,\nWhy hast thou thus adjourn'd\nThe graces for his merits due,\nBeing all to dolours turn'd?\n\nSicilius Leonatus:\nThy crystal window ope; look out;\nNo longer exercise\nUpon a valiant race thy harsh\nAnd potent injuries.\n\nMother:\nSince, Jupiter, our son is good,\nTake off his miseries.\n\nSicilius Leonatus:\nPeep through thy marble mansion; help;\nOr we poor ghosts will cry\nTo the shining synod of the rest\nAgainst thy deity.\n\nFirst Brother:\nHelp, Jupiter; or we appeal,\nAnd from thy justice fly.\n\nJupiter:\nNo more, you petty spirits of region low,\nOffend our hearing; hush! How dare you ghosts\nAccuse the thunderer, whose bolt, you know,\nSky-planted batters all rebelling coasts?\nPoor shadows of Elysium, hence, and rest\nUpon your never-withering banks of flowers:\nBe not with mortal accidents opprest;\nNo care of yours it is; you know 'tis ours.\nWhom best I love I cross; to make my gift,\nThe more delay'd, delighted. Be content;\nYour low-laid son our godhead will uplift:\nHis comforts thrive, his trials well are spent.\nOur Jovial star reign'd at his birth, and in\nOur temple was he married. Rise, and fade.\nHe shall be lord of lady Imogen,\nAnd happier much by his affliction made.\nThis tablet lay upon his breast, wherein\nOur pleasure his full fortune doth confine:\nand so, away: no further with your din\nExpress impatience, lest you stir up mine.\nMount, eagle, to my palace crystalline.\n\nSicilius Leonatus:\nHe came in thunder; his celestial breath\nWas sulphurous to smell: the holy eagle\nStoop'd as to foot us: his ascension is\nMore sweet than our blest fields: his royal bird\nPrunes the immortal wing and cloys his beak,\nAs when his god is pleased.\n\nAll:\nThanks, Jupiter!\n\nSicilius Leonatus:\nThe marble pavement closes, he is enter'd\nHis radiant root. Away! and, to be blest,\nLet us with care perform his great behest.\n\nPosthumus Leonatus:\n\nFirst Gaoler:\nCome, sir, are you ready for death?\n\nPOSTHUMUS LEONATUS:\nOver-roasted rather; ready long ago.\n\nFirst Gaoler:\nHanging is the word, sir: if\nyou be ready for that, you are well cooked.\n\nPOSTHUMUS LEONATUS:\nSo, if I prove a good repast to the\nspectators, the dish pays the shot.\n\nFirst Gaoler:\nA heavy reckoning for you, sir. But the comfort is,\nyou shall be called to no more payments, fear no\nmore tavern-bills; which are often the sadness of\nparting, as the procuring of mirth: you come in\nflint for want of meat, depart reeling with too\nmuch drink; sorry that you have paid too much, and\nsorry that you are paid too much; purse and brain\nboth empty; the brain the heavier for being too\nlight, the purse too light, being drawn of\nheaviness: of this contradiction you shall now be\nquit. O, the charity of a penny cord! It sums up\nthousands in a trice: you have no true debitor and\ncreditor but it; of what's past, is, and to come,\nthe discharge: your neck, sir, is pen, book and\ncounters; so the acquittance follows.\n\nPOSTHUMUS LEONATUS:\nI am merrier to die than thou art to live.\n\nFirst Gaoler:\nIndeed, sir, he that sleeps feels not the\ntooth-ache: but a man that were to sleep your\nsleep, and a hangman to help him to bed, I think he\nwould change places with his officer; for, look you,\nsir, you know not which way you shall go.\n\nPOSTHUMUS LEONATUS:\nYes, indeed do I, fellow.\n\nFirst Gaoler:\nYour death has eyes in 's head then; I have not seen\nhim so pictured: you must either be directed by\nsome that take upon them to know, or do take upon\nyourself that which I am sure you do not know, or\njump the after inquiry on your own peril: and how\nyou shall speed in your journey's end, I think you'll\nnever return to tell one.\n\nPOSTHUMUS LEONATUS:\nI tell thee, fellow, there are none want eyes to\ndirect them the way I am going, but such as wink and\nwill not use them.\n\nFirst Gaoler:\nWhat an infinite mock is this, that a man should\nhave the best use of eyes to see the way of\nblindness! I am sure hanging's the way of winking.\n\nMessenger:\nKnock off his manacles; bring your prisoner to the king.\n\nPOSTHUMUS LEONATUS:\nThou bring'st good news; I am called to be made free.\n\nFirst Gaoler:\nI'll be hang'd then.\n\nPOSTHUMUS LEONATUS:\nThou shalt be then freer than a gaoler; no bolts for the dead.\n\nFirst Gaoler:\nUnless a man would marry a gallows and beget young\ngibbets, I never saw one so prone. Yet, on my\nconscience, there are verier knaves desire to live,\nfor all he be a Roman: and there be some of them\ntoo that die against their wills; so should I, if I\nwere one. I would we were all of one mind, and one\nmind good; O, there were desolation of gaolers and\ngallowses! I speak against my present profit, but\nmy wish hath a preferment in 't.\n\nCYMBELINE:\nStand by my side, you whom the gods have made\nPreservers of my throne. Woe is my heart\nThat the poor soldier that so richly fought,\nWhose rags shamed gilded arms, whose naked breast\nStepp'd before larges of proof, cannot be found:\nHe shall be happy that can find him, if\nOur grace can make him so.\n\nBELARIUS:\nI never saw\nSuch noble fury in so poor a thing;\nSuch precious deeds in one that promises nought\nBut beggary and poor looks.\n\nCYMBELINE:\nNo tidings of him?\n\nPISANIO:\nHe hath been search'd among the dead and living,\nBut no trace of him.\n\nCYMBELINE:\nTo my grief, I am\nThe heir of his reward;\nwhich I will add\nTo you, the liver, heart and brain of Britain,\nBy whom I grant she lives. 'Tis now the time\nTo ask of whence you are. Report it.\n\nBELARIUS:\nSir,\nIn Cambria are we born, and gentlemen:\nFurther to boast were neither true nor modest,\nUnless I add, we are honest.\n\nCYMBELINE:\nBow your knees.\nArise my knights o' the battle: I create you\nCompanions to our person and will fit you\nWith dignities becoming your estates.\nThere's business in these faces. Why so sadly\nGreet you our victory? you look like Romans,\nAnd not o' the court of Britain.\n\nCORNELIUS:\nHail, great king!\nTo sour your happiness, I must report\nThe queen is dead.\n\nCYMBELINE:\nWho worse than a physician\nWould this report become? But I consider,\nBy medicine life may be prolong'd, yet death\nWill seize the doctor too. How ended she?\n\nCORNELIUS:\nWith horror, madly dying, like her life,\nWhich, being cruel to the world, concluded\nMost cruel to herself. What she confess'd\nI will report, so please you: these her women\nCan trip me, if I err; who with wet cheeks\nWere present when she finish'd.\n\nCYMBELINE:\nPrithee, say.\n\nCORNELIUS:\nFirst, she confess'd she never loved you, only\nAffected greatness got by you, not you:\nMarried your royalty, was wife to your place;\nAbhorr'd your person.\n\nCYMBELINE:\nShe alone knew this;\nAnd, but she spoke it dying, I would not\nBelieve her lips in opening it. Proceed.\n\nCORNELIUS:\nYour daughter, whom she bore in hand to love\nWith such integrity, she did confess\nWas as a scorpion to her sight; whose life,\nBut that her flight prevented it, she had\nTa'en off by poison.\n\nCYMBELINE:\nO most delicate fiend!\nWho is 't can read a woman? Is there more?\n\nCORNELIUS:\nMore, sir, and worse. She did confess she had\nFor you a mortal mineral; which, being took,\nShould by the minute feed on life and lingering\nBy inches waste you: in which time she purposed,\nBy watching, weeping, tendance, kissing, to\nO'ercome you with her show, and in time,\nWhen she had fitted you with her craft, to work\nHer son into the adoption of the crown:\nBut, failing of her end by his strange absence,\nGrew shameless-desperate; open'd, in despite\nOf heaven and men, her purposes; repented\nThe evils she hatch'd were not effected; so\nDespairing died.\n\nCYMBELINE:\nHeard you all this, her women?\n\nFirst Lady:\nWe did, so please your highness.\n\nCYMBELINE:\nMine eyes\nWere not in fault, for she was beautiful;\nMine ears, that heard her flattery; nor my heart,\nThat thought her like her seeming; it had\nbeen vicious\nTo have mistrusted her: yet, O my daughter!\nThat it was folly in me, thou mayst say,\nAnd prove it in thy feeling. Heaven mend all!\nThou comest not, Caius, now for tribute that\nThe Britons have razed out, though with the loss\nOf many a bold one; whose kinsmen have made suit\nThat their good souls may be appeased with slaughter\nOf you their captives, which ourself have granted:\nSo think of your estate.\n\nCAIUS LUCIUS:\nConsider, sir, the chance of war: the day\nWas yours by accident; had it gone with us,\nWe should not, when the blood was cool,\nhave threaten'd\nOur prisoners with the sword. But since the gods\nWill have it thus, that nothing but our lives\nMay be call'd ransom, let it come: sufficeth\nA Roman with a Roman's heart can suffer:\nAugustus lives to think on't: and so much\nFor my peculiar care. This one thing only\nI will entreat; my boy, a Briton born,\nLet him be ransom'd: never master had\nA page so kind, so duteous, diligent,\nSo tender over his occasions, true,\nSo feat, so nurse-like: let his virtue join\nWith my request, which I make bold your highness\nCannot deny; he hath done no Briton harm,\nThough he have served a Roman: save him, sir,\nAnd spare no blood beside.\n\nCYMBELINE:\nI have surely seen him:\nHis favour is familiar to me. Boy,\nThou hast look'd thyself into my grace,\nAnd art mine own. I know not why, wherefore,\nTo say 'live, boy:' ne'er thank thy master; live:\nAnd ask of Cymbeline what boon thou wilt,\nFitting my bounty and thy state, I'll give it;\nYea, though thou do demand a prisoner,\nThe noblest ta'en.\n\nIMOGEN:\nI humbly thank your highness.\n\nCAIUS LUCIUS:\nI do not bid thee beg my life, good lad;\nAnd yet I know thou wilt.\n\nIMOGEN:\nNo, no: alack,\nThere's other work in hand: I see a thing\nBitter to me as death: your life, good master,\nMust shuffle for itself.\n\nCAIUS LUCIUS:\nThe boy disdains me,\nHe leaves me, scorns me: briefly die their joys\nThat place them on the truth of girls and boys.\nWhy stands he so perplex'd?\n\nCYMBELINE:\nWhat wouldst thou, boy?\nI love thee more and more: think more and more\nWhat's best to ask. Know'st him thou look'st on? speak,\nWilt have him live? Is he thy kin? thy friend?\n\nIMOGEN:\nHe is a Roman; no more kin to me\nThan I to your highness; who, being born your vassal,\nAm something nearer.\n\nCYMBELINE:\nWherefore eyest him so?\n\nIMOGEN:\nI'll tell you, sir, in private, if you please\nTo give me hearing.\n\nCYMBELINE:\nAy, with all my heart,\nAnd lend my best attention. What's thy name?\n\nIMOGEN:\nFidele, sir.\n\nCYMBELINE:\nThou'rt my good youth, my page;\nI'll be thy master: walk with me; speak freely.\n\nBELARIUS:\nIs not this boy revived from death?\n\nARVIRAGUS:\nOne sand another\nNot more resembles that sweet rosy lad\nWho died, and was Fidele. What think you?\n\nGUIDERIUS:\nThe same dead thing alive.\n\nBELARIUS:\nPeace, peace! see further; he eyes us not; forbear;\nCreatures may be alike: were 't he, I am sure\nHe would have spoke to us.\n\nGUIDERIUS:\nBut we saw him dead.\n\nBELARIUS:\nBe silent; let's see further.\n\nPISANIO:\n\nCYMBELINE:\nCome, stand thou by our side;\nMake thy demand aloud.\nSir, step you forth;\nGive answer to this boy, and do it freely;\nOr, by our greatness and the grace of it,\nWhich is our honour, bitter torture shall\nWinnow the truth from falsehood. On, speak to him.\n\nIMOGEN:\nMy boon is, that this gentleman may render\nOf whom he had this ring.\n\nPOSTHUMUS LEONATUS:\n\nCYMBELINE:\nThat diamond upon your finger, say\nHow came it yours?\n\nIACHIMO:\nThou'lt torture me to leave unspoken that\nWhich, to be spoke, would torture thee.\n\nCYMBELINE:\nHow! me?\n\nIACHIMO:\nI am glad to be constrain'd to utter that\nWhich torments me to conceal. By villany\nI got this ring: 'twas Leonatus' jewel;\nWhom thou didst banish; and--which more may\ngrieve thee,\nAs it doth me--a nobler sir ne'er lived\n'Twixt sky and ground. Wilt thou hear more, my lord?\n\nCYMBELINE:\nAll that belongs to this.\n\nIACHIMO:\nThat paragon, thy daughter,--\nFor whom my heart drops blood, and my false spirits\nQuail to remember--Give me leave; I faint.\n\nCYMBELINE:\nMy daughter! what of her? Renew thy strength:\nI had rather thou shouldst live while nature will\nThan die ere I hear more: strive, man, and speak.\n\nIACHIMO:\nUpon a time,--unhappy was the clock\nThat struck the hour!--it was in Rome,--accursed\nThe mansion where!--'twas at a feast,--O, would\nOur viands had been poison'd, or at least\nThose which I heaved to head!--the good Posthumus--\nWhat should I say? he was too good to be\nWhere ill men were; and was the best of all\nAmongst the rarest of good ones,--sitting sadly,\nHearing us praise our loves of Italy\nFor beauty that made barren the swell'd boast\nOf him that best could speak, for feature, laming\nThe shrine of Venus, or straight-pight Minerva.\nPostures beyond brief nature, for condition,\nA shop of all the qualities that man\nLoves woman for, besides that hook of wiving,\nFairness which strikes the eye--\n\nCYMBELINE:\nI stand on fire:\nCome to the matter.\n\nIACHIMO:\nAll too soon I shall,\nUnless thou wouldst grieve quickly. This Posthumus,\nMost like a noble lord in love and one\nThat had a royal lover, took his hint;\nAnd, not dispraising whom we praised,--therein\nHe was as calm as virtue--he began\nHis mistress' picture; which by his tongue\nbeing made,\nAnd then a mind put in't, either our brags\nWere crack'd of kitchen-trolls, or his description\nProved us unspeaking sots.\n\nCYMBELINE:\nNay, nay, to the purpose.\n\nIACHIMO:\nYour daughter's chastity--there it begins.\nHe spake of her, as Dian had hot dreams,\nAnd she alone were cold: whereat I, wretch,\nMade scruple of his praise; and wager'd with him\nPieces of gold 'gainst this which then he wore\nUpon his honour'd finger, to attain\nIn suit the place of's bed and win this ring\nBy hers and mine adultery. He, true knight,\nNo lesser of her honour confident\nThan I did truly find her, stakes this ring;\nAnd would so, had it been a carbuncle\nOf Phoebus' wheel, and might so safely, had it\nBeen all the worth of's car. Away to Britain\nPost I in this design: well may you, sir,\nRemember me at court; where I was taught\nOf your chaste daughter the wide difference\n'Twixt amorous and villanous. Being thus quench'd\nOf hope, not longing, mine Italian brain\n'Gan in your duller Britain operate\nMost vilely; for my vantage, excellent:\nAnd, to be brief, my practise so prevail'd,\nThat I return'd with simular proof enough\nTo make the noble Leonatus mad,\nBy wounding his belief in her renown\nWith tokens thus, and thus; averting notes\nOf chamber-hanging, pictures, this her bracelet,--\nO cunning, how I got it!--nay, some marks\nOf secret on her person, that he could not\nBut think her bond of chastity quite crack'd,\nI having ta'en the forfeit. Whereupon--\nMethinks, I see him now--\n\nPOSTHUMUS LEONATUS:\n\nIMOGEN:\nPeace, my lord; hear, hear--\n\nPOSTHUMUS LEONATUS:\nShall's have a play of this? Thou scornful page,\nThere lie thy part.\n\nPISANIO:\nO, gentlemen, help!\nMine and your mistress! O, my lord Posthumus!\nYou ne'er kill'd Imogen til now. Help, help!\nMine honour'd lady!\n\nCYMBELINE:\nDoes the world go round?\n\nPOSTHUMUS LEONATUS:\nHow come these staggers on me?\n\nPISANIO:\nWake, my mistress!\n\nCYMBELINE:\nIf this be so, the gods do mean to strike me\nTo death with mortal joy.\n\nPISANIO:\nHow fares thy mistress?\n\nIMOGEN:\nO, get thee from my sight;\nThou gavest me poison: dangerous fellow, hence!\nBreathe not where princes are.\n\nCYMBELINE:\nThe tune of Imogen!\n\nPISANIO:\nLady,\nThe gods throw stones of sulphur on me, if\nThat box I gave you was not thought by me\nA precious thing: I had it from the queen.\n\nCYMBELINE:\nNew matter still?\n\nIMOGEN:\nIt poison'd me.\n\nCORNELIUS:\nO gods!\nI left out one thing which the queen confess'd.\nWhich must approve thee honest: 'If Pisanio\nHave,' said she, 'given his mistress that confection\nWhich I gave him for cordial, she is served\nAs I would serve a rat.'\n\nCYMBELINE:\nWhat's this, Comelius?\n\nCORNELIUS:\nThe queen, sir, very oft importuned me\nTo temper poisons for her, still pretending\nThe satisfaction of her knowledge only\nIn killing creatures vile, as cats and dogs,\nOf no esteem: I, dreading that her purpose\nWas of more danger, did compound for her\nA certain stuff, which, being ta'en, would cease\nThe present power of life, but in short time\nAll offices of nature should again\nDo their due functions. Have you ta'en of it?\n\nIMOGEN:\nMost like I did, for I was dead.\n\nBELARIUS:\nMy boys,\nThere was our error.\n\nGUIDERIUS:\nThis is, sure, Fidele.\n\nIMOGEN:\nWhy did you throw your wedded lady from you?\nThink that you are upon a rock; and now\nThrow me again.\n\nPOSTHUMUS LEONATUS:\nHang there like a fruit, my soul,\nTill the tree die!\n\nCYMBELINE:\nHow now, my flesh, my child!\nWhat, makest thou me a dullard in this act?\nWilt thou not speak to me?\n\nIMOGEN:\n\nBELARIUS:\n\nCYMBELINE:\nMy tears that fall\nProve holy water on thee! Imogen,\nThy mother's dead.\n\nIMOGEN:\nI am sorry for't, my lord.\n\nCYMBELINE:\nO, she was nought; and long of her it was\nThat we meet here so strangely: but her son\nIs gone, we know not how nor where.\n\nPISANIO:\nMy lord,\nNow fear is from me, I'll speak troth. Lord Cloten,\nUpon my lady's missing, came to me\nWith his sword drawn; foam'd at the mouth, and swore,\nIf I discover'd not which way she was gone,\nIt was my instant death. By accident,\nhad a feigned letter of my master's\nThen in my pocket; which directed him\nTo seek her on the mountains near to Milford;\nWhere, in a frenzy, in my master's garments,\nWhich he enforced from me, away he posts\nWith unchaste purpose and with oath to violate\nMy lady's honour: what became of him\nI further know not.\n\nGUIDERIUS:\nLet me end the story:\nI slew him there.\n\nCYMBELINE:\nMarry, the gods forfend!\nI would not thy good deeds should from my lips\nPluck a bard sentence: prithee, valiant youth,\nDeny't again.\n\nGUIDERIUS:\nI have spoke it, and I did it.\n\nCYMBELINE:\nHe was a prince.\n\nGUIDERIUS:\nA most incivil one: the wrongs he did me\nWere nothing prince-like; for he did provoke me\nWith language that would make me spurn the sea,\nIf it could so roar to me: I cut off's head;\nAnd am right glad he is not standing here\nTo tell this tale of mine.\n\nCYMBELINE:\nI am sorry for thee:\nBy thine own tongue thou art condemn'd, and must\nEndure our law: thou'rt dead.\n\nIMOGEN:\nThat headless man\nI thought had been my lord.\n\nCYMBELINE:\nBind the offender,\nAnd take him from our presence.\n\nBELARIUS:\nStay, sir king:\nThis man is better than the man he slew,\nAs well descended as thyself; and hath\nMore of thee merited than a band of Clotens\nHad ever scar for.\nLet his arms alone;\nThey were not born for bondage.\n\nCYMBELINE:\nWhy, old soldier,\nWilt thou undo the worth thou art unpaid for,\nBy tasting of our wrath? How of descent\nAs good as we?\n\nARVIRAGUS:\nIn that he spake too far.\n\nCYMBELINE:\nAnd thou shalt die for't.\n\nBELARIUS:\nWe will die all three:\nBut I will prove that two on's are as good\nAs I have given out him. My sons, I must,\nFor mine own part, unfold a dangerous speech,\nThough, haply, well for you.\n\nARVIRAGUS:\nYour danger's ours.\n\nGUIDERIUS:\nAnd our good his.\n\nBELARIUS:\nHave at it then, by leave.\nThou hadst, great king, a subject who\nWas call'd Belarius.\n\nCYMBELINE:\nWhat of him? he is\nA banish'd traitor.\n\nBELARIUS:\nHe it is that hath\nAssumed this age; indeed a banish'd man;\nI know not how a traitor.\n\nCYMBELINE:\nTake him hence:\nThe whole world shall not save him.\n\nBELARIUS:\nNot too hot:\nFirst pay me for the nursing of thy sons;\nAnd let it be confiscate all, so soon\nAs I have received it.\n\nCYMBELINE:\nNursing of my sons!\n\nBELARIUS:\nI am too blunt and saucy: here's my knee:\nEre I arise, I will prefer my sons;\nThen spare not the old father. Mighty sir,\nThese two young gentlemen, that call me father\nAnd think they are my sons, are none of mine;\nThey are the issue of your loins, my liege,\nAnd blood of your begetting.\n\nCYMBELINE:\nHow! my issue!\n\nBELARIUS:\nSo sure as you your father's. I, old Morgan,\nAm that Belarius whom you sometime banish'd:\nYour pleasure was my mere offence, my punishment\nItself, and all my treason; that I suffer'd\nWas all the harm I did. These gentle princes--\nFor such and so they are--these twenty years\nHave I train'd up: those arts they have as I\nCould put into them; my breeding was, sir, as\nYour highness knows. Their nurse, Euriphile,\nWhom for the theft I wedded, stole these children\nUpon my banishment: I moved her to't,\nHaving received the punishment before,\nFor that which I did then: beaten for loyalty\nExcited me to treason: their dear loss,\nThe more of you 'twas felt, the more it shaped\nUnto my end of stealing them. But, gracious sir,\nHere are your sons again; and I must lose\nTwo of the sweet'st companions in the world.\nThe benediction of these covering heavens\nFall on their heads like dew! for they are worthy\nTo inlay heaven with stars.\n\nCYMBELINE:\nThou weep'st, and speak'st.\nThe service that you three have done is more\nUnlike than this thou tell'st. I lost my children:\nIf these be they, I know not how to wish\nA pair of worthier sons.\n\nBELARIUS:\nBe pleased awhile.\nThis gentleman, whom I call Polydore,\nMost worthy prince, as yours, is true Guiderius:\nThis gentleman, my Cadwal, Arviragus,\nYour younger princely son; he, sir, was lapp'd\nIn a most curious mantle, wrought by the hand\nOf his queen mother, which for more probation\nI can with ease produce.\n\nCYMBELINE:\nGuiderius had\nUpon his neck a mole, a sanguine star;\nIt was a mark of wonder.\n\nBELARIUS:\nThis is he;\nWho hath upon him still that natural stamp:\nIt was wise nature's end in the donation,\nTo be his evidence now.\n\nCYMBELINE:\nO, what, am I\nA mother to the birth of three? Ne'er mother\nRejoiced deliverance more. Blest pray you be,\nThat, after this strange starting from your orbs,\nmay reign in them now! O Imogen,\nThou hast lost by this a kingdom.\n\nIMOGEN:\nNo, my lord;\nI have got two worlds by 't. O my gentle brothers,\nHave we thus met? O, never say hereafter\nBut I am truest speaker you call'd me brother,\nWhen I was but your sister; I you brothers,\nWhen ye were so indeed.\n\nCYMBELINE:\nDid you e'er meet?\n\nARVIRAGUS:\nAy, my good lord.\n\nGUIDERIUS:\nAnd at first meeting loved;\nContinued so, until we thought he died.\n\nCORNELIUS:\nBy the queen's dram she swallow'd.\n\nCYMBELINE:\nO rare instinct!\nWhen shall I hear all through? This fierce\nabridgement\nHath to it circumstantial branches, which\nDistinction should be rich in. Where? how lived You?\nAnd when came you to serve our Roman captive?\nHow parted with your brothers? how first met them?\nWhy fled you from the court? and whither? These,\nAnd your three motives to the battle, with\nI know not how much more, should be demanded;\nAnd all the other by-dependencies,\nFrom chance to chance: but nor the time nor place\nWill serve our long inter'gatories. See,\nPosthumus anchors upon Imogen,\nAnd she, like harmless lightning, throws her eye\nOn him, her brother, me, her master, hitting\nEach object with a joy: the counterchange\nIs severally in all. Let's quit this ground,\nAnd smoke the temple with our sacrifices.\nThou art my brother; so we'll hold thee ever.\n\nIMOGEN:\nYou are my father too, and did relieve me,\nTo see this gracious season.\n\nCYMBELINE:\nAll o'erjoy'd,\nSave these in bonds: let them be joyful too,\nFor they shall taste our comfort.\n\nIMOGEN:\nMy good master,\nI will yet do you service.\n\nCAIUS LUCIUS:\nHappy be you!\n\nCYMBELINE:\nThe forlorn soldier, that so nobly fought,\nHe would have well becomed this place, and graced\nThe thankings of a king.\n\nPOSTHUMUS LEONATUS:\nI am, sir,\nThe soldier that did company these three\nIn poor beseeming; 'twas a fitment for\nThe purpose I then follow'd. That I was he,\nSpeak, Iachimo: I had you down and might\nHave made you finish.\n\nIACHIMO:\n\nPOSTHUMUS LEONATUS:\nKneel not to me:\nThe power that I have on you is, to spare you;\nThe malice towards you to forgive you: live,\nAnd deal with others better.\n\nCYMBELINE:\nNobly doom'd!\nWe'll learn our freeness of a son-in-law;\nPardon's the word to all.\n\nARVIRAGUS:\nYou holp us, sir,\nAs you did mean indeed to be our brother;\nJoy'd are we that you are.\n\nPOSTHUMUS LEONATUS:\nYour servant, princes. Good my lord of Rome,\nCall forth your soothsayer: as I slept, methought\nGreat Jupiter, upon his eagle back'd,\nAppear'd to me, with other spritely shows\nOf mine own kindred: when I waked, I found\nThis label on my bosom; whose containing\nIs so from sense in hardness, that I can\nMake no collection of it: let him show\nHis skill in the construction.\n\nCAIUS LUCIUS:\nPhilarmonus!\n\nSoothsayer:\nHere, my good lord.\n\nCAIUS LUCIUS:\nRead, and declare the meaning.\n\nSoothsayer:\n\nCYMBELINE:\nThis hath some seeming.\n\nSoothsayer:\nThe lofty cedar, royal Cymbeline,\nPersonates thee: and thy lopp'd branches point\nThy two sons forth; who, by Belarius stol'n,\nFor many years thought dead, are now revived,\nTo the majestic cedar join'd, whose issue\nPromises Britain peace and plenty.\n\nCYMBELINE:\nWell\nMy peace we will begin. And, Caius Lucius,\nAlthough the victor, we submit to Caesar,\nAnd to the Roman empire; promising\nTo pay our wonted tribute, from the which\nWe were dissuaded by our wicked queen;\nWhom heavens, in justice, both on her and hers,\nHave laid most heavy hand.\n\nSoothsayer:\nThe fingers of the powers above do tune\nThe harmony of this peace. The vision\nWhich I made known to Lucius, ere the stroke\nOf this yet scarce-cold battle, at this instant\nIs full accomplish'd; for the Roman eagle,\nFrom south to west on wing soaring aloft,\nLessen'd herself, and in the beams o' the sun\nSo vanish'd: which foreshow'd our princely eagle,\nThe imperial Caesar, should again unite\nHis favour with the radiant Cymbeline,\nWhich shines here in the west.\n\nCYMBELINE:\nLaud we the gods;\nAnd let our crooked smokes climb to their nostrils\nFrom our blest altars. Publish we this peace\nTo all our subjects. Set we forward: let\nA Roman and a British ensign wave\nFriendly together: so through Lud's-town march:\nAnd in the temple of great Jupiter\nOur peace we'll ratify; seal it with feasts.\nSet on there! Never was a war did cease,\nEre bloody hands were wash'd, with such a peace.\n\nSUFFOLK:\nAs by your high imperial majesty\nI had in charge at my depart for France,\nAs procurator to your excellence,\nTo marry Princess Margaret for your grace,\nSo, in the famous ancient city, Tours,\nIn presence of the Kings of France and Sicil,\nThe Dukes of Orleans, Calaber, Bretagne and Alencon,\nSeven earls, twelve barons and twenty reverend bishops,\nI have perform'd my task and was espoused:\nAnd humbly now upon my bended knee,\nIn sight of England and her lordly peers,\nDeliver up my title in the queen\nTo your most gracious hands, that are the substance\nOf that great shadow I did represent;\nThe happiest gift that ever marquess gave,\nThe fairest queen that ever king received.\n\nKING HENRY VI:\nSuffolk, arise. Welcome, Queen Margaret:\nI can express no kinder sign of love\nThan this kind kiss. O Lord, that lends me life,\nLend me a heart replete with thankfulness!\nFor thou hast given me in this beauteous face\nA world of earthly blessings to my soul,\nIf sympathy of love unite our thoughts.\n\nQUEEN MARGARET:\nGreat King of England and my gracious lord,\nThe mutual conference that my mind hath had,\nBy day, by night, waking and in my dreams,\nIn courtly company or at my beads,\nWith you, mine alder-liefest sovereign,\nMakes me the bolder to salute my king\nWith ruder terms, such as my wit affords\nAnd over-joy of heart doth minister.\n\nKING HENRY VI:\nHer sight did ravish; but her grace in speech,\nHer words y-clad with wisdom's majesty,\nMakes me from wondering fall to weeping joys;\nSuch is the fulness of my heart's content.\nLords, with one cheerful voice welcome my love.\n\nALL:\n\nQUEEN MARGARET:\nWe thank you all.\n\nSUFFOLK:\nMy lord protector, so it please your grace,\nHere are the articles of contracted peace\nBetween our sovereign and the French king Charles,\nFor eighteen months concluded by consent.\n\nGLOUCESTER:\n\nKING HENRY VI:\nUncle, how now!\n\nGLOUCESTER:\nPardon me, gracious lord;\nSome sudden qualm hath struck me at the heart\nAnd dimm'd mine eyes, that I can read no further.\n\nKING HENRY VI:\nUncle of Winchester, I pray, read on.\n\nCARDINAL:\n\nKING HENRY VI:\nThey please us well. Lord marquess, kneel down:\nWe here create thee the first duke of Suffolk,\nAnd gird thee with the sword. Cousin of York,\nWe here discharge your grace from being regent\nI' the parts of France, till term of eighteen months\nBe full expired. Thanks, uncle Winchester,\nGloucester, York, Buckingham, Somerset,\nSalisbury, and Warwick;\nWe thank you all for the great favour done,\nIn entertainment to my princely queen.\nCome, let us in, and with all speed provide\nTo see her coronation be perform'd.\n\nGLOUCESTER:\nBrave peers of England, pillars of the state,\nTo you Duke Humphrey must unload his grief,\nYour grief, the common grief of all the land.\nWhat! did my brother Henry spend his youth,\nHis valour, coin and people, in the wars?\nDid he so often lodge in open field,\nIn winter's cold and summer's parching heat,\nTo conquer France, his true inheritance?\nAnd did my brother Bedford toil his wits,\nTo keep by policy what Henry got?\nHave you yourselves, Somerset, Buckingham,\nBrave York, Salisbury, and victorious Warwick,\nReceived deep scars in France and Normandy?\nOr hath mine uncle Beaufort and myself,\nWith all the learned council of the realm,\nStudied so long, sat in the council-house\nEarly and late, debating to and fro\nHow France and Frenchmen might be kept in awe,\nAnd had his highness in his infancy\nCrowned in Paris in despite of foes?\nAnd shall these labours and these honours die?\nShall Henry's conquest, Bedford's vigilance,\nYour deeds of war and all our counsel die?\nO peers of England, shameful is this league!\nFatal this marriage, cancelling your fame,\nBlotting your names from books of memory,\nRazing the characters of your renown,\nDefacing monuments of conquer'd France,\nUndoing all, as all had never been!\n\nCARDINAL:\nNephew, what means this passionate discourse,\nThis peroration with such circumstance?\nFor France, 'tis ours; and we will keep it still.\n\nGLOUCESTER:\nAy, uncle, we will keep it, if we can;\nBut now it is impossible we should:\nSuffolk, the new-made duke that rules the roast,\nHath given the duchy of Anjou and Maine\nUnto the poor King Reignier, whose large style\nAgrees not with the leanness of his purse.\n\nSALISBURY:\nNow, by the death of Him that died for all,\nThese counties were the keys of Normandy.\nBut wherefore weeps Warwick, my valiant son?\n\nWARWICK:\nFor grief that they are past recovery:\nFor, were there hope to conquer them again,\nMy sword should shed hot blood, mine eyes no tears.\nAnjou and Maine! myself did win them both;\nThose provinces these arms of mine did conquer:\nAnd are the cities, that I got with wounds,\nDelivered up again with peaceful words?\nMort Dieu!\n\nYORK:\nFor Suffolk's duke, may he be suffocate,\nThat dims the honour of this warlike isle!\nFrance should have torn and rent my very heart,\nBefore I would have yielded to this league.\nI never read but England's kings have had\nLarge sums of gold and dowries with their wives:\nAnd our King Henry gives away his own,\nTo match with her that brings no vantages.\n\nGLOUCESTER:\nA proper jest, and never heard before,\nThat Suffolk should demand a whole fifteenth\nFor costs and charges in transporting her!\nShe should have stayed in France and starved\nin France, Before--\n\nCARDINAL:\nMy Lord of Gloucester, now ye grow too hot:\nIt was the pleasure of my lord the King.\n\nGLOUCESTER:\nMy Lord of Winchester, I know your mind;\n'Tis not my speeches that you do mislike,\nBut 'tis my presence that doth trouble ye.\nRancour will out: proud prelate, in thy face\nI see thy fury: if I longer stay,\nWe shall begin our ancient bickerings.\nLordings, farewell; and say, when I am gone,\nI prophesied France will be lost ere long.\n\nCARDINAL:\nSo, there goes our protector in a rage.\n'Tis known to you he is mine enemy,\nNay, more, an enemy unto you all,\nAnd no great friend, I fear me, to the king.\nConsider, lords, he is the next of blood,\nAnd heir apparent to the English crown:\nHad Henry got an empire by his marriage,\nAnd all the wealthy kingdoms of the west,\nThere's reason he should be displeased at it.\nLook to it, lords! let not his smoothing words\nBewitch your hearts; be wise and circumspect.\nWhat though the common people favour him,\nCalling him 'Humphrey, the good Duke of\nGloucester,'\nClapping their hands, and crying with loud voice,\n'Jesu maintain your royal excellence!'\nWith 'God preserve the good Duke Humphrey!'\nI fear me, lords, for all this flattering gloss,\nHe will be found a dangerous protector.\n\nBUCKINGHAM:\nWhy should he, then, protect our sovereign,\nHe being of age to govern of himself?\nCousin of Somerset, join you with me,\nAnd all together, with the Duke of Suffolk,\nWe'll quickly hoise Duke Humphrey from his seat.\n\nCARDINAL:\nThis weighty business will not brook delay:\nI'll to the Duke of Suffolk presently.\n\nSOMERSET:\nCousin of Buckingham, though Humphrey's pride\nAnd greatness of his place be grief to us,\nYet let us watch the haughty cardinal:\nHis insolence is more intolerable\nThan all the princes in the land beside:\nIf Gloucester be displaced, he'll be protector.\n\nBUCKINGHAM:\nOr thou or I, Somerset, will be protector,\nDespite Duke Humphrey or the cardinal.\n\nSALISBURY:\nPride went before, ambition follows him.\nWhile these do labour for their own preferment,\nBehoves it us to labour for the realm.\nI never saw but Humphrey Duke of Gloucester\nDid bear him like a noble gentleman.\nOft have I seen the haughty cardinal,\nMore like a soldier than a man o' the church,\nAs stout and proud as he were lord of all,\nSwear like a ruffian and demean himself\nUnlike the ruler of a commonweal.\nWarwick, my son, the comfort of my age,\nThy deeds, thy plainness and thy housekeeping,\nHath won the greatest favour of the commons,\nExcepting none but good Duke Humphrey:\nAnd, brother York, thy acts in Ireland,\nIn bringing them to civil discipline,\nThy late exploits done in the heart of France,\nWhen thou wert regent for our sovereign,\nHave made thee fear'd and honour'd of the people:\nJoin we together, for the public good,\nIn what we can, to bridle and suppress\nThe pride of Suffolk and the cardinal,\nWith Somerset's and Buckingham's ambition;\nAnd, as we may, cherish Duke Humphrey's deeds,\nWhile they do tend the profit of the land.\n\nWARWICK:\nSo God help Warwick, as he loves the land,\nAnd common profit of his country!\n\nYORK:\n\nSALISBURY:\nThen let's make haste away, and look unto the main.\n\nWARWICK:\nUnto the main! O father, Maine is lost;\nThat Maine which by main force Warwick did win,\nAnd would have kept so long as breath did last!\nMain chance, father, you meant; but I meant Maine,\nWhich I will win from France, or else be slain,\n\nYORK:\nAnjou and Maine are given to the French;\nParis is lost; the state of Normandy\nStands on a tickle point, now they are gone:\nSuffolk concluded on the articles,\nThe peers agreed, and Henry was well pleased\nTo change two dukedoms for a duke's fair daughter.\nI cannot blame them all: what is't to them?\n'Tis thine they give away, and not their own.\nPirates may make cheap pennyworths of their pillage\nAnd purchase friends and give to courtezans,\nStill revelling like lords till all be gone;\nWhile as the silly owner of the goods\nWeeps over them and wrings his hapless hands\nAnd shakes his head and trembling stands aloof,\nWhile all is shared and all is borne away,\nReady to starve and dare not touch his own:\nSo York must sit and fret and bite his tongue,\nWhile his own lands are bargain'd for and sold.\nMethinks the realms of England, France and Ireland\nBear that proportion to my flesh and blood\nAs did the fatal brand Althaea burn'd\nUnto the prince's heart of Calydon.\nAnjou and Maine both given unto the French!\nCold news for me, for I had hope of France,\nEven as I have of fertile England's soil.\nA day will come when York shall claim his own;\nAnd therefore I will take the Nevils' parts\nAnd make a show of love to proud Duke Humphrey,\nAnd, when I spy advantage, claim the crown,\nFor that's the golden mark I seek to hit:\nNor shall proud Lancaster usurp my right,\nNor hold the sceptre in his childish fist,\nNor wear the diadem upon his head,\nWhose church-like humours fits not for a crown.\nThen, York, be still awhile, till time do serve:\nWatch thou and wake when others be asleep,\nTo pry into the secrets of the state;\nTill Henry, surfeiting in joys of love,\nWith his new bride and England's dear-bought queen,\nAnd Humphrey with the peers be fall'n at jars:\nThen will I raise aloft the milk-white rose,\nWith whose sweet smell the air shall be perfumed;\nAnd in my standard bear the arms of York\nTo grapple with the house of Lancaster;\nAnd, force perforce, I'll make him yield the crown,\nWhose bookish rule hath pull'd fair England down.\n\nDUCHESS:\nWhy droops my lord, like over-ripen'd corn,\nHanging the head at Ceres' plenteous load?\nWhy doth the great Duke Humphrey knit his brows,\nAs frowning at the favours of the world?\nWhy are thine eyes fixed to the sullen earth,\nGazing on that which seems to dim thy sight?\nWhat seest thou there? King Henry's diadem,\nEnchased with all the honours of the world?\nIf so, gaze on, and grovel on thy face,\nUntil thy head be circled with the same.\nPut forth thy hand, reach at the glorious gold.\nWhat, is't too short? I'll lengthen it with mine:\nAnd, having both together heaved it up,\nWe'll both together lift our heads to heaven,\nAnd never more abase our sight so low\nAs to vouchsafe one glance unto the ground.\n\nGLOUCESTER:\nO Nell, sweet Nell, if thou dost love thy lord,\nBanish the canker of ambitious thoughts.\nAnd may that thought, when I imagine ill\nAgainst my king and nephew, virtuous Henry,\nBe my last breathing in this mortal world!\nMy troublous dream this night doth make me sad.\n\nDUCHESS:\nWhat dream'd my lord? tell me, and I'll requite it\nWith sweet rehearsal of my morning's dream.\n\nGLOUCESTER:\nMethought this staff, mine office-badge in court,\nWas broke in twain; by whom I have forgot,\nBut, as I think, it was by the cardinal;\nAnd on the pieces of the broken wand\nWere placed the heads of Edmund Duke of Somerset,\nAnd William de la Pole, first duke of Suffolk.\nThis was my dream: what it doth bode, God knows.\n\nDUCHESS:\nTut, this was nothing but an argument\nThat he that breaks a stick of Gloucester's grove\nShall lose his head for his presumption.\nBut list to me, my Humphrey, my sweet duke:\nMethought I sat in seat of majesty\nIn the cathedral church of Westminster,\nAnd in that chair where kings and queens are crown'd;\nWhere Henry and dame Margaret kneel'd to me\nAnd on my head did set the diadem.\n\nGLOUCESTER:\nNay, Eleanor, then must I chide outright:\nPresumptuous dame, ill-nurtured Eleanor,\nArt thou not second woman in the realm,\nAnd the protector's wife, beloved of him?\nHast thou not worldly pleasure at command,\nAbove the reach or compass of thy thought?\nAnd wilt thou still be hammering treachery,\nTo tumble down thy husband and thyself\nFrom top of honour to disgrace's feet?\nAway from me, and let me hear no more!\n\nDUCHESS:\nWhat, what, my lord! are you so choleric\nWith Eleanor, for telling but her dream?\nNext time I'll keep my dreams unto myself,\nAnd not be cheque'd.\n\nGLOUCESTER:\nNay, be not angry; I am pleased again.\n\nMessenger:\nMy lord protector, 'tis his highness' pleasure\nYou do prepare to ride unto Saint Alban's,\nWhere as the king and queen do mean to hawk.\n\nGLOUCESTER:\nI go. Come, Nell, thou wilt ride with us?\n\nDUCHESS:\nYes, my good lord, I'll follow presently.\nFollow I must; I cannot go before,\nWhile Gloucester bears this base and humble mind.\nWere I a man, a duke, and next of blood,\nI would remove these tedious stumbling-blocks\nAnd smooth my way upon their headless necks;\nAnd, being a woman, I will not be slack\nTo play my part in Fortune's pageant.\nWhere are you there? Sir John! nay, fear not, man,\nWe are alone; here's none but thee and I.\n\nHUME:\nJesus preserve your royal majesty!\n\nDUCHESS:\nWhat say'st thou? majesty! I am but grace.\n\nHUME:\nBut, by the grace of God, and Hume's advice,\nYour grace's title shall be multiplied.\n\nDUCHESS:\nWhat say'st thou, man? hast thou as yet conferr'd\nWith Margery Jourdain, the cunning witch,\nWith Roger Bolingbroke, the conjurer?\nAnd will they undertake to do me good?\n\nHUME:\nThis they have promised, to show your highness\nA spirit raised from depth of under-ground,\nThat shall make answer to such questions\nAs by your grace shall be propounded him.\n\nDUCHESS:\nIt is enough; I'll think upon the questions:\nWhen from St. Alban's we do make return,\nWe'll see these things effected to the full.\nHere, Hume, take this reward; make merry, man,\nWith thy confederates in this weighty cause.\n\nHUME:\nHume must make merry with the duchess' gold;\nMarry, and shall. But how now, Sir John Hume!\nSeal up your lips, and give no words but mum:\nThe business asketh silent secrecy.\nDame Eleanor gives gold to bring the witch:\nGold cannot come amiss, were she a devil.\nYet have I gold flies from another coast;\nI dare not say, from the rich cardinal\nAnd from the great and new-made Duke of Suffolk,\nYet I do find it so; for to be plain,\nThey, knowing Dame Eleanor's aspiring humour,\nHave hired me to undermine the duchess\nAnd buz these conjurations in her brain.\nThey say 'A crafty knave does need no broker;'\nYet am I Suffolk and the cardinal's broker.\nHume, if you take not heed, you shall go near\nTo call them both a pair of crafty knaves.\nWell, so it stands; and thus, I fear, at last\nHume's knavery will be the duchess' wreck,\nAnd her attainture will be Humphrey's fall:\nSort how it will, I shall have gold for all.\n\nFirst Petitioner:\nMy masters, let's stand close: my lord protector\nwill come this way by and by, and then we may deliver\nour supplications in the quill.\n\nSecond Petitioner:\nMarry, the Lord protect him, for he's a good man!\nJesu bless him!\n\nPETER:\nHere a' comes, methinks, and the queen with him.\nI'll be the first, sure.\n\nSecond Petitioner:\nCome back, fool; this is the Duke of Suffolk, and\nnot my lord protector.\n\nSUFFOLK:\nHow now, fellow! would'st anything with me?\n\nFirst Petitioner:\nI pray, my lord, pardon me; I took ye for my lord\nprotector.\n\nQUEEN MARGARET:\n\nFirst Petitioner:\nMine is, an't please your grace, against John\nGoodman, my lord cardinal's man, for keeping my\nhouse, and lands, and wife and all, from me.\n\nSUFFOLK:\nThy wife, too! that's some wrong, indeed. What's\nyours? What's here!\n'Against the Duke of Suffolk, for enclosing the\ncommons of Melford.' How now, sir knave!\n\nSecond Petitioner:\nAlas, sir, I am but a poor petitioner of our whole township.\n\nPETER:\n\nQUEEN MARGARET:\nWhat sayst thou? did the Duke of York say he was\nrightful heir to the crown?\n\nPETER:\nThat my master was? no, forsooth: my master said\nthat he was, and that the king was an usurper.\n\nSUFFOLK:\nWho is there?\nTake this fellow in, and send for\nhis master with a pursuivant presently: we'll hear\nmore of your matter before the King.\n\nQUEEN MARGARET:\nAnd as for you, that love to be protected\nUnder the wings of our protector's grace,\nBegin your suits anew, and sue to him.\nAway, base cullions! Suffolk, let them go.\n\nALL:\nCome, let's be gone.\n\nQUEEN MARGARET:\nMy Lord of Suffolk, say, is this the guise,\nIs this the fashion in the court of England?\nIs this the government of Britain's isle,\nAnd this the royalty of Albion's king?\nWhat shall King Henry be a pupil still\nUnder the surly Gloucester's governance?\nAm I a queen in title and in style,\nAnd must be made a subject to a duke?\nI tell thee, Pole, when in the city Tours\nThou ran'st a tilt in honour of my love\nAnd stolest away the ladies' hearts of France,\nI thought King Henry had resembled thee\nIn courage, courtship and proportion:\nBut all his mind is bent to holiness,\nTo number Ave-Maries on his beads;\nHis champions are the prophets and apostles,\nHis weapons holy saws of sacred writ,\nHis study is his tilt-yard, and his loves\nAre brazen images of canonized saints.\nI would the college of the cardinals\nWould choose him pope, and carry him to Rome,\nAnd set the triple crown upon his head:\nThat were a state fit for his holiness.\n\nSUFFOLK:\nMadam, be patient: as I was cause\nYour highness came to England, so will I\nIn England work your grace's full content.\n\nQUEEN MARGARET:\nBeside the haughty protector, have we Beaufort,\nThe imperious churchman, Somerset, Buckingham,\nAnd grumbling York: and not the least of these\nBut can do more in England than the king.\n\nSUFFOLK:\nAnd he of these that can do most of all\nCannot do more in England than the Nevils:\nSalisbury and Warwick are no simple peers.\n\nQUEEN MARGARET:\nNot all these lords do vex me half so much\nAs that proud dame, the lord protector's wife.\nShe sweeps it through the court with troops of ladies,\nMore like an empress than Duke Humphrey's wife:\nStrangers in court do take her for the queen:\nShe bears a duke's revenues on her back,\nAnd in her heart she scorns our poverty:\nShall I not live to be avenged on her?\nContemptuous base-born callet as she is,\nShe vaunted 'mongst her minions t'other day,\nThe very train of her worst wearing gown\nWas better worth than all my father's lands,\nTill Suffolk gave two dukedoms for his daughter.\n\nSUFFOLK:\nMadam, myself have limed a bush for her,\nAnd placed a quire of such enticing birds,\nThat she will light to listen to the lays,\nAnd never mount to trouble you again.\nSo, let her rest: and, madam, list to me;\nFor I am bold to counsel you in this.\nAlthough we fancy not the cardinal,\nYet must we join with him and with the lords,\nTill we have brought Duke Humphrey in disgrace.\nAs for the Duke of York, this late complaint\nWill make but little for his benefit.\nSo, one by one, we'll weed them all at last,\nAnd you yourself shall steer the happy helm.\n\nKING HENRY VI:\nFor my part, noble lords, I care not which;\nOr Somerset or York, all's one to me.\n\nYORK:\nIf York have ill demean'd himself in France,\nThen let him be denay'd the regentship.\n\nSOMERSET:\nIf Somerset be unworthy of the place,\nLet York be regent; I will yield to him.\n\nWARWICK:\nWhether your grace be worthy, yea or no,\nDispute not that: York is the worthier.\n\nCARDINAL:\nAmbitious Warwick, let thy betters speak.\n\nWARWICK:\nThe cardinal's not my better in the field.\n\nBUCKINGHAM:\nAll in this presence are thy betters, Warwick.\n\nWARWICK:\nWarwick may live to be the best of all.\n\nSALISBURY:\nPeace, son! and show some reason, Buckingham,\nWhy Somerset should be preferred in this.\n\nQUEEN MARGARET:\nBecause the king, forsooth, will have it so.\n\nGLOUCESTER:\nMadam, the king is old enough himself\nTo give his censure: these are no women's matters.\n\nQUEEN MARGARET:\nIf he be old enough, what needs your grace\nTo be protector of his excellence?\n\nGLOUCESTER:\nMadam, I am protector of the realm;\nAnd, at his pleasure, will resign my place.\n\nSUFFOLK:\nResign it then and leave thine insolence.\nSince thou wert king--as who is king but thou?--\nThe commonwealth hath daily run to wreck;\nThe Dauphin hath prevail'd beyond the seas;\nAnd all the peers and nobles of the realm\nHave been as bondmen to thy sovereignty.\n\nCARDINAL:\nThe commons hast thou rack'd; the clergy's bags\nAre lank and lean with thy extortions.\n\nSOMERSET:\nThy sumptuous buildings and thy wife's attire\nHave cost a mass of public treasury.\n\nBUCKINGHAM:\nThy cruelty in execution\nUpon offenders, hath exceeded law,\nAnd left thee to the mercy of the law.\n\nQUEEN MARGARET:\nThey sale of offices and towns in France,\nIf they were known, as the suspect is great,\nWould make thee quickly hop without thy head.\nGive me my fan: what, minion! can ye not?\nI cry you mercy, madam; was it you?\n\nDUCHESS:\nWas't I! yea, I it was, proud Frenchwoman:\nCould I come near your beauty with my nails,\nI'd set my ten commandments in your face.\n\nKING HENRY VI:\nSweet aunt, be quiet; 'twas against her will.\n\nDUCHESS:\nAgainst her will! good king, look to't in time;\nShe'll hamper thee, and dandle thee like a baby:\nThough in this place most master wear no breeches,\nShe shall not strike Dame Eleanor unrevenged.\n\nBUCKINGHAM:\nLord cardinal, I will follow Eleanor,\nAnd listen after Humphrey, how he proceeds:\nShe's tickled now; her fume needs no spurs,\nShe'll gallop far enough to her destruction.\n\nGLOUCESTER:\nNow, lords, my choler being over-blown\nWith walking once about the quadrangle,\nI come to talk of commonwealth affairs.\nAs for your spiteful false objections,\nProve them, and I lie open to the law:\nBut God in mercy so deal with my soul,\nAs I in duty love my king and country!\nBut, to the matter that we have in hand:\nI say, my sovereign, York is meetest man\nTo be your regent in the realm of France.\n\nSUFFOLK:\nBefore we make election, give me leave\nTo show some reason, of no little force,\nThat York is most unmeet of any man.\n\nYORK:\nI'll tell thee, Suffolk, why I am unmeet:\nFirst, for I cannot flatter thee in pride;\nNext, if I be appointed for the place,\nMy Lord of Somerset will keep me here,\nWithout discharge, money, or furniture,\nTill France be won into the Dauphin's hands:\nLast time, I danced attendance on his will\nTill Paris was besieged, famish'd, and lost.\n\nWARWICK:\nThat can I witness; and a fouler fact\nDid never traitor in the land commit.\n\nSUFFOLK:\nPeace, headstrong Warwick!\n\nWARWICK:\nImage of pride, why should I hold my peace?\n\nSUFFOLK:\nBecause here is a man accused of treason:\nPray God the Duke of York excuse himself!\n\nYORK:\nDoth any one accuse York for a traitor?\n\nKING HENRY VI:\nWhat mean'st thou, Suffolk; tell me, what are these?\n\nSUFFOLK:\nPlease it your majesty, this is the man\nThat doth accuse his master of high treason:\nHis words were these: that Richard, Duke of York,\nWas rightful heir unto the English crown\nAnd that your majesty was a usurper.\n\nKING HENRY VI:\nSay, man, were these thy words?\n\nHORNER:\nAn't shall please your majesty, I never said nor\nthought any such matter: God is my witness, I am\nfalsely accused by the villain.\n\nPETER:\nBy these ten bones, my lords, he did speak them to\nme in the garret one night, as we were scouring my\nLord of York's armour.\n\nYORK:\nBase dunghill villain and mechanical,\nI'll have thy head for this thy traitor's speech.\nI do beseech your royal majesty,\nLet him have all the rigor of the law.\n\nHORNER:\nAlas, my lord, hang me, if ever I spake the words.\nMy accuser is my 'prentice; and when I did correct\nhim for his fault the other day, he did vow upon his\nknees he would be even with me: I have good\nwitness of this: therefore I beseech your majesty,\ndo not cast away an honest man for a villain's\naccusation.\n\nKING HENRY VI:\nUncle, what shall we say to this in law?\n\nGLOUCESTER:\nThis doom, my lord, if I may judge:\nLet Somerset be regent over the French,\nBecause in York this breeds suspicion:\nAnd let these have a day appointed them\nFor single combat in convenient place,\nFor he hath witness of his servant's malice:\nThis is the law, and this Duke Humphrey's doom.\n\nSOMERSET:\nI humbly thank your royal majesty.\n\nHORNER:\nAnd I accept the combat willingly.\n\nPETER:\nAlas, my lord, I cannot fight; for God's sake, pity\nmy case. The spite of man prevaileth against me. O\nLord, have mercy upon me! I shall never be able to\nfight a blow. O Lord, my heart!\n\nGLOUCESTER:\nSirrah, or you must fight, or else be hang'd.\n\nKING HENRY VI:\nAway with them to prison; and the day of combat\nshall be the last of the next month. Come,\nSomerset, we'll see thee sent away.\n\nHUME:\nCome, my masters; the duchess, I tell you, expects\nperformance of your promises.\n\nBOLINGBROKE:\nMaster Hume, we are therefore provided: will her\nladyship behold and hear our exorcisms?\n\nHUME:\nAy, what else? fear you not her courage.\n\nBOLINGBROKE:\nI have heard her reported to be a woman of an\ninvincible spirit: but it shall be convenient,\nMaster Hume, that you be by her aloft, while we be\nbusy below; and so, I pray you, go, in God's name,\nand leave us.\nMother Jourdain, be you\nprostrate and grovel on the earth; John Southwell,\nread you; and let us to our work.\n\nDUCHESS:\nWell said, my masters; and welcome all. To this\ngear the sooner the better.\n\nBOLINGBROKE:\nPatience, good lady; wizards know their times:\nDeep night, dark night, the silent of the night,\nThe time of night when Troy was set on fire;\nThe time when screech-owls cry and ban-dogs howl,\nAnd spirits walk and ghosts break up their graves,\nThat time best fits the work we have in hand.\nMadam, sit you and fear not: whom we raise,\nWe will make fast within a hallow'd verge.\n\nSpirit:\nAdsum.\n\nMARGARET JOURDAIN:\nAsmath,\nBy the eternal God, whose name and power\nThou tremblest at, answer that I shall ask;\nFor, till thou speak, thou shalt not pass from hence.\n\nSpirit:\nAsk what thou wilt. That I had said and done!\n\nBOLINGBROKE:\n'First of the king: what shall of him become?'\n\nSpirit:\nThe duke yet lives that Henry shall depose;\nBut him outlive, and die a violent death.\n\nBOLINGBROKE:\n'What fates await the Duke of Suffolk?'\n\nSpirit:\nBy water shall he die, and take his end.\n\nBOLINGBROKE:\n'What shall befall the Duke of Somerset?'\n\nSpirit:\nLet him shun castles;\nSafer shall he be upon the sandy plains\nThan where castles mounted stand.\nHave done, for more I hardly can endure.\n\nBOLINGBROKE:\nDescend to darkness and the burning lake!\nFalse fiend, avoid!\n\nYORK:\nLay hands upon these traitors and their trash.\nBeldam, I think we watch'd you at an inch.\nWhat, madam, are you there? the king and commonweal\nAre deeply indebted for this piece of pains:\nMy lord protector will, I doubt it not,\nSee you well guerdon'd for these good deserts.\n\nDUCHESS:\nNot half so bad as thine to England's king,\nInjurious duke, that threatest where's no cause.\n\nBUCKINGHAM:\nTrue, madam, none at all: what call you this?\nAway with them! let them be clapp'd up close.\nAnd kept asunder. You, madam, shall with us.\nStafford, take her to thee.\nWe'll see your trinkets here all forthcoming.\nAll, away!\n\nYORK:\nLord Buckingham, methinks, you watch'd her well:\nA pretty plot, well chosen to build upon!\nNow, pray, my lord, let's see the devil's writ.\nWhat have we here?\n'The duke yet lives, that Henry shall depose;\nBut him outlive, and die a violent death.'\nWhy, this is just\n'Aio te, AEacida, Romanos vincere posse.'\nWell, to the rest:\n'Tell me what fate awaits the Duke of Suffolk?\nBy water shall he die, and take his end.\nWhat shall betide the Duke of Somerset?\nLet him shun castles;\nSafer shall he be upon the sandy plains\nThan where castles mounted stand.'\nCome, come, my lords;\nThese oracles are hardly attain'd,\nAnd hardly understood.\nThe king is now in progress towards Saint Alban's,\nWith him the husband of this lovely lady:\nThither go these news, as fast as horse can\ncarry them:\nA sorry breakfast for my lord protector.\n\nBUCKINGHAM:\nYour grace shall give me leave, my Lord of York,\nTo be the post, in hope of his reward.\n\nYORK:\nAt your pleasure, my good lord. Who's within\nthere, ho!\nInvite my Lords of Salisbury and Warwick\nTo sup with me to-morrow night. Away!\n\nQUEEN MARGARET:\nBelieve me, lords, for flying at the brook,\nI saw not better sport these seven years' day:\nYet, by your leave, the wind was very high;\nAnd, ten to one, old Joan had not gone out.\n\nKING HENRY VI:\nBut what a point, my lord, your falcon made,\nAnd what a pitch she flew above the rest!\nTo see how God in all his creatures works!\nYea, man and birds are fain of climbing high.\n\nSUFFOLK:\nNo marvel, an it like your majesty,\nMy lord protector's hawks do tower so well;\nThey know their master loves to be aloft,\nAnd bears his thoughts above his falcon's pitch.\n\nGLOUCESTER:\nMy lord, 'tis but a base ignoble mind\nThat mounts no higher than a bird can soar.\n\nCARDINAL:\nI thought as much; he would be above the clouds.\n\nGLOUCESTER:\nAy, my lord cardinal? how think you by that?\nWere it not good your grace could fly to heaven?\n\nKING HENRY VI:\nThe treasury of everlasting joy.\n\nCARDINAL:\nThy heaven is on earth; thine eyes and thoughts\nBeat on a crown, the treasure of thy heart;\nPernicious protector, dangerous peer,\nThat smooth'st it so with king and commonweal!\n\nGLOUCESTER:\nWhat, cardinal, is your priesthood grown peremptory?\nTantaene animis coelestibus irae?\nChurchmen so hot? good uncle, hide such malice;\nWith such holiness can you do it?\n\nSUFFOLK:\nNo malice, sir; no more than well becomes\nSo good a quarrel and so bad a peer.\n\nGLOUCESTER:\nAs who, my lord?\n\nSUFFOLK:\nWhy, as you, my lord,\nAn't like your lordly lord-protectorship.\n\nGLOUCESTER:\nWhy, Suffolk, England knows thine insolence.\n\nQUEEN MARGARET:\nAnd thy ambition, Gloucester.\n\nKING HENRY VI:\nI prithee, peace, good queen,\nAnd whet not on these furious peers;\nFor blessed are the peacemakers on earth.\n\nCARDINAL:\nLet me be blessed for the peace I make,\nAgainst this proud protector, with my sword!\n\nGLOUCESTER:\n\nCARDINAL:\n\nGLOUCESTER:\n\nCARDINAL:\n\nKING HENRY VI:\nHow now, my lords!\n\nCARDINAL:\nBelieve me, cousin Gloucester,\nHad not your man put up the fowl so suddenly,\nWe had had more sport.\nCome with thy two-hand sword.\n\nGLOUCESTER:\nTrue, uncle.\n\nCARDINAL:\n\nGLOUCESTER:\n\nKING HENRY VI:\nWhy, how now, uncle Gloucester!\n\nGLOUCESTER:\nTalking of hawking; nothing else, my lord.\nNow, by God's mother, priest, I'll shave your crown for this,\nOr all my fence shall fail.\n\nCARDINAL:\n\nKING HENRY VI:\nThe winds grow high; so do your stomachs, lords.\nHow irksome is this music to my heart!\nWhen such strings jar, what hope of harmony?\nI pray, my lords, let me compound this strife.\n\nGLOUCESTER:\nWhat means this noise?\nFellow, what miracle dost thou proclaim?\n\nTownsman:\nA miracle! a miracle!\n\nSUFFOLK:\nCome to the king and tell him what miracle.\n\nTownsman:\nForsooth, a blind man at Saint Alban's shrine,\nWithin this half-hour, hath received his sight;\nA man that ne'er saw in his life before.\n\nKING HENRY VI:\nNow, God be praised, that to believing souls\nGives light in darkness, comfort in despair!\n\nCARDINAL:\nHere comes the townsmen on procession,\nTo present your highness with the man.\n\nKING HENRY VI:\nGreat is his comfort in this earthly vale,\nAlthough by his sight his sin be multiplied.\n\nGLOUCESTER:\nStand by, my masters: bring him near the king;\nHis highness' pleasure is to talk with him.\n\nKING HENRY VI:\nGood fellow, tell us here the circumstance,\nThat we for thee may glorify the Lord.\nWhat, hast thou been long blind and now restored?\n\nSIMPCOX:\nBorn blind, an't please your grace.\n\nWife:\nAy, indeed, was he.\n\nSUFFOLK:\nWhat woman is this?\n\nWife:\nHis wife, an't like your worship.\n\nGLOUCESTER:\nHadst thou been his mother, thou couldst have\nbetter told.\n\nKING HENRY VI:\nWhere wert thou born?\n\nSIMPCOX:\nAt Berwick in the north, an't like your grace.\n\nKING HENRY VI:\nPoor soul, God's goodness hath been great to thee:\nLet never day nor night unhallow'd pass,\nBut still remember what the Lord hath done.\n\nQUEEN MARGARET:\nTell me, good fellow, camest thou here by chance,\nOr of devotion, to this holy shrine?\n\nSIMPCOX:\nGod knows, of pure devotion; being call'd\nA hundred times and oftener, in my sleep,\nBy good Saint Alban; who said, 'Simpcox, come,\nCome, offer at my shrine, and I will help thee.'\n\nWife:\nMost true, forsooth; and many time and oft\nMyself have heard a voice to call him so.\n\nCARDINAL:\nWhat, art thou lame?\n\nSIMPCOX:\nAy, God Almighty help me!\n\nSUFFOLK:\nHow camest thou so?\n\nSIMPCOX:\nA fall off of a tree.\n\nWife:\nA plum-tree, master.\n\nGLOUCESTER:\nHow long hast thou been blind?\n\nSIMPCOX:\nBorn so, master.\n\nGLOUCESTER:\nWhat, and wouldst climb a tree?\n\nSIMPCOX:\nBut that in all my life, when I was a youth.\n\nWife:\nToo true; and bought his climbing very dear.\n\nGLOUCESTER:\nMass, thou lovedst plums well, that wouldst\nventure so.\n\nSIMPCOX:\nAlas, good master, my wife desired some damsons,\nAnd made me climb, with danger of my life.\n\nGLOUCESTER:\nA subtle knave! but yet it shall not serve.\nLet me see thine eyes: wink now: now open them:\nIn my opinion yet thou seest not well.\n\nSIMPCOX:\nYes, master, clear as day, I thank God and\nSaint Alban.\n\nGLOUCESTER:\nSay'st thou me so? What colour is this cloak of?\n\nSIMPCOX:\nRed, master; red as blood.\n\nGLOUCESTER:\nWhy, that's well said. What colour is my gown of?\n\nSIMPCOX:\nBlack, forsooth: coal-black as jet.\n\nKING HENRY VI:\nWhy, then, thou know'st what colour jet is of?\n\nSUFFOLK:\nAnd yet, I think, jet did he never see.\n\nGLOUCESTER:\nBut cloaks and gowns, before this day, a many.\n\nWife:\nNever, before this day, in all his life.\n\nGLOUCESTER:\nTell me, sirrah, what's my name?\n\nSIMPCOX:\nAlas, master, I know not.\n\nGLOUCESTER:\nWhat's his name?\n\nSIMPCOX:\nI know not.\n\nGLOUCESTER:\nNor his?\n\nSIMPCOX:\nNo, indeed, master.\n\nGLOUCESTER:\nWhat's thine own name?\n\nSIMPCOX:\nSaunder Simpcox, an if it please you, master.\n\nGLOUCESTER:\nThen, Saunder, sit there, the lyingest knave in\nChristendom. If thou hadst been born blind, thou\nmightest as well have known all our names as thus to\nname the several colours we do wear. Sight may\ndistinguish of colours, but suddenly to nominate them\nall, it is impossible. My lords, Saint Alban here\nhath done a miracle; and would ye not think his\ncunning to be great, that could restore this cripple\nto his legs again?\n\nSIMPCOX:\nO master, that you could!\n\nGLOUCESTER:\nMy masters of Saint Alban's, have you not beadles in\nyour town, and things called whips?\n\nMayor:\nYes, my lord, if it please your grace.\n\nGLOUCESTER:\nThen send for one presently.\n\nMayor:\nSirrah, go fetch the beadle hither straight.\n\nGLOUCESTER:\nNow fetch me a stool hither by and by. Now, sirrah,\nif you mean to save yourself from whipping, leap me\nover this stool and run away.\n\nSIMPCOX:\nAlas, master, I am not able to stand alone:\nYou go about to torture me in vain.\n\nGLOUCESTER:\nWell, sir, we must have you find your legs. Sirrah\nbeadle, whip him till he leap over that same stool.\n\nBeadle:\nI will, my lord. Come on, sirrah; off with your\ndoublet quickly.\n\nSIMPCOX:\nAlas, master, what shall I do? I am not able to stand.\n\nKING HENRY VI:\nO God, seest Thou this, and bearest so long?\n\nQUEEN MARGARET:\nIt made me laugh to see the villain run.\n\nGLOUCESTER:\nFollow the knave; and take this drab away.\n\nWife:\nAlas, sir, we did it for pure need.\n\nGLOUCESTER:\nLet them be whipped through every market-town, till\nthey come to Berwick, from whence they came.\n\nCARDINAL:\nDuke Humphrey has done a miracle to-day.\n\nSUFFOLK:\nTrue; made the lame to leap and fly away.\n\nGLOUCESTER:\nBut you have done more miracles than I;\nYou made in a day, my lord, whole towns to fly.\n\nKING HENRY VI:\nWhat tidings with our cousin Buckingham?\n\nBUCKINGHAM:\nSuch as my heart doth tremble to unfold.\nA sort of naughty persons, lewdly bent,\nUnder the countenance and confederacy\nOf Lady Eleanor, the protector's wife,\nThe ringleader and head of all this rout,\nHave practised dangerously against your state,\nDealing with witches and with conjurers:\nWhom we have apprehended in the fact;\nRaising up wicked spirits from under ground,\nDemanding of King Henry's life and death,\nAnd other of your highness' privy-council;\nAs more at large your grace shall understand.\n\nCARDINAL:\n\nGLOUCESTER:\nAmbitious churchman, leave to afflict my heart:\nSorrow and grief have vanquish'd all my powers;\nAnd, vanquish'd as I am, I yield to thee,\nOr to the meanest groom.\n\nKING HENRY VI:\nO God, what mischiefs work the wicked ones,\nHeaping confusion on their own heads thereby!\n\nQUEEN MARGARET:\nGloucester, see here the tainture of thy nest.\nAnd look thyself be faultless, thou wert best.\n\nGLOUCESTER:\nMadam, for myself, to heaven I do appeal,\nHow I have loved my king and commonweal:\nAnd, for my wife, I know not how it stands;\nSorry I am to hear what I have heard:\nNoble she is, but if she have forgot\nHonour and virtue and conversed with such\nAs, like to pitch, defile nobility,\nI banish her my bed and company\nAnd give her as a prey to law and shame,\nThat hath dishonour'd Gloucester's honest name.\n\nKING HENRY VI:\nWell, for this night we will repose us here:\nTo-morrow toward London back again,\nTo look into this business thoroughly\nAnd call these foul offenders to their answers\nAnd poise the cause in justice' equal scales,\nWhose beam stands sure, whose rightful cause prevails.\n\nYORK:\nNow, my good Lords of Salisbury and Warwick,\nOur simple supper ended, give me leave\nIn this close walk to satisfy myself,\nIn craving your opinion of my title,\nWhich is infallible, to England's crown.\n\nSALISBURY:\nMy lord, I long to hear it at full.\n\nWARWICK:\nSweet York, begin: and if thy claim be good,\nThe Nevils are thy subjects to command.\n\nYORK:\nThen thus:\nEdward the Third, my lords, had seven sons:\nThe first, Edward the Black Prince, Prince of Wales;\nThe second, William of Hatfield, and the third,\nLionel Duke of Clarence: next to whom\nWas John of Gaunt, the Duke of Lancaster;\nThe fifth was Edmund Langley, Duke of York;\nThe sixth was Thomas of Woodstock, Duke of Gloucester;\nWilliam of Windsor was the seventh and last.\nEdward the Black Prince died before his father\nAnd left behind him Richard, his only son,\nWho after Edward the Third's death reign'd as king;\nTill Henry Bolingbroke, Duke of Lancaster,\nThe eldest son and heir of John of Gaunt,\nCrown'd by the name of Henry the Fourth,\nSeized on the realm, deposed the rightful king,\nSent his poor queen to France, from whence she came,\nAnd him to Pomfret; where, as all you know,\nHarmless Richard was murder'd traitorously.\n\nWARWICK:\nFather, the duke hath told the truth:\nThus got the house of Lancaster the crown.\n\nYORK:\nWhich now they hold by force and not by right;\nFor Richard, the first son's heir, being dead,\nThe issue of the next son should have reign'd.\n\nSALISBURY:\nBut William of Hatfield died without an heir.\n\nYORK:\nThe third son, Duke of Clarence, from whose line\nI claimed the crown, had issue, Philippe, a daughter,\nWho married Edmund Mortimer, Earl of March:\nEdmund had issue, Roger Earl of March;\nRoger had issue, Edmund, Anne and Eleanor.\n\nSALISBURY:\nThis Edmund, in the reign of Bolingbroke,\nAs I have read, laid claim unto the crown;\nAnd, but for Owen Glendower, had been king,\nWho kept him in captivity till he died.\nBut to the rest.\n\nYORK:\nHis eldest sister, Anne,\nMy mother, being heir unto the crown\nMarried Richard Earl of Cambridge; who was son\nTo Edmund Langley, Edward the Third's fifth son.\nBy her I claim the kingdom: she was heir\nTo Roger Earl of March, who was the son\nOf Edmund Mortimer, who married Philippe,\nSole daughter unto Lionel Duke of Clarence:\nSo, if the issue of the elder son\nSucceed before the younger, I am king.\n\nWARWICK:\nWhat plain proceeding is more plain than this?\nHenry doth claim the crown from John of Gaunt,\nThe fourth son; York claims it from the third.\nTill Lionel's issue fails, his should not reign:\nIt fails not yet, but flourishes in thee\nAnd in thy sons, fair slips of such a stock.\nThen, father Salisbury, kneel we together;\nAnd in this private plot be we the first\nThat shall salute our rightful sovereign\nWith honour of his birthright to the crown.\n\nBOTH:\nLong live our sovereign Richard, England's king!\n\nYORK:\nWe thank you, lords. But I am not your king\nTill I be crown'd and that my sword be stain'd\nWith heart-blood of the house of Lancaster;\nAnd that's not suddenly to be perform'd,\nBut with advice and silent secrecy.\nDo you as I do in these dangerous days:\nWink at the Duke of Suffolk's insolence,\nAt Beaufort's pride, at Somerset's ambition,\nAt Buckingham and all the crew of them,\nTill they have snared the shepherd of the flock,\nThat virtuous prince, the good Duke Humphrey:\n'Tis that they seek, and they in seeking that\nShall find their deaths, if York can prophesy.\n\nSALISBURY:\nMy lord, break we off; we know your mind at full.\n\nWARWICK:\nMy heart assures me that the Earl of Warwick\nShall one day make the Duke of York a king.\n\nYORK:\nAnd, Nevil, this I do assure myself:\nRichard shall live to make the Earl of Warwick\nThe greatest man in England but the king.\n\nKING HENRY VI:\nStand forth, Dame Eleanor Cobham, Gloucester's wife:\nIn sight of God and us, your guilt is great:\nReceive the sentence of the law for sins\nSuch as by God's book are adjudged to death.\nYou four, from hence to prison back again;\nFrom thence unto the place of execution:\nThe witch in Smithfield shall be burn'd to ashes,\nAnd you three shall be strangled on the gallows.\nYou, madam, for you are more nobly born,\nDespoiled of your honour in your life,\nShall, after three days' open penance done,\nLive in your country here in banishment,\nWith Sir John Stanley, in the Isle of Man.\n\nDUCHESS:\nWelcome is banishment; welcome were my death.\n\nGLOUCESTER:\nEleanor, the law, thou see'st, hath judged thee:\nI cannot justify whom the law condemns.\nMine eyes are full of tears, my heart of grief.\nAh, Humphrey, this dishonour in thine age\nWill bring thy head with sorrow to the ground!\nI beseech your majesty, give me leave to go;\nSorrow would solace and mine age would ease.\n\nKING HENRY VI:\nStay, Humphrey Duke of Gloucester: ere thou go,\nGive up thy staff: Henry will to himself\nProtector be; and God shall be my hope,\nMy stay, my guide and lantern to my feet:\nAnd go in peace, Humphrey, no less beloved\nThan when thou wert protector to thy King.\n\nQUEEN MARGARET:\nI see no reason why a king of years\nShould be to be protected like a child.\nGod and King Henry govern England's realm.\nGive up your staff, sir, and the king his realm.\n\nGLOUCESTER:\nMy staff? here, noble Henry, is my staff:\nAs willingly do I the same resign\nAs e'er thy father Henry made it mine;\nAnd even as willingly at thy feet I leave it\nAs others would ambitiously receive it.\nFarewell, good king: when I am dead and gone,\nMay honourable peace attend thy throne!\n\nQUEEN MARGARET:\nWhy, now is Henry king, and Margaret queen;\nAnd Humphrey Duke of Gloucester scarce himself,\nThat bears so shrewd a maim; two pulls at once;\nHis lady banish'd, and a limb lopp'd off.\nThis staff of honour raught, there let it stand\nWhere it best fits to be, in Henry's hand.\n\nSUFFOLK:\nThus droops this lofty pine and hangs his sprays;\nThus Eleanor's pride dies in her youngest days.\n\nYORK:\nLords, let him go. Please it your majesty,\nThis is the day appointed for the combat;\nAnd ready are the appellant and defendant,\nThe armourer and his man, to enter the lists,\nSo please your highness to behold the fight.\n\nQUEEN MARGARET:\nAy, good my lord; for purposely therefore\nLeft I the court, to see this quarrel tried.\n\nKING HENRY VI:\nO God's name, see the lists and all things fit:\nHere let them end it; and God defend the right!\n\nYORK:\nI never saw a fellow worse bested,\nOr more afraid to fight, than is the appellant,\nThe servant of this armourer, my lords.\n\nFirst Neighbour:\nHere, neighbour Horner, I drink to you in a cup of\nsack: and fear not, neighbour, you shall do well enough.\n\nSecond Neighbour:\nAnd here, neighbour, here's a cup of charneco.\n\nThird Neighbour:\nAnd here's a pot of good double beer, neighbour:\ndrink, and fear not your man.\n\nHORNER:\nLet it come, i' faith, and I'll pledge you all; and\na fig for Peter!\n\nFirst 'Prentice:\nHere, Peter, I drink to thee: and be not afraid.\n\nSecond 'Prentice:\nBe merry, Peter, and fear not thy master: fight\nfor credit of the 'prentices.\n\nPETER:\nI thank you all: drink, and pray for me, I pray\nyou; for I think I have taken my last draught in\nthis world. Here, Robin, an if I die, I give thee\nmy apron: and, Will, thou shalt have my hammer:\nand here, Tom, take all the money that I have. O\nLord bless me! I pray God! for I am never able to\ndeal with my master, he hath learnt me so much fence already.\n\nSALISBURY:\nCome, leave your drinking, and fall to blows.\nSirrah, what's thy name?\n\nPETER:\nPeter, forsooth.\n\nSALISBURY:\nPeter! what more?\n\nPETER:\nThump.\n\nSALISBURY:\nThump! then see thou thump thy master well.\n\nHORNER:\nMasters, I am come hither, as it were, upon my man's\ninstigation, to prove him a knave and myself an\nhonest man: and touching the Duke of York, I will\ntake my death, I never meant him any ill, nor the\nking, nor the queen: and therefore, Peter, have at\nthee with a downright blow!\n\nYORK:\nDispatch: this knave's tongue begins to double.\nSound, trumpets, alarum to the combatants!\n\nHORNER:\nHold, Peter, hold! I confess, I confess treason.\n\nYORK:\nTake away his weapon. Fellow, thank God, and the\ngood wine in thy master's way.\n\nPETER:\nO God, have I overcome mine enemy in this presence?\nO Peter, thou hast prevailed in right!\n\nKING HENRY VI:\nGo, take hence that traitor from our sight;\nFor his death we do perceive his guilt:\nAnd God in justice hath revealed to us\nThe truth and innocence of this poor fellow,\nWhich he had thought to have murder'd wrongfully.\nCome, fellow, follow us for thy reward.\n\nGLOUCESTER:\nThus sometimes hath the brightest day a cloud;\nAnd after summer evermore succeeds\nBarren winter, with his wrathful nipping cold:\nSo cares and joys abound, as seasons fleet.\nSirs, what's o'clock?\n\nServants:\nTen, my lord.\n\nGLOUCESTER:\nTen is the hour that was appointed me\nTo watch the coming of my punish'd duchess:\nUneath may she endure the flinty streets,\nTo tread them with her tender-feeling feet.\nSweet Nell, ill can thy noble mind abrook\nThe abject people gazing on thy face,\nWith envious looks, laughing at thy shame,\nThat erst did follow thy proud chariot-wheels\nWhen thou didst ride in triumph through the streets.\nBut, soft! I think she comes; and I'll prepare\nMy tear-stain'd eyes to see her miseries.\n\nServant:\nSo please your grace, we'll take her from the sheriff.\n\nGLOUCESTER:\nNo, stir not, for your lives; let her pass by.\n\nDUCHESS:\nCome you, my lord, to see my open shame?\nNow thou dost penance too. Look how they gaze!\nSee how the giddy multitude do point,\nAnd nod their heads, and throw their eyes on thee!\nAh, Gloucester, hide thee from their hateful looks,\nAnd, in thy closet pent up, rue my shame,\nAnd ban thine enemies, both mine and thine!\n\nGLOUCESTER:\nBe patient, gentle Nell; forget this grief.\n\nDUCHESS:\nAh, Gloucester, teach me to forget myself!\nFor whilst I think I am thy married wife\nAnd thou a prince, protector of this land,\nMethinks I should not thus be led along,\nMail'd up in shame, with papers on my back,\nAnd followed with a rabble that rejoice\nTo see my tears and hear my deep-fet groans.\nThe ruthless flint doth cut my tender feet,\nAnd when I start, the envious people laugh\nAnd bid me be advised how I tread.\nAh, Humphrey, can I bear this shameful yoke?\nTrow'st thou that e'er I'll look upon the world,\nOr count them happy that enjoy the sun?\nNo; dark shall be my light and night my day;\nTo think upon my pomp shall be my hell.\nSometime I'll say, I am Duke Humphrey's wife,\nAnd he a prince and ruler of the land:\nYet so he ruled and such a prince he was\nAs he stood by whilst I, his forlorn duchess,\nWas made a wonder and a pointing-stock\nTo every idle rascal follower.\nBut be thou mild and blush not at my shame,\nNor stir at nothing till the axe of death\nHang over thee, as, sure, it shortly will;\nFor Suffolk, he that can do all in all\nWith her that hateth thee and hates us all,\nAnd York and impious Beaufort, that false priest,\nHave all limed bushes to betray thy wings,\nAnd, fly thou how thou canst, they'll tangle thee:\nBut fear not thou, until thy foot be snared,\nNor never seek prevention of thy foes.\n\nGLOUCESTER:\nAh, Nell, forbear! thou aimest all awry;\nI must offend before I be attainted;\nAnd had I twenty times so many foes,\nAnd each of them had twenty times their power,\nAll these could not procure me any scathe,\nSo long as I am loyal, true and crimeless.\nWouldst have me rescue thee from this reproach?\nWhy, yet thy scandal were not wiped away\nBut I in danger for the breach of law.\nThy greatest help is quiet, gentle Nell:\nI pray thee, sort thy heart to patience;\nThese few days' wonder will be quickly worn.\n\nHerald:\nI summon your grace to his majesty's parliament,\nHolden at Bury the first of this next month.\n\nGLOUCESTER:\nAnd my consent ne'er ask'd herein before!\nThis is close dealing. Well, I will be there.\nMy Nell, I take my leave: and, master sheriff,\nLet not her penance exceed the king's commission.\n\nSheriff:\nAn't please your grace, here my commission stays,\nAnd Sir John Stanley is appointed now\nTo take her with him to the Isle of Man.\n\nGLOUCESTER:\nMust you, Sir John, protect my lady here?\n\nSTANLEY:\nSo am I given in charge, may't please your grace.\n\nGLOUCESTER:\nEntreat her not the worse in that I pray\nYou use her well: the world may laugh again;\nAnd I may live to do you kindness if\nYou do it her: and so, Sir John, farewell!\n\nDUCHESS:\nWhat, gone, my lord, and bid me not farewell!\n\nGLOUCESTER:\nWitness my tears, I cannot stay to speak.\n\nDUCHESS:\nArt thou gone too? all comfort go with thee!\nFor none abides with me: my joy is death;\nDeath, at whose name I oft have been afear'd,\nBecause I wish'd this world's eternity.\nStanley, I prithee, go, and take me hence;\nI care not whither, for I beg no favour,\nOnly convey me where thou art commanded.\n\nSTANLEY:\nWhy, madam, that is to the Isle of Man;\nThere to be used according to your state.\n\nDUCHESS:\nThat's bad enough, for I am but reproach:\nAnd shall I then be used reproachfully?\n\nSTANLEY:\nLike to a duchess, and Duke Humphrey's lady;\nAccording to that state you shall be used.\n\nDUCHESS:\nSheriff, farewell, and better than I fare,\nAlthough thou hast been conduct of my shame.\n\nSheriff:\nIt is my office; and, madam, pardon me.\n\nDUCHESS:\nAy, ay, farewell; thy office is discharged.\nCome, Stanley, shall we go?\n\nSTANLEY:\nMadam, your penance done, throw off this sheet,\nAnd go we to attire you for our journey.\n\nDUCHESS:\nMy shame will not be shifted with my sheet:\nNo, it will hang upon my richest robes\nAnd show itself, attire me how I can.\nGo, lead the way; I long to see my prison.\n\nKING HENRY VI:\nI muse my Lord of Gloucester is not come:\n'Tis not his wont to be the hindmost man,\nWhate'er occasion keeps him from us now.\n\nQUEEN MARGARET:\nCan you not see? or will ye not observe\nThe strangeness of his alter'd countenance?\nWith what a majesty he bears himself,\nHow insolent of late he is become,\nHow proud, how peremptory, and unlike himself?\nWe know the time since he was mild and affable,\nAnd if we did but glance a far-off look,\nImmediately he was upon his knee,\nThat all the court admired him for submission:\nBut meet him now, and, be it in the morn,\nWhen every one will give the time of day,\nHe knits his brow and shows an angry eye,\nAnd passeth by with stiff unbowed knee,\nDisdaining duty that to us belongs.\nSmall curs are not regarded when they grin;\nBut great men tremble when the lion roars;\nAnd Humphrey is no little man in England.\nFirst note that he is near you in descent,\nAnd should you fall, he as the next will mount.\nMe seemeth then it is no policy,\nRespecting what a rancorous mind he bears\nAnd his advantage following your decease,\nThat he should come about your royal person\nOr be admitted to your highness' council.\nBy flattery hath he won the commons' hearts,\nAnd when he please to make commotion,\n'Tis to be fear'd they all will follow him.\nNow 'tis the spring, and weeds are shallow-rooted;\nSuffer them now, and they'll o'ergrow the garden\nAnd choke the herbs for want of husbandry.\nThe reverent care I bear unto my lord\nMade me collect these dangers in the duke.\nIf it be fond, call it a woman's fear;\nWhich fear if better reasons can supplant,\nI will subscribe and say I wrong'd the duke.\nMy Lord of Suffolk, Buckingham, and York,\nReprove my allegation, if you can;\nOr else conclude my words effectual.\n\nSUFFOLK:\nWell hath your highness seen into this duke;\nAnd, had I first been put to speak my mind,\nI think I should have told your grace's tale.\nThe duchess, by his subornation,\nUpon my life, began her devilish practises:\nOr, if he were not privy to those faults,\nYet, by reputing of his high descent,\nAs next the king he was successive heir,\nAnd such high vaunts of his nobility,\nDid instigate the bedlam brain-sick duchess\nBy wicked means to frame our sovereign's fall.\nSmooth runs the water where the brook is deep;\nAnd in his simple show he harbours treason.\nThe fox barks not when he would steal the lamb.\nNo, no, my sovereign; Gloucester is a man\nUnsounded yet and full of deep deceit.\n\nCARDINAL:\nDid he not, contrary to form of law,\nDevise strange deaths for small offences done?\n\nYORK:\nAnd did he not, in his protectorship,\nLevy great sums of money through the realm\nFor soldiers' pay in France, and never sent it?\nBy means whereof the towns each day revolted.\n\nBUCKINGHAM:\nTut, these are petty faults to faults unknown.\nWhich time will bring to light in smooth\nDuke Humphrey.\n\nKING HENRY VI:\nMy lords, at once: the care you have of us,\nTo mow down thorns that would annoy our foot,\nIs worthy praise: but, shall I speak my conscience,\nOur kinsman Gloucester is as innocent\nFrom meaning treason to our royal person\nAs is the sucking lamb or harmless dove:\nThe duke is virtuous, mild and too well given\nTo dream on evil or to work my downfall.\n\nQUEEN MARGARET:\nAh, what's more dangerous than this fond affiance!\nSeems he a dove? his feathers are but borrowed,\nFor he's disposed as the hateful raven:\nIs he a lamb? his skin is surely lent him,\nFor he's inclined as is the ravenous wolf.\nWho cannot steal a shape that means deceit?\nTake heed, my lord; the welfare of us all\nHangs on the cutting short that fraudful man.\n\nSOMERSET:\nAll health unto my gracious sovereign!\n\nKING HENRY VI:\nWelcome, Lord Somerset. What news from France?\n\nSOMERSET:\nThat all your interest in those territories\nIs utterly bereft you; all is lost.\n\nKING HENRY VI:\nCold news, Lord Somerset: but God's will be done!\n\nYORK:\n\nGLOUCESTER:\nAll happiness unto my lord the king!\nPardon, my liege, that I have stay'd so long.\n\nSUFFOLK:\nNay, Gloucester, know that thou art come too soon,\nUnless thou wert more loyal than thou art:\nI do arrest thee of high treason here.\n\nGLOUCESTER:\nWell, Suffolk, thou shalt not see me blush\nNor change my countenance for this arrest:\nA heart unspotted is not easily daunted.\nThe purest spring is not so free from mud\nAs I am clear from treason to my sovereign:\nWho can accuse me? wherein am I guilty?\n\nYORK:\n'Tis thought, my lord, that you took bribes of France,\nAnd, being protector, stayed the soldiers' pay;\nBy means whereof his highness hath lost France.\n\nGLOUCESTER:\nIs it but thought so? what are they that think it?\nI never robb'd the soldiers of their pay,\nNor ever had one penny bribe from France.\nSo help me God, as I have watch'd the night,\nAy, night by night, in studying good for England,\nThat doit that e'er I wrested from the king,\nOr any groat I hoarded to my use,\nBe brought against me at my trial-day!\nNo; many a pound of mine own proper store,\nBecause I would not tax the needy commons,\nHave I disbursed to the garrisons,\nAnd never ask'd for restitution.\n\nCARDINAL:\nIt serves you well, my lord, to say so much.\n\nGLOUCESTER:\nI say no more than truth, so help me God!\n\nYORK:\nIn your protectorship you did devise\nStrange tortures for offenders never heard of,\nThat England was defamed by tyranny.\n\nGLOUCESTER:\nWhy, 'tis well known that, whiles I was\nprotector,\nPity was all the fault that was in me;\nFor I should melt at an offender's tears,\nAnd lowly words were ransom for their fault.\nUnless it were a bloody murderer,\nOr foul felonious thief that fleeced poor passengers,\nI never gave them condign punishment:\nMurder indeed, that bloody sin, I tortured\nAbove the felon or what trespass else.\n\nSUFFOLK:\nMy lord, these faults are easy, quickly answered:\nBut mightier crimes are laid unto your charge,\nWhereof you cannot easily purge yourself.\nI do arrest you in his highness' name;\nAnd here commit you to my lord cardinal\nTo keep, until your further time of trial.\n\nKING HENRY VI:\nMy lord of Gloucester, 'tis my special hope\nThat you will clear yourself from all suspect:\nMy conscience tells me you are innocent.\n\nGLOUCESTER:\nAh, gracious lord, these days are dangerous:\nVirtue is choked with foul ambition\nAnd charity chased hence by rancour's hand;\nFoul subornation is predominant\nAnd equity exiled your highness' land.\nI know their complot is to have my life,\nAnd if my death might make this island happy,\nAnd prove the period of their tyranny,\nI would expend it with all willingness:\nBut mine is made the prologue to their play;\nFor thousands more, that yet suspect no peril,\nWill not conclude their plotted tragedy.\nBeaufort's red sparkling eyes blab his heart's malice,\nAnd Suffolk's cloudy brow his stormy hate;\nSharp Buckingham unburthens with his tongue\nThe envious load that lies upon his heart;\nAnd dogged York, that reaches at the moon,\nWhose overweening arm I have pluck'd back,\nBy false accuse doth level at my life:\nAnd you, my sovereign lady, with the rest,\nCauseless have laid disgraces on my head,\nAnd with your best endeavour have stirr'd up\nMy liefest liege to be mine enemy:\nAy, all you have laid your heads together--\nMyself had notice of your conventicles--\nAnd all to make away my guiltless life.\nI shall not want false witness to condemn me,\nNor store of treasons to augment my guilt;\nThe ancient proverb will be well effected:\n'A staff is quickly found to beat a dog.'\n\nCARDINAL:\nMy liege, his railing is intolerable:\nIf those that care to keep your royal person\nFrom treason's secret knife and traitors' rage\nBe thus upbraided, chid and rated at,\nAnd the offender granted scope of speech,\n'Twill make them cool in zeal unto your grace.\n\nSUFFOLK:\nHath he not twit our sovereign lady here\nWith ignominious words, though clerkly couch'd,\nAs if she had suborned some to swear\nFalse allegations to o'erthrow his state?\n\nQUEEN MARGARET:\nBut I can give the loser leave to chide.\n\nGLOUCESTER:\nFar truer spoke than meant: I lose, indeed;\nBeshrew the winners, for they play'd me false!\nAnd well such losers may have leave to speak.\n\nBUCKINGHAM:\nHe'll wrest the sense and hold us here all day:\nLord cardinal, he is your prisoner.\n\nCARDINAL:\nSirs, take away the duke, and guard him sure.\n\nGLOUCESTER:\nAh! thus King Henry throws away his crutch\nBefore his legs be firm to bear his body.\nThus is the shepherd beaten from thy side,\nAnd wolves are gnarling who shall gnaw thee first.\nAh, that my fear were false! ah, that it were!\nFor, good King Henry, thy decay I fear.\n\nKING HENRY VI:\nMy lords, what to your wisdoms seemeth best,\nDo or undo, as if ourself were here.\n\nQUEEN MARGARET:\nWhat, will your highness leave the parliament?\n\nKING HENRY VI:\nAy, Margaret; my heart is drown'd with grief,\nWhose flood begins to flow within mine eyes,\nMy body round engirt with misery,\nFor what's more miserable than discontent?\nAh, uncle Humphrey! in thy face I see\nThe map of honour, truth and loyalty:\nAnd yet, good Humphrey, is the hour to come\nThat e'er I proved thee false or fear'd thy faith.\nWhat louring star now envies thy estate,\nThat these great lords and Margaret our queen\nDo seek subversion of thy harmless life?\nThou never didst them wrong, nor no man wrong;\nAnd as the butcher takes away the calf\nAnd binds the wretch, and beats it when it strays,\nBearing it to the bloody slaughter-house,\nEven so remorseless have they borne him hence;\nAnd as the dam runs lowing up and down,\nLooking the way her harmless young one went,\nAnd can do nought but wail her darling's loss,\nEven so myself bewails good Gloucester's case\nWith sad unhelpful tears, and with dimm'd eyes\nLook after him and cannot do him good,\nSo mighty are his vowed enemies.\nHis fortunes I will weep; and, 'twixt each groan\nSay 'Who's a traitor? Gloucester he is none.'\n\nQUEEN MARGARET:\nFree lords, cold snow melts with the sun's hot beams.\nHenry my lord is cold in great affairs,\nToo full of foolish pity, and Gloucester's show\nBeguiles him as the mournful crocodile\nWith sorrow snares relenting passengers,\nOr as the snake roll'd in a flowering bank,\nWith shining chequer'd slough, doth sting a child\nThat for the beauty thinks it excellent.\nBelieve me, lords, were none more wise than I--\nAnd yet herein I judge mine own wit good--\nThis Gloucester should be quickly rid the world,\nTo rid us of the fear we have of him.\n\nCARDINAL:\nThat he should die is worthy policy;\nBut yet we want a colour for his death:\n'Tis meet he be condemn'd by course of law.\n\nSUFFOLK:\nBut, in my mind, that were no policy:\nThe king will labour still to save his life,\nThe commons haply rise, to save his life;\nAnd yet we have but trivial argument,\nMore than mistrust, that shows him worthy death.\n\nYORK:\nSo that, by this, you would not have him die.\n\nSUFFOLK:\nAh, York, no man alive so fain as I!\n\nYORK:\n'Tis York that hath more reason for his death.\nBut, my lord cardinal, and you, my Lord of Suffolk,\nSay as you think, and speak it from your souls,\nWere't not all one, an empty eagle were set\nTo guard the chicken from a hungry kite,\nAs place Duke Humphrey for the king's protector?\n\nQUEEN MARGARET:\nSo the poor chicken should be sure of death.\n\nSUFFOLK:\nMadam, 'tis true; and were't not madness, then,\nTo make the fox surveyor of the fold?\nWho being accused a crafty murderer,\nHis guilt should be but idly posted over,\nBecause his purpose is not executed.\nNo; let him die, in that he is a fox,\nBy nature proved an enemy to the flock,\nBefore his chaps be stain'd with crimson blood,\nAs Humphrey, proved by reasons, to my liege.\nAnd do not stand on quillets how to slay him:\nBe it by gins, by snares, by subtlety,\nSleeping or waking, 'tis no matter how,\nSo he be dead; for that is good deceit\nWhich mates him first that first intends deceit.\n\nQUEEN MARGARET:\nThrice-noble Suffolk, 'tis resolutely spoke.\n\nSUFFOLK:\nNot resolute, except so much were done;\nFor things are often spoke and seldom meant:\nBut that my heart accordeth with my tongue,\nSeeing the deed is meritorious,\nAnd to preserve my sovereign from his foe,\nSay but the word, and I will be his priest.\n\nCARDINAL:\nBut I would have him dead, my Lord of Suffolk,\nEre you can take due orders for a priest:\nSay you consent and censure well the deed,\nAnd I'll provide his executioner,\nI tender so the safety of my liege.\n\nSUFFOLK:\nHere is my hand, the deed is worthy doing.\n\nQUEEN MARGARET:\nAnd so say I.\n\nYORK:\nAnd I    and now we three have spoke it,\nIt skills not greatly who impugns our doom.\n\nPost:\nGreat lords, from Ireland am I come amain,\nTo signify that rebels there are up\nAnd put the Englishmen unto the sword:\nSend succors, lords, and stop the rage betime,\nBefore the wound do grow uncurable;\nFor, being green, there is great hope of help.\n\nCARDINAL:\nA breach that craves a quick expedient stop!\nWhat counsel give you in this weighty cause?\n\nYORK:\nThat Somerset be sent as regent thither:\n'Tis meet that lucky ruler be employ'd;\nWitness the fortune he hath had in France.\n\nSOMERSET:\nIf York, with all his far-fet policy,\nHad been the regent there instead of me,\nHe never would have stay'd in France so long.\n\nYORK:\nNo, not to lose it all, as thou hast done:\nI rather would have lost my life betimes\nThan bring a burthen of dishonour home\nBy staying there so long till all were lost.\nShow me one scar character'd on thy skin:\nMen's flesh preserved so whole do seldom win.\n\nQUEEN MARGARET:\nNay, then, this spark will prove a raging fire,\nIf wind and fuel be brought to feed it with:\nNo more, good York; sweet Somerset, be still:\nThy fortune, York, hadst thou been regent there,\nMight happily have proved far worse than his.\n\nYORK:\nWhat, worse than nought? nay, then, a shame take all!\n\nSOMERSET:\nAnd, in the number, thee that wishest shame!\n\nCARDINAL:\nMy Lord of York, try what your fortune is.\nThe uncivil kerns of Ireland are in arms\nAnd temper clay with blood of Englishmen:\nTo Ireland will you lead a band of men,\nCollected choicely, from each county some,\nAnd try your hap against the Irishmen?\n\nYORK:\nI will, my lord, so please his majesty.\n\nSUFFOLK:\nWhy, our authority is his consent,\nAnd what we do establish he confirms:\nThen, noble York, take thou this task in hand.\n\nYORK:\nI am content: provide me soldiers, lords,\nWhiles I take order for mine own affairs.\n\nSUFFOLK:\nA charge, Lord York, that I will see perform'd.\nBut now return we to the false Duke Humphrey.\n\nCARDINAL:\nNo more of him; for I will deal with him\nThat henceforth he shall trouble us no more.\nAnd so break off; the day is almost spent:\nLord Suffolk, you and I must talk of that event.\n\nYORK:\nMy Lord of Suffolk, within fourteen days\nAt Bristol I expect my soldiers;\nFor there I'll ship them all for Ireland.\n\nSUFFOLK:\nI'll see it truly done, my Lord of York.\n\nYORK:\nNow, York, or never, steel thy fearful thoughts,\nAnd change misdoubt to resolution:\nBe that thou hopest to be, or what thou art\nResign to death; it is not worth the enjoying:\nLet pale-faced fear keep with the mean-born man,\nAnd find no harbour in a royal heart.\nFaster than spring-time showers comes thought\non thought,\nAnd not a thought but thinks on dignity.\nMy brain more busy than the labouring spider\nWeaves tedious snares to trap mine enemies.\nWell, nobles, well, 'tis politicly done,\nTo send me packing with an host of men:\nI fear me you but warm the starved snake,\nWho, cherish'd in your breasts, will sting\nyour hearts.\n'Twas men I lack'd and you will give them me:\nI take it kindly; and yet be well assured\nYou put sharp weapons in a madman's hands.\nWhiles I in Ireland nourish a mighty band,\nI will stir up in England some black storm\nShall blow ten thousand souls to heaven or hell;\nAnd this fell tempest shall not cease to rage\nUntil the golden circuit on my head,\nLike to the glorious sun's transparent beams,\nDo calm the fury of this mad-bred flaw.\nAnd, for a minister of my intent,\nI have seduced a headstrong Kentishman,\nJohn Cade of Ashford,\nTo make commotion, as full well he can,\nUnder the title of John Mortimer.\nIn Ireland have I seen this stubborn Cade\nOppose himself against a troop of kerns,\nAnd fought so long, till that his thighs with darts\nWere almost like a sharp-quill'd porpentine;\nAnd, in the end being rescued, I have seen\nHim caper upright like a wild Morisco,\nShaking the bloody darts as he his bells.\nFull often, like a shag-hair'd crafty kern,\nHath he conversed with the enemy,\nAnd undiscover'd come to me again\nAnd given me notice of their villanies.\nThis devil here shall be my substitute;\nFor that John Mortimer, which now is dead,\nIn face, in gait, in speech, he doth resemble:\nBy this I shall perceive the commons' mind,\nHow they affect the house and claim of York.\nSay he be taken, rack'd and tortured,\nI know no pain they can inflict upon him\nWill make him say I moved him to those arms.\nSay that he thrive, as 'tis great like he will,\nWhy, then from Ireland come I with my strength\nAnd reap the harvest which that rascal sow'd;\nFor Humphrey being dead, as he shall be,\nAnd Henry put apart, the next for me.\n\nFirst Murderer:\nRun to my Lord of Suffolk; let him know\nWe have dispatch'd the duke, as he commanded.\n\nSecond Murderer:\nO that it were to do! What have we done?\nDidst ever hear a man so penitent?\n\nFirst Murder:\nHere comes my lord.\n\nSUFFOLK:\nNow, sirs, have you dispatch'd this thing?\n\nFirst Murderer:\nAy, my good lord, he's dead.\n\nSUFFOLK:\nWhy, that's well said. Go, get you to my house;\nI will reward you for this venturous deed.\nThe king and all the peers are here at hand.\nHave you laid fair the bed? Is all things well,\nAccording as I gave directions?\n\nFirst Murderer:\n'Tis, my good lord.\n\nSUFFOLK:\nAway! be gone.\n\nKING HENRY VI:\nGo, call our uncle to our presence straight;\nSay we intend to try his grace to-day.\nIf he be guilty, as 'tis published.\n\nSUFFOLK:\nI'll call him presently, my noble lord.\n\nKING HENRY VI:\nLords, take your places; and, I pray you all,\nProceed no straiter 'gainst our uncle Gloucester\nThan from true evidence of good esteem\nHe be approved in practise culpable.\n\nQUEEN MARGARET:\nGod forbid any malice should prevail,\nThat faultless may condemn a nobleman!\nPray God he may acquit him of suspicion!\n\nKING HENRY VI:\nI thank thee, Meg; these words content me much.\nHow now! why look'st thou pale? why tremblest thou?\nWhere is our uncle? what's the matter, Suffolk?\n\nSUFFOLK:\nDead in his bed, my lord; Gloucester is dead.\n\nQUEEN MARGARET:\nMarry, God forfend!\n\nCARDINAL:\nGod's secret judgment: I did dream to-night\nThe duke was dumb and could not speak a word.\n\nQUEEN MARGARET:\nHow fares my lord? Help, lords! the king is dead.\n\nSOMERSET:\nRear up his body; wring him by the nose.\n\nQUEEN MARGARET:\nRun, go, help, help! O Henry, ope thine eyes!\n\nSUFFOLK:\nHe doth revive again: madam, be patient.\n\nKING HENRY VI:\nO heavenly God!\n\nQUEEN MARGARET:\nHow fares my gracious lord?\n\nSUFFOLK:\nComfort, my sovereign! gracious Henry, comfort!\n\nKING HENRY VI:\nWhat, doth my Lord of Suffolk comfort me?\nCame he right now to sing a raven's note,\nWhose dismal tune bereft my vital powers;\nAnd thinks he that the chirping of a wren,\nBy crying comfort from a hollow breast,\nCan chase away the first-conceived sound?\nHide not thy poison with such sugar'd words;\nLay not thy hands on me; forbear, I say;\nTheir touch affrights me as a serpent's sting.\nThou baleful messenger, out of my sight!\nUpon thy eye-balls murderous tyranny\nSits in grim majesty, to fright the world.\nLook not upon me, for thine eyes are wounding:\nYet do not go away: come, basilisk,\nAnd kill the innocent gazer with thy sight;\nFor in the shade of death I shall find joy;\nIn life but double death, now Gloucester's dead.\n\nQUEEN MARGARET:\nWhy do you rate my Lord of Suffolk thus?\nAlthough the duke was enemy to him,\nYet he most Christian-like laments his death:\nAnd for myself, foe as he was to me,\nMight liquid tears or heart-offending groans\nOr blood-consuming sighs recall his life,\nI would be blind with weeping, sick with groans,\nLook pale as primrose with blood-drinking sighs,\nAnd all to have the noble duke alive.\nWhat know I how the world may deem of me?\nFor it is known we were but hollow friends:\nIt may be judged I made the duke away;\nSo shall my name with slander's tongue be wounded,\nAnd princes' courts be fill'd with my reproach.\nThis get I by his death: ay me, unhappy!\nTo be a queen, and crown'd with infamy!\n\nKING HENRY VI:\nAh, woe is me for Gloucester, wretched man!\n\nQUEEN MARGARET:\nBe woe for me, more wretched than he is.\nWhat, dost thou turn away and hide thy face?\nI am no loathsome leper; look on me.\nWhat! art thou, like the adder, waxen deaf?\nBe poisonous too and kill thy forlorn queen.\nIs all thy comfort shut in Gloucester's tomb?\nWhy, then, dame Margaret was ne'er thy joy.\nErect his statue and worship it,\nAnd make my image but an alehouse sign.\nWas I for this nigh wreck'd upon the sea\nAnd twice by awkward wind from England's bank\nDrove back again unto my native clime?\nWhat boded this, but well forewarning wind\nDid seem to say 'Seek not a scorpion's nest,\nNor set no footing on this unkind shore'?\nWhat did I then, but cursed the gentle gusts\nAnd he that loosed them forth their brazen caves:\nAnd bid them blow towards England's blessed shore,\nOr turn our stern upon a dreadful rock\nYet AEolus would not be a murderer,\nBut left that hateful office unto thee:\nThe pretty-vaulting sea refused to drown me,\nKnowing that thou wouldst have me drown'd on shore,\nWith tears as salt as sea, through thy unkindness:\nThe splitting rocks cower'd in the sinking sands\nAnd would not dash me with their ragged sides,\nBecause thy flinty heart, more hard than they,\nMight in thy palace perish Margaret.\nAs far as I could ken thy chalky cliffs,\nWhen from thy shore the tempest beat us back,\nI stood upon the hatches in the storm,\nAnd when the dusky sky began to rob\nMy earnest-gaping sight of thy land's view,\nI took a costly jewel from my neck,\nA heart it was, bound in with diamonds,\nAnd threw it towards thy land: the sea received it,\nAnd so I wish'd thy body might my heart:\nAnd even with this I lost fair England's view\nAnd bid mine eyes be packing with my heart\nAnd call'd them blind and dusky spectacles,\nFor losing ken of Albion's wished coast.\nHow often have I tempted Suffolk's tongue,\nThe agent of thy foul inconstancy,\nTo sit and witch me, as Ascanius did\nWhen he to madding Dido would unfold\nHis father's acts commenced in burning Troy!\nAm I not witch'd like her? or thou not false like him?\nAy me, I can no more! die, Margaret!\nFor Henry weeps that thou dost live so long.\n\nWARWICK:\nIt is reported, mighty sovereign,\nThat good Duke Humphrey traitorously is murder'd\nBy Suffolk and the Cardinal Beaufort's means.\nThe commons, like an angry hive of bees\nThat want their leader, scatter up and down\nAnd care not who they sting in his revenge.\nMyself have calm'd their spleenful mutiny,\nUntil they hear the order of his death.\n\nKING HENRY VI:\nThat he is dead, good Warwick, 'tis too true;\nBut how he died God knows, not Henry:\nEnter his chamber, view his breathless corpse,\nAnd comment then upon his sudden death.\n\nWARWICK:\nThat shall I do, my liege. Stay, Salisbury,\nWith the rude multitude till I return.\n\nKING HENRY VI:\nO Thou that judgest all things, stay my thoughts,\nMy thoughts, that labour to persuade my soul\nSome violent hands were laid on Humphrey's life!\nIf my suspect be false, forgive me, God,\nFor judgment only doth belong to thee.\nFain would I go to chafe his paly lips\nWith twenty thousand kisses, and to drain\nUpon his face an ocean of salt tears,\nTo tell my love unto his dumb deaf trunk,\nAnd with my fingers feel his hand unfeeling:\nBut all in vain are these mean obsequies;\nAnd to survey his dead and earthly image,\nWhat were it but to make my sorrow greater?\n\nWARWICK:\nCome hither, gracious sovereign, view this body.\n\nKING HENRY VI:\nThat is to see how deep my grave is made;\nFor with his soul fled all my worldly solace,\nFor seeing him I see my life in death.\n\nWARWICK:\nAs surely as my soul intends to live\nWith that dread King that took our state upon him\nTo free us from his father's wrathful curse,\nI do believe that violent hands were laid\nUpon the life of this thrice-famed duke.\n\nSUFFOLK:\nA dreadful oath, sworn with a solemn tongue!\nWhat instance gives Lord Warwick for his vow?\n\nWARWICK:\nSee how the blood is settled in his face.\nOft have I seen a timely-parted ghost,\nOf ashy semblance, meagre, pale and bloodless,\nBeing all descended to the labouring heart;\nWho, in the conflict that it holds with death,\nAttracts the same for aidance 'gainst the enemy;\nWhich with the heart there cools and ne'er returneth\nTo blush and beautify the cheek again.\nBut see, his face is black and full of blood,\nHis eye-balls further out than when he lived,\nStaring full ghastly like a strangled man;\nHis hair uprear'd, his nostrils stretched with struggling;\nHis hands abroad display'd, as one that grasp'd\nAnd tugg'd for life and was by strength subdued:\nLook, on the sheets his hair you see, is sticking;\nHis well-proportion'd beard made rough and rugged,\nLike to the summer's corn by tempest lodged.\nIt cannot be but he was murder'd here;\nThe least of all these signs were probable.\n\nSUFFOLK:\nWhy, Warwick, who should do the duke to death?\nMyself and Beaufort had him in protection;\nAnd we, I hope, sir, are no murderers.\n\nWARWICK:\nBut both of you were vow'd Duke Humphrey's foes,\nAnd you, forsooth, had the good duke to keep:\n'Tis like you would not feast him like a friend;\nAnd 'tis well seen he found an enemy.\n\nQUEEN MARGARET:\nThen you, belike, suspect these noblemen\nAs guilty of Duke Humphrey's timeless death.\n\nWARWICK:\nWho finds the heifer dead and bleeding fresh\nAnd sees fast by a butcher with an axe,\nBut will suspect 'twas he that made the slaughter?\nWho finds the partridge in the puttock's nest,\nBut may imagine how the bird was dead,\nAlthough the kite soar with unbloodied beak?\nEven so suspicious is this tragedy.\n\nQUEEN MARGARET:\nAre you the butcher, Suffolk? Where's your knife?\nIs Beaufort term'd a kite? Where are his talons?\n\nSUFFOLK:\nI wear no knife to slaughter sleeping men;\nBut here's a vengeful sword, rusted with ease,\nThat shall be scoured in his rancorous heart\nThat slanders me with murder's crimson badge.\nSay, if thou darest, proud Lord of Warwick-shire,\nThat I am faulty in Duke Humphrey's death.\n\nWARWICK:\nWhat dares not Warwick, if false Suffolk dare him?\n\nQUEEN MARGARET:\nHe dares not calm his contumelious spirit\nNor cease to be an arrogant controller,\nThough Suffolk dare him twenty thousand times.\n\nWARWICK:\nMadam, be still; with reverence may I say;\nFor every word you speak in his behalf\nIs slander to your royal dignity.\n\nSUFFOLK:\nBlunt-witted lord, ignoble in demeanor!\nIf ever lady wrong'd her lord so much,\nThy mother took into her blameful bed\nSome stern untutor'd churl, and noble stock\nWas graft with crab-tree slip; whose fruit thou art,\nAnd never of the Nevils' noble race.\n\nWARWICK:\nBut that the guilt of murder bucklers thee\nAnd I should rob the deathsman of his fee,\nQuitting thee thereby of ten thousand shames,\nAnd that my sovereign's presence makes me mild,\nI would, false murderous coward, on thy knee\nMake thee beg pardon for thy passed speech,\nAnd say it was thy mother that thou meant'st\nThat thou thyself was born in bastardy;\nAnd after all this fearful homage done,\nGive thee thy hire and send thy soul to hell,\nPernicious blood-sucker of sleeping men!\n\nSUFFOLK:\nThou shall be waking well I shed thy blood,\nIf from this presence thou darest go with me.\n\nWARWICK:\nAway even now, or I will drag thee hence:\nUnworthy though thou art, I'll cope with thee\nAnd do some service to Duke Humphrey's ghost.\n\nKING HENRY VI:\nWhat stronger breastplate than a heart untainted!\nThrice is he armed that hath his quarrel just,\nAnd he but naked, though lock'd up in steel\nWhose conscience with injustice is corrupted.\n\nQUEEN MARGARET:\nWhat noise is this?\n\nKING HENRY VI:\nWhy, how now, lords! your wrathful weapons drawn\nHere in our presence! dare you be so bold?\nWhy, what tumultuous clamour have we here?\n\nSUFFOLK:\nThe traitorous Warwick with the men of Bury\nSet all upon me, mighty sovereign.\n\nSALISBURY:\n\nCommons:\n\nSUFFOLK:\n'Tis like the commons, rude unpolish'd hinds,\nCould send such message to their sovereign:\nBut you, my lord, were glad to be employ'd,\nTo show how quaint an orator you are:\nBut all the honour Salisbury hath won\nIs, that he was the lord ambassador\nSent from a sort of tinkers to the king.\n\nCommons:\n\nKING HENRY VI:\nGo, Salisbury, and tell them all from me.\nI thank them for their tender loving care;\nAnd had I not been cited so by them,\nYet did I purpose as they do entreat;\nFor, sure, my thoughts do hourly prophesy\nMischance unto my state by Suffolk's means:\nAnd therefore, by His majesty I swear,\nWhose far unworthy deputy I am,\nHe shall not breathe infection in this air\nBut three days longer, on the pain of death.\n\nQUEEN MARGARET:\nO Henry, let me plead for gentle Suffolk!\n\nKING HENRY VI:\nUngentle queen, to call him gentle Suffolk!\nNo more, I say: if thou dost plead for him,\nThou wilt but add increase unto my wrath.\nHad I but said, I would have kept my word,\nBut when I swear, it is irrevocable.\nIf, after three days' space, thou here be'st found\nOn any ground that I am ruler of,\nThe world shall not be ransom for thy life.\nCome, Warwick, come, good Warwick, go with me;\nI have great matters to impart to thee.\n\nQUEEN MARGARET:\nMischance and sorrow go along with you!\nHeart's discontent and sour affliction\nBe playfellows to keep you company!\nThere's two of you; the devil make a third!\nAnd threefold vengeance tend upon your steps!\n\nSUFFOLK:\nCease, gentle queen, these execrations,\nAnd let thy Suffolk take his heavy leave.\n\nQUEEN MARGARET:\nFie, coward woman and soft-hearted wretch!\nHast thou not spirit to curse thine enemy?\n\nSUFFOLK:\nA plague upon them! wherefore should I curse them?\nWould curses kill, as doth the mandrake's groan,\nI would invent as bitter-searching terms,\nAs curst, as harsh and horrible to hear,\nDeliver'd strongly through my fixed teeth,\nWith full as many signs of deadly hate,\nAs lean-faced Envy in her loathsome cave:\nMy tongue should stumble in mine earnest words;\nMine eyes should sparkle like the beaten flint;\nMine hair be fixed on end, as one distract;\nAy, every joint should seem to curse and ban:\nAnd even now my burthen'd heart would break,\nShould I not curse them. Poison be their drink!\nGall, worse than gall, the daintiest that they taste!\nTheir sweetest shade a grove of cypress trees!\nTheir chiefest prospect murdering basilisks!\nTheir softest touch as smart as lizards' sting!\nTheir music frightful as the serpent's hiss,\nAnd boding screech-owls make the concert full!\nAll the foul terrors in dark-seated hell--\n\nQUEEN MARGARET:\nEnough, sweet Suffolk; thou torment'st thyself;\nAnd these dread curses, like the sun 'gainst glass,\nOr like an overcharged gun, recoil,\nAnd turn the force of them upon thyself.\n\nSUFFOLK:\nYou bade me ban, and will you bid me leave?\nNow, by the ground that I am banish'd from,\nWell could I curse away a winter's night,\nThough standing naked on a mountain top,\nWhere biting cold would never let grass grow,\nAnd think it but a minute spent in sport.\n\nQUEEN MARGARET:\nO, let me entreat thee cease. Give me thy hand,\nThat I may dew it with my mournful tears;\nNor let the rain of heaven wet this place,\nTo wash away my woful monuments.\nO, could this kiss be printed in thy hand,\nThat thou mightst think upon these by the seal,\nThrough whom a thousand sighs are breathed for thee!\nSo, get thee gone, that I may know my grief;\n'Tis but surmised whiles thou art standing by,\nAs one that surfeits thinking on a want.\nI will repeal thee, or, be well assured,\nAdventure to be banished myself:\nAnd banished I am, if but from thee.\nGo; speak not to me; even now be gone.\nO, go not yet! Even thus two friends condemn'd\nEmbrace and kiss and take ten thousand leaves,\nLoather a hundred times to part than die.\nYet now farewell; and farewell life with thee!\n\nSUFFOLK:\nThus is poor Suffolk ten times banished;\nOnce by the king, and three times thrice by thee.\n'Tis not the land I care for, wert thou thence;\nA wilderness is populous enough,\nSo Suffolk had thy heavenly company:\nFor where thou art, there is the world itself,\nWith every several pleasure in the world,\nAnd where thou art not, desolation.\nI can no more: live thou to joy thy life;\nMyself no joy in nought but that thou livest.\n\nQUEEN MARGARET:\nWither goes Vaux so fast? what news, I prithee?\n\nVAUX:\nTo signify unto his majesty\nThat Cardinal Beaufort is at point of death;\nFor suddenly a grievous sickness took him,\nThat makes him gasp and stare and catch the air,\nBlaspheming God and cursing men on earth.\nSometimes he talks as if Duke Humphrey's ghost\nWere by his side; sometime he calls the king,\nAnd whispers to his pillow, as to him,\nThe secrets of his overcharged soul;\nAnd I am sent to tell his majesty\nThat even now he cries aloud for him.\n\nQUEEN MARGARET:\nGo tell this heavy message to the king.\nAy me! what is this world! what news are these!\nBut wherefore grieve I at an hour's poor loss,\nOmitting Suffolk's exile, my soul's treasure?\nWhy only, Suffolk, mourn I not for thee,\nAnd with the southern clouds contend in tears,\nTheirs for the earth's increase, mine for my sorrows?\nNow get thee hence: the king, thou know'st, is coming;\nIf thou be found by me, thou art but dead.\n\nSUFFOLK:\nIf I depart from thee, I cannot live;\nAnd in thy sight to die, what were it else\nBut like a pleasant slumber in thy lap?\nHere could I breathe my soul into the air,\nAs mild and gentle as the cradle-babe\nDying with mother's dug between its lips:\nWhere, from thy sight, I should be raging mad,\nAnd cry out for thee to close up mine eyes,\nTo have thee with thy lips to stop my mouth;\nSo shouldst thou either turn my flying soul,\nOr I should breathe it so into thy body,\nAnd then it lived in sweet Elysium.\nTo die by thee were but to die in jest;\nFrom thee to die were torture more than death:\nO, let me stay, befall what may befall!\n\nQUEEN MARGARET:\nAway! though parting be a fretful corrosive,\nIt is applied to a deathful wound.\nTo France, sweet Suffolk: let me hear from thee;\nFor wheresoe'er thou art in this world's globe,\nI'll have an Iris that shall find thee out.\n\nSUFFOLK:\nI go.\n\nQUEEN MARGARET:\nAnd take my heart with thee.\n\nSUFFOLK:\nA jewel, lock'd into the wofull'st cask\nThat ever did contain a thing of worth.\nEven as a splitted bark, so sunder we\nThis way fall I to death.\n\nQUEEN MARGARET:\nThis way for me.\n\nKING HENRY VI:\nHow fares my lord? speak, Beaufort, to\nthy sovereign.\n\nCARDINAL:\nIf thou be'st death, I'll give thee England's treasure,\nEnough to purchase such another island,\nSo thou wilt let me live, and feel no pain.\n\nKING HENRY VI:\nAh, what a sign it is of evil life,\nWhere death's approach is seen so terrible!\n\nWARWICK:\nBeaufort, it is thy sovereign speaks to thee.\n\nCARDINAL:\nBring me unto my trial when you will.\nDied he not in his bed? where should he die?\nCan I make men live, whether they will or no?\nO, torture me no more! I will confess.\nAlive again? then show me where he is:\nI'll give a thousand pound to look upon him.\nHe hath no eyes, the dust hath blinded them.\nComb down his hair; look, look! it stands upright,\nLike lime-twigs set to catch my winged soul.\nGive me some drink; and bid the apothecary\nBring the strong poison that I bought of him.\n\nKING HENRY VI:\nO thou eternal Mover of the heavens.\nLook with a gentle eye upon this wretch!\nO, beat away the busy meddling fiend\nThat lays strong siege unto this wretch's soul.\nAnd from his bosom purge this black despair!\n\nWARWICK:\nSee, how the pangs of death do make him grin!\n\nSALISBURY:\nDisturb him not; let him pass peaceably.\n\nKING HENRY VI:\nPeace to his soul, if God's good pleasure be!\nLord cardinal, if thou think'st on heaven's bliss,\nHold up thy hand, make signal of thy hope.\nHe dies, and makes no sign. O God, forgive him!\n\nWARWICK:\nSo bad a death argues a monstrous life.\n\nKING HENRY VI:\nForbear to judge, for we are sinners all.\nClose up his eyes and draw the curtain close;\nAnd let us all to meditation.\n\nCaptain:\nThe gaudy, blabbing and remorseful day\nIs crept into the bosom of the sea;\nAnd now loud-howling wolves arouse the jades\nThat drag the tragic melancholy night;\nWho, with their drowsy, slow and flagging wings,\nClip dead men's graves and from their misty jaws\nBreathe foul contagious darkness in the air.\nTherefore bring forth the soldiers of our prize;\nFor, whilst our pinnace anchors in the Downs,\nHere shall they make their ransom on the sand,\nOr with their blood stain this discolour'd shore.\nMaster, this prisoner freely give I thee;\nAnd thou that art his mate, make boot of this;\nThe other, Walter Whitmore, is thy share.\n\nFirst Gentleman:\nWhat is my ransom, master? let me know.\n\nMaster:\nA thousand crowns, or else lay down your head.\n\nMaster's-Mate:\nAnd so much shall you give, or off goes yours.\n\nCaptain:\nWhat, think you much to pay two thousand crowns,\nAnd bear the name and port of gentlemen?\nCut both the villains' throats; for die you shall:\nThe lives of those which we have lost in fight\nBe counterpoised with such a petty sum!\n\nFirst Gentleman:\nI'll give it, sir; and therefore spare my life.\n\nSecond Gentleman:\nAnd so will I and write home for it straight.\n\nWHITMORE:\nI lost mine eye in laying the prize aboard,\nAnd therefore to revenge it, shalt thou die;\nAnd so should these, if I might have my will.\n\nCaptain:\nBe not so rash; take ransom, let him live.\n\nSUFFOLK:\nLook on my George; I am a gentleman:\nRate me at what thou wilt, thou shalt be paid.\n\nWHITMORE:\nAnd so am I; my name is Walter Whitmore.\nHow now! why start'st thou? what, doth\ndeath affright?\n\nSUFFOLK:\nThy name affrights me, in whose sound is death.\nA cunning man did calculate my birth\nAnd told me that by water I should die:\nYet let not this make thee be bloody-minded;\nThy name is Gaultier, being rightly sounded.\n\nWHITMORE:\nGaultier or Walter, which it is, I care not:\nNever yet did base dishonour blur our name,\nBut with our sword we wiped away the blot;\nTherefore, when merchant-like I sell revenge,\nBroke be my sword, my arms torn and defaced,\nAnd I proclaim'd a coward through the world!\n\nSUFFOLK:\nStay, Whitmore; for thy prisoner is a prince,\nThe Duke of Suffolk, William de la Pole.\n\nWHITMORE:\nThe Duke of Suffolk muffled up in rags!\n\nSUFFOLK:\nAy, but these rags are no part of the duke:\nJove sometimes went disguised, and why not I?\n\nCaptain:\nBut Jove was never slain, as thou shalt be.\n\nSUFFOLK:\nObscure and lowly swain, King Henry's blood,\nThe honourable blood of Lancaster,\nMust not be shed by such a jaded groom.\nHast thou not kiss'd thy hand and held my stirrup?\nBare-headed plodded by my foot-cloth mule\nAnd thought thee happy when I shook my head?\nHow often hast thou waited at my cup,\nFed from my trencher, kneel'd down at the board.\nWhen I have feasted with Queen Margaret?\nRemember it and let it make thee crest-fall'n,\nAy, and allay this thy abortive pride;\nHow in our voiding lobby hast thou stood\nAnd duly waited for my coming forth?\nThis hand of mine hath writ in thy behalf,\nAnd therefore shall it charm thy riotous tongue.\n\nWHITMORE:\nSpeak, captain, shall I stab the forlorn swain?\n\nCaptain:\nFirst let my words stab him, as he hath me.\n\nSUFFOLK:\nBase slave, thy words are blunt and so art thou.\n\nCaptain:\nConvey him hence and on our longboat's side\nStrike off his head.\n\nSUFFOLK:\nThou darest not, for thy own.\n\nCaptain:\nYes, Pole.\n\nSUFFOLK:\nPole!\n\nCaptain:\nPool! Sir Pool! lord!\nAy, kennel, puddle, sink; whose filth and dirt\nTroubles the silver spring where England drinks.\nNow will I dam up this thy yawning mouth\nFor swallowing the treasure of the realm:\nThy lips that kiss'd the queen shall sweep the ground;\nAnd thou that smiledst at good Duke Humphrey's death,\nAgainst the senseless winds shalt grin in vain,\nWho in contempt shall hiss at thee again:\nAnd wedded be thou to the hags of hell,\nFor daring to affy a mighty lord\nUnto the daughter of a worthless king,\nHaving neither subject, wealth, nor diadem.\nBy devilish policy art thou grown great,\nAnd, like ambitious Sylla, overgorged\nWith gobbets of thy mother's bleeding heart.\nBy thee Anjou and Maine were sold to France,\nThe false revolting Normans thorough thee\nDisdain to call us lord, and Picardy\nHath slain their governors, surprised our forts,\nAnd sent the ragged soldiers wounded home.\nThe princely Warwick, and the Nevils all,\nWhose dreadful swords were never drawn in vain,\nAs hating thee, are rising up in arms:\nAnd now the house of York, thrust from the crown\nBy shameful murder of a guiltless king\nAnd lofty proud encroaching tyranny,\nBurns with revenging fire; whose hopeful colours\nAdvance our half-faced sun, striving to shine,\nUnder the which is writ 'Invitis nubibus.'\nThe commons here in Kent are up in arms:\nAnd, to conclude, reproach and beggary\nIs crept into the palace of our king.\nAnd all by thee. Away! convey him hence.\n\nSUFFOLK:\nO that I were a god, to shoot forth thunder\nUpon these paltry, servile, abject drudges!\nSmall things make base men proud: this villain here,\nBeing captain of a pinnace, threatens more\nThan Bargulus the strong Illyrian pirate.\nDrones suck not eagles' blood but rob beehives:\nIt is impossible that I should die\nBy such a lowly vassal as thyself.\nThy words move rage and not remorse in me:\nI go of message from the queen to France;\nI charge thee waft me safely cross the Channel.\n\nCaptain:\nWalter,--\n\nWHITMORE:\nCome, Suffolk, I must waft thee to thy death.\n\nSUFFOLK:\nGelidus timor occupat artus it is thee I fear.\n\nWHITMORE:\nThou shalt have cause to fear before I leave thee.\nWhat, are ye daunted now? now will ye stoop?\n\nFirst Gentleman:\nMy gracious lord, entreat him, speak him fair.\n\nSUFFOLK:\nSuffolk's imperial tongue is stern and rough,\nUsed to command, untaught to plead for favour.\nFar be it we should honour such as these\nWith humble suit: no, rather let my head\nStoop to the block than these knees bow to any\nSave to the God of heaven and to my king;\nAnd sooner dance upon a bloody pole\nThan stand uncover'd to the vulgar groom.\nTrue nobility is exempt from fear:\nMore can I bear than you dare execute.\n\nCaptain:\nHale him away, and let him talk no more.\n\nSUFFOLK:\nCome, soldiers, show what cruelty ye can,\nThat this my death may never be forgot!\nGreat men oft die by vile bezonians:\nA Roman sworder and banditto slave\nMurder'd sweet Tully; Brutus' bastard hand\nStabb'd Julius Caesar; savage islanders\nPompey the Great; and Suffolk dies by pirates.\n\nCaptain:\nAnd as for these whose ransom we have set,\nIt is our pleasure one of them depart;\nTherefore come you with us and let him go.\n\nWHITMORE:\nThere let his head and lifeless body lie,\nUntil the queen his mistress bury it.\n\nFirst Gentleman:\nO barbarous and bloody spectacle!\nHis body will I bear unto the king:\nIf he revenge it not, yet will his friends;\nSo will the queen, that living held him dear.\n\nBEVIS:\nCome, and get thee a sword, though made of a lath;\nthey have been up these two days.\n\nHOLLAND:\nThey have the more need to sleep now, then.\n\nBEVIS:\nI tell thee, Jack Cade the clothier means to dress\nthe commonwealth, and turn it, and set a new nap upon it.\n\nHOLLAND:\nSo he had need, for 'tis threadbare. Well, I say it\nwas never merry world in England since gentlemen came up.\n\nBEVIS:\nO miserable age! virtue is not regarded in handicrafts-men.\n\nHOLLAND:\nThe nobility think scorn to go in leather aprons.\n\nBEVIS:\nNay, more, the king's council are no good workmen.\n\nHOLLAND:\nTrue; and yet it is said, labour in thy vocation;\nwhich is as much to say as, let the magistrates be\nlabouring men; and therefore should we be\nmagistrates.\n\nBEVIS:\nThou hast hit it; for there's no better sign of a\nbrave mind than a hard hand.\n\nHOLLAND:\nI see them! I see them! there's Best's son, the\ntanner of Wingham,--\n\nBEVIS:\nHe shall have the skin of our enemies, to make\ndog's-leather of.\n\nHOLLAND:\nAnd Dick the Butcher,--\n\nBEVIS:\nThen is sin struck down like an ox, and iniquity's\nthroat cut like a calf.\n\nHOLLAND:\nAnd Smith the weaver,--\n\nBEVIS:\nArgo, their thread of life is spun.\n\nHOLLAND:\nCome, come, let's fall in with them.\n\nCADE:\nWe John Cade, so termed of our supposed father,--\n\nDICK:\n\nCADE:\nFor our enemies shall fall before us, inspired with\nthe spirit of putting down kings and princes,\n--Command silence.\n\nDICK:\nSilence!\n\nCADE:\nMy father was a Mortimer,--\n\nDICK:\n\nCADE:\nMy mother a Plantagenet,--\n\nDICK:\n\nCADE:\nMy wife descended of the Lacies,--\n\nDICK:\n\nSMITH:\n\nCADE:\nTherefore am I of an honourable house.\n\nDICK:\n\nCADE:\nValiant I am.\n\nSMITH:\n\nCADE:\nI am able to endure much.\n\nDICK:\n\nCADE:\nI fear neither sword nor fire.\n\nSMITH:\n\nDICK:\n\nCADE:\nBe brave, then; for your captain is brave, and vows\nreformation. There shall be in England seven\nhalfpenny loaves sold for a penny: the three-hooped\npot; shall have ten hoops and I will make it felony\nto drink small beer: all the realm shall be in\ncommon; and in Cheapside shall my palfrey go to\ngrass: and when I am king, as king I will be,--\n\nALL:\nGod save your majesty!\n\nCADE:\nI thank you, good people: there shall be no money;\nall shall eat and drink on my score; and I will\napparel them all in one livery, that they may agree\nlike brothers and worship me their lord.\n\nDICK:\nThe first thing we do, let's kill all the lawyers.\n\nCADE:\nNay, that I mean to do. Is not this a lamentable\nthing, that of the skin of an innocent lamb should\nbe made parchment? that parchment, being scribbled\no'er, should undo a man? Some say the bee stings:\nbut I say, 'tis the bee's wax; for I did but seal\nonce to a thing, and I was never mine own man\nsince. How now! who's there?\n\nSMITH:\nThe clerk of Chatham: he can write and read and\ncast accompt.\n\nCADE:\nO monstrous!\n\nSMITH:\nWe took him setting of boys' copies.\n\nCADE:\nHere's a villain!\n\nSMITH:\nHas a book in his pocket with red letters in't.\n\nCADE:\nNay, then, he is a conjurer.\n\nDICK:\nNay, he can make obligations, and write court-hand.\n\nCADE:\nI am sorry for't: the man is a proper man, of mine\nhonour; unless I find him guilty, he shall not die.\nCome hither, sirrah, I must examine thee: what is thy name?\n\nClerk:\nEmmanuel.\n\nDICK:\nThey use to write it on the top of letters: 'twill\ngo hard with you.\n\nCADE:\nLet me alone. Dost thou use to write thy name? or\nhast thou a mark to thyself, like an honest\nplain-dealing man?\n\nCLERK:\nSir, I thank God, I have been so well brought up\nthat I can write my name.\n\nALL:\nHe hath confessed: away with him! he's a villain\nand a traitor.\n\nCADE:\nAway with him, I say! hang him with his pen and\nink-horn about his neck.\n\nMICHAEL:\nWhere's our general?\n\nCADE:\nHere I am, thou particular fellow.\n\nMICHAEL:\nFly, fly, fly! Sir Humphrey Stafford and his\nbrother are hard by, with the king's forces.\n\nCADE:\nStand, villain, stand, or I'll fell thee down. He\nshall be encountered with a man as good as himself:\nhe is but a knight, is a'?\n\nMICHAEL:\nNo.\n\nCADE:\nTo equal him, I will make myself a knight presently.\nRise up Sir John Mortimer.\nNow have at him!\n\nSIR HUMPHREY:\nRebellious hinds, the filth and scum of Kent,\nMark'd for the gallows, lay your weapons down;\nHome to your cottages, forsake this groom:\nThe king is merciful, if you revolt.\n\nWILLIAM STAFFORD:\nBut angry, wrathful, and inclined to blood,\nIf you go forward; therefore yield, or die.\n\nCADE:\nAs for these silken-coated slaves, I pass not:\nIt is to you, good people, that I speak,\nOver whom, in time to come, I hope to reign;\nFor I am rightful heir unto the crown.\n\nSIR HUMPHREY:\nVillain, thy father was a plasterer;\nAnd thou thyself a shearman, art thou not?\n\nCADE:\nAnd Adam was a gardener.\n\nWILLIAM STAFFORD:\nAnd what of that?\n\nCADE:\nMarry, this: Edmund Mortimer, Earl of March.\nMarried the Duke of Clarence' daughter, did he not?\n\nSIR HUMPHREY:\nAy, sir.\n\nCADE:\nBy her he had two children at one birth.\n\nWILLIAM STAFFORD:\nThat's false.\n\nCADE:\nAy, there's the question; but I say, 'tis true:\nThe elder of them, being put to nurse,\nWas by a beggar-woman stolen away;\nAnd, ignorant of his birth and parentage,\nBecame a bricklayer when he came to age:\nHis son am I; deny it, if you can.\n\nDICK:\nNay, 'tis too true; therefore he shall be king.\n\nSMITH:\nSir, he made a chimney in my father's house, and\nthe bricks are alive at this day to testify it;\ntherefore deny it not.\n\nSIR HUMPHREY:\nAnd will you credit this base drudge's words,\nThat speaks he knows not what?\n\nALL:\nAy, marry, will we; therefore get ye gone.\n\nWILLIAM STAFFORD:\nJack Cade, the Duke of York hath taught you this.\n\nCADE:\n\nDICK:\nAnd furthermore, well have the Lord Say's head for\nselling the dukedom of Maine.\n\nCADE:\nAnd good reason; for thereby is England mained, and\nfain to go with a staff, but that my puissance holds\nit up. Fellow kings, I tell you that that Lord Say\nhath gelded the commonwealth, and made it an eunuch:\nand more than that, he can speak French; and\ntherefore he is a traitor.\n\nSIR HUMPHREY:\nO gross and miserable ignorance!\n\nCADE:\nNay, answer, if you can: the Frenchmen are our\nenemies; go to, then, I ask but this: can he that\nspeaks with the tongue of an enemy be a good\ncounsellor, or no?\n\nALL:\nNo, no; and therefore we'll have his head.\n\nWILLIAM STAFFORD:\nWell, seeing gentle words will not prevail,\nAssail them with the army of the king.\n\nSIR HUMPHREY:\nHerald, away; and throughout every town\nProclaim them traitors that are up with Cade;\nThat those which fly before the battle ends\nMay, even in their wives' and children's sight,\nBe hang'd up for example at their doors:\nAnd you that be the king's friends, follow me.\n\nCADE:\nAnd you that love the commons, follow me.\nNow show yourselves men; 'tis for liberty.\nWe will not leave one lord, one gentleman:\nSpare none but such as go in clouted shoon;\nFor they are thrifty honest men, and such\nAs would, but that they dare not, take our parts.\n\nDICK:\nThey are all in order and march toward us.\n\nCADE:\nBut then are we in order when we are most\nout of order. Come, march forward.\n\nCADE:\nWhere's Dick, the butcher of Ashford?\n\nDICK:\nHere, sir.\n\nCADE:\nThey fell before thee like sheep and oxen, and thou\nbehavedst thyself as if thou hadst been in thine own\nslaughter-house: therefore thus will I reward thee,\nthe Lent shall be as long again as it is; and thou\nshalt have a licence to kill for a hundred lacking\none.\n\nDICK:\nI desire no more.\n\nCADE:\nAnd, to speak truth, thou deservest no less. This\nmonument of the victory will I bear;\nand the bodies shall be dragged at my horse' heels\ntill I do come to London, where we will have the\nmayor's sword borne before us.\n\nDICK:\nIf we mean to thrive and do good, break open the\ngaols and let out the prisoners.\n\nCADE:\nFear not that, I warrant thee. Come, let's march\ntowards London.\n\nQUEEN MARGARET:\nOft have I heard that grief softens the mind,\nAnd makes it fearful and degenerate;\nThink therefore on revenge and cease to weep.\nBut who can cease to weep and look on this?\nHere may his head lie on my throbbing breast:\nBut where's the body that I should embrace?\n\nBUCKINGHAM:\nWhat answer makes your grace to the rebels'\nsupplication?\n\nKING HENRY VI:\nI'll send some holy bishop to entreat;\nFor God forbid so many simple souls\nShould perish by the sword! And I myself,\nRather than bloody war shall cut them short,\nWill parley with Jack Cade their general:\nBut stay, I'll read it over once again.\n\nQUEEN MARGARET:\nAh, barbarous villains! hath this lovely face\nRuled, like a wandering planet, over me,\nAnd could it not enforce them to relent,\nThat were unworthy to behold the same?\n\nKING HENRY VI:\nLord Say, Jack Cade hath sworn to have thy head.\n\nSAY:\nAy, but I hope your highness shall have his.\n\nKING HENRY VI:\nHow now, madam!\nStill lamenting and mourning for Suffolk's death?\nI fear me, love, if that I had been dead,\nThou wouldst not have mourn'd so much for me.\n\nQUEEN MARGARET:\nNo, my love, I should not mourn, but die for thee.\n\nKING HENRY VI:\nHow now! what news? why comest thou in such haste?\n\nMessenger:\nThe rebels are in Southwark; fly, my lord!\nJack Cade proclaims himself Lord Mortimer,\nDescended from the Duke of Clarence' house,\nAnd calls your grace usurper openly\nAnd vows to crown himself in Westminster.\nHis army is a ragged multitude\nOf hinds and peasants, rude and merciless:\nSir Humphrey Stafford and his brother's death\nHath given them heart and courage to proceed:\nAll scholars, lawyers, courtiers, gentlemen,\nThey call false caterpillars, and intend their death.\n\nKING HENRY VI:\nO graceless men! they know not what they do.\n\nBUCKINGHAM:\nMy gracious lord, return to Killingworth,\nUntil a power be raised to put them down.\n\nQUEEN MARGARET:\nAh, were the Duke of Suffolk now alive,\nThese Kentish rebels would be soon appeased!\n\nKING HENRY VI:\nLord Say, the traitors hate thee;\nTherefore away with us to Killingworth.\n\nSAY:\nSo might your grace's person be in danger.\nThe sight of me is odious in their eyes;\nAnd therefore in this city will I stay\nAnd live alone as secret as I may.\n\nMessenger:\nJack Cade hath gotten London bridge:\nThe citizens fly and forsake their houses:\nThe rascal people, thirsting after prey,\nJoin with the traitor, and they jointly swear\nTo spoil the city and your royal court.\n\nBUCKINGHAM:\nThen linger not, my lord, away, take horse.\n\nKING HENRY VI:\nCome, Margaret; God, our hope, will succor us.\n\nQUEEN MARGARET:\nMy hope is gone, now Suffolk is deceased.\n\nKING HENRY VI:\nFarewell, my lord: trust not the Kentish rebels.\n\nBUCKINGHAM:\nTrust nobody, for fear you be betray'd.\n\nSAY:\nThe trust I have is in mine innocence,\nAnd therefore am I bold and resolute.\n\nSCALES:\nHow now! is Jack Cade slain?\n\nFirst Citizen:\nNo, my lord, nor likely to be slain; for they have\nwon the bridge, killing all those that withstand\nthem: the lord mayor craves aid of your honour from\nthe Tower, to defend the city from the rebels.\n\nSCALES:\nSuch aid as I can spare you shall command;\nBut I am troubled here with them myself;\nThe rebels have assay'd to win the Tower.\nBut get you to Smithfield, and gather head,\nAnd thither I will send you Matthew Goffe;\nFight for your king, your country and your lives;\nAnd so, farewell, for I must hence again.\n\nCADE:\nNow is Mortimer lord of this city. And here, sitting\nupon London-stone, I charge and command that, of the\ncity's cost, the pissing-conduit run nothing but\nclaret wine this first year of our reign. And now\nhenceforward it shall be treason for any that calls\nme other than Lord Mortimer.\n\nSoldier:\nJack Cade! Jack Cade!\n\nCADE:\nKnock him down there.\n\nSMITH:\nIf this fellow be wise, he'll never call ye Jack\nCade more: I think he hath a very fair warning.\n\nDICK:\nMy lord, there's an army gathered together in\nSmithfield.\n\nCADE:\nCome, then, let's go fight with them; but first, go\nand set London bridge on fire; and, if you can, burn\ndown the Tower too. Come, let's away.\n\nCADE:\nSo, sirs: now go some and pull down the Savoy;\nothers to the inns of court; down with them all.\n\nDICK:\nI have a suit unto your lordship.\n\nCADE:\nBe it a lordship, thou shalt have it for that word.\n\nDICK:\nOnly that the laws of England may come out of your mouth.\n\nHOLLAND:\n\nSMITH:\n\nCADE:\nI have thought upon it, it shall be so. Away, burn\nall the records of the realm: my mouth shall be\nthe parliament of England.\n\nHOLLAND:\n\nCADE:\nAnd henceforward all things shall be in common.\n\nMessenger:\nMy lord, a prize, a prize! here's the Lord Say,\nwhich sold the towns in France; he that made us pay\none and twenty fifteens, and one shilling to the\npound, the last subsidy.\n\nCADE:\nWell, he shall be beheaded for it ten times. Ah,\nthou say, thou serge, nay, thou buckram lord! now\nart thou within point-blank of our jurisdiction\nregal. What canst thou answer to my majesty for\ngiving up of Normandy unto Mounsieur Basimecu, the\ndauphin of France? Be it known unto thee by these\npresence, even the presence of Lord Mortimer, that I\nam the besom that must sweep the court clean of such\nfilth as thou art. Thou hast most traitorously\ncorrupted the youth of the realm in erecting a\ngrammar school; and whereas, before, our forefathers\nhad no other books but the score and the tally, thou\nhast caused printing to be used, and, contrary to\nthe king, his crown and dignity, thou hast built a\npaper-mill. It will be proved to thy face that thou\nhast men about thee that usually talk of a noun and\na verb, and such abominable words as no Christian\near can endure to hear. Thou hast appointed\njustices of peace, to call poor men before them\nabout matters they were not able to answer.\nMoreover, thou hast put them in prison; and because\nthey could not read, thou hast hanged them; when,\nindeed, only for that cause they have been most\nworthy to live. Thou dost ride in a foot-cloth, dost thou not?\n\nSAY:\nWhat of that?\n\nCADE:\nMarry, thou oughtest not to let thy horse wear a\ncloak, when honester men than thou go in their hose\nand doublets.\n\nDICK:\nAnd work in their shirt too; as myself, for example,\nthat am a butcher.\n\nSAY:\nYou men of Kent,--\n\nDICK:\nWhat say you of Kent?\n\nSAY:\nNothing but this; 'tis 'bona terra, mala gens.'\n\nCADE:\nAway with him, away with him! he speaks Latin.\n\nSAY:\nHear me but speak, and bear me where you will.\nKent, in the Commentaries Caesar writ,\nIs term'd the civil'st place of this isle:\nSweet is the country, because full of riches;\nThe people liberal, valiant, active, wealthy;\nWhich makes me hope you are not void of pity.\nI sold not Maine, I lost not Normandy,\nYet, to recover them, would lose my life.\nJustice with favour have I always done;\nPrayers and tears have moved me, gifts could never.\nWhen have I aught exacted at your hands,\nBut to maintain the king, the realm and you?\nLarge gifts have I bestow'd on learned clerks,\nBecause my book preferr'd me to the king,\nAnd seeing ignorance is the curse of God,\nKnowledge the wing wherewith we fly to heaven,\nUnless you be possess'd with devilish spirits,\nYou cannot but forbear to murder me:\nThis tongue hath parley'd unto foreign kings\nFor your behoof,--\n\nCADE:\nTut, when struck'st thou one blow in the field?\n\nSAY:\nGreat men have reaching hands: oft have I struck\nThose that I never saw and struck them dead.\n\nBEVIS:\nO monstrous coward! what, to come behind folks?\n\nSAY:\nThese cheeks are pale for watching for your good.\n\nCADE:\nGive him a box o' the ear and that will make 'em red again.\n\nSAY:\nLong sitting to determine poor men's causes\nHath made me full of sickness and diseases.\n\nCADE:\nYe shall have a hempen caudle, then, and the help of hatchet.\n\nDICK:\nWhy dost thou quiver, man?\n\nSAY:\nThe palsy, and not fear, provokes me.\n\nCADE:\nNay, he nods at us, as who should say, I'll be even\nwith you: I'll see if his head will stand steadier\non a pole, or no. Take him away, and behead him.\n\nSAY:\nTell me wherein have I offended most?\nHave I affected wealth or honour? speak.\nAre my chests fill'd up with extorted gold?\nIs my apparel sumptuous to behold?\nWhom have I injured, that ye seek my death?\nThese hands are free from guiltless bloodshedding,\nThis breast from harbouring foul deceitful thoughts.\nO, let me live!\n\nCADE:\n\nALL:\nIt shall be done.\n\nSAY:\nAh, countrymen! if when you make your prayers,\nGod should be so obdurate as yourselves,\nHow would it fare with your departed souls?\nAnd therefore yet relent, and save my life.\n\nCADE:\nAway with him! and do as I command ye.\nThe proudest peer in the realm shall not wear a head\non his shoulders, unless he pay me tribute; there\nshall not a maid be married, but she shall pay to me\nher maidenhead ere they have it: men shall hold of\nme in capite; and we charge and command that their\nwives be as free as heart can wish or tongue can tell.\n\nDICK:\nMy lord, when shall we go to Cheapside and take up\ncommodities upon our bills?\n\nCADE:\nMarry, presently.\n\nALL:\nO, brave!\n\nCADE:\nBut is not this braver? Let them kiss one another,\nfor they loved well when they were alive. Now part\nthem again, lest they consult about the giving up of\nsome more towns in France. Soldiers, defer the\nspoil of the city until night: for with these borne\nbefore us, instead of maces, will we ride through\nthe streets, and at every corner have them kiss. Away!\n\nCADE:\nUp Fish Street! down Saint Magnus' Corner! Kill\nand knock down! throw them into Thames!\nWhat noise is this I hear? Dare any be so bold to\nsound retreat or parley, when I command them kill?\n\nBUCKINGHAM:\nAy, here they be that dare and will disturb thee:\nKnow, Cade, we come ambassadors from the king\nUnto the commons whom thou hast misled;\nAnd here pronounce free pardon to them all\nThat will forsake thee and go home in peace.\n\nCLIFFORD:\nWhat say ye, countrymen? will ye relent,\nAnd yield to mercy whilst 'tis offer'd you;\nOr let a rebel lead you to your deaths?\nWho loves the king and will embrace his pardon,\nFling up his cap, and say 'God save his majesty!'\nWho hateth him and honours not his father,\nHenry the Fifth, that made all France to quake,\nShake he his weapon at us and pass by.\n\nALL:\nGod save the king! God save the king!\n\nCADE:\nWhat, Buckingham and Clifford, are ye so brave? And\nyou, base peasants, do ye believe him? will you\nneeds be hanged with your pardons about your necks?\nHath my sword therefore broke through London gates,\nthat you should leave me at the White Hart in\nSouthwark? I thought ye would never have given out\nthese arms till you had recovered your ancient\nfreedom: but you are all recreants and dastards,\nand delight to live in slavery to the nobility. Let\nthem break your backs with burthens, take your\nhouses over your heads, ravish your wives and\ndaughters before your faces: for me, I will make\nshift for one; and so, God's curse light upon you\nall!\n\nALL:\nWe'll follow Cade, we'll follow Cade!\n\nCLIFFORD:\nIs Cade the son of Henry the Fifth,\nThat thus you do exclaim you'll go with him?\nWill he conduct you through the heart of France,\nAnd make the meanest of you earls and dukes?\nAlas, he hath no home, no place to fly to;\nNor knows he how to live but by the spoil,\nUnless by robbing of your friends and us.\nWere't not a shame, that whilst you live at jar,\nThe fearful French, whom you late vanquished,\nShould make a start o'er seas and vanquish you?\nMethinks already in this civil broil\nI see them lording it in London streets,\nCrying 'Villiago!' unto all they meet.\nBetter ten thousand base-born Cades miscarry\nThan you should stoop unto a Frenchman's mercy.\nTo France, to France, and get what you have lost;\nSpare England, for it is your native coast;\nHenry hath money, you are strong and manly;\nGod on our side, doubt not of victory.\n\nALL:\nA Clifford! a Clifford! we'll follow the king and Clifford.\n\nCADE:\nWas ever feather so lightly blown to and fro as this\nmultitude? The name of Henry the Fifth hales them\nto an hundred mischiefs, and makes them leave me\ndesolate. I see them lay their heads together to\nsurprise me. My sword make way for me, for here is\nno staying. In despite of the devils and hell, have\nthrough the very middest of you? and heavens and\nhonour be witness, that no want of resolution in me.\nbut only my followers' base and ignominious\ntreasons, makes me betake me to my heels.\n\nBUCKINGHAM:\nWhat, is he fled? Go some, and follow him;\nAnd he that brings his head unto the king\nShall have a thousand crowns for his reward.\nFollow me, soldiers: we'll devise a mean\nTo reconcile you all unto the king.\n\nKING HENRY VI:\nWas ever king that joy'd an earthly throne,\nAnd could command no more content than I?\nNo sooner was I crept out of my cradle\nBut I was made a king, at nine months old.\nWas never subject long'd to be a king\nAs I do long and wish to be a subject.\n\nBUCKINGHAM:\nHealth and glad tidings to your majesty!\n\nKING HENRY VI:\nWhy, Buckingham, is the traitor Cade surprised?\nOr is he but retired to make him strong?\n\nCLIFFORD:\nHe is fled, my lord, and all his powers do yield;\nAnd humbly thus, with halters on their necks,\nExpect your highness' doom of life or death.\n\nKING HENRY VI:\nThen, heaven, set ope thy everlasting gates,\nTo entertain my vows of thanks and praise!\nSoldiers, this day have you redeemed your lives,\nAnd show'd how well you love your prince and country:\nContinue still in this so good a mind,\nAnd Henry, though he be infortunate,\nAssure yourselves, will never be unkind:\nAnd so, with thanks and pardon to you all,\nI do dismiss you to your several countries.\n\nALL:\nGod save the king! God save the king!\n\nMessenger:\nPlease it your grace to be advertised\nThe Duke of York is newly come from Ireland,\nAnd with a puissant and a mighty power\nOf gallowglasses and stout kerns\nIs marching hitherward in proud array,\nAnd still proclaimeth, as he comes along,\nHis arms are only to remove from thee\nThe Duke of Somerset, whom he terms traitor.\n\nKING HENRY VI:\nThus stands my state, 'twixt Cade and York distress'd.\nLike to a ship that, having 'scaped a tempest,\nIs straightway calm'd and boarded with a pirate:\nBut now is Cade driven back, his men dispersed;\nAnd now is York in arms to second him.\nI pray thee, Buckingham, go and meet him,\nAnd ask him what's the reason of these arms.\nTell him I'll send Duke Edmund to the Tower;\nAnd, Somerset, we'll commit thee thither,\nUntil his army be dismiss'd from him.\n\nSOMERSET:\nMy lord,\nI'll yield myself to prison willingly,\nOr unto death, to do my country good.\n\nKING HENRY VI:\nIn any case, be not too rough in terms;\nFor he is fierce and cannot brook hard language.\n\nBUCKINGHAM:\nI will, my lord; and doubt not so to deal\nAs all things shall redound unto your good.\n\nKING HENRY VI:\nCome, wife, let's in, and learn to govern better;\nFor yet may England curse my wretched reign.\n\nCADE:\nFie on ambition! fie on myself, that have a sword,\nand yet am ready to famish! These five days have I\nhid me in these woods and durst not peep out, for\nall the country is laid for me; but now am I so\nhungry that if I might have a lease of my life for a\nthousand years I could stay no longer. Wherefore,\non a brick wall have I climbed into this garden, to\nsee if I can eat grass, or pick a sallet another\nwhile, which is not amiss to cool a man's stomach\nthis hot weather. And I think this word 'sallet'\nwas born to do me good: for many a time, but for a\nsallet, my brainpan had been cleft with a brown\nbill; and many a time, when I have been dry and\nbravely marching, it hath served me instead of a\nquart pot to drink in; and now the word 'sallet'\nmust serve me to feed on.\n\nIDEN:\nLord, who would live turmoiled in the court,\nAnd may enjoy such quiet walks as these?\nThis small inheritance my father left me\nContenteth me, and worth a monarchy.\nI seek not to wax great by others' waning,\nOr gather wealth, I care not, with what envy:\nSufficeth that I have maintains my state\nAnd sends the poor well pleased from my gate.\n\nCADE:\nHere's the lord of the soil come to seize me for a\nstray, for entering his fee-simple without leave.\nAh, villain, thou wilt betray me, and get a thousand\ncrowns of the king carrying my head to him: but\nI'll make thee eat iron like an ostrich, and swallow\nmy sword like a great pin, ere thou and I part.\n\nIDEN:\nWhy, rude companion, whatsoe'er thou be,\nI know thee not; why, then, should I betray thee?\nIs't not enough to break into my garden,\nAnd, like a thief, to come to rob my grounds,\nClimbing my walls in spite of me the owner,\nBut thou wilt brave me with these saucy terms?\n\nCADE:\nBrave thee! ay, by the best blood that ever was\nbroached, and beard thee too. Look on me well: I\nhave eat no meat these five days; yet, come thou and\nthy five men, and if I do not leave you all as dead\nas a doornail, I pray God I may never eat grass more.\n\nIDEN:\nNay, it shall ne'er be said, while England stands,\nThat Alexander Iden, an esquire of Kent,\nTook odds to combat a poor famish'd man.\nOppose thy steadfast-gazing eyes to mine,\nSee if thou canst outface me with thy looks:\nSet limb to limb, and thou art far the lesser;\nThy hand is but a finger to my fist,\nThy leg a stick compared with this truncheon;\nMy foot shall fight with all the strength thou hast;\nAnd if mine arm be heaved in the air,\nThy grave is digg'd already in the earth.\nAs for words, whose greatness answers words,\nLet this my sword report what speech forbears.\n\nCADE:\nBy my valour, the most complete champion that ever I\nheard! Steel, if thou turn the edge, or cut not out\nthe burly-boned clown in chines of beef ere thou\nsleep in thy sheath, I beseech God on my knees thou\nmayst be turned to hobnails.\nO, I am slain! famine and no other hath slain me:\nlet ten thousand devils come against me, and give me\nbut the ten meals I have lost, and I'll defy them\nall. Wither, garden; and be henceforth a\nburying-place to all that do dwell in this house,\nbecause the unconquered soul of Cade is fled.\n\nIDEN:\nIs't Cade that I have slain, that monstrous traitor?\nSword, I will hollow thee for this thy deed,\nAnd hang thee o'er my tomb when I am dead:\nNe'er shall this blood be wiped from thy point;\nBut thou shalt wear it as a herald's coat,\nTo emblaze the honour that thy master got.\n\nCADE:\nIden, farewell, and be proud of thy victory. Tell\nKent from me, she hath lost her best man, and exhort\nall the world to be cowards; for I, that never\nfeared any, am vanquished by famine, not by valour.\n\nIDEN:\nHow much thou wrong'st me, heaven be my judge.\nDie, damned wretch, the curse of her that bare thee;\nAnd as I thrust thy body in with my sword,\nSo wish I, I might thrust thy soul to hell.\nHence will I drag thee headlong by the heels\nUnto a dunghill which shall be thy grave,\nAnd there cut off thy most ungracious head;\nWhich I will bear in triumph to the king,\nLeaving thy trunk for crows to feed upon.\n\nYORK:\nFrom Ireland thus comes York to claim his right,\nAnd pluck the crown from feeble Henry's head:\nRing, bells, aloud; burn, bonfires, clear and bright,\nTo entertain great England's lawful king.\nAh! sancta majestas, who would not buy thee dear?\nLet them obey that know not how to rule;\nThis hand was made to handle naught but gold.\nI cannot give due action to my words,\nExcept a sword or sceptre balance it:\nA sceptre shall it have, have I a soul,\nOn which I'll toss the flower-de-luce of France.\nWhom have we here? Buckingham, to disturb me?\nThe king hath sent him, sure: I must dissemble.\n\nBUCKINGHAM:\nYork, if thou meanest well, I greet thee well.\n\nYORK:\nHumphrey of Buckingham, I accept thy greeting.\nArt thou a messenger, or come of pleasure?\n\nBUCKINGHAM:\nA messenger from Henry, our dread liege,\nTo know the reason of these arms in peace;\nOr why thou, being a subject as I am,\nAgainst thy oath and true allegiance sworn,\nShould raise so great a power without his leave,\nOr dare to bring thy force so near the court.\n\nYORK:\n\nBUCKINGHAM:\nThat is too much presumption on thy part:\nBut if thy arms be to no other end,\nThe king hath yielded unto thy demand:\nThe Duke of Somerset is in the Tower.\n\nYORK:\nUpon thine honour, is he prisoner?\n\nBUCKINGHAM:\nUpon mine honour, he is prisoner.\n\nYORK:\nThen, Buckingham, I do dismiss my powers.\nSoldiers, I thank you all; disperse yourselves;\nMeet me to-morrow in St. George's field,\nYou shall have pay and every thing you wish.\nAnd let my sovereign, virtuous Henry,\nCommand my eldest son, nay, all my sons,\nAs pledges of my fealty and love;\nI'll send them all as willing as I live:\nLands, goods, horse, armour, any thing I have,\nIs his to use, so Somerset may die.\n\nBUCKINGHAM:\nYork, I commend this kind submission:\nWe twain will go into his highness' tent.\n\nKING HENRY VI:\nBuckingham, doth York intend no harm to us,\nThat thus he marcheth with thee arm in arm?\n\nYORK:\nIn all submission and humility\nYork doth present himself unto your highness.\n\nKING HENRY VI:\nThen what intends these forces thou dost bring?\n\nYORK:\nTo heave the traitor Somerset from hence,\nAnd fight against that monstrous rebel Cade,\nWho since I heard to be discomfited.\n\nIDEN:\nIf one so rude and of so mean condition\nMay pass into the presence of a king,\nLo, I present your grace a traitor's head,\nThe head of Cade, whom I in combat slew.\n\nKING HENRY VI:\nThe head of Cade! Great God, how just art Thou!\nO, let me view his visage, being dead,\nThat living wrought me such exceeding trouble.\nTell me, my friend, art thou the man that slew him?\n\nIDEN:\nI was, an't like your majesty.\n\nKING HENRY VI:\nHow art thou call'd? and what is thy degree?\n\nIDEN:\nAlexander Iden, that's my name;\nA poor esquire of Kent, that loves his king.\n\nBUCKINGHAM:\nSo please it you, my lord, 'twere not amiss\nHe were created knight for his good service.\n\nKING HENRY VI:\nIden, kneel down.\nRise up a knight.\nWe give thee for reward a thousand marks,\nAnd will that thou henceforth attend on us.\n\nIDEN:\nMay Iden live to merit such a bounty.\nAnd never live but true unto his liege!\n\nKING HENRY VI:\nSee, Buckingham, Somerset comes with the queen:\nGo, bid her hide him quickly from the duke.\n\nQUEEN MARGARET:\nFor thousand Yorks he shall not hide his head,\nBut boldly stand and front him to his face.\n\nYORK:\nHow now! is Somerset at liberty?\nThen, York, unloose thy long-imprison'd thoughts,\nAnd let thy tongue be equal with thy heart.\nShall I endure the sight of Somerset?\nFalse king! why hast thou broken faith with me,\nKnowing how hardly I can brook abuse?\nKing did I call thee? no, thou art not king,\nNot fit to govern and rule multitudes,\nWhich darest not, no, nor canst not rule a traitor.\nThat head of thine doth not become a crown;\nThy hand is made to grasp a palmer's staff,\nAnd not to grace an awful princely sceptre.\nThat gold must round engirt these brows of mine,\nWhose smile and frown, like to Achilles' spear,\nIs able with the change to kill and cure.\nHere is a hand to hold a sceptre up\nAnd with the same to act controlling laws.\nGive place: by heaven, thou shalt rule no more\nO'er him whom heaven created for thy ruler.\n\nSOMERSET:\nO monstrous traitor! I arrest thee, York,\nOf capital treason 'gainst the king and crown;\nObey, audacious traitor; kneel for grace.\n\nYORK:\nWouldst have me kneel? first let me ask of these,\nIf they can brook I bow a knee to man.\nSirrah, call in my sons to be my bail;\nI know, ere they will have me go to ward,\nThey'll pawn their swords for my enfranchisement.\n\nQUEEN MARGARET:\nCall hither Clifford! bid him come amain,\nTo say if that the bastard boys of York\nShall be the surety for their traitor father.\n\nYORK:\nO blood-besotted Neapolitan,\nOutcast of Naples, England's bloody scourge!\nThe sons of York, thy betters in their birth,\nShall be their father's bail; and bane to those\nThat for my surety will refuse the boys!\nSee where they come: I'll warrant they'll\nmake it good.\n\nQUEEN MARGARET:\nAnd here comes Clifford to deny their bail.\n\nCLIFFORD:\nHealth and all happiness to my lord the king!\n\nYORK:\nI thank thee, Clifford: say, what news with thee?\nNay, do not fright us with an angry look;\nWe are thy sovereign, Clifford, kneel again;\nFor thy mistaking so, we pardon thee.\n\nCLIFFORD:\nThis is my king, York, I do not mistake;\nBut thou mistakest me much to think I do:\nTo Bedlam with him! is the man grown mad?\n\nKING HENRY VI:\nAy, Clifford; a bedlam and ambitious humour\nMakes him oppose himself against his king.\n\nCLIFFORD:\nHe is a traitor; let him to the Tower,\nAnd chop away that factious pate of his.\n\nQUEEN MARGARET:\nHe is arrested, but will not obey;\nHis sons, he says, shall give their words for him.\n\nYORK:\nWill you not, sons?\n\nEDWARD:\nAy, noble father, if our words will serve.\n\nRICHARD:\nAnd if words will not, then our weapons shall.\n\nCLIFFORD:\nWhy, what a brood of traitors have we here!\n\nYORK:\nLook in a glass, and call thy image so:\nI am thy king, and thou a false-heart traitor.\nCall hither to the stake my two brave bears,\nThat with the very shaking of their chains\nThey may astonish these fell-lurking curs:\nBid Salisbury and Warwick come to me.\n\nCLIFFORD:\nAre these thy bears? we'll bait thy bears to death.\nAnd manacle the bear-ward in their chains,\nIf thou darest bring them to the baiting place.\n\nRICHARD:\nOft have I seen a hot o'erweening cur\nRun back and bite, because he was withheld;\nWho, being suffer'd with the bear's fell paw,\nHath clapp'd his tail between his legs and cried:\nAnd such a piece of service will you do,\nIf you oppose yourselves to match Lord Warwick.\n\nCLIFFORD:\nHence, heap of wrath, foul indigested lump,\nAs crooked in thy manners as thy shape!\n\nYORK:\nNay, we shall heat you thoroughly anon.\n\nCLIFFORD:\nTake heed, lest by your heat you burn yourselves.\n\nKING HENRY VI:\nWhy, Warwick, hath thy knee forgot to bow?\nOld Salisbury, shame to thy silver hair,\nThou mad misleader of thy brain-sick son!\nWhat, wilt thou on thy death-bed play the ruffian,\nAnd seek for sorrow with thy spectacles?\nO, where is faith? O, where is loyalty?\nIf it be banish'd from the frosty head,\nWhere shall it find a harbour in the earth?\nWilt thou go dig a grave to find out war,\nAnd shame thine honourable age with blood?\nWhy art thou old, and want'st experience?\nOr wherefore dost abuse it, if thou hast it?\nFor shame! in duty bend thy knee to me\nThat bows unto the grave with mickle age.\n\nSALISBURY:\nMy lord, I have consider'd with myself\nThe title of this most renowned duke;\nAnd in my conscience do repute his grace\nThe rightful heir to England's royal seat.\n\nKING HENRY VI:\nHast thou not sworn allegiance unto me?\n\nSALISBURY:\nI have.\n\nKING HENRY VI:\nCanst thou dispense with heaven for such an oath?\n\nSALISBURY:\nIt is great sin to swear unto a sin,\nBut greater sin to keep a sinful oath.\nWho can be bound by any solemn vow\nTo do a murderous deed, to rob a man,\nTo force a spotless virgin's chastity,\nTo reave the orphan of his patrimony,\nTo wring the widow from her custom'd right,\nAnd have no other reason for this wrong\nBut that he was bound by a solemn oath?\n\nQUEEN MARGARET:\nA subtle traitor needs no sophister.\n\nKING HENRY VI:\nCall Buckingham, and bid him arm himself.\n\nYORK:\nCall Buckingham, and all the friends thou hast,\nI am resolved for death or dignity.\n\nCLIFFORD:\nThe first I warrant thee, if dreams prove true.\n\nWARWICK:\nYou were best to go to bed and dream again,\nTo keep thee from the tempest of the field.\n\nCLIFFORD:\nI am resolved to bear a greater storm\nThan any thou canst conjure up to-day;\nAnd that I'll write upon thy burgonet,\nMight I but know thee by thy household badge.\n\nWARWICK:\nNow, by my father's badge, old Nevil's crest,\nThe rampant bear chain'd to the ragged staff,\nThis day I'll wear aloft my burgonet,\nAs on a mountain top the cedar shows\nThat keeps his leaves in spite of any storm,\nEven to affright thee with the view thereof.\n\nCLIFFORD:\nAnd from thy burgonet I'll rend thy bear\nAnd tread it under foot with all contempt,\nDespite the bear-ward that protects the bear.\n\nYOUNG CLIFFORD:\nAnd so to arms, victorious father,\nTo quell the rebels and their complices.\n\nRICHARD:\nFie! charity, for shame! speak not in spite,\nFor you shall sup with Jesu Christ to-night.\n\nYOUNG CLIFFORD:\nFoul stigmatic, that's more than thou canst tell.\n\nRICHARD:\nIf not in heaven, you'll surely sup in hell.\n\nWARWICK:\nClifford of Cumberland, 'tis Warwick calls:\nAnd if thou dost not hide thee from the bear,\nNow, when the angry trumpet sounds alarum\nAnd dead men's cries do fill the empty air,\nClifford, I say, come forth and fight with me:\nProud northern lord, Clifford of Cumberland,\nWarwick is hoarse with calling thee to arms.\nHow now, my noble lord? what, all afoot?\n\nYORK:\nThe deadly-handed Clifford slew my steed,\nBut match to match I have encounter'd him\nAnd made a prey for carrion kites and crows\nEven of the bonny beast he loved so well.\n\nWARWICK:\nOf one or both of us the time is come.\n\nYORK:\nHold, Warwick, seek thee out some other chase,\nFor I myself must hunt this deer to death.\n\nWARWICK:\nThen, nobly, York; 'tis for a crown thou fight'st.\nAs I intend, Clifford, to thrive to-day,\nIt grieves my soul to leave thee unassail'd.\n\nCLIFFORD:\nWhat seest thou in me, York? why dost thou pause?\n\nYORK:\nWith thy brave bearing should I be in love,\nBut that thou art so fast mine enemy.\n\nCLIFFORD:\nNor should thy prowess want praise and esteem,\nBut that 'tis shown ignobly and in treason.\n\nYORK:\nSo let it help me now against thy sword\nAs I in justice and true right express it.\n\nCLIFFORD:\nMy soul and body on the action both!\n\nYORK:\nA dreadful lay! Address thee instantly.\n\nCLIFFORD:\nLa fin couronne les oeuvres.\n\nYORK:\nThus war hath given thee peace, for thou art still.\nPeace with his soul, heaven, if it be thy will!\n\nYOUNG CLIFFORD:\nShame and confusion! all is on the rout;\nFear frames disorder, and disorder wounds\nWhere it should guard. O war, thou son of hell,\nWhom angry heavens do make their minister\nThrow in the frozen bosoms of our part\nHot coals of vengeance! Let no soldier fly.\nHe that is truly dedicate to war\nHath no self-love, nor he that loves himself\nHath not essentially but by circumstance\nThe name of valour.\nO, let the vile world end,\nAnd the premised flames of the last day\nKnit earth and heaven together!\nNow let the general trumpet blow his blast,\nParticularities and petty sounds\nTo cease! Wast thou ordain'd, dear father,\nTo lose thy youth in peace, and to achieve\nThe silver livery of advised age,\nAnd, in thy reverence and thy chair-days, thus\nTo die in ruffian battle? Even at this sight\nMy heart is turn'd to stone: and while 'tis mine,\nIt shall be stony. York not our old men spares;\nNo more will I their babes: tears virginal\nShall be to me even as the dew to fire,\nAnd beauty that the tyrant oft reclaims\nShall to my flaming wrath be oil and flax.\nHenceforth I will not have to do with pity:\nMeet I an infant of the house of York,\nInto as many gobbets will I cut it\nAs wild Medea young Absyrtus did:\nIn cruelty will I seek out my fame.\nCome, thou new ruin of old Clifford's house:\nAs did AEneas old Anchises bear,\nSo bear I thee upon my manly shoulders;\nBut then AEneas bare a living load,\nNothing so heavy as these woes of mine.\n\nRICHARD:\nSo, lie thou there;\nFor underneath an alehouse' paltry sign,\nThe Castle in Saint Alban's, Somerset\nHath made the wizard famous in his death.\nSword, hold thy temper; heart, be wrathful still:\nPriests pray for enemies, but princes kill.\n\nQUEEN MARGARET:\nAway, my lord! you are slow; for shame, away!\n\nKING HENRY VI:\nCan we outrun the heavens? good Margaret, stay.\n\nQUEEN MARGARET:\nWhat are you made of? you'll nor fight nor fly:\nNow is it manhood, wisdom and defence,\nTo give the enemy way, and to secure us\nBy what we can, which can no more but fly.\nIf you be ta'en, we then should see the bottom\nOf all our fortunes: but if we haply scape,\nAs well we may, if not through your neglect,\nWe shall to London get, where you are loved\nAnd where this breach now in our fortunes made\nMay readily be stopp'd.\n\nYOUNG CLIFFORD:\nBut that my heart's on future mischief set,\nI would speak blasphemy ere bid you fly:\nBut fly you must; uncurable discomfit\nReigns in the hearts of all our present parts.\nAway, for your relief! and we will live\nTo see their day and them our fortune give:\nAway, my lord, away!\n\nYORK:\nOf Salisbury, who can report of him,\nThat winter lion, who in rage forgets\nAged contusions and all brush of time,\nAnd, like a gallant in the brow of youth,\nRepairs him with occasion? This happy day\nIs not itself, nor have we won one foot,\nIf Salisbury be lost.\n\nRICHARD:\nMy noble father,\nThree times to-day I holp him to his horse,\nThree times bestrid him; thrice I led him off,\nPersuaded him from any further act:\nBut still, where danger was, still there I met him;\nAnd like rich hangings in a homely house,\nSo was his will in his old feeble body.\nBut, noble as he is, look where he comes.\n\nSALISBURY:\nNow, by my sword, well hast thou fought to-day;\nBy the mass, so did we all. I thank you, Richard:\nGod knows how long it is I have to live;\nAnd it hath pleased him that three times to-day\nYou have defended me from imminent death.\nWell, lords, we have not got that which we have:\n'Tis not enough our foes are this time fled,\nBeing opposites of such repairing nature.\n\nYORK:\nI know our safety is to follow them;\nFor, as I hear, the king is fled to London,\nTo call a present court of parliament.\nLet us pursue him ere the writs go forth.\nWhat says Lord Warwick? shall we after them?\n\nWARWICK:\nAfter them! nay, before them, if we can.\nNow, by my faith, lords, 'twas a glorious day:\nSaint Alban's battle won by famous York\nShall be eternized in all age to come.\nSound drums and trumpets, and to London all:\nAnd more such days as these to us befall!\n\nDUKE ORSINO:\nIf music be the food of love, play on;\nGive me excess of it, that, surfeiting,\nThe appetite may sicken, and so die.\nThat strain again! it had a dying fall:\nO, it came o'er my ear like the sweet sound,\nThat breathes upon a bank of violets,\nStealing and giving odour! Enough; no more:\n'Tis not so sweet now as it was before.\nO spirit of love! how quick and fresh art thou,\nThat, notwithstanding thy capacity\nReceiveth as the sea, nought enters there,\nOf what validity and pitch soe'er,\nBut falls into abatement and low price,\nEven in a minute: so full of shapes is fancy\nThat it alone is high fantastical.\n\nCURIO:\nWill you go hunt, my lord?\n\nDUKE ORSINO:\nWhat, Curio?\n\nCURIO:\nThe hart.\n\nDUKE ORSINO:\nWhy, so I do, the noblest that I have:\nO, when mine eyes did see Olivia first,\nMethought she purged the air of pestilence!\nThat instant was I turn'd into a hart;\nAnd my desires, like fell and cruel hounds,\nE'er since pursue me.\nHow now! what news from her?\n\nVALENTINE:\nSo please my lord, I might not be admitted;\nBut from her handmaid do return this answer:\nThe element itself, till seven years' heat,\nShall not behold her face at ample view;\nBut, like a cloistress, she will veiled walk\nAnd water once a day her chamber round\nWith eye-offending brine: all this to season\nA brother's dead love, which she would keep fresh\nAnd lasting in her sad remembrance.\n\nDUKE ORSINO:\nO, she that hath a heart of that fine frame\nTo pay this debt of love but to a brother,\nHow will she love, when the rich golden shaft\nHath kill'd the flock of all affections else\nThat live in her; when liver, brain and heart,\nThese sovereign thrones, are all supplied, and fill'd\nHer sweet perfections with one self king!\nAway before me to sweet beds of flowers:\nLove-thoughts lie rich when canopied with bowers.\n\nVIOLA:\nWhat country, friends, is this?\n\nCaptain:\nThis is Illyria, lady.\n\nVIOLA:\nAnd what should I do in Illyria?\nMy brother he is in Elysium.\nPerchance he is not drown'd: what think you, sailors?\n\nCaptain:\nIt is perchance that you yourself were saved.\n\nVIOLA:\nO my poor brother! and so perchance may he be.\n\nCaptain:\nTrue, madam: and, to comfort you with chance,\nAssure yourself, after our ship did split,\nWhen you and those poor number saved with you\nHung on our driving boat, I saw your brother,\nMost provident in peril, bind himself,\nCourage and hope both teaching him the practise,\nTo a strong mast that lived upon the sea;\nWhere, like Arion on the dolphin's back,\nI saw him hold acquaintance with the waves\nSo long as I could see.\n\nVIOLA:\nFor saying so, there's gold:\nMine own escape unfoldeth to my hope,\nWhereto thy speech serves for authority,\nThe like of him. Know'st thou this country?\n\nCaptain:\nAy, madam, well; for I was bred and born\nNot three hours' travel from this very place.\n\nVIOLA:\nWho governs here?\n\nCaptain:\nA noble duke, in nature as in name.\n\nVIOLA:\nWhat is the name?\n\nCaptain:\nOrsino.\n\nVIOLA:\nOrsino! I have heard my father name him:\nHe was a bachelor then.\n\nCaptain:\nAnd so is now, or was so very late;\nFor but a month ago I went from hence,\nAnd then 'twas fresh in murmur,--as, you know,\nWhat great ones do the less will prattle of,--\nThat he did seek the love of fair Olivia.\n\nVIOLA:\nWhat's she?\n\nCaptain:\nA virtuous maid, the daughter of a count\nThat died some twelvemonth since, then leaving her\nIn the protection of his son, her brother,\nWho shortly also died: for whose dear love,\nThey say, she hath abjured the company\nAnd sight of men.\n\nVIOLA:\nO that I served that lady\nAnd might not be delivered to the world,\nTill I had made mine own occasion mellow,\nWhat my estate is!\n\nCaptain:\nThat were hard to compass;\nBecause she will admit no kind of suit,\nNo, not the duke's.\n\nVIOLA:\nThere is a fair behavior in thee, captain;\nAnd though that nature with a beauteous wall\nDoth oft close in pollution, yet of thee\nI will believe thou hast a mind that suits\nWith this thy fair and outward character.\nI prithee, and I'll pay thee bounteously,\nConceal me what I am, and be my aid\nFor such disguise as haply shall become\nThe form of my intent. I'll serve this duke:\nThou shall present me as an eunuch to him:\nIt may be worth thy pains; for I can sing\nAnd speak to him in many sorts of music\nThat will allow me very worth his service.\nWhat else may hap to time I will commit;\nOnly shape thou thy silence to my wit.\n\nCaptain:\nBe you his eunuch, and your mute I'll be:\nWhen my tongue blabs, then let mine eyes not see.\n\nVIOLA:\nI thank thee: lead me on.\n\nSIR TOBY BELCH:\nWhat a plague means my niece, to take the death of\nher brother thus? I am sure care's an enemy to life.\n\nMARIA:\nBy my troth, Sir Toby, you must come in earlier o'\nnights: your cousin, my lady, takes great\nexceptions to your ill hours.\n\nSIR TOBY BELCH:\nWhy, let her except, before excepted.\n\nMARIA:\nAy, but you must confine yourself within the modest\nlimits of order.\n\nSIR TOBY BELCH:\nConfine! I'll confine myself no finer than I am:\nthese clothes are good enough to drink in; and so be\nthese boots too: an they be not, let them hang\nthemselves in their own straps.\n\nMARIA:\nThat quaffing and drinking will undo you: I heard\nmy lady talk of it yesterday; and of a foolish\nknight that you brought in one night here to be her wooer.\n\nSIR TOBY BELCH:\nWho, Sir Andrew Aguecheek?\n\nMARIA:\nAy, he.\n\nSIR TOBY BELCH:\nHe's as tall a man as any's in Illyria.\n\nMARIA:\nWhat's that to the purpose?\n\nSIR TOBY BELCH:\nWhy, he has three thousand ducats a year.\n\nMARIA:\nAy, but he'll have but a year in all these ducats:\nhe's a very fool and a prodigal.\n\nSIR TOBY BELCH:\nFie, that you'll say so! he plays o' the\nviol-de-gamboys, and speaks three or four languages\nword for word without book, and hath all the good\ngifts of nature.\n\nMARIA:\nHe hath indeed, almost natural: for besides that\nhe's a fool, he's a great quarreller: and but that\nhe hath the gift of a coward to allay the gust he\nhath in quarrelling, 'tis thought among the prudent\nhe would quickly have the gift of a grave.\n\nSIR TOBY BELCH:\nBy this hand, they are scoundrels and subtractors\nthat say so of him. Who are they?\n\nMARIA:\nThey that add, moreover, he's drunk nightly in your company.\n\nSIR TOBY BELCH:\nWith drinking healths to my niece: I'll drink to\nher as long as there is a passage in my throat and\ndrink in Illyria: he's a coward and a coystrill\nthat will not drink to my niece till his brains turn\no' the toe like a parish-top. What, wench!\nCastiliano vulgo! for here comes Sir Andrew Agueface.\n\nSIR ANDREW:\nSir Toby Belch! how now, Sir Toby Belch!\n\nSIR TOBY BELCH:\nSweet Sir Andrew!\n\nSIR ANDREW:\nBless you, fair shrew.\n\nMARIA:\nAnd you too, sir.\n\nSIR TOBY BELCH:\nAccost, Sir Andrew, accost.\n\nSIR ANDREW:\nWhat's that?\n\nSIR TOBY BELCH:\nMy niece's chambermaid.\n\nSIR ANDREW:\nGood Mistress Accost, I desire better acquaintance.\n\nMARIA:\nMy name is Mary, sir.\n\nSIR ANDREW:\nGood Mistress Mary Accost,--\n\nSIR TOBY BELCH:\nYou mistake, knight; 'accost' is front her, board\nher, woo her, assail her.\n\nSIR ANDREW:\nBy my troth, I would not undertake her in this\ncompany. Is that the meaning of 'accost'?\n\nMARIA:\nFare you well, gentlemen.\n\nSIR TOBY BELCH:\nAn thou let part so, Sir Andrew, would thou mightst\nnever draw sword again.\n\nSIR ANDREW:\nAn you part so, mistress, I would I might never\ndraw sword again. Fair lady, do you think you have\nfools in hand?\n\nMARIA:\nSir, I have not you by the hand.\n\nSIR ANDREW:\nMarry, but you shall have; and here's my hand.\n\nMARIA:\nNow, sir, 'thought is free:' I pray you, bring\nyour hand to the buttery-bar and let it drink.\n\nSIR ANDREW:\nWherefore, sweet-heart? what's your metaphor?\n\nMARIA:\nIt's dry, sir.\n\nSIR ANDREW:\nWhy, I think so: I am not such an ass but I can\nkeep my hand dry. But what's your jest?\n\nMARIA:\nA dry jest, sir.\n\nSIR ANDREW:\nAre you full of them?\n\nMARIA:\nAy, sir, I have them at my fingers' ends: marry,\nnow I let go your hand, I am barren.\n\nSIR TOBY BELCH:\nO knight thou lackest a cup of canary: when did I\nsee thee so put down?\n\nSIR ANDREW:\nNever in your life, I think; unless you see canary\nput me down. Methinks sometimes I have no more wit\nthan a Christian or an ordinary man has: but I am a\ngreat eater of beef and I believe that does harm to my wit.\n\nSIR TOBY BELCH:\nNo question.\n\nSIR ANDREW:\nAn I thought that, I'ld forswear it. I'll ride home\nto-morrow, Sir Toby.\n\nSIR TOBY BELCH:\nPourquoi, my dear knight?\n\nSIR ANDREW:\nWhat is 'Pourquoi'? do or not do? I would I had\nbestowed that time in the tongues that I have in\nfencing, dancing and bear-baiting: O, had I but\nfollowed the arts!\n\nSIR TOBY BELCH:\nThen hadst thou had an excellent head of hair.\n\nSIR ANDREW:\nWhy, would that have mended my hair?\n\nSIR TOBY BELCH:\nPast question; for thou seest it will not curl by nature.\n\nSIR ANDREW:\nBut it becomes me well enough, does't not?\n\nSIR TOBY BELCH:\nExcellent; it hangs like flax on a distaff; and I\nhope to see a housewife take thee between her legs\nand spin it off.\n\nSIR ANDREW:\nFaith, I'll home to-morrow, Sir Toby: your niece\nwill not be seen; or if she be, it's four to one\nshe'll none of me: the count himself here hard by woos her.\n\nSIR TOBY BELCH:\nShe'll none o' the count: she'll not match above\nher degree, neither in estate, years, nor wit; I\nhave heard her swear't. Tut, there's life in't,\nman.\n\nSIR ANDREW:\nI'll stay a month longer. I am a fellow o' the\nstrangest mind i' the world; I delight in masques\nand revels sometimes altogether.\n\nSIR TOBY BELCH:\nArt thou good at these kickshawses, knight?\n\nSIR ANDREW:\nAs any man in Illyria, whatsoever he be, under the\ndegree of my betters; and yet I will not compare\nwith an old man.\n\nSIR TOBY BELCH:\nWhat is thy excellence in a galliard, knight?\n\nSIR ANDREW:\nFaith, I can cut a caper.\n\nSIR TOBY BELCH:\nAnd I can cut the mutton to't.\n\nSIR ANDREW:\nAnd I think I have the back-trick simply as strong\nas any man in Illyria.\n\nSIR TOBY BELCH:\nWherefore are these things hid? wherefore have\nthese gifts a curtain before 'em? are they like to\ntake dust, like Mistress Mall's picture? why dost\nthou not go to church in a galliard and come home in\na coranto? My very walk should be a jig; I would not\nso much as make water but in a sink-a-pace. What\ndost thou mean? Is it a world to hide virtues in?\nI did think, by the excellent constitution of thy\nleg, it was formed under the star of a galliard.\n\nSIR ANDREW:\nAy, 'tis strong, and it does indifferent well in a\nflame-coloured stock. Shall we set about some revels?\n\nSIR TOBY BELCH:\nWhat shall we do else? were we not born under Taurus?\n\nSIR ANDREW:\nTaurus! That's sides and heart.\n\nSIR TOBY BELCH:\nNo, sir; it is legs and thighs. Let me see the\ncaper; ha! higher: ha, ha! excellent!\n\nVALENTINE:\nIf the duke continue these favours towards you,\nCesario, you are like to be much advanced: he hath\nknown you but three days, and already you are no stranger.\n\nVIOLA:\nYou either fear his humour or my negligence, that\nyou call in question the continuance of his love:\nis he inconstant, sir, in his favours?\n\nVALENTINE:\nNo, believe me.\n\nVIOLA:\nI thank you. Here comes the count.\n\nDUKE ORSINO:\nWho saw Cesario, ho?\n\nVIOLA:\nOn your attendance, my lord; here.\n\nDUKE ORSINO:\nStand you a while aloof, Cesario,\nThou know'st no less but all; I have unclasp'd\nTo thee the book even of my secret soul:\nTherefore, good youth, address thy gait unto her;\nBe not denied access, stand at her doors,\nAnd tell them, there thy fixed foot shall grow\nTill thou have audience.\n\nVIOLA:\nSure, my noble lord,\nIf she be so abandon'd to her sorrow\nAs it is spoke, she never will admit me.\n\nDUKE ORSINO:\nBe clamorous and leap all civil bounds\nRather than make unprofited return.\n\nVIOLA:\nSay I do speak with her, my lord, what then?\n\nDUKE ORSINO:\nO, then unfold the passion of my love,\nSurprise her with discourse of my dear faith:\nIt shall become thee well to act my woes;\nShe will attend it better in thy youth\nThan in a nuncio's of more grave aspect.\n\nVIOLA:\nI think not so, my lord.\n\nDUKE ORSINO:\nDear lad, believe it;\nFor they shall yet belie thy happy years,\nThat say thou art a man: Diana's lip\nIs not more smooth and rubious; thy small pipe\nIs as the maiden's organ, shrill and sound,\nAnd all is semblative a woman's part.\nI know thy constellation is right apt\nFor this affair. Some four or five attend him;\nAll, if you will; for I myself am best\nWhen least in company. Prosper well in this,\nAnd thou shalt live as freely as thy lord,\nTo call his fortunes thine.\n\nVIOLA:\nI'll do my best\nTo woo your lady:\nyet, a barful strife!\nWhoe'er I woo, myself would be his wife.\n\nMARIA:\nNay, either tell me where thou hast been, or I will\nnot open my lips so wide as a bristle may enter in\nway of thy excuse: my lady will hang thee for thy absence.\n\nClown:\nLet her hang me: he that is well hanged in this\nworld needs to fear no colours.\n\nMARIA:\nMake that good.\n\nClown:\nHe shall see none to fear.\n\nMARIA:\nA good lenten answer: I can tell thee where that\nsaying was born, of 'I fear no colours.'\n\nClown:\nWhere, good Mistress Mary?\n\nMARIA:\nIn the wars; and that may you be bold to say in your foolery.\n\nClown:\nWell, God give them wisdom that have it; and those\nthat are fools, let them use their talents.\n\nMARIA:\nYet you will be hanged for being so long absent; or,\nto be turned away, is not that as good as a hanging to you?\n\nClown:\nMany a good hanging prevents a bad marriage; and,\nfor turning away, let summer bear it out.\n\nMARIA:\nYou are resolute, then?\n\nClown:\nNot so, neither; but I am resolved on two points.\n\nMARIA:\nThat if one break, the other will hold; or, if both\nbreak, your gaskins fall.\n\nClown:\nApt, in good faith; very apt. Well, go thy way; if\nSir Toby would leave drinking, thou wert as witty a\npiece of Eve's flesh as any in Illyria.\n\nMARIA:\nPeace, you rogue, no more o' that. Here comes my\nlady: make your excuse wisely, you were best.\n\nClown:\nWit, an't be thy will, put me into good fooling!\nThose wits, that think they have thee, do very oft\nprove fools; and I, that am sure I lack thee, may\npass for a wise man: for what says Quinapalus?\n'Better a witty fool, than a foolish wit.'\nGod bless thee, lady!\n\nOLIVIA:\nTake the fool away.\n\nClown:\nDo you not hear, fellows? Take away the lady.\n\nOLIVIA:\nGo to, you're a dry fool; I'll no more of you:\nbesides, you grow dishonest.\n\nClown:\nTwo faults, madonna, that drink and good counsel\nwill amend: for give the dry fool drink, then is\nthe fool not dry: bid the dishonest man mend\nhimself; if he mend, he is no longer dishonest; if\nhe cannot, let the botcher mend him. Any thing\nthat's mended is but patched: virtue that\ntransgresses is but patched with sin; and sin that\namends is but patched with virtue. If that this\nsimple syllogism will serve, so; if it will not,\nwhat remedy? As there is no true cuckold but\ncalamity, so beauty's a flower. The lady bade take\naway the fool; therefore, I say again, take her away.\n\nOLIVIA:\nSir, I bade them take away you.\n\nClown:\nMisprision in the highest degree! Lady, cucullus non\nfacit monachum; that's as much to say as I wear not\nmotley in my brain. Good madonna, give me leave to\nprove you a fool.\n\nOLIVIA:\nCan you do it?\n\nClown:\nDexterously, good madonna.\n\nOLIVIA:\nMake your proof.\n\nClown:\nI must catechise you for it, madonna: good my mouse\nof virtue, answer me.\n\nOLIVIA:\nWell, sir, for want of other idleness, I'll bide your proof.\n\nClown:\nGood madonna, why mournest thou?\n\nOLIVIA:\nGood fool, for my brother's death.\n\nClown:\nI think his soul is in hell, madonna.\n\nOLIVIA:\nI know his soul is in heaven, fool.\n\nClown:\nThe more fool, madonna, to mourn for your brother's\nsoul being in heaven. Take away the fool, gentlemen.\n\nOLIVIA:\nWhat think you of this fool, Malvolio? doth he not mend?\n\nMALVOLIO:\nYes, and shall do till the pangs of death shake him:\ninfirmity, that decays the wise, doth ever make the\nbetter fool.\n\nClown:\nGod send you, sir, a speedy infirmity, for the\nbetter increasing your folly! Sir Toby will be\nsworn that I am no fox; but he will not pass his\nword for two pence that you are no fool.\n\nOLIVIA:\nHow say you to that, Malvolio?\n\nMALVOLIO:\nI marvel your ladyship takes delight in such a\nbarren rascal: I saw him put down the other day\nwith an ordinary fool that has no more brain\nthan a stone. Look you now, he's out of his guard\nalready; unless you laugh and minister occasion to\nhim, he is gagged. I protest, I take these wise men,\nthat crow so at these set kind of fools, no better\nthan the fools' zanies.\n\nOLIVIA:\nOh, you are sick of self-love, Malvolio, and taste\nwith a distempered appetite. To be generous,\nguiltless and of free disposition, is to take those\nthings for bird-bolts that you deem cannon-bullets:\nthere is no slander in an allowed fool, though he do\nnothing but rail; nor no railing in a known discreet\nman, though he do nothing but reprove.\n\nClown:\nNow Mercury endue thee with leasing, for thou\nspeakest well of fools!\n\nMARIA:\nMadam, there is at the gate a young gentleman much\ndesires to speak with you.\n\nOLIVIA:\nFrom the Count Orsino, is it?\n\nMARIA:\nI know not, madam: 'tis a fair young man, and well attended.\n\nOLIVIA:\nWho of my people hold him in delay?\n\nMARIA:\nSir Toby, madam, your kinsman.\n\nOLIVIA:\nFetch him off, I pray you; he speaks nothing but\nmadman: fie on him!\nGo you, Malvolio: if it be a suit from the count, I\nam sick, or not at home; what you will, to dismiss it.\nNow you see, sir, how your fooling grows old, and\npeople dislike it.\n\nClown:\nThou hast spoke for us, madonna, as if thy eldest\nson should be a fool; whose skull Jove cram with\nbrains! for,--here he comes,--one of thy kin has a\nmost weak pia mater.\n\nOLIVIA:\nBy mine honour, half drunk. What is he at the gate, cousin?\n\nSIR TOBY BELCH:\nA gentleman.\n\nOLIVIA:\nA gentleman! what gentleman?\n\nSIR TOBY BELCH:\n'Tis a gentle man here--a plague o' these\npickle-herring! How now, sot!\n\nClown:\nGood Sir Toby!\n\nOLIVIA:\nCousin, cousin, how have you come so early by this lethargy?\n\nSIR TOBY BELCH:\nLechery! I defy lechery. There's one at the gate.\n\nOLIVIA:\nAy, marry, what is he?\n\nSIR TOBY BELCH:\nLet him be the devil, an he will, I care not: give\nme faith, say I. Well, it's all one.\n\nOLIVIA:\nWhat's a drunken man like, fool?\n\nClown:\nLike a drowned man, a fool and a mad man: one\ndraught above heat makes him a fool; the second mads\nhim; and a third drowns him.\n\nOLIVIA:\nGo thou and seek the crowner, and let him sit o' my\ncoz; for he's in the third degree of drink, he's\ndrowned: go, look after him.\n\nClown:\nHe is but mad yet, madonna; and the fool shall look\nto the madman.\n\nMALVOLIO:\nMadam, yond young fellow swears he will speak with\nyou. I told him you were sick; he takes on him to\nunderstand so much, and therefore comes to speak\nwith you. I told him you were asleep; he seems to\nhave a foreknowledge of that too, and therefore\ncomes to speak with you. What is to be said to him,\nlady? he's fortified against any denial.\n\nOLIVIA:\nTell him he shall not speak with me.\n\nMALVOLIO:\nHas been told so; and he says, he'll stand at your\ndoor like a sheriff's post, and be the supporter to\na bench, but he'll speak with you.\n\nOLIVIA:\nWhat kind o' man is he?\n\nMALVOLIO:\nWhy, of mankind.\n\nOLIVIA:\nWhat manner of man?\n\nMALVOLIO:\nOf very ill manner; he'll speak with you, will you or no.\n\nOLIVIA:\nOf what personage and years is he?\n\nMALVOLIO:\nNot yet old enough for a man, nor young enough for\na boy; as a squash is before 'tis a peascod, or a\ncooling when 'tis almost an apple: 'tis with him\nin standing water, between boy and man. He is very\nwell-favoured and he speaks very shrewishly; one\nwould think his mother's milk were scarce out of him.\n\nOLIVIA:\nLet him approach: call in my gentlewoman.\n\nMALVOLIO:\nGentlewoman, my lady calls.\n\nOLIVIA:\nGive me my veil: come, throw it o'er my face.\nWe'll once more hear Orsino's embassy.\n\nVIOLA:\nThe honourable lady of the house, which is she?\n\nOLIVIA:\nSpeak to me; I shall answer for her.\nYour will?\n\nVIOLA:\nMost radiant, exquisite and unmatchable beauty,--I\npray you, tell me if this be the lady of the house,\nfor I never saw her: I would be loath to cast away\nmy speech, for besides that it is excellently well\npenned, I have taken great pains to con it. Good\nbeauties, let me sustain no scorn; I am very\ncomptible, even to the least sinister usage.\n\nOLIVIA:\nWhence came you, sir?\n\nVIOLA:\nI can say little more than I have studied, and that\nquestion's out of my part. Good gentle one, give me\nmodest assurance if you be the lady of the house,\nthat I may proceed in my speech.\n\nOLIVIA:\nAre you a comedian?\n\nVIOLA:\nNo, my profound heart: and yet, by the very fangs\nof malice I swear, I am not that I play. Are you\nthe lady of the house?\n\nOLIVIA:\nIf I do not usurp myself, I am.\n\nVIOLA:\nMost certain, if you are she, you do usurp\nyourself; for what is yours to bestow is not yours\nto reserve. But this is from my commission: I will\non with my speech in your praise, and then show you\nthe heart of my message.\n\nOLIVIA:\nCome to what is important in't: I forgive you the praise.\n\nVIOLA:\nAlas, I took great pains to study it, and 'tis poetical.\n\nOLIVIA:\nIt is the more like to be feigned: I pray you,\nkeep it in. I heard you were saucy at my gates,\nand allowed your approach rather to wonder at you\nthan to hear you. If you be not mad, be gone; if\nyou have reason, be brief: 'tis not that time of\nmoon with me to make one in so skipping a dialogue.\n\nMARIA:\nWill you hoist sail, sir? here lies your way.\n\nVIOLA:\nNo, good swabber; I am to hull here a little\nlonger. Some mollification for your giant, sweet\nlady. Tell me your mind: I am a messenger.\n\nOLIVIA:\nSure, you have some hideous matter to deliver, when\nthe courtesy of it is so fearful. Speak your office.\n\nVIOLA:\nIt alone concerns your ear. I bring no overture of\nwar, no taxation of homage: I hold the olive in my\nhand; my words are as fun of peace as matter.\n\nOLIVIA:\nYet you began rudely. What are you? what would you?\n\nVIOLA:\nThe rudeness that hath appeared in me have I\nlearned from my entertainment. What I am, and what I\nwould, are as secret as maidenhead; to your ears,\ndivinity, to any other's, profanation.\n\nOLIVIA:\nGive us the place alone: we will hear this divinity.\nNow, sir, what is your text?\n\nVIOLA:\nMost sweet lady,--\n\nOLIVIA:\nA comfortable doctrine, and much may be said of it.\nWhere lies your text?\n\nVIOLA:\nIn Orsino's bosom.\n\nOLIVIA:\nIn his bosom! In what chapter of his bosom?\n\nVIOLA:\nTo answer by the method, in the first of his heart.\n\nOLIVIA:\nO, I have read it: it is heresy. Have you no more to say?\n\nVIOLA:\nGood madam, let me see your face.\n\nOLIVIA:\nHave you any commission from your lord to negotiate\nwith my face? You are now out of your text: but\nwe will draw the curtain and show you the picture.\nLook you, sir, such a one I was this present: is't\nnot well done?\n\nVIOLA:\nExcellently done, if God did all.\n\nOLIVIA:\n'Tis in grain, sir; 'twill endure wind and weather.\n\nVIOLA:\n'Tis beauty truly blent, whose red and white\nNature's own sweet and cunning hand laid on:\nLady, you are the cruell'st she alive,\nIf you will lead these graces to the grave\nAnd leave the world no copy.\n\nOLIVIA:\nO, sir, I will not be so hard-hearted; I will give\nout divers schedules of my beauty: it shall be\ninventoried, and every particle and utensil\nlabelled to my will: as, item, two lips,\nindifferent red; item, two grey eyes, with lids to\nthem; item, one neck, one chin, and so forth. Were\nyou sent hither to praise me?\n\nVIOLA:\nI see you what you are, you are too proud;\nBut, if you were the devil, you are fair.\nMy lord and master loves you: O, such love\nCould be but recompensed, though you were crown'd\nThe nonpareil of beauty!\n\nOLIVIA:\nHow does he love me?\n\nVIOLA:\nWith adorations, fertile tears,\nWith groans that thunder love, with sighs of fire.\n\nOLIVIA:\nYour lord does know my mind; I cannot love him:\nYet I suppose him virtuous, know him noble,\nOf great estate, of fresh and stainless youth;\nIn voices well divulged, free, learn'd and valiant;\nAnd in dimension and the shape of nature\nA gracious person: but yet I cannot love him;\nHe might have took his answer long ago.\n\nVIOLA:\nIf I did love you in my master's flame,\nWith such a suffering, such a deadly life,\nIn your denial I would find no sense;\nI would not understand it.\n\nOLIVIA:\nWhy, what would you?\n\nVIOLA:\nMake me a willow cabin at your gate,\nAnd call upon my soul within the house;\nWrite loyal cantons of contemned love\nAnd sing them loud even in the dead of night;\nHalloo your name to the reverberate hills\nAnd make the babbling gossip of the air\nCry out 'Olivia!' O, You should not rest\nBetween the elements of air and earth,\nBut you should pity me!\n\nOLIVIA:\nYou might do much.\nWhat is your parentage?\n\nVIOLA:\nAbove my fortunes, yet my state is well:\nI am a gentleman.\n\nOLIVIA:\nGet you to your lord;\nI cannot love him: let him send no more;\nUnless, perchance, you come to me again,\nTo tell me how he takes it. Fare you well:\nI thank you for your pains: spend this for me.\n\nVIOLA:\nI am no fee'd post, lady; keep your purse:\nMy master, not myself, lacks recompense.\nLove make his heart of flint that you shall love;\nAnd let your fervor, like my master's, be\nPlaced in contempt! Farewell, fair cruelty.\n\nOLIVIA:\n'What is your parentage?'\n'Above my fortunes, yet my state is well:\nI am a gentleman.' I'll be sworn thou art;\nThy tongue, thy face, thy limbs, actions and spirit,\nDo give thee five-fold blazon: not too fast:\nsoft, soft!\nUnless the master were the man. How now!\nEven so quickly may one catch the plague?\nMethinks I feel this youth's perfections\nWith an invisible and subtle stealth\nTo creep in at mine eyes. Well, let it be.\nWhat ho, Malvolio!\n\nMALVOLIO:\nHere, madam, at your service.\n\nOLIVIA:\nRun after that same peevish messenger,\nThe county's man: he left this ring behind him,\nWould I or not: tell him I'll none of it.\nDesire him not to flatter with his lord,\nNor hold him up with hopes; I am not for him:\nIf that the youth will come this way to-morrow,\nI'll give him reasons for't: hie thee, Malvolio.\n\nMALVOLIO:\nMadam, I will.\n\nOLIVIA:\nI do I know not what, and fear to find\nMine eye too great a flatterer for my mind.\nFate, show thy force: ourselves we do not owe;\nWhat is decreed must be, and be this so.\n\nANTONIO:\nWill you stay no longer? nor will you not that I go with you?\n\nSEBASTIAN:\nBy your patience, no. My stars shine darkly over\nme: the malignancy of my fate might perhaps\ndistemper yours; therefore I shall crave of you your\nleave that I may bear my evils alone: it were a bad\nrecompense for your love, to lay any of them on you.\n\nANTONIO:\nLet me yet know of you whither you are bound.\n\nSEBASTIAN:\nNo, sooth, sir: my determinate voyage is mere\nextravagancy. But I perceive in you so excellent a\ntouch of modesty, that you will not extort from me\nwhat I am willing to keep in; therefore it charges\nme in manners the rather to express myself. You\nmust know of me then, Antonio, my name is Sebastian,\nwhich I called Roderigo. My father was that\nSebastian of Messaline, whom I know you have heard\nof. He left behind him myself and a sister, both\nborn in an hour: if the heavens had been pleased,\nwould we had so ended! but you, sir, altered that;\nfor some hour before you took me from the breach of\nthe sea was my sister drowned.\n\nANTONIO:\nAlas the day!\n\nSEBASTIAN:\nA lady, sir, though it was said she much resembled\nme, was yet of many accounted beautiful: but,\nthough I could not with such estimable wonder\noverfar believe that, yet thus far I will boldly\npublish her; she bore a mind that envy could not but\ncall fair. She is drowned already, sir, with salt\nwater, though I seem to drown her remembrance again with more.\n\nANTONIO:\nPardon me, sir, your bad entertainment.\n\nSEBASTIAN:\nO good Antonio, forgive me your trouble.\n\nANTONIO:\nIf you will not murder me for my love, let me be\nyour servant.\n\nSEBASTIAN:\nIf you will not undo what you have done, that is,\nkill him whom you have recovered, desire it not.\nFare ye well at once: my bosom is full of kindness,\nand I am yet so near the manners of my mother, that\nupon the least occasion more mine eyes will tell\ntales of me. I am bound to the Count Orsino's court: farewell.\n\nANTONIO:\nThe gentleness of all the gods go with thee!\nI have many enemies in Orsino's court,\nElse would I very shortly see thee there.\nBut, come what may, I do adore thee so,\nThat danger shall seem sport, and I will go.\n\nMALVOLIO:\nWere not you even now with the Countess Olivia?\n\nVIOLA:\nEven now, sir; on a moderate pace I have since\narrived but hither.\n\nMALVOLIO:\nShe returns this ring to you, sir: you might have\nsaved me my pains, to have taken it away yourself.\nShe adds, moreover, that you should put your lord\ninto a desperate assurance she will none of him:\nand one thing more, that you be never so hardy to\ncome again in his affairs, unless it be to report\nyour lord's taking of this. Receive it so.\n\nVIOLA:\nShe took the ring of me: I'll none of it.\n\nMALVOLIO:\nCome, sir, you peevishly threw it to her; and her\nwill is, it should be so returned: if it be worth\nstooping for, there it lies in your eye; if not, be\nit his that finds it.\n\nVIOLA:\nI left no ring with her: what means this lady?\nFortune forbid my outside have not charm'd her!\nShe made good view of me; indeed, so much,\nThat sure methought her eyes had lost her tongue,\nFor she did speak in starts distractedly.\nShe loves me, sure; the cunning of her passion\nInvites me in this churlish messenger.\nNone of my lord's ring! why, he sent her none.\nI am the man: if it be so, as 'tis,\nPoor lady, she were better love a dream.\nDisguise, I see, thou art a wickedness,\nWherein the pregnant enemy does much.\nHow easy is it for the proper-false\nIn women's waxen hearts to set their forms!\nAlas, our frailty is the cause, not we!\nFor such as we are made of, such we be.\nHow will this fadge? my master loves her dearly;\nAnd I, poor monster, fond as much on him;\nAnd she, mistaken, seems to dote on me.\nWhat will become of this? As I am man,\nMy state is desperate for my master's love;\nAs I am woman,--now alas the day!--\nWhat thriftless sighs shall poor Olivia breathe!\nO time! thou must untangle this, not I;\nIt is too hard a knot for me to untie!\n\nSIR TOBY BELCH:\nApproach, Sir Andrew: not to be abed after\nmidnight is to be up betimes; and 'diluculo\nsurgere,' thou know'st,--\n\nSIR ANDREW:\nNay, my troth, I know not: but I know, to be up\nlate is to be up late.\n\nSIR TOBY BELCH:\nA false conclusion: I hate it as an unfilled can.\nTo be up after midnight and to go to bed then, is\nearly: so that to go to bed after midnight is to go\nto bed betimes. Does not our life consist of the\nfour elements?\n\nSIR ANDREW:\nFaith, so they say; but I think it rather consists\nof eating and drinking.\n\nSIR TOBY BELCH:\nThou'rt a scholar; let us therefore eat and drink.\nMarian, I say! a stoup of wine!\n\nSIR ANDREW:\nHere comes the fool, i' faith.\n\nClown:\nHow now, my hearts! did you never see the picture\nof 'we three'?\n\nSIR TOBY BELCH:\nWelcome, ass. Now let's have a catch.\n\nSIR ANDREW:\nBy my troth, the fool has an excellent breast. I\nhad rather than forty shillings I had such a leg,\nand so sweet a breath to sing, as the fool has. In\nsooth, thou wast in very gracious fooling last\nnight, when thou spokest of Pigrogromitus, of the\nVapians passing the equinoctial of Queubus: 'twas\nvery good, i' faith. I sent thee sixpence for thy\nleman: hadst it?\n\nClown:\nI did impeticos thy gratillity; for Malvolio's nose\nis no whipstock: my lady has a white hand, and the\nMyrmidons are no bottle-ale houses.\n\nSIR ANDREW:\nExcellent! why, this is the best fooling, when all\nis done. Now, a song.\n\nSIR TOBY BELCH:\nCome on; there is sixpence for you: let's have a song.\n\nSIR ANDREW:\nThere's a testril of me too: if one knight give a--\n\nClown:\nWould you have a love-song, or a song of good life?\n\nSIR TOBY BELCH:\nA love-song, a love-song.\n\nSIR ANDREW:\nAy, ay: I care not for good life.\n\nClown:\n\nSIR ANDREW:\nExcellent good, i' faith.\n\nSIR TOBY BELCH:\nGood, good.\n\nClown:\n\nSIR ANDREW:\nA mellifluous voice, as I am true knight.\n\nSIR TOBY BELCH:\nA contagious breath.\n\nSIR ANDREW:\nVery sweet and contagious, i' faith.\n\nSIR TOBY BELCH:\nTo hear by the nose, it is dulcet in contagion.\nBut shall we make the welkin dance indeed? shall we\nrouse the night-owl in a catch that will draw three\nsouls out of one weaver? shall we do that?\n\nSIR ANDREW:\nAn you love me, let's do't: I am dog at a catch.\n\nClown:\nBy'r lady, sir, and some dogs will catch well.\n\nSIR ANDREW:\nMost certain. Let our catch be, 'Thou knave.'\n\nClown:\n'Hold thy peace, thou knave,' knight? I shall be\nconstrained in't to call thee knave, knight.\n\nSIR ANDREW:\n'Tis not the first time I have constrained one to\ncall me knave. Begin, fool: it begins 'Hold thy peace.'\n\nClown:\nI shall never begin if I hold my peace.\n\nSIR ANDREW:\nGood, i' faith. Come, begin.\n\nMARIA:\nWhat a caterwauling do you keep here! If my lady\nhave not called up her steward Malvolio and bid him\nturn you out of doors, never trust me.\n\nSIR TOBY BELCH:\nMy lady's a Cataian, we are politicians, Malvolio's\na Peg-a-Ramsey, and 'Three merry men be we.' Am not\nI consanguineous? am I not of her blood?\nTillyvally. Lady!\n'There dwelt a man in Babylon, lady, lady!'\n\nClown:\nBeshrew me, the knight's in admirable fooling.\n\nSIR ANDREW:\nAy, he does well enough if he be disposed, and so do\nI too: he does it with a better grace, but I do it\nmore natural.\n\nSIR TOBY BELCH:\n\nMARIA:\nFor the love o' God, peace!\n\nMALVOLIO:\nMy masters, are you mad? or what are you? Have ye\nno wit, manners, nor honesty, but to gabble like\ntinkers at this time of night? Do ye make an\nalehouse of my lady's house, that ye squeak out your\ncoziers' catches without any mitigation or remorse\nof voice? Is there no respect of place, persons, nor\ntime in you?\n\nSIR TOBY BELCH:\nWe did keep time, sir, in our catches. Sneck up!\n\nMALVOLIO:\nSir Toby, I must be round with you. My lady bade me\ntell you, that, though she harbours you as her\nkinsman, she's nothing allied to your disorders. If\nyou can separate yourself and your misdemeanors, you\nare welcome to the house; if not, an it would please\nyou to take leave of her, she is very willing to bid\nyou farewell.\n\nSIR TOBY BELCH:\n'Farewell, dear heart, since I must needs be gone.'\n\nMARIA:\nNay, good Sir Toby.\n\nClown:\n'His eyes do show his days are almost done.'\n\nMALVOLIO:\nIs't even so?\n\nSIR TOBY BELCH:\n'But I will never die.'\n\nClown:\nSir Toby, there you lie.\n\nMALVOLIO:\nThis is much credit to you.\n\nSIR TOBY BELCH:\n'Shall I bid him go?'\n\nClown:\n'What an if you do?'\n\nSIR TOBY BELCH:\n'Shall I bid him go, and spare not?'\n\nClown:\n'O no, no, no, no, you dare not.'\n\nSIR TOBY BELCH:\nOut o' tune, sir: ye lie. Art any more than a\nsteward? Dost thou think, because thou art\nvirtuous, there shall be no more cakes and ale?\n\nClown:\nYes, by Saint Anne, and ginger shall be hot i' the\nmouth too.\n\nSIR TOBY BELCH:\nThou'rt i' the right. Go, sir, rub your chain with\ncrumbs. A stoup of wine, Maria!\n\nMALVOLIO:\nMistress Mary, if you prized my lady's favour at any\nthing more than contempt, you would not give means\nfor this uncivil rule: she shall know of it, by this hand.\n\nMARIA:\nGo shake your ears.\n\nSIR ANDREW:\n'Twere as good a deed as to drink when a man's\na-hungry, to challenge him the field, and then to\nbreak promise with him and make a fool of him.\n\nSIR TOBY BELCH:\nDo't, knight: I'll write thee a challenge: or I'll\ndeliver thy indignation to him by word of mouth.\n\nMARIA:\nSweet Sir Toby, be patient for tonight: since the\nyouth of the count's was today with thy lady, she is\nmuch out of quiet. For Monsieur Malvolio, let me\nalone with him: if I do not gull him into a\nnayword, and make him a common recreation, do not\nthink I have wit enough to lie straight in my bed:\nI know I can do it.\n\nSIR TOBY BELCH:\nPossess us, possess us; tell us something of him.\n\nMARIA:\nMarry, sir, sometimes he is a kind of puritan.\n\nSIR ANDREW:\nO, if I thought that I'ld beat him like a dog!\n\nSIR TOBY BELCH:\nWhat, for being a puritan? thy exquisite reason,\ndear knight?\n\nSIR ANDREW:\nI have no exquisite reason for't, but I have reason\ngood enough.\n\nMARIA:\nThe devil a puritan that he is, or any thing\nconstantly, but a time-pleaser; an affectioned ass,\nthat cons state without book and utters it by great\nswarths: the best persuaded of himself, so\ncrammed, as he thinks, with excellencies, that it is\nhis grounds of faith that all that look on him love\nhim; and on that vice in him will my revenge find\nnotable cause to work.\n\nSIR TOBY BELCH:\nWhat wilt thou do?\n\nMARIA:\nI will drop in his way some obscure epistles of\nlove; wherein, by the colour of his beard, the shape\nof his leg, the manner of his gait, the expressure\nof his eye, forehead, and complexion, he shall find\nhimself most feelingly personated. I can write very\nlike my lady your niece: on a forgotten matter we\ncan hardly make distinction of our hands.\n\nSIR TOBY BELCH:\nExcellent! I smell a device.\n\nSIR ANDREW:\nI have't in my nose too.\n\nSIR TOBY BELCH:\nHe shall think, by the letters that thou wilt drop,\nthat they come from my niece, and that she's in\nlove with him.\n\nMARIA:\nMy purpose is, indeed, a horse of that colour.\n\nSIR ANDREW:\nAnd your horse now would make him an ass.\n\nMARIA:\nAss, I doubt not.\n\nSIR ANDREW:\nO, 'twill be admirable!\n\nMARIA:\nSport royal, I warrant you: I know my physic will\nwork with him. I will plant you two, and let the\nfool make a third, where he shall find the letter:\nobserve his construction of it. For this night, to\nbed, and dream on the event. Farewell.\n\nSIR TOBY BELCH:\nGood night, Penthesilea.\n\nSIR ANDREW:\nBefore me, she's a good wench.\n\nSIR TOBY BELCH:\nShe's a beagle, true-bred, and one that adores me:\nwhat o' that?\n\nSIR ANDREW:\nI was adored once too.\n\nSIR TOBY BELCH:\nLet's to bed, knight. Thou hadst need send for\nmore money.\n\nSIR ANDREW:\nIf I cannot recover your niece, I am a foul way out.\n\nSIR TOBY BELCH:\nSend for money, knight: if thou hast her not i'\nthe end, call me cut.\n\nSIR ANDREW:\nIf I do not, never trust me, take it how you will.\n\nSIR TOBY BELCH:\nCome, come, I'll go burn some sack; 'tis too late\nto go to bed now: come, knight; come, knight.\n\nDUKE ORSINO:\nGive me some music. Now, good morrow, friends.\nNow, good Cesario, but that piece of song,\nThat old and antique song we heard last night:\nMethought it did relieve my passion much,\nMore than light airs and recollected terms\nOf these most brisk and giddy-paced times:\nCome, but one verse.\n\nCURIO:\nHe is not here, so please your lordship that should sing it.\n\nDUKE ORSINO:\nWho was it?\n\nCURIO:\nFeste, the jester, my lord; a fool that the lady\nOlivia's father took much delight in. He is about the house.\n\nDUKE ORSINO:\nSeek him out, and play the tune the while.\nCome hither, boy: if ever thou shalt love,\nIn the sweet pangs of it remember me;\nFor such as I am all true lovers are,\nUnstaid and skittish in all motions else,\nSave in the constant image of the creature\nThat is beloved. How dost thou like this tune?\n\nVIOLA:\nIt gives a very echo to the seat\nWhere Love is throned.\n\nDUKE ORSINO:\nThou dost speak masterly:\nMy life upon't, young though thou art, thine eye\nHath stay'd upon some favour that it loves:\nHath it not, boy?\n\nVIOLA:\nA little, by your favour.\n\nDUKE ORSINO:\nWhat kind of woman is't?\n\nVIOLA:\nOf your complexion.\n\nDUKE ORSINO:\nShe is not worth thee, then. What years, i' faith?\n\nVIOLA:\nAbout your years, my lord.\n\nDUKE ORSINO:\nToo old by heaven: let still the woman take\nAn elder than herself: so wears she to him,\nSo sways she level in her husband's heart:\nFor, boy, however we do praise ourselves,\nOur fancies are more giddy and unfirm,\nMore longing, wavering, sooner lost and worn,\nThan women's are.\n\nVIOLA:\nI think it well, my lord.\n\nDUKE ORSINO:\nThen let thy love be younger than thyself,\nOr thy affection cannot hold the bent;\nFor women are as roses, whose fair flower\nBeing once display'd, doth fall that very hour.\n\nVIOLA:\nAnd so they are: alas, that they are so;\nTo die, even when they to perfection grow!\n\nDUKE ORSINO:\nO, fellow, come, the song we had last night.\nMark it, Cesario, it is old and plain;\nThe spinsters and the knitters in the sun\nAnd the free maids that weave their thread with bones\nDo use to chant it: it is silly sooth,\nAnd dallies with the innocence of love,\nLike the old age.\n\nClown:\nAre you ready, sir?\n\nDUKE ORSINO:\nAy; prithee, sing.\n\nClown:\nCome away, come away, death,\nAnd in sad cypress let me be laid;\nFly away, fly away breath;\nI am slain by a fair cruel maid.\nMy shroud of white, stuck all with yew,\nO, prepare it!\nMy part of death, no one so true\nDid share it.\nNot a flower, not a flower sweet\nOn my black coffin let there be strown;\nNot a friend, not a friend greet\nMy poor corpse, where my bones shall be thrown:\nA thousand thousand sighs to save,\nLay me, O, where\nSad true lover never find my grave,\nTo weep there!\n\nDUKE ORSINO:\nThere's for thy pains.\n\nClown:\nNo pains, sir: I take pleasure in singing, sir.\n\nDUKE ORSINO:\nI'll pay thy pleasure then.\n\nClown:\nTruly, sir, and pleasure will be paid, one time or another.\n\nDUKE ORSINO:\nGive me now leave to leave thee.\n\nClown:\nNow, the melancholy god protect thee; and the\ntailor make thy doublet of changeable taffeta, for\nthy mind is a very opal. I would have men of such\nconstancy put to sea, that their business might be\nevery thing and their intent every where; for that's\nit that always makes a good voyage of nothing. Farewell.\n\nDUKE ORSINO:\nLet all the rest give place.\nOnce more, Cesario,\nGet thee to yond same sovereign cruelty:\nTell her, my love, more noble than the world,\nPrizes not quantity of dirty lands;\nThe parts that fortune hath bestow'd upon her,\nTell her, I hold as giddily as fortune;\nBut 'tis that miracle and queen of gems\nThat nature pranks her in attracts my soul.\n\nVIOLA:\nBut if she cannot love you, sir?\n\nDUKE ORSINO:\nI cannot be so answer'd.\n\nVIOLA:\nSooth, but you must.\nSay that some lady, as perhaps there is,\nHath for your love a great a pang of heart\nAs you have for Olivia: you cannot love her;\nYou tell her so; must she not then be answer'd?\n\nDUKE ORSINO:\nThere is no woman's sides\nCan bide the beating of so strong a passion\nAs love doth give my heart; no woman's heart\nSo big, to hold so much; they lack retention\nAlas, their love may be call'd appetite,\nNo motion of the liver, but the palate,\nThat suffer surfeit, cloyment and revolt;\nBut mine is all as hungry as the sea,\nAnd can digest as much: make no compare\nBetween that love a woman can bear me\nAnd that I owe Olivia.\n\nVIOLA:\nAy, but I know--\n\nDUKE ORSINO:\nWhat dost thou know?\n\nVIOLA:\nToo well what love women to men may owe:\nIn faith, they are as true of heart as we.\nMy father had a daughter loved a man,\nAs it might be, perhaps, were I a woman,\nI should your lordship.\n\nDUKE ORSINO:\nAnd what's her history?\n\nVIOLA:\nA blank, my lord. She never told her love,\nBut let concealment, like a worm i' the bud,\nFeed on her damask cheek: she pined in thought,\nAnd with a green and yellow melancholy\nShe sat like patience on a monument,\nSmiling at grief. Was not this love indeed?\nWe men may say more, swear more: but indeed\nOur shows are more than will; for still we prove\nMuch in our vows, but little in our love.\n\nDUKE ORSINO:\nBut died thy sister of her love, my boy?\n\nVIOLA:\nI am all the daughters of my father's house,\nAnd all the brothers too: and yet I know not.\nSir, shall I to this lady?\n\nDUKE ORSINO:\nAy, that's the theme.\nTo her in haste; give her this jewel; say,\nMy love can give no place, bide no denay.\n\nSIR TOBY BELCH:\nCome thy ways, Signior Fabian.\n\nFABIAN:\nNay, I'll come: if I lose a scruple of this sport,\nlet me be boiled to death with melancholy.\n\nSIR TOBY BELCH:\nWouldst thou not be glad to have the niggardly\nrascally sheep-biter come by some notable shame?\n\nFABIAN:\nI would exult, man: you know, he brought me out o'\nfavour with my lady about a bear-baiting here.\n\nSIR TOBY BELCH:\nTo anger him we'll have the bear again; and we will\nfool him black and blue: shall we not, Sir Andrew?\n\nSIR ANDREW:\nAn we do not, it is pity of our lives.\n\nSIR TOBY BELCH:\nHere comes the little villain.\nHow now, my metal of India!\n\nMARIA:\nGet ye all three into the box-tree: Malvolio's\ncoming down this walk: he has been yonder i' the\nsun practising behavior to his own shadow this half\nhour: observe him, for the love of mockery; for I\nknow this letter will make a contemplative idiot of\nhim. Close, in the name of jesting! Lie thou there,\nfor here comes the trout that must be caught with tickling.\n\nMALVOLIO:\n'Tis but fortune; all is fortune. Maria once told\nme she did affect me: and I have heard herself come\nthus near, that, should she fancy, it should be one\nof my complexion. Besides, she uses me with a more\nexalted respect than any one else that follows her.\nWhat should I think on't?\n\nSIR TOBY BELCH:\nHere's an overweening rogue!\n\nFABIAN:\nO, peace! Contemplation makes a rare turkey-cock\nof him: how he jets under his advanced plumes!\n\nSIR ANDREW:\n'Slight, I could so beat the rogue!\n\nSIR TOBY BELCH:\nPeace, I say.\n\nMALVOLIO:\nTo be Count Malvolio!\n\nSIR TOBY BELCH:\nAh, rogue!\n\nSIR ANDREW:\nPistol him, pistol him.\n\nSIR TOBY BELCH:\nPeace, peace!\n\nMALVOLIO:\nThere is example for't; the lady of the Strachy\nmarried the yeoman of the wardrobe.\n\nSIR ANDREW:\nFie on him, Jezebel!\n\nFABIAN:\nO, peace! now he's deeply in: look how\nimagination blows him.\n\nMALVOLIO:\nHaving been three months married to her, sitting in\nmy state,--\n\nSIR TOBY BELCH:\nO, for a stone-bow, to hit him in the eye!\n\nMALVOLIO:\nCalling my officers about me, in my branched velvet\ngown; having come from a day-bed, where I have left\nOlivia sleeping,--\n\nSIR TOBY BELCH:\nFire and brimstone!\n\nFABIAN:\nO, peace, peace!\n\nMALVOLIO:\nAnd then to have the humour of state; and after a\ndemure travel of regard, telling them I know my\nplace as I would they should do theirs, to for my\nkinsman Toby,--\n\nSIR TOBY BELCH:\nBolts and shackles!\n\nFABIAN:\nO peace, peace, peace! now, now.\n\nMALVOLIO:\nSeven of my people, with an obedient start, make\nout for him: I frown the while; and perchance wind\nup watch, or play with my--some rich jewel. Toby\napproaches; courtesies there to me,--\n\nSIR TOBY BELCH:\nShall this fellow live?\n\nFABIAN:\nThough our silence be drawn from us with cars, yet peace.\n\nMALVOLIO:\nI extend my hand to him thus, quenching my familiar\nsmile with an austere regard of control,--\n\nSIR TOBY BELCH:\nAnd does not Toby take you a blow o' the lips then?\n\nMALVOLIO:\nSaying, 'Cousin Toby, my fortunes having cast me on\nyour niece give me this prerogative of speech,'--\n\nSIR TOBY BELCH:\nWhat, what?\n\nMALVOLIO:\n'You must amend your drunkenness.'\n\nSIR TOBY BELCH:\nOut, scab!\n\nFABIAN:\nNay, patience, or we break the sinews of our plot.\n\nMALVOLIO:\n'Besides, you waste the treasure of your time with\na foolish knight,'--\n\nSIR ANDREW:\nThat's me, I warrant you.\n\nMALVOLIO:\n'One Sir Andrew,'--\n\nSIR ANDREW:\nI knew 'twas I; for many do call me fool.\n\nMALVOLIO:\nWhat employment have we here?\n\nFABIAN:\nNow is the woodcock near the gin.\n\nSIR TOBY BELCH:\nO, peace! and the spirit of humour intimate reading\naloud to him!\n\nMALVOLIO:\nBy my life, this is my lady's hand these be her\nvery C's, her U's and her T's and thus makes she her\ngreat P's. It is, in contempt of question, her hand.\n\nSIR ANDREW:\nHer C's, her U's and her T's: why that?\n\nMALVOLIO:\n\nFABIAN:\nThis wins him, liver and all.\n\nMALVOLIO:\n\nSIR TOBY BELCH:\nMarry, hang thee, brock!\n\nMALVOLIO:\n\nFABIAN:\nA fustian riddle!\n\nSIR TOBY BELCH:\nExcellent wench, say I.\n\nMALVOLIO:\n'M, O, A, I, doth sway my life.' Nay, but first, let\nme see, let me see, let me see.\n\nFABIAN:\nWhat dish o' poison has she dressed him!\n\nSIR TOBY BELCH:\nAnd with what wing the staniel cheques at it!\n\nMALVOLIO:\n'I may command where I adore.' Why, she may command\nme: I serve her; she is my lady. Why, this is\nevident to any formal capacity; there is no\nobstruction in this: and the end,--what should\nthat alphabetical position portend? If I could make\nthat resemble something in me,--Softly! M, O, A,\nI,--\n\nSIR TOBY BELCH:\nO, ay, make up that: he is now at a cold scent.\n\nFABIAN:\nSowter will cry upon't for all this, though it be as\nrank as a fox.\n\nMALVOLIO:\nM,--Malvolio; M,--why, that begins my name.\n\nFABIAN:\nDid not I say he would work it out? the cur is\nexcellent at faults.\n\nMALVOLIO:\nM,--but then there is no consonancy in the sequel;\nthat suffers under probation A should follow but O does.\n\nFABIAN:\nAnd O shall end, I hope.\n\nSIR TOBY BELCH:\nAy, or I'll cudgel him, and make him cry O!\n\nMALVOLIO:\nAnd then I comes behind.\n\nFABIAN:\nAy, an you had any eye behind you, you might see\nmore detraction at your heels than fortunes before\nyou.\n\nMALVOLIO:\nM, O, A, I; this simulation is not as the former: and\nyet, to crush this a little, it would bow to me, for\nevery one of these letters are in my name. Soft!\nhere follows prose.\n'If this fall into thy hand, revolve. In my stars I\nam above thee; but be not afraid of greatness: some\nare born great, some achieve greatness, and some\nhave greatness thrust upon 'em. Thy Fates open\ntheir hands; let thy blood and spirit embrace them;\nand, to inure thyself to what thou art like to be,\ncast thy humble slough and appear fresh. Be\nopposite with a kinsman, surly with servants; let\nthy tongue tang arguments of state; put thyself into\nthe trick of singularity: she thus advises thee\nthat sighs for thee. Remember who commended thy\nyellow stockings, and wished to see thee ever\ncross-gartered: I say, remember. Go to, thou art\nmade, if thou desirest to be so; if not, let me see\nthee a steward still, the fellow of servants, and\nnot worthy to touch Fortune's fingers. Farewell.\nShe that would alter services with thee,\nTHE FORTUNATE-UNHAPPY.'\nDaylight and champaign discovers not more: this is\nopen. I will be proud, I will read politic authors,\nI will baffle Sir Toby, I will wash off gross\nacquaintance, I will be point-devise the very man.\nI do not now fool myself, to let imagination jade\nme; for every reason excites to this, that my lady\nloves me. She did commend my yellow stockings of\nlate, she did praise my leg being cross-gartered;\nand in this she manifests herself to my love, and\nwith a kind of injunction drives me to these habits\nof her liking. I thank my stars I am happy. I will\nbe strange, stout, in yellow stockings, and\ncross-gartered, even with the swiftness of putting\non. Jove and my stars be praised! Here is yet a\npostscript.\n'Thou canst not choose but know who I am. If thou\nentertainest my love, let it appear in thy smiling;\nthy smiles become thee well; therefore in my\npresence still smile, dear my sweet, I prithee.'\nJove, I thank thee: I will smile; I will do\neverything that thou wilt have me.\n\nFABIAN:\nI will not give my part of this sport for a pension\nof thousands to be paid from the Sophy.\n\nSIR TOBY BELCH:\nI could marry this wench for this device.\n\nSIR ANDREW:\nSo could I too.\n\nSIR TOBY BELCH:\nAnd ask no other dowry with her but such another jest.\n\nSIR ANDREW:\nNor I neither.\n\nFABIAN:\nHere comes my noble gull-catcher.\n\nSIR TOBY BELCH:\nWilt thou set thy foot o' my neck?\n\nSIR ANDREW:\nOr o' mine either?\n\nSIR TOBY BELCH:\nShall I play my freedom at traytrip, and become thy\nbond-slave?\n\nSIR ANDREW:\nI' faith, or I either?\n\nSIR TOBY BELCH:\nWhy, thou hast put him in such a dream, that when\nthe image of it leaves him he must run mad.\n\nMARIA:\nNay, but say true; does it work upon him?\n\nSIR TOBY BELCH:\nLike aqua-vitae with a midwife.\n\nMARIA:\nIf you will then see the fruits of the sport, mark\nhis first approach before my lady: he will come to\nher in yellow stockings, and 'tis a colour she\nabhors, and cross-gartered, a fashion she detests;\nand he will smile upon her, which will now be so\nunsuitable to her disposition, being addicted to a\nmelancholy as she is, that it cannot but turn him\ninto a notable contempt. If you will see it, follow\nme.\n\nSIR TOBY BELCH:\nTo the gates of Tartar, thou most excellent devil of wit!\n\nSIR ANDREW:\nI'll make one too.\n\nVIOLA:\nSave thee, friend, and thy music: dost thou live by\nthy tabour?\n\nClown:\nNo, sir, I live by the church.\n\nVIOLA:\nArt thou a churchman?\n\nClown:\nNo such matter, sir: I do live by the church; for\nI do live at my house, and my house doth stand by\nthe church.\n\nVIOLA:\nSo thou mayst say, the king lies by a beggar, if a\nbeggar dwell near him; or, the church stands by thy\ntabour, if thy tabour stand by the church.\n\nClown:\nYou have said, sir. To see this age! A sentence is\nbut a cheveril glove to a good wit: how quickly the\nwrong side may be turned outward!\n\nVIOLA:\nNay, that's certain; they that dally nicely with\nwords may quickly make them wanton.\n\nClown:\nI would, therefore, my sister had had no name, sir.\n\nVIOLA:\nWhy, man?\n\nClown:\nWhy, sir, her name's a word; and to dally with that\nword might make my sister wanton. But indeed words\nare very rascals since bonds disgraced them.\n\nVIOLA:\nThy reason, man?\n\nClown:\nTroth, sir, I can yield you none without words; and\nwords are grown so false, I am loath to prove\nreason with them.\n\nVIOLA:\nI warrant thou art a merry fellow and carest for nothing.\n\nClown:\nNot so, sir, I do care for something; but in my\nconscience, sir, I do not care for you: if that be\nto care for nothing, sir, I would it would make you invisible.\n\nVIOLA:\nArt not thou the Lady Olivia's fool?\n\nClown:\nNo, indeed, sir; the Lady Olivia has no folly: she\nwill keep no fool, sir, till she be married; and\nfools are as like husbands as pilchards are to\nherrings; the husband's the bigger: I am indeed not\nher fool, but her corrupter of words.\n\nVIOLA:\nI saw thee late at the Count Orsino's.\n\nClown:\nFoolery, sir, does walk about the orb like the sun,\nit shines every where. I would be sorry, sir, but\nthe fool should be as oft with your master as with\nmy mistress: I think I saw your wisdom there.\n\nVIOLA:\nNay, an thou pass upon me, I'll no more with thee.\nHold, there's expenses for thee.\n\nClown:\nNow Jove, in his next commodity of hair, send thee a beard!\n\nVIOLA:\nBy my troth, I'll tell thee, I am almost sick for\none;\nthough I would not have it grow on my chin. Is thy\nlady within?\n\nClown:\nWould not a pair of these have bred, sir?\n\nVIOLA:\nYes, being kept together and put to use.\n\nClown:\nI would play Lord Pandarus of Phrygia, sir, to bring\na Cressida to this Troilus.\n\nVIOLA:\nI understand you, sir; 'tis well begged.\n\nClown:\nThe matter, I hope, is not great, sir, begging but\na beggar: Cressida was a beggar. My lady is\nwithin, sir. I will construe to them whence you\ncome; who you are and what you would are out of my\nwelkin, I might say 'element,' but the word is over-worn.\n\nVIOLA:\nThis fellow is wise enough to play the fool;\nAnd to do that well craves a kind of wit:\nHe must observe their mood on whom he jests,\nThe quality of persons, and the time,\nAnd, like the haggard, cheque at every feather\nThat comes before his eye. This is a practise\nAs full of labour as a wise man's art\nFor folly that he wisely shows is fit;\nBut wise men, folly-fall'n, quite taint their wit.\n\nSIR TOBY BELCH:\nSave you, gentleman.\n\nVIOLA:\nAnd you, sir.\n\nSIR ANDREW:\nDieu vous garde, monsieur.\n\nVIOLA:\nEt vous aussi; votre serviteur.\n\nSIR ANDREW:\nI hope, sir, you are; and I am yours.\n\nSIR TOBY BELCH:\nWill you encounter the house? my niece is desirous\nyou should enter, if your trade be to her.\n\nVIOLA:\nI am bound to your niece, sir; I mean, she is the\nlist of my voyage.\n\nSIR TOBY BELCH:\nTaste your legs, sir; put them to motion.\n\nVIOLA:\nMy legs do better understand me, sir, than I\nunderstand what you mean by bidding me taste my legs.\n\nSIR TOBY BELCH:\nI mean, to go, sir, to enter.\n\nVIOLA:\nI will answer you with gait and entrance. But we\nare prevented.\nMost excellent accomplished lady, the heavens rain\nodours on you!\n\nSIR ANDREW:\nThat youth's a rare courtier: 'Rain odours;' well.\n\nVIOLA:\nMy matter hath no voice, to your own most pregnant\nand vouchsafed ear.\n\nSIR ANDREW:\n'Odours,' 'pregnant' and 'vouchsafed:' I'll get 'em\nall three all ready.\n\nOLIVIA:\nLet the garden door be shut, and leave me to my hearing.\nGive me your hand, sir.\n\nVIOLA:\nMy duty, madam, and most humble service.\n\nOLIVIA:\nWhat is your name?\n\nVIOLA:\nCesario is your servant's name, fair princess.\n\nOLIVIA:\nMy servant, sir! 'Twas never merry world\nSince lowly feigning was call'd compliment:\nYou're servant to the Count Orsino, youth.\n\nVIOLA:\nAnd he is yours, and his must needs be yours:\nYour servant's servant is your servant, madam.\n\nOLIVIA:\nFor him, I think not on him: for his thoughts,\nWould they were blanks, rather than fill'd with me!\n\nVIOLA:\nMadam, I come to whet your gentle thoughts\nOn his behalf.\n\nOLIVIA:\nO, by your leave, I pray you,\nI bade you never speak again of him:\nBut, would you undertake another suit,\nI had rather hear you to solicit that\nThan music from the spheres.\n\nVIOLA:\nDear lady,--\n\nOLIVIA:\nGive me leave, beseech you. I did send,\nAfter the last enchantment you did here,\nA ring in chase of you: so did I abuse\nMyself, my servant and, I fear me, you:\nUnder your hard construction must I sit,\nTo force that on you, in a shameful cunning,\nWhich you knew none of yours: what might you think?\nHave you not set mine honour at the stake\nAnd baited it with all the unmuzzled thoughts\nThat tyrannous heart can think? To one of your receiving\nEnough is shown: a cypress, not a bosom,\nHideth my heart. So, let me hear you speak.\n\nVIOLA:\nI pity you.\n\nOLIVIA:\nThat's a degree to love.\n\nVIOLA:\nNo, not a grize; for 'tis a vulgar proof,\nThat very oft we pity enemies.\n\nOLIVIA:\nWhy, then, methinks 'tis time to smile again.\nO, world, how apt the poor are to be proud!\nIf one should be a prey, how much the better\nTo fall before the lion than the wolf!\nThe clock upbraids me with the waste of time.\nBe not afraid, good youth, I will not have you:\nAnd yet, when wit and youth is come to harvest,\nYour were is alike to reap a proper man:\nThere lies your way, due west.\n\nVIOLA:\nThen westward-ho! Grace and good disposition\nAttend your ladyship!\nYou'll nothing, madam, to my lord by me?\n\nOLIVIA:\nStay:\nI prithee, tell me what thou thinkest of me.\n\nVIOLA:\nThat you do think you are not what you are.\n\nOLIVIA:\nIf I think so, I think the same of you.\n\nVIOLA:\nThen think you right: I am not what I am.\n\nOLIVIA:\nI would you were as I would have you be!\n\nVIOLA:\nWould it be better, madam, than I am?\nI wish it might, for now I am your fool.\n\nOLIVIA:\nO, what a deal of scorn looks beautiful\nIn the contempt and anger of his lip!\nA murderous guilt shows not itself more soon\nThan love that would seem hid: love's night is noon.\nCesario, by the roses of the spring,\nBy maidhood, honour, truth and every thing,\nI love thee so, that, maugre all thy pride,\nNor wit nor reason can my passion hide.\nDo not extort thy reasons from this clause,\nFor that I woo, thou therefore hast no cause,\nBut rather reason thus with reason fetter,\nLove sought is good, but given unsought better.\n\nVIOLA:\nBy innocence I swear, and by my youth\nI have one heart, one bosom and one truth,\nAnd that no woman has; nor never none\nShall mistress be of it, save I alone.\nAnd so adieu, good madam: never more\nWill I my master's tears to you deplore.\n\nOLIVIA:\nYet come again; for thou perhaps mayst move\nThat heart, which now abhors, to like his love.\n\nSIR ANDREW:\nNo, faith, I'll not stay a jot longer.\n\nSIR TOBY BELCH:\nThy reason, dear venom, give thy reason.\n\nFABIAN:\nYou must needs yield your reason, Sir Andrew.\n\nSIR ANDREW:\nMarry, I saw your niece do more favours to the\ncount's serving-man than ever she bestowed upon me;\nI saw't i' the orchard.\n\nSIR TOBY BELCH:\nDid she see thee the while, old boy? tell me that.\n\nSIR ANDREW:\nAs plain as I see you now.\n\nFABIAN:\nThis was a great argument of love in her toward you.\n\nSIR ANDREW:\n'Slight, will you make an ass o' me?\n\nFABIAN:\nI will prove it legitimate, sir, upon the oaths of\njudgment and reason.\n\nSIR TOBY BELCH:\nAnd they have been grand-jury-men since before Noah\nwas a sailor.\n\nFABIAN:\nShe did show favour to the youth in your sight only\nto exasperate you, to awake your dormouse valour, to\nput fire in your heart and brimstone in your liver.\nYou should then have accosted her; and with some\nexcellent jests, fire-new from the mint, you should\nhave banged the youth into dumbness. This was\nlooked for at your hand, and this was balked: the\ndouble gilt of this opportunity you let time wash\noff, and you are now sailed into the north of my\nlady's opinion; where you will hang like an icicle\non a Dutchman's beard, unless you do redeem it by\nsome laudable attempt either of valour or policy.\n\nSIR ANDREW:\nAn't be any way, it must be with valour; for policy\nI hate: I had as lief be a Brownist as a\npolitician.\n\nSIR TOBY BELCH:\nWhy, then, build me thy fortunes upon the basis of\nvalour. Challenge me the count's youth to fight\nwith him; hurt him in eleven places: my niece shall\ntake note of it; and assure thyself, there is no\nlove-broker in the world can more prevail in man's\ncommendation with woman than report of valour.\n\nFABIAN:\nThere is no way but this, Sir Andrew.\n\nSIR ANDREW:\nWill either of you bear me a challenge to him?\n\nSIR TOBY BELCH:\nGo, write it in a martial hand; be curst and brief;\nit is no matter how witty, so it be eloquent and fun\nof invention: taunt him with the licence of ink:\nif thou thou'st him some thrice, it shall not be\namiss; and as many lies as will lie in thy sheet of\npaper, although the sheet were big enough for the\nbed of Ware in England, set 'em down: go, about it.\nLet there be gall enough in thy ink, though thou\nwrite with a goose-pen, no matter: about it.\n\nSIR ANDREW:\nWhere shall I find you?\n\nSIR TOBY BELCH:\nWe'll call thee at the cubiculo: go.\n\nFABIAN:\nThis is a dear manikin to you, Sir Toby.\n\nSIR TOBY BELCH:\nI have been dear to him, lad, some two thousand\nstrong, or so.\n\nFABIAN:\nWe shall have a rare letter from him: but you'll\nnot deliver't?\n\nSIR TOBY BELCH:\nNever trust me, then; and by all means stir on the\nyouth to an answer. I think oxen and wainropes\ncannot hale them together. For Andrew, if he were\nopened, and you find so much blood in his liver as\nwill clog the foot of a flea, I'll eat the rest of\nthe anatomy.\n\nFABIAN:\nAnd his opposite, the youth, bears in his visage no\ngreat presage of cruelty.\n\nSIR TOBY BELCH:\nLook, where the youngest wren of nine comes.\n\nMARIA:\nIf you desire the spleen, and will laugh yourself\ninto stitches, follow me. Yond gull Malvolio is\nturned heathen, a very renegado; for there is no\nChristian, that means to be saved by believing\nrightly, can ever believe such impossible passages\nof grossness. He's in yellow stockings.\n\nSIR TOBY BELCH:\nAnd cross-gartered?\n\nMARIA:\nMost villanously; like a pedant that keeps a school\ni' the church. I have dogged him, like his\nmurderer. He does obey every point of the letter\nthat I dropped to betray him: he does smile his\nface into more lines than is in the new map with the\naugmentation of the Indies: you have not seen such\na thing as 'tis. I can hardly forbear hurling things\nat him. I know my lady will strike him: if she do,\nhe'll smile and take't for a great favour.\n\nSIR TOBY BELCH:\nCome, bring us, bring us where he is.\n\nSEBASTIAN:\nI would not by my will have troubled you;\nBut, since you make your pleasure of your pains,\nI will no further chide you.\n\nANTONIO:\nI could not stay behind you: my desire,\nMore sharp than filed steel, did spur me forth;\nAnd not all love to see you, though so much\nAs might have drawn one to a longer voyage,\nBut jealousy what might befall your travel,\nBeing skilless in these parts; which to a stranger,\nUnguided and unfriended, often prove\nRough and unhospitable: my willing love,\nThe rather by these arguments of fear,\nSet forth in your pursuit.\n\nSEBASTIAN:\nMy kind Antonio,\nI can no other answer make but thanks,\nAnd thanks; and ever oft good turns\nAre shuffled off with such uncurrent pay:\nBut, were my worth as is my conscience firm,\nYou should find better dealing. What's to do?\nShall we go see the reliques of this town?\n\nANTONIO:\nTo-morrow, sir: best first go see your lodging.\n\nSEBASTIAN:\nI am not weary, and 'tis long to night:\nI pray you, let us satisfy our eyes\nWith the memorials and the things of fame\nThat do renown this city.\n\nANTONIO:\nWould you'ld pardon me;\nI do not without danger walk these streets:\nOnce, in a sea-fight, 'gainst the count his galleys\nI did some service; of such note indeed,\nThat were I ta'en here it would scarce be answer'd.\n\nSEBASTIAN:\nBelike you slew great number of his people.\n\nANTONIO:\nThe offence is not of such a bloody nature;\nAlbeit the quality of the time and quarrel\nMight well have given us bloody argument.\nIt might have since been answer'd in repaying\nWhat we took from them; which, for traffic's sake,\nMost of our city did: only myself stood out;\nFor which, if I be lapsed in this place,\nI shall pay dear.\n\nSEBASTIAN:\nDo not then walk too open.\n\nANTONIO:\nIt doth not fit me. Hold, sir, here's my purse.\nIn the south suburbs, at the Elephant,\nIs best to lodge: I will bespeak our diet,\nWhiles you beguile the time and feed your knowledge\nWith viewing of the town: there shall you have me.\n\nSEBASTIAN:\nWhy I your purse?\n\nANTONIO:\nHaply your eye shall light upon some toy\nYou have desire to purchase; and your store,\nI think, is not for idle markets, sir.\n\nSEBASTIAN:\nI'll be your purse-bearer and leave you\nFor an hour.\n\nANTONIO:\nTo the Elephant.\n\nSEBASTIAN:\nI do remember.\n\nOLIVIA:\nI have sent after him: he says he'll come;\nHow shall I feast him? what bestow of him?\nFor youth is bought more oft than begg'd or borrow'd.\nI speak too loud.\nWhere is Malvolio? he is sad and civil,\nAnd suits well for a servant with my fortunes:\nWhere is Malvolio?\n\nMARIA:\nHe's coming, madam; but in very strange manner. He\nis, sure, possessed, madam.\n\nOLIVIA:\nWhy, what's the matter? does he rave?\n\nMARIA:\nNo. madam, he does nothing but smile: your\nladyship were best to have some guard about you, if\nhe come; for, sure, the man is tainted in's wits.\n\nOLIVIA:\nGo call him hither.\nI am as mad as he,\nIf sad and merry madness equal be.\nHow now, Malvolio!\n\nMALVOLIO:\nSweet lady, ho, ho.\n\nOLIVIA:\nSmilest thou?\nI sent for thee upon a sad occasion.\n\nMALVOLIO:\nSad, lady! I could be sad: this does make some\nobstruction in the blood, this cross-gartering; but\nwhat of that? if it please the eye of one, it is\nwith me as the very true sonnet is, 'Please one, and\nplease all.'\n\nOLIVIA:\nWhy, how dost thou, man? what is the matter with thee?\n\nMALVOLIO:\nNot black in my mind, though yellow in my legs. It\ndid come to his hands, and commands shall be\nexecuted: I think we do know the sweet Roman hand.\n\nOLIVIA:\nWilt thou go to bed, Malvolio?\n\nMALVOLIO:\nTo bed! ay, sweet-heart, and I'll come to thee.\n\nOLIVIA:\nGod comfort thee! Why dost thou smile so and kiss\nthy hand so oft?\n\nMARIA:\nHow do you, Malvolio?\n\nMALVOLIO:\nAt your request! yes; nightingales answer daws.\n\nMARIA:\nWhy appear you with this ridiculous boldness before my lady?\n\nMALVOLIO:\n'Be not afraid of greatness:' 'twas well writ.\n\nOLIVIA:\nWhat meanest thou by that, Malvolio?\n\nMALVOLIO:\n'Some are born great,'--\n\nOLIVIA:\nHa!\n\nMALVOLIO:\n'Some achieve greatness,'--\n\nOLIVIA:\nWhat sayest thou?\n\nMALVOLIO:\n'And some have greatness thrust upon them.'\n\nOLIVIA:\nHeaven restore thee!\n\nMALVOLIO:\n'Remember who commended thy yellow stockings,'--\n\nOLIVIA:\nThy yellow stockings!\n\nMALVOLIO:\n'And wished to see thee cross-gartered.'\n\nOLIVIA:\nCross-gartered!\n\nMALVOLIO:\n'Go to thou art made, if thou desirest to be so;'--\n\nOLIVIA:\nAm I made?\n\nMALVOLIO:\n'If not, let me see thee a servant still.'\n\nOLIVIA:\nWhy, this is very midsummer madness.\n\nServant:\nMadam, the young gentleman of the Count Orsino's is\nreturned: I could hardly entreat him back: he\nattends your ladyship's pleasure.\n\nOLIVIA:\nI'll come to him.\nGood Maria, let this fellow be looked to. Where's\nmy cousin Toby? Let some of my people have a special\ncare of him: I would not have him miscarry for the\nhalf of my dowry.\n\nMALVOLIO:\nO, ho! do you come near me now? no worse man than\nSir Toby to look to me! This concurs directly with\nthe letter: she sends him on purpose, that I may\nappear stubborn to him; for she incites me to that\nin the letter. 'Cast thy humble slough,' says she;\n'be opposite with a kinsman, surly with servants;\nlet thy tongue tang with arguments of state; put\nthyself into the trick of singularity;' and\nconsequently sets down the manner how; as, a sad\nface, a reverend carriage, a slow tongue, in the\nhabit of some sir of note, and so forth. I have\nlimed her; but it is Jove's doing, and Jove make me\nthankful! And when she went away now, 'Let this\nfellow be looked to:' fellow! not Malvolio, nor\nafter my degree, but fellow. Why, every thing\nadheres together, that no dram of a scruple, no\nscruple of a scruple, no obstacle, no incredulous\nor unsafe circumstance--What can be said? Nothing\nthat can be can come between me and the full\nprospect of my hopes. Well, Jove, not I, is the\ndoer of this, and he is to be thanked.\n\nSIR TOBY BELCH:\nWhich way is he, in the name of sanctity? If all\nthe devils of hell be drawn in little, and Legion\nhimself possessed him, yet I'll speak to him.\n\nFABIAN:\nHere he is, here he is. How is't with you, sir?\nhow is't with you, man?\n\nMALVOLIO:\nGo off; I discard you: let me enjoy my private: go\noff.\n\nMARIA:\nLo, how hollow the fiend speaks within him! did not\nI tell you? Sir Toby, my lady prays you to have a\ncare of him.\n\nMALVOLIO:\nAh, ha! does she so?\n\nSIR TOBY BELCH:\nGo to, go to; peace, peace; we must deal gently\nwith him: let me alone. How do you, Malvolio? how\nis't with you? What, man! defy the devil:\nconsider, he's an enemy to mankind.\n\nMALVOLIO:\nDo you know what you say?\n\nMARIA:\nLa you, an you speak ill of the devil, how he takes\nit at heart! Pray God, he be not bewitched!\n\nFABIAN:\nCarry his water to the wise woman.\n\nMARIA:\nMarry, and it shall be done to-morrow morning, if I\nlive. My lady would not lose him for more than I'll say.\n\nMALVOLIO:\nHow now, mistress!\n\nMARIA:\nO Lord!\n\nSIR TOBY BELCH:\nPrithee, hold thy peace; this is not the way: do\nyou not see you move him? let me alone with him.\n\nFABIAN:\nNo way but gentleness; gently, gently: the fiend is\nrough, and will not be roughly used.\n\nSIR TOBY BELCH:\nWhy, how now, my bawcock! how dost thou, chuck?\n\nMALVOLIO:\nSir!\n\nSIR TOBY BELCH:\nAy, Biddy, come with me. What, man! 'tis not for\ngravity to play at cherry-pit with Satan: hang\nhim, foul collier!\n\nMARIA:\nGet him to say his prayers, good Sir Toby, get him to pray.\n\nMALVOLIO:\nMy prayers, minx!\n\nMARIA:\nNo, I warrant you, he will not hear of godliness.\n\nMALVOLIO:\nGo, hang yourselves all! you are idle shallow\nthings: I am not of your element: you shall know\nmore hereafter.\n\nSIR TOBY BELCH:\nIs't possible?\n\nFABIAN:\nIf this were played upon a stage now, I could\ncondemn it as an improbable fiction.\n\nSIR TOBY BELCH:\nHis very genius hath taken the infection of the device, man.\n\nMARIA:\nNay, pursue him now, lest the device take air and taint.\n\nFABIAN:\nWhy, we shall make him mad indeed.\n\nMARIA:\nThe house will be the quieter.\n\nSIR TOBY BELCH:\nCome, we'll have him in a dark room and bound. My\nniece is already in the belief that he's mad: we\nmay carry it thus, for our pleasure and his penance,\ntill our very pastime, tired out of breath, prompt\nus to have mercy on him: at which time we will\nbring the device to the bar and crown thee for a\nfinder of madmen. But see, but see.\n\nFABIAN:\nMore matter for a May morning.\n\nSIR ANDREW:\nHere's the challenge, read it: warrant there's\nvinegar and pepper in't.\n\nFABIAN:\nIs't so saucy?\n\nSIR ANDREW:\nAy, is't, I warrant him: do but read.\n\nSIR TOBY BELCH:\nGive me.\n'Youth, whatsoever thou art, thou art but a scurvy fellow.'\n\nFABIAN:\nGood, and valiant.\n\nSIR TOBY BELCH:\n\nFABIAN:\nA good note; that keeps you from the blow of the law.\n\nSIR TOBY BELCH:\n\nFABIAN:\nVery brief, and to exceeding good sense--less.\n\nSIR TOBY BELCH:\n\nFABIAN:\nGood.\n\nSIR TOBY BELCH:\n\nFABIAN:\nStill you keep o' the windy side of the law: good.\n\nSIR TOBY BELCH:\n\nMARIA:\nYou may have very fit occasion for't: he is now in\nsome commerce with my lady, and will by and by depart.\n\nSIR TOBY BELCH:\nGo, Sir Andrew: scout me for him at the corner the\norchard like a bum-baily: so soon as ever thou seest\nhim, draw; and, as thou drawest swear horrible; for\nit comes to pass oft that a terrible oath, with a\nswaggering accent sharply twanged off, gives manhood\nmore approbation than ever proof itself would have\nearned him. Away!\n\nSIR ANDREW:\nNay, let me alone for swearing.\n\nSIR TOBY BELCH:\nNow will not I deliver his letter: for the behavior\nof the young gentleman gives him out to be of good\ncapacity and breeding; his employment between his\nlord and my niece confirms no less: therefore this\nletter, being so excellently ignorant, will breed no\nterror in the youth: he will find it comes from a\nclodpole. But, sir, I will deliver his challenge by\nword of mouth; set upon Aguecheek a notable report\nof valour; and drive the gentleman, as I know his\nyouth will aptly receive it, into a most hideous\nopinion of his rage, skill, fury and impetuosity.\nThis will so fright them both that they will kill\none another by the look, like cockatrices.\n\nFABIAN:\nHere he comes with your niece: give them way till\nhe take leave, and presently after him.\n\nSIR TOBY BELCH:\nI will meditate the while upon some horrid message\nfor a challenge.\n\nOLIVIA:\nI have said too much unto a heart of stone\nAnd laid mine honour too unchary out:\nThere's something in me that reproves my fault;\nBut such a headstrong potent fault it is,\nThat it but mocks reproof.\n\nVIOLA:\nWith the same 'havior that your passion bears\nGoes on my master's grief.\n\nOLIVIA:\nHere, wear this jewel for me, 'tis my picture;\nRefuse it not; it hath no tongue to vex you;\nAnd I beseech you come again to-morrow.\nWhat shall you ask of me that I'll deny,\nThat honour saved may upon asking give?\n\nVIOLA:\nNothing but this; your true love for my master.\n\nOLIVIA:\nHow with mine honour may I give him that\nWhich I have given to you?\n\nVIOLA:\nI will acquit you.\n\nOLIVIA:\nWell, come again to-morrow: fare thee well:\nA fiend like thee might bear my soul to hell.\n\nSIR TOBY BELCH:\nGentleman, God save thee.\n\nVIOLA:\nAnd you, sir.\n\nSIR TOBY BELCH:\nThat defence thou hast, betake thee to't: of what\nnature the wrongs are thou hast done him, I know\nnot; but thy intercepter, full of despite, bloody as\nthe hunter, attends thee at the orchard-end:\ndismount thy tuck, be yare in thy preparation, for\nthy assailant is quick, skilful and deadly.\n\nVIOLA:\nYou mistake, sir; I am sure no man hath any quarrel\nto me: my remembrance is very free and clear from\nany image of offence done to any man.\n\nSIR TOBY BELCH:\nYou'll find it otherwise, I assure you: therefore,\nif you hold your life at any price, betake you to\nyour guard; for your opposite hath in him what\nyouth, strength, skill and wrath can furnish man withal.\n\nVIOLA:\nI pray you, sir, what is he?\n\nSIR TOBY BELCH:\nHe is knight, dubbed with unhatched rapier and on\ncarpet consideration; but he is a devil in private\nbrawl: souls and bodies hath he divorced three; and\nhis incensement at this moment is so implacable,\nthat satisfaction can be none but by pangs of death\nand sepulchre. Hob, nob, is his word; give't or take't.\n\nVIOLA:\nI will return again into the house and desire some\nconduct of the lady. I am no fighter. I have heard\nof some kind of men that put quarrels purposely on\nothers, to taste their valour: belike this is a man\nof that quirk.\n\nSIR TOBY BELCH:\nSir, no; his indignation derives itself out of a\nvery competent injury: therefore, get you on and\ngive him his desire. Back you shall not to the\nhouse, unless you undertake that with me which with\nas much safety you might answer him: therefore, on,\nor strip your sword stark naked; for meddle you\nmust, that's certain, or forswear to wear iron about you.\n\nVIOLA:\nThis is as uncivil as strange. I beseech you, do me\nthis courteous office, as to know of the knight what\nmy offence to him is: it is something of my\nnegligence, nothing of my purpose.\n\nSIR TOBY BELCH:\nI will do so. Signior Fabian, stay you by this\ngentleman till my return.\n\nVIOLA:\nPray you, sir, do you know of this matter?\n\nFABIAN:\nI know the knight is incensed against you, even to a\nmortal arbitrement; but nothing of the circumstance more.\n\nVIOLA:\nI beseech you, what manner of man is he?\n\nFABIAN:\nNothing of that wonderful promise, to read him by\nhis form, as you are like to find him in the proof\nof his valour. He is, indeed, sir, the most skilful,\nbloody and fatal opposite that you could possibly\nhave found in any part of Illyria. Will you walk\ntowards him? I will make your peace with him if I\ncan.\n\nVIOLA:\nI shall be much bound to you for't: I am one that\nhad rather go with sir priest than sir knight: I\ncare not who knows so much of my mettle.\n\nSIR TOBY BELCH:\nWhy, man, he's a very devil; I have not seen such a\nfirago. I had a pass with him, rapier, scabbard and\nall, and he gives me the stuck in with such a mortal\nmotion, that it is inevitable; and on the answer, he\npays you as surely as your feet hit the ground they\nstep on. They say he has been fencer to the Sophy.\n\nSIR ANDREW:\nPox on't, I'll not meddle with him.\n\nSIR TOBY BELCH:\nAy, but he will not now be pacified: Fabian can\nscarce hold him yonder.\n\nSIR ANDREW:\nPlague on't, an I thought he had been valiant and so\ncunning in fence, I'ld have seen him damned ere I'ld\nhave challenged him. Let him let the matter slip,\nand I'll give him my horse, grey Capilet.\n\nSIR TOBY BELCH:\nI'll make the motion: stand here, make a good show\non't: this shall end without the perdition of souls.\nMarry, I'll ride your horse as well as I ride you.\nI have his horse to take up the quarrel:\nI have persuaded him the youth's a devil.\n\nFABIAN:\nHe is as horribly conceited of him; and pants and\nlooks pale, as if a bear were at his heels.\n\nSIR TOBY BELCH:\n\nVIOLA:\n\nFABIAN:\nGive ground, if you see him furious.\n\nSIR TOBY BELCH:\nCome, Sir Andrew, there's no remedy; the gentleman\nwill, for his honour's sake, have one bout with you;\nhe cannot by the duello avoid it: but he has\npromised me, as he is a gentleman and a soldier, he\nwill not hurt you. Come on; to't.\n\nSIR ANDREW:\nPray God, he keep his oath!\n\nVIOLA:\nI do assure you, 'tis against my will.\n\nANTONIO:\nPut up your sword. If this young gentleman\nHave done offence, I take the fault on me:\nIf you offend him, I for him defy you.\n\nSIR TOBY BELCH:\nYou, sir! why, what are you?\n\nANTONIO:\nOne, sir, that for his love dares yet do more\nThan you have heard him brag to you he will.\n\nSIR TOBY BELCH:\nNay, if you be an undertaker, I am for you.\n\nFABIAN:\nO good Sir Toby, hold! here come the officers.\n\nSIR TOBY BELCH:\nI'll be with you anon.\n\nVIOLA:\nPray, sir, put your sword up, if you please.\n\nSIR ANDREW:\nMarry, will I, sir; and, for that I promised you,\nI'll be as good as my word: he will bear you easily\nand reins well.\n\nFirst Officer:\nThis is the man; do thy office.\n\nSecond Officer:\nAntonio, I arrest thee at the suit of Count Orsino.\n\nANTONIO:\nYou do mistake me, sir.\n\nFirst Officer:\nNo, sir, no jot; I know your favour well,\nThough now you have no sea-cap on your head.\nTake him away: he knows I know him well.\n\nANTONIO:\nI must obey.\nThis comes with seeking you:\nBut there's no remedy; I shall answer it.\nWhat will you do, now my necessity\nMakes me to ask you for my purse? It grieves me\nMuch more for what I cannot do for you\nThan what befalls myself. You stand amazed;\nBut be of comfort.\n\nSecond Officer:\nCome, sir, away.\n\nANTONIO:\nI must entreat of you some of that money.\n\nVIOLA:\nWhat money, sir?\nFor the fair kindness you have show'd me here,\nAnd, part, being prompted by your present trouble,\nOut of my lean and low ability\nI'll lend you something: my having is not much;\nI'll make division of my present with you:\nHold, there's half my coffer.\n\nANTONIO:\nWill you deny me now?\nIs't possible that my deserts to you\nCan lack persuasion? Do not tempt my misery,\nLest that it make me so unsound a man\nAs to upbraid you with those kindnesses\nThat I have done for you.\n\nVIOLA:\nI know of none;\nNor know I you by voice or any feature:\nI hate ingratitude more in a man\nThan lying, vainness, babbling, drunkenness,\nOr any taint of vice whose strong corruption\nInhabits our frail blood.\n\nANTONIO:\nO heavens themselves!\n\nSecond Officer:\nCome, sir, I pray you, go.\n\nANTONIO:\nLet me speak a little. This youth that you see here\nI snatch'd one half out of the jaws of death,\nRelieved him with such sanctity of love,\nAnd to his image, which methought did promise\nMost venerable worth, did I devotion.\n\nFirst Officer:\nWhat's that to us? The time goes by: away!\n\nANTONIO:\nBut O how vile an idol proves this god\nThou hast, Sebastian, done good feature shame.\nIn nature there's no blemish but the mind;\nNone can be call'd deform'd but the unkind:\nVirtue is beauty, but the beauteous evil\nAre empty trunks o'erflourish'd by the devil.\n\nFirst Officer:\nThe man grows mad: away with him! Come, come, sir.\n\nANTONIO:\nLead me on.\n\nVIOLA:\nMethinks his words do from such passion fly,\nThat he believes himself: so do not I.\nProve true, imagination, O, prove true,\nThat I, dear brother, be now ta'en for you!\n\nSIR TOBY BELCH:\nCome hither, knight; come hither, Fabian: we'll\nwhisper o'er a couplet or two of most sage saws.\n\nVIOLA:\nHe named Sebastian: I my brother know\nYet living in my glass; even such and so\nIn favour was my brother, and he went\nStill in this fashion, colour, ornament,\nFor him I imitate: O, if it prove,\nTempests are kind and salt waves fresh in love.\n\nSIR TOBY BELCH:\nA very dishonest paltry boy, and more a coward than\na hare: his dishonesty appears in leaving his\nfriend here in necessity and denying him; and for\nhis cowardship, ask Fabian.\n\nFABIAN:\nA coward, a most devout coward, religious in it.\n\nSIR ANDREW:\n'Slid, I'll after him again and beat him.\n\nSIR TOBY BELCH:\nDo; cuff him soundly, but never draw thy sword.\n\nSIR ANDREW:\nAn I do not,--\n\nFABIAN:\nCome, let's see the event.\n\nSIR TOBY BELCH:\nI dare lay any money 'twill be nothing yet.\n\nClown:\nWill you make me believe that I am not sent for you?\n\nSEBASTIAN:\nGo to, go to, thou art a foolish fellow:\nLet me be clear of thee.\n\nClown:\nWell held out, i' faith! No, I do not know you; nor\nI am not sent to you by my lady, to bid you come\nspeak with her; nor your name is not Master Cesario;\nnor this is not my nose neither. Nothing that is so is so.\n\nSEBASTIAN:\nI prithee, vent thy folly somewhere else: Thou\nknow'st not me.\n\nClown:\nVent my folly! he has heard that word of some\ngreat man and now applies it to a fool. Vent my\nfolly! I am afraid this great lubber, the world,\nwill prove a cockney. I prithee now, ungird thy\nstrangeness and tell me what I shall vent to my\nlady: shall I vent to her that thou art coming?\n\nSEBASTIAN:\nI prithee, foolish Greek, depart from me: There's\nmoney for thee: if you tarry longer, I shall give\nworse payment.\n\nClown:\nBy my troth, thou hast an open hand. These wise men\nthat give fools money get themselves a good\nreport--after fourteen years' purchase.\n\nSIR ANDREW:\nNow, sir, have I met you again? there's for you.\n\nSEBASTIAN:\nWhy, there's for thee, and there, and there. Are all\nthe people mad?\n\nSIR TOBY BELCH:\nHold, sir, or I'll throw your dagger o'er the house.\n\nClown:\nThis will I tell my lady straight: I would not be\nin some of your coats for two pence.\n\nSIR TOBY BELCH:\nCome on, sir; hold.\n\nSIR ANDREW:\nNay, let him alone: I'll go another way to work\nwith him; I'll have an action of battery against\nhim, if there be any law in Illyria: though I\nstruck him first, yet it's no matter for that.\n\nSEBASTIAN:\nLet go thy hand.\n\nSIR TOBY BELCH:\nCome, sir, I will not let you go. Come, my young\nsoldier, put up your iron: you are well fleshed; come on.\n\nSEBASTIAN:\nI will be free from thee. What wouldst thou now? If\nthou darest tempt me further, draw thy sword.\n\nSIR TOBY BELCH:\nWhat, what? Nay, then I must have an ounce or two\nof this malapert blood from you.\n\nOLIVIA:\nHold, Toby; on thy life I charge thee, hold!\n\nSIR TOBY BELCH:\nMadam!\n\nOLIVIA:\nWill it be ever thus? Ungracious wretch,\nFit for the mountains and the barbarous caves,\nWhere manners ne'er were preach'd! out of my sight!\nBe not offended, dear Cesario.\nRudesby, be gone!\nI prithee, gentle friend,\nLet thy fair wisdom, not thy passion, sway\nIn this uncivil and thou unjust extent\nAgainst thy peace. Go with me to my house,\nAnd hear thou there how many fruitless pranks\nThis ruffian hath botch'd up, that thou thereby\nMayst smile at this: thou shalt not choose but go:\nDo not deny. Beshrew his soul for me,\nHe started one poor heart of mine in thee.\n\nSEBASTIAN:\nWhat relish is in this? how runs the stream?\nOr I am mad, or else this is a dream:\nLet fancy still my sense in Lethe steep;\nIf it be thus to dream, still let me sleep!\n\nOLIVIA:\nNay, come, I prithee; would thou'ldst be ruled by me!\n\nSEBASTIAN:\nMadam, I will.\n\nOLIVIA:\nO, say so, and so be!\n\nMARIA:\nNay, I prithee, put on this gown and this beard;\nmake him believe thou art Sir Topas the curate: do\nit quickly; I'll call Sir Toby the whilst.\n\nClown:\nWell, I'll put it on, and I will dissemble myself\nin't; and I would I were the first that ever\ndissembled in such a gown. I am not tall enough to\nbecome the function well, nor lean enough to be\nthought a good student; but to be said an honest man\nand a good housekeeper goes as fairly as to say a\ncareful man and a great scholar. The competitors enter.\n\nSIR TOBY BELCH:\nJove bless thee, master Parson.\n\nClown:\nBonos dies, Sir Toby: for, as the old hermit of\nPrague, that never saw pen and ink, very wittily\nsaid to a niece of King Gorboduc, 'That that is is;'\nso I, being Master Parson, am Master Parson; for,\nwhat is 'that' but 'that,' and 'is' but 'is'?\n\nSIR TOBY BELCH:\nTo him, Sir Topas.\n\nClown:\nWhat, ho, I say! peace in this prison!\n\nSIR TOBY BELCH:\nThe knave counterfeits well; a good knave.\n\nMALVOLIO:\n\nClown:\nSir Topas the curate, who comes to visit Malvolio\nthe lunatic.\n\nMALVOLIO:\nSir Topas, Sir Topas, good Sir Topas, go to my lady.\n\nClown:\nOut, hyperbolical fiend! how vexest thou this man!\ntalkest thou nothing but of ladies?\n\nSIR TOBY BELCH:\nWell said, Master Parson.\n\nMALVOLIO:\nSir Topas, never was man thus wronged: good Sir\nTopas, do not think I am mad: they have laid me\nhere in hideous darkness.\n\nClown:\nFie, thou dishonest Satan! I call thee by the most\nmodest terms; for I am one of those gentle ones\nthat will use the devil himself with courtesy:\nsayest thou that house is dark?\n\nMALVOLIO:\nAs hell, Sir Topas.\n\nClown:\nWhy it hath bay windows transparent as barricadoes,\nand the clearstores toward the south north are as\nlustrous as ebony; and yet complainest thou of\nobstruction?\n\nMALVOLIO:\nI am not mad, Sir Topas: I say to you, this house is dark.\n\nClown:\nMadman, thou errest: I say, there is no darkness\nbut ignorance; in which thou art more puzzled than\nthe Egyptians in their fog.\n\nMALVOLIO:\nI say, this house is as dark as ignorance, though\nignorance were as dark as hell; and I say, there\nwas never man thus abused. I am no more mad than you\nare: make the trial of it in any constant question.\n\nClown:\nWhat is the opinion of Pythagoras concerning wild fowl?\n\nMALVOLIO:\nThat the soul of our grandam might haply inhabit a bird.\n\nClown:\nWhat thinkest thou of his opinion?\n\nMALVOLIO:\nI think nobly of the soul, and no way approve his opinion.\n\nClown:\nFare thee well. Remain thou still in darkness:\nthou shalt hold the opinion of Pythagoras ere I will\nallow of thy wits, and fear to kill a woodcock, lest\nthou dispossess the soul of thy grandam. Fare thee well.\n\nMALVOLIO:\nSir Topas, Sir Topas!\n\nSIR TOBY BELCH:\nMy most exquisite Sir Topas!\n\nClown:\nNay, I am for all waters.\n\nMARIA:\nThou mightst have done this without thy beard and\ngown: he sees thee not.\n\nSIR TOBY BELCH:\nTo him in thine own voice, and bring me word how\nthou findest him: I would we were well rid of this\nknavery. If he may be conveniently delivered, I\nwould he were, for I am now so far in offence with\nmy niece that I cannot pursue with any safety this\nsport to the upshot. Come by and by to my chamber.\n\nClown:\n\nMALVOLIO:\nFool!\n\nClown:\n'My lady is unkind, perdy.'\n\nMALVOLIO:\nFool!\n\nClown:\n'Alas, why is she so?'\n\nMALVOLIO:\nFool, I say!\n\nClown:\n'She loves another'--Who calls, ha?\n\nMALVOLIO:\nGood fool, as ever thou wilt deserve well at my\nhand, help me to a candle, and pen, ink and paper:\nas I am a gentleman, I will live to be thankful to\nthee for't.\n\nClown:\nMaster Malvolio?\n\nMALVOLIO:\nAy, good fool.\n\nClown:\nAlas, sir, how fell you besides your five wits?\n\nMALVOLIO:\nFool, there was never a man so notoriously abused: I\nam as well in my wits, fool, as thou art.\n\nClown:\nBut as well? then you are mad indeed, if you be no\nbetter in your wits than a fool.\n\nMALVOLIO:\nThey have here propertied me; keep me in darkness,\nsend ministers to me, asses, and do all they can to\nface me out of my wits.\n\nClown:\nAdvise you what you say; the minister is here.\nMalvolio, Malvolio, thy wits the heavens restore!\nendeavour thyself to sleep, and leave thy vain\nbibble babble.\n\nMALVOLIO:\nSir Topas!\n\nClown:\nMaintain no words with him, good fellow. Who, I,\nsir? not I, sir. God be wi' you, good Sir Topas.\nMerry, amen. I will, sir, I will.\n\nMALVOLIO:\nFool, fool, fool, I say!\n\nClown:\nAlas, sir, be patient. What say you sir? I am\nshent for speaking to you.\n\nMALVOLIO:\nGood fool, help me to some light and some paper: I\ntell thee, I am as well in my wits as any man in Illyria.\n\nClown:\nWell-a-day that you were, sir\n\nMALVOLIO:\nBy this hand, I am. Good fool, some ink, paper and\nlight; and convey what I will set down to my lady:\nit shall advantage thee more than ever the bearing\nof letter did.\n\nClown:\nI will help you to't. But tell me true, are you\nnot mad indeed? or do you but counterfeit?\n\nMALVOLIO:\nBelieve me, I am not; I tell thee true.\n\nClown:\nNay, I'll ne'er believe a madman till I see his\nbrains. I will fetch you light and paper and ink.\n\nMALVOLIO:\nFool, I'll requite it in the highest degree: I\nprithee, be gone.\n\nClown:\n\nSEBASTIAN:\nThis is the air; that is the glorious sun;\nThis pearl she gave me, I do feel't and see't;\nAnd though 'tis wonder that enwraps me thus,\nYet 'tis not madness. Where's Antonio, then?\nI could not find him at the Elephant:\nYet there he was; and there I found this credit,\nThat he did range the town to seek me out.\nHis counsel now might do me golden service;\nFor though my soul disputes well with my sense,\nThat this may be some error, but no madness,\nYet doth this accident and flood of fortune\nSo far exceed all instance, all discourse,\nThat I am ready to distrust mine eyes\nAnd wrangle with my reason that persuades me\nTo any other trust but that I am mad\nOr else the lady's mad; yet, if 'twere so,\nShe could not sway her house, command her followers,\nTake and give back affairs and their dispatch\nWith such a smooth, discreet and stable bearing\nAs I perceive she does: there's something in't\nThat is deceiveable. But here the lady comes.\n\nOLIVIA:\nBlame not this haste of mine. If you mean well,\nNow go with me and with this holy man\nInto the chantry by: there, before him,\nAnd underneath that consecrated roof,\nPlight me the full assurance of your faith;\nThat my most jealous and too doubtful soul\nMay live at peace. He shall conceal it\nWhiles you are willing it shall come to note,\nWhat time we will our celebration keep\nAccording to my birth. What do you say?\n\nSEBASTIAN:\nI'll follow this good man, and go with you;\nAnd, having sworn truth, ever will be true.\n\nOLIVIA:\nThen lead the way, good father; and heavens so shine,\nThat they may fairly note this act of mine!\n\nFABIAN:\nNow, as thou lovest me, let me see his letter.\n\nClown:\nGood Master Fabian, grant me another request.\n\nFABIAN:\nAny thing.\n\nClown:\nDo not desire to see this letter.\n\nFABIAN:\nThis is, to give a dog, and in recompense desire my\ndog again.\n\nDUKE ORSINO:\nBelong you to the Lady Olivia, friends?\n\nClown:\nAy, sir; we are some of her trappings.\n\nDUKE ORSINO:\nI know thee well; how dost thou, my good fellow?\n\nClown:\nTruly, sir, the better for my foes and the worse\nfor my friends.\n\nDUKE ORSINO:\nJust the contrary; the better for thy friends.\n\nClown:\nNo, sir, the worse.\n\nDUKE ORSINO:\nHow can that be?\n\nClown:\nMarry, sir, they praise me and make an ass of me;\nnow my foes tell me plainly I am an ass: so that by\nmy foes, sir I profit in the knowledge of myself,\nand by my friends, I am abused: so that,\nconclusions to be as kisses, if your four negatives\nmake your two affirmatives why then, the worse for\nmy friends and the better for my foes.\n\nDUKE ORSINO:\nWhy, this is excellent.\n\nClown:\nBy my troth, sir, no; though it please you to be\none of my friends.\n\nDUKE ORSINO:\nThou shalt not be the worse for me: there's gold.\n\nClown:\nBut that it would be double-dealing, sir, I would\nyou could make it another.\n\nDUKE ORSINO:\nO, you give me ill counsel.\n\nClown:\nPut your grace in your pocket, sir, for this once,\nand let your flesh and blood obey it.\n\nDUKE ORSINO:\nWell, I will be so much a sinner, to be a\ndouble-dealer: there's another.\n\nClown:\nPrimo, secundo, tertio, is a good play; and the old\nsaying is, the third pays for all: the triplex,\nsir, is a good tripping measure; or the bells of\nSaint Bennet, sir, may put you in mind; one, two, three.\n\nDUKE ORSINO:\nYou can fool no more money out of me at this throw:\nif you will let your lady know I am here to speak\nwith her, and bring her along with you, it may awake\nmy bounty further.\n\nClown:\nMarry, sir, lullaby to your bounty till I come\nagain. I go, sir; but I would not have you to think\nthat my desire of having is the sin of covetousness:\nbut, as you say, sir, let your bounty take a nap, I\nwill awake it anon.\n\nVIOLA:\nHere comes the man, sir, that did rescue me.\n\nDUKE ORSINO:\nThat face of his I do remember well;\nYet, when I saw it last, it was besmear'd\nAs black as Vulcan in the smoke of war:\nA bawbling vessel was he captain of,\nFor shallow draught and bulk unprizable;\nWith which such scathful grapple did he make\nWith the most noble bottom of our fleet,\nThat very envy and the tongue of loss\nCried fame and honour on him. What's the matter?\n\nFirst Officer:\nOrsino, this is that Antonio\nThat took the Phoenix and her fraught from Candy;\nAnd this is he that did the Tiger board,\nWhen your young nephew Titus lost his leg:\nHere in the streets, desperate of shame and state,\nIn private brabble did we apprehend him.\n\nVIOLA:\nHe did me kindness, sir, drew on my side;\nBut in conclusion put strange speech upon me:\nI know not what 'twas but distraction.\n\nDUKE ORSINO:\nNotable pirate! thou salt-water thief!\nWhat foolish boldness brought thee to their mercies,\nWhom thou, in terms so bloody and so dear,\nHast made thine enemies?\n\nANTONIO:\nOrsino, noble sir,\nBe pleased that I shake off these names you give me:\nAntonio never yet was thief or pirate,\nThough I confess, on base and ground enough,\nOrsino's enemy. A witchcraft drew me hither:\nThat most ingrateful boy there by your side,\nFrom the rude sea's enraged and foamy mouth\nDid I redeem; a wreck past hope he was:\nHis life I gave him and did thereto add\nMy love, without retention or restraint,\nAll his in dedication; for his sake\nDid I expose myself, pure for his love,\nInto the danger of this adverse town;\nDrew to defend him when he was beset:\nWhere being apprehended, his false cunning,\nNot meaning to partake with me in danger,\nTaught him to face me out of his acquaintance,\nAnd grew a twenty years removed thing\nWhile one would wink; denied me mine own purse,\nWhich I had recommended to his use\nNot half an hour before.\n\nVIOLA:\nHow can this be?\n\nDUKE ORSINO:\nWhen came he to this town?\n\nANTONIO:\nTo-day, my lord; and for three months before,\nNo interim, not a minute's vacancy,\nBoth day and night did we keep company.\n\nDUKE ORSINO:\nHere comes the countess: now heaven walks on earth.\nBut for thee, fellow; fellow, thy words are madness:\nThree months this youth hath tended upon me;\nBut more of that anon. Take him aside.\n\nOLIVIA:\nWhat would my lord, but that he may not have,\nWherein Olivia may seem serviceable?\nCesario, you do not keep promise with me.\n\nVIOLA:\nMadam!\n\nDUKE ORSINO:\nGracious Olivia,--\n\nOLIVIA:\nWhat do you say, Cesario? Good my lord,--\n\nVIOLA:\nMy lord would speak; my duty hushes me.\n\nOLIVIA:\nIf it be aught to the old tune, my lord,\nIt is as fat and fulsome to mine ear\nAs howling after music.\n\nDUKE ORSINO:\nStill so cruel?\n\nOLIVIA:\nStill so constant, lord.\n\nDUKE ORSINO:\nWhat, to perverseness? you uncivil lady,\nTo whose ingrate and unauspicious altars\nMy soul the faithfull'st offerings hath breathed out\nThat e'er devotion tender'd! What shall I do?\n\nOLIVIA:\nEven what it please my lord, that shall become him.\n\nDUKE ORSINO:\nWhy should I not, had I the heart to do it,\nLike to the Egyptian thief at point of death,\nKill what I love?--a savage jealousy\nThat sometimes savours nobly. But hear me this:\nSince you to non-regardance cast my faith,\nAnd that I partly know the instrument\nThat screws me from my true place in your favour,\nLive you the marble-breasted tyrant still;\nBut this your minion, whom I know you love,\nAnd whom, by heaven I swear, I tender dearly,\nHim will I tear out of that cruel eye,\nWhere he sits crowned in his master's spite.\nCome, boy, with me; my thoughts are ripe in mischief:\nI'll sacrifice the lamb that I do love,\nTo spite a raven's heart within a dove.\n\nVIOLA:\nAnd I, most jocund, apt and willingly,\nTo do you rest, a thousand deaths would die.\n\nOLIVIA:\nWhere goes Cesario?\n\nVIOLA:\nAfter him I love\nMore than I love these eyes, more than my life,\nMore, by all mores, than e'er I shall love wife.\nIf I do feign, you witnesses above\nPunish my life for tainting of my love!\n\nOLIVIA:\nAy me, detested! how am I beguiled!\n\nVIOLA:\nWho does beguile you? who does do you wrong?\n\nOLIVIA:\nHast thou forgot thyself? is it so long?\nCall forth the holy father.\n\nDUKE ORSINO:\nCome, away!\n\nOLIVIA:\nWhither, my lord? Cesario, husband, stay.\n\nDUKE ORSINO:\nHusband!\n\nOLIVIA:\nAy, husband: can he that deny?\n\nDUKE ORSINO:\nHer husband, sirrah!\n\nVIOLA:\nNo, my lord, not I.\n\nOLIVIA:\nAlas, it is the baseness of thy fear\nThat makes thee strangle thy propriety:\nFear not, Cesario; take thy fortunes up;\nBe that thou know'st thou art, and then thou art\nAs great as that thou fear'st.\nO, welcome, father!\nFather, I charge thee, by thy reverence,\nHere to unfold, though lately we intended\nTo keep in darkness what occasion now\nReveals before 'tis ripe, what thou dost know\nHath newly pass'd between this youth and me.\n\nPriest:\nA contract of eternal bond of love,\nConfirm'd by mutual joinder of your hands,\nAttested by the holy close of lips,\nStrengthen'd by interchangement of your rings;\nAnd all the ceremony of this compact\nSeal'd in my function, by my testimony:\nSince when, my watch hath told me, toward my grave\nI have travell'd but two hours.\n\nDUKE ORSINO:\nO thou dissembling cub! what wilt thou be\nWhen time hath sow'd a grizzle on thy case?\nOr will not else thy craft so quickly grow,\nThat thine own trip shall be thine overthrow?\nFarewell, and take her; but direct thy feet\nWhere thou and I henceforth may never meet.\n\nVIOLA:\nMy lord, I do protest--\n\nOLIVIA:\nO, do not swear!\nHold little faith, though thou hast too much fear.\n\nSIR ANDREW:\nFor the love of God, a surgeon! Send one presently\nto Sir Toby.\n\nOLIVIA:\nWhat's the matter?\n\nSIR ANDREW:\nHe has broke my head across and has given Sir Toby\na bloody coxcomb too: for the love of God, your\nhelp! I had rather than forty pound I were at home.\n\nOLIVIA:\nWho has done this, Sir Andrew?\n\nSIR ANDREW:\nThe count's gentleman, one Cesario: we took him for\na coward, but he's the very devil incardinate.\n\nDUKE ORSINO:\nMy gentleman, Cesario?\n\nSIR ANDREW:\n'Od's lifelings, here he is! You broke my head for\nnothing; and that that I did, I was set on to do't\nby Sir Toby.\n\nVIOLA:\nWhy do you speak to me? I never hurt you:\nYou drew your sword upon me without cause;\nBut I bespoke you fair, and hurt you not.\n\nSIR ANDREW:\nIf a bloody coxcomb be a hurt, you have hurt me: I\nthink you set nothing by a bloody coxcomb.\nHere comes Sir Toby halting; you shall hear more:\nbut if he had not been in drink, he would have\ntickled you othergates than he did.\n\nDUKE ORSINO:\nHow now, gentleman! how is't with you?\n\nSIR TOBY BELCH:\nThat's all one: has hurt me, and there's the end\non't. Sot, didst see Dick surgeon, sot?\n\nClown:\nO, he's drunk, Sir Toby, an hour agone; his eyes\nwere set at eight i' the morning.\n\nSIR TOBY BELCH:\nThen he's a rogue, and a passy measures panyn: I\nhate a drunken rogue.\n\nOLIVIA:\nAway with him! Who hath made this havoc with them?\n\nSIR ANDREW:\nI'll help you, Sir Toby, because well be dressed together.\n\nSIR TOBY BELCH:\nWill you help? an ass-head and a coxcomb and a\nknave, a thin-faced knave, a gull!\n\nOLIVIA:\nGet him to bed, and let his hurt be look'd to.\n\nSEBASTIAN:\nI am sorry, madam, I have hurt your kinsman:\nBut, had it been the brother of my blood,\nI must have done no less with wit and safety.\nYou throw a strange regard upon me, and by that\nI do perceive it hath offended you:\nPardon me, sweet one, even for the vows\nWe made each other but so late ago.\n\nDUKE ORSINO:\nOne face, one voice, one habit, and two persons,\nA natural perspective, that is and is not!\n\nSEBASTIAN:\nAntonio, O my dear Antonio!\nHow have the hours rack'd and tortured me,\nSince I have lost thee!\n\nANTONIO:\nSebastian are you?\n\nSEBASTIAN:\nFear'st thou that, Antonio?\n\nANTONIO:\nHow have you made division of yourself?\nAn apple, cleft in two, is not more twin\nThan these two creatures. Which is Sebastian?\n\nOLIVIA:\nMost wonderful!\n\nSEBASTIAN:\nDo I stand there? I never had a brother;\nNor can there be that deity in my nature,\nOf here and every where. I had a sister,\nWhom the blind waves and surges have devour'd.\nOf charity, what kin are you to me?\nWhat countryman? what name? what parentage?\n\nVIOLA:\nOf Messaline: Sebastian was my father;\nSuch a Sebastian was my brother too,\nSo went he suited to his watery tomb:\nIf spirits can assume both form and suit\nYou come to fright us.\n\nSEBASTIAN:\nA spirit I am indeed;\nBut am in that dimension grossly clad\nWhich from the womb I did participate.\nWere you a woman, as the rest goes even,\nI should my tears let fall upon your cheek,\nAnd say 'Thrice-welcome, drowned Viola!'\n\nVIOLA:\nMy father had a mole upon his brow.\n\nSEBASTIAN:\nAnd so had mine.\n\nVIOLA:\nAnd died that day when Viola from her birth\nHad number'd thirteen years.\n\nSEBASTIAN:\nO, that record is lively in my soul!\nHe finished indeed his mortal act\nThat day that made my sister thirteen years.\n\nVIOLA:\nIf nothing lets to make us happy both\nBut this my masculine usurp'd attire,\nDo not embrace me till each circumstance\nOf place, time, fortune, do cohere and jump\nThat I am Viola: which to confirm,\nI'll bring you to a captain in this town,\nWhere lie my maiden weeds; by whose gentle help\nI was preserved to serve this noble count.\nAll the occurrence of my fortune since\nHath been between this lady and this lord.\n\nSEBASTIAN:\n\nDUKE ORSINO:\nBe not amazed; right noble is his blood.\nIf this be so, as yet the glass seems true,\nI shall have share in this most happy wreck.\nBoy, thou hast said to me a thousand times\nThou never shouldst love woman like to me.\n\nVIOLA:\nAnd all those sayings will I overswear;\nAnd those swearings keep as true in soul\nAs doth that orbed continent the fire\nThat severs day from night.\n\nDUKE ORSINO:\nGive me thy hand;\nAnd let me see thee in thy woman's weeds.\n\nVIOLA:\nThe captain that did bring me first on shore\nHath my maid's garments: he upon some action\nIs now in durance, at Malvolio's suit,\nA gentleman, and follower of my lady's.\n\nOLIVIA:\nHe shall enlarge him: fetch Malvolio hither:\nAnd yet, alas, now I remember me,\nThey say, poor gentleman, he's much distract.\nA most extracting frenzy of mine own\nFrom my remembrance clearly banish'd his.\nHow does he, sirrah?\n\nClown:\nTruly, madam, he holds Belzebub at the staves's end as\nwell as a man in his case may do: has here writ a\nletter to you; I should have given't you to-day\nmorning, but as a madman's epistles are no gospels,\nso it skills not much when they are delivered.\n\nOLIVIA:\nOpen't, and read it.\n\nClown:\nLook then to be well edified when the fool delivers\nthe madman.\n'By the Lord, madam,'--\n\nOLIVIA:\nHow now! art thou mad?\n\nClown:\nNo, madam, I do but read madness: an your ladyship\nwill have it as it ought to be, you must allow Vox.\n\nOLIVIA:\nPrithee, read i' thy right wits.\n\nClown:\nSo I do, madonna; but to read his right wits is to\nread thus: therefore perpend, my princess, and give ear.\n\nOLIVIA:\nRead it you, sirrah.\n\nFABIAN:\n\nOLIVIA:\nDid he write this?\n\nClown:\nAy, madam.\n\nDUKE ORSINO:\nThis savours not much of distraction.\n\nOLIVIA:\nSee him deliver'd, Fabian; bring him hither.\nMy lord so please you, these things further\nthought on,\nTo think me as well a sister as a wife,\nOne day shall crown the alliance on't, so please you,\nHere at my house and at my proper cost.\n\nDUKE ORSINO:\nMadam, I am most apt to embrace your offer.\nYour master quits you; and for your service done him,\nSo much against the mettle of your sex,\nSo far beneath your soft and tender breeding,\nAnd since you call'd me master for so long,\nHere is my hand: you shall from this time be\nYour master's mistress.\n\nOLIVIA:\nA sister! you are she.\n\nDUKE ORSINO:\nIs this the madman?\n\nOLIVIA:\nAy, my lord, this same.\nHow now, Malvolio!\n\nMALVOLIO:\nMadam, you have done me wrong,\nNotorious wrong.\n\nOLIVIA:\nHave I, Malvolio? no.\n\nMALVOLIO:\nLady, you have. Pray you, peruse that letter.\nYou must not now deny it is your hand:\nWrite from it, if you can, in hand or phrase;\nOr say 'tis not your seal, nor your invention:\nYou can say none of this: well, grant it then\nAnd tell me, in the modesty of honour,\nWhy you have given me such clear lights of favour,\nBade me come smiling and cross-garter'd to you,\nTo put on yellow stockings and to frown\nUpon Sir Toby and the lighter people;\nAnd, acting this in an obedient hope,\nWhy have you suffer'd me to be imprison'd,\nKept in a dark house, visited by the priest,\nAnd made the most notorious geck and gull\nThat e'er invention play'd on? tell me why.\n\nOLIVIA:\nAlas, Malvolio, this is not my writing,\nThough, I confess, much like the character\nBut out of question 'tis Maria's hand.\nAnd now I do bethink me, it was she\nFirst told me thou wast mad; then camest in smiling,\nAnd in such forms which here were presupposed\nUpon thee in the letter. Prithee, be content:\nThis practise hath most shrewdly pass'd upon thee;\nBut when we know the grounds and authors of it,\nThou shalt be both the plaintiff and the judge\nOf thine own cause.\n\nFABIAN:\nGood madam, hear me speak,\nAnd let no quarrel nor no brawl to come\nTaint the condition of this present hour,\nWhich I have wonder'd at. In hope it shall not,\nMost freely I confess, myself and Toby\nSet this device against Malvolio here,\nUpon some stubborn and uncourteous parts\nWe had conceived against him: Maria writ\nThe letter at Sir Toby's great importance;\nIn recompense whereof he hath married her.\nHow with a sportful malice it was follow'd,\nMay rather pluck on laughter than revenge;\nIf that the injuries be justly weigh'd\nThat have on both sides pass'd.\n\nOLIVIA:\nAlas, poor fool, how have they baffled thee!\n\nClown:\nWhy, 'some are born great, some achieve greatness,\nand some have greatness thrown upon them.' I was\none, sir, in this interlude; one Sir Topas, sir; but\nthat's all one. 'By the Lord, fool, I am not mad.'\nBut do you remember? 'Madam, why laugh you at such\na barren rascal? an you smile not, he's gagged:'\nand thus the whirligig of time brings in his revenges.\n\nMALVOLIO:\nI'll be revenged on the whole pack of you.\n\nOLIVIA:\nHe hath been most notoriously abused.\n\nDUKE ORSINO:\nPursue him and entreat him to a peace:\nHe hath not told us of the captain yet:\nWhen that is known and golden time convents,\nA solemn combination shall be made\nOf our dear souls. Meantime, sweet sister,\nWe will not part from hence. Cesario, come;\nFor so you shall be, while you are a man;\nBut when in other habits you are seen,\nOrsino's mistress and his fancy's queen.\n\nClown:\n\nKING JOHN:\nNow, say, Chatillon, what would France with us?\n\nCHATILLON:\nThus, after greeting, speaks the King of France\nIn my behavior to the majesty,\nThe borrow'd majesty, of England here.\n\nQUEEN ELINOR:\nA strange beginning: 'borrow'd majesty!'\n\nKING JOHN:\nSilence, good mother; hear the embassy.\n\nCHATILLON:\nPhilip of France, in right and true behalf\nOf thy deceased brother Geffrey's son,\nArthur Plantagenet, lays most lawful claim\nTo this fair island and the territories,\nTo Ireland, Poictiers, Anjou, Touraine, Maine,\nDesiring thee to lay aside the sword\nWhich sways usurpingly these several titles,\nAnd put these same into young Arthur's hand,\nThy nephew and right royal sovereign.\n\nKING JOHN:\nWhat follows if we disallow of this?\n\nCHATILLON:\nThe proud control of fierce and bloody war,\nTo enforce these rights so forcibly withheld.\n\nKING JOHN:\nHere have we war for war and blood for blood,\nControlment for controlment: so answer France.\n\nCHATILLON:\nThen take my king's defiance from my mouth,\nThe farthest limit of my embassy.\n\nKING JOHN:\nBear mine to him, and so depart in peace:\nBe thou as lightning in the eyes of France;\nFor ere thou canst report I will be there,\nThe thunder of my cannon shall be heard:\nSo hence! Be thou the trumpet of our wrath\nAnd sullen presage of your own decay.\nAn honourable conduct let him have:\nPembroke, look to 't. Farewell, Chatillon.\n\nQUEEN ELINOR:\nWhat now, my son! have I not ever said\nHow that ambitious Constance would not cease\nTill she had kindled France and all the world,\nUpon the right and party of her son?\nThis might have been prevented and made whole\nWith very easy arguments of love,\nWhich now the manage of two kingdoms must\nWith fearful bloody issue arbitrate.\n\nKING JOHN:\nOur strong possession and our right for us.\n\nQUEEN ELINOR:\nYour strong possession much more than your right,\nOr else it must go wrong with you and me:\nSo much my conscience whispers in your ear,\nWhich none but heaven and you and I shall hear.\n\nESSEX:\nMy liege, here is the strangest controversy\nCome from country to be judged by you,\nThat e'er I heard: shall I produce the men?\n\nKING JOHN:\nLet them approach.\nOur abbeys and our priories shall pay\nThis expedition's charge.\nWhat men are you?\n\nBASTARD:\nYour faithful subject I, a gentleman\nBorn in Northamptonshire and eldest son,\nAs I suppose, to Robert Faulconbridge,\nA soldier, by the honour-giving hand\nOf Coeur-de-lion knighted in the field.\n\nKING JOHN:\nWhat art thou?\n\nROBERT:\nThe son and heir to that same Faulconbridge.\n\nKING JOHN:\nIs that the elder, and art thou the heir?\nYou came not of one mother then, it seems.\n\nBASTARD:\nMost certain of one mother, mighty king;\nThat is well known; and, as I think, one father:\nBut for the certain knowledge of that truth\nI put you o'er to heaven and to my mother:\nOf that I doubt, as all men's children may.\n\nQUEEN ELINOR:\nOut on thee, rude man! thou dost shame thy mother\nAnd wound her honour with this diffidence.\n\nBASTARD:\nI, madam? no, I have no reason for it;\nThat is my brother's plea and none of mine;\nThe which if he can prove, a' pops me out\nAt least from fair five hundred pound a year:\nHeaven guard my mother's honour and my land!\n\nKING JOHN:\nA good blunt fellow. Why, being younger born,\nDoth he lay claim to thine inheritance?\n\nBASTARD:\nI know not why, except to get the land.\nBut once he slander'd me with bastardy:\nBut whether I be as true begot or no,\nThat still I lay upon my mother's head,\nBut that I am as well begot, my liege,--\nFair fall the bones that took the pains for me!--\nCompare our faces and be judge yourself.\nIf old sir Robert did beget us both\nAnd were our father and this son like him,\nO old sir Robert, father, on my knee\nI give heaven thanks I was not like to thee!\n\nKING JOHN:\nWhy, what a madcap hath heaven lent us here!\n\nQUEEN ELINOR:\nHe hath a trick of Coeur-de-lion's face;\nThe accent of his tongue affecteth him.\nDo you not read some tokens of my son\nIn the large composition of this man?\n\nKING JOHN:\nMine eye hath well examined his parts\nAnd finds them perfect Richard. Sirrah, speak,\nWhat doth move you to claim your brother's land?\n\nBASTARD:\nBecause he hath a half-face, like my father.\nWith half that face would he have all my land:\nA half-faced groat five hundred pound a year!\n\nROBERT:\nMy gracious liege, when that my father lived,\nYour brother did employ my father much,--\n\nBASTARD:\nWell, sir, by this you cannot get my land:\nYour tale must be how he employ'd my mother.\n\nROBERT:\nAnd once dispatch'd him in an embassy\nTo Germany, there with the emperor\nTo treat of high affairs touching that time.\nThe advantage of his absence took the king\nAnd in the mean time sojourn'd at my father's;\nWhere how he did prevail I shame to speak,\nBut truth is truth: large lengths of seas and shores\nBetween my father and my mother lay,\nAs I have heard my father speak himself,\nWhen this same lusty gentleman was got.\nUpon his death-bed he by will bequeath'd\nHis lands to me, and took it on his death\nThat this my mother's son was none of his;\nAnd if he were, he came into the world\nFull fourteen weeks before the course of time.\nThen, good my liege, let me have what is mine,\nMy father's land, as was my father's will.\n\nKING JOHN:\nSirrah, your brother is legitimate;\nYour father's wife did after wedlock bear him,\nAnd if she did play false, the fault was hers;\nWhich fault lies on the hazards of all husbands\nThat marry wives. Tell me, how if my brother,\nWho, as you say, took pains to get this son,\nHad of your father claim'd this son for his?\nIn sooth, good friend, your father might have kept\nThis calf bred from his cow from all the world;\nIn sooth he might; then, if he were my brother's,\nMy brother might not claim him; nor your father,\nBeing none of his, refuse him: this concludes;\nMy mother's son did get your father's heir;\nYour father's heir must have your father's land.\n\nROBERT:\nShall then my father's will be of no force\nTo dispossess that child which is not his?\n\nBASTARD:\nOf no more force to dispossess me, sir,\nThan was his will to get me, as I think.\n\nQUEEN ELINOR:\nWhether hadst thou rather be a Faulconbridge\nAnd like thy brother, to enjoy thy land,\nOr the reputed son of Coeur-de-lion,\nLord of thy presence and no land beside?\n\nBASTARD:\nMadam, an if my brother had my shape,\nAnd I had his, sir Robert's his, like him;\nAnd if my legs were two such riding-rods,\nMy arms such eel-skins stuff'd, my face so thin\nThat in mine ear I durst not stick a rose\nLest men should say 'Look, where three-farthings goes!'\nAnd, to his shape, were heir to all this land,\nWould I might never stir from off this place,\nI would give it every foot to have this face;\nI would not be sir Nob in any case.\n\nQUEEN ELINOR:\nI like thee well: wilt thou forsake thy fortune,\nBequeath thy land to him and follow me?\nI am a soldier and now bound to France.\n\nBASTARD:\nBrother, take you my land, I'll take my chance.\nYour face hath got five hundred pound a year,\nYet sell your face for five pence and 'tis dear.\nMadam, I'll follow you unto the death.\n\nQUEEN ELINOR:\nNay, I would have you go before me thither.\n\nBASTARD:\nOur country manners give our betters way.\n\nKING JOHN:\nWhat is thy name?\n\nBASTARD:\nPhilip, my liege, so is my name begun,\nPhilip, good old sir Robert's wife's eldest son.\n\nKING JOHN:\nFrom henceforth bear his name whose form thou bear'st:\nKneel thou down Philip, but rise more great,\nArise sir Richard and Plantagenet.\n\nBASTARD:\nBrother by the mother's side, give me your hand:\nMy father gave me honour, yours gave land.\nNow blessed by the hour, by night or day,\nWhen I was got, sir Robert was away!\n\nQUEEN ELINOR:\nThe very spirit of Plantagenet!\nI am thy grandam, Richard; call me so.\n\nBASTARD:\nMadam, by chance but not by truth; what though?\nSomething about, a little from the right,\nIn at the window, or else o'er the hatch:\nWho dares not stir by day must walk by night,\nAnd have is have, however men do catch:\nNear or far off, well won is still well shot,\nAnd I am I, howe'er I was begot.\n\nKING JOHN:\nGo, Faulconbridge: now hast thou thy desire;\nA landless knight makes thee a landed squire.\nCome, madam, and come, Richard, we must speed\nFor France, for France, for it is more than need.\n\nBASTARD:\nBrother, adieu: good fortune come to thee!\nFor thou wast got i' the way of honesty.\nA foot of honour better than I was;\nBut many a many foot of land the worse.\nWell, now can I make any Joan a lady.\n'Good den, sir Richard!'--'God-a-mercy, fellow!'--\nAnd if his name be George, I'll call him Peter;\nFor new-made honour doth forget men's names;\n'Tis too respective and too sociable\nFor your conversion. Now your traveller,\nHe and his toothpick at my worship's mess,\nAnd when my knightly stomach is sufficed,\nWhy then I suck my teeth and catechise\nMy picked man of countries: 'My dear sir,'\nThus, leaning on mine elbow, I begin,\n'I shall beseech you'--that is question now;\nAnd then comes answer like an Absey book:\n'O sir,' says answer, 'at your best command;\nAt your employment; at your service, sir;'\n'No, sir,' says question, 'I, sweet sir, at yours:'\nAnd so, ere answer knows what question would,\nSaving in dialogue of compliment,\nAnd talking of the Alps and Apennines,\nThe Pyrenean and the river Po,\nIt draws toward supper in conclusion so.\nBut this is worshipful society\nAnd fits the mounting spirit like myself,\nFor he is but a bastard to the time\nThat doth not smack of observation;\nAnd so am I, whether I smack or no;\nAnd not alone in habit and device,\nExterior form, outward accoutrement,\nBut from the inward motion to deliver\nSweet, sweet, sweet poison for the age's tooth:\nWhich, though I will not practise to deceive,\nYet, to avoid deceit, I mean to learn;\nFor it shall strew the footsteps of my rising.\nBut who comes in such haste in riding-robes?\nWhat woman-post is this? hath she no husband\nThat will take pains to blow a horn before her?\nO me! it is my mother. How now, good lady!\nWhat brings you here to court so hastily?\n\nLADY FAULCONBRIDGE:\nWhere is that slave, thy brother? where is he,\nThat holds in chase mine honour up and down?\n\nBASTARD:\nMy brother Robert? old sir Robert's son?\nColbrand the giant, that same mighty man?\nIs it sir Robert's son that you seek so?\n\nLADY FAULCONBRIDGE:\nSir Robert's son! Ay, thou unreverend boy,\nSir Robert's son: why scorn'st thou at sir Robert?\nHe is sir Robert's son, and so art thou.\n\nBASTARD:\nJames Gurney, wilt thou give us leave awhile?\n\nGURNEY:\nGood leave, good Philip.\n\nBASTARD:\nPhilip! sparrow: James,\nThere's toys abroad: anon I'll tell thee more.\nMadam, I was not old sir Robert's son:\nSir Robert might have eat his part in me\nUpon Good-Friday and ne'er broke his fast:\nSir Robert could do well: marry, to confess,\nCould he get me? Sir Robert could not do it:\nWe know his handiwork: therefore, good mother,\nTo whom am I beholding for these limbs?\nSir Robert never holp to make this leg.\n\nLADY FAULCONBRIDGE:\nHast thou conspired with thy brother too,\nThat for thine own gain shouldst defend mine honour?\nWhat means this scorn, thou most untoward knave?\n\nBASTARD:\nKnight, knight, good mother, Basilisco-like.\nWhat! I am dubb'd! I have it on my shoulder.\nBut, mother, I am not sir Robert's son;\nI have disclaim'd sir Robert and my land;\nLegitimation, name and all is gone:\nThen, good my mother, let me know my father;\nSome proper man, I hope: who was it, mother?\n\nLADY FAULCONBRIDGE:\nHast thou denied thyself a Faulconbridge?\n\nBASTARD:\nAs faithfully as I deny the devil.\n\nLADY FAULCONBRIDGE:\nKing Richard Coeur-de-lion was thy father:\nBy long and vehement suit I was seduced\nTo make room for him in my husband's bed:\nHeaven lay not my transgression to my charge!\nThou art the issue of my dear offence,\nWhich was so strongly urged past my defence.\n\nBASTARD:\nNow, by this light, were I to get again,\nMadam, I would not wish a better father.\nSome sins do bear their privilege on earth,\nAnd so doth yours; your fault was not your folly:\nNeeds must you lay your heart at his dispose,\nSubjected tribute to commanding love,\nAgainst whose fury and unmatched force\nThe aweless lion could not wage the fight,\nNor keep his princely heart from Richard's hand.\nHe that perforce robs lions of their hearts\nMay easily win a woman's. Ay, my mother,\nWith all my heart I thank thee for my father!\nWho lives and dares but say thou didst not well\nWhen I was got, I'll send his soul to hell.\nCome, lady, I will show thee to my kin;\nAnd they shall say, when Richard me begot,\nIf thou hadst said him nay, it had been sin:\nWho says it was, he lies; I say 'twas not.\n\nLEWIS:\nBefore Angiers well met, brave Austria.\nArthur, that great forerunner of thy blood,\nRichard, that robb'd the lion of his heart\nAnd fought the holy wars in Palestine,\nBy this brave duke came early to his grave:\nAnd for amends to his posterity,\nAt our importance hither is he come,\nTo spread his colours, boy, in thy behalf,\nAnd to rebuke the usurpation\nOf thy unnatural uncle, English John:\nEmbrace him, love him, give him welcome hither.\n\nARTHUR:\nGod shall forgive you Coeur-de-lion's death\nThe rather that you give his offspring life,\nShadowing their right under your wings of war:\nI give you welcome with a powerless hand,\nBut with a heart full of unstained love:\nWelcome before the gates of Angiers, duke.\n\nLEWIS:\nA noble boy! Who would not do thee right?\n\nAUSTRIA:\nUpon thy cheek lay I this zealous kiss,\nAs seal to this indenture of my love,\nThat to my home I will no more return,\nTill Angiers and the right thou hast in France,\nTogether with that pale, that white-faced shore,\nWhose foot spurns back the ocean's roaring tides\nAnd coops from other lands her islanders,\nEven till that England, hedged in with the main,\nThat water-walled bulwark, still secure\nAnd confident from foreign purposes,\nEven till that utmost corner of the west\nSalute thee for her king: till then, fair boy,\nWill I not think of home, but follow arms.\n\nCONSTANCE:\nO, take his mother's thanks, a widow's thanks,\nTill your strong hand shall help to give him strength\nTo make a more requital to your love!\n\nAUSTRIA:\nThe peace of heaven is theirs that lift their swords\nIn such a just and charitable war.\n\nKING PHILIP:\nWell then, to work: our cannon shall be bent\nAgainst the brows of this resisting town.\nCall for our chiefest men of discipline,\nTo cull the plots of best advantages:\nWe'll lay before this town our royal bones,\nWade to the market-place in Frenchmen's blood,\nBut we will make it subject to this boy.\n\nCONSTANCE:\nStay for an answer to your embassy,\nLest unadvised you stain your swords with blood:\nMy Lord Chatillon may from England bring,\nThat right in peace which here we urge in war,\nAnd then we shall repent each drop of blood\nThat hot rash haste so indirectly shed.\n\nKING PHILIP:\nA wonder, lady! lo, upon thy wish,\nOur messenger Chatillon is arrived!\nWhat England says, say briefly, gentle lord;\nWe coldly pause for thee; Chatillon, speak.\n\nCHATILLON:\nThen turn your forces from this paltry siege\nAnd stir them up against a mightier task.\nEngland, impatient of your just demands,\nHath put himself in arms: the adverse winds,\nWhose leisure I have stay'd, have given him time\nTo land his legions all as soon as I;\nHis marches are expedient to this town,\nHis forces strong, his soldiers confident.\nWith him along is come the mother-queen,\nAn Ate, stirring him to blood and strife;\nWith her her niece, the Lady Blanch of Spain;\nWith them a bastard of the king's deceased,\nAnd all the unsettled humours of the land,\nRash, inconsiderate, fiery voluntaries,\nWith ladies' faces and fierce dragons' spleens,\nHave sold their fortunes at their native homes,\nBearing their birthrights proudly on their backs,\nTo make hazard of new fortunes here:\nIn brief, a braver choice of dauntless spirits\nThan now the English bottoms have waft o'er\nDid nearer float upon the swelling tide,\nTo do offence and scath in Christendom.\nThe interruption of their churlish drums\nCuts off more circumstance: they are at hand,\nTo parley or to fight; therefore prepare.\n\nKING PHILIP:\nHow much unlook'd for is this expedition!\n\nAUSTRIA:\nBy how much unexpected, by so much\nWe must awake endavour for defence;\nFor courage mounteth with occasion:\nLet them be welcome then: we are prepared.\n\nKING JOHN:\nPeace be to France, if France in peace permit\nOur just and lineal entrance to our own;\nIf not, bleed France, and peace ascend to heaven,\nWhiles we, God's wrathful agent, do correct\nTheir proud contempt that beats His peace to heaven.\n\nKING PHILIP:\nPeace be to England, if that war return\nFrom France to England, there to live in peace.\nEngland we love; and for that England's sake\nWith burden of our armour here we sweat.\nThis toil of ours should be a work of thine;\nBut thou from loving England art so far,\nThat thou hast under-wrought his lawful king\nCut off the sequence of posterity,\nOut-faced infant state and done a rape\nUpon the maiden virtue of the crown.\nLook here upon thy brother Geffrey's face;\nThese eyes, these brows, were moulded out of his:\nThis little abstract doth contain that large\nWhich died in Geffrey, and the hand of time\nShall draw this brief into as huge a volume.\nThat Geffrey was thy elder brother born,\nAnd this his son; England was Geffrey's right\nAnd this is Geffrey's: in the name of God\nHow comes it then that thou art call'd a king,\nWhen living blood doth in these temples beat,\nWhich owe the crown that thou o'ermasterest?\n\nKING JOHN:\nFrom whom hast thou this great commission, France,\nTo draw my answer from thy articles?\n\nKING PHILIP:\nFrom that supernal judge, that stirs good thoughts\nIn any breast of strong authority,\nTo look into the blots and stains of right:\nThat judge hath made me guardian to this boy:\nUnder whose warrant I impeach thy wrong\nAnd by whose help I mean to chastise it.\n\nKING JOHN:\nAlack, thou dost usurp authority.\n\nKING PHILIP:\nExcuse; it is to beat usurping down.\n\nQUEEN ELINOR:\nWho is it thou dost call usurper, France?\n\nCONSTANCE:\nLet me make answer; thy usurping son.\n\nQUEEN ELINOR:\nOut, insolent! thy bastard shall be king,\nThat thou mayst be a queen, and cheque the world!\n\nCONSTANCE:\nMy bed was ever to thy son as true\nAs thine was to thy husband; and this boy\nLiker in feature to his father Geffrey\nThan thou and John in manners; being as like\nAs rain to water, or devil to his dam.\nMy boy a bastard! By my soul, I think\nHis father never was so true begot:\nIt cannot be, an if thou wert his mother.\n\nQUEEN ELINOR:\nThere's a good mother, boy, that blots thy father.\n\nCONSTANCE:\nThere's a good grandam, boy, that would blot thee.\n\nAUSTRIA:\nPeace!\n\nBASTARD:\nHear the crier.\n\nAUSTRIA:\nWhat the devil art thou?\n\nBASTARD:\nOne that will play the devil, sir, with you,\nAn a' may catch your hide and you alone:\nYou are the hare of whom the proverb goes,\nWhose valour plucks dead lions by the beard;\nI'll smoke your skin-coat, an I catch you right;\nSirrah, look to't; i' faith, I will, i' faith.\n\nBLANCH:\nO, well did he become that lion's robe\nThat did disrobe the lion of that robe!\n\nBASTARD:\nIt lies as sightly on the back of him\nAs great Alcides' shows upon an ass:\nBut, ass, I'll take that burthen from your back,\nOr lay on that shall make your shoulders crack.\n\nAUSTRIA:\nWhat craker is this same that deafs our ears\nWith this abundance of superfluous breath?\n\nKING PHILIP:\nLewis, determine what we shall do straight.\n\nLEWIS:\nWomen and fools, break off your conference.\nKing John, this is the very sum of all;\nEngland and Ireland, Anjou, Touraine, Maine,\nIn right of Arthur do I claim of thee:\nWilt thou resign them and lay down thy arms?\n\nKING JOHN:\nMy life as soon: I do defy thee, France.\nArthur of Bretagne, yield thee to my hand;\nAnd out of my dear love I'll give thee more\nThan e'er the coward hand of France can win:\nSubmit thee, boy.\n\nQUEEN ELINOR:\nCome to thy grandam, child.\n\nCONSTANCE:\nDo, child, go to it grandam, child:\nGive grandam kingdom, and it grandam will\nGive it a plum, a cherry, and a fig:\nThere's a good grandam.\n\nARTHUR:\nGood my mother, peace!\nI would that I were low laid in my grave:\nI am not worth this coil that's made for me.\n\nQUEEN ELINOR:\nHis mother shames him so, poor boy, he weeps.\n\nCONSTANCE:\nNow shame upon you, whether she does or no!\nHis grandam's wrongs, and not his mother's shames,\nDraws those heaven-moving pearls from his poor eyes,\nWhich heaven shall take in nature of a fee;\nAy, with these crystal beads heaven shall be bribed\nTo do him justice and revenge on you.\n\nQUEEN ELINOR:\nThou monstrous slanderer of heaven and earth!\n\nCONSTANCE:\nThou monstrous injurer of heaven and earth!\nCall not me slanderer; thou and thine usurp\nThe dominations, royalties and rights\nOf this oppressed boy: this is thy eld'st son's son,\nInfortunate in nothing but in thee:\nThy sins are visited in this poor child;\nThe canon of the law is laid on him,\nBeing but the second generation\nRemoved from thy sin-conceiving womb.\n\nKING JOHN:\nBedlam, have done.\n\nCONSTANCE:\nI have but this to say,\nThat he is not only plagued for her sin,\nBut God hath made her sin and her the plague\nOn this removed issue, plague for her\nAnd with her plague; her sin his injury,\nHer injury the beadle to her sin,\nAll punish'd in the person of this child,\nAnd all for her; a plague upon her!\n\nQUEEN ELINOR:\nThou unadvised scold, I can produce\nA will that bars the title of thy son.\n\nCONSTANCE:\nAy, who doubts that? a will! a wicked will:\nA woman's will; a canker'd grandam's will!\n\nKING PHILIP:\nPeace, lady! pause, or be more temperate:\nIt ill beseems this presence to cry aim\nTo these ill-tuned repetitions.\nSome trumpet summon hither to the walls\nThese men of Angiers: let us hear them speak\nWhose title they admit, Arthur's or John's.\n\nFirst Citizen:\nWho is it that hath warn'd us to the walls?\n\nKING PHILIP:\n'Tis France, for England.\n\nKING JOHN:\nEngland, for itself.\nYou men of Angiers, and my loving subjects--\n\nKING PHILIP:\nYou loving men of Angiers, Arthur's subjects,\nOur trumpet call'd you to this gentle parle--\n\nKING JOHN:\nFor our advantage; therefore hear us first.\nThese flags of France, that are advanced here\nBefore the eye and prospect of your town,\nHave hither march'd to your endamagement:\nThe cannons have their bowels full of wrath,\nAnd ready mounted are they to spit forth\nTheir iron indignation 'gainst your walls:\nAll preparation for a bloody siege\nAll merciless proceeding by these French\nConfronts your city's eyes, your winking gates;\nAnd but for our approach those sleeping stones,\nThat as a waist doth girdle you about,\nBy the compulsion of their ordinance\nBy this time from their fixed beds of lime\nHad been dishabited, and wide havoc made\nFor bloody power to rush upon your peace.\nBut on the sight of us your lawful king,\nWho painfully with much expedient march\nHave brought a countercheque before your gates,\nTo save unscratch'd your city's threatened cheeks,\nBehold, the French amazed vouchsafe a parle;\nAnd now, instead of bullets wrapp'd in fire,\nTo make a shaking fever in your walls,\nThey shoot but calm words folded up in smoke,\nTo make a faithless error in your ears:\nWhich trust accordingly, kind citizens,\nAnd let us in, your king, whose labour'd spirits,\nForwearied in this action of swift speed,\nCrave harbourage within your city walls.\n\nKING PHILIP:\nWhen I have said, make answer to us both.\nLo, in this right hand, whose protection\nIs most divinely vow'd upon the right\nOf him it holds, stands young Plantagenet,\nSon to the elder brother of this man,\nAnd king o'er him and all that he enjoys:\nFor this down-trodden equity, we tread\nIn warlike march these greens before your town,\nBeing no further enemy to you\nThan the constraint of hospitable zeal\nIn the relief of this oppressed child\nReligiously provokes. Be pleased then\nTo pay that duty which you truly owe\nTo that owes it, namely this young prince:\nAnd then our arms, like to a muzzled bear,\nSave in aspect, hath all offence seal'd up;\nOur cannons' malice vainly shall be spent\nAgainst the invulnerable clouds of heaven;\nAnd with a blessed and unvex'd retire,\nWith unhack'd swords and helmets all unbruised,\nWe will bear home that lusty blood again\nWhich here we came to spout against your town,\nAnd leave your children, wives and you in peace.\nBut if you fondly pass our proffer'd offer,\n'Tis not the roundure of your old-faced walls\nCan hide you from our messengers of war,\nThough all these English and their discipline\nWere harbour'd in their rude circumference.\nThen tell us, shall your city call us lord,\nIn that behalf which we have challenged it?\nOr shall we give the signal to our rage\nAnd stalk in blood to our possession?\n\nFirst Citizen:\nIn brief, we are the king of England's subjects:\nFor him, and in his right, we hold this town.\n\nKING JOHN:\nAcknowledge then the king, and let me in.\n\nFirst Citizen:\nThat can we not; but he that proves the king,\nTo him will we prove loyal: till that time\nHave we ramm'd up our gates against the world.\n\nKING JOHN:\nDoth not the crown of England prove the king?\nAnd if not that, I bring you witnesses,\nTwice fifteen thousand hearts of England's breed,--\n\nBASTARD:\nBastards, and else.\n\nKING JOHN:\nTo verify our title with their lives.\n\nKING PHILIP:\nAs many and as well-born bloods as those,--\n\nBASTARD:\nSome bastards too.\n\nKING PHILIP:\nStand in his face to contradict his claim.\n\nFirst Citizen:\nTill you compound whose right is worthiest,\nWe for the worthiest hold the right from both.\n\nKING JOHN:\nThen God forgive the sin of all those souls\nThat to their everlasting residence,\nBefore the dew of evening fall, shall fleet,\nIn dreadful trial of our kingdom's king!\n\nKING PHILIP:\nAmen, amen! Mount, chevaliers! to arms!\n\nBASTARD:\nSaint George, that swinged the dragon, and e'er since\nSits on his horseback at mine hostess' door,\nTeach us some fence!\nSirrah, were I at home,\nAt your den, sirrah, with your lioness\nI would set an ox-head to your lion's hide,\nAnd make a monster of you.\n\nAUSTRIA:\nPeace! no more.\n\nBASTARD:\nO tremble, for you hear the lion roar.\n\nKING JOHN:\nUp higher to the plain; where we'll set forth\nIn best appointment all our regiments.\n\nBASTARD:\nSpeed then, to take advantage of the field.\n\nKING PHILIP:\nIt shall be so; and at the other hill\nCommand the rest to stand. God and our right!\n\nFrench Herald:\nYou men of Angiers, open wide your gates,\nAnd let young Arthur, Duke of Bretagne, in,\nWho by the hand of France this day hath made\nMuch work for tears in many an English mother,\nWhose sons lie scattered on the bleeding ground;\nMany a widow's husband grovelling lies,\nColdly embracing the discolour'd earth;\nAnd victory, with little loss, doth play\nUpon the dancing banners of the French,\nWho are at hand, triumphantly display'd,\nTo enter conquerors and to proclaim\nArthur of Bretagne England's king and yours.\n\nEnglish Herald:\nRejoice, you men of Angiers, ring your bells:\nKing John, your king and England's doth approach,\nCommander of this hot malicious day:\nTheir armours, that march'd hence so silver-bright,\nHither return all gilt with Frenchmen's blood;\nThere stuck no plume in any English crest\nThat is removed by a staff of France;\nOur colours do return in those same hands\nThat did display them when we first march'd forth;\nAnd, like a troop of jolly huntsmen, come\nOur lusty English, all with purpled hands,\nDyed in the dying slaughter of their foes:\nOpen your gates and gives the victors way.\n\nFirst Citizen:\nHeralds, from off our towers we might behold,\nFrom first to last, the onset and retire\nOf both your armies; whose equality\nBy our best eyes cannot be censured:\nBlood hath bought blood and blows have answered blows;\nStrength match'd with strength, and power confronted power:\nBoth are alike; and both alike we like.\nOne must prove greatest: while they weigh so even,\nWe hold our town for neither, yet for both.\n\nKING JOHN:\nFrance, hast thou yet more blood to cast away?\nSay, shall the current of our right run on?\nWhose passage, vex'd with thy impediment,\nShall leave his native channel and o'erswell\nWith course disturb'd even thy confining shores,\nUnless thou let his silver water keep\nA peaceful progress to the ocean.\n\nKING PHILIP:\nEngland, thou hast not saved one drop of blood,\nIn this hot trial, more than we of France;\nRather, lost more. And by this hand I swear,\nThat sways the earth this climate overlooks,\nBefore we will lay down our just-borne arms,\nWe'll put thee down, 'gainst whom these arms we bear,\nOr add a royal number to the dead,\nGracing the scroll that tells of this war's loss\nWith slaughter coupled to the name of kings.\n\nBASTARD:\nHa, majesty! how high thy glory towers,\nWhen the rich blood of kings is set on fire!\nO, now doth Death line his dead chaps with steel;\nThe swords of soldiers are his teeth, his fangs;\nAnd now he feasts, mousing the flesh of men,\nIn undetermined differences of kings.\nWhy stand these royal fronts amazed thus?\nCry, 'havoc!' kings; back to the stained field,\nYou equal potents, fiery kindled spirits!\nThen let confusion of one part confirm\nThe other's peace: till then, blows, blood and death!\n\nKING JOHN:\nWhose party do the townsmen yet admit?\n\nKING PHILIP:\nSpeak, citizens, for England; who's your king?\n\nFirst Citizen:\nThe king of England; when we know the king.\n\nKING PHILIP:\nKnow him in us, that here hold up his right.\n\nKING JOHN:\nIn us, that are our own great deputy\nAnd bear possession of our person here,\nLord of our presence, Angiers, and of you.\n\nFirst Citizen:\nA greater power then we denies all this;\nAnd till it be undoubted, we do lock\nOur former scruple in our strong-barr'd gates;\nKing'd of our fears, until our fears, resolved,\nBe by some certain king purged and deposed.\n\nBASTARD:\nBy heaven, these scroyles of Angiers flout you, kings,\nAnd stand securely on their battlements,\nAs in a theatre, whence they gape and point\nAt your industrious scenes and acts of death.\nYour royal presences be ruled by me:\nDo like the mutines of Jerusalem,\nBe friends awhile and both conjointly bend\nYour sharpest deeds of malice on this town:\nBy east and west let France and England mount\nTheir battering cannon charged to the mouths,\nTill their soul-fearing clamours have brawl'd down\nThe flinty ribs of this contemptuous city:\nI'ld play incessantly upon these jades,\nEven till unfenced desolation\nLeave them as naked as the vulgar air.\nThat done, dissever your united strengths,\nAnd part your mingled colours once again;\nTurn face to face and bloody point to point;\nThen, in a moment, Fortune shall cull forth\nOut of one side her happy minion,\nTo whom in favour she shall give the day,\nAnd kiss him with a glorious victory.\nHow like you this wild counsel, mighty states?\nSmacks it not something of the policy?\n\nKING JOHN:\nNow, by the sky that hangs above our heads,\nI like it well. France, shall we knit our powers\nAnd lay this Angiers even to the ground;\nThen after fight who shall be king of it?\n\nBASTARD:\nAn if thou hast the mettle of a king,\nBeing wronged as we are by this peevish town,\nTurn thou the mouth of thy artillery,\nAs we will ours, against these saucy walls;\nAnd when that we have dash'd them to the ground,\nWhy then defy each other and pell-mell\nMake work upon ourselves, for heaven or hell.\n\nKING PHILIP:\nLet it be so. Say, where will you assault?\n\nKING JOHN:\nWe from the west will send destruction\nInto this city's bosom.\n\nAUSTRIA:\nI from the north.\n\nKING PHILIP:\nOur thunder from the south\nShall rain their drift of bullets on this town.\n\nBASTARD:\nO prudent discipline! From north to south:\nAustria and France shoot in each other's mouth:\nI'll stir them to it. Come, away, away!\n\nFirst Citizen:\nHear us, great kings: vouchsafe awhile to stay,\nAnd I shall show you peace and fair-faced league;\nWin you this city without stroke or wound;\nRescue those breathing lives to die in beds,\nThat here come sacrifices for the field:\nPersever not, but hear me, mighty kings.\n\nKING JOHN:\nSpeak on with favour; we are bent to hear.\n\nFirst Citizen:\nThat daughter there of Spain, the Lady Blanch,\nIs niece to England: look upon the years\nOf Lewis the Dauphin and that lovely maid:\nIf lusty love should go in quest of beauty,\nWhere should he find it fairer than in Blanch?\nIf zealous love should go in search of virtue,\nWhere should he find it purer than in Blanch?\nIf love ambitious sought a match of birth,\nWhose veins bound richer blood than Lady Blanch?\nSuch as she is, in beauty, virtue, birth,\nIs the young Dauphin every way complete:\nIf not complete of, say he is not she;\nAnd she again wants nothing, to name want,\nIf want it be not that she is not he:\nHe is the half part of a blessed man,\nLeft to be finished by such as she;\nAnd she a fair divided excellence,\nWhose fulness of perfection lies in him.\nO, two such silver currents, when they join,\nDo glorify the banks that bound them in;\nAnd two such shores to two such streams made one,\nTwo such controlling bounds shall you be, kings,\nTo these two princes, if you marry them.\nThis union shall do more than battery can\nTo our fast-closed gates; for at this match,\nWith swifter spleen than powder can enforce,\nThe mouth of passage shall we fling wide ope,\nAnd give you entrance: but without this match,\nThe sea enraged is not half so deaf,\nLions more confident, mountains and rocks\nMore free from motion, no, not Death himself\nIn moral fury half so peremptory,\nAs we to keep this city.\n\nBASTARD:\nHere's a stay\nThat shakes the rotten carcass of old Death\nOut of his rags! Here's a large mouth, indeed,\nThat spits forth death and mountains, rocks and seas,\nTalks as familiarly of roaring lions\nAs maids of thirteen do of puppy-dogs!\nWhat cannoneer begot this lusty blood?\nHe speaks plain cannon fire, and smoke and bounce;\nHe gives the bastinado with his tongue:\nOur ears are cudgell'd; not a word of his\nBut buffets better than a fist of France:\nZounds! I was never so bethump'd with words\nSince I first call'd my brother's father dad.\n\nQUEEN ELINOR:\nSon, list to this conjunction, make this match;\nGive with our niece a dowry large enough:\nFor by this knot thou shalt so surely tie\nThy now unsured assurance to the crown,\nThat yon green boy shall have no sun to ripe\nThe bloom that promiseth a mighty fruit.\nI see a yielding in the looks of France;\nMark, how they whisper: urge them while their souls\nAre capable of this ambition,\nLest zeal, now melted by the windy breath\nOf soft petitions, pity and remorse,\nCool and congeal again to what it was.\n\nFirst Citizen:\nWhy answer not the double majesties\nThis friendly treaty of our threaten'd town?\n\nKING PHILIP:\nSpeak England first, that hath been forward first\nTo speak unto this city: what say you?\n\nKING JOHN:\nIf that the Dauphin there, thy princely son,\nCan in this book of beauty read 'I love,'\nHer dowry shall weigh equal with a queen:\nFor Anjou and fair Touraine, Maine, Poictiers,\nAnd all that we upon this side the sea,\nExcept this city now by us besieged,\nFind liable to our crown and dignity,\nShall gild her bridal bed and make her rich\nIn titles, honours and promotions,\nAs she in beauty, education, blood,\nHolds hand with any princess of the world.\n\nKING PHILIP:\nWhat say'st thou, boy? look in the lady's face.\n\nLEWIS:\nI do, my lord; and in her eye I find\nA wonder, or a wondrous miracle,\nThe shadow of myself form'd in her eye:\nWhich being but the shadow of your son,\nBecomes a sun and makes your son a shadow:\nI do protest I never loved myself\nTill now infixed I beheld myself\nDrawn in the flattering table of her eye.\n\nBASTARD:\nDrawn in the flattering table of her eye!\nHang'd in the frowning wrinkle of her brow!\nAnd quarter'd in her heart! he doth espy\nHimself love's traitor: this is pity now,\nThat hang'd and drawn and quartered, there should be\nIn such a love so vile a lout as he.\n\nBLANCH:\nMy uncle's will in this respect is mine:\nIf he see aught in you that makes him like,\nThat any thing he sees, which moves his liking,\nI can with ease translate it to my will;\nOr if you will, to speak more properly,\nI will enforce it easily to my love.\nFurther I will not flatter you, my lord,\nThat all I see in you is worthy love,\nThan this; that nothing do I see in you,\nThough churlish thoughts themselves should be your judge,\nThat I can find should merit any hate.\n\nKING JOHN:\nWhat say these young ones? What say you my niece?\n\nBLANCH:\nThat she is bound in honour still to do\nWhat you in wisdom still vouchsafe to say.\n\nKING JOHN:\nSpeak then, prince Dauphin; can you love this lady?\n\nLEWIS:\nNay, ask me if I can refrain from love;\nFor I do love her most unfeignedly.\n\nKING JOHN:\nThen do I give Volquessen, Touraine, Maine,\nPoictiers and Anjou, these five provinces,\nWith her to thee; and this addition more,\nFull thirty thousand marks of English coin.\nPhilip of France, if thou be pleased withal,\nCommand thy son and daughter to join hands.\n\nKING PHILIP:\nIt likes us well; young princes, close your hands.\n\nAUSTRIA:\nAnd your lips too; for I am well assured\nThat I did so when I was first assured.\n\nKING PHILIP:\nNow, citizens of Angiers, ope your gates,\nLet in that amity which you have made;\nFor at Saint Mary's chapel presently\nThe rites of marriage shall be solemnized.\nIs not the Lady Constance in this troop?\nI know she is not, for this match made up\nHer presence would have interrupted much:\nWhere is she and her son? tell me, who knows.\n\nLEWIS:\nShe is sad and passionate at your highness' tent.\n\nKING PHILIP:\nAnd, by my faith, this league that we have made\nWill give her sadness very little cure.\nBrother of England, how may we content\nThis widow lady? In her right we came;\nWhich we, God knows, have turn'd another way,\nTo our own vantage.\n\nKING JOHN:\nWe will heal up all;\nFor we'll create young Arthur Duke of Bretagne\nAnd Earl of Richmond; and this rich fair town\nWe make him lord of. Call the Lady Constance;\nSome speedy messenger bid her repair\nTo our solemnity: I trust we shall,\nIf not fill up the measure of her will,\nYet in some measure satisfy her so\nThat we shall stop her exclamation.\nGo we, as well as haste will suffer us,\nTo this unlook'd for, unprepared pomp.\n\nBASTARD:\nMad world! mad kings! mad composition!\nJohn, to stop Arthur's title in the whole,\nHath willingly departed with a part,\nAnd France, whose armour conscience buckled on,\nWhom zeal and charity brought to the field\nAs God's own soldier, rounded in the ear\nWith that same purpose-changer, that sly devil,\nThat broker, that still breaks the pate of faith,\nThat daily break-vow, he that wins of all,\nOf kings, of beggars, old men, young men, maids,\nWho, having no external thing to lose\nBut the word 'maid,' cheats the poor maid of that,\nThat smooth-faced gentleman, tickling Commodity,\nCommodity, the bias of the world,\nThe world, who of itself is peised well,\nMade to run even upon even ground,\nTill this advantage, this vile-drawing bias,\nThis sway of motion, this Commodity,\nMakes it take head from all indifferency,\nFrom all direction, purpose, course, intent:\nAnd this same bias, this Commodity,\nThis bawd, this broker, this all-changing word,\nClapp'd on the outward eye of fickle France,\nHath drawn him from his own determined aid,\nFrom a resolved and honourable war,\nTo a most base and vile-concluded peace.\nAnd why rail I on this Commodity?\nBut for because he hath not woo'd me yet:\nNot that I have the power to clutch my hand,\nWhen his fair angels would salute my palm;\nBut for my hand, as unattempted yet,\nLike a poor beggar, raileth on the rich.\nWell, whiles I am a beggar, I will rail\nAnd say there is no sin but to be rich;\nAnd being rich, my virtue then shall be\nTo say there is no vice but beggary.\nSince kings break faith upon commodity,\nGain, be my lord, for I will worship thee.\n\nCONSTANCE:\nGone to be married! gone to swear a peace!\nFalse blood to false blood join'd! gone to be friends!\nShall Lewis have Blanch, and Blanch those provinces?\nIt is not so; thou hast misspoke, misheard:\nBe well advised, tell o'er thy tale again:\nIt cannot be; thou dost but say 'tis so:\nI trust I may not trust thee; for thy word\nIs but the vain breath of a common man:\nBelieve me, I do not believe thee, man;\nI have a king's oath to the contrary.\nThou shalt be punish'd for thus frighting me,\nFor I am sick and capable of fears,\nOppress'd with wrongs and therefore full of fears,\nA widow, husbandless, subject to fears,\nA woman, naturally born to fears;\nAnd though thou now confess thou didst but jest,\nWith my vex'd spirits I cannot take a truce,\nBut they will quake and tremble all this day.\nWhat dost thou mean by shaking of thy head?\nWhy dost thou look so sadly on my son?\nWhat means that hand upon that breast of thine?\nWhy holds thine eye that lamentable rheum,\nLike a proud river peering o'er his bounds?\nBe these sad signs confirmers of thy words?\nThen speak again; not all thy former tale,\nBut this one word, whether thy tale be true.\n\nSALISBURY:\nAs true as I believe you think them false\nThat give you cause to prove my saying true.\n\nCONSTANCE:\nO, if thou teach me to believe this sorrow,\nTeach thou this sorrow how to make me die,\nAnd let belief and life encounter so\nAs doth the fury of two desperate men\nWhich in the very meeting fall and die.\nLewis marry Blanch! O boy, then where art thou?\nFrance friend with England, what becomes of me?\nFellow, be gone: I cannot brook thy sight:\nThis news hath made thee a most ugly man.\n\nSALISBURY:\nWhat other harm have I, good lady, done,\nBut spoke the harm that is by others done?\n\nCONSTANCE:\nWhich harm within itself so heinous is\nAs it makes harmful all that speak of it.\n\nARTHUR:\nI do beseech you, madam, be content.\n\nCONSTANCE:\nIf thou, that bid'st me be content, wert grim,\nUgly and slanderous to thy mother's womb,\nFull of unpleasing blots and sightless stains,\nLame, foolish, crooked, swart, prodigious,\nPatch'd with foul moles and eye-offending marks,\nI would not care, I then would be content,\nFor then I should not love thee, no, nor thou\nBecome thy great birth nor deserve a crown.\nBut thou art fair, and at thy birth, dear boy,\nNature and Fortune join'd to make thee great:\nOf Nature's gifts thou mayst with lilies boast,\nAnd with the half-blown rose. But Fortune, O,\nShe is corrupted, changed and won from thee;\nShe adulterates hourly with thine uncle John,\nAnd with her golden hand hath pluck'd on France\nTo tread down fair respect of sovereignty,\nAnd made his majesty the bawd to theirs.\nFrance is a bawd to Fortune and King John,\nThat strumpet Fortune, that usurping John!\nTell me, thou fellow, is not France forsworn?\nEnvenom him with words, or get thee gone\nAnd leave those woes alone which I alone\nAm bound to under-bear.\n\nSALISBURY:\nPardon me, madam,\nI may not go without you to the kings.\n\nCONSTANCE:\nThou mayst, thou shalt; I will not go with thee:\nI will instruct my sorrows to be proud;\nFor grief is proud and makes his owner stoop.\nTo me and to the state of my great grief\nLet kings assemble; for my grief's so great\nThat no supporter but the huge firm earth\nCan hold it up: here I and sorrows sit;\nHere is my throne, bid kings come bow to it.\n\nKING PHILIP:\n'Tis true, fair daughter; and this blessed day\nEver in France shall be kept festival:\nTo solemnize this day the glorious sun\nStays in his course and plays the alchemist,\nTurning with splendor of his precious eye\nThe meagre cloddy earth to glittering gold:\nThe yearly course that brings this day about\nShall never see it but a holiday.\n\nCONSTANCE:\nA wicked day, and not a holy day!\nWhat hath this day deserved? what hath it done,\nThat it in golden letters should be set\nAmong the high tides in the calendar?\nNay, rather turn this day out of the week,\nThis day of shame, oppression, perjury.\nOr, if it must stand still, let wives with child\nPray that their burthens may not fall this day,\nLest that their hopes prodigiously be cross'd:\nBut on this day let seamen fear no wreck;\nNo bargains break that are not this day made:\nThis day, all things begun come to ill end,\nYea, faith itself to hollow falsehood change!\n\nKING PHILIP:\nBy heaven, lady, you shall have no cause\nTo curse the fair proceedings of this day:\nHave I not pawn'd to you my majesty?\n\nCONSTANCE:\nYou have beguiled me with a counterfeit\nResembling majesty, which, being touch'd and tried,\nProves valueless: you are forsworn, forsworn;\nYou came in arms to spill mine enemies' blood,\nBut now in arms you strengthen it with yours:\nThe grappling vigour and rough frown of war\nIs cold in amity and painted peace,\nAnd our oppression hath made up this league.\nArm, arm, you heavens, against these perjured kings!\nA widow cries; be husband to me, heavens!\nLet not the hours of this ungodly day\nWear out the day in peace; but, ere sunset,\nSet armed discord 'twixt these perjured kings!\nHear me, O, hear me!\n\nAUSTRIA:\nLady Constance, peace!\n\nCONSTANCE:\nWar! war! no peace! peace is to me a war\nO Lymoges! O Austria! thou dost shame\nThat bloody spoil: thou slave, thou wretch, thou coward!\nThou little valiant, great in villany!\nThou ever strong upon the stronger side!\nThou Fortune's champion that dost never fight\nBut when her humorous ladyship is by\nTo teach thee safety! thou art perjured too,\nAnd soothest up greatness. What a fool art thou,\nA ramping fool, to brag and stamp and swear\nUpon my party! Thou cold-blooded slave,\nHast thou not spoke like thunder on my side,\nBeen sworn my soldier, bidding me depend\nUpon thy stars, thy fortune and thy strength,\nAnd dost thou now fall over to my fores?\nThou wear a lion's hide! doff it for shame,\nAnd hang a calf's-skin on those recreant limbs.\n\nAUSTRIA:\nO, that a man should speak those words to me!\n\nBASTARD:\nAnd hang a calf's-skin on those recreant limbs.\n\nAUSTRIA:\nThou darest not say so, villain, for thy life.\n\nBASTARD:\nAnd hang a calf's-skin on those recreant limbs.\n\nKING JOHN:\nWe like not this; thou dost forget thyself.\n\nKING PHILIP:\nHere comes the holy legate of the pope.\n\nCARDINAL PANDULPH:\nHail, you anointed deputies of heaven!\nTo thee, King John, my holy errand is.\nI Pandulph, of fair Milan cardinal,\nAnd from Pope Innocent the legate here,\nDo in his name religiously demand\nWhy thou against the church, our holy mother,\nSo wilfully dost spurn; and force perforce\nKeep Stephen Langton, chosen archbishop\nOf Canterbury, from that holy see?\nThis, in our foresaid holy father's name,\nPope Innocent, I do demand of thee.\n\nKING JOHN:\nWhat earthy name to interrogatories\nCan task the free breath of a sacred king?\nThou canst not, cardinal, devise a name\nSo slight, unworthy and ridiculous,\nTo charge me to an answer, as the pope.\nTell him this tale; and from the mouth of England\nAdd thus much more, that no Italian priest\nShall tithe or toll in our dominions;\nBut as we, under heaven, are supreme head,\nSo under Him that great supremacy,\nWhere we do reign, we will alone uphold,\nWithout the assistance of a mortal hand:\nSo tell the pope, all reverence set apart\nTo him and his usurp'd authority.\n\nKING PHILIP:\nBrother of England, you blaspheme in this.\n\nKING JOHN:\nThough you and all the kings of Christendom\nAre led so grossly by this meddling priest,\nDreading the curse that money may buy out;\nAnd by the merit of vile gold, dross, dust,\nPurchase corrupted pardon of a man,\nWho in that sale sells pardon from himself,\nThough you and all the rest so grossly led\nThis juggling witchcraft with revenue cherish,\nYet I alone, alone do me oppose\nAgainst the pope and count his friends my foes.\n\nCARDINAL PANDULPH:\nThen, by the lawful power that I have,\nThou shalt stand cursed and excommunicate.\nAnd blessed shall he be that doth revolt\nFrom his allegiance to an heretic;\nAnd meritorious shall that hand be call'd,\nCanonized and worshipped as a saint,\nThat takes away by any secret course\nThy hateful life.\n\nCONSTANCE:\nO, lawful let it be\nThat I have room with Rome to curse awhile!\nGood father cardinal, cry thou amen\nTo my keen curses; for without my wrong\nThere is no tongue hath power to curse him right.\n\nCARDINAL PANDULPH:\nThere's law and warrant, lady, for my curse.\n\nCONSTANCE:\nAnd for mine too: when law can do no right,\nLet it be lawful that law bar no wrong:\nLaw cannot give my child his kingdom here,\nFor he that holds his kingdom holds the law;\nTherefore, since law itself is perfect wrong,\nHow can the law forbid my tongue to curse?\n\nCARDINAL PANDULPH:\nPhilip of France, on peril of a curse,\nLet go the hand of that arch-heretic;\nAnd raise the power of France upon his head,\nUnless he do submit himself to Rome.\n\nQUEEN ELINOR:\nLook'st thou pale, France? do not let go thy hand.\n\nCONSTANCE:\nLook to that, devil; lest that France repent,\nAnd by disjoining hands, hell lose a soul.\n\nAUSTRIA:\nKing Philip, listen to the cardinal.\n\nBASTARD:\nAnd hang a calf's-skin on his recreant limbs.\n\nAUSTRIA:\nWell, ruffian, I must pocket up these wrongs, Because--\n\nBASTARD:\nYour breeches best may carry them.\n\nKING JOHN:\nPhilip, what say'st thou to the cardinal?\n\nCONSTANCE:\nWhat should he say, but as the cardinal?\n\nLEWIS:\nBethink you, father; for the difference\nIs purchase of a heavy curse from Rome,\nOr the light loss of England for a friend:\nForego the easier.\n\nBLANCH:\nThat's the curse of Rome.\n\nCONSTANCE:\nO Lewis, stand fast! the devil tempts thee here\nIn likeness of a new untrimmed bride.\n\nBLANCH:\nThe Lady Constance speaks not from her faith,\nBut from her need.\n\nCONSTANCE:\nO, if thou grant my need,\nWhich only lives but by the death of faith,\nThat need must needs infer this principle,\nThat faith would live again by death of need.\nO then, tread down my need, and faith mounts up;\nKeep my need up, and faith is trodden down!\n\nKING JOHN:\nThe king is moved, and answers not to this.\n\nCONSTANCE:\nO, be removed from him, and answer well!\n\nAUSTRIA:\nDo so, King Philip; hang no more in doubt.\n\nBASTARD:\nHang nothing but a calf's-skin, most sweet lout.\n\nKING PHILIP:\nI am perplex'd, and know not what to say.\n\nCARDINAL PANDULPH:\nWhat canst thou say but will perplex thee more,\nIf thou stand excommunicate and cursed?\n\nKING PHILIP:\nGood reverend father, make my person yours,\nAnd tell me how you would bestow yourself.\nThis royal hand and mine are newly knit,\nAnd the conjunction of our inward souls\nMarried in league, coupled and linked together\nWith all religious strength of sacred vows;\nThe latest breath that gave the sound of words\nWas deep-sworn faith, peace, amity, true love\nBetween our kingdoms and our royal selves,\nAnd even before this truce, but new before,\nNo longer than we well could wash our hands\nTo clap this royal bargain up of peace,\nHeaven knows, they were besmear'd and over-stain'd\nWith slaughter's pencil, where revenge did paint\nThe fearful difference of incensed kings:\nAnd shall these hands, so lately purged of blood,\nSo newly join'd in love, so strong in both,\nUnyoke this seizure and this kind regreet?\nPlay fast and loose with faith? so jest with heaven,\nMake such unconstant children of ourselves,\nAs now again to snatch our palm from palm,\nUnswear faith sworn, and on the marriage-bed\nOf smiling peace to march a bloody host,\nAnd make a riot on the gentle brow\nOf true sincerity? O, holy sir,\nMy reverend father, let it not be so!\nOut of your grace, devise, ordain, impose\nSome gentle order; and then we shall be blest\nTo do your pleasure and continue friends.\n\nCARDINAL PANDULPH:\nAll form is formless, order orderless,\nSave what is opposite to England's love.\nTherefore to arms! be champion of our church,\nOr let the church, our mother, breathe her curse,\nA mother's curse, on her revolting son.\nFrance, thou mayst hold a serpent by the tongue,\nA chafed lion by the mortal paw,\nA fasting tiger safer by the tooth,\nThan keep in peace that hand which thou dost hold.\n\nKING PHILIP:\nI may disjoin my hand, but not my faith.\n\nCARDINAL PANDULPH:\nSo makest thou faith an enemy to faith;\nAnd like a civil war set'st oath to oath,\nThy tongue against thy tongue. O, let thy vow\nFirst made to heaven, first be to heaven perform'd,\nThat is, to be the champion of our church!\nWhat since thou sworest is sworn against thyself\nAnd may not be performed by thyself,\nFor that which thou hast sworn to do amiss\nIs not amiss when it is truly done,\nAnd being not done, where doing tends to ill,\nThe truth is then most done not doing it:\nThe better act of purposes mistook\nIs to mistake again; though indirect,\nYet indirection thereby grows direct,\nAnd falsehood falsehood cures, as fire cools fire\nWithin the scorched veins of one new-burn'd.\nIt is religion that doth make vows kept;\nBut thou hast sworn against religion,\nBy what thou swear'st against the thing thou swear'st,\nAnd makest an oath the surety for thy truth\nAgainst an oath: the truth thou art unsure\nTo swear, swears only not to be forsworn;\nElse what a mockery should it be to swear!\nBut thou dost swear only to be forsworn;\nAnd most forsworn, to keep what thou dost swear.\nTherefore thy later vows against thy first\nIs in thyself rebellion to thyself;\nAnd better conquest never canst thou make\nThan arm thy constant and thy nobler parts\nAgainst these giddy loose suggestions:\nUpon which better part our prayers come in,\nIf thou vouchsafe them. But if not, then know\nThe peril of our curses light on thee\nSo heavy as thou shalt not shake them off,\nBut in despair die under their black weight.\n\nAUSTRIA:\nRebellion, flat rebellion!\n\nBASTARD:\nWill't not be?\nWill not a calfs-skin stop that mouth of thine?\n\nLEWIS:\nFather, to arms!\n\nBLANCH:\nUpon thy wedding-day?\nAgainst the blood that thou hast married?\nWhat, shall our feast be kept with slaughter'd men?\nShall braying trumpets and loud churlish drums,\nClamours of hell, be measures to our pomp?\nO husband, hear me! ay, alack, how new\nIs husband in my mouth! even for that name,\nWhich till this time my tongue did ne'er pronounce,\nUpon my knee I beg, go not to arms\nAgainst mine uncle.\n\nCONSTANCE:\nO, upon my knee,\nMade hard with kneeling, I do pray to thee,\nThou virtuous Dauphin, alter not the doom\nForethought by heaven!\n\nBLANCH:\nNow shall I see thy love: what motive may\nBe stronger with thee than the name of wife?\n\nCONSTANCE:\nThat which upholdeth him that thee upholds,\nHis honour: O, thine honour, Lewis, thine honour!\n\nLEWIS:\nI muse your majesty doth seem so cold,\nWhen such profound respects do pull you on.\n\nCARDINAL PANDULPH:\nI will denounce a curse upon his head.\n\nKING PHILIP:\nThou shalt not need. England, I will fall from thee.\n\nCONSTANCE:\nO fair return of banish'd majesty!\n\nQUEEN ELINOR:\nO foul revolt of French inconstancy!\n\nKING JOHN:\nFrance, thou shalt rue this hour within this hour.\n\nBASTARD:\nOld Time the clock-setter, that bald sexton Time,\nIs it as he will? well then, France shall rue.\n\nBLANCH:\nThe sun's o'ercast with blood: fair day, adieu!\nWhich is the side that I must go withal?\nI am with both: each army hath a hand;\nAnd in their rage, I having hold of both,\nThey swirl asunder and dismember me.\nHusband, I cannot pray that thou mayst win;\nUncle, I needs must pray that thou mayst lose;\nFather, I may not wish the fortune thine;\nGrandam, I will not wish thy fortunes thrive:\nWhoever wins, on that side shall I lose\nAssured loss before the match be play'd.\n\nLEWIS:\nLady, with me, with me thy fortune lies.\n\nBLANCH:\nThere where my fortune lives, there my life dies.\n\nKING JOHN:\nCousin, go draw our puissance together.\nFrance, I am burn'd up with inflaming wrath;\nA rage whose heat hath this condition,\nThat nothing can allay, nothing but blood,\nThe blood, and dearest-valued blood, of France.\n\nKING PHILIP:\nThy rage sham burn thee up, and thou shalt turn\nTo ashes, ere our blood shall quench that fire:\nLook to thyself, thou art in jeopardy.\n\nKING JOHN:\nNo more than he that threats. To arms let's hie!\n\nBASTARD:\nNow, by my life, this day grows wondrous hot;\nSome airy devil hovers in the sky\nAnd pours down mischief. Austria's head lie there,\nWhile Philip breathes.\n\nKING JOHN:\nHubert, keep this boy. Philip, make up:\nMy mother is assailed in our tent,\nAnd ta'en, I fear.\n\nBASTARD:\nMy lord, I rescued her;\nHer highness is in safety, fear you not:\nBut on, my liege; for very little pains\nWill bring this labour to an happy end.\n\nKING JOHN:\n\nARTHUR:\nO, this will make my mother die with grief!\n\nKING JOHN:\n\nBASTARD:\nBell, book, and candle shall not drive me back,\nWhen gold and silver becks me to come on.\nI leave your highness. Grandam, I will pray,\nIf ever I remember to be holy,\nFor your fair safety; so, I kiss your hand.\n\nELINOR:\nFarewell, gentle cousin.\n\nKING JOHN:\nCoz, farewell.\n\nQUEEN ELINOR:\nCome hither, little kinsman; hark, a word.\n\nKING JOHN:\nCome hither, Hubert. O my gentle Hubert,\nWe owe thee much! within this wall of flesh\nThere is a soul counts thee her creditor\nAnd with advantage means to pay thy love:\nAnd my good friend, thy voluntary oath\nLives in this bosom, dearly cherished.\nGive me thy hand. I had a thing to say,\nBut I will fit it with some better time.\nBy heaven, Hubert, I am almost ashamed\nTo say what good respect I have of thee.\n\nHUBERT:\nI am much bounden to your majesty.\n\nKING JOHN:\nGood friend, thou hast no cause to say so yet,\nBut thou shalt have; and creep time ne'er so slow,\nYet it shall come from me to do thee good.\nI had a thing to say, but let it go:\nThe sun is in the heaven, and the proud day,\nAttended with the pleasures of the world,\nIs all too wanton and too full of gawds\nTo give me audience: if the midnight bell\nDid, with his iron tongue and brazen mouth,\nSound on into the drowsy race of night;\nIf this same were a churchyard where we stand,\nAnd thou possessed with a thousand wrongs,\nOr if that surly spirit, melancholy,\nHad baked thy blood and made it heavy-thick,\nWhich else runs tickling up and down the veins,\nMaking that idiot, laughter, keep men's eyes\nAnd strain their cheeks to idle merriment,\nA passion hateful to my purposes,\nOr if that thou couldst see me without eyes,\nHear me without thine ears, and make reply\nWithout a tongue, using conceit alone,\nWithout eyes, ears and harmful sound of words;\nThen, in despite of brooded watchful day,\nI would into thy bosom pour my thoughts:\nBut, ah, I will not! yet I love thee well;\nAnd, by my troth, I think thou lovest me well.\n\nHUBERT:\nSo well, that what you bid me undertake,\nThough that my death were adjunct to my act,\nBy heaven, I would do it.\n\nKING JOHN:\nDo not I know thou wouldst?\nGood Hubert, Hubert, Hubert, throw thine eye\nOn yon young boy: I'll tell thee what, my friend,\nHe is a very serpent in my way;\nAnd whereso'er this foot of mine doth tread,\nHe lies before me: dost thou understand me?\nThou art his keeper.\n\nHUBERT:\nAnd I'll keep him so,\nThat he shall not offend your majesty.\n\nKING JOHN:\nDeath.\n\nHUBERT:\nMy lord?\n\nKING JOHN:\nA grave.\n\nHUBERT:\nHe shall not live.\n\nKING JOHN:\nEnough.\nI could be merry now. Hubert, I love thee;\nWell, I'll not say what I intend for thee:\nRemember. Madam, fare you well:\nI'll send those powers o'er to your majesty.\n\nELINOR:\nMy blessing go with thee!\n\nKING JOHN:\nFor England, cousin, go:\nHubert shall be your man, attend on you\nWith all true duty. On toward Calais, ho!\n\nKING PHILIP:\nSo, by a roaring tempest on the flood,\nA whole armado of convicted sail\nIs scatter'd and disjoin'd from fellowship.\n\nCARDINAL PANDULPH:\nCourage and comfort! all shall yet go well.\n\nKING PHILIP:\nWhat can go well, when we have run so ill?\nAre we not beaten? Is not Angiers lost?\nArthur ta'en prisoner? divers dear friends slain?\nAnd bloody England into England gone,\nO'erbearing interruption, spite of France?\n\nLEWIS:\nWhat he hath won, that hath he fortified:\nSo hot a speed with such advice disposed,\nSuch temperate order in so fierce a cause,\nDoth want example: who hath read or heard\nOf any kindred action like to this?\n\nKING PHILIP:\nWell could I bear that England had this praise,\nSo we could find some pattern of our shame.\nLook, who comes here! a grave unto a soul;\nHolding the eternal spirit against her will,\nIn the vile prison of afflicted breath.\nI prithee, lady, go away with me.\n\nCONSTANCE:\nLo, now I now see the issue of your peace.\n\nKING PHILIP:\nPatience, good lady! comfort, gentle Constance!\n\nCONSTANCE:\nNo, I defy all counsel, all redress,\nBut that which ends all counsel, true redress,\nDeath, death; O amiable lovely death!\nThou odouriferous stench! sound rottenness!\nArise forth from the couch of lasting night,\nThou hate and terror to prosperity,\nAnd I will kiss thy detestable bones\nAnd put my eyeballs in thy vaulty brows\nAnd ring these fingers with thy household worms\nAnd stop this gap of breath with fulsome dust\nAnd be a carrion monster like thyself:\nCome, grin on me, and I will think thou smilest\nAnd buss thee as thy wife. Misery's love,\nO, come to me!\n\nKING PHILIP:\nO fair affliction, peace!\n\nCONSTANCE:\nNo, no, I will not, having breath to cry:\nO, that my tongue were in the thunder's mouth!\nThen with a passion would I shake the world;\nAnd rouse from sleep that fell anatomy\nWhich cannot hear a lady's feeble voice,\nWhich scorns a modern invocation.\n\nCARDINAL PANDULPH:\nLady, you utter madness, and not sorrow.\n\nCONSTANCE:\nThou art not holy to belie me so;\nI am not mad: this hair I tear is mine;\nMy name is Constance; I was Geffrey's wife;\nYoung Arthur is my son, and he is lost:\nI am not mad: I would to heaven I were!\nFor then, 'tis like I should forget myself:\nO, if I could, what grief should I forget!\nPreach some philosophy to make me mad,\nAnd thou shalt be canonized, cardinal;\nFor being not mad but sensible of grief,\nMy reasonable part produces reason\nHow I may be deliver'd of these woes,\nAnd teaches me to kill or hang myself:\nIf I were mad, I should forget my son,\nOr madly think a babe of clouts were he:\nI am not mad; too well, too well I feel\nThe different plague of each calamity.\n\nKING PHILIP:\nBind up those tresses. O, what love I note\nIn the fair multitude of those her hairs!\nWhere but by chance a silver drop hath fallen,\nEven to that drop ten thousand wiry friends\nDo glue themselves in sociable grief,\nLike true, inseparable, faithful loves,\nSticking together in calamity.\n\nCONSTANCE:\nTo England, if you will.\n\nKING PHILIP:\nBind up your hairs.\n\nCONSTANCE:\nYes, that I will; and wherefore will I do it?\nI tore them from their bonds and cried aloud\n'O that these hands could so redeem my son,\nAs they have given these hairs their liberty!'\nBut now I envy at their liberty,\nAnd will again commit them to their bonds,\nBecause my poor child is a prisoner.\nAnd, father cardinal, I have heard you say\nThat we shall see and know our friends in heaven:\nIf that be true, I shall see my boy again;\nFor since the birth of Cain, the first male child,\nTo him that did but yesterday suspire,\nThere was not such a gracious creature born.\nBut now will canker-sorrow eat my bud\nAnd chase the native beauty from his cheek\nAnd he will look as hollow as a ghost,\nAs dim and meagre as an ague's fit,\nAnd so he'll die; and, rising so again,\nWhen I shall meet him in the court of heaven\nI shall not know him: therefore never, never\nMust I behold my pretty Arthur more.\n\nCARDINAL PANDULPH:\nYou hold too heinous a respect of grief.\n\nCONSTANCE:\nHe talks to me that never had a son.\n\nKING PHILIP:\nYou are as fond of grief as of your child.\n\nCONSTANCE:\nGrief fills the room up of my absent child,\nLies in his bed, walks up and down with me,\nPuts on his pretty looks, repeats his words,\nRemembers me of all his gracious parts,\nStuffs out his vacant garments with his form;\nThen, have I reason to be fond of grief?\nFare you well: had you such a loss as I,\nI could give better comfort than you do.\nI will not keep this form upon my head,\nWhen there is such disorder in my wit.\nO Lord! my boy, my Arthur, my fair son!\nMy life, my joy, my food, my all the world!\nMy widow-comfort, and my sorrows' cure!\n\nKING PHILIP:\nI fear some outrage, and I'll follow her.\n\nLEWIS:\nThere's nothing in this world can make me joy:\nLife is as tedious as a twice-told tale\nVexing the dull ear of a drowsy man;\nAnd bitter shame hath spoil'd the sweet world's taste\nThat it yields nought but shame and bitterness.\n\nCARDINAL PANDULPH:\nBefore the curing of a strong disease,\nEven in the instant of repair and health,\nThe fit is strongest; evils that take leave,\nOn their departure most of all show evil:\nWhat have you lost by losing of this day?\n\nLEWIS:\nAll days of glory, joy and happiness.\n\nCARDINAL PANDULPH:\nIf you had won it, certainly you had.\nNo, no; when Fortune means to men most good,\nShe looks upon them with a threatening eye.\n'Tis strange to think how much King John hath lost\nIn this which he accounts so clearly won:\nAre not you grieved that Arthur is his prisoner?\n\nLEWIS:\nAs heartily as he is glad he hath him.\n\nCARDINAL PANDULPH:\nYour mind is all as youthful as your blood.\nNow hear me speak with a prophetic spirit;\nFor even the breath of what I mean to speak\nShall blow each dust, each straw, each little rub,\nOut of the path which shall directly lead\nThy foot to England's throne; and therefore mark.\nJohn hath seized Arthur; and it cannot be\nThat, whiles warm life plays in that infant's veins,\nThe misplaced John should entertain an hour,\nOne minute, nay, one quiet breath of rest.\nA sceptre snatch'd with an unruly hand\nMust be as boisterously maintain'd as gain'd;\nAnd he that stands upon a slippery place\nMakes nice of no vile hold to stay him up:\nThat John may stand, then Arthur needs must fall;\nSo be it, for it cannot be but so.\n\nLEWIS:\nBut what shall I gain by young Arthur's fall?\n\nCARDINAL PANDULPH:\nYou, in the right of Lady Blanch your wife,\nMay then make all the claim that Arthur did.\n\nLEWIS:\nAnd lose it, life and all, as Arthur did.\n\nCARDINAL PANDULPH:\nHow green you are and fresh in this old world!\nJohn lays you plots; the times conspire with you;\nFor he that steeps his safety in true blood\nShall find but bloody safety and untrue.\nThis act so evilly born shall cool the hearts\nOf all his people and freeze up their zeal,\nThat none so small advantage shall step forth\nTo cheque his reign, but they will cherish it;\nNo natural exhalation in the sky,\nNo scope of nature, no distemper'd day,\nNo common wind, no customed event,\nBut they will pluck away his natural cause\nAnd call them meteors, prodigies and signs,\nAbortives, presages and tongues of heaven,\nPlainly denouncing vengeance upon John.\n\nLEWIS:\nMay be he will not touch young Arthur's life,\nBut hold himself safe in his prisonment.\n\nCARDINAL PANDULPH:\nO, sir, when he shall hear of your approach,\nIf that young Arthur be not gone already,\nEven at that news he dies; and then the hearts\nOf all his people shall revolt from him\nAnd kiss the lips of unacquainted change\nAnd pick strong matter of revolt and wrath\nOut of the bloody fingers' ends of John.\nMethinks I see this hurly all on foot:\nAnd, O, what better matter breeds for you\nThan I have named! The bastard Faulconbridge\nIs now in England, ransacking the church,\nOffending charity: if but a dozen French\nWere there in arms, they would be as a call\nTo train ten thousand English to their side,\nOr as a little snow, tumbled about,\nAnon becomes a mountain. O noble Dauphin,\nGo with me to the king: 'tis wonderful\nWhat may be wrought out of their discontent,\nNow that their souls are topful of offence.\nFor England go: I will whet on the king.\n\nLEWIS:\nStrong reasons make strong actions: let us go:\nIf you say ay, the king will not say no.\n\nHUBERT:\nHeat me these irons hot; and look thou stand\nWithin the arras: when I strike my foot\nUpon the bosom of the ground, rush forth,\nAnd bind the boy which you shall find with me\nFast to the chair: be heedful: hence, and watch.\n\nFirst Executioner:\nI hope your warrant will bear out the deed.\n\nHUBERT:\nUncleanly scruples! fear not you: look to't.\nYoung lad, come forth; I have to say with you.\n\nARTHUR:\nGood morrow, Hubert.\n\nHUBERT:\nGood morrow, little prince.\n\nARTHUR:\nAs little prince, having so great a title\nTo be more prince, as may be. You are sad.\n\nHUBERT:\nIndeed, I have been merrier.\n\nARTHUR:\nMercy on me!\nMethinks no body should be sad but I:\nYet, I remember, when I was in France,\nYoung gentlemen would be as sad as night,\nOnly for wantonness. By my christendom,\nSo I were out of prison and kept sheep,\nI should be as merry as the day is long;\nAnd so I would be here, but that I doubt\nMy uncle practises more harm to me:\nHe is afraid of me and I of him:\nIs it my fault that I was Geffrey's son?\nNo, indeed, is't not; and I would to heaven\nI were your son, so you would love me, Hubert.\n\nHUBERT:\n\nARTHUR:\nAre you sick, Hubert? you look pale to-day:\nIn sooth, I would you were a little sick,\nThat I might sit all night and watch with you:\nI warrant I love you more than you do me.\n\nHUBERT:\n\nARTHUR:\nToo fairly, Hubert, for so foul effect:\nMust you with hot irons burn out both mine eyes?\n\nHUBERT:\nYoung boy, I must.\n\nARTHUR:\nAnd will you?\n\nHUBERT:\nAnd I will.\n\nARTHUR:\nHave you the heart? When your head did but ache,\nI knit my handercher about your brows,\nThe best I had, a princess wrought it me,\nAnd I did never ask it you again;\nAnd with my hand at midnight held your head,\nAnd like the watchful minutes to the hour,\nStill and anon cheer'd up the heavy time,\nSaying, 'What lack you?' and 'Where lies your grief?'\nOr 'What good love may I perform for you?'\nMany a poor man's son would have lien still\nAnd ne'er have spoke a loving word to you;\nBut you at your sick service had a prince.\nNay, you may think my love was crafty love\nAnd call it cunning: do, an if you will:\nIf heaven be pleased that you must use me ill,\nWhy then you must. Will you put out mine eyes?\nThese eyes that never did nor never shall\nSo much as frown on you.\n\nHUBERT:\nI have sworn to do it;\nAnd with hot irons must I burn them out.\n\nARTHUR:\nAh, none but in this iron age would do it!\nThe iron of itself, though heat red-hot,\nApproaching near these eyes, would drink my tears\nAnd quench his fiery indignation\nEven in the matter of mine innocence;\nNay, after that, consume away in rust\nBut for containing fire to harm mine eye.\nAre you more stubborn-hard than hammer'd iron?\nAn if an angel should have come to me\nAnd told me Hubert should put out mine eyes,\nI would not have believed him,--no tongue but Hubert's.\n\nHUBERT:\nCome forth.\nDo as I bid you do.\n\nARTHUR:\nO, save me, Hubert, save me! my eyes are out\nEven with the fierce looks of these bloody men.\n\nHUBERT:\nGive me the iron, I say, and bind him here.\n\nARTHUR:\nAlas, what need you be so boisterous-rough?\nI will not struggle, I will stand stone-still.\nFor heaven sake, Hubert, let me not be bound!\nNay, hear me, Hubert, drive these men away,\nAnd I will sit as quiet as a lamb;\nI will not stir, nor wince, nor speak a word,\nNor look upon the iron angerly:\nThrust but these men away, and I'll forgive you,\nWhatever torment you do put me to.\n\nHUBERT:\nGo, stand within; let me alone with him.\n\nFirst Executioner:\nI am best pleased to be from such a deed.\n\nARTHUR:\nAlas, I then have chid away my friend!\nHe hath a stern look, but a gentle heart:\nLet him come back, that his compassion may\nGive life to yours.\n\nHUBERT:\nCome, boy, prepare yourself.\n\nARTHUR:\nIs there no remedy?\n\nHUBERT:\nNone, but to lose your eyes.\n\nARTHUR:\nO heaven, that there were but a mote in yours,\nA grain, a dust, a gnat, a wandering hair,\nAny annoyance in that precious sense!\nThen feeling what small things are boisterous there,\nYour vile intent must needs seem horrible.\n\nHUBERT:\nIs this your promise? go to, hold your tongue.\n\nARTHUR:\nHubert, the utterance of a brace of tongues\nMust needs want pleading for a pair of eyes:\nLet me not hold my tongue, let me not, Hubert;\nOr, Hubert, if you will, cut out my tongue,\nSo I may keep mine eyes: O, spare mine eyes.\nThough to no use but still to look on you!\nLo, by my truth, the instrument is cold\nAnd would not harm me.\n\nHUBERT:\nI can heat it, boy.\n\nARTHUR:\nNo, in good sooth: the fire is dead with grief,\nBeing create for comfort, to be used\nIn undeserved extremes: see else yourself;\nThere is no malice in this burning coal;\nThe breath of heaven has blown his spirit out\nAnd strew'd repentent ashes on his head.\n\nHUBERT:\nBut with my breath I can revive it, boy.\n\nARTHUR:\nAn if you do, you will but make it blush\nAnd glow with shame of your proceedings, Hubert:\nNay, it perchance will sparkle in your eyes;\nAnd like a dog that is compell'd to fight,\nSnatch at his master that doth tarre him on.\nAll things that you should use to do me wrong\nDeny their office: only you do lack\nThat mercy which fierce fire and iron extends,\nCreatures of note for mercy-lacking uses.\n\nHUBERT:\nWell, see to live; I will not touch thine eye\nFor all the treasure that thine uncle owes:\nYet am I sworn and I did purpose, boy,\nWith this same very iron to burn them out.\n\nARTHUR:\nO, now you look like Hubert! all this while\nYou were disguised.\n\nHUBERT:\nPeace; no more. Adieu.\nYour uncle must not know but you are dead;\nI'll fill these dogged spies with false reports:\nAnd, pretty child, sleep doubtless and secure,\nThat Hubert, for the wealth of all the world,\nWill not offend thee.\n\nARTHUR:\nO heaven! I thank you, Hubert.\n\nHUBERT:\nSilence; no more: go closely in with me:\nMuch danger do I undergo for thee.\n\nKING JOHN:\nHere once again we sit, once again crown'd,\nAnd looked upon, I hope, with cheerful eyes.\n\nPEMBROKE:\nThis 'once again,' but that your highness pleased,\nWas once superfluous: you were crown'd before,\nAnd that high royalty was ne'er pluck'd off,\nThe faiths of men ne'er stained with revolt;\nFresh expectation troubled not the land\nWith any long'd-for change or better state.\n\nSALISBURY:\nTherefore, to be possess'd with double pomp,\nTo guard a title that was rich before,\nTo gild refined gold, to paint the lily,\nTo throw a perfume on the violet,\nTo smooth the ice, or add another hue\nUnto the rainbow, or with taper-light\nTo seek the beauteous eye of heaven to garnish,\nIs wasteful and ridiculous excess.\n\nPEMBROKE:\nBut that your royal pleasure must be done,\nThis act is as an ancient tale new told,\nAnd in the last repeating troublesome,\nBeing urged at a time unseasonable.\n\nSALISBURY:\nIn this the antique and well noted face\nOf plain old form is much disfigured;\nAnd, like a shifted wind unto a sail,\nIt makes the course of thoughts to fetch about,\nStartles and frights consideration,\nMakes sound opinion sick and truth suspected,\nFor putting on so new a fashion'd robe.\n\nPEMBROKE:\nWhen workmen strive to do better than well,\nThey do confound their skill in covetousness;\nAnd oftentimes excusing of a fault\nDoth make the fault the worse by the excuse,\nAs patches set upon a little breach\nDiscredit more in hiding of the fault\nThan did the fault before it was so patch'd.\n\nSALISBURY:\nTo this effect, before you were new crown'd,\nWe breathed our counsel: but it pleased your highness\nTo overbear it, and we are all well pleased,\nSince all and every part of what we would\nDoth make a stand at what your highness will.\n\nKING JOHN:\nSome reasons of this double coronation\nI have possess'd you with and think them strong;\nAnd more, more strong, then lesser is my fear,\nI shall indue you with: meantime but ask\nWhat you would have reform'd that is not well,\nAnd well shall you perceive how willingly\nI will both hear and grant you your requests.\n\nPEMBROKE:\nThen I, as one that am the tongue of these,\nTo sound the purpose of all their hearts,\nBoth for myself and them, but, chief of all,\nYour safety, for the which myself and them\nBend their best studies, heartily request\nThe enfranchisement of Arthur; whose restraint\nDoth move the murmuring lips of discontent\nTo break into this dangerous argument,--\nIf what in rest you have in right you hold,\nWhy then your fears, which, as they say, attend\nThe steps of wrong, should move you to mew up\nYour tender kinsman and to choke his days\nWith barbarous ignorance and deny his youth\nThe rich advantage of good exercise?\nThat the time's enemies may not have this\nTo grace occasions, let it be our suit\nThat you have bid us ask his liberty;\nWhich for our goods we do no further ask\nThan whereupon our weal, on you depending,\nCounts it your weal he have his liberty.\n\nKING JOHN:\nLet it be so: I do commit his youth\nTo your direction. Hubert, what news with you?\n\nPEMBROKE:\nThis is the man should do the bloody deed;\nHe show'd his warrant to a friend of mine:\nThe image of a wicked heinous fault\nLives in his eye; that close aspect of his\nDoes show the mood of a much troubled breast;\nAnd I do fearfully believe 'tis done,\nWhat we so fear'd he had a charge to do.\n\nSALISBURY:\nThe colour of the king doth come and go\nBetween his purpose and his conscience,\nLike heralds 'twixt two dreadful battles set:\nHis passion is so ripe, it needs must break.\n\nPEMBROKE:\nAnd when it breaks, I fear will issue thence\nThe foul corruption of a sweet child's death.\n\nKING JOHN:\nWe cannot hold mortality's strong hand:\nGood lords, although my will to give is living,\nThe suit which you demand is gone and dead:\nHe tells us Arthur is deceased to-night.\n\nSALISBURY:\nIndeed we fear'd his sickness was past cure.\n\nPEMBROKE:\nIndeed we heard how near his death he was\nBefore the child himself felt he was sick:\nThis must be answer'd either here or hence.\n\nKING JOHN:\nWhy do you bend such solemn brows on me?\nThink you I bear the shears of destiny?\nHave I commandment on the pulse of life?\n\nSALISBURY:\nIt is apparent foul play; and 'tis shame\nThat greatness should so grossly offer it:\nSo thrive it in your game! and so, farewell.\n\nPEMBROKE:\nStay yet, Lord Salisbury; I'll go with thee,\nAnd find the inheritance of this poor child,\nHis little kingdom of a forced grave.\nThat blood which owed the breadth of all this isle,\nThree foot of it doth hold: bad world the while!\nThis must not be thus borne: this will break out\nTo all our sorrows, and ere long I doubt.\n\nKING JOHN:\nThey burn in indignation. I repent:\nThere is no sure foundation set on blood,\nNo certain life achieved by others' death.\nA fearful eye thou hast: where is that blood\nThat I have seen inhabit in those cheeks?\nSo foul a sky clears not without a storm:\nPour down thy weather: how goes all in France?\n\nMessenger:\nFrom France to England. Never such a power\nFor any foreign preparation\nWas levied in the body of a land.\nThe copy of your speed is learn'd by them;\nFor when you should be told they do prepare,\nThe tidings come that they are all arrived.\n\nKING JOHN:\nO, where hath our intelligence been drunk?\nWhere hath it slept? Where is my mother's care,\nThat such an army could be drawn in France,\nAnd she not hear of it?\n\nMessenger:\nMy liege, her ear\nIs stopp'd with dust; the first of April died\nYour noble mother: and, as I hear, my lord,\nThe Lady Constance in a frenzy died\nThree days before: but this from rumour's tongue\nI idly heard; if true or false I know not.\n\nKING JOHN:\nWithhold thy speed, dreadful occasion!\nO, make a league with me, till I have pleased\nMy discontented peers! What! mother dead!\nHow wildly then walks my estate in France!\nUnder whose conduct came those powers of France\nThat thou for truth givest out are landed here?\n\nMessenger:\nUnder the Dauphin.\n\nKING JOHN:\nThou hast made me giddy\nWith these ill tidings.\nNow, what says the world\nTo your proceedings? do not seek to stuff\nMy head with more ill news, for it is full.\n\nBASTARD:\nBut if you be afeard to hear the worst,\nThen let the worst unheard fall on your bead.\n\nKING JOHN:\nBear with me cousin, for I was amazed\nUnder the tide: but now I breathe again\nAloft the flood, and can give audience\nTo any tongue, speak it of what it will.\n\nBASTARD:\nHow I have sped among the clergymen,\nThe sums I have collected shall express.\nBut as I travell'd hither through the land,\nI find the people strangely fantasied;\nPossess'd with rumours, full of idle dreams,\nNot knowing what they fear, but full of fear:\nAnd here a prophet, that I brought with me\nFrom forth the streets of Pomfret, whom I found\nWith many hundreds treading on his heels;\nTo whom he sung, in rude harsh-sounding rhymes,\nThat, ere the next Ascension-day at noon,\nYour highness should deliver up your crown.\n\nKING JOHN:\nThou idle dreamer, wherefore didst thou so?\n\nPETER:\nForeknowing that the truth will fall out so.\n\nKING JOHN:\nHubert, away with him; imprison him;\nAnd on that day at noon whereon he says\nI shall yield up my crown, let him be hang'd.\nDeliver him to safety; and return,\nFor I must use thee.\nO my gentle cousin,\nHear'st thou the news abroad, who are arrived?\n\nBASTARD:\nThe French, my lord; men's mouths are full of it:\nBesides, I met Lord Bigot and Lord Salisbury,\nWith eyes as red as new-enkindled fire,\nAnd others more, going to seek the grave\nOf Arthur, who they say is kill'd to-night\nOn your suggestion.\n\nKING JOHN:\nGentle kinsman, go,\nAnd thrust thyself into their companies:\nI have a way to win their loves again;\nBring them before me.\n\nBASTARD:\nI will seek them out.\n\nKING JOHN:\nNay, but make haste; the better foot before.\nO, let me have no subject enemies,\nWhen adverse foreigners affright my towns\nWith dreadful pomp of stout invasion!\nBe Mercury, set feathers to thy heels,\nAnd fly like thought from them to me again.\n\nBASTARD:\nThe spirit of the time shall teach me speed.\n\nKING JOHN:\nSpoke like a sprightful noble gentleman.\nGo after him; for he perhaps shall need\nSome messenger betwixt me and the peers;\nAnd be thou he.\n\nMessenger:\nWith all my heart, my liege.\n\nKING JOHN:\nMy mother dead!\n\nHUBERT:\nMy lord, they say five moons were seen to-night;\nFour fixed, and the fifth did whirl about\nThe other four in wondrous motion.\n\nKING JOHN:\nFive moons!\n\nHUBERT:\nOld men and beldams in the streets\nDo prophesy upon it dangerously:\nYoung Arthur's death is common in their mouths:\nAnd when they talk of him, they shake their heads\nAnd whisper one another in the ear;\nAnd he that speaks doth gripe the hearer's wrist,\nWhilst he that hears makes fearful action,\nWith wrinkled brows, with nods, with rolling eyes.\nI saw a smith stand with his hammer, thus,\nThe whilst his iron did on the anvil cool,\nWith open mouth swallowing a tailor's news;\nWho, with his shears and measure in his hand,\nStanding on slippers, which his nimble haste\nHad falsely thrust upon contrary feet,\nTold of a many thousand warlike French\nThat were embattailed and rank'd in Kent:\nAnother lean unwash'd artificer\nCuts off his tale and talks of Arthur's death.\n\nKING JOHN:\nWhy seek'st thou to possess me with these fears?\nWhy urgest thou so oft young Arthur's death?\nThy hand hath murder'd him: I had a mighty cause\nTo wish him dead, but thou hadst none to kill him.\n\nHUBERT:\nNo had, my lord! why, did you not provoke me?\n\nKING JOHN:\nIt is the curse of kings to be attended\nBy slaves that take their humours for a warrant\nTo break within the bloody house of life,\nAnd on the winking of authority\nTo understand a law, to know the meaning\nOf dangerous majesty, when perchance it frowns\nMore upon humour than advised respect.\n\nHUBERT:\nHere is your hand and seal for what I did.\n\nKING JOHN:\nO, when the last account 'twixt heaven and earth\nIs to be made, then shall this hand and seal\nWitness against us to damnation!\nHow oft the sight of means to do ill deeds\nMake deeds ill done! Hadst not thou been by,\nA fellow by the hand of nature mark'd,\nQuoted and sign'd to do a deed of shame,\nThis murder had not come into my mind:\nBut taking note of thy abhorr'd aspect,\nFinding thee fit for bloody villany,\nApt, liable to be employ'd in danger,\nI faintly broke with thee of Arthur's death;\nAnd thou, to be endeared to a king,\nMade it no conscience to destroy a prince.\n\nHUBERT:\nMy lord--\n\nKING JOHN:\nHadst thou but shook thy head or made a pause\nWhen I spake darkly what I purposed,\nOr turn'd an eye of doubt upon my face,\nAs bid me tell my tale in express words,\nDeep shame had struck me dumb, made me break off,\nAnd those thy fears might have wrought fears in me:\nBut thou didst understand me by my signs\nAnd didst in signs again parley with sin;\nYea, without stop, didst let thy heart consent,\nAnd consequently thy rude hand to act\nThe deed, which both our tongues held vile to name.\nOut of my sight, and never see me more!\nMy nobles leave me; and my state is braved,\nEven at my gates, with ranks of foreign powers:\nNay, in the body of this fleshly land,\nThis kingdom, this confine of blood and breath,\nHostility and civil tumult reigns\nBetween my conscience and my cousin's death.\n\nHUBERT:\nArm you against your other enemies,\nI'll make a peace between your soul and you.\nYoung Arthur is alive: this hand of mine\nIs yet a maiden and an innocent hand,\nNot painted with the crimson spots of blood.\nWithin this bosom never enter'd yet\nThe dreadful motion of a murderous thought;\nAnd you have slander'd nature in my form,\nWhich, howsoever rude exteriorly,\nIs yet the cover of a fairer mind\nThan to be butcher of an innocent child.\n\nKING JOHN:\nDoth Arthur live? O, haste thee to the peers,\nThrow this report on their incensed rage,\nAnd make them tame to their obedience!\nForgive the comment that my passion made\nUpon thy feature; for my rage was blind,\nAnd foul imaginary eyes of blood\nPresented thee more hideous than thou art.\nO, answer not, but to my closet bring\nThe angry lords with all expedient haste.\nI conjure thee but slowly; run more fast.\n\nARTHUR:\nThe wall is high, and yet will I leap down:\nGood ground, be pitiful and hurt me not!\nThere's few or none do know me: if they did,\nThis ship-boy's semblance hath disguised me quite.\nI am afraid; and yet I'll venture it.\nIf I get down, and do not break my limbs,\nI'll find a thousand shifts to get away:\nAs good to die and go, as die and stay.\nO me! my uncle's spirit is in these stones:\nHeaven take my soul, and England keep my bones!\n\nSALISBURY:\nLords, I will meet him at Saint Edmundsbury:\nIt is our safety, and we must embrace\nThis gentle offer of the perilous time.\n\nPEMBROKE:\nWho brought that letter from the cardinal?\n\nSALISBURY:\nThe Count Melun, a noble lord of France,\nWhose private with me of the Dauphin's love\nIs much more general than these lines import.\n\nBIGOT:\nTo-morrow morning let us meet him then.\n\nSALISBURY:\nOr rather then set forward; for 'twill be\nTwo long days' journey, lords, or ere we meet.\n\nBASTARD:\nOnce more to-day well met, distemper'd lords!\nThe king by me requests your presence straight.\n\nSALISBURY:\nThe king hath dispossess'd himself of us:\nWe will not line his thin bestained cloak\nWith our pure honours, nor attend the foot\nThat leaves the print of blood where'er it walks.\nReturn and tell him so: we know the worst.\n\nBASTARD:\nWhate'er you think, good words, I think, were best.\n\nSALISBURY:\nOur griefs, and not our manners, reason now.\n\nBASTARD:\nBut there is little reason in your grief;\nTherefore 'twere reason you had manners now.\n\nPEMBROKE:\nSir, sir, impatience hath his privilege.\n\nBASTARD:\n'Tis true, to hurt his master, no man else.\n\nSALISBURY:\nThis is the prison. What is he lies here?\n\nPEMBROKE:\nO death, made proud with pure and princely beauty!\nThe earth had not a hole to hide this deed.\n\nSALISBURY:\nMurder, as hating what himself hath done,\nDoth lay it open to urge on revenge.\n\nBIGOT:\nOr, when he doom'd this beauty to a grave,\nFound it too precious-princely for a grave.\n\nSALISBURY:\nSir Richard, what think you? have you beheld,\nOr have you read or heard? or could you think?\nOr do you almost think, although you see,\nThat you do see? could thought, without this object,\nForm such another? This is the very top,\nThe height, the crest, or crest unto the crest,\nOf murder's arms: this is the bloodiest shame,\nThe wildest savagery, the vilest stroke,\nThat ever wall-eyed wrath or staring rage\nPresented to the tears of soft remorse.\n\nPEMBROKE:\nAll murders past do stand excused in this:\nAnd this, so sole and so unmatchable,\nShall give a holiness, a purity,\nTo the yet unbegotten sin of times;\nAnd prove a deadly bloodshed but a jest,\nExampled by this heinous spectacle.\n\nBASTARD:\nIt is a damned and a bloody work;\nThe graceless action of a heavy hand,\nIf that it be the work of any hand.\n\nSALISBURY:\nIf that it be the work of any hand!\nWe had a kind of light what would ensue:\nIt is the shameful work of Hubert's hand;\nThe practise and the purpose of the king:\nFrom whose obedience I forbid my soul,\nKneeling before this ruin of sweet life,\nAnd breathing to his breathless excellence\nThe incense of a vow, a holy vow,\nNever to taste the pleasures of the world,\nNever to be infected with delight,\nNor conversant with ease and idleness,\nTill I have set a glory to this hand,\nBy giving it the worship of revenge.\n\nPEMBROKE:\nOur souls religiously confirm thy words.\n\nHUBERT:\nLords, I am hot with haste in seeking you:\nArthur doth live; the king hath sent for you.\n\nSALISBURY:\nO, he is old and blushes not at death.\nAvaunt, thou hateful villain, get thee gone!\n\nHUBERT:\nI am no villain.\n\nSALISBURY:\nMust I rob the law?\n\nBASTARD:\nYour sword is bright, sir; put it up again.\n\nSALISBURY:\nNot till I sheathe it in a murderer's skin.\n\nHUBERT:\nStand back, Lord Salisbury, stand back, I say;\nBy heaven, I think my sword's as sharp as yours:\nI would not have you, lord, forget yourself,\nNor tempt the danger of my true defence;\nLest I, by marking of your rage, forget\nYour worth, your greatness and nobility.\n\nBIGOT:\nOut, dunghill! darest thou brave a nobleman?\n\nHUBERT:\nNot for my life: but yet I dare defend\nMy innocent life against an emperor.\n\nSALISBURY:\nThou art a murderer.\n\nHUBERT:\nDo not prove me so;\nYet I am none: whose tongue soe'er speaks false,\nNot truly speaks; who speaks not truly, lies.\n\nPEMBROKE:\nCut him to pieces.\n\nBASTARD:\nKeep the peace, I say.\n\nSALISBURY:\nStand by, or I shall gall you, Faulconbridge.\n\nBASTARD:\nThou wert better gall the devil, Salisbury:\nIf thou but frown on me, or stir thy foot,\nOr teach thy hasty spleen to do me shame,\nI'll strike thee dead. Put up thy sword betime;\nOr I'll so maul you and your toasting-iron,\nThat you shall think the devil is come from hell.\n\nBIGOT:\nWhat wilt thou do, renowned Faulconbridge?\nSecond a villain and a murderer?\n\nHUBERT:\nLord Bigot, I am none.\n\nBIGOT:\nWho kill'd this prince?\n\nHUBERT:\n'Tis not an hour since I left him well:\nI honour'd him, I loved him, and will weep\nMy date of life out for his sweet life's loss.\n\nSALISBURY:\nTrust not those cunning waters of his eyes,\nFor villany is not without such rheum;\nAnd he, long traded in it, makes it seem\nLike rivers of remorse and innocency.\nAway with me, all you whose souls abhor\nThe uncleanly savours of a slaughter-house;\nFor I am stifled with this smell of sin.\n\nBIGOT:\nAway toward Bury, to the Dauphin there!\n\nPEMBROKE:\nThere tell the king he may inquire us out.\n\nBASTARD:\nHere's a good world! Knew you of this fair work?\nBeyond the infinite and boundless reach\nOf mercy, if thou didst this deed of death,\nArt thou damn'd, Hubert.\n\nHUBERT:\nDo but hear me, sir.\n\nBASTARD:\nHa! I'll tell thee what;\nThou'rt damn'd as black--nay, nothing is so black;\nThou art more deep damn'd than Prince Lucifer:\nThere is not yet so ugly a fiend of hell\nAs thou shalt be, if thou didst kill this child.\n\nHUBERT:\nUpon my soul--\n\nBASTARD:\nIf thou didst but consent\nTo this most cruel act, do but despair;\nAnd if thou want'st a cord, the smallest thread\nThat ever spider twisted from her womb\nWill serve to strangle thee, a rush will be a beam\nTo hang thee on; or wouldst thou drown thyself,\nPut but a little water in a spoon,\nAnd it shall be as all the ocean,\nEnough to stifle such a villain up.\nI do suspect thee very grievously.\n\nHUBERT:\nIf I in act, consent, or sin of thought,\nBe guilty of the stealing that sweet breath\nWhich was embounded in this beauteous clay,\nLet hell want pains enough to torture me.\nI left him well.\n\nBASTARD:\nGo, bear him in thine arms.\nI am amazed, methinks, and lose my way\nAmong the thorns and dangers of this world.\nHow easy dost thou take all England up!\nFrom forth this morsel of dead royalty,\nThe life, the right and truth of all this realm\nIs fled to heaven; and England now is left\nTo tug and scamble and to part by the teeth\nThe unowed interest of proud-swelling state.\nNow for the bare-pick'd bone of majesty\nDoth dogged war bristle his angry crest\nAnd snarleth in the gentle eyes of peace:\nNow powers from home and discontents at home\nMeet in one line; and vast confusion waits,\nAs doth a raven on a sick-fall'n beast,\nThe imminent decay of wrested pomp.\nNow happy he whose cloak and cincture can\nHold out this tempest. Bear away that child\nAnd follow me with speed: I'll to the king:\nA thousand businesses are brief in hand,\nAnd heaven itself doth frown upon the land.\n\nKING JOHN:\nThus have I yielded up into your hand\nThe circle of my glory.\n\nCARDINAL PANDULPH:\nTake again\nFrom this my hand, as holding of the pope\nYour sovereign greatness and authority.\n\nKING JOHN:\nNow keep your holy word: go meet the French,\nAnd from his holiness use all your power\nTo stop their marches 'fore we are inflamed.\nOur discontented counties do revolt;\nOur people quarrel with obedience,\nSwearing allegiance and the love of soul\nTo stranger blood, to foreign royalty.\nThis inundation of mistemper'd humour\nRests by you only to be qualified:\nThen pause not; for the present time's so sick,\nThat present medicine must be minister'd,\nOr overthrow incurable ensues.\n\nCARDINAL PANDULPH:\nIt was my breath that blew this tempest up,\nUpon your stubborn usage of the pope;\nBut since you are a gentle convertite,\nMy tongue shall hush again this storm of war\nAnd make fair weather in your blustering land.\nOn this Ascension-day, remember well,\nUpon your oath of service to the pope,\nGo I to make the French lay down their arms.\n\nKING JOHN:\nIs this Ascension-day? Did not the prophet\nSay that before Ascension-day at noon\nMy crown I should give off? Even so I have:\nI did suppose it should be on constraint:\nBut, heaven be thank'd, it is but voluntary.\n\nBASTARD:\nAll Kent hath yielded; nothing there holds out\nBut Dover castle: London hath received,\nLike a kind host, the Dauphin and his powers:\nYour nobles will not hear you, but are gone\nTo offer service to your enemy,\nAnd wild amazement hurries up and down\nThe little number of your doubtful friends.\n\nKING JOHN:\nWould not my lords return to me again,\nAfter they heard young Arthur was alive?\n\nBASTARD:\nThey found him dead and cast into the streets,\nAn empty casket, where the jewel of life\nBy some damn'd hand was robb'd and ta'en away.\n\nKING JOHN:\nThat villain Hubert told me he did live.\n\nBASTARD:\nSo, on my soul, he did, for aught he knew.\nBut wherefore do you droop? why look you sad?\nBe great in act, as you have been in thought;\nLet not the world see fear and sad distrust\nGovern the motion of a kingly eye:\nBe stirring as the time; be fire with fire;\nThreaten the threatener and outface the brow\nOf bragging horror: so shall inferior eyes,\nThat borrow their behaviors from the great,\nGrow great by your example and put on\nThe dauntless spirit of resolution.\nAway, and glister like the god of war,\nWhen he intendeth to become the field:\nShow boldness and aspiring confidence.\nWhat, shall they seek the lion in his den,\nAnd fright him there? and make him tremble there?\nO, let it not be said: forage, and run\nTo meet displeasure farther from the doors,\nAnd grapple with him ere he comes so nigh.\n\nKING JOHN:\nThe legate of the pope hath been with me,\nAnd I have made a happy peace with him;\nAnd he hath promised to dismiss the powers\nLed by the Dauphin.\n\nBASTARD:\nO inglorious league!\nShall we, upon the footing of our land,\nSend fair-play orders and make compromise,\nInsinuation, parley and base truce\nTo arms invasive? shall a beardless boy,\nA cocker'd silken wanton, brave our fields,\nAnd flesh his spirit in a warlike soil,\nMocking the air with colours idly spread,\nAnd find no cheque? Let us, my liege, to arms:\nPerchance the cardinal cannot make your peace;\nOr if he do, let it at least be said\nThey saw we had a purpose of defence.\n\nKING JOHN:\nHave thou the ordering of this present time.\n\nBASTARD:\nAway, then, with good courage! yet, I know,\nOur party may well meet a prouder foe.\n\nLEWIS:\nMy Lord Melun, let this be copied out,\nAnd keep it safe for our remembrance:\nReturn the precedent to these lords again;\nThat, having our fair order written down,\nBoth they and we, perusing o'er these notes,\nMay know wherefore we took the sacrament\nAnd keep our faiths firm and inviolable.\n\nSALISBURY:\nUpon our sides it never shall be broken.\nAnd, noble Dauphin, albeit we swear\nA voluntary zeal and an unurged faith\nTo your proceedings; yet believe me, prince,\nI am not glad that such a sore of time\nShould seek a plaster by contemn'd revolt,\nAnd heal the inveterate canker of one wound\nBy making many. O, it grieves my soul,\nThat I must draw this metal from my side\nTo be a widow-maker! O, and there\nWhere honourable rescue and defence\nCries out upon the name of Salisbury!\nBut such is the infection of the time,\nThat, for the health and physic of our right,\nWe cannot deal but with the very hand\nOf stern injustice and confused wrong.\nAnd is't not pity, O my grieved friends,\nThat we, the sons and children of this isle,\nWere born to see so sad an hour as this;\nWherein we step after a stranger march\nUpon her gentle bosom, and fill up\nHer enemies' ranks,--I must withdraw and weep\nUpon the spot of this enforced cause,--\nTo grace the gentry of a land remote,\nAnd follow unacquainted colours here?\nWhat, here? O nation, that thou couldst remove!\nThat Neptune's arms, who clippeth thee about,\nWould bear thee from the knowledge of thyself,\nAnd grapple thee unto a pagan shore;\nWhere these two Christian armies might combine\nThe blood of malice in a vein of league,\nAnd not to spend it so unneighbourly!\n\nLEWIS:\nA noble temper dost thou show in this;\nAnd great affections wrestling in thy bosom\nDoth make an earthquake of nobility.\nO, what a noble combat hast thou fought\nBetween compulsion and a brave respect!\nLet me wipe off this honourable dew,\nThat silverly doth progress on thy cheeks:\nMy heart hath melted at a lady's tears,\nBeing an ordinary inundation;\nBut this effusion of such manly drops,\nThis shower, blown up by tempest of the soul,\nStartles mine eyes, and makes me more amazed\nThan had I seen the vaulty top of heaven\nFigured quite o'er with burning meteors.\nLift up thy brow, renowned Salisbury,\nAnd with a great heart heave away the storm:\nCommend these waters to those baby eyes\nThat never saw the giant world enraged;\nNor met with fortune other than at feasts,\nFull of warm blood, of mirth, of gossiping.\nCome, come; for thou shalt thrust thy hand as deep\nInto the purse of rich prosperity\nAs Lewis himself: so, nobles, shall you all,\nThat knit your sinews to the strength of mine.\nAnd even there, methinks, an angel spake:\nLook, where the holy legate comes apace,\nTo give us warrant from the hand of heaven\nAnd on our actions set the name of right\nWith holy breath.\n\nCARDINAL PANDULPH:\nHail, noble prince of France!\nThe next is this, King John hath reconciled\nHimself to Rome; his spirit is come in,\nThat so stood out against the holy church,\nThe great metropolis and see of Rome:\nTherefore thy threatening colours now wind up;\nAnd tame the savage spirit of wild war,\nThat like a lion foster'd up at hand,\nIt may lie gently at the foot of peace,\nAnd be no further harmful than in show.\n\nLEWIS:\nYour grace shall pardon me, I will not back:\nI am too high-born to be propertied,\nTo be a secondary at control,\nOr useful serving-man and instrument,\nTo any sovereign state throughout the world.\nYour breath first kindled the dead coal of wars\nBetween this chastised kingdom and myself,\nAnd brought in matter that should feed this fire;\nAnd now 'tis far too huge to be blown out\nWith that same weak wind which enkindled it.\nYou taught me how to know the face of right,\nAcquainted me with interest to this land,\nYea, thrust this enterprise into my heart;\nAnd come ye now to tell me John hath made\nHis peace with Rome? What is that peace to me?\nI, by the honour of my marriage-bed,\nAfter young Arthur, claim this land for mine;\nAnd, now it is half-conquer'd, must I back\nBecause that John hath made his peace with Rome?\nAm I Rome's slave? What penny hath Rome borne,\nWhat men provided, what munition sent,\nTo underprop this action? Is't not I\nThat undergo this charge? who else but I,\nAnd such as to my claim are liable,\nSweat in this business and maintain this war?\nHave I not heard these islanders shout out\n'Vive le roi!' as I have bank'd their towns?\nHave I not here the best cards for the game,\nTo win this easy match play'd for a crown?\nAnd shall I now give o'er the yielded set?\nNo, no, on my soul, it never shall be said.\n\nCARDINAL PANDULPH:\nYou look but on the outside of this work.\n\nLEWIS:\nOutside or inside, I will not return\nTill my attempt so much be glorified\nAs to my ample hope was promised\nBefore I drew this gallant head of war,\nAnd cull'd these fiery spirits from the world,\nTo outlook conquest and to win renown\nEven in the jaws of danger and of death.\nWhat lusty trumpet thus doth summon us?\n\nBASTARD:\nAccording to the fair play of the world,\nLet me have audience; I am sent to speak:\nMy holy lord of Milan, from the king\nI come, to learn how you have dealt for him;\nAnd, as you answer, I do know the scope\nAnd warrant limited unto my tongue.\n\nCARDINAL PANDULPH:\nThe Dauphin is too wilful-opposite,\nAnd will not temporize with my entreaties;\nHe flatly says he'll not lay down his arms.\n\nBASTARD:\nBy all the blood that ever fury breathed,\nThe youth says well. Now hear our English king;\nFor thus his royalty doth speak in me.\nHe is prepared, and reason too he should:\nThis apish and unmannerly approach,\nThis harness'd masque and unadvised revel,\nThis unhair'd sauciness and boyish troops,\nThe king doth smile at; and is well prepared\nTo whip this dwarfish war, these pigmy arms,\nFrom out the circle of his territories.\nThat hand which had the strength, even at your door,\nTo cudgel you and make you take the hatch,\nTo dive like buckets in concealed wells,\nTo crouch in litter of your stable planks,\nTo lie like pawns lock'd up in chests and trunks,\nTo hug with swine, to seek sweet safety out\nIn vaults and prisons, and to thrill and shake\nEven at the crying of your nation's crow,\nThinking his voice an armed Englishman;\nShall that victorious hand be feebled here,\nThat in your chambers gave you chastisement?\nNo: know the gallant monarch is in arms\nAnd like an eagle o'er his aery towers,\nTo souse annoyance that comes near his nest.\nAnd you degenerate, you ingrate revolts,\nYou bloody Neroes, ripping up the womb\nOf your dear mother England, blush for shame;\nFor your own ladies and pale-visaged maids\nLike Amazons come tripping after drums,\nTheir thimbles into armed gauntlets change,\nTheir needles to lances, and their gentle hearts\nTo fierce and bloody inclination.\n\nLEWIS:\nThere end thy brave, and turn thy face in peace;\nWe grant thou canst outscold us: fare thee well;\nWe hold our time too precious to be spent\nWith such a brabbler.\n\nCARDINAL PANDULPH:\nGive me leave to speak.\n\nBASTARD:\nNo, I will speak.\n\nLEWIS:\nWe will attend to neither.\nStrike up the drums; and let the tongue of war\nPlead for our interest and our being here.\n\nBASTARD:\nIndeed your drums, being beaten, will cry out;\nAnd so shall you, being beaten: do but start\nAn echo with the clamour of thy drum,\nAnd even at hand a drum is ready braced\nThat shall reverberate all as loud as thine;\nSound but another, and another shall\nAs loud as thine rattle the welkin's ear\nAnd mock the deep-mouth'd thunder: for at hand,\nNot trusting to this halting legate here,\nWhom he hath used rather for sport than need\nIs warlike John; and in his forehead sits\nA bare-ribb'd death, whose office is this day\nTo feast upon whole thousands of the French.\n\nLEWIS:\nStrike up our drums, to find this danger out.\n\nBASTARD:\nAnd thou shalt find it, Dauphin, do not doubt.\n\nKING JOHN:\nHow goes the day with us? O, tell me, Hubert.\n\nHUBERT:\nBadly, I fear. How fares your majesty?\n\nKING JOHN:\nThis fever, that hath troubled me so long,\nLies heavy on me; O, my heart is sick!\n\nMessenger:\nMy lord, your valiant kinsman, Faulconbridge,\nDesires your majesty to leave the field\nAnd send him word by me which way you go.\n\nKING JOHN:\nTell him, toward Swinstead, to the abbey there.\n\nMessenger:\nBe of good comfort; for the great supply\nThat was expected by the Dauphin here,\nAre wreck'd three nights ago on Goodwin Sands.\nThis news was brought to Richard but even now:\nThe French fight coldly, and retire themselves.\n\nKING JOHN:\nAy me! this tyrant fever burns me up,\nAnd will not let me welcome this good news.\nSet on toward Swinstead: to my litter straight;\nWeakness possesseth me, and I am faint.\n\nSALISBURY:\nI did not think the king so stored with friends.\n\nPEMBROKE:\nUp once again; put spirit in the French:\nIf they miscarry, we miscarry too.\n\nSALISBURY:\nThat misbegotten devil, Faulconbridge,\nIn spite of spite, alone upholds the day.\n\nPEMBROKE:\nThey say King John sore sick hath left the field.\n\nMELUN:\nLead me to the revolts of England here.\n\nSALISBURY:\nWhen we were happy we had other names.\n\nPEMBROKE:\nIt is the Count Melun.\n\nSALISBURY:\nWounded to death.\n\nMELUN:\nFly, noble English, you are bought and sold;\nUnthread the rude eye of rebellion\nAnd welcome home again discarded faith.\nSeek out King John and fall before his feet;\nFor if the French be lords of this loud day,\nHe means to recompense the pains you take\nBy cutting off your heads: thus hath he sworn\nAnd I with him, and many moe with me,\nUpon the altar at Saint Edmundsbury;\nEven on that altar where we swore to you\nDear amity and everlasting love.\n\nSALISBURY:\nMay this be possible? may this be true?\n\nMELUN:\nHave I not hideous death within my view,\nRetaining but a quantity of life,\nWhich bleeds away, even as a form of wax\nResolveth from his figure 'gainst the fire?\nWhat in the world should make me now deceive,\nSince I must lose the use of all deceit?\nWhy should I then be false, since it is true\nThat I must die here and live hence by truth?\nI say again, if Lewis do win the day,\nHe is forsworn, if e'er those eyes of yours\nBehold another day break in the east:\nBut even this night, whose black contagious breath\nAlready smokes about the burning crest\nOf the old, feeble and day-wearied sun,\nEven this ill night, your breathing shall expire,\nPaying the fine of rated treachery\nEven with a treacherous fine of all your lives,\nIf Lewis by your assistance win the day.\nCommend me to one Hubert with your king:\nThe love of him, and this respect besides,\nFor that my grandsire was an Englishman,\nAwakes my conscience to confess all this.\nIn lieu whereof, I pray you, bear me hence\nFrom forth the noise and rumour of the field,\nWhere I may think the remnant of my thoughts\nIn peace, and part this body and my soul\nWith contemplation and devout desires.\n\nSALISBURY:\nWe do believe thee: and beshrew my soul\nBut I do love the favour and the form\nOf this most fair occasion, by the which\nWe will untread the steps of damned flight,\nAnd like a bated and retired flood,\nLeaving our rankness and irregular course,\nStoop low within those bounds we have o'erlook'd\nAnd cabby run on in obedience\nEven to our ocean, to our great King John.\nMy arm shall give thee help to bear thee hence;\nFor I do see the cruel pangs of death\nRight in thine eye. Away, my friends! New flight;\nAnd happy newness, that intends old right.\n\nLEWIS:\nThe sun of heaven methought was loath to set,\nBut stay'd and made the western welkin blush,\nWhen English measure backward their own ground\nIn faint retire. O, bravely came we off,\nWhen with a volley of our needless shot,\nAfter such bloody toil, we bid good night;\nAnd wound our tattering colours clearly up,\nLast in the field, and almost lords of it!\n\nMessenger:\nWhere is my prince, the Dauphin?\n\nLEWIS:\nHere: what news?\n\nMessenger:\nThe Count Melun is slain; the English lords\nBy his persuasion are again fall'n off,\nAnd your supply, which you have wish'd so long,\nAre cast away and sunk on Goodwin Sands.\n\nLEWIS:\nAh, foul shrewd news! beshrew thy very heart!\nI did not think to be so sad to-night\nAs this hath made me. Who was he that said\nKing John did fly an hour or two before\nThe stumbling night did part our weary powers?\n\nMessenger:\nWhoever spoke it, it is true, my lord.\n\nLEWIS:\nWell; keep good quarter and good care to-night:\nThe day shall not be up so soon as I,\nTo try the fair adventure of to-morrow.\n\nHUBERT:\nWho's there? speak, ho! speak quickly, or I shoot.\n\nBASTARD:\nA friend. What art thou?\n\nHUBERT:\nOf the part of England.\n\nBASTARD:\nWhither dost thou go?\n\nHUBERT:\nWhat's that to thee? why may not I demand\nOf thine affairs, as well as thou of mine?\n\nBASTARD:\nHubert, I think?\n\nHUBERT:\nThou hast a perfect thought:\nI will upon all hazards well believe\nThou art my friend, that know'st my tongue so well.\nWho art thou?\n\nBASTARD:\nWho thou wilt: and if thou please,\nThou mayst befriend me so much as to think\nI come one way of the Plantagenets.\n\nHUBERT:\nUnkind remembrance! thou and eyeless night\nHave done me shame: brave soldier, pardon me,\nThat any accent breaking from thy tongue\nShould 'scape the true acquaintance of mine ear.\n\nBASTARD:\nCome, come; sans compliment, what news abroad?\n\nHUBERT:\nWhy, here walk I in the black brow of night,\nTo find you out.\n\nBASTARD:\nBrief, then; and what's the news?\n\nHUBERT:\nO, my sweet sir, news fitting to the night,\nBlack, fearful, comfortless and horrible.\n\nBASTARD:\nShow me the very wound of this ill news:\nI am no woman, I'll not swoon at it.\n\nHUBERT:\nThe king, I fear, is poison'd by a monk:\nI left him almost speechless; and broke out\nTo acquaint you with this evil, that you might\nThe better arm you to the sudden time,\nThan if you had at leisure known of this.\n\nBASTARD:\nHow did he take it? who did taste to him?\n\nHUBERT:\nA monk, I tell you; a resolved villain,\nWhose bowels suddenly burst out: the king\nYet speaks and peradventure may recover.\n\nBASTARD:\nWho didst thou leave to tend his majesty?\n\nHUBERT:\nWhy, know you not? the lords are all come back,\nAnd brought Prince Henry in their company;\nAt whose request the king hath pardon'd them,\nAnd they are all about his majesty.\n\nBASTARD:\nWithhold thine indignation, mighty heaven,\nAnd tempt us not to bear above our power!\nI'll tell tree, Hubert, half my power this night,\nPassing these flats, are taken by the tide;\nThese Lincoln Washes have devoured them;\nMyself, well mounted, hardly have escaped.\nAway before: conduct me to the king;\nI doubt he will be dead or ere I come.\n\nPRINCE HENRY:\nIt is too late: the life of all his blood\nIs touch'd corruptibly, and his pure brain,\nWhich some suppose the soul's frail dwelling-house,\nDoth by the idle comments that it makes\nForetell the ending of mortality.\n\nPEMBROKE:\nHis highness yet doth speak, and holds belief\nThat, being brought into the open air,\nIt would allay the burning quality\nOf that fell poison which assaileth him.\n\nPRINCE HENRY:\nLet him be brought into the orchard here.\nDoth he still rage?\n\nPEMBROKE:\nHe is more patient\nThan when you left him; even now he sung.\n\nPRINCE HENRY:\nO vanity of sickness! fierce extremes\nIn their continuance will not feel themselves.\nDeath, having prey'd upon the outward parts,\nLeaves them invisible, and his siege is now\nAgainst the mind, the which he pricks and wounds\nWith many legions of strange fantasies,\nWhich, in their throng and press to that last hold,\nConfound themselves. 'Tis strange that death\nshould sing.\nI am the cygnet to this pale faint swan,\nWho chants a doleful hymn to his own death,\nAnd from the organ-pipe of frailty sings\nHis soul and body to their lasting rest.\n\nSALISBURY:\nBe of good comfort, prince; for you are born\nTo set a form upon that indigest\nWhich he hath left so shapeless and so rude.\n\nKING JOHN:\nAy, marry, now my soul hath elbow-room;\nIt would not out at windows nor at doors.\nThere is so hot a summer in my bosom,\nThat all my bowels crumble up to dust:\nI am a scribbled form, drawn with a pen\nUpon a parchment, and against this fire\nDo I shrink up.\n\nPRINCE HENRY:\nHow fares your majesty?\n\nKING JOHN:\nPoison'd,--ill fare--dead, forsook, cast off:\nAnd none of you will bid the winter come\nTo thrust his icy fingers in my maw,\nNor let my kingdom's rivers take their course\nThrough my burn'd bosom, nor entreat the north\nTo make his bleak winds kiss my parched lips\nAnd comfort me with cold. I do not ask you much,\nI beg cold comfort; and you are so strait\nAnd so ingrateful, you deny me that.\n\nPRINCE HENRY:\nO that there were some virtue in my tears,\nThat might relieve you!\n\nKING JOHN:\nThe salt in them is hot.\nWithin me is a hell; and there the poison\nIs as a fiend confined to tyrannize\nOn unreprievable condemned blood.\n\nBASTARD:\nO, I am scalded with my violent motion,\nAnd spleen of speed to see your majesty!\n\nKING JOHN:\nO cousin, thou art come to set mine eye:\nThe tackle of my heart is crack'd and burn'd,\nAnd all the shrouds wherewith my life should sail\nAre turned to one thread, one little hair:\nMy heart hath one poor string to stay it by,\nWhich holds but till thy news be uttered;\nAnd then all this thou seest is but a clod\nAnd module of confounded royalty.\n\nBASTARD:\nThe Dauphin is preparing hitherward,\nWhere heaven He knows how we shall answer him;\nFor in a night the best part of my power,\nAs I upon advantage did remove,\nWere in the Washes all unwarily\nDevoured by the unexpected flood.\n\nSALISBURY:\nYou breathe these dead news in as dead an ear.\nMy liege! my lord! but now a king, now thus.\n\nPRINCE HENRY:\nEven so must I run on, and even so stop.\nWhat surety of the world, what hope, what stay,\nWhen this was now a king, and now is clay?\n\nBASTARD:\nArt thou gone so? I do but stay behind\nTo do the office for thee of revenge,\nAnd then my soul shall wait on thee to heaven,\nAs it on earth hath been thy servant still.\nNow, now, you stars that move in your right spheres,\nWhere be your powers? show now your mended faiths,\nAnd instantly return with me again,\nTo push destruction and perpetual shame\nOut of the weak door of our fainting land.\nStraight let us seek, or straight we shall be sought;\nThe Dauphin rages at our very heels.\n\nSALISBURY:\nIt seems you know not, then, so much as we:\nThe Cardinal Pandulph is within at rest,\nWho half an hour since came from the Dauphin,\nAnd brings from him such offers of our peace\nAs we with honour and respect may take,\nWith purpose presently to leave this war.\n\nBASTARD:\nHe will the rather do it when he sees\nOurselves well sinewed to our defence.\n\nSALISBURY:\nNay, it is in a manner done already;\nFor many carriages he hath dispatch'd\nTo the sea-side, and put his cause and quarrel\nTo the disposing of the cardinal:\nWith whom yourself, myself and other lords,\nIf you think meet, this afternoon will post\nTo consummate this business happily.\n\nBASTARD:\nLet it be so: and you, my noble prince,\nWith other princes that may best be spared,\nShall wait upon your father's funeral.\n\nPRINCE HENRY:\nAt Worcester must his body be interr'd;\nFor so he will'd it.\n\nBASTARD:\nThither shall it then:\nAnd happily may your sweet self put on\nThe lineal state and glory of the land!\nTo whom with all submission, on my knee\nI do bequeath my faithful services\nAnd true subjection everlastingly.\n\nSALISBURY:\nAnd the like tender of our love we make,\nTo rest without a spot for evermore.\n\nPRINCE HENRY:\nI have a kind soul that would give you thanks\nAnd knows not how to do it but with tears.\n\nBASTARD:\nO, let us pay the time but needful woe,\nSince it hath been beforehand with our griefs.\nThis England never did, nor never shall,\nLie at the proud foot of a conqueror,\nBut when it first did help to wound itself.\nNow these her princes are come home again,\nCome the three corners of the world in arms,\nAnd we shall shock them. Nought shall make us rue,\nIf England to itself do rest but true."
  },
  {
    "path": "ML/Projects/text_generation_babynames/data/shakespeare_tiny.txt",
    "content": "First Citizen:\nBefore we proceed any further, hear me speak.\n\nAll:\nSpeak, speak.\n\nFirst Citizen:\nYou are all resolved rather to die than to famish?\n\nAll:\nResolved. resolved.\n\nFirst Citizen:\nFirst, you know Caius Marcius is chief enemy to the people.\n\nAll:\nWe know't, we know't.\n\nFirst Citizen:\nLet us kill him, and we'll have corn at our own price.\nIs't a verdict?\n\nAll:\nNo more talking on't; let it be done: away, away!\n\nSecond Citizen:\nOne word, good citizens.\n\nFirst Citizen:\nWe are accounted poor citizens, the patricians good.\nWhat authority surfeits on would relieve us: if they\nwould yield us but the superfluity, while it were\nwholesome, we might guess they relieved us humanely;\nbut they think we are too dear: the leanness that\nafflicts us, the object of our misery, is as an\ninventory to particularise their abundance; our\nsufferance is a gain to them Let us revenge this with\nour pikes, ere we become rakes: for the gods know I\nspeak this in hunger for bread, not in thirst for revenge.\n\nSecond Citizen:\nWould you proceed especially against Caius Marcius?\n\nAll:\nAgainst him first: he's a very dog to the commonalty.\n\nSecond Citizen:\nConsider you what services he has done for his country?\n\nFirst Citizen:\nVery well; and could be content to give him good\nreport fort, but that he pays himself with being proud.\n\nSecond Citizen:\nNay, but speak not maliciously.\n\nFirst Citizen:\nI say unto you, what he hath done famously, he did\nit to that end: though soft-conscienced men can be\ncontent to say it was for his country he did it to\nplease his mother and to be partly proud; which he\nis, even till the altitude of his virtue.\n\nSecond Citizen:\nWhat he cannot help in his nature, you account a\nvice in him. You must in no way say he is covetous.\n\nFirst Citizen:\nIf I must not, I need not be barren of accusations;\nhe hath faults, with surplus, to tire in repetition.\nWhat shouts are these? The other side o' the city\nis risen: why stay we prating here? to the Capitol!\n\nAll:\nCome, come.\n\nFirst Citizen:\nSoft! who comes here?\n\nSecond Citizen:\nWorthy Menenius Agrippa; one that hath always loved\nthe people.\n\nFirst Citizen:\nHe's one honest enough: would all the rest were so!\n\nMENENIUS:\nWhat work's, my countrymen, in hand? where go you\nWith bats and clubs? The matter? speak, I pray you.\n\nFirst Citizen:\nOur business is not unknown to the senate; they have\nhad inkling this fortnight what we intend to do,\nwhich now we'll show 'em in deeds. They say poor\nsuitors have strong breaths: they shall know we\nhave strong arms too.\n\nMENENIUS:\nWhy, masters, my good friends, mine honest neighbours,\nWill you undo yourselves?\n\nFirst Citizen:\nWe cannot, sir, we are undone already.\n\nMENENIUS:\nI tell you, friends, most charitable care\nHave the patricians of you. For your wants,\nYour suffering in this dearth, you may as well\nStrike at the heaven with your staves as lift them\nAgainst the Roman state, whose course will on\nThe way it takes, cracking ten thousand curbs\nOf more strong link asunder than can ever\nAppear in your impediment. For the dearth,\nThe gods, not the patricians, make it, and\nYour knees to them, not arms, must help. Alack,\nYou are transported by calamity\nThither where more attends you, and you slander\nThe helms o' the state, who care for you like fathers,\nWhen you curse them as enemies.\n\nFirst Citizen:\nCare for us! True, indeed! They ne'er cared for us\nyet: suffer us to famish, and their store-houses\ncrammed with grain; make edicts for usury, to\nsupport usurers; repeal daily any wholesome act\nestablished against the rich, and provide more\npiercing statutes daily, to chain up and restrain\nthe poor. If the wars eat us not up, they will; and\nthere's all the love they bear us.\n\nMENENIUS:\nEither you must\nConfess yourselves wondrous malicious,\nOr be accused of folly. I shall tell you\nA pretty tale: it may be you have heard it;\nBut, since it serves my purpose, I will venture\nTo stale 't a little more.\n\nFirst Citizen:\nWell, I'll hear it, sir: yet you must not think to\nfob off our disgrace with a tale: but, an 't please\nyou, deliver.\n\nMENENIUS:\nThere was a time when all the body's members\nRebell'd against the belly, thus accused it:\nThat only like a gulf it did remain\nI' the midst o' the body, idle and unactive,\nStill cupboarding the viand, never bearing\nLike labour with the rest, where the other instruments\nDid see and hear, devise, instruct, walk, feel,\nAnd, mutually participate, did minister\nUnto the appetite and affection common\nOf the whole body. The belly answer'd--\n\nFirst Citizen:\nWell, sir, what answer made the belly?\n\nMENENIUS:\nSir, I shall tell you. With a kind of smile,\nWhich ne'er came from the lungs, but even thus--\nFor, look you, I may make the belly smile\nAs well as speak--it tauntingly replied\nTo the discontented members, the mutinous parts\nThat envied his receipt; even so most fitly\nAs you malign our senators for that\nThey are not such as you.\n\nFirst Citizen:\nYour belly's answer? What!\nThe kingly-crowned head, the vigilant eye,\nThe counsellor heart, the arm our soldier,\nOur steed the leg, the tongue our trumpeter.\nWith other muniments and petty helps\nIn this our fabric, if that they--\n\nMENENIUS:\nWhat then?\n'Fore me, this fellow speaks! What then? what then?\n\nFirst Citizen:\nShould by the cormorant belly be restrain'd,\nWho is the sink o' the body,--\n\nMENENIUS:\nWell, what then?\n\nFirst Citizen:\nThe former agents, if they did complain,\nWhat could the belly answer?\n\nMENENIUS:\nI will tell you\nIf you'll bestow a small--of what you have little--\nPatience awhile, you'll hear the belly's answer.\n\nFirst Citizen:\nYe're long about it.\n\nMENENIUS:\nNote me this, good friend;\nYour most grave belly was deliberate,\nNot rash like his accusers, and thus answer'd:\n'True is it, my incorporate friends,' quoth he,\n'That I receive the general food at first,\nWhich you do live upon; and fit it is,\nBecause I am the store-house and the shop\nOf the whole body: but, if you do remember,\nI send it through the rivers of your blood,\nEven to the court, the heart, to the seat o' the brain;\nAnd, through the cranks and offices of man,\nThe strongest nerves and small inferior veins\nFrom me receive that natural competency\nWhereby they live: and though that all at once,\nYou, my good friends,'--this says the belly, mark me,--\n\nFirst Citizen:\nAy, sir; well, well.\n\nMENENIUS:\n'Though all at once cannot\nSee what I do deliver out to each,\nYet I can make my audit up, that all\nFrom me do back receive the flour of all,\nAnd leave me but the bran.' What say you to't?\n\nFirst Citizen:\nIt was an answer: how apply you this?\n\nMENENIUS:\nThe senators of Rome are this good belly,\nAnd you the mutinous members; for examine\nTheir counsels and their cares, digest things rightly\nTouching the weal o' the common, you shall find\nNo public benefit which you receive\nBut it proceeds or comes from them to you\nAnd no way from yourselves. What do you think,\nYou, the great toe of this assembly?\n\nFirst Citizen:\nI the great toe! why the great toe?\n\nMENENIUS:\nFor that, being one o' the lowest, basest, poorest,\nOf this most wise rebellion, thou go'st foremost:\nThou rascal, that art worst in blood to run,\nLead'st first to win some vantage.\nBut make you ready your stiff bats and clubs:\nRome and her rats are at the point of battle;\nThe one side must have bale.\nHail, noble Marcius!\n\nMARCIUS:\nThanks. What's the matter, you dissentious rogues,\nThat, rubbing the poor itch of your opinion,\nMake yourselves scabs?\n\nFirst Citizen:\nWe have ever your good word.\n\nMARCIUS:\nHe that will give good words to thee will flatter\nBeneath abhorring. What would you have, you curs,\nThat like nor peace nor war? the one affrights you,\nThe other makes you proud. He that trusts to you,\nWhere he should find you lions, finds you hares;\nWhere foxes, geese: you are no surer, no,\nThan is the coal of fire upon the ice,\nOr hailstone in the sun. Your virtue is\nTo make him worthy whose offence subdues him\nAnd curse that justice did it.\nWho deserves greatness\nDeserves your hate; and your affections are\nA sick man's appetite, who desires most that\nWhich would increase his evil. He that depends\nUpon your favours swims with fins of lead\nAnd hews down oaks with rushes. Hang ye! Trust Ye?\nWith every minute you do change a mind,\nAnd call him noble that was now your hate,\nHim vile that was your garland. What's the matter,\nThat in these several places of the city\nYou cry against the noble senate, who,\nUnder the gods, keep you in awe, which else\nWould feed on one another? What's their seeking?\n\nMENENIUS:\nFor corn at their own rates; whereof, they say,\nThe city is well stored.\n\nMARCIUS:\nHang 'em! They say!\nThey'll sit by the fire, and presume to know\nWhat's done i' the Capitol; who's like to rise,\nWho thrives and who declines; side factions\nand give out\nConjectural marriages; making parties strong\nAnd feebling such as stand not in their liking\nBelow their cobbled shoes. They say there's\ngrain enough!\nWould the nobility lay aside their ruth,\nAnd let me use my sword, I'll make a quarry\nWith thousands of these quarter'd slaves, as high\nAs I could pick my lance.\n\nMENENIUS:\nNay, these are almost thoroughly persuaded;\nFor though abundantly they lack discretion,\nYet are they passing cowardly. But, I beseech you,\nWhat says the other troop?\n\nMARCIUS:\nThey are dissolved: hang 'em!\nThey said they were an-hungry; sigh'd forth proverbs,\nThat hunger broke stone walls, that dogs must eat,\nThat meat was made for mouths, that the gods sent not\nCorn for the rich men only: with these shreds\nThey vented their complainings; which being answer'd,\nAnd a petition granted them, a strange one--\nTo break the heart of generosity,\nAnd make bold power look pale--they threw their caps\nAs they would hang them on the horns o' the moon,\nShouting their emulation.\n\nMENENIUS:\nWhat is granted them?\n\nMARCIUS:\nFive tribunes to defend their vulgar wisdoms,\nOf their own choice: one's Junius Brutus,\nSicinius Velutus, and I know not--'Sdeath!\nThe rabble should have first unroof'd the city,\nEre so prevail'd with me: it will in time\nWin upon power and throw forth greater themes\nFor insurrection's arguing.\n\nMENENIUS:\nThis is strange.\n\nMARCIUS:\nGo, get you home, you fragments!\n\nMessenger:\nWhere's Caius Marcius?\n\nMARCIUS:\nHere: what's the matter?\n\nMessenger:\nThe news is, sir, the Volsces are in arms.\n\nMARCIUS:\nI am glad on 't: then we shall ha' means to vent\nOur musty superfluity. See, our best elders.\n\nFirst Senator:\nMarcius, 'tis true that you have lately told us;\nThe Volsces are in arms.\n\nMARCIUS:\nThey have a leader,\nTullus Aufidius, that will put you to 't.\nI sin in envying his nobility,\nAnd were I any thing but what I am,\nI would wish me only he.\n\nCOMINIUS:\nYou have fought together.\n\nMARCIUS:\nWere half to half the world by the ears and he.\nUpon my party, I'ld revolt to make\nOnly my wars with him: he is a lion\nThat I am proud to hunt.\n\nFirst Senator:\nThen, worthy Marcius,\nAttend upon Cominius to these wars.\n\nCOMINIUS:\nIt is your former promise.\n\nMARCIUS:\nSir, it is;\nAnd I am constant. Titus Lartius, thou\nShalt see me once more strike at Tullus' face.\nWhat, art thou stiff? stand'st out?\n\nTITUS:\nNo, Caius Marcius;\nI'll lean upon one crutch and fight with t'other,\nEre stay behind this business.\n\nMENENIUS:\nO, true-bred!\n\nFirst Senator:\nYour company to the Capitol; where, I know,\nOur greatest friends attend us.\n\nTITUS:\n\nCOMINIUS:\nNoble Marcius!\n\nFirst Senator:\n\nMARCIUS:\nNay, let them follow:\nThe Volsces have much corn; take these rats thither\nTo gnaw their garners. Worshipful mutiners,\nYour valour puts well forth: pray, follow.\n\nSICINIUS:\nWas ever man so proud as is this Marcius?\n\nBRUTUS:\nHe has no equal.\n\nSICINIUS:\nWhen we were chosen tribunes for the people,--\n\nBRUTUS:\nMark'd you his lip and eyes?\n\nSICINIUS:\nNay. but his taunts.\n\nBRUTUS:\nBeing moved, he will not spare to gird the gods.\n\nSICINIUS:\nBe-mock the modest moon.\n\nBRUTUS:\nThe present wars devour him: he is grown\nToo proud to be so valiant.\n\nSICINIUS:\nSuch a nature,\nTickled with good success, disdains the shadow\nWhich he treads on at noon: but I do wonder\nHis insolence can brook to be commanded\nUnder Cominius.\n\nBRUTUS:\nFame, at the which he aims,\nIn whom already he's well graced, can not\nBetter be held nor more attain'd than by\nA place below the first: for what miscarries\nShall be the general's fault, though he perform\nTo the utmost of a man, and giddy censure\nWill then cry out of Marcius 'O if he\nHad borne the business!'\n\nSICINIUS:\nBesides, if things go well,\nOpinion that so sticks on Marcius shall\nOf his demerits rob Cominius.\n\nBRUTUS:\nCome:\nHalf all Cominius' honours are to Marcius.\nThough Marcius earned them not, and all his faults\nTo Marcius shall be honours, though indeed\nIn aught he merit not.\n\nSICINIUS:\nLet's hence, and hear\nHow the dispatch is made, and in what fashion,\nMore than his singularity, he goes\nUpon this present action.\n\nBRUTUS:\nLets along.\n\nFirst Senator:\nSo, your opinion is, Aufidius,\nThat they of Rome are entered in our counsels\nAnd know how we proceed.\n\nAUFIDIUS:\nIs it not yours?\nWhat ever have been thought on in this state,\nThat could be brought to bodily act ere Rome\nHad circumvention? 'Tis not four days gone\nSince I heard thence; these are the words: I think\nI have the letter here; yes, here it is.\n'They have press'd a power, but it is not known\nWhether for east or west: the dearth is great;\nThe people mutinous; and it is rumour'd,\nCominius, Marcius your old enemy,\nWho is of Rome worse hated than of you,\nAnd Titus Lartius, a most valiant Roman,\nThese three lead on this preparation\nWhither 'tis bent: most likely 'tis for you:\nConsider of it.'\n\nFirst Senator:\nOur army's in the field\nWe never yet made doubt but Rome was ready\nTo answer us.\n\nAUFIDIUS:\nNor did you think it folly\nTo keep your great pretences veil'd till when\nThey needs must show themselves; which\nin the hatching,\nIt seem'd, appear'd to Rome. By the discovery.\nWe shall be shorten'd in our aim, which was\nTo take in many towns ere almost Rome\nShould know we were afoot.\n\nSecond Senator:\nNoble Aufidius,\nTake your commission; hie you to your bands:\nLet us alone to guard Corioli:\nIf they set down before 's, for the remove\nBring your army; but, I think, you'll find\nThey've not prepared for us.\n\nAUFIDIUS:\nO, doubt not that;\nI speak from certainties. Nay, more,\nSome parcels of their power are forth already,\nAnd only hitherward. I leave your honours.\nIf we and Caius Marcius chance to meet,\n'Tis sworn between us we shall ever strike\nTill one can do no more.\n\nAll:\nThe gods assist you!\n\nAUFIDIUS:\nAnd keep your honours safe!\n\nFirst Senator:\nFarewell.\n\nSecond Senator:\nFarewell.\n\nAll:\nFarewell.\n\nVOLUMNIA:\nI pray you, daughter, sing; or express yourself in a\nmore comfortable sort: if my son were my husband, I\nshould freelier rejoice in that absence wherein he\nwon honour than in the embracements of his bed where\nhe would show most love. When yet he was but\ntender-bodied and the only son of my womb, when\nyouth with comeliness plucked all gaze his way, when\nfor a day of kings' entreaties a mother should not\nsell him an hour from her beholding, I, considering\nhow honour would become such a person. that it was\nno better than picture-like to hang by the wall, if\nrenown made it not stir, was pleased to let him seek\ndanger where he was like to find fame. To a cruel\nwar I sent him; from whence he returned, his brows\nbound with oak. I tell thee, daughter, I sprang not\nmore in joy at first hearing he was a man-child\nthan now in first seeing he had proved himself a\nman.\n\nVIRGILIA:\nBut had he died in the business, madam; how then?\n\nVOLUMNIA:\nThen his good report should have been my son; I\ntherein would have found issue. Hear me profess\nsincerely: had I a dozen sons, each in my love\nalike and none less dear than thine and my good\nMarcius, I had rather had eleven die nobly for their\ncountry than one voluptuously surfeit out of action.\n\nGentlewoman:\nMadam, the Lady Valeria is come to visit you.\n\nVIRGILIA:\nBeseech you, give me leave to retire myself.\n\nVOLUMNIA:\nIndeed, you shall not.\nMethinks I hear hither your husband's drum,\nSee him pluck Aufidius down by the hair,\nAs children from a bear, the Volsces shunning him:\nMethinks I see him stamp thus, and call thus:\n'Come on, you cowards! you were got in fear,\nThough you were born in Rome:' his bloody brow\nWith his mail'd hand then wiping, forth he goes,\nLike to a harvest-man that's task'd to mow\nOr all or lose his hire.\n\nVIRGILIA:\nHis bloody brow! O Jupiter, no blood!\n\nVOLUMNIA:\nAway, you fool! it more becomes a man\nThan gilt his trophy: the breasts of Hecuba,\nWhen she did suckle Hector, look'd not lovelier\nThan Hector's forehead when it spit forth blood\nAt Grecian sword, contemning. Tell Valeria,\nWe are fit to bid her welcome.\n\nVIRGILIA:\nHeavens bless my lord from fell Aufidius!\n\nVOLUMNIA:\nHe'll beat Aufidius 'head below his knee\nAnd tread upon his neck.\n\nVALERIA:\nMy ladies both, good day to you.\n\nVOLUMNIA:\nSweet madam.\n\nVIRGILIA:\nI am glad to see your ladyship.\n\nVALERIA:\nHow do you both? you are manifest house-keepers.\nWhat are you sewing here? A fine spot, in good\nfaith. How does your little son?\n\nVIRGILIA:\nI thank your ladyship; well, good madam.\n\nVOLUMNIA:\nHe had rather see the swords, and hear a drum, than\nlook upon his school-master.\n\nVALERIA:\nO' my word, the father's son: I'll swear,'tis a\nvery pretty boy. O' my troth, I looked upon him o'\nWednesday half an hour together: has such a\nconfirmed countenance. I saw him run after a gilded\nbutterfly: and when he caught it, he let it go\nagain; and after it again; and over and over he\ncomes, and again; catched it again; or whether his\nfall enraged him, or how 'twas, he did so set his\nteeth and tear it; O, I warrant it, how he mammocked\nit!\n\nVOLUMNIA:\nOne on 's father's moods.\n\nVALERIA:\nIndeed, la, 'tis a noble child.\n\nVIRGILIA:\nA crack, madam.\n\nVALERIA:\nCome, lay aside your stitchery; I must have you play\nthe idle husewife with me this afternoon.\n\nVIRGILIA:\nNo, good madam; I will not out of doors.\n\nVALERIA:\nNot out of doors!\n\nVOLUMNIA:\nShe shall, she shall.\n\nVIRGILIA:\nIndeed, no, by your patience; I'll not over the\nthreshold till my lord return from the wars.\n\nVALERIA:\nFie, you confine yourself most unreasonably: come,\nyou must go visit the good lady that lies in.\n\nVIRGILIA:\nI will wish her speedy strength, and visit her with\nmy prayers; but I cannot go thither.\n\nVOLUMNIA:\nWhy, I pray you?\n\nVIRGILIA:\n'Tis not to save labour, nor that I want love.\n\nVALERIA:\nYou would be another Penelope: yet, they say, all\nthe yarn she spun in Ulysses' absence did but fill\nIthaca full of moths. Come; I would your cambric\nwere sensible as your finger, that you might leave\npricking it for pity. Come, you shall go with us.\n\nVIRGILIA:\nNo, good madam, pardon me; indeed, I will not forth.\n\nVALERIA:\nIn truth, la, go with me; and I'll tell you\nexcellent news of your husband.\n\nVIRGILIA:\nO, good madam, there can be none yet.\n\nVALERIA:\nVerily, I do not jest with you; there came news from\nhim last night.\n\nVIRGILIA:\nIndeed, madam?\n\nVALERIA:\nIn earnest, it's true; I heard a senator speak it.\nThus it is: the Volsces have an army forth; against\nwhom Cominius the general is gone, with one part of\nour Roman power: your lord and Titus Lartius are set\ndown before their city Corioli; they nothing doubt\nprevailing and to make it brief wars. This is true,\non mine honour; and so, I pray, go with us.\n\nVIRGILIA:\nGive me excuse, good madam; I will obey you in every\nthing hereafter.\n\nVOLUMNIA:\nLet her alone, lady: as she is now, she will but\ndisease our better mirth.\n\nVALERIA:\nIn troth, I think she would. Fare you well, then.\nCome, good sweet lady. Prithee, Virgilia, turn thy\nsolemness out o' door. and go along with us.\n\nVIRGILIA:\nNo, at a word, madam; indeed, I must not. I wish\nyou much mirth.\n\nVALERIA:\nWell, then, farewell.\n\nMARCIUS:\nYonder comes news. A wager they have met.\n\nLARTIUS:\nMy horse to yours, no.\n\nMARCIUS:\n'Tis done.\n\nLARTIUS:\nAgreed.\n\nMARCIUS:\nSay, has our general met the enemy?\n\nMessenger:\nThey lie in view; but have not spoke as yet.\n\nLARTIUS:\nSo, the good horse is mine.\n\nMARCIUS:\nI'll buy him of you.\n\nLARTIUS:\nNo, I'll nor sell nor give him: lend you him I will\nFor half a hundred years. Summon the town.\n\nMARCIUS:\nHow far off lie these armies?\n\nMessenger:\nWithin this mile and half.\n\nMARCIUS:\nThen shall we hear their 'larum, and they ours.\nNow, Mars, I prithee, make us quick in work,\nThat we with smoking swords may march from hence,\nTo help our fielded friends! Come, blow thy blast.\nTutus Aufidius, is he within your walls?\n\nFirst Senator:\nNo, nor a man that fears you less than he,\nThat's lesser than a little.\nHark! our drums\nAre bringing forth our youth. We'll break our walls,\nRather than they shall pound us up: our gates,\nWhich yet seem shut, we, have but pinn'd with rushes;\nThey'll open of themselves.\nHark you. far off!\nThere is Aufidius; list, what work he makes\nAmongst your cloven army.\n\nMARCIUS:\nO, they are at it!\n\nLARTIUS:\nTheir noise be our instruction. Ladders, ho!\n\nMARCIUS:\nThey fear us not, but issue forth their city.\nNow put your shields before your hearts, and fight\nWith hearts more proof than shields. Advance,\nbrave Titus:\nThey do disdain us much beyond our thoughts,\nWhich makes me sweat with wrath. Come on, my fellows:\nHe that retires I'll take him for a Volsce,\nAnd he shall feel mine edge.\n\nMARCIUS:\nAll the contagion of the south light on you,\nYou shames of Rome! you herd of--Boils and plagues\nPlaster you o'er, that you may be abhorr'd\nFurther than seen and one infect another\nAgainst the wind a mile! You souls of geese,\nThat bear the shapes of men, how have you run\nFrom slaves that apes would beat! Pluto and hell!\nAll hurt behind; backs red, and faces pale\nWith flight and agued fear! Mend and charge home,\nOr, by the fires of heaven, I'll leave the foe\nAnd make my wars on you: look to't: come on;\nIf you'll stand fast, we'll beat them to their wives,\nAs they us to our trenches followed.\nSo, now the gates are ope: now prove good seconds:\n'Tis for the followers fortune widens them,\nNot for the fliers: mark me, and do the like.\n\nFirst Soldier:\nFool-hardiness; not I.\n\nSecond Soldier:\nNor I.\n\nFirst Soldier:\nSee, they have shut him in.\n\nAll:\nTo the pot, I warrant him.\n\nLARTIUS:\nWhat is become of Marcius?\n\nAll:\nSlain, sir, doubtless.\n\nFirst Soldier:\nFollowing the fliers at the very heels,\nWith them he enters; who, upon the sudden,\nClapp'd to their gates: he is himself alone,\nTo answer all the city.\n\nLARTIUS:\nO noble fellow!\nWho sensibly outdares his senseless sword,\nAnd, when it bows, stands up. Thou art left, Marcius:\nA carbuncle entire, as big as thou art,\nWere not so rich a jewel. Thou wast a soldier\nEven to Cato's wish, not fierce and terrible\nOnly in strokes; but, with thy grim looks and\nThe thunder-like percussion of thy sounds,\nThou madst thine enemies shake, as if the world\nWere feverous and did tremble.\n\nFirst Soldier:\nLook, sir.\n\nLARTIUS:\nO,'tis Marcius!\nLet's fetch him off, or make remain alike.\n\nFirst Roman:\nThis will I carry to Rome.\n\nSecond Roman:\nAnd I this.\n\nThird Roman:\nA murrain on't! I took this for silver.\n\nMARCIUS:\nSee here these movers that do prize their hours\nAt a crack'd drachm! Cushions, leaden spoons,\nIrons of a doit, doublets that hangmen would\nBury with those that wore them, these base slaves,\nEre yet the fight be done, pack up: down with them!\nAnd hark, what noise the general makes! To him!\nThere is the man of my soul's hate, Aufidius,\nPiercing our Romans: then, valiant Titus, take\nConvenient numbers to make good the city;\nWhilst I, with those that have the spirit, will haste\nTo help Cominius.\n\nLARTIUS:\nWorthy sir, thou bleed'st;\nThy exercise hath been too violent for\nA second course of fight.\n\nMARCIUS:\nSir, praise me not;\nMy work hath yet not warm'd me: fare you well:\nThe blood I drop is rather physical\nThan dangerous to me: to Aufidius thus\nI will appear, and fight.\n\nLARTIUS:\nNow the fair goddess, Fortune,\nFall deep in love with thee; and her great charms\nMisguide thy opposers' swords! Bold gentleman,\nProsperity be thy page!\n\nMARCIUS:\nThy friend no less\nThan those she placeth highest! So, farewell.\n\nLARTIUS:\nThou worthiest Marcius!\nGo, sound thy trumpet in the market-place;\nCall thither all the officers o' the town,\nWhere they shall know our mind: away!\n\nCOMINIUS:\nBreathe you, my friends: well fought;\nwe are come off\nLike Romans, neither foolish in our stands,\nNor cowardly in retire: believe me, sirs,\nWe shall be charged again. Whiles we have struck,\nBy interims and conveying gusts we have heard\nThe charges of our friends. Ye Roman gods!\nLead their successes as we wish our own,\nThat both our powers, with smiling\nfronts encountering,\nMay give you thankful sacrifice.\nThy news?\n\nMessenger:\nThe citizens of Corioli have issued,\nAnd given to Lartius and to Marcius battle:\nI saw our party to their trenches driven,\nAnd then I came away.\n\nCOMINIUS:\nThough thou speak'st truth,\nMethinks thou speak'st not well.\nHow long is't since?\n\nMessenger:\nAbove an hour, my lord.\n\nCOMINIUS:\n'Tis not a mile; briefly we heard their drums:\nHow couldst thou in a mile confound an hour,\nAnd bring thy news so late?\n\nMessenger:\nSpies of the Volsces\nHeld me in chase, that I was forced to wheel\nThree or four miles about, else had I, sir,\nHalf an hour since brought my report.\n\nCOMINIUS:\nWho's yonder,\nThat does appear as he were flay'd? O gods\nHe has the stamp of Marcius; and I have\nBefore-time seen him thus.\n\nMARCIUS:\n\nCOMINIUS:\nThe shepherd knows not thunder from a tabour\nMore than I know the sound of Marcius' tongue\nFrom every meaner man.\n\nMARCIUS:\nCome I too late?\n\nCOMINIUS:\nAy, if you come not in the blood of others,\nBut mantled in your own.\n\nMARCIUS:\nO, let me clip ye\nIn arms as sound as when I woo'd, in heart\nAs merry as when our nuptial day was done,\nAnd tapers burn'd to bedward!\n\nCOMINIUS:\nFlower of warriors,\nHow is it with Titus Lartius?\n\nMARCIUS:\nAs with a man busied about decrees:\nCondemning some to death, and some to exile;\nRansoming him, or pitying, threatening the other;\nHolding Corioli in the name of Rome,\nEven like a fawning greyhound in the leash,\nTo let him slip at will.\n\nCOMINIUS:\nWhere is that slave\nWhich told me they had beat you to your trenches?\nWhere is he? call him hither.\n\nMARCIUS:\nLet him alone;\nHe did inform the truth: but for our gentlemen,\nThe common file--a plague! tribunes for them!--\nThe mouse ne'er shunn'd the cat as they did budge\nFrom rascals worse than they.\n\nCOMINIUS:\nBut how prevail'd you?\n\nMARCIUS:\nWill the time serve to tell? I do not think.\nWhere is the enemy? are you lords o' the field?\nIf not, why cease you till you are so?\n\nCOMINIUS:\nMarcius,\nWe have at disadvantage fought and did\nRetire to win our purpose.\n\nMARCIUS:\nHow lies their battle? know you on which side\nThey have placed their men of trust?\n\nCOMINIUS:\nAs I guess, Marcius,\nTheir bands i' the vaward are the Antiates,\nOf their best trust; o'er them Aufidius,\nTheir very heart of hope.\n\nMARCIUS:\nI do beseech you,\nBy all the battles wherein we have fought,\nBy the blood we have shed together, by the vows\nWe have made to endure friends, that you directly\nSet me against Aufidius and his Antiates;\nAnd that you not delay the present, but,\nFilling the air with swords advanced and darts,\nWe prove this very hour.\n\nCOMINIUS:\nThough I could wish\nYou were conducted to a gentle bath\nAnd balms applied to, you, yet dare I never\nDeny your asking: take your choice of those\nThat best can aid your action.\n\nMARCIUS:\nThose are they\nThat most are willing. If any such be here--\nAs it were sin to doubt--that love this painting\nWherein you see me smear'd; if any fear\nLesser his person than an ill report;\nIf any think brave death outweighs bad life\nAnd that his country's dearer than himself;\nLet him alone, or so many so minded,\nWave thus, to express his disposition,\nAnd follow Marcius.\nO, me alone! make you a sword of me?\nIf these shows be not outward, which of you\nBut is four Volsces? none of you but is\nAble to bear against the great Aufidius\nA shield as hard as his. A certain number,\nThough thanks to all, must I select\nfrom all: the rest\nShall bear the business in some other fight,\nAs cause will be obey'd. Please you to march;\nAnd four shall quickly draw out my command,\nWhich men are best inclined.\n\nCOMINIUS:\nMarch on, my fellows:\nMake good this ostentation, and you shall\nDivide in all with us.\n\nLARTIUS:\nSo, let the ports be guarded: keep your duties,\nAs I have set them down. If I do send, dispatch\nThose centuries to our aid: the rest will serve\nFor a short holding: if we lose the field,\nWe cannot keep the town.\n\nLieutenant:\nFear not our care, sir.\n\nLARTIUS:\nHence, and shut your gates upon's.\nOur guider, come; to the Roman camp conduct us.\n\nMARCIUS:\nI'll fight with none but thee; for I do hate thee\nWorse than a promise-breaker.\n\nAUFIDIUS:\nWe hate alike:\nNot Afric owns a serpent I abhor\nMore than thy fame and envy. Fix thy foot.\n\nMARCIUS:\nLet the first budger die the other's slave,\nAnd the gods doom him after!\n\nAUFIDIUS:\nIf I fly, Marcius,\nHolloa me like a hare.\n\nMARCIUS:\nWithin these three hours, Tullus,\nAlone I fought in your Corioli walls,\nAnd made what work I pleased: 'tis not my blood\nWherein thou seest me mask'd; for thy revenge\nWrench up thy power to the highest.\n\nAUFIDIUS:\nWert thou the Hector\nThat was the whip of your bragg'd progeny,\nThou shouldst not scape me here.\nOfficious, and not valiant, you have shamed me\nIn your condemned seconds.\n\nCOMINIUS:\nIf I should tell thee o'er this thy day's work,\nThou'ldst not believe thy deeds: but I'll report it\nWhere senators shall mingle tears with smiles,\nWhere great patricians shall attend and shrug,\nI' the end admire, where ladies shall be frighted,\nAnd, gladly quaked, hear more; where the\ndull tribunes,\nThat, with the fusty plebeians, hate thine honours,\nShall say against their hearts 'We thank the gods\nOur Rome hath such a soldier.'\nYet camest thou to a morsel of this feast,\nHaving fully dined before.\n\nLARTIUS:\nO general,\nHere is the steed, we the caparison:\nHadst thou beheld--\n\nMARCIUS:\nPray now, no more: my mother,\nWho has a charter to extol her blood,\nWhen she does praise me grieves me. I have done\nAs you have done; that's what I can; induced\nAs you have been; that's for my country:\nHe that has but effected his good will\nHath overta'en mine act.\n\nCOMINIUS:\nYou shall not be\nThe grave of your deserving; Rome must know\nThe value of her own: 'twere a concealment\nWorse than a theft, no less than a traducement,\nTo hide your doings; and to silence that,\nWhich, to the spire and top of praises vouch'd,\nWould seem but modest: therefore, I beseech you\nIn sign of what you are, not to reward\nWhat you have done--before our army hear me.\n\nMARCIUS:\nI have some wounds upon me, and they smart\nTo hear themselves remember'd.\n\nCOMINIUS:\nShould they not,\nWell might they fester 'gainst ingratitude,\nAnd tent themselves with death. Of all the horses,\nWhereof we have ta'en good and good store, of all\nThe treasure in this field achieved and city,\nWe render you the tenth, to be ta'en forth,\nBefore the common distribution, at\nYour only choice.\n\nMARCIUS:\nI thank you, general;\nBut cannot make my heart consent to take\nA bribe to pay my sword: I do refuse it;\nAnd stand upon my common part with those\nThat have beheld the doing.\n\nMARCIUS:\nMay these same instruments, which you profane,\nNever sound more! when drums and trumpets shall\nI' the field prove flatterers, let courts and cities be\nMade all of false-faced soothing!\nWhen steel grows soft as the parasite's silk,\nLet him be made a coverture for the wars!\nNo more, I say! For that I have not wash'd\nMy nose that bled, or foil'd some debile wretch.--\nWhich, without note, here's many else have done,--\nYou shout me forth\nIn acclamations hyperbolical;\nAs if I loved my little should be dieted\nIn praises sauced with lies.\n\nCOMINIUS:\nToo modest are you;\nMore cruel to your good report than grateful\nTo us that give you truly: by your patience,\nIf 'gainst yourself you be incensed, we'll put you,\nLike one that means his proper harm, in manacles,\nThen reason safely with you. Therefore, be it known,\nAs to us, to all the world, that Caius Marcius\nWears this war's garland: in token of the which,\nMy noble steed, known to the camp, I give him,\nWith all his trim belonging; and from this time,\nFor what he did before Corioli, call him,\nWith all the applause and clamour of the host,\nCAIUS MARCIUS CORIOLANUS! Bear\nThe addition nobly ever!\n\nAll:\nCaius Marcius Coriolanus!\n\nCORIOLANUS:\nI will go wash;\nAnd when my face is fair, you shall perceive\nWhether I blush or no: howbeit, I thank you.\nI mean to stride your steed, and at all times\nTo undercrest your good addition\nTo the fairness of my power.\n\nCOMINIUS:\nSo, to our tent;\nWhere, ere we do repose us, we will write\nTo Rome of our success. You, Titus Lartius,\nMust to Corioli back: send us to Rome\nThe best, with whom we may articulate,\nFor their own good and ours.\n\nLARTIUS:\nI shall, my lord.\n\nCORIOLANUS:\nThe gods begin to mock me. I, that now\nRefused most princely gifts, am bound to beg\nOf my lord general.\n\nCOMINIUS:\nTake't; 'tis yours. What is't?\n\nCORIOLANUS:\nI sometime lay here in Corioli\nAt a poor man's house; he used me kindly:\nHe cried to me; I saw him prisoner;\nBut then Aufidius was within my view,\nAnd wrath o'erwhelm'd my pity: I request you\nTo give my poor host freedom.\n\nCOMINIUS:\nO, well begg'd!\nWere he the butcher of my son, he should\nBe free as is the wind. Deliver him, Titus.\n\nLARTIUS:\nMarcius, his name?\n\nCORIOLANUS:\nBy Jupiter! forgot.\nI am weary; yea, my memory is tired.\nHave we no wine here?\n\nCOMINIUS:\nGo we to our tent:\nThe blood upon your visage dries; 'tis time\nIt should be look'd to: come.\n\nAUFIDIUS:\nThe town is ta'en!\n\nFirst Soldier:\n'Twill be deliver'd back on good condition.\n\nAUFIDIUS:\nCondition!\nI would I were a Roman; for I cannot,\nBeing a Volsce, be that I am. Condition!\nWhat good condition can a treaty find\nI' the part that is at mercy? Five times, Marcius,\nI have fought with thee: so often hast thou beat me,\nAnd wouldst do so, I think, should we encounter\nAs often as we eat. By the elements,\nIf e'er again I meet him beard to beard,\nHe's mine, or I am his: mine emulation\nHath not that honour in't it had; for where\nI thought to crush him in an equal force,\nTrue sword to sword, I'll potch at him some way\nOr wrath or craft may get him.\n\nFirst Soldier:\nHe's the devil.\n\nAUFIDIUS:\nBolder, though not so subtle. My valour's poison'd\nWith only suffering stain by him; for him\nShall fly out of itself: nor sleep nor sanctuary,\nBeing naked, sick, nor fane nor Capitol,\nThe prayers of priests nor times of sacrifice,\nEmbarquements all of fury, shall lift up\nTheir rotten privilege and custom 'gainst\nMy hate to Marcius: where I find him, were it\nAt home, upon my brother's guard, even there,\nAgainst the hospitable canon, would I\nWash my fierce hand in's heart. Go you to the city;\nLearn how 'tis held; and what they are that must\nBe hostages for Rome.\n\nFirst Soldier:\nWill not you go?\n\nAUFIDIUS:\nI am attended at the cypress grove: I pray you--\n'Tis south the city mills--bring me word thither\nHow the world goes, that to the pace of it\nI may spur on my journey.\n\nFirst Soldier:\nI shall, sir.\n\nMENENIUS:\nThe augurer tells me we shall have news to-night.\n\nBRUTUS:\nGood or bad?\n\nMENENIUS:\nNot according to the prayer of the people, for they\nlove not Marcius.\n\nSICINIUS:\nNature teaches beasts to know their friends.\n\nMENENIUS:\nPray you, who does the wolf love?\n\nSICINIUS:\nThe lamb.\n\nMENENIUS:\nAy, to devour him; as the hungry plebeians would the\nnoble Marcius.\n\nBRUTUS:\nHe's a lamb indeed, that baes like a bear.\n\nMENENIUS:\nHe's a bear indeed, that lives like a lamb. You two\nare old men: tell me one thing that I shall ask you.\n\nBoth:\nWell, sir.\n\nMENENIUS:\nIn what enormity is Marcius poor in, that you two\nhave not in abundance?\n\nBRUTUS:\nHe's poor in no one fault, but stored with all.\n\nSICINIUS:\nEspecially in pride.\n\nBRUTUS:\nAnd topping all others in boasting.\n\nMENENIUS:\nThis is strange now: do you two know how you are\ncensured here in the city, I mean of us o' the\nright-hand file? do you?\n\nBoth:\nWhy, how are we censured?\n\nMENENIUS:\nBecause you talk of pride now,--will you not be angry?\n\nBoth:\nWell, well, sir, well.\n\nMENENIUS:\nWhy, 'tis no great matter; for a very little thief of\noccasion will rob you of a great deal of patience:\ngive your dispositions the reins, and be angry at\nyour pleasures; at the least if you take it as a\npleasure to you in being so. You blame Marcius for\nbeing proud?\n\nBRUTUS:\nWe do it not alone, sir.\n\nMENENIUS:\nI know you can do very little alone; for your helps\nare many, or else your actions would grow wondrous\nsingle: your abilities are too infant-like for\ndoing much alone. You talk of pride: O that you\ncould turn your eyes toward the napes of your necks,\nand make but an interior survey of your good selves!\nO that you could!\n\nBRUTUS:\nWhat then, sir?\n\nMENENIUS:\nWhy, then you should discover a brace of unmeriting,\nproud, violent, testy magistrates, alias fools, as\nany in Rome.\n\nSICINIUS:\nMenenius, you are known well enough too.\n\nMENENIUS:\nI am known to be a humorous patrician, and one that\nloves a cup of hot wine with not a drop of allaying\nTiber in't; said to be something imperfect in\nfavouring the first complaint; hasty and tinder-like\nupon too trivial motion; one that converses more\nwith the buttock of the night than with the forehead\nof the morning: what I think I utter, and spend my\nmalice in my breath. Meeting two such wealsmen as\nyou are--I cannot call you Lycurguses--if the drink\nyou give me touch my palate adversely, I make a\ncrooked face at it. I can't say your worships have\ndelivered the matter well, when I find the ass in\ncompound with the major part of your syllables: and\nthough I must be content to bear with those that say\nyou are reverend grave men, yet they lie deadly that\ntell you you have good faces. If you see this in\nthe map of my microcosm, follows it that I am known\nwell enough too? what barm can your bisson\nconspectuities glean out of this character, if I be\nknown well enough too?\n\nBRUTUS:\nCome, sir, come, we know you well enough.\n\nMENENIUS:\nYou know neither me, yourselves nor any thing. You\nare ambitious for poor knaves' caps and legs: you\nwear out a good wholesome forenoon in hearing a\ncause between an orange wife and a fosset-seller;\nand then rejourn the controversy of three pence to a\nsecond day of audience. When you are hearing a\nmatter between party and party, if you chance to be\npinched with the colic, you make faces like\nmummers; set up the bloody flag against all\npatience; and, in roaring for a chamber-pot,\ndismiss the controversy bleeding the more entangled\nby your hearing: all the peace you make in their\ncause is, calling both the parties knaves. You are\na pair of strange ones.\n\nBRUTUS:\nCome, come, you are well understood to be a\nperfecter giber for the table than a necessary\nbencher in the Capitol.\n\nMENENIUS:\nOur very priests must become mockers, if they shall\nencounter such ridiculous subjects as you are. When\nyou speak best unto the purpose, it is not worth the\nwagging of your beards; and your beards deserve not\nso honourable a grave as to stuff a botcher's\ncushion, or to be entombed in an ass's pack-\nsaddle. Yet you must be saying, Marcius is proud;\nwho in a cheap estimation, is worth predecessors\nsince Deucalion, though peradventure some of the\nbest of 'em were hereditary hangmen. God-den to\nyour worships: more of your conversation would\ninfect my brain, being the herdsmen of the beastly\nplebeians: I will be bold to take my leave of you.\nHow now, my as fair as noble ladies,--and the moon,\nwere she earthly, no nobler,--whither do you follow\nyour eyes so fast?\n\nVOLUMNIA:\nHonourable Menenius, my boy Marcius approaches; for\nthe love of Juno, let's go.\n\nMENENIUS:\nHa! Marcius coming home!\n\nVOLUMNIA:\nAy, worthy Menenius; and with most prosperous\napprobation.\n\nMENENIUS:\nTake my cap, Jupiter, and I thank thee. Hoo!\nMarcius coming home!\n\nVOLUMNIA:\nNay,'tis true.\n\nVOLUMNIA:\nLook, here's a letter from him: the state hath\nanother, his wife another; and, I think, there's one\nat home for you.\n\nMENENIUS:\nI will make my very house reel tonight: a letter for\nme!\n\nVIRGILIA:\nYes, certain, there's a letter for you; I saw't.\n\nMENENIUS:\nA letter for me! it gives me an estate of seven\nyears' health; in which time I will make a lip at\nthe physician: the most sovereign prescription in\nGalen is but empiricutic, and, to this preservative,\nof no better report than a horse-drench. Is he\nnot wounded? he was wont to come home wounded.\n\nVIRGILIA:\nO, no, no, no.\n\nVOLUMNIA:\nO, he is wounded; I thank the gods for't.\n\nMENENIUS:\nSo do I too, if it be not too much: brings a'\nvictory in his pocket? the wounds become him.\n\nVOLUMNIA:\nOn's brows: Menenius, he comes the third time home\nwith the oaken garland.\n\nMENENIUS:\nHas he disciplined Aufidius soundly?\n\nVOLUMNIA:\nTitus Lartius writes, they fought together, but\nAufidius got off.\n\nMENENIUS:\nAnd 'twas time for him too, I'll warrant him that:\nan he had stayed by him, I would not have been so\nfidiused for all the chests in Corioli, and the gold\nthat's in them. Is the senate possessed of this?\n\nVOLUMNIA:\nGood ladies, let's go. Yes, yes, yes; the senate\nhas letters from the general, wherein he gives my\nson the whole name of the war: he hath in this\naction outdone his former deeds doubly\n\nVALERIA:\nIn troth, there's wondrous things spoke of him.\n\nMENENIUS:\nWondrous! ay, I warrant you, and not without his\ntrue purchasing.\n\nVIRGILIA:\nThe gods grant them true!\n\nVOLUMNIA:\nTrue! pow, wow.\n\nMENENIUS:\nTrue! I'll be sworn they are true.\nWhere is he wounded?\nGod save your good worships! Marcius is coming\nhome: he has more cause to be proud. Where is he wounded?\n\nVOLUMNIA:\nI' the shoulder and i' the left arm there will be\nlarge cicatrices to show the people, when he shall\nstand for his place. He received in the repulse of\nTarquin seven hurts i' the body.\n\nMENENIUS:\nOne i' the neck, and two i' the thigh,--there's\nnine that I know.\n\nVOLUMNIA:\nHe had, before this last expedition, twenty-five\nwounds upon him.\n\nMENENIUS:\nNow it's twenty-seven: every gash was an enemy's grave.\nHark! the trumpets.\n\nVOLUMNIA:\nThese are the ushers of Marcius: before him he\ncarries noise, and behind him he leaves tears:\nDeath, that dark spirit, in 's nervy arm doth lie;\nWhich, being advanced, declines, and then men die.\n\nHerald:\nKnow, Rome, that all alone Marcius did fight\nWithin Corioli gates: where he hath won,\nWith fame, a name to Caius Marcius; these\nIn honour follows Coriolanus.\nWelcome to Rome, renowned Coriolanus!\n\nAll:\nWelcome to Rome, renowned Coriolanus!\n\nCORIOLANUS:\nNo more of this; it does offend my heart:\nPray now, no more.\n\nCOMINIUS:\nLook, sir, your mother!\n\nCORIOLANUS:\nO,\nYou have, I know, petition'd all the gods\nFor my prosperity!\n\nVOLUMNIA:\nNay, my good soldier, up;\nMy gentle Marcius, worthy Caius, and\nBy deed-achieving honour newly named,--\nWhat is it?--Coriolanus must I call thee?--\nBut O, thy wife!\n\nCORIOLANUS:\nMy gracious silence, hail!\nWouldst thou have laugh'd had I come coffin'd home,\nThat weep'st to see me triumph? Ay, my dear,\nSuch eyes the widows in Corioli wear,\nAnd mothers that lack sons.\n\nMENENIUS:\nNow, the gods crown thee!\n\nCORIOLANUS:\nAnd live you yet?\nO my sweet lady, pardon.\n\nVOLUMNIA:\nI know not where to turn: O, welcome home:\nAnd welcome, general: and ye're welcome all.\n\nMENENIUS:\nA hundred thousand welcomes. I could weep\nAnd I could laugh, I am light and heavy. Welcome.\nA curse begin at very root on's heart,\nThat is not glad to see thee! You are three\nThat Rome should dote on: yet, by the faith of men,\nWe have some old crab-trees here\nat home that will not\nBe grafted to your relish. Yet welcome, warriors:\nWe call a nettle but a nettle and\nThe faults of fools but folly.\n\nCOMINIUS:\nEver right.\n\nCORIOLANUS:\nMenenius ever, ever.\n\nHerald:\nGive way there, and go on!\n\nCORIOLANUS:\n\nVOLUMNIA:\nI have lived\nTo see inherited my very wishes\nAnd the buildings of my fancy: only\nThere's one thing wanting, which I doubt not but\nOur Rome will cast upon thee.\n\nCORIOLANUS:\nKnow, good mother,\nI had rather be their servant in my way,\nThan sway with them in theirs.\n\nCOMINIUS:\nOn, to the Capitol!\n\nBRUTUS:\nAll tongues speak of him, and the bleared sights\nAre spectacled to see him: your prattling nurse\nInto a rapture lets her baby cry\nWhile she chats him: the kitchen malkin pins\nHer richest lockram 'bout her reechy neck,\nClambering the walls to eye him: stalls, bulks, windows,\nAre smother'd up, leads fill'd, and ridges horsed\nWith variable complexions, all agreeing\nIn earnestness to see him: seld-shown flamens\nDo press among the popular throngs and puff\nTo win a vulgar station: or veil'd dames\nCommit the war of white and damask in\nTheir nicely-gawded cheeks to the wanton spoil\nOf Phoebus' burning kisses: such a pother\nAs if that whatsoever god who leads him\nWere slily crept into his human powers\nAnd gave him graceful posture.\n\nSICINIUS:\nOn the sudden,\nI warrant him consul.\n\nBRUTUS:\nThen our office may,\nDuring his power, go sleep.\n\nSICINIUS:\nHe cannot temperately transport his honours\nFrom where he should begin and end, but will\nLose those he hath won.\n\nBRUTUS:\nIn that there's comfort.\n\nSICINIUS:\nDoubt not\nThe commoners, for whom we stand, but they\nUpon their ancient malice will forget\nWith the least cause these his new honours, which\nThat he will give them make I as little question\nAs he is proud to do't.\n\nBRUTUS:\nI heard him swear,\nWere he to stand for consul, never would he\nAppear i' the market-place nor on him put\nThe napless vesture of humility;\nNor showing, as the manner is, his wounds\nTo the people, beg their stinking breaths.\n\nSICINIUS:\n'Tis right.\n\nBRUTUS:\nIt was his word: O, he would miss it rather\nThan carry it but by the suit of the gentry to him,\nAnd the desire of the nobles.\n\nSICINIUS:\nI wish no better\nThan have him hold that purpose and to put it\nIn execution.\n\nBRUTUS:\n'Tis most like he will.\n\nSICINIUS:\nIt shall be to him then as our good wills,\nA sure destruction.\n\nBRUTUS:\nSo it must fall out\nTo him or our authorities. For an end,\nWe must suggest the people in what hatred\nHe still hath held them; that to's power he would\nHave made them mules, silenced their pleaders and\nDispropertied their freedoms, holding them,\nIn human action and capacity,\nOf no more soul nor fitness for the world\nThan camels in the war, who have their provand\nOnly for bearing burdens, and sore blows\nFor sinking under them.\n\nSICINIUS:\nThis, as you say, suggested\nAt some time when his soaring insolence\nShall touch the people--which time shall not want,\nIf he be put upon 't; and that's as easy\nAs to set dogs on sheep--will be his fire\nTo kindle their dry stubble; and their blaze\nShall darken him for ever.\n\nBRUTUS:\nWhat's the matter?\n\nMessenger:\nYou are sent for to the Capitol. 'Tis thought\nThat Marcius shall be consul:\nI have seen the dumb men throng to see him and\nThe blind to bear him speak: matrons flung gloves,\nLadies and maids their scarfs and handkerchers,\nUpon him as he pass'd: the nobles bended,\nAs to Jove's statue, and the commons made\nA shower and thunder with their caps and shouts:\nI never saw the like.\n\nBRUTUS:\nLet's to the Capitol;\nAnd carry with us ears and eyes for the time,\nBut hearts for the event.\n\nSICINIUS:\nHave with you.\n\nFirst Officer:\nCome, come, they are almost here. How many stand\nfor consulships?\n\nSecond Officer:\nThree, they say: but 'tis thought of every one\nCoriolanus will carry it.\n\nFirst Officer:\nThat's a brave fellow; but he's vengeance proud, and\nloves not the common people.\n\nSecond Officer:\nFaith, there had been many great men that have\nflattered the people, who ne'er loved them; and there\nbe many that they have loved, they know not\nwherefore: so that, if they love they know not why,\nthey hate upon no better a ground: therefore, for\nCoriolanus neither to care whether they love or hate\nhim manifests the true knowledge he has in their\ndisposition; and out of his noble carelessness lets\nthem plainly see't.\n\nFirst Officer:\nIf he did not care whether he had their love or no,\nhe waved indifferently 'twixt doing them neither\ngood nor harm: but he seeks their hate with greater\ndevotion than can render it him; and leaves\nnothing undone that may fully discover him their\nopposite. Now, to seem to affect the malice and\ndispleasure of the people is as bad as that which he\ndislikes, to flatter them for their love.\n\nSecond Officer:\nHe hath deserved worthily of his country: and his\nascent is not by such easy degrees as those who,\nhaving been supple and courteous to the people,\nbonneted, without any further deed to have them at\nan into their estimation and report: but he hath so\nplanted his honours in their eyes, and his actions\nin their hearts, that for their tongues to be\nsilent, and not confess so much, were a kind of\ningrateful injury; to report otherwise, were a\nmalice, that, giving itself the lie, would pluck\nreproof and rebuke from every ear that heard it.\n\nFirst Officer:\nNo more of him; he is a worthy man: make way, they\nare coming.\n\nMENENIUS:\nHaving determined of the Volsces and\nTo send for Titus Lartius, it remains,\nAs the main point of this our after-meeting,\nTo gratify his noble service that\nHath thus stood for his country: therefore,\nplease you,\nMost reverend and grave elders, to desire\nThe present consul, and last general\nIn our well-found successes, to report\nA little of that worthy work perform'd\nBy Caius Marcius Coriolanus, whom\nWe met here both to thank and to remember\nWith honours like himself.\n\nFirst Senator:\nSpeak, good Cominius:\nLeave nothing out for length, and make us think\nRather our state's defective for requital\nThan we to stretch it out.\nMasters o' the people,\nWe do request your kindest ears, and after,\nYour loving motion toward the common body,\nTo yield what passes here.\n\nSICINIUS:\nWe are convented\nUpon a pleasing treaty, and have hearts\nInclinable to honour and advance\nThe theme of our assembly.\n\nBRUTUS:\nWhich the rather\nWe shall be blest to do, if he remember\nA kinder value of the people than\nHe hath hereto prized them at.\n\nMENENIUS:\nThat's off, that's off;\nI would you rather had been silent. Please you\nTo hear Cominius speak?\n\nBRUTUS:\nMost willingly;\nBut yet my caution was more pertinent\nThan the rebuke you give it.\n\nMENENIUS:\nHe loves your people\nBut tie him not to be their bedfellow.\nWorthy Cominius, speak.\nNay, keep your place.\n\nFirst Senator:\nSit, Coriolanus; never shame to hear\nWhat you have nobly done.\n\nCORIOLANUS:\nYour horror's pardon:\nI had rather have my wounds to heal again\nThan hear say how I got them.\n\nBRUTUS:\nSir, I hope\nMy words disbench'd you not.\n\nCORIOLANUS:\nNo, sir: yet oft,\nWhen blows have made me stay, I fled from words.\nYou soothed not, therefore hurt not: but\nyour people,\nI love them as they weigh.\n\nMENENIUS:\nPray now, sit down.\n\nCORIOLANUS:\nI had rather have one scratch my head i' the sun\nWhen the alarum were struck than idly sit\nTo hear my nothings monster'd.\n\nMENENIUS:\nMasters of the people,\nYour multiplying spawn how can he flatter--\nThat's thousand to one good one--when you now see\nHe had rather venture all his limbs for honour\nThan one on's ears to hear it? Proceed, Cominius.\n\nCOMINIUS:\nI shall lack voice: the deeds of Coriolanus\nShould not be utter'd feebly. It is held\nThat valour is the chiefest virtue, and\nMost dignifies the haver: if it be,\nThe man I speak of cannot in the world\nBe singly counterpoised. At sixteen years,\nWhen Tarquin made a head for Rome, he fought\nBeyond the mark of others: our then dictator,\nWhom with all praise I point at, saw him fight,\nWhen with his Amazonian chin he drove\nThe bristled lips before him: be bestrid\nAn o'er-press'd Roman and i' the consul's view\nSlew three opposers: Tarquin's self he met,\nAnd struck him on his knee: in that day's feats,\nWhen he might act the woman in the scene,\nHe proved best man i' the field, and for his meed\nWas brow-bound with the oak. His pupil age\nMan-enter'd thus, he waxed like a sea,\nAnd in the brunt of seventeen battles since\nHe lurch'd all swords of the garland. For this last,\nBefore and in Corioli, let me say,\nI cannot speak him home: he stopp'd the fliers;\nAnd by his rare example made the coward\nTurn terror into sport: as weeds before\nA vessel under sail, so men obey'd\nAnd fell below his stem: his sword, death's stamp,\nWhere it did mark, it took; from face to foot\nHe was a thing of blood, whose every motion\nWas timed with dying cries: alone he enter'd\nThe mortal gate of the city, which he painted\nWith shunless destiny; aidless came off,\nAnd with a sudden reinforcement struck\nCorioli like a planet: now all's his:\nWhen, by and by, the din of war gan pierce\nHis ready sense; then straight his doubled spirit\nRe-quicken'd what in flesh was fatigate,\nAnd to the battle came he; where he did\nRun reeking o'er the lives of men, as if\n'Twere a perpetual spoil: and till we call'd\nBoth field and city ours, he never stood\nTo ease his breast with panting.\n\nMENENIUS:\nWorthy man!\n\nFirst Senator:\nHe cannot but with measure fit the honours\nWhich we devise him.\n\nCOMINIUS:\nOur spoils he kick'd at,\nAnd look'd upon things precious as they were\nThe common muck of the world: he covets less\nThan misery itself would give; rewards\nHis deeds with doing them, and is content\nTo spend the time to end it.\n\nMENENIUS:\nHe's right noble:\nLet him be call'd for.\n\nFirst Senator:\nCall Coriolanus.\n\nOfficer:\nHe doth appear.\n\nMENENIUS:\nThe senate, Coriolanus, are well pleased\nTo make thee consul.\n\nCORIOLANUS:\nI do owe them still\nMy life and services.\n\nMENENIUS:\nIt then remains\nThat you do speak to the people.\n\nCORIOLANUS:\nI do beseech you,\nLet me o'erleap that custom, for I cannot\nPut on the gown, stand naked and entreat them,\nFor my wounds' sake, to give their suffrage: please you\nThat I may pass this doing.\n\nSICINIUS:\nSir, the people\nMust have their voices; neither will they bate\nOne jot of ceremony.\n\nMENENIUS:\nPut them not to't:\nPray you, go fit you to the custom and\nTake to you, as your predecessors have,\nYour honour with your form.\n\nCORIOLANUS:\nIt is apart\nThat I shall blush in acting, and might well\nBe taken from the people.\n\nBRUTUS:\nMark you that?\n\nCORIOLANUS:\nTo brag unto them, thus I did, and thus;\nShow them the unaching scars which I should hide,\nAs if I had received them for the hire\nOf their breath only!\n\nMENENIUS:\nDo not stand upon't.\nWe recommend to you, tribunes of the people,\nOur purpose to them: and to our noble consul\nWish we all joy and honour.\n\nSenators:\nTo Coriolanus come all joy and honour!\n\nBRUTUS:\nYou see how he intends to use the people.\n\nSICINIUS:\nMay they perceive's intent! He will require them,\nAs if he did contemn what he requested\nShould be in them to give.\n\nBRUTUS:\nCome, we'll inform them\nOf our proceedings here: on the marketplace,\nI know, they do attend us.\n\nFirst Citizen:\nOnce, if he do require our voices, we ought not to deny him.\n\nSecond Citizen:\nWe may, sir, if we will.\n\nThird Citizen:\nWe have power in ourselves to do it, but it is a\npower that we have no power to do; for if he show us\nhis wounds and tell us his deeds, we are to put our\ntongues into those wounds and speak for them; so, if\nhe tell us his noble deeds, we must also tell him\nour noble acceptance of them. Ingratitude is\nmonstrous, and for the multitude to be ingrateful,\nwere to make a monster of the multitude: of the\nwhich we being members, should bring ourselves to be\nmonstrous members.\n\nFirst Citizen:\nAnd to make us no better thought of, a little help\nwill serve; for once we stood up about the corn, he\nhimself stuck not to call us the many-headed multitude.\n\nThird Citizen:\nWe have been called so of many; not that our heads\nare some brown, some black, some auburn, some bald,\nbut that our wits are so diversely coloured: and\ntruly I think if all our wits were to issue out of\none skull, they would fly east, west, north, south,\nand their consent of one direct way should be at\nonce to all the points o' the compass.\n\nSecond Citizen:\nThink you so? Which way do you judge my wit would\nfly?\n\nThird Citizen:\nNay, your wit will not so soon out as another man's\nwill;'tis strongly wedged up in a block-head, but\nif it were at liberty, 'twould, sure, southward.\n\nSecond Citizen:\nWhy that way?\n\nThird Citizen:\nTo lose itself in a fog, where being three parts\nmelted away with rotten dews, the fourth would return\nfor conscience sake, to help to get thee a wife.\n\nSecond Citizen:\nYou are never without your tricks: you may, you may.\n\nThird Citizen:\nAre you all resolved to give your voices? But\nthat's no matter, the greater part carries it. I\nsay, if he would incline to the people, there was\nnever a worthier man.\nHere he comes, and in the gown of humility: mark his\nbehavior. We are not to stay all together, but to\ncome by him where he stands, by ones, by twos, and\nby threes. He's to make his requests by\nparticulars; wherein every one of us has a single\nhonour, in giving him our own voices with our own\ntongues: therefore follow me, and I direct you how\nyou shall go by him.\n\nAll:\nContent, content.\n\nMENENIUS:\nO sir, you are not right: have you not known\nThe worthiest men have done't?\n\nCORIOLANUS:\nWhat must I say?\n'I Pray, sir'--Plague upon't! I cannot bring\nMy tongue to such a pace:--'Look, sir, my wounds!\nI got them in my country's service, when\nSome certain of your brethren roar'd and ran\nFrom the noise of our own drums.'\n\nMENENIUS:\nO me, the gods!\nYou must not speak of that: you must desire them\nTo think upon you.\n\nCORIOLANUS:\nThink upon me! hang 'em!\nI would they would forget me, like the virtues\nWhich our divines lose by 'em.\n\nMENENIUS:\nYou'll mar all:\nI'll leave you: pray you, speak to 'em, I pray you,\nIn wholesome manner.\n\nCORIOLANUS:\nBid them wash their faces\nAnd keep their teeth clean.\nSo, here comes a brace.\nYou know the cause, air, of my standing here.\n\nThird Citizen:\nWe do, sir; tell us what hath brought you to't.\n\nCORIOLANUS:\nMine own desert.\n\nSecond Citizen:\nYour own desert!\n\nCORIOLANUS:\nAy, but not mine own desire.\n\nThird Citizen:\nHow not your own desire?\n\nCORIOLANUS:\nNo, sir,'twas never my desire yet to trouble the\npoor with begging.\n\nThird Citizen:\nYou must think, if we give you any thing, we hope to\ngain by you.\n\nCORIOLANUS:\nWell then, I pray, your price o' the consulship?\n\nFirst Citizen:\nThe price is to ask it kindly.\n\nCORIOLANUS:\nKindly! Sir, I pray, let me ha't: I have wounds to\nshow you, which shall be yours in private. Your\ngood voice, sir; what say you?\n\nSecond Citizen:\nYou shall ha' it, worthy sir.\n\nCORIOLANUS:\nA match, sir. There's in all two worthy voices\nbegged. I have your alms: adieu.\n\nThird Citizen:\nBut this is something odd.\n\nSecond Citizen:\nAn 'twere to give again,--but 'tis no matter.\n\nCORIOLANUS:\nPray you now, if it may stand with the tune of your\nvoices that I may be consul, I have here the\ncustomary gown.\n\nFourth Citizen:\nYou have deserved nobly of your country, and you\nhave not deserved nobly.\n\nCORIOLANUS:\nYour enigma?\n\nFourth Citizen:\nYou have been a scourge to her enemies, you have\nbeen a rod to her friends; you have not indeed loved\nthe common people.\n\nCORIOLANUS:\nYou should account me the more virtuous that I have\nnot been common in my love. I will, sir, flatter my\nsworn brother, the people, to earn a dearer\nestimation of them; 'tis a condition they account\ngentle: and since the wisdom of their choice is\nrather to have my hat than my heart, I will practise\nthe insinuating nod and be off to them most\ncounterfeitly; that is, sir, I will counterfeit the\nbewitchment of some popular man and give it\nbountiful to the desirers. Therefore, beseech you,\nI may be consul.\n\nFifth Citizen:\nWe hope to find you our friend; and therefore give\nyou our voices heartily.\n\nFourth Citizen:\nYou have received many wounds for your country.\n\nCORIOLANUS:\nI will not seal your knowledge with showing them. I\nwill make much of your voices, and so trouble you no further.\n\nBoth Citizens:\nThe gods give you joy, sir, heartily!\n\nCORIOLANUS:\nMost sweet voices!\nBetter it is to die, better to starve,\nThan crave the hire which first we do deserve.\nWhy in this woolvish toge should I stand here,\nTo beg of Hob and Dick, that do appear,\nTheir needless vouches? Custom calls me to't:\nWhat custom wills, in all things should we do't,\nThe dust on antique time would lie unswept,\nAnd mountainous error be too highly heapt\nFor truth to o'er-peer. Rather than fool it so,\nLet the high office and the honour go\nTo one that would do thus. I am half through;\nThe one part suffer'd, the other will I do.\nHere come more voices.\nYour voices: for your voices I have fought;\nWatch'd for your voices; for Your voices bear\nOf wounds two dozen odd; battles thrice six\nI have seen and heard of; for your voices have\nDone many things, some less, some more your voices:\nIndeed I would be consul.\n\nSixth Citizen:\nHe has done nobly, and cannot go without any honest\nman's voice.\n\nSeventh Citizen:\nTherefore let him be consul: the gods give him joy,\nand make him good friend to the people!\n\nAll Citizens:\nAmen, amen. God save thee, noble consul!\n\nCORIOLANUS:\nWorthy voices!\n\nMENENIUS:\nYou have stood your limitation; and the tribunes\nEndue you with the people's voice: remains\nThat, in the official marks invested, you\nAnon do meet the senate.\n\nCORIOLANUS:\nIs this done?\n\nSICINIUS:\nThe custom of request you have discharged:\nThe people do admit you, and are summon'd\nTo meet anon, upon your approbation.\n\nCORIOLANUS:\nWhere? at the senate-house?\n\nSICINIUS:\nThere, Coriolanus.\n\nCORIOLANUS:\nMay I change these garments?\n\nSICINIUS:\nYou may, sir.\n\nCORIOLANUS:\nThat I'll straight do; and, knowing myself again,\nRepair to the senate-house.\n\nMENENIUS:\nI'll keep you company. Will you along?\n\nBRUTUS:\nWe stay here for the people.\n\nSICINIUS:\nFare you well.\nHe has it now, and by his looks methink\n'Tis warm at 's heart.\n\nBRUTUS:\nWith a proud heart he wore his humble weeds.\nwill you dismiss the people?\n\nSICINIUS:\nHow now, my masters! have you chose this man?\n\nFirst Citizen:\nHe has our voices, sir.\n\nBRUTUS:\nWe pray the gods he may deserve your loves.\n\nSecond Citizen:\nAmen, sir: to my poor unworthy notice,\nHe mock'd us when he begg'd our voices.\n\nThird Citizen:\nCertainly\nHe flouted us downright.\n\nFirst Citizen:\nNo,'tis his kind of speech: he did not mock us.\n\nSecond Citizen:\nNot one amongst us, save yourself, but says\nHe used us scornfully: he should have show'd us\nHis marks of merit, wounds received for's country.\n\nSICINIUS:\nWhy, so he did, I am sure.\n\nCitizens:\nNo, no; no man saw 'em.\n\nThird Citizen:\nHe said he had wounds, which he could show\nin private;\nAnd with his hat, thus waving it in scorn,\n'I would be consul,' says he: 'aged custom,\nBut by your voices, will not so permit me;\nYour voices therefore.' When we granted that,\nHere was 'I thank you for your voices: thank you:\nYour most sweet voices: now you have left\nyour voices,\nI have no further with you.' Was not this mockery?\n\nSICINIUS:\nWhy either were you ignorant to see't,\nOr, seeing it, of such childish friendliness\nTo yield your voices?\n\nBRUTUS:\nCould you not have told him\nAs you were lesson'd, when he had no power,\nBut was a petty servant to the state,\nHe was your enemy, ever spake against\nYour liberties and the charters that you bear\nI' the body of the weal; and now, arriving\nA place of potency and sway o' the state,\nIf he should still malignantly remain\nFast foe to the plebeii, your voices might\nBe curses to yourselves? You should have said\nThat as his worthy deeds did claim no less\nThan what he stood for, so his gracious nature\nWould think upon you for your voices and\nTranslate his malice towards you into love,\nStanding your friendly lord.\n\nSICINIUS:\nThus to have said,\nAs you were fore-advised, had touch'd his spirit\nAnd tried his inclination; from him pluck'd\nEither his gracious promise, which you might,\nAs cause had call'd you up, have held him to\nOr else it would have gall'd his surly nature,\nWhich easily endures not article\nTying him to aught; so putting him to rage,\nYou should have ta'en the advantage of his choler\nAnd pass'd him unelected.\n\nBRUTUS:\nDid you perceive\nHe did solicit you in free contempt\nWhen he did need your loves, and do you think\nThat his contempt shall not be bruising to you,\nWhen he hath power to crush? Why, had your bodies\nNo heart among you? or had you tongues to cry\nAgainst the rectorship of judgment?\n\nSICINIUS:\nHave you\nEre now denied the asker? and now again\nOf him that did not ask, but mock, bestow\nYour sued-for tongues?\n\nThird Citizen:\nHe's not confirm'd; we may deny him yet.\n\nSecond Citizen:\nAnd will deny him:\nI'll have five hundred voices of that sound.\n\nFirst Citizen:\nI twice five hundred and their friends to piece 'em.\n\nBRUTUS:\nGet you hence instantly, and tell those friends,\nThey have chose a consul that will from them take\nTheir liberties; make them of no more voice\nThan dogs that are as often beat for barking\nAs therefore kept to do so.\n\nSICINIUS:\nLet them assemble,\nAnd on a safer judgment all revoke\nYour ignorant election; enforce his pride,\nAnd his old hate unto you; besides, forget not\nWith what contempt he wore the humble weed,\nHow in his suit he scorn'd you; but your loves,\nThinking upon his services, took from you\nThe apprehension of his present portance,\nWhich most gibingly, ungravely, he did fashion\nAfter the inveterate hate he bears you.\n\nBRUTUS:\nLay\nA fault on us, your tribunes; that we laboured,\nNo impediment between, but that you must\nCast your election on him.\n\nSICINIUS:\nSay, you chose him\nMore after our commandment than as guided\nBy your own true affections, and that your minds,\nPreoccupied with what you rather must do\nThan what you should, made you against the grain\nTo voice him consul: lay the fault on us.\n\nBRUTUS:\nAy, spare us not. Say we read lectures to you.\nHow youngly he began to serve his country,\nHow long continued, and what stock he springs of,\nThe noble house o' the Marcians, from whence came\nThat Ancus Marcius, Numa's daughter's son,\nWho, after great Hostilius, here was king;\nOf the same house Publius and Quintus were,\nThat our beat water brought by conduits hither;\nAnd  \nTwice being  \nWas his great ancestor.\n\nSICINIUS:\nOne thus descended,\nThat hath beside well in his person wrought\nTo be set high in place, we did commend\nTo your remembrances: but you have found,\nScaling his present bearing with his past,\nThat he's your fixed enemy, and revoke\nYour sudden approbation.\n\nBRUTUS:\nSay, you ne'er had done't--\nHarp on that still--but by our putting on;\nAnd presently, when you have drawn your number,\nRepair to the Capitol.\n\nAll:\nWe will so: almost all\nRepent in their election.\n\nBRUTUS:\nLet them go on;\nThis mutiny were better put in hazard,\nThan stay, past doubt, for greater:\nIf, as his nature is, he fall in rage\nWith their refusal, both observe and answer\nThe vantage of his anger.\n\nSICINIUS:\nTo the Capitol, come:\nWe will be there before the stream o' the people;\nAnd this shall seem, as partly 'tis, their own,\nWhich we have goaded onward.\n\nCORIOLANUS:\nTullus Aufidius then had made new head?\n\nLARTIUS:\nHe had, my lord; and that it was which caused\nOur swifter composition.\n\nCORIOLANUS:\nSo then the Volsces stand but as at first,\nReady, when time shall prompt them, to make road.\nUpon's again.\n\nCOMINIUS:\nThey are worn, lord consul, so,\nThat we shall hardly in our ages see\nTheir banners wave again.\n\nCORIOLANUS:\nSaw you Aufidius?\n\nLARTIUS:\nOn safe-guard he came to me; and did curse\nAgainst the Volsces, for they had so vilely\nYielded the town: he is retired to Antium.\n\nCORIOLANUS:\nSpoke he of me?\n\nLARTIUS:\nHe did, my lord.\n\nCORIOLANUS:\nHow? what?\n\nLARTIUS:\nHow often he had met you, sword to sword;\nThat of all things upon the earth he hated\nYour person most, that he would pawn his fortunes\nTo hopeless restitution, so he might\nBe call'd your vanquisher.\n\nCORIOLANUS:\nAt Antium lives he?\n\nLARTIUS:\nAt Antium.\n\nCORIOLANUS:\nI wish I had a cause to seek him there,\nTo oppose his hatred fully. Welcome home.\nBehold, these are the tribunes of the people,\nThe tongues o' the common mouth: I do despise them;\nFor they do prank them in authority,\nAgainst all noble sufferance.\n\nSICINIUS:\nPass no further.\n\nCORIOLANUS:\nHa! what is that?\n\nBRUTUS:\nIt will be dangerous to go on: no further.\n\nCORIOLANUS:\nWhat makes this change?\n\nMENENIUS:\nThe matter?\n\nCOMINIUS:\nHath he not pass'd the noble and the common?\n\nBRUTUS:\nCominius, no.\n\nCORIOLANUS:\nHave I had children's voices?\n\nFirst Senator:\nTribunes, give way; he shall to the market-place.\n\nBRUTUS:\nThe people are incensed against him.\n\nSICINIUS:\nStop,\nOr all will fall in broil.\n\nCORIOLANUS:\nAre these your herd?\nMust these have voices, that can yield them now\nAnd straight disclaim their tongues? What are\nyour offices?\nYou being their mouths, why rule you not their teeth?\nHave you not set them on?\n\nMENENIUS:\nBe calm, be calm.\n\nCORIOLANUS:\nIt is a purposed thing, and grows by plot,\nTo curb the will of the nobility:\nSuffer't, and live with such as cannot rule\nNor ever will be ruled.\n\nBRUTUS:\nCall't not a plot:\nThe people cry you mock'd them, and of late,\nWhen corn was given them gratis, you repined;\nScandal'd the suppliants for the people, call'd them\nTime-pleasers, flatterers, foes to nobleness.\n\nCORIOLANUS:\nWhy, this was known before.\n\nBRUTUS:\nNot to them all.\n\nCORIOLANUS:\nHave you inform'd them sithence?\n\nBRUTUS:\nHow! I inform them!\n\nCORIOLANUS:\nYou are like to do such business.\n\nBRUTUS:\nNot unlike,\nEach way, to better yours.\n\nCORIOLANUS:\nWhy then should I be consul? By yond clouds,\nLet me deserve so ill as you, and make me\nYour fellow tribune.\n\nSICINIUS:\nYou show too much of that\nFor which the people stir: if you will pass\nTo where you are bound, you must inquire your way,\nWhich you are out of, with a gentler spirit,\nOr never be so noble as a consul,\nNor yoke with him for tribune.\n\nMENENIUS:\nLet's be calm.\n\nCOMINIUS:\nThe people are abused; set on. This paltering\nBecomes not Rome, nor has Coriolanus\nDeserved this so dishonour'd rub, laid falsely\nI' the plain way of his merit.\n\nCORIOLANUS:\nTell me of corn!\nThis was my speech, and I will speak't again--\n\nMENENIUS:\nNot now, not now.\n\nFirst Senator:\nNot in this heat, sir, now.\n\nCORIOLANUS:\nNow, as I live, I will. My nobler friends,\nI crave their pardons:\nFor the mutable, rank-scented many, let them\nRegard me as I do not flatter, and\nTherein behold themselves: I say again,\nIn soothing them, we nourish 'gainst our senate\nThe cockle of rebellion, insolence, sedition,\nWhich we ourselves have plough'd for, sow'd,\nand scatter'd,\nBy mingling them with us, the honour'd number,\nWho lack not virtue, no, nor power, but that\nWhich they have given to beggars.\n\nMENENIUS:\nWell, no more.\n\nFirst Senator:\nNo more words, we beseech you.\n\nCORIOLANUS:\nHow! no more!\nAs for my country I have shed my blood,\nNot fearing outward force, so shall my lungs\nCoin words till their decay against those measles,\nWhich we disdain should tatter us, yet sought\nThe very way to catch them.\n\nBRUTUS:\nYou speak o' the people,\nAs if you were a god to punish, not\nA man of their infirmity.\n\nSICINIUS:\n'Twere well\nWe let the people know't.\n\nMENENIUS:\nWhat, what? his choler?\n\nCORIOLANUS:\nCholer!\nWere I as patient as the midnight sleep,\nBy Jove, 'twould be my mind!\n\nSICINIUS:\nIt is a mind\nThat shall remain a poison where it is,\nNot poison any further.\n\nCORIOLANUS:\nShall remain!\nHear you this Triton of the minnows? mark you\nHis absolute 'shall'?\n\nCOMINIUS:\n'Twas from the canon.\n\nCORIOLANUS:\n'Shall'!\nO good but most unwise patricians! why,\nYou grave but reckless senators, have you thus\nGiven Hydra here to choose an officer,\nThat with his peremptory 'shall,' being but\nThe horn and noise o' the monster's, wants not spirit\nTo say he'll turn your current in a ditch,\nAnd make your channel his? If he have power\nThen vail your ignorance; if none, awake\nYour dangerous lenity. If you are learn'd,\nBe not as common fools; if you are not,\nLet them have cushions by you. You are plebeians,\nIf they be senators: and they are no less,\nWhen, both your voices blended, the great'st taste\nMost palates theirs. They choose their magistrate,\nAnd such a one as he, who puts his 'shall,'\nHis popular 'shall' against a graver bench\nThan ever frown in Greece. By Jove himself!\nIt makes the consuls base: and my soul aches\nTo know, when two authorities are up,\nNeither supreme, how soon confusion\nMay enter 'twixt the gap of both and take\nThe one by the other.\n\nCOMINIUS:\nWell, on to the market-place.\n\nCORIOLANUS:\nWhoever gave that counsel, to give forth\nThe corn o' the storehouse gratis, as 'twas used\nSometime in Greece,--\n\nMENENIUS:\nWell, well, no more of that.\n\nCORIOLANUS:\nThough there the people had more absolute power,\nI say, they nourish'd disobedience, fed\nThe ruin of the state.\n\nBRUTUS:\nWhy, shall the people give\nOne that speaks thus their voice?\n\nCORIOLANUS:\nI'll give my reasons,\nMore worthier than their voices. They know the corn\nWas not our recompense, resting well assured\nThat ne'er did service for't: being press'd to the war,\nEven when the navel of the state was touch'd,\nThey would not thread the gates. This kind of service\nDid not deserve corn gratis. Being i' the war\nTheir mutinies and revolts, wherein they show'd\nMost valour, spoke not for them: the accusation\nWhich they have often made against the senate,\nAll cause unborn, could never be the motive\nOf our so frank donation. Well, what then?\nHow shall this bisson multitude digest\nThe senate's courtesy? Let deeds express\nWhat's like to be their words: 'we did request it;\nWe are the greater poll, and in true fear\nThey gave us our demands.' Thus we debase\nThe nature of our seats and make the rabble\nCall our cares fears; which will in time\nBreak ope the locks o' the senate and bring in\nThe crows to peck the eagles.\n\nMENENIUS:\nCome, enough.\n\nBRUTUS:\nEnough, with over-measure.\n\nCORIOLANUS:\nNo, take more:\nWhat may be sworn by, both divine and human,\nSeal what I end withal! This double worship,\nWhere one part does disdain with cause, the other\nInsult without all reason, where gentry, title, wisdom,\nCannot conclude but by the yea and no\nOf general ignorance,--it must omit\nReal necessities, and give way the while\nTo unstable slightness: purpose so barr'd,\nit follows,\nNothing is done to purpose. Therefore, beseech you,--\nYou that will be less fearful than discreet,\nThat love the fundamental part of state\nMore than you doubt the change on't, that prefer\nA noble life before a long, and wish\nTo jump a body with a dangerous physic\nThat's sure of death without it, at once pluck out\nThe multitudinous tongue; let them not lick\nThe sweet which is their poison: your dishonour\nMangles true judgment and bereaves the state\nOf that integrity which should become't,\nNot having the power to do the good it would,\nFor the in which doth control't.\n\nBRUTUS:\nHas said enough.\n\nSICINIUS:\nHas spoken like a traitor, and shall answer\nAs traitors do.\n\nCORIOLANUS:\nThou wretch, despite o'erwhelm thee!\nWhat should the people do with these bald tribunes?\nOn whom depending, their obedience fails\nTo the greater bench: in a rebellion,\nWhen what's not meet, but what must be, was law,\nThen were they chosen: in a better hour,\nLet what is meet be said it must be meet,\nAnd throw their power i' the dust.\n\nBRUTUS:\nManifest treason!\n\nSICINIUS:\nThis a consul? no.\n\nBRUTUS:\nThe aediles, ho!\nLet him be apprehended.\n\nSICINIUS:\nGo, call the people:\nin whose name myself\nAttach thee as a traitorous innovator,\nA foe to the public weal: obey, I charge thee,\nAnd follow to thine answer.\n\nCORIOLANUS:\nHence, old goat!\n\nSenators, &C:\nWe'll surety him.\n\nCOMINIUS:\nAged sir, hands off.\n\nCORIOLANUS:\nHence, rotten thing! or I shall shake thy bones\nOut of thy garments.\n\nSICINIUS:\nHelp, ye citizens!\n\nMENENIUS:\nOn both sides more respect.\n\nSICINIUS:\nHere's he that would take from you all your power.\n\nBRUTUS:\nSeize him, AEdiles!\n\nCitizens:\nDown with him! down with him!\n\nSenators, &C:\nWeapons, weapons, weapons!\n'Tribunes!' 'Patricians!' 'Citizens!' 'What, ho!'\n'Sicinius!' 'Brutus!' 'Coriolanus!' 'Citizens!'\n'Peace, peace, peace!' 'Stay, hold, peace!'\n\nMENENIUS:\nWhat is about to be? I am out of breath;\nConfusion's near; I cannot speak. You, tribunes\nTo the people! Coriolanus, patience!\nSpeak, good Sicinius.\n\nSICINIUS:\nHear me, people; peace!\n\nCitizens:\nLet's hear our tribune: peace Speak, speak, speak.\n\nSICINIUS:\nYou are at point to lose your liberties:\nMarcius would have all from you; Marcius,\nWhom late you have named for consul.\n\nMENENIUS:\nFie, fie, fie!\nThis is the way to kindle, not to quench.\n\nFirst Senator:\nTo unbuild the city and to lay all flat.\n\nSICINIUS:\nWhat is the city but the people?\n\nCitizens:\nTrue,\nThe people are the city.\n\nBRUTUS:\nBy the consent of all, we were establish'd\nThe people's magistrates.\n\nCitizens:\nYou so remain.\n\nMENENIUS:\nAnd so are like to do.\n\nCOMINIUS:\nThat is the way to lay the city flat;\nTo bring the roof to the foundation,\nAnd bury all, which yet distinctly ranges,\nIn heaps and piles of ruin.\n\nSICINIUS:\nThis deserves death.\n\nBRUTUS:\nOr let us stand to our authority,\nOr let us lose it. We do here pronounce,\nUpon the part o' the people, in whose power\nWe were elected theirs, Marcius is worthy\nOf present death.\n\nSICINIUS:\nTherefore lay hold of him;\nBear him to the rock Tarpeian, and from thence\nInto destruction cast him.\n\nBRUTUS:\nAEdiles, seize him!\n\nCitizens:\nYield, Marcius, yield!\n\nMENENIUS:\nHear me one word;\nBeseech you, tribunes, hear me but a word.\n\nAEdile:\nPeace, peace!\n\nMENENIUS:\n\nBRUTUS:\nSir, those cold ways,\nThat seem like prudent helps, are very poisonous\nWhere the disease is violent. Lay hands upon him,\nAnd bear him to the rock.\n\nCORIOLANUS:\nNo, I'll die here.\nThere's some among you have beheld me fighting:\nCome, try upon yourselves what you have seen me.\n\nMENENIUS:\nDown with that sword! Tribunes, withdraw awhile.\n\nBRUTUS:\nLay hands upon him.\n\nCOMINIUS:\nHelp Marcius, help,\nYou that be noble; help him, young and old!\n\nCitizens:\nDown with him, down with him!\n\nMENENIUS:\nGo, get you to your house; be gone, away!\nAll will be naught else.\n\nSecond Senator:\nGet you gone.\n\nCOMINIUS:\nStand fast;\nWe have as many friends as enemies.\n\nMENENIUS:\nSham it be put to that?\n\nFirst Senator:\nThe gods forbid!\nI prithee, noble friend, home to thy house;\nLeave us to cure this cause.\n\nMENENIUS:\nFor 'tis a sore upon us,\nYou cannot tent yourself: be gone, beseech you.\n\nCOMINIUS:\nCome, sir, along with us.\n\nCORIOLANUS:\nI would they were barbarians--as they are,\nThough in Rome litter'd--not Romans--as they are not,\nThough calved i' the porch o' the Capitol--\n\nMENENIUS:\nBe gone;\nPut not your worthy rage into your tongue;\nOne time will owe another.\n\nCORIOLANUS:\nOn fair ground\nI could beat forty of them.\n\nCOMINIUS:\nI could myself\nTake up a brace o' the best of them; yea, the\ntwo tribunes:\nBut now 'tis odds beyond arithmetic;\nAnd manhood is call'd foolery, when it stands\nAgainst a falling fabric. Will you hence,\nBefore the tag return? whose rage doth rend\nLike interrupted waters and o'erbear\nWhat they are used to bear.\n\nMENENIUS:\nPray you, be gone:\nI'll try whether my old wit be in request\nWith those that have but little: this must be patch'd\nWith cloth of any colour.\n\nCOMINIUS:\nNay, come away.\n\nA Patrician:\nThis man has marr'd his fortune.\n\nMENENIUS:\nHis nature is too noble for the world:\nHe would not flatter Neptune for his trident,\nOr Jove for's power to thunder. His heart's his mouth:\nWhat his breast forges, that his tongue must vent;\nAnd, being angry, does forget that ever\nHe heard the name of death.\nHere's goodly work!\n\nSecond Patrician:\nI would they were abed!\n\nMENENIUS:\nI would they were in Tiber! What the vengeance!\nCould he not speak 'em fair?\n\nSICINIUS:\nWhere is this viper\nThat would depopulate the city and\nBe every man himself?\n\nMENENIUS:\nYou worthy tribunes,--\n\nSICINIUS:\nHe shall be thrown down the Tarpeian rock\nWith rigorous hands: he hath resisted law,\nAnd therefore law shall scorn him further trial\nThan the severity of the public power\nWhich he so sets at nought.\n\nFirst Citizen:\nHe shall well know\nThe noble tribunes are the people's mouths,\nAnd we their hands.\n\nCitizens:\nHe shall, sure on't.\n\nMENENIUS:\nSir, sir,--\n\nSICINIUS:\nPeace!\n\nMENENIUS:\nDo not cry havoc, where you should but hunt\nWith modest warrant.\n\nSICINIUS:\nSir, how comes't that you\nHave holp to make this rescue?\n\nMENENIUS:\nHear me speak:\nAs I do know the consul's worthiness,\nSo can I name his faults,--\n\nSICINIUS:\nConsul! what consul?\n\nMENENIUS:\nThe consul Coriolanus.\n\nBRUTUS:\nHe consul!\n\nCitizens:\nNo, no, no, no, no.\n\nMENENIUS:\nIf, by the tribunes' leave, and yours, good people,\nI may be heard, I would crave a word or two;\nThe which shall turn you to no further harm\nThan so much loss of time.\n\nSICINIUS:\nSpeak briefly then;\nFor we are peremptory to dispatch\nThis viperous traitor: to eject him hence\nWere but one danger, and to keep him here\nOur certain death: therefore it is decreed\nHe dies to-night.\n\nMENENIUS:\nNow the good gods forbid\nThat our renowned Rome, whose gratitude\nTowards her deserved children is enroll'd\nIn Jove's own book, like an unnatural dam\nShould now eat up her own!\n\nSICINIUS:\nHe's a disease that must be cut away.\n\nMENENIUS:\nO, he's a limb that has but a disease;\nMortal, to cut it off; to cure it, easy.\nWhat has he done to Rome that's worthy death?\nKilling our enemies, the blood he hath lost--\nWhich, I dare vouch, is more than that he hath,\nBy many an ounce--he dropp'd it for his country;\nAnd what is left, to lose it by his country,\nWere to us all, that do't and suffer it,\nA brand to the end o' the world.\n\nSICINIUS:\nThis is clean kam.\n\nBRUTUS:\nMerely awry: when he did love his country,\nIt honour'd him.\n\nMENENIUS:\nThe service of the foot\nBeing once gangrened, is not then respected\nFor what before it was.\n\nBRUTUS:\nWe'll hear no more.\nPursue him to his house, and pluck him thence:\nLest his infection, being of catching nature,\nSpread further.\n\nMENENIUS:\nOne word more, one word.\nThis tiger-footed rage, when it shall find\nThe harm of unscann'd swiftness, will too late\nTie leaden pounds to's heels. Proceed by process;\nLest parties, as he is beloved, break out,\nAnd sack great Rome with Romans.\n\nBRUTUS:\nIf it were so,--\n\nSICINIUS:\nWhat do ye talk?\nHave we not had a taste of his obedience?\nOur aediles smote? ourselves resisted? Come.\n\nMENENIUS:\nConsider this: he has been bred i' the wars\nSince he could draw a sword, and is ill school'd\nIn bolted language; meal and bran together\nHe throws without distinction. Give me leave,\nI'll go to him, and undertake to bring him\nWhere he shall answer, by a lawful form,\nIn peace, to his utmost peril.\n\nFirst Senator:\nNoble tribunes,\nIt is the humane way: the other course\nWill prove too bloody, and the end of it\nUnknown to the beginning.\n\nSICINIUS:\nNoble Menenius,\nBe you then as the people's officer.\nMasters, lay down your weapons.\n\nBRUTUS:\nGo not home.\n\nSICINIUS:\nMeet on the market-place. We'll attend you there:\nWhere, if you bring not Marcius, we'll proceed\nIn our first way.\n\nMENENIUS:\nI'll bring him to you.\nLet me desire your company: he must come,\nOr what is worst will follow.\n\nFirst Senator:\nPray you, let's to him.\n\nCORIOLANUS:\nLet them puff all about mine ears, present me\nDeath on the wheel or at wild horses' heels,\nOr pile ten hills on the Tarpeian rock,\nThat the precipitation might down stretch\nBelow the beam of sight, yet will I still\nBe thus to them.\n\nA Patrician:\nYou do the nobler.\n\nCORIOLANUS:\nI muse my mother\nDoes not approve me further, who was wont\nTo call them woollen vassals, things created\nTo buy and sell with groats, to show bare heads\nIn congregations, to yawn, be still and wonder,\nWhen one but of my ordinance stood up\nTo speak of peace or war.\nI talk of you:\nWhy did you wish me milder? would you have me\nFalse to my nature? Rather say I play\nThe man I am.\n\nVOLUMNIA:\nO, sir, sir, sir,\nI would have had you put your power well on,\nBefore you had worn it out.\n\nCORIOLANUS:\nLet go.\n\nVOLUMNIA:\nYou might have been enough the man you are,\nWith striving less to be so; lesser had been\nThe thwartings of your dispositions, if\nYou had not show'd them how ye were disposed\nEre they lack'd power to cross you.\n\nCORIOLANUS:\nLet them hang.\n\nA Patrician:\nAy, and burn too.\n\nMENENIUS:\nCome, come, you have been too rough, something\ntoo rough;\nYou must return and mend it.\n\nFirst Senator:\nThere's no remedy;\nUnless, by not so doing, our good city\nCleave in the midst, and perish.\n\nVOLUMNIA:\nPray, be counsell'd:\nI have a heart as little apt as yours,\nBut yet a brain that leads my use of anger\nTo better vantage.\n\nMENENIUS:\nWell said, noble woman?\nBefore he should thus stoop to the herd, but that\nThe violent fit o' the time craves it as physic\nFor the whole state, I would put mine armour on,\nWhich I can scarcely bear.\n\nCORIOLANUS:\nWhat must I do?\n\nMENENIUS:\nReturn to the tribunes.\n\nCORIOLANUS:\nWell, what then? what then?\n\nMENENIUS:\nRepent what you have spoke.\n\nCORIOLANUS:\nFor them! I cannot do it to the gods;\nMust I then do't to them?\n\nVOLUMNIA:\nYou are too absolute;\nThough therein you can never be too noble,\nBut when extremities speak. I have heard you say,\nHonour and policy, like unsever'd friends,\nI' the war do grow together: grant that, and tell me,\nIn peace what each of them by the other lose,\nThat they combine not there.\n\nCORIOLANUS:\nTush, tush!\n\nMENENIUS:\nA good demand.\n\nVOLUMNIA:\nIf it be honour in your wars to seem\nThe same you are not, which, for your best ends,\nYou adopt your policy, how is it less or worse,\nThat it shall hold companionship in peace\nWith honour, as in war, since that to both\nIt stands in like request?\n\nCORIOLANUS:\nWhy force you this?\n\nVOLUMNIA:\nBecause that now it lies you on to speak\nTo the people; not by your own instruction,\nNor by the matter which your heart prompts you,\nBut with such words that are but rooted in\nYour tongue, though but bastards and syllables\nOf no allowance to your bosom's truth.\nNow, this no more dishonours you at all\nThan to take in a town with gentle words,\nWhich else would put you to your fortune and\nThe hazard of much blood.\nI would dissemble with my nature where\nMy fortunes and my friends at stake required\nI should do so in honour: I am in this,\nYour wife, your son, these senators, the nobles;\nAnd you will rather show our general louts\nHow you can frown than spend a fawn upon 'em,\nFor the inheritance of their loves and safeguard\nOf what that want might ruin.\n\nMENENIUS:\nNoble lady!\nCome, go with us; speak fair: you may salve so,\nNot what is dangerous present, but the loss\nOf what is past.\n\nVOLUMNIA:\nI prithee now, my son,\nGo to them, with this bonnet in thy hand;\nAnd thus far having stretch'd it--here be with them--\nThy knee bussing the stones--for in such business\nAction is eloquence, and the eyes of the ignorant\nMore learned than the ears--waving thy head,\nWhich often, thus, correcting thy stout heart,\nNow humble as the ripest mulberry\nThat will not hold the handling: or say to them,\nThou art their soldier, and being bred in broils\nHast not the soft way which, thou dost confess,\nWere fit for thee to use as they to claim,\nIn asking their good loves, but thou wilt frame\nThyself, forsooth, hereafter theirs, so far\nAs thou hast power and person.\n\nMENENIUS:\nThis but done,\nEven as she speaks, why, their hearts were yours;\nFor they have pardons, being ask'd, as free\nAs words to little purpose.\n\nVOLUMNIA:\nPrithee now,\nGo, and be ruled: although I know thou hadst rather\nFollow thine enemy in a fiery gulf\nThan flatter him in a bower. Here is Cominius.\n\nCOMINIUS:\nI have been i' the market-place; and, sir,'tis fit\nYou make strong party, or defend yourself\nBy calmness or by absence: all's in anger.\n\nMENENIUS:\nOnly fair speech.\n\nCOMINIUS:\nI think 'twill serve, if he\nCan thereto frame his spirit.\n\nVOLUMNIA:\nHe must, and will\nPrithee now, say you will, and go about it.\n\nCORIOLANUS:\nMust I go show them my unbarbed sconce?\nMust I with base tongue give my noble heart\nA lie that it must bear? Well, I will do't:\nYet, were there but this single plot to lose,\nThis mould of Marcius, they to dust should grind it\nAnd throw't against the wind. To the market-place!\nYou have put me now to such a part which never\nI shall discharge to the life.\n\nCOMINIUS:\nCome, come, we'll prompt you.\n\nVOLUMNIA:\nI prithee now, sweet son, as thou hast said\nMy praises made thee first a soldier, so,\nTo have my praise for this, perform a part\nThou hast not done before.\n\nCORIOLANUS:\nWell, I must do't:\nAway, my disposition, and possess me\nSome harlot's spirit! my throat of war be turn'd,\nWhich quired with my drum, into a pipe\nSmall as an eunuch, or the virgin voice\nThat babies lulls asleep! the smiles of knaves\nTent in my cheeks, and schoolboys' tears take up\nThe glasses of my sight! a beggar's tongue\nMake motion through my lips, and my arm'd knees,\nWho bow'd but in my stirrup, bend like his\nThat hath received an alms! I will not do't,\nLest I surcease to honour mine own truth\nAnd by my body's action teach my mind\nA most inherent baseness.\n\nVOLUMNIA:\nAt thy choice, then:\nTo beg of thee, it is my more dishonour\nThan thou of them. Come all to ruin; let\nThy mother rather feel thy pride than fear\nThy dangerous stoutness, for I mock at death\nWith as big heart as thou. Do as thou list\nThy valiantness was mine, thou suck'dst it from me,\nBut owe thy pride thyself.\n\nCORIOLANUS:\nPray, be content:\nMother, I am going to the market-place;\nChide me no more. I'll mountebank their loves,\nCog their hearts from them, and come home beloved\nOf all the trades in Rome. Look, I am going:\nCommend me to my wife. I'll return consul;\nOr never trust to what my tongue can do\nI' the way of flattery further.\n\nVOLUMNIA:\nDo your will.\n\nCOMINIUS:\nAway! the tribunes do attend you: arm yourself\nTo answer mildly; for they are prepared\nWith accusations, as I hear, more strong\nThan are upon you yet.\n\nCORIOLANUS:\nThe word is 'mildly.' Pray you, let us go:\nLet them accuse me by invention, I\nWill answer in mine honour.\n\nMENENIUS:\nAy, but mildly.\n\nCORIOLANUS:\nWell, mildly be it then. Mildly!\n\nBRUTUS:\nIn this point charge him home, that he affects\nTyrannical power: if he evade us there,\nEnforce him with his envy to the people,\nAnd that the spoil got on the Antiates\nWas ne'er distributed.\nWhat, will he come?\n\nAEdile:\nHe's coming.\n\nBRUTUS:\nHow accompanied?\n\nAEdile:\nWith old Menenius, and those senators\nThat always favour'd him.\n\nSICINIUS:\nHave you a catalogue\nOf all the voices that we have procured\nSet down by the poll?\n\nAEdile:\nI have; 'tis ready.\n\nSICINIUS:\nHave you collected them by tribes?\n\nAEdile:\nI have.\n\nSICINIUS:\nAssemble presently the people hither;\nAnd when they bear me say 'It shall be so\nI' the right and strength o' the commons,' be it either\nFor death, for fine, or banishment, then let them\nIf I say fine, cry 'Fine;' if death, cry 'Death.'\nInsisting on the old prerogative\nAnd power i' the truth o' the cause.\n\nAEdile:\nI shall inform them.\n\nBRUTUS:\nAnd when such time they have begun to cry,\nLet them not cease, but with a din confused\nEnforce the present execution\nOf what we chance to sentence.\n\nAEdile:\nVery well.\n\nSICINIUS:\nMake them be strong and ready for this hint,\nWhen we shall hap to give 't them.\n\nBRUTUS:\nGo about it.\nPut him to choler straight: he hath been used\nEver to conquer, and to have his worth\nOf contradiction: being once chafed, he cannot\nBe rein'd again to temperance; then he speaks\nWhat's in his heart; and that is there which looks\nWith us to break his neck.\n\nSICINIUS:\nWell, here he comes.\n\nMENENIUS:\nCalmly, I do beseech you.\n\nCORIOLANUS:\nAy, as an ostler, that for the poorest piece\nWill bear the knave by the volume. The honour'd gods\nKeep Rome in safety, and the chairs of justice\nSupplied with worthy men! plant love among 's!\nThrong our large temples with the shows of peace,\nAnd not our streets with war!\n\nFirst Senator:\nAmen, amen.\n\nMENENIUS:\nA noble wish.\n\nSICINIUS:\nDraw near, ye people.\n\nAEdile:\nList to your tribunes. Audience: peace, I say!\n\nCORIOLANUS:\nFirst, hear me speak.\n\nBoth Tribunes:\nWell, say. Peace, ho!\n\nCORIOLANUS:\nShall I be charged no further than this present?\nMust all determine here?\n\nSICINIUS:\nI do demand,\nIf you submit you to the people's voices,\nAllow their officers and are content\nTo suffer lawful censure for such faults\nAs shall be proved upon you?\n\nCORIOLANUS:\nI am content.\n\nMENENIUS:\nLo, citizens, he says he is content:\nThe warlike service he has done, consider; think\nUpon the wounds his body bears, which show\nLike graves i' the holy churchyard.\n\nCORIOLANUS:\nScratches with briers,\nScars to move laughter only.\n\nMENENIUS:\nConsider further,\nThat when he speaks not like a citizen,\nYou find him like a soldier: do not take\nHis rougher accents for malicious sounds,\nBut, as I say, such as become a soldier,\nRather than envy you.\n\nCOMINIUS:\nWell, well, no more.\n\nCORIOLANUS:\nWhat is the matter\nThat being pass'd for consul with full voice,\nI am so dishonour'd that the very hour\nYou take it off again?\n\nSICINIUS:\nAnswer to us.\n\nCORIOLANUS:\nSay, then: 'tis true, I ought so.\n\nSICINIUS:\nWe charge you, that you have contrived to take\nFrom Rome all season'd office and to wind\nYourself into a power tyrannical;\nFor which you are a traitor to the people.\n\nCORIOLANUS:\nHow! traitor!\n\nMENENIUS:\nNay, temperately; your promise.\n\nCORIOLANUS:\nThe fires i' the lowest hell fold-in the people!\nCall me their traitor! Thou injurious tribune!\nWithin thine eyes sat twenty thousand deaths,\nIn thy hand clutch'd as many millions, in\nThy lying tongue both numbers, I would say\n'Thou liest' unto thee with a voice as free\nAs I do pray the gods.\n\nSICINIUS:\nMark you this, people?\n\nCitizens:\nTo the rock, to the rock with him!\n\nSICINIUS:\nPeace!\nWe need not put new matter to his charge:\nWhat you have seen him do and heard him speak,\nBeating your officers, cursing yourselves,\nOpposing laws with strokes and here defying\nThose whose great power must try him; even this,\nSo criminal and in such capital kind,\nDeserves the extremest death.\n\nBRUTUS:\nBut since he hath\nServed well for Rome,--\n\nCORIOLANUS:\nWhat do you prate of service?\n\nBRUTUS:\nI talk of that, that know it.\n\nCORIOLANUS:\nYou?\n\nMENENIUS:\nIs this the promise that you made your mother?\n\nCOMINIUS:\nKnow, I pray you,--\n\nCORIOLANUS:\nI know no further:\nLet them pronounce the steep Tarpeian death,\nVagabond exile, raying, pent to linger\nBut with a grain a day, I would not buy\nTheir mercy at the price of one fair word;\nNor cheque my courage for what they can give,\nTo have't with saying 'Good morrow.'\n\nSICINIUS:\nFor that he has,\nAs much as in him lies, from time to time\nEnvied against the people, seeking means\nTo pluck away their power, as now at last\nGiven hostile strokes, and that not in the presence\nOf dreaded justice, but on the ministers\nThat do distribute it; in the name o' the people\nAnd in the power of us the tribunes, we,\nEven from this instant, banish him our city,\nIn peril of precipitation\nFrom off the rock Tarpeian never more\nTo enter our Rome gates: i' the people's name,\nI say it shall be so.\n\nCitizens:\nIt shall be so, it shall be so; let him away:\nHe's banish'd, and it shall be so.\n\nCOMINIUS:\nHear me, my masters, and my common friends,--\n\nSICINIUS:\nHe's sentenced; no more hearing.\n\nCOMINIUS:\nLet me speak:\nI have been consul, and can show for Rome\nHer enemies' marks upon me. I do love\nMy country's good with a respect more tender,\nMore holy and profound, than mine own life,\nMy dear wife's estimate, her womb's increase,\nAnd treasure of my loins; then if I would\nSpeak that,--\n\nSICINIUS:\nWe know your drift: speak what?\n\nBRUTUS:\nThere's no more to be said, but he is banish'd,\nAs enemy to the people and his country:\nIt shall be so.\n\nCitizens:\nIt shall be so, it shall be so.\n\nCORIOLANUS:\nYou common cry of curs! whose breath I hate\nAs reek o' the rotten fens, whose loves I prize\nAs the dead carcasses of unburied men\nThat do corrupt my air, I banish you;\nAnd here remain with your uncertainty!\nLet every feeble rumour shake your hearts!\nYour enemies, with nodding of their plumes,\nFan you into despair! Have the power still\nTo banish your defenders; till at length\nYour ignorance, which finds not till it feels,\nMaking not reservation of yourselves,\nStill your own foes, deliver you as most\nAbated captives to some nation\nThat won you without blows! Despising,\nFor you, the city, thus I turn my back:\nThere is a world elsewhere.\n\nAEdile:\nThe people's enemy is gone, is gone!\n\nCitizens:\nOur enemy is banish'd! he is gone! Hoo! hoo!\n\nSICINIUS:\nGo, see him out at gates, and follow him,\nAs he hath followed you, with all despite;\nGive him deserved vexation. Let a guard\nAttend us through the city.\n\nCitizens:\nCome, come; let's see him out at gates; come.\nThe gods preserve our noble tribunes! Come.\n\nCORIOLANUS:\nCome, leave your tears: a brief farewell: the beast\nWith many heads butts me away. Nay, mother,\nWhere is your ancient courage? you were used\nTo say extremity was the trier of spirits;\nThat common chances common men could bear;\nThat when the sea was calm all boats alike\nShow'd mastership in floating; fortune's blows,\nWhen most struck home, being gentle wounded, craves\nA noble cunning: you were used to load me\nWith precepts that would make invincible\nThe heart that conn'd them.\n\nVIRGILIA:\nO heavens! O heavens!\n\nCORIOLANUS:\nNay! prithee, woman,--\n\nVOLUMNIA:\nNow the red pestilence strike all trades in Rome,\nAnd occupations perish!\n\nCORIOLANUS:\nWhat, what, what!\nI shall be loved when I am lack'd. Nay, mother.\nResume that spirit, when you were wont to say,\nIf you had been the wife of Hercules,\nSix of his labours you'ld have done, and saved\nYour husband so much sweat. Cominius,\nDroop not; adieu. Farewell, my wife, my mother:\nI'll do well yet. Thou old and true Menenius,\nThy tears are salter than a younger man's,\nAnd venomous to thine eyes. My sometime general,\nI have seen thee stem, and thou hast oft beheld\nHeart-hardening spectacles; tell these sad women\n'Tis fond to wail inevitable strokes,\nAs 'tis to laugh at 'em. My mother, you wot well\nMy hazards still have been your solace: and\nBelieve't not lightly--though I go alone,\nLike to a lonely dragon, that his fen\nMakes fear'd and talk'd of more than seen--your son\nWill or exceed the common or be caught\nWith cautelous baits and practise.\n\nVOLUMNIA:\nMy first son.\nWhither wilt thou go? Take good Cominius\nWith thee awhile: determine on some course,\nMore than a wild exposture to each chance\nThat starts i' the way before thee.\n\nCORIOLANUS:\nO the gods!\n\nCOMINIUS:\nI'll follow thee a month, devise with thee\nWhere thou shalt rest, that thou mayst hear of us\nAnd we of thee: so if the time thrust forth\nA cause for thy repeal, we shall not send\nO'er the vast world to seek a single man,\nAnd lose advantage, which doth ever cool\nI' the absence of the needer.\n\nCORIOLANUS:\nFare ye well:\nThou hast years upon thee; and thou art too full\nOf the wars' surfeits, to go rove with one\nThat's yet unbruised: bring me but out at gate.\nCome, my sweet wife, my dearest mother, and\nMy friends of noble touch, when I am forth,\nBid me farewell, and smile. I pray you, come.\nWhile I remain above the ground, you shall\nHear from me still, and never of me aught\nBut what is like me formerly.\n\nMENENIUS:\nThat's worthily\nAs any ear can hear. Come, let's not weep.\nIf I could shake off but one seven years\nFrom these old arms and legs, by the good gods,\nI'ld with thee every foot.\n\nCORIOLANUS:\nGive me thy hand: Come.\n\nSICINIUS:\nBid them all home; he's gone, and we'll no further.\nThe nobility are vex'd, whom we see have sided\nIn his behalf.\n\nBRUTUS:\nNow we have shown our power,\nLet us seem humbler after it is done\nThan when it was a-doing.\n\nSICINIUS:\nBid them home:\nSay their great enemy is gone, and they\nStand in their ancient strength.\n\nBRUTUS:\nDismiss them home.\nHere comes his mother.\n\nSICINIUS:\nLet's not meet her.\n\nBRUTUS:\nWhy?\n\nSICINIUS:\nThey say she's mad.\n\nBRUTUS:\nThey have ta'en note of us: keep on your way.\n\nVOLUMNIA:\nO, ye're well met: the hoarded plague o' the gods\nRequite your love!\n\nMENENIUS:\nPeace, peace; be not so loud.\n\nVOLUMNIA:\nIf that I could for weeping, you should hear,--\nNay, and you shall hear some.\nWill you be gone?\n\nVIRGILIA:\n\nSICINIUS:\nAre you mankind?\n\nVOLUMNIA:\nAy, fool; is that a shame? Note but this fool.\nWas not a man my father? Hadst thou foxship\nTo banish him that struck more blows for Rome\nThan thou hast spoken words?\n\nSICINIUS:\nO blessed heavens!\n\nVOLUMNIA:\nMore noble blows than ever thou wise words;\nAnd for Rome's good. I'll tell thee what; yet go:\nNay, but thou shalt stay too: I would my son\nWere in Arabia, and thy tribe before him,\nHis good sword in his hand.\n\nSICINIUS:\nWhat then?\n\nVIRGILIA:\nWhat then!\nHe'ld make an end of thy posterity.\n\nVOLUMNIA:\nBastards and all.\nGood man, the wounds that he does bear for Rome!\n\nMENENIUS:\nCome, come, peace.\n\nSICINIUS:\nI would he had continued to his country\nAs he began, and not unknit himself\nThe noble knot he made.\n\nBRUTUS:\nI would he had.\n\nVOLUMNIA:\n'I would he had'! 'Twas you incensed the rabble:\nCats, that can judge as fitly of his worth\nAs I can of those mysteries which heaven\nWill not have earth to know.\n\nBRUTUS:\nPray, let us go.\n\nVOLUMNIA:\nNow, pray, sir, get you gone:\nYou have done a brave deed. Ere you go, hear this:--\nAs far as doth the Capitol exceed\nThe meanest house in Rome, so far my son--\nThis lady's husband here, this, do you see--\nWhom you have banish'd, does exceed you all.\n\nBRUTUS:\nWell, well, we'll leave you.\n\nSICINIUS:\nWhy stay we to be baited\nWith one that wants her wits?\n\nVOLUMNIA:\nTake my prayers with you.\nI would the gods had nothing else to do\nBut to confirm my curses! Could I meet 'em\nBut once a-day, it would unclog my heart\nOf what lies heavy to't.\n\nMENENIUS:\nYou have told them home;\nAnd, by my troth, you have cause. You'll sup with me?\n\nVOLUMNIA:\nAnger's my meat; I sup upon myself,\nAnd so shall starve with feeding. Come, let's go:\nLeave this faint puling and lament as I do,\nIn anger, Juno-like. Come, come, come.\n\nMENENIUS:\nFie, fie, fie!\n\nRoman:\nI know you well, sir, and you know\nme: your name, I think, is Adrian.\n\nVolsce:\nIt is so, sir: truly, I have forgot you.\n\nRoman:\nI am a Roman; and my services are,\nas you are, against 'em: know you me yet?\n\nVolsce:\nNicanor? no.\n\nRoman:\nThe same, sir.\n\nVolsce:\nYou had more beard when I last saw you; but your\nfavour is well approved by your tongue. What's the\nnews in Rome? I have a note from the Volscian state,\nto find you out there: you have well saved me a\nday's journey.\n\nRoman:\nThere hath been in Rome strange insurrections; the\npeople against the senators, patricians, and nobles.\n\nVolsce:\nHath been! is it ended, then? Our state thinks not\nso: they are in a most warlike preparation, and\nhope to come upon them in the heat of their division.\n\nRoman:\nThe main blaze of it is past, but a small thing\nwould make it flame again: for the nobles receive\nso to heart the banishment of that worthy\nCoriolanus, that they are in a ripe aptness to take\nall power from the people and to pluck from them\ntheir tribunes for ever. This lies glowing, I can\ntell you, and is almost mature for the violent\nbreaking out.\n\nVolsce:\nCoriolanus banished!\n\nRoman:\nBanished, sir.\n\nVolsce:\nYou will be welcome with this intelligence, Nicanor.\n\nRoman:\nThe day serves well for them now. I have heard it\nsaid, the fittest time to corrupt a man's wife is\nwhen she's fallen out with her husband. Your noble\nTullus Aufidius will appear well in these wars, his\ngreat opposer, Coriolanus, being now in no request\nof his country.\n\nVolsce:\nHe cannot choose. I am most fortunate, thus\naccidentally to encounter you: you have ended my\nbusiness, and I will merrily accompany you home.\n\nRoman:\nI shall, between this and supper, tell you most\nstrange things from Rome; all tending to the good of\ntheir adversaries. Have you an army ready, say you?\n\nVolsce:\nA most royal one; the centurions and their charges,\ndistinctly billeted, already in the entertainment,\nand to be on foot at an hour's warning.\n\nRoman:\nI am joyful to hear of their readiness, and am the\nman, I think, that shall set them in present action.\nSo, sir, heartily well met, and most glad of your company.\n\nVolsce:\nYou take my part from me, sir; I have the most cause\nto be glad of yours.\n\nRoman:\nWell, let us go together.\n\nCORIOLANUS:\nA goodly city is this Antium. City,\n'Tis I that made thy widows: many an heir\nOf these fair edifices 'fore my wars\nHave I heard groan and drop: then know me not,\nLest that thy wives with spits and boys with stones\nIn puny battle slay me.\nSave you, sir.\n\nCitizen:\nAnd you.\n\nCORIOLANUS:\nDirect me, if it be your will,\nWhere great Aufidius lies: is he in Antium?\n\nCitizen:\nHe is, and feasts the nobles of the state\nAt his house this night.\n\nCORIOLANUS:\nWhich is his house, beseech you?\n\nCitizen:\nThis, here before you.\n\nCORIOLANUS:\nThank you, sir: farewell.\nO world, thy slippery turns! Friends now fast sworn,\nWhose double bosoms seem to wear one heart,\nWhose house, whose bed, whose meal, and exercise,\nAre still together, who twin, as 'twere, in love\nUnseparable, shall within this hour,\nOn a dissension of a doit, break out\nTo bitterest enmity: so, fellest foes,\nWhose passions and whose plots have broke their sleep,\nTo take the one the other, by some chance,\nSome trick not worth an egg, shall grow dear friends\nAnd interjoin their issues. So with me:\nMy birth-place hate I, and my love's upon\nThis enemy town. I'll enter: if he slay me,\nHe does fair justice; if he give me way,\nI'll do his country service.\n\nFirst Servingman:\nWine, wine, wine! What service\nis here! I think our fellows are asleep.\n\nSecond Servingman:\nWhere's Cotus? my master calls\nfor him. Cotus!\n\nCORIOLANUS:\nA goodly house: the feast smells well; but I\nAppear not like a guest.\n\nFirst Servingman:\nWhat would you have, friend? whence are you?\nHere's no place for you: pray, go to the door.\n\nCORIOLANUS:\nI have deserved no better entertainment,\nIn being Coriolanus.\n\nSecond Servingman:\nWhence are you, sir? Has the porter his eyes in his\nhead; that he gives entrance to such companions?\nPray, get you out.\n\nCORIOLANUS:\nAway!\n\nSecond Servingman:\nAway! get you away.\n\nCORIOLANUS:\nNow thou'rt troublesome.\n\nSecond Servingman:\nAre you so brave? I'll have you talked with anon.\n\nThird Servingman:\nWhat fellow's this?\n\nFirst Servingman:\nA strange one as ever I looked on: I cannot get him\nout of the house: prithee, call my master to him.\n\nThird Servingman:\nWhat have you to do here, fellow? Pray you, avoid\nthe house.\n\nCORIOLANUS:\nLet me but stand; I will not hurt your hearth.\n\nThird Servingman:\nWhat are you?\n\nCORIOLANUS:\nA gentleman.\n\nThird Servingman:\nA marvellous poor one.\n\nCORIOLANUS:\nTrue, so I am.\n\nThird Servingman:\nPray you, poor gentleman, take up some other\nstation; here's no place for you; pray you, avoid: come.\n\nCORIOLANUS:\nFollow your function, go, and batten on cold bits.\n\nThird Servingman:\nWhat, you will not? Prithee, tell my master what a\nstrange guest he has here.\n\nSecond Servingman:\nAnd I shall.\n\nThird Servingman:\nWhere dwellest thou?\n\nCORIOLANUS:\nUnder the canopy.\n\nThird Servingman:\nUnder the canopy!\n\nCORIOLANUS:\nAy.\n\nThird Servingman:\nWhere's that?\n\nCORIOLANUS:\nI' the city of kites and crows.\n\nThird Servingman:\nI' the city of kites and crows! What an ass it is!\nThen thou dwellest with daws too?\n\nCORIOLANUS:\nNo, I serve not thy master.\n\nThird Servingman:\nHow, sir! do you meddle with my master?\n\nCORIOLANUS:\nAy; 'tis an honester service than to meddle with thy\nmistress. Thou pratest, and pratest; serve with thy\ntrencher, hence!\n\nAUFIDIUS:\nWhere is this fellow?\n\nSecond Servingman:\nHere, sir: I'ld have beaten him like a dog, but for\ndisturbing the lords within.\n\nAUFIDIUS:\nWhence comest thou? what wouldst thou? thy name?\nWhy speak'st not? speak, man: what's thy name?\n\nCORIOLANUS:\nIf, Tullus,\nNot yet thou knowest me, and, seeing me, dost not\nThink me for the man I am, necessity\nCommands me name myself.\n\nAUFIDIUS:\nWhat is thy name?\n\nCORIOLANUS:\nA name unmusical to the Volscians' ears,\nAnd harsh in sound to thine.\n\nAUFIDIUS:\nSay, what's thy name?\nThou hast a grim appearance, and thy face\nBears a command in't; though thy tackle's torn.\nThou show'st a noble vessel: what's thy name?\n\nCORIOLANUS:\nPrepare thy brow to frown: know'st\nthou me yet?\n\nAUFIDIUS:\nI know thee not: thy name?\n\nCORIOLANUS:\nMy name is Caius Marcius, who hath done\nTo thee particularly and to all the Volsces\nGreat hurt and mischief; thereto witness may\nMy surname, Coriolanus: the painful service,\nThe extreme dangers and the drops of blood\nShed for my thankless country are requited\nBut with that surname; a good memory,\nAnd witness of the malice and displeasure\nWhich thou shouldst bear me: only that name remains;\nThe cruelty and envy of the people,\nPermitted by our dastard nobles, who\nHave all forsook me, hath devour'd the rest;\nAnd suffer'd me by the voice of slaves to be\nWhoop'd out of Rome. Now this extremity\nHath brought me to thy hearth; not out of hope--\nMistake me not--to save my life, for if\nI had fear'd death, of all the men i' the world\nI would have 'voided thee, but in mere spite,\nTo be full quit of those my banishers,\nStand I before thee here. Then if thou hast\nA heart of wreak in thee, that wilt revenge\nThine own particular wrongs and stop those maims\nOf shame seen through thy country, speed\nthee straight,\nAnd make my misery serve thy turn: so use it\nThat my revengeful services may prove\nAs benefits to thee, for I will fight\nAgainst my canker'd country with the spleen\nOf all the under fiends. But if so be\nThou darest not this and that to prove more fortunes\nThou'rt tired, then, in a word, I also am\nLonger to live most weary, and present\nMy throat to thee and to thy ancient malice;\nWhich not to cut would show thee but a fool,\nSince I have ever follow'd thee with hate,\nDrawn tuns of blood out of thy country's breast,\nAnd cannot live but to thy shame, unless\nIt be to do thee service.\n\nAUFIDIUS:\nO Marcius, Marcius!\nEach word thou hast spoke hath weeded from my heart\nA root of ancient envy. If Jupiter\nShould from yond cloud speak divine things,\nAnd say 'Tis true,' I'ld not believe them more\nThan thee, all noble Marcius. Let me twine\nMine arms about that body, where against\nMy grained ash an hundred times hath broke\nAnd scarr'd the moon with splinters: here I clip\nThe anvil of my sword, and do contest\nAs hotly and as nobly with thy love\nAs ever in ambitious strength I did\nContend against thy valour. Know thou first,\nI loved the maid I married; never man\nSigh'd truer breath; but that I see thee here,\nThou noble thing! more dances my rapt heart\nThan when I first my wedded mistress saw\nBestride my threshold. Why, thou Mars! I tell thee,\nWe have a power on foot; and I had purpose\nOnce more to hew thy target from thy brawn,\nOr lose mine arm fort: thou hast beat me out\nTwelve several times, and I have nightly since\nDreamt of encounters 'twixt thyself and me;\nWe have been down together in my sleep,\nUnbuckling helms, fisting each other's throat,\nAnd waked half dead with nothing. Worthy Marcius,\nHad we no quarrel else to Rome, but that\nThou art thence banish'd, we would muster all\nFrom twelve to seventy, and pouring war\nInto the bowels of ungrateful Rome,\nLike a bold flood o'er-bear. O, come, go in,\nAnd take our friendly senators by the hands;\nWho now are here, taking their leaves of me,\nWho am prepared against your territories,\nThough not for Rome itself.\n\nCORIOLANUS:\nYou bless me, gods!\n\nAUFIDIUS:\nTherefore, most absolute sir, if thou wilt have\nThe leading of thine own revenges, take\nThe one half of my commission; and set down--\nAs best thou art experienced, since thou know'st\nThy country's strength and weakness,--thine own ways;\nWhether to knock against the gates of Rome,\nOr rudely visit them in parts remote,\nTo fright them, ere destroy. But come in:\nLet me commend thee first to those that shall\nSay yea to thy desires. A thousand welcomes!\nAnd more a friend than e'er an enemy;\nYet, Marcius, that was much. Your hand: most welcome!\n\nFirst Servingman:\nHere's a strange alteration!\n\nSecond Servingman:\nBy my hand, I had thought to have strucken him with\na cudgel; and yet my mind gave me his clothes made a\nfalse report of him.\n\nFirst Servingman:\nWhat an arm he has! he turned me about with his\nfinger and his thumb, as one would set up a top.\n\nSecond Servingman:\nNay, I knew by his face that there was something in\nhim: he had, sir, a kind of face, methought,--I\ncannot tell how to term it.\n\nFirst Servingman:\nHe had so; looking as it were--would I were hanged,\nbut I thought there was more in him than I could think.\n\nSecond Servingman:\nSo did I, I'll be sworn: he is simply the rarest\nman i' the world.\n\nFirst Servingman:\nI think he is: but a greater soldier than he you wot on.\n\nSecond Servingman:\nWho, my master?\n\nFirst Servingman:\nNay, it's no matter for that.\n\nSecond Servingman:\nWorth six on him.\n\nFirst Servingman:\nNay, not so neither: but I take him to be the\ngreater soldier.\n\nSecond Servingman:\nFaith, look you, one cannot tell how to say that:\nfor the defence of a town, our general is excellent.\n\nFirst Servingman:\nAy, and for an assault too.\n\nThird Servingman:\nO slaves, I can tell you news,-- news, you rascals!\n\nFirst Servingman:\nWhat, what, what? let's partake.\n\nThird Servingman:\nI would not be a Roman, of all nations; I had as\nlieve be a condemned man.\n\nFirst Servingman:\nWherefore? wherefore?\n\nThird Servingman:\nWhy, here's he that was wont to thwack our general,\nCaius Marcius.\n\nFirst Servingman:\nWhy do you say 'thwack our general '?\n\nThird Servingman:\nI do not say 'thwack our general;' but he was always\ngood enough for him.\n\nSecond Servingman:\nCome, we are fellows and friends: he was ever too\nhard for him; I have heard him say so himself.\n\nFirst Servingman:\nHe was too hard for him directly, to say the troth\non't: before Corioli he scotched him and notched\nhim like a carbon ado.\n\nSecond Servingman:\nAn he had been cannibally given, he might have\nbroiled and eaten him too.\n\nFirst Servingman:\nBut, more of thy news?\n\nThird Servingman:\nWhy, he is so made on here within, as if he were son\nand heir to Mars; set at upper end o' the table; no\nquestion asked him by any of the senators, but they\nstand bald before him: our general himself makes a\nmistress of him: sanctifies himself with's hand and\nturns up the white o' the eye to his discourse. But\nthe bottom of the news is that our general is cut i'\nthe middle and but one half of what he was\nyesterday; for the other has half, by the entreaty\nand grant of the whole table. He'll go, he says,\nand sowl the porter of Rome gates by the ears: he\nwill mow all down before him, and leave his passage polled.\n\nSecond Servingman:\nAnd he's as like to do't as any man I can imagine.\n\nThird Servingman:\nDo't! he will do't; for, look you, sir, he has as\nmany friends as enemies; which friends, sir, as it\nwere, durst not, look you, sir, show themselves, as\nwe term it, his friends whilst he's in directitude.\n\nFirst Servingman:\nDirectitude! what's that?\n\nThird Servingman:\nBut when they shall see, sir, his crest up again,\nand the man in blood, they will out of their\nburrows, like conies after rain, and revel all with\nhim.\n\nFirst Servingman:\nBut when goes this forward?\n\nThird Servingman:\nTo-morrow; to-day; presently; you shall have the\ndrum struck up this afternoon: 'tis, as it were, a\nparcel of their feast, and to be executed ere they\nwipe their lips.\n\nSecond Servingman:\nWhy, then we shall have a stirring world again.\nThis peace is nothing, but to rust iron, increase\ntailors, and breed ballad-makers.\n\nFirst Servingman:\nLet me have war, say I; it exceeds peace as far as\nday does night; it's spritely, waking, audible, and\nfull of vent. Peace is a very apoplexy, lethargy;\nmulled, deaf, sleepy, insensible; a getter of more\nbastard children than war's a destroyer of men.\n\nSecond Servingman:\n'Tis so: and as war, in some sort, may be said to\nbe a ravisher, so it cannot be denied but peace is a\ngreat maker of cuckolds.\n\nFirst Servingman:\nAy, and it makes men hate one another.\n\nThird Servingman:\nReason; because they then less need one another.\nThe wars for my money. I hope to see Romans as cheap\nas Volscians. They are rising, they are rising.\n\nAll:\nIn, in, in, in!\n\nSICINIUS:\nWe hear not of him, neither need we fear him;\nHis remedies are tame i' the present peace\nAnd quietness of the people, which before\nWere in wild hurry. Here do we make his friends\nBlush that the world goes well, who rather had,\nThough they themselves did suffer by't, behold\nDissentious numbers pestering streets than see\nOur tradesmen with in their shops and going\nAbout their functions friendly.\n\nBRUTUS:\nWe stood to't in good time.\nIs this Menenius?\n\nSICINIUS:\n'Tis he,'tis he: O, he is grown most kind of late.\n\nBoth Tribunes:\nHail sir!\n\nMENENIUS:\nHail to you both!\n\nSICINIUS:\nYour Coriolanus\nIs not much miss'd, but with his friends:\nThe commonwealth doth stand, and so would do,\nWere he more angry at it.\n\nMENENIUS:\nAll's well; and might have been much better, if\nHe could have temporized.\n\nSICINIUS:\nWhere is he, hear you?\n\nMENENIUS:\nNay, I hear nothing: his mother and his wife\nHear nothing from him.\n\nCitizens:\nThe gods preserve you both!\n\nSICINIUS:\nGod-den, our neighbours.\n\nBRUTUS:\nGod-den to you all, god-den to you all.\n\nFirst Citizen:\nOurselves, our wives, and children, on our knees,\nAre bound to pray for you both.\n\nSICINIUS:\nLive, and thrive!\n\nBRUTUS:\nFarewell, kind neighbours: we wish'd Coriolanus\nHad loved you as we did.\n\nCitizens:\nNow the gods keep you!\n\nBoth Tribunes:\nFarewell, farewell.\n\nSICINIUS:\nThis is a happier and more comely time\nThan when these fellows ran about the streets,\nCrying confusion.\n\nBRUTUS:\nCaius Marcius was\nA worthy officer i' the war; but insolent,\nO'ercome with pride, ambitious past all thinking,\nSelf-loving,--\n\nSICINIUS:\nAnd affecting one sole throne,\nWithout assistance.\n\nMENENIUS:\nI think not so.\n\nSICINIUS:\nWe should by this, to all our lamentation,\nIf he had gone forth consul, found it so.\n\nBRUTUS:\nThe gods have well prevented it, and Rome\nSits safe and still without him.\n\nAEdile:\nWorthy tribunes,\nThere is a slave, whom we have put in prison,\nReports, the Volsces with two several powers\nAre enter'd in the Roman territories,\nAnd with the deepest malice of the war\nDestroy what lies before 'em.\n\nMENENIUS:\n'Tis Aufidius,\nWho, hearing of our Marcius' banishment,\nThrusts forth his horns again into the world;\nWhich were inshell'd when Marcius stood for Rome,\nAnd durst not once peep out.\n\nSICINIUS:\nCome, what talk you\nOf Marcius?\n\nBRUTUS:\nGo see this rumourer whipp'd. It cannot be\nThe Volsces dare break with us.\n\nMENENIUS:\nCannot be!\nWe have record that very well it can,\nAnd three examples of the like have been\nWithin my age. But reason with the fellow,\nBefore you punish him, where he heard this,\nLest you shall chance to whip your information\nAnd beat the messenger who bids beware\nOf what is to be dreaded.\n\nSICINIUS:\nTell not me:\nI know this cannot be.\n\nBRUTUS:\nNot possible.\n\nMessenger:\nThe nobles in great earnestness are going\nAll to the senate-house: some news is come\nThat turns their countenances.\n\nSICINIUS:\n'Tis this slave;--\nGo whip him, 'fore the people's eyes:--his raising;\nNothing but his report.\n\nMessenger:\nYes, worthy sir,\nThe slave's report is seconded; and more,\nMore fearful, is deliver'd.\n\nSICINIUS:\nWhat more fearful?\n\nMessenger:\nIt is spoke freely out of many mouths--\nHow probable I do not know--that Marcius,\nJoin'd with Aufidius, leads a power 'gainst Rome,\nAnd vows revenge as spacious as between\nThe young'st and oldest thing.\n\nSICINIUS:\nThis is most likely!\n\nBRUTUS:\nRaised only, that the weaker sort may wish\nGood Marcius home again.\n\nSICINIUS:\nThe very trick on't.\n\nMENENIUS:\nThis is unlikely:\nHe and Aufidius can no more atone\nThan violentest contrariety.\n\nSecond Messenger:\nYou are sent for to the senate:\nA fearful army, led by Caius Marcius\nAssociated with Aufidius, rages\nUpon our territories; and have already\nO'erborne their way, consumed with fire, and took\nWhat lay before them.\n\nCOMINIUS:\nO, you have made good work!\n\nMENENIUS:\nWhat news? what news?\n\nCOMINIUS:\nYou have holp to ravish your own daughters and\nTo melt the city leads upon your pates,\nTo see your wives dishonour'd to your noses,--\n\nMENENIUS:\nWhat's the news? what's the news?\n\nCOMINIUS:\nYour temples burned in their cement, and\nYour franchises, whereon you stood, confined\nInto an auger's bore.\n\nMENENIUS:\nPray now, your news?\nYou have made fair work, I fear me.--Pray, your news?--\nIf Marcius should be join'd with Volscians,--\n\nCOMINIUS:\nIf!\nHe is their god: he leads them like a thing\nMade by some other deity than nature,\nThat shapes man better; and they follow him,\nAgainst us brats, with no less confidence\nThan boys pursuing summer butterflies,\nOr butchers killing flies.\n\nMENENIUS:\nYou have made good work,\nYou and your apron-men; you that stood so up much\non the voice of occupation and\nThe breath of garlic-eaters!\n\nCOMINIUS:\nHe will shake\nYour Rome about your ears.\n\nMENENIUS:\nAs Hercules\nDid shake down mellow fruit.\nYou have made fair work!\n\nBRUTUS:\nBut is this true, sir?\n\nCOMINIUS:\nAy; and you'll look pale\nBefore you find it other. All the regions\nDo smilingly revolt; and who resist\nAre mock'd for valiant ignorance,\nAnd perish constant fools. Who is't can blame him?\nYour enemies and his find something in him.\n\nMENENIUS:\nWe are all undone, unless\nThe noble man have mercy.\n\nCOMINIUS:\nWho shall ask it?\nThe tribunes cannot do't for shame; the people\nDeserve such pity of him as the wolf\nDoes of the shepherds: for his best friends, if they\nShould say 'Be good to Rome,' they charged him even\nAs those should do that had deserved his hate,\nAnd therein show'd like enemies.\n\nMENENIUS:\n'Tis true:\nIf he were putting to my house the brand\nThat should consume it, I have not the face\nTo say 'Beseech you, cease.' You have made fair hands,\nYou and your crafts! you have crafted fair!\n\nCOMINIUS:\nYou have brought\nA trembling upon Rome, such as was never\nSo incapable of help.\n\nBoth Tribunes:\nSay not we brought it.\n\nMENENIUS:\nHow! Was it we? we loved him but, like beasts\nAnd cowardly nobles, gave way unto your clusters,\nWho did hoot him out o' the city.\n\nCOMINIUS:\nBut I fear\nThey'll roar him in again. Tullus Aufidius,\nThe second name of men, obeys his points\nAs if he were his officer: desperation\nIs all the policy, strength and defence,\nThat Rome can make against them.\n\nMENENIUS:\nHere come the clusters.\nAnd is Aufidius with him? You are they\nThat made the air unwholesome, when you cast\nYour stinking greasy caps in hooting at\nCoriolanus' exile. Now he's coming;\nAnd not a hair upon a soldier's head\nWhich will not prove a whip: as many coxcombs\nAs you threw caps up will he tumble down,\nAnd pay you for your voices. 'Tis no matter;\nif he could burn us all into one coal,\nWe have deserved it.\n\nCitizens:\nFaith, we hear fearful news.\n\nFirst Citizen:\nFor mine own part,\nWhen I said, banish him, I said 'twas pity.\n\nSecond Citizen:\nAnd so did I.\n\nThird Citizen:\nAnd so did I; and, to say the truth, so did very\nmany of us: that we did, we did for the best; and\nthough we willingly consented to his banishment, yet\nit was against our will.\n\nCOMINIUS:\nYe re goodly things, you voices!\n\nMENENIUS:\nYou have made\nGood work, you and your cry! Shall's to the Capitol?\n\nCOMINIUS:\nO, ay, what else?\n\nSICINIUS:\nGo, masters, get you home; be not dismay'd:\nThese are a side that would be glad to have\nThis true which they so seem to fear. Go home,\nAnd show no sign of fear.\n\nFirst Citizen:\nThe gods be good to us! Come, masters, let's home.\nI ever said we were i' the wrong when we banished\nhim.\n\nSecond Citizen:\nSo did we all. But, come, let's home.\n\nBRUTUS:\nI do not like this news.\n\nSICINIUS:\nNor I.\n\nBRUTUS:\nLet's to the Capitol. Would half my wealth\nWould buy this for a lie!\n\nSICINIUS:\nPray, let us go.\n\nAUFIDIUS:\nDo they still fly to the Roman?\n\nLieutenant:\nI do not know what witchcraft's in him, but\nYour soldiers use him as the grace 'fore meat,\nTheir talk at table, and their thanks at end;\nAnd you are darken'd in this action, sir,\nEven by your own.\n\nAUFIDIUS:\nI cannot help it now,\nUnless, by using means, I lame the foot\nOf our design. He bears himself more proudlier,\nEven to my person, than I thought he would\nWhen first I did embrace him: yet his nature\nIn that's no changeling; and I must excuse\nWhat cannot be amended.\n\nLieutenant:\nYet I wish, sir,--\nI mean for your particular,--you had not\nJoin'd in commission with him; but either\nHad borne the action of yourself, or else\nTo him had left it solely.\n\nAUFIDIUS:\nI understand thee well; and be thou sure,\nwhen he shall come to his account, he knows not\nWhat I can urge against him. Although it seems,\nAnd so he thinks, and is no less apparent\nTo the vulgar eye, that he bears all things fairly.\nAnd shows good husbandry for the Volscian state,\nFights dragon-like, and does achieve as soon\nAs draw his sword; yet he hath left undone\nThat which shall break his neck or hazard mine,\nWhene'er we come to our account.\n\nLieutenant:\nSir, I beseech you, think you he'll carry Rome?\n\nAUFIDIUS:\nAll places yield to him ere he sits down;\nAnd the nobility of Rome are his:\nThe senators and patricians love him too:\nThe tribunes are no soldiers; and their people\nWill be as rash in the repeal, as hasty\nTo expel him thence. I think he'll be to Rome\nAs is the osprey to the fish, who takes it\nBy sovereignty of nature. First he was\nA noble servant to them; but he could not\nCarry his honours even: whether 'twas pride,\nWhich out of daily fortune ever taints\nThe happy man; whether defect of judgment,\nTo fail in the disposing of those chances\nWhich he was lord of; or whether nature,\nNot to be other than one thing, not moving\nFrom the casque to the cushion, but commanding peace\nEven with the same austerity and garb\nAs he controll'd the war; but one of these--\nAs he hath spices of them all, not all,\nFor I dare so far free him--made him fear'd,\nSo hated, and so banish'd: but he has a merit,\nTo choke it in the utterance. So our virtues\nLie in the interpretation of the time:\nAnd power, unto itself most commendable,\nHath not a tomb so evident as a chair\nTo extol what it hath done.\nOne fire drives out one fire; one nail, one nail;\nRights by rights falter, strengths by strengths do fail.\nCome, let's away. When, Caius, Rome is thine,\nThou art poor'st of all; then shortly art thou mine.\n\nMENENIUS:\nNo, I'll not go: you hear what he hath said\nWhich was sometime his general; who loved him\nIn a most dear particular. He call'd me father:\nBut what o' that? Go, you that banish'd him;\nA mile before his tent fall down, and knee\nThe way into his mercy: nay, if he coy'd\nTo hear Cominius speak, I'll keep at home.\n\nCOMINIUS:\nHe would not seem to know me.\n\nMENENIUS:\nDo you hear?\n\nCOMINIUS:\nYet one time he did call me by my name:\nI urged our old acquaintance, and the drops\nThat we have bled together. Coriolanus\nHe would not answer to: forbad all names;\nHe was a kind of nothing, titleless,\nTill he had forged himself a name o' the fire\nOf burning Rome.\n\nMENENIUS:\nWhy, so: you have made good work!\nA pair of tribunes that have rack'd for Rome,\nTo make coals cheap,--a noble memory!\n\nCOMINIUS:\nI minded him how royal 'twas to pardon\nWhen it was less expected: he replied,\nIt was a bare petition of a state\nTo one whom they had punish'd.\n\nMENENIUS:\nVery well:\nCould he say less?\n\nCOMINIUS:\nI offer'd to awaken his regard\nFor's private friends: his answer to me was,\nHe could not stay to pick them in a pile\nOf noisome musty chaff: he said 'twas folly,\nFor one poor grain or two, to leave unburnt,\nAnd still to nose the offence.\n\nMENENIUS:\nFor one poor grain or two!\nI am one of those; his mother, wife, his child,\nAnd this brave fellow too, we are the grains:\nYou are the musty chaff; and you are smelt\nAbove the moon: we must be burnt for you.\n\nSICINIUS:\nNay, pray, be patient: if you refuse your aid\nIn this so never-needed help, yet do not\nUpbraid's with our distress. But, sure, if you\nWould be your country's pleader, your good tongue,\nMore than the instant army we can make,\nMight stop our countryman.\n\nMENENIUS:\nNo, I'll not meddle.\n\nSICINIUS:\nPray you, go to him.\n\nMENENIUS:\nWhat should I do?\n\nBRUTUS:\nOnly make trial what your love can do\nFor Rome, towards Marcius.\n\nMENENIUS:\nWell, and say that Marcius\nReturn me, as Cominius is return'd,\nUnheard; what then?\nBut as a discontented friend, grief-shot\nWith his unkindness? say't be so?\n\nSICINIUS:\nYet your good will\nmust have that thanks from Rome, after the measure\nAs you intended well.\n\nMENENIUS:\nI'll undertake 't:\nI think he'll hear me. Yet, to bite his lip\nAnd hum at good Cominius, much unhearts me.\nHe was not taken well; he had not dined:\nThe veins unfill'd, our blood is cold, and then\nWe pout upon the morning, are unapt\nTo give or to forgive; but when we have stuff'd\nThese and these conveyances of our blood\nWith wine and feeding, we have suppler souls\nThan in our priest-like fasts: therefore I'll watch him\nTill he be dieted to my request,\nAnd then I'll set upon him.\n\nBRUTUS:\nYou know the very road into his kindness,\nAnd cannot lose your way.\n\nMENENIUS:\nGood faith, I'll prove him,\nSpeed how it will. I shall ere long have knowledge\nOf my success.\n\nCOMINIUS:\nHe'll never hear him.\n\nSICINIUS:\nNot?\n\nCOMINIUS:\nI tell you, he does sit in gold, his eye\nRed as 'twould burn Rome; and his injury\nThe gaoler to his pity. I kneel'd before him;\n'Twas very faintly he said 'Rise;' dismiss'd me\nThus, with his speechless hand: what he would do,\nHe sent in writing after me; what he would not,\nBound with an oath to yield to his conditions:\nSo that all hope is vain.\nUnless his noble mother, and his wife;\nWho, as I hear, mean to solicit him\nFor mercy to his country. Therefore, let's hence,\nAnd with our fair entreaties haste them on.\n\nFirst Senator:\nStay: whence are you?\n\nSecond Senator:\nStand, and go back.\n\nMENENIUS:\nYou guard like men; 'tis well: but, by your leave,\nI am an officer of state, and come\nTo speak with Coriolanus.\n\nFirst Senator:\nFrom whence?\n\nMENENIUS:\nFrom Rome.\n\nFirst Senator:\nYou may not pass, you must return: our general\nWill no more hear from thence.\n\nSecond Senator:\nYou'll see your Rome embraced with fire before\nYou'll speak with Coriolanus.\n\nMENENIUS:\nGood my friends,\nIf you have heard your general talk of Rome,\nAnd of his friends there, it is lots to blanks,\nMy name hath touch'd your ears it is Menenius.\n\nFirst Senator:\nBe it so; go back: the virtue of your name\nIs not here passable.\n\nMENENIUS:\nI tell thee, fellow,\nThe general is my lover: I have been\nThe book of his good acts, whence men have read\nHis name unparallel'd, haply amplified;\nFor I have ever verified my friends,\nOf whom he's chief, with all the size that verity\nWould without lapsing suffer: nay, sometimes,\nLike to a bowl upon a subtle ground,\nI have tumbled past the throw; and in his praise\nHave almost stamp'd the leasing: therefore, fellow,\nI must have leave to pass.\n\nFirst Senator:\nFaith, sir, if you had told as many lies in his\nbehalf as you have uttered words in your own, you\nshould not pass here; no, though it were as virtuous\nto lie as to live chastely. Therefore, go back.\n\nMENENIUS:\nPrithee, fellow, remember my name is Menenius,\nalways factionary on the party of your general.\n\nSecond Senator:\nHowsoever you have been his liar, as you say you\nhave, I am one that, telling true under him, must\nsay, you cannot pass. Therefore, go back.\n\nMENENIUS:\nHas he dined, canst thou tell? for I would not\nspeak with him till after dinner.\n\nFirst Senator:\nYou are a Roman, are you?\n\nMENENIUS:\nI am, as thy general is.\n\nFirst Senator:\nThen you should hate Rome, as he does. Can you,\nwhen you have pushed out your gates the very\ndefender of them, and, in a violent popular\nignorance, given your enemy your shield, think to\nfront his revenges with the easy groans of old\nwomen, the virginal palms of your daughters, or with\nthe palsied intercession of such a decayed dotant as\nyou seem to be? Can you think to blow out the\nintended fire your city is ready to flame in, with\nsuch weak breath as this? No, you are deceived;\ntherefore, back to Rome, and prepare for your\nexecution: you are condemned, our general has sworn\nyou out of reprieve and pardon.\n\nMENENIUS:\nSirrah, if thy captain knew I were here, he would\nuse me with estimation.\n\nSecond Senator:\nCome, my captain knows you not.\n\nMENENIUS:\nI mean, thy general.\n\nFirst Senator:\nMy general cares not for you. Back, I say, go; lest\nI let forth your half-pint of blood; back,--that's\nthe utmost of your having: back.\n\nMENENIUS:\nNay, but, fellow, fellow,--\n\nCORIOLANUS:\nWhat's the matter?\n\nMENENIUS:\nNow, you companion, I'll say an errand for you:\nYou shall know now that I am in estimation; you shall\nperceive that a Jack guardant cannot office me from\nmy son Coriolanus: guess, but by my entertainment\nwith him, if thou standest not i' the state of\nhanging, or of some death more long in\nspectatorship, and crueller in suffering; behold now\npresently, and swoon for what's to come upon thee.\nThe glorious gods sit in hourly synod about thy\nparticular prosperity, and love thee no worse than\nthy old father Menenius does! O my son, my son!\nthou art preparing fire for us; look thee, here's\nwater to quench it. I was hardly moved to come to\nthee; but being assured none but myself could move\nthee, I have been blown out of your gates with\nsighs; and conjure thee to pardon Rome, and thy\npetitionary countrymen. The good gods assuage thy\nwrath, and turn the dregs of it upon this varlet\nhere,--this, who, like a block, hath denied my\naccess to thee.\n\nCORIOLANUS:\nAway!\n\nMENENIUS:\nHow! away!\n\nCORIOLANUS:\nWife, mother, child, I know not. My affairs\nAre servanted to others: though I owe\nMy revenge properly, my remission lies\nIn Volscian breasts. That we have been familiar,\nIngrate forgetfulness shall poison, rather\nThan pity note how much. Therefore, be gone.\nMine ears against your suits are stronger than\nYour gates against my force. Yet, for I loved thee,\nTake this along; I writ it for thy sake\nAnd would have rent it. Another word, Menenius,\nI will not hear thee speak. This man, Aufidius,\nWas my beloved in Rome: yet thou behold'st!\n\nAUFIDIUS:\nYou keep a constant temper.\n\nFirst Senator:\nNow, sir, is your name Menenius?\n\nSecond Senator:\n'Tis a spell, you see, of much power: you know the\nway home again.\n\nFirst Senator:\nDo you hear how we are shent for keeping your\ngreatness back?\n\nSecond Senator:\nWhat cause, do you think, I have to swoon?\n\nMENENIUS:\nI neither care for the world nor your general: for\nsuch things as you, I can scarce think there's any,\nye're so slight. He that hath a will to die by\nhimself fears it not from another: let your general\ndo his worst. For you, be that you are, long; and\nyour misery increase with your age! I say to you,\nas I was said to, Away!\n\nFirst Senator:\nA noble fellow, I warrant him.\n\nSecond Senator:\nThe worthy fellow is our general: he's the rock, the\noak not to be wind-shaken.\n\nCORIOLANUS:\nWe will before the walls of Rome tomorrow\nSet down our host. My partner in this action,\nYou must report to the Volscian lords, how plainly\nI have borne this business.\n\nAUFIDIUS:\nOnly their ends\nYou have respected; stopp'd your ears against\nThe general suit of Rome; never admitted\nA private whisper, no, not with such friends\nThat thought them sure of you.\n\nCORIOLANUS:\nThis last old man,\nWhom with a crack'd heart I have sent to Rome,\nLoved me above the measure of a father;\nNay, godded me, indeed. Their latest refuge\nWas to send him; for whose old love I have,\nThough I show'd sourly to him, once more offer'd\nThe first conditions, which they did refuse\nAnd cannot now accept; to grace him only\nThat thought he could do more, a very little\nI have yielded to: fresh embassies and suits,\nNor from the state nor private friends, hereafter\nWill I lend ear to. Ha! what shout is this?\nShall I be tempted to infringe my vow\nIn the same time 'tis made? I will not.\nMy wife comes foremost; then the honour'd mould\nWherein this trunk was framed, and in her hand\nThe grandchild to her blood. But, out, affection!\nAll bond and privilege of nature, break!\nLet it be virtuous to be obstinate.\nWhat is that curt'sy worth? or those doves' eyes,\nWhich can make gods forsworn? I melt, and am not\nOf stronger earth than others. My mother bows;\nAs if Olympus to a molehill should\nIn supplication nod: and my young boy\nHath an aspect of intercession, which\nGreat nature cries 'Deny not.' let the Volsces\nPlough Rome and harrow Italy: I'll never\nBe such a gosling to obey instinct, but stand,\nAs if a man were author of himself\nAnd knew no other kin.\n\nVIRGILIA:\nMy lord and husband!\n\nCORIOLANUS:\nThese eyes are not the same I wore in Rome.\n\nVIRGILIA:\nThe sorrow that delivers us thus changed\nMakes you think so.\n\nCORIOLANUS:\nLike a dull actor now,\nI have forgot my part, and I am out,\nEven to a full disgrace. Best of my flesh,\nForgive my tyranny; but do not say\nFor that 'Forgive our Romans.' O, a kiss\nLong as my exile, sweet as my revenge!\nNow, by the jealous queen of heaven, that kiss\nI carried from thee, dear; and my true lip\nHath virgin'd it e'er since. You gods! I prate,\nAnd the most noble mother of the world\nLeave unsaluted: sink, my knee, i' the earth;\nOf thy deep duty more impression show\nThan that of common sons.\n\nVOLUMNIA:\nO, stand up blest!\nWhilst, with no softer cushion than the flint,\nI kneel before thee; and unproperly\nShow duty, as mistaken all this while\nBetween the child and parent.\n\nCORIOLANUS:\nWhat is this?\nYour knees to me? to your corrected son?\nThen let the pebbles on the hungry beach\nFillip the stars; then let the mutinous winds\nStrike the proud cedars 'gainst the fiery sun;\nMurdering impossibility, to make\nWhat cannot be, slight work.\n\nVOLUMNIA:\nThou art my warrior;\nI holp to frame thee. Do you know this lady?\n\nCORIOLANUS:\nThe noble sister of Publicola,\nThe moon of Rome, chaste as the icicle\nThat's curdied by the frost from purest snow\nAnd hangs on Dian's temple: dear Valeria!\n\nVOLUMNIA:\nThis is a poor epitome of yours,\nWhich by the interpretation of full time\nMay show like all yourself.\n\nCORIOLANUS:\nThe god of soldiers,\nWith the consent of supreme Jove, inform\nThy thoughts with nobleness; that thou mayst prove\nTo shame unvulnerable, and stick i' the wars\nLike a great sea-mark, standing every flaw,\nAnd saving those that eye thee!\n\nVOLUMNIA:\nYour knee, sirrah.\n\nCORIOLANUS:\nThat's my brave boy!\n\nVOLUMNIA:\nEven he, your wife, this lady, and myself,\nAre suitors to you.\n\nCORIOLANUS:\nI beseech you, peace:\nOr, if you'ld ask, remember this before:\nThe thing I have forsworn to grant may never\nBe held by you denials. Do not bid me\nDismiss my soldiers, or capitulate\nAgain with Rome's mechanics: tell me not\nWherein I seem unnatural: desire not\nTo ally my rages and revenges with\nYour colder reasons.\n\nVOLUMNIA:\nO, no more, no more!\nYou have said you will not grant us any thing;\nFor we have nothing else to ask, but that\nWhich you deny already: yet we will ask;\nThat, if you fail in our request, the blame\nMay hang upon your hardness: therefore hear us.\n\nCORIOLANUS:\nAufidius, and you Volsces, mark; for we'll\nHear nought from Rome in private. Your request?\n\nVOLUMNIA:\nShould we be silent and not speak, our raiment\nAnd state of bodies would bewray what life\nWe have led since thy exile. Think with thyself\nHow more unfortunate than all living women\nAre we come hither: since that thy sight,\nwhich should\nMake our eyes flow with joy, hearts dance\nwith comforts,\nConstrains them weep and shake with fear and sorrow;\nMaking the mother, wife and child to see\nThe son, the husband and the father tearing\nHis country's bowels out. And to poor we\nThine enmity's most capital: thou barr'st us\nOur prayers to the gods, which is a comfort\nThat all but we enjoy; for how can we,\nAlas, how can we for our country pray.\nWhereto we are bound, together with thy victory,\nWhereto we are bound? alack, or we must lose\nThe country, our dear nurse, or else thy person,\nOur comfort in the country. We must find\nAn evident calamity, though we had\nOur wish, which side should win: for either thou\nMust, as a foreign recreant, be led\nWith manacles thorough our streets, or else\ntriumphantly tread on thy country's ruin,\nAnd bear the palm for having bravely shed\nThy wife and children's blood. For myself, son,\nI purpose not to wait on fortune till\nThese wars determine: if I cannot persuade thee\nRather to show a noble grace to both parts\nThan seek the end of one, thou shalt no sooner\nMarch to assault thy country than to tread--\nTrust to't, thou shalt not--on thy mother's womb,\nThat brought thee to this world.\n\nVIRGILIA:\nAy, and mine,\nThat brought you forth this boy, to keep your name\nLiving to time.\n\nYoung MARCIUS:\nA' shall not tread on me;\nI'll run away till I am bigger, but then I'll fight.\n\nCORIOLANUS:\nNot of a woman's tenderness to be,\nRequires nor child nor woman's face to see.\nI have sat too long.\n\nVOLUMNIA:\nNay, go not from us thus.\nIf it were so that our request did tend\nTo save the Romans, thereby to destroy\nThe Volsces whom you serve, you might condemn us,\nAs poisonous of your honour: no; our suit\nIs that you reconcile them: while the Volsces\nMay say 'This mercy we have show'd;' the Romans,\n'This we received;' and each in either side\nGive the all-hail to thee and cry 'Be blest\nFor making up this peace!' Thou know'st, great son,\nThe end of war's uncertain, but this certain,\nThat, if thou conquer Rome, the benefit\nWhich thou shalt thereby reap is such a name,\nWhose repetition will be dogg'd with curses;\nWhose chronicle thus writ: 'The man was noble,\nBut with his last attempt he wiped it out;\nDestroy'd his country, and his name remains\nTo the ensuing age abhorr'd.' Speak to me, son:\nThou hast affected the fine strains of honour,\nTo imitate the graces of the gods;\nTo tear with thunder the wide cheeks o' the air,\nAnd yet to charge thy sulphur with a bolt\nThat should but rive an oak. Why dost not speak?\nThink'st thou it honourable for a noble man\nStill to remember wrongs? Daughter, speak you:\nHe cares not for your weeping. Speak thou, boy:\nPerhaps thy childishness will move him more\nThan can our reasons. There's no man in the world\nMore bound to 's mother; yet here he lets me prate\nLike one i' the stocks. Thou hast never in thy life\nShow'd thy dear mother any courtesy,\nWhen she, poor hen, fond of no second brood,\nHas cluck'd thee to the wars and safely home,\nLoaden with honour. Say my request's unjust,\nAnd spurn me back: but if it be not so,\nThou art not honest; and the gods will plague thee,\nThat thou restrain'st from me the duty which\nTo a mother's part belongs. He turns away:\nDown, ladies; let us shame him with our knees.\nTo his surname Coriolanus 'longs more pride\nThan pity to our prayers. Down: an end;\nThis is the last: so we will home to Rome,\nAnd die among our neighbours. Nay, behold 's:\nThis boy, that cannot tell what he would have\nBut kneels and holds up bands for fellowship,\nDoes reason our petition with more strength\nThan thou hast to deny 't. Come, let us go:\nThis fellow had a Volscian to his mother;\nHis wife is in Corioli and his child\nLike him by chance. Yet give us our dispatch:\nI am hush'd until our city be a-fire,\nAnd then I'll speak a little.\n\nCORIOLANUS:\nO mother, mother!\nWhat have you done? Behold, the heavens do ope,\nThe gods look down, and this unnatural scene\nThey laugh at. O my mother, mother! O!\nYou have won a happy victory to Rome;\nBut, for your son,--believe it, O, believe it,\nMost dangerously you have with him prevail'd,\nIf not most mortal to him. But, let it come.\nAufidius, though I cannot make true wars,\nI'll frame convenient peace. Now, good Aufidius,\nWere you in my stead, would you have heard\nA mother less? or granted less, Aufidius?\n\nAUFIDIUS:\nI was moved withal.\n\nCORIOLANUS:\nI dare be sworn you were:\nAnd, sir, it is no little thing to make\nMine eyes to sweat compassion. But, good sir,\nWhat peace you'll make, advise me: for my part,\nI'll not to Rome, I'll back with you; and pray you,\nStand to me in this cause. O mother! wife!\n\nAUFIDIUS:\n\nCORIOLANUS:\nAy, by and by;\nBut we will drink together; and you shall bear\nA better witness back than words, which we,\nOn like conditions, will have counter-seal'd.\nCome, enter with us. Ladies, you deserve\nTo have a temple built you: all the swords\nIn Italy, and her confederate arms,\nCould not have made this peace.\n\nMENENIUS:\nSee you yond coign o' the Capitol, yond\ncorner-stone?\n\nSICINIUS:\nWhy, what of that?\n\nMENENIUS:\nIf it be possible for you to displace it with your\nlittle finger, there is some hope the ladies of\nRome, especially his mother, may prevail with him.\nBut I say there is no hope in't: our throats are\nsentenced and stay upon execution.\n\nSICINIUS:\nIs't possible that so short a time can alter the\ncondition of a man!\n\nMENENIUS:\nThere is differency between a grub and a butterfly;\nyet your butterfly was a grub. This Marcius is grown\nfrom man to dragon: he has wings; he's more than a\ncreeping thing.\n\nSICINIUS:\nHe loved his mother dearly.\n\nMENENIUS:\nSo did he me: and he no more remembers his mother\nnow than an eight-year-old horse. The tartness\nof his face sours ripe grapes: when he walks, he\nmoves like an engine, and the ground shrinks before\nhis treading: he is able to pierce a corslet with\nhis eye; talks like a knell, and his hum is a\nbattery. He sits in his state, as a thing made for\nAlexander. What he bids be done is finished with\nhis bidding. He wants nothing of a god but eternity\nand a heaven to throne in.\n\nSICINIUS:\nYes, mercy, if you report him truly.\n\nMENENIUS:\nI paint him in the character. Mark what mercy his\nmother shall bring from him: there is no more mercy\nin him than there is milk in a male tiger; that\nshall our poor city find: and all this is long of\nyou.\n\nSICINIUS:\nThe gods be good unto us!\n\nMENENIUS:\nNo, in such a case the gods will not be good unto\nus. When we banished him, we respected not them;\nand, he returning to break our necks, they respect not us.\n\nMessenger:\nSir, if you'ld save your life, fly to your house:\nThe plebeians have got your fellow-tribune\nAnd hale him up and down, all swearing, if\nThe Roman ladies bring not comfort home,\nThey'll give him death by inches.\n\nSICINIUS:\nWhat's the news?\n\nSecond Messenger:\nGood news, good news; the ladies have prevail'd,\nThe Volscians are dislodged, and Marcius gone:\nA merrier day did never yet greet Rome,\nNo, not the expulsion of the Tarquins.\n\nSICINIUS:\nFriend,\nArt thou certain this is true? is it most certain?\n\nSecond Messenger:\nAs certain as I know the sun is fire:\nWhere have you lurk'd, that you make doubt of it?\nNe'er through an arch so hurried the blown tide,\nAs the recomforted through the gates. Why, hark you!\nThe trumpets, sackbuts, psalteries and fifes,\nTabours and cymbals and the shouting Romans,\nMake the sun dance. Hark you!\n\nMENENIUS:\nThis is good news:\nI will go meet the ladies. This Volumnia\nIs worth of consuls, senators, patricians,\nA city full; of tribunes, such as you,\nA sea and land full. You have pray'd well to-day:\nThis morning for ten thousand of your throats\nI'd not have given a doit. Hark, how they joy!\n\nSICINIUS:\nFirst, the gods bless you for your tidings; next,\nAccept my thankfulness.\n\nSecond Messenger:\nSir, we have all\nGreat cause to give great thanks.\n\nSICINIUS:\nThey are near the city?\n\nSecond Messenger:\nAlmost at point to enter.\n\nSICINIUS:\nWe will meet them,\nAnd help the joy.\n\nFirst Senator:\nBehold our patroness, the life of Rome!\nCall all your tribes together, praise the gods,\nAnd make triumphant fires; strew flowers before them:\nUnshout the noise that banish'd Marcius,\nRepeal him with the welcome of his mother;\nCry 'Welcome, ladies, welcome!'\n\nAll:\nWelcome, ladies, Welcome!\n\nAUFIDIUS:\nGo tell the lords o' the city I am here:\nDeliver them this paper: having read it,\nBid them repair to the market place; where I,\nEven in theirs and in the commons' ears,\nWill vouch the truth of it. Him I accuse\nThe city ports by this hath enter'd and\nIntends to appear before the people, hoping\nTo purge herself with words: dispatch.\nMost welcome!\n\nFirst Conspirator:\nHow is it with our general?\n\nAUFIDIUS:\nEven so\nAs with a man by his own alms empoison'd,\nAnd with his charity slain.\n\nSecond Conspirator:\nMost noble sir,\nIf you do hold the same intent wherein\nYou wish'd us parties, we'll deliver you\nOf your great danger.\n\nAUFIDIUS:\nSir, I cannot tell:\nWe must proceed as we do find the people.\n\nThird Conspirator:\nThe people will remain uncertain whilst\n'Twixt you there's difference; but the fall of either\nMakes the survivor heir of all.\n\nAUFIDIUS:\nI know it;\nAnd my pretext to strike at him admits\nA good construction. I raised him, and I pawn'd\nMine honour for his truth: who being so heighten'd,\nHe water'd his new plants with dews of flattery,\nSeducing so my friends; and, to this end,\nHe bow'd his nature, never known before\nBut to be rough, unswayable and free.\n\nThird Conspirator:\nSir, his stoutness\nWhen he did stand for consul, which he lost\nBy lack of stooping,--\n\nAUFIDIUS:\nThat I would have spoke of:\nBeing banish'd for't, he came unto my hearth;\nPresented to my knife his throat: I took him;\nMade him joint-servant with me; gave him way\nIn all his own desires; nay, let him choose\nOut of my files, his projects to accomplish,\nMy best and freshest men; served his designments\nIn mine own person; holp to reap the fame\nWhich he did end all his; and took some pride\nTo do myself this wrong: till, at the last,\nI seem'd his follower, not partner, and\nHe waged me with his countenance, as if\nI had been mercenary.\n\nFirst Conspirator:\nSo he did, my lord:\nThe army marvell'd at it, and, in the last,\nWhen he had carried Rome and that we look'd\nFor no less spoil than glory,--\n\nAUFIDIUS:\nThere was it:\nFor which my sinews shall be stretch'd upon him.\nAt a few drops of women's rheum, which are\nAs cheap as lies, he sold the blood and labour\nOf our great action: therefore shall he die,\nAnd I'll renew me in his fall. But, hark!\n\nFirst Conspirator:\nYour native town you enter'd like a post,\nAnd had no welcomes home: but he returns,\nSplitting the air with noise.\n\nSecond Conspirator:\nAnd patient fools,\nWhose children he hath slain, their base throats tear\nWith giving him glory.\n\nThird Conspirator:\nTherefore, at your vantage,\nEre he express himself, or move the people\nWith what he would say, let him feel your sword,\nWhich we will second. When he lies along,\nAfter your way his tale pronounced shall bury\nHis reasons with his body.\n\nAUFIDIUS:\nSay no more:\nHere come the lords.\n\nAll The Lords:\nYou are most welcome home.\n\nAUFIDIUS:\nI have not deserved it.\nBut, worthy lords, have you with heed perused\nWhat I have written to you?\n\nLords:\nWe have.\n\nFirst Lord:\nAnd grieve to hear't.\nWhat faults he made before the last, I think\nMight have found easy fines: but there to end\nWhere he was to begin and give away\nThe benefit of our levies, answering us\nWith our own charge, making a treaty where\nThere was a yielding,--this admits no excuse.\n\nAUFIDIUS:\nHe approaches: you shall hear him.\n\nCORIOLANUS:\nHail, lords! I am return'd your soldier,\nNo more infected with my country's love\nThan when I parted hence, but still subsisting\nUnder your great command. You are to know\nThat prosperously I have attempted and\nWith bloody passage led your wars even to\nThe gates of Rome. Our spoils we have brought home\nDo more than counterpoise a full third part\nThe charges of the action. We have made peace\nWith no less honour to the Antiates\nThan shame to the Romans: and we here deliver,\nSubscribed by the consuls and patricians,\nTogether with the seal o' the senate, what\nWe have compounded on.\n\nAUFIDIUS:\nRead it not, noble lords;\nBut tell the traitor, in the high'st degree\nHe hath abused your powers.\n\nCORIOLANUS:\nTraitor! how now!\n\nAUFIDIUS:\nAy, traitor, Marcius!\n\nCORIOLANUS:\nMarcius!\n\nAUFIDIUS:\nAy, Marcius, Caius Marcius: dost thou think\nI'll grace thee with that robbery, thy stol'n name\nCoriolanus in Corioli?\nYou lords and heads o' the state, perfidiously\nHe has betray'd your business, and given up,\nFor certain drops of salt, your city Rome,\nI say 'your city,' to his wife and mother;\nBreaking his oath and resolution like\nA twist of rotten silk, never admitting\nCounsel o' the war, but at his nurse's tears\nHe whined and roar'd away your victory,\nThat pages blush'd at him and men of heart\nLook'd wondering each at other.\n\nCORIOLANUS:\nHear'st thou, Mars?\n\nAUFIDIUS:\nName not the god, thou boy of tears!\n\nCORIOLANUS:\nHa!\n\nAUFIDIUS:\nNo more.\n\nCORIOLANUS:\nMeasureless liar, thou hast made my heart\nToo great for what contains it. Boy! O slave!\nPardon me, lords, 'tis the first time that ever\nI was forced to scold. Your judgments, my grave lords,\nMust give this cur the lie: and his own notion--\nWho wears my stripes impress'd upon him; that\nMust bear my beating to his grave--shall join\nTo thrust the lie unto him.\n\nFirst Lord:\nPeace, both, and hear me speak.\n\nCORIOLANUS:\nCut me to pieces, Volsces; men and lads,\nStain all your edges on me. Boy! false hound!\nIf you have writ your annals true, 'tis there,\nThat, like an eagle in a dove-cote, I\nFlutter'd your Volscians in Corioli:\nAlone I did it. Boy!\n\nAUFIDIUS:\nWhy, noble lords,\nWill you be put in mind of his blind fortune,\nWhich was your shame, by this unholy braggart,\n'Fore your own eyes and ears?\n\nAll Conspirators:\nLet him die for't.\n\nAll The People:\n'Tear him to pieces.' 'Do it presently.' 'He kill'd\nmy son.' 'My daughter.' 'He killed my cousin\nMarcus.' 'He killed my father.'\n\nSecond Lord:\nPeace, ho! no outrage: peace!\nThe man is noble and his fame folds-in\nThis orb o' the earth. His last offences to us\nShall have judicious hearing. Stand, Aufidius,\nAnd trouble not the peace.\n\nCORIOLANUS:\nO that I had him,\nWith six Aufidiuses, or more, his tribe,\nTo use my lawful sword!\n\nAUFIDIUS:\nInsolent villain!\n\nAll Conspirators:\nKill, kill, kill, kill, kill him!\n\nLords:\nHold, hold, hold, hold!\n\nAUFIDIUS:\nMy noble masters, hear me speak.\n\nFirst Lord:\nO Tullus,--\n\nSecond Lord:\nThou hast done a deed whereat valour will weep.\n\nThird Lord:\nTread not upon him. Masters all, be quiet;\nPut up your swords.\n\nAUFIDIUS:\nMy lords, when you shall know--as in this rage,\nProvoked by him, you cannot--the great danger\nWhich this man's life did owe you, you'll rejoice\nThat he is thus cut off. Please it your honours\nTo call me to your senate, I'll deliver\nMyself your loyal servant, or endure\nYour heaviest censure.\n\nFirst Lord:\nBear from hence his body;\nAnd mourn you for him: let him be regarded\nAs the most noble corse that ever herald\nDid follow to his urn.\n\nSecond Lord:\nHis own impatience\nTakes from Aufidius a great part of blame.\nLet's make the best of it.\n\nAUFIDIUS:\nMy rage is gone;\nAnd I am struck with sorrow. Take him up.\nHelp, three o' the chiefest soldiers; I'll be one.\nBeat thou the drum, that it speak mournfully:\nTrail your steel pikes. Though in this city he\nHath widow'd and unchilded many a one,\nWhich to this hour bewail the injury,\nYet he shall have a noble memory. Assist.\n\nGLOUCESTER:\nNow is the winter of our discontent\nMade glorious summer by this sun of York;\nAnd all the clouds that lour'd upon our house\nIn the deep bosom of the ocean buried.\nNow are our brows bound with victorious wreaths;\nOur bruised arms hung up for monuments;\nOur stern alarums changed to merry meetings,\nOur dreadful marches to delightful measures.\nGrim-visaged war hath smooth'd his wrinkled front;\nAnd now, instead of mounting barded steeds\nTo fright the souls of fearful adversaries,\nHe capers nimbly in a lady's chamber\nTo the lascivious pleasing of a lute.\nBut I, that am not shaped for sportive tricks,\nNor made to court an amorous looking-glass;\nI, that am rudely stamp'd, and want love's majesty\nTo strut before a wanton ambling nymph;\nI, that am curtail'd of this fair proportion,\nCheated of feature by dissembling nature,\nDeformed, unfinish'd, sent before my time\nInto this breathing world, scarce half made up,\nAnd that so lamely and unfashionable\nThat dogs bark at me as I halt by them;\nWhy, I, in this weak piping time of peace,\nHave no delight to pass away the time,\nUnless to spy my shadow in the sun\nAnd descant on mine own deformity:\nAnd therefore, since I cannot prove a lover,\nTo entertain these fair well-spoken days,\nI am determined to prove a villain\nAnd hate the idle pleasures of these days.\nPlots have I laid, inductions dangerous,\nBy drunken prophecies, libels and dreams,\nTo set my brother Clarence and the king\nIn deadly hate the one against the other:\nAnd if King Edward be as true and just\nAs I am subtle, false and treacherous,\nThis day should Clarence closely be mew'd up,\nAbout a prophecy, which says that 'G'\nOf Edward's heirs the murderer shall be.\nDive, thoughts, down to my soul: here\nClarence comes.\nBrother, good day; what means this armed guard\nThat waits upon your grace?\n\nCLARENCE:\nHis majesty\nTendering my person's safety, hath appointed\nThis conduct to convey me to the Tower.\n\nGLOUCESTER:\nUpon what cause?\n\nCLARENCE:\nBecause my name is George.\n\nGLOUCESTER:\nAlack, my lord, that fault is none of yours;\nHe should, for that, commit your godfathers:\nO, belike his majesty hath some intent\nThat you shall be new-christen'd in the Tower.\nBut what's the matter, Clarence?  may I know?\n\nCLARENCE:\nYea, Richard, when I know; for I protest\nAs yet I do not: but, as I can learn,\nHe hearkens after prophecies and dreams;\nAnd from the cross-row plucks the letter G.\nAnd says a wizard told him that by G\nHis issue disinherited should be;\nAnd, for my name of George begins with G,\nIt follows in his thought that I am he.\nThese, as I learn, and such like toys as these\nHave moved his highness to commit me now.\n\nGLOUCESTER:\nWhy, this it is, when men are ruled by women:\n'Tis not the king that sends you to the Tower:\nMy Lady Grey his wife, Clarence, 'tis she\nThat tempers him to this extremity.\nWas it not she and that good man of worship,\nAnthony Woodville, her brother there,\nThat made him send Lord Hastings to the Tower,\nFrom whence this present day he is deliver'd?\nWe are not safe, Clarence; we are not safe.\n\nCLARENCE:\nBy heaven, I think there's no man is secure\nBut the queen's kindred and night-walking heralds\nThat trudge betwixt the king and Mistress Shore.\nHeard ye not what an humble suppliant\nLord hastings was to her for his delivery?\n\nGLOUCESTER:\nHumbly complaining to her deity\nGot my lord chamberlain his liberty.\nI'll tell you what; I think it is our way,\nIf we will keep in favour with the king,\nTo be her men and wear her livery:\nThe jealous o'erworn widow and herself,\nSince that our brother dubb'd them gentlewomen.\nAre mighty gossips in this monarchy.\n\nBRAKENBURY:\nI beseech your graces both to pardon me;\nHis majesty hath straitly given in charge\nThat no man shall have private conference,\nOf what degree soever, with his brother.\n\nGLOUCESTER:\nEven so; an't please your worship, Brakenbury,\nYou may partake of any thing we say:\nWe speak no treason, man: we say the king\nIs wise and virtuous, and his noble queen\nWell struck in years, fair, and not jealous;\nWe say that Shore's wife hath a pretty foot,\nA cherry lip, a bonny eye, a passing pleasing tongue;\nAnd that the queen's kindred are made gentle-folks:\nHow say you sir? Can you deny all this?\n\nBRAKENBURY:\nWith this, my lord, myself have nought to do.\n\nGLOUCESTER:\nNaught to do with mistress Shore! I tell thee, fellow,\nHe that doth naught with her, excepting one,\nWere best he do it secretly, alone.\n\nBRAKENBURY:\nWhat one, my lord?\n\nGLOUCESTER:\nHer husband, knave: wouldst thou betray me?\n\nBRAKENBURY:\nI beseech your grace to pardon me, and withal\nForbear your conference with the noble duke.\n\nCLARENCE:\nWe know thy charge, Brakenbury, and will obey.\n\nGLOUCESTER:\nWe are the queen's abjects, and must obey.\nBrother, farewell: I will unto the king;\nAnd whatsoever you will employ me in,\nWere it to call King Edward's widow sister,\nI will perform it to enfranchise you.\nMeantime, this deep disgrace in brotherhood\nTouches me deeper than you can imagine.\n\nCLARENCE:\nI know it pleaseth neither of us well.\n\nGLOUCESTER:\nWell, your imprisonment shall not be long;\nMeantime, have patience.\n\nCLARENCE:\nI must perforce. Farewell.\n\nGLOUCESTER:\nGo, tread the path that thou shalt ne'er return.\nSimple, plain Clarence! I do love thee so,\nThat I will shortly send thy soul to heaven,\nIf heaven will take the present at our hands.\nBut who comes here? the new-deliver'd Hastings?\n\nHASTINGS:\nGood time of day unto my gracious lord!\n\nGLOUCESTER:\nAs much unto my good lord chamberlain!\nWell are you welcome to the open air.\nHow hath your lordship brook'd imprisonment?\n\nHASTINGS:\nWith patience, noble lord, as prisoners must:\nBut I shall live, my lord, to give them thanks\nThat were the cause of my imprisonment.\n\nGLOUCESTER:\nNo doubt, no doubt; and so shall Clarence too;\nFor they that were your enemies are his,\nAnd have prevail'd as much on him as you.\n\nHASTINGS:\nMore pity that the eagle should be mew'd,\nWhile kites and buzzards prey at liberty.\n\nGLOUCESTER:\nWhat news abroad?\n\nHASTINGS:\nNo news so bad abroad as this at home;\nThe King is sickly, weak and melancholy,\nAnd his physicians fear him mightily.\n\nGLOUCESTER:\nNow, by Saint Paul, this news is bad indeed.\nO, he hath kept an evil diet long,\nAnd overmuch consumed his royal person:\n'Tis very grievous to be thought upon.\nWhat, is he in his bed?\n\nHASTINGS:\nHe is.\n\nGLOUCESTER:\nGo you before, and I will follow you.\nHe cannot live, I hope; and must not die\nTill George be pack'd with post-horse up to heaven.\nI'll in, to urge his hatred more to Clarence,\nWith lies well steel'd with weighty arguments;\nAnd, if I fall not in my deep intent,\nClarence hath not another day to live:\nWhich done, God take King Edward to his mercy,\nAnd leave the world for me to bustle in!\nFor then I'll marry Warwick's youngest daughter.\nWhat though I kill'd her husband and her father?\nThe readiest way to make the wench amends\nIs to become her husband and her father:\nThe which will I; not all so much for love\nAs for another secret close intent,\nBy marrying her which I must reach unto.\nBut yet I run before my horse to market:\nClarence still breathes; Edward still lives and reigns:\nWhen they are gone, then must I count my gains.\n\nLADY ANNE:\nSet down, set down your honourable load,\nIf honour may be shrouded in a hearse,\nWhilst I awhile obsequiously lament\nThe untimely fall of virtuous Lancaster.\nPoor key-cold figure of a holy king!\nPale ashes of the house of Lancaster!\nThou bloodless remnant of that royal blood!\nBe it lawful that I invocate thy ghost,\nTo hear the lamentations of Poor Anne,\nWife to thy Edward, to thy slaughter'd son,\nStabb'd by the selfsame hand that made these wounds!\nLo, in these windows that let forth thy life,\nI pour the helpless balm of my poor eyes.\nCursed be the hand that made these fatal holes!\nCursed be the heart that had the heart to do it!\nCursed the blood that let this blood from hence!\nMore direful hap betide that hated wretch,\nThat makes us wretched by the death of thee,\nThan I can wish to adders, spiders, toads,\nOr any creeping venom'd thing that lives!\nIf ever he have child, abortive be it,\nProdigious, and untimely brought to light,\nWhose ugly and unnatural aspect\nMay fright the hopeful mother at the view;\nAnd that be heir to his unhappiness!\nIf ever he have wife, let her he made\nA miserable by the death of him\nAs I am made by my poor lord and thee!\nCome, now towards Chertsey with your holy load,\nTaken from Paul's to be interred there;\nAnd still, as you are weary of the weight,\nRest you, whiles I lament King Henry's corse.\n\nGLOUCESTER:\nStay, you that bear the corse, and set it down.\n\nLADY ANNE:\nWhat black magician conjures up this fiend,\nTo stop devoted charitable deeds?\n\nGLOUCESTER:\nVillains, set down the corse; or, by Saint Paul,\nI'll make a corse of him that disobeys.\n\nGentleman:\nMy lord, stand back, and let the coffin pass.\n\nGLOUCESTER:\nUnmanner'd dog! stand thou, when I command:\nAdvance thy halbert higher than my breast,\nOr, by Saint Paul, I'll strike thee to my foot,\nAnd spurn upon thee, beggar, for thy boldness.\n\nLADY ANNE:\nWhat, do you tremble? are you all afraid?\nAlas, I blame you not; for you are mortal,\nAnd mortal eyes cannot endure the devil.\nAvaunt, thou dreadful minister of hell!\nThou hadst but power over his mortal body,\nHis soul thou canst not have; therefore be gone.\n\nGLOUCESTER:\nSweet saint, for charity, be not so curst.\n\nLADY ANNE:\nFoul devil, for God's sake, hence, and trouble us not;\nFor thou hast made the happy earth thy hell,\nFill'd it with cursing cries and deep exclaims.\nIf thou delight to view thy heinous deeds,\nBehold this pattern of thy butcheries.\nO, gentlemen, see, see! dead Henry's wounds\nOpen their congeal'd mouths and bleed afresh!\nBlush, Blush, thou lump of foul deformity;\nFor 'tis thy presence that exhales this blood\nFrom cold and empty veins, where no blood dwells;\nThy deed, inhuman and unnatural,\nProvokes this deluge most unnatural.\nO God, which this blood madest, revenge his death!\nO earth, which this blood drink'st revenge his death!\nEither heaven with lightning strike the\nmurderer dead,\nOr earth, gape open wide and eat him quick,\nAs thou dost swallow up this good king's blood\nWhich his hell-govern'd arm hath butchered!\n\nGLOUCESTER:\nLady, you know no rules of charity,\nWhich renders good for bad, blessings for curses.\n\nLADY ANNE:\nVillain, thou know'st no law of God nor man:\nNo beast so fierce but knows some touch of pity.\n\nGLOUCESTER:\nBut I know none, and therefore am no beast.\n\nLADY ANNE:\nO wonderful, when devils tell the truth!\n\nGLOUCESTER:\nMore wonderful, when angels are so angry.\nVouchsafe, divine perfection of a woman,\nOf these supposed-evils, to give me leave,\nBy circumstance, but to acquit myself.\n\nLADY ANNE:\nVouchsafe, defused infection of a man,\nFor these known evils, but to give me leave,\nBy circumstance, to curse thy cursed self.\n\nGLOUCESTER:\nFairer than tongue can name thee, let me have\nSome patient leisure to excuse myself.\n\nLADY ANNE:\nFouler than heart can think thee, thou canst make\nNo excuse current, but to hang thyself.\n\nGLOUCESTER:\nBy such despair, I should accuse myself.\n\nLADY ANNE:\nAnd, by despairing, shouldst thou stand excused;\nFor doing worthy vengeance on thyself,\nWhich didst unworthy slaughter upon others.\n\nGLOUCESTER:\nSay that I slew them not?\n\nLADY ANNE:\nWhy, then they are not dead:\nBut dead they are, and devilish slave, by thee.\n\nGLOUCESTER:\nI did not kill your husband.\n\nLADY ANNE:\nWhy, then he is alive.\n\nGLOUCESTER:\nNay, he is dead; and slain by Edward's hand.\n\nLADY ANNE:\nIn thy foul throat thou liest: Queen Margaret saw\nThy murderous falchion smoking in his blood;\nThe which thou once didst bend against her breast,\nBut that thy brothers beat aside the point.\n\nGLOUCESTER:\nI was provoked by her slanderous tongue,\nwhich laid their guilt upon my guiltless shoulders.\n\nLADY ANNE:\nThou wast provoked by thy bloody mind.\nWhich never dreamt on aught but butcheries:\nDidst thou not kill this king?\n\nGLOUCESTER:\nI grant ye.\n\nLADY ANNE:\nDost grant me, hedgehog? then, God grant me too\nThou mayst be damned for that wicked deed!\nO, he was gentle, mild, and virtuous!\n\nGLOUCESTER:\nThe fitter for the King of heaven, that hath him.\n\nLADY ANNE:\nHe is in heaven, where thou shalt never come.\n\nGLOUCESTER:\nLet him thank me, that holp to send him thither;\nFor he was fitter for that place than earth.\n\nLADY ANNE:\nAnd thou unfit for any place but hell.\n\nGLOUCESTER:\nYes, one place else, if you will hear me name it.\n\nLADY ANNE:\nSome dungeon.\n\nGLOUCESTER:\nYour bed-chamber.\n\nLADY ANNE:\nI'll rest betide the chamber where thou liest!\n\nGLOUCESTER:\nSo will it, madam till I lie with you.\n\nLADY ANNE:\nI hope so.\n\nGLOUCESTER:\nI know so. But, gentle Lady Anne,\nTo leave this keen encounter of our wits,\nAnd fall somewhat into a slower method,\nIs not the causer of the timeless deaths\nOf these Plantagenets, Henry and Edward,\nAs blameful as the executioner?\n\nLADY ANNE:\nThou art the cause, and most accursed effect.\n\nGLOUCESTER:\nYour beauty was the cause of that effect;\nYour beauty: which did haunt me in my sleep\nTo undertake the death of all the world,\nSo I might live one hour in your sweet bosom.\n\nLADY ANNE:\nIf I thought that, I tell thee, homicide,\nThese nails should rend that beauty from my cheeks.\n\nGLOUCESTER:\nThese eyes could never endure sweet beauty's wreck;\nYou should not blemish it, if I stood by:\nAs all the world is cheered by the sun,\nSo I by that; it is my day, my life.\n\nLADY ANNE:\nBlack night o'ershade thy day, and death thy life!\n\nGLOUCESTER:\nCurse not thyself, fair creature thou art both.\n\nLADY ANNE:\nI would I were, to be revenged on thee.\n\nGLOUCESTER:\nIt is a quarrel most unnatural,\nTo be revenged on him that loveth you.\n\nLADY ANNE:\nIt is a quarrel just and reasonable,\nTo be revenged on him that slew my husband.\n\nGLOUCESTER:\nHe that bereft thee, lady, of thy husband,\nDid it to help thee to a better husband.\n\nLADY ANNE:\nHis better doth not breathe upon the earth.\n\nGLOUCESTER:\nHe lives that loves thee better than he could.\n\nLADY ANNE:\nName him.\n\nGLOUCESTER:\nPlantagenet.\n\nLADY ANNE:\nWhy, that was he.\n\nGLOUCESTER:\nThe selfsame name, but one of better nature.\n\nLADY ANNE:\nWhere is he?\n\nGLOUCESTER:\nHere.\nWhy dost thou spit at me?\n\nLADY ANNE:\nWould it were mortal poison, for thy sake!\n\nGLOUCESTER:\nNever came poison from so sweet a place.\n\nLADY ANNE:\nNever hung poison on a fouler toad.\nOut of my sight! thou dost infect my eyes.\n\nGLOUCESTER:\nThine eyes, sweet lady, have infected mine.\n\nLADY ANNE:\nWould they were basilisks, to strike thee dead!\n\nGLOUCESTER:\nI would they were, that I might die at once;\nFor now they kill me with a living death.\nThose eyes of thine from mine have drawn salt tears,\nShamed their aspect with store of childish drops:\nThese eyes that never shed remorseful tear,\nNo, when my father York and Edward wept,\nTo hear the piteous moan that Rutland made\nWhen black-faced Clifford shook his sword at him;\nNor when thy warlike father, like a child,\nTold the sad story of my father's death,\nAnd twenty times made pause to sob and weep,\nThat all the standers-by had wet their cheeks\nLike trees bedash'd with rain: in that sad time\nMy manly eyes did scorn an humble tear;\nAnd what these sorrows could not thence exhale,\nThy beauty hath, and made them blind with weeping.\nI never sued to friend nor enemy;\nMy tongue could never learn sweet smoothing word;\nBut now thy beauty is proposed my fee,\nMy proud heart sues, and prompts my tongue to speak.\nTeach not thy lips such scorn, for they were made\nFor kissing, lady, not for such contempt.\nIf thy revengeful heart cannot forgive,\nLo, here I lend thee this sharp-pointed sword;\nWhich if thou please to hide in this true bosom.\nAnd let the soul forth that adoreth thee,\nI lay it naked to the deadly stroke,\nAnd humbly beg the death upon my knee.\nNay, do not pause; for I did kill King Henry,\nBut 'twas thy beauty that provoked me.\nNay, now dispatch; 'twas I that stabb'd young Edward,\nBut 'twas thy heavenly face that set me on.\nTake up the sword again, or take up me.\n\nLADY ANNE:\nArise, dissembler: though I wish thy death,\nI will not be the executioner.\n\nGLOUCESTER:\nThen bid me kill myself, and I will do it.\n\nLADY ANNE:\nI have already.\n\nGLOUCESTER:\nTush, that was in thy rage:\nSpeak it again, and, even with the word,\nThat hand, which, for thy love, did kill thy love,\nShall, for thy love, kill a far truer love;\nTo both their deaths thou shalt be accessary.\n\nLADY ANNE:\nI would I knew thy heart.\n\nGLOUCESTER:\n'Tis figured in my tongue.\n\nLADY ANNE:\nI fear me both are false.\n\nGLOUCESTER:\nThen never man was true.\n\nLADY ANNE:\nWell, well, put up your sword.\n\nGLOUCESTER:\nSay, then, my peace is made.\n\nLADY ANNE:\nThat shall you know hereafter.\n\nGLOUCESTER:\nBut shall I live in hope?\n\nLADY ANNE:\nAll men, I hope, live so.\n\nGLOUCESTER:\nVouchsafe to wear this ring.\n\nLADY ANNE:\nTo take is not to give.\n\nGLOUCESTER:\nLook, how this ring encompasseth finger.\nEven so thy breast encloseth my poor heart;\nWear both of them, for both of them are thine.\nAnd if thy poor devoted suppliant may\nBut beg one favour at thy gracious hand,\nThou dost confirm his happiness for ever.\n\nLADY ANNE:\nWhat is it?\n\nGLOUCESTER:\nThat it would please thee leave these sad designs\nTo him that hath more cause to be a mourner,\nAnd presently repair to Crosby Place;\nWhere, after I have solemnly interr'd\nAt Chertsey monastery this noble king,\nAnd wet his grave with my repentant tears,\nI will with all expedient duty see you:\nFor divers unknown reasons. I beseech you,\nGrant me this boon.\n\nLADY ANNE:\nWith all my heart; and much it joys me too,\nTo see you are become so penitent.\nTressel and Berkeley, go along with me.\n\nGLOUCESTER:\nBid me farewell.\n\nLADY ANNE:\n'Tis more than you deserve;\nBut since you teach me how to flatter you,\nImagine I have said farewell already.\n\nGLOUCESTER:\nSirs, take up the corse.\n\nGENTLEMEN:\nTowards Chertsey, noble lord?\n\nGLOUCESTER:\nNo, to White-Friars; there attend my coining.\nWas ever woman in this humour woo'd?\nWas ever woman in this humour won?\nI'll have her; but I will not keep her long.\nWhat! I, that kill'd her husband and his father,\nTo take her in her heart's extremest hate,\nWith curses in her mouth, tears in her eyes,\nThe bleeding witness of her hatred by;\nHaving God, her conscience, and these bars\nagainst me,\nAnd I nothing to back my suit at all,\nBut the plain devil and dissembling looks,\nAnd yet to win her, all the world to nothing!\nHa!\nHath she forgot already that brave prince,\nEdward, her lord, whom I, some three months since,\nStabb'd in my angry mood at Tewksbury?\nA sweeter and a lovelier gentleman,\nFramed in the prodigality of nature,\nYoung, valiant, wise, and, no doubt, right royal,\nThe spacious world cannot again afford\nAnd will she yet debase her eyes on me,\nThat cropp'd the golden prime of this sweet prince,\nAnd made her widow to a woful bed?\nOn me, whose all not equals Edward's moiety?\nOn me, that halt and am unshapen thus?\nMy dukedom to a beggarly denier,\nI do mistake my person all this while:\nUpon my life, she finds, although I cannot,\nMyself to be a marvellous proper man.\nI'll be at charges for a looking-glass,\nAnd entertain some score or two of tailors,\nTo study fashions to adorn my body:\nSince I am crept in favour with myself,\nWill maintain it with some little cost.\nBut first I'll turn yon fellow in his grave;\nAnd then return lamenting to my love.\nShine out, fair sun, till I have bought a glass,\nThat I may see my shadow as I pass.\n\nRIVERS:\nHave patience, madam: there's no doubt his majesty\nWill soon recover his accustom'd health.\n\nGREY:\nIn that you brook it in, it makes him worse:\nTherefore, for God's sake, entertain good comfort,\nAnd cheer his grace with quick and merry words.\n\nQUEEN ELIZABETH:\nIf he were dead, what would betide of me?\n\nRIVERS:\nNo other harm but loss of such a lord.\n\nQUEEN ELIZABETH:\nThe loss of such a lord includes all harm.\n\nGREY:\nThe heavens have bless'd you with a goodly son,\nTo be your comforter when he is gone.\n\nQUEEN ELIZABETH:\nOh, he is young and his minority\nIs put unto the trust of Richard Gloucester,\nA man that loves not me, nor none of you.\n\nRIVERS:\nIs it concluded that he shall be protector?\n\nQUEEN ELIZABETH:\nIt is determined, not concluded yet:\nBut so it must be, if the king miscarry.\n\nGREY:\nHere come the lords of Buckingham and Derby.\n\nBUCKINGHAM:\nGood time of day unto your royal grace!\n\nDERBY:\nGod make your majesty joyful as you have been!\n\nQUEEN ELIZABETH:\nThe Countess Richmond, good my Lord of Derby.\nTo your good prayers will scarcely say amen.\nYet, Derby, notwithstanding she's your wife,\nAnd loves not me, be you, good lord, assured\nI hate not you for her proud arrogance.\n\nDERBY:\nI do beseech you, either not believe\nThe envious slanders of her false accusers;\nOr, if she be accused in true report,\nBear with her weakness, which, I think proceeds\nFrom wayward sickness, and no grounded malice.\n\nRIVERS:\nSaw you the king to-day, my Lord of Derby?\n\nDERBY:\nBut now the Duke of Buckingham and I\nAre come from visiting his majesty.\n\nQUEEN ELIZABETH:\nWhat likelihood of his amendment, lords?\n\nBUCKINGHAM:\nMadam, good hope; his grace speaks cheerfully.\n\nQUEEN ELIZABETH:\nGod grant him health! Did you confer with him?\n\nBUCKINGHAM:\nMadam, we did: he desires to make atonement\nBetwixt the Duke of Gloucester and your brothers,\nAnd betwixt them and my lord chamberlain;\nAnd sent to warn them to his royal presence.\n\nQUEEN ELIZABETH:\nWould all were well! but that will never be\nI fear our happiness is at the highest.\n\nGLOUCESTER:\nThey do me wrong, and I will not endure it:\nWho are they that complain unto the king,\nThat I, forsooth, am stern, and love them not?\nBy holy Paul, they love his grace but lightly\nThat fill his ears with such dissentious rumours.\nBecause I cannot flatter and speak fair,\nSmile in men's faces, smooth, deceive and cog,\nDuck with French nods and apish courtesy,\nI must be held a rancorous enemy.\nCannot a plain man live and think no harm,\nBut thus his simple truth must be abused\nBy silken, sly, insinuating Jacks?\n\nRIVERS:\nTo whom in all this presence speaks your grace?\n\nGLOUCESTER:\nTo thee, that hast nor honesty nor grace.\nWhen have I injured thee? when done thee wrong?\nOr thee? or thee? or any of your faction?\nA plague upon you all! His royal person,--\nWhom God preserve better than you would wish!--\nCannot be quiet scarce a breathing-while,\nBut you must trouble him with lewd complaints.\n\nQUEEN ELIZABETH:\nBrother of Gloucester, you mistake the matter.\nThe king, of his own royal disposition,\nAnd not provoked by any suitor else;\nAiming, belike, at your interior hatred,\nWhich in your outward actions shows itself\nAgainst my kindred, brothers, and myself,\nMakes him to send; that thereby he may gather\nThe ground of your ill-will, and so remove it.\n\nGLOUCESTER:\nI cannot tell: the world is grown so bad,\nThat wrens make prey where eagles dare not perch:\nSince every Jack became a gentleman\nThere's many a gentle person made a Jack.\n\nQUEEN ELIZABETH:\nCome, come, we know your meaning, brother\nGloucester;\nYou envy my advancement and my friends':\nGod grant we never may have need of you!\n\nGLOUCESTER:\nMeantime, God grants that we have need of you:\nYour brother is imprison'd by your means,\nMyself disgraced, and the nobility\nHeld in contempt; whilst many fair promotions\nAre daily given to ennoble those\nThat scarce, some two days since, were worth a noble.\n\nQUEEN ELIZABETH:\nBy Him that raised me to this careful height\nFrom that contented hap which I enjoy'd,\nI never did incense his majesty\nAgainst the Duke of Clarence, but have been\nAn earnest advocate to plead for him.\nMy lord, you do me shameful injury,\nFalsely to draw me in these vile suspects.\n\nGLOUCESTER:\nYou may deny that you were not the cause\nOf my Lord Hastings' late imprisonment.\n\nRIVERS:\nShe may, my lord, for--\n\nGLOUCESTER:\nShe may, Lord Rivers! why, who knows not so?\nShe may do more, sir, than denying that:\nShe may help you to many fair preferments,\nAnd then deny her aiding hand therein,\nAnd lay those honours on your high deserts.\nWhat may she not? She may, yea, marry, may she--\n\nRIVERS:\nWhat, marry, may she?\n\nGLOUCESTER:\nWhat, marry, may she! marry with a king,\nA bachelor, a handsome stripling too:\nI wis your grandam had a worser match.\n\nQUEEN ELIZABETH:\nMy Lord of Gloucester, I have too long borne\nYour blunt upbraidings and your bitter scoffs:\nBy heaven, I will acquaint his majesty\nWith those gross taunts I often have endured.\nI had rather be a country servant-maid\nThan a great queen, with this condition,\nTo be thus taunted, scorn'd, and baited at:\nSmall joy have I in being England's queen.\n\nQUEEN MARGARET:\nAnd lessen'd be that small, God, I beseech thee!\nThy honour, state and seat is due to me.\n\nGLOUCESTER:\nWhat! threat you me with telling of the king?\nTell him, and spare not: look, what I have said\nI will avouch in presence of the king:\nI dare adventure to be sent to the Tower.\n'Tis time to speak; my pains are quite forgot.\n\nQUEEN MARGARET:\nOut, devil! I remember them too well:\nThou slewest my husband Henry in the Tower,\nAnd Edward, my poor son, at Tewksbury.\n\nGLOUCESTER:\nEre you were queen, yea, or your husband king,\nI was a pack-horse in his great affairs;\nA weeder-out of his proud adversaries,\nA liberal rewarder of his friends:\nTo royalize his blood I spilt mine own.\n\nQUEEN MARGARET:\nYea, and much better blood than his or thine.\n\nGLOUCESTER:\nIn all which time you and your husband Grey\nWere factious for the house of Lancaster;\nAnd, Rivers, so were you. Was not your husband\nIn Margaret's battle at Saint Alban's slain?\nLet me put in your minds, if you forget,\nWhat you have been ere now, and what you are;\nWithal, what I have been, and what I am.\n\nQUEEN MARGARET:\nA murderous villain, and so still thou art.\n\nGLOUCESTER:\nPoor Clarence did forsake his father, Warwick;\nYea, and forswore himself,--which Jesu pardon!--\n\nQUEEN MARGARET:\nWhich God revenge!\n\nGLOUCESTER:\nTo fight on Edward's party for the crown;\nAnd for his meed, poor lord, he is mew'd up.\nI would to God my heart were flint, like Edward's;\nOr Edward's soft and pitiful, like mine\nI am too childish-foolish for this world.\n\nQUEEN MARGARET:\nHie thee to hell for shame, and leave the world,\nThou cacodemon! there thy kingdom is.\n\nRIVERS:\nMy Lord of Gloucester, in those busy days\nWhich here you urge to prove us enemies,\nWe follow'd then our lord, our lawful king:\nSo should we you, if you should be our king.\n\nGLOUCESTER:\nIf I should be! I had rather be a pedlar:\nFar be it from my heart, the thought of it!\n\nQUEEN ELIZABETH:\nAs little joy, my lord, as you suppose\nYou should enjoy, were you this country's king,\nAs little joy may you suppose in me.\nThat I enjoy, being the queen thereof.\n\nQUEEN MARGARET:\nA little joy enjoys the queen thereof;\nFor I am she, and altogether joyless.\nI can no longer hold me patient.\nHear me, you wrangling pirates, that fall out\nIn sharing that which you have pill'd from me!\nWhich of you trembles not that looks on me?\nIf not, that, I being queen, you bow like subjects,\nYet that, by you deposed, you quake like rebels?\nO gentle villain, do not turn away!\n\nGLOUCESTER:\nFoul wrinkled witch, what makest thou in my sight?\n\nQUEEN MARGARET:\nBut repetition of what thou hast marr'd;\nThat will I make before I let thee go.\n\nGLOUCESTER:\nWert thou not banished on pain of death?\n\nQUEEN MARGARET:\nI was; but I do find more pain in banishment\nThan death can yield me here by my abode.\nA husband and a son thou owest to me;\nAnd thou a kingdom; all of you allegiance:\nThe sorrow that I have, by right is yours,\nAnd all the pleasures you usurp are mine.\n\nGLOUCESTER:\nThe curse my noble father laid on thee,\nWhen thou didst crown his warlike brows with paper\nAnd with thy scorns drew'st rivers from his eyes,\nAnd then, to dry them, gavest the duke a clout\nSteep'd in the faultless blood of pretty Rutland--\nHis curses, then from bitterness of soul\nDenounced against thee, are all fall'n upon thee;\nAnd God, not we, hath plagued thy bloody deed.\n\nQUEEN ELIZABETH:\nSo just is God, to right the innocent.\n\nHASTINGS:\nO, 'twas the foulest deed to slay that babe,\nAnd the most merciless that e'er was heard of!\n\nRIVERS:\nTyrants themselves wept when it was reported.\n\nDORSET:\nNo man but prophesied revenge for it.\n\nBUCKINGHAM:\nNorthumberland, then present, wept to see it.\n\nQUEEN MARGARET:\nWhat were you snarling all before I came,\nReady to catch each other by the throat,\nAnd turn you all your hatred now on me?\nDid York's dread curse prevail so much with heaven?\nThat Henry's death, my lovely Edward's death,\nTheir kingdom's loss, my woful banishment,\nCould all but answer for that peevish brat?\nCan curses pierce the clouds and enter heaven?\nWhy, then, give way, dull clouds, to my quick curses!\nIf not by war, by surfeit die your king,\nAs ours by murder, to make him a king!\nEdward thy son, which now is Prince of Wales,\nFor Edward my son, which was Prince of Wales,\nDie in his youth by like untimely violence!\nThyself a queen, for me that was a queen,\nOutlive thy glory, like my wretched self!\nLong mayst thou live to wail thy children's loss;\nAnd see another, as I see thee now,\nDeck'd in thy rights, as thou art stall'd in mine!\nLong die thy happy days before thy death;\nAnd, after many lengthen'd hours of grief,\nDie neither mother, wife, nor England's queen!\nRivers and Dorset, you were standers by,\nAnd so wast thou, Lord Hastings, when my son\nWas stabb'd with bloody daggers: God, I pray him,\nThat none of you may live your natural age,\nBut by some unlook'd accident cut off!\n\nGLOUCESTER:\nHave done thy charm, thou hateful wither'd hag!\n\nQUEEN MARGARET:\nAnd leave out thee? stay, dog, for thou shalt hear me.\nIf heaven have any grievous plague in store\nExceeding those that I can wish upon thee,\nO, let them keep it till thy sins be ripe,\nAnd then hurl down their indignation\nOn thee, the troubler of the poor world's peace!\nThe worm of conscience still begnaw thy soul!\nThy friends suspect for traitors while thou livest,\nAnd take deep traitors for thy dearest friends!\nNo sleep close up that deadly eye of thine,\nUnless it be whilst some tormenting dream\nAffrights thee with a hell of ugly devils!\nThou elvish-mark'd, abortive, rooting hog!\nThou that wast seal'd in thy nativity\nThe slave of nature and the son of hell!\nThou slander of thy mother's heavy womb!\nThou loathed issue of thy father's loins!\nThou rag of honour! thou detested--\n\nGLOUCESTER:\nMargaret.\n\nQUEEN MARGARET:\nRichard!\n\nGLOUCESTER:\nHa!\n\nQUEEN MARGARET:\nI call thee not.\n\nGLOUCESTER:\nI cry thee mercy then, for I had thought\nThat thou hadst call'd me all these bitter names.\n\nQUEEN MARGARET:\nWhy, so I did; but look'd for no reply.\nO, let me make the period to my curse!\n\nGLOUCESTER:\n'Tis done by me, and ends in 'Margaret.'\n\nQUEEN ELIZABETH:\nThus have you breathed your curse against yourself.\n\nQUEEN MARGARET:\nPoor painted queen, vain flourish of my fortune!\nWhy strew'st thou sugar on that bottled spider,\nWhose deadly web ensnareth thee about?\nFool, fool! thou whet'st a knife to kill thyself.\nThe time will come when thou shalt wish for me\nTo help thee curse that poisonous bunchback'd toad.\n\nHASTINGS:\nFalse-boding woman, end thy frantic curse,\nLest to thy harm thou move our patience.\n\nQUEEN MARGARET:\nFoul shame upon you! you have all moved mine.\n\nRIVERS:\nWere you well served, you would be taught your duty.\n\nQUEEN MARGARET:\nTo serve me well, you all should do me duty,\nTeach me to be your queen, and you my subjects:\nO, serve me well, and teach yourselves that duty!\n\nDORSET:\nDispute not with her; she is lunatic.\n\nQUEEN MARGARET:\nPeace, master marquess, you are malapert:\nYour fire-new stamp of honour is scarce current.\nO, that your young nobility could judge\nWhat 'twere to lose it, and be miserable!\nThey that stand high have many blasts to shake them;\nAnd if they fall, they dash themselves to pieces.\n\nGLOUCESTER:\nGood counsel, marry: learn it, learn it, marquess.\n\nDORSET:\nIt toucheth you, my lord, as much as me.\n\nGLOUCESTER:\nYea, and much more: but I was born so high,\nOur aery buildeth in the cedar's top,\nAnd dallies with the wind and scorns the sun.\n\nQUEEN MARGARET:\nAnd turns the sun to shade; alas! alas!\nWitness my son, now in the shade of death;\nWhose bright out-shining beams thy cloudy wrath\nHath in eternal darkness folded up.\nYour aery buildeth in our aery's nest.\nO God, that seest it, do not suffer it!\nAs it was won with blood, lost be it so!\n\nBUCKINGHAM:\nHave done! for shame, if not for charity.\n\nQUEEN MARGARET:\nUrge neither charity nor shame to me:\nUncharitably with me have you dealt,\nAnd shamefully by you my hopes are butcher'd.\nMy charity is outrage, life my shame\nAnd in that shame still live my sorrow's rage.\n\nBUCKINGHAM:\nHave done, have done.\n\nQUEEN MARGARET:\nO princely Buckingham I'll kiss thy hand,\nIn sign of league and amity with thee:\nNow fair befal thee and thy noble house!\nThy garments are not spotted with our blood,\nNor thou within the compass of my curse.\n\nBUCKINGHAM:\nNor no one here; for curses never pass\nThe lips of those that breathe them in the air.\n\nQUEEN MARGARET:\nI'll not believe but they ascend the sky,\nAnd there awake God's gentle-sleeping peace.\nO Buckingham, take heed of yonder dog!\nLook, when he fawns, he bites; and when he bites,\nHis venom tooth will rankle to the death:\nHave not to do with him, beware of him;\nSin, death, and hell have set their marks on him,\nAnd all their ministers attend on him.\n\nGLOUCESTER:\nWhat doth she say, my Lord of Buckingham?\n\nBUCKINGHAM:\nNothing that I respect, my gracious lord.\n\nQUEEN MARGARET:\nWhat, dost thou scorn me for my gentle counsel?\nAnd soothe the devil that I warn thee from?\nO, but remember this another day,\nWhen he shall split thy very heart with sorrow,\nAnd say poor Margaret was a prophetess!\nLive each of you the subjects to his hate,\nAnd he to yours, and all of you to God's!\n\nHASTINGS:\nMy hair doth stand on end to hear her curses.\n\nRIVERS:\nAnd so doth mine: I muse why she's at liberty.\n\nGLOUCESTER:\nI cannot blame her: by God's holy mother,\nShe hath had too much wrong; and I repent\nMy part thereof that I have done to her.\n\nQUEEN ELIZABETH:\nI never did her any, to my knowledge.\n\nGLOUCESTER:\nBut you have all the vantage of her wrong.\nI was too hot to do somebody good,\nThat is too cold in thinking of it now.\nMarry, as for Clarence, he is well repaid,\nHe is frank'd up to fatting for his pains\nGod pardon them that are the cause of it!\n\nRIVERS:\nA virtuous and a Christian-like conclusion,\nTo pray for them that have done scathe to us.\n\nGLOUCESTER:\nSo do I ever:\nbeing well-advised.\nFor had I cursed now, I had cursed myself.\n\nCATESBY:\nMadam, his majesty doth call for you,\nAnd for your grace; and you, my noble lords.\n\nQUEEN ELIZABETH:\nCatesby, we come. Lords, will you go with us?\n\nRIVERS:\nMadam, we will attend your grace.\n\nGLOUCESTER:\nI do the wrong, and first begin to brawl.\nThe secret mischiefs that I set abroach\nI lay unto the grievous charge of others.\nClarence, whom I, indeed, have laid in darkness,\nI do beweep to many simple gulls\nNamely, to Hastings, Derby, Buckingham;\nAnd say it is the queen and her allies\nThat stir the king against the duke my brother.\nNow, they believe it; and withal whet me\nTo be revenged on Rivers, Vaughan, Grey:\nBut then I sigh; and, with a piece of scripture,\nTell them that God bids us do good for evil:\nAnd thus I clothe my naked villany\nWith old odd ends stolen out of holy writ;\nAnd seem a saint, when most I play the devil.\nBut, soft! here come my executioners.\nHow now, my hardy, stout resolved mates!\nAre you now going to dispatch this deed?\n\nFirst Murderer:\nWe are, my lord; and come to have the warrant\nThat we may be admitted where he is.\n\nGLOUCESTER:\nWell thought upon; I have it here about me.\nWhen you have done, repair to Crosby Place.\nBut, sirs, be sudden in the execution,\nWithal obdurate, do not hear him plead;\nFor Clarence is well-spoken, and perhaps\nMay move your hearts to pity if you mark him.\n\nFirst Murderer:\nTush!\nFear not, my lord, we will not stand to prate;\nTalkers are no good doers: be assured\nWe come to use our hands and not our tongues.\n\nGLOUCESTER:\nYour eyes drop millstones, when fools' eyes drop tears:\nI like you, lads; about your business straight;\nGo, go, dispatch.\n\nFirst Murderer:\nWe will, my noble lord.\n\nBRAKENBURY:\nWhy looks your grace so heavily today?\n\nCLARENCE:\nO, I have pass'd a miserable night,\nSo full of ugly sights, of ghastly dreams,\nThat, as I am a Christian faithful man,\nI would not spend another such a night,\nThough 'twere to buy a world of happy days,\nSo full of dismal terror was the time!\n\nBRAKENBURY:\nWhat was your dream? I long to hear you tell it.\n\nCLARENCE:\nMethoughts that I had broken from the Tower,\nAnd was embark'd to cross to Burgundy;\nAnd, in my company, my brother Gloucester;\nWho from my cabin tempted me to walk\nUpon the hatches: thence we looked toward England,\nAnd cited up a thousand fearful times,\nDuring the wars of York and Lancaster\nThat had befall'n us. As we paced along\nUpon the giddy footing of the hatches,\nMethought that Gloucester stumbled; and, in falling,\nStruck me, that thought to stay him, overboard,\nInto the tumbling billows of the main.\nLord, Lord! methought, what pain it was to drown!\nWhat dreadful noise of waters in mine ears!\nWhat ugly sights of death within mine eyes!\nMethought I saw a thousand fearful wrecks;\nTen thousand men that fishes gnaw'd upon;\nWedges of gold, great anchors, heaps of pearl,\nInestimable stones, unvalued jewels,\nAll scatter'd in the bottom of the sea:\nSome lay in dead men's skulls; and, in those holes\nWhere eyes did once inhabit, there were crept,\nAs 'twere in scorn of eyes, reflecting gems,\nWhich woo'd the slimy bottom of the deep,\nAnd mock'd the dead bones that lay scatter'd by.\n\nBRAKENBURY:\nHad you such leisure in the time of death\nTo gaze upon the secrets of the deep?\n\nCLARENCE:\nMethought I had; and often did I strive\nTo yield the ghost: but still the envious flood\nKept in my soul, and would not let it forth\nTo seek the empty, vast and wandering air;\nBut smother'd it within my panting bulk,\nWhich almost burst to belch it in the sea.\n\nBRAKENBURY:\nAwaked you not with this sore agony?\n\nCLARENCE:\nO, no, my dream was lengthen'd after life;\nO, then began the tempest to my soul,\nWho pass'd, methought, the melancholy flood,\nWith that grim ferryman which poets write of,\nUnto the kingdom of perpetual night.\nThe first that there did greet my stranger soul,\nWas my great father-in-law, renowned Warwick;\nWho cried aloud, 'What scourge for perjury\nCan this dark monarchy afford false Clarence?'\nAnd so he vanish'd: then came wandering by\nA shadow like an angel, with bright hair\nDabbled in blood; and he squeak'd out aloud,\n'Clarence is come; false, fleeting, perjured Clarence,\nThat stabb'd me in the field by Tewksbury;\nSeize on him, Furies, take him to your torments!'\nWith that, methoughts, a legion of foul fiends\nEnviron'd me about, and howled in mine ears\nSuch hideous cries, that with the very noise\nI trembling waked, and for a season after\nCould not believe but that I was in hell,\nSuch terrible impression made the dream.\n\nBRAKENBURY:\nNo marvel, my lord, though it affrighted you;\nI promise, I am afraid to hear you tell it.\n\nCLARENCE:\nO Brakenbury, I have done those things,\nWhich now bear evidence against my soul,\nFor Edward's sake; and see how he requites me!\nO God! if my deep prayers cannot appease thee,\nBut thou wilt be avenged on my misdeeds,\nYet execute thy wrath in me alone,\nO, spare my guiltless wife and my poor children!\nI pray thee, gentle keeper, stay by me;\nMy soul is heavy, and I fain would sleep.\n\nBRAKENBURY:\nI will, my lord: God give your grace good rest!\nSorrow breaks seasons and reposing hours,\nMakes the night morning, and the noon-tide night.\nPrinces have but their tides for their glories,\nAn outward honour for an inward toil;\nAnd, for unfelt imagination,\nThey often feel a world of restless cares:\nSo that, betwixt their tides and low names,\nThere's nothing differs but the outward fame.\n\nFirst Murderer:\nHo! who's here?\n\nBRAKENBURY:\nIn God's name what are you, and how came you hither?\n\nFirst Murderer:\nI would speak with Clarence, and I came hither on my legs.\n\nBRAKENBURY:\nYea, are you so brief?\n\nSecond Murderer:\nO sir, it is better to be brief than tedious. Show\nhim our commission; talk no more.\n\nBRAKENBURY:\nI am, in this, commanded to deliver\nThe noble Duke of Clarence to your hands:\nI will not reason what is meant hereby,\nBecause I will be guiltless of the meaning.\nHere are the keys, there sits the duke asleep:\nI'll to the king; and signify to him\nThat thus I have resign'd my charge to you.\n\nFirst Murderer:\nDo so, it is a point of wisdom: fare you well.\n\nSecond Murderer:\nWhat, shall we stab him as he sleeps?\n\nFirst Murderer:\nNo; then he will say 'twas done cowardly, when he wakes.\n\nSecond Murderer:\nWhen he wakes! why, fool, he shall never wake till\nthe judgment-day.\n\nFirst Murderer:\nWhy, then he will say we stabbed him sleeping.\n\nSecond Murderer:\nThe urging of that word 'judgment' hath bred a kind\nof remorse in me.\n\nFirst Murderer:\nWhat, art thou afraid?\n\nSecond Murderer:\nNot to kill him, having a warrant for it; but to be\ndamned for killing him, from which no warrant can defend us.\n\nFirst Murderer:\nI thought thou hadst been resolute.\n\nSecond Murderer:\nSo I am, to let him live.\n\nFirst Murderer:\nBack to the Duke of Gloucester, tell him so.\n\nSecond Murderer:\nI pray thee, stay a while: I hope my holy humour\nwill change; 'twas wont to hold me but while one\nwould tell twenty.\n\nFirst Murderer:\nHow dost thou feel thyself now?\n\nSecond Murderer:\n'Faith, some certain dregs of conscience are yet\nwithin me.\n\nFirst Murderer:\nRemember our reward, when the deed is done.\n\nSecond Murderer:\n'Zounds, he dies: I had forgot the reward.\n\nFirst Murderer:\nWhere is thy conscience now?\n\nSecond Murderer:\nIn the Duke of Gloucester's purse.\n\nFirst Murderer:\nSo when he opens his purse to give us our reward,\nthy conscience flies out.\n\nSecond Murderer:\nLet it go; there's few or none will entertain it.\n\nFirst Murderer:\nHow if it come to thee again?\n\nSecond Murderer:\nI'll not meddle with it: it is a dangerous thing: it\nmakes a man a coward: a man cannot steal, but it\naccuseth him; he cannot swear, but it cheques him;\nhe cannot lie with his neighbour's wife, but it\ndetects him: 'tis a blushing shamefast spirit that\nmutinies in a man's bosom; it fills one full of\nobstacles: it made me once restore a purse of gold\nthat I found; it beggars any man that keeps it: it\nis turned out of all towns and cities for a\ndangerous thing; and every man that means to live\nwell endeavours to trust to himself and to live\nwithout it.\n\nFirst Murderer:\n'Zounds, it is even now at my elbow, persuading me\nnot to kill the duke.\n\nSecond Murderer:\nTake the devil in thy mind, and relieve him not: he\nwould insinuate with thee but to make thee sigh.\n\nFirst Murderer:\nTut, I am strong-framed, he cannot prevail with me,\nI warrant thee.\n\nSecond Murderer:\nSpoke like a tail fellow that respects his\nreputation. Come, shall we to this gear?\n\nFirst Murderer:\nTake him over the costard with the hilts of thy\nsword, and then we will chop him in the malmsey-butt\nin the next room.\n\nSecond Murderer:\nO excellent devise! make a sop of him.\n\nFirst Murderer:\nHark! he stirs: shall I strike?\n\nSecond Murderer:\nNo, first let's reason with him.\n\nCLARENCE:\nWhere art thou, keeper? give me a cup of wine.\n\nSecond murderer:\nYou shall have wine enough, my lord, anon.\n\nCLARENCE:\nIn God's name, what art thou?\n\nSecond Murderer:\nA man, as you are.\n\nCLARENCE:\nBut not, as I am, royal.\n\nSecond Murderer:\nNor you, as we are, loyal.\n\nCLARENCE:\nThy voice is thunder, but thy looks are humble.\n\nSecond Murderer:\nMy voice is now the king's, my looks mine own.\n\nCLARENCE:\nHow darkly and how deadly dost thou speak!\nYour eyes do menace me: why look you pale?\nWho sent you hither? Wherefore do you come?\n\nBoth:\nTo, to, to--\n\nCLARENCE:\nTo murder me?\n\nBoth:\nAy, ay.\n\nCLARENCE:\nYou scarcely have the hearts to tell me so,\nAnd therefore cannot have the hearts to do it.\nWherein, my friends, have I offended you?\n\nFirst Murderer:\nOffended us you have not, but the king.\n\nCLARENCE:\nI shall be reconciled to him again.\n\nSecond Murderer:\nNever, my lord; therefore prepare to die.\n\nCLARENCE:\nAre you call'd forth from out a world of men\nTo slay the innocent? What is my offence?\nWhere are the evidence that do accuse me?\nWhat lawful quest have given their verdict up\nUnto the frowning judge? or who pronounced\nThe bitter sentence of poor Clarence' death?\nBefore I be convict by course of law,\nTo threaten me with death is most unlawful.\nI charge you, as you hope to have redemption\nBy Christ's dear blood shed for our grievous sins,\nThat you depart and lay no hands on me\nThe deed you undertake is damnable.\n\nFirst Murderer:\nWhat we will do, we do upon command.\n\nSecond Murderer:\nAnd he that hath commanded is the king.\n\nCLARENCE:\nErroneous vassal! the great King of kings\nHath in the tables of his law commanded\nThat thou shalt do no murder: and wilt thou, then,\nSpurn at his edict and fulfil a man's?\nTake heed; for he holds vengeance in his hands,\nTo hurl upon their heads that break his law.\n\nSecond Murderer:\nAnd that same vengeance doth he hurl on thee,\nFor false forswearing and for murder too:\nThou didst receive the holy sacrament,\nTo fight in quarrel of the house of Lancaster.\n\nFirst Murderer:\nAnd, like a traitor to the name of God,\nDidst break that vow; and with thy treacherous blade\nUnrip'dst the bowels of thy sovereign's son.\n\nSecond Murderer:\nWhom thou wert sworn to cherish and defend.\n\nFirst Murderer:\nHow canst thou urge God's dreadful law to us,\nWhen thou hast broke it in so dear degree?\n\nCLARENCE:\nAlas! for whose sake did I that ill deed?\nFor Edward, for my brother, for his sake: Why, sirs,\nHe sends ye not to murder me for this\nFor in this sin he is as deep as I.\nIf God will be revenged for this deed.\nO, know you yet, he doth it publicly,\nTake not the quarrel from his powerful arm;\nHe needs no indirect nor lawless course\nTo cut off those that have offended him.\n\nFirst Murderer:\nWho made thee, then, a bloody minister,\nWhen gallant-springing brave Plantagenet,\nThat princely novice, was struck dead by thee?\n\nCLARENCE:\nMy brother's love, the devil, and my rage.\n\nFirst Murderer:\nThy brother's love, our duty, and thy fault,\nProvoke us hither now to slaughter thee.\n\nCLARENCE:\nOh, if you love my brother, hate not me;\nI am his brother, and I love him well.\nIf you be hired for meed, go back again,\nAnd I will send you to my brother Gloucester,\nWho shall reward you better for my life\nThan Edward will for tidings of my death.\n\nSecond Murderer:\nYou are deceived, your brother Gloucester hates you.\n\nCLARENCE:\nO, no, he loves me, and he holds me dear:\nGo you to him from me.\n\nBoth:\nAy, so we will.\n\nCLARENCE:\nTell him, when that our princely father York\nBless'd his three sons with his victorious arm,\nAnd charged us from his soul to love each other,\nHe little thought of this divided friendship:\nBid Gloucester think of this, and he will weep.\n\nFirst Murderer:\nAy, millstones; as be lesson'd us to weep.\n\nCLARENCE:\nO, do not slander him, for he is kind.\n\nFirst Murderer:\nRight,\nAs snow in harvest. Thou deceivest thyself:\n'Tis he that sent us hither now to slaughter thee.\n\nCLARENCE:\nIt cannot be; for when I parted with him,\nHe hugg'd me in his arms, and swore, with sobs,\nThat he would labour my delivery.\n\nSecond Murderer:\nWhy, so he doth, now he delivers thee\nFrom this world's thraldom to the joys of heaven.\n\nFirst Murderer:\nMake peace with God, for you must die, my lord.\n\nCLARENCE:\nHast thou that holy feeling in thy soul,\nTo counsel me to make my peace with God,\nAnd art thou yet to thy own soul so blind,\nThat thou wilt war with God by murdering me?\nAh, sirs, consider, he that set you on\nTo do this deed will hate you for the deed.\n\nSecond Murderer:\nWhat shall we do?\n\nCLARENCE:\nRelent, and save your souls.\n\nFirst Murderer:\nRelent! 'tis cowardly and womanish.\n\nCLARENCE:\nNot to relent is beastly, savage, devilish.\nWhich of you, if you were a prince's son,\nBeing pent from liberty, as I am now,\nif two such murderers as yourselves came to you,\nWould not entreat for life?\nMy friend, I spy some pity in thy looks:\nO, if thine eye be not a flatterer,\nCome thou on my side, and entreat for me,\nAs you would beg, were you in my distress\nA begging prince what beggar pities not?\n\nSecond Murderer:\nLook behind you, my lord.\n\nFirst Murderer:\nTake that, and that: if all this will not do,\nI'll drown you in the malmsey-butt within.\n\nSecond Murderer:\nA bloody deed, and desperately dispatch'd!\nHow fain, like Pilate, would I wash my hands\nOf this most grievous guilty murder done!\n\nFirst Murderer:\nHow now! what mean'st thou, that thou help'st me not?\nBy heavens, the duke shall know how slack thou art!\n\nSecond Murderer:\nI would he knew that I had saved his brother!\nTake thou the fee, and tell him what I say;\nFor I repent me that the duke is slain.\n\nFirst Murderer:\nSo do not I: go, coward as thou art.\nNow must I hide his body in some hole,\nUntil the duke take order for his burial:\nAnd when I have my meed, I must away;\nFor this will out, and here I must not stay.\n\nKING EDWARD IV:\nWhy, so: now have I done a good day's work:\nYou peers, continue this united league:\nI every day expect an embassage\nFrom my Redeemer to redeem me hence;\nAnd now in peace my soul shall part to heaven,\nSince I have set my friends at peace on earth.\nRivers and Hastings, take each other's hand;\nDissemble not your hatred, swear your love.\n\nRIVERS:\nBy heaven, my heart is purged from grudging hate:\nAnd with my hand I seal my true heart's love.\n\nHASTINGS:\nSo thrive I, as I truly swear the like!\n\nKING EDWARD IV:\nTake heed you dally not before your king;\nLest he that is the supreme King of kings\nConfound your hidden falsehood, and award\nEither of you to be the other's end.\n\nHASTINGS:\nSo prosper I, as I swear perfect love!\n\nRIVERS:\nAnd I, as I love Hastings with my heart!\n\nKING EDWARD IV:\nMadam, yourself are not exempt in this,\nNor your son Dorset, Buckingham, nor you;\nYou have been factious one against the other,\nWife, love Lord Hastings, let him kiss your hand;\nAnd what you do, do it unfeignedly.\n\nQUEEN ELIZABETH:\nHere, Hastings; I will never more remember\nOur former hatred, so thrive I and mine!\n\nKING EDWARD IV:\nDorset, embrace him; Hastings, love lord marquess.\n\nDORSET:\nThis interchange of love, I here protest,\nUpon my part shall be unviolable.\n\nHASTINGS:\nAnd so swear I, my lord\n\nKING EDWARD IV:\nNow, princely Buckingham, seal thou this league\nWith thy embracements to my wife's allies,\nAnd make me happy in your unity.\n\nBUCKINGHAM:\nWhenever Buckingham doth turn his hate\nOn you or yours,\nbut with all duteous love\nDoth cherish you and yours, God punish me\nWith hate in those where I expect most love!\nWhen I have most need to employ a friend,\nAnd most assured that he is a friend\nDeep, hollow, treacherous, and full of guile,\nBe he unto me! this do I beg of God,\nWhen I am cold in zeal to yours.\n\nKING EDWARD IV:\nA pleasing cordial, princely Buckingham,\nis this thy vow unto my sickly heart.\nThere wanteth now our brother Gloucester here,\nTo make the perfect period of this peace.\n\nBUCKINGHAM:\nAnd, in good time, here comes the noble duke.\n\nGLOUCESTER:\nGood morrow to my sovereign king and queen:\nAnd, princely peers, a happy time of day!\n\nKING EDWARD IV:\nHappy, indeed, as we have spent the day.\nBrother, we done deeds of charity;\nMade peace enmity, fair love of hate,\nBetween these swelling wrong-incensed peers.\n\nGLOUCESTER:\nA blessed labour, my most sovereign liege:\nAmongst this princely heap, if any here,\nBy false intelligence, or wrong surmise,\nHold me a foe;\nIf I unwittingly, or in my rage,\nHave aught committed that is hardly borne\nBy any in this presence, I desire\nTo reconcile me to his friendly peace:\n'Tis death to me to be at enmity;\nI hate it, and desire all good men's love.\nFirst, madam, I entreat true peace of you,\nWhich I will purchase with my duteous service;\nOf you, my noble cousin Buckingham,\nIf ever any grudge were lodged between us;\nOf you, Lord Rivers, and, Lord Grey, of you;\nThat without desert have frown'd on me;\nDukes, earls, lords, gentlemen; indeed, of all.\nI do not know that Englishman alive\nWith whom my soul is any jot at odds\nMore than the infant that is born to-night\nI thank my God for my humility.\n\nQUEEN ELIZABETH:\nA holy day shall this be kept hereafter:\nI would to God all strifes were well compounded.\nMy sovereign liege, I do beseech your majesty\nTo take our brother Clarence to your grace.\n\nGLOUCESTER:\nWhy, madam, have I offer'd love for this\nTo be so bouted in this royal presence?\nWho knows not that the noble duke is dead?\nYou do him injury to scorn his corse.\n\nRIVERS:\nWho knows not he is dead! who knows he is?\n\nQUEEN ELIZABETH:\nAll seeing heaven, what a world is this!\n\nBUCKINGHAM:\nLook I so pale, Lord Dorset, as the rest?\n\nDORSET:\nAy, my good lord; and no one in this presence\nBut his red colour hath forsook his cheeks.\n\nKING EDWARD IV:\nIs Clarence dead? the order was reversed.\n\nGLOUCESTER:\nBut he, poor soul, by your first order died,\nAnd that a winged Mercury did bear:\nSome tardy cripple bore the countermand,\nThat came too lag to see him buried.\nGod grant that some, less noble and less loyal,\nNearer in bloody thoughts, but not in blood,\nDeserve not worse than wretched Clarence did,\nAnd yet go current from suspicion!\n\nDORSET:\nA boon, my sovereign, for my service done!\n\nKING EDWARD IV:\nI pray thee, peace: my soul is full of sorrow.\n\nDORSET:\nI will not rise, unless your highness grant.\n\nKING EDWARD IV:\nThen speak at once what is it thou demand'st.\n\nDORSET:\nThe forfeit, sovereign, of my servant's life;\nWho slew to-day a righteous gentleman\nLately attendant on the Duke of Norfolk.\n\nKING EDWARD IV:\nHave a tongue to doom my brother's death,\nAnd shall the same give pardon to a slave?\nMy brother slew no man; his fault was thought,\nAnd yet his punishment was cruel death.\nWho sued to me for him? who, in my rage,\nKneel'd at my feet, and bade me be advised\nWho spake of brotherhood? who spake of love?\nWho told me how the poor soul did forsake\nThe mighty Warwick, and did fight for me?\nWho told me, in the field by Tewksbury\nWhen Oxford had me down, he rescued me,\nAnd said, 'Dear brother, live, and be a king'?\nWho told me, when we both lay in the field\nFrozen almost to death, how he did lap me\nEven in his own garments, and gave himself,\nAll thin and naked, to the numb cold night?\nAll this from my remembrance brutish wrath\nSinfully pluck'd, and not a man of you\nHad so much grace to put it in my mind.\nBut when your carters or your waiting-vassals\nHave done a drunken slaughter, and defaced\nThe precious image of our dear Redeemer,\nYou straight are on your knees for pardon, pardon;\nAnd I unjustly too, must grant it you\nBut for my brother not a man would speak,\nNor I, ungracious, speak unto myself\nFor him, poor soul. The proudest of you all\nHave been beholding to him in his life;\nYet none of you would once plead for his life.\nO God, I fear thy justice will take hold\nOn me, and you, and mine, and yours for this!\nCome, Hastings, help me to my closet.\nOh, poor Clarence!\n\nGLOUCESTER:\nThis is the fruit of rashness! Mark'd you not\nHow that the guilty kindred of the queen\nLook'd pale when they did hear of Clarence' death?\nO, they did urge it still unto the king!\nGod will revenge it. But come, let us in,\nTo comfort Edward with our company.\n\nBUCKINGHAM:\nWe wait upon your grace.\n\nBoy:\nTell me, good grandam, is our father dead?\n\nDUCHESS OF YORK:\nNo, boy.\n\nBoy:\nWhy do you wring your hands, and beat your breast,\nAnd cry 'O Clarence, my unhappy son!'\n\nGirl:\nWhy do you look on us, and shake your head,\nAnd call us wretches, orphans, castaways\nIf that our noble father be alive?\n\nDUCHESS OF YORK:\nMy pretty cousins, you mistake me much;\nI do lament the sickness of the king.\nAs loath to lose him, not your father's death;\nIt were lost sorrow to wail one that's lost.\n\nBoy:\nThen, grandam, you conclude that he is dead.\nThe king my uncle is to blame for this:\nGod will revenge it; whom I will importune\nWith daily prayers all to that effect.\n\nGirl:\nAnd so will I.\n\nDUCHESS OF YORK:\nPeace, children, peace! the king doth love you well:\nIncapable and shallow innocents,\nYou cannot guess who caused your father's death.\n\nBoy:\nGrandam, we can; for my good uncle Gloucester\nTold me, the king, provoked by the queen,\nDevised impeachments to imprison him :\nAnd when my uncle told me so, he wept,\nAnd hugg'd me in his arm, and kindly kiss'd my cheek;\nBade me rely on him as on my father,\nAnd he would love me dearly as his child.\n\nDUCHESS OF YORK:\nOh, that deceit should steal such gentle shapes,\nAnd with a virtuous vizard hide foul guile!\nHe is my son; yea, and therein my shame;\nYet from my dugs he drew not this deceit.\n\nBoy:\nThink you my uncle did dissemble, grandam?\n\nDUCHESS OF YORK:\nAy, boy.\n\nBoy:\nI cannot think it. Hark! what noise is this?\n\nQUEEN ELIZABETH:\nOh, who shall hinder me to wail and weep,\nTo chide my fortune, and torment myself?\nI'll join with black despair against my soul,\nAnd to myself become an enemy.\n\nDUCHESS OF YORK:\nWhat means this scene of rude impatience?\n\nQUEEN ELIZABETH:\nTo make an act of tragic violence:\nEdward, my lord, your son, our king, is dead.\nWhy grow the branches now the root is wither'd?\nWhy wither not the leaves the sap being gone?\nIf you will live, lament; if die, be brief,\nThat our swift-winged souls may catch the king's;\nOr, like obedient subjects, follow him\nTo his new kingdom of perpetual rest.\n\nDUCHESS OF YORK:\nAh, so much interest have I in thy sorrow\nAs I had title in thy noble husband!\nI have bewept a worthy husband's death,\nAnd lived by looking on his images:\nBut now two mirrors of his princely semblance\nAre crack'd in pieces by malignant death,\nAnd I for comfort have but one false glass,\nWhich grieves me when I see my shame in him.\nThou art a widow; yet thou art a mother,\nAnd hast the comfort of thy children left thee:\nBut death hath snatch'd my husband from mine arms,\nAnd pluck'd two crutches from my feeble limbs,\nEdward and Clarence. O, what cause have I,\nThine being but a moiety of my grief,\nTo overgo thy plaints and drown thy cries!\n\nBoy:\nGood aunt, you wept not for our father's death;\nHow can we aid you with our kindred tears?\n\nGirl:\nOur fatherless distress was left unmoan'd;\nYour widow-dolour likewise be unwept!\n\nQUEEN ELIZABETH:\nGive me no help in lamentation;\nI am not barren to bring forth complaints\nAll springs reduce their currents to mine eyes,\nThat I, being govern'd by the watery moon,\nMay send forth plenteous tears to drown the world!\nOh for my husband, for my dear lord Edward!\n\nChildren:\nOh for our father, for our dear lord Clarence!\n\nDUCHESS OF YORK:\nAlas for both, both mine, Edward and Clarence!\n\nQUEEN ELIZABETH:\nWhat stay had I but Edward? and he's gone.\n\nChildren:\nWhat stay had we but Clarence? and he's gone.\n\nDUCHESS OF YORK:\nWhat stays had I but they? and they are gone.\n\nQUEEN ELIZABETH:\nWas never widow had so dear a loss!\n\nChildren:\nWere never orphans had so dear a loss!\n\nDUCHESS OF YORK:\nWas never mother had so dear a loss!\nAlas, I am the mother of these moans!\nTheir woes are parcell'd, mine are general.\nShe for an Edward weeps, and so do I;\nI for a Clarence weep, so doth not she:\nThese babes for Clarence weep and so do I;\nI for an Edward weep, so do not they:\nAlas, you three, on me, threefold distress'd,\nPour all your tears! I am your sorrow's nurse,\nAnd I will pamper it with lamentations.\n\nDORSET:\nComfort, dear mother: God is much displeased\nThat you take with unthankfulness, his doing:\nIn common worldly things, 'tis call'd ungrateful,\nWith dull unwilligness to repay a debt\nWhich with a bounteous hand was kindly lent;\nMuch more to be thus opposite with heaven,\nFor it requires the royal debt it lent you.\n\nRIVERS:\nMadam, bethink you, like a careful mother,\nOf the young prince your son: send straight for him\nLet him be crown'd; in him your comfort lives:\nDrown desperate sorrow in dead Edward's grave,\nAnd plant your joys in living Edward's throne.\n\nGLOUCESTER:\nMadam, have comfort: all of us have cause\nTo wail the dimming of our shining star;\nBut none can cure their harms by wailing them.\nMadam, my mother, I do cry you mercy;\nI did not see your grace: humbly on my knee\nI crave your blessing.\n\nDUCHESS OF YORK:\nGod bless thee; and put meekness in thy mind,\nLove, charity, obedience, and true duty!\n\nGLOUCESTER:\n\nBUCKINGHAM:\nYou cloudy princes and heart-sorrowing peers,\nThat bear this mutual heavy load of moan,\nNow cheer each other in each other's love\nThough we have spent our harvest of this king,\nWe are to reap the harvest of his son.\nThe broken rancour of your high-swoln hearts,\nBut lately splinter'd, knit, and join'd together,\nMust gently be preserved, cherish'd, and kept:\nMe seemeth good, that, with some little train,\nForthwith from Ludlow the young prince be fetch'd\nHither to London, to be crown'd our king.\n\nRIVERS:\nWhy with some little train, my Lord of Buckingham?\n\nBUCKINGHAM:\nMarry, my lord, lest, by a multitude,\nThe new-heal'd wound of malice should break out,\nWhich would be so much the more dangerous\nBy how much the estate is green and yet ungovern'd:\nWhere every horse bears his commanding rein,\nAnd may direct his course as please himself,\nAs well the fear of harm, as harm apparent,\nIn my opinion, ought to be prevented.\n\nGLOUCESTER:\nI hope the king made peace with all of us\nAnd the compact is firm and true in me.\n\nRIVERS:\nAnd so in me; and so, I think, in all:\nYet, since it is but green, it should be put\nTo no apparent likelihood of breach,\nWhich haply by much company might be urged:\nTherefore I say with noble Buckingham,\nThat it is meet so few should fetch the prince.\n\nHASTINGS:\nAnd so say I.\n\nGLOUCESTER:\nThen be it so; and go we to determine\nWho they shall be that straight shall post to Ludlow.\nMadam, and you, my mother, will you go\nTo give your censures in this weighty business?\n\nQUEEN ELIZABETH:\nWith all our harts.\n\nBUCKINGHAM:\nMy lord, whoever journeys to the Prince,\nFor God's sake, let not us two be behind;\nFor, by the way, I'll sort occasion,\nAs index to the story we late talk'd of,\nTo part the queen's proud kindred from the king.\n\nGLOUCESTER:\nMy other self, my counsel's consistory,\nMy oracle, my prophet! My dear cousin,\nI, like a child, will go by thy direction.\nTowards Ludlow then, for we'll not stay behind.\n\nFirst Citizen:\nNeighbour, well met: whither away so fast?\n\nSecond Citizen:\nI promise you, I scarcely know myself:\nHear you the news abroad?\n\nFirst Citizen:\nAy, that the king is dead.\n\nSecond Citizen:\nBad news, by'r lady; seldom comes the better:\nI fear, I fear 'twill prove a troublous world.\n\nThird Citizen:\nNeighbours, God speed!\n\nFirst Citizen:\nGive you good morrow, sir.\n\nThird Citizen:\nDoth this news hold of good King Edward's death?\n\nSecond Citizen:\nAy, sir, it is too true; God help the while!\n\nThird Citizen:\nThen, masters, look to see a troublous world.\n\nFirst Citizen:\nNo, no; by God's good grace his son shall reign.\n\nThird Citizen:\nWoe to the land that's govern'd by a child!\n\nSecond Citizen:\nIn him there is a hope of government,\nThat in his nonage council under him,\nAnd in his full and ripen'd years himself,\nNo doubt, shall then and till then govern well.\n\nFirst Citizen:\nSo stood the state when Henry the Sixth\nWas crown'd in Paris but at nine months old.\n\nThird Citizen:\nStood the state so? No, no, good friends, God wot;\nFor then this land was famously enrich'd\nWith politic grave counsel; then the king\nHad virtuous uncles to protect his grace.\n\nFirst Citizen:\nWhy, so hath this, both by the father and mother.\n\nThird Citizen:\nBetter it were they all came by the father,\nOr by the father there were none at all;\nFor emulation now, who shall be nearest,\nWill touch us all too near, if God prevent not.\nO, full of danger is the Duke of Gloucester!\nAnd the queen's sons and brothers haught and proud:\nAnd were they to be ruled, and not to rule,\nThis sickly land might solace as before.\n\nFirst Citizen:\nCome, come, we fear the worst; all shall be well.\n\nThird Citizen:\nWhen clouds appear, wise men put on their cloaks;\nWhen great leaves fall, the winter is at hand;\nWhen the sun sets, who doth not look for night?\nUntimely storms make men expect a dearth.\nAll may be well; but, if God sort it so,\n'Tis more than we deserve, or I expect.\n\nSecond Citizen:\nTruly, the souls of men are full of dread:\nYe cannot reason almost with a man\nThat looks not heavily and full of fear.\n\nThird Citizen:\nBefore the times of change, still is it so:\nBy a divine instinct men's minds mistrust\nEnsuing dangers; as by proof, we see\nThe waters swell before a boisterous storm.\nBut leave it all to God. whither away?\n\nSecond Citizen:\nMarry, we were sent for to the justices.\n\nThird Citizen:\nAnd so was I: I'll bear you company.\n\nARCHBISHOP OF YORK:\nLast night, I hear, they lay at Northampton;\nAt Stony-Stratford will they be to-night:\nTo-morrow, or next day, they will be here.\n\nDUCHESS OF YORK:\nI long with all my heart to see the prince:\nI hope he is much grown since last I saw him.\n\nQUEEN ELIZABETH:\nBut I hear, no; they say my son of York\nHath almost overta'en him in his growth.\n\nYORK:\nAy, mother; but I would not have it so.\n\nDUCHESS OF YORK:\nWhy, my young cousin, it is good to grow.\n\nYORK:\nGrandam, one night, as we did sit at supper,\nMy uncle Rivers talk'd how I did grow\nMore than my brother: 'Ay,' quoth my uncle\nGloucester,\n'Small herbs have grace, great weeds do grow apace:'\nAnd since, methinks, I would not grow so fast,\nBecause sweet flowers are slow and weeds make haste.\n\nDUCHESS OF YORK:\nGood faith, good faith, the saying did not hold\nIn him that did object the same to thee;\nHe was the wretched'st thing when he was young,\nSo long a-growing and so leisurely,\nThat, if this rule were true, he should be gracious.\n\nARCHBISHOP OF YORK:\nWhy, madam, so, no doubt, he is.\n\nDUCHESS OF YORK:\nI hope he is; but yet let mothers doubt.\n\nYORK:\nNow, by my troth, if I had been remember'd,\nI could have given my uncle's grace a flout,\nTo touch his growth nearer than he touch'd mine.\n\nDUCHESS OF YORK:\nHow, my pretty York? I pray thee, let me hear it.\n\nYORK:\nMarry, they say my uncle grew so fast\nThat he could gnaw a crust at two hours old\n'Twas full two years ere I could get a tooth.\nGrandam, this would have been a biting jest.\n\nDUCHESS OF YORK:\nI pray thee, pretty York, who told thee this?\n\nYORK:\nGrandam, his nurse.\n\nDUCHESS OF YORK:\nHis nurse! why, she was dead ere thou wert born.\n\nYORK:\nIf 'twere not she, I cannot tell who told me.\n\nQUEEN ELIZABETH:\nA parlous boy: go to, you are too shrewd.\n\nARCHBISHOP OF YORK:\nGood madam, be not angry with the child.\n\nQUEEN ELIZABETH:\nPitchers have ears.\n\nARCHBISHOP OF YORK:\nHere comes a messenger. What news?\n\nMessenger:\nSuch news, my lord, as grieves me to unfold.\n\nQUEEN ELIZABETH:\nHow fares the prince?\n\nMessenger:\nWell, madam, and in health.\n\nDUCHESS OF YORK:\nWhat is thy news then?\n\nMessenger:\nLord Rivers and Lord Grey are sent to Pomfret,\nWith them Sir Thomas Vaughan, prisoners.\n\nDUCHESS OF YORK:\nWho hath committed them?\n\nMessenger:\nThe mighty dukes\nGloucester and Buckingham.\n\nQUEEN ELIZABETH:\nFor what offence?\n\nMessenger:\nThe sum of all I can, I have disclosed;\nWhy or for what these nobles were committed\nIs all unknown to me, my gracious lady.\n\nQUEEN ELIZABETH:\nAy me, I see the downfall of our house!\nThe tiger now hath seized the gentle hind;\nInsulting tyranny begins to jet\nUpon the innocent and aweless throne:\nWelcome, destruction, death, and massacre!\nI see, as in a map, the end of all.\n\nDUCHESS OF YORK:\nAccursed and unquiet wrangling days,\nHow many of you have mine eyes beheld!\nMy husband lost his life to get the crown;\nAnd often up and down my sons were toss'd,\nFor me to joy and weep their gain and loss:\nAnd being seated, and domestic broils\nClean over-blown, themselves, the conquerors.\nMake war upon themselves; blood against blood,\nSelf against self: O, preposterous\nAnd frantic outrage, end thy damned spleen;\nOr let me die, to look on death no more!\n\nQUEEN ELIZABETH:\nCome, come, my boy; we will to sanctuary.\nMadam, farewell.\n\nDUCHESS OF YORK:\nI'll go along with you.\n\nQUEEN ELIZABETH:\nYou have no cause.\n\nARCHBISHOP OF YORK:\nMy gracious lady, go;\nAnd thither bear your treasure and your goods.\nFor my part, I'll resign unto your grace\nThe seal I keep: and so betide to me\nAs well I tender you and all of yours!\nCome, I'll conduct you to the sanctuary.\n\nBUCKINGHAM:\nWelcome, sweet prince, to London, to your chamber.\n\nGLOUCESTER:\nWelcome, dear cousin, my thoughts' sovereign\nThe weary way hath made you melancholy.\n\nPRINCE EDWARD:\nNo, uncle; but our crosses on the way\nHave made it tedious, wearisome, and heavy\nI want more uncles here to welcome me.\n\nGLOUCESTER:\nSweet prince, the untainted virtue of your years\nHath not yet dived into the world's deceit\nNor more can you distinguish of a man\nThan of his outward show; which, God he knows,\nSeldom or never jumpeth with the heart.\nThose uncles which you want were dangerous;\nYour grace attended to their sugar'd words,\nBut look'd not on the poison of their hearts :\nGod keep you from them, and from such false friends!\n\nPRINCE EDWARD:\nGod keep me from false friends! but they were none.\n\nGLOUCESTER:\nMy lord, the mayor of London comes to greet you.\n\nLord Mayor:\nGod bless your grace with health and happy days!\n\nPRINCE EDWARD:\nI thank you, good my lord; and thank you all.\nI thought my mother, and my brother York,\nWould long ere this have met us on the way\nFie, what a slug is Hastings, that he comes not\nTo tell us whether they will come or no!\n\nBUCKINGHAM:\nAnd, in good time, here comes the sweating lord.\n\nPRINCE EDWARD:\nWelcome, my lord: what, will our mother come?\n\nHASTINGS:\nOn what occasion, God he knows, not I,\nThe queen your mother, and your brother York,\nHave taken sanctuary: the tender prince\nWould fain have come with me to meet your grace,\nBut by his mother was perforce withheld.\n\nBUCKINGHAM:\nFie, what an indirect and peevish course\nIs this of hers! Lord cardinal, will your grace\nPersuade the queen to send the Duke of York\nUnto his princely brother presently?\nIf she deny, Lord Hastings, go with him,\nAnd from her jealous arms pluck him perforce.\n\nCARDINAL:\nMy Lord of Buckingham, if my weak oratory\nCan from his mother win the Duke of York,\nAnon expect him here; but if she be obdurate\nTo mild entreaties, God in heaven forbid\nWe should infringe the holy privilege\nOf blessed sanctuary! not for all this land\nWould I be guilty of so deep a sin.\n\nBUCKINGHAM:\nYou are too senseless--obstinate, my lord,\nToo ceremonious and traditional\nWeigh it but with the grossness of this age,\nYou break not sanctuary in seizing him.\nThe benefit thereof is always granted\nTo those whose dealings have deserved the place,\nAnd those who have the wit to claim the place:\nThis prince hath neither claim'd it nor deserved it;\nAnd therefore, in mine opinion, cannot have it:\nThen, taking him from thence that is not there,\nYou break no privilege nor charter there.\nOft have I heard of sanctuary men;\nBut sanctuary children ne'er till now.\n\nCARDINAL:\nMy lord, you shall o'er-rule my mind for once.\nCome on, Lord Hastings, will you go with me?\n\nHASTINGS:\nI go, my lord.\n\nPRINCE EDWARD:\nGood lords, make all the speedy haste you may.\nSay, uncle Gloucester, if our brother come,\nWhere shall we sojourn till our coronation?\n\nGLOUCESTER:\nWhere it seems best unto your royal self.\nIf I may counsel you, some day or two\nYour highness shall repose you at the Tower:\nThen where you please, and shall be thought most fit\nFor your best health and recreation.\n\nPRINCE EDWARD:\nI do not like the Tower, of any place.\nDid Julius Caesar build that place, my lord?\n\nBUCKINGHAM:\nHe did, my gracious lord, begin that place;\nWhich, since, succeeding ages have re-edified.\n\nPRINCE EDWARD:\nIs it upon record, or else reported\nSuccessively from age to age, he built it?\n\nBUCKINGHAM:\nUpon record, my gracious lord.\n\nPRINCE EDWARD:\nBut say, my lord, it were not register'd,\nMethinks the truth should live from age to age,\nAs 'twere retail'd to all posterity,\nEven to the general all-ending day.\n\nGLOUCESTER:\n\nPRINCE EDWARD:\nWhat say you, uncle?\n\nGLOUCESTER:\nI say, without characters, fame lives long.\nThus, like the formal vice, Iniquity,\nI moralize two meanings in one word.\n\nPRINCE EDWARD:\nThat Julius Caesar was a famous man;\nWith what his valour did enrich his wit,\nHis wit set down to make his valour live\nDeath makes no conquest of this conqueror;\nFor now he lives in fame, though not in life.\nI'll tell you what, my cousin Buckingham,--\n\nBUCKINGHAM:\nWhat, my gracious lord?\n\nPRINCE EDWARD:\nAn if I live until I be a man,\nI'll win our ancient right in France again,\nOr die a soldier, as I lived a king.\n\nGLOUCESTER:\n\nBUCKINGHAM:\nNow, in good time, here comes the Duke of York.\n\nPRINCE EDWARD:\nRichard of York! how fares our loving brother?\n\nYORK:\nWell, my dread lord; so must I call you now.\n\nPRINCE EDWARD:\nAy, brother, to our grief, as it is yours:\nToo late he died that might have kept that title,\nWhich by his death hath lost much majesty.\n\nGLOUCESTER:\nHow fares our cousin, noble Lord of York?\n\nYORK:\nI thank you, gentle uncle. O, my lord,\nYou said that idle weeds are fast in growth\nThe prince my brother hath outgrown me far.\n\nGLOUCESTER:\nHe hath, my lord.\n\nYORK:\nAnd therefore is he idle?\n\nGLOUCESTER:\nO, my fair cousin, I must not say so.\n\nYORK:\nThen is he more beholding to you than I.\n\nGLOUCESTER:\nHe may command me as my sovereign;\nBut you have power in me as in a kinsman.\n\nYORK:\nI pray you, uncle, give me this dagger.\n\nGLOUCESTER:\nMy dagger, little cousin? with all my heart.\n\nPRINCE EDWARD:\nA beggar, brother?\n\nYORK:\nOf my kind uncle, that I know will give;\nAnd being but a toy, which is no grief to give.\n\nGLOUCESTER:\nA greater gift than that I'll give my cousin.\n\nYORK:\nA greater gift! O, that's the sword to it.\n\nGLOUCESTER:\nA gentle cousin, were it light enough.\n\nYORK:\nO, then, I see, you will part but with light gifts;\nIn weightier things you'll say a beggar nay.\n\nGLOUCESTER:\nIt is too heavy for your grace to wear.\n\nYORK:\nI weigh it lightly, were it heavier.\n\nGLOUCESTER:\nWhat, would you have my weapon, little lord?\n\nYORK:\nI would, that I might thank you as you call me.\n\nGLOUCESTER:\nHow?\n\nYORK:\nLittle.\n\nPRINCE EDWARD:\nMy Lord of York will still be cross in talk:\nUncle, your grace knows how to bear with him.\n\nYORK:\nYou mean, to bear me, not to bear with me:\nUncle, my brother mocks both you and me;\nBecause that I am little, like an ape,\nHe thinks that you should bear me on your shoulders.\n\nBUCKINGHAM:\nWith what a sharp-provided wit he reasons!\nTo mitigate the scorn he gives his uncle,\nHe prettily and aptly taunts himself:\nSo cunning and so young is wonderful.\n\nGLOUCESTER:\nMy lord, will't please you pass along?\nMyself and my good cousin Buckingham\nWill to your mother, to entreat of her\nTo meet you at the Tower and welcome you.\n\nYORK:\nWhat, will you go unto the Tower, my lord?\n\nPRINCE EDWARD:\nMy lord protector needs will have it so.\n\nYORK:\nI shall not sleep in quiet at the Tower.\n\nGLOUCESTER:\nWhy, what should you fear?\n\nYORK:\nMarry, my uncle Clarence' angry ghost:\nMy grandam told me he was murdered there.\n\nPRINCE EDWARD:\nI fear no uncles dead.\n\nGLOUCESTER:\nNor none that live, I hope.\n\nPRINCE EDWARD:\nAn if they live, I hope I need not fear.\nBut come, my lord; and with a heavy heart,\nThinking on them, go I unto the Tower.\n\nBUCKINGHAM:\nThink you, my lord, this little prating York\nWas not incensed by his subtle mother\nTo taunt and scorn you thus opprobriously?\n\nGLOUCESTER:\nNo doubt, no doubt; O, 'tis a parlous boy;\nBold, quick, ingenious, forward, capable\nHe is all the mother's, from the top to toe.\n\nBUCKINGHAM:\nWell, let them rest. Come hither, Catesby.\nThou art sworn as deeply to effect what we intend\nAs closely to conceal what we impart:\nThou know'st our reasons urged upon the way;\nWhat think'st thou? is it not an easy matter\nTo make William Lord Hastings of our mind,\nFor the instalment of this noble duke\nIn the seat royal of this famous isle?\n\nCATESBY:\nHe for his father's sake so loves the prince,\nThat he will not be won to aught against him.\n\nBUCKINGHAM:\nWhat think'st thou, then, of Stanley? what will he?\n\nCATESBY:\nHe will do all in all as Hastings doth.\n\nBUCKINGHAM:\nWell, then, no more but this: go, gentle Catesby,\nAnd, as it were far off sound thou Lord Hastings,\nHow doth he stand affected to our purpose;\nAnd summon him to-morrow to the Tower,\nTo sit about the coronation.\nIf thou dost find him tractable to us,\nEncourage him, and show him all our reasons:\nIf he be leaden, icy-cold, unwilling,\nBe thou so too; and so break off your talk,\nAnd give us notice of his inclination:\nFor we to-morrow hold divided councils,\nWherein thyself shalt highly be employ'd.\n\nGLOUCESTER:\nCommend me to Lord William: tell him, Catesby,\nHis ancient knot of dangerous adversaries\nTo-morrow are let blood at Pomfret-castle;\nAnd bid my friend, for joy of this good news,\nGive mistress Shore one gentle kiss the more.\n\nBUCKINGHAM:\nGood Catesby, go, effect this business soundly.\n\nCATESBY:\nMy good lords both, with all the heed I may.\n\nGLOUCESTER:\nShall we hear from you, Catesby, ere we sleep?\n\nCATESBY:\nYou shall, my lord.\n\nGLOUCESTER:\nAt Crosby Place, there shall you find us both.\n\nBUCKINGHAM:\nNow, my lord, what shall we do, if we perceive\nLord Hastings will not yield to our complots?\n\nGLOUCESTER:\nChop off his head, man; somewhat we will do:\nAnd, look, when I am king, claim thou of me\nThe earldom of Hereford, and the moveables\nWhereof the king my brother stood possess'd.\n\nBUCKINGHAM:\nI'll claim that promise at your grace's hands.\n\nGLOUCESTER:\nAnd look to have it yielded with all willingness.\nCome, let us sup betimes, that afterwards\nWe may digest our complots in some form.\n\nMessenger:\nWhat, ho! my lord!\n\nHASTINGS:\n\nMessenger:\nA messenger from the Lord Stanley.\n\nHASTINGS:\nWhat is't o'clock?\n\nMessenger:\nUpon the stroke of four.\n\nHASTINGS:\nCannot thy master sleep these tedious nights?\n\nMessenger:\nSo it should seem by that I have to say.\nFirst, he commends him to your noble lordship.\n\nHASTINGS:\nAnd then?\n\nMessenger:\nAnd then he sends you word\nHe dreamt to-night the boar had razed his helm:\nBesides, he says there are two councils held;\nAnd that may be determined at the one\nwhich may make you and him to rue at the other.\nTherefore he sends to know your lordship's pleasure,\nIf presently you will take horse with him,\nAnd with all speed post with him toward the north,\nTo shun the danger that his soul divines.\n\nHASTINGS:\nGo, fellow, go, return unto thy lord;\nBid him not fear the separated councils\nHis honour and myself are at the one,\nAnd at the other is my servant Catesby\nWhere nothing can proceed that toucheth us\nWhereof I shall not have intelligence.\nTell him his fears are shallow, wanting instance:\nAnd for his dreams, I wonder he is so fond\nTo trust the mockery of unquiet slumbers\nTo fly the boar before the boar pursues,\nWere to incense the boar to follow us\nAnd make pursuit where he did mean no chase.\nGo, bid thy master rise and come to me\nAnd we will both together to the Tower,\nWhere, he shall see, the boar will use us kindly.\n\nMessenger:\nMy gracious lord, I'll tell him what you say.\n\nCATESBY:\nMany good morrows to my noble lord!\n\nHASTINGS:\nGood morrow, Catesby; you are early stirring\nWhat news, what news, in this our tottering state?\n\nCATESBY:\nIt is a reeling world, indeed, my lord;\nAnd I believe twill never stand upright\nTim Richard wear the garland of the realm.\n\nHASTINGS:\nHow! wear the garland! dost thou mean the crown?\n\nCATESBY:\nAy, my good lord.\n\nHASTINGS:\nI'll have this crown of mine cut from my shoulders\nEre I will see the crown so foul misplaced.\nBut canst thou guess that he doth aim at it?\n\nCATESBY:\nAy, on my life; and hopes to find forward\nUpon his party for the gain thereof:\nAnd thereupon he sends you this good news,\nThat this same very day your enemies,\nThe kindred of the queen, must die at Pomfret.\n\nHASTINGS:\nIndeed, I am no mourner for that news,\nBecause they have been still mine enemies:\nBut, that I'll give my voice on Richard's side,\nTo bar my master's heirs in true descent,\nGod knows I will not do it, to the death.\n\nCATESBY:\nGod keep your lordship in that gracious mind!\n\nHASTINGS:\nBut I shall laugh at this a twelve-month hence,\nThat they who brought me in my master's hate\nI live to look upon their tragedy.\nI tell thee, Catesby--\n\nCATESBY:\nWhat, my lord?\n\nHASTINGS:\nEre a fortnight make me elder,\nI'll send some packing that yet think not on it.\n\nCATESBY:\n'Tis a vile thing to die, my gracious lord,\nWhen men are unprepared and look not for it.\n\nHASTINGS:\nO monstrous, monstrous! and so falls it out\nWith Rivers, Vaughan, Grey: and so 'twill do\nWith some men else, who think themselves as safe\nAs thou and I; who, as thou know'st, are dear\nTo princely Richard and to Buckingham.\n\nCATESBY:\nThe princes both make high account of you;\nFor they account his head upon the bridge.\n\nHASTINGS:\nI know they do; and I have well deserved it.\nCome on, come on; where is your boar-spear, man?\nFear you the boar, and go so unprovided?\n\nSTANLEY:\nMy lord, good morrow; good morrow, Catesby:\nYou may jest on, but, by the holy rood,\nI do not like these several councils, I.\n\nHASTINGS:\nMy lord,\nI hold my life as dear as you do yours;\nAnd never in my life, I do protest,\nWas it more precious to me than 'tis now:\nThink you, but that I know our state secure,\nI would be so triumphant as I am?\n\nSTANLEY:\nThe lords at Pomfret, when they rode from London,\nWere jocund, and supposed their state was sure,\nAnd they indeed had no cause to mistrust;\nBut yet, you see how soon the day o'ercast.\nThis sudden stag of rancour I misdoubt:\nPray God, I say, I prove a needless coward!\nWhat, shall we toward the Tower? the day is spent.\n\nHASTINGS:\nCome, come, have with you. Wot you what, my lord?\nTo-day the lords you talk of are beheaded.\n\nLORD STANLEY:\nThey, for their truth, might better wear their heads\nThan some that have accused them wear their hats.\nBut come, my lord, let us away.\n\nHASTINGS:\nGo on before; I'll talk with this good fellow.\nHow now, sirrah! how goes the world with thee?\n\nPursuivant:\nThe better that your lordship please to ask.\n\nHASTINGS:\nI tell thee, man, 'tis better with me now\nThan when I met thee last where now we meet:\nThen was I going prisoner to the Tower,\nBy the suggestion of the queen's allies;\nBut now, I tell thee--keep it to thyself--\nThis day those enemies are put to death,\nAnd I in better state than e'er I was.\n\nPursuivant:\nGod hold it, to your honour's good content!\n\nHASTINGS:\nGramercy, fellow: there, drink that for me.\n\nPursuivant:\nGod save your lordship!\n\nPriest:\nWell met, my lord; I am glad to see your honour.\n\nHASTINGS:\nI thank thee, good Sir John, with all my heart.\nI am in your debt for your last exercise;\nCome the next Sabbath, and I will content you.\n\nBUCKINGHAM:\nWhat, talking with a priest, lord chamberlain?\nYour friends at Pomfret, they do need the priest;\nYour honour hath no shriving work in hand.\n\nHASTINGS:\nGood faith, and when I met this holy man,\nThose men you talk of came into my mind.\nWhat, go you toward the Tower?\n\nBUCKINGHAM:\nI do, my lord; but long I shall not stay\nI shall return before your lordship thence.\n\nHASTINGS:\n'Tis like enough, for I stay dinner there.\n\nBUCKINGHAM:\n\nHASTINGS:\nI'll wait upon your lordship.\n\nRATCLIFF:\nCome, bring forth the prisoners.\n\nRIVERS:\nSir Richard Ratcliff, let me tell thee this:\nTo-day shalt thou behold a subject die\nFor truth, for duty, and for loyalty.\n\nGREY:\nGod keep the prince from all the pack of you!\nA knot you are of damned blood-suckers!\n\nVAUGHAN:\nYou live that shall cry woe for this after.\n\nRATCLIFF:\nDispatch; the limit of your lives is out.\n\nRIVERS:\nO Pomfret, Pomfret! O thou bloody prison,\nFatal and ominous to noble peers!\nWithin the guilty closure of thy walls\nRichard the second here was hack'd to death;\nAnd, for more slander to thy dismal seat,\nWe give thee up our guiltless blood to drink.\n\nGREY:\nNow Margaret's curse is fall'n upon our heads,\nFor standing by when Richard stabb'd her son.\n\nRIVERS:\nThen cursed she Hastings, then cursed she Buckingham,\nThen cursed she Richard. O, remember, God\nTo hear her prayers for them, as now for us\nAnd for my sister and her princely sons,\nBe satisfied, dear God, with our true blood,\nWhich, as thou know'st, unjustly must be spilt.\n\nRATCLIFF:\nMake haste; the hour of death is expiate.\n\nRIVERS:\nCome, Grey, come, Vaughan, let us all embrace:\nAnd take our leave, until we meet in heaven.\n\nHASTINGS:\nMy lords, at once: the cause why we are met\nIs, to determine of the coronation.\nIn God's name, speak: when is the royal day?\n\nBUCKINGHAM:\nAre all things fitting for that royal time?\n\nDERBY:\nIt is, and wants but nomination.\n\nBISHOP OF ELY:\nTo-morrow, then, I judge a happy day.\n\nBUCKINGHAM:\nWho knows the lord protector's mind herein?\nWho is most inward with the royal duke?\n\nBISHOP OF ELY:\nYour grace, we think, should soonest know his mind.\n\nBUCKINGHAM:\nWho, I, my lord I we know each other's faces,\nBut for our hearts, he knows no more of mine,\nThan I of yours;\nNor I no more of his, than you of mine.\nLord Hastings, you and he are near in love.\n\nHASTINGS:\nI thank his grace, I know he loves me well;\nBut, for his purpose in the coronation.\nI have not sounded him, nor he deliver'd\nHis gracious pleasure any way therein:\nBut you, my noble lords, may name the time;\nAnd in the duke's behalf I'll give my voice,\nWhich, I presume, he'll take in gentle part.\n\nBISHOP OF ELY:\nNow in good time, here comes the duke himself.\n\nGLOUCESTER:\nMy noble lords and cousins all, good morrow.\nI have been long a sleeper; but, I hope,\nMy absence doth neglect no great designs,\nWhich by my presence might have been concluded.\n\nBUCKINGHAM:\nHad not you come upon your cue, my lord\nWilliam Lord Hastings had pronounced your part,--\nI mean, your voice,--for crowning of the king.\n\nGLOUCESTER:\nThan my Lord Hastings no man might be bolder;\nHis lordship knows me well, and loves me well.\n\nHASTINGS:\nI thank your grace.\n\nGLOUCESTER:\nMy lord of Ely!\n\nBISHOP OF ELY:\nMy lord?\n\nGLOUCESTER:\nWhen I was last in Holborn,\nI saw good strawberries in your garden there\nI do beseech you send for some of them.\n\nBISHOP OF ELY:\nMarry, and will, my lord, with all my heart.\n\nGLOUCESTER:\nCousin of Buckingham, a word with you.\nCatesby hath sounded Hastings in our business,\nAnd finds the testy gentleman so hot,\nAs he will lose his head ere give consent\nHis master's son, as worshipful as he terms it,\nShall lose the royalty of England's throne.\n\nBUCKINGHAM:\nWithdraw you hence, my lord, I'll follow you.\n\nDERBY:\nWe have not yet set down this day of triumph.\nTo-morrow, in mine opinion, is too sudden;\nFor I myself am not so well provided\nAs else I would be, were the day prolong'd.\n\nBISHOP OF ELY:\nWhere is my lord protector? I have sent for these\nstrawberries.\n\nHASTINGS:\nHis grace looks cheerfully and smooth to-day;\nThere's some conceit or other likes him well,\nWhen he doth bid good morrow with such a spirit.\nI think there's never a man in Christendom\nThat can less hide his love or hate than he;\nFor by his face straight shall you know his heart.\n\nDERBY:\nWhat of his heart perceive you in his face\nBy any likelihood he show'd to-day?\n\nHASTINGS:\nMarry, that with no man here he is offended;\nFor, were he, he had shown it in his looks.\n\nDERBY:\nI pray God he be not, I say.\n\nGLOUCESTER:\nI pray you all, tell me what they deserve\nThat do conspire my death with devilish plots\nOf damned witchcraft, and that have prevail'd\nUpon my body with their hellish charms?\n\nHASTINGS:\nThe tender love I bear your grace, my lord,\nMakes me most forward in this noble presence\nTo doom the offenders, whatsoever they be\nI say, my lord, they have deserved death.\n\nGLOUCESTER:\nThen be your eyes the witness of this ill:\nSee how I am bewitch'd; behold mine arm\nIs, like a blasted sapling, wither'd up:\nAnd this is Edward's wife, that monstrous witch,\nConsorted with that harlot strumpet Shore,\nThat by their witchcraft thus have marked me.\n\nHASTINGS:\nIf they have done this thing, my gracious lord--\n\nGLOUCESTER:\nIf I thou protector of this damned strumpet--\nTellest thou me of 'ifs'?  Thou art a traitor:\nOff with his head! Now, by Saint Paul I swear,\nI will not dine until I see the same.\nLovel and Ratcliff, look that it be done:\nThe rest, that love me, rise and follow me.\n\nHASTINGS:\nWoe, woe for England! not a whit for me;\nFor I, too fond, might have prevented this.\nStanley did dream the boar did raze his helm;\nBut I disdain'd it, and did scorn to fly:\nThree times to-day my foot-cloth horse did stumble,\nAnd startled, when he look'd upon the Tower,\nAs loath to bear me to the slaughter-house.\nO, now I want the priest that spake to me:\nI now repent I told the pursuivant\nAs 'twere triumphing at mine enemies,\nHow they at Pomfret bloodily were butcher'd,\nAnd I myself secure in grace and favour.\nO Margaret, Margaret, now thy heavy curse\nIs lighted on poor Hastings' wretched head!\n\nRATCLIFF:\nDispatch, my lord; the duke would be at dinner:\nMake a short shrift; he longs to see your head.\n\nHASTINGS:\nO momentary grace of mortal men,\nWhich we more hunt for than the grace of God!\nWho builds his hopes in air of your good looks,\nLives like a drunken sailor on a mast,\nReady, with every nod, to tumble down\nInto the fatal bowels of the deep.\n\nLOVEL:\nCome, come, dispatch; 'tis bootless to exclaim.\n\nHASTINGS:\nO bloody Richard! miserable England!\nI prophesy the fearful'st time to thee\nThat ever wretched age hath look'd upon.\nCome, lead me to the block; bear him my head.\nThey smile at me that shortly shall be dead.\n\nGLOUCESTER:\nCome, cousin, canst thou quake, and change thy colour,\nMurder thy breath in the middle of a word,\nAnd then begin again, and stop again,\nAs if thou wert distraught and mad with terror?\n\nBUCKINGHAM:\nTut, I can counterfeit the deep tragedian;\nSpeak and look back, and pry on every side,\nTremble and start at wagging of a straw,\nIntending deep suspicion: ghastly looks\nAre at my service, like enforced smiles;\nAnd both are ready in their offices,\nAt any time, to grace my stratagems.\nBut what, is Catesby gone?\n\nGLOUCESTER:\nHe is; and, see, he brings the mayor along.\n\nBUCKINGHAM:\nLord mayor,--\n\nGLOUCESTER:\nLook to the drawbridge there!\n\nBUCKINGHAM:\nHark! a drum.\n\nGLOUCESTER:\nCatesby, o'erlook the walls.\n\nBUCKINGHAM:\nLord mayor, the reason we have sent--\n\nGLOUCESTER:\nLook back, defend thee, here are enemies.\n\nBUCKINGHAM:\nGod and our innocency defend and guard us!\n\nGLOUCESTER:\nBe patient, they are friends, Ratcliff and Lovel.\n\nLOVEL:\nHere is the head of that ignoble traitor,\nThe dangerous and unsuspected Hastings.\n\nGLOUCESTER:\nSo dear I loved the man, that I must weep.\nI took him for the plainest harmless creature\nThat breathed upon this earth a Christian;\nMade him my book wherein my soul recorded\nThe history of all her secret thoughts:\nSo smooth he daub'd his vice with show of virtue,\nThat, his apparent open guilt omitted,\nI mean, his conversation with Shore's wife,\nHe lived from all attainder of suspect.\n\nBUCKINGHAM:\nWell, well, he was the covert'st shelter'd traitor\nThat ever lived.\nWould you imagine, or almost believe,\nWere't not that, by great preservation,\nWe live to tell it you, the subtle traitor\nThis day had plotted, in the council-house\nTo murder me and my good Lord of Gloucester?\n\nLord Mayor:\nWhat, had he so?\n\nGLOUCESTER:\nWhat, think You we are Turks or infidels?\nOr that we would, against the form of law,\nProceed thus rashly to the villain's death,\nBut that the extreme peril of the case,\nThe peace of England and our persons' safety,\nEnforced us to this execution?\n\nLord Mayor:\nNow, fair befall you! he deserved his death;\nAnd you my good lords, both have well proceeded,\nTo warn false traitors from the like attempts.\nI never look'd for better at his hands,\nAfter he once fell in with Mistress Shore.\n\nGLOUCESTER:\nYet had not we determined he should die,\nUntil your lordship came to see his death;\nWhich now the loving haste of these our friends,\nSomewhat against our meaning, have prevented:\nBecause, my lord, we would have had you heard\nThe traitor speak, and timorously confess\nThe manner and the purpose of his treason;\nThat you might well have signified the same\nUnto the citizens, who haply may\nMisconstrue us in him and wail his death.\n\nLord Mayor:\nBut, my good lord, your grace's word shall serve,\nAs well as I had seen and heard him speak\nAnd doubt you not, right noble princes both,\nBut I'll acquaint our duteous citizens\nWith all your just proceedings in this cause.\n\nGLOUCESTER:\nAnd to that end we wish'd your lord-ship here,\nTo avoid the carping censures of the world.\n\nBUCKINGHAM:\nBut since you come too late of our intents,\nYet witness what you hear we did intend:\nAnd so, my good lord mayor, we bid farewell.\n\nGLOUCESTER:\nGo, after, after, cousin Buckingham.\nThe mayor towards Guildhall hies him in all post:\nThere, at your meet'st advantage of the time,\nInfer the bastardy of Edward's children:\nTell them how Edward put to death a citizen,\nOnly for saying he would make his son\nHeir to the crown; meaning indeed his house,\nWhich, by the sign thereof was termed so.\nMoreover, urge his hateful luxury\nAnd bestial appetite in change of lust;\nWhich stretched to their servants, daughters, wives,\nEven where his lustful eye or savage heart,\nWithout control, listed to make his prey.\nNay, for a need, thus far come near my person:\nTell them, when that my mother went with child\nOf that unsatiate Edward, noble York\nMy princely father then had wars in France\nAnd, by just computation of the time,\nFound that the issue was not his begot;\nWhich well appeared in his lineaments,\nBeing nothing like the noble duke my father:\nBut touch this sparingly, as 'twere far off,\nBecause you know, my lord, my mother lives.\n\nBUCKINGHAM:\nFear not, my lord, I'll play the orator\nAs if the golden fee for which I plead\nWere for myself: and so, my lord, adieu.\n\nGLOUCESTER:\nIf you thrive well, bring them to Baynard's Castle;\nWhere you shall find me well accompanied\nWith reverend fathers and well-learned bishops.\n\nBUCKINGHAM:\nI go: and towards three or four o'clock\nLook for the news that the Guildhall affords.\n\nGLOUCESTER:\nGo, Lovel, with all speed to Doctor Shaw;\nGo thou to Friar Penker; bid them both\nMeet me within this hour at Baynard's Castle.\nNow will I in, to take some privy order,\nTo draw the brats of Clarence out of sight;\nAnd to give notice, that no manner of person\nAt any time have recourse unto the princes.\n\nScrivener:\nThis is the indictment of the good Lord Hastings;\nWhich in a set hand fairly is engross'd,\nThat it may be this day read over in Paul's.\nAnd mark how well the sequel hangs together:\nEleven hours I spent to write it over,\nFor yesternight by Catesby was it brought me;\nThe precedent was full as long a-doing:\nAnd yet within these five hours lived Lord Hastings,\nUntainted, unexamined, free, at liberty\nHere's a good world the while! Why who's so gross,\nThat seeth not this palpable device?\nYet who's so blind, but says he sees it not?\nBad is the world; and all will come to nought,\nWhen such bad dealings must be seen in thought.\n\nGLOUCESTER:\nHow now, my lord, what say the citizens?\n\nBUCKINGHAM:\nNow, by the holy mother of our Lord,\nThe citizens are mum and speak not a word.\n\nGLOUCESTER:\nTouch'd you the bastardy of Edward's children?\n\nBUCKINGHAM:\nI did; with his contract with Lady Lucy,\nAnd his contract by deputy in France;\nThe insatiate greediness of his desires,\nAnd his enforcement of the city wives;\nHis tyranny for trifles; his own bastardy,\nAs being got, your father then in France,\nHis resemblance, being not like the duke;\nWithal I did infer your lineaments,\nBeing the right idea of your father,\nBoth in your form and nobleness of mind;\nLaid open all your victories in Scotland,\nYour dicipline in war, wisdom in peace,\nYour bounty, virtue, fair humility:\nIndeed, left nothing fitting for the purpose\nUntouch'd, or slightly handled, in discourse\nAnd when mine oratory grew to an end\nI bid them that did love their country's good\nCry 'God save Richard, England's royal king!'\n\nGLOUCESTER:\nAh! and did they so?\n\nBUCKINGHAM:\nNo, so God help me, they spake not a word;\nBut, like dumb statues or breathing stones,\nGazed each on other, and look'd deadly pale.\nWhich when I saw, I reprehended them;\nAnd ask'd the mayor what meant this wilful silence:\nHis answer was, the people were not wont\nTo be spoke to but by the recorder.\nThen he was urged to tell my tale again,\n'Thus saith the duke, thus hath the duke inferr'd;'\nBut nothing spake in warrant from himself.\nWhen he had done, some followers of mine own,\nAt the lower end of the hall, hurl'd up their caps,\nAnd some ten voices cried 'God save King Richard!'\nAnd thus I took the vantage of those few,\n'Thanks, gentle citizens and friends,' quoth I;\n'This general applause and loving shout\nArgues your wisdoms and your love to Richard:'\nAnd even here brake off, and came away.\n\nGLOUCESTER:\nWhat tongueless blocks were they! would not they speak?\n\nBUCKINGHAM:\nNo, by my troth, my lord.\n\nGLOUCESTER:\nWill not the mayor then and his brethren come?\n\nBUCKINGHAM:\nThe mayor is here at hand: intend some fear;\nBe not you spoke with, but by mighty suit:\nAnd look you get a prayer-book in your hand,\nAnd stand betwixt two churchmen, good my lord;\nFor on that ground I'll build a holy descant:\nAnd be not easily won to our request:\nPlay the maid's part, still answer nay, and take it.\n\nGLOUCESTER:\nI go; and if you plead as well for them\nAs I can say nay to thee for myself,\nNo doubt well bring it to a happy issue.\n\nBUCKINGHAM:\nGo, go, up to the leads; the lord mayor knocks.\nWelcome my lord; I dance attendance here;\nI think the duke will not be spoke withal.\nHere comes his servant: how now, Catesby,\nWhat says he?\n\nCATESBY:\nMy lord: he doth entreat your grace;\nTo visit him to-morrow or next day:\nHe is within, with two right reverend fathers,\nDivinely bent to meditation;\nAnd no worldly suit would he be moved,\nTo draw him from his holy exercise.\n\nBUCKINGHAM:\nReturn, good Catesby, to thy lord again;\nTell him, myself, the mayor and citizens,\nIn deep designs and matters of great moment,\nNo less importing than our general good,\nAre come to have some conference with his grace.\n\nCATESBY:\nI'll tell him what you say, my lord.\n\nBUCKINGHAM:\nAh, ha, my lord, this prince is not an Edward!\nHe is not lolling on a lewd day-bed,\nBut on his knees at meditation;\nNot dallying with a brace of courtezans,\nBut meditating with two deep divines;\nNot sleeping, to engross his idle body,\nBut praying, to enrich his watchful soul:\nHappy were England, would this gracious prince\nTake on himself the sovereignty thereof:\nBut, sure, I fear, we shall ne'er win him to it.\n\nLord Mayor:\nMarry, God forbid his grace should say us nay!\n\nBUCKINGHAM:\nI fear he will.\nHow now, Catesby, what says your lord?\n\nCATESBY:\nMy lord,\nHe wonders to what end you have assembled\nSuch troops of citizens to speak with him,\nHis grace not being warn'd thereof before:\nMy lord, he fears you mean no good to him.\n\nBUCKINGHAM:\nSorry I am my noble cousin should\nSuspect me, that I mean no good to him:\nBy heaven, I come in perfect love to him;\nAnd so once more return and tell his grace.\nWhen holy and devout religious men\nAre at their beads, 'tis hard to draw them thence,\nSo sweet is zealous contemplation.\n\nLord Mayor:\nSee, where he stands between two clergymen!\n\nBUCKINGHAM:\nTwo props of virtue for a Christian prince,\nTo stay him from the fall of vanity:\nAnd, see, a book of prayer in his hand,\nTrue ornaments to know a holy man.\nFamous Plantagenet, most gracious prince,\nLend favourable ears to our request;\nAnd pardon us the interruption\nOf thy devotion and right Christian zeal.\n\nGLOUCESTER:\nMy lord, there needs no such apology:\nI rather do beseech you pardon me,\nWho, earnest in the service of my God,\nNeglect the visitation of my friends.\nBut, leaving this, what is your grace's pleasure?\n\nBUCKINGHAM:\nEven that, I hope, which pleaseth God above,\nAnd all good men of this ungovern'd isle.\n\nGLOUCESTER:\nI do suspect I have done some offence\nThat seems disgracious in the city's eyes,\nAnd that you come to reprehend my ignorance.\n\nBUCKINGHAM:\nYou have, my lord: would it might please your grace,\nAt our entreaties, to amend that fault!\n\nGLOUCESTER:\nElse wherefore breathe I in a Christian land?\n\nBUCKINGHAM:\nThen know, it is your fault that you resign\nThe supreme seat, the throne majestical,\nThe scepter'd office of your ancestors,\nYour state of fortune and your due of birth,\nThe lineal glory of your royal house,\nTo the corruption of a blemished stock:\nWhilst, in the mildness of your sleepy thoughts,\nWhich here we waken to our country's good,\nThis noble isle doth want her proper limbs;\nHer face defaced with scars of infamy,\nHer royal stock graft with ignoble plants,\nAnd almost shoulder'd in the swallowing gulf\nOf blind forgetfulness and dark oblivion.\nWhich to recure, we heartily solicit\nYour gracious self to take on you the charge\nAnd kingly government of this your land,\nNot as protector, steward, substitute,\nOr lowly factor for another's gain;\nBut as successively from blood to blood,\nYour right of birth, your empery, your own.\nFor this, consorted with the citizens,\nYour very worshipful and loving friends,\nAnd by their vehement instigation,\nIn this just suit come I to move your grace.\n\nGLOUCESTER:\nI know not whether to depart in silence,\nOr bitterly to speak in your reproof.\nBest fitteth my degree or your condition\nIf not to answer, you might haply think\nTongue-tied ambition, not replying, yielded\nTo bear the golden yoke of sovereignty,\nWhich fondly you would here impose on me;\nIf to reprove you for this suit of yours,\nSo season'd with your faithful love to me.\nThen, on the other side, I cheque'd my friends.\nTherefore, to speak, and to avoid the first,\nAnd then, in speaking, not to incur the last,\nDefinitively thus I answer you.\nYour love deserves my thanks; but my desert\nUnmeritable shuns your high request.\nFirst if all obstacles were cut away,\nAnd that my path were even to the crown,\nAs my ripe revenue and due by birth\nYet so much is my poverty of spirit,\nSo mighty and so many my defects,\nAs I had rather hide me from my greatness,\nBeing a bark to brook no mighty sea,\nThan in my greatness covet to be hid,\nAnd in the vapour of my glory smother'd.\nBut, God be thank'd, there's no need of me,\nAnd much I need to help you, if need were;\nThe royal tree hath left us royal fruit,\nWhich, mellow'd by the stealing hours of time,\nWill well become the seat of majesty,\nAnd make, no doubt, us happy by his reign.\nOn him I lay what you would lay on me,\nThe right and fortune of his happy stars;\nWhich God defend that I should wring from him!\n\nBUCKINGHAM:\nMy lord, this argues conscience in your grace;\nBut the respects thereof are nice and trivial,\nAll circumstances well considered.\nYou say that Edward is your brother's son:\nSo say we too, but not by Edward's wife;\nFor first he was contract to Lady Lucy--\nYour mother lives a witness to that vow--\nAnd afterward by substitute betroth'd\nTo Bona, sister to the King of France.\nThese both put by a poor petitioner,\nA care-crazed mother of a many children,\nA beauty-waning and distressed widow,\nEven in the afternoon of her best days,\nMade prize and purchase of his lustful eye,\nSeduced the pitch and height of all his thoughts\nTo base declension and loathed bigamy\nBy her, in his unlawful bed, he got\nThis Edward, whom our manners term the prince.\nMore bitterly could I expostulate,\nSave that, for reverence to some alive,\nI give a sparing limit to my tongue.\nThen, good my lord, take to your royal self\nThis proffer'd benefit of dignity;\nIf non to bless us and the land withal,\nYet to draw forth your noble ancestry\nFrom the corruption of abusing times,\nUnto a lineal true-derived course.\n\nLord Mayor:\nDo, good my lord, your citizens entreat you.\n\nBUCKINGHAM:\nRefuse not, mighty lord, this proffer'd love.\n\nCATESBY:\nO, make them joyful, grant their lawful suit!\n\nGLOUCESTER:\nAlas, why would you heap these cares on me?\nI am unfit for state and majesty;\nI do beseech you, take it not amiss;\nI cannot nor I will not yield to you.\n\nBUCKINGHAM:\nIf you refuse it,--as, in love and zeal,\nLoath to depose the child, Your brother's son;\nAs well we know your tenderness of heart\nAnd gentle, kind, effeminate remorse,\nWhich we have noted in you to your kin,\nAnd egally indeed to all estates,--\nYet whether you accept our suit or no,\nYour brother's son shall never reign our king;\nBut we will plant some other in the throne,\nTo the disgrace and downfall of your house:\nAnd in this resolution here we leave you.--\nCome, citizens: 'zounds! I'll entreat no more.\n\nGLOUCESTER:\nO, do not swear, my lord of Buckingham.\n\nCATESBY:\nCall them again, my lord, and accept their suit.\n\nANOTHER:\nDo, good my lord, lest all the land do rue it.\n\nGLOUCESTER:\nWould you enforce me to a world of care?\nWell, call them again. I am not made of stone,\nBut penetrable to your. kind entreats,\nAlbeit against my conscience and my soul.\nCousin of Buckingham, and you sage, grave men,\nSince you will buckle fortune on my back,\nTo bear her burthen, whether I will or no,\nI must have patience to endure the load:\nBut if black scandal or foul-faced reproach\nAttend the sequel of your imposition,\nYour mere enforcement shall acquittance me\nFrom all the impure blots and stains thereof;\nFor God he knows, and you may partly see,\nHow far I am from the desire thereof.\n\nLord Mayor:\nGod bless your grace! we see it, and will say it.\n\nGLOUCESTER:\nIn saying so, you shall but say the truth.\n\nBUCKINGHAM:\nThen I salute you with this kingly title:\nLong live Richard, England's royal king!\n\nLord Mayor:\nAmen.\n\nBUCKINGHAM:\nTo-morrow will it please you to be crown'd?\n\nGLOUCESTER:\nEven when you please, since you will have it so.\n\nBUCKINGHAM:\nTo-morrow, then, we will attend your grace:\nAnd so most joyfully we take our leave.\n\nGLOUCESTER:\nCome, let us to our holy task again.\nFarewell, good cousin; farewell, gentle friends.\n\nDUCHESS OF YORK:\nWho meets us here?  my niece Plantagenet\nLed in the hand of her kind aunt of Gloucester?\nNow, for my life, she's wandering to the Tower,\nOn pure heart's love to greet the tender princes.\nDaughter, well met.\n\nLADY ANNE:\nGod give your graces both\nA happy and a joyful time of day!\n\nQUEEN ELIZABETH:\nAs much to you, good sister! Whither away?\n\nLADY ANNE:\nNo farther than the Tower; and, as I guess,\nUpon the like devotion as yourselves,\nTo gratulate the gentle princes there.\n\nQUEEN ELIZABETH:\nKind sister, thanks: we'll enter all together.\nAnd, in good time, here the lieutenant comes.\nMaster lieutenant, pray you, by your leave,\nHow doth the prince, and my young son of York?\n\nBRAKENBURY:\nRight well, dear madam. By your patience,\nI may not suffer you to visit them;\nThe king hath straitly charged the contrary.\n\nQUEEN ELIZABETH:\nThe king! why, who's that?\n\nBRAKENBURY:\nI cry you mercy: I mean the lord protector.\n\nQUEEN ELIZABETH:\nThe Lord protect him from that kingly title!\nHath he set bounds betwixt their love and me?\nI am their mother; who should keep me from them?\n\nDUCHESS OF YORK:\nI am their fathers mother; I will see them.\n\nLADY ANNE:\nTheir aunt I am in law, in love their mother:\nThen bring me to their sights; I'll bear thy blame\nAnd take thy office from thee, on my peril.\n\nBRAKENBURY:\nNo, madam, no; I may not leave it so:\nI am bound by oath, and therefore pardon me.\n\nLORD STANLEY:\nLet me but meet you, ladies, one hour hence,\nAnd I'll salute your grace of York as mother,\nAnd reverend looker on, of two fair queens.\nCome, madam, you must straight to Westminster,\nThere to be crowned Richard's royal queen.\n\nQUEEN ELIZABETH:\nO, cut my lace in sunder, that my pent heart\nMay have some scope to beat, or else I swoon\nWith this dead-killing news!\n\nLADY ANNE:\nDespiteful tidings! O unpleasing news!\n\nDORSET:\nBe of good cheer: mother, how fares your grace?\n\nQUEEN ELIZABETH:\nO Dorset, speak not to me, get thee hence!\nDeath and destruction dog thee at the heels;\nThy mother's name is ominous to children.\nIf thou wilt outstrip death, go cross the seas,\nAnd live with Richmond, from the reach of hell\nGo, hie thee, hie thee from this slaughter-house,\nLest thou increase the number of the dead;\nAnd make me die the thrall of Margaret's curse,\nNor mother, wife, nor England's counted queen.\n\nLORD STANLEY:\nFull of wise care is this your counsel, madam.\nTake all the swift advantage of the hours;\nYou shall have letters from me to my son\nTo meet you on the way, and welcome you.\nBe not ta'en tardy by unwise delay.\n\nDUCHESS OF YORK:\nO ill-dispersing wind of misery!\nO my accursed womb, the bed of death!\nA cockatrice hast thou hatch'd to the world,\nWhose unavoided eye is murderous.\n\nLORD STANLEY:\nCome, madam, come; I in all haste was sent.\n\nLADY ANNE:\nAnd I in all unwillingness will go.\nI would to God that the inclusive verge\nOf golden metal that must round my brow\nWere red-hot steel, to sear me to the brain!\nAnointed let me be with deadly venom,\nAnd die, ere men can say, God save the queen!\n\nQUEEN ELIZABETH:\nGo, go, poor soul, I envy not thy glory\nTo feed my humour, wish thyself no harm.\n\nLADY ANNE:\nNo! why?  When he that is my husband now\nCame to me, as I follow'd Henry's corse,\nWhen scarce the blood was well wash'd from his hands\nWhich issued from my other angel husband\nAnd that dead saint which then I weeping follow'd;\nO, when, I say, I look'd on Richard's face,\nThis was my wish: 'Be thou,' quoth I, ' accursed,\nFor making me, so young, so old a widow!\nAnd, when thou wed'st, let sorrow haunt thy bed;\nAnd be thy wife--if any be so mad--\nAs miserable by the life of thee\nAs thou hast made me by my dear lord's death!\nLo, ere I can repeat this curse again,\nEven in so short a space, my woman's heart\nGrossly grew captive to his honey words\nAnd proved the subject of my own soul's curse,\nWhich ever since hath kept my eyes from rest;\nFor never yet one hour in his bed\nHave I enjoy'd the golden dew of sleep,\nBut have been waked by his timorous dreams.\nBesides, he hates me for my father Warwick;\nAnd will, no doubt, shortly be rid of me.\n\nQUEEN ELIZABETH:\nPoor heart, adieu! I pity thy complaining.\n\nLADY ANNE:\nNo more than from my soul I mourn for yours.\n\nQUEEN ELIZABETH:\nFarewell, thou woful welcomer of glory!\n\nLADY ANNE:\nAdieu, poor soul, that takest thy leave of it!\n\nDUCHESS OF YORK:\n\nQUEEN ELIZABETH:\nStay, yet look back with me unto the Tower.\nPity, you ancient stones, those tender babes\nWhom envy hath immured within your walls!\nRough cradle for such little pretty ones!\nRude ragged nurse, old sullen playfellow\nFor tender princes, use my babies well!\nSo foolish sorrow bids your stones farewell.\n\nKING RICHARD III:\nStand all apart Cousin of Buckingham!\n\nBUCKINGHAM:\nMy gracious sovereign?\n\nKING RICHARD III:\nGive me thy hand.\nThus high, by thy advice\nAnd thy assistance, is King Richard seated;\nBut shall we wear these honours for a day?\nOr shall they last, and we rejoice in them?\n\nBUCKINGHAM:\nStill live they and for ever may they last!\n\nKING RICHARD III:\nO Buckingham, now do I play the touch,\nTo try if thou be current gold indeed\nYoung Edward lives: think now what I would say.\n\nBUCKINGHAM:\nSay on, my loving lord.\n\nKING RICHARD III:\nWhy, Buckingham, I say, I would be king,\n\nBUCKINGHAM:\nWhy, so you are, my thrice renowned liege.\n\nKING RICHARD III:\nHa! am I king? 'tis so: but Edward lives.\n\nBUCKINGHAM:\nTrue, noble prince.\n\nKING RICHARD III:\nO bitter consequence,\nThat Edward still should live! 'True, noble prince!'\nCousin, thou wert not wont to be so dull:\nShall I be plain? I wish the bastards dead;\nAnd I would have it suddenly perform'd.\nWhat sayest thou? speak suddenly; be brief.\n\nBUCKINGHAM:\nYour grace may do your pleasure.\n\nKING RICHARD III:\nTut, tut, thou art all ice, thy kindness freezeth:\nSay, have I thy consent that they shall die?\n\nBUCKINGHAM:\nGive me some breath, some little pause, my lord\nBefore I positively herein:\nI will resolve your grace immediately.\n\nCATESBY:\n\nKING RICHARD III:\nI will converse with iron-witted fools\nAnd unrespective boys: none are for me\nThat look into me with considerate eyes:\nHigh-reaching Buckingham grows circumspect.\nBoy!\n\nPage:\nMy lord?\n\nKING RICHARD III:\nKnow'st thou not any whom corrupting gold\nWould tempt unto a close exploit of death?\n\nPage:\nMy lord, I know a discontented gentleman,\nWhose humble means match not his haughty mind:\nGold were as good as twenty orators,\nAnd will, no doubt, tempt him to any thing.\n\nKING RICHARD III:\nWhat is his name?\n\nPage:\nHis name, my lord, is Tyrrel.\n\nKING RICHARD III:\nI partly know the man: go, call him hither.\nThe deep-revolving witty Buckingham\nNo more shall be the neighbour to my counsel:\nHath he so long held out with me untired,\nAnd stops he now for breath?\nHow now! what news with you?\n\nSTANLEY:\nMy lord, I hear the Marquis Dorset's fled\nTo Richmond, in those parts beyond the sea\nWhere he abides.\n\nKING RICHARD III:\nCatesby!\n\nCATESBY:\nMy lord?\n\nKING RICHARD III:\nRumour it abroad\nThat Anne, my wife, is sick and like to die:\nI will take order for her keeping close.\nInquire me out some mean-born gentleman,\nWhom I will marry straight to Clarence' daughter:\nThe boy is foolish, and I fear not him.\nLook, how thou dream'st! I say again, give out\nThat Anne my wife is sick and like to die:\nAbout it; for it stands me much upon,\nTo stop all hopes whose growth may damage me.\nI must be married to my brother's daughter,\nOr else my kingdom stands on brittle glass.\nMurder her brothers, and then marry her!\nUncertain way of gain! But I am in\nSo far in blood that sin will pluck on sin:\nTear-falling pity dwells not in this eye.\nIs thy name Tyrrel?\n\nTYRREL:\nJames Tyrrel, and your most obedient subject.\n\nKING RICHARD III:\nArt thou, indeed?\n\nTYRREL:\nProve me, my gracious sovereign.\n\nKING RICHARD III:\nDarest thou resolve to kill a friend of mine?\n\nTYRREL:\nAy, my lord;\nBut I had rather kill two enemies.\n\nKING RICHARD III:\nWhy, there thou hast it: two deep enemies,\nFoes to my rest and my sweet sleep's disturbers\nAre they that I would have thee deal upon:\nTyrrel, I mean those bastards in the Tower.\n\nTYRREL:\nLet me have open means to come to them,\nAnd soon I'll rid you from the fear of them.\n\nKING RICHARD III:\nThou sing'st sweet music. Hark, come hither, Tyrrel\nGo, by this token: rise, and lend thine ear:\nThere is no more but so: say it is done,\nAnd I will love thee, and prefer thee too.\n\nTYRREL:\n'Tis done, my gracious lord.\n\nKING RICHARD III:\nShall we hear from thee, Tyrrel, ere we sleep?\n\nTYRREL:\nYe shall, my Lord.\n\nBUCKINGHAM:\nMy Lord, I have consider'd in my mind\nThe late demand that you did sound me in.\n\nKING RICHARD III:\nWell, let that pass. Dorset is fled to Richmond.\n\nBUCKINGHAM:\nI hear that news, my lord.\n\nKING RICHARD III:\nStanley, he is your wife's son well, look to it.\n\nBUCKINGHAM:\nMy lord, I claim your gift, my due by promise,\nFor which your honour and your faith is pawn'd;\nThe earldom of Hereford and the moveables\nThe which you promised I should possess.\n\nKING RICHARD III:\nStanley, look to your wife; if she convey\nLetters to Richmond, you shall answer it.\n\nBUCKINGHAM:\nWhat says your highness to my just demand?\n\nKING RICHARD III:\nAs I remember, Henry the Sixth\nDid prophesy that Richmond should be king,\nWhen Richmond was a little peevish boy.\nA king, perhaps, perhaps,--\n\nBUCKINGHAM:\nMy lord!\n\nKING RICHARD III:\nHow chance the prophet could not at that time\nHave told me, I being by, that I should kill him?\n\nBUCKINGHAM:\nMy lord, your promise for the earldom,--\n\nKING RICHARD III:\nRichmond! When last I was at Exeter,\nThe mayor in courtesy show'd me the castle,\nAnd call'd it Rougemont: at which name I started,\nBecause a bard of Ireland told me once\nI should not live long after I saw Richmond.\n\nBUCKINGHAM:\nMy Lord!\n\nKING RICHARD III:\nAy, what's o'clock?\n\nBUCKINGHAM:\nI am thus bold to put your grace in mind\nOf what you promised me.\n\nKING RICHARD III:\nWell, but what's o'clock?\n\nBUCKINGHAM:\nUpon the stroke of ten.\n\nKING RICHARD III:\nWell, let it strike.\n\nBUCKINGHAM:\nWhy let it strike?\n\nKING RICHARD III:\nBecause that, like a Jack, thou keep'st the stroke\nBetwixt thy begging and my meditation.\nI am not in the giving vein to-day.\n\nBUCKINGHAM:\nWhy, then resolve me whether you will or no.\n\nKING RICHARD III:\nTut, tut,\nThou troublest me; am not in the vein.\n\nBUCKINGHAM:\nIs it even so? rewards he my true service\nWith such deep contempt made I him king for this?\nO, let me think on Hastings, and be gone\nTo Brecknock, while my fearful head is on!\n\nTYRREL:\nThe tyrannous and bloody deed is done.\nThe most arch of piteous massacre\nThat ever yet this land was guilty of.\nDighton and Forrest, whom I did suborn\nTo do this ruthless piece of butchery,\nAlthough they were flesh'd villains, bloody dogs,\nMelting with tenderness and kind compassion\nWept like two children in their deaths' sad stories.\n'Lo, thus' quoth Dighton, 'lay those tender babes:'\n'Thus, thus,' quoth Forrest, 'girdling one another\nWithin their innocent alabaster arms:\nTheir lips were four red roses on a stalk,\nWhich in their summer beauty kiss'd each other.\nA book of prayers on their pillow lay;\nWhich once,' quoth Forrest, 'almost changed my mind;\nBut O! the devil'--there the villain stopp'd\nWhilst Dighton thus told on: 'We smothered\nThe most replenished sweet work of nature,\nThat from the prime creation e'er she framed.'\nThus both are gone with conscience and remorse;\nThey could not speak; and so I left them both,\nTo bring this tidings to the bloody king.\nAnd here he comes.\nAll hail, my sovereign liege!\n\nKING RICHARD III:\nKind Tyrrel, am I happy in thy news?\n\nTYRREL:\nIf to have done the thing you gave in charge\nBeget your happiness, be happy then,\nFor it is done, my lord.\n\nKING RICHARD III:\nBut didst thou see them dead?\n\nTYRREL:\nI did, my lord.\n\nKING RICHARD III:\nAnd buried, gentle Tyrrel?\n\nTYRREL:\nThe chaplain of the Tower hath buried them;\nBut how or in what place I do not know.\n\nKING RICHARD III:\nCome to me, Tyrrel, soon at after supper,\nAnd thou shalt tell the process of their death.\nMeantime, but think how I may do thee good,\nAnd be inheritor of thy desire.\nFarewell till soon.\nThe son of Clarence have I pent up close;\nHis daughter meanly have I match'd in marriage;\nThe sons of Edward sleep in Abraham's bosom,\nAnd Anne my wife hath bid the world good night.\nNow, for I know the Breton Richmond aims\nAt young Elizabeth, my brother's daughter,\nAnd, by that knot, looks proudly o'er the crown,\nTo her I go, a jolly thriving wooer.\n\nCATESBY:\nMy lord!\n\nKING RICHARD III:\nGood news or bad, that thou comest in so bluntly?\n\nCATESBY:\nBad news, my lord: Ely is fled to Richmond;\nAnd Buckingham, back'd with the hardy Welshmen,\nIs in the field, and still his power increaseth.\n\nKING RICHARD III:\nEly with Richmond troubles me more near\nThan Buckingham and his rash-levied army.\nCome, I have heard that fearful commenting\nIs leaden servitor to dull delay;\nDelay leads impotent and snail-paced beggary\nThen fiery expedition be my wing,\nJove's Mercury, and herald for a king!\nCome, muster men: my counsel is my shield;\nWe must be brief when traitors brave the field.\n\nQUEEN MARGARET:\nSo, now prosperity begins to mellow\nAnd drop into the rotten mouth of death.\nHere in these confines slily have I lurk'd,\nTo watch the waning of mine adversaries.\nA dire induction am I witness to,\nAnd will to France, hoping the consequence\nWill prove as bitter, black, and tragical.\nWithdraw thee, wretched Margaret: who comes here?\n\nQUEEN ELIZABETH:\nAh, my young princes! ah, my tender babes!\nMy unblown flowers, new-appearing sweets!\nIf yet your gentle souls fly in the air\nAnd be not fix'd in doom perpetual,\nHover about me with your airy wings\nAnd hear your mother's lamentation!\n\nQUEEN MARGARET:\nHover about her; say, that right for right\nHath dimm'd your infant morn to aged night.\n\nDUCHESS OF YORK:\nSo many miseries have crazed my voice,\nThat my woe-wearied tongue is mute and dumb,\nEdward Plantagenet, why art thou dead?\n\nQUEEN MARGARET:\nPlantagenet doth quit Plantagenet.\nEdward for Edward pays a dying debt.\n\nQUEEN ELIZABETH:\nWilt thou, O God, fly from such gentle lambs,\nAnd throw them in the entrails of the wolf?\nWhen didst thou sleep when such a deed was done?\n\nQUEEN MARGARET:\nWhen holy Harry died, and my sweet son.\n\nDUCHESS OF YORK:\nBlind sight, dead life, poor mortal living ghost,\nWoe's scene, world's shame, grave's due by life usurp'd,\nBrief abstract and record of tedious days,\nRest thy unrest on England's lawful earth,\nUnlawfully made drunk with innocents' blood!\n\nQUEEN ELIZABETH:\nO, that thou wouldst as well afford a grave\nAs thou canst yield a melancholy seat!\nThen would I hide my bones, not rest them here.\nO, who hath any cause to mourn but I?\n\nQUEEN MARGARET:\nIf ancient sorrow be most reverend,\nGive mine the benefit of seniory,\nAnd let my woes frown on the upper hand.\nIf sorrow can admit society,\nTell o'er your woes again by viewing mine:\nI had an Edward, till a Richard kill'd him;\nI had a Harry, till a Richard kill'd him:\nThou hadst an Edward, till a Richard kill'd him;\nThou hadst a Richard, till a Richard killed him;\n\nDUCHESS OF YORK:\nI had a Richard too, and thou didst kill him;\nI had a Rutland too, thou holp'st to kill him.\n\nQUEEN MARGARET:\nThou hadst a Clarence too, and Richard kill'd him.\nFrom forth the kennel of thy womb hath crept\nA hell-hound that doth hunt us all to death:\nThat dog, that had his teeth before his eyes,\nTo worry lambs and lap their gentle blood,\nThat foul defacer of God's handiwork,\nThat excellent grand tyrant of the earth,\nThat reigns in galled eyes of weeping souls,\nThy womb let loose, to chase us to our graves.\nO upright, just, and true-disposing God,\nHow do I thank thee, that this carnal cur\nPreys on the issue of his mother's body,\nAnd makes her pew-fellow with others' moan!\n\nDUCHESS OF YORK:\nO Harry's wife, triumph not in my woes!\nGod witness with me, I have wept for thine.\n\nQUEEN MARGARET:\nBear with me; I am hungry for revenge,\nAnd now I cloy me with beholding it.\nThy Edward he is dead, that stabb'd my Edward:\nThy other Edward dead, to quit my Edward;\nYoung York he is but boot, because both they\nMatch not the high perfection of my loss:\nThy Clarence he is dead that kill'd my Edward;\nAnd the beholders of this tragic play,\nThe adulterate Hastings, Rivers, Vaughan, Grey,\nUntimely smother'd in their dusky graves.\nRichard yet lives, hell's black intelligencer,\nOnly reserved their factor, to buy souls\nAnd send them thither: but at hand, at hand,\nEnsues his piteous and unpitied end:\nEarth gapes, hell burns, fiends roar, saints pray.\nTo have him suddenly convey'd away.\nCancel his bond of life, dear God, I prey,\nThat I may live to say, The dog is dead!\n\nQUEEN ELIZABETH:\nO, thou didst prophesy the time would come\nThat I should wish for thee to help me curse\nThat bottled spider, that foul bunch-back'd toad!\n\nQUEEN MARGARET:\nI call'd thee then vain flourish of my fortune;\nI call'd thee then poor shadow, painted queen;\nThe presentation of but what I was;\nThe flattering index of a direful pageant;\nOne heaved a-high, to be hurl'd down below;\nA mother only mock'd with two sweet babes;\nA dream of what thou wert, a breath, a bubble,\nA sign of dignity, a garish flag,\nTo be the aim of every dangerous shot,\nA queen in jest, only to fill the scene.\nWhere is thy husband now? where be thy brothers?\nWhere are thy children? wherein dost thou, joy?\nWho sues to thee and cries 'God save the queen'?\nWhere be the bending peers that flatter'd thee?\nWhere be the thronging troops that follow'd thee?\nDecline all this, and see what now thou art:\nFor happy wife, a most distressed widow;\nFor joyful mother, one that wails the name;\nFor queen, a very caitiff crown'd with care;\nFor one being sued to, one that humbly sues;\nFor one that scorn'd at me, now scorn'd of me;\nFor one being fear'd of all, now fearing one;\nFor one commanding all, obey'd of none.\nThus hath the course of justice wheel'd about,\nAnd left thee but a very prey to time;\nHaving no more but thought of what thou wert,\nTo torture thee the more, being what thou art.\nThou didst usurp my place, and dost thou not\nUsurp the just proportion of my sorrow?\nNow thy proud neck bears half my burthen'd yoke;\nFrom which even here I slip my weary neck,\nAnd leave the burthen of it all on thee.\nFarewell, York's wife, and queen of sad mischance:\nThese English woes will make me smile in France.\n\nQUEEN ELIZABETH:\nO thou well skill'd in curses, stay awhile,\nAnd teach me how to curse mine enemies!\n\nQUEEN MARGARET:\nForbear to sleep the nights, and fast the days;\nCompare dead happiness with living woe;\nThink that thy babes were fairer than they were,\nAnd he that slew them fouler than he is:\nBettering thy loss makes the bad causer worse:\nRevolving this will teach thee how to curse.\n\nQUEEN ELIZABETH:\nMy words are dull; O, quicken them with thine!\n\nQUEEN MARGARET:\nThy woes will make them sharp, and pierce like mine.\n\nDUCHESS OF YORK:\nWhy should calamity be full of words?\n\nQUEEN ELIZABETH:\nWindy attorneys to their client woes,\nAiry succeeders of intestate joys,\nPoor breathing orators of miseries!\nLet them have scope: though what they do impart\nHelp not all, yet do they ease the heart.\n\nDUCHESS OF YORK:\nIf so, then be not tongue-tied: go with me.\nAnd in the breath of bitter words let's smother\nMy damned son, which thy two sweet sons smother'd.\nI hear his drum: be copious in exclaims.\n\nKING RICHARD III:\nWho intercepts my expedition?\n\nDUCHESS OF YORK:\nO, she that might have intercepted thee,\nBy strangling thee in her accursed womb\nFrom all the slaughters, wretch, that thou hast done!\n\nQUEEN ELIZABETH:\nHidest thou that forehead with a golden crown,\nWhere should be graven, if that right were right,\nThe slaughter of the prince that owed that crown,\nAnd the dire death of my two sons and brothers?\nTell me, thou villain slave, where are my children?\n\nDUCHESS OF YORK:\nThou toad, thou toad, where is thy brother Clarence?\nAnd little Ned Plantagenet, his son?\n\nQUEEN ELIZABETH:\nWhere is kind Hastings, Rivers, Vaughan, Grey?\n\nKING RICHARD III:\nA flourish, trumpets! strike alarum, drums!\nLet not the heavens hear these tell-tale women\nRail on the Lord's enointed: strike, I say!\nEither be patient, and entreat me fair,\nOr with the clamorous report of war\nThus will I drown your exclamations.\n\nDUCHESS OF YORK:\nArt thou my son?\n\nKING RICHARD III:\nAy, I thank God, my father, and yourself.\n\nDUCHESS OF YORK:\nThen patiently hear my impatience.\n\nKING RICHARD III:\nMadam, I have a touch of your condition,\nWhich cannot brook the accent of reproof.\n\nDUCHESS OF YORK:\nO, let me speak!\n\nKING RICHARD III:\nDo then: but I'll not hear.\n\nDUCHESS OF YORK:\nI will be mild and gentle in my speech.\n\nKING RICHARD III:\nAnd brief, good mother; for I am in haste.\n\nDUCHESS OF YORK:\nArt thou so hasty? I have stay'd for thee,\nGod knows, in anguish, pain and agony.\n\nKING RICHARD III:\nAnd came I not at last to comfort you?\n\nDUCHESS OF YORK:\nNo, by the holy rood, thou know'st it well,\nThou camest on earth to make the earth my hell.\nA grievous burthen was thy birth to me;\nTetchy and wayward was thy infancy;\nThy school-days frightful, desperate, wild, and furious,\nThy prime of manhood daring, bold, and venturous,\nThy age confirm'd, proud, subdued, bloody,\ntreacherous,\nMore mild, but yet more harmful, kind in hatred:\nWhat comfortable hour canst thou name,\nThat ever graced me in thy company?\n\nKING RICHARD III:\nFaith, none, but Humphrey Hour, that call'd\nyour grace\nTo breakfast once forth of my company.\nIf I be so disgracious in your sight,\nLet me march on, and not offend your grace.\nStrike the drum.\n\nDUCHESS OF YORK:\nI prithee, hear me speak.\n\nKING RICHARD III:\nYou speak too bitterly.\n\nDUCHESS OF YORK:\nHear me a word;\nFor I shall never speak to thee again.\n\nKING RICHARD III:\nSo.\n\nDUCHESS OF YORK:\nEither thou wilt die, by God's just ordinance,\nEre from this war thou turn a conqueror,\nOr I with grief and extreme age shall perish\nAnd never look upon thy face again.\nTherefore take with thee my most heavy curse;\nWhich, in the day of battle, tire thee more\nThan all the complete armour that thou wear'st!\nMy prayers on the adverse party fight;\nAnd there the little souls of Edward's children\nWhisper the spirits of thine enemies\nAnd promise them success and victory.\nBloody thou art, bloody will be thy end;\nShame serves thy life and doth thy death attend.\n\nQUEEN ELIZABETH:\nThough far more cause, yet much less spirit to curse\nAbides in me; I say amen to all.\n\nKING RICHARD III:\nStay, madam; I must speak a word with you.\n\nQUEEN ELIZABETH:\nI have no more sons of the royal blood\nFor thee to murder: for my daughters, Richard,\nThey shall be praying nuns, not weeping queens;\nAnd therefore level not to hit their lives.\n\nKING RICHARD III:\nYou have a daughter call'd Elizabeth,\nVirtuous and fair, royal and gracious.\n\nQUEEN ELIZABETH:\nAnd must she die for this? O, let her live,\nAnd I'll corrupt her manners, stain her beauty;\nSlander myself as false to Edward's bed;\nThrow over her the veil of infamy:\nSo she may live unscarr'd of bleeding slaughter,\nI will confess she was not Edward's daughter.\n\nKING RICHARD III:\nWrong not her birth, she is of royal blood.\n\nQUEEN ELIZABETH:\nTo save her life, I'll say she is not so.\n\nKING RICHARD III:\nHer life is only safest in her birth.\n\nQUEEN ELIZABETH:\nAnd only in that safety died her brothers.\n\nKING RICHARD III:\nLo, at their births good stars were opposite.\n\nQUEEN ELIZABETH:\nNo, to their lives bad friends were contrary.\n\nKING RICHARD III:\nAll unavoided is the doom of destiny.\n\nQUEEN ELIZABETH:\nTrue, when avoided grace makes destiny:\nMy babes were destined to a fairer death,\nIf grace had bless'd thee with a fairer life.\n\nKING RICHARD III:\nYou speak as if that I had slain my cousins.\n\nQUEEN ELIZABETH:\nCousins, indeed; and by their uncle cozen'd\nOf comfort, kingdom, kindred, freedom, life.\nWhose hand soever lanced their tender hearts,\nThy head, all indirectly, gave direction:\nNo doubt the murderous knife was dull and blunt\nTill it was whetted on thy stone-hard heart,\nTo revel in the entrails of my lambs.\nBut that still use of grief makes wild grief tame,\nMy tongue should to thy ears not name my boys\nTill that my nails were anchor'd in thine eyes;\nAnd I, in such a desperate bay of death,\nLike a poor bark, of sails and tackling reft,\nRush all to pieces on thy rocky bosom.\n\nKING RICHARD III:\nMadam, so thrive I in my enterprise\nAnd dangerous success of bloody wars,\nAs I intend more good to you and yours,\nThan ever you or yours were by me wrong'd!\n\nQUEEN ELIZABETH:\nWhat good is cover'd with the face of heaven,\nTo be discover'd, that can do me good?\n\nKING RICHARD III:\nThe advancement of your children, gentle lady.\n\nQUEEN ELIZABETH:\nUp to some scaffold, there to lose their heads?\n\nKING RICHARD III:\nNo, to the dignity and height of honour\nThe high imperial type of this earth's glory.\n\nQUEEN ELIZABETH:\nFlatter my sorrows with report of it;\nTell me what state, what dignity, what honour,\nCanst thou demise to any child of mine?\n\nKING RICHARD III:\nEven all I have; yea, and myself and all,\nWill I withal endow a child of thine;\nSo in the Lethe of thy angry soul\nThou drown the sad remembrance of those wrongs\nWhich thou supposest I have done to thee.\n\nQUEEN ELIZABETH:\nBe brief, lest that be process of thy kindness\nLast longer telling than thy kindness' date.\n\nKING RICHARD III:\nThen know, that from my soul I love thy daughter.\n\nQUEEN ELIZABETH:\nMy daughter's mother thinks it with her soul.\n\nKING RICHARD III:\nWhat do you think?\n\nQUEEN ELIZABETH:\nThat thou dost love my daughter from thy soul:\nSo from thy soul's love didst thou love her brothers;\nAnd from my heart's love I do thank thee for it.\n\nKING RICHARD III:\nBe not so hasty to confound my meaning:\nI mean, that with my soul I love thy daughter,\nAnd mean to make her queen of England.\n\nQUEEN ELIZABETH:\nSay then, who dost thou mean shall be her king?\n\nKING RICHARD III:\nEven he that makes her queen who should be else?\n\nQUEEN ELIZABETH:\nWhat, thou?\n\nKING RICHARD III:\nI, even I: what think you of it, madam?\n\nQUEEN ELIZABETH:\nHow canst thou woo her?\n\nKING RICHARD III:\nThat would I learn of you,\nAs one that are best acquainted with her humour.\n\nQUEEN ELIZABETH:\nAnd wilt thou learn of me?\n\nKING RICHARD III:\nMadam, with all my heart.\n\nQUEEN ELIZABETH:\nSend to her, by the man that slew her brothers,\nA pair of bleeding-hearts; thereon engrave\nEdward and York; then haply she will weep:\nTherefore present to her--as sometime Margaret\nDid to thy father, steep'd in Rutland's blood,--\nA handkerchief; which, say to her, did drain\nThe purple sap from her sweet brother's body\nAnd bid her dry her weeping eyes therewith.\nIf this inducement force her not to love,\nSend her a story of thy noble acts;\nTell her thou madest away her uncle Clarence,\nHer uncle Rivers; yea, and, for her sake,\nMadest quick conveyance with her good aunt Anne.\n\nKING RICHARD III:\nCome, come, you mock me; this is not the way\nTo win our daughter.\n\nQUEEN ELIZABETH:\nThere is no other way\nUnless thou couldst put on some other shape,\nAnd not be Richard that hath done all this.\n\nKING RICHARD III:\nSay that I did all this for love of her.\n\nQUEEN ELIZABETH:\nNay, then indeed she cannot choose but hate thee,\nHaving bought love with such a bloody spoil.\n\nKING RICHARD III:\nLook, what is done cannot be now amended:\nMen shall deal unadvisedly sometimes,\nWhich after hours give leisure to repent.\nIf I did take the kingdom from your sons,\nTo make amends, Ill give it to your daughter.\nIf I have kill'd the issue of your womb,\nTo quicken your increase, I will beget\nMine issue of your blood upon your daughter\nA grandam's name is little less in love\nThan is the doting title of a mother;\nThey are as children but one step below,\nEven of your mettle, of your very blood;\nOf an one pain, save for a night of groans\nEndured of her, for whom you bid like sorrow.\nYour children were vexation to your youth,\nBut mine shall be a comfort to your age.\nThe loss you have is but a son being king,\nAnd by that loss your daughter is made queen.\nI cannot make you what amends I would,\nTherefore accept such kindness as I can.\nDorset your son, that with a fearful soul\nLeads discontented steps in foreign soil,\nThis fair alliance quickly shall call home\nTo high promotions and great dignity:\nThe king, that calls your beauteous daughter wife.\nFamiliarly shall call thy Dorset brother;\nAgain shall you be mother to a king,\nAnd all the ruins of distressful times\nRepair'd with double riches of content.\nWhat! we have many goodly days to see:\nThe liquid drops of tears that you have shed\nShall come again, transform'd to orient pearl,\nAdvantaging their loan with interest\nOf ten times double gain of happiness.\nGo, then my mother, to thy daughter go\nMake bold her bashful years with your experience;\nPrepare her ears to hear a wooer's tale\nPut in her tender heart the aspiring flame\nOf golden sovereignty; acquaint the princess\nWith the sweet silent hours of marriage joys\nAnd when this arm of mine hath chastised\nThe petty rebel, dull-brain'd Buckingham,\nBound with triumphant garlands will I come\nAnd lead thy daughter to a conqueror's bed;\nTo whom I will retail my conquest won,\nAnd she shall be sole victress, Caesar's Caesar.\n\nQUEEN ELIZABETH:\nWhat were I best to say? her father's brother\nWould be her lord? or shall I say, her uncle?\nOr, he that slew her brothers and her uncles?\nUnder what title shall I woo for thee,\nThat God, the law, my honour and her love,\nCan make seem pleasing to her tender years?\n\nKING RICHARD III:\nInfer fair England's peace by this alliance.\n\nQUEEN ELIZABETH:\nWhich she shall purchase with still lasting war.\n\nKING RICHARD III:\nSay that the king, which may command, entreats.\n\nQUEEN ELIZABETH:\nThat at her hands which the king's King forbids.\n\nKING RICHARD III:\nSay, she shall be a high and mighty queen.\n\nQUEEN ELIZABETH:\nTo wail the tide, as her mother doth.\n\nKING RICHARD III:\nSay, I will love her everlastingly.\n\nQUEEN ELIZABETH:\nBut how long shall that title 'ever' last?\n\nKING RICHARD III:\nSweetly in force unto her fair life's end.\n\nQUEEN ELIZABETH:\nBut how long fairly shall her sweet lie last?\n\nKING RICHARD III:\nSo long as heaven and nature lengthens it.\n\nQUEEN ELIZABETH:\nSo long as hell and Richard likes of it.\n\nKING RICHARD III:\nSay, I, her sovereign, am her subject love.\n\nQUEEN ELIZABETH:\nBut she, your subject, loathes such sovereignty.\n\nKING RICHARD III:\nBe eloquent in my behalf to her.\n\nQUEEN ELIZABETH:\nAn honest tale speeds best being plainly told.\n\nKING RICHARD III:\nThen in plain terms tell her my loving tale.\n\nQUEEN ELIZABETH:\nPlain and not honest is too harsh a style.\n\nKING RICHARD III:\nYour reasons are too shallow and too quick.\n\nQUEEN ELIZABETH:\nO no, my reasons are too deep and dead;\nToo deep and dead, poor infants, in their grave.\n\nKING RICHARD III:\nHarp not on that string, madam; that is past.\n\nQUEEN ELIZABETH:\nHarp on it still shall I till heart-strings break.\n\nKING RICHARD III:\nNow, by my George, my garter, and my crown,--\n\nQUEEN ELIZABETH:\nProfaned, dishonour'd, and the third usurp'd.\n\nKING RICHARD III:\nI swear--\n\nQUEEN ELIZABETH:\nBy nothing; for this is no oath:\nThe George, profaned, hath lost his holy honour;\nThe garter, blemish'd, pawn'd his knightly virtue;\nThe crown, usurp'd, disgraced his kingly glory.\nif something thou wilt swear to be believed,\nSwear then by something that thou hast not wrong'd.\n\nKING RICHARD III:\nNow, by the world--\n\nQUEEN ELIZABETH:\n'Tis full of thy foul wrongs.\n\nKING RICHARD III:\nMy father's death--\n\nQUEEN ELIZABETH:\nThy life hath that dishonour'd.\n\nKING RICHARD III:\nThen, by myself--\n\nQUEEN ELIZABETH:\nThyself thyself misusest.\n\nKING RICHARD III:\nWhy then, by God--\n\nQUEEN ELIZABETH:\nGod's wrong is most of all.\nIf thou hadst fear'd to break an oath by Him,\nThe unity the king thy brother made\nHad not been broken, nor my brother slain:\nIf thou hadst fear'd to break an oath by Him,\nThe imperial metal, circling now thy brow,\nHad graced the tender temples of my child,\nAnd both the princes had been breathing here,\nWhich now, two tender playfellows to dust,\nThy broken faith hath made a prey for worms.\nWhat canst thou swear by now?\n\nKING RICHARD III:\nThe time to come.\n\nQUEEN ELIZABETH:\nThat thou hast wronged in the time o'erpast;\nFor I myself have many tears to wash\nHereafter time, for time past wrong'd by thee.\nThe children live, whose parents thou hast\nslaughter'd,\nUngovern'd youth, to wail it in their age;\nThe parents live, whose children thou hast butcher'd,\nOld wither'd plants, to wail it with their age.\nSwear not by time to come; for that thou hast\nMisused ere used, by time misused o'erpast.\n\nKING RICHARD III:\nAs I intend to prosper and repent,\nSo thrive I in my dangerous attempt\nOf hostile arms! myself myself confound!\nHeaven and fortune bar me happy hours!\nDay, yield me not thy light; nor, night, thy rest!\nBe opposite all planets of good luck\nTo my proceedings, if, with pure heart's love,\nImmaculate devotion, holy thoughts,\nI tender not thy beauteous princely daughter!\nIn her consists my happiness and thine;\nWithout her, follows to this land and me,\nTo thee, herself, and many a Christian soul,\nDeath, desolation, ruin and decay:\nIt cannot be avoided but by this;\nIt will not be avoided but by this.\nTherefore, good mother,--I must can you so--\nBe the attorney of my love to her:\nPlead what I will be, not what I have been;\nNot my deserts, but what I will deserve:\nUrge the necessity and state of times,\nAnd be not peevish-fond in great designs.\n\nQUEEN ELIZABETH:\nShall I be tempted of the devil thus?\n\nKING RICHARD III:\nAy, if the devil tempt thee to do good.\n\nQUEEN ELIZABETH:\nShall I forget myself to be myself?\n\nKING RICHARD III:\nAy, if yourself's remembrance wrong yourself.\n\nQUEEN ELIZABETH:\nBut thou didst kill my children.\n\nKING RICHARD III:\nBut in your daughter's womb I bury them:\nWhere in that nest of spicery they shall breed\nSelves of themselves, to your recomforture.\n\nQUEEN ELIZABETH:\nShall I go win my daughter to thy will?\n\nKING RICHARD III:\nAnd be a happy mother by the deed.\n\nQUEEN ELIZABETH:\nI go. Write to me very shortly.\nAnd you shall understand from me her mind.\n\nKING RICHARD III:\nBear her my true love's kiss; and so, farewell.\nRelenting fool, and shallow, changing woman!\nHow now! what news?\n\nRATCLIFF:\nMy gracious sovereign, on the western coast\nRideth a puissant navy; to the shore\nThrong many doubtful hollow-hearted friends,\nUnarm'd, and unresolved to beat them back:\n'Tis thought that Richmond is their admiral;\nAnd there they hull, expecting but the aid\nOf Buckingham to welcome them ashore.\n\nKING RICHARD III:\nSome light-foot friend post to the Duke of Norfolk:\nRatcliff, thyself, or Catesby; where is he?\n\nCATESBY:\nHere, my lord.\n\nKING RICHARD III:\nFly to the duke:\nPost thou to Salisbury\nWhen thou comest thither--\nDull, unmindful villain,\nWhy stand'st thou still, and go'st not to the duke?\n\nCATESBY:\nFirst, mighty sovereign, let me know your mind,\nWhat from your grace I shall deliver to him.\n\nKING RICHARD III:\nO, true, good Catesby: bid him levy straight\nThe greatest strength and power he can make,\nAnd meet me presently at Salisbury.\n\nCATESBY:\nI go.\n\nRATCLIFF:\nWhat is't your highness' pleasure I shall do at\nSalisbury?\n\nKING RICHARD III:\nWhy, what wouldst thou do there before I go?\n\nRATCLIFF:\nYour highness told me I should post before.\n\nKING RICHARD III:\nMy mind is changed, sir, my mind is changed.\nHow now, what news with you?\n\nSTANLEY:\nNone good, my lord, to please you with the hearing;\nNor none so bad, but it may well be told.\n\nKING RICHARD III:\nHoyday, a riddle! neither good nor bad!\nWhy dost thou run so many mile about,\nWhen thou mayst tell thy tale a nearer way?\nOnce more, what news?\n\nSTANLEY:\nRichmond is on the seas.\n\nKING RICHARD III:\nThere let him sink, and be the seas on him!\nWhite-liver'd runagate, what doth he there?\n\nSTANLEY:\nI know not, mighty sovereign, but by guess.\n\nKING RICHARD III:\nWell, sir, as you guess, as you guess?\n\nSTANLEY:\nStirr'd up by Dorset, Buckingham, and Ely,\nHe makes for England, there to claim the crown.\n\nKING RICHARD III:\nIs the chair empty? is the sword unsway'd?\nIs the king dead? the empire unpossess'd?\nWhat heir of York is there alive but we?\nAnd who is England's king but great York's heir?\nThen, tell me, what doth he upon the sea?\n\nSTANLEY:\nUnless for that, my liege, I cannot guess.\n\nKING RICHARD III:\nUnless for that he comes to be your liege,\nYou cannot guess wherefore the Welshman comes.\nThou wilt revolt, and fly to him, I fear.\n\nSTANLEY:\nNo, mighty liege; therefore mistrust me not.\n\nKING RICHARD III:\nWhere is thy power, then, to beat him back?\nWhere are thy tenants and thy followers?\nAre they not now upon the western shore.\nSafe-conducting the rebels from their ships!\n\nSTANLEY:\nNo, my good lord, my friends are in the north.\n\nKING RICHARD III:\nCold friends to Richard: what do they in the north,\nWhen they should serve their sovereign in the west?\n\nSTANLEY:\nThey have not been commanded, mighty sovereign:\nPlease it your majesty to give me leave,\nI'll muster up my friends, and meet your grace\nWhere and what time your majesty shall please.\n\nKING RICHARD III:\nAy, ay. thou wouldst be gone to join with Richmond:\nI will not trust you, sir.\n\nSTANLEY:\nMost mighty sovereign,\nYou have no cause to hold my friendship doubtful:\nI never was nor never will be false.\n\nKING RICHARD III:\nWell,\nGo muster men; but, hear you, leave behind\nYour son, George Stanley: look your faith be firm.\nOr else his head's assurance is but frail.\n\nSTANLEY:\nSo deal with him as I prove true to you.\n\nMessenger:\nMy gracious sovereign, now in Devonshire,\nAs I by friends am well advertised,\nSir Edward Courtney, and the haughty prelate\nBishop of Exeter, his brother there,\nWith many more confederates, are in arms.\n\nSecond Messenger:\nMy liege, in Kent the Guildfords are in arms;\nAnd every hour more competitors\nFlock to their aid, and still their power increaseth.\n\nThird Messenger:\nMy lord, the army of the Duke of Buckingham--\n\nKING RICHARD III:\nOut on you, owls! nothing but songs of death?\nTake that, until thou bring me better news.\n\nThird Messenger:\nThe news I have to tell your majesty\nIs, that by sudden floods and fall of waters,\nBuckingham's army is dispersed and scatter'd;\nAnd he himself wander'd away alone,\nNo man knows whither.\n\nKING RICHARD III:\nI cry thee mercy:\nThere is my purse to cure that blow of thine.\nHath any well-advised friend proclaim'd\nReward to him that brings the traitor in?\n\nThird Messenger:\nSuch proclamation hath been made, my liege.\n\nFourth Messenger:\nSir Thomas Lovel and Lord Marquis Dorset,\n'Tis said, my liege, in Yorkshire are in arms.\nYet this good comfort bring I to your grace,\nThe Breton navy is dispersed by tempest:\nRichmond, in Yorkshire, sent out a boat\nUnto the shore, to ask those on the banks\nIf they were his assistants, yea or no;\nWho answer'd him, they came from Buckingham.\nUpon his party: he, mistrusting them,\nHoisted sail and made away for Brittany.\n\nKING RICHARD III:\nMarch on, march on, since we are up in arms;\nIf not to fight with foreign enemies,\nYet to beat down these rebels here at home.\n\nCATESBY:\nMy liege, the Duke of Buckingham is taken;\nThat is the best news: that the Earl of Richmond\nIs with a mighty power landed at Milford,\nIs colder tidings, yet they must be told.\n\nKING RICHARD III:\nAway towards Salisbury! while we reason here,\nA royal battle might be won and lost\nSome one take order Buckingham be brought\nTo Salisbury; the rest march on with me.\n\nDERBY:\nSir Christopher, tell Richmond this from me:\nThat in the sty of this most bloody boar\nMy son George Stanley is frank'd up in hold:\nIf I revolt, off goes young George's head;\nThe fear of that withholds my present aid.\nBut, tell me, where is princely Richmond now?\n\nCHRISTOPHER:\nAt Pembroke, or at Harford-west, in Wales.\n\nDERBY:\nWhat men of name resort to him?\n\nCHRISTOPHER:\nSir Walter Herbert, a renowned soldier;\nSir Gilbert Talbot, Sir William Stanley;\nOxford, redoubted Pembroke, Sir James Blunt,\nAnd Rice ap Thomas with a valiant crew;\nAnd many more of noble fame and worth:\nAnd towards London they do bend their course,\nIf by the way they be not fought withal.\n\nDERBY:\nReturn unto thy lord; commend me to him:\nTell him the queen hath heartily consented\nHe shall espouse Elizabeth her daughter.\nThese letters will resolve him of my mind. Farewell.\n\nBUCKINGHAM:\nWill not King Richard let me speak with him?\n\nSheriff:\nNo, my good lord; therefore be patient.\n\nBUCKINGHAM:\nHastings, and Edward's children, Rivers, Grey,\nHoly King Henry, and thy fair son Edward,\nVaughan, and all that have miscarried\nBy underhand corrupted foul injustice,\nIf that your moody discontented souls\nDo through the clouds behold this present hour,\nEven for revenge mock my destruction!\nThis is All-Souls' day, fellows, is it not?\n\nSheriff:\nIt is, my lord.\n\nBUCKINGHAM:\nWhy, then All-Souls' day is my body's doomsday.\nThis is the day that, in King Edward's time,\nI wish't might fall on me, when I was found\nFalse to his children or his wife's allies\nThis is the day wherein I wish'd to fall\nBy the false faith of him I trusted most;\nThis, this All-Souls' day to my fearful soul\nIs the determined respite of my wrongs:\nThat high All-Seer that I dallied with\nHath turn'd my feigned prayer on my head\nAnd given in earnest what I begg'd in jest.\nThus doth he force the swords of wicked men\nTo turn their own points on their masters' bosoms:\nNow Margaret's curse is fallen upon my head;\n'When he,' quoth she, 'shall split thy heart with sorrow,\nRemember Margaret was a prophetess.'\nCome, sirs, convey me to the block of shame;\nWrong hath but wrong, and blame the due of blame.\n\nRICHMOND:\nFellows in arms, and my most loving friends,\nBruised underneath the yoke of tyranny,\nThus far into the bowels of the land\nHave we march'd on without impediment;\nAnd here receive we from our father Stanley\nLines of fair comfort and encouragement.\nThe wretched, bloody, and usurping boar,\nThat spoil'd your summer fields and fruitful vines,\nSwills your warm blood like wash, and makes his trough\nIn your embowell'd bosoms, this foul swine\nLies now even in the centre of this isle,\nNear to the town of Leicester, as we learn\nFrom Tamworth thither is but one day's march.\nIn God's name, cheerly on, courageous friends,\nTo reap the harvest of perpetual peace\nBy this one bloody trial of sharp war.\n\nOXFORD:\nEvery man's conscience is a thousand swords,\nTo fight against that bloody homicide.\n\nHERBERT:\nI doubt not but his friends will fly to us.\n\nBLUNT:\nHe hath no friends but who are friends for fear.\nWhich in his greatest need will shrink from him.\n\nRICHMOND:\nAll for our vantage. Then, in God's name, march:\nTrue hope is swift, and flies with swallow's wings:\nKings it makes gods, and meaner creatures kings.\n\nKING RICHARD III:\nHere pitch our tents, even here in Bosworth field.\nMy Lord of Surrey, why look you so sad?\n\nSURREY:\nMy heart is ten times lighter than my looks.\n\nKING RICHARD III:\nMy Lord of Norfolk,--\n\nNORFOLK:\nHere, most gracious liege.\n\nKING RICHARD III:\nNorfolk, we must have knocks; ha! must we not?\n\nNORFOLK:\nWe must both give and take, my gracious lord.\n\nKING RICHARD III:\nUp with my tent there! here will I lie tonight;\nBut where to-morrow?  Well, all's one for that.\nWho hath descried the number of the foe?\n\nNORFOLK:\nSix or seven thousand is their utmost power.\n\nKING RICHARD III:\nWhy, our battalion trebles that account:\nBesides, the king's name is a tower of strength,\nWhich they upon the adverse party want.\nUp with my tent there! Valiant gentlemen,\nLet us survey the vantage of the field\nCall for some men of sound direction\nLet's want no discipline, make no delay,\nFor, lords, to-morrow is a busy day.\n\nRICHMOND:\nThe weary sun hath made a golden set,\nAnd by the bright track of his fiery car,\nGives signal, of a goodly day to-morrow.\nSir William Brandon, you shall bear my standard.\nGive me some ink and paper in my tent\nI'll draw the form and model of our battle,\nLimit each leader to his several charge,\nAnd part in just proportion our small strength.\nMy Lord of Oxford, you, Sir William Brandon,\nAnd you, Sir Walter Herbert, stay with me.\nThe Earl of Pembroke keeps his regiment:\nGood Captain Blunt, bear my good night to him\nAnd by the second hour in the morning\nDesire the earl to see me in my tent:\nYet one thing more, good Blunt, before thou go'st,\nWhere is Lord Stanley quarter'd, dost thou know?\n\nBLUNT:\nUnless I have mista'en his colours much,\nWhich well I am assured I have not done,\nHis regiment lies half a mile at least\nSouth from the mighty power of the king.\n\nRICHMOND:\nIf without peril it be possible,\nGood Captain Blunt, bear my good-night to him,\nAnd give him from me this most needful scroll.\n\nBLUNT:\nUpon my life, my lord, I'll under-take it;\nAnd so, God give you quiet rest to-night!\n\nRICHMOND:\nGood night, good Captain Blunt. Come gentlemen,\nLet us consult upon to-morrow's business\nIn to our tent; the air is raw and cold.\n\nKING RICHARD III:\nWhat is't o'clock?\n\nCATESBY:\nIt's supper-time, my lord;\nIt's nine o'clock.\n\nKING RICHARD III:\nI will not sup to-night.\nGive me some ink and paper.\nWhat, is my beaver easier than it was?\nAnd all my armour laid into my tent?\n\nCATESBY:\nIf is, my liege; and all things are in readiness.\n\nKING RICHARD III:\nGood Norfolk, hie thee to thy charge;\nUse careful watch, choose trusty sentinels.\n\nNORFOLK:\nI go, my lord.\n\nKING RICHARD III:\nStir with the lark to-morrow, gentle Norfolk.\n\nNORFOLK:\nI warrant you, my lord.\n\nKING RICHARD III:\nCatesby!\n\nCATESBY:\nMy lord?\n\nKING RICHARD III:\nSend out a pursuivant at arms\nTo Stanley's regiment; bid him bring his power\nBefore sunrising, lest his son George fall\nInto the blind cave of eternal night.\nFill me a bowl of wine. Give me a watch.\nSaddle white Surrey for the field to-morrow.\nLook that my staves be sound, and not too heavy.\nRatcliff!\n\nRATCLIFF:\nMy lord?\n\nKING RICHARD III:\nSaw'st thou the melancholy Lord Northumberland?\n\nRATCLIFF:\nThomas the Earl of Surrey, and himself,\nMuch about cock-shut time, from troop to troop\nWent through the army, cheering up the soldiers.\n\nKING RICHARD III:\nSo, I am satisfied. Give me a bowl of wine:\nI have not that alacrity of spirit,\nNor cheer of mind, that I was wont to have.\nSet it down. Is ink and paper ready?\n\nRATCLIFF:\nIt is, my lord.\n\nKING RICHARD III:\nBid my guard watch; leave me.\nRatcliff, about the mid of night come to my tent\nAnd help to arm me. Leave me, I say.\n\nDERBY:\nFortune and victory sit on thy helm!\n\nRICHMOND:\nAll comfort that the dark night can afford\nBe to thy person, noble father-in-law!\nTell me, how fares our loving mother?\n\nDERBY:\nI, by attorney, bless thee from thy mother\nWho prays continually for Richmond's good:\nSo much for that. The silent hours steal on,\nAnd flaky darkness breaks within the east.\nIn brief,--for so the season bids us be,--\nPrepare thy battle early in the morning,\nAnd put thy fortune to the arbitrement\nOf bloody strokes and mortal-staring war.\nI, as I may--that which I would I cannot,--\nWith best advantage will deceive the time,\nAnd aid thee in this doubtful shock of arms:\nBut on thy side I may not be too forward\nLest, being seen, thy brother, tender George,\nBe executed in his father's sight.\nFarewell: the leisure and the fearful time\nCuts off the ceremonious vows of love\nAnd ample interchange of sweet discourse,\nWhich so long sunder'd friends should dwell upon:\nGod give us leisure for these rites of love!\nOnce more, adieu: be valiant, and speed well!\n\nRICHMOND:\nGood lords, conduct him to his regiment:\nI'll strive, with troubled thoughts, to take a nap,\nLest leaden slumber peise me down to-morrow,\nWhen I should mount with wings of victory:\nOnce more, good night, kind lords and gentlemen.\nO Thou, whose captain I account myself,\nLook on my forces with a gracious eye;\nPut in their hands thy bruising irons of wrath,\nThat they may crush down with a heavy fall\nThe usurping helmets of our adversaries!\nMake us thy ministers of chastisement,\nThat we may praise thee in the victory!\nTo thee I do commend my watchful soul,\nEre I let fall the windows of mine eyes:\nSleeping and waking, O, defend me still!\n\nGhost of Prince Edward:\n\nGhost of King Henry VI:\n\nGhost of CLARENCE:\n\nGhost of RIVERS:\n\nGhost of GREY:\n\nGhost of VAUGHAN:\n\nAll:\n\nGhost of HASTINGS:\n\nGhosts of young Princes:\n\nGhost of LADY ANNE:\n\nGhost of BUCKINGHAM:\n\nKING RICHARD III:\nGive me another horse: bind up my wounds.\nHave mercy, Jesu!--Soft! I did but dream.\nO coward conscience, how dost thou afflict me!\nThe lights burn blue. It is now dead midnight.\nCold fearful drops stand on my trembling flesh.\nWhat do I fear?  myself?  there's none else by:\nRichard loves Richard; that is, I am I.\nIs there a murderer here?  No. Yes, I am:\nThen fly. What, from myself?   Great reason why:\nLest I revenge. What, myself upon myself?\nAlack. I love myself. Wherefore?  for any good\nThat I myself have done unto myself?\nO, no! alas, I rather hate myself\nFor hateful deeds committed by myself!\nI am a villain: yet I lie. I am not.\nFool, of thyself speak well: fool, do not flatter.\nMy conscience hath a thousand several tongues,\nAnd every tongue brings in a several tale,\nAnd every tale condemns me for a villain.\nPerjury, perjury, in the high'st degree\nMurder, stem murder, in the direst degree;\nAll several sins, all used in each degree,\nThrong to the bar, crying all, Guilty! guilty!\nI shall despair. There is no creature loves me;\nAnd if I die, no soul shall pity me:\nNay, wherefore should they, since that I myself\nFind in myself no pity to myself?\nMethought the souls of all that I had murder'd\nCame to my tent; and every one did threat\nTo-morrow's vengeance on the head of Richard.\n\nRATCLIFF:\nMy lord!\n\nKING RICHARD III:\n'Zounds! who is there?\n\nRATCLIFF:\nRatcliff, my lord; 'tis I. The early village-cock\nHath twice done salutation to the morn;\nYour friends are up, and buckle on their armour.\n\nKING RICHARD III:\nO Ratcliff, I have dream'd a fearful dream!\nWhat thinkest thou, will our friends prove all true?\n\nRATCLIFF:\nNo doubt, my lord.\n\nKING RICHARD III:\nO Ratcliff, I fear, I fear,--\n\nRATCLIFF:\nNay, good my lord, be not afraid of shadows.\n\nKING RICHARD III:\nBy the apostle Paul, shadows to-night\nHave struck more terror to the soul of Richard\nThan can the substance of ten thousand soldiers\nArmed in proof, and led by shallow Richmond.\nIt is not yet near day. Come, go with me;\nUnder our tents I'll play the eaves-dropper,\nTo see if any mean to shrink from me.\n\nLORDS:\nGood morrow, Richmond!\n\nRICHMOND:\nCry mercy, lords and watchful gentlemen,\nThat you have ta'en a tardy sluggard here.\n\nLORDS:\nHow have you slept, my lord?\n\nRICHMOND:\nThe sweetest sleep, and fairest-boding dreams\nThat ever enter'd in a drowsy head,\nHave I since your departure had, my lords.\nMethought their souls, whose bodies Richard murder'd,\nCame to my tent, and cried on victory:\nI promise you, my soul is very jocund\nIn the remembrance of so fair a dream.\nHow far into the morning is it, lords?\n\nLORDS:\nUpon the stroke of four.\n\nRICHMOND:\nWhy, then 'tis time to arm and give direction.\nMore than I have said, loving countrymen,\nThe leisure and enforcement of the time\nForbids to dwell upon: yet remember this,\nGod and our good cause fight upon our side;\nThe prayers of holy saints and wronged souls,\nLike high-rear'd bulwarks, stand before our faces;\nRichard except, those whom we fight against\nHad rather have us win than him they follow:\nFor what is he they follow?  truly, gentlemen,\nA bloody tyrant and a homicide;\nOne raised in blood, and one in blood establish'd;\nOne that made means to come by what he hath,\nAnd slaughter'd those that were the means to help him;\nAbase foul stone, made precious by the foil\nOf England's chair, where he is falsely set;\nOne that hath ever been God's enemy:\nThen, if you fight against God's enemy,\nGod will in justice ward you as his soldiers;\nIf you do sweat to put a tyrant down,\nYou sleep in peace, the tyrant being slain;\nIf you do fight against your country's foes,\nYour country's fat shall pay your pains the hire;\nIf you do fight in safeguard of your wives,\nYour wives shall welcome home the conquerors;\nIf you do free your children from the sword,\nYour children's children quit it in your age.\nThen, in the name of God and all these rights,\nAdvance your standards, draw your willing swords.\nFor me, the ransom of my bold attempt\nShall be this cold corpse on the earth's cold face;\nBut if I thrive, the gain of my attempt\nThe least of you shall share his part thereof.\nSound drums and trumpets boldly and cheerfully;\nGod and Saint George! Richmond and victory!\n\nKING RICHARD III:\nWhat said Northumberland as touching Richmond?\n\nRATCLIFF:\nThat he was never trained up in arms.\n\nKING RICHARD III:\nHe said the truth: and what said Surrey then?\n\nRATCLIFF:\nHe smiled and said 'The better for our purpose.'\n\nKING RICHARD III:\nHe was in the right; and so indeed it is.\nTen the clock there. Give me a calendar.\nWho saw the sun to-day?\n\nRATCLIFF:\nNot I, my lord.\n\nKING RICHARD III:\nThen he disdains to shine; for by the book\nHe should have braved the east an hour ago\nA black day will it be to somebody. Ratcliff!\n\nRATCLIFF:\nMy lord?\n\nKING RICHARD III:\nThe sun will not be seen to-day;\nThe sky doth frown and lour upon our army.\nI would these dewy tears were from the ground.\nNot shine to-day! Why, what is that to me\nMore than to Richmond?  for the selfsame heaven\nThat frowns on me looks sadly upon him.\n\nNORFOLK:\nArm, arm, my lord; the foe vaunts in the field.\n\nKING RICHARD III:\nCome, bustle, bustle; caparison my horse.\nCall up Lord Stanley, bid him bring his power:\nI will lead forth my soldiers to the plain,\nAnd thus my battle shall be ordered:\nMy foreward shall be drawn out all in length,\nConsisting equally of horse and foot;\nOur archers shall be placed in the midst\nJohn Duke of Norfolk, Thomas Earl of Surrey,\nShall have the leading of this foot and horse.\nThey thus directed, we will follow\nIn the main battle, whose puissance on either side\nShall be well winged with our chiefest horse.\nThis, and Saint George to boot! What think'st thou, Norfolk?\n\nNORFOLK:\nA good direction, warlike sovereign.\nThis found I on my tent this morning.\n\nKING RICHARD III:\n\nMessenger:\nMy lord, he doth deny to come.\n\nKING RICHARD III:\nOff with his son George's head!\n\nNORFOLK:\nMy lord, the enemy is past the marsh\nAfter the battle let George Stanley die.\n\nKING RICHARD III:\nA thousand hearts are great within my bosom:\nAdvance our standards, set upon our foes\nOur ancient word of courage, fair Saint George,\nInspire us with the spleen of fiery dragons!\nUpon them! victory sits on our helms.\n\nCATESBY:\nRescue, my Lord of Norfolk, rescue, rescue!\nThe king enacts more wonders than a man,\nDaring an opposite to every danger:\nHis horse is slain, and all on foot he fights,\nSeeking for Richmond in the throat of death.\nRescue, fair lord, or else the day is lost!\n\nKING RICHARD III:\nA horse! a horse! my kingdom for a horse!\n\nCATESBY:\nWithdraw, my lord; I'll help you to a horse.\n\nKING RICHARD III:\nSlave, I have set my life upon a cast,\nAnd I will stand the hazard of the die:\nI think there be six Richmonds in the field;\nFive have I slain to-day instead of him.\nA horse! a horse! my kingdom for a horse!\n\nRICHMOND:\nGod and your arms be praised, victorious friends,\nThe day is ours, the bloody dog is dead.\n\nDERBY:\nCourageous Richmond, well hast thou acquit thee.\nLo, here, this long-usurped royalty\nFrom the dead temples of this bloody wretch\nHave I pluck'd off, to grace thy brows withal:\nWear it, enjoy it, and make much of it.\n\nRICHMOND:\nGreat God of heaven, say Amen to all!\nBut, tell me, is young George Stanley living?\n\nDERBY:\nHe is, my lord, and safe in Leicester town;\nWhither, if it please you, we may now withdraw us.\n\nRICHMOND:\nWhat men of name are slain on either side?\n\nDERBY:\nJohn Duke of Norfolk, Walter Lord Ferrers,\nSir Robert Brakenbury, and Sir William Brandon.\n\nRICHMOND:\nInter their bodies as becomes their births:\nProclaim a pardon to the soldiers fled\nThat in submission will return to us:\nAnd then, as we have ta'en the sacrament,\nWe will unite the white rose and the red:\nSmile heaven upon this fair conjunction,\nThat long have frown'd upon their enmity!\nWhat traitor hears me, and says not amen?\nEngland hath long been mad, and scarr'd herself;\nThe brother blindly shed the brother's blood,\nThe father rashly slaughter'd his own son,\nThe son, compell'd, been butcher to the sire:\nAll this divided York and Lancaster,\nDivided in their dire division,\nO, now, let Richmond and Elizabeth,\nThe true succeeders of each royal house,\nBy God's fair ordinance conjoin together!\nAnd let their heirs, God, if thy will be so.\nEnrich the time to come with smooth-faced peace,\nWith smiling plenty and fair prosperous days!\nAbate the edge of traitors, gracious Lord,\nThat would reduce these bloody days again,\nAnd make poor England weep in streams of blood!\nLet them not live to taste this land's increase\nThat would with treason wound this fair land's peace!\nNow civil wounds are stopp'd, peace lives again:\nThat she may long live here, God say amen!\n\nKING RICHARD II:\nOld John of Gaunt, time-honour'd Lancaster,\nHast thou, according to thy oath and band,\nBrought hither Henry Hereford thy bold son,\nHere to make good the boisterous late appeal,\nWhich then our leisure would not let us hear,\nAgainst the Duke of Norfolk, Thomas Mowbray?\n\nJOHN OF GAUNT:\nI have, my liege.\n\nKING RICHARD II:\nTell me, moreover, hast thou sounded him,\nIf he appeal the duke on ancient malice;\nOr worthily, as a good subject should,\nOn some known ground of treachery in him?\n\nJOHN OF GAUNT:\nAs near as I could sift him on that argument,\nOn some apparent danger seen in him\nAim'd at your highness, no inveterate malice.\n\nKING RICHARD II:\nThen call them to our presence; face to face,\nAnd frowning brow to brow, ourselves will hear\nThe accuser and the accused freely speak:\nHigh-stomach'd are they both, and full of ire,\nIn rage deaf as the sea, hasty as fire.\n\nHENRY BOLINGBROKE:\nMany years of happy days befal\nMy gracious sovereign, my most loving liege!\n\nTHOMAS MOWBRAY:\nEach day still better other's happiness;\nUntil the heavens, envying earth's good hap,\nAdd an immortal title to your crown!\n\nKING RICHARD II:\nWe thank you both: yet one but flatters us,\nAs well appeareth by the cause you come;\nNamely to appeal each other of high treason.\nCousin of Hereford, what dost thou object\nAgainst the Duke of Norfolk, Thomas Mowbray?\n\nHENRY BOLINGBROKE:\nFirst, heaven be the record to my speech!\nIn the devotion of a subject's love,\nTendering the precious safety of my prince,\nAnd free from other misbegotten hate,\nCome I appellant to this princely presence.\nNow, Thomas Mowbray, do I turn to thee,\nAnd mark my greeting well; for what I speak\nMy body shall make good upon this earth,\nOr my divine soul answer it in heaven.\nThou art a traitor and a miscreant,\nToo good to be so and too bad to live,\nSince the more fair and crystal is the sky,\nThe uglier seem the clouds that in it fly.\nOnce more, the more to aggravate the note,\nWith a foul traitor's name stuff I thy throat;\nAnd wish, so please my sovereign, ere I move,\nWhat my tongue speaks my right drawn sword may prove.\n\nTHOMAS MOWBRAY:\nLet not my cold words here accuse my zeal:\n'Tis not the trial of a woman's war,\nThe bitter clamour of two eager tongues,\nCan arbitrate this cause betwixt us twain;\nThe blood is hot that must be cool'd for this:\nYet can I not of such tame patience boast\nAs to be hush'd and nought at all to say:\nFirst, the fair reverence of your highness curbs me\nFrom giving reins and spurs to my free speech;\nWhich else would post until it had return'd\nThese terms of treason doubled down his throat.\nSetting aside his high blood's royalty,\nAnd let him be no kinsman to my liege,\nI do defy him, and I spit at him;\nCall him a slanderous coward and a villain:\nWhich to maintain I would allow him odds,\nAnd meet him, were I tied to run afoot\nEven to the frozen ridges of the Alps,\nOr any other ground inhabitable,\nWhere ever Englishman durst set his foot.\nMean time let this defend my loyalty,\nBy all my hopes, most falsely doth he lie.\n\nHENRY BOLINGBROKE:\nPale trembling coward, there I throw my gage,\nDisclaiming here the kindred of the king,\nAnd lay aside my high blood's royalty,\nWhich fear, not reverence, makes thee to except.\nIf guilty dread have left thee so much strength\nAs to take up mine honour's pawn, then stoop:\nBy that and all the rites of knighthood else,\nWill I make good against thee, arm to arm,\nWhat I have spoke, or thou canst worse devise.\n\nTHOMAS MOWBRAY:\nI take it up; and by that sword I swear\nWhich gently laid my knighthood on my shoulder,\nI'll answer thee in any fair degree,\nOr chivalrous design of knightly trial:\nAnd when I mount, alive may I not light,\nIf I be traitor or unjustly fight!\n\nKING RICHARD II:\nWhat doth our cousin lay to Mowbray's charge?\nIt must be great that can inherit us\nSo much as of a thought of ill in him.\n\nHENRY BOLINGBROKE:\nLook, what I speak, my life shall prove it true;\nThat Mowbray hath received eight thousand nobles\nIn name of lendings for your highness' soldiers,\nThe which he hath detain'd for lewd employments,\nLike a false traitor and injurious villain.\nBesides I say and will in battle prove,\nOr here or elsewhere to the furthest verge\nThat ever was survey'd by English eye,\nThat all the treasons for these eighteen years\nComplotted and contrived in this land\nFetch from false Mowbray their first head and spring.\nFurther I say and further will maintain\nUpon his bad life to make all this good,\nThat he did plot the Duke of Gloucester's death,\nSuggest his soon-believing adversaries,\nAnd consequently, like a traitor coward,\nSluiced out his innocent soul through streams of blood:\nWhich blood, like sacrificing Abel's, cries,\nEven from the tongueless caverns of the earth,\nTo me for justice and rough chastisement;\nAnd, by the glorious worth of my descent,\nThis arm shall do it, or this life be spent.\n\nKING RICHARD II:\nHow high a pitch his resolution soars!\nThomas of Norfolk, what say'st thou to this?\n\nTHOMAS MOWBRAY:\nO, let my sovereign turn away his face\nAnd bid his ears a little while be deaf,\nTill I have told this slander of his blood,\nHow God and good men hate so foul a liar.\n\nKING RICHARD II:\nMowbray, impartial are our eyes and ears:\nWere he my brother, nay, my kingdom's heir,\nAs he is but my father's brother's son,\nNow, by my sceptre's awe, I make a vow,\nSuch neighbour nearness to our sacred blood\nShould nothing privilege him, nor partialize\nThe unstooping firmness of my upright soul:\nHe is our subject, Mowbray; so art thou:\nFree speech and fearless I to thee allow.\n\nTHOMAS MOWBRAY:\nThen, Bolingbroke, as low as to thy heart,\nThrough the false passage of thy throat, thou liest.\nThree parts of that receipt I had for Calais\nDisbursed I duly to his highness' soldiers;\nThe other part reserved I by consent,\nFor that my sovereign liege was in my debt\nUpon remainder of a dear account,\nSince last I went to France to fetch his queen:\nNow swallow down that lie. For Gloucester's death,\nI slew him not; but to my own disgrace\nNeglected my sworn duty in that case.\nFor you, my noble Lord of Lancaster,\nThe honourable father to my foe\nOnce did I lay an ambush for your life,\nA trespass that doth vex my grieved soul\nBut ere I last received the sacrament\nI did confess it, and exactly begg'd\nYour grace's pardon, and I hope I had it.\nThis is my fault: as for the rest appeall'd,\nIt issues from the rancour of a villain,\nA recreant and most degenerate traitor\nWhich in myself I boldly will defend;\nAnd interchangeably hurl down my gage\nUpon this overweening traitor's foot,\nTo prove myself a loyal gentleman\nEven in the best blood chamber'd in his bosom.\nIn haste whereof, most heartily I pray\nYour highness to assign our trial day.\n\nKING RICHARD II:\nWrath-kindled gentlemen, be ruled by me;\nLet's purge this choler without letting blood:\nThis we prescribe, though no physician;\nDeep malice makes too deep incision;\nForget, forgive; conclude and be agreed;\nOur doctors say this is no month to bleed.\nGood uncle, let this end where it begun;\nWe'll calm the Duke of Norfolk, you your son.\n\nJOHN OF GAUNT:\nTo be a make-peace shall become my age:\nThrow down, my son, the Duke of Norfolk's gage.\n\nKING RICHARD II:\nAnd, Norfolk, throw down his.\n\nJOHN OF GAUNT:\nWhen, Harry, when?\nObedience bids I should not bid again.\n\nKING RICHARD II:\nNorfolk, throw down, we bid; there is no boot.\n\nTHOMAS MOWBRAY:\nMyself I throw, dread sovereign, at thy foot.\nMy life thou shalt command, but not my shame:\nThe one my duty owes; but my fair name,\nDespite of death that lives upon my grave,\nTo dark dishonour's use thou shalt not have.\nI am disgraced, impeach'd and baffled here,\nPierced to the soul with slander's venom'd spear,\nThe which no balm can cure but his heart-blood\nWhich breathed this poison.\n\nKING RICHARD II:\nRage must be withstood:\nGive me his gage: lions make leopards tame.\n\nTHOMAS MOWBRAY:\nYea, but not change his spots: take but my shame.\nAnd I resign my gage. My dear dear lord,\nThe purest treasure mortal times afford\nIs spotless reputation: that away,\nMen are but gilded loam or painted clay.\nA jewel in a ten-times-barr'd-up chest\nIs a bold spirit in a loyal breast.\nMine honour is my life; both grow in one:\nTake honour from me, and my life is done:\nThen, dear my liege, mine honour let me try;\nIn that I live and for that will I die.\n\nKING RICHARD II:\nCousin, throw up your gage; do you begin.\n\nHENRY BOLINGBROKE:\nO, God defend my soul from such deep sin!\nShall I seem crest-fall'n in my father's sight?\nOr with pale beggar-fear impeach my height\nBefore this out-dared dastard? Ere my tongue\nShall wound my honour with such feeble wrong,\nOr sound so base a parle, my teeth shall tear\nThe slavish motive of recanting fear,\nAnd spit it bleeding in his high disgrace,\nWhere shame doth harbour, even in Mowbray's face.\n\nKING RICHARD II:\nWe were not born to sue, but to command;\nWhich since we cannot do to make you friends,\nBe ready, as your lives shall answer it,\nAt Coventry, upon Saint Lambert's day:\nThere shall your swords and lances arbitrate\nThe swelling difference of your settled hate:\nSince we can not atone you, we shall see\nJustice design the victor's chivalry.\nLord marshal, command our officers at arms\nBe ready to direct these home alarms.\n\nJOHN OF GAUNT:\nAlas, the part I had in Woodstock's blood\nDoth more solicit me than your exclaims,\nTo stir against the butchers of his life!\nBut since correction lieth in those hands\nWhich made the fault that we cannot correct,\nPut we our quarrel to the will of heaven;\nWho, when they see the hours ripe on earth,\nWill rain hot vengeance on offenders' heads.\n\nDUCHESS:\nFinds brotherhood in thee no sharper spur?\nHath love in thy old blood no living fire?\nEdward's seven sons, whereof thyself art one,\nWere as seven vials of his sacred blood,\nOr seven fair branches springing from one root:\nSome of those seven are dried by nature's course,\nSome of those branches by the Destinies cut;\nBut Thomas, my dear lord, my life, my Gloucester,\nOne vial full of Edward's sacred blood,\nOne flourishing branch of his most royal root,\nIs crack'd, and all the precious liquor spilt,\nIs hack'd down, and his summer leaves all faded,\nBy envy's hand and murder's bloody axe.\nAh, Gaunt, his blood was thine! that bed, that womb,\nThat metal, that self-mould, that fashion'd thee\nMade him a man; and though thou livest and breathest,\nYet art thou slain in him: thou dost consent\nIn some large measure to thy father's death,\nIn that thou seest thy wretched brother die,\nWho was the model of thy father's life.\nCall it not patience, Gaunt; it is despair:\nIn suffering thus thy brother to be slaughter'd,\nThou showest the naked pathway to thy life,\nTeaching stern murder how to butcher thee:\nThat which in mean men we intitle patience\nIs pale cold cowardice in noble breasts.\nWhat shall I say? to safeguard thine own life,\nThe best way is to venge my Gloucester's death.\n\nJOHN OF GAUNT:\nGod's is the quarrel; for God's substitute,\nHis deputy anointed in His sight,\nHath caused his death: the which if wrongfully,\nLet heaven revenge; for I may never lift\nAn angry arm against His minister.\n\nDUCHESS:\nWhere then, alas, may I complain myself?\n\nJOHN OF GAUNT:\nTo God, the widow's champion and defence.\n\nDUCHESS:\nWhy, then, I will. Farewell, old Gaunt.\nThou goest to Coventry, there to behold\nOur cousin Hereford and fell Mowbray fight:\nO, sit my husband's wrongs on Hereford's spear,\nThat it may enter butcher Mowbray's breast!\nOr, if misfortune miss the first career,\nBe Mowbray's sins so heavy in his bosom,\nThey may break his foaming courser's back,\nAnd throw the rider headlong in the lists,\nA caitiff recreant to my cousin Hereford!\nFarewell, old Gaunt: thy sometimes brother's wife\nWith her companion grief must end her life.\n\nJOHN OF GAUNT:\nSister, farewell; I must to Coventry:\nAs much good stay with thee as go with me!\n\nDUCHESS:\nYet one word more: grief boundeth where it falls,\nNot with the empty hollowness, but weight:\nI take my leave before I have begun,\nFor sorrow ends not when it seemeth done.\nCommend me to thy brother, Edmund York.\nLo, this is all:--nay, yet depart not so;\nThough this be all, do not so quickly go;\nI shall remember more. Bid him--ah, what?--\nWith all good speed at Plashy visit me.\nAlack, and what shall good old York there see\nBut empty lodgings and unfurnish'd walls,\nUnpeopled offices, untrodden stones?\nAnd what hear there for welcome but my groans?\nTherefore commend me; let him not come there,\nTo seek out sorrow that dwells every where.\nDesolate, desolate, will I hence and die:\nThe last leave of thee takes my weeping eye.\n\nLord Marshal:\nMy Lord Aumerle, is Harry Hereford arm'd?\n\nDUKE OF AUMERLE:\nYea, at all points; and longs to enter in.\n\nLord Marshal:\nThe Duke of Norfolk, sprightfully and bold,\nStays but the summons of the appellant's trumpet.\n\nDUKE OF AUMERLE:\nWhy, then, the champions are prepared, and stay\nFor nothing but his majesty's approach.\n\nKING RICHARD II:\nMarshal, demand of yonder champion\nThe cause of his arrival here in arms:\nAsk him his name and orderly proceed\nTo swear him in the justice of his cause.\n\nLord Marshal:\nIn God's name and the king's, say who thou art\nAnd why thou comest thus knightly clad in arms,\nAgainst what man thou comest, and what thy quarrel:\nSpeak truly, on thy knighthood and thy oath;\nAs so defend thee heaven and thy valour!\n\nTHOMAS MOWBRAY:\nMy name is Thomas Mowbray, Duke of Norfolk;\nWho hither come engaged by my oath--\nWhich God defend a knight should violate!--\nBoth to defend my loyalty and truth\nTo God, my king and my succeeding issue,\nAgainst the Duke of Hereford that appeals me\nAnd, by the grace of God and this mine arm,\nTo prove him, in defending of myself,\nA traitor to my God, my king, and me:\nAnd as I truly fight, defend me heaven!\n\nKING RICHARD II:\nMarshal, ask yonder knight in arms,\nBoth who he is and why he cometh hither\nThus plated in habiliments of war,\nAnd formally, according to our law,\nDepose him in the justice of his cause.\n\nLord Marshal:\nWhat is thy name? and wherefore comest thou hither,\nBefore King Richard in his royal lists?\nAgainst whom comest thou? and what's thy quarrel?\nSpeak like a true knight, so defend thee heaven!\n\nHENRY BOLINGBROKE:\nHarry of Hereford, Lancaster and Derby\nAm I; who ready here do stand in arms,\nTo prove, by God's grace and my body's valour,\nIn lists, on Thomas Mowbray, Duke of Norfolk,\nThat he is a traitor, foul and dangerous,\nTo God of heaven, King Richard and to me;\nAnd as I truly fight, defend me heaven!\n\nLord Marshal:\nOn pain of death, no person be so bold\nOr daring-hardy as to touch the lists,\nExcept the marshal and such officers\nAppointed to direct these fair designs.\n\nHENRY BOLINGBROKE:\nLord marshal, let me kiss my sovereign's hand,\nAnd bow my knee before his majesty:\nFor Mowbray and myself are like two men\nThat vow a long and weary pilgrimage;\nThen let us take a ceremonious leave\nAnd loving farewell of our several friends.\n\nLord Marshal:\nThe appellant in all duty greets your highness,\nAnd craves to kiss your hand and take his leave.\n\nKING RICHARD II:\nWe will descend and fold him in our arms.\nCousin of Hereford, as thy cause is right,\nSo be thy fortune in this royal fight!\nFarewell, my blood; which if to-day thou shed,\nLament we may, but not revenge thee dead.\n\nHENRY BOLINGBROKE:\nO let no noble eye profane a tear\nFor me, if I be gored with Mowbray's spear:\nAs confident as is the falcon's flight\nAgainst a bird, do I with Mowbray fight.\nMy loving lord, I take my leave of you;\nOf you, my noble cousin, Lord Aumerle;\nNot sick, although I have to do with death,\nBut lusty, young, and cheerly drawing breath.\nLo, as at English feasts, so I regreet\nThe daintiest last, to make the end most sweet:\nO thou, the earthly author of my blood,\nWhose youthful spirit, in me regenerate,\nDoth with a twofold vigour lift me up\nTo reach at victory above my head,\nAdd proof unto mine armour with thy prayers;\nAnd with thy blessings steel my lance's point,\nThat it may enter Mowbray's waxen coat,\nAnd furbish new the name of John a Gaunt,\nEven in the lusty havior of his son.\n\nJOHN OF GAUNT:\nGod in thy good cause make thee prosperous!\nBe swift like lightning in the execution;\nAnd let thy blows, doubly redoubled,\nFall like amazing thunder on the casque\nOf thy adverse pernicious enemy:\nRouse up thy youthful blood, be valiant and live.\n\nHENRY BOLINGBROKE:\nMine innocency and Saint George to thrive!\n\nTHOMAS MOWBRAY:\nHowever God or fortune cast my lot,\nThere lives or dies, true to King Richard's throne,\nA loyal, just and upright gentleman:\nNever did captive with a freer heart\nCast off his chains of bondage and embrace\nHis golden uncontroll'd enfranchisement,\nMore than my dancing soul doth celebrate\nThis feast of battle with mine adversary.\nMost mighty liege, and my companion peers,\nTake from my mouth the wish of happy years:\nAs gentle and as jocund as to jest\nGo I to fight: truth hath a quiet breast.\n\nKING RICHARD II:\nFarewell, my lord: securely I espy\nVirtue with valour couched in thine eye.\nOrder the trial, marshal, and begin.\n\nLord Marshal:\nHarry of Hereford, Lancaster and Derby,\nReceive thy lance; and God defend the right!\n\nHENRY BOLINGBROKE:\nStrong as a tower in hope, I cry amen.\n\nLord Marshal:\nGo bear this lance to Thomas, Duke of Norfolk.\n\nFirst Herald:\nHarry of Hereford, Lancaster and Derby,\nStands here for God, his sovereign and himself,\nOn pain to be found false and recreant,\nTo prove the Duke of Norfolk, Thomas Mowbray,\nA traitor to his God, his king and him;\nAnd dares him to set forward to the fight.\n\nSecond Herald:\nHere standeth Thomas Mowbray, Duke of Norfolk,\nOn pain to be found false and recreant,\nBoth to defend himself and to approve\nHenry of Hereford, Lancaster, and Derby,\nTo God, his sovereign and to him disloyal;\nCourageously and with a free desire\nAttending but the signal to begin.\n\nLord Marshal:\nSound, trumpets; and set forward, combatants.\nStay, the king hath thrown his warder down.\n\nKING RICHARD II:\nLet them lay by their helmets and their spears,\nAnd both return back to their chairs again:\nWithdraw with us: and let the trumpets sound\nWhile we return these dukes what we decree.\nDraw near,\nAnd list what with our council we have done.\nFor that our kingdom's earth should not be soil'd\nWith that dear blood which it hath fostered;\nAnd for our eyes do hate the dire aspect\nOf civil wounds plough'd up with neighbours' sword;\nAnd for we think the eagle-winged pride\nOf sky-aspiring and ambitious thoughts,\nWith rival-hating envy, set on you\nTo wake our peace, which in our country's cradle\nDraws the sweet infant breath of gentle sleep;\nWhich so roused up with boisterous untuned drums,\nWith harsh resounding trumpets' dreadful bray,\nAnd grating shock of wrathful iron arms,\nMight from our quiet confines fright fair peace\nAnd make us wade even in our kindred's blood,\nTherefore, we banish you our territories:\nYou, cousin Hereford, upon pain of life,\nTill twice five summers have enrich'd our fields\nShall not regreet our fair dominions,\nBut tread the stranger paths of banishment.\n\nHENRY BOLINGBROKE:\nYour will be done: this must my comfort be,\nSun that warms you here shall shine on me;\nAnd those his golden beams to you here lent\nShall point on me and gild my banishment.\n\nKING RICHARD II:\nNorfolk, for thee remains a heavier doom,\nWhich I with some unwillingness pronounce:\nThe sly slow hours shall not determinate\nThe dateless limit of thy dear exile;\nThe hopeless word of 'never to return'\nBreathe I against thee, upon pain of life.\n\nTHOMAS MOWBRAY:\nA heavy sentence, my most sovereign liege,\nAnd all unlook'd for from your highness' mouth:\nA dearer merit, not so deep a maim\nAs to be cast forth in the common air,\nHave I deserved at your highness' hands.\nThe language I have learn'd these forty years,\nMy native English, now I must forego:\nAnd now my tongue's use is to me no more\nThan an unstringed viol or a harp,\nOr like a cunning instrument cased up,\nOr, being open, put into his hands\nThat knows no touch to tune the harmony:\nWithin my mouth you have engaol'd my tongue,\nDoubly portcullis'd with my teeth and lips;\nAnd dull unfeeling barren ignorance\nIs made my gaoler to attend on me.\nI am too old to fawn upon a nurse,\nToo far in years to be a pupil now:\nWhat is thy sentence then but speechless death,\nWhich robs my tongue from breathing native breath?\n\nKING RICHARD II:\nIt boots thee not to be compassionate:\nAfter our sentence plaining comes too late.\n\nTHOMAS MOWBRAY:\nThen thus I turn me from my country's light,\nTo dwell in solemn shades of endless night.\n\nKING RICHARD II:\nReturn again, and take an oath with thee.\nLay on our royal sword your banish'd hands;\nSwear by the duty that you owe to God--\nOur part therein we banish with yourselves--\nTo keep the oath that we administer:\nYou never shall, so help you truth and God!\nEmbrace each other's love in banishment;\nNor never look upon each other's face;\nNor never write, regreet, nor reconcile\nThis louring tempest of your home-bred hate;\nNor never by advised purpose meet\nTo plot, contrive, or complot any ill\n'Gainst us, our state, our subjects, or our land.\n\nHENRY BOLINGBROKE:\nI swear.\n\nTHOMAS MOWBRAY:\nAnd I, to keep all this.\n\nHENRY BOLINGBROKE:\nNorfolk, so far as to mine enemy:--\nBy this time, had the king permitted us,\nOne of our souls had wander'd in the air.\nBanish'd this frail sepulchre of our flesh,\nAs now our flesh is banish'd from this land:\nConfess thy treasons ere thou fly the realm;\nSince thou hast far to go, bear not along\nThe clogging burthen of a guilty soul.\n\nTHOMAS MOWBRAY:\nNo, Bolingbroke: if ever I were traitor,\nMy name be blotted from the book of life,\nAnd I from heaven banish'd as from hence!\nBut what thou art, God, thou, and I do know;\nAnd all too soon, I fear, the king shall rue.\nFarewell, my liege. Now no way can I stray;\nSave back to England, all the world's my way.\n\nKING RICHARD II:\nUncle, even in the glasses of thine eyes\nI see thy grieved heart: thy sad aspect\nHath from the number of his banish'd years\nPluck'd four away.\nSix frozen winter spent,\nReturn with welcome home from banishment.\n\nHENRY BOLINGBROKE:\nHow long a time lies in one little word!\nFour lagging winters and four wanton springs\nEnd in a word: such is the breath of kings.\n\nJOHN OF GAUNT:\nI thank my liege, that in regard of me\nHe shortens four years of my son's exile:\nBut little vantage shall I reap thereby;\nFor, ere the six years that he hath to spend\nCan change their moons and bring their times about\nMy oil-dried lamp and time-bewasted light\nShall be extinct with age and endless night;\nMy inch of taper will be burnt and done,\nAnd blindfold death not let me see my son.\n\nKING RICHARD II:\nWhy uncle, thou hast many years to live.\n\nJOHN OF GAUNT:\nBut not a minute, king, that thou canst give:\nShorten my days thou canst with sullen sorrow,\nAnd pluck nights from me, but not lend a morrow;\nThou canst help time to furrow me with age,\nBut stop no wrinkle in his pilgrimage;\nThy word is current with him for my death,\nBut dead, thy kingdom cannot buy my breath.\n\nKING RICHARD II:\nThy son is banish'd upon good advice,\nWhereto thy tongue a party-verdict gave:\nWhy at our justice seem'st thou then to lour?\n\nJOHN OF GAUNT:\nThings sweet to taste prove in digestion sour.\nYou urged me as a judge; but I had rather\nYou would have bid me argue like a father.\nO, had it been a stranger, not my child,\nTo smooth his fault I should have been more mild:\nA partial slander sought I to avoid,\nAnd in the sentence my own life destroy'd.\nAlas, I look'd when some of you should say,\nI was too strict to make mine own away;\nBut you gave leave to my unwilling tongue\nAgainst my will to do myself this wrong.\n\nKING RICHARD II:\nCousin, farewell; and, uncle, bid him so:\nSix years we banish him, and he shall go.\n\nDUKE OF AUMERLE:\nCousin, farewell: what presence must not know,\nFrom where you do remain let paper show.\n\nLord Marshal:\nMy lord, no leave take I; for I will ride,\nAs far as land will let me, by your side.\n\nJOHN OF GAUNT:\nO, to what purpose dost thou hoard thy words,\nThat thou return'st no greeting to thy friends?\n\nHENRY BOLINGBROKE:\nI have too few to take my leave of you,\nWhen the tongue's office should be prodigal\nTo breathe the abundant dolour of the heart.\n\nJOHN OF GAUNT:\nThy grief is but thy absence for a time.\n\nHENRY BOLINGBROKE:\nJoy absent, grief is present for that time.\n\nJOHN OF GAUNT:\nWhat is six winters? they are quickly gone.\n\nHENRY BOLINGBROKE:\nTo men in joy; but grief makes one hour ten.\n\nJOHN OF GAUNT:\nCall it a travel that thou takest for pleasure.\n\nHENRY BOLINGBROKE:\nMy heart will sigh when I miscall it so,\nWhich finds it an inforced pilgrimage.\n\nJOHN OF GAUNT:\nThe sullen passage of thy weary steps\nEsteem as foil wherein thou art to set\nThe precious jewel of thy home return.\n\nHENRY BOLINGBROKE:\nNay, rather, every tedious stride I make\nWill but remember me what a deal of world\nI wander from the jewels that I love.\nMust I not serve a long apprenticehood\nTo foreign passages, and in the end,\nHaving my freedom, boast of nothing else\nBut that I was a journeyman to grief?\n\nJOHN OF GAUNT:\nAll places that the eye of heaven visits\nAre to a wise man ports and happy havens.\nTeach thy necessity to reason thus;\nThere is no virtue like necessity.\nThink not the king did banish thee,\nBut thou the king. Woe doth the heavier sit,\nWhere it perceives it is but faintly borne.\nGo, say I sent thee forth to purchase honour\nAnd not the king exiled thee; or suppose\nDevouring pestilence hangs in our air\nAnd thou art flying to a fresher clime:\nLook, what thy soul holds dear, imagine it\nTo lie that way thou go'st, not whence thou comest:\nSuppose the singing birds musicians,\nThe grass whereon thou tread'st the presence strew'd,\nThe flowers fair ladies, and thy steps no more\nThan a delightful measure or a dance;\nFor gnarling sorrow hath less power to bite\nThe man that mocks at it and sets it light.\n\nHENRY BOLINGBROKE:\nO, who can hold a fire in his hand\nBy thinking on the frosty Caucasus?\nOr cloy the hungry edge of appetite\nBy bare imagination of a feast?\nOr wallow naked in December snow\nBy thinking on fantastic summer's heat?\nO, no! the apprehension of the good\nGives but the greater feeling to the worse:\nFell sorrow's tooth doth never rankle more\nThan when he bites, but lanceth not the sore.\n\nJOHN OF GAUNT:\nCome, come, my son, I'll bring thee on thy way:\nHad I thy youth and cause, I would not stay.\n\nHENRY BOLINGBROKE:\nThen, England's ground, farewell; sweet soil, adieu;\nMy mother, and my nurse, that bears me yet!\nWhere'er I wander, boast of this I can,\nThough banish'd, yet a trueborn Englishman.\n\nKING RICHARD II:\nWe did observe. Cousin Aumerle,\nHow far brought you high Hereford on his way?\n\nDUKE OF AUMERLE:\nI brought high Hereford, if you call him so,\nBut to the next highway, and there I left him.\n\nKING RICHARD II:\nAnd say, what store of parting tears were shed?\n\nDUKE OF AUMERLE:\nFaith, none for me; except the north-east wind,\nWhich then blew bitterly against our faces,\nAwaked the sleeping rheum, and so by chance\nDid grace our hollow parting with a tear.\n\nKING RICHARD II:\nWhat said our cousin when you parted with him?\n\nDUKE OF AUMERLE:\n'Farewell:'\nAnd, for my heart disdained that my tongue\nShould so profane the word, that taught me craft\nTo counterfeit oppression of such grief\nThat words seem'd buried in my sorrow's grave.\nMarry, would the word 'farewell' have lengthen'd hours\nAnd added years to his short banishment,\nHe should have had a volume of farewells;\nBut since it would not, he had none of me.\n\nKING RICHARD II:\nHe is our cousin, cousin; but 'tis doubt,\nWhen time shall call him home from banishment,\nWhether our kinsman come to see his friends.\nOurself and Bushy, Bagot here and Green\nObserved his courtship to the common people;\nHow he did seem to dive into their hearts\nWith humble and familiar courtesy,\nWhat reverence he did throw away on slaves,\nWooing poor craftsmen with the craft of smiles\nAnd patient underbearing of his fortune,\nAs 'twere to banish their affects with him.\nOff goes his bonnet to an oyster-wench;\nA brace of draymen bid God speed him well\nAnd had the tribute of his supple knee,\nWith 'Thanks, my countrymen, my loving friends;'\nAs were our England in reversion his,\nAnd he our subjects' next degree in hope.\n\nGREEN:\nWell, he is gone; and with him go these thoughts.\nNow for the rebels which stand out in Ireland,\nExpedient manage must be made, my liege,\nEre further leisure yield them further means\nFor their advantage and your highness' loss.\n\nKING RICHARD II:\nWe will ourself in person to this war:\nAnd, for our coffers, with too great a court\nAnd liberal largess, are grown somewhat light,\nWe are inforced to farm our royal realm;\nThe revenue whereof shall furnish us\nFor our affairs in hand: if that come short,\nOur substitutes at home shall have blank charters;\nWhereto, when they shall know what men are rich,\nThey shall subscribe them for large sums of gold\nAnd send them after to supply our wants;\nFor we will make for Ireland presently.\nBushy, what news?\n\nBUSHY:\nOld John of Gaunt is grievous sick, my lord,\nSuddenly taken; and hath sent post haste\nTo entreat your majesty to visit him.\n\nKING RICHARD II:\nWhere lies he?\n\nBUSHY:\nAt Ely House.\n\nKING RICHARD II:\nNow put it, God, in the physician's mind\nTo help him to his grave immediately!\nThe lining of his coffers shall make coats\nTo deck our soldiers for these Irish wars.\nCome, gentlemen, let's all go visit him:\nPray God we may make haste, and come too late!\n\nAll:\nAmen.\n\nJOHN OF GAUNT:\nWill the king come, that I may breathe my last\nIn wholesome counsel to his unstaid youth?\n\nDUKE OF YORK:\nVex not yourself, nor strive not with your breath;\nFor all in vain comes counsel to his ear.\n\nJOHN OF GAUNT:\nO, but they say the tongues of dying men\nEnforce attention like deep harmony:\nWhere words are scarce, they are seldom spent in vain,\nFor they breathe truth that breathe their words in pain.\nHe that no more must say is listen'd more\nThan they whom youth and ease have taught to glose;\nMore are men's ends mark'd than their lives before:\nThe setting sun, and music at the close,\nAs the last taste of sweets, is sweetest last,\nWrit in remembrance more than things long past:\nThough Richard my life's counsel would not hear,\nMy death's sad tale may yet undeaf his ear.\n\nDUKE OF YORK:\nNo; it is stopp'd with other flattering sounds,\nAs praises, of whose taste the wise are fond,\nLascivious metres, to whose venom sound\nThe open ear of youth doth always listen;\nReport of fashions in proud Italy,\nWhose manners still our tardy apish nation\nLimps after in base imitation.\nWhere doth the world thrust forth a vanity--\nSo it be new, there's no respect how vile--\nThat is not quickly buzzed into his ears?\nThen all too late comes counsel to be heard,\nWhere will doth mutiny with wit's regard.\nDirect not him whose way himself will choose:\n'Tis breath thou lack'st, and that breath wilt thou lose.\n\nJOHN OF GAUNT:\nMethinks I am a prophet new inspired\nAnd thus expiring do foretell of him:\nHis rash fierce blaze of riot cannot last,\nFor violent fires soon burn out themselves;\nSmall showers last long, but sudden storms are short;\nHe tires betimes that spurs too fast betimes;\nWith eager feeding food doth choke the feeder:\nLight vanity, insatiate cormorant,\nConsuming means, soon preys upon itself.\nThis royal throne of kings, this scepter'd isle,\nThis earth of majesty, this seat of Mars,\nThis other Eden, demi-paradise,\nThis fortress built by Nature for herself\nAgainst infection and the hand of war,\nThis happy breed of men, this little world,\nThis precious stone set in the silver sea,\nWhich serves it in the office of a wall,\nOr as a moat defensive to a house,\nAgainst the envy of less happier lands,\nThis blessed plot, this earth, this realm, this England,\nThis nurse, this teeming womb of royal kings,\nFear'd by their breed and famous by their birth,\nRenowned for their deeds as far from home,\nFor Christian service and true chivalry,\nAs is the sepulchre in stubborn Jewry,\nOf the world's ransom, blessed Mary's Son,\nThis land of such dear souls, this dear dear land,\nDear for her reputation through the world,\nIs now leased out, I die pronouncing it,\nLike to a tenement or pelting farm:\nEngland, bound in with the triumphant sea\nWhose rocky shore beats back the envious siege\nOf watery Neptune, is now bound in with shame,\nWith inky blots and rotten parchment bonds:\nThat England, that was wont to conquer others,\nHath made a shameful conquest of itself.\nAh, would the scandal vanish with my life,\nHow happy then were my ensuing death!\n\nDUKE OF YORK:\nThe king is come: deal mildly with his youth;\nFor young hot colts being raged do rage the more.\n\nQUEEN:\nHow fares our noble uncle, Lancaster?\n\nKING RICHARD II:\nWhat comfort, man? how is't with aged Gaunt?\n\nJOHN OF GAUNT:\nO how that name befits my composition!\nOld Gaunt indeed, and gaunt in being old:\nWithin me grief hath kept a tedious fast;\nAnd who abstains from meat that is not gaunt?\nFor sleeping England long time have I watch'd;\nWatching breeds leanness, leanness is all gaunt:\nThe pleasure that some fathers feed upon,\nIs my strict fast; I mean, my children's looks;\nAnd therein fasting, hast thou made me gaunt:\nGaunt am I for the grave, gaunt as a grave,\nWhose hollow womb inherits nought but bones.\n\nKING RICHARD II:\nCan sick men play so nicely with their names?\n\nJOHN OF GAUNT:\nNo, misery makes sport to mock itself:\nSince thou dost seek to kill my name in me,\nI mock my name, great king, to flatter thee.\n\nKING RICHARD II:\nShould dying men flatter with those that live?\n\nJOHN OF GAUNT:\nNo, no, men living flatter those that die.\n\nKING RICHARD II:\nThou, now a-dying, say'st thou flatterest me.\n\nJOHN OF GAUNT:\nO, no! thou diest, though I the sicker be.\n\nKING RICHARD II:\nI am in health, I breathe, and see thee ill.\n\nJOHN OF GAUNT:\nNow He that made me knows I see thee ill;\nIll in myself to see, and in thee seeing ill.\nThy death-bed is no lesser than thy land\nWherein thou liest in reputation sick;\nAnd thou, too careless patient as thou art,\nCommit'st thy anointed body to the cure\nOf those physicians that first wounded thee:\nA thousand flatterers sit within thy crown,\nWhose compass is no bigger than thy head;\nAnd yet, incaged in so small a verge,\nThe waste is no whit lesser than thy land.\nO, had thy grandsire with a prophet's eye\nSeen how his son's son should destroy his sons,\nFrom forth thy reach he would have laid thy shame,\nDeposing thee before thou wert possess'd,\nWhich art possess'd now to depose thyself.\nWhy, cousin, wert thou regent of the world,\nIt were a shame to let this land by lease;\nBut for thy world enjoying but this land,\nIs it not more than shame to shame it so?\nLandlord of England art thou now, not king:\nThy state of law is bondslave to the law; And thou--\n\nKING RICHARD II:\nA lunatic lean-witted fool,\nPresuming on an ague's privilege,\nDarest with thy frozen admonition\nMake pale our cheek, chasing the royal blood\nWith fury from his native residence.\nNow, by my seat's right royal majesty,\nWert thou not brother to great Edward's son,\nThis tongue that runs so roundly in thy head\nShould run thy head from thy unreverent shoulders.\n\nJOHN OF GAUNT:\nO, spare me not, my brother Edward's son,\nFor that I was his father Edward's son;\nThat blood already, like the pelican,\nHast thou tapp'd out and drunkenly caroused:\nMy brother Gloucester, plain well-meaning soul,\nWhom fair befal in heaven 'mongst happy souls!\nMay be a precedent and witness good\nThat thou respect'st not spilling Edward's blood:\nJoin with the present sickness that I have;\nAnd thy unkindness be like crooked age,\nTo crop at once a too long wither'd flower.\nLive in thy shame, but die not shame with thee!\nThese words hereafter thy tormentors be!\nConvey me to my bed, then to my grave:\nLove they to live that love and honour have.\n\nKING RICHARD II:\nAnd let them die that age and sullens have;\nFor both hast thou, and both become the grave.\n\nDUKE OF YORK:\nI do beseech your majesty, impute his words\nTo wayward sickliness and age in him:\nHe loves you, on my life, and holds you dear\nAs Harry Duke of Hereford, were he here.\n\nKING RICHARD II:\nRight, you say true: as Hereford's love, so his;\nAs theirs, so mine; and all be as it is.\n\nNORTHUMBERLAND:\nMy liege, old Gaunt commends him to your majesty.\n\nKING RICHARD II:\nWhat says he?\n\nNORTHUMBERLAND:\nNay, nothing; all is said\nHis tongue is now a stringless instrument;\nWords, life and all, old Lancaster hath spent.\n\nDUKE OF YORK:\nBe York the next that must be bankrupt so!\nThough death be poor, it ends a mortal woe.\n\nKING RICHARD II:\nThe ripest fruit first falls, and so doth he;\nHis time is spent, our pilgrimage must be.\nSo much for that. Now for our Irish wars:\nWe must supplant those rough rug-headed kerns,\nWhich live like venom where no venom else\nBut only they have privilege to live.\nAnd for these great affairs do ask some charge,\nTowards our assistance we do seize to us\nThe plate, corn, revenues and moveables,\nWhereof our uncle Gaunt did stand possess'd.\n\nDUKE OF YORK:\nHow long shall I be patient? ah, how long\nShall tender duty make me suffer wrong?\nNot Gloucester's death, nor Hereford's banishment\nNot Gaunt's rebukes, nor England's private wrongs,\nNor the prevention of poor Bolingbroke\nAbout his marriage, nor my own disgrace,\nHave ever made me sour my patient cheek,\nOr bend one wrinkle on my sovereign's face.\nI am the last of noble Edward's sons,\nOf whom thy father, Prince of Wales, was first:\nIn war was never lion raged more fierce,\nIn peace was never gentle lamb more mild,\nThan was that young and princely gentleman.\nHis face thou hast, for even so look'd he,\nAccomplish'd with the number of thy hours;\nBut when he frown'd, it was against the French\nAnd not against his friends; his noble hand\nDid will what he did spend and spent not that\nWhich his triumphant father's hand had won;\nHis hands were guilty of no kindred blood,\nBut bloody with the enemies of his kin.\nO Richard! York is too far gone with grief,\nOr else he never would compare between.\n\nKING RICHARD II:\nWhy, uncle, what's the matter?\n\nDUKE OF YORK:\nO my liege,\nPardon me, if you please; if not, I, pleased\nNot to be pardon'd, am content withal.\nSeek you to seize and gripe into your hands\nThe royalties and rights of banish'd Hereford?\nIs not Gaunt dead, and doth not Hereford live?\nWas not Gaunt just, and is not Harry true?\nDid not the one deserve to have an heir?\nIs not his heir a well-deserving son?\nTake Hereford's rights away, and take from Time\nHis charters and his customary rights;\nLet not to-morrow then ensue to-day;\nBe not thyself; for how art thou a king\nBut by fair sequence and succession?\nNow, afore God--God forbid I say true!--\nIf you do wrongfully seize Hereford's rights,\nCall in the letters patent that he hath\nBy his attorneys-general to sue\nHis livery, and deny his offer'd homage,\nYou pluck a thousand dangers on your head,\nYou lose a thousand well-disposed hearts\nAnd prick my tender patience, to those thoughts\nWhich honour and allegiance cannot think.\n\nKING RICHARD II:\nThink what you will, we seize into our hands\nHis plate, his goods, his money and his lands.\n\nDUKE OF YORK:\nI'll not be by the while: my liege, farewell:\nWhat will ensue hereof, there's none can tell;\nBut by bad courses may be understood\nThat their events can never fall out good.\n\nKING RICHARD II:\nGo, Bushy, to the Earl of Wiltshire straight:\nBid him repair to us to Ely House\nTo see this business. To-morrow next\nWe will for Ireland; and 'tis time, I trow:\nAnd we create, in absence of ourself,\nOur uncle York lord governor of England;\nFor he is just and always loved us well.\nCome on, our queen: to-morrow must we part;\nBe merry, for our time of stay is short\n\nNORTHUMBERLAND:\nWell, lords, the Duke of Lancaster is dead.\n\nLORD ROSS:\nAnd living too; for now his son is duke.\n\nLORD WILLOUGHBY:\nBarely in title, not in revenue.\n\nNORTHUMBERLAND:\nRichly in both, if justice had her right.\n\nLORD ROSS:\nMy heart is great; but it must break with silence,\nEre't be disburden'd with a liberal tongue.\n\nNORTHUMBERLAND:\nNay, speak thy mind; and let him ne'er speak more\nThat speaks thy words again to do thee harm!\n\nLORD WILLOUGHBY:\nTends that thou wouldst speak to the Duke of Hereford?\nIf it be so, out with it boldly, man;\nQuick is mine ear to hear of good towards him.\n\nLORD ROSS:\nNo good at all that I can do for him;\nUnless you call it good to pity him,\nBereft and gelded of his patrimony.\n\nNORTHUMBERLAND:\nNow, afore God, 'tis shame such wrongs are borne\nIn him, a royal prince, and many moe\nOf noble blood in this declining land.\nThe king is not himself, but basely led\nBy flatterers; and what they will inform,\nMerely in hate, 'gainst any of us all,\nThat will the king severely prosecute\n'Gainst us, our lives, our children, and our heirs.\n\nLORD ROSS:\nThe commons hath he pill'd with grievous taxes,\nAnd quite lost their hearts: the nobles hath he fined\nFor ancient quarrels, and quite lost their hearts.\n\nLORD WILLOUGHBY:\nAnd daily new exactions are devised,\nAs blanks, benevolences, and I wot not what:\nBut what, o' God's name, doth become of this?\n\nNORTHUMBERLAND:\nWars have not wasted it, for warr'd he hath not,\nBut basely yielded upon compromise\nThat which his noble ancestors achieved with blows:\nMore hath he spent in peace than they in wars.\n\nLORD ROSS:\nThe Earl of Wiltshire hath the realm in farm.\n\nLORD WILLOUGHBY:\nThe king's grown bankrupt, like a broken man.\n\nNORTHUMBERLAND:\nReproach and dissolution hangeth over him.\n\nLORD ROSS:\nHe hath not money for these Irish wars,\nHis burthenous taxations notwithstanding,\nBut by the robbing of the banish'd duke.\n\nNORTHUMBERLAND:\nHis noble kinsman: most degenerate king!\nBut, lords, we hear this fearful tempest sing,\nYet see no shelter to avoid the storm;\nWe see the wind sit sore upon our sails,\nAnd yet we strike not, but securely perish.\n\nLORD ROSS:\nWe see the very wreck that we must suffer;\nAnd unavoided is the danger now,\nFor suffering so the causes of our wreck.\n\nNORTHUMBERLAND:\nNot so; even through the hollow eyes of death\nI spy life peering; but I dare not say\nHow near the tidings of our comfort is.\n\nLORD WILLOUGHBY:\nNay, let us share thy thoughts, as thou dost ours.\n\nLORD ROSS:\nBe confident to speak, Northumberland:\nWe three are but thyself; and, speaking so,\nThy words are but as thoughts; therefore, be bold.\n\nNORTHUMBERLAND:\nThen thus: I have from Port le Blanc, a bay\nIn Brittany, received intelligence\nThat Harry Duke of Hereford, Rainold Lord Cobham,\nThat late broke from the Duke of Exeter,\nHis brother, Archbishop late of Canterbury,\nSir Thomas Erpingham, Sir John Ramston,\nSir John Norbery, Sir Robert Waterton and Francis Quoint,\nAll these well furnish'd by the Duke of Bretagne\nWith eight tall ships, three thousand men of war,\nAre making hither with all due expedience\nAnd shortly mean to touch our northern shore:\nPerhaps they had ere this, but that they stay\nThe first departing of the king for Ireland.\nIf then we shall shake off our slavish yoke,\nImp out our drooping country's broken wing,\nRedeem from broking pawn the blemish'd crown,\nWipe off the dust that hides our sceptre's gilt\nAnd make high majesty look like itself,\nAway with me in post to Ravenspurgh;\nBut if you faint, as fearing to do so,\nStay and be secret, and myself will go.\n\nLORD ROSS:\nTo horse, to horse! urge doubts to them that fear.\n\nLORD WILLOUGHBY:\nHold out my horse, and I will first be there.\n\nBUSHY:\nMadam, your majesty is too much sad:\nYou promised, when you parted with the king,\nTo lay aside life-harming heaviness\nAnd entertain a cheerful disposition.\n\nQUEEN:\nTo please the king I did; to please myself\nI cannot do it; yet I know no cause\nWhy I should welcome such a guest as grief,\nSave bidding farewell to so sweet a guest\nAs my sweet Richard: yet again, methinks,\nSome unborn sorrow, ripe in fortune's womb,\nIs coming towards me, and my inward soul\nWith nothing trembles: at some thing it grieves,\nMore than with parting from my lord the king.\n\nBUSHY:\nEach substance of a grief hath twenty shadows,\nWhich shows like grief itself, but is not so;\nFor sorrow's eye, glazed with blinding tears,\nDivides one thing entire to many objects;\nLike perspectives, which rightly gazed upon\nShow nothing but confusion, eyed awry\nDistinguish form: so your sweet majesty,\nLooking awry upon your lord's departure,\nFind shapes of grief, more than himself, to wail;\nWhich, look'd on as it is, is nought but shadows\nOf what it is not. Then, thrice-gracious queen,\nMore than your lord's departure weep not: more's not seen;\nOr if it be, 'tis with false sorrow's eye,\nWhich for things true weeps things imaginary.\n\nQUEEN:\nIt may be so; but yet my inward soul\nPersuades me it is otherwise: howe'er it be,\nI cannot but be sad; so heavy sad\nAs, though on thinking on no thought I think,\nMakes me with heavy nothing faint and shrink.\n\nBUSHY:\n'Tis nothing but conceit, my gracious lady.\n\nQUEEN:\n'Tis nothing less: conceit is still derived\nFrom some forefather grief; mine is not so,\nFor nothing had begot my something grief;\nOr something hath the nothing that I grieve:\n'Tis in reversion that I do possess;\nBut what it is, that is not yet known; what\nI cannot name; 'tis nameless woe, I wot.\n\nGREEN:\nGod save your majesty! and well met, gentlemen:\nI hope the king is not yet shipp'd for Ireland.\n\nQUEEN:\nWhy hopest thou so? 'tis better hope he is;\nFor his designs crave haste, his haste good hope:\nThen wherefore dost thou hope he is not shipp'd?\n\nGREEN:\nThat he, our hope, might have retired his power,\nAnd driven into despair an enemy's hope,\nWho strongly hath set footing in this land:\nThe banish'd Bolingbroke repeals himself,\nAnd with uplifted arms is safe arrived\nAt Ravenspurgh.\n\nQUEEN:\nNow God in heaven forbid!\n\nGREEN:\nAh, madam, 'tis too true: and that is worse,\nThe Lord Northumberland, his son young Henry Percy,\nThe Lords of Ross, Beaumond, and Willoughby,\nWith all their powerful friends, are fled to him.\n\nBUSHY:\nWhy have you not proclaim'd Northumberland\nAnd all the rest revolted faction traitors?\n\nGREEN:\nWe have: whereupon the Earl of Worcester\nHath broke his staff, resign'd his stewardship,\nAnd all the household servants fled with him\nTo Bolingbroke.\n\nQUEEN:\nSo, Green, thou art the midwife to my woe,\nAnd Bolingbroke my sorrow's dismal heir:\nNow hath my soul brought forth her prodigy,\nAnd I, a gasping new-deliver'd mother,\nHave woe to woe, sorrow to sorrow join'd.\n\nBUSHY:\nDespair not, madam.\n\nQUEEN:\nWho shall hinder me?\nI will despair, and be at enmity\nWith cozening hope: he is a flatterer,\nA parasite, a keeper back of death,\nWho gently would dissolve the bands of life,\nWhich false hope lingers in extremity.\n\nGREEN:\nHere comes the Duke of York.\n\nQUEEN:\nWith signs of war about his aged neck:\nO, full of careful business are his looks!\nUncle, for God's sake, speak comfortable words.\n\nDUKE OF YORK:\nShould I do so, I should belie my thoughts:\nComfort's in heaven; and we are on the earth,\nWhere nothing lives but crosses, cares and grief.\nYour husband, he is gone to save far off,\nWhilst others come to make him lose at home:\nHere am I left to underprop his land,\nWho, weak with age, cannot support myself:\nNow comes the sick hour that his surfeit made;\nNow shall he try his friends that flatter'd him.\n\nServant:\nMy lord, your son was gone before I came.\n\nDUKE OF YORK:\nHe was? Why, so! go all which way it will!\nThe nobles they are fled, the commons they are cold,\nAnd will, I fear, revolt on Hereford's side.\nSirrah, get thee to Plashy, to my sister Gloucester;\nBid her send me presently a thousand pound:\nHold, take my ring.\n\nServant:\nMy lord, I had forgot to tell your lordship,\nTo-day, as I came by, I called there;\nBut I shall grieve you to report the rest.\n\nDUKE OF YORK:\nWhat is't, knave?\n\nServant:\nAn hour before I came, the duchess died.\n\nDUKE OF YORK:\nGod for his mercy! what a tide of woes\nComes rushing on this woeful land at once!\nI know not what to do: I would to God,\nSo my untruth had not provoked him to it,\nThe king had cut off my head with my brother's.\nWhat, are there no posts dispatch'd for Ireland?\nHow shall we do for money for these wars?\nCome, sister,--cousin, I would say--pray, pardon me.\nGo, fellow, get thee home, provide some carts\nAnd bring away the armour that is there.\nGentlemen, will you go muster men?\nIf I know how or which way to order these affairs\nThus thrust disorderly into my hands,\nNever believe me. Both are my kinsmen:\nThe one is my sovereign, whom both my oath\nAnd duty bids defend; the other again\nIs my kinsman, whom the king hath wrong'd,\nWhom conscience and my kindred bids to right.\nWell, somewhat we must do. Come, cousin, I'll\nDispose of you.\nGentlemen, go, muster up your men,\nAnd meet me presently at Berkeley.\nI should to Plashy too;\nBut time will not permit: all is uneven,\nAnd every thing is left at six and seven.\n\nBUSHY:\nThe wind sits fair for news to go to Ireland,\nBut none returns. For us to levy power\nProportionable to the enemy\nIs all unpossible.\n\nGREEN:\nBesides, our nearness to the king in love\nIs near the hate of those love not the king.\n\nBAGOT:\nAnd that's the wavering commons: for their love\nLies in their purses, and whoso empties them\nBy so much fills their hearts with deadly hate.\n\nBUSHY:\nWherein the king stands generally condemn'd.\n\nBAGOT:\nIf judgement lie in them, then so do we,\nBecause we ever have been near the king.\n\nGREEN:\nWell, I will for refuge straight to Bristol castle:\nThe Earl of Wiltshire is already there.\n\nBUSHY:\nThither will I with you; for little office\nThe hateful commons will perform for us,\nExcept like curs to tear us all to pieces.\nWill you go along with us?\n\nBAGOT:\nNo; I will to Ireland to his majesty.\nFarewell: if heart's presages be not vain,\nWe three here art that ne'er shall meet again.\n\nBUSHY:\nThat's as York thrives to beat back Bolingbroke.\n\nGREEN:\nAlas, poor duke! the task he undertakes\nIs numbering sands and drinking oceans dry:\nWhere one on his side fights, thousands will fly.\nFarewell at once, for once, for all, and ever.\n\nBUSHY:\nWell, we may meet again.\n\nBAGOT:\nI fear me, never.\n\nHENRY BOLINGBROKE:\nHow far is it, my lord, to Berkeley now?\n\nNORTHUMBERLAND:\nBelieve me, noble lord,\nI am a stranger here in Gloucestershire:\nThese high wild hills and rough uneven ways\nDraws out our miles, and makes them wearisome,\nAnd yet your fair discourse hath been as sugar,\nMaking the hard way sweet and delectable.\nBut I bethink me what a weary way\nFrom Ravenspurgh to Cotswold will be found\nIn Ross and Willoughby, wanting your company,\nWhich, I protest, hath very much beguiled\nThe tediousness and process of my travel:\nBut theirs is sweetened with the hope to have\nThe present benefit which I possess;\nAnd hope to joy is little less in joy\nThan hope enjoy'd: by this the weary lords\nShall make their way seem short, as mine hath done\nBy sight of what I have, your noble company.\n\nHENRY BOLINGBROKE:\nOf much less value is my company\nThan your good words. But who comes here?\n\nNORTHUMBERLAND:\nIt is my son, young Harry Percy,\nSent from my brother Worcester, whencesoever.\nHarry, how fares your uncle?\n\nHENRY PERCY:\nI had thought, my lord, to have learn'd his health of you.\n\nNORTHUMBERLAND:\nWhy, is he not with the queen?\n\nHENRY PERCY:\nNo, my good Lord; he hath forsook the court,\nBroken his staff of office and dispersed\nThe household of the king.\n\nNORTHUMBERLAND:\nWhat was his reason?\nHe was not so resolved when last we spake together.\n\nHENRY PERCY:\nBecause your lordship was proclaimed traitor.\nBut he, my lord, is gone to Ravenspurgh,\nTo offer service to the Duke of Hereford,\nAnd sent me over by Berkeley, to discover\nWhat power the Duke of York had levied there;\nThen with directions to repair to Ravenspurgh.\n\nNORTHUMBERLAND:\nHave you forgot the Duke of Hereford, boy?\n\nHENRY PERCY:\nNo, my good lord, for that is not forgot\nWhich ne'er I did remember: to my knowledge,\nI never in my life did look on him.\n\nNORTHUMBERLAND:\nThen learn to know him now; this is the duke.\n\nHENRY PERCY:\nMy gracious lord, I tender you my service,\nSuch as it is, being tender, raw and young:\nWhich elder days shall ripen and confirm\nTo more approved service and desert.\n\nHENRY BOLINGBROKE:\nI thank thee, gentle Percy; and be sure\nI count myself in nothing else so happy\nAs in a soul remembering my good friends;\nAnd, as my fortune ripens with thy love,\nIt shall be still thy true love's recompense:\nMy heart this covenant makes, my hand thus seals it.\n\nNORTHUMBERLAND:\nHow far is it to Berkeley? and what stir\nKeeps good old York there with his men of war?\n\nHENRY PERCY:\nThere stands the castle, by yon tuft of trees,\nMann'd with three hundred men, as I have heard;\nAnd in it are the Lords of York, Berkeley, and Seymour;\nNone else of name and noble estimate.\n\nNORTHUMBERLAND:\nHere come the Lords of Ross and Willoughby,\nBloody with spurring, fiery-red with haste.\n\nHENRY BOLINGBROKE:\nWelcome, my lords. I wot your love pursues\nA banish'd traitor: all my treasury\nIs yet but unfelt thanks, which more enrich'd\nShall be your love and labour's recompense.\n\nLORD ROSS:\nYour presence makes us rich, most noble lord.\n\nLORD WILLOUGHBY:\nAnd far surmounts our labour to attain it.\n\nHENRY BOLINGBROKE:\nEvermore thanks, the exchequer of the poor;\nWhich, till my infant fortune comes to years,\nStands for my bounty. But who comes here?\n\nNORTHUMBERLAND:\nIt is my Lord of Berkeley, as I guess.\n\nLORD BERKELEY:\nMy Lord of Hereford, my message is to you.\n\nHENRY BOLINGBROKE:\nMy lord, my answer is--to Lancaster;\nAnd I am come to seek that name in England;\nAnd I must find that title in your tongue,\nBefore I make reply to aught you say.\n\nLORD BERKELEY:\nMistake me not, my lord; 'tis not my meaning\nTo raze one title of your honour out:\nTo you, my lord, I come, what lord you will,\nFrom the most gracious regent of this land,\nThe Duke of York, to know what pricks you on\nTo take advantage of the absent time\nAnd fright our native peace with self-born arms.\n\nHENRY BOLINGBROKE:\nI shall not need transport my words by you;\nHere comes his grace in person. My noble uncle!\n\nDUKE OF YORK:\nShow me thy humble heart, and not thy knee,\nWhose duty is deceiveable and false.\n\nHENRY BOLINGBROKE:\nMy gracious uncle--\n\nDUKE OF YORK:\nTut, tut!\nGrace me no grace, nor uncle me no uncle:\nI am no traitor's uncle; and that word 'grace.'\nIn an ungracious mouth is but profane.\nWhy have those banish'd and forbidden legs\nDared once to touch a dust of England's ground?\nBut then more 'why?' why have they dared to march\nSo many miles upon her peaceful bosom,\nFrighting her pale-faced villages with war\nAnd ostentation of despised arms?\nComest thou because the anointed king is hence?\nWhy, foolish boy, the king is left behind,\nAnd in my loyal bosom lies his power.\nWere I but now the lord of such hot youth\nAs when brave Gaunt, thy father, and myself\nRescued the Black Prince, that young Mars of men,\nFrom forth the ranks of many thousand French,\nO, then how quickly should this arm of mine.\nNow prisoner to the palsy, chastise thee\nAnd minister correction to thy fault!\n\nHENRY BOLINGBROKE:\nMy gracious uncle, let me know my fault:\nOn what condition stands it and wherein?\n\nDUKE OF YORK:\nEven in condition of the worst degree,\nIn gross rebellion and detested treason:\nThou art a banish'd man, and here art come\nBefore the expiration of thy time,\nIn braving arms against thy sovereign.\n\nHENRY BOLINGBROKE:\nAs I was banish'd, I was banish'd Hereford;\nBut as I come, I come for Lancaster.\nAnd, noble uncle, I beseech your grace\nLook on my wrongs with an indifferent eye:\nYou are my father, for methinks in you\nI see old Gaunt alive; O, then, my father,\nWill you permit that I shall stand condemn'd\nA wandering vagabond; my rights and royalties\nPluck'd from my arms perforce and given away\nTo upstart unthrifts? Wherefore was I born?\nIf that my cousin king be King of England,\nIt must be granted I am Duke of Lancaster.\nYou have a son, Aumerle, my noble cousin;\nHad you first died, and he been thus trod down,\nHe should have found his uncle Gaunt a father,\nTo rouse his wrongs and chase them to the bay.\nI am denied to sue my livery here,\nAnd yet my letters-patents give me leave:\nMy father's goods are all distrain'd and sold,\nAnd these and all are all amiss employ'd.\nWhat would you have me do? I am a subject,\nAnd I challenge law: attorneys are denied me;\nAnd therefore, personally I lay my claim\nTo my inheritance of free descent.\n\nNORTHUMBERLAND:\nThe noble duke hath been too much abused.\n\nLORD ROSS:\nIt stands your grace upon to do him right.\n\nLORD WILLOUGHBY:\nBase men by his endowments are made great.\n\nDUKE OF YORK:\nMy lords of England, let me tell you this:\nI have had feeling of my cousin's wrongs\nAnd laboured all I could to do him right;\nBut in this kind to come, in braving arms,\nBe his own carver and cut out his way,\nTo find out right with wrong, it may not be;\nAnd you that do abet him in this kind\nCherish rebellion and are rebels all.\n\nNORTHUMBERLAND:\nThe noble duke hath sworn his coming is\nBut for his own; and for the right of that\nWe all have strongly sworn to give him aid;\nAnd let him ne'er see joy that breaks that oath!\n\nDUKE OF YORK:\nWell, well, I see the issue of these arms:\nI cannot mend it, I must needs confess,\nBecause my power is weak and all ill left:\nBut if I could, by Him that gave me life,\nI would attach you all and make you stoop\nUnto the sovereign mercy of the king;\nBut since I cannot, be it known to you\nI do remain as neuter. So, fare you well;\nUnless you please to enter in the castle\nAnd there repose you for this night.\n\nHENRY BOLINGBROKE:\nAn offer, uncle, that we will accept:\nBut we must win your grace to go with us\nTo Bristol castle, which they say is held\nBy Bushy, Bagot and their complices,\nThe caterpillars of the commonwealth,\nWhich I have sworn to weed and pluck away.\n\nDUKE OF YORK:\nIt may be I will go with you: but yet I'll pause;\nFor I am loath to break our country's laws.\nNor friends nor foes, to me welcome you are:\nThings past redress are now with me past care.\n\nCaptain:\nMy lord of Salisbury, we have stay'd ten days,\nAnd hardly kept our countrymen together,\nAnd yet we hear no tidings from the king;\nTherefore we will disperse ourselves: farewell.\n\nEARL OF SALISBURY:\nStay yet another day, thou trusty Welshman:\nThe king reposeth all his confidence in thee.\n\nCaptain:\n'Tis thought the king is dead; we will not stay.\nThe bay-trees in our country are all wither'd\nAnd meteors fright the fixed stars of heaven;\nThe pale-faced moon looks bloody on the earth\nAnd lean-look'd prophets whisper fearful change;\nRich men look sad and ruffians dance and leap,\nThe one in fear to lose what they enjoy,\nThe other to enjoy by rage and war:\nThese signs forerun the death or fall of kings.\nFarewell: our countrymen are gone and fled,\nAs well assured Richard their king is dead.\n\nEARL OF SALISBURY:\nAh, Richard, with the eyes of heavy mind\nI see thy glory like a shooting star\nFall to the base earth from the firmament.\nThy sun sets weeping in the lowly west,\nWitnessing storms to come, woe and unrest:\nThy friends are fled to wait upon thy foes,\nAnd crossly to thy good all fortune goes.\n\nHENRY BOLINGBROKE:\nBring forth these men.\nBushy and Green, I will not vex your souls--\nSince presently your souls must part your bodies--\nWith too much urging your pernicious lives,\nFor 'twere no charity; yet, to wash your blood\nFrom off my hands, here in the view of men\nI will unfold some causes of your deaths.\nYou have misled a prince, a royal king,\nA happy gentleman in blood and lineaments,\nBy you unhappied and disfigured clean:\nYou have in manner with your sinful hours\nMade a divorce betwixt his queen and him,\nBroke the possession of a royal bed\nAnd stain'd the beauty of a fair queen's cheeks\nWith tears drawn from her eyes by your foul wrongs.\nMyself, a prince by fortune of my birth,\nNear to the king in blood, and near in love\nTill you did make him misinterpret me,\nHave stoop'd my neck under your injuries,\nAnd sigh'd my English breath in foreign clouds,\nEating the bitter bread of banishment;\nWhilst you have fed upon my signories,\nDispark'd my parks and fell'd my forest woods,\nFrom my own windows torn my household coat,\nRazed out my imprese, leaving me no sign,\nSave men's opinions and my living blood,\nTo show the world I am a gentleman.\nThis and much more, much more than twice all this,\nCondemns you to the death. See them deliver'd over\nTo execution and the hand of death.\n\nBUSHY:\nMore welcome is the stroke of death to me\nThan Bolingbroke to England. Lords, farewell.\n\nGREEN:\nMy comfort is that heaven will take our souls\nAnd plague injustice with the pains of hell.\n\nHENRY BOLINGBROKE:\nMy Lord Northumberland, see them dispatch'd.\nUncle, you say the queen is at your house;\nFor God's sake, fairly let her be entreated:\nTell her I send to her my kind commends;\nTake special care my greetings be deliver'd.\n\nDUKE OF YORK:\nA gentleman of mine I have dispatch'd\nWith letters of your love to her at large.\n\nHENRY BOLINGBROKE:\nThank, gentle uncle. Come, lords, away.\nTo fight with Glendower and his complices:\nAwhile to work, and after holiday.\n\nKING RICHARD II:\nBarkloughly castle call they this at hand?\n\nDUKE OF AUMERLE:\nYea, my lord. How brooks your grace the air,\nAfter your late tossing on the breaking seas?\n\nKING RICHARD II:\nNeeds must I like it well: I weep for joy\nTo stand upon my kingdom once again.\nDear earth, I do salute thee with my hand,\nThough rebels wound thee with their horses' hoofs:\nAs a long-parted mother with her child\nPlays fondly with her tears and smiles in meeting,\nSo, weeping, smiling, greet I thee, my earth,\nAnd do thee favours with my royal hands.\nFeed not thy sovereign's foe, my gentle earth,\nNor with thy sweets comfort his ravenous sense;\nBut let thy spiders, that suck up thy venom,\nAnd heavy-gaited toads lie in their way,\nDoing annoyance to the treacherous feet\nWhich with usurping steps do trample thee:\nYield stinging nettles to mine enemies;\nAnd when they from thy bosom pluck a flower,\nGuard it, I pray thee, with a lurking adder\nWhose double tongue may with a mortal touch\nThrow death upon thy sovereign's enemies.\nMock not my senseless conjuration, lords:\nThis earth shall have a feeling and these stones\nProve armed soldiers, ere her native king\nShall falter under foul rebellion's arms.\n\nBISHOP OF CARLISLE:\nFear not, my lord: that Power that made you king\nHath power to keep you king in spite of all.\nThe means that heaven yields must be embraced,\nAnd not neglected; else, if heaven would,\nAnd we will not, heaven's offer we refuse,\nThe proffer'd means of succor and redress.\n\nDUKE OF AUMERLE:\nHe means, my lord, that we are too remiss;\nWhilst Bolingbroke, through our security,\nGrows strong and great in substance and in power.\n\nKING RICHARD II:\nDiscomfortable cousin! know'st thou not\nThat when the searching eye of heaven is hid,\nBehind the globe, that lights the lower world,\nThen thieves and robbers range abroad unseen\nIn murders and in outrage, boldly here;\nBut when from under this terrestrial ball\nHe fires the proud tops of the eastern pines\nAnd darts his light through every guilty hole,\nThen murders, treasons and detested sins,\nThe cloak of night being pluck'd from off their backs,\nStand bare and naked, trembling at themselves?\nSo when this thief, this traitor, Bolingbroke,\nWho all this while hath revell'd in the night\nWhilst we were wandering with the antipodes,\nShall see us rising in our throne, the east,\nHis treasons will sit blushing in his face,\nNot able to endure the sight of day,\nBut self-affrighted tremble at his sin.\nNot all the water in the rough rude sea\nCan wash the balm off from an anointed king;\nThe breath of worldly men cannot depose\nThe deputy elected by the Lord:\nFor every man that Bolingbroke hath press'd\nTo lift shrewd steel against our golden crown,\nGod for his Richard hath in heavenly pay\nA glorious angel: then, if angels fight,\nWeak men must fall, for heaven still guards the right.\nWelcome, my lord how far off lies your power?\n\nEARL OF SALISBURY:\nNor near nor farther off, my gracious lord,\nThan this weak arm: discomfort guides my tongue\nAnd bids me speak of nothing but despair.\nOne day too late, I fear me, noble lord,\nHath clouded all thy happy days on earth:\nO, call back yesterday, bid time return,\nAnd thou shalt have twelve thousand fighting men!\nTo-day, to-day, unhappy day, too late,\nO'erthrows thy joys, friends, fortune and thy state:\nFor all the Welshmen, hearing thou wert dead.\nAre gone to Bolingbroke, dispersed and fled.\n\nDUKE OF AUMERLE:\nComfort, my liege; why looks your grace so pale?\n\nKING RICHARD II:\nBut now the blood of twenty thousand men\nDid triumph in my face, and they are fled;\nAnd, till so much blood thither come again,\nHave I not reason to look pale and dead?\nAll souls that will be safe fly from my side,\nFor time hath set a blot upon my pride.\n\nDUKE OF AUMERLE:\nComfort, my liege; remember who you are.\n\nKING RICHARD II:\nI had forgot myself; am I not king?\nAwake, thou coward majesty! thou sleepest.\nIs not the king's name twenty thousand names?\nArm, arm, my name! a puny subject strikes\nAt thy great glory. Look not to the ground,\nYe favourites of a king: are we not high?\nHigh be our thoughts: I know my uncle York\nHath power enough to serve our turn. But who comes here?\n\nSIR STEPHEN SCROOP:\nMore health and happiness betide my liege\nThan can my care-tuned tongue deliver him!\n\nKING RICHARD II:\nMine ear is open and my heart prepared;\nThe worst is worldly loss thou canst unfold.\nSay, is my kingdom lost? why, 'twas my care\nAnd what loss is it to be rid of care?\nStrives Bolingbroke to be as great as we?\nGreater he shall not be; if he serve God,\nWe'll serve Him too and be his fellow so:\nRevolt our subjects? that we cannot mend;\nThey break their faith to God as well as us:\nCry woe, destruction, ruin and decay:\nThe worst is death, and death will have his day.\n\nSIR STEPHEN SCROOP:\nGlad am I that your highness is so arm'd\nTo bear the tidings of calamity.\nLike an unseasonable stormy day,\nWhich makes the silver rivers drown their shores,\nAs if the world were all dissolved to tears,\nSo high above his limits swells the rage\nOf Bolingbroke, covering your fearful land\nWith hard bright steel and hearts harder than steel.\nWhite-beards have arm'd their thin and hairless scalps\nAgainst thy majesty; boys, with women's voices,\nStrive to speak big and clap their female joints\nIn stiff unwieldy arms against thy crown:\nThe very beadsmen learn to bend their bows\nOf double-fatal yew against thy state;\nYea, distaff-women manage rusty bills\nAgainst thy seat: both young and old rebel,\nAnd all goes worse than I have power to tell.\n\nKING RICHARD II:\nToo well, too well thou tell'st a tale so ill.\nWhere is the Earl of Wiltshire? where is Bagot?\nWhat is become of Bushy? where is Green?\nThat they have let the dangerous enemy\nMeasure our confines with such peaceful steps?\nIf we prevail, their heads shall pay for it:\nI warrant they have made peace with Bolingbroke.\n\nSIR STEPHEN SCROOP:\nPeace have they made with him indeed, my lord.\n\nKING RICHARD II:\nO villains, vipers, damn'd without redemption!\nDogs, easily won to fawn on any man!\nSnakes, in my heart-blood warm'd, that sting my heart!\nThree Judases, each one thrice worse than Judas!\nWould they make peace? terrible hell make war\nUpon their spotted souls for this offence!\n\nSIR STEPHEN SCROOP:\nSweet love, I see, changing his property,\nTurns to the sourest and most deadly hate:\nAgain uncurse their souls; their peace is made\nWith heads, and not with hands; those whom you curse\nHave felt the worst of death's destroying wound\nAnd lie full low, graved in the hollow ground.\n\nDUKE OF AUMERLE:\nIs Bushy, Green, and the Earl of Wiltshire dead?\n\nSIR STEPHEN SCROOP:\nAy, all of them at Bristol lost their heads.\n\nDUKE OF AUMERLE:\nWhere is the duke my father with his power?\n\nKING RICHARD II:\nNo matter where; of comfort no man speak:\nLet's talk of graves, of worms, and epitaphs;\nMake dust our paper and with rainy eyes\nWrite sorrow on the bosom of the earth,\nLet's choose executors and talk of wills:\nAnd yet not so, for what can we bequeath\nSave our deposed bodies to the ground?\nOur lands, our lives and all are Bolingbroke's,\nAnd nothing can we call our own but death\nAnd that small model of the barren earth\nWhich serves as paste and cover to our bones.\nFor God's sake, let us sit upon the ground\nAnd tell sad stories of the death of kings;\nHow some have been deposed; some slain in war,\nSome haunted by the ghosts they have deposed;\nSome poison'd by their wives: some sleeping kill'd;\nAll murder'd: for within the hollow crown\nThat rounds the mortal temples of a king\nKeeps Death his court and there the antic sits,\nScoffing his state and grinning at his pomp,\nAllowing him a breath, a little scene,\nTo monarchize, be fear'd and kill with looks,\nInfusing him with self and vain conceit,\nAs if this flesh which walls about our life,\nWere brass impregnable, and humour'd thus\nComes at the last and with a little pin\nBores through his castle wall, and farewell king!\nCover your heads and mock not flesh and blood\nWith solemn reverence: throw away respect,\nTradition, form and ceremonious duty,\nFor you have but mistook me all this while:\nI live with bread like you, feel want,\nTaste grief, need friends: subjected thus,\nHow can you say to me, I am a king?\n\nBISHOP OF CARLISLE:\nMy lord, wise men ne'er sit and wail their woes,\nBut presently prevent the ways to wail.\nTo fear the foe, since fear oppresseth strength,\nGives in your weakness strength unto your foe,\nAnd so your follies fight against yourself.\nFear and be slain; no worse can come to fight:\nAnd fight and die is death destroying death;\nWhere fearing dying pays death servile breath.\n\nDUKE OF AUMERLE:\nMy father hath a power; inquire of him\nAnd learn to make a body of a limb.\n\nKING RICHARD II:\nThou chidest me well: proud Bolingbroke, I come\nTo change blows with thee for our day of doom.\nThis ague fit of fear is over-blown;\nAn easy task it is to win our own.\nSay, Scroop, where lies our uncle with his power?\nSpeak sweetly, man, although thy looks be sour.\n\nSIR STEPHEN SCROOP:\nMen judge by the complexion of the sky\nThe state and inclination of the day:\nSo may you by my dull and heavy eye,\nMy tongue hath but a heavier tale to say.\nI play the torturer, by small and small\nTo lengthen out the worst that must be spoken:\nYour uncle York is join'd with Bolingbroke,\nAnd all your northern castles yielded up,\nAnd all your southern gentlemen in arms\nUpon his party.\n\nKING RICHARD II:\nThou hast said enough.\nBeshrew thee, cousin, which didst lead me forth\nOf that sweet way I was in to despair!\nWhat say you now? what comfort have we now?\nBy heaven, I'll hate him everlastingly\nThat bids me be of comfort any more.\nGo to Flint castle: there I'll pine away;\nA king, woe's slave, shall kingly woe obey.\nThat power I have, discharge; and let them go\nTo ear the land that hath some hope to grow,\nFor I have none: let no man speak again\nTo alter this, for counsel is but vain.\n\nDUKE OF AUMERLE:\nMy liege, one word.\n\nKING RICHARD II:\nHe does me double wrong\nThat wounds me with the flatteries of his tongue.\nDischarge my followers: let them hence away,\nFrom Richard's night to Bolingbroke's fair day.\n\nHENRY BOLINGBROKE:\nSo that by this intelligence we learn\nThe Welshmen are dispersed, and Salisbury\nIs gone to meet the king, who lately landed\nWith some few private friends upon this coast.\n\nNORTHUMBERLAND:\nThe news is very fair and good, my lord:\nRichard not far from hence hath hid his head.\n\nDUKE OF YORK:\nIt would beseem the Lord Northumberland\nTo say 'King Richard:' alack the heavy day\nWhen such a sacred king should hide his head.\n\nNORTHUMBERLAND:\nYour grace mistakes; only to be brief\nLeft I his title out.\n\nDUKE OF YORK:\nThe time hath been,\nWould you have been so brief with him, he would\nHave been so brief with you, to shorten you,\nFor taking so the head, your whole head's length.\n\nHENRY BOLINGBROKE:\nMistake not, uncle, further than you should.\n\nDUKE OF YORK:\nTake not, good cousin, further than you should.\nLest you mistake the heavens are o'er our heads.\n\nHENRY BOLINGBROKE:\nI know it, uncle, and oppose not myself\nAgainst their will. But who comes here?\nWelcome, Harry: what, will not this castle yield?\n\nHENRY PERCY:\nThe castle royally is mann'd, my lord,\nAgainst thy entrance.\n\nHENRY BOLINGBROKE:\nRoyally!\nWhy, it contains no king?\n\nHENRY PERCY:\nYes, my good lord,\nIt doth contain a king; King Richard lies\nWithin the limits of yon lime and stone:\nAnd with him are the Lord Aumerle, Lord Salisbury,\nSir Stephen Scroop, besides a clergyman\nOf holy reverence; who, I cannot learn.\n\nNORTHUMBERLAND:\nO, belike it is the Bishop of Carlisle.\n\nHENRY BOLINGBROKE:\nNoble lords,\nGo to the rude ribs of that ancient castle;\nThrough brazen trumpet send the breath of parley\nInto his ruin'd ears, and thus deliver:\nHenry Bolingbroke\nOn both his knees doth kiss King Richard's hand\nAnd sends allegiance and true faith of heart\nTo his most royal person, hither come\nEven at his feet to lay my arms and power,\nProvided that my banishment repeal'd\nAnd lands restored again be freely granted:\nIf not, I'll use the advantage of my power\nAnd lay the summer's dust with showers of blood\nRain'd from the wounds of slaughter'd Englishmen:\nThe which, how far off from the mind of Bolingbroke\nIt is, such crimson tempest should bedrench\nThe fresh green lap of fair King Richard's land,\nMy stooping duty tenderly shall show.\nGo, signify as much, while here we march\nUpon the grassy carpet of this plain.\nLet's march without the noise of threatening drum,\nThat from this castle's tatter'd battlements\nOur fair appointments may be well perused.\nMethinks King Richard and myself should meet\nWith no less terror than the elements\nOf fire and water, when their thundering shock\nAt meeting tears the cloudy cheeks of heaven.\nBe he the fire, I'll be the yielding water:\nThe rage be his, whilst on the earth I rain\nMy waters; on the earth, and not on him.\nMarch on, and mark King Richard how he looks.\nSee, see, King Richard doth himself appear,\nAs doth the blushing discontented sun\nFrom out the fiery portal of the east,\nWhen he perceives the envious clouds are bent\nTo dim his glory and to stain the track\nOf his bright passage to the occident.\n\nDUKE OF YORK:\nYet looks he like a king: behold, his eye,\nAs bright as is the eagle's, lightens forth\nControlling majesty: alack, alack, for woe,\nThat any harm should stain so fair a show!\n\nKING RICHARD II:\nWe are amazed; and thus long have we stood\nTo watch the fearful bending of thy knee,\nBecause we thought ourself thy lawful king:\nAnd if we be, how dare thy joints forget\nTo pay their awful duty to our presence?\nIf we be not, show us the hand of God\nThat hath dismissed us from our stewardship;\nFor well we know, no hand of blood and bone\nCan gripe the sacred handle of our sceptre,\nUnless he do profane, steal, or usurp.\nAnd though you think that all, as you have done,\nHave torn their souls by turning them from us,\nAnd we are barren and bereft of friends;\nYet know, my master, God omnipotent,\nIs mustering in his clouds on our behalf\nArmies of pestilence; and they shall strike\nYour children yet unborn and unbegot,\nThat lift your vassal hands against my head\nAnd threat the glory of my precious crown.\nTell Bolingbroke--for yond methinks he stands--\nThat every stride he makes upon my land\nIs dangerous treason: he is come to open\nThe purple testament of bleeding war;\nBut ere the crown he looks for live in peace,\nTen thousand bloody crowns of mothers' sons\nShall ill become the flower of England's face,\nChange the complexion of her maid-pale peace\nTo scarlet indignation and bedew\nHer pastures' grass with faithful English blood.\n\nNORTHUMBERLAND:\nThe king of heaven forbid our lord the king\nShould so with civil and uncivil arms\nBe rush'd upon! Thy thrice noble cousin\nHarry Bolingbroke doth humbly kiss thy hand;\nAnd by the honourable tomb he swears,\nThat stands upon your royal grandsire's bones,\nAnd by the royalties of both your bloods,\nCurrents that spring from one most gracious head,\nAnd by the buried hand of warlike Gaunt,\nAnd by the worth and honour of himself,\nComprising all that may be sworn or said,\nHis coming hither hath no further scope\nThan for his lineal royalties and to beg\nEnfranchisement immediate on his knees:\nWhich on thy royal party granted once,\nHis glittering arms he will commend to rust,\nHis barbed steeds to stables, and his heart\nTo faithful service of your majesty.\nThis swears he, as he is a prince, is just;\nAnd, as I am a gentleman, I credit him.\n\nKING RICHARD II:\nNorthumberland, say thus the king returns:\nHis noble cousin is right welcome hither;\nAnd all the number of his fair demands\nShall be accomplish'd without contradiction:\nWith all the gracious utterance thou hast\nSpeak to his gentle hearing kind commends.\nWe do debase ourselves, cousin, do we not,\nTo look so poorly and to speak so fair?\nShall we call back Northumberland, and send\nDefiance to the traitor, and so die?\n\nDUKE OF AUMERLE:\nNo, good my lord; let's fight with gentle words\nTill time lend friends and friends their helpful swords.\n\nKING RICHARD II:\nO God, O God! that e'er this tongue of mine,\nThat laid the sentence of dread banishment\nOn yon proud man, should take it off again\nWith words of sooth! O that I were as great\nAs is my grief, or lesser than my name!\nOr that I could forget what I have been,\nOr not remember what I must be now!\nSwell'st thou, proud heart? I'll give thee scope to beat,\nSince foes have scope to beat both thee and me.\n\nDUKE OF AUMERLE:\nNorthumberland comes back from Bolingbroke.\n\nKING RICHARD II:\nWhat must the king do now? must he submit?\nThe king shall do it: must he be deposed?\nThe king shall be contented: must he lose\nThe name of king? o' God's name, let it go:\nI'll give my jewels for a set of beads,\nMy gorgeous palace for a hermitage,\nMy gay apparel for an almsman's gown,\nMy figured goblets for a dish of wood,\nMy sceptre for a palmer's walking staff,\nMy subjects for a pair of carved saints\nAnd my large kingdom for a little grave,\nA little little grave, an obscure grave;\nOr I'll be buried in the king's highway,\nSome way of common trade, where subjects' feet\nMay hourly trample on their sovereign's head;\nFor on my heart they tread now whilst I live;\nAnd buried once, why not upon my head?\nAumerle, thou weep'st, my tender-hearted cousin!\nWe'll make foul weather with despised tears;\nOur sighs and they shall lodge the summer corn,\nAnd make a dearth in this revolting land.\nOr shall we play the wantons with our woes,\nAnd make some pretty match with shedding tears?\nAs thus, to drop them still upon one place,\nTill they have fretted us a pair of graves\nWithin the earth; and, therein laid,--there lies\nTwo kinsmen digg'd their graves with weeping eyes.\nWould not this ill do well? Well, well, I see\nI talk but idly, and you laugh at me.\nMost mighty prince, my Lord Northumberland,\nWhat says King Bolingbroke? will his majesty\nGive Richard leave to live till Richard die?\nYou make a leg, and Bolingbroke says ay.\n\nNORTHUMBERLAND:\nMy lord, in the base court he doth attend\nTo speak with you; may it please you to come down.\n\nKING RICHARD II:\nDown, down I come; like glistering Phaethon,\nWanting the manage of unruly jades.\nIn the base court? Base court, where kings grow base,\nTo come at traitors' calls and do them grace.\nIn the base court? Come down? Down, court!\ndown, king!\nFor night-owls shriek where mounting larks\nshould sing.\n\nHENRY BOLINGBROKE:\nWhat says his majesty?\n\nNORTHUMBERLAND:\nSorrow and grief of heart\nMakes him speak fondly, like a frantic man\nYet he is come.\n\nHENRY BOLINGBROKE:\nStand all apart,\nAnd show fair duty to his majesty.\nMy gracious lord,--\n\nKING RICHARD II:\nFair cousin, you debase your princely knee\nTo make the base earth proud with kissing it:\nMe rather had my heart might feel your love\nThan my unpleased eye see your courtesy.\nUp, cousin, up; your heart is up, I know,\nThus high at least, although your knee be low.\n\nHENRY BOLINGBROKE:\nMy gracious lord, I come but for mine own.\n\nKING RICHARD II:\nYour own is yours, and I am yours, and all.\n\nHENRY BOLINGBROKE:\nSo far be mine, my most redoubted lord,\nAs my true service shall deserve your love.\n\nKING RICHARD II:\nWell you deserve: they well deserve to have,\nThat know the strong'st and surest way to get.\nUncle, give me your hands: nay, dry your eyes;\nTears show their love, but want their remedies.\nCousin, I am too young to be your father,\nThough you are old enough to be my heir.\nWhat you will have, I'll give, and willing too;\nFor do we must what force will have us do.\nSet on towards London, cousin, is it so?\n\nHENRY BOLINGBROKE:\nYea, my good lord.\n\nKING RICHARD II:\nThen I must not say no.\n\nQUEEN:\nWhat sport shall we devise here in this garden,\nTo drive away the heavy thought of care?\n\nLady:\nMadam, we'll play at bowls.\n\nQUEEN:\n'Twill make me think the world is full of rubs,\nAnd that my fortune rubs against the bias.\n\nLady:\nMadam, we'll dance.\n\nQUEEN:\nMy legs can keep no measure in delight,\nWhen my poor heart no measure keeps in grief:\nTherefore, no dancing, girl; some other sport.\n\nLady:\nMadam, we'll tell tales.\n\nQUEEN:\nOf sorrow or of joy?\n\nLady:\nOf either, madam.\n\nQUEEN:\nOf neither, girl:\nFor of joy, being altogether wanting,\nIt doth remember me the more of sorrow;\nOr if of grief, being altogether had,\nIt adds more sorrow to my want of joy:\nFor what I have I need not to repeat;\nAnd what I want it boots not to complain.\n\nLady:\nMadam, I'll sing.\n\nQUEEN:\n'Tis well that thou hast cause\nBut thou shouldst please me better, wouldst thou weep.\n\nLady:\nI could weep, madam, would it do you good.\n\nQUEEN:\nAnd I could sing, would weeping do me good,\nAnd never borrow any tear of thee.\nBut stay, here come the gardeners:\nLet's step into the shadow of these trees.\nMy wretchedness unto a row of pins,\nThey'll talk of state; for every one doth so\nAgainst a change; woe is forerun with woe.\n\nGardener:\nGo, bind thou up yon dangling apricocks,\nWhich, like unruly children, make their sire\nStoop with oppression of their prodigal weight:\nGive some supportance to the bending twigs.\nGo thou, and like an executioner,\nCut off the heads of too fast growing sprays,\nThat look too lofty in our commonwealth:\nAll must be even in our government.\nYou thus employ'd, I will go root away\nThe noisome weeds, which without profit suck\nThe soil's fertility from wholesome flowers.\n\nServant:\nWhy should we in the compass of a pale\nKeep law and form and due proportion,\nShowing, as in a model, our firm estate,\nWhen our sea-walled garden, the whole land,\nIs full of weeds, her fairest flowers choked up,\nHer fruit-trees all upturned, her hedges ruin'd,\nHer knots disorder'd and her wholesome herbs\nSwarming with caterpillars?\n\nGardener:\nHold thy peace:\nHe that hath suffer'd this disorder'd spring\nHath now himself met with the fall of leaf:\nThe weeds which his broad-spreading leaves did shelter,\nThat seem'd in eating him to hold him up,\nAre pluck'd up root and all by Bolingbroke,\nI mean the Earl of Wiltshire, Bushy, Green.\n\nServant:\nWhat, are they dead?\n\nGardener:\nThey are; and Bolingbroke\nHath seized the wasteful king. O, what pity is it\nThat he had not so trimm'd and dress'd his land\nAs we this garden! We at time of year\nDo wound the bark, the skin of our fruit-trees,\nLest, being over-proud in sap and blood,\nWith too much riches it confound itself:\nHad he done so to great and growing men,\nThey might have lived to bear and he to taste\nTheir fruits of duty: superfluous branches\nWe lop away, that bearing boughs may live:\nHad he done so, himself had borne the crown,\nWhich waste of idle hours hath quite thrown down.\n\nServant:\nWhat, think you then the king shall be deposed?\n\nGardener:\nDepress'd he is already, and deposed\n'Tis doubt he will be: letters came last night\nTo a dear friend of the good Duke of York's,\nThat tell black tidings.\n\nQUEEN:\nO, I am press'd to death through want of speaking!\nThou, old Adam's likeness, set to dress this garden,\nHow dares thy harsh rude tongue sound this unpleasing news?\nWhat Eve, what serpent, hath suggested thee\nTo make a second fall of cursed man?\nWhy dost thou say King Richard is deposed?\nDarest thou, thou little better thing than earth,\nDivine his downfall? Say, where, when, and how,\nCamest thou by this ill tidings? speak, thou wretch.\n\nGardener:\nPardon me, madam: little joy have I\nTo breathe this news; yet what I say is true.\nKing Richard, he is in the mighty hold\nOf Bolingbroke: their fortunes both are weigh'd:\nIn your lord's scale is nothing but himself,\nAnd some few vanities that make him light;\nBut in the balance of great Bolingbroke,\nBesides himself, are all the English peers,\nAnd with that odds he weighs King Richard down.\nPost you to London, and you will find it so;\nI speak no more than every one doth know.\n\nQUEEN:\nNimble mischance, that art so light of foot,\nDoth not thy embassage belong to me,\nAnd am I last that knows it? O, thou think'st\nTo serve me last, that I may longest keep\nThy sorrow in my breast. Come, ladies, go,\nTo meet at London London's king in woe.\nWhat, was I born to this, that my sad look\nShould grace the triumph of great Bolingbroke?\nGardener, for telling me these news of woe,\nPray God the plants thou graft'st may never grow.\n\nGARDENER:\nPoor queen! so that thy state might be no worse,\nI would my skill were subject to thy curse.\nHere did she fall a tear; here in this place\nI'll set a bank of rue, sour herb of grace:\nRue, even for ruth, here shortly shall be seen,\nIn the remembrance of a weeping queen.\n\nHENRY BOLINGBROKE:\nCall forth Bagot.\nNow, Bagot, freely speak thy mind;\nWhat thou dost know of noble Gloucester's death,\nWho wrought it with the king, and who perform'd\nThe bloody office of his timeless end.\n\nBAGOT:\nThen set before my face the Lord Aumerle.\n\nHENRY BOLINGBROKE:\nCousin, stand forth, and look upon that man.\n\nBAGOT:\nMy Lord Aumerle, I know your daring tongue\nScorns to unsay what once it hath deliver'd.\nIn that dead time when Gloucester's death was plotted,\nI heard you say, 'Is not my arm of length,\nThat reacheth from the restful English court\nAs far as Calais, to mine uncle's head?'\nAmongst much other talk, that very time,\nI heard you say that you had rather refuse\nThe offer of an hundred thousand crowns\nThan Bolingbroke's return to England;\nAdding withal how blest this land would be\nIn this your cousin's death.\n\nDUKE OF AUMERLE:\nPrinces and noble lords,\nWhat answer shall I make to this base man?\nShall I so much dishonour my fair stars,\nOn equal terms to give him chastisement?\nEither I must, or have mine honour soil'd\nWith the attainder of his slanderous lips.\nThere is my gage, the manual seal of death,\nThat marks thee out for hell: I say, thou liest,\nAnd will maintain what thou hast said is false\nIn thy heart-blood, though being all too base\nTo stain the temper of my knightly sword.\n\nHENRY BOLINGBROKE:\nBagot, forbear; thou shalt not take it up.\n\nDUKE OF AUMERLE:\nExcepting one, I would he were the best\nIn all this presence that hath moved me so.\n\nLORD FITZWATER:\nIf that thy valour stand on sympathy,\nThere is my gage, Aumerle, in gage to thine:\nBy that fair sun which shows me where thou stand'st,\nI heard thee say, and vauntingly thou spakest it\nThat thou wert cause of noble Gloucester's death.\nIf thou deny'st it twenty times, thou liest;\nAnd I will turn thy falsehood to thy heart,\nWhere it was forged, with my rapier's point.\n\nDUKE OF AUMERLE:\nThou darest not, coward, live to see that day.\n\nLORD FITZWATER:\nNow by my soul, I would it were this hour.\n\nDUKE OF AUMERLE:\nFitzwater, thou art damn'd to hell for this.\n\nHENRY PERCY:\nAumerle, thou liest; his honour is as true\nIn this appeal as thou art all unjust;\nAnd that thou art so, there I throw my gage,\nTo prove it on thee to the extremest point\nOf mortal breathing: seize it, if thou darest.\n\nDUKE OF AUMERLE:\nAn if I do not, may my hands rot off\nAnd never brandish more revengeful steel\nOver the glittering helmet of my foe!\n\nLord:\nI task the earth to the like, forsworn Aumerle;\nAnd spur thee on with full as many lies\nAs may be holloa'd in thy treacherous ear\nFrom sun to sun: there is my honour's pawn;\nEngage it to the trial, if thou darest.\n\nDUKE OF AUMERLE:\nWho sets me else? by heaven, I'll throw at all:\nI have a thousand spirits in one breast,\nTo answer twenty thousand such as you.\n\nDUKE OF SURREY:\nMy Lord Fitzwater, I do remember well\nThe very time Aumerle and you did talk.\n\nLORD FITZWATER:\n'Tis very true: you were in presence then;\nAnd you can witness with me this is true.\n\nDUKE OF SURREY:\nAs false, by heaven, as heaven itself is true.\n\nLORD FITZWATER:\nSurrey, thou liest.\n\nDUKE OF SURREY:\nDishonourable boy!\nThat lie shall lie so heavy on my sword,\nThat it shall render vengeance and revenge\nTill thou the lie-giver and that lie do lie\nIn earth as quiet as thy father's skull:\nIn proof whereof, there is my honour's pawn;\nEngage it to the trial, if thou darest.\n\nLORD FITZWATER:\nHow fondly dost thou spur a forward horse!\nIf I dare eat, or drink, or breathe, or live,\nI dare meet Surrey in a wilderness,\nAnd spit upon him, whilst I say he lies,\nAnd lies, and lies: there is my bond of faith,\nTo tie thee to my strong correction.\nAs I intend to thrive in this new world,\nAumerle is guilty of my true appeal:\nBesides, I heard the banish'd Norfolk say\nThat thou, Aumerle, didst send two of thy men\nTo execute the noble duke at Calais.\n\nDUKE OF AUMERLE:\nSome honest Christian trust me with a gage\nThat Norfolk lies: here do I throw down this,\nIf he may be repeal'd, to try his honour.\n\nHENRY BOLINGBROKE:\nThese differences shall all rest under gage\nTill Norfolk be repeal'd: repeal'd he shall be,\nAnd, though mine enemy, restored again\nTo all his lands and signories: when he's return'd,\nAgainst Aumerle we will enforce his trial.\n\nBISHOP OF CARLISLE:\nThat honourable day shall ne'er be seen.\nMany a time hath banish'd Norfolk fought\nFor Jesu Christ in glorious Christian field,\nStreaming the ensign of the Christian cross\nAgainst black pagans, Turks, and Saracens:\nAnd toil'd with works of war, retired himself\nTo Italy; and there at Venice gave\nHis body to that pleasant country's earth,\nAnd his pure soul unto his captain Christ,\nUnder whose colours he had fought so long.\n\nHENRY BOLINGBROKE:\nWhy, bishop, is Norfolk dead?\n\nBISHOP OF CARLISLE:\nAs surely as I live, my lord.\n\nHENRY BOLINGBROKE:\nSweet peace conduct his sweet soul to the bosom\nOf good old Abraham! Lords appellants,\nYour differences shall all rest under gage\nTill we assign you to your days of trial.\n\nDUKE OF YORK:\nGreat Duke of Lancaster, I come to thee\nFrom plume-pluck'd Richard; who with willing soul\nAdopts thee heir, and his high sceptre yields\nTo the possession of thy royal hand:\nAscend his throne, descending now from him;\nAnd long live Henry, fourth of that name!\n\nHENRY BOLINGBROKE:\nIn God's name, I'll ascend the regal throne.\n\nBISHOP OF CARLISLE:\nMarry. God forbid!\nWorst in this royal presence may I speak,\nYet best beseeming me to speak the truth.\nWould God that any in this noble presence\nWere enough noble to be upright judge\nOf noble Richard! then true noblesse would\nLearn him forbearance from so foul a wrong.\nWhat subject can give sentence on his king?\nAnd who sits here that is not Richard's subject?\nThieves are not judged but they are by to hear,\nAlthough apparent guilt be seen in them;\nAnd shall the figure of God's majesty,\nHis captain, steward, deputy-elect,\nAnointed, crowned, planted many years,\nBe judged by subject and inferior breath,\nAnd he himself not present? O, forfend it, God,\nThat in a Christian climate souls refined\nShould show so heinous, black, obscene a deed!\nI speak to subjects, and a subject speaks,\nStirr'd up by God, thus boldly for his king:\nMy Lord of Hereford here, whom you call king,\nIs a foul traitor to proud Hereford's king:\nAnd if you crown him, let me prophesy:\nThe blood of English shall manure the ground,\nAnd future ages groan for this foul act;\nPeace shall go sleep with Turks and infidels,\nAnd in this seat of peace tumultuous wars\nShall kin with kin and kind with kind confound;\nDisorder, horror, fear and mutiny\nShall here inhabit, and this land be call'd\nThe field of Golgotha and dead men's skulls.\nO, if you raise this house against this house,\nIt will the woefullest division prove\nThat ever fell upon this cursed earth.\nPrevent it, resist it, let it not be so,\nLest child, child's children, cry against you woe!\n\nNORTHUMBERLAND:\nWell have you argued, sir; and, for your pains,\nOf capital treason we arrest you here.\nMy Lord of Westminster, be it your charge\nTo keep him safely till his day of trial.\nMay it please you, lords, to grant the commons' suit.\n\nHENRY BOLINGBROKE:\nFetch hither Richard, that in common view\nHe may surrender; so we shall proceed\nWithout suspicion.\n\nDUKE OF YORK:\nI will be his conduct.\n\nHENRY BOLINGBROKE:\nLords, you that here are under our arrest,\nProcure your sureties for your days of answer.\nLittle are we beholding to your love,\nAnd little look'd for at your helping hands.\n\nKING RICHARD II:\nAlack, why am I sent for to a king,\nBefore I have shook off the regal thoughts\nWherewith I reign'd? I hardly yet have learn'd\nTo insinuate, flatter, bow, and bend my limbs:\nGive sorrow leave awhile to tutor me\nTo this submission. Yet I well remember\nThe favours of these men: were they not mine?\nDid they not sometime cry, 'all hail!' to me?\nSo Judas did to Christ: but he, in twelve,\nFound truth in all but one: I, in twelve thousand, none.\nGod save the king! Will no man say amen?\nAm I both priest and clerk? well then, amen.\nGod save the king! although I be not he;\nAnd yet, amen, if heaven do think him me.\nTo do what service am I sent for hither?\n\nDUKE OF YORK:\nTo do that office of thine own good will\nWhich tired majesty did make thee offer,\nThe resignation of thy state and crown\nTo Henry Bolingbroke.\n\nKING RICHARD II:\nGive me the crown. Here, cousin, seize the crown;\nHere cousin:\nOn this side my hand, and on that side yours.\nNow is this golden crown like a deep well\nThat owes two buckets, filling one another,\nThe emptier ever dancing in the air,\nThe other down, unseen and full of water:\nThat bucket down and full of tears am I,\nDrinking my griefs, whilst you mount up on high.\n\nHENRY BOLINGBROKE:\nI thought you had been willing to resign.\n\nKING RICHARD II:\nMy crown I am; but still my griefs are mine:\nYou may my glories and my state depose,\nBut not my griefs; still am I king of those.\n\nHENRY BOLINGBROKE:\nPart of your cares you give me with your crown.\n\nKING RICHARD II:\nYour cares set up do not pluck my cares down.\nMy care is loss of care, by old care done;\nYour care is gain of care, by new care won:\nThe cares I give I have, though given away;\nThey tend the crown, yet still with me they stay.\n\nHENRY BOLINGBROKE:\nAre you contented to resign the crown?\n\nKING RICHARD II:\nAy, no; no, ay; for I must nothing be;\nTherefore no no, for I resign to thee.\nNow mark me, how I will undo myself;\nI give this heavy weight from off my head\nAnd this unwieldy sceptre from my hand,\nThe pride of kingly sway from out my heart;\nWith mine own tears I wash away my balm,\nWith mine own hands I give away my crown,\nWith mine own tongue deny my sacred state,\nWith mine own breath release all duty's rites:\nAll pomp and majesty I do forswear;\nMy manors, rents, revenues I forego;\nMy acts, decrees, and statutes I deny:\nGod pardon all oaths that are broke to me!\nGod keep all vows unbroke that swear to thee!\nMake me, that nothing have, with nothing grieved,\nAnd thou with all pleased, that hast all achieved!\nLong mayst thou live in Richard's seat to sit,\nAnd soon lie Richard in an earthly pit!\nGod save King Harry, unking'd Richard says,\nAnd send him many years of sunshine days!\nWhat more remains?\n\nNORTHUMBERLAND:\nNo more, but that you read\nThese accusations and these grievous crimes\nCommitted by your person and your followers\nAgainst the state and profit of this land;\nThat, by confessing them, the souls of men\nMay deem that you are worthily deposed.\n\nKING RICHARD II:\nMust I do so? and must I ravel out\nMy weaved-up folly? Gentle Northumberland,\nIf thy offences were upon record,\nWould it not shame thee in so fair a troop\nTo read a lecture of them? If thou wouldst,\nThere shouldst thou find one heinous article,\nContaining the deposing of a king\nAnd cracking the strong warrant of an oath,\nMark'd with a blot, damn'd in the book of heaven:\nNay, all of you that stand and look upon,\nWhilst that my wretchedness doth bait myself,\nThough some of you with Pilate wash your hands\nShowing an outward pity; yet you Pilates\nHave here deliver'd me to my sour cross,\nAnd water cannot wash away your sin.\n\nNORTHUMBERLAND:\nMy lord, dispatch; read o'er these articles.\n\nKING RICHARD II:\nMine eyes are full of tears, I cannot see:\nAnd yet salt water blinds them not so much\nBut they can see a sort of traitors here.\nNay, if I turn mine eyes upon myself,\nI find myself a traitor with the rest;\nFor I have given here my soul's consent\nTo undeck the pompous body of a king;\nMade glory base and sovereignty a slave,\nProud majesty a subject, state a peasant.\n\nNORTHUMBERLAND:\nMy lord,--\n\nKING RICHARD II:\nNo lord of thine, thou haught insulting man,\nNor no man's lord; I have no name, no title,\nNo, not that name was given me at the font,\nBut 'tis usurp'd: alack the heavy day,\nThat I have worn so many winters out,\nAnd know not now what name to call myself!\nO that I were a mockery king of snow,\nStanding before the sun of Bolingbroke,\nTo melt myself away in water-drops!\nGood king, great king, and yet not greatly good,\nAn if my word be sterling yet in England,\nLet it command a mirror hither straight,\nThat it may show me what a face I have,\nSince it is bankrupt of his majesty.\n\nHENRY BOLINGBROKE:\nGo some of you and fetch a looking-glass.\n\nNORTHUMBERLAND:\nRead o'er this paper while the glass doth come.\n\nKING RICHARD II:\nFiend, thou torment'st me ere I come to hell!\n\nHENRY BOLINGBROKE:\nUrge it no more, my Lord Northumberland.\n\nNORTHUMBERLAND:\nThe commons will not then be satisfied.\n\nKING RICHARD II:\nThey shall be satisfied: I'll read enough,\nWhen I do see the very book indeed\nWhere all my sins are writ, and that's myself.\nGive me the glass, and therein will I read.\nNo deeper wrinkles yet? hath sorrow struck\nSo many blows upon this face of mine,\nAnd made no deeper wounds? O flattering glass,\nLike to my followers in prosperity,\nThou dost beguile me! Was this face the face\nThat every day under his household roof\nDid keep ten thousand men? was this the face\nThat, like the sun, did make beholders wink?\nWas this the face that faced so many follies,\nAnd was at last out-faced by Bolingbroke?\nA brittle glory shineth in this face:\nAs brittle as the glory is the face;\nFor there it is, crack'd in a hundred shivers.\nMark, silent king, the moral of this sport,\nHow soon my sorrow hath destroy'd my face.\n\nHENRY BOLINGBROKE:\nThe shadow of your sorrow hath destroy'd\nThe shadow or your face.\n\nKING RICHARD II:\nSay that again.\nThe shadow of my sorrow! ha! let's see:\n'Tis very true, my grief lies all within;\nAnd these external manners of laments\nAre merely shadows to the unseen grief\nThat swells with silence in the tortured soul;\nThere lies the substance: and I thank thee, king,\nFor thy great bounty, that not only givest\nMe cause to wail but teachest me the way\nHow to lament the cause. I'll beg one boon,\nAnd then be gone and trouble you no more.\nShall I obtain it?\n\nHENRY BOLINGBROKE:\nName it, fair cousin.\n\nKING RICHARD II:\n'Fair cousin'? I am greater than a king:\nFor when I was a king, my flatterers\nWere then but subjects; being now a subject,\nI have a king here to my flatterer.\nBeing so great, I have no need to beg.\n\nHENRY BOLINGBROKE:\nYet ask.\n\nKING RICHARD II:\nAnd shall I have?\n\nHENRY BOLINGBROKE:\nYou shall.\n\nKING RICHARD II:\nThen give me leave to go.\n\nHENRY BOLINGBROKE:\nWhither?\n\nKING RICHARD II:\nWhither you will, so I were from your sights.\n\nHENRY BOLINGBROKE:\nGo, some of you convey him to the Tower.\n\nKING RICHARD II:\nO, good! convey? conveyers are you all,\nThat rise thus nimbly by a true king's fall.\n\nHENRY BOLINGBROKE:\nOn Wednesday next we solemnly set down\nOur coronation: lords, prepare yourselves.\n\nAbbot:\nA woeful pageant have we here beheld.\n\nBISHOP OF CARLISLE:\nThe woe's to come; the children yet unborn.\nShall feel this day as sharp to them as thorn.\n\nDUKE OF AUMERLE:\nYou holy clergymen, is there no plot\nTo rid the realm of this pernicious blot?\n\nAbbot:\nMy lord,\nBefore I freely speak my mind herein,\nYou shall not only take the sacrament\nTo bury mine intents, but also to effect\nWhatever I shall happen to devise.\nI see your brows are full of discontent,\nYour hearts of sorrow and your eyes of tears:\nCome home with me to supper; and I'll lay\nA plot shall show us all a merry day.\n\nQUEEN:\nThis way the king will come; this is the way\nTo Julius Caesar's ill-erected tower,\nTo whose flint bosom my condemned lord\nIs doom'd a prisoner by proud Bolingbroke:\nHere let us rest, if this rebellious earth\nHave any resting for her true king's queen.\nBut soft, but see, or rather do not see,\nMy fair rose wither: yet look up, behold,\nThat you in pity may dissolve to dew,\nAnd wash him fresh again with true-love tears.\nAh, thou, the model where old Troy did stand,\nThou map of honour, thou King Richard's tomb,\nAnd not King Richard; thou most beauteous inn,\nWhy should hard-favour'd grief be lodged in thee,\nWhen triumph is become an alehouse guest?\n\nKING RICHARD II:\nJoin not with grief, fair woman, do not so,\nTo make my end too sudden: learn, good soul,\nTo think our former state a happy dream;\nFrom which awaked, the truth of what we are\nShows us but this: I am sworn brother, sweet,\nTo grim Necessity, and he and I\nWill keep a league till death. Hie thee to France\nAnd cloister thee in some religious house:\nOur holy lives must win a new world's crown,\nWhich our profane hours here have stricken down.\n\nQUEEN:\nWhat, is my Richard both in shape and mind\nTransform'd and weaken'd? hath Bolingbroke deposed\nThine intellect? hath he been in thy heart?\nThe lion dying thrusteth forth his paw,\nAnd wounds the earth, if nothing else, with rage\nTo be o'erpower'd; and wilt thou, pupil-like,\nTake thy correction mildly, kiss the rod,\nAnd fawn on rage with base humility,\nWhich art a lion and a king of beasts?\n\nKING RICHARD II:\nA king of beasts, indeed; if aught but beasts,\nI had been still a happy king of men.\nGood sometime queen, prepare thee hence for France:\nThink I am dead and that even here thou takest,\nAs from my death-bed, thy last living leave.\nIn winter's tedious nights sit by the fire\nWith good old folks and let them tell thee tales\nOf woeful ages long ago betid;\nAnd ere thou bid good night, to quit their griefs,\nTell thou the lamentable tale of me\nAnd send the hearers weeping to their beds:\nFor why, the senseless brands will sympathize\nThe heavy accent of thy moving tongue\nAnd in compassion weep the fire out;\nAnd some will mourn in ashes, some coal-black,\nFor the deposing of a rightful king.\n\nNORTHUMBERLAND:\nMy lord, the mind of Bolingbroke is changed:\nYou must to Pomfret, not unto the Tower.\nAnd, madam, there is order ta'en for you;\nWith all swift speed you must away to France.\n\nKING RICHARD II:\nNorthumberland, thou ladder wherewithal\nThe mounting Bolingbroke ascends my throne,\nThe time shall not be many hours of age\nMore than it is ere foul sin gathering head\nShalt break into corruption: thou shalt think,\nThough he divide the realm and give thee half,\nIt is too little, helping him to all;\nAnd he shall think that thou, which know'st the way\nTo plant unrightful kings, wilt know again,\nBeing ne'er so little urged, another way\nTo pluck him headlong from the usurped throne.\nThe love of wicked men converts to fear;\nThat fear to hate, and hate turns one or both\nTo worthy danger and deserved death.\n\nNORTHUMBERLAND:\nMy guilt be on my head, and there an end.\nTake leave and part; for you must part forthwith.\n\nKING RICHARD II:\nDoubly divorced! Bad men, you violate\nA twofold marriage, 'twixt my crown and me,\nAnd then betwixt me and my married wife.\nLet me unkiss the oath 'twixt thee and me;\nAnd yet not so, for with a kiss 'twas made.\nPart us, Northumberland; I toward the north,\nWhere shivering cold and sickness pines the clime;\nMy wife to France: from whence, set forth in pomp,\nShe came adorned hither like sweet May,\nSent back like Hallowmas or short'st of day.\n\nQUEEN:\nAnd must we be divided? must we part?\n\nKING RICHARD II:\nAy, hand from hand, my love, and heart from heart.\n\nQUEEN:\nBanish us both and send the king with me.\n\nNORTHUMBERLAND:\nThat were some love but little policy.\n\nQUEEN:\nThen whither he goes, thither let me go.\n\nKING RICHARD II:\nSo two, together weeping, make one woe.\nWeep thou for me in France, I for thee here;\nBetter far off than near, be ne'er the near.\nGo, count thy way with sighs; I mine with groans.\n\nQUEEN:\nSo longest way shall have the longest moans.\n\nKING RICHARD II:\nTwice for one step I'll groan, the way being short,\nAnd piece the way out with a heavy heart.\nCome, come, in wooing sorrow let's be brief,\nSince, wedding it, there is such length in grief;\nOne kiss shall stop our mouths, and dumbly part;\nThus give I mine, and thus take I thy heart.\n\nQUEEN:\nGive me mine own again; 'twere no good part\nTo take on me to keep and kill thy heart.\nSo, now I have mine own again, be gone,\nThat I might strive to kill it with a groan.\n\nKING RICHARD II:\nWe make woe wanton with this fond delay:\nOnce more, adieu; the rest let sorrow say.\n\nDUCHESS OF YORK:\nMy lord, you told me you would tell the rest,\nWhen weeping made you break the story off,\nof our two cousins coming into London.\n\nDUKE OF YORK:\nWhere did I leave?\n\nDUCHESS OF YORK:\nAt that sad stop, my lord,\nWhere rude misgovern'd hands from windows' tops\nThrew dust and rubbish on King Richard's head.\n\nDUKE OF YORK:\nThen, as I said, the duke, great Bolingbroke,\nMounted upon a hot and fiery steed\nWhich his aspiring rider seem'd to know,\nWith slow but stately pace kept on his course,\nWhilst all tongues cried 'God save thee,\nBolingbroke!'\nYou would have thought the very windows spake,\nSo many greedy looks of young and old\nThrough casements darted their desiring eyes\nUpon his visage, and that all the walls\nWith painted imagery had said at once\n'Jesu preserve thee! welcome, Bolingbroke!'\nWhilst he, from the one side to the other turning,\nBareheaded, lower than his proud steed's neck,\nBespake them thus: 'I thank you, countrymen:'\nAnd thus still doing, thus he pass'd along.\n\nDUCHESS OF YORK:\nAlack, poor Richard! where rode he the whilst?\n\nDUKE OF YORK:\nAs in a theatre, the eyes of men,\nAfter a well-graced actor leaves the stage,\nAre idly bent on him that enters next,\nThinking his prattle to be tedious;\nEven so, or with much more contempt, men's eyes\nDid scowl on gentle Richard; no man cried 'God save him!'\nNo joyful tongue gave him his welcome home:\nBut dust was thrown upon his sacred head:\nWhich with such gentle sorrow he shook off,\nHis face still combating with tears and smiles,\nThe badges of his grief and patience,\nThat had not God, for some strong purpose, steel'd\nThe hearts of men, they must perforce have melted\nAnd barbarism itself have pitied him.\nBut heaven hath a hand in these events,\nTo whose high will we bound our calm contents.\nTo Bolingbroke are we sworn subjects now,\nWhose state and honour I for aye allow.\n\nDUCHESS OF YORK:\nHere comes my son Aumerle.\n\nDUKE OF YORK:\nAumerle that was;\nBut that is lost for being Richard's friend,\nAnd, madam, you must call him Rutland now:\nI am in parliament pledge for his truth\nAnd lasting fealty to the new-made king.\n\nDUCHESS OF YORK:\nWelcome, my son: who are the violets now\nThat strew the green lap of the new come spring?\n\nDUKE OF AUMERLE:\nMadam, I know not, nor I greatly care not:\nGod knows I had as lief be none as one.\n\nDUKE OF YORK:\nWell, bear you well in this new spring of time,\nLest you be cropp'd before you come to prime.\nWhat news from Oxford? hold those justs and triumphs?\n\nDUKE OF AUMERLE:\nFor aught I know, my lord, they do.\n\nDUKE OF YORK:\nYou will be there, I know.\n\nDUKE OF AUMERLE:\nIf God prevent not, I purpose so.\n\nDUKE OF YORK:\nWhat seal is that, that hangs without thy bosom?\nYea, look'st thou pale? let me see the writing.\n\nDUKE OF AUMERLE:\nMy lord, 'tis nothing.\n\nDUKE OF YORK:\nNo matter, then, who see it;\nI will be satisfied; let me see the writing.\n\nDUKE OF AUMERLE:\nI do beseech your grace to pardon me:\nIt is a matter of small consequence,\nWhich for some reasons I would not have seen.\n\nDUKE OF YORK:\nWhich for some reasons, sir, I mean to see.\nI fear, I fear,--\n\nDUCHESS OF YORK:\nWhat should you fear?\n'Tis nothing but some bond, that he is enter'd into\nFor gay apparel 'gainst the triumph day.\n\nDUKE OF YORK:\nBound to himself! what doth he with a bond\nThat he is bound to? Wife, thou art a fool.\nBoy, let me see the writing.\n\nDUKE OF AUMERLE:\nI do beseech you, pardon me; I may not show it.\n\nDUKE OF YORK:\nI will be satisfied; let me see it, I say.\nTreason! foul treason! Villain! traitor! slave!\n\nDUCHESS OF YORK:\nWhat is the matter, my lord?\n\nDUKE OF YORK:\nHo! who is within there?\nSaddle my horse.\nGod for his mercy, what treachery is here!\n\nDUCHESS OF YORK:\nWhy, what is it, my lord?\n\nDUKE OF YORK:\nGive me my boots, I say; saddle my horse.\nNow, by mine honour, by my life, by my troth,\nI will appeach the villain.\n\nDUCHESS OF YORK:\nWhat is the matter?\n\nDUKE OF YORK:\nPeace, foolish woman.\n\nDUCHESS OF YORK:\nI will not peace. What is the matter, Aumerle.\n\nDUKE OF AUMERLE:\nGood mother, be content; it is no more\nThan my poor life must answer.\n\nDUCHESS OF YORK:\nThy life answer!\n\nDUKE OF YORK:\nBring me my boots: I will unto the king.\n\nDUCHESS OF YORK:\nStrike him, Aumerle. Poor boy, thou art amazed.\nHence, villain! never more come in my sight.\n\nDUKE OF YORK:\nGive me my boots, I say.\n\nDUCHESS OF YORK:\nWhy, York, what wilt thou do?\nWilt thou not hide the trespass of thine own?\nHave we more sons? or are we like to have?\nIs not my teeming date drunk up with time?\nAnd wilt thou pluck my fair son from mine age,\nAnd rob me of a happy mother's name?\nIs he not like thee? is he not thine own?\n\nDUKE OF YORK:\nThou fond mad woman,\nWilt thou conceal this dark conspiracy?\nA dozen of them here have ta'en the sacrament,\nAnd interchangeably set down their hands,\nTo kill the king at Oxford.\n\nDUCHESS OF YORK:\nHe shall be none;\nWe'll keep him here: then what is that to him?\n\nDUKE OF YORK:\nAway, fond woman! were he twenty times my son,\nI would appeach him.\n\nDUCHESS OF YORK:\nHadst thou groan'd for him\nAs I have done, thou wouldst be more pitiful.\nBut now I know thy mind; thou dost suspect\nThat I have been disloyal to thy bed,\nAnd that he is a bastard, not thy son:\nSweet York, sweet husband, be not of that mind:\nHe is as like thee as a man may be,\nNot like to me, or any of my kin,\nAnd yet I love him.\n\nDUKE OF YORK:\nMake way, unruly woman!\n\nDUCHESS OF YORK:\nAfter, Aumerle! mount thee upon his horse;\nSpur post, and get before him to the king,\nAnd beg thy pardon ere he do accuse thee.\nI'll not be long behind; though I be old,\nI doubt not but to ride as fast as York:\nAnd never will I rise up from the ground\nTill Bolingbroke have pardon'd thee. Away, be gone!\n\nHENRY BOLINGBROKE:\nCan no man tell me of my unthrifty son?\n'Tis full three months since I did see him last;\nIf any plague hang over us, 'tis he.\nI would to God, my lords, he might be found:\nInquire at London, 'mongst the taverns there,\nFor there, they say, he daily doth frequent,\nWith unrestrained loose companions,\nEven such, they say, as stand in narrow lanes,\nAnd beat our watch, and rob our passengers;\nWhich he, young wanton and effeminate boy,\nTakes on the point of honour to support\nSo dissolute a crew.\n\nHENRY PERCY:\nMy lord, some two days since I saw the prince,\nAnd told him of those triumphs held at Oxford.\n\nHENRY BOLINGBROKE:\nAnd what said the gallant?\n\nHENRY PERCY:\nHis answer was, he would unto the stews,\nAnd from the common'st creature pluck a glove,\nAnd wear it as a favour; and with that\nHe would unhorse the lustiest challenger.\n\nHENRY BOLINGBROKE:\nAs dissolute as desperate; yet through both\nI see some sparks of better hope, which elder years\nMay happily bring forth. But who comes here?\n\nDUKE OF AUMERLE:\nWhere is the king?\n\nHENRY BOLINGBROKE:\nWhat means our cousin, that he stares and looks\nSo wildly?\n\nDUKE OF AUMERLE:\nGod save your grace! I do beseech your majesty,\nTo have some conference with your grace alone.\n\nHENRY BOLINGBROKE:\nWithdraw yourselves, and leave us here alone.\nWhat is the matter with our cousin now?\n\nDUKE OF AUMERLE:\nFor ever may my knees grow to the earth,\nMy tongue cleave to my roof within my mouth\nUnless a pardon ere I rise or speak.\n\nHENRY BOLINGBROKE:\nIntended or committed was this fault?\nIf on the first, how heinous e'er it be,\nTo win thy after-love I pardon thee.\n\nDUKE OF AUMERLE:\nThen give me leave that I may turn the key,\nThat no man enter till my tale be done.\n\nHENRY BOLINGBROKE:\nHave thy desire.\n\nDUKE OF YORK:\n\nHENRY BOLINGBROKE:\nVillain, I'll make thee safe.\n\nDUKE OF AUMERLE:\nStay thy revengeful hand; thou hast no cause to fear.\n\nDUKE OF YORK:\n\nHENRY BOLINGBROKE:\nWhat is the matter, uncle? speak;\nRecover breath; tell us how near is danger,\nThat we may arm us to encounter it.\n\nDUKE OF YORK:\nPeruse this writing here, and thou shalt know\nThe treason that my haste forbids me show.\n\nDUKE OF AUMERLE:\nRemember, as thou read'st, thy promise pass'd:\nI do repent me; read not my name there\nMy heart is not confederate with my hand.\n\nDUKE OF YORK:\nIt was, villain, ere thy hand did set it down.\nI tore it from the traitor's bosom, king;\nFear, and not love, begets his penitence:\nForget to pity him, lest thy pity prove\nA serpent that will sting thee to the heart.\n\nHENRY BOLINGBROKE:\nO heinous, strong and bold conspiracy!\nO loyal father of a treacherous son!\nThou sheer, immaculate and silver fountain,\nFrom when this stream through muddy passages\nHath held his current and defiled himself!\nThy overflow of good converts to bad,\nAnd thy abundant goodness shall excuse\nThis deadly blot in thy digressing son.\n\nDUKE OF YORK:\nSo shall my virtue be his vice's bawd;\nAnd he shall spend mine honour with his shame,\nAs thriftless sons their scraping fathers' gold.\nMine honour lives when his dishonour dies,\nOr my shamed life in his dishonour lies:\nThou kill'st me in his life; giving him breath,\nThe traitor lives, the true man's put to death.\n\nDUCHESS OF YORK:\n\nHENRY BOLINGBROKE:\nWhat shrill-voiced suppliant makes this eager cry?\n\nDUCHESS OF YORK:\nA woman, and thy aunt, great king; 'tis I.\nSpeak with me, pity me, open the door.\nA beggar begs that never begg'd before.\n\nHENRY BOLINGBROKE:\nOur scene is alter'd from a serious thing,\nAnd now changed to 'The Beggar and the King.'\nMy dangerous cousin, let your mother in:\nI know she is come to pray for your foul sin.\n\nDUKE OF YORK:\nIf thou do pardon, whosoever pray,\nMore sins for this forgiveness prosper may.\nThis fester'd joint cut off, the rest rest sound;\nThis let alone will all the rest confound.\n\nDUCHESS OF YORK:\nO king, believe not this hard-hearted man!\nLove loving not itself none other can.\n\nDUKE OF YORK:\nThou frantic woman, what dost thou make here?\nShall thy old dugs once more a traitor rear?\n\nDUCHESS OF YORK:\nSweet York, be patient. Hear me, gentle liege.\n\nHENRY BOLINGBROKE:\nRise up, good aunt.\n\nDUCHESS OF YORK:\nNot yet, I thee beseech:\nFor ever will I walk upon my knees,\nAnd never see day that the happy sees,\nTill thou give joy; until thou bid me joy,\nBy pardoning Rutland, my transgressing boy.\n\nDUKE OF AUMERLE:\nUnto my mother's prayers I bend my knee.\n\nDUKE OF YORK:\nAgainst them both my true joints bended be.\nIll mayst thou thrive, if thou grant any grace!\n\nDUCHESS OF YORK:\nPleads he in earnest? look upon his face;\nHis eyes do drop no tears, his prayers are in jest;\nHis words come from his mouth, ours from our breast:\nHe prays but faintly and would be denied;\nWe pray with heart and soul and all beside:\nHis weary joints would gladly rise, I know;\nOur knees shall kneel till to the ground they grow:\nHis prayers are full of false hypocrisy;\nOurs of true zeal and deep integrity.\nOur prayers do out-pray his; then let them have\nThat mercy which true prayer ought to have.\n\nHENRY BOLINGBROKE:\nGood aunt, stand up.\n\nDUCHESS OF YORK:\nNay, do not say, 'stand up;'\nSay, 'pardon' first, and afterwards 'stand up.'\nAnd if I were thy nurse, thy tongue to teach,\n'Pardon' should be the first word of thy speech.\nI never long'd to hear a word till now;\nSay 'pardon,' king; let pity teach thee how:\nThe word is short, but not so short as sweet;\nNo word like 'pardon' for kings' mouths so meet.\n\nDUKE OF YORK:\nSpeak it in French, king; say, 'pardonne moi.'\n\nDUCHESS OF YORK:\nDost thou teach pardon pardon to destroy?\nAh, my sour husband, my hard-hearted lord,\nThat set'st the word itself against the word!\nSpeak 'pardon' as 'tis current in our land;\nThe chopping French we do not understand.\nThine eye begins to speak; set thy tongue there;\nOr in thy piteous heart plant thou thine ear;\nThat hearing how our plaints and prayers do pierce,\nPity may move thee 'pardon' to rehearse.\n\nHENRY BOLINGBROKE:\nGood aunt, stand up.\n\nDUCHESS OF YORK:\nI do not sue to stand;\nPardon is all the suit I have in hand.\n\nHENRY BOLINGBROKE:\nI pardon him, as God shall pardon me.\n\nDUCHESS OF YORK:\nO happy vantage of a kneeling knee!\nYet am I sick for fear: speak it again;\nTwice saying 'pardon' doth not pardon twain,\nBut makes one pardon strong.\n\nHENRY BOLINGBROKE:\nWith all my heart\nI pardon him.\n\nDUCHESS OF YORK:\nA god on earth thou art.\n\nHENRY BOLINGBROKE:\nBut for our trusty brother-in-law and the abbot,\nWith all the rest of that consorted crew,\nDestruction straight shall dog them at the heels.\nGood uncle, help to order several powers\nTo Oxford, or where'er these traitors are:\nThey shall not live within this world, I swear,\nBut I will have them, if I once know where.\nUncle, farewell: and, cousin too, adieu:\nYour mother well hath pray'd, and prove you true.\n\nDUCHESS OF YORK:\nCome, my old son: I pray God make thee new.\n\nEXTON:\nDidst thou not mark the king, what words he spake,\n'Have I no friend will rid me of this living fear?'\nWas it not so?\n\nServant:\nThese were his very words.\n\nEXTON:\n'Have I no friend?' quoth he: he spake it twice,\nAnd urged it twice together, did he not?\n\nServant:\nHe did.\n\nEXTON:\nAnd speaking it, he wistly look'd on me,\nAnd who should say, 'I would thou wert the man'\nThat would divorce this terror from my heart;'\nMeaning the king at Pomfret. Come, let's go:\nI am the king's friend, and will rid his foe.\n\nKING RICHARD II:\nI have been studying how I may compare\nThis prison where I live unto the world:\nAnd for because the world is populous\nAnd here is not a creature but myself,\nI cannot do it; yet I'll hammer it out.\nMy brain I'll prove the female to my soul,\nMy soul the father; and these two beget\nA generation of still-breeding thoughts,\nAnd these same thoughts people this little world,\nIn humours like the people of this world,\nFor no thought is contented. The better sort,\nAs thoughts of things divine, are intermix'd\nWith scruples and do set the word itself\nAgainst the word:\nAs thus, 'Come, little ones,' and then again,\n'It is as hard to come as for a camel\nTo thread the postern of a small needle's eye.'\nThoughts tending to ambition, they do plot\nUnlikely wonders; how these vain weak nails\nMay tear a passage through the flinty ribs\nOf this hard world, my ragged prison walls,\nAnd, for they cannot, die in their own pride.\nThoughts tending to content flatter themselves\nThat they are not the first of fortune's slaves,\nNor shall not be the last; like silly beggars\nWho sitting in the stocks refuge their shame,\nThat many have and others must sit there;\nAnd in this thought they find a kind of ease,\nBearing their own misfortunes on the back\nOf such as have before endured the like.\nThus play I in one person many people,\nAnd none contented: sometimes am I king;\nThen treasons make me wish myself a beggar,\nAnd so I am: then crushing penury\nPersuades me I was better when a king;\nThen am I king'd again: and by and by\nThink that I am unking'd by Bolingbroke,\nAnd straight am nothing: but whate'er I be,\nNor I nor any man that but man is\nWith nothing shall be pleased, till he be eased\nWith being nothing. Music do I hear?\nHa, ha! keep time: how sour sweet music is,\nWhen time is broke and no proportion kept!\nSo is it in the music of men's lives.\nAnd here have I the daintiness of ear\nTo cheque time broke in a disorder'd string;\nBut for the concord of my state and time\nHad not an ear to hear my true time broke.\nI wasted time, and now doth time waste me;\nFor now hath time made me his numbering clock:\nMy thoughts are minutes; and with sighs they jar\nTheir watches on unto mine eyes, the outward watch,\nWhereto my finger, like a dial's point,\nIs pointing still, in cleansing them from tears.\nNow sir, the sound that tells what hour it is\nAre clamorous groans, which strike upon my heart,\nWhich is the bell: so sighs and tears and groans\nShow minutes, times, and hours: but my time\nRuns posting on in Bolingbroke's proud joy,\nWhile I stand fooling here, his Jack o' the clock.\nThis music mads me; let it sound no more;\nFor though it have holp madmen to their wits,\nIn me it seems it will make wise men mad.\nYet blessing on his heart that gives it me!\nFor 'tis a sign of love; and love to Richard\nIs a strange brooch in this all-hating world.\n\nGroom:\nHail, royal prince!\n\nKING RICHARD II:\nThanks, noble peer;\nThe cheapest of us is ten groats too dear.\nWhat art thou? and how comest thou hither,\nWhere no man never comes but that sad dog\nThat brings me food to make misfortune live?\n\nGroom:\nI was a poor groom of thy stable, king,\nWhen thou wert king; who, travelling towards York,\nWith much ado at length have gotten leave\nTo look upon my sometimes royal master's face.\nO, how it yearn'd my heart when I beheld\nIn London streets, that coronation-day,\nWhen Bolingbroke rode on roan Barbary,\nThat horse that thou so often hast bestrid,\nThat horse that I so carefully have dress'd!\n\nKING RICHARD II:\nRode he on Barbary? Tell me, gentle friend,\nHow went he under him?\n\nGroom:\nSo proudly as if he disdain'd the ground.\n\nKING RICHARD II:\nSo proud that Bolingbroke was on his back!\nThat jade hath eat bread from my royal hand;\nThis hand hath made him proud with clapping him.\nWould he not stumble? would he not fall down,\nSince pride must have a fall, and break the neck\nOf that proud man that did usurp his back?\nForgiveness, horse! why do I rail on thee,\nSince thou, created to be awed by man,\nWast born to bear? I was not made a horse;\nAnd yet I bear a burthen like an ass,\nSpurr'd, gall'd and tired by jouncing Bolingbroke.\n\nKeeper:\nFellow, give place; here is no longer stay.\n\nKING RICHARD II:\nIf thou love me, 'tis time thou wert away.\n\nGroom:\nWhat my tongue dares not, that my heart shall say.\n\nKeeper:\nMy lord, will't please you to fall to?\n\nKING RICHARD II:\nTaste of it first, as thou art wont to do.\n\nKeeper:\nMy lord, I dare not: Sir Pierce of Exton, who\nlately came from the king, commands the contrary.\n\nKING RICHARD II:\nThe devil take Henry of Lancaster and thee!\nPatience is stale, and I am weary of it.\n\nKeeper:\nHelp, help, help!\n\nKING RICHARD II:\nHow now! what means death in this rude assault?\nVillain, thy own hand yields thy death's instrument.\nGo thou, and fill another room in hell.\nThat hand shall burn in never-quenching fire\nThat staggers thus my person. Exton, thy fierce hand\nHath with the king's blood stain'd the king's own land.\nMount, mount, my soul! thy seat is up on high;\nWhilst my gross flesh sinks downward, here to die.\n\nEXTON:\nAs full of valour as of royal blood:\nBoth have I spill'd; O would the deed were good!\nFor now the devil, that told me I did well,\nSays that this deed is chronicled in hell.\nThis dead king to the living king I'll bear\nTake hence the rest, and give them burial here.\n\nHENRY BOLINGBROKE:\nKind uncle York, the latest news we hear\nIs that the rebels have consumed with fire\nOur town of Cicester in Gloucestershire;\nBut whether they be ta'en or slain we hear not.\nWelcome, my lord what is the news?\n\nNORTHUMBERLAND:\nFirst, to thy sacred state wish I all happiness.\nThe next news is, I have to London sent\nThe heads of Oxford, Salisbury, Blunt, and Kent:\nThe manner of their taking may appear\nAt large discoursed in this paper here.\n\nHENRY BOLINGBROKE:\nWe thank thee, gentle Percy, for thy pains;\nAnd to thy worth will add right worthy gains.\n\nLORD FITZWATER:\nMy lord, I have from Oxford sent to London\nThe heads of Brocas and Sir Bennet Seely,\nTwo of the dangerous consorted traitors\nThat sought at Oxford thy dire overthrow.\n\nHENRY BOLINGBROKE:\nThy pains, Fitzwater, shall not be forgot;\nRight noble is thy merit, well I wot.\n\nHENRY PERCY:\nThe grand conspirator, Abbot of Westminster,\nWith clog of conscience and sour melancholy\nHath yielded up his body to the grave;\nBut here is Carlisle living, to abide\nThy kingly doom and sentence of his pride.\n\nHENRY BOLINGBROKE:\nCarlisle, this is your doom:\nChoose out some secret place, some reverend room,\nMore than thou hast, and with it joy thy life;\nSo as thou livest in peace, die free from strife:\nFor though mine enemy thou hast ever been,\nHigh sparks of honour in thee have I seen.\n\nEXTON:\nGreat king, within this coffin I present\nThy buried fear: herein all breathless lies\nThe mightiest of thy greatest enemies,\nRichard of Bordeaux, by me hither brought.\n\nHENRY BOLINGBROKE:\nExton, I thank thee not; for thou hast wrought\nA deed of slander with thy fatal hand\nUpon my head and all this famous land.\n\nEXTON:\nFrom your own mouth, my lord, did I this deed.\n\nHENRY BOLINGBROKE:\nThey love not poison that do poison need,\nNor do I thee: though I did wish him dead,\nI hate the murderer, love him murdered.\nThe guilt of conscience take thou for thy labour,\nBut neither my good word nor princely favour:\nWith Cain go wander through shades of night,\nAnd never show thy head by day nor light.\nLords, I protest, my soul is full of woe,\nThat blood should sprinkle me to make me grow:\nCome, mourn with me for that I do lament,\nAnd put on sullen black incontinent:\nI'll make a voyage to the Holy Land,\nTo wash this blood off from my guilty hand:\nMarch sadly after; grace my mournings here;\nIn weeping after this untimely bier.\n\n\nSAMPSON:\nGregory, o' my word, we'll not carry coals.\n\nGREGORY:\nNo, for then we should be colliers.\n\nSAMPSON:\nI mean, an we be in choler, we'll draw.\n\nGREGORY:\nAy, while you live, draw your neck out o' the collar.\n\nSAMPSON:\nI strike quickly, being moved.\n\nGREGORY:\nBut thou art not quickly moved to strike.\n\nSAMPSON:\nA dog of the house of Montague moves me.\n\nGREGORY:\nTo move is to stir; and to be valiant is to stand:\ntherefore, if thou art moved, thou runn'st away.\n\nSAMPSON:\nA dog of that house shall move me to stand: I will\ntake the wall of any man or maid of Montague's.\n\nGREGORY:\nThat shows thee a weak slave; for the weakest goes\nto the wall.\n\nSAMPSON:\nTrue; and therefore women, being the weaker vessels,\nare ever thrust to the wall: therefore I will push\nMontague's men from the wall, and thrust his maids\nto the wall.\n\nGREGORY:\nThe quarrel is between our masters and us their men.\n\nSAMPSON:\n'Tis all one, I will show myself a tyrant: when I\nhave fought with the men, I will be cruel with the\nmaids, and cut off their heads.\n\nGREGORY:\nThe heads of the maids?\n\nSAMPSON:\nAy, the heads of the maids, or their maidenheads;\ntake it in what sense thou wilt.\n\nGREGORY:\nThey must take it in sense that feel it.\n\nSAMPSON:\nMe they shall feel while I am able to stand: and\n'tis known I am a pretty piece of flesh.\n\nGREGORY:\n'Tis well thou art not fish; if thou hadst, thou\nhadst been poor John. Draw thy tool! here comes\ntwo of the house of the Montagues.\n\nSAMPSON:\nMy naked weapon is out: quarrel, I will back thee.\n\nGREGORY:\nHow! turn thy back and run?\n\nSAMPSON:\nFear me not.\n\nGREGORY:\nNo, marry; I fear thee!\n\nSAMPSON:\nLet us take the law of our sides; let them begin.\n\nGREGORY:\nI will frown as I pass by, and let them take it as\nthey list.\n\nSAMPSON:\nNay, as they dare. I will bite my thumb at them;\nwhich is a disgrace to them, if they bear it.\n\nABRAHAM:\nDo you bite your thumb at us, sir?\n\nSAMPSON:\nI do bite my thumb, sir.\n\nABRAHAM:\nDo you bite your thumb at us, sir?\n\nSAMPSON:\n\nGREGORY:\nNo.\n\nSAMPSON:\nNo, sir, I do not bite my thumb at you, sir, but I\nbite my thumb, sir.\n\nGREGORY:\nDo you quarrel, sir?\n\nABRAHAM:\nQuarrel sir! no, sir.\n\nSAMPSON:\nIf you do, sir, I am for you: I serve as good a man as you.\n\nABRAHAM:\nNo better.\n\nSAMPSON:\nWell, sir.\n\nGREGORY:\nSay 'better:' here comes one of my master's kinsmen.\n\nSAMPSON:\nYes, better, sir.\n\nABRAHAM:\nYou lie.\n\nSAMPSON:\nDraw, if you be men. Gregory, remember thy swashing blow.\n\nBENVOLIO:\nPart, fools!\nPut up your swords; you know not what you do.\n\nTYBALT:\nWhat, art thou drawn among these heartless hinds?\nTurn thee, Benvolio, look upon thy death.\n\nBENVOLIO:\nI do but keep the peace: put up thy sword,\nOr manage it to part these men with me.\n\nTYBALT:\nWhat, drawn, and talk of peace! I hate the word,\nAs I hate hell, all Montagues, and thee:\nHave at thee, coward!\n\nFirst Citizen:\nClubs, bills, and partisans! strike! beat them down!\nDown with the Capulets! down with the Montagues!\n\nCAPULET:\nWhat noise is this? Give me my long sword, ho!\n\nLADY CAPULET:\nA crutch, a crutch! why call you for a sword?\n\nCAPULET:\nMy sword, I say! Old Montague is come,\nAnd flourishes his blade in spite of me.\n\nMONTAGUE:\nThou villain Capulet,--Hold me not, let me go.\n\nLADY MONTAGUE:\nThou shalt not stir a foot to seek a foe.\n\nPRINCE:\nRebellious subjects, enemies to peace,\nProfaners of this neighbour-stained steel,--\nWill they not hear? What, ho! you men, you beasts,\nThat quench the fire of your pernicious rage\nWith purple fountains issuing from your veins,\nOn pain of torture, from those bloody hands\nThrow your mistemper'd weapons to the ground,\nAnd hear the sentence of your moved prince.\nThree civil brawls, bred of an airy word,\nBy thee, old Capulet, and Montague,\nHave thrice disturb'd the quiet of our streets,\nAnd made Verona's ancient citizens\nCast by their grave beseeming ornaments,\nTo wield old partisans, in hands as old,\nCanker'd with peace, to part your canker'd hate:\nIf ever you disturb our streets again,\nYour lives shall pay the forfeit of the peace.\nFor this time, all the rest depart away:\nYou Capulet; shall go along with me:\nAnd, Montague, come you this afternoon,\nTo know our further pleasure in this case,\nTo old Free-town, our common judgment-place.\nOnce more, on pain of death, all men depart.\n\nMONTAGUE:\nWho set this ancient quarrel new abroach?\nSpeak, nephew, were you by when it began?\n\nBENVOLIO:\nHere were the servants of your adversary,\nAnd yours, close fighting ere I did approach:\nI drew to part them: in the instant came\nThe fiery Tybalt, with his sword prepared,\nWhich, as he breathed defiance to my ears,\nHe swung about his head and cut the winds,\nWho nothing hurt withal hiss'd him in scorn:\nWhile we were interchanging thrusts and blows,\nCame more and more and fought on part and part,\nTill the prince came, who parted either part.\n\nLADY MONTAGUE:\nO, where is Romeo? saw you him to-day?\nRight glad I am he was not at this fray.\n\nBENVOLIO:\nMadam, an hour before the worshipp'd sun\nPeer'd forth the golden window of the east,\nA troubled mind drave me to walk abroad;\nWhere, underneath the grove of sycamore\nThat westward rooteth from the city's side,\nSo early walking did I see your son:\nTowards him I made, but he was ware of me\nAnd stole into the covert of the wood:\nI, measuring his affections by my own,\nThat most are busied when they're most alone,\nPursued my humour not pursuing his,\nAnd gladly shunn'd who gladly fled from me.\n\nMONTAGUE:\nMany a morning hath he there been seen,\nWith tears augmenting the fresh morning dew.\nAdding to clouds more clouds with his deep sighs;\nBut all so soon as the all-cheering sun\nShould in the furthest east begin to draw\nThe shady curtains from Aurora's bed,\nAway from the light steals home my heavy son,\nAnd private in his chamber pens himself,\nShuts up his windows, locks far daylight out\nAnd makes himself an artificial night:\nBlack and portentous must this humour prove,\nUnless good counsel may the cause remove.\n\nBENVOLIO:\nMy noble uncle, do you know the cause?\n\nMONTAGUE:\nI neither know it nor can learn of him.\n\nBENVOLIO:\nHave you importuned him by any means?\n\nMONTAGUE:\nBoth by myself and many other friends:\nBut he, his own affections' counsellor,\nIs to himself--I will not say how true--\nBut to himself so secret and so close,\nSo far from sounding and discovery,\nAs is the bud bit with an envious worm,\nEre he can spread his sweet leaves to the air,\nOr dedicate his beauty to the sun.\nCould we but learn from whence his sorrows grow.\nWe would as willingly give cure as know.\n\nBENVOLIO:\nSee, where he comes: so please you, step aside;\nI'll know his grievance, or be much denied.\n\nMONTAGUE:\nI would thou wert so happy by thy stay,\nTo hear true shrift. Come, madam, let's away.\n\nBENVOLIO:\nGood-morrow, cousin.\n\nROMEO:\nIs the day so young?\n\nBENVOLIO:\nBut new struck nine.\n\nROMEO:\nAy me! sad hours seem long.\nWas that my father that went hence so fast?\n\nBENVOLIO:\nIt was. What sadness lengthens Romeo's hours?\n\nROMEO:\nNot having that, which, having, makes them short.\n\nBENVOLIO:\nIn love?\n\nROMEO:\nOut--\n\nBENVOLIO:\nOf love?\n\nROMEO:\nOut of her favour, where I am in love.\n\nBENVOLIO:\nAlas, that love, so gentle in his view,\nShould be so tyrannous and rough in proof!\n\nROMEO:\nAlas, that love, whose view is muffled still,\nShould, without eyes, see pathways to his will!\nWhere shall we dine? O me! What fray was here?\nYet tell me not, for I have heard it all.\nHere's much to do with hate, but more with love.\nWhy, then, O brawling love! O loving hate!\nO any thing, of nothing first create!\nO heavy lightness! serious vanity!\nMis-shapen chaos of well-seeming forms!\nFeather of lead, bright smoke, cold fire,\nsick health!\nStill-waking sleep, that is not what it is!\nThis love feel I, that feel no love in this.\nDost thou not laugh?\n\nBENVOLIO:\nNo, coz, I rather weep.\n\nROMEO:\nGood heart, at what?\n\nBENVOLIO:\nAt thy good heart's oppression.\n\nROMEO:\nWhy, such is love's transgression.\nGriefs of mine own lie heavy in my breast,\nWhich thou wilt propagate, to have it prest\nWith more of thine: this love that thou hast shown\nDoth add more grief to too much of mine own.\nLove is a smoke raised with the fume of sighs;\nBeing purged, a fire sparkling in lovers' eyes;\nBeing vex'd a sea nourish'd with lovers' tears:\nWhat is it else? a madness most discreet,\nA choking gall and a preserving sweet.\nFarewell, my coz.\n\nBENVOLIO:\nSoft! I will go along;\nAn if you leave me so, you do me wrong.\n\nROMEO:\nTut, I have lost myself; I am not here;\nThis is not Romeo, he's some other where.\n\nBENVOLIO:\nTell me in sadness, who is that you love.\n\nROMEO:\nWhat, shall I groan and tell thee?\n\nBENVOLIO:\nGroan! why, no.\nBut sadly tell me who.\n\nROMEO:\nBid a sick man in sadness make his will:\nAh, word ill urged to one that is so ill!\nIn sadness, cousin, I do love a woman.\n\nBENVOLIO:\nI aim'd so near, when I supposed you loved.\n\nROMEO:\nA right good mark-man! And she's fair I love.\n\nBENVOLIO:\nA right fair mark, fair coz, is soonest hit.\n\nROMEO:\nWell, in that hit you miss: she'll not be hit\nWith Cupid's arrow; she hath Dian's wit;\nAnd, in strong proof of chastity well arm'd,\nFrom love's weak childish bow she lives unharm'd.\nShe will not stay the siege of loving terms,\nNor bide the encounter of assailing eyes,\nNor ope her lap to saint-seducing gold:\nO, she is rich in beauty, only poor,\nThat when she dies with beauty dies her store.\n\nBENVOLIO:\nThen she hath sworn that she will still live chaste?\n\nROMEO:\nShe hath, and in that sparing makes huge waste,\nFor beauty starved with her severity\nCuts beauty off from all posterity.\nShe is too fair, too wise, wisely too fair,\nTo merit bliss by making me despair:\nShe hath forsworn to love, and in that vow\nDo I live dead that live to tell it now.\n\nBENVOLIO:\nBe ruled by me, forget to think of her.\n\nROMEO:\nO, teach me how I should forget to think.\n\nBENVOLIO:\nBy giving liberty unto thine eyes;\nExamine other beauties.\n\nROMEO:\n'Tis the way\nTo call hers exquisite, in question more:\nThese happy masks that kiss fair ladies' brows\nBeing black put us in mind they hide the fair;\nHe that is strucken blind cannot forget\nThe precious treasure of his eyesight lost:\nShow me a mistress that is passing fair,\nWhat doth her beauty serve, but as a note\nWhere I may read who pass'd that passing fair?\nFarewell: thou canst not teach me to forget.\n\nBENVOLIO:\nI'll pay that doctrine, or else die in debt.\n\nCAPULET:\nBut Montague is bound as well as I,\nIn penalty alike; and 'tis not hard, I think,\nFor men so old as we to keep the peace.\n\nPARIS:\nOf honourable reckoning are you both;\nAnd pity 'tis you lived at odds so long.\nBut now, my lord, what say you to my suit?\n\nCAPULET:\nBut saying o'er what I have said before:\nMy child is yet a stranger in the world;\nShe hath not seen the change of fourteen years,\nLet two more summers wither in their pride,\nEre we may think her ripe to be a bride.\n\nPARIS:\nYounger than she are happy mothers made.\n\nCAPULET:\nAnd too soon marr'd are those so early made.\nThe earth hath swallow'd all my hopes but she,\nShe is the hopeful lady of my earth:\nBut woo her, gentle Paris, get her heart,\nMy will to her consent is but a part;\nAn she agree, within her scope of choice\nLies my consent and fair according voice.\nThis night I hold an old accustom'd feast,\nWhereto I have invited many a guest,\nSuch as I love; and you, among the store,\nOne more, most welcome, makes my number more.\nAt my poor house look to behold this night\nEarth-treading stars that make dark heaven light:\nSuch comfort as do lusty young men feel\nWhen well-apparell'd April on the heel\nOf limping winter treads, even such delight\nAmong fresh female buds shall you this night\nInherit at my house; hear all, all see,\nAnd like her most whose merit most shall be:\nWhich on more view, of many mine being one\nMay stand in number, though in reckoning none,\nCome, go with me.\nGo, sirrah, trudge about\nThrough fair Verona; find those persons out\nWhose names are written there, and to them say,\nMy house and welcome on their pleasure stay.\n\nServant:\nFind them out whose names are written here! It is\nwritten, that the shoemaker should meddle with his\nyard, and the tailor with his last, the fisher with\nhis pencil, and the painter with his nets; but I am\nsent to find those persons whose names are here\nwrit, and can never find what names the writing\nperson hath here writ. I must to the learned.--In good time.\n\nBENVOLIO:\nTut, man, one fire burns out another's burning,\nOne pain is lessen'd by another's anguish;\nTurn giddy, and be holp by backward turning;\nOne desperate grief cures with another's languish:\nTake thou some new infection to thy eye,\nAnd the rank poison of the old will die.\n\nROMEO:\nYour plaintain-leaf is excellent for that.\n\nBENVOLIO:\nFor what, I pray thee?\n\nROMEO:\nFor your broken shin.\n\nBENVOLIO:\nWhy, Romeo, art thou mad?\n\nROMEO:\nNot mad, but bound more than a mad-man is;\nShut up in prison, kept without my food,\nWhipp'd and tormented and--God-den, good fellow.\n\nServant:\nGod gi' god-den. I pray, sir, can you read?\n\nROMEO:\nAy, mine own fortune in my misery.\n\nServant:\nPerhaps you have learned it without book: but, I\npray, can you read any thing you see?\n\nROMEO:\nAy, if I know the letters and the language.\n\nServant:\nYe say honestly: rest you merry!\n\nROMEO:\nStay, fellow; I can read.\n'Signior Martino and his wife and daughters;\nCounty Anselme and his beauteous sisters; the lady\nwidow of Vitravio; Signior Placentio and his lovely\nnieces; Mercutio and his brother Valentine; mine\nuncle Capulet, his wife and daughters; my fair niece\nRosaline; Livia; Signior Valentio and his cousin\nTybalt, Lucio and the lively Helena.' A fair\nassembly: whither should they come?\n\nServant:\nUp.\n\nROMEO:\nWhither?\n\nServant:\nTo supper; to our house.\n\nROMEO:\nWhose house?\n\nServant:\nMy master's.\n\nROMEO:\nIndeed, I should have ask'd you that before.\n\nServant:\nNow I'll tell you without asking: my master is the\ngreat rich Capulet; and if you be not of the house\nof Montagues, I pray, come and crush a cup of wine.\nRest you merry!\n\nBENVOLIO:\nAt this same ancient feast of Capulet's\nSups the fair Rosaline whom thou so lovest,\nWith all the admired beauties of Verona:\nGo thither; and, with unattainted eye,\nCompare her face with some that I shall show,\nAnd I will make thee think thy swan a crow.\n\nROMEO:\nWhen the devout religion of mine eye\nMaintains such falsehood, then turn tears to fires;\nAnd these, who often drown'd could never die,\nTransparent heretics, be burnt for liars!\nOne fairer than my love! the all-seeing sun\nNe'er saw her match since first the world begun.\n\nBENVOLIO:\nTut, you saw her fair, none else being by,\nHerself poised with herself in either eye:\nBut in that crystal scales let there be weigh'd\nYour lady's love against some other maid\nThat I will show you shining at this feast,\nAnd she shall scant show well that now shows best.\n\nROMEO:\nI'll go along, no such sight to be shown,\nBut to rejoice in splendor of mine own.\n\nLADY CAPULET:\nNurse, where's my daughter? call her forth to me.\n\nNurse:\nNow, by my maidenhead, at twelve year old,\nI bade her come. What, lamb! what, ladybird!\nGod forbid! Where's this girl? What, Juliet!\n\nJULIET:\nHow now! who calls?\n\nNurse:\nYour mother.\n\nJULIET:\nMadam, I am here.\nWhat is your will?\n\nLADY CAPULET:\nThis is the matter:--Nurse, give leave awhile,\nWe must talk in secret:--nurse, come back again;\nI have remember'd me, thou's hear our counsel.\nThou know'st my daughter's of a pretty age.\n\nNurse:\nFaith, I can tell her age unto an hour.\n\nLADY CAPULET:\nShe's not fourteen.\n\nNurse:\nI'll lay fourteen of my teeth,--\nAnd yet, to my teeth be it spoken, I have but four--\nShe is not fourteen. How long is it now\nTo Lammas-tide?\n\nLADY CAPULET:\nA fortnight and odd days.\n\nNurse:\nEven or odd, of all days in the year,\nCome Lammas-eve at night shall she be fourteen.\nSusan and she--God rest all Christian souls!--\nWere of an age: well, Susan is with God;\nShe was too good for me: but, as I said,\nOn Lammas-eve at night shall she be fourteen;\nThat shall she, marry; I remember it well.\n'Tis since the earthquake now eleven years;\nAnd she was wean'd,--I never shall forget it,--\nOf all the days of the year, upon that day:\nFor I had then laid wormwood to my dug,\nSitting in the sun under the dove-house wall;\nMy lord and you were then at Mantua:--\nNay, I do bear a brain:--but, as I said,\nWhen it did taste the wormwood on the nipple\nOf my dug and felt it bitter, pretty fool,\nTo see it tetchy and fall out with the dug!\nShake quoth the dove-house: 'twas no need, I trow,\nTo bid me trudge:\nAnd since that time it is eleven years;\nFor then she could stand alone; nay, by the rood,\nShe could have run and waddled all about;\nFor even the day before, she broke her brow:\nAnd then my husband--God be with his soul!\nA' was a merry man--took up the child:\n'Yea,' quoth he, 'dost thou fall upon thy face?\nThou wilt fall backward when thou hast more wit;\nWilt thou not, Jule?' and, by my holidame,\nThe pretty wretch left crying and said 'Ay.'\nTo see, now, how a jest shall come about!\nI warrant, an I should live a thousand years,\nI never should forget it: 'Wilt thou not, Jule?' quoth he;\nAnd, pretty fool, it stinted and said 'Ay.'\n\nLADY CAPULET:\nEnough of this; I pray thee, hold thy peace.\n\nNurse:\nYes, madam: yet I cannot choose but laugh,\nTo think it should leave crying and say 'Ay.'\nAnd yet, I warrant, it had upon its brow\nA bump as big as a young cockerel's stone;\nA parlous knock; and it cried bitterly:\n'Yea,' quoth my husband,'fall'st upon thy face?\nThou wilt fall backward when thou comest to age;\nWilt thou not, Jule?' it stinted and said 'Ay.'\n\nJULIET:\nAnd stint thou too, I pray thee, nurse, say I.\n\nNurse:\nPeace, I have done. God mark thee to his grace!\nThou wast the prettiest babe that e'er I nursed:\nAn I might live to see thee married once,\nI have my wish.\n\nLADY CAPULET:\nMarry, that 'marry' is the very theme\nI came to talk of. Tell me, daughter Juliet,\nHow stands your disposition to be married?\n\nJULIET:\nIt is an honour that I dream not of.\n\nNurse:\nAn honour! were not I thine only nurse,\nI would say thou hadst suck'd wisdom from thy teat.\n\nLADY CAPULET:\nWell, think of marriage now; younger than you,\nHere in Verona, ladies of esteem,\nAre made already mothers: by my count,\nI was your mother much upon these years\nThat you are now a maid. Thus then in brief:\nThe valiant Paris seeks you for his love.\n\nNurse:\nA man, young lady! lady, such a man\nAs all the world--why, he's a man of wax.\n\nLADY CAPULET:\nVerona's summer hath not such a flower.\n\nNurse:\nNay, he's a flower; in faith, a very flower.\n\nLADY CAPULET:\nWhat say you? can you love the gentleman?\nThis night you shall behold him at our feast;\nRead o'er the volume of young Paris' face,\nAnd find delight writ there with beauty's pen;\nExamine every married lineament,\nAnd see how one another lends content\nAnd what obscured in this fair volume lies\nFind written in the margent of his eyes.\nThis precious book of love, this unbound lover,\nTo beautify him, only lacks a cover:\nThe fish lives in the sea, and 'tis much pride\nFor fair without the fair within to hide:\nThat book in many's eyes doth share the glory,\nThat in gold clasps locks in the golden story;\nSo shall you share all that he doth possess,\nBy having him, making yourself no less.\n\nNurse:\nNo less! nay, bigger; women grow by men.\n\nLADY CAPULET:\nSpeak briefly, can you like of Paris' love?\n\nJULIET:\nI'll look to like, if looking liking move:\nBut no more deep will I endart mine eye\nThan your consent gives strength to make it fly.\n\nServant:\nMadam, the guests are come, supper served up, you\ncalled, my young lady asked for, the nurse cursed in\nthe pantry, and every thing in extremity. I must\nhence to wait; I beseech you, follow straight.\n\nLADY CAPULET:\nWe follow thee.\nJuliet, the county stays.\n\nNurse:\nGo, girl, seek happy nights to happy days.\n\nROMEO:\nWhat, shall this speech be spoke for our excuse?\nOr shall we on without a apology?\n\nBENVOLIO:\nThe date is out of such prolixity:\nWe'll have no Cupid hoodwink'd with a scarf,\nBearing a Tartar's painted bow of lath,\nScaring the ladies like a crow-keeper;\nNor no without-book prologue, faintly spoke\nAfter the prompter, for our entrance:\nBut let them measure us by what they will;\nWe'll measure them a measure, and be gone.\n\nROMEO:\nGive me a torch: I am not for this ambling;\nBeing but heavy, I will bear the light.\n\nMERCUTIO:\nNay, gentle Romeo, we must have you dance.\n\nROMEO:\nNot I, believe me: you have dancing shoes\nWith nimble soles: I have a soul of lead\nSo stakes me to the ground I cannot move.\n\nMERCUTIO:\nYou are a lover; borrow Cupid's wings,\nAnd soar with them above a common bound.\n\nROMEO:\nI am too sore enpierced with his shaft\nTo soar with his light feathers, and so bound,\nI cannot bound a pitch above dull woe:\nUnder love's heavy burden do I sink.\n\nMERCUTIO:\nAnd, to sink in it, should you burden love;\nToo great oppression for a tender thing.\n\nROMEO:\nIs love a tender thing? it is too rough,\nToo rude, too boisterous, and it pricks like thorn.\n\nMERCUTIO:\nIf love be rough with you, be rough with love;\nPrick love for pricking, and you beat love down.\nGive me a case to put my visage in:\nA visor for a visor! what care I\nWhat curious eye doth quote deformities?\nHere are the beetle brows shall blush for me.\n\nBENVOLIO:\nCome, knock and enter; and no sooner in,\nBut every man betake him to his legs.\n\nROMEO:\nA torch for me: let wantons light of heart\nTickle the senseless rushes with their heels,\nFor I am proverb'd with a grandsire phrase;\nI'll be a candle-holder, and look on.\nThe game was ne'er so fair, and I am done.\n\nMERCUTIO:\nTut, dun's the mouse, the constable's own word:\nIf thou art dun, we'll draw thee from the mire\nOf this sir-reverence love, wherein thou stick'st\nUp to the ears. Come, we burn daylight, ho!\n\nROMEO:\nNay, that's not so.\n\nMERCUTIO:\nI mean, sir, in delay\nWe waste our lights in vain, like lamps by day.\nTake our good meaning, for our judgment sits\nFive times in that ere once in our five wits.\n\nROMEO:\nAnd we mean well in going to this mask;\nBut 'tis no wit to go.\n\nMERCUTIO:\nWhy, may one ask?\n\nROMEO:\nI dream'd a dream to-night.\n\nMERCUTIO:\nAnd so did I.\n\nROMEO:\nWell, what was yours?\n\nMERCUTIO:\nThat dreamers often lie.\n\nROMEO:\nIn bed asleep, while they do dream things true.\n\nMERCUTIO:\nO, then, I see Queen Mab hath been with you.\nShe is the fairies' midwife, and she comes\nIn shape no bigger than an agate-stone\nOn the fore-finger of an alderman,\nDrawn with a team of little atomies\nAthwart men's noses as they lie asleep;\nHer wagon-spokes made of long spiders' legs,\nThe cover of the wings of grasshoppers,\nThe traces of the smallest spider's web,\nThe collars of the moonshine's watery beams,\nHer whip of cricket's bone, the lash of film,\nHer wagoner a small grey-coated gnat,\nNot so big as a round little worm\nPrick'd from the lazy finger of a maid;\nHer chariot is an empty hazel-nut\nMade by the joiner squirrel or old grub,\nTime out o' mind the fairies' coachmakers.\nAnd in this state she gallops night by night\nThrough lovers' brains, and then they dream of love;\nO'er courtiers' knees, that dream on court'sies straight,\nO'er lawyers' fingers, who straight dream on fees,\nO'er ladies ' lips, who straight on kisses dream,\nWhich oft the angry Mab with blisters plagues,\nBecause their breaths with sweetmeats tainted are:\nSometime she gallops o'er a courtier's nose,\nAnd then dreams he of smelling out a suit;\nAnd sometime comes she with a tithe-pig's tail\nTickling a parson's nose as a' lies asleep,\nThen dreams, he of another benefice:\nSometime she driveth o'er a soldier's neck,\nAnd then dreams he of cutting foreign throats,\nOf breaches, ambuscadoes, Spanish blades,\nOf healths five-fathom deep; and then anon\nDrums in his ear, at which he starts and wakes,\nAnd being thus frighted swears a prayer or two\nAnd sleeps again. This is that very Mab\nThat plats the manes of horses in the night,\nAnd bakes the elflocks in foul sluttish hairs,\nWhich once untangled, much misfortune bodes:\nThis is the hag, when maids lie on their backs,\nThat presses them and learns them first to bear,\nMaking them women of good carriage:\nThis is she--\n\nROMEO:\nPeace, peace, Mercutio, peace!\nThou talk'st of nothing.\n\nMERCUTIO:\nTrue, I talk of dreams,\nWhich are the children of an idle brain,\nBegot of nothing but vain fantasy,\nWhich is as thin of substance as the air\nAnd more inconstant than the wind, who wooes\nEven now the frozen bosom of the north,\nAnd, being anger'd, puffs away from thence,\nTurning his face to the dew-dropping south.\n\nBENVOLIO:\nThis wind, you talk of, blows us from ourselves;\nSupper is done, and we shall come too late.\n\nROMEO:\nI fear, too early: for my mind misgives\nSome consequence yet hanging in the stars\nShall bitterly begin his fearful date\nWith this night's revels and expire the term\nOf a despised life closed in my breast\nBy some vile forfeit of untimely death.\nBut He, that hath the steerage of my course,\nDirect my sail! On, lusty gentlemen.\n\nBENVOLIO:\nStrike, drum.\n\nFirst Servant:\nWhere's Potpan, that he helps not to take away? He\nshift a trencher? he scrape a trencher!\n\nSecond Servant:\nWhen good manners shall lie all in one or two men's\nhands and they unwashed too, 'tis a foul thing.\n\nFirst Servant:\nAway with the joint-stools, remove the\ncourt-cupboard, look to the plate. Good thou, save\nme a piece of marchpane; and, as thou lovest me, let\nthe porter let in Susan Grindstone and Nell.\nAntony, and Potpan!\n\nSecond Servant:\nAy, boy, ready.\n\nFirst Servant:\nYou are looked for and called for, asked for and\nsought for, in the great chamber.\n\nSecond Servant:\nWe cannot be here and there too. Cheerly, boys; be\nbrisk awhile, and the longer liver take all.\n\nCAPULET:\nWelcome, gentlemen! ladies that have their toes\nUnplagued with corns will have a bout with you.\nAh ha, my mistresses! which of you all\nWill now deny to dance? she that makes dainty,\nShe, I'll swear, hath corns; am I come near ye now?\nWelcome, gentlemen! I have seen the day\nThat I have worn a visor and could tell\nA whispering tale in a fair lady's ear,\nSuch as would please: 'tis gone, 'tis gone, 'tis gone:\nYou are welcome, gentlemen! come, musicians, play.\nA hall, a hall! give room! and foot it, girls.\nMore light, you knaves; and turn the tables up,\nAnd quench the fire, the room is grown too hot.\nAh, sirrah, this unlook'd-for sport comes well.\nNay, sit, nay, sit, good cousin Capulet;\nFor you and I are past our dancing days:\nHow long is't now since last yourself and I\nWere in a mask?\n\nSecond Capulet:\nBy'r lady, thirty years.\n\nCAPULET:\nWhat, man! 'tis not so much, 'tis not so much:\n'Tis since the nuptials of Lucentio,\nCome pentecost as quickly as it will,\nSome five and twenty years; and then we mask'd.\n\nSecond Capulet:\n'Tis more, 'tis more, his son is elder, sir;\nHis son is thirty.\n\nCAPULET:\nWill you tell me that?\nHis son was but a ward two years ago.\n\nROMEO:\n\nServant:\nI know not, sir.\n\nROMEO:\nO, she doth teach the torches to burn bright!\nIt seems she hangs upon the cheek of night\nLike a rich jewel in an Ethiope's ear;\nBeauty too rich for use, for earth too dear!\nSo shows a snowy dove trooping with crows,\nAs yonder lady o'er her fellows shows.\nThe measure done, I'll watch her place of stand,\nAnd, touching hers, make blessed my rude hand.\nDid my heart love till now? forswear it, sight!\nFor I ne'er saw true beauty till this night.\n\nTYBALT:\nThis, by his voice, should be a Montague.\nFetch me my rapier, boy. What dares the slave\nCome hither, cover'd with an antic face,\nTo fleer and scorn at our solemnity?\nNow, by the stock and honour of my kin,\nTo strike him dead, I hold it not a sin.\n\nCAPULET:\nWhy, how now, kinsman! wherefore storm you so?\n\nTYBALT:\nUncle, this is a Montague, our foe,\nA villain that is hither come in spite,\nTo scorn at our solemnity this night.\n\nCAPULET:\nYoung Romeo is it?\n\nTYBALT:\n'Tis he, that villain Romeo.\n\nCAPULET:\nContent thee, gentle coz, let him alone;\nHe bears him like a portly gentleman;\nAnd, to say truth, Verona brags of him\nTo be a virtuous and well-govern'd youth:\nI would not for the wealth of all the town\nHere in my house do him disparagement:\nTherefore be patient, take no note of him:\nIt is my will, the which if thou respect,\nShow a fair presence and put off these frowns,\nAnd ill-beseeming semblance for a feast.\n\nTYBALT:\nIt fits, when such a villain is a guest:\nI'll not endure him.\n\nCAPULET:\nHe shall be endured:\nWhat, goodman boy! I say, he shall: go to;\nAm I the master here, or you? go to.\nYou'll not endure him! God shall mend my soul!\nYou'll make a mutiny among my guests!\nYou will set cock-a-hoop! you'll be the man!\n\nTYBALT:\nWhy, uncle, 'tis a shame.\n\nCAPULET:\nGo to, go to;\nYou are a saucy boy: is't so, indeed?\nThis trick may chance to scathe you, I know what:\nYou must contrary me! marry, 'tis time.\nWell said, my hearts! You are a princox; go:\nBe quiet, or--More light, more light! For shame!\nI'll make you quiet. What, cheerly, my hearts!\n\nTYBALT:\nPatience perforce with wilful choler meeting\nMakes my flesh tremble in their different greeting.\nI will withdraw: but this intrusion shall\nNow seeming sweet convert to bitter gall.\n\nROMEO:\n\nJULIET:\nGood pilgrim, you do wrong your hand too much,\nWhich mannerly devotion shows in this;\nFor saints have hands that pilgrims' hands do touch,\nAnd palm to palm is holy palmers' kiss.\n\nROMEO:\nHave not saints lips, and holy palmers too?\n\nJULIET:\nAy, pilgrim, lips that they must use in prayer.\n\nROMEO:\nO, then, dear saint, let lips do what hands do;\nThey pray, grant thou, lest faith turn to despair.\n\nJULIET:\nSaints do not move, though grant for prayers' sake.\n\nROMEO:\nThen move not, while my prayer's effect I take.\nThus from my lips, by yours, my sin is purged.\n\nJULIET:\nThen have my lips the sin that they have took.\n\nROMEO:\nSin from thy lips? O trespass sweetly urged!\nGive me my sin again.\n\nJULIET:\nYou kiss by the book.\n\nNurse:\nMadam, your mother craves a word with you.\n\nROMEO:\nWhat is her mother?\n\nNurse:\nMarry, bachelor,\nHer mother is the lady of the house,\nAnd a good lady, and a wise and virtuous\nI nursed her daughter, that you talk'd withal;\nI tell you, he that can lay hold of her\nShall have the chinks.\n\nROMEO:\nIs she a Capulet?\nO dear account! my life is my foe's debt.\n\nBENVOLIO:\nAway, begone; the sport is at the best.\n\nROMEO:\nAy, so I fear; the more is my unrest.\n\nCAPULET:\nNay, gentlemen, prepare not to be gone;\nWe have a trifling foolish banquet towards.\nIs it e'en so? why, then, I thank you all\nI thank you, honest gentlemen; good night.\nMore torches here! Come on then, let's to bed.\nAh, sirrah, by my fay, it waxes late:\nI'll to my rest.\n\nJULIET:\nCome hither, nurse. What is yond gentleman?\n\nNurse:\nThe son and heir of old Tiberio.\n\nJULIET:\nWhat's he that now is going out of door?\n\nNurse:\nMarry, that, I think, be young Petrucio.\n\nJULIET:\nWhat's he that follows there, that would not dance?\n\nNurse:\nI know not.\n\nJULIET:\nGo ask his name: if he be married.\nMy grave is like to be my wedding bed.\n\nNurse:\nHis name is Romeo, and a Montague;\nThe only son of your great enemy.\n\nJULIET:\nMy only love sprung from my only hate!\nToo early seen unknown, and known too late!\nProdigious birth of love it is to me,\nThat I must love a loathed enemy.\n\nNurse:\nWhat's this? what's this?\n\nJULIET:\nA rhyme I learn'd even now\nOf one I danced withal.\n\nNurse:\nAnon, anon!\nCome, let's away; the strangers all are gone.\n\nChorus:\nNow old desire doth in his death-bed lie,\nAnd young affection gapes to be his heir;\nThat fair for which love groan'd for and would die,\nWith tender Juliet match'd, is now not fair.\nNow Romeo is beloved and loves again,\nAlike betwitched by the charm of looks,\nBut to his foe supposed he must complain,\nAnd she steal love's sweet bait from fearful hooks:\nBeing held a foe, he may not have access\nTo breathe such vows as lovers use to swear;\nAnd she as much in love, her means much less\nTo meet her new-beloved any where:\nBut passion lends them power, time means, to meet\nTempering extremities with extreme sweet.\n\nROMEO:\nCan I go forward when my heart is here?\nTurn back, dull earth, and find thy centre out.\n\nBENVOLIO:\nRomeo! my cousin Romeo!\n\nMERCUTIO:\nHe is wise;\nAnd, on my lie, hath stol'n him home to bed.\n\nBENVOLIO:\nHe ran this way, and leap'd this orchard wall:\nCall, good Mercutio.\n\nMERCUTIO:\nNay, I'll conjure too.\nRomeo! humours! madman! passion! lover!\nAppear thou in the likeness of a sigh:\nSpeak but one rhyme, and I am satisfied;\nCry but 'Ay me!' pronounce but 'love' and 'dove;'\nSpeak to my gossip Venus one fair word,\nOne nick-name for her purblind son and heir,\nYoung Adam Cupid, he that shot so trim,\nWhen King Cophetua loved the beggar-maid!\nHe heareth not, he stirreth not, he moveth not;\nThe ape is dead, and I must conjure him.\nI conjure thee by Rosaline's bright eyes,\nBy her high forehead and her scarlet lip,\nBy her fine foot, straight leg and quivering thigh\nAnd the demesnes that there adjacent lie,\nThat in thy likeness thou appear to us!\n\nBENVOLIO:\nAnd if he hear thee, thou wilt anger him.\n\nMERCUTIO:\nThis cannot anger him: 'twould anger him\nTo raise a spirit in his mistress' circle\nOf some strange nature, letting it there stand\nTill she had laid it and conjured it down;\nThat were some spite: my invocation\nIs fair and honest, and in his mistress' name\nI conjure only but to raise up him.\n\nBENVOLIO:\nCome, he hath hid himself among these trees,\nTo be consorted with the humorous night:\nBlind is his love and best befits the dark.\n\nMERCUTIO:\nIf love be blind, love cannot hit the mark.\nNow will he sit under a medlar tree,\nAnd wish his mistress were that kind of fruit\nAs maids call medlars, when they laugh alone.\nRomeo, that she were, O, that she were\nAn open et caetera, thou a poperin pear!\nRomeo, good night: I'll to my truckle-bed;\nThis field-bed is too cold for me to sleep:\nCome, shall we go?\n\nBENVOLIO:\nGo, then; for 'tis in vain\nTo seek him here that means not to be found.\n\nROMEO:\nHe jests at scars that never felt a wound.\nBut, soft! what light through yonder window breaks?\nIt is the east, and Juliet is the sun.\nArise, fair sun, and kill the envious moon,\nWho is already sick and pale with grief,\nThat thou her maid art far more fair than she:\nBe not her maid, since she is envious;\nHer vestal livery is but sick and green\nAnd none but fools do wear it; cast it off.\nIt is my lady, O, it is my love!\nO, that she knew she were!\nShe speaks yet she says nothing: what of that?\nHer eye discourses; I will answer it.\nI am too bold, 'tis not to me she speaks:\nTwo of the fairest stars in all the heaven,\nHaving some business, do entreat her eyes\nTo twinkle in their spheres till they return.\nWhat if her eyes were there, they in her head?\nThe brightness of her cheek would shame those stars,\nAs daylight doth a lamp; her eyes in heaven\nWould through the airy region stream so bright\nThat birds would sing and think it were not night.\nSee, how she leans her cheek upon her hand!\nO, that I were a glove upon that hand,\nThat I might touch that cheek!\n\nJULIET:\nAy me!\n\nROMEO:\nShe speaks:\nO, speak again, bright angel! for thou art\nAs glorious to this night, being o'er my head\nAs is a winged messenger of heaven\nUnto the white-upturned wondering eyes\nOf mortals that fall back to gaze on him\nWhen he bestrides the lazy-pacing clouds\nAnd sails upon the bosom of the air.\n\nJULIET:\nO Romeo, Romeo! wherefore art thou Romeo?\nDeny thy father and refuse thy name;\nOr, if thou wilt not, be but sworn my love,\nAnd I'll no longer be a Capulet.\n\nROMEO:\n\nJULIET:\n'Tis but thy name that is my enemy;\nThou art thyself, though not a Montague.\nWhat's Montague? it is nor hand, nor foot,\nNor arm, nor face, nor any other part\nBelonging to a man. O, be some other name!\nWhat's in a name? that which we call a rose\nBy any other name would smell as sweet;\nSo Romeo would, were he not Romeo call'd,\nRetain that dear perfection which he owes\nWithout that title. Romeo, doff thy name,\nAnd for that name which is no part of thee\nTake all myself.\n\nROMEO:\nI take thee at thy word:\nCall me but love, and I'll be new baptized;\nHenceforth I never will be Romeo.\n\nJULIET:\nWhat man art thou that thus bescreen'd in night\nSo stumblest on my counsel?\n\nROMEO:\nBy a name\nI know not how to tell thee who I am:\nMy name, dear saint, is hateful to myself,\nBecause it is an enemy to thee;\nHad I it written, I would tear the word.\n\nJULIET:\nMy ears have not yet drunk a hundred words\nOf that tongue's utterance, yet I know the sound:\nArt thou not Romeo and a Montague?\n\nROMEO:\nNeither, fair saint, if either thee dislike.\n\nJULIET:\nHow camest thou hither, tell me, and wherefore?\nThe orchard walls are high and hard to climb,\nAnd the place death, considering who thou art,\nIf any of my kinsmen find thee here.\n\nROMEO:\nWith love's light wings did I o'er-perch these walls;\nFor stony limits cannot hold love out,\nAnd what love can do that dares love attempt;\nTherefore thy kinsmen are no let to me.\n\nJULIET:\nIf they do see thee, they will murder thee.\n\nROMEO:\nAlack, there lies more peril in thine eye\nThan twenty of their swords: look thou but sweet,\nAnd I am proof against their enmity.\n\nJULIET:\nI would not for the world they saw thee here.\n\nROMEO:\nI have night's cloak to hide me from their sight;\nAnd but thou love me, let them find me here:\nMy life were better ended by their hate,\nThan death prorogued, wanting of thy love.\n\nJULIET:\nBy whose direction found'st thou out this place?\n\nROMEO:\nBy love, who first did prompt me to inquire;\nHe lent me counsel and I lent him eyes.\nI am no pilot; yet, wert thou as far\nAs that vast shore wash'd with the farthest sea,\nI would adventure for such merchandise.\n\nJULIET:\nThou know'st the mask of night is on my face,\nElse would a maiden blush bepaint my cheek\nFor that which thou hast heard me speak to-night\nFain would I dwell on form, fain, fain deny\nWhat I have spoke: but farewell compliment!\nDost thou love me? I know thou wilt say 'Ay,'\nAnd I will take thy word: yet if thou swear'st,\nThou mayst prove false; at lovers' perjuries\nThen say, Jove laughs. O gentle Romeo,\nIf thou dost love, pronounce it faithfully:\nOr if thou think'st I am too quickly won,\nI'll frown and be perverse an say thee nay,\nSo thou wilt woo; but else, not for the world.\nIn truth, fair Montague, I am too fond,\nAnd therefore thou mayst think my 'havior light:\nBut trust me, gentleman, I'll prove more true\nThan those that have more cunning to be strange.\nI should have been more strange, I must confess,\nBut that thou overheard'st, ere I was ware,\nMy true love's passion: therefore pardon me,\nAnd not impute this yielding to light love,\nWhich the dark night hath so discovered.\n\nROMEO:\nLady, by yonder blessed moon I swear\nThat tips with silver all these fruit-tree tops--\n\nJULIET:\nO, swear not by the moon, the inconstant moon,\nThat monthly changes in her circled orb,\nLest that thy love prove likewise variable.\n\nROMEO:\nWhat shall I swear by?\n\nJULIET:\nDo not swear at all;\nOr, if thou wilt, swear by thy gracious self,\nWhich is the god of my idolatry,\nAnd I'll believe thee.\n\nROMEO:\nIf my heart's dear love--\n\nJULIET:\nWell, do not swear: although I joy in thee,\nI have no joy of this contract to-night:\nIt is too rash, too unadvised, too sudden;\nToo like the lightning, which doth cease to be\nEre one can say 'It lightens.' Sweet, good night!\nThis bud of love, by summer's ripening breath,\nMay prove a beauteous flower when next we meet.\nGood night, good night! as sweet repose and rest\nCome to thy heart as that within my breast!\n\nROMEO:\nO, wilt thou leave me so unsatisfied?\n\nJULIET:\nWhat satisfaction canst thou have to-night?\n\nROMEO:\nThe exchange of thy love's faithful vow for mine.\n\nJULIET:\nI gave thee mine before thou didst request it:\nAnd yet I would it were to give again.\n\nROMEO:\nWouldst thou withdraw it? for what purpose, love?\n\nJULIET:\nBut to be frank, and give it thee again.\nAnd yet I wish but for the thing I have:\nMy bounty is as boundless as the sea,\nMy love as deep; the more I give to thee,\nThe more I have, for both are infinite.\nI hear some noise within; dear love, adieu!\nAnon, good nurse! Sweet Montague, be true.\nStay but a little, I will come again.\n\nROMEO:\nO blessed, blessed night! I am afeard.\nBeing in night, all this is but a dream,\nToo flattering-sweet to be substantial.\n\nJULIET:\nThree words, dear Romeo, and good night indeed.\nIf that thy bent of love be honourable,\nThy purpose marriage, send me word to-morrow,\nBy one that I'll procure to come to thee,\nWhere and what time thou wilt perform the rite;\nAnd all my fortunes at thy foot I'll lay\nAnd follow thee my lord throughout the world.\n\nNurse:\n\nJULIET:\nI come, anon.--But if thou mean'st not well,\nI do beseech thee--\n\nNurse:\n\nJULIET:\nBy and by, I come:--\nTo cease thy suit, and leave me to my grief:\nTo-morrow will I send.\n\nROMEO:\nSo thrive my soul--\n\nJULIET:\nA thousand times good night!\n\nROMEO:\nA thousand times the worse, to want thy light.\nLove goes toward love, as schoolboys from\ntheir books,\nBut love from love, toward school with heavy looks.\n\nJULIET:\nHist! Romeo, hist! O, for a falconer's voice,\nTo lure this tassel-gentle back again!\nBondage is hoarse, and may not speak aloud;\nElse would I tear the cave where Echo lies,\nAnd make her airy tongue more hoarse than mine,\nWith repetition of my Romeo's name.\n\nROMEO:\nIt is my soul that calls upon my name:\nHow silver-sweet sound lovers' tongues by night,\nLike softest music to attending ears!\n\nJULIET:\nRomeo!\n\nROMEO:\nMy dear?\n\nJULIET:\nAt what o'clock to-morrow\nShall I send to thee?\n\nROMEO:\nAt the hour of nine.\n\nJULIET:\nI will not fail: 'tis twenty years till then.\nI have forgot why I did call thee back.\n\nROMEO:\nLet me stand here till thou remember it.\n\nJULIET:\nI shall forget, to have thee still stand there,\nRemembering how I love thy company.\n\nROMEO:\nAnd I'll still stay, to have thee still forget,\nForgetting any other home but this.\n\nJULIET:\n'Tis almost morning; I would have thee gone:\nAnd yet no further than a wanton's bird;\nWho lets it hop a little from her hand,\nLike a poor prisoner in his twisted gyves,\nAnd with a silk thread plucks it back again,\nSo loving-jealous of his liberty.\n\nROMEO:\nI would I were thy bird.\n\nJULIET:\nSweet, so would I:\nYet I should kill thee with much cherishing.\nGood night, good night! parting is such\nsweet sorrow,\nThat I shall say good night till it be morrow.\n\nROMEO:\nSleep dwell upon thine eyes, peace in thy breast!\nWould I were sleep and peace, so sweet to rest!\nHence will I to my ghostly father's cell,\nHis help to crave, and my dear hap to tell.\n\nFRIAR LAURENCE:\nThe grey-eyed morn smiles on the frowning night,\nChequering the eastern clouds with streaks of light,\nAnd flecked darkness like a drunkard reels\nFrom forth day's path and Titan's fiery wheels:\nNow, ere the sun advance his burning eye,\nThe day to cheer and night's dank dew to dry,\nI must up-fill this osier cage of ours\nWith baleful weeds and precious-juiced flowers.\nThe earth that's nature's mother is her tomb;\nWhat is her burying grave that is her womb,\nAnd from her womb children of divers kind\nWe sucking on her natural bosom find,\nMany for many virtues excellent,\nNone but for some and yet all different.\nO, mickle is the powerful grace that lies\nIn herbs, plants, stones, and their true qualities:\nFor nought so vile that on the earth doth live\nBut to the earth some special good doth give,\nNor aught so good but strain'd from that fair use\nRevolts from true birth, stumbling on abuse:\nVirtue itself turns vice, being misapplied;\nAnd vice sometimes by action dignified.\nWithin the infant rind of this small flower\nPoison hath residence and medicine power:\nFor this, being smelt, with that part cheers each part;\nBeing tasted, slays all senses with the heart.\nTwo such opposed kings encamp them still\nIn man as well as herbs, grace and rude will;\nAnd where the worser is predominant,\nFull soon the canker death eats up that plant.\n\nROMEO:\nGood morrow, father.\n\nFRIAR LAURENCE:\nBenedicite!\nWhat early tongue so sweet saluteth me?\nYoung son, it argues a distemper'd head\nSo soon to bid good morrow to thy bed:\nCare keeps his watch in every old man's eye,\nAnd where care lodges, sleep will never lie;\nBut where unbruised youth with unstuff'd brain\nDoth couch his limbs, there golden sleep doth reign:\nTherefore thy earliness doth me assure\nThou art up-roused by some distemperature;\nOr if not so, then here I hit it right,\nOur Romeo hath not been in bed to-night.\n\nROMEO:\nThat last is true; the sweeter rest was mine.\n\nFRIAR LAURENCE:\nGod pardon sin! wast thou with Rosaline?\n\nROMEO:\nWith Rosaline, my ghostly father? no;\nI have forgot that name, and that name's woe.\n\nFRIAR LAURENCE:\nThat's my good son: but where hast thou been, then?\n\nROMEO:\nI'll tell thee, ere thou ask it me again.\nI have been feasting with mine enemy,\nWhere on a sudden one hath wounded me,\nThat's by me wounded: both our remedies\nWithin thy help and holy physic lies:\nI bear no hatred, blessed man, for, lo,\nMy intercession likewise steads my foe.\n\nFRIAR LAURENCE:\nBe plain, good son, and homely in thy drift;\nRiddling confession finds but riddling shrift.\n\nROMEO:\nThen plainly know my heart's dear love is set\nOn the fair daughter of rich Capulet:\nAs mine on hers, so hers is set on mine;\nAnd all combined, save what thou must combine\nBy holy marriage: when and where and how\nWe met, we woo'd and made exchange of vow,\nI'll tell thee as we pass; but this I pray,\nThat thou consent to marry us to-day.\n\nFRIAR LAURENCE:\nHoly Saint Francis, what a change is here!\nIs Rosaline, whom thou didst love so dear,\nSo soon forsaken? young men's love then lies\nNot truly in their hearts, but in their eyes.\nJesu Maria, what a deal of brine\nHath wash'd thy sallow cheeks for Rosaline!\nHow much salt water thrown away in waste,\nTo season love, that of it doth not taste!\nThe sun not yet thy sighs from heaven clears,\nThy old groans ring yet in my ancient ears;\nLo, here upon thy cheek the stain doth sit\nOf an old tear that is not wash'd off yet:\nIf e'er thou wast thyself and these woes thine,\nThou and these woes were all for Rosaline:\nAnd art thou changed? pronounce this sentence then,\nWomen may fall, when there's no strength in men.\n\nROMEO:\nThou chid'st me oft for loving Rosaline.\n\nFRIAR LAURENCE:\nFor doting, not for loving, pupil mine.\n\nROMEO:\nAnd bad'st me bury love.\n\nFRIAR LAURENCE:\nNot in a grave,\nTo lay one in, another out to have.\n\nROMEO:\nI pray thee, chide not; she whom I love now\nDoth grace for grace and love for love allow;\nThe other did not so.\n\nFRIAR LAURENCE:\nO, she knew well\nThy love did read by rote and could not spell.\nBut come, young waverer, come, go with me,\nIn one respect I'll thy assistant be;\nFor this alliance may so happy prove,\nTo turn your households' rancour to pure love.\n\nROMEO:\nO, let us hence; I stand on sudden haste.\n\nFRIAR LAURENCE:\nWisely and slow; they stumble that run fast.\n\nMERCUTIO:\nWhere the devil should this Romeo be?\nCame he not home to-night?\n\nBENVOLIO:\nNot to his father's; I spoke with his man.\n\nMERCUTIO:\nAh, that same pale hard-hearted wench, that Rosaline.\nTorments him so, that he will sure run mad.\n\nBENVOLIO:\nTybalt, the kinsman of old Capulet,\nHath sent a letter to his father's house.\n\nMERCUTIO:\nA challenge, on my life.\n\nBENVOLIO:\nRomeo will answer it.\n\nMERCUTIO:\nAny man that can write may answer a letter.\n\nBENVOLIO:\nNay, he will answer the letter's master, how he\ndares, being dared.\n\nMERCUTIO:\nAlas poor Romeo! he is already dead; stabbed with a\nwhite wench's black eye; shot through the ear with a\nlove-song; the very pin of his heart cleft with the\nblind bow-boy's butt-shaft: and is he a man to\nencounter Tybalt?\n\nBENVOLIO:\nWhy, what is Tybalt?\n\nMERCUTIO:\nMore than prince of cats, I can tell you. O, he is\nthe courageous captain of compliments. He fights as\nyou sing prick-song, keeps time, distance, and\nproportion; rests me his minim rest, one, two, and\nthe third in your bosom: the very butcher of a silk\nbutton, a duellist, a duellist; a gentleman of the\nvery first house, of the first and second cause:\nah, the immortal passado! the punto reverso! the\nhai!\n\nBENVOLIO:\nThe what?\n\nMERCUTIO:\nThe pox of such antic, lisping, affecting\nfantasticoes; these new tuners of accents! 'By Jesu,\na very good blade! a very tall man! a very good\nwhore!' Why, is not this a lamentable thing,\ngrandsire, that we should be thus afflicted with\nthese strange flies, these fashion-mongers, these\nperdona-mi's, who stand so much on the new form,\nthat they cannot at ease on the old bench? O, their\nbones, their bones!\n\nBENVOLIO:\nHere comes Romeo, here comes Romeo.\n\nMERCUTIO:\nWithout his roe, like a dried herring: flesh, flesh,\nhow art thou fishified! Now is he for the numbers\nthat Petrarch flowed in: Laura to his lady was but a\nkitchen-wench; marry, she had a better love to\nbe-rhyme her; Dido a dowdy; Cleopatra a gipsy;\nHelen and Hero hildings and harlots; Thisbe a grey\neye or so, but not to the purpose. Signior\nRomeo, bon jour! there's a French salutation\nto your French slop. You gave us the counterfeit\nfairly last night.\n\nROMEO:\nGood morrow to you both. What counterfeit did I give you?\n\nMERCUTIO:\nThe ship, sir, the slip; can you not conceive?\n\nROMEO:\nPardon, good Mercutio, my business was great; and in\nsuch a case as mine a man may strain courtesy.\n\nMERCUTIO:\nThat's as much as to say, such a case as yours\nconstrains a man to bow in the hams.\n\nROMEO:\nMeaning, to court'sy.\n\nMERCUTIO:\nThou hast most kindly hit it.\n\nROMEO:\nA most courteous exposition.\n\nMERCUTIO:\nNay, I am the very pink of courtesy.\n\nROMEO:\nPink for flower.\n\nMERCUTIO:\nRight.\n\nROMEO:\nWhy, then is my pump well flowered.\n\nMERCUTIO:\nWell said: follow me this jest now till thou hast\nworn out thy pump, that when the single sole of it\nis worn, the jest may remain after the wearing sole singular.\n\nROMEO:\nO single-soled jest, solely singular for the\nsingleness.\n\nMERCUTIO:\nCome between us, good Benvolio; my wits faint.\n\nROMEO:\nSwitch and spurs, switch and spurs; or I'll cry a match.\n\nMERCUTIO:\nNay, if thy wits run the wild-goose chase, I have\ndone, for thou hast more of the wild-goose in one of\nthy wits than, I am sure, I have in my whole five:\nwas I with you there for the goose?\n\nROMEO:\nThou wast never with me for any thing when thou wast\nnot there for the goose.\n\nMERCUTIO:\nI will bite thee by the ear for that jest.\n\nROMEO:\nNay, good goose, bite not.\n\nMERCUTIO:\nThy wit is a very bitter sweeting; it is a most\nsharp sauce.\n\nROMEO:\nAnd is it not well served in to a sweet goose?\n\nMERCUTIO:\nO here's a wit of cheveril, that stretches from an\ninch narrow to an ell broad!\n\nROMEO:\nI stretch it out for that word 'broad;' which added\nto the goose, proves thee far and wide a broad goose.\n\nMERCUTIO:\nWhy, is not this better now than groaning for love?\nnow art thou sociable, now art thou Romeo; now art\nthou what thou art, by art as well as by nature:\nfor this drivelling love is like a great natural,\nthat runs lolling up and down to hide his bauble in a hole.\n\nBENVOLIO:\nStop there, stop there.\n\nMERCUTIO:\nThou desirest me to stop in my tale against the hair.\n\nBENVOLIO:\nThou wouldst else have made thy tale large.\n\nMERCUTIO:\nO, thou art deceived; I would have made it short:\nfor I was come to the whole depth of my tale; and\nmeant, indeed, to occupy the argument no longer.\n\nROMEO:\nHere's goodly gear!\n\nMERCUTIO:\nA sail, a sail!\n\nBENVOLIO:\nTwo, two; a shirt and a smock.\n\nNurse:\nPeter!\n\nPETER:\nAnon!\n\nNurse:\nMy fan, Peter.\n\nMERCUTIO:\nGood Peter, to hide her face; for her fan's the\nfairer face.\n\nNurse:\nGod ye good morrow, gentlemen.\n\nMERCUTIO:\nGod ye good den, fair gentlewoman.\n\nNurse:\nIs it good den?\n\nMERCUTIO:\n'Tis no less, I tell you, for the bawdy hand of the\ndial is now upon the prick of noon.\n\nNurse:\nOut upon you! what a man are you!\n\nROMEO:\nOne, gentlewoman, that God hath made for himself to\nmar.\n\nNurse:\nBy my troth, it is well said; 'for himself to mar,'\nquoth a'? Gentlemen, can any of you tell me where I\nmay find the young Romeo?\n\nROMEO:\nI can tell you; but young Romeo will be older when\nyou have found him than he was when you sought him:\nI am the youngest of that name, for fault of a worse.\n\nNurse:\nYou say well.\n\nMERCUTIO:\nYea, is the worst well? very well took, i' faith;\nwisely, wisely.\n\nNurse:\nif you be he, sir, I desire some confidence with\nyou.\n\nBENVOLIO:\nShe will indite him to some supper.\n\nMERCUTIO:\nA bawd, a bawd, a bawd! so ho!\n\nROMEO:\nWhat hast thou found?\n\nMERCUTIO:\nNo hare, sir; unless a hare, sir, in a lenten pie,\nthat is something stale and hoar ere it be spent.\nAn old hare hoar,\nAnd an old hare hoar,\nIs very good meat in lent\nBut a hare that is hoar\nIs too much for a score,\nWhen it hoars ere it be spent.\nRomeo, will you come to your father's? we'll\nto dinner, thither.\n\nROMEO:\nI will follow you.\n\nMERCUTIO:\nFarewell, ancient lady; farewell,\n'lady, lady, lady.'\n\nNurse:\nMarry, farewell! I pray you, sir, what saucy\nmerchant was this, that was so full of his ropery?\n\nROMEO:\nA gentleman, nurse, that loves to hear himself talk,\nand will speak more in a minute than he will stand\nto in a month.\n\nNurse:\nAn a' speak any thing against me, I'll take him\ndown, an a' were lustier than he is, and twenty such\nJacks; and if I cannot, I'll find those that shall.\nScurvy knave! I am none of his flirt-gills; I am\nnone of his skains-mates. And thou must stand by\ntoo, and suffer every knave to use me at his pleasure?\n\nPETER:\nI saw no man use you a pleasure; if I had, my weapon\nshould quickly have been out, I warrant you: I dare\ndraw as soon as another man, if I see occasion in a\ngood quarrel, and the law on my side.\n\nNurse:\nNow, afore God, I am so vexed, that every part about\nme quivers. Scurvy knave! Pray you, sir, a word:\nand as I told you, my young lady bade me inquire you\nout; what she bade me say, I will keep to myself:\nbut first let me tell ye, if ye should lead her into\na fool's paradise, as they say, it were a very gross\nkind of behavior, as they say: for the gentlewoman\nis young; and, therefore, if you should deal double\nwith her, truly it were an ill thing to be offered\nto any gentlewoman, and very weak dealing.\n\nROMEO:\nNurse, commend me to thy lady and mistress. I\nprotest unto thee--\n\nNurse:\nGood heart, and, i' faith, I will tell her as much:\nLord, Lord, she will be a joyful woman.\n\nROMEO:\nWhat wilt thou tell her, nurse? thou dost not mark me.\n\nNurse:\nI will tell her, sir, that you do protest; which, as\nI take it, is a gentlemanlike offer.\n\nROMEO:\nBid her devise\nSome means to come to shrift this afternoon;\nAnd there she shall at Friar Laurence' cell\nBe shrived and married. Here is for thy pains.\n\nNurse:\nNo truly sir; not a penny.\n\nROMEO:\nGo to; I say you shall.\n\nNurse:\nThis afternoon, sir? well, she shall be there.\n\nROMEO:\nAnd stay, good nurse, behind the abbey wall:\nWithin this hour my man shall be with thee\nAnd bring thee cords made like a tackled stair;\nWhich to the high top-gallant of my joy\nMust be my convoy in the secret night.\nFarewell; be trusty, and I'll quit thy pains:\nFarewell; commend me to thy mistress.\n\nNurse:\nNow God in heaven bless thee! Hark you, sir.\n\nROMEO:\nWhat say'st thou, my dear nurse?\n\nNurse:\nIs your man secret? Did you ne'er hear say,\nTwo may keep counsel, putting one away?\n\nROMEO:\nI warrant thee, my man's as true as steel.\n\nNURSE:\nWell, sir; my mistress is the sweetest lady--Lord,\nLord! when 'twas a little prating thing:--O, there\nis a nobleman in town, one Paris, that would fain\nlay knife aboard; but she, good soul, had as lief\nsee a toad, a very toad, as see him. I anger her\nsometimes and tell her that Paris is the properer\nman; but, I'll warrant you, when I say so, she looks\nas pale as any clout in the versal world. Doth not\nrosemary and Romeo begin both with a letter?\n\nROMEO:\nAy, nurse; what of that? both with an R.\n\nNurse:\nAh. mocker! that's the dog's name; R is for\nthe--No; I know it begins with some other\nletter:--and she hath the prettiest sententious of\nit, of you and rosemary, that it would do you good\nto hear it.\n\nROMEO:\nCommend me to thy lady.\n\nNurse:\nAy, a thousand times.\nPeter!\n\nPETER:\nAnon!\n\nNurse:\nPeter, take my fan, and go before and apace.\n\nJULIET:\nThe clock struck nine when I did send the nurse;\nIn half an hour she promised to return.\nPerchance she cannot meet him: that's not so.\nO, she is lame! love's heralds should be thoughts,\nWhich ten times faster glide than the sun's beams,\nDriving back shadows over louring hills:\nTherefore do nimble-pinion'd doves draw love,\nAnd therefore hath the wind-swift Cupid wings.\nNow is the sun upon the highmost hill\nOf this day's journey, and from nine till twelve\nIs three long hours, yet she is not come.\nHad she affections and warm youthful blood,\nShe would be as swift in motion as a ball;\nMy words would bandy her to my sweet love,\nAnd his to me:\nBut old folks, many feign as they were dead;\nUnwieldy, slow, heavy and pale as lead.\nO God, she comes!\nO honey nurse, what news?\nHast thou met with him? Send thy man away.\n\nNurse:\nPeter, stay at the gate.\n\nJULIET:\nNow, good sweet nurse,--O Lord, why look'st thou sad?\nThough news be sad, yet tell them merrily;\nIf good, thou shamest the music of sweet news\nBy playing it to me with so sour a face.\n\nNurse:\nI am a-weary, give me leave awhile:\nFie, how my bones ache! what a jaunt have I had!\n\nJULIET:\nI would thou hadst my bones, and I thy news:\nNay, come, I pray thee, speak; good, good nurse, speak.\n\nNurse:\nJesu, what haste? can you not stay awhile?\nDo you not see that I am out of breath?\n\nJULIET:\nHow art thou out of breath, when thou hast breath\nTo say to me that thou art out of breath?\nThe excuse that thou dost make in this delay\nIs longer than the tale thou dost excuse.\nIs thy news good, or bad? answer to that;\nSay either, and I'll stay the circumstance:\nLet me be satisfied, is't good or bad?\n\nNurse:\nWell, you have made a simple choice; you know not\nhow to choose a man: Romeo! no, not he; though his\nface be better than any man's, yet his leg excels\nall men's; and for a hand, and a foot, and a body,\nthough they be not to be talked on, yet they are\npast compare: he is not the flower of courtesy,\nbut, I'll warrant him, as gentle as a lamb. Go thy\nways, wench; serve God. What, have you dined at home?\n\nJULIET:\nNo, no: but all this did I know before.\nWhat says he of our marriage? what of that?\n\nNurse:\nLord, how my head aches! what a head have I!\nIt beats as it would fall in twenty pieces.\nMy back o' t' other side,--O, my back, my back!\nBeshrew your heart for sending me about,\nTo catch my death with jaunting up and down!\n\nJULIET:\nI' faith, I am sorry that thou art not well.\nSweet, sweet, sweet nurse, tell me, what says my love?\n\nNurse:\nYour love says, like an honest gentleman, and a\ncourteous, and a kind, and a handsome, and, I\nwarrant, a virtuous,--Where is your mother?\n\nJULIET:\nWhere is my mother! why, she is within;\nWhere should she be? How oddly thou repliest!\n'Your love says, like an honest gentleman,\nWhere is your mother?'\n\nNurse:\nO God's lady dear!\nAre you so hot? marry, come up, I trow;\nIs this the poultice for my aching bones?\nHenceforward do your messages yourself.\n\nJULIET:\nHere's such a coil! come, what says Romeo?\n\nNurse:\nHave you got leave to go to shrift to-day?\n\nJULIET:\nI have.\n\nNurse:\nThen hie you hence to Friar Laurence' cell;\nThere stays a husband to make you a wife:\nNow comes the wanton blood up in your cheeks,\nThey'll be in scarlet straight at any news.\nHie you to church; I must another way,\nTo fetch a ladder, by the which your love\nMust climb a bird's nest soon when it is dark:\nI am the drudge and toil in your delight,\nBut you shall bear the burden soon at night.\nGo; I'll to dinner: hie you to the cell.\n\nJULIET:\nHie to high fortune! Honest nurse, farewell.\n\nFRIAR LAURENCE:\nSo smile the heavens upon this holy act,\nThat after hours with sorrow chide us not!\n\nROMEO:\nAmen, amen! but come what sorrow can,\nIt cannot countervail the exchange of joy\nThat one short minute gives me in her sight:\nDo thou but close our hands with holy words,\nThen love-devouring death do what he dare;\nIt is enough I may but call her mine.\n\nFRIAR LAURENCE:\nThese violent delights have violent ends\nAnd in their triumph die, like fire and powder,\nWhich as they kiss consume: the sweetest honey\nIs loathsome in his own deliciousness\nAnd in the taste confounds the appetite:\nTherefore love moderately; long love doth so;\nToo swift arrives as tardy as too slow.\nHere comes the lady: O, so light a foot\nWill ne'er wear out the everlasting flint:\nA lover may bestride the gossamer\nThat idles in the wanton summer air,\nAnd yet not fall; so light is vanity.\n\nJULIET:\nGood even to my ghostly confessor.\n\nFRIAR LAURENCE:\nRomeo shall thank thee, daughter, for us both.\n\nJULIET:\nAs much to him, else is his thanks too much.\n\nROMEO:\nAh, Juliet, if the measure of thy joy\nBe heap'd like mine and that thy skill be more\nTo blazon it, then sweeten with thy breath\nThis neighbour air, and let rich music's tongue\nUnfold the imagined happiness that both\nReceive in either by this dear encounter.\n\nJULIET:\nConceit, more rich in matter than in words,\nBrags of his substance, not of ornament:\nThey are but beggars that can count their worth;\nBut my true love is grown to such excess\nI cannot sum up sum of half my wealth.\n\nFRIAR LAURENCE:\nCome, come with me, and we will make short work;\nFor, by your leaves, you shall not stay alone\nTill holy church incorporate two in one.\n\nBENVOLIO:\nI pray thee, good Mercutio, let's retire:\nThe day is hot, the Capulets abroad,\nAnd, if we meet, we shall not scape a brawl;\nFor now, these hot days, is the mad blood stirring.\n\nMERCUTIO:\nThou art like one of those fellows that when he\nenters the confines of a tavern claps me his sword\nupon the table and says 'God send me no need of\nthee!' and by the operation of the second cup draws\nit on the drawer, when indeed there is no need.\n\nBENVOLIO:\nAm I like such a fellow?\n\nMERCUTIO:\nCome, come, thou art as hot a Jack in thy mood as\nany in Italy, and as soon moved to be moody, and as\nsoon moody to be moved.\n\nBENVOLIO:\nAnd what to?\n\nMERCUTIO:\nNay, an there were two such, we should have none\nshortly, for one would kill the other. Thou! why,\nthou wilt quarrel with a man that hath a hair more,\nor a hair less, in his beard, than thou hast: thou\nwilt quarrel with a man for cracking nuts, having no\nother reason but because thou hast hazel eyes: what\neye but such an eye would spy out such a quarrel?\nThy head is as fun of quarrels as an egg is full of\nmeat, and yet thy head hath been beaten as addle as\nan egg for quarrelling: thou hast quarrelled with a\nman for coughing in the street, because he hath\nwakened thy dog that hath lain asleep in the sun:\ndidst thou not fall out with a tailor for wearing\nhis new doublet before Easter? with another, for\ntying his new shoes with old riband? and yet thou\nwilt tutor me from quarrelling!\n\nBENVOLIO:\nAn I were so apt to quarrel as thou art, any man\nshould buy the fee-simple of my life for an hour and a quarter.\n\nMERCUTIO:\nThe fee-simple! O simple!\n\nBENVOLIO:\nBy my head, here come the Capulets.\n\nMERCUTIO:\nBy my heel, I care not.\n\nTYBALT:\nFollow me close, for I will speak to them.\nGentlemen, good den: a word with one of you.\n\nMERCUTIO:\nAnd but one word with one of us? couple it with\nsomething; make it a word and a blow.\n\nTYBALT:\nYou shall find me apt enough to that, sir, an you\nwill give me occasion.\n\nMERCUTIO:\nCould you not take some occasion without giving?\n\nTYBALT:\nMercutio, thou consort'st with Romeo,--\n\nMERCUTIO:\nConsort! what, dost thou make us minstrels? an\nthou make minstrels of us, look to hear nothing but\ndiscords: here's my fiddlestick; here's that shall\nmake you dance. 'Zounds, consort!\n\nBENVOLIO:\nWe talk here in the public haunt of men:\nEither withdraw unto some private place,\nAnd reason coldly of your grievances,\nOr else depart; here all eyes gaze on us.\n\nMERCUTIO:\nMen's eyes were made to look, and let them gaze;\nI will not budge for no man's pleasure, I.\n\nTYBALT:\nWell, peace be with you, sir: here comes my man.\n\nMERCUTIO:\nBut I'll be hanged, sir, if he wear your livery:\nMarry, go before to field, he'll be your follower;\nYour worship in that sense may call him 'man.'\n\nTYBALT:\nRomeo, the hate I bear thee can afford\nNo better term than this,--thou art a villain.\n\nROMEO:\nTybalt, the reason that I have to love thee\nDoth much excuse the appertaining rage\nTo such a greeting: villain am I none;\nTherefore farewell; I see thou know'st me not.\n\nTYBALT:\nBoy, this shall not excuse the injuries\nThat thou hast done me; therefore turn and draw.\n\nROMEO:\nI do protest, I never injured thee,\nBut love thee better than thou canst devise,\nTill thou shalt know the reason of my love:\nAnd so, good Capulet,--which name I tender\nAs dearly as my own,--be satisfied.\n\nMERCUTIO:\nO calm, dishonourable, vile submission!\nAlla stoccata carries it away.\nTybalt, you rat-catcher, will you walk?\n\nTYBALT:\nWhat wouldst thou have with me?\n\nMERCUTIO:\nGood king of cats, nothing but one of your nine\nlives; that I mean to make bold withal, and as you\nshall use me hereafter, drybeat the rest of the\neight. Will you pluck your sword out of his pitcher\nby the ears? make haste, lest mine be about your\nears ere it be out.\n\nTYBALT:\nI am for you.\n\nROMEO:\nGentle Mercutio, put thy rapier up.\n\nMERCUTIO:\nCome, sir, your passado.\n\nROMEO:\nDraw, Benvolio; beat down their weapons.\nGentlemen, for shame, forbear this outrage!\nTybalt, Mercutio, the prince expressly hath\nForbidden bandying in Verona streets:\nHold, Tybalt! good Mercutio!\n\nMERCUTIO:\nI am hurt.\nA plague o' both your houses! I am sped.\nIs he gone, and hath nothing?\n\nBENVOLIO:\nWhat, art thou hurt?\n\nMERCUTIO:\nAy, ay, a scratch, a scratch; marry, 'tis enough.\nWhere is my page? Go, villain, fetch a surgeon.\n\nROMEO:\nCourage, man; the hurt cannot be much.\n\nMERCUTIO:\nNo, 'tis not so deep as a well, nor so wide as a\nchurch-door; but 'tis enough,'twill serve: ask for\nme to-morrow, and you shall find me a grave man. I\nam peppered, I warrant, for this world. A plague o'\nboth your houses! 'Zounds, a dog, a rat, a mouse, a\ncat, to scratch a man to death! a braggart, a\nrogue, a villain, that fights by the book of\narithmetic! Why the devil came you between us? I\nwas hurt under your arm.\n\nROMEO:\nI thought all for the best.\n\nMERCUTIO:\nHelp me into some house, Benvolio,\nOr I shall faint. A plague o' both your houses!\nThey have made worms' meat of me: I have it,\nAnd soundly too: your houses!\n\nROMEO:\nThis gentleman, the prince's near ally,\nMy very friend, hath got his mortal hurt\nIn my behalf; my reputation stain'd\nWith Tybalt's slander,--Tybalt, that an hour\nHath been my kinsman! O sweet Juliet,\nThy beauty hath made me effeminate\nAnd in my temper soften'd valour's steel!\n\nBENVOLIO:\nO Romeo, Romeo, brave Mercutio's dead!\nThat gallant spirit hath aspired the clouds,\nWhich too untimely here did scorn the earth.\n\nROMEO:\nThis day's black fate on more days doth depend;\nThis but begins the woe, others must end.\n\nBENVOLIO:\nHere comes the furious Tybalt back again.\n\nROMEO:\nAlive, in triumph! and Mercutio slain!\nAway to heaven, respective lenity,\nAnd fire-eyed fury be my conduct now!\nNow, Tybalt, take the villain back again,\nThat late thou gavest me; for Mercutio's soul\nIs but a little way above our heads,\nStaying for thine to keep him company:\nEither thou, or I, or both, must go with him.\n\nTYBALT:\nThou, wretched boy, that didst consort him here,\nShalt with him hence.\n\nROMEO:\nThis shall determine that.\n\nBENVOLIO:\nRomeo, away, be gone!\nThe citizens are up, and Tybalt slain.\nStand not amazed: the prince will doom thee death,\nIf thou art taken: hence, be gone, away!\n\nROMEO:\nO, I am fortune's fool!\n\nBENVOLIO:\nWhy dost thou stay?\n\nFirst Citizen:\nWhich way ran he that kill'd Mercutio?\nTybalt, that murderer, which way ran he?\n\nBENVOLIO:\nThere lies that Tybalt.\n\nFirst Citizen:\nUp, sir, go with me;\nI charge thee in the princes name, obey.\n\nPRINCE:\nWhere are the vile beginners of this fray?\n\nBENVOLIO:\nO noble prince, I can discover all\nThe unlucky manage of this fatal brawl:\nThere lies the man, slain by young Romeo,\nThat slew thy kinsman, brave Mercutio.\n\nLADY CAPULET:\nTybalt, my cousin! O my brother's child!\nO prince! O cousin! husband! O, the blood is spilt\nO my dear kinsman! Prince, as thou art true,\nFor blood of ours, shed blood of Montague.\nO cousin, cousin!\n\nPRINCE:\nBenvolio, who began this bloody fray?\n\nBENVOLIO:\nTybalt, here slain, whom Romeo's hand did slay;\nRomeo that spoke him fair, bade him bethink\nHow nice the quarrel was, and urged withal\nYour high displeasure: all this uttered\nWith gentle breath, calm look, knees humbly bow'd,\nCould not take truce with the unruly spleen\nOf Tybalt deaf to peace, but that he tilts\nWith piercing steel at bold Mercutio's breast,\nWho all as hot, turns deadly point to point,\nAnd, with a martial scorn, with one hand beats\nCold death aside, and with the other sends\nIt back to Tybalt, whose dexterity,\nRetorts it: Romeo he cries aloud,\n'Hold, friends! friends, part!' and, swifter than\nhis tongue,\nHis agile arm beats down their fatal points,\nAnd 'twixt them rushes; underneath whose arm\nAn envious thrust from Tybalt hit the life\nOf stout Mercutio, and then Tybalt fled;\nBut by and by comes back to Romeo,\nWho had but newly entertain'd revenge,\nAnd to 't they go like lightning, for, ere I\nCould draw to part them, was stout Tybalt slain.\nAnd, as he fell, did Romeo turn and fly.\nThis is the truth, or let Benvolio die.\n\nLADY CAPULET:\nHe is a kinsman to the Montague;\nAffection makes him false; he speaks not true:\nSome twenty of them fought in this black strife,\nAnd all those twenty could but kill one life.\nI beg for justice, which thou, prince, must give;\nRomeo slew Tybalt, Romeo must not live.\n\nPRINCE:\nRomeo slew him, he slew Mercutio;\nWho now the price of his dear blood doth owe?\n\nMONTAGUE:\nNot Romeo, prince, he was Mercutio's friend;\nHis fault concludes but what the law should end,\nThe life of Tybalt.\n\nPRINCE:\nAnd for that offence\nImmediately we do exile him hence:\nI have an interest in your hate's proceeding,\nMy blood for your rude brawls doth lie a-bleeding;\nBut I'll amerce you with so strong a fine\nThat you shall all repent the loss of mine:\nI will be deaf to pleading and excuses;\nNor tears nor prayers shall purchase out abuses:\nTherefore use none: let Romeo hence in haste,\nElse, when he's found, that hour is his last.\nBear hence this body and attend our will:\nMercy but murders, pardoning those that kill.\n\nJULIET:\nGallop apace, you fiery-footed steeds,\nTowards Phoebus' lodging: such a wagoner\nAs Phaethon would whip you to the west,\nAnd bring in cloudy night immediately.\nSpread thy close curtain, love-performing night,\nThat runaway's eyes may wink and Romeo\nLeap to these arms, untalk'd of and unseen.\nLovers can see to do their amorous rites\nBy their own beauties; or, if love be blind,\nIt best agrees with night. Come, civil night,\nThou sober-suited matron, all in black,\nAnd learn me how to lose a winning match,\nPlay'd for a pair of stainless maidenhoods:\nHood my unmann'd blood, bating in my cheeks,\nWith thy black mantle; till strange love, grown bold,\nThink true love acted simple modesty.\nCome, night; come, Romeo; come, thou day in night;\nFor thou wilt lie upon the wings of night\nWhiter than new snow on a raven's back.\nCome, gentle night, come, loving, black-brow'd night,\nGive me my Romeo; and, when he shall die,\nTake him and cut him out in little stars,\nAnd he will make the face of heaven so fine\nThat all the world will be in love with night\nAnd pay no worship to the garish sun.\nO, I have bought the mansion of a love,\nBut not possess'd it, and, though I am sold,\nNot yet enjoy'd: so tedious is this day\nAs is the night before some festival\nTo an impatient child that hath new robes\nAnd may not wear them. O, here comes my nurse,\nAnd she brings news; and every tongue that speaks\nBut Romeo's name speaks heavenly eloquence.\nNow, nurse, what news? What hast thou there? the cords\nThat Romeo bid thee fetch?\n\nNurse:\nAy, ay, the cords.\n\nJULIET:\nAy me! what news? why dost thou wring thy hands?\n\nNurse:\nAh, well-a-day! he's dead, he's dead, he's dead!\nWe are undone, lady, we are undone!\nAlack the day! he's gone, he's kill'd, he's dead!\n\nJULIET:\nCan heaven be so envious?\n\nNurse:\nRomeo can,\nThough heaven cannot: O Romeo, Romeo!\nWho ever would have thought it? Romeo!\n\nJULIET:\nWhat devil art thou, that dost torment me thus?\nThis torture should be roar'd in dismal hell.\nHath Romeo slain himself? say thou but 'I,'\nAnd that bare vowel 'I' shall poison more\nThan the death-darting eye of cockatrice:\nI am not I, if there be such an I;\nOr those eyes shut, that make thee answer 'I.'\nIf he be slain, say 'I'; or if not, no:\nBrief sounds determine of my weal or woe.\n\nNurse:\nI saw the wound, I saw it with mine eyes,--\nGod save the mark!--here on his manly breast:\nA piteous corse, a bloody piteous corse;\nPale, pale as ashes, all bedaub'd in blood,\nAll in gore-blood; I swounded at the sight.\n\nJULIET:\nO, break, my heart! poor bankrupt, break at once!\nTo prison, eyes, ne'er look on liberty!\nVile earth, to earth resign; end motion here;\nAnd thou and Romeo press one heavy bier!\n\nNurse:\nO Tybalt, Tybalt, the best friend I had!\nO courteous Tybalt! honest gentleman!\nThat ever I should live to see thee dead!\n\nJULIET:\nWhat storm is this that blows so contrary?\nIs Romeo slaughter'd, and is Tybalt dead?\nMy dear-loved cousin, and my dearer lord?\nThen, dreadful trumpet, sound the general doom!\nFor who is living, if those two are gone?\n\nNurse:\nTybalt is gone, and Romeo banished;\nRomeo that kill'd him, he is banished.\n\nJULIET:\nO God! did Romeo's hand shed Tybalt's blood?\n\nNurse:\nIt did, it did; alas the day, it did!\n\nJULIET:\nO serpent heart, hid with a flowering face!\nDid ever dragon keep so fair a cave?\nBeautiful tyrant! fiend angelical!\nDove-feather'd raven! wolvish-ravening lamb!\nDespised substance of divinest show!\nJust opposite to what thou justly seem'st,\nA damned saint, an honourable villain!\nO nature, what hadst thou to do in hell,\nWhen thou didst bower the spirit of a fiend\nIn moral paradise of such sweet flesh?\nWas ever book containing such vile matter\nSo fairly bound? O that deceit should dwell\nIn such a gorgeous palace!\n\nNurse:\nThere's no trust,\nNo faith, no honesty in men; all perjured,\nAll forsworn, all naught, all dissemblers.\nAh, where's my man? give me some aqua vitae:\nThese griefs, these woes, these sorrows make me old.\nShame come to Romeo!\n\nJULIET:\nBlister'd be thy tongue\nFor such a wish! he was not born to shame:\nUpon his brow shame is ashamed to sit;\nFor 'tis a throne where honour may be crown'd\nSole monarch of the universal earth.\nO, what a beast was I to chide at him!\n\nNurse:\nWill you speak well of him that kill'd your cousin?\n\nJULIET:\nShall I speak ill of him that is my husband?\nAh, poor my lord, what tongue shall smooth thy name,\nWhen I, thy three-hours wife, have mangled it?\nBut, wherefore, villain, didst thou kill my cousin?\nThat villain cousin would have kill'd my husband:\nBack, foolish tears, back to your native spring;\nYour tributary drops belong to woe,\nWhich you, mistaking, offer up to joy.\nMy husband lives, that Tybalt would have slain;\nAnd Tybalt's dead, that would have slain my husband:\nAll this is comfort; wherefore weep I then?\nSome word there was, worser than Tybalt's death,\nThat murder'd me: I would forget it fain;\nBut, O, it presses to my memory,\nLike damned guilty deeds to sinners' minds:\n'Tybalt is dead, and Romeo--banished;'\nThat 'banished,' that one word 'banished,'\nHath slain ten thousand Tybalts. Tybalt's death\nWas woe enough, if it had ended there:\nOr, if sour woe delights in fellowship\nAnd needly will be rank'd with other griefs,\nWhy follow'd not, when she said 'Tybalt's dead,'\nThy father, or thy mother, nay, or both,\nWhich modern lamentations might have moved?\nBut with a rear-ward following Tybalt's death,\n'Romeo is banished,' to speak that word,\nIs father, mother, Tybalt, Romeo, Juliet,\nAll slain, all dead. 'Romeo is banished!'\nThere is no end, no limit, measure, bound,\nIn that word's death; no words can that woe sound.\nWhere is my father, and my mother, nurse?\n\nNurse:\nWeeping and wailing over Tybalt's corse:\nWill you go to them? I will bring you thither.\n\nJULIET:\nWash they his wounds with tears: mine shall be spent,\nWhen theirs are dry, for Romeo's banishment.\nTake up those cords: poor ropes, you are beguiled,\nBoth you and I; for Romeo is exiled:\nHe made you for a highway to my bed;\nBut I, a maid, die maiden-widowed.\nCome, cords, come, nurse; I'll to my wedding-bed;\nAnd death, not Romeo, take my maidenhead!\n\nNurse:\nHie to your chamber: I'll find Romeo\nTo comfort you: I wot well where he is.\nHark ye, your Romeo will be here at night:\nI'll to him; he is hid at Laurence' cell.\n\nJULIET:\nO, find him! give this ring to my true knight,\nAnd bid him come to take his last farewell.\n\nFRIAR LAURENCE:\nRomeo, come forth; come forth, thou fearful man:\nAffliction is enamour'd of thy parts,\nAnd thou art wedded to calamity.\n\nROMEO:\nFather, what news? what is the prince's doom?\nWhat sorrow craves acquaintance at my hand,\nThat I yet know not?\n\nFRIAR LAURENCE:\nToo familiar\nIs my dear son with such sour company:\nI bring thee tidings of the prince's doom.\n\nROMEO:\nWhat less than dooms-day is the prince's doom?\n\nFRIAR LAURENCE:\nA gentler judgment vanish'd from his lips,\nNot body's death, but body's banishment.\n\nROMEO:\nHa, banishment! be merciful, say 'death;'\nFor exile hath more terror in his look,\nMuch more than death: do not say 'banishment.'\n\nFRIAR LAURENCE:\nHence from Verona art thou banished:\nBe patient, for the world is broad and wide.\n\nROMEO:\nThere is no world without Verona walls,\nBut purgatory, torture, hell itself.\nHence-banished is banish'd from the world,\nAnd world's exile is death: then banished,\nIs death mis-term'd: calling death banishment,\nThou cutt'st my head off with a golden axe,\nAnd smilest upon the stroke that murders me.\n\nFRIAR LAURENCE:\nO deadly sin! O rude unthankfulness!\nThy fault our law calls death; but the kind prince,\nTaking thy part, hath rush'd aside the law,\nAnd turn'd that black word death to banishment:\nThis is dear mercy, and thou seest it not.\n\nROMEO:\n'Tis torture, and not mercy: heaven is here,\nWhere Juliet lives; and every cat and dog\nAnd little mouse, every unworthy thing,\nLive here in heaven and may look on her;\nBut Romeo may not: more validity,\nMore honourable state, more courtship lives\nIn carrion-flies than Romeo: they my seize\nOn the white wonder of dear Juliet's hand\nAnd steal immortal blessing from her lips,\nWho even in pure and vestal modesty,\nStill blush, as thinking their own kisses sin;\nBut Romeo may not; he is banished:\nFlies may do this, but I from this must fly:\nThey are free men, but I am banished.\nAnd say'st thou yet that exile is not death?\nHadst thou no poison mix'd, no sharp-ground knife,\nNo sudden mean of death, though ne'er so mean,\nBut 'banished' to kill me?--'banished'?\nO friar, the damned use that word in hell;\nHowlings attend it: how hast thou the heart,\nBeing a divine, a ghostly confessor,\nA sin-absolver, and my friend profess'd,\nTo mangle me with that word 'banished'?\n\nFRIAR LAURENCE:\nThou fond mad man, hear me but speak a word.\n\nROMEO:\nO, thou wilt speak again of banishment.\n\nFRIAR LAURENCE:\nI'll give thee armour to keep off that word:\nAdversity's sweet milk, philosophy,\nTo comfort thee, though thou art banished.\n\nROMEO:\nYet 'banished'? Hang up philosophy!\nUnless philosophy can make a Juliet,\nDisplant a town, reverse a prince's doom,\nIt helps not, it prevails not: talk no more.\n\nFRIAR LAURENCE:\nO, then I see that madmen have no ears.\n\nROMEO:\nHow should they, when that wise men have no eyes?\n\nFRIAR LAURENCE:\nLet me dispute with thee of thy estate.\n\nROMEO:\nThou canst not speak of that thou dost not feel:\nWert thou as young as I, Juliet thy love,\nAn hour but married, Tybalt murdered,\nDoting like me and like me banished,\nThen mightst thou speak, then mightst thou tear thy hair,\nAnd fall upon the ground, as I do now,\nTaking the measure of an unmade grave.\n\nFRIAR LAURENCE:\nArise; one knocks; good Romeo, hide thyself.\n\nROMEO:\nNot I; unless the breath of heartsick groans,\nMist-like, infold me from the search of eyes.\n\nFRIAR LAURENCE:\nHark, how they knock! Who's there? Romeo, arise;\nThou wilt be taken. Stay awhile! Stand up;\nRun to my study. By and by! God's will,\nWhat simpleness is this! I come, I come!\nWho knocks so hard? whence come you? what's your will?\n\nNurse:\n\nFRIAR LAURENCE:\nWelcome, then.\n\nNurse:\nO holy friar, O, tell me, holy friar,\nWhere is my lady's lord, where's Romeo?\n\nFRIAR LAURENCE:\nThere on the ground, with his own tears made drunk.\n\nNurse:\nO, he is even in my mistress' case,\nJust in her case! O woful sympathy!\nPiteous predicament! Even so lies she,\nBlubbering and weeping, weeping and blubbering.\nStand up, stand up; stand, and you be a man:\nFor Juliet's sake, for her sake, rise and stand;\nWhy should you fall into so deep an O?\n\nROMEO:\nNurse!\n\nNurse:\nAh sir! ah sir! Well, death's the end of all.\n\nROMEO:\nSpakest thou of Juliet? how is it with her?\nDoth she not think me an old murderer,\nNow I have stain'd the childhood of our joy\nWith blood removed but little from her own?\nWhere is she? and how doth she? and what says\nMy conceal'd lady to our cancell'd love?\n\nNurse:\nO, she says nothing, sir, but weeps and weeps;\nAnd now falls on her bed; and then starts up,\nAnd Tybalt calls; and then on Romeo cries,\nAnd then down falls again.\n\nROMEO:\nAs if that name,\nShot from the deadly level of a gun,\nDid murder her; as that name's cursed hand\nMurder'd her kinsman. O, tell me, friar, tell me,\nIn what vile part of this anatomy\nDoth my name lodge? tell me, that I may sack\nThe hateful mansion.\n\nFRIAR LAURENCE:\nHold thy desperate hand:\nArt thou a man? thy form cries out thou art:\nThy tears are womanish; thy wild acts denote\nThe unreasonable fury of a beast:\nUnseemly woman in a seeming man!\nOr ill-beseeming beast in seeming both!\nThou hast amazed me: by my holy order,\nI thought thy disposition better temper'd.\nHast thou slain Tybalt? wilt thou slay thyself?\nAnd stay thy lady too that lives in thee,\nBy doing damned hate upon thyself?\nWhy rail'st thou on thy birth, the heaven, and earth?\nSince birth, and heaven, and earth, all three do meet\nIn thee at once; which thou at once wouldst lose.\nFie, fie, thou shamest thy shape, thy love, thy wit;\nWhich, like a usurer, abound'st in all,\nAnd usest none in that true use indeed\nWhich should bedeck thy shape, thy love, thy wit:\nThy noble shape is but a form of wax,\nDigressing from the valour of a man;\nThy dear love sworn but hollow perjury,\nKilling that love which thou hast vow'd to cherish;\nThy wit, that ornament to shape and love,\nMisshapen in the conduct of them both,\nLike powder in a skitless soldier's flask,\nIs set afire by thine own ignorance,\nAnd thou dismember'd with thine own defence.\nWhat, rouse thee, man! thy Juliet is alive,\nFor whose dear sake thou wast but lately dead;\nThere art thou happy: Tybalt would kill thee,\nBut thou slew'st Tybalt; there are thou happy too:\nThe law that threaten'd death becomes thy friend\nAnd turns it to exile; there art thou happy:\nA pack of blessings lights up upon thy back;\nHappiness courts thee in her best array;\nBut, like a misbehaved and sullen wench,\nThou pout'st upon thy fortune and thy love:\nTake heed, take heed, for such die miserable.\nGo, get thee to thy love, as was decreed,\nAscend her chamber, hence and comfort her:\nBut look thou stay not till the watch be set,\nFor then thou canst not pass to Mantua;\nWhere thou shalt live, till we can find a time\nTo blaze your marriage, reconcile your friends,\nBeg pardon of the prince, and call thee back\nWith twenty hundred thousand times more joy\nThan thou went'st forth in lamentation.\nGo before, nurse: commend me to thy lady;\nAnd bid her hasten all the house to bed,\nWhich heavy sorrow makes them apt unto:\nRomeo is coming.\n\nNurse:\nO Lord, I could have stay'd here all the night\nTo hear good counsel: O, what learning is!\nMy lord, I'll tell my lady you will come.\n\nROMEO:\nDo so, and bid my sweet prepare to chide.\n\nNurse:\nHere, sir, a ring she bid me give you, sir:\nHie you, make haste, for it grows very late.\n\nROMEO:\nHow well my comfort is revived by this!\n\nFRIAR LAURENCE:\nGo hence; good night; and here stands all your state:\nEither be gone before the watch be set,\nOr by the break of day disguised from hence:\nSojourn in Mantua; I'll find out your man,\nAnd he shall signify from time to time\nEvery good hap to you that chances here:\nGive me thy hand; 'tis late: farewell; good night.\n\nROMEO:\nBut that a joy past joy calls out on me,\nIt were a grief, so brief to part with thee: Farewell.\n\nCAPULET:\nThings have fall'n out, sir, so unluckily,\nThat we have had no time to move our daughter:\nLook you, she loved her kinsman Tybalt dearly,\nAnd so did I:--Well, we were born to die.\n'Tis very late, she'll not come down to-night:\nI promise you, but for your company,\nI would have been a-bed an hour ago.\n\nPARIS:\nThese times of woe afford no time to woo.\nMadam, good night: commend me to your daughter.\n\nLADY CAPULET:\nI will, and know her mind early to-morrow;\nTo-night she is mew'd up to her heaviness.\n\nCAPULET:\nSir Paris, I will make a desperate tender\nOf my child's love: I think she will be ruled\nIn all respects by me; nay, more, I doubt it not.\nWife, go you to her ere you go to bed;\nAcquaint her here of my son Paris' love;\nAnd bid her, mark you me, on Wednesday next--\nBut, soft! what day is this?\n\nPARIS:\nMonday, my lord,\n\nCAPULET:\nMonday! ha, ha! Well, Wednesday is too soon,\nO' Thursday let it be: o' Thursday, tell her,\nShe shall be married to this noble earl.\nWill you be ready? do you like this haste?\nWe'll keep no great ado,--a friend or two;\nFor, hark you, Tybalt being slain so late,\nIt may be thought we held him carelessly,\nBeing our kinsman, if we revel much:\nTherefore we'll have some half a dozen friends,\nAnd there an end. But what say you to Thursday?\n\nPARIS:\nMy lord, I would that Thursday were to-morrow.\n\nCAPULET:\nWell get you gone: o' Thursday be it, then.\nGo you to Juliet ere you go to bed,\nPrepare her, wife, against this wedding-day.\nFarewell, my lord. Light to my chamber, ho!\nAfore me! it is so very very late,\nThat we may call it early by and by.\nGood night.\n\nJULIET:\nWilt thou be gone? it is not yet near day:\nIt was the nightingale, and not the lark,\nThat pierced the fearful hollow of thine ear;\nNightly she sings on yon pomegranate-tree:\nBelieve me, love, it was the nightingale.\n\nROMEO:\nIt was the lark, the herald of the morn,\nNo nightingale: look, love, what envious streaks\nDo lace the severing clouds in yonder east:\nNight's candles are burnt out, and jocund day\nStands tiptoe on the misty mountain tops.\nI must be gone and live, or stay and die.\n\nJULIET:\nYon light is not day-light, I know it, I:\nIt is some meteor that the sun exhales,\nTo be to thee this night a torch-bearer,\nAnd light thee on thy way to Mantua:\nTherefore stay yet; thou need'st not to be gone.\n\nROMEO:\nLet me be ta'en, let me be put to death;\nI am content, so thou wilt have it so.\nI'll say yon grey is not the morning's eye,\n'Tis but the pale reflex of Cynthia's brow;\nNor that is not the lark, whose notes do beat\nThe vaulty heaven so high above our heads:\nI have more care to stay than will to go:\nCome, death, and welcome! Juliet wills it so.\nHow is't, my soul? let's talk; it is not day.\n\nJULIET:\nIt is, it is: hie hence, be gone, away!\nIt is the lark that sings so out of tune,\nStraining harsh discords and unpleasing sharps.\nSome say the lark makes sweet division;\nThis doth not so, for she divideth us:\nSome say the lark and loathed toad change eyes,\nO, now I would they had changed voices too!\nSince arm from arm that voice doth us affray,\nHunting thee hence with hunt's-up to the day,\nO, now be gone; more light and light it grows.\n\nROMEO:\nMore light and light; more dark and dark our woes!\n\nNurse:\nMadam!\n\nJULIET:\nNurse?\n\nNurse:\nYour lady mother is coming to your chamber:\nThe day is broke; be wary, look about.\n\nJULIET:\nThen, window, let day in, and let life out.\n\nROMEO:\nFarewell, farewell! one kiss, and I'll descend.\n\nJULIET:\nArt thou gone so? love, lord, ay, husband, friend!\nI must hear from thee every day in the hour,\nFor in a minute there are many days:\nO, by this count I shall be much in years\nEre I again behold my Romeo!\n\nROMEO:\nFarewell!\nI will omit no opportunity\nThat may convey my greetings, love, to thee.\n\nJULIET:\nO think'st thou we shall ever meet again?\n\nROMEO:\nI doubt it not; and all these woes shall serve\nFor sweet discourses in our time to come.\n\nJULIET:\nO God, I have an ill-divining soul!\nMethinks I see thee, now thou art below,\nAs one dead in the bottom of a tomb:\nEither my eyesight fails, or thou look'st pale.\n\nROMEO:\nAnd trust me, love, in my eye so do you:\nDry sorrow drinks our blood. Adieu, adieu!\n\nJULIET:\nO fortune, fortune! all men call thee fickle:\nIf thou art fickle, what dost thou with him.\nThat is renown'd for faith? Be fickle, fortune;\nFor then, I hope, thou wilt not keep him long,\nBut send him back.\n\nLADY CAPULET:\n\nJULIET:\nWho is't that calls? is it my lady mother?\nIs she not down so late, or up so early?\nWhat unaccustom'd cause procures her hither?\n\nLADY CAPULET:\nWhy, how now, Juliet!\n\nJULIET:\nMadam, I am not well.\n\nLADY CAPULET:\nEvermore weeping for your cousin's death?\nWhat, wilt thou wash him from his grave with tears?\nAn if thou couldst, thou couldst not make him live;\nTherefore, have done: some grief shows much of love;\nBut much of grief shows still some want of wit.\n\nJULIET:\nYet let me weep for such a feeling loss.\n\nLADY CAPULET:\nSo shall you feel the loss, but not the friend\nWhich you weep for.\n\nJULIET:\nFeeling so the loss,\nCannot choose but ever weep the friend.\n\nLADY CAPULET:\nWell, girl, thou weep'st not so much for his death,\nAs that the villain lives which slaughter'd him.\n\nJULIET:\nWhat villain madam?\n\nLADY CAPULET:\nThat same villain, Romeo.\n\nJULIET:\n\nLADY CAPULET:\nThat is, because the traitor murderer lives.\n\nJULIET:\nAy, madam, from the reach of these my hands:\nWould none but I might venge my cousin's death!\n\nLADY CAPULET:\nWe will have vengeance for it, fear thou not:\nThen weep no more. I'll send to one in Mantua,\nWhere that same banish'd runagate doth live,\nShall give him such an unaccustom'd dram,\nThat he shall soon keep Tybalt company:\nAnd then, I hope, thou wilt be satisfied.\n\nJULIET:\nIndeed, I never shall be satisfied\nWith Romeo, till I behold him--dead--\nIs my poor heart for a kinsman vex'd.\nMadam, if you could find out but a man\nTo bear a poison, I would temper it;\nThat Romeo should, upon receipt thereof,\nSoon sleep in quiet. O, how my heart abhors\nTo hear him named, and cannot come to him.\nTo wreak the love I bore my cousin\nUpon his body that slaughter'd him!\n\nLADY CAPULET:\nFind thou the means, and I'll find such a man.\nBut now I'll tell thee joyful tidings, girl.\n\nJULIET:\nAnd joy comes well in such a needy time:\nWhat are they, I beseech your ladyship?\n\nLADY CAPULET:\nWell, well, thou hast a careful father, child;\nOne who, to put thee from thy heaviness,\nHath sorted out a sudden day of joy,\nThat thou expect'st not nor I look'd not for.\n\nJULIET:\nMadam, in happy time, what day is that?\n\nLADY CAPULET:\nMarry, my child, early next Thursday morn,\nThe gallant, young and noble gentleman,\nThe County Paris, at Saint Peter's Church,\nShall happily make thee there a joyful bride.\n\nJULIET:\nNow, by Saint Peter's Church and Peter too,\nHe shall not make me there a joyful bride.\nI wonder at this haste; that I must wed\nEre he, that should be husband, comes to woo.\nI pray you, tell my lord and father, madam,\nI will not marry yet; and, when I do, I swear,\nIt shall be Romeo, whom you know I hate,\nRather than Paris. These are news indeed!\n\nLADY CAPULET:\nHere comes your father; tell him so yourself,\nAnd see how he will take it at your hands.\n\nCAPULET:\nWhen the sun sets, the air doth drizzle dew;\nBut for the sunset of my brother's son\nIt rains downright.\nHow now! a conduit, girl? what, still in tears?\nEvermore showering? In one little body\nThou counterfeit'st a bark, a sea, a wind;\nFor still thy eyes, which I may call the sea,\nDo ebb and flow with tears; the bark thy body is,\nSailing in this salt flood; the winds, thy sighs;\nWho, raging with thy tears, and they with them,\nWithout a sudden calm, will overset\nThy tempest-tossed body. How now, wife!\nHave you deliver'd to her our decree?\n\nLADY CAPULET:\nAy, sir; but she will none, she gives you thanks.\nI would the fool were married to her grave!\n\nCAPULET:\nSoft! take me with you, take me with you, wife.\nHow! will she none? doth she not give us thanks?\nIs she not proud? doth she not count her blest,\nUnworthy as she is, that we have wrought\nSo worthy a gentleman to be her bridegroom?\n\nJULIET:\nNot proud, you have; but thankful, that you have:\nProud can I never be of what I hate;\nBut thankful even for hate, that is meant love.\n\nCAPULET:\nHow now, how now, chop-logic! What is this?\n'Proud,' and 'I thank you,' and 'I thank you not;'\nAnd yet 'not proud,' mistress minion, you,\nThank me no thankings, nor, proud me no prouds,\nBut fettle your fine joints 'gainst Thursday next,\nTo go with Paris to Saint Peter's Church,\nOr I will drag thee on a hurdle thither.\nOut, you green-sickness carrion! out, you baggage!\nYou tallow-face!\n\nLADY CAPULET:\nFie, fie! what, are you mad?\n\nJULIET:\nGood father, I beseech you on my knees,\nHear me with patience but to speak a word.\n\nCAPULET:\nHang thee, young baggage! disobedient wretch!\nI tell thee what: get thee to church o' Thursday,\nOr never after look me in the face:\nSpeak not, reply not, do not answer me;\nMy fingers itch. Wife, we scarce thought us blest\nThat God had lent us but this only child;\nBut now I see this one is one too much,\nAnd that we have a curse in having her:\nOut on her, hilding!\n\nNurse:\nGod in heaven bless her!\nYou are to blame, my lord, to rate her so.\n\nCAPULET:\nAnd why, my lady wisdom? hold your tongue,\nGood prudence; smatter with your gossips, go.\n\nNurse:\nI speak no treason.\n\nCAPULET:\nO, God ye god-den.\n\nNurse:\nMay not one speak?\n\nCAPULET:\nPeace, you mumbling fool!\nUtter your gravity o'er a gossip's bowl;\nFor here we need it not.\n\nLADY CAPULET:\nYou are too hot.\n\nCAPULET:\nGod's bread! it makes me mad:\nDay, night, hour, tide, time, work, play,\nAlone, in company, still my care hath been\nTo have her match'd: and having now provided\nA gentleman of noble parentage,\nOf fair demesnes, youthful, and nobly train'd,\nStuff'd, as they say, with honourable parts,\nProportion'd as one's thought would wish a man;\nAnd then to have a wretched puling fool,\nA whining mammet, in her fortune's tender,\nTo answer 'I'll not wed; I cannot love,\nI am too young; I pray you, pardon me.'\nBut, as you will not wed, I'll pardon you:\nGraze where you will you shall not house with me:\nLook to't, think on't, I do not use to jest.\nThursday is near; lay hand on heart, advise:\nAn you be mine, I'll give you to my friend;\nAnd you be not, hang, beg, starve, die in\nthe streets,\nFor, by my soul, I'll ne'er acknowledge thee,\nNor what is mine shall never do thee good:\nTrust to't, bethink you; I'll not be forsworn.\n\nJULIET:\nIs there no pity sitting in the clouds,\nThat sees into the bottom of my grief?\nO, sweet my mother, cast me not away!\nDelay this marriage for a month, a week;\nOr, if you do not, make the bridal bed\nIn that dim monument where Tybalt lies.\n\nLADY CAPULET:\nTalk not to me, for I'll not speak a word:\nDo as thou wilt, for I have done with thee.\n\nJULIET:\nO God!--O nurse, how shall this be prevented?\nMy husband is on earth, my faith in heaven;\nHow shall that faith return again to earth,\nUnless that husband send it me from heaven\nBy leaving earth? comfort me, counsel me.\nAlack, alack, that heaven should practise stratagems\nUpon so soft a subject as myself!\nWhat say'st thou? hast thou not a word of joy?\nSome comfort, nurse.\n\nNurse:\nFaith, here it is.\nRomeo is banish'd; and all the world to nothing,\nThat he dares ne'er come back to challenge you;\nOr, if he do, it needs must be by stealth.\nThen, since the case so stands as now it doth,\nI think it best you married with the county.\nO, he's a lovely gentleman!\nRomeo's a dishclout to him: an eagle, madam,\nHath not so green, so quick, so fair an eye\nAs Paris hath. Beshrew my very heart,\nI think you are happy in this second match,\nFor it excels your first: or if it did not,\nYour first is dead; or 'twere as good he were,\nAs living here and you no use of him.\n\nJULIET:\nSpeakest thou from thy heart?\n\nNurse:\nAnd from my soul too;\nOr else beshrew them both.\n\nJULIET:\nAmen!\n\nNurse:\nWhat?\n\nJULIET:\nWell, thou hast comforted me marvellous much.\nGo in: and tell my lady I am gone,\nHaving displeased my father, to Laurence' cell,\nTo make confession and to be absolved.\n\nNurse:\nMarry, I will; and this is wisely done.\n\nJULIET:\nAncient damnation! O most wicked fiend!\nIs it more sin to wish me thus forsworn,\nOr to dispraise my lord with that same tongue\nWhich she hath praised him with above compare\nSo many thousand times? Go, counsellor;\nThou and my bosom henceforth shall be twain.\nI'll to the friar, to know his remedy:\nIf all else fail, myself have power to die.\n\nFRIAR LAURENCE:\nOn Thursday, sir? the time is very short.\n\nPARIS:\nMy father Capulet will have it so;\nAnd I am nothing slow to slack his haste.\n\nFRIAR LAURENCE:\nYou say you do not know the lady's mind:\nUneven is the course, I like it not.\n\nPARIS:\nImmoderately she weeps for Tybalt's death,\nAnd therefore have I little talk'd of love;\nFor Venus smiles not in a house of tears.\nNow, sir, her father counts it dangerous\nThat she doth give her sorrow so much sway,\nAnd in his wisdom hastes our marriage,\nTo stop the inundation of her tears;\nWhich, too much minded by herself alone,\nMay be put from her by society:\nNow do you know the reason of this haste.\n\nFRIAR LAURENCE:\n\nPARIS:\nHappily met, my lady and my wife!\n\nJULIET:\nThat may be, sir, when I may be a wife.\n\nPARIS:\nThat may be must be, love, on Thursday next.\n\nJULIET:\nWhat must be shall be.\n\nFRIAR LAURENCE:\nThat's a certain text.\n\nPARIS:\nCome you to make confession to this father?\n\nJULIET:\nTo answer that, I should confess to you.\n\nPARIS:\nDo not deny to him that you love me.\n\nJULIET:\nI will confess to you that I love him.\n\nPARIS:\nSo will ye, I am sure, that you love me.\n\nJULIET:\nIf I do so, it will be of more price,\nBeing spoke behind your back, than to your face.\n\nPARIS:\nPoor soul, thy face is much abused with tears.\n\nJULIET:\nThe tears have got small victory by that;\nFor it was bad enough before their spite.\n\nPARIS:\nThou wrong'st it, more than tears, with that report.\n\nJULIET:\nThat is no slander, sir, which is a truth;\nAnd what I spake, I spake it to my face.\n\nPARIS:\nThy face is mine, and thou hast slander'd it.\n\nJULIET:\nIt may be so, for it is not mine own.\nAre you at leisure, holy father, now;\nOr shall I come to you at evening mass?\n\nFRIAR LAURENCE:\nMy leisure serves me, pensive daughter, now.\nMy lord, we must entreat the time alone.\n\nPARIS:\nGod shield I should disturb devotion!\nJuliet, on Thursday early will I rouse ye:\nTill then, adieu; and keep this holy kiss.\n\nJULIET:\nO shut the door! and when thou hast done so,\nCome weep with me; past hope, past cure, past help!\n\nFRIAR LAURENCE:\nAh, Juliet, I already know thy grief;\nIt strains me past the compass of my wits:\nI hear thou must, and nothing may prorogue it,\nOn Thursday next be married to this county.\n\nJULIET:\nTell me not, friar, that thou hear'st of this,\nUnless thou tell me how I may prevent it:\nIf, in thy wisdom, thou canst give no help,\nDo thou but call my resolution wise,\nAnd with this knife I'll help it presently.\nGod join'd my heart and Romeo's, thou our hands;\nAnd ere this hand, by thee to Romeo seal'd,\nShall be the label to another deed,\nOr my true heart with treacherous revolt\nTurn to another, this shall slay them both:\nTherefore, out of thy long-experienced time,\nGive me some present counsel, or, behold,\n'Twixt my extremes and me this bloody knife\nShall play the umpire, arbitrating that\nWhich the commission of thy years and art\nCould to no issue of true honour bring.\nBe not so long to speak; I long to die,\nIf what thou speak'st speak not of remedy.\n\nFRIAR LAURENCE:\nHold, daughter: I do spy a kind of hope,\nWhich craves as desperate an execution.\nAs that is desperate which we would prevent.\nIf, rather than to marry County Paris,\nThou hast the strength of will to slay thyself,\nThen is it likely thou wilt undertake\nA thing like death to chide away this shame,\nThat copest with death himself to scape from it:\nAnd, if thou darest, I'll give thee remedy.\n\nJULIET:\nO, bid me leap, rather than marry Paris,\nFrom off the battlements of yonder tower;\nOr walk in thievish ways; or bid me lurk\nWhere serpents are; chain me with roaring bears;\nOr shut me nightly in a charnel-house,\nO'er-cover'd quite with dead men's rattling bones,\nWith reeky shanks and yellow chapless skulls;\nOr bid me go into a new-made grave\nAnd hide me with a dead man in his shroud;\nThings that, to hear them told, have made me tremble;\nAnd I will do it without fear or doubt,\nTo live an unstain'd wife to my sweet love.\n\nFRIAR LAURENCE:\nHold, then; go home, be merry, give consent\nTo marry Paris: Wednesday is to-morrow:\nTo-morrow night look that thou lie alone;\nLet not thy nurse lie with thee in thy chamber:\nTake thou this vial, being then in bed,\nAnd this distilled liquor drink thou off;\nWhen presently through all thy veins shall run\nA cold and drowsy humour, for no pulse\nShall keep his native progress, but surcease:\nNo warmth, no breath, shall testify thou livest;\nThe roses in thy lips and cheeks shall fade\nTo paly ashes, thy eyes' windows fall,\nLike death, when he shuts up the day of life;\nEach part, deprived of supple government,\nShall, stiff and stark and cold, appear like death:\nAnd in this borrow'd likeness of shrunk death\nThou shalt continue two and forty hours,\nAnd then awake as from a pleasant sleep.\nNow, when the bridegroom in the morning comes\nTo rouse thee from thy bed, there art thou dead:\nThen, as the manner of our country is,\nIn thy best robes uncover'd on the bier\nThou shalt be borne to that same ancient vault\nWhere all the kindred of the Capulets lie.\nIn the mean time, against thou shalt awake,\nShall Romeo by my letters know our drift,\nAnd hither shall he come: and he and I\nWill watch thy waking, and that very night\nShall Romeo bear thee hence to Mantua.\nAnd this shall free thee from this present shame;\nIf no inconstant toy, nor womanish fear,\nAbate thy valour in the acting it.\n\nJULIET:\nGive me, give me! O, tell not me of fear!\n\nFRIAR LAURENCE:\nHold; get you gone, be strong and prosperous\nIn this resolve: I'll send a friar with speed\nTo Mantua, with my letters to thy lord.\n\nJULIET:\nLove give me strength! and strength shall help afford.\nFarewell, dear father!\n\nCAPULET:\nSo many guests invite as here are writ.\nSirrah, go hire me twenty cunning cooks.\n\nSecond Servant:\nYou shall have none ill, sir; for I'll try if they\ncan lick their fingers.\n\nCAPULET:\nHow canst thou try them so?\n\nSecond Servant:\nMarry, sir, 'tis an ill cook that cannot lick his\nown fingers: therefore he that cannot lick his\nfingers goes not with me.\n\nCAPULET:\nGo, be gone.\nWe shall be much unfurnished for this time.\nWhat, is my daughter gone to Friar Laurence?\n\nNurse:\nAy, forsooth.\n\nCAPULET:\nWell, he may chance to do some good on her:\nA peevish self-will'd harlotry it is.\n\nNurse:\nSee where she comes from shrift with merry look.\n\nCAPULET:\nHow now, my headstrong! where have you been gadding?\n\nJULIET:\nWhere I have learn'd me to repent the sin\nOf disobedient opposition\nTo you and your behests, and am enjoin'd\nBy holy Laurence to fall prostrate here,\nAnd beg your pardon: pardon, I beseech you!\nHenceforward I am ever ruled by you.\n\nCAPULET:\nSend for the county; go tell him of this:\nI'll have this knot knit up to-morrow morning.\n\nJULIET:\nI met the youthful lord at Laurence' cell;\nAnd gave him what becomed love I might,\nNot step o'er the bounds of modesty.\n\nCAPULET:\nWhy, I am glad on't; this is well: stand up:\nThis is as't should be. Let me see the county;\nAy, marry, go, I say, and fetch him hither.\nNow, afore God! this reverend holy friar,\nOur whole city is much bound to him.\n\nJULIET:\nNurse, will you go with me into my closet,\nTo help me sort such needful ornaments\nAs you think fit to furnish me to-morrow?\n\nLADY CAPULET:\nNo, not till Thursday; there is time enough.\n\nCAPULET:\nGo, nurse, go with her: we'll to church to-morrow.\n\nLADY  CAPULET:\nWe shall be short in our provision:\n'Tis now near night.\n\nCAPULET:\nTush, I will stir about,\nAnd all things shall be well, I warrant thee, wife:\nGo thou to Juliet, help to deck up her;\nI'll not to bed to-night; let me alone;\nI'll play the housewife for this once. What, ho!\nThey are all forth. Well, I will walk myself\nTo County Paris, to prepare him up\nAgainst to-morrow: my heart is wondrous light,\nSince this same wayward girl is so reclaim'd.\n\nJULIET:\nAy, those attires are best: but, gentle nurse,\nI pray thee, leave me to myself to-night,\nFor I have need of many orisons\nTo move the heavens to smile upon my state,\nWhich, well thou know'st, is cross, and full of sin.\n\nLADY CAPULET:\nWhat, are you busy, ho? need you my help?\n\nJULIET:\nNo, madam; we have cull'd such necessaries\nAs are behoveful for our state to-morrow:\nSo please you, let me now be left alone,\nAnd let the nurse this night sit up with you;\nFor, I am sure, you have your hands full all,\nIn this so sudden business.\n\nLADY CAPULET:\nGood night:\nGet thee to bed, and rest; for thou hast need.\n\nJULIET:\nFarewell! God knows when we shall meet again.\nI have a faint cold fear thrills through my veins,\nThat almost freezes up the heat of life:\nI'll call them back again to comfort me:\nNurse! What should she do here?\nMy dismal scene I needs must act alone.\nCome, vial.\nWhat if this mixture do not work at all?\nShall I be married then to-morrow morning?\nNo, no: this shall forbid it: lie thou there.\nWhat if it be a poison, which the friar\nSubtly hath minister'd to have me dead,\nLest in this marriage he should be dishonour'd,\nBecause he married me before to Romeo?\nI fear it is: and yet, methinks, it should not,\nFor he hath still been tried a holy man.\nHow if, when I am laid into the tomb,\nI wake before the time that Romeo\nCome to redeem me? there's a fearful point!\nShall I not, then, be stifled in the vault,\nTo whose foul mouth no healthsome air breathes in,\nAnd there die strangled ere my Romeo comes?\nOr, if I live, is it not very like,\nThe horrible conceit of death and night,\nTogether with the terror of the place,--\nAs in a vault, an ancient receptacle,\nWhere, for these many hundred years, the bones\nOf all my buried ancestors are packed:\nWhere bloody Tybalt, yet but green in earth,\nLies festering in his shroud; where, as they say,\nAt some hours in the night spirits resort;--\nAlack, alack, is it not like that I,\nSo early waking, what with loathsome smells,\nAnd shrieks like mandrakes' torn out of the earth,\nThat living mortals, hearing them, run mad:--\nO, if I wake, shall I not be distraught,\nEnvironed with all these hideous fears?\nAnd madly play with my forefather's joints?\nAnd pluck the mangled Tybalt from his shroud?\nAnd, in this rage, with some great kinsman's bone,\nAs with a club, dash out my desperate brains?\nO, look! methinks I see my cousin's ghost\nSeeking out Romeo, that did spit his body\nUpon a rapier's point: stay, Tybalt, stay!\nRomeo, I come! this do I drink to thee.\n\nLADY CAPULET:\nHold, take these keys, and fetch more spices, nurse.\n\nNurse:\nThey call for dates and quinces in the pastry.\n\nCAPULET:\nCome, stir, stir, stir! the second cock hath crow'd,\nThe curfew-bell hath rung, 'tis three o'clock:\nLook to the baked meats, good Angelica:\nSpare not for the cost.\n\nNurse:\nGo, you cot-quean, go,\nGet you to bed; faith, You'll be sick to-morrow\nFor this night's watching.\n\nCAPULET:\nNo, not a whit: what! I have watch'd ere now\nAll night for lesser cause, and ne'er been sick.\n\nLADY CAPULET:\nAy, you have been a mouse-hunt in your time;\nBut I will watch you from such watching now.\n\nCAPULET:\nA jealous hood, a jealous hood!\nNow, fellow,\nWhat's there?\n\nFirst Servant:\nThings for the cook, sir; but I know not what.\n\nCAPULET:\nMake haste, make haste.\nSirrah, fetch drier logs:\nCall Peter, he will show thee where they are.\n\nSecond Servant:\nI have a head, sir, that will find out logs,\nAnd never trouble Peter for the matter.\n\nCAPULET:\nMass, and well said; a merry whoreson, ha!\nThou shalt be logger-head. Good faith, 'tis day:\nThe county will be here with music straight,\nFor so he said he would: I hear him near.\nNurse! Wife! What, ho! What, nurse, I say!\nGo waken Juliet, go and trim her up;\nI'll go and chat with Paris: hie, make haste,\nMake haste; the bridegroom he is come already:\nMake haste, I say.\n\nNurse:\nMistress! what, mistress! Juliet! fast, I warrant her, she:\nWhy, lamb! why, lady! fie, you slug-a-bed!\nWhy, love, I say! madam! sweet-heart! why, bride!\nWhat, not a word? you take your pennyworths now;\nSleep for a week; for the next night, I warrant,\nThe County Paris hath set up his rest,\nThat you shall rest but little. God forgive me,\nMarry, and amen, how sound is she asleep!\nI must needs wake her. Madam, madam, madam!\nAy, let the county take you in your bed;\nHe'll fright you up, i' faith. Will it not be?\nWhat, dress'd! and in your clothes! and down again!\nI must needs wake you; Lady! lady! lady!\nAlas, alas! Help, help! my lady's dead!\nO, well-a-day, that ever I was born!\nSome aqua vitae, ho! My lord! my lady!\n\nLADY CAPULET:\nWhat noise is here?\n\nNurse:\nO lamentable day!\n\nLADY CAPULET:\nWhat is the matter?\n\nNurse:\nLook, look! O heavy day!\n\nLADY CAPULET:\nO me, O me! My child, my only life,\nRevive, look up, or I will die with thee!\nHelp, help! Call help.\n\nCAPULET:\nFor shame, bring Juliet forth; her lord is come.\n\nNurse:\nShe's dead, deceased, she's dead; alack the day!\n\nLADY CAPULET:\nAlack the day, she's dead, she's dead, she's dead!\n\nCAPULET:\nHa! let me see her: out, alas! she's cold:\nHer blood is settled, and her joints are stiff;\nLife and these lips have long been separated:\nDeath lies on her like an untimely frost\nUpon the sweetest flower of all the field.\n\nNurse:\nO lamentable day!\n\nLADY CAPULET:\nO woful time!\n\nCAPULET:\nDeath, that hath ta'en her hence to make me wail,\nTies up my tongue, and will not let me speak.\n\nFRIAR LAURENCE:\nCome, is the bride ready to go to church?\n\nCAPULET:\nReady to go, but never to return.\nO son! the night before thy wedding-day\nHath Death lain with thy wife. There she lies,\nFlower as she was, deflowered by him.\nDeath is my son-in-law, Death is my heir;\nMy daughter he hath wedded: I will die,\nAnd leave him all; life, living, all is Death's.\n\nPARIS:\nHave I thought long to see this morning's face,\nAnd doth it give me such a sight as this?\n\nLADY CAPULET:\nAccursed, unhappy, wretched, hateful day!\nMost miserable hour that e'er time saw\nIn lasting labour of his pilgrimage!\nBut one, poor one, one poor and loving child,\nBut one thing to rejoice and solace in,\nAnd cruel death hath catch'd it from my sight!\n\nNurse:\nO woe! O woful, woful, woful day!\nMost lamentable day, most woful day,\nThat ever, ever, I did yet behold!\nO day! O day! O day! O hateful day!\nNever was seen so black a day as this:\nO woful day, O woful day!\n\nPARIS:\nBeguiled, divorced, wronged, spited, slain!\nMost detestable death, by thee beguil'd,\nBy cruel cruel thee quite overthrown!\nO love! O life! not life, but love in death!\n\nCAPULET:\nDespised, distressed, hated, martyr'd, kill'd!\nUncomfortable time, why camest thou now\nTo murder, murder our solemnity?\nO child! O child! my soul, and not my child!\nDead art thou! Alack! my child is dead;\nAnd with my child my joys are buried.\n\nFRIAR LAURENCE:\nPeace, ho, for shame! confusion's cure lives not\nIn these confusions. Heaven and yourself\nHad part in this fair maid; now heaven hath all,\nAnd all the better is it for the maid:\nYour part in her you could not keep from death,\nBut heaven keeps his part in eternal life.\nThe most you sought was her promotion;\nFor 'twas your heaven she should be advanced:\nAnd weep ye now, seeing she is advanced\nAbove the clouds, as high as heaven itself?\nO, in this love, you love your child so ill,\nThat you run mad, seeing that she is well:\nShe's not well married that lives married long;\nBut she's best married that dies married young.\nDry up your tears, and stick your rosemary\nOn this fair corse; and, as the custom is,\nIn all her best array bear her to church:\nFor though fond nature bids us an lament,\nYet nature's tears are reason's merriment.\n\nCAPULET:\nAll things that we ordained festival,\nTurn from their office to black funeral;\nOur instruments to melancholy bells,\nOur wedding cheer to a sad burial feast,\nOur solemn hymns to sullen dirges change,\nOur bridal flowers serve for a buried corse,\nAnd all things change them to the contrary.\n\nFRIAR LAURENCE:\nSir, go you in; and, madam, go with him;\nAnd go, Sir Paris; every one prepare\nTo follow this fair corse unto her grave:\nThe heavens do lour upon you for some ill;\nMove them no more by crossing their high will.\n\nFirst Musician:\nFaith, we may put up our pipes, and be gone.\n\nNurse:\nHonest goodfellows, ah, put up, put up;\nFor, well you know, this is a pitiful case.\n\nFirst Musician:\nAy, by my troth, the case may be amended.\n\nPETER:\nMusicians, O, musicians, 'Heart's ease, Heart's\nease:' O, an you will have me live, play 'Heart's ease.'\n\nFirst Musician:\nWhy 'Heart's ease?'\n\nPETER:\nO, musicians, because my heart itself plays 'My\nheart is full of woe:' O, play me some merry dump,\nto comfort me.\n\nFirst Musician:\nNot a dump we; 'tis no time to play now.\n\nPETER:\nYou will not, then?\n\nFirst Musician:\nNo.\n\nPETER:\nI will then give it you soundly.\n\nFirst Musician:\nWhat will you give us?\n\nPETER:\nNo money, on my faith, but the gleek;\nI will give you the minstrel.\n\nFirst Musician:\nThen I will give you the serving-creature.\n\nPETER:\nThen will I lay the serving-creature's dagger on\nyour pate. I will carry no crotchets: I'll re you,\nI'll fa you; do you note me?\n\nFirst Musician:\nAn you re us and fa us, you note us.\n\nSecond Musician:\nPray you, put up your dagger, and put out your wit.\n\nPETER:\nThen have at you with my wit! I will dry-beat you\nwith an iron wit, and put up my iron dagger. Answer\nme like men:\n'When griping grief the heart doth wound,\nAnd doleful dumps the mind oppress,\nThen music with her silver sound'--\nwhy 'silver sound'? why 'music with her silver\nsound'? What say you, Simon Catling?\n\nMusician:\nMarry, sir, because silver hath a sweet sound.\n\nPETER:\nPretty! What say you, Hugh Rebeck?\n\nSecond Musician:\nI say 'silver sound,' because musicians sound for silver.\n\nPETER:\nPretty too! What say you, James Soundpost?\n\nThird Musician:\nFaith, I know not what to say.\n\nPETER:\nO, I cry you mercy; you are the singer: I will say\nfor you. It is 'music with her silver sound,'\nbecause musicians have no gold for sounding:\n'Then music with her silver sound\nWith speedy help doth lend redress.'\n\nFirst Musician:\nWhat a pestilent knave is this same!\n\nSecond Musician:\nHang him, Jack! Come, we'll in here; tarry for the\nmourners, and stay dinner.\n\nROMEO:\nIf I may trust the flattering truth of sleep,\nMy dreams presage some joyful news at hand:\nMy bosom's lord sits lightly in his throne;\nAnd all this day an unaccustom'd spirit\nLifts me above the ground with cheerful thoughts.\nI dreamt my lady came and found me dead--\nStrange dream, that gives a dead man leave\nto think!--\nAnd breathed such life with kisses in my lips,\nThat I revived, and was an emperor.\nAh me! how sweet is love itself possess'd,\nWhen but love's shadows are so rich in joy!\nNews from Verona!--How now, Balthasar!\nDost thou not bring me letters from the friar?\nHow doth my lady? Is my father well?\nHow fares my Juliet? that I ask again;\nFor nothing can be ill, if she be well.\n\nBALTHASAR:\nThen she is well, and nothing can be ill:\nHer body sleeps in Capel's monument,\nAnd her immortal part with angels lives.\nI saw her laid low in her kindred's vault,\nAnd presently took post to tell it you:\nO, pardon me for bringing these ill news,\nSince you did leave it for my office, sir.\n\nROMEO:\nIs it even so? then I defy you, stars!\nThou know'st my lodging: get me ink and paper,\nAnd hire post-horses; I will hence to-night.\n\nBALTHASAR:\nI do beseech you, sir, have patience:\nYour looks are pale and wild, and do import\nSome misadventure.\n\nROMEO:\nTush, thou art deceived:\nLeave me, and do the thing I bid thee do.\nHast thou no letters to me from the friar?\n\nBALTHASAR:\nNo, my good lord.\n\nROMEO:\nNo matter: get thee gone,\nAnd hire those horses; I'll be with thee straight.\nWell, Juliet, I will lie with thee to-night.\nLet's see for means: O mischief, thou art swift\nTo enter in the thoughts of desperate men!\nI do remember an apothecary,--\nAnd hereabouts he dwells,--which late I noted\nIn tatter'd weeds, with overwhelming brows,\nCulling of simples; meagre were his looks,\nSharp misery had worn him to the bones:\nAnd in his needy shop a tortoise hung,\nAn alligator stuff'd, and other skins\nOf ill-shaped fishes; and about his shelves\nA beggarly account of empty boxes,\nGreen earthen pots, bladders and musty seeds,\nRemnants of packthread and old cakes of roses,\nWere thinly scatter'd, to make up a show.\nNoting this penury, to myself I said\n'An if a man did need a poison now,\nWhose sale is present death in Mantua,\nHere lives a caitiff wretch would sell it him.'\nO, this same thought did but forerun my need;\nAnd this same needy man must sell it me.\nAs I remember, this should be the house.\nBeing holiday, the beggar's shop is shut.\nWhat, ho! apothecary!\n\nApothecary:\nWho calls so loud?\n\nROMEO:\nCome hither, man. I see that thou art poor:\nHold, there is forty ducats: let me have\nA dram of poison, such soon-speeding gear\nAs will disperse itself through all the veins\nThat the life-weary taker may fall dead\nAnd that the trunk may be discharged of breath\nAs violently as hasty powder fired\nDoth hurry from the fatal cannon's womb.\n\nApothecary:\nSuch mortal drugs I have; but Mantua's law\nIs death to any he that utters them.\n\nROMEO:\nArt thou so bare and full of wretchedness,\nAnd fear'st to die? famine is in thy cheeks,\nNeed and oppression starveth in thine eyes,\nContempt and beggary hangs upon thy back;\nThe world is not thy friend nor the world's law;\nThe world affords no law to make thee rich;\nThen be not poor, but break it, and take this.\n\nApothecary:\nMy poverty, but not my will, consents.\n\nROMEO:\nI pay thy poverty, and not thy will.\n\nApothecary:\nPut this in any liquid thing you will,\nAnd drink it off; and, if you had the strength\nOf twenty men, it would dispatch you straight.\n\nROMEO:\nThere is thy gold, worse poison to men's souls,\nDoing more murders in this loathsome world,\nThan these poor compounds that thou mayst not sell.\nI sell thee poison; thou hast sold me none.\nFarewell: buy food, and get thyself in flesh.\nCome, cordial and not poison, go with me\nTo Juliet's grave; for there must I use thee.\n\nFRIAR JOHN:\nHoly Franciscan friar! brother, ho!\n\nFRIAR LAURENCE:\nThis same should be the voice of Friar John.\nWelcome from Mantua: what says Romeo?\nOr, if his mind be writ, give me his letter.\n\nFRIAR JOHN:\nGoing to find a bare-foot brother out\nOne of our order, to associate me,\nHere in this city visiting the sick,\nAnd finding him, the searchers of the town,\nSuspecting that we both were in a house\nWhere the infectious pestilence did reign,\nSeal'd up the doors, and would not let us forth;\nSo that my speed to Mantua there was stay'd.\n\nFRIAR LAURENCE:\nWho bare my letter, then, to Romeo?\n\nFRIAR JOHN:\nI could not send it,--here it is again,--\nNor get a messenger to bring it thee,\nSo fearful were they of infection.\n\nFRIAR LAURENCE:\nUnhappy fortune! by my brotherhood,\nThe letter was not nice but full of charge\nOf dear import, and the neglecting it\nMay do much danger. Friar John, go hence;\nGet me an iron crow, and bring it straight\nUnto my cell.\n\nFRIAR JOHN:\nBrother, I'll go and bring it thee.\n\nFRIAR LAURENCE:\nNow must I to the monument alone;\nWithin three hours will fair Juliet wake:\nShe will beshrew me much that Romeo\nHath had no notice of these accidents;\nBut I will write again to Mantua,\nAnd keep her at my cell till Romeo come;\nPoor living corse, closed in a dead man's tomb!\n\nPARIS:\nGive me thy torch, boy: hence, and stand aloof:\nYet put it out, for I would not be seen.\nUnder yond yew-trees lay thee all along,\nHolding thine ear close to the hollow ground;\nSo shall no foot upon the churchyard tread,\nBeing loose, unfirm, with digging up of graves,\nBut thou shalt hear it: whistle then to me,\nAs signal that thou hear'st something approach.\nGive me those flowers. Do as I bid thee, go.\n\nPAGE:\n\nPARIS:\nSweet flower, with flowers thy bridal bed I strew,--\nO woe! thy canopy is dust and stones;--\nWhich with sweet water nightly I will dew,\nOr, wanting that, with tears distill'd by moans:\nThe obsequies that I for thee will keep\nNightly shall be to strew thy grave and weep.\nThe boy gives warning something doth approach.\nWhat cursed foot wanders this way to-night,\nTo cross my obsequies and true love's rite?\nWhat with a torch! muffle me, night, awhile.\n\nROMEO:\nGive me that mattock and the wrenching iron.\nHold, take this letter; early in the morning\nSee thou deliver it to my lord and father.\nGive me the light: upon thy life, I charge thee,\nWhate'er thou hear'st or seest, stand all aloof,\nAnd do not interrupt me in my course.\nWhy I descend into this bed of death,\nIs partly to behold my lady's face;\nBut chiefly to take thence from her dead finger\nA precious ring, a ring that I must use\nIn dear employment: therefore hence, be gone:\nBut if thou, jealous, dost return to pry\nIn what I further shall intend to do,\nBy heaven, I will tear thee joint by joint\nAnd strew this hungry churchyard with thy limbs:\nThe time and my intents are savage-wild,\nMore fierce and more inexorable far\nThan empty tigers or the roaring sea.\n\nBALTHASAR:\nI will be gone, sir, and not trouble you.\n\nROMEO:\nSo shalt thou show me friendship. Take thou that:\nLive, and be prosperous: and farewell, good fellow.\n\nBALTHASAR:\n\nROMEO:\nThou detestable maw, thou womb of death,\nGorged with the dearest morsel of the earth,\nThus I enforce thy rotten jaws to open,\nAnd, in despite, I'll cram thee with more food!\n\nPARIS:\nThis is that banish'd haughty Montague,\nThat murder'd my love's cousin, with which grief,\nIt is supposed, the fair creature died;\nAnd here is come to do some villanous shame\nTo the dead bodies: I will apprehend him.\nStop thy unhallow'd toil, vile Montague!\nCan vengeance be pursued further than death?\nCondemned villain, I do apprehend thee:\nObey, and go with me; for thou must die.\n\nROMEO:\nI must indeed; and therefore came I hither.\nGood gentle youth, tempt not a desperate man;\nFly hence, and leave me: think upon these gone;\nLet them affright thee. I beseech thee, youth,\nPut not another sin upon my head,\nBy urging me to fury: O, be gone!\nBy heaven, I love thee better than myself;\nFor I come hither arm'd against myself:\nStay not, be gone; live, and hereafter say,\nA madman's mercy bade thee run away.\n\nPARIS:\nI do defy thy conjurations,\nAnd apprehend thee for a felon here.\n\nROMEO:\nWilt thou provoke me? then have at thee, boy!\n\nPAGE:\nO Lord, they fight! I will go call the watch.\n\nPARIS:\nO, I am slain!\nIf thou be merciful,\nOpen the tomb, lay me with Juliet.\n\nROMEO:\nIn faith, I will. Let me peruse this face.\nMercutio's kinsman, noble County Paris!\nWhat said my man, when my betossed soul\nDid not attend him as we rode? I think\nHe told me Paris should have married Juliet:\nSaid he not so? or did I dream it so?\nOr am I mad, hearing him talk of Juliet,\nTo think it was so? O, give me thy hand,\nOne writ with me in sour misfortune's book!\nI'll bury thee in a triumphant grave;\nA grave? O no! a lantern, slaughter'd youth,\nFor here lies Juliet, and her beauty makes\nThis vault a feasting presence full of light.\nDeath, lie thou there, by a dead man interr'd.\nHow oft when men are at the point of death\nHave they been merry! which their keepers call\nA lightning before death: O, how may I\nCall this a lightning? O my love! my wife!\nDeath, that hath suck'd the honey of thy breath,\nHath had no power yet upon thy beauty:\nThou art not conquer'd; beauty's ensign yet\nIs crimson in thy lips and in thy cheeks,\nAnd death's pale flag is not advanced there.\nTybalt, liest thou there in thy bloody sheet?\nO, what more favour can I do to thee,\nThan with that hand that cut thy youth in twain\nTo sunder his that was thine enemy?\nForgive me, cousin! Ah, dear Juliet,\nWhy art thou yet so fair? shall I believe\nThat unsubstantial death is amorous,\nAnd that the lean abhorred monster keeps\nThee here in dark to be his paramour?\nFor fear of that, I still will stay with thee;\nAnd never from this palace of dim night\nDepart again: here, here will I remain\nWith worms that are thy chamber-maids; O, here\nWill I set up my everlasting rest,\nAnd shake the yoke of inauspicious stars\nFrom this world-wearied flesh. Eyes, look your last!\nArms, take your last embrace! and, lips, O you\nThe doors of breath, seal with a righteous kiss\nA dateless bargain to engrossing death!\nCome, bitter conduct, come, unsavoury guide!\nThou desperate pilot, now at once run on\nThe dashing rocks thy sea-sick weary bark!\nHere's to my love!\nO true apothecary!\nThy drugs are quick. Thus with a kiss I die.\n\nFRIAR LAURENCE:\nSaint Francis be my speed! how oft to-night\nHave my old feet stumbled at graves! Who's there?\n\nBALTHASAR:\nHere's one, a friend, and one that knows you well.\n\nFRIAR LAURENCE:\nBliss be upon you! Tell me, good my friend,\nWhat torch is yond, that vainly lends his light\nTo grubs and eyeless skulls? as I discern,\nIt burneth in the Capel's monument.\n\nBALTHASAR:\nIt doth so, holy sir; and there's my master,\nOne that you love.\n\nFRIAR LAURENCE:\nWho is it?\n\nBALTHASAR:\nRomeo.\n\nFRIAR LAURENCE:\nHow long hath he been there?\n\nBALTHASAR:\nFull half an hour.\n\nFRIAR LAURENCE:\nGo with me to the vault.\n\nBALTHASAR:\nI dare not, sir\nMy master knows not but I am gone hence;\nAnd fearfully did menace me with death,\nIf I did stay to look on his intents.\n\nFRIAR LAURENCE:\nStay, then; I'll go alone. Fear comes upon me:\nO, much I fear some ill unlucky thing.\n\nBALTHASAR:\nAs I did sleep under this yew-tree here,\nI dreamt my master and another fought,\nAnd that my master slew him.\n\nFRIAR LAURENCE:\nRomeo!\nAlack, alack, what blood is this, which stains\nThe stony entrance of this sepulchre?\nWhat mean these masterless and gory swords\nTo lie discolour'd by this place of peace?\nRomeo! O, pale! Who else? what, Paris too?\nAnd steep'd in blood? Ah, what an unkind hour\nIs guilty of this lamentable chance!\nThe lady stirs.\n\nJULIET:\nO comfortable friar! where is my lord?\nI do remember well where I should be,\nAnd there I am. Where is my Romeo?\n\nFRIAR LAURENCE:\nI hear some noise. Lady, come from that nest\nOf death, contagion, and unnatural sleep:\nA greater power than we can contradict\nHath thwarted our intents. Come, come away.\nThy husband in thy bosom there lies dead;\nAnd Paris too. Come, I'll dispose of thee\nAmong a sisterhood of holy nuns:\nStay not to question, for the watch is coming;\nCome, go, good Juliet,\nI dare no longer stay.\n\nJULIET:\nGo, get thee hence, for I will not away.\nWhat's here? a cup, closed in my true love's hand?\nPoison, I see, hath been his timeless end:\nO churl! drunk all, and left no friendly drop\nTo help me after? I will kiss thy lips;\nHaply some poison yet doth hang on them,\nTo make die with a restorative.\nThy lips are warm.\n\nFirst Watchman:\n\nJULIET:\nYea, noise? then I'll be brief. O happy dagger!\nThis is thy sheath;\nthere rust, and let me die.\n\nPAGE:\nThis is the place; there, where the torch doth burn.\n\nFirst Watchman:\nThe ground is bloody; search about the churchyard:\nGo, some of you, whoe'er you find attach.\nPitiful sight! here lies the county slain,\nAnd Juliet bleeding, warm, and newly dead,\nWho here hath lain these two days buried.\nGo, tell the prince: run to the Capulets:\nRaise up the Montagues: some others search:\nWe see the ground whereon these woes do lie;\nBut the true ground of all these piteous woes\nWe cannot without circumstance descry.\n\nSecond Watchman:\nHere's Romeo's man; we found him in the churchyard.\n\nFirst Watchman:\nHold him in safety, till the prince come hither.\n\nThird Watchman:\nHere is a friar, that trembles, sighs and weeps:\nWe took this mattock and this spade from him,\nAs he was coming from this churchyard side.\n\nFirst Watchman:\nA great suspicion: stay the friar too.\n\nPRINCE:\nWhat misadventure is so early up,\nThat calls our person from our morning's rest?\n\nCAPULET:\nWhat should it be, that they so shriek abroad?\n\nLADY CAPULET:\nThe people in the street cry Romeo,\nSome Juliet, and some Paris; and all run,\nWith open outcry toward our monument.\n\nPRINCE:\nWhat fear is this which startles in our ears?\n\nFirst Watchman:\nSovereign, here lies the County Paris slain;\nAnd Romeo dead; and Juliet, dead before,\nWarm and new kill'd.\n\nPRINCE:\nSearch, seek, and know how this foul murder comes.\n\nFirst Watchman:\nHere is a friar, and slaughter'd Romeo's man;\nWith instruments upon them, fit to open\nThese dead men's tombs.\n\nCAPULET:\nO heavens! O wife, look how our daughter bleeds!\nThis dagger hath mista'en--for, lo, his house\nIs empty on the back of Montague,--\nAnd it mis-sheathed in my daughter's bosom!\n\nLADY CAPULET:\nO me! this sight of death is as a bell,\nThat warns my old age to a sepulchre.\n\nPRINCE:\nCome, Montague; for thou art early up,\nTo see thy son and heir more early down.\n\nMONTAGUE:\nAlas, my liege, my wife is dead to-night;\nGrief of my son's exile hath stopp'd her breath:\nWhat further woe conspires against mine age?\n\nPRINCE:\nLook, and thou shalt see.\n\nMONTAGUE:\nO thou untaught! what manners is in this?\nTo press before thy father to a grave?\n\nPRINCE:\nSeal up the mouth of outrage for a while,\nTill we can clear these ambiguities,\nAnd know their spring, their head, their\ntrue descent;\nAnd then will I be general of your woes,\nAnd lead you even to death: meantime forbear,\nAnd let mischance be slave to patience.\nBring forth the parties of suspicion.\n\nFRIAR LAURENCE:\nI am the greatest, able to do least,\nYet most suspected, as the time and place\nDoth make against me of this direful murder;\nAnd here I stand, both to impeach and purge\nMyself condemned and myself excused.\n\nPRINCE:\nThen say at once what thou dost know in this.\n\nFRIAR LAURENCE:\nI will be brief, for my short date of breath\nIs not so long as is a tedious tale.\nRomeo, there dead, was husband to that Juliet;\nAnd she, there dead, that Romeo's faithful wife:\nI married them; and their stol'n marriage-day\nWas Tybalt's dooms-day, whose untimely death\nBanish'd the new-made bridegroom from the city,\nFor whom, and not for Tybalt, Juliet pined.\nYou, to remove that siege of grief from her,\nBetroth'd and would have married her perforce\nTo County Paris: then comes she to me,\nAnd, with wild looks, bid me devise some mean\nTo rid her from this second marriage,\nOr in my cell there would she kill herself.\nThen gave I her, so tutor'd by my art,\nA sleeping potion; which so took effect\nAs I intended, for it wrought on her\nThe form of death: meantime I writ to Romeo,\nThat he should hither come as this dire night,\nTo help to take her from her borrow'd grave,\nBeing the time the potion's force should cease.\nBut he which bore my letter, Friar John,\nWas stay'd by accident, and yesternight\nReturn'd my letter back. Then all alone\nAt the prefixed hour of her waking,\nCame I to take her from her kindred's vault;\nMeaning to keep her closely at my cell,\nTill I conveniently could send to Romeo:\nBut when I came, some minute ere the time\nOf her awaking, here untimely lay\nThe noble Paris and true Romeo dead.\nShe wakes; and I entreated her come forth,\nAnd bear this work of heaven with patience:\nBut then a noise did scare me from the tomb;\nAnd she, too desperate, would not go with me,\nBut, as it seems, did violence on herself.\nAll this I know; and to the marriage\nHer nurse is privy: and, if aught in this\nMiscarried by my fault, let my old life\nBe sacrificed, some hour before his time,\nUnto the rigour of severest law.\n\nPRINCE:\nWe still have known thee for a holy man.\nWhere's Romeo's man? what can he say in this?\n\nBALTHASAR:\nI brought my master news of Juliet's death;\nAnd then in post he came from Mantua\nTo this same place, to this same monument.\nThis letter he early bid me give his father,\nAnd threatened me with death, going in the vault,\nI departed not and left him there.\n\nPRINCE:\nGive me the letter; I will look on it.\nWhere is the county's page, that raised the watch?\nSirrah, what made your master in this place?\n\nPAGE:\nHe came with flowers to strew his lady's grave;\nAnd bid me stand aloof, and so I did:\nAnon comes one with light to ope the tomb;\nAnd by and by my master drew on him;\nAnd then I ran away to call the watch.\n\nPRINCE:\nThis letter doth make good the friar's words,\nTheir course of love, the tidings of her death:\nAnd here he writes that he did buy a poison\nOf a poor 'pothecary, and therewithal\nCame to this vault to die, and lie with Juliet.\nWhere be these enemies? Capulet! Montague!\nSee, what a scourge is laid upon your hate,\nThat heaven finds means to kill your joys with love.\nAnd I for winking at your discords too\nHave lost a brace of kinsmen: all are punish'd.\n\nCAPULET:\nO brother Montague, give me thy hand:\nThis is my daughter's jointure, for no more\nCan I demand.\n\nMONTAGUE:\nBut I can give thee more:\nFor I will raise her statue in pure gold;\nThat while Verona by that name is known,\nThere shall no figure at such rate be set\nAs that of true and faithful Juliet.\n\nCAPULET:\nAs rich shall Romeo's by his lady's lie;\nPoor sacrifices of our enmity!\n\nPRINCE:\nA glooming peace this morning with it brings;\nThe sun, for sorrow, will not show his head:\nGo hence, to have more talk of these sad things;\nSome shall be pardon'd, and some punished:\nFor never was a story of more woe\nThan this of Juliet and her Romeo.\n\nWARWICK:\nI wonder how the king escaped our hands.\n\nYORK:\nWhile we pursued the horsemen of the north,\nHe slily stole away and left his men:\nWhereat the great Lord of Northumberland,\nWhose warlike ears could never brook retreat,\nCheer'd up the drooping army; and himself,\nLord Clifford and Lord Stafford, all abreast,\nCharged our main battle's front, and breaking in\nWere by the swords of common soldiers slain.\n\nEDWARD:\nLord Stafford's father, Duke of Buckingham,\nIs either slain or wounded dangerously;\nI cleft his beaver with a downright blow:\nThat this is true, father, behold his blood.\n\nMONTAGUE:\nAnd, brother, here's the Earl of Wiltshire's blood,\nWhom I encounter'd as the battles join'd.\n\nRICHARD:\nSpeak thou for me and tell them what I did.\n\nYORK:\nRichard hath best deserved of all my sons.\nBut is your grace dead, my Lord of Somerset?\n\nNORFOLK:\nSuch hope have all the line of John of Gaunt!\n\nRICHARD:\nThus do I hope to shake King Henry's head.\n\nWARWICK:\nAnd so do I. Victorious Prince of York,\nBefore I see thee seated in that throne\nWhich now the house of Lancaster usurps,\nI vow by heaven these eyes shall never close.\nThis is the palace of the fearful king,\nAnd this the regal seat: possess it, York;\nFor this is thine and not King Henry's heirs'\n\nYORK:\nAssist me, then, sweet Warwick, and I will;\nFor hither we have broken in by force.\n\nNORFOLK:\nWe'll all assist you; he that flies shall die.\n\nYORK:\nThanks, gentle Norfolk: stay by me, my lords;\nAnd, soldiers, stay and lodge by me this night.\n\nWARWICK:\nAnd when the king comes, offer no violence,\nUnless he seek to thrust you out perforce.\n\nYORK:\nThe queen this day here holds her parliament,\nBut little thinks we shall be of her council:\nBy words or blows here let us win our right.\n\nRICHARD:\nArm'd as we are, let's stay within this house.\n\nWARWICK:\nThe bloody parliament shall this be call'd,\nUnless Plantagenet, Duke of York, be king,\nAnd bashful Henry deposed, whose cowardice\nHath made us by-words to our enemies.\n\nYORK:\nThen leave me not, my lords; be resolute;\nI mean to take possession of my right.\n\nWARWICK:\nNeither the king, nor he that loves him best,\nThe proudest he that holds up Lancaster,\nDares stir a wing, if Warwick shake his bells.\nI'll plant Plantagenet, root him up who dares:\nResolve thee, Richard; claim the English crown.\n\nKING HENRY VI:\nMy lords, look where the sturdy rebel sits,\nEven in the chair of state: belike he means,\nBack'd by the power of Warwick, that false peer,\nTo aspire unto the crown and reign as king.\nEarl of Northumberland, he slew thy father.\nAnd thine, Lord Clifford; and you both have vow'd revenge\nOn him, his sons, his favourites and his friends.\n\nNORTHUMBERLAND:\nIf I be not, heavens be revenged on me!\n\nCLIFFORD:\nThe hope thereof makes Clifford mourn in steel.\n\nWESTMORELAND:\nWhat, shall we suffer this? let's pluck him down:\nMy heart for anger burns; I cannot brook it.\n\nKING HENRY VI:\nBe patient, gentle Earl of Westmoreland.\n\nCLIFFORD:\nPatience is for poltroons, such as he:\nHe durst not sit there, had your father lived.\nMy gracious lord, here in the parliament\nLet us assail the family of York.\n\nNORTHUMBERLAND:\nWell hast thou spoken, cousin: be it so.\n\nKING HENRY VI:\nAh, know you not the city favours them,\nAnd they have troops of soldiers at their beck?\n\nEXETER:\nBut when the duke is slain, they'll quickly fly.\n\nKING HENRY VI:\nFar be the thought of this from Henry's heart,\nTo make a shambles of the parliament-house!\nCousin of Exeter, frowns, words and threats\nShall be the war that Henry means to use.\nThou factious Duke of York, descend my throne,\nand kneel for grace and mercy at my feet;\nI am thy sovereign.\n\nYORK:\nI am thine.\n\nEXETER:\nFor shame, come down: he made thee Duke of York.\n\nYORK:\n'Twas my inheritance, as the earldom was.\n\nEXETER:\nThy father was a traitor to the crown.\n\nWARWICK:\nExeter, thou art a traitor to the crown\nIn following this usurping Henry.\n\nCLIFFORD:\nWhom should he follow but his natural king?\n\nWARWICK:\nTrue, Clifford; and that's Richard Duke of York.\n\nKING HENRY VI:\nAnd shall I stand, and thou sit in my throne?\n\nYORK:\nIt must and shall be so: content thyself.\n\nWARWICK:\nBe Duke of Lancaster; let him be king.\n\nWESTMORELAND:\nHe is both king and Duke of Lancaster;\nAnd that the Lord of Westmoreland shall maintain.\n\nWARWICK:\nAnd Warwick shall disprove it. You forget\nThat we are those which chased you from the field\nAnd slew your fathers, and with colours spread\nMarch'd through the city to the palace gates.\n\nNORTHUMBERLAND:\nYes, Warwick, I remember it to my grief;\nAnd, by his soul, thou and thy house shall rue it.\n\nWESTMORELAND:\nPlantagenet, of thee and these thy sons,\nThy kinsman and thy friends, I'll have more lives\nThan drops of blood were in my father's veins.\n\nCLIFFORD:\nUrge it no more; lest that, instead of words,\nI send thee, Warwick, such a messenger\nAs shall revenge his death before I stir.\n\nWARWICK:\nPoor Clifford! how I scorn his worthless threats!\n\nYORK:\nWill you we show our title to the crown?\nIf not, our swords shall plead it in the field.\n\nKING HENRY VI:\nWhat title hast thou, traitor, to the crown?\nThy father was, as thou art, Duke of York;\nThy grandfather, Roger Mortimer, Earl of March:\nI am the son of Henry the Fifth,\nWho made the Dauphin and the French to stoop\nAnd seized upon their towns and provinces.\n\nWARWICK:\nTalk not of France, sith thou hast lost it all.\n\nKING HENRY VI:\nThe lord protector lost it, and not I:\nWhen I was crown'd I was but nine months old.\n\nRICHARD:\nYou are old enough now, and yet, methinks, you lose.\nFather, tear the crown from the usurper's head.\n\nEDWARD:\nSweet father, do so; set it on your head.\n\nMONTAGUE:\nGood brother, as thou lovest and honourest arms,\nLet's fight it out and not stand cavilling thus.\n\nRICHARD:\nSound drums and trumpets, and the king will fly.\n\nYORK:\nSons, peace!\n\nKING HENRY VI:\nPeace, thou! and give King Henry leave to speak.\n\nWARWICK:\nPlantagenet shall speak first: hear him, lords;\nAnd be you silent and attentive too,\nFor he that interrupts him shall not live.\n\nKING HENRY VI:\nThink'st thou that I will leave my kingly throne,\nWherein my grandsire and my father sat?\nNo: first shall war unpeople this my realm;\nAy, and their colours, often borne in France,\nAnd now in England to our heart's great sorrow,\nShall be my winding-sheet. Why faint you, lords?\nMy title's good, and better far than his.\n\nWARWICK:\nProve it, Henry, and thou shalt be king.\n\nKING HENRY VI:\nHenry the Fourth by conquest got the crown.\n\nYORK:\n'Twas by rebellion against his king.\n\nKING HENRY VI:\n\nYORK:\nWhat then?\n\nKING HENRY VI:\nAn if he may, then am I lawful king;\nFor Richard, in the view of many lords,\nResign'd the crown to Henry the Fourth,\nWhose heir my father was, and I am his.\n\nYORK:\nHe rose against him, being his sovereign,\nAnd made him to resign his crown perforce.\n\nWARWICK:\nSuppose, my lords, he did it unconstrain'd,\nThink you 'twere prejudicial to his crown?\n\nEXETER:\nNo; for he could not so resign his crown\nBut that the next heir should succeed and reign.\n\nKING HENRY VI:\nArt thou against us, Duke of Exeter?\n\nEXETER:\nHis is the right, and therefore pardon me.\n\nYORK:\nWhy whisper you, my lords, and answer not?\n\nEXETER:\nMy conscience tells me he is lawful king.\n\nKING HENRY VI:\n\nNORTHUMBERLAND:\nPlantagenet, for all the claim thou lay'st,\nThink not that Henry shall be so deposed.\n\nWARWICK:\nDeposed he shall be, in despite of all.\n\nNORTHUMBERLAND:\nThou art deceived: 'tis not thy southern power,\nOf Essex, Norfolk, Suffolk, nor of Kent,\nWhich makes thee thus presumptuous and proud,\nCan set the duke up in despite of me.\n\nCLIFFORD:\nKing Henry, be thy title right or wrong,\nLord Clifford vows to fight in thy defence:\nMay that ground gape and swallow me alive,\nWhere I shall kneel to him that slew my father!\n\nKING HENRY VI:\nO Clifford, how thy words revive my heart!\n\nYORK:\nHenry of Lancaster, resign thy crown.\nWhat mutter you, or what conspire you, lords?\n\nWARWICK:\nDo right unto this princely Duke of York,\nOr I will fill the house with armed men,\nAnd over the chair of state, where now he sits,\nWrite up his title with usurping blood.\n\nKING HENRY VI:\nMy Lord of Warwick, hear me but one word:\nLet me for this my life-time reign as king.\n\nYORK:\nConfirm the crown to me and to mine heirs,\nAnd thou shalt reign in quiet while thou livest.\n\nKING HENRY VI:\nI am content: Richard Plantagenet,\nEnjoy the kingdom after my decease.\n\nCLIFFORD:\nWhat wrong is this unto the prince your son!\n\nWARWICK:\nWhat good is this to England and himself!\n\nWESTMORELAND:\nBase, fearful and despairing Henry!\n\nCLIFFORD:\nHow hast thou injured both thyself and us!\n\nWESTMORELAND:\nI cannot stay to hear these articles.\n\nNORTHUMBERLAND:\nNor I.\n\nCLIFFORD:\nCome, cousin, let us tell the queen these news.\n\nWESTMORELAND:\nFarewell, faint-hearted and degenerate king,\nIn whose cold blood no spark of honour bides.\n\nNORTHUMBERLAND:\nBe thou a prey unto the house of York,\nAnd die in bands for this unmanly deed!\n\nCLIFFORD:\nIn dreadful war mayst thou be overcome,\nOr live in peace abandon'd and despised!\n\nWARWICK:\nTurn this way, Henry, and regard them not.\n\nEXETER:\nThey seek revenge and therefore will not yield.\n\nKING HENRY VI:\nAh, Exeter!\n\nWARWICK:\nWhy should you sigh, my lord?\n\nKING HENRY VI:\nNot for myself, Lord Warwick, but my son,\nWhom I unnaturally shall disinherit.\nBut be it as it may: I here entail\nThe crown to thee and to thine heirs for ever;\nConditionally, that here thou take an oath\nTo cease this civil war, and, whilst I live,\nTo honour me as thy king and sovereign,\nAnd neither by treason nor hostility\nTo seek to put me down and reign thyself.\n\nYORK:\nThis oath I willingly take and will perform.\n\nWARWICK:\nLong live King Henry! Plantagenet embrace him.\n\nKING HENRY VI:\nAnd long live thou and these thy forward sons!\n\nYORK:\nNow York and Lancaster are reconciled.\n\nEXETER:\nAccursed be he that seeks to make them foes!\n\nYORK:\nFarewell, my gracious lord; I'll to my castle.\n\nWARWICK:\nAnd I'll keep London with my soldiers.\n\nNORFOLK:\nAnd I to Norfolk with my followers.\n\nMONTAGUE:\nAnd I unto the sea from whence I came.\n\nKING HENRY VI:\nAnd I, with grief and sorrow, to the court.\n\nEXETER:\nHere comes the queen, whose looks bewray her anger:\nI'll steal away.\n\nKING HENRY VI:\nExeter, so will I.\n\nQUEEN MARGARET:\nNay, go not from me; I will follow thee.\n\nKING HENRY VI:\nBe patient, gentle queen, and I will stay.\n\nQUEEN MARGARET:\nWho can be patient in such extremes?\nAh, wretched man! would I had died a maid\nAnd never seen thee, never borne thee son,\nSeeing thou hast proved so unnatural a father\nHath he deserved to lose his birthright thus?\nHadst thou but loved him half so well as I,\nOr felt that pain which I did for him once,\nOr nourish'd him as I did with my blood,\nThou wouldst have left thy dearest heart-blood there,\nRather than have that savage duke thine heir\nAnd disinherited thine only son.\n\nPRINCE EDWARD:\nFather, you cannot disinherit me:\nIf you be king, why should not I succeed?\n\nKING HENRY VI:\nPardon me, Margaret; pardon me, sweet son:\nThe Earl of Warwick and the duke enforced me.\n\nQUEEN MARGARET:\nEnforced thee! art thou king, and wilt be forced?\nI shame to hear thee speak. Ah, timorous wretch!\nThou hast undone thyself, thy son and me;\nAnd given unto the house of York such head\nAs thou shalt reign but by their sufferance.\nTo entail him and his heirs unto the crown,\nWhat is it, but to make thy sepulchre\nAnd creep into it far before thy time?\nWarwick is chancellor and the lord of Calais;\nStern Falconbridge commands the narrow seas;\nThe duke is made protector of the realm;\nAnd yet shalt thou be safe? such safety finds\nThe trembling lamb environed with wolves.\nHad I been there, which am a silly woman,\nThe soldiers should have toss'd me on their pikes\nBefore I would have granted to that act.\nBut thou preferr'st thy life before thine honour:\nAnd seeing thou dost, I here divorce myself\nBoth from thy table, Henry, and thy bed,\nUntil that act of parliament be repeal'd\nWhereby my son is disinherited.\nThe northern lords that have forsworn thy colours\nWill follow mine, if once they see them spread;\nAnd spread they shall be, to thy foul disgrace\nAnd utter ruin of the house of York.\nThus do I leave thee. Come, son, let's away;\nOur army is ready; come, we'll after them.\n\nKING HENRY VI:\nStay, gentle Margaret, and hear me speak.\n\nQUEEN MARGARET:\nThou hast spoke too much already: get thee gone.\n\nKING HENRY VI:\nGentle son Edward, thou wilt stay with me?\n\nQUEEN MARGARET:\nAy, to be murder'd by his enemies.\n\nPRINCE EDWARD:\nWhen I return with victory from the field\nI'll see your grace: till then I'll follow her.\n\nQUEEN MARGARET:\nCome, son, away; we may not linger thus.\n\nKING HENRY VI:\nPoor queen! how love to me and to her son\nHath made her break out into terms of rage!\nRevenged may she be on that hateful duke,\nWhose haughty spirit, winged with desire,\nWill cost my crown, and like an empty eagle\nTire on the flesh of me and of my son!\nThe loss of those three lords torments my heart:\nI'll write unto them and entreat them fair.\nCome, cousin you shall be the messenger.\n\nEXETER:\nAnd I, I hope, shall reconcile them all.\n3 KING HENRY VI\n\nRICHARD:\nBrother, though I be youngest, give me leave.\n\nEDWARD:\nNo, I can better play the orator.\n\nMONTAGUE:\nBut I have reasons strong and forcible.\n\nYORK:\nWhy, how now, sons and brother! at a strife?\nWhat is your quarrel? how began it first?\n\nEDWARD:\nNo quarrel, but a slight contention.\n\nYORK:\nAbout what?\n\nRICHARD:\nAbout that which concerns your grace and us;\nThe crown of England, father, which is yours.\n\nYORK:\nMine boy? not till King Henry be dead.\n\nRICHARD:\nYour right depends not on his life or death.\n\nEDWARD:\nNow you are heir, therefore enjoy it now:\nBy giving the house of Lancaster leave to breathe,\nIt will outrun you, father, in the end.\n\nYORK:\nI took an oath that he should quietly reign.\n\nEDWARD:\nBut for a kingdom any oath may be broken:\nI would break a thousand oaths to reign one year.\n\nRICHARD:\nNo; God forbid your grace should be forsworn.\n\nYORK:\nI shall be, if I claim by open war.\n\nRICHARD:\nI'll prove the contrary, if you'll hear me speak.\n\nYORK:\nThou canst not, son; it is impossible.\n\nRICHARD:\nAn oath is of no moment, being not took\nBefore a true and lawful magistrate,\nThat hath authority over him that swears:\nHenry had none, but did usurp the place;\nThen, seeing 'twas he that made you to depose,\nYour oath, my lord, is vain and frivolous.\nTherefore, to arms! And, father, do but think\nHow sweet a thing it is to wear a crown;\nWithin whose circuit is Elysium\nAnd all that poets feign of bliss and joy.\nWhy do we finger thus? I cannot rest\nUntil the white rose that I wear be dyed\nEven in the lukewarm blood of Henry's heart.\n\nYORK:\nRichard, enough; I will be king, or die.\nBrother, thou shalt to London presently,\nAnd whet on Warwick to this enterprise.\nThou, Richard, shalt to the Duke of Norfolk,\nAnd tell him privily of our intent.\nYou Edward, shall unto my Lord Cobham,\nWith whom the Kentishmen will willingly rise:\nIn them I trust; for they are soldiers,\nWitty, courteous, liberal, full of spirit.\nWhile you are thus employ'd, what resteth more,\nBut that I seek occasion how to rise,\nAnd yet the king not privy to my drift,\nNor any of the house of Lancaster?\nBut, stay: what news? Why comest thou in such post?\n\nMessenger:\nThe queen with all the northern earls and lords\nIntend here to besiege you in your castle:\nShe is hard by with twenty thousand men;\nAnd therefore fortify your hold, my lord.\n\nYORK:\nAy, with my sword. What! think'st thou that we fear them?\nEdward and Richard, you shall stay with me;\nMy brother Montague shall post to London:\nLet noble Warwick, Cobham, and the rest,\nWhom we have left protectors of the king,\nWith powerful policy strengthen themselves,\nAnd trust not simple Henry nor his oaths.\n\nMONTAGUE:\nBrother, I go; I'll win them, fear it not:\nAnd thus most humbly I do take my leave.\nSir John and Sir Hugh Mortimer, mine uncles,\nYou are come to Sandal in a happy hour;\nThe army of the queen mean to besiege us.\n\nJOHN MORTIMER:\nShe shall not need; we'll meet her in the field.\n\nYORK:\nWhat, with five thousand men?\n\nRICHARD:\nAy, with five hundred, father, for a need:\nA woman's general; what should we fear?\n\nEDWARD:\nI hear their drums: let's set our men in order,\nAnd issue forth and bid them battle straight.\n\nYORK:\nFive men to twenty! though the odds be great,\nI doubt not, uncle, of our victory.\nMany a battle have I won in France,\nWhen as the enemy hath been ten to one:\nWhy should I not now have the like success?\n3 KING HENRY VI\n\nRUTLAND:\nAh, whither shall I fly to 'scape their hands?\nAh, tutor, look where bloody Clifford comes!\n\nCLIFFORD:\nChaplain, away! thy priesthood saves thy life.\nAs for the brat of this accursed duke,\nWhose father slew my father, he shall die.\n\nTutor:\nAnd I, my lord, will bear him company.\n\nCLIFFORD:\nSoldiers, away with him!\n\nTutor:\nAh, Clifford, murder not this innocent child,\nLest thou be hated both of God and man!\n\nCLIFFORD:\nHow now! is he dead already? or is it fear\nThat makes him close his eyes? I'll open them.\n\nRUTLAND:\nSo looks the pent-up lion o'er the wretch\nThat trembles under his devouring paws;\nAnd so he walks, insulting o'er his prey,\nAnd so he comes, to rend his limbs asunder.\nAh, gentle Clifford, kill me with thy sword,\nAnd not with such a cruel threatening look.\nSweet Clifford, hear me speak before I die.\nI am too mean a subject for thy wrath:\nBe thou revenged on men, and let me live.\n\nCLIFFORD:\nIn vain thou speak'st, poor boy; my father's blood\nHath stopp'd the passage where thy words should enter.\n\nRUTLAND:\nThen let my father's blood open it again:\nHe is a man, and, Clifford, cope with him.\n\nCLIFFORD:\nHad thy brethren here, their lives and thine\nWere not revenge sufficient for me;\nNo, if I digg'd up thy forefathers' graves\nAnd hung their rotten coffins up in chains,\nIt could not slake mine ire, nor ease my heart.\nThe sight of any of the house of York\nIs as a fury to torment my soul;\nAnd till I root out their accursed line\nAnd leave not one alive, I live in hell.\nTherefore--\n\nRUTLAND:\nO, let me pray before I take my death!\nTo thee I pray; sweet Clifford, pity me!\n\nCLIFFORD:\nSuch pity as my rapier's point affords.\n\nRUTLAND:\nI never did thee harm: why wilt thou slay me?\n\nCLIFFORD:\nThy father hath.\n\nRUTLAND:\nBut 'twas ere I was born.\nThou hast one son; for his sake pity me,\nLest in revenge thereof, sith God is just,\nHe be as miserably slain as I.\nAh, let me live in prison all my days;\nAnd when I give occasion of offence,\nThen let me die, for now thou hast no cause.\n\nCLIFFORD:\nNo cause!\nThy father slew my father; therefore, die.\n\nRUTLAND:\nDi faciant laudis summa sit ista tuae!\n\nCLIFFORD:\nPlantagenet! I come, Plantagenet!\nAnd this thy son's blood cleaving to my blade\nShall rust upon my weapon, till thy blood,\nCongeal'd with this, do make me wipe off both.\n3 KING HENRY VI\n\nYORK:\nThe army of the queen hath got the field:\nMy uncles both are slain in rescuing me;\nAnd all my followers to the eager foe\nTurn back and fly, like ships before the wind\nOr lambs pursued by hunger-starved wolves.\nMy sons, God knows what hath bechanced them:\nBut this I know, they have demean'd themselves\nLike men born to renown by life or death.\nThree times did Richard make a lane to me.\nAnd thrice cried 'Courage, father! fight it out!'\nAnd full as oft came Edward to my side,\nWith purple falchion, painted to the hilt\nIn blood of those that had encounter'd him:\nAnd when the hardiest warriors did retire,\nRichard cried 'Charge! and give no foot of ground!'\nAnd cried 'A crown, or else a glorious tomb!\nA sceptre, or an earthly sepulchre!'\nWith this, we charged again: but, out, alas!\nWe bodged again; as I have seen a swan\nWith bootless labour swim against the tide\nAnd spend her strength with over-matching waves.\nAh, hark! the fatal followers do pursue;\nAnd I am faint and cannot fly their fury:\nAnd were I strong, I would not shun their fury:\nThe sands are number'd that make up my life;\nHere must I stay, and here my life must end.\nCome, bloody Clifford, rough Northumberland,\nI dare your quenchless fury to more rage:\nI am your butt, and I abide your shot.\n\nNORTHUMBERLAND:\nYield to our mercy, proud Plantagenet.\n\nCLIFFORD:\nAy, to such mercy as his ruthless arm,\nWith downright payment, show'd unto my father.\nNow Phaethon hath tumbled from his car,\nAnd made an evening at the noontide prick.\n\nYORK:\nMy ashes, as the phoenix, may bring forth\nA bird that will revenge upon you all:\nAnd in that hope I throw mine eyes to heaven,\nScorning whate'er you can afflict me with.\nWhy come you not? what! multitudes, and fear?\n\nCLIFFORD:\nSo cowards fight when they can fly no further;\nSo doves do peck the falcon's piercing talons;\nSo desperate thieves, all hopeless of their lives,\nBreathe out invectives 'gainst the officers.\n\nYORK:\nO Clifford, but bethink thee once again,\nAnd in thy thought o'er-run my former time;\nAnd, if though canst for blushing, view this face,\nAnd bite thy tongue, that slanders him with cowardice\nWhose frown hath made thee faint and fly ere this!\n\nCLIFFORD:\nI will not bandy with thee word for word,\nBut buckle with thee blows, twice two for one.\n\nQUEEN MARGARET:\nHold, valiant Clifford! for a thousand causes\nI would prolong awhile the traitor's life.\nWrath makes him deaf: speak thou, Northumberland.\n\nNORTHUMBERLAND:\nHold, Clifford! do not honour him so much\nTo prick thy finger, though to wound his heart:\nWhat valour were it, when a cur doth grin,\nFor one to thrust his hand between his teeth,\nWhen he might spurn him with his foot away?\nIt is war's prize to take all vantages;\nAnd ten to one is no impeach of valour.\n\nCLIFFORD:\nAy, ay, so strives the woodcock with the gin.\n\nNORTHUMBERLAND:\nSo doth the cony struggle in the net.\n\nYORK:\nSo triumph thieves upon their conquer'd booty;\nSo true men yield, with robbers so o'ermatch'd.\n\nNORTHUMBERLAND:\nWhat would your grace have done unto him now?\n\nQUEEN MARGARET:\nBrave warriors, Clifford and Northumberland,\nCome, make him stand upon this molehill here,\nThat raught at mountains with outstretched arms,\nYet parted but the shadow with his hand.\nWhat! was it you that would be England's king?\nWas't you that revell'd in our parliament,\nAnd made a preachment of your high descent?\nWhere are your mess of sons to back you now?\nThe wanton Edward, and the lusty George?\nAnd where's that valiant crook-back prodigy,\nDicky your boy, that with his grumbling voice\nWas wont to cheer his dad in mutinies?\nOr, with the rest, where is your darling Rutland?\nLook, York: I stain'd this napkin with the blood\nThat valiant Clifford, with his rapier's point,\nMade issue from the bosom of the boy;\nAnd if thine eyes can water for his death,\nI give thee this to dry thy cheeks withal.\nAlas poor York! but that I hate thee deadly,\nI should lament thy miserable state.\nI prithee, grieve, to make me merry, York.\nWhat, hath thy fiery heart so parch'd thine entrails\nThat not a tear can fall for Rutland's death?\nWhy art thou patient, man? thou shouldst be mad;\nAnd I, to make thee mad, do mock thee thus.\nStamp, rave, and fret, that I may sing and dance.\nThou wouldst be fee'd, I see, to make me sport:\nYork cannot speak, unless he wear a crown.\nA crown for York! and, lords, bow low to him:\nHold you his hands, whilst I do set it on.\nAy, marry, sir, now looks he like a king!\nAy, this is he that took King Henry's chair,\nAnd this is he was his adopted heir.\nBut how is it that great Plantagenet\nIs crown'd so soon, and broke his solemn oath?\nAs I bethink me, you should not be king\nTill our King Henry had shook hands with death.\nAnd will you pale your head in Henry's glory,\nAnd rob his temples of the diadem,\nNow in his life, against your holy oath?\nO, 'tis a fault too too unpardonable!\nOff with the crown, and with the crown his head;\nAnd, whilst we breathe, take time to do him dead.\n\nCLIFFORD:\nThat is my office, for my father's sake.\n\nQUEEN MARGARET:\nNay, stay; lets hear the orisons he makes.\n\nYORK:\nShe-wolf of France, but worse than wolves of France,\nWhose tongue more poisons than the adder's tooth!\nHow ill-beseeming is it in thy sex\nTo triumph, like an Amazonian trull,\nUpon their woes whom fortune captivates!\nBut that thy face is, vizard-like, unchanging,\nMade impudent with use of evil deeds,\nI would assay, proud queen, to make thee blush.\nTo tell thee whence thou camest, of whom derived,\nWere shame enough to shame thee, wert thou not shameless.\nThy father bears the type of King of Naples,\nOf both the Sicils and Jerusalem,\nYet not so wealthy as an English yeoman.\nHath that poor monarch taught thee to insult?\nIt needs not, nor it boots thee not, proud queen,\nUnless the adage must be verified,\nThat beggars mounted run their horse to death.\n'Tis beauty that doth oft make women proud;\nBut, God he knows, thy share thereof is small:\n'Tis virtue that doth make them most admired;\nThe contrary doth make thee wonder'd at:\n'Tis government that makes them seem divine;\nThe want thereof makes thee abominable:\nThou art as opposite to every good\nAs the Antipodes are unto us,\nOr as the south to the septentrion.\nO tiger's heart wrapt in a woman's hide!\nHow couldst thou drain the life-blood of the child,\nTo bid the father wipe his eyes withal,\nAnd yet be seen to bear a woman's face?\nWomen are soft, mild, pitiful and flexible;\nThou stern, obdurate, flinty, rough, remorseless.\nBids't thou me rage? why, now thou hast thy wish:\nWouldst have me weep? why, now thou hast thy will:\nFor raging wind blows up incessant showers,\nAnd when the rage allays, the rain begins.\nThese tears are my sweet Rutland's obsequies:\nAnd every drop cries vengeance for his death,\n'Gainst thee, fell Clifford, and thee, false\nFrenchwoman.\n\nNORTHUMBERLAND:\nBeshrew me, but his passion moves me so\nThat hardly can I cheque my eyes from tears.\n\nYORK:\nThat face of his the hungry cannibals\nWould not have touch'd, would not have stain'd with blood:\nBut you are more inhuman, more inexorable,\nO, ten times more, than tigers of Hyrcania.\nSee, ruthless queen, a hapless father's tears:\nThis cloth thou dip'dst in blood of my sweet boy,\nAnd I with tears do wash the blood away.\nKeep thou the napkin, and go boast of this:\nAnd if thou tell'st the heavy story right,\nUpon my soul, the hearers will shed tears;\nYea even my foes will shed fast-falling tears,\nAnd say 'Alas, it was a piteous deed!'\nThere, take the crown, and, with the crown, my curse;\nAnd in thy need such comfort come to thee\nAs now I reap at thy too cruel hand!\nHard-hearted Clifford, take me from the world:\nMy soul to heaven, my blood upon your heads!\n\nNORTHUMBERLAND:\nHad he been slaughter-man to all my kin,\nI should not for my life but weep with him.\nTo see how inly sorrow gripes his soul.\n\nQUEEN MARGARET:\nWhat, weeping-ripe, my Lord Northumberland?\nThink but upon the wrong he did us all,\nAnd that will quickly dry thy melting tears.\n\nCLIFFORD:\nHere's for my oath, here's for my father's death.\n\nQUEEN MARGARET:\nAnd here's to right our gentle-hearted king.\n\nYORK:\nOpen Thy gate of mercy, gracious God!\nMy soul flies through these wounds to seek out Thee.\n\nQUEEN MARGARET:\nOff with his head, and set it on York gates;\nSo York may overlook the town of York.\n3 KING HENRY VI\n\nEDWARD:\nI wonder how our princely father 'scaped,\nOr whether he be 'scaped away or no\nFrom Clifford's and Northumberland's pursuit:\nHad he been ta'en, we should have heard the news;\nHad he been slain, we should have heard the news;\nOr had he 'scaped, methinks we should have heard\nThe happy tidings of his good escape.\nHow fares my brother? why is he so sad?\n\nRICHARD:\nI cannot joy, until I be resolved\nWhere our right valiant father is become.\nI saw him in the battle range about;\nAnd watch'd him how he singled Clifford forth.\nMethought he bore him in the thickest troop\nAs doth a lion in a herd of neat;\nOr as a bear, encompass'd round with dogs,\nWho having pinch'd a few and made them cry,\nThe rest stand all aloof, and bark at him.\nSo fared our father with his enemies;\nSo fled his enemies my warlike father:\nMethinks, 'tis prize enough to be his son.\nSee how the morning opes her golden gates,\nAnd takes her farewell of the glorious sun!\nHow well resembles it the prime of youth,\nTrimm'd like a younker prancing to his love!\n\nEDWARD:\nDazzle mine eyes, or do I see three suns?\n\nRICHARD:\nThree glorious suns, each one a perfect sun;\nNot separated with the racking clouds,\nBut sever'd in a pale clear-shining sky.\nSee, see! they join, embrace, and seem to kiss,\nAs if they vow'd some league inviolable:\nNow are they but one lamp, one light, one sun.\nIn this the heaven figures some event.\n\nEDWARD:\n'Tis wondrous strange, the like yet never heard of.\nI think it cites us, brother, to the field,\nThat we, the sons of brave Plantagenet,\nEach one already blazing by our meeds,\nShould notwithstanding join our lights together\nAnd over-shine the earth as this the world.\nWhate'er it bodes, henceforward will I bear\nUpon my target three fair-shining suns.\n\nRICHARD:\nNay, bear three daughters: by your leave I speak it,\nYou love the breeder better than the male.\nBut what art thou, whose heavy looks foretell\nSome dreadful story hanging on thy tongue?\n\nMessenger:\nAh, one that was a woful looker-on\nWhen as the noble Duke of York was slain,\nYour princely father and my loving lord!\n\nEDWARD:\nO, speak no more, for I have heard too much.\n\nRICHARD:\nSay how he died, for I will hear it all.\n\nMessenger:\nEnvironed he was with many foes,\nAnd stood against them, as the hope of Troy\nAgainst the Greeks that would have enter'd Troy.\nBut Hercules himself must yield to odds;\nAnd many strokes, though with a little axe,\nHew down and fell the hardest-timber'd oak.\nBy many hands your father was subdued;\nBut only slaughter'd by the ireful arm\nOf unrelenting Clifford and the queen,\nWho crown'd the gracious duke in high despite,\nLaugh'd in his face; and when with grief he wept,\nThe ruthless queen gave him to dry his cheeks\nA napkin steeped in the harmless blood\nOf sweet young Rutland, by rough Clifford slain:\nAnd after many scorns, many foul taunts,\nThey took his head, and on the gates of York\nThey set the same; and there it doth remain,\nThe saddest spectacle that e'er I view'd.\n\nEDWARD:\nSweet Duke of York, our prop to lean upon,\nNow thou art gone, we have no staff, no stay.\nO Clifford, boisterous Clifford! thou hast slain\nThe flower of Europe for his chivalry;\nAnd treacherously hast thou vanquish'd him,\nFor hand to hand he would have vanquish'd thee.\nNow my soul's palace is become a prison:\nAh, would she break from hence, that this my body\nMight in the ground be closed up in rest!\nFor never henceforth shall I joy again,\nNever, O never shall I see more joy!\n\nRICHARD:\nI cannot weep; for all my body's moisture\nScarce serves to quench my furnace-burning heart:\nNor can my tongue unload my heart's great burthen;\nFor selfsame wind that I should speak withal\nIs kindling coals that fires all my breast,\nAnd burns me up with flames that tears would quench.\nTo weep is to make less the depth of grief:\nTears then for babes; blows and revenge for me\nRichard, I bear thy name; I'll venge thy death,\nOr die renowned by attempting it.\n\nEDWARD:\nHis name that valiant duke hath left with thee;\nHis dukedom and his chair with me is left.\n\nRICHARD:\nNay, if thou be that princely eagle's bird,\nShow thy descent by gazing 'gainst the sun:\nFor chair and dukedom, throne and kingdom say;\nEither that is thine, or else thou wert not his.\n\nWARWICK:\nHow now, fair lords! What fare? what news abroad?\n\nRICHARD:\nGreat Lord of Warwick, if we should recount\nOur baleful news, and at each word's deliverance\nStab poniards in our flesh till all were told,\nThe words would add more anguish than the wounds.\nO valiant lord, the Duke of York is slain!\n\nEDWARD:\nO Warwick, Warwick! that Plantagenet,\nWhich held three dearly as his soul's redemption,\nIs by the stern Lord Clifford done to death.\n\nWARWICK:\nTen days ago I drown'd these news in tears;\nAnd now, to add more measure to your woes,\nI come to tell you things sith then befall'n.\nAfter the bloody fray at Wakefield fought,\nWhere your brave father breathed his latest gasp,\nTidings, as swiftly as the posts could run,\nWere brought me of your loss and his depart.\nI, then in London keeper of the king,\nMuster'd my soldiers, gather'd flocks of friends,\nAnd very well appointed, as I thought,\nMarch'd toward Saint Alban's to intercept the queen,\nBearing the king in my behalf along;\nFor by my scouts I was advertised\nThat she was coming with a full intent\nTo dash our late decree in parliament\nTouching King Henry's oath and your succession.\nShort tale to make, we at Saint Alban's met\nOur battles join'd, and both sides fiercely fought:\nBut whether 'twas the coldness of the king,\nWho look'd full gently on his warlike queen,\nThat robb'd my soldiers of their heated spleen;\nOr whether 'twas report of her success;\nOr more than common fear of Clifford's rigour,\nWho thunders to his captives blood and death,\nI cannot judge: but to conclude with truth,\nTheir weapons like to lightning came and went;\nOur soldiers', like the night-owl's lazy flight,\nOr like an idle thresher with a flail,\nFell gently down, as if they struck their friends.\nI cheer'd them up with justice of our cause,\nWith promise of high pay and great rewards:\nBut all in vain; they had no heart to fight,\nAnd we in them no hope to win the day;\nSo that we fled; the king unto the queen;\nLord George your brother, Norfolk and myself,\nIn haste, post-haste, are come to join with you:\nFor in the marches here we heard you were,\nMaking another head to fight again.\n\nEDWARD:\nWhere is the Duke of Norfolk, gentle Warwick?\nAnd when came George from Burgundy to England?\n\nWARWICK:\nSome six miles off the duke is with the soldiers;\nAnd for your brother, he was lately sent\nFrom your kind aunt, Duchess of Burgundy,\nWith aid of soldiers to this needful war.\n\nRICHARD:\n'Twas odds, belike, when valiant Warwick fled:\nOft have I heard his praises in pursuit,\nBut ne'er till now his scandal of retire.\n\nWARWICK:\nNor now my scandal, Richard, dost thou hear;\nFor thou shalt know this strong right hand of mine\nCan pluck the diadem from faint Henry's head,\nAnd wring the awful sceptre from his fist,\nWere he as famous and as bold in war\nAs he is famed for mildness, peace, and prayer.\n\nRICHARD:\nI know it well, Lord Warwick; blame me not:\n'Tis love I bear thy glories makes me speak.\nBut in this troublous time what's to be done?\nShall we go throw away our coats of steel,\nAnd wrap our bodies in black mourning gowns,\nNumbering our Ave-Maries with our beads?\nOr shall we on the helmets of our foes\nTell our devotion with revengeful arms?\nIf for the last, say ay, and to it, lords.\n\nWARWICK:\nWhy, therefore Warwick came to seek you out;\nAnd therefore comes my brother Montague.\nAttend me, lords. The proud insulting queen,\nWith Clifford and the haught Northumberland,\nAnd of their feather many more proud birds,\nHave wrought the easy-melting king like wax.\nHe swore consent to your succession,\nHis oath enrolled in the parliament;\nAnd now to London all the crew are gone,\nTo frustrate both his oath and what beside\nMay make against the house of Lancaster.\nTheir power, I think, is thirty thousand strong:\nNow, if the help of Norfolk and myself,\nWith all the friends that thou, brave Earl of March,\nAmongst the loving Welshmen canst procure,\nWill but amount to five and twenty thousand,\nWhy, Via! to London will we march amain,\nAnd once again bestride our foaming steeds,\nAnd once again cry 'Charge upon our foes!'\nBut never once again turn back and fly.\n\nRICHARD:\nAy, now methinks I hear great Warwick speak:\nNe'er may he live to see a sunshine day,\nThat cries 'Retire,' if Warwick bid him stay.\n\nEDWARD:\nLord Warwick, on thy shoulder will I lean;\nAnd when thou fail'st--as God forbid the hour!--\nMust Edward fall, which peril heaven forfend!\n\nWARWICK:\nNo longer Earl of March, but Duke of York:\nThe next degree is England's royal throne;\nFor King of England shalt thou be proclaim'd\nIn every borough as we pass along;\nAnd he that throws not up his cap for joy\nShall for the fault make forfeit of his head.\nKing Edward, valiant Richard, Montague,\nStay we no longer, dreaming of renown,\nBut sound the trumpets, and about our task.\n\nRICHARD:\nThen, Clifford, were thy heart as hard as steel,\nAs thou hast shown it flinty by thy deeds,\nI come to pierce it, or to give thee mine.\n\nEDWARD:\nThen strike up drums: God and Saint George for us!\n\nWARWICK:\nHow now! what news?\n\nMessenger:\nThe Duke of Norfolk sends you word by me,\nThe queen is coming with a puissant host;\nAnd craves your company for speedy counsel.\n\nWARWICK:\nWhy then it sorts, brave warriors, let's away.\n3 KING HENRY VI\n\nQUEEN MARGARET:\nWelcome, my lord, to this brave town of York.\nYonder's the head of that arch-enemy\nThat sought to be encompass'd with your crown:\nDoth not the object cheer your heart, my lord?\n\nKING HENRY VI:\nAy, as the rocks cheer them that fear their wreck:\nTo see this sight, it irks my very soul.\nWithhold revenge, dear God! 'tis not my fault,\nNor wittingly have I infringed my vow.\n\nCLIFFORD:\nMy gracious liege, this too much lenity\nAnd harmful pity must be laid aside.\nTo whom do lions cast their gentle looks?\nNot to the beast that would usurp their den.\nWhose hand is that the forest bear doth lick?\nNot his that spoils her young before her face.\nWho 'scapes the lurking serpent's mortal sting?\nNot he that sets his foot upon her back.\nThe smallest worm will turn being trodden on,\nAnd doves will peck in safeguard of their brood.\nAmbitious York doth level at thy crown,\nThou smiling while he knit his angry brows:\nHe, but a duke, would have his son a king,\nAnd raise his issue, like a loving sire;\nThou, being a king, blest with a goodly son,\nDidst yield consent to disinherit him,\nWhich argued thee a most unloving father.\nUnreasonable creatures feed their young;\nAnd though man's face be fearful to their eyes,\nYet, in protection of their tender ones,\nWho hath not seen them, even with those wings\nWhich sometime they have used with fearful flight,\nMake war with him that climb'd unto their nest,\nOffer their own lives in their young's defence?\nFor shame, my liege, make them your precedent!\nWere it not pity that this goodly boy\nShould lose his birthright by his father's fault,\nAnd long hereafter say unto his child,\n'What my great-grandfather and his grandsire got\nMy careless father fondly gave away'?\nAh, what a shame were this! Look on the boy;\nAnd let his manly face, which promiseth\nSuccessful fortune, steel thy melting heart\nTo hold thine own and leave thine own with him.\n\nKING HENRY VI:\nFull well hath Clifford play'd the orator,\nInferring arguments of mighty force.\nBut, Clifford, tell me, didst thou never hear\nThat things ill-got had ever bad success?\nAnd happy always was it for that son\nWhose father for his hoarding went to hell?\nI'll leave my son my virtuous deeds behind;\nAnd would my father had left me no more!\nFor all the rest is held at such a rate\nAs brings a thousand-fold more care to keep\nThan in possession and jot of pleasure.\nAh, cousin York! would thy best friends did know\nHow it doth grieve me that thy head is here!\n\nQUEEN MARGARET:\nMy lord, cheer up your spirits: our foes are nigh,\nAnd this soft courage makes your followers faint.\nYou promised knighthood to our forward son:\nUnsheathe your sword, and dub him presently.\nEdward, kneel down.\n\nKING HENRY VI:\nEdward Plantagenet, arise a knight;\nAnd learn this lesson, draw thy sword in right.\n\nPRINCE:\nMy gracious father, by your kingly leave,\nI'll draw it as apparent to the crown,\nAnd in that quarrel use it to the death.\n\nCLIFFORD:\nWhy, that is spoken like a toward prince.\n\nMessenger:\nRoyal commanders, be in readiness:\nFor with a band of thirty thousand men\nComes Warwick, backing of the Duke of York;\nAnd in the towns, as they do march along,\nProclaims him king, and many fly to him:\nDarraign your battle, for they are at hand.\n\nCLIFFORD:\nI would your highness would depart the field:\nThe queen hath best success when you are absent.\n\nQUEEN MARGARET:\nAy, good my lord, and leave us to our fortune.\n\nKING HENRY VI:\nWhy, that's my fortune too; therefore I'll stay.\n\nNORTHUMBERLAND:\nBe it with resolution then to fight.\n\nPRINCE EDWARD:\nMy royal father, cheer these noble lords\nAnd hearten those that fight in your defence:\nUnsheathe your sword, good father; cry 'Saint George!'\n\nEDWARD:\nNow, perjured Henry! wilt thou kneel for grace,\nAnd set thy diadem upon my head;\nOr bide the mortal fortune of the field?\n\nQUEEN MARGARET:\nGo, rate thy minions, proud insulting boy!\nBecomes it thee to be thus bold in terms\nBefore thy sovereign and thy lawful king?\n\nEDWARD:\nI am his king, and he should bow his knee;\nI was adopted heir by his consent:\nSince when, his oath is broke; for, as I hear,\nYou, that are king, though he do wear the crown,\nHave caused him, by new act of parliament,\nTo blot out me, and put his own son in.\n\nCLIFFORD:\nAnd reason too:\nWho should succeed the father but the son?\n\nRICHARD:\nAre you there, butcher? O, I cannot speak!\n\nCLIFFORD:\nAy, crook-back, here I stand to answer thee,\nOr any he the proudest of thy sort.\n\nRICHARD:\n'Twas you that kill'd young Rutland, was it not?\n\nCLIFFORD:\nAy, and old York, and yet not satisfied.\n\nRICHARD:\nFor God's sake, lords, give signal to the fight.\n\nWARWICK:\nWhat say'st thou, Henry, wilt thou yield the crown?\n\nQUEEN MARGARET:\nWhy, how now, long-tongued Warwick! dare you speak?\nWhen you and I met at Saint Alban's last,\nYour legs did better service than your hands.\n\nWARWICK:\nThen 'twas my turn to fly, and now 'tis thine.\n\nCLIFFORD:\nYou said so much before, and yet you fled.\n\nWARWICK:\n'Twas not your valour, Clifford, drove me thence.\n\nNORTHUMBERLAND:\nNo, nor your manhood that durst make you stay.\n\nRICHARD:\nNorthumberland, I hold thee reverently.\nBreak off the parley; for scarce I can refrain\nThe execution of my big-swoln heart\nUpon that Clifford, that cruel child-killer.\n\nCLIFFORD:\nI slew thy father, call'st thou him a child?\n\nRICHARD:\nAy, like a dastard and a treacherous coward,\nAs thou didst kill our tender brother Rutland;\nBut ere sunset I'll make thee curse the deed.\n\nKING HENRY VI:\nHave done with words, my lords, and hear me speak.\n\nQUEEN MARGARET:\nDefy them then, or else hold close thy lips.\n\nKING HENRY VI:\nI prithee, give no limits to my tongue:\nI am a king, and privileged to speak.\n\nCLIFFORD:\nMy liege, the wound that bred this meeting here\nCannot be cured by words; therefore be still.\n\nRICHARD:\nThen, executioner, unsheathe thy sword:\nBy him that made us all, I am resolved\nthat Clifford's manhood lies upon his tongue.\n\nEDWARD:\nSay, Henry, shall I have my right, or no?\nA thousand men have broke their fasts to-day,\nThat ne'er shall dine unless thou yield the crown.\n\nWARWICK:\nIf thou deny, their blood upon thy head;\nFor York in justice puts his armour on.\n\nPRINCE EDWARD:\nIf that be right which Warwick says is right,\nThere is no wrong, but every thing is right.\n\nRICHARD:\nWhoever got thee, there thy mother stands;\nFor, well I wot, thou hast thy mother's tongue.\n\nQUEEN MARGARET:\nBut thou art neither like thy sire nor dam;\nBut like a foul mis-shapen stigmatic,\nMark'd by the destinies to be avoided,\nAs venom toads, or lizards' dreadful stings.\n\nRICHARD:\nIron of Naples hid with English gilt,\nWhose father bears the title of a king,--\nAs if a channel should be call'd the sea,--\nShamest thou not, knowing whence thou art extraught,\nTo let thy tongue detect thy base-born heart?\n\nEDWARD:\nA wisp of straw were worth a thousand crowns,\nTo make this shameless callet know herself.\nHelen of Greece was fairer far than thou,\nAlthough thy husband may be Menelaus;\nAnd ne'er was Agamemnon's brother wrong'd\nBy that false woman, as this king by thee.\nHis father revell'd in the heart of France,\nAnd tamed the king, and made the dauphin stoop;\nAnd had he match'd according to his state,\nHe might have kept that glory to this day;\nBut when he took a beggar to his bed,\nAnd graced thy poor sire with his bridal-day,\nEven then that sunshine brew'd a shower for him,\nThat wash'd his father's fortunes forth of France,\nAnd heap'd sedition on his crown at home.\nFor what hath broach'd this tumult but thy pride?\nHadst thou been meek, our title still had slept;\nAnd we, in pity of the gentle king,\nHad slipp'd our claim until another age.\n\nGEORGE:\nBut when we saw our sunshine made thy spring,\nAnd that thy summer bred us no increase,\nWe set the axe to thy usurping root;\nAnd though the edge hath something hit ourselves,\nYet, know thou, since we have begun to strike,\nWe'll never leave till we have hewn thee down,\nOr bathed thy growing with our heated bloods.\n\nEDWARD:\nAnd, in this resolution, I defy thee;\nNot willing any longer conference,\nSince thou deniest the gentle king to speak.\nSound trumpets! let our bloody colours wave!\nAnd either victory, or else a grave.\n\nQUEEN MARGARET:\nStay, Edward.\n\nEDWARD:\nNo, wrangling woman, we'll no longer stay:\nThese words will cost ten thousand lives this day.\n3 KING HENRY VI\n\nWARWICK:\nForspent with toil, as runners with a race,\nI lay me down a little while to breathe;\nFor strokes received, and many blows repaid,\nHave robb'd my strong-knit sinews of their strength,\nAnd spite of spite needs must I rest awhile.\n\nEDWARD:\nSmile, gentle heaven! or strike, ungentle death!\nFor this world frowns, and Edward's sun is clouded.\n\nWARWICK:\nHow now, my lord! what hap? what hope of good?\n\nGEORGE:\nOur hap is loss, our hope but sad despair;\nOur ranks are broke, and ruin follows us:\nWhat counsel give you? whither shall we fly?\n\nEDWARD:\nBootless is flight, they follow us with wings;\nAnd weak we are and cannot shun pursuit.\n\nRICHARD:\nAh, Warwick, why hast thou withdrawn thyself?\nThy brother's blood the thirsty earth hath drunk,\nBroach'd with the steely point of Clifford's lance;\nAnd in the very pangs of death he cried,\nLike to a dismal clangour heard from far,\n'Warwick, revenge! brother, revenge my death!'\nSo, underneath the belly of their steeds,\nThat stain'd their fetlocks in his smoking blood,\nThe noble gentleman gave up the ghost.\n\nWARWICK:\nThen let the earth be drunken with our blood:\nI'll kill my horse, because I will not fly.\nWhy stand we like soft-hearted women here,\nWailing our losses, whiles the foe doth rage;\nAnd look upon, as if the tragedy\nWere play'd in jest by counterfeiting actors?\nHere on my knee I vow to God above,\nI'll never pause again, never stand still,\nTill either death hath closed these eyes of mine\nOr fortune given me measure of revenge.\n\nEDWARD:\nO Warwick, I do bend my knee with thine;\nAnd in this vow do chain my soul to thine!\nAnd, ere my knee rise from the earth's cold face,\nI throw my hands, mine eyes, my heart to thee,\nThou setter up and plucker down of kings,\nBeseeching thee, if with they will it stands\nThat to my foes this body must be prey,\nYet that thy brazen gates of heaven may ope,\nAnd give sweet passage to my sinful soul!\nNow, lords, take leave until we meet again,\nWhere'er it be, in heaven or in earth.\n\nRICHARD:\nBrother, give me thy hand; and, gentle Warwick,\nLet me embrace thee in my weary arms:\nI, that did never weep, now melt with woe\nThat winter should cut off our spring-time so.\n\nWARWICK:\nAway, away! Once more, sweet lords farewell.\n\nGEORGE:\nYet let us all together to our troops,\nAnd give them leave to fly that will not stay;\nAnd call them pillars that will stand to us;\nAnd, if we thrive, promise them such rewards\nAs victors wear at the Olympian games:\nThis may plant courage in their quailing breasts;\nFor yet is hope of life and victory.\nForslow no longer, make we hence amain.\n3 KING HENRY VI\n\nRICHARD:\nNow, Clifford, I have singled thee alone:\nSuppose this arm is for the Duke of York,\nAnd this for Rutland; both bound to revenge,\nWert thou environ'd with a brazen wall.\n\nCLIFFORD:\nNow, Richard, I am with thee here alone:\nThis is the hand that stabb'd thy father York;\nAnd this the hand that slew thy brother Rutland;\nAnd here's the heart that triumphs in their death\nAnd cheers these hands that slew thy sire and brother\nTo execute the like upon thyself;\nAnd so, have at thee!\n\nRICHARD:\nNay Warwick, single out some other chase;\nFor I myself will hunt this wolf to death.\n3 KING HENRY VI\n\nKING HENRY VI:\nThis battle fares like to the morning's war,\nWhen dying clouds contend with growing light,\nWhat time the shepherd, blowing of his nails,\nCan neither call it perfect day nor night.\nNow sways it this way, like a mighty sea\nForced by the tide to combat with the wind;\nNow sways it that way, like the selfsame sea\nForced to retire by fury of the wind:\nSometime the flood prevails, and then the wind;\nNow one the better, then another best;\nBoth tugging to be victors, breast to breast,\nYet neither conqueror nor conquered:\nSo is the equal of this fell war.\nHere on this molehill will I sit me down.\nTo whom God will, there be the victory!\nFor Margaret my queen, and Clifford too,\nHave chid me from the battle; swearing both\nThey prosper best of all when I am thence.\nWould I were dead! if God's good will were so;\nFor what is in this world but grief and woe?\nO God! methinks it were a happy life,\nTo be no better than a homely swain;\nTo sit upon a hill, as I do now,\nTo carve out dials quaintly, point by point,\nThereby to see the minutes how they run,\nHow many make the hour full complete;\nHow many hours bring about the day;\nHow many days will finish up the year;\nHow many years a mortal man may live.\nWhen this is known, then to divide the times:\nSo many hours must I tend my flock;\nSo many hours must I take my rest;\nSo many hours must I contemplate;\nSo many hours must I sport myself;\nSo many days my ewes have been with young;\nSo many weeks ere the poor fools will ean:\nSo many years ere I shall shear the fleece:\nSo minutes, hours, days, months, and years,\nPass'd over to the end they were created,\nWould bring white hairs unto a quiet grave.\nAh, what a life were this! how sweet! how lovely!\nGives not the hawthorn-bush a sweeter shade\nTo shepherds looking on their silly sheep,\nThan doth a rich embroider'd canopy\nTo kings that fear their subjects' treachery?\nO, yes, it doth; a thousand-fold it doth.\nAnd to conclude, the shepherd's homely curds,\nHis cold thin drink out of his leather bottle.\nHis wonted sleep under a fresh tree's shade,\nAll which secure and sweetly he enjoys,\nIs far beyond a prince's delicates,\nHis viands sparkling in a golden cup,\nHis body couched in a curious bed,\nWhen care, mistrust, and treason waits on him.\n\nSon:\nIll blows the wind that profits nobody.\nThis man, whom hand to hand I slew in fight,\nMay be possessed with some store of crowns;\nAnd I, that haply take them from him now,\nMay yet ere night yield both my life and them\nTo some man else, as this dead man doth me.\nWho's this? O God! it is my father's face,\nWhom in this conflict I unwares have kill'd.\nO heavy times, begetting such events!\nFrom London by the king was I press'd forth;\nMy father, being the Earl of Warwick's man,\nCame on the part of York, press'd by his master;\nAnd I, who at his hands received my life, him\nHave by my hands of life bereaved him.\nPardon me, God, I knew not what I did!\nAnd pardon, father, for I knew not thee!\nMy tears shall wipe away these bloody marks;\nAnd no more words till they have flow'd their fill.\n\nKING HENRY VI:\nO piteous spectacle! O bloody times!\nWhiles lions war and battle for their dens,\nPoor harmless lambs abide their enmity.\nWeep, wretched man, I'll aid thee tear for tear;\nAnd let our hearts and eyes, like civil war,\nBe blind with tears, and break o'ercharged with grief.\n\nFather:\nThou that so stoutly hast resisted me,\nGive me thy gold, if thou hast any gold:\nFor I have bought it with an hundred blows.\nBut let me see: is this our foeman's face?\nAh, no, no, no, it is mine only son!\nAh, boy, if any life be left in thee,\nThrow up thine eye! see, see what showers arise,\nBlown with the windy tempest of my heart,\nUpon thy words, that kill mine eye and heart!\nO, pity, God, this miserable age!\nWhat stratagems, how fell, how butcherly,\nErroneous, mutinous and unnatural,\nThis deadly quarrel daily doth beget!\nO boy, thy father gave thee life too soon,\nAnd hath bereft thee of thy life too late!\n\nKING HENRY VI:\nWoe above woe! grief more than common grief!\nO that my death would stay these ruthful deeds!\nO pity, pity, gentle heaven, pity!\nThe red rose and the white are on his face,\nThe fatal colours of our striving houses:\nThe one his purple blood right well resembles;\nThe other his pale cheeks, methinks, presenteth:\nWither one rose, and let the other flourish;\nIf you contend, a thousand lives must wither.\n\nSon:\nHow will my mother for a father's death\nTake on with me and ne'er be satisfied!\n\nFather:\nHow will my wife for slaughter of my son\nShed seas of tears and ne'er be satisfied!\n\nKING HENRY VI:\nHow will the country for these woful chances\nMisthink the king and not be satisfied!\n\nSon:\nWas ever son so rued a father's death?\n\nFather:\nWas ever father so bemoan'd his son?\n\nKING HENRY VI:\nWas ever king so grieved for subjects' woe?\nMuch is your sorrow; mine ten times so much.\n\nSon:\nI'll bear thee hence, where I may weep my fill.\n\nFather:\nThese arms of mine shall be thy winding-sheet;\nMy heart, sweet boy, shall be thy sepulchre,\nFor from my heart thine image ne'er shall go;\nMy sighing breast shall be thy funeral bell;\nAnd so obsequious will thy father be,\nEven for the loss of thee, having no more,\nAs Priam was for all his valiant sons.\nI'll bear thee hence; and let them fight that will,\nFor I have murdered where I should not kill.\n\nKING HENRY VI:\nSad-hearted men, much overgone with care,\nHere sits a king more woful than you are.\n\nPRINCE EDWARD:\nFly, father, fly! for all your friends are fled,\nAnd Warwick rages like a chafed bull:\nAway! for death doth hold us in pursuit.\n\nQUEEN MARGARET:\nMount you, my lord; towards Berwick post amain:\nEdward and Richard, like a brace of greyhounds\nHaving the fearful flying hare in sight,\nWith fiery eyes sparkling for very wrath,\nAnd bloody steel grasp'd in their ireful hands,\nAre at our backs; and therefore hence amain.\n\nEXETER:\nAway! for vengeance comes along with them:\nNay, stay not to expostulate, make speed;\nOr else come after: I'll away before.\n\nKING HENRY VI:\nNay, take me with thee, good sweet Exeter:\nNot that I fear to stay, but love to go\nWhither the queen intends. Forward; away!\n3 KING HENRY VI\n\nCLIFFORD:\nHere burns my candle out; ay, here it dies,\nWhich, whiles it lasted, gave King Henry light.\nO Lancaster, I fear thy overthrow\nMore than my body's parting with my soul!\nMy love and fear glued many friends to thee;\nAnd, now I fall, thy tough commixture melts.\nImpairing Henry, strengthening misproud York,\nThe common people swarm like summer flies;\nAnd whither fly the gnats but to the sun?\nAnd who shines now but Henry's enemies?\nO Phoebus, hadst thou never given consent\nThat Phaethon should cheque thy fiery steeds,\nThy burning car never had scorch'd the earth!\nAnd, Henry, hadst thou sway'd as kings should do,\nOr as thy father and his father did,\nGiving no ground unto the house of York,\nThey never then had sprung like summer flies;\nI and ten thousand in this luckless realm\nHad left no mourning widows for our death;\nAnd thou this day hadst kept thy chair in peace.\nFor what doth cherish weeds but gentle air?\nAnd what makes robbers bold but too much lenity?\nBootless are plaints, and cureless are my wounds;\nNo way to fly, nor strength to hold out flight:\nThe foe is merciless, and will not pity;\nFor at their hands I have deserved no pity.\nThe air hath got into my deadly wounds,\nAnd much effuse of blood doth make me faint.\nCome, York and Richard, Warwick and the rest;\nI stabb'd your fathers' bosoms, split my breast.\n\nEDWARD:\nNow breathe we, lords: good fortune bids us pause,\nAnd smooth the frowns of war with peaceful looks.\nSome troops pursue the bloody-minded queen,\nThat led calm Henry, though he were a king,\nAs doth a sail, fill'd with a fretting gust,\nCommand an argosy to stem the waves.\nBut think you, lords, that Clifford fled with them?\n\nWARWICK:\nNo, 'tis impossible he should escape,\nFor, though before his face I speak the words\nYour brother Richard mark'd him for the grave:\nAnd wheresoe'er he is, he's surely dead.\n\nEDWARD:\nWhose soul is that which takes her heavy leave?\n\nRICHARD:\nA deadly groan, like life and death's departing.\n\nEDWARD:\nSee who it is: and, now the battle's ended,\nIf friend or foe, let him be gently used.\n\nRICHARD:\nRevoke that doom of mercy, for 'tis Clifford;\nWho not contented that he lopp'd the branch\nIn hewing Rutland when his leaves put forth,\nBut set his murdering knife unto the root\nFrom whence that tender spray did sweetly spring,\nI mean our princely father, Duke of York.\n\nWARWICK:\nFrom off the gates of York fetch down the head,\nYour father's head, which Clifford placed there;\nInstead whereof let this supply the room:\nMeasure for measure must be answered.\n\nEDWARD:\nBring forth that fatal screech-owl to our house,\nThat nothing sung but death to us and ours:\nNow death shall stop his dismal threatening sound,\nAnd his ill-boding tongue no more shall speak.\n\nWARWICK:\nI think his understanding is bereft.\nSpeak, Clifford, dost thou know who speaks to thee?\nDark cloudy death o'ershades his beams of life,\nAnd he nor sees nor hears us what we say.\n\nRICHARD:\nO, would he did! and so perhaps he doth:\n'Tis but his policy to counterfeit,\nBecause he would avoid such bitter taunts\nWhich in the time of death he gave our father.\n\nGEORGE:\nIf so thou think'st, vex him with eager words.\n\nRICHARD:\nClifford, ask mercy and obtain no grace.\n\nEDWARD:\nClifford, repent in bootless penitence.\n\nWARWICK:\nClifford, devise excuses for thy faults.\n\nGEORGE:\nWhile we devise fell tortures for thy faults.\n\nRICHARD:\nThou didst love York, and I am son to York.\n\nEDWARD:\nThou pitied'st Rutland; I will pity thee.\n\nGEORGE:\nWhere's Captain Margaret, to fence you now?\n\nWARWICK:\nThey mock thee, Clifford: swear as thou wast wont.\n\nRICHARD:\nWhat, not an oath? nay, then the world goes hard\nWhen Clifford cannot spare his friends an oath.\nI know by that he's dead; and, by my soul,\nIf this right hand would buy two hour's life,\nThat I in all despite might rail at him,\nThis hand should chop it off, and with the\nissuing blood\nStifle the villain whose unstanched thirst\nYork and young Rutland could not satisfy.\n\nWARWICK:\nAy, but he's dead: off with the traitor's head,\nAnd rear it in the place your father's stands.\nAnd now to London with triumphant march,\nThere to be crowned England's royal king:\nFrom whence shall Warwick cut the sea to France,\nAnd ask the Lady Bona for thy queen:\nSo shalt thou sinew both these lands together;\nAnd, having France thy friend, thou shalt not dread\nThe scatter'd foe that hopes to rise again;\nFor though they cannot greatly sting to hurt,\nYet look to have them buzz to offend thine ears.\nFirst will I see the coronation;\nAnd then to Brittany I'll cross the sea,\nTo effect this marriage, so it please my lord.\n\nEDWARD:\nEven as thou wilt, sweet Warwick, let it be;\nFor in thy shoulder do I build my seat,\nAnd never will I undertake the thing\nWherein thy counsel and consent is wanting.\nRichard, I will create thee Duke of Gloucester,\nAnd George, of Clarence: Warwick, as ourself,\nShall do and undo as him pleaseth best.\n\nRICHARD:\nLet me be Duke of Clarence, George of Gloucester;\nFor Gloucester's dukedom is too ominous.\n\nWARWICK:\nTut, that's a foolish observation:\nRichard, be Duke of Gloucester. Now to London,\nTo see these honours in possession.\n3 KING HENRY VI\n\nFirst Keeper:\nUnder this thick-grown brake we'll shroud ourselves;\nFor through this laund anon the deer will come;\nAnd in this covert will we make our stand,\nCulling the principal of all the deer.\n\nSecond Keeper:\nI'll stay above the hill, so both may shoot.\n\nFirst Keeper:\nThat cannot be; the noise of thy cross-bow\nWill scare the herd, and so my shoot is lost.\nHere stand we both, and aim we at the best:\nAnd, for the time shall not seem tedious,\nI'll tell thee what befell me on a day\nIn this self-place where now we mean to stand.\n\nSecond Keeper:\nHere comes a man; let's stay till he be past.\n\nKING HENRY VI:\nFrom Scotland am I stol'n, even of pure love,\nTo greet mine own land with my wishful sight.\nNo, Harry, Harry, 'tis no land of thine;\nThy place is fill'd, thy sceptre wrung from thee,\nThy balm wash'd off wherewith thou wast anointed:\nNo bending knee will call thee Caesar now,\nNo humble suitors press to speak for right,\nNo, not a man comes for redress of thee;\nFor how can I help them, and not myself?\n\nFirst Keeper:\nAy, here's a deer whose skin's a keeper's fee:\nThis is the quondam king; let's seize upon him.\n\nKING HENRY VI:\nLet me embrace thee, sour adversity,\nFor wise men say it is the wisest course.\n\nSecond Keeper:\nWhy linger we? let us lay hands upon him.\n\nFirst Keeper:\nForbear awhile; we'll hear a little more.\n\nKING HENRY VI:\nMy queen and son are gone to France for aid;\nAnd, as I hear, the great commanding Warwick\nIs thither gone, to crave the French king's sister\nTo wife for Edward: if this news be true,\nPoor queen and son, your labour is but lost;\nFor Warwick is a subtle orator,\nAnd Lewis a prince soon won with moving words.\nBy this account then Margaret may win him;\nFor she's a woman to be pitied much:\nHer sighs will make a battery in his breast;\nHer tears will pierce into a marble heart;\nThe tiger will be mild whiles she doth mourn;\nAnd Nero will be tainted with remorse,\nTo hear and see her plaints, her brinish tears.\nAy, but she's come to beg, Warwick to give;\nShe, on his left side, craving aid for Henry,\nHe, on his right, asking a wife for Edward.\nShe weeps, and says her Henry is deposed;\nHe smiles, and says his Edward is install'd;\nThat she, poor wretch, for grief can speak no more;\nWhiles Warwick tells his title, smooths the wrong,\nInferreth arguments of mighty strength,\nAnd in conclusion wins the king from her,\nWith promise of his sister, and what else,\nTo strengthen and support King Edward's place.\nO Margaret, thus 'twill be; and thou, poor soul,\nArt then forsaken, as thou went'st forlorn!\n\nSecond Keeper:\nSay, what art thou that talk'st of kings and queens?\n\nKING HENRY VI:\nMore than I seem, and less than I was born to:\nA man at least, for less I should not be;\nAnd men may talk of kings, and why not I?\n\nSecond Keeper:\nAy, but thou talk'st as if thou wert a king.\n\nKING HENRY VI:\nWhy, so I am, in mind; and that's enough.\n\nSecond Keeper:\nBut, if thou be a king, where is thy crown?\n\nKING HENRY VI:\nMy crown is in my heart, not on my head;\nNot decked with diamonds and Indian stones,\nNor to be seen: my crown is called content:\nA crown it is that seldom kings enjoy.\n\nSecond Keeper:\nWell, if you be a king crown'd with content,\nYour crown content and you must be contented\nTo go along with us; for as we think,\nYou are the king King Edward hath deposed;\nAnd we his subjects sworn in all allegiance\nWill apprehend you as his enemy.\n\nKING HENRY VI:\nBut did you never swear, and break an oath?\n\nSecond Keeper:\nNo, never such an oath; nor will not now.\n\nKING HENRY VI:\nWhere did you dwell when I was King of England?\n\nSecond Keeper:\nHere in this country, where we now remain.\n\nKING HENRY VI:\nI was anointed king at nine months old;\nMy father and my grandfather were kings,\nAnd you were sworn true subjects unto me:\nAnd tell me, then, have you not broke your oaths?\n\nFirst Keeper:\nNo;\nFor we were subjects but while you were king.\n\nKING HENRY VI:\nWhy, am I dead? do I not breathe a man?\nAh, simple men, you know not what you swear!\nLook, as I blow this feather from my face,\nAnd as the air blows it to me again,\nObeying with my wind when I do blow,\nAnd yielding to another when it blows,\nCommanded always by the greater gust;\nSuch is the lightness of you common men.\nBut do not break your oaths; for of that sin\nMy mild entreaty shall not make you guilty.\nGo where you will, the king shall be commanded;\nAnd be you kings, command, and I'll obey.\n\nFirst Keeper:\nWe are true subjects to the king, King Edward.\n\nKING HENRY VI:\nSo would you be again to Henry,\nIf he were seated as King Edward is.\n\nFirst Keeper:\nWe charge you, in God's name, and the king's,\nTo go with us unto the officers.\n\nKING HENRY VI:\nIn God's name, lead; your king's name be obey'd:\nAnd what God will, that let your king perform;\nAnd what he will, I humbly yield unto.\n3 KING HENRY VI\n\nKING EDWARD IV:\nBrother of Gloucester, at Saint Alban's field\nThis lady's husband, Sir Richard Grey, was slain,\nHis lands then seized on by the conqueror:\nHer suit is now to repossess those lands;\nWhich we in justice cannot well deny,\nBecause in quarrel of the house of York\nThe worthy gentleman did lose his life.\n\nGLOUCESTER:\nYour highness shall do well to grant her suit;\nIt were dishonour to deny it her.\n\nKING EDWARD IV:\nIt were no less; but yet I'll make a pause.\n\nGLOUCESTER:\n\nCLARENCE:\n\nGLOUCESTER:\n\nKING EDWARD IV:\nWidow, we will consider of your suit;\nAnd come some other time to know our mind.\n\nLADY GREY:\nRight gracious lord, I cannot brook delay:\nMay it please your highness to resolve me now;\nAnd what your pleasure is, shall satisfy me.\n\nGLOUCESTER:\n\nCLARENCE:\n\nGLOUCESTER:\n\nKING EDWARD IV:\nHow many children hast thou, widow? tell me.\n\nCLARENCE:\n\nGLOUCESTER:\n\nLADY GREY:\nThree, my most gracious lord.\n\nGLOUCESTER:\n\nKING EDWARD IV:\n'Twere pity they should lose their father's lands.\n\nLADY GREY:\nBe pitiful, dread lord, and grant it then.\n\nKING EDWARD IV:\nLords, give us leave: I'll try this widow's wit.\n\nGLOUCESTER:\n\nKING EDWARD IV:\nNow tell me, madam, do you love your children?\n\nLADY GREY:\nAy, full as dearly as I love myself.\n\nKING EDWARD IV:\nAnd would you not do much to do them good?\n\nLADY GREY:\nTo do them good, I would sustain some harm.\n\nKING EDWARD IV:\nThen get your husband's lands, to do them good.\n\nLADY GREY:\nTherefore I came unto your majesty.\n\nKING EDWARD IV:\nI'll tell you how these lands are to be got.\n\nLADY GREY:\nSo shall you bind me to your highness' service.\n\nKING EDWARD IV:\nWhat service wilt thou do me, if I give them?\n\nLADY GREY:\nWhat you command, that rests in me to do.\n\nKING EDWARD IV:\nBut you will take exceptions to my boon.\n\nLADY GREY:\nNo, gracious lord, except I cannot do it.\n\nKING EDWARD IV:\nAy, but thou canst do what I mean to ask.\n\nLADY GREY:\nWhy, then I will do what your grace commands.\n\nGLOUCESTER:\n\nCLARENCE:\n\nLADY GREY:\nWhy stops my lord, shall I not hear my task?\n\nKING EDWARD IV:\nAn easy task; 'tis but to love a king.\n\nLADY GREY:\nThat's soon perform'd, because I am a subject.\n\nKING EDWARD IV:\nWhy, then, thy husband's lands I freely give thee.\n\nLADY GREY:\nI take my leave with many thousand thanks.\n\nGLOUCESTER:\n\nKING EDWARD IV:\nBut stay thee, 'tis the fruits of love I mean.\n\nLADY GREY:\nThe fruits of love I mean, my loving liege.\n\nKING EDWARD IV:\nAy, but, I fear me, in another sense.\nWhat love, think'st thou, I sue so much to get?\n\nLADY GREY:\nMy love till death, my humble thanks, my prayers;\nThat love which virtue begs and virtue grants.\n\nKING EDWARD IV:\nNo, by my troth, I did not mean such love.\n\nLADY GREY:\nWhy, then you mean not as I thought you did.\n\nKING EDWARD IV:\nBut now you partly may perceive my mind.\n\nLADY GREY:\nMy mind will never grant what I perceive\nYour highness aims at, if I aim aright.\n\nKING EDWARD IV:\nTo tell thee plain, I aim to lie with thee.\n\nLADY GREY:\nTo tell you plain, I had rather lie in prison.\n\nKING EDWARD IV:\nWhy, then thou shalt not have thy husband's lands.\n\nLADY GREY:\nWhy, then mine honesty shall be my dower;\nFor by that loss I will not purchase them.\n\nKING EDWARD IV:\nTherein thou wrong'st thy children mightily.\n\nLADY GREY:\nHerein your highness wrongs both them and me.\nBut, mighty lord, this merry inclination\nAccords not with the sadness of my suit:\nPlease you dismiss me either with 'ay' or 'no.'\n\nKING EDWARD IV:\nAy, if thou wilt say 'ay' to my request;\nNo if thou dost say 'no' to my demand.\n\nLADY GREY:\nThen, no, my lord. My suit is at an end.\n\nGLOUCESTER:\n\nCLARENCE:\n\nKING EDWARD IV:\n\nLADY GREY:\n'Tis better said than done, my gracious lord:\nI am a subject fit to jest withal,\nBut far unfit to be a sovereign.\n\nKING EDWARD IV:\nSweet widow, by my state I swear to thee\nI speak no more than what my soul intends;\nAnd that is, to enjoy thee for my love.\n\nLADY GREY:\nAnd that is more than I will yield unto:\nI know I am too mean to be your queen,\nAnd yet too good to be your concubine.\n\nKING EDWARD IV:\nYou cavil, widow: I did mean, my queen.\n\nLADY GREY:\n'Twill grieve your grace my sons should call you father.\n\nKING EDWARD IV:\nNo more than when my daughters call thee mother.\nThou art a widow, and thou hast some children;\nAnd, by God's mother, I, being but a bachelor,\nHave other some: why, 'tis a happy thing\nTo be the father unto many sons.\nAnswer no more, for thou shalt be my queen.\n\nGLOUCESTER:\n\nCLARENCE:\n\nKING EDWARD IV:\nBrothers, you muse what chat we two have had.\n\nGLOUCESTER:\nThe widow likes it not, for she looks very sad.\n\nKING EDWARD IV:\nYou'll think it strange if I should marry her.\n\nCLARENCE:\nTo whom, my lord?\n\nKING EDWARD IV:\nWhy, Clarence, to myself.\n\nGLOUCESTER:\nThat would be ten days' wonder at the least.\n\nCLARENCE:\nThat's a day longer than a wonder lasts.\n\nGLOUCESTER:\nBy so much is the wonder in extremes.\n\nKING EDWARD IV:\nWell, jest on, brothers: I can tell you both\nHer suit is granted for her husband's lands.\n\nNobleman:\nMy gracious lord, Henry your foe is taken,\nAnd brought your prisoner to your palace gate.\n\nKING EDWARD IV:\nSee that he be convey'd unto the Tower:\nAnd go we, brothers, to the man that took him,\nTo question of his apprehension.\nWidow, go you along. Lords, use her honourably.\n\nGLOUCESTER:\nAy, Edward will use women honourably.\nWould he were wasted, marrow, bones and all,\nThat from his loins no hopeful branch may spring,\nTo cross me from the golden time I look for!\nAnd yet, between my soul's desire and me--\nThe lustful Edward's title buried--\nIs Clarence, Henry, and his son young Edward,\nAnd all the unlook'd for issue of their bodies,\nTo take their rooms, ere I can place myself:\nA cold premeditation for my purpose!\nWhy, then, I do but dream on sovereignty;\nLike one that stands upon a promontory,\nAnd spies a far-off shore where he would tread,\nWishing his foot were equal with his eye,\nAnd chides the sea that sunders him from thence,\nSaying, he'll lade it dry to have his way:\nSo do I wish the crown, being so far off;\nAnd so I chide the means that keeps me from it;\nAnd so I say, I'll cut the causes off,\nFlattering me with impossibilities.\nMy eye's too quick, my heart o'erweens too much,\nUnless my hand and strength could equal them.\nWell, say there is no kingdom then for Richard;\nWhat other pleasure can the world afford?\nI'll make my heaven in a lady's lap,\nAnd deck my body in gay ornaments,\nAnd witch sweet ladies with my words and looks.\nO miserable thought! and more unlikely\nThan to accomplish twenty golden crowns!\nWhy, love forswore me in my mother's womb:\nAnd, for I should not deal in her soft laws,\nShe did corrupt frail nature with some bribe,\nTo shrink mine arm up like a wither'd shrub;\nTo make an envious mountain on my back,\nWhere sits deformity to mock my body;\nTo shape my legs of an unequal size;\nTo disproportion me in every part,\nLike to a chaos, or an unlick'd bear-whelp\nThat carries no impression like the dam.\nAnd am I then a man to be beloved?\nO monstrous fault, to harbour such a thought!\nThen, since this earth affords no joy to me,\nBut to command, to cheque, to o'erbear such\nAs are of better person than myself,\nI'll make my heaven to dream upon the crown,\nAnd, whiles I live, to account this world but hell,\nUntil my mis-shaped trunk that bears this head\nBe round impaled with a glorious crown.\nAnd yet I know not how to get the crown,\nFor many lives stand between me and home:\nAnd I,--like one lost in a thorny wood,\nThat rends the thorns and is rent with the thorns,\nSeeking a way and straying from the way;\nNot knowing how to find the open air,\nBut toiling desperately to find it out,--\nTorment myself to catch the English crown:\nAnd from that torment I will free myself,\nOr hew my way out with a bloody axe.\nWhy, I can smile, and murder whiles I smile,\nAnd cry 'Content' to that which grieves my heart,\nAnd wet my cheeks with artificial tears,\nAnd frame my face to all occasions.\nI'll drown more sailors than the mermaid shall;\nI'll slay more gazers than the basilisk;\nI'll play the orator as well as Nestor,\nDeceive more slily than Ulysses could,\nAnd, like a Sinon, take another Troy.\nI can add colours to the chameleon,\nChange shapes with Proteus for advantages,\nAnd set the murderous Machiavel to school.\nCan I do this, and cannot get a crown?\nTut, were it farther off, I'll pluck it down.\n3 KING HENRY VI\n\nKING LEWIS XI:\nFair Queen of England, worthy Margaret,\nSit down with us: it ill befits thy state\nAnd birth, that thou shouldst stand while Lewis doth sit.\n\nQUEEN MARGARET:\nNo, mighty King of France: now Margaret\nMust strike her sail and learn awhile to serve\nWhere kings command. I was, I must confess,\nGreat Albion's queen in former golden days:\nBut now mischance hath trod my title down,\nAnd with dishonour laid me on the ground;\nWhere I must take like seat unto my fortune,\nAnd to my humble seat conform myself.\n\nKING LEWIS XI:\nWhy, say, fair queen, whence springs this deep despair?\n\nQUEEN MARGARET:\nFrom such a cause as fills mine eyes with tears\nAnd stops my tongue, while heart is drown'd in cares.\n\nKING LEWIS XI:\nWhate'er it be, be thou still like thyself,\nAnd sit thee by our side:\nYield not thy neck\nTo fortune's yoke, but let thy dauntless mind\nStill ride in triumph over all mischance.\nBe plain, Queen Margaret, and tell thy grief;\nIt shall be eased, if France can yield relief.\n\nQUEEN MARGARET:\nThose gracious words revive my drooping thoughts\nAnd give my tongue-tied sorrows leave to speak.\nNow, therefore, be it known to noble Lewis,\nThat Henry, sole possessor of my love,\nIs of a king become a banish'd man,\nAnd forced to live in Scotland a forlorn;\nWhile proud ambitious Edward Duke of York\nUsurps the regal title and the seat\nOf England's true-anointed lawful king.\nThis is the cause that I, poor Margaret,\nWith this my son, Prince Edward, Henry's heir,\nAm come to crave thy just and lawful aid;\nAnd if thou fail us, all our hope is done:\nScotland hath will to help, but cannot help;\nOur people and our peers are both misled,\nOur treasures seized, our soldiers put to flight,\nAnd, as thou seest, ourselves in heavy plight.\n\nKING LEWIS XI:\nRenowned queen, with patience calm the storm,\nWhile we bethink a means to break it off.\n\nQUEEN MARGARET:\nThe more we stay, the stronger grows our foe.\n\nKING LEWIS XI:\nThe more I stay, the more I'll succor thee.\n\nQUEEN MARGARET:\nO, but impatience waiteth on true sorrow.\nAnd see where comes the breeder of my sorrow!\n\nKING LEWIS XI:\nWhat's he approacheth boldly to our presence?\n\nQUEEN MARGARET:\nOur Earl of Warwick, Edward's greatest friend.\n\nKING LEWIS XI:\nWelcome, brave Warwick! What brings thee to France?\n\nQUEEN MARGARET:\nAy, now begins a second storm to rise;\nFor this is he that moves both wind and tide.\n\nWARWICK:\nFrom worthy Edward, King of Albion,\nMy lord and sovereign, and thy vowed friend,\nI come, in kindness and unfeigned love,\nFirst, to do greetings to thy royal person;\nAnd then to crave a league of amity;\nAnd lastly, to confirm that amity\nWith a nuptial knot, if thou vouchsafe to grant\nThat virtuous Lady Bona, thy fair sister,\nTo England's king in lawful marriage.\n\nQUEEN MARGARET:\n\nWARWICK:\n\nQUEEN MARGARET:\nKing Lewis and Lady Bona, hear me speak,\nBefore you answer Warwick. His demand\nSprings not from Edward's well-meant honest love,\nBut from deceit bred by necessity;\nFor how can tyrants safely govern home,\nUnless abroad they purchase great alliance?\nTo prove him tyrant this reason may suffice,\nThat Henry liveth still: but were he dead,\nYet here Prince Edward stands, King Henry's son.\nLook, therefore, Lewis, that by this league and marriage\nThou draw not on thy danger and dishonour;\nFor though usurpers sway the rule awhile,\nYet heavens are just, and time suppresseth wrongs.\n\nWARWICK:\nInjurious Margaret!\n\nPRINCE EDWARD:\nAnd why not queen?\n\nWARWICK:\nBecause thy father Henry did usurp;\nAnd thou no more are prince than she is queen.\n\nOXFORD:\nThen Warwick disannuls great John of Gaunt,\nWhich did subdue the greatest part of Spain;\nAnd, after John of Gaunt, Henry the Fourth,\nWhose wisdom was a mirror to the wisest;\nAnd, after that wise prince, Henry the Fifth,\nWho by his prowess conquered all France:\nFrom these our Henry lineally descends.\n\nWARWICK:\nOxford, how haps it, in this smooth discourse,\nYou told not how Henry the Sixth hath lost\nAll that which Henry Fifth had gotten?\nMethinks these peers of France should smile at that.\nBut for the rest, you tell a pedigree\nOf threescore and two years; a silly time\nTo make prescription for a kingdom's worth.\n\nOXFORD:\nWhy, Warwick, canst thou speak against thy liege,\nWhom thou obeyed'st thirty and six years,\nAnd not bewray thy treason with a blush?\n\nWARWICK:\nCan Oxford, that did ever fence the right,\nNow buckler falsehood with a pedigree?\nFor shame! leave Henry, and call Edward king.\n\nOXFORD:\nCall him my king by whose injurious doom\nMy elder brother, the Lord Aubrey Vere,\nWas done to death? and more than so, my father,\nEven in the downfall of his mellow'd years,\nWhen nature brought him to the door of death?\nNo, Warwick, no; while life upholds this arm,\nThis arm upholds the house of Lancaster.\n\nWARWICK:\nAnd I the house of York.\n\nKING LEWIS XI:\nQueen Margaret, Prince Edward, and Oxford,\nVouchsafe, at our request, to stand aside,\nWhile I use further conference with Warwick.\n\nQUEEN MARGARET:\nHeavens grant that Warwick's words bewitch him not!\n\nKING LEWIS XI:\nNow Warwick, tell me, even upon thy conscience,\nIs Edward your true king? for I were loath\nTo link with him that were not lawful chosen.\n\nWARWICK:\nThereon I pawn my credit and mine honour.\n\nKING LEWIS XI:\nBut is he gracious in the people's eye?\n\nWARWICK:\nThe more that Henry was unfortunate.\n\nKING LEWIS XI:\nThen further, all dissembling set aside,\nTell me for truth the measure of his love\nUnto our sister Bona.\n\nWARWICK:\nSuch it seems\nAs may beseem a monarch like himself.\nMyself have often heard him say and swear\nThat this his love was an eternal plant,\nWhereof the root was fix'd in virtue's ground,\nThe leaves and fruit maintain'd with beauty's sun,\nExempt from envy, but not from disdain,\nUnless the Lady Bona quit his pain.\n\nKING LEWIS XI:\nNow, sister, let us hear your firm resolve.\n\nBONA:\nYour grant, or your denial, shall be mine:\nYet I confess that often ere this day,\nWhen I have heard your king's desert recounted,\nMine ear hath tempted judgment to desire.\n\nKING LEWIS XI:\nThen, Warwick, thus: our sister shall be Edward's;\nAnd now forthwith shall articles be drawn\nTouching the jointure that your king must make,\nWhich with her dowry shall be counterpoised.\nDraw near, Queen Margaret, and be a witness\nThat Bona shall be wife to the English king.\n\nPRINCE EDWARD:\nTo Edward, but not to the English king.\n\nQUEEN MARGARET:\nDeceitful Warwick! it was thy device\nBy this alliance to make void my suit:\nBefore thy coming Lewis was Henry's friend.\n\nKING LEWIS XI:\nAnd still is friend to him and Margaret:\nBut if your title to the crown be weak,\nAs may appear by Edward's good success,\nThen 'tis but reason that I be released\nFrom giving aid which late I promised.\nYet shall you have all kindness at my hand\nThat your estate requires and mine can yield.\n\nWARWICK:\nHenry now lives in Scotland at his ease,\nWhere having nothing, nothing can he lose.\nAnd as for you yourself, our quondam queen,\nYou have a father able to maintain you;\nAnd better 'twere you troubled him than France.\n\nQUEEN MARGARET:\nPeace, impudent and shameless Warwick, peace,\nProud setter up and puller down of kings!\nI will not hence, till, with my talk and tears,\nBoth full of truth, I make King Lewis behold\nThy sly conveyance and thy lord's false love;\nFor both of you are birds of selfsame feather.\n\nKING LEWIS XI:\nWarwick, this is some post to us or thee.\n\nPost:\n\nOXFORD:\nI like it well that our fair queen and mistress\nSmiles at her news, while Warwick frowns at his.\n\nPRINCE EDWARD:\nNay, mark how Lewis stamps, as he were nettled:\nI hope all's for the best.\n\nKING LEWIS XI:\nWarwick, what are thy news? and yours, fair queen?\n\nQUEEN MARGARET:\nMine, such as fill my heart with unhoped joys.\n\nWARWICK:\nMine, full of sorrow and heart's discontent.\n\nKING LEWIS XI:\nWhat! has your king married the Lady Grey!\nAnd now, to soothe your forgery and his,\nSends me a paper to persuade me patience?\nIs this the alliance that he seeks with France?\nDare he presume to scorn us in this manner?\n\nQUEEN MARGARET:\nI told your majesty as much before:\nThis proveth Edward's love and Warwick's honesty.\n\nWARWICK:\nKing Lewis, I here protest, in sight of heaven,\nAnd by the hope I have of heavenly bliss,\nThat I am clear from this misdeed of Edward's,\nNo more my king, for he dishonours me,\nBut most himself, if he could see his shame.\nDid I forget that by the house of York\nMy father came untimely to his death?\nDid I let pass the abuse done to my niece?\nDid I impale him with the regal crown?\nDid I put Henry from his native right?\nAnd am I guerdon'd at the last with shame?\nShame on himself! for my desert is honour:\nAnd to repair my honour lost for him,\nI here renounce him and return to Henry.\nMy noble queen, let former grudges pass,\nAnd henceforth I am thy true servitor:\nI will revenge his wrong to Lady Bona,\nAnd replant Henry in his former state.\n\nQUEEN MARGARET:\nWarwick, these words have turn'd my hate to love;\nAnd I forgive and quite forget old faults,\nAnd joy that thou becomest King Henry's friend.\n\nWARWICK:\nSo much his friend, ay, his unfeigned friend,\nThat, if King Lewis vouchsafe to furnish us\nWith some few bands of chosen soldiers,\nI'll undertake to land them on our coast\nAnd force the tyrant from his seat by war.\n'Tis not his new-made bride shall succor him:\nAnd as for Clarence, as my letters tell me,\nHe's very likely now to fall from him,\nFor matching more for wanton lust than honour,\nOr than for strength and safety of our country.\n\nBONA:\nDear brother, how shall Bona be revenged\nBut by thy help to this distressed queen?\n\nQUEEN MARGARET:\nRenowned prince, how shall poor Henry live,\nUnless thou rescue him from foul despair?\n\nBONA:\nMy quarrel and this English queen's are one.\n\nWARWICK:\nAnd mine, fair lady Bona, joins with yours.\n\nKING LEWIS XI:\nAnd mine with hers, and thine, and Margaret's.\nTherefore at last I firmly am resolved\nYou shall have aid.\n\nQUEEN MARGARET:\nLet me give humble thanks for all at once.\n\nKING LEWIS XI:\nThen, England's messenger, return in post,\nAnd tell false Edward, thy supposed king,\nThat Lewis of France is sending over masquers\nTo revel it with him and his new bride:\nThou seest what's past, go fear thy king withal.\n\nBONA:\nTell him, in hope he'll prove a widower shortly,\nI'll wear the willow garland for his sake.\n\nQUEEN MARGARET:\nTell him, my mourning weeds are laid aside,\nAnd I am ready to put armour on.\n\nWARWICK:\nTell him from me that he hath done me wrong,\nAnd therefore I'll uncrown him ere't be long.\nThere's thy reward: be gone.\n\nKING LEWIS XI:\nBut, Warwick,\nThou and Oxford, with five thousand men,\nShall cross the seas, and bid false Edward battle;\nAnd, as occasion serves, this noble queen\nAnd prince shall follow with a fresh supply.\nYet, ere thou go, but answer me one doubt,\nWhat pledge have we of thy firm loyalty?\n\nWARWICK:\nThis shall assure my constant loyalty,\nThat if our queen and this young prince agree,\nI'll join mine eldest daughter and my joy\nTo him forthwith in holy wedlock bands.\n\nQUEEN MARGARET:\nYes, I agree, and thank you for your motion.\nSon Edward, she is fair and virtuous,\nTherefore delay not, give thy hand to Warwick;\nAnd, with thy hand, thy faith irrevocable,\nThat only Warwick's daughter shall be thine.\n\nPRINCE EDWARD:\nYes, I accept her, for she well deserves it;\nAnd here, to pledge my vow, I give my hand.\n\nKING LEWIS XI:\nWhy stay we now? These soldiers shall be levied,\nAnd thou, Lord Bourbon, our high admiral,\nShalt waft them over with our royal fleet.\nI long till Edward fall by war's mischance,\nFor mocking marriage with a dame of France.\n\nWARWICK:\nI came from Edward as ambassador,\nBut I return his sworn and mortal foe:\nMatter of marriage was the charge he gave me,\nBut dreadful war shall answer his demand.\nHad he none else to make a stale but me?\nThen none but I shall turn his jest to sorrow.\nI was the chief that raised him to the crown,\nAnd I'll be chief to bring him down again:\nNot that I pity Henry's misery,\nBut seek revenge on Edward's mockery.\n3 KING HENRY VI\n\nGLOUCESTER:\nNow tell me, brother Clarence, what think you\nOf this new marriage with the Lady Grey?\nHath not our brother made a worthy choice?\n\nCLARENCE:\nAlas, you know, 'tis far from hence to France;\nHow could he stay till Warwick made return?\n\nSOMERSET:\nMy lords, forbear this talk; here comes the king.\n\nGLOUCESTER:\nAnd his well-chosen bride.\n\nCLARENCE:\nI mind to tell him plainly what I think.\n\nKING EDWARD IV:\nNow, brother of Clarence, how like you our choice,\nThat you stand pensive, as half malcontent?\n\nCLARENCE:\nAs well as Lewis of France, or the Earl of Warwick,\nWhich are so weak of courage and in judgment\nThat they'll take no offence at our abuse.\n\nKING EDWARD IV:\nSuppose they take offence without a cause,\nThey are but Lewis and Warwick: I am Edward,\nYour king and Warwick's, and must have my will.\n\nGLOUCESTER:\nAnd shall have your will, because our king:\nYet hasty marriage seldom proveth well.\n\nKING EDWARD IV:\nYea, brother Richard, are you offended too?\n\nGLOUCESTER:\nNot I:\nNo, God forbid that I should wish them sever'd\nWhom God hath join'd together; ay, and 'twere pity\nTo sunder them that yoke so well together.\n\nKING EDWARD IV:\nSetting your scorns and your mislike aside,\nTell me some reason why the Lady Grey\nShould not become my wife and England's queen.\nAnd you too, Somerset and Montague,\nSpeak freely what you think.\n\nCLARENCE:\nThen this is mine opinion: that King Lewis\nBecomes your enemy, for mocking him\nAbout the marriage of the Lady Bona.\n\nGLOUCESTER:\nAnd Warwick, doing what you gave in charge,\nIs now dishonoured by this new marriage.\n\nKING EDWARD IV:\nWhat if both Lewis and Warwick be appeased\nBy such invention as I can devise?\n\nMONTAGUE:\nYet, to have join'd with France in such alliance\nWould more have strengthen'd this our commonwealth\n'Gainst foreign storms than any home-bred marriage.\n\nHASTINGS:\nWhy, knows not Montague that of itself\nEngland is safe, if true within itself?\n\nMONTAGUE:\nBut the safer when 'tis back'd with France.\n\nHASTINGS:\n'Tis better using France than trusting France:\nLet us be back'd with God and with the seas\nWhich He hath given for fence impregnable,\nAnd with their helps only defend ourselves;\nIn them and in ourselves our safety lies.\n\nCLARENCE:\nFor this one speech Lord Hastings well deserves\nTo have the heir of the Lord Hungerford.\n\nKING EDWARD IV:\nAy, what of that? it was my will and grant;\nAnd for this once my will shall stand for law.\n\nGLOUCESTER:\nAnd yet methinks your grace hath not done well,\nTo give the heir and daughter of Lord Scales\nUnto the brother of your loving bride;\nShe better would have fitted me or Clarence:\nBut in your bride you bury brotherhood.\n\nCLARENCE:\nOr else you would not have bestow'd the heir\nOf the Lord Bonville on your new wife's son,\nAnd leave your brothers to go speed elsewhere.\n\nKING EDWARD IV:\nAlas, poor Clarence! is it for a wife\nThat thou art malcontent? I will provide thee.\n\nCLARENCE:\nIn choosing for yourself, you show'd your judgment,\nWhich being shallow, you give me leave\nTo play the broker in mine own behalf;\nAnd to that end I shortly mind to leave you.\n\nKING EDWARD IV:\nLeave me, or tarry, Edward will be king,\nAnd not be tied unto his brother's will.\n\nQUEEN ELIZABETH:\nMy lords, before it pleased his majesty\nTo raise my state to title of a queen,\nDo me but right, and you must all confess\nThat I was not ignoble of descent;\nAnd meaner than myself have had like fortune.\nBut as this title honours me and mine,\nSo your dislike, to whom I would be pleasing,\nDoth cloud my joys with danger and with sorrow.\n\nKING EDWARD IV:\nMy love, forbear to fawn upon their frowns:\nWhat danger or what sorrow can befall thee,\nSo long as Edward is thy constant friend,\nAnd their true sovereign, whom they must obey?\nNay, whom they shall obey, and love thee too,\nUnless they seek for hatred at my hands;\nWhich if they do, yet will I keep thee safe,\nAnd they shall feel the vengeance of my wrath.\n\nGLOUCESTER:\n\nKING EDWARD IV:\nNow, messenger, what letters or what news\nFrom France?\n\nPost:\nMy sovereign liege, no letters; and few words,\nBut such as I, without your special pardon,\nDare not relate.\n\nKING EDWARD IV:\nGo to, we pardon thee: therefore, in brief,\nTell me their words as near as thou canst guess them.\nWhat answer makes King Lewis unto our letters?\n\nPost:\nAt my depart, these were his very words:\n'Go tell false Edward, thy supposed king,\nThat Lewis of France is sending over masquers\nTo revel it with him and his new bride.'\n\nKING EDWARD IV:\nIs Lewis so brave? belike he thinks me Henry.\nBut what said Lady Bona to my marriage?\n\nPost:\nThese were her words, utter'd with mad disdain:\n'Tell him, in hope he'll prove a widower shortly,\nI'll wear the willow garland for his sake.'\n\nKING EDWARD IV:\nI blame not her, she could say little less;\nShe had the wrong. But what said Henry's queen?\nFor I have heard that she was there in place.\n\nPost:\n'Tell him,' quoth she, 'my mourning weeds are done,\nAnd I am ready to put armour on.'\n\nKING EDWARD IV:\nBelike she minds to play the Amazon.\nBut what said Warwick to these injuries?\n\nPost:\nHe, more incensed against your majesty\nThan all the rest, discharged me with these words:\n'Tell him from me that he hath done me wrong,\nAnd therefore I'll uncrown him ere't be long.'\n\nKING EDWARD IV:\nHa! durst the traitor breathe out so proud words?\nWell I will arm me, being thus forewarn'd:\nThey shall have wars and pay for their presumption.\nBut say, is Warwick friends with Margaret?\n\nPost:\nAy, gracious sovereign; they are so link'd in\nfriendship\nThat young Prince Edward marries Warwick's daughter.\n\nCLARENCE:\nBelike the elder; Clarence will have the younger.\nNow, brother king, farewell, and sit you fast,\nFor I will hence to Warwick's other daughter;\nThat, though I want a kingdom, yet in marriage\nI may not prove inferior to yourself.\nYou that love me and Warwick, follow me.\n\nGLOUCESTER:\n\nKING EDWARD IV:\nClarence and Somerset both gone to Warwick!\nYet am I arm'd against the worst can happen;\nAnd haste is needful in this desperate case.\nPembroke and Stafford, you in our behalf\nGo levy men, and make prepare for war;\nThey are already, or quickly will be landed:\nMyself in person will straight follow you.\nBut, ere I go, Hastings and Montague,\nResolve my doubt. You twain, of all the rest,\nAre near to Warwick by blood and by alliance:\nTell me if you love Warwick more than me?\nIf it be so, then both depart to him;\nI rather wish you foes than hollow friends:\nBut if you mind to hold your true obedience,\nGive me assurance with some friendly vow,\nThat I may never have you in suspect.\n\nMONTAGUE:\nSo God help Montague as he proves true!\n\nHASTINGS:\nAnd Hastings as he favours Edward's cause!\n\nKING EDWARD IV:\nNow, brother Richard, will you stand by us?\n\nGLOUCESTER:\nAy, in despite of all that shall withstand you.\n\nKING EDWARD IV:\nWhy, so! then am I sure of victory.\nNow therefore let us hence; and lose no hour,\nTill we meet Warwick with his foreign power.\n3 KING HENRY VI\n\nWARWICK:\nTrust me, my lord, all hitherto goes well;\nThe common people by numbers swarm to us.\nBut see where Somerset and Clarence come!\nSpeak suddenly, my lords, are we all friends?\n\nCLARENCE:\nFear not that, my lord.\n\nWARWICK:\nThen, gentle Clarence, welcome unto Warwick;\nAnd welcome, Somerset: I hold it cowardice\nTo rest mistrustful where a noble heart\nHath pawn'd an open hand in sign of love;\nElse might I think that Clarence, Edward's brother,\nWere but a feigned friend to our proceedings:\nBut welcome, sweet Clarence; my daughter shall be thine.\nAnd now what rests but, in night's coverture,\nThy brother being carelessly encamp'd,\nHis soldiers lurking in the towns about,\nAnd but attended by a simple guard,\nWe may surprise and take him at our pleasure?\nOur scouts have found the adventure very easy:\nThat as Ulysses and stout Diomede\nWith sleight and manhood stole to Rhesus' tents,\nAnd brought from thence the Thracian fatal steeds,\nSo we, well cover'd with the night's black mantle,\nAt unawares may beat down Edward's guard\nAnd seize himself; I say not, slaughter him,\nFor I intend but only to surprise him.\nYou that will follow me to this attempt,\nApplaud the name of Henry with your leader.\nWhy, then, let's on our way in silent sort:\nFor Warwick and his friends, God and Saint George!\n3 KING HENRY VI\n\nFirst Watchman:\nCome on, my masters, each man take his stand:\nThe king by this is set him down to sleep.\n\nSecond Watchman:\nWhat, will he not to bed?\n\nFirst Watchman:\nWhy, no; for he hath made a solemn vow\nNever to lie and take his natural rest\nTill Warwick or himself be quite suppress'd.\n\nSecond Watchman:\nTo-morrow then belike shall be the day,\nIf Warwick be so near as men report.\n\nThird Watchman:\nBut say, I pray, what nobleman is that\nThat with the king here resteth in his tent?\n\nFirst Watchman:\n'Tis the Lord Hastings, the king's chiefest friend.\n\nThird Watchman:\nO, is it so? But why commands the king\nThat his chief followers lodge in towns about him,\nWhile he himself keeps in the cold field?\n\nSecond Watchman:\n'Tis the more honour, because more dangerous.\n\nThird Watchman:\nAy, but give me worship and quietness;\nI like it better than a dangerous honour.\nIf Warwick knew in what estate he stands,\n'Tis to be doubted he would waken him.\n\nFirst Watchman:\nUnless our halberds did shut up his passage.\n\nSecond Watchman:\nAy, wherefore else guard we his royal tent,\nBut to defend his person from night-foes?\n\nWARWICK:\nThis is his tent; and see where stand his guard.\nCourage, my masters! honour now or never!\nBut follow me, and Edward shall be ours.\n\nFirst Watchman:\nWho goes there?\n\nSecond Watchman:\nStay, or thou diest!\n\nSOMERSET:\nWhat are they that fly there?\n\nWARWICK:\nRichard and Hastings: let them go; here is The duke.\n\nKING EDWARD IV:\nThe duke! Why, Warwick, when we parted,\nThou call'dst me king.\n\nWARWICK:\nAy, but the case is alter'd:\nWhen you disgraced me in my embassade,\nThen I degraded you from being king,\nAnd come now to create you Duke of York.\nAlas! how should you govern any kingdom,\nThat know not how to use ambassadors,\nNor how to be contented with one wife,\nNor how to use your brothers brotherly,\nNor how to study for the people's welfare,\nNor how to shroud yourself from enemies?\n\nKING EDWARD IV:\nYea, brother of Clarence, are thou here too?\nNay, then I see that Edward needs must down.\nYet, Warwick, in despite of all mischance,\nOf thee thyself and all thy complices,\nEdward will always bear himself as king:\nThough fortune's malice overthrow my state,\nMy mind exceeds the compass of her wheel.\n\nWARWICK:\nThen, for his mind, be Edward England's king:\nBut Henry now shall wear the English crown,\nAnd be true king indeed, thou but the shadow.\nMy Lord of Somerset, at my request,\nSee that forthwith Duke Edward be convey'd\nUnto my brother, Archbishop of York.\nWhen I have fought with Pembroke and his fellows,\nI'll follow you, and tell what answer\nLewis and the Lady Bona send to him.\nNow, for a while farewell, good Duke of York.\n\nKING EDWARD IV:\nWhat fates impose, that men must needs abide;\nIt boots not to resist both wind and tide.\n\nOXFORD:\nWhat now remains, my lords, for us to do\nBut march to London with our soldiers?\n\nWARWICK:\nAy, that's the first thing that we have to do;\nTo free King Henry from imprisonment\nAnd see him seated in the regal throne.\n3 KING HENRY VI\n\nRIVERS:\nMadam, what makes you in this sudden change?\n\nQUEEN ELIZABETH:\nWhy brother Rivers, are you yet to learn\nWhat late misfortune is befall'n King Edward?\n\nRIVERS:\nWhat! loss of some pitch'd battle against Warwick?\n\nQUEEN ELIZABETH:\nNo, but the loss of his own royal person.\n\nRIVERS:\nThen is my sovereign slain?\n\nQUEEN ELIZABETH:\nAy, almost slain, for he is taken prisoner,\nEither betray'd by falsehood of his guard\nOr by his foe surprised at unawares:\nAnd, as I further have to understand,\nIs new committed to the Bishop of York,\nFell Warwick's brother and by that our foe.\n\nRIVERS:\nThese news I must confess are full of grief;\nYet, gracious madam, bear it as you may:\nWarwick may lose, that now hath won the day.\n\nQUEEN ELIZABETH:\nTill then fair hope must hinder life's decay.\nAnd I the rather wean me from despair\nFor love of Edward's offspring in my womb:\nThis is it that makes me bridle passion\nAnd bear with mildness my misfortune's cross;\nAy, ay, for this I draw in many a tear\nAnd stop the rising of blood-sucking sighs,\nLest with my sighs or tears I blast or drown\nKing Edward's fruit, true heir to the English crown.\n\nRIVERS:\nBut, madam, where is Warwick then become?\n\nQUEEN ELIZABETH:\nI am inform'd that he comes towards London,\nTo set the crown once more on Henry's head:\nGuess thou the rest; King Edward's friends must down,\nBut, to prevent the tyrant's violence,--\nFor trust not him that hath once broken faith,--\nI'll hence forthwith unto the sanctuary,\nTo save at least the heir of Edward's right:\nThere shall I rest secure from force and fraud.\nCome, therefore, let us fly while we may fly:\nIf Warwick take us we are sure to die.\n3 KING HENRY VI\n\nGLOUCESTER:\nNow, my Lord Hastings and Sir William Stanley,\nLeave off to wonder why I drew you hither,\nInto this chiefest thicket of the park.\nThus stands the case: you know our king, my brother,\nIs prisoner to the bishop here, at whose hands\nHe hath good usage and great liberty,\nAnd, often but attended with weak guard,\nComes hunting this way to disport himself.\nI have advertised him by secret means\nThat if about this hour he make his way\nUnder the colour of his usual game,\nHe shall here find his friends with horse and men\nTo set him free from his captivity.\n\nHuntsman:\nThis way, my lord; for this way lies the game.\n\nKING EDWARD IV:\nNay, this way, man: see where the huntsmen stand.\nNow, brother of Gloucester, Lord Hastings, and the rest,\nStand you thus close, to steal the bishop's deer?\n\nGLOUCESTER:\nBrother, the time and case requireth haste:\nYour horse stands ready at the park-corner.\n\nKING EDWARD IV:\nBut whither shall we then?\n\nHASTINGS:\nTo Lynn, my lord,\nAnd ship from thence to Flanders.\n\nGLOUCESTER:\nWell guess'd, believe me; for that was my meaning.\n\nKING EDWARD IV:\nStanley, I will requite thy forwardness.\n\nGLOUCESTER:\nBut wherefore stay we? 'tis no time to talk.\n\nKING EDWARD IV:\nHuntsman, what say'st thou? wilt thou go along?\n\nHuntsman:\nBetter do so than tarry and be hang'd.\n\nGLOUCESTER:\nCome then, away; let's ha' no more ado.\n\nKING EDWARD IV:\nBishop, farewell: shield thee from Warwick's frown;\nAnd pray that I may repossess the crown.\n3 KING HENRY VI\n\nKING HENRY VI:\nMaster lieutenant, now that God and friends\nHave shaken Edward from the regal seat,\nAnd turn'd my captive state to liberty,\nMy fear to hope, my sorrows unto joys,\nAt our enlargement what are thy due fees?\n\nLieutenant:\nSubjects may challenge nothing of their sovereigns;\nBut if an humble prayer may prevail,\nI then crave pardon of your majesty.\n\nKING HENRY VI:\nFor what, lieutenant? for well using me?\nNay, be thou sure I'll well requite thy kindness,\nFor that it made my imprisonment a pleasure;\nAy, such a pleasure as incaged birds\nConceive when after many moody thoughts\nAt last by notes of household harmony\nThey quite forget their loss of liberty.\nBut, Warwick, after God, thou set'st me free,\nAnd chiefly therefore I thank God and thee;\nHe was the author, thou the instrument.\nTherefore, that I may conquer fortune's spite\nBy living low, where fortune cannot hurt me,\nAnd that the people of this blessed land\nMay not be punish'd with my thwarting stars,\nWarwick, although my head still wear the crown,\nI here resign my government to thee,\nFor thou art fortunate in all thy deeds.\n\nWARWICK:\nYour grace hath still been famed for virtuous;\nAnd now may seem as wise as virtuous,\nBy spying and avoiding fortune's malice,\nFor few men rightly temper with the stars:\nYet in this one thing let me blame your grace,\nFor choosing me when Clarence is in place.\n\nCLARENCE:\nNo, Warwick, thou art worthy of the sway,\nTo whom the heavens in thy nativity\nAdjudged an olive branch and laurel crown,\nAs likely to be blest in peace and war;\nAnd therefore I yield thee my free consent.\n\nWARWICK:\nAnd I choose Clarence only for protector.\n\nKING HENRY VI:\nWarwick and Clarence give me both your hands:\nNow join your hands, and with your hands your hearts,\nThat no dissension hinder government:\nI make you both protectors of this land,\nWhile I myself will lead a private life\nAnd in devotion spend my latter days,\nTo sin's rebuke and my Creator's praise.\n\nWARWICK:\nWhat answers Clarence to his sovereign's will?\n\nCLARENCE:\nThat he consents, if Warwick yield consent;\nFor on thy fortune I repose myself.\n\nWARWICK:\nWhy, then, though loath, yet must I be content:\nWe'll yoke together, like a double shadow\nTo Henry's body, and supply his place;\nI mean, in bearing weight of government,\nWhile he enjoys the honour and his ease.\nAnd, Clarence, now then it is more than needful\nForthwith that Edward be pronounced a traitor,\nAnd all his lands and goods be confiscate.\n\nCLARENCE:\nWhat else? and that succession be determined.\n\nWARWICK:\nAy, therein Clarence shall not want his part.\n\nKING HENRY VI:\nBut, with the first of all your chief affairs,\nLet me entreat, for I command no more,\nThat Margaret your queen and my son Edward\nBe sent for, to return from France with speed;\nFor, till I see them here, by doubtful fear\nMy joy of liberty is half eclipsed.\n\nCLARENCE:\nIt shall be done, my sovereign, with all speed.\n\nKING HENRY VI:\nMy Lord of Somerset, what youth is that,\nOf whom you seem to have so tender care?\n\nSOMERSET:\nMy liege, it is young Henry, earl of Richmond.\n\nKING HENRY VI:\nCome hither, England's hope.\nIf secret powers\nSuggest but truth to my divining thoughts,\nThis pretty lad will prove our country's bliss.\nHis looks are full of peaceful majesty,\nHis head by nature framed to wear a crown,\nHis hand to wield a sceptre, and himself\nLikely in time to bless a regal throne.\nMake much of him, my lords, for this is he\nMust help you more than you are hurt by me.\n\nWARWICK:\nWhat news, my friend?\n\nPost:\nThat Edward is escaped from your brother,\nAnd fled, as he hears since, to Burgundy.\n\nWARWICK:\nUnsavoury news! but how made he escape?\n\nPost:\nHe was convey'd by Richard Duke of Gloucester\nAnd the Lord Hastings, who attended him\nIn secret ambush on the forest side\nAnd from the bishop's huntsmen rescued him;\nFor hunting was his daily exercise.\n\nWARWICK:\nMy brother was too careless of his charge.\nBut let us hence, my sovereign, to provide\nA salve for any sore that may betide.\n\nSOMERSET:\nMy lord, I like not of this flight of Edward's;\nFor doubtless Burgundy will yield him help,\nAnd we shall have more wars before 't be long.\nAs Henry's late presaging prophecy\nDid glad my heart with hope of this young Richmond,\nSo doth my heart misgive me, in these conflicts\nWhat may befall him, to his harm and ours:\nTherefore, Lord Oxford, to prevent the worst,\nForthwith we'll send him hence to Brittany,\nTill storms be past of civil enmity.\n\nOXFORD:\nAy, for if Edward repossess the crown,\n'Tis like that Richmond with the rest shall down.\n\nSOMERSET:\nIt shall be so; he shall to Brittany.\nCome, therefore, let's about it speedily.\n3 KING HENRY VI\n\nKING EDWARD IV:\nNow, brother Richard, Lord Hastings, and the rest,\nYet thus far fortune maketh us amends,\nAnd says that once more I shall interchange\nMy waned state for Henry's regal crown.\nWell have we pass'd and now repass'd the seas\nAnd brought desired help from Burgundy:\nWhat then remains, we being thus arrived\nFrom Ravenspurgh haven before the gates of York,\nBut that we enter, as into our dukedom?\n\nGLOUCESTER:\nThe gates made fast! Brother, I like not this;\nFor many men that stumble at the threshold\nAre well foretold that danger lurks within.\n\nKING EDWARD IV:\nTush, man, abodements must not now affright us:\nBy fair or foul means we must enter in,\nFor hither will our friends repair to us.\n\nHASTINGS:\nMy liege, I'll knock once more to summon them.\n\nMayor:\nMy lords, we were forewarned of your coming,\nAnd shut the gates for safety of ourselves;\nFor now we owe allegiance unto Henry.\n\nKING EDWARD IV:\nBut, master mayor, if Henry be your king,\nYet Edward at the least is Duke of York.\n\nMayor:\nTrue, my good lord; I know you for no less.\n\nKING EDWARD IV:\nWhy, and I challenge nothing but my dukedom,\nAs being well content with that alone.\n\nGLOUCESTER:\n\nHASTINGS:\nWhy, master mayor, why stand you in a doubt?\nOpen the gates; we are King Henry's friends.\n\nMayor:\nAy, say you so? the gates shall then be open'd.\n\nGLOUCESTER:\nA wise stout captain, and soon persuaded!\n\nHASTINGS:\nThe good old man would fain that all were well,\nSo 'twere not 'long of him; but being enter'd,\nI doubt not, I, but we shall soon persuade\nBoth him and all his brothers unto reason.\n\nKING EDWARD IV:\nSo, master mayor: these gates must not be shut\nBut in the night or in the time of war.\nWhat! fear not, man, but yield me up the keys;\nFor Edward will defend the town and thee,\nAnd all those friends that deign to follow me.\n\nGLOUCESTER:\nBrother, this is Sir John Montgomery,\nOur trusty friend, unless I be deceived.\n\nKING EDWARD IV:\nWelcome, Sir John! But why come you in arms?\n\nMONTAGUE:\nTo help King Edward in his time of storm,\nAs every loyal subject ought to do.\n\nKING EDWARD IV:\nThanks, good Montgomery; but we now forget\nOur title to the crown and only claim\nOur dukedom till God please to send the rest.\n\nMONTAGUE:\nThen fare you well, for I will hence again:\nI came to serve a king and not a duke.\nDrummer, strike up, and let us march away.\n\nKING EDWARD IV:\nNay, stay, Sir John, awhile, and we'll debate\nBy what safe means the crown may be recover'd.\n\nMONTAGUE:\nWhat talk you of debating? in few words,\nIf you'll not here proclaim yourself our king,\nI'll leave you to your fortune and be gone\nTo keep them back that come to succor you:\nWhy shall we fight, if you pretend no title?\n\nGLOUCESTER:\nWhy, brother, wherefore stand you on nice points?\n\nKING EDWARD IV:\nWhen we grow stronger, then we'll make our claim:\nTill then, 'tis wisdom to conceal our meaning.\n\nHASTINGS:\nAway with scrupulous wit! now arms must rule.\n\nGLOUCESTER:\nAnd fearless minds climb soonest unto crowns.\nBrother, we will proclaim you out of hand:\nThe bruit thereof will bring you many friends.\n\nKING EDWARD IV:\nThen be it as you will; for 'tis my right,\nAnd Henry but usurps the diadem.\n\nMONTAGUE:\nAy, now my sovereign speaketh like himself;\nAnd now will I be Edward's champion.\n\nHASTINGS:\nSound trumpet; Edward shall be here proclaim'd:\nCome, fellow-soldier, make thou proclamation.\n\nSoldier:\nEdward the Fourth, by the grace of God, king of\nEngland and France, and lord of Ireland, &c.\n\nMONTAGUE:\nAnd whosoe'er gainsays King Edward's right,\nBy this I challenge him to single fight.\n\nAll:\nLong live Edward the Fourth!\n\nKING EDWARD IV:\nThanks, brave Montgomery; and thanks unto you all:\nIf fortune serve me, I'll requite this kindness.\nNow, for this night, let's harbour here in York;\nAnd when the morning sun shall raise his car\nAbove the border of this horizon,\nWe'll forward towards Warwick and his mates;\nFor well I wot that Henry is no soldier.\nAh, froward Clarence! how evil it beseems thee\nTo flatter Henry and forsake thy brother!\nYet, as we may, we'll meet both thee and Warwick.\nCome on, brave soldiers: doubt not of the day,\nAnd, that once gotten, doubt not of large pay.\n3 KING HENRY VI\n\nWARWICK:\nWhat counsel, lords? Edward from Belgia,\nWith hasty Germans and blunt Hollanders,\nHath pass'd in safety through the narrow seas,\nAnd with his troops doth march amain to London;\nAnd many giddy people flock to him.\n\nKING HENRY VI:\nLet's levy men, and beat him back again.\n\nCLARENCE:\nA little fire is quickly trodden out;\nWhich, being suffer'd, rivers cannot quench.\n\nWARWICK:\nIn Warwickshire I have true-hearted friends,\nNot mutinous in peace, yet bold in war;\nThose will I muster up: and thou, son Clarence,\nShalt stir up in Suffolk, Norfolk, and in Kent,\nThe knights and gentlemen to come with thee:\nThou, brother Montague, in Buckingham,\nNorthampton and in Leicestershire, shalt find\nMen well inclined to hear what thou command'st:\nAnd thou, brave Oxford, wondrous well beloved,\nIn Oxfordshire shalt muster up thy friends.\nMy sovereign, with the loving citizens,\nLike to his island girt in with the ocean,\nOr modest Dian circled with her nymphs,\nShall rest in London till we come to him.\nFair lords, take leave and stand not to reply.\nFarewell, my sovereign.\n\nKING HENRY VI:\nFarewell, my Hector, and my Troy's true hope.\n\nCLARENCE:\nIn sign of truth, I kiss your highness' hand.\n\nKING HENRY VI:\nWell-minded Clarence, be thou fortunate!\n\nMONTAGUE:\nComfort, my lord; and so I take my leave.\n\nOXFORD:\nAnd thus I seal my truth, and bid adieu.\n\nKING HENRY VI:\nSweet Oxford, and my loving Montague,\nAnd all at once, once more a happy farewell.\n\nWARWICK:\nFarewell, sweet lords: let's meet at Coventry.\n\nKING HENRY VI:\nHere at the palace I will rest awhile.\nCousin of Exeter, what thinks your lordship?\nMethinks the power that Edward hath in field\nShould not be able to encounter mine.\n\nEXETER:\nThe doubt is that he will seduce the rest.\n\nKING HENRY VI:\nThat's not my fear; my meed hath got me fame:\nI have not stopp'd mine ears to their demands,\nNor posted off their suits with slow delays;\nMy pity hath been balm to heal their wounds,\nMy mildness hath allay'd their swelling griefs,\nMy mercy dried their water-flowing tears;\nI have not been desirous of their wealth,\nNor much oppress'd them with great subsidies.\nNor forward of revenge, though they much err'd:\nThen why should they love Edward more than me?\nNo, Exeter, these graces challenge grace:\nAnd when the lion fawns upon the lamb,\nThe lamb will never cease to follow him.\n\nEXETER:\nHark, hark, my lord! what shouts are these?\n\nKING EDWARD IV:\nSeize on the shame-faced Henry, bear him hence;\nAnd once again proclaim us King of England.\nYou are the fount that makes small brooks to flow:\nNow stops thy spring; my sea sha$l suck them dry,\nAnd swell so much the higher by their ebb.\nHence with him to the Tower; let him not speak.\nAnd, lords, towards Coventry bend we our course\nWhere peremptory Warwick now remains:\nThe sun shines hot; and, if we use delay,\nCold biting winter mars our hoped-for hay.\n\nGLOUCESTER:\nAway betimes, before his forces join,\nAnd take the great-grown traitor unawares:\nBrave warriors, march amain towards Coventry.\n3 KING HENRY VI\n\nWARWICK:\nWhere is the post that came from valiant Oxford?\nHow far hence is thy lord, mine honest fellow?\n\nFirst Messenger:\nBy this at Dunsmore, marching hitherward.\n\nWARWICK:\nHow far off is our brother Montague?\nWhere is the post that came from Montague?\n\nSecond Messenger:\nBy this at Daintry, with a puissant troop.\n\nWARWICK:\nSay, Somerville, what says my loving son?\nAnd, by thy guess, how nigh is Clarence now?\n\nSOMERSET:\nAt Southam I did leave him with his forces,\nAnd do expect him here some two hours hence.\n\nWARWICK:\nThen Clarence is at hand, I hear his drum.\n\nSOMERSET:\nIt is not his, my lord; here Southam lies:\nThe drum your honour hears marcheth from Warwick.\n\nWARWICK:\nWho should that be? belike, unlook'd-for friends.\n\nSOMERSET:\nThey are at hand, and you shall quickly know.\n\nKING EDWARD IV:\nGo, trumpet, to the walls, and sound a parle.\n\nGLOUCESTER:\nSee how the surly Warwick mans the wall!\n\nWARWICK:\nO unbid spite! is sportful Edward come?\nWhere slept our scouts, or how are they seduced,\nThat we could hear no news of his repair?\n\nKING EDWARD IV:\nNow, Warwick, wilt thou ope the city gates,\nSpeak gentle words and humbly bend thy knee,\nCall Edward king and at his hands beg mercy?\nAnd he shall pardon thee these outrages.\n\nWARWICK:\nNay, rather, wilt thou draw thy forces hence,\nConfess who set thee up and pluck'd thee own,\nCall Warwick patron and be penitent?\nAnd thou shalt still remain the Duke of York.\n\nGLOUCESTER:\nI thought, at least, he would have said the king;\nOr did he make the jest against his will?\n\nWARWICK:\nIs not a dukedom, sir, a goodly gift?\n\nGLOUCESTER:\nAy, by my faith, for a poor earl to give:\nI'll do thee service for so good a gift.\n\nWARWICK:\n'Twas I that gave the kingdom to thy brother.\n\nKING EDWARD IV:\nWhy then 'tis mine, if but by Warwick's gift.\n\nWARWICK:\nThou art no Atlas for so great a weight:\nAnd weakling, Warwick takes his gift again;\nAnd Henry is my king, Warwick his subject.\n\nKING EDWARD IV:\nBut Warwick's king is Edward's prisoner:\nAnd, gallant Warwick, do but answer this:\nWhat is the body when the head is off?\n\nGLOUCESTER:\nAlas, that Warwick had no more forecast,\nBut, whiles he thought to steal the single ten,\nThe king was slily finger'd from the deck!\nYou left poor Henry at the Bishop's palace,\nAnd, ten to one, you'll meet him in the Tower.\n\nEDWARD:\n'Tis even so; yet you are Warwick still.\n\nGLOUCESTER:\nCome, Warwick, take the time; kneel down, kneel down:\nNay, when? strike now, or else the iron cools.\n\nWARWICK:\nI had rather chop this hand off at a blow,\nAnd with the other fling it at thy face,\nThan bear so low a sail, to strike to thee.\n\nKING EDWARD IV:\nSail how thou canst, have wind and tide thy friend,\nThis hand, fast wound about thy coal-black hair\nShall, whiles thy head is warm and new cut off,\nWrite in the dust this sentence with thy blood,\n'Wind-changing Warwick now can change no more.'\n\nWARWICK:\nO cheerful colours! see where Oxford comes!\n\nOXFORD:\nOxford, Oxford, for Lancaster!\n\nGLOUCESTER:\nThe gates are open, let us enter too.\n\nKING EDWARD IV:\nSo other foes may set upon our backs.\nStand we in good array; for they no doubt\nWill issue out again and bid us battle:\nIf not, the city being but of small defence,\nWe'll quickly rouse the traitors in the same.\n\nWARWICK:\nO, welcome, Oxford! for we want thy help.\n\nMONTAGUE:\nMontague, Montague, for Lancaster!\n\nGLOUCESTER:\nThou and thy brother both shall buy this treason\nEven with the dearest blood your bodies bear.\n\nKING EDWARD IV:\nThe harder match'd, the greater victory:\nMy mind presageth happy gain and conquest.\n\nSOMERSET:\nSomerset, Somerset, for Lancaster!\n\nGLOUCESTER:\nTwo of thy name, both Dukes of Somerset,\nHave sold their lives unto the house of York;\nAnd thou shalt be the third if this sword hold.\n\nWARWICK:\nAnd lo, where George of Clarence sweeps along,\nOf force enough to bid his brother battle;\nWith whom an upright zeal to right prevails\nMore than the nature of a brother's love!\nCome, Clarence, come; thou wilt, if Warwick call.\n\nCLARENCE:\nFather of Warwick, know you what this means?\nLook here, I throw my infamy at thee\nI will not ruinate my father's house,\nWho gave his blood to lime the stones together,\nAnd set up Lancaster. Why, trow'st thou, Warwick,\nThat Clarence is so harsh, so blunt, unnatural,\nTo bend the fatal instruments of war\nAgainst his brother and his lawful king?\nPerhaps thou wilt object my holy oath:\nTo keep that oath were more impiety\nThan Jephthah's, when he sacrificed his daughter.\nI am so sorry for my trespass made\nThat, to deserve well at my brother's hands,\nI here proclaim myself thy mortal foe,\nWith resolution, wheresoe'er I meet thee--\nAs I will meet thee, if thou stir abroad--\nTo plague thee for thy foul misleading me.\nAnd so, proud-hearted Warwick, I defy thee,\nAnd to my brother turn my blushing cheeks.\nPardon me, Edward, I will make amends:\nAnd, Richard, do not frown upon my faults,\nFor I will henceforth be no more unconstant.\n\nKING EDWARD IV:\nNow welcome more, and ten times more beloved,\nThan if thou never hadst deserved our hate.\n\nGLOUCESTER:\nWelcome, good Clarence; this is brotherlike.\n\nWARWICK:\nO passing traitor, perjured and unjust!\n\nKING EDWARD IV:\nWhat, Warwick, wilt thou leave the town and fight?\nOr shall we beat the stones about thine ears?\n\nWARWICK:\nAlas, I am not coop'd here for defence!\nI will away towards Barnet presently,\nAnd bid thee battle, Edward, if thou darest.\n\nKING EDWARD IV:\nYes, Warwick, Edward dares, and leads the way.\nLords, to the field; Saint George and victory!\n3 KING HENRY VI\n\nKING EDWARD IV:\nSo, lie thou there: die thou, and die our fear;\nFor Warwick was a bug that fear'd us all.\nNow, Montague, sit fast; I seek for thee,\nThat Warwick's bones may keep thine company.\n\nWARWICK:\nAh, who is nigh? come to me, friend or foe,\nAnd tell me who is victor, York or Warwick?\nWhy ask I that? my mangled body shows,\nMy blood, my want of strength, my sick heart shows.\nThat I must yield my body to the earth\nAnd, by my fall, the conquest to my foe.\nThus yields the cedar to the axe's edge,\nWhose arms gave shelter to the princely eagle,\nUnder whose shade the ramping lion slept,\nWhose top-branch overpeer'd Jove's spreading tree\nAnd kept low shrubs from winter's powerful wind.\nThese eyes, that now are dimm'd with death's black veil,\nHave been as piercing as the mid-day sun,\nTo search the secret treasons of the world:\nThe wrinkles in my brows, now filled with blood,\nWere liken'd oft to kingly sepulchres;\nFor who lived king, but I could dig his grave?\nAnd who durst mine when Warwick bent his brow?\nLo, now my glory smear'd in dust and blood!\nMy parks, my walks, my manors that I had.\nEven now forsake me, and of all my lands\nIs nothing left me but my body's length.\nWhy, what is pomp, rule, reign, but earth and dust?\nAnd, live we how we can, yet die we must.\n\nSOMERSET:\nAh, Warwick, Warwick! wert thou as we are.\nWe might recover all our loss again;\nThe queen from France hath brought a puissant power:\nEven now we heard the news: ah, could'st thou fly!\n\nWARWICK:\nWhy, then I would not fly. Ah, Montague,\nIf thou be there, sweet brother, take my hand.\nAnd with thy lips keep in my soul awhile!\nThou lovest me not; for, brother, if thou didst,\nThy tears would wash this cold congealed blood\nThat glues my lips and will not let me speak.\nCome quickly, Montague, or I am dead.\n\nSOMERSET:\nAh, Warwick! Montague hath breathed his last;\nAnd to the latest gasp cried out for Warwick,\nAnd said 'Commend me to my valiant brother.'\nAnd more he would have said, and more he spoke,\nWhich sounded like a clamour in a vault,\nThat mought not be distinguished; but at last\nI well might hear, delivered with a groan,\n'O, farewell, Warwick!'\n\nWARWICK:\nSweet rest his soul! Fly, lords, and save yourselves;\nFor Warwick bids you all farewell to meet in heaven.\n\nOXFORD:\nAway, away, to meet the queen's great power!\n3 KING HENRY VI\n\nKING EDWARD IV:\nThus far our fortune keeps an upward course,\nAnd we are graced with wreaths of victory.\nBut, in the midst of this bright-shining day,\nI spy a black, suspicious, threatening cloud,\nThat will encounter with our glorious sun,\nEre he attain his easeful western bed:\nI mean, my lords, those powers that the queen\nHath raised in Gallia have arrived our coast\nAnd, as we hear, march on to fight with us.\n\nCLARENCE:\nA little gale will soon disperse that cloud\nAnd blow it to the source from whence it came:\nThe very beams will dry those vapours up,\nFor every cloud engenders not a storm.\n\nGLOUCESTER:\nThe queen is valued thirty thousand strong,\nAnd Somerset, with Oxford fled to her:\nIf she have time to breathe be well assured\nHer faction will be full as strong as ours.\n\nKING EDWARD IV:\nWe are advertised by our loving friends\nThat they do hold their course toward Tewksbury:\nWe, having now the best at Barnet field,\nWill thither straight, for willingness rids way;\nAnd, as we march, our strength will be augmented\nIn every county as we go along.\nStrike up the drum; cry 'Courage!' and away.\n3 KING HENRY VI\n\nQUEEN MARGARET:\nGreat lords, wise men ne'er sit and wail their loss,\nBut cheerly seek how to redress their harms.\nWhat though the mast be now blown overboard,\nThe cable broke, the holding-anchor lost,\nAnd half our sailors swallow'd in the flood?\nYet lives our pilot still. Is't meet that he\nShould leave the helm and like a fearful lad\nWith tearful eyes add water to the sea\nAnd give more strength to that which hath too much,\nWhiles, in his moan, the ship splits on the rock,\nWhich industry and courage might have saved?\nAh, what a shame! ah, what a fault were this!\nSay Warwick was our anchor; what of that?\nAnd Montague our topmost; what of him?\nOur slaughter'd friends the tackles; what of these?\nWhy, is not Oxford here another anchor?\nAnd Somerset another goodly mast?\nThe friends of France our shrouds and tacklings?\nAnd, though unskilful, why not Ned and I\nFor once allow'd the skilful pilot's charge?\nWe will not from the helm to sit and weep,\nBut keep our course, though the rough wind say no,\nFrom shelves and rocks that threaten us with wreck.\nAs good to chide the waves as speak them fair.\nAnd what is Edward but ruthless sea?\nWhat Clarence but a quicksand of deceit?\nAnd Richard but a ragged fatal rock?\nAll these the enemies to our poor bark.\nSay you can swim; alas, 'tis but a while!\nTread on the sand; why, there you quickly sink:\nBestride the rock; the tide will wash you off,\nOr else you famish; that's a threefold death.\nThis speak I, lords, to let you understand,\nIf case some one of you would fly from us,\nThat there's no hoped-for mercy with the brothers\nMore than with ruthless waves, with sands and rocks.\nWhy, courage then! what cannot be avoided\n'Twere childish weakness to lament or fear.\n\nPRINCE EDWARD:\nMethinks a woman of this valiant spirit\nShould, if a coward heard her speak these words,\nInfuse his breast with magnanimity\nAnd make him, naked, foil a man at arms.\nI speak not this as doubting any here\nFor did I but suspect a fearful man\nHe should have leave to go away betimes,\nLest in our need he might infect another\nAnd make him of like spirit to himself.\nIf any such be here--as God forbid!--\nLet him depart before we need his help.\n\nOXFORD:\nWomen and children of so high a courage,\nAnd warriors faint! why, 'twere perpetual shame.\nO brave young prince! thy famous grandfather\nDoth live again in thee: long mayst thou live\nTo bear his image and renew his glories!\n\nSOMERSET:\nAnd he that will not fight for such a hope.\nGo home to bed, and like the owl by day,\nIf he arise, be mock'd and wonder'd at.\n\nQUEEN MARGARET:\nThanks, gentle Somerset; sweet Oxford, thanks.\n\nPRINCE EDWARD:\nAnd take his thanks that yet hath nothing else.\n\nMessenger:\nPrepare you, lords, for Edward is at hand.\nReady to fight; therefore be resolute.\n\nOXFORD:\nI thought no less: it is his policy\nTo haste thus fast, to find us unprovided.\n\nSOMERSET:\nBut he's deceived; we are in readiness.\n\nQUEEN MARGARET:\nThis cheers my heart, to see your forwardness.\n\nOXFORD:\nHere pitch our battle; hence we will not budge.\n\nKING EDWARD IV:\nBrave followers, yonder stands the thorny wood,\nWhich, by the heavens' assistance and your strength,\nMust by the roots be hewn up yet ere night.\nI need not add more fuel to your fire,\nFor well I wot ye blaze to burn them out\nGive signal to the fight, and to it, lords!\n\nQUEEN MARGARET:\nLords, knights, and gentlemen, what I should say\nMy tears gainsay; for every word I speak,\nYe see, I drink the water of mine eyes.\nTherefore, no more but this: Henry, your sovereign,\nIs prisoner to the foe; his state usurp'd,\nHis realm a slaughter-house, his subjects slain,\nHis statutes cancell'd and his treasure spent;\nAnd yonder is the wolf that makes this spoil.\nYou fight in justice: then, in God's name, lords,\nBe valiant and give signal to the fight.\n3 KING HENRY VI\n\nKING EDWARD IV:\nNow here a period of tumultuous broils.\nAway with Oxford to Hames Castle straight:\nFor Somerset, off with his guilty head.\nGo, bear them hence; I will not hear them speak.\n\nOXFORD:\nFor my part, I'll not trouble thee with words.\n\nSOMERSET:\nNor I, but stoop with patience to my fortune.\n\nQUEEN MARGARET:\nSo part we sadly in this troublous world,\nTo meet with joy in sweet Jerusalem.\n\nKING EDWARD IV:\nIs proclamation made, that who finds Edward\nShall have a high reward, and he his life?\n\nGLOUCESTER:\nIt is: and lo, where youthful Edward comes!\n\nKING EDWARD IV:\nBring forth the gallant, let us hear him speak.\nWhat! can so young a thorn begin to prick?\nEdward, what satisfaction canst thou make\nFor bearing arms, for stirring up my subjects,\nAnd all the trouble thou hast turn'd me to?\n\nPRINCE EDWARD:\nSpeak like a subject, proud ambitious York!\nSuppose that I am now my father's mouth;\nResign thy chair, and where I stand kneel thou,\nWhilst I propose the selfsame words to thee,\nWhich traitor, thou wouldst have me answer to.\n\nQUEEN MARGARET:\nAh, that thy father had been so resolved!\n\nGLOUCESTER:\nThat you might still have worn the petticoat,\nAnd ne'er have stol'n the breech from Lancaster.\n\nPRINCE EDWARD:\nLet AEsop fable in a winter's night;\nHis currish riddles sort not with this place.\n\nGLOUCESTER:\nBy heaven, brat, I'll plague ye for that word.\n\nQUEEN MARGARET:\nAy, thou wast born to be a plague to men.\n\nGLOUCESTER:\nFor God's sake, take away this captive scold.\n\nPRINCE EDWARD:\nNay, take away this scolding crookback rather.\n\nKING EDWARD IV:\nPeace, wilful boy, or I will charm your tongue.\n\nCLARENCE:\nUntutor'd lad, thou art too malapert.\n\nPRINCE EDWARD:\nI know my duty; you are all undutiful:\nLascivious Edward, and thou perjured George,\nAnd thou mis-shapen Dick, I tell ye all\nI am your better, traitors as ye are:\nAnd thou usurp'st my father's right and mine.\n\nKING EDWARD IV:\nTake that, thou likeness of this railer here.\n\nGLOUCESTER:\nSprawl'st thou? take that, to end thy agony.\n\nCLARENCE:\nAnd there's for twitting me with perjury.\n\nQUEEN MARGARET:\nO, kill me too!\n\nGLOUCESTER:\nMarry, and shall.\n\nKING EDWARD IV:\nHold, Richard, hold; for we have done too much.\n\nGLOUCESTER:\nWhy should she live, to fill the world with words?\n\nKING EDWARD IV:\nWhat, doth she swoon? use means for her recovery.\n\nGLOUCESTER:\nClarence, excuse me to the king my brother;\nI'll hence to London on a serious matter:\nEre ye come there, be sure to hear some news.\n\nCLARENCE:\nWhat? what?\n\nGLOUCESTER:\nThe Tower, the Tower.\n\nQUEEN MARGARET:\nO Ned, sweet Ned! speak to thy mother, boy!\nCanst thou not speak? O traitors! murderers!\nThey that stabb'd Caesar shed no blood at all,\nDid not offend, nor were not worthy blame,\nIf this foul deed were by to equal it:\nHe was a man; this, in respect, a child:\nAnd men ne'er spend their fury on a child.\nWhat's worse than murderer, that I may name it?\nNo, no, my heart will burst, and if I speak:\nAnd I will speak, that so my heart may burst.\nButchers and villains! bloody cannibals!\nHow sweet a plant have you untimely cropp'd!\nYou have no children, butchers! if you had,\nThe thought of them would have stirr'd up remorse:\nBut if you ever chance to have a child,\nLook in his youth to have him so cut off\nAs, deathmen, you have rid this sweet young prince!\n\nKING EDWARD IV:\nAway with her; go, bear her hence perforce.\n\nQUEEN MARGARET:\nNay, never bear me hence, dispatch me here,\nHere sheathe thy sword, I'll pardon thee my death:\nWhat, wilt thou not? then, Clarence, do it thou.\n\nCLARENCE:\nBy heaven, I will not do thee so much ease.\n\nQUEEN MARGARET:\nGood Clarence, do; sweet Clarence, do thou do it.\n\nCLARENCE:\nDidst thou not hear me swear I would not do it?\n\nQUEEN MARGARET:\nAy, but thou usest to forswear thyself:\n'Twas sin before, but now 'tis charity.\nWhat, wilt thou not? Where is that devil's butcher,\nHard-favour'd Richard? Richard, where art thou?\nThou art not here: murder is thy alms-deed;\nPetitioners for blood thou ne'er put'st back.\n\nKING EDWARD IV:\nAway, I say; I charge ye, bear her hence.\n\nQUEEN MARGARET:\nSo come to you and yours, as to this Prince!\n\nKING EDWARD IV:\nWhere's Richard gone?\n\nCLARENCE:\nTo London, all in post; and, as I guess,\nTo make a bloody supper in the Tower.\n\nKING EDWARD IV:\nHe's sudden, if a thing comes in his head.\nNow march we hence: discharge the common sort\nWith pay and thanks, and let's away to London\nAnd see our gentle queen how well she fares:\nBy this, I hope, she hath a son for me.\n3 KING HENRY VI\n\nGLOUCESTER:\nGood day, my lord. What, at your book so hard?\n\nKING HENRY VI:\nAy, my good lord:--my lord, I should say rather;\n'Tis sin to flatter; 'good' was little better:\n'Good Gloucester' and 'good devil' were alike,\nAnd both preposterous; therefore, not 'good lord.'\n\nGLOUCESTER:\nSirrah, leave us to ourselves: we must confer.\n\nKING HENRY VI:\nSo flies the reckless shepherd from the wolf;\nSo first the harmless sheep doth yield his fleece\nAnd next his throat unto the butcher's knife.\nWhat scene of death hath Roscius now to act?\n\nGLOUCESTER:\nSuspicion always haunts the guilty mind;\nThe thief doth fear each bush an officer.\n\nKING HENRY VI:\nThe bird that hath been limed in a bush,\nWith trembling wings misdoubteth every bush;\nAnd I, the hapless male to one sweet bird,\nHave now the fatal object in my eye\nWhere my poor young was limed, was caught and kill'd.\n\nGLOUCESTER:\nWhy, what a peevish fool was that of Crete,\nThat taught his son the office of a fowl!\nAn yet, for all his wings, the fool was drown'd.\n\nKING HENRY VI:\nI, Daedalus; my poor boy, Icarus;\nThy father, Minos, that denied our course;\nThe sun that sear'd the wings of my sweet boy\nThy brother Edward, and thyself the sea\nWhose envious gulf did swallow up his life.\nAh, kill me with thy weapon, not with words!\nMy breast can better brook thy dagger's point\nThan can my ears that tragic history.\nBut wherefore dost thou come? is't for my life?\n\nGLOUCESTER:\nThink'st thou I am an executioner?\n\nKING HENRY VI:\nA persecutor, I am sure, thou art:\nIf murdering innocents be executing,\nWhy, then thou art an executioner.\n\nGLOUCESTER:\nThy son I kill'd for his presumption.\n\nKING HENRY VI:\nHadst thou been kill'd when first thou didst presume,\nThou hadst not lived to kill a son of mine.\nAnd thus I prophesy, that many a thousand,\nWhich now mistrust no parcel of my fear,\nAnd many an old man's sigh and many a widow's,\nAnd many an orphan's water-standing eye--\nMen for their sons, wives for their husbands,\nAnd orphans for their parents timeless death--\nShall rue the hour that ever thou wast born.\nThe owl shriek'd at thy birth,--an evil sign;\nThe night-crow cried, aboding luckless time;\nDogs howl'd, and hideous tempest shook down trees;\nThe raven rook'd her on the chimney's top,\nAnd chattering pies in dismal discords sung.\nThy mother felt more than a mother's pain,\nAnd, yet brought forth less than a mother's hope,\nTo wit, an indigested and deformed lump,\nNot like the fruit of such a goodly tree.\nTeeth hadst thou in thy head when thou wast born,\nTo signify thou camest to bite the world:\nAnd, if the rest be true which I have heard,\nThou camest--\n\nGLOUCESTER:\nI'll hear no more: die, prophet in thy speech:\nFor this amongst the rest, was I ordain'd.\n\nKING HENRY VI:\nAy, and for much more slaughter after this.\nGod forgive my sins, and pardon thee!\n\nGLOUCESTER:\nWhat, will the aspiring blood of Lancaster\nSink in the ground? I thought it would have mounted.\nSee how my sword weeps for the poor king's death!\nO, may such purple tears be alway shed\nFrom those that wish the downfall of our house!\nIf any spark of life be yet remaining,\nDown, down to hell; and say I sent thee thither:\nI, that have neither pity, love, nor fear.\nIndeed, 'tis true that Henry told me of;\nFor I have often heard my mother say\nI came into the world with my legs forward:\nHad I not reason, think ye, to make haste,\nAnd seek their ruin that usurp'd our right?\nThe midwife wonder'd and the women cried\n'O, Jesus bless us, he is born with teeth!'\nAnd so I was; which plainly signified\nThat I should snarl and bite and play the dog.\nThen, since the heavens have shaped my body so,\nLet hell make crook'd my mind to answer it.\nI have no brother, I am like no brother;\nAnd this word 'love,' which graybeards call divine,\nBe resident in men like one another\nAnd not in me: I am myself alone.\nClarence, beware; thou keep'st me from the light:\nBut I will sort a pitchy day for thee;\nFor I will buz abroad such prophecies\nThat Edward shall be fearful of his life,\nAnd then, to purge his fear, I'll be thy death.\nKing Henry and the prince his son are gone:\nClarence, thy turn is next, and then the rest,\nCounting myself but bad till I be best.\nI'll throw thy body in another room\nAnd triumph, Henry, in thy day of doom.\n3 KING HENRY VI\n\nKING EDWARD IV:\nOnce more we sit in England's royal throne,\nRe-purchased with the blood of enemies.\nWhat valiant foemen, like to autumn's corn,\nHave we mow'd down, in tops of all their pride!\nThree Dukes of Somerset, threefold renown'd\nFor hardy and undoubted champions;\nTwo Cliffords, as the father and the son,\nAnd two Northumberlands; two braver men\nNe'er spurr'd their coursers at the trumpet's sound;\nWith them, the two brave bears, Warwick and Montague,\nThat in their chains fetter'd the kingly lion\nAnd made the forest tremble when they roar'd.\nThus have we swept suspicion from our seat\nAnd made our footstool of security.\nCome hither, Bess, and let me kiss my boy.\nYoung Ned, for thee, thine uncles and myself\nHave in our armours watch'd the winter's night,\nWent all afoot in summer's scalding heat,\nThat thou mightst repossess the crown in peace;\nAnd of our labours thou shalt reap the gain.\n\nGLOUCESTER:\n\nKING EDWARD IV:\nClarence and Gloucester, love my lovely queen;\nAnd kiss your princely nephew, brothers both.\n\nCLARENCE:\nThe duty that I owe unto your majesty\nI seal upon the lips of this sweet babe.\n\nQUEEN ELIZABETH:\nThanks, noble Clarence; worthy brother, thanks.\n\nGLOUCESTER:\nAnd, that I love the tree from whence thou sprang'st,\nWitness the loving kiss I give the fruit.\n\nKING EDWARD IV:\nNow am I seated as my soul delights,\nHaving my country's peace and brothers' loves.\n\nCLARENCE:\nWhat will your grace have done with Margaret?\nReignier, her father, to the king of France\nHath pawn'd the Sicils and Jerusalem,\nAnd hither have they sent it for her ransom.\n\nKING EDWARD IV:\nAway with her, and waft her hence to France.\nAnd now what rests but that we spend the time\nWith stately triumphs, mirthful comic shows,\nSuch as befits the pleasure of the court?\nSound drums and trumpets! farewell sour annoy!\nFor here, I hope, begins our lasting joy.\n\nARCHIDAMUS:\nIf you shall chance, Camillo, to visit Bohemia, on\nthe like occasion whereon my services are now on\nfoot, you shall see, as I have said, great\ndifference betwixt our Bohemia and your Sicilia.\n\nCAMILLO:\nI think, this coming summer, the King of Sicilia\nmeans to pay Bohemia the visitation which he justly owes him.\n\nARCHIDAMUS:\nWherein our entertainment shall shame us we will be\njustified in our loves; for indeed--\n\nCAMILLO:\nBeseech you,--\n\nARCHIDAMUS:\nVerily, I speak it in the freedom of my knowledge:\nwe cannot with such magnificence--in so rare--I know\nnot what to say. We will give you sleepy drinks,\nthat your senses, unintelligent of our insufficience,\nmay, though they cannot praise us, as little accuse\nus.\n\nCAMILLO:\nYou pay a great deal too dear for what's given freely.\n\nARCHIDAMUS:\nBelieve me, I speak as my understanding instructs me\nand as mine honesty puts it to utterance.\n\nCAMILLO:\nSicilia cannot show himself over-kind to Bohemia.\nThey were trained together in their childhoods; and\nthere rooted betwixt them then such an affection,\nwhich cannot choose but branch now. Since their\nmore mature dignities and royal necessities made\nseparation of their society, their encounters,\nthough not personal, have been royally attorneyed\nwith interchange of gifts, letters, loving\nembassies; that they have seemed to be together,\nthough absent, shook hands, as over a vast, and\nembraced, as it were, from the ends of opposed\nwinds. The heavens continue their loves!\n\nARCHIDAMUS:\nI think there is not in the world either malice or\nmatter to alter it. You have an unspeakable\ncomfort of your young prince Mamillius: it is a\ngentleman of the greatest promise that ever came\ninto my note.\n\nCAMILLO:\nI very well agree with you in the hopes of him: it\nis a gallant child; one that indeed physics the\nsubject, makes old hearts fresh: they that went on\ncrutches ere he was born desire yet their life to\nsee him a man.\n\nARCHIDAMUS:\nWould they else be content to die?\n\nCAMILLO:\nYes; if there were no other excuse why they should\ndesire to live.\n\nARCHIDAMUS:\nIf the king had no son, they would desire to live\non crutches till he had one.\n\nPOLIXENES:\nNine changes of the watery star hath been\nThe shepherd's note since we have left our throne\nWithout a burthen: time as long again\nWould be find up, my brother, with our thanks;\nAnd yet we should, for perpetuity,\nGo hence in debt: and therefore, like a cipher,\nYet standing in rich place, I multiply\nWith one 'We thank you' many thousands moe\nThat go before it.\n\nLEONTES:\nStay your thanks a while;\nAnd pay them when you part.\n\nPOLIXENES:\nSir, that's to-morrow.\nI am question'd by my fears, of what may chance\nOr breed upon our absence; that may blow\nNo sneaping winds at home, to make us say\n'This is put forth too truly:' besides, I have stay'd\nTo tire your royalty.\n\nLEONTES:\nWe are tougher, brother,\nThan you can put us to't.\n\nPOLIXENES:\nNo longer stay.\n\nLEONTES:\nOne seven-night longer.\n\nPOLIXENES:\nVery sooth, to-morrow.\n\nLEONTES:\nWe'll part the time between's then; and in that\nI'll no gainsaying.\n\nPOLIXENES:\nPress me not, beseech you, so.\nThere is no tongue that moves, none, none i' the world,\nSo soon as yours could win me: so it should now,\nWere there necessity in your request, although\n'Twere needful I denied it. My affairs\nDo even drag me homeward: which to hinder\nWere in your love a whip to me; my stay\nTo you a charge and trouble: to save both,\nFarewell, our brother.\n\nLEONTES:\nTongue-tied, our queen?\nspeak you.\n\nHERMIONE:\nI had thought, sir, to have held my peace until\nYou have drawn oaths from him not to stay. You, sir,\nCharge him too coldly. Tell him, you are sure\nAll in Bohemia's well; this satisfaction\nThe by-gone day proclaim'd: say this to him,\nHe's beat from his best ward.\n\nLEONTES:\nWell said, Hermione.\n\nHERMIONE:\nTo tell, he longs to see his son, were strong:\nBut let him say so then, and let him go;\nBut let him swear so, and he shall not stay,\nWe'll thwack him hence with distaffs.\nYet of your royal presence I'll adventure\nThe borrow of a week. When at Bohemia\nYou take my lord, I'll give him my commission\nTo let him there a month behind the gest\nPrefix'd for's parting: yet, good deed, Leontes,\nI love thee not a jar o' the clock behind\nWhat lady-she her lord. You'll stay?\n\nPOLIXENES:\nNo, madam.\n\nHERMIONE:\nNay, but you will?\n\nPOLIXENES:\nI may not, verily.\n\nHERMIONE:\nVerily!\nYou put me off with limber vows; but I,\nThough you would seek to unsphere the\nstars with oaths,\nShould yet say 'Sir, no going.' Verily,\nYou shall not go: a lady's 'Verily' 's\nAs potent as a lord's. Will you go yet?\nForce me to keep you as a prisoner,\nNot like a guest; so you shall pay your fees\nWhen you depart, and save your thanks. How say you?\nMy prisoner? or my guest? by your dread 'Verily,'\nOne of them you shall be.\n\nPOLIXENES:\nYour guest, then, madam:\nTo be your prisoner should import offending;\nWhich is for me less easy to commit\nThan you to punish.\n\nHERMIONE:\nNot your gaoler, then,\nBut your kind hostess. Come, I'll question you\nOf my lord's tricks and yours when you were boys:\nYou were pretty lordings then?\n\nPOLIXENES:\nWe were, fair queen,\nTwo lads that thought there was no more behind\nBut such a day to-morrow as to-day,\nAnd to be boy eternal.\n\nHERMIONE:\nWas not my lord\nThe verier wag o' the two?\n\nPOLIXENES:\nWe were as twinn'd lambs that did frisk i' the sun,\nAnd bleat the one at the other: what we changed\nWas innocence for innocence; we knew not\nThe doctrine of ill-doing, nor dream'd\nThat any did. Had we pursued that life,\nAnd our weak spirits ne'er been higher rear'd\nWith stronger blood, we should have answer'd heaven\nBoldly 'not guilty;' the imposition clear'd\nHereditary ours.\n\nHERMIONE:\nBy this we gather\nYou have tripp'd since.\n\nPOLIXENES:\nO my most sacred lady!\nTemptations have since then been born to's; for\nIn those unfledged days was my wife a girl;\nYour precious self had then not cross'd the eyes\nOf my young play-fellow.\n\nHERMIONE:\nGrace to boot!\nOf this make no conclusion, lest you say\nYour queen and I are devils: yet go on;\nThe offences we have made you do we'll answer,\nIf you first sinn'd with us and that with us\nYou did continue fault and that you slipp'd not\nWith any but with us.\n\nLEONTES:\nIs he won yet?\n\nHERMIONE:\nHe'll stay my lord.\n\nLEONTES:\nAt my request he would not.\nHermione, my dearest, thou never spokest\nTo better purpose.\n\nHERMIONE:\nNever?\n\nLEONTES:\nNever, but once.\n\nHERMIONE:\nWhat! have I twice said well? when was't before?\nI prithee tell me; cram's with praise, and make's\nAs fat as tame things: one good deed dying tongueless\nSlaughters a thousand waiting upon that.\nOur praises are our wages: you may ride's\nWith one soft kiss a thousand furlongs ere\nWith spur we beat an acre. But to the goal:\nMy last good deed was to entreat his stay:\nWhat was my first? it has an elder sister,\nOr I mistake you: O, would her name were Grace!\nBut once before I spoke to the purpose: when?\nNay, let me have't; I long.\n\nLEONTES:\nWhy, that was when\nThree crabbed months had sour'd themselves to death,\nEre I could make thee open thy white hand\nAnd clap thyself my love: then didst thou utter\n'I am yours for ever.'\n\nHERMIONE:\n'Tis grace indeed.\nWhy, lo you now, I have spoke to the purpose twice:\nThe one for ever earn'd a royal husband;\nThe other for some while a friend.\n\nLEONTES:\n\nMAMILLIUS:\nAy, my good lord.\n\nLEONTES:\nI' fecks!\nWhy, that's my bawcock. What, hast\nsmutch'd thy nose?\nThey say it is a copy out of mine. Come, captain,\nWe must be neat; not neat, but cleanly, captain:\nAnd yet the steer, the heifer and the calf\nAre all call'd neat.--Still virginalling\nUpon his palm!--How now, you wanton calf!\nArt thou my calf?\n\nMAMILLIUS:\nYes, if you will, my lord.\n\nLEONTES:\nThou want'st a rough pash and the shoots that I have,\nTo be full like me: yet they say we are\nAlmost as like as eggs; women say so,\nThat will say anything but were they false\nAs o'er-dyed blacks, as wind, as waters, false\nAs dice are to be wish'd by one that fixes\nNo bourn 'twixt his and mine, yet were it true\nTo say this boy were like me. Come, sir page,\nLook on me with your welkin eye: sweet villain!\nMost dear'st! my collop! Can thy dam?--may't be?--\nAffection! thy intention stabs the centre:\nThou dost make possible things not so held,\nCommunicatest with dreams;--how can this be?--\nWith what's unreal thou coactive art,\nAnd fellow'st nothing: then 'tis very credent\nThou mayst co-join with something; and thou dost,\nAnd that beyond commission, and I find it,\nAnd that to the infection of my brains\nAnd hardening of my brows.\n\nPOLIXENES:\nWhat means Sicilia?\n\nHERMIONE:\nHe something seems unsettled.\n\nPOLIXENES:\nHow, my lord!\nWhat cheer? how is't with you, best brother?\n\nHERMIONE:\nYou look as if you held a brow of much distraction\nAre you moved, my lord?\n\nLEONTES:\nNo, in good earnest.\nHow sometimes nature will betray its folly,\nIts tenderness, and make itself a pastime\nTo harder bosoms! Looking on the lines\nOf my boy's face, methoughts I did recoil\nTwenty-three years, and saw myself unbreech'd,\nIn my green velvet coat, my dagger muzzled,\nLest it should bite its master, and so prove,\nAs ornaments oft do, too dangerous:\nHow like, methought, I then was to this kernel,\nThis squash, this gentleman. Mine honest friend,\nWill you take eggs for money?\n\nMAMILLIUS:\nNo, my lord, I'll fight.\n\nLEONTES:\nYou will! why, happy man be's dole! My brother,\nAre you so fond of your young prince as we\nDo seem to be of ours?\n\nPOLIXENES:\nIf at home, sir,\nHe's all my exercise, my mirth, my matter,\nNow my sworn friend and then mine enemy,\nMy parasite, my soldier, statesman, all:\nHe makes a July's day short as December,\nAnd with his varying childness cures in me\nThoughts that would thick my blood.\n\nLEONTES:\nSo stands this squire\nOfficed with me: we two will walk, my lord,\nAnd leave you to your graver steps. Hermione,\nHow thou lovest us, show in our brother's welcome;\nLet what is dear in Sicily be cheap:\nNext to thyself and my young rover, he's\nApparent to my heart.\n\nHERMIONE:\nIf you would seek us,\nWe are yours i' the garden: shall's attend you there?\n\nLEONTES:\nTo your own bents dispose you: you'll be found,\nBe you beneath the sky.\nI am angling now,\nThough you perceive me not how I give line.\nGo to, go to!\nHow she holds up the neb, the bill to him!\nAnd arms her with the boldness of a wife\nTo her allowing husband!\nGone already!\nInch-thick, knee-deep, o'er head and\nears a fork'd one!\nGo, play, boy, play: thy mother plays, and I\nPlay too, but so disgraced a part, whose issue\nWill hiss me to my grave: contempt and clamour\nWill be my knell. Go, play, boy, play.\nThere have been,\nOr I am much deceived, cuckolds ere now;\nAnd many a man there is, even at this present,\nNow while I speak this, holds his wife by the arm,\nThat little thinks she has been sluiced in's absence\nAnd his pond fish'd by his next neighbour, by\nSir Smile, his neighbour: nay, there's comfort in't\nWhiles other men have gates and those gates open'd,\nAs mine, against their will. Should all despair\nThat have revolted wives, the tenth of mankind\nWould hang themselves. Physic for't there is none;\nIt is a bawdy planet, that will strike\nWhere 'tis predominant; and 'tis powerful, think it,\nFrom east, west, north and south: be it concluded,\nNo barricado for a belly; know't;\nIt will let in and out the enemy\nWith bag and baggage: many thousand on's\nHave the disease, and feel't not. How now, boy!\n\nMAMILLIUS:\nI am like you, they say.\n\nLEONTES:\nWhy that's some comfort. What, Camillo there?\n\nCAMILLO:\nAy, my good lord.\n\nLEONTES:\nGo play, Mamillius; thou'rt an honest man.\nCamillo, this great sir will yet stay longer.\n\nCAMILLO:\nYou had much ado to make his anchor hold:\nWhen you cast out, it still came home.\n\nLEONTES:\nDidst note it?\n\nCAMILLO:\nHe would not stay at your petitions: made\nHis business more material.\n\nLEONTES:\nDidst perceive it?\nThey're here with me already, whispering, rounding\n'Sicilia is a so-forth:' 'tis far gone,\nWhen I shall gust it last. How came't, Camillo,\nThat he did stay?\n\nCAMILLO:\nAt the good queen's entreaty.\n\nLEONTES:\nAt the queen's be't: 'good' should be pertinent\nBut, so it is, it is not. Was this taken\nBy any understanding pate but thine?\nFor thy conceit is soaking, will draw in\nMore than the common blocks: not noted, is't,\nBut of the finer natures? by some severals\nOf head-piece extraordinary? lower messes\nPerchance are to this business purblind? say.\n\nCAMILLO:\nBusiness, my lord! I think most understand\nBohemia stays here longer.\n\nLEONTES:\nHa!\n\nCAMILLO:\nStays here longer.\n\nLEONTES:\nAy, but why?\n\nCAMILLO:\nTo satisfy your highness and the entreaties\nOf our most gracious mistress.\n\nLEONTES:\nSatisfy!\nThe entreaties of your mistress! satisfy!\nLet that suffice. I have trusted thee, Camillo,\nWith all the nearest things to my heart, as well\nMy chamber-councils, wherein, priest-like, thou\nHast cleansed my bosom, I from thee departed\nThy penitent reform'd: but we have been\nDeceived in thy integrity, deceived\nIn that which seems so.\n\nCAMILLO:\nBe it forbid, my lord!\n\nLEONTES:\nTo bide upon't, thou art not honest, or,\nIf thou inclinest that way, thou art a coward,\nWhich hoxes honesty behind, restraining\nFrom course required; or else thou must be counted\nA servant grafted in my serious trust\nAnd therein negligent; or else a fool\nThat seest a game play'd home, the rich stake drawn,\nAnd takest it all for jest.\n\nCAMILLO:\nMy gracious lord,\nI may be negligent, foolish and fearful;\nIn every one of these no man is free,\nBut that his negligence, his folly, fear,\nAmong the infinite doings of the world,\nSometime puts forth. In your affairs, my lord,\nIf ever I were wilful-negligent,\nIt was my folly; if industriously\nI play'd the fool, it was my negligence,\nNot weighing well the end; if ever fearful\nTo do a thing, where I the issue doubted,\nWhere of the execution did cry out\nAgainst the non-performance, 'twas a fear\nWhich oft infects the wisest: these, my lord,\nAre such allow'd infirmities that honesty\nIs never free of. But, beseech your grace,\nBe plainer with me; let me know my trespass\nBy its own visage: if I then deny it,\n'Tis none of mine.\n\nLEONTES:\nHa' not you seen, Camillo,--\nBut that's past doubt, you have, or your eye-glass\nIs thicker than a cuckold's horn,--or heard,--\nFor to a vision so apparent rumour\nCannot be mute,--or thought,--for cogitation\nResides not in that man that does not think,--\nMy wife is slippery? If thou wilt confess,\nOr else be impudently negative,\nTo have nor eyes nor ears nor thought, then say\nMy wife's a hobby-horse, deserves a name\nAs rank as any flax-wench that puts to\nBefore her troth-plight: say't and justify't.\n\nCAMILLO:\nI would not be a stander-by to hear\nMy sovereign mistress clouded so, without\nMy present vengeance taken: 'shrew my heart,\nYou never spoke what did become you less\nThan this; which to reiterate were sin\nAs deep as that, though true.\n\nLEONTES:\nIs whispering nothing?\nIs leaning cheek to cheek? is meeting noses?\nKissing with inside lip? stopping the career\nOf laughing with a sigh?--a note infallible\nOf breaking honesty--horsing foot on foot?\nSkulking in corners? wishing clocks more swift?\nHours, minutes? noon, midnight? and all eyes\nBlind with the pin and web but theirs, theirs only,\nThat would unseen be wicked? is this nothing?\nWhy, then the world and all that's in't is nothing;\nThe covering sky is nothing; Bohemia nothing;\nMy wife is nothing; nor nothing have these nothings,\nIf this be nothing.\n\nCAMILLO:\nGood my lord, be cured\nOf this diseased opinion, and betimes;\nFor 'tis most dangerous.\n\nLEONTES:\nSay it be, 'tis true.\n\nCAMILLO:\nNo, no, my lord.\n\nLEONTES:\nIt is; you lie, you lie:\nI say thou liest, Camillo, and I hate thee,\nPronounce thee a gross lout, a mindless slave,\nOr else a hovering temporizer, that\nCanst with thine eyes at once see good and evil,\nInclining to them both: were my wife's liver\nInfected as her life, she would not live\nThe running of one glass.\n\nCAMILLO:\nWho does infect her?\n\nLEONTES:\nWhy, he that wears her like a medal, hanging\nAbout his neck, Bohemia: who, if I\nHad servants true about me, that bare eyes\nTo see alike mine honour as their profits,\nTheir own particular thrifts, they would do that\nWhich should undo more doing: ay, and thou,\nHis cupbearer,--whom I from meaner form\nHave benched and reared to worship, who mayst see\nPlainly as heaven sees earth and earth sees heaven,\nHow I am galled,--mightst bespice a cup,\nTo give mine enemy a lasting wink;\nWhich draught to me were cordial.\n\nCAMILLO:\nSir, my lord,\nI could do this, and that with no rash potion,\nBut with a lingering dram that should not work\nMaliciously like poison: but I cannot\nBelieve this crack to be in my dread mistress,\nSo sovereignly being honourable.\nI have loved thee,--\n\nLEONTES:\nMake that thy question, and go rot!\nDost think I am so muddy, so unsettled,\nTo appoint myself in this vexation, sully\nThe purity and whiteness of my sheets,\nWhich to preserve is sleep, which being spotted\nIs goads, thorns, nettles, tails of wasps,\nGive scandal to the blood o' the prince my son,\nWho I do think is mine and love as mine,\nWithout ripe moving to't? Would I do this?\nCould man so blench?\n\nCAMILLO:\nI must believe you, sir:\nI do; and will fetch off Bohemia for't;\nProvided that, when he's removed, your highness\nWill take again your queen as yours at first,\nEven for your son's sake; and thereby for sealing\nThe injury of tongues in courts and kingdoms\nKnown and allied to yours.\n\nLEONTES:\nThou dost advise me\nEven so as I mine own course have set down:\nI'll give no blemish to her honour, none.\n\nCAMILLO:\nMy lord,\nGo then; and with a countenance as clear\nAs friendship wears at feasts, keep with Bohemia\nAnd with your queen. I am his cupbearer:\nIf from me he have wholesome beverage,\nAccount me not your servant.\n\nLEONTES:\nThis is all:\nDo't and thou hast the one half of my heart;\nDo't not, thou split'st thine own.\n\nCAMILLO:\nI'll do't, my lord.\n\nLEONTES:\nI will seem friendly, as thou hast advised me.\n\nCAMILLO:\nO miserable lady! But, for me,\nWhat case stand I in? I must be the poisoner\nOf good Polixenes; and my ground to do't\nIs the obedience to a master, one\nWho in rebellion with himself will have\nAll that are his so too. To do this deed,\nPromotion follows. If I could find example\nOf thousands that had struck anointed kings\nAnd flourish'd after, I'ld not do't; but since\nNor brass nor stone nor parchment bears not one,\nLet villany itself forswear't. I must\nForsake the court: to do't, or no, is certain\nTo me a break-neck. Happy star, reign now!\nHere comes Bohemia.\n\nPOLIXENES:\nThis is strange: methinks\nMy favour here begins to warp. Not speak?\nGood day, Camillo.\n\nCAMILLO:\nHail, most royal sir!\n\nPOLIXENES:\nWhat is the news i' the court?\n\nCAMILLO:\nNone rare, my lord.\n\nPOLIXENES:\nThe king hath on him such a countenance\nAs he had lost some province and a region\nLoved as he loves himself: even now I met him\nWith customary compliment; when he,\nWafting his eyes to the contrary and falling\nA lip of much contempt, speeds from me and\nSo leaves me to consider what is breeding\nThat changeth thus his manners.\n\nCAMILLO:\nI dare not know, my lord.\n\nPOLIXENES:\nHow! dare not! do not. Do you know, and dare not?\nBe intelligent to me: 'tis thereabouts;\nFor, to yourself, what you do know, you must.\nAnd cannot say, you dare not. Good Camillo,\nYour changed complexions are to me a mirror\nWhich shows me mine changed too; for I must be\nA party in this alteration, finding\nMyself thus alter'd with 't.\n\nCAMILLO:\nThere is a sickness\nWhich puts some of us in distemper, but\nI cannot name the disease; and it is caught\nOf you that yet are well.\n\nPOLIXENES:\nHow! caught of me!\nMake me not sighted like the basilisk:\nI have look'd on thousands, who have sped the better\nBy my regard, but kill'd none so. Camillo,--\nAs you are certainly a gentleman, thereto\nClerk-like experienced, which no less adorns\nOur gentry than our parents' noble names,\nIn whose success we are gentle,--I beseech you,\nIf you know aught which does behove my knowledge\nThereof to be inform'd, imprison't not\nIn ignorant concealment.\n\nCAMILLO:\nI may not answer.\n\nPOLIXENES:\nA sickness caught of me, and yet I well!\nI must be answer'd. Dost thou hear, Camillo,\nI conjure thee, by all the parts of man\nWhich honour does acknowledge, whereof the least\nIs not this suit of mine, that thou declare\nWhat incidency thou dost guess of harm\nIs creeping toward me; how far off, how near;\nWhich way to be prevented, if to be;\nIf not, how best to bear it.\n\nCAMILLO:\nSir, I will tell you;\nSince I am charged in honour and by him\nThat I think honourable: therefore mark my counsel,\nWhich must be even as swiftly follow'd as\nI mean to utter it, or both yourself and me\nCry lost, and so good night!\n\nPOLIXENES:\nOn, good Camillo.\n\nCAMILLO:\nI am appointed him to murder you.\n\nPOLIXENES:\nBy whom, Camillo?\n\nCAMILLO:\nBy the king.\n\nPOLIXENES:\nFor what?\n\nCAMILLO:\nHe thinks, nay, with all confidence he swears,\nAs he had seen't or been an instrument\nTo vice you to't, that you have touch'd his queen\nForbiddenly.\n\nPOLIXENES:\nO, then my best blood turn\nTo an infected jelly and my name\nBe yoked with his that did betray the Best!\nTurn then my freshest reputation to\nA savour that may strike the dullest nostril\nWhere I arrive, and my approach be shunn'd,\nNay, hated too, worse than the great'st infection\nThat e'er was heard or read!\n\nCAMILLO:\nSwear his thought over\nBy each particular star in heaven and\nBy all their influences, you may as well\nForbid the sea for to obey the moon\nAs or by oath remove or counsel shake\nThe fabric of his folly, whose foundation\nIs piled upon his faith and will continue\nThe standing of his body.\n\nPOLIXENES:\nHow should this grow?\n\nCAMILLO:\nI know not: but I am sure 'tis safer to\nAvoid what's grown than question how 'tis born.\nIf therefore you dare trust my honesty,\nThat lies enclosed in this trunk which you\nShall bear along impawn'd, away to-night!\nYour followers I will whisper to the business,\nAnd will by twos and threes at several posterns\nClear them o' the city. For myself, I'll put\nMy fortunes to your service, which are here\nBy this discovery lost. Be not uncertain;\nFor, by the honour of my parents, I\nHave utter'd truth: which if you seek to prove,\nI dare not stand by; nor shall you be safer\nThan one condemn'd by the king's own mouth, thereon\nHis execution sworn.\n\nPOLIXENES:\nI do believe thee:\nI saw his heart in 's face. Give me thy hand:\nBe pilot to me and thy places shall\nStill neighbour mine. My ships are ready and\nMy people did expect my hence departure\nTwo days ago. This jealousy\nIs for a precious creature: as she's rare,\nMust it be great, and as his person's mighty,\nMust it be violent, and as he does conceive\nHe is dishonour'd by a man which ever\nProfess'd to him, why, his revenges must\nIn that be made more bitter. Fear o'ershades me:\nGood expedition be my friend, and comfort\nThe gracious queen, part of his theme, but nothing\nOf his ill-ta'en suspicion! Come, Camillo;\nI will respect thee as a father if\nThou bear'st my life off hence: let us avoid.\n\nCAMILLO:\nIt is in mine authority to command\nThe keys of all the posterns: please your highness\nTo take the urgent hour. Come, sir, away.\n\nHERMIONE:\nTake the boy to you: he so troubles me,\n'Tis past enduring.\n\nFirst Lady:\nCome, my gracious lord,\nShall I be your playfellow?\n\nMAMILLIUS:\nNo, I'll none of you.\n\nFirst Lady:\nWhy, my sweet lord?\n\nMAMILLIUS:\nYou'll kiss me hard and speak to me as if\nI were a baby still. I love you better.\n\nSecond Lady:\nAnd why so, my lord?\n\nMAMILLIUS:\nNot for because\nYour brows are blacker; yet black brows, they say,\nBecome some women best, so that there be not\nToo much hair there, but in a semicircle\nOr a half-moon made with a pen.\n\nSecond Lady:\nWho taught you this?\n\nMAMILLIUS:\nI learnt it out of women's faces. Pray now\nWhat colour are your eyebrows?\n\nFirst Lady:\nBlue, my lord.\n\nMAMILLIUS:\nNay, that's a mock: I have seen a lady's nose\nThat has been blue, but not her eyebrows.\n\nFirst Lady:\nHark ye;\nThe queen your mother rounds apace: we shall\nPresent our services to a fine new prince\nOne of these days; and then you'ld wanton with us,\nIf we would have you.\n\nSecond Lady:\nShe is spread of late\nInto a goodly bulk: good time encounter her!\n\nHERMIONE:\nWhat wisdom stirs amongst you? Come, sir, now\nI am for you again: pray you, sit by us,\nAnd tell 's a tale.\n\nMAMILLIUS:\nMerry or sad shall't be?\n\nHERMIONE:\nAs merry as you will.\n\nMAMILLIUS:\nA sad tale's best for winter: I have one\nOf sprites and goblins.\n\nHERMIONE:\nLet's have that, good sir.\nCome on, sit down: come on, and do your best\nTo fright me with your sprites; you're powerful at it.\n\nMAMILLIUS:\nThere was a man--\n\nHERMIONE:\nNay, come, sit down; then on.\n\nMAMILLIUS:\nDwelt by a churchyard: I will tell it softly;\nYond crickets shall not hear it.\n\nHERMIONE:\nCome on, then,\nAnd give't me in mine ear.\n\nLEONTES:\nWas he met there? his train? Camillo with him?\n\nFirst Lord:\nBehind the tuft of pines I met them; never\nSaw I men scour so on their way: I eyed them\nEven to their ships.\n\nLEONTES:\nHow blest am I\nIn my just censure, in my true opinion!\nAlack, for lesser knowledge! how accursed\nIn being so blest! There may be in the cup\nA spider steep'd, and one may drink, depart,\nAnd yet partake no venom, for his knowledge\nIs not infected: but if one present\nThe abhorr'd ingredient to his eye, make known\nHow he hath drunk, he cracks his gorge, his sides,\nWith violent hefts. I have drunk,\nand seen the spider.\nCamillo was his help in this, his pander:\nThere is a plot against my life, my crown;\nAll's true that is mistrusted: that false villain\nWhom I employ'd was pre-employ'd by him:\nHe has discover'd my design, and I\nRemain a pinch'd thing; yea, a very trick\nFor them to play at will. How came the posterns\nSo easily open?\n\nFirst Lord:\nBy his great authority;\nWhich often hath no less prevail'd than so\nOn your command.\n\nLEONTES:\nI know't too well.\nGive me the boy: I am glad you did not nurse him:\nThough he does bear some signs of me, yet you\nHave too much blood in him.\n\nHERMIONE:\nWhat is this? sport?\n\nLEONTES:\nBear the boy hence; he shall not come about her;\nAway with him! and let her sport herself\nWith that she's big with; for 'tis Polixenes\nHas made thee swell thus.\n\nHERMIONE:\nBut I'ld say he had not,\nAnd I'll be sworn you would believe my saying,\nHowe'er you lean to the nayward.\n\nLEONTES:\nYou, my lords,\nLook on her, mark her well; be but about\nTo say 'she is a goodly lady,' and\nThe justice of your bearts will thereto add\n'Tis pity she's not honest, honourable:'\nPraise her but for this her without-door form,\nWhich on my faith deserves high speech, and straight\nThe shrug, the hum or ha, these petty brands\nThat calumny doth use--O, I am out--\nThat mercy does, for calumny will sear\nVirtue itself: these shrugs, these hums and ha's,\nWhen you have said 'she's goodly,' come between\nEre you can say 'she's honest:' but be 't known,\nFrom him that has most cause to grieve it should be,\nShe's an adulteress.\n\nHERMIONE:\nShould a villain say so,\nThe most replenish'd villain in the world,\nHe were as much more villain: you, my lord,\nDo but mistake.\n\nLEONTES:\nYou have mistook, my lady,\nPolixenes for Leontes: O thou thing!\nWhich I'll not call a creature of thy place,\nLest barbarism, making me the precedent,\nShould a like language use to all degrees\nAnd mannerly distinguishment leave out\nBetwixt the prince and beggar: I have said\nShe's an adulteress; I have said with whom:\nMore, she's a traitor and Camillo is\nA federary with her, and one that knows\nWhat she should shame to know herself\nBut with her most vile principal, that she's\nA bed-swerver, even as bad as those\nThat vulgars give bold'st titles, ay, and privy\nTo this their late escape.\n\nHERMIONE:\nNo, by my life.\nPrivy to none of this. How will this grieve you,\nWhen you shall come to clearer knowledge, that\nYou thus have publish'd me! Gentle my lord,\nYou scarce can right me throughly then to say\nYou did mistake.\n\nLEONTES:\nNo; if I mistake\nIn those foundations which I build upon,\nThe centre is not big enough to bear\nA school-boy's top. Away with her! to prison!\nHe who shall speak for her is afar off guilty\nBut that he speaks.\n\nHERMIONE:\nThere's some ill planet reigns:\nI must be patient till the heavens look\nWith an aspect more favourable. Good my lords,\nI am not prone to weeping, as our sex\nCommonly are; the want of which vain dew\nPerchance shall dry your pities: but I have\nThat honourable grief lodged here which burns\nWorse than tears drown: beseech you all, my lords,\nWith thoughts so qualified as your charities\nShall best instruct you, measure me; and so\nThe king's will be perform'd!\n\nLEONTES:\nShall I be heard?\n\nHERMIONE:\nWho is't that goes with me? Beseech your highness,\nMy women may be with me; for you see\nMy plight requires it. Do not weep, good fools;\nThere is no cause: when you shall know your mistress\nHas deserved prison, then abound in tears\nAs I come out: this action I now go on\nIs for my better grace. Adieu, my lord:\nI never wish'd to see you sorry; now\nI trust I shall. My women, come; you have leave.\n\nLEONTES:\nGo, do our bidding; hence!\n\nFirst Lord:\nBeseech your highness, call the queen again.\n\nANTIGONUS:\nBe certain what you do, sir, lest your justice\nProve violence; in the which three great ones suffer,\nYourself, your queen, your son.\n\nFirst Lord:\nFor her, my lord,\nI dare my life lay down and will do't, sir,\nPlease you to accept it, that the queen is spotless\nI' the eyes of heaven and to you; I mean,\nIn this which you accuse her.\n\nANTIGONUS:\nIf it prove\nShe's otherwise, I'll keep my stables where\nI lodge my wife; I'll go in couples with her;\nThan when I feel and see her no farther trust her;\nFor every inch of woman in the world,\nAy, every dram of woman's flesh is false, If she be.\n\nLEONTES:\nHold your peaces.\n\nFirst Lord:\nGood my lord,--\n\nANTIGONUS:\nIt is for you we speak, not for ourselves:\nYou are abused and by some putter-on\nThat will be damn'd for't; would I knew the villain,\nI would land-damn him. Be she honour-flaw'd,\nI have three daughters; the eldest is eleven\nThe second and the third, nine, and some five;\nIf this prove true, they'll pay for't:\nby mine honour,\nI'll geld 'em all; fourteen they shall not see,\nTo bring false generations: they are co-heirs;\nAnd I had rather glib myself than they\nShould not produce fair issue.\n\nLEONTES:\nCease; no more.\nYou smell this business with a sense as cold\nAs is a dead man's nose: but I do see't and feel't\nAs you feel doing thus; and see withal\nThe instruments that feel.\n\nANTIGONUS:\nIf it be so,\nWe need no grave to bury honesty:\nThere's not a grain of it the face to sweeten\nOf the whole dungy earth.\n\nLEONTES:\nWhat! lack I credit?\n\nFirst Lord:\nI had rather you did lack than I, my lord,\nUpon this ground; and more it would content me\nTo have her honour true than your suspicion,\nBe blamed for't how you might.\n\nLEONTES:\nWhy, what need we\nCommune with you of this, but rather follow\nOur forceful instigation? Our prerogative\nCalls not your counsels, but our natural goodness\nImparts this; which if you, or stupefied\nOr seeming so in skill, cannot or will not\nRelish a truth like us, inform yourselves\nWe need no more of your advice: the matter,\nThe loss, the gain, the ordering on't, is all\nProperly ours.\n\nANTIGONUS:\nAnd I wish, my liege,\nYou had only in your silent judgment tried it,\nWithout more overture.\n\nLEONTES:\nHow could that be?\nEither thou art most ignorant by age,\nOr thou wert born a fool. Camillo's flight,\nAdded to their familiarity,\nWhich was as gross as ever touch'd conjecture,\nThat lack'd sight only, nought for approbation\nBut only seeing, all other circumstances\nMade up to the deed, doth push on this proceeding:\nYet, for a greater confirmation,\nFor in an act of this importance 'twere\nMost piteous to be wild, I have dispatch'd in post\nTo sacred Delphos, to Apollo's temple,\nCleomenes and Dion, whom you know\nOf stuff'd sufficiency: now from the oracle\nThey will bring all; whose spiritual counsel had,\nShall stop or spur me. Have I done well?\n\nFirst Lord:\nWell done, my lord.\n\nLEONTES:\nThough I am satisfied and need no more\nThan what I know, yet shall the oracle\nGive rest to the minds of others, such as he\nWhose ignorant credulity will not\nCome up to the truth. So have we thought it good\nFrom our free person she should be confined,\nLest that the treachery of the two fled hence\nBe left her to perform. Come, follow us;\nWe are to speak in public; for this business\nWill raise us all.\n\nANTIGONUS:\n\nPAULINA:\nThe keeper of the prison, call to him;\nlet him have knowledge who I am.\nGood lady,\nNo court in Europe is too good for thee;\nWhat dost thou then in prison?\nNow, good sir,\nYou know me, do you not?\n\nGaoler:\nFor a worthy lady\nAnd one whom much I honour.\n\nPAULINA:\nPray you then,\nConduct me to the queen.\n\nGaoler:\nI may not, madam:\nTo the contrary I have express commandment.\n\nPAULINA:\nHere's ado,\nTo lock up honesty and honour from\nThe access of gentle visitors!\nIs't lawful, pray you,\nTo see her women? any of them? Emilia?\n\nGaoler:\nSo please you, madam,\nTo put apart these your attendants, I\nShall bring Emilia forth.\n\nPAULINA:\nI pray now, call her.\nWithdraw yourselves.\n\nGaoler:\nAnd, madam,\nI must be present at your conference.\n\nPAULINA:\nWell, be't so, prithee.\nHere's such ado to make no stain a stain\nAs passes colouring.\nDear gentlewoman,\nHow fares our gracious lady?\n\nEMILIA:\nAs well as one so great and so forlorn\nMay hold together: on her frights and griefs,\nWhich never tender lady hath born greater,\nShe is something before her time deliver'd.\n\nPAULINA:\nA boy?\n\nEMILIA:\nA daughter, and a goodly babe,\nLusty and like to live: the queen receives\nMuch comfort in't; says 'My poor prisoner,\nI am innocent as you.'\n\nPAULINA:\nI dare be sworn\nThese dangerous unsafe lunes i' the king,\nbeshrew them!\nHe must be told on't, and he shall: the office\nBecomes a woman best; I'll take't upon me:\nIf I prove honey-mouth'd let my tongue blister\nAnd never to my red-look'd anger be\nThe trumpet any more. Pray you, Emilia,\nCommend my best obedience to the queen:\nIf she dares trust me with her little babe,\nI'll show't the king and undertake to be\nHer advocate to the loud'st. We do not know\nHow he may soften at the sight o' the child:\nThe silence often of pure innocence\nPersuades when speaking fails.\n\nEMILIA:\nMost worthy madam,\nYour honour and your goodness is so evident\nThat your free undertaking cannot miss\nA thriving issue: there is no lady living\nSo meet for this great errand. Please your ladyship\nTo visit the next room, I'll presently\nAcquaint the queen of your most noble offer;\nWho but to-day hammer'd of this design,\nBut durst not tempt a minister of honour,\nLest she should be denied.\n\nPAULINA:\nTell her, Emilia.\nI'll use that tongue I have: if wit flow from't\nAs boldness from my bosom, let 't not be doubted\nI shall do good.\n\nEMILIA:\nNow be you blest for it!\nI'll to the queen: please you,\ncome something nearer.\n\nGaoler:\nMadam, if't please the queen to send the babe,\nI know not what I shall incur to pass it,\nHaving no warrant.\n\nPAULINA:\nYou need not fear it, sir:\nThis child was prisoner to the womb and is\nBy law and process of great nature thence\nFreed and enfranchised, not a party to\nThe anger of the king nor guilty of,\nIf any be, the trespass of the queen.\n\nGaoler:\nI do believe it.\n\nPAULINA:\nDo not you fear: upon mine honour,\nI will stand betwixt you and danger.\n\nLEONTES:\nNor night nor day no rest: it is but weakness\nTo bear the matter thus; mere weakness. If\nThe cause were not in being,--part o' the cause,\nShe the adulteress; for the harlot king\nIs quite beyond mine arm, out of the blank\nAnd level of my brain, plot-proof; but she\nI can hook to me: say that she were gone,\nGiven to the fire, a moiety of my rest\nMight come to me again. Who's there?\n\nFirst Servant:\nMy lord?\n\nLEONTES:\nHow does the boy?\n\nFirst Servant:\nHe took good rest to-night;\n'Tis hoped his sickness is discharged.\n\nLEONTES:\nTo see his nobleness!\nConceiving the dishonour of his mother,\nHe straight declined, droop'd, took it deeply,\nFasten'd and fix'd the shame on't in himself,\nThrew off his spirit, his appetite, his sleep,\nAnd downright languish'd. Leave me solely: go,\nSee how he fares.\nFie, fie! no thought of him:\nThe thought of my revenges that way\nRecoil upon me: in himself too mighty,\nAnd in his parties, his alliance; let him be\nUntil a time may serve: for present vengeance,\nTake it on her. Camillo and Polixenes\nLaugh at me, make their pastime at my sorrow:\nThey should not laugh if I could reach them, nor\nShall she within my power.\n\nFirst Lord:\nYou must not enter.\n\nPAULINA:\nNay, rather, good my lords, be second to me:\nFear you his tyrannous passion more, alas,\nThan the queen's life? a gracious innocent soul,\nMore free than he is jealous.\n\nANTIGONUS:\nThat's enough.\n\nSecond Servant:\nMadam, he hath not slept tonight; commanded\nNone should come at him.\n\nPAULINA:\nNot so hot, good sir:\nI come to bring him sleep. 'Tis such as you,\nThat creep like shadows by him and do sigh\nAt each his needless heavings, such as you\nNourish the cause of his awaking: I\nDo come with words as medicinal as true,\nHonest as either, to purge him of that humour\nThat presses him from sleep.\n\nLEONTES:\nWhat noise there, ho?\n\nPAULINA:\nNo noise, my lord; but needful conference\nAbout some gossips for your highness.\n\nLEONTES:\nHow!\nAway with that audacious lady! Antigonus,\nI charged thee that she should not come about me:\nI knew she would.\n\nANTIGONUS:\nI told her so, my lord,\nOn your displeasure's peril and on mine,\nShe should not visit you.\n\nLEONTES:\nWhat, canst not rule her?\n\nPAULINA:\nFrom all dishonesty he can: in this,\nUnless he take the course that you have done,\nCommit me for committing honour, trust it,\nHe shall not rule me.\n\nANTIGONUS:\nLa you now, you hear:\nWhen she will take the rein I let her run;\nBut she'll not stumble.\n\nPAULINA:\nGood my liege, I come;\nAnd, I beseech you, hear me, who profess\nMyself your loyal servant, your physician,\nYour most obedient counsellor, yet that dare\nLess appear so in comforting your evils,\nThan such as most seem yours: I say, I come\nFrom your good queen.\n\nLEONTES:\nGood queen!\n\nPAULINA:\nGood queen, my lord,\nGood queen; I say good queen;\nAnd would by combat make her good, so were I\nA man, the worst about you.\n\nLEONTES:\nForce her hence.\n\nPAULINA:\nLet him that makes but trifles of his eyes\nFirst hand me: on mine own accord I'll off;\nBut first I'll do my errand. The good queen,\nFor she is good, hath brought you forth a daughter;\nHere 'tis; commends it to your blessing.\n\nLEONTES:\nOut!\nA mankind witch! Hence with her, out o' door:\nA most intelligencing bawd!\n\nPAULINA:\nNot so:\nI am as ignorant in that as you\nIn so entitling me, and no less honest\nThan you are mad; which is enough, I'll warrant,\nAs this world goes, to pass for honest.\n\nLEONTES:\nTraitors!\nWill you not push her out? Give her the bastard.\nThou dotard! thou art woman-tired, unroosted\nBy thy dame Partlet here. Take up the bastard;\nTake't up, I say; give't to thy crone.\n\nPAULINA:\nFor ever\nUnvenerable be thy hands, if thou\nTakest up the princess by that forced baseness\nWhich he has put upon't!\n\nLEONTES:\nHe dreads his wife.\n\nPAULINA:\nSo I would you did; then 'twere past all doubt\nYou'ld call your children yours.\n\nLEONTES:\nA nest of traitors!\n\nANTIGONUS:\nI am none, by this good light.\n\nPAULINA:\nNor I, nor any\nBut one that's here, and that's himself, for he\nThe sacred honour of himself, his queen's,\nHis hopeful son's, his babe's, betrays to slander,\nWhose sting is sharper than the sword's;\nand will not--\nFor, as the case now stands, it is a curse\nHe cannot be compell'd to't--once remove\nThe root of his opinion, which is rotten\nAs ever oak or stone was sound.\n\nLEONTES:\nA callat\nOf boundless tongue, who late hath beat her husband\nAnd now baits me! This brat is none of mine;\nIt is the issue of Polixenes:\nHence with it, and together with the dam\nCommit them to the fire!\n\nPAULINA:\nIt is yours;\nAnd, might we lay the old proverb to your charge,\nSo like you, 'tis the worse. Behold, my lords,\nAlthough the print be little, the whole matter\nAnd copy of the father, eye, nose, lip,\nThe trick of's frown, his forehead, nay, the valley,\nThe pretty dimples of his chin and cheek,\nHis smiles,\nThe very mould and frame of hand, nail, finger:\nAnd thou, good goddess Nature, which hast made it\nSo like to him that got it, if thou hast\nThe ordering of the mind too, 'mongst all colours\nNo yellow in't, lest she suspect, as he does,\nHer children not her husband's!\n\nLEONTES:\nA gross hag\nAnd, lozel, thou art worthy to be hang'd,\nThat wilt not stay her tongue.\n\nANTIGONUS:\nHang all the husbands\nThat cannot do that feat, you'll leave yourself\nHardly one subject.\n\nLEONTES:\nOnce more, take her hence.\n\nPAULINA:\nA most unworthy and unnatural lord\nCan do no more.\n\nLEONTES:\nI'll ha' thee burnt.\n\nPAULINA:\nI care not:\nIt is an heretic that makes the fire,\nNot she which burns in't. I'll not call you tyrant;\nBut this most cruel usage of your queen,\nNot able to produce more accusation\nThan your own weak-hinged fancy, something savours\nOf tyranny and will ignoble make you,\nYea, scandalous to the world.\n\nLEONTES:\nOn your allegiance,\nOut of the chamber with her! Were I a tyrant,\nWhere were her life? she durst not call me so,\nIf she did know me one. Away with her!\n\nPAULINA:\nI pray you, do not push me; I'll be gone.\nLook to your babe, my lord; 'tis yours:\nJove send her\nA better guiding spirit! What needs these hands?\nYou, that are thus so tender o'er his follies,\nWill never do him good, not one of you.\nSo, so: farewell; we are gone.\n\nLEONTES:\nThou, traitor, hast set on thy wife to this.\nMy child? away with't! Even thou, that hast\nA heart so tender o'er it, take it hence\nAnd see it instantly consumed with fire;\nEven thou and none but thou. Take it up straight:\nWithin this hour bring me word 'tis done,\nAnd by good testimony, or I'll seize thy life,\nWith what thou else call'st thine. If thou refuse\nAnd wilt encounter with my wrath, say so;\nThe bastard brains with these my proper hands\nShall I dash out. Go, take it to the fire;\nFor thou set'st on thy wife.\n\nANTIGONUS:\nI did not, sir:\nThese lords, my noble fellows, if they please,\nCan clear me in't.\n\nLords:\nWe can: my royal liege,\nHe is not guilty of her coming hither.\n\nLEONTES:\nYou're liars all.\n\nFirst Lord:\nBeseech your highness, give us better credit:\nWe have always truly served you, and beseech you\nSo to esteem of us, and on our knees we beg,\nAs recompense of our dear services\nPast and to come, that you do change this purpose,\nWhich being so horrible, so bloody, must\nLead on to some foul issue: we all kneel.\n\nLEONTES:\nI am a feather for each wind that blows:\nShall I live on to see this bastard kneel\nAnd call me father? better burn it now\nThan curse it then. But be it; let it live.\nIt shall not neither. You, sir, come you hither;\nYou that have been so tenderly officious\nWith Lady Margery, your midwife there,\nTo save this bastard's life,--for 'tis a bastard,\nSo sure as this beard's grey,\n--what will you adventure\nTo save this brat's life?\n\nANTIGONUS:\nAny thing, my lord,\nThat my ability may undergo\nAnd nobleness impose: at least thus much:\nI'll pawn the little blood which I have left\nTo save the innocent: any thing possible.\n\nLEONTES:\nIt shall be possible. Swear by this sword\nThou wilt perform my bidding.\n\nANTIGONUS:\nI will, my lord.\n\nLEONTES:\nMark and perform it, see'st thou! for the fail\nOf any point in't shall not only be\nDeath to thyself but to thy lewd-tongued wife,\nWhom for this time we pardon. We enjoin thee,\nAs thou art liege-man to us, that thou carry\nThis female bastard hence and that thou bear it\nTo some remote and desert place quite out\nOf our dominions, and that there thou leave it,\nWithout more mercy, to its own protection\nAnd favour of the climate. As by strange fortune\nIt came to us, I do in justice charge thee,\nOn thy soul's peril and thy body's torture,\nThat thou commend it strangely to some place\nWhere chance may nurse or end it. Take it up.\n\nANTIGONUS:\nI swear to do this, though a present death\nHad been more merciful. Come on, poor babe:\nSome powerful spirit instruct the kites and ravens\nTo be thy nurses! Wolves and bears, they say\nCasting their savageness aside have done\nLike offices of pity. Sir, be prosperous\nIn more than this deed does require! And blessing\nAgainst this cruelty fight on thy side,\nPoor thing, condemn'd to loss!\n\nLEONTES:\nNo, I'll not rear\nAnother's issue.\n\nServant:\nPlease your highness, posts\nFrom those you sent to the oracle are come\nAn hour since: Cleomenes and Dion,\nBeing well arrived from Delphos, are both landed,\nHasting to the court.\n\nFirst Lord:\nSo please you, sir, their speed\nHath been beyond account.\n\nLEONTES:\nTwenty-three days\nThey have been absent: 'tis good speed; foretells\nThe great Apollo suddenly will have\nThe truth of this appear. Prepare you, lords;\nSummon a session, that we may arraign\nOur most disloyal lady, for, as she hath\nBeen publicly accused, so shall she have\nA just and open trial. While she lives\nMy heart will be a burthen to me. Leave me,\nAnd think upon my bidding.\n\nCLEOMENES:\nThe climate's delicate, the air most sweet,\nFertile the isle, the temple much surpassing\nThe common praise it bears.\n\nDION:\nI shall report,\nFor most it caught me, the celestial habits,\nMethinks I so should term them, and the reverence\nOf the grave wearers. O, the sacrifice!\nHow ceremonious, solemn and unearthly\nIt was i' the offering!\n\nCLEOMENES:\nBut of all, the burst\nAnd the ear-deafening voice o' the oracle,\nKin to Jove's thunder, so surprised my sense.\nThat I was nothing.\n\nDION:\nIf the event o' the journey\nProve as successful to the queen,--O be't so!--\nAs it hath been to us rare, pleasant, speedy,\nThe time is worth the use on't.\n\nCLEOMENES:\nGreat Apollo\nTurn all to the best! These proclamations,\nSo forcing faults upon Hermione,\nI little like.\n\nDION:\nThe violent carriage of it\nWill clear or end the business: when the oracle,\nThus by Apollo's great divine seal'd up,\nShall the contents discover, something rare\nEven then will rush to knowledge. Go: fresh horses!\nAnd gracious be the issue!\n\nLEONTES:\nThis sessions, to our great grief we pronounce,\nEven pushes 'gainst our heart: the party tried\nThe daughter of a king, our wife, and one\nOf us too much beloved. Let us be clear'd\nOf being tyrannous, since we so openly\nProceed in justice, which shall have due course,\nEven to the guilt or the purgation.\nProduce the prisoner.\n\nOfficer:\nIt is his highness' pleasure that the queen\nAppear in person here in court. Silence!\n\nLEONTES:\nRead the indictment.\n\nOfficer:\n\nHERMIONE:\nSince what I am to say must be but that\nWhich contradicts my accusation and\nThe testimony on my part no other\nBut what comes from myself, it shall scarce boot me\nTo say 'not guilty:' mine integrity\nBeing counted falsehood, shall, as I express it,\nBe so received. But thus: if powers divine\nBehold our human actions, as they do,\nI doubt not then but innocence shall make\nFalse accusation blush and tyranny\nTremble at patience. You, my lord, best know,\nWho least will seem to do so, my past life\nHath been as continent, as chaste, as true,\nAs I am now unhappy; which is more\nThan history can pattern, though devised\nAnd play'd to take spectators. For behold me\nA fellow of the royal bed, which owe\nA moiety of the throne a great king's daughter,\nThe mother to a hopeful prince, here standing\nTo prate and talk for life and honour 'fore\nWho please to come and hear. For life, I prize it\nAs I weigh grief, which I would spare: for honour,\n'Tis a derivative from me to mine,\nAnd only that I stand for. I appeal\nTo your own conscience, sir, before Polixenes\nCame to your court, how I was in your grace,\nHow merited to be so; since he came,\nWith what encounter so uncurrent I\nHave strain'd to appear thus: if one jot beyond\nThe bound of honour, or in act or will\nThat way inclining, harden'd be the hearts\nOf all that hear me, and my near'st of kin\nCry fie upon my grave!\n\nLEONTES:\nI ne'er heard yet\nThat any of these bolder vices wanted\nLess impudence to gainsay what they did\nThan to perform it first.\n\nHERMIONE:\nThat's true enough;\nThrough 'tis a saying, sir, not due to me.\n\nLEONTES:\nYou will not own it.\n\nHERMIONE:\nMore than mistress of\nWhich comes to me in name of fault, I must not\nAt all acknowledge. For Polixenes,\nWith whom I am accused, I do confess\nI loved him as in honour he required,\nWith such a kind of love as might become\nA lady like me, with a love even such,\nSo and no other, as yourself commanded:\nWhich not to have done I think had been in me\nBoth disobedience and ingratitude\nTo you and toward your friend, whose love had spoke,\nEven since it could speak, from an infant, freely\nThat it was yours. Now, for conspiracy,\nI know not how it tastes; though it be dish'd\nFor me to try how: all I know of it\nIs that Camillo was an honest man;\nAnd why he left your court, the gods themselves,\nWotting no more than I, are ignorant.\n\nLEONTES:\nYou knew of his departure, as you know\nWhat you have underta'en to do in's absence.\n\nHERMIONE:\nSir,\nYou speak a language that I understand not:\nMy life stands in the level of your dreams,\nWhich I'll lay down.\n\nLEONTES:\nYour actions are my dreams;\nYou had a bastard by Polixenes,\nAnd I but dream'd it. As you were past all shame,--\nThose of your fact are so--so past all truth:\nWhich to deny concerns more than avails; for as\nThy brat hath been cast out, like to itself,\nNo father owning it,--which is, indeed,\nMore criminal in thee than it,--so thou\nShalt feel our justice, in whose easiest passage\nLook for no less than death.\n\nHERMIONE:\nSir, spare your threats:\nThe bug which you would fright me with I seek.\nTo me can life be no commodity:\nThe crown and comfort of my life, your favour,\nI do give lost; for I do feel it gone,\nBut know not how it went. My second joy\nAnd first-fruits of my body, from his presence\nI am barr'd, like one infectious. My third comfort\nStarr'd most unluckily, is from my breast,\nThe innocent milk in its most innocent mouth,\nHaled out to murder: myself on every post\nProclaimed a strumpet: with immodest hatred\nThe child-bed privilege denied, which 'longs\nTo women of all fashion; lastly, hurried\nHere to this place, i' the open air, before\nI have got strength of limit. Now, my liege,\nTell me what blessings I have here alive,\nThat I should fear to die? Therefore proceed.\nBut yet hear this: mistake me not; no life,\nI prize it not a straw, but for mine honour,\nWhich I would free, if I shall be condemn'd\nUpon surmises, all proofs sleeping else\nBut what your jealousies awake, I tell you\n'Tis rigor and not law. Your honours all,\nI do refer me to the oracle:\nApollo be my judge!\n\nFirst Lord:\nThis your request\nIs altogether just: therefore bring forth,\nAnd in Apollos name, his oracle.\n\nHERMIONE:\nThe Emperor of Russia was my father:\nO that he were alive, and here beholding\nHis daughter's trial! that he did but see\nThe flatness of my misery, yet with eyes\nOf pity, not revenge!\n\nOfficer:\nYou here shall swear upon this sword of justice,\nThat you, Cleomenes and Dion, have\nBeen both at Delphos, and from thence have brought\nThe seal'd-up oracle, by the hand deliver'd\nOf great Apollo's priest; and that, since then,\nYou have not dared to break the holy seal\nNor read the secrets in't.\n\nCLEOMENES:\nAll this we swear.\n\nLEONTES:\nBreak up the seals and read.\n\nOfficer:\n\nLords:\nNow blessed be the great Apollo!\n\nHERMIONE:\nPraised!\n\nLEONTES:\nHast thou read truth?\n\nOfficer:\nAy, my lord; even so\nAs it is here set down.\n\nLEONTES:\nThere is no truth at all i' the oracle:\nThe sessions shall proceed: this is mere falsehood.\n\nServant:\nMy lord the king, the king!\n\nLEONTES:\nWhat is the business?\n\nServant:\nO sir, I shall be hated to report it!\nThe prince your son, with mere conceit and fear\nOf the queen's speed, is gone.\n\nLEONTES:\nHow! gone!\n\nServant:\nIs dead.\n\nLEONTES:\nApollo's angry; and the heavens themselves\nDo strike at my injustice.\nHow now there!\n\nPAULINA:\nThis news is mortal to the queen: look down\nAnd see what death is doing.\n\nLEONTES:\nTake her hence:\nHer heart is but o'ercharged; she will recover:\nI have too much believed mine own suspicion:\nBeseech you, tenderly apply to her\nSome remedies for life.\nApollo, pardon\nMy great profaneness 'gainst thine oracle!\nI'll reconcile me to Polixenes,\nNew woo my queen, recall the good Camillo,\nWhom I proclaim a man of truth, of mercy;\nFor, being transported by my jealousies\nTo bloody thoughts and to revenge, I chose\nCamillo for the minister to poison\nMy friend Polixenes: which had been done,\nBut that the good mind of Camillo tardied\nMy swift command, though I with death and with\nReward did threaten and encourage him,\nNot doing 't and being done: he, most humane\nAnd fill'd with honour, to my kingly guest\nUnclasp'd my practise, quit his fortunes here,\nWhich you knew great, and to the hazard\nOf all encertainties himself commended,\nNo richer than his honour: how he glisters\nThorough my rust! and how his pity\nDoes my deeds make the blacker!\n\nPAULINA:\nWoe the while!\nO, cut my lace, lest my heart, cracking it,\nBreak too.\n\nFirst Lord:\nWhat fit is this, good lady?\n\nPAULINA:\nWhat studied torments, tyrant, hast for me?\nWhat wheels? racks? fires? what flaying? boiling?\nIn leads or oils? what old or newer torture\nMust I receive, whose every word deserves\nTo taste of thy most worst? Thy tyranny\nTogether working with thy jealousies,\nFancies too weak for boys, too green and idle\nFor girls of nine, O, think what they have done\nAnd then run mad indeed, stark mad! for all\nThy by-gone fooleries were but spices of it.\nThat thou betray'dst Polixenes,'twas nothing;\nThat did but show thee, of a fool, inconstant\nAnd damnable ingrateful: nor was't much,\nThou wouldst have poison'd good Camillo's honour,\nTo have him kill a king: poor trespasses,\nMore monstrous standing by: whereof I reckon\nThe casting forth to crows thy baby-daughter\nTo be or none or little; though a devil\nWould have shed water out of fire ere done't:\nNor is't directly laid to thee, the death\nOf the young prince, whose honourable thoughts,\nThoughts high for one so tender, cleft the heart\nThat could conceive a gross and foolish sire\nBlemish'd his gracious dam: this is not, no,\nLaid to thy answer: but the last,--O lords,\nWhen I have said, cry 'woe!' the queen, the queen,\nThe sweet'st, dear'st creature's dead,\nand vengeance for't\nNot dropp'd down yet.\n\nFirst Lord:\nThe higher powers forbid!\n\nPAULINA:\nI say she's dead; I'll swear't. If word nor oath\nPrevail not, go and see: if you can bring\nTincture or lustre in her lip, her eye,\nHeat outwardly or breath within, I'll serve you\nAs I would do the gods. But, O thou tyrant!\nDo not repent these things, for they are heavier\nThan all thy woes can stir; therefore betake thee\nTo nothing but despair. A thousand knees\nTen thousand years together, naked, fasting,\nUpon a barren mountain and still winter\nIn storm perpetual, could not move the gods\nTo look that way thou wert.\n\nLEONTES:\nGo on, go on\nThou canst not speak too much; I have deserved\nAll tongues to talk their bitterest.\n\nFirst Lord:\nSay no more:\nHowe'er the business goes, you have made fault\nI' the boldness of your speech.\n\nPAULINA:\nI am sorry for't:\nAll faults I make, when I shall come to know them,\nI do repent. Alas! I have show'd too much\nThe rashness of a woman: he is touch'd\nTo the noble heart. What's gone and what's past help\nShould be past grief: do not receive affliction\nAt my petition; I beseech you, rather\nLet me be punish'd, that have minded you\nOf what you should forget. Now, good my liege\nSir, royal sir, forgive a foolish woman:\nThe love I bore your queen--lo, fool again!--\nI'll speak of her no more, nor of your children;\nI'll not remember you of my own lord,\nWho is lost too: take your patience to you,\nAnd I'll say nothing.\n\nLEONTES:\nThou didst speak but well\nWhen most the truth; which I receive much better\nThan to be pitied of thee. Prithee, bring me\nTo the dead bodies of my queen and son:\nOne grave shall be for both: upon them shall\nThe causes of their death appear, unto\nOur shame perpetual. Once a day I'll visit\nThe chapel where they lie, and tears shed there\nShall be my recreation: so long as nature\nWill bear up with this exercise, so long\nI daily vow to use it. Come and lead me\nUnto these sorrows.\n\nANTIGONUS:\nThou art perfect then, our ship hath touch'd upon\nThe deserts of Bohemia?\n\nMariner:\nAy, my lord: and fear\nWe have landed in ill time: the skies look grimly\nAnd threaten present blusters. In my conscience,\nThe heavens with that we have in hand are angry\nAnd frown upon 's.\n\nANTIGONUS:\nTheir sacred wills be done! Go, get aboard;\nLook to thy bark: I'll not be long before\nI call upon thee.\n\nMariner:\nMake your best haste, and go not\nToo far i' the land: 'tis like to be loud weather;\nBesides, this place is famous for the creatures\nOf prey that keep upon't.\n\nANTIGONUS:\nGo thou away:\nI'll follow instantly.\n\nMariner:\nI am glad at heart\nTo be so rid o' the business.\n\nANTIGONUS:\nCome, poor babe:\nI have heard, but not believed,\nthe spirits o' the dead\nMay walk again: if such thing be, thy mother\nAppear'd to me last night, for ne'er was dream\nSo like a waking. To me comes a creature,\nSometimes her head on one side, some another;\nI never saw a vessel of like sorrow,\nSo fill'd and so becoming: in pure white robes,\nLike very sanctity, she did approach\nMy cabin where I lay; thrice bow'd before me,\nAnd gasping to begin some speech, her eyes\nBecame two spouts: the fury spent, anon\nDid this break-from her: 'Good Antigonus,\nSince fate, against thy better disposition,\nHath made thy person for the thrower-out\nOf my poor babe, according to thine oath,\nPlaces remote enough are in Bohemia,\nThere weep and leave it crying; and, for the babe\nIs counted lost for ever, Perdita,\nI prithee, call't. For this ungentle business\nPut on thee by my lord, thou ne'er shalt see\nThy wife Paulina more.' And so, with shrieks\nShe melted into air. Affrighted much,\nI did in time collect myself and thought\nThis was so and no slumber. Dreams are toys:\nYet for this once, yea, superstitiously,\nI will be squared by this. I do believe\nHermione hath suffer'd death, and that\nApollo would, this being indeed the issue\nOf King Polixenes, it should here be laid,\nEither for life or death, upon the earth\nOf its right father. Blossom, speed thee well!\nThere lie, and there thy character: there these;\nWhich may, if fortune please, both breed thee, pretty,\nAnd still rest thine. The storm begins; poor wretch,\nThat for thy mother's fault art thus exposed\nTo loss and what may follow! Weep I cannot,\nBut my heart bleeds; and most accursed am I\nTo be by oath enjoin'd to this. Farewell!\nThe day frowns more and more: thou'rt like to have\nA lullaby too rough: I never saw\nThe heavens so dim by day. A savage clamour!\nWell may I get aboard! This is the chase:\nI am gone for ever.\n\nShepherd:\nI would there were no age between sixteen and\nthree-and-twenty, or that youth would sleep out the\nrest; for there is nothing in the between but\ngetting wenches with child, wronging the ancientry,\nstealing, fighting--Hark you now! Would any but\nthese boiled brains of nineteen and two-and-twenty\nhunt this weather? They have scared away two of my\nbest sheep, which I fear the wolf will sooner find\nthan the master: if any where I have them, 'tis by\nthe seaside, browsing of ivy. Good luck, an't be thy\nwill what have we here! Mercy on 's, a barne a very\npretty barne! A boy or a child, I wonder? A\npretty one; a very pretty one: sure, some 'scape:\nthough I am not bookish, yet I can read\nwaiting-gentlewoman in the 'scape. This has been\nsome stair-work, some trunk-work, some\nbehind-door-work: they were warmer that got this\nthan the poor thing is here. I'll take it up for\npity: yet I'll tarry till my son come; he hallooed\nbut even now. Whoa, ho, hoa!\n\nClown:\nHilloa, loa!\n\nShepherd:\nWhat, art so near? If thou'lt see a thing to talk\non when thou art dead and rotten, come hither. What\nailest thou, man?\n\nClown:\nI have seen two such sights, by sea and by land!\nbut I am not to say it is a sea, for it is now the\nsky: betwixt the firmament and it you cannot thrust\na bodkin's point.\n\nShepherd:\nWhy, boy, how is it?\n\nClown:\nI would you did but see how it chafes, how it rages,\nhow it takes up the shore! but that's not the\npoint. O, the most piteous cry of the poor souls!\nsometimes to see 'em, and not to see 'em; now the\nship boring the moon with her main-mast, and anon\nswallowed with yest and froth, as you'ld thrust a\ncork into a hogshead. And then for the\nland-service, to see how the bear tore out his\nshoulder-bone; how he cried to me for help and said\nhis name was Antigonus, a nobleman. But to make an\nend of the ship, to see how the sea flap-dragoned\nit: but, first, how the poor souls roared, and the\nsea mocked them; and how the poor gentleman roared\nand the bear mocked him, both roaring louder than\nthe sea or weather.\n\nShepherd:\nName of mercy, when was this, boy?\n\nClown:\nNow, now: I have not winked since I saw these\nsights: the men are not yet cold under water, nor\nthe bear half dined on the gentleman: he's at it\nnow.\n\nShepherd:\nWould I had been by, to have helped the old man!\n\nClown:\nI would you had been by the ship side, to have\nhelped her: there your charity would have lacked footing.\n\nShepherd:\nHeavy matters! heavy matters! but look thee here,\nboy. Now bless thyself: thou mettest with things\ndying, I with things newborn. Here's a sight for\nthee; look thee, a bearing-cloth for a squire's\nchild! look thee here; take up, take up, boy;\nopen't. So, let's see: it was told me I should be\nrich by the fairies. This is some changeling:\nopen't. What's within, boy?\n\nClown:\nYou're a made old man: if the sins of your youth\nare forgiven you, you're well to live. Gold! all gold!\n\nShepherd:\nThis is fairy gold, boy, and 'twill prove so: up\nwith't, keep it close: home, home, the next way.\nWe are lucky, boy; and to be so still requires\nnothing but secrecy. Let my sheep go: come, good\nboy, the next way home.\n\nClown:\nGo you the next way with your findings. I'll go see\nif the bear be gone from the gentleman and how much\nhe hath eaten: they are never curst but when they\nare hungry: if there be any of him left, I'll bury\nit.\n\nShepherd:\nThat's a good deed. If thou mayest discern by that\nwhich is left of him what he is, fetch me to the\nsight of him.\n\nClown:\nMarry, will I; and you shall help to put him i' the ground.\n\nShepherd:\n'Tis a lucky day, boy, and we'll do good deeds on't.\n\nTime:\nI, that please some, try all, both joy and terror\nOf good and bad, that makes and unfolds error,\nNow take upon me, in the name of Time,\nTo use my wings. Impute it not a crime\nTo me or my swift passage, that I slide\nO'er sixteen years and leave the growth untried\nOf that wide gap, since it is in my power\nTo o'erthrow law and in one self-born hour\nTo plant and o'erwhelm custom. Let me pass\nThe same I am, ere ancient'st order was\nOr what is now received: I witness to\nThe times that brought them in; so shall I do\nTo the freshest things now reigning and make stale\nThe glistering of this present, as my tale\nNow seems to it. Your patience this allowing,\nI turn my glass and give my scene such growing\nAs you had slept between: Leontes leaving,\nThe effects of his fond jealousies so grieving\nThat he shuts up himself, imagine me,\nGentle spectators, that I now may be\nIn fair Bohemia, and remember well,\nI mentioned a son o' the king's, which Florizel\nI now name to you; and with speed so pace\nTo speak of Perdita, now grown in grace\nEqual with wondering: what of her ensues\nI list not prophecy; but let Time's news\nBe known when 'tis brought forth.\nA shepherd's daughter,\nAnd what to her adheres, which follows after,\nIs the argument of Time. Of this allow,\nIf ever you have spent time worse ere now;\nIf never, yet that Time himself doth say\nHe wishes earnestly you never may.\n\nPOLIXENES:\nI pray thee, good Camillo, be no more importunate:\n'tis a sickness denying thee any thing; a death to\ngrant this.\n\nCAMILLO:\nIt is fifteen years since I saw my country: though\nI have for the most part been aired abroad, I\ndesire to lay my bones there. Besides, the penitent\nking, my master, hath sent for me; to whose feeling\nsorrows I might be some allay, or I o'erween to\nthink so, which is another spur to my departure.\n\nPOLIXENES:\nAs thou lovest me, Camillo, wipe not out the rest of\nthy services by leaving me now: the need I have of\nthee thine own goodness hath made; better not to\nhave had thee than thus to want thee: thou, having\nmade me businesses which none without thee can\nsufficiently manage, must either stay to execute\nthem thyself or take away with thee the very\nservices thou hast done; which if I have not enough\nconsidered, as too much I cannot, to be more\nthankful to thee shall be my study, and my profit\ntherein the heaping friendships. Of that fatal\ncountry, Sicilia, prithee speak no more; whose very\nnaming punishes me with the remembrance of that\npenitent, as thou callest him, and reconciled king,\nmy brother; whose loss of his most precious queen\nand children are even now to be afresh lamented.\nSay to me, when sawest thou the Prince Florizel, my\nson? Kings are no less unhappy, their issue not\nbeing gracious, than they are in losing them when\nthey have approved their virtues.\n\nCAMILLO:\nSir, it is three days since I saw the prince. What\nhis happier affairs may be, are to me unknown: but I\nhave missingly noted, he is of late much retired\nfrom court and is less frequent to his princely\nexercises than formerly he hath appeared.\n\nPOLIXENES:\nI have considered so much, Camillo, and with some\ncare; so far that I have eyes under my service which\nlook upon his removedness; from whom I have this\nintelligence, that he is seldom from the house of a\nmost homely shepherd; a man, they say, that from\nvery nothing, and beyond the imagination of his\nneighbours, is grown into an unspeakable estate.\n\nCAMILLO:\nI have heard, sir, of such a man, who hath a\ndaughter of most rare note: the report of her is\nextended more than can be thought to begin from such a cottage.\n\nPOLIXENES:\nThat's likewise part of my intelligence; but, I\nfear, the angle that plucks our son thither. Thou\nshalt accompany us to the place; where we will, not\nappearing what we are, have some question with the\nshepherd; from whose simplicity I think it not\nuneasy to get the cause of my son's resort thither.\nPrithee, be my present partner in this business, and\nlay aside the thoughts of Sicilia.\n\nCAMILLO:\nI willingly obey your command.\n\nPOLIXENES:\nMy best Camillo! We must disguise ourselves.\n\nAUTOLYCUS:\nWhen daffodils begin to peer,\nWith heigh! the doxy over the dale,\nWhy, then comes in the sweet o' the year;\nFor the red blood reigns in the winter's pale.\nThe white sheet bleaching on the hedge,\nWith heigh! the sweet birds, O, how they sing!\nDoth set my pugging tooth on edge;\nFor a quart of ale is a dish for a king.\nThe lark, that tirra-lyra chants,\nWith heigh! with heigh! the thrush and the jay,\nAre summer songs for me and my aunts,\nWhile we lie tumbling in the hay.\nI have served Prince Florizel and in my time\nwore three-pile; but now I am out of service:\nBut shall I go mourn for that, my dear?\nThe pale moon shines by night:\nAnd when I wander here and there,\nI then do most go right.\nIf tinkers may have leave to live,\nAnd bear the sow-skin budget,\nThen my account I well may, give,\nAnd in the stocks avouch it.\nMy traffic is sheets; when the kite builds, look to\nlesser linen. My father named me Autolycus; who\nbeing, as I am, littered under Mercury, was likewise\na snapper-up of unconsidered trifles. With die and\ndrab I purchased this caparison, and my revenue is\nthe silly cheat. Gallows and knock are too powerful\non the highway: beating and hanging are terrors to\nme: for the life to come, I sleep out the thought\nof it. A prize! a prize!\n\nClown:\nLet me see: every 'leven wether tods; every tod\nyields pound and odd shilling; fifteen hundred\nshorn. what comes the wool to?\n\nAUTOLYCUS:\n\nClown:\nI cannot do't without counters. Let me see; what am\nI to buy for our sheep-shearing feast? Three pound\nof sugar, five pound of currants, rice,--what will\nthis sister of mine do with rice? But my father\nhath made her mistress of the feast, and she lays it\non. She hath made me four and twenty nose-gays for\nthe shearers, three-man-song-men all, and very good\nones; but they are most of them means and bases; but\none puritan amongst them, and he sings psalms to\nhorn-pipes. I must have saffron to colour the warden\npies; mace; dates?--none, that's out of my note;\nnutmegs, seven; a race or two of ginger, but that I\nmay beg; four pound of prunes, and as many of\nraisins o' the sun.\n\nAUTOLYCUS:\nO that ever I was born!\n\nClown:\nI' the name of me--\n\nAUTOLYCUS:\nO, help me, help me! pluck but off these rags; and\nthen, death, death!\n\nClown:\nAlack, poor soul! thou hast need of more rags to lay\non thee, rather than have these off.\n\nAUTOLYCUS:\nO sir, the loathsomeness of them offends me more\nthan the stripes I have received, which are mighty\nones and millions.\n\nClown:\nAlas, poor man! a million of beating may come to a\ngreat matter.\n\nAUTOLYCUS:\nI am robbed, sir, and beaten; my money and apparel\nta'en from me, and these detestable things put upon\nme.\n\nClown:\nWhat, by a horseman, or a footman?\n\nAUTOLYCUS:\nA footman, sweet sir, a footman.\n\nClown:\nIndeed, he should be a footman by the garments he\nhas left with thee: if this be a horseman's coat,\nit hath seen very hot service. Lend me thy hand,\nI'll help thee: come, lend me thy hand.\n\nAUTOLYCUS:\nO, good sir, tenderly, O!\n\nClown:\nAlas, poor soul!\n\nAUTOLYCUS:\nO, good sir, softly, good sir! I fear, sir, my\nshoulder-blade is out.\n\nClown:\nHow now! canst stand?\n\nAUTOLYCUS:\n\nClown:\nDost lack any money? I have a little money for thee.\n\nAUTOLYCUS:\nNo, good sweet sir; no, I beseech you, sir: I have\na kinsman not past three quarters of a mile hence,\nunto whom I was going; I shall there have money, or\nany thing I want: offer me no money, I pray you;\nthat kills my heart.\n\nClown:\nWhat manner of fellow was he that robbed you?\n\nAUTOLYCUS:\nA fellow, sir, that I have known to go about with\ntroll-my-dames; I knew him once a servant of the\nprince: I cannot tell, good sir, for which of his\nvirtues it was, but he was certainly whipped out of the court.\n\nClown:\nHis vices, you would say; there's no virtue whipped\nout of the court: they cherish it to make it stay\nthere; and yet it will no more but abide.\n\nAUTOLYCUS:\nVices, I would say, sir. I know this man well: he\nhath been since an ape-bearer; then a\nprocess-server, a bailiff; then he compassed a\nmotion of the Prodigal Son, and married a tinker's\nwife within a mile where my land and living lies;\nand, having flown over many knavish professions, he\nsettled only in rogue: some call him Autolycus.\n\nClown:\nOut upon him! prig, for my life, prig: he haunts\nwakes, fairs and bear-baitings.\n\nAUTOLYCUS:\nVery true, sir; he, sir, he; that's the rogue that\nput me into this apparel.\n\nClown:\nNot a more cowardly rogue in all Bohemia: if you had\nbut looked big and spit at him, he'ld have run.\n\nAUTOLYCUS:\nI must confess to you, sir, I am no fighter: I am\nfalse of heart that way; and that he knew, I warrant\nhim.\n\nClown:\nHow do you now?\n\nAUTOLYCUS:\nSweet sir, much better than I was; I can stand and\nwalk: I will even take my leave of you, and pace\nsoftly towards my kinsman's.\n\nClown:\nShall I bring thee on the way?\n\nAUTOLYCUS:\nNo, good-faced sir; no, sweet sir.\n\nClown:\nThen fare thee well: I must go buy spices for our\nsheep-shearing.\n\nAUTOLYCUS:\nProsper you, sweet sir!\nYour purse is not hot enough to purchase your spice.\nI'll be with you at your sheep-shearing too: if I\nmake not this cheat bring out another and the\nshearers prove sheep, let me be unrolled and my name\nput in the book of virtue!\nJog on, jog on, the foot-path way,\nAnd merrily hent the stile-a:\nA merry heart goes all the day,\nYour sad tires in a mile-a.\n\nFLORIZEL:\nThese your unusual weeds to each part of you\nDo give a life: no shepherdess, but Flora\nPeering in April's front. This your sheep-shearing\nIs as a meeting of the petty gods,\nAnd you the queen on't.\n\nPERDITA:\nSir, my gracious lord,\nTo chide at your extremes it not becomes me:\nO, pardon, that I name them! Your high self,\nThe gracious mark o' the land, you have obscured\nWith a swain's wearing, and me, poor lowly maid,\nMost goddess-like prank'd up: but that our feasts\nIn every mess have folly and the feeders\nDigest it with a custom, I should blush\nTo see you so attired, sworn, I think,\nTo show myself a glass.\n\nFLORIZEL:\nI bless the time\nWhen my good falcon made her flight across\nThy father's ground.\n\nPERDITA:\nNow Jove afford you cause!\nTo me the difference forges dread; your greatness\nHath not been used to fear. Even now I tremble\nTo think your father, by some accident,\nShould pass this way as you did: O, the Fates!\nHow would he look, to see his work so noble\nVilely bound up? What would he say? Or how\nShould I, in these my borrow'd flaunts, behold\nThe sternness of his presence?\n\nFLORIZEL:\nApprehend\nNothing but jollity. The gods themselves,\nHumbling their deities to love, have taken\nThe shapes of beasts upon them: Jupiter\nBecame a bull, and bellow'd; the green Neptune\nA ram, and bleated; and the fire-robed god,\nGolden Apollo, a poor humble swain,\nAs I seem now. Their transformations\nWere never for a piece of beauty rarer,\nNor in a way so chaste, since my desires\nRun not before mine honour, nor my lusts\nBurn hotter than my faith.\n\nPERDITA:\nO, but, sir,\nYour resolution cannot hold, when 'tis\nOpposed, as it must be, by the power of the king:\nOne of these two must be necessities,\nWhich then will speak, that you must\nchange this purpose,\nOr I my life.\n\nFLORIZEL:\nThou dearest Perdita,\nWith these forced thoughts, I prithee, darken not\nThe mirth o' the feast. Or I'll be thine, my fair,\nOr not my father's. For I cannot be\nMine own, nor any thing to any, if\nI be not thine. To this I am most constant,\nThough destiny say no. Be merry, gentle;\nStrangle such thoughts as these with any thing\nThat you behold the while. Your guests are coming:\nLift up your countenance, as it were the day\nOf celebration of that nuptial which\nWe two have sworn shall come.\n\nPERDITA:\nO lady Fortune,\nStand you auspicious!\n\nFLORIZEL:\nSee, your guests approach:\nAddress yourself to entertain them sprightly,\nAnd let's be red with mirth.\n\nShepherd:\nFie, daughter! when my old wife lived, upon\nThis day she was both pantler, butler, cook,\nBoth dame and servant; welcomed all, served all;\nWould sing her song and dance her turn; now here,\nAt upper end o' the table, now i' the middle;\nOn his shoulder, and his; her face o' fire\nWith labour and the thing she took to quench it,\nShe would to each one sip. You are retired,\nAs if you were a feasted one and not\nThe hostess of the meeting: pray you, bid\nThese unknown friends to's welcome; for it is\nA way to make us better friends, more known.\nCome, quench your blushes and present yourself\nThat which you are, mistress o' the feast: come on,\nAnd bid us welcome to your sheep-shearing,\nAs your good flock shall prosper.\n\nPERDITA:\n\nPOLIXENES:\nShepherdess,\nA fair one are you--well you fit our ages\nWith flowers of winter.\n\nPERDITA:\nSir, the year growing ancient,\nNot yet on summer's death, nor on the birth\nOf trembling winter, the fairest\nflowers o' the season\nAre our carnations and streak'd gillyvors,\nWhich some call nature's bastards: of that kind\nOur rustic garden's barren; and I care not\nTo get slips of them.\n\nPOLIXENES:\nWherefore, gentle maiden,\nDo you neglect them?\n\nPERDITA:\nFor I have heard it said\nThere is an art which in their piedness shares\nWith great creating nature.\n\nPOLIXENES:\nSay there be;\nYet nature is made better by no mean\nBut nature makes that mean: so, over that art\nWhich you say adds to nature, is an art\nThat nature makes. You see, sweet maid, we marry\nA gentler scion to the wildest stock,\nAnd make conceive a bark of baser kind\nBy bud of nobler race: this is an art\nWhich does mend nature, change it rather, but\nThe art itself is nature.\n\nPERDITA:\nSo it is.\n\nPOLIXENES:\nThen make your garden rich in gillyvors,\nAnd do not call them bastards.\n\nPERDITA:\nI'll not put\nThe dibble in earth to set one slip of them;\nNo more than were I painted I would wish\nThis youth should say 'twere well and only therefore\nDesire to breed by me. Here's flowers for you;\nHot lavender, mints, savoury, marjoram;\nThe marigold, that goes to bed wi' the sun\nAnd with him rises weeping: these are flowers\nOf middle summer, and I think they are given\nTo men of middle age. You're very welcome.\n\nCAMILLO:\nI should leave grazing, were I of your flock,\nAnd only live by gazing.\n\nPERDITA:\nOut, alas!\nYou'd be so lean, that blasts of January\nWould blow you through and through.\nNow, my fair'st friend,\nI would I had some flowers o' the spring that might\nBecome your time of day; and yours, and yours,\nThat wear upon your virgin branches yet\nYour maidenheads growing: O Proserpina,\nFor the flowers now, that frighted thou let'st fall\nFrom Dis's waggon! daffodils,\nThat come before the swallow dares, and take\nThe winds of March with beauty; violets dim,\nBut sweeter than the lids of Juno's eyes\nOr Cytherea's breath; pale primroses\nThat die unmarried, ere they can behold\nBight Phoebus in his strength--a malady\nMost incident to maids; bold oxlips and\nThe crown imperial; lilies of all kinds,\nThe flower-de-luce being one! O, these I lack,\nTo make you garlands of, and my sweet friend,\nTo strew him o'er and o'er!\n\nFLORIZEL:\nWhat, like a corse?\n\nPERDITA:\nNo, like a bank for love to lie and play on;\nNot like a corse; or if, not to be buried,\nBut quick and in mine arms. Come, take your flowers:\nMethinks I play as I have seen them do\nIn Whitsun pastorals: sure this robe of mine\nDoes change my disposition.\n\nFLORIZEL:\nWhat you do\nStill betters what is done. When you speak, sweet.\nI'ld have you do it ever: when you sing,\nI'ld have you buy and sell so, so give alms,\nPray so; and, for the ordering your affairs,\nTo sing them too: when you do dance, I wish you\nA wave o' the sea, that you might ever do\nNothing but that; move still, still so,\nAnd own no other function: each your doing,\nSo singular in each particular,\nCrowns what you are doing in the present deed,\nThat all your acts are queens.\n\nPERDITA:\nO Doricles,\nYour praises are too large: but that your youth,\nAnd the true blood which peepeth fairly through't,\nDo plainly give you out an unstain'd shepherd,\nWith wisdom I might fear, my Doricles,\nYou woo'd me the false way.\n\nFLORIZEL:\nI think you have\nAs little skill to fear as I have purpose\nTo put you to't. But come; our dance, I pray:\nYour hand, my Perdita: so turtles pair,\nThat never mean to part.\n\nPERDITA:\nI'll swear for 'em.\n\nPOLIXENES:\nThis is the prettiest low-born lass that ever\nRan on the green-sward: nothing she does or seems\nBut smacks of something greater than herself,\nToo noble for this place.\n\nCAMILLO:\nHe tells her something\nThat makes her blood look out: good sooth, she is\nThe queen of curds and cream.\n\nClown:\nCome on, strike up!\n\nDORCAS:\nMopsa must be your mistress: marry, garlic,\nTo mend her kissing with!\n\nMOPSA:\nNow, in good time!\n\nClown:\nNot a word, a word; we stand upon our manners.\nCome, strike up!\n\nPOLIXENES:\nPray, good shepherd, what fair swain is this\nWhich dances with your daughter?\n\nShepherd:\nThey call him Doricles; and boasts himself\nTo have a worthy feeding: but I have it\nUpon his own report and I believe it;\nHe looks like sooth. He says he loves my daughter:\nI think so too; for never gazed the moon\nUpon the water as he'll stand and read\nAs 'twere my daughter's eyes: and, to be plain.\nI think there is not half a kiss to choose\nWho loves another best.\n\nPOLIXENES:\nShe dances featly.\n\nShepherd:\nSo she does any thing; though I report it,\nThat should be silent: if young Doricles\nDo light upon her, she shall bring him that\nWhich he not dreams of.\n\nServant:\nO master, if you did but hear the pedlar at the\ndoor, you would never dance again after a tabour and\npipe; no, the bagpipe could not move you: he sings\nseveral tunes faster than you'll tell money; he\nutters them as he had eaten ballads and all men's\nears grew to his tunes.\n\nClown:\nHe could never come better; he shall come in. I\nlove a ballad but even too well, if it be doleful\nmatter merrily set down, or a very pleasant thing\nindeed and sung lamentably.\n\nServant:\nHe hath songs for man or woman, of all sizes; no\nmilliner can so fit his customers with gloves: he\nhas the prettiest love-songs for maids; so without\nbawdry, which is strange; with such delicate\nburthens of dildos and fadings, 'jump her and thump\nher;' and where some stretch-mouthed rascal would,\nas it were, mean mischief and break a foul gap into\nthe matter, he makes the maid to answer 'Whoop, do me\nno harm, good man;' puts him off, slights him, with\n'Whoop, do me no harm, good man.'\n\nPOLIXENES:\nThis is a brave fellow.\n\nClown:\nBelieve me, thou talkest of an admirable conceited\nfellow. Has he any unbraided wares?\n\nServant:\nHe hath ribbons of an the colours i' the rainbow;\npoints more than all the lawyers in Bohemia can\nlearnedly handle, though they come to him by the\ngross: inkles, caddisses, cambrics, lawns: why, he\nsings 'em over as they were gods or goddesses; you\nwould think a smock were a she-angel, he so chants\nto the sleeve-hand and the work about the square on't.\n\nClown:\nPrithee bring him in; and let him approach singing.\n\nPERDITA:\nForewarn him that he use no scurrilous words in 's tunes.\n\nClown:\nYou have of these pedlars, that have more in them\nthan you'ld think, sister.\n\nPERDITA:\nAy, good brother, or go about to think.\n\nAUTOLYCUS:\nLawn as white as driven snow;\nCyprus black as e'er was crow;\nGloves as sweet as damask roses;\nMasks for faces and for noses;\nBugle bracelet, necklace amber,\nPerfume for a lady's chamber;\nGolden quoifs and stomachers,\nFor my lads to give their dears:\nPins and poking-sticks of steel,\nWhat maids lack from head to heel:\nCome buy of me, come; come buy, come buy;\nBuy lads, or else your lasses cry: Come buy.\n\nClown:\nIf I were not in love with Mopsa, thou shouldst take\nno money of me; but being enthralled as I am, it\nwill also be the bondage of certain ribbons and gloves.\n\nMOPSA:\nI was promised them against the feast; but they come\nnot too late now.\n\nDORCAS:\nHe hath promised you more than that, or there be liars.\n\nMOPSA:\nHe hath paid you all he promised you; may be, he has\npaid you more, which will shame you to give him again.\n\nClown:\nIs there no manners left among maids? will they\nwear their plackets where they should bear their\nfaces? Is there not milking-time, when you are\ngoing to bed, or kiln-hole, to whistle off these\nsecrets, but you must be tittle-tattling before all\nour guests? 'tis well they are whispering: clamour\nyour tongues, and not a word more.\n\nMOPSA:\nI have done. Come, you promised me a tawdry-lace\nand a pair of sweet gloves.\n\nClown:\nHave I not told thee how I was cozened by the way\nand lost all my money?\n\nAUTOLYCUS:\nAnd indeed, sir, there are cozeners abroad;\ntherefore it behoves men to be wary.\n\nClown:\nFear not thou, man, thou shalt lose nothing here.\n\nAUTOLYCUS:\nI hope so, sir; for I have about me many parcels of charge.\n\nClown:\nWhat hast here? ballads?\n\nMOPSA:\nPray now, buy some: I love a ballad in print o'\nlife, for then we are sure they are true.\n\nAUTOLYCUS:\nHere's one to a very doleful tune, how a usurer's\nwife was brought to bed of twenty money-bags at a\nburthen and how she longed to eat adders' heads and\ntoads carbonadoed.\n\nMOPSA:\nIs it true, think you?\n\nAUTOLYCUS:\nVery true, and but a month old.\n\nDORCAS:\nBless me from marrying a usurer!\n\nAUTOLYCUS:\nHere's the midwife's name to't, one Mistress\nTale-porter, and five or six honest wives that were\npresent. Why should I carry lies abroad?\n\nMOPSA:\nPray you now, buy it.\n\nClown:\nCome on, lay it by: and let's first see moe\nballads; we'll buy the other things anon.\n\nAUTOLYCUS:\nHere's another ballad of a fish, that appeared upon\nthe coast on Wednesday the four-score of April,\nforty thousand fathom above water, and sung this\nballad against the hard hearts of maids: it was\nthought she was a woman and was turned into a cold\nfish for she would not exchange flesh with one that\nloved her: the ballad is very pitiful and as true.\n\nDORCAS:\nIs it true too, think you?\n\nAUTOLYCUS:\nFive justices' hands at it, and witnesses more than\nmy pack will hold.\n\nClown:\nLay it by too: another.\n\nAUTOLYCUS:\nThis is a merry ballad, but a very pretty one.\n\nMOPSA:\nLet's have some merry ones.\n\nAUTOLYCUS:\nWhy, this is a passing merry one and goes to\nthe tune of 'Two maids wooing a man:' there's\nscarce a maid westward but she sings it; 'tis in\nrequest, I can tell you.\n\nMOPSA:\nWe can both sing it: if thou'lt bear a part, thou\nshalt hear; 'tis in three parts.\n\nDORCAS:\nWe had the tune on't a month ago.\n\nAUTOLYCUS:\nI can bear my part; you must know 'tis my\noccupation; have at it with you.\n\nAUTOLYCUS:\nGet you hence, for I must go\nWhere it fits not you to know.\n\nDORCAS:\nWhither?\n\nMOPSA:\nO, whither?\n\nDORCAS:\nWhither?\n\nMOPSA:\nIt becomes thy oath full well,\nThou to me thy secrets tell.\n\nDORCAS:\nMe too, let me go thither.\n\nMOPSA:\nOr thou goest to the orange or mill.\n\nDORCAS:\nIf to either, thou dost ill.\n\nAUTOLYCUS:\nNeither.\n\nDORCAS:\nWhat, neither?\n\nAUTOLYCUS:\nNeither.\n\nDORCAS:\nThou hast sworn my love to be.\n\nMOPSA:\nThou hast sworn it more to me:\nThen whither goest? say, whither?\n\nClown:\nWe'll have this song out anon by ourselves: my\nfather and the gentlemen are in sad talk, and we'll\nnot trouble them. Come, bring away thy pack after\nme. Wenches, I'll buy for you both. Pedlar, let's\nhave the first choice. Follow me, girls.\n\nAUTOLYCUS:\nAnd you shall pay well for 'em.\nWill you buy any tape,\nOr lace for your cape,\nMy dainty duck, my dear-a?\nAny silk, any thread,\nAny toys for your head,\nOf the new'st and finest, finest wear-a?\nCome to the pedlar;\nMoney's a medler.\nThat doth utter all men's ware-a.\n\nServant:\nMaster, there is three carters, three shepherds,\nthree neat-herds, three swine-herds, that have made\nthemselves all men of hair, they call themselves\nSaltiers, and they have a dance which the wenches\nsay is a gallimaufry of gambols, because they are\nnot in't; but they themselves are o' the mind, if it\nbe not too rough for some that know little but\nbowling, it will please plentifully.\n\nShepherd:\nAway! we'll none on 't: here has been too much\nhomely foolery already. I know, sir, we weary you.\n\nPOLIXENES:\nYou weary those that refresh us: pray, let's see\nthese four threes of herdsmen.\n\nServant:\nOne three of them, by their own report, sir, hath\ndanced before the king; and not the worst of the\nthree but jumps twelve foot and a half by the squier.\n\nShepherd:\nLeave your prating: since these good men are\npleased, let them come in; but quickly now.\n\nServant:\nWhy, they stay at door, sir.\n\nPOLIXENES:\nO, father, you'll know more of that hereafter.\nIs it not too far gone? 'Tis time to part them.\nHe's simple and tells much.\nHow now, fair shepherd!\nYour heart is full of something that does take\nYour mind from feasting. Sooth, when I was young\nAnd handed love as you do, I was wont\nTo load my she with knacks: I would have ransack'd\nThe pedlar's silken treasury and have pour'd it\nTo her acceptance; you have let him go\nAnd nothing marted with him. If your lass\nInterpretation should abuse and call this\nYour lack of love or bounty, you were straited\nFor a reply, at least if you make a care\nOf happy holding her.\n\nFLORIZEL:\nOld sir, I know\nShe prizes not such trifles as these are:\nThe gifts she looks from me are pack'd and lock'd\nUp in my heart; which I have given already,\nBut not deliver'd. O, hear me breathe my life\nBefore this ancient sir, who, it should seem,\nHath sometime loved! I take thy hand, this hand,\nAs soft as dove's down and as white as it,\nOr Ethiopian's tooth, or the fann'd\nsnow that's bolted\nBy the northern blasts twice o'er.\n\nPOLIXENES:\nWhat follows this?\nHow prettily the young swain seems to wash\nThe hand was fair before! I have put you out:\nBut to your protestation; let me hear\nWhat you profess.\n\nFLORIZEL:\nDo, and be witness to 't.\n\nPOLIXENES:\nAnd this my neighbour too?\n\nFLORIZEL:\nAnd he, and more\nThan he, and men, the earth, the heavens, and all:\nThat, were I crown'd the most imperial monarch,\nThereof most worthy, were I the fairest youth\nThat ever made eye swerve, had force and knowledge\nMore than was ever man's, I would not prize them\nWithout her love; for her employ them all;\nCommend them and condemn them to her service\nOr to their own perdition.\n\nPOLIXENES:\nFairly offer'd.\n\nCAMILLO:\nThis shows a sound affection.\n\nShepherd:\nBut, my daughter,\nSay you the like to him?\n\nPERDITA:\nI cannot speak\nSo well, nothing so well; no, nor mean better:\nBy the pattern of mine own thoughts I cut out\nThe purity of his.\n\nShepherd:\nTake hands, a bargain!\nAnd, friends unknown, you shall bear witness to 't:\nI give my daughter to him, and will make\nHer portion equal his.\n\nFLORIZEL:\nO, that must be\nI' the virtue of your daughter: one being dead,\nI shall have more than you can dream of yet;\nEnough then for your wonder. But, come on,\nContract us 'fore these witnesses.\n\nShepherd:\nCome, your hand;\nAnd, daughter, yours.\n\nPOLIXENES:\nSoft, swain, awhile, beseech you;\nHave you a father?\n\nFLORIZEL:\nI have: but what of him?\n\nPOLIXENES:\nKnows he of this?\n\nFLORIZEL:\nHe neither does nor shall.\n\nPOLIXENES:\nMethinks a father\nIs at the nuptial of his son a guest\nThat best becomes the table. Pray you once more,\nIs not your father grown incapable\nOf reasonable affairs? is he not stupid\nWith age and altering rheums? can he speak? hear?\nKnow man from man? dispute his own estate?\nLies he not bed-rid? and again does nothing\nBut what he did being childish?\n\nFLORIZEL:\nNo, good sir;\nHe has his health and ampler strength indeed\nThan most have of his age.\n\nPOLIXENES:\nBy my white beard,\nYou offer him, if this be so, a wrong\nSomething unfilial: reason my son\nShould choose himself a wife, but as good reason\nThe father, all whose joy is nothing else\nBut fair posterity, should hold some counsel\nIn such a business.\n\nFLORIZEL:\nI yield all this;\nBut for some other reasons, my grave sir,\nWhich 'tis not fit you know, I not acquaint\nMy father of this business.\n\nPOLIXENES:\nLet him know't.\n\nFLORIZEL:\nHe shall not.\n\nPOLIXENES:\nPrithee, let him.\n\nFLORIZEL:\nNo, he must not.\n\nShepherd:\nLet him, my son: he shall not need to grieve\nAt knowing of thy choice.\n\nFLORIZEL:\nCome, come, he must not.\nMark our contract.\n\nPOLIXENES:\nMark your divorce, young sir,\nWhom son I dare not call; thou art too base\nTo be acknowledged: thou a sceptre's heir,\nThat thus affect'st a sheep-hook! Thou old traitor,\nI am sorry that by hanging thee I can\nBut shorten thy life one week. And thou, fresh piece\nOf excellent witchcraft, who of force must know\nThe royal fool thou copest with,--\n\nShepherd:\nO, my heart!\n\nPOLIXENES:\nI'll have thy beauty scratch'd with briers, and made\nMore homely than thy state. For thee, fond boy,\nIf I may ever know thou dost but sigh\nThat thou no more shalt see this knack, as never\nI mean thou shalt, we'll bar thee from succession;\nNot hold thee of our blood, no, not our kin,\nFar than Deucalion off: mark thou my words:\nFollow us to the court. Thou churl, for this time,\nThough full of our displeasure, yet we free thee\nFrom the dead blow of it. And you, enchantment.--\nWorthy enough a herdsman: yea, him too,\nThat makes himself, but for our honour therein,\nUnworthy thee,--if ever henceforth thou\nThese rural latches to his entrance open,\nOr hoop his body more with thy embraces,\nI will devise a death as cruel for thee\nAs thou art tender to't.\n\nPERDITA:\nEven here undone!\nI was not much afeard; for once or twice\nI was about to speak and tell him plainly,\nThe selfsame sun that shines upon his court\nHides not his visage from our cottage but\nLooks on alike. Will't please you, sir, be gone?\nI told you what would come of this: beseech you,\nOf your own state take care: this dream of mine,--\nBeing now awake, I'll queen it no inch farther,\nBut milk my ewes and weep.\n\nCAMILLO:\nWhy, how now, father!\nSpeak ere thou diest.\n\nShepherd:\nI cannot speak, nor think\nNor dare to know that which I know. O sir!\nYou have undone a man of fourscore three,\nThat thought to fill his grave in quiet, yea,\nTo die upon the bed my father died,\nTo lie close by his honest bones: but now\nSome hangman must put on my shroud and lay me\nWhere no priest shovels in dust. O cursed wretch,\nThat knew'st this was the prince,\nand wouldst adventure\nTo mingle faith with him! Undone! undone!\nIf I might die within this hour, I have lived\nTo die when I desire.\n\nFLORIZEL:\nWhy look you so upon me?\nI am but sorry, not afeard; delay'd,\nBut nothing alter'd: what I was, I am;\nMore straining on for plucking back, not following\nMy leash unwillingly.\n\nCAMILLO:\nGracious my lord,\nYou know your father's temper: at this time\nHe will allow no speech, which I do guess\nYou do not purpose to him; and as hardly\nWill he endure your sight as yet, I fear:\nThen, till the fury of his highness settle,\nCome not before him.\n\nFLORIZEL:\nI not purpose it.\nI think, Camillo?\n\nCAMILLO:\nEven he, my lord.\n\nPERDITA:\nHow often have I told you 'twould be thus!\nHow often said, my dignity would last\nBut till 'twere known!\n\nFLORIZEL:\nIt cannot fail but by\nThe violation of my faith; and then\nLet nature crush the sides o' the earth together\nAnd mar the seeds within! Lift up thy looks:\nFrom my succession wipe me, father; I\nAm heir to my affection.\n\nCAMILLO:\nBe advised.\n\nFLORIZEL:\nI am, and by my fancy: if my reason\nWill thereto be obedient, I have reason;\nIf not, my senses, better pleased with madness,\nDo bid it welcome.\n\nCAMILLO:\nThis is desperate, sir.\n\nFLORIZEL:\nSo call it: but it does fulfil my vow;\nI needs must think it honesty. Camillo,\nNot for Bohemia, nor the pomp that may\nBe thereat glean'd, for all the sun sees or\nThe close earth wombs or the profound sea hides\nIn unknown fathoms, will I break my oath\nTo this my fair beloved: therefore, I pray you,\nAs you have ever been my father's honour'd friend,\nWhen he shall miss me,--as, in faith, I mean not\nTo see him any more,--cast your good counsels\nUpon his passion; let myself and fortune\nTug for the time to come. This you may know\nAnd so deliver, I am put to sea\nWith her whom here I cannot hold on shore;\nAnd most opportune to our need I have\nA vessel rides fast by, but not prepared\nFor this design. What course I mean to hold\nShall nothing benefit your knowledge, nor\nConcern me the reporting.\n\nCAMILLO:\nO my lord!\nI would your spirit were easier for advice,\nOr stronger for your need.\n\nFLORIZEL:\nHark, Perdita\nI'll hear you by and by.\n\nCAMILLO:\nHe's irremoveable,\nResolved for flight. Now were I happy, if\nHis going I could frame to serve my turn,\nSave him from danger, do him love and honour,\nPurchase the sight again of dear Sicilia\nAnd that unhappy king, my master, whom\nI so much thirst to see.\n\nFLORIZEL:\nNow, good Camillo;\nI am so fraught with curious business that\nI leave out ceremony.\n\nCAMILLO:\nSir, I think\nYou have heard of my poor services, i' the love\nThat I have borne your father?\n\nFLORIZEL:\nVery nobly\nHave you deserved: it is my father's music\nTo speak your deeds, not little of his care\nTo have them recompensed as thought on.\n\nCAMILLO:\nWell, my lord,\nIf you may please to think I love the king\nAnd through him what is nearest to him, which is\nYour gracious self, embrace but my direction:\nIf your more ponderous and settled project\nMay suffer alteration, on mine honour,\nI'll point you where you shall have such receiving\nAs shall become your highness; where you may\nEnjoy your mistress, from the whom, I see,\nThere's no disjunction to be made, but by--\nAs heavens forefend!--your ruin; marry her,\nAnd, with my best endeavours in your absence,\nYour discontenting father strive to qualify\nAnd bring him up to liking.\n\nFLORIZEL:\nHow, Camillo,\nMay this, almost a miracle, be done?\nThat I may call thee something more than man\nAnd after that trust to thee.\n\nCAMILLO:\nHave you thought on\nA place whereto you'll go?\n\nFLORIZEL:\nNot any yet:\nBut as the unthought-on accident is guilty\nTo what we wildly do, so we profess\nOurselves to be the slaves of chance and flies\nOf every wind that blows.\n\nCAMILLO:\nThen list to me:\nThis follows, if you will not change your purpose\nBut undergo this flight, make for Sicilia,\nAnd there present yourself and your fair princess,\nFor so I see she must be, 'fore Leontes:\nShe shall be habited as it becomes\nThe partner of your bed. Methinks I see\nLeontes opening his free arms and weeping\nHis welcomes forth; asks thee the son forgiveness,\nAs 'twere i' the father's person; kisses the hands\nOf your fresh princess; o'er and o'er divides him\n'Twixt his unkindness and his kindness; the one\nHe chides to hell and bids the other grow\nFaster than thought or time.\n\nFLORIZEL:\nWorthy Camillo,\nWhat colour for my visitation shall I\nHold up before him?\n\nCAMILLO:\nSent by the king your father\nTo greet him and to give him comforts. Sir,\nThe manner of your bearing towards him, with\nWhat you as from your father shall deliver,\nThings known betwixt us three, I'll write you down:\nThe which shall point you forth at every sitting\nWhat you must say; that he shall not perceive\nBut that you have your father's bosom there\nAnd speak his very heart.\n\nFLORIZEL:\nI am bound to you:\nThere is some sap in this.\n\nCAMILLO:\nA cause more promising\nThan a wild dedication of yourselves\nTo unpath'd waters, undream'd shores, most certain\nTo miseries enough; no hope to help you,\nBut as you shake off one to take another;\nNothing so certain as your anchors, who\nDo their best office, if they can but stay you\nWhere you'll be loath to be: besides you know\nProsperity's the very bond of love,\nWhose fresh complexion and whose heart together\nAffliction alters.\n\nPERDITA:\nOne of these is true:\nI think affliction may subdue the cheek,\nBut not take in the mind.\n\nCAMILLO:\nYea, say you so?\nThere shall not at your father's house these\nseven years\nBe born another such.\n\nFLORIZEL:\nMy good Camillo,\nShe is as forward of her breeding as\nShe is i' the rear our birth.\n\nCAMILLO:\nI cannot say 'tis pity\nShe lacks instructions, for she seems a mistress\nTo most that teach.\n\nPERDITA:\nYour pardon, sir; for this\nI'll blush you thanks.\n\nFLORIZEL:\nMy prettiest Perdita!\nBut O, the thorns we stand upon! Camillo,\nPreserver of my father, now of me,\nThe medicine of our house, how shall we do?\nWe are not furnish'd like Bohemia's son,\nNor shall appear in Sicilia.\n\nCAMILLO:\nMy lord,\nFear none of this: I think you know my fortunes\nDo all lie there: it shall be so my care\nTo have you royally appointed as if\nThe scene you play were mine. For instance, sir,\nThat you may know you shall not want, one word.\n\nAUTOLYCUS:\nHa, ha! what a fool Honesty is! and Trust, his\nsworn brother, a very simple gentleman! I have sold\nall my trumpery; not a counterfeit stone, not a\nribbon, glass, pomander, brooch, table-book, ballad,\nknife, tape, glove, shoe-tie, bracelet, horn-ring,\nto keep my pack from fasting: they throng who\nshould buy first, as if my trinkets had been\nhallowed and brought a benediction to the buyer:\nby which means I saw whose purse was best in\npicture; and what I saw, to my good use I\nremembered. My clown, who wants but something to\nbe a reasonable man, grew so in love with the\nwenches' song, that he would not stir his pettitoes\ntill he had both tune and words; which so drew the\nrest of the herd to me that all their other senses\nstuck in ears: you might have pinched a placket, it\nwas senseless; 'twas nothing to geld a codpiece of a\npurse; I could have filed keys off that hung in\nchains: no hearing, no feeling, but my sir's song,\nand admiring the nothing of it. So that in this\ntime of lethargy I picked and cut most of their\nfestival purses; and had not the old man come in\nwith a whoo-bub against his daughter and the king's\nson and scared my choughs from the chaff, I had not\nleft a purse alive in the whole army.\n\nCAMILLO:\nNay, but my letters, by this means being there\nSo soon as you arrive, shall clear that doubt.\n\nFLORIZEL:\nAnd those that you'll procure from King Leontes--\n\nCAMILLO:\nShall satisfy your father.\n\nPERDITA:\nHappy be you!\nAll that you speak shows fair.\n\nCAMILLO:\nWho have we here?\nWe'll make an instrument of this, omit\nNothing may give us aid.\n\nAUTOLYCUS:\nIf they have overheard me now, why, hanging.\n\nCAMILLO:\nHow now, good fellow! why shakest thou so? Fear\nnot, man; here's no harm intended to thee.\n\nAUTOLYCUS:\nI am a poor fellow, sir.\n\nCAMILLO:\nWhy, be so still; here's nobody will steal that from\nthee: yet for the outside of thy poverty we must\nmake an exchange; therefore discase thee instantly,\n--thou must think there's a necessity in't,--and\nchange garments with this gentleman: though the\npennyworth on his side be the worst, yet hold thee,\nthere's some boot.\n\nAUTOLYCUS:\nI am a poor fellow, sir.\nI know ye well enough.\n\nCAMILLO:\nNay, prithee, dispatch: the gentleman is half\nflayed already.\n\nAUTOLYCUS:\nAre you in earnest, sir?\nI smell the trick on't.\n\nFLORIZEL:\nDispatch, I prithee.\n\nAUTOLYCUS:\nIndeed, I have had earnest: but I cannot with\nconscience take it.\n\nCAMILLO:\nUnbuckle, unbuckle.\nFortunate mistress,--let my prophecy\nCome home to ye!--you must retire yourself\nInto some covert: take your sweetheart's hat\nAnd pluck it o'er your brows, muffle your face,\nDismantle you, and, as you can, disliken\nThe truth of your own seeming; that you may--\nFor I do fear eyes over--to shipboard\nGet undescried.\n\nPERDITA:\nI see the play so lies\nThat I must bear a part.\n\nCAMILLO:\nNo remedy.\nHave you done there?\n\nFLORIZEL:\nShould I now meet my father,\nHe would not call me son.\n\nCAMILLO:\nNay, you shall have no hat.\nCome, lady, come. Farewell, my friend.\n\nAUTOLYCUS:\nAdieu, sir.\n\nFLORIZEL:\nO Perdita, what have we twain forgot!\nPray you, a word.\n\nCAMILLO:\n\nFLORIZEL:\nFortune speed us!\nThus we set on, Camillo, to the sea-side.\n\nCAMILLO:\nThe swifter speed the better.\n\nAUTOLYCUS:\nI understand the business, I hear it: to have an\nopen ear, a quick eye, and a nimble hand, is\nnecessary for a cut-purse; a good nose is requisite\nalso, to smell out work for the other senses. I see\nthis is the time that the unjust man doth thrive.\nWhat an exchange had this been without boot! What\na boot is here with this exchange! Sure the gods do\nthis year connive at us, and we may do any thing\nextempore. The prince himself is about a piece of\niniquity, stealing away from his father with his\nclog at his heels: if I thought it were a piece of\nhonesty to acquaint the king withal, I would not\ndo't: I hold it the more knavery to conceal it;\nand therein am I constant to my profession.\nAside, aside; here is more matter for a hot brain:\nevery lane's end, every shop, church, session,\nhanging, yields a careful man work.\n\nClown:\nSee, see; what a man you are now!\nThere is no other way but to tell the king\nshe's a changeling and none of your flesh and blood.\n\nShepherd:\nNay, but hear me.\n\nClown:\nNay, but hear me.\n\nShepherd:\nGo to, then.\n\nClown:\nShe being none of your flesh and blood, your flesh\nand blood has not offended the king; and so your\nflesh and blood is not to be punished by him. Show\nthose things you found about her, those secret\nthings, all but what she has with her: this being\ndone, let the law go whistle: I warrant you.\n\nShepherd:\nI will tell the king all, every word, yea, and his\nson's pranks too; who, I may say, is no honest man,\nneither to his father nor to me, to go about to make\nme the king's brother-in-law.\n\nClown:\nIndeed, brother-in-law was the farthest off you\ncould have been to him and then your blood had been\nthe dearer by I know how much an ounce.\n\nAUTOLYCUS:\n\nShepherd:\nWell, let us to the king: there is that in this\nfardel will make him scratch his beard.\n\nAUTOLYCUS:\n\nClown:\nPray heartily he be at palace.\n\nAUTOLYCUS:\n\nShepherd:\nTo the palace, an it like your worship.\n\nAUTOLYCUS:\nYour affairs there, what, with whom, the condition\nof that fardel, the place of your dwelling, your\nnames, your ages, of what having, breeding, and any\nthing that is fitting to be known, discover.\n\nClown:\nWe are but plain fellows, sir.\n\nAUTOLYCUS:\nA lie; you are rough and hairy. Let me have no\nlying: it becomes none but tradesmen, and they\noften give us soldiers the lie: but we pay them for\nit with stamped coin, not stabbing steel; therefore\nthey do not give us the lie.\n\nClown:\nYour worship had like to have given us one, if you\nhad not taken yourself with the manner.\n\nShepherd:\nAre you a courtier, an't like you, sir?\n\nAUTOLYCUS:\nWhether it like me or no, I am a courtier. Seest\nthou not the air of the court in these enfoldings?\nhath not my gait in it the measure of the court?\nreceives not thy nose court-odor from me? reflect I\nnot on thy baseness court-contempt? Thinkest thou,\nfor that I insinuate, or toaze from thee thy\nbusiness, I am therefore no courtier? I am courtier\ncap-a-pe; and one that will either push on or pluck\nback thy business there: whereupon I command thee to\nopen thy affair.\n\nShepherd:\nMy business, sir, is to the king.\n\nAUTOLYCUS:\nWhat advocate hast thou to him?\n\nShepherd:\nI know not, an't like you.\n\nClown:\nAdvocate's the court-word for a pheasant: say you\nhave none.\n\nShepherd:\nNone, sir; I have no pheasant, cock nor hen.\n\nAUTOLYCUS:\nHow blessed are we that are not simple men!\nYet nature might have made me as these are,\nTherefore I will not disdain.\n\nClown:\nThis cannot be but a great courtier.\n\nShepherd:\nHis garments are rich, but he wears\nthem not handsomely.\n\nClown:\nHe seems to be the more noble in being fantastical:\na great man, I'll warrant; I know by the picking\non's teeth.\n\nAUTOLYCUS:\nThe fardel there? what's i' the fardel?\nWherefore that box?\n\nShepherd:\nSir, there lies such secrets in this fardel and box,\nwhich none must know but the king; and which he\nshall know within this hour, if I may come to the\nspeech of him.\n\nAUTOLYCUS:\nAge, thou hast lost thy labour.\n\nShepherd:\nWhy, sir?\n\nAUTOLYCUS:\nThe king is not at the palace; he is gone aboard a\nnew ship to purge melancholy and air himself: for,\nif thou beest capable of things serious, thou must\nknow the king is full of grief.\n\nShepard:\nSo 'tis said, sir; about his son, that should have\nmarried a shepherd's daughter.\n\nAUTOLYCUS:\nIf that shepherd be not in hand-fast, let him fly:\nthe curses he shall have, the tortures he shall\nfeel, will break the back of man, the heart of monster.\n\nClown:\nThink you so, sir?\n\nAUTOLYCUS:\nNot he alone shall suffer what wit can make heavy\nand vengeance bitter; but those that are germane to\nhim, though removed fifty times, shall all come\nunder the hangman: which though it be great pity,\nyet it is necessary. An old sheep-whistling rogue a\nram-tender, to offer to have his daughter come into\ngrace! Some say he shall be stoned; but that death\nis too soft for him, say I draw our throne into a\nsheep-cote! all deaths are too few, the sharpest too easy.\n\nClown:\nHas the old man e'er a son, sir, do you hear. an't\nlike you, sir?\n\nAUTOLYCUS:\nHe has a son, who shall be flayed alive; then\n'nointed over with honey, set on the head of a\nwasp's nest; then stand till he be three quarters\nand a dram dead; then recovered again with\naqua-vitae or some other hot infusion; then, raw as\nhe is, and in the hottest day prognostication\nproclaims, shall be be set against a brick-wall, the\nsun looking with a southward eye upon him, where he\nis to behold him with flies blown to death. But what\ntalk we of these traitorly rascals, whose miseries\nare to be smiled at, their offences being so\ncapital? Tell me, for you seem to be honest plain\nmen, what you have to the king: being something\ngently considered, I'll bring you where he is\naboard, tender your persons to his presence,\nwhisper him in your behalfs; and if it be in man\nbesides the king to effect your suits, here is man\nshall do it.\n\nClown:\nHe seems to be of great authority: close with him,\ngive him gold; and though authority be a stubborn\nbear, yet he is oft led by the nose with gold: show\nthe inside of your purse to the outside of his hand,\nand no more ado. Remember 'stoned,' and 'flayed alive.'\n\nShepherd:\nAn't please you, sir, to undertake the business for\nus, here is that gold I have: I'll make it as much\nmore and leave this young man in pawn till I bring it you.\n\nAUTOLYCUS:\nAfter I have done what I promised?\n\nShepherd:\nAy, sir.\n\nAUTOLYCUS:\nWell, give me the moiety. Are you a party in this business?\n\nClown:\nIn some sort, sir: but though my case be a pitiful\none, I hope I shall not be flayed out of it.\n\nAUTOLYCUS:\nO, that's the case of the shepherd's son: hang him,\nhe'll be made an example.\n\nClown:\nComfort, good comfort! We must to the king and show\nour strange sights: he must know 'tis none of your\ndaughter nor my sister; we are gone else. Sir, I\nwill give you as much as this old man does when the\nbusiness is performed, and remain, as he says, your\npawn till it be brought you.\n\nAUTOLYCUS:\nI will trust you. Walk before toward the sea-side;\ngo on the right hand: I will but look upon the\nhedge and follow you.\n\nClown:\nWe are blest in this man, as I may say, even blest.\n\nShepherd:\nLet's before as he bids us: he was provided to do us good.\n\nAUTOLYCUS:\nIf I had a mind to be honest, I see Fortune would\nnot suffer me: she drops booties in my mouth. I am\ncourted now with a double occasion, gold and a means\nto do the prince my master good; which who knows how\nthat may turn back to my advancement? I will bring\nthese two moles, these blind ones, aboard him: if he\nthink it fit to shore them again and that the\ncomplaint they have to the king concerns him\nnothing, let him call me rogue for being so far\nofficious; for I am proof against that title and\nwhat shame else belongs to't. To him will I present\nthem: there may be matter in it.\n\nCLEOMENES:\nSir, you have done enough, and have perform'd\nA saint-like sorrow: no fault could you make,\nWhich you have not redeem'd; indeed, paid down\nMore penitence than done trespass: at the last,\nDo as the heavens have done, forget your evil;\nWith them forgive yourself.\n\nLEONTES:\nWhilst I remember\nHer and her virtues, I cannot forget\nMy blemishes in them, and so still think of\nThe wrong I did myself; which was so much,\nThat heirless it hath made my kingdom and\nDestroy'd the sweet'st companion that e'er man\nBred his hopes out of.\n\nPAULINA:\nTrue, too true, my lord:\nIf, one by one, you wedded all the world,\nOr from the all that are took something good,\nTo make a perfect woman, she you kill'd\nWould be unparallel'd.\n\nLEONTES:\nI think so. Kill'd!\nShe I kill'd! I did so: but thou strikest me\nSorely, to say I did; it is as bitter\nUpon thy tongue as in my thought: now, good now,\nSay so but seldom.\n\nCLEOMENES:\nNot at all, good lady:\nYou might have spoken a thousand things that would\nHave done the time more benefit and graced\nYour kindness better.\n\nPAULINA:\nYou are one of those\nWould have him wed again.\n\nDION:\nIf you would not so,\nYou pity not the state, nor the remembrance\nOf his most sovereign name; consider little\nWhat dangers, by his highness' fail of issue,\nMay drop upon his kingdom and devour\nIncertain lookers on. What were more holy\nThan to rejoice the former queen is well?\nWhat holier than, for royalty's repair,\nFor present comfort and for future good,\nTo bless the bed of majesty again\nWith a sweet fellow to't?\n\nPAULINA:\nThere is none worthy,\nRespecting her that's gone. Besides, the gods\nWill have fulfill'd their secret purposes;\nFor has not the divine Apollo said,\nIs't not the tenor of his oracle,\nThat King Leontes shall not have an heir\nTill his lost child be found? which that it shall,\nIs all as monstrous to our human reason\nAs my Antigonus to break his grave\nAnd come again to me; who, on my life,\nDid perish with the infant. 'Tis your counsel\nMy lord should to the heavens be contrary,\nOppose against their wills.\nCare not for issue;\nThe crown will find an heir: great Alexander\nLeft his to the worthiest; so his successor\nWas like to be the best.\n\nLEONTES:\nGood Paulina,\nWho hast the memory of Hermione,\nI know, in honour, O, that ever I\nHad squared me to thy counsel! then, even now,\nI might have look'd upon my queen's full eyes,\nHave taken treasure from her lips--\n\nPAULINA:\nAnd left them\nMore rich for what they yielded.\n\nLEONTES:\nThou speak'st truth.\nNo more such wives; therefore, no wife: one worse,\nAnd better used, would make her sainted spirit\nAgain possess her corpse, and on this stage,\nWhere we're offenders now, appear soul-vex'd,\nAnd begin, 'Why to me?'\n\nPAULINA:\nHad she such power,\nShe had just cause.\n\nLEONTES:\nShe had; and would incense me\nTo murder her I married.\n\nPAULINA:\nI should so.\nWere I the ghost that walk'd, I'ld bid you mark\nHer eye, and tell me for what dull part in't\nYou chose her; then I'ld shriek, that even your ears\nShould rift to hear me; and the words that follow'd\nShould be 'Remember mine.'\n\nLEONTES:\nStars, stars,\nAnd all eyes else dead coals! Fear thou no wife;\nI'll have no wife, Paulina.\n\nPAULINA:\nWill you swear\nNever to marry but by my free leave?\n\nLEONTES:\nNever, Paulina; so be blest my spirit!\n\nPAULINA:\nThen, good my lords, bear witness to his oath.\n\nCLEOMENES:\nYou tempt him over-much.\n\nPAULINA:\nUnless another,\nAs like Hermione as is her picture,\nAffront his eye.\n\nCLEOMENES:\nGood madam,--\n\nPAULINA:\nI have done.\nYet, if my lord will marry,--if you will, sir,\nNo remedy, but you will,--give me the office\nTo choose you a queen: she shall not be so young\nAs was your former; but she shall be such\nAs, walk'd your first queen's ghost,\nit should take joy\nTo see her in your arms.\n\nLEONTES:\nMy true Paulina,\nWe shall not marry till thou bid'st us.\n\nPAULINA:\nThat\nShall be when your first queen's again in breath;\nNever till then.\n\nGentleman:\nOne that gives out himself Prince Florizel,\nSon of Polixenes, with his princess, she\nThe fairest I have yet beheld, desires access\nTo your high presence.\n\nLEONTES:\nWhat with him? he comes not\nLike to his father's greatness: his approach,\nSo out of circumstance and sudden, tells us\n'Tis not a visitation framed, but forced\nBy need and accident. What train?\n\nGentleman:\nBut few,\nAnd those but mean.\n\nLEONTES:\nHis princess, say you, with him?\n\nGentleman:\nAy, the most peerless piece of earth, I think,\nThat e'er the sun shone bright on.\n\nPAULINA:\nO Hermione,\nAs every present time doth boast itself\nAbove a better gone, so must thy grave\nGive way to what's seen now! Sir, you yourself\nHave said and writ so, but your writing now\nIs colder than that theme, 'She had not been,\nNor was not to be equall'd;'--thus your verse\nFlow'd with her beauty once: 'tis shrewdly ebb'd,\nTo say you have seen a better.\n\nGentleman:\nPardon, madam:\nThe one I have almost forgot,--your pardon,--\nThe other, when she has obtain'd your eye,\nWill have your tongue too. This is a creature,\nWould she begin a sect, might quench the zeal\nOf all professors else, make proselytes\nOf who she but bid follow.\n\nPAULINA:\nHow! not women?\n\nGentleman:\nWomen will love her, that she is a woman\nMore worth than any man; men, that she is\nThe rarest of all women.\n\nLEONTES:\nGo, Cleomenes;\nYourself, assisted with your honour'd friends,\nBring them to our embracement. Still, 'tis strange\nHe thus should steal upon us.\n\nPAULINA:\nHad our prince,\nJewel of children, seen this hour, he had pair'd\nWell with this lord: there was not full a month\nBetween their births.\n\nLEONTES:\nPrithee, no more; cease; thou know'st\nHe dies to me again when talk'd of: sure,\nWhen I shall see this gentleman, thy speeches\nWill bring me to consider that which may\nUnfurnish me of reason. They are come.\nYour mother was most true to wedlock, prince;\nFor she did print your royal father off,\nConceiving you: were I but twenty-one,\nYour father's image is so hit in you,\nHis very air, that I should call you brother,\nAs I did him, and speak of something wildly\nBy us perform'd before. Most dearly welcome!\nAnd your fair princess,--goddess!--O, alas!\nI lost a couple, that 'twixt heaven and earth\nMight thus have stood begetting wonder as\nYou, gracious couple, do: and then I lost--\nAll mine own folly--the society,\nAmity too, of your brave father, whom,\nThough bearing misery, I desire my life\nOnce more to look on him.\n\nFLORIZEL:\nBy his command\nHave I here touch'd Sicilia and from him\nGive you all greetings that a king, at friend,\nCan send his brother: and, but infirmity\nWhich waits upon worn times hath something seized\nHis wish'd ability, he had himself\nThe lands and waters 'twixt your throne and his\nMeasured to look upon you; whom he loves--\nHe bade me say so--more than all the sceptres\nAnd those that bear them living.\n\nLEONTES:\nO my brother,\nGood gentleman! the wrongs I have done thee stir\nAfresh within me, and these thy offices,\nSo rarely kind, are as interpreters\nOf my behind-hand slackness. Welcome hither,\nAs is the spring to the earth. And hath he too\nExposed this paragon to the fearful usage,\nAt least ungentle, of the dreadful Neptune,\nTo greet a man not worth her pains, much less\nThe adventure of her person?\n\nFLORIZEL:\nGood my lord,\nShe came from Libya.\n\nLEONTES:\nWhere the warlike Smalus,\nThat noble honour'd lord, is fear'd and loved?\n\nFLORIZEL:\nMost royal sir, from thence; from him, whose daughter\nHis tears proclaim'd his, parting with her: thence,\nA prosperous south-wind friendly, we have cross'd,\nTo execute the charge my father gave me\nFor visiting your highness: my best train\nI have from your Sicilian shores dismiss'd;\nWho for Bohemia bend, to signify\nNot only my success in Libya, sir,\nBut my arrival and my wife's in safety\nHere where we are.\n\nLEONTES:\nThe blessed gods\nPurge all infection from our air whilst you\nDo climate here! You have a holy father,\nA graceful gentleman; against whose person,\nSo sacred as it is, I have done sin:\nFor which the heavens, taking angry note,\nHave left me issueless; and your father's blest,\nAs he from heaven merits it, with you\nWorthy his goodness. What might I have been,\nMight I a son and daughter now have look'd on,\nSuch goodly things as you!\n\nLord:\nMost noble sir,\nThat which I shall report will bear no credit,\nWere not the proof so nigh. Please you, great sir,\nBohemia greets you from himself by me;\nDesires you to attach his son, who has--\nHis dignity and duty both cast off--\nFled from his father, from his hopes, and with\nA shepherd's daughter.\n\nLEONTES:\nWhere's Bohemia? speak.\n\nLord:\nHere in your city; I now came from him:\nI speak amazedly; and it becomes\nMy marvel and my message. To your court\nWhiles he was hastening, in the chase, it seems,\nOf this fair couple, meets he on the way\nThe father of this seeming lady and\nHer brother, having both their country quitted\nWith this young prince.\n\nFLORIZEL:\nCamillo has betray'd me;\nWhose honour and whose honesty till now\nEndured all weathers.\n\nLord:\nLay't so to his charge:\nHe's with the king your father.\n\nLEONTES:\nWho? Camillo?\n\nLord:\nCamillo, sir; I spake with him; who now\nHas these poor men in question. Never saw I\nWretches so quake: they kneel, they kiss the earth;\nForswear themselves as often as they speak:\nBohemia stops his ears, and threatens them\nWith divers deaths in death.\n\nPERDITA:\nO my poor father!\nThe heaven sets spies upon us, will not have\nOur contract celebrated.\n\nLEONTES:\nYou are married?\n\nFLORIZEL:\nWe are not, sir, nor are we like to be;\nThe stars, I see, will kiss the valleys first:\nThe odds for high and low's alike.\n\nLEONTES:\nMy lord,\nIs this the daughter of a king?\n\nFLORIZEL:\nShe is,\nWhen once she is my wife.\n\nLEONTES:\nThat 'once' I see by your good father's speed\nWill come on very slowly. I am sorry,\nMost sorry, you have broken from his liking\nWhere you were tied in duty, and as sorry\nYour choice is not so rich in worth as beauty,\nThat you might well enjoy her.\n\nFLORIZEL:\nDear, look up:\nThough Fortune, visible an enemy,\nShould chase us with my father, power no jot\nHath she to change our loves. Beseech you, sir,\nRemember since you owed no more to time\nThan I do now: with thought of such affections,\nStep forth mine advocate; at your request\nMy father will grant precious things as trifles.\n\nLEONTES:\nWould he do so, I'ld beg your precious mistress,\nWhich he counts but a trifle.\n\nPAULINA:\nSir, my liege,\nYour eye hath too much youth in't: not a month\n'Fore your queen died, she was more worth such gazes\nThan what you look on now.\n\nLEONTES:\nI thought of her,\nEven in these looks I made.\nBut your petition\nIs yet unanswer'd. I will to your father:\nYour honour not o'erthrown by your desires,\nI am friend to them and you: upon which errand\nI now go toward him; therefore follow me\nAnd mark what way I make: come, good my lord.\n\nAUTOLYCUS:\nBeseech you, sir, were you present at this relation?\n\nFirst Gentleman:\nI was by at the opening of the fardel, heard the old\nshepherd deliver the manner how he found it:\nwhereupon, after a little amazedness, we were all\ncommanded out of the chamber; only this methought I\nheard the shepherd say, he found the child.\n\nAUTOLYCUS:\nI would most gladly know the issue of it.\n\nFirst Gentleman:\nI make a broken delivery of the business; but the\nchanges I perceived in the king and Camillo were\nvery notes of admiration: they seemed almost, with\nstaring on one another, to tear the cases of their\neyes; there was speech in their dumbness, language\nin their very gesture; they looked as they had heard\nof a world ransomed, or one destroyed: a notable\npassion of wonder appeared in them; but the wisest\nbeholder, that knew no more but seeing, could not\nsay if the importance were joy or sorrow; but in the\nextremity of the one, it must needs be.\nHere comes a gentleman that haply knows more.\nThe news, Rogero?\n\nSecond Gentleman:\nNothing but bonfires: the oracle is fulfilled; the\nking's daughter is found: such a deal of wonder is\nbroken out within this hour that ballad-makers\ncannot be able to express it.\nHere comes the Lady Paulina's steward: he can\ndeliver you more. How goes it now, sir? this news\nwhich is called true is so like an old tale, that\nthe verity of it is in strong suspicion: has the king\nfound his heir?\n\nThird Gentleman:\nMost true, if ever truth were pregnant by\ncircumstance: that which you hear you'll swear you\nsee, there is such unity in the proofs. The mantle\nof Queen Hermione's, her jewel about the neck of it,\nthe letters of Antigonus found with it which they\nknow to be his character, the majesty of the\ncreature in resemblance of the mother, the affection\nof nobleness which nature shows above her breeding,\nand many other evidences proclaim her with all\ncertainty to be the king's daughter. Did you see\nthe meeting of the two kings?\n\nSecond Gentleman:\nNo.\n\nThird Gentleman:\nThen have you lost a sight, which was to be seen,\ncannot be spoken of. There might you have beheld one\njoy crown another, so and in such manner that it\nseemed sorrow wept to take leave of them, for their\njoy waded in tears. There was casting up of eyes,\nholding up of hands, with countenances of such\ndistraction that they were to be known by garment,\nnot by favour. Our king, being ready to leap out of\nhimself for joy of his found daughter, as if that\njoy were now become a loss, cries 'O, thy mother,\nthy mother!' then asks Bohemia forgiveness; then\nembraces his son-in-law; then again worries he his\ndaughter with clipping her; now he thanks the old\nshepherd, which stands by like a weather-bitten\nconduit of many kings' reigns. I never heard of such\nanother encounter, which lames report to follow it\nand undoes description to do it.\n\nSecond Gentleman:\nWhat, pray you, became of Antigonus, that carried\nhence the child?\n\nThird Gentleman:\nLike an old tale still, which will have matter to\nrehearse, though credit be asleep and not an ear\nopen. He was torn to pieces with a bear: this\navouches the shepherd's son; who has not only his\ninnocence, which seems much, to justify him, but a\nhandkerchief and rings of his that Paulina knows.\n\nFirst Gentleman:\nWhat became of his bark and his followers?\n\nThird Gentleman:\nWrecked the same instant of their master's death and\nin the view of the shepherd: so that all the\ninstruments which aided to expose the child were\neven then lost when it was found. But O, the noble\ncombat that 'twixt joy and sorrow was fought in\nPaulina! She had one eye declined for the loss of\nher husband, another elevated that the oracle was\nfulfilled: she lifted the princess from the earth,\nand so locks her in embracing, as if she would pin\nher to her heart that she might no more be in danger\nof losing.\n\nFirst Gentleman:\nThe dignity of this act was worth the audience of\nkings and princes; for by such was it acted.\n\nThird Gentleman:\nOne of the prettiest touches of all and that which\nangled for mine eyes, caught the water though not\nthe fish, was when, at the relation of the queen's\ndeath, with the manner how she came to't bravely\nconfessed and lamented by the king, how\nattentiveness wounded his daughter; till, from one\nsign of dolour to another, she did, with an 'Alas,'\nI would fain say, bleed tears, for I am sure my\nheart wept blood. Who was most marble there changed\ncolour; some swooned, all sorrowed: if all the world\ncould have seen 't, the woe had been universal.\n\nFirst Gentleman:\nAre they returned to the court?\n\nThird Gentleman:\nNo: the princess hearing of her mother's statue,\nwhich is in the keeping of Paulina,--a piece many\nyears in doing and now newly performed by that rare\nItalian master, Julio Romano, who, had he himself\neternity and could put breath into his work, would\nbeguile Nature of her custom, so perfectly he is her\nape: he so near to Hermione hath done Hermione that\nthey say one would speak to her and stand in hope of\nanswer: thither with all greediness of affection\nare they gone, and there they intend to sup.\n\nSecond Gentleman:\nI thought she had some great matter there in hand;\nfor she hath privately twice or thrice a day, ever\nsince the death of Hermione, visited that removed\nhouse. Shall we thither and with our company piece\nthe rejoicing?\n\nFirst Gentleman:\nWho would be thence that has the benefit of access?\nevery wink of an eye some new grace will be born:\nour absence makes us unthrifty to our knowledge.\nLet's along.\n\nAUTOLYCUS:\nNow, had I not the dash of my former life in me,\nwould preferment drop on my head. I brought the old\nman and his son aboard the prince: told him I heard\nthem talk of a fardel and I know not what: but he\nat that time, overfond of the shepherd's daughter,\nso he then took her to be, who began to be much\nsea-sick, and himself little better, extremity of\nweather continuing, this mystery remained\nundiscovered. But 'tis all one to me; for had I\nbeen the finder out of this secret, it would not\nhave relished among my other discredits.\nHere come those I have done good to against my will,\nand already appearing in the blossoms of their fortune.\n\nShepherd:\nCome, boy; I am past moe children, but thy sons and\ndaughters will be all gentlemen born.\n\nClown:\nYou are well met, sir. You denied to fight with me\nthis other day, because I was no gentleman born.\nSee you these clothes? say you see them not and\nthink me still no gentleman born: you were best say\nthese robes are not gentlemen born: give me the\nlie, do, and try whether I am not now a gentleman born.\n\nAUTOLYCUS:\nI know you are now, sir, a gentleman born.\n\nClown:\nAy, and have been so any time these four hours.\n\nShepherd:\nAnd so have I, boy.\n\nClown:\nSo you have: but I was a gentleman born before my\nfather; for the king's son took me by the hand, and\ncalled me brother; and then the two kings called my\nfather brother; and then the prince my brother and\nthe princess my sister called my father father; and\nso we wept, and there was the first gentleman-like\ntears that ever we shed.\n\nShepherd:\nWe may live, son, to shed many more.\n\nClown:\nAy; or else 'twere hard luck, being in so\npreposterous estate as we are.\n\nAUTOLYCUS:\nI humbly beseech you, sir, to pardon me all the\nfaults I have committed to your worship and to give\nme your good report to the prince my master.\n\nShepherd:\nPrithee, son, do; for we must be gentle, now we are\ngentlemen.\n\nClown:\nThou wilt amend thy life?\n\nAUTOLYCUS:\nAy, an it like your good worship.\n\nClown:\nGive me thy hand: I will swear to the prince thou\nart as honest a true fellow as any is in Bohemia.\n\nShepherd:\nYou may say it, but not swear it.\n\nClown:\nNot swear it, now I am a gentleman? Let boors and\nfranklins say it, I'll swear it.\n\nShepherd:\nHow if it be false, son?\n\nClown:\nIf it be ne'er so false, a true gentleman may swear\nit in the behalf of his friend: and I'll swear to\nthe prince thou art a tall fellow of thy hands and\nthat thou wilt not be drunk; but I know thou art no\ntall fellow of thy hands and that thou wilt be\ndrunk: but I'll swear it, and I would thou wouldst\nbe a tall fellow of thy hands.\n\nAUTOLYCUS:\nI will prove so, sir, to my power.\n\nClown:\nAy, by any means prove a tall fellow: if I do not\nwonder how thou darest venture to be drunk, not\nbeing a tall fellow, trust me not. Hark! the kings\nand the princes, our kindred, are going to see the\nqueen's picture. Come, follow us: we'll be thy\ngood masters.\n\nLEONTES:\nO grave and good Paulina, the great comfort\nThat I have had of thee!\n\nPAULINA:\nWhat, sovereign sir,\nI did not well I meant well. All my services\nYou have paid home: but that you have vouchsafed,\nWith your crown'd brother and these your contracted\nHeirs of your kingdoms, my poor house to visit,\nIt is a surplus of your grace, which never\nMy life may last to answer.\n\nLEONTES:\nO Paulina,\nWe honour you with trouble: but we came\nTo see the statue of our queen: your gallery\nHave we pass'd through, not without much content\nIn many singularities; but we saw not\nThat which my daughter came to look upon,\nThe statue of her mother.\n\nPAULINA:\nAs she lived peerless,\nSo her dead likeness, I do well believe,\nExcels whatever yet you look'd upon\nOr hand of man hath done; therefore I keep it\nLonely, apart. But here it is: prepare\nTo see the life as lively mock'd as ever\nStill sleep mock'd death: behold, and say 'tis well.\nI like your silence, it the more shows off\nYour wonder: but yet speak; first, you, my liege,\nComes it not something near?\n\nLEONTES:\nHer natural posture!\nChide me, dear stone, that I may say indeed\nThou art Hermione; or rather, thou art she\nIn thy not chiding, for she was as tender\nAs infancy and grace. But yet, Paulina,\nHermione was not so much wrinkled, nothing\nSo aged as this seems.\n\nPOLIXENES:\nO, not by much.\n\nPAULINA:\nSo much the more our carver's excellence;\nWhich lets go by some sixteen years and makes her\nAs she lived now.\n\nLEONTES:\nAs now she might have done,\nSo much to my good comfort, as it is\nNow piercing to my soul. O, thus she stood,\nEven with such life of majesty, warm life,\nAs now it coldly stands, when first I woo'd her!\nI am ashamed: does not the stone rebuke me\nFor being more stone than it? O royal piece,\nThere's magic in thy majesty, which has\nMy evils conjured to remembrance and\nFrom thy admiring daughter took the spirits,\nStanding like stone with thee.\n\nPERDITA:\nAnd give me leave,\nAnd do not say 'tis superstition, that\nI kneel and then implore her blessing. Lady,\nDear queen, that ended when I but began,\nGive me that hand of yours to kiss.\n\nPAULINA:\nO, patience!\nThe statue is but newly fix'd, the colour's Not dry.\n\nCAMILLO:\nMy lord, your sorrow was too sore laid on,\nWhich sixteen winters cannot blow away,\nSo many summers dry; scarce any joy\nDid ever so long live; no sorrow\nBut kill'd itself much sooner.\n\nPOLIXENES:\nDear my brother,\nLet him that was the cause of this have power\nTo take off so much grief from you as he\nWill piece up in himself.\n\nPAULINA:\nIndeed, my lord,\nIf I had thought the sight of my poor image\nWould thus have wrought you,--for the stone is mine--\nI'ld not have show'd it.\n\nLEONTES:\nDo not draw the curtain.\n\nPAULINA:\nNo longer shall you gaze on't, lest your fancy\nMay think anon it moves.\n\nLEONTES:\nLet be, let be.\nWould I were dead, but that, methinks, already--\nWhat was he that did make it? See, my lord,\nWould you not deem it breathed? and that those veins\nDid verily bear blood?\n\nPOLIXENES:\nMasterly done:\nThe very life seems warm upon her lip.\n\nLEONTES:\nThe fixture of her eye has motion in't,\nAs we are mock'd with art.\n\nPAULINA:\nI'll draw the curtain:\nMy lord's almost so far transported that\nHe'll think anon it lives.\n\nLEONTES:\nO sweet Paulina,\nMake me to think so twenty years together!\nNo settled senses of the world can match\nThe pleasure of that madness. Let 't alone.\n\nPAULINA:\nI am sorry, sir, I have thus far stirr'd you: but\nI could afflict you farther.\n\nLEONTES:\nDo, Paulina;\nFor this affliction has a taste as sweet\nAs any cordial comfort. Still, methinks,\nThere is an air comes from her: what fine chisel\nCould ever yet cut breath? Let no man mock me,\nFor I will kiss her.\n\nPAULINA:\nGood my lord, forbear:\nThe ruddiness upon her lip is wet;\nYou'll mar it if you kiss it, stain your own\nWith oily painting. Shall I draw the curtain?\n\nLEONTES:\nNo, not these twenty years.\n\nPERDITA:\nSo long could I\nStand by, a looker on.\n\nPAULINA:\nEither forbear,\nQuit presently the chapel, or resolve you\nFor more amazement. If you can behold it,\nI'll make the statue move indeed, descend\nAnd take you by the hand; but then you'll think--\nWhich I protest against--I am assisted\nBy wicked powers.\n\nLEONTES:\nWhat you can make her do,\nI am content to look on: what to speak,\nI am content to hear; for 'tis as easy\nTo make her speak as move.\n\nPAULINA:\nIt is required\nYou do awake your faith. Then all stand still;\nOn: those that think it is unlawful business\nI am about, let them depart.\n\nLEONTES:\nProceed:\nNo foot shall stir.\n\nPAULINA:\nMusic, awake her; strike!\n'Tis time; descend; be stone no more; approach;\nStrike all that look upon with marvel. Come,\nI'll fill your grave up: stir, nay, come away,\nBequeath to death your numbness, for from him\nDear life redeems you. You perceive she stirs:\nStart not; her actions shall be holy as\nYou hear my spell is lawful: do not shun her\nUntil you see her die again; for then\nYou kill her double. Nay, present your hand:\nWhen she was young you woo'd her; now in age\nIs she become the suitor?\n\nLEONTES:\nO, she's warm!\nIf this be magic, let it be an art\nLawful as eating.\n\nPOLIXENES:\nShe embraces him.\n\nCAMILLO:\nShe hangs about his neck:\nIf she pertain to life let her speak too.\n\nPOLIXENES:\nAy, and make't manifest where she has lived,\nOr how stolen from the dead.\n\nPAULINA:\nThat she is living,\nWere it but told you, should be hooted at\nLike an old tale: but it appears she lives,\nThough yet she speak not. Mark a little while.\nPlease you to interpose, fair madam: kneel\nAnd pray your mother's blessing. Turn, good lady;\nOur Perdita is found.\n\nHERMIONE:\nYou gods, look down\nAnd from your sacred vials pour your graces\nUpon my daughter's head! Tell me, mine own.\nWhere hast thou been preserved? where lived? how found\nThy father's court? for thou shalt hear that I,\nKnowing by Paulina that the oracle\nGave hope thou wast in being, have preserved\nMyself to see the issue.\n\nPAULINA:\nThere's time enough for that;\nLest they desire upon this push to trouble\nYour joys with like relation. Go together,\nYou precious winners all; your exultation\nPartake to every one. I, an old turtle,\nWill wing me to some wither'd bough and there\nMy mate, that's never to be found again,\nLament till I am lost.\n\nLEONTES:\nO, peace, Paulina!\nThou shouldst a husband take by my consent,\nAs I by thine a wife: this is a match,\nAnd made between's by vows. Thou hast found mine;\nBut how, is to be question'd; for I saw her,\nAs I thought, dead, and have in vain said many\nA prayer upon her grave. I'll not seek far--\nFor him, I partly know his mind--to find thee\nAn honourable husband. Come, Camillo,\nAnd take her by the hand, whose worth and honesty\nIs richly noted and here justified\nBy us, a pair of kings. Let's from this place.\nWhat! look upon my brother: both your pardons,\nThat e'er I put between your holy looks\nMy ill suspicion. This is your son-in-law,\nAnd son unto the king, who, heavens directing,\nIs troth-plight to your daughter. Good Paulina,\nLead us from hence, where we may leisurely\nEach one demand an answer to his part\nPerform'd in this wide gap of time since first\nWe were dissever'd: hastily lead away.\n\nDUKE VINCENTIO:\nEscalus.\n\nESCALUS:\nMy lord.\n\nDUKE VINCENTIO:\nOf government the properties to unfold,\nWould seem in me to affect speech and discourse;\nSince I am put to know that your own science\nExceeds, in that, the lists of all advice\nMy strength can give you: then no more remains,\nBut that to your sufficiency, as your Worth is able,\nAnd let them work. The nature of our people,\nOur city's institutions, and the terms\nFor common justice, you're as pregnant in\nAs art and practise hath enriched any\nThat we remember. There is our commission,\nFrom which we would not have you warp. Call hither,\nI say, bid come before us Angelo.\nWhat figure of us think you he will bear?\nFor you must know, we have with special soul\nElected him our absence to supply,\nLent him our terror, dress'd him with our love,\nAnd given his deputation all the organs\nOf our own power: what think you of it?\n\nESCALUS:\nIf any in Vienna be of worth\nTo undergo such ample grace and honour,\nIt is Lord Angelo.\n\nDUKE VINCENTIO:\nLook where he comes.\n\nANGELO:\nAlways obedient to your grace's will,\nI come to know your pleasure.\n\nDUKE VINCENTIO:\nAngelo,\nThere is a kind of character in thy life,\nThat to the observer doth thy history\nFully unfold. Thyself and thy belongings\nAre not thine own so proper as to waste\nThyself upon thy virtues, they on thee.\nHeaven doth with us as we with torches do,\nNot light them for themselves; for if our virtues\nDid not go forth of us, 'twere all alike\nAs if we had them not. Spirits are not finely touch'd\nBut to fine issues, nor Nature never lends\nThe smallest scruple of her excellence\nBut, like a thrifty goddess, she determines\nHerself the glory of a creditor,\nBoth thanks and use. But I do bend my speech\nTo one that can my part in him advertise;\nHold therefore, Angelo:--\nIn our remove be thou at full ourself;\nMortality and mercy in Vienna\nLive in thy tongue and heart: old Escalus,\nThough first in question, is thy secondary.\nTake thy commission.\n\nANGELO:\nNow, good my lord,\nLet there be some more test made of my metal,\nBefore so noble and so great a figure\nBe stamp'd upon it.\n\nDUKE VINCENTIO:\nNo more evasion:\nWe have with a leaven'd and prepared choice\nProceeded to you; therefore take your honours.\nOur haste from hence is of so quick condition\nThat it prefers itself and leaves unquestion'd\nMatters of needful value. We shall write to you,\nAs time and our concernings shall importune,\nHow it goes with us, and do look to know\nWhat doth befall you here. So, fare you well;\nTo the hopeful execution do I leave you\nOf your commissions.\n\nANGELO:\nYet give leave, my lord,\nThat we may bring you something on the way.\n\nDUKE VINCENTIO:\nMy haste may not admit it;\nNor need you, on mine honour, have to do\nWith any scruple; your scope is as mine own\nSo to enforce or qualify the laws\nAs to your soul seems good. Give me your hand:\nI'll privily away. I love the people,\nBut do not like to stage me to their eyes:\nThrough it do well, I do not relish well\nTheir loud applause and Aves vehement;\nNor do I think the man of safe discretion\nThat does affect it. Once more, fare you well.\n\nANGELO:\nThe heavens give safety to your purposes!\n\nESCALUS:\nLead forth and bring you back in happiness!\n\nDUKE:\nI thank you. Fare you well.\n\nESCALUS:\nI shall desire you, sir, to give me leave\nTo have free speech with you; and it concerns me\nTo look into the bottom of my place:\nA power I have, but of what strength and nature\nI am not yet instructed.\n\nANGELO:\n'Tis so with me. Let us withdraw together,\nAnd we may soon our satisfaction have\nTouching that point.\n\nESCALUS:\nI'll wait upon your honour.\n\nLUCIO:\nIf the duke with the other dukes come not to\ncomposition with the King of Hungary, why then all\nthe dukes fall upon the king.\n\nFirst Gentleman:\nHeaven grant us its peace, but not the King of\nHungary's!\n\nSecond Gentleman:\nAmen.\n\nLUCIO:\nThou concludest like the sanctimonious pirate, that\nwent to sea with the Ten Commandments, but scraped\none out of the table.\n\nSecond Gentleman:\n'Thou shalt not steal'?\n\nLUCIO:\nAy, that he razed.\n\nFirst Gentleman:\nWhy, 'twas a commandment to command the captain and\nall the rest from their functions: they put forth\nto steal. There's not a soldier of us all, that, in\nthe thanksgiving before meat, do relish the petition\nwell that prays for peace.\n\nSecond Gentleman:\nI never heard any soldier dislike it.\n\nLUCIO:\nI believe thee; for I think thou never wast where\ngrace was said.\n\nSecond Gentleman:\nNo? a dozen times at least.\n\nFirst Gentleman:\nWhat, in metre?\n\nLUCIO:\nIn any proportion or in any language.\n\nFirst Gentleman:\nI think, or in any religion.\n\nLUCIO:\nAy, why not? Grace is grace, despite of all\ncontroversy: as, for example, thou thyself art a\nwicked villain, despite of all grace.\n\nFirst Gentleman:\nWell, there went but a pair of shears between us.\n\nLUCIO:\nI grant; as there may between the lists and the\nvelvet. Thou art the list.\n\nFirst Gentleman:\nAnd thou the velvet: thou art good velvet; thou'rt\na three-piled piece, I warrant thee: I had as lief\nbe a list of an English kersey as be piled, as thou\nart piled, for a French velvet. Do I speak\nfeelingly now?\n\nLUCIO:\nI think thou dost; and, indeed, with most painful\nfeeling of thy speech: I will, out of thine own\nconfession, learn to begin thy health; but, whilst I\nlive, forget to drink after thee.\n\nFirst Gentleman:\nI think I have done myself wrong, have I not?\n\nSecond Gentleman:\nYes, that thou hast, whether thou art tainted or free.\n\nLUCIO:\nBehold, behold. where Madam Mitigation comes! I\nhave purchased as many diseases under her roof as come to--\n\nSecond Gentleman:\nTo what, I pray?\n\nLUCIO:\nJudge.\n\nSecond Gentleman:\nTo three thousand dolours a year.\n\nFirst Gentleman:\nAy, and more.\n\nLUCIO:\nA French crown more.\n\nFirst Gentleman:\nThou art always figuring diseases in me; but thou\nart full of error; I am sound.\n\nLUCIO:\nNay, not as one would say, healthy; but so sound as\nthings that are hollow: thy bones are hollow;\nimpiety has made a feast of thee.\n\nFirst Gentleman:\nHow now! which of your hips has the most profound sciatica?\n\nMISTRESS OVERDONE:\nWell, well; there's one yonder arrested and carried\nto prison was worth five thousand of you all.\n\nSecond Gentleman:\nWho's that, I pray thee?\n\nMISTRESS OVERDONE:\nMarry, sir, that's Claudio, Signior Claudio.\n\nFirst Gentleman:\nClaudio to prison? 'tis not so.\n\nMISTRESS OVERDONE:\nNay, but I know 'tis so: I saw him arrested, saw\nhim carried away; and, which is more, within these\nthree days his head to be chopped off.\n\nLUCIO:\nBut, after all this fooling, I would not have it so.\nArt thou sure of this?\n\nMISTRESS OVERDONE:\nI am too sure of it: and it is for getting Madam\nJulietta with child.\n\nLUCIO:\nBelieve me, this may be: he promised to meet me two\nhours since, and he was ever precise in\npromise-keeping.\n\nSecond Gentleman:\nBesides, you know, it draws something near to the\nspeech we had to such a purpose.\n\nFirst Gentleman:\nBut, most of all, agreeing with the proclamation.\n\nLUCIO:\nAway! let's go learn the truth of it.\n\nMISTRESS OVERDONE:\nThus, what with the war, what with the sweat, what\nwith the gallows and what with poverty, I am\ncustom-shrunk.\nHow now! what's the news with you?\n\nPOMPEY:\nYonder man is carried to prison.\n\nMISTRESS OVERDONE:\nWell; what has he done?\n\nPOMPEY:\nA woman.\n\nMISTRESS OVERDONE:\nBut what's his offence?\n\nPOMPEY:\nGroping for trouts in a peculiar river.\n\nMISTRESS OVERDONE:\nWhat, is there a maid with child by him?\n\nPOMPEY:\nNo, but there's a woman with maid by him. You have\nnot heard of the proclamation, have you?\n\nMISTRESS OVERDONE:\nWhat proclamation, man?\n\nPOMPEY:\nAll houses in the suburbs of Vienna must be plucked down.\n\nMISTRESS OVERDONE:\nAnd what shall become of those in the city?\n\nPOMPEY:\nThey shall stand for seed: they had gone down too,\nbut that a wise burgher put in for them.\n\nMISTRESS OVERDONE:\nBut shall all our houses of resort in the suburbs be\npulled down?\n\nPOMPEY:\nTo the ground, mistress.\n\nMISTRESS OVERDONE:\nWhy, here's a change indeed in the commonwealth!\nWhat shall become of me?\n\nPOMPEY:\nCome; fear you not: good counsellors lack no\nclients: though you change your place, you need not\nchange your trade; I'll be your tapster still.\nCourage! there will be pity taken on you: you that\nhave worn your eyes almost out in the service, you\nwill be considered.\n\nMISTRESS OVERDONE:\nWhat's to do here, Thomas tapster? let's withdraw.\n\nPOMPEY:\nHere comes Signior Claudio, led by the provost to\nprison; and there's Madam Juliet.\n\nCLAUDIO:\nFellow, why dost thou show me thus to the world?\nBear me to prison, where I am committed.\n\nProvost:\nI do it not in evil disposition,\nBut from Lord Angelo by special charge.\n\nCLAUDIO:\nThus can the demigod Authority\nMake us pay down for our offence by weight\nThe words of heaven; on whom it will, it will;\nOn whom it will not, so; yet still 'tis just.\n\nLUCIO:\nWhy, how now, Claudio! whence comes this restraint?\n\nCLAUDIO:\nFrom too much liberty, my Lucio, liberty:\nAs surfeit is the father of much fast,\nSo every scope by the immoderate use\nTurns to restraint. Our natures do pursue,\nLike rats that ravin down their proper bane,\nA thirsty evil; and when we drink we die.\n\nLUCIO:\nIf could speak so wisely under an arrest, I would\nsend for certain of my creditors: and yet, to say\nthe truth, I had as lief have the foppery of freedom\nas the morality of imprisonment. What's thy\noffence, Claudio?\n\nCLAUDIO:\nWhat but to speak of would offend again.\n\nLUCIO:\nWhat, is't murder?\n\nCLAUDIO:\nNo.\n\nLUCIO:\nLechery?\n\nCLAUDIO:\nCall it so.\n\nProvost:\nAway, sir! you must go.\n\nCLAUDIO:\nOne word, good friend. Lucio, a word with you.\n\nLUCIO:\nA hundred, if they'll do you any good.\nIs lechery so look'd after?\n\nCLAUDIO:\nThus stands it with me: upon a true contract\nI got possession of Julietta's bed:\nYou know the lady; she is fast my wife,\nSave that we do the denunciation lack\nOf outward order: this we came not to,\nOnly for propagation of a dower\nRemaining in the coffer of her friends,\nFrom whom we thought it meet to hide our love\nTill time had made them for us. But it chances\nThe stealth of our most mutual entertainment\nWith character too gross is writ on Juliet.\n\nLUCIO:\nWith child, perhaps?\n\nCLAUDIO:\nUnhappily, even so.\nAnd the new deputy now for the duke--\nWhether it be the fault and glimpse of newness,\nOr whether that the body public be\nA horse whereon the governor doth ride,\nWho, newly in the seat, that it may know\nHe can command, lets it straight feel the spur;\nWhether the tyranny be in his place,\nOr in his emmence that fills it up,\nI stagger in:--but this new governor\nAwakes me all the enrolled penalties\nWhich have, like unscour'd armour, hung by the wall\nSo long that nineteen zodiacs have gone round\nAnd none of them been worn; and, for a name,\nNow puts the drowsy and neglected act\nFreshly on me: 'tis surely for a name.\n\nLUCIO:\nI warrant it is: and thy head stands so tickle on\nthy shoulders that a milkmaid, if she be in love,\nmay sigh it off. Send after the duke and appeal to\nhim.\n\nCLAUDIO:\nI have done so, but he's not to be found.\nI prithee, Lucio, do me this kind service:\nThis day my sister should the cloister enter\nAnd there receive her approbation:\nAcquaint her with the danger of my state:\nImplore her, in my voice, that she make friends\nTo the strict deputy; bid herself assay him:\nI have great hope in that; for in her youth\nThere is a prone and speechless dialect,\nSuch as move men; beside, she hath prosperous art\nWhen she will play with reason and discourse,\nAnd well she can persuade.\n\nLUCIO:\nI pray she may; as well for the encouragement of the\nlike, which else would stand under grievous\nimposition, as for the enjoying of thy life, who I\nwould be sorry should be thus foolishly lost at a\ngame of tick-tack. I'll to her.\n\nCLAUDIO:\nI thank you, good friend Lucio.\n\nLUCIO:\nWithin two hours.\n\nCLAUDIO:\nCome, officer, away!\n\nDUKE VINCENTIO:\nNo, holy father; throw away that thought;\nBelieve not that the dribbling dart of love\nCan pierce a complete bosom. Why I desire thee\nTo give me secret harbour, hath a purpose\nMore grave and wrinkled than the aims and ends\nOf burning youth.\n\nFRIAR THOMAS:\nMay your grace speak of it?\n\nDUKE VINCENTIO:\nMy holy sir, none better knows than you\nHow I have ever loved the life removed\nAnd held in idle price to haunt assemblies\nWhere youth, and cost, and witless bravery keeps.\nI have deliver'd to Lord Angelo,\nA man of stricture and firm abstinence,\nMy absolute power and place here in Vienna,\nAnd he supposes me travell'd to Poland;\nFor so I have strew'd it in the common ear,\nAnd so it is received. Now, pious sir,\nYou will demand of me why I do this?\n\nFRIAR THOMAS:\nGladly, my lord.\n\nDUKE VINCENTIO:\nWe have strict statutes and most biting laws.\nThe needful bits and curbs to headstrong weeds,\nWhich for this nineteen years we have let slip;\nEven like an o'ergrown lion in a cave,\nThat goes not out to prey. Now, as fond fathers,\nHaving bound up the threatening twigs of birch,\nOnly to stick it in their children's sight\nFor terror, not to use, in time the rod\nBecomes more mock'd than fear'd; so our decrees,\nDead to infliction, to themselves are dead;\nAnd liberty plucks justice by the nose;\nThe baby beats the nurse, and quite athwart\nGoes all decorum.\n\nFRIAR THOMAS:\nIt rested in your grace\nTo unloose this tied-up justice when you pleased:\nAnd it in you more dreadful would have seem'd\nThan in Lord Angelo.\n\nDUKE VINCENTIO:\nI do fear, too dreadful:\nSith 'twas my fault to give the people scope,\n'Twould be my tyranny to strike and gall them\nFor what I bid them do: for we bid this be done,\nWhen evil deeds have their permissive pass\nAnd not the punishment. Therefore indeed, my father,\nI have on Angelo imposed the office;\nWho may, in the ambush of my name, strike home,\nAnd yet my nature never in the fight\nTo do in slander. And to behold his sway,\nI will, as 'twere a brother of your order,\nVisit both prince and people: therefore, I prithee,\nSupply me with the habit and instruct me\nHow I may formally in person bear me\nLike a true friar. More reasons for this action\nAt our more leisure shall I render you;\nOnly, this one: Lord Angelo is precise;\nStands at a guard with envy; scarce confesses\nThat his blood flows, or that his appetite\nIs more to bread than stone: hence shall we see,\nIf power change purpose, what our seemers be.\n\nISABELLA:\nAnd have you nuns no farther privileges?\n\nFRANCISCA:\nAre not these large enough?\n\nISABELLA:\nYes, truly; I speak not as desiring more;\nBut rather wishing a more strict restraint\nUpon the sisterhood, the votarists of Saint Clare.\n\nLUCIO:\n\nISABELLA:\nWho's that which calls?\n\nFRANCISCA:\nIt is a man's voice. Gentle Isabella,\nTurn you the key, and know his business of him;\nYou may, I may not; you are yet unsworn.\nWhen you have vow'd, you must not speak with men\nBut in the presence of the prioress:\nThen, if you speak, you must not show your face,\nOr, if you show your face, you must not speak.\nHe calls again; I pray you, answer him.\n\nISABELLA:\nPeace and prosperity! Who is't that calls\n\nLUCIO:\nHail, virgin, if you be, as those cheek-roses\nProclaim you are no less! Can you so stead me\nAs bring me to the sight of Isabella,\nA novice of this place and the fair sister\nTo her unhappy brother Claudio?\n\nISABELLA:\nWhy 'her unhappy brother'? let me ask,\nThe rather for I now must make you know\nI am that Isabella and his sister.\n\nLUCIO:\nGentle and fair, your brother kindly greets you:\nNot to be weary with you, he's in prison.\n\nISABELLA:\nWoe me! for what?\n\nLUCIO:\nFor that which, if myself might be his judge,\nHe should receive his punishment in thanks:\nHe hath got his friend with child.\n\nISABELLA:\nSir, make me not your story.\n\nLUCIO:\nIt is true.\nI would not--though 'tis my familiar sin\nWith maids to seem the lapwing and to jest,\nTongue far from heart--play with all virgins so:\nI hold you as a thing ensky'd and sainted.\nBy your renouncement an immortal spirit,\nAnd to be talk'd with in sincerity,\nAs with a saint.\n\nISABELLA:\nYou do blaspheme the good in mocking me.\n\nLUCIO:\nDo not believe it. Fewness and truth, 'tis thus:\nYour brother and his lover have embraced:\nAs those that feed grow full, as blossoming time\nThat from the seedness the bare fallow brings\nTo teeming foison, even so her plenteous womb\nExpresseth his full tilth and husbandry.\n\nISABELLA:\nSome one with child by him? My cousin Juliet?\n\nLUCIO:\nIs she your cousin?\n\nISABELLA:\nAdoptedly; as school-maids change their names\nBy vain though apt affection.\n\nLUCIO:\nShe it is.\n\nISABELLA:\nO, let him marry her.\n\nLUCIO:\nThis is the point.\nThe duke is very strangely gone from hence;\nBore many gentlemen, myself being one,\nIn hand and hope of action: but we do learn\nBy those that know the very nerves of state,\nHis givings-out were of an infinite distance\nFrom his true-meant design. Upon his place,\nAnd with full line of his authority,\nGoverns Lord Angelo; a man whose blood\nIs very snow-broth; one who never feels\nThe wanton stings and motions of the sense,\nBut doth rebate and blunt his natural edge\nWith profits of the mind, study and fast.\nHe--to give fear to use and liberty,\nWhich have for long run by the hideous law,\nAs mice by lions--hath pick'd out an act,\nUnder whose heavy sense your brother's life\nFalls into forfeit: he arrests him on it;\nAnd follows close the rigour of the statute,\nTo make him an example. All hope is gone,\nUnless you have the grace by your fair prayer\nTo soften Angelo: and that's my pith of business\n'Twixt you and your poor brother.\n\nISABELLA:\nDoth he so seek his life?\n\nLUCIO:\nHas censured him\nAlready; and, as I hear, the provost hath\nA warrant for his execution.\n\nISABELLA:\nAlas! what poor ability's in me\nTo do him good?\n\nLUCIO:\nAssay the power you have.\n\nISABELLA:\nMy power? Alas, I doubt--\n\nLUCIO:\nOur doubts are traitors\nAnd make us lose the good we oft might win\nBy fearing to attempt. Go to Lord Angelo,\nAnd let him learn to know, when maidens sue,\nMen give like gods; but when they weep and kneel,\nAll their petitions are as freely theirs\nAs they themselves would owe them.\n\nISABELLA:\nI'll see what I can do.\n\nLUCIO:\nBut speedily.\n\nISABELLA:\nI will about it straight;\nNo longer staying but to give the mother\nNotice of my affair. I humbly thank you:\nCommend me to my brother: soon at night\nI'll send him certain word of my success.\n\nLUCIO:\nI take my leave of you.\n\nISABELLA:\nGood sir, adieu.\n\nANGELO:\nWe must not make a scarecrow of the law,\nSetting it up to fear the birds of prey,\nAnd let it keep one shape, till custom make it\nTheir perch and not their terror.\n\nESCALUS:\nAy, but yet\nLet us be keen, and rather cut a little,\nThan fall, and bruise to death. Alas, this gentleman\nWhom I would save, had a most noble father!\nLet but your honour know,\nWhom I believe to be most strait in virtue,\nThat, in the working of your own affections,\nHad time cohered with place or place with wishing,\nOr that the resolute acting of your blood\nCould have attain'd the effect of your own purpose,\nWhether you had not sometime in your life\nErr'd in this point which now you censure him,\nAnd pull'd the law upon you.\n\nANGELO:\n'Tis one thing to be tempted, Escalus,\nAnother thing to fall. I not deny,\nThe jury, passing on the prisoner's life,\nMay in the sworn twelve have a thief or two\nGuiltier than him they try. What's open made to justice,\nThat justice seizes: what know the laws\nThat thieves do pass on thieves? 'Tis very pregnant,\nThe jewel that we find, we stoop and take't\nBecause we see it; but what we do not see\nWe tread upon, and never think of it.\nYou may not so extenuate his offence\nFor I have had such faults; but rather tell me,\nWhen I, that censure him, do so offend,\nLet mine own judgment pattern out my death,\nAnd nothing come in partial. Sir, he must die.\n\nESCALUS:\nBe it as your wisdom will.\n\nANGELO:\nWhere is the provost?\n\nProvost:\nHere, if it like your honour.\n\nANGELO:\nSee that Claudio\nBe executed by nine to-morrow morning:\nBring him his confessor, let him be prepared;\nFor that's the utmost of his pilgrimage.\n\nESCALUS:\n\nELBOW:\nCome, bring them away: if these be good people in\na commonweal that do nothing but use their abuses in\ncommon houses, I know no law: bring them away.\n\nANGELO:\nHow now, sir! What's your name? and what's the matter?\n\nELBOW:\nIf it Please your honour, I am the poor duke's\nconstable, and my name is Elbow: I do lean upon\njustice, sir, and do bring in here before your good\nhonour two notorious benefactors.\n\nANGELO:\nBenefactors? Well; what benefactors are they? are\nthey not malefactors?\n\nELBOW:\nIf it? please your honour, I know not well what they\nare: but precise villains they are, that I am sure\nof; and void of all profanation in the world that\ngood Christians ought to have.\n\nESCALUS:\nThis comes off well; here's a wise officer.\n\nANGELO:\nGo to: what quality are they of? Elbow is your\nname? why dost thou not speak, Elbow?\n\nPOMPEY:\nHe cannot, sir; he's out at elbow.\n\nANGELO:\nWhat are you, sir?\n\nELBOW:\nHe, sir! a tapster, sir; parcel-bawd; one that\nserves a bad woman; whose house, sir, was, as they\nsay, plucked down in the suburbs; and now she\nprofesses a hot-house, which, I think, is a very ill house too.\n\nESCALUS:\nHow know you that?\n\nELBOW:\nMy wife, sir, whom I detest before heaven and your honour,--\n\nESCALUS:\nHow? thy wife?\n\nELBOW:\nAy, sir; whom, I thank heaven, is an honest woman,--\n\nESCALUS:\nDost thou detest her therefore?\n\nELBOW:\nI say, sir, I will detest myself also, as well as\nshe, that this house, if it be not a bawd's house,\nit is pity of her life, for it is a naughty house.\n\nESCALUS:\nHow dost thou know that, constable?\n\nELBOW:\nMarry, sir, by my wife; who, if she had been a woman\ncardinally given, might have been accused in\nfornication, adultery, and all uncleanliness there.\n\nESCALUS:\nBy the woman's means?\n\nELBOW:\nAy, sir, by Mistress Overdone's means: but as she\nspit in his face, so she defied him.\n\nPOMPEY:\nSir, if it please your honour, this is not so.\n\nELBOW:\nProve it before these varlets here, thou honourable\nman; prove it.\n\nESCALUS:\nDo you hear how he misplaces?\n\nPOMPEY:\nSir, she came in great with child; and longing,\nsaving your honour's reverence, for stewed prunes;\nsir, we had but two in the house, which at that very\ndistant time stood, as it were, in a fruit-dish, a\ndish of some three-pence; your honours have seen\nsuch dishes; they are not China dishes, but very\ngood dishes,--\n\nESCALUS:\nGo to, go to: no matter for the dish, sir.\n\nPOMPEY:\nNo, indeed, sir, not of a pin; you are therein in\nthe right: but to the point. As I say, this\nMistress Elbow, being, as I say, with child, and\nbeing great-bellied, and longing, as I said, for\nprunes; and having but two in the dish, as I said,\nMaster Froth here, this very man, having eaten the\nrest, as I said, and, as I say, paying for them very\nhonestly; for, as you know, Master Froth, I could\nnot give you three-pence again.\n\nFROTH:\nNo, indeed.\n\nPOMPEY:\nVery well: you being then, if you be remembered,\ncracking the stones of the foresaid prunes,--\n\nFROTH:\nAy, so I did indeed.\n\nPOMPEY:\nWhy, very well; I telling you then, if you be\nremembered, that such a one and such a one were past\ncure of the thing you wot of, unless they kept very\ngood diet, as I told you,--\n\nFROTH:\nAll this is true.\n\nPOMPEY:\nWhy, very well, then,--\n\nESCALUS:\nCome, you are a tedious fool: to the purpose. What\nwas done to Elbow's wife, that he hath cause to\ncomplain of? Come me to what was done to her.\n\nPOMPEY:\nSir, your honour cannot come to that yet.\n\nESCALUS:\nNo, sir, nor I mean it not.\n\nPOMPEY:\nSir, but you shall come to it, by your honour's\nleave. And, I beseech you, look into Master Froth\nhere, sir; a man of four-score pound a year; whose\nfather died at Hallowmas: was't not at Hallowmas,\nMaster Froth?\n\nFROTH:\nAll-hallond eve.\n\nPOMPEY:\nWhy, very well; I hope here be truths. He, sir,\nsitting, as I say, in a lower chair, sir; 'twas in\nthe Bunch of Grapes, where indeed you have a delight\nto sit, have you not?\n\nFROTH:\nI have so; because it is an open room and good for winter.\n\nPOMPEY:\nWhy, very well, then; I hope here be truths.\n\nANGELO:\nThis will last out a night in Russia,\nWhen nights are longest there: I'll take my leave.\nAnd leave you to the hearing of the cause;\nHoping you'll find good cause to whip them all.\n\nESCALUS:\nI think no less. Good morrow to your lordship.\nNow, sir, come on: what was done to Elbow's wife, once more?\n\nPOMPEY:\nOnce, sir? there was nothing done to her once.\n\nELBOW:\nI beseech you, sir, ask him what this man did to my wife.\n\nPOMPEY:\nI beseech your honour, ask me.\n\nESCALUS:\nWell, sir; what did this gentleman to her?\n\nPOMPEY:\nI beseech you, sir, look in this gentleman's face.\nGood Master Froth, look upon his honour; 'tis for a\ngood purpose. Doth your honour mark his face?\n\nESCALUS:\nAy, sir, very well.\n\nPOMPEY:\nNay; I beseech you, mark it well.\n\nESCALUS:\nWell, I do so.\n\nPOMPEY:\nDoth your honour see any harm in his face?\n\nESCALUS:\nWhy, no.\n\nPOMPEY:\nI'll be supposed upon a book, his face is the worst\nthing about him. Good, then; if his face be the\nworst thing about him, how could Master Froth do the\nconstable's wife any harm? I would know that of\nyour honour.\n\nESCALUS:\nHe's in the right. Constable, what say you to it?\n\nELBOW:\nFirst, an it like you, the house is a respected\nhouse; next, this is a respected fellow; and his\nmistress is a respected woman.\n\nPOMPEY:\nBy this hand, sir, his wife is a more respected\nperson than any of us all.\n\nELBOW:\nVarlet, thou liest; thou liest, wicked varlet! the\ntime has yet to come that she was ever respected\nwith man, woman, or child.\n\nPOMPEY:\nSir, she was respected with him before he married with her.\n\nESCALUS:\nWhich is the wiser here? Justice or Iniquity? Is\nthis true?\n\nELBOW:\nO thou caitiff! O thou varlet! O thou wicked\nHannibal! I respected with her before I was married\nto her! If ever I was respected with her, or she\nwith me, let not your worship think me the poor\nduke's officer. Prove this, thou wicked Hannibal, or\nI'll have mine action of battery on thee.\n\nESCALUS:\nIf he took you a box o' the ear, you might have your\naction of slander too.\n\nELBOW:\nMarry, I thank your good worship for it. What is't\nyour worship's pleasure I shall do with this wicked caitiff?\n\nESCALUS:\nTruly, officer, because he hath some offences in him\nthat thou wouldst discover if thou couldst, let him\ncontinue in his courses till thou knowest what they\nare.\n\nELBOW:\nMarry, I thank your worship for it. Thou seest, thou\nwicked varlet, now, what's come upon thee: thou art\nto continue now, thou varlet; thou art to continue.\n\nESCALUS:\nWhere were you born, friend?\n\nFROTH:\nHere in Vienna, sir.\n\nESCALUS:\nAre you of fourscore pounds a year?\n\nFROTH:\nYes, an't please you, sir.\n\nESCALUS:\nSo. What trade are you of, sir?\n\nPOMPHEY:\nTapster; a poor widow's tapster.\n\nESCALUS:\nYour mistress' name?\n\nPOMPHEY:\nMistress Overdone.\n\nESCALUS:\nHath she had any more than one husband?\n\nPOMPEY:\nNine, sir; Overdone by the last.\n\nESCALUS:\nNine! Come hither to me, Master Froth. Master\nFroth, I would not have you acquainted with\ntapsters: they will draw you, Master Froth, and you\nwill hang them. Get you gone, and let me hear no\nmore of you.\n\nFROTH:\nI thank your worship. For mine own part, I never\ncome into any room in a tap-house, but I am drawn\nin.\n\nESCALUS:\nWell, no more of it, Master Froth: farewell.\nCome you hither to me, Master tapster. What's your\nname, Master tapster?\n\nPOMPEY:\nPompey.\n\nESCALUS:\nWhat else?\n\nPOMPEY:\nBum, sir.\n\nESCALUS:\nTroth, and your bum is the greatest thing about you;\nso that in the beastliest sense you are Pompey the\nGreat. Pompey, you are partly a bawd, Pompey,\nhowsoever you colour it in being a tapster, are you\nnot? come, tell me true: it shall be the better for you.\n\nPOMPEY:\nTruly, sir, I am a poor fellow that would live.\n\nESCALUS:\nHow would you live, Pompey? by being a bawd? What\ndo you think of the trade, Pompey? is it a lawful trade?\n\nPOMPEY:\nIf the law would allow it, sir.\n\nESCALUS:\nBut the law will not allow it, Pompey; nor it shall\nnot be allowed in Vienna.\n\nPOMPEY:\nDoes your worship mean to geld and splay all the\nyouth of the city?\n\nESCALUS:\nNo, Pompey.\n\nPOMPEY:\nTruly, sir, in my poor opinion, they will to't then.\nIf your worship will take order for the drabs and\nthe knaves, you need not to fear the bawds.\n\nESCALUS:\nThere are pretty orders beginning, I can tell you:\nit is but heading and hanging.\n\nPOMPEY:\nIf you head and hang all that offend that way but\nfor ten year together, you'll be glad to give out a\ncommission for more heads: if this law hold in\nVienna ten year, I'll rent the fairest house in it\nafter three-pence a bay: if you live to see this\ncome to pass, say Pompey told you so.\n\nESCALUS:\nThank you, good Pompey; and, in requital of your\nprophecy, hark you: I advise you, let me not find\nyou before me again upon any complaint whatsoever;\nno, not for dwelling where you do: if I do, Pompey,\nI shall beat you to your tent, and prove a shrewd\nCaesar to you; in plain dealing, Pompey, I shall\nhave you whipt: so, for this time, Pompey, fare you well.\n\nPOMPEY:\nI thank your worship for your good counsel:\nbut I shall follow it as the flesh and fortune shall\nbetter determine.\nWhip me? No, no; let carman whip his jade:\nThe valiant heart is not whipt out of his trade.\n\nESCALUS:\nCome hither to me, Master Elbow; come hither, Master\nconstable. How long have you been in this place of constable?\n\nELBOW:\nSeven year and a half, sir.\n\nESCALUS:\nI thought, by your readiness in the office, you had\ncontinued in it some time. You say, seven years together?\n\nELBOW:\nAnd a half, sir.\n\nESCALUS:\nAlas, it hath been great pains to you. They do you\nwrong to put you so oft upon 't: are there not men\nin your ward sufficient to serve it?\n\nELBOW:\nFaith, sir, few of any wit in such matters: as they\nare chosen, they are glad to choose me for them; I\ndo it for some piece of money, and go through with\nall.\n\nESCALUS:\nLook you bring me in the names of some six or seven,\nthe most sufficient of your parish.\n\nELBOW:\nTo your worship's house, sir?\n\nESCALUS:\nTo my house. Fare you well.\nWhat's o'clock, think you?\n\nJustice:\nEleven, sir.\n\nESCALUS:\nI pray you home to dinner with me.\n\nJustice:\nI humbly thank you.\n\nESCALUS:\nIt grieves me for the death of Claudio;\nBut there's no remedy.\n\nJustice:\nLord Angelo is severe.\n\nESCALUS:\nIt is but needful:\nMercy is not itself, that oft looks so;\nPardon is still the nurse of second woe:\nBut yet,--poor Claudio! There is no remedy.\nCome, sir.\n\nServant:\nHe's hearing of a cause; he will come straight\nI'll tell him of you.\n\nProvost:\nPray you, do.\nI'll know\nHis pleasure; may be he will relent. Alas,\nHe hath but as offended in a dream!\nAll sects, all ages smack of this vice; and he\nTo die for't!\n\nANGELO:\nNow, what's the matter. Provost?\n\nProvost:\nIs it your will Claudio shall die tomorrow?\n\nANGELO:\nDid not I tell thee yea? hadst thou not order?\nWhy dost thou ask again?\n\nProvost:\nLest I might be too rash:\nUnder your good correction, I have seen,\nWhen, after execution, judgment hath\nRepented o'er his doom.\n\nANGELO:\nGo to; let that be mine:\nDo you your office, or give up your place,\nAnd you shall well be spared.\n\nProvost:\nI crave your honour's pardon.\nWhat shall be done, sir, with the groaning Juliet?\nShe's very near her hour.\n\nANGELO:\nDispose of her\nTo some more fitter place, and that with speed.\n\nServant:\nHere is the sister of the man condemn'd\nDesires access to you.\n\nANGELO:\nHath he a sister?\n\nProvost:\nAy, my good lord; a very virtuous maid,\nAnd to be shortly of a sisterhood,\nIf not already.\n\nANGELO:\nWell, let her be admitted.\nSee you the fornicatress be removed:\nLet have needful, but not lavish, means;\nThere shall be order for't.\n\nProvost:\nGod save your honour!\n\nANGELO:\nStay a little while.\nYou're welcome: what's your will?\n\nISABELLA:\nI am a woeful suitor to your honour,\nPlease but your honour hear me.\n\nANGELO:\nWell; what's your suit?\n\nISABELLA:\nThere is a vice that most I do abhor,\nAnd most desire should meet the blow of justice;\nFor which I would not plead, but that I must;\nFor which I must not plead, but that I am\nAt war 'twixt will and will not.\n\nANGELO:\nWell; the matter?\n\nISABELLA:\nI have a brother is condemn'd to die:\nI do beseech you, let it be his fault,\nAnd not my brother.\n\nProvost:\n\nANGELO:\nCondemn the fault and not the actor of it?\nWhy, every fault's condemn'd ere it be done:\nMine were the very cipher of a function,\nTo fine the faults whose fine stands in record,\nAnd let go by the actor.\n\nISABELLA:\nO just but severe law!\nI had a brother, then. Heaven keep your honour!\n\nLUCIO:\n\nISABELLA:\nMust he needs die?\n\nANGELO:\nMaiden, no remedy.\n\nISABELLA:\nYes; I do think that you might pardon him,\nAnd neither heaven nor man grieve at the mercy.\n\nANGELO:\nI will not do't.\n\nISABELLA:\nBut can you, if you would?\n\nANGELO:\nLook, what I will not, that I cannot do.\n\nISABELLA:\nBut might you do't, and do the world no wrong,\nIf so your heart were touch'd with that remorse\nAs mine is to him?\n\nANGELO:\nHe's sentenced; 'tis too late.\n\nLUCIO:\n\nISABELLA:\nToo late? why, no; I, that do speak a word.\nMay call it back again. Well, believe this,\nNo ceremony that to great ones 'longs,\nNot the king's crown, nor the deputed sword,\nThe marshal's truncheon, nor the judge's robe,\nBecome them with one half so good a grace\nAs mercy does.\nIf he had been as you and you as he,\nYou would have slipt like him; but he, like you,\nWould not have been so stern.\n\nANGELO:\nPray you, be gone.\n\nISABELLA:\nI would to heaven I had your potency,\nAnd you were Isabel! should it then be thus?\nNo; I would tell what 'twere to be a judge,\nAnd what a prisoner.\n\nLUCIO:\n\nANGELO:\nYour brother is a forfeit of the law,\nAnd you but waste your words.\n\nISABELLA:\nAlas, alas!\nWhy, all the souls that were were forfeit once;\nAnd He that might the vantage best have took\nFound out the remedy. How would you be,\nIf He, which is the top of judgment, should\nBut judge you as you are? O, think on that;\nAnd mercy then will breathe within your lips,\nLike man new made.\n\nANGELO:\nBe you content, fair maid;\nIt is the law, not I condemn your brother:\nWere he my kinsman, brother, or my son,\nIt should be thus with him: he must die tomorrow.\n\nISABELLA:\nTo-morrow! O, that's sudden! Spare him, spare him!\nHe's not prepared for death. Even for our kitchens\nWe kill the fowl of season: shall we serve heaven\nWith less respect than we do minister\nTo our gross selves? Good, good my lord, bethink you;\nWho is it that hath died for this offence?\nThere's many have committed it.\n\nLUCIO:\n\nANGELO:\nThe law hath not been dead, though it hath slept:\nThose many had not dared to do that evil,\nIf the first that did the edict infringe\nHad answer'd for his deed: now 'tis awake\nTakes note of what is done; and, like a prophet,\nLooks in a glass, that shows what future evils,\nEither new, or by remissness new-conceived,\nAnd so in progress to be hatch'd and born,\nAre now to have no successive degrees,\nBut, ere they live, to end.\n\nISABELLA:\nYet show some pity.\n\nANGELO:\nI show it most of all when I show justice;\nFor then I pity those I do not know,\nWhich a dismiss'd offence would after gall;\nAnd do him right that, answering one foul wrong,\nLives not to act another. Be satisfied;\nYour brother dies to-morrow; be content.\n\nISABELLA:\nSo you must be the first that gives this sentence,\nAnd he, that suffer's. O, it is excellent\nTo have a giant's strength; but it is tyrannous\nTo use it like a giant.\n\nLUCIO:\n\nISABELLA:\nCould great men thunder\nAs Jove himself does, Jove would ne'er be quiet,\nFor every pelting, petty officer\nWould use his heaven for thunder;\nNothing but thunder! Merciful Heaven,\nThou rather with thy sharp and sulphurous bolt\nSplit'st the unwedgeable and gnarled oak\nThan the soft myrtle: but man, proud man,\nDrest in a little brief authority,\nMost ignorant of what he's most assured,\nHis glassy essence, like an angry ape,\nPlays such fantastic tricks before high heaven\nAs make the angels weep; who, with our spleens,\nWould all themselves laugh mortal.\n\nLUCIO:\n\nProvost:\n\nISABELLA:\nWe cannot weigh our brother with ourself:\nGreat men may jest with saints; 'tis wit in them,\nBut in the less foul profanation.\n\nLUCIO:\nThou'rt i' the right, girl; more o, that.\n\nISABELLA:\nThat in the captain's but a choleric word,\nWhich in the soldier is flat blasphemy.\n\nLUCIO:\n\nANGELO:\nWhy do you put these sayings upon me?\n\nISABELLA:\nBecause authority, though it err like others,\nHath yet a kind of medicine in itself,\nThat skins the vice o' the top. Go to your bosom;\nKnock there, and ask your heart what it doth know\nThat's like my brother's fault: if it confess\nA natural guiltiness such as is his,\nLet it not sound a thought upon your tongue\nAgainst my brother's life.\n\nANGELO:\n\nISABELLA:\nGentle my lord, turn back.\n\nANGELO:\nI will bethink me: come again tomorrow.\n\nISABELLA:\nHark how I'll bribe you: good my lord, turn back.\n\nANGELO:\nHow! bribe me?\n\nISABELLA:\nAy, with such gifts that heaven shall share with you.\n\nLUCIO:\n\nISABELLA:\nNot with fond shekels of the tested gold,\nOr stones whose rates are either rich or poor\nAs fancy values them; but with true prayers\nThat shall be up at heaven and enter there\nEre sun-rise, prayers from preserved souls,\nFrom fasting maids whose minds are dedicate\nTo nothing temporal.\n\nANGELO:\nWell; come to me to-morrow.\n\nLUCIO:\n\nISABELLA:\nHeaven keep your honour safe!\n\nANGELO:\n\nISABELLA:\nAt what hour to-morrow\nShall I attend your lordship?\n\nANGELO:\nAt any time 'fore noon.\n\nISABELLA:\n'Save your honour!\n\nANGELO:\nFrom thee, even from thy virtue!\nWhat's this, what's this? Is this her fault or mine?\nThe tempter or the tempted, who sins most?\nHa!\nNot she: nor doth she tempt: but it is I\nThat, lying by the violet in the sun,\nDo as the carrion does, not as the flower,\nCorrupt with virtuous season. Can it be\nThat modesty may more betray our sense\nThan woman's lightness? Having waste ground enough,\nShall we desire to raze the sanctuary\nAnd pitch our evils there? O, fie, fie, fie!\nWhat dost thou, or what art thou, Angelo?\nDost thou desire her foully for those things\nThat make her good? O, let her brother live!\nThieves for their robbery have authority\nWhen judges steal themselves. What, do I love her,\nThat I desire to hear her speak again,\nAnd feast upon her eyes? What is't I dream on?\nO cunning enemy, that, to catch a saint,\nWith saints dost bait thy hook! Most dangerous\nIs that temptation that doth goad us on\nTo sin in loving virtue: never could the strumpet,\nWith all her double vigour, art and nature,\nOnce stir my temper; but this virtuous maid\nSubdues me quite. Even till now,\nWhen men were fond, I smiled and wonder'd how.\n\nDUKE VINCENTIO:\nHail to you, provost! so I think you are.\n\nProvost:\nI am the provost. What's your will, good friar?\n\nDUKE VINCENTIO:\nBound by my charity and my blest order,\nI come to visit the afflicted spirits\nHere in the prison. Do me the common right\nTo let me see them and to make me know\nThe nature of their crimes, that I may minister\nTo them accordingly.\n\nProvost:\nI would do more than that, if more were needful.\nLook, here comes one: a gentlewoman of mine,\nWho, falling in the flaws of her own youth,\nHath blister'd her report: she is with child;\nAnd he that got it, sentenced; a young man\nMore fit to do another such offence\nThan die for this.\n\nDUKE VINCENTIO:\nWhen must he die?\n\nProvost:\nAs I do think, to-morrow.\nI have provided for you: stay awhile,\nAnd you shall be conducted.\n\nDUKE VINCENTIO:\nRepent you, fair one, of the sin you carry?\n\nJULIET:\nI do; and bear the shame most patiently.\n\nDUKE VINCENTIO:\nI'll teach you how you shall arraign your conscience,\nAnd try your penitence, if it be sound,\nOr hollowly put on.\n\nJULIET:\nI'll gladly learn.\n\nDUKE VINCENTIO:\nLove you the man that wrong'd you?\n\nJULIET:\nYes, as I love the woman that wrong'd him.\n\nDUKE VINCENTIO:\nSo then it seems your most offenceful act\nWas mutually committed?\n\nJULIET:\nMutually.\n\nDUKE VINCENTIO:\nThen was your sin of heavier kind than his.\n\nJULIET:\nI do confess it, and repent it, father.\n\nDUKE VINCENTIO:\n'Tis meet so, daughter: but lest you do repent,\nAs that the sin hath brought you to this shame,\nWhich sorrow is always towards ourselves, not heaven,\nShowing we would not spare heaven as we love it,\nBut as we stand in fear,--\n\nJULIET:\nI do repent me, as it is an evil,\nAnd take the shame with joy.\n\nDUKE VINCENTIO:\nThere rest.\nYour partner, as I hear, must die to-morrow,\nAnd I am going with instruction to him.\nGrace go with you, Benedicite!\n\nJULIET:\nMust die to-morrow! O injurious love,\nThat respites me a life, whose very comfort\nIs still a dying horror!\n\nProvost:\n'Tis pity of him.\n\nANGELO:\nWhen I would pray and think, I think and pray\nTo several subjects. Heaven hath my empty words;\nWhilst my invention, hearing not my tongue,\nAnchors on Isabel: Heaven in my mouth,\nAs if I did but only chew his name;\nAnd in my heart the strong and swelling evil\nOf my conception. The state, whereon I studied\nIs like a good thing, being often read,\nGrown fear'd and tedious; yea, my gravity,\nWherein--let no man hear me--I take pride,\nCould I with boot change for an idle plume,\nWhich the air beats for vain. O place, O form,\nHow often dost thou with thy case, thy habit,\nWrench awe from fools and tie the wiser souls\nTo thy false seeming! Blood, thou art blood:\nLet's write good angel on the devil's horn:\n'Tis not the devil's crest.\nHow now! who's there?\n\nServant:\nOne Isabel, a sister, desires access to you.\n\nANGELO:\nTeach her the way.\nO heavens!\nWhy does my blood thus muster to my heart,\nMaking both it unable for itself,\nAnd dispossessing all my other parts\nOf necessary fitness?\nSo play the foolish throngs with one that swoons;\nCome all to help him, and so stop the air\nBy which he should revive: and even so\nThe general, subject to a well-wish'd king,\nQuit their own part, and in obsequious fondness\nCrowd to his presence, where their untaught love\nMust needs appear offence.\nHow now, fair maid?\n\nISABELLA:\nI am come to know your pleasure.\n\nANGELO:\nThat you might know it, would much better please me\nThan to demand what 'tis. Your brother cannot live.\n\nISABELLA:\nEven so. Heaven keep your honour!\n\nANGELO:\nYet may he live awhile; and, it may be,\nAs long as you or I yet he must die.\n\nISABELLA:\nUnder your sentence?\n\nANGELO:\nYea.\n\nISABELLA:\nWhen, I beseech you? that in his reprieve,\nLonger or shorter, he may be so fitted\nThat his soul sicken not.\n\nANGELO:\nHa! fie, these filthy vices! It were as good\nTo pardon him that hath from nature stolen\nA man already made, as to remit\nTheir saucy sweetness that do coin heaven's image\nIn stamps that are forbid: 'tis all as easy\nFalsely to take away a life true made\nAs to put metal in restrained means\nTo make a false one.\n\nISABELLA:\n'Tis set down so in heaven, but not in earth.\n\nANGELO:\nSay you so? then I shall pose you quickly.\nWhich had you rather, that the most just law\nNow took your brother's life; or, to redeem him,\nGive up your body to such sweet uncleanness\nAs she that he hath stain'd?\n\nISABELLA:\nSir, believe this,\nI had rather give my body than my soul.\n\nANGELO:\nI talk not of your soul: our compell'd sins\nStand more for number than for accompt.\n\nISABELLA:\nHow say you?\n\nANGELO:\nNay, I'll not warrant that; for I can speak\nAgainst the thing I say. Answer to this:\nI, now the voice of the recorded law,\nPronounce a sentence on your brother's life:\nMight there not be a charity in sin\nTo save this brother's life?\n\nISABELLA:\nPlease you to do't,\nI'll take it as a peril to my soul,\nIt is no sin at all, but charity.\n\nANGELO:\nPleased you to do't at peril of your soul,\nWere equal poise of sin and charity.\n\nISABELLA:\nThat I do beg his life, if it be sin,\nHeaven let me bear it! you granting of my suit,\nIf that be sin, I'll make it my morn prayer\nTo have it added to the faults of mine,\nAnd nothing of your answer.\n\nANGELO:\nNay, but hear me.\nYour sense pursues not mine: either you are ignorant,\nOr seem so craftily; and that's not good.\n\nISABELLA:\nLet me be ignorant, and in nothing good,\nBut graciously to know I am no better.\n\nANGELO:\nThus wisdom wishes to appear most bright\nWhen it doth tax itself; as these black masks\nProclaim an enshield beauty ten times louder\nThan beauty could, display'd. But mark me;\nTo be received plain, I'll speak more gross:\nYour brother is to die.\n\nISABELLA:\nSo.\n\nANGELO:\nAnd his offence is so, as it appears,\nAccountant to the law upon that pain.\n\nISABELLA:\nTrue.\n\nANGELO:\nAdmit no other way to save his life,--\nAs I subscribe not that, nor any other,\nBut in the loss of question,--that you, his sister,\nFinding yourself desired of such a person,\nWhose credit with the judge, or own great place,\nCould fetch your brother from the manacles\nOf the all-building law; and that there were\nNo earthly mean to save him, but that either\nYou must lay down the treasures of your body\nTo this supposed, or else to let him suffer;\nWhat would you do?\n\nISABELLA:\nAs much for my poor brother as myself:\nThat is, were I under the terms of death,\nThe impression of keen whips I'ld wear as rubies,\nAnd strip myself to death, as to a bed\nThat longing have been sick for, ere I'ld yield\nMy body up to shame.\n\nANGELO:\nThen must your brother die.\n\nISABELLA:\nAnd 'twere the cheaper way:\nBetter it were a brother died at once,\nThan that a sister, by redeeming him,\nShould die for ever.\n\nANGELO:\nWere not you then as cruel as the sentence\nThat you have slander'd so?\n\nISABELLA:\nIgnomy in ransom and free pardon\nAre of two houses: lawful mercy\nIs nothing kin to foul redemption.\n\nANGELO:\nYou seem'd of late to make the law a tyrant;\nAnd rather proved the sliding of your brother\nA merriment than a vice.\n\nISABELLA:\nO, pardon me, my lord; it oft falls out,\nTo have what we would have, we speak not what we mean:\nI something do excuse the thing I hate,\nFor his advantage that I dearly love.\n\nANGELO:\nWe are all frail.\n\nISABELLA:\nElse let my brother die,\nIf not a feodary, but only he\nOwe and succeed thy weakness.\n\nANGELO:\nNay, women are frail too.\n\nISABELLA:\nAy, as the glasses where they view themselves;\nWhich are as easy broke as they make forms.\nWomen! Help Heaven! men their creation mar\nIn profiting by them. Nay, call us ten times frail;\nFor we are soft as our complexions are,\nAnd credulous to false prints.\n\nANGELO:\nI think it well:\nAnd from this testimony of your own sex,--\nSince I suppose we are made to be no stronger\nThan faults may shake our frames,--let me be bold;\nI do arrest your words. Be that you are,\nThat is, a woman; if you be more, you're none;\nIf you be one, as you are well express'd\nBy all external warrants, show it now,\nBy putting on the destined livery.\n\nISABELLA:\nI have no tongue but one: gentle my lord,\nLet me entreat you speak the former language.\n\nANGELO:\nPlainly conceive, I love you.\n\nISABELLA:\nMy brother did love Juliet,\nAnd you tell me that he shall die for it.\n\nANGELO:\nHe shall not, Isabel, if you give me love.\n\nISABELLA:\nI know your virtue hath a licence in't,\nWhich seems a little fouler than it is,\nTo pluck on others.\n\nANGELO:\nBelieve me, on mine honour,\nMy words express my purpose.\n\nISABELLA:\nHa! little honour to be much believed,\nAnd most pernicious purpose! Seeming, seeming!\nI will proclaim thee, Angelo; look for't:\nSign me a present pardon for my brother,\nOr with an outstretch'd throat I'll tell the world aloud\nWhat man thou art.\n\nANGELO:\nWho will believe thee, Isabel?\nMy unsoil'd name, the austereness of my life,\nMy vouch against you, and my place i' the state,\nWill so your accusation overweigh,\nThat you shall stifle in your own report\nAnd smell of calumny. I have begun,\nAnd now I give my sensual race the rein:\nFit thy consent to my sharp appetite;\nLay by all nicety and prolixious blushes,\nThat banish what they sue for; redeem thy brother\nBy yielding up thy body to my will;\nOr else he must not only die the death,\nBut thy unkindness shall his death draw out\nTo lingering sufferance. Answer me to-morrow,\nOr, by the affection that now guides me most,\nI'll prove a tyrant to him. As for you,\nSay what you can, my false o'erweighs your true.\n\nISABELLA:\nTo whom should I complain? Did I tell this,\nWho would believe me? O perilous mouths,\nThat bear in them one and the self-same tongue,\nEither of condemnation or approof;\nBidding the law make court'sy to their will:\nHooking both right and wrong to the appetite,\nTo follow as it draws! I'll to my brother:\nThough he hath fallen by prompture of the blood,\nYet hath he in him such a mind of honour.\nThat, had he twenty heads to tender down\nOn twenty bloody blocks, he'ld yield them up,\nBefore his sister should her body stoop\nTo such abhorr'd pollution.\nThen, Isabel, live chaste, and, brother, die:\nMore than our brother is our chastity.\nI'll tell him yet of Angelo's request,\nAnd fit his mind to death, for his soul's rest.\n\nDUKE VINCENTIO:\nSo then you hope of pardon from Lord Angelo?\n\nCLAUDIO:\nThe miserable have no other medicine\nBut only hope:\nI've hope to live, and am prepared to die.\n\nDUKE VINCENTIO:\nBe absolute for death; either death or life\nShall thereby be the sweeter. Reason thus with life:\nIf I do lose thee, I do lose a thing\nThat none but fools would keep: a breath thou art,\nServile to all the skyey influences,\nThat dost this habitation, where thou keep'st,\nHourly afflict: merely, thou art death's fool;\nFor him thou labour'st by thy flight to shun\nAnd yet runn'st toward him still. Thou art not noble;\nFor all the accommodations that thou bear'st\nAre nursed by baseness. Thou'rt by no means valiant;\nFor thou dost fear the soft and tender fork\nOf a poor worm. Thy best of rest is sleep,\nAnd that thou oft provokest; yet grossly fear'st\nThy death, which is no more. Thou art not thyself;\nFor thou exist'st on many a thousand grains\nThat issue out of dust. Happy thou art not;\nFor what thou hast not, still thou strivest to get,\nAnd what thou hast, forget'st. Thou art not certain;\nFor thy complexion shifts to strange effects,\nAfter the moon. If thou art rich, thou'rt poor;\nFor, like an ass whose back with ingots bows,\nThou bear's thy heavy riches but a journey,\nAnd death unloads thee. Friend hast thou none;\nFor thine own bowels, which do call thee sire,\nThe mere effusion of thy proper loins,\nDo curse the gout, serpigo, and the rheum,\nFor ending thee no sooner. Thou hast nor youth nor age,\nBut, as it were, an after-dinner's sleep,\nDreaming on both; for all thy blessed youth\nBecomes as aged, and doth beg the alms\nOf palsied eld; and when thou art old and rich,\nThou hast neither heat, affection, limb, nor beauty,\nTo make thy riches pleasant. What's yet in this\nThat bears the name of life? Yet in this life\nLie hid moe thousand deaths: yet death we fear,\nThat makes these odds all even.\n\nCLAUDIO:\nI humbly thank you.\nTo sue to live, I find I seek to die;\nAnd, seeking death, find life: let it come on.\n\nISABELLA:\n\nProvost:\nWho's there? come in: the wish deserves a welcome.\n\nDUKE VINCENTIO:\nDear sir, ere long I'll visit you again.\n\nCLAUDIO:\nMost holy sir, I thank you.\n\nISABELLA:\nMy business is a word or two with Claudio.\n\nProvost:\nAnd very welcome. Look, signior, here's your sister.\n\nDUKE VINCENTIO:\nProvost, a word with you.\n\nProvost:\nAs many as you please.\n\nDUKE VINCENTIO:\nBring me to hear them speak, where I may be concealed.\n\nCLAUDIO:\nNow, sister, what's the comfort?\n\nISABELLA:\nWhy,\nAs all comforts are; most good, most good indeed.\nLord Angelo, having affairs to heaven,\nIntends you for his swift ambassador,\nWhere you shall be an everlasting leiger:\nTherefore your best appointment make with speed;\nTo-morrow you set on.\n\nCLAUDIO:\nIs there no remedy?\n\nISABELLA:\nNone, but such remedy as, to save a head,\nTo cleave a heart in twain.\n\nCLAUDIO:\nBut is there any?\n\nISABELLA:\nYes, brother, you may live:\nThere is a devilish mercy in the judge,\nIf you'll implore it, that will free your life,\nBut fetter you till death.\n\nCLAUDIO:\nPerpetual durance?\n\nISABELLA:\nAy, just; perpetual durance, a restraint,\nThough all the world's vastidity you had,\nTo a determined scope.\n\nCLAUDIO:\nBut in what nature?\n\nISABELLA:\nIn such a one as, you consenting to't,\nWould bark your honour from that trunk you bear,\nAnd leave you naked.\n\nCLAUDIO:\nLet me know the point.\n\nISABELLA:\nO, I do fear thee, Claudio; and I quake,\nLest thou a feverous life shouldst entertain,\nAnd six or seven winters more respect\nThan a perpetual honour. Darest thou die?\nThe sense of death is most in apprehension;\nAnd the poor beetle, that we tread upon,\nIn corporal sufferance finds a pang as great\nAs when a giant dies.\n\nCLAUDIO:\nWhy give you me this shame?\nThink you I can a resolution fetch\nFrom flowery tenderness? If I must die,\nI will encounter darkness as a bride,\nAnd hug it in mine arms.\n\nISABELLA:\nThere spake my brother; there my father's grave\nDid utter forth a voice. Yes, thou must die:\nThou art too noble to conserve a life\nIn base appliances. This outward-sainted deputy,\nWhose settled visage and deliberate word\nNips youth i' the head and follies doth emmew\nAs falcon doth the fowl, is yet a devil\nHis filth within being cast, he would appear\nA pond as deep as hell.\n\nCLAUDIO:\nThe prenzie Angelo!\n\nISABELLA:\nO, 'tis the cunning livery of hell,\nThe damned'st body to invest and cover\nIn prenzie guards! Dost thou think, Claudio?\nIf I would yield him my virginity,\nThou mightst be freed.\n\nCLAUDIO:\nO heavens! it cannot be.\n\nISABELLA:\nYes, he would give't thee, from this rank offence,\nSo to offend him still. This night's the time\nThat I should do what I abhor to name,\nOr else thou diest to-morrow.\n\nCLAUDIO:\nThou shalt not do't.\n\nISABELLA:\nO, were it but my life,\nI'ld throw it down for your deliverance\nAs frankly as a pin.\n\nCLAUDIO:\nThanks, dear Isabel.\n\nISABELLA:\nBe ready, Claudio, for your death tomorrow.\n\nCLAUDIO:\nYes. Has he affections in him,\nThat thus can make him bite the law by the nose,\nWhen he would force it? Sure, it is no sin,\nOr of the deadly seven, it is the least.\n\nISABELLA:\nWhich is the least?\n\nCLAUDIO:\nIf it were damnable, he being so wise,\nWhy would he for the momentary trick\nBe perdurably fined? O Isabel!\n\nISABELLA:\nWhat says my brother?\n\nCLAUDIO:\nDeath is a fearful thing.\n\nISABELLA:\nAnd shamed life a hateful.\n\nCLAUDIO:\nAy, but to die, and go we know not where;\nTo lie in cold obstruction and to rot;\nThis sensible warm motion to become\nA kneaded clod; and the delighted spirit\nTo bathe in fiery floods, or to reside\nIn thrilling region of thick-ribbed ice;\nTo be imprison'd in the viewless winds,\nAnd blown with restless violence round about\nThe pendent world; or to be worse than worst\nOf those that lawless and incertain thought\nImagine howling: 'tis too horrible!\nThe weariest and most loathed worldly life\nThat age, ache, penury and imprisonment\nCan lay on nature is a paradise\nTo what we fear of death.\n\nISABELLA:\nAlas, alas!\n\nCLAUDIO:\nSweet sister, let me live:\nWhat sin you do to save a brother's life,\nNature dispenses with the deed so far\nThat it becomes a virtue.\n\nISABELLA:\nO you beast!\nO faithless coward! O dishonest wretch!\nWilt thou be made a man out of my vice?\nIs't not a kind of incest, to take life\nFrom thine own sister's shame? What should I think?\nHeaven shield my mother play'd my father fair!\nFor such a warped slip of wilderness\nNe'er issued from his blood. Take my defiance!\nDie, perish! Might but my bending down\nReprieve thee from thy fate, it should proceed:\nI'll pray a thousand prayers for thy death,\nNo word to save thee.\n\nCLAUDIO:\nNay, hear me, Isabel.\n\nISABELLA:\nO, fie, fie, fie!\nThy sin's not accidental, but a trade.\nMercy to thee would prove itself a bawd:\n'Tis best thou diest quickly.\n\nCLAUDIO:\nO hear me, Isabella!\n\nDUKE VINCENTIO:\nVouchsafe a word, young sister, but one word.\n\nISABELLA:\nWhat is your will?\n\nDUKE VINCENTIO:\nMight you dispense with your leisure, I would by and\nby have some speech with you: the satisfaction I\nwould require is likewise your own benefit.\n\nISABELLA:\nI have no superfluous leisure; my stay must be\nstolen out of other affairs; but I will attend you awhile.\n\nDUKE VINCENTIO:\nSon, I have overheard what hath passed between you\nand your sister. Angelo had never the purpose to\ncorrupt her; only he hath made an essay of her\nvirtue to practise his judgment with the disposition\nof natures: she, having the truth of honour in her,\nhath made him that gracious denial which he is most\nglad to receive. I am confessor to Angelo, and I\nknow this to be true; therefore prepare yourself to\ndeath: do not satisfy your resolution with hopes\nthat are fallible: tomorrow you must die; go to\nyour knees and make ready.\n\nCLAUDIO:\nLet me ask my sister pardon. I am so out of love\nwith life that I will sue to be rid of it.\n\nDUKE VINCENTIO:\nHold you there: farewell.\nProvost, a word with you!\n\nProvost:\nWhat's your will, father\n\nDUKE VINCENTIO:\nThat now you are come, you will be gone. Leave me\nawhile with the maid: my mind promises with my\nhabit no loss shall touch her by my company.\n\nProvost:\nIn good time.\n\nDUKE VINCENTIO:\nThe hand that hath made you fair hath made you good:\nthe goodness that is cheap in beauty makes beauty\nbrief in goodness; but grace, being the soul of\nyour complexion, shall keep the body of it ever\nfair. The assault that Angelo hath made to you,\nfortune hath conveyed to my understanding; and, but\nthat frailty hath examples for his falling, I should\nwonder at Angelo. How will you do to content this\nsubstitute, and to save your brother?\n\nISABELLA:\nI am now going to resolve him: I had rather my\nbrother die by the law than my son should be\nunlawfully born. But, O, how much is the good duke\ndeceived in Angelo! If ever he return and I can\nspeak to him, I will open my lips in vain, or\ndiscover his government.\n\nDUKE VINCENTIO:\nThat shall not be much amiss: Yet, as the matter\nnow stands, he will avoid your accusation; he made\ntrial of you only. Therefore fasten your ear on my\nadvisings: to the love I have in doing good a\nremedy presents itself. I do make myself believe\nthat you may most uprighteously do a poor wronged\nlady a merited benefit; redeem your brother from\nthe angry law; do no stain to your own gracious\nperson; and much please the absent duke, if\nperadventure he shall ever return to have hearing of\nthis business.\n\nISABELLA:\nLet me hear you speak farther. I have spirit to do\nanything that appears not foul in the truth of my spirit.\n\nDUKE VINCENTIO:\nVirtue is bold, and goodness never fearful. Have\nyou not heard speak of Mariana, the sister of\nFrederick the great soldier who miscarried at sea?\n\nISABELLA:\nI have heard of the lady, and good words went with her name.\n\nDUKE VINCENTIO:\nShe should this Angelo have married; was affianced\nto her by oath, and the nuptial appointed: between\nwhich time of the contract and limit of the\nsolemnity, her brother Frederick was wrecked at sea,\nhaving in that perished vessel the dowry of his\nsister. But mark how heavily this befell to the\npoor gentlewoman: there she lost a noble and\nrenowned brother, in his love toward her ever most\nkind and natural; with him, the portion and sinew of\nher fortune, her marriage-dowry; with both, her\ncombinate husband, this well-seeming Angelo.\n\nISABELLA:\nCan this be so? did Angelo so leave her?\n\nDUKE VINCENTIO:\nLeft her in her tears, and dried not one of them\nwith his comfort; swallowed his vows whole,\npretending in her discoveries of dishonour: in few,\nbestowed her on her own lamentation, which she yet\nwears for his sake; and he, a marble to her tears,\nis washed with them, but relents not.\n\nISABELLA:\nWhat a merit were it in death to take this poor maid\nfrom the world! What corruption in this life, that\nit will let this man live! But how out of this can she avail?\n\nDUKE VINCENTIO:\nIt is a rupture that you may easily heal: and the\ncure of it not only saves your brother, but keeps\nyou from dishonour in doing it.\n\nISABELLA:\nShow me how, good father.\n\nDUKE VINCENTIO:\nThis forenamed maid hath yet in her the continuance\nof her first affection: his unjust unkindness, that\nin all reason should have quenched her love, hath,\nlike an impediment in the current, made it more\nviolent and unruly. Go you to Angelo; answer his\nrequiring with a plausible obedience; agree with\nhis demands to the point; only refer yourself to\nthis advantage, first, that your stay with him may\nnot be long; that the time may have all shadow and\nsilence in it; and the place answer to convenience.\nThis being granted in course,--and now follows\nall,--we shall advise this wronged maid to stead up\nyour appointment, go in your place; if the encounter\nacknowledge itself hereafter, it may compel him to\nher recompense: and here, by this, is your brother\nsaved, your honour untainted, the poor Mariana\nadvantaged, and the corrupt deputy scaled. The maid\nwill I frame and make fit for his attempt. If you\nthink well to carry this as you may, the doubleness\nof the benefit defends the deceit from reproof.\nWhat think you of it?\n\nISABELLA:\nThe image of it gives me content already; and I\ntrust it will grow to a most prosperous perfection.\n\nDUKE VINCENTIO:\nIt lies much in your holding up. Haste you speedily\nto Angelo: if for this night he entreat you to his\nbed, give him promise of satisfaction. I will\npresently to Saint Luke's: there, at the moated\ngrange, resides this dejected Mariana. At that\nplace call upon me; and dispatch with Angelo, that\nit may be quickly.\n\nISABELLA:\nI thank you for this comfort. Fare you well, good father.\n\nELBOW:\nNay, if there be no remedy for it, but that you will\nneeds buy and sell men and women like beasts, we\nshall have all the world drink brown and white bastard.\n\nDUKE VINCENTIO:\nO heavens! what stuff is here\n\nPOMPEY:\n'Twas never merry world since, of two usuries, the\nmerriest was put down, and the worser allowed by\norder of law a furred gown to keep him warm; and\nfurred with fox and lamb-skins too, to signify, that\ncraft, being richer than innocency, stands for the facing.\n\nELBOW:\nCome your way, sir. 'Bless you, good father friar.\n\nDUKE VINCENTIO:\nAnd you, good brother father. What offence hath\nthis man made you, sir?\n\nELBOW:\nMarry, sir, he hath offended the law: and, sir, we\ntake him to be a thief too, sir; for we have found\nupon him, sir, a strange picklock, which we have\nsent to the deputy.\n\nDUKE VINCENTIO:\nFie, sirrah! a bawd, a wicked bawd!\nThe evil that thou causest to be done,\nThat is thy means to live. Do thou but think\nWhat 'tis to cram a maw or clothe a back\nFrom such a filthy vice: say to thyself,\nFrom their abominable and beastly touches\nI drink, I eat, array myself, and live.\nCanst thou believe thy living is a life,\nSo stinkingly depending? Go mend, go mend.\n\nPOMPEY:\nIndeed, it does stink in some sort, sir; but yet,\nsir, I would prove--\n\nDUKE VINCENTIO:\nNay, if the devil have given thee proofs for sin,\nThou wilt prove his. Take him to prison, officer:\nCorrection and instruction must both work\nEre this rude beast will profit.\n\nELBOW:\nHe must before the deputy, sir; he has given him\nwarning: the deputy cannot abide a whoremaster: if\nhe be a whoremonger, and comes before him, he were\nas good go a mile on his errand.\n\nDUKE VINCENTIO:\nThat we were all, as some would seem to be,\nFrom our faults, as faults from seeming, free!\n\nELBOW:\nHis neck will come to your waist,--a cord, sir.\n\nPOMPEY:\nI spy comfort; I cry bail. Here's a gentleman and a\nfriend of mine.\n\nLUCIO:\nHow now, noble Pompey! What, at the wheels of\nCaesar? art thou led in triumph? What, is there\nnone of Pygmalion's images, newly made woman, to be\nhad now, for putting the hand in the pocket and\nextracting it clutch'd? What reply, ha? What\nsayest thou to this tune, matter and method? Is't\nnot drowned i' the last rain, ha? What sayest\nthou, Trot? Is the world as it was, man? Which is\nthe way? Is it sad, and few words? or how? The\ntrick of it?\n\nDUKE VINCENTIO:\nStill thus, and thus; still worse!\n\nLUCIO:\nHow doth my dear morsel, thy mistress? Procures she\nstill, ha?\n\nPOMPEY:\nTroth, sir, she hath eaten up all her beef, and she\nis herself in the tub.\n\nLUCIO:\nWhy, 'tis good; it is the right of it; it must be\nso: ever your fresh whore and your powdered bawd:\nan unshunned consequence; it must be so. Art going\nto prison, Pompey?\n\nPOMPEY:\nYes, faith, sir.\n\nLUCIO:\nWhy, 'tis not amiss, Pompey. Farewell: go, say I\nsent thee thither. For debt, Pompey? or how?\n\nELBOW:\nFor being a bawd, for being a bawd.\n\nLUCIO:\nWell, then, imprison him: if imprisonment be the\ndue of a bawd, why, 'tis his right: bawd is he\ndoubtless, and of antiquity too; bawd-born.\nFarewell, good Pompey. Commend me to the prison,\nPompey: you will turn good husband now, Pompey; you\nwill keep the house.\n\nPOMPEY:\nI hope, sir, your good worship will be my bail.\n\nLUCIO:\nNo, indeed, will I not, Pompey; it is not the wear.\nI will pray, Pompey, to increase your bondage: If\nyou take it not patiently, why, your mettle is the\nmore. Adieu, trusty Pompey. 'Bless you, friar.\n\nDUKE VINCENTIO:\nAnd you.\n\nLUCIO:\nDoes Bridget paint still, Pompey, ha?\n\nELBOW:\nCome your ways, sir; come.\n\nPOMPEY:\nYou will not bail me, then, sir?\n\nLUCIO:\nThen, Pompey, nor now. What news abroad, friar?\nwhat news?\n\nELBOW:\nCome your ways, sir; come.\n\nLUCIO:\nGo to kennel, Pompey; go.\nWhat news, friar, of the duke?\n\nDUKE VINCENTIO:\nI know none. Can you tell me of any?\n\nLUCIO:\nSome say he is with the Emperor of Russia; other\nsome, he is in Rome: but where is he, think you?\n\nDUKE VINCENTIO:\nI know not where; but wheresoever, I wish him well.\n\nLUCIO:\nIt was a mad fantastical trick of him to steal from\nthe state, and usurp the beggary he was never born\nto. Lord Angelo dukes it well in his absence; he\nputs transgression to 't.\n\nDUKE VINCENTIO:\nHe does well in 't.\n\nLUCIO:\nA little more lenity to lechery would do no harm in\nhim: something too crabbed that way, friar.\n\nDUKE VINCENTIO:\nIt is too general a vice, and severity must cure it.\n\nLUCIO:\nYes, in good sooth, the vice is of a great kindred;\nit is well allied: but it is impossible to extirp\nit quite, friar, till eating and drinking be put\ndown. They say this Angelo was not made by man and\nwoman after this downright way of creation: is it\ntrue, think you?\n\nDUKE VINCENTIO:\nHow should he be made, then?\n\nLUCIO:\nSome report a sea-maid spawned him; some, that he\nwas begot between two stock-fishes. But it is\ncertain that when he makes water his urine is\ncongealed ice; that I know to be true: and he is a\nmotion generative; that's infallible.\n\nDUKE VINCENTIO:\nYou are pleasant, sir, and speak apace.\n\nLUCIO:\nWhy, what a ruthless thing is this in him, for the\nrebellion of a codpiece to take away the life of a\nman! Would the duke that is absent have done this?\nEre he would have hanged a man for the getting a\nhundred bastards, he would have paid for the nursing\na thousand: he had some feeling of the sport: he\nknew the service, and that instructed him to mercy.\n\nDUKE VINCENTIO:\nI never heard the absent duke much detected for\nwomen; he was not inclined that way.\n\nLUCIO:\nO, sir, you are deceived.\n\nDUKE VINCENTIO:\n'Tis not possible.\n\nLUCIO:\nWho, not the duke? yes, your beggar of fifty; and\nhis use was to put a ducat in her clack-dish: the\nduke had crotchets in him. He would be drunk too;\nthat let me inform you.\n\nDUKE VINCENTIO:\nYou do him wrong, surely.\n\nLUCIO:\nSir, I was an inward of his. A shy fellow was the\nduke: and I believe I know the cause of his\nwithdrawing.\n\nDUKE VINCENTIO:\nWhat, I prithee, might be the cause?\n\nLUCIO:\nNo, pardon; 'tis a secret must be locked within the\nteeth and the lips: but this I can let you\nunderstand, the greater file of the subject held the\nduke to be wise.\n\nDUKE VINCENTIO:\nWise! why, no question but he was.\n\nLUCIO:\nA very superficial, ignorant, unweighing fellow.\n\nDUKE VINCENTIO:\nEither this is the envy in you, folly, or mistaking:\nthe very stream of his life and the business he hath\nhelmed must upon a warranted need give him a better\nproclamation. Let him be but testimonied in his own\nbringings-forth, and he shall appear to the\nenvious a scholar, a statesman and a soldier.\nTherefore you speak unskilfully: or if your\nknowledge be more it is much darkened in your malice.\n\nLUCIO:\nSir, I know him, and I love him.\n\nDUKE VINCENTIO:\nLove talks with better knowledge, and knowledge with\ndearer love.\n\nLUCIO:\nCome, sir, I know what I know.\n\nDUKE VINCENTIO:\nI can hardly believe that, since you know not what\nyou speak. But, if ever the duke return, as our\nprayers are he may, let me desire you to make your\nanswer before him. If it be honest you have spoke,\nyou have courage to maintain it: I am bound to call\nupon you; and, I pray you, your name?\n\nLUCIO:\nSir, my name is Lucio; well known to the duke.\n\nDUKE VINCENTIO:\nHe shall know you better, sir, if I may live to\nreport you.\n\nLUCIO:\nI fear you not.\n\nDUKE VINCENTIO:\nO, you hope the duke will return no more; or you\nimagine me too unhurtful an opposite. But indeed I\ncan do you little harm; you'll forswear this again.\n\nLUCIO:\nI'll be hanged first: thou art deceived in me,\nfriar. But no more of this. Canst thou tell if\nClaudio die to-morrow or no?\n\nDUKE VINCENTIO:\nWhy should he die, sir?\n\nLUCIO:\nWhy? For filling a bottle with a tundish. I would\nthe duke we talk of were returned again: the\nungenitured agent will unpeople the province with\ncontinency; sparrows must not build in his\nhouse-eaves, because they are lecherous. The duke\nyet would have dark deeds darkly answered; he would\nnever bring them to light: would he were returned!\nMarry, this Claudio is condemned for untrussing.\nFarewell, good friar: I prithee, pray for me. The\nduke, I say to thee again, would eat mutton on\nFridays. He's not past it yet, and I say to thee,\nhe would mouth with a beggar, though she smelt brown\nbread and garlic: say that I said so. Farewell.\n\nDUKE VINCENTIO:\nNo might nor greatness in mortality\nCan censure 'scape; back-wounding calumny\nThe whitest virtue strikes. What king so strong\nCan tie the gall up in the slanderous tongue?\nBut who comes here?\n\nESCALUS:\nGo; away with her to prison!\n\nMISTRESS OVERDONE:\nGood my lord, be good to me; your honour is accounted\na merciful man; good my lord.\n\nESCALUS:\nDouble and treble admonition, and still forfeit in\nthe same kind! This would make mercy swear and play\nthe tyrant.\n\nProvost:\nA bawd of eleven years' continuance, may it please\nyour honour.\n\nMISTRESS OVERDONE:\nMy lord, this is one Lucio's information against me.\nMistress Kate Keepdown was with child by him in the\nduke's time; he promised her marriage: his child\nis a year and a quarter old, come Philip and Jacob:\nI have kept it myself; and see how he goes about to abuse me!\n\nESCALUS:\nThat fellow is a fellow of much licence: let him be\ncalled before us. Away with her to prison! Go to;\nno more words.\nProvost, my brother Angelo will not be altered;\nClaudio must die to-morrow: let him be furnished\nwith divines, and have all charitable preparation.\nif my brother wrought by my pity, it should not be\nso with him.\n\nProvost:\nSo please you, this friar hath been with him, and\nadvised him for the entertainment of death.\n\nESCALUS:\nGood even, good father.\n\nDUKE VINCENTIO:\nBliss and goodness on you!\n\nESCALUS:\nOf whence are you?\n\nDUKE VINCENTIO:\nNot of this country, though my chance is now\nTo use it for my time: I am a brother\nOf gracious order, late come from the See\nIn special business from his holiness.\n\nESCALUS:\nWhat news abroad i' the world?\n\nDUKE VINCENTIO:\nNone, but that there is so great a fever on\ngoodness, that the dissolution of it must cure it:\nnovelty is only in request; and it is as dangerous\nto be aged in any kind of course, as it is virtuous\nto be constant in any undertaking. There is scarce\ntruth enough alive to make societies secure; but\nsecurity enough to make fellowships accurst: much\nupon this riddle runs the wisdom of the world. This\nnews is old enough, yet it is every day's news. I\npray you, sir, of what disposition was the duke?\n\nESCALUS:\nOne that, above all other strifes, contended\nespecially to know himself.\n\nDUKE VINCENTIO:\nWhat pleasure was he given to?\n\nESCALUS:\nRather rejoicing to see another merry, than merry at\nany thing which professed to make him rejoice: a\ngentleman of all temperance. But leave we him to\nhis events, with a prayer they may prove prosperous;\nand let me desire to know how you find Claudio\nprepared. I am made to understand that you have\nlent him visitation.\n\nDUKE VINCENTIO:\nHe professes to have received no sinister measure\nfrom his judge, but most willingly humbles himself\nto the determination of justice: yet had he framed\nto himself, by the instruction of his frailty, many\ndeceiving promises of life; which I by my good\nleisure have discredited to him, and now is he\nresolved to die.\n\nESCALUS:\nYou have paid the heavens your function, and the\nprisoner the very debt of your calling. I have\nlaboured for the poor gentleman to the extremest\nshore of my modesty: but my brother justice have I\nfound so severe, that he hath forced me to tell him\nhe is indeed Justice.\n\nDUKE VINCENTIO:\nIf his own life answer the straitness of his\nproceeding, it shall become him well; wherein if he\nchance to fail, he hath sentenced himself.\n\nESCALUS:\nI am going to visit the prisoner. Fare you well.\n\nDUKE VINCENTIO:\nPeace be with you!\nHe who the sword of heaven will bear\nShould be as holy as severe;\nPattern in himself to know,\nGrace to stand, and virtue go;\nMore nor less to others paying\nThan by self-offences weighing.\nShame to him whose cruel striking\nKills for faults of his own liking!\nTwice treble shame on Angelo,\nTo weed my vice and let his grow!\nO, what may man within him hide,\nThough angel on the outward side!\nHow may likeness made in crimes,\nMaking practise on the times,\nTo draw with idle spiders' strings\nMost ponderous and substantial things!\nCraft against vice I must apply:\nWith Angelo to-night shall lie\nHis old betrothed but despised;\nSo disguise shall, by the disguised,\nPay with falsehood false exacting,\nAnd perform an old contracting.\n\n\nMARIANA:\nBreak off thy song, and haste thee quick away:\nHere comes a man of comfort, whose advice\nHath often still'd my brawling discontent.\nI cry you mercy, sir; and well could wish\nYou had not found me here so musical:\nLet me excuse me, and believe me so,\nMy mirth it much displeased, but pleased my woe.\n\nDUKE VINCENTIO:\n'Tis good; though music oft hath such a charm\nTo make bad good, and good provoke to harm.\nI pray, you, tell me, hath any body inquired\nfor me here to-day? much upon this time have\nI promised here to meet.\n\nMARIANA:\nYou have not been inquired after:\nI have sat here all day.\n\nDUKE VINCENTIO:\nI do constantly believe you. The time is come even\nnow. I shall crave your forbearance a little: may\nbe I will call upon you anon, for some advantage to yourself.\n\nMARIANA:\nI am always bound to you.\n\nDUKE VINCENTIO:\nVery well met, and well come.\nWhat is the news from this good deputy?\n\nISABELLA:\nHe hath a garden circummured with brick,\nWhose western side is with a vineyard back'd;\nAnd to that vineyard is a planched gate,\nThat makes his opening with this bigger key:\nThis other doth command a little door\nWhich from the vineyard to the garden leads;\nThere have I made my promise\nUpon the heavy middle of the night\nTo call upon him.\n\nDUKE VINCENTIO:\nBut shall you on your knowledge find this way?\n\nISABELLA:\nI have ta'en a due and wary note upon't:\nWith whispering and most guilty diligence,\nIn action all of precept, he did show me\nThe way twice o'er.\n\nDUKE VINCENTIO:\nAre there no other tokens\nBetween you 'greed concerning her observance?\n\nISABELLA:\nNo, none, but only a repair i' the dark;\nAnd that I have possess'd him my most stay\nCan be but brief; for I have made him know\nI have a servant comes with me along,\nThat stays upon me, whose persuasion is\nI come about my brother.\n\nDUKE VINCENTIO:\n'Tis well borne up.\nI have not yet made known to Mariana\nA word of this. What, ho! within! come forth!\nI pray you, be acquainted with this maid;\nShe comes to do you good.\n\nISABELLA:\nI do desire the like.\n\nDUKE VINCENTIO:\nDo you persuade yourself that I respect you?\n\nMARIANA:\nGood friar, I know you do, and have found it.\n\nDUKE VINCENTIO:\nTake, then, this your companion by the hand,\nWho hath a story ready for your ear.\nI shall attend your leisure: but make haste;\nThe vaporous night approaches.\n\nMARIANA:\nWill't please you walk aside?\n\nDUKE VINCENTIO:\nO place and greatness! millions of false eyes\nAre stuck upon thee: volumes of report\nRun with these false and most contrarious quests\nUpon thy doings: thousand escapes of wit\nMake thee the father of their idle dreams\nAnd rack thee in their fancies.\nWelcome, how agreed?\n\nISABELLA:\nShe'll take the enterprise upon her, father,\nIf you advise it.\n\nDUKE VINCENTIO:\nIt is not my consent,\nBut my entreaty too.\n\nISABELLA:\nLittle have you to say\nWhen you depart from him, but, soft and low,\n'Remember now my brother.'\n\nMARIANA:\nFear me not.\n\nDUKE VINCENTIO:\nNor, gentle daughter, fear you not at all.\nHe is your husband on a pre-contract:\nTo bring you thus together, 'tis no sin,\nSith that the justice of your title to him\nDoth flourish the deceit. Come, let us go:\nOur corn's to reap, for yet our tithe's to sow.\n\nProvost:\nCome hither, sirrah. Can you cut off a man's head?\n\nPOMPEY:\nIf the man be a bachelor, sir, I can; but if he be a\nmarried man, he's his wife's head, and I can never\ncut off a woman's head.\n\nProvost:\nCome, sir, leave me your snatches, and yield me a\ndirect answer. To-morrow morning are to die Claudio\nand Barnardine. Here is in our prison a common\nexecutioner, who in his office lacks a helper: if\nyou will take it on you to assist him, it shall\nredeem you from your gyves; if not, you shall have\nyour full time of imprisonment and your deliverance\nwith an unpitied whipping, for you have been a\nnotorious bawd.\n\nPOMPEY:\nSir, I have been an unlawful bawd time out of mind;\nbut yet I will be content to be a lawful hangman. I\nwould be glad to receive some instruction from my\nfellow partner.\n\nProvost:\nWhat, ho! Abhorson! Where's Abhorson, there?\n\nABHORSON:\nDo you call, sir?\n\nProvost:\nSirrah, here's a fellow will help you to-morrow in\nyour execution. If you think it meet, compound with\nhim by the year, and let him abide here with you; if\nnot, use him for the present and dismiss him. He\ncannot plead his estimation with you; he hath been a bawd.\n\nABHORSON:\nA bawd, sir? fie upon him! he will discredit our mystery.\n\nProvost:\nGo to, sir; you weigh equally; a feather will turn\nthe scale.\n\nPOMPEY:\nPray, sir, by your good favour,--for surely, sir, a\ngood favour you have, but that you have a hanging\nlook,--do you call, sir, your occupation a mystery?\n\nABHORSON:\nAy, sir; a mystery\n\nPOMPEY:\nPainting, sir, I have heard say, is a mystery; and\nyour whores, sir, being members of my occupation,\nusing painting, do prove my occupation a mystery:\nbut what mystery there should be in hanging, if I\nshould be hanged, I cannot imagine.\n\nABHORSON:\nSir, it is a mystery.\n\nPOMPEY:\nProof?\n\nABHORSON:\nEvery true man's apparel fits your thief: if it be\ntoo little for your thief, your true man thinks it\nbig enough; if it be too big for your thief, your\nthief thinks it little enough: so every true man's\napparel fits your thief.\n\nProvost:\nAre you agreed?\n\nPOMPEY:\nSir, I will serve him; for I do find your hangman is\na more penitent trade than your bawd; he doth\noftener ask forgiveness.\n\nProvost:\nYou, sirrah, provide your block and your axe\nto-morrow four o'clock.\n\nABHORSON:\nCome on, bawd; I will instruct thee in my trade; follow.\n\nPOMPEY:\nI do desire to learn, sir: and I hope, if you have\noccasion to use me for your own turn, you shall find\nme yare; for truly, sir, for your kindness I owe you\na good turn.\n\nProvost:\nCall hither Barnardine and Claudio:\nThe one has my pity; not a jot the other,\nBeing a murderer, though he were my brother.\nLook, here's the warrant, Claudio, for thy death:\n'Tis now dead midnight, and by eight to-morrow\nThou must be made immortal. Where's Barnardine?\n\nCLAUDIO:\nAs fast lock'd up in sleep as guiltless labour\nWhen it lies starkly in the traveller's bones:\nHe will not wake.\n\nProvost:\nWho can do good on him?\nWell, go, prepare yourself.\nBut, hark, what noise?\nHeaven give your spirits comfort!\nBy and by.\nI hope it is some pardon or reprieve\nFor the most gentle Claudio.\nWelcome father.\n\nDUKE VINCENTIO:\nThe best and wholesomest spirts of the night\nEnvelope you, good Provost! Who call'd here of late?\n\nProvost:\nNone, since the curfew rung.\n\nDUKE VINCENTIO:\nNot Isabel?\n\nProvost:\nNo.\n\nDUKE VINCENTIO:\nThey will, then, ere't be long.\n\nProvost:\nWhat comfort is for Claudio?\n\nDUKE VINCENTIO:\nThere's some in hope.\n\nProvost:\nIt is a bitter deputy.\n\nDUKE VINCENTIO:\nNot so, not so; his life is parallel'd\nEven with the stroke and line of his great justice:\nHe doth with holy abstinence subdue\nThat in himself which he spurs on his power\nTo qualify in others: were he meal'd with that\nWhich he corrects, then were he tyrannous;\nBut this being so, he's just.\nNow are they come.\nThis is a gentle provost: seldom when\nThe steeled gaoler is the friend of men.\nHow now! what noise? That spirit's possessed with haste\nThat wounds the unsisting postern with these strokes.\n\nProvost:\nThere he must stay until the officer\nArise to let him in: he is call'd up.\n\nDUKE VINCENTIO:\nHave you no countermand for Claudio yet,\nBut he must die to-morrow?\n\nProvost:\nNone, sir, none.\n\nDUKE VINCENTIO:\nAs near the dawning, provost, as it is,\nYou shall hear more ere morning.\n\nProvost:\nHappily\nYou something know; yet I believe there comes\nNo countermand; no such example have we:\nBesides, upon the very siege of justice\nLord Angelo hath to the public ear\nProfess'd the contrary.\nThis is his lordship's man.\n\nDUKE VINCENTIO:\nAnd here comes Claudio's pardon.\n\nMessenger:\n\nProvost:\nI shall obey him.\n\nDUKE VINCENTIO:\n\nProvost:\nI told you. Lord Angelo, belike thinking me remiss\nin mine office, awakens me with this unwonted\nputting-on; methinks strangely, for he hath not used it before.\n\nDUKE VINCENTIO:\nPray you, let's hear.\n\nProvost:\n\nDUKE VINCENTIO:\nWhat is that Barnardine who is to be executed in the\nafternoon?\n\nProvost:\nA Bohemian born, but here nursed un and bred; one\nthat is a prisoner nine years old.\n\nDUKE VINCENTIO:\nHow came it that the absent duke had not either\ndelivered him to his liberty or executed him? I\nhave heard it was ever his manner to do so.\n\nProvost:\nHis friends still wrought reprieves for him: and,\nindeed, his fact, till now in the government of Lord\nAngelo, came not to an undoubtful proof.\n\nDUKE VINCENTIO:\nIt is now apparent?\n\nProvost:\nMost manifest, and not denied by himself.\n\nDUKE VINCENTIO:\nHath he born himself penitently in prison? how\nseems he to be touched?\n\nProvost:\nA man that apprehends death no more dreadfully but\nas a drunken sleep; careless, reckless, and fearless\nof what's past, present, or to come; insensible of\nmortality, and desperately mortal.\n\nDUKE VINCENTIO:\nHe wants advice.\n\nProvost:\nHe will hear none: he hath evermore had the liberty\nof the prison; give him leave to escape hence, he\nwould not: drunk many times a day, if not many days\nentirely drunk. We have very oft awaked him, as if\nto carry him to execution, and showed him a seeming\nwarrant for it: it hath not moved him at all.\n\nDUKE VINCENTIO:\nMore of him anon. There is written in your brow,\nprovost, honesty and constancy: if I read it not\ntruly, my ancient skill beguiles me; but, in the\nboldness of my cunning, I will lay myself in hazard.\nClaudio, whom here you have warrant to execute, is\nno greater forfeit to the law than Angelo who hath\nsentenced him. To make you understand this in a\nmanifested effect, I crave but four days' respite;\nfor the which you are to do me both a present and a\ndangerous courtesy.\n\nProvost:\nPray, sir, in what?\n\nDUKE VINCENTIO:\nIn the delaying death.\n\nProvost:\nA lack, how may I do it, having the hour limited,\nand an express command, under penalty, to deliver\nhis head in the view of Angelo? I may make my case\nas Claudio's, to cross this in the smallest.\n\nDUKE VINCENTIO:\nBy the vow of mine order I warrant you, if my\ninstructions may be your guide. Let this Barnardine\nbe this morning executed, and his head born to Angelo.\n\nProvost:\nAngelo hath seen them both, and will discover the favour.\n\nDUKE VINCENTIO:\nO, death's a great disguiser; and you may add to it.\nShave the head, and tie the beard; and say it was\nthe desire of the penitent to be so bared before his\ndeath: you know the course is common. If any thing\nfall to you upon this, more than thanks and good\nfortune, by the saint whom I profess, I will plead\nagainst it with my life.\n\nProvost:\nPardon me, good father; it is against my oath.\n\nDUKE VINCENTIO:\nWere you sworn to the duke, or to the deputy?\n\nProvost:\nTo him, and to his substitutes.\n\nDUKE VINCENTIO:\nYou will think you have made no offence, if the duke\navouch the justice of your dealing?\n\nProvost:\nBut what likelihood is in that?\n\nDUKE VINCENTIO:\nNot a resemblance, but a certainty. Yet since I see\nyou fearful, that neither my coat, integrity, nor\npersuasion can with ease attempt you, I will go\nfurther than I meant, to pluck all fears out of you.\nLook you, sir, here is the hand and seal of the\nduke: you know the character, I doubt not; and the\nsignet is not strange to you.\n\nProvost:\nI know them both.\n\nDUKE VINCENTIO:\nThe contents of this is the return of the duke: you\nshall anon over-read it at your pleasure; where you\nshall find, within these two days he will be here.\nThis is a thing that Angelo knows not; for he this\nvery day receives letters of strange tenor;\nperchance of the duke's death; perchance entering\ninto some monastery; but, by chance, nothing of what\nis writ. Look, the unfolding star calls up the\nshepherd. Put not yourself into amazement how these\nthings should be: all difficulties are but easy\nwhen they are known. Call your executioner, and off\nwith Barnardine's head: I will give him a present\nshrift and advise him for a better place. Yet you\nare amazed; but this shall absolutely resolve you.\nCome away; it is almost clear dawn.\n\nPOMPEY:\nI am as well acquainted here as I was in our house\nof profession: one would think it were Mistress\nOverdone's own house, for here be many of her old\ncustomers. First, here's young Master Rash; he's in\nfor a commodity of brown paper and old ginger,\nninescore and seventeen pounds; of which he made\nfive marks, ready money: marry, then ginger was not\nmuch in request, for the old women were all dead.\nThen is there here one Master Caper, at the suit of\nMaster Three-pile the mercer, for some four suits of\npeach-coloured satin, which now peaches him a\nbeggar. Then have we here young Dizy, and young\nMaster Deep-vow, and Master Copperspur, and Master\nStarve-lackey the rapier and dagger man, and young\nDrop-heir that killed lusty Pudding, and Master\nForthlight the tilter, and brave Master Shooty the\ngreat traveller, and wild Half-can that stabbed\nPots, and, I think, forty more; all great doers in\nour trade, and are now 'for the Lord's sake.'\n\nABHORSON:\nSirrah, bring Barnardine hither.\n\nPOMPEY:\nMaster Barnardine! you must rise and be hanged.\nMaster Barnardine!\n\nABHORSON:\nWhat, ho, Barnardine!\n\nBARNARDINE:\n\nPOMPEY:\nYour friends, sir; the hangman. You must be so\ngood, sir, to rise and be put to death.\n\nBARNARDINE:\n\nABHORSON:\nTell him he must awake, and that quickly too.\n\nPOMPEY:\nPray, Master Barnardine, awake till you are\nexecuted, and sleep afterwards.\n\nABHORSON:\nGo in to him, and fetch him out.\n\nPOMPEY:\nHe is coming, sir, he is coming; I hear his straw rustle.\n\nABHORSON:\nIs the axe upon the block, sirrah?\n\nPOMPEY:\nVery ready, sir.\n\nBARNARDINE:\nHow now, Abhorson? what's the news with you?\n\nABHORSON:\nTruly, sir, I would desire you to clap into your\nprayers; for, look you, the warrant's come.\n\nBARNARDINE:\nYou rogue, I have been drinking all night; I am not\nfitted for 't.\n\nPOMPEY:\nO, the better, sir; for he that drinks all night,\nand is hanged betimes in the morning, may sleep the\nsounder all the next day.\n\nABHORSON:\nLook you, sir; here comes your ghostly father: do\nwe jest now, think you?\n\nDUKE VINCENTIO:\nSir, induced by my charity, and hearing how hastily\nyou are to depart, I am come to advise you, comfort\nyou and pray with you.\n\nBARNARDINE:\nFriar, not I I have been drinking hard all night,\nand I will have more time to prepare me, or they\nshall beat out my brains with billets: I will not\nconsent to die this day, that's certain.\n\nDUKE VINCENTIO:\nO, sir, you must: and therefore I beseech you\nLook forward on the journey you shall go.\n\nBARNARDINE:\nI swear I will not die to-day for any man's\npersuasion.\n\nDUKE VINCENTIO:\nBut hear you.\n\nBARNARDINE:\nNot a word: if you have any thing to say to me,\ncome to my ward; for thence will not I to-day.\n\nDUKE VINCENTIO:\nUnfit to live or die: O gravel heart!\nAfter him, fellows; bring him to the block.\n\nProvost:\nNow, sir, how do you find the prisoner?\n\nDUKE VINCENTIO:\nA creature unprepared, unmeet for death;\nAnd to transport him in the mind he is\nWere damnable.\n\nProvost:\nHere in the prison, father,\nThere died this morning of a cruel fever\nOne Ragozine, a most notorious pirate,\nA man of Claudio's years; his beard and head\nJust of his colour. What if we do omit\nThis reprobate till he were well inclined;\nAnd satisfy the deputy with the visage\nOf Ragozine, more like to Claudio?\n\nDUKE VINCENTIO:\nO, 'tis an accident that heaven provides!\nDispatch it presently; the hour draws on\nPrefix'd by Angelo: see this be done,\nAnd sent according to command; whiles I\nPersuade this rude wretch willingly to die.\n\nProvost:\nThis shall be done, good father, presently.\nBut Barnardine must die this afternoon:\nAnd how shall we continue Claudio,\nTo save me from the danger that might come\nIf he were known alive?\n\nDUKE VINCENTIO:\nLet this be done.\nPut them in secret holds, both Barnardine and Claudio:\nEre twice the sun hath made his journal greeting\nTo the under generation, you shall find\nYour safety manifested.\n\nProvost:\nI am your free dependant.\n\nDUKE VINCENTIO:\nQuick, dispatch, and send the head to Angelo.\nNow will I write letters to Angelo,--\nThe provost, he shall bear them, whose contents\nShall witness to him I am near at home,\nAnd that, by great injunctions, I am bound\nTo enter publicly: him I'll desire\nTo meet me at the consecrated fount\nA league below the city; and from thence,\nBy cold gradation and well-balanced form,\nWe shall proceed with Angelo.\n\nProvost:\nHere is the head; I'll carry it myself.\n\nDUKE VINCENTIO:\nConvenient is it. Make a swift return;\nFor I would commune with you of such things\nThat want no ear but yours.\n\nProvost:\nI'll make all speed.\n\nISABELLA:\n\nDUKE VINCENTIO:\nThe tongue of Isabel. She's come to know\nIf yet her brother's pardon be come hither:\nBut I will keep her ignorant of her good,\nTo make her heavenly comforts of despair,\nWhen it is least expected.\n\nISABELLA:\nHo, by your leave!\n\nDUKE VINCENTIO:\nGood morning to you, fair and gracious daughter.\n\nISABELLA:\nThe better, given me by so holy a man.\nHath yet the deputy sent my brother's pardon?\n\nDUKE VINCENTIO:\nHe hath released him, Isabel, from the world:\nHis head is off and sent to Angelo.\n\nISABELLA:\nNay, but it is not so.\n\nDUKE VINCENTIO:\nIt is no other: show your wisdom, daughter,\nIn your close patience.\n\nISABELLA:\nO, I will to him and pluck out his eyes!\n\nDUKE VINCENTIO:\nYou shall not be admitted to his sight.\n\nISABELLA:\nUnhappy Claudio! wretched Isabel!\nInjurious world! most damned Angelo!\n\nDUKE VINCENTIO:\nThis nor hurts him nor profits you a jot;\nForbear it therefore; give your cause to heaven.\nMark what I say, which you shall find\nBy every syllable a faithful verity:\nThe duke comes home to-morrow; nay, dry your eyes;\nOne of our convent, and his confessor,\nGives me this instance: already he hath carried\nNotice to Escalus and Angelo,\nWho do prepare to meet him at the gates,\nThere to give up their power. If you can, pace your wisdom\nIn that good path that I would wish it go,\nAnd you shall have your bosom on this wretch,\nGrace of the duke, revenges to your heart,\nAnd general honour.\n\nISABELLA:\nI am directed by you.\n\nDUKE VINCENTIO:\nThis letter, then, to Friar Peter give;\n'Tis that he sent me of the duke's return:\nSay, by this token, I desire his company\nAt Mariana's house to-night. Her cause and yours\nI'll perfect him withal, and he shall bring you\nBefore the duke, and to the head of Angelo\nAccuse him home and home. For my poor self,\nI am combined by a sacred vow\nAnd shall be absent. Wend you with this letter:\nCommand these fretting waters from your eyes\nWith a light heart; trust not my holy order,\nIf I pervert your course. Who's here?\n\nLUCIO:\nGood even. Friar, where's the provost?\n\nDUKE VINCENTIO:\nNot within, sir.\n\nLUCIO:\nO pretty Isabella, I am pale at mine heart to see\nthine eyes so red: thou must be patient. I am fain\nto dine and sup with water and bran; I dare not for\nmy head fill my belly; one fruitful meal would set\nme to 't. But they say the duke will be here\nto-morrow. By my troth, Isabel, I loved thy brother:\nif the old fantastical duke of dark corners had been\nat home, he had lived.\n\nDUKE VINCENTIO:\nSir, the duke is marvellous little beholding to your\nreports; but the best is, he lives not in them.\n\nLUCIO:\nFriar, thou knowest not the duke so well as I do:\nhe's a better woodman than thou takest him for.\n\nDUKE VINCENTIO:\nWell, you'll answer this one day. Fare ye well.\n\nLUCIO:\nNay, tarry; I'll go along with thee\nI can tell thee pretty tales of the duke.\n\nDUKE VINCENTIO:\nYou have told me too many of him already, sir, if\nthey be true; if not true, none were enough.\n\nLUCIO:\nI was once before him for getting a wench with child.\n\nDUKE VINCENTIO:\nDid you such a thing?\n\nLUCIO:\nYes, marry, did I but I was fain to forswear it;\nthey would else have married me to the rotten medlar.\n\nDUKE VINCENTIO:\nSir, your company is fairer than honest. Rest you well.\n\nLUCIO:\nBy my troth, I'll go with thee to the lane's end:\nif bawdy talk offend you, we'll have very little of\nit. Nay, friar, I am a kind of burr; I shall stick.\n\nESCALUS:\nEvery letter he hath writ hath disvouched other.\n\nANGELO:\nIn most uneven and distracted manner. His actions\nshow much like to madness: pray heaven his wisdom be\nnot tainted! And why meet him at the gates, and\nredeliver our authorities there\n\nESCALUS:\nI guess not.\n\nANGELO:\nAnd why should we proclaim it in an hour before his\nentering, that if any crave redress of injustice,\nthey should exhibit their petitions in the street?\n\nESCALUS:\nHe shows his reason for that: to have a dispatch of\ncomplaints, and to deliver us from devices\nhereafter, which shall then have no power to stand\nagainst us.\n\nANGELO:\nWell, I beseech you, let it be proclaimed betimes\ni' the morn; I'll call you at your house: give\nnotice to such men of sort and suit as are to meet\nhim.\n\nESCALUS:\nI shall, sir. Fare you well.\n\nANGELO:\nGood night.\nThis deed unshapes me quite, makes me unpregnant\nAnd dull to all proceedings. A deflower'd maid!\nAnd by an eminent body that enforced\nThe law against it! But that her tender shame\nWill not proclaim against her maiden loss,\nHow might she tongue me! Yet reason dares her no;\nFor my authority bears of a credent bulk,\nThat no particular scandal once can touch\nBut it confounds the breather. He should have lived,\nSave that riotous youth, with dangerous sense,\nMight in the times to come have ta'en revenge,\nBy so receiving a dishonour'd life\nWith ransom of such shame. Would yet he had lived!\nA lack, when once our grace we have forgot,\nNothing goes right: we would, and we would not.\n\nDUKE VINCENTIO:\nThese letters at fit time deliver me\nThe provost knows our purpose and our plot.\nThe matter being afoot, keep your instruction,\nAnd hold you ever to our special drift;\nThough sometimes you do blench from this to that,\nAs cause doth minister. Go call at Flavius' house,\nAnd tell him where I stay: give the like notice\nTo Valentinus, Rowland, and to Crassus,\nAnd bid them bring the trumpets to the gate;\nBut send me Flavius first.\n\nFRIAR PETER:\nIt shall be speeded well.\n\nDUKE VINCENTIO:\nI thank thee, Varrius; thou hast made good haste:\nCome, we will walk. There's other of our friends\nWill greet us here anon, my gentle Varrius.\n\nISABELLA:\nTo speak so indirectly I am loath:\nI would say the truth; but to accuse him so,\nThat is your part: yet I am advised to do it;\nHe says, to veil full purpose.\n\nMARIANA:\nBe ruled by him.\n\nISABELLA:\nBesides, he tells me that, if peradventure\nHe speak against me on the adverse side,\nI should not think it strange; for 'tis a physic\nThat's bitter to sweet end.\n\nMARIANA:\nI would Friar Peter--\n\nISABELLA:\nO, peace! the friar is come.\n\nFRIAR PETER:\nCome, I have found you out a stand most fit,\nWhere you may have such vantage on the duke,\nHe shall not pass you. Twice have the trumpets sounded;\nThe generous and gravest citizens\nHave hent the gates, and very near upon\nThe duke is entering: therefore, hence, away!\n\nDUKE VINCENTIO:\nMy very worthy cousin, fairly met!\nOur old and faithful friend, we are glad to see you.\n\nANGELO:\nHappy return be to your royal grace!\n\nDUKE VINCENTIO:\nMany and hearty thankings to you both.\nWe have made inquiry of you; and we hear\nSuch goodness of your justice, that our soul\nCannot but yield you forth to public thanks,\nForerunning more requital.\n\nANGELO:\nYou make my bonds still greater.\n\nDUKE VINCENTIO:\nO, your desert speaks loud; and I should wrong it,\nTo lock it in the wards of covert bosom,\nWhen it deserves, with characters of brass,\nA forted residence 'gainst the tooth of time\nAnd razure of oblivion. Give me your hand,\nAnd let the subject see, to make them know\nThat outward courtesies would fain proclaim\nFavours that keep within. Come, Escalus,\nYou must walk by us on our other hand;\nAnd good supporters are you.\n\nFRIAR PETER:\nNow is your time: speak loud and kneel before him.\n\nISABELLA:\nJustice, O royal duke! Vail your regard\nUpon a wrong'd, I would fain have said, a maid!\nO worthy prince, dishonour not your eye\nBy throwing it on any other object\nTill you have heard me in my true complaint\nAnd given me justice, justice, justice, justice!\n\nDUKE VINCENTIO:\nRelate your wrongs; in what? by whom? be brief.\nHere is Lord Angelo shall give you justice:\nReveal yourself to him.\n\nISABELLA:\nO worthy duke,\nYou bid me seek redemption of the devil:\nHear me yourself; for that which I must speak\nMust either punish me, not being believed,\nOr wring redress from you. Hear me, O hear me, here!\n\nANGELO:\nMy lord, her wits, I fear me, are not firm:\nShe hath been a suitor to me for her brother\nCut off by course of justice,--\n\nISABELLA:\nBy course of justice!\n\nANGELO:\nAnd she will speak most bitterly and strange.\n\nISABELLA:\nMost strange, but yet most truly, will I speak:\nThat Angelo's forsworn; is it not strange?\nThat Angelo's a murderer; is 't not strange?\nThat Angelo is an adulterous thief,\nAn hypocrite, a virgin-violator;\nIs it not strange and strange?\n\nDUKE VINCENTIO:\nNay, it is ten times strange.\n\nISABELLA:\nIt is not truer he is Angelo\nThan this is all as true as it is strange:\nNay, it is ten times true; for truth is truth\nTo the end of reckoning.\n\nDUKE VINCENTIO:\nAway with her! Poor soul,\nShe speaks this in the infirmity of sense.\n\nISABELLA:\nO prince, I conjure thee, as thou believest\nThere is another comfort than this world,\nThat thou neglect me not, with that opinion\nThat I am touch'd with madness! Make not impossible\nThat which but seems unlike: 'tis not impossible\nBut one, the wicked'st caitiff on the ground,\nMay seem as shy, as grave, as just, as absolute\nAs Angelo; even so may Angelo,\nIn all his dressings, characts, titles, forms,\nBe an arch-villain; believe it, royal prince:\nIf he be less, he's nothing; but he's more,\nHad I more name for badness.\n\nDUKE VINCENTIO:\nBy mine honesty,\nIf she be mad,--as I believe no other,--\nHer madness hath the oddest frame of sense,\nSuch a dependency of thing on thing,\nAs e'er I heard in madness.\n\nISABELLA:\nO gracious duke,\nHarp not on that, nor do not banish reason\nFor inequality; but let your reason serve\nTo make the truth appear where it seems hid,\nAnd hide the false seems true.\n\nDUKE VINCENTIO:\nMany that are not mad\nHave, sure, more lack of reason. What would you say?\n\nISABELLA:\nI am the sister of one Claudio,\nCondemn'd upon the act of fornication\nTo lose his head; condemn'd by Angelo:\nI, in probation of a sisterhood,\nWas sent to by my brother; one Lucio\nAs then the messenger,--\n\nLUCIO:\nThat's I, an't like your grace:\nI came to her from Claudio, and desired her\nTo try her gracious fortune with Lord Angelo\nFor her poor brother's pardon.\n\nISABELLA:\nThat's he indeed.\n\nDUKE VINCENTIO:\nYou were not bid to speak.\n\nLUCIO:\nNo, my good lord;\nNor wish'd to hold my peace.\n\nDUKE VINCENTIO:\nI wish you now, then;\nPray you, take note of it: and when you have\nA business for yourself, pray heaven you then\nBe perfect.\n\nLUCIO:\nI warrant your honour.\n\nDUKE VINCENTIO:\nThe warrants for yourself; take heed to't.\n\nISABELLA:\nThis gentleman told somewhat of my tale,--\n\nLUCIO:\nRight.\n\nDUKE VINCENTIO:\nIt may be right; but you are i' the wrong\nTo speak before your time. Proceed.\n\nISABELLA:\nI went\nTo this pernicious caitiff deputy,--\n\nDUKE VINCENTIO:\nThat's somewhat madly spoken.\n\nISABELLA:\nPardon it;\nThe phrase is to the matter.\n\nDUKE VINCENTIO:\nMended again. The matter; proceed.\n\nISABELLA:\nIn brief, to set the needless process by,\nHow I persuaded, how I pray'd, and kneel'd,\nHow he refell'd me, and how I replied,--\nFor this was of much length,--the vile conclusion\nI now begin with grief and shame to utter:\nHe would not, but by gift of my chaste body\nTo his concupiscible intemperate lust,\nRelease my brother; and, after much debatement,\nMy sisterly remorse confutes mine honour,\nAnd I did yield to him: but the next morn betimes,\nHis purpose surfeiting, he sends a warrant\nFor my poor brother's head.\n\nDUKE VINCENTIO:\nThis is most likely!\n\nISABELLA:\nO, that it were as like as it is true!\n\nDUKE VINCENTIO:\nBy heaven, fond wretch, thou knowist not what thou speak'st,\nOr else thou art suborn'd against his honour\nIn hateful practise. First, his integrity\nStands without blemish. Next, it imports no reason\nThat with such vehemency he should pursue\nFaults proper to himself: if he had so offended,\nHe would have weigh'd thy brother by himself\nAnd not have cut him off. Some one hath set you on:\nConfess the truth, and say by whose advice\nThou camest here to complain.\n\nISABELLA:\nAnd is this all?\nThen, O you blessed ministers above,\nKeep me in patience, and with ripen'd time\nUnfold the evil which is here wrapt up\nIn countenance! Heaven shield your grace from woe,\nAs I, thus wrong'd, hence unbelieved go!\n\nDUKE VINCENTIO:\nI know you'ld fain be gone. An officer!\nTo prison with her! Shall we thus permit\nA blasting and a scandalous breath to fall\nOn him so near us? This needs must be a practise.\nWho knew of Your intent and coming hither?\n\nISABELLA:\nOne that I would were here, Friar Lodowick.\n\nDUKE VINCENTIO:\nA ghostly father, belike. Who knows that Lodowick?\n\nLUCIO:\nMy lord, I know him; 'tis a meddling friar;\nI do not like the man: had he been lay, my lord\nFor certain words he spake against your grace\nIn your retirement, I had swinged him soundly.\n\nDUKE VINCENTIO:\nWords against me? this is a good friar, belike!\nAnd to set on this wretched woman here\nAgainst our substitute! Let this friar be found.\n\nLUCIO:\nBut yesternight, my lord, she and that friar,\nI saw them at the prison: a saucy friar,\nA very scurvy fellow.\n\nFRIAR PETER:\nBlessed be your royal grace!\nI have stood by, my lord, and I have heard\nYour royal ear abused. First, hath this woman\nMost wrongfully accused your substitute,\nWho is as free from touch or soil with her\nAs she from one ungot.\n\nDUKE VINCENTIO:\nWe did believe no less.\nKnow you that Friar Lodowick that she speaks of?\n\nFRIAR PETER:\nI know him for a man divine and holy;\nNot scurvy, nor a temporary meddler,\nAs he's reported by this gentleman;\nAnd, on my trust, a man that never yet\nDid, as he vouches, misreport your grace.\n\nLUCIO:\nMy lord, most villanously; believe it.\n\nFRIAR PETER:\nWell, he in time may come to clear himself;\nBut at this instant he is sick my lord,\nOf a strange fever. Upon his mere request,\nBeing come to knowledge that there was complaint\nIntended 'gainst Lord Angelo, came I hither,\nTo speak, as from his mouth, what he doth know\nIs true and false; and what he with his oath\nAnd all probation will make up full clear,\nWhensoever he's convented. First, for this woman.\nTo justify this worthy nobleman,\nSo vulgarly and personally accused,\nHer shall you hear disproved to her eyes,\nTill she herself confess it.\n\nDUKE VINCENTIO:\nGood friar, let's hear it.\nDo you not smile at this, Lord Angelo?\nO heaven, the vanity of wretched fools!\nGive us some seats. Come, cousin Angelo;\nIn this I'll be impartial; be you judge\nOf your own cause. Is this the witness, friar?\nFirst, let her show her face, and after speak.\n\nMARIANA:\nPardon, my lord; I will not show my face\nUntil my husband bid me.\n\nDUKE VINCENTIO:\nWhat, are you married?\n\nMARIANA:\nNo, my lord.\n\nDUKE VINCENTIO:\nAre you a maid?\n\nMARIANA:\nNo, my lord.\n\nDUKE VINCENTIO:\nA widow, then?\n\nMARIANA:\nNeither, my lord.\n\nDUKE VINCENTIO:\nWhy, you are nothing then: neither maid, widow, nor wife?\n\nLUCIO:\nMy lord, she may be a punk; for many of them are\nneither maid, widow, nor wife.\n\nDUKE VINCENTIO:\nSilence that fellow: I would he had some cause\nTo prattle for himself.\n\nLUCIO:\nWell, my lord.\n\nMARIANA:\nMy lord; I do confess I ne'er was married;\nAnd I confess besides I am no maid:\nI have known my husband; yet my husband\nKnows not that ever he knew me.\n\nLUCIO:\nHe was drunk then, my lord: it can be no better.\n\nDUKE VINCENTIO:\nFor the benefit of silence, would thou wert so too!\n\nLUCIO:\nWell, my lord.\n\nDUKE VINCENTIO:\nThis is no witness for Lord Angelo.\n\nMARIANA:\nNow I come to't my lord\nShe that accuses him of fornication,\nIn self-same manner doth accuse my husband,\nAnd charges him my lord, with such a time\nWhen I'll depose I had him in mine arms\nWith all the effect of love.\n\nANGELO:\nCharges she more than me?\n\nMARIANA:\nNot that I know.\n\nDUKE VINCENTIO:\nNo? you say your husband.\n\nMARIANA:\nWhy, just, my lord, and that is Angelo,\nWho thinks he knows that he ne'er knew my body,\nBut knows he thinks that he knows Isabel's.\n\nANGELO:\nThis is a strange abuse. Let's see thy face.\n\nMARIANA:\nMy husband bids me; now I will unmask.\nThis is that face, thou cruel Angelo,\nWhich once thou sworest was worth the looking on;\nThis is the hand which, with a vow'd contract,\nWas fast belock'd in thine; this is the body\nThat took away the match from Isabel,\nAnd did supply thee at thy garden-house\nIn her imagined person.\n\nDUKE VINCENTIO:\nKnow you this woman?\n\nLUCIO:\nCarnally, she says.\n\nDUKE VINCENTIO:\nSirrah, no more!\n\nLUCIO:\nEnough, my lord.\n\nANGELO:\nMy lord, I must confess I know this woman:\nAnd five years since there was some speech of marriage\nBetwixt myself and her; which was broke off,\nPartly for that her promised proportions\nCame short of composition, but in chief\nFor that her reputation was disvalued\nIn levity: since which time of five years\nI never spake with her, saw her, nor heard from her,\nUpon my faith and honour.\n\nMARIANA:\nNoble prince,\nAs there comes light from heaven and words from breath,\nAs there is sense in truth and truth in virtue,\nI am affianced this man's wife as strongly\nAs words could make up vows: and, my good lord,\nBut Tuesday night last gone in's garden-house\nHe knew me as a wife. As this is true,\nLet me in safety raise me from my knees\nOr else for ever be confixed here,\nA marble monument!\n\nANGELO:\nI did but smile till now:\nNow, good my lord, give me the scope of justice\nMy patience here is touch'd. I do perceive\nThese poor informal women are no more\nBut instruments of some more mightier member\nThat sets them on: let me have way, my lord,\nTo find this practise out.\n\nDUKE VINCENTIO:\nAy, with my heart\nAnd punish them to your height of pleasure.\nThou foolish friar, and thou pernicious woman,\nCompact with her that's gone, think'st thou thy oaths,\nThough they would swear down each particular saint,\nWere testimonies against his worth and credit\nThat's seal'd in approbation? You, Lord Escalus,\nSit with my cousin; lend him your kind pains\nTo find out this abuse, whence 'tis derived.\nThere is another friar that set them on;\nLet him be sent for.\n\nFRIAR PETER:\nWould he were here, my lord! for he indeed\nHath set the women on to this complaint:\nYour provost knows the place where he abides\nAnd he may fetch him.\n\nDUKE VINCENTIO:\nGo do it instantly.\nAnd you, my noble and well-warranted cousin,\nWhom it concerns to hear this matter forth,\nDo with your injuries as seems you best,\nIn any chastisement: I for a while will leave you;\nBut stir not you till you have well determined\nUpon these slanderers.\n\nESCALUS:\nMy lord, we'll do it throughly.\nSignior Lucio, did not you say you knew that\nFriar Lodowick to be a dishonest person?\n\nLUCIO:\n'Cucullus non facit monachum:' honest in nothing\nbut in his clothes; and one that hath spoke most\nvillanous speeches of the duke.\n\nESCALUS:\nWe shall entreat you to abide here till he come and\nenforce them against him: we shall find this friar a\nnotable fellow.\n\nLUCIO:\nAs any in Vienna, on my word.\n\nESCALUS:\nCall that same Isabel here once again; I would speak with her.\nPray you, my lord, give me leave to question; you\nshall see how I'll handle her.\n\nLUCIO:\nNot better than he, by her own report.\n\nESCALUS:\nSay you?\n\nLUCIO:\nMarry, sir, I think, if you handled her privately,\nshe would sooner confess: perchance, publicly,\nshe'll be ashamed.\n\nESCALUS:\nI will go darkly to work with her.\n\nLUCIO:\nThat's the way; for women are light at midnight.\n\nESCALUS:\nCome on, mistress: here's a gentlewoman denies all\nthat you have said.\n\nLUCIO:\nMy lord, here comes the rascal I spoke of; here with\nthe provost.\n\nESCALUS:\nIn very good time: speak not you to him till we\ncall upon you.\n\nLUCIO:\nMum.\n\nESCALUS:\nCome, sir: did you set these women on to slander\nLord Angelo? they have confessed you did.\n\nDUKE VINCENTIO:\n'Tis false.\n\nESCALUS:\nHow! know you where you are?\n\nDUKE VINCENTIO:\nRespect to your great place! and let the devil\nBe sometime honour'd for his burning throne!\nWhere is the duke? 'tis he should hear me speak.\n\nESCALUS:\nThe duke's in us; and we will hear you speak:\nLook you speak justly.\n\nDUKE VINCENTIO:\nBoldly, at least. But, O, poor souls,\nCome you to seek the lamb here of the fox?\nGood night to your redress! Is the duke gone?\nThen is your cause gone too. The duke's unjust,\nThus to retort your manifest appeal,\nAnd put your trial in the villain's mouth\nWhich here you come to accuse.\n\nLUCIO:\nThis is the rascal; this is he I spoke of.\n\nESCALUS:\nWhy, thou unreverend and unhallow'd friar,\nIs't not enough thou hast suborn'd these women\nTo accuse this worthy man, but, in foul mouth\nAnd in the witness of his proper ear,\nTo call him villain? and then to glance from him\nTo the duke himself, to tax him with injustice?\nTake him hence; to the rack with him! We'll touse you\nJoint by joint, but we will know his purpose.\nWhat 'unjust'!\n\nDUKE VINCENTIO:\nBe not so hot; the duke\nDare no more stretch this finger of mine than he\nDare rack his own: his subject am I not,\nNor here provincial. My business in this state\nMade me a looker on here in Vienna,\nWhere I have seen corruption boil and bubble\nTill it o'er-run the stew; laws for all faults,\nBut faults so countenanced, that the strong statutes\nStand like the forfeits in a barber's shop,\nAs much in mock as mark.\n\nESCALUS:\nSlander to the state! Away with him to prison!\n\nANGELO:\nWhat can you vouch against him, Signior Lucio?\nIs this the man that you did tell us of?\n\nLUCIO:\n'Tis he, my lord. Come hither, goodman baldpate:\ndo you know me?\n\nDUKE VINCENTIO:\nI remember you, sir, by the sound of your voice: I\nmet you at the prison, in the absence of the duke.\n\nLUCIO:\nO, did you so? And do you remember what you said of the duke?\n\nDUKE VINCENTIO:\nMost notedly, sir.\n\nLUCIO:\nDo you so, sir? And was the duke a fleshmonger, a\nfool, and a coward, as you then reported him to be?\n\nDUKE VINCENTIO:\nYou must, sir, change persons with me, ere you make\nthat my report: you, indeed, spoke so of him; and\nmuch more, much worse.\n\nLUCIO:\nO thou damnable fellow! Did not I pluck thee by the\nnose for thy speeches?\n\nDUKE VINCENTIO:\nI protest I love the duke as I love myself.\n\nANGELO:\nHark, how the villain would close now, after his\ntreasonable abuses!\n\nESCALUS:\nSuch a fellow is not to be talked withal. Away with\nhim to prison! Where is the provost? Away with him\nto prison! lay bolts enough upon him: let him\nspeak no more. Away with those giglots too, and\nwith the other confederate companion!\n\nDUKE VINCENTIO:\n\nANGELO:\nWhat, resists he? Help him, Lucio.\n\nLUCIO:\nCome, sir; come, sir; come, sir; foh, sir! Why, you\nbald-pated, lying rascal, you must be hooded, must\nyou? Show your knave's visage, with a pox to you!\nshow your sheep-biting face, and be hanged an hour!\nWill't not off?\n\nDUKE VINCENTIO:\nThou art the first knave that e'er madest a duke.\nFirst, provost, let me bail these gentle three.\nSneak not away, sir; for the friar and you\nMust have a word anon. Lay hold on him.\n\nLUCIO:\nThis may prove worse than hanging.\n\nDUKE VINCENTIO:\n\nANGELO:\nO my dread lord,\nI should be guiltier than my guiltiness,\nTo think I can be undiscernible,\nWhen I perceive your grace, like power divine,\nHath look'd upon my passes. Then, good prince,\nNo longer session hold upon my shame,\nBut let my trial be mine own confession:\nImmediate sentence then and sequent death\nIs all the grace I beg.\n\nDUKE VINCENTIO:\nCome hither, Mariana.\nSay, wast thou e'er contracted to this woman?\n\nANGELO:\nI was, my lord.\n\nDUKE VINCENTIO:\nGo take her hence, and marry her instantly.\nDo you the office, friar; which consummate,\nReturn him here again. Go with him, provost.\n\nESCALUS:\nMy lord, I am more amazed at his dishonour\nThan at the strangeness of it.\n\nDUKE VINCENTIO:\nCome hither, Isabel.\nYour friar is now your prince: as I was then\nAdvertising and holy to your business,\nNot changing heart with habit, I am still\nAttorney'd at your service.\n\nISABELLA:\nO, give me pardon,\nThat I, your vassal, have employ'd and pain'd\nYour unknown sovereignty!\n\nDUKE VINCENTIO:\nYou are pardon'd, Isabel:\nAnd now, dear maid, be you as free to us.\nYour brother's death, I know, sits at your heart;\nAnd you may marvel why I obscured myself,\nLabouring to save his life, and would not rather\nMake rash remonstrance of my hidden power\nThan let him so be lost. O most kind maid,\nIt was the swift celerity of his death,\nWhich I did think with slower foot came on,\nThat brain'd my purpose. But, peace be with him!\nThat life is better life, past fearing death,\nThan that which lives to fear: make it your comfort,\nSo happy is your brother.\n\nISABELLA:\nI do, my lord.\n\nDUKE VINCENTIO:\nFor this new-married man approaching here,\nWhose salt imagination yet hath wrong'd\nYour well defended honour, you must pardon\nFor Mariana's sake: but as he adjudged your brother,--\nBeing criminal, in double violation\nOf sacred chastity and of promise-breach\nThereon dependent, for your brother's life,--\nThe very mercy of the law cries out\nMost audible, even from his proper tongue,\n'An Angelo for Claudio, death for death!'\nHaste still pays haste, and leisure answers leisure;\nLike doth quit like, and MEASURE still FOR MEASURE.\nThen, Angelo, thy fault's thus manifested;\nWhich, though thou wouldst deny, denies thee vantage.\nWe do condemn thee to the very block\nWhere Claudio stoop'd to death, and with like haste.\nAway with him!\n\nMARIANA:\nO my most gracious lord,\nI hope you will not mock me with a husband.\n\nDUKE VINCENTIO:\nIt is your husband mock'd you with a husband.\nConsenting to the safeguard of your honour,\nI thought your marriage fit; else imputation,\nFor that he knew you, might reproach your life\nAnd choke your good to come; for his possessions,\nAlthough by confiscation they are ours,\nWe do instate and widow you withal,\nTo buy you a better husband.\n\nMARIANA:\nO my dear lord,\nI crave no other, nor no better man.\n\nDUKE VINCENTIO:\nNever crave him; we are definitive.\n\nMARIANA:\nGentle my liege,--\n\nDUKE VINCENTIO:\nYou do but lose your labour.\nAway with him to death!\nNow, sir, to you.\n\nMARIANA:\nO my good lord! Sweet Isabel, take my part;\nLend me your knees, and all my life to come\nI'll lend you all my life to do you service.\n\nDUKE VINCENTIO:\nAgainst all sense you do importune her:\nShould she kneel down in mercy of this fact,\nHer brother's ghost his paved bed would break,\nAnd take her hence in horror.\n\nMARIANA:\nIsabel,\nSweet Isabel, do yet but kneel by me;\nHold up your hands, say nothing; I'll speak all.\nThey say, best men are moulded out of faults;\nAnd, for the most, become much more the better\nFor being a little bad: so may my husband.\nO Isabel, will you not lend a knee?\n\nDUKE VINCENTIO:\nHe dies for Claudio's death.\n\nISABELLA:\nMost bounteous sir,\nLook, if it please you, on this man condemn'd,\nAs if my brother lived: I partly think\nA due sincerity govern'd his deeds,\nTill he did look on me: since it is so,\nLet him not die. My brother had but justice,\nIn that he did the thing for which he died:\nFor Angelo,\nHis act did not o'ertake his bad intent,\nAnd must be buried but as an intent\nThat perish'd by the way: thoughts are no subjects;\nIntents but merely thoughts.\n\nMARIANA:\nMerely, my lord.\n\nDUKE VINCENTIO:\nYour suit's unprofitable; stand up, I say.\nI have bethought me of another fault.\nProvost, how came it Claudio was beheaded\nAt an unusual hour?\n\nProvost:\nIt was commanded so.\n\nDUKE VINCENTIO:\nHad you a special warrant for the deed?\n\nProvost:\nNo, my good lord; it was by private message.\n\nDUKE VINCENTIO:\nFor which I do discharge you of your office:\nGive up your keys.\n\nProvost:\nPardon me, noble lord:\nI thought it was a fault, but knew it not;\nYet did repent me, after more advice;\nFor testimony whereof, one in the prison,\nThat should by private order else have died,\nI have reserved alive.\n\nDUKE VINCENTIO:\nWhat's he?\n\nProvost:\nHis name is Barnardine.\n\nDUKE VINCENTIO:\nI would thou hadst done so by Claudio.\nGo fetch him hither; let me look upon him.\n\nESCALUS:\nI am sorry, one so learned and so wise\nAs you, Lord Angelo, have still appear'd,\nShould slip so grossly, both in the heat of blood.\nAnd lack of temper'd judgment afterward.\n\nANGELO:\nI am sorry that such sorrow I procure:\nAnd so deep sticks it in my penitent heart\nThat I crave death more willingly than mercy;\n'Tis my deserving, and I do entreat it.\n\nDUKE VINCENTIO:\nWhich is that Barnardine?\n\nProvost:\nThis, my lord.\n\nDUKE VINCENTIO:\nThere was a friar told me of this man.\nSirrah, thou art said to have a stubborn soul.\nThat apprehends no further than this world,\nAnd squarest thy life according. Thou'rt condemn'd:\nBut, for those earthly faults, I quit them all;\nAnd pray thee take this mercy to provide\nFor better times to come. Friar, advise him;\nI leave him to your hand. What muffled fellow's that?\n\nProvost:\nThis is another prisoner that I saved.\nWho should have died when Claudio lost his head;\nAs like almost to Claudio as himself.\n\nDUKE VINCENTIO:\n\nLUCIO:\n'Faith, my lord. I spoke it but according to the\ntrick. If you will hang me for it, you may; but I\nhad rather it would please you I might be whipt.\n\nDUKE VINCENTIO:\nWhipt first, sir, and hanged after.\nProclaim it, provost, round about the city.\nIs any woman wrong'd by this lewd fellow,\nAs I have heard him swear himself there's one\nWhom he begot with child, let her appear,\nAnd he shall marry her: the nuptial finish'd,\nLet him be whipt and hang'd.\n\nLUCIO:\nI beseech your highness, do not marry me to a whore.\nYour highness said even now, I made you a duke:\ngood my lord, do not recompense me in making me a cuckold.\n\nDUKE VINCENTIO:\nUpon mine honour, thou shalt marry her.\nThy slanders I forgive; and therewithal\nRemit thy other forfeits. Take him to prison;\nAnd see our pleasure herein executed.\n\nLUCIO:\nMarrying a punk, my lord, is pressing to death,\nwhipping, and hanging.\n\nDUKE VINCENTIO:\nSlandering a prince deserves it.\nShe, Claudio, that you wrong'd, look you restore.\nJoy to you, Mariana! Love her, Angelo:\nI have confess'd her and I know her virtue.\nThanks, good friend Escalus, for thy much goodness:\nThere's more behind that is more gratulate.\nThanks, provost, for thy care and secrecy:\nWe shill employ thee in a worthier place.\nForgive him, Angelo, that brought you home\nThe head of Ragozine for Claudio's:\nThe offence pardons itself. Dear Isabel,\nI have a motion much imports your good;\nWhereto if you'll a willing ear incline,\nWhat's mine is yours and what is yours is mine.\nSo, bring us to our palace; where we'll show\nWhat's yet behind, that's meet you all should know.\n\nSLY:\nI'll pheeze you, in faith.\n\nHostess:\nA pair of stocks, you rogue!\n\nSLY:\nYe are a baggage: the Slys are no rogues; look in\nthe chronicles; we came in with Richard Conqueror.\nTherefore paucas pallabris; let the world slide: sessa!\n\nHostess:\nYou will not pay for the glasses you have burst?\n\nSLY:\nNo, not a denier. Go by, Jeronimy: go to thy cold\nbed, and warm thee.\n\nHostess:\nI know my remedy; I must go fetch the\nthird--borough.\n\nSLY:\nThird, or fourth, or fifth borough, I'll answer him\nby law: I'll not budge an inch, boy: let him come,\nand kindly.\n\nLord:\nHuntsman, I charge thee, tender well my hounds:\nBrach Merriman, the poor cur is emboss'd;\nAnd couple Clowder with the deep--mouth'd brach.\nSaw'st thou not, boy, how Silver made it good\nAt the hedge-corner, in the coldest fault?\nI would not lose the dog for twenty pound.\n\nFirst Huntsman:\nWhy, Belman is as good as he, my lord;\nHe cried upon it at the merest loss\nAnd twice to-day pick'd out the dullest scent:\nTrust me, I take him for the better dog.\n\nLord:\nThou art a fool: if Echo were as fleet,\nI would esteem him worth a dozen such.\nBut sup them well and look unto them all:\nTo-morrow I intend to hunt again.\n\nFirst Huntsman:\nI will, my lord.\n\nLord:\nWhat's here? one dead, or drunk? See, doth he breathe?\n\nSecond Huntsman:\nHe breathes, my lord. Were he not warm'd with ale,\nThis were a bed but cold to sleep so soundly.\n\nLord:\nO monstrous beast! how like a swine he lies!\nGrim death, how foul and loathsome is thine image!\nSirs, I will practise on this drunken man.\nWhat think you, if he were convey'd to bed,\nWrapp'd in sweet clothes, rings put upon his fingers,\nA most delicious banquet by his bed,\nAnd brave attendants near him when he wakes,\nWould not the beggar then forget himself?\n\nFirst Huntsman:\nBelieve me, lord, I think he cannot choose.\n\nSecond Huntsman:\nIt would seem strange unto him when he waked.\n\nLord:\nEven as a flattering dream or worthless fancy.\nThen take him up and manage well the jest:\nCarry him gently to my fairest chamber\nAnd hang it round with all my wanton pictures:\nBalm his foul head in warm distilled waters\nAnd burn sweet wood to make the lodging sweet:\nProcure me music ready when he wakes,\nTo make a dulcet and a heavenly sound;\nAnd if he chance to speak, be ready straight\nAnd with a low submissive reverence\nSay 'What is it your honour will command?'\nLet one attend him with a silver basin\nFull of rose-water and bestrew'd with flowers,\nAnother bear the ewer, the third a diaper,\nAnd say 'Will't please your lordship cool your hands?'\nSome one be ready with a costly suit\nAnd ask him what apparel he will wear;\nAnother tell him of his hounds and horse,\nAnd that his lady mourns at his disease:\nPersuade him that he hath been lunatic;\nAnd when he says he is, say that he dreams,\nFor he is nothing but a mighty lord.\nThis do and do it kindly, gentle sirs:\nIt will be pastime passing excellent,\nIf it be husbanded with modesty.\n\nFirst Huntsman:\nMy lord, I warrant you we will play our part,\nAs he shall think by our true diligence\nHe is no less than what we say he is.\n\nLord:\nTake him up gently and to bed with him;\nAnd each one to his office when he wakes.\nSirrah, go see what trumpet 'tis that sounds:\nBelike, some noble gentleman that means,\nTravelling some journey, to repose him here.\nHow now! who is it?\n\nServant:\nAn't please your honour, players\nThat offer service to your lordship.\n\nLord:\nBid them come near.\nNow, fellows, you are welcome.\n\nPlayers:\nWe thank your honour.\n\nLord:\nDo you intend to stay with me tonight?\n\nA Player:\nSo please your lordship to accept our duty.\n\nLord:\nWith all my heart. This fellow I remember,\nSince once he play'd a farmer's eldest son:\n'Twas where you woo'd the gentlewoman so well:\nI have forgot your name; but, sure, that part\nWas aptly fitted and naturally perform'd.\n\nA Player:\nI think 'twas Soto that your honour means.\n\nLord:\n'Tis very true: thou didst it excellent.\nWell, you are come to me in a happy time;\nThe rather for I have some sport in hand\nWherein your cunning can assist me much.\nThere is a lord will hear you play to-night:\nBut I am doubtful of your modesties;\nLest over-eyeing of his odd behavior,--\nFor yet his honour never heard a play--\nYou break into some merry passion\nAnd so offend him; for I tell you, sirs,\nIf you should smile he grows impatient.\n\nA Player:\nFear not, my lord: we can contain ourselves,\nWere he the veriest antic in the world.\n\nLord:\nGo, sirrah, take them to the buttery,\nAnd give them friendly welcome every one:\nLet them want nothing that my house affords.\nSirrah, go you to Barthol'mew my page,\nAnd see him dress'd in all suits like a lady:\nThat done, conduct him to the drunkard's chamber;\nAnd call him 'madam,' do him obeisance.\nTell him from me, as he will win my love,\nHe bear himself with honourable action,\nSuch as he hath observed in noble ladies\nUnto their lords, by them accomplished:\nSuch duty to the drunkard let him do\nWith soft low tongue and lowly courtesy,\nAnd say 'What is't your honour will command,\nWherein your lady and your humble wife\nMay show her duty and make known her love?'\nAnd then with kind embracements, tempting kisses,\nAnd with declining head into his bosom,\nBid him shed tears, as being overjoy'd\nTo see her noble lord restored to health,\nWho for this seven years hath esteem'd him\nNo better than a poor and loathsome beggar:\nAnd if the boy have not a woman's gift\nTo rain a shower of commanded tears,\nAn onion will do well for such a shift,\nWhich in a napkin being close convey'd\nShall in despite enforce a watery eye.\nSee this dispatch'd with all the haste thou canst:\nAnon I'll give thee more instructions.\nI know the boy will well usurp the grace,\nVoice, gait and action of a gentlewoman:\nI long to hear him call the drunkard husband,\nAnd how my men will stay themselves from laughter\nWhen they do homage to this simple peasant.\nI'll in to counsel them; haply my presence\nMay well abate the over-merry spleen\nWhich otherwise would grow into extremes.\n\nSLY:\nFor God's sake, a pot of small ale.\n\nFirst Servant:\nWill't please your lordship drink a cup of sack?\n\nSecond Servant:\nWill't please your honour taste of these conserves?\n\nThird Servant:\nWhat raiment will your honour wear to-day?\n\nSLY:\nI am Christophero Sly; call not me 'honour' nor\n'lordship:' I ne'er drank sack in my life; and if\nyou give me any conserves, give me conserves of\nbeef: ne'er ask me what raiment I'll wear; for I\nhave no more doublets than backs, no more stockings\nthan legs, nor no more shoes than feet; nay,\nsometimes more feet than shoes, or such shoes as my\ntoes look through the over-leather.\n\nLord:\nHeaven cease this idle humour in your honour!\nO, that a mighty man of such descent,\nOf such possessions and so high esteem,\nShould be infused with so foul a spirit!\n\nSLY:\nWhat, would you make me mad? Am not I Christopher\nSly, old Sly's son of Burtonheath, by birth a\npedlar, by education a cardmaker, by transmutation a\nbear-herd, and now by present profession a tinker?\nAsk Marian Hacket, the fat ale-wife of Wincot, if\nshe know me not: if she say I am not fourteen pence\non the score for sheer ale, score me up for the\nlyingest knave in Christendom. What! I am not\nbestraught: here's--\n\nThird Servant:\nO, this it is that makes your lady mourn!\n\nSecond Servant:\nO, this is it that makes your servants droop!\n\nLord:\nHence comes it that your kindred shuns your house,\nAs beaten hence by your strange lunacy.\nO noble lord, bethink thee of thy birth,\nCall home thy ancient thoughts from banishment\nAnd banish hence these abject lowly dreams.\nLook how thy servants do attend on thee,\nEach in his office ready at thy beck.\nWilt thou have music? hark! Apollo plays,\nAnd twenty caged nightingales do sing:\nOr wilt thou sleep? we'll have thee to a couch\nSofter and sweeter than the lustful bed\nOn purpose trimm'd up for Semiramis.\nSay thou wilt walk; we will bestrew the ground:\nOr wilt thou ride? thy horses shall be trapp'd,\nTheir harness studded all with gold and pearl.\nDost thou love hawking? thou hast hawks will soar\nAbove the morning lark or wilt thou hunt?\nThy hounds shall make the welkin answer them\nAnd fetch shrill echoes from the hollow earth.\n\nFirst Servant:\nSay thou wilt course; thy greyhounds are as swift\nAs breathed stags, ay, fleeter than the roe.\n\nSecond Servant:\nDost thou love pictures? we will fetch thee straight\nAdonis painted by a running brook,\nAnd Cytherea all in sedges hid,\nWhich seem to move and wanton with her breath,\nEven as the waving sedges play with wind.\n\nLord:\nWe'll show thee Io as she was a maid,\nAnd how she was beguiled and surprised,\nAs lively painted as the deed was done.\n\nThird Servant:\nOr Daphne roaming through a thorny wood,\nScratching her legs that one shall swear she bleeds,\nAnd at that sight shall sad Apollo weep,\nSo workmanly the blood and tears are drawn.\n\nLord:\nThou art a lord, and nothing but a lord:\nThou hast a lady far more beautiful\nThan any woman in this waning age.\n\nFirst Servant:\nAnd till the tears that she hath shed for thee\nLike envious floods o'er-run her lovely face,\nShe was the fairest creature in the world;\nAnd yet she is inferior to none.\n\nSLY:\nAm I a lord? and have I such a lady?\nOr do I dream? or have I dream'd till now?\nI do not sleep: I see, I hear, I speak;\nI smell sweet savours and I feel soft things:\nUpon my life, I am a lord indeed\nAnd not a tinker nor Christophero Sly.\nWell, bring our lady hither to our sight;\nAnd once again, a pot o' the smallest ale.\n\nSecond Servant:\nWill't please your mightiness to wash your hands?\nO, how we joy to see your wit restored!\nO, that once more you knew but what you are!\nThese fifteen years you have been in a dream;\nOr when you waked, so waked as if you slept.\n\nSLY:\nThese fifteen years! by my fay, a goodly nap.\nBut did I never speak of all that time?\n\nFirst Servant:\nO, yes, my lord, but very idle words:\nFor though you lay here in this goodly chamber,\nYet would you say ye were beaten out of door;\nAnd rail upon the hostess of the house;\nAnd say you would present her at the leet,\nBecause she brought stone jugs and no seal'd quarts:\nSometimes you would call out for Cicely Hacket.\n\nSLY:\nAy, the woman's maid of the house.\n\nThird Servant:\nWhy, sir, you know no house nor no such maid,\nNor no such men as you have reckon'd up,\nAs Stephen Sly and did John Naps of Greece\nAnd Peter Turph and Henry Pimpernell\nAnd twenty more such names and men as these\nWhich never were nor no man ever saw.\n\nSLY:\nNow Lord be thanked for my good amends!\n\nALL:\nAmen.\n\nSLY:\nI thank thee: thou shalt not lose by it.\n\nPage:\nHow fares my noble lord?\n\nSLY:\nMarry, I fare well for here is cheer enough.\nWhere is my wife?\n\nPage:\nHere, noble lord: what is thy will with her?\n\nSLY:\nAre you my wife and will not call me husband?\nMy men should call me 'lord:' I am your goodman.\n\nPage:\nMy husband and my lord, my lord and husband;\nI am your wife in all obedience.\n\nSLY:\nI know it well. What must I call her?\n\nLord:\nMadam.\n\nSLY:\nAl'ce madam, or Joan madam?\n\nLord:\n'Madam,' and nothing else: so lords\ncall ladies.\n\nSLY:\nMadam wife, they say that I have dream'd\nAnd slept above some fifteen year or more.\n\nPage:\nAy, and the time seems thirty unto me,\nBeing all this time abandon'd from your bed.\n\nSLY:\n'Tis much. Servants, leave me and her alone.\nMadam, undress you and come now to bed.\n\nPage:\nThrice noble lord, let me entreat of you\nTo pardon me yet for a night or two,\nOr, if not so, until the sun be set:\nFor your physicians have expressly charged,\nIn peril to incur your former malady,\nThat I should yet absent me from your bed:\nI hope this reason stands for my excuse.\n\nSLY:\nAy, it stands so that I may hardly\ntarry so long. But I would be loath to fall into\nmy dreams again: I will therefore tarry in\ndespite of the flesh and the blood.\n\nMessenger:\nYour honour's players, heating your amendment,\nAre come to play a pleasant comedy;\nFor so your doctors hold it very meet,\nSeeing too much sadness hath congeal'd your blood,\nAnd melancholy is the nurse of frenzy:\nTherefore they thought it good you hear a play\nAnd frame your mind to mirth and merriment,\nWhich bars a thousand harms and lengthens life.\n\nSLY:\nMarry, I will, let them play it. Is not a\ncomondy a Christmas gambold or a tumbling-trick?\n\nPage:\nNo, my good lord; it is more pleasing stuff.\n\nSLY:\nWhat, household stuff?\n\nPage:\nIt is a kind of history.\n\nSLY:\nWell, well see't. Come, madam wife, sit by my side\nand let the world slip: we shall ne'er be younger.\n\nLUCENTIO:\nTranio, since for the great desire I had\nTo see fair Padua, nursery of arts,\nI am arrived for fruitful Lombardy,\nThe pleasant garden of great Italy;\nAnd by my father's love and leave am arm'd\nWith his good will and thy good company,\nMy trusty servant, well approved in all,\nHere let us breathe and haply institute\nA course of learning and ingenious studies.\nPisa renown'd for grave citizens\nGave me my being and my father first,\nA merchant of great traffic through the world,\nVincetino come of Bentivolii.\nVincetino's son brought up in Florence\nIt shall become to serve all hopes conceived,\nTo deck his fortune with his virtuous deeds:\nAnd therefore, Tranio, for the time I study,\nVirtue and that part of philosophy\nWill I apply that treats of happiness\nBy virtue specially to be achieved.\nTell me thy mind; for I have Pisa left\nAnd am to Padua come, as he that leaves\nA shallow plash to plunge him in the deep\nAnd with satiety seeks to quench his thirst.\n\nTRANIO:\nMi perdonato, gentle master mine,\nI am in all affected as yourself;\nGlad that you thus continue your resolve\nTo suck the sweets of sweet philosophy.\nOnly, good master, while we do admire\nThis virtue and this moral discipline,\nLet's be no stoics nor no stocks, I pray;\nOr so devote to Aristotle's cheques\nAs Ovid be an outcast quite abjured:\nBalk logic with acquaintance that you have\nAnd practise rhetoric in your common talk;\nMusic and poesy use to quicken you;\nThe mathematics and the metaphysics,\nFall to them as you find your stomach serves you;\nNo profit grows where is no pleasure ta'en:\nIn brief, sir, study what you most affect.\n\nLUCENTIO:\nGramercies, Tranio, well dost thou advise.\nIf, Biondello, thou wert come ashore,\nWe could at once put us in readiness,\nAnd take a lodging fit to entertain\nSuch friends as time in Padua shall beget.\nBut stay a while: what company is this?\n\nTRANIO:\nMaster, some show to welcome us to town.\n\nBAPTISTA:\nGentlemen, importune me no farther,\nFor how I firmly am resolved you know;\nThat is, not bestow my youngest daughter\nBefore I have a husband for the elder:\nIf either of you both love Katharina,\nBecause I know you well and love you well,\nLeave shall you have to court her at your pleasure.\n\nGREMIO:\n\nKATHARINA:\nI pray you, sir, is it your will\nTo make a stale of me amongst these mates?\n\nHORTENSIO:\nMates, maid! how mean you that? no mates for you,\nUnless you were of gentler, milder mould.\n\nKATHARINA:\nI'faith, sir, you shall never need to fear:\nI wis it is not half way to her heart;\nBut if it were, doubt not her care should be\nTo comb your noddle with a three-legg'd stool\nAnd paint your face and use you like a fool.\n\nHORTENSIA:\nFrom all such devils, good Lord deliver us!\n\nGREMIO:\nAnd me too, good Lord!\n\nTRANIO:\nHush, master! here's some good pastime toward:\nThat wench is stark mad or wonderful froward.\n\nLUCENTIO:\nBut in the other's silence do I see\nMaid's mild behavior and sobriety.\nPeace, Tranio!\n\nTRANIO:\nWell said, master; mum! and gaze your fill.\n\nBAPTISTA:\nGentlemen, that I may soon make good\nWhat I have said, Bianca, get you in:\nAnd let it not displease thee, good Bianca,\nFor I will love thee ne'er the less, my girl.\n\nKATHARINA:\nA pretty peat! it is best\nPut finger in the eye, an she knew why.\n\nBIANCA:\nSister, content you in my discontent.\nSir, to your pleasure humbly I subscribe:\nMy books and instruments shall be my company,\nOn them to took and practise by myself.\n\nLUCENTIO:\nHark, Tranio! thou may'st hear Minerva speak.\n\nHORTENSIO:\nSignior Baptista, will you be so strange?\nSorry am I that our good will effects\nBianca's grief.\n\nGREMIO:\nWhy will you mew her up,\nSignior Baptista, for this fiend of hell,\nAnd make her bear the penance of her tongue?\n\nBAPTISTA:\nGentlemen, content ye; I am resolved:\nGo in, Bianca:\nAnd for I know she taketh most delight\nIn music, instruments and poetry,\nSchoolmasters will I keep within my house,\nFit to instruct her youth. If you, Hortensio,\nOr Signior Gremio, you, know any such,\nPrefer them hither; for to cunning men\nI will be very kind, and liberal\nTo mine own children in good bringing up:\nAnd so farewell. Katharina, you may stay;\nFor I have more to commune with Bianca.\n\nKATHARINA:\nWhy, and I trust I may go too, may I not? What,\nshall I be appointed hours; as though, belike, I\nknew not what to take and what to leave, ha?\n\nGREMIO:\nYou may go to the devil's dam: your gifts are so\ngood, here's none will hold you. Their love is not\nso great, Hortensio, but we may blow our nails\ntogether, and fast it fairly out: our cakes dough on\nboth sides. Farewell: yet for the love I bear my\nsweet Bianca, if I can by any means light on a fit\nman to teach her that wherein she delights, I will\nwish him to her father.\n\nHORTENSIO:\nSo will I, Signior Gremio: but a word, I pray.\nThough the nature of our quarrel yet never brooked\nparle, know now, upon advice, it toucheth us both,\nthat we may yet again have access to our fair\nmistress and be happy rivals in Bianco's love, to\nlabour and effect one thing specially.\n\nGREMIO:\nWhat's that, I pray?\n\nHORTENSIO:\nMarry, sir, to get a husband for her sister.\n\nGREMIO:\nA husband! a devil.\n\nHORTENSIO:\nI say, a husband.\n\nGREMIO:\nI say, a devil. Thinkest thou, Hortensio, though\nher father be very rich, any man is so very a fool\nto be married to hell?\n\nHORTENSIO:\nTush, Gremio, though it pass your patience and mine\nto endure her loud alarums, why, man, there be good\nfellows in the world, an a man could light on them,\nwould take her with all faults, and money enough.\n\nGREMIO:\nI cannot tell; but I had as lief take her dowry with\nthis condition, to be whipped at the high cross\nevery morning.\n\nHORTENSIO:\nFaith, as you say, there's small choice in rotten\napples. But come; since this bar in law makes us\nfriends, it shall be so far forth friendly\nmaintained all by helping Baptista's eldest daughter\nto a husband we set his youngest free for a husband,\nand then have to't a fresh. Sweet Bianca! Happy man\nbe his dole! He that runs fastest gets the ring.\nHow say you, Signior Gremio?\n\nGREMIO:\nI am agreed; and would I had given him the best\nhorse in Padua to begin his wooing that would\nthoroughly woo her, wed her and bed her and rid the\nhouse of her! Come on.\n\nTRANIO:\nI pray, sir, tell me, is it possible\nThat love should of a sudden take such hold?\n\nLUCENTIO:\nO Tranio, till I found it to be true,\nI never thought it possible or likely;\nBut see, while idly I stood looking on,\nI found the effect of love in idleness:\nAnd now in plainness do confess to thee,\nThat art to me as secret and as dear\nAs Anna to the queen of Carthage was,\nTranio, I burn, I pine, I perish, Tranio,\nIf I achieve not this young modest girl.\nCounsel me, Tranio, for I know thou canst;\nAssist me, Tranio, for I know thou wilt.\n\nTRANIO:\nMaster, it is no time to chide you now;\nAffection is not rated from the heart:\nIf love have touch'd you, nought remains but so,\n'Redime te captum quam queas minimo.'\n\nLUCENTIO:\nGramercies, lad, go forward; this contents:\nThe rest will comfort, for thy counsel's sound.\n\nTRANIO:\nMaster, you look'd so longly on the maid,\nPerhaps you mark'd not what's the pith of all.\n\nLUCENTIO:\nO yes, I saw sweet beauty in her face,\nSuch as the daughter of Agenor had,\nThat made great Jove to humble him to her hand.\nWhen with his knees he kiss'd the Cretan strand.\n\nTRANIO:\nSaw you no more? mark'd you not how her sister\nBegan to scold and raise up such a storm\nThat mortal ears might hardly endure the din?\n\nLUCENTIO:\nTranio, I saw her coral lips to move\nAnd with her breath she did perfume the air:\nSacred and sweet was all I saw in her.\n\nTRANIO:\nNay, then, 'tis time to stir him from his trance.\nI pray, awake, sir: if you love the maid,\nBend thoughts and wits to achieve her. Thus it stands:\nHer eldest sister is so curst and shrewd\nThat till the father rid his hands of her,\nMaster, your love must live a maid at home;\nAnd therefore has he closely mew'd her up,\nBecause she will not be annoy'd with suitors.\n\nLUCENTIO:\nAh, Tranio, what a cruel father's he!\nBut art thou not advised, he took some care\nTo get her cunning schoolmasters to instruct her?\n\nTRANIO:\nAy, marry, am I, sir; and now 'tis plotted.\n\nLUCENTIO:\nI have it, Tranio.\n\nTRANIO:\nMaster, for my hand,\nBoth our inventions meet and jump in one.\n\nLUCENTIO:\nTell me thine first.\n\nTRANIO:\nYou will be schoolmaster\nAnd undertake the teaching of the maid:\nThat's your device.\n\nLUCENTIO:\nIt is: may it be done?\n\nTRANIO:\nNot possible; for who shall bear your part,\nAnd be in Padua here Vincentio's son,\nKeep house and ply his book, welcome his friends,\nVisit his countrymen and banquet them?\n\nLUCENTIO:\nBasta; content thee, for I have it full.\nWe have not yet been seen in any house,\nNor can we lie distinguish'd by our faces\nFor man or master; then it follows thus;\nThou shalt be master, Tranio, in my stead,\nKeep house and port and servants as I should:\nI will some other be, some Florentine,\nSome Neapolitan, or meaner man of Pisa.\n'Tis hatch'd and shall be so: Tranio, at once\nUncase thee; take my colour'd hat and cloak:\nWhen Biondello comes, he waits on thee;\nBut I will charm him first to keep his tongue.\n\nTRANIO:\nSo had you need.\nIn brief, sir, sith it your pleasure is,\nAnd I am tied to be obedient;\nFor so your father charged me at our parting,\n'Be serviceable to my son,' quoth he,\nAlthough I think 'twas in another sense;\nI am content to be Lucentio,\nBecause so well I love Lucentio.\n\nLUCENTIO:\nTranio, be so, because Lucentio loves:\nAnd let me be a slave, to achieve that maid\nWhose sudden sight hath thrall'd my wounded eye.\nHere comes the rogue.\nSirrah, where have you been?\n\nBIONDELLO:\nWhere have I been! Nay, how now! where are you?\nMaster, has my fellow Tranio stolen your clothes? Or\nyou stolen his? or both? pray, what's the news?\n\nLUCENTIO:\nSirrah, come hither: 'tis no time to jest,\nAnd therefore frame your manners to the time.\nYour fellow Tranio here, to save my life,\nPuts my apparel and my countenance on,\nAnd I for my escape have put on his;\nFor in a quarrel since I came ashore\nI kill'd a man and fear I was descried:\nWait you on him, I charge you, as becomes,\nWhile I make way from hence to save my life:\nYou understand me?\n\nBIONDELLO:\nI, sir! ne'er a whit.\n\nLUCENTIO:\nAnd not a jot of Tranio in your mouth:\nTranio is changed into Lucentio.\n\nBIONDELLO:\nThe better for him: would I were so too!\n\nTRANIO:\nSo could I, faith, boy, to have the next wish after,\nThat Lucentio indeed had Baptista's youngest daughter.\nBut, sirrah, not for my sake, but your master's, I advise\nYou use your manners discreetly in all kind of companies:\nWhen I am alone, why, then I am Tranio;\nBut in all places else your master Lucentio.\n\nLUCENTIO:\nTranio, let's go: one thing more rests, that\nthyself execute, to make one among these wooers: if\nthou ask me why, sufficeth, my reasons are both good\nand weighty.\n\nFirst Servant:\nMy lord, you nod; you do not mind the play.\n\nSLY:\nYes, by Saint Anne, do I. A good matter, surely:\ncomes there any more of it?\n\nPage:\nMy lord, 'tis but begun.\n\nSLY:\n'Tis a very excellent piece of work, madam lady:\nwould 'twere done!\n\nPETRUCHIO:\nVerona, for a while I take my leave,\nTo see my friends in Padua, but of all\nMy best beloved and approved friend,\nHortensio; and I trow this is his house.\nHere, sirrah Grumio; knock, I say.\n\nGRUMIO:\nKnock, sir! whom should I knock? is there man has\nrebused your worship?\n\nPETRUCHIO:\nVillain, I say, knock me here soundly.\n\nGRUMIO:\nKnock you here, sir! why, sir, what am I, sir, that\nI should knock you here, sir?\n\nPETRUCHIO:\nVillain, I say, knock me at this gate\nAnd rap me well, or I'll knock your knave's pate.\n\nGRUMIO:\nMy master is grown quarrelsome. I should knock\nyou first,\nAnd then I know after who comes by the worst.\n\nPETRUCHIO:\nWill it not be?\nFaith, sirrah, an you'll not knock, I'll ring it;\nI'll try how you can sol, fa, and sing it.\n\nGRUMIO:\nHelp, masters, help! my master is mad.\n\nPETRUCHIO:\nNow, knock when I bid you, sirrah villain!\n\nHORTENSIO:\nHow now! what's the matter? My old friend Grumio!\nand my good friend Petruchio! How do you all at Verona?\n\nPETRUCHIO:\nSignior Hortensio, come you to part the fray?\n'Con tutto il cuore, ben trovato,' may I say.\n\nHORTENSIO:\n'Alla nostra casa ben venuto, molto honorato signor\nmio Petruchio.' Rise, Grumio, rise: we will compound\nthis quarrel.\n\nGRUMIO:\nNay, 'tis no matter, sir, what he 'leges in Latin.\nif this be not a lawful case for me to leave his\nservice, look you, sir, he bid me knock him and rap\nhim soundly, sir: well, was it fit for a servant to\nuse his master so, being perhaps, for aught I see,\ntwo and thirty, a pip out? Whom would to God I had\nwell knock'd at first, Then had not Grumio come by the worst.\n\nPETRUCHIO:\nA senseless villain! Good Hortensio,\nI bade the rascal knock upon your gate\nAnd could not get him for my heart to do it.\n\nGRUMIO:\nKnock at the gate! O heavens! Spake you not these\nwords plain, 'Sirrah, knock me here, rap me here,\nknock me well, and knock me soundly'? And come you\nnow with, 'knocking at the gate'?\n\nPETRUCHIO:\nSirrah, be gone, or talk not, I advise you.\n\nHORTENSIO:\nPetruchio, patience; I am Grumio's pledge:\nWhy, this's a heavy chance 'twixt him and you,\nYour ancient, trusty, pleasant servant Grumio.\nAnd tell me now, sweet friend, what happy gale\nBlows you to Padua here from old Verona?\n\nPETRUCHIO:\nSuch wind as scatters young men through the world,\nTo seek their fortunes farther than at home\nWhere small experience grows. But in a few,\nSignior Hortensio, thus it stands with me:\nAntonio, my father, is deceased;\nAnd I have thrust myself into this maze,\nHaply to wive and thrive as best I may:\nCrowns in my purse I have and goods at home,\nAnd so am come abroad to see the world.\n\nHORTENSIO:\nPetruchio, shall I then come roundly to thee\nAnd wish thee to a shrewd ill-favour'd wife?\nThou'ldst thank me but a little for my counsel:\nAnd yet I'll promise thee she shall be rich\nAnd very rich: but thou'rt too much my friend,\nAnd I'll not wish thee to her.\n\nPETRUCHIO:\nSignior Hortensio, 'twixt such friends as we\nFew words suffice; and therefore, if thou know\nOne rich enough to be Petruchio's wife,\nAs wealth is burden of my wooing dance,\nBe she as foul as was Florentius' love,\nAs old as Sibyl and as curst and shrewd\nAs Socrates' Xanthippe, or a worse,\nShe moves me not, or not removes, at least,\nAffection's edge in me, were she as rough\nAs are the swelling Adriatic seas:\nI come to wive it wealthily in Padua;\nIf wealthily, then happily in Padua.\n\nGRUMIO:\nNay, look you, sir, he tells you flatly what his\nmind is: Why give him gold enough and marry him to\na puppet or an aglet-baby; or an old trot with ne'er\na tooth in her head, though she have as many diseases\nas two and fifty horses: why, nothing comes amiss,\nso money comes withal.\n\nHORTENSIO:\nPetruchio, since we are stepp'd thus far in,\nI will continue that I broach'd in jest.\nI can, Petruchio, help thee to a wife\nWith wealth enough and young and beauteous,\nBrought up as best becomes a gentlewoman:\nHer only fault, and that is faults enough,\nIs that she is intolerable curst\nAnd shrewd and froward, so beyond all measure\nThat, were my state far worser than it is,\nI would not wed her for a mine of gold.\n\nPETRUCHIO:\nHortensio, peace! thou know'st not gold's effect:\nTell me her father's name and 'tis enough;\nFor I will board her, though she chide as loud\nAs thunder when the clouds in autumn crack.\n\nHORTENSIO:\nHer father is Baptista Minola,\nAn affable and courteous gentleman:\nHer name is Katharina Minola,\nRenown'd in Padua for her scolding tongue.\n\nPETRUCHIO:\nI know her father, though I know not her;\nAnd he knew my deceased father well.\nI will not sleep, Hortensio, till I see her;\nAnd therefore let me be thus bold with you\nTo give you over at this first encounter,\nUnless you will accompany me thither.\n\nGRUMIO:\nI pray you, sir, let him go while the humour lasts.\nO' my word, an she knew him as well as I do, she\nwould think scolding would do little good upon him:\nshe may perhaps call him half a score knaves or so:\nwhy, that's nothing; an he begin once, he'll rail in\nhis rope-tricks. I'll tell you what sir, an she\nstand him but a little, he will throw a figure in\nher face and so disfigure her with it that she\nshall have no more eyes to see withal than a cat.\nYou know him not, sir.\n\nHORTENSIO:\nTarry, Petruchio, I must go with thee,\nFor in Baptista's keep my treasure is:\nHe hath the jewel of my life in hold,\nHis youngest daughter, beautiful Binaca,\nAnd her withholds from me and other more,\nSuitors to her and rivals in my love,\nSupposing it a thing impossible,\nFor those defects I have before rehearsed,\nThat ever Katharina will be woo'd;\nTherefore this order hath Baptista ta'en,\nThat none shall have access unto Bianca\nTill Katharina the curst have got a husband.\n\nGRUMIO:\nKatharina the curst!\nA title for a maid of all titles the worst.\n\nHORTENSIO:\nNow shall my friend Petruchio do me grace,\nAnd offer me disguised in sober robes\nTo old Baptista as a schoolmaster\nWell seen in music, to instruct Bianca;\nThat so I may, by this device, at least\nHave leave and leisure to make love to her\nAnd unsuspected court her by herself.\n\nGRUMIO:\nHere's no knavery! See, to beguile the old folks,\nhow the young folks lay their heads together!\nMaster, master, look about you: who goes there, ha?\n\nHORTENSIO:\nPeace, Grumio! it is the rival of my love.\nPetruchio, stand by a while.\n\nGRUMIO:\nA proper stripling and an amorous!\n\nGREMIO:\nO, very well; I have perused the note.\nHark you, sir: I'll have them very fairly bound:\nAll books of love, see that at any hand;\nAnd see you read no other lectures to her:\nYou understand me: over and beside\nSignior Baptista's liberality,\nI'll mend it with a largess. Take your paper too,\nAnd let me have them very well perfumed\nFor she is sweeter than perfume itself\nTo whom they go to. What will you read to her?\n\nLUCENTIO:\nWhate'er I read to her, I'll plead for you\nAs for my patron, stand you so assured,\nAs firmly as yourself were still in place:\nYea, and perhaps with more successful words\nThan you, unless you were a scholar, sir.\n\nGREMIO:\nO this learning, what a thing it is!\n\nGRUMIO:\nO this woodcock, what an ass it is!\n\nPETRUCHIO:\nPeace, sirrah!\n\nHORTENSIO:\nGrumio, mum! God save you, Signior Gremio.\n\nGREMIO:\nAnd you are well met, Signior Hortensio.\nTrow you whither I am going? To Baptista Minola.\nI promised to inquire carefully\nAbout a schoolmaster for the fair Bianca:\nAnd by good fortune I have lighted well\nOn this young man, for learning and behavior\nFit for her turn, well read in poetry\nAnd other books, good ones, I warrant ye.\n\nHORTENSIO:\n'Tis well; and I have met a gentleman\nHath promised me to help me to another,\nA fine musician to instruct our mistress;\nSo shall I no whit be behind in duty\nTo fair Bianca, so beloved of me.\n\nGREMIO:\nBeloved of me; and that my deeds shall prove.\n\nGRUMIO:\nAnd that his bags shall prove.\n\nHORTENSIO:\nGremio, 'tis now no time to vent our love:\nListen to me, and if you speak me fair,\nI'll tell you news indifferent good for either.\nHere is a gentleman whom by chance I met,\nUpon agreement from us to his liking,\nWill undertake to woo curst Katharina,\nYea, and to marry her, if her dowry please.\n\nGREMIO:\nSo said, so done, is well.\nHortensio, have you told him all her faults?\n\nPETRUCHIO:\nI know she is an irksome brawling scold:\nIf that be all, masters, I hear no harm.\n\nGREMIO:\nNo, say'st me so, friend? What countryman?\n\nPETRUCHIO:\nBorn in Verona, old Antonio's son:\nMy father dead, my fortune lives for me;\nAnd I do hope good days and long to see.\n\nGREMIO:\nO sir, such a life, with such a wife, were strange!\nBut if you have a stomach, to't i' God's name:\nYou shall have me assisting you in all.\nBut will you woo this wild-cat?\n\nPETRUCHIO:\nWill I live?\n\nGRUMIO:\nWill he woo her? ay, or I'll hang her.\n\nPETRUCHIO:\nWhy came I hither but to that intent?\nThink you a little din can daunt mine ears?\nHave I not in my time heard lions roar?\nHave I not heard the sea puff'd up with winds\nRage like an angry boar chafed with sweat?\nHave I not heard great ordnance in the field,\nAnd heaven's artillery thunder in the skies?\nHave I not in a pitched battle heard\nLoud 'larums, neighing steeds, and trumpets' clang?\nAnd do you tell me of a woman's tongue,\nThat gives not half so great a blow to hear\nAs will a chestnut in a farmer's fire?\nTush, tush! fear boys with bugs.\n\nGRUMIO:\nFor he fears none.\n\nGREMIO:\nHortensio, hark:\nThis gentleman is happily arrived,\nMy mind presumes, for his own good and ours.\n\nHORTENSIO:\nI promised we would be contributors\nAnd bear his charging of wooing, whatsoe'er.\n\nGREMIO:\nAnd so we will, provided that he win her.\n\nGRUMIO:\nI would I were as sure of a good dinner.\n\nTRANIO:\nGentlemen, God save you. If I may be bold,\nTell me, I beseech you, which is the readiest way\nTo the house of Signior Baptista Minola?\n\nBIONDELLO:\nHe that has the two fair daughters: is't he you mean?\n\nTRANIO:\nEven he, Biondello.\n\nGREMIO:\nHark you, sir; you mean not her to--\n\nTRANIO:\nPerhaps, him and her, sir: what have you to do?\n\nPETRUCHIO:\nNot her that chides, sir, at any hand, I pray.\n\nTRANIO:\nI love no chiders, sir. Biondello, let's away.\n\nLUCENTIO:\nWell begun, Tranio.\n\nHORTENSIO:\nSir, a word ere you go;\nAre you a suitor to the maid you talk of, yea or no?\n\nTRANIO:\nAnd if I be, sir, is it any offence?\n\nGREMIO:\nNo; if without more words you will get you hence.\n\nTRANIO:\nWhy, sir, I pray, are not the streets as free\nFor me as for you?\n\nGREMIO:\nBut so is not she.\n\nTRANIO:\nFor what reason, I beseech you?\n\nGREMIO:\nFor this reason, if you'll know,\nThat she's the choice love of Signior Gremio.\n\nHORTENSIO:\nThat she's the chosen of Signior Hortensio.\n\nTRANIO:\nSoftly, my masters! if you be gentlemen,\nDo me this right; hear me with patience.\nBaptista is a noble gentleman,\nTo whom my father is not all unknown;\nAnd were his daughter fairer than she is,\nShe may more suitors have and me for one.\nFair Leda's daughter had a thousand wooers;\nThen well one more may fair Bianca have:\nAnd so she shall; Lucentio shall make one,\nThough Paris came in hope to speed alone.\n\nGREMIO:\nWhat! this gentleman will out-talk us all.\n\nLUCENTIO:\nSir, give him head: I know he'll prove a jade.\n\nPETRUCHIO:\nHortensio, to what end are all these words?\n\nHORTENSIO:\nSir, let me be so bold as ask you,\nDid you yet ever see Baptista's daughter?\n\nTRANIO:\nNo, sir; but hear I do that he hath two,\nThe one as famous for a scolding tongue\nAs is the other for beauteous modesty.\n\nPETRUCHIO:\nSir, sir, the first's for me; let her go by.\n\nGREMIO:\nYea, leave that labour to great Hercules;\nAnd let it be more than Alcides' twelve.\n\nPETRUCHIO:\nSir, understand you this of me in sooth:\nThe youngest daughter whom you hearken for\nHer father keeps from all access of suitors,\nAnd will not promise her to any man\nUntil the elder sister first be wed:\nThe younger then is free and not before.\n\nTRANIO:\nIf it be so, sir, that you are the man\nMust stead us all and me amongst the rest,\nAnd if you break the ice and do this feat,\nAchieve the elder, set the younger free\nFor our access, whose hap shall be to have her\nWill not so graceless be to be ingrate.\n\nHORTENSIO:\nSir, you say well and well you do conceive;\nAnd since you do profess to be a suitor,\nYou must, as we do, gratify this gentleman,\nTo whom we all rest generally beholding.\n\nTRANIO:\nSir, I shall not be slack: in sign whereof,\nPlease ye we may contrive this afternoon,\nAnd quaff carouses to our mistress' health,\nAnd do as adversaries do in law,\nStrive mightily, but eat and drink as friends.\n\nGRUMIO:\nO excellent motion! Fellows, let's be gone.\n\nHORTENSIO:\nThe motion's good indeed and be it so,\nPetruchio, I shall be your ben venuto.\n\nBIANCA:\nGood sister, wrong me not, nor wrong yourself,\nTo make a bondmaid and a slave of me;\nThat I disdain: but for these other gawds,\nUnbind my hands, I'll pull them off myself,\nYea, all my raiment, to my petticoat;\nOr what you will command me will I do,\nSo well I know my duty to my elders.\n\nKATHARINA:\nOf all thy suitors, here I charge thee, tell\nWhom thou lovest best: see thou dissemble not.\n\nBIANCA:\nBelieve me, sister, of all the men alive\nI never yet beheld that special face\nWhich I could fancy more than any other.\n\nKATHARINA:\nMinion, thou liest. Is't not Hortensio?\n\nBIANCA:\nIf you affect him, sister, here I swear\nI'll plead for you myself, but you shall have\nhim.\n\nKATHARINA:\nO then, belike, you fancy riches more:\nYou will have Gremio to keep you fair.\n\nBIANCA:\nIs it for him you do envy me so?\nNay then you jest, and now I well perceive\nYou have but jested with me all this while:\nI prithee, sister Kate, untie my hands.\n\nKATHARINA:\nIf that be jest, then all the rest was so.\n\nBAPTISTA:\nWhy, how now, dame! whence grows this insolence?\nBianca, stand aside. Poor girl! she weeps.\nGo ply thy needle; meddle not with her.\nFor shame, thou helding of a devilish spirit,\nWhy dost thou wrong her that did ne'er wrong thee?\nWhen did she cross thee with a bitter word?\n\nKATHARINA:\nHer silence flouts me, and I'll be revenged.\n\nBAPTISTA:\nWhat, in my sight? Bianca, get thee in.\n\nKATHARINA:\nWhat, will you not suffer me? Nay, now I see\nShe is your treasure, she must have a husband;\nI must dance bare-foot on her wedding day\nAnd for your love to her lead apes in hell.\nTalk not to me: I will go sit and weep\nTill I can find occasion of revenge.\n\nBAPTISTA:\nWas ever gentleman thus grieved as I?\nBut who comes here?\n\nGREMIO:\nGood morrow, neighbour Baptista.\n\nBAPTISTA:\nGood morrow, neighbour Gremio.\nGod save you, gentlemen!\n\nPETRUCHIO:\nAnd you, good sir! Pray, have you not a daughter\nCall'd Katharina, fair and virtuous?\n\nBAPTISTA:\nI have a daughter, sir, called Katharina.\n\nGREMIO:\nYou are too blunt: go to it orderly.\n\nPETRUCHIO:\nYou wrong me, Signior Gremio: give me leave.\nI am a gentleman of Verona, sir,\nThat, hearing of her beauty and her wit,\nHer affability and bashful modesty,\nHer wondrous qualities and mild behavior,\nAm bold to show myself a forward guest\nWithin your house, to make mine eye the witness\nOf that report which I so oft have heard.\nAnd, for an entrance to my entertainment,\nI do present you with a man of mine,\nCunning in music and the mathematics,\nTo instruct her fully in those sciences,\nWhereof I know she is not ignorant:\nAccept of him, or else you do me wrong:\nHis name is Licio, born in Mantua.\n\nBAPTISTA:\nYou're welcome, sir; and he, for your good sake.\nBut for my daughter Katharina, this I know,\nShe is not for your turn, the more my grief.\n\nPETRUCHIO:\nI see you do not mean to part with her,\nOr else you like not of my company.\n\nBAPTISTA:\nMistake me not; I speak but as I find.\nWhence are you, sir? what may I call your name?\n\nPETRUCHIO:\nPetruchio is my name; Antonio's son,\nA man well known throughout all Italy.\n\nBAPTISTA:\nI know him well: you are welcome for his sake.\n\nGREMIO:\nSaving your tale, Petruchio, I pray,\nLet us, that are poor petitioners, speak too:\nBaccare! you are marvellous forward.\n\nPETRUCHIO:\nO, pardon me, Signior Gremio; I would fain be doing.\n\nGREMIO:\nI doubt it not, sir; but you will curse your\nwooing. Neighbour, this is a gift very grateful, I am\nsure of it. To express the like kindness, myself,\nthat have been more kindly beholding to you than\nany, freely give unto you this young scholar,\nthat hath been long studying at Rheims; as cunning\nin Greek, Latin, and other languages, as the other\nin music and mathematics: his name is Cambio; pray,\naccept his service.\n\nBAPTISTA:\nA thousand thanks, Signior Gremio.\nWelcome, good Cambio.\nBut, gentle sir, methinks you walk like a stranger:\nmay I be so bold to know the cause of your coming?\n\nTRANIO:\nPardon me, sir, the boldness is mine own,\nThat, being a stranger in this city here,\nDo make myself a suitor to your daughter,\nUnto Bianca, fair and virtuous.\nNor is your firm resolve unknown to me,\nIn the preferment of the eldest sister.\nThis liberty is all that I request,\nThat, upon knowledge of my parentage,\nI may have welcome 'mongst the rest that woo\nAnd free access and favour as the rest:\nAnd, toward the education of your daughters,\nI here bestow a simple instrument,\nAnd this small packet of Greek and Latin books:\nIf you accept them, then their worth is great.\n\nBAPTISTA:\nLucentio is your name; of whence, I pray?\n\nTRANIO:\nOf Pisa, sir; son to Vincentio.\n\nBAPTISTA:\nA mighty man of Pisa; by report\nI know him well: you are very welcome, sir,\nTake you the lute, and you the set of books;\nYou shall go see your pupils presently.\nHolla, within!\nSirrah, lead these gentlemen\nTo my daughters; and tell them both,\nThese are their tutors: bid them use them well.\nWe will go walk a little in the orchard,\nAnd then to dinner. You are passing welcome,\nAnd so I pray you all to think yourselves.\n\nPETRUCHIO:\nSignior Baptista, my business asketh haste,\nAnd every day I cannot come to woo.\nYou knew my father well, and in him me,\nLeft solely heir to all his lands and goods,\nWhich I have better'd rather than decreased:\nThen tell me, if I get your daughter's love,\nWhat dowry shall I have with her to wife?\n\nBAPTISTA:\nAfter my death the one half of my lands,\nAnd in possession twenty thousand crowns.\n\nPETRUCHIO:\nAnd, for that dowry, I'll assure her of\nHer widowhood, be it that she survive me,\nIn all my lands and leases whatsoever:\nLet specialties be therefore drawn between us,\nThat covenants may be kept on either hand.\n\nBAPTISTA:\nAy, when the special thing is well obtain'd,\nThat is, her love; for that is all in all.\n\nPETRUCHIO:\nWhy, that is nothing: for I tell you, father,\nI am as peremptory as she proud-minded;\nAnd where two raging fires meet together\nThey do consume the thing that feeds their fury:\nThough little fire grows great with little wind,\nYet extreme gusts will blow out fire and all:\nSo I to her and so she yields to me;\nFor I am rough and woo not like a babe.\n\nBAPTISTA:\nWell mayst thou woo, and happy be thy speed!\nBut be thou arm'd for some unhappy words.\n\nPETRUCHIO:\nAy, to the proof; as mountains are for winds,\nThat shake not, though they blow perpetually.\n\nBAPTISTA:\nHow now, my friend! why dost thou look so pale?\n\nHORTENSIO:\nFor fear, I promise you, if I look pale.\n\nBAPTISTA:\nWhat, will my daughter prove a good musician?\n\nHORTENSIO:\nI think she'll sooner prove a soldier\nIron may hold with her, but never lutes.\n\nBAPTISTA:\nWhy, then thou canst not break her to the lute?\n\nHORTENSIO:\nWhy, no; for she hath broke the lute to me.\nI did but tell her she mistook her frets,\nAnd bow'd her hand to teach her fingering;\nWhen, with a most impatient devilish spirit,\n'Frets, call you these?' quoth she; 'I'll fume\nwith them:'\nAnd, with that word, she struck me on the head,\nAnd through the instrument my pate made way;\nAnd there I stood amazed for a while,\nAs on a pillory, looking through the lute;\nWhile she did call me rascal fiddler\nAnd twangling Jack; with twenty such vile terms,\nAs had she studied to misuse me so.\n\nPETRUCHIO:\nNow, by the world, it is a lusty wench;\nI love her ten times more than e'er I did:\nO, how I long to have some chat with her!\n\nBAPTISTA:\nWell, go with me and be not so discomfited:\nProceed in practise with my younger daughter;\nShe's apt to learn and thankful for good turns.\nSignior Petruchio, will you go with us,\nOr shall I send my daughter Kate to you?\n\nPETRUCHIO:\nI pray you do.\nI will attend her here,\nAnd woo her with some spirit when she comes.\nSay that she rail; why then I'll tell her plain\nShe sings as sweetly as a nightingale:\nSay that she frown, I'll say she looks as clear\nAs morning roses newly wash'd with dew:\nSay she be mute and will not speak a word;\nThen I'll commend her volubility,\nAnd say she uttereth piercing eloquence:\nIf she do bid me pack, I'll give her thanks,\nAs though she bid me stay by her a week:\nIf she deny to wed, I'll crave the day\nWhen I shall ask the banns and when be married.\nBut here she comes; and now, Petruchio, speak.\nGood morrow, Kate; for that's your name, I hear.\n\nKATHARINA:\nWell have you heard, but something hard of hearing:\nThey call me Katharina that do talk of me.\n\nPETRUCHIO:\nYou lie, in faith; for you are call'd plain Kate,\nAnd bonny Kate and sometimes Kate the curst;\nBut Kate, the prettiest Kate in Christendom\nKate of Kate Hall, my super-dainty Kate,\nFor dainties are all Kates, and therefore, Kate,\nTake this of me, Kate of my consolation;\nHearing thy mildness praised in every town,\nThy virtues spoke of, and thy beauty sounded,\nYet not so deeply as to thee belongs,\nMyself am moved to woo thee for my wife.\n\nKATHARINA:\nMoved! in good time: let him that moved you hither\nRemove you hence: I knew you at the first\nYou were a moveable.\n\nPETRUCHIO:\nWhy, what's a moveable?\n\nKATHARINA:\nA join'd-stool.\n\nPETRUCHIO:\nThou hast hit it: come, sit on me.\n\nKATHARINA:\nAsses are made to bear, and so are you.\n\nPETRUCHIO:\nWomen are made to bear, and so are you.\n\nKATHARINA:\nNo such jade as you, if me you mean.\n\nPETRUCHIO:\nAlas! good Kate, I will not burden thee;\nFor, knowing thee to be but young and light--\n\nKATHARINA:\nToo light for such a swain as you to catch;\nAnd yet as heavy as my weight should be.\n\nPETRUCHIO:\nShould be! should--buzz!\n\nKATHARINA:\nWell ta'en, and like a buzzard.\n\nPETRUCHIO:\nO slow-wing'd turtle! shall a buzzard take thee?\n\nKATHARINA:\nAy, for a turtle, as he takes a buzzard.\n\nPETRUCHIO:\nCome, come, you wasp; i' faith, you are too angry.\n\nKATHARINA:\nIf I be waspish, best beware my sting.\n\nPETRUCHIO:\nMy remedy is then, to pluck it out.\n\nKATHARINA:\nAy, if the fool could find it where it lies,\n\nPETRUCHIO:\nWho knows not where a wasp does\nwear his sting? In his tail.\n\nKATHARINA:\nIn his tongue.\n\nPETRUCHIO:\nWhose tongue?\n\nKATHARINA:\nYours, if you talk of tails: and so farewell.\n\nPETRUCHIO:\nWhat, with my tongue in your tail? nay, come again,\nGood Kate; I am a gentleman.\n\nKATHARINA:\nThat I'll try.\n\nPETRUCHIO:\nI swear I'll cuff you, if you strike again.\n\nKATHARINA:\nSo may you lose your arms:\nIf you strike me, you are no gentleman;\nAnd if no gentleman, why then no arms.\n\nPETRUCHIO:\nA herald, Kate? O, put me in thy books!\n\nKATHARINA:\nWhat is your crest? a coxcomb?\n\nPETRUCHIO:\nA combless cock, so Kate will be my hen.\n\nKATHARINA:\nNo cock of mine; you crow too like a craven.\n\nPETRUCHIO:\nNay, come, Kate, come; you must not look so sour.\n\nKATHARINA:\nIt is my fashion, when I see a crab.\n\nPETRUCHIO:\nWhy, here's no crab; and therefore look not sour.\n\nKATHARINA:\nThere is, there is.\n\nPETRUCHIO:\nThen show it me.\n\nKATHARINA:\nHad I a glass, I would.\n\nPETRUCHIO:\nWhat, you mean my face?\n\nKATHARINA:\nWell aim'd of such a young one.\n\nPETRUCHIO:\nNow, by Saint George, I am too young for you.\n\nKATHARINA:\nYet you are wither'd.\n\nPETRUCHIO:\n'Tis with cares.\n\nKATHARINA:\nI care not.\n\nPETRUCHIO:\nNay, hear you, Kate: in sooth you scape not so.\n\nKATHARINA:\nI chafe you, if I tarry: let me go.\n\nPETRUCHIO:\nNo, not a whit: I find you passing gentle.\n'Twas told me you were rough and coy and sullen,\nAnd now I find report a very liar;\nFor thou are pleasant, gamesome, passing courteous,\nBut slow in speech, yet sweet as spring-time flowers:\nThou canst not frown, thou canst not look askance,\nNor bite the lip, as angry wenches will,\nNor hast thou pleasure to be cross in talk,\nBut thou with mildness entertain'st thy wooers,\nWith gentle conference, soft and affable.\nWhy does the world report that Kate doth limp?\nO slanderous world! Kate like the hazel-twig\nIs straight and slender and as brown in hue\nAs hazel nuts and sweeter than the kernels.\nO, let me see thee walk: thou dost not halt.\n\nKATHARINA:\nGo, fool, and whom thou keep'st command.\n\nPETRUCHIO:\nDid ever Dian so become a grove\nAs Kate this chamber with her princely gait?\nO, be thou Dian, and let her be Kate;\nAnd then let Kate be chaste and Dian sportful!\n\nKATHARINA:\nWhere did you study all this goodly speech?\n\nPETRUCHIO:\nIt is extempore, from my mother-wit.\n\nKATHARINA:\nA witty mother! witless else her son.\n\nPETRUCHIO:\nAm I not wise?\n\nKATHARINA:\nYes; keep you warm.\n\nPETRUCHIO:\nMarry, so I mean, sweet Katharina, in thy bed:\nAnd therefore, setting all this chat aside,\nThus in plain terms: your father hath consented\nThat you shall be my wife; your dowry 'greed on;\nAnd, Will you, nill you, I will marry you.\nNow, Kate, I am a husband for your turn;\nFor, by this light, whereby I see thy beauty,\nThy beauty, that doth make me like thee well,\nThou must be married to no man but me;\nFor I am he am born to tame you Kate,\nAnd bring you from a wild Kate to a Kate\nConformable as other household Kates.\nHere comes your father: never make denial;\nI must and will have Katharina to my wife.\n\nBAPTISTA:\nNow, Signior Petruchio, how speed you with my daughter?\n\nPETRUCHIO:\nHow but well, sir? how but well?\nIt were impossible I should speed amiss.\n\nBAPTISTA:\nWhy, how now, daughter Katharina! in your dumps?\n\nKATHARINA:\nCall you me daughter? now, I promise you\nYou have show'd a tender fatherly regard,\nTo wish me wed to one half lunatic;\nA mad-cup ruffian and a swearing Jack,\nThat thinks with oaths to face the matter out.\n\nPETRUCHIO:\nFather, 'tis thus: yourself and all the world,\nThat talk'd of her, have talk'd amiss of her:\nIf she be curst, it is for policy,\nFor she's not froward, but modest as the dove;\nShe is not hot, but temperate as the morn;\nFor patience she will prove a second Grissel,\nAnd Roman Lucrece for her chastity:\nAnd to conclude, we have 'greed so well together,\nThat upon Sunday is the wedding-day.\n\nKATHARINA:\nI'll see thee hang'd on Sunday first.\n\nGREMIO:\nHark, Petruchio; she says she'll see thee\nhang'd first.\n\nTRANIO:\nIs this your speeding? nay, then, good night our part!\n\nPETRUCHIO:\nBe patient, gentlemen; I choose her for myself:\nIf she and I be pleased, what's that to you?\n'Tis bargain'd 'twixt us twain, being alone,\nThat she shall still be curst in company.\nI tell you, 'tis incredible to believe\nHow much she loves me: O, the kindest Kate!\nShe hung about my neck; and kiss on kiss\nShe vied so fast, protesting oath on oath,\nThat in a twink she won me to her love.\nO, you are novices! 'tis a world to see,\nHow tame, when men and women are alone,\nA meacock wretch can make the curstest shrew.\nGive me thy hand, Kate: I will unto Venice,\nTo buy apparel 'gainst the wedding-day.\nProvide the feast, father, and bid the guests;\nI will be sure my Katharina shall be fine.\n\nBAPTISTA:\nI know not what to say: but give me your hands;\nGod send you joy, Petruchio! 'tis a match.\n\nGREMIO:\nAmen, say we: we will be witnesses.\n\nPETRUCHIO:\nFather, and wife, and gentlemen, adieu;\nI will to Venice; Sunday comes apace:\nWe will have rings and things and fine array;\nAnd kiss me, Kate, we will be married o'Sunday.\n\nGREMIO:\nWas ever match clapp'd up so suddenly?\n\nBAPTISTA:\nFaith, gentlemen, now I play a merchant's part,\nAnd venture madly on a desperate mart.\n\nTRANIO:\n'Twas a commodity lay fretting by you:\n'Twill bring you gain, or perish on the seas.\n\nBAPTISTA:\nThe gain I seek is, quiet in the match.\n\nGREMIO:\nNo doubt but he hath got a quiet catch.\nBut now, Baptists, to your younger daughter:\nNow is the day we long have looked for:\nI am your neighbour, and was suitor first.\n\nTRANIO:\nAnd I am one that love Bianca more\nThan words can witness, or your thoughts can guess.\n\nGREMIO:\nYoungling, thou canst not love so dear as I.\n\nTRANIO:\nGraybeard, thy love doth freeze.\n\nGREMIO:\nBut thine doth fry.\nSkipper, stand back: 'tis age that nourisheth.\n\nTRANIO:\nBut youth in ladies' eyes that flourisheth.\n\nBAPTISTA:\nContent you, gentlemen: I will compound this strife:\n'Tis deeds must win the prize; and he of both\nThat can assure my daughter greatest dower\nShall have my Bianca's love.\nSay, Signior Gremio, What can you assure her?\n\nGREMIO:\nFirst, as you know, my house within the city\nIs richly furnished with plate and gold;\nBasins and ewers to lave her dainty hands;\nMy hangings all of Tyrian tapestry;\nIn ivory coffers I have stuff'd my crowns;\nIn cypress chests my arras counterpoints,\nCostly apparel, tents, and canopies,\nFine linen, Turkey cushions boss'd with pearl,\nValance of Venice gold in needlework,\nPewter and brass and all things that belong\nTo house or housekeeping: then, at my farm\nI have a hundred milch-kine to the pail,\nSixscore fat oxen standing in my stalls,\nAnd all things answerable to this portion.\nMyself am struck in years, I must confess;\nAnd if I die to-morrow, this is hers,\nIf whilst I live she will be only mine.\n\nTRANIO:\nThat 'only' came well in. Sir, list to me:\nI am my father's heir and only son:\nIf I may have your daughter to my wife,\nI'll leave her houses three or four as good,\nWithin rich Pisa walls, as any one\nOld Signior Gremio has in Padua;\nBesides two thousand ducats by the year\nOf fruitful land, all which shall be her jointure.\nWhat, have I pinch'd you, Signior Gremio?\n\nGREMIO:\nTwo thousand ducats by the year of land!\nMy land amounts not to so much in all:\nThat she shall have; besides an argosy\nThat now is lying in Marseilles' road.\nWhat, have I choked you with an argosy?\n\nTRANIO:\nGremio, 'tis known my father hath no less\nThan three great argosies; besides two galliases,\nAnd twelve tight galleys: these I will assure her,\nAnd twice as much, whate'er thou offer'st next.\n\nGREMIO:\nNay, I have offer'd all, I have no more;\nAnd she can have no more than all I have:\nIf you like me, she shall have me and mine.\n\nTRANIO:\nWhy, then the maid is mine from all the world,\nBy your firm promise: Gremio is out-vied.\n\nBAPTISTA:\nI must confess your offer is the best;\nAnd, let your father make her the assurance,\nShe is your own; else, you must pardon me,\nif you should die before him, where's her dower?\n\nTRANIO:\nThat's but a cavil: he is old, I young.\n\nGREMIO:\nAnd may not young men die, as well as old?\n\nBAPTISTA:\nWell, gentlemen,\nI am thus resolved: on Sunday next you know\nMy daughter Katharina is to be married:\nNow, on the Sunday following, shall Bianca\nBe bride to you, if you this assurance;\nIf not, Signior Gremio:\nAnd so, I take my leave, and thank you both.\n\nGREMIO:\nAdieu, good neighbour.\nNow I fear thee not:\nSirrah young gamester, your father were a fool\nTo give thee all, and in his waning age\nSet foot under thy table: tut, a toy!\nAn old Italian fox is not so kind, my boy.\n\nTRANIO:\nA vengeance on your crafty wither'd hide!\nYet I have faced it with a card of ten.\n'Tis in my head to do my master good:\nI see no reason but supposed Lucentio\nMust get a father, call'd 'supposed Vincentio;'\nAnd that's a wonder: fathers commonly\nDo get their children; but in this case of wooing,\nA child shall get a sire, if I fail not of my cunning.\n\nLUCENTIO:\nFiddler, forbear; you grow too forward, sir:\nHave you so soon forgot the entertainment\nHer sister Katharina welcomed you withal?\n\nHORTENSIO:\nBut, wrangling pedant, this is\nThe patroness of heavenly harmony:\nThen give me leave to have prerogative;\nAnd when in music we have spent an hour,\nYour lecture shall have leisure for as much.\n\nLUCENTIO:\nPreposterous ass, that never read so far\nTo know the cause why music was ordain'd!\nWas it not to refresh the mind of man\nAfter his studies or his usual pain?\nThen give me leave to read philosophy,\nAnd while I pause, serve in your harmony.\n\nHORTENSIO:\nSirrah, I will not bear these braves of thine.\n\nBIANCA:\nWhy, gentlemen, you do me double wrong,\nTo strive for that which resteth in my choice:\nI am no breeching scholar in the schools;\nI'll not be tied to hours nor 'pointed times,\nBut learn my lessons as I please myself.\nAnd, to cut off all strife, here sit we down:\nTake you your instrument, play you the whiles;\nHis lecture will be done ere you have tuned.\n\nHORTENSIO:\nYou'll leave his lecture when I am in tune?\n\nLUCENTIO:\nThat will be never: tune your instrument.\n\nBIANCA:\nWhere left we last?\n\nLUCENTIO:\nHere, madam:\n'Hic ibat Simois; hic est Sigeia tellus;\nHic steterat Priami regia celsa senis.'\n\nBIANCA:\nConstrue them.\n\nLUCENTIO:\n'Hic ibat,' as I told you before, 'Simois,' I am\nLucentio, 'hic est,' son unto Vincentio of Pisa,\n'Sigeia tellus,' disguised thus to get your love;\n'Hic steterat,' and that Lucentio that comes\na-wooing, 'Priami,' is my man Tranio, 'regia,'\nbearing my port, 'celsa senis,' that we might\nbeguile the old pantaloon.\n\nHORTENSIO:\nMadam, my instrument's in tune.\n\nBIANCA:\nLet's hear. O fie! the treble jars.\n\nLUCENTIO:\nSpit in the hole, man, and tune again.\n\nBIANCA:\nNow let me see if I can construe it: 'Hic ibat\nSimois,' I know you not, 'hic est Sigeia tellus,' I\ntrust you not; 'Hic steterat Priami,' take heed\nhe hear us not, 'regia,' presume not, 'celsa senis,'\ndespair not.\n\nHORTENSIO:\nMadam, 'tis now in tune.\n\nLUCENTIO:\nAll but the base.\n\nHORTENSIO:\nThe base is right; 'tis the base knave that jars.\nHow fiery and forward our pedant is!\nNow, for my life, the knave doth court my love:\nPedascule, I'll watch you better yet.\n\nBIANCA:\nIn time I may believe, yet I mistrust.\n\nLUCENTIO:\nMistrust it not: for, sure, AEacides\nWas Ajax, call'd so from his grandfather.\n\nBIANCA:\nI must believe my master; else, I promise you,\nI should be arguing still upon that doubt:\nBut let it rest. Now, Licio, to you:\nGood masters, take it not unkindly, pray,\nThat I have been thus pleasant with you both.\n\nHORTENSIO:\nYou may go walk, and give me leave a while:\nMy lessons make no music in three parts.\n\nLUCENTIO:\nAre you so formal, sir? well, I must wait,\nAnd watch withal; for, but I be deceived,\nOur fine musician groweth amorous.\n\nHORTENSIO:\nMadam, before you touch the instrument,\nTo learn the order of my fingering,\nI must begin with rudiments of art;\nTo teach you gamut in a briefer sort,\nMore pleasant, pithy and effectual,\nThan hath been taught by any of my trade:\nAnd there it is in writing, fairly drawn.\n\nBIANCA:\nWhy, I am past my gamut long ago.\n\nHORTENSIO:\nYet read the gamut of Hortensio.\n\nBIANCA:\n\nServant:\nMistress, your father prays you leave your books\nAnd help to dress your sister's chamber up:\nYou know to-morrow is the wedding-day.\n\nBIANCA:\nFarewell, sweet masters both; I must be gone.\n\nLUCENTIO:\nFaith, mistress, then I have no cause to stay.\n\nHORTENSIO:\nBut I have cause to pry into this pedant:\nMethinks he looks as though he were in love:\nYet if thy thoughts, Bianca, be so humble\nTo cast thy wandering eyes on every stale,\nSeize thee that list: if once I find thee ranging,\nHortensio will be quit with thee by changing.\n\nBAPTISTA:\n\nKATHARINA:\nNo shame but mine: I must, forsooth, be forced\nTo give my hand opposed against my heart\nUnto a mad-brain rudesby full of spleen;\nWho woo'd in haste and means to wed at leisure.\nI told you, I, he was a frantic fool,\nHiding his bitter jests in blunt behavior:\nAnd, to be noted for a merry man,\nHe'll woo a thousand, 'point the day of marriage,\nMake feasts, invite friends, and proclaim the banns;\nYet never means to wed where he hath woo'd.\nNow must the world point at poor Katharina,\nAnd say, 'Lo, there is mad Petruchio's wife,\nIf it would please him come and marry her!'\n\nTRANIO:\nPatience, good Katharina, and Baptista too.\nUpon my life, Petruchio means but well,\nWhatever fortune stays him from his word:\nThough he be blunt, I know him passing wise;\nThough he be merry, yet withal he's honest.\n\nKATHARINA:\nWould Katharina had never seen him though!\n\nBAPTISTA:\nGo, girl; I cannot blame thee now to weep;\nFor such an injury would vex a very saint,\nMuch more a shrew of thy impatient humour.\n\nBIONDELLO:\nMaster, master! news, old news, and such news as\nyou never heard of!\n\nBAPTISTA:\nIs it new and old too? how may that be?\n\nBIONDELLO:\nWhy, is it not news, to hear of Petruchio's coming?\n\nBAPTISTA:\nIs he come?\n\nBIONDELLO:\nWhy, no, sir.\n\nBAPTISTA:\nWhat then?\n\nBIONDELLO:\nHe is coming.\n\nBAPTISTA:\nWhen will he be here?\n\nBIONDELLO:\nWhen he stands where I am and sees you there.\n\nTRANIO:\nBut say, what to thine old news?\n\nBIONDELLO:\nWhy, Petruchio is coming in a new hat and an old\njerkin, a pair of old breeches thrice turned, a pair\nof boots that have been candle-cases, one buckled,\nanother laced, an old rusty sword ta'en out of the\ntown-armory, with a broken hilt, and chapeless;\nwith two broken points: his horse hipped with an\nold mothy saddle and stirrups of no kindred;\nbesides, possessed with the glanders and like to mose\nin the chine; troubled with the lampass, infected\nwith the fashions, full of wingdalls, sped with\nspavins, rayed with yellows, past cure of the fives,\nstark spoiled with the staggers, begnawn with the\nbots, swayed in the back and shoulder-shotten;\nnear-legged before and with, a half-chequed bit\nand a head-stall of sheeps leather which, being\nrestrained to keep him from stumbling, hath been\noften burst and now repaired with knots; one girth\nsix time pieced and a woman's crupper of velure,\nwhich hath two letters for her name fairly set down\nin studs, and here and there pieced with packthread.\n\nBAPTISTA:\nWho comes with him?\n\nBIONDELLO:\nO, sir, his lackey, for all the world caparisoned\nlike the horse; with a linen stock on one leg and a\nkersey boot-hose on the other, gartered with a red\nand blue list; an old hat and 'the humour of forty\nfancies' pricked in't for a feather: a monster, a\nvery monster in apparel, and not like a Christian\nfootboy or a gentleman's lackey.\n\nTRANIO:\n'Tis some odd humour pricks him to this fashion;\nYet oftentimes he goes but mean-apparell'd.\n\nBAPTISTA:\nI am glad he's come, howsoe'er he comes.\n\nBIONDELLO:\nWhy, sir, he comes not.\n\nBAPTISTA:\nDidst thou not say he comes?\n\nBIONDELLO:\nWho? that Petruchio came?\n\nBAPTISTA:\nAy, that Petruchio came.\n\nBIONDELLO:\nNo, sir, I say his horse comes, with him on his back.\n\nBAPTISTA:\nWhy, that's all one.\n\nBIONDELLO:\nNay, by Saint Jamy,\nI hold you a penny,\nA horse and a man\nIs more than one,\nAnd yet not many.\n\nPETRUCHIO:\nCome, where be these gallants? who's at home?\n\nBAPTISTA:\nYou are welcome, sir.\n\nPETRUCHIO:\nAnd yet I come not well.\n\nBAPTISTA:\nAnd yet you halt not.\n\nTRANIO:\nNot so well apparell'd\nAs I wish you were.\n\nPETRUCHIO:\nWere it better, I should rush in thus.\nBut where is Kate? where is my lovely bride?\nHow does my father? Gentles, methinks you frown:\nAnd wherefore gaze this goodly company,\nAs if they saw some wondrous monument,\nSome comet or unusual prodigy?\n\nBAPTISTA:\nWhy, sir, you know this is your wedding-day:\nFirst were we sad, fearing you would not come;\nNow sadder, that you come so unprovided.\nFie, doff this habit, shame to your estate,\nAn eye-sore to our solemn festival!\n\nTRANIO:\nAnd tells us, what occasion of import\nHath all so long detain'd you from your wife,\nAnd sent you hither so unlike yourself?\n\nPETRUCHIO:\nTedious it were to tell, and harsh to hear:\nSufficeth I am come to keep my word,\nThough in some part enforced to digress;\nWhich, at more leisure, I will so excuse\nAs you shall well be satisfied withal.\nBut where is Kate? I stay too long from her:\nThe morning wears, 'tis time we were at church.\n\nTRANIO:\nSee not your bride in these unreverent robes:\nGo to my chamber; Put on clothes of mine.\n\nPETRUCHIO:\nNot I, believe me: thus I'll visit her.\n\nBAPTISTA:\nBut thus, I trust, you will not marry her.\n\nPETRUCHIO:\nGood sooth, even thus; therefore ha' done with words:\nTo me she's married, not unto my clothes:\nCould I repair what she will wear in me,\nAs I can change these poor accoutrements,\n'Twere well for Kate and better for myself.\nBut what a fool am I to chat with you,\nWhen I should bid good morrow to my bride,\nAnd seal the title with a lovely kiss!\n\nTRANIO:\nHe hath some meaning in his mad attire:\nWe will persuade him, be it possible,\nTo put on better ere he go to church.\n\nBAPTISTA:\nI'll after him, and see the event of this.\n\nTRANIO:\nBut to her love concerneth us to add\nHer father's liking: which to bring to pass,\nAs I before unparted to your worship,\nI am to get a man,--whate'er he be,\nIt skills not much. we'll fit him to our turn,--\nAnd he shall be Vincentio of Pisa;\nAnd make assurance here in Padua\nOf greater sums than I have promised.\nSo shall you quietly enjoy your hope,\nAnd marry sweet Bianca with consent.\n\nLUCENTIO:\nWere it not that my fellow-school-master\nDoth watch Bianca's steps so narrowly,\n'Twere good, methinks, to steal our marriage;\nWhich once perform'd, let all the world say no,\nI'll keep mine own, despite of all the world.\n\nTRANIO:\nThat by degrees we mean to look into,\nAnd watch our vantage in this business:\nWe'll over-reach the greybeard, Gremio,\nThe narrow-prying father, Minola,\nThe quaint musician, amorous Licio;\nAll for my master's sake, Lucentio.\nSignior Gremio, came you from the church?\n\nGREMIO:\nAs willingly as e'er I came from school.\n\nTRANIO:\nAnd is the bride and bridegroom coming home?\n\nGREMIO:\nA bridegroom say you? 'tis a groom indeed,\nA grumbling groom, and that the girl shall find.\n\nTRANIO:\nCurster than she? why, 'tis impossible.\n\nGREMIO:\nWhy he's a devil, a devil, a very fiend.\n\nTRANIO:\nWhy, she's a devil, a devil, the devil's dam.\n\nGREMIO:\nTut, she's a lamb, a dove, a fool to him!\nI'll tell you, Sir Lucentio: when the priest\nShould ask, if Katharina should be his wife,\n'Ay, by gogs-wouns,' quoth he; and swore so loud,\nThat, all-amazed, the priest let fall the book;\nAnd, as he stoop'd again to take it up,\nThe mad-brain'd bridegroom took him such a cuff\nThat down fell priest and book and book and priest:\n'Now take them up,' quoth he, 'if any list.'\n\nTRANIO:\nWhat said the wench when he rose again?\n\nGREMIO:\nTrembled and shook; for why, he stamp'd and swore,\nAs if the vicar meant to cozen him.\nBut after many ceremonies done,\nHe calls for wine: 'A health!' quoth he, as if\nHe had been aboard, carousing to his mates\nAfter a storm; quaff'd off the muscadel\nAnd threw the sops all in the sexton's face;\nHaving no other reason\nBut that his beard grew thin and hungerly\nAnd seem'd to ask him sops as he was drinking.\nThis done, he took the bride about the neck\nAnd kiss'd her lips with such a clamorous smack\nThat at the parting all the church did echo:\nAnd I seeing this came thence for very shame;\nAnd after me, I know, the rout is coming.\nSuch a mad marriage never was before:\nHark, hark! I hear the minstrels play.\n\nPETRUCHIO:\nGentlemen and friends, I thank you for your pains:\nI know you think to dine with me to-day,\nAnd have prepared great store of wedding cheer;\nBut so it is, my haste doth call me hence,\nAnd therefore here I mean to take my leave.\n\nBAPTISTA:\nIs't possible you will away to-night?\n\nPETRUCHIO:\nI must away to-day, before night come:\nMake it no wonder; if you knew my business,\nYou would entreat me rather go than stay.\nAnd, honest company, I thank you all,\nThat have beheld me give away myself\nTo this most patient, sweet and virtuous wife:\nDine with my father, drink a health to me;\nFor I must hence; and farewell to you all.\n\nTRANIO:\nLet us entreat you stay till after dinner.\n\nPETRUCHIO:\nIt may not be.\n\nGREMIO:\nLet me entreat you.\n\nPETRUCHIO:\nIt cannot be.\n\nKATHARINA:\nLet me entreat you.\n\nPETRUCHIO:\nI am content.\n\nKATHARINA:\nAre you content to stay?\n\nPETRUCHIO:\nI am content you shall entreat me stay;\nBut yet not stay, entreat me how you can.\n\nKATHARINA:\nNow, if you love me, stay.\n\nPETRUCHIO:\nGrumio, my horse.\n\nGRUMIO:\nAy, sir, they be ready: the oats have eaten the horses.\n\nKATHARINA:\nNay, then,\nDo what thou canst, I will not go to-day;\nNo, nor to-morrow, not till I please myself.\nThe door is open, sir; there lies your way;\nYou may be jogging whiles your boots are green;\nFor me, I'll not be gone till I please myself:\n'Tis like you'll prove a jolly surly groom,\nThat take it on you at the first so roundly.\n\nPETRUCHIO:\nO Kate, content thee; prithee, be not angry.\n\nKATHARINA:\nI will be angry: what hast thou to do?\nFather, be quiet; he shall stay my leisure.\n\nGREMIO:\nAy, marry, sir, now it begins to work.\n\nKATARINA:\nGentlemen, forward to the bridal dinner:\nI see a woman may be made a fool,\nIf she had not a spirit to resist.\n\nPETRUCHIO:\nThey shall go forward, Kate, at thy command.\nObey the bride, you that attend on her;\nGo to the feast, revel and domineer,\nCarouse full measure to her maidenhead,\nBe mad and merry, or go hang yourselves:\nBut for my bonny Kate, she must with me.\nNay, look not big, nor stamp, nor stare, nor fret;\nI will be master of what is mine own:\nShe is my goods, my chattels; she is my house,\nMy household stuff, my field, my barn,\nMy horse, my ox, my ass, my any thing;\nAnd here she stands, touch her whoever dare;\nI'll bring mine action on the proudest he\nThat stops my way in Padua. Grumio,\nDraw forth thy weapon, we are beset with thieves;\nRescue thy mistress, if thou be a man.\nFear not, sweet wench, they shall not touch\nthee, Kate:\nI'll buckler thee against a million.\n\nBAPTISTA:\nNay, let them go, a couple of quiet ones.\n\nGREMIO:\nWent they not quickly, I should die with laughing.\n\nTRANIO:\nOf all mad matches never was the like.\n\nLUCENTIO:\nMistress, what's your opinion of your sister?\n\nBIANCA:\nThat, being mad herself, she's madly mated.\n\nGREMIO:\nI warrant him, Petruchio is Kated.\n\nBAPTISTA:\nNeighbours and friends, though bride and\nbridegroom wants\nFor to supply the places at the table,\nYou know there wants no junkets at the feast.\nLucentio, you shall supply the bridegroom's place:\nAnd let Bianca take her sister's room.\n\nTRANIO:\nShall sweet Bianca practise how to bride it?\n\nBAPTISTA:\nShe shall, Lucentio. Come, gentlemen, let's go.\n\nGRUMIO:\nFie, fie on all tired jades, on all mad masters, and\nall foul ways! Was ever man so beaten? was ever\nman so rayed? was ever man so weary? I am sent\nbefore to make a fire, and they are coming after to\nwarm them. Now, were not I a little pot and soon\nhot, my very lips might freeze to my teeth, my\ntongue to the roof of my mouth, my heart in my\nbelly, ere I should come by a fire to thaw me: but\nI, with blowing the fire, shall warm myself; for,\nconsidering the weather, a taller man than I will\ntake cold. Holla, ho! Curtis.\n\nCURTIS:\nWho is that calls so coldly?\n\nGRUMIO:\nA piece of ice: if thou doubt it, thou mayst slide\nfrom my shoulder to my heel with no greater a run\nbut my head and my neck. A fire good Curtis.\n\nCURTIS:\nIs my master and his wife coming, Grumio?\n\nGRUMIO:\nO, ay, Curtis, ay: and therefore fire, fire; cast\non no water.\n\nCURTIS:\nIs she so hot a shrew as she's reported?\n\nGRUMIO:\nShe was, good Curtis, before this frost: but, thou\nknowest, winter tames man, woman and beast; for it\nhath tamed my old master and my new mistress and\nmyself, fellow Curtis.\n\nCURTIS:\nAway, you three-inch fool! I am no beast.\n\nGRUMIO:\nAm I but three inches? why, thy horn is a foot; and\nso long am I at the least. But wilt thou make a\nfire, or shall I complain on thee to our mistress,\nwhose hand, she being now at hand, thou shalt soon\nfeel, to thy cold comfort, for being slow in thy hot office?\n\nCURTIS:\nI prithee, good Grumio, tell me, how goes the world?\n\nGRUMIO:\nA cold world, Curtis, in every office but thine; and\ntherefore fire: do thy duty, and have thy duty; for\nmy master and mistress are almost frozen to death.\n\nCURTIS:\nThere's fire ready; and therefore, good Grumio, the news.\n\nGRUMIO:\nWhy, 'Jack, boy! ho! boy!' and as much news as\nwill thaw.\n\nCURTIS:\nCome, you are so full of cony-catching!\n\nGRUMIO:\nWhy, therefore fire; for I have caught extreme cold.\nWhere's the cook? is supper ready, the house\ntrimmed, rushes strewed, cobwebs swept; the\nserving-men in their new fustian, their white\nstockings, and every officer his wedding-garment on?\nBe the jacks fair within, the jills fair without,\nthe carpets laid, and every thing in order?\n\nCURTIS:\nAll ready; and therefore, I pray thee, news.\n\nGRUMIO:\nFirst, know, my horse is tired; my master and\nmistress fallen out.\n\nCURTIS:\nHow?\n\nGRUMIO:\nOut of their saddles into the dirt; and thereby\nhangs a tale.\n\nCURTIS:\nLet's ha't, good Grumio.\n\nGRUMIO:\nLend thine ear.\n\nCURTIS:\nHere.\n\nGRUMIO:\nThere.\n\nCURTIS:\nThis is to feel a tale, not to hear a tale.\n\nGRUMIO:\nAnd therefore 'tis called a sensible tale: and this\ncuff was but to knock at your ear, and beseech\nlistening. Now I begin: Imprimis, we came down a\nfoul hill, my master riding behind my mistress,--\n\nCURTIS:\nBoth of one horse?\n\nGRUMIO:\nWhat's that to thee?\n\nCURTIS:\nWhy, a horse.\n\nGRUMIO:\nTell thou the tale: but hadst thou not crossed me,\nthou shouldst have heard how her horse fell and she\nunder her horse; thou shouldst have heard in how\nmiry a place, how she was bemoiled, how he left her\nwith the horse upon her, how he beat me because\nher horse stumbled, how she waded through the dirt\nto pluck him off me, how he swore, how she prayed,\nthat never prayed before, how I cried, how the\nhorses ran away, how her bridle was burst, how I\nlost my crupper, with many things of worthy memory,\nwhich now shall die in oblivion and thou return\nunexperienced to thy grave.\n\nCURTIS:\nBy this reckoning he is more shrew than she.\n\nGRUMIO:\nAy; and that thou and the proudest of you all shall\nfind when he comes home. But what talk I of this?\nCall forth Nathaniel, Joseph, Nicholas, Philip,\nWalter, Sugarsop and the rest: let their heads be\nsleekly combed their blue coats brushed and their\ngarters of an indifferent knit: let them curtsy\nwith their left legs and not presume to touch a hair\nof my master's horse-tail till they kiss their\nhands. Are they all ready?\n\nCURTIS:\nThey are.\n\nGRUMIO:\nCall them forth.\n\nCURTIS:\nDo you hear, ho? you must meet my master to\ncountenance my mistress.\n\nGRUMIO:\nWhy, she hath a face of her own.\n\nCURTIS:\nWho knows not that?\n\nGRUMIO:\nThou, it seems, that calls for company to\ncountenance her.\n\nCURTIS:\nI call them forth to credit her.\n\nGRUMIO:\nWhy, she comes to borrow nothing of them.\n\nNATHANIEL:\nWelcome home, Grumio!\n\nPHILIP:\nHow now, Grumio!\n\nJOSEPH:\nWhat, Grumio!\n\nNICHOLAS:\nFellow Grumio!\n\nNATHANIEL:\nHow now, old lad?\n\nGRUMIO:\nWelcome, you;--how now, you;-- what, you;--fellow,\nyou;--and thus much for greeting. Now, my spruce\ncompanions, is all ready, and all things neat?\n\nNATHANIEL:\nAll things is ready. How near is our master?\n\nGRUMIO:\nE'en at hand, alighted by this; and therefore be\nnot--Cock's passion, silence! I hear my master.\n\nPETRUCHIO:\nWhere be these knaves? What, no man at door\nTo hold my stirrup nor to take my horse!\nWhere is Nathaniel, Gregory, Philip?\n\nALL SERVING-MEN:\nHere, here, sir; here, sir.\n\nPETRUCHIO:\nHere, sir! here, sir! here, sir! here, sir!\nYou logger-headed and unpolish'd grooms!\nWhat, no attendance? no regard? no duty?\nWhere is the foolish knave I sent before?\n\nGRUMIO:\nHere, sir; as foolish as I was before.\n\nPETRUCHIO:\nYou peasant swain! you whoreson malt-horse drudge!\nDid I not bid thee meet me in the park,\nAnd bring along these rascal knaves with thee?\n\nGRUMIO:\nNathaniel's coat, sir, was not fully made,\nAnd Gabriel's pumps were all unpink'd i' the heel;\nThere was no link to colour Peter's hat,\nAnd Walter's dagger was not come from sheathing:\nThere were none fine but Adam, Ralph, and Gregory;\nThe rest were ragged, old, and beggarly;\nYet, as they are, here are they come to meet you.\n\nPETRUCHIO:\nGo, rascals, go, and fetch my supper in.\nWhere is the life that late I led--\nWhere are those--Sit down, Kate, and welcome.--\nSound, sound, sound, sound!\nWhy, when, I say? Nay, good sweet Kate, be merry.\nOff with my boots, you rogues! you villains, when?\nIt was the friar of orders grey,\nAs he forth walked on his way:--\nOut, you rogue! you pluck my foot awry:\nTake that, and mend the plucking off the other.\nBe merry, Kate. Some water, here; what, ho!\nWhere's my spaniel Troilus? Sirrah, get you hence,\nAnd bid my cousin Ferdinand come hither:\nOne, Kate, that you must kiss, and be acquainted with.\nWhere are my slippers? Shall I have some water?\nCome, Kate, and wash, and welcome heartily.\nYou whoreson villain! will you let it fall?\n\nKATHARINA:\nPatience, I pray you; 'twas a fault unwilling.\n\nPETRUCHIO:\nA whoreson beetle-headed, flap-ear'd knave!\nCome, Kate, sit down; I know you have a stomach.\nWill you give thanks, sweet Kate; or else shall I?\nWhat's this? mutton?\n\nFirst Servant:\nAy.\n\nPETRUCHIO:\nWho brought it?\n\nPETER:\nI.\n\nPETRUCHIO:\n'Tis burnt; and so is all the meat.\nWhat dogs are these! Where is the rascal cook?\nHow durst you, villains, bring it from the dresser,\nAnd serve it thus to me that love it not?\nTheretake it to you, trenchers, cups, and all;\nYou heedless joltheads and unmanner'd slaves!\nWhat, do you grumble? I'll be with you straight.\n\nKATHARINA:\nI pray you, husband, be not so disquiet:\nThe meat was well, if you were so contented.\n\nPETRUCHIO:\nI tell thee, Kate, 'twas burnt and dried away;\nAnd I expressly am forbid to touch it,\nFor it engenders choler, planteth anger;\nAnd better 'twere that both of us did fast,\nSince, of ourselves, ourselves are choleric,\nThan feed it with such over-roasted flesh.\nBe patient; to-morrow 't shall be mended,\nAnd, for this night, we'll fast for company:\nCome, I will bring thee to thy bridal chamber.\n\nNATHANIEL:\nPeter, didst ever see the like?\n\nPETER:\nHe kills her in her own humour.\n\nGRUMIO:\nWhere is he?\n\nCURTIS:\nIn her chamber, making a sermon of continency to her;\nAnd rails, and swears, and rates, that she, poor soul,\nKnows not which way to stand, to look, to speak,\nAnd sits as one new-risen from a dream.\nAway, away! for he is coming hither.\n\nPETRUCHIO:\nThus have I politicly begun my reign,\nAnd 'tis my hope to end successfully.\nMy falcon now is sharp and passing empty;\nAnd till she stoop she must not be full-gorged,\nFor then she never looks upon her lure.\nAnother way I have to man my haggard,\nTo make her come and know her keeper's call,\nThat is, to watch her, as we watch these kites\nThat bate and beat and will not be obedient.\nShe eat no meat to-day, nor none shall eat;\nLast night she slept not, nor to-night she shall not;\nAs with the meat, some undeserved fault\nI'll find about the making of the bed;\nAnd here I'll fling the pillow, there the bolster,\nThis way the coverlet, another way the sheets:\nAy, and amid this hurly I intend\nThat all is done in reverend care of her;\nAnd in conclusion she shall watch all night:\nAnd if she chance to nod I'll rail and brawl\nAnd with the clamour keep her still awake.\nThis is a way to kill a wife with kindness;\nAnd thus I'll curb her mad and headstrong humour.\nHe that knows better how to tame a shrew,\nNow let him speak: 'tis charity to show.\n\nTRANIO:\nIs't possible, friend Licio, that Mistress Bianca\nDoth fancy any other but Lucentio?\nI tell you, sir, she bears me fair in hand.\n\nHORTENSIO:\nSir, to satisfy you in what I have said,\nStand by and mark the manner of his teaching.\n\nLUCENTIO:\nNow, mistress, profit you in what you read?\n\nBIANCA:\nWhat, master, read you? first resolve me that.\n\nLUCENTIO:\nI read that I profess, the Art to Love.\n\nBIANCA:\nAnd may you prove, sir, master of your art!\n\nLUCENTIO:\nWhile you, sweet dear, prove mistress of my heart!\n\nHORTENSIO:\nQuick proceeders, marry! Now, tell me, I pray,\nYou that durst swear at your mistress Bianca\nLoved none in the world so well as Lucentio.\n\nTRANIO:\nO despiteful love! unconstant womankind!\nI tell thee, Licio, this is wonderful.\n\nHORTENSIO:\nMistake no more: I am not Licio,\nNor a musician, as I seem to be;\nBut one that scorn to live in this disguise,\nFor such a one as leaves a gentleman,\nAnd makes a god of such a cullion:\nKnow, sir, that I am call'd Hortensio.\n\nTRANIO:\nSignior Hortensio, I have often heard\nOf your entire affection to Bianca;\nAnd since mine eyes are witness of her lightness,\nI will with you, if you be so contented,\nForswear Bianca and her love for ever.\n\nHORTENSIO:\nSee, how they kiss and court! Signior Lucentio,\nHere is my hand, and here I firmly vow\nNever to woo her no more, but do forswear her,\nAs one unworthy all the former favours\nThat I have fondly flatter'd her withal.\n\nTRANIO:\nAnd here I take the unfeigned oath,\nNever to marry with her though she would entreat:\nFie on her! see, how beastly she doth court him!\n\nHORTENSIO:\nWould all the world but he had quite forsworn!\nFor me, that I may surely keep mine oath,\nI will be married to a wealthy widow,\nEre three days pass, which hath as long loved me\nAs I have loved this proud disdainful haggard.\nAnd so farewell, Signior Lucentio.\nKindness in women, not their beauteous looks,\nShall win my love: and so I take my leave,\nIn resolution as I swore before.\n\nTRANIO:\nMistress Bianca, bless you with such grace\nAs 'longeth to a lover's blessed case!\nNay, I have ta'en you napping, gentle love,\nAnd have forsworn you with Hortensio.\n\nBIANCA:\nTranio, you jest: but have you both forsworn me?\n\nTRANIO:\nMistress, we have.\n\nLUCENTIO:\nThen we are rid of Licio.\n\nTRANIO:\nI' faith, he'll have a lusty widow now,\nThat shall be wood and wedded in a day.\n\nBIANCA:\nGod give him joy!\n\nTRANIO:\nAy, and he'll tame her.\n\nBIANCA:\nHe says so, Tranio.\n\nTRANIO:\nFaith, he is gone unto the taming-school.\n\nBIANCA:\nThe taming-school! what, is there such a place?\n\nTRANIO:\nAy, mistress, and Petruchio is the master;\nThat teacheth tricks eleven and twenty long,\nTo tame a shrew and charm her chattering tongue.\n\nBIONDELLO:\nO master, master, I have watch'd so long\nThat I am dog-weary: but at last I spied\nAn ancient angel coming down the hill,\nWill serve the turn.\n\nTRANIO:\nWhat is he, Biondello?\n\nBIONDELLO:\nMaster, a mercatante, or a pedant,\nI know not what; but format in apparel,\nIn gait and countenance surely like a father.\n\nLUCENTIO:\nAnd what of him, Tranio?\n\nTRANIO:\nIf he be credulous and trust my tale,\nI'll make him glad to seem Vincentio,\nAnd give assurance to Baptista Minola,\nAs if he were the right Vincentio\nTake in your love, and then let me alone.\n\nPedant:\nGod save you, sir!\n\nTRANIO:\nAnd you, sir! you are welcome.\nTravel you far on, or are you at the farthest?\n\nPedant:\nSir, at the farthest for a week or two:\nBut then up farther, and as for as Rome;\nAnd so to Tripoli, if God lend me life.\n\nTRANIO:\nWhat countryman, I pray?\n\nPedant:\nOf Mantua.\n\nTRANIO:\nOf Mantua, sir? marry, God forbid!\nAnd come to Padua, careless of your life?\n\nPedant:\nMy life, sir! how, I pray? for that goes hard.\n\nTRANIO:\n'Tis death for any one in Mantua\nTo come to Padua. Know you not the cause?\nYour ships are stay'd at Venice, and the duke,\nFor private quarrel 'twixt your duke and him,\nHath publish'd and proclaim'd it openly:\n'Tis, marvel, but that you are but newly come,\nYou might have heard it else proclaim'd about.\n\nPedant:\nAlas! sir, it is worse for me than so;\nFor I have bills for money by exchange\nFrom Florence and must here deliver them.\n\nTRANIO:\nWell, sir, to do you courtesy,\nThis will I do, and this I will advise you:\nFirst, tell me, have you ever been at Pisa?\n\nPedant:\nAy, sir, in Pisa have I often been,\nPisa renowned for grave citizens.\n\nTRANIO:\nAmong them know you one Vincentio?\n\nPedant:\nI know him not, but I have heard of him;\nA merchant of incomparable wealth.\n\nTRANIO:\nHe is my father, sir; and, sooth to say,\nIn countenance somewhat doth resemble you.\n\nBIONDELLO:\n\nTRANIO:\nTo save your life in this extremity,\nThis favour will I do you for his sake;\nAnd think it not the worst of an your fortunes\nThat you are like to Sir Vincentio.\nHis name and credit shall you undertake,\nAnd in my house you shall be friendly lodged:\nLook that you take upon you as you should;\nYou understand me, sir: so shall you stay\nTill you have done your business in the city:\nIf this be courtesy, sir, accept of it.\n\nPedant:\nO sir, I do; and will repute you ever\nThe patron of my life and liberty.\n\nTRANIO:\nThen go with me to make the matter good.\nThis, by the way, I let you understand;\nmy father is here look'd for every day,\nTo pass assurance of a dower in marriage\n'Twixt me and one Baptista's daughter here:\nIn all these circumstances I'll instruct you:\nGo with me to clothe you as becomes you.\n\nGRUMIO:\nNo, no, forsooth; I dare not for my life.\n\nKATHARINA:\nThe more my wrong, the more his spite appears:\nWhat, did he marry me to famish me?\nBeggars, that come unto my father's door,\nUpon entreaty have a present aims;\nIf not, elsewhere they meet with charity:\nBut I, who never knew how to entreat,\nNor never needed that I should entreat,\nAm starved for meat, giddy for lack of sleep,\nWith oath kept waking and with brawling fed:\nAnd that which spites me more than all these wants,\nHe does it under name of perfect love;\nAs who should say, if I should sleep or eat,\n'Twere deadly sickness or else present death.\nI prithee go and get me some repast;\nI care not what, so it be wholesome food.\n\nGRUMIO:\nWhat say you to a neat's foot?\n\nKATHARINA:\n'Tis passing good: I prithee let me have it.\n\nGRUMIO:\nI fear it is too choleric a meat.\nHow say you to a fat tripe finely broil'd?\n\nKATHARINA:\nI like it well: good Grumio, fetch it me.\n\nGRUMIO:\nI cannot tell; I fear 'tis choleric.\nWhat say you to a piece of beef and mustard?\n\nKATHARINA:\nA dish that I do love to feed upon.\n\nGRUMIO:\nAy, but the mustard is too hot a little.\n\nKATHARINA:\nWhy then, the beef, and let the mustard rest.\n\nGRUMIO:\nNay then, I will not: you shall have the mustard,\nOr else you get no beef of Grumio.\n\nKATHARINA:\nThen both, or one, or any thing thou wilt.\n\nGRUMIO:\nWhy then, the mustard without the beef.\n\nKATHARINA:\nGo, get thee gone, thou false deluding slave,\nThat feed'st me with the very name of meat:\nSorrow on thee and all the pack of you,\nThat triumph thus upon my misery!\nGo, get thee gone, I say.\n\nPETRUCHIO:\nHow fares my Kate? What, sweeting, all amort?\n\nHORTENSIO:\nMistress, what cheer?\n\nKATHARINA:\nFaith, as cold as can be.\n\nPETRUCHIO:\nPluck up thy spirits; look cheerfully upon me.\nHere love; thou see'st how diligent I am\nTo dress thy meat myself and bring it thee:\nI am sure, sweet Kate, this kindness merits thanks.\nWhat, not a word? Nay, then thou lovest it not;\nAnd all my pains is sorted to no proof.\nHere, take away this dish.\n\nKATHARINA:\nI pray you, let it stand.\n\nPETRUCHIO:\nThe poorest service is repaid with thanks;\nAnd so shall mine, before you touch the meat.\n\nKATHARINA:\nI thank you, sir.\n\nHORTENSIO:\nSignior Petruchio, fie! you are to blame.\nCome, mistress Kate, I'll bear you company.\n\nPETRUCHIO:\n\nHaberdasher:\nHere is the cap your worship did bespeak.\n\nPETRUCHIO:\nWhy, this was moulded on a porringer;\nA velvet dish: fie, fie! 'tis lewd and filthy:\nWhy, 'tis a cockle or a walnut-shell,\nA knack, a toy, a trick, a baby's cap:\nAway with it! come, let me have a bigger.\n\nKATHARINA:\nI'll have no bigger: this doth fit the time,\nAnd gentlewomen wear such caps as these\n\nPETRUCHIO:\nWhen you are gentle, you shall have one too,\nAnd not till then.\n\nHORTENSIO:\n\nKATHARINA:\nWhy, sir, I trust I may have leave to speak;\nAnd speak I will; I am no child, no babe:\nYour betters have endured me say my mind,\nAnd if you cannot, best you stop your ears.\nMy tongue will tell the anger of my heart,\nOr else my heart concealing it will break,\nAnd rather than it shall, I will be free\nEven to the uttermost, as I please, in words.\n\nPETRUCHIO:\nWhy, thou say'st true; it is a paltry cap,\nA custard-coffin, a bauble, a silken pie:\nI love thee well, in that thou likest it not.\n\nKATHARINA:\nLove me or love me not, I like the cap;\nAnd it I will have, or I will have none.\n\nPETRUCHIO:\nThy gown? why, ay: come, tailor, let us see't.\nO mercy, God! what masquing stuff is here?\nWhat's this? a sleeve? 'tis like a demi-cannon:\nWhat, up and down, carved like an apple-tart?\nHere's snip and nip and cut and slish and slash,\nLike to a censer in a barber's shop:\nWhy, what, i' devil's name, tailor, call'st thou this?\n\nHORTENSIO:\n\nTailor:\nYou bid me make it orderly and well,\nAccording to the fashion and the time.\n\nPETRUCHIO:\nMarry, and did; but if you be remember'd,\nI did not bid you mar it to the time.\nGo, hop me over every kennel home,\nFor you shall hop without my custom, sir:\nI'll none of it: hence! make your best of it.\n\nKATHARINA:\nI never saw a better-fashion'd gown,\nMore quaint, more pleasing, nor more commendable:\nBelike you mean to make a puppet of me.\n\nPETRUCHIO:\nWhy, true; he means to make a puppet of thee.\n\nTailor:\nShe says your worship means to make\na puppet of her.\n\nPETRUCHIO:\nO monstrous arrogance! Thou liest, thou thread,\nthou thimble,\nThou yard, three-quarters, half-yard, quarter, nail!\nThou flea, thou nit, thou winter-cricket thou!\nBraved in mine own house with a skein of thread?\nAway, thou rag, thou quantity, thou remnant;\nOr I shall so be-mete thee with thy yard\nAs thou shalt think on prating whilst thou livest!\nI tell thee, I, that thou hast marr'd her gown.\n\nTailor:\nYour worship is deceived; the gown is made\nJust as my master had direction:\nGrumio gave order how it should be done.\n\nGRUMIO:\nI gave him no order; I gave him the stuff.\n\nTailor:\nBut how did you desire it should be made?\n\nGRUMIO:\nMarry, sir, with needle and thread.\n\nTailor:\nBut did you not request to have it cut?\n\nGRUMIO:\nThou hast faced many things.\n\nTailor:\nI have.\n\nGRUMIO:\nFace not me: thou hast braved many men; brave not\nme; I will neither be faced nor braved. I say unto\nthee, I bid thy master cut out the gown; but I did\nnot bid him cut it to pieces: ergo, thou liest.\n\nTailor:\nWhy, here is the note of the fashion to testify\n\nPETRUCHIO:\nRead it.\n\nGRUMIO:\nThe note lies in's throat, if he say I said so.\n\nTailor:\n\nGRUMIO:\nMaster, if ever I said loose-bodied gown, sew me in\nthe skirts of it, and beat me to death with a bottom\nof brown thread: I said a gown.\n\nPETRUCHIO:\nProceed.\n\nTailor:\n\nGRUMIO:\nI confess the cape.\n\nTailor:\n\nGRUMIO:\nI confess two sleeves.\n\nTailor:\n\nPETRUCHIO:\nAy, there's the villany.\n\nGRUMIO:\nError i' the bill, sir; error i' the bill.\nI commanded the sleeves should be cut out and\nsewed up again; and that I'll prove upon thee,\nthough thy little finger be armed in a thimble.\n\nTailor:\nThis is true that I say: an I had thee\nin place where, thou shouldst know it.\n\nGRUMIO:\nI am for thee straight: take thou the\nbill, give me thy mete-yard, and spare not me.\n\nHORTENSIO:\nGod-a-mercy, Grumio! then he shall have no odds.\n\nPETRUCHIO:\nWell, sir, in brief, the gown is not for me.\n\nGRUMIO:\nYou are i' the right, sir: 'tis for my mistress.\n\nPETRUCHIO:\nGo, take it up unto thy master's use.\n\nGRUMIO:\nVillain, not for thy life: take up my mistress'\ngown for thy master's use!\n\nPETRUCHIO:\nWhy, sir, what's your conceit in that?\n\nGRUMIO:\nO, sir, the conceit is deeper than you think for:\nTake up my mistress' gown to his master's use!\nO, fie, fie, fie!\n\nPETRUCHIO:\n\nHORTENSIO:\nTailor, I'll pay thee for thy gown tomorrow:\nTake no unkindness of his hasty words:\nAway! I say; commend me to thy master.\n\nPETRUCHIO:\nWell, come, my Kate; we will unto your father's\nEven in these honest mean habiliments:\nOur purses shall be proud, our garments poor;\nFor 'tis the mind that makes the body rich;\nAnd as the sun breaks through the darkest clouds,\nSo honour peereth in the meanest habit.\nWhat is the jay more precious than the lark,\nBecause his fathers are more beautiful?\nOr is the adder better than the eel,\nBecause his painted skin contents the eye?\nO, no, good Kate; neither art thou the worse\nFor this poor furniture and mean array.\nif thou account'st it shame. lay it on me;\nAnd therefore frolic: we will hence forthwith,\nTo feast and sport us at thy father's house.\nGo, call my men, and let us straight to him;\nAnd bring our horses unto Long-lane end;\nThere will we mount, and thither walk on foot\nLet's see; I think 'tis now some seven o'clock,\nAnd well we may come there by dinner-time.\n\nKATHARINA:\nI dare assure you, sir, 'tis almost two;\nAnd 'twill be supper-time ere you come there.\n\nPETRUCHIO:\nIt shall be seven ere I go to horse:\nLook, what I speak, or do, or think to do,\nYou are still crossing it. Sirs, let't alone:\nI will not go to-day; and ere I do,\nIt shall be what o'clock I say it is.\n\nHORTENSIO:\n\nTRANIO:\nSir, this is the house: please it you that I call?\n\nPedant:\nAy, what else? and but I be deceived\nSignior Baptista may remember me,\nNear twenty years ago, in Genoa,\nWhere we were lodgers at the Pegasus.\n\nTRANIO:\n'Tis well; and hold your own, in any case,\nWith such austerity as 'longeth to a father.\n\nPedant:\nI warrant you.\nBut, sir, here comes your boy;\n'Twere good he were school'd.\n\nTRANIO:\nFear you not him. Sirrah Biondello,\nNow do your duty throughly, I advise you:\nImagine 'twere the right Vincentio.\n\nBIONDELLO:\nTut, fear not me.\n\nTRANIO:\nBut hast thou done thy errand to Baptista?\n\nBIONDELLO:\nI told him that your father was at Venice,\nAnd that you look'd for him this day in Padua.\n\nTRANIO:\nThou'rt a tall fellow: hold thee that to drink.\nHere comes Baptista: set your countenance, sir.\nSignior Baptista, you are happily met.\nSir, this is the gentleman I told you of:\nI pray you stand good father to me now,\nGive me Bianca for my patrimony.\n\nPedant:\nSoft son!\nSir, by your leave: having come to Padua\nTo gather in some debts, my son Lucentio\nMade me acquainted with a weighty cause\nOf love between your daughter and himself:\nAnd, for the good report I hear of you\nAnd for the love he beareth to your daughter\nAnd she to him, to stay him not too long,\nI am content, in a good father's care,\nTo have him match'd; and if you please to like\nNo worse than I, upon some agreement\nMe shall you find ready and willing\nWith one consent to have her so bestow'd;\nFor curious I cannot be with you,\nSignior Baptista, of whom I hear so well.\n\nBAPTISTA:\nSir, pardon me in what I have to say:\nYour plainness and your shortness please me well.\nRight true it is, your son Lucentio here\nDoth love my daughter and she loveth him,\nOr both dissemble deeply their affections:\nAnd therefore, if you say no more than this,\nThat like a father you will deal with him\nAnd pass my daughter a sufficient dower,\nThe match is made, and all is done:\nYour son shall have my daughter with consent.\n\nTRANIO:\nI thank you, sir. Where then do you know best\nWe be affied and such assurance ta'en\nAs shall with either part's agreement stand?\n\nBAPTISTA:\nNot in my house, Lucentio; for, you know,\nPitchers have ears, and I have many servants:\nBesides, old Gremio is hearkening still;\nAnd happily we might be interrupted.\n\nTRANIO:\nThen at my lodging, an it like you:\nThere doth my father lie; and there, this night,\nWe'll pass the business privately and well.\nSend for your daughter by your servant here:\nMy boy shall fetch the scrivener presently.\nThe worst is this, that, at so slender warning,\nYou are like to have a thin and slender pittance.\n\nBAPTISTA:\nIt likes me well. Biondello, hie you home,\nAnd bid Bianca make her ready straight;\nAnd, if you will, tell what hath happened,\nLucentio's father is arrived in Padua,\nAnd how she's like to be Lucentio's wife.\n\nBIONDELLO:\nI pray the gods she may with all my heart!\n\nTRANIO:\nDally not with the gods, but get thee gone.\nSignior Baptista, shall I lead the way?\nWelcome! one mess is like to be your cheer:\nCome, sir; we will better it in Pisa.\n\nBAPTISTA:\nI follow you.\n\nBIONDELLO:\nCambio!\n\nLUCENTIO:\nWhat sayest thou, Biondello?\n\nBIONDELLO:\nYou saw my master wink and laugh upon you?\n\nLUCENTIO:\nBiondello, what of that?\n\nBIONDELLO:\nFaith, nothing; but has left me here behind, to\nexpound the meaning or moral of his signs and tokens.\n\nLUCENTIO:\nI pray thee, moralize them.\n\nBIONDELLO:\nThen thus. Baptista is safe, talking with the\ndeceiving father of a deceitful son.\n\nLUCENTIO:\nAnd what of him?\n\nBIONDELLO:\nHis daughter is to be brought by you to the supper.\n\nLUCENTIO:\nAnd then?\n\nBIONDELLO:\nThe old priest of Saint Luke's church is at your\ncommand at all hours.\n\nLUCENTIO:\nAnd what of all this?\n\nBIONDELLO:\nI cannot tell; expect they are busied about a\ncounterfeit assurance: take you assurance of her,\n'cum privilegio ad imprimendum solum:' to the\nchurch; take the priest, clerk, and some sufficient\nhonest witnesses: If this be not that you look for,\nI have no more to say, But bid Bianca farewell for\never and a day.\n\nLUCENTIO:\nHearest thou, Biondello?\n\nBIONDELLO:\nI cannot tarry: I knew a wench married in an\nafternoon as she went to the garden for parsley to\nstuff a rabbit; and so may you, sir: and so, adieu,\nsir. My master hath appointed me to go to Saint\nLuke's, to bid the priest be ready to come against\nyou come with your appendix.\n\nLUCENTIO:\nI may, and will, if she be so contented:\nShe will be pleased; then wherefore should I doubt?\nHap what hap may, I'll roundly go about her:\nIt shall go hard if Cambio go without her.\n\nPETRUCHIO:\nCome on, i' God's name; once more toward our father's.\nGood Lord, how bright and goodly shines the moon!\n\nKATHARINA:\nThe moon! the sun: it is not moonlight now.\n\nPETRUCHIO:\nI say it is the moon that shines so bright.\n\nKATHARINA:\nI know it is the sun that shines so bright.\n\nPETRUCHIO:\nNow, by my mother's son, and that's myself,\nIt shall be moon, or star, or what I list,\nOr ere I journey to your father's house.\nGo on, and fetch our horses back again.\nEvermore cross'd and cross'd; nothing but cross'd!\n\nHORTENSIO:\nSay as he says, or we shall never go.\n\nKATHARINA:\nForward, I pray, since we have come so far,\nAnd be it moon, or sun, or what you please:\nAn if you please to call it a rush-candle,\nHenceforth I vow it shall be so for me.\n\nPETRUCHIO:\nI say it is the moon.\n\nKATHARINA:\nI know it is the moon.\n\nPETRUCHIO:\nNay, then you lie: it is the blessed sun.\n\nKATHARINA:\nThen, God be bless'd, it is the blessed sun:\nBut sun it is not, when you say it is not;\nAnd the moon changes even as your mind.\nWhat you will have it named, even that it is;\nAnd so it shall be so for Katharina.\n\nHORTENSIO:\nPetruchio, go thy ways; the field is won.\n\nPETRUCHIO:\nWell, forward, forward! thus the bowl should run,\nAnd not unluckily against the bias.\nBut, soft! company is coming here.\nGood morrow, gentle mistress: where away?\nTell me, sweet Kate, and tell me truly too,\nHast thou beheld a fresher gentlewoman?\nSuch war of white and red within her cheeks!\nWhat stars do spangle heaven with such beauty,\nAs those two eyes become that heavenly face?\nFair lovely maid, once more good day to thee.\nSweet Kate, embrace her for her beauty's sake.\n\nHORTENSIO:\nA' will make the man mad, to make a woman of him.\n\nKATHARINA:\nYoung budding virgin, fair and fresh and sweet,\nWhither away, or where is thy abode?\nHappy the parents of so fair a child;\nHappier the man, whom favourable stars\nAllot thee for his lovely bed-fellow!\n\nPETRUCHIO:\nWhy, how now, Kate! I hope thou art not mad:\nThis is a man, old, wrinkled, faded, wither'd,\nAnd not a maiden, as thou say'st he is.\n\nKATHARINA:\nPardon, old father, my mistaking eyes,\nThat have been so bedazzled with the sun\nThat everything I look on seemeth green:\nNow I perceive thou art a reverend father;\nPardon, I pray thee, for my mad mistaking.\n\nPETRUCHIO:\nDo, good old grandsire; and withal make known\nWhich way thou travellest: if along with us,\nWe shall be joyful of thy company.\n\nVINCENTIO:\nFair sir, and you my merry mistress,\nThat with your strange encounter much amazed me,\nMy name is call'd Vincentio; my dwelling Pisa;\nAnd bound I am to Padua; there to visit\nA son of mine, which long I have not seen.\n\nPETRUCHIO:\nWhat is his name?\n\nVINCENTIO:\nLucentio, gentle sir.\n\nPETRUCHIO:\nHappily we met; the happier for thy son.\nAnd now by law, as well as reverend age,\nI may entitle thee my loving father:\nThe sister to my wife, this gentlewoman,\nThy son by this hath married. Wonder not,\nNor be grieved: she is of good esteem,\nHer dowery wealthy, and of worthy birth;\nBeside, so qualified as may beseem\nThe spouse of any noble gentleman.\nLet me embrace with old Vincentio,\nAnd wander we to see thy honest son,\nWho will of thy arrival be full joyous.\n\nVINCENTIO:\nBut is it true? or else is it your pleasure,\nLike pleasant travellers, to break a jest\nUpon the company you overtake?\n\nHORTENSIO:\nI do assure thee, father, so it is.\n\nPETRUCHIO:\nCome, go along, and see the truth hereof;\nFor our first merriment hath made thee jealous.\n\nHORTENSIO:\nWell, Petruchio, this has put me in heart.\nHave to my widow! and if she be froward,\nThen hast thou taught Hortensio to be untoward.\n\nBIONDELLO:\nSoftly and swiftly, sir; for the priest is ready.\n\nLUCENTIO:\nI fly, Biondello: but they may chance to need thee\nat home; therefore leave us.\n\nBIONDELLO:\nNay, faith, I'll see the church o' your back; and\nthen come back to my master's as soon as I can.\n\nGREMIO:\nI marvel Cambio comes not all this while.\n\nPETRUCHIO:\nSir, here's the door, this is Lucentio's house:\nMy father's bears more toward the market-place;\nThither must I, and here I leave you, sir.\n\nVINCENTIO:\nYou shall not choose but drink before you go:\nI think I shall command your welcome here,\nAnd, by all likelihood, some cheer is toward.\n\nGREMIO:\nThey're busy within; you were best knock louder.\n\nPedant:\nWhat's he that knocks as he would beat down the gate?\n\nVINCENTIO:\nIs Signior Lucentio within, sir?\n\nPedant:\nHe's within, sir, but not to be spoken withal.\n\nVINCENTIO:\nWhat if a man bring him a hundred pound or two, to\nmake merry withal?\n\nPedant:\nKeep your hundred pounds to yourself: he shall\nneed none, so long as I live.\n\nPETRUCHIO:\nNay, I told you your son was well beloved in Padua.\nDo you hear, sir? To leave frivolous circumstances,\nI pray you, tell Signior Lucentio that his father is\ncome from Pisa, and is here at the door to speak with him.\n\nPedant:\nThou liest: his father is come from Padua and here\nlooking out at the window.\n\nVINCENTIO:\nArt thou his father?\n\nPedant:\nAy, sir; so his mother says, if I may believe her.\n\nPETRUCHIO:\n\nPedant:\nLay hands on the villain: I believe a' means to\ncozen somebody in this city under my countenance.\n\nBIONDELLO:\nI have seen them in the church together: God send\n'em good shipping! But who is here? mine old\nmaster Vincentio! now we are undone and brought to nothing.\n\nVINCENTIO:\n\nBIONDELLO:\nHope I may choose, sir.\n\nVINCENTIO:\nCome hither, you rogue. What, have you forgot me?\n\nBIONDELLO:\nForgot you! no, sir: I could not forget you, for I\nnever saw you before in all my life.\n\nVINCENTIO:\nWhat, you notorious villain, didst thou never see\nthy master's father, Vincentio?\n\nBIONDELLO:\nWhat, my old worshipful old master? yes, marry, sir:\nsee where he looks out of the window.\n\nVINCENTIO:\nIs't so, indeed.\n\nBIONDELLO:\nHelp, help, help! here's a madman will murder me.\n\nPedant:\nHelp, son! help, Signior Baptista!\n\nPETRUCHIO:\nPrithee, Kate, let's stand aside and see the end of\nthis controversy.\n\nTRANIO:\nSir, what are you that offer to beat my servant?\n\nVINCENTIO:\nWhat am I, sir! nay, what are you, sir? O immortal\ngods! O fine villain! A silken doublet! a velvet\nhose! a scarlet cloak! and a copatain hat! O, I\nam undone! I am undone! while I play the good\nhusband at home, my son and my servant spend all at\nthe university.\n\nTRANIO:\nHow now! what's the matter?\n\nBAPTISTA:\nWhat, is the man lunatic?\n\nTRANIO:\nSir, you seem a sober ancient gentleman by your\nhabit, but your words show you a madman. Why, sir,\nwhat 'cerns it you if I wear pearl and gold? I\nthank my good father, I am able to maintain it.\n\nVINCENTIO:\nThy father! O villain! he is a sailmaker in Bergamo.\n\nBAPTISTA:\nYou mistake, sir, you mistake, sir. Pray, what do\nyou think is his name?\n\nVINCENTIO:\nHis name! as if I knew not his name: I have brought\nhim up ever since he was three years old, and his\nname is Tranio.\n\nPedant:\nAway, away, mad ass! his name is Lucentio and he is\nmine only son, and heir to the lands of me, Signior Vincentio.\n\nVINCENTIO:\nLucentio! O, he hath murdered his master! Lay hold\non him, I charge you, in the duke's name. O, my\nson, my son! Tell me, thou villain, where is my son Lucentio?\n\nTRANIO:\nCall forth an officer.\nCarry this mad knave to the gaol. Father Baptista,\nI charge you see that he be forthcoming.\n\nVINCENTIO:\nCarry me to the gaol!\n\nGREMIO:\nStay, officer: he shall not go to prison.\n\nBAPTISTA:\nTalk not, Signior Gremio: I say he shall go to prison.\n\nGREMIO:\nTake heed, Signior Baptista, lest you be\ncony-catched in this business: I dare swear this\nis the right Vincentio.\n\nPedant:\nSwear, if thou darest.\n\nGREMIO:\nNay, I dare not swear it.\n\nTRANIO:\nThen thou wert best say that I am not Lucentio.\n\nGREMIO:\nYes, I know thee to be Signior Lucentio.\n\nBAPTISTA:\nAway with the dotard! to the gaol with him!\n\nVINCENTIO:\nThus strangers may be hailed and abused: O\nmonstrous villain!\n\nBIONDELLO:\nO! we are spoiled and--yonder he is: deny him,\nforswear him, or else we are all undone.\n\nLUCENTIO:\n\nVINCENTIO:\nLives my sweet son?\n\nBIANCA:\nPardon, dear father.\n\nBAPTISTA:\nHow hast thou offended?\nWhere is Lucentio?\n\nLUCENTIO:\nHere's Lucentio,\nRight son to the right Vincentio;\nThat have by marriage made thy daughter mine,\nWhile counterfeit supposes bleared thine eyne.\n\nGREMIO:\nHere's packing, with a witness to deceive us all!\n\nVINCENTIO:\nWhere is that damned villain Tranio,\nThat faced and braved me in this matter so?\n\nBAPTISTA:\nWhy, tell me, is not this my Cambio?\n\nBIANCA:\nCambio is changed into Lucentio.\n\nLUCENTIO:\nLove wrought these miracles. Bianca's love\nMade me exchange my state with Tranio,\nWhile he did bear my countenance in the town;\nAnd happily I have arrived at the last\nUnto the wished haven of my bliss.\nWhat Tranio did, myself enforced him to;\nThen pardon him, sweet father, for my sake.\n\nVINCENTIO:\nI'll slit the villain's nose, that would have sent\nme to the gaol.\n\nBAPTISTA:\nBut do you hear, sir? have you married my daughter\nwithout asking my good will?\n\nVINCENTIO:\nFear not, Baptista; we will content you, go to: but\nI will in, to be revenged for this villany.\n\nBAPTISTA:\nAnd I, to sound the depth of this knavery.\n\nLUCENTIO:\nLook not pale, Bianca; thy father will not frown.\n\nGREMIO:\nMy cake is dough; but I'll in among the rest,\nOut of hope of all, but my share of the feast.\n\nKATHARINA:\nHusband, let's follow, to see the end of this ado.\n\nPETRUCHIO:\nFirst kiss me, Kate, and we will.\n\nKATHARINA:\nWhat, in the midst of the street?\n\nPETRUCHIO:\nWhat, art thou ashamed of me?\n\nKATHARINA:\nNo, sir, God forbid; but ashamed to kiss.\n\nPETRUCHIO:\nWhy, then let's home again. Come, sirrah, let's away.\n\nKATHARINA:\nNay, I will give thee a kiss: now pray thee, love, stay.\n\nPETRUCHIO:\nIs not this well? Come, my sweet Kate:\nBetter once than never, for never too late.\n\nLUCENTIO:\nAt last, though long, our jarring notes agree:\nAnd time it is, when raging war is done,\nTo smile at scapes and perils overblown.\nMy fair Bianca, bid my father welcome,\nWhile I with self-same kindness welcome thine.\nBrother Petruchio, sister Katharina,\nAnd thou, Hortensio, with thy loving widow,\nFeast with the best, and welcome to my house:\nMy banquet is to close our stomachs up,\nAfter our great good cheer. Pray you, sit down;\nFor now we sit to chat as well as eat.\n\nPETRUCHIO:\nNothing but sit and sit, and eat and eat!\n\nBAPTISTA:\nPadua affords this kindness, son Petruchio.\n\nPETRUCHIO:\nPadua affords nothing but what is kind.\n\nHORTENSIO:\nFor both our sakes, I would that word were true.\n\nPETRUCHIO:\nNow, for my life, Hortensio fears his widow.\n\nWidow:\nThen never trust me, if I be afeard.\n\nPETRUCHIO:\nYou are very sensible, and yet you miss my sense:\nI mean, Hortensio is afeard of you.\n\nWidow:\nHe that is giddy thinks the world turns round.\n\nPETRUCHIO:\nRoundly replied.\n\nKATHARINA:\nMistress, how mean you that?\n\nWidow:\nThus I conceive by him.\n\nPETRUCHIO:\nConceives by me! How likes Hortensio that?\n\nHORTENSIO:\nMy widow says, thus she conceives her tale.\n\nPETRUCHIO:\nVery well mended. Kiss him for that, good widow.\n\nKATHARINA:\n'He that is giddy thinks the world turns round:'\nI pray you, tell me what you meant by that.\n\nWidow:\nYour husband, being troubled with a shrew,\nMeasures my husband's sorrow by his woe:\nAnd now you know my meaning,\n\nKATHARINA:\nA very mean meaning.\n\nWidow:\nRight, I mean you.\n\nKATHARINA:\nAnd I am mean indeed, respecting you.\n\nPETRUCHIO:\nTo her, Kate!\n\nHORTENSIO:\nTo her, widow!\n\nPETRUCHIO:\nA hundred marks, my Kate does put her down.\n\nHORTENSIO:\nThat's my office.\n\nPETRUCHIO:\nSpoke like an officer; ha' to thee, lad!\n\nBAPTISTA:\nHow likes Gremio these quick-witted folks?\n\nGREMIO:\nBelieve me, sir, they butt together well.\n\nBIANCA:\nHead, and butt! an hasty-witted body\nWould say your head and butt were head and horn.\n\nVINCENTIO:\nAy, mistress bride, hath that awaken'd you?\n\nBIANCA:\nAy, but not frighted me; therefore I'll sleep again.\n\nPETRUCHIO:\nNay, that you shall not: since you have begun,\nHave at you for a bitter jest or two!\n\nBIANCA:\nAm I your bird? I mean to shift my bush;\nAnd then pursue me as you draw your bow.\nYou are welcome all.\n\nPETRUCHIO:\nShe hath prevented me. Here, Signior Tranio.\nThis bird you aim'd at, though you hit her not;\nTherefore a health to all that shot and miss'd.\n\nTRANIO:\nO, sir, Lucentio slipp'd me like his greyhound,\nWhich runs himself and catches for his master.\n\nPETRUCHIO:\nA good swift simile, but something currish.\n\nTRANIO:\n'Tis well, sir, that you hunted for yourself:\n'Tis thought your deer does hold you at a bay.\n\nBAPTISTA:\nO ho, Petruchio! Tranio hits you now.\n\nLUCENTIO:\nI thank thee for that gird, good Tranio.\n\nHORTENSIO:\nConfess, confess, hath he not hit you here?\n\nPETRUCHIO:\nA' has a little gall'd me, I confess;\nAnd, as the jest did glance away from me,\n'Tis ten to one it maim'd you two outright.\n\nBAPTISTA:\nNow, in good sadness, son Petruchio,\nI think thou hast the veriest shrew of all.\n\nPETRUCHIO:\nWell, I say no: and therefore for assurance\nLet's each one send unto his wife;\nAnd he whose wife is most obedient\nTo come at first when he doth send for her,\nShall win the wager which we will propose.\n\nHORTENSIO:\nContent. What is the wager?\n\nLUCENTIO:\nTwenty crowns.\n\nPETRUCHIO:\nTwenty crowns!\nI'll venture so much of my hawk or hound,\nBut twenty times so much upon my wife.\n\nLUCENTIO:\nA hundred then.\n\nHORTENSIO:\nContent.\n\nPETRUCHIO:\nA match! 'tis done.\n\nHORTENSIO:\nWho shall begin?\n\nLUCENTIO:\nThat will I.\nGo, Biondello, bid your mistress come to me.\n\nBIONDELLO:\nI go.\n\nBAPTISTA:\nSon, I'll be your half, Bianca comes.\n\nLUCENTIO:\nI'll have no halves; I'll bear it all myself.\nHow now! what news?\n\nBIONDELLO:\nSir, my mistress sends you word\nThat she is busy and she cannot come.\n\nPETRUCHIO:\nHow! she is busy and she cannot come!\nIs that an answer?\n\nGREMIO:\nAy, and a kind one too:\nPray God, sir, your wife send you not a worse.\n\nPETRUCHIO:\nI hope better.\n\nHORTENSIO:\nSirrah Biondello, go and entreat my wife\nTo come to me forthwith.\n\nPETRUCHIO:\nO, ho! entreat her!\nNay, then she must needs come.\n\nHORTENSIO:\nI am afraid, sir,\nDo what you can, yours will not be entreated.\nNow, where's my wife?\n\nBIONDELLO:\nShe says you have some goodly jest in hand:\nShe will not come: she bids you come to her.\n\nPETRUCHIO:\nWorse and worse; she will not come! O vile,\nIntolerable, not to be endured!\nSirrah Grumio, go to your mistress;\nSay, I command her to come to me.\n\nHORTENSIO:\nI know her answer.\n\nPETRUCHIO:\nWhat?\n\nHORTENSIO:\nShe will not.\n\nPETRUCHIO:\nThe fouler fortune mine, and there an end.\n\nBAPTISTA:\nNow, by my holidame, here comes Katharina!\n\nKATHARINA:\nWhat is your will, sir, that you send for me?\n\nPETRUCHIO:\nWhere is your sister, and Hortensio's wife?\n\nKATHARINA:\nThey sit conferring by the parlor fire.\n\nPETRUCHIO:\nGo fetch them hither: if they deny to come.\nSwinge me them soundly forth unto their husbands:\nAway, I say, and bring them hither straight.\n\nLUCENTIO:\nHere is a wonder, if you talk of a wonder.\n\nHORTENSIO:\nAnd so it is: I wonder what it bodes.\n\nPETRUCHIO:\nMarry, peace it bodes, and love and quiet life,\nAnd awful rule and right supremacy;\nAnd, to be short, what not, that's sweet and happy?\n\nBAPTISTA:\nNow, fair befal thee, good Petruchio!\nThe wager thou hast won; and I will add\nUnto their losses twenty thousand crowns;\nAnother dowry to another daughter,\nFor she is changed, as she had never been.\n\nPETRUCHIO:\nNay, I will win my wager better yet\nAnd show more sign of her obedience,\nHer new-built virtue and obedience.\nSee where she comes and brings your froward wives\nAs prisoners to her womanly persuasion.\nKatharina, that cap of yours becomes you not:\nOff with that bauble, throw it under-foot.\n\nWidow:\nLord, let me never have a cause to sigh,\nTill I be brought to such a silly pass!\n\nBIANCA:\nFie! what a foolish duty call you this?\n\nLUCENTIO:\nI would your duty were as foolish too:\nThe wisdom of your duty, fair Bianca,\nHath cost me an hundred crowns since supper-time.\n\nBIANCA:\nThe more fool you, for laying on my duty.\n\nPETRUCHIO:\nKatharina, I charge thee, tell these headstrong women\nWhat duty they do owe their lords and husbands.\n\nWidow:\nCome, come, you're mocking: we will have no telling.\n\nPETRUCHIO:\nCome on, I say; and first begin with her.\n\nWidow:\nShe shall not.\n\nPETRUCHIO:\nI say she shall: and first begin with her.\n\nKATHARINA:\nFie, fie! unknit that threatening unkind brow,\nAnd dart not scornful glances from those eyes,\nTo wound thy lord, thy king, thy governor:\nIt blots thy beauty as frosts do bite the meads,\nConfounds thy fame as whirlwinds shake fair buds,\nAnd in no sense is meet or amiable.\nA woman moved is like a fountain troubled,\nMuddy, ill-seeming, thick, bereft of beauty;\nAnd while it is so, none so dry or thirsty\nWill deign to sip or touch one drop of it.\nThy husband is thy lord, thy life, thy keeper,\nThy head, thy sovereign; one that cares for thee,\nAnd for thy maintenance commits his body\nTo painful labour both by sea and land,\nTo watch the night in storms, the day in cold,\nWhilst thou liest warm at home, secure and safe;\nAnd craves no other tribute at thy hands\nBut love, fair looks and true obedience;\nToo little payment for so great a debt.\nSuch duty as the subject owes the prince\nEven such a woman oweth to her husband;\nAnd when she is froward, peevish, sullen, sour,\nAnd not obedient to his honest will,\nWhat is she but a foul contending rebel\nAnd graceless traitor to her loving lord?\nI am ashamed that women are so simple\nTo offer war where they should kneel for peace;\nOr seek for rule, supremacy and sway,\nWhen they are bound to serve, love and obey.\nWhy are our bodies soft and weak and smooth,\nUnapt to toil and trouble in the world,\nBut that our soft conditions and our hearts\nShould well agree with our external parts?\nCome, come, you froward and unable worms!\nMy mind hath been as big as one of yours,\nMy heart as great, my reason haply more,\nTo bandy word for word and frown for frown;\nBut now I see our lances are but straws,\nOur strength as weak, our weakness past compare,\nThat seeming to be most which we indeed least are.\nThen vail your stomachs, for it is no boot,\nAnd place your hands below your husband's foot:\nIn token of which duty, if he please,\nMy hand is ready; may it do him ease.\n\nPETRUCHIO:\nWhy, there's a wench! Come on, and kiss me, Kate.\n\nLUCENTIO:\nWell, go thy ways, old lad; for thou shalt ha't.\n\nVINCENTIO:\n'Tis a good hearing when children are toward.\n\nLUCENTIO:\nBut a harsh hearing when women are froward.\n\nPETRUCHIO:\nCome, Kate, we'll to bed.\nWe three are married, but you two are sped.\n'Twas I won the wager, though you hit the white;\nAnd, being a winner, God give you good night!\n\nHORTENSIO:\nNow, go thy ways; thou hast tamed a curst shrew.\n\nLUCENTIO:\n'Tis a wonder, by your leave, she will be tamed so.\n\nMaster:\nBoatswain!\n\nBoatswain:\nHere, master: what cheer?\n\nMaster:\nGood, speak to the mariners: fall to't, yarely,\nor we run ourselves aground: bestir, bestir.\n\nBoatswain:\nHeigh, my hearts! cheerly, cheerly, my hearts!\nyare, yare! Take in the topsail. Tend to the\nmaster's whistle. Blow, till thou burst thy wind,\nif room enough!\n\nALONSO:\nGood boatswain, have care. Where's the master?\nPlay the men.\n\nBoatswain:\nI pray now, keep below.\n\nANTONIO:\nWhere is the master, boatswain?\n\nBoatswain:\nDo you not hear him? You mar our labour: keep your\ncabins: you do assist the storm.\n\nGONZALO:\nNay, good, be patient.\n\nBoatswain:\nWhen the sea is. Hence! What cares these roarers\nfor the name of king? To cabin: silence! trouble us not.\n\nGONZALO:\nGood, yet remember whom thou hast aboard.\n\nBoatswain:\nNone that I more love than myself. You are a\ncounsellor; if you can command these elements to\nsilence, and work the peace of the present, we will\nnot hand a rope more; use your authority: if you\ncannot, give thanks you have lived so long, and make\nyourself ready in your cabin for the mischance of\nthe hour, if it so hap. Cheerly, good hearts! Out\nof our way, I say.\n\nGONZALO:\nI have great comfort from this fellow: methinks he\nhath no drowning mark upon him; his complexion is\nperfect gallows. Stand fast, good Fate, to his\nhanging: make the rope of his destiny our cable,\nfor our own doth little advantage. If he be not\nborn to be hanged, our case is miserable.\n\nBoatswain:\nDown with the topmast! yare! lower, lower! Bring\nher to try with main-course.\nA plague upon this howling! they are louder than\nthe weather or our office.\nYet again! what do you here? Shall we give o'er\nand drown? Have you a mind to sink?\n\nSEBASTIAN:\nA pox o' your throat, you bawling, blasphemous,\nincharitable dog!\n\nBoatswain:\nWork you then.\n\nANTONIO:\nHang, cur! hang, you whoreson, insolent noisemaker!\nWe are less afraid to be drowned than thou art.\n\nGONZALO:\nI'll warrant him for drowning; though the ship were\nno stronger than a nutshell and as leaky as an\nunstanched wench.\n\nBoatswain:\nLay her a-hold, a-hold! set her two courses off to\nsea again; lay her off.\n\nMariners:\nAll lost! to prayers, to prayers! all lost!\n\nBoatswain:\nWhat, must our mouths be cold?\n\nGONZALO:\nThe king and prince at prayers! let's assist them,\nFor our case is as theirs.\n\nSEBASTIAN:\nI'm out of patience.\n\nANTONIO:\nWe are merely cheated of our lives by drunkards:\nThis wide-chapp'd rascal--would thou mightst lie drowning\nThe washing of ten tides!\n\nGONZALO:\nHe'll be hang'd yet,\nThough every drop of water swear against it\nAnd gape at widest to glut him.\n\nANTONIO:\nLet's all sink with the king.\n\nSEBASTIAN:\nLet's take leave of him.\n\nGONZALO:\nNow would I give a thousand furlongs of sea for an\nacre of barren ground, long heath, brown furze, any\nthing. The wills above be done! but I would fain\ndie a dry death.\n\nMIRANDA:\nIf by your art, my dearest father, you have\nPut the wild waters in this roar, allay them.\nThe sky, it seems, would pour down stinking pitch,\nBut that the sea, mounting to the welkin's cheek,\nDashes the fire out. O, I have suffered\nWith those that I saw suffer: a brave vessel,\nWho had, no doubt, some noble creature in her,\nDash'd all to pieces. O, the cry did knock\nAgainst my very heart. Poor souls, they perish'd.\nHad I been any god of power, I would\nHave sunk the sea within the earth or ere\nIt should the good ship so have swallow'd and\nThe fraughting souls within her.\n\nPROSPERO:\nBe collected:\nNo more amazement: tell your piteous heart\nThere's no harm done.\n\nMIRANDA:\nO, woe the day!\n\nPROSPERO:\nNo harm.\nI have done nothing but in care of thee,\nOf thee, my dear one, thee, my daughter, who\nArt ignorant of what thou art, nought knowing\nOf whence I am, nor that I am more better\nThan Prospero, master of a full poor cell,\nAnd thy no greater father.\n\nMIRANDA:\nMore to know\nDid never meddle with my thoughts.\n\nPROSPERO:\n'Tis time\nI should inform thee farther. Lend thy hand,\nAnd pluck my magic garment from me. So:\nLie there, my art. Wipe thou thine eyes; have comfort.\nThe direful spectacle of the wreck, which touch'd\nThe very virtue of compassion in thee,\nI have with such provision in mine art\nSo safely ordered that there is no soul--\nNo, not so much perdition as an hair\nBetid to any creature in the vessel\nWhich thou heard'st cry, which thou saw'st sink. Sit down;\nFor thou must now know farther.\n\nMIRANDA:\nYou have often\nBegun to tell me what I am, but stopp'd\nAnd left me to a bootless inquisition,\nConcluding 'Stay: not yet.'\n\nPROSPERO:\nThe hour's now come;\nThe very minute bids thee ope thine ear;\nObey and be attentive. Canst thou remember\nA time before we came unto this cell?\nI do not think thou canst, for then thou wast not\nOut three years old.\n\nMIRANDA:\nCertainly, sir, I can.\n\nPROSPERO:\nBy what? by any other house or person?\nOf any thing the image tell me that\nHath kept with thy remembrance.\n\nMIRANDA:\n'Tis far off\nAnd rather like a dream than an assurance\nThat my remembrance warrants. Had I not\nFour or five women once that tended me?\n\nPROSPERO:\nThou hadst, and more, Miranda. But how is it\nThat this lives in thy mind? What seest thou else\nIn the dark backward and abysm of time?\nIf thou remember'st aught ere thou camest here,\nHow thou camest here thou mayst.\n\nMIRANDA:\nBut that I do not.\n\nPROSPERO:\nTwelve year since, Miranda, twelve year since,\nThy father was the Duke of Milan and\nA prince of power.\n\nMIRANDA:\nSir, are not you my father?\n\nPROSPERO:\nThy mother was a piece of virtue, and\nShe said thou wast my daughter; and thy father\nWas Duke of Milan; and thou his only heir\nAnd princess no worse issued.\n\nMIRANDA:\nO the heavens!\nWhat foul play had we, that we came from thence?\nOr blessed was't we did?\n\nPROSPERO:\nBoth, both, my girl:\nBy foul play, as thou say'st, were we heaved thence,\nBut blessedly holp hither.\n\nMIRANDA:\nO, my heart bleeds\nTo think o' the teen that I have turn'd you to,\nWhich is from my remembrance! Please you, farther.\n\nPROSPERO:\nMy brother and thy uncle, call'd Antonio--\nI pray thee, mark me--that a brother should\nBe so perfidious!--he whom next thyself\nOf all the world I loved and to him put\nThe manage of my state; as at that time\nThrough all the signories it was the first\nAnd Prospero the prime duke, being so reputed\nIn dignity, and for the liberal arts\nWithout a parallel; those being all my study,\nThe government I cast upon my brother\nAnd to my state grew stranger, being transported\nAnd rapt in secret studies. Thy false uncle--\nDost thou attend me?\n\nMIRANDA:\nSir, most heedfully.\n\nPROSPERO:\nBeing once perfected how to grant suits,\nHow to deny them, who to advance and who\nTo trash for over-topping, new created\nThe creatures that were mine, I say, or changed 'em,\nOr else new form'd 'em; having both the key\nOf officer and office, set all hearts i' the state\nTo what tune pleased his ear; that now he was\nThe ivy which had hid my princely trunk,\nAnd suck'd my verdure out on't. Thou attend'st not.\n\nMIRANDA:\nO, good sir, I do.\n\nPROSPERO:\nI pray thee, mark me.\nI, thus neglecting worldly ends, all dedicated\nTo closeness and the bettering of my mind\nWith that which, but by being so retired,\nO'er-prized all popular rate, in my false brother\nAwaked an evil nature; and my trust,\nLike a good parent, did beget of him\nA falsehood in its contrary as great\nAs my trust was; which had indeed no limit,\nA confidence sans bound. He being thus lorded,\nNot only with what my revenue yielded,\nBut what my power might else exact, like one\nWho having into truth, by telling of it,\nMade such a sinner of his memory,\nTo credit his own lie, he did believe\nHe was indeed the duke; out o' the substitution\nAnd executing the outward face of royalty,\nWith all prerogative: hence his ambition growing--\nDost thou hear?\n\nMIRANDA:\nYour tale, sir, would cure deafness.\n\nPROSPERO:\nTo have no screen between this part he play'd\nAnd him he play'd it for, he needs will be\nAbsolute Milan. Me, poor man, my library\nWas dukedom large enough: of temporal royalties\nHe thinks me now incapable; confederates--\nSo dry he was for sway--wi' the King of Naples\nTo give him annual tribute, do him homage,\nSubject his coronet to his crown and bend\nThe dukedom yet unbow'd--alas, poor Milan!--\nTo most ignoble stooping.\n\nMIRANDA:\nO the heavens!\n\nPROSPERO:\nMark his condition and the event; then tell me\nIf this might be a brother.\n\nMIRANDA:\nI should sin\nTo think but nobly of my grandmother:\nGood wombs have borne bad sons.\n\nPROSPERO:\nNow the condition.\nThe King of Naples, being an enemy\nTo me inveterate, hearkens my brother's suit;\nWhich was, that he, in lieu o' the premises\nOf homage and I know not how much tribute,\nShould presently extirpate me and mine\nOut of the dukedom and confer fair Milan\nWith all the honours on my brother: whereon,\nA treacherous army levied, one midnight\nFated to the purpose did Antonio open\nThe gates of Milan, and, i' the dead of darkness,\nThe ministers for the purpose hurried thence\nMe and thy crying self.\n\nMIRANDA:\nAlack, for pity!\nI, not remembering how I cried out then,\nWill cry it o'er again: it is a hint\nThat wrings mine eyes to't.\n\nPROSPERO:\nHear a little further\nAnd then I'll bring thee to the present business\nWhich now's upon's; without the which this story\nWere most impertinent.\n\nMIRANDA:\nWherefore did they not\nThat hour destroy us?\n\nPROSPERO:\nWell demanded, wench:\nMy tale provokes that question. Dear, they durst not,\nSo dear the love my people bore me, nor set\nA mark so bloody on the business, but\nWith colours fairer painted their foul ends.\nIn few, they hurried us aboard a bark,\nBore us some leagues to sea; where they prepared\nA rotten carcass of a boat, not rigg'd,\nNor tackle, sail, nor mast; the very rats\nInstinctively had quit it: there they hoist us,\nTo cry to the sea that roar'd to us, to sigh\nTo the winds whose pity, sighing back again,\nDid us but loving wrong.\n\nMIRANDA:\nAlack, what trouble\nWas I then to you!\n\nPROSPERO:\nO, a cherubim\nThou wast that did preserve me. Thou didst smile.\nInfused with a fortitude from heaven,\nWhen I have deck'd the sea with drops full salt,\nUnder my burthen groan'd; which raised in me\nAn undergoing stomach, to bear up\nAgainst what should ensue.\n\nMIRANDA:\nHow came we ashore?\n\nPROSPERO:\nBy Providence divine.\nSome food we had and some fresh water that\nA noble Neapolitan, Gonzalo,\nOut of his charity, being then appointed\nMaster of this design, did give us, with\nRich garments, linens, stuffs and necessaries,\nWhich since have steaded much; so, of his gentleness,\nKnowing I loved my books, he furnish'd me\nFrom mine own library with volumes that\nI prize above my dukedom.\n\nMIRANDA:\nWould I might\nBut ever see that man!\n\nPROSPERO:\nNow I arise:\nSit still, and hear the last of our sea-sorrow.\nHere in this island we arrived; and here\nHave I, thy schoolmaster, made thee more profit\nThan other princesses can that have more time\nFor vainer hours and tutors not so careful.\n\nMIRANDA:\nHeavens thank you for't! And now, I pray you, sir,\nFor still 'tis beating in my mind, your reason\nFor raising this sea-storm?\n\nPROSPERO:\nKnow thus far forth.\nBy accident most strange, bountiful Fortune,\nNow my dear lady, hath mine enemies\nBrought to this shore; and by my prescience\nI find my zenith doth depend upon\nA most auspicious star, whose influence\nIf now I court not but omit, my fortunes\nWill ever after droop. Here cease more questions:\nThou art inclined to sleep; 'tis a good dulness,\nAnd give it way: I know thou canst not choose.\nCome away, servant, come. I am ready now.\nApproach, my Ariel, come.\n\nARIEL:\nAll hail, great master! grave sir, hail! I come\nTo answer thy best pleasure; be't to fly,\nTo swim, to dive into the fire, to ride\nOn the curl'd clouds, to thy strong bidding task\nAriel and all his quality.\n\nPROSPERO:\nHast thou, spirit,\nPerform'd to point the tempest that I bade thee?\n\nARIEL:\nTo every article.\nI boarded the king's ship; now on the beak,\nNow in the waist, the deck, in every cabin,\nI flamed amazement: sometime I'ld divide,\nAnd burn in many places; on the topmast,\nThe yards and bowsprit, would I flame distinctly,\nThen meet and join. Jove's lightnings, the precursors\nO' the dreadful thunder-claps, more momentary\nAnd sight-outrunning were not; the fire and cracks\nOf sulphurous roaring the most mighty Neptune\nSeem to besiege and make his bold waves tremble,\nYea, his dread trident shake.\n\nPROSPERO:\nMy brave spirit!\nWho was so firm, so constant, that this coil\nWould not infect his reason?\n\nARIEL:\nNot a soul\nBut felt a fever of the mad and play'd\nSome tricks of desperation. All but mariners\nPlunged in the foaming brine and quit the vessel,\nThen all afire with me: the king's son, Ferdinand,\nWith hair up-staring,--then like reeds, not hair,--\nWas the first man that leap'd; cried, 'Hell is empty\nAnd all the devils are here.'\n\nPROSPERO:\nWhy that's my spirit!\nBut was not this nigh shore?\n\nARIEL:\nClose by, my master.\n\nPROSPERO:\nBut are they, Ariel, safe?\n\nARIEL:\nNot a hair perish'd;\nOn their sustaining garments not a blemish,\nBut fresher than before: and, as thou badest me,\nIn troops I have dispersed them 'bout the isle.\nThe king's son have I landed by himself;\nWhom I left cooling of the air with sighs\nIn an odd angle of the isle and sitting,\nHis arms in this sad knot.\n\nPROSPERO:\nOf the king's ship\nThe mariners say how thou hast disposed\nAnd all the rest o' the fleet.\n\nARIEL:\nSafely in harbour\nIs the king's ship; in the deep nook, where once\nThou call'dst me up at midnight to fetch dew\nFrom the still-vex'd Bermoothes, there she's hid:\nThe mariners all under hatches stow'd;\nWho, with a charm join'd to their suffer'd labour,\nI have left asleep; and for the rest o' the fleet\nWhich I dispersed, they all have met again\nAnd are upon the Mediterranean flote,\nBound sadly home for Naples,\nSupposing that they saw the king's ship wreck'd\nAnd his great person perish.\n\nPROSPERO:\nAriel, thy charge\nExactly is perform'd: but there's more work.\nWhat is the time o' the day?\n\nARIEL:\nPast the mid season.\n\nPROSPERO:\nAt least two glasses. The time 'twixt six and now\nMust by us both be spent most preciously.\n\nARIEL:\nIs there more toil? Since thou dost give me pains,\nLet me remember thee what thou hast promised,\nWhich is not yet perform'd me.\n\nPROSPERO:\nHow now? moody?\nWhat is't thou canst demand?\n\nARIEL:\nMy liberty.\n\nPROSPERO:\nBefore the time be out? no more!\n\nARIEL:\nI prithee,\nRemember I have done thee worthy service;\nTold thee no lies, made thee no mistakings, served\nWithout or grudge or grumblings: thou didst promise\nTo bate me a full year.\n\nPROSPERO:\nDost thou forget\nFrom what a torment I did free thee?\n\nARIEL:\nNo.\n\nPROSPERO:\nThou dost, and think'st it much to tread the ooze\nOf the salt deep,\nTo run upon the sharp wind of the north,\nTo do me business in the veins o' the earth\nWhen it is baked with frost.\n\nARIEL:\nI do not, sir.\n\nPROSPERO:\nThou liest, malignant thing! Hast thou forgot\nThe foul witch Sycorax, who with age and envy\nWas grown into a hoop? hast thou forgot her?\n\nARIEL:\nNo, sir.\n\nPROSPERO:\nThou hast. Where was she born? speak; tell me.\n\nARIEL:\nSir, in Argier.\n\nPROSPERO:\nO, was she so? I must\nOnce in a month recount what thou hast been,\nWhich thou forget'st. This damn'd witch Sycorax,\nFor mischiefs manifold and sorceries terrible\nTo enter human hearing, from Argier,\nThou know'st, was banish'd: for one thing she did\nThey would not take her life. Is not this true?\n\nARIEL:\nAy, sir.\n\nPROSPERO:\nThis blue-eyed hag was hither brought with child\nAnd here was left by the sailors. Thou, my slave,\nAs thou report'st thyself, wast then her servant;\nAnd, for thou wast a spirit too delicate\nTo act her earthy and abhorr'd commands,\nRefusing her grand hests, she did confine thee,\nBy help of her more potent ministers\nAnd in her most unmitigable rage,\nInto a cloven pine; within which rift\nImprison'd thou didst painfully remain\nA dozen years; within which space she died\nAnd left thee there; where thou didst vent thy groans\nAs fast as mill-wheels strike. Then was this island--\nSave for the son that she did litter here,\nA freckled whelp hag-born--not honour'd with\nA human shape.\n\nARIEL:\nYes, Caliban her son.\n\nPROSPERO:\nDull thing, I say so; he, that Caliban\nWhom now I keep in service. Thou best know'st\nWhat torment I did find thee in; thy groans\nDid make wolves howl and penetrate the breasts\nOf ever angry bears: it was a torment\nTo lay upon the damn'd, which Sycorax\nCould not again undo: it was mine art,\nWhen I arrived and heard thee, that made gape\nThe pine and let thee out.\n\nARIEL:\nI thank thee, master.\n\nPROSPERO:\nIf thou more murmur'st, I will rend an oak\nAnd peg thee in his knotty entrails till\nThou hast howl'd away twelve winters.\n\nARIEL:\nPardon, master;\nI will be correspondent to command\nAnd do my spiriting gently.\n\nPROSPERO:\nDo so, and after two days\nI will discharge thee.\n\nARIEL:\nThat's my noble master!\nWhat shall I do? say what; what shall I do?\n\nPROSPERO:\nGo make thyself like a nymph o' the sea: be subject\nTo no sight but thine and mine, invisible\nTo every eyeball else. Go take this shape\nAnd hither come in't: go, hence with diligence!\nAwake, dear heart, awake! thou hast slept well; Awake!\n\nMIRANDA:\nThe strangeness of your story put\nHeaviness in me.\n\nPROSPERO:\nShake it off. Come on;\nWe'll visit Caliban my slave, who never\nYields us kind answer.\n\nMIRANDA:\n'Tis a villain, sir,\nI do not love to look on.\n\nPROSPERO:\nBut, as 'tis,\nWe cannot miss him: he does make our fire,\nFetch in our wood and serves in offices\nThat profit us. What, ho! slave! Caliban!\nThou earth, thou! speak.\n\nCALIBAN:\n\nPROSPERO:\nCome forth, I say! there's other business for thee:\nCome, thou tortoise! when?\nFine apparition! My quaint Ariel,\nHark in thine ear.\n\nARIEL:\nMy lord it shall be done.\n\nPROSPERO:\nThou poisonous slave, got by the devil himself\nUpon thy wicked dam, come forth!\n\nCALIBAN:\nAs wicked dew as e'er my mother brush'd\nWith raven's feather from unwholesome fen\nDrop on you both! a south-west blow on ye\nAnd blister you all o'er!\n\nPROSPERO:\nFor this, be sure, to-night thou shalt have cramps,\nSide-stitches that shall pen thy breath up; urchins\nShall, for that vast of night that they may work,\nAll exercise on thee; thou shalt be pinch'd\nAs thick as honeycomb, each pinch more stinging\nThan bees that made 'em.\n\nCALIBAN:\nI must eat my dinner.\nThis island's mine, by Sycorax my mother,\nWhich thou takest from me. When thou camest first,\nThou strokedst me and madest much of me, wouldst give me\nWater with berries in't, and teach me how\nTo name the bigger light, and how the less,\nThat burn by day and night: and then I loved thee\nAnd show'd thee all the qualities o' the isle,\nThe fresh springs, brine-pits, barren place and fertile:\nCursed be I that did so! All the charms\nOf Sycorax, toads, beetles, bats, light on you!\nFor I am all the subjects that you have,\nWhich first was mine own king: and here you sty me\nIn this hard rock, whiles you do keep from me\nThe rest o' the island.\n\nPROSPERO:\nThou most lying slave,\nWhom stripes may move, not kindness! I have used thee,\nFilth as thou art, with human care, and lodged thee\nIn mine own cell, till thou didst seek to violate\nThe honour of my child.\n\nCALIBAN:\nO ho, O ho! would't had been done!\nThou didst prevent me; I had peopled else\nThis isle with Calibans.\n\nPROSPERO:\nAbhorred slave,\nWhich any print of goodness wilt not take,\nBeing capable of all ill! I pitied thee,\nTook pains to make thee speak, taught thee each hour\nOne thing or other: when thou didst not, savage,\nKnow thine own meaning, but wouldst gabble like\nA thing most brutish, I endow'd thy purposes\nWith words that made them known. But thy vile race,\nThough thou didst learn, had that in't which\ngood natures\nCould not abide to be with; therefore wast thou\nDeservedly confined into this rock,\nWho hadst deserved more than a prison.\n\nCALIBAN:\nYou taught me language; and my profit on't\nIs, I know how to curse. The red plague rid you\nFor learning me your language!\n\nPROSPERO:\nHag-seed, hence!\nFetch us in fuel; and be quick, thou'rt best,\nTo answer other business. Shrug'st thou, malice?\nIf thou neglect'st or dost unwillingly\nWhat I command, I'll rack thee with old cramps,\nFill all thy bones with aches, make thee roar\nThat beasts shall tremble at thy din.\n\nCALIBAN:\nNo, pray thee.\nI must obey: his art is of such power,\nIt would control my dam's god, Setebos,\nand make a vassal of him.\n\nPROSPERO:\nSo, slave; hence!\nCome unto these yellow sands,\nAnd then take hands:\nCourtsied when you have and kiss'd\nThe wild waves whist,\nFoot it featly here and there;\nAnd, sweet sprites, the burthen bear.\nHark, hark!\n\nFERDINAND:\nWhere should this music be? i' the air or the earth?\nIt sounds no more: and sure, it waits upon\nSome god o' the island. Sitting on a bank,\nWeeping again the king my father's wreck,\nThis music crept by me upon the waters,\nAllaying both their fury and my passion\nWith its sweet air: thence I have follow'd it,\nOr it hath drawn me rather. But 'tis gone.\nNo, it begins again.\nFull fathom five thy father lies;\nOf his bones are coral made;\nThose are pearls that were his eyes:\nNothing of him that doth fade\nBut doth suffer a sea-change\nInto something rich and strange.\nSea-nymphs hourly ring his knell\nHark! now I hear them,--Ding-dong, bell.\n\nFERDINAND:\nThe ditty does remember my drown'd father.\nThis is no mortal business, nor no sound\nThat the earth owes. I hear it now above me.\n\nPROSPERO:\nThe fringed curtains of thine eye advance\nAnd say what thou seest yond.\n\nMIRANDA:\nWhat is't? a spirit?\nLord, how it looks about! Believe me, sir,\nIt carries a brave form. But 'tis a spirit.\n\nPROSPERO:\nNo, wench; it eats and sleeps and hath such senses\nAs we have, such. This gallant which thou seest\nWas in the wreck; and, but he's something stain'd\nWith grief that's beauty's canker, thou mightst call him\nA goodly person: he hath lost his fellows\nAnd strays about to find 'em.\n\nMIRANDA:\nI might call him\nA thing divine, for nothing natural\nI ever saw so noble.\n\nPROSPERO:\n\nFERDINAND:\nMost sure, the goddess\nOn whom these airs attend! Vouchsafe my prayer\nMay know if you remain upon this island;\nAnd that you will some good instruction give\nHow I may bear me here: my prime request,\nWhich I do last pronounce, is, O you wonder!\nIf you be maid or no?\n\nMIRANDA:\nNo wonder, sir;\nBut certainly a maid.\n\nFERDINAND:\nMy language! heavens!\nI am the best of them that speak this speech,\nWere I but where 'tis spoken.\n\nPROSPERO:\nHow? the best?\nWhat wert thou, if the King of Naples heard thee?\n\nFERDINAND:\nA single thing, as I am now, that wonders\nTo hear thee speak of Naples. He does hear me;\nAnd that he does I weep: myself am Naples,\nWho with mine eyes, never since at ebb, beheld\nThe king my father wreck'd.\n\nMIRANDA:\nAlack, for mercy!\n\nFERDINAND:\nYes, faith, and all his lords; the Duke of Milan\nAnd his brave son being twain.\n\nPROSPERO:\n\nMIRANDA:\nWhy speaks my father so ungently? This\nIs the third man that e'er I saw, the first\nThat e'er I sigh'd for: pity move my father\nTo be inclined my way!\n\nFERDINAND:\nO, if a virgin,\nAnd your affection not gone forth, I'll make you\nThe queen of Naples.\n\nPROSPERO:\nSoft, sir! one word more.\nThey are both in either's powers; but this swift business\nI must uneasy make, lest too light winning\nMake the prize light.\nOne word more; I charge thee\nThat thou attend me: thou dost here usurp\nThe name thou owest not; and hast put thyself\nUpon this island as a spy, to win it\nFrom me, the lord on't.\n\nFERDINAND:\nNo, as I am a man.\n\nMIRANDA:\nThere's nothing ill can dwell in such a temple:\nIf the ill spirit have so fair a house,\nGood things will strive to dwell with't.\n\nPROSPERO:\nFollow me.\nSpeak not you for him; he's a traitor. Come;\nI'll manacle thy neck and feet together:\nSea-water shalt thou drink; thy food shall be\nThe fresh-brook muscles, wither'd roots and husks\nWherein the acorn cradled. Follow.\n\nFERDINAND:\nNo;\nI will resist such entertainment till\nMine enemy has more power.\n\nMIRANDA:\nO dear father,\nMake not too rash a trial of him, for\nHe's gentle and not fearful.\n\nPROSPERO:\nWhat? I say,\nMy foot my tutor? Put thy sword up, traitor;\nWho makest a show but darest not strike, thy conscience\nIs so possess'd with guilt: come from thy ward,\nFor I can here disarm thee with this stick\nAnd make thy weapon drop.\n\nMIRANDA:\nBeseech you, father.\n\nPROSPERO:\nHence! hang not on my garments.\n\nMIRANDA:\nSir, have pity;\nI'll be his surety.\n\nPROSPERO:\nSilence! one word more\nShall make me chide thee, if not hate thee. What!\nAn advocate for an imposter! hush!\nThou think'st there is no more such shapes as he,\nHaving seen but him and Caliban: foolish wench!\nTo the most of men this is a Caliban\nAnd they to him are angels.\n\nMIRANDA:\nMy affections\nAre then most humble; I have no ambition\nTo see a goodlier man.\n\nPROSPERO:\nCome on; obey:\nThy nerves are in their infancy again\nAnd have no vigour in them.\n\nFERDINAND:\nSo they are;\nMy spirits, as in a dream, are all bound up.\nMy father's loss, the weakness which I feel,\nThe wreck of all my friends, nor this man's threats,\nTo whom I am subdued, are but light to me,\nMight I but through my prison once a day\nBehold this maid: all corners else o' the earth\nLet liberty make use of; space enough\nHave I in such a prison.\n\nPROSPERO:\n\nMIRANDA:\nBe of comfort;\nMy father's of a better nature, sir,\nThan he appears by speech: this is unwonted\nWhich now came from him.\n\nPROSPERO:\nThou shalt be free\nAs mountain winds: but then exactly do\nAll points of my command.\n\nARIEL:\nTo the syllable.\n\nPROSPERO:\nCome, follow. Speak not for him.\n\nGONZALO:\nBeseech you, sir, be merry; you have cause,\nSo have we all, of joy; for our escape\nIs much beyond our loss. Our hint of woe\nIs common; every day some sailor's wife,\nThe masters of some merchant and the merchant\nHave just our theme of woe; but for the miracle,\nI mean our preservation, few in millions\nCan speak like us: then wisely, good sir, weigh\nOur sorrow with our comfort.\n\nALONSO:\nPrithee, peace.\n\nSEBASTIAN:\nHe receives comfort like cold porridge.\n\nANTONIO:\nThe visitor will not give him o'er so.\n\nSEBASTIAN:\nLook he's winding up the watch of his wit;\nby and by it will strike.\n\nGONZALO:\nSir,--\n\nSEBASTIAN:\nOne: tell.\n\nGONZALO:\nWhen every grief is entertain'd that's offer'd,\nComes to the entertainer--\n\nSEBASTIAN:\nA dollar.\n\nGONZALO:\nDolour comes to him, indeed: you\nhave spoken truer than you purposed.\n\nSEBASTIAN:\nYou have taken it wiselier than I meant you should.\n\nGONZALO:\nTherefore, my lord,--\n\nANTONIO:\nFie, what a spendthrift is he of his tongue!\n\nALONSO:\nI prithee, spare.\n\nGONZALO:\nWell, I have done: but yet,--\n\nSEBASTIAN:\nHe will be talking.\n\nANTONIO:\nWhich, of he or Adrian, for a good\nwager, first begins to crow?\n\nSEBASTIAN:\nThe old cock.\n\nANTONIO:\nThe cockerel.\n\nSEBASTIAN:\nDone. The wager?\n\nANTONIO:\nA laughter.\n\nSEBASTIAN:\nA match!\n\nADRIAN:\nThough this island seem to be desert,--\n\nSEBASTIAN:\nHa, ha, ha! So, you're paid.\n\nADRIAN:\nUninhabitable and almost inaccessible,--\n\nSEBASTIAN:\nYet,--\n\nADRIAN:\nYet,--\n\nANTONIO:\nHe could not miss't.\n\nADRIAN:\nIt must needs be of subtle, tender and delicate\ntemperance.\n\nANTONIO:\nTemperance was a delicate wench.\n\nSEBASTIAN:\nAy, and a subtle; as he most learnedly delivered.\n\nADRIAN:\nThe air breathes upon us here most sweetly.\n\nSEBASTIAN:\nAs if it had lungs and rotten ones.\n\nANTONIO:\nOr as 'twere perfumed by a fen.\n\nGONZALO:\nHere is everything advantageous to life.\n\nANTONIO:\nTrue; save means to live.\n\nSEBASTIAN:\nOf that there's none, or little.\n\nGONZALO:\nHow lush and lusty the grass looks! how green!\n\nANTONIO:\nThe ground indeed is tawny.\n\nSEBASTIAN:\nWith an eye of green in't.\n\nANTONIO:\nHe misses not much.\n\nSEBASTIAN:\nNo; he doth but mistake the truth totally.\n\nGONZALO:\nBut the rarity of it is,--which is indeed almost\nbeyond credit,--\n\nSEBASTIAN:\nAs many vouched rarities are.\n\nGONZALO:\nThat our garments, being, as they were, drenched in\nthe sea, hold notwithstanding their freshness and\nglosses, being rather new-dyed than stained with\nsalt water.\n\nANTONIO:\nIf but one of his pockets could speak, would it not\nsay he lies?\n\nSEBASTIAN:\nAy, or very falsely pocket up his report\n\nGONZALO:\nMethinks our garments are now as fresh as when we\nput them on first in Afric, at the marriage of\nthe king's fair daughter Claribel to the King of Tunis.\n\nSEBASTIAN:\n'Twas a sweet marriage, and we prosper well in our return.\n\nADRIAN:\nTunis was never graced before with such a paragon to\ntheir queen.\n\nGONZALO:\nNot since widow Dido's time.\n\nANTONIO:\nWidow! a pox o' that! How came that widow in?\nwidow Dido!\n\nSEBASTIAN:\nWhat if he had said 'widower AEneas' too? Good Lord,\nhow you take it!\n\nADRIAN:\n'Widow Dido' said you? you make me study of that:\nshe was of Carthage, not of Tunis.\n\nGONZALO:\nThis Tunis, sir, was Carthage.\n\nADRIAN:\nCarthage?\n\nGONZALO:\nI assure you, Carthage.\n\nSEBASTIAN:\nHis word is more than the miraculous harp; he hath\nraised the wall and houses too.\n\nANTONIO:\nWhat impossible matter will he make easy next?\n\nSEBASTIAN:\nI think he will carry this island home in his pocket\nand give it his son for an apple.\n\nANTONIO:\nAnd, sowing the kernels of it in the sea, bring\nforth more islands.\n\nGONZALO:\nAy.\n\nANTONIO:\nWhy, in good time.\n\nGONZALO:\nSir, we were talking that our garments seem now\nas fresh as when we were at Tunis at the marriage\nof your daughter, who is now queen.\n\nANTONIO:\nAnd the rarest that e'er came there.\n\nSEBASTIAN:\nBate, I beseech you, widow Dido.\n\nANTONIO:\nO, widow Dido! ay, widow Dido.\n\nGONZALO:\nIs not, sir, my doublet as fresh as the first day I\nwore it? I mean, in a sort.\n\nANTONIO:\nThat sort was well fished for.\n\nGONZALO:\nWhen I wore it at your daughter's marriage?\n\nALONSO:\nYou cram these words into mine ears against\nThe stomach of my sense. Would I had never\nMarried my daughter there! for, coming thence,\nMy son is lost and, in my rate, she too,\nWho is so far from Italy removed\nI ne'er again shall see her. O thou mine heir\nOf Naples and of Milan, what strange fish\nHath made his meal on thee?\n\nFRANCISCO:\nSir, he may live:\nI saw him beat the surges under him,\nAnd ride upon their backs; he trod the water,\nWhose enmity he flung aside, and breasted\nThe surge most swoln that met him; his bold head\n'Bove the contentious waves he kept, and oar'd\nHimself with his good arms in lusty stroke\nTo the shore, that o'er his wave-worn basis bow'd,\nAs stooping to relieve him: I not doubt\nHe came alive to land.\n\nALONSO:\nNo, no, he's gone.\n\nSEBASTIAN:\nSir, you may thank yourself for this great loss,\nThat would not bless our Europe with your daughter,\nBut rather lose her to an African;\nWhere she at least is banish'd from your eye,\nWho hath cause to wet the grief on't.\n\nALONSO:\nPrithee, peace.\n\nSEBASTIAN:\nYou were kneel'd to and importuned otherwise\nBy all of us, and the fair soul herself\nWeigh'd between loathness and obedience, at\nWhich end o' the beam should bow. We have lost your\nson,\nI fear, for ever: Milan and Naples have\nMore widows in them of this business' making\nThan we bring men to comfort them:\nThe fault's your own.\n\nALONSO:\nSo is the dear'st o' the loss.\n\nGONZALO:\nMy lord Sebastian,\nThe truth you speak doth lack some gentleness\nAnd time to speak it in: you rub the sore,\nWhen you should bring the plaster.\n\nSEBASTIAN:\nVery well.\n\nANTONIO:\nAnd most chirurgeonly.\n\nGONZALO:\nIt is foul weather in us all, good sir,\nWhen you are cloudy.\n\nSEBASTIAN:\nFoul weather?\n\nANTONIO:\nVery foul.\n\nGONZALO:\nHad I plantation of this isle, my lord,--\n\nANTONIO:\nHe'ld sow't with nettle-seed.\n\nSEBASTIAN:\nOr docks, or mallows.\n\nGONZALO:\nAnd were the king on't, what would I do?\n\nSEBASTIAN:\n'Scape being drunk for want of wine.\n\nGONZALO:\nI' the commonwealth I would by contraries\nExecute all things; for no kind of traffic\nWould I admit; no name of magistrate;\nLetters should not be known; riches, poverty,\nAnd use of service, none; contract, succession,\nBourn, bound of land, tilth, vineyard, none;\nNo use of metal, corn, or wine, or oil;\nNo occupation; all men idle, all;\nAnd women too, but innocent and pure;\nNo sovereignty;--\n\nSEBASTIAN:\nYet he would be king on't.\n\nANTONIO:\nThe latter end of his commonwealth forgets the\nbeginning.\n\nGONZALO:\nAll things in common nature should produce\nWithout sweat or endeavour: treason, felony,\nSword, pike, knife, gun, or need of any engine,\nWould I not have; but nature should bring forth,\nOf its own kind, all foison, all abundance,\nTo feed my innocent people.\n\nSEBASTIAN:\nNo marrying 'mong his subjects?\n\nANTONIO:\nNone, man; all idle: whores and knaves.\n\nGONZALO:\nI would with such perfection govern, sir,\nTo excel the golden age.\n\nSEBASTIAN:\nGod save his majesty!\n\nANTONIO:\nLong live Gonzalo!\n\nGONZALO:\nAnd,--do you mark me, sir?\n\nALONSO:\nPrithee, no more: thou dost talk nothing to me.\n\nGONZALO:\nI do well believe your highness; and\ndid it to minister occasion to these gentlemen,\nwho are of such sensible and nimble lungs that\nthey always use to laugh at nothing.\n\nANTONIO:\n'Twas you we laughed at.\n\nGONZALO:\nWho in this kind of merry fooling am nothing\nto you: so you may continue and laugh at\nnothing still.\n\nANTONIO:\nWhat a blow was there given!\n\nSEBASTIAN:\nAn it had not fallen flat-long.\n\nGONZALO:\nYou are gentlemen of brave metal; you would lift\nthe moon out of her sphere, if she would continue\nin it five weeks without changing.\n\nSEBASTIAN:\nWe would so, and then go a bat-fowling.\n\nANTONIO:\nNay, good my lord, be not angry.\n\nGONZALO:\nNo, I warrant you; I will not adventure\nmy discretion so weakly. Will you laugh\nme asleep, for I am very heavy?\n\nANTONIO:\nGo sleep, and hear us.\n\nALONSO:\nWhat, all so soon asleep! I wish mine eyes\nWould, with themselves, shut up my thoughts: I find\nThey are inclined to do so.\n\nSEBASTIAN:\nPlease you, sir,\nDo not omit the heavy offer of it:\nIt seldom visits sorrow; when it doth,\nIt is a comforter.\n\nANTONIO:\nWe two, my lord,\nWill guard your person while you take your rest,\nAnd watch your safety.\n\nALONSO:\nThank you. Wondrous heavy.\n\nSEBASTIAN:\nWhat a strange drowsiness possesses them!\n\nANTONIO:\nIt is the quality o' the climate.\n\nSEBASTIAN:\nWhy\nDoth it not then our eyelids sink? I find not\nMyself disposed to sleep.\n\nANTONIO:\nNor I; my spirits are nimble.\nThey fell together all, as by consent;\nThey dropp'd, as by a thunder-stroke. What might,\nWorthy Sebastian? O, what might?--No more:--\nAnd yet me thinks I see it in thy face,\nWhat thou shouldst be: the occasion speaks thee, and\nMy strong imagination sees a crown\nDropping upon thy head.\n\nSEBASTIAN:\nWhat, art thou waking?\n\nANTONIO:\nDo you not hear me speak?\n\nSEBASTIAN:\nI do; and surely\nIt is a sleepy language and thou speak'st\nOut of thy sleep. What is it thou didst say?\nThis is a strange repose, to be asleep\nWith eyes wide open; standing, speaking, moving,\nAnd yet so fast asleep.\n\nANTONIO:\nNoble Sebastian,\nThou let'st thy fortune sleep--die, rather; wink'st\nWhiles thou art waking."
  },
  {
    "path": "ML/Projects/text_generation_babynames/generating_names.py",
    "content": "\"\"\"\nText generation using a character LSTM, specifically we want to\ngenerate new names as inspiration for those having a baby :) \n\nAlthough this is for name generation, the code is general in the\nway that you can just send in any large text file (shakespear text, etc)\nand it will generate it.\n\nProgrammed by Aladdin Persson <aladdin.persson at hotmail dot com>\n*    2020-05-09 Initial coding\n\n\"\"\"\n\nimport torch\nimport torch.nn as nn\nimport string\nimport random\nimport sys\nimport unidecode\n\n# Device configuration\ndevice = torch.device(\"cuda\" if torch.cuda.is_available() else \"cpu\")\n\n# Get characters from string.printable\nall_characters = string.printable\nn_characters = len(all_characters)\n\n# Read large text file (Note can be any text file: not limited to just names)\nfile = unidecode.unidecode(open(\"data/names.txt\").read())\n\n\nclass RNN(nn.Module):\n    def __init__(self, input_size, hidden_size, num_layers, output_size):\n        super(RNN, self).__init__()\n        self.hidden_size = hidden_size\n        self.num_layers = num_layers\n\n        self.embed = nn.Embedding(input_size, hidden_size)\n        self.lstm = nn.LSTM(hidden_size, hidden_size, num_layers, batch_first=True)\n        self.fc = nn.Linear(hidden_size, output_size)\n\n    def forward(self, x, hidden, cell):\n        out = self.embed(x)\n        out, (hidden, cell) = self.lstm(out.unsqueeze(1), (hidden, cell))\n        out = self.fc(out.reshape(out.shape[0], -1))\n        return out, (hidden, cell)\n\n    def init_hidden(self, batch_size):\n        hidden = torch.zeros(self.num_layers, batch_size, self.hidden_size).to(device)\n        cell = torch.zeros(self.num_layers, batch_size, self.hidden_size).to(device)\n        return hidden, cell\n\n\nclass Generator:\n    def __init__(self):\n        self.chunk_len = 250\n        self.num_epochs = 5000\n        self.batch_size = 1\n        self.print_every = 50\n        self.hidden_size = 256\n        self.num_layers = 2\n        self.lr = 0.003\n\n    def char_tensor(self, string):\n        tensor = torch.zeros(len(string)).long()\n        for c in range(len(string)):\n            tensor[c] = all_characters.index(string[c])\n        return tensor\n\n    def get_random_batch(self):\n        start_idx = random.randint(0, len(file) - self.chunk_len)\n        end_idx = start_idx + self.chunk_len + 1\n        text_str = file[start_idx:end_idx]\n        text_input = torch.zeros(self.batch_size, self.chunk_len)\n        text_target = torch.zeros(self.batch_size, self.chunk_len)\n\n        for i in range(self.batch_size):\n            text_input[i, :] = self.char_tensor(text_str[:-1])\n            text_target[i, :] = self.char_tensor(text_str[1:])\n\n        return text_input.long(), text_target.long()\n\n    def generate(self, initial_str=\"A\", predict_len=100, temperature=0.85):\n        hidden, cell = self.rnn.init_hidden(batch_size=self.batch_size)\n        initial_input = self.char_tensor(initial_str)\n        predicted = initial_str\n\n        for p in range(len(initial_str) - 1):\n            _, (hidden, cell) = self.rnn(\n                initial_input[p].view(1).to(device), hidden, cell\n            )\n\n        last_char = initial_input[-1]\n\n        for p in range(predict_len):\n            output, (hidden, cell) = self.rnn(\n                last_char.view(1).to(device), hidden, cell\n            )\n            output_dist = output.data.view(-1).div(temperature).exp()\n            top_char = torch.multinomial(output_dist, 1)[0]\n            predicted_char = all_characters[top_char]\n            predicted += predicted_char\n            last_char = self.char_tensor(predicted_char)\n\n        return predicted\n\n    # input_size, hidden_size, num_layers, output_size\n    def train(self):\n        self.rnn = RNN(\n            n_characters, self.hidden_size, self.num_layers, n_characters\n        ).to(device)\n\n        optimizer = torch.optim.Adam(self.rnn.parameters(), lr=self.lr)\n        criterion = nn.CrossEntropyLoss()\n        writer = SummaryWriter(f\"runs/names0\")  # for tensorboard\n\n        print(\"=> Starting training\")\n\n        for epoch in range(1, self.num_epochs + 1):\n            inp, target = self.get_random_batch()\n            hidden, cell = self.rnn.init_hidden(batch_size=self.batch_size)\n\n            self.rnn.zero_grad()\n            loss = 0\n            inp = inp.to(device)\n            target = target.to(device)\n\n            for c in range(self.chunk_len):\n                output, (hidden, cell) = self.rnn(inp[:, c], hidden, cell)\n                loss += criterion(output, target[:, c])\n\n            loss.backward()\n            optimizer.step()\n            loss = loss.item() / self.chunk_len\n\n            if epoch % self.print_every == 0:\n                print(f\"Loss: {loss}\")\n                print(self.generate())\n\n            writer.add_scalar(\"Training loss\", loss, global_step=epoch)\n\n\ngennames = Generator()\ngennames.train()\n"
  },
  {
    "path": "ML/Pytorch/Basics/Imbalanced_classes/main.py",
    "content": "\"\"\"\nThis code is for dealing with imbalanced datasets in PyTorch. Imbalanced datasets \nare those where the number of samples in one or more classes is significantly lower \nthan the number of samples in the other classes. This can be a problem because it \ncan lead to a model that is biased towards the more common classes, which can result \nin poor performance on the less common classes.\n\nTo deal with imbalanced datasets, this code implements two methods: oversampling and \nclass weighting.\n\nOversampling involves generating additional samples for the underrepresented classes, \nwhile class weighting involves assigning higher weights to the loss of samples in the \nunderrepresented classes, so that the model pays more attention to them.\n\nIn this code, the get_loader function takes a root directory for a dataset and a batch \nsize, and returns a PyTorch data loader. The data loader is used to iterate over the \ndataset in batches. The get_loader function first applies some transformations to the \nimages in the dataset using the transforms module from torchvision. Then it calculates \nthe class weights based on the number of samples in each class. It then creates a \nWeightedRandomSampler object, which is used to randomly select a batch of samples with a \nprobability proportional to their weights. Finally, it creates the data loader using the \ndataset and the weighted random sampler.\n\nThe main function then uses the data loader to iterate over the dataset for 10 epochs, \nand counts the number of samples in each class. Finally, it prints the counts for each class.\n\nProgrammed by Aladdin Persson <aladdin.persson at hotmail dot com>\n* 2020-04-08: Initial coding\n* 2021-03-24: Added more detailed comments also removed part of\n              check_accuracy which would only work specifically on MNIST.\n* 2022-12-19: Updated detailed comments, small code revision, checked code still works with latest PyTorch. \n\"\"\"\n\nimport torch\nimport torchvision.datasets as datasets\nimport os\nfrom torch.utils.data import WeightedRandomSampler, DataLoader\nimport torchvision.transforms as transforms\nimport torch.nn as nn\n\n# Methods for dealing with imbalanced datasets:\n# 1. Oversampling (probably preferable)\n# 2. Class weighting\n\n\ndef get_loader(root_dir, batch_size):\n    my_transforms = transforms.Compose(\n        [\n            transforms.Resize((224, 224)),\n            transforms.ToTensor(),\n        ]\n    )\n\n    dataset = datasets.ImageFolder(root=root_dir, transform=my_transforms)\n    subdirectories = dataset.classes\n    class_weights = []\n\n    # loop through each subdirectory and calculate the class weight\n    # that is 1 / len(files) in that subdirectory\n    for subdir in subdirectories:\n        files = os.listdir(os.path.join(root_dir, subdir))\n        class_weights.append(1 / len(files))\n\n    sample_weights = [0] * len(dataset)\n\n    for idx, (data, label) in enumerate(dataset):\n        class_weight = class_weights[label]\n        sample_weights[idx] = class_weight\n\n    sampler = WeightedRandomSampler(\n        sample_weights, num_samples=len(sample_weights), replacement=True\n    )\n\n    loader = DataLoader(dataset, batch_size=batch_size, sampler=sampler)\n    return loader\n\n\ndef main():\n    loader = get_loader(root_dir=\"dataset\", batch_size=8)\n\n    num_retrievers = 0\n    num_elkhounds = 0\n    for epoch in range(10):\n        for data, labels in loader:\n            num_retrievers += torch.sum(labels == 0)\n            num_elkhounds += torch.sum(labels == 1)\n\n    print(num_retrievers.item())\n    print(num_elkhounds.item())\n\n\nif __name__ == \"__main__\":\n    main()\n"
  },
  {
    "path": "ML/Pytorch/Basics/albumentations_tutorial/classification.py",
    "content": "import cv2\nimport albumentations as A\nimport numpy as np\nfrom utils import plot_examples\nfrom PIL import Image\nfrom tqdm import tqdm\n\nimage = Image.open(\"images/elon.jpeg\")\n\ntransform = A.Compose(\n    [\n        A.Resize(width=1920, height=1080),\n        A.RandomCrop(width=1280, height=720),\n        A.Rotate(limit=40, p=0.9, border_mode=cv2.BORDER_CONSTANT),\n        A.HorizontalFlip(p=0.5),\n        A.VerticalFlip(p=0.1),\n        A.RGBShift(r_shift_limit=25, g_shift_limit=25, b_shift_limit=25, p=0.9),\n        A.OneOf(\n            [\n                A.Blur(blur_limit=3, p=0.5),\n                A.ColorJitter(p=0.5),\n            ],\n            p=1.0,\n        ),\n    ]\n)\n\nimages_list = [image]\nimage = np.array(image)\nfor i in tqdm(range(15)):\n    augmentations = transform(image=image)\n    augmented_img = augmentations[\"image\"]\n    images_list.append(augmented_img)\nplot_examples(images_list)\n"
  },
  {
    "path": "ML/Pytorch/Basics/albumentations_tutorial/detection.py",
    "content": "import cv2\nimport albumentations as A\nimport numpy as np\nfrom utils import plot_examples\nfrom PIL import Image\n\nimage = cv2.imread(\"images/cat.jpg\")\nimage = cv2.cvtColor(image, cv2.COLOR_BGR2RGB)\nbboxes = [[13, 170, 224, 410]]\n\n# Pascal_voc (x_min, y_min, x_max, y_max), YOLO, COCO\n\ntransform = A.Compose(\n    [\n        A.Resize(width=1920, height=1080),\n        A.RandomCrop(width=1280, height=720),\n        A.Rotate(limit=40, p=0.9, border_mode=cv2.BORDER_CONSTANT),\n        A.HorizontalFlip(p=0.5),\n        A.VerticalFlip(p=0.1),\n        A.RGBShift(r_shift_limit=25, g_shift_limit=25, b_shift_limit=25, p=0.9),\n        A.OneOf([\n            A.Blur(blur_limit=3, p=0.5),\n            A.ColorJitter(p=0.5),\n        ], p=1.0),\n    ], bbox_params=A.BboxParams(format=\"pascal_voc\", min_area=2048,\n                                min_visibility=0.3, label_fields=[])\n)\n\nimages_list = [image]\nsaved_bboxes = [bboxes[0]]\nfor i in range(15):\n    augmentations = transform(image=image, bboxes=bboxes)\n    augmented_img = augmentations[\"image\"]\n\n    if len(augmentations[\"bboxes\"]) == 0:\n        continue\n\n    images_list.append(augmented_img)\n    saved_bboxes.append(augmentations[\"bboxes\"][0])\n\nplot_examples(images_list, saved_bboxes)"
  },
  {
    "path": "ML/Pytorch/Basics/albumentations_tutorial/full_pytorch_example.py",
    "content": "import torch\nimport numpy as np\nimport cv2\nfrom PIL import Image\nimport torch.nn as nn\nimport albumentations as A\nfrom albumentations.pytorch import ToTensorV2\nfrom torch.utils.data import Dataset\nimport os\n\n\nclass ImageFolder(Dataset):\n    def __init__(self, root_dir, transform=None):\n        super(ImageFolder, self).__init__()\n        self.data = []\n        self.root_dir = root_dir\n        self.transform = transform\n        self.class_names = os.listdir(root_dir)\n\n        for index, name in enumerate(self.class_names):\n            files = os.listdir(os.path.join(root_dir, name))\n            self.data += list(zip(files, [index] * len(files)))\n\n    def __len__(self):\n        return len(self.data)\n\n    def __getitem__(self, index):\n        img_file, label = self.data[index]\n        root_and_dir = os.path.join(self.root_dir, self.class_names[label])\n        image = np.array(Image.open(os.path.join(root_and_dir, img_file)))\n\n        if self.transform is not None:\n            augmentations = self.transform(image=image)\n            image = augmentations[\"image\"]\n\n        return image, label\n\n\ntransform = A.Compose(\n    [\n        A.Resize(width=1920, height=1080),\n        A.RandomCrop(width=1280, height=720),\n        A.Rotate(limit=40, p=0.9, border_mode=cv2.BORDER_CONSTANT),\n        A.HorizontalFlip(p=0.5),\n        A.VerticalFlip(p=0.1),\n        A.RGBShift(r_shift_limit=25, g_shift_limit=25, b_shift_limit=25, p=0.9),\n        A.OneOf(\n            [\n                A.Blur(blur_limit=3, p=0.5),\n                A.ColorJitter(p=0.5),\n            ],\n            p=1.0,\n        ),\n        A.Normalize(\n            mean=[0, 0, 0],\n            std=[1, 1, 1],\n            max_pixel_value=255,\n        ),\n        ToTensorV2(),\n    ]\n)\n\ndataset = ImageFolder(root_dir=\"cat_dogs\", transform=transform)\n\nfor x, y in dataset:\n    print(x.shape)\n"
  },
  {
    "path": "ML/Pytorch/Basics/albumentations_tutorial/segmentation.py",
    "content": "import cv2\nimport albumentations as A\nimport numpy as np\nfrom utils import plot_examples\nfrom PIL import Image\n\nimage = Image.open(\"images/elon.jpeg\")\nmask = Image.open(\"images/mask.jpeg\")\nmask2 = Image.open(\"images/second_mask.jpeg\")\n\ntransform = A.Compose(\n    [\n        A.Resize(width=1920, height=1080),\n        A.RandomCrop(width=1280, height=720),\n        A.Rotate(limit=40, p=0.9, border_mode=cv2.BORDER_CONSTANT),\n        A.HorizontalFlip(p=0.5),\n        A.VerticalFlip(p=0.1),\n        A.RGBShift(r_shift_limit=25, g_shift_limit=25, b_shift_limit=25, p=0.9),\n        A.OneOf([\n            A.Blur(blur_limit=3, p=0.5),\n            A.ColorJitter(p=0.5),\n        ], p=1.0),\n    ]\n)\n\nimages_list = [image]\nimage = np.array(image)\nmask = np.array(mask) # np.asarray(mask), np.array(mask)\nmask2 = np.array(mask2)\nfor i in range(4):\n    augmentations = transform(image=image, masks=[mask, mask2])\n    augmented_img = augmentations[\"image\"]\n    augmented_masks = augmentations[\"masks\"]\n    images_list.append(augmented_img)\n    images_list.append(augmented_masks[0])\n    images_list.append(augmented_masks[1])\nplot_examples(images_list)\n"
  },
  {
    "path": "ML/Pytorch/Basics/albumentations_tutorial/utils.py",
    "content": "import random\nimport cv2\nfrom matplotlib import pyplot as plt\nimport matplotlib.patches as patches\nimport numpy as np\nimport albumentations as A\n\n\ndef visualize(image):\n    plt.figure(figsize=(10, 10))\n    plt.axis(\"off\")\n    plt.imshow(image)\n    plt.show()\n\n\ndef plot_examples(images, bboxes=None):\n    fig = plt.figure(figsize=(15, 15))\n    columns = 4\n    rows = 5\n\n    for i in range(1, len(images)):\n        if bboxes is not None:\n            img = visualize_bbox(images[i - 1], bboxes[i - 1], class_name=\"Elon\")\n        else:\n            img = images[i - 1]\n        fig.add_subplot(rows, columns, i)\n        plt.imshow(img)\n    plt.show()\n\n\n# From https://albumentations.ai/docs/examples/example_bboxes/\ndef visualize_bbox(img, bbox, class_name, color=(255, 0, 0), thickness=5):\n    \"\"\"Visualizes a single bounding box on the image\"\"\"\n    x_min, y_min, x_max, y_max = map(int, bbox)\n    cv2.rectangle(img, (x_min, y_min), (x_max, y_max), color, thickness)\n    return img\n"
  },
  {
    "path": "ML/Pytorch/Basics/custom_dataset/cats_dogs.csv",
    "content": "Animal,Label\ncat.0.jpg,0\ncat.1.jpg,0\ncat.2.jpg,0\ncat.3.jpg,0\ncat.4.jpg,0\ncat.5.jpg,0\ncat.6.jpg,0\ncat.7.jpg,0\ndog.0.jpg,1\ndog.1.jpg,1\n"
  },
  {
    "path": "ML/Pytorch/Basics/custom_dataset/custom_dataset.py",
    "content": "\"\"\"\nExample of how to create custom dataset in Pytorch. In this case\nwe have images of cats and dogs in a separate folder and a csv\nfile containing the name to the jpg file as well as the target\nlabel (0 for cat, 1 for dog).\n\nProgrammed by Aladdin Persson <aladdin.persson at hotmail dot com>\n*    2020-04-03 Initial coding\n*    2022-12-19 Updated with better comments, improved code using PIL, and checked code still functions as intended.\n\"\"\"\n\n# Imports\nimport torch\nimport torch.nn as nn  # All neural network modules, nn.Linear, nn.Conv2d, BatchNorm, Loss functions\nimport torch.optim as optim  # For all Optimization algorithms, SGD, Adam, etc.\nimport torchvision.transforms as transforms  # Transformations we can perform on our dataset\nimport torchvision\nimport os\nimport pandas as pd\nfrom PIL import Image\nfrom torch.utils.data import (\n    Dataset,\n    DataLoader,\n)  # Gives easier dataset managment and creates mini batches\n\n\nclass CatsAndDogsDataset(Dataset):\n    def __init__(self, csv_file, root_dir, transform=None):\n        self.annotations = pd.read_csv(csv_file)\n        self.root_dir = root_dir\n        self.transform = transform\n\n    def __len__(self):\n        return len(self.annotations)\n\n    def __getitem__(self, index):\n        img_path = os.path.join(self.root_dir, self.annotations.iloc[index, 0])\n        image = Image.open(img_path)\n        y_label = torch.tensor(int(self.annotations.iloc[index, 1]))\n\n        if self.transform:\n            image = self.transform(image)\n\n        return (image, y_label)\n\n\n# Set device\ndevice = torch.device(\"cuda\" if torch.cuda.is_available() else \"cpu\")\n\n# Hyperparameters\nin_channel = 3\nnum_classes = 2\nlearning_rate = 3e-4\nbatch_size = 32\nnum_epochs = 10\n\n# Load Data\ndataset = CatsAndDogsDataset(\n    csv_file=\"cats_dogs.csv\",\n    root_dir=\"cats_dogs_resized\",\n    transform=transforms.ToTensor(),\n)\n\n# Dataset is actually a lot larger ~25k images, just took out 10 pictures\n# to upload to Github. It's enough to understand the structure and scale\n# if you got more images.\ntrain_set, test_set = torch.utils.data.random_split(dataset, [5, 5])\ntrain_loader = DataLoader(dataset=train_set, batch_size=batch_size, shuffle=True)\ntest_loader = DataLoader(dataset=test_set, batch_size=batch_size, shuffle=True)\n\n# Model\nmodel = torchvision.models.googlenet(weights=\"DEFAULT\")\n\n# freeze all layers, change final linear layer with num_classes\nfor param in model.parameters():\n    param.requires_grad = False\n\n# final layer is not frozen\nmodel.fc = nn.Linear(in_features=1024, out_features=num_classes)\nmodel.to(device)\n\n# Loss and optimizer\ncriterion = nn.CrossEntropyLoss()\noptimizer = optim.Adam(model.parameters(), lr=learning_rate, weight_decay=1e-5)\n\n# Train Network\nfor epoch in range(num_epochs):\n    losses = []\n\n    for batch_idx, (data, targets) in enumerate(train_loader):\n        # Get data to cuda if possible\n        data = data.to(device=device)\n        targets = targets.to(device=device)\n\n        # forward\n        scores = model(data)\n        loss = criterion(scores, targets)\n\n        losses.append(loss.item())\n\n        # backward\n        optimizer.zero_grad()\n        loss.backward()\n\n        # gradient descent or adam step\n        optimizer.step()\n\n    print(f\"Cost at epoch {epoch} is {sum(losses)/len(losses)}\")\n\n# Check accuracy on training to see how good our model is\ndef check_accuracy(loader, model):\n    num_correct = 0\n    num_samples = 0\n    model.eval()\n\n    with torch.no_grad():\n        for x, y in loader:\n            x = x.to(device=device)\n            y = y.to(device=device)\n\n            scores = model(x)\n            _, predictions = scores.max(1)\n            num_correct += (predictions == y).sum()\n            num_samples += predictions.size(0)\n\n        print(\n            f\"Got {num_correct} / {num_samples} with accuracy {float(num_correct)/float(num_samples)*100:.2f}\"\n        )\n\n    model.train()\n\n\nprint(\"Checking accuracy on Training Set\")\ncheck_accuracy(train_loader, model)\n\nprint(\"Checking accuracy on Test Set\")\ncheck_accuracy(test_loader, model)\n"
  },
  {
    "path": "ML/Pytorch/Basics/custom_dataset_txt/get_data.sh",
    "content": "#!/bin/sh\n\nwget https://www.kaggle.com/datasets/e1cd22253a9b23b073794872bf565648ddbe4f17e7fa9e74766ad3707141adeb/download?datasetVersionNumber=1\n"
  },
  {
    "path": "ML/Pytorch/Basics/custom_dataset_txt/loader_customtext.py",
    "content": "\"\"\"\nIntroductory tutorial on how to deal with custom text datasets in PyTorch.\nNote that there are better ways to do this when dealing with huge text datasets.\nBut this is a good way of understanding how it works and can be used as a starting \npoint, particularly for smaller/medium datasets.\n\nProgrammed by Aladdin Persson <aladdin.persson at hotmail dot com>\n*    2020-04-09 Initial coding\n*    2022-12-19 Updated comments, minor code revision, and checked code still works with latest PyTorch.\n\"\"\"\n\n\nimport os  # when loading file paths\nimport pandas as pd  # for lookup in annotation file\nimport spacy  # for tokenizer\nimport torch\nfrom torch.nn.utils.rnn import pad_sequence  # pad batch\nfrom torch.utils.data import DataLoader, Dataset\nfrom PIL import Image  # Load img\nimport torchvision.transforms as transforms\n\n\n# We want to convert text -> numerical values\n# 1. We need a Vocabulary mapping each word to a index\n# 2. We need to setup a Pytorch dataset to load the data\n# 3. Setup padding of every batch (all examples should be\n#    of same seq_len and setup dataloader)\n# Note that loading the image is very easy compared to the text!\n\n# Download with: python -m spacy download en_core_web_sm\nspacy_eng = spacy.load(\"en_core_web_sm\")\n\n\nclass Vocabulary:\n    def __init__(self, freq_threshold):\n        self.itos = {0: \"<PAD>\", 1: \"<SOS>\", 2: \"<EOS>\", 3: \"<UNK>\"}\n        self.stoi = {\"<PAD>\": 0, \"<SOS>\": 1, \"<EOS>\": 2, \"<UNK>\": 3}\n        self.freq_threshold = freq_threshold\n\n    def __len__(self):\n        return len(self.itos)\n\n    @staticmethod\n    def tokenizer_eng(text):\n        return [tok.text.lower() for tok in spacy_eng.tokenizer(text)]\n\n    def build_vocabulary(self, sentence_list):\n        frequencies = {}\n        idx = 4\n\n        for sentence in sentence_list:\n            for word in self.tokenizer_eng(sentence):\n                if word not in frequencies:\n                    frequencies[word] = 1\n\n                else:\n                    frequencies[word] += 1\n\n                if frequencies[word] == self.freq_threshold:\n                    self.stoi[word] = idx\n                    self.itos[idx] = word\n                    idx += 1\n\n    def numericalize(self, text):\n        tokenized_text = self.tokenizer_eng(text)\n\n        return [\n            self.stoi[token] if token in self.stoi else self.stoi[\"<UNK>\"]\n            for token in tokenized_text\n        ]\n\n\nclass FlickrDataset(Dataset):\n    def __init__(self, root_dir, captions_file, transform=None, freq_threshold=5):\n        self.root_dir = root_dir\n        self.df = pd.read_csv(captions_file)\n        self.transform = transform\n\n        # Get img, caption columns\n        self.imgs = self.df[\"image\"]\n        self.captions = self.df[\"caption\"]\n\n        # Initialize vocabulary and build vocab\n        self.vocab = Vocabulary(freq_threshold)\n        self.vocab.build_vocabulary(self.captions.tolist())\n\n    def __len__(self):\n        return len(self.df)\n\n    def __getitem__(self, index):\n        caption = self.captions[index]\n        img_id = self.imgs[index]\n        img = Image.open(os.path.join(self.root_dir, img_id)).convert(\"RGB\")\n\n        if self.transform is not None:\n            img = self.transform(img)\n\n        numericalized_caption = [self.vocab.stoi[\"<SOS>\"]]\n        numericalized_caption += self.vocab.numericalize(caption)\n        numericalized_caption.append(self.vocab.stoi[\"<EOS>\"])\n\n        return img, torch.tensor(numericalized_caption)\n\n\nclass MyCollate:\n    def __init__(self, pad_idx):\n        self.pad_idx = pad_idx\n\n    def __call__(self, batch):\n        imgs = [item[0].unsqueeze(0) for item in batch]\n        imgs = torch.cat(imgs, dim=0)\n        targets = [item[1] for item in batch]\n        targets = pad_sequence(targets, batch_first=False, padding_value=self.pad_idx)\n\n        return imgs, targets\n\n\ndef get_loader(\n    root_folder,\n    annotation_file,\n    transform,\n    batch_size=32,\n    num_workers=8,\n    shuffle=True,\n    pin_memory=True,\n):\n    dataset = FlickrDataset(root_folder, annotation_file, transform=transform)\n\n    pad_idx = dataset.vocab.stoi[\"<PAD>\"]\n\n    loader = DataLoader(\n        dataset=dataset,\n        batch_size=batch_size,\n        num_workers=num_workers,\n        shuffle=shuffle,\n        pin_memory=pin_memory,\n        collate_fn=MyCollate(pad_idx=pad_idx),\n    )\n\n    return loader, dataset\n\n\nif __name__ == \"__main__\":\n    transform = transforms.Compose(\n        [\n            transforms.Resize((224, 224)),\n            transforms.ToTensor(),\n        ]\n    )\n\n    loader, dataset = get_loader(\n        \"flickr8k/images/\", \"flickr8k/captions.txt\", transform=transform\n    )\n\n    for idx, (imgs, captions) in enumerate(loader):\n        print(imgs.shape)\n        print(captions.shape)\n"
  },
  {
    "path": "ML/Pytorch/Basics/lightning_simple_CNN.py",
    "content": "\"\"\"\nSimple pytorch lightning example\n\"\"\"\n\n# Imports\nimport torch\nimport torch.nn.functional as F  # Parameterless functions, like (some) activation functions\nimport torchvision.datasets as datasets  # Standard datasets\nimport torchvision.transforms as transforms  # Transformations we can perform on our dataset for augmentation\nfrom torch import optim  # For optimizers like SGD, Adam, etc.\nfrom torch import nn  # All neural network modules\nfrom torch.utils.data import (\n    DataLoader,\n)  # Gives easier dataset managment by creating mini batches etc.\nfrom tqdm import tqdm  # For nice progress bar!\nimport pytorch_lightning as pl\nimport torchmetrics\nfrom pytorch_lightning.callbacks import Callback, EarlyStopping\n\n\nprecision = \"medium\"\ntorch.set_float32_matmul_precision(precision)\ncriterion = nn.CrossEntropyLoss()\n\n\n## use 20% of training data for validation\n# train_set_size = int(len(train_dataset) * 0.8)\n# valid_set_size = len(train_dataset) - train_set_size\n#\n## split the train set into two\n# seed = torch.Generator().manual_seed(42)\n# train_dataset, val_dataset = torch.utils.data.random_split(\n#    train_dataset, [train_set_size, valid_set_size], generator=seed\n# )\n\n\nclass CNNLightning(pl.LightningModule):\n    def __init__(self, lr=3e-4, in_channels=1, num_classes=10):\n        super().__init__()\n        self.lr = lr\n        self.train_acc = torchmetrics.Accuracy(task=\"multiclass\", num_classes=10)\n        self.test_acc = torchmetrics.Accuracy(task=\"multiclass\", num_classes=10)\n        self.conv1 = nn.Conv2d(\n            in_channels=in_channels,\n            out_channels=8,\n            kernel_size=3,\n            stride=1,\n            padding=1,\n        )\n        self.pool = nn.MaxPool2d(kernel_size=2, stride=2)\n        self.conv2 = nn.Conv2d(\n            in_channels=8,\n            out_channels=16,\n            kernel_size=3,\n            stride=1,\n            padding=1,\n        )\n        self.fc1 = nn.Linear(16 * 7 * 7, num_classes)\n        self.lr = lr\n\n    def training_step(self, batch, batch_idx):\n        x, y = batch\n        y_hat = self._common_step(x, batch_idx)\n        loss = criterion(y_hat, y)\n        accuracy = self.train_acc(y_hat, y)\n        self.log(\n            \"train_acc_step\",\n            self.train_acc,\n            on_step=True,\n            on_epoch=False,\n            prog_bar=True,\n        )\n        return loss\n\n    def training_epoch_end(self, outputs):\n        self.train_acc.reset()\n\n    def test_step(self, batch, batch_idx):\n        x, y = batch\n        y_hat = self._common_step(x, batch_idx)\n        loss = F.cross_entropy(y_hat, y)\n        accuracy = self.test_acc(y_hat, y)\n        self.log(\"test_loss\", loss, on_step=True)\n        self.log(\"test_acc\", accuracy, on_step=True)\n\n    def validation_step(self, batch, batch_idx):\n        x, y = batch\n        y_hat = self._common_step(x, batch_idx)\n        loss = F.cross_entropy(y_hat, y)\n        accuracy = self.test_acc(y_hat, y)\n        self.log(\"val_loss\", loss, on_step=True)\n        self.log(\"val_acc\", accuracy, on_step=True)\n\n    def predict_step(self, batch, batch_idx):\n        x, y = batch\n        y_hat = self._common_step(x)\n        return y_hat\n\n    def _common_step(self, x, batch_idx):\n        x = self.pool(F.relu(self.conv1(x)))\n        x = self.pool(F.relu(self.conv2(x)))\n        x = x.reshape(x.shape[0], -1)\n        y_hat = self.fc1(x)\n        return y_hat\n\n    def configure_optimizers(self):\n        optimizer = optim.Adam(self.parameters(), lr=self.lr)\n        return optimizer\n\n\nclass MNISTDataModule(pl.LightningDataModule):\n    def __init__(self, batch_size=512):\n        super().__init__()\n        self.batch_size = batch_size\n\n    def setup(self, stage):\n        mnist_full = train_dataset = datasets.MNIST(\n            root=\"dataset/\", train=True, transform=transforms.ToTensor(), download=True\n        )\n        self.mnist_test = datasets.MNIST(\n            root=\"dataset/\", train=False, transform=transforms.ToTensor(), download=True\n        )\n        self.mnist_train, self.mnist_val = torch.utils.data.random_split(\n            mnist_full, [55000, 5000]\n        )\n\n    def train_dataloader(self):\n        return DataLoader(\n            self.mnist_train,\n            batch_size=self.batch_size,\n            num_workers=6,\n            shuffle=True,\n        )\n\n    def val_dataloader(self):\n        return DataLoader(\n            self.mnist_val, batch_size=self.batch_size, num_workers=2, shuffle=False\n        )\n\n    def test_dataloader(self):\n        return DataLoader(\n            self.mnist_test, batch_size=self.batch_size, num_workers=2, shuffle=False\n        )\n\n\nclass MyPrintingCallback(Callback):\n    def on_train_start(self, trainer, pl_module):\n        print(\"Training is starting\")\n\n    def on_train_end(self, trainer, pl_module):\n        print(\"Training is ending\")\n\n\n# Set device\ndevice = torch.device(\"cuda\" if torch.cuda.is_available() else \"cpu\")\n\n# Load Data\nif __name__ == \"__main__\":\n    # Initialize network\n    model_lightning = CNNLightning()\n\n    trainer = pl.Trainer(\n        #fast_dev_run=True,\n        # overfit_batches=3,\n        max_epochs=5,\n        precision=16,\n        accelerator=\"gpu\",\n        devices=[0,1],\n        callbacks=[EarlyStopping(monitor=\"val_loss\", mode=\"min\")],\n        auto_lr_find=True,\n        enable_model_summary=True,\n        profiler=\"simple\",\n        strategy=\"deepspeed_stage_1\",\n        # accumulate_grad_batches=2,\n        # auto_scale_batch_size=\"binsearch\",\n        # log_every_n_steps=1,\n    )\n\n    dm = MNISTDataModule()\n\n    # trainer tune first to find best batch size and lr\n    trainer.tune(model_lightning, dm)\n\n    trainer.fit(\n        model=model_lightning,\n        datamodule=dm,\n    )\n\n    # test model on test loader from LightningDataModule\n    trainer.test(model=model_lightning, datamodule=dm)\n"
  },
  {
    "path": "ML/Pytorch/Basics/pytorch_bidirectional_lstm.py",
    "content": "\"\"\"\nExample code of a simple bidirectional LSTM on the MNIST dataset.\nNote that using RNNs on image data is not the best idea, but it is a \ngood example to show how to use RNNs that still generalizes to other tasks.\n\nProgrammed by Aladdin Persson <aladdin.persson at hotmail dot com>\n*    2020-05-09 Initial coding\n*    2022-12-16 Updated with more detailed comments, docstrings to functions, and checked code still functions as intended.\n\n\"\"\"\n\n\n# Imports\nimport torch\nimport torch.nn as nn  # All neural network modules, nn.Linear, nn.Conv2d, BatchNorm, Loss functions\nimport torch.optim as optim  # For all Optimization algorithms, SGD, Adam, etc.\nimport torch.nn.functional as F  # All functions that don't have any parameters\nfrom torch.utils.data import (\n    DataLoader,\n)  # Gives easier dataset managment and creates mini batches\nimport torchvision.datasets as datasets  # Has standard datasets we can import in a nice way\nimport torchvision.transforms as transforms  # Transformations we can perform on our dataset\nfrom tqdm import tqdm  # progress bar\n\n# Set device\ndevice = \"cuda\" if torch.cuda.is_available() else \"cpu\"\n\n# Hyperparameters\ninput_size = 28\nsequence_length = 28\nnum_layers = 2\nhidden_size = 256\nnum_classes = 10\nlearning_rate = 3e-4\nbatch_size = 64\nnum_epochs = 2\n\n# Create a bidirectional LSTM\nclass BRNN(nn.Module):\n    def __init__(self, input_size, hidden_size, num_layers, num_classes):\n        super(BRNN, self).__init__()\n        self.hidden_size = hidden_size\n        self.num_layers = num_layers\n        self.lstm = nn.LSTM(\n            input_size, hidden_size, num_layers, batch_first=True, bidirectional=True\n        )\n        self.fc = nn.Linear(hidden_size * 2, num_classes)\n\n    def forward(self, x):\n        h0 = torch.zeros(self.num_layers * 2, x.size(0), self.hidden_size).to(device)\n        c0 = torch.zeros(self.num_layers * 2, x.size(0), self.hidden_size).to(device)\n\n        out, _ = self.lstm(x)\n        out = self.fc(out[:, -1, :])\n\n        return out\n\n\n# Load Data\ntrain_dataset = datasets.MNIST(\n    root=\"dataset/\", train=True, transform=transforms.ToTensor(), download=True\n)\n\ntest_dataset = datasets.MNIST(\n    root=\"dataset/\", train=False, transform=transforms.ToTensor(), download=True\n)\n\ntrain_loader = DataLoader(dataset=train_dataset, batch_size=batch_size, shuffle=True)\ntest_loader = DataLoader(dataset=test_dataset, batch_size=batch_size, shuffle=True)\n\n# Initialize network\nmodel = BRNN(input_size, hidden_size, num_layers, num_classes).to(device)\n\n# Loss and optimizer\ncriterion = nn.CrossEntropyLoss()\noptimizer = optim.Adam(model.parameters(), lr=learning_rate)\n\n# Train Network\nfor epoch in range(num_epochs):\n    for batch_idx, (data, targets) in enumerate(tqdm(train_loader)):\n        # Get data to cuda if possible\n        data = data.to(device=device).squeeze(1)\n        targets = targets.to(device=device)\n\n        # forward\n        scores = model(data)\n        loss = criterion(scores, targets)\n\n        # backward\n        optimizer.zero_grad()\n        loss.backward()\n\n        # gradient descent or adam step\n        optimizer.step()\n\n\n# Check accuracy on training & test to see how good our model\ndef check_accuracy(loader, model):\n    if loader.dataset.train:\n        print(\"Checking accuracy on training data\")\n    else:\n        print(\"Checking accuracy on test data\")\n\n    num_correct = 0\n    num_samples = 0\n    model.eval()\n\n    with torch.no_grad():\n        for x, y in loader:\n            x = x.to(device=device).squeeze(1)\n            y = y.to(device=device)\n\n            scores = model(x)\n            _, predictions = scores.max(1)\n            num_correct += (predictions == y).sum()\n            num_samples += predictions.size(0)\n\n        print(\n            f\"Got {num_correct} / {num_samples} with accuracy  \\\n              {float(num_correct)/float(num_samples)*100:.2f}\"\n        )\n\n    model.train()\n\n\ncheck_accuracy(train_loader, model)\ncheck_accuracy(test_loader, model)\n"
  },
  {
    "path": "ML/Pytorch/Basics/pytorch_init_weights.py",
    "content": "\"\"\"\nExample code of how to initialize weights for a simple CNN network.\nUsually this is not needed as default initialization is usually good,\nbut sometimes it can be useful to initialize weights in a specific way.\nThis way of doing it should generalize to other network types just make \nsure to specify and change the modules you wish to modify.\n\nVideo explanation: https://youtu.be/xWQ-p_o0Uik\nGot any questions leave a comment on youtube :)\n\nProgrammed by Aladdin Persson <aladdin.persson at hotmail dot com>\n*    2020-04-10 Initial coding\n*    2022-12-16 Updated with more detailed comments, and checked code still functions as intended.\n\"\"\"\n\n# Imports\nimport torch.nn as nn  # All neural network modules, nn.Linear, nn.Conv2d, BatchNorm, Loss functions\nimport torch.nn.functional as F  # All functions that don't have any parameters\n\n\nclass CNN(nn.Module):\n    def __init__(self, in_channels, num_classes):\n        super(CNN, self).__init__()\n        self.conv1 = nn.Conv2d(\n            in_channels=in_channels,\n            out_channels=6,\n            kernel_size=3,\n            stride=1,\n            padding=1,\n        )\n        self.pool = nn.MaxPool2d(kernel_size=(2, 2), stride=(2, 2))\n        self.conv2 = nn.Conv2d(\n            in_channels=6,\n            out_channels=16,\n            kernel_size=3,\n            stride=1,\n            padding=1,\n        )\n        self.fc1 = nn.Linear(16 * 7 * 7, num_classes)\n        self.initialize_weights()\n\n    def forward(self, x):\n        x = F.relu(self.conv1(x))\n        x = self.pool(x)\n        x = F.relu(self.conv2(x))\n        x = self.pool(x)\n        x = x.reshape(x.shape[0], -1)\n        x = self.fc1(x)\n\n        return x\n\n    def initialize_weights(self):\n        for m in self.modules():\n            if isinstance(m, nn.Conv2d):\n                nn.init.kaiming_uniform_(m.weight)\n\n                if m.bias is not None:\n                    nn.init.constant_(m.bias, 0)\n\n            elif isinstance(m, nn.BatchNorm2d):\n                nn.init.constant_(m.weight, 1)\n                nn.init.constant_(m.bias, 0)\n\n            elif isinstance(m, nn.Linear):\n                nn.init.kaiming_uniform_(m.weight)\n                nn.init.constant_(m.bias, 0)\n\n\nif __name__ == \"__main__\":\n    model = CNN(in_channels=3, num_classes=10)\n\n    for param in model.parameters():\n        print(param)\n"
  },
  {
    "path": "ML/Pytorch/Basics/pytorch_loadsave.py",
    "content": "\"\"\"\nSmall code example of how to save and load checkpoint of a model.\nThis example doesn't perform any training, so it would be quite useless.\n\nIn practice you would save the model as you train, and then load before \ncontinuining training at another point.\n\nVideo explanation of code & how to save and load model: https://youtu.be/g6kQl_EFn84\nGot any questions leave a comment on youtube :)\n\nCoded by Aladdin Persson <aladdin dot person at hotmail dot com>\n*   2020-04-07 Initial programming\n*   2022-12-16 Updated with more detailed comments, and checked code still functions as intended.\n\n\"\"\"\n\n# Imports\nimport torch\nimport torchvision\nimport torch.nn as nn  # All neural network modules, nn.Linear, nn.Conv2d, BatchNorm, Loss functions\nimport torch.optim as optim  # For all Optimization algorithms, SGD, Adam, etc.\nimport torch.nn.functional as F  # All functions that don't have any parameters\nfrom torch.utils.data import (\n    DataLoader,\n)  # Gives easier dataset managment and creates mini batches\nimport torchvision.datasets as datasets  # Has standard datasets we can import in a nice way\nimport torchvision.transforms as transforms  # Transformations we can perform on our dataset\n\n\ndef save_checkpoint(state, filename=\"my_checkpoint.pth.tar\"):\n    print(\"=> Saving checkpoint\")\n    torch.save(state, filename)\n\n\ndef load_checkpoint(checkpoint, model, optimizer):\n    print(\"=> Loading checkpoint\")\n    model.load_state_dict(checkpoint[\"state_dict\"])\n    optimizer.load_state_dict(checkpoint[\"optimizer\"])\n\n\ndef main():\n    # Initialize network\n    model = torchvision.models.vgg16(\n        weights=None\n    )  # pretrained=False deprecated, use weights instead\n    optimizer = optim.Adam(model.parameters())\n\n    checkpoint = {\"state_dict\": model.state_dict(), \"optimizer\": optimizer.state_dict()}\n    # Try save checkpoint\n    save_checkpoint(checkpoint)\n\n    # Try load checkpoint\n    load_checkpoint(torch.load(\"my_checkpoint.pth.tar\"), model, optimizer)\n\n\nif __name__ == \"__main__\":\n    main()\n"
  },
  {
    "path": "ML/Pytorch/Basics/pytorch_lr_ratescheduler.py",
    "content": "\"\"\"\nExample code of how to use a learning rate scheduler simple, in this\ncase with a (very) small and simple Feedforward Network training on MNIST\ndataset with a learning rate scheduler. In this case ReduceLROnPlateau\nscheduler is used, but can easily be changed to any of the other schedulers\navailable. I think simply reducing LR by 1/10 or so, when loss plateaus is \na good default. \n\nProgrammed by Aladdin Persson <aladdin.persson at hotmail dot com>\n*    2020-04-10 Initial programming\n*    2022-12-19 Updated comments, made sure it works with latest PyTorch\n\n\"\"\"\n\n# Imports\nimport torch\nimport torch.nn as nn  # All neural network modules, nn.Linear, nn.Conv2d, BatchNorm, Loss functions\nimport torch.optim as optim  # For all Optimization algorithms, SGD, Adam, etc.\nfrom torch.utils.data import (\n    DataLoader,\n)  # Gives easier dataset managment and creates mini batches\nimport torchvision.datasets as datasets  # Has standard datasets we can import in a nice way\nimport torchvision.transforms as transforms  # Transformations we can perform on our dataset\n\n# Set device\ndevice = torch.device(\"cuda\" if torch.cuda.is_available() else \"cpu\")\n\n# Hyperparameters\nnum_classes = 10\nlearning_rate = (\n    0.1  # way too high learning rate, but we want to see the scheduler in action\n)\nbatch_size = 128\nnum_epochs = 100\n\n# Define a very simple model\nmodel = nn.Sequential(nn.Linear(784, 50), nn.ReLU(), nn.Linear(50, 10)).to(device)\n\n# Load Data\ntrain_dataset = datasets.MNIST(\n    root=\"dataset/\", train=True, transform=transforms.ToTensor(), download=True\n)\ntrain_loader = DataLoader(dataset=train_dataset, batch_size=batch_size, shuffle=True)\n\n# Loss and optimizer\ncriterion = nn.CrossEntropyLoss()\noptimizer = optim.Adam(model.parameters(), lr=learning_rate)\n\n# Define Scheduler\nscheduler = torch.optim.lr_scheduler.ReduceLROnPlateau(\n    optimizer, factor=0.1, patience=10, verbose=True\n)\n\n# Train Network\nfor epoch in range(1, num_epochs):\n    losses = []\n\n    for batch_idx, (data, targets) in enumerate(train_loader):\n        # Get data to cuda if possible\n        data = data.reshape(data.shape[0], -1)\n        data = data.to(device=device)\n        targets = targets.to(device=device)\n\n        # forward\n        scores = model(data)\n        loss = criterion(scores, targets)\n\n        losses.append(loss.item())\n\n        # backward\n        optimizer.zero_grad()\n        loss.backward()\n        optimizer.step()\n\n    mean_loss = sum(losses) / len(losses)\n    mean_loss = round(mean_loss, 2)  # we should see difference in loss at 2 decimals\n\n    # After each epoch do scheduler.step, note in this scheduler we need to send\n    # in loss for that epoch! This can also be set using validation loss, and also\n    # in the forward loop we can do on our batch but then we might need to modify\n    # the patience parameter\n    scheduler.step(mean_loss)\n    print(f\"Average loss for epoch {epoch} was {mean_loss}\")\n\n# Check accuracy on training & test to see how good our model\ndef check_accuracy(loader, model):\n    num_correct = 0\n    num_samples = 0\n    model.eval()\n\n    with torch.no_grad():\n        for x, y in loader:\n            x = x.to(device=device)\n            x = x.reshape(x.shape[0], -1)\n            y = y.to(device=device)\n\n            scores = model(x)\n            _, predictions = scores.max(1)\n            num_correct += (predictions == y).sum()\n            num_samples += predictions.size(0)\n\n        print(\n            f\"Got {num_correct} / {num_samples} with accuracy {float(num_correct)/float(num_samples)*100:.2f}\"\n        )\n\n    model.train()\n\n\ncheck_accuracy(train_loader, model)\n"
  },
  {
    "path": "ML/Pytorch/Basics/pytorch_mixed_precision_example.py",
    "content": "\"\"\"\nExample code of how to use mixed precision training with PyTorch. In this\ncase with a (very) small and simple CNN training on MNIST dataset. This\nexample is based on the official PyTorch documentation on mixed precision \ntraining.\n\nProgrammed by Aladdin Persson <aladdin.persson at hotmail dot com>\n*    2020-04-10 Initial programming\n*    2022-12-19 Updated comments, made sure it works with latest PyTorch\n\n\"\"\"\n\n# Imports\nimport torch\nimport torch.nn as nn  # All neural network modules, nn.Linear, nn.Conv2d, BatchNorm, Loss functions\nimport torch.optim as optim  # For all Optimization algorithms, SGD, Adam, etc.\nimport torch.nn.functional as F  # All functions that don't have any parameters\nfrom torch.utils.data import (\n    DataLoader,\n)  # Gives easier dataset managment and creates mini batches\nimport torchvision.datasets as datasets  # Has standard datasets we can import in a nice way\nimport torchvision.transforms as transforms  # Transformations we can perform on our dataset\n\n\n# Simple CNN\nclass CNN(nn.Module):\n    def __init__(self, in_channels=1, num_classes=10):\n        super(CNN, self).__init__()\n        self.conv1 = nn.Conv2d(\n            in_channels=1,\n            out_channels=420,\n            kernel_size=(3, 3),\n            stride=(1, 1),\n            padding=(1, 1),\n        )\n        self.pool = nn.MaxPool2d(kernel_size=(2, 2), stride=(2, 2))\n        self.conv2 = nn.Conv2d(\n            in_channels=420,\n            out_channels=1000,\n            kernel_size=(3, 3),\n            stride=(1, 1),\n            padding=(1, 1),\n        )\n        self.fc1 = nn.Linear(1000 * 7 * 7, num_classes)\n\n    def forward(self, x):\n        x = F.relu(self.conv1(x))\n        x = self.pool(x)\n        x = F.relu(self.conv2(x))\n        x = self.pool(x)\n        x = x.reshape(x.shape[0], -1)\n        x = self.fc1(x)\n\n        return x\n\n\n# Set device\ndevice = torch.device(\"cuda\" if torch.cuda.is_available() else \"cpu\")\nassert device == \"cuda\", \"GPU not available\"\n\n# Hyperparameters\nin_channel = 1\nnum_classes = 10\nlearning_rate = 3e-4\nbatch_size = 100\nnum_epochs = 5\n\n# Load Data\ntrain_dataset = datasets.MNIST(\n    root=\"dataset/\", train=True, transform=transforms.ToTensor(), download=True\n)\ntrain_loader = DataLoader(dataset=train_dataset, batch_size=batch_size, shuffle=True)\ntest_dataset = datasets.MNIST(\n    root=\"dataset/\", train=False, transform=transforms.ToTensor(), download=True\n)\ntest_loader = DataLoader(dataset=test_dataset, batch_size=batch_size, shuffle=True)\n\n# Initialize network\nmodel = CNN().to(device)\n\n# Loss and optimizer\ncriterion = nn.CrossEntropyLoss()\noptimizer = optim.Adam(model.parameters(), lr=learning_rate)\n\n# Necessary for FP16\nscaler = torch.cuda.amp.GradScaler()\n\n# Train Network\nfor epoch in range(num_epochs):\n    for batch_idx, (data, targets) in enumerate(train_loader):\n        # Get data to cuda if possible\n        data = data.to(device=device)\n        targets = targets.to(device=device)\n\n        # forward\n        with torch.cuda.amp.autocast():\n            scores = model(data)\n            loss = criterion(scores, targets)\n\n        # backward\n        optimizer.zero_grad()\n        scaler.scale(loss).backward()\n        scaler.step(optimizer)\n        scaler.update()\n\n\n# Check accuracy on training & test to see how good our model\ndef check_accuracy(loader, model):\n    num_correct = 0\n    num_samples = 0\n    model.eval()\n\n    with torch.no_grad():\n        for x, y in loader:\n            x = x.to(device=device)\n            y = y.to(device=device)\n\n            scores = model(x)\n            _, predictions = scores.max(1)\n            num_correct += (predictions == y).sum()\n            num_samples += predictions.size(0)\n\n        print(\n            f\"Got {num_correct} / {num_samples} with accuracy {float(num_correct) / float(num_samples) * 100:.2f}\"\n        )\n\n    model.train()\n\n\ncheck_accuracy(train_loader, model)\ncheck_accuracy(test_loader, model)\n"
  },
  {
    "path": "ML/Pytorch/Basics/pytorch_pretrain_finetune.py",
    "content": "\"\"\"\nShows a small example of how to load a pretrain model (VGG16) from PyTorch,\nand modifies this to train on the CIFAR10 dataset. The same method generalizes\nwell to other datasets, but the modifications to the network may need to be changed.\n\nProgrammed by Aladdin Persson <aladdin.persson at hotmail dot com>\n*    2020-04-08 Initial coding\n*    2022-12-19 Updated comments, minor code changes, made sure it works with latest PyTorch\n\n\"\"\"\n\n# Imports\nimport torch\nimport torchvision\nimport torch.nn as nn  # All neural network modules, nn.Linear, nn.Conv2d, BatchNorm, Loss functions\nimport torch.optim as optim  # For all Optimization algorithms, SGD, Adam, etc.\nimport torch.nn.functional as F  # All functions that don't have any parameters\nfrom torch.utils.data import (\n    DataLoader,\n)  # Gives easier dataset managment and creates mini batches\nimport torchvision.datasets as datasets  # Has standard datasets we can import in a nice way\nimport torchvision.transforms as transforms  # Transformations we can perform on our dataset\nfrom tqdm import tqdm\n\ndevice = torch.device(\"cuda\" if torch.cuda.is_available() else \"cpu\")\n\n# Hyperparameters\nnum_classes = 10\nlearning_rate = 1e-3\nbatch_size = 1024\nnum_epochs = 5\n\n# Load pretrain model & modify it\nmodel = torchvision.models.vgg16(weights=\"DEFAULT\")\n\n# If you want to do finetuning then set requires_grad = False\n# Remove these two lines if you want to train entire model,\n# and only want to load the pretrain weights.\nfor param in model.parameters():\n    param.requires_grad = False\n\nmodel.avgpool = nn.Identity()\nmodel.classifier = nn.Sequential(\n    nn.Linear(512, 100), nn.ReLU(), nn.Linear(100, num_classes)\n)\nmodel.to(device)\n\n\n# Load Data\ntrain_dataset = datasets.CIFAR10(\n    root=\"dataset/\", train=True, transform=transforms.ToTensor(), download=True\n)\ntrain_loader = DataLoader(dataset=train_dataset, batch_size=batch_size, shuffle=True)\n\n# Loss and optimizer\ncriterion = nn.CrossEntropyLoss()\noptimizer = optim.Adam(model.parameters(), lr=learning_rate)\n\n# Train Network\nfor epoch in range(num_epochs):\n    losses = []\n\n    for batch_idx, (data, targets) in enumerate(tqdm(train_loader)):\n        # Get data to cuda if possible\n        data = data.to(device=device)\n        targets = targets.to(device=device)\n\n        # forward\n        scores = model(data)\n        loss = criterion(scores, targets)\n\n        losses.append(loss.item())\n        # backward\n        optimizer.zero_grad()\n        loss.backward()\n\n        # gradient descent or adam step\n        optimizer.step()\n\n    print(f\"Cost at epoch {epoch} is {sum(losses)/len(losses):.5f}\")\n\n# Check accuracy on training & test to see how good our model\n\n\ndef check_accuracy(loader, model):\n    if loader.dataset.train:\n        print(\"Checking accuracy on training data\")\n    else:\n        print(\"Checking accuracy on test data\")\n\n    num_correct = 0\n    num_samples = 0\n    model.eval()\n\n    with torch.no_grad():\n        for x, y in loader:\n            x = x.to(device=device)\n            y = y.to(device=device)\n\n            scores = model(x)\n            _, predictions = scores.max(1)\n            num_correct += (predictions == y).sum()\n            num_samples += predictions.size(0)\n\n        print(\n            f\"Got {num_correct} / {num_samples} with accuracy {float(num_correct)/float(num_samples)*100:.2f}\"\n        )\n\n    model.train()\n\n\ncheck_accuracy(train_loader, model)\n"
  },
  {
    "path": "ML/Pytorch/Basics/pytorch_progress_bar.py",
    "content": "\"\"\"\nExample code of how to set progress bar using tqdm that is very efficient and nicely looking.\n\nProgrammed by Aladdin Persson <aladdin.persson at hotmail dot com>\n*    2020-05-09 Initial coding\n*    2022-12-19 Updated with more detailed comments, and checked code works with latest PyTorch.\n\n\"\"\"\n\nimport torch\nimport torch.nn as nn\nfrom tqdm import tqdm\nfrom torch.utils.data import TensorDataset, DataLoader\n\n# Create a simple toy dataset\nx = torch.randn((1000, 3, 224, 224))\ny = torch.randint(low=0, high=10, size=(1000, 1))\nds = TensorDataset(x, y)\nloader = DataLoader(ds, batch_size=8)\n\n\nmodel = nn.Sequential(\n    nn.Conv2d(in_channels=3, out_channels=10, kernel_size=3, padding=1, stride=1),\n    nn.Flatten(),\n    nn.Linear(10 * 224 * 224, 10),\n)\n\nNUM_EPOCHS = 10\nfor epoch in range(NUM_EPOCHS):\n    loop = tqdm(loader)\n    for idx, (x, y) in enumerate(loop):\n        scores = model(x)\n\n        # here we would compute loss, backward, optimizer step etc.\n        # you know how it goes, but now you have a nice progress bar\n        # with tqdm\n\n        # then at the bottom if you want additional info shown, you can\n        # add it here, for loss and accuracy you would obviously compute\n        # but now we just set them to random values\n        loop.set_description(f\"Epoch [{epoch}/{NUM_EPOCHS}]\")\n        loop.set_postfix(loss=torch.rand(1).item(), acc=torch.rand(1).item())\n\n# There you go. Hope it was useful :)\n"
  },
  {
    "path": "ML/Pytorch/Basics/pytorch_rnn_gru_lstm.py",
    "content": "\"\"\"\nExample code of a simple RNN, GRU, LSTM on the MNIST dataset.\n\nProgrammed by Aladdin Persson <aladdin.persson at hotmail dot com>\n*    2020-05-09 Initial coding\n*    2022-12-16 Updated with more detailed comments, docstrings to functions, and checked code still functions as intended.\n\n\"\"\"\n\n# Imports\nimport torch\nimport torch.nn.functional as F  # Parameterless functions, like (some) activation functions\nimport torchvision.datasets as datasets  # Standard datasets\nimport torchvision.transforms as transforms  # Transformations we can perform on our dataset for augmentation\nfrom torch import optim  # For optimizers like SGD, Adam, etc.\nfrom torch import nn  # All neural network modules\nfrom torch.utils.data import (\n    DataLoader,\n)  # Gives easier dataset managment by creating mini batches etc.\nfrom tqdm import tqdm  # For a nice progress bar!\n\n# Set device\ndevice = \"cuda\" if torch.cuda.is_available() else \"cpu\"\n\n# Hyperparameters\ninput_size = 28\nhidden_size = 256\nnum_layers = 2\nnum_classes = 10\nsequence_length = 28\nlearning_rate = 0.005\nbatch_size = 64\nnum_epochs = 3\n\n# Recurrent neural network (many-to-one)\nclass RNN(nn.Module):\n    def __init__(self, input_size, hidden_size, num_layers, num_classes):\n        super(RNN, self).__init__()\n        self.hidden_size = hidden_size\n        self.num_layers = num_layers\n        self.rnn = nn.RNN(input_size, hidden_size, num_layers, batch_first=True)\n        self.fc = nn.Linear(hidden_size * sequence_length, num_classes)\n\n    def forward(self, x):\n        # Set initial hidden and cell states\n        h0 = torch.zeros(self.num_layers, x.size(0), self.hidden_size).to(device)\n\n        # Forward propagate LSTM\n        out, _ = self.rnn(x, h0)\n        out = out.reshape(out.shape[0], -1)\n\n        # Decode the hidden state of the last time step\n        out = self.fc(out)\n        return out\n\n\n# Recurrent neural network with GRU (many-to-one)\nclass RNN_GRU(nn.Module):\n    def __init__(self, input_size, hidden_size, num_layers, num_classes):\n        super(RNN_GRU, self).__init__()\n        self.hidden_size = hidden_size\n        self.num_layers = num_layers\n        self.gru = nn.GRU(input_size, hidden_size, num_layers, batch_first=True)\n        self.fc = nn.Linear(hidden_size * sequence_length, num_classes)\n\n    def forward(self, x):\n        # Set initial hidden and cell states\n        h0 = torch.zeros(self.num_layers, x.size(0), self.hidden_size).to(device)\n\n        # Forward propagate LSTM\n        out, _ = self.gru(x, h0)\n        out = out.reshape(out.shape[0], -1)\n\n        # Decode the hidden state of the last time step\n        out = self.fc(out)\n        return out\n\n\n# Recurrent neural network with LSTM (many-to-one)\nclass RNN_LSTM(nn.Module):\n    def __init__(self, input_size, hidden_size, num_layers, num_classes):\n        super(RNN_LSTM, self).__init__()\n        self.hidden_size = hidden_size\n        self.num_layers = num_layers\n        self.lstm = nn.LSTM(input_size, hidden_size, num_layers, batch_first=True)\n        self.fc = nn.Linear(hidden_size * sequence_length, num_classes)\n\n    def forward(self, x):\n        # Set initial hidden and cell states\n        h0 = torch.zeros(self.num_layers, x.size(0), self.hidden_size).to(device)\n        c0 = torch.zeros(self.num_layers, x.size(0), self.hidden_size).to(device)\n\n        # Forward propagate LSTM\n        out, _ = self.lstm(\n            x, (h0, c0)\n        )  # out: tensor of shape (batch_size, seq_length, hidden_size)\n        out = out.reshape(out.shape[0], -1)\n\n        # Decode the hidden state of the last time step\n        out = self.fc(out)\n        return out\n\n\n# Load Data\ntrain_dataset = datasets.MNIST(\n    root=\"dataset/\", train=True, transform=transforms.ToTensor(), download=True\n)\ntest_dataset = datasets.MNIST(\n    root=\"dataset/\", train=False, transform=transforms.ToTensor(), download=True\n)\ntrain_loader = DataLoader(dataset=train_dataset, batch_size=batch_size, shuffle=True)\ntest_loader = DataLoader(dataset=test_dataset, batch_size=batch_size, shuffle=True)\n\n# Initialize network (try out just using simple RNN, or GRU, and then compare with LSTM)\nmodel = RNN_LSTM(input_size, hidden_size, num_layers, num_classes).to(device)\n\n# Loss and optimizer\ncriterion = nn.CrossEntropyLoss()\noptimizer = optim.Adam(model.parameters(), lr=learning_rate)\n\n# Train Network\nfor epoch in range(num_epochs):\n    for batch_idx, (data, targets) in enumerate(tqdm(train_loader)):\n        # Get data to cuda if possible\n        data = data.to(device=device).squeeze(1)\n        targets = targets.to(device=device)\n\n        # forward\n        scores = model(data)\n        loss = criterion(scores, targets)\n\n        # backward\n        optimizer.zero_grad()\n        loss.backward()\n\n        # gradient descent update step/adam step\n        optimizer.step()\n\n# Check accuracy on training & test to see how good our model\ndef check_accuracy(loader, model):\n    num_correct = 0\n    num_samples = 0\n\n    # Set model to eval\n    model.eval()\n\n    with torch.no_grad():\n        for x, y in loader:\n            x = x.to(device=device).squeeze(1)\n            y = y.to(device=device)\n\n            scores = model(x)\n            _, predictions = scores.max(1)\n            num_correct += (predictions == y).sum()\n            num_samples += predictions.size(0)\n\n    # Toggle model back to train\n    model.train()\n    return num_correct / num_samples\n\n\nprint(f\"Accuracy on training set: {check_accuracy(train_loader, model)*100:2f}\")\nprint(f\"Accuracy on test set: {check_accuracy(test_loader, model)*100:.2f}\")\n"
  },
  {
    "path": "ML/Pytorch/Basics/pytorch_simple_CNN.py",
    "content": "\"\"\"\nA simple walkthrough of how to code a convolutional neural network (CNN)\nusing the PyTorch library. For demonstration we train it on the very\ncommon MNIST dataset of handwritten digits. In this code we go through\nhow to create the network as well as initialize a loss function, optimizer,\ncheck accuracy and more.\n\nProgrammed by Aladdin Persson\n* 2020-04-08: Initial coding\n* 2021-03-24: More detailed comments and small revision of the code\n* 2022-12-19: Small revision of code, checked that it works with latest PyTorch version\n\n\"\"\"\n\n# Imports\nimport torch\nimport torch.nn.functional as F  # Parameterless functions, like (some) activation functions\nimport torchvision.datasets as datasets  # Standard datasets\nimport torchvision.transforms as transforms  # Transformations we can perform on our dataset for augmentation\nfrom torch import optim  # For optimizers like SGD, Adam, etc.\nfrom torch import nn  # All neural network modules\nfrom torch.utils.data import (\n    DataLoader,\n)  # Gives easier dataset managment by creating mini batches etc.\nfrom tqdm import tqdm  # For nice progress bar!\n\n# Simple CNN\nclass CNN(nn.Module):\n    def __init__(self, in_channels=1, num_classes=10):\n        super(CNN, self).__init__()\n        self.conv1 = nn.Conv2d(\n            in_channels=in_channels,\n            out_channels=8,\n            kernel_size=3,\n            stride=1,\n            padding=1,\n        )\n        self.pool = nn.MaxPool2d(kernel_size=2, stride=2)\n        self.conv2 = nn.Conv2d(\n            in_channels=8,\n            out_channels=16,\n            kernel_size=3,\n            stride=1,\n            padding=1,\n        )\n        self.fc1 = nn.Linear(16 * 7 * 7, num_classes)\n\n    def forward(self, x):\n        x = F.relu(self.conv1(x))\n        x = self.pool(x)\n        x = F.relu(self.conv2(x))\n        x = self.pool(x)\n        x = x.reshape(x.shape[0], -1)\n        x = self.fc1(x)\n        return x\n\n\n# Set device\ndevice = torch.device(\"cuda\" if torch.cuda.is_available() else \"cpu\")\n\n# Hyperparameters\nin_channels = 1\nnum_classes = 10\nlearning_rate = 3e-4 # karpathy's constant\nbatch_size = 64\nnum_epochs = 3\n\n# Load Data\ntrain_dataset = datasets.MNIST(\n    root=\"dataset/\", train=True, transform=transforms.ToTensor(), download=True\n)\ntest_dataset = datasets.MNIST(\n    root=\"dataset/\", train=False, transform=transforms.ToTensor(), download=True\n)\ntrain_loader = DataLoader(dataset=train_dataset, batch_size=batch_size, shuffle=True)\ntest_loader = DataLoader(dataset=test_dataset, batch_size=batch_size, shuffle=True)\n\n# Initialize network\nmodel = CNN(in_channels=in_channels, num_classes=num_classes).to(device)\n\n# Loss and optimizer\ncriterion = nn.CrossEntropyLoss()\noptimizer = optim.Adam(model.parameters(), lr=learning_rate)\n\n# Train Network\nfor epoch in range(num_epochs):\n    for batch_idx, (data, targets) in enumerate(tqdm(train_loader)):\n        # Get data to cuda if possible\n        data = data.to(device=device)\n        targets = targets.to(device=device)\n\n        # forward\n        scores = model(data)\n        loss = criterion(scores, targets)\n\n        # backward\n        optimizer.zero_grad()\n        loss.backward()\n\n        # gradient descent or adam step\n        optimizer.step()\n\n# Check accuracy on training & test to see how good our model\ndef check_accuracy(loader, model):\n    num_correct = 0\n    num_samples = 0\n    model.eval()\n\n    with torch.no_grad():\n        for x, y in loader:\n            x = x.to(device=device)\n            y = y.to(device=device)\n\n            scores = model(x)\n            _, predictions = scores.max(1)\n            num_correct += (predictions == y).sum()\n            num_samples += predictions.size(0)\n\n    model.train()\n    return num_correct / num_samples\n\n\nprint(f\"Accuracy on training set: {check_accuracy(train_loader, model)*100:.2f}\")\nprint(f\"Accuracy on test set: {check_accuracy(test_loader, model)*100:.2f}\")\n"
  },
  {
    "path": "ML/Pytorch/Basics/pytorch_simple_fullynet.py",
    "content": "\"\"\"\nA simple walkthrough of how to code a fully connected neural network\nusing the PyTorch library. For demonstration we train it on the very\ncommon MNIST dataset of handwritten digits. In this code we go through\nhow to create the network as well as initialize a loss function, optimizer,\ncheck accuracy and more.\n\nProgrammed by Aladdin Persson\n* 2020-04-08: Initial coding\n* 2021-03-24: Added more detailed comments also removed part of\n              check_accuracy which would only work specifically on MNIST.\n* 2022-09-23: Updated with more detailed comments, docstrings to functions, and checked code still functions as intended.\n\"\"\"\n\n# Imports\nimport torch\nimport torch.nn.functional as F  # Parameterless functions, like (some) activation functions\nimport torchvision.datasets as datasets  # Standard datasets\nimport torchvision.transforms as transforms  # Transformations we can perform on our dataset for augmentation\nfrom torch import optim  # For optimizers like SGD, Adam, etc.\nfrom torch import nn  # All neural network modules\nfrom torch.utils.data import (\n    DataLoader,\n)  # Gives easier dataset managment by creating mini batches etc.\nfrom tqdm import tqdm  # For nice progress bar!\n\n# Here we create our simple neural network. For more details here we are subclassing and\n# inheriting from nn.Module, this is the most general way to create your networks and\n# allows for more flexibility. I encourage you to also check out nn.Sequential which\n# would be easier to use in this scenario but I wanted to show you something that\n# \"always\" works and is a general approach.\nclass NN(nn.Module):\n    def __init__(self, input_size, num_classes):\n        \"\"\"\n        Here we define the layers of the network. We create two fully connected layers\n\n        Parameters:\n            input_size: the size of the input, in this case 784 (28x28)\n            num_classes: the number of classes we want to predict, in this case 10 (0-9)\n\n        \"\"\"\n        super(NN, self).__init__()\n        # Our first linear layer take input_size, in this case 784 nodes to 50\n        # and our second linear layer takes 50 to the num_classes we have, in\n        # this case 10.\n        self.fc1 = nn.Linear(input_size, 50)\n        self.fc2 = nn.Linear(50, num_classes)\n\n    def forward(self, x):\n        \"\"\"\n        x here is the mnist images and we run it through fc1, fc2 that we created above.\n        we also add a ReLU activation function in between and for that (since it has no parameters)\n        I recommend using nn.functional (F)\n\n        Parameters:\n            x: mnist images\n\n        Returns:\n            out: the output of the network\n        \"\"\"\n\n        x = F.relu(self.fc1(x))\n        x = self.fc2(x)\n        return x\n\n\n# Set device cuda for GPU if it's available otherwise run on the CPU\ndevice = torch.device(\"cuda\" if torch.cuda.is_available() else \"cpu\")\n\n# Hyperparameters\ninput_size = 784\nnum_classes = 10\nlearning_rate = 0.001\nbatch_size = 64\nnum_epochs = 3\n\n# Load Data\ntrain_dataset = datasets.MNIST(\n    root=\"dataset/\", train=True, transform=transforms.ToTensor(), download=True\n)\ntest_dataset = datasets.MNIST(\n    root=\"dataset/\", train=False, transform=transforms.ToTensor(), download=True\n)\ntrain_loader = DataLoader(dataset=train_dataset, batch_size=batch_size, shuffle=True)\ntest_loader = DataLoader(dataset=test_dataset, batch_size=batch_size, shuffle=True)\n\n# Initialize network\nmodel = NN(input_size=input_size, num_classes=num_classes).to(device)\n\n# Loss and optimizer\ncriterion = nn.CrossEntropyLoss()\noptimizer = optim.Adam(model.parameters(), lr=learning_rate)\n\n# Train Network\nfor epoch in range(num_epochs):\n    for batch_idx, (data, targets) in enumerate(tqdm(train_loader)):\n        # Get data to cuda if possible\n        data = data.to(device=device)\n        targets = targets.to(device=device)\n\n        # Get to correct shape\n        data = data.reshape(data.shape[0], -1)\n\n        # Forward\n        scores = model(data)\n        loss = criterion(scores, targets)\n\n        # Backward\n        optimizer.zero_grad()\n        loss.backward()\n\n        # Gradient descent or adam step\n        optimizer.step()\n\n\n# Check accuracy on training & test to see how good our model\ndef check_accuracy(loader, model):\n    \"\"\"\n    Check accuracy of our trained model given a loader and a model\n\n    Parameters:\n        loader: torch.utils.data.DataLoader\n            A loader for the dataset you want to check accuracy on\n        model: nn.Module\n            The model you want to check accuracy on\n\n    Returns:\n        acc: float\n            The accuracy of the model on the dataset given by the loader\n    \"\"\"\n\n    num_correct = 0\n    num_samples = 0\n    model.eval()\n\n    # We don't need to keep track of gradients here so we wrap it in torch.no_grad()\n    with torch.no_grad():\n        # Loop through the data\n        for x, y in loader:\n\n            # Move data to device\n            x = x.to(device=device)\n            y = y.to(device=device)\n\n            # Get to correct shape\n            x = x.reshape(x.shape[0], -1)\n\n            # Forward pass\n            scores = model(x)\n            _, predictions = scores.max(1)\n\n            # Check how many we got correct\n            num_correct += (predictions == y).sum()\n\n            # Keep track of number of samples\n            num_samples += predictions.size(0)\n\n    model.train()\n    return num_correct / num_samples\n\n\n# Check accuracy on training & test to see how good our model\nprint(f\"Accuracy on training set: {check_accuracy(train_loader, model)*100:.2f}\")\nprint(f\"Accuracy on test set: {check_accuracy(test_loader, model)*100:.2f}\")\n"
  },
  {
    "path": "ML/Pytorch/Basics/pytorch_std_mean.py",
    "content": "\"\"\"\nCode for calculating the mean and standard deviation of a dataset.\nThis is useful for normalizing the dataset to obtain mean 0, std 1. \n\nProgrammed by Aladdin Persson <aladdin.persson at hotmail dot com>\n*    2020-05-09 Initial coding\n*    2022-12-16 Updated comments, code revision, and checked code still works with latest PyTorch.\n\n\"\"\"\n\nimport torch\nimport torchvision.transforms as transforms\nfrom torch.utils.data import DataLoader\nimport torchvision.datasets as datasets\nfrom tqdm import tqdm\n\ndevice = torch.device(\"cuda\" if torch.cuda.is_available() else \"cpu\")\ntrain_set = datasets.CIFAR10(\n    root=\"dataset/\", transform=transforms.ToTensor(), download=True\n)\ntrain_loader = DataLoader(dataset=train_set, batch_size=64, shuffle=True)\n\n\ndef get_mean_std(loader):\n    # var[X] = E[X**2] - E[X]**2\n    channels_sum, channels_sqrd_sum, num_batches = 0, 0, 0\n\n    for data, _ in tqdm(loader):\n        channels_sum += torch.mean(data, dim=[0, 2, 3])\n        channels_sqrd_sum += torch.mean(data**2, dim=[0, 2, 3])\n        num_batches += 1\n\n    mean = channels_sum / num_batches\n    std = (channels_sqrd_sum / num_batches - mean**2) ** 0.5\n\n    return mean, std\n\n\nmean, std = get_mean_std(train_loader)\nprint(mean)\nprint(std)\n"
  },
  {
    "path": "ML/Pytorch/Basics/pytorch_tensorbasics.py",
    "content": "\"\"\"\nWalk through of a lot of different useful Tensor Operations, where we\ngo through what I think are four main parts in:\n\n1. Initialization of a Tensor\n2. Tensor Mathematical Operations and Comparison\n3. Tensor Indexing\n4. Tensor Reshaping\n\nBut also other things such as setting the device (GPU/CPU) and converting\nbetween different types (int, float etc) and how to convert a tensor to an\nnumpy array and vice-versa.\n\nProgrammed by Aladdin Persson\n* 2020-06-27: Initial coding\n* 2022-12-19: Small revision of code, checked that it works with latest PyTorch version\n\"\"\"\n\nimport torch\nimport numpy as np\n\n# ================================================================= #\n#                        Initializing Tensor                        #\n# ================================================================= #\n\ndevice = \"cuda\" if torch.cuda.is_available() else \"cpu\"  # Cuda to run on GPU!\n\n# Initializing a Tensor in this case of shape 2x3 (2 rows, 3 columns)\nmy_tensor = torch.tensor(\n    [[1, 2, 3], [4, 5, 6]], dtype=torch.float32, device=device, requires_grad=True\n)\n\n# A few tensor attributes\nprint(\n    f\"Information about tensor: {my_tensor}\"\n)  # Prints data of the tensor, device and grad info\nprint(\n    \"Type of Tensor {my_tensor.dtype}\"\n)  # Prints dtype of the tensor (torch.float32, etc)\nprint(\n    f\"Device Tensor is on {my_tensor.device}\"\n)  # Prints cpu/cuda (followed by gpu number)\nprint(f\"Shape of tensor {my_tensor.shape}\")  # Prints shape, in this case 2x3\nprint(f\"Requires gradient: {my_tensor.requires_grad}\")  # Prints true/false\n\n# Other common initialization methods (there exists a ton more)\nx = torch.empty(size=(3, 3))  # Tensor of shape 3x3 with uninitialized data\nx = torch.zeros((3, 3))  # Tensor of shape 3x3 with values of 0\nx = torch.rand(\n    (3, 3)\n)  # Tensor of shape 3x3 with values from uniform distribution in interval [0,1)\nx = torch.ones((3, 3))  # Tensor of shape 3x3 with values of 1\nx = torch.eye(5, 5)  # Returns Identity Matrix I, (I <-> Eye), matrix of shape 2x3\nx = torch.arange(\n    start=0, end=5, step=1\n)  # Tensor [0, 1, 2, 3, 4], note, can also do: torch.arange(11)\nx = torch.linspace(start=0.1, end=1, steps=10)  # x = [0.1, 0.2, ..., 1]\nx = torch.empty(size=(1, 5)).normal_(\n    mean=0, std=1\n)  # Normally distributed with mean=0, std=1\nx = torch.empty(size=(1, 5)).uniform_(\n    0, 1\n)  # Values from a uniform distribution low=0, high=1\nx = torch.diag(torch.ones(3))  # Diagonal matrix of shape 3x3\n\n# How to make initialized tensors to other types (int, float, double)\n# These will work even if you're on CPU or CUDA!\ntensor = torch.arange(4)  # [0, 1, 2, 3] Initialized as int64 by default\nprint(f\"Converted Boolean: {tensor.bool()}\")  # Converted to Boolean: 1 if nonzero\nprint(f\"Converted int16 {tensor.short()}\")  # Converted to int16\nprint(\n    f\"Converted int64 {tensor.long()}\"\n)  # Converted to int64 (This one is very important, used super often)\nprint(f\"Converted float16 {tensor.half()}\")  # Converted to float16\nprint(\n    f\"Converted float32 {tensor.float()}\"\n)  # Converted to float32 (This one is very important, used super often)\nprint(f\"Converted float64 {tensor.double()}\")  # Converted to float64\n\n# Array to Tensor conversion and vice-versa\nnp_array = np.zeros((5, 5))\ntensor = torch.from_numpy(np_array)\nnp_array_again = (\n    tensor.numpy()\n)  # np_array_again will be same as np_array (perhaps with numerical round offs)\n\n# =============================================================================== #\n#                        Tensor Math & Comparison Operations                      #\n# =============================================================================== #\n\nx = torch.tensor([1, 2, 3])\ny = torch.tensor([9, 8, 7])\n\n# -- Addition --\nz1 = torch.empty(3)\ntorch.add(x, y, out=z1)  # This is one way\nz2 = torch.add(x, y)  # This is another way\nz = x + y  # This is my preferred way, simple and clean.\n\n# -- Subtraction --\nz = x - y  # We can do similarly as the preferred way of addition\n\n# -- Division (A bit clunky) --\nz = torch.true_divide(x, y)  # Will do element wise division if of equal shape\n\n# -- Inplace Operations --\nt = torch.zeros(3)\n\nt.add_(x)  # Whenever we have operation followed by _ it will mutate the tensor in place\nt += x  # Also inplace: t = t + x is not inplace, bit confusing.\n\n# -- Exponentiation (Element wise if vector or matrices) --\nz = x.pow(2)  # z = [1, 4, 9]\nz = x**2  # z = [1, 4, 9]\n\n\n# -- Simple Comparison --\nz = x > 0  # Returns [True, True, True]\nz = x < 0  # Returns [False, False, False]\n\n# -- Matrix Multiplication --\nx1 = torch.rand((2, 5))\nx2 = torch.rand((5, 3))\nx3 = torch.mm(x1, x2)  # Matrix multiplication of x1 and x2, out shape: 2x3\nx3 = x1.mm(x2)  # Similar as line above\n\n# -- Matrix Exponentiation --\nmatrix_exp = torch.rand(5, 5)\nprint(\n    matrix_exp.matrix_power(3)\n)  # is same as matrix_exp (mm) matrix_exp (mm) matrix_exp\n\n# -- Element wise Multiplication --\nz = x * y  # z = [9, 16, 21] = [1*9, 2*8, 3*7]\n\n# -- Dot product --\nz = torch.dot(x, y)  # Dot product, in this case z = 1*9 + 2*8 + 3*7\n\n# -- Batch Matrix Multiplication --\nbatch = 32\nn = 10\nm = 20\np = 30\ntensor1 = torch.rand((batch, n, m))\ntensor2 = torch.rand((batch, m, p))\nout_bmm = torch.bmm(tensor1, tensor2)  # Will be shape: (b x n x p)\n\n# -- Example of broadcasting --\nx1 = torch.rand((5, 5))\nx2 = torch.ones((1, 5))\nz = (\n    x1 - x2\n)  # Shape of z is 5x5: How? The 1x5 vector (x2) is subtracted for each row in the 5x5 (x1)\nz = (\n    x1**x2\n)  # Shape of z is 5x5: How? Broadcasting! Element wise exponentiation for every row\n\n# Other useful tensor operations\nsum_x = torch.sum(\n    x, dim=0\n)  # Sum of x across dim=0 (which is the only dim in our case), sum_x = 6\nvalues, indices = torch.max(x, dim=0)  # Can also do x.max(dim=0)\nvalues, indices = torch.min(x, dim=0)  # Can also do x.min(dim=0)\nabs_x = torch.abs(x)  # Returns x where abs function has been applied to every element\nz = torch.argmax(x, dim=0)  # Gets index of the maximum value\nz = torch.argmin(x, dim=0)  # Gets index of the minimum value\nmean_x = torch.mean(x.float(), dim=0)  # mean requires x to be float\nz = torch.eq(x, y)  # Element wise comparison, in this case z = [False, False, False]\nsorted_y, indices = torch.sort(y, dim=0, descending=False)\n\nz = torch.clamp(x, min=0)\n# All values < 0 set to 0 and values > 0 unchanged (this is exactly ReLU function)\n# If you want to values over max_val to be clamped, do torch.clamp(x, min=min_val, max=max_val)\n\nx = torch.tensor([1, 0, 1, 1, 1], dtype=torch.bool)  # True/False values\nz = torch.any(x)  # will return True, can also do x.any() instead of torch.any(x)\nz = torch.all(\n    x\n)  # will return False (since not all are True), can also do x.all() instead of torch.all()\n\n# ============================================================= #\n#                        Tensor Indexing                        #\n# ============================================================= #\n\nbatch_size = 10\nfeatures = 25\nx = torch.rand((batch_size, features))\n\n# Get first examples features\nprint(x[0].shape)  # shape [25], this is same as doing x[0,:]\n\n# Get the first feature for all examples\nprint(x[:, 0].shape)  # shape [10]\n\n# For example: Want to access third example in the batch and the first ten features\nprint(x[2, 0:10].shape)  # shape: [10]\n\n# For example we can use this to, assign certain elements\nx[0, 0] = 100\n\n# Fancy Indexing\nx = torch.arange(10)\nindices = [2, 5, 8]\nprint(x[indices])  # x[indices] = [2, 5, 8]\n\nx = torch.rand((3, 5))\nrows = torch.tensor([1, 0])\ncols = torch.tensor([4, 0])\nprint(x[rows, cols])  # Gets second row fifth column and first row first column\n\n# More advanced indexing\nx = torch.arange(10)\nprint(x[(x < 2) | (x > 8)])  # will be [0, 1, 9]\nprint(x[x.remainder(2) == 0])  # will be [0, 2, 4, 6, 8]\n\n# Useful operations for indexing\nprint(\n    torch.where(x > 5, x, x * 2)\n)  # gives [0, 2, 4, 6, 8, 10, 6, 7, 8, 9], all values x > 5 yield x, else x*2\nx = torch.tensor([0, 0, 1, 2, 2, 3, 4]).unique()  # x = [0, 1, 2, 3, 4]\nprint(\n    x.ndimension()\n)  # The number of dimensions, in this case 1. if x.shape is 5x5x5 ndim would be 3\nx = torch.arange(10)\nprint(\n    x.numel()\n)  # The number of elements in x (in this case it's trivial because it's just a vector)\n\n# ============================================================= #\n#                        Tensor Reshaping                       #\n# ============================================================= #\n\nx = torch.arange(9)\n\n# Let's say we want to reshape it to be 3x3\nx_3x3 = x.view(3, 3)\n\n# We can also do (view and reshape are very similar)\n# and the differences are in simple terms (I'm no expert at this),\n# is that view acts on contiguous tensors meaning if the\n# tensor is stored contiguously in memory or not, whereas\n# for reshape it doesn't matter because it will copy the\n# tensor to make it contiguously stored, which might come\n# with some performance loss.\nx_3x3 = x.reshape(3, 3)\n\n# If we for example do:\ny = x_3x3.t()\nprint(\n    y.is_contiguous()\n)  # This will return False and if we try to use view now, it won't work!\n# y.view(9) would cause an error, reshape however won't\n\n# This is because in memory it was stored [0, 1, 2, ... 8], whereas now it's [0, 3, 6, 1, 4, 7, 2, 5, 8]\n# The jump is no longer 1 in memory for one element jump (matrices are stored as a contiguous block, and\n# using pointers to construct these matrices). This is a bit complicated and I need to explore this more\n# as well, at least you know it's a problem to be cautious of! A solution is to do the following\nprint(y.contiguous().view(9))  # Calling .contiguous() before view and it works\n\n# Moving on to another operation, let's say we want to add two tensors dimensions togethor\nx1 = torch.rand(2, 5)\nx2 = torch.rand(2, 5)\nprint(torch.cat((x1, x2), dim=0).shape)  # Shape: 4x5\nprint(torch.cat((x1, x2), dim=1).shape)  # Shape 2x10\n\n# Let's say we want to unroll x1 into one long vector with 10 elements, we can do:\nz = x1.view(-1)  # And -1 will unroll everything\n\n# If we instead have an additional dimension and we wish to keep those as is we can do:\nbatch = 64\nx = torch.rand((batch, 2, 5))\nz = x.view(\n    batch, -1\n)  # And z.shape would be 64x10, this is very useful stuff and is used all the time\n\n# Let's say we want to switch x axis so that instead of 64x2x5 we have 64x5x2\n# I.e we want dimension 0 to stay, dimension 1 to become dimension 2, dimension 2 to become dimension 1\n# Basically you tell permute where you want the new dimensions to be, torch.transpose is a special case\n# of permute (why?)\nz = x.permute(0, 2, 1)\n\n# Splits x last dimension into chunks of 2 (since 5 is not integer div by 2) the last dimension\n# will be smaller, so it will split it into two tensors: 64x2x3 and 64x2x2\nz = torch.chunk(x, chunks=2, dim=1)\nprint(z[0].shape)\nprint(z[1].shape)\n\n# Let's say we want to add an additional dimension\nx = torch.arange(\n    10\n)  # Shape is [10], let's say we want to add an additional so we have 1x10\nprint(x.unsqueeze(0).shape)  # 1x10\nprint(x.unsqueeze(1).shape)  # 10x1\n\n# Let's say we have x which is 1x1x10 and we want to remove a dim so we have 1x10\nx = torch.arange(10).unsqueeze(0).unsqueeze(1)\n\n# Perhaps unsurprisingly\nz = x.squeeze(1)  # can also do .squeeze(0) both returns 1x10\n\n# That was some essential Tensor operations, hopefully you found it useful!\n"
  },
  {
    "path": "ML/Pytorch/Basics/pytorch_tensorboard_.py",
    "content": "\"\"\"\nExample code of how to use the TensorBoard in PyTorch.\nThis code uses a lot of different functions from TensorBoard\nand tries to have them all in a compact way, it might not be\nsuper clear exactly what calls does what, for that I recommend\nwatching the YouTube video.\n\nProgrammed by Aladdin Persson <aladdin.persson at hotmail dot com>\n*    2020-04-17 Initial coding\n*    2022-12-19 Small revision of code, checked that it works with latest PyTorch version\n\"\"\"\n\n# Imports\nimport torch\nimport torchvision\nimport torch.nn as nn  # All neural network modules, nn.Linear, nn.Conv2d, BatchNorm, Loss functions\nimport torch.optim as optim  # For all Optimization algorithms, SGD, Adam, etc.\nimport torch.nn.functional as F  # All functions that don't have any parameters\nimport torchvision.datasets as datasets  # Has standard datasets we can import in a nice way\nimport torchvision.transforms as transforms  # Transformations we can perform on our dataset\nfrom torch.utils.data import (\n    DataLoader,\n)  # Gives easier dataset managment and creates mini batches\nfrom torch.utils.tensorboard import SummaryWriter  # to print to tensorboard\n\n# Simple CNN\nclass CNN(nn.Module):\n    def __init__(self, in_channels=1, num_classes=10):\n        super(CNN, self).__init__()\n        self.conv1 = nn.Conv2d(\n            in_channels=in_channels, out_channels=8, kernel_size=3, stride=1, padding=1\n        )\n        self.pool = nn.MaxPool2d(kernel_size=(2, 2), stride=(2, 2))\n        self.conv2 = nn.Conv2d(\n            in_channels=8, out_channels=16, kernel_size=3, stride=1, padding=1\n        )\n        self.fc1 = nn.Linear(16 * 7 * 7, num_classes)\n\n    def forward(self, x):\n        x = F.relu(self.conv1(x))\n        x = self.pool(x)\n        x = F.relu(self.conv2(x))\n        x = self.pool(x)\n        x = x.reshape(x.shape[0], -1)\n        x = self.fc1(x)\n        return x\n\n\n# Set device\ndevice = torch.device(\"cuda\" if torch.cuda.is_available() else \"cpu\")\n\n# Hyperparameters\nin_channels = 1\nnum_classes = 10\nnum_epochs = 3\n\n# Load Data\ntrain_dataset = datasets.MNIST(\n    root=\"dataset/\", train=True, transform=transforms.ToTensor(), download=True\n)\n\n# To do hyperparameter search, include more batch_sizes you want to try\n# and more learning rates!\nbatch_sizes = [32, 256]\nlearning_rates = [1e-2, 1e-3, 1e-4, 1e-5]\nclasses = [\"0\", \"1\", \"2\", \"3\", \"4\", \"5\", \"6\", \"7\", \"8\", \"9\"]\n\nfor batch_size in batch_sizes:\n    for learning_rate in learning_rates:\n        step = 0\n        # Initialize network\n        model = CNN(in_channels=in_channels, num_classes=num_classes)\n        model.to(device)\n        model.train()\n        criterion = nn.CrossEntropyLoss()\n        train_loader = DataLoader(\n            dataset=train_dataset, batch_size=batch_size, shuffle=True\n        )\n        optimizer = optim.Adam(model.parameters(), lr=learning_rate, weight_decay=0.0)\n        writer = SummaryWriter(\n            f\"runs/MNIST/MiniBatchSize {batch_size} LR {learning_rate}\"\n        )\n\n        # Visualize model in TensorBoard\n        images, _ = next(iter(train_loader))\n        writer.add_graph(model, images.to(device))\n        writer.close()\n\n        for epoch in range(num_epochs):\n            losses = []\n            accuracies = []\n\n            for batch_idx, (data, targets) in enumerate(train_loader):\n                # Get data to cuda if possible\n                data = data.to(device=device)\n                targets = targets.to(device=device)\n\n                # forward\n                scores = model(data)\n                loss = criterion(scores, targets)\n                losses.append(loss.item())\n\n                # backward\n                optimizer.zero_grad()\n                loss.backward()\n                optimizer.step()\n\n                # Calculate 'running' training accuracy\n                features = data.reshape(data.shape[0], -1)\n                img_grid = torchvision.utils.make_grid(data)\n                _, predictions = scores.max(1)\n                num_correct = (predictions == targets).sum()\n                running_train_acc = float(num_correct) / float(data.shape[0])\n                accuracies.append(running_train_acc)\n\n                # Plot things to tensorboard\n                class_labels = [classes[label] for label in predictions]\n                writer.add_image(\"mnist_images\", img_grid)\n                writer.add_histogram(\"fc1\", model.fc1.weight)\n                writer.add_scalar(\"Training loss\", loss, global_step=step)\n                writer.add_scalar(\n                    \"Training Accuracy\", running_train_acc, global_step=step\n                )\n\n                if batch_idx == 230:\n                    writer.add_embedding(\n                        features,\n                        metadata=class_labels,\n                        label_img=data,\n                        global_step=batch_idx,\n                    )\n                step += 1\n\n            writer.add_hparams(\n                {\"lr\": learning_rate, \"bsize\": batch_size},\n                {\n                    \"accuracy\": sum(accuracies) / len(accuracies),\n                    \"loss\": sum(losses) / len(losses),\n                },\n            )\n"
  },
  {
    "path": "ML/Pytorch/Basics/pytorch_transforms.py",
    "content": "\"\"\"\nShows a small example of how to use transformations (perhaps unecessarily many)\non CIFAR10 dataset and training on a small CNN toy network.\n\nProgrammed by Aladdin Persson <aladdin.persson at hotmail dot com>\n*    2020-04-09 Initial coding\n*    2022-12-19 Updated comments, minor code revision, and checked code still works with latest PyTorch.\n\"\"\"\n\n# Imports\nimport torch\nimport torch.nn as nn  # All neural network modules, nn.Linear, nn.Conv2d, BatchNorm, Loss functions\nimport torch.optim as optim  # For all Optimization algorithms, SGD, Adam, etc.\nimport torch.nn.functional as F  # All functions that don't have any parameters\nfrom torch.utils.data import (\n    DataLoader,\n)  # Gives easier dataset managment and creates mini batches\nimport torchvision.datasets as datasets  # Has standard datasets we can import in a nice way\nimport torchvision.transforms as transforms  # Transformations we can perform on our dataset\n\n# Simple CNN\nclass CNN(nn.Module):\n    def __init__(self, in_channels, num_classes):\n        super().__init__()\n        self.conv1 = nn.Conv2d(\n            in_channels=in_channels,\n            out_channels=8,\n            kernel_size=3,\n            stride=1,\n            padding=1,\n        )\n        self.pool = nn.MaxPool2d(kernel_size=2, stride=2)\n        self.conv2 = nn.Conv2d(\n            in_channels=8,\n            out_channels=16,\n            kernel_size=3,\n            stride=1,\n            padding=1,\n        )\n        self.fc1 = nn.Linear(16 * 8 * 8, num_classes)\n\n    def forward(self, x):\n        x = F.relu(self.conv1(x))\n        x = self.pool(x)\n        x = F.relu(self.conv2(x))\n        x = self.pool(x)\n        x = x.reshape(x.shape[0], -1)\n        return self.fc1(x)\n\n\n# Set device\ndevice = torch.device(\"cuda\" if torch.cuda.is_available() else \"cpu\")\n\n# Hyperparameters\nlearning_rate = 3e-4  # for future copilot: this is karpathy's constant\nbatch_size = 64\nnum_epochs = 5\n\n# Load pretrain model & modify it\nmodel = CNN(in_channels=3, num_classes=10)\nmodel.classifier = nn.Sequential(nn.Linear(512, 100), nn.ReLU(), nn.Linear(100, 10))\nmodel.to(device)\n\n# Load Data\nmy_transforms = transforms.Compose(\n    [  # Compose makes it possible to have many transforms\n        transforms.Resize((36, 36)),  # Resizes (32,32) to (36,36)\n        transforms.RandomCrop((32, 32)),  # Takes a random (32,32) crop\n        transforms.ColorJitter(brightness=0.5),  # Change brightness of image\n        transforms.RandomRotation(\n            degrees=45\n        ),  # Perhaps a random rotation from -45 to 45 degrees\n        transforms.RandomHorizontalFlip(\n            p=0.5\n        ),  # Flips the image horizontally with probability 0.5\n        transforms.RandomVerticalFlip(\n            p=0.05\n        ),  # Flips image vertically with probability 0.05\n        transforms.RandomGrayscale(p=0.2),  # Converts to grayscale with probability 0.2\n        transforms.ToTensor(),  # Finally converts PIL image to tensor so we can train w. pytorch\n        transforms.Normalize(\n            mean=[0.5, 0.5, 0.5], std=[0.5, 0.5, 0.5]\n        ),  # Note: these values aren't optimal\n    ]\n)\n\ntrain_dataset = datasets.CIFAR10(\n    root=\"dataset/\", train=True, transform=my_transforms, download=True\n)\ntrain_loader = DataLoader(dataset=train_dataset, batch_size=batch_size, shuffle=True)\n\n# Loss and optimizer\ncriterion = nn.CrossEntropyLoss()\noptimizer = optim.Adam(model.parameters(), lr=learning_rate)\n\n# Train Network\nfor epoch in range(num_epochs):\n    losses = []\n\n    for batch_idx, (data, targets) in enumerate(train_loader):\n        # Get data to cuda if possible\n        data = data.to(device=device)\n        targets = targets.to(device=device)\n\n        # forward\n        scores = model(data)\n        loss = criterion(scores, targets)\n\n        losses.append(loss.item())\n        # backward\n        optimizer.zero_grad()\n        loss.backward()\n\n        # gradient descent or adam step\n        optimizer.step()\n\n    print(f\"Loss average over epoch {epoch} is {sum(losses)/len(losses):.3f}\")\n\n# Check accuracy on training & test to see how good our model\ndef check_accuracy(loader, model):\n    if loader.dataset.train:\n        print(\"Checking accuracy on training data\")\n    else:\n        print(\"Checking accuracy on test data\")\n\n    num_correct = 0\n    num_samples = 0\n    model.eval()\n\n    with torch.no_grad():\n        for x, y in loader:\n            x = x.to(device=device)\n            y = y.to(device=device)\n\n            scores = model(x)\n            _, predictions = scores.max(1)\n            num_correct += (predictions == y).sum()\n            num_samples += predictions.size(0)\n\n        print(\n            f\"Got {num_correct} / {num_samples} with accuracy {float(num_correct)/float(num_samples)*100:.2f}\"\n        )\n\n    model.train()\n\n\ncheck_accuracy(train_loader, model)\n"
  },
  {
    "path": "ML/Pytorch/Basics/set_deterministic_behavior/pytorch_set_seeds.py",
    "content": "import random\nimport torch\nimport os\nimport numpy as np\n\n\ndef seed_everything(seed=42):\n    os.environ[\"PYTHONHASHSEED\"] = str(seed)\n    random.seed(seed)\n    np.random.seed(seed)\n    torch.manual_seed(seed)\n    torch.cuda.manual_seed(seed)\n    torch.cuda.manual_seed_all(seed)\n    torch.backends.cudnn.deterministic = True\n    torch.backends.cudnn.benchmark = False\n\n\nseed_everything()\n\n# Do training etc after running seed_everything\n"
  },
  {
    "path": "ML/Pytorch/CNN_architectures/lenet5_pytorch.py",
    "content": "\"\"\"\nAn implementation of LeNet CNN architecture.\n\nProgrammed by Aladdin Persson <aladdin.persson at hotmail dot com>\n*    2020-04-05 Initial coding\n*    2022-12-20 Update comments, code revision, checked still works with latest PyTorch version\n\"\"\"\n\nimport torch\nimport torch.nn as nn  # All neural network modules, nn.Linear, nn.Conv2d, BatchNorm, Loss functions\n\n\nclass LeNet(nn.Module):\n    def __init__(self):\n        super(LeNet, self).__init__()\n        self.relu = nn.ReLU()\n        self.pool = nn.AvgPool2d(kernel_size=2, stride=2)\n        self.conv1 = nn.Conv2d(\n            in_channels=1,\n            out_channels=6,\n            kernel_size=5,\n            stride=1,\n            padding=0,\n        )\n        self.conv2 = nn.Conv2d(\n            in_channels=6,\n            out_channels=16,\n            kernel_size=5,\n            stride=1,\n            padding=0,\n        )\n        self.conv3 = nn.Conv2d(\n            in_channels=16,\n            out_channels=120,\n            kernel_size=5,\n            stride=1,\n            padding=0,\n        )\n        self.linear1 = nn.Linear(120, 84)\n        self.linear2 = nn.Linear(84, 10)\n\n    def forward(self, x):\n        x = self.relu(self.conv1(x))\n        x = self.pool(x)\n        x = self.relu(self.conv2(x))\n        x = self.pool(x)\n        x = self.relu(\n            self.conv3(x)\n        )  # num_examples x 120 x 1 x 1 --> num_examples x 120\n        x = x.reshape(x.shape[0], -1)\n        x = self.relu(self.linear1(x))\n        x = self.linear2(x)\n        return x\n\n\ndef test_lenet():\n    x = torch.randn(64, 1, 32, 32)\n    model = LeNet()\n    return model(x)\n\n\nif __name__ == \"__main__\":\n    out = test_lenet()\n    print(out.shape)"
  },
  {
    "path": "ML/Pytorch/CNN_architectures/pytorch_efficientnet.py",
    "content": "\"\"\"\nAn implementation of EfficientNet CNN architecture.\n\nProgrammed by Aladdin Persson <aladdin.persson at hotmail dot com>\n*    2021-02-05 Initial coding\n*    2022-12-20 Update comments, code revision, checked still works with latest PyTorch version\n\"\"\"\n\n\nimport torch\nimport torch.nn as nn\nfrom math import ceil\n\nbase_model = [\n    # expand_ratio, channels, repeats, stride, kernel_size\n    [1, 16, 1, 1, 3],\n    [6, 24, 2, 2, 3],\n    [6, 40, 2, 2, 5],\n    [6, 80, 3, 2, 3],\n    [6, 112, 3, 1, 5],\n    [6, 192, 4, 2, 5],\n    [6, 320, 1, 1, 3],\n]\n\nphi_values = {\n    # tuple of: (phi_value, resolution, drop_rate)\n    \"b0\": (0, 224, 0.2),  # alpha, beta, gamma, depth = alpha ** phi\n    \"b1\": (0.5, 240, 0.2),\n    \"b2\": (1, 260, 0.3),\n    \"b3\": (2, 300, 0.3),\n    \"b4\": (3, 380, 0.4),\n    \"b5\": (4, 456, 0.4),\n    \"b6\": (5, 528, 0.5),\n    \"b7\": (6, 600, 0.5),\n}\n\n\nclass CNNBlock(nn.Module):\n    def __init__(\n        self, in_channels, out_channels, kernel_size, stride, padding, groups=1\n    ):\n        super(CNNBlock, self).__init__()\n        self.cnn = nn.Conv2d(\n            in_channels,\n            out_channels,\n            kernel_size,\n            stride,\n            padding,\n            groups=groups,\n            bias=False,\n        )\n        self.bn = nn.BatchNorm2d(out_channels)\n        self.silu = nn.SiLU()  # SiLU <-> Swish\n\n    def forward(self, x):\n        return self.silu(self.bn(self.cnn(x)))\n\n\nclass SqueezeExcitation(nn.Module):\n    def __init__(self, in_channels, reduced_dim):\n        super(SqueezeExcitation, self).__init__()\n        self.se = nn.Sequential(\n            nn.AdaptiveAvgPool2d(1),  # C x H x W -> C x 1 x 1\n            nn.Conv2d(in_channels, reduced_dim, 1),\n            nn.SiLU(),\n            nn.Conv2d(reduced_dim, in_channels, 1),\n            nn.Sigmoid(),\n        )\n\n    def forward(self, x):\n        return x * self.se(x)\n\n\nclass InvertedResidualBlock(nn.Module):\n    def __init__(\n        self,\n        in_channels,\n        out_channels,\n        kernel_size,\n        stride,\n        padding,\n        expand_ratio,\n        reduction=4,  # squeeze excitation\n        survival_prob=0.8,  # for stochastic depth\n    ):\n        super(InvertedResidualBlock, self).__init__()\n        self.survival_prob = 0.8\n        self.use_residual = in_channels == out_channels and stride == 1\n        hidden_dim = in_channels * expand_ratio\n        self.expand = in_channels != hidden_dim\n        reduced_dim = int(in_channels / reduction)\n\n        if self.expand:\n            self.expand_conv = CNNBlock(\n                in_channels,\n                hidden_dim,\n                kernel_size=3,\n                stride=1,\n                padding=1,\n            )\n\n        self.conv = nn.Sequential(\n            CNNBlock(\n                hidden_dim,\n                hidden_dim,\n                kernel_size,\n                stride,\n                padding,\n                groups=hidden_dim,\n            ),\n            SqueezeExcitation(hidden_dim, reduced_dim),\n            nn.Conv2d(hidden_dim, out_channels, 1, bias=False),\n            nn.BatchNorm2d(out_channels),\n        )\n\n    def stochastic_depth(self, x):\n        if not self.training:\n            return x\n\n        binary_tensor = (\n            torch.rand(x.shape[0], 1, 1, 1, device=x.device) < self.survival_prob\n        )\n        return torch.div(x, self.survival_prob) * binary_tensor\n\n    def forward(self, inputs):\n        x = self.expand_conv(inputs) if self.expand else inputs\n\n        if self.use_residual:\n            return self.stochastic_depth(self.conv(x)) + inputs\n        else:\n            return self.conv(x)\n\n\nclass EfficientNet(nn.Module):\n    def __init__(self, version, num_classes):\n        super(EfficientNet, self).__init__()\n        width_factor, depth_factor, dropout_rate = self.calculate_factors(version)\n        last_channels = ceil(1280 * width_factor)\n        self.pool = nn.AdaptiveAvgPool2d(1)\n        self.features = self.create_features(width_factor, depth_factor, last_channels)\n        self.classifier = nn.Sequential(\n            nn.Dropout(dropout_rate),\n            nn.Linear(last_channels, num_classes),\n        )\n\n    def calculate_factors(self, version, alpha=1.2, beta=1.1):\n        phi, res, drop_rate = phi_values[version]\n        depth_factor = alpha**phi\n        width_factor = beta**phi\n        return width_factor, depth_factor, drop_rate\n\n    def create_features(self, width_factor, depth_factor, last_channels):\n        channels = int(32 * width_factor)\n        features = [CNNBlock(3, channels, 3, stride=2, padding=1)]\n        in_channels = channels\n\n        for expand_ratio, channels, repeats, stride, kernel_size in base_model:\n            out_channels = 4 * ceil(int(channels * width_factor) / 4)\n            layers_repeats = ceil(repeats * depth_factor)\n\n            for layer in range(layers_repeats):\n                features.append(\n                    InvertedResidualBlock(\n                        in_channels,\n                        out_channels,\n                        expand_ratio=expand_ratio,\n                        stride=stride if layer == 0 else 1,\n                        kernel_size=kernel_size,\n                        padding=kernel_size // 2,  # if k=1:pad=0, k=3:pad=1, k=5:pad=2\n                    )\n                )\n                in_channels = out_channels\n\n        features.append(\n            CNNBlock(in_channels, last_channels, kernel_size=1, stride=1, padding=0)\n        )\n\n        return nn.Sequential(*features)\n\n    def forward(self, x):\n        x = self.pool(self.features(x))\n        return self.classifier(x.view(x.shape[0], -1))\n\n\ndef test():\n    device = \"cuda\" if torch.cuda.is_available() else \"cpu\"\n    version = \"b0\"\n    phi, res, drop_rate = phi_values[version]\n    num_examples, num_classes = 4, 10\n    x = torch.randn((num_examples, 3, res, res)).to(device)\n    model = EfficientNet(\n        version=version,\n        num_classes=num_classes,\n    ).to(device)\n\n    print(model(x).shape)  # (num_examples, num_classes)\n\n\nif __name__ == \"__main__\":\n    test()\n"
  },
  {
    "path": "ML/Pytorch/CNN_architectures/pytorch_inceptionet.py",
    "content": "\"\"\"\nAn implementation of GoogLeNet / InceptionNet from scratch.\n\nProgrammed by Aladdin Persson <aladdin.persson at hotmail dot com>\n*    2020-04-07 Initial coding\n*    2022-12-20 Update comments, code revision, checked still works with latest PyTorch version\n\"\"\"\n\nimport torch\nfrom torch import nn\n\n\nclass GoogLeNet(nn.Module):\n    def __init__(self, aux_logits=True, num_classes=1000):\n        super(GoogLeNet, self).__init__()\n        assert aux_logits == True or aux_logits == False\n        self.aux_logits = aux_logits\n\n        # Write in_channels, etc, all explicit in self.conv1, rest will write to\n        # make everything as compact as possible, kernel_size=3 instead of (3,3)\n        self.conv1 = conv_block(\n            in_channels=3,\n            out_channels=64,\n            kernel_size=7,\n            stride=2,\n            padding=3,\n        )\n\n        self.maxpool1 = nn.MaxPool2d(kernel_size=3, stride=2, padding=1)\n        self.conv2 = conv_block(64, 192, kernel_size=3, stride=1, padding=1)\n        self.maxpool2 = nn.MaxPool2d(kernel_size=3, stride=2, padding=1)\n\n        # In this order: in_channels, out_1x1, red_3x3, out_3x3, red_5x5, out_5x5, out_1x1pool\n        self.inception3a = Inception_block(192, 64, 96, 128, 16, 32, 32)\n        self.inception3b = Inception_block(256, 128, 128, 192, 32, 96, 64)\n        self.maxpool3 = nn.MaxPool2d(kernel_size=3, stride=2, padding=1)\n\n        self.inception4a = Inception_block(480, 192, 96, 208, 16, 48, 64)\n        self.inception4b = Inception_block(512, 160, 112, 224, 24, 64, 64)\n        self.inception4c = Inception_block(512, 128, 128, 256, 24, 64, 64)\n        self.inception4d = Inception_block(512, 112, 144, 288, 32, 64, 64)\n        self.inception4e = Inception_block(528, 256, 160, 320, 32, 128, 128)\n        self.maxpool4 = nn.MaxPool2d(kernel_size=3, stride=2, padding=1)\n\n        self.inception5a = Inception_block(832, 256, 160, 320, 32, 128, 128)\n        self.inception5b = Inception_block(832, 384, 192, 384, 48, 128, 128)\n\n        self.avgpool = nn.AvgPool2d(kernel_size=7, stride=1)\n        self.dropout = nn.Dropout(p=0.4)\n        self.fc1 = nn.Linear(1024, num_classes)\n\n        if self.aux_logits:\n            self.aux1 = InceptionAux(512, num_classes)\n            self.aux2 = InceptionAux(528, num_classes)\n        else:\n            self.aux1 = self.aux2 = None\n\n    def forward(self, x):\n        x = self.conv1(x)\n        x = self.maxpool1(x)\n        x = self.conv2(x)\n        x = self.maxpool2(x)\n\n        x = self.inception3a(x)\n        x = self.inception3b(x)\n        x = self.maxpool3(x)\n\n        x = self.inception4a(x)\n\n        # Auxiliary Softmax classifier 1\n        if self.aux_logits and self.training:\n            aux1 = self.aux1(x)\n\n        x = self.inception4b(x)\n        x = self.inception4c(x)\n        x = self.inception4d(x)\n\n        # Auxiliary Softmax classifier 2\n        if self.aux_logits and self.training:\n            aux2 = self.aux2(x)\n\n        x = self.inception4e(x)\n        x = self.maxpool4(x)\n        x = self.inception5a(x)\n        x = self.inception5b(x)\n        x = self.avgpool(x)\n        x = x.reshape(x.shape[0], -1)\n        x = self.dropout(x)\n        x = self.fc1(x)\n\n        if self.aux_logits and self.training:\n            return aux1, aux2, x\n        else:\n            return x\n\n\nclass Inception_block(nn.Module):\n    def __init__(\n        self, in_channels, out_1x1, red_3x3, out_3x3, red_5x5, out_5x5, out_1x1pool\n    ):\n        super(Inception_block, self).__init__()\n        self.branch1 = conv_block(in_channels, out_1x1, kernel_size=1)\n\n        self.branch2 = nn.Sequential(\n            conv_block(in_channels, red_3x3, kernel_size=1),\n            conv_block(red_3x3, out_3x3, kernel_size=(3, 3), padding=1),\n        )\n\n        self.branch3 = nn.Sequential(\n            conv_block(in_channels, red_5x5, kernel_size=1),\n            conv_block(red_5x5, out_5x5, kernel_size=5, padding=2),\n        )\n\n        self.branch4 = nn.Sequential(\n            nn.MaxPool2d(kernel_size=3, stride=1, padding=1),\n            conv_block(in_channels, out_1x1pool, kernel_size=1),\n        )\n\n    def forward(self, x):\n        return torch.cat(\n            [self.branch1(x), self.branch2(x), self.branch3(x), self.branch4(x)], 1\n        )\n\n\nclass InceptionAux(nn.Module):\n    def __init__(self, in_channels, num_classes):\n        super(InceptionAux, self).__init__()\n        self.relu = nn.ReLU()\n        self.dropout = nn.Dropout(p=0.7)\n        self.pool = nn.AvgPool2d(kernel_size=5, stride=3)\n        self.conv = conv_block(in_channels, 128, kernel_size=1)\n        self.fc1 = nn.Linear(2048, 1024)\n        self.fc2 = nn.Linear(1024, num_classes)\n\n    def forward(self, x):\n        x = self.pool(x)\n        x = self.conv(x)\n        x = x.reshape(x.shape[0], -1)\n        x = self.relu(self.fc1(x))\n        x = self.dropout(x)\n        x = self.fc2(x)\n        return x\n\n\nclass conv_block(nn.Module):\n    def __init__(self, in_channels, out_channels, **kwargs):\n        super(conv_block, self).__init__()\n        self.relu = nn.ReLU()\n        self.conv = nn.Conv2d(in_channels, out_channels, **kwargs)\n        self.batchnorm = nn.BatchNorm2d(out_channels)\n\n    def forward(self, x):\n        return self.relu(self.batchnorm(self.conv(x)))\n\n\nif __name__ == \"__main__\":\n    BATCH_SIZE = 5\n    x = torch.randn(BATCH_SIZE, 3, 224, 224)\n    model = GoogLeNet(aux_logits=True, num_classes=1000)\n    print(model(x)[2].shape)\n    assert model(x)[2].shape == torch.Size([BATCH_SIZE, 1000])\n"
  },
  {
    "path": "ML/Pytorch/CNN_architectures/pytorch_resnet.py",
    "content": "# -*- coding: utf-8 -*-\n\"\"\"\nFrom scratch implementation of the famous ResNet models.\nThe intuition for ResNet is simple and clear, but to code\nit didn't feel super clear at first, even when reading Pytorch own\nimplementation. \n\nProgrammed by Aladdin Persson <aladdin.persson at hotmail dot com>\n*    2020-04-12 Initial coding\n*    2022-12-20 Update comments, code revision, checked still works with latest PyTorch version\n\"\"\"\n\nimport torch\nimport torch.nn as nn\n\n\nclass block(nn.Module):\n    def __init__(\n        self, in_channels, intermediate_channels, identity_downsample=None, stride=1\n    ):\n        super().__init__()\n        self.expansion = 4\n        self.conv1 = nn.Conv2d(\n            in_channels,\n            intermediate_channels,\n            kernel_size=1,\n            stride=1,\n            padding=0,\n            bias=False,\n        )\n        self.bn1 = nn.BatchNorm2d(intermediate_channels)\n        self.conv2 = nn.Conv2d(\n            intermediate_channels,\n            intermediate_channels,\n            kernel_size=3,\n            stride=stride,\n            padding=1,\n            bias=False,\n        )\n        self.bn2 = nn.BatchNorm2d(intermediate_channels)\n        self.conv3 = nn.Conv2d(\n            intermediate_channels,\n            intermediate_channels * self.expansion,\n            kernel_size=1,\n            stride=1,\n            padding=0,\n            bias=False,\n        )\n        self.bn3 = nn.BatchNorm2d(intermediate_channels * self.expansion)\n        self.relu = nn.ReLU()\n        self.identity_downsample = identity_downsample\n        self.stride = stride\n\n    def forward(self, x):\n        identity = x.clone()\n\n        x = self.conv1(x)\n        x = self.bn1(x)\n        x = self.relu(x)\n        x = self.conv2(x)\n        x = self.bn2(x)\n        x = self.relu(x)\n        x = self.conv3(x)\n        x = self.bn3(x)\n\n        if self.identity_downsample is not None:\n            identity = self.identity_downsample(identity)\n\n        x += identity\n        x = self.relu(x)\n        return x\n\n\nclass ResNet(nn.Module):\n    def __init__(self, block, layers, image_channels, num_classes):\n        super(ResNet, self).__init__()\n        self.in_channels = 64\n        self.conv1 = nn.Conv2d(\n            image_channels, 64, kernel_size=7, stride=2, padding=3, bias=False\n        )\n        self.bn1 = nn.BatchNorm2d(64)\n        self.relu = nn.ReLU()\n        self.maxpool = nn.MaxPool2d(kernel_size=3, stride=2, padding=1)\n\n        # Essentially the entire ResNet architecture are in these 4 lines below\n        self.layer1 = self._make_layer(\n            block, layers[0], intermediate_channels=64, stride=1\n        )\n        self.layer2 = self._make_layer(\n            block, layers[1], intermediate_channels=128, stride=2\n        )\n        self.layer3 = self._make_layer(\n            block, layers[2], intermediate_channels=256, stride=2\n        )\n        self.layer4 = self._make_layer(\n            block, layers[3], intermediate_channels=512, stride=2\n        )\n\n        self.avgpool = nn.AdaptiveAvgPool2d((1, 1))\n        self.fc = nn.Linear(512 * 4, num_classes)\n\n    def forward(self, x):\n        x = self.conv1(x)\n        x = self.bn1(x)\n        x = self.relu(x)\n        x = self.maxpool(x)\n        x = self.layer1(x)\n        x = self.layer2(x)\n        x = self.layer3(x)\n        x = self.layer4(x)\n\n        x = self.avgpool(x)\n        x = x.reshape(x.shape[0], -1)\n        x = self.fc(x)\n\n        return x\n\n    def _make_layer(self, block, num_residual_blocks, intermediate_channels, stride):\n        identity_downsample = None\n        layers = []\n\n        # Either if we half the input space for ex, 56x56 -> 28x28 (stride=2), or channels changes\n        # we need to adapt the Identity (skip connection) so it will be able to be added\n        # to the layer that's ahead\n        if stride != 1 or self.in_channels != intermediate_channels * 4:\n            identity_downsample = nn.Sequential(\n                nn.Conv2d(\n                    self.in_channels,\n                    intermediate_channels * 4,\n                    kernel_size=1,\n                    stride=stride,\n                    bias=False,\n                ),\n                nn.BatchNorm2d(intermediate_channels * 4),\n            )\n\n        layers.append(\n            block(self.in_channels, intermediate_channels, identity_downsample, stride)\n        )\n\n        # The expansion size is always 4 for ResNet 50,101,152\n        self.in_channels = intermediate_channels * 4\n\n        # For example for first resnet layer: 256 will be mapped to 64 as intermediate layer,\n        # then finally back to 256. Hence no identity downsample is needed, since stride = 1,\n        # and also same amount of channels.\n        for i in range(num_residual_blocks - 1):\n            layers.append(block(self.in_channels, intermediate_channels))\n\n        return nn.Sequential(*layers)\n\n\ndef ResNet50(img_channel=3, num_classes=1000):\n    return ResNet(block, [3, 4, 6, 3], img_channel, num_classes)\n\n\ndef ResNet101(img_channel=3, num_classes=1000):\n    return ResNet(block, [3, 4, 23, 3], img_channel, num_classes)\n\n\ndef ResNet152(img_channel=3, num_classes=1000):\n    return ResNet(block, [3, 8, 36, 3], img_channel, num_classes)\n\n\ndef test():\n    BATCH_SIZE = 4\n    device = torch.device(\"cuda\" if torch.cuda.is_available() else \"cpu\")\n    net = ResNet101(img_channel=3, num_classes=1000).to(device)\n    y = net(torch.randn(BATCH_SIZE, 3, 224, 224)).to(device)\n    assert y.size() == torch.Size([BATCH_SIZE, 1000])\n    print(y.size())\n\n\nif __name__ == \"__main__\":\n    test()\n"
  },
  {
    "path": "ML/Pytorch/CNN_architectures/pytorch_vgg_implementation.py",
    "content": "\"\"\"\nA from scratch implementation of the VGG architecture.\n\nProgrammed by Aladdin Persson <aladdin.persson at hotmail dot com>\n*    2020-04-05 Initial coding\n*    2022-12-20 Update comments, code revision, checked still works with latest PyTorch version\n\"\"\"\n\n# Imports\nimport torch\nimport torch.nn as nn  # All neural network modules, nn.Linear, nn.Conv2d, BatchNorm, Loss functions\n\nVGG_types = {\n    \"VGG11\": [64, \"M\", 128, \"M\", 256, 256, \"M\", 512, 512, \"M\", 512, 512, \"M\"],\n    \"VGG13\": [64, 64, \"M\", 128, 128, \"M\", 256, 256, \"M\", 512, 512, \"M\", 512, 512, \"M\"],\n    \"VGG16\": [\n        64,\n        64,\n        \"M\",\n        128,\n        128,\n        \"M\",\n        256,\n        256,\n        256,\n        \"M\",\n        512,\n        512,\n        512,\n        \"M\",\n        512,\n        512,\n        512,\n        \"M\",\n    ],\n    \"VGG19\": [\n        64,\n        64,\n        \"M\",\n        128,\n        128,\n        \"M\",\n        256,\n        256,\n        256,\n        256,\n        \"M\",\n        512,\n        512,\n        512,\n        512,\n        \"M\",\n        512,\n        512,\n        512,\n        512,\n        \"M\",\n    ],\n}\n\n\nclass VGG_net(nn.Module):\n    def __init__(self, in_channels=3, num_classes=1000):\n        super(VGG_net, self).__init__()\n        self.in_channels = in_channels\n        self.conv_layers = self.create_conv_layers(VGG_types[\"VGG16\"])\n\n        self.fcs = nn.Sequential(\n            nn.Linear(512 * 7 * 7, 4096),\n            nn.ReLU(),\n            nn.Dropout(p=0.5),\n            nn.Linear(4096, 4096),\n            nn.ReLU(),\n            nn.Dropout(p=0.5),\n            nn.Linear(4096, num_classes),\n        )\n\n    def forward(self, x):\n        x = self.conv_layers(x)\n        x = x.reshape(x.shape[0], -1)\n        x = self.fcs(x)\n        return x\n\n    def create_conv_layers(self, architecture):\n        layers = []\n        in_channels = self.in_channels\n\n        for x in architecture:\n            if type(x) == int:\n                out_channels = x\n\n                layers += [\n                    nn.Conv2d(\n                        in_channels=in_channels,\n                        out_channels=out_channels,\n                        kernel_size=(3, 3),\n                        stride=(1, 1),\n                        padding=(1, 1),\n                    ),\n                    nn.BatchNorm2d(x),\n                    nn.ReLU(),\n                ]\n                in_channels = x\n            elif x == \"M\":\n                layers += [nn.MaxPool2d(kernel_size=(2, 2), stride=(2, 2))]\n\n        return nn.Sequential(*layers)\n\n\nif __name__ == \"__main__\":\n    device = \"cuda\" if torch.cuda.is_available() else \"cpu\"\n    model = VGG_net(in_channels=3, num_classes=1000).to(device)\n    BATCH_SIZE = 3\n    x = torch.randn(3, 3, 224, 224).to(device)\n    assert model(x).shape == torch.Size([BATCH_SIZE, 1000])\n    print(model(x).shape)\n"
  },
  {
    "path": "ML/Pytorch/GANs/1. SimpleGAN/fc_gan.py",
    "content": "\"\"\" \nSimple GAN using fully connected layers\n\nProgrammed by Aladdin Persson <aladdin.persson at hotmail dot com>\n* 2020-11-01: Initial coding\n* 2022-12-20: Small revision of code, checked that it works with latest PyTorch version\n\"\"\"\n\n\nimport torch\nimport torch.nn as nn\nimport torch.optim as optim\nimport torchvision\nimport torchvision.datasets as datasets\nfrom torch.utils.data import DataLoader\nimport torchvision.transforms as transforms\nfrom torch.utils.tensorboard import SummaryWriter  # to print to tensorboard\n\n\nclass Discriminator(nn.Module):\n    def __init__(self, in_features):\n        super().__init__()\n        self.disc = nn.Sequential(\n            nn.Linear(in_features, 128),\n            nn.LeakyReLU(0.01),\n            nn.Linear(128, 1),\n            nn.Sigmoid(),\n        )\n\n    def forward(self, x):\n        return self.disc(x)\n\n\nclass Generator(nn.Module):\n    def __init__(self, z_dim, img_dim):\n        super().__init__()\n        self.gen = nn.Sequential(\n            nn.Linear(z_dim, 256),\n            nn.LeakyReLU(0.01),\n            nn.Linear(256, img_dim),\n            nn.Tanh(),  # normalize inputs to [-1, 1] so make outputs [-1, 1]\n        )\n\n    def forward(self, x):\n        return self.gen(x)\n\n\n# Hyperparameters etc.\ndevice = \"cuda\" if torch.cuda.is_available() else \"cpu\"\nlr = 3e-4\nz_dim = 64\nimage_dim = 28 * 28 * 1  # 784\nbatch_size = 32\nnum_epochs = 50\n\ndisc = Discriminator(image_dim).to(device)\ngen = Generator(z_dim, image_dim).to(device)\nfixed_noise = torch.randn((batch_size, z_dim)).to(device)\ntransforms = transforms.Compose(\n    [\n        transforms.ToTensor(),\n        transforms.Normalize((0.5,), (0.5,)),\n    ]\n)\n\ndataset = datasets.MNIST(root=\"dataset/\", transform=transforms, download=True)\nloader = DataLoader(dataset, batch_size=batch_size, shuffle=True)\nopt_disc = optim.Adam(disc.parameters(), lr=lr)\nopt_gen = optim.Adam(gen.parameters(), lr=lr)\ncriterion = nn.BCELoss()\nwriter_fake = SummaryWriter(f\"logs/fake\")\nwriter_real = SummaryWriter(f\"logs/real\")\nstep = 0\n\nfor epoch in range(num_epochs):\n    for batch_idx, (real, _) in enumerate(loader):\n        real = real.view(-1, 784).to(device)\n        batch_size = real.shape[0]\n\n        ### Train Discriminator: max log(D(x)) + log(1 - D(G(z)))\n        noise = torch.randn(batch_size, z_dim).to(device)\n        fake = gen(noise)\n        disc_real = disc(real).view(-1)\n        lossD_real = criterion(disc_real, torch.ones_like(disc_real))\n        disc_fake = disc(fake).view(-1)\n        lossD_fake = criterion(disc_fake, torch.zeros_like(disc_fake))\n        lossD = (lossD_real + lossD_fake) / 2\n        disc.zero_grad()\n        lossD.backward(retain_graph=True)\n        opt_disc.step()\n\n        ### Train Generator: min log(1 - D(G(z))) <-> max log(D(G(z))\n        # where the second option of maximizing doesn't suffer from\n        # saturating gradients\n        output = disc(fake).view(-1)\n        lossG = criterion(output, torch.ones_like(output))\n        gen.zero_grad()\n        lossG.backward()\n        opt_gen.step()\n\n        if batch_idx == 0:\n            print(\n                f\"Epoch [{epoch}/{num_epochs}] Batch {batch_idx}/{len(loader)} \\\n                      Loss D: {lossD:.4f}, loss G: {lossG:.4f}\"\n            )\n\n            with torch.no_grad():\n                fake = gen(fixed_noise).reshape(-1, 1, 28, 28)\n                data = real.reshape(-1, 1, 28, 28)\n                img_grid_fake = torchvision.utils.make_grid(fake, normalize=True)\n                img_grid_real = torchvision.utils.make_grid(data, normalize=True)\n\n                writer_fake.add_image(\n                    \"Mnist Fake Images\", img_grid_fake, global_step=step\n                )\n                writer_real.add_image(\n                    \"Mnist Real Images\", img_grid_real, global_step=step\n                )\n                step += 1\n"
  },
  {
    "path": "ML/Pytorch/GANs/2. DCGAN/model.py",
    "content": "\"\"\"\nDiscriminator and Generator implementation from DCGAN paper\n\nProgrammed by Aladdin Persson <aladdin.persson at hotmail dot com>\n* 2020-11-01: Initial coding\n* 2022-12-20: Small revision of code, checked that it works with latest PyTorch version\n\"\"\"\n\nimport torch\nimport torch.nn as nn\n\n\nclass Discriminator(nn.Module):\n    def __init__(self, channels_img, features_d):\n        super(Discriminator, self).__init__()\n        self.disc = nn.Sequential(\n            # input: N x channels_img x 64 x 64\n            nn.Conv2d(channels_img, features_d, kernel_size=4, stride=2, padding=1),\n            nn.LeakyReLU(0.2),\n            # _block(in_channels, out_channels, kernel_size, stride, padding)\n            self._block(features_d, features_d * 2, 4, 2, 1),\n            self._block(features_d * 2, features_d * 4, 4, 2, 1),\n            self._block(features_d * 4, features_d * 8, 4, 2, 1),\n            # After all _block img output is 4x4 (Conv2d below makes into 1x1)\n            nn.Conv2d(features_d * 8, 1, kernel_size=4, stride=2, padding=0),\n            nn.Sigmoid(),\n        )\n\n    def _block(self, in_channels, out_channels, kernel_size, stride, padding):\n        return nn.Sequential(\n            nn.Conv2d(\n                in_channels,\n                out_channels,\n                kernel_size,\n                stride,\n                padding,\n                bias=False,\n            ),\n            # nn.BatchNorm2d(out_channels),\n            nn.LeakyReLU(0.2),\n        )\n\n    def forward(self, x):\n        return self.disc(x)\n\n\nclass Generator(nn.Module):\n    def __init__(self, channels_noise, channels_img, features_g):\n        super(Generator, self).__init__()\n        self.net = nn.Sequential(\n            # Input: N x channels_noise x 1 x 1\n            self._block(channels_noise, features_g * 16, 4, 1, 0),  # img: 4x4\n            self._block(features_g * 16, features_g * 8, 4, 2, 1),  # img: 8x8\n            self._block(features_g * 8, features_g * 4, 4, 2, 1),  # img: 16x16\n            self._block(features_g * 4, features_g * 2, 4, 2, 1),  # img: 32x32\n            nn.ConvTranspose2d(\n                features_g * 2, channels_img, kernel_size=4, stride=2, padding=1\n            ),\n            # Output: N x channels_img x 64 x 64\n            nn.Tanh(),\n        )\n\n    def _block(self, in_channels, out_channels, kernel_size, stride, padding):\n        return nn.Sequential(\n            nn.ConvTranspose2d(\n                in_channels,\n                out_channels,\n                kernel_size,\n                stride,\n                padding,\n                bias=False,\n            ),\n            # nn.BatchNorm2d(out_channels),\n            nn.ReLU(),\n        )\n\n    def forward(self, x):\n        return self.net(x)\n\n\ndef initialize_weights(model):\n    # Initializes weights according to the DCGAN paper\n    for m in model.modules():\n        if isinstance(m, (nn.Conv2d, nn.ConvTranspose2d, nn.BatchNorm2d)):\n            nn.init.normal_(m.weight.data, 0.0, 0.02)\n\n\ndef test():\n    N, in_channels, H, W = 8, 3, 64, 64\n    noise_dim = 100\n    x = torch.randn((N, in_channels, H, W))\n    disc = Discriminator(in_channels, 8)\n    assert disc(x).shape == (N, 1, 1, 1), \"Discriminator test failed\"\n    gen = Generator(noise_dim, in_channels, 8)\n    z = torch.randn((N, noise_dim, 1, 1))\n    assert gen(z).shape == (N, in_channels, H, W), \"Generator test failed\"\n    print(\"Success, tests passed!\")\n\n\nif __name__ == \"__main__\":\n    test()\n"
  },
  {
    "path": "ML/Pytorch/GANs/2. DCGAN/train.py",
    "content": "\"\"\"\nTraining of DCGAN network on MNIST dataset with Discriminator\nand Generator imported from models.py\n\nProgrammed by Aladdin Persson <aladdin.persson at hotmail dot com>\n* 2020-11-01: Initial coding\n* 2022-12-20: Small revision of code, checked that it works with latest PyTorch version\n\"\"\"\n\nimport torch\nimport torch.nn as nn\nimport torch.optim as optim\nimport torchvision\nimport torchvision.datasets as datasets\nimport torchvision.transforms as transforms\nfrom torch.utils.data import DataLoader\nfrom torch.utils.tensorboard import SummaryWriter\nfrom model import Discriminator, Generator, initialize_weights\n\n# Hyperparameters etc.\ndevice = torch.device(\"cuda\" if torch.cuda.is_available() else \"cpu\")\nLEARNING_RATE = 2e-4  # could also use two lrs, one for gen and one for disc\nBATCH_SIZE = 128\nIMAGE_SIZE = 64\nCHANNELS_IMG = 1\nNOISE_DIM = 100\nNUM_EPOCHS = 5\nFEATURES_DISC = 64\nFEATURES_GEN = 64\n\ntransforms = transforms.Compose(\n    [\n        transforms.Resize(IMAGE_SIZE),\n        transforms.ToTensor(),\n        transforms.Normalize(\n            [0.5 for _ in range(CHANNELS_IMG)], [0.5 for _ in range(CHANNELS_IMG)]\n        ),\n    ]\n)\n\n# If you train on MNIST, remember to set channels_img to 1\ndataset = datasets.MNIST(\n    root=\"dataset/\", train=True, transform=transforms, download=True\n)\n\n# comment mnist above and uncomment below if train on CelebA\n# dataset = datasets.ImageFolder(root=\"celeb_dataset\", transform=transforms)\ndataloader = DataLoader(dataset, batch_size=BATCH_SIZE, shuffle=True)\ngen = Generator(NOISE_DIM, CHANNELS_IMG, FEATURES_GEN).to(device)\ndisc = Discriminator(CHANNELS_IMG, FEATURES_DISC).to(device)\ninitialize_weights(gen)\ninitialize_weights(disc)\n\nopt_gen = optim.Adam(gen.parameters(), lr=LEARNING_RATE, betas=(0.5, 0.999))\nopt_disc = optim.Adam(disc.parameters(), lr=LEARNING_RATE, betas=(0.5, 0.999))\ncriterion = nn.BCELoss()\n\nfixed_noise = torch.randn(32, NOISE_DIM, 1, 1).to(device)\nwriter_real = SummaryWriter(f\"logs/real\")\nwriter_fake = SummaryWriter(f\"logs/fake\")\nstep = 0\n\ngen.train()\ndisc.train()\n\nfor epoch in range(NUM_EPOCHS):\n    # Target labels not needed! <3 unsupervised\n    for batch_idx, (real, _) in enumerate(dataloader):\n        real = real.to(device)\n        noise = torch.randn(BATCH_SIZE, NOISE_DIM, 1, 1).to(device)\n        fake = gen(noise)\n\n        ### Train Discriminator: max log(D(x)) + log(1 - D(G(z)))\n        disc_real = disc(real).reshape(-1)\n        loss_disc_real = criterion(disc_real, torch.ones_like(disc_real))\n        disc_fake = disc(fake.detach()).reshape(-1)\n        loss_disc_fake = criterion(disc_fake, torch.zeros_like(disc_fake))\n        loss_disc = (loss_disc_real + loss_disc_fake) / 2\n        disc.zero_grad()\n        loss_disc.backward()\n        opt_disc.step()\n\n        ### Train Generator: min log(1 - D(G(z))) <-> max log(D(G(z))\n        output = disc(fake).reshape(-1)\n        loss_gen = criterion(output, torch.ones_like(output))\n        gen.zero_grad()\n        loss_gen.backward()\n        opt_gen.step()\n\n        # Print losses occasionally and print to tensorboard\n        if batch_idx % 100 == 0:\n            print(\n                f\"Epoch [{epoch}/{NUM_EPOCHS}] Batch {batch_idx}/{len(dataloader)} \\\n                  Loss D: {loss_disc:.4f}, loss G: {loss_gen:.4f}\"\n            )\n\n            with torch.no_grad():\n                fake = gen(fixed_noise)\n                # take out (up to) 32 examples\n                img_grid_real = torchvision.utils.make_grid(real[:32], normalize=True)\n                img_grid_fake = torchvision.utils.make_grid(fake[:32], normalize=True)\n\n                writer_real.add_image(\"Real\", img_grid_real, global_step=step)\n                writer_fake.add_image(\"Fake\", img_grid_fake, global_step=step)\n\n            step += 1\n"
  },
  {
    "path": "ML/Pytorch/GANs/3. WGAN/model.py",
    "content": "\"\"\"\nDiscriminator and Generator implementation from DCGAN paper,\nwith removed Sigmoid() as output from Discriminator (and therefor\nit should be called critic)\n\nProgrammed by Aladdin Persson <aladdin.persson at hotmail dot com>\n* 2020-11-01: Initial coding\n* 2022-12-20: Small revision of code, checked that it works with latest PyTorch version\n\"\"\"\n\nimport torch\nimport torch.nn as nn\n\n\nclass Discriminator(nn.Module):\n    def __init__(self, channels_img, features_d):\n        super(Discriminator, self).__init__()\n        self.disc = nn.Sequential(\n            # input: N x channels_img x 64 x 64\n            nn.Conv2d(\n                channels_img, features_d, kernel_size=4, stride=2, padding=1\n            ),\n            nn.LeakyReLU(0.2),\n            # _block(in_channels, out_channels, kernel_size, stride, padding)\n            self._block(features_d, features_d * 2, 4, 2, 1),\n            self._block(features_d * 2, features_d * 4, 4, 2, 1),\n            self._block(features_d * 4, features_d * 8, 4, 2, 1),\n            # After all _block img output is 4x4 (Conv2d below makes into 1x1)\n            nn.Conv2d(features_d * 8, 1, kernel_size=4, stride=2, padding=0),\n        )\n\n    def _block(self, in_channels, out_channels, kernel_size, stride, padding):\n        return nn.Sequential(\n            nn.Conv2d(\n                in_channels,\n                out_channels,\n                kernel_size,\n                stride,\n                padding,\n                bias=False,\n            ),\n            nn.InstanceNorm2d(out_channels, affine=True),\n            nn.LeakyReLU(0.2),\n        )\n\n    def forward(self, x):\n        return self.disc(x)\n\n\nclass Generator(nn.Module):\n    def __init__(self, channels_noise, channels_img, features_g):\n        super(Generator, self).__init__()\n        self.net = nn.Sequential(\n            # Input: N x channels_noise x 1 x 1\n            self._block(channels_noise, features_g * 16, 4, 1, 0),  # img: 4x4\n            self._block(features_g * 16, features_g * 8, 4, 2, 1),  # img: 8x8\n            self._block(features_g * 8, features_g * 4, 4, 2, 1),  # img: 16x16\n            self._block(features_g * 4, features_g * 2, 4, 2, 1),  # img: 32x32\n            nn.ConvTranspose2d(\n                features_g * 2, channels_img, kernel_size=4, stride=2, padding=1\n            ),\n            # Output: N x channels_img x 64 x 64\n            nn.Tanh(),\n        )\n\n    def _block(self, in_channels, out_channels, kernel_size, stride, padding):\n        return nn.Sequential(\n            nn.ConvTranspose2d(\n                in_channels,\n                out_channels,\n                kernel_size,\n                stride,\n                padding,\n                bias=False,\n            ),\n            nn.BatchNorm2d(out_channels),\n            nn.ReLU(),\n        )\n\n    def forward(self, x):\n        return self.net(x)\n\n\ndef initialize_weights(model):\n    # Initializes weights according to the DCGAN paper\n    for m in model.modules():\n        if isinstance(m, (nn.Conv2d, nn.ConvTranspose2d, nn.BatchNorm2d)):\n            nn.init.normal_(m.weight.data, 0.0, 0.02)\n\n\ndef test():\n    N, in_channels, H, W = 8, 3, 64, 64\n    noise_dim = 100\n    x = torch.randn((N, in_channels, H, W))\n    disc = Discriminator(in_channels, 8)\n    assert disc(x).shape == (N, 1, 1, 1), \"Discriminator test failed\"\n    gen = Generator(noise_dim, in_channels, 8)\n    z = torch.randn((N, noise_dim, 1, 1))\n    assert gen(z).shape == (N, in_channels, H, W), \"Generator test failed\"\n    print(\"Success, tests passed!\")\n\nif __name__ == \"__main__\":\n    test()"
  },
  {
    "path": "ML/Pytorch/GANs/3. WGAN/train.py",
    "content": "\"\"\"\nTraining of DCGAN network with WGAN loss\n\nProgrammed by Aladdin Persson <aladdin.persson at hotmail dot com>\n* 2020-11-01: Initial coding\n* 2022-12-20: Small revision of code, checked that it works with latest PyTorch version\n\"\"\"\n\nimport torch\nimport torch.nn as nn\nimport torch.optim as optim\nimport torchvision\nimport torchvision.datasets as datasets\nimport torchvision.transforms as transforms\nfrom torch.utils.data import DataLoader\nfrom tqdm import tqdm\nfrom torch.utils.tensorboard import SummaryWriter\nfrom model import Discriminator, Generator, initialize_weights\n\n# Hyperparameters etc\ndevice = \"cuda\" if torch.cuda.is_available() else \"cpu\"\nLEARNING_RATE = 5e-5\nBATCH_SIZE = 64\nIMAGE_SIZE = 64\nCHANNELS_IMG = 1\nZ_DIM = 128\nNUM_EPOCHS = 5\nFEATURES_CRITIC = 64\nFEATURES_GEN = 64\nCRITIC_ITERATIONS = 5\nWEIGHT_CLIP = 0.01\n\ntransforms = transforms.Compose(\n    [\n        transforms.Resize(IMAGE_SIZE),\n        transforms.ToTensor(),\n        transforms.Normalize(\n            [0.5 for _ in range(CHANNELS_IMG)], [0.5 for _ in range(CHANNELS_IMG)]\n        ),\n    ]\n)\n\ndataset = datasets.MNIST(root=\"dataset/\", transform=transforms, download=True)\n#comment mnist and uncomment below if you want to train on CelebA dataset\n#dataset = datasets.ImageFolder(root=\"celeb_dataset\", transform=transforms)\nloader = DataLoader(dataset, batch_size=BATCH_SIZE, shuffle=True)\n\n# initialize gen and disc/critic\ngen = Generator(Z_DIM, CHANNELS_IMG, FEATURES_GEN).to(device)\ncritic = Discriminator(CHANNELS_IMG, FEATURES_CRITIC).to(device)\ninitialize_weights(gen)\ninitialize_weights(critic)\n\n# initializate optimizer\nopt_gen = optim.RMSprop(gen.parameters(), lr=LEARNING_RATE)\nopt_critic = optim.RMSprop(critic.parameters(), lr=LEARNING_RATE)\n\n# for tensorboard plotting\nfixed_noise = torch.randn(32, Z_DIM, 1, 1).to(device)\nwriter_real = SummaryWriter(f\"logs/real\")\nwriter_fake = SummaryWriter(f\"logs/fake\")\nstep = 0\n\ngen.train()\ncritic.train()\n\nfor epoch in range(NUM_EPOCHS):\n    # Target labels not needed! <3 unsupervised\n    for batch_idx, (data, _) in enumerate(tqdm(loader)):\n        data = data.to(device)\n        cur_batch_size = data.shape[0]\n\n        # Train Critic: max E[critic(real)] - E[critic(fake)]\n        for _ in range(CRITIC_ITERATIONS):\n            noise = torch.randn(cur_batch_size, Z_DIM, 1, 1).to(device)\n            fake = gen(noise)\n            critic_real = critic(data).reshape(-1)\n            critic_fake = critic(fake).reshape(-1)\n            loss_critic = -(torch.mean(critic_real) - torch.mean(critic_fake))\n            critic.zero_grad()\n            loss_critic.backward(retain_graph=True)\n            opt_critic.step()\n\n            # clip critic weights between -0.01, 0.01\n            for p in critic.parameters():\n                p.data.clamp_(-WEIGHT_CLIP, WEIGHT_CLIP)\n\n        # Train Generator: max E[critic(gen_fake)] <-> min -E[critic(gen_fake)]\n        gen_fake = critic(fake).reshape(-1)\n        loss_gen = -torch.mean(gen_fake)\n        gen.zero_grad()\n        loss_gen.backward()\n        opt_gen.step()\n\n        # Print losses occasionally and print to tensorboard\n        if batch_idx % 100 == 0 and batch_idx > 0:\n            gen.eval()\n            critic.eval()\n            print(\n                f\"Epoch [{epoch}/{NUM_EPOCHS}] Batch {batch_idx}/{len(loader)} \\\n                  Loss D: {loss_critic:.4f}, loss G: {loss_gen:.4f}\"\n            )\n\n            with torch.no_grad():\n                fake = gen(noise)\n                # take out (up to) 32 examples\n                img_grid_real = torchvision.utils.make_grid(\n                    data[:32], normalize=True\n                )\n                img_grid_fake = torchvision.utils.make_grid(\n                    fake[:32], normalize=True\n                )\n\n                writer_real.add_image(\"Real\", img_grid_real, global_step=step)\n                writer_fake.add_image(\"Fake\", img_grid_fake, global_step=step)\n\n            step += 1\n            gen.train()\n            critic.train()"
  },
  {
    "path": "ML/Pytorch/GANs/4. WGAN-GP/model.py",
    "content": "\"\"\"\nDiscriminator and Generator implementation from DCGAN paper\n\nProgrammed by Aladdin Persson <aladdin.persson at hotmail dot com>\n* 2020-11-01: Initial coding\n* 2022-12-20: Small revision of code, checked that it works with latest PyTorch version\n\"\"\"\n\nimport torch\nimport torch.nn as nn\n\n\nclass Discriminator(nn.Module):\n    def __init__(self, channels_img, features_d):\n        super(Discriminator, self).__init__()\n        self.disc = nn.Sequential(\n            # input: N x channels_img x 64 x 64\n            nn.Conv2d(channels_img, features_d, kernel_size=4, stride=2, padding=1),\n            nn.LeakyReLU(0.2),\n            # _block(in_channels, out_channels, kernel_size, stride, padding)\n            self._block(features_d, features_d * 2, 4, 2, 1),\n            self._block(features_d * 2, features_d * 4, 4, 2, 1),\n            self._block(features_d * 4, features_d * 8, 4, 2, 1),\n            # After all _block img output is 4x4 (Conv2d below makes into 1x1)\n            nn.Conv2d(features_d * 8, 1, kernel_size=4, stride=2, padding=0),\n        )\n\n    def _block(self, in_channels, out_channels, kernel_size, stride, padding):\n        return nn.Sequential(\n            nn.Conv2d(\n                in_channels,\n                out_channels,\n                kernel_size,\n                stride,\n                padding,\n                bias=False,\n            ),\n            nn.InstanceNorm2d(out_channels, affine=True),\n            nn.LeakyReLU(0.2),\n        )\n\n    def forward(self, x):\n        return self.disc(x)\n\n\nclass Generator(nn.Module):\n    def __init__(self, channels_noise, channels_img, features_g):\n        super(Generator, self).__init__()\n        self.net = nn.Sequential(\n            # Input: N x channels_noise x 1 x 1\n            self._block(channels_noise, features_g * 16, 4, 1, 0),  # img: 4x4\n            self._block(features_g * 16, features_g * 8, 4, 2, 1),  # img: 8x8\n            self._block(features_g * 8, features_g * 4, 4, 2, 1),  # img: 16x16\n            self._block(features_g * 4, features_g * 2, 4, 2, 1),  # img: 32x32\n            nn.ConvTranspose2d(\n                features_g * 2, channels_img, kernel_size=4, stride=2, padding=1\n            ),\n            # Output: N x channels_img x 64 x 64\n            nn.Tanh(),\n        )\n\n    def _block(self, in_channels, out_channels, kernel_size, stride, padding):\n        return nn.Sequential(\n            nn.ConvTranspose2d(\n                in_channels,\n                out_channels,\n                kernel_size,\n                stride,\n                padding,\n                bias=False,\n            ),\n            nn.BatchNorm2d(out_channels),\n            nn.ReLU(),\n        )\n\n    def forward(self, x):\n        return self.net(x)\n\n\ndef initialize_weights(model):\n    # Initializes weights according to the DCGAN paper\n    for m in model.modules():\n        if isinstance(m, (nn.Conv2d, nn.ConvTranspose2d, nn.BatchNorm2d)):\n            nn.init.normal_(m.weight.data, 0.0, 0.02)\n\n\ndef test():\n    N, in_channels, H, W = 8, 3, 64, 64\n    noise_dim = 100\n    x = torch.randn((N, in_channels, H, W))\n    disc = Discriminator(in_channels, 8)\n    assert disc(x).shape == (N, 1, 1, 1), \"Discriminator test failed\"\n    gen = Generator(noise_dim, in_channels, 8)\n    z = torch.randn((N, noise_dim, 1, 1))\n    assert gen(z).shape == (N, in_channels, H, W), \"Generator test failed\"\n\n\n# test()\n"
  },
  {
    "path": "ML/Pytorch/GANs/4. WGAN-GP/train.py",
    "content": "\"\"\"\nTraining of WGAN-GP\n\nProgrammed by Aladdin Persson <aladdin.persson at hotmail dot com>\n* 2020-11-01: Initial coding\n* 2022-12-20: Small revision of code, checked that it works with latest PyTorch version\n\"\"\"\n\nimport torch\nimport torch.nn as nn\nimport torch.optim as optim\nimport torchvision\nimport torchvision.datasets as datasets\nimport torchvision.transforms as transforms\nfrom torch.utils.data import DataLoader\nfrom torch.utils.tensorboard import SummaryWriter\nfrom tqdm import tqdm\nfrom utils import gradient_penalty, save_checkpoint, load_checkpoint\nfrom model import Discriminator, Generator, initialize_weights\n\n# Hyperparameters etc.\ndevice = \"cuda\" if torch.cuda.is_available() else \"cpu\"\nLEARNING_RATE = 1e-4\nBATCH_SIZE = 64\nIMAGE_SIZE = 64\nCHANNELS_IMG = 1\nZ_DIM = 100\nNUM_EPOCHS = 100\nFEATURES_CRITIC = 16\nFEATURES_GEN = 16\nCRITIC_ITERATIONS = 5\nLAMBDA_GP = 10\n\ntransforms = transforms.Compose(\n    [\n        transforms.Resize(IMAGE_SIZE),\n        transforms.ToTensor(),\n        transforms.Normalize(\n            [0.5 for _ in range(CHANNELS_IMG)], [0.5 for _ in range(CHANNELS_IMG)]\n        ),\n    ]\n)\n\ndataset = datasets.MNIST(root=\"dataset/\", transform=transforms, download=True)\n# comment mnist above and uncomment below for training on CelebA\n# dataset = datasets.ImageFolder(root=\"celeb_dataset\", transform=transforms)\nloader = DataLoader(\n    dataset,\n    batch_size=BATCH_SIZE,\n    shuffle=True,\n)\n\n# initialize gen and disc, note: discriminator should be called critic,\n# according to WGAN paper (since it no longer outputs between [0, 1])\ngen = Generator(Z_DIM, CHANNELS_IMG, FEATURES_GEN).to(device)\ncritic = Discriminator(CHANNELS_IMG, FEATURES_CRITIC).to(device)\ninitialize_weights(gen)\ninitialize_weights(critic)\n\n# initializate optimizer\nopt_gen = optim.Adam(gen.parameters(), lr=LEARNING_RATE, betas=(0.0, 0.9))\nopt_critic = optim.Adam(critic.parameters(), lr=LEARNING_RATE, betas=(0.0, 0.9))\n\n# for tensorboard plotting\nfixed_noise = torch.randn(32, Z_DIM, 1, 1).to(device)\nwriter_real = SummaryWriter(f\"logs/GAN_MNIST/real\")\nwriter_fake = SummaryWriter(f\"logs/GAN_MNIST/fake\")\nstep = 0\n\ngen.train()\ncritic.train()\n\nfor epoch in range(NUM_EPOCHS):\n    # Target labels not needed! <3 unsupervised\n    for batch_idx, (real, _) in enumerate(tqdm(loader)):\n        real = real.to(device)\n        cur_batch_size = real.shape[0]\n\n        # Train Critic: max E[critic(real)] - E[critic(fake)]\n        # equivalent to minimizing the negative of that\n        for _ in range(CRITIC_ITERATIONS):\n            noise = torch.randn(cur_batch_size, Z_DIM, 1, 1).to(device)\n            fake = gen(noise)\n            critic_real = critic(real).reshape(-1)\n            critic_fake = critic(fake).reshape(-1)\n            gp = gradient_penalty(critic, real, fake, device=device)\n            loss_critic = (\n                -(torch.mean(critic_real) - torch.mean(critic_fake)) + LAMBDA_GP * gp\n            )\n            critic.zero_grad()\n            loss_critic.backward(retain_graph=True)\n            opt_critic.step()\n\n        # Train Generator: max E[critic(gen_fake)] <-> min -E[critic(gen_fake)]\n        gen_fake = critic(fake).reshape(-1)\n        loss_gen = -torch.mean(gen_fake)\n        gen.zero_grad()\n        loss_gen.backward()\n        opt_gen.step()\n\n        # Print losses occasionally and print to tensorboard\n        if batch_idx % 100 == 0 and batch_idx > 0:\n            print(\n                f\"Epoch [{epoch}/{NUM_EPOCHS}] Batch {batch_idx}/{len(loader)} \\\n                  Loss D: {loss_critic:.4f}, loss G: {loss_gen:.4f}\"\n            )\n\n            with torch.no_grad():\n                fake = gen(fixed_noise)\n                # take out (up to) 32 examples\n                img_grid_real = torchvision.utils.make_grid(real[:32], normalize=True)\n                img_grid_fake = torchvision.utils.make_grid(fake[:32], normalize=True)\n\n                writer_real.add_image(\"Real\", img_grid_real, global_step=step)\n                writer_fake.add_image(\"Fake\", img_grid_fake, global_step=step)\n\n            step += 1\n"
  },
  {
    "path": "ML/Pytorch/GANs/4. WGAN-GP/utils.py",
    "content": "import torch\nimport torch.nn as nn\n\n\ndef gradient_penalty(critic, real, fake, device=\"cpu\"):\n    BATCH_SIZE, C, H, W = real.shape\n    alpha = torch.rand((BATCH_SIZE, 1, 1, 1)).repeat(1, C, H, W).to(device)\n    interpolated_images = real * alpha + fake * (1 - alpha)\n\n    # Calculate critic scores\n    mixed_scores = critic(interpolated_images)\n\n    # Take the gradient of the scores with respect to the images\n    gradient = torch.autograd.grad(\n        inputs=interpolated_images,\n        outputs=mixed_scores,\n        grad_outputs=torch.ones_like(mixed_scores),\n        create_graph=True,\n        retain_graph=True,\n    )[0]\n    gradient = gradient.view(gradient.shape[0], -1)\n    gradient_norm = gradient.norm(2, dim=1)\n    gradient_penalty = torch.mean((gradient_norm - 1) ** 2)\n    return gradient_penalty\n\n\ndef save_checkpoint(state, filename=\"celeba_wgan_gp.pth.tar\"):\n    print(\"=> Saving checkpoint\")\n    torch.save(state, filename)\n\n\ndef load_checkpoint(checkpoint, gen, disc):\n    print(\"=> Loading checkpoint\")\n    gen.load_state_dict(checkpoint['gen'])\n    disc.load_state_dict(checkpoint['disc'])"
  },
  {
    "path": "ML/Pytorch/GANs/CycleGAN/README.md",
    "content": "# CycleGAN\nA clean, simple and readable implementation of CycleGAN in PyTorch. I've tried to replicate the original paper as closely as possible, so if you read the paper the implementation should be pretty much identical. The results from this implementation I would say is on par with the paper, I'll include some examples results below.\n\n## Results\nThe model was trained on Zebra<->Horses dataset.\n\n|1st column: Input / 2nd column: Generated / 3rd row: Re-converted|\n|:---:|\n|![](results/horse_results.png)|\n|![](results/zebra_results.png)|\n\n\n### Horses and Zebras Dataset\nThe dataset can be downloaded from Kaggle: [link](https://www.kaggle.com/suyashdamle/cyclegan).\n\n### Download pretrained weights\nPretrained weights [download](https://github.com/aladdinpersson/Machine-Learning-Collection/releases/download/1.0/CycleGAN_weights.zip).\n\nExtract the zip file and put the pth.tar files in the directory with all the python files. Make sure you put LOAD_MODEL=True in the config.py file.\n\n### Training\nEdit the config.py file to match the setup you want to use. Then run train.py\n\n## CycleGAN paper\n### Unpaired Image-to-Image Translation using Cycle-Consistent Adversarial Networks by Jun-Yan Zhu, Taesung Park, Phillip Isola, Alexei A. Efros\n\n#### Abstract\nImage-to-image translation is a class of vision and graphics problems where the goal is to learn the mapping between an input image and an output image using a training set of aligned image pairs. However, for many tasks, paired training data will not be available. We present an approach for learning to translate an image from a source domain X to a target domain Y in the absence of paired examples. Our goal is to learn a mapping G:X→Y such that the distribution of images from G(X) is indistinguishable from the distribution Y using an adversarial loss. Because this mapping is highly under-constrained, we couple it with an inverse mapping F:Y→X and introduce a cycle consistency loss to push F(G(X))≈X (and vice versa). Qualitative results are presented on several tasks where paired training data does not exist, including collection style transfer, object transfiguration, season transfer, photo enhancement, etc. Quantitative comparisons against several prior methods demonstrate the superiority of our approach. \n```\n@misc{zhu2020unpaired,\n      title={Unpaired Image-to-Image Translation using Cycle-Consistent Adversarial Networks}, \n      author={Jun-Yan Zhu and Taesung Park and Phillip Isola and Alexei A. Efros},\n      year={2020},\n      eprint={1703.10593},\n      archivePrefix={arXiv},\n      primaryClass={cs.CV}\n}\n```\n"
  },
  {
    "path": "ML/Pytorch/GANs/CycleGAN/config.py",
    "content": "import torch\nimport albumentations as A\nfrom albumentations.pytorch import ToTensorV2\n\nDEVICE = \"cuda\" if torch.cuda.is_available() else \"cpu\"\nTRAIN_DIR = \"data/train\"\nVAL_DIR = \"data/val\"\nBATCH_SIZE = 1\nLEARNING_RATE = 1e-5\nLAMBDA_IDENTITY = 0.0\nLAMBDA_CYCLE = 10\nNUM_WORKERS = 4\nNUM_EPOCHS = 10\nLOAD_MODEL = False\nSAVE_MODEL = True\nCHECKPOINT_GEN_H = \"genh.pth.tar\"\nCHECKPOINT_GEN_Z = \"genz.pth.tar\"\nCHECKPOINT_CRITIC_H = \"critich.pth.tar\"\nCHECKPOINT_CRITIC_Z = \"criticz.pth.tar\"\n\ntransforms = A.Compose(\n    [\n        A.Resize(width=256, height=256),\n        A.HorizontalFlip(p=0.5),\n        A.Normalize(mean=[0.5, 0.5, 0.5], std=[0.5, 0.5, 0.5], max_pixel_value=255),\n        ToTensorV2(),\n    ],\n    additional_targets={\"image0\": \"image\"},\n)\n"
  },
  {
    "path": "ML/Pytorch/GANs/CycleGAN/dataset.py",
    "content": "from PIL import Image\nimport os\nfrom torch.utils.data import Dataset\nimport numpy as np\n\nclass HorseZebraDataset(Dataset):\n    def __init__(self, root_zebra, root_horse, transform=None):\n        self.root_zebra = root_zebra\n        self.root_horse = root_horse\n        self.transform = transform\n\n        self.zebra_images = os.listdir(root_zebra)\n        self.horse_images = os.listdir(root_horse)\n        self.length_dataset = max(len(self.zebra_images), len(self.horse_images)) # 1000, 1500\n        self.zebra_len = len(self.zebra_images)\n        self.horse_len = len(self.horse_images)\n\n    def __len__(self):\n        return self.length_dataset\n\n    def __getitem__(self, index):\n        zebra_img = self.zebra_images[index % self.zebra_len]\n        horse_img = self.horse_images[index % self.horse_len]\n\n        zebra_path = os.path.join(self.root_zebra, zebra_img)\n        horse_path = os.path.join(self.root_horse, horse_img)\n\n        zebra_img = np.array(Image.open(zebra_path).convert(\"RGB\"))\n        horse_img = np.array(Image.open(horse_path).convert(\"RGB\"))\n\n        if self.transform:\n            augmentations = self.transform(image=zebra_img, image0=horse_img)\n            zebra_img = augmentations[\"image\"]\n            horse_img = augmentations[\"image0\"]\n\n        return zebra_img, horse_img\n\n\n\n\n\n"
  },
  {
    "path": "ML/Pytorch/GANs/CycleGAN/discriminator_model.py",
    "content": "\"\"\"\nDiscriminator model for CycleGAN\n\nProgrammed by Aladdin Persson <aladdin.persson at hotmail dot com>\n* 2020-11-05: Initial coding\n* 2022-12-21: Small revision of code, checked that it works with latest PyTorch version\n\"\"\"\n\nimport torch\nimport torch.nn as nn\n\n\nclass Block(nn.Module):\n    def __init__(self, in_channels, out_channels, stride):\n        super().__init__()\n        self.conv = nn.Sequential(\n            nn.Conv2d(\n                in_channels,\n                out_channels,\n                4,\n                stride,\n                1,\n                bias=True,\n                padding_mode=\"reflect\",\n            ),\n            nn.InstanceNorm2d(out_channels),\n            nn.LeakyReLU(0.2, inplace=True),\n        )\n\n    def forward(self, x):\n        return self.conv(x)\n\n\nclass Discriminator(nn.Module):\n    def __init__(self, in_channels=3, features=[64, 128, 256, 512]):\n        super().__init__()\n        self.initial = nn.Sequential(\n            nn.Conv2d(\n                in_channels,\n                features[0],\n                kernel_size=4,\n                stride=2,\n                padding=1,\n                padding_mode=\"reflect\",\n            ),\n            nn.LeakyReLU(0.2, inplace=True),\n        )\n\n        layers = []\n        in_channels = features[0]\n        for feature in features[1:]:\n            layers.append(\n                Block(in_channels, feature, stride=1 if feature == features[-1] else 2)\n            )\n            in_channels = feature\n        layers.append(\n            nn.Conv2d(\n                in_channels,\n                1,\n                kernel_size=4,\n                stride=1,\n                padding=1,\n                padding_mode=\"reflect\",\n            )\n        )\n        self.model = nn.Sequential(*layers)\n\n    def forward(self, x):\n        x = self.initial(x)\n        return torch.sigmoid(self.model(x))\n\n\ndef test():\n    x = torch.randn((5, 3, 256, 256))\n    model = Discriminator(in_channels=3)\n    preds = model(x)\n    print(preds.shape)\n\n\nif __name__ == \"__main__\":\n    test()\n"
  },
  {
    "path": "ML/Pytorch/GANs/CycleGAN/generator_model.py",
    "content": "\"\"\"\nGenerator model for CycleGAN\n\nProgrammed by Aladdin Persson <aladdin.persson at hotmail dot com>\n* 2020-11-05: Initial coding\n* 2022-12-21: Small revision of code, checked that it works with latest PyTorch version\n\"\"\"\n\nimport torch\nimport torch.nn as nn\n\n\nclass ConvBlock(nn.Module):\n    def __init__(self, in_channels, out_channels, down=True, use_act=True, **kwargs):\n        super().__init__()\n        self.conv = nn.Sequential(\n            nn.Conv2d(in_channels, out_channels, padding_mode=\"reflect\", **kwargs)\n            if down\n            else nn.ConvTranspose2d(in_channels, out_channels, **kwargs),\n            nn.InstanceNorm2d(out_channels),\n            nn.ReLU(inplace=True) if use_act else nn.Identity(),\n        )\n\n    def forward(self, x):\n        return self.conv(x)\n\n\nclass ResidualBlock(nn.Module):\n    def __init__(self, channels):\n        super().__init__()\n        self.block = nn.Sequential(\n            ConvBlock(channels, channels, kernel_size=3, padding=1),\n            ConvBlock(channels, channels, use_act=False, kernel_size=3, padding=1),\n        )\n\n    def forward(self, x):\n        return x + self.block(x)\n\n\nclass Generator(nn.Module):\n    def __init__(self, img_channels, num_features=64, num_residuals=9):\n        super().__init__()\n        self.initial = nn.Sequential(\n            nn.Conv2d(\n                img_channels,\n                num_features,\n                kernel_size=7,\n                stride=1,\n                padding=3,\n                padding_mode=\"reflect\",\n            ),\n            nn.InstanceNorm2d(num_features),\n            nn.ReLU(inplace=True),\n        )\n        self.down_blocks = nn.ModuleList(\n            [\n                ConvBlock(\n                    num_features, num_features * 2, kernel_size=3, stride=2, padding=1\n                ),\n                ConvBlock(\n                    num_features * 2,\n                    num_features * 4,\n                    kernel_size=3,\n                    stride=2,\n                    padding=1,\n                ),\n            ]\n        )\n        self.res_blocks = nn.Sequential(\n            *[ResidualBlock(num_features * 4) for _ in range(num_residuals)]\n        )\n        self.up_blocks = nn.ModuleList(\n            [\n                ConvBlock(\n                    num_features * 4,\n                    num_features * 2,\n                    down=False,\n                    kernel_size=3,\n                    stride=2,\n                    padding=1,\n                    output_padding=1,\n                ),\n                ConvBlock(\n                    num_features * 2,\n                    num_features * 1,\n                    down=False,\n                    kernel_size=3,\n                    stride=2,\n                    padding=1,\n                    output_padding=1,\n                ),\n            ]\n        )\n\n        self.last = nn.Conv2d(\n            num_features * 1,\n            img_channels,\n            kernel_size=7,\n            stride=1,\n            padding=3,\n            padding_mode=\"reflect\",\n        )\n\n    def forward(self, x):\n        x = self.initial(x)\n        for layer in self.down_blocks:\n            x = layer(x)\n        x = self.res_blocks(x)\n        for layer in self.up_blocks:\n            x = layer(x)\n        return torch.tanh(self.last(x))\n\n\ndef test():\n    img_channels = 3\n    img_size = 256\n    x = torch.randn((2, img_channels, img_size, img_size))\n    gen = Generator(img_channels, 9)\n    print(gen(x).shape)\n\n\nif __name__ == \"__main__\":\n    test()\n"
  },
  {
    "path": "ML/Pytorch/GANs/CycleGAN/train.py",
    "content": "\"\"\"\nTraining for CycleGAN\n\nProgrammed by Aladdin Persson <aladdin.persson at hotmail dot com>\n* 2020-11-05: Initial coding\n* 2022-12-21: Small revision of code, checked that it works with latest PyTorch version\n\"\"\"\n\nimport torch\nfrom dataset import HorseZebraDataset\nimport sys\nfrom utils import save_checkpoint, load_checkpoint\nfrom torch.utils.data import DataLoader\nimport torch.nn as nn\nimport torch.optim as optim\nimport config\nfrom tqdm import tqdm\nfrom torchvision.utils import save_image\nfrom discriminator_model import Discriminator\nfrom generator_model import Generator\n\n\ndef train_fn(\n    disc_H, disc_Z, gen_Z, gen_H, loader, opt_disc, opt_gen, l1, mse, d_scaler, g_scaler\n):\n    H_reals = 0\n    H_fakes = 0\n    loop = tqdm(loader, leave=True)\n\n    for idx, (zebra, horse) in enumerate(loop):\n        zebra = zebra.to(config.DEVICE)\n        horse = horse.to(config.DEVICE)\n\n        # Train Discriminators H and Z\n        with torch.cuda.amp.autocast():\n            fake_horse = gen_H(zebra)\n            D_H_real = disc_H(horse)\n            D_H_fake = disc_H(fake_horse.detach())\n            H_reals += D_H_real.mean().item()\n            H_fakes += D_H_fake.mean().item()\n            D_H_real_loss = mse(D_H_real, torch.ones_like(D_H_real))\n            D_H_fake_loss = mse(D_H_fake, torch.zeros_like(D_H_fake))\n            D_H_loss = D_H_real_loss + D_H_fake_loss\n\n            fake_zebra = gen_Z(horse)\n            D_Z_real = disc_Z(zebra)\n            D_Z_fake = disc_Z(fake_zebra.detach())\n            D_Z_real_loss = mse(D_Z_real, torch.ones_like(D_Z_real))\n            D_Z_fake_loss = mse(D_Z_fake, torch.zeros_like(D_Z_fake))\n            D_Z_loss = D_Z_real_loss + D_Z_fake_loss\n\n            # put it togethor\n            D_loss = (D_H_loss + D_Z_loss) / 2\n\n        opt_disc.zero_grad()\n        d_scaler.scale(D_loss).backward()\n        d_scaler.step(opt_disc)\n        d_scaler.update()\n\n        # Train Generators H and Z\n        with torch.cuda.amp.autocast():\n            # adversarial loss for both generators\n            D_H_fake = disc_H(fake_horse)\n            D_Z_fake = disc_Z(fake_zebra)\n            loss_G_H = mse(D_H_fake, torch.ones_like(D_H_fake))\n            loss_G_Z = mse(D_Z_fake, torch.ones_like(D_Z_fake))\n\n            # cycle loss\n            cycle_zebra = gen_Z(fake_horse)\n            cycle_horse = gen_H(fake_zebra)\n            cycle_zebra_loss = l1(zebra, cycle_zebra)\n            cycle_horse_loss = l1(horse, cycle_horse)\n\n            # identity loss (remove these for efficiency if you set lambda_identity=0)\n            identity_zebra = gen_Z(zebra)\n            identity_horse = gen_H(horse)\n            identity_zebra_loss = l1(zebra, identity_zebra)\n            identity_horse_loss = l1(horse, identity_horse)\n\n            # add all togethor\n            G_loss = (\n                loss_G_Z\n                + loss_G_H\n                + cycle_zebra_loss * config.LAMBDA_CYCLE\n                + cycle_horse_loss * config.LAMBDA_CYCLE\n                + identity_horse_loss * config.LAMBDA_IDENTITY\n                + identity_zebra_loss * config.LAMBDA_IDENTITY\n            )\n\n        opt_gen.zero_grad()\n        g_scaler.scale(G_loss).backward()\n        g_scaler.step(opt_gen)\n        g_scaler.update()\n\n        if idx % 200 == 0:\n            save_image(fake_horse * 0.5 + 0.5, f\"saved_images/horse_{idx}.png\")\n            save_image(fake_zebra * 0.5 + 0.5, f\"saved_images/zebra_{idx}.png\")\n\n        loop.set_postfix(H_real=H_reals / (idx + 1), H_fake=H_fakes / (idx + 1))\n\n\ndef main():\n    disc_H = Discriminator(in_channels=3).to(config.DEVICE)\n    disc_Z = Discriminator(in_channels=3).to(config.DEVICE)\n    gen_Z = Generator(img_channels=3, num_residuals=9).to(config.DEVICE)\n    gen_H = Generator(img_channels=3, num_residuals=9).to(config.DEVICE)\n    opt_disc = optim.Adam(\n        list(disc_H.parameters()) + list(disc_Z.parameters()),\n        lr=config.LEARNING_RATE,\n        betas=(0.5, 0.999),\n    )\n\n    opt_gen = optim.Adam(\n        list(gen_Z.parameters()) + list(gen_H.parameters()),\n        lr=config.LEARNING_RATE,\n        betas=(0.5, 0.999),\n    )\n\n    L1 = nn.L1Loss()\n    mse = nn.MSELoss()\n\n    if config.LOAD_MODEL:\n        load_checkpoint(\n            config.CHECKPOINT_GEN_H,\n            gen_H,\n            opt_gen,\n            config.LEARNING_RATE,\n        )\n        load_checkpoint(\n            config.CHECKPOINT_GEN_Z,\n            gen_Z,\n            opt_gen,\n            config.LEARNING_RATE,\n        )\n        load_checkpoint(\n            config.CHECKPOINT_CRITIC_H,\n            disc_H,\n            opt_disc,\n            config.LEARNING_RATE,\n        )\n        load_checkpoint(\n            config.CHECKPOINT_CRITIC_Z,\n            disc_Z,\n            opt_disc,\n            config.LEARNING_RATE,\n        )\n\n    dataset = HorseZebraDataset(\n        root_horse=config.TRAIN_DIR + \"/horses\",\n        root_zebra=config.TRAIN_DIR + \"/zebras\",\n        transform=config.transforms,\n    )\n    val_dataset = HorseZebraDataset(\n        root_horse=\"cyclegan_test/horse1\",\n        root_zebra=\"cyclegan_test/zebra1\",\n        transform=config.transforms,\n    )\n    val_loader = DataLoader(\n        val_dataset,\n        batch_size=1,\n        shuffle=False,\n        pin_memory=True,\n    )\n    loader = DataLoader(\n        dataset,\n        batch_size=config.BATCH_SIZE,\n        shuffle=True,\n        num_workers=config.NUM_WORKERS,\n        pin_memory=True,\n    )\n    g_scaler = torch.cuda.amp.GradScaler()\n    d_scaler = torch.cuda.amp.GradScaler()\n\n    for epoch in range(config.NUM_EPOCHS):\n        train_fn(\n            disc_H,\n            disc_Z,\n            gen_Z,\n            gen_H,\n            loader,\n            opt_disc,\n            opt_gen,\n            L1,\n            mse,\n            d_scaler,\n            g_scaler,\n        )\n\n        if config.SAVE_MODEL:\n            save_checkpoint(gen_H, opt_gen, filename=config.CHECKPOINT_GEN_H)\n            save_checkpoint(gen_Z, opt_gen, filename=config.CHECKPOINT_GEN_Z)\n            save_checkpoint(disc_H, opt_disc, filename=config.CHECKPOINT_CRITIC_H)\n            save_checkpoint(disc_Z, opt_disc, filename=config.CHECKPOINT_CRITIC_Z)\n\n\nif __name__ == \"__main__\":\n    main()\n"
  },
  {
    "path": "ML/Pytorch/GANs/CycleGAN/utils.py",
    "content": "import random, torch, os, numpy as np\nimport torch.nn as nn\nimport config\nimport copy\n\ndef save_checkpoint(model, optimizer, filename=\"my_checkpoint.pth.tar\"):\n    print(\"=> Saving checkpoint\")\n    checkpoint = {\n        \"state_dict\": model.state_dict(),\n        \"optimizer\": optimizer.state_dict(),\n    }\n    torch.save(checkpoint, filename)\n\n\ndef load_checkpoint(checkpoint_file, model, optimizer, lr):\n    print(\"=> Loading checkpoint\")\n    checkpoint = torch.load(checkpoint_file, map_location=config.DEVICE)\n    model.load_state_dict(checkpoint[\"state_dict\"])\n    optimizer.load_state_dict(checkpoint[\"optimizer\"])\n\n    # If we don't do this then it will just have learning rate of old checkpoint\n    # and it will lead to many hours of debugging \\:\n    for param_group in optimizer.param_groups:\n        param_group[\"lr\"] = lr\n\n\ndef seed_everything(seed=42):\n    os.environ[\"PYTHONHASHSEED\"] = str(seed)\n    random.seed(seed)\n    np.random.seed(seed)\n    torch.manual_seed(seed)\n    torch.cuda.manual_seed(seed)\n    torch.cuda.manual_seed_all(seed)\n    torch.backends.cudnn.deterministic = True\n    torch.backends.cudnn.benchmark = False"
  },
  {
    "path": "ML/Pytorch/GANs/ESRGAN/config.py",
    "content": "import torch\nfrom PIL import Image\nimport albumentations as A\nfrom albumentations.pytorch import ToTensorV2\n\nLOAD_MODEL = True\nSAVE_MODEL = True\nCHECKPOINT_GEN = \"gen.pth\"\nCHECKPOINT_DISC = \"disc.pth\"\nDEVICE = \"cuda\" if torch.cuda.is_available() else \"cpu\"\nLEARNING_RATE = 1e-4\nNUM_EPOCHS = 10000\nBATCH_SIZE = 16\nLAMBDA_GP = 10\nNUM_WORKERS = 4\nHIGH_RES = 128\nLOW_RES = HIGH_RES // 4\nIMG_CHANNELS = 3\n\nhighres_transform = A.Compose(\n    [\n        A.Normalize(mean=[0, 0, 0], std=[1, 1, 1]),\n        ToTensorV2(),\n    ]\n)\n\nlowres_transform = A.Compose(\n    [\n        A.Resize(width=LOW_RES, height=LOW_RES, interpolation=Image.BICUBIC),\n        A.Normalize(mean=[0, 0, 0], std=[1, 1, 1]),\n        ToTensorV2(),\n    ]\n)\n\nboth_transforms = A.Compose(\n    [\n        A.RandomCrop(width=HIGH_RES, height=HIGH_RES),\n        A.HorizontalFlip(p=0.5),\n        A.RandomRotate90(p=0.5),\n    ]\n)\n\ntest_transform = A.Compose(\n    [\n        A.Normalize(mean=[0, 0, 0], std=[1, 1, 1]),\n        ToTensorV2(),\n    ]\n)\n"
  },
  {
    "path": "ML/Pytorch/GANs/ESRGAN/dataset.py",
    "content": "import torch\nfrom tqdm import tqdm\nimport time\nimport torch.nn\nimport os\nfrom torch.utils.data import Dataset, DataLoader\nimport numpy as np\nimport config\nfrom PIL import Image\nimport cv2\n\n\nclass MyImageFolder(Dataset):\n    def __init__(self, root_dir):\n        super(MyImageFolder, self).__init__()\n        self.data = []\n        self.root_dir = root_dir\n        self.class_names = os.listdir(root_dir)\n\n        for index, name in enumerate(self.class_names):\n            files = os.listdir(os.path.join(root_dir, name))\n            self.data += list(zip(files, [index] * len(files)))\n\n    def __len__(self):\n        return len(self.data)\n\n    def __getitem__(self, index):\n        img_file, label = self.data[index]\n        root_and_dir = os.path.join(self.root_dir, self.class_names[label])\n\n        image = cv2.imread(os.path.join(root_and_dir, img_file))\n        image = cv2.cvtColor(image, cv2.COLOR_BGR2RGB)\n        both_transform = config.both_transforms(image=image)[\"image\"]\n        low_res = config.lowres_transform(image=both_transform)[\"image\"]\n        high_res = config.highres_transform(image=both_transform)[\"image\"]\n        return low_res, high_res\n\n\ndef test():\n    dataset = MyImageFolder(root_dir=\"data/\")\n    loader = DataLoader(dataset, batch_size=8)\n\n    for low_res, high_res in loader:\n        print(low_res.shape)\n        print(high_res.shape)\n\n\nif __name__ == \"__main__\":\n    test()\n"
  },
  {
    "path": "ML/Pytorch/GANs/ESRGAN/loss.py",
    "content": "import torch.nn as nn\nfrom torchvision.models import vgg19\nimport config\n\n\nclass VGGLoss(nn.Module):\n    def __init__(self):\n        super().__init__()\n        self.vgg = vgg19(pretrained=True).features[:35].eval().to(config.DEVICE)\n\n        for param in self.vgg.parameters():\n            param.requires_grad = False\n\n        self.loss = nn.MSELoss()\n\n    def forward(self, input, target):\n        vgg_input_features = self.vgg(input)\n        vgg_target_features = self.vgg(target)\n        return self.loss(vgg_input_features, vgg_target_features)\n"
  },
  {
    "path": "ML/Pytorch/GANs/ESRGAN/model.py",
    "content": "import torch\nfrom torch import nn\n\n\nclass ConvBlock(nn.Module):\n    def __init__(self, in_channels, out_channels, use_act, **kwargs):\n        super().__init__()\n        self.cnn = nn.Conv2d(\n            in_channels,\n            out_channels,\n            **kwargs,\n            bias=True,\n        )\n        self.act = nn.LeakyReLU(0.2, inplace=True) if use_act else nn.Identity()\n\n    def forward(self, x):\n        return self.act(self.cnn(x))\n\n\nclass UpsampleBlock(nn.Module):\n    def __init__(self, in_c, scale_factor=2):\n        super().__init__()\n        self.upsample = nn.Upsample(scale_factor=scale_factor, mode=\"nearest\")\n        self.conv = nn.Conv2d(in_c, in_c, 3, 1, 1, bias=True)\n        self.act = nn.LeakyReLU(0.2, inplace=True)\n\n    def forward(self, x):\n        return self.act(self.conv(self.upsample(x)))\n\n\nclass DenseResidualBlock(nn.Module):\n    def __init__(self, in_channels, channels=32, residual_beta=0.2):\n        super().__init__()\n        self.residual_beta = residual_beta\n        self.blocks = nn.ModuleList()\n\n        for i in range(5):\n            self.blocks.append(\n                ConvBlock(\n                    in_channels + channels * i,\n                    channels if i <= 3 else in_channels,\n                    kernel_size=3,\n                    stride=1,\n                    padding=1,\n                    use_act=True if i <= 3 else False,\n                )\n            )\n\n    def forward(self, x):\n        new_inputs = x\n        for block in self.blocks:\n            out = block(new_inputs)\n            new_inputs = torch.cat([new_inputs, out], dim=1)\n        return self.residual_beta * out + x\n\n\nclass RRDB(nn.Module):\n    def __init__(self, in_channels, residual_beta=0.2):\n        super().__init__()\n        self.residual_beta = residual_beta\n        self.rrdb = nn.Sequential(*[DenseResidualBlock(in_channels) for _ in range(3)])\n\n    def forward(self, x):\n        return self.rrdb(x) * self.residual_beta + x\n\n\nclass Generator(nn.Module):\n    def __init__(self, in_channels=3, num_channels=64, num_blocks=23):\n        super().__init__()\n        self.initial = nn.Conv2d(\n            in_channels,\n            num_channels,\n            kernel_size=3,\n            stride=1,\n            padding=1,\n            bias=True,\n        )\n        self.residuals = nn.Sequential(*[RRDB(num_channels) for _ in range(num_blocks)])\n        self.conv = nn.Conv2d(num_channels, num_channels, kernel_size=3, stride=1, padding=1)\n        self.upsamples = nn.Sequential(\n            UpsampleBlock(num_channels), UpsampleBlock(num_channels),\n        )\n        self.final = nn.Sequential(\n            nn.Conv2d(num_channels, num_channels, 3, 1, 1, bias=True),\n            nn.LeakyReLU(0.2, inplace=True),\n            nn.Conv2d(num_channels, in_channels, 3, 1, 1, bias=True),\n        )\n\n    def forward(self, x):\n        initial = self.initial(x)\n        x = self.conv(self.residuals(initial)) + initial\n        x = self.upsamples(x)\n        return self.final(x)\n\n\nclass Discriminator(nn.Module):\n    def __init__(self, in_channels=3, features=[64, 64, 128, 128, 256, 256, 512, 512]):\n        super().__init__()\n        blocks = []\n        for idx, feature in enumerate(features):\n            blocks.append(\n                ConvBlock(\n                    in_channels,\n                    feature,\n                    kernel_size=3,\n                    stride=1 + idx % 2,\n                    padding=1,\n                    use_act=True,\n                ),\n            )\n            in_channels = feature\n\n        self.blocks = nn.Sequential(*blocks)\n        self.classifier = nn.Sequential(\n            nn.AdaptiveAvgPool2d((6, 6)),\n            nn.Flatten(),\n            nn.Linear(512 * 6 * 6, 1024),\n            nn.LeakyReLU(0.2, inplace=True),\n            nn.Linear(1024, 1),\n        )\n\n    def forward(self, x):\n        x = self.blocks(x)\n        return self.classifier(x)\n\ndef initialize_weights(model, scale=0.1):\n    for m in model.modules():\n        if isinstance(m, nn.Conv2d):\n            nn.init.kaiming_normal_(m.weight.data)\n            m.weight.data *= scale\n\n        elif isinstance(m, nn.Linear):\n            nn.init.kaiming_normal_(m.weight.data)\n            m.weight.data *= scale\n\n\ndef test():\n    gen = Generator()\n    disc = Discriminator()\n    low_res = 24\n    x = torch.randn((5, 3, low_res, low_res))\n    gen_out = gen(x)\n    disc_out = disc(gen_out)\n\n    print(gen_out.shape)\n    print(disc_out.shape)\n\nif __name__ == \"__main__\":\n    test()\n\n\n\n\n\n"
  },
  {
    "path": "ML/Pytorch/GANs/ESRGAN/train.py",
    "content": "import torch\nimport config\nfrom torch import nn\nfrom torch import optim\nfrom utils import gradient_penalty, load_checkpoint, save_checkpoint, plot_examples\nfrom loss import VGGLoss\nfrom torch.utils.data import DataLoader\nfrom model import Generator, Discriminator, initialize_weights\nfrom tqdm import tqdm\nfrom dataset import MyImageFolder\nfrom torch.utils.tensorboard import SummaryWriter\n\ntorch.backends.cudnn.benchmark = True\n\ndef train_fn(\n    loader,\n    disc,\n    gen,\n    opt_gen,\n    opt_disc,\n    l1,\n    vgg_loss,\n    g_scaler,\n    d_scaler,\n    writer,\n    tb_step,\n):\n    loop = tqdm(loader, leave=True)\n\n    for idx, (low_res, high_res) in enumerate(loop):\n        high_res = high_res.to(config.DEVICE)\n        low_res = low_res.to(config.DEVICE)\n\n        with torch.cuda.amp.autocast():\n            fake = gen(low_res)\n            critic_real = disc(high_res)\n            critic_fake = disc(fake.detach())\n            gp = gradient_penalty(disc, high_res, fake, device=config.DEVICE)\n            loss_critic = (\n                -(torch.mean(critic_real) - torch.mean(critic_fake))\n                + config.LAMBDA_GP * gp\n            )\n\n        opt_disc.zero_grad()\n        d_scaler.scale(loss_critic).backward()\n        d_scaler.step(opt_disc)\n        d_scaler.update()\n\n        # Train Generator: min log(1 - D(G(z))) <-> max log(D(G(z))\n        with torch.cuda.amp.autocast():\n            l1_loss = 1e-2 * l1(fake, high_res)\n            adversarial_loss = 5e-3 * -torch.mean(disc(fake))\n            loss_for_vgg = vgg_loss(fake, high_res)\n            gen_loss = l1_loss + loss_for_vgg + adversarial_loss\n\n        opt_gen.zero_grad()\n        g_scaler.scale(gen_loss).backward()\n        g_scaler.step(opt_gen)\n        g_scaler.update()\n\n        writer.add_scalar(\"Critic loss\", loss_critic.item(), global_step=tb_step)\n        tb_step += 1\n\n        if idx % 100 == 0 and idx > 0:\n            plot_examples(\"test_images/\", gen)\n\n        loop.set_postfix(\n            gp=gp.item(),\n            critic=loss_critic.item(),\n            l1=l1_loss.item(),\n            vgg=loss_for_vgg.item(),\n            adversarial=adversarial_loss.item(),\n        )\n\n    return tb_step\n\n\ndef main():\n    dataset = MyImageFolder(root_dir=\"data/\")\n    loader = DataLoader(\n        dataset,\n        batch_size=config.BATCH_SIZE,\n        shuffle=True,\n        pin_memory=True,\n        num_workers=config.NUM_WORKERS,\n    )\n    gen = Generator(in_channels=3).to(config.DEVICE)\n    disc = Discriminator(in_channels=3).to(config.DEVICE)\n    initialize_weights(gen)\n    opt_gen = optim.Adam(gen.parameters(), lr=config.LEARNING_RATE, betas=(0.0, 0.9))\n    opt_disc = optim.Adam(disc.parameters(), lr=config.LEARNING_RATE, betas=(0.0, 0.9))\n    writer = SummaryWriter(\"logs\")\n    tb_step = 0\n    l1 = nn.L1Loss()\n    gen.train()\n    disc.train()\n    vgg_loss = VGGLoss()\n\n    g_scaler = torch.cuda.amp.GradScaler()\n    d_scaler = torch.cuda.amp.GradScaler()\n\n    if config.LOAD_MODEL:\n        load_checkpoint(\n            config.CHECKPOINT_GEN,\n            gen,\n            opt_gen,\n            config.LEARNING_RATE,\n        )\n        load_checkpoint(\n            config.CHECKPOINT_DISC,\n            disc,\n            opt_disc,\n            config.LEARNING_RATE,\n        )\n\n\n    for epoch in range(config.NUM_EPOCHS):\n        tb_step = train_fn(\n            loader,\n            disc,\n            gen,\n            opt_gen,\n            opt_disc,\n            l1,\n            vgg_loss,\n            g_scaler,\n            d_scaler,\n            writer,\n            tb_step,\n        )\n\n        if config.SAVE_MODEL:\n            save_checkpoint(gen, opt_gen, filename=config.CHECKPOINT_GEN)\n            save_checkpoint(disc, opt_disc, filename=config.CHECKPOINT_DISC)\n\n\nif __name__ == \"__main__\":\n    try_model = True\n\n    if try_model:\n        # Will just use pretrained weights and run on images\n        # in test_images/ and save the ones to SR in saved/\n        gen = Generator(in_channels=3).to(config.DEVICE)\n        opt_gen = optim.Adam(gen.parameters(), lr=config.LEARNING_RATE, betas=(0.0, 0.9))\n        load_checkpoint(\n            config.CHECKPOINT_GEN,\n            gen,\n            opt_gen,\n            config.LEARNING_RATE,\n        )\n        plot_examples(\"test_images/\", gen)\n    else:\n        # This will train from scratch\n        main()\n"
  },
  {
    "path": "ML/Pytorch/GANs/ESRGAN/utils.py",
    "content": "import torch\nimport os\nimport config\nimport numpy as np\nfrom PIL import Image\nfrom torchvision.utils import save_image\n\n\ndef gradient_penalty(critic, real, fake, device):\n    BATCH_SIZE, C, H, W = real.shape\n    alpha = torch.rand((BATCH_SIZE, 1, 1, 1)).repeat(1, C, H, W).to(device)\n    interpolated_images = real * alpha + fake.detach() * (1 - alpha)\n    interpolated_images.requires_grad_(True)\n\n    # Calculate critic scores\n    mixed_scores = critic(interpolated_images)\n\n    # Take the gradient of the scores with respect to the images\n    gradient = torch.autograd.grad(\n        inputs=interpolated_images,\n        outputs=mixed_scores,\n        grad_outputs=torch.ones_like(mixed_scores),\n        create_graph=True,\n        retain_graph=True,\n    )[0]\n    gradient = gradient.view(gradient.shape[0], -1)\n    gradient_norm = gradient.norm(2, dim=1)\n    gradient_penalty = torch.mean((gradient_norm - 1) ** 2)\n    return gradient_penalty\n\n\ndef save_checkpoint(model, optimizer, filename=\"my_checkpoint.pth.tar\"):\n    print(\"=> Saving checkpoint\")\n    checkpoint = {\n        \"state_dict\": model.state_dict(),\n        \"optimizer\": optimizer.state_dict(),\n    }\n    torch.save(checkpoint, filename)\n\n\ndef load_checkpoint(checkpoint_file, model, optimizer, lr):\n    print(\"=> Loading checkpoint\")\n    checkpoint = torch.load(checkpoint_file, map_location=config.DEVICE)\n    # model.load_state_dict(checkpoint)\n    model.load_state_dict(checkpoint[\"state_dict\"])\n    optimizer.load_state_dict(checkpoint[\"optimizer\"])\n\n    # If we don't do this then it will just have learning rate of old checkpoint\n    # and it will lead to many hours of debugging \\:\n    for param_group in optimizer.param_groups:\n        param_group[\"lr\"] = lr\n\n\ndef plot_examples(low_res_folder, gen):\n    files = os.listdir(low_res_folder)\n\n    gen.eval()\n    for file in files:\n        image = Image.open(\"test_images/\" + file)\n        with torch.no_grad():\n            upscaled_img = gen(\n                config.test_transform(image=np.asarray(image))[\"image\"]\n                .unsqueeze(0)\n                .to(config.DEVICE)\n            )\n        save_image(upscaled_img, f\"saved/{file}\")\n    gen.train()\n"
  },
  {
    "path": "ML/Pytorch/GANs/Pix2Pix/README.md",
    "content": "# Pix2Pix\nA clean, simple and readable implementation of Pix2Pix in PyTorch. I've tried to replicate the original paper as closely as possible, so if you read the paper the implementation should be pretty much identical. The results from this implementation I would say is on par with the paper, I'll include some examples results below.\n\n## Results\nThe model was trained on the Maps dataset and for fun I also tried using it to colorize anime.\n\n|1st row: Input / 2nd row: Generated / 3rd row: Target|\n|:---:|\n|![](results/results_anime.png)|\n|![](results/results_maps.png)|\n\n\n### Maps dataset\nThe dataset can be downloaded from Kaggle: [link](https://www.kaggle.com/vikramtiwari/pix2pix-dataset).\n\n### Anime dataset\nThe dataset can be downloaded from Kaggle: [link](https://www.kaggle.com/ktaebum/anime-sketch-colorization-pair).\n\n### Download pretrained weights\nPretrained weights for Satellite image to Google Map [here](https://github.com/aladdinpersson/Machine-Learning-Collection/releases/download/1.0/Pix2Pix_Weights_Satellite_to_Map.zip).\n\nPretrained weights for Colorizing Anime [here](https://github.com/aladdinpersson/Machine-Learning-Collection/releases/download/1.0/Pix2Pix_Weights_Colorize_Anime.zip).\n\nExtract the zip file and put the pth.tar files in the directory with all the python files. Make sure you put LOAD_MODEL=True in the config.py file.\n\n### Training\nEdit the config.py file to match the setup you want to use. Then run train.py\n\n## Pix2Pix paper\n### Image-to-Image Translation with Conditional Adversarial Networks by Phillip Isola, Jun-Yan Zhu, Tinghui Zhou, Alexei A. Efros\n\n#### Abstract\nWe investigate conditional adversarial networks as a general-purpose solution to image-to-image translation problems. These networks not only learn the mapping from input image to output image, but also learn a loss function to train this mapping. This makes it possible to apply the same generic approach to problems that traditionally would require very different loss formulations. We demonstrate that this approach is effective at synthesizing photos from label maps, reconstructing objects from edge maps, and colorizing images, among other tasks. Indeed, since the release of the pix2pix software associated with this paper, a large number of internet users (many of them artists) have posted their own experiments with our system, further demonstrating its wide applicability and ease of adoption without the need for parameter tweaking. As a community, we no longer hand-engineer our mapping functions, and this work suggests we can achieve reasonable results without hand-engineering our loss functions either.\n```\n@misc{isola2018imagetoimage,\n      title={Image-to-Image Translation with Conditional Adversarial Networks}, \n      author={Phillip Isola and Jun-Yan Zhu and Tinghui Zhou and Alexei A. Efros},\n      year={2018},\n      eprint={1611.07004},\n      archivePrefix={arXiv},\n      primaryClass={cs.CV}\n}\n```\n"
  },
  {
    "path": "ML/Pytorch/GANs/Pix2Pix/config.py",
    "content": "import torch\nimport albumentations as A\nfrom albumentations.pytorch import ToTensorV2\n\nDEVICE = \"cuda\" if torch.cuda.is_available() else \"cpu\"\nTRAIN_DIR = \"data/train\"\nVAL_DIR = \"data/val\"\nLEARNING_RATE = 2e-4\nBATCH_SIZE = 16\nNUM_WORKERS = 2\nIMAGE_SIZE = 256\nCHANNELS_IMG = 3\nL1_LAMBDA = 100\nLAMBDA_GP = 10\nNUM_EPOCHS = 500\nLOAD_MODEL = False\nSAVE_MODEL = False\nCHECKPOINT_DISC = \"disc.pth.tar\"\nCHECKPOINT_GEN = \"gen.pth.tar\"\n\nboth_transform = A.Compose(\n    [A.Resize(width=256, height=256),], additional_targets={\"image0\": \"image\"},\n)\n\ntransform_only_input = A.Compose(\n    [\n        A.HorizontalFlip(p=0.5),\n        A.ColorJitter(p=0.2),\n        A.Normalize(mean=[0.5, 0.5, 0.5], std=[0.5, 0.5, 0.5], max_pixel_value=255.0,),\n        ToTensorV2(),\n    ]\n)\n\ntransform_only_mask = A.Compose(\n    [\n        A.Normalize(mean=[0.5, 0.5, 0.5], std=[0.5, 0.5, 0.5], max_pixel_value=255.0,),\n        ToTensorV2(),\n    ]\n)\n"
  },
  {
    "path": "ML/Pytorch/GANs/Pix2Pix/dataset.py",
    "content": "import numpy as np\nimport config\nimport os\nfrom PIL import Image\nfrom torch.utils.data import Dataset, DataLoader\nfrom torchvision.utils import save_image\n\n\nclass MapDataset(Dataset):\n    def __init__(self, root_dir):\n        self.root_dir = root_dir\n        self.list_files = os.listdir(self.root_dir)\n\n    def __len__(self):\n        return len(self.list_files)\n\n    def __getitem__(self, index):\n        img_file = self.list_files[index]\n        img_path = os.path.join(self.root_dir, img_file)\n        image = np.array(Image.open(img_path))\n        input_image = image[:, :600, :]\n        target_image = image[:, 600:, :]\n\n        augmentations = config.both_transform(image=input_image, image0=target_image)\n        input_image = augmentations[\"image\"]\n        target_image = augmentations[\"image0\"]\n\n        input_image = config.transform_only_input(image=input_image)[\"image\"]\n        target_image = config.transform_only_mask(image=target_image)[\"image\"]\n\n        return input_image, target_image\n\n\nif __name__ == \"__main__\":\n    dataset = MapDataset(\"data/train/\")\n    loader = DataLoader(dataset, batch_size=5)\n    for x, y in loader:\n        print(x.shape)\n        save_image(x, \"x.png\")\n        save_image(y, \"y.png\")\n        import sys\n\n        sys.exit()\n"
  },
  {
    "path": "ML/Pytorch/GANs/Pix2Pix/discriminator_model.py",
    "content": "import torch\nimport torch.nn as nn\n\n\nclass CNNBlock(nn.Module):\n    def __init__(self, in_channels, out_channels, stride):\n        super(CNNBlock, self).__init__()\n        self.conv = nn.Sequential(\n            nn.Conv2d(\n                in_channels, out_channels, 4, stride, 1, bias=False, padding_mode=\"reflect\"\n            ),\n            nn.BatchNorm2d(out_channels),\n            nn.LeakyReLU(0.2),\n        )\n\n    def forward(self, x):\n        return self.conv(x)\n\n\nclass Discriminator(nn.Module):\n    def __init__(self, in_channels=3, features=[64, 128, 256, 512]):\n        super().__init__()\n        self.initial = nn.Sequential(\n            nn.Conv2d(\n                in_channels * 2,\n                features[0],\n                kernel_size=4,\n                stride=2,\n                padding=1,\n                padding_mode=\"reflect\",\n            ),\n            nn.LeakyReLU(0.2),\n        )\n\n        layers = []\n        in_channels = features[0]\n        for feature in features[1:]:\n            layers.append(\n                CNNBlock(in_channels, feature, stride=1 if feature == features[-1] else 2),\n            )\n            in_channels = feature\n\n        layers.append(\n            nn.Conv2d(\n                in_channels, 1, kernel_size=4, stride=1, padding=1, padding_mode=\"reflect\"\n            ),\n        )\n\n        self.model = nn.Sequential(*layers)\n\n    def forward(self, x, y):\n        x = torch.cat([x, y], dim=1)\n        x = self.initial(x)\n        x = self.model(x)\n        return x\n\n\ndef test():\n    x = torch.randn((1, 3, 256, 256))\n    y = torch.randn((1, 3, 256, 256))\n    model = Discriminator(in_channels=3)\n    preds = model(x, y)\n    print(model)\n    print(preds.shape)\n\n\nif __name__ == \"__main__\":\n    test()\n"
  },
  {
    "path": "ML/Pytorch/GANs/Pix2Pix/generator_model.py",
    "content": "import torch\nimport torch.nn as nn\n\n\nclass Block(nn.Module):\n    def __init__(self, in_channels, out_channels, down=True, act=\"relu\", use_dropout=False):\n        super(Block, self).__init__()\n        self.conv = nn.Sequential(\n            nn.Conv2d(in_channels, out_channels, 4, 2, 1, bias=False, padding_mode=\"reflect\")\n            if down\n            else nn.ConvTranspose2d(in_channels, out_channels, 4, 2, 1, bias=False),\n            nn.BatchNorm2d(out_channels),\n            nn.ReLU() if act == \"relu\" else nn.LeakyReLU(0.2),\n        )\n\n        self.use_dropout = use_dropout\n        self.dropout = nn.Dropout(0.5)\n        self.down = down\n\n    def forward(self, x):\n        x = self.conv(x)\n        return self.dropout(x) if self.use_dropout else x\n\n\nclass Generator(nn.Module):\n    def __init__(self, in_channels=3, features=64):\n        super().__init__()\n        self.initial_down = nn.Sequential(\n            nn.Conv2d(in_channels, features, 4, 2, 1, padding_mode=\"reflect\"),\n            nn.LeakyReLU(0.2),\n        )\n        self.down1 = Block(features, features * 2, down=True, act=\"leaky\", use_dropout=False)\n        self.down2 = Block(\n            features * 2, features * 4, down=True, act=\"leaky\", use_dropout=False\n        )\n        self.down3 = Block(\n            features * 4, features * 8, down=True, act=\"leaky\", use_dropout=False\n        )\n        self.down4 = Block(\n            features * 8, features * 8, down=True, act=\"leaky\", use_dropout=False\n        )\n        self.down5 = Block(\n            features * 8, features * 8, down=True, act=\"leaky\", use_dropout=False\n        )\n        self.down6 = Block(\n            features * 8, features * 8, down=True, act=\"leaky\", use_dropout=False\n        )\n        self.bottleneck = nn.Sequential(\n            nn.Conv2d(features * 8, features * 8, 4, 2, 1), nn.ReLU()\n        )\n\n        self.up1 = Block(features * 8, features * 8, down=False, act=\"relu\", use_dropout=True)\n        self.up2 = Block(\n            features * 8 * 2, features * 8, down=False, act=\"relu\", use_dropout=True\n        )\n        self.up3 = Block(\n            features * 8 * 2, features * 8, down=False, act=\"relu\", use_dropout=True\n        )\n        self.up4 = Block(\n            features * 8 * 2, features * 8, down=False, act=\"relu\", use_dropout=False\n        )\n        self.up5 = Block(\n            features * 8 * 2, features * 4, down=False, act=\"relu\", use_dropout=False\n        )\n        self.up6 = Block(\n            features * 4 * 2, features * 2, down=False, act=\"relu\", use_dropout=False\n        )\n        self.up7 = Block(features * 2 * 2, features, down=False, act=\"relu\", use_dropout=False)\n        self.final_up = nn.Sequential(\n            nn.ConvTranspose2d(features * 2, in_channels, kernel_size=4, stride=2, padding=1),\n            nn.Tanh(),\n        )\n\n    def forward(self, x):\n        d1 = self.initial_down(x)\n        d2 = self.down1(d1)\n        d3 = self.down2(d2)\n        d4 = self.down3(d3)\n        d5 = self.down4(d4)\n        d6 = self.down5(d5)\n        d7 = self.down6(d6)\n        bottleneck = self.bottleneck(d7)\n        up1 = self.up1(bottleneck)\n        up2 = self.up2(torch.cat([up1, d7], 1))\n        up3 = self.up3(torch.cat([up2, d6], 1))\n        up4 = self.up4(torch.cat([up3, d5], 1))\n        up5 = self.up5(torch.cat([up4, d4], 1))\n        up6 = self.up6(torch.cat([up5, d3], 1))\n        up7 = self.up7(torch.cat([up6, d2], 1))\n        return self.final_up(torch.cat([up7, d1], 1))\n\n\ndef test():\n    x = torch.randn((1, 3, 256, 256))\n    model = Generator(in_channels=3, features=64)\n    preds = model(x)\n    print(preds.shape)\n\n\nif __name__ == \"__main__\":\n    test()\n"
  },
  {
    "path": "ML/Pytorch/GANs/Pix2Pix/train.py",
    "content": "import torch\nfrom utils import save_checkpoint, load_checkpoint, save_some_examples\nimport torch.nn as nn\nimport torch.optim as optim\nimport config\nfrom dataset import MapDataset\nfrom generator_model import Generator\nfrom discriminator_model import Discriminator\nfrom torch.utils.data import DataLoader\nfrom tqdm import tqdm\nfrom torchvision.utils import save_image\n\ntorch.backends.cudnn.benchmark = True\n\n\ndef train_fn(\n    disc, gen, loader, opt_disc, opt_gen, l1_loss, bce, g_scaler, d_scaler,\n):\n    loop = tqdm(loader, leave=True)\n\n    for idx, (x, y) in enumerate(loop):\n        x = x.to(config.DEVICE)\n        y = y.to(config.DEVICE)\n\n        # Train Discriminator\n        with torch.cuda.amp.autocast():\n            y_fake = gen(x)\n            D_real = disc(x, y)\n            D_real_loss = bce(D_real, torch.ones_like(D_real))\n            D_fake = disc(x, y_fake.detach())\n            D_fake_loss = bce(D_fake, torch.zeros_like(D_fake))\n            D_loss = (D_real_loss + D_fake_loss) / 2\n\n        disc.zero_grad()\n        d_scaler.scale(D_loss).backward()\n        d_scaler.step(opt_disc)\n        d_scaler.update()\n\n        # Train generator\n        with torch.cuda.amp.autocast():\n            D_fake = disc(x, y_fake)\n            G_fake_loss = bce(D_fake, torch.ones_like(D_fake))\n            L1 = l1_loss(y_fake, y) * config.L1_LAMBDA\n            G_loss = G_fake_loss + L1\n\n        opt_gen.zero_grad()\n        g_scaler.scale(G_loss).backward()\n        g_scaler.step(opt_gen)\n        g_scaler.update()\n\n        if idx % 10 == 0:\n            loop.set_postfix(\n                D_real=torch.sigmoid(D_real).mean().item(),\n                D_fake=torch.sigmoid(D_fake).mean().item(),\n            )\n\n\ndef main():\n    disc = Discriminator(in_channels=3).to(config.DEVICE)\n    gen = Generator(in_channels=3, features=64).to(config.DEVICE)\n    opt_disc = optim.Adam(disc.parameters(), lr=config.LEARNING_RATE, betas=(0.5, 0.999),)\n    opt_gen = optim.Adam(gen.parameters(), lr=config.LEARNING_RATE, betas=(0.5, 0.999))\n    BCE = nn.BCEWithLogitsLoss()\n    L1_LOSS = nn.L1Loss()\n\n    if config.LOAD_MODEL:\n        load_checkpoint(\n            config.CHECKPOINT_GEN, gen, opt_gen, config.LEARNING_RATE,\n        )\n        load_checkpoint(\n            config.CHECKPOINT_DISC, disc, opt_disc, config.LEARNING_RATE,\n        )\n\n    train_dataset = MapDataset(root_dir=config.TRAIN_DIR)\n    train_loader = DataLoader(\n        train_dataset,\n        batch_size=config.BATCH_SIZE,\n        shuffle=True,\n        num_workers=config.NUM_WORKERS,\n    )\n    g_scaler = torch.cuda.amp.GradScaler()\n    d_scaler = torch.cuda.amp.GradScaler()\n    val_dataset = MapDataset(root_dir=config.VAL_DIR)\n    val_loader = DataLoader(val_dataset, batch_size=1, shuffle=False)\n\n    for epoch in range(config.NUM_EPOCHS):\n        train_fn(\n            disc, gen, train_loader, opt_disc, opt_gen, L1_LOSS, BCE, g_scaler, d_scaler,\n        )\n\n        if config.SAVE_MODEL and epoch % 5 == 0:\n            save_checkpoint(gen, opt_gen, filename=config.CHECKPOINT_GEN)\n            save_checkpoint(disc, opt_disc, filename=config.CHECKPOINT_DISC)\n\n        save_some_examples(gen, val_loader, epoch, folder=\"evaluation\")\n\n\nif __name__ == \"__main__\":\n    main()\n"
  },
  {
    "path": "ML/Pytorch/GANs/Pix2Pix/utils.py",
    "content": "import torch\nimport config\nfrom torchvision.utils import save_image\n\ndef save_some_examples(gen, val_loader, epoch, folder):\n    x, y = next(iter(val_loader))\n    x, y = x.to(config.DEVICE), y.to(config.DEVICE)\n    gen.eval()\n    with torch.no_grad():\n        y_fake = gen(x)\n        y_fake = y_fake * 0.5 + 0.5  # remove normalization#\n        save_image(y_fake, folder + f\"/y_gen_{epoch}.png\")\n        save_image(x * 0.5 + 0.5, folder + f\"/input_{epoch}.png\")\n        if epoch == 1:\n            save_image(y * 0.5 + 0.5, folder + f\"/label_{epoch}.png\")\n    gen.train()\n\n\ndef save_checkpoint(model, optimizer, filename=\"my_checkpoint.pth.tar\"):\n    print(\"=> Saving checkpoint\")\n    checkpoint = {\n        \"state_dict\": model.state_dict(),\n        \"optimizer\": optimizer.state_dict(),\n    }\n    torch.save(checkpoint, filename)\n\n\ndef load_checkpoint(checkpoint_file, model, optimizer, lr):\n    print(\"=> Loading checkpoint\")\n    checkpoint = torch.load(checkpoint_file, map_location=config.DEVICE)\n    model.load_state_dict(checkpoint[\"state_dict\"])\n    optimizer.load_state_dict(checkpoint[\"optimizer\"])\n\n    # If we don't do this then it will just have learning rate of old checkpoint\n    # and it will lead to many hours of debugging \\:\n    for param_group in optimizer.param_groups:\n        param_group[\"lr\"] = lr\n\n\n"
  },
  {
    "path": "ML/Pytorch/GANs/ProGAN/README.md",
    "content": "# ProGAN\nA clean, simple and readable implementation of ProGAN in PyTorch. I've tried to replicate the original paper as closely as possible, so if you read the paper the implementation should be pretty much identical. The results from this implementation I would say is close to the paper, but I did not train it to 1024x1024 images because I found it took too long. I also did not use number of channels = 512, but instead made the model smaller so that would be something that could worsen the results. I'll include some examples results below.\n\n## Results\n||\n|:---:|\n|![](results/result1.png)|\n|![](results/64_examples.png)|\n\n\n### Celeb-HQ dataset\nThe dataset can be downloaded from Kaggle: [link](https://www.kaggle.com/lamsimon/celebahq).\n\n### Download pretrained weights\nDownload pretrained weights [here](https://github.com/aladdinpersson/Machine-Learning-Collection/releases/download/1.0/ProGAN_weights.zip).\n\nExtract the zip file and put the pth.tar files in the directory with all the python files. Make sure you put LOAD_MODEL=True in the config.py file.\n\n### Training\nEdit the config.py file to match the setup you want to use. Then run train.py\n\n## ProGAN paper\n### Progressive Growing of GANs for Improved Quality, Stability, and Variation by Tero Karras, Timo Aila, Samuli Laine, Jaakko Lehtinen\n\n#### Abstract\nWe investigate conditional adversarial networks as a general-purpose solution to image-to-image translation problems. These networks not only learn the mapping from input image to output image, but also learn a loss function to train this mapping. This makes it possible to apply the same generic approach to problems that traditionally would require very different loss formulations. We demonstrate that this approach is effective at synthesizing photos from label maps, reconstructing objects from edge maps, and colorizing images, among other tasks. Indeed, since the release of the pix2pix software associated with this paper, a large number of internet users (many of them artists) have posted their own experiments with our system, further demonstrating its wide applicability and ease of adoption without the need for parameter tweaking. As a community, we no longer hand-engineer our mapping functions, and this work suggests we can achieve reasonable results without hand-engineering our loss functions either.\n```\n@misc{karras2018progressive,\n      title={Progressive Growing of GANs for Improved Quality, Stability, and Variation}, \n      author={Tero Karras and Timo Aila and Samuli Laine and Jaakko Lehtinen},\n      year={2018},\n      eprint={1710.10196},\n      archivePrefix={arXiv},\n      primaryClass={cs.NE}\n}\n```\n"
  },
  {
    "path": "ML/Pytorch/GANs/ProGAN/config.py",
    "content": "import cv2\nimport torch\nfrom math import log2\n\nSTART_TRAIN_AT_IMG_SIZE = 128\nDATASET = 'celeb_dataset'\nCHECKPOINT_GEN = \"generator.pth\"\nCHECKPOINT_CRITIC = \"critic.pth\"\nDEVICE = \"cuda\" if torch.cuda.is_available() else \"cpu\"\nSAVE_MODEL = True\nLOAD_MODEL = False\nLEARNING_RATE = 1e-3\nBATCH_SIZES = [32, 32, 32, 16, 16, 16, 16, 8, 4]\nCHANNELS_IMG = 3\nZ_DIM = 256  # should be 512 in original paper\nIN_CHANNELS = 256  # should be 512 in original paper\nCRITIC_ITERATIONS = 1\nLAMBDA_GP = 10\nPROGRESSIVE_EPOCHS = [30] * len(BATCH_SIZES)\nFIXED_NOISE = torch.randn(8, Z_DIM, 1, 1).to(DEVICE)\nNUM_WORKERS = 4"
  },
  {
    "path": "ML/Pytorch/GANs/ProGAN/model.py",
    "content": "\"\"\"\nImplementation of ProGAN generator and discriminator with the key\nattributions from the paper. We have tried to make the implementation\ncompact but a goal is also to keep it readable and understandable.\nSpecifically the key points implemented are:\n\n1) Progressive growing (of model and layers)\n2) Minibatch std on Discriminator\n3) Normalization with PixelNorm\n4) Equalized Learning Rate (here I cheated and only did it on Conv layers)\n\"\"\"\n\nimport torch\nimport torch.nn as nn\nimport torch.nn.functional as F\nfrom math import log2\n\n\"\"\"\nFactors is used in Discrmininator and Generator for how much\nthe channels should be multiplied and expanded for each layer,\nso specifically the first 5 layers the channels stay the same,\nwhereas when we increase the img_size (towards the later layers)\nwe decrease the number of chanels by 1/2, 1/4, etc.\n\"\"\"\nfactors = [1, 1, 1, 1, 1 / 2, 1 / 4, 1 / 8, 1 / 16, 1 / 32]\n\n\nclass WSConv2d(nn.Module):\n    \"\"\"\n    Weight scaled Conv2d (Equalized Learning Rate)\n    Note that input is multiplied rather than changing weights\n    this will have the same result.\n\n    Inspired and looked at:\n    https://github.com/nvnbny/progressive_growing_of_gans/blob/master/modelUtils.py\n    \"\"\"\n\n    def __init__(\n        self, in_channels, out_channels, kernel_size=3, stride=1, padding=1, gain=2\n    ):\n        super(WSConv2d, self).__init__()\n        self.conv = nn.Conv2d(in_channels, out_channels, kernel_size, stride, padding)\n        self.scale = (gain / (in_channels * (kernel_size ** 2))) ** 0.5\n        self.bias = self.conv.bias\n        self.conv.bias = None\n\n        # initialize conv layer\n        nn.init.normal_(self.conv.weight)\n        nn.init.zeros_(self.bias)\n\n    def forward(self, x):\n        return self.conv(x * self.scale) + self.bias.view(1, self.bias.shape[0], 1, 1)\n\n\nclass PixelNorm(nn.Module):\n    def __init__(self):\n        super(PixelNorm, self).__init__()\n        self.epsilon = 1e-8\n\n    def forward(self, x):\n        return x / torch.sqrt(torch.mean(x ** 2, dim=1, keepdim=True) + self.epsilon)\n\n\nclass ConvBlock(nn.Module):\n    def __init__(self, in_channels, out_channels, use_pixelnorm=True):\n        super(ConvBlock, self).__init__()\n        self.use_pn = use_pixelnorm\n        self.conv1 = WSConv2d(in_channels, out_channels)\n        self.conv2 = WSConv2d(out_channels, out_channels)\n        self.leaky = nn.LeakyReLU(0.2)\n        self.pn = PixelNorm()\n\n    def forward(self, x):\n        x = self.leaky(self.conv1(x))\n        x = self.pn(x) if self.use_pn else x\n        x = self.leaky(self.conv2(x))\n        x = self.pn(x) if self.use_pn else x\n        return x\n\n\nclass Generator(nn.Module):\n    def __init__(self, z_dim, in_channels, img_channels=3):\n        super(Generator, self).__init__()\n\n        # initial takes 1x1 -> 4x4\n        self.initial = nn.Sequential(\n            PixelNorm(),\n            nn.ConvTranspose2d(z_dim, in_channels, 4, 1, 0),\n            nn.LeakyReLU(0.2),\n            WSConv2d(in_channels, in_channels, kernel_size=3, stride=1, padding=1),\n            nn.LeakyReLU(0.2),\n            PixelNorm(),\n        )\n\n        self.initial_rgb = WSConv2d(\n            in_channels, img_channels, kernel_size=1, stride=1, padding=0\n        )\n        self.prog_blocks, self.rgb_layers = (\n            nn.ModuleList([]),\n            nn.ModuleList([self.initial_rgb]),\n        )\n\n        for i in range(\n            len(factors) - 1\n        ):  # -1 to prevent index error because of factors[i+1]\n            conv_in_c = int(in_channels * factors[i])\n            conv_out_c = int(in_channels * factors[i + 1])\n            self.prog_blocks.append(ConvBlock(conv_in_c, conv_out_c))\n            self.rgb_layers.append(\n                WSConv2d(conv_out_c, img_channels, kernel_size=1, stride=1, padding=0)\n            )\n\n    def fade_in(self, alpha, upscaled, generated):\n        # alpha should be scalar within [0, 1], and upscale.shape == generated.shape\n        return torch.tanh(alpha * generated + (1 - alpha) * upscaled)\n\n    def forward(self, x, alpha, steps):\n        out = self.initial(x)\n\n        if steps == 0:\n            return self.initial_rgb(out)\n\n        for step in range(steps):\n            upscaled = F.interpolate(out, scale_factor=2, mode=\"nearest\")\n            out = self.prog_blocks[step](upscaled)\n\n        # The number of channels in upscale will stay the same, while\n        # out which has moved through prog_blocks might change. To ensure\n        # we can convert both to rgb we use different rgb_layers\n        # (steps-1) and steps for upscaled, out respectively\n        final_upscaled = self.rgb_layers[steps - 1](upscaled)\n        final_out = self.rgb_layers[steps](out)\n        return self.fade_in(alpha, final_upscaled, final_out)\n\n\nclass Discriminator(nn.Module):\n    def __init__(self, z_dim, in_channels, img_channels=3):\n        super(Discriminator, self).__init__()\n        self.prog_blocks, self.rgb_layers = nn.ModuleList([]), nn.ModuleList([])\n        self.leaky = nn.LeakyReLU(0.2)\n\n        # here we work back ways from factors because the discriminator\n        # should be mirrored from the generator. So the first prog_block and\n        # rgb layer we append will work for input size 1024x1024, then 512->256-> etc\n        for i in range(len(factors) - 1, 0, -1):\n            conv_in = int(in_channels * factors[i])\n            conv_out = int(in_channels * factors[i - 1])\n            self.prog_blocks.append(ConvBlock(conv_in, conv_out, use_pixelnorm=False))\n            self.rgb_layers.append(\n                WSConv2d(img_channels, conv_in, kernel_size=1, stride=1, padding=0)\n            )\n\n        # perhaps confusing name \"initial_rgb\" this is just the RGB layer for 4x4 input size\n        # did this to \"mirror\" the generator initial_rgb\n        self.initial_rgb = WSConv2d(\n            img_channels, in_channels, kernel_size=1, stride=1, padding=0\n        )\n        self.rgb_layers.append(self.initial_rgb)\n        self.avg_pool = nn.AvgPool2d(\n            kernel_size=2, stride=2\n        )  # down sampling using avg pool\n\n        # this is the block for 4x4 input size\n        self.final_block = nn.Sequential(\n            # +1 to in_channels because we concatenate from MiniBatch std\n            WSConv2d(in_channels + 1, in_channels, kernel_size=3, padding=1),\n            nn.LeakyReLU(0.2),\n            WSConv2d(in_channels, in_channels, kernel_size=4, padding=0, stride=1),\n            nn.LeakyReLU(0.2),\n            WSConv2d(\n                in_channels, 1, kernel_size=1, padding=0, stride=1\n            ),  # we use this instead of linear layer\n        )\n\n    def fade_in(self, alpha, downscaled, out):\n        \"\"\"Used to fade in downscaled using avg pooling and output from CNN\"\"\"\n        # alpha should be scalar within [0, 1], and upscale.shape == generated.shape\n        return alpha * out + (1 - alpha) * downscaled\n\n    def minibatch_std(self, x):\n        batch_statistics = (\n            torch.std(x, dim=0).mean().repeat(x.shape[0], 1, x.shape[2], x.shape[3])\n        )\n        # we take the std for each example (across all channels, and pixels) then we repeat it\n        # for a single channel and concatenate it with the image. In this way the discriminator\n        # will get information about the variation in the batch/image\n        return torch.cat([x, batch_statistics], dim=1)\n\n    def forward(self, x, alpha, steps):\n        # where we should start in the list of prog_blocks, maybe a bit confusing but\n        # the last is for the 4x4. So example let's say steps=1, then we should start\n        # at the second to last because input_size will be 8x8. If steps==0 we just\n        # use the final block\n        cur_step = len(self.prog_blocks) - steps\n\n        # convert from rgb as initial step, this will depend on\n        # the image size (each will have it's on rgb layer)\n        out = self.leaky(self.rgb_layers[cur_step](x))\n\n        if steps == 0:  # i.e, image is 4x4\n            out = self.minibatch_std(out)\n            return self.final_block(out).view(out.shape[0], -1)\n\n        # because prog_blocks might change the channels, for down scale we use rgb_layer\n        # from previous/smaller size which in our case correlates to +1 in the indexing\n        downscaled = self.leaky(self.rgb_layers[cur_step + 1](self.avg_pool(x)))\n        out = self.avg_pool(self.prog_blocks[cur_step](out))\n\n        # the fade_in is done first between the downscaled and the input\n        # this is opposite from the generator\n        out = self.fade_in(alpha, downscaled, out)\n\n        for step in range(cur_step + 1, len(self.prog_blocks)):\n            out = self.prog_blocks[step](out)\n            out = self.avg_pool(out)\n\n        out = self.minibatch_std(out)\n        return self.final_block(out).view(out.shape[0], -1)\n\n\nif __name__ == \"__main__\":\n    Z_DIM = 100\n    IN_CHANNELS = 256\n    gen = Generator(Z_DIM, IN_CHANNELS, img_channels=3)\n    critic = Discriminator(Z_DIM, IN_CHANNELS, img_channels=3)\n\n    for img_size in [4, 8, 16, 32, 64, 128, 256, 512, 1024]:\n        num_steps = int(log2(img_size / 4))\n        x = torch.randn((1, Z_DIM, 1, 1))\n        z = gen(x, 0.5, steps=num_steps)\n        assert z.shape == (1, 3, img_size, img_size)\n        out = critic(z, alpha=0.5, steps=num_steps)\n        assert out.shape == (1, 1)\n        print(f\"Success! At img size: {img_size}\")\n"
  },
  {
    "path": "ML/Pytorch/GANs/ProGAN/train.py",
    "content": "\"\"\" Training of ProGAN using WGAN-GP loss\"\"\"\n\nimport torch\nimport torch.optim as optim\nimport torchvision.datasets as datasets\nimport torchvision.transforms as transforms\nfrom torch.utils.data import DataLoader\nfrom torch.utils.tensorboard import SummaryWriter\nfrom utils import (\n    gradient_penalty,\n    plot_to_tensorboard,\n    save_checkpoint,\n    load_checkpoint,\n    generate_examples,\n)\nfrom model import Discriminator, Generator\nfrom math import log2\nfrom tqdm import tqdm\nimport config\n\ntorch.backends.cudnn.benchmarks = True\n\n\ndef get_loader(image_size):\n    transform = transforms.Compose(\n        [\n            transforms.Resize((image_size, image_size)),\n            transforms.ToTensor(),\n            transforms.RandomHorizontalFlip(p=0.5),\n            transforms.Normalize(\n                [0.5 for _ in range(config.CHANNELS_IMG)],\n                [0.5 for _ in range(config.CHANNELS_IMG)],\n            ),\n        ]\n    )\n    batch_size = config.BATCH_SIZES[int(log2(image_size / 4))]\n    dataset = datasets.ImageFolder(root=config.DATASET, transform=transform)\n    loader = DataLoader(\n        dataset,\n        batch_size=batch_size,\n        shuffle=True,\n        num_workers=config.NUM_WORKERS,\n        pin_memory=True,\n    )\n    return loader, dataset\n\n\ndef train_fn(\n    critic,\n    gen,\n    loader,\n    dataset,\n    step,\n    alpha,\n    opt_critic,\n    opt_gen,\n    tensorboard_step,\n    writer,\n    scaler_gen,\n    scaler_critic,\n):\n    loop = tqdm(loader, leave=True)\n    for batch_idx, (real, _) in enumerate(loop):\n        real = real.to(config.DEVICE)\n        cur_batch_size = real.shape[0]\n\n        # Train Critic: max E[critic(real)] - E[critic(fake)] <-> min -E[critic(real)] + E[critic(fake)]\n        # which is equivalent to minimizing the negative of the expression\n        noise = torch.randn(cur_batch_size, config.Z_DIM, 1, 1).to(config.DEVICE)\n\n        with torch.cuda.amp.autocast():\n            fake = gen(noise, alpha, step)\n            critic_real = critic(real, alpha, step)\n            critic_fake = critic(fake.detach(), alpha, step)\n            gp = gradient_penalty(critic, real, fake, alpha, step, device=config.DEVICE)\n            loss_critic = (\n                -(torch.mean(critic_real) - torch.mean(critic_fake))\n                + config.LAMBDA_GP * gp\n                + (0.001 * torch.mean(critic_real ** 2))\n            )\n\n        opt_critic.zero_grad()\n        scaler_critic.scale(loss_critic).backward()\n        scaler_critic.step(opt_critic)\n        scaler_critic.update()\n\n        # Train Generator: max E[critic(gen_fake)] <-> min -E[critic(gen_fake)]\n        with torch.cuda.amp.autocast():\n            gen_fake = critic(fake, alpha, step)\n            loss_gen = -torch.mean(gen_fake)\n\n        opt_gen.zero_grad()\n        scaler_gen.scale(loss_gen).backward()\n        scaler_gen.step(opt_gen)\n        scaler_gen.update()\n\n        # Update alpha and ensure less than 1\n        alpha += cur_batch_size / (\n            (config.PROGRESSIVE_EPOCHS[step] * 0.5) * len(dataset)\n        )\n        alpha = min(alpha, 1)\n\n        if batch_idx % 500 == 0:\n            with torch.no_grad():\n                fixed_fakes = gen(config.FIXED_NOISE, alpha, step) * 0.5 + 0.5\n            plot_to_tensorboard(\n                writer,\n                loss_critic.item(),\n                loss_gen.item(),\n                real.detach(),\n                fixed_fakes.detach(),\n                tensorboard_step,\n            )\n            tensorboard_step += 1\n\n        loop.set_postfix(\n            gp=gp.item(),\n            loss_critic=loss_critic.item(),\n        )\n\n    return tensorboard_step, alpha\n\n\ndef main():\n    # initialize gen and disc, note: discriminator should be called critic,\n    # according to WGAN paper (since it no longer outputs between [0, 1])\n    # but really who cares..\n    gen = Generator(\n        config.Z_DIM, config.IN_CHANNELS, img_channels=config.CHANNELS_IMG\n    ).to(config.DEVICE)\n    critic = Discriminator(\n        config.Z_DIM, config.IN_CHANNELS, img_channels=config.CHANNELS_IMG\n    ).to(config.DEVICE)\n\n    # initialize optimizers and scalers for FP16 training\n    opt_gen = optim.Adam(gen.parameters(), lr=config.LEARNING_RATE, betas=(0.0, 0.99))\n    opt_critic = optim.Adam(\n        critic.parameters(), lr=config.LEARNING_RATE, betas=(0.0, 0.99)\n    )\n    scaler_critic = torch.cuda.amp.GradScaler()\n    scaler_gen = torch.cuda.amp.GradScaler()\n\n    # for tensorboard plotting\n    writer = SummaryWriter(f\"logs/gan1\")\n\n    if config.LOAD_MODEL:\n        load_checkpoint(\n            config.CHECKPOINT_GEN, gen, opt_gen, config.LEARNING_RATE,\n        )\n        load_checkpoint(\n            config.CHECKPOINT_CRITIC, critic, opt_critic, config.LEARNING_RATE,\n        )\n\n    gen.train()\n    critic.train()\n\n    tensorboard_step = 0\n    # start at step that corresponds to img size that we set in config\n    step = int(log2(config.START_TRAIN_AT_IMG_SIZE / 4))\n    for num_epochs in config.PROGRESSIVE_EPOCHS[step:]:\n        alpha = 1e-5  # start with very low alpha\n        loader, dataset = get_loader(4 * 2 ** step)  # 4->0, 8->1, 16->2, 32->3, 64 -> 4\n        print(f\"Current image size: {4 * 2 ** step}\")\n\n        for epoch in range(num_epochs):\n            print(f\"Epoch [{epoch+1}/{num_epochs}]\")\n            tensorboard_step, alpha = train_fn(\n                critic,\n                gen,\n                loader,\n                dataset,\n                step,\n                alpha,\n                opt_critic,\n                opt_gen,\n                tensorboard_step,\n                writer,\n                scaler_gen,\n                scaler_critic,\n            )\n\n            if config.SAVE_MODEL:\n                save_checkpoint(gen, opt_gen, filename=config.CHECKPOINT_GEN)\n                save_checkpoint(critic, opt_critic, filename=config.CHECKPOINT_CRITIC)\n\n        step += 1  # progress to the next img size\n\n\nif __name__ == \"__main__\":\n    main()\n"
  },
  {
    "path": "ML/Pytorch/GANs/ProGAN/utils.py",
    "content": "import torch\nimport random\nimport numpy as np\nimport os\nimport torchvision\nimport torch.nn as nn\nimport config\nfrom torchvision.utils import save_image\nfrom scipy.stats import truncnorm\n\n# Print losses occasionally and print to tensorboard\ndef plot_to_tensorboard(\n    writer, loss_critic, loss_gen, real, fake, tensorboard_step\n):\n    writer.add_scalar(\"Loss Critic\", loss_critic, global_step=tensorboard_step)\n\n    with torch.no_grad():\n        # take out (up to) 8 examples to plot\n        img_grid_real = torchvision.utils.make_grid(real[:8], normalize=True)\n        img_grid_fake = torchvision.utils.make_grid(fake[:8], normalize=True)\n        writer.add_image(\"Real\", img_grid_real, global_step=tensorboard_step)\n        writer.add_image(\"Fake\", img_grid_fake, global_step=tensorboard_step)\n\n\ndef gradient_penalty(critic, real, fake, alpha, train_step, device=\"cpu\"):\n    BATCH_SIZE, C, H, W = real.shape\n    beta = torch.rand((BATCH_SIZE, 1, 1, 1)).repeat(1, C, H, W).to(device)\n    interpolated_images = real * beta + fake.detach() * (1 - beta)\n    interpolated_images.requires_grad_(True)\n\n    # Calculate critic scores\n    mixed_scores = critic(interpolated_images, alpha, train_step)\n\n    # Take the gradient of the scores with respect to the images\n    gradient = torch.autograd.grad(\n        inputs=interpolated_images,\n        outputs=mixed_scores,\n        grad_outputs=torch.ones_like(mixed_scores),\n        create_graph=True,\n        retain_graph=True,\n    )[0]\n    gradient = gradient.view(gradient.shape[0], -1)\n    gradient_norm = gradient.norm(2, dim=1)\n    gradient_penalty = torch.mean((gradient_norm - 1) ** 2)\n    return gradient_penalty\n\n\ndef save_checkpoint(model, optimizer, filename=\"my_checkpoint.pth.tar\"):\n    print(\"=> Saving checkpoint\")\n    checkpoint = {\n        \"state_dict\": model.state_dict(),\n        \"optimizer\": optimizer.state_dict(),\n    }\n    torch.save(checkpoint, filename)\n\n\ndef load_checkpoint(checkpoint_file, model, optimizer, lr):\n    print(\"=> Loading checkpoint\")\n    checkpoint = torch.load(checkpoint_file, map_location=\"cuda\")\n    model.load_state_dict(checkpoint[\"state_dict\"])\n    optimizer.load_state_dict(checkpoint[\"optimizer\"])\n\n    # If we don't do this then it will just have learning rate of old checkpoint\n    # and it will lead to many hours of debugging \\:\n    for param_group in optimizer.param_groups:\n        param_group[\"lr\"] = lr\n\ndef seed_everything(seed=42):\n    os.environ['PYTHONHASHSEED'] = str(seed)\n    random.seed(seed)\n    np.random.seed(seed)\n    torch.manual_seed(seed)\n    torch.cuda.manual_seed(seed)\n    torch.cuda.manual_seed_all(seed)\n    torch.backends.cudnn.deterministic = True\n    torch.backends.cudnn.benchmark = False\n\ndef generate_examples(gen, steps, truncation=0.7, n=100):\n    \"\"\"\n    Tried using truncation trick here but not sure it actually helped anything, you can\n    remove it if you like and just sample from torch.randn\n    \"\"\"\n    gen.eval()\n    alpha = 1.0\n    for i in range(n):\n        with torch.no_grad():\n            noise = torch.tensor(truncnorm.rvs(-truncation, truncation, size=(1, config.Z_DIM, 1, 1)), device=config.DEVICE, dtype=torch.float32)\n            img = gen(noise, alpha, steps)\n            save_image(img*0.5+0.5, f\"saved_examples/img_{i}.png\")\n    gen.train()"
  },
  {
    "path": "ML/Pytorch/GANs/SRGAN/config.py",
    "content": "import torch\nfrom PIL import Image\nimport albumentations as A\nfrom albumentations.pytorch import ToTensorV2\n\nLOAD_MODEL = True\nSAVE_MODEL = True\nCHECKPOINT_GEN = \"gen.pth.tar\"\nCHECKPOINT_DISC = \"disc.pth.tar\"\nDEVICE = \"cuda\" if torch.cuda.is_available() else \"cpu\"\nLEARNING_RATE = 1e-4\nNUM_EPOCHS = 100\nBATCH_SIZE = 16\nNUM_WORKERS = 4\nHIGH_RES = 96\nLOW_RES = HIGH_RES // 4\nIMG_CHANNELS = 3\n\nhighres_transform = A.Compose(\n    [\n        A.Normalize(mean=[0.5, 0.5, 0.5], std=[0.5, 0.5, 0.5]),\n        ToTensorV2(),\n    ]\n)\n\nlowres_transform = A.Compose(\n    [\n        A.Resize(width=LOW_RES, height=LOW_RES, interpolation=Image.BICUBIC),\n        A.Normalize(mean=[0, 0, 0], std=[1, 1, 1]),\n        ToTensorV2(),\n    ]\n)\n\nboth_transforms = A.Compose(\n    [\n        A.RandomCrop(width=HIGH_RES, height=HIGH_RES),\n        A.HorizontalFlip(p=0.5),\n        A.RandomRotate90(p=0.5),\n    ]\n)\n\ntest_transform = A.Compose(\n    [\n        A.Normalize(mean=[0, 0, 0], std=[1, 1, 1]),\n        ToTensorV2(),\n    ]\n)\n"
  },
  {
    "path": "ML/Pytorch/GANs/SRGAN/dataset.py",
    "content": "import os\nimport numpy as np\nimport config\nfrom torch.utils.data import Dataset, DataLoader\nfrom PIL import Image\n\n\nclass MyImageFolder(Dataset):\n    def __init__(self, root_dir):\n        super(MyImageFolder, self).__init__()\n        self.data = []\n        self.root_dir = root_dir\n        self.class_names = os.listdir(root_dir)\n\n        for index, name in enumerate(self.class_names):\n            files = os.listdir(os.path.join(root_dir, name))\n            self.data += list(zip(files, [index] * len(files)))\n\n    def __len__(self):\n        return len(self.data)\n\n    def __getitem__(self, index):\n        img_file, label = self.data[index]\n        root_and_dir = os.path.join(self.root_dir, self.class_names[label])\n\n        image = np.array(Image.open(os.path.join(root_and_dir, img_file)))\n        image = config.both_transforms(image=image)[\"image\"]\n        high_res = config.highres_transform(image=image)[\"image\"]\n        low_res = config.lowres_transform(image=image)[\"image\"]\n        return low_res, high_res\n\n\ndef test():\n    dataset = MyImageFolder(root_dir=\"new_data/\")\n    loader = DataLoader(dataset, batch_size=1, num_workers=8)\n\n    for low_res, high_res in loader:\n        print(low_res.shape)\n        print(high_res.shape)\n\n\nif __name__ == \"__main__\":\n    test()\n"
  },
  {
    "path": "ML/Pytorch/GANs/SRGAN/loss.py",
    "content": "import torch.nn as nn\nfrom torchvision.models import vgg19\nimport config\n\n# phi_5,4 5th conv layer before maxpooling but after activation\n\nclass VGGLoss(nn.Module):\n    def __init__(self):\n        super().__init__()\n        self.vgg = vgg19(pretrained=True).features[:36].eval().to(config.DEVICE)\n        self.loss = nn.MSELoss()\n\n        for param in self.vgg.parameters():\n            param.requires_grad = False\n\n    def forward(self, input, target):\n        vgg_input_features = self.vgg(input)\n        vgg_target_features = self.vgg(target)\n        return self.loss(vgg_input_features, vgg_target_features)\n\n\n"
  },
  {
    "path": "ML/Pytorch/GANs/SRGAN/model.py",
    "content": "import torch\nfrom torch import nn\n\n\nclass ConvBlock(nn.Module):\n    def __init__(\n        self,\n        in_channels,\n        out_channels,\n        discriminator=False,\n        use_act=True,\n        use_bn=True,\n        **kwargs,\n    ):\n        super().__init__()\n        self.use_act = use_act\n        self.cnn = nn.Conv2d(in_channels, out_channels, **kwargs, bias=not use_bn)\n        self.bn = nn.BatchNorm2d(out_channels) if use_bn else nn.Identity()\n        self.act = (\n            nn.LeakyReLU(0.2, inplace=True)\n            if discriminator\n            else nn.PReLU(num_parameters=out_channels)\n        )\n\n    def forward(self, x):\n        return self.act(self.bn(self.cnn(x))) if self.use_act else self.bn(self.cnn(x))\n\n\nclass UpsampleBlock(nn.Module):\n    def __init__(self, in_c, scale_factor):\n        super().__init__()\n        self.conv = nn.Conv2d(in_c, in_c * scale_factor ** 2, 3, 1, 1)\n        self.ps = nn.PixelShuffle(scale_factor)  # in_c * 4, H, W --> in_c, H*2, W*2\n        self.act = nn.PReLU(num_parameters=in_c)\n\n    def forward(self, x):\n        return self.act(self.ps(self.conv(x)))\n\n\nclass ResidualBlock(nn.Module):\n    def __init__(self, in_channels):\n        super().__init__()\n        self.block1 = ConvBlock(\n            in_channels,\n            in_channels,\n            kernel_size=3,\n            stride=1,\n            padding=1\n        )\n        self.block2 = ConvBlock(\n            in_channels,\n            in_channels,\n            kernel_size=3,\n            stride=1,\n            padding=1,\n            use_act=False,\n        )\n\n    def forward(self, x):\n        out = self.block1(x)\n        out = self.block2(out)\n        return out + x\n\n\nclass Generator(nn.Module):\n    def __init__(self, in_channels=3, num_channels=64, num_blocks=16):\n        super().__init__()\n        self.initial = ConvBlock(in_channels, num_channels, kernel_size=9, stride=1, padding=4, use_bn=False)\n        self.residuals = nn.Sequential(*[ResidualBlock(num_channels) for _ in range(num_blocks)])\n        self.convblock = ConvBlock(num_channels, num_channels, kernel_size=3, stride=1, padding=1, use_act=False)\n        self.upsamples = nn.Sequential(UpsampleBlock(num_channels, 2), UpsampleBlock(num_channels, 2))\n        self.final = nn.Conv2d(num_channels, in_channels, kernel_size=9, stride=1, padding=4)\n\n    def forward(self, x):\n        initial = self.initial(x)\n        x = self.residuals(initial)\n        x = self.convblock(x) + initial\n        x = self.upsamples(x)\n        return torch.tanh(self.final(x))\n\n\nclass Discriminator(nn.Module):\n    def __init__(self, in_channels=3, features=[64, 64, 128, 128, 256, 256, 512, 512]):\n        super().__init__()\n        blocks = []\n        for idx, feature in enumerate(features):\n            blocks.append(\n                ConvBlock(\n                    in_channels,\n                    feature,\n                    kernel_size=3,\n                    stride=1 + idx % 2,\n                    padding=1,\n                    discriminator=True,\n                    use_act=True,\n                    use_bn=False if idx == 0 else True,\n                )\n            )\n            in_channels = feature\n\n        self.blocks = nn.Sequential(*blocks)\n        self.classifier = nn.Sequential(\n            nn.AdaptiveAvgPool2d((6, 6)),\n            nn.Flatten(),\n            nn.Linear(512*6*6, 1024),\n            nn.LeakyReLU(0.2, inplace=True),\n            nn.Linear(1024, 1),\n        )\n\n    def forward(self, x):\n        x = self.blocks(x)\n        return self.classifier(x)\n\ndef test():\n    low_resolution = 24  # 96x96 -> 24x24\n    with torch.cuda.amp.autocast():\n        x = torch.randn((5, 3, low_resolution, low_resolution))\n        gen = Generator()\n        gen_out = gen(x)\n        disc = Discriminator()\n        disc_out = disc(gen_out)\n\n        print(gen_out.shape)\n        print(disc_out.shape)\n\n\nif __name__ == \"__main__\":\n    test()\n"
  },
  {
    "path": "ML/Pytorch/GANs/SRGAN/train.py",
    "content": "import torch\nimport config\nfrom torch import nn\nfrom torch import optim\nfrom utils import load_checkpoint, save_checkpoint, plot_examples\nfrom loss import VGGLoss\nfrom torch.utils.data import DataLoader\nfrom model import Generator, Discriminator\nfrom tqdm import tqdm\nfrom dataset import MyImageFolder\n\ntorch.backends.cudnn.benchmark = True\n\n\ndef train_fn(loader, disc, gen, opt_gen, opt_disc, mse, bce, vgg_loss):\n    loop = tqdm(loader, leave=True)\n\n    for idx, (low_res, high_res) in enumerate(loop):\n        high_res = high_res.to(config.DEVICE)\n        low_res = low_res.to(config.DEVICE)\n        \n        ### Train Discriminator: max log(D(x)) + log(1 - D(G(z)))\n        fake = gen(low_res)\n        disc_real = disc(high_res)\n        disc_fake = disc(fake.detach())\n        disc_loss_real = bce(\n            disc_real, torch.ones_like(disc_real) - 0.1 * torch.rand_like(disc_real)\n        )\n        disc_loss_fake = bce(disc_fake, torch.zeros_like(disc_fake))\n        loss_disc = disc_loss_fake + disc_loss_real\n\n        opt_disc.zero_grad()\n        loss_disc.backward()\n        opt_disc.step()\n\n        # Train Generator: min log(1 - D(G(z))) <-> max log(D(G(z))\n        disc_fake = disc(fake)\n        #l2_loss = mse(fake, high_res)\n        adversarial_loss = 1e-3 * bce(disc_fake, torch.ones_like(disc_fake))\n        loss_for_vgg = 0.006 * vgg_loss(fake, high_res)\n        gen_loss = loss_for_vgg + adversarial_loss\n\n        opt_gen.zero_grad()\n        gen_loss.backward()\n        opt_gen.step()\n\n        if idx % 200 == 0:\n            plot_examples(\"test_images/\", gen)\n\n\ndef main():\n    dataset = MyImageFolder(root_dir=\"new_data/\")\n    loader = DataLoader(\n        dataset,\n        batch_size=config.BATCH_SIZE,\n        shuffle=True,\n        pin_memory=True,\n        num_workers=config.NUM_WORKERS,\n    )\n    gen = Generator(in_channels=3).to(config.DEVICE)\n    disc = Discriminator(img_channels=3).to(config.DEVICE)\n    opt_gen = optim.Adam(gen.parameters(), lr=config.LEARNING_RATE, betas=(0.9, 0.999))\n    opt_disc = optim.Adam(disc.parameters(), lr=config.LEARNING_RATE, betas=(0.9, 0.999))\n    mse = nn.MSELoss()\n    bce = nn.BCEWithLogitsLoss()\n    vgg_loss = VGGLoss()\n\n    if config.LOAD_MODEL:\n        load_checkpoint(\n            config.CHECKPOINT_GEN,\n            gen,\n            opt_gen,\n            config.LEARNING_RATE,\n        )\n        load_checkpoint(\n           config.CHECKPOINT_DISC, disc, opt_disc, config.LEARNING_RATE,\n        )\n\n    for epoch in range(config.NUM_EPOCHS):\n        train_fn(loader, disc, gen, opt_gen, opt_disc, mse, bce, vgg_loss)\n\n        if config.SAVE_MODEL:\n            save_checkpoint(gen, opt_gen, filename=config.CHECKPOINT_GEN)\n            save_checkpoint(disc, opt_disc, filename=config.CHECKPOINT_DISC)\n\n\nif __name__ == \"__main__\":\n    main()"
  },
  {
    "path": "ML/Pytorch/GANs/SRGAN/utils.py",
    "content": "import torch\nimport os\nimport config\nimport numpy as np\nfrom PIL import Image\nfrom torchvision.utils import save_image\n\n\ndef gradient_penalty(critic, real, fake, device):\n    BATCH_SIZE, C, H, W = real.shape\n    alpha = torch.rand((BATCH_SIZE, 1, 1, 1)).repeat(1, C, H, W).to(device)\n    interpolated_images = real * alpha + fake.detach() * (1 - alpha)\n    interpolated_images.requires_grad_(True)\n\n    # Calculate critic scores\n    mixed_scores = critic(interpolated_images)\n\n    # Take the gradient of the scores with respect to the images\n    gradient = torch.autograd.grad(\n        inputs=interpolated_images,\n        outputs=mixed_scores,\n        grad_outputs=torch.ones_like(mixed_scores),\n        create_graph=True,\n        retain_graph=True,\n    )[0]\n    gradient = gradient.view(gradient.shape[0], -1)\n    gradient_norm = gradient.norm(2, dim=1)\n    gradient_penalty = torch.mean((gradient_norm - 1) ** 2)\n    return gradient_penalty\n\n\ndef save_checkpoint(model, optimizer, filename=\"my_checkpoint.pth.tar\"):\n    print(\"=> Saving checkpoint\")\n    checkpoint = {\n        \"state_dict\": model.state_dict(),\n        \"optimizer\": optimizer.state_dict(),\n    }\n    torch.save(checkpoint, filename)\n\n\ndef load_checkpoint(checkpoint_file, model, optimizer, lr):\n    print(\"=> Loading checkpoint\")\n    checkpoint = torch.load(checkpoint_file, map_location=config.DEVICE)\n    model.load_state_dict(checkpoint[\"state_dict\"])\n    optimizer.load_state_dict(checkpoint[\"optimizer\"])\n\n    # If we don't do this then it will just have learning rate of old checkpoint\n    # and it will lead to many hours of debugging \\:\n    for param_group in optimizer.param_groups:\n        param_group[\"lr\"] = lr\n\n\ndef plot_examples(low_res_folder, gen):\n    files = os.listdir(low_res_folder)\n\n    gen.eval()\n    for file in files:\n        image = Image.open(\"test_images/\" + file)\n        with torch.no_grad():\n            upscaled_img = gen(\n                config.test_transform(image=np.asarray(image))[\"image\"]\n                .unsqueeze(0)\n                .to(config.DEVICE)\n            )\n        save_image(upscaled_img * 0.5 + 0.5, f\"saved/{file}\")\n    gen.train()\n"
  },
  {
    "path": "ML/Pytorch/GANs/StyleGAN/config.py",
    "content": "import albumentations as A\nimport cv2\nimport torch\nfrom math import log2\n\nfrom albumentations.pytorch import ToTensorV2\n#from utils import seed_everything\n\nSTART_TRAIN_AT_IMG_SIZE = 32\nDATASET = 'FFHQ_32'\nCHECKPOINT_GEN = \"generator.pth\"\nCHECKPOINT_CRITIC = \"critic.pth\"\nDEVICE = \"cuda\" if torch.cuda.is_available() else \"cpu\"\nLOAD_MODEL = False\nSAVE_MODEL = True\nLEARNING_RATE = 1e-3\nBATCH_SIZES = [32, 32, 32, 32, 32, 16, 8, 4, 2]\nCHANNELS_IMG = 3\nZ_DIM = 512\nW_DIM = 512\nIN_CHANNELS = 512\nLAMBDA_GP = 10\nPROGRESSIVE_EPOCHS = [50] * 100\nFIXED_NOISE = torch.randn((8, Z_DIM)).to(DEVICE)\nNUM_WORKERS = 6"
  },
  {
    "path": "ML/Pytorch/GANs/StyleGAN/make_resized_data.py",
    "content": "import os\nfrom PIL import Image\nfrom tqdm import tqdm\n\nroot_dir = \"FFHQ/images1024x1024\"\n\nfor file in tqdm(os.listdir(root_dir)):\n    img = Image.open(root_dir+ \"/\"+file).resize((128, 128))\n    img.save(\"FFHQ_resized/\"+file)\n"
  },
  {
    "path": "ML/Pytorch/GANs/StyleGAN/model.py",
    "content": "import torch\nimport torch.nn as nn\nimport torch.nn.functional as F\nfrom math import log2\n\nfactors = [1, 1, 1, 1, 1 / 2, 1 / 4, 1 / 8, 1 / 16, 1 / 32]\n\nclass PixelNorm(nn.Module):\n    def __init__(self):\n        super(PixelNorm, self).__init__()\n        self.epsilon = 1e-8\n\n    def forward(self, x):\n        return x / torch.sqrt(torch.mean(x ** 2, dim=1, keepdim=True) + self.epsilon)\n\n\nclass MappingNetwork(nn.Module):\n    def __init__(self, z_dim, w_dim):\n        super().__init__()\n        self.mapping = nn.Sequential(\n            PixelNorm(),\n            WSLinear(z_dim, w_dim),\n            nn.ReLU(),\n            WSLinear(w_dim, w_dim),\n            nn.ReLU(),\n            WSLinear(w_dim, w_dim),\n            nn.ReLU(),\n            WSLinear(w_dim, w_dim),\n            nn.ReLU(),\n            WSLinear(w_dim, w_dim),\n            nn.ReLU(),\n            WSLinear(w_dim, w_dim),\n            nn.ReLU(),\n            WSLinear(w_dim, w_dim),\n            nn.ReLU(),\n            WSLinear(w_dim, w_dim),\n        )\n\n    def forward(self, x):\n        return self.mapping(x)\n\n\nclass InjectNoise(nn.Module):\n    def __init__(self, channels):\n        super().__init__()\n        self.weight = nn.Parameter(torch.zeros(1, channels, 1, 1))\n\n    def forward(self, x):\n        noise = torch.randn((x.shape[0], 1, x.shape[2], x.shape[3]), device=x.device)\n        return x + self.weight * noise\n\nclass AdaIN(nn.Module):\n    def __init__(self, channels, w_dim):\n        super().__init__()\n        self.instance_norm = nn.InstanceNorm2d(channels)\n        self.style_scale = WSLinear(w_dim, channels)\n        self.style_bias = WSLinear(w_dim, channels)\n\n    def forward(self, x, w):\n        x = self.instance_norm(x)\n        style_scale = self.style_scale(w).unsqueeze(2).unsqueeze(3)\n        style_bias = self.style_bias(w).unsqueeze(2).unsqueeze(3)\n        return style_scale * x + style_bias\n\n\nclass WSConv2d(nn.Module):\n    def __init__(\n        self, in_channels, out_channels, kernel_size=3, stride=1, padding=1, gain=2,\n    ):\n        super(WSConv2d, self).__init__()\n        self.conv = nn.Conv2d(in_channels, out_channels, kernel_size, stride, padding)\n        self.scale = (gain / (in_channels * (kernel_size ** 2))) ** 0.5\n        self.bias = self.conv.bias\n        self.conv.bias = None\n\n        # initialize conv layer\n        nn.init.normal_(self.conv.weight)\n        nn.init.zeros_(self.bias)\n\n    def forward(self, x):\n        return self.conv(x * self.scale) + self.bias.view(1, self.bias.shape[0], 1, 1)\n\n\nclass WSLinear(nn.Module):\n    def __init__(\n        self, in_features, out_features, gain=2,\n    ):\n        super(WSLinear, self).__init__()\n        self.linear = nn.Linear(in_features, out_features)\n        self.scale = (gain / in_features)**0.5\n        self.bias = self.linear.bias\n        self.linear.bias = None\n\n        # initialize linear layer\n        nn.init.normal_(self.linear.weight)\n        nn.init.zeros_(self.bias)\n\n    def forward(self, x):\n        return self.linear(x * self.scale) + self.bias\n\n\nclass GenBlock(nn.Module):\n    def __init__(self, in_channels, out_channels, w_dim):\n        super(GenBlock, self).__init__()\n        self.conv1 = WSConv2d(in_channels, out_channels)\n        self.conv2 = WSConv2d(out_channels, out_channels)\n        self.leaky = nn.LeakyReLU(0.2, inplace=True)\n        self.inject_noise1 = InjectNoise(out_channels)\n        self.inject_noise2 = InjectNoise(out_channels)\n        self.adain1 = AdaIN(out_channels, w_dim)\n        self.adain2 = AdaIN(out_channels, w_dim)\n\n    def forward(self, x, w):\n        x = self.adain1(self.leaky(self.inject_noise1(self.conv1(x))), w)\n        x = self.adain2(self.leaky(self.inject_noise2(self.conv2(x))), w)\n        return x\n\nclass ConvBlock(nn.Module):\n    def __init__(self, in_channels, out_channels):\n        super(ConvBlock, self).__init__()\n        self.conv1 = WSConv2d(in_channels, out_channels)\n        self.conv2 = WSConv2d(out_channels, out_channels)\n        self.leaky = nn.LeakyReLU(0.2)\n\n    def forward(self, x):\n        x = self.leaky(self.conv1(x))\n        x = self.leaky(self.conv2(x))\n        return x\n\n\nclass Generator(nn.Module):\n    def __init__(self, z_dim, w_dim, in_channels, img_channels=3):\n        super(Generator, self).__init__()\n        self.starting_constant = nn.Parameter(torch.ones((1, in_channels, 4, 4)))\n        self.map = MappingNetwork(z_dim, w_dim)\n        self.initial_adain1 = AdaIN(in_channels, w_dim)\n        self.initial_adain2 = AdaIN(in_channels, w_dim)\n        self.initial_noise1 = InjectNoise(in_channels)\n        self.initial_noise2 = InjectNoise(in_channels)\n        self.initial_conv = nn.Conv2d(in_channels, in_channels, kernel_size=3, stride=1, padding=1)\n        self.leaky = nn.LeakyReLU(0.2, inplace=True)\n\n        self.initial_rgb = WSConv2d(\n            in_channels, img_channels, kernel_size=1, stride=1, padding=0\n        )\n        self.prog_blocks, self.rgb_layers = (\n            nn.ModuleList([]),\n            nn.ModuleList([self.initial_rgb]),\n        )\n\n        for i in range(len(factors) - 1):  # -1 to prevent index error because of factors[i+1]\n            conv_in_c = int(in_channels * factors[i])\n            conv_out_c = int(in_channels * factors[i + 1])\n            self.prog_blocks.append(GenBlock(conv_in_c, conv_out_c, w_dim))\n            self.rgb_layers.append(\n                WSConv2d(conv_out_c, img_channels, kernel_size=1, stride=1, padding=0)\n            )\n\n    def fade_in(self, alpha, upscaled, generated):\n        # alpha should be scalar within [0, 1], and upscale.shape == generated.shape\n        return torch.tanh(alpha * generated + (1 - alpha) * upscaled)\n\n    def forward(self, noise, alpha, steps):\n        w = self.map(noise)\n        x = self.initial_adain1(self.initial_noise1(self.starting_constant), w)\n        x = self.initial_conv(x)\n        out = self.initial_adain2(self.leaky(self.initial_noise2(x)), w)\n\n        if steps == 0:\n            return self.initial_rgb(x)\n\n        for step in range(steps):\n            upscaled = F.interpolate(out, scale_factor=2, mode=\"bilinear\")\n            out = self.prog_blocks[step](upscaled, w)\n\n        # The number of channels in upscale will stay the same, while\n        # out which has moved through prog_blocks might change. To ensure\n        # we can convert both to rgb we use different rgb_layers\n        # (steps-1) and steps for upscaled, out respectively\n        final_upscaled = self.rgb_layers[steps - 1](upscaled)\n        final_out = self.rgb_layers[steps](out)\n        return self.fade_in(alpha, final_upscaled, final_out)\n\n\nclass Discriminator(nn.Module):\n    def __init__(self, in_channels, img_channels=3):\n        super(Discriminator, self).__init__()\n        self.prog_blocks, self.rgb_layers = nn.ModuleList([]), nn.ModuleList([])\n        self.leaky = nn.LeakyReLU(0.2)\n\n        # here we work back ways from factors because the discriminator\n        # should be mirrored from the generator. So the first prog_block and\n        # rgb layer we append will work for input size 1024x1024, then 512->256-> etc\n        for i in range(len(factors) - 1, 0, -1):\n            conv_in = int(in_channels * factors[i])\n            conv_out = int(in_channels * factors[i - 1])\n            self.prog_blocks.append(ConvBlock(conv_in, conv_out))\n            self.rgb_layers.append(\n                WSConv2d(img_channels, conv_in, kernel_size=1, stride=1, padding=0)\n            )\n\n        # perhaps confusing name \"initial_rgb\" this is just the RGB layer for 4x4 input size\n        # did this to \"mirror\" the generator initial_rgb\n        self.initial_rgb = WSConv2d(\n            img_channels, in_channels, kernel_size=1, stride=1, padding=0\n        )\n        self.rgb_layers.append(self.initial_rgb)\n        self.avg_pool = nn.AvgPool2d(\n            kernel_size=2, stride=2\n        )  # down sampling using avg pool\n\n        # this is the block for 4x4 input size\n        self.final_block = nn.Sequential(\n            # +1 to in_channels because we concatenate from MiniBatch std\n            WSConv2d(in_channels + 1, in_channels, kernel_size=3, padding=1),\n            nn.LeakyReLU(0.2),\n            WSConv2d(in_channels, in_channels, kernel_size=4, padding=0, stride=1),\n            nn.LeakyReLU(0.2),\n            WSConv2d(\n                in_channels, 1, kernel_size=1, padding=0, stride=1\n            ),  # we use this instead of linear layer\n        )\n\n    def fade_in(self, alpha, downscaled, out):\n        \"\"\"Used to fade in downscaled using avg pooling and output from CNN\"\"\"\n        # alpha should be scalar within [0, 1], and upscale.shape == generated.shape\n        return alpha * out + (1 - alpha) * downscaled\n\n    def minibatch_std(self, x):\n        batch_statistics = (\n            torch.std(x, dim=0).mean().repeat(x.shape[0], 1, x.shape[2], x.shape[3])\n        )\n        # we take the std for each example (across all channels, and pixels) then we repeat it\n        # for a single channel and concatenate it with the image. In this way the discriminator\n        # will get information about the variation in the batch/image\n        return torch.cat([x, batch_statistics], dim=1)\n\n    def forward(self, x, alpha, steps):\n        # where we should start in the list of prog_blocks, maybe a bit confusing but\n        # the last is for the 4x4. So example let's say steps=1, then we should start\n        # at the second to last because input_size will be 8x8. If steps==0 we just\n        # use the final block\n        cur_step = len(self.prog_blocks) - steps\n\n        # convert from rgb as initial step, this will depend on\n        # the image size (each will have it's on rgb layer)\n        out = self.leaky(self.rgb_layers[cur_step](x))\n\n        if steps == 0:  # i.e, image is 4x4\n            out = self.minibatch_std(out)\n            return self.final_block(out).view(out.shape[0], -1)\n\n        # because prog_blocks might change the channels, for down scale we use rgb_layer\n        # from previous/smaller size which in our case correlates to +1 in the indexing\n        downscaled = self.leaky(self.rgb_layers[cur_step + 1](self.avg_pool(x)))\n        out = self.avg_pool(self.prog_blocks[cur_step](out))\n\n        # the fade_in is done first between the downscaled and the input\n        # this is opposite from the generator\n        out = self.fade_in(alpha, downscaled, out)\n\n        for step in range(cur_step + 1, len(self.prog_blocks)):\n            out = self.prog_blocks[step](out)\n            out = self.avg_pool(out)\n\n        out = self.minibatch_std(out)\n        return self.final_block(out).view(out.shape[0], -1)\n\n\nif __name__ == \"__main__\":\n    Z_DIM = 512\n    W_DIM = 512\n    IN_CHANNELS = 512\n    gen = Generator(Z_DIM, W_DIM, IN_CHANNELS, img_channels=3).to(\"cuda\")\n    disc = Discriminator(IN_CHANNELS, img_channels=3).to(\"cuda\")\n\n    tot = 0\n    for param in gen.parameters():\n        tot += param.numel()\n\n    print(tot)\n    import sys\n    sys.exit()\n\n\n    for img_size in [4, 8, 16, 32, 64, 128, 256, 512, 1024]:\n        num_steps = int(log2(img_size / 4))\n        x = torch.randn((2, Z_DIM)).to(\"cuda\")\n        z = gen(x, 0.5, steps=num_steps)\n        assert z.shape == (2, 3, img_size, img_size)\n        out = disc(z, alpha=0.5, steps=num_steps)\n        assert out.shape == (2, 1)\n        print(f\"Success! At img size: {img_size}\")\n"
  },
  {
    "path": "ML/Pytorch/GANs/StyleGAN/prepare_data.py",
    "content": "from PIL import Image\nfrom tqdm import tqdm\nimport os\nfrom multiprocessing import Pool\nroot_dir = \"FFHQ/images1024x1024/\"\nfiles = os.listdir(root_dir)\n\ndef resize(file, size, folder_to_save):\n    image = Image.open(root_dir + file).resize((size, size), Image.LANCZOS)\n    image.save(folder_to_save+file, quality=100)\n\n\nif __name__ == \"__main__\":\n    for img_size in [4, 8, 512, 1024]:\n        folder_name = \"FFHQ_\"+str(img_size)+\"/images/\"\n        if not os.path.isdir(folder_name):\n            os.makedirs(folder_name)\n\n        data = [(file, img_size, folder_name) for file in files]\n        pool = Pool()\n        pool.starmap(resize, data)\n\n\n\n\n\n\n\n\n\n"
  },
  {
    "path": "ML/Pytorch/GANs/StyleGAN/readme_important.txt",
    "content": "this implementation doesn't work, I need to debug and see where I've made a mistake. It seems to do something\nthat makes sense but it's nowhere near the same level of performance that they had in the original paper."
  },
  {
    "path": "ML/Pytorch/GANs/StyleGAN/train.py",
    "content": "\"\"\" Training of ProGAN using WGAN-GP loss\"\"\"\n\nimport torch\nimport torch.optim as optim\nimport torchvision.datasets as datasets\nimport torchvision.transforms as transforms\nfrom torch.utils.data import DataLoader\nfrom torch.utils.tensorboard import SummaryWriter\nfrom utils import (\n    gradient_penalty,\n    plot_to_tensorboard,\n    save_checkpoint,\n    load_checkpoint,\n    EMA,\n)\nfrom model import Discriminator, Generator\nfrom math import log2\nfrom tqdm import tqdm\nimport config\n\ntorch.backends.cudnn.benchmarks = True\n\n\ndef get_loader(image_size):\n    transform = transforms.Compose(\n        [\n            #transforms.Resize((image_size, image_size)),\n            transforms.ToTensor(),\n            transforms.RandomHorizontalFlip(p=0.5),\n            transforms.Normalize(\n                [0.5 for _ in range(config.CHANNELS_IMG)],\n                [0.5 for _ in range(config.CHANNELS_IMG)],\n            ),\n        ]\n    )\n    batch_size = config.BATCH_SIZES[int(log2(image_size / 4))]\n    dataset = datasets.ImageFolder(root=config.DATASET, transform=transform)\n    loader = DataLoader(\n        dataset,\n        batch_size=batch_size,\n        shuffle=True,\n        num_workers=config.NUM_WORKERS,\n        pin_memory=True,\n    )\n    return loader, dataset\n\n\ndef train_fn(\n    critic,\n    gen,\n    loader,\n    dataset,\n    step,\n    alpha,\n    opt_critic,\n    opt_gen,\n    tensorboard_step,\n    writer,\n    scaler_gen,\n    scaler_critic,\n    ema,\n):\n    loop = tqdm(loader, leave=True)\n    gen2 = Generator(\n        config.Z_DIM, config.W_DIM, config.IN_CHANNELS, img_channels=config.CHANNELS_IMG\n    ).to(config.DEVICE)\n\n    for batch_idx, (real, _) in enumerate(loop):\n        real = real.to(config.DEVICE)\n        cur_batch_size = real.shape[0]\n\n        # Train Critic: max E[critic(real)] - E[critic(fake)] <-> min -E[critic(real)] + E[critic(fake)]\n        # which is equivalent to minimizing the negative of the expression\n        noise = torch.randn(cur_batch_size, config.Z_DIM).to(config.DEVICE)\n\n        with torch.cuda.amp.autocast():\n            fake = gen(noise, alpha, step)\n            critic_real = critic(real, alpha, step)\n            critic_fake = critic(fake.detach(), alpha, step)\n            gp = gradient_penalty(critic, real, fake, alpha, step, device=config.DEVICE)\n            loss_critic = (\n                -(torch.mean(critic_real) - torch.mean(critic_fake))\n                + config.LAMBDA_GP * gp\n                + (0.001 * torch.mean(critic_real ** 2))\n            )\n\n        opt_critic.zero_grad()\n        scaler_critic.scale(loss_critic).backward()\n        scaler_critic.step(opt_critic)\n        scaler_critic.update()\n\n        # Train Generator: max E[critic(gen_fake)] <-> min -E[critic(gen_fake)]\n        with torch.cuda.amp.autocast():\n            gen_fake = critic(fake, alpha, step)\n            loss_gen = -torch.mean(gen_fake)\n\n        opt_gen.zero_grad()\n        scaler_gen.scale(loss_gen).backward()\n        scaler_gen.step(opt_gen)\n        scaler_gen.update()\n\n        # Update alpha and ensure less than 1\n        alpha += cur_batch_size / (\n            (config.PROGRESSIVE_EPOCHS[step] * 0.5) * len(dataset)\n        )\n        alpha = min(alpha, 1)\n\n        if batch_idx % 100 == 0:\n            ema(gen)\n            with torch.no_grad():\n                ema.copy_weights_to(gen2)\n                fixed_fakes = gen2(config.FIXED_NOISE, alpha, step) * 0.5 + 0.5\n            plot_to_tensorboard(\n                writer,\n                loss_critic.item(),\n                loss_gen.item(),\n                real.detach(),\n                fixed_fakes.detach(),\n                tensorboard_step,\n            )\n            tensorboard_step += 1\n\n        loop.set_postfix(\n            gp=gp.item(),\n            loss_critic=loss_critic.item(),\n        )\n\n\n    return tensorboard_step, alpha\n\n\ndef main():\n    # initialize gen and disc, note: discriminator should be called critic,\n    # according to WGAN paper (since it no longer outputs between [0, 1])\n    # but really who cares..\n    gen = Generator(\n        config.Z_DIM, config.W_DIM, config.IN_CHANNELS, img_channels=config.CHANNELS_IMG\n    ).to(config.DEVICE)\n    critic = Discriminator(\n        config.IN_CHANNELS, img_channels=config.CHANNELS_IMG\n    ).to(config.DEVICE)\n    ema = EMA(gamma=0.999, save_frequency=2000)\n    # initialize optimizers and scalers for FP16 training\n    opt_gen = optim.Adam([{\"params\": [param for name, param in gen.named_parameters() if \"map\" not in name]},\n                          {\"params\": gen.map.parameters(), \"lr\": 1e-5}], lr=config.LEARNING_RATE, betas=(0.0, 0.99))\n    opt_critic = optim.Adam(\n        critic.parameters(), lr=config.LEARNING_RATE, betas=(0.0, 0.99)\n    )\n    scaler_critic = torch.cuda.amp.GradScaler()\n    scaler_gen = torch.cuda.amp.GradScaler()\n\n    # for tensorboard plotting\n    writer = SummaryWriter(f\"logs/gan\")\n\n    if config.LOAD_MODEL:\n        load_checkpoint(\n            config.CHECKPOINT_GEN, gen, opt_gen, config.LEARNING_RATE,\n        )\n        load_checkpoint(\n            config.CHECKPOINT_CRITIC, critic, opt_critic, config.LEARNING_RATE,\n        )\n\n    gen.train()\n    critic.train()\n\n    tensorboard_step = 0\n    # start at step that corresponds to img size that we set in config\n    step = int(log2(config.START_TRAIN_AT_IMG_SIZE / 4))\n    for num_epochs in config.PROGRESSIVE_EPOCHS[step:]:\n        alpha = 1e-5   # start with very low alpha\n        loader, dataset = get_loader(4 * 2 ** step)  # 4->0, 8->1, 16->2, 32->3, 64 -> 4\n        print(f\"Current image size: {4 * 2 ** step}\")\n\n        for epoch in range(num_epochs):\n            print(f\"Epoch [{epoch+1}/{num_epochs}]\")\n            tensorboard_step, alpha = train_fn(\n                critic,\n                gen,\n                loader,\n                dataset,\n                step,\n                alpha,\n                opt_critic,\n                opt_gen,\n                tensorboard_step,\n                writer,\n                scaler_gen,\n                scaler_critic,\n                ema,\n            )\n\n            if config.SAVE_MODEL:\n                save_checkpoint(gen, opt_gen, filename=config.CHECKPOINT_GEN)\n                save_checkpoint(critic, opt_critic, filename=config.CHECKPOINT_CRITIC)\n\n        step += 1  # progress to the next img size\n\n\nif __name__ == \"__main__\":\n    main()"
  },
  {
    "path": "ML/Pytorch/GANs/StyleGAN/utils.py",
    "content": "import torch\nimport random\nimport numpy as np\nimport os\nimport torchvision\nimport torch.nn as nn\nimport warnings\n\n# Print losses occasionally and print to tensorboard\ndef plot_to_tensorboard(\n    writer, loss_critic, loss_gen, real, fake, tensorboard_step\n):\n    writer.add_scalar(\"Loss Critic\", loss_critic, global_step=tensorboard_step)\n\n    with torch.no_grad():\n        # take out (up to) 32 examples\n        img_grid_real = torchvision.utils.make_grid(real[:8], normalize=True)\n        img_grid_fake = torchvision.utils.make_grid(fake[:8], normalize=True)\n        writer.add_image(\"Real\", img_grid_real, global_step=tensorboard_step)\n        writer.add_image(\"Fake\", img_grid_fake, global_step=tensorboard_step)\n\n\ndef gradient_penalty(critic, real, fake, alpha, train_step, device=\"cpu\"):\n    BATCH_SIZE, C, H, W = real.shape\n    beta = torch.rand((BATCH_SIZE, 1, 1, 1)).repeat(1, C, H, W).to(device)\n    interpolated_images = real * beta + fake.detach() * (1 - beta)\n    interpolated_images.requires_grad_(True)\n\n    # Calculate critic scores\n    mixed_scores = critic(interpolated_images, alpha, train_step)\n\n    # Take the gradient of the scores with respect to the images\n    gradient = torch.autograd.grad(\n        inputs=interpolated_images,\n        outputs=mixed_scores,\n        grad_outputs=torch.ones_like(mixed_scores),\n        create_graph=True,\n        retain_graph=True,\n    )[0]\n    gradient = gradient.view(gradient.shape[0], -1)\n    gradient_norm = gradient.norm(2, dim=1)\n    gradient_penalty = torch.mean((gradient_norm - 1) ** 2)\n    return gradient_penalty\n\n\ndef save_checkpoint(model, optimizer, filename=\"my_checkpoint.pth.tar\"):\n    print(\"=> Saving checkpoint\")\n    checkpoint = {\n        \"state_dict\": model.state_dict(),\n        \"optimizer\": optimizer.state_dict(),\n    }\n    torch.save(checkpoint, filename)\n\n\ndef load_checkpoint(checkpoint_file, model, optimizer, lr):\n    print(\"=> Loading checkpoint\")\n    checkpoint = torch.load(checkpoint_file, map_location=\"cuda\")\n    model.load_state_dict(checkpoint[\"state_dict\"])\n    optimizer.load_state_dict(checkpoint[\"optimizer\"])\n\n    # If we don't do this then it will just have learning rate of old checkpoint\n    # and it will lead to many hours of debugging \\:\n    for param_group in optimizer.param_groups:\n        param_group[\"lr\"] = lr\n\n\ndef seed_everything(seed=42):\n    os.environ['PYTHONHASHSEED'] = str(seed)\n    random.seed(seed)\n    np.random.seed(seed)\n    torch.manual_seed(seed)\n    torch.cuda.manual_seed(seed)\n    torch.cuda.manual_seed_all(seed)\n    torch.backends.cudnn.deterministic = True\n    torch.backends.cudnn.benchmark = False\n\n\nclass EMA:\n    # Found this useful (thanks alexis-jacq):\n    # https://discuss.pytorch.org/t/how-to-apply-exponential-moving-average-decay-for-variables/10856/3\n    def __init__(self, gamma=0.99, save=True, save_frequency=100, save_filename=\"ema_weights.pth\"):\n        \"\"\"\n        Initialize the weight to which we will do the\n        exponential moving average and the dictionary\n        where we store the model parameters\n        \"\"\"\n        self.gamma = gamma\n        self.registered = {}\n        self.save_filename = save_filename\n        self.save_frequency = save_frequency\n        self.count = 0\n\n        if save_filename in os.listdir(\".\"):\n            self.registered = torch.load(self.save_filename)\n\n        if not save:\n            warnings.warn(\"Note that the exponential moving average weights will not be saved to a .pth file!\")\n\n    def register_weights(self, model):\n        \"\"\"\n        Registers the weights of the model which will\n        later be used when we take the moving average\n        \"\"\"\n        for name, param in model.named_parameters():\n            if param.requires_grad:\n                self.registered[name] = param.clone().detach()\n\n    def __call__(self, model):\n        self.count += 1\n        for name, param in model.named_parameters():\n            if param.requires_grad:\n                new_weight = param.clone().detach() if name not in self.registered else self.gamma * param + (1 - self.gamma) * self.registered[name]\n                self.registered[name] = new_weight\n\n        if self.count % self.save_frequency == 0:\n            self.save_ema_weights()\n\n    def copy_weights_to(self, model):\n        for name, param in model.named_parameters():\n            if param.requires_grad:\n                param.data = self.registered[name]\n\n    def save_ema_weights(self):\n        torch.save(self.registered, self.save_filename)\n\n\n"
  },
  {
    "path": "ML/Pytorch/huggingface/.ipynb_checkpoints/Untitled-checkpoint.ipynb",
    "content": "{\n \"cells\": [],\n \"metadata\": {},\n \"nbformat\": 4,\n \"nbformat_minor\": 5\n}\n"
  },
  {
    "path": "ML/Pytorch/huggingface/.ipynb_checkpoints/cnndaily_t5_lightning_customdataloading-checkpoint.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"f54ecf0b\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"\\\"\\\"\\\"\\n\",\n    \"# HuggingFace Tutorial Series\\n\",\n    \"- 1. What is Huggingface?\\n\",\n    \"- 2. Common tasks we can do with HuggingFace & explain the tasks briefly, like what is question answering etc\\n\",\n    \"- 3. Using the HuggingFace Pipeline (High level feature)\\n\",\n    \"- 4. How the pipeline works at a lower level\\n\",\n    \"- 5. HuggingFace Datasets\\n\",\n    \"- 6. HuggingFace Tokenizer\\n\",\n    \"- 7. HuggingFace Evaluate\\n\",\n    \"- 8. HuggingFace Trainer\\n\",\n    \"- 9. Putting it together to finetune a news article summarizer\\n\",\n    \"- 10. Making it more general and robust with Lightning and custom data loading\\n\",\n    \"\\\"\\\"\\\"\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"ec1aae37\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import warnings\\n\",\n    \"warnings.simplefilter(\\\"ignore\\\")\\n\",\n    \"\\n\",\n    \"import os\\n\",\n    \"os.environ[\\\"CUDA_DEVICE_ORDER\\\"]=\\\"PCI_BUS_ID\\\"\\n\",\n    \"os.environ[\\\"CUDA_VISIBLE_DEVICES\\\"]=\\\"0\\\"\\n\",\n    \"\\n\",\n    \"import numpy as np\\n\",\n    \"import torch\\n\",\n    \"import datasets \\n\",\n    \"import pytorch_lightning as pl\\n\",\n    \"from datasets import load_dataset, load_metric\\n\",\n    \"\\n\",\n    \"from transformers import (\\n\",\n    \"    AutoModel,\\n\",\n    \"    AutoModelForSeq2SeqLM,\\n\",\n    \"    AutoTokenizer,\\n\",\n    \"    DataCollatorForSeq2Seq,\\n\",\n    \"    Seq2SeqTrainingArguments,\\n\",\n    \"    Seq2SeqTrainer,\\n\",\n    \")\\n\",\n    \"\\n\",\n    \"import torch\\n\",\n    \"import pandas as pd\\n\",\n    \"from torch.utils.data import Dataset\\n\",\n    \"import pytorch_lightning as pl\\n\",\n    \"\\n\",\n    \"torch.set_float32_matmul_precision(\\\"medium\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"5fd7cb0c\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"model_name = \\\"t5-small\\\"\\n\",\n    \"tokenizer = AutoTokenizer.from_pretrained(model_name)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"418cb03a\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"class cnn_dailymail(Dataset):\\n\",\n    \"    def __init__(self, csv_file, tokenizer, max_length=512):\\n\",\n    \"        self.data = pd.read_csv(csv_file)\\n\",\n    \"        self.tokenizer = tokenizer\\n\",\n    \"        self.max_length = max_length\\n\",\n    \"\\n\",\n    \"    def __len__(self):\\n\",\n    \"        return len(self.data)\\n\",\n    \"\\n\",\n    \"    def __getitem__(self, idx):\\n\",\n    \"        article = self.data.loc[idx, 'article']\\n\",\n    \"        highlights = self.data.loc[idx, 'highlights']\\n\",\n    \"\\n\",\n    \"        inputs = self.tokenizer(\\n\",\n    \"            article,\\n\",\n    \"            truncation=True,\\n\",\n    \"            padding='max_length',\\n\",\n    \"            max_length=self.max_length,\\n\",\n    \"            return_tensors='pt'\\n\",\n    \"        )\\n\",\n    \"        targets = self.tokenizer(\\n\",\n    \"            highlights,\\n\",\n    \"            truncation=True,\\n\",\n    \"            padding='max_length',\\n\",\n    \"            max_length=self.max_length,\\n\",\n    \"            return_tensors='pt'\\n\",\n    \"        )\\n\",\n    \"\\n\",\n    \"        return {\\n\",\n    \"            'input_ids': inputs['input_ids'].squeeze(),\\n\",\n    \"            'attention_mask': inputs['attention_mask'].squeeze(),\\n\",\n    \"            'labels': targets['input_ids'].squeeze()\\n\",\n    \"        }\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"aaa62755\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"class MyDataModule(pl.LightningDataModule):\\n\",\n    \"    def __init__(self, train_csv, val_csv, test_csv, tokenizer, batch_size=16, max_length=512):\\n\",\n    \"        super().__init__()\\n\",\n    \"        self.train_csv = train_csv\\n\",\n    \"        self.val_csv = val_csv\\n\",\n    \"        self.test_csv = test_csv\\n\",\n    \"        self.tokenizer = tokenizer\\n\",\n    \"        self.batch_size = batch_size\\n\",\n    \"        self.max_length = max_length\\n\",\n    \"\\n\",\n    \"    def setup(self, stage=None):\\n\",\n    \"        if stage in ('fit', None):\\n\",\n    \"            self.train_dataset = cnn_dailymail(self.train_csv, self.tokenizer, self.max_length)\\n\",\n    \"            self.val_dataset = cnn_dailymail(self.val_csv, self.tokenizer, self.max_length)\\n\",\n    \"        if stage in ('test', None):\\n\",\n    \"            self.test_dataset = cnn_dailymail(self.test_csv, self.tokenizer, self.max_length)\\n\",\n    \"\\n\",\n    \"    def train_dataloader(self):\\n\",\n    \"        return torch.utils.data.DataLoader(self.train_dataset, batch_size=self.batch_size, shuffle=True, num_workers=4)\\n\",\n    \"\\n\",\n    \"    def val_dataloader(self):\\n\",\n    \"        return torch.utils.data.DataLoader(self.val_dataset, batch_size=self.batch_size, shuffle=False, num_workers=2)\\n\",\n    \"\\n\",\n    \"    def test_dataloader(self):\\n\",\n    \"        return torch.utils.data.DataLoader(self.test_dataset, batch_size=self.batch_size, shuffle=False, num_workers=2)\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"fbb699e1\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"class MyLightningModule(pl.LightningModule):\\n\",\n    \"    def __init__(self, model_name, learning_rate, weight_decay):\\n\",\n    \"        super().__init__()\\n\",\n    \"        self.model_name = model_name\\n\",\n    \"        self.learning_rate = learning_rate\\n\",\n    \"        self.weight_decay = weight_decay\\n\",\n    \"        \\n\",\n    \"        # Load the pre-trained model and tokenizer\\n\",\n    \"        self.model = torch.compile(AutoModelForSeq2SeqLM.from_pretrained(self.model_name))\\n\",\n    \"        \\n\",\n    \"        # Load the ROUGE metric\\n\",\n    \"        self.metric = load_metric(\\\"rouge\\\")\\n\",\n    \"\\n\",\n    \"    def forward(self, input_ids, attention_mask, labels=None):\\n\",\n    \"        output = self.model(\\n\",\n    \"            input_ids=input_ids,\\n\",\n    \"            attention_mask=attention_mask,\\n\",\n    \"            labels=labels,\\n\",\n    \"        )\\n\",\n    \"        return output.loss, output.logits\\n\",\n    \"    \\n\",\n    \"    def training_step(self, batch, batch_idx):\\n\",\n    \"        input_ids = batch[\\\"input_ids\\\"]\\n\",\n    \"        attention_mask = batch[\\\"attention_mask\\\"]\\n\",\n    \"        labels = batch[\\\"labels\\\"]\\n\",\n    \"        loss, logits = self(input_ids, attention_mask, labels)\\n\",\n    \"        self.log('train_loss', loss, on_epoch=True, on_step=True, prog_bar=True)\\n\",\n    \"        return {'loss': loss, 'logits': logits}\\n\",\n    \"    \\n\",\n    \"    def validation_step(self, batch, batch_idx):\\n\",\n    \"        input_ids = batch[\\\"input_ids\\\"]\\n\",\n    \"        attention_mask = batch[\\\"attention_mask\\\"]\\n\",\n    \"        labels = batch[\\\"labels\\\"]\\n\",\n    \"        loss, logits = self(input_ids, attention_mask, labels)\\n\",\n    \"        self.log('val_loss', loss, on_epoch=True, on_step=False)\\n\",\n    \"        \\n\",\n    \"        # Save logits and labels as instance attributes\\n\",\n    \"        if not hasattr(self, \\\"logits\\\"):\\n\",\n    \"            self.logits = logits\\n\",\n    \"        else:\\n\",\n    \"            self.logits = torch.cat((self.logits, logits), dim=0)\\n\",\n    \"        \\n\",\n    \"        if not hasattr(self, \\\"labels\\\"):\\n\",\n    \"            self.labels = labels\\n\",\n    \"        else:\\n\",\n    \"            self.labels = torch.cat((self.labels, labels), dim=0)\\n\",\n    \"            \\n\",\n    \"        return {'loss': loss, 'logits': logits, \\\"labels\\\":labels}\\n\",\n    \"    \\n\",\n    \"    def on_validation_epoch_end(self):\\n\",\n    \"        # Convert logits to predicted token IDs\\n\",\n    \"        pred_token_ids = self.logits.argmax(dim=-1)\\n\",\n    \"\\n\",\n    \"        # Decode predictions and labels using the saved instance attributes\\n\",\n    \"        decoded_preds = tokenizer.batch_decode(pred_token_ids, skip_special_tokens=True)\\n\",\n    \"        decoded_labels = tokenizer.batch_decode(self.labels, skip_special_tokens=True)\\n\",\n    \"\\n\",\n    \"        # Compute ROUGE scores\\n\",\n    \"        scores = self.metric.compute(predictions=decoded_preds, references=decoded_labels, rouge_types=[\\\"rouge1\\\"])[\\\"rouge1\\\"].mid\\n\",\n    \"\\n\",\n    \"        self.log('rouge1_precision', scores.precision, prog_bar=True)\\n\",\n    \"        self.log('rouge1_recall', scores.recall, prog_bar=True)\\n\",\n    \"        self.log('rouge1_fmeasure', scores.fmeasure, prog_bar=True)\\n\",\n    \"\\n\",\n    \"        # Clear logits and labels instance attributes for the next validation epoch\\n\",\n    \"        del self.logits\\n\",\n    \"        del self.labels\\n\",\n    \"    \\n\",\n    \"    def configure_optimizers(self):\\n\",\n    \"        optimizer = torch.optim.AdamW(self.parameters(), lr=self.learning_rate, weight_decay=self.weight_decay)\\n\",\n    \"        return optimizer\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"dd63c628\",\n   \"metadata\": {\n    \"scrolled\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# File paths\\n\",\n    \"train_csv = \\\"train.csv\\\"\\n\",\n    \"val_csv = \\\"validation.csv\\\"\\n\",\n    \"test_csv = \\\"test.csv\\\"\\n\",\n    \"\\n\",\n    \"# Create the data module\\n\",\n    \"dm = MyDataModule(train_csv, val_csv, test_csv, tokenizer, batch_size=16)\\n\",\n    \"dm.setup()\\n\",\n    \"\\n\",\n    \"model = MyLightningModule(model_name=\\\"t5-small\\\", learning_rate=1e-4, weight_decay=1e-5)\\n\",\n    \"trainer = pl.Trainer(accelerator=\\\"gpu\\\", devices=[0], max_epochs=1, precision=16)\\n\",\n    \"trainer.fit(model, datamodule=dm)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"b5d3d684\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"http://localhost:18888/notebooks/cnndaily_t5_lightning_customdataloading.ipynb\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"a0494596\",\n   \"metadata\": {},\n   \"source\": [\n    \"### next steps:\\n\",\n    \"* if article is > 512, because now we are truncating maybe it causes issues if the article is much longer?\\n\",\n    \"\\n\",\n    \"#### what we've done:\\n\",\n    \"* Change the data loading so it's more general, meaning on the fly loading from disk\\n\",\n    \"* add torch.compile\\n\",\n    \"* 1. Clean up the code, make it into scripts instead of notebook -> Train for an epoch (add multi-gpu training?)\\n\",\n    \"* add tensorboard visualization\\n\",\n    \"* not use pretrained weights but from scratch to ensure that training setup works and actually improving\\n\",\n    \"* 2. Create an inference step, send in news article -> get summary, check that it works\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"80a2efab\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"0f9b71ab\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3 (ipykernel)\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.10.9\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 5\n}\n"
  },
  {
    "path": "ML/Pytorch/huggingface/.ipynb_checkpoints/finetune_t5_lightning-checkpoint.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"id\": \"ec1aae37\",\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"2023-02-21 16:36:20.707209: I tensorflow/core/platform/cpu_feature_guard.cc:193] This TensorFlow binary is optimized with oneAPI Deep Neural Network Library (oneDNN) to use the following CPU instructions in performance-critical operations:  AVX2 FMA\\n\",\n      \"To enable them in other operations, rebuild TensorFlow with the appropriate compiler flags.\\n\",\n      \"2023-02-21 16:36:21.233575: W tensorflow/compiler/xla/stream_executor/platform/default/dso_loader.cc:64] Could not load dynamic library 'libnvinfer.so.7'; dlerror: libnvinfer.so.7: cannot open shared object file: No such file or directory\\n\",\n      \"2023-02-21 16:36:21.233623: W tensorflow/compiler/xla/stream_executor/platform/default/dso_loader.cc:64] Could not load dynamic library 'libnvinfer_plugin.so.7'; dlerror: libnvinfer_plugin.so.7: cannot open shared object file: No such file or directory\\n\",\n      \"2023-02-21 16:36:21.233628: W tensorflow/compiler/tf2tensorrt/utils/py_utils.cc:38] TF-TRT Warning: Cannot dlopen some TensorRT libraries. If you would like to use Nvidia GPU with TensorRT, please make sure the missing libraries mentioned above are installed properly.\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"import warnings\\n\",\n    \"warnings.simplefilter(\\\"ignore\\\")\\n\",\n    \"\\n\",\n    \"import os\\n\",\n    \"os.environ[\\\"CUDA_DEVICE_ORDER\\\"]=\\\"PCI_BUS_ID\\\"\\n\",\n    \"os.environ[\\\"CUDA_VISIBLE_DEVICES\\\"]=\\\"1\\\"\\n\",\n    \"\\n\",\n    \"import numpy as np\\n\",\n    \"import torch\\n\",\n    \"\\n\",\n    \"import datasets \\n\",\n    \"import pytorch_lightning as pl\\n\",\n    \"\\n\",\n    \"from datasets import load_dataset, load_metric\\n\",\n    \"\\n\",\n    \"from transformers import (\\n\",\n    \"    AutoModel,\\n\",\n    \"    AutoModelForSeq2SeqLM,\\n\",\n    \"    AutoTokenizer,\\n\",\n    \"    DataCollatorForSeq2Seq,\\n\",\n    \"    Seq2SeqTrainingArguments,\\n\",\n    \"    Seq2SeqTrainer,\\n\",\n    \")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"id\": \"5fd7cb0c\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"model_name = \\\"t5-small\\\"\\n\",\n    \"tokenizer = AutoTokenizer.from_pretrained(model_name)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"id\": \"04530b1e\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Define the LightningDataModule\\n\",\n    \"class MyDataModule(pl.LightningDataModule):\\n\",\n    \"    def __init__(self, batch_size):\\n\",\n    \"        super().__init__()\\n\",\n    \"        self.batch_size = batch_size\\n\",\n    \"    \\n\",\n    \"    def prepare_data(self):\\n\",\n    \"        # Download and preprocess the data\\n\",\n    \"        load_dataset(\\\"cnn_dailymail\\\", \\\"3.0.0\\\", split=\\\"train[:10%]\\\")\\n\",\n    \"        load_dataset(\\\"cnn_dailymail\\\", \\\"3.0.0\\\", split=\\\"validation[:10%]\\\")\\n\",\n    \"    \\n\",\n    \"    def setup(self, stage=None):\\n\",\n    \"        # Load and preprocess the data\\n\",\n    \"        train_data = load_dataset(\\\"cnn_dailymail\\\", \\\"3.0.0\\\", split=\\\"train[:10%]\\\")\\n\",\n    \"        val_data = load_dataset(\\\"cnn_dailymail\\\", \\\"3.0.0\\\", split=\\\"validation[:10%]\\\")\\n\",\n    \"\\n\",\n    \"        self.train_ds = train_data.map(\\n\",\n    \"            self.preprocess_function, \\n\",\n    \"            batched=True, \\n\",\n    \"            batch_size=self.batch_size, \\n\",\n    \"            remove_columns=[\\\"article\\\", \\\"highlights\\\", \\\"id\\\"]\\n\",\n    \"        )\\n\",\n    \"\\n\",\n    \"        self.val_ds = val_data.map(\\n\",\n    \"            self.preprocess_function, \\n\",\n    \"            batched=True, \\n\",\n    \"            batch_size=self.batch_size,\\n\",\n    \"            remove_columns=[\\\"article\\\", \\\"highlights\\\", \\\"id\\\"]\\n\",\n    \"        )\\n\",\n    \"\\n\",\n    \"    def preprocess_function(self, batch):\\n\",\n    \"        inputs = tokenizer(batch[\\\"article\\\"], padding=\\\"max_length\\\", truncation=True, max_length=512)\\n\",\n    \"        outputs = tokenizer(batch[\\\"highlights\\\"], padding=\\\"max_length\\\", truncation=True, max_length=128)\\n\",\n    \"        batch[\\\"input_ids\\\"] = inputs.input_ids\\n\",\n    \"        batch[\\\"attention_mask\\\"] = inputs.attention_mask\\n\",\n    \"        batch[\\\"labels\\\"] = outputs.input_ids.copy()\\n\",\n    \"        return batch\\n\",\n    \"\\n\",\n    \"    def train_dataloader(self):\\n\",\n    \"        return torch.utils.data.DataLoader(self.train_ds, batch_size=self.batch_size)\\n\",\n    \"\\n\",\n    \"    def val_dataloader(self):\\n\",\n    \"        return torch.utils.data.DataLoader(self.val_ds, batch_size=self.batch_size)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"id\": \"fbb699e1\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"class MyLightningModule(pl.LightningModule):\\n\",\n    \"    def __init__(self, model_name, learning_rate, weight_decay, batch_size):\\n\",\n    \"        super().__init__()\\n\",\n    \"        self.model_name = model_name\\n\",\n    \"        self.learning_rate = learning_rate\\n\",\n    \"        self.weight_decay = weight_decay\\n\",\n    \"        self.batch_size = batch_size\\n\",\n    \"        \\n\",\n    \"        # Load the pre-trained model and tokenizer\\n\",\n    \"        self.model = AutoModelForSeq2SeqLM.from_pretrained(self.model_name)\\n\",\n    \"\\n\",\n    \"        # Load the ROUGE metric\\n\",\n    \"        self.metric = load_metric(\\\"rouge\\\")\\n\",\n    \"\\n\",\n    \"    def forward(self, input_ids, attention_mask, labels=None):\\n\",\n    \"        output = self.model(\\n\",\n    \"            input_ids=input_ids,\\n\",\n    \"            attention_mask=attention_mask,\\n\",\n    \"            labels=labels,\\n\",\n    \"        )\\n\",\n    \"        return output.loss, output.logits\\n\",\n    \"    \\n\",\n    \"    def training_step(self, batch, batch_idx):\\n\",\n    \"        input_ids = batch[\\\"input_ids\\\"]\\n\",\n    \"        attention_mask = batch[\\\"attention_mask\\\"]\\n\",\n    \"        labels = batch[\\\"labels\\\"]\\n\",\n    \"        loss, logits = self(input_ids, attention_mask, labels)\\n\",\n    \"        self.log('train_loss', loss, on_epoch=True, on_step=False)\\n\",\n    \"        return {'loss': loss, 'logits': logits}\\n\",\n    \"    \\n\",\n    \"    def validation_step(self, batch, batch_idx):\\n\",\n    \"        input_ids = batch[\\\"input_ids\\\"]\\n\",\n    \"        attention_mask = batch[\\\"attention_mask\\\"]\\n\",\n    \"        labels = batch[\\\"labels\\\"]\\n\",\n    \"        loss, logits = self(input_ids, attention_mask, labels)\\n\",\n    \"        self.log('val_loss', loss, on_epoch=True, on_step=False)\\n\",\n    \"        return {'loss': loss, 'logits': logits, \\\"labels\\\":labels}\\n\",\n    \"    \\n\",\n    \"    def validation_epoch_end(self, outputs):\\n\",\n    \"        decoded_preds = []\\n\",\n    \"        decoded_labels = []\\n\",\n    \"        for output in outputs:\\n\",\n    \"            logits = output['logits']\\n\",\n    \"            labels = output['labels']\\n\",\n    \"            decoded_preds += self.tokenizer.batch_decode(logits, skip_special_tokens=True)\\n\",\n    \"            decoded_labels += self.tokenizer.batch_decode(labels, skip_special_tokens=True)\\n\",\n    \"        \\n\",\n    \"        scores = self.metric.compute(predictions=decoded_preds, references=decoded_labels, rouge_types=[\\\"rouge1\\\"])[\\\"rouge1\\\"].mid\\n\",\n    \"        \\n\",\n    \"        self.log('rouge1_precision', scores.precision, prog_bar=True)\\n\",\n    \"        self.log('rouge1_recall', scores.recall, prog_bar=True)\\n\",\n    \"        self.log('rouge1_fmeasure', scores.fmeasure, prog_bar=True)\\n\",\n    \"    \\n\",\n    \"    def configure_optimizers(self):\\n\",\n    \"        optimizer = torch.optim.AdamW(self.parameters(), lr=self.learning_rate, weight_decay=self.weight_decay)\\n\",\n    \"        return optimizer\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"id\": \"dd63c628\",\n   \"metadata\": {\n    \"scrolled\": false\n   },\n   \"outputs\": [\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"GPU available: True (cuda), used: True\\n\",\n      \"TPU available: False, using: 0 TPU cores\\n\",\n      \"IPU available: False, using: 0 IPUs\\n\",\n      \"HPU available: False, using: 0 HPUs\\n\",\n      \"Found cached dataset cnn_dailymail (/home/mrbean/.cache/huggingface/datasets/cnn_dailymail/3.0.0/3.0.0/1b3c71476f6d152c31c1730e83ccb08bcf23e348233f4fcc11e182248e6bf7de)\\n\",\n      \"Found cached dataset cnn_dailymail (/home/mrbean/.cache/huggingface/datasets/cnn_dailymail/3.0.0/3.0.0/1b3c71476f6d152c31c1730e83ccb08bcf23e348233f4fcc11e182248e6bf7de)\\n\",\n      \"Found cached dataset cnn_dailymail (/home/mrbean/.cache/huggingface/datasets/cnn_dailymail/3.0.0/3.0.0/1b3c71476f6d152c31c1730e83ccb08bcf23e348233f4fcc11e182248e6bf7de)\\n\",\n      \"Found cached dataset cnn_dailymail (/home/mrbean/.cache/huggingface/datasets/cnn_dailymail/3.0.0/3.0.0/1b3c71476f6d152c31c1730e83ccb08bcf23e348233f4fcc11e182248e6bf7de)\\n\",\n      \"\\n\",\n      \"  0%|                                                                                                                                               | 0/1795 [00:00<?, ?ba/s]\\u001b[A\\n\",\n      \"  1%|▉                                                                                                                                    | 13/1795 [00:00<00:14, 121.44ba/s]\\u001b[A\\n\",\n      \"  1%|█▉                                                                                                                                   | 26/1795 [00:00<00:15, 117.31ba/s]\\u001b[A\\n\",\n      \"  2%|██▊                                                                                                                                  | 38/1795 [00:00<00:15, 114.50ba/s]\\u001b[A\\n\",\n      \"  3%|███▋                                                                                                                                 | 50/1795 [00:00<00:15, 114.43ba/s]\\u001b[A\\n\",\n      \"  3%|████▌                                                                                                                                | 62/1795 [00:00<00:15, 115.53ba/s]\\u001b[A\\n\",\n      \"  4%|█████▍                                                                                                                               | 74/1795 [00:00<00:15, 113.50ba/s]\\u001b[A\\n\",\n      \"  5%|██████▎                                                                                                                              | 86/1795 [00:00<00:15, 111.92ba/s]\\u001b[A\\n\",\n      \"  5%|███████▎                                                                                                                             | 98/1795 [00:00<00:15, 111.38ba/s]\\u001b[A\\n\",\n      \"  6%|████████                                                                                                                            | 110/1795 [00:00<00:15, 112.08ba/s]\\u001b[A\\n\",\n      \"  7%|████████▉                                                                                                                           | 122/1795 [00:01<00:14, 113.73ba/s]\\u001b[A\\n\",\n      \"  7%|█████████▊                                                                                                                          | 134/1795 [00:01<00:14, 113.43ba/s]\\u001b[A\\n\",\n      \"  8%|██████████▋                                                                                                                         | 146/1795 [00:01<00:14, 111.37ba/s]\\u001b[A\\n\",\n      \"  9%|███████████▌                                                                                                                        | 158/1795 [00:01<00:14, 111.32ba/s]\\u001b[A\\n\",\n      \"  9%|████████████▌                                                                                                                       | 170/1795 [00:01<00:14, 110.29ba/s]\\u001b[A\\n\",\n      \" 10%|█████████████▍                                                                                                                      | 182/1795 [00:01<00:14, 110.06ba/s]\\u001b[A\\n\",\n      \" 11%|██████████████▎                                                                                                                     | 194/1795 [00:01<00:14, 111.06ba/s]\\u001b[A\\n\",\n      \" 11%|███████████████▏                                                                                                                    | 206/1795 [00:01<00:14, 111.15ba/s]\\u001b[A\\n\",\n      \" 12%|████████████████                                                                                                                    | 218/1795 [00:01<00:14, 110.27ba/s]\\u001b[A\\n\",\n      \" 13%|████████████████▉                                                                                                                   | 230/1795 [00:02<00:14, 109.17ba/s]\\u001b[A\\n\",\n      \" 13%|█████████████████▋                                                                                                                  | 241/1795 [00:02<00:14, 107.81ba/s]\\u001b[A\\n\",\n      \" 14%|██████████████████▌                                                                                                                 | 252/1795 [00:02<00:14, 107.84ba/s]\\u001b[A\\n\",\n      \" 15%|███████████████████▎                                                                                                                | 263/1795 [00:02<00:14, 107.73ba/s]\\u001b[A\\n\",\n      \" 15%|████████████████████▏                                                                                                               | 274/1795 [00:02<00:14, 107.06ba/s]\\u001b[A\\n\",\n      \" 16%|█████████████████████                                                                                                               | 286/1795 [00:02<00:13, 108.37ba/s]\\u001b[A\\n\",\n      \" 17%|█████████████████████▊                                                                                                              | 297/1795 [00:02<00:13, 107.89ba/s]\\u001b[A\\n\",\n      \" 17%|██████████████████████▋                                                                                                             | 309/1795 [00:02<00:13, 108.63ba/s]\\u001b[A\\n\",\n      \" 18%|███████████████████████▌                                                                                                            | 320/1795 [00:02<00:13, 106.85ba/s]\\u001b[A\\n\",\n      \" 18%|████████████████████████▎                                                                                                           | 331/1795 [00:03<00:13, 105.16ba/s]\\u001b[A\\n\",\n      \" 19%|█████████████████████████▏                                                                                                          | 342/1795 [00:03<00:13, 105.20ba/s]\\u001b[A\\n\",\n      \" 20%|█████████████████████████▉                                                                                                          | 353/1795 [00:03<00:13, 106.52ba/s]\\u001b[A\\n\",\n      \" 20%|██████████████████████████▊                                                                                                         | 364/1795 [00:03<00:13, 106.07ba/s]\\u001b[A\\n\",\n      \" 21%|███████████████████████████▌                                                                                                        | 375/1795 [00:03<00:13, 106.21ba/s]\\u001b[A\\n\",\n      \" 22%|████████████████████████████▍                                                                                                       | 386/1795 [00:03<00:13, 106.57ba/s]\\u001b[A\\n\",\n      \" 22%|█████████████████████████████▎                                                                                                      | 398/1795 [00:03<00:12, 108.52ba/s]\\u001b[A\\n\",\n      \" 23%|██████████████████████████████                                                                                                      | 409/1795 [00:03<00:12, 108.42ba/s]\\u001b[A\\n\",\n      \" 23%|██████████████████████████████▉                                                                                                     | 421/1795 [00:03<00:12, 110.30ba/s]\\u001b[A\\n\",\n      \" 24%|███████████████████████████████▊                                                                                                    | 433/1795 [00:03<00:12, 108.73ba/s]\\u001b[A\\n\",\n      \" 25%|████████████████████████████████▋                                                                                                   | 444/1795 [00:04<00:12, 106.43ba/s]\\u001b[A\\n\",\n      \" 25%|█████████████████████████████████▍                                                                                                  | 455/1795 [00:04<00:12, 106.82ba/s]\\u001b[A\\n\",\n      \" 26%|██████████████████████████████████▎                                                                                                 | 466/1795 [00:04<00:12, 105.85ba/s]\\u001b[A\\n\",\n      \" 27%|███████████████████████████████████                                                                                                 | 477/1795 [00:04<00:12, 107.02ba/s]\\u001b[A\\n\",\n      \" 27%|███████████████████████████████████▉                                                                                                | 488/1795 [00:04<00:12, 106.66ba/s]\\u001b[A\\n\",\n      \" 28%|████████████████████████████████████▊                                                                                               | 500/1795 [00:04<00:11, 108.59ba/s]\\u001b[A\\n\",\n      \" 28%|█████████████████████████████████████▌                                                                                              | 511/1795 [00:04<00:12, 106.49ba/s]\\u001b[A\\n\",\n      \" 29%|██████████████████████████████████████▍                                                                                             | 523/1795 [00:04<00:11, 109.26ba/s]\\u001b[A\\n\",\n      \" 30%|███████████████████████████████████████▎                                                                                            | 535/1795 [00:04<00:11, 109.78ba/s]\\u001b[A\\n\",\n      \" 30%|████████████████████████████████████████▏                                                                                           | 546/1795 [00:04<00:11, 108.30ba/s]\\u001b[A\\n\",\n      \" 31%|████████████████████████████████████████▉                                                                                           | 557/1795 [00:05<00:11, 107.77ba/s]\\u001b[A\\n\",\n      \" 32%|█████████████████████████████████████████▊                                                                                          | 569/1795 [00:05<00:11, 108.36ba/s]\\u001b[A\\n\",\n      \" 32%|██████████████████████████████████████████▋                                                                                         | 580/1795 [00:05<00:11, 107.05ba/s]\\u001b[A\\n\",\n      \" 33%|███████████████████████████████████████████▌                                                                                        | 592/1795 [00:05<00:11, 108.48ba/s]\\u001b[A\\n\",\n      \" 34%|████████████████████████████████████████████▎                                                                                       | 603/1795 [00:05<00:11, 108.25ba/s]\\u001b[A\\n\",\n      \" 34%|█████████████████████████████████████████████▏                                                                                      | 615/1795 [00:05<00:10, 110.59ba/s]\\u001b[A\\n\",\n      \" 35%|██████████████████████████████████████████████                                                                                      | 627/1795 [00:05<00:10, 111.44ba/s]\\u001b[A\\n\",\n      \" 36%|██████████████████████████████████████████████▉                                                                                     | 639/1795 [00:05<00:10, 109.07ba/s]\\u001b[A\\n\",\n      \" 36%|███████████████████████████████████████████████▊                                                                                    | 651/1795 [00:05<00:10, 109.77ba/s]\\u001b[A\\n\",\n      \" 37%|████████████████████████████████████████████████▋                                                                                   | 662/1795 [00:06<00:10, 109.69ba/s]\\u001b[A\\n\",\n      \" 37%|█████████████████████████████████████████████████▍                                                                                  | 673/1795 [00:06<00:10, 109.08ba/s]\\u001b[A\\n\",\n      \" 38%|██████████████████████████████████████████████████▎                                                                                 | 685/1795 [00:06<00:10, 109.77ba/s]\\u001b[A\\n\",\n      \" 39%|███████████████████████████████████████████████████▎                                                                                | 697/1795 [00:06<00:10, 109.54ba/s]\\u001b[A\\n\",\n      \" 39%|████████████████████████████████████████████████████                                                                                | 708/1795 [00:06<00:09, 109.08ba/s]\\u001b[A\\n\",\n      \" 40%|████████████████████████████████████████████████████▉                                                                               | 720/1795 [00:06<00:09, 110.53ba/s]\\u001b[A\\n\",\n      \" 41%|█████████████████████████████████████████████████████▊                                                                              | 732/1795 [00:06<00:09, 108.30ba/s]\\u001b[A\\n\",\n      \" 41%|██████████████████████████████████████████████████████▋                                                                             | 744/1795 [00:06<00:09, 110.04ba/s]\\u001b[A\\n\",\n      \" 42%|███████████████████████████████████████████████████████▌                                                                            | 756/1795 [00:06<00:09, 112.10ba/s]\\u001b[A\\n\",\n      \" 43%|████████████████████████████████████████████████████████▍                                                                           | 768/1795 [00:07<00:09, 111.21ba/s]\\u001b[A\\n\",\n      \" 43%|█████████████████████████████████████████████████████████▎                                                                          | 780/1795 [00:07<00:09, 111.99ba/s]\\u001b[A\\n\",\n      \" 44%|██████████████████████████████████████████████████████████▏                                                                         | 792/1795 [00:07<00:08, 112.21ba/s]\\u001b[A\\n\",\n      \" 45%|███████████████████████████████████████████████████████████                                                                         | 804/1795 [00:07<00:09, 109.31ba/s]\\u001b[A\\n\",\n      \" 46%|████████████████████████████████████████████████████████████                                                                        | 817/1795 [00:07<00:08, 113.17ba/s]\\u001b[A\\n\",\n      \" 46%|████████████████████████████████████████████████████████████▉                                                                       | 829/1795 [00:07<00:08, 113.26ba/s]\\u001b[A\\n\",\n      \" 47%|█████████████████████████████████████████████████████████████▊                                                                      | 841/1795 [00:07<00:08, 113.69ba/s]\\u001b[A\\n\",\n      \" 48%|██████████████████████████████████████████████████████████████▋                                                                     | 853/1795 [00:07<00:08, 114.08ba/s]\\u001b[A\\n\",\n      \" 48%|███████████████████████████████████████████████████████████████▌                                                                    | 865/1795 [00:07<00:08, 112.82ba/s]\\u001b[A\\n\",\n      \" 49%|████████████████████████████████████████████████████████████████▍                                                                   | 877/1795 [00:07<00:08, 113.22ba/s]\\u001b[A\\n\",\n      \" 50%|█████████████████████████████████████████████████████████████████▍                                                                  | 890/1795 [00:08<00:07, 115.71ba/s]\\u001b[A\\n\",\n      \" 50%|██████████████████████████████████████████████████████████████████▎                                                                 | 902/1795 [00:08<00:07, 115.77ba/s]\\u001b[A\\n\",\n      \" 51%|███████████████████████████████████████████████████████████████████▏                                                                | 914/1795 [00:08<00:07, 114.07ba/s]\\u001b[A\\n\",\n      \" 52%|████████████████████████████████████████████████████████████████████                                                                | 926/1795 [00:08<00:07, 114.19ba/s]\\u001b[A\\n\",\n      \" 52%|████████████████████████████████████████████████████████████████████▉                                                               | 938/1795 [00:08<00:07, 115.57ba/s]\\u001b[A\\n\",\n      \" 53%|█████████████████████████████████████████████████████████████████████▊                                                              | 950/1795 [00:08<00:07, 115.94ba/s]\\u001b[A\\n\",\n      \" 54%|██████████████████████████████████████████████████████████████████████▋                                                             | 962/1795 [00:08<00:07, 116.65ba/s]\\u001b[A\\n\",\n      \" 54%|███████████████████████████████████████████████████████████████████████▋                                                            | 974/1795 [00:08<00:07, 113.94ba/s]\\u001b[A\\n\",\n      \" 55%|████████████████████████████████████████████████████████████████████████▌                                                           | 986/1795 [00:08<00:07, 111.71ba/s]\\u001b[A\\n\",\n      \" 56%|█████████████████████████████████████████████████████████████████████████▍                                                          | 998/1795 [00:09<00:07, 107.78ba/s]\\u001b[A\\n\",\n      \" 56%|█████████████████████████████████████████████████████████████████████████▋                                                         | 1009/1795 [00:09<00:07, 105.28ba/s]\\u001b[A\\n\"\n     ]\n    },\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \" 57%|██████████████████████████████████████████████████████████████████████████▌                                                        | 1021/1795 [00:09<00:07, 107.16ba/s]\\u001b[A\\n\",\n      \" 57%|███████████████████████████████████████████████████████████████████████████▎                                                       | 1032/1795 [00:09<00:07, 107.83ba/s]\\u001b[A\\n\",\n      \" 58%|████████████████████████████████████████████████████████████████████████████▏                                                      | 1044/1795 [00:09<00:06, 109.92ba/s]\\u001b[A\\n\",\n      \" 59%|█████████████████████████████████████████████████████████████████████████████                                                      | 1056/1795 [00:09<00:06, 112.47ba/s]\\u001b[A\\n\",\n      \" 59%|█████████████████████████████████████████████████████████████████████████████▉                                                     | 1068/1795 [00:09<00:06, 113.56ba/s]\\u001b[A\\n\",\n      \" 60%|██████████████████████████████████████████████████████████████████████████████▊                                                    | 1080/1795 [00:09<00:06, 111.84ba/s]\\u001b[A\\n\",\n      \" 61%|███████████████████████████████████████████████████████████████████████████████▋                                                   | 1092/1795 [00:09<00:06, 111.27ba/s]\\u001b[A\\n\",\n      \" 62%|████████████████████████████████████████████████████████████████████████████████▌                                                  | 1104/1795 [00:10<00:06, 110.39ba/s]\\u001b[A\\n\",\n      \" 62%|█████████████████████████████████████████████████████████████████████████████████▍                                                 | 1116/1795 [00:10<00:06, 111.33ba/s]\\u001b[A\\n\",\n      \" 63%|██████████████████████████████████████████████████████████████████████████████████▎                                                | 1128/1795 [00:10<00:05, 111.32ba/s]\\u001b[A\\n\",\n      \" 64%|███████████████████████████████████████████████████████████████████████████████████▏                                               | 1140/1795 [00:10<00:05, 112.20ba/s]\\u001b[A\\n\",\n      \" 64%|████████████████████████████████████████████████████████████████████████████████████▏                                              | 1153/1795 [00:10<00:05, 115.15ba/s]\\u001b[A\\n\",\n      \" 65%|█████████████████████████████████████████████████████████████████████████████████████                                              | 1165/1795 [00:10<00:05, 114.07ba/s]\\u001b[A\\n\",\n      \" 66%|█████████████████████████████████████████████████████████████████████████████████████▉                                             | 1177/1795 [00:10<00:05, 110.61ba/s]\\u001b[A\\n\",\n      \" 66%|██████████████████████████████████████████████████████████████████████████████████████▊                                            | 1189/1795 [00:10<00:05, 110.61ba/s]\\u001b[A\\n\",\n      \" 67%|███████████████████████████████████████████████████████████████████████████████████████▋                                           | 1201/1795 [00:10<00:05, 112.56ba/s]\\u001b[A\\n\",\n      \" 68%|████████████████████████████████████████████████████████████████████████████████████████▌                                          | 1213/1795 [00:10<00:05, 112.74ba/s]\\u001b[A\\n\",\n      \" 68%|█████████████████████████████████████████████████████████████████████████████████████████▍                                         | 1225/1795 [00:11<00:05, 111.53ba/s]\\u001b[A\\n\",\n      \" 69%|██████████████████████████████████████████████████████████████████████████████████████████▎                                        | 1237/1795 [00:11<00:05, 110.36ba/s]\\u001b[A\\n\",\n      \" 70%|███████████████████████████████████████████████████████████████████████████████████████████▏                                       | 1249/1795 [00:11<00:04, 109.75ba/s]\\u001b[A\\n\",\n      \" 70%|███████████████████████████████████████████████████████████████████████████████████████████▉                                       | 1260/1795 [00:11<00:04, 107.40ba/s]\\u001b[A\\n\",\n      \" 71%|████████████████████████████████████████████████████████████████████████████████████████████▊                                      | 1271/1795 [00:11<00:04, 106.67ba/s]\\u001b[A\\n\",\n      \" 71%|█████████████████████████████████████████████████████████████████████████████████████████████▌                                     | 1282/1795 [00:11<00:04, 106.95ba/s]\\u001b[A\\n\",\n      \" 72%|██████████████████████████████████████████████████████████████████████████████████████████████▎                                    | 1293/1795 [00:11<00:04, 107.69ba/s]\\u001b[A\\n\",\n      \" 73%|███████████████████████████████████████████████████████████████████████████████████████████████▏                                   | 1304/1795 [00:11<00:04, 107.86ba/s]\\u001b[A\\n\",\n      \" 73%|███████████████████████████████████████████████████████████████████████████████████████████████▉                                   | 1315/1795 [00:11<00:04, 107.71ba/s]\\u001b[A\\n\",\n      \" 74%|████████████████████████████████████████████████████████████████████████████████████████████████▊                                  | 1326/1795 [00:12<00:04, 107.71ba/s]\\u001b[A\\n\",\n      \" 74%|█████████████████████████████████████████████████████████████████████████████████████████████████▌                                 | 1337/1795 [00:12<00:04, 108.29ba/s]\\u001b[A\\n\",\n      \" 75%|██████████████████████████████████████████████████████████████████████████████████████████████████▍                                | 1349/1795 [00:12<00:04, 109.37ba/s]\\u001b[A\\n\",\n      \" 76%|███████████████████████████████████████████████████████████████████████████████████████████████████▎                               | 1361/1795 [00:12<00:03, 110.19ba/s]\\u001b[A\\n\",\n      \" 76%|████████████████████████████████████████████████████████████████████████████████████████████████████▏                              | 1373/1795 [00:12<00:03, 110.42ba/s]\\u001b[A\\n\",\n      \" 77%|█████████████████████████████████████████████████████████████████████████████████████████████████████                              | 1385/1795 [00:12<00:03, 111.32ba/s]\\u001b[A\\n\",\n      \" 78%|█████████████████████████████████████████████████████████████████████████████████████████████████████▉                             | 1397/1795 [00:12<00:03, 112.54ba/s]\\u001b[A\\n\",\n      \" 78%|██████████████████████████████████████████████████████████████████████████████████████████████████████▊                            | 1409/1795 [00:12<00:03, 112.91ba/s]\\u001b[A\\n\",\n      \" 79%|███████████████████████████████████████████████████████████████████████████████████████████████████████▋                           | 1421/1795 [00:12<00:03, 111.93ba/s]\\u001b[A\\n\",\n      \" 80%|████████████████████████████████████████████████████████████████████████████████████████████████████████▌                          | 1433/1795 [00:12<00:03, 109.91ba/s]\\u001b[A\\n\",\n      \" 81%|█████████████████████████████████████████████████████████████████████████████████████████████████████████▍                         | 1445/1795 [00:13<00:03, 109.29ba/s]\\u001b[A\\n\",\n      \" 81%|██████████████████████████████████████████████████████████████████████████████████████████████████████████▎                        | 1456/1795 [00:13<00:03, 107.81ba/s]\\u001b[A\\n\",\n      \" 82%|███████████████████████████████████████████████████████████████████████████████████████████████████████████                        | 1467/1795 [00:13<00:03, 107.59ba/s]\\u001b[A\\n\",\n      \" 82%|███████████████████████████████████████████████████████████████████████████████████████████████████████████▉                       | 1479/1795 [00:13<00:02, 107.83ba/s]\\u001b[A\\n\",\n      \" 83%|████████████████████████████████████████████████████████████████████████████████████████████████████████████▊                      | 1491/1795 [00:13<00:02, 108.92ba/s]\\u001b[A\\n\",\n      \" 84%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████▌                     | 1502/1795 [00:13<00:02, 108.64ba/s]\\u001b[A\\n\",\n      \" 84%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████▍                    | 1514/1795 [00:13<00:02, 110.24ba/s]\\u001b[A\\n\",\n      \" 85%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████▎                   | 1526/1795 [00:13<00:02, 111.64ba/s]\\u001b[A\\n\",\n      \" 86%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████▏                  | 1538/1795 [00:13<00:02, 110.08ba/s]\\u001b[A\\n\",\n      \" 86%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████                  | 1550/1795 [00:14<00:02, 108.01ba/s]\\u001b[A\\n\",\n      \" 87%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████▉                 | 1562/1795 [00:14<00:02, 109.96ba/s]\\u001b[A\\n\",\n      \" 88%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████▊                | 1574/1795 [00:14<00:02, 109.67ba/s]\\u001b[A\\n\",\n      \" 88%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████▋               | 1585/1795 [00:14<00:01, 107.92ba/s]\\u001b[A\\n\",\n      \" 89%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▍              | 1596/1795 [00:14<00:01, 108.38ba/s]\\u001b[A\\n\",\n      \" 90%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▍             | 1609/1795 [00:14<00:01, 112.44ba/s]\\u001b[A\\n\",\n      \" 90%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▎            | 1621/1795 [00:14<00:01, 110.29ba/s]\\u001b[A\\n\",\n      \" 91%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▏           | 1633/1795 [00:14<00:01, 110.18ba/s]\\u001b[A\\n\",\n      \" 92%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████           | 1645/1795 [00:14<00:01, 108.21ba/s]\\u001b[A\\n\",\n      \" 92%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▊          | 1656/1795 [00:15<00:01, 107.62ba/s]\\u001b[A\\n\",\n      \" 93%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▋         | 1667/1795 [00:15<00:01, 106.66ba/s]\\u001b[A\\n\",\n      \" 93%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▍        | 1678/1795 [00:15<00:01, 104.97ba/s]\\u001b[A\\n\",\n      \" 94%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▎       | 1689/1795 [00:15<00:01, 105.67ba/s]\\u001b[A\\n\",\n      \" 95%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████       | 1700/1795 [00:15<00:00, 106.08ba/s]\\u001b[A\\n\",\n      \" 95%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▉      | 1712/1795 [00:15<00:00, 107.07ba/s]\\u001b[A\\n\",\n      \" 96%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▊     | 1724/1795 [00:15<00:00, 108.53ba/s]\\u001b[A\\n\",\n      \" 97%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▌    | 1735/1795 [00:15<00:00, 108.05ba/s]\\u001b[A\\n\",\n      \" 97%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▍   | 1747/1795 [00:15<00:00, 110.64ba/s]\\u001b[A\\n\",\n      \" 98%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▎  | 1759/1795 [00:15<00:00, 111.38ba/s]\\u001b[A\\n\",\n      \" 99%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▏ | 1771/1795 [00:16<00:00, 110.67ba/s]\\u001b[A\\n\",\n      \" 99%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████ | 1783/1795 [00:16<00:00, 110.52ba/s]\\u001b[A\\n\",\n      \"100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 1795/1795 [00:16<00:00, 109.98ba/s]\\u001b[A\\n\",\n      \"\\n\",\n      \"  0%|                                                                                                                                                 | 0/84 [00:00<?, ?ba/s]\\u001b[A\\n\",\n      \" 14%|███████████████████▎                                                                                                                   | 12/84 [00:00<00:00, 110.99ba/s]\\u001b[A\\n\",\n      \" 29%|██████████████████████████████████████▌                                                                                                | 24/84 [00:00<00:00, 110.80ba/s]\\u001b[A\\n\",\n      \" 43%|█████████████████████████████████████████████████████████▊                                                                             | 36/84 [00:00<00:00, 107.75ba/s]\\u001b[A\\n\",\n      \" 56%|███████████████████████████████████████████████████████████████████████████▌                                                           | 47/84 [00:00<00:00, 103.83ba/s]\\u001b[A\\n\",\n      \" 69%|█████████████████████████████████████████████████████████████████████████████████████████████▏                                         | 58/84 [00:00<00:00, 102.87ba/s]\\u001b[A\\n\",\n      \" 82%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████▉                        | 69/84 [00:00<00:00, 104.54ba/s]\\u001b[A\\n\",\n      \"100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 84/84 [00:00<00:00, 106.09ba/s]\\u001b[A\\n\",\n      \"LOCAL_RANK: 0 - CUDA_VISIBLE_DEVICES: [1]\\n\",\n      \"\\n\",\n      \"  | Name  | Type                       | Params\\n\",\n      \"-----------------------------------------------------\\n\",\n      \"0 | model | T5ForConditionalGeneration | 60.5 M\\n\",\n      \"-----------------------------------------------------\\n\",\n      \"60.5 M    Trainable params\\n\",\n      \"0         Non-trainable params\\n\",\n      \"60.5 M    Total params\\n\",\n      \"242.026   Total estimated model params size (MB)\\n\"\n     ]\n    },\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Sanity Checking DataLoader 0:   0%|                                                                                                                    | 0/2 [00:00<?, ?it/s]\"\n     ]\n    },\n    {\n     \"ename\": \"AttributeError\",\n     \"evalue\": \"'list' object has no attribute 'size'\",\n     \"output_type\": \"error\",\n     \"traceback\": [\n      \"\\u001b[0;31m---------------------------------------------------------------------------\\u001b[0m\",\n      \"\\u001b[0;31mAttributeError\\u001b[0m                            Traceback (most recent call last)\",\n      \"Cell \\u001b[0;32mIn[8], line 5\\u001b[0m\\n\\u001b[1;32m      3\\u001b[0m trainer \\u001b[38;5;241m=\\u001b[39m pl\\u001b[38;5;241m.\\u001b[39mTrainer(accelerator\\u001b[38;5;241m=\\u001b[39m\\u001b[38;5;124m\\\"\\u001b[39m\\u001b[38;5;124mgpu\\u001b[39m\\u001b[38;5;124m\\\"\\u001b[39m, devices\\u001b[38;5;241m=\\u001b[39m[\\u001b[38;5;241m0\\u001b[39m], max_epochs\\u001b[38;5;241m=\\u001b[39m\\u001b[38;5;241m10\\u001b[39m)\\n\\u001b[1;32m      4\\u001b[0m dm \\u001b[38;5;241m=\\u001b[39m MyDataModule(batch_size\\u001b[38;5;241m=\\u001b[39m\\u001b[38;5;241m16\\u001b[39m)\\n\\u001b[0;32m----> 5\\u001b[0m \\u001b[43mtrainer\\u001b[49m\\u001b[38;5;241;43m.\\u001b[39;49m\\u001b[43mfit\\u001b[49m\\u001b[43m(\\u001b[49m\\u001b[43mmodel\\u001b[49m\\u001b[43m,\\u001b[49m\\u001b[43m \\u001b[49m\\u001b[43mdatamodule\\u001b[49m\\u001b[38;5;241;43m=\\u001b[39;49m\\u001b[43mdm\\u001b[49m\\u001b[43m)\\u001b[49m\\n\",\n      \"File \\u001b[0;32m~/.conda/envs/whisper_lightning/lib/python3.10/site-packages/pytorch_lightning/trainer/trainer.py:608\\u001b[0m, in \\u001b[0;36mTrainer.fit\\u001b[0;34m(self, model, train_dataloaders, val_dataloaders, datamodule, ckpt_path)\\u001b[0m\\n\\u001b[1;32m    606\\u001b[0m     \\u001b[38;5;28;01mraise\\u001b[39;00m \\u001b[38;5;167;01mTypeError\\u001b[39;00m(\\u001b[38;5;124mf\\u001b[39m\\u001b[38;5;124m\\\"\\u001b[39m\\u001b[38;5;124m`Trainer.fit()` requires a `LightningModule`, got: \\u001b[39m\\u001b[38;5;132;01m{\\u001b[39;00mmodel\\u001b[38;5;241m.\\u001b[39m\\u001b[38;5;18m__class__\\u001b[39m\\u001b[38;5;241m.\\u001b[39m\\u001b[38;5;18m__qualname__\\u001b[39m\\u001b[38;5;132;01m}\\u001b[39;00m\\u001b[38;5;124m\\\"\\u001b[39m)\\n\\u001b[1;32m    607\\u001b[0m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39mstrategy\\u001b[38;5;241m.\\u001b[39m_lightning_module \\u001b[38;5;241m=\\u001b[39m model\\n\\u001b[0;32m--> 608\\u001b[0m \\u001b[43mcall\\u001b[49m\\u001b[38;5;241;43m.\\u001b[39;49m\\u001b[43m_call_and_handle_interrupt\\u001b[49m\\u001b[43m(\\u001b[49m\\n\\u001b[1;32m    609\\u001b[0m \\u001b[43m    \\u001b[49m\\u001b[38;5;28;43mself\\u001b[39;49m\\u001b[43m,\\u001b[49m\\u001b[43m \\u001b[49m\\u001b[38;5;28;43mself\\u001b[39;49m\\u001b[38;5;241;43m.\\u001b[39;49m\\u001b[43m_fit_impl\\u001b[49m\\u001b[43m,\\u001b[49m\\u001b[43m \\u001b[49m\\u001b[43mmodel\\u001b[49m\\u001b[43m,\\u001b[49m\\u001b[43m \\u001b[49m\\u001b[43mtrain_dataloaders\\u001b[49m\\u001b[43m,\\u001b[49m\\u001b[43m \\u001b[49m\\u001b[43mval_dataloaders\\u001b[49m\\u001b[43m,\\u001b[49m\\u001b[43m \\u001b[49m\\u001b[43mdatamodule\\u001b[49m\\u001b[43m,\\u001b[49m\\u001b[43m \\u001b[49m\\u001b[43mckpt_path\\u001b[49m\\n\\u001b[1;32m    610\\u001b[0m \\u001b[43m\\u001b[49m\\u001b[43m)\\u001b[49m\\n\",\n      \"File \\u001b[0;32m~/.conda/envs/whisper_lightning/lib/python3.10/site-packages/pytorch_lightning/trainer/call.py:38\\u001b[0m, in \\u001b[0;36m_call_and_handle_interrupt\\u001b[0;34m(trainer, trainer_fn, *args, **kwargs)\\u001b[0m\\n\\u001b[1;32m     36\\u001b[0m         \\u001b[38;5;28;01mreturn\\u001b[39;00m trainer\\u001b[38;5;241m.\\u001b[39mstrategy\\u001b[38;5;241m.\\u001b[39mlauncher\\u001b[38;5;241m.\\u001b[39mlaunch(trainer_fn, \\u001b[38;5;241m*\\u001b[39margs, trainer\\u001b[38;5;241m=\\u001b[39mtrainer, \\u001b[38;5;241m*\\u001b[39m\\u001b[38;5;241m*\\u001b[39mkwargs)\\n\\u001b[1;32m     37\\u001b[0m     \\u001b[38;5;28;01melse\\u001b[39;00m:\\n\\u001b[0;32m---> 38\\u001b[0m         \\u001b[38;5;28;01mreturn\\u001b[39;00m \\u001b[43mtrainer_fn\\u001b[49m\\u001b[43m(\\u001b[49m\\u001b[38;5;241;43m*\\u001b[39;49m\\u001b[43margs\\u001b[49m\\u001b[43m,\\u001b[49m\\u001b[43m \\u001b[49m\\u001b[38;5;241;43m*\\u001b[39;49m\\u001b[38;5;241;43m*\\u001b[39;49m\\u001b[43mkwargs\\u001b[49m\\u001b[43m)\\u001b[49m\\n\\u001b[1;32m     40\\u001b[0m \\u001b[38;5;28;01mexcept\\u001b[39;00m _TunerExitException:\\n\\u001b[1;32m     41\\u001b[0m     trainer\\u001b[38;5;241m.\\u001b[39m_call_teardown_hook()\\n\",\n      \"File \\u001b[0;32m~/.conda/envs/whisper_lightning/lib/python3.10/site-packages/pytorch_lightning/trainer/trainer.py:650\\u001b[0m, in \\u001b[0;36mTrainer._fit_impl\\u001b[0;34m(self, model, train_dataloaders, val_dataloaders, datamodule, ckpt_path)\\u001b[0m\\n\\u001b[1;32m    643\\u001b[0m ckpt_path \\u001b[38;5;241m=\\u001b[39m ckpt_path \\u001b[38;5;129;01mor\\u001b[39;00m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39mresume_from_checkpoint\\n\\u001b[1;32m    644\\u001b[0m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39m_ckpt_path \\u001b[38;5;241m=\\u001b[39m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39m_checkpoint_connector\\u001b[38;5;241m.\\u001b[39m_set_ckpt_path(\\n\\u001b[1;32m    645\\u001b[0m     \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39mstate\\u001b[38;5;241m.\\u001b[39mfn,\\n\\u001b[1;32m    646\\u001b[0m     ckpt_path,  \\u001b[38;5;66;03m# type: ignore[arg-type]\\u001b[39;00m\\n\\u001b[1;32m    647\\u001b[0m     model_provided\\u001b[38;5;241m=\\u001b[39m\\u001b[38;5;28;01mTrue\\u001b[39;00m,\\n\\u001b[1;32m    648\\u001b[0m     model_connected\\u001b[38;5;241m=\\u001b[39m\\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39mlightning_module \\u001b[38;5;129;01mis\\u001b[39;00m \\u001b[38;5;129;01mnot\\u001b[39;00m \\u001b[38;5;28;01mNone\\u001b[39;00m,\\n\\u001b[1;32m    649\\u001b[0m )\\n\\u001b[0;32m--> 650\\u001b[0m \\u001b[38;5;28;43mself\\u001b[39;49m\\u001b[38;5;241;43m.\\u001b[39;49m\\u001b[43m_run\\u001b[49m\\u001b[43m(\\u001b[49m\\u001b[43mmodel\\u001b[49m\\u001b[43m,\\u001b[49m\\u001b[43m \\u001b[49m\\u001b[43mckpt_path\\u001b[49m\\u001b[38;5;241;43m=\\u001b[39;49m\\u001b[38;5;28;43mself\\u001b[39;49m\\u001b[38;5;241;43m.\\u001b[39;49m\\u001b[43mckpt_path\\u001b[49m\\u001b[43m)\\u001b[49m\\n\\u001b[1;32m    652\\u001b[0m \\u001b[38;5;28;01massert\\u001b[39;00m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39mstate\\u001b[38;5;241m.\\u001b[39mstopped\\n\\u001b[1;32m    653\\u001b[0m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39mtraining \\u001b[38;5;241m=\\u001b[39m \\u001b[38;5;28;01mFalse\\u001b[39;00m\\n\",\n      \"File \\u001b[0;32m~/.conda/envs/whisper_lightning/lib/python3.10/site-packages/pytorch_lightning/trainer/trainer.py:1103\\u001b[0m, in \\u001b[0;36mTrainer._run\\u001b[0;34m(self, model, ckpt_path)\\u001b[0m\\n\\u001b[1;32m   1099\\u001b[0m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39m_checkpoint_connector\\u001b[38;5;241m.\\u001b[39mrestore_training_state()\\n\\u001b[1;32m   1101\\u001b[0m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39m_checkpoint_connector\\u001b[38;5;241m.\\u001b[39mresume_end()\\n\\u001b[0;32m-> 1103\\u001b[0m results \\u001b[38;5;241m=\\u001b[39m \\u001b[38;5;28;43mself\\u001b[39;49m\\u001b[38;5;241;43m.\\u001b[39;49m\\u001b[43m_run_stage\\u001b[49m\\u001b[43m(\\u001b[49m\\u001b[43m)\\u001b[49m\\n\\u001b[1;32m   1105\\u001b[0m log\\u001b[38;5;241m.\\u001b[39mdetail(\\u001b[38;5;124mf\\u001b[39m\\u001b[38;5;124m\\\"\\u001b[39m\\u001b[38;5;132;01m{\\u001b[39;00m\\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39m\\u001b[38;5;18m__class__\\u001b[39m\\u001b[38;5;241m.\\u001b[39m\\u001b[38;5;18m__name__\\u001b[39m\\u001b[38;5;132;01m}\\u001b[39;00m\\u001b[38;5;124m: trainer tearing down\\u001b[39m\\u001b[38;5;124m\\\"\\u001b[39m)\\n\\u001b[1;32m   1106\\u001b[0m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39m_teardown()\\n\",\n      \"File \\u001b[0;32m~/.conda/envs/whisper_lightning/lib/python3.10/site-packages/pytorch_lightning/trainer/trainer.py:1182\\u001b[0m, in \\u001b[0;36mTrainer._run_stage\\u001b[0;34m(self)\\u001b[0m\\n\\u001b[1;32m   1180\\u001b[0m \\u001b[38;5;28;01mif\\u001b[39;00m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39mpredicting:\\n\\u001b[1;32m   1181\\u001b[0m     \\u001b[38;5;28;01mreturn\\u001b[39;00m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39m_run_predict()\\n\\u001b[0;32m-> 1182\\u001b[0m \\u001b[38;5;28;43mself\\u001b[39;49m\\u001b[38;5;241;43m.\\u001b[39;49m\\u001b[43m_run_train\\u001b[49m\\u001b[43m(\\u001b[49m\\u001b[43m)\\u001b[49m\\n\",\n      \"File \\u001b[0;32m~/.conda/envs/whisper_lightning/lib/python3.10/site-packages/pytorch_lightning/trainer/trainer.py:1195\\u001b[0m, in \\u001b[0;36mTrainer._run_train\\u001b[0;34m(self)\\u001b[0m\\n\\u001b[1;32m   1192\\u001b[0m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39m_pre_training_routine()\\n\\u001b[1;32m   1194\\u001b[0m \\u001b[38;5;28;01mwith\\u001b[39;00m isolate_rng():\\n\\u001b[0;32m-> 1195\\u001b[0m     \\u001b[38;5;28;43mself\\u001b[39;49m\\u001b[38;5;241;43m.\\u001b[39;49m\\u001b[43m_run_sanity_check\\u001b[49m\\u001b[43m(\\u001b[49m\\u001b[43m)\\u001b[49m\\n\\u001b[1;32m   1197\\u001b[0m \\u001b[38;5;66;03m# enable train mode\\u001b[39;00m\\n\\u001b[1;32m   1198\\u001b[0m \\u001b[38;5;28;01massert\\u001b[39;00m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39mmodel \\u001b[38;5;129;01mis\\u001b[39;00m \\u001b[38;5;129;01mnot\\u001b[39;00m \\u001b[38;5;28;01mNone\\u001b[39;00m\\n\",\n      \"File \\u001b[0;32m~/.conda/envs/whisper_lightning/lib/python3.10/site-packages/pytorch_lightning/trainer/trainer.py:1267\\u001b[0m, in \\u001b[0;36mTrainer._run_sanity_check\\u001b[0;34m(self)\\u001b[0m\\n\\u001b[1;32m   1265\\u001b[0m \\u001b[38;5;66;03m# run eval step\\u001b[39;00m\\n\\u001b[1;32m   1266\\u001b[0m \\u001b[38;5;28;01mwith\\u001b[39;00m torch\\u001b[38;5;241m.\\u001b[39mno_grad():\\n\\u001b[0;32m-> 1267\\u001b[0m     \\u001b[43mval_loop\\u001b[49m\\u001b[38;5;241;43m.\\u001b[39;49m\\u001b[43mrun\\u001b[49m\\u001b[43m(\\u001b[49m\\u001b[43m)\\u001b[49m\\n\\u001b[1;32m   1269\\u001b[0m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39m_call_callback_hooks(\\u001b[38;5;124m\\\"\\u001b[39m\\u001b[38;5;124mon_sanity_check_end\\u001b[39m\\u001b[38;5;124m\\\"\\u001b[39m)\\n\\u001b[1;32m   1271\\u001b[0m \\u001b[38;5;66;03m# reset logger connector\\u001b[39;00m\\n\",\n      \"File \\u001b[0;32m~/.conda/envs/whisper_lightning/lib/python3.10/site-packages/pytorch_lightning/loops/loop.py:199\\u001b[0m, in \\u001b[0;36mLoop.run\\u001b[0;34m(self, *args, **kwargs)\\u001b[0m\\n\\u001b[1;32m    197\\u001b[0m \\u001b[38;5;28;01mtry\\u001b[39;00m:\\n\\u001b[1;32m    198\\u001b[0m     \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39mon_advance_start(\\u001b[38;5;241m*\\u001b[39margs, \\u001b[38;5;241m*\\u001b[39m\\u001b[38;5;241m*\\u001b[39mkwargs)\\n\\u001b[0;32m--> 199\\u001b[0m     \\u001b[38;5;28;43mself\\u001b[39;49m\\u001b[38;5;241;43m.\\u001b[39;49m\\u001b[43madvance\\u001b[49m\\u001b[43m(\\u001b[49m\\u001b[38;5;241;43m*\\u001b[39;49m\\u001b[43margs\\u001b[49m\\u001b[43m,\\u001b[49m\\u001b[43m \\u001b[49m\\u001b[38;5;241;43m*\\u001b[39;49m\\u001b[38;5;241;43m*\\u001b[39;49m\\u001b[43mkwargs\\u001b[49m\\u001b[43m)\\u001b[49m\\n\\u001b[1;32m    200\\u001b[0m     \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39mon_advance_end()\\n\\u001b[1;32m    201\\u001b[0m     \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39m_restarting \\u001b[38;5;241m=\\u001b[39m \\u001b[38;5;28;01mFalse\\u001b[39;00m\\n\",\n      \"File \\u001b[0;32m~/.conda/envs/whisper_lightning/lib/python3.10/site-packages/pytorch_lightning/loops/dataloader/evaluation_loop.py:152\\u001b[0m, in \\u001b[0;36mEvaluationLoop.advance\\u001b[0;34m(self, *args, **kwargs)\\u001b[0m\\n\\u001b[1;32m    150\\u001b[0m \\u001b[38;5;28;01mif\\u001b[39;00m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39mnum_dataloaders \\u001b[38;5;241m>\\u001b[39m \\u001b[38;5;241m1\\u001b[39m:\\n\\u001b[1;32m    151\\u001b[0m     kwargs[\\u001b[38;5;124m\\\"\\u001b[39m\\u001b[38;5;124mdataloader_idx\\u001b[39m\\u001b[38;5;124m\\\"\\u001b[39m] \\u001b[38;5;241m=\\u001b[39m dataloader_idx\\n\\u001b[0;32m--> 152\\u001b[0m dl_outputs \\u001b[38;5;241m=\\u001b[39m \\u001b[38;5;28;43mself\\u001b[39;49m\\u001b[38;5;241;43m.\\u001b[39;49m\\u001b[43mepoch_loop\\u001b[49m\\u001b[38;5;241;43m.\\u001b[39;49m\\u001b[43mrun\\u001b[49m\\u001b[43m(\\u001b[49m\\u001b[38;5;28;43mself\\u001b[39;49m\\u001b[38;5;241;43m.\\u001b[39;49m\\u001b[43m_data_fetcher\\u001b[49m\\u001b[43m,\\u001b[49m\\u001b[43m \\u001b[49m\\u001b[43mdl_max_batches\\u001b[49m\\u001b[43m,\\u001b[49m\\u001b[43m \\u001b[49m\\u001b[43mkwargs\\u001b[49m\\u001b[43m)\\u001b[49m\\n\\u001b[1;32m    154\\u001b[0m \\u001b[38;5;66;03m# store batch level output per dataloader\\u001b[39;00m\\n\\u001b[1;32m    155\\u001b[0m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39m_outputs\\u001b[38;5;241m.\\u001b[39mappend(dl_outputs)\\n\",\n      \"File \\u001b[0;32m~/.conda/envs/whisper_lightning/lib/python3.10/site-packages/pytorch_lightning/loops/loop.py:199\\u001b[0m, in \\u001b[0;36mLoop.run\\u001b[0;34m(self, *args, **kwargs)\\u001b[0m\\n\\u001b[1;32m    197\\u001b[0m \\u001b[38;5;28;01mtry\\u001b[39;00m:\\n\\u001b[1;32m    198\\u001b[0m     \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39mon_advance_start(\\u001b[38;5;241m*\\u001b[39margs, \\u001b[38;5;241m*\\u001b[39m\\u001b[38;5;241m*\\u001b[39mkwargs)\\n\\u001b[0;32m--> 199\\u001b[0m     \\u001b[38;5;28;43mself\\u001b[39;49m\\u001b[38;5;241;43m.\\u001b[39;49m\\u001b[43madvance\\u001b[49m\\u001b[43m(\\u001b[49m\\u001b[38;5;241;43m*\\u001b[39;49m\\u001b[43margs\\u001b[49m\\u001b[43m,\\u001b[49m\\u001b[43m \\u001b[49m\\u001b[38;5;241;43m*\\u001b[39;49m\\u001b[38;5;241;43m*\\u001b[39;49m\\u001b[43mkwargs\\u001b[49m\\u001b[43m)\\u001b[49m\\n\\u001b[1;32m    200\\u001b[0m     \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39mon_advance_end()\\n\\u001b[1;32m    201\\u001b[0m     \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39m_restarting \\u001b[38;5;241m=\\u001b[39m \\u001b[38;5;28;01mFalse\\u001b[39;00m\\n\",\n      \"File \\u001b[0;32m~/.conda/envs/whisper_lightning/lib/python3.10/site-packages/pytorch_lightning/loops/epoch/evaluation_epoch_loop.py:137\\u001b[0m, in \\u001b[0;36mEvaluationEpochLoop.advance\\u001b[0;34m(self, data_fetcher, dl_max_batches, kwargs)\\u001b[0m\\n\\u001b[1;32m    134\\u001b[0m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39mbatch_progress\\u001b[38;5;241m.\\u001b[39mincrement_started()\\n\\u001b[1;32m    136\\u001b[0m \\u001b[38;5;66;03m# lightning module methods\\u001b[39;00m\\n\\u001b[0;32m--> 137\\u001b[0m output \\u001b[38;5;241m=\\u001b[39m \\u001b[38;5;28;43mself\\u001b[39;49m\\u001b[38;5;241;43m.\\u001b[39;49m\\u001b[43m_evaluation_step\\u001b[49m\\u001b[43m(\\u001b[49m\\u001b[38;5;241;43m*\\u001b[39;49m\\u001b[38;5;241;43m*\\u001b[39;49m\\u001b[43mkwargs\\u001b[49m\\u001b[43m)\\u001b[49m\\n\\u001b[1;32m    138\\u001b[0m output \\u001b[38;5;241m=\\u001b[39m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39m_evaluation_step_end(output)\\n\\u001b[1;32m    140\\u001b[0m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39mbatch_progress\\u001b[38;5;241m.\\u001b[39mincrement_processed()\\n\",\n      \"File \\u001b[0;32m~/.conda/envs/whisper_lightning/lib/python3.10/site-packages/pytorch_lightning/loops/epoch/evaluation_epoch_loop.py:234\\u001b[0m, in \\u001b[0;36mEvaluationEpochLoop._evaluation_step\\u001b[0;34m(self, **kwargs)\\u001b[0m\\n\\u001b[1;32m    223\\u001b[0m \\u001b[38;5;250m\\u001b[39m\\u001b[38;5;124;03m\\\"\\\"\\\"The evaluation step (validation_step or test_step depending on the trainer's state).\\u001b[39;00m\\n\\u001b[1;32m    224\\u001b[0m \\n\\u001b[1;32m    225\\u001b[0m \\u001b[38;5;124;03mArgs:\\u001b[39;00m\\n\\u001b[0;32m   (...)\\u001b[0m\\n\\u001b[1;32m    231\\u001b[0m \\u001b[38;5;124;03m    the outputs of the step\\u001b[39;00m\\n\\u001b[1;32m    232\\u001b[0m \\u001b[38;5;124;03m\\\"\\\"\\\"\\u001b[39;00m\\n\\u001b[1;32m    233\\u001b[0m hook_name \\u001b[38;5;241m=\\u001b[39m \\u001b[38;5;124m\\\"\\u001b[39m\\u001b[38;5;124mtest_step\\u001b[39m\\u001b[38;5;124m\\\"\\u001b[39m \\u001b[38;5;28;01mif\\u001b[39;00m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39mtrainer\\u001b[38;5;241m.\\u001b[39mtesting \\u001b[38;5;28;01melse\\u001b[39;00m \\u001b[38;5;124m\\\"\\u001b[39m\\u001b[38;5;124mvalidation_step\\u001b[39m\\u001b[38;5;124m\\\"\\u001b[39m\\n\\u001b[0;32m--> 234\\u001b[0m output \\u001b[38;5;241m=\\u001b[39m \\u001b[38;5;28;43mself\\u001b[39;49m\\u001b[38;5;241;43m.\\u001b[39;49m\\u001b[43mtrainer\\u001b[49m\\u001b[38;5;241;43m.\\u001b[39;49m\\u001b[43m_call_strategy_hook\\u001b[49m\\u001b[43m(\\u001b[49m\\u001b[43mhook_name\\u001b[49m\\u001b[43m,\\u001b[49m\\u001b[43m \\u001b[49m\\u001b[38;5;241;43m*\\u001b[39;49m\\u001b[43mkwargs\\u001b[49m\\u001b[38;5;241;43m.\\u001b[39;49m\\u001b[43mvalues\\u001b[49m\\u001b[43m(\\u001b[49m\\u001b[43m)\\u001b[49m\\u001b[43m)\\u001b[49m\\n\\u001b[1;32m    236\\u001b[0m \\u001b[38;5;28;01mreturn\\u001b[39;00m output\\n\",\n      \"File \\u001b[0;32m~/.conda/envs/whisper_lightning/lib/python3.10/site-packages/pytorch_lightning/trainer/trainer.py:1485\\u001b[0m, in \\u001b[0;36mTrainer._call_strategy_hook\\u001b[0;34m(self, hook_name, *args, **kwargs)\\u001b[0m\\n\\u001b[1;32m   1482\\u001b[0m     \\u001b[38;5;28;01mreturn\\u001b[39;00m\\n\\u001b[1;32m   1484\\u001b[0m \\u001b[38;5;28;01mwith\\u001b[39;00m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39mprofiler\\u001b[38;5;241m.\\u001b[39mprofile(\\u001b[38;5;124mf\\u001b[39m\\u001b[38;5;124m\\\"\\u001b[39m\\u001b[38;5;124m[Strategy]\\u001b[39m\\u001b[38;5;132;01m{\\u001b[39;00m\\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39mstrategy\\u001b[38;5;241m.\\u001b[39m\\u001b[38;5;18m__class__\\u001b[39m\\u001b[38;5;241m.\\u001b[39m\\u001b[38;5;18m__name__\\u001b[39m\\u001b[38;5;132;01m}\\u001b[39;00m\\u001b[38;5;124m.\\u001b[39m\\u001b[38;5;132;01m{\\u001b[39;00mhook_name\\u001b[38;5;132;01m}\\u001b[39;00m\\u001b[38;5;124m\\\"\\u001b[39m):\\n\\u001b[0;32m-> 1485\\u001b[0m     output \\u001b[38;5;241m=\\u001b[39m \\u001b[43mfn\\u001b[49m\\u001b[43m(\\u001b[49m\\u001b[38;5;241;43m*\\u001b[39;49m\\u001b[43margs\\u001b[49m\\u001b[43m,\\u001b[49m\\u001b[43m \\u001b[49m\\u001b[38;5;241;43m*\\u001b[39;49m\\u001b[38;5;241;43m*\\u001b[39;49m\\u001b[43mkwargs\\u001b[49m\\u001b[43m)\\u001b[49m\\n\\u001b[1;32m   1487\\u001b[0m \\u001b[38;5;66;03m# restore current_fx when nested context\\u001b[39;00m\\n\\u001b[1;32m   1488\\u001b[0m pl_module\\u001b[38;5;241m.\\u001b[39m_current_fx_name \\u001b[38;5;241m=\\u001b[39m prev_fx_name\\n\",\n      \"File \\u001b[0;32m~/.conda/envs/whisper_lightning/lib/python3.10/site-packages/pytorch_lightning/strategies/strategy.py:390\\u001b[0m, in \\u001b[0;36mStrategy.validation_step\\u001b[0;34m(self, *args, **kwargs)\\u001b[0m\\n\\u001b[1;32m    388\\u001b[0m \\u001b[38;5;28;01mwith\\u001b[39;00m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39mprecision_plugin\\u001b[38;5;241m.\\u001b[39mval_step_context():\\n\\u001b[1;32m    389\\u001b[0m     \\u001b[38;5;28;01massert\\u001b[39;00m \\u001b[38;5;28misinstance\\u001b[39m(\\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39mmodel, ValidationStep)\\n\\u001b[0;32m--> 390\\u001b[0m     \\u001b[38;5;28;01mreturn\\u001b[39;00m \\u001b[38;5;28;43mself\\u001b[39;49m\\u001b[38;5;241;43m.\\u001b[39;49m\\u001b[43mmodel\\u001b[49m\\u001b[38;5;241;43m.\\u001b[39;49m\\u001b[43mvalidation_step\\u001b[49m\\u001b[43m(\\u001b[49m\\u001b[38;5;241;43m*\\u001b[39;49m\\u001b[43margs\\u001b[49m\\u001b[43m,\\u001b[49m\\u001b[43m \\u001b[49m\\u001b[38;5;241;43m*\\u001b[39;49m\\u001b[38;5;241;43m*\\u001b[39;49m\\u001b[43mkwargs\\u001b[49m\\u001b[43m)\\u001b[49m\\n\",\n      \"Cell \\u001b[0;32mIn[7], line 36\\u001b[0m, in \\u001b[0;36mMyLightningModule.validation_step\\u001b[0;34m(self, batch, batch_idx)\\u001b[0m\\n\\u001b[1;32m     34\\u001b[0m attention_mask \\u001b[38;5;241m=\\u001b[39m batch[\\u001b[38;5;124m\\\"\\u001b[39m\\u001b[38;5;124mattention_mask\\u001b[39m\\u001b[38;5;124m\\\"\\u001b[39m]\\n\\u001b[1;32m     35\\u001b[0m labels \\u001b[38;5;241m=\\u001b[39m batch[\\u001b[38;5;124m\\\"\\u001b[39m\\u001b[38;5;124mlabels\\u001b[39m\\u001b[38;5;124m\\\"\\u001b[39m]\\n\\u001b[0;32m---> 36\\u001b[0m loss, logits \\u001b[38;5;241m=\\u001b[39m \\u001b[38;5;28;43mself\\u001b[39;49m\\u001b[43m(\\u001b[49m\\u001b[43minput_ids\\u001b[49m\\u001b[43m,\\u001b[49m\\u001b[43m \\u001b[49m\\u001b[43mattention_mask\\u001b[49m\\u001b[43m,\\u001b[49m\\u001b[43m \\u001b[49m\\u001b[43mlabels\\u001b[49m\\u001b[43m)\\u001b[49m\\n\\u001b[1;32m     37\\u001b[0m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39mlog(\\u001b[38;5;124m'\\u001b[39m\\u001b[38;5;124mval_loss\\u001b[39m\\u001b[38;5;124m'\\u001b[39m, loss, on_epoch\\u001b[38;5;241m=\\u001b[39m\\u001b[38;5;28;01mTrue\\u001b[39;00m, on_step\\u001b[38;5;241m=\\u001b[39m\\u001b[38;5;28;01mFalse\\u001b[39;00m)\\n\\u001b[1;32m     38\\u001b[0m \\u001b[38;5;28;01mreturn\\u001b[39;00m {\\u001b[38;5;124m'\\u001b[39m\\u001b[38;5;124mloss\\u001b[39m\\u001b[38;5;124m'\\u001b[39m: loss, \\u001b[38;5;124m'\\u001b[39m\\u001b[38;5;124mlogits\\u001b[39m\\u001b[38;5;124m'\\u001b[39m: logits, \\u001b[38;5;124m\\\"\\u001b[39m\\u001b[38;5;124mlabels\\u001b[39m\\u001b[38;5;124m\\\"\\u001b[39m:labels}\\n\",\n      \"File \\u001b[0;32m~/.conda/envs/whisper_lightning/lib/python3.10/site-packages/torch/nn/modules/module.py:1194\\u001b[0m, in \\u001b[0;36mModule._call_impl\\u001b[0;34m(self, *input, **kwargs)\\u001b[0m\\n\\u001b[1;32m   1190\\u001b[0m \\u001b[38;5;66;03m# If we don't have any hooks, we want to skip the rest of the logic in\\u001b[39;00m\\n\\u001b[1;32m   1191\\u001b[0m \\u001b[38;5;66;03m# this function, and just call forward.\\u001b[39;00m\\n\\u001b[1;32m   1192\\u001b[0m \\u001b[38;5;28;01mif\\u001b[39;00m \\u001b[38;5;129;01mnot\\u001b[39;00m (\\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39m_backward_hooks \\u001b[38;5;129;01mor\\u001b[39;00m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39m_forward_hooks \\u001b[38;5;129;01mor\\u001b[39;00m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39m_forward_pre_hooks \\u001b[38;5;129;01mor\\u001b[39;00m _global_backward_hooks\\n\\u001b[1;32m   1193\\u001b[0m         \\u001b[38;5;129;01mor\\u001b[39;00m _global_forward_hooks \\u001b[38;5;129;01mor\\u001b[39;00m _global_forward_pre_hooks):\\n\\u001b[0;32m-> 1194\\u001b[0m     \\u001b[38;5;28;01mreturn\\u001b[39;00m \\u001b[43mforward_call\\u001b[49m\\u001b[43m(\\u001b[49m\\u001b[38;5;241;43m*\\u001b[39;49m\\u001b[38;5;28;43minput\\u001b[39;49m\\u001b[43m,\\u001b[49m\\u001b[43m \\u001b[49m\\u001b[38;5;241;43m*\\u001b[39;49m\\u001b[38;5;241;43m*\\u001b[39;49m\\u001b[43mkwargs\\u001b[49m\\u001b[43m)\\u001b[49m\\n\\u001b[1;32m   1195\\u001b[0m \\u001b[38;5;66;03m# Do not call functions when jit is used\\u001b[39;00m\\n\\u001b[1;32m   1196\\u001b[0m full_backward_hooks, non_full_backward_hooks \\u001b[38;5;241m=\\u001b[39m [], []\\n\",\n      \"Cell \\u001b[0;32mIn[7], line 16\\u001b[0m, in \\u001b[0;36mMyLightningModule.forward\\u001b[0;34m(self, input_ids, attention_mask, labels)\\u001b[0m\\n\\u001b[1;32m     15\\u001b[0m \\u001b[38;5;28;01mdef\\u001b[39;00m \\u001b[38;5;21mforward\\u001b[39m(\\u001b[38;5;28mself\\u001b[39m, input_ids, attention_mask, labels\\u001b[38;5;241m=\\u001b[39m\\u001b[38;5;28;01mNone\\u001b[39;00m):\\n\\u001b[0;32m---> 16\\u001b[0m     output \\u001b[38;5;241m=\\u001b[39m \\u001b[38;5;28;43mself\\u001b[39;49m\\u001b[38;5;241;43m.\\u001b[39;49m\\u001b[43mmodel\\u001b[49m\\u001b[43m(\\u001b[49m\\n\\u001b[1;32m     17\\u001b[0m \\u001b[43m        \\u001b[49m\\u001b[43minput_ids\\u001b[49m\\u001b[38;5;241;43m=\\u001b[39;49m\\u001b[43minput_ids\\u001b[49m\\u001b[43m,\\u001b[49m\\n\\u001b[1;32m     18\\u001b[0m \\u001b[43m        \\u001b[49m\\u001b[43mattention_mask\\u001b[49m\\u001b[38;5;241;43m=\\u001b[39;49m\\u001b[43mattention_mask\\u001b[49m\\u001b[43m,\\u001b[49m\\n\\u001b[1;32m     19\\u001b[0m \\u001b[43m        \\u001b[49m\\u001b[43mlabels\\u001b[49m\\u001b[38;5;241;43m=\\u001b[39;49m\\u001b[43mlabels\\u001b[49m\\u001b[43m,\\u001b[49m\\n\\u001b[1;32m     20\\u001b[0m \\u001b[43m    \\u001b[49m\\u001b[43m)\\u001b[49m\\n\\u001b[1;32m     21\\u001b[0m     \\u001b[38;5;28;01mreturn\\u001b[39;00m output\\u001b[38;5;241m.\\u001b[39mloss, output\\u001b[38;5;241m.\\u001b[39mlogits\\n\",\n      \"File \\u001b[0;32m~/.conda/envs/whisper_lightning/lib/python3.10/site-packages/torch/nn/modules/module.py:1194\\u001b[0m, in \\u001b[0;36mModule._call_impl\\u001b[0;34m(self, *input, **kwargs)\\u001b[0m\\n\\u001b[1;32m   1190\\u001b[0m \\u001b[38;5;66;03m# If we don't have any hooks, we want to skip the rest of the logic in\\u001b[39;00m\\n\\u001b[1;32m   1191\\u001b[0m \\u001b[38;5;66;03m# this function, and just call forward.\\u001b[39;00m\\n\\u001b[1;32m   1192\\u001b[0m \\u001b[38;5;28;01mif\\u001b[39;00m \\u001b[38;5;129;01mnot\\u001b[39;00m (\\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39m_backward_hooks \\u001b[38;5;129;01mor\\u001b[39;00m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39m_forward_hooks \\u001b[38;5;129;01mor\\u001b[39;00m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39m_forward_pre_hooks \\u001b[38;5;129;01mor\\u001b[39;00m _global_backward_hooks\\n\\u001b[1;32m   1193\\u001b[0m         \\u001b[38;5;129;01mor\\u001b[39;00m _global_forward_hooks \\u001b[38;5;129;01mor\\u001b[39;00m _global_forward_pre_hooks):\\n\\u001b[0;32m-> 1194\\u001b[0m     \\u001b[38;5;28;01mreturn\\u001b[39;00m \\u001b[43mforward_call\\u001b[49m\\u001b[43m(\\u001b[49m\\u001b[38;5;241;43m*\\u001b[39;49m\\u001b[38;5;28;43minput\\u001b[39;49m\\u001b[43m,\\u001b[49m\\u001b[43m \\u001b[49m\\u001b[38;5;241;43m*\\u001b[39;49m\\u001b[38;5;241;43m*\\u001b[39;49m\\u001b[43mkwargs\\u001b[49m\\u001b[43m)\\u001b[49m\\n\\u001b[1;32m   1195\\u001b[0m \\u001b[38;5;66;03m# Do not call functions when jit is used\\u001b[39;00m\\n\\u001b[1;32m   1196\\u001b[0m full_backward_hooks, non_full_backward_hooks \\u001b[38;5;241m=\\u001b[39m [], []\\n\",\n      \"File \\u001b[0;32m~/.conda/envs/whisper_lightning/lib/python3.10/site-packages/transformers/models/t5/modeling_t5.py:1624\\u001b[0m, in \\u001b[0;36mT5ForConditionalGeneration.forward\\u001b[0;34m(self, input_ids, attention_mask, decoder_input_ids, decoder_attention_mask, head_mask, decoder_head_mask, cross_attn_head_mask, encoder_outputs, past_key_values, inputs_embeds, decoder_inputs_embeds, labels, use_cache, output_attentions, output_hidden_states, return_dict)\\u001b[0m\\n\\u001b[1;32m   1621\\u001b[0m \\u001b[38;5;66;03m# Encode if needed (training, first prediction pass)\\u001b[39;00m\\n\\u001b[1;32m   1622\\u001b[0m \\u001b[38;5;28;01mif\\u001b[39;00m encoder_outputs \\u001b[38;5;129;01mis\\u001b[39;00m \\u001b[38;5;28;01mNone\\u001b[39;00m:\\n\\u001b[1;32m   1623\\u001b[0m     \\u001b[38;5;66;03m# Convert encoder inputs in embeddings if needed\\u001b[39;00m\\n\\u001b[0;32m-> 1624\\u001b[0m     encoder_outputs \\u001b[38;5;241m=\\u001b[39m \\u001b[38;5;28;43mself\\u001b[39;49m\\u001b[38;5;241;43m.\\u001b[39;49m\\u001b[43mencoder\\u001b[49m\\u001b[43m(\\u001b[49m\\n\\u001b[1;32m   1625\\u001b[0m \\u001b[43m        \\u001b[49m\\u001b[43minput_ids\\u001b[49m\\u001b[38;5;241;43m=\\u001b[39;49m\\u001b[43minput_ids\\u001b[49m\\u001b[43m,\\u001b[49m\\n\\u001b[1;32m   1626\\u001b[0m \\u001b[43m        \\u001b[49m\\u001b[43mattention_mask\\u001b[49m\\u001b[38;5;241;43m=\\u001b[39;49m\\u001b[43mattention_mask\\u001b[49m\\u001b[43m,\\u001b[49m\\n\\u001b[1;32m   1627\\u001b[0m \\u001b[43m        \\u001b[49m\\u001b[43minputs_embeds\\u001b[49m\\u001b[38;5;241;43m=\\u001b[39;49m\\u001b[43minputs_embeds\\u001b[49m\\u001b[43m,\\u001b[49m\\n\\u001b[1;32m   1628\\u001b[0m \\u001b[43m        \\u001b[49m\\u001b[43mhead_mask\\u001b[49m\\u001b[38;5;241;43m=\\u001b[39;49m\\u001b[43mhead_mask\\u001b[49m\\u001b[43m,\\u001b[49m\\n\\u001b[1;32m   1629\\u001b[0m \\u001b[43m        \\u001b[49m\\u001b[43moutput_attentions\\u001b[49m\\u001b[38;5;241;43m=\\u001b[39;49m\\u001b[43moutput_attentions\\u001b[49m\\u001b[43m,\\u001b[49m\\n\\u001b[1;32m   1630\\u001b[0m \\u001b[43m        \\u001b[49m\\u001b[43moutput_hidden_states\\u001b[49m\\u001b[38;5;241;43m=\\u001b[39;49m\\u001b[43moutput_hidden_states\\u001b[49m\\u001b[43m,\\u001b[49m\\n\\u001b[1;32m   1631\\u001b[0m \\u001b[43m        \\u001b[49m\\u001b[43mreturn_dict\\u001b[49m\\u001b[38;5;241;43m=\\u001b[39;49m\\u001b[43mreturn_dict\\u001b[49m\\u001b[43m,\\u001b[49m\\n\\u001b[1;32m   1632\\u001b[0m \\u001b[43m    \\u001b[49m\\u001b[43m)\\u001b[49m\\n\\u001b[1;32m   1633\\u001b[0m \\u001b[38;5;28;01melif\\u001b[39;00m return_dict \\u001b[38;5;129;01mand\\u001b[39;00m \\u001b[38;5;129;01mnot\\u001b[39;00m \\u001b[38;5;28misinstance\\u001b[39m(encoder_outputs, BaseModelOutput):\\n\\u001b[1;32m   1634\\u001b[0m     encoder_outputs \\u001b[38;5;241m=\\u001b[39m BaseModelOutput(\\n\\u001b[1;32m   1635\\u001b[0m         last_hidden_state\\u001b[38;5;241m=\\u001b[39mencoder_outputs[\\u001b[38;5;241m0\\u001b[39m],\\n\\u001b[1;32m   1636\\u001b[0m         hidden_states\\u001b[38;5;241m=\\u001b[39mencoder_outputs[\\u001b[38;5;241m1\\u001b[39m] \\u001b[38;5;28;01mif\\u001b[39;00m \\u001b[38;5;28mlen\\u001b[39m(encoder_outputs) \\u001b[38;5;241m>\\u001b[39m \\u001b[38;5;241m1\\u001b[39m \\u001b[38;5;28;01melse\\u001b[39;00m \\u001b[38;5;28;01mNone\\u001b[39;00m,\\n\\u001b[1;32m   1637\\u001b[0m         attentions\\u001b[38;5;241m=\\u001b[39mencoder_outputs[\\u001b[38;5;241m2\\u001b[39m] \\u001b[38;5;28;01mif\\u001b[39;00m \\u001b[38;5;28mlen\\u001b[39m(encoder_outputs) \\u001b[38;5;241m>\\u001b[39m \\u001b[38;5;241m2\\u001b[39m \\u001b[38;5;28;01melse\\u001b[39;00m \\u001b[38;5;28;01mNone\\u001b[39;00m,\\n\\u001b[1;32m   1638\\u001b[0m     )\\n\",\n      \"File \\u001b[0;32m~/.conda/envs/whisper_lightning/lib/python3.10/site-packages/torch/nn/modules/module.py:1194\\u001b[0m, in \\u001b[0;36mModule._call_impl\\u001b[0;34m(self, *input, **kwargs)\\u001b[0m\\n\\u001b[1;32m   1190\\u001b[0m \\u001b[38;5;66;03m# If we don't have any hooks, we want to skip the rest of the logic in\\u001b[39;00m\\n\\u001b[1;32m   1191\\u001b[0m \\u001b[38;5;66;03m# this function, and just call forward.\\u001b[39;00m\\n\\u001b[1;32m   1192\\u001b[0m \\u001b[38;5;28;01mif\\u001b[39;00m \\u001b[38;5;129;01mnot\\u001b[39;00m (\\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39m_backward_hooks \\u001b[38;5;129;01mor\\u001b[39;00m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39m_forward_hooks \\u001b[38;5;129;01mor\\u001b[39;00m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39m_forward_pre_hooks \\u001b[38;5;129;01mor\\u001b[39;00m _global_backward_hooks\\n\\u001b[1;32m   1193\\u001b[0m         \\u001b[38;5;129;01mor\\u001b[39;00m _global_forward_hooks \\u001b[38;5;129;01mor\\u001b[39;00m _global_forward_pre_hooks):\\n\\u001b[0;32m-> 1194\\u001b[0m     \\u001b[38;5;28;01mreturn\\u001b[39;00m \\u001b[43mforward_call\\u001b[49m\\u001b[43m(\\u001b[49m\\u001b[38;5;241;43m*\\u001b[39;49m\\u001b[38;5;28;43minput\\u001b[39;49m\\u001b[43m,\\u001b[49m\\u001b[43m \\u001b[49m\\u001b[38;5;241;43m*\\u001b[39;49m\\u001b[38;5;241;43m*\\u001b[39;49m\\u001b[43mkwargs\\u001b[49m\\u001b[43m)\\u001b[49m\\n\\u001b[1;32m   1195\\u001b[0m \\u001b[38;5;66;03m# Do not call functions when jit is used\\u001b[39;00m\\n\\u001b[1;32m   1196\\u001b[0m full_backward_hooks, non_full_backward_hooks \\u001b[38;5;241m=\\u001b[39m [], []\\n\",\n      \"File \\u001b[0;32m~/.conda/envs/whisper_lightning/lib/python3.10/site-packages/transformers/models/t5/modeling_t5.py:944\\u001b[0m, in \\u001b[0;36mT5Stack.forward\\u001b[0;34m(self, input_ids, attention_mask, encoder_hidden_states, encoder_attention_mask, inputs_embeds, head_mask, cross_attn_head_mask, past_key_values, use_cache, output_attentions, output_hidden_states, return_dict)\\u001b[0m\\n\\u001b[1;32m    940\\u001b[0m     \\u001b[38;5;28;01mraise\\u001b[39;00m \\u001b[38;5;167;01mValueError\\u001b[39;00m(\\n\\u001b[1;32m    941\\u001b[0m         \\u001b[38;5;124mf\\u001b[39m\\u001b[38;5;124m\\\"\\u001b[39m\\u001b[38;5;124mYou cannot specify both \\u001b[39m\\u001b[38;5;132;01m{\\u001b[39;00merr_msg_prefix\\u001b[38;5;132;01m}\\u001b[39;00m\\u001b[38;5;124minput_ids and \\u001b[39m\\u001b[38;5;132;01m{\\u001b[39;00merr_msg_prefix\\u001b[38;5;132;01m}\\u001b[39;00m\\u001b[38;5;124minputs_embeds at the same time\\u001b[39m\\u001b[38;5;124m\\\"\\u001b[39m\\n\\u001b[1;32m    942\\u001b[0m     )\\n\\u001b[1;32m    943\\u001b[0m \\u001b[38;5;28;01melif\\u001b[39;00m input_ids \\u001b[38;5;129;01mis\\u001b[39;00m \\u001b[38;5;129;01mnot\\u001b[39;00m \\u001b[38;5;28;01mNone\\u001b[39;00m:\\n\\u001b[0;32m--> 944\\u001b[0m     input_shape \\u001b[38;5;241m=\\u001b[39m \\u001b[43minput_ids\\u001b[49m\\u001b[38;5;241;43m.\\u001b[39;49m\\u001b[43msize\\u001b[49m()\\n\\u001b[1;32m    945\\u001b[0m     input_ids \\u001b[38;5;241m=\\u001b[39m input_ids\\u001b[38;5;241m.\\u001b[39mview(\\u001b[38;5;241m-\\u001b[39m\\u001b[38;5;241m1\\u001b[39m, input_shape[\\u001b[38;5;241m-\\u001b[39m\\u001b[38;5;241m1\\u001b[39m])\\n\\u001b[1;32m    946\\u001b[0m \\u001b[38;5;28;01melif\\u001b[39;00m inputs_embeds \\u001b[38;5;129;01mis\\u001b[39;00m \\u001b[38;5;129;01mnot\\u001b[39;00m \\u001b[38;5;28;01mNone\\u001b[39;00m:\\n\",\n      \"\\u001b[0;31mAttributeError\\u001b[0m: 'list' object has no attribute 'size'\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"torch.set_float32_matmul_precision(\\\"medium\\\")\\n\",\n    \"model = MyLightningModule(model_name=\\\"t5-small\\\", learning_rate=1e-5, weight_decay=1e-4, batch_size=16)\\n\",\n    \"trainer = pl.Trainer(accelerator=\\\"gpu\\\", devices=[0], max_epochs=10)\\n\",\n    \"dm = MyDataModule(batch_size=16)\\n\",\n    \"trainer.fit(model, datamodule=dm)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"1395d5d2\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"80a2efab\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3 (ipykernel)\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.10.9\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 5\n}\n"
  },
  {
    "path": "ML/Pytorch/huggingface/.ipynb_checkpoints/finetuning_t5_small_cnndaily-checkpoint.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"id\": \"bd8e3b95\",\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"data\": {\n      \"text/html\": [\n       \"<style> div#notebook {\\n\",\n       \" font-family: sans-serif;\\n\",\n       \" font-size: 13pt;\\n\",\n       \" line-height: 170%;\\n\",\n       \" color: #cdd2e9;\\n\",\n       \" -webkit-font-smoothing: antialiased !important;\\n\",\n       \" padding-top: 25px !important;\\n\",\n       \"}\\n\",\n       \"body,\\n\",\n       \"div.body {\\n\",\n       \" font-family: sans-serif;\\n\",\n       \" font-size: 13pt;\\n\",\n       \" color: #a2b0c7;\\n\",\n       \" background-color: #1a2028;\\n\",\n       \" background: #1a2028;\\n\",\n       \" -webkit-font-smoothing: antialiased !important;\\n\",\n       \"}\\n\",\n       \"body.notebook_app {\\n\",\n       \" padding: 0;\\n\",\n       \" background-color: #1a2028;\\n\",\n       \" background: #1a2028;\\n\",\n       \" padding-right: 0px !important;\\n\",\n       \" overflow-y: hidden;\\n\",\n       \"}\\n\",\n       \"a {\\n\",\n       \" font-family: sans-serif;\\n\",\n       \" color: #a2b0c7;\\n\",\n       \" -webkit-font-smoothing: antialiased !important;\\n\",\n       \"}\\n\",\n       \"a:hover,\\n\",\n       \"a:focus {\\n\",\n       \" color: #dbe1ea;\\n\",\n       \" -webkit-font-smoothing: antialiased !important;\\n\",\n       \"}\\n\",\n       \"div#maintoolbar {\\n\",\n       \" position: absolute;\\n\",\n       \" width: 90%;\\n\",\n       \" margin-left: -10%;\\n\",\n       \" padding-right: 8%;\\n\",\n       \" float: left;\\n\",\n       \" background: transparent !important;\\n\",\n       \"}\\n\",\n       \"#maintoolbar {\\n\",\n       \" margin-bottom: -3px;\\n\",\n       \" margin-top: 0px;\\n\",\n       \" border: 0px;\\n\",\n       \" min-height: 27px;\\n\",\n       \" padding-top: 2px;\\n\",\n       \" padding-bottom: 0px;\\n\",\n       \"}\\n\",\n       \"#maintoolbar .container {\\n\",\n       \" width: 75%;\\n\",\n       \" margin-right: auto;\\n\",\n       \" margin-left: auto;\\n\",\n       \"}\\n\",\n       \".list_header,\\n\",\n       \"div#notebook_list_header.row.list_header {\\n\",\n       \" font-size: 14pt;\\n\",\n       \" color: #dbe1ea;\\n\",\n       \" background-color: transparent;\\n\",\n       \" height: 35px;\\n\",\n       \"}\\n\",\n       \"i.fa.fa-folder {\\n\",\n       \" display: inline-block;\\n\",\n       \" font: normal normal normal 14px \\\"FontAwesome\\\";\\n\",\n       \" font-family: \\\"FontAwesome\\\" !important;\\n\",\n       \" text-rendering: auto;\\n\",\n       \" -webkit-font-smoothing: antialiased;\\n\",\n       \" font-size: 18px;\\n\",\n       \" -moz-osx-font-smoothing: grayscale;\\n\",\n       \"}\\n\",\n       \"#running .panel-group .panel .panel-heading {\\n\",\n       \" font-size: 14pt;\\n\",\n       \" color: #a2b0c7;\\n\",\n       \" padding: 8px 8px;\\n\",\n       \" background: #252b35;\\n\",\n       \" background-color: #252b35;\\n\",\n       \"}\\n\",\n       \"#running .panel-group .panel .panel-heading a {\\n\",\n       \" font-size: 14pt;\\n\",\n       \" color: #a2b0c7;\\n\",\n       \"}\\n\",\n       \"#running .panel-group .panel .panel-heading a:focus,\\n\",\n       \"#running .panel-group .panel .panel-heading a:hover {\\n\",\n       \" font-size: 14pt;\\n\",\n       \" color: #a2b0c7;\\n\",\n       \"}\\n\",\n       \"#running .panel-group .panel .panel-body .list_container .list_item {\\n\",\n       \" background: #2d3846;\\n\",\n       \" background-color: #2d3846;\\n\",\n       \" padding: 2px;\\n\",\n       \" border-bottom: 2px solid rgba(75,95,118,.30);\\n\",\n       \"}\\n\",\n       \"#running .panel-group .panel .panel-body .list_container .list_item:hover {\\n\",\n       \" background: #2d3846;\\n\",\n       \" background-color: #2d3846;\\n\",\n       \"}\\n\",\n       \"#running .panel-group .panel .panel-body {\\n\",\n       \" padding: 2px;\\n\",\n       \"}\\n\",\n       \"button#refresh_running_list {\\n\",\n       \" border: none !important;\\n\",\n       \"}\\n\",\n       \"button#refresh_cluster_list {\\n\",\n       \" border: none !important;\\n\",\n       \"}\\n\",\n       \"div.running_list_info.toolbar_info {\\n\",\n       \" font-size: 15px;\\n\",\n       \" padding: 4px 0 4px 0;\\n\",\n       \" margin-top: 5px;\\n\",\n       \" margin-bottom: 8px;\\n\",\n       \" height: 24px;\\n\",\n       \" line-height: 24px;\\n\",\n       \" text-shadow: none;\\n\",\n       \"}\\n\",\n       \".list_placeholder {\\n\",\n       \" font-weight: normal;\\n\",\n       \"}\\n\",\n       \"#tree-selector {\\n\",\n       \" padding: 0px;\\n\",\n       \" border-color: transparent;\\n\",\n       \"}\\n\",\n       \"#project_name > ul > li > a > i.fa.fa-home {\\n\",\n       \" color: #0b98c8;\\n\",\n       \" font-size: 17pt;\\n\",\n       \" display: inline-block;\\n\",\n       \" position: static;\\n\",\n       \" padding: 0px 0px;\\n\",\n       \" font-weight: normal;\\n\",\n       \" text-align: center;\\n\",\n       \" vertical-align: text-top;\\n\",\n       \"}\\n\",\n       \".fa-folder:before {\\n\",\n       \" color: #4c8be2;\\n\",\n       \"}\\n\",\n       \".fa-arrow-up:before {\\n\",\n       \" font-size: 14px;\\n\",\n       \"}\\n\",\n       \".fa-arrow-down:before {\\n\",\n       \" font-size: 14px;\\n\",\n       \"}\\n\",\n       \"span#last-modified.btn.btn-xs.btn-default.sort-action:hover .fa,\\n\",\n       \"span#sort-name.btn.btn-xs.btn-default.sort-action:hover .fa {\\n\",\n       \" color: #009cd1;\\n\",\n       \"}\\n\",\n       \".folder_icon:before {\\n\",\n       \" display: inline-block;\\n\",\n       \" font: normal normal normal 14px/1 FontAwesome;\\n\",\n       \" font-size: inherit;\\n\",\n       \" text-rendering: auto;\\n\",\n       \" -webkit-font-smoothing: antialiased;\\n\",\n       \" -moz-osx-font-smoothing: grayscale;\\n\",\n       \" content: \\\"\\\\f07b\\\";\\n\",\n       \" color: #4c8be2;\\n\",\n       \"}\\n\",\n       \".notebook_icon:before {\\n\",\n       \" display: inline-block;\\n\",\n       \" font: normal normal normal 14px/1 FontAwesome;\\n\",\n       \" font-size: inherit;\\n\",\n       \" text-rendering: auto;\\n\",\n       \" -webkit-font-smoothing: antialiased;\\n\",\n       \" -moz-osx-font-smoothing: grayscale;\\n\",\n       \" content: \\\"\\\\f02d\\\";\\n\",\n       \" position: relative;\\n\",\n       \" color: #48a667 !important;\\n\",\n       \" top: 0px;\\n\",\n       \"}\\n\",\n       \".file_icon:before {\\n\",\n       \" display: inline-block;\\n\",\n       \" font: normal normal normal 14px/1 FontAwesome;\\n\",\n       \" font-size: inherit;\\n\",\n       \" text-rendering: auto;\\n\",\n       \" -webkit-font-smoothing: antialiased;\\n\",\n       \" -moz-osx-font-smoothing: grayscale;\\n\",\n       \" content: \\\"\\\\f15b\\\";\\n\",\n       \" position: relative;\\n\",\n       \" top: 0px;\\n\",\n       \" color: #92a2bd !important;\\n\",\n       \"}\\n\",\n       \"#project_name a {\\n\",\n       \" display: inline-flex;\\n\",\n       \" padding-left: 7px;\\n\",\n       \" margin-left: -2px;\\n\",\n       \" text-align: -webkit-auto;\\n\",\n       \" vertical-align: baseline;\\n\",\n       \" font-size: 18px;\\n\",\n       \"}\\n\",\n       \"div#notebook_toolbar div.dynamic-instructions {\\n\",\n       \" font-family: sans-serif;\\n\",\n       \" font-size: 17px;\\n\",\n       \" color: #546386;\\n\",\n       \"}\\n\",\n       \"span#login_widget > .button,\\n\",\n       \"#logout {\\n\",\n       \" font-family: \\\"Proxima Nova\\\", sans-serif;\\n\",\n       \" color: #a2b0c7;\\n\",\n       \" background: transparent;\\n\",\n       \" background-color: transparent;\\n\",\n       \" border: 2px solid #252e3a;\\n\",\n       \" font-weight: normal;\\n\",\n       \" box-shadow: none;\\n\",\n       \" text-shadow: none;\\n\",\n       \" border-radius: 3px;\\n\",\n       \" margin-right: 10px;\\n\",\n       \" padding: 2px 7px;\\n\",\n       \"}\\n\",\n       \"span#login_widget > .button:hover,\\n\",\n       \"#logout:hover {\\n\",\n       \" color: #009cd1;\\n\",\n       \" background-color: transparent;\\n\",\n       \" background: transparent;\\n\",\n       \" border: 2px solid #009cd1;\\n\",\n       \" background-image: none;\\n\",\n       \" box-shadow: none !important;\\n\",\n       \" border-radius: 3px;\\n\",\n       \"}\\n\",\n       \"span#login_widget > .button:focus,\\n\",\n       \"#logout:focus,\\n\",\n       \"span#login_widget > .button.focus,\\n\",\n       \"#logout.focus,\\n\",\n       \"span#login_widget > .button:active,\\n\",\n       \"#logout:active,\\n\",\n       \"span#login_widget > .button.active,\\n\",\n       \"#logout.active,\\n\",\n       \".open > .dropdown-togglespan#login_widget > .button,\\n\",\n       \".open > .dropdown-toggle#logout {\\n\",\n       \" color: #fefefe;\\n\",\n       \" background-color: #a2b0c7;\\n\",\n       \" background: #a2b0c7;\\n\",\n       \" border-color: #a2b0c7;\\n\",\n       \" background-image: none;\\n\",\n       \" box-shadow: none !important;\\n\",\n       \" border-radius: 2px;\\n\",\n       \"}\\n\",\n       \"body > #header #header-container {\\n\",\n       \" padding-bottom: 0px;\\n\",\n       \" padding-top: 4px;\\n\",\n       \" box-sizing: border-box;\\n\",\n       \" -moz-box-sizing: border-box;\\n\",\n       \" -webkit-box-sizing: border-box;\\n\",\n       \"}\\n\",\n       \"body > #header {\\n\",\n       \" background: #1a2028;\\n\",\n       \" background-color: #1a2028;\\n\",\n       \" position: relative;\\n\",\n       \" z-index: 100;\\n\",\n       \"}\\n\",\n       \".list_container {\\n\",\n       \" font-size: 13pt;\\n\",\n       \" color: #a2b0c7;\\n\",\n       \" border: none;\\n\",\n       \" text-shadow: none !important;\\n\",\n       \"}\\n\",\n       \".list_container > div {\\n\",\n       \" border-bottom: 1px solid rgba(75,95,118,.30);\\n\",\n       \" font-size: 13pt;\\n\",\n       \"}\\n\",\n       \".list_header > div,\\n\",\n       \".list_item > div {\\n\",\n       \" padding-top: 6px;\\n\",\n       \" padding-bottom: 2px;\\n\",\n       \" padding-left: 0px;\\n\",\n       \"}\\n\",\n       \".list_header > div .item_link,\\n\",\n       \".list_item > div .item_link {\\n\",\n       \" margin-left: -1px;\\n\",\n       \" vertical-align: middle;\\n\",\n       \" line-height: 22px;\\n\",\n       \" font-size: 13pt;\\n\",\n       \"}\\n\",\n       \".item_icon {\\n\",\n       \" color: #4c8be2;\\n\",\n       \" font-size: 13pt;\\n\",\n       \" vertical-align: middle;\\n\",\n       \"}\\n\",\n       \".list_item input:not([type=\\\"checkbox\\\"]) {\\n\",\n       \" padding-right: 0px;\\n\",\n       \" height: 1.75em;\\n\",\n       \" width: 25%;\\n\",\n       \" margin: 0px 0 0;\\n\",\n       \" margin-top: 0px;\\n\",\n       \"}\\n\",\n       \".list_header > div .item_link,\\n\",\n       \".list_item > div .item_link {\\n\",\n       \" margin-left: -1px;\\n\",\n       \" vertical-align: middle;\\n\",\n       \" line-height: 1.5em;\\n\",\n       \" font-size: 12pt;\\n\",\n       \" display: inline-table;\\n\",\n       \" position: static;\\n\",\n       \"}\\n\",\n       \"#button-select-all {\\n\",\n       \" height: 34px;\\n\",\n       \" min-width: 55px;\\n\",\n       \" z-index: 0;\\n\",\n       \" border: none !important;\\n\",\n       \" padding-top: 0px;\\n\",\n       \" padding-bottom: 0px;\\n\",\n       \" margin-bottom: 0px;\\n\",\n       \" margin-top: 0px;\\n\",\n       \" left: -3px;\\n\",\n       \" border-radius: 0px !important;\\n\",\n       \"}\\n\",\n       \"#button-select-all:focus,\\n\",\n       \"#button-select-all:active:focus,\\n\",\n       \"#button-select-all.active:focus,\\n\",\n       \"#button-select-all.focus,\\n\",\n       \"#button-select-all:active.focus,\\n\",\n       \"#button-select-all.active.focus {\\n\",\n       \" background-color: #252e3a !important;\\n\",\n       \" background: #252e3a !important;\\n\",\n       \"}\\n\",\n       \"button#tree-selector-btn {\\n\",\n       \" height: 34px;\\n\",\n       \" font-size: 12.0pt;\\n\",\n       \" border: none;\\n\",\n       \" left: 0px;\\n\",\n       \" border-radius: 0px !important;\\n\",\n       \"}\\n\",\n       \"input#select-all.pull-left.tree-selector {\\n\",\n       \" margin-left: 7px;\\n\",\n       \" margin-right: 2px;\\n\",\n       \" margin-top: 2px;\\n\",\n       \" top: 4px;\\n\",\n       \"}\\n\",\n       \"input[type=\\\"radio\\\"],\\n\",\n       \"input[type=\\\"checkbox\\\"] {\\n\",\n       \" margin-top: 1px;\\n\",\n       \" line-height: normal;\\n\",\n       \"}\\n\",\n       \".delete-button {\\n\",\n       \" border: none !important;\\n\",\n       \"}\\n\",\n       \"i.fa.fa-trash {\\n\",\n       \" font-size: 13.5pt;\\n\",\n       \"}\\n\",\n       \".list_container a {\\n\",\n       \" font-size: 16px;\\n\",\n       \" color: #a2b0c7;\\n\",\n       \" border: none;\\n\",\n       \" text-shadow: none !important;\\n\",\n       \" font-weight: normal;\\n\",\n       \" font-style: normal;\\n\",\n       \"}\\n\",\n       \"div.list_container a:hover {\\n\",\n       \" color: #dbe1ea;\\n\",\n       \"}\\n\",\n       \".list_header > div input,\\n\",\n       \".list_item > div input {\\n\",\n       \" margin-right: 7px;\\n\",\n       \" margin-left: 12px;\\n\",\n       \" vertical-align: baseline;\\n\",\n       \" line-height: 22px;\\n\",\n       \" position: relative;\\n\",\n       \" top: -1px;\\n\",\n       \"}\\n\",\n       \"div.list_item:hover {\\n\",\n       \" background-color: rgba(75,95,118,.10);\\n\",\n       \"}\\n\",\n       \".breadcrumb > li {\\n\",\n       \" font-size: 12.0pt;\\n\",\n       \" color: #a2b0c7;\\n\",\n       \" border: none;\\n\",\n       \" text-shadow: none !important;\\n\",\n       \"}\\n\",\n       \".breadcrumb > li + li:before {\\n\",\n       \" content: \\\"/\\\\00a0\\\";\\n\",\n       \" padding: 0px;\\n\",\n       \" color: #a2b0c7;\\n\",\n       \" font-size: 18px;\\n\",\n       \"}\\n\",\n       \"#project_name > .breadcrumb {\\n\",\n       \" padding: 0px;\\n\",\n       \" margin-bottom: 0px;\\n\",\n       \" background-color: transparent;\\n\",\n       \" font-weight: normal;\\n\",\n       \" margin-top: -2px;\\n\",\n       \"}\\n\",\n       \"ul#tabs a {\\n\",\n       \" font-family: sans-serif;\\n\",\n       \" font-size: 13.5pt;\\n\",\n       \" font-weight: normal;\\n\",\n       \" font-style: normal;\\n\",\n       \" text-shadow: none !important;\\n\",\n       \"}\\n\",\n       \".nav-tabs {\\n\",\n       \" font-family: sans-serif;\\n\",\n       \" font-size: 13.5pt;\\n\",\n       \" font-weight: normal;\\n\",\n       \" font-style: normal;\\n\",\n       \" background-color: transparent;\\n\",\n       \" border-color: transparent;\\n\",\n       \" text-shadow: none !important;\\n\",\n       \" border: 2px solid transparent;\\n\",\n       \"}\\n\",\n       \".nav-tabs > li > a:active,\\n\",\n       \".nav-tabs > li > a:focus,\\n\",\n       \".nav-tabs > li > a:hover,\\n\",\n       \".nav-tabs > li.active > a,\\n\",\n       \".nav-tabs > li.active > a:focus,\\n\",\n       \".nav-tabs > li.active > a:hover,\\n\",\n       \".nav-tabs > li.active > a,\\n\",\n       \".nav-tabs > li.active > a:hover,\\n\",\n       \".nav-tabs > li.active > a:focus {\\n\",\n       \" color: #009cd1;\\n\",\n       \" background-color: transparent;\\n\",\n       \" border-color: transparent;\\n\",\n       \" border-bottom: 2px solid transparent;\\n\",\n       \"}\\n\",\n       \".nav > li.disabled > a,\\n\",\n       \".nav > li.disabled > a:hover {\\n\",\n       \" color: #546386;\\n\",\n       \"}\\n\",\n       \".nav-tabs > li > a:before {\\n\",\n       \" content: \\\"\\\";\\n\",\n       \" position: absolute;\\n\",\n       \" width: 100%;\\n\",\n       \" height: 2px;\\n\",\n       \" bottom: -2px;\\n\",\n       \" left: 0;\\n\",\n       \" background-color: #009cd1;\\n\",\n       \" visibility: hidden;\\n\",\n       \" -webkit-transform: perspective(0)scaleX(0);\\n\",\n       \" transform: perspective(0)scaleX(0);\\n\",\n       \" -webkit-transition: ease 220ms;\\n\",\n       \" transition: ease 220ms;\\n\",\n       \" -webkit-font-smoothing: antialiased !important;\\n\",\n       \"}\\n\",\n       \".nav-tabs > li > a:hover:before {\\n\",\n       \" visibility: visible;\\n\",\n       \" -webkit-transform: perspective(1)scaleX(1);\\n\",\n       \" transform: perspective(1)scaleX(1);\\n\",\n       \"}\\n\",\n       \".nav-tabs > li.active > a:before {\\n\",\n       \" content: \\\"\\\";\\n\",\n       \" position: absolute;\\n\",\n       \" width: 100%;\\n\",\n       \" height: 2px;\\n\",\n       \" bottom: -2px;\\n\",\n       \" left: 0;\\n\",\n       \" background-color: #009cd1;\\n\",\n       \" visibility: visible;\\n\",\n       \" -webkit-transform: perspective(1)scaleX(1);\\n\",\n       \" transform: perspective(1)scaleX(1);\\n\",\n       \" -webkit-font-smoothing: subpixel-antialiased !important;\\n\",\n       \"}\\n\",\n       \"div#notebook {\\n\",\n       \" font-family: sans-serif;\\n\",\n       \" font-size: 13pt;\\n\",\n       \" padding-top: 4px;\\n\",\n       \"}\\n\",\n       \".notebook_app {\\n\",\n       \" background-color: #1a2028;\\n\",\n       \"}\\n\",\n       \"#notebook-container {\\n\",\n       \" padding: 13px 2px;\\n\",\n       \" background-color: #1a2028;\\n\",\n       \" min-height: 0px;\\n\",\n       \" box-shadow: none;\\n\",\n       \" width: 980px;\\n\",\n       \" margin-right: auto;\\n\",\n       \" margin-left: auto;\\n\",\n       \"}\\n\",\n       \"div#ipython-main-app.container {\\n\",\n       \" width: 980px;\\n\",\n       \" margin-right: auto;\\n\",\n       \" margin-left: auto;\\n\",\n       \" margin-right: auto;\\n\",\n       \" margin-left: auto;\\n\",\n       \"}\\n\",\n       \".container {\\n\",\n       \" width: 980px;\\n\",\n       \" margin-right: auto;\\n\",\n       \" margin-left: auto;\\n\",\n       \"}\\n\",\n       \"div#menubar-container {\\n\",\n       \" width: 100%;\\n\",\n       \" width: 980px;\\n\",\n       \"}\\n\",\n       \"div#header-container {\\n\",\n       \" width: 980px;\\n\",\n       \"}\\n\",\n       \".notebook_app #header,\\n\",\n       \".edit_app #header {\\n\",\n       \" box-shadow: none !important;\\n\",\n       \" background-color: #1a2028;\\n\",\n       \" border-bottom: 2px solid rgba(75,95,118,.30);\\n\",\n       \"}\\n\",\n       \"#header,\\n\",\n       \".edit_app #header {\\n\",\n       \" font-family: sans-serif;\\n\",\n       \" font-size: 13pt;\\n\",\n       \" box-shadow: none;\\n\",\n       \" background-color: #1a2028;\\n\",\n       \"}\\n\",\n       \"#header .header-bar,\\n\",\n       \".edit_app #header .header-bar {\\n\",\n       \" background: #1a2028;\\n\",\n       \" background-color: #1a2028;\\n\",\n       \"}\\n\",\n       \"body > #header .header-bar {\\n\",\n       \" width: 100%;\\n\",\n       \" background: #1a2028;\\n\",\n       \"}\\n\",\n       \"span.checkpoint_status,\\n\",\n       \"span.autosave_status {\\n\",\n       \" font-size: small;\\n\",\n       \" display: none;\\n\",\n       \"}\\n\",\n       \"#menubar,\\n\",\n       \"div#menubar {\\n\",\n       \" background-color: #1a2028;\\n\",\n       \" padding-top: 0px !important;\\n\",\n       \"}\\n\",\n       \"#menubar .navbar,\\n\",\n       \".navbar-default {\\n\",\n       \" background-color: #1a2028;\\n\",\n       \" margin-bottom: 0px;\\n\",\n       \" margin-top: 0px;\\n\",\n       \"}\\n\",\n       \".navbar {\\n\",\n       \" border: none;\\n\",\n       \"}\\n\",\n       \"div.navbar-text,\\n\",\n       \".navbar-text,\\n\",\n       \".navbar-text.indicator_area,\\n\",\n       \"p.navbar-text.indicator_area {\\n\",\n       \" margin-top: 8px !important;\\n\",\n       \" margin-bottom: 0px;\\n\",\n       \" color: #0b98c8;\\n\",\n       \"}\\n\",\n       \".navbar-default {\\n\",\n       \" font-family: sans-serif;\\n\",\n       \" font-size: 13pt;\\n\",\n       \" background-color: #1a2028;\\n\",\n       \" border-color: #323b48;\\n\",\n       \" line-height: 1.5em;\\n\",\n       \" padding-bottom: 0px;\\n\",\n       \"}\\n\",\n       \".navbar-default .navbar-nav > li > a {\\n\",\n       \" font-family: sans-serif;\\n\",\n       \" font-size: 13pt;\\n\",\n       \" color: #a2b0c7;\\n\",\n       \" display: block;\\n\",\n       \" line-height: 1.5em;\\n\",\n       \" padding-top: 14px;\\n\",\n       \" padding-bottom: 11px;\\n\",\n       \"}\\n\",\n       \".navbar-default .navbar-nav > li > a:hover,\\n\",\n       \".navbar-default .navbar-nav > li > a:focus {\\n\",\n       \" color: #dbe1ea !important;\\n\",\n       \" background-color: rgba(75,95,118,.30) !important;\\n\",\n       \" border-color: #323b48 !important;\\n\",\n       \" line-height: 1.5em;\\n\",\n       \" transition: 80ms ease;\\n\",\n       \"}\\n\",\n       \".navbar-default .navbar-nav > .open > a,\\n\",\n       \".navbar-default .navbar-nav > .open > a:hover,\\n\",\n       \".navbar-default .navbar-nav > .open > a:focus {\\n\",\n       \" color: #fefefe;\\n\",\n       \" background-color: #36404e;\\n\",\n       \" border-color: #36404e;\\n\",\n       \" line-height: 1.5em;\\n\",\n       \"}\\n\",\n       \".navbar-nav > li > .dropdown-menu {\\n\",\n       \" margin-top: 0px;\\n\",\n       \"}\\n\",\n       \".navbar-nav {\\n\",\n       \" margin: 0;\\n\",\n       \"}\\n\",\n       \"div.notification_widget.info,\\n\",\n       \".notification_widget.info,\\n\",\n       \".notification_widget:active:hover,\\n\",\n       \".notification_widget.active:hover,\\n\",\n       \".open > .dropdown-toggle.notification_widget:hover,\\n\",\n       \".notification_widget:active:focus,\\n\",\n       \".notification_widget.active:focus,\\n\",\n       \".open > .dropdown-toggle.notification_widget:focus,\\n\",\n       \".notification_widget:active.focus,\\n\",\n       \".notification_widget.active.focus,\\n\",\n       \".open > .dropdown-toggle.notification_widget.focus,\\n\",\n       \"div#notification_notebook.notification_widget.btn.btn-xs.navbar-btn,\\n\",\n       \"div#notification_notebook.notification_widget.btn.btn-xs.navbar-btn:hover,\\n\",\n       \"div#notification_notebook.notification_widget.btn.btn-xs.navbar-btn:focus {\\n\",\n       \" color: #899ab8 !important;\\n\",\n       \" background-color: transparent !important;\\n\",\n       \" border-color: transparent !important;\\n\",\n       \" padding-bottom: 0px !important;\\n\",\n       \" margin-bottom: 0px !important;\\n\",\n       \" font-size: 9pt !important;\\n\",\n       \" z-index: 0;\\n\",\n       \"}\\n\",\n       \"div#notification_notebook.notification_widget.btn.btn-xs.navbar-btn {\\n\",\n       \" font-size: 9pt !important;\\n\",\n       \" z-index: 0;\\n\",\n       \"}\\n\",\n       \".notification_widget {\\n\",\n       \" color: #4c8be2;\\n\",\n       \" z-index: -500;\\n\",\n       \" font-size: 9pt;\\n\",\n       \" background: transparent;\\n\",\n       \" background-color: transparent;\\n\",\n       \" margin-right: 3px;\\n\",\n       \" border: none;\\n\",\n       \"}\\n\",\n       \".notification_widget,\\n\",\n       \"div.notification_widget {\\n\",\n       \" margin-right: 0px;\\n\",\n       \" margin-left: 0px;\\n\",\n       \" padding-right: 0px;\\n\",\n       \" vertical-align: text-top !important;\\n\",\n       \" margin-top: 6px !important;\\n\",\n       \" background: transparent !important;\\n\",\n       \" background-color: transparent !important;\\n\",\n       \" font-size: 9pt !important;\\n\",\n       \" border: none;\\n\",\n       \"}\\n\",\n       \".navbar-btn.btn-xs:hover {\\n\",\n       \" border: none !important;\\n\",\n       \" background: transparent !important;\\n\",\n       \" background-color: transparent !important;\\n\",\n       \" color: #a2b0c7 !important;\\n\",\n       \"}\\n\",\n       \"div.notification_widget.info,\\n\",\n       \".notification_widget.info {\\n\",\n       \" display: none !important;\\n\",\n       \"}\\n\",\n       \".edit_mode .modal_indicator:before {\\n\",\n       \" display: none;\\n\",\n       \"}\\n\",\n       \".command_mode .modal_indicator:before {\\n\",\n       \" display: none;\\n\",\n       \"}\\n\",\n       \".item_icon {\\n\",\n       \" color: #4c8be2;\\n\",\n       \"}\\n\",\n       \".item_buttons .kernel-name {\\n\",\n       \" font-size: 13pt;\\n\",\n       \" color: #4c8be2;\\n\",\n       \"}\\n\",\n       \".running_notebook_icon:before {\\n\",\n       \" color: #48a667 !important;\\n\",\n       \" font: normal normal normal 15px/1 FontAwesome;\\n\",\n       \" font-size: 15px;\\n\",\n       \" text-rendering: auto;\\n\",\n       \" -webkit-font-smoothing: antialiased;\\n\",\n       \" -moz-osx-font-smoothing: grayscale;\\n\",\n       \" content: \\\"\\\\f10c\\\";\\n\",\n       \" vertical-align: middle;\\n\",\n       \" position: static;\\n\",\n       \" display: inherit;\\n\",\n       \"}\\n\",\n       \".item_buttons .running-indicator {\\n\",\n       \" padding-top: 4px;\\n\",\n       \" color: #48a667;\\n\",\n       \" font-family: sans-serif;\\n\",\n       \" text-rendering: auto;\\n\",\n       \" -webkit-font-smoothing: antialiased;\\n\",\n       \"}\\n\",\n       \"#notification_trusted {\\n\",\n       \" font-family: sans-serif;\\n\",\n       \" border: none;\\n\",\n       \" background: transparent;\\n\",\n       \" background-color: transparent;\\n\",\n       \" margin-bottom: 0px !important;\\n\",\n       \" vertical-align: bottom !important;\\n\",\n       \" color: #546386 !important;\\n\",\n       \" cursor: default !important;\\n\",\n       \"}\\n\",\n       \"#notification_area,\\n\",\n       \"div.notification_area {\\n\",\n       \" float: right !important;\\n\",\n       \" position: static;\\n\",\n       \" cursor: pointer;\\n\",\n       \" padding-top: 6px;\\n\",\n       \" padding-right: 4px;\\n\",\n       \"}\\n\",\n       \"div#notification_notebook.notification_widget.btn.btn-xs.navbar-btn {\\n\",\n       \" font-size: 9pt !important;\\n\",\n       \" z-index: 0;\\n\",\n       \" margin-top: -5px !important;\\n\",\n       \"}\\n\",\n       \"#modal_indicator {\\n\",\n       \" float: right !important;\\n\",\n       \" color: #4c8be2;\\n\",\n       \" background: #1a2028;\\n\",\n       \" background-color: #1a2028;\\n\",\n       \" margin-top: 8px !important;\\n\",\n       \" margin-left: 0px;\\n\",\n       \"}\\n\",\n       \"#kernel_indicator {\\n\",\n       \" float: right !important;\\n\",\n       \" color: #0b98c8;\\n\",\n       \" background: #1a2028;\\n\",\n       \" background-color: #1a2028;\\n\",\n       \" border-left: 2px solid #0b98c8;\\n\",\n       \" padding-top: 0px;\\n\",\n       \" padding-bottom: 4px;\\n\",\n       \" margin-top: 10px !important;\\n\",\n       \" margin-left: -2px;\\n\",\n       \" padding-left: 5px !important;\\n\",\n       \"}\\n\",\n       \"#kernel_indicator .kernel_indicator_name {\\n\",\n       \" font-size: 17px;\\n\",\n       \" color: #0b98c8;\\n\",\n       \" background: #1a2028;\\n\",\n       \" background-color: #1a2028;\\n\",\n       \" padding-left: 5px;\\n\",\n       \" padding-right: 5px;\\n\",\n       \" margin-top: 4px;\\n\",\n       \" vertical-align: text-top;\\n\",\n       \" padding-bottom: 0px;\\n\",\n       \"}\\n\",\n       \".kernel_idle_icon:before {\\n\",\n       \" display: inline-block;\\n\",\n       \" font: normal normal normal 22px/1 FontAwesome;\\n\",\n       \" font-size: 22px;\\n\",\n       \" text-rendering: auto;\\n\",\n       \" -webkit-font-smoothing: antialiased;\\n\",\n       \" cursor: pointer;\\n\",\n       \" margin-left: 0px !important;\\n\",\n       \" opacity: 0.7;\\n\",\n       \" vertical-align: bottom;\\n\",\n       \" margin-top: 1px;\\n\",\n       \" content: \\\"\\\\f1db\\\";\\n\",\n       \"}\\n\",\n       \".kernel_busy_icon:before {\\n\",\n       \" display: inline-block;\\n\",\n       \" font: normal normal normal 22px/1 FontAwesome;\\n\",\n       \" font-size: 22px;\\n\",\n       \" -webkit-animation: pulsate 2s infinite ease-out;\\n\",\n       \" animation: pulsate 2s infinite ease-out;\\n\",\n       \" text-rendering: auto;\\n\",\n       \" -webkit-font-smoothing: antialiased;\\n\",\n       \" cursor: pointer;\\n\",\n       \" margin-left: 0px !important;\\n\",\n       \" vertical-align: bottom;\\n\",\n       \" margin-top: 1px;\\n\",\n       \" content: \\\"\\\\f111\\\";\\n\",\n       \"}\\n\",\n       \"@-webkit-keyframes pulsate {\\n\",\n       \" 0% {\\n\",\n       \"  -webkit-transform: scale(1.0,1.0);\\n\",\n       \"  opacity: 0.8;\\n\",\n       \" }\\n\",\n       \" 8% {\\n\",\n       \"  -webkit-transform: scale(1.0,1.0);\\n\",\n       \"  opacity: 0.8;\\n\",\n       \" }\\n\",\n       \" 50% {\\n\",\n       \"  -webkit-transform: scale(0.75,0.75);\\n\",\n       \"  opacity: 0.3;\\n\",\n       \" }\\n\",\n       \" 92% {\\n\",\n       \"  -webkit-transform: scale(1.0,1.0);\\n\",\n       \"  opacity: 0.8;\\n\",\n       \" }\\n\",\n       \" 100% {\\n\",\n       \"  -webkit-transform: scale(1.0,1.0);\\n\",\n       \"  opacity: 0.8;\\n\",\n       \" }\\n\",\n       \"}\\n\",\n       \"div.notification_widget.info,\\n\",\n       \".notification_widget.info,\\n\",\n       \".notification_widget:active:hover,\\n\",\n       \".notification_widget.active:hover,\\n\",\n       \".open > .dropdown-toggle.notification_widget:hover,\\n\",\n       \".notification_widget:active:focus,\\n\",\n       \".notification_widget.active:focus,\\n\",\n       \".open > .dropdown-toggle.notification_widget:focus,\\n\",\n       \".notification_widget:active.focus,\\n\",\n       \".notification_widget.active.focus,\\n\",\n       \".open > .dropdown-toggle.notification_widget.focus,\\n\",\n       \"div#notification_notebook.notification_widget.btn.btn-xs.navbar-btn,\\n\",\n       \"div#notification_notebook.notification_widget.btn.btn-xs.navbar-btn:hover,\\n\",\n       \"div#notification_notebook.notification_widget.btn.btn-xs.navbar-btn:focus {\\n\",\n       \" color: #899ab8;\\n\",\n       \" background-color: #1a2028;\\n\",\n       \" border-color: #1a2028;\\n\",\n       \"}\\n\",\n       \"#notification_area,\\n\",\n       \"div.notification_area {\\n\",\n       \" float: right !important;\\n\",\n       \" position: static;\\n\",\n       \"}\\n\",\n       \".notification_widget,\\n\",\n       \"div.notification_widget {\\n\",\n       \" margin-right: 0px;\\n\",\n       \" margin-left: 0px;\\n\",\n       \" padding-right: 0px;\\n\",\n       \" vertical-align: text-top !important;\\n\",\n       \" margin-top: 6px !important;\\n\",\n       \" z-index: 1000;\\n\",\n       \"}\\n\",\n       \"#kernel_logo_widget,\\n\",\n       \"#kernel_logo_widget .current_kernel_logo {\\n\",\n       \" display: none;\\n\",\n       \"}\\n\",\n       \"div#ipython_notebook {\\n\",\n       \" display: none;\\n\",\n       \"}\\n\",\n       \"i.fa.fa-icon {\\n\",\n       \" -webkit-font-smoothing: antialiased;\\n\",\n       \" -moz-osx-font-smoothing: grayscale;\\n\",\n       \" text-rendering: auto;\\n\",\n       \"}\\n\",\n       \".fa {\\n\",\n       \" display: inline-block;\\n\",\n       \" font: normal normal normal 10pt/1 \\\"FontAwesome\\\", sans-serif;\\n\",\n       \" text-rendering: auto;\\n\",\n       \" -webkit-font-smoothing: antialiased;\\n\",\n       \" -moz-osx-font-smoothing: grayscale;\\n\",\n       \"}\\n\",\n       \".dropdown-menu {\\n\",\n       \" font-family: sans-serif;\\n\",\n       \" font-size: 13pt;\\n\",\n       \" box-shadow: none;\\n\",\n       \" padding: 0px;\\n\",\n       \" text-align: left;\\n\",\n       \" border: none;\\n\",\n       \" background-color: #36404e;\\n\",\n       \" background: #36404e;\\n\",\n       \" line-height: 1;\\n\",\n       \"}\\n\",\n       \".dropdown-menu:hover {\\n\",\n       \" font-family: sans-serif;\\n\",\n       \" font-size: 13pt;\\n\",\n       \" box-shadow: none;\\n\",\n       \" padding: 0px;\\n\",\n       \" text-align: left;\\n\",\n       \" border: none;\\n\",\n       \" background-color: #36404e;\\n\",\n       \" box-shadow: none;\\n\",\n       \" line-height: 1;\\n\",\n       \"}\\n\",\n       \".dropdown-menu > li > a {\\n\",\n       \" font-family: sans-serif;\\n\",\n       \" font-size: 12.0pt;\\n\",\n       \" display: block;\\n\",\n       \" padding: 10px 20px 9px 10px;\\n\",\n       \" color: #a2b0c7;\\n\",\n       \" background-color: #36404e;\\n\",\n       \" background: #36404e;\\n\",\n       \"}\\n\",\n       \".dropdown-menu > li > a:hover,\\n\",\n       \".dropdown-menu > li > a:focus {\\n\",\n       \" color: #dbe1ea;\\n\",\n       \" background-color: #323b48;\\n\",\n       \" background: #323b48;\\n\",\n       \" border-color: #323b48;\\n\",\n       \" transition: 200ms ease;\\n\",\n       \"}\\n\",\n       \".dropdown-menu .divider {\\n\",\n       \" height: 1px;\\n\",\n       \" margin: 0px 0px;\\n\",\n       \" overflow: hidden;\\n\",\n       \" background-color: rgba(75,95,118,.55);\\n\",\n       \"}\\n\",\n       \".dropdown-submenu > .dropdown-menu {\\n\",\n       \" display: none;\\n\",\n       \" top: 2px !important;\\n\",\n       \" left: 100%;\\n\",\n       \" margin-top: -2px;\\n\",\n       \" margin-left: 0px;\\n\",\n       \" padding-top: 0px;\\n\",\n       \" transition: 200ms ease;\\n\",\n       \"}\\n\",\n       \".dropdown-menu > .disabled > a,\\n\",\n       \".dropdown-menu > .disabled > a:hover,\\n\",\n       \".dropdown-menu > .disabled > a:focus {\\n\",\n       \" font-family: sans-serif;\\n\",\n       \" font-size: 12.0pt;\\n\",\n       \" font-weight: normal;\\n\",\n       \" color: #546386;\\n\",\n       \" padding: none;\\n\",\n       \" display: block;\\n\",\n       \" clear: both;\\n\",\n       \" white-space: nowrap;\\n\",\n       \"}\\n\",\n       \".dropdown-submenu > a:after {\\n\",\n       \" color: #a2b0c7;\\n\",\n       \" margin-right: -16px;\\n\",\n       \" margin-top: 0px;\\n\",\n       \" display: inline-block;\\n\",\n       \"}\\n\",\n       \".dropdown-submenu:hover > a:after,\\n\",\n       \".dropdown-submenu:active > a:after,\\n\",\n       \".dropdown-submenu:focus > a:after,\\n\",\n       \".dropdown-submenu:visited > a:after {\\n\",\n       \" color: #0b98c8;\\n\",\n       \" margin-right: -16px;\\n\",\n       \" display: inline-block !important;\\n\",\n       \"}\\n\",\n       \"div.kse-dropdown > .dropdown-menu,\\n\",\n       \".kse-dropdown > .dropdown-menu {\\n\",\n       \" min-width: 0;\\n\",\n       \" top: 94%;\\n\",\n       \"}\\n\",\n       \".btn,\\n\",\n       \".btn-default {\\n\",\n       \" font-family: sans-serif;\\n\",\n       \" color: #a2b0c7;\\n\",\n       \" background: #252e3a;\\n\",\n       \" background-color: #252e3a;\\n\",\n       \" border: 2px solid #252e3a;\\n\",\n       \" font-weight: normal;\\n\",\n       \" box-shadow: none;\\n\",\n       \" text-shadow: none;\\n\",\n       \" border-radius: 3px;\\n\",\n       \" font-size: initial;\\n\",\n       \"}\\n\",\n       \".btn:hover,\\n\",\n       \".btn:active:hover,\\n\",\n       \".btn.active:hover,\\n\",\n       \".btn-default:hover,\\n\",\n       \".open > .dropdown-toggle.btn-default:hover,\\n\",\n       \".open > .dropdown-toggle.btn:hover {\\n\",\n       \" color: #009cd1;\\n\",\n       \" border: 2px solid #293340;\\n\",\n       \" background-color: #293340;\\n\",\n       \" background: #293340;\\n\",\n       \" background-image: none;\\n\",\n       \" box-shadow: none !important;\\n\",\n       \" border-radius: 3px;\\n\",\n       \"}\\n\",\n       \".btn:active,\\n\",\n       \".btn.active,\\n\",\n       \".btn:active:focus,\\n\",\n       \".btn.active:focus,\\n\",\n       \".btn:active.focus,\\n\",\n       \".btn.active.focus,\\n\",\n       \".btn-default:focus,\\n\",\n       \".btn-default.focus,\\n\",\n       \".btn-default:active,\\n\",\n       \".btn-default.active,\\n\",\n       \".btn-default:active:hover,\\n\",\n       \".btn-default.active:hover,\\n\",\n       \".btn-default:active:focus,\\n\",\n       \".btn-default.active:focus,\\n\",\n       \".btn-default:active.focus,\\n\",\n       \".btn-default.active.focus,\\n\",\n       \".open > .dropdown-toggle.btn:focus,\\n\",\n       \".open > .dropdown-toggle.btn.focus,\\n\",\n       \".open > .dropdown-toggle.btn-default:hover,\\n\",\n       \".open > .dropdown-toggle.btn-default:focus,\\n\",\n       \".open > .dropdown-toggle.btn-default.hover,\\n\",\n       \".open > .dropdown-toggle.btn-default.focus {\\n\",\n       \" color: #009cd1;\\n\",\n       \" border: 2px solid #293340;\\n\",\n       \" background-color: #293340 !important;\\n\",\n       \" background: #293340 !important;\\n\",\n       \" background-image: none;\\n\",\n       \" box-shadow: none !important;\\n\",\n       \" border-radius: 3px;\\n\",\n       \"}\\n\",\n       \".btn-default:active:hover,\\n\",\n       \".btn-default.active:hover,\\n\",\n       \".btn-default:active:focus,\\n\",\n       \".btn-default.active:focus,\\n\",\n       \".btn-default:active.focus,\\n\",\n       \".btn-default.active.focus {\\n\",\n       \" color: #009cd1 !important;\\n\",\n       \" background-color: #252e3a;\\n\",\n       \" border-color: #33517c !important;\\n\",\n       \" transition: 2000ms ease;\\n\",\n       \"}\\n\",\n       \".btn:focus,\\n\",\n       \".btn.focus,\\n\",\n       \".btn:active:focus,\\n\",\n       \".btn.active:focus,\\n\",\n       \".btn:active,\\n\",\n       \".btn.active,\\n\",\n       \".btn:active.focus,\\n\",\n       \".btn.active.focus {\\n\",\n       \" color: #009cd1 !important;\\n\",\n       \" outline: none !important;\\n\",\n       \" outline-width: 0px !important;\\n\",\n       \" background: #33517c !important;\\n\",\n       \" background-color: #33517c !important;\\n\",\n       \" border-color: #33517c !important;\\n\",\n       \" transition: 200ms ease !important;\\n\",\n       \"}\\n\",\n       \".item_buttons > .btn,\\n\",\n       \".item_buttons > .btn-group,\\n\",\n       \".item_buttons > .input-group {\\n\",\n       \" font-size: 13pt;\\n\",\n       \" background: transparent;\\n\",\n       \" background-color: transparent;\\n\",\n       \" border: 0px solid #252b35;\\n\",\n       \" border-bottom: 2px solid transparent;\\n\",\n       \" margin-left: 5px;\\n\",\n       \" padding-top: 4px !important;\\n\",\n       \"}\\n\",\n       \".item_buttons > .btn:hover,\\n\",\n       \".item_buttons > .btn-group:hover,\\n\",\n       \".item_buttons > .input-group:hover,\\n\",\n       \".item_buttons > .btn.active,\\n\",\n       \".item_buttons > .btn-group.active,\\n\",\n       \".item_buttons > .input-group.active,\\n\",\n       \".item_buttons > .btn.focus {\\n\",\n       \" margin-left: 5px;\\n\",\n       \" background: #21262f;\\n\",\n       \" padding-top: 4px !important;\\n\",\n       \" background-color: transparent;\\n\",\n       \" border: 0px solid transparent;\\n\",\n       \" border-bottom: 2px solid #0b98c8;\\n\",\n       \" border-radius: 0px;\\n\",\n       \" transition: none;\\n\",\n       \"}\\n\",\n       \".item_buttons {\\n\",\n       \" line-height: 1.5em !important;\\n\",\n       \"}\\n\",\n       \".item_buttons .btn {\\n\",\n       \" min-width: 11ex;\\n\",\n       \"}\\n\",\n       \".btn-group > .btn:first-child {\\n\",\n       \" margin-left: 3px;\\n\",\n       \"}\\n\",\n       \".btn-group > .btn-mini,\\n\",\n       \".btn-sm,\\n\",\n       \".btn-group-sm > .btn,\\n\",\n       \".btn-xs,\\n\",\n       \".btn-group-xs > .btn,\\n\",\n       \".alternate_upload .btn-upload,\\n\",\n       \".btn-group,\\n\",\n       \".btn-group-vertical {\\n\",\n       \" font-size: inherit;\\n\",\n       \" font-weight: normal;\\n\",\n       \" height: inherit;\\n\",\n       \" line-height: inherit;\\n\",\n       \"}\\n\",\n       \".btn-xs,\\n\",\n       \".btn-group-xs > .btn {\\n\",\n       \" font-size: initial !important;\\n\",\n       \" background-image: none;\\n\",\n       \" font-weight: normal;\\n\",\n       \" text-shadow: none;\\n\",\n       \" display: inline-table;\\n\",\n       \" padding: 2px 5px;\\n\",\n       \" line-height: 1.45;\\n\",\n       \"}\\n\",\n       \".btn-group > .btn:first-child {\\n\",\n       \" margin-left: 3px;\\n\",\n       \"}\\n\",\n       \"div#new-buttons > button,\\n\",\n       \"#new-buttons > button,\\n\",\n       \"div#refresh_notebook_list,\\n\",\n       \"#refresh_notebook_list {\\n\",\n       \" background: transparent;\\n\",\n       \" background-color: transparent;\\n\",\n       \" border: none;\\n\",\n       \"}\\n\",\n       \"div#new-buttons > button:hover,\\n\",\n       \"#new-buttons > button:hover,\\n\",\n       \"div#refresh_notebook_list,\\n\",\n       \"#refresh_notebook_list,\\n\",\n       \"div.alternate_upload .btn-upload,\\n\",\n       \".alternate_upload .btn-upload,\\n\",\n       \"div.dynamic-buttons > button,\\n\",\n       \".dynamic-buttons > button,\\n\",\n       \".dynamic-buttons > button:focus,\\n\",\n       \".dynamic-buttons > button:active:focus,\\n\",\n       \".dynamic-buttons > button.active:focus,\\n\",\n       \".dynamic-buttons > button.focus,\\n\",\n       \".dynamic-buttons > button:active.focus,\\n\",\n       \".dynamic-buttons > button.active.focus,\\n\",\n       \"#new-buttons > button:focus,\\n\",\n       \"#new-buttons > button:active:focus,\\n\",\n       \"#new-buttons > button.active:focus,\\n\",\n       \"#new-buttons > button.focus,\\n\",\n       \"#new-buttons > button:active.focus,\\n\",\n       \"#new-buttons > button.active.focus,\\n\",\n       \".alternate_upload .btn-upload:focus,\\n\",\n       \".alternate_upload .btn-upload:active:focus,\\n\",\n       \".alternate_upload .btn-upload.active:focus,\\n\",\n       \".alternate_upload .btn-upload.focus,\\n\",\n       \".alternate_upload .btn-upload:active.focus,\\n\",\n       \".alternate_upload .btn-upload.active.focus {\\n\",\n       \" background: transparent !important;\\n\",\n       \" background-color: transparent !important;\\n\",\n       \" border: none !important;\\n\",\n       \"}\\n\",\n       \".alternate_upload input.fileinput {\\n\",\n       \" text-align: center;\\n\",\n       \" vertical-align: bottom;\\n\",\n       \" margin-left: -.5ex;\\n\",\n       \" display: inline-table;\\n\",\n       \" border: solid 0px #252e3a;\\n\",\n       \" margin-bottom: -1ex;\\n\",\n       \"}\\n\",\n       \".alternate_upload .btn-upload {\\n\",\n       \" display: inline-table;\\n\",\n       \" background: transparent;\\n\",\n       \" border: none;\\n\",\n       \"}\\n\",\n       \".btn-group .btn + .btn,\\n\",\n       \".btn-group .btn + .btn-group,\\n\",\n       \".btn-group .btn-group + .btn,\\n\",\n       \".btn-group .btn-group + .btn-group {\\n\",\n       \" margin-left: -2px;\\n\",\n       \"}\\n\",\n       \".btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {\\n\",\n       \" border-bottom-right-radius: 0;\\n\",\n       \" border-top-right-radius: 0;\\n\",\n       \" z-index: 2;\\n\",\n       \"}\\n\",\n       \".dropdown-header {\\n\",\n       \" font-family: sans-serif !important;\\n\",\n       \" font-size: 13pt !important;\\n\",\n       \" color: #0b98c8 !important;\\n\",\n       \" border-bottom: none !important;\\n\",\n       \" padding: 0px !important;\\n\",\n       \" margin: 6px 6px 0px !important;\\n\",\n       \"}\\n\",\n       \"span#last-modified.btn.btn-xs.btn-default.sort-action,\\n\",\n       \"span#sort-name.btn.btn-xs.btn-default.sort-action,\\n\",\n       \"span#file-size.btn.btn-xs.btn-default.sort-action {\\n\",\n       \" font-family: sans-serif;\\n\",\n       \" font-size: 16px;\\n\",\n       \" background-color: transparent;\\n\",\n       \" background: transparent;\\n\",\n       \" border: none;\\n\",\n       \" color: #a2b0c7;\\n\",\n       \" padding-bottom: 0px;\\n\",\n       \" margin-bottom: 0px;\\n\",\n       \" vertical-align: sub;\\n\",\n       \"}\\n\",\n       \"span#last-modified.btn.btn-xs.btn-default.sort-action {\\n\",\n       \" margin-left: 19px;\\n\",\n       \"}\\n\",\n       \"button.close {\\n\",\n       \" border: 0px none;\\n\",\n       \" font-family: sans-serif;\\n\",\n       \" font-size: 20pt;\\n\",\n       \" font-weight: normal;\\n\",\n       \"}\\n\",\n       \".dynamic-buttons {\\n\",\n       \" padding-top: 0px;\\n\",\n       \" display: inline-block;\\n\",\n       \"}\\n\",\n       \".close {\\n\",\n       \" color: #dc6972;\\n\",\n       \" opacity: .5;\\n\",\n       \" text-shadow: none;\\n\",\n       \" font-weight: normal;\\n\",\n       \"}\\n\",\n       \".close:hover {\\n\",\n       \" color: #dc6972;\\n\",\n       \" opacity: 1;\\n\",\n       \" font-weight: normal;\\n\",\n       \"}\\n\",\n       \"div.nbext-enable-btns .btn[disabled],\\n\",\n       \"div.nbext-enable-btns .btn[disabled]:hover,\\n\",\n       \".btn-default.disabled,\\n\",\n       \".btn-default[disabled],\\n\",\n       \".btn-default.disabled:hover,\\n\",\n       \".btn-default[disabled]:hover,\\n\",\n       \"fieldset[disabled] .btn-default:hover,\\n\",\n       \".btn-default.disabled:focus,\\n\",\n       \".btn-default[disabled]:focus,\\n\",\n       \"fieldset[disabled] .btn-default:focus,\\n\",\n       \".btn-default.disabled.focus,\\n\",\n       \".btn-default[disabled].focus,\\n\",\n       \"fieldset[disabled] .btn-default.focus {\\n\",\n       \" color: #92a2bd;\\n\",\n       \" background: #232c37;\\n\",\n       \" background-color: #232c37;\\n\",\n       \" border-color: #232c37;\\n\",\n       \" transition: 200ms ease;\\n\",\n       \"}\\n\",\n       \".input-group-addon {\\n\",\n       \" padding: 2px 5px;\\n\",\n       \" font-size: 13pt;\\n\",\n       \" font-weight: normal;\\n\",\n       \" height: auto;\\n\",\n       \" color: #a2b0c7;\\n\",\n       \" text-align: center;\\n\",\n       \" background-color: transparent;\\n\",\n       \" border: 2px solid transparent !important;\\n\",\n       \" text-transform: capitalize;\\n\",\n       \"}\\n\",\n       \"a.btn.btn-default.input-group-addon:hover {\\n\",\n       \" background: transparent !important;\\n\",\n       \" background-color: transparent !important;\\n\",\n       \"}\\n\",\n       \".btn-group > .btn + .dropdown-toggle {\\n\",\n       \" padding-left: 8px;\\n\",\n       \" padding-right: 8px;\\n\",\n       \" height: 100%;\\n\",\n       \"}\\n\",\n       \".btn-group > .btn + .dropdown-toggle:hover {\\n\",\n       \" background: #293340 !important;\\n\",\n       \"}\\n\",\n       \".input-group-btn {\\n\",\n       \" position: relative;\\n\",\n       \" font-size: inherit;\\n\",\n       \" white-space: nowrap;\\n\",\n       \" background: #252b35;\\n\",\n       \" background-color: #252b35;\\n\",\n       \" border: none;\\n\",\n       \"}\\n\",\n       \".input-group-btn:hover {\\n\",\n       \" background: #21262f;\\n\",\n       \" background-color: #21262f;\\n\",\n       \" border: none;\\n\",\n       \"}\\n\",\n       \".input-group-btn:first-child > .btn,\\n\",\n       \".input-group-btn:first-child > .btn-group {\\n\",\n       \" background: #252b35;\\n\",\n       \" background-color: #252b35;\\n\",\n       \" border: none;\\n\",\n       \" margin-left: 2px;\\n\",\n       \" margin-right: -1px;\\n\",\n       \" font-size: inherit;\\n\",\n       \"}\\n\",\n       \".input-group-btn:first-child > .btn:hover,\\n\",\n       \".input-group-btn:first-child > .btn-group:hover {\\n\",\n       \" background: #293340;\\n\",\n       \" background-color: #293340;\\n\",\n       \" border: none;\\n\",\n       \" font-size: inherit;\\n\",\n       \" transition: 200ms ease;\\n\",\n       \"}\\n\",\n       \"div.modal .btn-group > .btn:first-child {\\n\",\n       \" background: #252b35;\\n\",\n       \" background-color: #252b35;\\n\",\n       \" border: 1px solid #232932;\\n\",\n       \" margin-top: 0px !important;\\n\",\n       \" margin-left: 0px;\\n\",\n       \" margin-bottom: 2px;\\n\",\n       \"}\\n\",\n       \"div.modal .btn-group > .btn:first-child:hover {\\n\",\n       \" background: #21262f;\\n\",\n       \" background-color: #21262f;\\n\",\n       \" border: 1px solid #21262f;\\n\",\n       \" transition: 200ms ease;\\n\",\n       \"}\\n\",\n       \"div.modal > button,\\n\",\n       \"div.modal-footer > button {\\n\",\n       \" background: #252b35;\\n\",\n       \" background-color: #252b35;\\n\",\n       \" border-color: #252b35;\\n\",\n       \"}\\n\",\n       \"div.modal > button:hover,\\n\",\n       \"div.modal-footer > button:hover {\\n\",\n       \" background: #21262f;\\n\",\n       \" background-color: #21262f;\\n\",\n       \" border-color: #21262f;\\n\",\n       \" transition: 200ms ease;\\n\",\n       \"}\\n\",\n       \".modal-content {\\n\",\n       \" font-family: sans-serif;\\n\",\n       \" font-size: 12.0pt;\\n\",\n       \" position: relative;\\n\",\n       \" background: #252b35;\\n\",\n       \" background-color: #252b35;\\n\",\n       \" border: none;\\n\",\n       \" border-radius: 1px;\\n\",\n       \" background-clip: padding-box;\\n\",\n       \" outline: none;\\n\",\n       \"}\\n\",\n       \".modal-header {\\n\",\n       \" font-family: sans-serif;\\n\",\n       \" font-size: 13pt;\\n\",\n       \" color: #a2b0c7;\\n\",\n       \" background: #252b35;\\n\",\n       \" background-color: #252b35;\\n\",\n       \" border-color: rgba(75,95,118,.30);\\n\",\n       \" padding: 12px;\\n\",\n       \" min-height: 16.4286px;\\n\",\n       \"}\\n\",\n       \".modal-content h4 {\\n\",\n       \" font-family: sans-serif;\\n\",\n       \" font-size: 16pt;\\n\",\n       \" color: #a2b0c7;\\n\",\n       \" padding: 5px;\\n\",\n       \"}\\n\",\n       \".modal-body {\\n\",\n       \" background-color: #2d3846;\\n\",\n       \" position: relative;\\n\",\n       \" padding: 15px;\\n\",\n       \"}\\n\",\n       \".modal-footer {\\n\",\n       \" padding: 8px;\\n\",\n       \" text-align: right;\\n\",\n       \" background-color: #2d3846;\\n\",\n       \" border-top: none;\\n\",\n       \"}\\n\",\n       \".alert-info {\\n\",\n       \" background-color: #323f50;\\n\",\n       \" border-color: rgba(75,95,118,.30);\\n\",\n       \" color: #a2b0c7;\\n\",\n       \"}\\n\",\n       \".modal-header .close {\\n\",\n       \" margin-top: -5px;\\n\",\n       \" font-size: 25pt;\\n\",\n       \"}\\n\",\n       \".modal-backdrop,\\n\",\n       \".modal-backdrop.in {\\n\",\n       \" opacity: 0.85;\\n\",\n       \" background-color: notebook-bg;\\n\",\n       \"}\\n\",\n       \"div.panel,\\n\",\n       \"div.panel-default,\\n\",\n       \".panel,\\n\",\n       \".panel-default {\\n\",\n       \" font-family: sans-serif;\\n\",\n       \" font-size: 13pt;\\n\",\n       \" background-color: #2d3846;\\n\",\n       \" color: #a2b0c7;\\n\",\n       \" margin-bottom: 14px;\\n\",\n       \" border: 0;\\n\",\n       \" box-shadow: none;\\n\",\n       \"}\\n\",\n       \"div.panel > .panel-heading,\\n\",\n       \"div.panel-default > .panel-heading {\\n\",\n       \" font-size: 14pt;\\n\",\n       \" color: #a2b0c7;\\n\",\n       \" background: #252b35;\\n\",\n       \" background-color: #252b35;\\n\",\n       \" border: 0;\\n\",\n       \"}\\n\",\n       \".modal .modal-dialog {\\n\",\n       \" min-width: 950px;\\n\",\n       \" margin: 50px auto;\\n\",\n       \"}\\n\",\n       \"div.container-fluid {\\n\",\n       \" margin-right: auto;\\n\",\n       \" margin-left: auto;\\n\",\n       \" padding-left: 0px;\\n\",\n       \" padding-right: 5px;\\n\",\n       \"}\\n\",\n       \"div.form-control,\\n\",\n       \".form-control {\\n\",\n       \" font-family: sans-serif;\\n\",\n       \" font-size: initial;\\n\",\n       \" color: #a2b0c7;\\n\",\n       \" background-color: #252b35;\\n\",\n       \" border: 1px solid #252e3a !important;\\n\",\n       \" margin-left: 2px;\\n\",\n       \" box-shadow: none;\\n\",\n       \" transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;\\n\",\n       \"}\\n\",\n       \".form-control-static {\\n\",\n       \" min-height: inherit;\\n\",\n       \" height: inherit;\\n\",\n       \"}\\n\",\n       \".form-group.list-group-item {\\n\",\n       \" color: #a2b0c7;\\n\",\n       \" background-color: #2d3846;\\n\",\n       \" border-color: rgba(75,95,118,.30);\\n\",\n       \" margin-bottom: 0px;\\n\",\n       \"}\\n\",\n       \".form-group .input-group {\\n\",\n       \" float: left;\\n\",\n       \"}\\n\",\n       \"input,\\n\",\n       \"button,\\n\",\n       \"select,\\n\",\n       \"textarea {\\n\",\n       \" background-color: #252b35;\\n\",\n       \" font-weight: normal;\\n\",\n       \" border: 1px solid rgba(75,95,118,.30);\\n\",\n       \"}\\n\",\n       \"select.form-control.select-xs {\\n\",\n       \" height: 33px;\\n\",\n       \" font-size: 13pt;\\n\",\n       \"}\\n\",\n       \".toolbar select,\\n\",\n       \".toolbar label {\\n\",\n       \" width: auto;\\n\",\n       \" vertical-align: middle;\\n\",\n       \" margin-right: 0px;\\n\",\n       \" margin-bottom: 0px;\\n\",\n       \" display: inline;\\n\",\n       \" font-size: 92%;\\n\",\n       \" margin-left: 10px;\\n\",\n       \" padding: 0px;\\n\",\n       \" background: #252e3a !important;\\n\",\n       \" background-color: #252e3a !important;\\n\",\n       \" border: 2px solid #212934 !important;\\n\",\n       \"}\\n\",\n       \".form-control:focus {\\n\",\n       \" border-color: #0b98c8;\\n\",\n       \" outline: 2px solid rgba(0,156,209,.5);\\n\",\n       \" -webkit-box-shadow: none;\\n\",\n       \"}\\n\",\n       \"::-webkit-input-placeholder {\\n\",\n       \" color: #546386;\\n\",\n       \"}\\n\",\n       \"::-moz-placeholder {\\n\",\n       \" color: #546386;\\n\",\n       \"}\\n\",\n       \":-ms-input-placeholder {\\n\",\n       \" color: #546386;\\n\",\n       \"}\\n\",\n       \":-moz-placeholder {\\n\",\n       \" color: #546386;\\n\",\n       \"}\\n\",\n       \"[dir=\\\"ltr\\\"] #find-and-replace .input-group-btn + .form-control {\\n\",\n       \" border: 2px solid rgba(75,95,118,.30) !important;\\n\",\n       \"}\\n\",\n       \"[dir=\\\"ltr\\\"] #find-and-replace .input-group-btn + .form-control:focus {\\n\",\n       \" border-color: #0b98c8;\\n\",\n       \" outline: 2px solid rgba(0,156,209,.5);\\n\",\n       \" -webkit-box-shadow: none;\\n\",\n       \" box-shadow: none;\\n\",\n       \"}\\n\",\n       \"div.output.output_scroll {\\n\",\n       \" box-shadow: none;\\n\",\n       \"}\\n\",\n       \"::-webkit-scrollbar {\\n\",\n       \" width: 11px;\\n\",\n       \" max-height: 9px;\\n\",\n       \" background-color: #292d3a;\\n\",\n       \" border-radius: 3px;\\n\",\n       \" border: none;\\n\",\n       \"}\\n\",\n       \"::-webkit-scrollbar-track {\\n\",\n       \" background: #292d3a;\\n\",\n       \" border: none;\\n\",\n       \" width: 11px;\\n\",\n       \" max-height: 9px;\\n\",\n       \"}\\n\",\n       \"::-webkit-scrollbar-thumb {\\n\",\n       \" border-radius: 2px;\\n\",\n       \" border: none;\\n\",\n       \" background: #3f4555;\\n\",\n       \" background-clip: content-box;\\n\",\n       \" width: 11px;\\n\",\n       \"}\\n\",\n       \"HTML,\\n\",\n       \"body,\\n\",\n       \"div,\\n\",\n       \"dl,\\n\",\n       \"dt,\\n\",\n       \"dd,\\n\",\n       \"ul,\\n\",\n       \"ol,\\n\",\n       \"li,\\n\",\n       \"h1,\\n\",\n       \"h2,\\n\",\n       \"h3,\\n\",\n       \"h4,\\n\",\n       \"h5,\\n\",\n       \"h6,\\n\",\n       \"pre,\\n\",\n       \"code,\\n\",\n       \"form,\\n\",\n       \"fieldset,\\n\",\n       \"legend,\\n\",\n       \"input,\\n\",\n       \"button,\\n\",\n       \"textarea,\\n\",\n       \"p,\\n\",\n       \"blockquote,\\n\",\n       \"th,\\n\",\n       \"td,\\n\",\n       \"span,\\n\",\n       \"a {\\n\",\n       \" text-rendering: geometricPrecision;\\n\",\n       \" -webkit-font-smoothing: subpixel-antialiased;\\n\",\n       \" font-weight: 400;\\n\",\n       \"}\\n\",\n       \"div.input_area {\\n\",\n       \" background-color: #293340;\\n\",\n       \" background: #293340;\\n\",\n       \" padding-right: 1.2em;\\n\",\n       \" border: 0px;\\n\",\n       \" border-radius: 0px;\\n\",\n       \" border-top-right-radius: 4px;\\n\",\n       \" border-bottom-right-radius: 4px;\\n\",\n       \"}\\n\",\n       \"div.cell {\\n\",\n       \" padding: 0px;\\n\",\n       \" background: #293340;\\n\",\n       \" background-color: #293340;\\n\",\n       \" border: medium solid #1a2028;\\n\",\n       \" border-radius: 4px;\\n\",\n       \" top: 0;\\n\",\n       \"}\\n\",\n       \"div.cell.selected {\\n\",\n       \" background: #293340;\\n\",\n       \" background-color: #293340;\\n\",\n       \" border: medium solid #1a2028;\\n\",\n       \" padding: 0px;\\n\",\n       \" border-radius: 5px;\\n\",\n       \"}\\n\",\n       \".edit_mode div.cell.selected {\\n\",\n       \" padding: 0px;\\n\",\n       \" background: #293340;\\n\",\n       \" background-color: #293340;\\n\",\n       \" border: medium solid #1a2028;\\n\",\n       \" border-radius: 5px;\\n\",\n       \"}\\n\",\n       \"div.cell.edit_mode {\\n\",\n       \" padding: 0px;\\n\",\n       \" background: #293340;\\n\",\n       \" background-color: #293340;\\n\",\n       \"}\\n\",\n       \"div.CodeMirror-sizer {\\n\",\n       \" margin-left: 0px;\\n\",\n       \" margin-bottom: -21px;\\n\",\n       \" border-right-width: 16px;\\n\",\n       \" min-height: 37px;\\n\",\n       \" padding-right: 0px;\\n\",\n       \" padding-bottom: 0px;\\n\",\n       \" margin-top: 0px;\\n\",\n       \"}\\n\",\n       \"div.cell.selected:before,\\n\",\n       \".edit_mode div.cell.selected:before,\\n\",\n       \"div.cell.selected:before,\\n\",\n       \"div.cell.selected.jupyter-soft-selected:before {\\n\",\n       \" background: #293340 !important;\\n\",\n       \" border: none;\\n\",\n       \" border-radius: 3px;\\n\",\n       \" position: absolute;\\n\",\n       \" display: block;\\n\",\n       \" top: 0px;\\n\",\n       \" left: 0px;\\n\",\n       \" width: 0px;\\n\",\n       \" height: 100%;\\n\",\n       \"}\\n\",\n       \"div.cell.text_cell.selected::before,\\n\",\n       \".edit_mode div.cell.text_cell.selected:before,\\n\",\n       \"div.cell.text_cell.selected:before,\\n\",\n       \"div.cell.text_cell.selected.jupyter-soft-selected:before {\\n\",\n       \" background: #293340 !important;\\n\",\n       \" background-color: #293340 !important;\\n\",\n       \" border-color: #0b98c8 !important;\\n\",\n       \"}\\n\",\n       \"div.cell.code_cell .input {\\n\",\n       \" border-left: 5px solid #293340 !important;\\n\",\n       \" border-radius: 3px;\\n\",\n       \" border-bottom-left-radius: 3px;\\n\",\n       \" border-top-left-radius: 3px;\\n\",\n       \"}\\n\",\n       \"div.cell.code_cell.selected .input {\\n\",\n       \" border-left: 5px solid #008ebf !important;\\n\",\n       \" border-radius: 3px;\\n\",\n       \"}\\n\",\n       \".edit_mode div.cell.code_cell.selected .input {\\n\",\n       \" border-left: 5px solid #005573 !important;\\n\",\n       \" border-radius: 3px;\\n\",\n       \"}\\n\",\n       \".edit_mode div.cell.selected:before {\\n\",\n       \" height: 100%;\\n\",\n       \" border-left: 5px solid #005573 !important;\\n\",\n       \" border-radius: 3px;\\n\",\n       \"}\\n\",\n       \"div.cell.jupyter-soft-selected,\\n\",\n       \"div.cell.selected.jupyter-soft-selected {\\n\",\n       \" border-left-color: #005573 !important;\\n\",\n       \" border-left-width: 0px !important;\\n\",\n       \" padding-left: 7px !important;\\n\",\n       \" border-right-color: #005573 !important;\\n\",\n       \" border-right-width: 0px !important;\\n\",\n       \" background: #005573 !important;\\n\",\n       \" border-radius: 6px !important;\\n\",\n       \"}\\n\",\n       \"div.cell.selected.jupyter-soft-selected .input {\\n\",\n       \" border-left: 5px solid #293340 !important;\\n\",\n       \"}\\n\",\n       \"div.cell.selected.jupyter-soft-selected {\\n\",\n       \" border-left-color: #008ebf;\\n\",\n       \" border-color: #1a2028;\\n\",\n       \" padding-left: 7px;\\n\",\n       \" border-radius: 6px;\\n\",\n       \"}\\n\",\n       \"div.cell.code_cell.selected .input {\\n\",\n       \" border-left: none;\\n\",\n       \" border-radius: 3px;\\n\",\n       \"}\\n\",\n       \"div.cell.selected.jupyter-soft-selected .prompt,\\n\",\n       \"div.cell.text_cell.selected.jupyter-soft-selected .prompt {\\n\",\n       \" top: 0;\\n\",\n       \" border-left: #293340 !important;\\n\",\n       \" border-radius: 2px;\\n\",\n       \"}\\n\",\n       \"div.cell.text_cell.selected.jupyter-soft-selected .input_prompt {\\n\",\n       \" border-left: none !important;\\n\",\n       \"}\\n\",\n       \"div.cell.text_cell.jupyter-soft-selected,\\n\",\n       \"div.cell.text_cell.selected.jupyter-soft-selected {\\n\",\n       \" border-left-color: #005573 !important;\\n\",\n       \" border-left-width: 0px !important;\\n\",\n       \" padding-left: 26px !important;\\n\",\n       \" border-right-color: #005573 !important;\\n\",\n       \" border-right-width: 0px !important;\\n\",\n       \" background: #005573 !important;\\n\",\n       \" border-radius: 5px !important;\\n\",\n       \"}\\n\",\n       \"div.cell.jupyter-soft-selected .input,\\n\",\n       \"div.cell.selected.jupyter-soft-selected .input {\\n\",\n       \" border-left-color: #005573 !important;\\n\",\n       \"}\\n\",\n       \"div.prompt,\\n\",\n       \".prompt {\\n\",\n       \" font-family: monospace, monospace;\\n\",\n       \" font-size: 9pt !important;\\n\",\n       \" font-weight: normal;\\n\",\n       \" color: #546386;\\n\",\n       \" line-height: 170%;\\n\",\n       \" padding: 0px;\\n\",\n       \" padding-top: 4px;\\n\",\n       \" padding-left: 0px;\\n\",\n       \" padding-right: 1px;\\n\",\n       \" text-align: right !important;\\n\",\n       \" min-width: 11.5ex !important;\\n\",\n       \" width: 11.5ex !important;\\n\",\n       \"}\\n\",\n       \"div.prompt.input_prompt {\\n\",\n       \" font-size: 9pt !important;\\n\",\n       \" background-color: #293340;\\n\",\n       \" border-top: 0px;\\n\",\n       \" border-top-right-radius: 0px;\\n\",\n       \" border-bottom-left-radius: 0px;\\n\",\n       \" border-bottom-right-radius: 0px;\\n\",\n       \" padding-right: 3px;\\n\",\n       \" min-width: 11.5ex;\\n\",\n       \" width: 11.5ex !important;\\n\",\n       \"}\\n\",\n       \"div.cell.code_cell .input_prompt {\\n\",\n       \" border-right: 2px solid rgba(0,156,209,.5);\\n\",\n       \"}\\n\",\n       \"div.cell.selected .prompt {\\n\",\n       \" top: 0;\\n\",\n       \"}\\n\",\n       \".edit_mode div.cell.selected .prompt {\\n\",\n       \" top: 0;\\n\",\n       \"}\\n\",\n       \".edit_mode div.cell.selected .prompt {\\n\",\n       \" top: 0;\\n\",\n       \"}\\n\",\n       \".run_this_cell {\\n\",\n       \" visibility: hidden;\\n\",\n       \" color: transparent;\\n\",\n       \" padding-top: 0px;\\n\",\n       \" padding-bottom: 0px;\\n\",\n       \" padding-left: 3px;\\n\",\n       \" padding-right: 12px;\\n\",\n       \" width: 1.5ex;\\n\",\n       \" width: 0ex;\\n\",\n       \" background: transparent;\\n\",\n       \" background-color: transparent;\\n\",\n       \"}\\n\",\n       \"div.code_cell:hover div.input .run_this_cell {\\n\",\n       \" visibility: visible;\\n\",\n       \"}\\n\",\n       \"div.cell.code_cell.rendered.selected .run_this_cell:hover {\\n\",\n       \" background-color: #212934;\\n\",\n       \" background: #212934;\\n\",\n       \" color: #008ebf !important;\\n\",\n       \"}\\n\",\n       \"div.cell.code_cell.rendered.unselected .run_this_cell:hover {\\n\",\n       \" background-color: #212934;\\n\",\n       \" background: #212934;\\n\",\n       \" color: #008ebf !important;\\n\",\n       \"}\\n\",\n       \"i.fa-step-forward.fa {\\n\",\n       \" display: inline-block;\\n\",\n       \" font: normal normal normal 9px \\\"FontAwesome\\\";\\n\",\n       \"}\\n\",\n       \".fa-step-forward:before {\\n\",\n       \" content: \\\"\\\\f04b\\\";\\n\",\n       \"}\\n\",\n       \"div.cell.selected.jupyter-soft-selected .run_this_cell,\\n\",\n       \"div.cell.selected.jupyter-soft-selected .run_this_cell:hover,\\n\",\n       \"div.cell.unselected.jupyter-soft-selected .run_this_cell:hover,\\n\",\n       \"div.cell.code_cell.rendered.selected.jupyter-soft-selected .run_this_cell:hover,\\n\",\n       \"div.cell.code_cell.rendered.unselected.jupyter-soft-selected .run_this_cell:hover {\\n\",\n       \" background-color: #005573 !important;\\n\",\n       \" background: #005573 !important;\\n\",\n       \" color: #005573 !important;\\n\",\n       \"}\\n\",\n       \"div.output_wrapper {\\n\",\n       \" background-color: #323a48;\\n\",\n       \" border: 0px;\\n\",\n       \" left: 0px;\\n\",\n       \" margin-bottom: 0em;\\n\",\n       \" margin-top: 0em;\\n\",\n       \" border-top-right-radius: 0px;\\n\",\n       \" border-top-left-radius: 0px;\\n\",\n       \"}\\n\",\n       \"div.output_subarea.output_text.output_stream.output_stdout,\\n\",\n       \"div.output_subarea.output_text {\\n\",\n       \" font-family: monospace, monospace;\\n\",\n       \" font-size: 8.5pt !important;\\n\",\n       \" line-height: 150% !important;\\n\",\n       \" background-color: #323a48;\\n\",\n       \" color: #b4bcde;\\n\",\n       \" border-top-right-radius: 0px;\\n\",\n       \" border-top-left-radius: 0px;\\n\",\n       \" margin-left: 11.5px;\\n\",\n       \"}\\n\",\n       \"div.output_area pre {\\n\",\n       \" font-family: monospace, monospace;\\n\",\n       \" font-size: 8.5pt !important;\\n\",\n       \" line-height: 151% !important;\\n\",\n       \" color: #b4bcde;\\n\",\n       \" border-top-right-radius: 0px;\\n\",\n       \" border-top-left-radius: 0px;\\n\",\n       \"}\\n\",\n       \"div.output_area {\\n\",\n       \" display: -webkit-box;\\n\",\n       \"}\\n\",\n       \"div.output_html {\\n\",\n       \" font-family: monospace, monospace;\\n\",\n       \" font-size: 8.5pt;\\n\",\n       \" color: #e2e5f2;\\n\",\n       \" background-color: #323a48;\\n\",\n       \" background: #323a48;\\n\",\n       \"}\\n\",\n       \"div.output_subarea {\\n\",\n       \" overflow-x: auto;\\n\",\n       \" padding: 1.2em !important;\\n\",\n       \" -webkit-box-flex: 1;\\n\",\n       \" -moz-box-flex: 1;\\n\",\n       \" box-flex: 1;\\n\",\n       \" flex: 1;\\n\",\n       \"}\\n\",\n       \"div.btn.btn-default.output_collapsed {\\n\",\n       \" background: #1b1f26;\\n\",\n       \" background-color: #1b1f26;\\n\",\n       \" border-color: #1b1f26;\\n\",\n       \"}\\n\",\n       \"div.btn.btn-default.output_collapsed:hover {\\n\",\n       \" background: #161a20;\\n\",\n       \" background-color: #161a20;\\n\",\n       \" border-color: #161a20;\\n\",\n       \"}\\n\",\n       \"div.prompt.output_prompt {\\n\",\n       \" font-family: monospace, monospace;\\n\",\n       \" font-weight: bold !important;\\n\",\n       \" background-color: #323a48;\\n\",\n       \" color: transparent;\\n\",\n       \" border-bottom-left-radius: 4px;\\n\",\n       \" border-top-right-radius: 0px;\\n\",\n       \" border-top-left-radius: 0px;\\n\",\n       \" border-bottom-right-radius: 0px;\\n\",\n       \" min-width: 11.5ex !important;\\n\",\n       \" width: 11.5ex !important;\\n\",\n       \" border-right: 2px solid transparent;\\n\",\n       \"}\\n\",\n       \"div.out_prompt_overlay.prompt {\\n\",\n       \" font-family: monospace, monospace;\\n\",\n       \" font-weight: bold !important;\\n\",\n       \" background-color: #323a48;\\n\",\n       \" border-bottom-left-radius: 2px;\\n\",\n       \" border-top-right-radius: 0px;\\n\",\n       \" border-top-left-radius: 0px;\\n\",\n       \" border-bottom-right-radius: 0px;\\n\",\n       \" min-width: 11.5ex !important;\\n\",\n       \" width: 11.5ex !important;\\n\",\n       \" border-right: 2px solid transparent;\\n\",\n       \" color: transparent;\\n\",\n       \"}\\n\",\n       \"div.out_prompt_overlay.prompt:hover {\\n\",\n       \" background-color: #374556;\\n\",\n       \" box-shadow: none !important;\\n\",\n       \" border: none;\\n\",\n       \" border-bottom-left-radius: 2px;\\n\",\n       \" -webkit-border-: 2px;\\n\",\n       \" -moz-border-radius: 2px;\\n\",\n       \" border-top-right-radius: 0px;\\n\",\n       \" border-top-left-radius: 0px;\\n\",\n       \" min-width: 11.5ex !important;\\n\",\n       \" width: 11.5ex !important;\\n\",\n       \" border-right: 2px solid #374556 !important;\\n\",\n       \"}\\n\",\n       \"div.cell.code_cell .output_prompt {\\n\",\n       \" border-right: 2px solid transparent;\\n\",\n       \" color: transparent;\\n\",\n       \"}\\n\",\n       \"div.cell.selected .output_prompt,\\n\",\n       \"div.cell.selected .out_prompt_overlay.prompt {\\n\",\n       \" border-left: 5px solid #005573;\\n\",\n       \" border-right: 2px solid #323a48;\\n\",\n       \" border-radius: 0px !important;\\n\",\n       \"}\\n\",\n       \".edit_mode div.cell.selected .output_prompt,\\n\",\n       \".edit_mode div.cell.selected .out_prompt_overlay.prompt {\\n\",\n       \" border-left: 5px solid #005573;\\n\",\n       \" border-right: 2px solid #323a48;\\n\",\n       \" border-radius: 0px !important;\\n\",\n       \"}\\n\",\n       \"div.text_cell,\\n\",\n       \"div.text_cell_render pre,\\n\",\n       \"div.text_cell_render {\\n\",\n       \" font-family: sans-serif;\\n\",\n       \" font-size: 13pt;\\n\",\n       \" line-height: 130% !important;\\n\",\n       \" color: #b0bdd7;\\n\",\n       \" background: #293340;\\n\",\n       \" background-color: #293340;\\n\",\n       \" border-radius: 0px;\\n\",\n       \"}\\n\",\n       \"div .text_cell_render {\\n\",\n       \" padding: 0.4em 0.4em 0.4em 0.4em;\\n\",\n       \"}\\n\",\n       \"div.cell.text_cell .CodeMirror-lines {\\n\",\n       \" padding-top: .7em !important;\\n\",\n       \" padding-bottom: .4em !important;\\n\",\n       \" padding-left: .5em !important;\\n\",\n       \" padding-right: .5em !important;\\n\",\n       \" margin-top: .4em;\\n\",\n       \" margin-bottom: .3em;\\n\",\n       \"}\\n\",\n       \"div.cell.text_cell.unrendered div.input_area,\\n\",\n       \"div.cell.text_cell.rendered div.input_area {\\n\",\n       \" background-color: #293340;\\n\",\n       \" background: #293340;\\n\",\n       \" border: 0px;\\n\",\n       \" border-radius: 2px;\\n\",\n       \"}\\n\",\n       \"div.cell.text_cell .CodeMirror,\\n\",\n       \"div.cell.text_cell .CodeMirror pre {\\n\",\n       \" line-height: 170% !important;\\n\",\n       \"}\\n\",\n       \"div.cell.text_cell.rendered.selected {\\n\",\n       \" font-family: sans-serif;\\n\",\n       \" line-height: 170% !important;\\n\",\n       \" background: #293340;\\n\",\n       \" background-color: #293340;\\n\",\n       \" border-radius: 0px;\\n\",\n       \"}\\n\",\n       \"div.cell.text_cell.unrendered.selected {\\n\",\n       \" font-family: sans-serif;\\n\",\n       \" line-height: 170% !important;\\n\",\n       \" background: #293340;\\n\",\n       \" background-color: #293340;\\n\",\n       \" border-radius: 0px;\\n\",\n       \"}\\n\",\n       \"div.cell.text_cell.selected {\\n\",\n       \" font-family: sans-serif;\\n\",\n       \" line-height: 170% !important;\\n\",\n       \" background: #293340;\\n\",\n       \" background-color: #293340;\\n\",\n       \" border-radius: 0px;\\n\",\n       \"}\\n\",\n       \".edit_mode div.cell.text_cell.selected {\\n\",\n       \" font-family: sans-serif;\\n\",\n       \" line-height: 170% !important;\\n\",\n       \" background: #293340;\\n\",\n       \" background-color: #293340;\\n\",\n       \" border-radius: 0px;\\n\",\n       \"}\\n\",\n       \"div.text_cell.unrendered,\\n\",\n       \"div.text_cell.unrendered.selected,\\n\",\n       \"div.edit_mode div.text_cell.unrendered {\\n\",\n       \" font-family: sans-serif;\\n\",\n       \" line-height: 170% !important;\\n\",\n       \" background: #293340;\\n\",\n       \" background-color: #293340;\\n\",\n       \" border-radius: 0px;\\n\",\n       \"}\\n\",\n       \"div.cell.text_cell .prompt {\\n\",\n       \" border-right: 0;\\n\",\n       \" min-width: 11.5ex !important;\\n\",\n       \" width: 11.5ex !important;\\n\",\n       \"}\\n\",\n       \"div.cell.text_cell.rendered .prompt {\\n\",\n       \" font-family: monospace, monospace;\\n\",\n       \" font-size: 9.5pt !important;\\n\",\n       \" font-weight: normal;\\n\",\n       \" color: #546386 !important;\\n\",\n       \" text-align: right !important;\\n\",\n       \" min-width: 14.5ex !important;\\n\",\n       \" width: 14.5ex !important;\\n\",\n       \" background-color: #293340;\\n\",\n       \" border-right: 2px solid rgba(0,156,209,.5);\\n\",\n       \" border-left: 4px solid #293340;\\n\",\n       \"}\\n\",\n       \"div.cell.text_cell.unrendered .prompt {\\n\",\n       \" font-family: monospace, monospace;\\n\",\n       \" font-size: 9.5pt !important;\\n\",\n       \" font-weight: normal;\\n\",\n       \" color: #546386 !important;\\n\",\n       \" text-align: right !important;\\n\",\n       \" min-width: 14.5ex !important;\\n\",\n       \" width: 14.5ex !important;\\n\",\n       \" border-right: 2px solid rgba(0,156,209,.5);\\n\",\n       \" border-left: 4px solid #293340;\\n\",\n       \" background-color: #293340;\\n\",\n       \"}\\n\",\n       \"div.cell.text_cell.rendered .prompt {\\n\",\n       \" border-right: 2px solid rgba(0,156,209,.5);\\n\",\n       \"}\\n\",\n       \"div.cell.text_cell.rendered.selected .prompt {\\n\",\n       \" top: 0;\\n\",\n       \" border-left: 4px solid #0b98c8;\\n\",\n       \" border-right: 2px solid rgba(0,156,209,.5);\\n\",\n       \"}\\n\",\n       \"div.text_cell.unrendered.selected .prompt,\\n\",\n       \"div.text_cell.rendered.selected .prompt {\\n\",\n       \" top: 0;\\n\",\n       \" background: #293340;\\n\",\n       \" border-left: 4px solid #005573;\\n\",\n       \" border-right: 2px solid rgba(0,156,209,.5);\\n\",\n       \"}\\n\",\n       \"div.rendered_html code {\\n\",\n       \" font-family: monospace, monospace;\\n\",\n       \" font-size: 11pt;\\n\",\n       \" padding-top: 3px;\\n\",\n       \" padding-left: 2px;\\n\",\n       \" color: #cdd2e9;\\n\",\n       \" background: #252e3a;\\n\",\n       \" background-color: #252e3a;\\n\",\n       \"}\\n\",\n       \"pre,\\n\",\n       \"code,\\n\",\n       \"kbd,\\n\",\n       \"samp {\\n\",\n       \" white-space: pre-wrap;\\n\",\n       \"}\\n\",\n       \".well code,\\n\",\n       \"code {\\n\",\n       \" font-family: monospace, monospace;\\n\",\n       \" font-size: 11pt !important;\\n\",\n       \" line-height: 170% !important;\\n\",\n       \" color: #b0bdd7;\\n\",\n       \" background: #252e3a;\\n\",\n       \" background-color: #252e3a;\\n\",\n       \" border-color: #252e3a;\\n\",\n       \"}\\n\",\n       \"kbd {\\n\",\n       \" padding: 1px;\\n\",\n       \" font-size: 11pt;\\n\",\n       \" font-weight: 800;\\n\",\n       \" color: #cdd2e9;\\n\",\n       \" background-color: transparent !important;\\n\",\n       \" border: 0;\\n\",\n       \" box-shadow: none;\\n\",\n       \"}\\n\",\n       \"pre {\\n\",\n       \" display: block;\\n\",\n       \" padding: 8.5px;\\n\",\n       \" margin: 0 0 9px;\\n\",\n       \" font-size: 12.0pt;\\n\",\n       \" line-height: 1.42857143;\\n\",\n       \" color: #cdd2e9;\\n\",\n       \" background-color: #252e3a;\\n\",\n       \" border: 1px solid #252e3a;\\n\",\n       \" border-radius: 2px;\\n\",\n       \"}\\n\",\n       \"div.rendered_html {\\n\",\n       \" color: #b0bdd7;\\n\",\n       \"}\\n\",\n       \".rendered_html * + ul {\\n\",\n       \" margin-top: .4em;\\n\",\n       \" margin-bottom: .3em;\\n\",\n       \"}\\n\",\n       \".rendered_html * + p {\\n\",\n       \" margin-top: .5em;\\n\",\n       \" margin-bottom: .5em;\\n\",\n       \"}\\n\",\n       \"div.rendered_html pre {\\n\",\n       \" font-family: monospace, monospace;\\n\",\n       \" font-size: 11pt !important;\\n\",\n       \" line-height: 170% !important;\\n\",\n       \" color: #b0bdd7 !important;\\n\",\n       \" background: #252e3a;\\n\",\n       \" background-color: #252e3a;\\n\",\n       \" max-width: 80%;\\n\",\n       \" border-radius: 0px;\\n\",\n       \" border-left: 3px solid #252e3a;\\n\",\n       \" max-width: 80%;\\n\",\n       \" border-radius: 0px;\\n\",\n       \" padding-left: 5px;\\n\",\n       \" margin-left: 6px;\\n\",\n       \"}\\n\",\n       \"div.text_cell_render pre,\\n\",\n       \"div.text_cell_render code {\\n\",\n       \" font-family: monospace, monospace;\\n\",\n       \" font-size: 11pt !important;\\n\",\n       \" line-height: 170% !important;\\n\",\n       \" color: #b0bdd7;\\n\",\n       \" background: #1a2028;\\n\",\n       \" background-color: #1a2028;\\n\",\n       \" max-width: 80%;\\n\",\n       \" border-radius: 0px;\\n\",\n       \" border-left: none;\\n\",\n       \"}\\n\",\n       \"div.text_cell_render pre {\\n\",\n       \" border-left: 3px solid rgba(0,156,209,.5) !important;\\n\",\n       \" max-width: 80%;\\n\",\n       \" border-radius: 0px;\\n\",\n       \" padding-left: 5px;\\n\",\n       \" margin-left: 6px;\\n\",\n       \"}\\n\",\n       \"div.text_cell_render h1,\\n\",\n       \"div.rendered_html h1,\\n\",\n       \"div.text_cell_render h2,\\n\",\n       \"div.rendered_html h2,\\n\",\n       \"div.text_cell_render h3,\\n\",\n       \"div.rendered_html h3,\\n\",\n       \"div.text_cell_render h4,\\n\",\n       \"div.rendered_html h4,\\n\",\n       \"div.text_cell_render h5,\\n\",\n       \"div.rendered_html h5 {\\n\",\n       \" font-family: sans-serif;\\n\",\n       \" margin: 0.4em .2em .3em .2em !important;\\n\",\n       \"}\\n\",\n       \".rendered_html h1:first-child,\\n\",\n       \".rendered_html h2:first-child,\\n\",\n       \".rendered_html h3:first-child,\\n\",\n       \".rendered_html h4:first-child,\\n\",\n       \".rendered_html h5:first-child,\\n\",\n       \".rendered_html h6:first-child {\\n\",\n       \" margin-top: 0.2em !important;\\n\",\n       \" margin-bottom: 0.2em !important;\\n\",\n       \"}\\n\",\n       \".rendered_html h1,\\n\",\n       \".text_cell_render h1 {\\n\",\n       \" color: #0b98c8 !important;\\n\",\n       \" font-size: 200%;\\n\",\n       \" text-align: left;\\n\",\n       \" font-style: normal;\\n\",\n       \" font-weight: normal;\\n\",\n       \"}\\n\",\n       \".rendered_html h2,\\n\",\n       \".text_cell_render h2 {\\n\",\n       \" color: #0b98c8 !important;\\n\",\n       \" font-size: 170%;\\n\",\n       \" font-style: normal;\\n\",\n       \" font-weight: normal;\\n\",\n       \"}\\n\",\n       \".rendered_html h3,\\n\",\n       \".text_cell_render h3 {\\n\",\n       \" color: #0b98c8 !important;\\n\",\n       \" font-size: 140%;\\n\",\n       \" font-style: normal;\\n\",\n       \" font-weight: normal;\\n\",\n       \"}\\n\",\n       \".rendered_html h4,\\n\",\n       \".text_cell_render h4 {\\n\",\n       \" color: #0b98c8 !important;\\n\",\n       \" font-size: 110%;\\n\",\n       \" font-style: normal;\\n\",\n       \" font-weight: normal;\\n\",\n       \"}\\n\",\n       \".rendered_html h5,\\n\",\n       \".text_cell_render h5 {\\n\",\n       \" color: #0b98c8 !important;\\n\",\n       \" font-size: 100%;\\n\",\n       \" font-style: normal;\\n\",\n       \" font-weight: normal;\\n\",\n       \"}\\n\",\n       \"hr {\\n\",\n       \" margin-top: 8px;\\n\",\n       \" margin-bottom: 10px;\\n\",\n       \" border: 0;\\n\",\n       \" border-top: 1px solid #0b98c8;\\n\",\n       \"}\\n\",\n       \".rendered_html hr {\\n\",\n       \" color: #0b98c8;\\n\",\n       \" background-color: #0b98c8;\\n\",\n       \" margin-right: 2em;\\n\",\n       \"}\\n\",\n       \"#complete > select > option:hover {\\n\",\n       \" background: #323b48;\\n\",\n       \" background-color: #323b48;\\n\",\n       \"}\\n\",\n       \"div#_vivaldi-spatnav-focus-indicator._vivaldi-spatnav-focus-indicator {\\n\",\n       \" position: absolute;\\n\",\n       \" z-index: 9999999999;\\n\",\n       \" top: 0px;\\n\",\n       \" left: 0px;\\n\",\n       \" box-shadow: none;\\n\",\n       \" pointer-events: none;\\n\",\n       \" border-radius: 2px;\\n\",\n       \"}\\n\",\n       \".rendered_html tr,\\n\",\n       \".rendered_html th,\\n\",\n       \".rendered_html td {\\n\",\n       \" text-align: left;\\n\",\n       \" vertical-align: middle;\\n\",\n       \" padding: 0.42em 0.47em;\\n\",\n       \" line-height: normal;\\n\",\n       \" white-space: normal;\\n\",\n       \" max-width: none;\\n\",\n       \" border: none;\\n\",\n       \"}\\n\",\n       \".rendered_html td {\\n\",\n       \" font-family: sans-serif !important;\\n\",\n       \" font-size: 9.3pt;\\n\",\n       \"}\\n\",\n       \".rendered_html table {\\n\",\n       \" font-family: sans-serif !important;\\n\",\n       \" margin-left: 8px;\\n\",\n       \" margin-right: auto;\\n\",\n       \" border: none;\\n\",\n       \" border-collapse: collapse;\\n\",\n       \" border-spacing: 0;\\n\",\n       \" color: #e2e5f2;\\n\",\n       \" table-layout: fixed;\\n\",\n       \"}\\n\",\n       \".rendered_html thead {\\n\",\n       \" font-family: sans-serif !important;\\n\",\n       \" font-size: 10.3pt !important;\\n\",\n       \" background: #27313d;\\n\",\n       \" color: #bbc2e1;\\n\",\n       \" border-bottom: 1px solid #27313d;\\n\",\n       \" vertical-align: bottom;\\n\",\n       \"}\\n\",\n       \".rendered_html tbody tr:nth-child(odd) {\\n\",\n       \" background: #3f495a;\\n\",\n       \"}\\n\",\n       \".rendered_html tbody tr {\\n\",\n       \" background: #394251;\\n\",\n       \"}\\n\",\n       \".rendered_html tbody tr:hover:nth-child(odd) {\\n\",\n       \" background: #3d4757;\\n\",\n       \"}\\n\",\n       \".rendered_html tbody tr:hover {\\n\",\n       \" background: #373f4e;\\n\",\n       \"}\\n\",\n       \".rendered_html * + table {\\n\",\n       \" margin-top: .05em;\\n\",\n       \"}\\n\",\n       \"div.widget-area {\\n\",\n       \" background-color: #323a48;\\n\",\n       \" background: #323a48;\\n\",\n       \" color: #b4bcde;\\n\",\n       \"}\\n\",\n       \"div.widget-area a {\\n\",\n       \" font-family: sans-serif;\\n\",\n       \" font-size: 12.0pt;\\n\",\n       \" font-weight: normal;\\n\",\n       \" font-style: normal;\\n\",\n       \" color: #a2b0c7;\\n\",\n       \" text-shadow: none !important;\\n\",\n       \"}\\n\",\n       \"div.widget-area a:hover,\\n\",\n       \"div.widget-area a:focus {\\n\",\n       \" font-family: sans-serif;\\n\",\n       \" font-size: 12.0pt;\\n\",\n       \" font-weight: normal;\\n\",\n       \" font-style: normal;\\n\",\n       \" color: #dbe1ea;\\n\",\n       \" background: rgba(75,95,118,.30);\\n\",\n       \" background-color: rgba(75,95,118,.30);\\n\",\n       \" border-color: transparent;\\n\",\n       \" background-image: none;\\n\",\n       \" text-shadow: none !important;\\n\",\n       \"}\\n\",\n       \"div.widget_item.btn-group > button.btn.btn-default.widget-combo-btn,\\n\",\n       \"div.widget_item.btn-group > button.btn.btn-default.widget-combo-btn:hover {\\n\",\n       \" background: #232932;\\n\",\n       \" background-color: #232932;\\n\",\n       \" border: 2px solid #232932 !important;\\n\",\n       \" font-size: inherit;\\n\",\n       \" z-index: 0;\\n\",\n       \"}\\n\",\n       \"div.jupyter-widgets.widget-hprogress.widget-hbox {\\n\",\n       \" display: inline-table !important;\\n\",\n       \" width: 38% !important;\\n\",\n       \" margin-left: 10px;\\n\",\n       \"}\\n\",\n       \"div.jupyter-widgets.widget-hprogress.widget-hbox .widget-label,\\n\",\n       \"div.widget-hbox .widget-label,\\n\",\n       \".widget-hbox .widget-label,\\n\",\n       \".widget-inline-hbox .widget-label,\\n\",\n       \"div.widget-label {\\n\",\n       \" text-align: -webkit-auto !important;\\n\",\n       \" margin-left: 15px !important;\\n\",\n       \" max-width: 240px !important;\\n\",\n       \" min-width: 100px !important;\\n\",\n       \" vertical-align: text-top !important;\\n\",\n       \" color: #b4bcde !important;\\n\",\n       \" font-size: 14px !important;\\n\",\n       \"}\\n\",\n       \".widget-hprogress .progress {\\n\",\n       \" flex-grow: 1;\\n\",\n       \" height: 20px;\\n\",\n       \" margin-top: auto;\\n\",\n       \" margin-left: 12px;\\n\",\n       \" margin-bottom: auto;\\n\",\n       \" width: 300px;\\n\",\n       \"}\\n\",\n       \".progress {\\n\",\n       \" overflow: hidden;\\n\",\n       \" height: 22px;\\n\",\n       \" margin-bottom: 10px;\\n\",\n       \" padding-left: 10px;\\n\",\n       \" background-color: #4a5569 !important;\\n\",\n       \" border-radius: 2px;\\n\",\n       \" -webkit-box-shadow: none;\\n\",\n       \" box-shadow: none;\\n\",\n       \" z-index: 10;\\n\",\n       \"}\\n\",\n       \".progress-bar-danger {\\n\",\n       \" background-color: #e74c3c !important;\\n\",\n       \"}\\n\",\n       \".progress-bar-info {\\n\",\n       \" background-color: #3498db !important;\\n\",\n       \"}\\n\",\n       \".progress-bar-warning {\\n\",\n       \" background-color: #ff914d !important;\\n\",\n       \"}\\n\",\n       \".progress-bar-success {\\n\",\n       \" background-color: #83a83b !important;\\n\",\n       \"}\\n\",\n       \".widget-select select {\\n\",\n       \" margin-left: 12px;\\n\",\n       \"}\\n\",\n       \".rendered_html :link {\\n\",\n       \" font-family: sans-serif;\\n\",\n       \" font-size: 100%;\\n\",\n       \" color: #0b98c8;\\n\",\n       \" text-decoration: underline;\\n\",\n       \"}\\n\",\n       \".rendered_html :visited,\\n\",\n       \".rendered_html :visited:active,\\n\",\n       \".rendered_html :visited:focus {\\n\",\n       \" color: #12a3d6;\\n\",\n       \"}\\n\",\n       \".rendered_html :visited:hover,\\n\",\n       \".rendered_html :link:hover {\\n\",\n       \" font-family: sans-serif;\\n\",\n       \" font-size: 100%;\\n\",\n       \" color: #0080aa;\\n\",\n       \"}\\n\",\n       \"div.cell.text_cell a.anchor-link:link {\\n\",\n       \" font-size: inherit;\\n\",\n       \" text-decoration: none;\\n\",\n       \" padding: 0px 20px;\\n\",\n       \" visibility: none;\\n\",\n       \" color: rgba(0,0,0,.32);\\n\",\n       \"}\\n\",\n       \"div.cell.text_cell a.anchor-link:link:hover {\\n\",\n       \" font-size: inherit;\\n\",\n       \" color: #0dc1ff;\\n\",\n       \"}\\n\",\n       \".navbar-text {\\n\",\n       \" margin-top: 4px;\\n\",\n       \" margin-bottom: 0px;\\n\",\n       \"}\\n\",\n       \"#clusters > a {\\n\",\n       \" color: #51c0ef;\\n\",\n       \" text-decoration: underline;\\n\",\n       \" cursor: auto;\\n\",\n       \"}\\n\",\n       \"#clusters > a:hover {\\n\",\n       \" color: #4c8be2;\\n\",\n       \" text-decoration: underline;\\n\",\n       \" cursor: auto;\\n\",\n       \"}\\n\",\n       \"#nbextensions-configurator-container > div.row.container-fluid.nbext-selector > h3 {\\n\",\n       \" font-size: 17px;\\n\",\n       \" margin-top: 5px;\\n\",\n       \" margin-bottom: 8px;\\n\",\n       \" height: 24px;\\n\",\n       \" padding: 4px 0 4px 0;\\n\",\n       \"}\\n\",\n       \"div#nbextensions-configurator-container.container,\\n\",\n       \"#nbextensions-configurator-container.container {\\n\",\n       \" width: 100%;\\n\",\n       \" margin-right: auto;\\n\",\n       \" margin-left: auto;\\n\",\n       \"}\\n\",\n       \"div.nbext-selector > nav > .nav > li > a {\\n\",\n       \" font-family: sans-serif;\\n\",\n       \" font-size: 10.5pt;\\n\",\n       \" padding: 2px 5px;\\n\",\n       \"}\\n\",\n       \"div.nbext-selector > nav > .nav > li > a:hover {\\n\",\n       \" background: transparent;\\n\",\n       \"}\\n\",\n       \"div.nbext-selector > nav > .nav > li:hover {\\n\",\n       \" background-color: rgba(75,95,118,.30) !important;\\n\",\n       \" background: rgba(75,95,118,.30) !important;\\n\",\n       \"}\\n\",\n       \"div.nbext-selector > nav > .nav > li.active:hover {\\n\",\n       \" background: transparent !important;\\n\",\n       \" background-color: transparent !important;\\n\",\n       \"}\\n\",\n       \".nav-pills > li.active > a,\\n\",\n       \".nav-pills > li.active > a:active,\\n\",\n       \".nav-pills > li.active > a:hover,\\n\",\n       \".nav-pills > li.active > a:focus {\\n\",\n       \" color: #fefefe;\\n\",\n       \" background-color: rgba(75,95,118,.30) !important;\\n\",\n       \" background: rgba(75,95,118,.30) !important;\\n\",\n       \" -webkit-backface-visibility: hidden;\\n\",\n       \" -webkit-font-smoothing: subpixel-antialiased !important;\\n\",\n       \"}\\n\",\n       \"div.nbext-readme > .nbext-readme-contents > .rendered_html {\\n\",\n       \" font-family: sans-serif;\\n\",\n       \" font-size: 11.5pt;\\n\",\n       \" line-height: 145%;\\n\",\n       \" padding: 1em 1em;\\n\",\n       \" color: #b0bdd7;\\n\",\n       \" background-color: #293340;\\n\",\n       \" -webkit-box-shadow: none;\\n\",\n       \" -moz-box-shadow: none;\\n\",\n       \" box-shadow: none;\\n\",\n       \"}\\n\",\n       \".nbext-icon,\\n\",\n       \".nbext-desc,\\n\",\n       \".nbext-compat-div,\\n\",\n       \".nbext-enable-btns,\\n\",\n       \".nbext-params {\\n\",\n       \" margin-bottom: 8px;\\n\",\n       \" font-size: 11.5pt;\\n\",\n       \"}\\n\",\n       \"div.nbext-readme > .nbext-readme-contents {\\n\",\n       \" padding: 0;\\n\",\n       \" overflow-y: hidden;\\n\",\n       \"}\\n\",\n       \"div.nbext-readme > .nbext-readme-contents:not(:empty) {\\n\",\n       \" margin-top: 0.5em;\\n\",\n       \" margin-bottom: 2em;\\n\",\n       \" border: none;\\n\",\n       \" border-top-color: rgba(0,156,209,.3);\\n\",\n       \"}\\n\",\n       \".nbext-showhide-incompat {\\n\",\n       \" padding-bottom: 0.5em;\\n\",\n       \" color: #92a2bd;\\n\",\n       \" font-size: 10.5pt;\\n\",\n       \"}\\n\",\n       \".nbext-filter-menu.dropdown-menu > li > a:hover,\\n\",\n       \".nbext-filter-menu.dropdown-menu > li > a:focus,\\n\",\n       \".nbext-filter-menu.dropdown-menu > li > a.ui-state-focus {\\n\",\n       \" color: #dbe1ea !important;\\n\",\n       \" background-color: #323b48 !important;\\n\",\n       \" background: #323b48 !important;\\n\",\n       \" border-color: #323b48 !important;\\n\",\n       \"}\\n\",\n       \".nbext-filter-input-wrap > .nbext-filter-input-subwrap,\\n\",\n       \".nbext-filter-input-wrap > .nbext-filter-input-subwrap > input {\\n\",\n       \" border: none;\\n\",\n       \" outline: none;\\n\",\n       \" background-color: transparent;\\n\",\n       \" padding: 0;\\n\",\n       \" vertical-align: middle;\\n\",\n       \" margin-top: -2px;\\n\",\n       \"}\\n\",\n       \"span.rendered_html code {\\n\",\n       \" background-color: transparent;\\n\",\n       \" color: #a2b0c7;\\n\",\n       \"}\\n\",\n       \"#nbextensions-configurator-container > div.row.container-fluid.nbext-selector {\\n\",\n       \" padding-left: 0px;\\n\",\n       \" padding-right: 0px;\\n\",\n       \"}\\n\",\n       \".nbext-filter-menu {\\n\",\n       \" max-height: 55vh !important;\\n\",\n       \" overflow-y: auto;\\n\",\n       \" outline: none;\\n\",\n       \" border: none;\\n\",\n       \"}\\n\",\n       \".nbext-filter-menu:hover {\\n\",\n       \" border: none;\\n\",\n       \"}\\n\",\n       \".alert-warning {\\n\",\n       \" background-color: #2d3846;\\n\",\n       \" border-color: #2d3846;\\n\",\n       \" color: #a2b0c7;\\n\",\n       \"}\\n\",\n       \".notification_widget.danger {\\n\",\n       \" color: #ffffff;\\n\",\n       \" background-color: #e74c3c;\\n\",\n       \" border-color: #e74c3c;\\n\",\n       \" padding-right: 5px;\\n\",\n       \"}\\n\",\n       \"#nbextensions-configurator-container > div.nbext-buttons.tree-buttons.no-padding.pull-right > span > button {\\n\",\n       \" border: none !important;\\n\",\n       \"}\\n\",\n       \"button#refresh_running_list {\\n\",\n       \" border: none !important;\\n\",\n       \"}\\n\",\n       \"mark,\\n\",\n       \".mark {\\n\",\n       \" background-color: #293340;\\n\",\n       \" color: #b0bdd7;\\n\",\n       \" padding: .15em;\\n\",\n       \"}\\n\",\n       \"a.text-warning,\\n\",\n       \"a.text-warning:hover {\\n\",\n       \" color: #546386;\\n\",\n       \"}\\n\",\n       \"a.text-warning.bg-warning {\\n\",\n       \" background-color: #1a2028;\\n\",\n       \"}\\n\",\n       \"span.bg-success.text-success {\\n\",\n       \" background-color: transparent;\\n\",\n       \" color: #48a667;\\n\",\n       \"}\\n\",\n       \"span.bg-danger.text-danger {\\n\",\n       \" background-color: #1a2028;\\n\",\n       \" color: #dc6972;\\n\",\n       \"}\\n\",\n       \".has-success .input-group-addon {\\n\",\n       \" color: #48a667;\\n\",\n       \" border-color: transparent;\\n\",\n       \" background: inherit;\\n\",\n       \" background-color: rgba(83,180,115,.10);\\n\",\n       \"}\\n\",\n       \".has-success .form-control {\\n\",\n       \" border-color: #48a667;\\n\",\n       \" -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.025);\\n\",\n       \" box-shadow: inset 0 1px 1px rgba(0,0,0,0.025);\\n\",\n       \"}\\n\",\n       \".has-error .input-group-addon {\\n\",\n       \" color: #dc6972;\\n\",\n       \" border-color: transparent;\\n\",\n       \" background: inherit;\\n\",\n       \" background-color: rgba(192,57,67,.10);\\n\",\n       \"}\\n\",\n       \".has-error .form-control {\\n\",\n       \" border-color: #dc6972;\\n\",\n       \" -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.025);\\n\",\n       \" box-shadow: inset 0 1px 1px rgba(0,0,0,0.025);\\n\",\n       \"}\\n\",\n       \".kse-input-group-pretty > kbd {\\n\",\n       \" font-family: monospace, monospace;\\n\",\n       \" color: #a2b0c7;\\n\",\n       \" font-weight: normal;\\n\",\n       \" background: transparent;\\n\",\n       \"}\\n\",\n       \".kse-input-group-pretty > kbd {\\n\",\n       \" font-family: monospace, monospace;\\n\",\n       \" color: #a2b0c7;\\n\",\n       \" font-weight: normal;\\n\",\n       \" background: transparent;\\n\",\n       \"}\\n\",\n       \"div.nbext-enable-btns .btn[disabled],\\n\",\n       \"div.nbext-enable-btns .btn[disabled]:hover,\\n\",\n       \".btn-default.disabled,\\n\",\n       \".btn-default[disabled] {\\n\",\n       \" background: #232c37;\\n\",\n       \" background-color: #232c37;\\n\",\n       \" color: #98a8c1;\\n\",\n       \"}\\n\",\n       \"label#Keyword-Filter {\\n\",\n       \" display: none;\\n\",\n       \"}\\n\",\n       \".input-group .nbext-list-btn-add,\\n\",\n       \".input-group-btn:last-child > .btn-group > .btn {\\n\",\n       \" background: #252b35;\\n\",\n       \" background-color: #252b35;\\n\",\n       \" border-color: #252b35;\\n\",\n       \" border: 2px solid #252b35;\\n\",\n       \"}\\n\",\n       \".input-group .nbext-list-btn-add:hover,\\n\",\n       \".input-group-btn:last-child > .btn-group > .btn:hover {\\n\",\n       \" background: #21262f;\\n\",\n       \" background-color: #21262f;\\n\",\n       \" border-color: #21262f;\\n\",\n       \" border: 2px solid #21262f;\\n\",\n       \"}\\n\",\n       \"#notebook-container > div.cell.code_cell.rendered.selected > div.widget-area > div.widget-subarea > div > div.widget_item.btn-group > button.btn.btn-default.dropdown-toggle.widget-combo-carrot-btn {\\n\",\n       \" background: #252b35;\\n\",\n       \" background-color: #252b35;\\n\",\n       \" border-color: #252b35;\\n\",\n       \"}\\n\",\n       \"#notebook-container > div.cell.code_cell.rendered.selected > div.widget-area > div.widget-subarea > div > div.widget_item.btn-group > button.btn.btn-default.dropdown-toggle.widget-combo-carrot-btn:hover {\\n\",\n       \" background: #21262f;\\n\",\n       \" background-color: #21262f;\\n\",\n       \" border-color: #21262f;\\n\",\n       \"}\\n\",\n       \".ui-widget-content {\\n\",\n       \" background: #252e3a;\\n\",\n       \" background-color: #252e3a;\\n\",\n       \" border: 2px solid #252e3a;\\n\",\n       \" color: #a2b0c7;\\n\",\n       \"}\\n\",\n       \"div.collapsible_headings_toggle {\\n\",\n       \" color: rgba(75,95,118,.55) !important;\\n\",\n       \"}\\n\",\n       \"div.collapsible_headings_toggle:hover {\\n\",\n       \" color: #0b98c8 !important;\\n\",\n       \"}\\n\",\n       \".collapsible_headings_toggle .h1,\\n\",\n       \".collapsible_headings_toggle .h2,\\n\",\n       \".collapsible_headings_toggle .h3,\\n\",\n       \".collapsible_headings_toggle .h4,\\n\",\n       \".collapsible_headings_toggle .h5,\\n\",\n       \".collapsible_headings_toggle .h6 {\\n\",\n       \" margin: 0.3em .4em 0em 0em !important;\\n\",\n       \" line-height: 1.2 !important;\\n\",\n       \"}\\n\",\n       \"div.collapsible_headings_toggle .fa-caret-down:before,\\n\",\n       \"div.collapsible_headings_toggle .fa-caret-right:before {\\n\",\n       \" font-size: xx-large;\\n\",\n       \" transition: transform 1000ms;\\n\",\n       \" transform: none !important;\\n\",\n       \"}\\n\",\n       \".collapsible_headings_collapsed.collapsible_headings_ellipsis .rendered_html h1:after,\\n\",\n       \".collapsible_headings_collapsed.collapsible_headings_ellipsis .rendered_html h2:after,\\n\",\n       \".collapsible_headings_collapsed.collapsible_headings_ellipsis .rendered_html h3:after,\\n\",\n       \".collapsible_headings_collapsed.collapsible_headings_ellipsis .rendered_html h4:after,\\n\",\n       \".collapsible_headings_collapsed.collapsible_headings_ellipsis .rendered_html h5:after,\\n\",\n       \".collapsible_headings_collapsed.collapsible_headings_ellipsis .rendered_html h6:after {\\n\",\n       \" position: absolute;\\n\",\n       \" right: 0;\\n\",\n       \" bottom: 20% !important;\\n\",\n       \" content: \\\"[\\\\002026]\\\";\\n\",\n       \" color: rgba(75,95,118,.55) !important;\\n\",\n       \" padding: 0.5em 0em 0em 0em !important;\\n\",\n       \"}\\n\",\n       \".collapsible_headings_ellipsis .rendered_html h1,\\n\",\n       \".collapsible_headings_ellipsis .rendered_html h2,\\n\",\n       \".collapsible_headings_ellipsis .rendered_html h3,\\n\",\n       \".collapsible_headings_ellipsis .rendered_html h4,\\n\",\n       \".collapsible_headings_ellipsis .rendered_html h5,\\n\",\n       \".collapsible_headings_ellipsis .rendered_html h6,\\n\",\n       \".collapsible_headings_toggle .fa {\\n\",\n       \" transition: transform 1000ms !important;\\n\",\n       \" -webkit-transform: inherit !important;\\n\",\n       \" -moz-transform: inherit !important;\\n\",\n       \" -ms-transform: inherit !important;\\n\",\n       \" -o-transform: inherit !important;\\n\",\n       \" transform: inherit !important;\\n\",\n       \" padding-right: 0px !important;\\n\",\n       \"}\\n\",\n       \"#toc-wrapper {\\n\",\n       \" z-index: 90;\\n\",\n       \" position: fixed !important;\\n\",\n       \" display: flex;\\n\",\n       \" flex-direction: column;\\n\",\n       \" overflow: hidden;\\n\",\n       \" padding: 10px;\\n\",\n       \" border-style: solid;\\n\",\n       \" border-width: thin;\\n\",\n       \" border-right-width: medium !important;\\n\",\n       \" background-color: #1a2028 !important;\\n\",\n       \"}\\n\",\n       \"#toc-wrapper.ui-draggable.ui-resizable.sidebar-wrapper {\\n\",\n       \" border-color: rgba(75,95,118,.30) !important;\\n\",\n       \"}\\n\",\n       \"#toc a,\\n\",\n       \"#navigate_menu a,\\n\",\n       \".toc {\\n\",\n       \" color: #a2b0c7 !important;\\n\",\n       \" font-size: 11pt !important;\\n\",\n       \"}\\n\",\n       \"#toc li > span:hover {\\n\",\n       \" background-color: #323b48 !important;\\n\",\n       \"}\\n\",\n       \"#toc a:hover,\\n\",\n       \"#navigate_menu a:hover,\\n\",\n       \".toc {\\n\",\n       \" color: #fefefe !important;\\n\",\n       \" font-size: 11pt !important;\\n\",\n       \"}\\n\",\n       \"#toc-wrapper .toc-item-num {\\n\",\n       \" color: #0b98c8 !important;\\n\",\n       \" font-size: 11pt !important;\\n\",\n       \"}\\n\",\n       \"input.raw_input {\\n\",\n       \" font-family: monospace, monospace;\\n\",\n       \" font-size: 11pt !important;\\n\",\n       \" color: #cdd2e9;\\n\",\n       \" background-color: #252e3a;\\n\",\n       \" border-color: #232c37;\\n\",\n       \" background: #232c37;\\n\",\n       \" width: auto;\\n\",\n       \" vertical-align: baseline;\\n\",\n       \" padding: 0em 0.25em;\\n\",\n       \" margin: 0em 0.25em;\\n\",\n       \" -webkit-box-shadow: none;\\n\",\n       \" box-shadow: none;\\n\",\n       \"}\\n\",\n       \"audio,\\n\",\n       \"video {\\n\",\n       \" display: inline;\\n\",\n       \" vertical-align: middle;\\n\",\n       \" align-content: center;\\n\",\n       \" margin-left: 20%;\\n\",\n       \"}\\n\",\n       \".cmd-palette .modal-body {\\n\",\n       \" padding: 0px;\\n\",\n       \" margin: 0px;\\n\",\n       \"}\\n\",\n       \".cmd-palette form {\\n\",\n       \" background: #293547;\\n\",\n       \" background-color: #293547;\\n\",\n       \"}\\n\",\n       \".typeahead-field input:last-child,\\n\",\n       \".typeahead-hint {\\n\",\n       \" background: #293547;\\n\",\n       \" background-color: #293547;\\n\",\n       \" z-index: 1;\\n\",\n       \"}\\n\",\n       \".typeahead-field input {\\n\",\n       \" font-family: sans-serif;\\n\",\n       \" color: #cdd2e9;\\n\",\n       \" border: none;\\n\",\n       \" font-size: 28pt;\\n\",\n       \" display: inline-block;\\n\",\n       \" line-height: inherit;\\n\",\n       \" padding: 3px 10px;\\n\",\n       \" height: 70px;\\n\",\n       \"}\\n\",\n       \".typeahead-select {\\n\",\n       \" background-color: #293547;\\n\",\n       \"}\\n\",\n       \"body > div.modal.cmd-palette.typeahead-field {\\n\",\n       \" display: table;\\n\",\n       \" border-collapse: separate;\\n\",\n       \" background-color: #2b3850;\\n\",\n       \"}\\n\",\n       \".typeahead-container button {\\n\",\n       \" font-family: sans-serif;\\n\",\n       \" font-size: 28pt;\\n\",\n       \" background-color: #252b35;\\n\",\n       \" border: none;\\n\",\n       \" display: inline-block;\\n\",\n       \" line-height: inherit;\\n\",\n       \" padding: 3px 10px;\\n\",\n       \" height: 70px;\\n\",\n       \"}\\n\",\n       \".typeahead-search-icon {\\n\",\n       \" min-width: 40px;\\n\",\n       \" min-height: 55px;\\n\",\n       \" display: block;\\n\",\n       \" vertical-align: middle;\\n\",\n       \" text-align: center;\\n\",\n       \"}\\n\",\n       \".typeahead-container button:focus,\\n\",\n       \".typeahead-container button:hover {\\n\",\n       \" color: #dbe1ea;\\n\",\n       \" background-color: #21262f;\\n\",\n       \" border-color: #293340;\\n\",\n       \"}\\n\",\n       \".typeahead-list > li.typeahead-group.active > a,\\n\",\n       \".typeahead-list > li.typeahead-group > a,\\n\",\n       \".typeahead-list > li.typeahead-group > a:focus,\\n\",\n       \".typeahead-list > li.typeahead-group > a:hover {\\n\",\n       \" display: none;\\n\",\n       \"}\\n\",\n       \".typeahead-dropdown > li > a,\\n\",\n       \".typeahead-list > li > a {\\n\",\n       \" color: #a2b0c7;\\n\",\n       \" text-decoration: none;\\n\",\n       \"}\\n\",\n       \".typeahead-dropdown,\\n\",\n       \".typeahead-list {\\n\",\n       \" font-family: sans-serif;\\n\",\n       \" font-size: 13pt;\\n\",\n       \" color: #a2b0c7;\\n\",\n       \" background-color: #202937;\\n\",\n       \" border: none;\\n\",\n       \" background-clip: padding-box;\\n\",\n       \" margin-top: 0px;\\n\",\n       \" padding: 3px 2px 3px 0px;\\n\",\n       \" line-height: 1.7;\\n\",\n       \"}\\n\",\n       \".typeahead-dropdown > li.active > a,\\n\",\n       \".typeahead-dropdown > li > a:focus,\\n\",\n       \".typeahead-dropdown > li > a:hover,\\n\",\n       \".typeahead-list > li.active > a,\\n\",\n       \".typeahead-list > li > a:focus,\\n\",\n       \".typeahead-list > li > a:hover {\\n\",\n       \" color: #dbe1ea;\\n\",\n       \" background-color: #2b3850;\\n\",\n       \" border-color: #2b3850;\\n\",\n       \"}\\n\",\n       \".command-shortcut:before {\\n\",\n       \" content: \\\"(command)\\\";\\n\",\n       \" padding-right: 3px;\\n\",\n       \" color: #546386;\\n\",\n       \"}\\n\",\n       \".edit-shortcut:before {\\n\",\n       \" content: \\\"(edit)\\\";\\n\",\n       \" padding-right: 3px;\\n\",\n       \" color: #546386;\\n\",\n       \"}\\n\",\n       \"ul.typeahead-list i {\\n\",\n       \" margin-left: 1px;\\n\",\n       \" width: 18px;\\n\",\n       \" margin-right: 10px;\\n\",\n       \"}\\n\",\n       \"ul.typeahead-list {\\n\",\n       \" max-height: 50vh;\\n\",\n       \" overflow: auto;\\n\",\n       \"}\\n\",\n       \".typeahead-list > li {\\n\",\n       \" position: relative;\\n\",\n       \" border: none;\\n\",\n       \"}\\n\",\n       \"div.input.typeahead-hint,\\n\",\n       \"input.typeahead-hint,\\n\",\n       \"body > div.modal.cmd-palette.in > div > div > div > form > div > div.typeahead-field > span.typeahead-query > input.typeahead-hint {\\n\",\n       \" color: #546386 !important;\\n\",\n       \" background-color: transparent;\\n\",\n       \" padding: 3px 10px;\\n\",\n       \"}\\n\",\n       \".typeahead-dropdown > li > a,\\n\",\n       \".typeahead-list > li > a {\\n\",\n       \" display: block;\\n\",\n       \" padding: 5px;\\n\",\n       \" clear: both;\\n\",\n       \" font-weight: 400;\\n\",\n       \" line-height: 1.7;\\n\",\n       \" border: 1px solid #202937;\\n\",\n       \" border-bottom-color: rgba(75,95,118,.55);\\n\",\n       \"}\\n\",\n       \"body > div.modal.cmd-palette.in > div {\\n\",\n       \" min-width: 750px;\\n\",\n       \" margin: 150px auto;\\n\",\n       \"}\\n\",\n       \".typeahead-container strong {\\n\",\n       \" font-weight: bolder;\\n\",\n       \" color: #0b98c8;\\n\",\n       \"}\\n\",\n       \"#find-and-replace #replace-preview .match,\\n\",\n       \"#find-and-replace #replace-preview .insert {\\n\",\n       \" color: #ffffff;\\n\",\n       \" background-color: #008ebf;\\n\",\n       \" border-color: #008ebf;\\n\",\n       \" border-style: solid;\\n\",\n       \" border-width: 1px;\\n\",\n       \" border-radius: 0px;\\n\",\n       \"}\\n\",\n       \"#find-and-replace #replace-preview .replace .match {\\n\",\n       \" background-color: #dc6972;\\n\",\n       \" border-color: #dc6972;\\n\",\n       \" border-radius: 0px;\\n\",\n       \"}\\n\",\n       \"#find-and-replace #replace-preview .replace .insert {\\n\",\n       \" background-color: #48a667;\\n\",\n       \" border-color: #48a667;\\n\",\n       \" border-radius: 0px;\\n\",\n       \"}\\n\",\n       \".jupyter-dashboard-menu-item.selected::before {\\n\",\n       \" font-family: 'FontAwesome' !important;\\n\",\n       \" content: '\\\\f00c' !important;\\n\",\n       \" position: absolute !important;\\n\",\n       \" color: #0b98c8 !important;\\n\",\n       \" left: 0px !important;\\n\",\n       \" top: 13px !important;\\n\",\n       \" font-size: 12px !important;\\n\",\n       \"}\\n\",\n       \".shortcut_key,\\n\",\n       \"span.shortcut_key {\\n\",\n       \" display: inline-block;\\n\",\n       \" width: 16ex;\\n\",\n       \" text-align: right;\\n\",\n       \" font-family: monospace;\\n\",\n       \"}\\n\",\n       \".jupyter-keybindings {\\n\",\n       \" padding: 1px;\\n\",\n       \" line-height: 24px;\\n\",\n       \" border-bottom: 1px solid rgba(75,95,118,.30);\\n\",\n       \"}\\n\",\n       \".jupyter-keybindings i {\\n\",\n       \" background: #252e3a;\\n\",\n       \" font-size: small;\\n\",\n       \" padding: 5px;\\n\",\n       \" margin-left: 7px;\\n\",\n       \"}\\n\",\n       \"div#short-key-bindings-intro.well,\\n\",\n       \".well {\\n\",\n       \" background-color: #252b35;\\n\",\n       \" border: 1px solid #252b35;\\n\",\n       \" color: #a2b0c7;\\n\",\n       \" border-radius: 2px;\\n\",\n       \" -webkit-box-shadow: none;\\n\",\n       \" box-shadow: none;\\n\",\n       \"}\\n\",\n       \"#texteditor-backdrop {\\n\",\n       \" background: #1a2028;\\n\",\n       \" background-color: #1a2028;\\n\",\n       \"}\\n\",\n       \"#texteditor-backdrop #texteditor-container .CodeMirror-gutter,\\n\",\n       \"#texteditor-backdrop #texteditor-container .CodeMirror-gutters {\\n\",\n       \" background: #334050;\\n\",\n       \" background-color: #334050;\\n\",\n       \" color: #546386;\\n\",\n       \"}\\n\",\n       \".edit_app #menubar .navbar {\\n\",\n       \" margin-bottom: 0px;\\n\",\n       \"}\\n\",\n       \"#texteditor-backdrop #texteditor-container {\\n\",\n       \" padding: 0px;\\n\",\n       \" background-color: #293340;\\n\",\n       \" box-shadow: none;\\n\",\n       \"}\\n\",\n       \".terminal-app {\\n\",\n       \" background: #1a2028;\\n\",\n       \"}\\n\",\n       \".terminal-app > #header {\\n\",\n       \" background: #1a2028;\\n\",\n       \"}\\n\",\n       \".terminal-app .terminal {\\n\",\n       \" font-family: monospace, monospace;\\n\",\n       \" font-size: 11pt;\\n\",\n       \" line-height: 170%;\\n\",\n       \" color: #cdd2e9;\\n\",\n       \" background: #293340;\\n\",\n       \" padding: 0.4em;\\n\",\n       \" border-radius: 2px;\\n\",\n       \" -webkit-box-shadow: none;\\n\",\n       \" box-shadow: none;\\n\",\n       \"}\\n\",\n       \".terminal .xterm-viewport {\\n\",\n       \" background-color: #293340;\\n\",\n       \" color: #cdd2e9;\\n\",\n       \" overflow-y: auto;\\n\",\n       \"}\\n\",\n       \".terminal .xterm-color-0 {\\n\",\n       \" color: #0b98c8;\\n\",\n       \"}\\n\",\n       \".terminal .xterm-color-1 {\\n\",\n       \" color: #e17e85;\\n\",\n       \"}\\n\",\n       \".terminal .xterm-color-2 {\\n\",\n       \" color: #4cb2ff;\\n\",\n       \"}\\n\",\n       \".terminal .xterm-color-3 {\\n\",\n       \" color: #e17e85;\\n\",\n       \"}\\n\",\n       \".terminal .xterm-color-4 {\\n\",\n       \" color: #51c0ef;\\n\",\n       \"}\\n\",\n       \".terminal .xterm-color-5 {\\n\",\n       \" color: #61ba86;\\n\",\n       \"}\\n\",\n       \".terminal .xterm-color-6 {\\n\",\n       \" color: #be86e3;\\n\",\n       \"}\\n\",\n       \".terminal .xterm-color-7 {\\n\",\n       \" color: #ffec8e;\\n\",\n       \"}\\n\",\n       \".terminal .xterm-color-8 {\\n\",\n       \" color: #51c0ef;\\n\",\n       \"}\\n\",\n       \".terminal .xterm-color-9 {\\n\",\n       \" color: #61ba86;\\n\",\n       \"}\\n\",\n       \".terminal .xterm-color-10 {\\n\",\n       \" color: #e17e85;\\n\",\n       \"}\\n\",\n       \".terminal .xterm-color-14 {\\n\",\n       \" color: #be86e3;\\n\",\n       \"}\\n\",\n       \".terminal .xterm-bg-color-15 {\\n\",\n       \" background-color: #293340;\\n\",\n       \"}\\n\",\n       \".terminal:not(.xterm-cursor-style-underline):not(.xterm-cursor-style-bar) .terminal-cursor {\\n\",\n       \" background-color: #0b98c8;\\n\",\n       \" color: #293340;\\n\",\n       \"}\\n\",\n       \".terminal:not(.focus) .terminal-cursor {\\n\",\n       \" outline: 1px solid #0b98c8;\\n\",\n       \" outline-offset: -1px;\\n\",\n       \"}\\n\",\n       \".celltoolbar {\\n\",\n       \" font-size: 100%;\\n\",\n       \" padding-top: 3px;\\n\",\n       \" border-color: transparent;\\n\",\n       \" border-bottom: thin solid rgba(0,156,209,.3);\\n\",\n       \" background: transparent;\\n\",\n       \"}\\n\",\n       \".cell-tag,\\n\",\n       \".tags-input input,\\n\",\n       \".tags-input button {\\n\",\n       \" color: #a2b0c7;\\n\",\n       \" background-color: #1a2028;\\n\",\n       \" background-image: none;\\n\",\n       \" border: 1px solid #a2b0c7;\\n\",\n       \" border-radius: 1px;\\n\",\n       \" box-shadow: none;\\n\",\n       \" width: inherit;\\n\",\n       \" font-size: inherit;\\n\",\n       \" height: 22px;\\n\",\n       \" line-height: 22px;\\n\",\n       \"}\\n\",\n       \"#notebook-container > div.cell.code_cell.rendered.selected > div.input > div.inner_cell > div.ctb_hideshow.ctb_show > div > div > button,\\n\",\n       \"#notebook-container > div.input > div.inner_cell > div.ctb_hideshow.ctb_show > div > div > button {\\n\",\n       \" font-size: 10pt;\\n\",\n       \" color: #a2b0c7;\\n\",\n       \" background-color: #1a2028;\\n\",\n       \" background-image: none;\\n\",\n       \" border: 1px solid #a2b0c7;\\n\",\n       \" border-radius: 1px;\\n\",\n       \" box-shadow: none;\\n\",\n       \" width: inherit;\\n\",\n       \" font-size: inherit;\\n\",\n       \" height: 22px;\\n\",\n       \" line-height: 22px;\\n\",\n       \"}\\n\",\n       \"div#pager #pager-contents {\\n\",\n       \" background: #1a2028 !important;\\n\",\n       \" background-color: #1a2028 !important;\\n\",\n       \"}\\n\",\n       \"div#pager pre {\\n\",\n       \" color: #cdd2e9 !important;\\n\",\n       \" background: #293340 !important;\\n\",\n       \" background-color: #293340 !important;\\n\",\n       \" padding: 0.4em;\\n\",\n       \"}\\n\",\n       \"div#pager .ui-resizable-handle {\\n\",\n       \" top: 0px;\\n\",\n       \" height: 8px;\\n\",\n       \" background: #0b98c8 !important;\\n\",\n       \" border-top: 1px solid #0b98c8;\\n\",\n       \" border-bottom: 1px solid #0b98c8;\\n\",\n       \"}\\n\",\n       \"div.CodeMirror,\\n\",\n       \"div.CodeMirror pre {\\n\",\n       \" font-family: monospace, monospace;\\n\",\n       \" font-size: 11pt;\\n\",\n       \" line-height: 170%;\\n\",\n       \" color: #cdd2e9;\\n\",\n       \"}\\n\",\n       \"div.CodeMirror-lines {\\n\",\n       \" padding-bottom: .9em;\\n\",\n       \" padding-left: .5em;\\n\",\n       \" padding-right: 1.5em;\\n\",\n       \" padding-top: .7em;\\n\",\n       \"}\\n\",\n       \"span.ansiblack,\\n\",\n       \".ansi-black-fg {\\n\",\n       \" color: #2b303b;\\n\",\n       \"}\\n\",\n       \"span.ansiblue,\\n\",\n       \".ansi-blue-fg,\\n\",\n       \".ansi-blue-intense-fg {\\n\",\n       \" color: #61afef;\\n\",\n       \"}\\n\",\n       \"span.ansigray,\\n\",\n       \".ansi-gray-fg,\\n\",\n       \".ansi-gray-intense-fg {\\n\",\n       \" color: #899ab8;\\n\",\n       \"}\\n\",\n       \"span.ansigreen,\\n\",\n       \".ansi-green-fg {\\n\",\n       \" color: #8fca9a;\\n\",\n       \"}\\n\",\n       \".ansi-green-intense-fg {\\n\",\n       \" color: #899ab8;\\n\",\n       \"}\\n\",\n       \"span.ansipurple,\\n\",\n       \".ansi-purple-fg,\\n\",\n       \".ansi-purple-intense-fg {\\n\",\n       \" color: #b399ef;\\n\",\n       \"}\\n\",\n       \"span.ansicyan,\\n\",\n       \".ansi-cyan-fg,\\n\",\n       \".ansi-cyan-intense-fg {\\n\",\n       \" color: #b399ef;\\n\",\n       \"}\\n\",\n       \"span.ansiyellow,\\n\",\n       \".ansi-yellow-fg,\\n\",\n       \".ansi-yellow-intense-fg {\\n\",\n       \" color: #ffec8e;\\n\",\n       \"}\\n\",\n       \"span.ansired,\\n\",\n       \".ansi-red-fg,\\n\",\n       \".ansi-red-intense-fg {\\n\",\n       \" color: #e07a7a;\\n\",\n       \"}\\n\",\n       \"div.output-stderr {\\n\",\n       \" background-color: #e07a7a;\\n\",\n       \"}\\n\",\n       \"div.output-stderr pre {\\n\",\n       \" color: #d0d4e6;\\n\",\n       \"}\\n\",\n       \"div.js-error {\\n\",\n       \" color: #e07a7a;\\n\",\n       \"}\\n\",\n       \".ipython_tooltip {\\n\",\n       \" font-family: monospace, monospace;\\n\",\n       \" font-size: 11pt;\\n\",\n       \" line-height: 170%;\\n\",\n       \" border: 2px solid #252c36;\\n\",\n       \" background: #363f4e;\\n\",\n       \" background-color: #363f4e;\\n\",\n       \" border-radius: 2px;\\n\",\n       \" overflow-x: visible;\\n\",\n       \" overflow-y: visible;\\n\",\n       \" box-shadow: none;\\n\",\n       \" position: absolute;\\n\",\n       \" z-index: 1000;\\n\",\n       \"}\\n\",\n       \".ipython_tooltip .tooltiptext pre {\\n\",\n       \" font-family: monospace, monospace;\\n\",\n       \" font-size: 11pt;\\n\",\n       \" line-height: 170%;\\n\",\n       \" background: #363f4e;\\n\",\n       \" background-color: #363f4e;\\n\",\n       \" color: #cdd2e9;\\n\",\n       \" overflow-x: visible;\\n\",\n       \" overflow-y: visible;\\n\",\n       \" max-width: 900px;\\n\",\n       \"}\\n\",\n       \"div#tooltip.ipython_tooltip {\\n\",\n       \" overflow-x: wrap;\\n\",\n       \" overflow-y: visible;\\n\",\n       \" max-width: 800px;\\n\",\n       \"}\\n\",\n       \"div.tooltiptext.bigtooltip {\\n\",\n       \" overflow-x: visible;\\n\",\n       \" overflow-y: scroll;\\n\",\n       \" height: 400px;\\n\",\n       \" max-width: 800px;\\n\",\n       \"}\\n\",\n       \".cm-s-ipython.CodeMirror {\\n\",\n       \" font-family: monospace, monospace;\\n\",\n       \" font-size: 11pt;\\n\",\n       \" background: #293340;\\n\",\n       \" color: #cdd2e9;\\n\",\n       \" border-radius: 2px;\\n\",\n       \" font-style: normal;\\n\",\n       \" font-weight: normal;\\n\",\n       \"}\\n\",\n       \".cm-s-ipython div.CodeMirror-selected {\\n\",\n       \" background: #334050;\\n\",\n       \"}\\n\",\n       \".CodeMirror-gutters {\\n\",\n       \" border: none;\\n\",\n       \" border-right: 1px solid #334050 !important;\\n\",\n       \" background-color: #334050 !important;\\n\",\n       \" background: #334050 !important;\\n\",\n       \" border-radius: 0px;\\n\",\n       \" white-space: nowrap;\\n\",\n       \"}\\n\",\n       \".cm-s-ipython .CodeMirror-gutters {\\n\",\n       \" background: #334050;\\n\",\n       \" border: none;\\n\",\n       \" border-radius: 0px;\\n\",\n       \" width: 36px;\\n\",\n       \"}\\n\",\n       \".cm-s-ipython .CodeMirror-linenumber {\\n\",\n       \" color: #546386;\\n\",\n       \"}\\n\",\n       \".CodeMirror-sizer {\\n\",\n       \" margin-left: 40px;\\n\",\n       \"}\\n\",\n       \".CodeMirror-linenumber,\\n\",\n       \"div.CodeMirror-linenumber,\\n\",\n       \".CodeMirror-gutter.CodeMirror-linenumberdiv.CodeMirror-gutter.CodeMirror-linenumber {\\n\",\n       \" padding-right: 1px;\\n\",\n       \" margin-left: 0px;\\n\",\n       \" margin: 0px;\\n\",\n       \" width: 26px !important;\\n\",\n       \" padding: 0px;\\n\",\n       \" text-align: right;\\n\",\n       \"}\\n\",\n       \".CodeMirror-linenumber {\\n\",\n       \" color: #546386;\\n\",\n       \"}\\n\",\n       \".cm-s-ipython .CodeMirror-cursor {\\n\",\n       \" border-left: 2px solid #0095ff !important;\\n\",\n       \"}\\n\",\n       \".cm-s-ipython span.cm-comment {\\n\",\n       \" color: #667fb1;\\n\",\n       \" font-style: italic;\\n\",\n       \"}\\n\",\n       \".cm-s-ipython span.cm-atom {\\n\",\n       \" color: #be86e3;\\n\",\n       \"}\\n\",\n       \".cm-s-ipython span.cm-number {\\n\",\n       \" color: #51c0ef;\\n\",\n       \"}\\n\",\n       \".cm-s-ipython span.cm-property {\\n\",\n       \" color: #cdd2e9;\\n\",\n       \"}\\n\",\n       \".cm-s-ipython span.cm-attribute {\\n\",\n       \" color: #cdd2e9;\\n\",\n       \"}\\n\",\n       \".cm-s-ipython span.cm-keyword {\\n\",\n       \" color: #4cb2ff;\\n\",\n       \" font-weight: normal;\\n\",\n       \"}\\n\",\n       \".cm-s-ipython span.cm-string {\\n\",\n       \" color: #61ba86;\\n\",\n       \"}\\n\",\n       \".cm-s-ipython span.cm-meta {\\n\",\n       \" color: #ffec8e;\\n\",\n       \"}\\n\",\n       \".cm-s-ipython span.cm-operator {\\n\",\n       \" color: #00b4ff;\\n\",\n       \"}\\n\",\n       \".cm-s-ipython span.cm-builtin {\\n\",\n       \" color: #e17e85;\\n\",\n       \"}\\n\",\n       \".cm-s-ipython span.cm-variable {\\n\",\n       \" color: #cdd2e9;\\n\",\n       \"}\\n\",\n       \".cm-s-ipython span.cm-variable-2 {\\n\",\n       \" color: #e17e85;\\n\",\n       \"}\\n\",\n       \".cm-s-ipython span.cm-variable-3 {\\n\",\n       \" color: #ffec8e;\\n\",\n       \"}\\n\",\n       \".cm-s-ipython span.cm-def {\\n\",\n       \" color: #ffec8e;\\n\",\n       \" font-weight: normal;\\n\",\n       \"}\\n\",\n       \".cm-s-ipython span.cm-error {\\n\",\n       \" background: rgba(191,97,106,.4);\\n\",\n       \"}\\n\",\n       \".cm-s-ipython span.cm-tag {\\n\",\n       \" color: #be86e3;\\n\",\n       \"}\\n\",\n       \".cm-s-ipython span.cm-link {\\n\",\n       \" color: #51c0ef;\\n\",\n       \"}\\n\",\n       \".cm-s-ipython span.cm-storage {\\n\",\n       \" color: #be86e3;\\n\",\n       \"}\\n\",\n       \".cm-s-ipython span.cm-entity {\\n\",\n       \" color: #be86e3;\\n\",\n       \"}\\n\",\n       \".cm-s-ipython span.cm-quote {\\n\",\n       \" color: #61ba86;\\n\",\n       \"}\\n\",\n       \"div.CodeMirror span.CodeMirror-matchingbracket {\\n\",\n       \" color: #ffffff;\\n\",\n       \" font-weight: bold;\\n\",\n       \" background-color: #4c8be2;\\n\",\n       \"}\\n\",\n       \"div.CodeMirror span.CodeMirror-nonmatchingbracket {\\n\",\n       \" color: #ffffff;\\n\",\n       \" font-weight: bold;\\n\",\n       \" background: rgba(191,97,106,.4) !important;\\n\",\n       \"}\\n\",\n       \".cm-header-1 {\\n\",\n       \" font-size: 215%;\\n\",\n       \"}\\n\",\n       \".cm-header-2 {\\n\",\n       \" font-size: 180%;\\n\",\n       \"}\\n\",\n       \".cm-header-3 {\\n\",\n       \" font-size: 150%;\\n\",\n       \"}\\n\",\n       \".cm-header-4 {\\n\",\n       \" font-size: 120%;\\n\",\n       \"}\\n\",\n       \".cm-header-5 {\\n\",\n       \" font-size: 100%;\\n\",\n       \"}\\n\",\n       \".cm-s-default .cm-hr {\\n\",\n       \" color: #00b4ff;\\n\",\n       \"}\\n\",\n       \"div.cell.text_cell .cm-s-default .cm-header {\\n\",\n       \" font-family: sans-serif;\\n\",\n       \" font-weight: normal;\\n\",\n       \" color: #0b98c8 !important;\\n\",\n       \" margin-top: 0.3em !important;\\n\",\n       \" margin-bottom: 0.3em !important;\\n\",\n       \"}\\n\",\n       \"div.cell.text_cell .cm-s-default span.cm-variable-2 {\\n\",\n       \" color: #b0bdd7 !important;\\n\",\n       \"}\\n\",\n       \"div.cell.text_cell .cm-s-default span.cm-variable-3 {\\n\",\n       \" color: #ffec8e !important;\\n\",\n       \"}\\n\",\n       \".cm-s-default span.cm-comment {\\n\",\n       \" color: #667fb1 !important;\\n\",\n       \"}\\n\",\n       \".cm-s-default .cm-tag {\\n\",\n       \" color: #8fb36a;\\n\",\n       \"}\\n\",\n       \".cm-s-default .cm-builtin {\\n\",\n       \" color: #e17e85;\\n\",\n       \"}\\n\",\n       \".cm-s-default .cm-string {\\n\",\n       \" color: #61ba86;\\n\",\n       \"}\\n\",\n       \".cm-s-default .cm-keyword {\\n\",\n       \" color: #4cb2ff;\\n\",\n       \"}\\n\",\n       \".cm-s-default .cm-number {\\n\",\n       \" color: #51c0ef;\\n\",\n       \"}\\n\",\n       \".cm-s-default .cm-error {\\n\",\n       \" color: #be86e3;\\n\",\n       \"}\\n\",\n       \".cm-s-default .cm-link {\\n\",\n       \" color: #51c0ef;\\n\",\n       \"}\\n\",\n       \".cm-s-default .cm-atom {\\n\",\n       \" color: #51c0ef;\\n\",\n       \"}\\n\",\n       \".cm-s-default .cm-def {\\n\",\n       \" color: #ffec8e;\\n\",\n       \"}\\n\",\n       \".CodeMirror-cursor {\\n\",\n       \" border-left: 2px solid #0095ff !important;\\n\",\n       \" border-right: none;\\n\",\n       \" width: 0;\\n\",\n       \"}\\n\",\n       \".cm-s-default div.CodeMirror-selected {\\n\",\n       \" background: #334050;\\n\",\n       \"}\\n\",\n       \".cm-s-default .cm-selected {\\n\",\n       \" background: #334050;\\n\",\n       \"}\\n\",\n       \".MathJax_Display,\\n\",\n       \".MathJax {\\n\",\n       \" border: 0 !important;\\n\",\n       \" font-size: 100% !important;\\n\",\n       \" text-align: center !important;\\n\",\n       \" margin: 0em !important;\\n\",\n       \" line-height: 2.25 !important;\\n\",\n       \"}\\n\",\n       \".MathJax:focus,\\n\",\n       \"body :focus .MathJax {\\n\",\n       \" display: inline-block !important;\\n\",\n       \"}\\n\",\n       \".MathJax:focus,\\n\",\n       \"body :focus .MathJax {\\n\",\n       \" display: inline-block !important;\\n\",\n       \"}\\n\",\n       \".completions {\\n\",\n       \" position: absolute;\\n\",\n       \" z-index: 110;\\n\",\n       \" overflow: hidden;\\n\",\n       \" border: medium solid rgba(0,156,209,.5);\\n\",\n       \" box-shadow: none;\\n\",\n       \" line-height: 1;\\n\",\n       \"}\\n\",\n       \".completions select {\\n\",\n       \" background: #293340;\\n\",\n       \" background-color: #293340;\\n\",\n       \" outline: none;\\n\",\n       \" border: none;\\n\",\n       \" padding: 0px;\\n\",\n       \" margin: 0px;\\n\",\n       \" margin-left: 2px;\\n\",\n       \" overflow: auto;\\n\",\n       \" font-family: monospace, monospace;\\n\",\n       \" font-size: 11pt;\\n\",\n       \" color: #cdd2e9;\\n\",\n       \" width: auto;\\n\",\n       \"}\\n\",\n       \"div#maintoolbar {\\n\",\n       \" display: none !important;\\n\",\n       \"}\\n\",\n       \"#header-container {\\n\",\n       \" display: none !important;\\n\",\n       \"}\\n\",\n       \"\\n\",\n       \"<script>\\n\",\n       \"    MathJax.Hub.Config({\\n\",\n       \"        \\\"HTML-CSS\\\": {\\n\",\n       \"            /*preferredFont: \\\"TeX\\\",*/\\n\",\n       \"            /*availableFonts: [\\\"TeX\\\", \\\"STIX\\\"],*/\\n\",\n       \"            styles: {\\n\",\n       \"                scale: 100,\\n\",\n       \"                \\\".MathJax_Display\\\": {\\n\",\n       \"                    \\\"font-size\\\": \\\"100%\\\",\\n\",\n       \"                }\\n\",\n       \"            }\\n\",\n       \"        }\\n\",\n       \"    });\\n\",\n       \"</script>\\n\",\n       \"     </style>\"\n      ],\n      \"text/plain\": [\n       \"<IPython.core.display.HTML object>\"\n      ]\n     },\n     \"execution_count\": 7,\n     \"metadata\": {},\n     \"output_type\": \"execute_result\"\n    }\n   ],\n   \"source\": [\n    \"from jupyterthemes.stylefx import set_nb_theme\\n\",\n    \"set_nb_theme('chesterish')\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"id\": \"8c2a24cb\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import os\\n\",\n    \"os.environ[\\\"CUDA_DEVICE_ORDER\\\"]=\\\"PCI_BUS_ID\\\"\\n\",\n    \"os.environ[\\\"CUDA_VISIBLE_DEVICES\\\"]=\\\"0\\\"\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"id\": \"f45eb6b0\",\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"/home/mrbean/.conda/envs/whisper_lightning/lib/python3.10/site-packages/tqdm/auto.py:22: TqdmWarning: IProgress not found. Please update jupyter and ipywidgets. See https://ipywidgets.readthedocs.io/en/stable/user_install.html\\n\",\n      \"  from .autonotebook import tqdm as notebook_tqdm\\n\",\n      \"2023-02-21 15:40:52.888700: I tensorflow/core/platform/cpu_feature_guard.cc:193] This TensorFlow binary is optimized with oneAPI Deep Neural Network Library (oneDNN) to use the following CPU instructions in performance-critical operations:  AVX2 FMA\\n\",\n      \"To enable them in other operations, rebuild TensorFlow with the appropriate compiler flags.\\n\",\n      \"2023-02-21 15:40:53.473104: W tensorflow/compiler/xla/stream_executor/platform/default/dso_loader.cc:64] Could not load dynamic library 'libnvinfer.so.7'; dlerror: libnvinfer.so.7: cannot open shared object file: No such file or directory\\n\",\n      \"2023-02-21 15:40:53.473149: W tensorflow/compiler/xla/stream_executor/platform/default/dso_loader.cc:64] Could not load dynamic library 'libnvinfer_plugin.so.7'; dlerror: libnvinfer_plugin.so.7: cannot open shared object file: No such file or directory\\n\",\n      \"2023-02-21 15:40:53.473154: W tensorflow/compiler/tf2tensorrt/utils/py_utils.cc:38] TF-TRT Warning: Cannot dlopen some TensorRT libraries. If you would like to use Nvidia GPU with TensorRT, please make sure the missing libraries mentioned above are installed properly.\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"import numpy as np\\n\",\n    \"import torch\\n\",\n    \"\\n\",\n    \"import datasets \\n\",\n    \"\\n\",\n    \"from datasets import load_dataset, load_metric\\n\",\n    \"\\n\",\n    \"from transformers import (\\n\",\n    \"    AutoModel,\\n\",\n    \"    AutoModelForMaskedLM,\\n\",\n    \"    AutoModelForSeq2SeqLM,\\n\",\n    \"    AutoModelForTokenClassification,\\n\",\n    \"    AutoTokenizer,\\n\",\n    \"    DataCollatorForSeq2Seq,\\n\",\n    \"    pipeline,\\n\",\n    \"    Seq2SeqTrainingArguments,\\n\",\n    \"    Seq2SeqTrainer,\\n\",\n    \")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"id\": \"7fc4eb40\",\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"/home/mrbean/.conda/envs/whisper_lightning/lib/python3.10/site-packages/transformers/models/t5/tokenization_t5_fast.py:155: FutureWarning: This tokenizer was incorrectly instantiated with a model max length of 512 which will be corrected in Transformers v5.\\n\",\n      \"For now, this behavior is kept to avoid breaking backwards compatibility when padding/encoding with `truncation is True`.\\n\",\n      \"- Be aware that you SHOULD NOT rely on t5-small automatically truncating your input to 512 when padding/encoding.\\n\",\n      \"- If you want to encode/pad to sequences longer than 512 you can either instantiate this tokenizer with `model_max_length` or pass `max_length` when encoding/padding.\\n\",\n      \"- To avoid this warning, please instantiate this tokenizer with `model_max_length` set to your preferred value.\\n\",\n      \"  warnings.warn(\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"# Load the pre-trained model and tokenizer\\n\",\n    \"model_name = \\\"t5-small\\\"\\n\",\n    \"tokenizer = AutoTokenizer.from_pretrained(model_name)\\n\",\n    \"model = AutoModelForSeq2SeqLM.from_pretrained(model_name)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 5,\n   \"id\": \"363045f5\",\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Found cached dataset cnn_dailymail (/home/mrbean/.cache/huggingface/datasets/cnn_dailymail/3.0.0/3.0.0/1b3c71476f6d152c31c1730e83ccb08bcf23e348233f4fcc11e182248e6bf7de)\\n\",\n      \"Found cached dataset cnn_dailymail (/home/mrbean/.cache/huggingface/datasets/cnn_dailymail/3.0.0/3.0.0/1b3c71476f6d152c31c1730e83ccb08bcf23e348233f4fcc11e182248e6bf7de)\\n\",\n      \"100%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 1122/1122 [02:06<00:00,  8.88ba/s]\\n\",\n      \"Loading cached processed dataset at /home/mrbean/.cache/huggingface/datasets/cnn_dailymail/3.0.0/3.0.0/1b3c71476f6d152c31c1730e83ccb08bcf23e348233f4fcc11e182248e6bf7de/cache-2d3b7edd75fb1188.arrow\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"def preprocess_function(batch):\\n\",\n    \"    inputs = tokenizer(batch[\\\"article\\\"], padding=\\\"max_length\\\", truncation=True, max_length=512)\\n\",\n    \"    outputs = tokenizer(batch[\\\"highlights\\\"], padding=\\\"max_length\\\", truncation=True, max_length=128)\\n\",\n    \"    batch[\\\"input_ids\\\"] = inputs.input_ids\\n\",\n    \"    batch[\\\"attention_mask\\\"] = inputs.attention_mask\\n\",\n    \"    batch[\\\"labels\\\"] = outputs.input_ids.copy()\\n\",\n    \"    return batch\\n\",\n    \"\\n\",\n    \"# Load the dataset\\n\",\n    \"train_data = load_dataset(\\\"cnn_dailymail\\\", \\\"3.0.0\\\", split=\\\"train\\\")\\n\",\n    \"val_data = load_dataset(\\\"cnn_dailymail\\\", \\\"3.0.0\\\", split=\\\"validation[:10%]\\\")\\n\",\n    \"\\n\",\n    \"train_ds = train_data.map(\\n\",\n    \"    preprocess_function, \\n\",\n    \"    batched=True, \\n\",\n    \"    batch_size=256, \\n\",\n    \"    remove_columns=[\\\"article\\\", \\\"highlights\\\", \\\"id\\\"]\\n\",\n    \")\\n\",\n    \"\\n\",\n    \"val_ds = val_data.map(\\n\",\n    \"    preprocess_function, \\n\",\n    \"    batched=True, \\n\",\n    \"    batch_size=256, \\n\",\n    \"    remove_columns=[\\\"article\\\", \\\"highlights\\\", \\\"id\\\"]\\n\",\n    \")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 6,\n   \"id\": \"6faa8c86\",\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"/tmp/ipykernel_478601/1088570042.py:23: FutureWarning: load_metric is deprecated and will be removed in the next major version of datasets. Use 'evaluate.load' instead, from the new library 🤗 Evaluate: https://huggingface.co/docs/evaluate\\n\",\n      \"  metric = load_metric(\\\"rouge\\\")\\n\",\n      \"max_steps is given, it will override any value given in num_train_epochs\\n\",\n      \"Using cuda_amp half precision backend\\n\",\n      \"The following columns in the training set don't have a corresponding argument in `T5ForConditionalGeneration.forward` and have been ignored: id, article, highlights. If id, article, highlights are not expected by `T5ForConditionalGeneration.forward`,  you can safely ignore this message.\\n\",\n      \"/home/mrbean/.conda/envs/whisper_lightning/lib/python3.10/site-packages/transformers/optimization.py:306: FutureWarning: This implementation of AdamW is deprecated and will be removed in a future version. Use the PyTorch implementation torch.optim.AdamW instead, or set `no_deprecation_warning=True` to disable this warning\\n\",\n      \"  warnings.warn(\\n\",\n      \"***** Running training *****\\n\",\n      \"  Num examples = 0\\n\",\n      \"  Num Epochs = 1\\n\",\n      \"  Instantaneous batch size per device = 16\\n\",\n      \"  Total train batch size (w. parallel, distributed & accumulation) = 16\\n\",\n      \"  Gradient Accumulation steps = 1\\n\",\n      \"  Total optimization steps = 5000\\n\",\n      \"  Number of trainable parameters = 60506624\\n\"\n     ]\n    },\n    {\n     \"ename\": \"IndexError\",\n     \"evalue\": \"Invalid key: 90427 is out of bounds for size 0\",\n     \"output_type\": \"error\",\n     \"traceback\": [\n      \"\\u001b[0;31m---------------------------------------------------------------------------\\u001b[0m\",\n      \"\\u001b[0;31mIndexError\\u001b[0m                                Traceback (most recent call last)\",\n      \"Cell \\u001b[0;32mIn[6], line 47\\u001b[0m\\n\\u001b[1;32m     36\\u001b[0m trainer \\u001b[38;5;241m=\\u001b[39m Seq2SeqTrainer(\\n\\u001b[1;32m     37\\u001b[0m     model\\u001b[38;5;241m=\\u001b[39mmodel,\\n\\u001b[1;32m     38\\u001b[0m     args\\u001b[38;5;241m=\\u001b[39mtraining_args,\\n\\u001b[0;32m   (...)\\u001b[0m\\n\\u001b[1;32m     43\\u001b[0m     compute_metrics\\u001b[38;5;241m=\\u001b[39mcompute_metrics,\\n\\u001b[1;32m     44\\u001b[0m )\\n\\u001b[1;32m     46\\u001b[0m \\u001b[38;5;66;03m# Start the training\\u001b[39;00m\\n\\u001b[0;32m---> 47\\u001b[0m \\u001b[43mtrainer\\u001b[49m\\u001b[38;5;241;43m.\\u001b[39;49m\\u001b[43mtrain\\u001b[49m\\u001b[43m(\\u001b[49m\\u001b[43m)\\u001b[49m\\n\",\n      \"File \\u001b[0;32m~/.conda/envs/whisper_lightning/lib/python3.10/site-packages/transformers/trainer.py:1539\\u001b[0m, in \\u001b[0;36mTrainer.train\\u001b[0;34m(self, resume_from_checkpoint, trial, ignore_keys_for_eval, **kwargs)\\u001b[0m\\n\\u001b[1;32m   1534\\u001b[0m     \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39mmodel_wrapped \\u001b[38;5;241m=\\u001b[39m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39mmodel\\n\\u001b[1;32m   1536\\u001b[0m inner_training_loop \\u001b[38;5;241m=\\u001b[39m find_executable_batch_size(\\n\\u001b[1;32m   1537\\u001b[0m     \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39m_inner_training_loop, \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39m_train_batch_size, args\\u001b[38;5;241m.\\u001b[39mauto_find_batch_size\\n\\u001b[1;32m   1538\\u001b[0m )\\n\\u001b[0;32m-> 1539\\u001b[0m \\u001b[38;5;28;01mreturn\\u001b[39;00m \\u001b[43minner_training_loop\\u001b[49m\\u001b[43m(\\u001b[49m\\n\\u001b[1;32m   1540\\u001b[0m \\u001b[43m    \\u001b[49m\\u001b[43margs\\u001b[49m\\u001b[38;5;241;43m=\\u001b[39;49m\\u001b[43margs\\u001b[49m\\u001b[43m,\\u001b[49m\\n\\u001b[1;32m   1541\\u001b[0m \\u001b[43m    \\u001b[49m\\u001b[43mresume_from_checkpoint\\u001b[49m\\u001b[38;5;241;43m=\\u001b[39;49m\\u001b[43mresume_from_checkpoint\\u001b[49m\\u001b[43m,\\u001b[49m\\n\\u001b[1;32m   1542\\u001b[0m \\u001b[43m    \\u001b[49m\\u001b[43mtrial\\u001b[49m\\u001b[38;5;241;43m=\\u001b[39;49m\\u001b[43mtrial\\u001b[49m\\u001b[43m,\\u001b[49m\\n\\u001b[1;32m   1543\\u001b[0m \\u001b[43m    \\u001b[49m\\u001b[43mignore_keys_for_eval\\u001b[49m\\u001b[38;5;241;43m=\\u001b[39;49m\\u001b[43mignore_keys_for_eval\\u001b[49m\\u001b[43m,\\u001b[49m\\n\\u001b[1;32m   1544\\u001b[0m \\u001b[43m\\u001b[49m\\u001b[43m)\\u001b[49m\\n\",\n      \"File \\u001b[0;32m~/.conda/envs/whisper_lightning/lib/python3.10/site-packages/transformers/trainer.py:1761\\u001b[0m, in \\u001b[0;36mTrainer._inner_training_loop\\u001b[0;34m(self, batch_size, args, resume_from_checkpoint, trial, ignore_keys_for_eval)\\u001b[0m\\n\\u001b[1;32m   1758\\u001b[0m     \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39m_load_rng_state(resume_from_checkpoint)\\n\\u001b[1;32m   1760\\u001b[0m step \\u001b[38;5;241m=\\u001b[39m \\u001b[38;5;241m-\\u001b[39m\\u001b[38;5;241m1\\u001b[39m\\n\\u001b[0;32m-> 1761\\u001b[0m \\u001b[38;5;28;01mfor\\u001b[39;00m step, inputs \\u001b[38;5;129;01min\\u001b[39;00m \\u001b[38;5;28menumerate\\u001b[39m(epoch_iterator):\\n\\u001b[1;32m   1762\\u001b[0m \\n\\u001b[1;32m   1763\\u001b[0m     \\u001b[38;5;66;03m# Skip past any already trained steps if resuming training\\u001b[39;00m\\n\\u001b[1;32m   1764\\u001b[0m     \\u001b[38;5;28;01mif\\u001b[39;00m steps_trained_in_current_epoch \\u001b[38;5;241m>\\u001b[39m \\u001b[38;5;241m0\\u001b[39m:\\n\\u001b[1;32m   1765\\u001b[0m         steps_trained_in_current_epoch \\u001b[38;5;241m-\\u001b[39m\\u001b[38;5;241m=\\u001b[39m \\u001b[38;5;241m1\\u001b[39m\\n\",\n      \"File \\u001b[0;32m~/.conda/envs/whisper_lightning/lib/python3.10/site-packages/torch/utils/data/dataloader.py:628\\u001b[0m, in \\u001b[0;36m_BaseDataLoaderIter.__next__\\u001b[0;34m(self)\\u001b[0m\\n\\u001b[1;32m    625\\u001b[0m \\u001b[38;5;28;01mif\\u001b[39;00m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39m_sampler_iter \\u001b[38;5;129;01mis\\u001b[39;00m \\u001b[38;5;28;01mNone\\u001b[39;00m:\\n\\u001b[1;32m    626\\u001b[0m     \\u001b[38;5;66;03m# TODO(https://github.com/pytorch/pytorch/issues/76750)\\u001b[39;00m\\n\\u001b[1;32m    627\\u001b[0m     \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39m_reset()  \\u001b[38;5;66;03m# type: ignore[call-arg]\\u001b[39;00m\\n\\u001b[0;32m--> 628\\u001b[0m data \\u001b[38;5;241m=\\u001b[39m \\u001b[38;5;28;43mself\\u001b[39;49m\\u001b[38;5;241;43m.\\u001b[39;49m\\u001b[43m_next_data\\u001b[49m\\u001b[43m(\\u001b[49m\\u001b[43m)\\u001b[49m\\n\\u001b[1;32m    629\\u001b[0m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39m_num_yielded \\u001b[38;5;241m+\\u001b[39m\\u001b[38;5;241m=\\u001b[39m \\u001b[38;5;241m1\\u001b[39m\\n\\u001b[1;32m    630\\u001b[0m \\u001b[38;5;28;01mif\\u001b[39;00m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39m_dataset_kind \\u001b[38;5;241m==\\u001b[39m _DatasetKind\\u001b[38;5;241m.\\u001b[39mIterable \\u001b[38;5;129;01mand\\u001b[39;00m \\\\\\n\\u001b[1;32m    631\\u001b[0m         \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39m_IterableDataset_len_called \\u001b[38;5;129;01mis\\u001b[39;00m \\u001b[38;5;129;01mnot\\u001b[39;00m \\u001b[38;5;28;01mNone\\u001b[39;00m \\u001b[38;5;129;01mand\\u001b[39;00m \\\\\\n\\u001b[1;32m    632\\u001b[0m         \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39m_num_yielded \\u001b[38;5;241m>\\u001b[39m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39m_IterableDataset_len_called:\\n\",\n      \"File \\u001b[0;32m~/.conda/envs/whisper_lightning/lib/python3.10/site-packages/torch/utils/data/dataloader.py:671\\u001b[0m, in \\u001b[0;36m_SingleProcessDataLoaderIter._next_data\\u001b[0;34m(self)\\u001b[0m\\n\\u001b[1;32m    669\\u001b[0m \\u001b[38;5;28;01mdef\\u001b[39;00m \\u001b[38;5;21m_next_data\\u001b[39m(\\u001b[38;5;28mself\\u001b[39m):\\n\\u001b[1;32m    670\\u001b[0m     index \\u001b[38;5;241m=\\u001b[39m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39m_next_index()  \\u001b[38;5;66;03m# may raise StopIteration\\u001b[39;00m\\n\\u001b[0;32m--> 671\\u001b[0m     data \\u001b[38;5;241m=\\u001b[39m \\u001b[38;5;28;43mself\\u001b[39;49m\\u001b[38;5;241;43m.\\u001b[39;49m\\u001b[43m_dataset_fetcher\\u001b[49m\\u001b[38;5;241;43m.\\u001b[39;49m\\u001b[43mfetch\\u001b[49m\\u001b[43m(\\u001b[49m\\u001b[43mindex\\u001b[49m\\u001b[43m)\\u001b[49m  \\u001b[38;5;66;03m# may raise StopIteration\\u001b[39;00m\\n\\u001b[1;32m    672\\u001b[0m     \\u001b[38;5;28;01mif\\u001b[39;00m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39m_pin_memory:\\n\\u001b[1;32m    673\\u001b[0m         data \\u001b[38;5;241m=\\u001b[39m _utils\\u001b[38;5;241m.\\u001b[39mpin_memory\\u001b[38;5;241m.\\u001b[39mpin_memory(data, \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39m_pin_memory_device)\\n\",\n      \"File \\u001b[0;32m~/.conda/envs/whisper_lightning/lib/python3.10/site-packages/torch/utils/data/_utils/fetch.py:58\\u001b[0m, in \\u001b[0;36m_MapDatasetFetcher.fetch\\u001b[0;34m(self, possibly_batched_index)\\u001b[0m\\n\\u001b[1;32m     56\\u001b[0m         data \\u001b[38;5;241m=\\u001b[39m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39mdataset\\u001b[38;5;241m.\\u001b[39m__getitems__(possibly_batched_index)\\n\\u001b[1;32m     57\\u001b[0m     \\u001b[38;5;28;01melse\\u001b[39;00m:\\n\\u001b[0;32m---> 58\\u001b[0m         data \\u001b[38;5;241m=\\u001b[39m [\\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39mdataset[idx] \\u001b[38;5;28;01mfor\\u001b[39;00m idx \\u001b[38;5;129;01min\\u001b[39;00m possibly_batched_index]\\n\\u001b[1;32m     59\\u001b[0m \\u001b[38;5;28;01melse\\u001b[39;00m:\\n\\u001b[1;32m     60\\u001b[0m     data \\u001b[38;5;241m=\\u001b[39m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39mdataset[possibly_batched_index]\\n\",\n      \"File \\u001b[0;32m~/.conda/envs/whisper_lightning/lib/python3.10/site-packages/torch/utils/data/_utils/fetch.py:58\\u001b[0m, in \\u001b[0;36m<listcomp>\\u001b[0;34m(.0)\\u001b[0m\\n\\u001b[1;32m     56\\u001b[0m         data \\u001b[38;5;241m=\\u001b[39m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39mdataset\\u001b[38;5;241m.\\u001b[39m__getitems__(possibly_batched_index)\\n\\u001b[1;32m     57\\u001b[0m     \\u001b[38;5;28;01melse\\u001b[39;00m:\\n\\u001b[0;32m---> 58\\u001b[0m         data \\u001b[38;5;241m=\\u001b[39m [\\u001b[38;5;28;43mself\\u001b[39;49m\\u001b[38;5;241;43m.\\u001b[39;49m\\u001b[43mdataset\\u001b[49m\\u001b[43m[\\u001b[49m\\u001b[43midx\\u001b[49m\\u001b[43m]\\u001b[49m \\u001b[38;5;28;01mfor\\u001b[39;00m idx \\u001b[38;5;129;01min\\u001b[39;00m possibly_batched_index]\\n\\u001b[1;32m     59\\u001b[0m \\u001b[38;5;28;01melse\\u001b[39;00m:\\n\\u001b[1;32m     60\\u001b[0m     data \\u001b[38;5;241m=\\u001b[39m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39mdataset[possibly_batched_index]\\n\",\n      \"File \\u001b[0;32m~/.conda/envs/whisper_lightning/lib/python3.10/site-packages/datasets/arrow_dataset.py:2601\\u001b[0m, in \\u001b[0;36mDataset.__getitem__\\u001b[0;34m(self, key)\\u001b[0m\\n\\u001b[1;32m   2599\\u001b[0m \\u001b[38;5;28;01mdef\\u001b[39;00m \\u001b[38;5;21m__getitem__\\u001b[39m(\\u001b[38;5;28mself\\u001b[39m, key):  \\u001b[38;5;66;03m# noqa: F811\\u001b[39;00m\\n\\u001b[1;32m   2600\\u001b[0m \\u001b[38;5;250m    \\u001b[39m\\u001b[38;5;124;03m\\\"\\\"\\\"Can be used to index columns (by string names) or rows (by integer index or iterable of indices or bools).\\\"\\\"\\\"\\u001b[39;00m\\n\\u001b[0;32m-> 2601\\u001b[0m     \\u001b[38;5;28;01mreturn\\u001b[39;00m \\u001b[38;5;28;43mself\\u001b[39;49m\\u001b[38;5;241;43m.\\u001b[39;49m\\u001b[43m_getitem\\u001b[49m\\u001b[43m(\\u001b[49m\\n\\u001b[1;32m   2602\\u001b[0m \\u001b[43m        \\u001b[49m\\u001b[43mkey\\u001b[49m\\u001b[43m,\\u001b[49m\\n\\u001b[1;32m   2603\\u001b[0m \\u001b[43m    \\u001b[49m\\u001b[43m)\\u001b[49m\\n\",\n      \"File \\u001b[0;32m~/.conda/envs/whisper_lightning/lib/python3.10/site-packages/datasets/arrow_dataset.py:2585\\u001b[0m, in \\u001b[0;36mDataset._getitem\\u001b[0;34m(self, key, **kwargs)\\u001b[0m\\n\\u001b[1;32m   2583\\u001b[0m format_kwargs \\u001b[38;5;241m=\\u001b[39m format_kwargs \\u001b[38;5;28;01mif\\u001b[39;00m format_kwargs \\u001b[38;5;129;01mis\\u001b[39;00m \\u001b[38;5;129;01mnot\\u001b[39;00m \\u001b[38;5;28;01mNone\\u001b[39;00m \\u001b[38;5;28;01melse\\u001b[39;00m {}\\n\\u001b[1;32m   2584\\u001b[0m formatter \\u001b[38;5;241m=\\u001b[39m get_formatter(format_type, features\\u001b[38;5;241m=\\u001b[39m\\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39mfeatures, \\u001b[38;5;241m*\\u001b[39m\\u001b[38;5;241m*\\u001b[39mformat_kwargs)\\n\\u001b[0;32m-> 2585\\u001b[0m pa_subtable \\u001b[38;5;241m=\\u001b[39m \\u001b[43mquery_table\\u001b[49m\\u001b[43m(\\u001b[49m\\u001b[38;5;28;43mself\\u001b[39;49m\\u001b[38;5;241;43m.\\u001b[39;49m\\u001b[43m_data\\u001b[49m\\u001b[43m,\\u001b[49m\\u001b[43m \\u001b[49m\\u001b[43mkey\\u001b[49m\\u001b[43m,\\u001b[49m\\u001b[43m \\u001b[49m\\u001b[43mindices\\u001b[49m\\u001b[38;5;241;43m=\\u001b[39;49m\\u001b[38;5;28;43mself\\u001b[39;49m\\u001b[38;5;241;43m.\\u001b[39;49m\\u001b[43m_indices\\u001b[49m\\u001b[43m \\u001b[49m\\u001b[38;5;28;43;01mif\\u001b[39;49;00m\\u001b[43m \\u001b[49m\\u001b[38;5;28;43mself\\u001b[39;49m\\u001b[38;5;241;43m.\\u001b[39;49m\\u001b[43m_indices\\u001b[49m\\u001b[43m \\u001b[49m\\u001b[38;5;129;43;01mis\\u001b[39;49;00m\\u001b[43m \\u001b[49m\\u001b[38;5;129;43;01mnot\\u001b[39;49;00m\\u001b[43m \\u001b[49m\\u001b[38;5;28;43;01mNone\\u001b[39;49;00m\\u001b[43m \\u001b[49m\\u001b[38;5;28;43;01melse\\u001b[39;49;00m\\u001b[43m \\u001b[49m\\u001b[38;5;28;43;01mNone\\u001b[39;49;00m\\u001b[43m)\\u001b[49m\\n\\u001b[1;32m   2586\\u001b[0m formatted_output \\u001b[38;5;241m=\\u001b[39m format_table(\\n\\u001b[1;32m   2587\\u001b[0m     pa_subtable, key, formatter\\u001b[38;5;241m=\\u001b[39mformatter, format_columns\\u001b[38;5;241m=\\u001b[39mformat_columns, output_all_columns\\u001b[38;5;241m=\\u001b[39moutput_all_columns\\n\\u001b[1;32m   2588\\u001b[0m )\\n\\u001b[1;32m   2589\\u001b[0m \\u001b[38;5;28;01mreturn\\u001b[39;00m formatted_output\\n\",\n      \"File \\u001b[0;32m~/.conda/envs/whisper_lightning/lib/python3.10/site-packages/datasets/formatting/formatting.py:588\\u001b[0m, in \\u001b[0;36mquery_table\\u001b[0;34m(table, key, indices)\\u001b[0m\\n\\u001b[1;32m    586\\u001b[0m \\u001b[38;5;28;01melse\\u001b[39;00m:\\n\\u001b[1;32m    587\\u001b[0m     size \\u001b[38;5;241m=\\u001b[39m indices\\u001b[38;5;241m.\\u001b[39mnum_rows \\u001b[38;5;28;01mif\\u001b[39;00m indices \\u001b[38;5;129;01mis\\u001b[39;00m \\u001b[38;5;129;01mnot\\u001b[39;00m \\u001b[38;5;28;01mNone\\u001b[39;00m \\u001b[38;5;28;01melse\\u001b[39;00m table\\u001b[38;5;241m.\\u001b[39mnum_rows\\n\\u001b[0;32m--> 588\\u001b[0m     \\u001b[43m_check_valid_index_key\\u001b[49m\\u001b[43m(\\u001b[49m\\u001b[43mkey\\u001b[49m\\u001b[43m,\\u001b[49m\\u001b[43m \\u001b[49m\\u001b[43msize\\u001b[49m\\u001b[43m)\\u001b[49m\\n\\u001b[1;32m    589\\u001b[0m \\u001b[38;5;66;03m# Query the main table\\u001b[39;00m\\n\\u001b[1;32m    590\\u001b[0m \\u001b[38;5;28;01mif\\u001b[39;00m indices \\u001b[38;5;129;01mis\\u001b[39;00m \\u001b[38;5;28;01mNone\\u001b[39;00m:\\n\",\n      \"File \\u001b[0;32m~/.conda/envs/whisper_lightning/lib/python3.10/site-packages/datasets/formatting/formatting.py:531\\u001b[0m, in \\u001b[0;36m_check_valid_index_key\\u001b[0;34m(key, size)\\u001b[0m\\n\\u001b[1;32m    529\\u001b[0m \\u001b[38;5;28;01mif\\u001b[39;00m \\u001b[38;5;28misinstance\\u001b[39m(key, \\u001b[38;5;28mint\\u001b[39m):\\n\\u001b[1;32m    530\\u001b[0m     \\u001b[38;5;28;01mif\\u001b[39;00m (key \\u001b[38;5;241m<\\u001b[39m \\u001b[38;5;241m0\\u001b[39m \\u001b[38;5;129;01mand\\u001b[39;00m key \\u001b[38;5;241m+\\u001b[39m size \\u001b[38;5;241m<\\u001b[39m \\u001b[38;5;241m0\\u001b[39m) \\u001b[38;5;129;01mor\\u001b[39;00m (key \\u001b[38;5;241m>\\u001b[39m\\u001b[38;5;241m=\\u001b[39m size):\\n\\u001b[0;32m--> 531\\u001b[0m         \\u001b[38;5;28;01mraise\\u001b[39;00m \\u001b[38;5;167;01mIndexError\\u001b[39;00m(\\u001b[38;5;124mf\\u001b[39m\\u001b[38;5;124m\\\"\\u001b[39m\\u001b[38;5;124mInvalid key: \\u001b[39m\\u001b[38;5;132;01m{\\u001b[39;00mkey\\u001b[38;5;132;01m}\\u001b[39;00m\\u001b[38;5;124m is out of bounds for size \\u001b[39m\\u001b[38;5;132;01m{\\u001b[39;00msize\\u001b[38;5;132;01m}\\u001b[39;00m\\u001b[38;5;124m\\\"\\u001b[39m)\\n\\u001b[1;32m    532\\u001b[0m     \\u001b[38;5;28;01mreturn\\u001b[39;00m\\n\\u001b[1;32m    533\\u001b[0m \\u001b[38;5;28;01melif\\u001b[39;00m \\u001b[38;5;28misinstance\\u001b[39m(key, \\u001b[38;5;28mslice\\u001b[39m):\\n\",\n      \"\\u001b[0;31mIndexError\\u001b[0m: Invalid key: 90427 is out of bounds for size 0\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"class MyLightningModule(pl.LightningModule):\\n\",\n    \"    def __init__(self, model_name, learning_rate, weight_decay, batch_size, num_training_steps):\\n\",\n    \"        super().__init__()\\n\",\n    \"        self.model_name = model_name\\n\",\n    \"        self.learning_rate = learning_rate\\n\",\n    \"        self.weight_decay = weight_decay\\n\",\n    \"        self.batch_size = batch_size\\n\",\n    \"        self.num_training_steps = num_training_steps\\n\",\n    \"        \\n\",\n    \"        # Load the pre-trained model and tokenizer\\n\",\n    \"        self.tokenizer = AutoTokenizer.from_pretrained(self.model_name)\\n\",\n    \"        self.model = AutoModelForSeq2SeqLM.from_pretrained(self.model_name)\\n\",\n    \"\\n\",\n    \"    def forward(self, input_ids, attention_mask, labels=None):\\n\",\n    \"        output = self.model(\\n\",\n    \"            input_ids=input_ids,\\n\",\n    \"            attention_mask=attention_mask,\\n\",\n    \"            labels=labels,\\n\",\n    \"        )\\n\",\n    \"        return output.loss, output.logits\\n\",\n    \"    \\n\",\n    \"    def training_step(self, batch, batch_idx):\\n\",\n    \"        input_ids = batch[\\\"input_ids\\\"]\\n\",\n    \"        attention_mask = batch[\\\"attention_mask\\\"]\\n\",\n    \"        labels = batch[\\\"labels\\\"]\\n\",\n    \"        \\n\",\n    \"        loss\\n\",\n    \"\\n\",\n    \"# Define the data collator\\n\",\n    \"data_collator = DataCollatorForSeq2Seq(tokenizer, model=model)\\n\",\n    \"\\n\",\n    \"# Initialize the trainer arguments\\n\",\n    \"training_args = Seq2SeqTrainingArguments(\\n\",\n    \"    output_dir=\\\"./results\\\",\\n\",\n    \"    learning_rate=1e-5,\\n\",\n    \"    per_device_train_batch_size=16,\\n\",\n    \"    per_device_eval_batch_size=16,\\n\",\n    \"    max_steps=5000,\\n\",\n    \"    weight_decay=1e-4,\\n\",\n    \"    push_to_hub=False,\\n\",\n    \"    evaluation_strategy = \\\"steps\\\",\\n\",\n    \"    eval_steps = 50,\\n\",\n    \"    generation_max_length=128,\\n\",\n    \"    predict_with_generate=True,\\n\",\n    \"    logging_steps=100,\\n\",\n    \"    gradient_accumulation_steps=1,\\n\",\n    \"    fp16=True,\\n\",\n    \")\\n\",\n    \"\\n\",\n    \"# Load the ROUGE metric\\n\",\n    \"metric = load_metric(\\\"rouge\\\")\\n\",\n    \"\\n\",\n    \"# Define the evaluation function\\n\",\n    \"def compute_metrics(pred):\\n\",\n    \"    labels = pred.label_ids\\n\",\n    \"    preds = pred.predictions\\n\",\n    \"    decoded_preds = tokenizer.batch_decode(preds, skip_special_tokens=True)\\n\",\n    \"    decoded_labels = tokenizer.batch_decode(labels, skip_special_tokens=True)\\n\",\n    \"    scores = metric.compute(predictions=decoded_preds, references=decoded_labels, rouge_types=[\\\"rouge1\\\"])[\\\"rouge1\\\"].mid\\n\",\n    \"    return {\\\"rouge1_precision\\\": scores.precision, \\\"rouge1_recall\\\": scores.recall, \\\"rouge1_fmeasure\\\": scores.fmeasure}\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"# Initialize the trainer\\n\",\n    \"trainer = Seq2SeqTrainer(\\n\",\n    \"    model=model,\\n\",\n    \"    args=training_args,\\n\",\n    \"    train_dataset=train_data,\\n\",\n    \"    eval_dataset=val_data,\\n\",\n    \"    data_collator=data_collator,\\n\",\n    \"    tokenizer=tokenizer,\\n\",\n    \"    compute_metrics=compute_metrics,\\n\",\n    \")\\n\",\n    \"\\n\",\n    \"# Start the training\\n\",\n    \"trainer.train()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"1b0f9a76\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Steps:\\n\",\n    \"1. Rewrite code to be more general\\n\",\n    \"\\n\",\n    \"a) Data loading should be from disk rather than their load_dataset, and should be on the fly\\n\",\n    \"\\n\",\n    \"b) Rewrite to Lightning code, Trainer etc using Lightning, compute metric fine that we use huggingface\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"ff03c8bb\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"!nvidia-smi\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"aafc4b27\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3 (ipykernel)\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.10.9\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 5\n}\n"
  },
  {
    "path": "ML/Pytorch/huggingface/.ipynb_checkpoints/learning-checkpoint.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 23,\n   \"id\": \"7d5e92c6\",\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"[{'entity': 'I-FOOD', 'score': 0.49999642, 'index': 5, 'word': 'Turtle', 'start': 8, 'end': 14}, {'entity': 'I-FOOD', 'score': 0.6096488, 'index': 6, 'word': '##s', 'start': 14, 'end': 15}, {'entity': 'B-FOOD', 'score': 0.45608267, 'index': 7, 'word': 'Original', 'start': 16, 'end': 24}, {'entity': 'I-FOOD', 'score': 0.6613699, 'index': 8, 'word': 'Cara', 'start': 25, 'end': 29}, {'entity': 'I-FOOD', 'score': 0.5776781, 'index': 9, 'word': '##mel', 'start': 29, 'end': 32}, {'entity': 'I-FOOD', 'score': 0.86556953, 'index': 10, 'word': 'Chocolate', 'start': 33, 'end': 42}, {'entity': 'I-FOOD', 'score': 0.96111995, 'index': 11, 'word': 'P', 'start': 43, 'end': 44}, {'entity': 'I-FOOD', 'score': 0.8003402, 'index': 12, 'word': '##eca', 'start': 44, 'end': 47}, {'entity': 'I-FOOD', 'score': 0.9277613, 'index': 13, 'word': '##n', 'start': 47, 'end': 48}, {'entity': 'I-FOOD', 'score': 0.9217512, 'index': 15, 'word': '##luster', 'start': 50, 'end': 56}]\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"from transformers import AutoTokenizer, AutoModelForTokenClassification\\n\",\n    \"from transformers import pipeline\\n\",\n    \"\\n\",\n    \"tokenizer = AutoTokenizer.from_pretrained(\\\"Dizex/FoodBaseBERT\\\")\\n\",\n    \"model = AutoModelForTokenClassification.from_pretrained(\\\"Dizex/FoodBaseBERT\\\")\\n\",\n    \"\\n\",\n    \"pipe = pipeline(\\\"ner\\\", model=model, tokenizer=tokenizer)\\n\",\n    \"example = \\\"Demet's Turtles Original Caramel Chocolate Pecan Clusters 9.3 oz Holiday Gift Box\\\"\\n\",\n    \"\\n\",\n    \"ner_entity_results = pipe(example)\\n\",\n    \"print(ner_entity_results)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 31,\n   \"id\": \"bf67ee76\",\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Turtle s Original Cara mel Chocolate P eca n luster\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"ner_entity_results = pipe(example)\\n\",\n    \"\\n\",\n    \"# Initialize the entity words list with an empty string\\n\",\n    \"entity_words = [\\\"\\\"]\\n\",\n    \"\\n\",\n    \"# Loop through each dictionary in the list and extract the entity word\\n\",\n    \"for result in ner_entity_results:\\n\",\n    \"    if result[\\\"entity\\\"] == \\\"B-FOOD\\\":\\n\",\n    \"        entity_words.append(result[\\\"word\\\"])\\n\",\n    \"    elif result[\\\"entity\\\"] == \\\"I-FOOD\\\":\\n\",\n    \"        entity_words[-1] += \\\" \\\" + result[\\\"word\\\"]\\n\",\n    \"\\n\",\n    \"# Remove any remaining ## symbols and extra spaces\\n\",\n    \"entity_words = [word.replace(\\\"##\\\", \\\"\\\").strip() for word in entity_words]\\n\",\n    \"\\n\",\n    \"# Join the entity words into a single string\\n\",\n    \"output = \\\" \\\".join(entity_words)\\n\",\n    \"\\n\",\n    \"print(output)\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"fc8e5ea0\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import torch\\n\",\n    \"print(torch.cuda.is_available())\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"d8a1e039\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"from transformers import pipeline\\n\",\n    \"import numpy as np\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"6ad73024\",\n   \"metadata\": {\n    \"scrolled\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"classifier = pipeline(\\\"zero-shot-classification\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"04f7e02c\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"classifier(\\n\",\n    \"    \\\"This is a course about the Transformers library\\\",\\n\",\n    \"    candidate_labels=[\\\"machine learning\\\", \\\"gym\\\", \\\"food\\\"],\\n\",\n    \")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"6fb246c2\",\n   \"metadata\": {\n    \"scrolled\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"from transformers import pipeline\\n\",\n    \"generator = pipeline(task=\\\"text-generation\\\", model=\\\"bigscience/bloom-1b7\\\", device=0)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"c4e174f0\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"from transformers import AutoModelForTokenClassification, AutoModel, AutoTokenizer\\n\",\n    \"import torch\\n\",\n    \"\\n\",\n    \"# Define input text and pre-trained model checkpoint\\n\",\n    \"text = \\\"My name is wolfgang and I live in berlin\\\"\\n\",\n    \"checkpoint = \\\"Jean-Baptiste/roberta-large-ner-english\\\"\\n\",\n    \"\\n\",\n    \"# Instantiate tokenizer and encode input text\\n\",\n    \"tokenizer = AutoTokenizer.from_pretrained(checkpoint)\\n\",\n    \"inputs = tokenizer(text, padding=True, truncation=True, return_tensors=\\\"pt\\\")\\n\",\n    \"\\n\",\n    \"# Instantiate model and generate output\\n\",\n    \"model = AutoModel.from_pretrained(checkpoint)\\n\",\n    \"outputs = model(**inputs)\\n\",\n    \"print(outputs[0].shape)\\n\",\n    \"\\n\",\n    \"# Instantiate token classification model and generate predictions\\n\",\n    \"model = AutoModelForTokenClassification.from_pretrained(checkpoint)\\n\",\n    \"outputs = model(**inputs)\\n\",\n    \"predictions = torch.nn.functional.softmax(outputs.logits, dim=-1)\\n\",\n    \"print(predictions)\\n\",\n    \"print(model.config.id2label)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"8212bbaa\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"from transformers import AutoTokenizer, AutoModelForMaskedLM\\n\",\n    \"\\n\",\n    \"tokenizer = AutoTokenizer.from_pretrained('xlm-roberta-large')\\n\",\n    \"model = AutoModelForMaskedLM.from_pretrained(\\\"xlm-roberta-large\\\")\\n\",\n    \"\\n\",\n    \"# prepare input\\n\",\n    \"text = \\\"Replace me by any text you'd like.\\\"\\n\",\n    \"encoded_input = tokenizer(text, return_tensors='pt')\\n\",\n    \"\\n\",\n    \"# forward pass\\n\",\n    \"output = model(**encoded_input)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"314cba41\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"from transformers import AutoTokenizer, AutoModelForMaskedLM\\n\",\n    \"\\n\",\n    \"# Load the pre-trained tokenizer and model\\n\",\n    \"tokenizer = AutoTokenizer.from_pretrained('xlm-roberta-large')\\n\",\n    \"model = AutoModelForMaskedLM.from_pretrained(\\\"xlm-roberta-large\\\")\\n\",\n    \"\\n\",\n    \"# Define the input sentence with a masked token\\n\",\n    \"text = \\\"I want to <mask> a new car tomorrow.\\\"\\n\",\n    \"\\n\",\n    \"# Tokenize the input sentence, replacing the masked token with a special [MASK] token\\n\",\n    \"encoded_input = tokenizer(text, padding=True, truncation=True, return_tensors='pt')\\n\",\n    \"\\n\",\n    \"print(output.logits.shape)\\n\",\n    \"print(encoded_input['input_ids'][0].tolist().index(tokenizer.mask_token_id))\\n\",\n    \"\\n\",\n    \"# Extract the predicted probabilities for the masked token\\n\",\n    \"predicted_probabilities = output.logits[0, encoded_input['input_ids'][0].tolist().index(tokenizer.mask_token_id)]\\n\",\n    \"predicted_probabilities = torch.nn.functional.softmax(predicted_probabilities, dim=-1)\\n\",\n    \"\\n\",\n    \"# Get the top-k most probable predictions for the masked token\\n\",\n    \"k = 5\\n\",\n    \"top_k = torch.topk(predicted_probabilities, k)\\n\",\n    \"for i in range(k):\\n\",\n    \"    token = tokenizer.convert_ids_to_tokens(top_k.indices[i].item())\\n\",\n    \"    score = top_k.values[i].item()\\n\",\n    \"    print(f\\\"Prediction {i+1}: '{token}' with probability {score:.5f}\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"6187e77e\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"%%time\\n\",\n    \"tokenizer = AutoTokenizer.from_pretrained(\\\"bert-base-cased\\\")\\n\",\n    \"\\n\",\n    \"sequences = [\\n\",\n    \"    \\\"Using a Transformer network is simple\\\",\\n\",\n    \"    \\\"The quick brown fox jumps over the lazy dog\\\",\\n\",\n    \"    \\\"To be or not to be, that is the question\\\"\\n\",\n    \"]\\n\",\n    \"\\n\",\n    \"# Tokenize the input sequences and convert them to padded and truncated integer token IDs\\n\",\n    \"inputs = tokenizer(\\n\",\n    \"    sequences,\\n\",\n    \"    padding=True,\\n\",\n    \"    truncation=True,\\n\",\n    \"    return_tensors=\\\"pt\\\"\\n\",\n    \")\\n\",\n    \"\\n\",\n    \"# Print the resulting input IDs and attention masks\\n\",\n    \"print(inputs['input_ids'])\\n\",\n    \"print(inputs['attention_mask'])\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"fc259c5a\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"43466db6\",\n   \"metadata\": {},\n   \"source\": [\n    \"Huggingface:\\n\",\n    \"\\n\",\n    \"1. Understanding how to use the Pipeline (probably most useful) for various tasks, easy to use, and the different subtasks it can do like translation, QA, zero shot, sentiment analysis, token classification, etc. \\n\",\n    \"2. Understood how pipeline works in more detail by using AutoModel for various tasks as well as AutoTokenizer\\n\",\n    \"3. Load dataset\\n\",\n    \"4. How to finetune\\n\",\n    \"5. How to evaluate\\n\",\n    \"6. \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"97c474f2\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"3ed5d8c2\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import torch\\n\",\n    \"from transformers import AdamW, AutoTokenizer, AutoModelForSequenceClassification\\n\",\n    \"\\n\",\n    \"# Same as before\\n\",\n    \"checkpoint = \\\"bert-base-uncased\\\"\\n\",\n    \"tokenizer = AutoTokenizer.from_pretrained(checkpoint)\\n\",\n    \"model = AutoModelForSequenceClassification.from_pretrained(checkpoint)\\n\",\n    \"sequences = [\\n\",\n    \"    \\\"I've been waiting for a HuggingFace course my whole life.\\\",\\n\",\n    \"    \\\"This course is amazing!\\\",\\n\",\n    \"]\\n\",\n    \"batch = tokenizer(sequences, padding=True, truncation=True, return_tensors=\\\"pt\\\")\\n\",\n    \"\\n\",\n    \"# This is new\\n\",\n    \"batch[\\\"labels\\\"] = torch.tensor([1, 1])\\n\",\n    \"\\n\",\n    \"optimizer = AdamW(model.parameters())\\n\",\n    \"loss = model(**batch).loss\\n\",\n    \"loss.backward()\\n\",\n    \"optimizer.step()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"c598624f\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"from datasets import load_dataset\\n\",\n    \"raw_datasets = load_dataset(\\\"glue\\\", \\\"mrpc\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"cd296227\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"raw_train_dataset = raw_datasets[\\\"train\\\"]\\n\",\n    \"raw_train_dataset[0]\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"e462947a\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"from datasets import load_dataset\\n\",\n    \"from transformers import AutoTokenizer, DataCollatorWithPadding\\n\",\n    \"raw_datasets = load_dataset(\\\"glue\\\", \\\"mrpc\\\")\\n\",\n    \"\\n\",\n    \"checkpoint = \\\"bert-base-uncased\\\"\\n\",\n    \"tokenizer = AutoTokenizer.from_pretrained(checkpoint)\\n\",\n    \"\\n\",\n    \"def tokenize_function(example):\\n\",\n    \"    return tokenizer(example[\\\"sentence1\\\"], example[\\\"sentence2\\\"], truncation=True)\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"tokenized_datasets = raw_datasets.map(tokenize_function, batched=True)\\n\",\n    \"data_collator = DataCollatorWithPadding(tokenizer=tokenizer)\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"from transformers import TrainingArguments\\n\",\n    \"training_args = TrainingArguments(\\\"test-trainer\\\")\\n\",\n    \"\\n\",\n    \"from transformers import AutoModelForSequenceClassification\\n\",\n    \"model = AutoModelForSequenceClassification.from_pretrained(checkpoint, num_labels=2)\\n\",\n    \"\\n\",\n    \"import numpy as np\\n\",\n    \"import evaluate\\n\",\n    \"\\n\",\n    \"def compute_metrics(eval_preds):\\n\",\n    \"    metric = evaluate.load(\\\"glue\\\", \\\"mrpc\\\")\\n\",\n    \"    logits, labels = eval_preds\\n\",\n    \"    predictions = np.argmax(logits, axis=-1)\\n\",\n    \"    return metric.compute(predictions=predictions, references=labels)\\n\",\n    \"\\n\",\n    \"training_args = TrainingArguments(\\\"test-trainer\\\", evaluation_strategy=\\\"epoch\\\")\\n\",\n    \"model = AutoModelForSequenceClassification.from_pretrained(checkpoint, num_labels=2)\\n\",\n    \"\\n\",\n    \"trainer = Trainer(\\n\",\n    \"    model,\\n\",\n    \"    training_args,\\n\",\n    \"    train_dataset=tokenized_datasets[\\\"train\\\"],\\n\",\n    \"    eval_dataset=tokenized_datasets[\\\"validation\\\"],\\n\",\n    \"    data_collator=data_collator,\\n\",\n    \"    tokenizer=tokenizer,\\n\",\n    \"    compute_metrics=compute_metrics,\\n\",\n    \")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"0e2795dc\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"from transformers import TrainingArguments\\n\",\n    \"training_args = TrainingArguments(\\\"test-trainer\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"3af29cd5\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"from transformers import AutoModelForSequenceClassification\\n\",\n    \"model = AutoModelForSequenceClassification.from_pretrained(checkpoint, num_labels=2)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"817f644e\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import numpy as np\\n\",\n    \"import evaluate\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"42819a6c\",\n   \"metadata\": {\n    \"scrolled\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"def compute_metrics(eval_preds):\\n\",\n    \"    metric = evaluate.load(\\\"glue\\\", \\\"mrpc\\\")\\n\",\n    \"    logits, labels = eval_preds\\n\",\n    \"    predictions = np.argmax(logits, axis=-1)\\n\",\n    \"    return metric.compute(predictions=predictions, references=labels)\\n\",\n    \"\\n\",\n    \"training_args = TrainingArguments(\\\"test-trainer\\\", evaluation_strategy=\\\"epoch\\\")\\n\",\n    \"model = AutoModelForSequenceClassification.from_pretrained(checkpoint, num_labels=2)\\n\",\n    \"\\n\",\n    \"trainer = Trainer(\\n\",\n    \"    model,\\n\",\n    \"    training_args,\\n\",\n    \"    train_dataset=tokenized_datasets[\\\"train\\\"],\\n\",\n    \"    eval_dataset=tokenized_datasets[\\\"validation\\\"],\\n\",\n    \"    data_collator=data_collator,\\n\",\n    \"    tokenizer=tokenizer,\\n\",\n    \"    compute_metrics=compute_metrics,\\n\",\n    \")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"eb5986b0\",\n   \"metadata\": {\n    \"scrolled\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"from transformers import AutoModelForSeq2SeqLM, AutoTokenizer, DataCollatorForSeq2Seq, Seq2SeqTrainingArguments, Seq2SeqTrainer\\n\",\n    \"from datasets import load_dataset\\n\",\n    \"batch_size=32\\n\",\n    \"\\n\",\n    \"# Define the generator function to preprocess the data in batches\\n\",\n    \"def preprocess_generator(examples):\\n\",\n    \"    for i in range(0, len(examples[\\\"article\\\"]), batch_size):\\n\",\n    \"        batch = examples[\\\"article\\\"][i:i+batch_size]\\n\",\n    \"        targets = examples[\\\"highlights\\\"][i:i+batch_size]\\n\",\n    \"        model_inputs = tokenizer(batch, max_length=512, padding=\\\"max_length\\\", truncation=True)\\n\",\n    \"        with tokenizer.as_target_tokenizer():\\n\",\n    \"            model_targets = tokenizer(targets, max_length=128, padding=\\\"max_length\\\", truncation=True)\\n\",\n    \"        model_inputs[\\\"labels\\\"] = model_targets[\\\"input_ids\\\"]\\n\",\n    \"        yield model_inputs\\n\",\n    \"\\n\",\n    \"def preprocess_function(examples):\\n\",\n    \"    articles = [ex for ex in examples[\\\"article\\\"]]\\n\",\n    \"    summaries = [ex for ex in examples[\\\"highlights\\\"]]\\n\",\n    \"\\n\",\n    \"    model_inputs = tokenizer(articles, max_length=512, padding=\\\"max_length\\\", truncation=True)\\n\",\n    \"    with tokenizer.as_target_tokenizer():\\n\",\n    \"        model_targets = tokenizer(summaries, max_length=128, padding=\\\"max_length\\\", truncation=True)\\n\",\n    \"    \\n\",\n    \"    model_inputs[\\\"labels\\\"] = model_targets[\\\"input_ids\\\"]\\n\",\n    \"    return model_inputs\\n\",\n    \"    \\n\",\n    \"# Load the dataset\\n\",\n    \"raw_datasets = load_dataset(\\\"cnn_dailymail\\\", \\\"3.0.0\\\")\\n\",\n    \"preprocessed_datasets = raw_datasets.map(preprocess_function, batched=True, num_proc=4)\\n\",\n    \"\\n\",\n    \"# Load the pre-trained model and tokenizer\\n\",\n    \"model_name = \\\"t5-small\\\"\\n\",\n    \"tokenizer = AutoTokenizer.from_pretrained(model_name)\\n\",\n    \"model = AutoModelForSeq2SeqLM.from_pretrained(model_name)\\n\",\n    \"\\n\",\n    \"# Define the data collator\\n\",\n    \"data_collator = DataCollatorForSeq2Seq(tokenizer, model=model)\\n\",\n    \"\\n\",\n    \"# Initialize the trainer arguments\\n\",\n    \"training_args = Seq2SeqTrainingArguments(\\n\",\n    \"    output_dir=\\\"./results\\\",\\n\",\n    \"    evaluation_strategy = \\\"epoch\\\",\\n\",\n    \"    learning_rate=2e-5,\\n\",\n    \"    per_device_train_batch_size=batch_size,\\n\",\n    \"    max_steps=1000,\\n\",\n    \"    weight_decay=0.01,\\n\",\n    \"    push_to_hub=False,\\n\",\n    \")\\n\",\n    \"\\n\",\n    \"# Initialize the trainer\\n\",\n    \"trainer = Seq2SeqTrainer(\\n\",\n    \"    model=model,\\n\",\n    \"    args=training_args,\\n\",\n    \"    train_dataset=train_ds,\\n\",\n    \"    data_collator=data_collator,\\n\",\n    \"    tokenizer=tokenizer,\\n\",\n    \")\\n\",\n    \"\\n\",\n    \"# Start the training\\n\",\n    \"trainer.train()\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"7d62583e\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"from datasets import load_metric\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"d310a7b3\",\n   \"metadata\": {\n    \"scrolled\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"preprocessed_datasets\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"99d422cc\",\n   \"metadata\": {\n    \"scrolled\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Load the pre-trained model and tokenizer\\n\",\n    \"model_name = \\\"t5-small\\\"\\n\",\n    \"tokenizer = AutoTokenizer.from_pretrained(model_name)\\n\",\n    \"model = AutoModelForSeq2SeqLM.from_pretrained(model_name)\\n\",\n    \"\\n\",\n    \"# Define the data collator\\n\",\n    \"data_collator = DataCollatorForSeq2Seq(tokenizer, model=model)\\n\",\n    \"\\n\",\n    \"# Initialize the trainer arguments\\n\",\n    \"training_args = Seq2SeqTrainingArguments(\\n\",\n    \"    output_dir=\\\"./results\\\",\\n\",\n    \"    learning_rate=2e-5,\\n\",\n    \"    per_device_train_batch_size=batch_size,\\n\",\n    \"    max_steps=5000,\\n\",\n    \"    weight_decay=0.01,\\n\",\n    \"    push_to_hub=False,\\n\",\n    \"    evaluation_strategy = \\\"steps\\\",\\n\",\n    \"    eval_steps = 50,\\n\",\n    \")\\n\",\n    \"\\n\",\n    \"# Load the ROUGE metric\\n\",\n    \"metric = load_metric(\\\"rouge\\\")\\n\",\n    \"\\n\",\n    \"# Define the evaluation function\\n\",\n    \"def compute_metrics(pred):\\n\",\n    \"    labels = pred.label_ids\\n\",\n    \"    preds = pred.predictions\\n\",\n    \"    \\n\",\n    \"    decoded_preds = tokenizer.batch_decode(preds, skip_special_tokens=True)\\n\",\n    \"    decoded_labels = tokenizer.batch_decode(labels, skip_special_tokens=True)\\n\",\n    \"    \\n\",\n    \"    scores = metric.compute(predictions=decoded_preds, references=decoded_labels, rouge_types=[\\\"rouge1\\\"])[\\\"rouge1\\\"].mid\\n\",\n    \"    \\n\",\n    \"    return {\\\"rouge1_precision\\\": scores.precision, \\\"rouge1_recall\\\": scores.recall, \\\"rouge1_fmeasure\\\": scores.fmeasure}\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"# Initialize the trainer\\n\",\n    \"trainer = Seq2SeqTrainer(\\n\",\n    \"    model=model,\\n\",\n    \"    args=training_args,\\n\",\n    \"    train_dataset=preprocessed_datasets[\\\"train\\\"],\\n\",\n    \"    eval_dataset=preprocessed_datasets[\\\"validation\\\"],\\n\",\n    \"    data_collator=data_collator,\\n\",\n    \"    tokenizer=tokenizer,\\n\",\n    \"    compute_metrics=compute_metrics,\\n\",\n    \")\\n\",\n    \"\\n\",\n    \"# Start the training\\n\",\n    \"trainer.train()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"a5e97b57\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"!pip install nltk\\n\",\n    \"!pip install rouge_score\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"558c3e66\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Goal:\\n\",\n    \"\\n\",\n    \"1. Implement full training from dataloading (dailycnn dataset), to model training, evaluation, etc, using HF. \\n\",\n    \"* Right now: stuck on on the fly dataset loading, we don't want to cache because this would take a lot of disk space etc.\\n\",\n    \"\\n\",\n    \"2. After we get step 1) working, we want to go deeper on every step, so download the dataset and load it as a custom dataset rather than using huggingface simple API, in order to make it more general. Compare with loading the ds as a custom HF dataset or using pytorch class together with lightning. Speed difference? Convenience? Also we want to use the lightning Trainer so see how we can integrate that. And then compare HF to the lightning + hf model approach and see what we like the most.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"624d49ca\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3 (ipykernel)\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.10.9\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 5\n}\n"
  },
  {
    "path": "ML/Pytorch/huggingface/cnndaily_t5_lightning_customdataloading.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"f54ecf0b\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"\\\"\\\"\\\"\\n\",\n    \"# HuggingFace Tutorial Series\\n\",\n    \"- 1. What is Huggingface?\\n\",\n    \"- 2. Common tasks we can do with HuggingFace & explain the tasks briefly, like what is question answering etc\\n\",\n    \"- 3. Using the HuggingFace Pipeline (High level feature)\\n\",\n    \"- 4. How the pipeline works at a lower level\\n\",\n    \"- 5. HuggingFace Datasets\\n\",\n    \"- 6. HuggingFace Tokenizer\\n\",\n    \"- 7. HuggingFace Evaluate\\n\",\n    \"- 8. HuggingFace Trainer\\n\",\n    \"- 9. Putting it together to finetune a news article summarizer\\n\",\n    \"- 10. Making it more general and robust with Lightning and custom data loading\\n\",\n    \"\\\"\\\"\\\"\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"ec1aae37\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import warnings\\n\",\n    \"warnings.simplefilter(\\\"ignore\\\")\\n\",\n    \"\\n\",\n    \"import os\\n\",\n    \"os.environ[\\\"CUDA_DEVICE_ORDER\\\"]=\\\"PCI_BUS_ID\\\"\\n\",\n    \"os.environ[\\\"CUDA_VISIBLE_DEVICES\\\"]=\\\"0\\\"\\n\",\n    \"\\n\",\n    \"import numpy as np\\n\",\n    \"import torch\\n\",\n    \"import datasets \\n\",\n    \"import pytorch_lightning as pl\\n\",\n    \"from datasets import load_dataset, load_metric\\n\",\n    \"\\n\",\n    \"from transformers import (\\n\",\n    \"    AutoModel,\\n\",\n    \"    AutoModelForSeq2SeqLM,\\n\",\n    \"    AutoTokenizer,\\n\",\n    \"    DataCollatorForSeq2Seq,\\n\",\n    \"    Seq2SeqTrainingArguments,\\n\",\n    \"    Seq2SeqTrainer,\\n\",\n    \")\\n\",\n    \"\\n\",\n    \"import torch\\n\",\n    \"import pandas as pd\\n\",\n    \"from torch.utils.data import Dataset\\n\",\n    \"import pytorch_lightning as pl\\n\",\n    \"\\n\",\n    \"torch.set_float32_matmul_precision(\\\"medium\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"5fd7cb0c\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"model_name = \\\"t5-small\\\"\\n\",\n    \"tokenizer = AutoTokenizer.from_pretrained(model_name)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"418cb03a\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"class cnn_dailymail(Dataset):\\n\",\n    \"    def __init__(self, csv_file, tokenizer, max_length=512):\\n\",\n    \"        self.data = pd.read_csv(csv_file)\\n\",\n    \"        self.tokenizer = tokenizer\\n\",\n    \"        self.max_length = max_length\\n\",\n    \"\\n\",\n    \"    def __len__(self):\\n\",\n    \"        return len(self.data)\\n\",\n    \"\\n\",\n    \"    def __getitem__(self, idx):\\n\",\n    \"        article = self.data.loc[idx, 'article']\\n\",\n    \"        highlights = self.data.loc[idx, 'highlights']\\n\",\n    \"\\n\",\n    \"        inputs = self.tokenizer(\\n\",\n    \"            article,\\n\",\n    \"            truncation=True,\\n\",\n    \"            padding='max_length',\\n\",\n    \"            max_length=self.max_length,\\n\",\n    \"            return_tensors='pt'\\n\",\n    \"        )\\n\",\n    \"        targets = self.tokenizer(\\n\",\n    \"            highlights,\\n\",\n    \"            truncation=True,\\n\",\n    \"            padding='max_length',\\n\",\n    \"            max_length=self.max_length,\\n\",\n    \"            return_tensors='pt'\\n\",\n    \"        )\\n\",\n    \"\\n\",\n    \"        return {\\n\",\n    \"            'input_ids': inputs['input_ids'].squeeze(),\\n\",\n    \"            'attention_mask': inputs['attention_mask'].squeeze(),\\n\",\n    \"            'labels': targets['input_ids'].squeeze()\\n\",\n    \"        }\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"aaa62755\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"class MyDataModule(pl.LightningDataModule):\\n\",\n    \"    def __init__(self, train_csv, val_csv, test_csv, tokenizer, batch_size=16, max_length=512):\\n\",\n    \"        super().__init__()\\n\",\n    \"        self.train_csv = train_csv\\n\",\n    \"        self.val_csv = val_csv\\n\",\n    \"        self.test_csv = test_csv\\n\",\n    \"        self.tokenizer = tokenizer\\n\",\n    \"        self.batch_size = batch_size\\n\",\n    \"        self.max_length = max_length\\n\",\n    \"\\n\",\n    \"    def setup(self, stage=None):\\n\",\n    \"        if stage in ('fit', None):\\n\",\n    \"            self.train_dataset = cnn_dailymail(self.train_csv, self.tokenizer, self.max_length)\\n\",\n    \"            self.val_dataset = cnn_dailymail(self.val_csv, self.tokenizer, self.max_length)\\n\",\n    \"        if stage in ('test', None):\\n\",\n    \"            self.test_dataset = cnn_dailymail(self.test_csv, self.tokenizer, self.max_length)\\n\",\n    \"\\n\",\n    \"    def train_dataloader(self):\\n\",\n    \"        return torch.utils.data.DataLoader(self.train_dataset, batch_size=self.batch_size, shuffle=True, num_workers=4)\\n\",\n    \"\\n\",\n    \"    def val_dataloader(self):\\n\",\n    \"        return torch.utils.data.DataLoader(self.val_dataset, batch_size=self.batch_size, shuffle=False, num_workers=2)\\n\",\n    \"\\n\",\n    \"    def test_dataloader(self):\\n\",\n    \"        return torch.utils.data.DataLoader(self.test_dataset, batch_size=self.batch_size, shuffle=False, num_workers=2)\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"fbb699e1\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"class MyLightningModule(pl.LightningModule):\\n\",\n    \"    def __init__(self, model_name, learning_rate, weight_decay):\\n\",\n    \"        super().__init__()\\n\",\n    \"        self.model_name = model_name\\n\",\n    \"        self.learning_rate = learning_rate\\n\",\n    \"        self.weight_decay = weight_decay\\n\",\n    \"        \\n\",\n    \"        # Load the pre-trained model and tokenizer\\n\",\n    \"        self.model = torch.compile(AutoModelForSeq2SeqLM.from_pretrained(self.model_name))\\n\",\n    \"        \\n\",\n    \"        # Load the ROUGE metric\\n\",\n    \"        self.metric = load_metric(\\\"rouge\\\")\\n\",\n    \"\\n\",\n    \"    def forward(self, input_ids, attention_mask, labels=None):\\n\",\n    \"        output = self.model(\\n\",\n    \"            input_ids=input_ids,\\n\",\n    \"            attention_mask=attention_mask,\\n\",\n    \"            labels=labels,\\n\",\n    \"        )\\n\",\n    \"        return output.loss, output.logits\\n\",\n    \"    \\n\",\n    \"    def training_step(self, batch, batch_idx):\\n\",\n    \"        input_ids = batch[\\\"input_ids\\\"]\\n\",\n    \"        attention_mask = batch[\\\"attention_mask\\\"]\\n\",\n    \"        labels = batch[\\\"labels\\\"]\\n\",\n    \"        loss, logits = self(input_ids, attention_mask, labels)\\n\",\n    \"        self.log('train_loss', loss, on_epoch=True, on_step=True, prog_bar=True)\\n\",\n    \"        return {'loss': loss, 'logits': logits}\\n\",\n    \"    \\n\",\n    \"    def validation_step(self, batch, batch_idx):\\n\",\n    \"        input_ids = batch[\\\"input_ids\\\"]\\n\",\n    \"        attention_mask = batch[\\\"attention_mask\\\"]\\n\",\n    \"        labels = batch[\\\"labels\\\"]\\n\",\n    \"        loss, logits = self(input_ids, attention_mask, labels)\\n\",\n    \"        self.log('val_loss', loss, on_epoch=True, on_step=False)\\n\",\n    \"        \\n\",\n    \"        # Save logits and labels as instance attributes\\n\",\n    \"        if not hasattr(self, \\\"logits\\\"):\\n\",\n    \"            self.logits = logits\\n\",\n    \"        else:\\n\",\n    \"            self.logits = torch.cat((self.logits, logits), dim=0)\\n\",\n    \"        \\n\",\n    \"        if not hasattr(self, \\\"labels\\\"):\\n\",\n    \"            self.labels = labels\\n\",\n    \"        else:\\n\",\n    \"            self.labels = torch.cat((self.labels, labels), dim=0)\\n\",\n    \"            \\n\",\n    \"        return {'loss': loss, 'logits': logits, \\\"labels\\\":labels}\\n\",\n    \"    \\n\",\n    \"    def on_validation_epoch_end(self):\\n\",\n    \"        # Convert logits to predicted token IDs\\n\",\n    \"        pred_token_ids = self.logits.argmax(dim=-1)\\n\",\n    \"\\n\",\n    \"        # Decode predictions and labels using the saved instance attributes\\n\",\n    \"        decoded_preds = tokenizer.batch_decode(pred_token_ids, skip_special_tokens=True)\\n\",\n    \"        decoded_labels = tokenizer.batch_decode(self.labels, skip_special_tokens=True)\\n\",\n    \"\\n\",\n    \"        # Compute ROUGE scores\\n\",\n    \"        scores = self.metric.compute(predictions=decoded_preds, references=decoded_labels, rouge_types=[\\\"rouge1\\\"])[\\\"rouge1\\\"].mid\\n\",\n    \"\\n\",\n    \"        self.log('rouge1_precision', scores.precision, prog_bar=True)\\n\",\n    \"        self.log('rouge1_recall', scores.recall, prog_bar=True)\\n\",\n    \"        self.log('rouge1_fmeasure', scores.fmeasure, prog_bar=True)\\n\",\n    \"\\n\",\n    \"        # Clear logits and labels instance attributes for the next validation epoch\\n\",\n    \"        del self.logits\\n\",\n    \"        del self.labels\\n\",\n    \"    \\n\",\n    \"    def configure_optimizers(self):\\n\",\n    \"        optimizer = torch.optim.AdamW(self.parameters(), lr=self.learning_rate, weight_decay=self.weight_decay)\\n\",\n    \"        return optimizer\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"dd63c628\",\n   \"metadata\": {\n    \"scrolled\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# File paths\\n\",\n    \"train_csv = \\\"train.csv\\\"\\n\",\n    \"val_csv = \\\"validation.csv\\\"\\n\",\n    \"test_csv = \\\"test.csv\\\"\\n\",\n    \"\\n\",\n    \"# Create the data module\\n\",\n    \"dm = MyDataModule(train_csv, val_csv, test_csv, tokenizer, batch_size=16)\\n\",\n    \"dm.setup()\\n\",\n    \"\\n\",\n    \"model = MyLightningModule(model_name=\\\"t5-small\\\", learning_rate=1e-4, weight_decay=1e-5)\\n\",\n    \"trainer = pl.Trainer(accelerator=\\\"gpu\\\", devices=[0], max_epochs=1, precision=16)\\n\",\n    \"trainer.fit(model, datamodule=dm)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"b5d3d684\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"http://localhost:18888/notebooks/cnndaily_t5_lightning_customdataloading.ipynb\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"a0494596\",\n   \"metadata\": {},\n   \"source\": [\n    \"### next steps:\\n\",\n    \"* if article is > 512, because now we are truncating maybe it causes issues if the article is much longer?\\n\",\n    \"\\n\",\n    \"#### what we've done:\\n\",\n    \"* Change the data loading so it's more general, meaning on the fly loading from disk\\n\",\n    \"* add torch.compile\\n\",\n    \"* 1. Clean up the code, make it into scripts instead of notebook -> Train for an epoch (add multi-gpu training?)\\n\",\n    \"* add tensorboard visualization\\n\",\n    \"* not use pretrained weights but from scratch to ensure that training setup works and actually improving\\n\",\n    \"* 2. Create an inference step, send in news article -> get summary, check that it works\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"80a2efab\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"0f9b71ab\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3 (ipykernel)\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.10.9\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 5\n}\n"
  },
  {
    "path": "ML/Pytorch/huggingface/dataset.py",
    "content": "import pandas as pd\nimport pytorch_lightning as pl\nfrom torch.utils.data import Dataset\nimport torch\n\n\nclass cnn_dailymail(Dataset):\n    def __init__(self, csv_file, tokenizer, max_length=512):\n        self.data = pd.read_csv(csv_file)\n\n        # if the csv_file is \"train.csv\" then only take out 10% of the data. make sure to reset indices etc \n        #if csv_file == \"train.csv\":\n        #    self.data = self.data.sample(frac=0.05, random_state=42).reset_index(drop=True)\n\n        self.tokenizer = tokenizer\n        self.max_length = max_length\n\n    def __len__(self):\n        return len(self.data)\n\n    def __getitem__(self, idx):\n        article = self.data.loc[idx, \"article\"]\n        highlights = self.data.loc[idx, \"highlights\"]\n\n        inputs = self.tokenizer(\n            article,\n            truncation=True,\n            padding=\"max_length\",\n            max_length=self.max_length,\n            return_tensors=\"pt\",\n        )\n        targets = self.tokenizer(\n            highlights,\n            truncation=True,\n            padding=\"max_length\",\n            max_length=self.max_length,\n            return_tensors=\"pt\",\n        )\n\n        return {\n            \"input_ids\": inputs[\"input_ids\"].squeeze(),\n            \"attention_mask\": inputs[\"attention_mask\"].squeeze(),\n            \"labels\": targets[\"input_ids\"].squeeze(),\n        }\n\n\nclass MyDataModule(pl.LightningDataModule):\n    def __init__(\n        self, train_csv, val_csv, test_csv, tokenizer, batch_size=16, max_length=512\n    ):\n        super().__init__()\n        self.train_csv = train_csv\n        self.val_csv = val_csv\n        self.test_csv = test_csv\n        self.tokenizer = tokenizer\n        self.batch_size = batch_size\n        self.max_length = max_length\n\n    def setup(self, stage=None):\n        if stage in (\"fit\", None):\n            self.train_dataset = cnn_dailymail(\n                self.train_csv, self.tokenizer, self.max_length\n            )\n            self.val_dataset = cnn_dailymail(\n                self.val_csv, self.tokenizer, self.max_length\n            )\n        if stage in (\"test\", None):\n            self.test_dataset = cnn_dailymail(\n                self.test_csv, self.tokenizer, self.max_length\n            )\n\n    def train_dataloader(self):\n        return torch.utils.data.DataLoader(\n            self.train_dataset,\n            batch_size=self.batch_size,\n            pin_memory=True,\n            shuffle=True,\n            num_workers=6,\n        )\n\n    def val_dataloader(self):\n        return torch.utils.data.DataLoader(\n            self.val_dataset, batch_size=self.batch_size, shuffle=False, num_workers=2\n        )\n\n    def test_dataloader(self):\n        return torch.utils.data.DataLoader(\n            self.test_dataset, batch_size=self.batch_size, shuffle=False, num_workers=1\n        )\n"
  },
  {
    "path": "ML/Pytorch/huggingface/finetune_t5_lightning.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 2,\n   \"id\": \"ec1aae37\",\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"2023-02-21 16:36:20.707209: I tensorflow/core/platform/cpu_feature_guard.cc:193] This TensorFlow binary is optimized with oneAPI Deep Neural Network Library (oneDNN) to use the following CPU instructions in performance-critical operations:  AVX2 FMA\\n\",\n      \"To enable them in other operations, rebuild TensorFlow with the appropriate compiler flags.\\n\",\n      \"2023-02-21 16:36:21.233575: W tensorflow/compiler/xla/stream_executor/platform/default/dso_loader.cc:64] Could not load dynamic library 'libnvinfer.so.7'; dlerror: libnvinfer.so.7: cannot open shared object file: No such file or directory\\n\",\n      \"2023-02-21 16:36:21.233623: W tensorflow/compiler/xla/stream_executor/platform/default/dso_loader.cc:64] Could not load dynamic library 'libnvinfer_plugin.so.7'; dlerror: libnvinfer_plugin.so.7: cannot open shared object file: No such file or directory\\n\",\n      \"2023-02-21 16:36:21.233628: W tensorflow/compiler/tf2tensorrt/utils/py_utils.cc:38] TF-TRT Warning: Cannot dlopen some TensorRT libraries. If you would like to use Nvidia GPU with TensorRT, please make sure the missing libraries mentioned above are installed properly.\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"import warnings\\n\",\n    \"warnings.simplefilter(\\\"ignore\\\")\\n\",\n    \"\\n\",\n    \"import os\\n\",\n    \"os.environ[\\\"CUDA_DEVICE_ORDER\\\"]=\\\"PCI_BUS_ID\\\"\\n\",\n    \"os.environ[\\\"CUDA_VISIBLE_DEVICES\\\"]=\\\"1\\\"\\n\",\n    \"\\n\",\n    \"import numpy as np\\n\",\n    \"import torch\\n\",\n    \"\\n\",\n    \"import datasets \\n\",\n    \"import pytorch_lightning as pl\\n\",\n    \"\\n\",\n    \"from datasets import load_dataset, load_metric\\n\",\n    \"\\n\",\n    \"from transformers import (\\n\",\n    \"    AutoModel,\\n\",\n    \"    AutoModelForSeq2SeqLM,\\n\",\n    \"    AutoTokenizer,\\n\",\n    \"    DataCollatorForSeq2Seq,\\n\",\n    \"    Seq2SeqTrainingArguments,\\n\",\n    \"    Seq2SeqTrainer,\\n\",\n    \")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 3,\n   \"id\": \"5fd7cb0c\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"model_name = \\\"t5-small\\\"\\n\",\n    \"tokenizer = AutoTokenizer.from_pretrained(model_name)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 4,\n   \"id\": \"04530b1e\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Define the LightningDataModule\\n\",\n    \"class MyDataModule(pl.LightningDataModule):\\n\",\n    \"    def __init__(self, batch_size):\\n\",\n    \"        super().__init__()\\n\",\n    \"        self.batch_size = batch_size\\n\",\n    \"    \\n\",\n    \"    def prepare_data(self):\\n\",\n    \"        # Download and preprocess the data\\n\",\n    \"        load_dataset(\\\"cnn_dailymail\\\", \\\"3.0.0\\\", split=\\\"train[:10%]\\\")\\n\",\n    \"        load_dataset(\\\"cnn_dailymail\\\", \\\"3.0.0\\\", split=\\\"validation[:10%]\\\")\\n\",\n    \"    \\n\",\n    \"    def setup(self, stage=None):\\n\",\n    \"        # Load and preprocess the data\\n\",\n    \"        train_data = load_dataset(\\\"cnn_dailymail\\\", \\\"3.0.0\\\", split=\\\"train[:10%]\\\")\\n\",\n    \"        val_data = load_dataset(\\\"cnn_dailymail\\\", \\\"3.0.0\\\", split=\\\"validation[:10%]\\\")\\n\",\n    \"\\n\",\n    \"        self.train_ds = train_data.map(\\n\",\n    \"            self.preprocess_function, \\n\",\n    \"            batched=True, \\n\",\n    \"            batch_size=self.batch_size, \\n\",\n    \"            remove_columns=[\\\"article\\\", \\\"highlights\\\", \\\"id\\\"]\\n\",\n    \"        )\\n\",\n    \"\\n\",\n    \"        self.val_ds = val_data.map(\\n\",\n    \"            self.preprocess_function, \\n\",\n    \"            batched=True, \\n\",\n    \"            batch_size=self.batch_size,\\n\",\n    \"            remove_columns=[\\\"article\\\", \\\"highlights\\\", \\\"id\\\"]\\n\",\n    \"        )\\n\",\n    \"\\n\",\n    \"    def preprocess_function(self, batch):\\n\",\n    \"        inputs = tokenizer(batch[\\\"article\\\"], padding=\\\"max_length\\\", truncation=True, max_length=512)\\n\",\n    \"        outputs = tokenizer(batch[\\\"highlights\\\"], padding=\\\"max_length\\\", truncation=True, max_length=128)\\n\",\n    \"        batch[\\\"input_ids\\\"] = inputs.input_ids\\n\",\n    \"        batch[\\\"attention_mask\\\"] = inputs.attention_mask\\n\",\n    \"        batch[\\\"labels\\\"] = outputs.input_ids.copy()\\n\",\n    \"        return batch\\n\",\n    \"\\n\",\n    \"    def train_dataloader(self):\\n\",\n    \"        return torch.utils.data.DataLoader(self.train_ds, batch_size=self.batch_size)\\n\",\n    \"\\n\",\n    \"    def val_dataloader(self):\\n\",\n    \"        return torch.utils.data.DataLoader(self.val_ds, batch_size=self.batch_size)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 7,\n   \"id\": \"fbb699e1\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"class MyLightningModule(pl.LightningModule):\\n\",\n    \"    def __init__(self, model_name, learning_rate, weight_decay, batch_size):\\n\",\n    \"        super().__init__()\\n\",\n    \"        self.model_name = model_name\\n\",\n    \"        self.learning_rate = learning_rate\\n\",\n    \"        self.weight_decay = weight_decay\\n\",\n    \"        self.batch_size = batch_size\\n\",\n    \"        \\n\",\n    \"        # Load the pre-trained model and tokenizer\\n\",\n    \"        self.model = AutoModelForSeq2SeqLM.from_pretrained(self.model_name)\\n\",\n    \"\\n\",\n    \"        # Load the ROUGE metric\\n\",\n    \"        self.metric = load_metric(\\\"rouge\\\")\\n\",\n    \"\\n\",\n    \"    def forward(self, input_ids, attention_mask, labels=None):\\n\",\n    \"        output = self.model(\\n\",\n    \"            input_ids=input_ids,\\n\",\n    \"            attention_mask=attention_mask,\\n\",\n    \"            labels=labels,\\n\",\n    \"        )\\n\",\n    \"        return output.loss, output.logits\\n\",\n    \"    \\n\",\n    \"    def training_step(self, batch, batch_idx):\\n\",\n    \"        input_ids = batch[\\\"input_ids\\\"]\\n\",\n    \"        attention_mask = batch[\\\"attention_mask\\\"]\\n\",\n    \"        labels = batch[\\\"labels\\\"]\\n\",\n    \"        loss, logits = self(input_ids, attention_mask, labels)\\n\",\n    \"        self.log('train_loss', loss, on_epoch=True, on_step=False)\\n\",\n    \"        return {'loss': loss, 'logits': logits}\\n\",\n    \"    \\n\",\n    \"    def validation_step(self, batch, batch_idx):\\n\",\n    \"        input_ids = batch[\\\"input_ids\\\"]\\n\",\n    \"        attention_mask = batch[\\\"attention_mask\\\"]\\n\",\n    \"        labels = batch[\\\"labels\\\"]\\n\",\n    \"        loss, logits = self(input_ids, attention_mask, labels)\\n\",\n    \"        self.log('val_loss', loss, on_epoch=True, on_step=False)\\n\",\n    \"        return {'loss': loss, 'logits': logits, \\\"labels\\\":labels}\\n\",\n    \"    \\n\",\n    \"    def validation_epoch_end(self, outputs):\\n\",\n    \"        decoded_preds = []\\n\",\n    \"        decoded_labels = []\\n\",\n    \"        for output in outputs:\\n\",\n    \"            logits = output['logits']\\n\",\n    \"            labels = output['labels']\\n\",\n    \"            decoded_preds += self.tokenizer.batch_decode(logits, skip_special_tokens=True)\\n\",\n    \"            decoded_labels += self.tokenizer.batch_decode(labels, skip_special_tokens=True)\\n\",\n    \"        \\n\",\n    \"        scores = self.metric.compute(predictions=decoded_preds, references=decoded_labels, rouge_types=[\\\"rouge1\\\"])[\\\"rouge1\\\"].mid\\n\",\n    \"        \\n\",\n    \"        self.log('rouge1_precision', scores.precision, prog_bar=True)\\n\",\n    \"        self.log('rouge1_recall', scores.recall, prog_bar=True)\\n\",\n    \"        self.log('rouge1_fmeasure', scores.fmeasure, prog_bar=True)\\n\",\n    \"    \\n\",\n    \"    def configure_optimizers(self):\\n\",\n    \"        optimizer = torch.optim.AdamW(self.parameters(), lr=self.learning_rate, weight_decay=self.weight_decay)\\n\",\n    \"        return optimizer\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 8,\n   \"id\": \"dd63c628\",\n   \"metadata\": {\n    \"scrolled\": false\n   },\n   \"outputs\": [\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"GPU available: True (cuda), used: True\\n\",\n      \"TPU available: False, using: 0 TPU cores\\n\",\n      \"IPU available: False, using: 0 IPUs\\n\",\n      \"HPU available: False, using: 0 HPUs\\n\",\n      \"Found cached dataset cnn_dailymail (/home/mrbean/.cache/huggingface/datasets/cnn_dailymail/3.0.0/3.0.0/1b3c71476f6d152c31c1730e83ccb08bcf23e348233f4fcc11e182248e6bf7de)\\n\",\n      \"Found cached dataset cnn_dailymail (/home/mrbean/.cache/huggingface/datasets/cnn_dailymail/3.0.0/3.0.0/1b3c71476f6d152c31c1730e83ccb08bcf23e348233f4fcc11e182248e6bf7de)\\n\",\n      \"Found cached dataset cnn_dailymail (/home/mrbean/.cache/huggingface/datasets/cnn_dailymail/3.0.0/3.0.0/1b3c71476f6d152c31c1730e83ccb08bcf23e348233f4fcc11e182248e6bf7de)\\n\",\n      \"Found cached dataset cnn_dailymail (/home/mrbean/.cache/huggingface/datasets/cnn_dailymail/3.0.0/3.0.0/1b3c71476f6d152c31c1730e83ccb08bcf23e348233f4fcc11e182248e6bf7de)\\n\",\n      \"\\n\",\n      \"  0%|                                                                                                                                               | 0/1795 [00:00<?, ?ba/s]\\u001b[A\\n\",\n      \"  1%|▉                                                                                                                                    | 13/1795 [00:00<00:14, 121.44ba/s]\\u001b[A\\n\",\n      \"  1%|█▉                                                                                                                                   | 26/1795 [00:00<00:15, 117.31ba/s]\\u001b[A\\n\",\n      \"  2%|██▊                                                                                                                                  | 38/1795 [00:00<00:15, 114.50ba/s]\\u001b[A\\n\",\n      \"  3%|███▋                                                                                                                                 | 50/1795 [00:00<00:15, 114.43ba/s]\\u001b[A\\n\",\n      \"  3%|████▌                                                                                                                                | 62/1795 [00:00<00:15, 115.53ba/s]\\u001b[A\\n\",\n      \"  4%|█████▍                                                                                                                               | 74/1795 [00:00<00:15, 113.50ba/s]\\u001b[A\\n\",\n      \"  5%|██████▎                                                                                                                              | 86/1795 [00:00<00:15, 111.92ba/s]\\u001b[A\\n\",\n      \"  5%|███████▎                                                                                                                             | 98/1795 [00:00<00:15, 111.38ba/s]\\u001b[A\\n\",\n      \"  6%|████████                                                                                                                            | 110/1795 [00:00<00:15, 112.08ba/s]\\u001b[A\\n\",\n      \"  7%|████████▉                                                                                                                           | 122/1795 [00:01<00:14, 113.73ba/s]\\u001b[A\\n\",\n      \"  7%|█████████▊                                                                                                                          | 134/1795 [00:01<00:14, 113.43ba/s]\\u001b[A\\n\",\n      \"  8%|██████████▋                                                                                                                         | 146/1795 [00:01<00:14, 111.37ba/s]\\u001b[A\\n\",\n      \"  9%|███████████▌                                                                                                                        | 158/1795 [00:01<00:14, 111.32ba/s]\\u001b[A\\n\",\n      \"  9%|████████████▌                                                                                                                       | 170/1795 [00:01<00:14, 110.29ba/s]\\u001b[A\\n\",\n      \" 10%|█████████████▍                                                                                                                      | 182/1795 [00:01<00:14, 110.06ba/s]\\u001b[A\\n\",\n      \" 11%|██████████████▎                                                                                                                     | 194/1795 [00:01<00:14, 111.06ba/s]\\u001b[A\\n\",\n      \" 11%|███████████████▏                                                                                                                    | 206/1795 [00:01<00:14, 111.15ba/s]\\u001b[A\\n\",\n      \" 12%|████████████████                                                                                                                    | 218/1795 [00:01<00:14, 110.27ba/s]\\u001b[A\\n\",\n      \" 13%|████████████████▉                                                                                                                   | 230/1795 [00:02<00:14, 109.17ba/s]\\u001b[A\\n\",\n      \" 13%|█████████████████▋                                                                                                                  | 241/1795 [00:02<00:14, 107.81ba/s]\\u001b[A\\n\",\n      \" 14%|██████████████████▌                                                                                                                 | 252/1795 [00:02<00:14, 107.84ba/s]\\u001b[A\\n\",\n      \" 15%|███████████████████▎                                                                                                                | 263/1795 [00:02<00:14, 107.73ba/s]\\u001b[A\\n\",\n      \" 15%|████████████████████▏                                                                                                               | 274/1795 [00:02<00:14, 107.06ba/s]\\u001b[A\\n\",\n      \" 16%|█████████████████████                                                                                                               | 286/1795 [00:02<00:13, 108.37ba/s]\\u001b[A\\n\",\n      \" 17%|█████████████████████▊                                                                                                              | 297/1795 [00:02<00:13, 107.89ba/s]\\u001b[A\\n\",\n      \" 17%|██████████████████████▋                                                                                                             | 309/1795 [00:02<00:13, 108.63ba/s]\\u001b[A\\n\",\n      \" 18%|███████████████████████▌                                                                                                            | 320/1795 [00:02<00:13, 106.85ba/s]\\u001b[A\\n\",\n      \" 18%|████████████████████████▎                                                                                                           | 331/1795 [00:03<00:13, 105.16ba/s]\\u001b[A\\n\",\n      \" 19%|█████████████████████████▏                                                                                                          | 342/1795 [00:03<00:13, 105.20ba/s]\\u001b[A\\n\",\n      \" 20%|█████████████████████████▉                                                                                                          | 353/1795 [00:03<00:13, 106.52ba/s]\\u001b[A\\n\",\n      \" 20%|██████████████████████████▊                                                                                                         | 364/1795 [00:03<00:13, 106.07ba/s]\\u001b[A\\n\",\n      \" 21%|███████████████████████████▌                                                                                                        | 375/1795 [00:03<00:13, 106.21ba/s]\\u001b[A\\n\",\n      \" 22%|████████████████████████████▍                                                                                                       | 386/1795 [00:03<00:13, 106.57ba/s]\\u001b[A\\n\",\n      \" 22%|█████████████████████████████▎                                                                                                      | 398/1795 [00:03<00:12, 108.52ba/s]\\u001b[A\\n\",\n      \" 23%|██████████████████████████████                                                                                                      | 409/1795 [00:03<00:12, 108.42ba/s]\\u001b[A\\n\",\n      \" 23%|██████████████████████████████▉                                                                                                     | 421/1795 [00:03<00:12, 110.30ba/s]\\u001b[A\\n\",\n      \" 24%|███████████████████████████████▊                                                                                                    | 433/1795 [00:03<00:12, 108.73ba/s]\\u001b[A\\n\",\n      \" 25%|████████████████████████████████▋                                                                                                   | 444/1795 [00:04<00:12, 106.43ba/s]\\u001b[A\\n\",\n      \" 25%|█████████████████████████████████▍                                                                                                  | 455/1795 [00:04<00:12, 106.82ba/s]\\u001b[A\\n\",\n      \" 26%|██████████████████████████████████▎                                                                                                 | 466/1795 [00:04<00:12, 105.85ba/s]\\u001b[A\\n\",\n      \" 27%|███████████████████████████████████                                                                                                 | 477/1795 [00:04<00:12, 107.02ba/s]\\u001b[A\\n\",\n      \" 27%|███████████████████████████████████▉                                                                                                | 488/1795 [00:04<00:12, 106.66ba/s]\\u001b[A\\n\",\n      \" 28%|████████████████████████████████████▊                                                                                               | 500/1795 [00:04<00:11, 108.59ba/s]\\u001b[A\\n\",\n      \" 28%|█████████████████████████████████████▌                                                                                              | 511/1795 [00:04<00:12, 106.49ba/s]\\u001b[A\\n\",\n      \" 29%|██████████████████████████████████████▍                                                                                             | 523/1795 [00:04<00:11, 109.26ba/s]\\u001b[A\\n\",\n      \" 30%|███████████████████████████████████████▎                                                                                            | 535/1795 [00:04<00:11, 109.78ba/s]\\u001b[A\\n\",\n      \" 30%|████████████████████████████████████████▏                                                                                           | 546/1795 [00:04<00:11, 108.30ba/s]\\u001b[A\\n\",\n      \" 31%|████████████████████████████████████████▉                                                                                           | 557/1795 [00:05<00:11, 107.77ba/s]\\u001b[A\\n\",\n      \" 32%|█████████████████████████████████████████▊                                                                                          | 569/1795 [00:05<00:11, 108.36ba/s]\\u001b[A\\n\",\n      \" 32%|██████████████████████████████████████████▋                                                                                         | 580/1795 [00:05<00:11, 107.05ba/s]\\u001b[A\\n\",\n      \" 33%|███████████████████████████████████████████▌                                                                                        | 592/1795 [00:05<00:11, 108.48ba/s]\\u001b[A\\n\",\n      \" 34%|████████████████████████████████████████████▎                                                                                       | 603/1795 [00:05<00:11, 108.25ba/s]\\u001b[A\\n\",\n      \" 34%|█████████████████████████████████████████████▏                                                                                      | 615/1795 [00:05<00:10, 110.59ba/s]\\u001b[A\\n\",\n      \" 35%|██████████████████████████████████████████████                                                                                      | 627/1795 [00:05<00:10, 111.44ba/s]\\u001b[A\\n\",\n      \" 36%|██████████████████████████████████████████████▉                                                                                     | 639/1795 [00:05<00:10, 109.07ba/s]\\u001b[A\\n\",\n      \" 36%|███████████████████████████████████████████████▊                                                                                    | 651/1795 [00:05<00:10, 109.77ba/s]\\u001b[A\\n\",\n      \" 37%|████████████████████████████████████████████████▋                                                                                   | 662/1795 [00:06<00:10, 109.69ba/s]\\u001b[A\\n\",\n      \" 37%|█████████████████████████████████████████████████▍                                                                                  | 673/1795 [00:06<00:10, 109.08ba/s]\\u001b[A\\n\",\n      \" 38%|██████████████████████████████████████████████████▎                                                                                 | 685/1795 [00:06<00:10, 109.77ba/s]\\u001b[A\\n\",\n      \" 39%|███████████████████████████████████████████████████▎                                                                                | 697/1795 [00:06<00:10, 109.54ba/s]\\u001b[A\\n\",\n      \" 39%|████████████████████████████████████████████████████                                                                                | 708/1795 [00:06<00:09, 109.08ba/s]\\u001b[A\\n\",\n      \" 40%|████████████████████████████████████████████████████▉                                                                               | 720/1795 [00:06<00:09, 110.53ba/s]\\u001b[A\\n\",\n      \" 41%|█████████████████████████████████████████████████████▊                                                                              | 732/1795 [00:06<00:09, 108.30ba/s]\\u001b[A\\n\",\n      \" 41%|██████████████████████████████████████████████████████▋                                                                             | 744/1795 [00:06<00:09, 110.04ba/s]\\u001b[A\\n\",\n      \" 42%|███████████████████████████████████████████████████████▌                                                                            | 756/1795 [00:06<00:09, 112.10ba/s]\\u001b[A\\n\",\n      \" 43%|████████████████████████████████████████████████████████▍                                                                           | 768/1795 [00:07<00:09, 111.21ba/s]\\u001b[A\\n\",\n      \" 43%|█████████████████████████████████████████████████████████▎                                                                          | 780/1795 [00:07<00:09, 111.99ba/s]\\u001b[A\\n\",\n      \" 44%|██████████████████████████████████████████████████████████▏                                                                         | 792/1795 [00:07<00:08, 112.21ba/s]\\u001b[A\\n\",\n      \" 45%|███████████████████████████████████████████████████████████                                                                         | 804/1795 [00:07<00:09, 109.31ba/s]\\u001b[A\\n\",\n      \" 46%|████████████████████████████████████████████████████████████                                                                        | 817/1795 [00:07<00:08, 113.17ba/s]\\u001b[A\\n\",\n      \" 46%|████████████████████████████████████████████████████████████▉                                                                       | 829/1795 [00:07<00:08, 113.26ba/s]\\u001b[A\\n\",\n      \" 47%|█████████████████████████████████████████████████████████████▊                                                                      | 841/1795 [00:07<00:08, 113.69ba/s]\\u001b[A\\n\",\n      \" 48%|██████████████████████████████████████████████████████████████▋                                                                     | 853/1795 [00:07<00:08, 114.08ba/s]\\u001b[A\\n\",\n      \" 48%|███████████████████████████████████████████████████████████████▌                                                                    | 865/1795 [00:07<00:08, 112.82ba/s]\\u001b[A\\n\",\n      \" 49%|████████████████████████████████████████████████████████████████▍                                                                   | 877/1795 [00:07<00:08, 113.22ba/s]\\u001b[A\\n\",\n      \" 50%|█████████████████████████████████████████████████████████████████▍                                                                  | 890/1795 [00:08<00:07, 115.71ba/s]\\u001b[A\\n\",\n      \" 50%|██████████████████████████████████████████████████████████████████▎                                                                 | 902/1795 [00:08<00:07, 115.77ba/s]\\u001b[A\\n\",\n      \" 51%|███████████████████████████████████████████████████████████████████▏                                                                | 914/1795 [00:08<00:07, 114.07ba/s]\\u001b[A\\n\",\n      \" 52%|████████████████████████████████████████████████████████████████████                                                                | 926/1795 [00:08<00:07, 114.19ba/s]\\u001b[A\\n\",\n      \" 52%|████████████████████████████████████████████████████████████████████▉                                                               | 938/1795 [00:08<00:07, 115.57ba/s]\\u001b[A\\n\",\n      \" 53%|█████████████████████████████████████████████████████████████████████▊                                                              | 950/1795 [00:08<00:07, 115.94ba/s]\\u001b[A\\n\",\n      \" 54%|██████████████████████████████████████████████████████████████████████▋                                                             | 962/1795 [00:08<00:07, 116.65ba/s]\\u001b[A\\n\",\n      \" 54%|███████████████████████████████████████████████████████████████████████▋                                                            | 974/1795 [00:08<00:07, 113.94ba/s]\\u001b[A\\n\",\n      \" 55%|████████████████████████████████████████████████████████████████████████▌                                                           | 986/1795 [00:08<00:07, 111.71ba/s]\\u001b[A\\n\",\n      \" 56%|█████████████████████████████████████████████████████████████████████████▍                                                          | 998/1795 [00:09<00:07, 107.78ba/s]\\u001b[A\\n\",\n      \" 56%|█████████████████████████████████████████████████████████████████████████▋                                                         | 1009/1795 [00:09<00:07, 105.28ba/s]\\u001b[A\\n\"\n     ]\n    },\n    {\n     \"name\": \"stderr\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \" 57%|██████████████████████████████████████████████████████████████████████████▌                                                        | 1021/1795 [00:09<00:07, 107.16ba/s]\\u001b[A\\n\",\n      \" 57%|███████████████████████████████████████████████████████████████████████████▎                                                       | 1032/1795 [00:09<00:07, 107.83ba/s]\\u001b[A\\n\",\n      \" 58%|████████████████████████████████████████████████████████████████████████████▏                                                      | 1044/1795 [00:09<00:06, 109.92ba/s]\\u001b[A\\n\",\n      \" 59%|█████████████████████████████████████████████████████████████████████████████                                                      | 1056/1795 [00:09<00:06, 112.47ba/s]\\u001b[A\\n\",\n      \" 59%|█████████████████████████████████████████████████████████████████████████████▉                                                     | 1068/1795 [00:09<00:06, 113.56ba/s]\\u001b[A\\n\",\n      \" 60%|██████████████████████████████████████████████████████████████████████████████▊                                                    | 1080/1795 [00:09<00:06, 111.84ba/s]\\u001b[A\\n\",\n      \" 61%|███████████████████████████████████████████████████████████████████████████████▋                                                   | 1092/1795 [00:09<00:06, 111.27ba/s]\\u001b[A\\n\",\n      \" 62%|████████████████████████████████████████████████████████████████████████████████▌                                                  | 1104/1795 [00:10<00:06, 110.39ba/s]\\u001b[A\\n\",\n      \" 62%|█████████████████████████████████████████████████████████████████████████████████▍                                                 | 1116/1795 [00:10<00:06, 111.33ba/s]\\u001b[A\\n\",\n      \" 63%|██████████████████████████████████████████████████████████████████████████████████▎                                                | 1128/1795 [00:10<00:05, 111.32ba/s]\\u001b[A\\n\",\n      \" 64%|███████████████████████████████████████████████████████████████████████████████████▏                                               | 1140/1795 [00:10<00:05, 112.20ba/s]\\u001b[A\\n\",\n      \" 64%|████████████████████████████████████████████████████████████████████████████████████▏                                              | 1153/1795 [00:10<00:05, 115.15ba/s]\\u001b[A\\n\",\n      \" 65%|█████████████████████████████████████████████████████████████████████████████████████                                              | 1165/1795 [00:10<00:05, 114.07ba/s]\\u001b[A\\n\",\n      \" 66%|█████████████████████████████████████████████████████████████████████████████████████▉                                             | 1177/1795 [00:10<00:05, 110.61ba/s]\\u001b[A\\n\",\n      \" 66%|██████████████████████████████████████████████████████████████████████████████████████▊                                            | 1189/1795 [00:10<00:05, 110.61ba/s]\\u001b[A\\n\",\n      \" 67%|███████████████████████████████████████████████████████████████████████████████████████▋                                           | 1201/1795 [00:10<00:05, 112.56ba/s]\\u001b[A\\n\",\n      \" 68%|████████████████████████████████████████████████████████████████████████████████████████▌                                          | 1213/1795 [00:10<00:05, 112.74ba/s]\\u001b[A\\n\",\n      \" 68%|█████████████████████████████████████████████████████████████████████████████████████████▍                                         | 1225/1795 [00:11<00:05, 111.53ba/s]\\u001b[A\\n\",\n      \" 69%|██████████████████████████████████████████████████████████████████████████████████████████▎                                        | 1237/1795 [00:11<00:05, 110.36ba/s]\\u001b[A\\n\",\n      \" 70%|███████████████████████████████████████████████████████████████████████████████████████████▏                                       | 1249/1795 [00:11<00:04, 109.75ba/s]\\u001b[A\\n\",\n      \" 70%|███████████████████████████████████████████████████████████████████████████████████████████▉                                       | 1260/1795 [00:11<00:04, 107.40ba/s]\\u001b[A\\n\",\n      \" 71%|████████████████████████████████████████████████████████████████████████████████████████████▊                                      | 1271/1795 [00:11<00:04, 106.67ba/s]\\u001b[A\\n\",\n      \" 71%|█████████████████████████████████████████████████████████████████████████████████████████████▌                                     | 1282/1795 [00:11<00:04, 106.95ba/s]\\u001b[A\\n\",\n      \" 72%|██████████████████████████████████████████████████████████████████████████████████████████████▎                                    | 1293/1795 [00:11<00:04, 107.69ba/s]\\u001b[A\\n\",\n      \" 73%|███████████████████████████████████████████████████████████████████████████████████████████████▏                                   | 1304/1795 [00:11<00:04, 107.86ba/s]\\u001b[A\\n\",\n      \" 73%|███████████████████████████████████████████████████████████████████████████████████████████████▉                                   | 1315/1795 [00:11<00:04, 107.71ba/s]\\u001b[A\\n\",\n      \" 74%|████████████████████████████████████████████████████████████████████████████████████████████████▊                                  | 1326/1795 [00:12<00:04, 107.71ba/s]\\u001b[A\\n\",\n      \" 74%|█████████████████████████████████████████████████████████████████████████████████████████████████▌                                 | 1337/1795 [00:12<00:04, 108.29ba/s]\\u001b[A\\n\",\n      \" 75%|██████████████████████████████████████████████████████████████████████████████████████████████████▍                                | 1349/1795 [00:12<00:04, 109.37ba/s]\\u001b[A\\n\",\n      \" 76%|███████████████████████████████████████████████████████████████████████████████████████████████████▎                               | 1361/1795 [00:12<00:03, 110.19ba/s]\\u001b[A\\n\",\n      \" 76%|████████████████████████████████████████████████████████████████████████████████████████████████████▏                              | 1373/1795 [00:12<00:03, 110.42ba/s]\\u001b[A\\n\",\n      \" 77%|█████████████████████████████████████████████████████████████████████████████████████████████████████                              | 1385/1795 [00:12<00:03, 111.32ba/s]\\u001b[A\\n\",\n      \" 78%|█████████████████████████████████████████████████████████████████████████████████████████████████████▉                             | 1397/1795 [00:12<00:03, 112.54ba/s]\\u001b[A\\n\",\n      \" 78%|██████████████████████████████████████████████████████████████████████████████████████████████████████▊                            | 1409/1795 [00:12<00:03, 112.91ba/s]\\u001b[A\\n\",\n      \" 79%|███████████████████████████████████████████████████████████████████████████████████████████████████████▋                           | 1421/1795 [00:12<00:03, 111.93ba/s]\\u001b[A\\n\",\n      \" 80%|████████████████████████████████████████████████████████████████████████████████████████████████████████▌                          | 1433/1795 [00:12<00:03, 109.91ba/s]\\u001b[A\\n\",\n      \" 81%|█████████████████████████████████████████████████████████████████████████████████████████████████████████▍                         | 1445/1795 [00:13<00:03, 109.29ba/s]\\u001b[A\\n\",\n      \" 81%|██████████████████████████████████████████████████████████████████████████████████████████████████████████▎                        | 1456/1795 [00:13<00:03, 107.81ba/s]\\u001b[A\\n\",\n      \" 82%|███████████████████████████████████████████████████████████████████████████████████████████████████████████                        | 1467/1795 [00:13<00:03, 107.59ba/s]\\u001b[A\\n\",\n      \" 82%|███████████████████████████████████████████████████████████████████████████████████████████████████████████▉                       | 1479/1795 [00:13<00:02, 107.83ba/s]\\u001b[A\\n\",\n      \" 83%|████████████████████████████████████████████████████████████████████████████████████████████████████████████▊                      | 1491/1795 [00:13<00:02, 108.92ba/s]\\u001b[A\\n\",\n      \" 84%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████▌                     | 1502/1795 [00:13<00:02, 108.64ba/s]\\u001b[A\\n\",\n      \" 84%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████▍                    | 1514/1795 [00:13<00:02, 110.24ba/s]\\u001b[A\\n\",\n      \" 85%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████▎                   | 1526/1795 [00:13<00:02, 111.64ba/s]\\u001b[A\\n\",\n      \" 86%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████▏                  | 1538/1795 [00:13<00:02, 110.08ba/s]\\u001b[A\\n\",\n      \" 86%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████                  | 1550/1795 [00:14<00:02, 108.01ba/s]\\u001b[A\\n\",\n      \" 87%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████▉                 | 1562/1795 [00:14<00:02, 109.96ba/s]\\u001b[A\\n\",\n      \" 88%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████▊                | 1574/1795 [00:14<00:02, 109.67ba/s]\\u001b[A\\n\",\n      \" 88%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████▋               | 1585/1795 [00:14<00:01, 107.92ba/s]\\u001b[A\\n\",\n      \" 89%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▍              | 1596/1795 [00:14<00:01, 108.38ba/s]\\u001b[A\\n\",\n      \" 90%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▍             | 1609/1795 [00:14<00:01, 112.44ba/s]\\u001b[A\\n\",\n      \" 90%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▎            | 1621/1795 [00:14<00:01, 110.29ba/s]\\u001b[A\\n\",\n      \" 91%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▏           | 1633/1795 [00:14<00:01, 110.18ba/s]\\u001b[A\\n\",\n      \" 92%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████           | 1645/1795 [00:14<00:01, 108.21ba/s]\\u001b[A\\n\",\n      \" 92%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▊          | 1656/1795 [00:15<00:01, 107.62ba/s]\\u001b[A\\n\",\n      \" 93%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▋         | 1667/1795 [00:15<00:01, 106.66ba/s]\\u001b[A\\n\",\n      \" 93%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▍        | 1678/1795 [00:15<00:01, 104.97ba/s]\\u001b[A\\n\",\n      \" 94%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▎       | 1689/1795 [00:15<00:01, 105.67ba/s]\\u001b[A\\n\",\n      \" 95%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████       | 1700/1795 [00:15<00:00, 106.08ba/s]\\u001b[A\\n\",\n      \" 95%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▉      | 1712/1795 [00:15<00:00, 107.07ba/s]\\u001b[A\\n\",\n      \" 96%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▊     | 1724/1795 [00:15<00:00, 108.53ba/s]\\u001b[A\\n\",\n      \" 97%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▌    | 1735/1795 [00:15<00:00, 108.05ba/s]\\u001b[A\\n\",\n      \" 97%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▍   | 1747/1795 [00:15<00:00, 110.64ba/s]\\u001b[A\\n\",\n      \" 98%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▎  | 1759/1795 [00:15<00:00, 111.38ba/s]\\u001b[A\\n\",\n      \" 99%|█████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████▏ | 1771/1795 [00:16<00:00, 110.67ba/s]\\u001b[A\\n\",\n      \" 99%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████ | 1783/1795 [00:16<00:00, 110.52ba/s]\\u001b[A\\n\",\n      \"100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 1795/1795 [00:16<00:00, 109.98ba/s]\\u001b[A\\n\",\n      \"\\n\",\n      \"  0%|                                                                                                                                                 | 0/84 [00:00<?, ?ba/s]\\u001b[A\\n\",\n      \" 14%|███████████████████▎                                                                                                                   | 12/84 [00:00<00:00, 110.99ba/s]\\u001b[A\\n\",\n      \" 29%|██████████████████████████████████████▌                                                                                                | 24/84 [00:00<00:00, 110.80ba/s]\\u001b[A\\n\",\n      \" 43%|█████████████████████████████████████████████████████████▊                                                                             | 36/84 [00:00<00:00, 107.75ba/s]\\u001b[A\\n\",\n      \" 56%|███████████████████████████████████████████████████████████████████████████▌                                                           | 47/84 [00:00<00:00, 103.83ba/s]\\u001b[A\\n\",\n      \" 69%|█████████████████████████████████████████████████████████████████████████████████████████████▏                                         | 58/84 [00:00<00:00, 102.87ba/s]\\u001b[A\\n\",\n      \" 82%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████▉                        | 69/84 [00:00<00:00, 104.54ba/s]\\u001b[A\\n\",\n      \"100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 84/84 [00:00<00:00, 106.09ba/s]\\u001b[A\\n\",\n      \"LOCAL_RANK: 0 - CUDA_VISIBLE_DEVICES: [1]\\n\",\n      \"\\n\",\n      \"  | Name  | Type                       | Params\\n\",\n      \"-----------------------------------------------------\\n\",\n      \"0 | model | T5ForConditionalGeneration | 60.5 M\\n\",\n      \"-----------------------------------------------------\\n\",\n      \"60.5 M    Trainable params\\n\",\n      \"0         Non-trainable params\\n\",\n      \"60.5 M    Total params\\n\",\n      \"242.026   Total estimated model params size (MB)\\n\"\n     ]\n    },\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Sanity Checking DataLoader 0:   0%|                                                                                                                    | 0/2 [00:00<?, ?it/s]\"\n     ]\n    },\n    {\n     \"ename\": \"AttributeError\",\n     \"evalue\": \"'list' object has no attribute 'size'\",\n     \"output_type\": \"error\",\n     \"traceback\": [\n      \"\\u001b[0;31m---------------------------------------------------------------------------\\u001b[0m\",\n      \"\\u001b[0;31mAttributeError\\u001b[0m                            Traceback (most recent call last)\",\n      \"Cell \\u001b[0;32mIn[8], line 5\\u001b[0m\\n\\u001b[1;32m      3\\u001b[0m trainer \\u001b[38;5;241m=\\u001b[39m pl\\u001b[38;5;241m.\\u001b[39mTrainer(accelerator\\u001b[38;5;241m=\\u001b[39m\\u001b[38;5;124m\\\"\\u001b[39m\\u001b[38;5;124mgpu\\u001b[39m\\u001b[38;5;124m\\\"\\u001b[39m, devices\\u001b[38;5;241m=\\u001b[39m[\\u001b[38;5;241m0\\u001b[39m], max_epochs\\u001b[38;5;241m=\\u001b[39m\\u001b[38;5;241m10\\u001b[39m)\\n\\u001b[1;32m      4\\u001b[0m dm \\u001b[38;5;241m=\\u001b[39m MyDataModule(batch_size\\u001b[38;5;241m=\\u001b[39m\\u001b[38;5;241m16\\u001b[39m)\\n\\u001b[0;32m----> 5\\u001b[0m \\u001b[43mtrainer\\u001b[49m\\u001b[38;5;241;43m.\\u001b[39;49m\\u001b[43mfit\\u001b[49m\\u001b[43m(\\u001b[49m\\u001b[43mmodel\\u001b[49m\\u001b[43m,\\u001b[49m\\u001b[43m \\u001b[49m\\u001b[43mdatamodule\\u001b[49m\\u001b[38;5;241;43m=\\u001b[39;49m\\u001b[43mdm\\u001b[49m\\u001b[43m)\\u001b[49m\\n\",\n      \"File \\u001b[0;32m~/.conda/envs/whisper_lightning/lib/python3.10/site-packages/pytorch_lightning/trainer/trainer.py:608\\u001b[0m, in \\u001b[0;36mTrainer.fit\\u001b[0;34m(self, model, train_dataloaders, val_dataloaders, datamodule, ckpt_path)\\u001b[0m\\n\\u001b[1;32m    606\\u001b[0m     \\u001b[38;5;28;01mraise\\u001b[39;00m \\u001b[38;5;167;01mTypeError\\u001b[39;00m(\\u001b[38;5;124mf\\u001b[39m\\u001b[38;5;124m\\\"\\u001b[39m\\u001b[38;5;124m`Trainer.fit()` requires a `LightningModule`, got: \\u001b[39m\\u001b[38;5;132;01m{\\u001b[39;00mmodel\\u001b[38;5;241m.\\u001b[39m\\u001b[38;5;18m__class__\\u001b[39m\\u001b[38;5;241m.\\u001b[39m\\u001b[38;5;18m__qualname__\\u001b[39m\\u001b[38;5;132;01m}\\u001b[39;00m\\u001b[38;5;124m\\\"\\u001b[39m)\\n\\u001b[1;32m    607\\u001b[0m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39mstrategy\\u001b[38;5;241m.\\u001b[39m_lightning_module \\u001b[38;5;241m=\\u001b[39m model\\n\\u001b[0;32m--> 608\\u001b[0m \\u001b[43mcall\\u001b[49m\\u001b[38;5;241;43m.\\u001b[39;49m\\u001b[43m_call_and_handle_interrupt\\u001b[49m\\u001b[43m(\\u001b[49m\\n\\u001b[1;32m    609\\u001b[0m \\u001b[43m    \\u001b[49m\\u001b[38;5;28;43mself\\u001b[39;49m\\u001b[43m,\\u001b[49m\\u001b[43m \\u001b[49m\\u001b[38;5;28;43mself\\u001b[39;49m\\u001b[38;5;241;43m.\\u001b[39;49m\\u001b[43m_fit_impl\\u001b[49m\\u001b[43m,\\u001b[49m\\u001b[43m \\u001b[49m\\u001b[43mmodel\\u001b[49m\\u001b[43m,\\u001b[49m\\u001b[43m \\u001b[49m\\u001b[43mtrain_dataloaders\\u001b[49m\\u001b[43m,\\u001b[49m\\u001b[43m \\u001b[49m\\u001b[43mval_dataloaders\\u001b[49m\\u001b[43m,\\u001b[49m\\u001b[43m \\u001b[49m\\u001b[43mdatamodule\\u001b[49m\\u001b[43m,\\u001b[49m\\u001b[43m \\u001b[49m\\u001b[43mckpt_path\\u001b[49m\\n\\u001b[1;32m    610\\u001b[0m \\u001b[43m\\u001b[49m\\u001b[43m)\\u001b[49m\\n\",\n      \"File \\u001b[0;32m~/.conda/envs/whisper_lightning/lib/python3.10/site-packages/pytorch_lightning/trainer/call.py:38\\u001b[0m, in \\u001b[0;36m_call_and_handle_interrupt\\u001b[0;34m(trainer, trainer_fn, *args, **kwargs)\\u001b[0m\\n\\u001b[1;32m     36\\u001b[0m         \\u001b[38;5;28;01mreturn\\u001b[39;00m trainer\\u001b[38;5;241m.\\u001b[39mstrategy\\u001b[38;5;241m.\\u001b[39mlauncher\\u001b[38;5;241m.\\u001b[39mlaunch(trainer_fn, \\u001b[38;5;241m*\\u001b[39margs, trainer\\u001b[38;5;241m=\\u001b[39mtrainer, \\u001b[38;5;241m*\\u001b[39m\\u001b[38;5;241m*\\u001b[39mkwargs)\\n\\u001b[1;32m     37\\u001b[0m     \\u001b[38;5;28;01melse\\u001b[39;00m:\\n\\u001b[0;32m---> 38\\u001b[0m         \\u001b[38;5;28;01mreturn\\u001b[39;00m \\u001b[43mtrainer_fn\\u001b[49m\\u001b[43m(\\u001b[49m\\u001b[38;5;241;43m*\\u001b[39;49m\\u001b[43margs\\u001b[49m\\u001b[43m,\\u001b[49m\\u001b[43m \\u001b[49m\\u001b[38;5;241;43m*\\u001b[39;49m\\u001b[38;5;241;43m*\\u001b[39;49m\\u001b[43mkwargs\\u001b[49m\\u001b[43m)\\u001b[49m\\n\\u001b[1;32m     40\\u001b[0m \\u001b[38;5;28;01mexcept\\u001b[39;00m _TunerExitException:\\n\\u001b[1;32m     41\\u001b[0m     trainer\\u001b[38;5;241m.\\u001b[39m_call_teardown_hook()\\n\",\n      \"File \\u001b[0;32m~/.conda/envs/whisper_lightning/lib/python3.10/site-packages/pytorch_lightning/trainer/trainer.py:650\\u001b[0m, in \\u001b[0;36mTrainer._fit_impl\\u001b[0;34m(self, model, train_dataloaders, val_dataloaders, datamodule, ckpt_path)\\u001b[0m\\n\\u001b[1;32m    643\\u001b[0m ckpt_path \\u001b[38;5;241m=\\u001b[39m ckpt_path \\u001b[38;5;129;01mor\\u001b[39;00m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39mresume_from_checkpoint\\n\\u001b[1;32m    644\\u001b[0m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39m_ckpt_path \\u001b[38;5;241m=\\u001b[39m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39m_checkpoint_connector\\u001b[38;5;241m.\\u001b[39m_set_ckpt_path(\\n\\u001b[1;32m    645\\u001b[0m     \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39mstate\\u001b[38;5;241m.\\u001b[39mfn,\\n\\u001b[1;32m    646\\u001b[0m     ckpt_path,  \\u001b[38;5;66;03m# type: ignore[arg-type]\\u001b[39;00m\\n\\u001b[1;32m    647\\u001b[0m     model_provided\\u001b[38;5;241m=\\u001b[39m\\u001b[38;5;28;01mTrue\\u001b[39;00m,\\n\\u001b[1;32m    648\\u001b[0m     model_connected\\u001b[38;5;241m=\\u001b[39m\\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39mlightning_module \\u001b[38;5;129;01mis\\u001b[39;00m \\u001b[38;5;129;01mnot\\u001b[39;00m \\u001b[38;5;28;01mNone\\u001b[39;00m,\\n\\u001b[1;32m    649\\u001b[0m )\\n\\u001b[0;32m--> 650\\u001b[0m \\u001b[38;5;28;43mself\\u001b[39;49m\\u001b[38;5;241;43m.\\u001b[39;49m\\u001b[43m_run\\u001b[49m\\u001b[43m(\\u001b[49m\\u001b[43mmodel\\u001b[49m\\u001b[43m,\\u001b[49m\\u001b[43m \\u001b[49m\\u001b[43mckpt_path\\u001b[49m\\u001b[38;5;241;43m=\\u001b[39;49m\\u001b[38;5;28;43mself\\u001b[39;49m\\u001b[38;5;241;43m.\\u001b[39;49m\\u001b[43mckpt_path\\u001b[49m\\u001b[43m)\\u001b[49m\\n\\u001b[1;32m    652\\u001b[0m \\u001b[38;5;28;01massert\\u001b[39;00m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39mstate\\u001b[38;5;241m.\\u001b[39mstopped\\n\\u001b[1;32m    653\\u001b[0m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39mtraining \\u001b[38;5;241m=\\u001b[39m \\u001b[38;5;28;01mFalse\\u001b[39;00m\\n\",\n      \"File \\u001b[0;32m~/.conda/envs/whisper_lightning/lib/python3.10/site-packages/pytorch_lightning/trainer/trainer.py:1103\\u001b[0m, in \\u001b[0;36mTrainer._run\\u001b[0;34m(self, model, ckpt_path)\\u001b[0m\\n\\u001b[1;32m   1099\\u001b[0m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39m_checkpoint_connector\\u001b[38;5;241m.\\u001b[39mrestore_training_state()\\n\\u001b[1;32m   1101\\u001b[0m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39m_checkpoint_connector\\u001b[38;5;241m.\\u001b[39mresume_end()\\n\\u001b[0;32m-> 1103\\u001b[0m results \\u001b[38;5;241m=\\u001b[39m \\u001b[38;5;28;43mself\\u001b[39;49m\\u001b[38;5;241;43m.\\u001b[39;49m\\u001b[43m_run_stage\\u001b[49m\\u001b[43m(\\u001b[49m\\u001b[43m)\\u001b[49m\\n\\u001b[1;32m   1105\\u001b[0m log\\u001b[38;5;241m.\\u001b[39mdetail(\\u001b[38;5;124mf\\u001b[39m\\u001b[38;5;124m\\\"\\u001b[39m\\u001b[38;5;132;01m{\\u001b[39;00m\\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39m\\u001b[38;5;18m__class__\\u001b[39m\\u001b[38;5;241m.\\u001b[39m\\u001b[38;5;18m__name__\\u001b[39m\\u001b[38;5;132;01m}\\u001b[39;00m\\u001b[38;5;124m: trainer tearing down\\u001b[39m\\u001b[38;5;124m\\\"\\u001b[39m)\\n\\u001b[1;32m   1106\\u001b[0m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39m_teardown()\\n\",\n      \"File \\u001b[0;32m~/.conda/envs/whisper_lightning/lib/python3.10/site-packages/pytorch_lightning/trainer/trainer.py:1182\\u001b[0m, in \\u001b[0;36mTrainer._run_stage\\u001b[0;34m(self)\\u001b[0m\\n\\u001b[1;32m   1180\\u001b[0m \\u001b[38;5;28;01mif\\u001b[39;00m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39mpredicting:\\n\\u001b[1;32m   1181\\u001b[0m     \\u001b[38;5;28;01mreturn\\u001b[39;00m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39m_run_predict()\\n\\u001b[0;32m-> 1182\\u001b[0m \\u001b[38;5;28;43mself\\u001b[39;49m\\u001b[38;5;241;43m.\\u001b[39;49m\\u001b[43m_run_train\\u001b[49m\\u001b[43m(\\u001b[49m\\u001b[43m)\\u001b[49m\\n\",\n      \"File \\u001b[0;32m~/.conda/envs/whisper_lightning/lib/python3.10/site-packages/pytorch_lightning/trainer/trainer.py:1195\\u001b[0m, in \\u001b[0;36mTrainer._run_train\\u001b[0;34m(self)\\u001b[0m\\n\\u001b[1;32m   1192\\u001b[0m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39m_pre_training_routine()\\n\\u001b[1;32m   1194\\u001b[0m \\u001b[38;5;28;01mwith\\u001b[39;00m isolate_rng():\\n\\u001b[0;32m-> 1195\\u001b[0m     \\u001b[38;5;28;43mself\\u001b[39;49m\\u001b[38;5;241;43m.\\u001b[39;49m\\u001b[43m_run_sanity_check\\u001b[49m\\u001b[43m(\\u001b[49m\\u001b[43m)\\u001b[49m\\n\\u001b[1;32m   1197\\u001b[0m \\u001b[38;5;66;03m# enable train mode\\u001b[39;00m\\n\\u001b[1;32m   1198\\u001b[0m \\u001b[38;5;28;01massert\\u001b[39;00m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39mmodel \\u001b[38;5;129;01mis\\u001b[39;00m \\u001b[38;5;129;01mnot\\u001b[39;00m \\u001b[38;5;28;01mNone\\u001b[39;00m\\n\",\n      \"File \\u001b[0;32m~/.conda/envs/whisper_lightning/lib/python3.10/site-packages/pytorch_lightning/trainer/trainer.py:1267\\u001b[0m, in \\u001b[0;36mTrainer._run_sanity_check\\u001b[0;34m(self)\\u001b[0m\\n\\u001b[1;32m   1265\\u001b[0m \\u001b[38;5;66;03m# run eval step\\u001b[39;00m\\n\\u001b[1;32m   1266\\u001b[0m \\u001b[38;5;28;01mwith\\u001b[39;00m torch\\u001b[38;5;241m.\\u001b[39mno_grad():\\n\\u001b[0;32m-> 1267\\u001b[0m     \\u001b[43mval_loop\\u001b[49m\\u001b[38;5;241;43m.\\u001b[39;49m\\u001b[43mrun\\u001b[49m\\u001b[43m(\\u001b[49m\\u001b[43m)\\u001b[49m\\n\\u001b[1;32m   1269\\u001b[0m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39m_call_callback_hooks(\\u001b[38;5;124m\\\"\\u001b[39m\\u001b[38;5;124mon_sanity_check_end\\u001b[39m\\u001b[38;5;124m\\\"\\u001b[39m)\\n\\u001b[1;32m   1271\\u001b[0m \\u001b[38;5;66;03m# reset logger connector\\u001b[39;00m\\n\",\n      \"File \\u001b[0;32m~/.conda/envs/whisper_lightning/lib/python3.10/site-packages/pytorch_lightning/loops/loop.py:199\\u001b[0m, in \\u001b[0;36mLoop.run\\u001b[0;34m(self, *args, **kwargs)\\u001b[0m\\n\\u001b[1;32m    197\\u001b[0m \\u001b[38;5;28;01mtry\\u001b[39;00m:\\n\\u001b[1;32m    198\\u001b[0m     \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39mon_advance_start(\\u001b[38;5;241m*\\u001b[39margs, \\u001b[38;5;241m*\\u001b[39m\\u001b[38;5;241m*\\u001b[39mkwargs)\\n\\u001b[0;32m--> 199\\u001b[0m     \\u001b[38;5;28;43mself\\u001b[39;49m\\u001b[38;5;241;43m.\\u001b[39;49m\\u001b[43madvance\\u001b[49m\\u001b[43m(\\u001b[49m\\u001b[38;5;241;43m*\\u001b[39;49m\\u001b[43margs\\u001b[49m\\u001b[43m,\\u001b[49m\\u001b[43m \\u001b[49m\\u001b[38;5;241;43m*\\u001b[39;49m\\u001b[38;5;241;43m*\\u001b[39;49m\\u001b[43mkwargs\\u001b[49m\\u001b[43m)\\u001b[49m\\n\\u001b[1;32m    200\\u001b[0m     \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39mon_advance_end()\\n\\u001b[1;32m    201\\u001b[0m     \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39m_restarting \\u001b[38;5;241m=\\u001b[39m \\u001b[38;5;28;01mFalse\\u001b[39;00m\\n\",\n      \"File \\u001b[0;32m~/.conda/envs/whisper_lightning/lib/python3.10/site-packages/pytorch_lightning/loops/dataloader/evaluation_loop.py:152\\u001b[0m, in \\u001b[0;36mEvaluationLoop.advance\\u001b[0;34m(self, *args, **kwargs)\\u001b[0m\\n\\u001b[1;32m    150\\u001b[0m \\u001b[38;5;28;01mif\\u001b[39;00m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39mnum_dataloaders \\u001b[38;5;241m>\\u001b[39m \\u001b[38;5;241m1\\u001b[39m:\\n\\u001b[1;32m    151\\u001b[0m     kwargs[\\u001b[38;5;124m\\\"\\u001b[39m\\u001b[38;5;124mdataloader_idx\\u001b[39m\\u001b[38;5;124m\\\"\\u001b[39m] \\u001b[38;5;241m=\\u001b[39m dataloader_idx\\n\\u001b[0;32m--> 152\\u001b[0m dl_outputs \\u001b[38;5;241m=\\u001b[39m \\u001b[38;5;28;43mself\\u001b[39;49m\\u001b[38;5;241;43m.\\u001b[39;49m\\u001b[43mepoch_loop\\u001b[49m\\u001b[38;5;241;43m.\\u001b[39;49m\\u001b[43mrun\\u001b[49m\\u001b[43m(\\u001b[49m\\u001b[38;5;28;43mself\\u001b[39;49m\\u001b[38;5;241;43m.\\u001b[39;49m\\u001b[43m_data_fetcher\\u001b[49m\\u001b[43m,\\u001b[49m\\u001b[43m \\u001b[49m\\u001b[43mdl_max_batches\\u001b[49m\\u001b[43m,\\u001b[49m\\u001b[43m \\u001b[49m\\u001b[43mkwargs\\u001b[49m\\u001b[43m)\\u001b[49m\\n\\u001b[1;32m    154\\u001b[0m \\u001b[38;5;66;03m# store batch level output per dataloader\\u001b[39;00m\\n\\u001b[1;32m    155\\u001b[0m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39m_outputs\\u001b[38;5;241m.\\u001b[39mappend(dl_outputs)\\n\",\n      \"File \\u001b[0;32m~/.conda/envs/whisper_lightning/lib/python3.10/site-packages/pytorch_lightning/loops/loop.py:199\\u001b[0m, in \\u001b[0;36mLoop.run\\u001b[0;34m(self, *args, **kwargs)\\u001b[0m\\n\\u001b[1;32m    197\\u001b[0m \\u001b[38;5;28;01mtry\\u001b[39;00m:\\n\\u001b[1;32m    198\\u001b[0m     \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39mon_advance_start(\\u001b[38;5;241m*\\u001b[39margs, \\u001b[38;5;241m*\\u001b[39m\\u001b[38;5;241m*\\u001b[39mkwargs)\\n\\u001b[0;32m--> 199\\u001b[0m     \\u001b[38;5;28;43mself\\u001b[39;49m\\u001b[38;5;241;43m.\\u001b[39;49m\\u001b[43madvance\\u001b[49m\\u001b[43m(\\u001b[49m\\u001b[38;5;241;43m*\\u001b[39;49m\\u001b[43margs\\u001b[49m\\u001b[43m,\\u001b[49m\\u001b[43m \\u001b[49m\\u001b[38;5;241;43m*\\u001b[39;49m\\u001b[38;5;241;43m*\\u001b[39;49m\\u001b[43mkwargs\\u001b[49m\\u001b[43m)\\u001b[49m\\n\\u001b[1;32m    200\\u001b[0m     \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39mon_advance_end()\\n\\u001b[1;32m    201\\u001b[0m     \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39m_restarting \\u001b[38;5;241m=\\u001b[39m \\u001b[38;5;28;01mFalse\\u001b[39;00m\\n\",\n      \"File \\u001b[0;32m~/.conda/envs/whisper_lightning/lib/python3.10/site-packages/pytorch_lightning/loops/epoch/evaluation_epoch_loop.py:137\\u001b[0m, in \\u001b[0;36mEvaluationEpochLoop.advance\\u001b[0;34m(self, data_fetcher, dl_max_batches, kwargs)\\u001b[0m\\n\\u001b[1;32m    134\\u001b[0m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39mbatch_progress\\u001b[38;5;241m.\\u001b[39mincrement_started()\\n\\u001b[1;32m    136\\u001b[0m \\u001b[38;5;66;03m# lightning module methods\\u001b[39;00m\\n\\u001b[0;32m--> 137\\u001b[0m output \\u001b[38;5;241m=\\u001b[39m \\u001b[38;5;28;43mself\\u001b[39;49m\\u001b[38;5;241;43m.\\u001b[39;49m\\u001b[43m_evaluation_step\\u001b[49m\\u001b[43m(\\u001b[49m\\u001b[38;5;241;43m*\\u001b[39;49m\\u001b[38;5;241;43m*\\u001b[39;49m\\u001b[43mkwargs\\u001b[49m\\u001b[43m)\\u001b[49m\\n\\u001b[1;32m    138\\u001b[0m output \\u001b[38;5;241m=\\u001b[39m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39m_evaluation_step_end(output)\\n\\u001b[1;32m    140\\u001b[0m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39mbatch_progress\\u001b[38;5;241m.\\u001b[39mincrement_processed()\\n\",\n      \"File \\u001b[0;32m~/.conda/envs/whisper_lightning/lib/python3.10/site-packages/pytorch_lightning/loops/epoch/evaluation_epoch_loop.py:234\\u001b[0m, in \\u001b[0;36mEvaluationEpochLoop._evaluation_step\\u001b[0;34m(self, **kwargs)\\u001b[0m\\n\\u001b[1;32m    223\\u001b[0m \\u001b[38;5;250m\\u001b[39m\\u001b[38;5;124;03m\\\"\\\"\\\"The evaluation step (validation_step or test_step depending on the trainer's state).\\u001b[39;00m\\n\\u001b[1;32m    224\\u001b[0m \\n\\u001b[1;32m    225\\u001b[0m \\u001b[38;5;124;03mArgs:\\u001b[39;00m\\n\\u001b[0;32m   (...)\\u001b[0m\\n\\u001b[1;32m    231\\u001b[0m \\u001b[38;5;124;03m    the outputs of the step\\u001b[39;00m\\n\\u001b[1;32m    232\\u001b[0m \\u001b[38;5;124;03m\\\"\\\"\\\"\\u001b[39;00m\\n\\u001b[1;32m    233\\u001b[0m hook_name \\u001b[38;5;241m=\\u001b[39m \\u001b[38;5;124m\\\"\\u001b[39m\\u001b[38;5;124mtest_step\\u001b[39m\\u001b[38;5;124m\\\"\\u001b[39m \\u001b[38;5;28;01mif\\u001b[39;00m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39mtrainer\\u001b[38;5;241m.\\u001b[39mtesting \\u001b[38;5;28;01melse\\u001b[39;00m \\u001b[38;5;124m\\\"\\u001b[39m\\u001b[38;5;124mvalidation_step\\u001b[39m\\u001b[38;5;124m\\\"\\u001b[39m\\n\\u001b[0;32m--> 234\\u001b[0m output \\u001b[38;5;241m=\\u001b[39m \\u001b[38;5;28;43mself\\u001b[39;49m\\u001b[38;5;241;43m.\\u001b[39;49m\\u001b[43mtrainer\\u001b[49m\\u001b[38;5;241;43m.\\u001b[39;49m\\u001b[43m_call_strategy_hook\\u001b[49m\\u001b[43m(\\u001b[49m\\u001b[43mhook_name\\u001b[49m\\u001b[43m,\\u001b[49m\\u001b[43m \\u001b[49m\\u001b[38;5;241;43m*\\u001b[39;49m\\u001b[43mkwargs\\u001b[49m\\u001b[38;5;241;43m.\\u001b[39;49m\\u001b[43mvalues\\u001b[49m\\u001b[43m(\\u001b[49m\\u001b[43m)\\u001b[49m\\u001b[43m)\\u001b[49m\\n\\u001b[1;32m    236\\u001b[0m \\u001b[38;5;28;01mreturn\\u001b[39;00m output\\n\",\n      \"File \\u001b[0;32m~/.conda/envs/whisper_lightning/lib/python3.10/site-packages/pytorch_lightning/trainer/trainer.py:1485\\u001b[0m, in \\u001b[0;36mTrainer._call_strategy_hook\\u001b[0;34m(self, hook_name, *args, **kwargs)\\u001b[0m\\n\\u001b[1;32m   1482\\u001b[0m     \\u001b[38;5;28;01mreturn\\u001b[39;00m\\n\\u001b[1;32m   1484\\u001b[0m \\u001b[38;5;28;01mwith\\u001b[39;00m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39mprofiler\\u001b[38;5;241m.\\u001b[39mprofile(\\u001b[38;5;124mf\\u001b[39m\\u001b[38;5;124m\\\"\\u001b[39m\\u001b[38;5;124m[Strategy]\\u001b[39m\\u001b[38;5;132;01m{\\u001b[39;00m\\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39mstrategy\\u001b[38;5;241m.\\u001b[39m\\u001b[38;5;18m__class__\\u001b[39m\\u001b[38;5;241m.\\u001b[39m\\u001b[38;5;18m__name__\\u001b[39m\\u001b[38;5;132;01m}\\u001b[39;00m\\u001b[38;5;124m.\\u001b[39m\\u001b[38;5;132;01m{\\u001b[39;00mhook_name\\u001b[38;5;132;01m}\\u001b[39;00m\\u001b[38;5;124m\\\"\\u001b[39m):\\n\\u001b[0;32m-> 1485\\u001b[0m     output \\u001b[38;5;241m=\\u001b[39m \\u001b[43mfn\\u001b[49m\\u001b[43m(\\u001b[49m\\u001b[38;5;241;43m*\\u001b[39;49m\\u001b[43margs\\u001b[49m\\u001b[43m,\\u001b[49m\\u001b[43m \\u001b[49m\\u001b[38;5;241;43m*\\u001b[39;49m\\u001b[38;5;241;43m*\\u001b[39;49m\\u001b[43mkwargs\\u001b[49m\\u001b[43m)\\u001b[49m\\n\\u001b[1;32m   1487\\u001b[0m \\u001b[38;5;66;03m# restore current_fx when nested context\\u001b[39;00m\\n\\u001b[1;32m   1488\\u001b[0m pl_module\\u001b[38;5;241m.\\u001b[39m_current_fx_name \\u001b[38;5;241m=\\u001b[39m prev_fx_name\\n\",\n      \"File \\u001b[0;32m~/.conda/envs/whisper_lightning/lib/python3.10/site-packages/pytorch_lightning/strategies/strategy.py:390\\u001b[0m, in \\u001b[0;36mStrategy.validation_step\\u001b[0;34m(self, *args, **kwargs)\\u001b[0m\\n\\u001b[1;32m    388\\u001b[0m \\u001b[38;5;28;01mwith\\u001b[39;00m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39mprecision_plugin\\u001b[38;5;241m.\\u001b[39mval_step_context():\\n\\u001b[1;32m    389\\u001b[0m     \\u001b[38;5;28;01massert\\u001b[39;00m \\u001b[38;5;28misinstance\\u001b[39m(\\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39mmodel, ValidationStep)\\n\\u001b[0;32m--> 390\\u001b[0m     \\u001b[38;5;28;01mreturn\\u001b[39;00m \\u001b[38;5;28;43mself\\u001b[39;49m\\u001b[38;5;241;43m.\\u001b[39;49m\\u001b[43mmodel\\u001b[49m\\u001b[38;5;241;43m.\\u001b[39;49m\\u001b[43mvalidation_step\\u001b[49m\\u001b[43m(\\u001b[49m\\u001b[38;5;241;43m*\\u001b[39;49m\\u001b[43margs\\u001b[49m\\u001b[43m,\\u001b[49m\\u001b[43m \\u001b[49m\\u001b[38;5;241;43m*\\u001b[39;49m\\u001b[38;5;241;43m*\\u001b[39;49m\\u001b[43mkwargs\\u001b[49m\\u001b[43m)\\u001b[49m\\n\",\n      \"Cell \\u001b[0;32mIn[7], line 36\\u001b[0m, in \\u001b[0;36mMyLightningModule.validation_step\\u001b[0;34m(self, batch, batch_idx)\\u001b[0m\\n\\u001b[1;32m     34\\u001b[0m attention_mask \\u001b[38;5;241m=\\u001b[39m batch[\\u001b[38;5;124m\\\"\\u001b[39m\\u001b[38;5;124mattention_mask\\u001b[39m\\u001b[38;5;124m\\\"\\u001b[39m]\\n\\u001b[1;32m     35\\u001b[0m labels \\u001b[38;5;241m=\\u001b[39m batch[\\u001b[38;5;124m\\\"\\u001b[39m\\u001b[38;5;124mlabels\\u001b[39m\\u001b[38;5;124m\\\"\\u001b[39m]\\n\\u001b[0;32m---> 36\\u001b[0m loss, logits \\u001b[38;5;241m=\\u001b[39m \\u001b[38;5;28;43mself\\u001b[39;49m\\u001b[43m(\\u001b[49m\\u001b[43minput_ids\\u001b[49m\\u001b[43m,\\u001b[49m\\u001b[43m \\u001b[49m\\u001b[43mattention_mask\\u001b[49m\\u001b[43m,\\u001b[49m\\u001b[43m \\u001b[49m\\u001b[43mlabels\\u001b[49m\\u001b[43m)\\u001b[49m\\n\\u001b[1;32m     37\\u001b[0m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39mlog(\\u001b[38;5;124m'\\u001b[39m\\u001b[38;5;124mval_loss\\u001b[39m\\u001b[38;5;124m'\\u001b[39m, loss, on_epoch\\u001b[38;5;241m=\\u001b[39m\\u001b[38;5;28;01mTrue\\u001b[39;00m, on_step\\u001b[38;5;241m=\\u001b[39m\\u001b[38;5;28;01mFalse\\u001b[39;00m)\\n\\u001b[1;32m     38\\u001b[0m \\u001b[38;5;28;01mreturn\\u001b[39;00m {\\u001b[38;5;124m'\\u001b[39m\\u001b[38;5;124mloss\\u001b[39m\\u001b[38;5;124m'\\u001b[39m: loss, \\u001b[38;5;124m'\\u001b[39m\\u001b[38;5;124mlogits\\u001b[39m\\u001b[38;5;124m'\\u001b[39m: logits, \\u001b[38;5;124m\\\"\\u001b[39m\\u001b[38;5;124mlabels\\u001b[39m\\u001b[38;5;124m\\\"\\u001b[39m:labels}\\n\",\n      \"File \\u001b[0;32m~/.conda/envs/whisper_lightning/lib/python3.10/site-packages/torch/nn/modules/module.py:1194\\u001b[0m, in \\u001b[0;36mModule._call_impl\\u001b[0;34m(self, *input, **kwargs)\\u001b[0m\\n\\u001b[1;32m   1190\\u001b[0m \\u001b[38;5;66;03m# If we don't have any hooks, we want to skip the rest of the logic in\\u001b[39;00m\\n\\u001b[1;32m   1191\\u001b[0m \\u001b[38;5;66;03m# this function, and just call forward.\\u001b[39;00m\\n\\u001b[1;32m   1192\\u001b[0m \\u001b[38;5;28;01mif\\u001b[39;00m \\u001b[38;5;129;01mnot\\u001b[39;00m (\\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39m_backward_hooks \\u001b[38;5;129;01mor\\u001b[39;00m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39m_forward_hooks \\u001b[38;5;129;01mor\\u001b[39;00m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39m_forward_pre_hooks \\u001b[38;5;129;01mor\\u001b[39;00m _global_backward_hooks\\n\\u001b[1;32m   1193\\u001b[0m         \\u001b[38;5;129;01mor\\u001b[39;00m _global_forward_hooks \\u001b[38;5;129;01mor\\u001b[39;00m _global_forward_pre_hooks):\\n\\u001b[0;32m-> 1194\\u001b[0m     \\u001b[38;5;28;01mreturn\\u001b[39;00m \\u001b[43mforward_call\\u001b[49m\\u001b[43m(\\u001b[49m\\u001b[38;5;241;43m*\\u001b[39;49m\\u001b[38;5;28;43minput\\u001b[39;49m\\u001b[43m,\\u001b[49m\\u001b[43m \\u001b[49m\\u001b[38;5;241;43m*\\u001b[39;49m\\u001b[38;5;241;43m*\\u001b[39;49m\\u001b[43mkwargs\\u001b[49m\\u001b[43m)\\u001b[49m\\n\\u001b[1;32m   1195\\u001b[0m \\u001b[38;5;66;03m# Do not call functions when jit is used\\u001b[39;00m\\n\\u001b[1;32m   1196\\u001b[0m full_backward_hooks, non_full_backward_hooks \\u001b[38;5;241m=\\u001b[39m [], []\\n\",\n      \"Cell \\u001b[0;32mIn[7], line 16\\u001b[0m, in \\u001b[0;36mMyLightningModule.forward\\u001b[0;34m(self, input_ids, attention_mask, labels)\\u001b[0m\\n\\u001b[1;32m     15\\u001b[0m \\u001b[38;5;28;01mdef\\u001b[39;00m \\u001b[38;5;21mforward\\u001b[39m(\\u001b[38;5;28mself\\u001b[39m, input_ids, attention_mask, labels\\u001b[38;5;241m=\\u001b[39m\\u001b[38;5;28;01mNone\\u001b[39;00m):\\n\\u001b[0;32m---> 16\\u001b[0m     output \\u001b[38;5;241m=\\u001b[39m \\u001b[38;5;28;43mself\\u001b[39;49m\\u001b[38;5;241;43m.\\u001b[39;49m\\u001b[43mmodel\\u001b[49m\\u001b[43m(\\u001b[49m\\n\\u001b[1;32m     17\\u001b[0m \\u001b[43m        \\u001b[49m\\u001b[43minput_ids\\u001b[49m\\u001b[38;5;241;43m=\\u001b[39;49m\\u001b[43minput_ids\\u001b[49m\\u001b[43m,\\u001b[49m\\n\\u001b[1;32m     18\\u001b[0m \\u001b[43m        \\u001b[49m\\u001b[43mattention_mask\\u001b[49m\\u001b[38;5;241;43m=\\u001b[39;49m\\u001b[43mattention_mask\\u001b[49m\\u001b[43m,\\u001b[49m\\n\\u001b[1;32m     19\\u001b[0m \\u001b[43m        \\u001b[49m\\u001b[43mlabels\\u001b[49m\\u001b[38;5;241;43m=\\u001b[39;49m\\u001b[43mlabels\\u001b[49m\\u001b[43m,\\u001b[49m\\n\\u001b[1;32m     20\\u001b[0m \\u001b[43m    \\u001b[49m\\u001b[43m)\\u001b[49m\\n\\u001b[1;32m     21\\u001b[0m     \\u001b[38;5;28;01mreturn\\u001b[39;00m output\\u001b[38;5;241m.\\u001b[39mloss, output\\u001b[38;5;241m.\\u001b[39mlogits\\n\",\n      \"File \\u001b[0;32m~/.conda/envs/whisper_lightning/lib/python3.10/site-packages/torch/nn/modules/module.py:1194\\u001b[0m, in \\u001b[0;36mModule._call_impl\\u001b[0;34m(self, *input, **kwargs)\\u001b[0m\\n\\u001b[1;32m   1190\\u001b[0m \\u001b[38;5;66;03m# If we don't have any hooks, we want to skip the rest of the logic in\\u001b[39;00m\\n\\u001b[1;32m   1191\\u001b[0m \\u001b[38;5;66;03m# this function, and just call forward.\\u001b[39;00m\\n\\u001b[1;32m   1192\\u001b[0m \\u001b[38;5;28;01mif\\u001b[39;00m \\u001b[38;5;129;01mnot\\u001b[39;00m (\\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39m_backward_hooks \\u001b[38;5;129;01mor\\u001b[39;00m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39m_forward_hooks \\u001b[38;5;129;01mor\\u001b[39;00m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39m_forward_pre_hooks \\u001b[38;5;129;01mor\\u001b[39;00m _global_backward_hooks\\n\\u001b[1;32m   1193\\u001b[0m         \\u001b[38;5;129;01mor\\u001b[39;00m _global_forward_hooks \\u001b[38;5;129;01mor\\u001b[39;00m _global_forward_pre_hooks):\\n\\u001b[0;32m-> 1194\\u001b[0m     \\u001b[38;5;28;01mreturn\\u001b[39;00m \\u001b[43mforward_call\\u001b[49m\\u001b[43m(\\u001b[49m\\u001b[38;5;241;43m*\\u001b[39;49m\\u001b[38;5;28;43minput\\u001b[39;49m\\u001b[43m,\\u001b[49m\\u001b[43m \\u001b[49m\\u001b[38;5;241;43m*\\u001b[39;49m\\u001b[38;5;241;43m*\\u001b[39;49m\\u001b[43mkwargs\\u001b[49m\\u001b[43m)\\u001b[49m\\n\\u001b[1;32m   1195\\u001b[0m \\u001b[38;5;66;03m# Do not call functions when jit is used\\u001b[39;00m\\n\\u001b[1;32m   1196\\u001b[0m full_backward_hooks, non_full_backward_hooks \\u001b[38;5;241m=\\u001b[39m [], []\\n\",\n      \"File \\u001b[0;32m~/.conda/envs/whisper_lightning/lib/python3.10/site-packages/transformers/models/t5/modeling_t5.py:1624\\u001b[0m, in \\u001b[0;36mT5ForConditionalGeneration.forward\\u001b[0;34m(self, input_ids, attention_mask, decoder_input_ids, decoder_attention_mask, head_mask, decoder_head_mask, cross_attn_head_mask, encoder_outputs, past_key_values, inputs_embeds, decoder_inputs_embeds, labels, use_cache, output_attentions, output_hidden_states, return_dict)\\u001b[0m\\n\\u001b[1;32m   1621\\u001b[0m \\u001b[38;5;66;03m# Encode if needed (training, first prediction pass)\\u001b[39;00m\\n\\u001b[1;32m   1622\\u001b[0m \\u001b[38;5;28;01mif\\u001b[39;00m encoder_outputs \\u001b[38;5;129;01mis\\u001b[39;00m \\u001b[38;5;28;01mNone\\u001b[39;00m:\\n\\u001b[1;32m   1623\\u001b[0m     \\u001b[38;5;66;03m# Convert encoder inputs in embeddings if needed\\u001b[39;00m\\n\\u001b[0;32m-> 1624\\u001b[0m     encoder_outputs \\u001b[38;5;241m=\\u001b[39m \\u001b[38;5;28;43mself\\u001b[39;49m\\u001b[38;5;241;43m.\\u001b[39;49m\\u001b[43mencoder\\u001b[49m\\u001b[43m(\\u001b[49m\\n\\u001b[1;32m   1625\\u001b[0m \\u001b[43m        \\u001b[49m\\u001b[43minput_ids\\u001b[49m\\u001b[38;5;241;43m=\\u001b[39;49m\\u001b[43minput_ids\\u001b[49m\\u001b[43m,\\u001b[49m\\n\\u001b[1;32m   1626\\u001b[0m \\u001b[43m        \\u001b[49m\\u001b[43mattention_mask\\u001b[49m\\u001b[38;5;241;43m=\\u001b[39;49m\\u001b[43mattention_mask\\u001b[49m\\u001b[43m,\\u001b[49m\\n\\u001b[1;32m   1627\\u001b[0m \\u001b[43m        \\u001b[49m\\u001b[43minputs_embeds\\u001b[49m\\u001b[38;5;241;43m=\\u001b[39;49m\\u001b[43minputs_embeds\\u001b[49m\\u001b[43m,\\u001b[49m\\n\\u001b[1;32m   1628\\u001b[0m \\u001b[43m        \\u001b[49m\\u001b[43mhead_mask\\u001b[49m\\u001b[38;5;241;43m=\\u001b[39;49m\\u001b[43mhead_mask\\u001b[49m\\u001b[43m,\\u001b[49m\\n\\u001b[1;32m   1629\\u001b[0m \\u001b[43m        \\u001b[49m\\u001b[43moutput_attentions\\u001b[49m\\u001b[38;5;241;43m=\\u001b[39;49m\\u001b[43moutput_attentions\\u001b[49m\\u001b[43m,\\u001b[49m\\n\\u001b[1;32m   1630\\u001b[0m \\u001b[43m        \\u001b[49m\\u001b[43moutput_hidden_states\\u001b[49m\\u001b[38;5;241;43m=\\u001b[39;49m\\u001b[43moutput_hidden_states\\u001b[49m\\u001b[43m,\\u001b[49m\\n\\u001b[1;32m   1631\\u001b[0m \\u001b[43m        \\u001b[49m\\u001b[43mreturn_dict\\u001b[49m\\u001b[38;5;241;43m=\\u001b[39;49m\\u001b[43mreturn_dict\\u001b[49m\\u001b[43m,\\u001b[49m\\n\\u001b[1;32m   1632\\u001b[0m \\u001b[43m    \\u001b[49m\\u001b[43m)\\u001b[49m\\n\\u001b[1;32m   1633\\u001b[0m \\u001b[38;5;28;01melif\\u001b[39;00m return_dict \\u001b[38;5;129;01mand\\u001b[39;00m \\u001b[38;5;129;01mnot\\u001b[39;00m \\u001b[38;5;28misinstance\\u001b[39m(encoder_outputs, BaseModelOutput):\\n\\u001b[1;32m   1634\\u001b[0m     encoder_outputs \\u001b[38;5;241m=\\u001b[39m BaseModelOutput(\\n\\u001b[1;32m   1635\\u001b[0m         last_hidden_state\\u001b[38;5;241m=\\u001b[39mencoder_outputs[\\u001b[38;5;241m0\\u001b[39m],\\n\\u001b[1;32m   1636\\u001b[0m         hidden_states\\u001b[38;5;241m=\\u001b[39mencoder_outputs[\\u001b[38;5;241m1\\u001b[39m] \\u001b[38;5;28;01mif\\u001b[39;00m \\u001b[38;5;28mlen\\u001b[39m(encoder_outputs) \\u001b[38;5;241m>\\u001b[39m \\u001b[38;5;241m1\\u001b[39m \\u001b[38;5;28;01melse\\u001b[39;00m \\u001b[38;5;28;01mNone\\u001b[39;00m,\\n\\u001b[1;32m   1637\\u001b[0m         attentions\\u001b[38;5;241m=\\u001b[39mencoder_outputs[\\u001b[38;5;241m2\\u001b[39m] \\u001b[38;5;28;01mif\\u001b[39;00m \\u001b[38;5;28mlen\\u001b[39m(encoder_outputs) \\u001b[38;5;241m>\\u001b[39m \\u001b[38;5;241m2\\u001b[39m \\u001b[38;5;28;01melse\\u001b[39;00m \\u001b[38;5;28;01mNone\\u001b[39;00m,\\n\\u001b[1;32m   1638\\u001b[0m     )\\n\",\n      \"File \\u001b[0;32m~/.conda/envs/whisper_lightning/lib/python3.10/site-packages/torch/nn/modules/module.py:1194\\u001b[0m, in \\u001b[0;36mModule._call_impl\\u001b[0;34m(self, *input, **kwargs)\\u001b[0m\\n\\u001b[1;32m   1190\\u001b[0m \\u001b[38;5;66;03m# If we don't have any hooks, we want to skip the rest of the logic in\\u001b[39;00m\\n\\u001b[1;32m   1191\\u001b[0m \\u001b[38;5;66;03m# this function, and just call forward.\\u001b[39;00m\\n\\u001b[1;32m   1192\\u001b[0m \\u001b[38;5;28;01mif\\u001b[39;00m \\u001b[38;5;129;01mnot\\u001b[39;00m (\\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39m_backward_hooks \\u001b[38;5;129;01mor\\u001b[39;00m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39m_forward_hooks \\u001b[38;5;129;01mor\\u001b[39;00m \\u001b[38;5;28mself\\u001b[39m\\u001b[38;5;241m.\\u001b[39m_forward_pre_hooks \\u001b[38;5;129;01mor\\u001b[39;00m _global_backward_hooks\\n\\u001b[1;32m   1193\\u001b[0m         \\u001b[38;5;129;01mor\\u001b[39;00m _global_forward_hooks \\u001b[38;5;129;01mor\\u001b[39;00m _global_forward_pre_hooks):\\n\\u001b[0;32m-> 1194\\u001b[0m     \\u001b[38;5;28;01mreturn\\u001b[39;00m \\u001b[43mforward_call\\u001b[49m\\u001b[43m(\\u001b[49m\\u001b[38;5;241;43m*\\u001b[39;49m\\u001b[38;5;28;43minput\\u001b[39;49m\\u001b[43m,\\u001b[49m\\u001b[43m \\u001b[49m\\u001b[38;5;241;43m*\\u001b[39;49m\\u001b[38;5;241;43m*\\u001b[39;49m\\u001b[43mkwargs\\u001b[49m\\u001b[43m)\\u001b[49m\\n\\u001b[1;32m   1195\\u001b[0m \\u001b[38;5;66;03m# Do not call functions when jit is used\\u001b[39;00m\\n\\u001b[1;32m   1196\\u001b[0m full_backward_hooks, non_full_backward_hooks \\u001b[38;5;241m=\\u001b[39m [], []\\n\",\n      \"File \\u001b[0;32m~/.conda/envs/whisper_lightning/lib/python3.10/site-packages/transformers/models/t5/modeling_t5.py:944\\u001b[0m, in \\u001b[0;36mT5Stack.forward\\u001b[0;34m(self, input_ids, attention_mask, encoder_hidden_states, encoder_attention_mask, inputs_embeds, head_mask, cross_attn_head_mask, past_key_values, use_cache, output_attentions, output_hidden_states, return_dict)\\u001b[0m\\n\\u001b[1;32m    940\\u001b[0m     \\u001b[38;5;28;01mraise\\u001b[39;00m \\u001b[38;5;167;01mValueError\\u001b[39;00m(\\n\\u001b[1;32m    941\\u001b[0m         \\u001b[38;5;124mf\\u001b[39m\\u001b[38;5;124m\\\"\\u001b[39m\\u001b[38;5;124mYou cannot specify both \\u001b[39m\\u001b[38;5;132;01m{\\u001b[39;00merr_msg_prefix\\u001b[38;5;132;01m}\\u001b[39;00m\\u001b[38;5;124minput_ids and \\u001b[39m\\u001b[38;5;132;01m{\\u001b[39;00merr_msg_prefix\\u001b[38;5;132;01m}\\u001b[39;00m\\u001b[38;5;124minputs_embeds at the same time\\u001b[39m\\u001b[38;5;124m\\\"\\u001b[39m\\n\\u001b[1;32m    942\\u001b[0m     )\\n\\u001b[1;32m    943\\u001b[0m \\u001b[38;5;28;01melif\\u001b[39;00m input_ids \\u001b[38;5;129;01mis\\u001b[39;00m \\u001b[38;5;129;01mnot\\u001b[39;00m \\u001b[38;5;28;01mNone\\u001b[39;00m:\\n\\u001b[0;32m--> 944\\u001b[0m     input_shape \\u001b[38;5;241m=\\u001b[39m \\u001b[43minput_ids\\u001b[49m\\u001b[38;5;241;43m.\\u001b[39;49m\\u001b[43msize\\u001b[49m()\\n\\u001b[1;32m    945\\u001b[0m     input_ids \\u001b[38;5;241m=\\u001b[39m input_ids\\u001b[38;5;241m.\\u001b[39mview(\\u001b[38;5;241m-\\u001b[39m\\u001b[38;5;241m1\\u001b[39m, input_shape[\\u001b[38;5;241m-\\u001b[39m\\u001b[38;5;241m1\\u001b[39m])\\n\\u001b[1;32m    946\\u001b[0m \\u001b[38;5;28;01melif\\u001b[39;00m inputs_embeds \\u001b[38;5;129;01mis\\u001b[39;00m \\u001b[38;5;129;01mnot\\u001b[39;00m \\u001b[38;5;28;01mNone\\u001b[39;00m:\\n\",\n      \"\\u001b[0;31mAttributeError\\u001b[0m: 'list' object has no attribute 'size'\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"torch.set_float32_matmul_precision(\\\"medium\\\")\\n\",\n    \"model = MyLightningModule(model_name=\\\"t5-small\\\", learning_rate=1e-5, weight_decay=1e-4, batch_size=16)\\n\",\n    \"trainer = pl.Trainer(accelerator=\\\"gpu\\\", devices=[0], max_epochs=10)\\n\",\n    \"dm = MyDataModule(batch_size=16)\\n\",\n    \"trainer.fit(model, datamodule=dm)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"aa7b1ab0\",\n   \"metadata\": {},\n   \"source\": [\n    \"### Recap of what we did:\\n\",\n    \"* Finetuned T5-Small on DailyCNN (summarize news articles) using HF Trainer and data loading\\n\",\n    \"* Converted to Lightning code \\n\",\n    \"\\n\",\n    \"### To do next:\\n\",\n    \"* Make it work with the evaluation somethings wrong now, don't think it's a big issue\\n\",\n    \"* Clean up the code a bit\\n\",\n    \"* Compare it with HF, add predict function, modify data loading so it's from scratch / more general way of doing it.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"80a2efab\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3 (ipykernel)\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.10.9\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 5\n}\n"
  },
  {
    "path": "ML/Pytorch/huggingface/finetuning_t5_small_cnndaily.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"5372055b\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"from jupyterthemes.stylefx import set_nb_theme\\n\",\n    \"set_nb_theme('chesterish')\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"11214a4a\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import os\\n\",\n    \"os.environ[\\\"CUDA_DEVICE_ORDER\\\"]=\\\"PCI_BUS_ID\\\"\\n\",\n    \"os.environ[\\\"CUDA_VISIBLE_DEVICES\\\"]=\\\"0\\\"\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"f45eb6b0\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import numpy as np\\n\",\n    \"import torch\\n\",\n    \"\\n\",\n    \"import datasets \\n\",\n    \"\\n\",\n    \"from datasets import load_dataset, load_metric\\n\",\n    \"\\n\",\n    \"from transformers import (\\n\",\n    \"    AutoModel,\\n\",\n    \"    AutoModelForMaskedLM,\\n\",\n    \"    AutoModelForSeq2SeqLM,\\n\",\n    \"    AutoModelForTokenClassification,\\n\",\n    \"    AutoTokenizer,\\n\",\n    \"    DataCollatorForSeq2Seq,\\n\",\n    \"    pipeline,\\n\",\n    \"    Seq2SeqTrainingArguments,\\n\",\n    \"    Seq2SeqTrainer,\\n\",\n    \")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"b2d26af4\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Load the pre-trained model and tokenizer\\n\",\n    \"model_name = \\\"t5-small\\\"\\n\",\n    \"tokenizer = AutoTokenizer.from_pretrained(model_name)\\n\",\n    \"model = AutoModelForSeq2SeqLM.from_pretrained(model_name)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"363045f5\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def preprocess_function(batch):\\n\",\n    \"    inputs = tokenizer(batch[\\\"article\\\"], padding=\\\"max_length\\\", truncation=True, max_length=512)\\n\",\n    \"    outputs = tokenizer(batch[\\\"highlights\\\"], padding=\\\"max_length\\\", truncation=True, max_length=128)\\n\",\n    \"    batch[\\\"input_ids\\\"] = inputs.input_ids\\n\",\n    \"    batch[\\\"attention_mask\\\"] = inputs.attention_mask\\n\",\n    \"    batch[\\\"labels\\\"] = outputs.input_ids.copy()\\n\",\n    \"    return batch\\n\",\n    \"\\n\",\n    \"# Load the dataset\\n\",\n    \"train_data = load_dataset(\\\"cnn_dailymail\\\", \\\"3.0.0\\\", split=\\\"train\\\")\\n\",\n    \"val_data = load_dataset(\\\"cnn_dailymail\\\", \\\"3.0.0\\\", split=\\\"validation[:10%]\\\")\\n\",\n    \"\\n\",\n    \"train_ds = train_data.map(\\n\",\n    \"    preprocess_function, \\n\",\n    \"    batched=True, \\n\",\n    \"    batch_size=256, \\n\",\n    \"    remove_columns=[\\\"article\\\", \\\"highlights\\\", \\\"id\\\"]\\n\",\n    \")\\n\",\n    \"\\n\",\n    \"val_ds = val_data.map(\\n\",\n    \"    preprocess_function, \\n\",\n    \"    batched=True, \\n\",\n    \"    batch_size=256, \\n\",\n    \"    remove_columns=[\\\"article\\\", \\\"highlights\\\", \\\"id\\\"]\\n\",\n    \")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"0d58818f\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"class MyLightningModule(pl.LightningModule):\\n\",\n    \"    def __init__(self, model_name, learning_rate, weight_decay, batch_size, num_training_steps):\\n\",\n    \"        super().__init__()\\n\",\n    \"        self.model_name = model_name\\n\",\n    \"        self.learning_rate = learning_rate\\n\",\n    \"        self.weight_decay = weight_decay\\n\",\n    \"        self.batch_size = batch_size\\n\",\n    \"        self.num_training_steps = num_training_steps\\n\",\n    \"        \\n\",\n    \"        # Load the pre-trained model and tokenizer\\n\",\n    \"        self.tokenizer = AutoTokenizer.from_pretrained(self.model_name)\\n\",\n    \"        self.model = AutoModelForSeq2SeqLM.from_pretrained(self.model_name)\\n\",\n    \"\\n\",\n    \"    def forward(self, input_ids, attention_mask, labels=None):\\n\",\n    \"        output = self.model(\\n\",\n    \"            input_ids=input_ids,\\n\",\n    \"            attention_mask=attention_mask,\\n\",\n    \"            labels=labels,\\n\",\n    \"        )\\n\",\n    \"        return output.loss, output.logits\\n\",\n    \"    \\n\",\n    \"    def training_step(self, batch, batch_idx):\\n\",\n    \"        input_ids = batch[\\\"input_ids\\\"]\\n\",\n    \"        attention_mask = batch[\\\"attention_mask\\\"]\\n\",\n    \"        labels = batch[\\\"labels\\\"]\\n\",\n    \"        \\n\",\n    \"        loss\\n\",\n    \"\\n\",\n    \"# Define the data collator\\n\",\n    \"data_collator = DataCollatorForSeq2Seq(tokenizer, model=model)\\n\",\n    \"\\n\",\n    \"# Initialize the trainer arguments\\n\",\n    \"training_args = Seq2SeqTrainingArguments(\\n\",\n    \"    output_dir=\\\"./results\\\",\\n\",\n    \"    learning_rate=1e-5,\\n\",\n    \"    per_device_train_batch_size=16,\\n\",\n    \"    per_device_eval_batch_size=16,\\n\",\n    \"    max_steps=5000,\\n\",\n    \"    weight_decay=1e-4,\\n\",\n    \"    push_to_hub=False,\\n\",\n    \"    evaluation_strategy = \\\"steps\\\",\\n\",\n    \"    eval_steps = 50,\\n\",\n    \"    generation_max_length=128,\\n\",\n    \"    predict_with_generate=True,\\n\",\n    \"    logging_steps=100,\\n\",\n    \"    gradient_accumulation_steps=1,\\n\",\n    \"    fp16=True,\\n\",\n    \")\\n\",\n    \"\\n\",\n    \"# Load the ROUGE metric\\n\",\n    \"metric = load_metric(\\\"rouge\\\")\\n\",\n    \"\\n\",\n    \"# Define the evaluation function\\n\",\n    \"def compute_metrics(pred):\\n\",\n    \"    labels = pred.label_ids\\n\",\n    \"    preds = pred.predictions\\n\",\n    \"    decoded_preds = tokenizer.batch_decode(preds, skip_special_tokens=True)\\n\",\n    \"    decoded_labels = tokenizer.batch_decode(labels, skip_special_tokens=True)\\n\",\n    \"    scores = metric.compute(predictions=decoded_preds, references=decoded_labels, rouge_types=[\\\"rouge1\\\"])[\\\"rouge1\\\"].mid\\n\",\n    \"    return {\\\"rouge1_precision\\\": scores.precision, \\\"rouge1_recall\\\": scores.recall, \\\"rouge1_fmeasure\\\": scores.fmeasure}\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"# Initialize the trainer\\n\",\n    \"trainer = Seq2SeqTrainer(\\n\",\n    \"    model=model,\\n\",\n    \"    args=training_args,\\n\",\n    \"    train_dataset=train_data,\\n\",\n    \"    eval_dataset=val_data,\\n\",\n    \"    data_collator=data_collator,\\n\",\n    \"    tokenizer=tokenizer,\\n\",\n    \"    compute_metrics=compute_metrics,\\n\",\n    \")\\n\",\n    \"\\n\",\n    \"# Start the training\\n\",\n    \"trainer.train()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"5148159b\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Steps:\\n\",\n    \"1. Rewrite code to be more general\\n\",\n    \"\\n\",\n    \"a) Data loading should be from disk rather than their load_dataset, and should be on the fly\\n\",\n    \"\\n\",\n    \"b) Rewrite to Lightning code, Trainer etc using Lightning, compute metric fine that we use huggingface\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"95e33e40\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"!nvidia-smi\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"4c0348c2\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3 (ipykernel)\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.10.9\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 5\n}\n"
  },
  {
    "path": "ML/Pytorch/huggingface/learning.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 23,\n   \"id\": \"7d5e92c6\",\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"[{'entity': 'I-FOOD', 'score': 0.49999642, 'index': 5, 'word': 'Turtle', 'start': 8, 'end': 14}, {'entity': 'I-FOOD', 'score': 0.6096488, 'index': 6, 'word': '##s', 'start': 14, 'end': 15}, {'entity': 'B-FOOD', 'score': 0.45608267, 'index': 7, 'word': 'Original', 'start': 16, 'end': 24}, {'entity': 'I-FOOD', 'score': 0.6613699, 'index': 8, 'word': 'Cara', 'start': 25, 'end': 29}, {'entity': 'I-FOOD', 'score': 0.5776781, 'index': 9, 'word': '##mel', 'start': 29, 'end': 32}, {'entity': 'I-FOOD', 'score': 0.86556953, 'index': 10, 'word': 'Chocolate', 'start': 33, 'end': 42}, {'entity': 'I-FOOD', 'score': 0.96111995, 'index': 11, 'word': 'P', 'start': 43, 'end': 44}, {'entity': 'I-FOOD', 'score': 0.8003402, 'index': 12, 'word': '##eca', 'start': 44, 'end': 47}, {'entity': 'I-FOOD', 'score': 0.9277613, 'index': 13, 'word': '##n', 'start': 47, 'end': 48}, {'entity': 'I-FOOD', 'score': 0.9217512, 'index': 15, 'word': '##luster', 'start': 50, 'end': 56}]\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"from transformers import AutoTokenizer, AutoModelForTokenClassification\\n\",\n    \"from transformers import pipeline\\n\",\n    \"\\n\",\n    \"tokenizer = AutoTokenizer.from_pretrained(\\\"Dizex/FoodBaseBERT\\\")\\n\",\n    \"model = AutoModelForTokenClassification.from_pretrained(\\\"Dizex/FoodBaseBERT\\\")\\n\",\n    \"\\n\",\n    \"pipe = pipeline(\\\"ner\\\", model=model, tokenizer=tokenizer)\\n\",\n    \"example = \\\"Demet's Turtles Original Caramel Chocolate Pecan Clusters 9.3 oz Holiday Gift Box\\\"\\n\",\n    \"\\n\",\n    \"ner_entity_results = pipe(example)\\n\",\n    \"print(ner_entity_results)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 31,\n   \"id\": \"bf67ee76\",\n   \"metadata\": {},\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Turtle s Original Cara mel Chocolate P eca n luster\\n\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"ner_entity_results = pipe(example)\\n\",\n    \"\\n\",\n    \"# Initialize the entity words list with an empty string\\n\",\n    \"entity_words = [\\\"\\\"]\\n\",\n    \"\\n\",\n    \"# Loop through each dictionary in the list and extract the entity word\\n\",\n    \"for result in ner_entity_results:\\n\",\n    \"    if result[\\\"entity\\\"] == \\\"B-FOOD\\\":\\n\",\n    \"        entity_words.append(result[\\\"word\\\"])\\n\",\n    \"    elif result[\\\"entity\\\"] == \\\"I-FOOD\\\":\\n\",\n    \"        entity_words[-1] += \\\" \\\" + result[\\\"word\\\"]\\n\",\n    \"\\n\",\n    \"# Remove any remaining ## symbols and extra spaces\\n\",\n    \"entity_words = [word.replace(\\\"##\\\", \\\"\\\").strip() for word in entity_words]\\n\",\n    \"\\n\",\n    \"# Join the entity words into a single string\\n\",\n    \"output = \\\" \\\".join(entity_words)\\n\",\n    \"\\n\",\n    \"print(output)\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"fc8e5ea0\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import torch\\n\",\n    \"print(torch.cuda.is_available())\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"d8a1e039\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"from transformers import pipeline\\n\",\n    \"import numpy as np\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"6ad73024\",\n   \"metadata\": {\n    \"scrolled\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"classifier = pipeline(\\\"zero-shot-classification\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"04f7e02c\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"classifier(\\n\",\n    \"    \\\"This is a course about the Transformers library\\\",\\n\",\n    \"    candidate_labels=[\\\"machine learning\\\", \\\"gym\\\", \\\"food\\\"],\\n\",\n    \")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"6fb246c2\",\n   \"metadata\": {\n    \"scrolled\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"from transformers import pipeline\\n\",\n    \"generator = pipeline(task=\\\"text-generation\\\", model=\\\"bigscience/bloom-1b7\\\", device=0)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"c4e174f0\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"from transformers import AutoModelForTokenClassification, AutoModel, AutoTokenizer\\n\",\n    \"import torch\\n\",\n    \"\\n\",\n    \"# Define input text and pre-trained model checkpoint\\n\",\n    \"text = \\\"My name is wolfgang and I live in berlin\\\"\\n\",\n    \"checkpoint = \\\"Jean-Baptiste/roberta-large-ner-english\\\"\\n\",\n    \"\\n\",\n    \"# Instantiate tokenizer and encode input text\\n\",\n    \"tokenizer = AutoTokenizer.from_pretrained(checkpoint)\\n\",\n    \"inputs = tokenizer(text, padding=True, truncation=True, return_tensors=\\\"pt\\\")\\n\",\n    \"\\n\",\n    \"# Instantiate model and generate output\\n\",\n    \"model = AutoModel.from_pretrained(checkpoint)\\n\",\n    \"outputs = model(**inputs)\\n\",\n    \"print(outputs[0].shape)\\n\",\n    \"\\n\",\n    \"# Instantiate token classification model and generate predictions\\n\",\n    \"model = AutoModelForTokenClassification.from_pretrained(checkpoint)\\n\",\n    \"outputs = model(**inputs)\\n\",\n    \"predictions = torch.nn.functional.softmax(outputs.logits, dim=-1)\\n\",\n    \"print(predictions)\\n\",\n    \"print(model.config.id2label)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"8212bbaa\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"from transformers import AutoTokenizer, AutoModelForMaskedLM\\n\",\n    \"\\n\",\n    \"tokenizer = AutoTokenizer.from_pretrained('xlm-roberta-large')\\n\",\n    \"model = AutoModelForMaskedLM.from_pretrained(\\\"xlm-roberta-large\\\")\\n\",\n    \"\\n\",\n    \"# prepare input\\n\",\n    \"text = \\\"Replace me by any text you'd like.\\\"\\n\",\n    \"encoded_input = tokenizer(text, return_tensors='pt')\\n\",\n    \"\\n\",\n    \"# forward pass\\n\",\n    \"output = model(**encoded_input)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"314cba41\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"from transformers import AutoTokenizer, AutoModelForMaskedLM\\n\",\n    \"\\n\",\n    \"# Load the pre-trained tokenizer and model\\n\",\n    \"tokenizer = AutoTokenizer.from_pretrained('xlm-roberta-large')\\n\",\n    \"model = AutoModelForMaskedLM.from_pretrained(\\\"xlm-roberta-large\\\")\\n\",\n    \"\\n\",\n    \"# Define the input sentence with a masked token\\n\",\n    \"text = \\\"I want to <mask> a new car tomorrow.\\\"\\n\",\n    \"\\n\",\n    \"# Tokenize the input sentence, replacing the masked token with a special [MASK] token\\n\",\n    \"encoded_input = tokenizer(text, padding=True, truncation=True, return_tensors='pt')\\n\",\n    \"\\n\",\n    \"print(output.logits.shape)\\n\",\n    \"print(encoded_input['input_ids'][0].tolist().index(tokenizer.mask_token_id))\\n\",\n    \"\\n\",\n    \"# Extract the predicted probabilities for the masked token\\n\",\n    \"predicted_probabilities = output.logits[0, encoded_input['input_ids'][0].tolist().index(tokenizer.mask_token_id)]\\n\",\n    \"predicted_probabilities = torch.nn.functional.softmax(predicted_probabilities, dim=-1)\\n\",\n    \"\\n\",\n    \"# Get the top-k most probable predictions for the masked token\\n\",\n    \"k = 5\\n\",\n    \"top_k = torch.topk(predicted_probabilities, k)\\n\",\n    \"for i in range(k):\\n\",\n    \"    token = tokenizer.convert_ids_to_tokens(top_k.indices[i].item())\\n\",\n    \"    score = top_k.values[i].item()\\n\",\n    \"    print(f\\\"Prediction {i+1}: '{token}' with probability {score:.5f}\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"6187e77e\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"%%time\\n\",\n    \"tokenizer = AutoTokenizer.from_pretrained(\\\"bert-base-cased\\\")\\n\",\n    \"\\n\",\n    \"sequences = [\\n\",\n    \"    \\\"Using a Transformer network is simple\\\",\\n\",\n    \"    \\\"The quick brown fox jumps over the lazy dog\\\",\\n\",\n    \"    \\\"To be or not to be, that is the question\\\"\\n\",\n    \"]\\n\",\n    \"\\n\",\n    \"# Tokenize the input sequences and convert them to padded and truncated integer token IDs\\n\",\n    \"inputs = tokenizer(\\n\",\n    \"    sequences,\\n\",\n    \"    padding=True,\\n\",\n    \"    truncation=True,\\n\",\n    \"    return_tensors=\\\"pt\\\"\\n\",\n    \")\\n\",\n    \"\\n\",\n    \"# Print the resulting input IDs and attention masks\\n\",\n    \"print(inputs['input_ids'])\\n\",\n    \"print(inputs['attention_mask'])\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"fc259c5a\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"43466db6\",\n   \"metadata\": {},\n   \"source\": [\n    \"Huggingface:\\n\",\n    \"\\n\",\n    \"1. Understanding how to use the Pipeline (probably most useful) for various tasks, easy to use, and the different subtasks it can do like translation, QA, zero shot, sentiment analysis, token classification, etc. \\n\",\n    \"2. Understood how pipeline works in more detail by using AutoModel for various tasks as well as AutoTokenizer\\n\",\n    \"3. Load dataset\\n\",\n    \"4. How to finetune\\n\",\n    \"5. How to evaluate\\n\",\n    \"6. \"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"97c474f2\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"3ed5d8c2\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import torch\\n\",\n    \"from transformers import AdamW, AutoTokenizer, AutoModelForSequenceClassification\\n\",\n    \"\\n\",\n    \"# Same as before\\n\",\n    \"checkpoint = \\\"bert-base-uncased\\\"\\n\",\n    \"tokenizer = AutoTokenizer.from_pretrained(checkpoint)\\n\",\n    \"model = AutoModelForSequenceClassification.from_pretrained(checkpoint)\\n\",\n    \"sequences = [\\n\",\n    \"    \\\"I've been waiting for a HuggingFace course my whole life.\\\",\\n\",\n    \"    \\\"This course is amazing!\\\",\\n\",\n    \"]\\n\",\n    \"batch = tokenizer(sequences, padding=True, truncation=True, return_tensors=\\\"pt\\\")\\n\",\n    \"\\n\",\n    \"# This is new\\n\",\n    \"batch[\\\"labels\\\"] = torch.tensor([1, 1])\\n\",\n    \"\\n\",\n    \"optimizer = AdamW(model.parameters())\\n\",\n    \"loss = model(**batch).loss\\n\",\n    \"loss.backward()\\n\",\n    \"optimizer.step()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"c598624f\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"from datasets import load_dataset\\n\",\n    \"raw_datasets = load_dataset(\\\"glue\\\", \\\"mrpc\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"cd296227\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"raw_train_dataset = raw_datasets[\\\"train\\\"]\\n\",\n    \"raw_train_dataset[0]\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"e462947a\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"from datasets import load_dataset\\n\",\n    \"from transformers import AutoTokenizer, DataCollatorWithPadding\\n\",\n    \"raw_datasets = load_dataset(\\\"glue\\\", \\\"mrpc\\\")\\n\",\n    \"\\n\",\n    \"checkpoint = \\\"bert-base-uncased\\\"\\n\",\n    \"tokenizer = AutoTokenizer.from_pretrained(checkpoint)\\n\",\n    \"\\n\",\n    \"def tokenize_function(example):\\n\",\n    \"    return tokenizer(example[\\\"sentence1\\\"], example[\\\"sentence2\\\"], truncation=True)\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"tokenized_datasets = raw_datasets.map(tokenize_function, batched=True)\\n\",\n    \"data_collator = DataCollatorWithPadding(tokenizer=tokenizer)\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"from transformers import TrainingArguments\\n\",\n    \"training_args = TrainingArguments(\\\"test-trainer\\\")\\n\",\n    \"\\n\",\n    \"from transformers import AutoModelForSequenceClassification\\n\",\n    \"model = AutoModelForSequenceClassification.from_pretrained(checkpoint, num_labels=2)\\n\",\n    \"\\n\",\n    \"import numpy as np\\n\",\n    \"import evaluate\\n\",\n    \"\\n\",\n    \"def compute_metrics(eval_preds):\\n\",\n    \"    metric = evaluate.load(\\\"glue\\\", \\\"mrpc\\\")\\n\",\n    \"    logits, labels = eval_preds\\n\",\n    \"    predictions = np.argmax(logits, axis=-1)\\n\",\n    \"    return metric.compute(predictions=predictions, references=labels)\\n\",\n    \"\\n\",\n    \"training_args = TrainingArguments(\\\"test-trainer\\\", evaluation_strategy=\\\"epoch\\\")\\n\",\n    \"model = AutoModelForSequenceClassification.from_pretrained(checkpoint, num_labels=2)\\n\",\n    \"\\n\",\n    \"trainer = Trainer(\\n\",\n    \"    model,\\n\",\n    \"    training_args,\\n\",\n    \"    train_dataset=tokenized_datasets[\\\"train\\\"],\\n\",\n    \"    eval_dataset=tokenized_datasets[\\\"validation\\\"],\\n\",\n    \"    data_collator=data_collator,\\n\",\n    \"    tokenizer=tokenizer,\\n\",\n    \"    compute_metrics=compute_metrics,\\n\",\n    \")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"0e2795dc\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"from transformers import TrainingArguments\\n\",\n    \"training_args = TrainingArguments(\\\"test-trainer\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"3af29cd5\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"from transformers import AutoModelForSequenceClassification\\n\",\n    \"model = AutoModelForSequenceClassification.from_pretrained(checkpoint, num_labels=2)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"817f644e\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import numpy as np\\n\",\n    \"import evaluate\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"42819a6c\",\n   \"metadata\": {\n    \"scrolled\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"def compute_metrics(eval_preds):\\n\",\n    \"    metric = evaluate.load(\\\"glue\\\", \\\"mrpc\\\")\\n\",\n    \"    logits, labels = eval_preds\\n\",\n    \"    predictions = np.argmax(logits, axis=-1)\\n\",\n    \"    return metric.compute(predictions=predictions, references=labels)\\n\",\n    \"\\n\",\n    \"training_args = TrainingArguments(\\\"test-trainer\\\", evaluation_strategy=\\\"epoch\\\")\\n\",\n    \"model = AutoModelForSequenceClassification.from_pretrained(checkpoint, num_labels=2)\\n\",\n    \"\\n\",\n    \"trainer = Trainer(\\n\",\n    \"    model,\\n\",\n    \"    training_args,\\n\",\n    \"    train_dataset=tokenized_datasets[\\\"train\\\"],\\n\",\n    \"    eval_dataset=tokenized_datasets[\\\"validation\\\"],\\n\",\n    \"    data_collator=data_collator,\\n\",\n    \"    tokenizer=tokenizer,\\n\",\n    \"    compute_metrics=compute_metrics,\\n\",\n    \")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"eb5986b0\",\n   \"metadata\": {\n    \"scrolled\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"from transformers import AutoModelForSeq2SeqLM, AutoTokenizer, DataCollatorForSeq2Seq, Seq2SeqTrainingArguments, Seq2SeqTrainer\\n\",\n    \"from datasets import load_dataset\\n\",\n    \"batch_size=32\\n\",\n    \"\\n\",\n    \"# Define the generator function to preprocess the data in batches\\n\",\n    \"def preprocess_generator(examples):\\n\",\n    \"    for i in range(0, len(examples[\\\"article\\\"]), batch_size):\\n\",\n    \"        batch = examples[\\\"article\\\"][i:i+batch_size]\\n\",\n    \"        targets = examples[\\\"highlights\\\"][i:i+batch_size]\\n\",\n    \"        model_inputs = tokenizer(batch, max_length=512, padding=\\\"max_length\\\", truncation=True)\\n\",\n    \"        with tokenizer.as_target_tokenizer():\\n\",\n    \"            model_targets = tokenizer(targets, max_length=128, padding=\\\"max_length\\\", truncation=True)\\n\",\n    \"        model_inputs[\\\"labels\\\"] = model_targets[\\\"input_ids\\\"]\\n\",\n    \"        yield model_inputs\\n\",\n    \"\\n\",\n    \"def preprocess_function(examples):\\n\",\n    \"    articles = [ex for ex in examples[\\\"article\\\"]]\\n\",\n    \"    summaries = [ex for ex in examples[\\\"highlights\\\"]]\\n\",\n    \"\\n\",\n    \"    model_inputs = tokenizer(articles, max_length=512, padding=\\\"max_length\\\", truncation=True)\\n\",\n    \"    with tokenizer.as_target_tokenizer():\\n\",\n    \"        model_targets = tokenizer(summaries, max_length=128, padding=\\\"max_length\\\", truncation=True)\\n\",\n    \"    \\n\",\n    \"    model_inputs[\\\"labels\\\"] = model_targets[\\\"input_ids\\\"]\\n\",\n    \"    return model_inputs\\n\",\n    \"    \\n\",\n    \"# Load the dataset\\n\",\n    \"raw_datasets = load_dataset(\\\"cnn_dailymail\\\", \\\"3.0.0\\\")\\n\",\n    \"preprocessed_datasets = raw_datasets.map(preprocess_function, batched=True, num_proc=4)\\n\",\n    \"\\n\",\n    \"# Load the pre-trained model and tokenizer\\n\",\n    \"model_name = \\\"t5-small\\\"\\n\",\n    \"tokenizer = AutoTokenizer.from_pretrained(model_name)\\n\",\n    \"model = AutoModelForSeq2SeqLM.from_pretrained(model_name)\\n\",\n    \"\\n\",\n    \"# Define the data collator\\n\",\n    \"data_collator = DataCollatorForSeq2Seq(tokenizer, model=model)\\n\",\n    \"\\n\",\n    \"# Initialize the trainer arguments\\n\",\n    \"training_args = Seq2SeqTrainingArguments(\\n\",\n    \"    output_dir=\\\"./results\\\",\\n\",\n    \"    evaluation_strategy = \\\"epoch\\\",\\n\",\n    \"    learning_rate=2e-5,\\n\",\n    \"    per_device_train_batch_size=batch_size,\\n\",\n    \"    max_steps=1000,\\n\",\n    \"    weight_decay=0.01,\\n\",\n    \"    push_to_hub=False,\\n\",\n    \")\\n\",\n    \"\\n\",\n    \"# Initialize the trainer\\n\",\n    \"trainer = Seq2SeqTrainer(\\n\",\n    \"    model=model,\\n\",\n    \"    args=training_args,\\n\",\n    \"    train_dataset=train_ds,\\n\",\n    \"    data_collator=data_collator,\\n\",\n    \"    tokenizer=tokenizer,\\n\",\n    \")\\n\",\n    \"\\n\",\n    \"# Start the training\\n\",\n    \"trainer.train()\\n\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"7d62583e\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"from datasets import load_metric\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"d310a7b3\",\n   \"metadata\": {\n    \"scrolled\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"preprocessed_datasets\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"99d422cc\",\n   \"metadata\": {\n    \"scrolled\": false\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# Load the pre-trained model and tokenizer\\n\",\n    \"model_name = \\\"t5-small\\\"\\n\",\n    \"tokenizer = AutoTokenizer.from_pretrained(model_name)\\n\",\n    \"model = AutoModelForSeq2SeqLM.from_pretrained(model_name)\\n\",\n    \"\\n\",\n    \"# Define the data collator\\n\",\n    \"data_collator = DataCollatorForSeq2Seq(tokenizer, model=model)\\n\",\n    \"\\n\",\n    \"# Initialize the trainer arguments\\n\",\n    \"training_args = Seq2SeqTrainingArguments(\\n\",\n    \"    output_dir=\\\"./results\\\",\\n\",\n    \"    learning_rate=2e-5,\\n\",\n    \"    per_device_train_batch_size=batch_size,\\n\",\n    \"    max_steps=5000,\\n\",\n    \"    weight_decay=0.01,\\n\",\n    \"    push_to_hub=False,\\n\",\n    \"    evaluation_strategy = \\\"steps\\\",\\n\",\n    \"    eval_steps = 50,\\n\",\n    \")\\n\",\n    \"\\n\",\n    \"# Load the ROUGE metric\\n\",\n    \"metric = load_metric(\\\"rouge\\\")\\n\",\n    \"\\n\",\n    \"# Define the evaluation function\\n\",\n    \"def compute_metrics(pred):\\n\",\n    \"    labels = pred.label_ids\\n\",\n    \"    preds = pred.predictions\\n\",\n    \"    \\n\",\n    \"    decoded_preds = tokenizer.batch_decode(preds, skip_special_tokens=True)\\n\",\n    \"    decoded_labels = tokenizer.batch_decode(labels, skip_special_tokens=True)\\n\",\n    \"    \\n\",\n    \"    scores = metric.compute(predictions=decoded_preds, references=decoded_labels, rouge_types=[\\\"rouge1\\\"])[\\\"rouge1\\\"].mid\\n\",\n    \"    \\n\",\n    \"    return {\\\"rouge1_precision\\\": scores.precision, \\\"rouge1_recall\\\": scores.recall, \\\"rouge1_fmeasure\\\": scores.fmeasure}\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"# Initialize the trainer\\n\",\n    \"trainer = Seq2SeqTrainer(\\n\",\n    \"    model=model,\\n\",\n    \"    args=training_args,\\n\",\n    \"    train_dataset=preprocessed_datasets[\\\"train\\\"],\\n\",\n    \"    eval_dataset=preprocessed_datasets[\\\"validation\\\"],\\n\",\n    \"    data_collator=data_collator,\\n\",\n    \"    tokenizer=tokenizer,\\n\",\n    \"    compute_metrics=compute_metrics,\\n\",\n    \")\\n\",\n    \"\\n\",\n    \"# Start the training\\n\",\n    \"trainer.train()\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"a5e97b57\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"!pip install nltk\\n\",\n    \"!pip install rouge_score\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"558c3e66\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Goal:\\n\",\n    \"\\n\",\n    \"1. Implement full training from dataloading (dailycnn dataset), to model training, evaluation, etc, using HF. \\n\",\n    \"* Right now: stuck on on the fly dataset loading, we don't want to cache because this would take a lot of disk space etc.\\n\",\n    \"\\n\",\n    \"2. After we get step 1) working, we want to go deeper on every step, so download the dataset and load it as a custom dataset rather than using huggingface simple API, in order to make it more general. Compare with loading the ds as a custom HF dataset or using pytorch class together with lightning. Speed difference? Convenience? Also we want to use the lightning Trainer so see how we can integrate that. And then compare HF to the lightning + hf model approach and see what we like the most.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"624d49ca\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": []\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3 (ipykernel)\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.10.9\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 5\n}\n"
  },
  {
    "path": "ML/Pytorch/huggingface/learninghugg.py",
    "content": "from datasets import load_dataset\nfrom transformers import AutoTokenizer, DataCollatorWithPadding\nfrom transformers import Trainer\n\nraw_datasets = load_dataset(\"glue\", \"mrpc\")\ncheckpoint = \"bert-base-uncased\"\ntokenizer = AutoTokenizer.from_pretrained(checkpoint)\n\n\ndef tokenize_function(example):\n    return tokenizer(example[\"sentence1\"], example[\"sentence2\"], truncation=True)\n\n\ntokenized_datasets = raw_datasets.map(tokenize_function, batched=True)\ndata_collator = DataCollatorWithPadding(tokenizer=tokenizer)\n\n\nfrom transformers import TrainingArguments\ntraining_args = TrainingArguments(\"test-trainer\")\n\nfrom transformers import AutoModelForSequenceClassification\nmodel = AutoModelForSequenceClassification.from_pretrained(checkpoint, num_labels=2)\n\ndef compute_metrics(eval_preds):\n    metric = evaluate.load(\"glue\", \"mrpc\")\n    logits, labels = eval_preds\n    predictions = np.argmax(logits, axis=-1)\n    return metric.compute(predictions=predictions, references=labels)\n\ntraining_args = TrainingArguments(\"test-trainer\", evaluation_strategy=\"epoch\")\nmodel = AutoModelForSequenceClassification.from_pretrained(checkpoint, num_labels=2)\n\ntrainer = Trainer(\n    model,\n    training_args,\n    train_dataset=tokenized_datasets[\"train\"],\n    eval_dataset=tokenized_datasets[\"validation\"],\n    data_collator=data_collator,\n    tokenizer=tokenizer,\n    compute_metrics=compute_metrics,\n)\n"
  },
  {
    "path": "ML/Pytorch/huggingface/lightning_logs/version_0/hparams.yaml",
    "content": "{}\n"
  },
  {
    "path": "ML/Pytorch/huggingface/lightning_logs/version_1/hparams.yaml",
    "content": "{}\n"
  },
  {
    "path": "ML/Pytorch/huggingface/lightning_logs/version_2/hparams.yaml",
    "content": "{}\n"
  },
  {
    "path": "ML/Pytorch/huggingface/lightning_logs/version_3/hparams.yaml",
    "content": "{}\n"
  },
  {
    "path": "ML/Pytorch/huggingface/model.py",
    "content": "import torch\nimport pytorch_lightning as pl\nfrom datasets import load_dataset, load_metric\nfrom transformers import T5Config, T5ForConditionalGeneration\n\nfrom transformers import (\n    AutoModel,\n    AutoModelForSeq2SeqLM,\n    AutoTokenizer,\n    DataCollatorForSeq2Seq,\n    Seq2SeqTrainingArguments,\n    Seq2SeqTrainer,\n)\n\n\nclass MyLightningModule(pl.LightningModule):\n    def __init__(self, model_name, learning_rate, weight_decay):\n        super().__init__()\n        self.model_name = model_name\n        self.learning_rate = learning_rate\n        self.weight_decay = weight_decay\n        self.tokenizer = AutoTokenizer.from_pretrained(model_name)\n\n        # Load the pre-trained model and tokenizer\n        #self.model = torch.compile(\n        #    AutoModelForSeq2SeqLM.from_pretrained(self.model_name)\n        #)\n\n        # Create a T5-small configuration\n        config = T5Config.from_pretrained(\"t5-small\")\n\n        # Initialize the T5 model with random weights\n        self.model = torch.compile(T5ForConditionalGeneration(config))\n\n        # Load the ROUGE metric\n        self.metric = load_metric(\"rouge\")\n        self.logits = []\n        self.labels = []\n\n    def forward(self, input_ids, attention_mask, labels=None):\n        output = self.model(\n            input_ids=input_ids,\n            attention_mask=attention_mask,\n            labels=labels,\n        )\n        return output.loss, output.logits\n\n    def training_step(self, batch, batch_idx):\n        input_ids = batch[\"input_ids\"]\n        attention_mask = batch[\"attention_mask\"]\n        labels = batch[\"labels\"]\n        loss, logits = self(input_ids, attention_mask, labels)\n        self.log(\"train_loss\", loss, on_epoch=True, on_step=True, prog_bar=True)\n        return {\"loss\": loss, \"logits\": logits}\n\n    def validation_step(self, batch, batch_idx):\n        input_ids = batch[\"input_ids\"]\n        attention_mask = batch[\"attention_mask\"]\n        labels = batch[\"labels\"]\n        loss, logits = self(input_ids, attention_mask, labels)\n        self.log(\"val_loss\", loss, on_epoch=True, on_step=False)\n\n        # add logits and labels to instance attributes, but make sure to detach them\n        # from the computational graph first\n        self.logits.append(logits.argmax(dim=-1).detach().cpu())\n        self.labels.append(labels.detach().cpu())\n        return {\"loss\": loss, \"logits\": logits, \"labels\": labels}\n\n    def on_validation_epoch_end(self):\n        # Concatenate tensors in logits and labels lists\n        pred_token_ids = torch.cat(self.logits, dim=0)\n        true_labels = torch.cat(self.labels, dim=0)\n\n        # Decode predictions and labels using the saved instance attributes\n        decoded_preds = self.tokenizer.batch_decode(\n            pred_token_ids, skip_special_tokens=True\n        )\n        decoded_labels = self.tokenizer.batch_decode(\n            true_labels, skip_special_tokens=True\n        )\n\n        # Compute ROUGE scores\n        scores = self.metric.compute(\n            predictions=decoded_preds, references=decoded_labels, rouge_types=[\"rouge1\"]\n        )[\"rouge1\"].mid\n\n        self.log(\"rouge1_precision\", scores.precision, prog_bar=True)\n        self.log(\"rouge1_recall\", scores.recall, prog_bar=True)\n        self.log(\"rouge1_fmeasure\", scores.fmeasure, prog_bar=True)\n\n        # Clear logits and labels instance attributes for the next validation epoch\n        self.logits.clear()\n        self.labels.clear()\n\n    def predict(self, article: str, max_input_length: int = 512, max_output_length: int = 150) -> str:\n        # Set the model to evaluation mode\n        self.model.eval()\n\n        # Tokenize the input article\n        inputs = self.tokenizer(\n            article,\n            max_length=max_input_length,\n            padding=\"max_length\",\n            truncation=True,\n            return_tensors=\"pt\"\n        )\n\n        # Move the input tensors to the same device as the model\n        inputs = {key: value.to(self.device) for key, value in inputs.items()}\n\n        # Generate summary\n        with torch.no_grad():\n            output = self.model.generate(\n                input_ids=inputs[\"input_ids\"],\n                attention_mask=inputs[\"attention_mask\"],\n                max_length=max_output_length,\n                num_return_sequences=1,\n            )\n\n        # Decode and return the summary\n        summary = self.tokenizer.decode(output[0], skip_special_tokens=True)\n        return summary\n\n    def configure_optimizers(self):\n        optimizer = torch.optim.AdamW(\n            self.parameters(), lr=self.learning_rate, weight_decay=self.weight_decay\n        )\n        return optimizer\n\n\n"
  },
  {
    "path": "ML/Pytorch/huggingface/test.py",
    "content": "l = [\"cat\", \"dog\"]\nsentence = \"The quick brown fox jumps over the lazy dog\"\n"
  },
  {
    "path": "ML/Pytorch/huggingface/train.py",
    "content": "from dataset import MyDataModule\nfrom model import MyLightningModule\nimport pytorch_lightning as pl\nfrom pytorch_lightning import Trainer\nfrom pytorch_lightning.callbacks import ModelCheckpoint\nfrom pytorch_lightning.loggers import TensorBoardLogger\nfrom transformers import (\n    AutoModel,\n    AutoModelForSeq2SeqLM,\n    AutoTokenizer,\n    DataCollatorForSeq2Seq,\n    Seq2SeqTrainingArguments,\n    Seq2SeqTrainer,\n)\nimport torch\n\ntorch.set_float32_matmul_precision(\"medium\")\n\nif __name__ == \"__main__\":\n    # Define the checkpoint callback\n    checkpoint_callback = ModelCheckpoint(\n        monitor=\"val_loss\",\n        dirpath=\"checkpoints\",\n        filename=\"my_model-{epoch:02d}-{val_loss:.2f}\",\n        save_top_k=-1,\n        every_n_epochs=1,\n        verbose=True,\n    )\n    logger = TensorBoardLogger(\"tb_logs\", name=\"t5_dailymail\")\n\n    model_name = \"t5-small\"\n    tokenizer = AutoTokenizer.from_pretrained(model_name)\n\n    # File paths\n    train_csv = \"train.csv\"\n    val_csv = \"validation.csv\"\n    test_csv = \"test.csv\"\n\n    # Create the data module\n    dm = MyDataModule(train_csv, val_csv, test_csv, tokenizer, batch_size=32)\n    dm.setup()\n\n    model = MyLightningModule(\n        model_name=\"t5-small\", learning_rate=1e-4, weight_decay=1e-5\n    )\n\n\n    #checkpoint_path = \"checkpoints/curr.ckpt\"\n    #checkpoint = torch.load(checkpoint_path)\n    #model.load_state_dict(checkpoint[\"state_dict\"])\n\n    trainer = pl.Trainer(\n        accelerator=\"gpu\",\n        devices=[0, 1],\n        max_epochs=10,\n        precision=16,\n        logger=logger,\n        callbacks=[checkpoint_callback],\n        log_every_n_steps=10,\n    )\n    trainer.fit(model, dm)\n    trainer.validate(model, dm)\n    \n    #example = \"\"\"Former President Donald Trump claims in a social media post that he will be arrested next week. The claim comes while a New York prosecutor considers charging Trump in connection with hush money paid to adult film actress Stormy Daniels but there has been no official announcement of any plans for an indictment. What we know about Trump possibly facing criminal indictment in New York City. Trump has been entangled in several criminal investigations but the case related to Daniels is the longest-running of all of them, reaching back to 2016. On his platform Truth Social on Saturday morning, Trump cited \"illegal leaks\" that he will be arrested Tuesday and he called for protests. Trump, who is running for president in 2024, also defended himself, saying that he has not committed a crime — though he did not disclose what he expects to be charged with — and he accused the Manhattan District Attorney's Office of being \"corrupt & highly political.\". 'I'M BACK!' Trump posts on Facebook, YouTube for first time in two years. The Manhattan District Attorney's Office declined to comment on whether it will soon be pursing an arrest warrant for Trump. But the Associated Press reported that law enforcement officials in New York are discussing security preparations in anticipation that Trump may be indicted in coming weeks. If it does occur, Trump would become the first former president to be indicted in U.S. history.\"\"\" \n    #print(len(tokenizer(example)[\"input_ids\"]))\n    #summary = model.predict(example)\n    #print(summary)\n"
  },
  {
    "path": "ML/Pytorch/image_segmentation/semantic_segmentation_unet/data/note.txt",
    "content": "download the data from kaggle and put in folders similar to the video, specifically you should have 4\nfolders:\n\n- train_images\n- train_masks\n- val_images\n- val_masks\n"
  },
  {
    "path": "ML/Pytorch/image_segmentation/semantic_segmentation_unet/dataset.py",
    "content": "import os\nfrom PIL import Image\nfrom torch.utils.data import Dataset\nimport numpy as np\n\nclass CarvanaDataset(Dataset):\n    def __init__(self, image_dir, mask_dir, transform=None):\n        self.image_dir = image_dir\n        self.mask_dir = mask_dir\n        self.transform = transform\n        self.images = os.listdir(image_dir)\n\n    def __len__(self):\n        return len(self.images)\n\n    def __getitem__(self, index):\n        img_path = os.path.join(self.image_dir, self.images[index])\n        mask_path = os.path.join(self.mask_dir, self.images[index].replace(\".jpg\", \"_mask.gif\"))\n        image = np.array(Image.open(img_path).convert(\"RGB\"))\n        mask = np.array(Image.open(mask_path).convert(\"L\"), dtype=np.float32)\n        mask[mask == 255.0] = 1.0\n\n        if self.transform is not None:\n            augmentations = self.transform(image=image, mask=mask)\n            image = augmentations[\"image\"]\n            mask = augmentations[\"mask\"]\n\n        return image, mask\n\n"
  },
  {
    "path": "ML/Pytorch/image_segmentation/semantic_segmentation_unet/model.py",
    "content": "import torch\nimport torch.nn as nn\nimport torchvision.transforms.functional as TF\n\nclass DoubleConv(nn.Module):\n    def __init__(self, in_channels, out_channels):\n        super(DoubleConv, self).__init__()\n        self.conv = nn.Sequential(\n            nn.Conv2d(in_channels, out_channels, 3, 1, 1, bias=False),\n            nn.BatchNorm2d(out_channels),\n            nn.ReLU(inplace=True),\n            nn.Conv2d(out_channels, out_channels, 3, 1, 1, bias=False),\n            nn.BatchNorm2d(out_channels),\n            nn.ReLU(inplace=True),\n        )\n\n    def forward(self, x):\n        return self.conv(x)\n\nclass UNET(nn.Module):\n    def __init__(\n            self, in_channels=3, out_channels=1, features=[64, 128, 256, 512],\n    ):\n        super(UNET, self).__init__()\n        self.ups = nn.ModuleList()\n        self.downs = nn.ModuleList()\n        self.pool = nn.MaxPool2d(kernel_size=2, stride=2)\n\n        # Down part of UNET\n        for feature in features:\n            self.downs.append(DoubleConv(in_channels, feature))\n            in_channels = feature\n\n        # Up part of UNET\n        for feature in reversed(features):\n            self.ups.append(\n                nn.ConvTranspose2d(\n                    feature*2, feature, kernel_size=2, stride=2,\n                )\n            )\n            self.ups.append(DoubleConv(feature*2, feature))\n\n        self.bottleneck = DoubleConv(features[-1], features[-1]*2)\n        self.final_conv = nn.Conv2d(features[0], out_channels, kernel_size=1)\n\n    def forward(self, x):\n        skip_connections = []\n\n        for down in self.downs:\n            x = down(x)\n            skip_connections.append(x)\n            x = self.pool(x)\n\n        x = self.bottleneck(x)\n        skip_connections = skip_connections[::-1]\n\n        for idx in range(0, len(self.ups), 2):\n            x = self.ups[idx](x)\n            skip_connection = skip_connections[idx//2]\n\n            if x.shape != skip_connection.shape:\n                x = TF.resize(x, size=skip_connection.shape[2:])\n\n            concat_skip = torch.cat((skip_connection, x), dim=1)\n            x = self.ups[idx+1](concat_skip)\n\n        return self.final_conv(x)\n\ndef test():\n    x = torch.randn((3, 1, 161, 161))\n    model = UNET(in_channels=1, out_channels=1)\n    preds = model(x)\n    assert preds.shape == x.shape\n\nif __name__ == \"__main__\":\n    test()"
  },
  {
    "path": "ML/Pytorch/image_segmentation/semantic_segmentation_unet/saved_images/note.txt",
    "content": "it will put some saved preds here so you can see how it looks like"
  },
  {
    "path": "ML/Pytorch/image_segmentation/semantic_segmentation_unet/train.py",
    "content": "import torch\nimport albumentations as A\nfrom albumentations.pytorch import ToTensorV2\nfrom tqdm import tqdm\nimport torch.nn as nn\nimport torch.optim as optim\nfrom model import UNET\nfrom utils import (\n    load_checkpoint,\n    save_checkpoint,\n    get_loaders,\n    check_accuracy,\n    save_predictions_as_imgs,\n)\n\n# Hyperparameters etc.\nLEARNING_RATE = 1e-4\nDEVICE = \"cuda\" if torch.cuda.is_available() else \"cpu\"\nBATCH_SIZE = 16\nNUM_EPOCHS = 3\nNUM_WORKERS = 2\nIMAGE_HEIGHT = 160  # 1280 originally\nIMAGE_WIDTH = 240  # 1918 originally\nPIN_MEMORY = True\nLOAD_MODEL = False\nTRAIN_IMG_DIR = \"data/train_images/\"\nTRAIN_MASK_DIR = \"data/train_masks/\"\nVAL_IMG_DIR = \"data/val_images/\"\nVAL_MASK_DIR = \"data/val_masks/\"\n\ndef train_fn(loader, model, optimizer, loss_fn, scaler):\n    loop = tqdm(loader)\n\n    for batch_idx, (data, targets) in enumerate(loop):\n        data = data.to(device=DEVICE)\n        targets = targets.float().unsqueeze(1).to(device=DEVICE)\n\n        # forward\n        with torch.cuda.amp.autocast():\n            predictions = model(data)\n            loss = loss_fn(predictions, targets)\n\n        # backward\n        optimizer.zero_grad()\n        scaler.scale(loss).backward()\n        scaler.step(optimizer)\n        scaler.update()\n\n        # update tqdm loop\n        loop.set_postfix(loss=loss.item())\n\n\ndef main():\n    train_transform = A.Compose(\n        [\n            A.Resize(height=IMAGE_HEIGHT, width=IMAGE_WIDTH),\n            A.Rotate(limit=35, p=1.0),\n            A.HorizontalFlip(p=0.5),\n            A.VerticalFlip(p=0.1),\n            A.Normalize(\n                mean=[0.0, 0.0, 0.0],\n                std=[1.0, 1.0, 1.0],\n                max_pixel_value=255.0,\n            ),\n            ToTensorV2(),\n        ],\n    )\n\n    val_transforms = A.Compose(\n        [\n            A.Resize(height=IMAGE_HEIGHT, width=IMAGE_WIDTH),\n            A.Normalize(\n                mean=[0.0, 0.0, 0.0],\n                std=[1.0, 1.0, 1.0],\n                max_pixel_value=255.0,\n            ),\n            ToTensorV2(),\n        ],\n    )\n\n    model = UNET(in_channels=3, out_channels=1).to(DEVICE)\n    loss_fn = nn.BCEWithLogitsLoss()\n    optimizer = optim.Adam(model.parameters(), lr=LEARNING_RATE)\n\n    train_loader, val_loader = get_loaders(\n        TRAIN_IMG_DIR,\n        TRAIN_MASK_DIR,\n        VAL_IMG_DIR,\n        VAL_MASK_DIR,\n        BATCH_SIZE,\n        train_transform,\n        val_transforms,\n        NUM_WORKERS,\n        PIN_MEMORY,\n    )\n\n    if LOAD_MODEL:\n        load_checkpoint(torch.load(\"my_checkpoint.pth.tar\"), model)\n\n\n    check_accuracy(val_loader, model, device=DEVICE)\n    scaler = torch.cuda.amp.GradScaler()\n\n    for epoch in range(NUM_EPOCHS):\n        train_fn(train_loader, model, optimizer, loss_fn, scaler)\n\n        # save model\n        checkpoint = {\n            \"state_dict\": model.state_dict(),\n            \"optimizer\":optimizer.state_dict(),\n        }\n        save_checkpoint(checkpoint)\n\n        # check accuracy\n        check_accuracy(val_loader, model, device=DEVICE)\n\n        # print some examples to a folder\n        save_predictions_as_imgs(\n            val_loader, model, folder=\"saved_images/\", device=DEVICE\n        )\n\n\nif __name__ == \"__main__\":\n    main()"
  },
  {
    "path": "ML/Pytorch/image_segmentation/semantic_segmentation_unet/utils.py",
    "content": "import torch\nimport torchvision\nfrom dataset import CarvanaDataset\nfrom torch.utils.data import DataLoader\n\ndef save_checkpoint(state, filename=\"my_checkpoint.pth.tar\"):\n    print(\"=> Saving checkpoint\")\n    torch.save(state, filename)\n\ndef load_checkpoint(checkpoint, model):\n    print(\"=> Loading checkpoint\")\n    model.load_state_dict(checkpoint[\"state_dict\"])\n\ndef get_loaders(\n    train_dir,\n    train_maskdir,\n    val_dir,\n    val_maskdir,\n    batch_size,\n    train_transform,\n    val_transform,\n    num_workers=4,\n    pin_memory=True,\n):\n    train_ds = CarvanaDataset(\n        image_dir=train_dir,\n        mask_dir=train_maskdir,\n        transform=train_transform,\n    )\n\n    train_loader = DataLoader(\n        train_ds,\n        batch_size=batch_size,\n        num_workers=num_workers,\n        pin_memory=pin_memory,\n        shuffle=True,\n    )\n\n    val_ds = CarvanaDataset(\n        image_dir=val_dir,\n        mask_dir=val_maskdir,\n        transform=val_transform,\n    )\n\n    val_loader = DataLoader(\n        val_ds,\n        batch_size=batch_size,\n        num_workers=num_workers,\n        pin_memory=pin_memory,\n        shuffle=False,\n    )\n\n    return train_loader, val_loader\n\ndef check_accuracy(loader, model, device=\"cuda\"):\n    num_correct = 0\n    num_pixels = 0\n    dice_score = 0\n    model.eval()\n\n    with torch.no_grad():\n        for x, y in loader:\n            x = x.to(device)\n            y = y.to(device).unsqueeze(1)\n            preds = torch.sigmoid(model(x))\n            preds = (preds > 0.5).float()\n            num_correct += (preds == y).sum()\n            num_pixels += torch.numel(preds)\n            dice_score += (2 * (preds * y).sum()) / (\n                (preds + y).sum() + 1e-8\n            )\n\n    print(\n        f\"Got {num_correct}/{num_pixels} with acc {num_correct/num_pixels*100:.2f}\"\n    )\n    print(f\"Dice score: {dice_score/len(loader)}\")\n    model.train()\n\ndef save_predictions_as_imgs(\n    loader, model, folder=\"saved_images/\", device=\"cuda\"\n):\n    model.eval()\n    for idx, (x, y) in enumerate(loader):\n        x = x.to(device=device)\n        with torch.no_grad():\n            preds = torch.sigmoid(model(x))\n            preds = (preds > 0.5).float()\n        torchvision.utils.save_image(\n            preds, f\"{folder}/pred_{idx}.png\"\n        )\n        torchvision.utils.save_image(y.unsqueeze(1), f\"{folder}{idx}.png\")\n\n    model.train()"
  },
  {
    "path": "ML/Pytorch/more_advanced/Seq2Seq/seq2seq.py",
    "content": "import torch\nimport torch.nn as nn\nimport torch.optim as optim\nfrom torchtext.datasets import Multi30k\nfrom torchtext.data import Field, BucketIterator\nimport numpy as np\nimport spacy\nimport random\nfrom torch.utils.tensorboard import SummaryWriter  # to print to tensorboard\nfrom utils import translate_sentence, bleu, save_checkpoint, load_checkpoint\n\nspacy_ger = spacy.load(\"de\")\nspacy_eng = spacy.load(\"en\")\n\n\ndef tokenize_ger(text):\n    return [tok.text for tok in spacy_ger.tokenizer(text)]\n\n\ndef tokenize_eng(text):\n    return [tok.text for tok in spacy_eng.tokenizer(text)]\n\n\ngerman = Field(tokenize=tokenize_ger, lower=True, init_token=\"<sos>\", eos_token=\"<eos>\")\n\nenglish = Field(\n    tokenize=tokenize_eng, lower=True, init_token=\"<sos>\", eos_token=\"<eos>\"\n)\n\ntrain_data, valid_data, test_data = Multi30k.splits(\n    exts=(\".de\", \".en\"), fields=(german, english)\n)\n\ngerman.build_vocab(train_data, max_size=10000, min_freq=2)\nenglish.build_vocab(train_data, max_size=10000, min_freq=2)\n\n\nclass Encoder(nn.Module):\n    def __init__(self, input_size, embedding_size, hidden_size, num_layers, p):\n        super(Encoder, self).__init__()\n        self.dropout = nn.Dropout(p)\n        self.hidden_size = hidden_size\n        self.num_layers = num_layers\n\n        self.embedding = nn.Embedding(input_size, embedding_size)\n        self.rnn = nn.LSTM(embedding_size, hidden_size, num_layers, dropout=p)\n\n    def forward(self, x):\n        # x shape: (seq_length, N) where N is batch size\n\n        embedding = self.dropout(self.embedding(x))\n        # embedding shape: (seq_length, N, embedding_size)\n\n        outputs, (hidden, cell) = self.rnn(embedding)\n        # outputs shape: (seq_length, N, hidden_size)\n\n        return hidden, cell\n\n\nclass Decoder(nn.Module):\n    def __init__(\n        self, input_size, embedding_size, hidden_size, output_size, num_layers, p\n    ):\n        super(Decoder, self).__init__()\n        self.dropout = nn.Dropout(p)\n        self.hidden_size = hidden_size\n        self.num_layers = num_layers\n\n        self.embedding = nn.Embedding(input_size, embedding_size)\n        self.rnn = nn.LSTM(embedding_size, hidden_size, num_layers, dropout=p)\n        self.fc = nn.Linear(hidden_size, output_size)\n\n    def forward(self, x, hidden, cell):\n        # x shape: (N) where N is for batch size, we want it to be (1, N), seq_length\n        # is 1 here because we are sending in a single word and not a sentence\n        x = x.unsqueeze(0)\n\n        embedding = self.dropout(self.embedding(x))\n        # embedding shape: (1, N, embedding_size)\n\n        outputs, (hidden, cell) = self.rnn(embedding, (hidden, cell))\n        # outputs shape: (1, N, hidden_size)\n\n        predictions = self.fc(outputs)\n\n        # predictions shape: (1, N, length_target_vocabulary) to send it to\n        # loss function we want it to be (N, length_target_vocabulary) so we're\n        # just gonna remove the first dim\n        predictions = predictions.squeeze(0)\n\n        return predictions, hidden, cell\n\n\nclass Seq2Seq(nn.Module):\n    def __init__(self, encoder, decoder):\n        super(Seq2Seq, self).__init__()\n        self.encoder = encoder\n        self.decoder = decoder\n\n    def forward(self, source, target, teacher_force_ratio=0.5):\n        batch_size = source.shape[1]\n        target_len = target.shape[0]\n        target_vocab_size = len(english.vocab)\n\n        outputs = torch.zeros(target_len, batch_size, target_vocab_size).to(device)\n\n        hidden, cell = self.encoder(source)\n\n        # Grab the first input to the Decoder which will be <SOS> token\n        x = target[0]\n\n        for t in range(1, target_len):\n            # Use previous hidden, cell as context from encoder at start\n            output, hidden, cell = self.decoder(x, hidden, cell)\n\n            # Store next output prediction\n            outputs[t] = output\n\n            # Get the best word the Decoder predicted (index in the vocabulary)\n            best_guess = output.argmax(1)\n\n            # With probability of teacher_force_ratio we take the actual next word\n            # otherwise we take the word that the Decoder predicted it to be.\n            # Teacher Forcing is used so that the model gets used to seeing\n            # similar inputs at training and testing time, if teacher forcing is 1\n            # then inputs at test time might be completely different than what the\n            # network is used to. This was a long comment.\n            x = target[t] if random.random() < teacher_force_ratio else best_guess\n\n        return outputs\n\n\n### We're ready to define everything we need for training our Seq2Seq model ###\n\n# Training hyperparameters\nnum_epochs = 100\nlearning_rate = 0.001\nbatch_size = 64\n\n# Model hyperparameters\nload_model = False\ndevice = torch.device(\"cuda\" if torch.cuda.is_available() else \"cpu\")\ninput_size_encoder = len(german.vocab)\ninput_size_decoder = len(english.vocab)\noutput_size = len(english.vocab)\nencoder_embedding_size = 300\ndecoder_embedding_size = 300\nhidden_size = 1024  # Needs to be the same for both RNN's\nnum_layers = 2\nenc_dropout = 0.5\ndec_dropout = 0.5\n\n# Tensorboard to get nice loss plot\nwriter = SummaryWriter(f\"runs/loss_plot\")\nstep = 0\n\ntrain_iterator, valid_iterator, test_iterator = BucketIterator.splits(\n    (train_data, valid_data, test_data),\n    batch_size=batch_size,\n    sort_within_batch=True,\n    sort_key=lambda x: len(x.src),\n    device=device,\n)\n\nencoder_net = Encoder(\n    input_size_encoder, encoder_embedding_size, hidden_size, num_layers, enc_dropout\n).to(device)\n\ndecoder_net = Decoder(\n    input_size_decoder,\n    decoder_embedding_size,\n    hidden_size,\n    output_size,\n    num_layers,\n    dec_dropout,\n).to(device)\n\nmodel = Seq2Seq(encoder_net, decoder_net).to(device)\noptimizer = optim.Adam(model.parameters(), lr=learning_rate)\n\npad_idx = english.vocab.stoi[\"<pad>\"]\ncriterion = nn.CrossEntropyLoss(ignore_index=pad_idx)\n\nif load_model:\n    load_checkpoint(torch.load(\"my_checkpoint.pth.tar\"), model, optimizer)\n\n\nsentence = \"ein boot mit mehreren männern darauf wird von einem großen pferdegespann ans ufer gezogen.\"\n\nfor epoch in range(num_epochs):\n    print(f\"[Epoch {epoch} / {num_epochs}]\")\n\n    checkpoint = {\"state_dict\": model.state_dict(), \"optimizer\": optimizer.state_dict()}\n    save_checkpoint(checkpoint)\n\n    model.eval()\n\n    translated_sentence = translate_sentence(\n        model, sentence, german, english, device, max_length=50\n    )\n\n    print(f\"Translated example sentence: \\n {translated_sentence}\")\n\n    model.train()\n\n    for batch_idx, batch in enumerate(train_iterator):\n        # Get input and targets and get to cuda\n        inp_data = batch.src.to(device)\n        target = batch.trg.to(device)\n\n        # Forward prop\n        output = model(inp_data, target)\n\n        # Output is of shape (trg_len, batch_size, output_dim) but Cross Entropy Loss\n        # doesn't take input in that form. For example if we have MNIST we want to have\n        # output to be: (N, 10) and targets just (N). Here we can view it in a similar\n        # way that we have output_words * batch_size that we want to send in into\n        # our cost function, so we need to do some reshapin. While we're at it\n        # Let's also remove the start token while we're at it\n        output = output[1:].reshape(-1, output.shape[2])\n        target = target[1:].reshape(-1)\n\n        optimizer.zero_grad()\n        loss = criterion(output, target)\n\n        # Back prop\n        loss.backward()\n\n        # Clip to avoid exploding gradient issues, makes sure grads are\n        # within a healthy range\n        torch.nn.utils.clip_grad_norm_(model.parameters(), max_norm=1)\n\n        # Gradient descent step\n        optimizer.step()\n\n        # Plot to tensorboard\n        writer.add_scalar(\"Training loss\", loss, global_step=step)\n        step += 1\n\n\nscore = bleu(test_data[1:100], model, german, english, device)\nprint(f\"Bleu score {score*100:.2f}\")\n"
  },
  {
    "path": "ML/Pytorch/more_advanced/Seq2Seq/utils.py",
    "content": "import torch\nimport spacy\nfrom torchtext.data.metrics import bleu_score\nimport sys\n\n\ndef translate_sentence(model, sentence, german, english, device, max_length=50):\n    # print(sentence)\n\n    # sys.exit()\n\n    # Load german tokenizer\n    spacy_ger = spacy.load(\"de\")\n\n    # Create tokens using spacy and everything in lower case (which is what our vocab is)\n    if type(sentence) == str:\n        tokens = [token.text.lower() for token in spacy_ger(sentence)]\n    else:\n        tokens = [token.lower() for token in sentence]\n\n    # print(tokens)\n\n    # sys.exit()\n    # Add <SOS> and <EOS> in beginning and end respectively\n    tokens.insert(0, german.init_token)\n    tokens.append(german.eos_token)\n\n    # Go through each german token and convert to an index\n    text_to_indices = [german.vocab.stoi[token] for token in tokens]\n\n    # Convert to Tensor\n    sentence_tensor = torch.LongTensor(text_to_indices).unsqueeze(1).to(device)\n\n    # Build encoder hidden, cell state\n    with torch.no_grad():\n        hidden, cell = model.encoder(sentence_tensor)\n\n    outputs = [english.vocab.stoi[\"<sos>\"]]\n\n    for _ in range(max_length):\n        previous_word = torch.LongTensor([outputs[-1]]).to(device)\n\n        with torch.no_grad():\n            output, hidden, cell = model.decoder(previous_word, hidden, cell)\n            best_guess = output.argmax(1).item()\n\n        outputs.append(best_guess)\n\n        # Model predicts it's the end of the sentence\n        if output.argmax(1).item() == english.vocab.stoi[\"<eos>\"]:\n            break\n\n    translated_sentence = [english.vocab.itos[idx] for idx in outputs]\n\n    # remove start token\n    return translated_sentence[1:]\n\n\ndef bleu(data, model, german, english, device):\n    targets = []\n    outputs = []\n\n    for example in data:\n        src = vars(example)[\"src\"]\n        trg = vars(example)[\"trg\"]\n\n        prediction = translate_sentence(model, src, german, english, device)\n        prediction = prediction[:-1]  # remove <eos> token\n\n        targets.append([trg])\n        outputs.append(prediction)\n\n    return bleu_score(outputs, targets)\n\n\ndef save_checkpoint(state, filename=\"my_checkpoint.pth.tar\"):\n    print(\"=> Saving checkpoint\")\n    torch.save(state, filename)\n\n\ndef load_checkpoint(checkpoint, model, optimizer):\n    print(\"=> Loading checkpoint\")\n    model.load_state_dict(checkpoint[\"state_dict\"])\n    optimizer.load_state_dict(checkpoint[\"optimizer\"])\n"
  },
  {
    "path": "ML/Pytorch/more_advanced/Seq2Seq_attention/seq2seq_attention.py",
    "content": "import random\nimport torch\nimport torch.nn as nn\nimport torch.optim as optim\nimport numpy as np\nimport spacy\nfrom utils import translate_sentence, bleu, save_checkpoint, load_checkpoint\nfrom torch.utils.tensorboard import SummaryWriter  # to print to tensorboard\nfrom torchtext.datasets import Multi30k\nfrom torchtext.data import Field, BucketIterator\n\n\"\"\"\nTo install spacy languages do:\npython -m spacy download en\npython -m spacy download de\n\"\"\"\nspacy_ger = spacy.load(\"de\")\nspacy_eng = spacy.load(\"en\")\n\n\ndef tokenize_ger(text):\n    return [tok.text for tok in spacy_ger.tokenizer(text)]\n\n\ndef tokenize_eng(text):\n    return [tok.text for tok in spacy_eng.tokenizer(text)]\n\n\ngerman = Field(tokenize=tokenize_ger, lower=True, init_token=\"<sos>\", eos_token=\"<eos>\")\n\nenglish = Field(\n    tokenize=tokenize_eng, lower=True, init_token=\"<sos>\", eos_token=\"<eos>\"\n)\n\ntrain_data, valid_data, test_data = Multi30k.splits(\n    exts=(\".de\", \".en\"), fields=(german, english)\n)\n\ngerman.build_vocab(train_data, max_size=10000, min_freq=2)\nenglish.build_vocab(train_data, max_size=10000, min_freq=2)\n\n\nclass Encoder(nn.Module):\n    def __init__(self, input_size, embedding_size, hidden_size, num_layers, p):\n        super(Encoder, self).__init__()\n        self.hidden_size = hidden_size\n        self.num_layers = num_layers\n\n        self.embedding = nn.Embedding(input_size, embedding_size)\n        self.rnn = nn.LSTM(embedding_size, hidden_size, num_layers, bidirectional=True)\n\n        self.fc_hidden = nn.Linear(hidden_size * 2, hidden_size)\n        self.fc_cell = nn.Linear(hidden_size * 2, hidden_size)\n        self.dropout = nn.Dropout(p)\n\n    def forward(self, x):\n        # x: (seq_length, N) where N is batch size\n\n        embedding = self.dropout(self.embedding(x))\n        # embedding shape: (seq_length, N, embedding_size)\n\n        encoder_states, (hidden, cell) = self.rnn(embedding)\n        # outputs shape: (seq_length, N, hidden_size)\n\n        # Use forward, backward cells and hidden through a linear layer\n        # so that it can be input to the decoder which is not bidirectional\n        # Also using index slicing ([idx:idx+1]) to keep the dimension\n        hidden = self.fc_hidden(torch.cat((hidden[0:1], hidden[1:2]), dim=2))\n        cell = self.fc_cell(torch.cat((cell[0:1], cell[1:2]), dim=2))\n\n        return encoder_states, hidden, cell\n\n\nclass Decoder(nn.Module):\n    def __init__(\n        self, input_size, embedding_size, hidden_size, output_size, num_layers, p\n    ):\n        super(Decoder, self).__init__()\n        self.hidden_size = hidden_size\n        self.num_layers = num_layers\n\n        self.embedding = nn.Embedding(input_size, embedding_size)\n        self.rnn = nn.LSTM(hidden_size * 2 + embedding_size, hidden_size, num_layers)\n\n        self.energy = nn.Linear(hidden_size * 3, 1)\n        self.fc = nn.Linear(hidden_size, output_size)\n        self.dropout = nn.Dropout(p)\n        self.softmax = nn.Softmax(dim=0)\n        self.relu = nn.ReLU()\n\n    def forward(self, x, encoder_states, hidden, cell):\n        x = x.unsqueeze(0)\n        # x: (1, N) where N is the batch size\n\n        embedding = self.dropout(self.embedding(x))\n        # embedding shape: (1, N, embedding_size)\n\n        sequence_length = encoder_states.shape[0]\n        h_reshaped = hidden.repeat(sequence_length, 1, 1)\n        # h_reshaped: (seq_length, N, hidden_size*2)\n\n        energy = self.relu(self.energy(torch.cat((h_reshaped, encoder_states), dim=2)))\n        # energy: (seq_length, N, 1)\n\n        attention = self.softmax(energy)\n        # attention: (seq_length, N, 1)\n\n        # attention: (seq_length, N, 1), snk\n        # encoder_states: (seq_length, N, hidden_size*2), snl\n        # we want context_vector: (1, N, hidden_size*2), i.e knl\n        context_vector = torch.einsum(\"snk,snl->knl\", attention, encoder_states)\n\n        rnn_input = torch.cat((context_vector, embedding), dim=2)\n        # rnn_input: (1, N, hidden_size*2 + embedding_size)\n\n        outputs, (hidden, cell) = self.rnn(rnn_input, (hidden, cell))\n        # outputs shape: (1, N, hidden_size)\n\n        predictions = self.fc(outputs).squeeze(0)\n        # predictions: (N, hidden_size)\n\n        return predictions, hidden, cell\n\n\nclass Seq2Seq(nn.Module):\n    def __init__(self, encoder, decoder):\n        super(Seq2Seq, self).__init__()\n        self.encoder = encoder\n        self.decoder = decoder\n\n    def forward(self, source, target, teacher_force_ratio=0.5):\n        batch_size = source.shape[1]\n        target_len = target.shape[0]\n        target_vocab_size = len(english.vocab)\n\n        outputs = torch.zeros(target_len, batch_size, target_vocab_size).to(device)\n        encoder_states, hidden, cell = self.encoder(source)\n\n        # First input will be <SOS> token\n        x = target[0]\n\n        for t in range(1, target_len):\n            # At every time step use encoder_states and update hidden, cell\n            output, hidden, cell = self.decoder(x, encoder_states, hidden, cell)\n\n            # Store prediction for current time step\n            outputs[t] = output\n\n            # Get the best word the Decoder predicted (index in the vocabulary)\n            best_guess = output.argmax(1)\n\n            # With probability of teacher_force_ratio we take the actual next word\n            # otherwise we take the word that the Decoder predicted it to be.\n            # Teacher Forcing is used so that the model gets used to seeing\n            # similar inputs at training and testing time, if teacher forcing is 1\n            # then inputs at test time might be completely different than what the\n            # network is used to. This was a long comment.\n            x = target[t] if random.random() < teacher_force_ratio else best_guess\n\n        return outputs\n\n\n### We're ready to define everything we need for training our Seq2Seq model ###\ndevice = torch.device(\"cuda\" if torch.cuda.is_available() else \"cpu\")\nload_model = False\nsave_model = True\n\n# Training hyperparameters\nnum_epochs = 100\nlearning_rate = 3e-4\nbatch_size = 32\n\n# Model hyperparameters\ninput_size_encoder = len(german.vocab)\ninput_size_decoder = len(english.vocab)\noutput_size = len(english.vocab)\nencoder_embedding_size = 300\ndecoder_embedding_size = 300\nhidden_size = 1024\nnum_layers = 1\nenc_dropout = 0.0\ndec_dropout = 0.0\n\n# Tensorboard to get nice loss plot\nwriter = SummaryWriter(f\"runs/loss_plot\")\nstep = 0\n\ntrain_iterator, valid_iterator, test_iterator = BucketIterator.splits(\n    (train_data, valid_data, test_data),\n    batch_size=batch_size,\n    sort_within_batch=True,\n    sort_key=lambda x: len(x.src),\n    device=device,\n)\n\nencoder_net = Encoder(\n    input_size_encoder, encoder_embedding_size, hidden_size, num_layers, enc_dropout\n).to(device)\n\ndecoder_net = Decoder(\n    input_size_decoder,\n    decoder_embedding_size,\n    hidden_size,\n    output_size,\n    num_layers,\n    dec_dropout,\n).to(device)\n\nmodel = Seq2Seq(encoder_net, decoder_net).to(device)\noptimizer = optim.Adam(model.parameters(), lr=learning_rate)\n\npad_idx = english.vocab.stoi[\"<pad>\"]\ncriterion = nn.CrossEntropyLoss(ignore_index=pad_idx)\n\nif load_model:\n    load_checkpoint(torch.load(\"my_checkpoint.pth.tar\"), model, optimizer)\n\nsentence = (\n    \"ein boot mit mehreren männern darauf wird von einem großen\"\n    \"pferdegespann ans ufer gezogen.\"\n)\n\nfor epoch in range(num_epochs):\n    print(f\"[Epoch {epoch} / {num_epochs}]\")\n\n    if save_model:\n        checkpoint = {\n            \"state_dict\": model.state_dict(),\n            \"optimizer\": optimizer.state_dict(),\n        }\n        save_checkpoint(checkpoint)\n\n    model.eval()\n\n    translated_sentence = translate_sentence(\n        model, sentence, german, english, device, max_length=50\n    )\n\n    print(f\"Translated example sentence: \\n {translated_sentence}\")\n\n    model.train()\n\n    for batch_idx, batch in enumerate(train_iterator):\n        # Get input and targets and get to cuda\n        inp_data = batch.src.to(device)\n        target = batch.trg.to(device)\n\n        # Forward prop\n        output = model(inp_data, target)\n\n        # Output is of shape (trg_len, batch_size, output_dim) but Cross Entropy Loss\n        # doesn't take input in that form. For example if we have MNIST we want to have\n        # output to be: (N, 10) and targets just (N). Here we can view it in a similar\n        # way that we have output_words * batch_size that we want to send in into\n        # our cost function, so we need to do some reshapin. While we're at it\n        # Let's also remove the start token while we're at it\n        output = output[1:].reshape(-1, output.shape[2])\n        target = target[1:].reshape(-1)\n\n        optimizer.zero_grad()\n        loss = criterion(output, target)\n\n        # Back prop\n        loss.backward()\n\n        # Clip to avoid exploding gradient issues, makes sure grads are\n        # within a healthy range\n        torch.nn.utils.clip_grad_norm_(model.parameters(), max_norm=1)\n\n        # Gradient descent step\n        optimizer.step()\n\n        # Plot to tensorboard\n        writer.add_scalar(\"Training loss\", loss, global_step=step)\n        step += 1\n\n# running on entire test data takes a while\nscore = bleu(test_data[1:100], model, german, english, device)\nprint(f\"Bleu score {score * 100:.2f}\")\n"
  },
  {
    "path": "ML/Pytorch/more_advanced/Seq2Seq_attention/utils.py",
    "content": "import torch\nimport spacy\nfrom torchtext.data.metrics import bleu_score\nimport sys\n\n\ndef translate_sentence(model, sentence, german, english, device, max_length=50):\n    # Load german tokenizer\n    spacy_ger = spacy.load(\"de\")\n\n    # Create tokens using spacy and everything in lower case (which is what our vocab is)\n    if type(sentence) == str:\n        tokens = [token.text.lower() for token in spacy_ger(sentence)]\n    else:\n        tokens = [token.lower() for token in sentence]\n\n    # Add <SOS> and <EOS> in beginning and end respectively\n    tokens.insert(0, german.init_token)\n    tokens.append(german.eos_token)\n\n    # Go through each german token and convert to an index\n    text_to_indices = [german.vocab.stoi[token] for token in tokens]\n\n    # Convert to Tensor\n    sentence_tensor = torch.LongTensor(text_to_indices).unsqueeze(1).to(device)\n\n    # Build encoder hidden, cell state\n    with torch.no_grad():\n        outputs_encoder, hiddens, cells = model.encoder(sentence_tensor)\n\n    outputs = [english.vocab.stoi[\"<sos>\"]]\n\n    for _ in range(max_length):\n        previous_word = torch.LongTensor([outputs[-1]]).to(device)\n\n        with torch.no_grad():\n            output, hiddens, cells = model.decoder(\n                previous_word, outputs_encoder, hiddens, cells\n            )\n            best_guess = output.argmax(1).item()\n\n        outputs.append(best_guess)\n\n        # Model predicts it's the end of the sentence\n        if output.argmax(1).item() == english.vocab.stoi[\"<eos>\"]:\n            break\n\n    translated_sentence = [english.vocab.itos[idx] for idx in outputs]\n\n    # remove start token\n    return translated_sentence[1:]\n\n\ndef bleu(data, model, german, english, device):\n    targets = []\n    outputs = []\n\n    for example in data:\n        src = vars(example)[\"src\"]\n        trg = vars(example)[\"trg\"]\n\n        prediction = translate_sentence(model, src, german, english, device)\n        prediction = prediction[:-1]  # remove <eos> token\n\n        targets.append([trg])\n        outputs.append(prediction)\n\n    return bleu_score(outputs, targets)\n\n\ndef save_checkpoint(state, filename=\"my_checkpoint.pth.tar\"):\n    print(\"=> Saving checkpoint\")\n    torch.save(state, filename)\n\n\ndef load_checkpoint(checkpoint, model, optimizer):\n    print(\"=> Loading checkpoint\")\n    model.load_state_dict(checkpoint[\"state_dict\"])\n    optimizer.load_state_dict(checkpoint[\"optimizer\"])\n"
  },
  {
    "path": "ML/Pytorch/more_advanced/VAE/lightning_vae/dataset.py",
    "content": "# Imports\nimport torch\nimport torchvision.datasets as datasets  # Standard datasets\nimport torchvision.transforms as transforms  # Transformations we can perform on our dataset for augmentation\nfrom torch.utils.data import DataLoader\nimport pytorch_lightning as pl\n\n\nclass MNISTDataModule(pl.LightningDataModule):\n    def __init__(self, batch_size, num_workers):\n        super().__init__()\n        self.batch_size = batch_size\n        self.num_workers = num_workers\n\n    def setup(self, stage):\n        mnist_full = train_dataset = datasets.MNIST(\n            root=\"dataset/\", train=True, transform=transforms.ToTensor(), download=True\n        )\n        self.mnist_test = datasets.MNIST(\n            root=\"dataset/\", train=False, transform=transforms.ToTensor(), download=True\n        )\n        self.mnist_train, self.mnist_val = torch.utils.data.random_split(\n            mnist_full, [55000, 5000]\n        )\n\n    def train_dataloader(self):\n        return DataLoader(\n            self.mnist_train,\n            batch_size=self.batch_size,\n            num_workers=self.num_workers,\n            persistent_workers=True,\n            shuffle=True,\n        )\n\n    def val_dataloader(self):\n        return DataLoader(\n            self.mnist_val,\n            batch_size=self.batch_size,\n            num_workers=self.num_workers,\n            persistent_workers=True,\n            shuffle=False,\n        )\n\n    def test_dataloader(self):\n        return DataLoader(\n            self.mnist_test,\n            batch_size=self.batch_size,\n            num_workers=self.num_workers,\n            persistent_workers=True,\n            shuffle=False,\n        )\n\n\n# check that it works\nif __name__ == \"__main__\":\n    dm = MNISTDataModule()\n    dm.setup(\"fit\")\n    print(len(dm.mnist_train))\n    print(len(dm.mnist_val))\n    print(len(dm.mnist_test))\n"
  },
  {
    "path": "ML/Pytorch/more_advanced/VAE/lightning_vae/model.py",
    "content": "import torch\nimport torchvision\nfrom torch import nn\nimport pytorch_lightning as pl\n\n\nclass VAEpl(pl.LightningModule):\n    def __init__(self, lr, input_dim=784, h_dim=200, z_dim=20):\n        super().__init__()\n        self.lr = lr\n        self.loss_fn = nn.BCELoss(reduction=\"sum\")\n        self.input_dim = input_dim\n\n        # encoder\n        self.img_2hid = nn.Linear(input_dim, h_dim)\n        self.hid_2mu = nn.Linear(h_dim, z_dim)\n        self.hid_2sigma = nn.Linear(h_dim, z_dim)\n\n        # decoder\n        self.z_2hid = nn.Linear(z_dim, h_dim)\n        self.hid_2img = nn.Linear(h_dim, input_dim)\n        self.relu = nn.ReLU()\n        self.sigmoid = nn.Sigmoid()\n\n    def encode(self, x):\n        h = self.relu(self.img_2hid(x))\n        mu, sigma = self.hid_2mu(h), self.hid_2sigma(h)\n        return mu, sigma\n\n    def decode(self, z):\n        h = self.relu(self.z_2hid(z))\n        return torch.sigmoid(self.hid_2img(h))\n\n    def forward(self, x):\n        mu, sigma = self.encode(x)\n        epsilon = torch.randn_like(sigma)\n        z_new = mu + sigma * epsilon\n        x_reconstructed = self.decode(z_new)\n        return x_reconstructed, mu, sigma\n\n    def training_step(self, batch, batch_idx):\n        x, _ = batch\n        x = x.view(-1, self.input_dim)\n        x_reconstructed, mu, sigma = self.forward(x)\n        reconstruction_loss = self.loss_fn(x_reconstructed, x)\n        kl_div = -torch.sum(1 + torch.log(sigma.pow(2)) - mu.pow(2) - sigma.pow(2))\n        loss = reconstruction_loss + kl_div\n        self.log(\"train_loss\", loss, sync_dist=True)\n\n        # add logging of images to tensorboard, x_reconstructed and x, so that\n        # it updates every step and we can the progress pictures in tensorboard\n        if batch_idx % 100 == 0:\n            # take out the first 8\n            x = x[:8]\n            x_reconstructed = x_reconstructed[:8]\n            grid = torchvision.utils.make_grid(x_reconstructed.view(-1, 1, 28, 28))\n            self.logger.experiment.add_image(\"reconstructed\", grid, self.global_step)\n            grid = torchvision.utils.make_grid(x.view(-1, 1, 28, 28))\n            self.logger.experiment.add_image(\"original\", grid, self.global_step)\n        return loss\n\n    def validation_step(self, batch, batch_idx):\n        x, _ = batch\n        x = x.view(-1, self.input_dim)\n        x_reconstructed, mu, sigma = self.forward(x)\n        reconstruction_loss = self.loss_fn(x_reconstructed, x)\n        kl_div = -torch.sum(1 + torch.log(sigma.pow(2)) - mu.pow(2) - sigma.pow(2))\n        loss = reconstruction_loss + kl_div\n        self.log(\"val_loss\", loss, sync_dist=True)\n        return loss\n\n    def test_step(self, batch, batch_idx):\n        x, _ = batch\n        x = x.view(-1, self.input_dim)\n        x_reconstructed, mu, sigma = self.forward(x)\n        reconstruction_loss = self.loss_fn(x_reconstructed, x)\n        kl_div = -torch.sum(1 + torch.log(sigma.pow(2)) - mu.pow(2) - sigma.pow(2))\n        loss = reconstruction_loss + kl_div\n        self.log(\"test_loss\", loss, sync_dist=True)\n        return loss\n\n    def configure_optimizers(self):\n        optimizer = torch.optim.Adam(self.parameters(), lr=self.lr)\n        return optimizer\n\n\nif __name__ == \"__main__\":\n    batch_size = 8\n    x = torch.randn(batch_size, 28 * 28 * 1)\n    vae_pl = VAEpl()\n    x_reconstructed, mu, sigma = vae_pl(x)\n    print(x_reconstructed.shape)\n"
  },
  {
    "path": "ML/Pytorch/more_advanced/VAE/lightning_vae/train.py",
    "content": "import torch\nimport torchvision.datasets as datasets  # Standard datasets\nfrom tqdm import tqdm\nfrom torch import nn, optim\nfrom torchvision import transforms\nfrom torchvision.utils import save_image\nfrom torch.utils.data import DataLoader\nfrom dataset import MNISTDataModule\nimport pytorch_lightning as pl\nfrom model import VAEpl\nfrom pytorch_lightning.loggers import TensorBoardLogger\nfrom pytorch_lightning.strategies import DeepSpeedStrategy\ntorch.set_float32_matmul_precision(\"medium\")\n\n\"\"\" \nGOALS:\n* Understand the strategy (deepspeed, ddp, etc) and how to use it\n* Setup a config, for scheduler etc instead of configuring it in each sub-module\n* Metrics\n\"\"\"\n\n\n# things to add\nlr = 3e-4\nbatch_size = 128\nnum_workers = 2\nmodel = VAEpl(lr)\ndm = MNISTDataModule(batch_size, num_workers)\nlogger = TensorBoardLogger(\"my_checkpoint\", name=\"scheduler_autolr_vae_pl_model\")\n\n# add callback for learning rate monitor, model checkpoint, and scheduler on plateau\ncallbacks = [pl.callbacks.LearningRateMonitor(logging_interval=\"step\"),\n             pl.callbacks.ModelCheckpoint(monitor=\"val_loss\", save_top_k=1, mode=\"min\", save_last=True),\n             ]\n\nif __name__ == \"__main__\":\n    trainer = pl.Trainer(\n        max_epochs=100,\n        accelerator=\"gpu\",\n        devices=2,\n        logger=logger,\n        #precision=16,\n        strategy=DeepSpeedStrategy(\n            stage=0,\n        ),\n    )\n\n    #trainer.tune(model, dm)\n    trainer.fit(model, dm) \n"
  },
  {
    "path": "ML/Pytorch/more_advanced/VAE/lightning_vae/utils.py",
    "content": "import torch \nimport torch.nn as nn\nimport torch.nn.functional as F\n# import save_image from torchvision.utils\nfrom torchvision.utils import save_image\n\n\ndef inference(model, dataset, digit, num_examples=1):\n    \"\"\"\n    Generates (num_examples) of a particular digit.\n    Specifically we extract an example of each digit,\n    then after we have the mu, sigma representation for\n    each digit we can sample from that.\n\n    After we sample we can run the decoder part of the VAE\n    and generate examples.\n    \"\"\"\n    images = []\n    idx = 0\n    for x, y in dataset:\n        if y == idx:\n            images.append(x)\n            idx += 1\n        if idx == 10:\n            break\n\n    encodings_digit = []\n    for d in range(10):\n        with torch.no_grad():\n            mu, sigma = model.encode(images[d].view(1, 784))\n        encodings_digit.append((mu, sigma))\n\n    mu, sigma = encodings_digit[digit]\n    for example in range(num_examples):\n        epsilon = torch.randn_like(sigma)\n        z = mu + sigma * epsilon\n        out = model.decode(z)\n        out = out.view(-1, 1, 28, 28)\n        save_image(out, f\"generated_{digit}_ex{example}.png\")\n\n\n"
  },
  {
    "path": "ML/Pytorch/more_advanced/VAE/model.py",
    "content": "import torch\nfrom torch import nn\n\n\nclass VariationalAutoEncoder(nn.Module):\n    def __init__(self, input_dim, h_dim=200, z_dim=20):\n        super().__init__()\n        # encoder\n        self.img_2hid = nn.Linear(input_dim, h_dim)\n        self.hid_2mu = nn.Linear(h_dim, z_dim)\n        self.hid_2sigma = nn.Linear(h_dim, z_dim)\n\n        # decoder\n        self.z_2hid = nn.Linear(z_dim, h_dim)\n        self.hid_2img = nn.Linear(h_dim, input_dim)\n\n        self.relu = nn.ReLU()\n\n    def encode(self, x):\n        h = self.relu(self.img_2hid(x))\n        mu, sigma = self.hid_2mu(h), self.hid_2sigma(h)\n        return mu, sigma\n\n    def decode(self, z):\n        h = self.relu(self.z_2hid(z))\n        return torch.sigmoid(self.hid_2img(h))\n\n    def forward(self, x):\n        mu, sigma = self.encode(x)\n        epsilon = torch.randn_like(sigma)\n        z_new = mu + sigma*epsilon\n        x_reconstructed = self.decode(z_new)\n        return x_reconstructed, mu, sigma\n\n\nif __name__ == \"__main__\":\n    x = torch.randn(4, 28*28)\n    vae = VariationalAutoEncoder(input_dim=784)\n    x_reconstructed, mu, sigma = vae(x)\n    print(x_reconstructed.shape)\n    print(mu.shape)\n    print(sigma.shape)\n\n\n\n"
  },
  {
    "path": "ML/Pytorch/more_advanced/VAE/train.py",
    "content": "import torch\nimport torchvision.datasets as datasets  # Standard datasets\nfrom tqdm import tqdm\nfrom torch import nn, optim\nfrom model import VariationalAutoEncoder\nfrom torchvision import transforms\nfrom torchvision.utils import save_image\nfrom torch.utils.data import DataLoader\n\n# Configuration\nDEVICE = torch.device(\"cuda\" if torch.cuda.is_available() else \"cpu\")\nINPUT_DIM = 784\nH_DIM = 200\nZ_DIM = 20\nNUM_EPOCHS = 10\nBATCH_SIZE = 32\nLR_RATE = 3e-4  # Karpathy constant\n\n# Dataset Loading\ndataset = datasets.MNIST(root=\"dataset/\", train=True, transform=transforms.ToTensor(), download=True)\ntrain_loader = DataLoader(dataset=dataset, batch_size=BATCH_SIZE, shuffle=True)\nmodel = VariationalAutoEncoder(INPUT_DIM, H_DIM, Z_DIM).to(DEVICE)\noptimizer = optim.Adam(model.parameters(), lr=LR_RATE)\nloss_fn = nn.BCELoss(reduction=\"sum\")\n\n\ndef inference(digit, num_examples=1):\n    \"\"\"\n    Generates (num_examples) of a particular digit.\n    Specifically we extract an example of each digit,\n    then after we have the mu, sigma representation for\n    each digit we can sample from that.\n\n    After we sample we can run the decoder part of the VAE\n    and generate examples.\n    \"\"\"\n    images = []\n    idx = 0\n    for x, y in dataset:\n        if y == idx:\n            images.append(x)\n            idx += 1\n        if idx == 10:\n            break\n\n    encodings_digit = []\n    for d in range(10):\n        with torch.no_grad():\n            mu, sigma = model.encode(images[d].view(1, 784))\n        encodings_digit.append((mu, sigma))\n\n    mu, sigma = encodings_digit[digit]\n    for example in range(num_examples):\n        epsilon = torch.randn_like(sigma)\n        z = mu + sigma * epsilon\n        out = model.decode(z)\n        out = out.view(-1, 1, 28, 28)\n        save_image(out, f\"generated_{digit}_ex{example}.png\")\n\nfor idx in range(10):\n    inference(idx, num_examples=5)\n"
  },
  {
    "path": "ML/Pytorch/more_advanced/finetuning_whisper/dataset.py",
    "content": "\"\"\"\nCreate a PyTorch Custom dataset that loads file in data/other.tsv that contains \nthe path to image audio and text transcription.\n\"\"\"\nimport pytorch_lightning as pl\nfrom tqdm import tqdm\nimport ffmpeg\nimport os\nimport torch\nimport numpy as np\nfrom torch.utils.data import Dataset, DataLoader\nimport pandas as pd\nfrom transformers import WhisperProcessor, WhisperTokenizer, WhisperFeatureExtractor\nimport sys \n\nclass CommonVoice(Dataset):\n    def __init__(self, data_dir, whisper_model=\"tiny\"):\n        self.sampling_rate = 16_000\n        self.data_dir = data_dir\n        self.data = pd.read_csv(\n            os.path.join(data_dir, \"other.tsv\"),\n            sep=\"\\t\",\n        )\n        self.feature_extractor = WhisperFeatureExtractor.from_pretrained(\n            f\"openai/whisper-{whisper_model}\"\n        )\n        self.tokenizer = WhisperTokenizer.from_pretrained(\n            f\"openai/whisper-{whisper_model}\", language=\"sv\", task=\"transcribe\"\n        )\n\n    def __len__(self):\n        return len(self.data)\n\n    def __getitem__(self, idx):\n        audio_file_path = os.path.join(\n            self.data_dir + \"clips/\", self.data.iloc[idx][\"path\"]\n        )\n        sentence = self.data.iloc[idx][\"sentence\"]\n        text = self.tokenizer(sentence).input_ids\n        \n        out, _ = (\n            ffmpeg.input(audio_file_path, threads=0)\n            .output(\n                \"-\", format=\"s16le\", acodec=\"pcm_s16le\", ac=1, ar=self.sampling_rate\n            )\n            .run(cmd=[\"ffmpeg\", \"-nostdin\"], capture_stdout=True, capture_stderr=True)\n        )\n        out = np.frombuffer(out, np.int16).flatten().astype(np.float32) / 32768.0\n\n        # run feature extractor\n        audio_features = self.feature_extractor(\n            out, sampling_rate=self.sampling_rate, return_tensors=\"pt\"\n        )\n\n        return audio_features, text\n\n\n# Create a collator that will pad the audio features and text labels\nclass DataCollatorSpeechSeq2SeqWithPadding:\n    def __init__(self, feature_extractor, tokenizer):\n        self.feature_extractor = feature_extractor\n        self.tokenizer = tokenizer\n\n    def __call__(self, batch):\n        text_features = [{\"input_ids\": x[1]} for x in batch]\n        batch_text = self.tokenizer.pad(\n            text_features, return_tensors=\"pt\",\n        )\n        audio_features = [{\"input_features\": x[0][\"input_features\"]} for x in batch]\n\n        batch_audio = self.feature_extractor.pad(\n            audio_features, return_tensors=\"pt\",\n        )\n        batch_text[\"input_ids\"] = batch_text[\"input_ids\"].masked_fill(\n            batch_text[\"attention_mask\"].ne(1), -100\n        )\n        \n        batch_audio[\"input_features\"] = batch_audio[\"input_features\"].squeeze(1)\n\n        labels = batch_text[\"input_ids\"].clone()\n        if (labels[:, 0] == self.tokenizer.encode(\"\")[0]).all().cpu().item():\n            labels = labels[:, 1:]\n\n        batch_text[\"labels\"] = labels\n        return batch_audio, batch_text\n\n\n# Put into a lightning datamodule \nclass WhisperDataset(pl.LightningDataModule):\n    def __init__(self, data_dir, batch_size=32, num_workers=0, whisper_model=\"tiny\"):\n        super().__init__()\n        self.data_dir = data_dir\n        self.batch_size = batch_size\n        self.num_workers = num_workers\n        self.whisper_model = whisper_model\n        self.sampling_rate = 16_000\n\n    def setup(self, stage=None):\n        self.dataset = CommonVoice(self.data_dir, self.whisper_model)\n        self.data_collator = DataCollatorSpeechSeq2SeqWithPadding(\n            self.dataset.feature_extractor, self.dataset.tokenizer\n        )\n\n    def train_dataloader(self):\n        return DataLoader(\n            self.dataset,\n            batch_size=self.batch_size,\n            shuffle=True,\n            num_workers=self.num_workers,\n            collate_fn=self.data_collator,\n        )\n\n\n# Test if lightning datamodule working as intended \nif __name__ == \"__main__\":\n    dm = WhisperDataset(data_dir=\"data/\")\n    dm.setup()\n    from tqdm import tqdm \n    for batch in tqdm(dm.train_dataloader()):\n        pass\n"
  },
  {
    "path": "ML/Pytorch/more_advanced/finetuning_whisper/model.py",
    "content": "import torch\nimport torchvision\nfrom torch import nn\nimport pytorch_lightning as pl\nfrom transformers import WhisperProcessor, WhisperTokenizer, WhisperFeatureExtractor\nfrom transformers import WhisperForConditionalGeneration\n\n\nclass WhisperFinetuning(pl.LightningModule):\n    def __init__(self, lr, whisper_model=\"tiny\"):\n        super().__init__()\n        self.lr = lr\n        self.model = WhisperForConditionalGeneration.from_pretrained(f\"openai/whisper-{whisper_model}\")\n        self.model.config.forced_decoder_ids = None\n        self.model.config.suppress_tokens = []\n\n    def training_step(self, batch, batch_idx):\n        encoder_input = batch[0][\"input_features\"]\n        decoder_labels = batch[1][\"labels\"]\n        \n        out = self.model(\n            input_features=encoder_input,\n            labels=decoder_labels,\n        )\n        loss = out[\"loss\"] \n        return loss \n\n    def configure_optimizers(self):\n        optimizer = torch.optim.Adam(self.parameters(), lr=self.lr)\n        return optimizer\n\n\nif __name__ == \"__main__\":\n    pass\n"
  },
  {
    "path": "ML/Pytorch/more_advanced/finetuning_whisper/steps.txt",
    "content": "Goal: re-write the code of huggingface whisper finetuning to use pytorch lightning\n1. load the dataset using lightning datamodule\n* integrate huggingface loading data, or we can write it ourselves and use lightning datamodule\n2. load the model using lightning module\n3. train the model using lightning trainer\n(4. See if we can sharded training with lightning trainer to maybe finetune a large whisper model \nthat we couldn't on single GPU)\n\nEnd goal: Finetune the model on our own dataset for some cool application\n"
  },
  {
    "path": "ML/Pytorch/more_advanced/finetuning_whisper/test.py",
    "content": "from transformers import WhisperTokenizer\ntokenizer = WhisperTokenizer.from_pretrained(\n    f\"openai/whisper-tiny\", task=\"transcribe\"\n)\nencoded_string = tokenizer.encode(\"\")[0]\nprint(encoded_string) # should print 50258\nprint(tokenizer.bos_token_id) # should print 50257\n"
  },
  {
    "path": "ML/Pytorch/more_advanced/finetuning_whisper/train.py",
    "content": "import torch\nimport torchvision.datasets as datasets  # Standard datasets\nfrom tqdm import tqdm\nfrom torch import nn, optim\nfrom torchvision import transforms\nfrom torchvision.utils import save_image\nfrom torch.utils.data import DataLoader\nimport pytorch_lightning as pl\nfrom model import WhisperFinetuning\nfrom dataset import  WhisperDataset\nfrom pytorch_lightning.loggers import TensorBoardLogger\nfrom pytorch_lightning.strategies import DeepSpeedStrategy\ntorch.set_float32_matmul_precision(\"medium\")\n\n# things to add\nlr = 1e-5\nbatch_size = 32\nnum_workers = 4\nmodel = WhisperFinetuning(lr)\ndm = WhisperDataset(data_dir=\"data/\", batch_size=batch_size, num_workers=num_workers)\n\nif __name__ == \"__main__\":\n    trainer = pl.Trainer(\n        max_epochs=1000,\n        accelerator=\"gpu\",\n        devices=[0],\n        precision=16,\n    )\n\n    trainer.fit(model, dm)\n \n"
  },
  {
    "path": "ML/Pytorch/more_advanced/finetuning_whisper/whisper.py",
    "content": "import evaluate\nfrom transformers import Seq2SeqTrainer\nfrom transformers import WhisperForConditionalGeneration\nimport torch\nfrom dataclasses import dataclass\nfrom typing import Any, Dict, List, Union\nfrom transformers import WhisperProcessor, WhisperTokenizer, WhisperFeatureExtractor\nfrom datasets import load_dataset, DatasetDict, Audio\n# set so we only can see first cuda device \nimport os\nos.environ[\"CUDA_VISIBLE_DEVICES\"] = \"0\"\n\n\ncommon_voice = DatasetDict()\ncommon_voice[\"train\"] = load_dataset(\n    \"mozilla-foundation/common_voice_11_0\",\n    \"sv-SE\",\n    split=\"train+validation\",\n    use_auth_token=False,\n)\ncommon_voice[\"test\"] = load_dataset(\n    \"mozilla-foundation/common_voice_11_0\",\n    \"sv-SE\",\n    split=\"test\",\n    use_auth_token=False,\n)\n\n# common_voice = common_voice.remove_columns(\n#     [\n#         \"accent\",\n#         \"age\",\n#         \"client_id\",\n#         \"down_votes\",\n#         \"gender\",\n#         \"locale\",\n#         \"path\",\n#         \"segment\",\n#         \"up_votes\",\n#     ]\n# )\n\nfeature_extractor = WhisperFeatureExtractor.from_pretrained(\"openai/whisper-tiny\")\ntokenizer = WhisperTokenizer.from_pretrained(\n    \"openai/whisper-tiny\", language=\"sv\", task=\"transcribe\"\n)\n\ninput_str = common_voice[\"train\"][0][\"sentence\"]\nlabels = tokenizer(input_str).input_ids\ndecoded_with_special = tokenizer.decode(labels, skip_special_tokens=False)\ndecoded_str = tokenizer.decode(labels, skip_special_tokens=True)\n\nprint(f\"Input:                 {input_str}\")\nprint(f\"Decoded w/ special:    {decoded_with_special}\")\nprint(f\"Decoded w/out special: {decoded_str}\")\nprint(f\"Are equal:             {input_str == decoded_str}\")\n\ninput_str = common_voice[\"train\"][0][\"sentence\"]\nlabels = tokenizer(input_str).input_ids\ndecoded_with_special = tokenizer.decode(labels, skip_special_tokens=False)\ndecoded_str = tokenizer.decode(labels, skip_special_tokens=True)\n\nprocessor = WhisperProcessor.from_pretrained(\n    \"openai/whisper-small\", language=\"sv\", task=\"transcribe\"\n)\n\ncommon_voice = common_voice.cast_column(\"audio\", Audio(sampling_rate=16000))\n\n\ndef prepare_dataset(example):\n    # load and resample audio data from 48 to 16kHz\n    audio = example[\"audio\"]\n\n    # compute log-Mel input features from input audio array\n    example[\"input_features\"] = feature_extractor(\n        audio[\"array\"], sampling_rate=audio[\"sampling_rate\"]\n    ).input_features[0]\n\n    # encode target text to label ids\n    example[\"labels\"] = tokenizer(example[\"sentence\"]).input_ids\n    return example\n\n\ncommon_voice = common_voice.map(prepare_dataset, num_proc=8)\n\n\n@dataclass\nclass DataCollatorSpeechSeq2SeqWithPadding:\n    processor: Any\n\n    def __call__(\n        self, features: List[Dict[str, Union[List[int], torch.Tensor]]]\n    ) -> Dict[str, torch.Tensor]:\n        # split inputs and labels since they have to be of different lengths\n        # and need different padding methods first treat the audio inputs by\n        # simply returning torch tensors\n        input_features = [\n            {\"input_features\": feature[\"input_features\"]} for feature in features\n        ]\n        batch = self.processor.feature_extractor.pad(\n            input_features, return_tensors=\"pt\"\n        )\n\n        # get the tokenized label sequences\n        label_features = [{\"input_ids\": feature[\"labels\"]} for feature in features]\n        # pad the labels to max length\n        labels_batch = self.processor.tokenizer.pad(label_features, return_tensors=\"pt\")\n\n        # replace padding with -100 to ignore loss correctly\n        labels = labels_batch[\"input_ids\"].masked_fill(\n            labels_batch.attention_mask.ne(1), -100\n        )\n\n        # if bos token is appended in previous tokenization step,\n        # cut bos token here as it's append later anyways\n        if (labels[:, 0] == self.processor.tokenizer.bos_token_id).all().cpu().item():\n            labels = labels[:, 1:]\n\n        batch[\"labels\"] = labels\n        return batch\n\n\ndata_collator = DataCollatorSpeechSeq2SeqWithPadding(processor=processor)\nmetric = evaluate.load(\"wer\")\n\n\ndef compute_metrics(pred):\n    pred_ids = pred.predictions\n    label_ids = pred.label_ids\n\n    # replace -100 with the pad_token_id\n    label_ids[label_ids == -100] = tokenizer.pad_token_id\n\n    # we do not want to group tokens when computing the metrics\n    pred_str = tokenizer.batch_decode(pred_ids, skip_special_tokens=True)\n    label_str = tokenizer.batch_decode(label_ids, skip_special_tokens=True)\n    wer = 100 * metric.compute(predictions=pred_str, references=label_str)\n\n    return {\"wer\": wer}\n\nmodel = WhisperForConditionalGeneration.from_pretrained(\"openai/whisper-tiny\")\nmodel.config.forced_decoder_ids = None\nmodel.config.suppress_tokens = []\n\nfrom transformers import Seq2SeqTrainingArguments\n\ntraining_args = Seq2SeqTrainingArguments(\n    output_dir=\"./whisper-tiny-swedish\",  # change to a repo name of your choice\n    per_device_train_batch_size=32,\n    gradient_accumulation_steps=1,  # increase by 2x for every 2x decrease in batch size\n    learning_rate=1e-5,\n    warmup_steps=500,\n    max_steps=4000,\n    gradient_checkpointing=False,\n    fp16=True,\n    evaluation_strategy=\"steps\",\n    per_device_eval_batch_size=8,\n    predict_with_generate=True,\n    generation_max_length=225,\n    save_steps=1000,\n    eval_steps=1000,\n    logging_steps=25,\n    report_to=[\"tensorboard\"],\n    load_best_model_at_end=True,\n    metric_for_best_model=\"wer\",\n    greater_is_better=False,\n    push_to_hub=False,\n    dataloader_num_workers=0,\n)\n\n\ntrainer = Seq2SeqTrainer(\n    args=training_args,\n    model=model,\n    train_dataset=common_voice[\"train\"],\n    eval_dataset=common_voice[\"test\"],\n    data_collator=data_collator,\n    compute_metrics=compute_metrics,\n    tokenizer=processor.feature_extractor,\n)\n\ntrainer.train()\n"
  },
  {
    "path": "ML/Pytorch/more_advanced/image_captioning/README.md",
    "content": "### Image Captioning\n\nDownload the dataset used: https://www.kaggle.com/dataset/e1cd22253a9b23b073794872bf565648ddbe4f17e7fa9e74766ad3707141adeb\nThen set images folder, captions.txt inside a folder Flickr8k.\n\ntrain.py: For training the network\n\nmodel.py: creating the encoderCNN, decoderRNN and hooking them togethor\n\nget_loader.py: Loading the data, creating vocabulary\n\nutils.py: Load model, save model, printing few test cases downloaded online"
  },
  {
    "path": "ML/Pytorch/more_advanced/image_captioning/get_loader.py",
    "content": "import os  # when loading file paths\nimport pandas as pd  # for lookup in annotation file\nimport spacy  # for tokenizer\nimport torch\nfrom torch.nn.utils.rnn import pad_sequence  # pad batch\nfrom torch.utils.data import DataLoader, Dataset\nfrom PIL import Image  # Load img\nimport torchvision.transforms as transforms\n\n\n# We want to convert text -> numerical values\n# 1. We need a Vocabulary mapping each word to a index\n# 2. We need to setup a Pytorch dataset to load the data\n# 3. Setup padding of every batch (all examples should be\n#    of same seq_len and setup dataloader)\n# Note that loading the image is very easy compared to the text!\n\n# Download with: python -m spacy download en\nspacy_eng = spacy.load(\"en\")\n\n\nclass Vocabulary:\n    def __init__(self, freq_threshold):\n        self.itos = {0: \"<PAD>\", 1: \"<SOS>\", 2: \"<EOS>\", 3: \"<UNK>\"}\n        self.stoi = {\"<PAD>\": 0, \"<SOS>\": 1, \"<EOS>\": 2, \"<UNK>\": 3}\n        self.freq_threshold = freq_threshold\n\n    def __len__(self):\n        return len(self.itos)\n\n    @staticmethod\n    def tokenizer_eng(text):\n        return [tok.text.lower() for tok in spacy_eng.tokenizer(text)]\n\n    def build_vocabulary(self, sentence_list):\n        frequencies = {}\n        idx = 4\n\n        for sentence in sentence_list:\n            for word in self.tokenizer_eng(sentence):\n                if word not in frequencies:\n                    frequencies[word] = 1\n\n                else:\n                    frequencies[word] += 1\n\n                if frequencies[word] == self.freq_threshold:\n                    self.stoi[word] = idx\n                    self.itos[idx] = word\n                    idx += 1\n\n    def numericalize(self, text):\n        tokenized_text = self.tokenizer_eng(text)\n\n        return [\n            self.stoi[token] if token in self.stoi else self.stoi[\"<UNK>\"]\n            for token in tokenized_text\n        ]\n\n\nclass FlickrDataset(Dataset):\n    def __init__(self, root_dir, captions_file, transform=None, freq_threshold=5):\n        self.root_dir = root_dir\n        self.df = pd.read_csv(captions_file)\n        self.transform = transform\n\n        # Get img, caption columns\n        self.imgs = self.df[\"image\"]\n        self.captions = self.df[\"caption\"]\n\n        # Initialize vocabulary and build vocab\n        self.vocab = Vocabulary(freq_threshold)\n        self.vocab.build_vocabulary(self.captions.tolist())\n\n    def __len__(self):\n        return len(self.df)\n\n    def __getitem__(self, index):\n        caption = self.captions[index]\n        img_id = self.imgs[index]\n        img = Image.open(os.path.join(self.root_dir, img_id)).convert(\"RGB\")\n\n        if self.transform is not None:\n            img = self.transform(img)\n\n        numericalized_caption = [self.vocab.stoi[\"<SOS>\"]]\n        numericalized_caption += self.vocab.numericalize(caption)\n        numericalized_caption.append(self.vocab.stoi[\"<EOS>\"])\n\n        return img, torch.tensor(numericalized_caption)\n\n\nclass MyCollate:\n    def __init__(self, pad_idx):\n        self.pad_idx = pad_idx\n\n    def __call__(self, batch):\n        imgs = [item[0].unsqueeze(0) for item in batch]\n        imgs = torch.cat(imgs, dim=0)\n        targets = [item[1] for item in batch]\n        targets = pad_sequence(targets, batch_first=False, padding_value=self.pad_idx)\n\n        return imgs, targets\n\n\ndef get_loader(\n    root_folder,\n    annotation_file,\n    transform,\n    batch_size=32,\n    num_workers=8,\n    shuffle=True,\n    pin_memory=True,\n):\n    dataset = FlickrDataset(root_folder, annotation_file, transform=transform)\n\n    pad_idx = dataset.vocab.stoi[\"<PAD>\"]\n\n    loader = DataLoader(\n        dataset=dataset,\n        batch_size=batch_size,\n        num_workers=num_workers,\n        shuffle=shuffle,\n        pin_memory=pin_memory,\n        collate_fn=MyCollate(pad_idx=pad_idx),\n    )\n\n    return loader, dataset\n\n\nif __name__ == \"__main__\":\n    transform = transforms.Compose(\n        [transforms.Resize((224, 224)), transforms.ToTensor(),]\n    )\n\n    loader, dataset = get_loader(\n        \"flickr8k/images/\", \"flickr8k/captions.txt\", transform=transform\n    )\n\n    for idx, (imgs, captions) in enumerate(loader):\n        print(imgs.shape)\n        print(captions.shape)\n"
  },
  {
    "path": "ML/Pytorch/more_advanced/image_captioning/model.py",
    "content": "import torch\nimport torch.nn as nn\nimport statistics\nimport torchvision.models as models\n\n\nclass EncoderCNN(nn.Module):\n    def __init__(self, embed_size, train_CNN=False):\n        super(EncoderCNN, self).__init__()\n        self.train_CNN = train_CNN\n        self.inception = models.inception_v3(pretrained=True, aux_logits=False)\n        self.inception.fc = nn.Linear(self.inception.fc.in_features, embed_size)\n        self.relu = nn.ReLU()\n        self.times = []\n        self.dropout = nn.Dropout(0.5)\n\n    def forward(self, images):\n        features = self.inception(images)\n        return self.dropout(self.relu(features))\n\n\nclass DecoderRNN(nn.Module):\n    def __init__(self, embed_size, hidden_size, vocab_size, num_layers):\n        super(DecoderRNN, self).__init__()\n        self.embed = nn.Embedding(vocab_size, embed_size)\n        self.lstm = nn.LSTM(embed_size, hidden_size, num_layers)\n        self.linear = nn.Linear(hidden_size, vocab_size)\n        self.dropout = nn.Dropout(0.5)\n\n    def forward(self, features, captions):\n        embeddings = self.dropout(self.embed(captions))\n        embeddings = torch.cat((features.unsqueeze(0), embeddings), dim=0)\n        hiddens, _ = self.lstm(embeddings)\n        outputs = self.linear(hiddens)\n        return outputs\n\n\nclass CNNtoRNN(nn.Module):\n    def __init__(self, embed_size, hidden_size, vocab_size, num_layers):\n        super(CNNtoRNN, self).__init__()\n        self.encoderCNN = EncoderCNN(embed_size)\n        self.decoderRNN = DecoderRNN(embed_size, hidden_size, vocab_size, num_layers)\n\n    def forward(self, images, captions):\n        features = self.encoderCNN(images)\n        outputs = self.decoderRNN(features, captions)\n        return outputs\n\n    def caption_image(self, image, vocabulary, max_length=50):\n        result_caption = []\n\n        with torch.no_grad():\n            x = self.encoderCNN(image).unsqueeze(0)\n            states = None\n\n            for _ in range(max_length):\n                hiddens, states = self.decoderRNN.lstm(x, states)\n                output = self.decoderRNN.linear(hiddens.squeeze(0))\n                predicted = output.argmax(1)\n                result_caption.append(predicted.item())\n                x = self.decoderRNN.embed(predicted).unsqueeze(0)\n\n                if vocabulary.itos[predicted.item()] == \"<EOS>\":\n                    break\n\n        return [vocabulary.itos[idx] for idx in result_caption]\n"
  },
  {
    "path": "ML/Pytorch/more_advanced/image_captioning/train.py",
    "content": "import torch\nfrom tqdm import tqdm\nimport torch.nn as nn\nimport torch.optim as optim\nimport torchvision.transforms as transforms\nfrom torch.utils.tensorboard import SummaryWriter\nfrom utils import save_checkpoint, load_checkpoint, print_examples\nfrom get_loader import get_loader\nfrom model import CNNtoRNN\n\n\ndef train():\n    transform = transforms.Compose(\n        [\n            transforms.Resize((356, 356)),\n            transforms.RandomCrop((299, 299)),\n            transforms.ToTensor(),\n            transforms.Normalize((0.5, 0.5, 0.5), (0.5, 0.5, 0.5)),\n        ]\n    )\n\n    train_loader, dataset = get_loader(\n        root_folder=\"flickr8k/images\",\n        annotation_file=\"flickr8k/captions.txt\",\n        transform=transform,\n        num_workers=2,\n    )\n\n    torch.backends.cudnn.benchmark = True\n    device = torch.device(\"cuda\" if torch.cuda.is_available() else \"cpu\")\n    load_model = False\n    save_model = False\n    train_CNN = False\n\n    # Hyperparameters\n    embed_size = 256\n    hidden_size = 256\n    vocab_size = len(dataset.vocab)\n    num_layers = 1\n    learning_rate = 3e-4\n    num_epochs = 100\n\n    # for tensorboard\n    writer = SummaryWriter(\"runs/flickr\")\n    step = 0\n\n    # initialize model, loss etc\n    model = CNNtoRNN(embed_size, hidden_size, vocab_size, num_layers).to(device)\n    criterion = nn.CrossEntropyLoss(ignore_index=dataset.vocab.stoi[\"<PAD>\"])\n    optimizer = optim.Adam(model.parameters(), lr=learning_rate)\n\n    # Only finetune the CNN\n    for name, param in model.encoderCNN.inception.named_parameters():\n        if \"fc.weight\" in name or \"fc.bias\" in name:\n            param.requires_grad = True\n        else:\n            param.requires_grad = train_CNN\n\n    if load_model:\n        step = load_checkpoint(torch.load(\"my_checkpoint.pth.tar\"), model, optimizer)\n\n    model.train()\n\n    for epoch in range(num_epochs):\n        # Uncomment the line below to see a couple of test cases\n        # print_examples(model, device, dataset)\n\n        if save_model:\n            checkpoint = {\n                \"state_dict\": model.state_dict(),\n                \"optimizer\": optimizer.state_dict(),\n                \"step\": step,\n            }\n            save_checkpoint(checkpoint)\n\n        for idx, (imgs, captions) in tqdm(\n            enumerate(train_loader), total=len(train_loader), leave=False\n        ):\n            imgs = imgs.to(device)\n            captions = captions.to(device)\n\n            outputs = model(imgs, captions[:-1])\n            loss = criterion(\n                outputs.reshape(-1, outputs.shape[2]), captions.reshape(-1)\n            )\n\n            writer.add_scalar(\"Training loss\", loss.item(), global_step=step)\n            step += 1\n\n            optimizer.zero_grad()\n            loss.backward(loss)\n            optimizer.step()\n\n\nif __name__ == \"__main__\":\n    train()\n"
  },
  {
    "path": "ML/Pytorch/more_advanced/image_captioning/utils.py",
    "content": "import torch\nimport torchvision.transforms as transforms\nfrom PIL import Image\n\n\ndef print_examples(model, device, dataset):\n    transform = transforms.Compose(\n        [\n            transforms.Resize((299, 299)),\n            transforms.ToTensor(),\n            transforms.Normalize((0.5, 0.5, 0.5), (0.5, 0.5, 0.5)),\n        ]\n    )\n\n    model.eval()\n    test_img1 = transform(Image.open(\"test_examples/dog.jpg\").convert(\"RGB\")).unsqueeze(\n        0\n    )\n    print(\"Example 1 CORRECT: Dog on a beach by the ocean\")\n    print(\n        \"Example 1 OUTPUT: \"\n        + \" \".join(model.caption_image(test_img1.to(device), dataset.vocab))\n    )\n    test_img2 = transform(\n        Image.open(\"test_examples/child.jpg\").convert(\"RGB\")\n    ).unsqueeze(0)\n    print(\"Example 2 CORRECT: Child holding red frisbee outdoors\")\n    print(\n        \"Example 2 OUTPUT: \"\n        + \" \".join(model.caption_image(test_img2.to(device), dataset.vocab))\n    )\n    test_img3 = transform(Image.open(\"test_examples/bus.png\").convert(\"RGB\")).unsqueeze(\n        0\n    )\n    print(\"Example 3 CORRECT: Bus driving by parked cars\")\n    print(\n        \"Example 3 OUTPUT: \"\n        + \" \".join(model.caption_image(test_img3.to(device), dataset.vocab))\n    )\n    test_img4 = transform(\n        Image.open(\"test_examples/boat.png\").convert(\"RGB\")\n    ).unsqueeze(0)\n    print(\"Example 4 CORRECT: A small boat in the ocean\")\n    print(\n        \"Example 4 OUTPUT: \"\n        + \" \".join(model.caption_image(test_img4.to(device), dataset.vocab))\n    )\n    test_img5 = transform(\n        Image.open(\"test_examples/horse.png\").convert(\"RGB\")\n    ).unsqueeze(0)\n    print(\"Example 5 CORRECT: A cowboy riding a horse in the desert\")\n    print(\n        \"Example 5 OUTPUT: \"\n        + \" \".join(model.caption_image(test_img5.to(device), dataset.vocab))\n    )\n    model.train()\n\n\ndef save_checkpoint(state, filename=\"my_checkpoint.pth.tar\"):\n    print(\"=> Saving checkpoint\")\n    torch.save(state, filename)\n\n\ndef load_checkpoint(checkpoint, model, optimizer):\n    print(\"=> Loading checkpoint\")\n    model.load_state_dict(checkpoint[\"state_dict\"])\n    optimizer.load_state_dict(checkpoint[\"optimizer\"])\n    step = checkpoint[\"step\"]\n    return step\n"
  },
  {
    "path": "ML/Pytorch/more_advanced/neuralstyle/nst.py",
    "content": "import torch\nimport torch.nn as nn\nimport torch.optim as optim\nfrom PIL import Image\nimport torchvision.transforms as transforms\nimport torchvision.models as models\nfrom torchvision.utils import save_image\n\n\nclass VGG(nn.Module):\n    def __init__(self):\n        super(VGG, self).__init__()\n        # The first number x in convx_y gets added by 1 after it has gone\n        # through a maxpool, and the second y if we have several conv layers\n        # in between a max pool. These strings (0, 5, 10, ..) then correspond\n        # to conv1_1, conv2_1, conv3_1, conv4_1, conv5_1 mentioned in NST paper\n        self.chosen_features = [\"0\", \"5\", \"10\", \"19\", \"28\"]\n\n        # We don't need to run anything further than conv5_1 (the 28th module in vgg)\n        # Since remember, we dont actually care about the output of VGG: the only thing\n        # that is modified is the generated image (i.e, the input).\n        self.model = models.vgg19(pretrained=True).features[:29]\n\n    def forward(self, x):\n        # Store relevant features\n        features = []\n\n        # Go through each layer in model, if the layer is in the chosen_features,\n        # store it in features. At the end we'll just return all the activations\n        # for the specific layers we have in chosen_features\n        for layer_num, layer in enumerate(self.model):\n            x = layer(x)\n\n            if str(layer_num) in self.chosen_features:\n                features.append(x)\n\n        return features\n\n\ndef load_image(image_name):\n    image = Image.open(image_name)\n    image = loader(image).unsqueeze(0)\n    return image.to(device)\n\n\ndevice = torch.device(\"cuda\" if torch.cuda.is_available() else \"cpu\")\nimsize = 356\n\n# Here we may want to use the Normalization constants used in the original\n# VGG network (to get similar values net was originally trained on), but\n# I found it didn't matter too much so I didn't end of using it. If you\n# use it make sure to normalize back so the images don't look weird.\nloader = transforms.Compose(\n    [\n        transforms.Resize((imsize, imsize)),\n        transforms.ToTensor(),\n        # transforms.Normalize(mean=[0.485, 0.456, 0.406], std=[0.229, 0.224, 0.225]),\n    ]\n)\n\noriginal_img = load_image(\"annahathaway.png\")\nstyle_img = load_image(\"style.jpg\")\n\n# initialized generated as white noise or clone of original image.\n# Clone seemed to work better for me.\n\n# generated = torch.randn(original_img.data.shape, device=device, requires_grad=True)\ngenerated = original_img.clone().requires_grad_(True)\nmodel = VGG().to(device).eval()\n\n# Hyperparameters\ntotal_steps = 6000\nlearning_rate = 0.001\nalpha = 1\nbeta = 0.01\noptimizer = optim.Adam([generated], lr=learning_rate)\n\nfor step in range(total_steps):\n    # Obtain the convolution features in specifically chosen layers\n    generated_features = model(generated)\n    original_img_features = model(original_img)\n    style_features = model(style_img)\n\n    # Loss is 0 initially\n    style_loss = original_loss = 0\n\n    # iterate through all the features for the chosen layers\n    for gen_feature, orig_feature, style_feature in zip(\n        generated_features, original_img_features, style_features\n    ):\n\n        # batch_size will just be 1\n        batch_size, channel, height, width = gen_feature.shape\n        original_loss += torch.mean((gen_feature - orig_feature) ** 2)\n        # Compute Gram Matrix of generated\n        G = gen_feature.view(channel, height * width).mm(\n            gen_feature.view(channel, height * width).t()\n        )\n        # Compute Gram Matrix of Style\n        A = style_feature.view(channel, height * width).mm(\n            style_feature.view(channel, height * width).t()\n        )\n        style_loss += torch.mean((G - A) ** 2)\n\n    total_loss = alpha * original_loss + beta * style_loss\n    optimizer.zero_grad()\n    total_loss.backward()\n    optimizer.step()\n\n    if step % 200 == 0:\n        print(total_loss)\n        save_image(generated, \"generated.png\")\n"
  },
  {
    "path": "ML/Pytorch/more_advanced/seq2seq_transformer/seq2seq_transformer.py",
    "content": "\"\"\"\nSeq2Seq using Transformers on the Multi30k\ndataset. In this video I utilize Pytorch\ninbuilt Transformer modules, and have a\nseparate implementation for Transformers\nfrom scratch. Training this model for a\nwhile (not too long) gives a BLEU score\nof ~35, and I think training for longer\nwould give even better results.\n\n\"\"\"\n\nimport torch\nimport torch.nn as nn\nimport torch.optim as optim\nimport spacy\nfrom utils import translate_sentence, bleu, save_checkpoint, load_checkpoint\nfrom torch.utils.tensorboard import SummaryWriter\nfrom torchtext.datasets import Multi30k\nfrom torchtext.data import Field, BucketIterator\n\n\"\"\"\nTo install spacy languages do:\npython -m spacy download en\npython -m spacy download de\n\"\"\"\nspacy_ger = spacy.load(\"de\")\nspacy_eng = spacy.load(\"en\")\n\n\ndef tokenize_ger(text):\n    return [tok.text for tok in spacy_ger.tokenizer(text)]\n\n\ndef tokenize_eng(text):\n    return [tok.text for tok in spacy_eng.tokenizer(text)]\n\n\ngerman = Field(tokenize=tokenize_ger, lower=True, init_token=\"<sos>\", eos_token=\"<eos>\")\n\nenglish = Field(\n    tokenize=tokenize_eng, lower=True, init_token=\"<sos>\", eos_token=\"<eos>\"\n)\n\ntrain_data, valid_data, test_data = Multi30k.splits(\n    exts=(\".de\", \".en\"), fields=(german, english)\n)\n\ngerman.build_vocab(train_data, max_size=10000, min_freq=2)\nenglish.build_vocab(train_data, max_size=10000, min_freq=2)\n\n\nclass Transformer(nn.Module):\n    def __init__(\n        self,\n        embedding_size,\n        src_vocab_size,\n        trg_vocab_size,\n        src_pad_idx,\n        num_heads,\n        num_encoder_layers,\n        num_decoder_layers,\n        forward_expansion,\n        dropout,\n        max_len,\n        device,\n    ):\n        super(Transformer, self).__init__()\n        self.src_word_embedding = nn.Embedding(src_vocab_size, embedding_size)\n        self.src_position_embedding = nn.Embedding(max_len, embedding_size)\n        self.trg_word_embedding = nn.Embedding(trg_vocab_size, embedding_size)\n        self.trg_position_embedding = nn.Embedding(max_len, embedding_size)\n\n        self.device = device\n        self.transformer = nn.Transformer(\n            embedding_size,\n            num_heads,\n            num_encoder_layers,\n            num_decoder_layers,\n            forward_expansion,\n            dropout,\n        )\n        self.fc_out = nn.Linear(embedding_size, trg_vocab_size)\n        self.dropout = nn.Dropout(dropout)\n        self.src_pad_idx = src_pad_idx\n\n    def make_src_mask(self, src):\n        src_mask = src.transpose(0, 1) == self.src_pad_idx\n\n        # (N, src_len)\n        return src_mask.to(self.device)\n\n    def forward(self, src, trg):\n        src_seq_length, N = src.shape\n        trg_seq_length, N = trg.shape\n\n        src_positions = (\n            torch.arange(0, src_seq_length)\n            .unsqueeze(1)\n            .expand(src_seq_length, N)\n            .to(self.device)\n        )\n\n        trg_positions = (\n            torch.arange(0, trg_seq_length)\n            .unsqueeze(1)\n            .expand(trg_seq_length, N)\n            .to(self.device)\n        )\n\n        embed_src = self.dropout(\n            (self.src_word_embedding(src) + self.src_position_embedding(src_positions))\n        )\n        embed_trg = self.dropout(\n            (self.trg_word_embedding(trg) + self.trg_position_embedding(trg_positions))\n        )\n\n        src_padding_mask = self.make_src_mask(src)\n        trg_mask = self.transformer.generate_square_subsequent_mask(trg_seq_length).to(\n            self.device\n        )\n\n        out = self.transformer(\n            embed_src,\n            embed_trg,\n            src_key_padding_mask=src_padding_mask,\n            tgt_mask=trg_mask,\n        )\n        out = self.fc_out(out)\n        return out\n\n\n# We're ready to define everything we need for training our Seq2Seq model\ndevice = torch.device(\"cuda\" if torch.cuda.is_available() else \"cpu\")\n\nload_model = True\nsave_model = True\n\n# Training hyperparameters\nnum_epochs = 10000\nlearning_rate = 3e-4\nbatch_size = 32\n\n# Model hyperparameters\nsrc_vocab_size = len(german.vocab)\ntrg_vocab_size = len(english.vocab)\nembedding_size = 512\nnum_heads = 8\nnum_encoder_layers = 3\nnum_decoder_layers = 3\ndropout = 0.10\nmax_len = 100\nforward_expansion = 4\nsrc_pad_idx = english.vocab.stoi[\"<pad>\"]\n\n# Tensorboard to get nice loss plot\nwriter = SummaryWriter(\"runs/loss_plot\")\nstep = 0\n\ntrain_iterator, valid_iterator, test_iterator = BucketIterator.splits(\n    (train_data, valid_data, test_data),\n    batch_size=batch_size,\n    sort_within_batch=True,\n    sort_key=lambda x: len(x.src),\n    device=device,\n)\n\nmodel = Transformer(\n    embedding_size,\n    src_vocab_size,\n    trg_vocab_size,\n    src_pad_idx,\n    num_heads,\n    num_encoder_layers,\n    num_decoder_layers,\n    forward_expansion,\n    dropout,\n    max_len,\n    device,\n).to(device)\n\noptimizer = optim.Adam(model.parameters(), lr=learning_rate)\n\nscheduler = torch.optim.lr_scheduler.ReduceLROnPlateau(\n    optimizer, factor=0.1, patience=10, verbose=True\n)\n\npad_idx = english.vocab.stoi[\"<pad>\"]\ncriterion = nn.CrossEntropyLoss(ignore_index=pad_idx)\n\nif load_model:\n    load_checkpoint(torch.load(\"my_checkpoint.pth.tar\"), model, optimizer)\n\nsentence = \"ein pferd geht unter einer brücke neben einem boot.\"\n\nfor epoch in range(num_epochs):\n    print(f\"[Epoch {epoch} / {num_epochs}]\")\n\n    if save_model:\n        checkpoint = {\n            \"state_dict\": model.state_dict(),\n            \"optimizer\": optimizer.state_dict(),\n        }\n        save_checkpoint(checkpoint)\n\n    model.eval()\n    translated_sentence = translate_sentence(\n        model, sentence, german, english, device, max_length=50\n    )\n\n    print(f\"Translated example sentence: \\n {translated_sentence}\")\n    model.train()\n    losses = []\n\n    for batch_idx, batch in enumerate(train_iterator):\n        # Get input and targets and get to cuda\n        inp_data = batch.src.to(device)\n        target = batch.trg.to(device)\n\n        # Forward prop\n        output = model(inp_data, target[:-1, :])\n\n        # Output is of shape (trg_len, batch_size, output_dim) but Cross Entropy Loss\n        # doesn't take input in that form. For example if we have MNIST we want to have\n        # output to be: (N, 10) and targets just (N). Here we can view it in a similar\n        # way that we have output_words * batch_size that we want to send in into\n        # our cost function, so we need to do some reshapin.\n        # Let's also remove the start token while we're at it\n        output = output.reshape(-1, output.shape[2])\n        target = target[1:].reshape(-1)\n\n        optimizer.zero_grad()\n\n        loss = criterion(output, target)\n        losses.append(loss.item())\n\n        # Back prop\n        loss.backward()\n        # Clip to avoid exploding gradient issues, makes sure grads are\n        # within a healthy range\n        torch.nn.utils.clip_grad_norm_(model.parameters(), max_norm=1)\n\n        # Gradient descent step\n        optimizer.step()\n\n        # plot to tensorboard\n        writer.add_scalar(\"Training loss\", loss, global_step=step)\n        step += 1\n\n    mean_loss = sum(losses) / len(losses)\n    scheduler.step(mean_loss)\n\n# running on entire test data takes a while\nscore = bleu(test_data[1:100], model, german, english, device)\nprint(f\"Bleu score {score * 100:.2f}\")\n"
  },
  {
    "path": "ML/Pytorch/more_advanced/seq2seq_transformer/utils.py",
    "content": "import torch\nimport spacy\nfrom torchtext.data.metrics import bleu_score\nimport sys\n\n\ndef translate_sentence(model, sentence, german, english, device, max_length=50):\n    # Load german tokenizer\n    spacy_ger = spacy.load(\"de\")\n\n    # Create tokens using spacy and everything in lower case (which is what our vocab is)\n    if type(sentence) == str:\n        tokens = [token.text.lower() for token in spacy_ger(sentence)]\n    else:\n        tokens = [token.lower() for token in sentence]\n\n    # Add <SOS> and <EOS> in beginning and end respectively\n    tokens.insert(0, german.init_token)\n    tokens.append(german.eos_token)\n\n    # Go through each german token and convert to an index\n    text_to_indices = [german.vocab.stoi[token] for token in tokens]\n\n    # Convert to Tensor\n    sentence_tensor = torch.LongTensor(text_to_indices).unsqueeze(1).to(device)\n\n    outputs = [english.vocab.stoi[\"<sos>\"]]\n    for i in range(max_length):\n        trg_tensor = torch.LongTensor(outputs).unsqueeze(1).to(device)\n\n        with torch.no_grad():\n            output = model(sentence_tensor, trg_tensor)\n\n        best_guess = output.argmax(2)[-1, :].item()\n        outputs.append(best_guess)\n\n        if best_guess == english.vocab.stoi[\"<eos>\"]:\n            break\n\n    translated_sentence = [english.vocab.itos[idx] for idx in outputs]\n    # remove start token\n    return translated_sentence[1:]\n\n\ndef bleu(data, model, german, english, device):\n    targets = []\n    outputs = []\n\n    for example in data:\n        src = vars(example)[\"src\"]\n        trg = vars(example)[\"trg\"]\n\n        prediction = translate_sentence(model, src, german, english, device)\n        prediction = prediction[:-1]  # remove <eos> token\n\n        targets.append([trg])\n        outputs.append(prediction)\n\n    return bleu_score(outputs, targets)\n\n\ndef save_checkpoint(state, filename=\"my_checkpoint.pth.tar\"):\n    print(\"=> Saving checkpoint\")\n    torch.save(state, filename)\n\n\ndef load_checkpoint(checkpoint, model, optimizer):\n    print(\"=> Loading checkpoint\")\n    model.load_state_dict(checkpoint[\"state_dict\"])\n    optimizer.load_state_dict(checkpoint[\"optimizer\"])\n"
  },
  {
    "path": "ML/Pytorch/more_advanced/torchtext/mydata/test.csv",
    "content": "name,quote,score\nJocko,You must own everything in your world. There is no one else to blame.,1\nBruce Lee,\"Do not pray for an easy life, pray for the strength to endure a difficult one.\",1\nPotato guy,\"Stand tall, and rice like a potato!\",0\n"
  },
  {
    "path": "ML/Pytorch/more_advanced/torchtext/mydata/test.json",
    "content": "{\"name\": \"Jocko\", \"quote\": \"You must own everything in your world. There is no one else to blame.\", \"score\":1}\n{\"name\": \"Bruce\", \"quote\": \"Do not pray for an easy life, pray for the strength to endure a difficult one.\", \"score\":1}\n{\"name\": \"Random Potato\", \"quote\": \"Stand tall, and rice like a potato!\", \"score\":0}"
  },
  {
    "path": "ML/Pytorch/more_advanced/torchtext/mydata/test.tsv",
    "content": "name\tquote\tscore\nJocko\tYou must own everything in your world. There is no one else to blame.\t1\nBruce Lee\tDo not pray for an easy life, pray for the strength to endure a difficult one.\t1\nPotato guy\tStand tall, and rice like a potato!\t0\n"
  },
  {
    "path": "ML/Pytorch/more_advanced/torchtext/mydata/train.csv",
    "content": "name,quote,score\nJocko,You must own everything in your world. There is no one else to blame.,1\nBruce Lee,\"Do not pray for an easy life, pray for the strength to endure a difficult one.\",1\nPotato guy,\"Stand tall, and rice like a potato!\",0\n"
  },
  {
    "path": "ML/Pytorch/more_advanced/torchtext/mydata/train.json",
    "content": "{\"name\": \"Jocko\", \"quote\": \"You must own everything in your world. There is no one else to blame.\", \"score\":1}\n{\"name\": \"Bruce\", \"quote\": \"Do not pray for an easy life, pray for the strength to endure a difficult one.\", \"score\":1}\n{\"name\": \"Random Potato\", \"quote\": \"Stand tall, and rice like a potato!\", \"score\":0}"
  },
  {
    "path": "ML/Pytorch/more_advanced/torchtext/mydata/train.tsv",
    "content": "name\tquote\tscore\nJocko\tYou must own everything in your world. There is no one else to blame.\t1\nBruce Lee\tDo not pray for an easy life, pray for the strength to endure a difficult one.\t1\nPotato guy\tStand tall, and rice like a potato!\t0\n"
  },
  {
    "path": "ML/Pytorch/more_advanced/torchtext/torchtext_tutorial1.py",
    "content": "import torch\nimport torch.nn as nn\nimport torch.optim as optim\nimport spacy\nfrom torchtext.data import Field, TabularDataset, BucketIterator\n\n######### Loading from JSON/CSV/TSV files #########\n\n# STEPS:\n# 1. Specify how preprocessing should be done -> Fields\n# 2. Use Dataset to load the data -> TabularDataset (JSON/CSV/TSV Files)\n# 3. Construct an iterator to do batching & padding -> BucketIterator\n\ndevice = torch.device(\"cuda\" if torch.cuda.is_available() else \"cpu\")\n\n# python -m spacy download en\nspacy_en = spacy.load(\"en\")\n\n\ndef tokenize(text):\n    return [tok.text for tok in spacy_en.tokenizer(text)]\n\n\nquote = Field(sequential=True, use_vocab=True, tokenize=tokenize, lower=True)\nscore = Field(sequential=False, use_vocab=False)\n\nfields = {\"quote\": (\"q\", quote), \"score\": (\"s\", score)}\n\ntrain_data, test_data = TabularDataset.splits(\n    path=\"mydata\", train=\"train.json\", test=\"test.json\", format=\"json\", fields=fields\n)\n\n# # train_data, test_data = TabularDataset.splits(\n# #                                         path='mydata',\n# #                                         train='train.csv',\n# #                                         test='test.csv',\n# #                                         format='csv',\n# #                                         fields=fields)\n\n# # train_data, test_data = TabularDataset.splits(\n# #                                         path='mydata',\n# #                                         train='train.tsv',\n# #                                         test='test.tsv',\n# #                                         format='tsv',\n# #                                         fields=fields)\n\nquote.build_vocab(train_data, max_size=10000, min_freq=1, vectors=\"glove.6B.100d\")\n\ntrain_iterator, test_iterator = BucketIterator.splits(\n    (train_data, test_data), batch_size=2, device=device\n)\n\n######### Training a simple LSTM on this toy data of ours #########\nclass RNN_LSTM(nn.Module):\n    def __init__(self, input_size, embed_size, hidden_size, num_layers):\n        super(RNN_LSTM, self).__init__()\n        self.hidden_size = hidden_size\n        self.num_layers = num_layers\n\n        self.embedding = nn.Embedding(input_size, embed_size)\n        self.rnn = nn.LSTM(embed_size, hidden_size, num_layers)\n        self.fc_out = nn.Linear(hidden_size, 1)\n\n    def forward(self, x):\n        # Set initial hidden and cell states\n        h0 = torch.zeros(self.num_layers, x.size(1), self.hidden_size).to(device)\n        c0 = torch.zeros(self.num_layers, x.size(1), self.hidden_size).to(device)\n\n        embedded = self.embedding(x)\n        outputs, _ = self.rnn(embedded, (h0, c0))\n        prediction = self.fc_out(outputs[-1, :, :])\n\n        return prediction\n\n\n# Hyperparameters\ninput_size = len(quote.vocab)\nhidden_size = 512\nnum_layers = 2\nembedding_size = 100\nlearning_rate = 0.005\nnum_epochs = 10\n\n# Initialize network\nmodel = RNN_LSTM(input_size, embedding_size, hidden_size, num_layers).to(device)\n\n# (NOT COVERED IN YOUTUBE VIDEO): Load the pretrained embeddings onto our model\npretrained_embeddings = quote.vocab.vectors\nmodel.embedding.weight.data.copy_(pretrained_embeddings)\n\n# Loss and optimizer\ncriterion = nn.BCEWithLogitsLoss()\noptimizer = optim.Adam(model.parameters(), lr=learning_rate)\n\n# Train Network\nfor epoch in range(num_epochs):\n    for batch_idx, batch in enumerate(train_iterator):\n        # Get data to cuda if possible\n        data = batch.q.to(device=device)\n        targets = batch.s.to(device=device)\n\n        # forward\n        scores = model(data)\n        loss = criterion(scores.squeeze(1), targets.type_as(scores))\n\n        # backward\n        optimizer.zero_grad()\n        loss.backward()\n\n        # gradient descent\n        optimizer.step()\n"
  },
  {
    "path": "ML/Pytorch/more_advanced/torchtext/torchtext_tutorial2.py",
    "content": "import spacy\nfrom torchtext.datasets import Multi30k\nfrom torchtext.data import Field, BucketIterator\n\n\"\"\"\nTo install spacy languages use:\npython -m spacy download en\npython -m spacy download de\n\"\"\"\n\nspacy_eng = spacy.load(\"en\")\nspacy_ger = spacy.load(\"de\")\n\n\ndef tokenize_eng(text):\n    return [tok.text for tok in spacy_eng.tokenizer(text)]\n\n\ndef tokenize_ger(text):\n    return [tok.text for tok in spacy_ger.tokenizer(text)]\n\n\nenglish = Field(sequential=True, use_vocab=True, tokenize=tokenize_eng, lower=True)\ngerman = Field(sequential=True, use_vocab=True, tokenize=tokenize_ger, lower=True)\n\ntrain_data, validation_data, test_data = Multi30k.splits(\n    exts=(\".de\", \".en\"), fields=(german, english)\n)\n\nenglish.build_vocab(train_data, max_size=10000, min_freq=2)\ngerman.build_vocab(train_data, max_size=10000, min_freq=2)\n\ntrain_iterator, validation_iterator, test_iterator = BucketIterator.splits(\n    (train_data, validation_data, test_data), batch_size=64, device=\"cuda\"\n)\n\nfor batch in train_iterator:\n    print(batch)\n\n# string to integer (stoi)\nprint(f'Index of the word (the) is: {english.vocab.stoi[\"the\"]}')\n\n# print integer to string (itos)\nprint(f\"Word of the index (1612) is: {english.vocab.itos[1612]}\")\nprint(f\"Word of the index (0) is: {english.vocab.itos[0]}\")\n"
  },
  {
    "path": "ML/Pytorch/more_advanced/torchtext/torchtext_tutorial3.py",
    "content": "import spacy\nimport pandas as pd\nfrom torchtext.data import Field, BucketIterator, TabularDataset\nfrom sklearn.model_selection import train_test_split\n\n### Load data from two text files where each row is a sentence ###\nenglish_txt = open(\"train_WMT_english.txt\", encoding=\"utf8\").read().split(\"\\n\")\ngerman_txt = open(\"train_WMT_german.txt\", encoding=\"utf8\").read().split(\"\\n\")\n\nraw_data = {\n    \"English\": [line for line in english_txt[1:100]],\n    \"German\": [line for line in german_txt[1:100]],\n}\n\ndf = pd.DataFrame(raw_data, columns=[\"English\", \"German\"])\n\n# create train and test set\ntrain, test = train_test_split(df, test_size=0.1)\n\n# Get train, test data to json and csv format which can be read by torchtext\ntrain.to_json(\"train.json\", orient=\"records\", lines=True)\ntest.to_json(\"test.json\", orient=\"records\", lines=True)\n\ntrain.to_csv(\"train.csv\", index=False)\ntest.to_csv(\"test.csv\", index=False)\n\n### Now we're back to where we were in previous Tutorials ###\n\n\"\"\"\nTo install spacy languages use:\npython -m spacy download en\npython -m spacy download de\n\"\"\"\n\nspacy_eng = spacy.load(\"en\")\nspacy_ger = spacy.load(\"de\")\n\n\ndef tokenize_eng(text):\n    return [tok.text for tok in spacy_eng.tokenizer(text)]\n\n\ndef tokenize_ger(text):\n    return [tok.text for tok in spacy_ger.tokenizer(text)]\n\n\nenglish = Field(sequential=True, use_vocab=True, tokenize=tokenize_eng, lower=True)\ngerman = Field(sequential=True, use_vocab=True, tokenize=tokenize_ger, lower=True)\n\nfields = {\"English\": (\"eng\", english), \"German\": (\"ger\", german)}\n\ntrain_data, test_data = TabularDataset.splits(\n    path=\"\", train=\"train.json\", test=\"test.json\", format=\"json\", fields=fields\n)\n\nenglish.build_vocab(train_data, max_size=10000, min_freq=2)\ngerman.build_vocab(train_data, max_size=10000, min_freq=2)\n\ntrain_iterator, test_iterator = BucketIterator.splits(\n    (train_data, test_data), batch_size=32, device=\"cuda\"\n)\n\nfor batch in train_iterator:\n    print(batch)\n"
  },
  {
    "path": "ML/Pytorch/more_advanced/transformer_from_scratch/transformer_from_scratch.py",
    "content": "\"\"\"\nA from scratch implementation of Transformer network,\nfollowing the paper Attention is all you need with a\nfew minor differences. I tried to make it as clear as\npossible to understand and also went through the code\non my youtube channel!\n\n\n\"\"\"\n\nimport torch\nimport torch.nn as nn\n\n\nclass SelfAttention(nn.Module):\n    def __init__(self, embed_size, heads):\n        super(SelfAttention, self).__init__()\n        self.embed_size = embed_size\n        self.heads = heads\n        self.head_dim = embed_size // heads\n\n        assert (\n            self.head_dim * heads == embed_size\n        ), \"Embedding size needs to be divisible by heads\"\n\n        self.values = nn.Linear(embed_size, embed_size)\n        self.keys = nn.Linear(embed_size, embed_size)\n        self.queries = nn.Linear(embed_size, embed_size)\n        self.fc_out = nn.Linear(embed_size, embed_size)\n\n    def forward(self, values, keys, query, mask):\n        # Get number of training examples\n        N = query.shape[0]\n\n        value_len, key_len, query_len = values.shape[1], keys.shape[1], query.shape[1]\n\n        values = self.values(values)  # (N, value_len, embed_size)\n        keys = self.keys(keys)  # (N, key_len, embed_size)\n        queries = self.queries(query)  # (N, query_len, embed_size)\n\n        # Split the embedding into self.heads different pieces\n        values = values.reshape(N, value_len, self.heads, self.head_dim)\n        keys = keys.reshape(N, key_len, self.heads, self.head_dim)\n        queries = queries.reshape(N, query_len, self.heads, self.head_dim)\n\n        # Einsum does matrix mult. for query*keys for each training example\n        # with every other training example, don't be confused by einsum\n        # it's just how I like doing matrix multiplication & bmm\n\n        energy = torch.einsum(\"nqhd,nkhd->nhqk\", [queries, keys])\n        # queries shape: (N, query_len, heads, heads_dim),\n        # keys shape: (N, key_len, heads, heads_dim)\n        # energy: (N, heads, query_len, key_len)\n\n        # Mask padded indices so their weights become 0\n        if mask is not None:\n            energy = energy.masked_fill(mask == 0, float(\"-1e20\"))\n\n        # Normalize energy values similarly to seq2seq + attention\n        # so that they sum to 1. Also divide by scaling factor for\n        # better stability\n        attention = torch.softmax(energy / (self.embed_size ** (1 / 2)), dim=3)\n        # attention shape: (N, heads, query_len, key_len)\n\n        out = torch.einsum(\"nhql,nlhd->nqhd\", [attention, values]).reshape(\n            N, query_len, self.heads * self.head_dim\n        )\n        # attention shape: (N, heads, query_len, key_len)\n        # values shape: (N, value_len, heads, heads_dim)\n        # out after matrix multiply: (N, query_len, heads, head_dim), then\n        # we reshape and flatten the last two dimensions.\n\n        out = self.fc_out(out)\n        # Linear layer doesn't modify the shape, final shape will be\n        # (N, query_len, embed_size)\n\n        return out\n\n\nclass TransformerBlock(nn.Module):\n    def __init__(self, embed_size, heads, dropout, forward_expansion):\n        super(TransformerBlock, self).__init__()\n        self.attention = SelfAttention(embed_size, heads)\n        self.norm1 = nn.LayerNorm(embed_size)\n        self.norm2 = nn.LayerNorm(embed_size)\n\n        self.feed_forward = nn.Sequential(\n            nn.Linear(embed_size, forward_expansion * embed_size),\n            nn.ReLU(),\n            nn.Linear(forward_expansion * embed_size, embed_size),\n        )\n\n        self.dropout = nn.Dropout(dropout)\n\n    def forward(self, value, key, query, mask):\n        attention = self.attention(value, key, query, mask)\n\n        # Add skip connection, run through normalization and finally dropout\n        x = self.dropout(self.norm1(attention + query))\n        forward = self.feed_forward(x)\n        out = self.dropout(self.norm2(forward + x))\n        return out\n\n\nclass Encoder(nn.Module):\n    def __init__(\n        self,\n        src_vocab_size,\n        embed_size,\n        num_layers,\n        heads,\n        device,\n        forward_expansion,\n        dropout,\n        max_length,\n    ):\n\n        super(Encoder, self).__init__()\n        self.embed_size = embed_size\n        self.device = device\n        self.word_embedding = nn.Embedding(src_vocab_size, embed_size)\n        self.position_embedding = nn.Embedding(max_length, embed_size)\n\n        self.layers = nn.ModuleList(\n            [\n                TransformerBlock(\n                    embed_size,\n                    heads,\n                    dropout=dropout,\n                    forward_expansion=forward_expansion,\n                )\n                for _ in range(num_layers)\n            ]\n        )\n\n        self.dropout = nn.Dropout(dropout)\n\n    def forward(self, x, mask):\n        N, seq_length = x.shape\n        positions = torch.arange(0, seq_length).expand(N, seq_length).to(self.device)\n        out = self.dropout(\n            (self.word_embedding(x) + self.position_embedding(positions))\n        )\n\n        # In the Encoder the query, key, value are all the same, it's in the\n        # decoder this will change. This might look a bit odd in this case.\n        for layer in self.layers:\n            out = layer(out, out, out, mask)\n\n        return out\n\n\nclass DecoderBlock(nn.Module):\n    def __init__(self, embed_size, heads, forward_expansion, dropout, device):\n        super(DecoderBlock, self).__init__()\n        self.norm = nn.LayerNorm(embed_size)\n        self.attention = SelfAttention(embed_size, heads=heads)\n        self.transformer_block = TransformerBlock(\n            embed_size, heads, dropout, forward_expansion\n        )\n        self.dropout = nn.Dropout(dropout)\n\n    def forward(self, x, value, key, src_mask, trg_mask):\n        attention = self.attention(x, x, x, trg_mask)\n        query = self.dropout(self.norm(attention + x))\n        out = self.transformer_block(value, key, query, src_mask)\n        return out\n\n\nclass Decoder(nn.Module):\n    def __init__(\n        self,\n        trg_vocab_size,\n        embed_size,\n        num_layers,\n        heads,\n        forward_expansion,\n        dropout,\n        device,\n        max_length,\n    ):\n        super(Decoder, self).__init__()\n        self.device = device\n        self.word_embedding = nn.Embedding(trg_vocab_size, embed_size)\n        self.position_embedding = nn.Embedding(max_length, embed_size)\n\n        self.layers = nn.ModuleList(\n            [\n                DecoderBlock(embed_size, heads, forward_expansion, dropout, device)\n                for _ in range(num_layers)\n            ]\n        )\n        self.fc_out = nn.Linear(embed_size, trg_vocab_size)\n        self.dropout = nn.Dropout(dropout)\n\n    def forward(self, x, enc_out, src_mask, trg_mask):\n        N, seq_length = x.shape\n        positions = torch.arange(0, seq_length).expand(N, seq_length).to(self.device)\n        x = self.dropout((self.word_embedding(x) + self.position_embedding(positions)))\n\n        for layer in self.layers:\n            x = layer(x, enc_out, enc_out, src_mask, trg_mask)\n\n        out = self.fc_out(x)\n\n        return out\n\n\nclass Transformer(nn.Module):\n    def __init__(\n        self,\n        src_vocab_size,\n        trg_vocab_size,\n        src_pad_idx,\n        trg_pad_idx,\n        embed_size=512,\n        num_layers=6,\n        forward_expansion=4,\n        heads=8,\n        dropout=0,\n        device=\"cpu\",\n        max_length=100,\n    ):\n\n        super(Transformer, self).__init__()\n\n        self.encoder = Encoder(\n            src_vocab_size,\n            embed_size,\n            num_layers,\n            heads,\n            device,\n            forward_expansion,\n            dropout,\n            max_length,\n        )\n\n        self.decoder = Decoder(\n            trg_vocab_size,\n            embed_size,\n            num_layers,\n            heads,\n            forward_expansion,\n            dropout,\n            device,\n            max_length,\n        )\n\n        self.src_pad_idx = src_pad_idx\n        self.trg_pad_idx = trg_pad_idx\n        self.device = device\n\n    def make_src_mask(self, src):\n        src_mask = (src != self.src_pad_idx).unsqueeze(1).unsqueeze(2)\n        # (N, 1, 1, src_len)\n        return src_mask.to(self.device)\n\n    def make_trg_mask(self, trg):\n        N, trg_len = trg.shape\n        trg_mask = torch.tril(torch.ones((trg_len, trg_len))).expand(\n            N, 1, trg_len, trg_len\n        )\n\n        return trg_mask.to(self.device)\n\n    def forward(self, src, trg):\n        src_mask = self.make_src_mask(src)\n        trg_mask = self.make_trg_mask(trg)\n        enc_src = self.encoder(src, src_mask)\n        out = self.decoder(trg, enc_src, src_mask, trg_mask)\n        return out\n\n\nif __name__ == \"__main__\":\n    device = torch.device(\"cuda\" if torch.cuda.is_available() else \"cpu\")\n    print(device)\n\n    x = torch.tensor([[1, 5, 6, 4, 3, 9, 5, 2, 0], [1, 8, 7, 3, 4, 5, 6, 7, 2]]).to(\n        device\n    )\n    trg = torch.tensor([[1, 7, 4, 3, 5, 9, 2, 0], [1, 5, 6, 2, 4, 7, 6, 2]]).to(device)\n\n    src_pad_idx = 0\n    trg_pad_idx = 0\n    src_vocab_size = 10\n    trg_vocab_size = 10\n    model = Transformer(src_vocab_size, trg_vocab_size, src_pad_idx, trg_pad_idx, device=device).to(\n        device\n    )\n    out = model(x, trg[:, :-1])\n    print(out.shape)\n"
  },
  {
    "path": "ML/Pytorch/object_detection/YOLO/data/generate_csv.py",
    "content": "import os\r\nimport csv\r\n\r\nread_train = open(\"train.txt\", \"r\").readlines()\r\n\r\nwith open(\"train.csv\", mode=\"w\", newline=\"\") as train_file:\r\n    for line in read_train:\r\n        image_file = line.split(\"/\")[-1].replace(\"\\n\", \"\")\r\n        text_file = image_file.replace(\".jpg\", \".txt\")\r\n        data = [image_file, text_file]\r\n        writer = csv.writer(train_file)\r\n        writer.writerow(data)\r\n\r\nread_train = open(\"test.txt\", \"r\").readlines()\r\n\r\nwith open(\"test.csv\", mode=\"w\", newline=\"\") as train_file:\r\n    for line in read_train:\r\n        image_file = line.split(\"/\")[-1].replace(\"\\n\", \"\")\r\n        text_file = image_file.replace(\".jpg\", \".txt\")\r\n        data = [image_file, text_file]\r\n        writer = csv.writer(train_file)\r\n        writer.writerow(data)\r\n"
  },
  {
    "path": "ML/Pytorch/object_detection/YOLO/data/get_data",
    "content": "#!/usr/bin/env bash\n\n## DOWNLOAD from JOSEPHS WEBSITE (SLOWER DOWNLOAD)                                 \n#wget https://pjreddie.com/media/files/VOCtrainval_11-May-2012.tar\n#wget https://pjreddie.com/media/files/VOCtrainval_06-Nov-2007.tar\n#wget https://pjreddie.com/media/files/VOCtest_06-Nov-2007.tar    \n                                                              \n## OR DOWNLOAD FROM HERE (FASTER DOWNLOAD)                                          \n# VOC2007 DATASET                                                              \nwget http://host.robots.ox.ac.uk/pascal/VOC/voc2007/VOCtrainval_06-Nov-2007.ta\nwget http://host.robots.ox.ac.uk/pascal/VOC/voc2007/VOCtest_06-Nov-2007.tar # \n\n# VOC2012 DATASET                                                              \nwget http://host.robots.ox.ac.uk/pascal/VOC/voc2012/VOCtrainval_11-May-2012.ta\n\n# Extract tar files\ntar xf VOCtrainval_11-May-2012.tar\ntar xf VOCtrainval_06-Nov-2007.tar\ntar xf VOCtest_06-Nov-2007.tar\n\n# Need voc_label.py to clean up data from xml files\nwget https://pjreddie.com/media/files/voc_label.py\n\n# Run python file to clean data from xml files\npython voc_label.py\n\n# Get train by using train+val from 2007 and 2012\n# Then we only test on 2007 test set\n# Unclear from paper what they actually just as a dev set\ncat 2007_train.txt 2007_val.txt 2012_*.txt > train.txt\ncp 2007_test.txt test.txt\n\n# Move txt files we won't be using to clean up a little bit\nmkdir old_txt_files\nmv 2007* 2012* old_txt_files/\n\npython generate_csv.py\n\nmkdir data\nmkdir data/images\nmkdir data/labels\n\ncp VOCdevkit/*.jpg data/images/\ncp VOCdevkit/VOC2007/labels/*.txt data/labels/\ncp VOCdevkit/VOC2012/labels/*.txt data/labels/\n\nmkdir data                                                                              \nmkdir data/images                                                                       \nmkdir data/labels                                                                       \n                                                                                        \nmv VOCdevkit/VOC2007/JPEGImages/*.jpg data/images/                                      \nmv VOCdevkit/VOC2012/JPEGImages/*.jpg data/images/                                      \nmv VOCdevkit/VOC2007/labels/*.txt data/labels/                                          \nmv VOCdevkit/VOC2012/labels/*.txt data/labels/ \n\n# We don't need VOCdevkit folder anymore, can remove\n# in order to save some space \nrm -rf VOCdevkit/\nmv test.txt old_txt_files/\nmv train.txt old_txt_files/\n"
  },
  {
    "path": "ML/Pytorch/object_detection/YOLO/dataset.py",
    "content": "\"\"\"\r\nCreates a Pytorch dataset to load the Pascal VOC dataset\r\n\"\"\"\r\n\r\nimport torch\r\nimport os\r\nimport pandas as pd\r\nfrom PIL import Image\r\n\r\n\r\nclass VOCDataset(torch.utils.data.Dataset):\r\n    def __init__(\r\n        self, csv_file, img_dir, label_dir, S=7, B=2, C=20, transform=None,\r\n    ):\r\n        self.annotations = pd.read_csv(csv_file)\r\n        self.img_dir = img_dir\r\n        self.label_dir = label_dir\r\n        self.transform = transform\r\n        self.S = S\r\n        self.B = B\r\n        self.C = C\r\n\r\n    def __len__(self):\r\n        return len(self.annotations)\r\n\r\n    def __getitem__(self, index):\r\n        label_path = os.path.join(self.label_dir, self.annotations.iloc[index, 1])\r\n        boxes = []\r\n        with open(label_path) as f:\r\n            for label in f.readlines():\r\n                class_label, x, y, width, height = [\r\n                    float(x) if float(x) != int(float(x)) else int(x)\r\n                    for x in label.replace(\"\\n\", \"\").split()\r\n                ]\r\n\r\n                boxes.append([class_label, x, y, width, height])\r\n\r\n        img_path = os.path.join(self.img_dir, self.annotations.iloc[index, 0])\r\n        image = Image.open(img_path)\r\n        boxes = torch.tensor(boxes)\r\n\r\n        if self.transform:\r\n            # image = self.transform(image)\r\n            image, boxes = self.transform(image, boxes)\r\n\r\n        # Convert To Cells\r\n        label_matrix = torch.zeros((self.S, self.S, self.C + 5 * self.B))\r\n        for box in boxes:\r\n            class_label, x, y, width, height = box.tolist()\r\n            class_label = int(class_label)\r\n\r\n            # i,j represents the cell row and cell column\r\n            i, j = int(self.S * y), int(self.S * x)\r\n            x_cell, y_cell = self.S * x - j, self.S * y - i\r\n\r\n            \"\"\"\r\n            Calculating the width and height of cell of bounding box,\r\n            relative to the cell is done by the following, with\r\n            width as the example:\r\n            \r\n            width_pixels = (width*self.image_width)\r\n            cell_pixels = (self.image_width)\r\n            \r\n            Then to find the width relative to the cell is simply:\r\n            width_pixels/cell_pixels, simplification leads to the\r\n            formulas below.\r\n            \"\"\"\r\n            width_cell, height_cell = (\r\n                width * self.S,\r\n                height * self.S,\r\n            )\r\n\r\n            # If no object already found for specific cell i,j\r\n            # Note: This means we restrict to ONE object\r\n            # per cell!\r\n            if label_matrix[i, j, 20] == 0:\r\n                # Set that there exists an object\r\n                label_matrix[i, j, 20] = 1\r\n\r\n                # Box coordinates\r\n                box_coordinates = torch.tensor(\r\n                    [x_cell, y_cell, width_cell, height_cell]\r\n                )\r\n\r\n                label_matrix[i, j, 21:25] = box_coordinates\r\n\r\n                # Set one hot encoding for class_label\r\n                label_matrix[i, j, class_label] = 1\r\n\r\n        return image, label_matrix\r\n"
  },
  {
    "path": "ML/Pytorch/object_detection/YOLO/loss.py",
    "content": "\"\"\"\r\nImplementation of Yolo Loss Function from the original yolo paper\r\n\r\n\"\"\"\r\n\r\nimport torch\r\nimport torch.nn as nn\r\nfrom utils import intersection_over_union\r\n\r\n\r\nclass YoloLoss(nn.Module):\r\n    \"\"\"\r\n    Calculate the loss for yolo (v1) model\r\n    \"\"\"\r\n\r\n    def __init__(self, S=7, B=2, C=20):\r\n        super(YoloLoss, self).__init__()\r\n        self.mse = nn.MSELoss(reduction=\"sum\")\r\n\r\n        \"\"\"\r\n        S is split size of image (in paper 7),\r\n        B is number of boxes (in paper 2),\r\n        C is number of classes (in paper and VOC dataset is 20),\r\n        \"\"\"\r\n        self.S = S\r\n        self.B = B\r\n        self.C = C\r\n\r\n        # These are from Yolo paper, signifying how much we should\r\n        # pay loss for no object (noobj) and the box coordinates (coord)\r\n        self.lambda_noobj = 0.5\r\n        self.lambda_coord = 5\r\n\r\n    def forward(self, predictions, target):\r\n        # predictions are shaped (BATCH_SIZE, S*S(C+B*5) when inputted\r\n        predictions = predictions.reshape(-1, self.S, self.S, self.C + self.B * 5)\r\n\r\n        # Calculate IoU for the two predicted bounding boxes with target bbox\r\n        iou_b1 = intersection_over_union(predictions[..., 21:25], target[..., 21:25])\r\n        iou_b2 = intersection_over_union(predictions[..., 26:30], target[..., 21:25])\r\n        ious = torch.cat([iou_b1.unsqueeze(0), iou_b2.unsqueeze(0)], dim=0)\r\n\r\n        # Take the box with highest IoU out of the two prediction\r\n        # Note that bestbox will be indices of 0, 1 for which bbox was best\r\n        iou_maxes, bestbox = torch.max(ious, dim=0)\r\n        exists_box = target[..., 20].unsqueeze(3)  # in paper this is Iobj_i\r\n\r\n        # ======================== #\r\n        #   FOR BOX COORDINATES    #\r\n        # ======================== #\r\n\r\n        # Set boxes with no object in them to 0. We only take out one of the two \r\n        # predictions, which is the one with highest Iou calculated previously.\r\n        box_predictions = exists_box * (\r\n            (\r\n                bestbox * predictions[..., 26:30]\r\n                + (1 - bestbox) * predictions[..., 21:25]\r\n            )\r\n        )\r\n\r\n        box_targets = exists_box * target[..., 21:25]\r\n\r\n        # Take sqrt of width, height of boxes to ensure that\r\n        box_predictions[..., 2:4] = torch.sign(box_predictions[..., 2:4]) * torch.sqrt(\r\n            torch.abs(box_predictions[..., 2:4] + 1e-6)\r\n        )\r\n        box_targets[..., 2:4] = torch.sqrt(box_targets[..., 2:4])\r\n\r\n        box_loss = self.mse(\r\n            torch.flatten(box_predictions, end_dim=-2),\r\n            torch.flatten(box_targets, end_dim=-2),\r\n        )\r\n\r\n        # ==================== #\r\n        #   FOR OBJECT LOSS    #\r\n        # ==================== #\r\n\r\n        # pred_box is the confidence score for the bbox with highest IoU\r\n        pred_box = (\r\n            bestbox * predictions[..., 25:26] + (1 - bestbox) * predictions[..., 20:21]\r\n        )\r\n\r\n        object_loss = self.mse(\r\n            torch.flatten(exists_box * pred_box),\r\n            torch.flatten(exists_box * target[..., 20:21]),\r\n        )\r\n\r\n        # ======================= #\r\n        #   FOR NO OBJECT LOSS    #\r\n        # ======================= #\r\n\r\n        #max_no_obj = torch.max(predictions[..., 20:21], predictions[..., 25:26])\r\n        #no_object_loss = self.mse(\r\n        #    torch.flatten((1 - exists_box) * max_no_obj, start_dim=1),\r\n        #    torch.flatten((1 - exists_box) * target[..., 20:21], start_dim=1),\r\n        #)\r\n\r\n        no_object_loss = self.mse(\r\n            torch.flatten((1 - exists_box) * predictions[..., 20:21], start_dim=1),\r\n            torch.flatten((1 - exists_box) * target[..., 20:21], start_dim=1),\r\n        )\r\n\r\n        no_object_loss += self.mse(\r\n            torch.flatten((1 - exists_box) * predictions[..., 25:26], start_dim=1),\r\n            torch.flatten((1 - exists_box) * target[..., 20:21], start_dim=1)\r\n        )\r\n\r\n        # ================== #\r\n        #   FOR CLASS LOSS   #\r\n        # ================== #\r\n\r\n        class_loss = self.mse(\r\n            torch.flatten(exists_box * predictions[..., :20], end_dim=-2,),\r\n            torch.flatten(exists_box * target[..., :20], end_dim=-2,),\r\n        )\r\n\r\n        loss = (\r\n            self.lambda_coord * box_loss  # first two rows in paper\r\n            + object_loss  # third row in paper\r\n            + self.lambda_noobj * no_object_loss  # forth row\r\n            + class_loss  # fifth row\r\n        )\r\n\r\n        return loss\r\n"
  },
  {
    "path": "ML/Pytorch/object_detection/YOLO/model.py",
    "content": "\"\"\"\r\nImplementation of Yolo (v1) architecture\r\nwith slight modification with added BatchNorm.\r\n\"\"\"\r\n\r\nimport torch\r\nimport torch.nn as nn\r\n\r\n\"\"\" \r\nInformation about architecture config:\r\nTuple is structured by (kernel_size, filters, stride, padding) \r\n\"M\" is simply maxpooling with stride 2x2 and kernel 2x2\r\nList is structured by tuples and lastly int with number of repeats\r\n\"\"\"\r\n\r\narchitecture_config = [\r\n    (7, 64, 2, 3),\r\n    \"M\",\r\n    (3, 192, 1, 1),\r\n    \"M\",\r\n    (1, 128, 1, 0),\r\n    (3, 256, 1, 1),\r\n    (1, 256, 1, 0),\r\n    (3, 512, 1, 1),\r\n    \"M\",\r\n    [(1, 256, 1, 0), (3, 512, 1, 1), 4],\r\n    (1, 512, 1, 0),\r\n    (3, 1024, 1, 1),\r\n    \"M\",\r\n    [(1, 512, 1, 0), (3, 1024, 1, 1), 2],\r\n    (3, 1024, 1, 1),\r\n    (3, 1024, 2, 1),\r\n    (3, 1024, 1, 1),\r\n    (3, 1024, 1, 1),\r\n]\r\n\r\n\r\nclass CNNBlock(nn.Module):\r\n    def __init__(self, in_channels, out_channels, **kwargs):\r\n        super(CNNBlock, self).__init__()\r\n        self.conv = nn.Conv2d(in_channels, out_channels, bias=False, **kwargs)\r\n        self.batchnorm = nn.BatchNorm2d(out_channels)\r\n        self.leakyrelu = nn.LeakyReLU(0.1)\r\n\r\n    def forward(self, x):\r\n        return self.leakyrelu(self.batchnorm(self.conv(x)))\r\n\r\n\r\nclass Yolov1(nn.Module):\r\n    def __init__(self, in_channels=3, **kwargs):\r\n        super(Yolov1, self).__init__()\r\n        self.architecture = architecture_config\r\n        self.in_channels = in_channels\r\n        self.darknet = self._create_conv_layers(self.architecture)\r\n        self.fcs = self._create_fcs(**kwargs)\r\n\r\n    def forward(self, x):\r\n        x = self.darknet(x)\r\n        return self.fcs(torch.flatten(x, start_dim=1))\r\n\r\n    def _create_conv_layers(self, architecture):\r\n        layers = []\r\n        in_channels = self.in_channels\r\n\r\n        for x in architecture:\r\n            if type(x) == tuple:\r\n                layers += [\r\n                    CNNBlock(\r\n                        in_channels, x[1], kernel_size=x[0], stride=x[2], padding=x[3],\r\n                    )\r\n                ]\r\n                in_channels = x[1]\r\n\r\n            elif type(x) == str:\r\n                layers += [nn.MaxPool2d(kernel_size=(2, 2), stride=(2, 2))]\r\n\r\n            elif type(x) == list:\r\n                conv1 = x[0]\r\n                conv2 = x[1]\r\n                num_repeats = x[2]\r\n\r\n                for _ in range(num_repeats):\r\n                    layers += [\r\n                        CNNBlock(\r\n                            in_channels,\r\n                            conv1[1],\r\n                            kernel_size=conv1[0],\r\n                            stride=conv1[2],\r\n                            padding=conv1[3],\r\n                        )\r\n                    ]\r\n                    layers += [\r\n                        CNNBlock(\r\n                            conv1[1],\r\n                            conv2[1],\r\n                            kernel_size=conv2[0],\r\n                            stride=conv2[2],\r\n                            padding=conv2[3],\r\n                        )\r\n                    ]\r\n                    in_channels = conv2[1]\r\n\r\n        return nn.Sequential(*layers)\r\n\r\n    def _create_fcs(self, split_size, num_boxes, num_classes):\r\n        S, B, C = split_size, num_boxes, num_classes\r\n\r\n        # In original paper this should be\r\n        # nn.Linear(1024*S*S, 4096),\r\n        # nn.LeakyReLU(0.1),\r\n        # nn.Linear(4096, S*S*(B*5+C))\r\n\r\n        return nn.Sequential(\r\n            nn.Flatten(),\r\n            nn.Linear(1024 * S * S, 496),\r\n            nn.Dropout(0.0),\r\n            nn.LeakyReLU(0.1),\r\n            nn.Linear(496, S * S * (C + B * 5)),\r\n        )\r\n"
  },
  {
    "path": "ML/Pytorch/object_detection/YOLO/train.py",
    "content": "\"\"\"\r\nMain file for training Yolo model on Pascal VOC dataset\r\n\r\n\"\"\"\r\n\r\nimport torch\r\nimport torchvision.transforms as transforms\r\nimport torch.optim as optim\r\nimport torchvision.transforms.functional as FT\r\nfrom tqdm import tqdm\r\nfrom torch.utils.data import DataLoader\r\nfrom model import Yolov1\r\nfrom dataset import VOCDataset\r\nfrom utils import (\r\n    non_max_suppression,\r\n    mean_average_precision,\r\n    intersection_over_union,\r\n    cellboxes_to_boxes,\r\n    get_bboxes,\r\n    plot_image,\r\n    save_checkpoint,\r\n    load_checkpoint,\r\n)\r\nfrom loss import YoloLoss\r\n\r\nseed = 123\r\ntorch.manual_seed(seed)\r\n\r\n# Hyperparameters etc. \r\nLEARNING_RATE = 2e-5\r\nDEVICE = \"cuda\" if torch.cuda.is_available else \"cpu\"\r\nBATCH_SIZE = 16 # 64 in original paper but I don't have that much vram, grad accum?\r\nWEIGHT_DECAY = 0\r\nEPOCHS = 1000\r\nNUM_WORKERS = 2\r\nPIN_MEMORY = True\r\nLOAD_MODEL = False\r\nLOAD_MODEL_FILE = \"overfit.pth.tar\"\r\nIMG_DIR = \"data/images\"\r\nLABEL_DIR = \"data/labels\"\r\n\r\n\r\nclass Compose(object):\r\n    def __init__(self, transforms):\r\n        self.transforms = transforms\r\n\r\n    def __call__(self, img, bboxes):\r\n        for t in self.transforms:\r\n            img, bboxes = t(img), bboxes\r\n\r\n        return img, bboxes\r\n\r\n\r\ntransform = Compose([transforms.Resize((448, 448)), transforms.ToTensor(),])\r\n\r\n\r\ndef train_fn(train_loader, model, optimizer, loss_fn):\r\n    loop = tqdm(train_loader, leave=True)\r\n    mean_loss = []\r\n\r\n    for batch_idx, (x, y) in enumerate(loop):\r\n        x, y = x.to(DEVICE), y.to(DEVICE)\r\n        out = model(x)\r\n        loss = loss_fn(out, y)\r\n        mean_loss.append(loss.item())\r\n        optimizer.zero_grad()\r\n        loss.backward()\r\n        optimizer.step()\r\n\r\n        # update progress bar\r\n        loop.set_postfix(loss=loss.item())\r\n\r\n    print(f\"Mean loss was {sum(mean_loss)/len(mean_loss)}\")\r\n\r\n\r\ndef main():\r\n    model = Yolov1(split_size=7, num_boxes=2, num_classes=20).to(DEVICE)\r\n    optimizer = optim.Adam(\r\n        model.parameters(), lr=LEARNING_RATE, weight_decay=WEIGHT_DECAY\r\n    )\r\n    loss_fn = YoloLoss()\r\n\r\n    if LOAD_MODEL:\r\n        load_checkpoint(torch.load(LOAD_MODEL_FILE), model, optimizer)\r\n\r\n    train_dataset = VOCDataset(\r\n        \"data/100examples.csv\",\r\n        transform=transform,\r\n        img_dir=IMG_DIR,\r\n        label_dir=LABEL_DIR,\r\n    )\r\n\r\n    test_dataset = VOCDataset(\r\n        \"data/test.csv\", transform=transform, img_dir=IMG_DIR, label_dir=LABEL_DIR,\r\n    )\r\n\r\n    train_loader = DataLoader(\r\n        dataset=train_dataset,\r\n        batch_size=BATCH_SIZE,\r\n        num_workers=NUM_WORKERS,\r\n        pin_memory=PIN_MEMORY,\r\n        shuffle=True,\r\n        drop_last=True,\r\n    )\r\n\r\n    test_loader = DataLoader(\r\n        dataset=test_dataset,\r\n        batch_size=BATCH_SIZE,\r\n        num_workers=NUM_WORKERS,\r\n        pin_memory=PIN_MEMORY,\r\n        shuffle=True,\r\n        drop_last=True,\r\n    )\r\n\r\n    for epoch in range(EPOCHS):\r\n        # for x, y in train_loader:\r\n        #    x = x.to(DEVICE)\r\n        #    for idx in range(8):\r\n        #        bboxes = cellboxes_to_boxes(model(x))\r\n        #        bboxes = non_max_suppression(bboxes[idx], iou_threshold=0.5, threshold=0.4, box_format=\"midpoint\")\r\n        #        plot_image(x[idx].permute(1,2,0).to(\"cpu\"), bboxes)\r\n\r\n        #    import sys\r\n        #    sys.exit()\r\n\r\n        pred_boxes, target_boxes = get_bboxes(\r\n            train_loader, model, iou_threshold=0.5, threshold=0.4\r\n        )\r\n\r\n        mean_avg_prec = mean_average_precision(\r\n            pred_boxes, target_boxes, iou_threshold=0.5, box_format=\"midpoint\"\r\n        )\r\n        print(f\"Train mAP: {mean_avg_prec}\")\r\n\r\n        #if mean_avg_prec > 0.9:\r\n        #    checkpoint = {\r\n        #        \"state_dict\": model.state_dict(),\r\n        #        \"optimizer\": optimizer.state_dict(),\r\n        #    }\r\n        #    save_checkpoint(checkpoint, filename=LOAD_MODEL_FILE)\r\n        #    import time\r\n        #    time.sleep(10)\r\n\r\n        train_fn(train_loader, model, optimizer, loss_fn)\r\n\r\n\r\nif __name__ == \"__main__\":\r\n    main()\r\n"
  },
  {
    "path": "ML/Pytorch/object_detection/YOLO/utils.py",
    "content": "import torch\nimport numpy as np\nimport matplotlib.pyplot as plt\nimport matplotlib.patches as patches\nfrom collections import Counter\n\ndef intersection_over_union(boxes_preds, boxes_labels, box_format=\"midpoint\"):\n    \"\"\"\n    Calculates intersection over union\n\n    Parameters:\n        boxes_preds (tensor): Predictions of Bounding Boxes (BATCH_SIZE, 4)\n        boxes_labels (tensor): Correct labels of Bounding Boxes (BATCH_SIZE, 4)\n        box_format (str): midpoint/corners, if boxes (x,y,w,h) or (x1,y1,x2,y2)\n\n    Returns:\n        tensor: Intersection over union for all examples\n    \"\"\"\n\n    if box_format == \"midpoint\":\n        box1_x1 = boxes_preds[..., 0:1] - boxes_preds[..., 2:3] / 2\n        box1_y1 = boxes_preds[..., 1:2] - boxes_preds[..., 3:4] / 2\n        box1_x2 = boxes_preds[..., 0:1] + boxes_preds[..., 2:3] / 2\n        box1_y2 = boxes_preds[..., 1:2] + boxes_preds[..., 3:4] / 2\n        box2_x1 = boxes_labels[..., 0:1] - boxes_labels[..., 2:3] / 2\n        box2_y1 = boxes_labels[..., 1:2] - boxes_labels[..., 3:4] / 2\n        box2_x2 = boxes_labels[..., 0:1] + boxes_labels[..., 2:3] / 2\n        box2_y2 = boxes_labels[..., 1:2] + boxes_labels[..., 3:4] / 2\n\n    if box_format == \"corners\":\n        box1_x1 = boxes_preds[..., 0:1]\n        box1_y1 = boxes_preds[..., 1:2]\n        box1_x2 = boxes_preds[..., 2:3]\n        box1_y2 = boxes_preds[..., 3:4]  # (N, 1)\n        box2_x1 = boxes_labels[..., 0:1]\n        box2_y1 = boxes_labels[..., 1:2]\n        box2_x2 = boxes_labels[..., 2:3]\n        box2_y2 = boxes_labels[..., 3:4]\n\n    x1 = torch.max(box1_x1, box2_x1)\n    y1 = torch.max(box1_y1, box2_y1)\n    x2 = torch.min(box1_x2, box2_x2)\n    y2 = torch.min(box1_y2, box2_y2)\n\n    # .clamp(0) is for the case when they do not intersect\n    intersection = (x2 - x1).clamp(0) * (y2 - y1).clamp(0)\n\n    box1_area = abs((box1_x2 - box1_x1) * (box1_y2 - box1_y1))\n    box2_area = abs((box2_x2 - box2_x1) * (box2_y2 - box2_y1))\n\n    return intersection / (box1_area + box2_area - intersection + 1e-6)\n\n\ndef non_max_suppression(bboxes, iou_threshold, threshold, box_format=\"corners\"):\n    \"\"\"\n    Does Non Max Suppression given bboxes\n\n    Parameters:\n        bboxes (list): list of lists containing all bboxes with each bboxes\n        specified as [class_pred, prob_score, x1, y1, x2, y2]\n        iou_threshold (float): threshold where predicted bboxes is correct\n        threshold (float): threshold to remove predicted bboxes (independent of IoU) \n        box_format (str): \"midpoint\" or \"corners\" used to specify bboxes\n\n    Returns:\n        list: bboxes after performing NMS given a specific IoU threshold\n    \"\"\"\n\n    assert type(bboxes) == list\n\n    bboxes = [box for box in bboxes if box[1] > threshold]\n    bboxes = sorted(bboxes, key=lambda x: x[1], reverse=True)\n    bboxes_after_nms = []\n\n    while bboxes:\n        chosen_box = bboxes.pop(0)\n\n        bboxes = [\n            box\n            for box in bboxes\n            if box[0] != chosen_box[0]\n            or intersection_over_union(\n                torch.tensor(chosen_box[2:]),\n                torch.tensor(box[2:]),\n                box_format=box_format,\n            )\n            < iou_threshold\n        ]\n\n        bboxes_after_nms.append(chosen_box)\n\n    return bboxes_after_nms\n\n\ndef mean_average_precision(\n    pred_boxes, true_boxes, iou_threshold=0.5, box_format=\"midpoint\", num_classes=20\n):\n    \"\"\"\n    Calculates mean average precision \n\n    Parameters:\n        pred_boxes (list): list of lists containing all bboxes with each bboxes\n        specified as [train_idx, class_prediction, prob_score, x1, y1, x2, y2]\n        true_boxes (list): Similar as pred_boxes except all the correct ones \n        iou_threshold (float): threshold where predicted bboxes is correct\n        box_format (str): \"midpoint\" or \"corners\" used to specify bboxes\n        num_classes (int): number of classes\n\n    Returns:\n        float: mAP value across all classes given a specific IoU threshold \n    \"\"\"\n\n    # list storing all AP for respective classes\n    average_precisions = []\n\n    # used for numerical stability later on\n    epsilon = 1e-6\n\n    for c in range(num_classes):\n        detections = []\n        ground_truths = []\n\n        # Go through all predictions and targets,\n        # and only add the ones that belong to the\n        # current class c\n        for detection in pred_boxes:\n            if detection[1] == c:\n                detections.append(detection)\n\n        for true_box in true_boxes:\n            if true_box[1] == c:\n                ground_truths.append(true_box)\n\n        # find the amount of bboxes for each training example\n        # Counter here finds how many ground truth bboxes we get\n        # for each training example, so let's say img 0 has 3,\n        # img 1 has 5 then we will obtain a dictionary with:\n        # amount_bboxes = {0:3, 1:5}\n        amount_bboxes = Counter([gt[0] for gt in ground_truths])\n\n        # We then go through each key, val in this dictionary\n        # and convert to the following (w.r.t same example):\n        # ammount_bboxes = {0:torch.tensor[0,0,0], 1:torch.tensor[0,0,0,0,0]}\n        for key, val in amount_bboxes.items():\n            amount_bboxes[key] = torch.zeros(val)\n\n        # sort by box probabilities which is index 2\n        detections.sort(key=lambda x: x[2], reverse=True)\n        TP = torch.zeros((len(detections)))\n        FP = torch.zeros((len(detections)))\n        total_true_bboxes = len(ground_truths)\n        \n        # If none exists for this class then we can safely skip\n        if total_true_bboxes == 0:\n            continue\n\n        for detection_idx, detection in enumerate(detections):\n            # Only take out the ground_truths that have the same\n            # training idx as detection\n            ground_truth_img = [\n                bbox for bbox in ground_truths if bbox[0] == detection[0]\n            ]\n\n            num_gts = len(ground_truth_img)\n            best_iou = 0\n\n            for idx, gt in enumerate(ground_truth_img):\n                iou = intersection_over_union(\n                    torch.tensor(detection[3:]),\n                    torch.tensor(gt[3:]),\n                    box_format=box_format,\n                )\n\n                if iou > best_iou:\n                    best_iou = iou\n                    best_gt_idx = idx\n\n            if best_iou > iou_threshold:\n                # only detect ground truth detection once\n                if amount_bboxes[detection[0]][best_gt_idx] == 0:\n                    # true positive and add this bounding box to seen\n                    TP[detection_idx] = 1\n                    amount_bboxes[detection[0]][best_gt_idx] = 1\n                else:\n                    FP[detection_idx] = 1\n\n            # if IOU is lower then the detection is a false positive\n            else:\n                FP[detection_idx] = 1\n\n        TP_cumsum = torch.cumsum(TP, dim=0)\n        FP_cumsum = torch.cumsum(FP, dim=0)\n        recalls = TP_cumsum / (total_true_bboxes + epsilon)\n        precisions = torch.divide(TP_cumsum, (TP_cumsum + FP_cumsum + epsilon))\n        precisions = torch.cat((torch.tensor([1]), precisions))\n        recalls = torch.cat((torch.tensor([0]), recalls))\n        # torch.trapz for numerical integration\n        average_precisions.append(torch.trapz(precisions, recalls))\n\n    return sum(average_precisions) / len(average_precisions)\n\n\ndef plot_image(image, boxes):\n    \"\"\"Plots predicted bounding boxes on the image\"\"\"\n    im = np.array(image)\n    height, width, _ = im.shape\n\n    # Create figure and axes\n    fig, ax = plt.subplots(1)\n    # Display the image\n    ax.imshow(im)\n\n    # box[0] is x midpoint, box[2] is width\n    # box[1] is y midpoint, box[3] is height\n\n    # Create a Rectangle potch\n    for box in boxes:\n        box = box[2:]\n        assert len(box) == 4, \"Got more values than in x, y, w, h, in a box!\"\n        upper_left_x = box[0] - box[2] / 2\n        upper_left_y = box[1] - box[3] / 2\n        rect = patches.Rectangle(\n            (upper_left_x * width, upper_left_y * height),\n            box[2] * width,\n            box[3] * height,\n            linewidth=1,\n            edgecolor=\"r\",\n            facecolor=\"none\",\n        )\n        # Add the patch to the Axes\n        ax.add_patch(rect)\n\n    plt.show()\n\ndef get_bboxes(\n    loader,\n    model,\n    iou_threshold,\n    threshold,\n    pred_format=\"cells\",\n    box_format=\"midpoint\",\n    device=\"cuda\",\n):\n    all_pred_boxes = []\n    all_true_boxes = []\n\n    # make sure model is in eval before get bboxes\n    model.eval()\n    train_idx = 0\n\n    for batch_idx, (x, labels) in enumerate(loader):\n        x = x.to(device)\n        labels = labels.to(device)\n\n        with torch.no_grad():\n            predictions = model(x)\n\n        batch_size = x.shape[0]\n        true_bboxes = cellboxes_to_boxes(labels)\n        bboxes = cellboxes_to_boxes(predictions)\n\n        for idx in range(batch_size):\n            nms_boxes = non_max_suppression(\n                bboxes[idx],\n                iou_threshold=iou_threshold,\n                threshold=threshold,\n                box_format=box_format,\n            )\n\n\n            #if batch_idx == 0 and idx == 0:\n            #    plot_image(x[idx].permute(1,2,0).to(\"cpu\"), nms_boxes)\n            #    print(nms_boxes)\n\n            for nms_box in nms_boxes:\n                all_pred_boxes.append([train_idx] + nms_box)\n\n            for box in true_bboxes[idx]:\n                # many will get converted to 0 pred\n                if box[1] > threshold:\n                    all_true_boxes.append([train_idx] + box)\n\n            train_idx += 1\n\n    model.train()\n    return all_pred_boxes, all_true_boxes\n\n\n\ndef convert_cellboxes(predictions, S=7):\n    \"\"\"\n    Converts bounding boxes output from Yolo with\n    an image split size of S into entire image ratios\n    rather than relative to cell ratios. Tried to do this\n    vectorized, but this resulted in quite difficult to read\n    code... Use as a black box? Or implement a more intuitive,\n    using 2 for loops iterating range(S) and convert them one\n    by one, resulting in a slower but more readable implementation.\n    \"\"\"\n\n    predictions = predictions.to(\"cpu\")\n    batch_size = predictions.shape[0]\n    predictions = predictions.reshape(batch_size, 7, 7, 30)\n    bboxes1 = predictions[..., 21:25]\n    bboxes2 = predictions[..., 26:30]\n    scores = torch.cat(\n        (predictions[..., 20].unsqueeze(0), predictions[..., 25].unsqueeze(0)), dim=0\n    )\n    best_box = scores.argmax(0).unsqueeze(-1)\n    best_boxes = bboxes1 * (1 - best_box) + best_box * bboxes2\n    cell_indices = torch.arange(7).repeat(batch_size, 7, 1).unsqueeze(-1)\n    x = 1 / S * (best_boxes[..., :1] + cell_indices)\n    y = 1 / S * (best_boxes[..., 1:2] + cell_indices.permute(0, 2, 1, 3))\n    w_y = 1 / S * best_boxes[..., 2:4]\n    converted_bboxes = torch.cat((x, y, w_y), dim=-1)\n    predicted_class = predictions[..., :20].argmax(-1).unsqueeze(-1)\n    best_confidence = torch.max(predictions[..., 20], predictions[..., 25]).unsqueeze(\n        -1\n    )\n    converted_preds = torch.cat(\n        (predicted_class, best_confidence, converted_bboxes), dim=-1\n    )\n\n    return converted_preds\n\n\ndef cellboxes_to_boxes(out, S=7):\n    converted_pred = convert_cellboxes(out).reshape(out.shape[0], S * S, -1)\n    converted_pred[..., 0] = converted_pred[..., 0].long()\n    all_bboxes = []\n\n    for ex_idx in range(out.shape[0]):\n        bboxes = []\n\n        for bbox_idx in range(S * S):\n            bboxes.append([x.item() for x in converted_pred[ex_idx, bbox_idx, :]])\n        all_bboxes.append(bboxes)\n\n    return all_bboxes\n\ndef save_checkpoint(state, filename=\"my_checkpoint.pth.tar\"):\n    print(\"=> Saving checkpoint\")\n    torch.save(state, filename)\n\n\ndef load_checkpoint(checkpoint, model, optimizer):\n    print(\"=> Loading checkpoint\")\n    model.load_state_dict(checkpoint[\"state_dict\"])\n    optimizer.load_state_dict(checkpoint[\"optimizer\"])\n"
  },
  {
    "path": "ML/Pytorch/object_detection/YOLOv3/README.md",
    "content": "# YOLOv3 in PyTorch\nA quite minimal implementation of YOLOv3 in PyTorch spanning only around 800 lines of code related to YOLOv3 (not counting plot image helper functions etc). The repository has support for training and evaluation and complete with helper functions for inference. There is currently pretrained weights for Pascal-VOC with MS COCO coming up. \n\n## Installation\n\n### Clone and install requirements\n```bash\n$ git clone https://github.com/aladdinpersson/Machine-Learning-Collection\n$ cd ML/Pytorch/object_detection/YOLOv3/\n$ pip install requirements.txt\n```\n\n### Download pretrained weights on Pascal-VOC\nAvailable on Kaggle: [link](https://www.kaggle.com/dataset/1cf520aba05e023f2f80099ef497a8f3668516c39e6f673531e3e47407c46694)\n\n### Download Pascal VOC dataset\nDownload the preprocessed dataset from [link](https://www.kaggle.com/aladdinpersson/pascal-voc-dataset-used-in-yolov3-video). Just unzip this in the main directory.\n\n### Download MS COCO dataset\nDownload the preprocessed dataset from [link](https://www.kaggle.com/dataset/79abcc2659dc745fddfba1864438afb2fac3fabaa5f37daa8a51e36466db101e). Just unzip this in the main directory.\n\n### Training\nEdit the config.py file to match the setup you want to use. Then run train.py\n\n### Results\n| Model                   | mAP @ 50 IoU |\n| ----------------------- |:-----------------:|\n| YOLOv3 (Pascal VOC) \t  | 78.2              |\n| YOLOv3 (MS-COCO)        | Will probably train on this at some point      |\n\nThe model was evaluated with confidence 0.2 and IOU threshold 0.45 using NMS.\n\n### Things I'm unsure of\nFrom my understanding YOLOv3 labeled targets to include an anchor on each of the three different scales. This leads to a problem where we will have multiple \npredictions of the same object and I think the idea is that we rely more on NMS. The probability of an object in loss function should correspond to the IOU \nwith the ground truth box, this should also alleviate with multiple bounding boxes prediction for each ground truth (since obj score is lower). When loading the \noriginal weights for YOLOv3 I good mAP results but the object score, no object score seems to be a bit different because the accuracy on those aren't great.\nThis suggests there's something different with the original implementation, but not sure what it is exactly. The original YOLOv3 paper also used  BCE loss \nfor class labels since some datasets are multi-label, however I thought it was more natural to use CrossEntropy because both Pascal and COCO just have a single label. \n\n## YOLOv3 paper\nThe implementation is based on the following paper:\n\n### An Incremental Improvement \nby Joseph Redmon, Ali Farhadi\n\n#### Abstract\nWe present some updates to YOLO! We made a bunch of little design changes to make it better. We also trained this new network that’s pretty swell. It’s a little bigger than last time but more accurate. It’s still fast though, don’t worry. At 320 × 320 YOLOv3 runs in 22 ms at 28.2 mAP, as accurate as SSD but three times faster. When we look at the old .5 IOU mAP detection metric YOLOv3 is quite good. It achieves 57.9 AP50 in 51 ms on a Titan X, compared to 57.5 AP50 in 198 ms by RetinaNet, similar performance but 3.8× faster. As always, all the code is online at https://pjreddie.com/yolo/.\n\n```\n@article{yolov3,\n  title={YOLOv3: An Incremental Improvement},\n  author={Redmon, Joseph and Farhadi, Ali},\n  journal = {arXiv},\n  year={2018}\n}\n```\n"
  },
  {
    "path": "ML/Pytorch/object_detection/YOLOv3/config.py",
    "content": "import albumentations as A\nimport cv2\nimport torch\n\nfrom albumentations.pytorch import ToTensorV2\nfrom utils import seed_everything\n\nDATASET = 'PASCAL_VOC'\nDEVICE = \"cuda\" if torch.cuda.is_available() else \"cpu\"\n# seed_everything()  # If you want deterministic behavior\nNUM_WORKERS = 4\nBATCH_SIZE = 32\nIMAGE_SIZE = 416\nNUM_CLASSES = 20\nLEARNING_RATE = 1e-5\nWEIGHT_DECAY = 1e-4\nNUM_EPOCHS = 100\nCONF_THRESHOLD = 0.05\nMAP_IOU_THRESH = 0.5\nNMS_IOU_THRESH = 0.45\nS = [IMAGE_SIZE // 32, IMAGE_SIZE // 16, IMAGE_SIZE // 8]\nPIN_MEMORY = True\nLOAD_MODEL = True\nSAVE_MODEL = True\nCHECKPOINT_FILE = \"checkpoint.pth.tar\"\nIMG_DIR = DATASET + \"/images/\"\nLABEL_DIR = DATASET + \"/labels/\"\n\nANCHORS = [\n    [(0.28, 0.22), (0.38, 0.48), (0.9, 0.78)],\n    [(0.07, 0.15), (0.15, 0.11), (0.14, 0.29)],\n    [(0.02, 0.03), (0.04, 0.07), (0.08, 0.06)],\n]  # Note these have been rescaled to be between [0, 1]\n\n\nscale = 1.1\ntrain_transforms = A.Compose(\n    [\n        A.LongestMaxSize(max_size=int(IMAGE_SIZE * scale)),\n        A.PadIfNeeded(\n            min_height=int(IMAGE_SIZE * scale),\n            min_width=int(IMAGE_SIZE * scale),\n            border_mode=cv2.BORDER_CONSTANT,\n        ),\n        A.RandomCrop(width=IMAGE_SIZE, height=IMAGE_SIZE),\n        A.ColorJitter(brightness=0.6, contrast=0.6, saturation=0.6, hue=0.6, p=0.4),\n        A.OneOf(\n            [\n                A.ShiftScaleRotate(\n                    rotate_limit=20, p=0.5, border_mode=cv2.BORDER_CONSTANT\n                ),\n                A.IAAAffine(shear=15, p=0.5, mode=\"constant\"),\n            ],\n            p=1.0,\n        ),\n        A.HorizontalFlip(p=0.5),\n        A.Blur(p=0.1),\n        A.CLAHE(p=0.1),\n        A.Posterize(p=0.1),\n        A.ToGray(p=0.1),\n        A.ChannelShuffle(p=0.05),\n        A.Normalize(mean=[0, 0, 0], std=[1, 1, 1], max_pixel_value=255,),\n        ToTensorV2(),\n    ],\n    bbox_params=A.BboxParams(format=\"yolo\", min_visibility=0.4, label_fields=[],),\n)\ntest_transforms = A.Compose(\n    [\n        A.LongestMaxSize(max_size=IMAGE_SIZE),\n        A.PadIfNeeded(\n            min_height=IMAGE_SIZE, min_width=IMAGE_SIZE, border_mode=cv2.BORDER_CONSTANT\n        ),\n        A.Normalize(mean=[0, 0, 0], std=[1, 1, 1], max_pixel_value=255,),\n        ToTensorV2(),\n    ],\n    bbox_params=A.BboxParams(format=\"yolo\", min_visibility=0.4, label_fields=[]),\n)\n\nPASCAL_CLASSES = [\n    \"aeroplane\",\n    \"bicycle\",\n    \"bird\",\n    \"boat\",\n    \"bottle\",\n    \"bus\",\n    \"car\",\n    \"cat\",\n    \"chair\",\n    \"cow\",\n    \"diningtable\",\n    \"dog\",\n    \"horse\",\n    \"motorbike\",\n    \"person\",\n    \"pottedplant\",\n    \"sheep\",\n    \"sofa\",\n    \"train\",\n    \"tvmonitor\"\n]\n\nCOCO_LABELS = ['person',\n 'bicycle',\n 'car',\n 'motorcycle',\n 'airplane',\n 'bus',\n 'train',\n 'truck',\n 'boat',\n 'traffic light',\n 'fire hydrant',\n 'stop sign',\n 'parking meter',\n 'bench',\n 'bird',\n 'cat',\n 'dog',\n 'horse',\n 'sheep',\n 'cow',\n 'elephant',\n 'bear',\n 'zebra',\n 'giraffe',\n 'backpack',\n 'umbrella',\n 'handbag',\n 'tie',\n 'suitcase',\n 'frisbee',\n 'skis',\n 'snowboard',\n 'sports ball',\n 'kite',\n 'baseball bat',\n 'baseball glove',\n 'skateboard',\n 'surfboard',\n 'tennis racket',\n 'bottle',\n 'wine glass',\n 'cup',\n 'fork',\n 'knife',\n 'spoon',\n 'bowl',\n 'banana',\n 'apple',\n 'sandwich',\n 'orange',\n 'broccoli',\n 'carrot',\n 'hot dog',\n 'pizza',\n 'donut',\n 'cake',\n 'chair',\n 'couch',\n 'potted plant',\n 'bed',\n 'dining table',\n 'toilet',\n 'tv',\n 'laptop',\n 'mouse',\n 'remote',\n 'keyboard',\n 'cell phone',\n 'microwave',\n 'oven',\n 'toaster',\n 'sink',\n 'refrigerator',\n 'book',\n 'clock',\n 'vase',\n 'scissors',\n 'teddy bear',\n 'hair drier',\n 'toothbrush'\n]"
  },
  {
    "path": "ML/Pytorch/object_detection/YOLOv3/dataset.py",
    "content": "\"\"\"\nCreates a Pytorch dataset to load the Pascal VOC & MS COCO datasets\n\"\"\"\n\nimport config\nimport numpy as np\nimport os\nimport pandas as pd\nimport torch\n\nfrom PIL import Image, ImageFile\nfrom torch.utils.data import Dataset, DataLoader\nfrom utils import (\n    cells_to_bboxes,\n    iou_width_height as iou,\n    non_max_suppression as nms,\n    plot_image\n)\n\nImageFile.LOAD_TRUNCATED_IMAGES = True\n\nclass YOLODataset(Dataset):\n    def __init__(\n        self,\n        csv_file,\n        img_dir,\n        label_dir,\n        anchors,\n        image_size=416,\n        S=[13, 26, 52],\n        C=20,\n        transform=None,\n    ):\n        self.annotations = pd.read_csv(csv_file)\n        self.img_dir = img_dir\n        self.label_dir = label_dir\n        self.image_size = image_size\n        self.transform = transform\n        self.S = S\n        self.anchors = torch.tensor(anchors[0] + anchors[1] + anchors[2])  # for all 3 scales\n        self.num_anchors = self.anchors.shape[0]\n        self.num_anchors_per_scale = self.num_anchors // 3\n        self.C = C\n        self.ignore_iou_thresh = 0.5\n\n    def __len__(self):\n        return len(self.annotations)\n\n    def __getitem__(self, index):\n        label_path = os.path.join(self.label_dir, self.annotations.iloc[index, 1])\n        bboxes = np.roll(np.loadtxt(fname=label_path, delimiter=\" \", ndmin=2), 4, axis=1).tolist()\n        img_path = os.path.join(self.img_dir, self.annotations.iloc[index, 0])\n        image = np.array(Image.open(img_path).convert(\"RGB\"))\n\n        if self.transform:\n            augmentations = self.transform(image=image, bboxes=bboxes)\n            image = augmentations[\"image\"]\n            bboxes = augmentations[\"bboxes\"]\n\n        # Below assumes 3 scale predictions (as paper) and same num of anchors per scale\n        targets = [torch.zeros((self.num_anchors // 3, S, S, 6)) for S in self.S]\n        for box in bboxes:\n            iou_anchors = iou(torch.tensor(box[2:4]), self.anchors)\n            anchor_indices = iou_anchors.argsort(descending=True, dim=0)\n            x, y, width, height, class_label = box\n            has_anchor = [False] * 3  # each scale should have one anchor\n            for anchor_idx in anchor_indices:\n                scale_idx = anchor_idx // self.num_anchors_per_scale\n                anchor_on_scale = anchor_idx % self.num_anchors_per_scale\n                S = self.S[scale_idx]\n                i, j = int(S * y), int(S * x)  # which cell\n                anchor_taken = targets[scale_idx][anchor_on_scale, i, j, 0]\n                if not anchor_taken and not has_anchor[scale_idx]:\n                    targets[scale_idx][anchor_on_scale, i, j, 0] = 1\n                    x_cell, y_cell = S * x - j, S * y - i  # both between [0,1]\n                    width_cell, height_cell = (\n                        width * S,\n                        height * S,\n                    )  # can be greater than 1 since it's relative to cell\n                    box_coordinates = torch.tensor(\n                        [x_cell, y_cell, width_cell, height_cell]\n                    )\n                    targets[scale_idx][anchor_on_scale, i, j, 1:5] = box_coordinates\n                    targets[scale_idx][anchor_on_scale, i, j, 5] = int(class_label)\n                    has_anchor[scale_idx] = True\n\n                elif not anchor_taken and iou_anchors[anchor_idx] > self.ignore_iou_thresh:\n                    targets[scale_idx][anchor_on_scale, i, j, 0] = -1  # ignore prediction\n\n        return image, tuple(targets)\n\n\ndef test():\n    anchors = config.ANCHORS\n\n    transform = config.test_transforms\n\n    dataset = YOLODataset(\n        \"COCO/train.csv\",\n        \"COCO/images/images/\",\n        \"COCO/labels/labels_new/\",\n        S=[13, 26, 52],\n        anchors=anchors,\n        transform=transform,\n    )\n    S = [13, 26, 52]\n    scaled_anchors = torch.tensor(anchors) / (\n        1 / torch.tensor(S).unsqueeze(1).unsqueeze(1).repeat(1, 3, 2)\n    )\n    loader = DataLoader(dataset=dataset, batch_size=1, shuffle=True)\n    for x, y in loader:\n        boxes = []\n\n        for i in range(y[0].shape[1]):\n            anchor = scaled_anchors[i]\n            print(anchor.shape)\n            print(y[i].shape)\n            boxes += cells_to_bboxes(\n                y[i], is_preds=False, S=y[i].shape[2], anchors=anchor\n            )[0]\n        boxes = nms(boxes, iou_threshold=1, threshold=0.7, box_format=\"midpoint\")\n        print(boxes)\n        plot_image(x[0].permute(1, 2, 0).to(\"cpu\"), boxes)\n\n\nif __name__ == \"__main__\":\n    test()\n"
  },
  {
    "path": "ML/Pytorch/object_detection/YOLOv3/loss.py",
    "content": "\"\"\"\nImplementation of Yolo Loss Function similar to the one in Yolov3 paper,\nthe difference from what I can tell is I use CrossEntropy for the classes\ninstead of BinaryCrossEntropy.\n\"\"\"\nimport random\nimport torch\nimport torch.nn as nn\n\nfrom utils import intersection_over_union\n\n\nclass YoloLoss(nn.Module):\n    def __init__(self):\n        super().__init__()\n        self.mse = nn.MSELoss()\n        self.bce = nn.BCEWithLogitsLoss()\n        self.entropy = nn.CrossEntropyLoss()\n        self.sigmoid = nn.Sigmoid()\n\n        # Constants signifying how much to pay for each respective part of the loss\n        self.lambda_class = 1\n        self.lambda_noobj = 10\n        self.lambda_obj = 1\n        self.lambda_box = 10\n\n    def forward(self, predictions, target, anchors):\n        # Check where obj and noobj (we ignore if target == -1)\n        obj = target[..., 0] == 1  # in paper this is Iobj_i\n        noobj = target[..., 0] == 0  # in paper this is Inoobj_i\n\n        # ======================= #\n        #   FOR NO OBJECT LOSS    #\n        # ======================= #\n\n        no_object_loss = self.bce(\n            (predictions[..., 0:1][noobj]), (target[..., 0:1][noobj]),\n        )\n\n        # ==================== #\n        #   FOR OBJECT LOSS    #\n        # ==================== #\n\n        anchors = anchors.reshape(1, 3, 1, 1, 2)\n        box_preds = torch.cat([self.sigmoid(predictions[..., 1:3]), torch.exp(predictions[..., 3:5]) * anchors], dim=-1)\n        ious = intersection_over_union(box_preds[obj], target[..., 1:5][obj]).detach()\n        object_loss = self.mse(self.sigmoid(predictions[..., 0:1][obj]), ious * target[..., 0:1][obj])\n\n        # ======================== #\n        #   FOR BOX COORDINATES    #\n        # ======================== #\n\n        predictions[..., 1:3] = self.sigmoid(predictions[..., 1:3])  # x,y coordinates\n        target[..., 3:5] = torch.log(\n            (1e-16 + target[..., 3:5] / anchors)\n        )  # width, height coordinates\n        box_loss = self.mse(predictions[..., 1:5][obj], target[..., 1:5][obj])\n\n        # ================== #\n        #   FOR CLASS LOSS   #\n        # ================== #\n\n        class_loss = self.entropy(\n            (predictions[..., 5:][obj]), (target[..., 5][obj].long()),\n        )\n\n        #print(\"__________________________________\")\n        #print(self.lambda_box * box_loss)\n        #print(self.lambda_obj * object_loss)\n        #print(self.lambda_noobj * no_object_loss)\n        #print(self.lambda_class * class_loss)\n        #print(\"\\n\")\n\n        return (\n            self.lambda_box * box_loss\n            + self.lambda_obj * object_loss\n            + self.lambda_noobj * no_object_loss\n            + self.lambda_class * class_loss\n        )\n"
  },
  {
    "path": "ML/Pytorch/object_detection/YOLOv3/model.py",
    "content": "\"\"\"\nImplementation of YOLOv3 architecture\n\"\"\"\n\nimport torch\nimport torch.nn as nn\n\n\"\"\" \nInformation about architecture config:\nTuple is structured by (filters, kernel_size, stride) \nEvery conv is a same convolution. \nList is structured by \"B\" indicating a residual block followed by the number of repeats\n\"S\" is for scale prediction block and computing the yolo loss\n\"U\" is for upsampling the feature map and concatenating with a previous layer\n\"\"\"\nconfig = [\n    (32, 3, 1),\n    (64, 3, 2),\n    [\"B\", 1],\n    (128, 3, 2),\n    [\"B\", 2],\n    (256, 3, 2),\n    [\"B\", 8],\n    (512, 3, 2),\n    [\"B\", 8],\n    (1024, 3, 2),\n    [\"B\", 4],  # To this point is Darknet-53\n    (512, 1, 1),\n    (1024, 3, 1),\n    \"S\",\n    (256, 1, 1),\n    \"U\",\n    (256, 1, 1),\n    (512, 3, 1),\n    \"S\",\n    (128, 1, 1),\n    \"U\",\n    (128, 1, 1),\n    (256, 3, 1),\n    \"S\",\n]\n\n\nclass CNNBlock(nn.Module):\n    def __init__(self, in_channels, out_channels, bn_act=True, **kwargs):\n        super().__init__()\n        self.conv = nn.Conv2d(in_channels, out_channels, bias=not bn_act, **kwargs)\n        self.bn = nn.BatchNorm2d(out_channels)\n        self.leaky = nn.LeakyReLU(0.1)\n        self.use_bn_act = bn_act\n\n    def forward(self, x):\n        if self.use_bn_act:\n            return self.leaky(self.bn(self.conv(x)))\n        else:\n            return self.conv(x)\n\n\nclass ResidualBlock(nn.Module):\n    def __init__(self, channels, use_residual=True, num_repeats=1):\n        super().__init__()\n        self.layers = nn.ModuleList()\n        for repeat in range(num_repeats):\n            self.layers += [\n                nn.Sequential(\n                    CNNBlock(channels, channels // 2, kernel_size=1),\n                    CNNBlock(channels // 2, channels, kernel_size=3, padding=1),\n                )\n            ]\n\n        self.use_residual = use_residual\n        self.num_repeats = num_repeats\n\n    def forward(self, x):\n        for layer in self.layers:\n            if self.use_residual:\n                x = x + layer(x)\n            else:\n                x = layer(x)\n\n        return x\n\n\nclass ScalePrediction(nn.Module):\n    def __init__(self, in_channels, num_classes):\n        super().__init__()\n        self.pred = nn.Sequential(\n            CNNBlock(in_channels, 2 * in_channels, kernel_size=3, padding=1),\n            CNNBlock(\n                2 * in_channels, (num_classes + 5) * 3, bn_act=False, kernel_size=1\n            ),\n        )\n        self.num_classes = num_classes\n\n    def forward(self, x):\n        return (\n            self.pred(x)\n            .reshape(x.shape[0], 3, self.num_classes + 5, x.shape[2], x.shape[3])\n            .permute(0, 1, 3, 4, 2)\n        )\n\n\nclass YOLOv3(nn.Module):\n    def __init__(self, in_channels=3, num_classes=80):\n        super().__init__()\n        self.num_classes = num_classes\n        self.in_channels = in_channels\n        self.layers = self._create_conv_layers()\n\n    def forward(self, x):\n        outputs = []  # for each scale\n        route_connections = []\n        for layer in self.layers:\n            if isinstance(layer, ScalePrediction):\n                outputs.append(layer(x))\n                continue\n\n            x = layer(x)\n\n            if isinstance(layer, ResidualBlock) and layer.num_repeats == 8:\n                route_connections.append(x)\n\n            elif isinstance(layer, nn.Upsample):\n                x = torch.cat([x, route_connections[-1]], dim=1)\n                route_connections.pop()\n\n        return outputs\n\n    def _create_conv_layers(self):\n        layers = nn.ModuleList()\n        in_channels = self.in_channels\n\n        for module in config:\n            if isinstance(module, tuple):\n                out_channels, kernel_size, stride = module\n                layers.append(\n                    CNNBlock(\n                        in_channels,\n                        out_channels,\n                        kernel_size=kernel_size,\n                        stride=stride,\n                        padding=1 if kernel_size == 3 else 0,\n                    )\n                )\n                in_channels = out_channels\n\n            elif isinstance(module, list):\n                num_repeats = module[1]\n                layers.append(ResidualBlock(in_channels, num_repeats=num_repeats,))\n\n            elif isinstance(module, str):\n                if module == \"S\":\n                    layers += [\n                        ResidualBlock(in_channels, use_residual=False, num_repeats=1),\n                        CNNBlock(in_channels, in_channels // 2, kernel_size=1),\n                        ScalePrediction(in_channels // 2, num_classes=self.num_classes),\n                    ]\n                    in_channels = in_channels // 2\n\n                elif module == \"U\":\n                    layers.append(nn.Upsample(scale_factor=2),)\n                    in_channels = in_channels * 3\n\n        return layers\n\n\nif __name__ == \"__main__\":\n    num_classes = 20\n    IMAGE_SIZE = 416\n    model = YOLOv3(num_classes=num_classes)\n    x = torch.randn((2, 3, IMAGE_SIZE, IMAGE_SIZE))\n    out = model(x)\n    assert model(x)[0].shape == (2, 3, IMAGE_SIZE//32, IMAGE_SIZE//32, num_classes + 5)\n    assert model(x)[1].shape == (2, 3, IMAGE_SIZE//16, IMAGE_SIZE//16, num_classes + 5)\n    assert model(x)[2].shape == (2, 3, IMAGE_SIZE//8, IMAGE_SIZE//8, num_classes + 5)\n    print(\"Success!\")\n"
  },
  {
    "path": "ML/Pytorch/object_detection/YOLOv3/train.py",
    "content": "\"\"\"\nMain file for training Yolo model on Pascal VOC and COCO dataset\n\"\"\"\n\nimport config\nimport torch\nimport torch.optim as optim\n\nfrom model import YOLOv3\nfrom tqdm import tqdm\nfrom utils import (\n    mean_average_precision,\n    cells_to_bboxes,\n    get_evaluation_bboxes,\n    save_checkpoint,\n    load_checkpoint,\n    check_class_accuracy,\n    get_loaders,\n    plot_couple_examples\n)\nfrom loss import YoloLoss\nimport warnings\nwarnings.filterwarnings(\"ignore\")\n\ntorch.backends.cudnn.benchmark = True\n\n\ndef train_fn(train_loader, model, optimizer, loss_fn, scaler, scaled_anchors):\n    loop = tqdm(train_loader, leave=True)\n    losses = []\n    for batch_idx, (x, y) in enumerate(loop):\n        x = x.to(config.DEVICE)\n        y0, y1, y2 = (\n            y[0].to(config.DEVICE),\n            y[1].to(config.DEVICE),\n            y[2].to(config.DEVICE),\n        )\n\n        with torch.cuda.amp.autocast():\n            out = model(x)\n            loss = (\n                loss_fn(out[0], y0, scaled_anchors[0])\n                + loss_fn(out[1], y1, scaled_anchors[1])\n                + loss_fn(out[2], y2, scaled_anchors[2])\n            )\n\n        losses.append(loss.item())\n        optimizer.zero_grad()\n        scaler.scale(loss).backward()\n        scaler.step(optimizer)\n        scaler.update()\n\n        # update progress bar\n        mean_loss = sum(losses) / len(losses)\n        loop.set_postfix(loss=mean_loss)\n\n\n\ndef main():\n    model = YOLOv3(num_classes=config.NUM_CLASSES).to(config.DEVICE)\n    optimizer = optim.Adam(\n        model.parameters(), lr=config.LEARNING_RATE, weight_decay=config.WEIGHT_DECAY\n    )\n    loss_fn = YoloLoss()\n    scaler = torch.cuda.amp.GradScaler()\n\n    train_loader, test_loader, train_eval_loader = get_loaders(\n        train_csv_path=config.DATASET + \"/train.csv\", test_csv_path=config.DATASET + \"/test.csv\"\n    )\n\n    if config.LOAD_MODEL:\n        load_checkpoint(\n            config.CHECKPOINT_FILE, model, optimizer, config.LEARNING_RATE\n        )\n\n    scaled_anchors = (\n        torch.tensor(config.ANCHORS)\n        * torch.tensor(config.S).unsqueeze(1).unsqueeze(1).repeat(1, 3, 2)\n    ).to(config.DEVICE)\n\n    for epoch in range(config.NUM_EPOCHS):\n        #plot_couple_examples(model, test_loader, 0.6, 0.5, scaled_anchors)\n        train_fn(train_loader, model, optimizer, loss_fn, scaler, scaled_anchors)\n\n        #if config.SAVE_MODEL:\n        #    save_checkpoint(model, optimizer, filename=f\"checkpoint.pth.tar\")\n\n        #print(f\"Currently epoch {epoch}\")\n        #print(\"On Train Eval loader:\")\n        #print(\"On Train loader:\")\n        #check_class_accuracy(model, train_loader, threshold=config.CONF_THRESHOLD)\n\n        if epoch > 0 and epoch % 3 == 0:\n            check_class_accuracy(model, test_loader, threshold=config.CONF_THRESHOLD)\n            pred_boxes, true_boxes = get_evaluation_bboxes(\n                test_loader,\n                model,\n                iou_threshold=config.NMS_IOU_THRESH,\n                anchors=config.ANCHORS,\n                threshold=config.CONF_THRESHOLD,\n            )\n            mapval = mean_average_precision(\n                pred_boxes,\n                true_boxes,\n                iou_threshold=config.MAP_IOU_THRESH,\n                box_format=\"midpoint\",\n                num_classes=config.NUM_CLASSES,\n            )\n            print(f\"MAP: {mapval.item()}\")\n            model.train()\n\n\nif __name__ == \"__main__\":\n    main()\n"
  },
  {
    "path": "ML/Pytorch/object_detection/YOLOv3/utils.py",
    "content": "import config\nimport matplotlib.pyplot as plt\nimport matplotlib.patches as patches\nimport numpy as np\nimport os\nimport random\nimport torch\n\nfrom collections import Counter\nfrom torch.utils.data import DataLoader\nfrom tqdm import tqdm\n\n\ndef iou_width_height(boxes1, boxes2):\n    \"\"\"\n    Parameters:\n        boxes1 (tensor): width and height of the first bounding boxes\n        boxes2 (tensor): width and height of the second bounding boxes\n    Returns:\n        tensor: Intersection over union of the corresponding boxes\n    \"\"\"\n    intersection = torch.min(boxes1[..., 0], boxes2[..., 0]) * torch.min(\n        boxes1[..., 1], boxes2[..., 1]\n    )\n    union = (\n        boxes1[..., 0] * boxes1[..., 1] + boxes2[..., 0] * boxes2[..., 1] - intersection\n    )\n    return intersection / union\n\n\ndef intersection_over_union(boxes_preds, boxes_labels, box_format=\"midpoint\"):\n    \"\"\"\n    Video explanation of this function:\n    https://youtu.be/XXYG5ZWtjj0\n\n    This function calculates intersection over union (iou) given pred boxes\n    and target boxes.\n\n    Parameters:\n        boxes_preds (tensor): Predictions of Bounding Boxes (BATCH_SIZE, 4)\n        boxes_labels (tensor): Correct labels of Bounding Boxes (BATCH_SIZE, 4)\n        box_format (str): midpoint/corners, if boxes (x,y,w,h) or (x1,y1,x2,y2)\n\n    Returns:\n        tensor: Intersection over union for all examples\n    \"\"\"\n\n    if box_format == \"midpoint\":\n        box1_x1 = boxes_preds[..., 0:1] - boxes_preds[..., 2:3] / 2\n        box1_y1 = boxes_preds[..., 1:2] - boxes_preds[..., 3:4] / 2\n        box1_x2 = boxes_preds[..., 0:1] + boxes_preds[..., 2:3] / 2\n        box1_y2 = boxes_preds[..., 1:2] + boxes_preds[..., 3:4] / 2\n        box2_x1 = boxes_labels[..., 0:1] - boxes_labels[..., 2:3] / 2\n        box2_y1 = boxes_labels[..., 1:2] - boxes_labels[..., 3:4] / 2\n        box2_x2 = boxes_labels[..., 0:1] + boxes_labels[..., 2:3] / 2\n        box2_y2 = boxes_labels[..., 1:2] + boxes_labels[..., 3:4] / 2\n\n    if box_format == \"corners\":\n        box1_x1 = boxes_preds[..., 0:1]\n        box1_y1 = boxes_preds[..., 1:2]\n        box1_x2 = boxes_preds[..., 2:3]\n        box1_y2 = boxes_preds[..., 3:4]\n        box2_x1 = boxes_labels[..., 0:1]\n        box2_y1 = boxes_labels[..., 1:2]\n        box2_x2 = boxes_labels[..., 2:3]\n        box2_y2 = boxes_labels[..., 3:4]\n\n    x1 = torch.max(box1_x1, box2_x1)\n    y1 = torch.max(box1_y1, box2_y1)\n    x2 = torch.min(box1_x2, box2_x2)\n    y2 = torch.min(box1_y2, box2_y2)\n\n    intersection = (x2 - x1).clamp(0) * (y2 - y1).clamp(0)\n    box1_area = abs((box1_x2 - box1_x1) * (box1_y2 - box1_y1))\n    box2_area = abs((box2_x2 - box2_x1) * (box2_y2 - box2_y1))\n\n    return intersection / (box1_area + box2_area - intersection + 1e-6)\n\n\ndef non_max_suppression(bboxes, iou_threshold, threshold, box_format=\"corners\"):\n    \"\"\"\n    Video explanation of this function:\n    https://youtu.be/YDkjWEN8jNA\n\n    Does Non Max Suppression given bboxes\n\n    Parameters:\n        bboxes (list): list of lists containing all bboxes with each bboxes\n        specified as [class_pred, prob_score, x1, y1, x2, y2]\n        iou_threshold (float): threshold where predicted bboxes is correct\n        threshold (float): threshold to remove predicted bboxes (independent of IoU)\n        box_format (str): \"midpoint\" or \"corners\" used to specify bboxes\n\n    Returns:\n        list: bboxes after performing NMS given a specific IoU threshold\n    \"\"\"\n\n    assert type(bboxes) == list\n\n    bboxes = [box for box in bboxes if box[1] > threshold]\n    bboxes = sorted(bboxes, key=lambda x: x[1], reverse=True)\n    bboxes_after_nms = []\n\n    while bboxes:\n        chosen_box = bboxes.pop(0)\n\n        bboxes = [\n            box\n            for box in bboxes\n            if box[0] != chosen_box[0]\n            or intersection_over_union(\n                torch.tensor(chosen_box[2:]),\n                torch.tensor(box[2:]),\n                box_format=box_format,\n            )\n            < iou_threshold\n        ]\n\n        bboxes_after_nms.append(chosen_box)\n\n    return bboxes_after_nms\n\n\ndef mean_average_precision(\n    pred_boxes, true_boxes, iou_threshold=0.5, box_format=\"midpoint\", num_classes=20\n):\n    \"\"\"\n    Video explanation of this function:\n    https://youtu.be/FppOzcDvaDI\n\n    This function calculates mean average precision (mAP)\n\n    Parameters:\n        pred_boxes (list): list of lists containing all bboxes with each bboxes\n        specified as [train_idx, class_prediction, prob_score, x1, y1, x2, y2]\n        true_boxes (list): Similar as pred_boxes except all the correct ones\n        iou_threshold (float): threshold where predicted bboxes is correct\n        box_format (str): \"midpoint\" or \"corners\" used to specify bboxes\n        num_classes (int): number of classes\n\n    Returns:\n        float: mAP value across all classes given a specific IoU threshold\n    \"\"\"\n\n    # list storing all AP for respective classes\n    average_precisions = []\n\n    # used for numerical stability later on\n    epsilon = 1e-6\n\n    for c in range(num_classes):\n        detections = []\n        ground_truths = []\n\n        # Go through all predictions and targets,\n        # and only add the ones that belong to the\n        # current class c\n        for detection in pred_boxes:\n            if detection[1] == c:\n                detections.append(detection)\n\n        for true_box in true_boxes:\n            if true_box[1] == c:\n                ground_truths.append(true_box)\n\n        # find the amount of bboxes for each training example\n        # Counter here finds how many ground truth bboxes we get\n        # for each training example, so let's say img 0 has 3,\n        # img 1 has 5 then we will obtain a dictionary with:\n        # amount_bboxes = {0:3, 1:5}\n        amount_bboxes = Counter([gt[0] for gt in ground_truths])\n\n        # We then go through each key, val in this dictionary\n        # and convert to the following (w.r.t same example):\n        # ammount_bboxes = {0:torch.tensor[0,0,0], 1:torch.tensor[0,0,0,0,0]}\n        for key, val in amount_bboxes.items():\n            amount_bboxes[key] = torch.zeros(val)\n\n        # sort by box probabilities which is index 2\n        detections.sort(key=lambda x: x[2], reverse=True)\n        TP = torch.zeros((len(detections)))\n        FP = torch.zeros((len(detections)))\n        total_true_bboxes = len(ground_truths)\n\n        # If none exists for this class then we can safely skip\n        if total_true_bboxes == 0:\n            continue\n\n        for detection_idx, detection in enumerate(detections):\n            # Only take out the ground_truths that have the same\n            # training idx as detection\n            ground_truth_img = [\n                bbox for bbox in ground_truths if bbox[0] == detection[0]\n            ]\n\n            num_gts = len(ground_truth_img)\n            best_iou = 0\n\n            for idx, gt in enumerate(ground_truth_img):\n                iou = intersection_over_union(\n                    torch.tensor(detection[3:]),\n                    torch.tensor(gt[3:]),\n                    box_format=box_format,\n                )\n\n                if iou > best_iou:\n                    best_iou = iou\n                    best_gt_idx = idx\n\n            if best_iou > iou_threshold:\n                # only detect ground truth detection once\n                if amount_bboxes[detection[0]][best_gt_idx] == 0:\n                    # true positive and add this bounding box to seen\n                    TP[detection_idx] = 1\n                    amount_bboxes[detection[0]][best_gt_idx] = 1\n                else:\n                    FP[detection_idx] = 1\n\n            # if IOU is lower then the detection is a false positive\n            else:\n                FP[detection_idx] = 1\n\n        TP_cumsum = torch.cumsum(TP, dim=0)\n        FP_cumsum = torch.cumsum(FP, dim=0)\n        recalls = TP_cumsum / (total_true_bboxes + epsilon)\n        precisions = TP_cumsum / (TP_cumsum + FP_cumsum + epsilon)\n        precisions = torch.cat((torch.tensor([1]), precisions))\n        recalls = torch.cat((torch.tensor([0]), recalls))\n        # torch.trapz for numerical integration\n        average_precisions.append(torch.trapz(precisions, recalls))\n\n    return sum(average_precisions) / len(average_precisions)\n\n\ndef plot_image(image, boxes):\n    \"\"\"Plots predicted bounding boxes on the image\"\"\"\n    cmap = plt.get_cmap(\"tab20b\")\n    class_labels = config.COCO_LABELS if config.DATASET=='COCO' else config.PASCAL_CLASSES\n    colors = [cmap(i) for i in np.linspace(0, 1, len(class_labels))]\n    im = np.array(image)\n    height, width, _ = im.shape\n\n    # Create figure and axes\n    fig, ax = plt.subplots(1)\n    # Display the image\n    ax.imshow(im)\n\n    # box[0] is x midpoint, box[2] is width\n    # box[1] is y midpoint, box[3] is height\n\n    # Create a Rectangle patch\n    for box in boxes:\n        assert len(box) == 6, \"box should contain class pred, confidence, x, y, width, height\"\n        class_pred = box[0]\n        box = box[2:]\n        upper_left_x = box[0] - box[2] / 2\n        upper_left_y = box[1] - box[3] / 2\n        rect = patches.Rectangle(\n            (upper_left_x * width, upper_left_y * height),\n            box[2] * width,\n            box[3] * height,\n            linewidth=2,\n            edgecolor=colors[int(class_pred)],\n            facecolor=\"none\",\n        )\n        # Add the patch to the Axes\n        ax.add_patch(rect)\n        plt.text(\n            upper_left_x * width,\n            upper_left_y * height,\n            s=class_labels[int(class_pred)],\n            color=\"white\",\n            verticalalignment=\"top\",\n            bbox={\"color\": colors[int(class_pred)], \"pad\": 0},\n        )\n\n    plt.show()\n\n\ndef get_evaluation_bboxes(\n    loader,\n    model,\n    iou_threshold,\n    anchors,\n    threshold,\n    box_format=\"midpoint\",\n    device=\"cuda\",\n):\n    # make sure model is in eval before get bboxes\n    model.eval()\n    train_idx = 0\n    all_pred_boxes = []\n    all_true_boxes = []\n    for batch_idx, (x, labels) in enumerate(tqdm(loader)):\n        x = x.to(device)\n\n        with torch.no_grad():\n            predictions = model(x)\n\n        batch_size = x.shape[0]\n        bboxes = [[] for _ in range(batch_size)]\n        for i in range(3):\n            S = predictions[i].shape[2]\n            anchor = torch.tensor([*anchors[i]]).to(device) * S\n            boxes_scale_i = cells_to_bboxes(\n                predictions[i], anchor, S=S, is_preds=True\n            )\n            for idx, (box) in enumerate(boxes_scale_i):\n                bboxes[idx] += box\n\n        # we just want one bbox for each label, not one for each scale\n        true_bboxes = cells_to_bboxes(\n            labels[2], anchor, S=S, is_preds=False\n        )\n\n        for idx in range(batch_size):\n            nms_boxes = non_max_suppression(\n                bboxes[idx],\n                iou_threshold=iou_threshold,\n                threshold=threshold,\n                box_format=box_format,\n            )\n\n            for nms_box in nms_boxes:\n                all_pred_boxes.append([train_idx] + nms_box)\n\n            for box in true_bboxes[idx]:\n                if box[1] > threshold:\n                    all_true_boxes.append([train_idx] + box)\n\n            train_idx += 1\n\n    model.train()\n    return all_pred_boxes, all_true_boxes\n\n\ndef cells_to_bboxes(predictions, anchors, S, is_preds=True):\n    \"\"\"\n    Scales the predictions coming from the model to\n    be relative to the entire image such that they for example later\n    can be plotted or.\n    INPUT:\n    predictions: tensor of size (N, 3, S, S, num_classes+5)\n    anchors: the anchors used for the predictions\n    S: the number of cells the image is divided in on the width (and height)\n    is_preds: whether the input is predictions or the true bounding boxes\n    OUTPUT:\n    converted_bboxes: the converted boxes of sizes (N, num_anchors, S, S, 1+5) with class index,\n                      object score, bounding box coordinates\n    \"\"\"\n    BATCH_SIZE = predictions.shape[0]\n    num_anchors = len(anchors)\n    box_predictions = predictions[..., 1:5]\n    if is_preds:\n        anchors = anchors.reshape(1, len(anchors), 1, 1, 2)\n        box_predictions[..., 0:2] = torch.sigmoid(box_predictions[..., 0:2])\n        box_predictions[..., 2:] = torch.exp(box_predictions[..., 2:]) * anchors\n        scores = torch.sigmoid(predictions[..., 0:1])\n        best_class = torch.argmax(predictions[..., 5:], dim=-1).unsqueeze(-1)\n    else:\n        scores = predictions[..., 0:1]\n        best_class = predictions[..., 5:6]\n\n    cell_indices = (\n        torch.arange(S)\n        .repeat(predictions.shape[0], 3, S, 1)\n        .unsqueeze(-1)\n        .to(predictions.device)\n    )\n    x = 1 / S * (box_predictions[..., 0:1] + cell_indices)\n    y = 1 / S * (box_predictions[..., 1:2] + cell_indices.permute(0, 1, 3, 2, 4))\n    w_h = 1 / S * box_predictions[..., 2:4]\n    converted_bboxes = torch.cat((best_class, scores, x, y, w_h), dim=-1).reshape(BATCH_SIZE, num_anchors * S * S, 6)\n    return converted_bboxes.tolist()\n\ndef check_class_accuracy(model, loader, threshold):\n    model.eval()\n    tot_class_preds, correct_class = 0, 0\n    tot_noobj, correct_noobj = 0, 0\n    tot_obj, correct_obj = 0, 0\n\n    for idx, (x, y) in enumerate(tqdm(loader)):\n        x = x.to(config.DEVICE)\n        with torch.no_grad():\n            out = model(x)\n\n        for i in range(3):\n            y[i] = y[i].to(config.DEVICE)\n            obj = y[i][..., 0] == 1 # in paper this is Iobj_i\n            noobj = y[i][..., 0] == 0  # in paper this is Iobj_i\n\n            correct_class += torch.sum(\n                torch.argmax(out[i][..., 5:][obj], dim=-1) == y[i][..., 5][obj]\n            )\n            tot_class_preds += torch.sum(obj)\n\n            obj_preds = torch.sigmoid(out[i][..., 0]) > threshold\n            correct_obj += torch.sum(obj_preds[obj] == y[i][..., 0][obj])\n            tot_obj += torch.sum(obj)\n            correct_noobj += torch.sum(obj_preds[noobj] == y[i][..., 0][noobj])\n            tot_noobj += torch.sum(noobj)\n\n    print(f\"Class accuracy is: {(correct_class/(tot_class_preds+1e-16))*100:2f}%\")\n    print(f\"No obj accuracy is: {(correct_noobj/(tot_noobj+1e-16))*100:2f}%\")\n    print(f\"Obj accuracy is: {(correct_obj/(tot_obj+1e-16))*100:2f}%\")\n    model.train()\n\n\ndef get_mean_std(loader):\n    # var[X] = E[X**2] - E[X]**2\n    channels_sum, channels_sqrd_sum, num_batches = 0, 0, 0\n\n    for data, _ in tqdm(loader):\n        channels_sum += torch.mean(data, dim=[0, 2, 3])\n        channels_sqrd_sum += torch.mean(data ** 2, dim=[0, 2, 3])\n        num_batches += 1\n\n    mean = channels_sum / num_batches\n    std = (channels_sqrd_sum / num_batches - mean ** 2) ** 0.5\n\n    return mean, std\n\n\ndef save_checkpoint(model, optimizer, filename=\"my_checkpoint.pth.tar\"):\n    print(\"=> Saving checkpoint\")\n    checkpoint = {\n        \"state_dict\": model.state_dict(),\n        \"optimizer\": optimizer.state_dict(),\n    }\n    torch.save(checkpoint, filename)\n\n\ndef load_checkpoint(checkpoint_file, model, optimizer, lr):\n    print(\"=> Loading checkpoint\")\n    checkpoint = torch.load(checkpoint_file, map_location=config.DEVICE)\n    model.load_state_dict(checkpoint[\"state_dict\"])\n    optimizer.load_state_dict(checkpoint[\"optimizer\"])\n\n    # If we don't do this then it will just have learning rate of old checkpoint\n    # and it will lead to many hours of debugging \\:\n    for param_group in optimizer.param_groups:\n        param_group[\"lr\"] = lr\n\n\ndef get_loaders(train_csv_path, test_csv_path):\n    from dataset import YOLODataset\n\n    IMAGE_SIZE = config.IMAGE_SIZE\n    train_dataset = YOLODataset(\n        train_csv_path,\n        transform=config.train_transforms,\n        S=[IMAGE_SIZE // 32, IMAGE_SIZE // 16, IMAGE_SIZE // 8],\n        img_dir=config.IMG_DIR,\n        label_dir=config.LABEL_DIR,\n        anchors=config.ANCHORS,\n    )\n    test_dataset = YOLODataset(\n        test_csv_path,\n        transform=config.test_transforms,\n        S=[IMAGE_SIZE // 32, IMAGE_SIZE // 16, IMAGE_SIZE // 8],\n        img_dir=config.IMG_DIR,\n        label_dir=config.LABEL_DIR,\n        anchors=config.ANCHORS,\n    )\n    train_loader = DataLoader(\n        dataset=train_dataset,\n        batch_size=config.BATCH_SIZE,\n        num_workers=config.NUM_WORKERS,\n        pin_memory=config.PIN_MEMORY,\n        shuffle=True,\n        drop_last=False,\n    )\n    test_loader = DataLoader(\n        dataset=test_dataset,\n        batch_size=config.BATCH_SIZE,\n        num_workers=config.NUM_WORKERS,\n        pin_memory=config.PIN_MEMORY,\n        shuffle=False,\n        drop_last=False,\n    )\n\n    train_eval_dataset = YOLODataset(\n        train_csv_path,\n        transform=config.test_transforms,\n        S=[IMAGE_SIZE // 32, IMAGE_SIZE // 16, IMAGE_SIZE // 8],\n        img_dir=config.IMG_DIR,\n        label_dir=config.LABEL_DIR,\n        anchors=config.ANCHORS,\n    )\n    train_eval_loader = DataLoader(\n        dataset=train_eval_dataset,\n        batch_size=config.BATCH_SIZE,\n        num_workers=config.NUM_WORKERS,\n        pin_memory=config.PIN_MEMORY,\n        shuffle=False,\n        drop_last=False,\n    )\n\n    return train_loader, test_loader, train_eval_loader\n\ndef plot_couple_examples(model, loader, thresh, iou_thresh, anchors):\n    model.eval()\n    x, y = next(iter(loader))\n    x = x.to(\"cuda\")\n    with torch.no_grad():\n        out = model(x)\n        bboxes = [[] for _ in range(x.shape[0])]\n        for i in range(3):\n            batch_size, A, S, _, _ = out[i].shape\n            anchor = anchors[i]\n            boxes_scale_i = cells_to_bboxes(\n                out[i], anchor, S=S, is_preds=True\n            )\n            for idx, (box) in enumerate(boxes_scale_i):\n                bboxes[idx] += box\n\n        model.train()\n\n    for i in range(batch_size):\n        nms_boxes = non_max_suppression(\n            bboxes[i], iou_threshold=iou_thresh, threshold=thresh, box_format=\"midpoint\",\n        )\n        plot_image(x[i].permute(1,2,0).detach().cpu(), nms_boxes)\n\n\n\ndef seed_everything(seed=42):\n    os.environ['PYTHONHASHSEED'] = str(seed)\n    random.seed(seed)\n    np.random.seed(seed)\n    torch.manual_seed(seed)\n    torch.cuda.manual_seed(seed)\n    torch.cuda.manual_seed_all(seed)\n    torch.backends.cudnn.deterministic = True\n    torch.backends.cudnn.benchmark = False\n"
  },
  {
    "path": "ML/Pytorch/object_detection/metrics/iou.py",
    "content": "import torch\n\n\ndef intersection_over_union(boxes_preds, boxes_labels, box_format=\"midpoint\"):\n    \"\"\"\n    Calculates intersection over union\n\n    Parameters:\n        boxes_preds (tensor): Predictions of Bounding Boxes (BATCH_SIZE, 4)\n        boxes_labels (tensor): Correct Labels of Boxes (BATCH_SIZE, 4)\n        box_format (str): midpoint/corners, if boxes (x,y,w,h) or (x1,y1,x2,y2)\n\n    Returns:\n        tensor: Intersection over union for all examples\n    \"\"\"\n\n    # Slicing idx:idx+1 in order to keep tensor dimensionality\n    # Doing ... in indexing if there would be additional dimensions\n    # Like for Yolo algorithm which would have (N, S, S, 4) in shape\n    if box_format == \"midpoint\":\n        box1_x1 = boxes_preds[..., 0:1] - boxes_preds[..., 2:3] / 2\n        box1_y1 = boxes_preds[..., 1:2] - boxes_preds[..., 3:4] / 2\n        box1_x2 = boxes_preds[..., 0:1] + boxes_preds[..., 2:3] / 2\n        box1_y2 = boxes_preds[..., 1:2] + boxes_preds[..., 3:4] / 2\n        box2_x1 = boxes_labels[..., 0:1] - boxes_labels[..., 2:3] / 2\n        box2_y1 = boxes_labels[..., 1:2] - boxes_labels[..., 3:4] / 2\n        box2_x2 = boxes_labels[..., 0:1] + boxes_labels[..., 2:3] / 2\n        box2_y2 = boxes_labels[..., 1:2] + boxes_labels[..., 3:4] / 2\n\n    elif box_format == \"corners\":\n        box1_x1 = boxes_preds[..., 0:1]\n        box1_y1 = boxes_preds[..., 1:2]\n        box1_x2 = boxes_preds[..., 2:3]\n        box1_y2 = boxes_preds[..., 3:4]\n        box2_x1 = boxes_labels[..., 0:1]\n        box2_y1 = boxes_labels[..., 1:2]\n        box2_x2 = boxes_labels[..., 2:3]\n        box2_y2 = boxes_labels[..., 3:4]\n\n    x1 = torch.max(box1_x1, box2_x1)\n    y1 = torch.max(box1_y1, box2_y1)\n    x2 = torch.min(box1_x2, box2_x2)\n    y2 = torch.min(box1_y2, box2_y2)\n\n    # Need clamp(0) in case they do not intersect, then we want intersection to be 0\n    intersection = (x2 - x1).clamp(0) * (y2 - y1).clamp(0)\n    box1_area = abs((box1_x2 - box1_x1) * (box1_y2 - box1_y1))\n    box2_area = abs((box2_x2 - box2_x1) * (box2_y2 - box2_y1))\n\n    return intersection / (box1_area + box2_area - intersection + 1e-6)"
  },
  {
    "path": "ML/Pytorch/object_detection/metrics/mean_avg_precision.py",
    "content": "import torch\nfrom collections import Counter\n\nfrom iou import intersection_over_union\n\ndef mean_average_precision(\n    pred_boxes, true_boxes, iou_threshold=0.5, box_format=\"midpoint\", num_classes=20\n):\n    \"\"\"\n    Calculates mean average precision \n\n    Parameters:\n        pred_boxes (list): list of lists containing all bboxes with each bboxes\n        specified as [train_idx, class_prediction, prob_score, x1, y1, x2, y2]\n        true_boxes (list): Similar as pred_boxes except all the correct ones \n        iou_threshold (float): threshold where predicted bboxes is correct\n        box_format (str): \"midpoint\" or \"corners\" used to specify bboxes\n        num_classes (int): number of classes\n\n    Returns:\n        float: mAP value across all classes given a specific IoU threshold \n    \"\"\"\n\n    # list storing all AP for respective classes\n    average_precisions = []\n\n    # used for numerical stability later on\n    epsilon = 1e-6\n\n    for c in range(num_classes):\n        detections = []\n        ground_truths = []\n\n        # Go through all predictions and targets,\n        # and only add the ones that belong to the\n        # current class c\n        for detection in pred_boxes:\n            if detection[1] == c:\n                detections.append(detection)\n\n        for true_box in true_boxes:\n            if true_box[1] == c:\n                ground_truths.append(true_box)\n\n        # find the amount of bboxes for each training example\n        # Counter here finds how many ground truth bboxes we get\n        # for each training example, so let's say img 0 has 3,\n        # img 1 has 5 then we will obtain a dictionary with:\n        # amount_bboxes = {0:3, 1:5}\n        amount_bboxes = Counter([gt[0] for gt in ground_truths])\n\n        # We then go through each key, val in this dictionary\n        # and convert to the following (w.r.t same example):\n        # ammount_bboxes = {0:torch.tensor[0,0,0], 1:torch.tensor[0,0,0,0,0]}\n        for key, val in amount_bboxes.items():\n            amount_bboxes[key] = torch.zeros(val)\n\n        # sort by box probabilities which is index 2\n        detections.sort(key=lambda x: x[2], reverse=True)\n        TP = torch.zeros((len(detections)))\n        FP = torch.zeros((len(detections)))\n        total_true_bboxes = len(ground_truths)\n        \n        # If none exists for this class then we can safely skip\n        if total_true_bboxes == 0:\n            continue\n\n        for detection_idx, detection in enumerate(detections):\n            # Only take out the ground_truths that have the same\n            # training idx as detection\n            ground_truth_img = [\n                bbox for bbox in ground_truths if bbox[0] == detection[0]\n            ]\n\n            num_gts = len(ground_truth_img)\n            best_iou = 0\n\n            for idx, gt in enumerate(ground_truth_img):\n                iou = intersection_over_union(\n                    torch.tensor(detection[3:]),\n                    torch.tensor(gt[3:]),\n                    box_format=box_format,\n                )\n\n                if iou > best_iou:\n                    best_iou = iou\n                    best_gt_idx = idx\n\n            if best_iou > iou_threshold:\n                # only detect ground truth detection once\n                if amount_bboxes[detection[0]][best_gt_idx] == 0:\n                    # true positive and add this bounding box to seen\n                    TP[detection_idx] = 1\n                    amount_bboxes[detection[0]][best_gt_idx] = 1\n                else:\n                    FP[detection_idx] = 1\n\n            # if IOU is lower then the detection is a false positive\n            else:\n                FP[detection_idx] = 1\n\n        TP_cumsum = torch.cumsum(TP, dim=0)\n        FP_cumsum = torch.cumsum(FP, dim=0)\n        recalls = TP_cumsum / (total_true_bboxes + epsilon)\n        precisions = TP_cumsum / (TP_cumsum + FP_cumsum + epsilon)\n        precisions = torch.cat((torch.tensor([1]), precisions))\n        recalls = torch.cat((torch.tensor([0]), recalls))\n        # torch.trapz for numerical integration\n        average_precisions.append(torch.trapz(precisions, recalls))\n\n    return sum(average_precisions) / len(average_precisions)\n\n"
  },
  {
    "path": "ML/Pytorch/object_detection/metrics/nms.py",
    "content": "import torch\nfrom iou import intersection_over_union\n\ndef nms(bboxes, iou_threshold, threshold, box_format=\"corners\"):\n    \"\"\"\n    Does Non Max Suppression given bboxes\n\n    Parameters:\n        bboxes (list): list of lists containing all bboxes with each bboxes\n        specified as [class_pred, prob_score, x1, y1, x2, y2]\n        iou_threshold (float): threshold where predicted bboxes is correct\n        threshold (float): threshold to remove predicted bboxes (independent of IoU) \n        box_format (str): \"midpoint\" or \"corners\" used to specify bboxes\n\n    Returns:\n        list: bboxes after performing NMS given a specific IoU threshold\n    \"\"\"\n\n    assert type(bboxes) == list\n\n    bboxes = [box for box in bboxes if box[1] > threshold]\n    bboxes = sorted(bboxes, key=lambda x: x[1], reverse=True)\n    bboxes_after_nms = []\n\n    while bboxes:\n        chosen_box = bboxes.pop(0)\n\n        bboxes = [\n            box\n            for box in bboxes\n            if box[0] != chosen_box[0]\n            or intersection_over_union(\n                torch.tensor(chosen_box[2:]),\n                torch.tensor(box[2:]),\n                box_format=box_format,\n            )\n            < iou_threshold\n        ]\n\n        bboxes_after_nms.append(chosen_box)\n\n    return bboxes_after_nms\n"
  },
  {
    "path": "ML/Pytorch/others/default_setups/CV - Image Classification/augmentations.py",
    "content": "import random\nimport PIL, PIL.ImageOps, PIL.ImageEnhance, PIL.ImageDraw\nimport numpy as np\nimport torch\nfrom PIL import Image\n\ndef ShearX(img, v):  # [-0.3, 0.3]\n    assert -0.3 <= v <= 0.3\n    if random.random() > 0.5:\n        v = -v\n    return img.transform(img.size, PIL.Image.AFFINE, (1, v, 0, 0, 1, 0))\n\n\ndef ShearY(img, v):  # [-0.3, 0.3]\n    assert -0.3 <= v <= 0.3\n    if random.random() > 0.5:\n        v = -v\n    return img.transform(img.size, PIL.Image.AFFINE, (1, 0, 0, v, 1, 0))\n\n\ndef TranslateX(img, v):  # [-150, 150] => percentage: [-0.45, 0.45]\n    assert -0.45 <= v <= 0.45\n    if random.random() > 0.5:\n        v = -v\n    v = v * img.size[0]\n    return img.transform(img.size, PIL.Image.AFFINE, (1, 0, v, 0, 1, 0))\n\n\ndef TranslateXabs(img, v):  # [-150, 150] => percentage: [-0.45, 0.45]\n    assert 0 <= v\n    if random.random() > 0.5:\n        v = -v\n    return img.transform(img.size, PIL.Image.AFFINE, (1, 0, v, 0, 1, 0))\n\n\ndef TranslateY(img, v):  # [-150, 150] => percentage: [-0.45, 0.45]\n    assert -0.45 <= v <= 0.45\n    if random.random() > 0.5:\n        v = -v\n    v = v * img.size[1]\n    return img.transform(img.size, PIL.Image.AFFINE, (1, 0, 0, 0, 1, v))\n\n\ndef TranslateYabs(img, v):  # [-150, 150] => percentage: [-0.45, 0.45]\n    assert 0 <= v\n    if random.random() > 0.5:\n        v = -v\n    return img.transform(img.size, PIL.Image.AFFINE, (1, 0, 0, 0, 1, v))\n\n\ndef Rotate(img, v):  # [-30, 30]\n    assert -30 <= v <= 30\n    if random.random() > 0.5:\n        v = -v\n    return img.rotate(v)\n\n\ndef AutoContrast(img, _):\n    return PIL.ImageOps.autocontrast(img)\n\n\ndef Invert(img, _):\n    return PIL.ImageOps.invert(img)\n\n\ndef Equalize(img, _):\n    return PIL.ImageOps.equalize(img)\n\n\ndef Flip(img, _):  # not from the paper\n    return PIL.ImageOps.mirror(img)\n\n\ndef Solarize(img, v):  # [0, 256]\n    assert 0 <= v <= 256\n    return PIL.ImageOps.solarize(img, v)\n\n\ndef SolarizeAdd(img, addition=0, threshold=128):\n    img_np = np.array(img).astype(np.int)\n    img_np = img_np + addition\n    img_np = np.clip(img_np, 0, 255)\n    img_np = img_np.astype(np.uint8)\n    img = Image.fromarray(img_np)\n    return PIL.ImageOps.solarize(img, threshold)\n\n\ndef Posterize(img, v):  # [4, 8]\n    v = int(v)\n    v = max(1, v)\n    return PIL.ImageOps.posterize(img, v)\n\n\ndef Contrast(img, v):  # [0.1,1.9]\n    assert 0.1 <= v <= 1.9\n    return PIL.ImageEnhance.Contrast(img).enhance(v)\n\n\ndef Color(img, v):  # [0.1,1.9]\n    assert 0.1 <= v <= 1.9\n    return PIL.ImageEnhance.Color(img).enhance(v)\n\n\ndef Brightness(img, v):  # [0.1,1.9]\n    assert 0.1 <= v <= 1.9\n    return PIL.ImageEnhance.Brightness(img).enhance(v)\n\n\ndef Sharpness(img, v):  # [0.1,1.9]\n    assert 0.1 <= v <= 1.9\n    return PIL.ImageEnhance.Sharpness(img).enhance(v)\n\n\ndef Cutout(img, v):  # [0, 60] => percentage: [0, 0.2]\n    assert 0.0 <= v <= 0.2\n    if v <= 0.:\n        return img\n\n    v = v * img.size[0]\n    return CutoutAbs(img, v)\n\n\ndef CutoutAbs(img, v):  # [0, 60] => percentage: [0, 0.2]\n    # assert 0 <= v <= 20\n    if v < 0:\n        return img\n    w, h = img.size\n    x0 = np.random.uniform(w)\n    y0 = np.random.uniform(h)\n\n    x0 = int(max(0, x0 - v / 2.))\n    y0 = int(max(0, y0 - v / 2.))\n    x1 = min(w, x0 + v)\n    y1 = min(h, y0 + v)\n\n    xy = (x0, y0, x1, y1)\n    color = (125, 123, 114)\n    # color = (0, 0, 0)\n    img = img.copy()\n    PIL.ImageDraw.Draw(img).rectangle(xy, color)\n    return img\n\n\ndef SamplePairing(imgs):  # [0, 0.4]\n    def f(img1, v):\n        i = np.random.choice(len(imgs))\n        img2 = PIL.Image.fromarray(imgs[i])\n        return PIL.Image.blend(img1, img2, v)\n    return f\n\n\ndef Identity(img, v):\n    return img\n\ndef augment_list():\n    l = [\n        (AutoContrast, 0, 1),\n        (Equalize, 0, 1),\n        (Invert, 0, 1),\n        (Rotate, 0, 30),\n        (Posterize, 0, 4),\n        (Solarize, 0, 256),\n        (SolarizeAdd, 0, 110),\n        (Color, 0.1, 1.9),\n        (Contrast, 0.1, 1.9),\n        (Brightness, 0.1, 1.9),\n        (Sharpness, 0.1, 1.9),\n        (ShearX, 0., 0.3),\n        (ShearY, 0., 0.3),\n        (CutoutAbs, 0, 40),\n        (TranslateXabs, 0., 100),\n        (TranslateYabs, 0., 100),\n    ]\n\n    return l\n\nclass RandAugment:\n    def __init__(self, n, m):\n        self.n = n\n        self.m = m      # [0, 30]\n        self.augment_list = augment_list()\n\n    def __call__(self, img):\n        ops = random.choices(self.augment_list, k=self.n)\n        for op, minval, maxval in ops:\n            val = (float(self.m) / 30) * float(maxval - minval) + minval\n            img = op(img, val)\n\n        return img"
  },
  {
    "path": "ML/Pytorch/others/default_setups/CV - Image Classification/config.py",
    "content": "import torch\nimport albumentations as A\nfrom albumentations.pytorch import ToTensorV2\n\nSEED = 42\nDEVICE = \"cuda\" if torch.cuda.is_available() else \"cpu\"\nNUM_WORKERS = 4\nBATCH_SIZE = 64\nPIN_MEMORY = True\nLOAD_MODEL = True\nLEARNING_RATE = 1e-4\nNUM_EPOCHS = 100\n\ntrain_transforms = A.Compose([\n    A.Resize(width=224, height=224,),\n    A.RandomCrop(width=224, height=224),\n    A.Rotate(40),\n    A.HorizontalFlip(p=0.5),\n    A.VerticalFlip(p=0.1),\n    A.Normalize(\n        mean=[0, 0, 0],\n        std=[1, 1, 1],\n        max_pixel_value=255.0,\n    ),\n    ToTensorV2(),\n])\n\nval_transforms = A.Compose([\n    A.Resize(height=224, width=224),\n    A.Normalize(\n        mean=[0, 0, 0],\n        std=[1, 1, 1],\n        max_pixel_value=255.0,\n    ),\n    ToTensorV2(),\n])"
  },
  {
    "path": "ML/Pytorch/others/default_setups/CV - Image Classification/dataset.py",
    "content": "import torch\nimport torch.nn as nn\nimport os\nfrom torch.utils.data import Dataset\nfrom PIL import Image\nimport numpy as np\n\n\nclass MyImageFolder(Dataset):\n    def __init__(self, root_dir, transform=None):\n        super(MyImageFolder, self).__init__()\n        self.data = []\n        self.root_dir = root_dir\n        self.transform = transform\n        self.class_names = os.listdir(root_dir)\n\n        for index, name in enumerate(self.class_names):\n            files = os.listdir(os.path.join(root_dir, name))\n            self.data += list(zip(files, [index]*len(files)))\n\n    def __len__(self):\n        return len(self.data)\n\n    def __getitem__(self, index):\n        img_file, label = self.data[index]\n        root_and_dir = os.path.join(self.root_dir, self.class_names[label])\n        image = np.array(Image.open(os.path.join(root_and_dir, img_file)))\n\n        if self.transform is not None:\n            augmentations = self.transform(image=image)\n            image = augmentations[\"image\"]\n\n        return image, label\n\n"
  },
  {
    "path": "ML/Pytorch/others/default_setups/CV - Image Classification/model.py",
    "content": "from torch import nn\nfrom efficientnet_pytorch import EfficientNet\n\nclass Net(nn.Module):\n    def __init__(self, net_version, num_classes):\n        super(Net, self).__init__()\n        self.backbone = EfficientNet.from_pretrained('efficientnet-'+net_version)\n        self.backbone._fc = nn.Sequential(\n            nn.Linear(1280, num_classes),\n        )\n\n    def forward(self, x):\n        return self.backbone(x)"
  },
  {
    "path": "ML/Pytorch/others/default_setups/CV - Image Classification/train.py",
    "content": "import torch\nimport torch.nn as nn\nimport torch.optim as optim\nfrom torch.utils.data import DataLoader\nfrom tqdm import tqdm\nfrom model import Net\nfrom utils import check_accuracy, load_checkpoint, save_checkpoint, make_prediction\nimport config\nfrom dataset import MyImageFolder\n\n\ndef train_fn(loader, model, optimizer, loss_fn, scaler, device):\n    for batch_idx, (data, targets) in enumerate(tqdm(loader)):\n        # Get data to cuda if possible\n        data = data.to(device=device)\n        targets = targets.to(device=device)\n\n        # forward\n        with torch.cuda.amp.autocast():\n            scores = model(data)\n            loss = loss_fn(scores, targets.float())\n\n        # backward\n        optimizer.zero_grad()\n        scaler.scale(loss).backward()\n        scaler.step(optimizer)\n        scaler.update()\n\n\ndef main():\n    train_ds = MyImageFolder(root_dir=\"train/\", transform=config.train_transforms)\n    val_ds = MyImageFolder(root_dir=\"val/\", transform=config.val_transforms)\n    train_loader = DataLoader(train_ds, batch_size=config.BATCH_SIZE, num_workers=config.NUM_WORKERS,pin_memory=config.PIN_MEMORY, shuffle=True)\n    val_loader = DataLoader(val_ds, batch_size=config.BATCH_SIZE, num_workers=config.NUM_WORKERS,pin_memory=config.PIN_MEMORY,shuffle=True)\n\n    loss_fn = nn.CrossEntropyLoss()\n    model = Net(net_version=\"b0\", num_classes=10).to(config.DEVICE)\n    optimizer = optim.Adam(model.parameters(), lr=config.LEARNING_RATE)\n    scaler = torch.cuda.amp.GradScaler()\n\n    if config.LOAD_MODEL:\n        load_checkpoint(torch.load(\"my_checkpoint.pth.tar\"), model, optimizer)\n\n    make_prediction(model, config.val_transforms, 'test/', config.DEVICE)\n    check_accuracy(val_loader, model, config.DEVICE)\n\n    for epoch in range(config.NUM_EPOCHS):\n        train_fn(train_loader, model, optimizer, loss_fn, scaler, config.DEVICE)\n        check_accuracy(val_loader, model, config.DEVICE)\n        checkpoint = {'state_dict': model.state_dict(), 'optimizer': optimizer.state_dict()}\n        save_checkpoint(checkpoint)\n\nif __name__ == \"__main__\":\n    main()"
  },
  {
    "path": "ML/Pytorch/others/default_setups/CV - Image Classification/utils.py",
    "content": "import torch\nimport torch.nn.functional as F\nimport os\nfrom PIL import Image\nimport pandas as pd\nimport numpy as np\nfrom tqdm import tqdm\n\ndef check_accuracy(loader, model, device=\"cuda\"):\n    num_correct = 0\n    num_samples = 0\n    model.eval()\n\n    with torch.no_grad():\n        for x, y in loader:\n            x = x.to(device=device)\n            y = y.to(device=device)\n\n            scores = torch.sigmoid(model(x))\n            predictions = (scores>0.5).float()\n            num_correct += (predictions == y).sum()\n            num_samples += predictions.shape[0]\n\n        print(f'Got {num_correct} / {num_samples} with accuracy {float(num_correct) / float(num_samples) * 100:.2f}')\n\n    model.train()\n\n\ndef save_checkpoint(state, filename=\"my_checkpoint.pth.tar\"):\n    print(\"=> Saving checkpoint\")\n    torch.save(state, filename)\n\n\ndef load_checkpoint(checkpoint, model, optimizer):\n    print(\"=> Loading checkpoint\")\n    model.load_state_dict(checkpoint['state_dict'])\n    optimizer.load_state_dict(checkpoint['optimizer'])\n\ndef make_prediction(model, transform, rootdir, device):\n    files = os.listdir(rootdir)\n    preds = []\n    model.eval()\n\n    files = sorted(files, key=lambda x: float(x.split(\".\")[0]))\n    for file in tqdm(files):\n        img = Image.open(os.path.join(rootdir, file))\n        img = transform(img).unsqueeze(0).to(device)\n        with torch.no_grad():\n            pred = torch.sigmoid(model(img))\n            preds.append(pred.item())\n\n\n    df = pd.DataFrame({'id': np.arange(1, len(preds)+1), 'label': np.array(preds)})\n    df.to_csv('submission.csv', index=False)\n    model.train()\n    print(\"Done with predictions\")"
  },
  {
    "path": "ML/Pytorch/pytorch_lightning/1. start code/simple_fc.py",
    "content": "import torch\nimport torch.nn.functional as F\nimport torchvision.datasets as datasets\nimport torchvision.transforms as transforms\nfrom torch import nn, optim\nfrom torch.utils.data import DataLoader\nfrom tqdm import tqdm\nfrom torch.utils.data import random_split\n\n\nclass NN(nn.Module):\n    def __init__(self, input_size, num_classes):\n        super().__init__()\n        self.fc1 = nn.Linear(input_size, 50)\n        self.fc2 = nn.Linear(50, num_classes)\n\n    def forward(self, x):\n        x = F.relu(self.fc1(x))\n        x = self.fc2(x)\n        return x\n\n\n# Set device cuda for GPU if it's available otherwise run on the CPU\ndevice = torch.device(\"cuda\" if torch.cuda.is_available() else \"cpu\")\n\n# Hyperparameters\ninput_size = 784\nnum_classes = 10\nlearning_rate = 0.001\nbatch_size = 64\nnum_epochs = 3\n\n# Load Data\nentire_dataset = datasets.MNIST(\n    root=\"dataset/\", train=True, transform=transforms.ToTensor(), download=True\n)\ntrain_ds, val_ds = random_split(entire_dataset, [50000, 10000])\ntest_ds = datasets.MNIST(\n    root=\"dataset/\", train=False, transform=transforms.ToTensor(), download=True\n)\ntrain_loader = DataLoader(dataset=train_ds, batch_size=batch_size, shuffle=True)\nval_loader = DataLoader(dataset=train_ds, batch_size=batch_size, shuffle=True)\ntest_loader = DataLoader(dataset=test_ds, batch_size=batch_size, shuffle=False)\n\n# Initialize network\nmodel = NN(input_size=input_size, num_classes=num_classes).to(device)\n\n# Loss and optimizer\ncriterion = nn.CrossEntropyLoss()\noptimizer = optim.Adam(model.parameters(), lr=learning_rate)\n\n# Train Network\nfor epoch in range(num_epochs):\n    for batch_idx, (data, targets) in enumerate(tqdm(train_loader)):\n        # Get data to cuda if possible\n        data = data.to(device=device)\n        targets = targets.to(device=device)\n\n        # Get to correct shape\n        data = data.reshape(data.shape[0], -1)\n\n        # Forward\n        scores = model(data)\n        loss = criterion(scores, targets)\n\n        # Backward\n        optimizer.zero_grad()\n        loss.backward()\n\n        # Gradient descent or adam step\n        optimizer.step()\n\n\n# Check accuracy on training & test to see how good our model\ndef check_accuracy(loader, model):\n    num_correct = 0\n    num_samples = 0\n    model.eval()\n\n    # We don't need to keep track of gradients here so we wrap it in torch.no_grad()\n    with torch.no_grad():\n        # Loop through the data\n        for x, y in loader:\n\n            # Move data to device\n            x = x.to(device=device)\n            y = y.to(device=device)\n\n            # Get to correct shape\n            x = x.reshape(x.shape[0], -1)\n\n            # Forward pass\n            scores = model(x)\n            _, predictions = scores.max(1)\n\n            # Check how many we got correct\n            num_correct += (predictions == y).sum()\n\n            # Keep track of number of samples\n            num_samples += predictions.size(0)\n\n    model.train()\n    return num_correct / num_samples\n\n\n# Check accuracy on training & test to see how good our model\nmodel.to(device)\nprint(f\"Accuracy on training set: {check_accuracy(train_loader, model)*100:.2f}\")\nprint(f\"Accuracy on validation set: {check_accuracy(val_loader, model)*100:.2f}\")\nprint(f\"Accuracy on test set: {check_accuracy(test_loader, model)*100:.2f}\")\n"
  },
  {
    "path": "ML/Pytorch/pytorch_lightning/10. Multi-GPU/callbacks.py",
    "content": "from pytorch_lightning.callbacks import EarlyStopping, Callback\n\nclass MyPrintingCallback(Callback):\n    def __init__(self):\n        super().__init__()\n\n    def on_train_start(self, trainer, pl_module):\n        print(\"Starting to train!\")\n\n    def on_train_end(self, trainer, pl_module):\n        print(\"Training is done.\")\n\n"
  },
  {
    "path": "ML/Pytorch/pytorch_lightning/10. Multi-GPU/config.py",
    "content": "# Training hyperparameters\nINPUT_SIZE = 784\nNUM_CLASSES = 10\nLEARNING_RATE = 0.001\nBATCH_SIZE = 64\nNUM_EPOCHS = 3\n\n# Dataset\nDATA_DIR = \"dataset/\"\nNUM_WORKERS = 4\n\n# Compute related\nACCELERATOR = \"gpu\"\nDEVICES = [0, 1]\nPRECISION = 16\n"
  },
  {
    "path": "ML/Pytorch/pytorch_lightning/10. Multi-GPU/dataset.py",
    "content": "import torch\nimport torch.nn.functional as F\nimport torchvision.datasets as datasets\nimport torchvision.transforms as transforms\nfrom torch import nn, optim\nfrom torch.utils.data import DataLoader\nfrom torch.utils.data import random_split\nimport pytorch_lightning as pl\nfrom torchvision.transforms import RandomHorizontalFlip, RandomVerticalFlip\n\n\nclass MnistDataModule(pl.LightningDataModule):\n    def __init__(self, data_dir, batch_size, num_workers):\n        super().__init__()\n        self.data_dir = data_dir\n        self.batch_size = batch_size\n        self.num_workers = num_workers\n\n    def prepare_data(self):\n        datasets.MNIST(self.data_dir, train=True, download=True)\n        datasets.MNIST(self.data_dir, train=False, download=True)\n\n    def setup(self, stage):\n        entire_dataset = datasets.MNIST(\n            root=self.data_dir,\n            train=True,\n            transform=transforms.Compose([\n                transforms.RandomVerticalFlip(),\n                transforms.RandomHorizontalFlip(),\n                transforms.ToTensor(),\n            ]),\n            download=False,\n        )\n        self.train_ds, self.val_ds = random_split(entire_dataset, [50000, 10000])\n        self.test_ds = datasets.MNIST(\n            root=self.data_dir,\n            train=False,\n            transform=transforms.ToTensor(),\n            download=False,\n        )\n\n    def train_dataloader(self):\n        return DataLoader(\n            self.train_ds,\n            batch_size=self.batch_size,\n            num_workers=self.num_workers,\n            shuffle=True,\n        )\n\n    def val_dataloader(self):\n        return DataLoader(\n            self.val_ds,\n            batch_size=self.batch_size,\n            num_workers=self.num_workers,\n            shuffle=False,\n        )\n\n    def test_dataloader(self):\n        return DataLoader(\n            self.test_ds,\n            batch_size=self.batch_size,\n            num_workers=self.num_workers,\n            shuffle=False,\n        )\n"
  },
  {
    "path": "ML/Pytorch/pytorch_lightning/10. Multi-GPU/model.py",
    "content": "import torch\nimport torch.nn.functional as F\nimport torchvision.datasets as datasets\nimport torchvision.transforms as transforms\nfrom torch import nn, optim\nfrom torch.utils.data import DataLoader\nfrom tqdm import tqdm\nimport pytorch_lightning as pl\nimport torchmetrics\nfrom torchmetrics import Metric\nimport torchvision\n\n\nclass NN(pl.LightningModule):\n    def __init__(self, input_size, learning_rate, num_classes):\n        super().__init__()\n        self.lr = learning_rate\n        self.fc1 = nn.Linear(input_size, 1_000_000)\n        self.fc2 = nn.Linear(1_000_000, num_classes)\n        self.loss_fn = nn.CrossEntropyLoss()\n        self.accuracy = torchmetrics.Accuracy(\n            task=\"multiclass\", num_classes=num_classes\n        )\n        self.f1_score = torchmetrics.F1Score(task=\"multiclass\", num_classes=num_classes)\n\n    def forward(self, x):\n        x = F.relu(self.fc1(x))\n        x = self.fc2(x)\n        return x\n\n    def training_step(self, batch, batch_idx):\n        x, y = batch\n        loss, scores, y = self._common_step(batch, batch_idx)\n\n        self.log_dict(\n            {\n                \"train_loss\": loss,\n            },\n            on_step=False,\n            on_epoch=True,\n            prog_bar=True,\n        )\n        \n        if batch_idx % 100 == 0:\n            x = x[:8]\n            grid = torchvision.utils.make_grid(x.view(-1, 1, 28, 28))\n            self.logger.experiment.add_image(\"mnist_images\", grid, self.global_step)\n\n        return {\"loss\": loss, \"scores\": scores, \"y\": y}\n    \n    def training_epoch_end(self, outputs):\n        scores = torch.cat([x[\"scores\"] for x in outputs])\n        y = torch.cat([x[\"y\"] for x in outputs])\n        self.log_dict(\n            {\n                \"train_acc\": self.accuracy(scores, y),\n                \"train_f1\": self.f1_score(scores, y),\n            },\n            on_step=False,\n            on_epoch=True,\n            prog_bar=True,\n        )\n\n    def validation_step(self, batch, batch_idx):\n        loss, scores, y = self._common_step(batch, batch_idx)\n        self.log(\"val_loss\", loss)\n        return loss\n\n    def test_step(self, batch, batch_idx):\n        loss, scores, y = self._common_step(batch, batch_idx)\n        self.log(\"test_loss\", loss)\n        return loss\n\n    def _common_step(self, batch, batch_idx):\n        x, y = batch\n        x = x.reshape(x.size(0), -1)\n        scores = self.forward(x)\n        loss = self.loss_fn(scores, y)\n        return loss, scores, y\n\n    def predict_step(self, batch, batch_idx):\n        x, y = batch\n        x = x.reshape(x.size(0), -1)\n        scores = self.forward(x)\n        preds = torch.argmax(scores, dim=1)\n        return preds\n\n    def configure_optimizers(self):\n        return optim.Adam(self.parameters(), lr=self.lr)\n"
  },
  {
    "path": "ML/Pytorch/pytorch_lightning/10. Multi-GPU/train.py",
    "content": "import torch\nimport pytorch_lightning as pl\nfrom model import NN\nfrom dataset import MnistDataModule\nimport config\nfrom callbacks import MyPrintingCallback, EarlyStopping\nfrom pytorch_lightning.loggers import TensorBoardLogger\nfrom pytorch_lightning.profilers import PyTorchProfiler\nfrom pytorch_lightning.strategies import DeepSpeedStrategy\n\ntorch.set_float32_matmul_precision(\"medium\") # to make lightning happy\n\nif __name__ == \"__main__\":\n    logger = TensorBoardLogger(\"tb_logs\", name=\"mnist_model_v1\")\n    strategy = DeepSpeedStrategy()\n    profiler = PyTorchProfiler(\n        on_trace_ready=torch.profiler.tensorboard_trace_handler(\"tb_logs/profiler0\"),\n        schedule=torch.profiler.schedule(skip_first=10, wait=1, warmup=1, active=20),\n    )\n    model = NN(\n        input_size=config.INPUT_SIZE,\n        learning_rate=config.LEARNING_RATE,\n        num_classes=config.NUM_CLASSES,\n    )\n    dm = MnistDataModule(\n        data_dir=config.DATA_DIR,\n        batch_size=config.BATCH_SIZE,\n        num_workers=config.NUM_WORKERS,\n    )\n    trainer = pl.Trainer(\n        strategy=strategy,\n        profiler=profiler,\n        logger=logger,\n        accelerator=config.ACCELERATOR,\n        devices=config.DEVICES,\n        min_epochs=1,\n        max_epochs=config.NUM_EPOCHS,\n        precision=config.PRECISION,\n        callbacks=[MyPrintingCallback(), EarlyStopping(monitor=\"val_loss\")],\n    )\n    trainer.fit(model, dm)\n    trainer.validate(model, dm)\n    trainer.test(model, dm)\n"
  },
  {
    "path": "ML/Pytorch/pytorch_lightning/2. LightningModule/simple_fc.py",
    "content": "import torch\nimport torch.nn.functional as F\nimport torchvision.datasets as datasets\nimport torchvision.transforms as transforms\nfrom torch import nn, optim\nfrom torch.utils.data import DataLoader\nfrom tqdm import tqdm\nfrom torch.utils.data import random_split\nimport pytorch_lightning as pl \n\nclass NN(nn.Module):\n    def __init__(self, input_size, num_classes):\n        super().__init__()\n        self.fc1 = nn.Linear(input_size, 50)\n        self.fc2 = nn.Linear(50, num_classes)\n\n    def forward(self, x):\n        x = F.relu(self.fc1(x))\n        x = self.fc2(x)\n        return x\n\nclass NN(pl.LightningModule):\n    def __init__(self, input_size, num_classes):\n        super().__init__()\n        self.fc1 = nn.Linear(input_size, 50)\n        self.fc2 = nn.Linear(50, num_classes)\n        self.loss_fn = nn.CrossEntropyLoss()\n\n    def forward(self, x):\n        x = F.relu(self.fc1(x))\n        x = self.fc2(x)\n        return x\n\n    def training_step(self, batch, batch_idx):\n        loss, scores, y = self._common_step(batch, batch_idx)\n        self.log('train_loss', loss)\n        return loss\n    \n    def validation_step(self, batch, batch_idx):\n        loss, scores, y = self._common_step(batch, batch_idx)\n        self.log('val_loss', loss)\n        return loss\n\n    def test_step(self, batch, batch_idx):\n        loss, scores, y = self._common_step(batch, batch_idx)\n        self.log('test_loss', loss)\n        return loss\n\n    def _common_step(self, batch, batch_idx):\n        x, y = batch \n        x = x.reshape(x.size(0), -1)\n        scores = self.forward(x)\n        loss = self.loss_fn(scores, y)\n        return loss, scores, y\n\n    def predict_step(self, batch, batch_idx):\n        x, y = batch \n        x = x.reshape(x.size(0), -1)\n        scores = self.forward(x)\n        preds = torch.argmax(scores, dim=1)\n        return preds\n\n    def configure_optimizers(self):\n        return optim.Adam(self.parameters(), lr=0.001)\n\n# Set device cuda for GPU if it's available otherwise run on the CPU\ndevice = torch.device(\"cuda\" if torch.cuda.is_available() else \"cpu\")\n\n# Hyperparameters\n\ninput_size = 784\nnum_classes = 10\nlearning_rate = 0.001\nbatch_size = 64\nnum_epochs = 3\n\n# Load Data\nentire_dataset = datasets.MNIST(\n    root=\"dataset/\", train=True, transform=transforms.ToTensor(), download=True\n)\ntrain_ds, val_ds = random_split(entire_dataset, [50000, 10000])\ntest_ds = datasets.MNIST(\n    root=\"dataset/\", train=False, transform=transforms.ToTensor(), download=True\n)\ntrain_loader = DataLoader(dataset=train_ds, batch_size=batch_size, shuffle=True)\nval_loader = DataLoader(dataset=train_ds, batch_size=batch_size, shuffle=True)\ntest_loader = DataLoader(dataset=test_ds, batch_size=batch_size, shuffle=False)\n\n# Initialize network\nmodel = NN(input_size=input_size, num_classes=num_classes).to(device)\n\n# Loss and optimizer\ncriterion = nn.CrossEntropyLoss()\noptimizer = optim.Adam(model.parameters(), lr=learning_rate)\n\n# Train Network\nfor epoch in range(num_epochs):\n    for batch_idx, (data, targets) in enumerate(tqdm(train_loader)):\n        # Get data to cuda if possible\n        data = data.to(device=device)\n        targets = targets.to(device=device)\n\n        # Get to correct shape\n        data = data.reshape(data.shape[0], -1)\n\n        # Forward\n        scores = model(data)\n        loss = criterion(scores, targets)\n\n        # Backward\n        optimizer.zero_grad()\n        loss.backward()\n\n        # Gradient descent or adam step\n        optimizer.step()\n\n\n# Check accuracy on training & test to see how good our model\ndef check_accuracy(loader, model):\n    num_correct = 0\n    num_samples = 0\n    model.eval()\n\n    # We don't need to keep track of gradients here so we wrap it in torch.no_grad()\n    with torch.no_grad():\n        # Loop through the data\n        for x, y in loader:\n\n            # Move data to device\n            x = x.to(device=device)\n            y = y.to(device=device)\n\n            # Get to correct shape\n            x = x.reshape(x.shape[0], -1)\n\n            # Forward pass\n            scores = model(x)\n            _, predictions = scores.max(1)\n\n            # Check how many we got correct\n            num_correct += (predictions == y).sum()\n\n            # Keep track of number of samples\n            num_samples += predictions.size(0)\n\n    model.train()\n    return num_correct / num_samples\n\n\n# Check accuracy on training & test to see how good our model\nmodel.to(device)\nprint(f\"Accuracy on training set: {check_accuracy(train_loader, model)*100:.2f}\")\nprint(f\"Accuracy on validation set: {check_accuracy(val_loader, model)*100:.2f}\")\nprint(f\"Accuracy on test set: {check_accuracy(test_loader, model)*100:.2f}\")\n"
  },
  {
    "path": "ML/Pytorch/pytorch_lightning/3. Lightning Trainer/simple_fc.py",
    "content": "import torch\nimport torch.nn.functional as F\nimport torchvision.datasets as datasets\nimport torchvision.transforms as transforms\nfrom torch import nn, optim\nfrom torch.utils.data import DataLoader\nfrom tqdm import tqdm\nfrom torch.utils.data import random_split\nimport pytorch_lightning as pl\n\n\nclass NN(pl.LightningModule):\n    def __init__(self, input_size, num_classes):\n        super().__init__()\n        self.fc1 = nn.Linear(input_size, 50)\n        self.fc2 = nn.Linear(50, num_classes)\n        self.loss_fn = nn.CrossEntropyLoss()\n\n    def forward(self, x):\n        x = F.relu(self.fc1(x))\n        x = self.fc2(x)\n        return x\n\n    def training_step(self, batch, batch_idx):\n        loss, scores, y = self._common_step(batch, batch_idx)\n        self.log(\"train_loss\", loss)\n        return loss\n\n    def validation_step(self, batch, batch_idx):\n        loss, scores, y = self._common_step(batch, batch_idx)\n        self.log(\"val_loss\", loss)\n        return loss\n\n    def test_step(self, batch, batch_idx):\n        loss, scores, y = self._common_step(batch, batch_idx)\n        self.log(\"test_loss\", loss)\n        return loss\n\n    def _common_step(self, batch, batch_idx):\n        x, y = batch\n        x = x.reshape(x.size(0), -1)\n        scores = self.forward(x)\n        loss = self.loss_fn(scores, y)\n        return loss, scores, y\n\n    def predict_step(self, batch, batch_idx):\n        x, y = batch\n        x = x.reshape(x.size(0), -1)\n        scores = self.forward(x)\n        preds = torch.argmax(scores, dim=1)\n        return preds\n\n    def configure_optimizers(self):\n        return optim.Adam(self.parameters(), lr=0.001)\n\n\n# Set device cuda for GPU if it's available otherwise run on the CPU\ndevice = torch.device(\"cuda\" if torch.cuda.is_available() else \"cpu\")\n\n# Hyperparameters\ninput_size = 784\nnum_classes = 10\nlearning_rate = 0.001\nbatch_size = 64\nnum_epochs = 3\n\n# Load Data\nentire_dataset = datasets.MNIST(\n    root=\"dataset/\", train=True, transform=transforms.ToTensor(), download=True\n)\ntrain_ds, val_ds = random_split(entire_dataset, [50000, 10000])\ntest_ds = datasets.MNIST(\n    root=\"dataset/\", train=False, transform=transforms.ToTensor(), download=True\n)\ntrain_loader = DataLoader(dataset=train_ds, batch_size=batch_size, shuffle=True)\nval_loader = DataLoader(dataset=val_ds, batch_size=batch_size, shuffle=False)\ntest_loader = DataLoader(dataset=test_ds, batch_size=batch_size, shuffle=False)\n\n# Initialize network\nmodel = NN(input_size=input_size, num_classes=num_classes).to(device)\n\n# Loss and optimizer\ncriterion = nn.CrossEntropyLoss()\noptimizer = optim.Adam(model.parameters(), lr=learning_rate)\n\ntrainer = pl.Trainer(\n    accelerator=\"gpu\", \n    devices=1, \n    min_epochs=1, \n    max_epochs=3, \n    precision=16,\n)\ntrainer.fit(model, train_loader, val_loader)\ntrainer.validate(model, val_loader)\ntrainer.test(model, test_loader)\n\n# Check accuracy on training & test to see how good our model\ndef check_accuracy(loader, model):\n    num_correct = 0\n    num_samples = 0\n    model.eval()\n\n    # We don't need to keep track of gradients here so we wrap it in torch.no_grad()\n    with torch.no_grad():\n        # Loop through the data\n        for x, y in loader:\n\n            # Move data to device\n            x = x.to(device=device)\n            y = y.to(device=device)\n\n            # Get to correct shape\n            x = x.reshape(x.shape[0], -1)\n\n            # Forward pass\n            scores = model(x)\n            _, predictions = scores.max(1)\n\n            # Check how many we got correct\n            num_correct += (predictions == y).sum()\n\n            # Keep track of number of samples\n            num_samples += predictions.size(0)\n\n    model.train()\n    return num_correct / num_samples\n\n\n# Check accuracy on training & test to see how good our model\nmodel.to(device)\nprint(f\"Accuracy on training set: {check_accuracy(train_loader, model)*100:.2f}\")\nprint(f\"Accuracy on validation set: {check_accuracy(val_loader, model)*100:.2f}\")\nprint(f\"Accuracy on test set: {check_accuracy(test_loader, model)*100:.2f}\")\n"
  },
  {
    "path": "ML/Pytorch/pytorch_lightning/4. Metrics/simple_fc.py",
    "content": "import torch\nimport torch.nn.functional as F\nimport torchvision.datasets as datasets\nimport torchvision.transforms as transforms\nfrom torch import nn, optim\nfrom torch.utils.data import DataLoader\nfrom tqdm import tqdm\nfrom torch.utils.data import random_split\nimport pytorch_lightning as pl \nimport torchmetrics \nfrom torchmetrics import Metric\n\n\nclass MyAccuracy(Metric):\n    def __init__(self):\n        super().__init__()\n        self.add_state(\"total\", default=torch.tensor(0), dist_reduce_fx=\"sum\")\n        self.add_state(\"correct\", default=torch.tensor(0), dist_reduce_fx=\"sum\")\n\n    def update(self, preds, target):\n        preds = torch.argmax(preds, dim=1)\n        assert preds.shape == target.shape\n        self.correct += torch.sum(preds == target)\n        self.total += target.numel()\n\n    def compute(self):\n        return self.correct.float() / self.total.float()\n\n\nclass NN(pl.LightningModule):\n    def __init__(self, input_size, num_classes):\n        super().__init__()\n        self.fc1 = nn.Linear(input_size, 50)\n        self.fc2 = nn.Linear(50, num_classes)\n        self.loss_fn = nn.CrossEntropyLoss()\n        self.accuracy = torchmetrics.Accuracy(task=\"multiclass\", num_classes=num_classes)\n        self.my_accuracy = MyAccuracy()\n        self.f1_score = torchmetrics.F1Score(task=\"multiclass\", num_classes=num_classes)\n\n    def forward(self, x):\n        x = F.relu(self.fc1(x))\n        x = self.fc2(x)\n        return x\n\n    def training_step(self, batch, batch_idx):\n        loss, scores, y = self._common_step(batch, batch_idx)\n        accuracy = self.my_accuracy(scores, y) \n        f1_score = self.f1_score(scores, y)\n        self.log_dict({'train_loss': loss, 'train_accuracy': accuracy, 'train_f1_score': f1_score},\n                      on_step=False, on_epoch=True, prog_bar=True)\n        return {'loss': loss, \"scores\": scores, \"y\": y}\n    \n    def validation_step(self, batch, batch_idx):\n        loss, scores, y = self._common_step(batch, batch_idx)\n        self.log('val_loss', loss)\n        return loss\n\n    def test_step(self, batch, batch_idx):\n        loss, scores, y = self._common_step(batch, batch_idx)\n        self.log('test_loss', loss)\n        return loss\n\n    def _common_step(self, batch, batch_idx):\n        x, y = batch \n        x = x.reshape(x.size(0), -1)\n        scores = self.forward(x)\n        loss = self.loss_fn(scores, y)\n        return loss, scores, y\n\n    def predict_step(self, batch, batch_idx):\n        x, y = batch \n        x = x.reshape(x.size(0), -1)\n        scores = self.forward(x)\n        preds = torch.argmax(scores, dim=1)\n        return preds\n\n    def configure_optimizers(self):\n        return optim.Adam(self.parameters(), lr=0.001)\n\n# Set device cuda for GPU if it's available otherwise run on the CPU\ndevice = torch.device(\"cuda\" if torch.cuda.is_available() else \"cpu\")\n\n# Hyperparameters\ninput_size = 784\nnum_classes = 10\nlearning_rate = 0.001\nbatch_size = 64\nnum_epochs = 3\n\n# Load Data\nentire_dataset = datasets.MNIST(\n    root=\"dataset/\", train=True, transform=transforms.ToTensor(), download=True\n)\ntrain_ds, val_ds = random_split(entire_dataset, [50000, 10000])\ntest_ds = datasets.MNIST(\n    root=\"dataset/\", train=False, transform=transforms.ToTensor(), download=True\n)\ntrain_loader = DataLoader(dataset=train_ds, batch_size=batch_size, shuffle=True)\nval_loader = DataLoader(dataset=val_ds, batch_size=batch_size, shuffle=False)\ntest_loader = DataLoader(dataset=test_ds, batch_size=batch_size, shuffle=False)\n\n# Initialize network\nmodel = NN(input_size=input_size, num_classes=num_classes).to(device)\n\n# Loss and optimizer\ncriterion = nn.CrossEntropyLoss()\noptimizer = optim.Adam(model.parameters(), lr=learning_rate)\n\ntrainer = pl.Trainer(accelerator=\"gpu\", devices=1, min_epochs=1, max_epochs=3, precision=16)\ntrainer.fit(model, train_loader, val_loader)\ntrainer.validate(model, val_loader)\ntrainer.test(model, test_loader)\n\n# Check accuracy on training & test to see how good our model\ndef check_accuracy(loader, model):\n    num_correct = 0\n    num_samples = 0\n    model.eval()\n\n    # We don't need to keep track of gradients here so we wrap it in torch.no_grad()\n    with torch.no_grad():\n        # Loop through the data\n        for x, y in loader:\n\n            # Move data to device\n            x = x.to(device=device)\n            y = y.to(device=device)\n\n            # Get to correct shape\n            x = x.reshape(x.shape[0], -1)\n\n            # Forward pass\n            scores = model(x)\n            _, predictions = scores.max(1)\n\n            # Check how many we got correct\n            num_correct += (predictions == y).sum()\n\n            # Keep track of number of samples\n            num_samples += predictions.size(0)\n\n    model.train()\n    return num_correct / num_samples\n\n\n# Check accuracy on training & test to see how good our model\nmodel.to(device)\nprint(f\"Accuracy on training set: {check_accuracy(train_loader, model)*100:.2f}\")\nprint(f\"Accuracy on validation set: {check_accuracy(val_loader, model)*100:.2f}\")\nprint(f\"Accuracy on test set: {check_accuracy(test_loader, model)*100:.2f}\")\n"
  },
  {
    "path": "ML/Pytorch/pytorch_lightning/5. DataModule/simple_fc.py",
    "content": "import torch\nimport torch.nn.functional as F\nimport torchvision.datasets as datasets\nimport torchvision.transforms as transforms\nfrom torch import nn, optim\nfrom torch.utils.data import DataLoader\nfrom tqdm import tqdm\nfrom torch.utils.data import random_split\nimport pytorch_lightning as pl \nimport torchmetrics \nfrom torchmetrics import Metric\n\n\nclass MyAccuracy(Metric):\n    def __init__(self):\n        super().__init__()\n        self.add_state(\"total\", default=torch.tensor(0), dist_reduce_fx=\"sum\")\n        self.add_state(\"correct\", default=torch.tensor(0), dist_reduce_fx=\"sum\")\n\n    def update(self, preds, target):\n        preds = torch.argmax(preds, dim=1)\n        assert preds.shape == target.shape\n        self.correct += torch.sum(preds == target)\n        self.total += target.numel()\n\n    def compute(self):\n        return self.correct.float() / self.total.float()\n\n\nclass NN(pl.LightningModule):\n    def __init__(self, input_size, num_classes):\n        super().__init__()\n        self.fc1 = nn.Linear(input_size, 50)\n        self.fc2 = nn.Linear(50, num_classes)\n        self.loss_fn = nn.CrossEntropyLoss()\n        self.accuracy = torchmetrics.Accuracy(task=\"multiclass\", num_classes=num_classes)\n        self.my_accuracy = MyAccuracy()\n        self.f1_score = torchmetrics.F1Score(task=\"multiclass\", num_classes=num_classes)\n\n    def forward(self, x):\n        x = F.relu(self.fc1(x))\n        x = self.fc2(x)\n        return x\n\n    def training_step(self, batch, batch_idx):\n        loss, scores, y = self._common_step(batch, batch_idx)\n        accuracy = self.my_accuracy(scores, y) \n        f1_score = self.f1_score(scores, y)\n        self.log_dict({'train_loss': loss, 'train_accuracy': accuracy, 'train_f1_score': f1_score},\n                      on_step=False, on_epoch=True, prog_bar=True)\n        return {'loss': loss, \"scores\": scores, \"y\": y}\n    \n    def validation_step(self, batch, batch_idx):\n        loss, scores, y = self._common_step(batch, batch_idx)\n        self.log('val_loss', loss)\n        return loss\n\n    def test_step(self, batch, batch_idx):\n        loss, scores, y = self._common_step(batch, batch_idx)\n        self.log('test_loss', loss)\n        return loss\n\n    def _common_step(self, batch, batch_idx):\n        x, y = batch \n        x = x.reshape(x.size(0), -1)\n        scores = self.forward(x)\n        loss = self.loss_fn(scores, y)\n        return loss, scores, y\n\n    def predict_step(self, batch, batch_idx):\n        x, y = batch \n        x = x.reshape(x.size(0), -1)\n        scores = self.forward(x)\n        preds = torch.argmax(scores, dim=1)\n        return preds\n\n    def configure_optimizers(self):\n        return optim.Adam(self.parameters(), lr=0.001)\n\n\nclass MnistDataModule(pl.LightningDataModule):\n    def __init__(self, data_dir, batch_size, num_workers):\n        super().__init__()\n        self.data_dir = data_dir \n        self.batch_size = batch_size\n        self.num_workers = num_workers\n\n    def prepare_data(self):\n        datasets.MNIST(self.data_dir, train=True, download=True)\n        datasets.MNIST(self.data_dir, train=False, download=True)\n\n    def setup(self, stage):\n        entire_dataset = datasets.MNIST(\n            root=self.data_dir, \n            train=True,\n            transform=transforms.ToTensor(),\n            download=False,\n        )\n        self.train_ds, self.val_ds = random_split(entire_dataset, [50000, 10000])\n        self.test_ds = datasets.MNIST(\n            root=self.data_dir,\n            train=False,\n            transform=transforms.ToTensor(),\n            download=False,\n        )\n\n    def train_dataloader(self):\n        return DataLoader(\n            self.train_ds,\n            batch_size=self.batch_size,\n            num_workers=self.num_workers,\n            shuffle=True,\n        )\n\n    def val_dataloader(self):\n        return DataLoader(\n            self.val_ds,\n            batch_size=self.batch_size,\n            num_workers=self.num_workers,\n            shuffle=False,\n        )\n\n    def test_dataloader(self):\n        return DataLoader(\n            self.test_ds,\n            batch_size=self.batch_size,\n            num_workers=self.num_workers,\n            shuffle=False,\n        )\n\n# Set device cuda for GPU if it's available otherwise run on the CPU\ndevice = torch.device(\"cuda\" if torch.cuda.is_available() else \"cpu\")\n\n# Hyperparameters\ninput_size = 784\nnum_classes = 10\nlearning_rate = 0.001\nbatch_size = 64\nnum_epochs = 3\n\nmodel = NN(input_size=input_size, num_classes=num_classes)\ndm = MnistDataModule(data_dir=\"dataset/\", batch_size=batch_size, num_workers=4)\ntrainer = pl.Trainer(accelerator=\"gpu\", devices=1, min_epochs=1, max_epochs=3, precision=16)\ntrainer.fit(model, dm)\ntrainer.validate(model, dm)\ntrainer.test(model, dm)\n"
  },
  {
    "path": "ML/Pytorch/pytorch_lightning/6. Restructuring/config.py",
    "content": "# Training hyperparameters\nINPUT_SIZE = 784\nNUM_CLASSES = 10\nLEARNING_RATE = 0.001\nBATCH_SIZE = 64\nNUM_EPOCHS = 3\n\n# Dataset\nDATA_DIR = \"dataset/\"\nNUM_WORKERS = 4\n\n# Compute related\nACCELERATOR = \"gpu\"\nDEVICES = [0]\nPRECISION = 16\n"
  },
  {
    "path": "ML/Pytorch/pytorch_lightning/6. Restructuring/dataset.py",
    "content": "import torch\nimport torch.nn.functional as F\nimport torchvision.datasets as datasets\nimport torchvision.transforms as transforms\nfrom torch import nn, optim\nfrom torch.utils.data import DataLoader\nfrom torch.utils.data import random_split\nimport pytorch_lightning as pl\n\n\nclass MnistDataModule(pl.LightningDataModule):\n    def __init__(self, data_dir, batch_size, num_workers):\n        super().__init__()\n        self.data_dir = data_dir\n        self.batch_size = batch_size\n        self.num_workers = num_workers\n\n    def prepare_data(self):\n        datasets.MNIST(self.data_dir, train=True, download=True)\n        datasets.MNIST(self.data_dir, train=False, download=True)\n\n    def setup(self, stage):\n        entire_dataset = datasets.MNIST(\n            root=self.data_dir,\n            train=True,\n            transform=transforms.ToTensor(),\n            download=False,\n        )\n        self.train_ds, self.val_ds = random_split(entire_dataset, [50000, 10000])\n        self.test_ds = datasets.MNIST(\n            root=self.data_dir,\n            train=False,\n            transform=transforms.ToTensor(),\n            download=False,\n        )\n\n    def train_dataloader(self):\n        return DataLoader(\n            self.train_ds,\n            batch_size=self.batch_size,\n            num_workers=self.num_workers,\n            shuffle=True,\n        )\n\n    def val_dataloader(self):\n        return DataLoader(\n            self.val_ds,\n            batch_size=self.batch_size,\n            num_workers=self.num_workers,\n            shuffle=False,\n        )\n\n    def test_dataloader(self):\n        return DataLoader(\n            self.test_ds,\n            batch_size=self.batch_size,\n            num_workers=self.num_workers,\n            shuffle=False,\n        )\n"
  },
  {
    "path": "ML/Pytorch/pytorch_lightning/6. Restructuring/model.py",
    "content": "import torch\nimport torch.nn.functional as F\nimport torchvision.datasets as datasets\nimport torchvision.transforms as transforms\nfrom torch import nn, optim\nfrom torch.utils.data import DataLoader\nfrom tqdm import tqdm\nimport pytorch_lightning as pl\nimport torchmetrics\nfrom torchmetrics import Metric\n\n\nclass NN(pl.LightningModule):\n    def __init__(self, input_size, learning_rate, num_classes):\n        super().__init__()\n        self.lr = learning_rate\n        self.fc1 = nn.Linear(input_size, 50)\n        self.fc2 = nn.Linear(50, num_classes)\n        self.loss_fn = nn.CrossEntropyLoss()\n        self.accuracy = torchmetrics.Accuracy(\n            task=\"multiclass\", num_classes=num_classes\n        )\n        self.f1_score = torchmetrics.F1Score(task=\"multiclass\", num_classes=num_classes)\n\n    def forward(self, x):\n        x = F.relu(self.fc1(x))\n        x = self.fc2(x)\n        return x\n\n    def training_step(self, batch, batch_idx):\n        loss, scores, y = self._common_step(batch, batch_idx)\n        accuracy = self.accuracy(scores, y)\n        f1_score = self.f1_score(scores, y)\n        self.log_dict(\n            {\n                \"train_loss\": loss,\n                \"train_accuracy\": accuracy,\n                \"train_f1_score\": f1_score,\n            },\n            on_step=False,\n            on_epoch=True,\n            prog_bar=True,\n        )\n        return {\"loss\": loss, \"scores\": scores, \"y\": y}\n\n    def validation_step(self, batch, batch_idx):\n        loss, scores, y = self._common_step(batch, batch_idx)\n        self.log(\"val_loss\", loss)\n        return loss\n\n    def test_step(self, batch, batch_idx):\n        loss, scores, y = self._common_step(batch, batch_idx)\n        self.log(\"test_loss\", loss)\n        return loss\n\n    def _common_step(self, batch, batch_idx):\n        x, y = batch\n        x = x.reshape(x.size(0), -1)\n        scores = self.forward(x)\n        loss = self.loss_fn(scores, y)\n        return loss, scores, y\n\n    def predict_step(self, batch, batch_idx):\n        x, y = batch\n        x = x.reshape(x.size(0), -1)\n        scores = self.forward(x)\n        preds = torch.argmax(scores, dim=1)\n        return preds\n\n    def configure_optimizers(self):\n        return optim.Adam(self.parameters(), lr=self.lr)\n"
  },
  {
    "path": "ML/Pytorch/pytorch_lightning/6. Restructuring/train.py",
    "content": "import torch\nimport pytorch_lightning as pl\nfrom model import NN\nfrom dataset import MnistDataModule\nimport config\n\nif __name__ == \"__main__\":\n    model = NN(\n        input_size=config.INPUT_SIZE,\n        learning_rate=config.LEARNING_RATE,\n        num_classes=config.NUM_CLASSES,\n    )\n    dm = MnistDataModule(\n        data_dir=config.DATA_DIR,\n        batch_size=config.BATCH_SIZE,\n        num_workers=config.NUM_WORKERS,\n    )\n    trainer = pl.Trainer(\n        accelerator=config.ACCELERATOR,\n        devices=config.DEVICES,\n        min_epochs=1,\n        max_epochs=3,\n        precision=config.PRECISION,\n    )\n    trainer.fit(model, dm)\n    trainer.validate(model, dm)\n    trainer.test(model, dm)\n"
  },
  {
    "path": "ML/Pytorch/pytorch_lightning/7. Callbacks/callbacks.py",
    "content": "from pytorch_lightning.callbacks import EarlyStopping, Callback\n\nclass MyPrintingCallback(Callback):\n    def __init__(self):\n        super().__init__()\n\n    def on_train_start(self, trainer, pl_module):\n        print(\"Starting to train!\")\n\n    def on_train_end(self, trainer, pl_module):\n        print(\"Training is done.\")\n\n"
  },
  {
    "path": "ML/Pytorch/pytorch_lightning/7. Callbacks/config.py",
    "content": "# Training hyperparameters\nINPUT_SIZE = 784\nNUM_CLASSES = 10\nLEARNING_RATE = 0.001\nBATCH_SIZE = 64\nNUM_EPOCHS = 1000\n\n# Dataset\nDATA_DIR = \"dataset/\"\nNUM_WORKERS = 4\n\n# Compute related\nACCELERATOR = \"gpu\"\nDEVICES = [0]\nPRECISION = 16\n"
  },
  {
    "path": "ML/Pytorch/pytorch_lightning/7. Callbacks/dataset.py",
    "content": "import torch\nimport torch.nn.functional as F\nimport torchvision.datasets as datasets\nimport torchvision.transforms as transforms\nfrom torch import nn, optim\nfrom torch.utils.data import DataLoader\nfrom torch.utils.data import random_split\nimport pytorch_lightning as pl\n\n\nclass MnistDataModule(pl.LightningDataModule):\n    def __init__(self, data_dir, batch_size, num_workers):\n        super().__init__()\n        self.data_dir = data_dir\n        self.batch_size = batch_size\n        self.num_workers = num_workers\n\n    def prepare_data(self):\n        datasets.MNIST(self.data_dir, train=True, download=True)\n        datasets.MNIST(self.data_dir, train=False, download=True)\n\n    def setup(self, stage):\n        entire_dataset = datasets.MNIST(\n            root=self.data_dir,\n            train=True,\n            transform=transforms.ToTensor(),\n            download=False,\n        )\n        self.train_ds, self.val_ds = random_split(entire_dataset, [50000, 10000])\n        self.test_ds = datasets.MNIST(\n            root=self.data_dir,\n            train=False,\n            transform=transforms.ToTensor(),\n            download=False,\n        )\n\n    def train_dataloader(self):\n        return DataLoader(\n            self.train_ds,\n            batch_size=self.batch_size,\n            num_workers=self.num_workers,\n            shuffle=True,\n        )\n\n    def val_dataloader(self):\n        return DataLoader(\n            self.val_ds,\n            batch_size=self.batch_size,\n            num_workers=self.num_workers,\n            shuffle=False,\n        )\n\n    def test_dataloader(self):\n        return DataLoader(\n            self.test_ds,\n            batch_size=self.batch_size,\n            num_workers=self.num_workers,\n            shuffle=False,\n        )\n"
  },
  {
    "path": "ML/Pytorch/pytorch_lightning/7. Callbacks/model.py",
    "content": "import torch\nimport torch.nn.functional as F\nimport torchvision.datasets as datasets\nimport torchvision.transforms as transforms\nfrom torch import nn, optim\nfrom torch.utils.data import DataLoader\nfrom tqdm import tqdm\nimport pytorch_lightning as pl\nimport torchmetrics\nfrom torchmetrics import Metric\n\n\nclass NN(pl.LightningModule):\n    def __init__(self, input_size, learning_rate, num_classes):\n        super().__init__()\n        self.lr = learning_rate\n        self.fc1 = nn.Linear(input_size, 50)\n        self.fc2 = nn.Linear(50, num_classes)\n        self.loss_fn = nn.CrossEntropyLoss()\n        self.accuracy = torchmetrics.Accuracy(\n            task=\"multiclass\", num_classes=num_classes\n        )\n        self.f1_score = torchmetrics.F1Score(task=\"multiclass\", num_classes=num_classes)\n\n    def forward(self, x):\n        x = F.relu(self.fc1(x))\n        x = self.fc2(x)\n        return x\n\n    def training_step(self, batch, batch_idx):\n        loss, scores, y = self._common_step(batch, batch_idx)\n        accuracy = self.accuracy(scores, y)\n        f1_score = self.f1_score(scores, y)\n        self.log_dict(\n            {\n                \"train_loss\": loss,\n                \"train_accuracy\": accuracy,\n                \"train_f1_score\": f1_score,\n            },\n            on_step=False,\n            on_epoch=True,\n            prog_bar=True,\n        )\n        return {\"loss\": loss, \"scores\": scores, \"y\": y}\n\n    def validation_step(self, batch, batch_idx):\n        loss, scores, y = self._common_step(batch, batch_idx)\n        self.log(\"val_loss\", loss)\n        return loss\n\n    def test_step(self, batch, batch_idx):\n        loss, scores, y = self._common_step(batch, batch_idx)\n        self.log(\"test_loss\", loss)\n        return loss\n\n    def _common_step(self, batch, batch_idx):\n        x, y = batch\n        x = x.reshape(x.size(0), -1)\n        scores = self.forward(x)\n        loss = self.loss_fn(scores, y)\n        return loss, scores, y\n\n    def predict_step(self, batch, batch_idx):\n        x, y = batch\n        x = x.reshape(x.size(0), -1)\n        scores = self.forward(x)\n        preds = torch.argmax(scores, dim=1)\n        return preds\n\n    def configure_optimizers(self):\n        return optim.Adam(self.parameters(), lr=self.lr)\n"
  },
  {
    "path": "ML/Pytorch/pytorch_lightning/7. Callbacks/train.py",
    "content": "import torch\nimport pytorch_lightning as pl\nfrom model import NN\nfrom dataset import MnistDataModule\nimport config\nfrom callbacks import MyPrintingCallback, EarlyStopping\n\ntorch.set_float32_matmul_precision(\"medium\") # to make lightning happy\n\nif __name__ == \"__main__\":\n    model = NN(\n        input_size=config.INPUT_SIZE,\n        learning_rate=config.LEARNING_RATE,\n        num_classes=config.NUM_CLASSES,\n    )\n    dm = MnistDataModule(\n        data_dir=config.DATA_DIR,\n        batch_size=config.BATCH_SIZE,\n        num_workers=config.NUM_WORKERS,\n    )\n    trainer = pl.Trainer(\n        accelerator=config.ACCELERATOR,\n        devices=config.DEVICES,\n        min_epochs=1,\n        max_epochs=config.NUM_EPOCHS,\n        precision=config.PRECISION,\n        callbacks=[MyPrintingCallback(), EarlyStopping(monitor=\"val_loss\")],\n    )\n    trainer.fit(model, dm)\n    trainer.validate(model, dm)\n    trainer.test(model, dm)\n"
  },
  {
    "path": "ML/Pytorch/pytorch_lightning/8. Logging Tensorboard/callbacks.py",
    "content": "from pytorch_lightning.callbacks import EarlyStopping, Callback\n\nclass MyPrintingCallback(Callback):\n    def __init__(self):\n        super().__init__()\n\n    def on_train_start(self, trainer, pl_module):\n        print(\"Starting to train!\")\n\n    def on_train_end(self, trainer, pl_module):\n        print(\"Training is done.\")\n\n"
  },
  {
    "path": "ML/Pytorch/pytorch_lightning/8. Logging Tensorboard/config.py",
    "content": "# Training hyperparameters\nINPUT_SIZE = 784\nNUM_CLASSES = 10\nLEARNING_RATE = 0.001\nBATCH_SIZE = 64\nNUM_EPOCHS = 1000\n\n# Dataset\nDATA_DIR = \"dataset/\"\nNUM_WORKERS = 4\n\n# Compute related\nACCELERATOR = \"gpu\"\nDEVICES = [0]\nPRECISION = 16\n"
  },
  {
    "path": "ML/Pytorch/pytorch_lightning/8. Logging Tensorboard/dataset.py",
    "content": "import torch\nimport torch.nn.functional as F\nimport torchvision.datasets as datasets\nimport torchvision.transforms as transforms\nfrom torch import nn, optim\nfrom torch.utils.data import DataLoader\nfrom torch.utils.data import random_split\nimport pytorch_lightning as pl\nfrom torchvision.transforms import RandomHorizontalFlip, RandomVerticalFlip\n\n\nclass MnistDataModule(pl.LightningDataModule):\n    def __init__(self, data_dir, batch_size, num_workers):\n        super().__init__()\n        self.data_dir = data_dir\n        self.batch_size = batch_size\n        self.num_workers = num_workers\n\n    def prepare_data(self):\n        datasets.MNIST(self.data_dir, train=True, download=True)\n        datasets.MNIST(self.data_dir, train=False, download=True)\n\n    def setup(self, stage):\n        entire_dataset = datasets.MNIST(\n            root=self.data_dir,\n            train=True,\n            transform=transforms.Compose([\n                transforms.RandomVerticalFlip(),\n                transforms.RandomHorizontalFlip(),\n                transforms.ToTensor(),\n            ]),\n            download=False,\n        )\n        self.train_ds, self.val_ds = random_split(entire_dataset, [50000, 10000])\n        self.test_ds = datasets.MNIST(\n            root=self.data_dir,\n            train=False,\n            transform=transforms.ToTensor(),\n            download=False,\n        )\n\n    def train_dataloader(self):\n        return DataLoader(\n            self.train_ds,\n            batch_size=self.batch_size,\n            num_workers=self.num_workers,\n            shuffle=True,\n        )\n\n    def val_dataloader(self):\n        return DataLoader(\n            self.val_ds,\n            batch_size=self.batch_size,\n            num_workers=self.num_workers,\n            shuffle=False,\n        )\n\n    def test_dataloader(self):\n        return DataLoader(\n            self.test_ds,\n            batch_size=self.batch_size,\n            num_workers=self.num_workers,\n            shuffle=False,\n        )\n"
  },
  {
    "path": "ML/Pytorch/pytorch_lightning/8. Logging Tensorboard/model.py",
    "content": "import torch\nimport torch.nn.functional as F\nimport torchvision.datasets as datasets\nimport torchvision.transforms as transforms\nfrom torch import nn, optim\nfrom torch.utils.data import DataLoader\nfrom tqdm import tqdm\nimport pytorch_lightning as pl\nimport torchmetrics\nfrom torchmetrics import Metric\nimport torchvision\n\n\nclass NN(pl.LightningModule):\n    def __init__(self, input_size, learning_rate, num_classes):\n        super().__init__()\n        self.lr = learning_rate\n        self.fc1 = nn.Linear(input_size, 50)\n        self.fc2 = nn.Linear(50, num_classes)\n        self.loss_fn = nn.CrossEntropyLoss()\n        self.accuracy = torchmetrics.Accuracy(\n            task=\"multiclass\", num_classes=num_classes\n        )\n        self.f1_score = torchmetrics.F1Score(task=\"multiclass\", num_classes=num_classes)\n\n    def forward(self, x):\n        x = F.relu(self.fc1(x))\n        x = self.fc2(x)\n        return x\n\n    def training_step(self, batch, batch_idx):\n        x, y = batch\n        loss, scores, y = self._common_step(batch, batch_idx)\n        accuracy = self.accuracy(scores, y)\n        f1_score = self.f1_score(scores, y)\n        self.log_dict(\n            {\n                \"train_loss\": loss,\n                \"train_accuracy\": accuracy,\n                \"train_f1_score\": f1_score,\n            },\n            on_step=False,\n            on_epoch=True,\n            prog_bar=True,\n        )\n        \n        if batch_idx % 100 == 0:\n            x = x[:8]\n            grid = torchvision.utils.make_grid(x.view(-1, 1, 28, 28))\n            self.logger.experiment.add_image(\"mnist_images\", grid, self.global_step)\n\n        return {\"loss\": loss, \"scores\": scores, \"y\": y}\n\n    def validation_step(self, batch, batch_idx):\n        loss, scores, y = self._common_step(batch, batch_idx)\n        self.log(\"val_loss\", loss)\n        return loss\n\n    def test_step(self, batch, batch_idx):\n        loss, scores, y = self._common_step(batch, batch_idx)\n        self.log(\"test_loss\", loss)\n        return loss\n\n    def _common_step(self, batch, batch_idx):\n        x, y = batch\n        x = x.reshape(x.size(0), -1)\n        scores = self.forward(x)\n        loss = self.loss_fn(scores, y)\n        return loss, scores, y\n\n    def predict_step(self, batch, batch_idx):\n        x, y = batch\n        x = x.reshape(x.size(0), -1)\n        scores = self.forward(x)\n        preds = torch.argmax(scores, dim=1)\n        return preds\n\n    def configure_optimizers(self):\n        return optim.Adam(self.parameters(), lr=self.lr)\n"
  },
  {
    "path": "ML/Pytorch/pytorch_lightning/8. Logging Tensorboard/train.py",
    "content": "import torch\nimport pytorch_lightning as pl\nfrom model import NN\nfrom dataset import MnistDataModule\nimport config\nfrom callbacks import MyPrintingCallback, EarlyStopping\nfrom pytorch_lightning.loggers import TensorBoardLogger\n\ntorch.set_float32_matmul_precision(\"medium\") # to make lightning happy\n\nif __name__ == \"__main__\":\n    logger = TensorBoardLogger(\"tb_logs\", name=\"mnist_model_v0\")\n    model = NN(\n        input_size=config.INPUT_SIZE,\n        learning_rate=config.LEARNING_RATE,\n        num_classes=config.NUM_CLASSES,\n    )\n    dm = MnistDataModule(\n        data_dir=config.DATA_DIR,\n        batch_size=config.BATCH_SIZE,\n        num_workers=config.NUM_WORKERS,\n    )\n    trainer = pl.Trainer(\n        logger=logger,\n        accelerator=config.ACCELERATOR,\n        devices=config.DEVICES,\n        min_epochs=1,\n        max_epochs=config.NUM_EPOCHS,\n        precision=config.PRECISION,\n        callbacks=[MyPrintingCallback(), EarlyStopping(monitor=\"val_loss\")],\n    )\n    trainer.fit(model, dm)\n    trainer.validate(model, dm)\n    trainer.test(model, dm)\n"
  },
  {
    "path": "ML/Pytorch/pytorch_lightning/9. Profiler/callbacks.py",
    "content": "from pytorch_lightning.callbacks import EarlyStopping, Callback\n\nclass MyPrintingCallback(Callback):\n    def __init__(self):\n        super().__init__()\n\n    def on_train_start(self, trainer, pl_module):\n        print(\"Starting to train!\")\n\n    def on_train_end(self, trainer, pl_module):\n        print(\"Training is done.\")\n\n"
  },
  {
    "path": "ML/Pytorch/pytorch_lightning/9. Profiler/config.py",
    "content": "# Training hyperparameters\nINPUT_SIZE = 784\nNUM_CLASSES = 10\nLEARNING_RATE = 0.001\nBATCH_SIZE = 64\nNUM_EPOCHS = 3\n\n# Dataset\nDATA_DIR = \"dataset/\"\nNUM_WORKERS = 4\n\n# Compute related\nACCELERATOR = \"gpu\"\nDEVICES = [0]\nPRECISION = 16\n"
  },
  {
    "path": "ML/Pytorch/pytorch_lightning/9. Profiler/dataset.py",
    "content": "import torch\nimport torch.nn.functional as F\nimport torchvision.datasets as datasets\nimport torchvision.transforms as transforms\nfrom torch import nn, optim\nfrom torch.utils.data import DataLoader\nfrom torch.utils.data import random_split\nimport pytorch_lightning as pl\nfrom torchvision.transforms import RandomHorizontalFlip, RandomVerticalFlip\n\n\nclass MnistDataModule(pl.LightningDataModule):\n    def __init__(self, data_dir, batch_size, num_workers):\n        super().__init__()\n        self.data_dir = data_dir\n        self.batch_size = batch_size\n        self.num_workers = num_workers\n\n    def prepare_data(self):\n        datasets.MNIST(self.data_dir, train=True, download=True)\n        datasets.MNIST(self.data_dir, train=False, download=True)\n\n    def setup(self, stage):\n        entire_dataset = datasets.MNIST(\n            root=self.data_dir,\n            train=True,\n            transform=transforms.Compose([\n                transforms.RandomVerticalFlip(),\n                transforms.RandomHorizontalFlip(),\n                transforms.ToTensor(),\n            ]),\n            download=False,\n        )\n        self.train_ds, self.val_ds = random_split(entire_dataset, [50000, 10000])\n        self.test_ds = datasets.MNIST(\n            root=self.data_dir,\n            train=False,\n            transform=transforms.ToTensor(),\n            download=False,\n        )\n\n    def train_dataloader(self):\n        return DataLoader(\n            self.train_ds,\n            batch_size=self.batch_size,\n            num_workers=self.num_workers,\n            shuffle=True,\n        )\n\n    def val_dataloader(self):\n        return DataLoader(\n            self.val_ds,\n            batch_size=self.batch_size,\n            num_workers=self.num_workers,\n            shuffle=False,\n        )\n\n    def test_dataloader(self):\n        return DataLoader(\n            self.test_ds,\n            batch_size=self.batch_size,\n            num_workers=self.num_workers,\n            shuffle=False,\n        )\n"
  },
  {
    "path": "ML/Pytorch/pytorch_lightning/9. Profiler/model.py",
    "content": "import torch\nimport torch.nn.functional as F\nimport torchvision.datasets as datasets\nimport torchvision.transforms as transforms\nfrom torch import nn, optim\nfrom torch.utils.data import DataLoader\nfrom tqdm import tqdm\nimport pytorch_lightning as pl\nimport torchmetrics\nfrom torchmetrics import Metric\nimport torchvision\n\n\nclass NN(pl.LightningModule):\n    def __init__(self, input_size, learning_rate, num_classes):\n        super().__init__()\n        self.lr = learning_rate\n        self.fc1 = nn.Linear(input_size, 50)\n        self.fc2 = nn.Linear(50, num_classes)\n        self.loss_fn = nn.CrossEntropyLoss()\n        self.accuracy = torchmetrics.Accuracy(\n            task=\"multiclass\", num_classes=num_classes\n        )\n        self.f1_score = torchmetrics.F1Score(task=\"multiclass\", num_classes=num_classes)\n\n    def forward(self, x):\n        x = F.relu(self.fc1(x))\n        x = self.fc2(x)\n        return x\n\n    def training_step(self, batch, batch_idx):\n        x, y = batch\n        loss, scores, y = self._common_step(batch, batch_idx)\n\n        self.log_dict(\n            {\n                \"train_loss\": loss,\n            },\n            on_step=False,\n            on_epoch=True,\n            prog_bar=True,\n        )\n        \n        if batch_idx % 100 == 0:\n            x = x[:8]\n            grid = torchvision.utils.make_grid(x.view(-1, 1, 28, 28))\n            self.logger.experiment.add_image(\"mnist_images\", grid, self.global_step)\n\n        return {\"loss\": loss, \"scores\": scores, \"y\": y}\n    \n    def training_epoch_end(self, outputs):\n        scores = torch.cat([x[\"scores\"] for x in outputs])\n        y = torch.cat([x[\"y\"] for x in outputs])\n        self.log_dict(\n            {\n                \"train_acc\": self.accuracy(scores, y),\n                \"train_f1\": self.f1_score(scores, y),\n            },\n            on_step=False,\n            on_epoch=True,\n            prog_bar=True,\n        )\n\n    def validation_step(self, batch, batch_idx):\n        loss, scores, y = self._common_step(batch, batch_idx)\n        self.log(\"val_loss\", loss)\n        return loss\n\n    def test_step(self, batch, batch_idx):\n        loss, scores, y = self._common_step(batch, batch_idx)\n        self.log(\"test_loss\", loss)\n        return loss\n\n    def _common_step(self, batch, batch_idx):\n        x, y = batch\n        x = x.reshape(x.size(0), -1)\n        scores = self.forward(x)\n        loss = self.loss_fn(scores, y)\n        return loss, scores, y\n\n    def predict_step(self, batch, batch_idx):\n        x, y = batch\n        x = x.reshape(x.size(0), -1)\n        scores = self.forward(x)\n        preds = torch.argmax(scores, dim=1)\n        return preds\n\n    def configure_optimizers(self):\n        return optim.Adam(self.parameters(), lr=self.lr)\n"
  },
  {
    "path": "ML/Pytorch/pytorch_lightning/9. Profiler/train.py",
    "content": "import torch\nimport pytorch_lightning as pl\nfrom model import NN\nfrom dataset import MnistDataModule\nimport config\nfrom callbacks import MyPrintingCallback, EarlyStopping\nfrom pytorch_lightning.loggers import TensorBoardLogger\nfrom pytorch_lightning.profilers import PyTorchProfiler\n\ntorch.set_float32_matmul_precision(\"medium\") # to make lightning happy\n\nif __name__ == \"__main__\":\n    logger = TensorBoardLogger(\"tb_logs\", name=\"mnist_model_v1\")\n    profiler = PyTorchProfiler(\n        on_trace_ready=torch.profiler.tensorboard_trace_handler(\"tb_logs/profiler0\"),\n        schedule=torch.profiler.schedule(skip_first=10, wait=1, warmup=1, active=20),\n    )\n    model = NN(\n        input_size=config.INPUT_SIZE,\n        learning_rate=config.LEARNING_RATE,\n        num_classes=config.NUM_CLASSES,\n    )\n    dm = MnistDataModule(\n        data_dir=config.DATA_DIR,\n        batch_size=config.BATCH_SIZE,\n        num_workers=config.NUM_WORKERS,\n    )\n    trainer = pl.Trainer(\n        profiler=profiler,\n        logger=logger,\n        accelerator=config.ACCELERATOR,\n        devices=config.DEVICES,\n        min_epochs=1,\n        max_epochs=config.NUM_EPOCHS,\n        precision=config.PRECISION,\n        callbacks=[MyPrintingCallback(), EarlyStopping(monitor=\"val_loss\")],\n    )\n    trainer.fit(model, dm)\n    trainer.validate(model, dm)\n    trainer.test(model, dm)\n"
  },
  {
    "path": "ML/Pytorch/recommender_systems/neural_collaborative_filtering/main.py",
    "content": "\"\"\" \nImplementation of Neural collaborative filtering (NCF)\nNext:\n    * Understand and use NDCG = Normalized Discounted Cumulative Gain\n    * Use SVD and compare results\n\"\"\"\n\nimport torch\nimport pytorch_lightning as pl\nimport pandas as pd\nimport torchmetrics\nfrom torch.utils.data import Dataset, DataLoader\nfrom torch import nn\nfrom sklearn.model_selection import train_test_split\n\ntorch.set_float32_matmul_precision(\"medium\") # to make lightning happy\n\nclass MovieLens(Dataset):\n    def __init__(self, df_ratings):\n        self.df_ratings = df_ratings\n\n    def __len__(self):\n        return len(self.df_ratings)\n\n    def __getitem__(self, idx):\n        row = self.df_ratings.iloc[idx]\n        user_id = torch.tensor(row[\"user_id\"], dtype=torch.long)\n        movie_id = torch.tensor(row[\"movie_id\"], dtype=torch.long)\n        rating = torch.tensor(row[\"rating\"], dtype=torch.float)\n        return user_id, movie_id, rating\n\n\nclass LightningData(pl.LightningDataModule):\n    def __init__(self, batch_size):\n        super().__init__()\n        self.batch_size = batch_size\n\n    def prepare_data(self):\n        self.df_ratings = pd.read_csv(\n            \"data/ratings.dat\",\n            sep=\"::\",\n            header=None,\n            names=[\"user_id\", \"movie_id\", \"rating\", \"timestamp\"],\n            engine=\"python\",\n        )\n\n\n        # split into train and test \n        self.df_ratings_train, self.df_ratings_val = train_test_split(\n            self.df_ratings, test_size=0.2, random_state=42\n        )\n\n    def setup(self, stage=None):\n        self.dataset_train = MovieLens(self.df_ratings_train)\n        self.dataset_val = MovieLens(self.df_ratings_val)\n\n    def train_dataloader(self):\n        return DataLoader(self.dataset_train, batch_size=self.batch_size, num_workers=6)\n\n    def val_dataloader(self):\n        return DataLoader(self.dataset_train, batch_size=self.batch_size, num_workers=2)\n\nclass Net(nn.Module):\n    def __init__(self, n_users, n_movies, n_factors=50):\n        super().__init__()\n        self.user_factors = nn.Embedding(n_users, n_factors)\n        self.movie_factors = nn.Embedding(n_movies, n_factors)\n        self.lin = nn.Linear(n_factors * 2, 1)\n\n    def forward(self, user, movie):\n        user_embedding = self.user_factors(user)\n        movie_embedding = self.movie_factors(movie)\n        x = torch.cat([user_embedding, movie_embedding], dim=1)\n        return self.lin(x)\n\n\nclass NetLightning(pl.LightningModule):\n    def __init__(self, n_users, n_movies, n_factors=50, lr=3e-4):\n        super().__init__()\n        self.num_users = n_users\n        self.num_movies = n_movies\n        self.net = Net(n_users, n_movies, n_factors)\n        self.loss_fn = nn.MSELoss()\n        self.MAE = torchmetrics.MeanAbsoluteError()\n        self.lr = lr\n\n    def forward(self, user, movie):\n        return self.net(user, movie)\n\n    def training_step(self, batch, batch_idx):\n        user, movie, rating = batch\n        out = self.forward(user, movie)\n        mae = self.MAE(out.squeeze(1), rating.float())\n        loss = self.loss_fn(out.squeeze(1), rating.float())\n        self.log_dict({\"train_loss\": loss, \"train_mae\": mae}, on_step=False, on_epoch=True, prog_bar=True)\n        return loss\n    \n    def validation_step(self, batch, batch_idx):\n        user, movie, rating = batch\n        out = self.forward(user, movie)\n        mae = self.MAE(out.squeeze(1), rating.float())\n        loss = self.loss_fn(out.squeeze(1), rating.float())\n        self.log_dict({\"val_loss\": loss, \"val_mae\": mae}, on_step=False, on_epoch=True, prog_bar=True)\n\n    def predict_step(self, user_id):\n        out = self.forward(user_id, torch.arange(0, self.num_movies))\n        return out\n\n    def configure_optimizers(self):\n        return torch.optim.Adam(self.parameters(), lr=self.lr)\n\n\ndm = LightningData(batch_size=512)\ndm.prepare_data()\ndm.setup()\n\nnum_movies = dm.df_ratings[\"movie_id\"].max() + 1\nnum_users = dm.df_ratings[\"user_id\"].max() + 1\n\nmodel = NetLightning(num_users, num_movies)\ntrainer = pl.Trainer(accelerator=\"gpu\", devices=1, max_epochs=3)\ntrainer.fit(model, dm)\ntrainer.validate(model, dm)\n"
  },
  {
    "path": "ML/TensorFlow/Basics/tutorial1-installation-videoonly.py",
    "content": ""
  },
  {
    "path": "ML/TensorFlow/Basics/tutorial10-save-model.py",
    "content": "import os\n\nos.environ[\"TF_CPP_MIN_LOG_LEVEL\"] = \"2\"\nimport tensorflow as tf\nfrom tensorflow import keras\nfrom tensorflow.keras import layers\nfrom tensorflow.keras.datasets import mnist\n\n# To Avoid GPU errors\nphysical_devices = tf.config.list_physical_devices(\"GPU\")\ntf.config.experimental.set_memory_growth(physical_devices[0], True)\n\n(x_train, y_train), (x_test, y_test) = mnist.load_data()\nx_train = x_train.reshape(-1, 28 * 28).astype(\"float32\") / 255.0\nx_test = x_test.reshape(-1, 28 * 28).astype(\"float32\") / 255.0\n\n# Alright, so here have some code which should feel familiar from previous tutorials,\n# here is what we want to cover\n# 1. How to save and load model weights\n# 2. Save and loading entire model (Serializing model)\n#   - Saves weights\n#   - Model architecture\n#   - Training Configuration (model.compile())\n#   - Optimizer and states\n\nmodel1 = keras.Sequential([layers.Dense(64, activation=\"relu\"), layers.Dense(10)])\n\ninputs = keras.Input(784)\nx = layers.Dense(64, activation=\"relu\")(inputs)\noutputs = layers.Dense(10)(x)\nmodel2 = keras.Model(inputs=inputs, outputs=outputs)\n\n\nclass MyModel(keras.Model):\n    def __init__(self):\n        super(MyModel, self).__init__()\n        self.dense1 = layers.Dense(64, activation=\"relu\")\n        self.dense2 = layers.Dense(10)\n\n    def call(self, input_tensor):\n        x = tf.nn.relu(self.dense1(input_tensor))\n        return self.dense2(x)\n\n\n# SavedModel format or HDF5 format\nmodel3 = MyModel()\n# model = keras.models.load_model('saved_model/')\n# model.load_weights('checkpoint_folder/')\n\nmodel.compile(\n    loss=keras.losses.SparseCategoricalCrossentropy(from_logits=True),\n    optimizer=keras.optimizers.Adam(),\n    metrics=[\"accuracy\"],\n)\n\nmodel.fit(x_train, y_train, batch_size=32, epochs=2, verbose=2)\nmodel.evaluate(x_test, y_test, batch_size=32, verbose=2)\n# model.save_weights('checkpoint_folder/')\nmodel.save(\"saved_model/\")\n"
  },
  {
    "path": "ML/TensorFlow/Basics/tutorial11-transfer-learning.py",
    "content": "import os\n\nos.environ[\"TF_CPP_MIN_LOG_LEVEL\"] = \"2\"\nimport tensorflow as tf\nfrom tensorflow import keras\nfrom tensorflow.keras import layers\nfrom tensorflow.keras.datasets import mnist\nimport tensorflow_hub as hub\n\n# To Avoid GPU errors\nphysical_devices = tf.config.list_physical_devices(\"GPU\")\ntf.config.experimental.set_memory_growth(physical_devices[0], True)\n\n# ================================================ #\n#                  Pretrained-Model                #\n# ================================================ #\n\n(x_train, y_train), (x_test, y_test) = mnist.load_data()\nx_train = x_train.reshape(-1, 28, 28, 1).astype(\"float32\") / 255.0\nx_test = x_test.reshape(-1, 28, 28, 1).astype(\"float32\") / 255.0\n\nmodel = keras.models.load_model(\"pretrained\")\n\n# Freeze all model layer weights\nmodel.trainable = False\n\n# Can also set trainable for specific layers\nfor layer in model.layers:\n    # assert should be true because of one-liner above\n    assert layer.trainable == False\n    layer.trainable = False\n\nprint(model.summary())  # for finding base input and output\nbase_inputs = model.layers[0].input\nbase_output = model.layers[-2].output\noutput = layers.Dense(10)(base_output)\nnew_model = keras.Model(base_inputs, output)\n\n# This model is actually identical to model we\n# loaded (this is just for demonstration and\n# and not something you would do in practice).\nprint(new_model.summary())\n\n# As usual we do compile and fit, this time on new_model\nnew_model.compile(\n    optimizer=keras.optimizers.Adam(),\n    loss=keras.losses.SparseCategoricalCrossentropy(from_logits=True),\n    metrics=[\"accuracy\"],\n)\n\nnew_model.fit(x_train, y_train, batch_size=32, epochs=3, verbose=2)\n\n# =================================================== #\n#                Pretrained Keras Model               #\n# =================================================== #\n\n# Random data for demonstration (3 examples w. 3 classes)\nx = tf.random.normal(shape=(3, 299, 299, 3))\ny = tf.constant([0, 1, 2])\n\nmodel = keras.applications.InceptionV3(include_top=True)\nprint(model.summary())\n\n# for input you can also do model.input,\n# then for base_outputs you can obviously\n# choose other than simply removing the last one :)\nbase_inputs = model.layers[0].input\nbase_outputs = model.layers[-2].output\nclassifier = layers.Dense(3)(base_outputs)\nnew_model = keras.Model(inputs=base_inputs, outputs=classifier)\nnew_model.compile(\n    optimizer=keras.optimizers.Adam(),\n    loss=keras.losses.SparseCategoricalCrossentropy(from_logits=True),\n    metrics=[\"accuracy\"],\n)\n\nprint(new_model.summary())\nnew_model.fit(x, y, epochs=15, verbose=2)\n\n# ================================================= #\n#                Pretrained Hub Model               #\n# ================================================= #\n\n# Random data for demonstration (3 examples w. 3 classes)\nx = tf.random.normal(shape=(3, 299, 299, 3))\ny = tf.constant([0, 1, 2])\n\nurl = \"https://tfhub.dev/google/imagenet/inception_v3/feature_vector/4\"\n\nbase_model = hub.KerasLayer(url, input_shape=(299, 299, 3))\nmodel = keras.Sequential(\n    [\n        base_model,\n        layers.Dense(128, activation=\"relu\"),\n        layers.Dense(64, activation=\"relu\"),\n        layers.Dense(10),\n    ]\n)\n\nmodel.compile(\n    optimizer=keras.optimizers.Adam(),\n    loss=keras.losses.SparseCategoricalCrossentropy(from_logits=True),\n    metrics=[\"accuracy\"],\n)\n\nmodel.fit(x, y, batch_size=32, epochs=15, verbose=2)\n"
  },
  {
    "path": "ML/TensorFlow/Basics/tutorial12-tensorflowdatasets.py",
    "content": "import os\nimport matplotlib.pyplot\n\nos.environ[\"TF_CPP_MIN_LOG_LEVEL\"] = \"2\"\nimport tensorflow as tf\nfrom tensorflow import keras\nfrom tensorflow.keras import layers\nimport tensorflow_datasets as tfds\n\nphysical_devices = tf.config.list_physical_devices(\"GPU\")\ntf.config.experimental.set_memory_growth(physical_devices[0], True)\n\n(ds_train, ds_test), ds_info = tfds.load(\n    \"mnist\",\n    split=[\"train\", \"test\"],\n    shuffle_files=True,\n    as_supervised=True,  # will return tuple (img, label) otherwise dict\n    with_info=True,  # able to get info about dataset\n)\n\n# fig = tfds.show_examples(ds_train, ds_info, rows=4, cols=4)\n# print(ds_info)\n\n\ndef normalize_img(image, label):\n    \"\"\"Normalizes images\"\"\"\n    return tf.cast(image, tf.float32) / 255.0, label\n\n\nAUTOTUNE = tf.data.experimental.AUTOTUNE\nBATCH_SIZE = 128\n\n# Setup for train dataset\nds_train = ds_train.map(normalize_img, num_parallel_calls=AUTOTUNE)\nds_train = ds_train.cache()\nds_train = ds_train.shuffle(ds_info.splits[\"train\"].num_examples)\nds_train = ds_train.batch(BATCH_SIZE)\nds_train = ds_train.prefetch(AUTOTUNE)\n\n# Setup for test Dataset\nds_test = ds_train.map(normalize_img, num_parallel_calls=AUTOTUNE)\nds_test = ds_train.batch(128)\nds_test = ds_train.prefetch(AUTOTUNE)\n\nmodel = keras.Sequential(\n    [\n        keras.Input((28, 28, 1)),\n        layers.Conv2D(32, 3, activation=\"relu\"),\n        layers.Flatten(),\n        tf.keras.layers.Dense(10, activation=\"softmax\"),\n    ]\n)\n\nmodel.compile(\n    optimizer=keras.optimizers.Adam(0.001),\n    loss=keras.losses.SparseCategoricalCrossentropy(),\n    metrics=[\"accuracy\"],\n)\n\nmodel.fit(ds_train, epochs=5, verbose=2)\nmodel.evaluate(ds_test)\n\n\n(ds_train, ds_test), ds_info = tfds.load(\n    \"imdb_reviews\",\n    split=[\"train\", \"test\"],\n    shuffle_files=True,\n    as_supervised=True,  # will return tuple (img, label) otherwise dict\n    with_info=True,  # able to get info about dataset\n)\n\ntokenizer = tfds.features.text.Tokenizer()\n\n\ndef build_vocabulary():\n    vocabulary = set()\n    for text, _ in ds_train:\n        vocabulary.update(tokenizer.tokenize(text.numpy().lower()))\n    return vocabulary\n\n\nvocabulary = build_vocabulary()\n\nencoder = tfds.features.text.TokenTextEncoder(\n    list(vocabulary), oov_token=\"<UNK>\", lowercase=True, tokenizer=tokenizer\n)\n\n\ndef my_enc(text_tensor, label):\n    encoded_text = encoder.encode(text_tensor.numpy())\n    return encoded_text, label\n\n\ndef encode_map_fn(text, label):\n    # py_func doesn't set the shape of the returned tensors.\n    encoded_text, label = tf.py_function(\n        my_enc, inp=[text, label], Tout=(tf.int64, tf.int64)\n    )\n\n    # `tf.data.Datasets` work best if all components have a shape set\n    #  so set the shapes manually:\n    encoded_text.set_shape([None])\n    label.set_shape([])\n\n    return encoded_text, label\n\n\nAUTOTUNE = tf.data.experimental.AUTOTUNE\nds_train = ds_train.map(encode_map_fn, num_parallel_calls=AUTOTUNE)\nds_train = ds_train.cache()\nds_train = ds_train.shuffle(1000)\nds_train = ds_train.padded_batch(32, padded_shapes=([None], ()))\nds_train = ds_train.prefetch(AUTOTUNE)\n\nds_test = ds_test.map(encode_map_fn)\nds_test = ds_test.padded_batch(32, padded_shapes=([None], ()))\n\nmodel = keras.Sequential(\n    [\n        layers.Masking(mask_value=0),\n        layers.Embedding(input_dim=len(vocabulary) + 2, output_dim=32),\n        layers.GlobalAveragePooling1D(),\n        layers.Dense(64, activation=\"relu\"),\n        layers.Dense(1),\n    ]\n)\n\nmodel.compile(\n    loss=keras.losses.BinaryCrossentropy(from_logits=True),\n    optimizer=keras.optimizers.Adam(3e-4, clipnorm=1),\n    metrics=[\"accuracy\"],\n)\n\nmodel.fit(ds_train, epochs=15, verbose=2)\nmodel.evaluate(ds_test)\n"
  },
  {
    "path": "ML/TensorFlow/Basics/tutorial13-data-augmentation.py",
    "content": "import os\n\nos.environ[\"TF_CPP_MIN_LOG_LEVEL\"] = \"2\"\nimport tensorflow as tf\nfrom tensorflow import keras\nfrom tensorflow.keras import layers\nimport tensorflow_datasets as tfds\n\n(ds_train, ds_test), ds_info = tfds.load(\n    \"cifar10\",\n    split=[\"train\", \"test\"],\n    shuffle_files=True,\n    as_supervised=True,  # will return tuple (img, label) otherwise dict\n    with_info=True,  # able to get info about dataset\n)\n\n\ndef normalize_img(image, label):\n    \"\"\"Normalizes images\"\"\"\n    return tf.cast(image, tf.float32) / 255.0, label\n\n\nAUTOTUNE = tf.data.experimental.AUTOTUNE\nBATCH_SIZE = 32\n\n\ndef augment(image, label):\n    new_height = new_width = 32\n    image = tf.image.resize(image, (new_height, new_width))\n\n    if tf.random.uniform((), minval=0, maxval=1) < 0.1:\n        image = tf.tile(tf.image.rgb_to_grayscale(image), [1, 1, 3])\n\n    image = tf.image.random_brightness(image, max_delta=0.1)\n    image = tf.image.random_contrast(image, lower=0.1, upper=0.2)\n\n    # a left upside down flipped is still a dog ;)\n    image = tf.image.random_flip_left_right(image)  # 50%\n    # image = tf.image.random_flip_up_down(image) #%50%\n\n    return image, label\n\n\n# Setup for train dataset\nds_train = ds_train.map(normalize_img, num_parallel_calls=AUTOTUNE)\nds_train = ds_train.cache()\nds_train = ds_train.shuffle(ds_info.splits[\"train\"].num_examples)\n# ds_train = ds_train.map(augment)\nds_train = ds_train.batch(BATCH_SIZE)\nds_train = ds_train.prefetch(AUTOTUNE)\n\n# Setup for test Dataset\nds_test = ds_train.map(normalize_img, num_parallel_calls=AUTOTUNE)\nds_test = ds_train.batch(BATCH_SIZE)\nds_test = ds_train.prefetch(AUTOTUNE)\n\n# TF >= 2.3.0\ndata_augmentation = keras.Sequential(\n    [\n        layers.experimental.preprocessing.Resizing(height=32, width=32,),\n        layers.experimental.preprocessing.RandomFlip(mode=\"horizontal\"),\n        layers.experimental.preprocessing.RandomContrast(factor=0.1,),\n    ]\n)\n\nmodel = keras.Sequential(\n    [\n        keras.Input((32, 32, 3)),\n        data_augmentation,\n        layers.Conv2D(4, 3, padding=\"same\", activation=\"relu\"),\n        layers.Conv2D(8, 3, padding=\"same\", activation=\"relu\"),\n        layers.MaxPooling2D(),\n        layers.Conv2D(16, 3, padding=\"same\", activation=\"relu\"),\n        layers.Flatten(),\n        layers.Dense(64, activation=\"relu\"),\n        layers.Dense(10),\n    ]\n)\n\nmodel.compile(\n    optimizer=keras.optimizers.Adam(3e-4),\n    loss=keras.losses.SparseCategoricalCrossentropy(from_logits=True),\n    metrics=[\"accuracy\"],\n)\n\nmodel.fit(ds_train, epochs=5, verbose=2)\nmodel.evaluate(ds_test)\n"
  },
  {
    "path": "ML/TensorFlow/Basics/tutorial14-callbacks.py",
    "content": "import os\nimport matplotlib.pyplot\n\nos.environ[\"TF_CPP_MIN_LOG_LEVEL\"] = \"2\"\nimport tensorflow as tf\nfrom tensorflow import keras\nfrom tensorflow.keras import layers\nimport tensorflow_datasets as tfds\n\nphysical_devices = tf.config.list_physical_devices(\"GPU\")\ntf.config.experimental.set_memory_growth(physical_devices[0], True)\n\n(ds_train, ds_test), ds_info = tfds.load(\n    \"mnist\",\n    split=[\"train\", \"test\"],\n    shuffle_files=True,\n    as_supervised=True,  # will return tuple (img, label) otherwise dict\n    with_info=True,  # able to get info about dataset\n)\n\n\ndef normalize_img(image, label):\n    \"\"\"Normalizes images\"\"\"\n    return tf.cast(image, tf.float32) / 255.0, label\n\n\nAUTOTUNE = tf.data.experimental.AUTOTUNE\nBATCH_SIZE = 128\n\n# Setup for train dataset\nds_train = ds_train.map(normalize_img, num_parallel_calls=AUTOTUNE)\nds_train = ds_train.cache()\nds_train = ds_train.shuffle(ds_info.splits[\"train\"].num_examples)\nds_train = ds_train.batch(BATCH_SIZE)\nds_train = ds_train.prefetch(AUTOTUNE)\n\nmodel = keras.Sequential(\n    [\n        keras.Input((28, 28, 1)),\n        layers.Conv2D(32, 3, activation=\"relu\"),\n        layers.Flatten(),\n        tf.keras.layers.Dense(10, activation=\"softmax\"),\n    ]\n)\n\nsave_callback = keras.callbacks.ModelCheckpoint(\n    \"checkpoint/\", save_weights_only=True, monitor=\"train_acc\", save_best_only=False,\n)\n\nlr_scheduler = keras.callbacks.ReduceLROnPlateau(\n    monitor=\"loss\", factor=0.1, patience=3, mode=\"max\", verbose=1\n)\n\n\nclass OurOwnCallback(keras.callbacks.Callback):\n    def on_epoch_end(self, epoch, logs=None):\n        if logs.get(\"accuracy\") > 1:\n            print(\"Accuracy over 70%, quitting training\")\n            self.model.stop_training = True\n\n\nmodel.compile(\n    optimizer=keras.optimizers.Adam(0.01),\n    loss=keras.losses.SparseCategoricalCrossentropy(),\n    metrics=[\"accuracy\"],\n)\n\nmodel.fit(\n    ds_train,\n    epochs=10,\n    callbacks=[save_callback, lr_scheduler, OurOwnCallback()],\n    verbose=2,\n)\n"
  },
  {
    "path": "ML/TensorFlow/Basics/tutorial15-customizing-modelfit.py",
    "content": "import os\n\nos.environ[\"TF_CPP_MIN_LOG_LEVEL\"] = \"2\"\n\nimport tensorflow as tf\nfrom tensorflow import keras\nfrom tensorflow.keras import layers\nfrom tensorflow.keras.datasets import mnist\n\n(x_train, y_train), (x_test, y_test) = mnist.load_data()\nx_train = x_train.reshape(-1, 28, 28, 1).astype(\"float32\") / 255.0\nx_test = x_test.reshape(-1, 28, 28, 1).astype(\"float32\") / 255.0\n\nmodel = keras.Sequential(\n    [\n        layers.Input(shape=(28, 28, 1)),\n        layers.Conv2D(64, (3, 3), padding=\"same\"),\n        layers.ReLU(),\n        layers.Conv2D(128, (3, 3), padding=\"same\"),\n        layers.ReLU(),\n        layers.Flatten(),\n        layers.Dense(10),\n    ],\n    name=\"model\",\n)\n\n\nclass CustomFit(keras.Model):\n    def __init__(self, model):\n        super(CustomFit, self).__init__()\n        self.model = model\n\n    def compile(self, optimizer, loss):\n        super(CustomFit, self).compile()\n        self.optimizer = optimizer\n        self.loss = loss\n\n    def train_step(self, data):\n        x, y = data\n\n        with tf.GradientTape() as tape:\n            # Caclulate predictions\n            y_pred = self.model(x, training=True)\n\n            # Loss\n            loss = self.loss(y, y_pred)\n\n        # Gradients\n        training_vars = self.trainable_variables\n        gradients = tape.gradient(loss, training_vars)\n\n        # Step with optimizer\n        self.optimizer.apply_gradients(zip(gradients, training_vars))\n        acc_metric.update_state(y, y_pred)\n\n        return {\"loss\": loss, \"accuracy\": acc_metric.result()}\n\n    def test_step(self, data):\n        # Unpack the data\n        x, y = data\n\n        # Compute predictions\n        y_pred = self.model(x, training=False)\n\n        # Updates the metrics tracking the loss\n        loss = self.loss(y, y_pred)\n\n        # Update the metrics.\n        acc_metric.update_state(y, y_pred)\n        return {\"loss\": loss, \"accuracy\": acc_metric.result()}\n\n\nacc_metric = keras.metrics.SparseCategoricalAccuracy(name=\"accuracy\")\n\ntraining = CustomFit(model)\ntraining.compile(\n    optimizer=keras.optimizers.Adam(learning_rate=3e-4),\n    loss=keras.losses.SparseCategoricalCrossentropy(from_logits=True),\n)\n\ntraining.fit(x_train, y_train, batch_size=64, epochs=2)\ntraining.evaluate(x_test, y_test, batch_size=64)\n"
  },
  {
    "path": "ML/TensorFlow/Basics/tutorial16-customloops.py",
    "content": "import os\n\nos.environ[\"TF_CPP_MIN_LOG_LEVEL\"] = \"2\"\n\nimport tensorflow as tf\nfrom tensorflow import keras\nfrom tensorflow.keras import layers\nfrom tensorflow.keras.datasets import mnist\nimport tensorflow_datasets as tfds\n\nphysical_devices = tf.config.list_physical_devices(\"GPU\")\ntf.config.experimental.set_memory_growth(physical_devices[0], True)\n\n(ds_train, ds_test), ds_info = tfds.load(\n    \"mnist\",\n    split=[\"train\", \"test\"],\n    shuffle_files=True,\n    as_supervised=True,\n    with_info=True,\n)\n\n\ndef normalize_img(image, label):\n    \"\"\"Normalizes images\"\"\"\n    return tf.cast(image, tf.float32) / 255.0, label\n\n\nAUTOTUNE = tf.data.experimental.AUTOTUNE\nBATCH_SIZE = 128\n\n# Setup for train dataset\nds_train = ds_train.map(normalize_img, num_parallel_calls=AUTOTUNE)\nds_train = ds_train.cache()\nds_train = ds_train.shuffle(ds_info.splits[\"train\"].num_examples)\nds_train = ds_train.batch(BATCH_SIZE)\nds_train = ds_train.prefetch(AUTOTUNE)\n\n# Setup for test Dataset\nds_test = ds_train.map(normalize_img, num_parallel_calls=AUTOTUNE)\nds_test = ds_train.batch(128)\nds_test = ds_train.prefetch(AUTOTUNE)\n\nmodel = keras.Sequential(\n    [\n        keras.Input((28, 28, 1)),\n        layers.Conv2D(32, 3, activation=\"relu\"),\n        layers.Flatten(),\n        layers.Dense(10, activation=\"softmax\"),\n    ]\n)\n\nnum_epochs = 5\noptimizer = keras.optimizers.Adam()\nloss_fn = keras.losses.SparseCategoricalCrossentropy(from_logits=True)\nacc_metric = keras.metrics.SparseCategoricalAccuracy()\n\n# Training Loop\nfor epoch in range(num_epochs):\n    print(f\"\\nStart of Training Epoch {epoch}\")\n    for batch_idx, (x_batch, y_batch) in enumerate(ds_train):\n        with tf.GradientTape() as tape:\n            y_pred = model(x_batch, training=True)\n            loss = loss_fn(y_batch, y_pred)\n\n        gradients = tape.gradient(loss, model.trainable_weights)\n        optimizer.apply_gradients(zip(gradients, model.trainable_weights))\n        acc_metric.update_state(y_batch, y_pred)\n\n    train_acc = acc_metric.result()\n    print(f\"Accuracy over epoch {train_acc}\")\n    acc_metric.reset_states()\n\n# Test Loop\nfor batch_idx, (x_batch, y_batch) in enumerate(ds_test):\n    y_pred = model(x_batch, training=True)\n    acc_metric.update_state(y_batch, y_pred)\n\ntrain_acc = acc_metric.result()\nprint(f\"Accuracy over Test Set: {train_acc}\")\nacc_metric.reset_states()\n"
  },
  {
    "path": "ML/TensorFlow/Basics/tutorial17-tensorboard/1_tb_callback.py",
    "content": "import os\n\nos.environ[\"TF_CPP_MIN_LOG_LEVEL\"] = \"2\"\n\nimport io\nimport tensorflow as tf\nimport matplotlib.pyplot as plt\nimport numpy as np\nimport tensorflow_datasets as tfds\n\nfrom tensorflow import keras\nfrom tensorflow.keras import layers\n\n# Make sure we don't get any GPU errors\nphysical_devices = tf.config.list_physical_devices(\"GPU\")\ntf.config.experimental.set_memory_growth(physical_devices[0], True)\n\n(ds_train, ds_test), ds_info = tfds.load(\n    \"cifar10\",\n    split=[\"train\", \"test\"],\n    shuffle_files=True,\n    as_supervised=True,\n    with_info=True,\n)\n\n\ndef normalize_img(image, label):\n    \"\"\"Normalizes images\"\"\"\n    return tf.cast(image, tf.float32) / 255.0, label\n\n\ndef augment(image, label):\n    if tf.random.uniform((), minval=0, maxval=1) < 0.1:\n        image = tf.tile(tf.image.rgb_to_grayscale(image), [1, 1, 3])\n\n    image = tf.image.random_brightness(image, max_delta=0.1)\n    image = tf.image.random_flip_left_right(image)\n\n    return image, label\n\n\nAUTOTUNE = tf.data.experimental.AUTOTUNE\nBATCH_SIZE = 32\n\n# Setup for train dataset\nds_train = ds_train.map(normalize_img, num_parallel_calls=AUTOTUNE)\nds_train = ds_train.cache()\nds_train = ds_train.shuffle(ds_info.splits[\"train\"].num_examples)\nds_train = ds_train.map(augment)\nds_train = ds_train.batch(BATCH_SIZE)\nds_train = ds_train.prefetch(AUTOTUNE)\n\n# Setup for test Dataset\nds_test = ds_train.map(normalize_img, num_parallel_calls=AUTOTUNE)\nds_test = ds_train.batch(BATCH_SIZE)\nds_test = ds_train.prefetch(AUTOTUNE)\n\nclass_names = [\n    \"Airplane\",\n    \"Autmobile\",\n    \"Bird\",\n    \"Cat\",\n    \"Deer\",\n    \"Dog\",\n    \"Frog\",\n    \"Horse\",\n    \"Ship\",\n    \"Truck\",\n]\n\n\ndef get_model():\n    model = keras.Sequential(\n        [\n            layers.Input((32, 32, 3)),\n            layers.Conv2D(8, 3, padding=\"same\", activation=\"relu\"),\n            layers.Conv2D(16, 3, padding=\"same\", activation=\"relu\"),\n            layers.MaxPooling2D((2, 2)),\n            layers.Flatten(),\n            layers.Dense(64, activation=\"relu\"),\n            layers.Dropout(0.1),\n            layers.Dense(10),\n        ]\n    )\n\n    return model\n\n\nmodel = get_model()\n\nmodel.compile(\n    optimizer=keras.optimizers.Adam(lr=0.001),\n    loss=keras.losses.SparseCategoricalCrossentropy(from_logits=True),\n    metrics=[\"accuracy\"],\n)\n\ntensorboard_callback = keras.callbacks.TensorBoard(\n    log_dir=\"tb_callback_dir\", histogram_freq=1,\n)\n\nmodel.fit(\n    ds_train,\n    epochs=5,\n    validation_data=ds_test,\n    callbacks=[tensorboard_callback],\n    verbose=2,\n)\n"
  },
  {
    "path": "ML/TensorFlow/Basics/tutorial17-tensorboard/2_tb_scalars.py",
    "content": "import os\n\nos.environ[\"TF_CPP_MIN_LOG_LEVEL\"] = \"2\"\n\nimport io\nimport tensorflow as tf\nimport matplotlib.pyplot as plt\nimport numpy as np\nimport tensorflow_datasets as tfds\n\nfrom tensorflow import keras\nfrom tensorflow.keras import layers\n\n# Make sure we don't get any GPU errors\nphysical_devices = tf.config.list_physical_devices(\"GPU\")\ntf.config.experimental.set_memory_growth(physical_devices[0], True)\n\n(ds_train, ds_test), ds_info = tfds.load(\n    \"cifar10\",\n    split=[\"train\", \"test\"],\n    shuffle_files=True,\n    as_supervised=True,\n    with_info=True,\n)\n\n\ndef normalize_img(image, label):\n    \"\"\"Normalizes images\"\"\"\n    return tf.cast(image, tf.float32) / 255.0, label\n\n\nAUTOTUNE = tf.data.experimental.AUTOTUNE\nBATCH_SIZE = 32\n\n\ndef augment(image, label):\n    if tf.random.uniform((), minval=0, maxval=1) < 0.1:\n        image = tf.tile(tf.image.rgb_to_grayscale(image), [1, 1, 3])\n\n    image = tf.image.random_brightness(image, max_delta=0.1)\n    image = tf.image.random_flip_left_right(image)\n\n    return image, label\n\n\n# Setup for train dataset\nds_train = ds_train.map(normalize_img, num_parallel_calls=AUTOTUNE)\nds_train = ds_train.cache()\nds_train = ds_train.shuffle(ds_info.splits[\"train\"].num_examples)\nds_train = ds_train.map(augment)\nds_train = ds_train.batch(BATCH_SIZE)\nds_train = ds_train.prefetch(AUTOTUNE)\n\n# Setup for test Dataset\nds_test = ds_train.map(normalize_img, num_parallel_calls=AUTOTUNE)\nds_test = ds_train.batch(BATCH_SIZE)\nds_test = ds_train.prefetch(AUTOTUNE)\n\nclass_names = [\n    \"Airplane\",\n    \"Autmobile\",\n    \"Bird\",\n    \"Cat\",\n    \"Deer\",\n    \"Dog\",\n    \"Frog\",\n    \"Horse\",\n    \"Ship\",\n    \"Truck\",\n]\n\n\ndef get_model():\n    model = keras.Sequential(\n        [\n            layers.Input((32, 32, 3)),\n            layers.Conv2D(8, 3, padding=\"same\", activation=\"relu\"),\n            layers.Conv2D(16, 3, padding=\"same\", activation=\"relu\"),\n            layers.MaxPooling2D((2, 2)),\n            layers.Flatten(),\n            layers.Dense(64, activation=\"relu\"),\n            layers.Dropout(0.1),\n            layers.Dense(10),\n        ]\n    )\n\n    return model\n\n\nmodel = get_model()\nnum_epochs = 1\nloss_fn = keras.losses.SparseCategoricalCrossentropy(from_logits=True)\noptimizer = keras.optimizers.Adam(lr=0.001)\nacc_metric = keras.metrics.SparseCategoricalAccuracy()\ntrain_writer = tf.summary.create_file_writer(\"logs/train/\")\ntest_writer = tf.summary.create_file_writer(\"logs/test/\")\ntrain_step = test_step = 0\n\n\nfor lr in [1e-1, 1e-2, 1e-3, 1e-4, 1e-5]:\n    train_step = test_step = 0\n    train_writer = tf.summary.create_file_writer(\"logs/train/\" + str(lr))\n    test_writer = tf.summary.create_file_writer(\"logs/test/\" + str(lr))\n    model = get_model()\n    optimizer = keras.optimizers.Adam(lr=lr)\n\n    for epoch in range(num_epochs):\n        # Iterate through training set\n        for batch_idx, (x, y) in enumerate(ds_train):\n            with tf.GradientTape() as tape:\n                y_pred = model(x, training=True)\n                loss = loss_fn(y, y_pred)\n\n            gradients = tape.gradient(loss, model.trainable_weights)\n            optimizer.apply_gradients(zip(gradients, model.trainable_weights))\n            acc_metric.update_state(y, y_pred)\n\n            with train_writer.as_default():\n                tf.summary.scalar(\"Loss\", loss, step=train_step)\n                tf.summary.scalar(\n                    \"Accuracy\", acc_metric.result(), step=train_step,\n                )\n                train_step += 1\n\n        # Reset accuracy in between epochs (and for testing and test)\n        acc_metric.reset_states()\n\n        # Iterate through test set\n        for batch_idx, (x, y) in enumerate(ds_test):\n            y_pred = model(x, training=False)\n            loss = loss_fn(y, y_pred)\n            acc_metric.update_state(y, y_pred)\n\n            with test_writer.as_default():\n                tf.summary.scalar(\"Loss\", loss, step=test_step)\n                tf.summary.scalar(\n                    \"Accuracy\", acc_metric.result(), step=test_step,\n                )\n                test_step += 1\n\n        acc_metric.reset_states()\n\n    # Reset accuracy in between epochs (and for testing and test)\n    acc_metric.reset_states()\n"
  },
  {
    "path": "ML/TensorFlow/Basics/tutorial17-tensorboard/3_tb_images.py",
    "content": "import os\n\nos.environ[\"TF_CPP_MIN_LOG_LEVEL\"] = \"2\"\n\nimport io\nimport tensorflow as tf\nimport matplotlib.pyplot as plt\nimport numpy as np\nimport tensorflow_datasets as tfds\n\nfrom tensorflow import keras\nfrom tensorflow.keras import layers\n\nfrom utils import plot_to_image, image_grid\n\n# Make sure we don't get any GPU errors\nphysical_devices = tf.config.list_physical_devices(\"GPU\")\ntf.config.experimental.set_memory_growth(physical_devices[0], True)\n\n(ds_train, ds_test), ds_info = tfds.load(\n    \"cifar10\",\n    split=[\"train\", \"test\"],\n    shuffle_files=True,\n    as_supervised=True,\n    with_info=True,\n)\n\n\ndef normalize_img(image, label):\n    \"\"\"Normalizes images\"\"\"\n    return tf.cast(image, tf.float32) / 255.0, label\n\n\nAUTOTUNE = tf.data.experimental.AUTOTUNE\nBATCH_SIZE = 32\n\n\ndef augment(image, label):\n    if tf.random.uniform((), minval=0, maxval=1) < 0.1:\n        image = tf.tile(tf.image.rgb_to_grayscale(image), [1, 1, 3])\n\n    image = tf.image.random_brightness(image, max_delta=0.1)\n    image = tf.image.random_flip_left_right(image)\n\n    # matplotlib wants [0,1] values\n    image = tf.clip_by_value(image, clip_value_min=0, clip_value_max=1)\n\n    return image, label\n\n\n# Setup for train dataset\nds_train = ds_train.map(normalize_img, num_parallel_calls=AUTOTUNE)\nds_train = ds_train.cache()\nds_train = ds_train.shuffle(ds_info.splits[\"train\"].num_examples)\nds_train = ds_train.map(augment)\nds_train = ds_train.batch(BATCH_SIZE)\nds_train = ds_train.prefetch(AUTOTUNE)\n\n# Setup for test Dataset\nds_test = ds_train.map(normalize_img, num_parallel_calls=AUTOTUNE)\nds_test = ds_train.batch(BATCH_SIZE)\nds_test = ds_train.prefetch(AUTOTUNE)\n\nclass_names = [\n    \"Airplane\",\n    \"Autmobile\",\n    \"Bird\",\n    \"Cat\",\n    \"Deer\",\n    \"Dog\",\n    \"Frog\",\n    \"Horse\",\n    \"Ship\",\n    \"Truck\",\n]\n\n\ndef get_model():\n    model = keras.Sequential(\n        [\n            layers.Input((32, 32, 3)),\n            layers.Conv2D(8, 3, padding=\"same\", activation=\"relu\"),\n            layers.Conv2D(16, 3, padding=\"same\", activation=\"relu\"),\n            layers.MaxPooling2D((2, 2)),\n            layers.Flatten(),\n            layers.Dense(64, activation=\"relu\"),\n            layers.Dropout(0.1),\n            layers.Dense(10),\n        ]\n    )\n\n    return model\n\n\nmodel = get_model()\nnum_epochs = 1\nloss_fn = keras.losses.SparseCategoricalCrossentropy(from_logits=True)\noptimizer = keras.optimizers.Adam(lr=0.001)\nacc_metric = keras.metrics.SparseCategoricalAccuracy()\nwriter = tf.summary.create_file_writer(\"logs/train/\")\nstep = 0\n\n\nfor epoch in range(num_epochs):\n    for batch_idx, (x, y) in enumerate(ds_train):\n        figure = image_grid(x, y, class_names)\n\n        with writer.as_default():\n            tf.summary.image(\n                \"Visualize Images\", plot_to_image(figure), step=step,\n            )\n            step += 1\n"
  },
  {
    "path": "ML/TensorFlow/Basics/tutorial17-tensorboard/4_tb_confusion.py",
    "content": "import os\n\nos.environ[\"TF_CPP_MIN_LOG_LEVEL\"] = \"2\"\n\nimport io\nimport tensorflow as tf\nimport matplotlib.pyplot as plt\nimport numpy as np\nimport tensorflow_datasets as tfds\n\nfrom tensorflow import keras\nfrom tensorflow.keras import layers\n\nfrom utils import get_confusion_matrix, plot_confusion_matrix\n\n# Make sure we don't get any GPU errors\nphysical_devices = tf.config.list_physical_devices(\"GPU\")\ntf.config.experimental.set_memory_growth(physical_devices[0], True)\n\n(ds_train, ds_test), ds_info = tfds.load(\n    \"cifar10\",\n    split=[\"train\", \"test\"],\n    shuffle_files=True,\n    as_supervised=True,\n    with_info=True,\n)\n\n\ndef normalize_img(image, label):\n    \"\"\"Normalizes images\"\"\"\n    return tf.cast(image, tf.float32) / 255.0, label\n\n\nAUTOTUNE = tf.data.experimental.AUTOTUNE\nBATCH_SIZE = 32\n\n\ndef augment(image, label):\n    if tf.random.uniform((), minval=0, maxval=1) < 0.1:\n        image = tf.tile(tf.image.rgb_to_grayscale(image), [1, 1, 3])\n\n    image = tf.image.random_brightness(image, max_delta=0.1)\n    image = tf.image.random_flip_left_right(image)\n\n    return image, label\n\n\n# Setup for train dataset\nds_train = ds_train.map(normalize_img, num_parallel_calls=AUTOTUNE)\nds_train = ds_train.cache()\nds_train = ds_train.shuffle(ds_info.splits[\"train\"].num_examples)\nds_train = ds_train.map(augment)\nds_train = ds_train.batch(BATCH_SIZE)\nds_train = ds_train.prefetch(AUTOTUNE)\n\n# Setup for test Dataset\nds_test = ds_train.map(normalize_img, num_parallel_calls=AUTOTUNE)\nds_test = ds_train.batch(BATCH_SIZE)\nds_test = ds_train.prefetch(AUTOTUNE)\n\nclass_names = [\n    \"Airplane\",\n    \"Autmobile\",\n    \"Bird\",\n    \"Cat\",\n    \"Deer\",\n    \"Dog\",\n    \"Frog\",\n    \"Horse\",\n    \"Ship\",\n    \"Truck\",\n]\n\n\ndef get_model():\n    model = keras.Sequential(\n        [\n            layers.Input((32, 32, 3)),\n            layers.Conv2D(8, 3, padding=\"same\", activation=\"relu\"),\n            layers.Conv2D(16, 3, padding=\"same\", activation=\"relu\"),\n            layers.MaxPooling2D((2, 2)),\n            layers.Flatten(),\n            layers.Dense(64, activation=\"relu\"),\n            layers.Dropout(0.1),\n            layers.Dense(10),\n        ]\n    )\n\n    return model\n\n\nmodel = get_model()\nnum_epochs = 5\nloss_fn = keras.losses.SparseCategoricalCrossentropy(from_logits=True)\noptimizer = keras.optimizers.Adam(lr=0.001)\nacc_metric = keras.metrics.SparseCategoricalAccuracy()\ntrain_writer = tf.summary.create_file_writer(\"logs/train/\")\ntest_writer = tf.summary.create_file_writer(\"logs/test/\")\ntrain_step = test_step = 0\n\n\nfor epoch in range(num_epochs):\n    confusion = np.zeros((len(class_names), len(class_names)))\n\n    # Iterate through training set\n    for batch_idx, (x, y) in enumerate(ds_train):\n        with tf.GradientTape() as tape:\n            y_pred = model(x, training=True)\n            loss = loss_fn(y, y_pred)\n\n        gradients = tape.gradient(loss, model.trainable_weights)\n        optimizer.apply_gradients(zip(gradients, model.trainable_weights))\n        acc_metric.update_state(y, y_pred)\n        confusion += get_confusion_matrix(y, y_pred, class_names)\n\n    with train_writer.as_default():\n        tf.summary.image(\n            \"Confusion Matrix\",\n            plot_confusion_matrix(confusion / batch_idx, class_names),\n            step=epoch,\n        )\n\n    # Reset accuracy in between epochs (and for testing and test)\n    acc_metric.reset_states()\n"
  },
  {
    "path": "ML/TensorFlow/Basics/tutorial17-tensorboard/5_tb_graph.py",
    "content": "import os\n\nos.environ[\"TF_CPP_MIN_LOG_LEVEL\"] = \"2\"\n\nimport io\nimport tensorflow as tf\nimport matplotlib.pyplot as plt\nimport numpy as np\nimport tensorflow_datasets as tfds\n\nfrom tensorflow import keras\nfrom tensorflow.keras import layers\n\n# Make sure we don't get any GPU errors\nphysical_devices = tf.config.list_physical_devices(\"GPU\")\ntf.config.experimental.set_memory_growth(physical_devices[0], True)\n\nwriter = tf.summary.create_file_writer(\"logs/graph_vis\")\n\n\n@tf.function\ndef my_func(x, y):\n    return tf.nn.relu(tf.matmul(x, y))\n\n\nx = tf.random.uniform((3, 3))\ny = tf.random.uniform((3, 3))\n\ntf.summary.trace_on(graph=True, profiler=True)\nout = my_func(x, y)\n\nwith writer.as_default():\n    tf.summary.trace_export(\n        name=\"function_trace\", step=0, profiler_outdir=\"logs\\\\graph_vis\\\\\"\n    )\n"
  },
  {
    "path": "ML/TensorFlow/Basics/tutorial17-tensorboard/6_tb_hparams.py",
    "content": "import os\n\nos.environ[\"TF_CPP_MIN_LOG_LEVEL\"] = \"2\"\n\nimport io\nimport tensorflow as tf\nimport matplotlib.pyplot as plt\nimport numpy as np\nimport tensorflow_datasets as tfds\n\nfrom tensorboard.plugins.hparams import api as hp\nfrom tensorflow import keras\nfrom tensorflow.keras import layers\n\n# Make sure we don't get any GPU errors\nphysical_devices = tf.config.list_physical_devices(\"GPU\")\ntf.config.experimental.set_memory_growth(physical_devices[0], True)\n\n(ds_train, ds_test), ds_info = tfds.load(\n    \"cifar10\",\n    split=[\"train\", \"test\"],\n    shuffle_files=True,\n    as_supervised=True,\n    with_info=True,\n)\n\n\ndef normalize_img(image, label):\n    \"\"\"Normalizes images\"\"\"\n    return tf.cast(image, tf.float32) / 255.0, label\n\n\nAUTOTUNE = tf.data.experimental.AUTOTUNE\nBATCH_SIZE = 32\n\n\ndef augment(image, label):\n    if tf.random.uniform((), minval=0, maxval=1) < 0.1:\n        image = tf.tile(tf.image.rgb_to_grayscale(image), [1, 1, 3])\n\n    image = tf.image.random_brightness(image, max_delta=0.1)\n    image = tf.image.random_flip_left_right(image)\n\n    return image, label\n\n\n# Setup for train dataset\nds_train = ds_train.map(normalize_img, num_parallel_calls=AUTOTUNE)\nds_train = ds_train.cache()\nds_train = ds_train.shuffle(ds_info.splits[\"train\"].num_examples)\nds_train = ds_train.map(augment)\nds_train = ds_train.batch(BATCH_SIZE)\nds_train = ds_train.prefetch(AUTOTUNE)\n\n# Setup for test Dataset\nds_test = ds_train.map(normalize_img, num_parallel_calls=AUTOTUNE)\nds_test = ds_train.batch(BATCH_SIZE)\nds_test = ds_train.prefetch(AUTOTUNE)\n\nclass_names = [\n    \"Airplane\",\n    \"Autmobile\",\n    \"Bird\",\n    \"Cat\",\n    \"Deer\",\n    \"Dog\",\n    \"Frog\",\n    \"Horse\",\n    \"Ship\",\n    \"Truck\",\n]\n\n\ndef train_model_one_epoch(hparams):\n    units = hparams[HP_NUM_UNITS]\n    drop_rate = hparams[HP_DROPOUT]\n    learning_rate = hparams[HP_LR]\n\n    optimizer = keras.optimizers.Adam(lr=learning_rate)\n    model = keras.Sequential(\n        [\n            layers.Input((32, 32, 3)),\n            layers.Conv2D(8, 3, padding=\"same\", activation=\"relu\"),\n            layers.Conv2D(16, 3, padding=\"same\", activation=\"relu\"),\n            layers.MaxPooling2D((2, 2)),\n            layers.Flatten(),\n            layers.Dense(units, activation=\"relu\"),\n            layers.Dropout(drop_rate),\n            layers.Dense(10),\n        ]\n    )\n\n    for batch_idx, (x, y) in enumerate(ds_train):\n        with tf.GradientTape() as tape:\n            y_pred = model(x, training=True)\n            loss = loss_fn(y, y_pred)\n\n        gradients = tape.gradient(loss, model.trainable_weights)\n        optimizer.apply_gradients(zip(gradients, model.trainable_weights))\n        acc_metric.update_state(y, y_pred)\n\n    # write to TB\n    run_dir = (\n        \"logs/train/\"\n        + str(units)\n        + \"units_\"\n        + str(drop_rate)\n        + \"dropout_\"\n        + str(learning_rate)\n        + \"learning_rate\"\n    )\n\n    with tf.summary.create_file_writer(run_dir).as_default():\n        hp.hparams(hparams)\n        accuracy = acc_metric.result()\n        tf.summary.scalar(\"accuracy\", accuracy, step=1)\n\n    acc_metric.reset_states()\n\n\nloss_fn = keras.losses.SparseCategoricalCrossentropy(from_logits=True)\noptimizer = keras.optimizers.Adam(lr=0.001)\nacc_metric = keras.metrics.SparseCategoricalAccuracy()\nHP_NUM_UNITS = hp.HParam(\"num units\", hp.Discrete([32, 64, 128]))\nHP_DROPOUT = hp.HParam(\"dropout\", hp.Discrete([0.1, 0.2, 0.3, 0.5]))\nHP_LR = hp.HParam(\"learning_rate\", hp.Discrete([1e-3, 1e-4, 1e-5]))\n\nfor lr in HP_LR.domain.values:\n    for units in HP_NUM_UNITS.domain.values:\n        for rate in HP_DROPOUT.domain.values:\n            hparams = {\n                HP_LR: lr,\n                HP_NUM_UNITS: units,\n                HP_DROPOUT: rate,\n            }\n\n            train_model_one_epoch(hparams)\n"
  },
  {
    "path": "ML/TensorFlow/Basics/tutorial17-tensorboard/7_tb_projector.py",
    "content": "import os\n\nos.environ[\"TF_CPP_MIN_LOG_LEVEL\"] = \"2\"\n\nimport io\nimport tensorflow as tf\nimport matplotlib.pyplot as plt\nimport numpy as np\nimport tensorflow_datasets as tfds\n\nfrom tensorflow import keras\nfrom tensorflow.keras import layers\n\nfrom utils import plot_to_projector\n\n# Make sure we don't get any GPU errors\nphysical_devices = tf.config.list_physical_devices(\"GPU\")\ntf.config.experimental.set_memory_growth(physical_devices[0], True)\n\n(ds_train, ds_test), ds_info = tfds.load(\n    \"mnist\",\n    split=[\"train\", \"test\"],\n    shuffle_files=True,\n    as_supervised=True,\n    with_info=True,\n)\n\n\ndef normalize_img(image, label):\n    \"\"\"Normalizes images\"\"\"\n    return tf.cast(image, tf.float32), label\n\n\nAUTOTUNE = tf.data.experimental.AUTOTUNE\nBATCH_SIZE = 500\n\n\ndef augment(image, label):\n    return image, label\n\n\n# Setup for train dataset\nds_train = ds_train.map(normalize_img, num_parallel_calls=AUTOTUNE)\nds_train = ds_train.cache()\nds_train = ds_train.shuffle(ds_info.splits[\"train\"].num_examples)\nds_train = ds_train.map(augment)\nds_train = ds_train.batch(BATCH_SIZE)\nds_train = ds_train.prefetch(AUTOTUNE)\n\n# Setup for test Dataset\nds_test = ds_train.map(normalize_img, num_parallel_calls=AUTOTUNE)\nds_test = ds_train.batch(BATCH_SIZE)\nds_test = ds_train.prefetch(AUTOTUNE)\n\nclass_names = [\n    \"Airplane\",\n    \"Autmobile\",\n    \"Bird\",\n    \"Cat\",\n    \"Deer\",\n    \"Dog\",\n    \"Frog\",\n    \"Horse\",\n    \"Ship\",\n    \"Truck\",\n]\n\nx_batch, y_batch = next(iter(ds_train))\nplot_to_projector(x_batch, x_batch, y_batch, class_names, log_dir=\"proj\")\n"
  },
  {
    "path": "ML/TensorFlow/Basics/tutorial17-tensorboard/utils.py",
    "content": "import matplotlib.pyplot as plt\nimport tensorflow as tf\nfrom tensorflow import keras\nimport numpy as np\nimport io\nimport sklearn.metrics\nfrom tensorboard.plugins import projector\nimport cv2\nimport os\nimport shutil\n\n# Stolen from tensorflow official guide:\n# https://www.tensorflow.org/tensorboard/image_summaries\ndef plot_to_image(figure):\n    \"\"\"Converts the matplotlib plot specified by 'figure' to a PNG image and\n    returns it. The supplied figure is closed and inaccessible after this call.\"\"\"\n\n    # Save the plot to a PNG in memory.\n    buf = io.BytesIO()\n    plt.savefig(buf, format=\"png\")\n\n    # Closing the figure prevents it from being displayed directly inside\n    # the notebook.\n    plt.close(figure)\n    buf.seek(0)\n\n    # Convert PNG buffer to TF image\n    image = tf.image.decode_png(buf.getvalue(), channels=4)\n\n    # Add the batch dimension\n    image = tf.expand_dims(image, 0)\n    return image\n\n\ndef image_grid(data, labels, class_names):\n    # Data should be in (BATCH_SIZE, H, W, C)\n    assert data.ndim == 4\n\n    figure = plt.figure(figsize=(10, 10))\n    num_images = data.shape[0]\n    size = int(np.ceil(np.sqrt(num_images)))\n\n    for i in range(data.shape[0]):\n        plt.subplot(size, size, i + 1, title=class_names[labels[i]])\n        plt.xticks([])\n        plt.yticks([])\n        plt.grid(False)\n\n        # if grayscale\n        if data.shape[3] == 1:\n            plt.imshow(data[i], cmap=plt.cm.binary)\n\n        else:\n            plt.imshow(data[i])\n\n    return figure\n\n\ndef get_confusion_matrix(y_labels, logits, class_names):\n    preds = np.argmax(logits, axis=1)\n    cm = sklearn.metrics.confusion_matrix(\n        y_labels, preds, labels=np.arange(len(class_names)),\n    )\n\n    return cm\n\n\ndef plot_confusion_matrix(cm, class_names):\n    size = len(class_names)\n    figure = plt.figure(figsize=(size, size))\n    plt.imshow(cm, interpolation=\"nearest\", cmap=plt.cm.Blues)\n    plt.title(\"Confusion Matrix\")\n\n    indices = np.arange(len(class_names))\n    plt.xticks(indices, class_names, rotation=45)\n    plt.yticks(indices, class_names)\n\n    # Normalize Confusion Matrix\n    cm = np.around(cm.astype(\"float\") / cm.sum(axis=1)[:, np.newaxis], decimals=3,)\n\n    threshold = cm.max() / 2.0\n    for i in range(size):\n        for j in range(size):\n            color = \"white\" if cm[i, j] > threshold else \"black\"\n            plt.text(\n                i, j, cm[i, j], horizontalalignment=\"center\", color=color,\n            )\n\n    plt.tight_layout()\n    plt.xlabel(\"True Label\")\n    plt.ylabel(\"Predicted label\")\n\n    cm_image = plot_to_image(figure)\n    return cm_image\n\n\n# Stolen from:\n# https://gist.github.com/AndrewBMartin/ab06f4708124ccb4cacc4b158c3cef12\ndef create_sprite(data):\n    \"\"\"\n    Tile images into sprite image.\n    Add any necessary padding\n    \"\"\"\n\n    # For B&W or greyscale images\n    if len(data.shape) == 3:\n        data = np.tile(data[..., np.newaxis], (1, 1, 1, 3))\n\n    n = int(np.ceil(np.sqrt(data.shape[0])))\n    padding = ((0, n ** 2 - data.shape[0]), (0, 0), (0, 0), (0, 0))\n    data = np.pad(data, padding, mode=\"constant\", constant_values=0)\n\n    # Tile images into sprite\n    data = data.reshape((n, n) + data.shape[1:]).transpose((0, 2, 1, 3, 4))\n    # print(data.shape) => (n, image_height, n, image_width, 3)\n\n    data = data.reshape((n * data.shape[1], n * data.shape[3]) + data.shape[4:])\n    # print(data.shape) => (n * image_height, n * image_width, 3)\n    return data\n\n\ndef plot_to_projector(\n    x,\n    feature_vector,\n    y,\n    class_names,\n    log_dir=\"default_log_dir\",\n    meta_file=\"metadata.tsv\",\n):\n    assert x.ndim == 4  # (BATCH, H, W, C)\n\n    if os.path.isdir(log_dir):\n        shutil.rmtree(log_dir)\n\n    # Create a new clean fresh folder :)\n    os.mkdir(log_dir)\n\n    SPRITES_FILE = os.path.join(log_dir, \"sprites.png\")\n    sprite = create_sprite(x)\n    cv2.imwrite(SPRITES_FILE, sprite)\n\n    # Generate label names\n    labels = [class_names[y[i]] for i in range(int(y.shape[0]))]\n\n    with open(os.path.join(log_dir, meta_file), \"w\") as f:\n        for label in labels:\n            f.write(\"{}\\n\".format(label))\n\n    if feature_vector.ndim != 2:\n        print(\n            \"NOTE: Feature vector is not of form (BATCH, FEATURES)\"\n            \" reshaping to try and get it to this form!\"\n        )\n        feature_vector = tf.reshape(feature_vector, [feature_vector.shape[0], -1])\n\n        feature_vector = tf.Variable(feature_vector)\n        checkpoint = tf.train.Checkpoint(embedding=feature_vector)\n        checkpoint.save(os.path.join(log_dir, \"embeddings.ckpt\"))\n\n        # Set up config\n        config = projector.ProjectorConfig()\n        embedding = config.embeddings.add()\n        embedding.tensor_name = \"embedding/.ATTRIBUTES/VARIABLE_VALUE\"\n        embedding.metadata_path = meta_file\n        embedding.sprite.image_path = \"sprites.png\"\n        embedding.sprite.single_image_dim.extend((x.shape[1], x.shape[2]))\n        projector.visualize_embeddings(log_dir, config)\n"
  },
  {
    "path": "ML/TensorFlow/Basics/tutorial18-customdata-images/1_in_subfolders.py",
    "content": "# Imports needed\nimport os\n\nos.environ[\"TF_CPP_MIN_LOG_LEVEL\"] = \"2\"\nimport tensorflow as tf\nfrom tensorflow import keras\nfrom tensorflow.keras import layers\nfrom tensorflow.keras.preprocessing.image import ImageDataGenerator\n\nimg_height = 28\nimg_width = 28\nbatch_size = 2\n\nmodel = keras.Sequential(\n    [\n        layers.Input((28, 28, 1)),\n        layers.Conv2D(16, 3, padding=\"same\"),\n        layers.Conv2D(32, 3, padding=\"same\"),\n        layers.MaxPooling2D(),\n        layers.Flatten(),\n        layers.Dense(10),\n    ]\n)\n\n#                      METHOD 1\n# ==================================================== #\n#             Using dataset_from_directory             #\n# ==================================================== #\nds_train = tf.keras.preprocessing.image_dataset_from_directory(\n    \"data/mnist_subfolders/\",\n    labels=\"inferred\",\n    label_mode=\"int\",  # categorical, binary\n    # class_names=['0', '1', '2', '3', ...]\n    color_mode=\"grayscale\",\n    batch_size=batch_size,\n    image_size=(img_height, img_width),  # reshape if not in this size\n    shuffle=True,\n    seed=123,\n    validation_split=0.1,\n    subset=\"training\",\n)\n\nds_validation = tf.keras.preprocessing.image_dataset_from_directory(\n    \"data/mnist_subfolders/\",\n    labels=\"inferred\",\n    label_mode=\"int\",  # categorical, binary\n    # class_names=['0', '1', '2', '3', ...]\n    color_mode=\"grayscale\",\n    batch_size=batch_size,\n    image_size=(img_height, img_width),  # reshape if not in this size\n    shuffle=True,\n    seed=123,\n    validation_split=0.1,\n    subset=\"validation\",\n)\n\n\ndef augment(x, y):\n    image = tf.image.random_brightness(x, max_delta=0.05)\n    return image, y\n\n\nds_train = ds_train.map(augment)\n\n# Custom Loops\nfor epochs in range(10):\n    for x, y in ds_train:\n        # train here\n        pass\n\n\nmodel.compile(\n    optimizer=keras.optimizers.Adam(),\n    loss=[keras.losses.SparseCategoricalCrossentropy(from_logits=True),],\n    metrics=[\"accuracy\"],\n)\n\nmodel.fit(ds_train, epochs=10, verbose=2)\n\n\n#                           METHOD 2\n# ================================================================== #\n#             ImageDataGenerator and flow_from_directory             #\n# ================================================================== #\n\ndatagen = ImageDataGenerator(\n    rescale=1.0 / 255,\n    rotation_range=5,\n    zoom_range=(0.95, 0.95),\n    horizontal_flip=False,\n    vertical_flip=False,\n    data_format=\"channels_last\",\n    validation_split=0.0,\n    dtype=tf.float32,\n)\n\ntrain_generator = datagen.flow_from_directory(\n    \"data/mnist_subfolders/\",\n    target_size=(img_height, img_width),\n    batch_size=batch_size,\n    color_mode=\"grayscale\",\n    class_mode=\"sparse\",\n    shuffle=True,\n    subset=\"training\",\n    seed=123,\n)\n\n\ndef training():\n    pass\n\n\n# Custom Loops\nfor epoch in range(10):\n    num_batches = 0\n\n    for x, y in ds_train:\n        num_batches += 1\n\n        # do training\n        training()\n\n        if num_batches == 25:  # len(train_dataset)/batch_size\n            break\n\n# Redo model.compile to reset the optimizer states\nmodel.compile(\n    optimizer=keras.optimizers.Adam(),\n    loss=[keras.losses.SparseCategoricalCrossentropy(from_logits=True),],\n    metrics=[\"accuracy\"],\n)\n\n# using model.fit (note steps_per_epoch)\nmodel.fit(\n    train_generator,\n    epochs=10,\n    steps_per_epoch=25,\n    verbose=2,\n    # if we had a validation generator:\n    # validation_data=validation_generator,\n    # valiation_steps=len(validation_set)/batch_size),\n)\n"
  },
  {
    "path": "ML/TensorFlow/Basics/tutorial18-customdata-images/2_csv_file.py",
    "content": "import os\n\nos.environ[\"TF_CPP_MIN_LOG_LEVEL\"] = \"2\"\nimport tensorflow as tf\nimport pandas as pd\nfrom tensorflow import keras\nfrom tensorflow.keras import layers\n\ndirectory = \"data/mnist_images_csv/\"\ndf = pd.read_csv(directory + \"train.csv\")\n\nfile_paths = df[\"file_name\"].values\nlabels = df[\"label\"].values\nds_train = tf.data.Dataset.from_tensor_slices((file_paths, labels))\n\n\ndef read_image(image_file, label):\n    image = tf.io.read_file(directory + image_file)\n    image = tf.image.decode_image(image, channels=1, dtype=tf.float32)\n    return image, label\n\n\ndef augment(image, label):\n    # data augmentation here\n    return image, label\n\n\nds_train = ds_train.map(read_image).map(augment).batch(2)\n\nfor epoch in range(10):\n    for x, y in ds_train:\n        # train here\n        pass\n\nmodel = keras.Sequential(\n    [\n        layers.Input((28, 28, 1)),\n        layers.Conv2D(16, 3, padding=\"same\"),\n        layers.Conv2D(32, 3, padding=\"same\"),\n        layers.MaxPooling2D(),\n        layers.Flatten(),\n        layers.Dense(10),\n    ]\n)\n\nmodel.compile(\n    optimizer=keras.optimizers.Adam(),\n    loss=[keras.losses.SparseCategoricalCrossentropy(from_logits=True),],\n    metrics=[\"accuracy\"],\n)\n\nmodel.fit(ds_train, epochs=10, verbose=2)\n"
  },
  {
    "path": "ML/TensorFlow/Basics/tutorial18-customdata-images/3_single_folder.py",
    "content": "import os\n\nos.environ[\"TF_CPP_MIN_LOG_LEVEL\"] = \"2\"\nimport tensorflow as tf\nimport pandas as pd\nfrom tensorflow import keras\nfrom tensorflow.keras import layers\nimport pathlib  # pathlib is in standard library\n\nbatch_size = 2\nimg_height = 28\nimg_width = 28\n\ndirectory = \"data/mnist_images_only/\"\nds_train = tf.data.Dataset.list_files(str(pathlib.Path(directory + \"*.jpg\")))\n\n\ndef process_path(file_path):\n    image = tf.io.read_file(file_path)\n    image = tf.image.decode_jpeg(image, channels=1)\n    label = tf.strings.split(file_path, \"\\\\\")\n    label = tf.strings.substr(label, pos=0, len=1)[2]\n    label = tf.strings.to_number(label, out_type=tf.int64)\n    return image, label\n\n\nds_train = ds_train.map(process_path).batch(batch_size)\n\nmodel = keras.Sequential(\n    [\n        layers.Input((28, 28, 1)),\n        layers.Conv2D(16, 3, padding=\"same\"),\n        layers.Conv2D(32, 3, padding=\"same\"),\n        layers.MaxPooling2D(),\n        layers.Flatten(),\n        layers.Dense(10),\n    ]\n)\n\nmodel.compile(\n    optimizer=keras.optimizers.Adam(),\n    loss=[keras.losses.SparseCategoricalCrossentropy(from_logits=True),],\n    metrics=[\"accuracy\"],\n)\n\nmodel.fit(ds_train, epochs=10, verbose=2)\n"
  },
  {
    "path": "ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/train.csv",
    "content": "file_name,label\n0_1.jpg, 0\n0_2.jpg, 0\n0_3.jpg, 0\n0_4.jpg, 0\n0_5.jpg, 0\n1_1.jpg, 1\n1_2.jpg, 1\n1_3.jpg, 1\n1_4.jpg, 1\n1_5.jpg, 1\n2_1.jpg, 2\n2_2.jpg, 2\n2_3.jpg, 2\n2_4.jpg, 2\n2_5.jpg, 2\n3_1.jpg, 3\n3_2.jpg, 3\n3_3.jpg, 3\n3_4.jpg, 3\n3_5.jpg, 3\n4_1.jpg, 4\n4_2.jpg, 4\n4_3.jpg, 4\n4_4.jpg, 4\n4_5.jpg, 4\n5_1.jpg, 5\n5_2.jpg, 5\n5_3.jpg, 5\n5_4.jpg, 5\n5_5.jpg, 5\n6_1.jpg, 6\n6_2.jpg, 6\n6_3.jpg, 6\n6_4.jpg, 6\n6_5.jpg, 6\n7_1.jpg, 7\n7_2.jpg, 7\n7_3.jpg, 7\n7_4.jpg, 7\n7_5.jpg, 7\n8_1.jpg, 8\n8_2.jpg, 8\n8_3.jpg, 8\n8_4.jpg, 8\n8_5.jpg, 8\n9_1.jpg, 9\n9_2.jpg, 9\n9_3.jpg, 9\n9_4.jpg, 9\n9_5.jpg, 9\n\n"
  },
  {
    "path": "ML/TensorFlow/Basics/tutorial19-customdata-text/english.csv",
    "content": "language1\ni love tuna\ni love potato\ni love bacon"
  },
  {
    "path": "ML/TensorFlow/Basics/tutorial19-customdata-text/swedish.csv",
    "content": "language2,\njag älskar tonfisk\njag älskar potatis\njag älskar bacon"
  },
  {
    "path": "ML/TensorFlow/Basics/tutorial19-customdata-text/test_example1.csv",
    "content": "index,type,label,file,review\n0,test,neg,0_2.txt,\"Once again Mr. Costner has dragged out a movie for far longer than necessary. Aside from the terrific sea rescue sequences, of which there are very few I just did not care about any of the characters. Most of us have ghosts in the closet, and Costner's character are realized early on, and then forgotten until much later, by which time I did not care. The character we should really care about is a very cocky, overconfident Ashton Kutcher. The problem is he comes off as kid who thinks he's better than anyone else around him and shows no signs of a cluttered closet. His only obstacle appears to be winning over Costner. Finally when we are well past the half way point of this stinker, Costner tells us all about Kutcher's ghosts. We are told why Kutcher is driven to be the best with no prior inkling or foreshadowing. No magic here, it was all I could do to keep from turning it off an hour in.\"\n1,test,neg,10000_4.txt,\"This is an example of why the majority of action films are the same. Generic and boring, there's really nothing worth watching here. A complete waste of the then barely-tapped talents of Ice-T and Ice Cube, who've each proven many times over that they are capable of acting, and acting well. Don't bother with this one, go see New Jack City, Ricochet or watch New York Undercover for Ice-T, or Boyz n the Hood, Higher Learning or Friday for Ice Cube and see the real deal. Ice-T's horribly cliched dialogue alone makes this film grate at the teeth, and I'm still wondering what the heck Bill Paxton was doing in this film? And why the heck does he always play the exact same character? From Aliens onward, every film I've seen with Bill Paxton has him playing the exact same irritating character, and at least in Aliens his character died, which made it somewhat gratifying...<br /><br />Overall, this is second-rate action trash. There are countless better films to see, and if you really want to see this one, watch Judgement Night, which is practically a carbon copy but has better acting and a better script. The only thing that made this at all worth watching was a decent hand on the camera - the cinematography was almost refreshing, which comes close to making up for the horrible film itself - but not quite. 4/10.\"\n2,test,neg,10001_1.txt,\"First of all I hate those moronic rappers, who could'nt act if they had a gun pressed against their foreheads. All they do is curse and shoot each other and acting like clichÃÂ©'e version of gangsters.<br /><br />The movie doesn't take more than five minutes to explain what is going on before we're already at the warehouse There is not a single sympathetic character in this movie, except for the homeless guy, who is also the only one with half a brain.<br /><br />Bill Paxton and William Sadler are both hill billies and Sadlers character is just as much a villain as the gangsters. I did'nt like him right from the start.<br /><br />The movie is filled with pointless violence and Walter Hills specialty: people falling through windows with glass flying everywhere. There is pretty much no plot and it is a big problem when you root for no-one. Everybody dies, except from Paxton and the homeless guy and everybody get what they deserve.<br /><br />The only two black people that can act is the homeless guy and the junkie but they're actors by profession, not annoying ugly brain dead rappers.<br /><br />Stay away from this crap and watch 48 hours 1 and 2 instead. At lest they have characters you care about, a sense of humor and nothing but real actors in the cast.\"\n3,test,neg,10002_3.txt,\"Not even the Beatles could write songs everyone liked, and although Walter Hill is no mop-top he's second to none when it comes to thought provoking action movies. The nineties came and social platforms were changing in music and film, the emergence of the Rapper turned movie star was in full swing, the acting took a back seat to each man's overpowering regional accent and transparent acting. This was one of the many ice-t movies i saw as a kid and loved, only to watch them later and cringe. Bill Paxton and William Sadler are firemen with basic lives until a burning building tenant about to go up in flames hands over a map with gold implications. I hand it to Walter for quickly and neatly setting up the main characters and location. But i fault everyone involved for turning out Lame-o performances. Ice-t and cube must have been red hot at this time, and while I've enjoyed both their careers as rappers, in my opinion they fell flat in this movie. It's about ninety minutes of one guy ridiculously turning his back on the other guy to the point you find yourself locked in multiple states of disbelief. Now this is a movie, its not a documentary so i wont waste my time recounting all the stupid plot twists in this movie, but there were many, and they led nowhere. I got the feeling watching this that everyone on set was sord of confused and just playing things off the cuff. There are two things i still enjoy about it, one involves a scene with a needle and the other is Sadler's huge 45 pistol. Bottom line this movie is like domino's pizza. Yeah ill eat it if I'm hungry and i don't feel like cooking, But I'm well aware it tastes like crap. 3 stars, meh.\"\n4,test,neg,10003_3.txt,\"Brass pictures (movies is not a fitting word for them) really are somewhat brassy. Their alluring visual qualities are reminiscent of expensive high class TV commercials. But unfortunately Brass pictures are feature films with the pretense of wanting to entertain viewers for over two hours! In this they fail miserably, their undeniable, but rather soft and flabby than steamy, erotic qualities non withstanding.<br /><br />Senso '45 is a remake of a film by Luchino Visconti with the same title and Alida Valli and Farley Granger in the lead. The original tells a story of senseless love and lust in and around Venice during the Italian wars of independence. Brass moved the action from the 19th into the 20th century, 1945 to be exact, so there are Mussolini murals, men in black shirts, German uniforms or the tattered garb of the partisans. But it is just window dressing, the historic context is completely negligible.<br /><br />Anna Galiena plays the attractive aristocratic woman who falls for the amoral SS guy who always puts on too much lipstick. She is an attractive, versatile, well trained Italian actress and clearly above the material. Her wide range of facial expressions (signalling boredom, loathing, delight, fear, hate ... and ecstasy) are the best reason to watch this picture and worth two stars. She endures this basically trashy stuff with an astonishing amount of dignity. I wish some really good parts come along for her. She really deserves it.\"\n5,test,neg,10004_2.txt,\"A funny thing happened to me while watching \"\"Mosquito\"\": on the one hand, the hero is a deaf-mute and the director is totally unable to make us understand why he does what he does (mutilating mannequins...er, excuse me, corpses) through his images. On the other hand, the English version at least is very badly dubbed. So I found myself wishing there had been both more AND less dialogue at the same time! This film is stupid (funny how this guy has access to every graveyard and mortuary in his town) and lurid (where would we be in a 70s exploitationer without our gratuitous lesbian scene?). Not to mention the \"\"romantic\"\" aspect (oh, how sweet!)...Miss it. (*)\""
  },
  {
    "path": "ML/TensorFlow/Basics/tutorial19-customdata-text/test_example2.csv",
    "content": "index,type,label,file,review\n6,test,neg,10005_2.txt,\"This German horror film has to be one of the weirdest I have seen.<br /><br />I was not aware of any connection between child abuse and vampirism, but this is supposed based upon a true character.<br /><br />Our hero is deaf and mute as a result of repeated beatings at the hands of his father. he also has a doll fetish, but I cannot figure out where that came from. His co-workers find out and tease him terribly.<br /><br />During the day a mild-manner accountant, and at night he breaks into cemeteries and funeral homes and drinks the blood of dead girls. They are all attractive, of course, else we wouldn't care about the fact that he usually tears their clothing down to the waist. He graduates eventually to actually killing, and that is what gets him caught.<br /><br />Like I said, a very strange movie that is dark and very slow as Werner Pochath never talks and just spends his time drinking blood.\"\n7,test,neg,10006_2.txt,\"Being a long-time fan of Japanese film, I expected more than this. I can't really be bothered to write to much, as this movie is just so poor. The story might be the cutest romantic little something ever, pity I couldn't stand the awful acting, the mess they called pacing, and the standard \"\"quirky\"\" Japanese story. If you've noticed how many Japanese movies use characters, plots and twists that seem too \"\"different\"\", forcedly so, then steer clear of this movie. Seriously, a 12-year old could have told you how this movie was going to move along, and that's not a good thing in my book.<br /><br />Fans of \"\"Beat\"\" Takeshi: his part in this movie is not really more than a cameo, and unless you're a rabid fan, you don't need to suffer through this waste of film.<br /><br />2/10\"\n8,test,neg,10007_4.txt,\"\"\"Tokyo Eyes\"\" tells of a 17 year old Japanese girl who falls in like with a man being hunted by her big bro who is a cop. This lame flick is about 50% filler and 50% talk, talk, and more talk. You'll get to see the less than stellar cast of three as they talk on the bus, talk and play video games, talk and get a haircut, talk and walk and walk and talk, talk on cell phones, hang out and talk, etc. as you read subtitles waiting for something to happen. The thin wisp of a story is not sufficient to support a film with low end production value, a meager cast, and no action, no romance, no sex or nudity, no heavy drama...just incessant yadayadayada'ing. (C-)\"\n9,test,neg,10008_4.txt,\"Wealthy horse ranchers in Buenos Aires have a long-standing no-trading policy with the Crawfords of Manhattan, but what happens when the mustachioed Latin son falls for a certain Crawford with bright eyes, blonde hair, and some perky moves on the dance floor? 20th Century-Fox musical has a glossy veneer yet seems a bit tatty around the edges. It is very heavy on the frenetic, gymnastic-like dancing, exceedingly thin on story. Betty Grable (an eleventh hour replacement for Alice Faye) gives it a boost, even though she's paired with leaden Don Ameche (in tan make-up and slick hair). Also good: Charlotte Greenwood as Betty's pithy aunt, a limousine driver who's constantly asleep on the job, and Carmen Miranda playing herself (who else?). The stock shots of Argentina far outclass the action filmed on the Fox backlot, and some of the supporting performances are quite awful. By the time of the big horserace finale, most viewers will have had enough. *1/2 from ****\"\n10,test,neg,10009_3.txt,\"Cage plays a drunk and gets high critically praise. Elizabeth Shue Actually has to do a love seen with the most unattractive and overrated piece of dung flesh in Hollywood. I literally vomited while watching this film. Of course I had the flu, but that does not mean this film did not contribute to the vomit in the kamode. <br /><br />Why can't Nick Cage play something he can really pull off like a bad actor. Nick Cage who be brilliant in a role as a bad actor. Heck nobody could do it better.<br /><br />The search begins for Nick's contract with Lucifer or was it Lou Cipher from \"\"Night Train To Terror\"\".\"\n11,test,neg,1000_3.txt,\"First of all, I would like to say that I am a fan of all of the actors that appear in this film and at the time that I rented it, I wanted to like it.<br /><br />I think that the main reason that I was so disappointed was that the outside box promised me a suspense thriller. In my eyes, a suspense thriller for British movies is like something out of a Ruth Rendell novel, something that has a lot of dark twist and turns and leaves the viewer with an ending that is unlikely to be forgotten anytime soon.<br /><br />This movie started out with the promising note of being such a film. We have our main character, that suspects a man that he does not like, of being involved in a hit and run that killed the husband of one of his servants.His notions prove to be right, but the idea that his wife might be involved, does not occur to him until that she confesses to him that she was a part of the crime.<br /><br />The elements of a good suspense thriller were in place, at this point, but from there, I felt that the film took a different direction and became almost some sort of a mild soap opera about who wants to be with who and what the love of a real relationship is. The film might have been enjoyable to me, if the outside box had talked of a twisted lover's triangle and had not been labeled as suspense thriller.This seemed to be more of a soap opera story and the beginning setting seemed to be a mild distraction to the true content of the film. I felt like this film could have done a whole lot better than it did. I felt like it kept leading the viewer up to a big event that never materialized. So, I have to give it a lower rating than I would have liked to and say that it fell short of my expectations.\"\n12,test,neg,10010_2.txt,\"So tell me - what serious boozer drinks Budweiser? How many suicidally-obsessed drinkers house a fully stocked and barely touched range of drinks in their lonely motel room that a millionaire playboy's bachelor-pad bar would be proud to boast? And what kind of an alcoholic tends to drink with the bottle held about 8 inches from his hungry mouth so that the contents generally spill all over his face? Not to mention wasting good whisky by dousing your girlfriend's tits with it, just so the cinema audience can get a good eyeful of Elisabeth Shue's assets.<br /><br />Cage seems to be portraying the most attention-seeking look-at-me alcoholic ever to have graced the screen while Shue looks more like a Berkely preppy slumming it for a summer than some seasoned street-walker. She is humiliated and subjugated as often as possible in this revolting movie with beatings, skin lacerations, anal rape and graphic verbal abuse - all of it completely implausible and included apparently only to convey a sense of her horribly demeaned state and offer the male viewers an astonishingly clichÃÂ©d sentimental sexual fantasy of the 'tart-with-a-heart'.<br /><br />Still - I did watch it to the end, by which time I was actually laughing out loud as Shue's tough street hooker chopped carrots in the kitchen wanly, pathetically smiling while Cage - all eyes popping and shaking like like a man operating a road drill in an earthquake - grimaced and mugged his way through the final half-hour...\"\n13,test,neg,10011_1.txt,\"A big disappointment for what was touted as an incredible film. Incredibly bad. Very pretentious. It would be nice if just once someone would create a high profile role for a young woman that was not a prostitute. <br /><br />We don't really learn anything about this character, except that he seems to be a hopeless alcoholic. We don't know why. Nicholas Cage turns in an excellent performance as usual, but I feel that this role and this script let him down. And how, after not being able to perform for the whole film, can he have an erection on his deathbed? Really terrible and I felt like I needed a bath.\""
  },
  {
    "path": "ML/TensorFlow/Basics/tutorial19-customdata-text/test_example3.csv",
    "content": "index,type,label,file,review\n14,test,neg,10012_1.txt,\"This film is absolutely appalling and awful. It's not low budget, it's a no budget film that makes Ed Wood's movies look like art. The acting is abysmal but sets and props are worse then anything I have ever seen. An ordinary subway train is used to transport people to the evil zone of killer mutants, Woddy Strode has one bullet and the fight scenes are shot in a disused gravel pit. There is sadism as you would expect from an 80s Italian video nasty. No talent was used to make this film. And the female love interest has a huge bhind- Italian taste maybe. Even for 80s Italian standards this film is pretty damn awful but I guess it came out at a time when there weren't so many films available on video or viewers weren't really discerning. This piece of crap has no entertainment value whatsoever and it's not even funny, just boring and extremely cheap. It's actually and insult to the most stupid audience. I just wonder how on earth an actor like Woody Strode ended up ia a turkey like this?\"\n15,test,neg,10013_4.txt,\"Here's a decidedly average Italian post apocalyptic take on the hunting/killing humans for sport theme ala The Most Dangerous Game, Turkey Shoot, Gymkata and The Running Man.<br /><br />Certainly the film reviewed here is nowhere near as much fun as the other listed entries and is furthermore dragged down by poor voice over work, generally bland action sequences, a number of entirely tasteless scenes such as a prolonged rape sequence and some truly stupid and illogical points throughout.<br /><br />Take for example towards the end of the film, when our hero manages to infiltrate the compound of the villains. He initially kills a sentry and leaves him in his jeep. Upon discovery of the said corpse, the villains response? (bearing in mind that our hero has come to brutally murder them all) Ã? They resolve to wait until the next morning to look for the culprit (!!!!!!!!!!)<br /><br />However, I suppose to be fair the film remains nonetheless about watchable if you can suspend your disbelief during such stupid scenes and does benefit immensely by the presence of the always excellent Woody Strode (even if his screen time is very limited)<br /><br />Not a classic by any stretch of the imagination but still just about worthy of a watch for Italian B-Movie enthusiasts.\"\n16,test,neg,10014_2.txt,\"At the bottom end of the apocalypse movie scale is this piece of pish called 'The Final Executioner'.. at least where I come from. A bloke is trained by an ex-cop to seek vengeance on those that killed his woman and friends in cold blood.. and that's about it. Lots of fake explosions and repetitive shootings ensue. Has one of the weirdest array of costumes I've seen in a film for a while, and a massive fortress which is apparently only run by 7 people. GREAT job on the dubbing too guys(!) Best moment: when our hero loses a swordfight and is about to be skewered through the neck, he just gets out his gun and BANG! Why not do that earlier? It's a mystery. As is why anyone would want to sit through this in the first place. I'm still puzzling over that one myself now.. 2/10\"\n17,test,neg,10015_4.txt,\"Earth has been destroyed in a nuclear holocaust. Well, parts of the Earth, because somewhere in Italy, a band of purebred survivors--those without radioactive contamination--are holed up in a massive mansion surrounded by lush grounds, waiting for the next opportunity to go hunting for those with polluted blood. The Final Executioner is the story of one of their would be victims, Alan (William Mang, who looks, not surprisingly, a lot like Kurt Russell), and his efforts to take down the legally sanctioned hunters, who are led by Edra (Marina Costa) and Erasmus (Harrison Muller Jr. ). Alan has been trained to kill by former NYPD cop Sam (Woody Strode) who mostly hangs around giving his pupil moral support and mooching for tinned meat. Strode is by far the best thing about the film, though he doesn't look at all well and only appears for about a third of the running time. As for the story, it's a blending of elements from better films and stories, including Ten Little Indians, The Most Dangerous Game, and Escape From New York. The Final Executioner moves along at a fair pace and provides reasonable entertainment for less discriminate action fans.\"\n18,test,neg,10016_3.txt,\"Many people are standing in front of the house n some women are crying... Men standing in close groups and speaking in hushed up tone... a couple of guys come in and they are discussing how sexy the daughter might look today... soon u will know someone in the house has died... The dead person's wife is worried about preparing food for so many people, her friend sitting beside her gives an idea of making the matters easy by preparing simple roti sabji... One of the dead person's son is speaking with someone over the mobile, Daughter is busy with her makeup... her mother suggests her to wear salwar kameej, but the daughter is more interested in looking good when so many people will be visiting their house and hence prefers jeans and T shirt over salwar kameez... another son asks her mom to finish all the kriyas and also indicates to her that he should not be expected to come early from the office... Then the camera slowly focuses on the dead person... the white cloth covering the face is displaced slightly due to the wind, revealing the face ... Its Anupam Kher... suddenly alarm rings and he gets up from the bed... Is it his dream or a flash back? U won't get an answer until the end of the movie...Well, This is wat comedy is for the director Dibakar Banerjee!!!!! Later u find out this scene has nothing to do with the actual movie and hence making everything obvious that the still described earlier was a dream. Is this a film comedy? Well it is supposed to belong to that category... But it actually does not!!! there is nothing that can be remotely associated with comedy in the movie!!! More over the director gives the message that no one will get justice from Police!!! so everyone must cheat the cheats!!!! or forget about Justice!!!! Music by Bapi-Tutul & Dhruv Dhalla is OK... Nothing much to tell about other sectors... Bad script destroys everything... not even Anupam Kher's performance succeeds in making it at least a paisa vasool...\"\n19,test,neg,10017_1.txt,\"New York family is the last in their neighborhood to get a television set, which nearly ruins David Niven's marriage to Mitzi Gaynor. Bedroom comedy that rarely ventures into the bedroom(and nothing sexy happens there anyway). Gaynor as an actress has about as much range as an oven--she turns on, she turns off. Film's sole compensation is a supporting performance by perky Patty Duke, pre-\"\"Miracle Worker\"\", as Niven's daughter. She's delightful; \"\"Happy Anniversary\"\" is not. * from ****\"\n20,test,neg,10018_1.txt,\"The best thing about \"\"The Prey\"\" is the tag line...\"\"It's not human and it's got an axe\"\"! The movie itself is a padded stinkaroo....endless insect and wildlife shots make the viewer wanna die! No slasher fan will like this garbage.....Watch \"\"Friday the 13th\"\" again and burn any copy of this film you find! <br /><br />It also rates as one of the 25 worst films ever made!\"\n21,test,neg,10019_1.txt,\"This is truly, without exaggerating, one of the worst Slasher movies ever made. I know, it came out in the 80's following a tendency started by \"\"Friday the 13th\"\". \"\"The Prey\"\" copies the fore-mentioned movie in many aspects. The woods setting, the killer, the dumb teens, the gore, etc.<br /><br />But \"\"The Prey\"\" is as bad as you might expect. I didn't even remember about it if it wasn't for coincidence.<br /><br />Well, the killer is in fact human so don't expect a supernatural killer in the likes of Jason. The situations rather boring and lack of tension, gore, violence, etc. It just does not works for a slasher flick.<br /><br />The acting is simply horrid. The score is horrible! a combination of boring instruments with cheesy 80's tunes?! I won't even mention the technical aspects of the movie because believe me, it seems that it cost only 20 dollars.<br /><br />Please avoid this one like the plague. It's one of the worst movies I've ever seen, and that's something to say. Thank God it seems to have vanished from earth.\"\n22,test,neg,1001_4.txt,\"I'm a huge fan of both Emily Watson (Breaking The Waves) and Tom Wilkinson (Normal) and was amused to see them upstaged by Rupert Everett (Dellamorte Dellamore) in this shockingly rather minor movie that had all the ingredients to be so much more. The too brief scenes in which he portrays a languid, infinitely entitled, worthless son of a rich Lord are spot-on and entertaining. But for a love triangle there was remarkably little chemistry to speak of between anyone. The music was annoyingly movie-of-the-week quality, and the voice-over jarring and totally unnecessary. Clearly the work of a first-time director with a small budget who either lacked or didn't sufficiently heed good advice. Too bad.<br /><br />I can appreciate how the people you kind of hate at the beginning are the ones you kind of like at the end, and vice-versa, so there is some sort of character arc, at least in terms of perception. For example, Watson's character, while refreshingly honest to her husband about her feelings for another man, began to grate on me near the end, particularly when she announced to her husband that she simply had absolutely no control over her actions, and later when she simply declared that she would be moving back into their marital flat, with no asking of permission, no apologies offered. And I went from disliking Wilkinson's control freak / moral relativist character to sort of understanding him and not really wanting him to change (unlike his wife).<br /><br />This movie awkwardly morphed from a whodunit to a \"\"Love Story\"\" or \"\"Steel Magnolias\"\" illness drama without sufficiently informing me of the fact, so I was left distractedly guessing what the next plot twist might be long after they had all been revealed (Was it the Lord driving the car? The Lord's dog?). The scene where the Lord visits Wilkinson and relates how brave Watson is, the bestest nurse any dying boyfriend could ever ask for, Florence Nightingale incarnate, etc. was OK until he started over-the-top sobbing like a baby. Good God! If you ask me she's just another flitty rich person with way too much time on her hands, and so she drives her hard working, well providing spouse crazy with unnecessary drama. Her screwing around was just another way to occupy her empty life; the dying guy thing was an added bonus for her as it somehow made her previous actions completely above reproach.<br /><br />Look, everyone would have been better off if Wilkinson had just left her for his secretary, who seemed to appreciate him for who he was. Instead he acted like an abused dog, his open craving for his wife's affection increasing with every kick she gives him. I'm not anti PC or anything, it just didn't ring true, even after taking into account all of the harsh realities of middle age we all tend to face. The ending for me was (and not the director's intention I am certain) depressing. The movie spent the last 80 minutes convincing me that these two people just don't belong together, so I found no joy in the promise of their relationship continuing. I'm not above wanting my emotions manipulated by a story, it just has to be somewhat plausible and not hackneyed. Is that asking too much?<br /><br />My score: 4/10\"\n23,test,neg,10020_1.txt,\"Sure, most of the slasher films of the 1980's were not worth the<br /><br />celluloid they were filmed on, but this video nightmare may well be<br /><br />the dullest produced.<br /><br />Six horny pot smoking students decide to go camping. Of course,<br /><br />and you know this already, they begin getting killed one by one by a<br /><br />mysterious stranger. The climax has a hunky forest ranger trying to<br /><br />get to the teens in time before the last cute girl becomes buzzard<br /><br />bait.<br /><br />John Carl Buechler, my least favorite B-movie guy, did the lousy<br /><br />makeup effects here. The cast features Carel Struycken, of \"\"The<br /><br />Witches of Eastwick\"\" and the Addams family movies. Sadly, he<br /><br />does not pop up until the very end of the film, and is covered in<br /><br />burn makeup, rendering him unrecognizable. Steve Bond (anyone<br /><br />remember him?) is here in an early role as a victim.<br /><br />Brown's direction, and the script he cowrote, both smell like the<br /><br />presents brown bears leave in the woods. He pads the film with<br /><br />so much stock wilderness footage, I thought I accidentally rented a<br /><br />special episode of Mutual of Omaha's Wild Kingdom. Much of the<br /><br />cast sits around the campfire and eats, then walk, and sit and eat<br /><br />again. The forest ranger is involved in the strangest scene ever put<br /><br />in a slasher film: he tells a joke about a wide mouthed frog to a<br /><br />baby deer. Jackie Coogan, who must have forgot he once worked<br /><br />with the legends of silent cinema, has two scenes, and is involved<br /><br />in the second strangest scene ever put in a slasher film: he and<br /><br />the hunky forest ranger have a conversation about cucumber and<br /><br />cream cheese sandwiches on oatmeal bread...yeah.<br /><br />There is not one minute of suspense here. The killer, a forest fire<br /><br />survivor looking for a mate, watches the students from behind<br /><br />trees. We know it is the killer because the film makers have<br /><br />dubbed in a heart beat sound effect that helpfully serves to wake<br /><br />the viewer up every few minutes. Skip this pile of pine sap and rent<br /><br />\"\"Halloween,\"\" instead.<br /><br />This is rated (R) for physical violence, mild gun violence, gore,<br /><br />some profanity, brief female nudity, mild sexual content, sexual<br /><br />references, and drug abuse.\""
  },
  {
    "path": "ML/TensorFlow/Basics/tutorial19-customdata-text/tutorial19-customdata-text.py",
    "content": "import os\n\nos.environ[\"TF_CPP_MIN_LOG_LEVEL\"] = \"2\"\nimport tensorflow as tf\nimport pandas as pd\nimport tensorflow_datasets as tfds\nfrom tensorflow import keras\nfrom tensorflow.keras import layers\nimport pickle\n\ntokenizer = tfds.features.text.Tokenizer()\n\nenglish = tf.data.TextLineDataset(\"english.csv\")\nswedish = tf.data.TextLineDataset(\"swedish.csv\")\ndataset = tf.data.Dataset.zip((english, swedish))\n\nfor eng, swe in dataset.skip(1):\n    print(tokenizer.tokenize(eng.numpy()))\n    print(tokenizer.tokenize(swe.numpy().decode(\"UTF-8\")))\n\n# TODO:\n# 1. vocabulary (for each language)\n# 2. tokenize and numericalize words\n# 3. padded_batch, create model\n\n\nimport sys\n\nsys.exit()\n\n\n## Example if you have multiple files\nfile_names = [\"test_example1.csv\", \"test_example2.csv\", \"test_example3.csv\"]\ndataset = tf.data.TextLineDataset(file_names)\n\ndataset1 = tf.data.TextLineDataset(\"test_example1.csv\").skip(1)  # .map(preprocess1)\ndataset2 = tf.data.TextLineDataset(\"test_example2.csv\").skip(1)  # .map(preprocess1)\ndataset3 = tf.data.TextLineDataset(\"test_example3.csv\").skip(1)  # .map(preprocess1)\n\ndataset = dataset1.concatenate(dataset2).concatenate(dataset3)\n\nfor line in dataset:\n    print(line)\n\n\nimport sys\n\nsys.exit()\n\n\ndef filter_train(line):\n    split_line = tf.strings.split(line, \",\", maxsplit=4)\n    dataset_belonging = split_line[1]  # train, test\n    sentiment_category = split_line[2]  # pos, neg, unsup\n\n    return (\n        True\n        if dataset_belonging == \"train\" and sentiment_category != \"unsup\"\n        else False\n    )\n\n\ndef filter_test(line):\n    split_line = tf.strings.split(line, \",\", maxsplit=4)\n    dataset_belonging = split_line[1]  # train, test\n    sentiment_category = split_line[2]  # pos, neg, unsup\n\n    return (\n        True if dataset_belonging == \"test\" and sentiment_category != \"unsup\" else False\n    )\n\n\nds_train = tf.data.TextLineDataset(\"imdb.csv\").filter(filter_train)\nds_test = tf.data.TextLineDataset(\"imdb.csv\").filter(filter_test)\n\n# TODO:\n# 1. Create vocabulary\n# 2. Numericalize text str -> indices (TokenTextEncoder)\n# 3. Pad the batches so we can send in to an RNN for example\n\ntokenizer = tfds.features.text.Tokenizer()\n# 'i love banana' -> ['i', 'love', 'banana'] -> [0, 1, 2]\n\n\ndef build_vocabulary(ds_train, threshold=200):\n    \"\"\" Build a vocabulary \"\"\"\n    frequencies = {}\n    vocabulary = set()\n    vocabulary.update([\"sostoken\"])\n    vocabulary.update([\"eostoken\"])\n\n    for line in ds_train.skip(1):\n        split_line = tf.strings.split(line, \",\", maxsplit=4)\n        review = split_line[4]\n        tokenized_text = tokenizer.tokenize(review.numpy().lower())\n\n        for word in tokenized_text:\n            if word not in frequencies:\n                frequencies[word] = 1\n\n            else:\n                frequencies[word] += 1\n\n            # if we've reached the threshold\n            if frequencies[word] == threshold:\n                vocabulary.update(tokenized_text)\n\n    return vocabulary\n\n\n# Build vocabulary and save it to vocabulary.obj\nvocabulary = build_vocabulary(ds_train)\nvocab_file = open(\"vocabulary.obj\", \"wb\")\npickle.dump(vocabulary, vocab_file)\n\n# Loading the vocabulary\n# vocab_file = open(\"vocabulary.obj\", \"rb\")\n# vocabulary = pickle.load(vocab_file)\n\nencoder = tfds.features.text.TokenTextEncoder(\n    list(vocabulary), oov_token=\"<UNK>\", lowercase=True, tokenizer=tokenizer,\n)\n\n\ndef my_encoder(text_tensor, label):\n    encoded_text = encoder.encode(text_tensor.numpy())\n    return encoded_text, label\n\n\ndef encode_map_fn(line):\n    split_line = tf.strings.split(line, \",\", maxsplit=4)\n    label_str = split_line[2]  # neg, pos\n    review = \"sostoken \" + split_line[4] + \" eostoken\"\n    label = 1 if label_str == \"pos\" else 0\n\n    (encoded_text, label) = tf.py_function(\n        my_encoder, inp=[review, label], Tout=(tf.int64, tf.int32),\n    )\n\n    encoded_text.set_shape([None])\n    label.set_shape([])\n    return encoded_text, label\n\n\nAUTOTUNE = tf.data.experimental.AUTOTUNE\nds_train = ds_train.map(encode_map_fn, num_parallel_calls=AUTOTUNE).cache()\nds_train = ds_train.shuffle(25000)\nds_train = ds_train.padded_batch(32, padded_shapes=([None], ()))\n\nds_test = ds_test.map(encode_map_fn)\nds_test = ds_test.padded_batch(32, padded_shapes=([None], ()))\n\nmodel = keras.Sequential(\n    [\n        layers.Masking(mask_value=0),\n        layers.Embedding(input_dim=len(vocabulary) + 2, output_dim=32,),\n        layers.GlobalAveragePooling1D(),\n        layers.Dense(64, activation=\"relu\"),\n        layers.Dense(1),\n    ]\n)\n\nmodel.compile(\n    loss=keras.losses.BinaryCrossentropy(from_logits=True),\n    optimizer=keras.optimizers.Adam(3e-4, clipnorm=1),\n    metrics=[\"accuracy\"],\n)\n\nmodel.fit(ds_train, epochs=15, verbose=2)\nmodel.evaluate(ds_test)\n"
  },
  {
    "path": "ML/TensorFlow/Basics/tutorial2-tensorbasics.py",
    "content": "import os\n\nos.environ[\"TF_CPP_MIN_LOG_LEVEL\"] = \"2\"\n\nimport tensorflow as tf\n\n# Initialization\nx = tf.constant(4, shape=(1, 1), dtype=tf.float32)\nprint(x)\n\nx = tf.constant([[1, 2, 3], [4, 5, 6]], shape=(2, 3))\nprint(x)\n\nx = tf.eye(3)\nprint(x)\n\nx = tf.ones((4, 3))\nprint(x)\n\nx = tf.zeros((3, 2, 5))\nprint(x)\n\nx = tf.random.uniform((2, 2), minval=0, maxval=1)\nprint(x)\n\nx = tf.random.normal((3, 3), mean=0, stddev=1)\nprint(tf.cast(x, dtype=tf.float64))\n# tf.float (16,32,64), tf.int (8, 16, 32, 64), tf.bool\n\nx = tf.range(9)\nx = tf.range(start=0, limit=10, delta=2)\nprint(x)\n\n# Math\nx = tf.constant([1, 2, 3])\ny = tf.constant([9, 8, 7])\n\nz = tf.add(x, y)\nz = x + y\n\nz = tf.subtract(x, y)\nz = x - y\n\nz = tf.divide(x, y)\nz = x / y\n\nz = tf.multiply(x, y)\nz = x * y\n\nz = tf.tensordot(x, y, axes=1)\n\nz = x ** 5\n\nx = tf.random.normal((2, 3))\ny = tf.random.normal((3, 2))\nz = tf.matmul(x, y)\nz = x @ y\n\nx = tf.random.normal((2, 2))\n\n# Indexing\nx = tf.constant([0, 1, 1, 2, 3, 1, 2, 3])\nprint(x[:])\nprint(x[1:])\nprint(x[1:3])\nprint(x[::2])\nprint(x[::-1])\n\nindices = tf.constant([0, 3])\nx_indices = tf.gather(x, indices)\n\nx = tf.constant([[1, 2], [3, 4], [5, 6]])\n\nprint(x[0, :])\nprint(x[0:2, :])\n\n# Reshaping\nx = tf.range(9)\n\nx = tf.reshape(x, (3, 3))\n\nx = tf.transpose(x, perm=[1, 0])\n"
  },
  {
    "path": "ML/TensorFlow/Basics/tutorial20-classify-cancer-beginner-project-example/process_data.py",
    "content": "import os\nimport shutil\nimport random\n\nseed = 1\nrandom.seed(seed)\ndirectory = \"ISIC/images/\"\ntrain = \"data/train/\"\ntest = \"data/test/\"\nvalidation = \"data/validation/\"\n\nos.makedirs(train + \"benign/\")\nos.makedirs(train + \"malignant/\")\nos.makedirs(test + \"benign/\")\nos.makedirs(test + \"malignant/\")\nos.makedirs(validation + \"benign/\")\nos.makedirs(validation + \"malignant/\")\n\ntest_examples = train_examples = validation_examples = 0\n\nfor line in open(\"ISIC/labels.csv\").readlines()[1:]:\n    split_line = line.split(\",\")\n    img_file = split_line[0]\n    benign_malign = split_line[1]\n\n    random_num = random.random()\n\n    if random_num < 0.8:\n        location = train\n        train_examples += 1\n\n    elif random_num < 0.9:\n        location = validation\n        validation_examples += 1\n\n    else:\n        location = test\n        test_examples += 1\n\n    if int(float(benign_malign)) == 0:\n        shutil.copy(\n            \"ISIC/images/\" + img_file + \".jpg\",\n            location + \"benign/\" + img_file + \".jpg\",\n        )\n\n    elif int(float(benign_malign)) == 1:\n        shutil.copy(\n            \"ISIC/images/\" + img_file + \".jpg\",\n            location + \"malignant/\" + img_file + \".jpg\",\n        )\n\nprint(f\"Number of training examples {train_examples}\")\nprint(f\"Number of test examples {test_examples}\")\nprint(f\"Number of validation examples {validation_examples}\")\n"
  },
  {
    "path": "ML/TensorFlow/Basics/tutorial20-classify-cancer-beginner-project-example/train_isic.py",
    "content": "import os\n\nos.environ[\"TF_CPP_MIN_LOG_LEVEL\"] = \"2\"\nimport tensorflow as tf\nimport math\nimport tensorflow_hub as hub\nimport numpy as np\nimport matplotlib.pyplot as plt\nfrom tensorflow import keras\nfrom tensorflow.keras import layers\nfrom sklearn.metrics import roc_curve\nfrom tensorflow.keras.preprocessing.image import ImageDataGenerator\n\ntrain_examples = 20225\ntest_examples = 2551\nvalidation_examples = 2555\nimg_height = img_width = 224\nbatch_size = 32\n\n# NasNet\n# model = keras.Sequential([\n#    hub.KerasLayer(\"https://tfhub.dev/google/imagenet/nasnet_mobile/feature_vector/4\",\n#                   trainable=True),\n#    layers.Dense(1, activation=\"sigmoid\"),\n# ])\n\nmodel = keras.models.load_model(\"isic_model/\")\n\ntrain_datagen = ImageDataGenerator(\n    rescale=1.0 / 255,\n    rotation_range=15,\n    zoom_range=(0.95, 0.95),\n    horizontal_flip=True,\n    vertical_flip=True,\n    data_format=\"channels_last\",\n    dtype=tf.float32,\n)\n\nvalidation_datagen = ImageDataGenerator(rescale=1.0 / 255, dtype=tf.float32)\ntest_datagen = ImageDataGenerator(rescale=1.0 / 255, dtype=tf.float32)\n\ntrain_gen = train_datagen.flow_from_directory(\n    \"data/train/\",\n    target_size=(img_height, img_width),\n    batch_size=batch_size,\n    color_mode=\"rgb\",\n    class_mode=\"binary\",\n    shuffle=True,\n    seed=123,\n)\n\nvalidation_gen = validation_datagen.flow_from_directory(\n    \"data/validation/\",\n    target_size=(img_height, img_width),\n    batch_size=batch_size,\n    color_mode=\"rgb\",\n    class_mode=\"binary\",\n    shuffle=True,\n    seed=123,\n)\n\ntest_gen = test_datagen.flow_from_directory(\n    \"data/test/\",\n    target_size=(img_height, img_width),\n    batch_size=batch_size,\n    color_mode=\"rgb\",\n    class_mode=\"binary\",\n    shuffle=True,\n    seed=123,\n)\n\nMETRICS = [\n    keras.metrics.BinaryAccuracy(name=\"accuracy\"),\n    keras.metrics.Precision(name=\"precision\"),\n    keras.metrics.Recall(name=\"recall\"),\n    keras.metrics.AUC(name=\"auc\"),\n]\n\nmodel.compile(\n    optimizer=keras.optimizers.Adam(lr=3e-4),\n    loss=[keras.losses.BinaryCrossentropy(from_logits=False)],\n    metrics=METRICS,\n)\n\nmodel.fit(\n    train_gen,\n    epochs=1,\n    verbose=2,\n    steps_per_epoch=train_examples // batch_size,\n    validation_data=validation_gen,\n    validation_steps=validation_examples // batch_size,\n    callbacks=[keras.callbacks.ModelCheckpoint(\"isic_model\")],\n)\n\n\ndef plot_roc(labels, data):\n    predictions = model.predict(data)\n    fp, tp, _ = roc_curve(labels, predictions)\n\n    plt.plot(100 * fp, 100 * tp)\n    plt.xlabel(\"False positives [%]\")\n    plt.ylabel(\"True positives [%]\")\n    plt.show()\n\n\ntest_labels = np.array([])\nnum_batches = 0\n\nfor _, y in test_gen:\n    test_labels = np.append(test_labels, y)\n    num_batches += 1\n    if num_batches == math.ceil(test_examples / batch_size):\n        break\n\nplot_roc(test_labels, test_gen)\nmodel.evaluate(validation_gen, verbose=2)\nmodel.evaluate(test_gen, verbose=2)\n"
  },
  {
    "path": "ML/TensorFlow/Basics/tutorial3-neuralnetwork.py",
    "content": "import os\n\nos.environ[\"TF_CPP_MIN_LOG_LEVEL\"] = \"2\"\n\nimport tensorflow as tf\nfrom tensorflow import keras\nfrom tensorflow.keras import layers\nfrom tensorflow.keras.datasets import mnist\n\nphysical_devices = tf.config.list_physical_devices(\"GPU\")\ntf.config.experimental.set_memory_growth(physical_devices[0], True)\n\n(x_train, y_train), (x_test, y_test) = mnist.load_data()\nx_train = x_train.reshape(-1, 28 * 28).astype(\"float32\") / 255.0\nx_test = x_test.reshape(-1, 28 * 28).astype(\"float32\") / 255.0\n\n# Sequential API (Very convenient, not very flexible)\nmodel = keras.Sequential(\n    [\n        keras.Input(shape=(28 * 28)),\n        layers.Dense(512, activation=\"relu\"),\n        layers.Dense(256, activation=\"relu\"),\n        layers.Dense(10),\n    ]\n)\n\nmodel = keras.Sequential()\nmodel.add(keras.Input(shape=(784)))\nmodel.add(layers.Dense(512, activation=\"relu\"))\nmodel.add(layers.Dense(256, activation=\"relu\", name=\"my_layer\"))\nmodel.add(layers.Dense(10))\n\n# Functional API (A bit more flexible)\ninputs = keras.Input(shape=(784))\nx = layers.Dense(512, activation=\"relu\", name=\"first_layer\")(inputs)\nx = layers.Dense(256, activation=\"relu\", name=\"second_layer\")(x)\noutputs = layers.Dense(10, activation=\"softmax\")(x)\nmodel = keras.Model(inputs=inputs, outputs=outputs)\n\nmodel.compile(\n    loss=keras.losses.SparseCategoricalCrossentropy(from_logits=False),\n    optimizer=keras.optimizers.Adam(lr=0.001),\n    metrics=[\"accuracy\"],\n)\n\nmodel.fit(x_train, y_train, batch_size=32, epochs=5, verbose=2)\nmodel.evaluate(x_test, y_test, batch_size=32, verbose=2)\n"
  },
  {
    "path": "ML/TensorFlow/Basics/tutorial4-convnet.py",
    "content": "import os\n\nos.environ[\"TF_CPP_MIN_LOG_LEVEL\"] = \"2\"\n\nimport tensorflow as tf\nfrom tensorflow import keras\nfrom tensorflow.keras import layers\nfrom tensorflow.keras.datasets import cifar10\n\nphysical_devices = tf.config.list_physical_devices(\"GPU\")\ntf.config.experimental.set_memory_growth(physical_devices[0], True)\n\n(x_train, y_train), (x_test, y_test) = cifar10.load_data()\nx_train = x_train.astype(\"float32\") / 255.0\nx_test = x_test.astype(\"float32\") / 255.0\n\nmodel = keras.Sequential(\n    [\n        keras.Input(shape=(32, 32, 3)),\n        layers.Conv2D(32, 3, padding=\"valid\", activation=\"relu\"),\n        layers.MaxPooling2D(),\n        layers.Conv2D(64, 3, activation=\"relu\"),\n        layers.MaxPooling2D(),\n        layers.Conv2D(128, 3, activation=\"relu\"),\n        layers.Flatten(),\n        layers.Dense(64, activation=\"relu\"),\n        layers.Dense(10),\n    ]\n)\n\n\ndef my_model():\n    inputs = keras.Input(shape=(32, 32, 3))\n    x = layers.Conv2D(32, 3)(inputs)\n    x = layers.BatchNormalization()(x)\n    x = keras.activations.relu(x)\n    x = layers.MaxPooling2D()(x)\n    x = layers.Conv2D(64, 3)(x)\n    x = layers.BatchNormalization()(x)\n    x = keras.activations.relu(x)\n    x = layers.MaxPooling2D()(x)\n    x = layers.Conv2D(128, 3)(x)\n    x = layers.BatchNormalization()(x)\n    x = keras.activations.relu(x)\n    x = layers.Flatten()(x)\n    x = layers.Dense(64, activation=\"relu\")(x)\n    outputs = layers.Dense(10)(x)\n    model = keras.Model(inputs=inputs, outputs=outputs)\n    return model\n\n\nmodel = my_model()\nmodel.compile(\n    loss=keras.losses.SparseCategoricalCrossentropy(from_logits=True),\n    optimizer=keras.optimizers.Adam(lr=3e-4),\n    metrics=[\"accuracy\"],\n)\n\nmodel.fit(x_train, y_train, batch_size=64, epochs=10, verbose=2)\nmodel.evaluate(x_test, y_test, batch_size=64, verbose=2)\n"
  },
  {
    "path": "ML/TensorFlow/Basics/tutorial5-regularization.py",
    "content": "import os\n\nos.environ[\"TF_CPP_MIN_LOG_LEVEL\"] = \"2\"\n\nimport tensorflow as tf\nfrom tensorflow import keras\nfrom tensorflow.keras import layers, regularizers\nfrom tensorflow.keras.datasets import cifar10\n\nphysical_devices = tf.config.list_physical_devices(\"GPU\")\ntf.config.experimental.set_memory_growth(physical_devices[0], True)\n\n(x_train, y_train), (x_test, y_test) = cifar10.load_data()\nx_train = x_train.astype(\"float32\") / 255.0\nx_test = x_test.astype(\"float32\") / 255.0\n\n\ndef my_model():\n    inputs = keras.Input(shape=(32, 32, 3))\n    x = layers.Conv2D(32, 3, padding=\"same\", kernel_regularizer=regularizers.l2(0.01),)(\n        inputs\n    )\n    x = layers.BatchNormalization()(x)\n    x = keras.activations.relu(x)\n    x = layers.MaxPooling2D()(x)\n    x = layers.Conv2D(64, 3, padding=\"same\", kernel_regularizer=regularizers.l2(0.01),)(\n        x\n    )\n    x = layers.BatchNormalization()(x)\n    x = keras.activations.relu(x)\n    x = layers.MaxPooling2D()(x)\n    x = layers.Conv2D(\n        128, 3, padding=\"same\", kernel_regularizer=regularizers.l2(0.01),\n    )(x)\n    x = layers.BatchNormalization()(x)\n    x = keras.activations.relu(x)\n    x = layers.Flatten()(x)\n    x = layers.Dense(64, activation=\"relu\", kernel_regularizer=regularizers.l2(0.01),)(\n        x\n    )\n    x = layers.Dropout(0.5)(x)\n    outputs = layers.Dense(10)(x)\n    model = keras.Model(inputs=inputs, outputs=outputs)\n    return model\n\n\nmodel = my_model()\nmodel.compile(\n    loss=keras.losses.SparseCategoricalCrossentropy(from_logits=True),\n    optimizer=keras.optimizers.Adam(lr=3e-4),\n    metrics=[\"accuracy\"],\n)\n\nmodel.fit(x_train, y_train, batch_size=64, epochs=150, verbose=2)\nmodel.evaluate(x_test, y_test, batch_size=64, verbose=2)\n"
  },
  {
    "path": "ML/TensorFlow/Basics/tutorial6-rnn-gru-lstm.py",
    "content": "import os\n\nos.environ[\"TF_CPP_MIN_LOG_LEVEL\"] = \"2\"\n\nimport tensorflow as tf\nfrom tensorflow import keras\nfrom tensorflow.keras import layers\nfrom tensorflow.keras.datasets import mnist\n\nphysical_devices = tf.config.list_physical_devices(\"GPU\")\ntf.config.experimental.set_memory_growth(physical_devices[0], True)\n\n(x_train, y_train), (x_test, y_test) = mnist.load_data()\n# x_train = x_train.reshape(-1, 784).astype(\"float32\") / 255.0\n# x_test = x_test.reshape(-1, 784).astype(\"float32\") / 255.0\nx_train = x_train.reshape([-1, 28, 28]).astype(\"float32\") / 255.0\nx_test = x_test.reshape([-1, 28, 28]).astype(\"float32\") / 255.0\n\nmodel = keras.Sequential()\nmodel.add(keras.Input(shape=(None, 28)))\nmodel.add(layers.SimpleRNN(512, return_sequences=True, activation=\"relu\"))\nmodel.add(layers.SimpleRNN(512, activation=\"relu\"))\nmodel.add(layers.Dense(10))\n\nmodel = keras.Sequential()\nmodel.add(keras.Input(shape=(None, 28)))\nmodel.add(layers.SimpleRNN(256, return_sequences=True, activation=\"tanh\"))\nmodel.add(layers.SimpleRNN(256))\nmodel.add(layers.Dense(10))\n\nmodel = keras.Sequential()\nmodel.add(keras.Input(shape=(None, 28)))\nmodel.add(layers.GRU(256, return_sequences=True, activation=\"relu\"))\nmodel.add(layers.GRU(256))\nmodel.add(layers.Dense(10))\n\nmodel = keras.Sequential()\nmodel.add(keras.Input(shape=(None, 28)))\nmodel.add(\n    layers.Bidirectional(layers.LSTM(256, return_sequences=True, activation=\"relu\"))\n)\nmodel.add(layers.LSTM(256, name=\"lstm_layer2\"))\nmodel.add(layers.Dense(10))\n\nmodel = keras.Sequential()\nmodel.add(keras.Input(shape=(None, 28)))\nmodel.add(\n    layers.Bidirectional(layers.LSTM(256, return_sequences=True, activation=\"relu\"))\n)\nmodel.add(layers.Bidirectional(layers.LSTM(256, name=\"lstm_layer2\")))\nmodel.add(layers.Dense(10))\n\nprint(model.summary())\nmodel.compile(\n    loss=keras.losses.SparseCategoricalCrossentropy(from_logits=True),\n    optimizer=keras.optimizers.Adam(lr=0.001),\n    metrics=[\"accuracy\"],\n)\n\nmodel.fit(x_train, y_train, batch_size=64, epochs=10, verbose=2)\nmodel.evaluate(x_test, y_test, batch_size=64, verbose=2)\n"
  },
  {
    "path": "ML/TensorFlow/Basics/tutorial7-indepth-functional.py",
    "content": "import os\n\nos.environ[\"TF_CPP_MIN_LOG_LEVEL\"] = \"2\"\nimport tensorflow as tf\nfrom tensorflow import keras\nfrom tensorflow.keras import layers, regularizers\nfrom tensorflow.keras.datasets import mnist\n\n# Use Pandas to load dataset from csv file\nimport pandas as pd\n\n# HYPERPARAMETERS\nBATCH_SIZE = 64\nWEIGHT_DECAY = 0.001\nLEARNING_RATE = 0.001\n\n# Make sure we don't get any GPU errors\nphysical_devices = tf.config.list_physical_devices(\"GPU\")\ntf.config.experimental.set_memory_growth(physical_devices[0], True)\n\ntrain_df = pd.read_csv(\"train.csv\")\ntest_df = pd.read_csv(\"test.csv\")\ntrain_images = os.getcwd() + \"/train_images/\" + train_df.iloc[:, 0].values\ntest_images = os.getcwd() + \"/test_images/\" + test_df.iloc[:, 0].values\n\ntrain_labels = train_df.iloc[:, 1:].values\ntest_labels = test_df.iloc[:, 1:].values\n\n\ndef read_image(image_path, label):\n    image = tf.io.read_file(image_path)\n    image = tf.image.decode_image(image, channels=1, dtype=tf.float32)\n\n    # In older versions you need to set shape in order to avoid error\n    # on newer (2.3.0+) the following 3 lines can safely be removed\n    image.set_shape((64, 64, 1))\n    label[0].set_shape([])\n    label[1].set_shape([])\n\n    labels = {\"first_num\": label[0], \"second_num\": label[1]}\n    return image, labels\n\n\nAUTOTUNE = tf.data.experimental.AUTOTUNE\ntrain_dataset = tf.data.Dataset.from_tensor_slices((train_images, train_labels))\ntrain_dataset = (\n    train_dataset.shuffle(buffer_size=len(train_labels))\n    .map(read_image)\n    .batch(batch_size=BATCH_SIZE)\n    .prefetch(buffer_size=AUTOTUNE)\n)\n\ntest_dataset = tf.data.Dataset.from_tensor_slices((test_images, test_labels))\ntest_dataset = (\n    test_dataset.map(read_image)\n    .batch(batch_size=BATCH_SIZE)\n    .prefetch(buffer_size=AUTOTUNE)\n)\n\ninputs = keras.Input(shape=(64, 64, 1))\nx = layers.Conv2D(\n    filters=32,\n    kernel_size=3,\n    padding=\"same\",\n    kernel_regularizer=regularizers.l2(WEIGHT_DECAY),\n)(inputs)\nx = layers.BatchNormalization()(x)\nx = keras.activations.relu(x)\nx = layers.Conv2D(64, 3, kernel_regularizer=regularizers.l2(WEIGHT_DECAY),)(x)\nx = layers.BatchNormalization()(x)\nx = keras.activations.relu(x)\nx = layers.MaxPooling2D()(x)\nx = layers.Conv2D(\n    64, 3, activation=\"relu\", kernel_regularizer=regularizers.l2(WEIGHT_DECAY),\n)(x)\nx = layers.Conv2D(128, 3, activation=\"relu\")(x)\nx = layers.MaxPooling2D()(x)\nx = layers.Flatten()(x)\nx = layers.Dense(128, activation=\"relu\")(x)\nx = layers.Dropout(0.5)(x)\nx = layers.Dense(64, activation=\"relu\")(x)\noutput1 = layers.Dense(10, activation=\"softmax\", name=\"first_num\")(x)\noutput2 = layers.Dense(10, activation=\"softmax\", name=\"second_num\")(x)\nmodel = keras.Model(inputs=inputs, outputs=[output1, output2])\n\nmodel.compile(\n    optimizer=keras.optimizers.Adam(LEARNING_RATE),\n    loss=keras.losses.SparseCategoricalCrossentropy(),\n    metrics=[\"accuracy\"],\n)\n\nmodel.fit(train_dataset, epochs=5, verbose=2)\nmodel.evaluate(test_dataset, verbose=2)\n"
  },
  {
    "path": "ML/TensorFlow/Basics/tutorial8_keras_subclassing.py",
    "content": "import os\n\nos.environ[\"TF_CPP_MIN_LOG_LEVEL\"] = \"2\"\nimport tensorflow as tf\nfrom tensorflow import keras\nfrom tensorflow.keras import layers\nfrom tensorflow.keras.datasets import mnist\n\nphysical_devices = tf.config.list_physical_devices(\"GPU\")\ntf.config.experimental.set_memory_growth(physical_devices[0], True)\n\n(x_train, y_train), (x_test, y_test) = mnist.load_data()\nx_train = x_train.reshape(-1, 28, 28, 1).astype(\"float32\") / 255.0\nx_test = x_test.reshape(-1, 28, 28, 1).astype(\"float32\") / 255.0\n\n# CNN -> BatchNorm -> ReLU (common structure)\n# x10 (a lot of code to write!)\n\n\nclass CNNBlock(layers.Layer):\n    def __init__(self, out_channels, kernel_size=3):\n        super(CNNBlock, self).__init__()\n        self.conv = layers.Conv2D(out_channels, kernel_size, padding=\"same\")\n        self.bn = layers.BatchNormalization()\n\n    def call(self, input_tensor, training=False):\n        x = self.conv(input_tensor)\n        x = self.bn(x, training=training)\n        x = tf.nn.relu(x)\n        return x\n\n\nmodel = keras.Sequential(\n    [CNNBlock(32), CNNBlock(64), CNNBlock(128), layers.Flatten(), layers.Dense(10),]\n)\n\n\nclass ResBlock(layers.Layer):\n    def __init__(self, channels):\n        super(ResBlock, self).__init__()\n        self.channels = channels\n        self.cnn1 = CNNBlock(channels[0], 3)\n        self.cnn2 = CNNBlock(channels[1], 3)\n        self.cnn3 = CNNBlock(channels[2], 3)\n        self.pooling = layers.MaxPooling2D()\n        self.identity_mapping = layers.Conv2D(channels[1], 3, padding=\"same\")\n\n    def call(self, input_tensor, training=False):\n        x = self.cnn1(input_tensor, training=training)\n        x = self.cnn2(x, training=training)\n        x = self.cnn3(x + self.identity_mapping(input_tensor), training=training,)\n        x = self.pooling(x)\n        return x\n\n\nclass ResNet_Like(keras.Model):\n    def __init__(self, num_classes=10):\n        super(ResNet_Like, self).__init__()\n        self.block1 = ResBlock([32, 32, 64])\n        self.block2 = ResBlock([128, 128, 256])\n        self.block3 = ResBlock([128, 256, 512])\n        self.pool = layers.GlobalAveragePooling2D()\n        self.classifier = layers.Dense(num_classes)\n\n    def call(self, input_tensor, training=False):\n        x = self.block1(input_tensor, training=training)\n        x = self.block2(x, training=training)\n        x = self.block3(x, training=training)\n        x = self.pool(x, training=training)\n        x = self.classifier(x)\n        return x\n\n    def model(self):\n        x = keras.Input(shape=(28, 28, 1))\n        return keras.Model(inputs=[x], outputs=self.call(x))\n\n\nmodel = ResNet_Like().model()\nbase_input = model.layers[0].input\nbase_output = model.layers[2].output\noutput = layers.Dense(10)(layers.Flatten()(base_output))\nmodel = keras.Model(base_input, output)\n\nmodel.compile(\n    optimizer=keras.optimizers.Adam(),\n    loss=keras.losses.SparseCategoricalCrossentropy(from_logits=True),\n    metrics=[\"accuracy\"],\n)\n\nmodel.fit(x_train, y_train, batch_size=64, epochs=1, verbose=2)\nmodel.evaluate(x_test, y_test, batch_size=64, verbose=2)\nmodel.save(\"pretrained\")\n"
  },
  {
    "path": "ML/TensorFlow/Basics/tutorial9-custom-layers.py",
    "content": "import os\n\nos.environ[\"TF_CPP_MIN_LOG_LEVEL\"] = \"2\"\nimport tensorflow as tf\nfrom tensorflow import keras\nfrom tensorflow.keras import layers\nfrom tensorflow.keras.datasets import mnist\n\n# To Avoid GPU errors\nphysical_devices = tf.config.list_physical_devices(\"GPU\")\ntf.config.experimental.set_memory_growth(physical_devices[0], True)\n\n(x_train, y_train), (x_test, y_test) = mnist.load_data()\nx_train = x_train.reshape(-1, 28 * 28).astype(\"float32\") / 255.0\nx_test = x_test.reshape(-1, 28 * 28).astype(\"float32\") / 255.0\n\n\nclass Dense(layers.Layer):\n    def __init__(self, units, input_dim):\n        super(Dense, self).__init__()\n        self.w = self.add_weight(\n            name=\"w\",\n            shape=(input_dim, units),\n            initializer=\"random_normal\",\n            trainable=True,\n        )\n        self.b = self.add_weight(\n            name=\"b\", shape=(units,), initializer=\"zeros\", trainable=True\n        )\n\n    def call(self, inputs):\n        return tf.matmul(inputs, self.w) + self.b\n\n\nclass Dense(layers.Layer):\n    def __init__(self, units):\n        super(Dense, self).__init__()\n        self.units = units\n\n    def build(self, input_shape):\n        self.w = self.add_weight(\n            name=\"w\",\n            shape=(input_shape[-1], self.units),\n            initializer=\"random_normal\",\n            trainable=True,\n        )\n        self.b = self.add_weight(\n            name=\"b\", shape=(self.units,), initializer=\"random_normal\", trainable=True,\n        )\n\n    def call(self, inputs):\n        return tf.matmul(inputs, self.w) + self.b\n\n\nclass MyReLU(layers.Layer):\n    def __init__(self):\n        super(MyReLU, self).__init__()\n\n    def call(self, x):\n        return tf.math.maximum(x, 0)\n\n\nclass MyModel(Model):  # model.fit, model.evalute, model.predict\n    def __init__(self, num_classes=10):\n        super(MyModel, self).__init__()\n        self.dense1 = Dense(64)\n        self.dense2 = Dense(num_classes)\n        self.relu = MyReLU()\n\n        # self.dense1 = layers.Dense(64)\n        # self.dense3 = layers.Dense(num_classes)\n\n    def call(self, x):\n        x = self.relu(self.dense1(x))\n        return self.dense2(x)\n\n\nmodel = MyModel()\nmodel.compile(\n    loss=keras.losses.SparseCategoricalCrossentropy(from_logits=True),\n    optimizer=keras.optimizers.Adam(),\n    metrics=[\"accuracy\"],\n)\n\nmodel.fit(x_train, y_train, batch_size=32, epochs=2, verbose=2)\nmodel.evaluate(x_test, y_test, batch_size=32, verbose=2)\n"
  },
  {
    "path": "ML/TensorFlow/CNN_architectures/AlexNet/README.md",
    "content": "[Original Paper - ImageNet Classification with Deep Convolutional Neural Networks (2012)](https://www.cs.toronto.edu/~hinton/absps/imagenet.pdf)  \n\nSome questions I had when I was reading the paper\n- [What does the term saturating nonlinearities mean?](https://stats.stackexchange.com/questions/174295/what-does-the-term-saturating-nonlinearities-mean)\n- [What Is Saturating Gradient Problem](https://datascience.stackexchange.com/questions/27665/what-is-saturating-gradient-problem)\n- [Why ReLU is better than the other activation functions](https://datascience.stackexchange.com/questions/23493/why-relu-is-better-than-the-other-activation-functions)\n- [Why does overlapped pooling help reduce overfitting in conv nets?](https://stats.stackexchange.com/questions/283261/why-does-overlapped-pooling-help-reduce-overfitting-in-conv-nets)\n- [Importance of local response normalization in CNN](https://stats.stackexchange.com/questions/145768/importance-of-local-response-normalization-in-cnn)\n- [What Is Local Response Normalization In Convolutional Neural Networks](https://prateekvjoshi.com/2016/04/05/what-is-local-response-normalization-in-convolutional-neural-networks/)\n"
  },
  {
    "path": "ML/TensorFlow/CNN_architectures/AlexNet/alexnet.py",
    "content": "# Tensorflow v2.3.1\n\n\"\"\"\nProgrammed by the-robot <https://github.com/the-robot>\n\"\"\"\n\nfrom tensorflow.keras.layers import (\n    Conv2D,\n    Dense,\n    Dropout,\n    Flatten,\n    Input,\n    Lambda,\n    MaxPooling2D,\n)\nfrom tensorflow.keras import Model\nimport tensorflow as tf\nimport typing\n\ntf.config.run_functions_eagerly(True)\n\n@tf.function\ndef AlexNet(input_shape: typing.Tuple[int], classes: int = 1000) -> Model:\n    \"\"\"\n    Implementation of the AlexNet architecture.\n\n    Arguments:\n    input_shape -- shape of the images of the dataset\n    classes     -- integer, number of classes\n\n    Returns:\n    model       -- a Model() instance in Keras\n\n    Note:\n    when you read the paper, you will notice that the channels (filters) in the diagram is only\n    half of what I have written below. That is because in the diagram, they only showed model for\n    one GPU (I guess for simplicity). However, during the ILSVRC, they run the network across 2 NVIDIA GTA 580 3GB GPUs.\n\n    Also, in paper, they used Local Response Normalization. This can also be done in Keras with Lambda layer.\n    You can also use BatchNormalization layer instead.\n    \"\"\"\n\n    # convert input shape into tensor\n    X_input = Input(input_shape)\n\n    # NOTE: layer 1-5 is conv-layers\n    # layer 1\n    X = Conv2D(\n        filters = 96,\n        kernel_size = (11, 11),\n        strides = (4, 4),\n        activation = \"relu\",\n        padding = \"same\",\n    )(X_input)\n    X = MaxPooling2D(pool_size = (3, 3), strides = (2, 2))(X)\n    X = Lambda(tf.nn.local_response_normalization)(X)\n\n    # layer 2\n    X = Conv2D(\n        filters = 256,\n        kernel_size = (5, 5),\n        strides = (1, 1),\n        activation = \"relu\",\n        padding = \"same\",\n    )(X)\n    X = MaxPooling2D(pool_size = (3, 3), strides = (2, 2))(X)\n    X = Lambda(tf.nn.local_response_normalization)(X)\n\n    # layer 3\n    X = Conv2D(\n        filters = 384,\n        kernel_size = (3, 3),\n        strides = (1, 1),\n        activation = \"relu\",\n        padding = \"same\",\n    )(X)\n\n    # layer 4\n    X = Conv2D(\n        filters = 384,\n        kernel_size = (3, 3),\n        strides = (1, 1),\n        activation = \"relu\",\n        padding = \"same\",\n    )(X)\n\n    # layer 5\n    X = Conv2D(\n        filters = 256,\n        kernel_size = (3, 3),\n        strides = (1, 1),\n        activation = \"relu\",\n        padding = \"same\",\n    )(X)\n    X = MaxPooling2D(pool_size = (3, 3), strides = (2, 2))(X)\n    X = Lambda(tf.nn.local_response_normalization)(X)\n\n    # NOTE: layer 6-7 is fully-connected layers\n    # layer 6\n    X = Flatten()(X)\n    X = Dense(units = 4096, activation = 'relu')(X)\n    X = Dropout(0.5)(X)\n\n    # layer 7\n    X = Dense(units = 4096, activation = 'relu')(X)\n    X = Dropout(0.5)(X)\n\n    # layer 8 (classification layer)\n    # use sigmoid if binary classificaton and softmax if multiclass classification\n    X = Dense(units = classes, activation = \"softmax\")(X)\n\n    model = Model(inputs = X_input, outputs = X, name = \"AlexNet\")\n    return model\n"
  },
  {
    "path": "ML/TensorFlow/CNN_architectures/AlexNet/test.py",
    "content": "# disable tensorflow debugging messages\nimport os\nos.environ['TF_CPP_MIN_LOG_LEVEL'] = '3'\n\nfrom alexnet import AlexNet\n\nif __name__ == \"__main__\":\n    model = AlexNet(input_shape = (224, 224, 3), classes = 1000)\n    model.summary()\n"
  },
  {
    "path": "ML/TensorFlow/CNN_architectures/GoogLeNet/README.md",
    "content": "[Original Paper - Going Deeper with Convolutions (2014)](https://arxiv.org/abs/1409.4842)  \n[Related Video](https://www.youtube.com/watch?v=uQc4Fs7yx5I)\n\n![meme](https://i.imgur.com/m91bhbe.png)\n\n\n- [Review: GoogLeNet (Inception v1)](https://medium.com/coinmonks/paper-review-of-googlenet-inception-v1-winner-of-ilsvlc-2014-image-classification-c2b3565a64e7)\n- [Understanding GoogLeNet Model – CNN Architecture](https://www.geeksforgeeks.org/understanding-googlenet-model-cnn-architecture/)\n- [Ensemble Methods in Machine Learning: What are They and Why Use Them?](https://towardsdatascience.com/ensemble-methods-in-machine-learning-what-are-they-and-why-use-them-68ec3f9fef5f)\n- [Neural Networks Ensemble](https://towardsdatascience.com/neural-networks-ensemble-33f33bea7df3)\n- [Multiscale Methods and Machine Learning](https://www.kdnuggets.com/2018/03/multiscale-methods-machine-learning.html)\n- [What do the terms “dense” and “sparse” mean in the context of neural networks?](https://stats.stackexchange.com/questions/266996/what-do-the-terms-dense-and-sparse-mean-in-the-context-of-neural-networks)\n- [The Sparse Future of Deep Learning](https://towardsdatascience.com/the-sparse-future-of-deep-learning-bce05e8e094a)\n- [Understanding Auxiliary Loss](https://stats.stackexchange.com/a/436203)"
  },
  {
    "path": "ML/TensorFlow/CNN_architectures/GoogLeNet/block.py",
    "content": "  # Tensorflow v.2.3.1\n\n\"\"\"\nProgrammed by the-robot <https://github.com/the-robot>\n\"\"\"\n\nfrom tensorflow.keras.layers import (\n    Activation,\n    AveragePooling2D,\n    BatchNormalization,\n    Conv2D,\n    Dense,\n    Dropout,\n    Flatten,\n    MaxPooling2D,\n    concatenate,\n)\nimport tensorflow as tf\nimport typing\n\n@tf.function\ndef convolution_block(\n    X: tf.Tensor,\n    filters: int,\n    kernel_size: int,\n    stride: int = 1,\n    padding: str = 'valid',\n) -> tf.Tensor:\n    \"\"\"\n    Convolution block for GoogLeNet.\n    Arguments:\n    X           -- input tensor of shape (m, H, W, filters)\n    filters      -- defining the number of filters in the CONV layers\n    kernel_size -- integer, specifying the shape of the middle CONV's window for the main path\n    stride      -- integer specifying the stride to be used\n    padding     -- padding type, same or valid. Default is valid\n    Returns:\n    X           -- output of the identity block, tensor of shape (H, W, filters)\n    \"\"\"\n\n    X = Conv2D(\n        filters = filters,\n        kernel_size = (kernel_size, kernel_size),\n        strides = (stride, stride),\n        padding = padding,\n    )(X)\n    # batch normalization is not in original paper because it was not invented at that time\n    # however I am using it here because it will improve the performance\n    X = BatchNormalization()(X)\n    X = Activation(\"relu\")(X)\n\n    return X\n\n@tf.function\ndef inception_block(\n    X: tf.Tensor,\n    filters_1x1: int,\n    filters_3x3_reduce: int,\n    filters_3x3: int,\n    filters_5x5_reduce: int,\n    filters_5x5: int,\n    pool_size: int,\n) -> tf.Tensor:\n    \"\"\"\n    Inception block for GoogLeNet.\n    Arguments:\n    X                  -- input tensor of shape (m, H, W, filters)\n    filters_1x1        -- number of filters for (1x1 conv) in first branch \n    filters_3x3_reduce -- number of filters for (1x1 conv) dimensionality reduction before (3x3 conv) in second branch\n    filters_3x3        -- number of filters for (3x3 conv) in second branch\n    filters_5x5_reduce -- number of filters for (1x1 conv) dimensionality reduction before (5x5 conv) in third branch\n    filters_5x5        -- number of filters for (5x5 conv) in third branch\n    pool_size          -- number of filters for (1x1 conv) after 3x3 max pooling in fourth branch \n    Returns:\n    X                  -- output of the identity block, tensor of shape (H, W, filters)\n    \"\"\"\n\n    # first branch\n    conv_1x1 = convolution_block(\n        X,\n        filters = filters_1x1,\n        kernel_size = 1,\n        padding = \"same\"\n    )\n\n    # second branch\n    conv_3x3 = convolution_block(\n        X,\n        filters = filters_3x3_reduce,\n        kernel_size = 1,\n        padding = \"same\"\n    )\n    conv_3x3 = convolution_block(\n        conv_3x3,\n        filters = filters_3x3,\n        kernel_size = 3,\n        padding = \"same\"\n    )\n\n    # third branch\n    conv_5x5 = convolution_block(\n        X,\n        filters = filters_5x5_reduce,\n        kernel_size = 1,\n        padding = \"same\"\n    )\n    conv_5x5 = convolution_block(\n        conv_5x5,\n        filters = filters_5x5,\n        kernel_size = 5,\n        padding = \"same\"\n    )\n\n    # fourth branch\n    pool_projection = MaxPooling2D(\n        pool_size = (2, 2),\n        strides = (1, 1),\n        padding = \"same\",\n    )(X)\n    pool_projection = convolution_block(\n        pool_projection,\n        filters = pool_size,\n        kernel_size = 1,\n        padding = \"same\"\n    )\n\n    # concat by channel/filter\n    return concatenate(inputs = [conv_1x1, conv_3x3, conv_5x5, pool_projection], axis = 3)\n\n@tf.function\ndef auxiliary_block(\n    X: tf.Tensor,\n    classes: int,\n) -> tf.Tensor:\n    \"\"\"\n    Auxiliary block for GoogLeNet.\n    Refer to the original paper, page 8 for the auxiliary layer specification.\n    Arguments:\n    X       -- input tensor of shape (m, H, W, filters)\n    classes -- number of classes for classification\n    Return:\n    X       -- output of the identity block, tensor of shape (H, W, filters)\n    \"\"\"\n\n    X = AveragePooling2D(\n        pool_size = (5, 5),\n        padding = \"same\",\n        strides = (3, 3),\n    )(X)\n    X = convolution_block(\n        X,\n        filters = 128,\n        kernel_size = 1,\n        stride = 1,\n        padding = \"same\",\n    )\n    X = Flatten()(X)\n    X = Dense(units = 1024, activation = \"relu\")(X)\n    X = Dropout(rate = 0.7)(X)\n    X = Dense(units = classes)(X)\n    X = Activation(\"softmax\")(X)\n\n    return X"
  },
  {
    "path": "ML/TensorFlow/CNN_architectures/GoogLeNet/googlenet.py",
    "content": "# Tensorflow v.2.3.1\n\n\"\"\"\nProgrammed by the-robot <https://github.com/the-robot>\n\"\"\"\n\nfrom block import (\n    auxiliary_block,\n    convolution_block,\n    inception_block,\n)\n\nfrom tensorflow.keras.layers import (\n    AveragePooling2D,\n    Dense,\n    Dropout,\n    Input,\n    MaxPooling2D,\n)\nfrom tensorflow.keras import Model\nimport tensorflow as tf\nimport typing\n\ntf.config.run_functions_eagerly(True)\n\n@tf.function\ndef GoogLeNet(input_shape: typing.Tuple[int] = (224, 224, 3), classes: int = 1000) -> Model:\n    \"\"\"\n    Implementation of the popular GoogLeNet aka Inception v1 architecture.\n    Refer to the original paper, page 6 - table 1 for inception block filter sizes.\n    Arguments:\n    input_shape -- shape of the images of the dataset\n    classes     -- number of classes for classification\n    Returns:\n    model       -- a Model() instance in Keras\n    \"\"\"\n\n    # convert input shape into tensor\n    X_input = Input(input_shape)\n\n    # NOTE: auxiliary layers are only used in trainig phase to improve performance\n    #       because they act as regularization and prevent vanishing gradient problem\n    auxiliary1 = None # to store auxiliary layers classification value\n    auxiliary2 = None\n\n    # layer 1 (convolution block)\n    X = convolution_block(\n        X = X_input,\n        filters = 64,\n        kernel_size = 7,\n        stride = 2,\n        padding = \"same\",\n    )\n\n    # layer 2 (max pool)\n    X = MaxPooling2D(\n        pool_size = (3, 3),\n        padding = \"same\",\n        strides = (2, 2),\n    )(X)\n\n    # layer 3 (convolution block)\n    # 1x1 reduce\n    X = convolution_block(\n        X,\n        filters = 64,\n        kernel_size = 1,\n        stride = 1,\n        padding = \"same\",\n    )\n    X = convolution_block(\n        X,\n        filters = 192,\n        kernel_size = 3,\n        stride = 1,\n        padding = \"same\",\n    )\n\n    # layer 4 (max pool)\n    X = MaxPooling2D(\n        pool_size = (3, 3),\n        padding = \"same\",\n        strides = (2, 2),\n    )(X)\n\n    # layer 5 (inception 3a)\n    X = inception_block(\n        X,\n        filters_1x1 = 64,\n        filters_3x3_reduce = 96,\n        filters_3x3 = 128,\n        filters_5x5_reduce = 16,\n        filters_5x5 = 32,\n        pool_size = 32,\n    )\n\n    # layer 6 (inception 3b)\n    X = inception_block(\n        X,\n        filters_1x1 = 128,\n        filters_3x3_reduce = 128,\n        filters_3x3 = 192,\n        filters_5x5_reduce = 32,\n        filters_5x5 = 96,\n        pool_size = 64,\n    )\n\n    # layer 7 (max pool)\n    X = MaxPooling2D(\n        pool_size = (3, 3),\n        padding = \"same\",\n        strides = (2, 2),\n    )(X)\n\n    # layer 8 (inception 4a)\n    X = inception_block(\n        X,\n        filters_1x1 = 192,\n        filters_3x3_reduce = 96,\n        filters_3x3 = 208,\n        filters_5x5_reduce = 16,\n        filters_5x5 = 48,\n        pool_size = 64,\n    )\n\n    # First Auxiliary Softmax Classifier\n    auxiliary1 = auxiliary_block(X, classes = classes)\n\n    # layer 9 (inception 4b)\n    X = inception_block(\n        X,\n        filters_1x1 = 160,\n        filters_3x3_reduce = 112,\n        filters_3x3 = 224,\n        filters_5x5_reduce = 24,\n        filters_5x5 = 64,\n        pool_size = 64,\n    )\n\n    # layer 10 (inception 4c)\n    X = inception_block(\n        X,\n        filters_1x1 = 128,\n        filters_3x3_reduce = 128,\n        filters_3x3 = 256,\n        filters_5x5_reduce = 24,\n        filters_5x5 = 64,\n        pool_size = 64,\n    )\n\n    # layer 11 (inception 4d)\n    X = inception_block(\n        X,\n        filters_1x1 = 112,\n        filters_3x3_reduce = 144,\n        filters_3x3 = 288,\n        filters_5x5_reduce = 32,\n        filters_5x5 = 64,\n        pool_size = 64,\n    )\n\n    # Second Auxiliary Softmax Classifier\n    auxiliary2 = auxiliary_block(X, classes = classes)\n\n    # layer 12 (inception 4e)\n    X = inception_block(\n        X,\n        filters_1x1 = 256,\n        filters_3x3_reduce = 160,\n        filters_3x3 = 320,\n        filters_5x5_reduce = 32,\n        filters_5x5 = 128,\n        pool_size = 128,\n    )\n\n    # layer 13 (max pool)\n    X = MaxPooling2D(\n        pool_size = (3, 3),\n        padding = \"same\",\n        strides = (2, 2),\n    )(X)\n\n    # layer 14 (inception 5a)\n    X = inception_block(\n        X,\n        filters_1x1 = 256,\n        filters_3x3_reduce = 160,\n        filters_3x3 = 320,\n        filters_5x5_reduce = 32,\n        filters_5x5 = 128,\n        pool_size = 128,\n    )\n\n    # layer 15 (inception 5b)\n    X = inception_block(\n        X,\n        filters_1x1 = 384,\n        filters_3x3_reduce = 192,\n        filters_3x3 = 384,\n        filters_5x5_reduce = 48,\n        filters_5x5 = 128,\n        pool_size = 128,\n    )\n\n    # layer 16 (average pool)\n    X = AveragePooling2D(\n        pool_size = (7, 7),\n        padding = \"same\",\n        strides = (1, 1),\n    )(X)\n\n    # layer 17 (dropout 40%)\n    X = Dropout(rate = 0.4)(X)\n\n    # layer 18 (fully-connected layer with softmax activation)\n    X = Dense(units = classes, activation='softmax')(X)\n\n    model = Model(X_input, outputs = [X, auxiliary1, auxiliary2], name='GoogLeNet/Inception-v1')\n    return model\n"
  },
  {
    "path": "ML/TensorFlow/CNN_architectures/GoogLeNet/test.py",
    "content": "# disable tensorflow debugging messages\nimport os\nos.environ['TF_CPP_MIN_LOG_LEVEL'] = '3'\n\nfrom googlenet import GoogLeNet\n\nif __name__ == \"__main__\":\n    model = GoogLeNet(input_shape = (224, 224, 3))\n    model.summary()"
  },
  {
    "path": "ML/TensorFlow/CNN_architectures/LeNet5/README.md",
    "content": "[Original Paper - GradientBased Learning Applied to Document Recognition (1998)](http://vision.stanford.edu/cs598_spring07/papers/Lecun98.pdf)  \n[Related Video](https://www.youtube.com/watch?v=fcOW-Zyb5Bo)\n\nSome other useful links\n- [Understanding and Implementing LeNet-5 CNN Architecture](https://towardsdatascience.com/understanding-and-implementing-lenet-5-cnn-architecture-deep-learning-a2d531ebc342)"
  },
  {
    "path": "ML/TensorFlow/CNN_architectures/LeNet5/lenet5.py",
    "content": "# Tensorflow v.2.3.1\n\n\"\"\"\nProgrammed by the-robot <https://github.com/the-robot>\n\"\"\"\n\nfrom tensorflow.keras.layers import (\n    AveragePooling2D,\n    Conv2D,\n    Dense,\n    Flatten,\n    Input,\n)\nfrom tensorflow.keras import Model\nimport tensorflow as tf\nimport typing\n\ntf.config.run_functions_eagerly(True)\n\n@tf.function\ndef LeNet5(input_shape: typing.Tuple[int], classes: int = 1000) -> Model:\n    \"\"\"\n    Implementation of the classic LeNet architecture.\n\n    Arguments:\n    input_shape -- shape of the images of the dataset\n    classes     -- integer, number of classes\n\n    Returns:\n    model       -- a Model() instance in Keras\n\n    Note:\n    because I want to keep it original, I used tanh activation instead of ReLU activation.\n    however based on newer papers, the rectified linear unit (ReLU) performed much faster than\n    tanh activation.\n    \"\"\"\n\n    # convert input shape into tensor\n    X_input = Input(input_shape)\n\n    # layer 1\n    X = Conv2D(\n        filters = 6,\n        kernel_size = (5, 5),\n        strides = (1, 1),\n        activation = \"tanh\",\n        padding = \"valid\",\n    )(X_input)\n    X = AveragePooling2D(pool_size = (2, 2), strides = (2, 2), padding = \"valid\")(X)\n\n    # layer 2\n    X = Conv2D(\n        filters = 16,\n        kernel_size = (5, 5),\n        strides = (1, 1),\n        activation = \"tanh\",\n        padding = \"valid\",\n    )(X)\n    X = AveragePooling2D(pool_size = (2, 2), strides = (2, 2), padding = \"valid\")(X)\n\n    # layer 3\n    X = Conv2D(\n        filters = 120,\n        kernel_size = (5, 5),\n        strides = (1, 1),\n        activation = \"tanh\",\n        padding = \"valid\",\n    )(X)\n\n    # layer 4\n    X = Flatten()(X)\n    X = Dense(units = 84, activation = \"tanh\")(X)\n\n    # layer 5 (classification layer)\n    X = Dense(units = classes, activation = \"softmax\")(X)\n\n    model = Model(inputs = X_input, outputs = X, name = \"LeNet5\")\n    return model"
  },
  {
    "path": "ML/TensorFlow/CNN_architectures/LeNet5/test.py",
    "content": "# disable tensorflow debugging messages\nimport os\nos.environ['TF_CPP_MIN_LOG_LEVEL'] = '3'\n\nfrom lenet5 import LeNet5\n\nif __name__ == \"__main__\":\n    model = LeNet5(input_shape = (32, 32, 1), classes = 10)\n    model.summary()"
  },
  {
    "path": "ML/TensorFlow/CNN_architectures/ResNet/README.md",
    "content": "[Original Paper - Deep Residual Learning for Image Recognition (2015)](https://arxiv.org/abs/1512.03385)  \n[Related Video](https://www.youtube.com/watch?v=DkNIBBBvcPs&ab_channel=AladdinPersson)\n\nSome questions that came to my mind when I was reading the paper\n\n- [How do bottleneck architectures work in neural networks?](https://stats.stackexchange.com/questions/205150/how-do-bottleneck-architectures-work-in-neural-networks)\n- [What does dotted line mean in ResNet?](https://stats.stackexchange.com/questions/457787/what-does-dotted-line-mean-in-resnet) `refering to Figure 3, 34-layer residual from paper`"
  },
  {
    "path": "ML/TensorFlow/CNN_architectures/ResNet/block.py",
    "content": "# Tensorflow v.2.3.1\n\n\"\"\"\nProgrammed by the-robot <https://github.com/the-robot>\n\"\"\"\n\nfrom tensorflow.keras.layers import (\n    Activation,\n    Add,\n    BatchNormalization,\n    Conv2D,\n)\nimport tensorflow as tf\nimport typing\n\n@tf.function\ndef block(\n    X: tf.Tensor,\n    kernel_size: int,\n    filters: typing.List[int],\n    stage_no: int,\n    block_name: str,\n    is_conv_layer: bool = False,\n    stride: int = 2\n) -> tf.Tensor:\n    \"\"\"\n    Block for residual network.\n\n    Arguments:\n    X             -- input tensor of shape (m, n_H_prev, n_W_prev, n_C_prev)\n    kernel_size   -- integer, specifying the shape of the middle CONV's window for the main path\n    filters       -- python list of integers, defining the number of filters in the CONV layers of the main path\n    stage_no      -- integer, used to name the layers, depending on their position in the network\n    block_name    -- string/character, used to name the layers, depending on their position in the network\n    is_conv_layer -- to identiy if identity downsample is needed\n    stride        -- integer specifying the stride to be used\n    \n    Returns:\n    X             -- output of the identity block, tensor of shape (n_H, n_W, n_C)\n    \"\"\"\n\n    # names\n    conv_name_base = \"res\" + str(stage_no) + block_name + \"_branch\"\n    bn_name_base = \"bn\" + str(stage_no) + block_name + \"_branch\"\n\n    # filters\n    F1, F2, F3 = filters\n\n    # save the input value for shortcut.\n    X_shortcut = X\n\n    #  First component\n    # NOTE: if conv_layer, you need to do downsampling\n    X = Conv2D(\n        filters = F1,\n        kernel_size = (1, 1),\n        strides = (stride, stride) if is_conv_layer else (1, 1),\n        padding = \"valid\",\n        name = conv_name_base + \"2a\",\n        kernel_initializer = \"glorot_uniform\",\n    )(X)\n    X = BatchNormalization(axis = 3, name = bn_name_base + \"2a\")(X)\n    X = Activation(\"relu\")(X)\n\n    # Second component\n    X = Conv2D(\n        filters = F2,\n        kernel_size = (kernel_size, kernel_size),\n        strides = (1, 1),\n        padding = \"same\",\n        name = conv_name_base + \"2b\",\n        kernel_initializer = \"glorot_uniform\",\n    )(X)\n    X = BatchNormalization(axis = 3, name = bn_name_base + \"2b\")(X)\n    X = Activation(\"relu\")(X)\n\n    # Third component\n    X = Conv2D(\n        filters = F3,\n        kernel_size = (1, 1),\n        strides = (1, 1),\n        padding = \"valid\",\n        name = conv_name_base + \"2c\",\n        kernel_initializer = \"glorot_uniform\",\n    )(X)\n    X = BatchNormalization(axis = 3, name = bn_name_base + \"2c\")(X)\n\n    # NOTE: if is_conv_layer, you need to do downsampling the X_shortcut to match the output (X) channel\n    #       so it can be added together\n    if is_conv_layer:\n        X_shortcut = Conv2D(\n            filters = F3,\n            kernel_size = (1, 1),\n            strides = (stride, stride),\n            padding = \"valid\",\n            name = conv_name_base + \"1\",\n            kernel_initializer = \"glorot_uniform\",\n        )(X_shortcut)\n        X_shortcut = BatchNormalization(axis = 3, name = bn_name_base + \"1\")(X_shortcut)\n\n    # Shortcut value\n    X = Add()([X, X_shortcut])\n    X = Activation(\"relu\")(X)\n\n    return X"
  },
  {
    "path": "ML/TensorFlow/CNN_architectures/ResNet/resnet.py",
    "content": "# Tensorflow v.2.3.1\n\n\"\"\"\nProgrammed by the-robot <https://github.com/the-robot>\n\"\"\"\n\nfrom block import block\n\nfrom tensorflow.keras.layers import (\n    Activation,\n    AveragePooling2D,\n    BatchNormalization,\n    Conv2D,\n    Dense,\n    Flatten,\n    Input,\n    MaxPooling2D,\n    ZeroPadding2D,\n)\nfrom tensorflow.keras import Model\nimport tensorflow as tf\nimport typing\n\ntf.config.run_functions_eagerly(True)\n\n@tf.function\ndef ResNet(name: str, layers: typing.List[int], input_shape: typing.Tuple[int] = (64, 64, 3), classes: int = 6) -> Model:\n    \"\"\"\n    Implementation of the popular ResNet architecture.\n\n    Arguments:\n    name        -- name of the architecture\n    layers      -- number of blocks per layer\n    input_shape -- shape of the images of the dataset\n    classes     -- integer, number of classes\n\n    Returns:\n    model       -- a Model() instance in Keras\n\n\n    Model Architecture:\n    Resnet50:\n        CONV2D -> BATCHNORM -> RELU -> MAXPOOL  // conv1\n            -> CONVBLOCK -> IDBLOCK * 2         // conv2_x\n            -> CONVBLOCK -> IDBLOCK * 3         // conv3_x\n            -> CONVBLOCK -> IDBLOCK * 5         // conv4_x\n            -> CONVBLOCK -> IDBLOCK * 2         // conv5_x\n            -> AVGPOOL\n            -> TOPLAYER\n\n    Resnet101:\n        CONV2D -> BATCHNORM -> RELU -> MAXPOOL  // conv1\n            -> CONVBLOCK -> IDBLOCK * 2         // conv2_x\n            -> CONVBLOCK -> IDBLOCK * 3         // conv3_x\n            -> CONVBLOCK -> IDBLOCK * 22        // conv4_x\n            -> CONVBLOCK -> IDBLOCK * 2         // conv5_x\n            -> AVGPOOL\n            -> TOPLAYER\n\n    Resnet152:\n        CONV2D -> BATCHNORM -> RELU -> MAXPOOL  // conv1\n            -> CONVBLOCK -> IDBLOCK * 2         // conv2_x\n            -> CONVBLOCK -> IDBLOCK * 7         // conv3_x\n            -> CONVBLOCK -> IDBLOCK * 35        // conv4_x\n            -> CONVBLOCK -> IDBLOCK * 2         // conv5_x\n            -> AVGPOOL\n            -> TOPLAYER\n    \"\"\"\n\n    # get layers (layer1 is always the same so no need to provide)\n    layer2, layer3, layer4, layer5 = layers\n\n    # convert input shape into tensor\n    X_input = Input(input_shape)\n\n    # zero-padding\n    X = ZeroPadding2D((3, 3))(X_input)\n\n    # conv1\n    X = Conv2D(\n        filters = 64,\n        kernel_size = (7, 7),\n        strides = (2, 2),\n        name = \"conv1\",\n        kernel_initializer = \"glorot_uniform\",\n    )(X)\n    X = BatchNormalization(axis = 3, name = \"bn_conv1\")(X)\n    X = Activation(\"relu\")(X)\n    X = MaxPooling2D((3, 3), strides = (2, 2))(X)\n\n    # conv2_x\n    X = make_layer(X, layers = layer2, kernel_size = 3, filters = [64, 64, 256], stride = 1, stage_no = 2)\n\n    # conv3_x\n    X = make_layer(X, layers = layer3, kernel_size = 3, filters = [128, 128, 512], stride = 2, stage_no = 3)\n\n    # conv4_x\n    X = make_layer(X, layers = layer4, kernel_size = 3, filters = [256, 256, 1024], stride = 2, stage_no = 4)\n\n    # conv5_x\n    X = make_layer(X, layers = layer5, kernel_size = 3, filters = [512, 512, 2048], stride = 1, stage_no = 5)\n\n    # average pooling\n    X = AveragePooling2D((2, 2), name = \"avg_pool\")(X)\n\n    # output layer\n    X = Flatten()(X)\n    X = Dense(\n        classes,\n        activation = \"softmax\",\n        name=\"fc\" + str(classes),\n        kernel_initializer = \"glorot_uniform\"\n    )(X)\n\n    model = Model(inputs = X_input, outputs = X, name = name)\n    return model\n\ndef make_layer(X: tf.Tensor, layers: int, kernel_size: int, filters: typing.List[int], stride: int, stage_no: int) -> tf.Tensor:\n    \"\"\"\n    Method to create one conv-identity layer for ResNet.\n\n    Arguments:\n    X           -- input tensor\n    layers      -- number of blocks per layer\n    kernel_size -- size of the kernel for the block\n    filters     -- number of filters/channels\n    stride      -- number of stride for downsampling the input\n    stage_no    -- stage number just to name the layer\n\n    Returns:\n    X           -- output tensor\n    \"\"\"\n\n    # create convolution block\n    X = block(\n        X,\n        kernel_size = kernel_size,\n        filters = filters,\n        stage_no = stage_no,\n        block_name = \"a\",\n        is_conv_layer = True,\n        stride = stride\n    )\n\n    # create identity block\n    block_name_ordinal = ord(\"b\")\n    for _ in range(layers - 1):\n        X = block(\n            X,\n            kernel_size = kernel_size,\n            filters =  filters,\n            stage_no = stage_no,\n            block_name = chr(block_name_ordinal)\n        )\n        block_name_ordinal += 1\n\n    return X"
  },
  {
    "path": "ML/TensorFlow/CNN_architectures/ResNet/test.py",
    "content": "# disable tensorflow debugging messages\nimport os\nos.environ['TF_CPP_MIN_LOG_LEVEL'] = '3'\n\nfrom resnet import ResNet\n\nif __name__ == \"__main__\":\n    # test ResNet50\n    model = ResNet(name = \"Resnet50\", layers = [3, 4, 6, 3], input_shape = (64, 64, 3), classes = 6)\n    model.summary()\n"
  },
  {
    "path": "ML/TensorFlow/CNN_architectures/VGGNet/README.md",
    "content": "[Original Paper - Very Deep Convolutional Networks for Large-Scale Image Recognition (2014)](https://arxiv.org/abs/1409.1556)  \n[Related Video](https://www.youtube.com/watch?v=ACmuBbuXn20)\n\nSome questions I had when I was reading the paper\n- [What does 1x1 convolution mean in a neural network?](https://stats.stackexchange.com/questions/194142/what-does-1x1-convolution-mean-in-a-neural-network)\n- [A guide to receptive field arithmetic for Convolutional Neural Networks](https://medium.com/mlreview/a-guide-to-receptive-field-arithmetic-for-convolutional-neural-networks-e0f514068807)\n\nSome other useful links\n- [VGGNet summary](https://medium.com/coinmonks/paper-review-of-vggnet-1st-runner-up-of-ilsvlc-2014-image-classification-d02355543a11)\n- [VGGNet in Keras](https://towardsdatascience.com/step-by-step-vgg16-implementation-in-keras-for-beginners-a833c686ae6c)\n- [VGGNet with Batch Normalization](https://gist.github.com/jjangsangy/38d644606130f05b806a4261c493a820)\n\nThis code is inspired by [VGGNet implement from scratch in PyTorch by aladdinpersson](https://github.com/aladdinpersson/Machine-Learning-Collection/blob/master/ML/Pytorch/CNN_architectures/pytorch_vgg_implementation.py).\n"
  },
  {
    "path": "ML/TensorFlow/CNN_architectures/VGGNet/test.py",
    "content": "# disable tensorflow debugging messages\nimport os\nos.environ['TF_CPP_MIN_LOG_LEVEL'] = '3'\n\nfrom vggnet import VGGNet\n\n# Integer value represents output channel after performing the convolution layer\n# 'M' represents the max pooling layer\n# After convolution blocks; flatten the output and use 4096x4096x1000 Linear Layers\n# with soft-max at the end\nVGG_types = {\n    'VGG11': [64, 'M', 128, 'M', 256, 256, 'M', 512, 512, 'M', 512, 512, 'M'],\n    'VGG13': [64, 64, 'M', 128, 128, 'M', 256, 256, 'M', 512, 512, 'M', 512, 512, 'M'],\n    'VGG16': [64, 64, 'M', 128, 128, 'M', 256, 256, 256, 'M', 512, 512, 512, 'M', 512, 512, 512, 'M'],\n    'VGG19': [64, 64, 'M', 128, 128, 'M', 256, 256, 256, 256, 'M', 512, 512, 512, 512, 'M', 512, 512, 512, 512, 'M'],\n}\n\nif __name__ == \"__main__\":\n    # test VGGNet16\n    model = VGGNet(name = \"VGGNet16\", architecture = VGG_types[\"VGG16\"], input_shape=(224, 224, 3), classes = 1000)\n    model.summary()\n"
  },
  {
    "path": "ML/TensorFlow/CNN_architectures/VGGNet/vggnet.py",
    "content": "# Tensorflow v.2.3.1\n\n\"\"\"\nProgrammed by the-robot <https://github.com/the-robot>\n\"\"\"\n\nfrom tensorflow.keras.layers import (\n    Activation,\n    BatchNormalization,\n    Conv2D,\n    Dense,\n    Dropout,\n    Flatten,\n    Input,\n    MaxPooling2D,\n)\nfrom tensorflow.keras import Model\nimport tensorflow as tf\nimport typing\n\ntf.config.run_functions_eagerly(True)\n\n@tf.function\ndef VGGNet(\n    name: str,\n    architecture: typing.List[ typing.Union[int, str] ],\n    input_shape: typing.Tuple[int],\n    classes: int = 1000\n) -> Model:\n    \"\"\"\n    Implementation of the VGGNet architecture.\n\n    Arguments:\n    name         -- name of the architecture\n    architecture -- number of output channel per convolution layers in VGGNet\n    input_shape  -- shape of the images of the dataset\n    classes      -- integer, number of classes\n\n    Returns:\n    model        -- a Model() instance in Keras\n    \"\"\"\n\n    # convert input shape into tensor\n    X_input = Input(input_shape)\n\n    # make convolution layers\n    X = make_conv_layer(X_input, architecture)\n\n    # flatten the output and make fully connected layers\n    X = Flatten()(X)\n    X = make_dense_layer(X, 4096)\n    X = make_dense_layer(X, 4096)\n\n    # classification layer\n    X = Dense(units = classes, activation = \"softmax\")(X)\n\n    model = Model(inputs = X_input, outputs = X, name = name)\n    return model\n\ndef make_conv_layer(\n    X: tf.Tensor,\n    architecture: typing.List[ typing.Union[int, str] ],\n    activation: str = 'relu'\n) -> tf.Tensor:\n    \"\"\"\n    Method to create convolution layers for VGGNet.\n    In VGGNet\n        - Kernal is always 3x3 for conv-layer with padding 1 and stride 1.\n        - 2x2 kernel for max pooling with stride of 2.\n\n    Arguments:\n    X            -- input tensor\n    architecture -- number of output channel per convolution layers in VGGNet\n    activation   -- type of activation method\n\n    Returns:\n    X           -- output tensor\n    \"\"\"\n\n    for output in architecture:\n\n        # convolution layer\n        if type(output) == int:\n            out_channels = output\n\n            X = Conv2D(\n                filters = out_channels,\n                kernel_size = (3, 3),\n                strides = (1, 1),\n                padding = \"same\"\n            )(X)\n            X = BatchNormalization()(X)\n            X = Activation(activation)(X)\n\n            # relu activation is added (by default activation) so that all the\n            # negative values are not passed to the next layer\n\n        # max-pooling layer\n        else:\n            X = MaxPooling2D(\n                pool_size = (2, 2),\n                strides = (2, 2)\n            )(X)\n\n    return X\n\ndef make_dense_layer(X: tf.Tensor, output_units: int, dropout = 0.5, activation = 'relu') -> tf.Tensor:\n    \"\"\"\n    Method to create dense layer for VGGNet.\n\n    Arguments:\n    X            -- input tensor\n    output_units -- output tensor size\n    dropout      -- dropout value for regularization\n    activation   -- type of activation method\n\n    Returns:\n    X            -- input tensor\n    \"\"\"\n\n    X = Dense(units = output_units)(X)\n    X = BatchNormalization()(X)\n    X = Activation(activation)(X)\n    X = Dropout(dropout)(X)\n\n    return X"
  },
  {
    "path": "ML/TensorFlow/more_advanced/DCGAN/main.py",
    "content": "import os\nos.environ[\"TF_CPP_MIN_LOG_LEVEL\"] = \"2\"\nimport tensorflow as tf\nfrom tensorflow import keras\nfrom tensorflow.keras import layers\nfrom tqdm import tqdm\nimport numpy as np\nimport matplotlib.pyplot as plt\nphysical_devices = tf.config.list_physical_devices(\"GPU\")\ntf.config.experimental.set_memory_growth(physical_devices[0], True)\n\n\ndataset = keras.preprocessing.image_dataset_from_directory(\n    directory=\"celeb_dataset\", label_mode=None, image_size=(64, 64), batch_size=32,\n    shuffle=True, seed=None, validation_split=None,\n).map(lambda x: x / 255.0)\n\ndiscriminator = keras.Sequential(\n    [\n        keras.Input(shape=(64, 64, 3)),\n        layers.Conv2D(64, kernel_size=4, strides=2, padding=\"same\"),\n        layers.LeakyReLU(alpha=0.2),\n        layers.Conv2D(128, kernel_size=4, strides=2, padding=\"same\"),\n        layers.LeakyReLU(0.2),\n        layers.Conv2D(128, kernel_size=4, strides=2, padding=\"same\"),\n        layers.LeakyReLU(0.2),\n        layers.Flatten(),\n        layers.Dropout(0.2),\n        layers.Dense(1, activation=\"sigmoid\"),\n    ],\n    name=\"discriminator\",\n)\nprint(discriminator.summary())\n\nlatent_dim = 128\ngenerator = keras.Sequential(\n    [\n        keras.Input(shape=(latent_dim,)),\n        layers.Dense(8 * 8 * 128),\n        layers.Reshape((8, 8, 128)),\n        layers.Conv2DTranspose(128, kernel_size=4, strides=2, padding=\"same\"),\n        layers.LeakyReLU(alpha=0.2),\n        layers.Conv2DTranspose(256, kernel_size=4, strides=2, padding=\"same\"),\n        layers.LeakyReLU(alpha=0.2),\n        layers.Conv2DTranspose(512, kernel_size=4, strides=2, padding=\"same\"),\n        layers.LeakyReLU(alpha=0.2),\n        layers.Conv2D(3, kernel_size=5, padding=\"same\", activation=\"sigmoid\"),\n    ],\n    name=\"generator\",\n)\ngenerator.summary()\n\nopt_gen = keras.optimizers.Adam(1e-4)\nopt_disc = keras.optimizers.Adam(1e-4)\nloss_fn = keras.losses.BinaryCrossentropy()\n\nfor epoch in range(10):\n    for idx, (real) in enumerate(tqdm(dataset)):\n        batch_size = real.shape[0]\n        with tf.GradientTape() as gen_tape:\n            random_latent_vectors = tf.random.normal(shape = (batch_size, latent_dim))\n            fake = generator(random_latent_vectors)\n\n        if idx % 100 == 0:\n            img = keras.preprocessing.image.array_to_img(fake[0])\n            img.save(\"gen_images/generated_img_%03d_%d.png\" % (epoch, idx))\n\n        ### Train Discriminator: max log(D(x)) + log(1 - D(G(z)))\n        with tf.GradientTape() as disc_tape:\n            loss_disc_real = loss_fn(tf.ones((batch_size, 1)), discriminator(real))\n            loss_disc_fake = loss_fn(tf.zeros((batch_size, 1)), discriminator(fake))\n            loss_disc = (loss_disc_real + loss_disc_fake)/2\n\n        grads = disc_tape.gradient(loss_disc, discriminator.trainable_weights)\n        opt_disc.apply_gradients(\n            zip(grads, discriminator.trainable_weights)\n        )\n\n        ### Train Generator: min log(1 - D(G(z))) <-> max log(D(G(z))\n        with tf.GradientTape() as gen_tape:\n            fake = generator(random_latent_vectors)\n            output = discriminator(fake)\n            loss_gen = loss_fn(tf.ones(batch_size, 1), output)\n\n        grads = gen_tape.gradient(loss_gen, generator.trainable_weights)\n        opt_gen.apply_gradients(zip(grads, generator.trainable_weights))\n\n\n\n\n\n"
  },
  {
    "path": "ML/TensorFlow/more_advanced/DCGAN/train.py",
    "content": "import os\nos.environ[\"TF_CPP_MIN_LOG_LEVEL\"] = \"2\"\nimport tensorflow as tf\nfrom tensorflow import keras\nfrom tensorflow.keras import layers\nfrom tqdm import tqdm\nimport numpy as np\nimport matplotlib.pyplot as plt\n\nphysical_devices = tf.config.list_physical_devices(\"GPU\")\ntf.config.experimental.set_memory_growth(physical_devices[0], True)\n\ndataset = keras.preprocessing.image_dataset_from_directory(\n    directory=\"celeb_dataset\", label_mode=None, image_size=(64, 64), batch_size=32,\n    shuffle=True\n).map(lambda x: x/255.0)\n\ndiscriminator = keras.Sequential(\n    [\n        keras.Input(shape=(64,64,3)),\n        layers.Conv2D(64, kernel_size=4, strides=2, padding=\"same\"),\n        layers.LeakyReLU(0.2),\n        layers.Conv2D(128, kernel_size=4, strides=2, padding=\"same\"),\n        layers.LeakyReLU(0.2),\n        layers.Conv2D(128, kernel_size=4, strides=2, padding=\"same\"),\n        layers.LeakyReLU(0.2),\n        layers.Flatten(),\n        layers.Dropout(0.2),\n        layers.Dense(1, activation=\"sigmoid\"),\n    ]\n)\n\nprint(discriminator.summary())\n\nlatent_dim = 128\ngenerator = keras.Sequential(\n    [\n        layers.Input(shape=(latent_dim,)),\n        layers.Dense(8*8*128),\n        layers.Reshape((8, 8, 128)),\n        layers.Conv2DTranspose(128, kernel_size=4, strides=2, padding=\"same\"),\n        layers.LeakyReLU(0.2),\n        layers.Conv2DTranspose(256, kernel_size=4, strides=2, padding=\"same\"),\n        layers.LeakyReLU(0.2),\n        layers.Conv2DTranspose(512, kernel_size=4, strides=2, padding=\"same\"),\n        layers.LeakyReLU(0.2),\n        layers.Conv2D(3, kernel_size=5, padding=\"same\", activation=\"sigmoid\"),\n    ]\n)\ngenerator.summary()\n\nopt_gen = keras.optimizers.Adam(1e-4)\nopt_disc = keras.optimizers.Adam(1e-4)\nloss_fn = keras.losses.BinaryCrossentropy()\n\nfor epoch in range(10):\n    for idx, real in enumerate(tqdm(dataset)):\n        batch_size = real.shape[0]\n        random_latent_vectors = tf.random.normal(shape=(batch_size, latent_dim))\n        fake = generator(random_latent_vectors)\n\n        if idx % 100 == 0:\n            img = keras.preprocessing.image.array_to_img(fake[0])\n            img.save(f\"generated_images/generated_img{epoch}_{idx}_.png\")\n\n        ### Train Discriminator: max log(D(x)) + log(1 - D(G(z))\n        with tf.GradientTape() as disc_tape:\n            loss_disc_real = loss_fn(tf.ones((batch_size, 1)), discriminator(real))\n            loss_disc_fake = loss_fn(tf.zeros(batch_size, 1), discriminator(fake))\n            loss_disc = (loss_disc_real + loss_disc_fake)/2\n\n        grads = disc_tape.gradient(loss_disc, discriminator.trainable_weights)\n        opt_disc.apply_gradients(\n            zip(grads, discriminator.trainable_weights)\n        )\n\n        ### Train Generator min log(1 - D(G(z)) <-> max log(D(G(z))\n        with tf.GradientTape() as gen_tape:\n            fake = generator(random_latent_vectors)\n            output = discriminator(fake)\n            loss_gen = loss_fn(tf.ones(batch_size, 1), output)\n\n        grads = gen_tape.gradient(loss_gen, generator.trainable_weights)\n        opt_gen.apply_gradients(\n            zip(grads, generator.trainable_weights)\n        )\n\n"
  },
  {
    "path": "ML/algorithms/MCTS/Monte Carlo Tree Search - TicTacToe.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 1,\n   \"id\": \"18676180\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import numpy as np\\n\",\n    \"import ipywidgets as widgets\\n\",\n    \"from tqdm import tqdm\\n\",\n    \"import random\\n\",\n    \"import matplotlib.pyplot as plt\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 254,\n   \"id\": \"d69c70f2\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"class MCTSNode:\\n\",\n    \"    def __init__(self, state, parent_node):\\n\",\n    \"        self.state = state\\n\",\n    \"        self.parent_node = parent_node\\n\",\n    \"        self.total_visits = 0\\n\",\n    \"        self.total_score = 0\\n\",\n    \"        self.children_nodes = []\\n\",\n    \"        self.player = self.check_player(state)\\n\",\n    \"        self.terminate_state = False\\n\",\n    \"        self.all_children_nodes = False\\n\",\n    \"\\n\",\n    \"    def check_player(self, state):\\n\",\n    \"        if np.sum(state==1) > np.sum(state==2):\\n\",\n    \"            return 2\\n\",\n    \"        else:\\n\",\n    \"            return 1\\n\",\n    \"\\n\",\n    \"class MCTS:\\n\",\n    \"    def __init__(self, exploration_constant = 2):\\n\",\n    \"        self.exploration_constant = exploration_constant\\n\",\n    \"\\n\",\n    \"    def is_terminal(self, board):\\n\",\n    \"        return not np.any(board == 0)\\n\",\n    \"\\n\",\n    \"    def is_win(self, state, player):\\n\",\n    \"        col_win = (np.sum(state == player, axis=0) == 3).any()\\n\",\n    \"        row_win = (np.sum(state == player, axis=1) == 3).any()\\n\",\n    \"        diagonal_win = np.trace(state == player) == 3\\n\",\n    \"        opposite_diagonal = np.trace(np.fliplr(state) == player) == 3\\n\",\n    \"        return col_win or row_win or diagonal_win or opposite_diagonal\\n\",\n    \"\\n\",\n    \"    def select(self, curr_node, should_explore=True):\\n\",\n    \"        while not is_terminal(curr_node.state) and not (self.is_win(curr_node.state, 1) or self.is_win(curr_node.state, 2)):\\n\",\n    \"            if curr_node.all_children_nodes:\\n\",\n    \"                highest_value = -float(\\\"inf\\\")\\n\",\n    \"                chosen_child = None\\n\",\n    \"\\n\",\n    \"                # loop all children nodes and take the best one according to heuristic\\n\",\n    \"                for child in curr_node.children_nodes:\\n\",\n    \"                    # compute UCB1 score\\n\",\n    \"                    child_val = (child.total_score/child.total_visits) + should_explore*self.exploration_constant*np.sqrt(np.log(curr_node.total_visits)/child.total_visits)\\n\",\n    \"\\n\",\n    \"                    # if it has highest value then store it as the chosen child from this step\\n\",\n    \"                    if child_val > highest_value:\\n\",\n    \"                        highest_value = child_val\\n\",\n    \"                        chosen_child = child\\n\",\n    \"\\n\",\n    \"                # choose highest value move\\n\",\n    \"                return chosen_child\\n\",\n    \"\\n\",\n    \"            else:\\n\",\n    \"                # if not all children nodes accessible then expand the node first\\n\",\n    \"                return self.expand(curr_node)\\n\",\n    \"\\n\",\n    \"        print(\\\"should never come here\\\")\\n\",\n    \"\\n\",\n    \"    def expand(self, curr_node):\\n\",\n    \"        states = self.generate_next_states(curr_node)\\n\",\n    \"\\n\",\n    \"        for state in states:\\n\",\n    \"            # unroll children states, and ensure we do not expand to a state we have \\n\",\n    \"            # already expanded to in a previous iteration\\n\",\n    \"            if str(state) not in [str(b.state) for b in curr_node.children_nodes]:\\n\",\n    \"                child_node = MCTSNode(state, curr_node)\\n\",\n    \"                curr_node.children_nodes.append(child_node)\\n\",\n    \"                \\n\",\n    \"                # if the num children nodes equal the amount of possible next states\\n\",\n    \"                # we have explored all child nodes for this state\\n\",\n    \"                if len(states) == len(curr_node.children_nodes):\\n\",\n    \"                    curr_node.all_children_nodes = True\\n\",\n    \"\\n\",\n    \"                return child_node\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"    def simulate(self, curr_node, computer_playing):\\n\",\n    \"        opponent = 1 if computer_playing == 2 else 1\\n\",\n    \"        \\n\",\n    \"        while not is_terminal(curr_node.state) and not (self.is_win(curr_node.state, 1) or self.is_win(curr_node.state, 2)):\\n\",\n    \"            next_states = self.generate_next_states(curr_node)\\n\",\n    \"            curr_node = MCTSNode(next_states[random.randint(0, len(next_states) - 1)], curr_node)\\n\",\n    \"        \\n\",\n    \"        if self.is_win(curr_node.state, player=computer_playing):\\n\",\n    \"            return 1\\n\",\n    \"        elif self.is_win(curr_node.state, player=opponent):\\n\",\n    \"            return -1\\n\",\n    \"        else:\\n\",\n    \"            return 0\\n\",\n    \"\\n\",\n    \"        \\n\",\n    \"    def backpropagate(self, node, score):\\n\",\n    \"        while node:\\n\",\n    \"            node.total_visits += 1\\n\",\n    \"            node.total_score += score\\n\",\n    \"            node = node.parent_node\\n\",\n    \"    \\n\",\n    \"    def generate_next_states(self, curr_node):\\n\",\n    \"        player = curr_node.player\\n\",\n    \"        curr_state = curr_node.state\\n\",\n    \"        next_states = []\\n\",\n    \"        for i in range(3):\\n\",\n    \"            for j in range(3):\\n\",\n    \"                if curr_state[i,j] == 0:\\n\",\n    \"                    to_append = np.copy(curr_state)\\n\",\n    \"                    to_append[i,j] = player\\n\",\n    \"                    next_states.append(to_append)\\n\",\n    \"        return next_states\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"    def get_move(self, root, num_iterations=1000):\\n\",\n    \"        for it in range(num_iterations):\\n\",\n    \"            curr_node = self.select(root)\\n\",\n    \"            obtained_value = self.simulate(curr_node, root.player)\\n\",\n    \"            self.backpropagate(curr_node, obtained_value)\\n\",\n    \"        \\n\",\n    \"        chosen_move = self.select(root, should_explore=False)\\n\",\n    \"        return chosen_move\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": 263,\n   \"id\": \"36e39228\",\n   \"metadata\": {\n    \"scrolled\": true\n   },\n   \"outputs\": [\n    {\n     \"name\": \"stdout\",\n     \"output_type\": \"stream\",\n     \"text\": [\n      \"Row and column to place with ,1,1\\n\",\n      \"[[0. 0. 0.]\\n\",\n      \" [0. 1. 0.]\\n\",\n      \" [0. 0. 2.]]\\n\",\n      \"Row and column to place with ,0,0\\n\",\n      \"[[1. 0. 0.]\\n\",\n      \" [0. 1. 0.]\\n\",\n      \" [2. 0. 2.]]\\n\",\n      \"Row and column to place with ,2,1\\n\",\n      \"[[1. 2. 0.]\\n\",\n      \" [0. 1. 0.]\\n\",\n      \" [2. 1. 2.]]\\n\",\n      \"Row and column to place with ,1,2\\n\",\n      \"[[1. 2. 0.]\\n\",\n      \" [2. 1. 1.]\\n\",\n      \" [2. 1. 2.]]\\n\",\n      \"Row and column to place with ,0,2\\n\",\n      \"should never come here\\n\"\n     ]\n    },\n    {\n     \"ename\": \"AttributeError\",\n     \"evalue\": \"'NoneType' object has no attribute 'state'\",\n     \"output_type\": \"error\",\n     \"traceback\": [\n      \"\\u001b[1;31m---------------------------------------------------------------------------\\u001b[0m\",\n      \"\\u001b[1;31mAttributeError\\u001b[0m                            Traceback (most recent call last)\",\n      \"\\u001b[1;32m~\\\\AppData\\\\Local\\\\Temp/ipykernel_15720/2518229713.py\\u001b[0m in \\u001b[0;36m<module>\\u001b[1;34m\\u001b[0m\\n\\u001b[0;32m      9\\u001b[0m     \\u001b[0mnext_node\\u001b[0m \\u001b[1;33m=\\u001b[0m \\u001b[0mMCTSNode\\u001b[0m\\u001b[1;33m(\\u001b[0m\\u001b[0mstate\\u001b[0m\\u001b[1;33m,\\u001b[0m \\u001b[0mroot\\u001b[0m\\u001b[1;33m)\\u001b[0m\\u001b[1;33m\\u001b[0m\\u001b[1;33m\\u001b[0m\\u001b[0m\\n\\u001b[0;32m     10\\u001b[0m \\u001b[1;33m\\u001b[0m\\u001b[0m\\n\\u001b[1;32m---> 11\\u001b[1;33m     \\u001b[0mroot\\u001b[0m \\u001b[1;33m=\\u001b[0m \\u001b[0mmc\\u001b[0m\\u001b[1;33m.\\u001b[0m\\u001b[0mget_move\\u001b[0m\\u001b[1;33m(\\u001b[0m\\u001b[0mnext_node\\u001b[0m\\u001b[1;33m)\\u001b[0m\\u001b[1;33m\\u001b[0m\\u001b[1;33m\\u001b[0m\\u001b[0m\\n\\u001b[0m\\u001b[0;32m     12\\u001b[0m     \\u001b[0mprint\\u001b[0m\\u001b[1;33m(\\u001b[0m\\u001b[0mroot\\u001b[0m\\u001b[1;33m.\\u001b[0m\\u001b[0mstate\\u001b[0m\\u001b[1;33m)\\u001b[0m\\u001b[1;33m\\u001b[0m\\u001b[1;33m\\u001b[0m\\u001b[0m\\n\\u001b[0;32m     13\\u001b[0m \\u001b[1;33m\\u001b[0m\\u001b[0m\\n\",\n      \"\\u001b[1;32m~\\\\AppData\\\\Local\\\\Temp/ipykernel_15720/416212796.py\\u001b[0m in \\u001b[0;36mget_move\\u001b[1;34m(self, root, num_iterations)\\u001b[0m\\n\\u001b[0;32m    110\\u001b[0m         \\u001b[1;32mfor\\u001b[0m \\u001b[0mit\\u001b[0m \\u001b[1;32min\\u001b[0m \\u001b[0mrange\\u001b[0m\\u001b[1;33m(\\u001b[0m\\u001b[0mnum_iterations\\u001b[0m\\u001b[1;33m)\\u001b[0m\\u001b[1;33m:\\u001b[0m\\u001b[1;33m\\u001b[0m\\u001b[1;33m\\u001b[0m\\u001b[0m\\n\\u001b[0;32m    111\\u001b[0m             \\u001b[0mcurr_node\\u001b[0m \\u001b[1;33m=\\u001b[0m \\u001b[0mself\\u001b[0m\\u001b[1;33m.\\u001b[0m\\u001b[0mselect\\u001b[0m\\u001b[1;33m(\\u001b[0m\\u001b[0mroot\\u001b[0m\\u001b[1;33m)\\u001b[0m\\u001b[1;33m\\u001b[0m\\u001b[1;33m\\u001b[0m\\u001b[0m\\n\\u001b[1;32m--> 112\\u001b[1;33m             \\u001b[0mobtained_value\\u001b[0m \\u001b[1;33m=\\u001b[0m \\u001b[0mself\\u001b[0m\\u001b[1;33m.\\u001b[0m\\u001b[0msimulate\\u001b[0m\\u001b[1;33m(\\u001b[0m\\u001b[0mcurr_node\\u001b[0m\\u001b[1;33m,\\u001b[0m \\u001b[0mroot\\u001b[0m\\u001b[1;33m.\\u001b[0m\\u001b[0mplayer\\u001b[0m\\u001b[1;33m)\\u001b[0m\\u001b[1;33m\\u001b[0m\\u001b[1;33m\\u001b[0m\\u001b[0m\\n\\u001b[0m\\u001b[0;32m    113\\u001b[0m             \\u001b[0mself\\u001b[0m\\u001b[1;33m.\\u001b[0m\\u001b[0mbackpropagate\\u001b[0m\\u001b[1;33m(\\u001b[0m\\u001b[0mcurr_node\\u001b[0m\\u001b[1;33m,\\u001b[0m \\u001b[0mobtained_value\\u001b[0m\\u001b[1;33m)\\u001b[0m\\u001b[1;33m\\u001b[0m\\u001b[1;33m\\u001b[0m\\u001b[0m\\n\\u001b[0;32m    114\\u001b[0m \\u001b[1;33m\\u001b[0m\\u001b[0m\\n\",\n      \"\\u001b[1;32m~\\\\AppData\\\\Local\\\\Temp/ipykernel_15720/416212796.py\\u001b[0m in \\u001b[0;36msimulate\\u001b[1;34m(self, curr_node, computer_playing)\\u001b[0m\\n\\u001b[0;32m     76\\u001b[0m         \\u001b[0mopponent\\u001b[0m \\u001b[1;33m=\\u001b[0m \\u001b[1;36m1\\u001b[0m \\u001b[1;32mif\\u001b[0m \\u001b[0mcomputer_playing\\u001b[0m \\u001b[1;33m==\\u001b[0m \\u001b[1;36m2\\u001b[0m \\u001b[1;32melse\\u001b[0m \\u001b[1;36m1\\u001b[0m\\u001b[1;33m\\u001b[0m\\u001b[1;33m\\u001b[0m\\u001b[0m\\n\\u001b[0;32m     77\\u001b[0m \\u001b[1;33m\\u001b[0m\\u001b[0m\\n\\u001b[1;32m---> 78\\u001b[1;33m         \\u001b[1;32mwhile\\u001b[0m \\u001b[1;32mnot\\u001b[0m \\u001b[0mis_terminal\\u001b[0m\\u001b[1;33m(\\u001b[0m\\u001b[0mcurr_node\\u001b[0m\\u001b[1;33m.\\u001b[0m\\u001b[0mstate\\u001b[0m\\u001b[1;33m)\\u001b[0m \\u001b[1;32mand\\u001b[0m \\u001b[1;32mnot\\u001b[0m \\u001b[1;33m(\\u001b[0m\\u001b[0mself\\u001b[0m\\u001b[1;33m.\\u001b[0m\\u001b[0mis_win\\u001b[0m\\u001b[1;33m(\\u001b[0m\\u001b[0mcurr_node\\u001b[0m\\u001b[1;33m.\\u001b[0m\\u001b[0mstate\\u001b[0m\\u001b[1;33m,\\u001b[0m \\u001b[1;36m1\\u001b[0m\\u001b[1;33m)\\u001b[0m \\u001b[1;32mor\\u001b[0m \\u001b[0mself\\u001b[0m\\u001b[1;33m.\\u001b[0m\\u001b[0mis_win\\u001b[0m\\u001b[1;33m(\\u001b[0m\\u001b[0mcurr_node\\u001b[0m\\u001b[1;33m.\\u001b[0m\\u001b[0mstate\\u001b[0m\\u001b[1;33m,\\u001b[0m \\u001b[1;36m2\\u001b[0m\\u001b[1;33m)\\u001b[0m\\u001b[1;33m)\\u001b[0m\\u001b[1;33m:\\u001b[0m\\u001b[1;33m\\u001b[0m\\u001b[1;33m\\u001b[0m\\u001b[0m\\n\\u001b[0m\\u001b[0;32m     79\\u001b[0m             \\u001b[0mnext_states\\u001b[0m \\u001b[1;33m=\\u001b[0m \\u001b[0mself\\u001b[0m\\u001b[1;33m.\\u001b[0m\\u001b[0mgenerate_next_states\\u001b[0m\\u001b[1;33m(\\u001b[0m\\u001b[0mcurr_node\\u001b[0m\\u001b[1;33m)\\u001b[0m\\u001b[1;33m\\u001b[0m\\u001b[1;33m\\u001b[0m\\u001b[0m\\n\\u001b[0;32m     80\\u001b[0m             \\u001b[0mcurr_node\\u001b[0m \\u001b[1;33m=\\u001b[0m \\u001b[0mMCTSNode\\u001b[0m\\u001b[1;33m(\\u001b[0m\\u001b[0mnext_states\\u001b[0m\\u001b[1;33m[\\u001b[0m\\u001b[0mrandom\\u001b[0m\\u001b[1;33m.\\u001b[0m\\u001b[0mrandint\\u001b[0m\\u001b[1;33m(\\u001b[0m\\u001b[1;36m0\\u001b[0m\\u001b[1;33m,\\u001b[0m \\u001b[0mlen\\u001b[0m\\u001b[1;33m(\\u001b[0m\\u001b[0mnext_states\\u001b[0m\\u001b[1;33m)\\u001b[0m \\u001b[1;33m-\\u001b[0m \\u001b[1;36m1\\u001b[0m\\u001b[1;33m)\\u001b[0m\\u001b[1;33m]\\u001b[0m\\u001b[1;33m,\\u001b[0m \\u001b[0mcurr_node\\u001b[0m\\u001b[1;33m)\\u001b[0m\\u001b[1;33m\\u001b[0m\\u001b[1;33m\\u001b[0m\\u001b[0m\\n\",\n      \"\\u001b[1;31mAttributeError\\u001b[0m: 'NoneType' object has no attribute 'state'\"\n     ]\n    }\n   ],\n   \"source\": [\n    \"a = np.zeros((3,3))\\n\",\n    \"root = MCTSNode(a, None)\\n\",\n    \"mc = MCTS()\\n\",\n    \"\\n\",\n    \"for i in range(9):\\n\",\n    \"    row_col = input(\\\"Row and column to place with ,\\\").split(\\\",\\\")\\n\",\n    \"    state = np.copy(root.state)\\n\",\n    \"    state[int(row_col[0]), int(row_col[1])] = 1\\n\",\n    \"    next_node = MCTSNode(state, root)\\n\",\n    \"    \\n\",\n    \"    root = mc.get_move(next_node)\\n\",\n    \"    print(root.state)\\n\",\n    \"\\n\",\n    \"print(\\\"Final: {root.state}\\\")\\n\",\n    \"    \"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3 (ipykernel)\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.9.5\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 5\n}\n"
  },
  {
    "path": "ML/algorithms/decisiontree/decision_tree.py",
    "content": "\"\"\"\nAuthor: Philip Andreadis\ne-mail: philip_andreadis@hotmail.com\n\n\nImplementation of Decision Tree model from scratch.\nMetric used to apply the split on the data is the Gini index which is calculated for each feature's single value\nin order to find the best split on each step. This means there is room for improvement performance wise as this\nprocess is O(n^2) and can be reduced to linear complexity.\n\nParameters of the model:\nmax_depth (int): Maximum depth of the decision tree\nmin_node_size (int): Minimum number of instances a node can have. If this threshold is exceeded the node is terminated\n\nBoth are up to the user to set.\n\nInput dataset to train() function must be a numpy array containing both feature and label values.\n\n\"\"\"\n\n\nfrom collections import Counter\nimport numpy as np\n\n\nclass DecisionTree:\n    def __init__(self, max_depth, min_node_size):\n        self.max_depth = max_depth\n        self.min_node_size = min_node_size\n        self.final_tree = {}\n\n    \"\"\"\n        This function calculates the gini index of a split in the dataset\n        Firstly the gini score is calculated for each child note and the resulting Gini is the weighted sum of gini_left and gini_right\n\n        Parameters:\n        child_nodes (list of np arrays): The two groups of instances resulting from the split\n\n        Returns:\n        float:Gini index of the split \n\n       \"\"\"\n\n    def calculate_gini(self, child_nodes):\n        n = 0\n        # Calculate number of all instances of the parent node\n        for node in child_nodes:\n            n = n + len(node)\n        gini = 0\n        # Calculate gini index for each child node\n        for node in child_nodes:\n            m = len(node)\n\n            # Avoid division by zero if a child node is empty\n            if m == 0:\n                continue\n\n            # Create a list with each instance's class value\n            y = []\n            for row in node:\n                y.append(row[-1])\n\n            # Count the frequency for each class value\n            freq = Counter(y).values()\n            node_gini = 1\n            for i in freq:\n                node_gini = node_gini - (i / m) ** 2\n            gini = gini + (m / n) * node_gini\n        return gini\n\n    \"\"\"\n            This function splits the dataset on certain value of a feature\n            Parameters:\n            feature_index (int): Index of selected feature\n            \n            threshold : Value of the feature split point\n            \n\n            Returns:\n            np.array: Two new groups of split instances\n\n           \"\"\"\n\n    def apply_split(self, feature_index, threshold, data):\n        instances = data.tolist()\n        left_child = []\n        right_child = []\n        for row in instances:\n            if row[feature_index] < threshold:\n                left_child.append(row)\n            else:\n                right_child.append(row)\n        left_child = np.array(left_child)\n        right_child = np.array(right_child)\n        return left_child, right_child\n\n    \"\"\"\n                This function finds the best split on the dataset on each iteration of the algorithm by evaluating\n                all possible splits and applying the one with the minimum Gini index.\n                Parameters:\n                data: Dataset\n\n                Returns node (dict): Dictionary with the index of the splitting feature and its value and the two child nodes\n\n               \"\"\"\n\n    def find_best_split(self, data):\n        num_of_features = len(data[0]) - 1\n        gini_score = 1000\n        f_index = 0\n        f_value = 0\n        # Iterate through each feature and find minimum gini score\n        for column in range(num_of_features):\n            for row in data:\n                value = row[column]\n                l, r = self.apply_split(column, value, data)\n                children = [l, r]\n                score = self.calculate_gini(children)\n                # print(\"Candidate split feature X{} < {} with Gini score {}\".format(column,value,score))\n                if score < gini_score:\n                    gini_score = score\n                    f_index = column\n                    f_value = value\n                    child_nodes = children\n        # print(\"Chosen feature is {} and its value is {} with gini index {}\".format(f_index,f_value,gini_score))\n        node = {\"feature\": f_index, \"value\": f_value, \"children\": child_nodes}\n        return node\n\n    \"\"\"\n        This function calculates the most frequent class value in a group of instances\n        Parameters:\n        node: Group of instances\n\n        Returns : Most common class value\n\n    \"\"\"\n\n    def calc_class(self, node):\n        # Create a list with each instance's class value\n        y = []\n        for row in node:\n            y.append(row[-1])\n        # Find most common class value\n        occurence_count = Counter(y)\n        return occurence_count.most_common(1)[0][0]\n\n    \"\"\"\n        Recursive function that builds the decision tree by applying split on every child node until they become terminal.\n        Cases to terminate a node is: i.max depth of tree is reached ii.minimum size of node is not met iii.child node is empty\n        Parameters:\n        node: Group of instances\n        depth (int): Current depth of the tree\n\n\n    \"\"\"\n\n    def recursive_split(self, node, depth):\n        l, r = node[\"children\"]\n        del node[\"children\"]\n        if l.size == 0:\n            c_value = self.calc_class(r)\n            node[\"left\"] = node[\"right\"] = {\"class_value\": c_value, \"depth\": depth}\n            return\n        elif r.size == 0:\n            c_value = self.calc_class(l)\n            node[\"left\"] = node[\"right\"] = {\"class_value\": c_value, \"depth\": depth}\n            return\n        # Check if tree has reached max depth\n        if depth >= self.max_depth:\n            # Terminate left child node\n            c_value = self.calc_class(l)\n            node[\"left\"] = {\"class_value\": c_value, \"depth\": depth}\n            # Terminate right child node\n            c_value = self.calc_class(r)\n            node[\"right\"] = {\"class_value\": c_value, \"depth\": depth}\n            return\n        # process left child\n        if len(l) <= self.min_node_size:\n            c_value = self.calc_class(l)\n            node[\"left\"] = {\"class_value\": c_value, \"depth\": depth}\n        else:\n            node[\"left\"] = self.find_best_split(l)\n            self.recursive_split(node[\"left\"], depth + 1)\n        # process right child\n        if len(r) <= self.min_node_size:\n            c_value = self.calc_class(r)\n            node[\"right\"] = {\"class_value\": c_value, \"depth\": depth}\n        else:\n            node[\"right\"] = self.find_best_split(r)\n            self.recursive_split(node[\"right\"], depth + 1)\n\n    \"\"\"\n        Apply the recursive split algorithm on the data in order to build the decision tree\n        Parameters:\n        X (np.array): Training data\n        \n        Returns tree (dict): The decision tree in the form of a dictionary.\n    \"\"\"\n\n    def train(self, X):\n        # Create initial node\n        tree = self.find_best_split(X)\n        # Generate the rest of the tree via recursion\n        self.recursive_split(tree, 1)\n        self.final_tree = tree\n        return tree\n\n    \"\"\"\n        Prints out the decision tree.\n        Parameters:\n        tree (dict): Decision tree\n\n    \"\"\"\n\n    def print_dt(self, tree, depth=0):\n        if \"feature\" in tree:\n            print(\n                \"\\nSPLIT NODE: feature #{} < {} depth:{}\\n\".format(\n                    tree[\"feature\"], tree[\"value\"], depth\n                )\n            )\n            self.print_dt(tree[\"left\"], depth + 1)\n            self.print_dt(tree[\"right\"], depth + 1)\n        else:\n            print(\n                \"TERMINAL NODE: class value:{} depth:{}\".format(\n                    tree[\"class_value\"], tree[\"depth\"]\n                )\n            )\n\n    \"\"\"\n        This function outputs the class value of the instance given based on the decision tree created previously.\n        Parameters:\n        tree (dict): Decision tree\n        instance(id np.array): Single instance of data\n\n        Returns (float): predicted class value of the given instance\n    \"\"\"\n\n    def predict_single(self, tree, instance):\n        if not tree:\n            print(\"ERROR: Please train the decision tree first\")\n            return -1\n        if \"feature\" in tree:\n            if instance[tree[\"feature\"]] < tree[\"value\"]:\n                return self.predict_single(tree[\"left\"], instance)\n            else:\n                return self.predict_single(tree[\"right\"], instance)\n        else:\n            return tree[\"class_value\"]\n\n    \"\"\"\n        This function outputs the class value for each instance of the given dataset.\n        Parameters:\n        X (np.array): Dataset with labels\n        \n        Returns y (np.array): array with the predicted class values of the dataset\n    \"\"\"\n\n    def predict(self, X):\n        y_predict = []\n        for row in X:\n            y_predict.append(self.predict_single(self.final_tree, row))\n        return np.array(y_predict)\n\n\nif __name__ == \"__main__\":\n\n    # # test dataset\n    # X = np.array([[1, 1,0], [3, 1, 0], [1, 4, 0], [2, 4, 1], [3, 3, 1], [5, 1, 1]])\n    # y = np.array([0, 0, 0, 1, 1, 1])\n\n    train_data = np.loadtxt(\"example_data/data.txt\", delimiter=\",\")\n    train_y = np.loadtxt(\"example_data/targets.txt\")\n\n    # Build tree\n    dt = DecisionTree(5, 1)\n    tree = dt.train(train_data)\n    y_pred = dt.predict(train_data)\n    print(f\"Accuracy: {sum(y_pred == train_y) / train_y.shape[0]}\")\n    # Print out the decision tree\n    # dt.print_dt(tree)\n"
  },
  {
    "path": "ML/algorithms/decisiontree/example_data/data.txt",
    "content": "1.1107,   -2.1079,   1\n-0.5498,    0.0943,  1\n-0.0382,    1.8829,1\n0.0555,   -0.6139,1\n0.5870,   -1.2067,1\n0.5453,    0.2509,1\n-0.3927,   -0.6220,1\n-1.1905,   -1.8785,1\n-0.4240,    0.7772,1\n-0.7139,    1.5846,1\n-0.8883,    2.1408,1\n-0.6922,    0.0993,1\n1.4350,    1.2334,1\n-0.7576,    0.7386,1\n-1.1144,   -1.7059,1\n0.6612,   -1.7296,1\n-2.1381,   -0.0600,1\n1.3857,    1.2178,1\n-1.4951,    0.0373,1\n0.8029,    0.9739,1\n1.5607,    1.5862,1\n0.8563,   -1.4245,1\n0.0397,   -1.3799,1\n1.2331,    1.7421,1\n-2.0015,    0.8355,1\n-0.3428,   -0.4780,1\n-0.8891,    1.2634,1\n0.3832,   -0.1189,1\n0.4172,    1.0132,1\n-0.8695,   -0.7947,1\n2.9737,    3.6438,2\n3.7680,    1.8649,2\n0.1166,    0.9435,2\n0.6896,    3.9160,2\n1.2234,    2.9899,2\n2.3009,    0.4150,2\n3.7693,    3.8027,2\n1.9450,    3.4208,2\n0.9290,    3.3611,2\n5.0027,    2.7870,2\n1.0101,    1.8737,2\n2.0751,    2.2628,2\n1.9113,    3.6777,2\n2.3127,    3.9130,2\n1.9392,    2.3976,2\n3.1218,    2.5495,2\n1.7032,    1.1509,2\n0.4212,    3.5322,2\n2.7686,    0.9402,2\n2.1696,    2.9285,2\n0.3380,    2.0947,2\n3.6886,    0.4054,2\n2.6315,    3.1962,2\n-0.5332,    3.1421,2\n0.3380,    3.0801,2\n1.4030,    1.1841,2\n2.8739,    2.7777,2\n1.1254,    3.2404,2\n0.0988,    1.9522,2\n0.3688,    2.8904,2\n1.4758,   -1.6387,3\n1.9289,   -1.8191,3\n2.5741,   -1.3213,3\n2.1917,   -1.2852,3\n0.8358,   -2.3349,3\n2.6863,   -1.8834,3\n3.1102,   -0.4854,3\n3.7073,   -0.6466,3\n3.6394,   -0.4097,3\n0.5365,   -3.6555,3\n2.9295,   -0.3819,3\n0.8168,   -3.1133,3\n1.3432,   -1.7717,3\n1.1039,   -2.2261,3\n1.3754,   -2.2236,3\n0.6757,   -2.5379,3\n-0.2029,   -3.8420,3\n2.4210,   -1.9788,3\n1.0335,   -2.6042,3\n0.9638,   -2.9449,3\n-0.8198,   -5.4449,3\n1.9552,   -1.5530,3\n0.3505,   -3.1887,3\n2.4943,   -1.8116,3\n1.9761,   -1.0664,3\n0.5994,   -3.0513,3\n2.2076,   -1.6728,3\n1.9941,   -1.8826,3\n1.7487,   -2.9644,3\n1.4160,   -2.4234,3"
  },
  {
    "path": "ML/algorithms/decisiontree/example_data/targets.txt",
    "content": "1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3"
  },
  {
    "path": "ML/algorithms/kmeans/kmeansclustering.py",
    "content": "\"\"\"\nFrom scratch implementation of K means clustering which is a unsupervised \nclustering  method that works by iteratively computing new centroids and \nmoving centroids to the center of the new formed clusters.\n\nProgrammed by Aladdin Persson <aladdin.persson at hotmail dot com>\n*    2020-05-28 Initial coding\n\n\"\"\"\n\nimport numpy as np\nimport matplotlib.pyplot as plt\nfrom sklearn.datasets import make_blobs\n\n\nclass KMeansClustering:\n    def __init__(self, X, num_clusters):\n        self.K = num_clusters\n        self.max_iterations = 100\n        self.plot_figure = True\n        self.num_examples = X.shape[0]\n        self.num_features = X.shape[1]\n\n    def initialize_random_centroids(self, X):\n        centroids = np.zeros((self.K, self.num_features))\n\n        for k in range(self.K):\n            centroid = X[np.random.choice(range(self.num_examples))]\n            centroids[k] = centroid\n\n        return centroids\n\n    def create_clusters(self, X, centroids):\n        # Will contain a list of the points that are associated with that specific cluster\n        clusters = [[] for _ in range(self.K)]\n\n        # Loop through each point and check which is the closest cluster\n        for point_idx, point in enumerate(X):\n            closest_centroid = np.argmin(\n                np.sqrt(np.sum((point - centroids) ** 2, axis=1))\n            )\n            clusters[closest_centroid].append(point_idx)\n\n        return clusters\n\n    def calculate_new_centroids(self, clusters, X):\n        centroids = np.zeros((self.K, self.num_features))\n        for idx, cluster in enumerate(clusters):\n            new_centroid = np.mean(X[cluster], axis=0)\n            centroids[idx] = new_centroid\n\n        return centroids\n\n    def predict_cluster(self, clusters, X):\n        y_pred = np.zeros(self.num_examples)\n\n        for cluster_idx, cluster in enumerate(clusters):\n            for sample_idx in cluster:\n                y_pred[sample_idx] = cluster_idx\n\n        return y_pred\n\n    def plot_fig(self, X, y):\n        plt.scatter(X[:, 0], X[:, 1], c=y, s=40, cmap=plt.cm.Spectral)\n        plt.show()\n\n    def fit(self, X):\n        centroids = self.initialize_random_centroids(X)\n\n        for it in range(self.max_iterations):\n            clusters = self.create_clusters(X, centroids)\n\n            previous_centroids = centroids\n            centroids = self.calculate_new_centroids(clusters, X)\n\n            diff = centroids - previous_centroids\n\n            if not diff.any():\n                print(\"Termination criterion satisfied\")\n                break\n\n        # Get label predictions\n        y_pred = self.predict_cluster(clusters, X)\n\n        if self.plot_figure:\n            self.plot_fig(X, y_pred)\n\n        return y_pred\n\n\nif __name__ == \"__main__\":\n    np.random.seed(10)\n    num_clusters = 3\n    X, _ = make_blobs(n_samples=1000, n_features=2, centers=num_clusters)\n\n    Kmeans = KMeansClustering(X, num_clusters)\n    y_pred = Kmeans.fit(X)\n"
  },
  {
    "path": "ML/algorithms/knn/example_data/data.txt",
    "content": "1.1107,   -2.1079\n-0.5498,    0.0943\n-0.0382,    1.8829\n0.0555,   -0.6139\n0.5870,   -1.2067\n0.5453,    0.2509\n-0.3927,   -0.6220\n-1.1905,   -1.8785\n-0.4240,    0.7772\n-0.7139,    1.5846\n-0.8883,    2.1408\n-0.6922,    0.0993\n1.4350,    1.2334\n-0.7576,    0.7386\n-1.1144,   -1.7059\n0.6612,   -1.7296\n-2.1381,   -0.0600\n1.3857,    1.2178\n-1.4951,    0.0373\n0.8029,    0.9739\n1.5607,    1.5862\n0.8563,   -1.4245\n0.0397,   -1.3799\n1.2331,    1.7421\n-2.0015,    0.8355\n-0.3428,   -0.4780\n-0.8891,    1.2634\n0.3832,   -0.1189\n0.4172,    1.0132\n-0.8695,   -0.7947\n2.9737,    3.6438\n3.7680,    1.8649\n0.1166,    0.9435\n0.6896,    3.9160\n1.2234,    2.9899\n2.3009,    0.4150\n3.7693,    3.8027\n1.9450,    3.4208\n0.9290,    3.3611\n5.0027,    2.7870\n1.0101,    1.8737\n2.0751,    2.2628\n1.9113,    3.6777\n2.3127,    3.9130\n1.9392,    2.3976\n3.1218,    2.5495\n1.7032,    1.1509\n0.4212,    3.5322\n2.7686,    0.9402\n2.1696,    2.9285\n0.3380,    2.0947\n3.6886,    0.4054\n2.6315,    3.1962\n-0.5332,    3.1421\n0.3380,    3.0801\n1.4030,    1.1841\n2.8739,    2.7777\n1.1254,    3.2404\n0.0988,    1.9522\n0.3688,    2.8904\n1.4758,   -1.6387\n1.9289,   -1.8191\n2.5741,   -1.3213\n2.1917,   -1.2852\n0.8358,   -2.3349\n2.6863,   -1.8834\n3.1102,   -0.4854\n3.7073,   -0.6466\n3.6394,   -0.4097\n0.5365,   -3.6555\n2.9295,   -0.3819\n0.8168,   -3.1133\n1.3432,   -1.7717\n1.1039,   -2.2261\n1.3754,   -2.2236\n0.6757,   -2.5379\n-0.2029,   -3.8420\n2.4210,   -1.9788\n1.0335,   -2.6042\n0.9638,   -2.9449\n-0.8198,   -5.4449\n1.9552,   -1.5530\n0.3505,   -3.1887\n2.4943,   -1.8116\n1.9761,   -1.0664\n0.5994,   -3.0513\n2.2076,   -1.6728\n1.9941,   -1.8826\n1.7487,   -2.9644\n1.4160,   -2.4234"
  },
  {
    "path": "ML/algorithms/knn/example_data/targets.txt",
    "content": "1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3"
  },
  {
    "path": "ML/algorithms/knn/knn.py",
    "content": "\"\"\"\nImplementation of K-nearest neighbor (KNN) from scratch\nwhere you can either use 2-loops (inefficient), 1-loop (better)\nor a heavily vectorized zero-loop implementation.\n\nProgrammed by Aladdin Persson <aladdin.persson at hotmail dot com>\n*    2020-04-24 Initial coding\n\"\"\"\n\nimport numpy as np\n\n\nclass KNearestNeighbor:\n    def __init__(self, k):\n        self.k = k\n        self.eps = 1e-8\n\n    def train(self, X, y):\n        self.X_train = X\n        self.y_train = y\n\n    def predict(self, X_test, num_loops=0):\n        if num_loops == 0:\n            distances = self.compute_distance_vectorized(X_test)\n\n        elif num_loops == 1:\n            distances = self.compute_distance_one_loop(X_test)\n\n        else:\n            distances = self.compute_distance_two_loops(X_test)\n\n        return self.predict_labels(distances)\n\n    def compute_distance_two_loops(self, X_test):\n        \"\"\"\n        Inefficient naive implementation, use only\n        as a way of understanding what kNN is doing\n        \"\"\"\n\n        num_test = X_test.shape[0]\n        num_train = self.X_train.shape[0]\n        distances = np.zeros((num_test, num_train))\n\n        for i in range(num_test):\n            for j in range(num_train):\n                # (Taking sqrt is not necessary: min distance won't change since sqrt is monotone)\n                distances[i, j] = np.sqrt(\n                    self.eps + np.sum((X_test[i, :] - self.X_train[j, :]) ** 2)\n                )\n\n        return distances\n\n    def compute_distance_one_loop(self, X_test):\n        \"\"\"\n        Much better than two-loops but not as fast as fully vectorized version.\n        Utilize Numpy broadcasting in X_train - X_test[i,:]\n        \"\"\"\n        num_test = X_test.shape[0]\n        num_train = self.X_train.shape[0]\n        distances = np.zeros((num_test, num_train))\n\n        for i in range(num_test):\n            # (Taking sqrt is not necessary: min distance won't change since sqrt is monotone)\n            distances[i, :] = np.sqrt(\n                self.eps + np.sum((self.X_train - X_test[i, :]) ** 2, axis=1)\n            )\n\n        return distances\n\n    def compute_distance_vectorized(self, X_test):\n        \"\"\"\n        Can be tricky to understand this, we utilize heavy\n        vecotorization as well as numpy broadcasting.\n        Idea: if we have two vectors a, b (two examples)\n        and for vectors we can compute (a-b)^2 = a^2 - 2a (dot) b + b^2\n        expanding on this and doing so for every vector lends to the \n        heavy vectorized formula for all examples at the same time.\n        \"\"\"\n        X_test_squared = np.sum(X_test ** 2, axis=1, keepdims=True)\n        X_train_squared = np.sum(self.X_train ** 2, axis=1, keepdims=True)\n        two_X_test_X_train = np.dot(X_test, self.X_train.T)\n\n        # (Taking sqrt is not necessary: min distance won't change since sqrt is monotone)\n        return np.sqrt(\n            self.eps + X_test_squared - 2 * two_X_test_X_train + X_train_squared.T\n        )\n\n    def predict_labels(self, distances):\n        num_test = distances.shape[0]\n        y_pred = np.zeros(num_test)\n\n        for i in range(num_test):\n            y_indices = np.argsort(distances[i, :])\n            k_closest_classes = self.y_train[y_indices[: self.k]].astype(int)\n            y_pred[i] = np.argmax(np.bincount(k_closest_classes))\n\n        return y_pred\n\n\nif __name__ == \"__main__\":\n    X = np.loadtxt(\"example_data/data.txt\", delimiter=\",\")\n    y = np.loadtxt(\"example_data/targets.txt\")\n\n    X = np.array([[1, 1], [3, 1], [1, 4], [2, 4], [3, 3], [5, 1]])\n    y = np.array([0, 0, 0, 1, 1, 1])\n\n    KNN = KNearestNeighbor(k=1)\n    KNN.train(X, y)\n    y_pred = KNN.predict(X, num_loops=0)\n    print(f\"Accuracy: {sum(y_pred == y) / y.shape[0]}\")\n"
  },
  {
    "path": "ML/algorithms/linearregression/linear_regression_gradient_descent.py",
    "content": "\"\"\"\nImplementation of Linear Regression using Gradient Descent.\n\nLet m = #training examples, n = #number of features Sizes differ \na little bit from blog notation. It takes as input the following: \ny is R^(1 x m), X is R^(n x m), w is R^(n x 1)\n\nProgrammed by Aladdin Persson <aladdin.persson at hotmail dot com>\n*    2020-04-03 Initial coding\n*    2020-04-25 Updated comments, and small changes in code\n\"\"\"\n\nimport numpy as np\n\n\nclass LinearRegression:\n    def __init__(self, print_cost=False):\n        self.learning_rate = 0.01\n        self.total_iterations = 1000\n        self.print_cost = print_cost\n\n    def y_hat(self, X, w):\n        return np.dot(w.T, X)\n\n    def cost(self, yhat, y):\n        C = 1 / self.m * np.sum(np.power(yhat - y, 2))\n\n        return C\n\n    def gradient_descent(self, w, X, y, yhat):\n        dCdW = 2 / self.m * np.dot(X, (yhat - y).T)\n        w = w - self.learning_rate * dCdW\n\n        return w\n\n    def main(self, X, y):\n        # Add x1 = 1\n        ones = np.ones((1, X.shape[1]))\n        X = np.append(ones, X, axis=0)\n\n        self.m = X.shape[1]\n        self.n = X.shape[0]\n\n        w = np.zeros((self.n, 1))\n\n        for it in range(self.total_iterations + 1):\n            yhat = self.y_hat(X, w)\n            cost = self.cost(yhat, y)\n\n            if it % 2000 == 0 and self.print_cost:\n                print(f\"Cost at iteration {it} is {cost}\")\n\n            w = self.gradient_descent(w, X, y, yhat)\n\n        return w\n\n\nif __name__ == \"__main__\":\n    X = np.random.rand(1, 500)\n    y = 3 * X + 5 + np.random.randn(1, 500) * 0.1\n    regression = LinearRegression()\n    w = regression.main(X, y)\n"
  },
  {
    "path": "ML/algorithms/linearregression/linear_regression_normal_equation.py",
    "content": "\"\"\"\nImplementation of Linear Regression using the Normal Equation.\n\nLet m = #training examples, n = #number of features and the\ninput shapes are y is R^(m x 1), X is R^(m x n), w is R^(n x 1).\nUsing these shapes, the normal equation implementation is\nexactly as the derived formula :) \n\nProgrammed by Aladdin Persson <aladdin.persson at hotmail dot com>\n*    2020-04-25 Initial coding\n\"\"\"\n\nimport numpy as np\n\n\ndef linear_regression_normal_equation(X, y):\n    ones = np.ones((X.shape[0], 1))\n    X = np.append(ones, X, axis=1)\n    W = np.dot(np.linalg.pinv(np.dot(X.T, X)), np.dot(X.T, y))\n    return W\n\n\nif __name__ == \"__main__\":\n    # Run a small test example: y = 5x (approximately)\n    m, n = 500, 1\n    X = np.random.rand(m, n)\n    y = 5 * X + np.random.randn(m, n) * 0.1\n    W = linear_regression_normal_equation(X, y)\n"
  },
  {
    "path": "ML/algorithms/logisticregression/logistic_regression.py",
    "content": "\"\"\"\nFrom scratch implementation of Logistic Regression\n\nProgrammed by Aladdin Persson <aladdin.persson at hotmail dot com>\n*    2020-05-24 Initial coding\n\n\"\"\"\n\nimport numpy as np\nfrom sklearn.datasets import make_blobs\n\n\nclass LogisticRegression:\n    def __init__(self, X, learning_rate=0.1, num_iters=10000):\n        self.lr = learning_rate\n        self.num_iters = num_iters\n\n        # m for #training_examples, n for #features\n        self.m, self.n = X.shape\n\n    def train(self, X, y):\n        # init weights\n        self.weights = np.zeros((self.n, 1))\n        self.bias = 0\n\n        for it in range(self.num_iters + 1):\n            # calculate hypothesis\n            y_predict = self.sigmoid(np.dot(X, self.weights) + self.bias)\n\n            # calculate cost\n            cost = (\n                -1\n                / self.m\n                * np.sum(y * np.log(y_predict) + (1 - y) * np.log(1 - y_predict))\n            )\n\n            # back prop / gradient calculations\n            dw = 1 / self.m * np.dot(X.T, (y_predict - y))\n            db = 1 / self.m * np.sum(y_predict - y)\n\n            # gradient descent update step\n            self.weights -= self.lr * dw\n            self.bias -= self.lr * db\n\n            # print cost sometimes\n            if it % 1000 == 0:\n                print(f\"Cost after iteration {it}: {cost}\")\n\n        return self.weights, self.bias\n\n    def predict(self, X):\n        y_predict = self.sigmoid(np.dot(X, self.weights) + self.bias)\n        y_predict_labels = y_predict > 0.5\n\n        return y_predict_labels\n\n    def sigmoid(self, z):\n        return 1 / (1 + np.exp(-z))\n\n\nif __name__ == \"__main__\":\n    np.random.seed(1)\n    X, y = make_blobs(n_samples=1000, centers=2)\n    y = y[:, np.newaxis]\n\n    logreg = LogisticRegression(X)\n    w, b = logreg.train(X, y)\n    y_predict = logreg.predict(X)\n\n    print(f\"Accuracy: {np.sum(y==y_predict)/X.shape[0]}\")\n"
  },
  {
    "path": "ML/algorithms/naivebayes/example_data/data.txt",
    "content": "1.1107,   -2.1079\n-0.5498,    0.0943\n-0.0382,    1.8829\n0.0555,   -0.6139\n0.5870,   -1.2067\n0.5453,    0.2509\n-0.3927,   -0.6220\n-1.1905,   -1.8785\n-0.4240,    0.7772\n-0.7139,    1.5846\n-0.8883,    2.1408\n-0.6922,    0.0993\n1.4350,    1.2334\n-0.7576,    0.7386\n-1.1144,   -1.7059\n0.6612,   -1.7296\n-2.1381,   -0.0600\n1.3857,    1.2178\n-1.4951,    0.0373\n0.8029,    0.9739\n1.5607,    1.5862\n0.8563,   -1.4245\n0.0397,   -1.3799\n1.2331,    1.7421\n-2.0015,    0.8355\n-0.3428,   -0.4780\n-0.8891,    1.2634\n0.3832,   -0.1189\n0.4172,    1.0132\n-0.8695,   -0.7947\n2.9737,    3.6438\n3.7680,    1.8649\n0.1166,    0.9435\n0.6896,    3.9160\n1.2234,    2.9899\n2.3009,    0.4150\n3.7693,    3.8027\n1.9450,    3.4208\n0.9290,    3.3611\n5.0027,    2.7870\n1.0101,    1.8737\n2.0751,    2.2628\n1.9113,    3.6777\n2.3127,    3.9130\n1.9392,    2.3976\n3.1218,    2.5495\n1.7032,    1.1509\n0.4212,    3.5322\n2.7686,    0.9402\n2.1696,    2.9285\n0.3380,    2.0947\n3.6886,    0.4054\n2.6315,    3.1962\n-0.5332,    3.1421\n0.3380,    3.0801\n1.4030,    1.1841\n2.8739,    2.7777\n1.1254,    3.2404\n0.0988,    1.9522\n0.3688,    2.8904\n1.4758,   -1.6387\n1.9289,   -1.8191\n2.5741,   -1.3213\n2.1917,   -1.2852\n0.8358,   -2.3349\n2.6863,   -1.8834\n3.1102,   -0.4854\n3.7073,   -0.6466\n3.6394,   -0.4097\n0.5365,   -3.6555\n2.9295,   -0.3819\n0.8168,   -3.1133\n1.3432,   -1.7717\n1.1039,   -2.2261\n1.3754,   -2.2236\n0.6757,   -2.5379\n-0.2029,   -3.8420\n2.4210,   -1.9788\n1.0335,   -2.6042\n0.9638,   -2.9449\n-0.8198,   -5.4449\n1.9552,   -1.5530\n0.3505,   -3.1887\n2.4943,   -1.8116\n1.9761,   -1.0664\n0.5994,   -3.0513\n2.2076,   -1.6728\n1.9941,   -1.8826\n1.7487,   -2.9644\n1.4160,   -2.4234"
  },
  {
    "path": "ML/algorithms/naivebayes/example_data/targets.txt",
    "content": "1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3"
  },
  {
    "path": "ML/algorithms/naivebayes/naivebayes.py",
    "content": "\"\"\"\nNaive Bayes Classifier Implementation from scratch\n\nTo run the code structure the code in the following way:\n    X be size: (num_training_examples, num_features)\n    y be size: (num_classes, )\n\nWhere the classes are 0, 1, 2, etc. Then an example run looks like:\n    NB = NaiveBayes(X, y)\n    NB.fit(X)\n    predictions = NB.predict(X)\n\nProgrammed by Aladdin Persson <aladdin.persson at hotmail dot com>\n*    2020-04-21 Initial coding\n\n\"\"\"\nimport numpy as np\n\n\nclass NaiveBayes:\n    def __init__(self, X, y):\n        self.num_examples, self.num_features = X.shape\n        self.num_classes = len(np.unique(y))\n        self.eps = 1e-6\n\n    def fit(self, X):\n        self.classes_mean = {}\n        self.classes_variance = {}\n        self.classes_prior = {}\n\n        for c in range(self.num_classes):\n            X_c = X[y == c]\n\n            self.classes_mean[str(c)] = np.mean(X_c, axis=0)\n            self.classes_variance[str(c)] = np.var(X_c, axis=0)\n            self.classes_prior[str(c)] = X_c.shape[0] / X.shape[0]\n\n    def predict(self, X):\n        probs = np.zeros((self.num_examples, self.num_classes))\n\n        for c in range(self.num_classes):\n            prior = self.classes_prior[str(c)]\n            probs_c = self.density_function(\n                X, self.classes_mean[str(c)], self.classes_variance[str(c)]\n            )\n            probs[:, c] = probs_c + np.log(prior)\n\n        return np.argmax(probs, 1)\n\n    def density_function(self, x, mean, sigma):\n        # Calculate probability from Gaussian density function\n        const = -self.num_features / 2 * np.log(2 * np.pi) - 0.5 * np.sum(\n            np.log(sigma + self.eps)\n        )\n        probs = 0.5 * np.sum(np.power(x - mean, 2) / (sigma + self.eps), 1)\n        return const - probs\n\n\nif __name__ == \"__main__\":\n    X = np.loadtxt(\"example_data/data.txt\", delimiter=\",\")\n    y = np.loadtxt(\"example_data/targets.txt\") - 1\n\n    NB = NaiveBayes(X, y)\n    NB.fit(X)\n    y_pred = NB.predict(X)\n\n    print(f\"Accuracy: {sum(y_pred==y)/X.shape[0]}\")\n"
  },
  {
    "path": "ML/algorithms/neuralnetwork/NN.py",
    "content": "\"\"\"\nSimple two-layered Neural Network from scratch implementation.\n\nProgrammed by Aladdin Persson <aladdin.persson at hotmail dot com>\n*    2020-04-28 Initial coding\n\n\"\"\"\n\nimport numpy as np\nfrom utils import create_dataset, plot_contour\n\n\nclass NeuralNetwork:\n    def __init__(self, X, y):\n        # m for #training examples and n for #features\n        self.m, self.n = X.shape\n\n        # regularization term lambd (lambda is reserved keyword)\n        self.lambd = 1e-3\n        self.learning_rate = 0.1\n\n        # Define size of first hidden-layer and second hidden layer (output layer)\n        self.h1 = 25\n        self.h2 = len(np.unique(y))\n\n    def init_kaiming_weights(self, l0, l1):\n        # Kaiming weights\n        w = np.random.randn(l0, l1) * np.sqrt(2.0 / l0)\n        b = np.zeros((1, l1))\n\n        return w, b\n\n    def forward_prop(self, X, parameters):\n        W2 = parameters[\"W2\"]\n        W1 = parameters[\"W1\"]\n        b2 = parameters[\"b2\"]\n        b1 = parameters[\"b1\"]\n\n        # forward prop\n        a0 = X\n        z1 = np.dot(a0, W1) + b1\n\n        # apply nonlinearity (relu)\n        a1 = np.maximum(0, z1)\n        z2 = np.dot(a1, W2) + b2\n\n        # softmax on the last layer\n        scores = z2\n        exp_scores = np.exp(scores)\n        probs = exp_scores / np.sum(exp_scores, axis=1, keepdims=True)\n\n        # cache values from forward pass to use for backward pass\n        cache = {\"a0\": X, \"probs\": probs, \"a1\": a1}\n\n        return cache, probs\n\n    def compute_cost(self, y, probs, parameters):\n        W2 = parameters[\"W2\"]\n        W1 = parameters[\"W1\"]\n\n        y = y.astype(int)\n        data_loss = np.sum(-np.log(probs[np.arange(self.m), y]) / self.m)\n        reg_loss = 0.5 * self.lambd * np.sum(W1 * W1) + 0.5 * self.lambd * np.sum(\n            W2 * W2\n        )\n\n        # total cost J\n        total_cost = data_loss + reg_loss\n\n        return total_cost\n\n    def back_prop(self, cache, parameters, y):\n        # Unpack from parameters\n        W2 = parameters[\"W2\"]\n        W1 = parameters[\"W1\"]\n        b2 = parameters[\"b2\"]\n        b1 = parameters[\"b1\"]\n\n        # Unpack from forward prop\n        a0 = cache[\"a0\"]\n        a1 = cache[\"a1\"]\n        probs = cache[\"probs\"]\n\n        dz2 = probs\n        dz2[np.arange(self.m), y] -= 1\n        dz2 /= self.m\n\n        # backprop through values dW2 and db2\n        dW2 = np.dot(a1.T, dz2) + self.lambd * W2\n        db2 = np.sum(dz2, axis=0, keepdims=True)\n\n        # Back to the (only) hidden layer in this case\n        dz1 = np.dot(dz2, W2.T)\n        dz1 = dz1 * (a1 > 0)\n\n        # backprop through values dW1, db1\n        dW1 = np.dot(a0.T, dz1) + self.lambd * W1\n        db1 = np.sum(dz1, axis=0, keepdims=True)\n\n        grads = {\"dW1\": dW1, \"dW2\": dW2, \"db1\": db1, \"db2\": db2}\n\n        return grads\n\n    def update_parameters(self, parameters, grads):\n        learning_rate = self.learning_rate\n\n        W2 = parameters[\"W2\"]\n        W1 = parameters[\"W1\"]\n        b2 = parameters[\"b2\"]\n        b1 = parameters[\"b1\"]\n\n        dW2 = grads[\"dW2\"]\n        dW1 = grads[\"dW1\"]\n        db2 = grads[\"db2\"]\n        db1 = grads[\"db1\"]\n\n        # Do gradient descent step\n        W2 -= learning_rate * dW2\n        W1 -= learning_rate * dW1\n        b2 -= learning_rate * db2\n        b1 -= learning_rate * db1\n\n        # store back weights in parameters\n        parameters = {\"W1\": W1, \"W2\": W2, \"b1\": b1, \"b2\": b2}\n\n        return parameters\n\n    def main(self, X, y, num_iter=10000):\n        # initialize our weights\n        W1, b1 = self.init_kaiming_weights(self.n, self.h1)\n        W2, b2 = self.init_kaiming_weights(self.h1, self.h2)\n\n        # pack parameters into a dictionary\n        parameters = {\"W1\": W1, \"W2\": W2, \"b1\": b1, \"b2\": b2}\n\n        # How many gradient descent updates we want to do\n        for it in range(num_iter + 1):\n\n            # forward prop\n            cache, probs = self.forward_prop(X, parameters)\n\n            # calculate cost\n            cost = self.compute_cost(y, probs, parameters)\n\n            # print cost sometimes\n            if it % 2500 == 0:\n                print(f\"At iteration {it} we have a cost of {cost}\")\n\n            # back prop\n            grads = self.back_prop(cache, parameters, y)\n\n            # update parameters\n            parameters = self.update_parameters(parameters, grads)\n\n        return parameters\n\n\nif __name__ == \"__main__\":\n    # Generate dataset\n    X, y = create_dataset(300, K=3)\n    y = y.astype(int)\n\n    # Train network\n    NN = NeuralNetwork(X, y)\n    trained_parameters = NN.main(X, y)\n\n    # Get trained parameters\n    W2 = trained_parameters[\"W2\"]\n    W1 = trained_parameters[\"W1\"]\n    b2 = trained_parameters[\"b2\"]\n    b1 = trained_parameters[\"b1\"]\n\n    # Plot the decision boundary (for nice visualization)\n    plot_contour(X, y, NN, trained_parameters)\n"
  },
  {
    "path": "ML/algorithms/neuralnetwork/utils.py",
    "content": "\"\"\"\nThese were (shamelessly) taken from cs231n course github code.\nI believe these were coded by Andrej Karpathy so credit goes to him\nfor coding these.\n\"\"\"\n\nimport numpy as np\nimport matplotlib.pyplot as plt\n\n\ndef create_dataset(N, K=2):\n    N = 100  # number of points per class\n    D = 2\n    X = np.zeros((N * K, D))  # data matrix (each row = single example)\n    y = np.zeros(N * K)  # class labels\n\n    for j in range(K):\n        ix = range(N * j, N * (j + 1))\n        r = np.linspace(0, 1, N)  # radius\n        t = np.linspace(j * 4, (j + 1) * 4, N) + np.random.randn(N) * 0.2\n        X[ix] = np.c_[r * np.sin(t), r * np.cos(t)]\n        y[ix] = j\n    # lets visualize the data:\n    plt.scatter(X[:, 0], X[:, 1], c=y, s=40, cmap=plt.cm.Spectral)\n    plt.show()\n\n    return X, y\n\n\ndef plot_contour(X, y, model, parameters):\n    # plot the resulting classifier\n    h = 0.02\n    x_min, x_max = X[:, 0].min() - 1, X[:, 0].max() + 1\n    y_min, y_max = X[:, 1].min() - 1, X[:, 1].max() + 1\n\n    xx, yy = np.meshgrid(np.arange(x_min, x_max, h), np.arange(y_min, y_max, h))\n\n    points = np.c_[xx.ravel(), yy.ravel()]\n\n    # forward prop with our trained parameters\n    _, Z = model.forward_prop(points, parameters)\n\n    # classify into highest prob\n    Z = np.argmax(Z, axis=1)\n    Z = Z.reshape(xx.shape)\n    plt.contourf(xx, yy, Z, cmap=plt.cm.Spectral, alpha=0.8)\n\n    # plt the points\n    plt.scatter(X[:, 0], X[:, 1], c=y, s=40, cmap=plt.cm.Spectral)\n    # fig.savefig('spiral_net.png')\n"
  },
  {
    "path": "ML/algorithms/randomforest/example_data/data.txt",
    "content": "1.1107,   -2.1079,   1\n-0.5498,    0.0943,  1\n-0.0382,    1.8829,1\n0.0555,   -0.6139,1\n0.5870,   -1.2067,1\n0.5453,    0.2509,1\n-0.3927,   -0.6220,1\n-1.1905,   -1.8785,1\n-0.4240,    0.7772,1\n-0.7139,    1.5846,1\n-0.8883,    2.1408,1\n-0.6922,    0.0993,1\n1.4350,    1.2334,1\n-0.7576,    0.7386,1\n-1.1144,   -1.7059,1\n0.6612,   -1.7296,1\n-2.1381,   -0.0600,1\n1.3857,    1.2178,1\n-1.4951,    0.0373,1\n0.8029,    0.9739,1\n1.5607,    1.5862,1\n0.8563,   -1.4245,1\n0.0397,   -1.3799,1\n1.2331,    1.7421,1\n-2.0015,    0.8355,1\n-0.3428,   -0.4780,1\n-0.8891,    1.2634,1\n0.3832,   -0.1189,1\n0.4172,    1.0132,1\n-0.8695,   -0.7947,1\n2.9737,    3.6438,2\n3.7680,    1.8649,2\n0.1166,    0.9435,2\n0.6896,    3.9160,2\n1.2234,    2.9899,2\n2.3009,    0.4150,2\n3.7693,    3.8027,2\n1.9450,    3.4208,2\n0.9290,    3.3611,2\n5.0027,    2.7870,2\n1.0101,    1.8737,2\n2.0751,    2.2628,2\n1.9113,    3.6777,2\n2.3127,    3.9130,2\n1.9392,    2.3976,2\n3.1218,    2.5495,2\n1.7032,    1.1509,2\n0.4212,    3.5322,2\n2.7686,    0.9402,2\n2.1696,    2.9285,2\n0.3380,    2.0947,2\n3.6886,    0.4054,2\n2.6315,    3.1962,2\n-0.5332,    3.1421,2\n0.3380,    3.0801,2\n1.4030,    1.1841,2\n2.8739,    2.7777,2\n1.1254,    3.2404,2\n0.0988,    1.9522,2\n0.3688,    2.8904,2\n1.4758,   -1.6387,3\n1.9289,   -1.8191,3\n2.5741,   -1.3213,3\n2.1917,   -1.2852,3\n0.8358,   -2.3349,3\n2.6863,   -1.8834,3\n3.1102,   -0.4854,3\n3.7073,   -0.6466,3\n3.6394,   -0.4097,3\n0.5365,   -3.6555,3\n2.9295,   -0.3819,3\n0.8168,   -3.1133,3\n1.3432,   -1.7717,3\n1.1039,   -2.2261,3\n1.3754,   -2.2236,3\n0.6757,   -2.5379,3\n-0.2029,   -3.8420,3\n2.4210,   -1.9788,3\n1.0335,   -2.6042,3\n0.9638,   -2.9449,3\n-0.8198,   -5.4449,3\n1.9552,   -1.5530,3\n0.3505,   -3.1887,3\n2.4943,   -1.8116,3\n1.9761,   -1.0664,3\n0.5994,   -3.0513,3\n2.2076,   -1.6728,3\n1.9941,   -1.8826,3\n1.7487,   -2.9644,3\n1.4160,   -2.4234,3"
  },
  {
    "path": "ML/algorithms/randomforest/example_data/mock_data.csv",
    "content": "701,478,227,863,963,2\n96,147,210,493,586,2\n798,143,431,541,94,1\n233,146,667,886,771,1\n668,815,628,429,387,3\n718,456,883,281,840,1\n182,837,144,664,460,2\n882,533,203,776,56,3\n648,715,288,619,293,1\n178,951,965,164,1,3\n270,432,457,978,794,1\n335,219,596,763,231,1\n47,477,78,423,616,3\n324,969,514,55,722,2\n824,571,159,516,594,2\n837,667,957,150,508,3\n833,945,311,12,859,1\n536,280,21,292,518,1\n943,55,709,269,425,1\n593,178,861,130,26,3\n54,165,3,638,816,2\n637,861,423,855,98,1\n222,502,427,944,732,1\n8,465,403,376,761,2\n184,602,673,825,741,1\n639,677,204,385,236,2\n176,843,479,952,898,2\n125,626,553,74,1000,3\n302,495,294,362,169,2\n131,912,803,232,852,1\n117,609,290,133,357,2\n207,812,788,182,494,1\n954,76,257,620,844,1\n287,266,195,30,344,3\n440,590,324,868,969,3\n831,290,228,586,971,1\n567,734,460,429,689,1\n864,939,191,620,431,1\n905,337,200,400,77,2\n304,997,141,208,615,3\n19,280,187,44,639,1\n280,279,275,305,123,1\n866,519,331,241,972,1\n27,77,860,458,643,3\n486,713,917,324,855,2\n466,16,897,222,731,1\n712,230,215,805,341,1\n300,100,292,978,115,3\n938,800,911,345,49,3\n98,593,43,583,684,1\n348,479,406,605,595,2\n892,877,592,339,615,3\n203,53,995,704,927,2\n991,968,886,43,883,1\n733,939,71,388,56,1\n249,376,830,628,812,2\n4,877,743,242,266,1\n95,537,106,490,518,2\n870,704,430,270,327,2\n402,97,283,569,638,3\n537,979,966,729,8,3\n399,51,285,973,509,1\n662,951,947,923,112,3\n71,573,9,305,351,2\n240,837,836,277,177,1\n513,318,709,435,367,2\n553,253,980,868,26,1\n848,543,171,420,73,1\n449,538,720,347,500,2\n42,319,830,447,727,2\n165,968,151,672,452,3\n1,781,142,137,157,2\n907,364,776,490,502,2\n146,512,87,344,233,3\n478,62,55,815,283,3\n751,789,112,277,483,1\n189,597,866,73,397,3\n607,210,327,538,68,2\n337,401,557,667,642,1\n249,894,84,81,643,1\n896,858,568,345,157,1\n362,886,558,531,735,1\n865,418,866,824,370,3\n14,517,514,257,129,2\n845,833,998,211,684,2\n289,302,416,364,920,2\n383,173,991,815,368,3\n652,325,903,471,224,3\n757,580,974,667,620,1\n946,247,684,191,332,2\n63,330,199,280,608,2\n752,298,95,143,134,2\n987,105,747,931,413,3\n510,23,385,711,701,1\n326,195,651,727,85,3\n214,978,396,428,14,1\n646,133,388,896,971,1\n849,817,294,491,397,2\n854,973,274,315,897,3\n666,530,683,234,439,1\n"
  },
  {
    "path": "ML/algorithms/randomforest/example_data/targets.txt",
    "content": "1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3\n3"
  },
  {
    "path": "ML/algorithms/randomforest/random_forest.py",
    "content": "\"\"\"\nAuthor: Philip Andreadis\ne-mail: philip_andreadis@hotmail.com\n\n\nImplementation of Random Forest model from scratch.\nThe DecisionTree class from this project is used for generating the trees of the random forest.\nThis class remains with no changes as the dataset is split into a number of folds with a random subset of features on which each tree is trained on.\nAs a result each tree is trained on a different group of the dataset in order to avoid correlation between them.\nThe predicted class value of each instance is chosen by voting from each single tree's outcome.\n\nParameters of the model:\nMAX_DEPTH (int): Maximum depth of the decision tree\nMIN_NODE (int): Minimum number of instances a node can have. If this threshold is exceeded the node is terminated\nFOLD_SIZE (int): Value between 1-10 representing the percentage of the original dataset size each fold should be.\nN_TREES (int):The toral number of trees that will be trained.\n\nInput dataset to train() function must be a numpy array containing both feature and label values.\n\n\"\"\"\n\n\n\nfrom random import randrange\nfrom random import randint\nimport numpy as np\nfrom decision_tree import DecisionTree\n\n# fold size (% of dataset size) e.g. 3 means 30%\nFOLD_SIZE = 10\n# number of trees\nN_TREES = 20\n# max tree depth\nMAX_DEPTH = 30\n# min size of tree node\nMIN_NODE = 1\n\n\nclass RandomForest:\n    def __init__(self,n_trees,fold_size):\n        self.n_trees = n_trees\n        self.fold_size = fold_size\n        self.trees = list()\n\n\n\n    \"\"\"\n        This function splits the given dataset into n-folds with replacement. The number of folds is equal to the number of the trees that will be trained.\n        Each tree will have one fold as input. The size of the folds is a percentage (p) of the size of the original dataset. \n\n        Parameters:\n        dataset: np array of the given dataset\n        n_folds (int): number of folds in which the dataset should be split. Must be equal to the number of trees the user wants to train\n        p (int): suggests the percentage of the dataset's size the size of a single fold should be.\n\n        Returns list of np arrays: list with the k-folds \n\n    \"\"\"\n    def cross_validation_split(self,dataset, n_folds, p):\n        dataset_split = list()\n        fold_size = int(len(dataset)*p/10)\n        for i in range(n_folds):\n            fold = list()\n            while len(fold) < fold_size:\n                index = randrange(len(dataset))\n                fold.append(dataset[index])\n            set = np.array(fold)\n            dataset_split.append(set)\n        return dataset_split\n\n\n    \"\"\"\n        This function randomizes the selection of the features each tree will be trained on.\n\n        Parameters:\n            splits list of np arrays: list of folds\n            \n\n        Returns list of np arrays: list with the k-folds with some features randomly removed\n\n    \"\"\"\n    def randomize_features(self,splits):\n        dataset_split = list()\n        l = len(splits[0][0])\n        n_features = int((l-1)*5/10)\n        for split in splits:\n            for i in range(n_features):\n                rng = list(range(len(split[0]) - 1))\n                selected = rng.pop(randint(0,len(rng)-1))\n                split = np.delete(split, selected, 1)\n            set = np.array(split)\n            dataset_split.append(set)\n        return dataset_split\n\n\n    \"\"\"\n        Prints out all the decision trees of the random forest.\n            \n        BUG: The feature number is not representative of its initial enumeration in the original dataset due to the randomization. \n             This means that we do not know on which features each tree is trained on.\n    \"\"\"\n    def print_trees(self):\n        i = 1\n        for t in self.trees:\n            print(\"Tree#\",i)\n            temp = t.final_tree\n            t.print_dt(temp)\n            print(\"\\n\")\n            i = i+1\n\n    \"\"\"\n        Iteratively train each decision tree.\n        Parameters:\n        X (np.array): Training data\n\n    \"\"\"\n    def train(self,X):\n        train_x = self.cross_validation_split(X,self.n_trees,self.fold_size)\n        train_x = self.randomize_features(train_x)\n        for fold in train_x:\n            dt = DecisionTree(MAX_DEPTH, MIN_NODE)\n            dt.train(fold)\n            self.trees.append(dt)\n\n\n    \"\"\"\n        This function outputs the class value for each instance of the given dataset as predicted by the random forest algorithm.\n        Parameters:\n        X (np.array): Dataset with labels\n\n        Returns y (np.array): array with the predicted class values of the dataset\n    \"\"\"\n    def predict(self,X):\n        predicts = list()\n        final_predicts = list()\n        for tree in self.trees:\n            predicts.append(tree.predict(X))\n        # iterate through each tree's class prediction and find the most frequent for each instance\n        for i in range(len(predicts[0])):\n            values = list()\n            for j in range(len(predicts)):\n                values.append(predicts[j][i])\n            final_predicts.append(max(set(values), key=values.count))\n        return final_predicts,predicts\n\n\n\nif __name__ == \"__main__\":\n\n\n    # Training data\n    train_data = np.loadtxt(\"example_data/data.txt\", delimiter=\",\")\n    train_y = np.loadtxt(\"example_data/targets.txt\")\n\n    mock_train = np.loadtxt(\"example_data/mock_data.csv\", delimiter=\",\")\n    mock_y = mock_train[ : , -1]\n\n    # Build and train model\n    rf = RandomForest(N_TREES,FOLD_SIZE)\n    rf.train(mock_train)\n\n    # Evaluate model on training data\n    y_pred,y_pred_ind = rf.predict(mock_train)\n    print(f\"Accuracy of random forest: {sum(y_pred == mock_y) / mock_y.shape[0]}\")\n    print(\"\\nAccuracy for each individual tree:\")\n    c = 1\n    for i in y_pred_ind:\n        print(\"\\nTree\",c)\n        print(f\"Accuracy: {sum(i == mock_y) / mock_y.shape[0]}\")\n        c = c+1\n"
  },
  {
    "path": "ML/algorithms/svm/svm.py",
    "content": "\"\"\"\nImplementation of SVM using cvxopt package. Implementation uses \nsoft margin and I've defined linear, polynomial and gaussian kernels.\n\nTo understand the theory (which is a bit challenging) I recommend reading the following:\nhttp://cs229.stanford.edu/notes/cs229-notes3.pdf\nhttps://www.youtube.com/playlist?list=PLoROMvodv4rMiGQp3WXShtMGgzqpfVfbU (Lectures 6,7 by Andrew Ng)\n\nTo understand how to reformulate the optimization problem we obtain\nto get the input to cvxopt QP solver this blogpost can be useful:\nhttps://xavierbourretsicotte.github.io/SVM_implementation.html\n\nProgrammed by Aladdin Persson <aladdin.persson at hotmail dot com>\n*    2020-04-26 Initial coding\n\n\"\"\"\n\nimport numpy as np\nimport cvxopt\nfrom utils import create_dataset, plot_contour\n\n\ndef linear(x, z):\n    return np.dot(x, z.T)\n\n\ndef polynomial(x, z, p=5):\n    return (1 + np.dot(x, z.T)) ** p\n\n\ndef gaussian(x, z, sigma=0.1):\n    return np.exp(-np.linalg.norm(x - z, axis=1) ** 2 / (2 * (sigma ** 2)))\n\n\nclass SVM:\n    def __init__(self, kernel=gaussian, C=1):\n        self.kernel = kernel\n        self.C = C\n\n    def fit(self, X, y):\n        self.y = y\n        self.X = X\n        m, n = X.shape\n\n        # Calculate Kernel\n        self.K = np.zeros((m, m))\n        for i in range(m):\n            self.K[i, :] = self.kernel(X[i, np.newaxis], self.X)\n\n        # Solve with cvxopt final QP needs to be reformulated\n        # to match the input form for cvxopt.solvers.qp\n        P = cvxopt.matrix(np.outer(y, y) * self.K)\n        q = cvxopt.matrix(-np.ones((m, 1)))\n        G = cvxopt.matrix(np.vstack((np.eye(m) * -1, np.eye(m))))\n        h = cvxopt.matrix(np.hstack((np.zeros(m), np.ones(m) * self.C)))\n        A = cvxopt.matrix(y, (1, m), \"d\")\n        b = cvxopt.matrix(np.zeros(1))\n        cvxopt.solvers.options[\"show_progress\"] = False\n        sol = cvxopt.solvers.qp(P, q, G, h, A, b)\n        self.alphas = np.array(sol[\"x\"])\n\n    def predict(self, X):\n        y_predict = np.zeros((X.shape[0]))\n        sv = self.get_parameters(self.alphas)\n\n        for i in range(X.shape[0]):\n            y_predict[i] = np.sum(\n                self.alphas[sv]\n                * self.y[sv, np.newaxis]\n                * self.kernel(X[i], self.X[sv])[:, np.newaxis]\n            )\n\n        return np.sign(y_predict + self.b)\n\n    def get_parameters(self, alphas):\n        threshold = 1e-5\n\n        sv = ((alphas > threshold) * (alphas < self.C)).flatten()\n        self.w = np.dot(X[sv].T, alphas[sv] * self.y[sv, np.newaxis])\n        self.b = np.mean(\n            self.y[sv, np.newaxis]\n            - self.alphas[sv] * self.y[sv, np.newaxis] * self.K[sv, sv][:, np.newaxis]\n        )\n        return sv\n\n\nif __name__ == \"__main__\":\n    np.random.seed(1)\n    X, y = create_dataset(N=50)\n\n    svm = SVM(kernel=gaussian)\n    svm.fit(X, y)\n    y_pred = svm.predict(X)\n    plot_contour(X, y, svm)\n\n    print(f\"Accuracy: {sum(y==y_pred)/y.shape[0]}\")\n"
  },
  {
    "path": "ML/algorithms/svm/utils.py",
    "content": "\"\"\"\nThese were (shamelessly) taken from cs231n course github code.\nI believe these were coded by Andrej Karpathy so credit goes to him\nfor coding these.\n\"\"\"\n\nimport numpy as np\nimport matplotlib.pyplot as plt\n\n\ndef create_dataset(N, D=2, K=2):\n    X = np.zeros((N * K, D))  # data matrix (each row = single example)\n    y = np.zeros(N * K)  # class labels\n\n    for j in range(K):\n        ix = range(N * j, N * (j + 1))\n        r = np.linspace(0.0, 1, N)  # radius\n        t = np.linspace(j * 4, (j + 1) * 4, N) + np.random.randn(N) * 0.2  # theta\n        X[ix] = np.c_[r * np.sin(t), r * np.cos(t)]\n        y[ix] = j\n\n    # lets visualize the data:\n    plt.scatter(X[:, 0], X[:, 1], c=y, s=40, cmap=plt.cm.Spectral)\n    plt.show()\n\n    y[y == 0] -= 1\n\n    return X, y\n\n\ndef plot_contour(X, y, svm):\n    # plot the resulting classifier\n    h = 0.01\n    x_min, x_max = X[:, 0].min() - 1, X[:, 0].max() + 1\n    y_min, y_max = X[:, 1].min() - 1, X[:, 1].max() + 1\n\n    xx, yy = np.meshgrid(np.arange(x_min, x_max, h), np.arange(y_min, y_max, h))\n\n    points = np.c_[xx.ravel(), yy.ravel()]\n\n    Z = svm.predict(points)\n    Z = Z.reshape(xx.shape)\n    plt.contourf(xx, yy, Z, cmap=plt.cm.Spectral, alpha=0.8)\n\n    # plt the points\n    plt.scatter(X[:, 0], X[:, 1], c=y, s=40, cmap=plt.cm.Spectral)\n    plt.show()\n"
  },
  {
    "path": "ML/ml_metrics/data.txt",
    "content": "0 \t0.827142151760153\n0 \t0.6044595910412887\n0 \t0.7916340858282026\n0 \t0.16080518180592987\n0 \t0.611222921705038\n0 \t0.2555087295500818\n0 \t0.5681507664364468\n0 \t0.05990570219972058\n0 \t0.6644434078306367\n0 \t0.11293577405861703\n0 \t0.06152372321587048\n0 \t0.35250697207600584\n0 \t0.3226701829081975\n0 \t0.43339115381458776\n0 \t0.2280744262436838\n0 \t0.7219848389339433\n0 \t0.23527698971402375\n0 \t0.2850245335200196\n0 \t0.4107047877448165\n0 \t0.2008356196164621\n0 \t0.3711921802697385\n0 \t0.4234822657253734\n0 \t0.4876482027124213\n0 \t0.4234822657253734\n0 \t0.5750985220664769\n0 \t0.6734047730095499\n0 \t0.7355892648444824\n0 \t0.7137899092959652\n0 \t0.3873972469024071\n0 \t0.24042033264833723\n0 \t0.1663411647259707\n0 \t0.1663411647259707\n0 \t0.2850245335200196\n0 \t0.3683741846950643\n0 \t0.17375784896208155\n0 \t0.43636290738886574\n0 \t0.7219848389339433\n0 \t0.46745878087292836\n0 \t0.23527698971402375\n0 \t0.17202866439941822\n0 \t0.17786913865061538\n0 \t0.44335359557308707\n0 \t0.2768503833164947\n0 \t0.06891755391553003\n0 \t0.21414010746535972\n0 \t0.27120595352357546\n0 \t0.26328216986315905\n0 \t0.48056205121673834\n0 \t0.08848560476699129\n0 \t0.2555087295500818\n1 \t0.5681507664364468\n1 \t0.2850245335200196\n1 \t0.842216416418616\n1 \t0.5280820469827786\n1 \t0.6302728469340095\n1 \t0.9325162813331325\n1 \t0.062225621463076315\n1 \t0.8823445035377085\n1 \t0.670739773835188\n1 \t0.891663414209465\n1 \t0.6489254823470298\n1 \t0.5552119758821265\n1 \t0.7510275470993321\n1 \t0.23310831157247616\n1 \t0.2933421288888426\n1 \t0.6044595910412887\n1 \t0.6302728469340095\n1 \t0.9585115007613662\n1 \t0.9342800686704079\n1 \t0.3226701829081975\n1 \t0.7982301827889998\n1 \t0.22102862644325694\n1 \t0.9390780973389883\n1 \t0.5078780077620866\n1 \t0.7379344573081708\n1 \t0.8750078631067137\n1 \t0.4704701704107932\n1 \t0.44335359557308707\n1 \t0.5651814720676593\n1 \t0.8658845001112441\n1 \t0.897024614730928\n1 \t0.9712637967845552\n1 \t0.5651814720676593\n1 \t0.517987379389242\n1 \t0.40385540386469254\n1 \t0.9435470013187671\n1 \t0.5780506539476005\n1 \t0.594744923406366\n1 \t0.3970432858350056\n1 \t0.7916340858282026\n1 \t0.7219848389339433\n1 \t0.7916340858282026\n1 \t0.2850245335200196\n1 \t0.7658513560779588\n1 \t0.7379344573081708\n1 \t0.7137899092959652\n1 \t0.4876482027124213\n1 \t0.6302728469340095\n1 \t0.5310944974701136\n1 \t0.35250697207600584"
  },
  {
    "path": "ML/ml_metrics/metrics.py",
    "content": "import numpy as np\nfrom scipy.integrate import simpson\nimport matplotlib.pyplot as plt\nimport warnings\n\n\ndef true_positives(y_true, y_pred):\n    tp = 0\n    for label, pred in zip(y_true, y_pred):\n        if pred == 1 and label == 1:\n            tp += 1\n    return tp\n\n\ndef true_negatives(y_true, y_pred):\n    tn = 0\n    for label, pred in zip(y_true, y_pred):\n        if pred == 0 and label == 0:\n            tn += 1\n    return tn\n\n\ndef false_positives(y_true, y_pred):\n    fp = 0\n    for label, pred in zip(y_true, y_pred):\n        if pred == 1 and label == 0:\n            fp += 1\n    return fp\n\n\ndef false_negatives(y_true, y_pred):\n    fn = 0\n    for label, pred in zip(y_true, y_pred):\n        if pred == 0 and label == 1:\n            fn += 1\n    return fn\n\n\ndef binary_accuracy(y_true, y_pred):\n    tp = true_positives(y_true, y_pred)\n    tn = true_negatives(y_true, y_pred)\n    fp = false_positives(y_true, y_pred)\n    fn = false_negatives(y_true, y_pred)\n    return (tp + tn) / (tp + tn + fp + fn)\n\n\ndef precision(y_true, y_pred):\n    \"\"\"\n    Fraction of True Positive Elements divided by total number of positive predicted units\n    How I view it: Assuming we say someone has cancer: how often are we correct?\n    It tells us how much we can trust the model when it predicts an individual as positive.\n    \"\"\"\n    tp = true_negatives(y_true, y_pred)\n    fp = false_positives(y_true, y_pred)\n    return tp / (tp + fp)\n\n\ndef recall(y_true, y_pred):\n    \"\"\"\n    Recall meaasure the model's predictive accuracy for the positive class.\n    How I view it, out of all the people that has cancer: how often are\n    we able to detect it?\n    \"\"\"\n    tp = true_negatives(y_true, y_pred)\n    fn = false_negatives(y_true, y_pred)\n    return tp / (tp + fn)\n\n\ndef multiclass_accuracy(y_true, y_pred):\n    correct = 0\n    total = len(y_true)\n    for label, pred in zip(y_true, y_pred):\n        correct += label == pred\n    return correct/total\n\n\ndef confusion_matrix(y_true, y_pred):\n    y_true = np.array(y_true)\n    y_pred = np.array(y_pred)\n    assert y_true.shape == y_pred.shape\n    unique_classes = np.unique(np.concatenate([y_true, y_pred], axis=0)).shape[0]\n    cm = np.zeros((unique_classes, unique_classes), dtype=np.int64)\n\n    for label, pred in zip(y_true, y_pred):\n        cm[label, pred] += 1\n\n    return cm\n\n\ndef accuracy_cm(cm):\n    return np.trace(cm)/np.sum(cm)\n\n\ndef balanced_accuracy_cm(cm):\n    correctly_classified = np.diagonal(cm)\n    rows_sum = np.sum(cm, axis=1)\n    indices = np.nonzero(rows_sum)[0]\n    if rows_sum.shape[0] != indices.shape[0]:\n        warnings.warn(\"y_pred contains classes not in y_true\")\n    accuracy_per_class = correctly_classified[indices]/(rows_sum[indices])\n    return np.sum(accuracy_per_class)/accuracy_per_class.shape[0]\n\n\ndef precision_cm(cm, average=\"specific\", class_label=1, eps=1e-12):\n    tp = np.diagonal(cm)\n    fp = np.sum(cm, axis=0) - tp\n    #precisions = np.diagonal(cm)/np.maximum(np.sum(cm, axis=0), 1e-12)\n\n    if average == \"none\":\n        return tp/(tp+fp+eps)\n\n    if average == \"specific\":\n        precisions = tp / (tp + fp + eps)\n        return precisions[class_label]\n\n    if average == \"micro\":\n        # all samples equally contribute to the average,\n        # hence there is a distinction between highly\n        # and poorly populated classes\n        return np.sum(tp) / (np.sum(tp) + np.sum(fp) + eps)\n\n    if average == \"macro\":\n        # all classes equally contribute to the average,\n        # no distinction between highly and poorly populated classes.\n        precisions = tp / (tp + fp + eps)\n        return np.sum(precisions)/precisions.shape[0]\n\n    if average == \"weighted\":\n        pass\n\n\ndef recall_cm(cm, average=\"specific\", class_label=1, eps=1e-12):\n    tp = np.diagonal(cm)\n    fn = np.sum(cm, axis=1) - tp\n\n    if average == \"none\":\n        return tp / (tp + fn + eps)\n\n    if average == \"specific\":\n        recalls = tp / (tp + fn + eps)\n        return recalls[class_label]\n\n    if average == \"micro\":\n        return np.sum(tp) / (np.sum(tp) + np.sum(fn))\n\n    if average == \"macro\":\n        recalls = tp / (tp + fn + eps)\n        return np.sum(recalls)/recalls.shape[0]\n\n    if average == \"weighted\":\n        pass\n\n\ndef f1score_cm(cm, average=\"specific\", class_label=1):\n    precision = precision_cm(cm, average, class_label)\n    recall = recall_cm(cm, average, class_label)\n    return 2 * (precision*recall)/(precision+recall)\n\n# true positive rate <-> sensitivity <-> recall\n# true negative rate <-> specificity <-> recall for neg. class\n# ROC curve\n# AUC from ROC\n# Precision-Recall Curve\n# Log Loss\n# Mattheus Correlation\n# Cohen Kappa score\n# --> REGRESSION METRICS\n\n\ndef roc_curve(y_true, y_preds, plot_graph=True, calculate_AUC=True, threshold_step=0.01):\n    TPR, FPR = [], []\n\n    for threshold in np.arange(np.min(y_preds), np.max(y_preds), threshold_step):\n        predictions = (y_preds > threshold) * 1\n        cm = confusion_matrix(y_true, predictions)\n        recalls = recall_cm(cm, average=\"none\")\n        # note TPR == sensitivity == recall\n        tpr = recalls[1]\n        # note tnr == specificity (which is same as recall for the negative class)\n        tnr = recalls[0]\n        TPR.append(tpr)\n        FPR.append(1-tnr)\n\n    if plot_graph:\n        plt.plot(FPR, TPR)\n        plt.xlabel(\"False Positive Rate\")\n        plt.ylabel(\"True Positive Rate\")\n        plt.title(\"ROC curve\")\n        plt.show()\n\n    if calculate_AUC:\n        print(np.abs(np.trapz(TPR, FPR)))\n\n\ndef precision_recall_curve(y_true, y_preds, plot_graph=True, calculate_AUC=True, threshold_step=0.01):\n    recalls, precisions = [], []\n\n    for threshold in np.arange(np.min(y_preds), np.max(y_preds), threshold_step):\n        predictions = (y_preds > threshold) * 1\n        cm = confusion_matrix(y_true, predictions)\n        recall = recall_cm(cm, average=\"specific\", class_label=1)\n        precision = precision_cm(cm, average=\"specific\", class_label=1)\n        recalls.append(recall)\n        precisions.append(precision)\n\n    recalls.append(0)\n    precisions.append(1)\n\n    if plot_graph:\n        plt.plot(recalls, precisions)\n        plt.xlabel(\"Recall\")\n        plt.ylabel(\"Precision\")\n        plt.title(\"Precision-Recall curve\")\n        plt.show()\n\n    if calculate_AUC:\n        print(np.abs(np.trapz(precisions, recalls)))\n\n\ny = []\nprobs = []\nwith open(\"data.txt\") as f:\n    for line in f.readlines():\n        label, pred = line.split()\n        label = int(label)\n        pred = float(pred)\n        y.append(label)\n        probs.append(pred)\n\nprecision_recall_curve(y, probs, threshold_step=0.001)\n#from sklearn.metrics import precision_recall_curve\n#precisions, recalls, _ = precision_recall_curve(y, probs)\n#plt.plot(recalls, precisions)\n#plt.xlabel(\"Recall\")\n#plt.ylabel(\"Precision\")\n#plt.title(\"Precision-Recall curve\")\n#plt.show()\n#print(np.abs(np.trapz(precisions, recalls)))\n\n\n"
  },
  {
    "path": "ML_tests/LinearRegression_tests/LinearRegression_GD.py",
    "content": "# Import folder where sorting algorithms\nimport sys\nimport unittest\nimport numpy as np\n\n# For importing from different folders\n# OBS: This is supposed to be done with automated testing,\n# hence relative to folder we want to import from\nsys.path.append(\"ML/algorithms/linearregression\")\n# If run from local:\n# sys.path.append('../../ML/algorithms/linearregression')\nfrom linear_regression_gradient_descent import LinearRegression\n\n\nclass TestLinearRegression_GradientDescent(unittest.TestCase):\n    def setUp(self):\n        # test cases we want to run\n\n        self.linearReg = LinearRegression()\n        self.X1 = np.array([[0, 1, 2]])\n        self.y1 = np.array([[1, 2, 3]])\n        self.W1_correct = np.array([[1, 1]]).T\n\n        self.X2 = np.array([[0, 1]])\n        self.y2 = np.array([[1, 0]])\n        self.W2_correct = np.array([[1, -1]]).T\n\n        self.X3 = np.array([[1, 2, 3], [1, 2, 4]])\n        self.y3 = np.array([[5, 10, 18]])\n        self.W3_correct = np.array([[0, 2, 3]]).T\n\n        self.X4 = np.array([[0, 0]])\n        self.y4 = np.array([[0, 0]])\n        self.W4_correct = np.array([[0, 0]]).T\n\n        self.X5 = np.array([[0, 1, 2, 3, 4, 5]])\n        self.y5 = np.array([[0, 0.99, 2.01, 2.99, 4.01, 4.99]])\n        self.W5_correct = np.array([[0, 1]]).T\n\n    def test_perfectpositiveslope(self):\n        W = self.linearReg.main(self.X1, self.y1)\n        boolean_array = np.isclose(W, self.W1_correct, atol=0.1)\n        self.assertTrue(boolean_array.all())\n\n    def test_perfectnegativeslope(self):\n        W = self.linearReg.main(self.X2, self.y2)\n        boolean_array = np.isclose(W, self.W2_correct, atol=0.1)\n        self.assertTrue(boolean_array.all())\n\n    def test_multipledimension(self):\n        W = self.linearReg.main(self.X3, self.y3)\n        boolean_array = np.isclose(W, self.W3_correct, atol=0.1)\n        self.assertTrue(boolean_array.all())\n\n    def test_zeros(self):\n        W = self.linearReg.main(self.X4, self.y4)\n        boolean_array = np.isclose(W, self.W4_correct, atol=0.1)\n        self.assertTrue(boolean_array.all())\n\n    def test_noisydata(self):\n        W = self.linearReg.main(self.X5, self.y5)\n        boolean_array = np.isclose(W, self.W5_correct, atol=0.1)\n        self.assertTrue(boolean_array.all())\n\n\nif __name__ == \"__main__\":\n    print(\"Running Linear Regression Normal Equation tests:\")\n    unittest.main()\n"
  },
  {
    "path": "ML_tests/LinearRegression_tests/LinearRegression_normal.py",
    "content": "# Import folder where sorting algorithms\nimport sys\nimport unittest\nimport numpy as np\n\n# For importing from different folders\n# OBS: This is supposed to be done with automated testing,\n# hence relative to folder we want to import from\nsys.path.append(\"ML/algorithms/linearregression\")\n\n# If run from local:\n# sys.path.append('../../ML/algorithms/linearregression/')\nfrom linear_regression_normal_equation import linear_regression_normal_equation\n\n\nclass TestLinearRegression_NormalEq(unittest.TestCase):\n    def setUp(self):\n        # test cases we want to run\n        self.X1 = np.array([[0, 1, 2]]).T\n        self.y1 = np.array([1, 2, 3])\n        self.W1_correct = np.array([[1, 1]])\n\n        self.X2 = np.array([[0, 1]]).T\n        self.y2 = np.array([1, 0])\n        self.W2_correct = np.array([[1, -1]])\n\n        self.X3 = np.array([[1, 2, 3], [1, 2, 4]]).T\n        self.y3 = np.array([5, 10, 18])\n        self.W3_correct = np.array([[0, 2, 3]])\n\n        self.X4 = np.array([[0, 0]]).T\n        self.y4 = np.array([0, 0])\n        self.W4_correct = np.array([[0, 0]])\n\n        self.X5 = np.array([[0, 1, 2, 3, 4, 5]]).T\n        self.y5 = np.array([0, 0.99, 2.01, 2.99, 4.01, 4.99])\n        self.W5_correct = np.array([[0, 1]])\n\n    def test_perfectpositiveslope(self):\n        W = linear_regression_normal_equation(self.X1, self.y1)\n        print(W.shape)\n        print(self.W1_correct.shape)\n        boolean_array = np.isclose(W, self.W1_correct)\n        self.assertTrue(boolean_array.all())\n\n    def test_perfectnegativeslope(self):\n        W = linear_regression_normal_equation(self.X2, self.y2)\n        boolean_array = np.isclose(W, self.W2_correct)\n        self.assertTrue(boolean_array.all())\n\n    def test_multipledimension(self):\n        W = linear_regression_normal_equation(self.X3, self.y3)\n        print(W)\n        print(self.W3_correct)\n        boolean_array = np.isclose(W, self.W3_correct)\n        self.assertTrue(boolean_array.all())\n\n    def test_zeros(self):\n        W = linear_regression_normal_equation(self.X4, self.y4)\n        boolean_array = np.isclose(W, self.W4_correct)\n        self.assertTrue(boolean_array.all())\n\n    def test_noisydata(self):\n        W = linear_regression_normal_equation(self.X5, self.y5)\n        boolean_array = np.isclose(W, self.W5_correct, atol=1e-3)\n        self.assertTrue(boolean_array.all())\n\n\nif __name__ == \"__main__\":\n    print(\"Running Linear Regression Normal Equation tests:\")\n    unittest.main()\n"
  },
  {
    "path": "ML_tests/Object_detection_tests/iou_test.py",
    "content": "import sys\nimport unittest\nimport torch\n\nsys.path.append(\"ML/Pytorch/object_detection/metrics/\")\nfrom iou import intersection_over_union\n\n\nclass TestIntersectionOverUnion(unittest.TestCase):\n    def setUp(self):\n        # test cases we want to run\n        self.t1_box1 = torch.tensor([0.8, 0.1, 0.2, 0.2])\n        self.t1_box2 = torch.tensor([0.9, 0.2, 0.2, 0.2])\n        self.t1_correct_iou = 1 / 7\n\n        self.t2_box1 = torch.tensor([0.95, 0.6, 0.5, 0.2])\n        self.t2_box2 = torch.tensor([0.95, 0.7, 0.3, 0.2])\n        self.t2_correct_iou = 3 / 13\n\n        self.t3_box1 = torch.tensor([0.25, 0.15, 0.3, 0.1])\n        self.t3_box2 = torch.tensor([0.25, 0.35, 0.3, 0.1])\n        self.t3_correct_iou = 0\n\n        self.t4_box1 = torch.tensor([0.7, 0.95, 0.6, 0.1])\n        self.t4_box2 = torch.tensor([0.5, 1.15, 0.4, 0.7])\n        self.t4_correct_iou = 3 / 31\n\n        self.t5_box1 = torch.tensor([0.5, 0.5, 0.2, 0.2])\n        self.t5_box2 = torch.tensor([0.5, 0.5, 0.2, 0.2])\n        self.t5_correct_iou = 1\n\n        # (x1,y1,x2,y2) format\n        self.t6_box1 = torch.tensor([2, 2, 6, 6])\n        self.t6_box2 = torch.tensor([4, 4, 7, 8])\n        self.t6_correct_iou = 4 / 24\n\n        self.t7_box1 = torch.tensor([0, 0, 2, 2])\n        self.t7_box2 = torch.tensor([3, 0, 5, 2])\n        self.t7_correct_iou = 0\n\n        self.t8_box1 = torch.tensor([0, 0, 2, 2])\n        self.t8_box2 = torch.tensor([0, 3, 2, 5])\n        self.t8_correct_iou = 0\n\n        self.t9_box1 = torch.tensor([0, 0, 2, 2])\n        self.t9_box2 = torch.tensor([2, 0, 5, 2])\n        self.t9_correct_iou = 0\n\n        self.t10_box1 = torch.tensor([0, 0, 2, 2])\n        self.t10_box2 = torch.tensor([1, 1, 3, 3])\n        self.t10_correct_iou = 1 / 7\n\n        self.t11_box1 = torch.tensor([0, 0, 3, 2])\n        self.t11_box2 = torch.tensor([1, 1, 3, 3])\n        self.t11_correct_iou = 0.25\n\n        self.t12_bboxes1 = torch.tensor(\n            [\n                [0, 0, 2, 2],\n                [0, 0, 2, 2],\n                [0, 0, 2, 2],\n                [0, 0, 2, 2],\n                [0, 0, 2, 2],\n                [0, 0, 3, 2],\n            ]\n        )\n        self.t12_bboxes2 = torch.tensor(\n            [\n                [3, 0, 5, 2],\n                [3, 0, 5, 2],\n                [0, 3, 2, 5],\n                [2, 0, 5, 2],\n                [1, 1, 3, 3],\n                [1, 1, 3, 3],\n            ]\n        )\n        self.t12_correct_ious = torch.tensor([0, 0, 0, 0, 1 / 7, 0.25])\n\n        # Accept if the difference in iou is small\n        self.epsilon = 0.001\n\n    def test_both_inside_cell_shares_area(self):\n        iou = intersection_over_union(self.t1_box1, self.t1_box2, box_format=\"midpoint\")\n        self.assertTrue((torch.abs(iou - self.t1_correct_iou) < self.epsilon))\n\n    def test_partially_outside_cell_shares_area(self):\n        iou = intersection_over_union(self.t2_box1, self.t2_box2, box_format=\"midpoint\")\n        self.assertTrue((torch.abs(iou - self.t2_correct_iou) < self.epsilon))\n\n    def test_both_inside_cell_shares_no_area(self):\n        iou = intersection_over_union(self.t3_box1, self.t3_box2, box_format=\"midpoint\")\n        self.assertTrue((torch.abs(iou - self.t3_correct_iou) < self.epsilon))\n\n    def test_midpoint_outside_cell_shares_area(self):\n        iou = intersection_over_union(self.t4_box1, self.t4_box2, box_format=\"midpoint\")\n        self.assertTrue((torch.abs(iou - self.t4_correct_iou) < self.epsilon))\n\n    def test_both_inside_cell_shares_entire_area(self):\n        iou = intersection_over_union(self.t5_box1, self.t5_box2, box_format=\"midpoint\")\n        self.assertTrue((torch.abs(iou - self.t5_correct_iou) < self.epsilon))\n\n    def test_box_format_x1_y1_x2_y2(self):\n        iou = intersection_over_union(self.t6_box1, self.t6_box2, box_format=\"corners\")\n        self.assertTrue((torch.abs(iou - self.t6_correct_iou) < self.epsilon))\n\n    def test_additional_and_batch(self):\n        ious = intersection_over_union(\n            self.t12_bboxes1, self.t12_bboxes2, box_format=\"corners\"\n        )\n        all_true = torch.all(\n            torch.abs(self.t12_correct_ious - ious.squeeze(1)) < self.epsilon\n        )\n        self.assertTrue(all_true)\n\n\nif __name__ == \"__main__\":\n    print(\"Running Intersection Over Union Tests:\")\n    unittest.main()\n"
  },
  {
    "path": "ML_tests/Object_detection_tests/map_test.py",
    "content": "import sys\nimport unittest\nimport torch\n\nsys.path.append(\"ML/Pytorch/object_detection/metrics/\")\nfrom mean_avg_precision import mean_average_precision\n\nclass TestMeanAveragePrecision(unittest.TestCase):\n    def setUp(self):\n        # test cases we want to run\n        self.t1_preds = [\n            [0, 0, 0.9, 0.55, 0.2, 0.3, 0.2],\n            [0, 0, 0.8, 0.35, 0.6, 0.3, 0.2],\n            [0, 0, 0.7, 0.8, 0.7, 0.2, 0.2],\n        ]\n        self.t1_targets = [\n            [0, 0, 0.9, 0.55, 0.2, 0.3, 0.2],\n            [0, 0, 0.8, 0.35, 0.6, 0.3, 0.2],\n            [0, 0, 0.7, 0.8, 0.7, 0.2, 0.2],\n        ]\n        self.t1_correct_mAP = 1\n\n        self.t2_preds = [\n            [1, 0, 0.9, 0.55, 0.2, 0.3, 0.2],\n            [0, 0, 0.8, 0.35, 0.6, 0.3, 0.2],\n            [0, 0, 0.7, 0.8, 0.7, 0.2, 0.2],\n        ]\n        self.t2_targets = [\n            [1, 0, 0.9, 0.55, 0.2, 0.3, 0.2],\n            [0, 0, 0.8, 0.35, 0.6, 0.3, 0.2],\n            [0, 0, 0.7, 0.8, 0.7, 0.2, 0.2],\n        ]\n        self.t2_correct_mAP = 1\n\n        self.t3_preds = [\n            [0, 1, 0.9, 0.55, 0.2, 0.3, 0.2],\n            [0, 1, 0.8, 0.35, 0.6, 0.3, 0.2],\n            [0, 1, 0.7, 0.8, 0.7, 0.2, 0.2],\n        ]\n        self.t3_targets = [\n            [0, 0, 0.9, 0.55, 0.2, 0.3, 0.2],\n            [0, 0, 0.8, 0.35, 0.6, 0.3, 0.2],\n            [0, 0, 0.7, 0.8, 0.7, 0.2, 0.2],\n        ]\n        self.t3_correct_mAP = 0\n\n        self.t4_preds = [\n            [0, 0, 0.9, 0.15, 0.25, 0.1, 0.1],\n            [0, 0, 0.8, 0.35, 0.6, 0.3, 0.2],\n            [0, 0, 0.7, 0.8, 0.7, 0.2, 0.2],\n        ]\n\n        self.t4_targets = [\n            [0, 0, 0.9, 0.55, 0.2, 0.3, 0.2],\n            [0, 0, 0.8, 0.35, 0.6, 0.3, 0.2],\n            [0, 0, 0.7, 0.8, 0.7, 0.2, 0.2],\n        ]\n        self.t4_correct_mAP = 5 / 18\n\n        self.epsilon = 1e-4\n\n    def test_all_correct_one_class(self):\n        mean_avg_prec = mean_average_precision(\n            self.t1_preds,\n            self.t1_targets,\n            iou_threshold=0.5,\n            box_format=\"midpoint\",\n            num_classes=1,\n        )\n        self.assertTrue(abs(self.t1_correct_mAP - mean_avg_prec) < self.epsilon)\n\n    def test_all_correct_batch(self):\n        mean_avg_prec = mean_average_precision(\n            self.t2_preds,\n            self.t2_targets,\n            iou_threshold=0.5,\n            box_format=\"midpoint\",\n            num_classes=1,\n        )\n        self.assertTrue(abs(self.t2_correct_mAP - mean_avg_prec) < self.epsilon)\n\n    def test_all_wrong_class(self):\n        mean_avg_prec = mean_average_precision(\n            self.t3_preds,\n            self.t3_targets,\n            iou_threshold=0.5,\n            box_format=\"midpoint\",\n            num_classes=2,\n        )\n        self.assertTrue(abs(self.t3_correct_mAP - mean_avg_prec) < self.epsilon)\n\n    def test_one_inaccurate_box(self):\n        mean_avg_prec = mean_average_precision(\n            self.t4_preds,\n            self.t4_targets,\n            iou_threshold=0.5,\n            box_format=\"midpoint\",\n            num_classes=1,\n        )\n        self.assertTrue(abs(self.t4_correct_mAP - mean_avg_prec) < self.epsilon)\n\n    def test_all_wrong_class(self):\n        mean_avg_prec = mean_average_precision(\n            self.t3_preds,\n            self.t3_targets,\n            iou_threshold=0.5,\n            box_format=\"midpoint\",\n            num_classes=2,\n        )\n        self.assertTrue(abs(self.t3_correct_mAP - mean_avg_prec) < self.epsilon)\n\n\nif __name__ == \"__main__\":\n    print(\"Running Mean Average Precisions Tests:\")\n    unittest.main()\n"
  },
  {
    "path": "ML_tests/Object_detection_tests/nms_test.py",
    "content": "import sys\nimport unittest\nimport torch\n\nsys.path.append(\"ML/Pytorch/object_detection/metrics/\")\nfrom nms import nms\n\n\nclass TestNonMaxSuppression(unittest.TestCase):\n    def setUp(self):\n        # test cases we want to run\n        self.t1_boxes = [\n            [1, 1, 0.5, 0.45, 0.4, 0.5],\n            [1, 0.8, 0.5, 0.5, 0.2, 0.4],\n            [1, 0.7, 0.25, 0.35, 0.3, 0.1],\n            [1, 0.05, 0.1, 0.1, 0.1, 0.1],\n        ]\n\n        self.c1_boxes = [[1, 1, 0.5, 0.45, 0.4, 0.5], [1, 0.7, 0.25, 0.35, 0.3, 0.1]]\n\n        self.t2_boxes = [\n            [1, 1, 0.5, 0.45, 0.4, 0.5],\n            [2, 0.9, 0.5, 0.5, 0.2, 0.4],\n            [1, 0.8, 0.25, 0.35, 0.3, 0.1],\n            [1, 0.05, 0.1, 0.1, 0.1, 0.1],\n        ]\n\n        self.c2_boxes = [\n            [1, 1, 0.5, 0.45, 0.4, 0.5],\n            [2, 0.9, 0.5, 0.5, 0.2, 0.4],\n            [1, 0.8, 0.25, 0.35, 0.3, 0.1],\n        ]\n\n        self.t3_boxes = [\n            [1, 0.9, 0.5, 0.45, 0.4, 0.5],\n            [1, 1, 0.5, 0.5, 0.2, 0.4],\n            [2, 0.8, 0.25, 0.35, 0.3, 0.1],\n            [1, 0.05, 0.1, 0.1, 0.1, 0.1],\n        ]\n\n        self.c3_boxes = [[1, 1, 0.5, 0.5, 0.2, 0.4], [2, 0.8, 0.25, 0.35, 0.3, 0.1]]\n\n        self.t4_boxes = [\n            [1, 0.9, 0.5, 0.45, 0.4, 0.5],\n            [1, 1, 0.5, 0.5, 0.2, 0.4],\n            [1, 0.8, 0.25, 0.35, 0.3, 0.1],\n            [1, 0.05, 0.1, 0.1, 0.1, 0.1],\n        ]\n\n        self.c4_boxes = [\n            [1, 0.9, 0.5, 0.45, 0.4, 0.5],\n            [1, 1, 0.5, 0.5, 0.2, 0.4],\n            [1, 0.8, 0.25, 0.35, 0.3, 0.1],\n        ]\n\n    def test_remove_on_iou(self):\n        bboxes = nms(\n            self.t1_boxes,\n            threshold=0.2,\n            iou_threshold=7 / 20,\n            box_format=\"midpoint\",\n        )\n        self.assertTrue(sorted(bboxes) == sorted(self.c1_boxes))\n\n    def test_keep_on_class(self):\n        bboxes = nms(\n            self.t2_boxes,\n            threshold=0.2,\n            iou_threshold=7 / 20,\n            box_format=\"midpoint\",\n        )\n        self.assertTrue(sorted(bboxes) == sorted(self.c2_boxes))\n\n    def test_remove_on_iou_and_class(self):\n        bboxes = nms(\n            self.t3_boxes,\n            threshold=0.2,\n            iou_threshold=7 / 20,\n            box_format=\"midpoint\",\n        )\n        self.assertTrue(sorted(bboxes) == sorted(self.c3_boxes))\n\n    def test_keep_on_iou(self):\n        bboxes = nms(\n            self.t4_boxes,\n            threshold=0.2,\n            iou_threshold=9 / 20,\n            box_format=\"midpoint\",\n        )\n        self.assertTrue(sorted(bboxes) == sorted(self.c4_boxes))\n\n\nif __name__ == \"__main__\":\n    print(\"Running Non Max Suppression Tests:\")\n    unittest.main()\n"
  },
  {
    "path": "README.md",
    "content": "<p align=\"center\"><img width=\"100%\" src=\"ML/others/logo/torch_and_tf.svg\" /></p>\n\n--------------------------------------------------------------------------------\n\n\n[![Build Status](https://travis-ci.com/aladdinpersson/Machine-Learning-Collection.svg?branch=master)](https://travis-ci.com/aladdinpersson/Machine-Learning-Collection) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n\n[logo]: https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/others/logo/youtube_logo.png\n\n# Machine Learning Collection\nIn this repository you will find tutorials and projects related to Machine Learning. I try to make the code as clear as possible, and the goal is be to used as a learning resource and a way to lookup problems to solve specific problems. For most I have also done video explanations on YouTube if you want a walkthrough for the code. If you got any questions or suggestions for future videos I prefer if you ask it on [YouTube](https://www.youtube.com/c/AladdinPersson). This repository is contribution friendly, so if you feel you want to add something then I'd happily merge a PR :smiley:\n\n## Table Of Contents\n- [Machine Learning Algorithms](#machine-learning)\n- [PyTorch Tutorials](#pytorch-tutorials)\n\t- [Basics](#basics)\n\t- [More Advanced](#more-advanced)\n    - [Object Detection](#Object-Detection)\n\t- [Generative Adversarial Networks](#Generative-Adversarial-Networks)\n\t- [Architectures](#architectures)\n\t- [Lightning](#PyTorch-Lightning)\n- [TensorFlow Tutorials](#tensorflow-tutorials)\n\t- [Beginner Tutorials](#beginner-tutorials)\n\t- [Architectures](#CNN-Architectures)\n\n## Machine Learning\n* [![Youtube Link][logo]](https://youtu.be/pCCUnoes1Po) &nbsp; [Linear Regression](https://github.com/AladdinPersson/Machine-Learning-Collection/blob/master/ML/algorithms/linearregression/linear_regression_gradient_descent.py) **- With Gradient Descent** :white_check_mark: \n* [![Youtube Link][logo]](https://youtu.be/DQ6xfe75CDk) &nbsp; [Linear Regression](https://github.com/AladdinPersson/Machine-Learning-Collection/blob/master/ML/algorithms/linearregression/linear_regression_normal_equation.py) **- With Normal Equation** :white_check_mark:\n* [![Youtube Link][logo]](https://youtu.be/x1ez9vi611I) &nbsp; [Logistic Regression](https://github.com/AladdinPersson/Machine-Learning-Collection/blob/master/ML/algorithms/logisticregression/logistic_regression.py)\n* [![Youtube Link][logo]](https://youtu.be/3trW5Lig7BU) &nbsp; [Naive Bayes](https://github.com/AladdinPersson/Machine-Learning-Collection/blob/master/ML/algorithms/naivebayes/naivebayes.py) **- Gaussian Naive Bayes**\n* [![Youtube Link][logo]](https://youtu.be/QzAaRuDskyc) &nbsp; [K-nearest neighbors](https://github.com/AladdinPersson/Machine-Learning-Collection/blob/master/ML/algorithms/knn/knn.py)\n* [![Youtube Link][logo]](https://youtu.be/W4fSRHeafMo) &nbsp; [K-means clustering](https://github.com/AladdinPersson/Machine-Learning-Collection/blob/master/ML/algorithms/kmeans/kmeansclustering.py) \n* [![Youtube Link][logo]](https://youtu.be/gBTtR0bs-1k) &nbsp; [Support Vector Machine](https://github.com/AladdinPersson/Machine-Learning-Collection/blob/master/ML/algorithms/svm/svm.py) **- Using CVXOPT**\n* [![Youtube Link][logo]](https://youtu.be/NJvojeoTnNM) &nbsp; [Neural Network](https://github.com/AladdinPersson/Machine-Learning-Collection/blob/master/ML/algorithms/neuralnetwork/NN.py)\n* [Decision Tree](https://github.com/AladdinPersson/Machine-Learning-Collection/blob/master/ML/algorithms/decisiontree/decision_tree.py)\n\n## PyTorch Tutorials\nIf you have any specific video suggestion please make a comment on YouTube :)\n\n### Basics\n* [![Youtube Link][logo]](https://youtu.be/x9JiIFvlUwk) &nbsp; [Tensor Basics](https://github.com/AladdinPersson/Machine-Learning-Collection/blob/master/ML/Pytorch/Basics/pytorch_tensorbasics.py)\n* [![Youtube Link][logo]](https://youtu.be/Jy4wM2X21u0) &nbsp; [Feedforward Neural Network](https://github.com/aladdinpersson/Machine-Learning-Collection/blob/master/ML/Pytorch/Basics/pytorch_simple_fullynet.py)\n* [![Youtube Link][logo]](https://youtu.be/wnK3uWv_WkU) &nbsp; [Convolutional Neural Network](https://github.com/aladdinpersson/Machine-Learning-Collection/blob/master/ML/Pytorch/Basics/pytorch_simple_CNN.py)\n* [![Youtube Link][logo]](https://youtu.be/Gl2WXLIMvKA) &nbsp; [Recurrent Neural Network](https://github.com/aladdinpersson/Machine-Learning-Collection/blob/master/ML/Pytorch/Basics/pytorch_rnn_gru_lstm.py)\n* [![Youtube Link][logo]](https://youtu.be/jGst43P-TJA) &nbsp; [Bidirectional Recurrent Neural Network](https://github.com/aladdinpersson/Machine-Learning-Collection/blob/master/ML/Pytorch/Basics/pytorch_bidirectional_lstm.py)\n* [![Youtube Link][logo]](https://youtu.be/g6kQl_EFn84) &nbsp; [Loading and saving model](https://github.com/aladdinpersson/Machine-Learning-Collection/blob/master/ML/Pytorch/Basics/pytorch_loadsave.py)\n* [![Youtube Link][logo]](https://youtu.be/ZoZHd0Zm3RY) &nbsp; [Custom Dataset (Images)](https://github.com/aladdinpersson/Machine-Learning-Collection/tree/master/ML/Pytorch/Basics/custom_dataset)\n* [![Youtube Link][logo]](https://youtu.be/9sHcLvVXsns) &nbsp; [Custom Dataset (Text)](https://github.com/aladdinpersson/Machine-Learning-Collection/tree/master/ML/Pytorch/Basics/custom_dataset_txt)\n* [![Youtube Link][logo]](https://youtu.be/ks3oZ7Va8HU) &nbsp; [Mixed Precision Training](https://github.com/aladdinpersson/Machine-Learning-Collection/blob/master/ML/Pytorch/Basics/pytorch_mixed_precision_example.py)\n* [![Youtube Link][logo]](https://youtu.be/4JFVhJyTZ44) &nbsp; [Imbalanced dataset](https://github.com/aladdinpersson/Machine-Learning-Collection/tree/master/ML/Pytorch/Basics/Imbalanced_classes)\n* [![Youtube Link][logo]](https://youtu.be/qaDe0qQZ5AQ) &nbsp; [Transfer Learning and finetuning](https://github.com/aladdinpersson/Machine-Learning-Collection/blob/master/ML/Pytorch/Basics/pytorch_pretrain_finetune.py)\n* [![Youtube Link][logo]](https://youtu.be/Zvd276j9sZ8) &nbsp; [Data augmentation using Torchvision](https://github.com/aladdinpersson/Machine-Learning-Collection/blob/master/ML/Pytorch/Basics/pytorch_transforms.py)\n* [![Youtube Link][logo]](https://youtu.be/rAdLwKJBvPM) &nbsp; [Data augmentation using Albumentations](https://github.com/aladdinpersson/Machine-Learning-Collection/tree/master/ML/Pytorch/Basics/albumentations_tutorial)\n* [![Youtube Link][logo]](https://youtu.be/RLqsxWaQdHE) &nbsp; [TensorBoard Example](https://github.com/aladdinpersson/Machine-Learning-Collection/blob/master/ML/Pytorch/Basics/pytorch_tensorboard_.py)\n* [![Youtube Link][logo]](https://youtu.be/y6IEcEBRZks) &nbsp; [Calculate Mean and STD of Images](https://github.com/aladdinpersson/Machine-Learning-Collection/blob/master/ML/Pytorch/Basics/pytorch_std_mean.py)\n* [![Youtube Link][logo]](https://youtu.be/RKHopFfbPao) &nbsp; [Simple Progress bar](https://github.com/aladdinpersson/Machine-Learning-Collection/blob/master/ML/Pytorch/Basics/pytorch_progress_bar.py)\n* [![Youtube Link][logo]](https://youtu.be/1SZocGaCAr8) &nbsp; [Deterministic Behavior](https://github.com/aladdinpersson/Machine-Learning-Collection/blob/master/ML/Pytorch/Basics/set_deterministic_behavior/pytorch_set_seeds.py)\n* [![Youtube Link][logo]](https://youtu.be/P31hB37g4Ak) &nbsp; [Learning Rate Scheduler](https://github.com/aladdinpersson/Machine-Learning-Collection/blob/master/ML/Pytorch/Basics/pytorch_lr_ratescheduler.py) \n* [![Youtube Link][logo]](https://youtu.be/xWQ-p_o0Uik) &nbsp; [Initialization of weights](https://github.com/aladdinpersson/Machine-Learning-Collection/blob/master/ML/Pytorch/Basics/pytorch_init_weights.py)\n\n\n### More Advanced\n* [![Youtube Link][logo]](https://youtu.be/WujVlF_6h5A) &nbsp; [Text Generating LSTM](https://github.com/AladdinPersson/Machine-Learning-Collection/blob/master/ML/Projects/text_generation_babynames/generating_names.py)\n* [![Youtube Link][logo]](https://youtu.be/IHq1t7NxS8k) &nbsp; [Semantic Segmentation w. U-NET](https://github.com/aladdinpersson/Machine-Learning-Collection/tree/master/ML/Pytorch/image_segmentation/semantic_segmentation_unet)\n* [![Youtube Link][logo]](https://youtu.be/y2BaTt1fxJU) &nbsp; [Image Captioning](https://github.com/AladdinPerzon/Machine-Learning-Collection/tree/master/ML/Pytorch/more_advanced/image_captioning)\n* [![Youtube Link][logo]](https://youtu.be/imX4kSKDY7s) &nbsp; [Neural Style Transfer](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/Pytorch/more_advanced/neuralstyle/nst.py)\n* [![Youtube Link][logo]](https://www.youtube.com/playlist?list=PLhhyoLH6IjfzxdlsLrclcCTsS8kIcfWJb) &nbsp; [Torchtext [1]](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/Pytorch/more_advanced/torchtext/torchtext_tutorial1.py) [Torchtext [2]](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/Pytorch/more_advanced/torchtext/torchtext_tutorial2.py) [Torchtext [3]](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/Pytorch/more_advanced/torchtext/torchtext_tutorial3.py)\n* [![Youtube Link][logo]](https://youtu.be/EoGUlvhRYpk) &nbsp; [Seq2Seq](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/Pytorch/more_advanced/Seq2Seq/seq2seq.py) **- Sequence to Sequence (LSTM)**\n* [![Youtube Link][logo]](https://youtu.be/sQUqQddQtB4) &nbsp; [Seq2Seq + Attention](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/Pytorch/more_advanced/Seq2Seq_attention/seq2seq_attention.py) **- Sequence to Sequence with Attention (LSTM)**\n* [![Youtube Link][logo]](https://youtu.be/M6adRGJe5cQ) &nbsp; [Seq2Seq Transformers](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/Pytorch/more_advanced/seq2seq_transformer/seq2seq_transformer.py) **- Sequence to Sequence with Transformers**\n* [![Youtube Link][logo]](https://youtu.be/U0s0f995w14) &nbsp; [Transformers from scratch](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/Pytorch/more_advanced/transformer_from_scratch/transformer_from_scratch.py) **- Attention Is All You Need**\n\n### Object Detection\n[Object Detection Playlist](https://youtube.com/playlist?list=PLhhyoLH6Ijfw0TpCTVTNk42NN08H6UvNq)\n* [![Youtube Link][logo]](https://youtu.be/XXYG5ZWtjj0) &nbsp; [Intersection over Union](https://github.com/aladdinpersson/Machine-Learning-Collection/blob/master/ML/Pytorch/object_detection/metrics/iou.py) \n* [![Youtube Link][logo]](https://youtu.be/YDkjWEN8jNA) &nbsp; [Non-Max Suppression](https://github.com/aladdinpersson/Machine-Learning-Collection/blob/master/ML/Pytorch/object_detection/metrics/nms.py)\n* [![Youtube Link][logo]](https://youtu.be/FppOzcDvaDI) &nbsp; [Mean Average Precision](https://github.com/aladdinpersson/Machine-Learning-Collection/blob/master/ML/Pytorch/object_detection/metrics/mean_avg_precision.py)\n* [![Youtube Link][logo]](https://youtu.be/n9_XyCGr-MI) &nbsp; [YOLOv1 from scratch](https://github.com/aladdinpersson/Machine-Learning-Collection/blob/master/ML/Pytorch/object_detection/YOLO)\n* [![Youtube Link][logo]](https://youtu.be/Grir6TZbc1M) &nbsp; [YOLOv3 from scratch](https://github.com/aladdinpersson/Machine-Learning-Collection/tree/master/ML/Pytorch/object_detection/YOLOv3)\n\n### Generative Adversarial Networks\n[GAN Playlist](https://youtube.com/playlist?list=PLhhyoLH6IjfwIp8bZnzX8QR30TRcHO8Va)\n\n* [![Youtube Link][logo]](https://youtu.be/OljTVUVzPpM) &nbsp; [Simple FC GAN](https://github.com/aladdinpersson/Machine-Learning-Collection/blob/master/ML/Pytorch/GANs/1.%20SimpleGAN/fc_gan.py)\n* [![Youtube Link][logo]](https://youtu.be/IZtv9s_Wx9I) &nbsp; [DCGAN](https://github.com/aladdinpersson/Machine-Learning-Collection/tree/master/ML/Pytorch/GANs/2.%20DCGAN)\n* [![Youtube Link][logo]](https://youtu.be/pG0QZ7OddX4) &nbsp; [WGAN](https://github.com/aladdinpersson/Machine-Learning-Collection/tree/master/ML/Pytorch/GANs/3.%20WGAN)\n* [![Youtube Link][logo]](https://youtu.be/pG0QZ7OddX4) &nbsp; [WGAN-GP](https://github.com/aladdinpersson/Machine-Learning-Collection/tree/master/ML/Pytorch/GANs/4.%20WGAN-GP)\n* [![Youtube Link][logo]](https://youtu.be/SuddDSqGRzg) &nbsp; [Pix2Pix](https://github.com/aladdinpersson/Machine-Learning-Collection/tree/master/ML/Pytorch/GANs/Pix2Pix)\n* [![Youtube Link][logo]](https://youtu.be/4LktBHGCNfw) &nbsp; [CycleGAN](https://github.com/aladdinpersson/Machine-Learning-Collection/tree/master/ML/Pytorch/GANs/CycleGAN)\n* [![Youtube Link][logo]](https://youtu.be/nkQHASviYac) &nbsp; [ProGAN](https://github.com/aladdinpersson/Machine-Learning-Collection/tree/master/ML/Pytorch/GANs/ProGAN)\n* [SRGAN](https://github.com/aladdinpersson/Machine-Learning-Collection/tree/master/ML/Pytorch/GANs/SRGAN)\n* [ESRGAN](https://github.com/aladdinpersson/Machine-Learning-Collection/tree/master/ML/Pytorch/GANs/ESRGAN)\n* [StyleGAN](https://github.com/aladdinpersson/Machine-Learning-Collection/tree/master/ML/Pytorch/GANs/StyleGAN) - NOTE: NOT DONE\n\n\n\n### Architectures\n* [![Youtube Link][logo]](https://youtu.be/fcOW-Zyb5Bo) &nbsp; [LeNet5](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/79f2e1928906f3cccbae6c024f3f79fd05262cd1/ML/Pytorch/CNN_architectures/lenet5_pytorch.py#L15-L35) **- CNN architecture**\n* [![Youtube Link][logo]](https://youtu.be/ACmuBbuXn20) &nbsp; [VGG](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/79f2e1928906f3cccbae6c024f3f79fd05262cd1/ML/Pytorch/CNN_architectures/pytorch_vgg_implementation.py#L16-L62) **- CNN architecture**\n* [![Youtube Link][logo]](https://youtu.be/uQc4Fs7yx5I) &nbsp; [Inception v1](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/Pytorch/CNN_architectures/pytorch_inceptionet.py) **- CNN architecture**\n* [![Youtube Link][logo]](https://youtu.be/DkNIBBBvcPs) &nbsp; [ResNet](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/Pytorch/CNN_architectures/pytorch_resnet.py) **- CNN architecture**\n* [![Youtube Link][logo]](https://youtu.be/fR_0o25kigM) &nbsp; [EfficientNet](https://github.com/aladdinpersson/Machine-Learning-Collection/blob/master/ML/Pytorch/CNN_architectures/pytorch_efficientnet.py) **- CNN architecture**\n\n### PyTorch Lightning\n* [![Youtube Link][logo]](https://www.youtube.com/playlist?list=PLhhyoLH6IjfyL740PTuXef4TstxAK6nGP) &nbsp; [Tutorial 1 - Introduction and starter code](https://github.com/aladdinpersson/Machine-Learning-Collection/tree/master/ML/Pytorch/pytorch_lightning/1.%20start%20code)\n* [![Youtube Link][logo]](https://www.youtube.com/playlist?list=PLhhyoLH6IjfyL740PTuXef4TstxAK6nGP) &nbsp; [Tutorial 2 - LightningModule](https://github.com/aladdinpersson/Machine-Learning-Collection/tree/master/ML/Pytorch/pytorch_lightning/2.%20LightningModule)\n* [![Youtube Link][logo]](https://www.youtube.com/playlist?list=PLhhyoLH6IjfyL740PTuXef4TstxAK6nGP) &nbsp; [Tutorial 3 - Trainer](https://github.com/aladdinpersson/Machine-Learning-Collection/tree/master/ML/Pytorch/pytorch_lightning/3.%20Lightning%20Trainer)\n* [![Youtube Link][logo]](https://www.youtube.com/playlist?list=PLhhyoLH6IjfyL740PTuXef4TstxAK6nGP) &nbsp; [Tutorial 4 - Metrics](https://github.com/aladdinpersson/Machine-Learning-Collection/tree/master/ML/Pytorch/pytorch_lightning/4.%20Metrics)\n* [![Youtube Link][logo]](https://www.youtube.com/playlist?list=PLhhyoLH6IjfyL740PTuXef4TstxAK6nGP) &nbsp; [Tutorial 5 - DataModule](https://github.com/aladdinpersson/Machine-Learning-Collection/tree/master/ML/Pytorch/pytorch_lightning/5.%20DataModule)\n* [![Youtube Link][logo]](https://www.youtube.com/playlist?list=PLhhyoLH6IjfyL740PTuXef4TstxAK6nGP) &nbsp; [Tutorial 6 - Code restructure](https://github.com/aladdinpersson/Machine-Learning-Collection/tree/master/ML/Pytorch/pytorch_lightning/6.%20Restructuring)\n* [![Youtube Link][logo]](https://www.youtube.com/playlist?list=PLhhyoLH6IjfyL740PTuXef4TstxAK6nGP) &nbsp; [Tutorial 7 - Callbacks](https://github.com/aladdinpersson/Machine-Learning-Collection/tree/master/ML/Pytorch/pytorch_lightning/7.%20Callbacks)\n* [![Youtube Link][logo]](https://www.youtube.com/playlist?list=PLhhyoLH6IjfyL740PTuXef4TstxAK6nGP) &nbsp; [Tutorial 8 - TensorBoard logging](https://github.com/aladdinpersson/Machine-Learning-Collection/tree/master/ML/Pytorch/pytorch_lightning/8.%20Logging%20Tensorboard)\n* [![Youtube Link][logo]](https://www.youtube.com/playlist?list=PLhhyoLH6IjfyL740PTuXef4TstxAK6nGP) &nbsp; [Tutorial 9 - Profiler](https://github.com/aladdinpersson/Machine-Learning-Collection/tree/master/ML/Pytorch/pytorch_lightning/9.%20Profiler)\n* [![Youtube Link][logo]](https://www.youtube.com/playlist?list=PLhhyoLH6IjfyL740PTuXef4TstxAK6nGP) &nbsp; [Tutorial 10 - Multi-GPU](https://github.com/aladdinpersson/Machine-Learning-Collection/tree/master/ML/Pytorch/pytorch_lightning/10.%20Multi-GPU)\n \n\n## TensorFlow Tutorials\nIf you have any specific video suggestion please make a comment on YouTube :)\n\n### Beginner Tutorials\n* [![Youtube Link][logo]](https://youtu.be/5Ym-dOS9ssA) &nbsp; Tutorial 1 - Installation, Video Only\n* [![Youtube Link][logo]](https://youtu.be/HPjBY1H-U4U) &nbsp; [Tutorial 2 - Tensor Basics](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/TensorFlow/Basics/tutorial2-tensorbasics.py)\n* [![Youtube Link][logo]](https://youtu.be/pAhPiF3yiXI) &nbsp; [Tutorial 3 - Neural Network](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/TensorFlow/Basics/tutorial3-neuralnetwork.py)\n* [![Youtube Link][logo]](https://youtu.be/WAciKiDP2bo) &nbsp; [Tutorial 4 - Convolutional Neural Network](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/TensorFlow/Basics/tutorial4-convnet.py)\n* [![Youtube Link][logo]](https://youtu.be/kJSUq1PLmWg) &nbsp; [Tutorial 5 - Regularization](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/TensorFlow/Basics/tutorial5-regularization.py)\n* [![Youtube Link][logo]](https://youtu.be/WAciKiDP2bo) &nbsp; [Tutorial 6 - RNN, GRU, LSTM](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/TensorFlow/Basics/tutorial6-rnn-gru-lstm.py)\n* [![Youtube Link][logo]](https://youtu.be/kJSUq1PLmWg) &nbsp; [Tutorial 7 - Functional API](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/TensorFlow/Basics/tutorial7-indepth-functional.py)\n* [![Youtube Link][logo]](https://youtu.be/WcZ_1IAH_nM) &nbsp; [Tutorial 8 - Keras Subclassing](https://github.com/aladdinpersson/Machine-Learning-Collection/blob/master/ML/TensorFlow/Basics/tutorial8_keras_subclassing.py)\n* [![Youtube Link][logo]](https://youtu.be/cKMJDkWSDnY) &nbsp; [Tutorial 9 - Custom Layers](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/TensorFlow/Basics/tutorial9-custom-layers.py)\n* [![Youtube Link][logo]](https://youtu.be/idus3KO6Wic) &nbsp; [Tutorial 10 - Saving and Loading Models](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/TensorFlow/Basics/tutorial10-save-model.py)\n* [![Youtube Link][logo]](https://youtu.be/WJZoywOG1cs) &nbsp; [Tutorial 11 - Transfer Learning](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/TensorFlow/Basics/tutorial11-transfer-learning.py)\n* [![Youtube Link][logo]](https://youtu.be/YrMy-BAqk8k) &nbsp; [Tutorial 12 - TensorFlow Datasets](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/TensorFlow/Basics/tutorial12-tensorflowdatasets.py)\n* [![Youtube Link][logo]](https://youtu.be/8wwfVV7ixyY) &nbsp; [Tutorial 13 - Data Augmentation](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/TensorFlow/Basics/tutorial13-data-augmentation.py)\n* [![Youtube Link][logo]](https://youtu.be/WUzLJZCKNu4) &nbsp; [Tutorial 14 - Callbacks](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/TensorFlow/Basics/tutorial14-callbacks.py)\n* [![Youtube Link][logo]](https://youtu.be/S6tLSI8bjGs) &nbsp; [Tutorial 15 - Custom model.fit](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/TensorFlow/Basics/tutorial15-customizing-modelfit.py)\n* [![Youtube Link][logo]](https://youtu.be/_u7AVsxANes) &nbsp; [Tutorial 16 - Custom Loops](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/TensorFlow/Basics/tutorial16-customloops.py)\n* [![Youtube Link][logo]](https://youtu.be/k7KfYXXrOj0) &nbsp; [Tutorial 17 - TensorBoard](https://github.com/AladdinPerzon/Machine-Learning-Collection/tree/master/ML/TensorFlow/Basics/tutorial17-tensorboard)\n* [![Youtube Link][logo]](https://youtu.be/q7ZuZ8ZOErE) &nbsp; [Tutorial 18 - Custom Dataset Images](https://github.com/AladdinPerzon/Machine-Learning-Collection/tree/master/ML/TensorFlow/Basics/tutorial18-customdata-images)\n* [![Youtube Link][logo]](https://youtu.be/NoKvCREx36Q) &nbsp; [Tutorial 19 - Custom Dataset Text](https://github.com/AladdinPerzon/Machine-Learning-Collection/tree/master/ML/TensorFlow/Basics/tutorial19-customdata-text)\n* [![Youtube Link][logo]](https://youtu.be/ea5Z1smiR3U) &nbsp; [Tutorial 20 - Classifying Skin Cancer](https://github.com/AladdinPerzon/Machine-Learning-Collection/tree/master/ML/TensorFlow/Basics/tutorial20-classify-cancer-beginner-project-example) **- Beginner Project Example**\n\n### CNN Architectures\n* [LeNet](https://github.com/aladdinpersson/Machine-Learning-Collection/tree/master/ML/TensorFlow/CNN_architectures/LeNet5)\n* [AlexNet](https://github.com/aladdinpersson/Machine-Learning-Collection/tree/master/ML/TensorFlow/CNN_architectures/AlexNet)\n* [VGG](https://github.com/aladdinpersson/Machine-Learning-Collection/tree/master/ML/TensorFlow/CNN_architectures/VGGNet)\n* [GoogLeNet](https://github.com/aladdinpersson/Machine-Learning-Collection/tree/master/ML/TensorFlow/CNN_architectures/GoogLeNet)\n* [ResNet](https://github.com/aladdinpersson/Machine-Learning-Collection/tree/master/ML/TensorFlow/CNN_architectures/ResNet)\n \n"
  }
]